pax_global_header00006660000000000000000000000064137703014740014520gustar00rootroot0000000000000052 comment=9f234f401d1020a1490747f4c459551ff3173089 prose-1.2.1/000077500000000000000000000000001377030147400126515ustar00rootroot00000000000000prose-1.2.1/.codeclimate.yml000066400000000000000000000003231377030147400157210ustar00rootroot00000000000000engines: duplication: enabled: true config: languages: - python - go fixme: enabled: true radon: enabled: true ratings: paths: - "**.py" - "**.go" exclude_paths: [] prose-1.2.1/.gitignore000066400000000000000000000004371377030147400146450ustar00rootroot00000000000000bin # Compiled Object files, Static and Dynamic libs (Shared Objects) *.o *.a *.so # Folders _obj _test tag/*.gob fuzz/ # Architecture specific extensions/prefixes *.[568vq] [568vq].out *.cgo1.go *.cgo2.c _cgo_defun.c _cgo_gotypes.go _cgo_export.* _testmain.go *.exe *.test *.prof prose-1.2.1/.travis.yml000066400000000000000000000014261377030147400147650ustar00rootroot00000000000000dist: bionic language: go go: - "1.13.x" env: - GO111MODULE=on install: - make build stages: - name: Build & test if: type != cron - name: Fuzzit-Regression if: type != cron AND type != pull_request AND branch = master - name: Fuzzit-Fuzzing if: type != cron AND type != pull_request AND branch = master jobs: include: - stage: Build & test script: - make test # Coveralls is down for maintenance currently - go get github.com/mattn/goveralls - bash scripts/cover.sh # TODO: Fix this # - stage: Fuzzit-Regression # go: 1.12.x # script: # - bash scripts/fuzzit.sh regression # # - stage: Fuzzit-Fuzzing # go: 1.12.x # script: # - bash scripts/fuzzit.sh fuzzing prose-1.2.1/AUTHORS.md000066400000000000000000000001251377030147400143160ustar00rootroot00000000000000- Elliott Stoneham () - Joseph Kato () prose-1.2.1/LICENSE000066400000000000000000000020621377030147400136560ustar00rootroot00000000000000MIT License Copyright (c) 2017 -2018 Joseph Kato Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. prose-1.2.1/Makefile000066400000000000000000000027521377030147400143170ustar00rootroot00000000000000BASE_DIR=$(shell echo $$GOPATH)/src/github.com/jdkato/prose BUILD_DIR=./builds LDFLAGS=-ldflags "-s -w" .PHONY: clean test lint ci cross install bump model setup all: build build: go build ${LDFLAGS} -o bin/prose ./cmd/prose build-win: go build ${LDFLAGS} -o bin/prose.exe ./cmd/prose bench: go test -bench=. ./tokenize ./transform ./summarize ./tag ./chunk test-tokenize: go test -v ./tokenize test-transform: go test -v ./transform test-summarize: go test -v ./summarize test-chunk: go test -v ./chunk test-tag: go test -v ./tag test: test-tokenize test-transform test-summarize test-chunk test-tag ci: test lint lint: gometalinter --vendor --disable-all \ --enable=deadcode \ --enable=ineffassign \ --enable=gosimple \ --enable=staticcheck \ --enable=gofmt \ --enable=goimports \ --enable=misspell \ --enable=errcheck \ --enable=vet \ --enable=vetshadow \ --deadline=1m \ ./tokenize ./tag ./transform ./summarize ./chunk setup: go get github.com/shogo82148/go-shuffle go get github.com/jdkato/syllables go get github.com/montanaflynn/stats go get gopkg.in/neurosnap/sentences.v1/english go get github.com/stretchr/testify/assert go get github.com/urfave/cli go get github.com/alecthomas/gometalinter go get github.com/jteeuwen/go-bindata/... go-bindata -ignore=\\.DS_Store -pkg="model" -o internal/model/model.go internal/model/ gometalinter --install model: go-bindata -ignore=\\.DS_Store -pkg="model" -o internal/model/model.go internal/model/*.gob prose-1.2.1/README.md000066400000000000000000000146751377030147400141450ustar00rootroot00000000000000# prose [![Build Status](https://travis-ci.org/jdkato/prose.svg?branch=master)](https://travis-ci.org/jdkato/prose) [![Build status](https://ci.appveyor.com/api/projects/status/24bepq85nnnk4scr/branch/master?svg=true)](https://ci.appveyor.com/project/jdkato/prose/branch/master) [![GoDoc](https://godoc.org/github.com/golang/gddo?status.svg)](https://godoc.org/github.com/jdkato/prose) [![Coverage Status](https://coveralls.io/repos/github/jdkato/prose/badge.svg?branch=master)](https://coveralls.io/github/jdkato/prose?branch=master) [![Go Report Card](https://goreportcard.com/badge/github.com/jdkato/prose)](https://goreportcard.com/report/github.com/jdkato/prose) [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/avelino/awesome-go#natural-language-processing) `prose` is Go library for text (primarily English at the moment) processing that supports tokenization, part-of-speech tagging, named-entity extraction, and more. The library's functionality is split into subpackages designed for modular use. See the [GoDoc documentation](https://godoc.org/github.com/jdkato/prose) for more information. ## Install ```console $ go get github.com/jdkato/prose/... ``` > **NOTE**: When using some vendoring tools, such as `govendor`, you may need to include the `github.com/jdkato/prose/internal/` package in addition to the core package(s). See [#14](https://github.com/jdkato/prose/issues/14) for more information. ## Usage ### Contents * [Tokenizing](#tokenizing-godoc) * [Tagging](#tagging-godoc) * [Transforming](#transforming-godoc) * [Summarizing](#summarizing-godoc) * [Chunking](#chunking-godoc) * [License](#license) ### Tokenizing ([GoDoc](https://godoc.org/github.com/jdkato/prose/tokenize)) Word, sentence, and regexp tokenizers are available. Every tokenizer implements the [same interface](https://godoc.org/github.com/jdkato/prose/tokenize#ProseTokenizer), which makes it easy to customize tokenization in other parts of the library. ```go package main import ( "fmt" "github.com/jdkato/prose/tokenize" ) func main() { text := "They'll save and invest more." tokenizer := tokenize.NewTreebankWordTokenizer() for _, word := range tokenizer.Tokenize(text) { // [They 'll save and invest more .] fmt.Println(word) } } ``` ### Tagging ([GoDoc](https://godoc.org/github.com/jdkato/prose/tag)) The `tag` package includes a port of Textblob's ["fast and accurate" POS tagger](https://github.com/sloria/textblob-aptagger). Below is a comparison of its performance against [NLTK](http://www.nltk.org/)'s implementation of the same tagger on the Treebank corpus: | Library | Accuracy | 5-Run Average (sec) | |:--------|---------:|--------------------:| | NLTK | 0.893 | 7.224 | | `prose` | 0.961 | 2.538 | (See [`scripts/test_model.py`](https://github.com/jdkato/aptag/blob/master/scripts/test_model.py) for more information.) ```go package main import ( "fmt" "github.com/jdkato/prose/tag" "github.com/jdkato/prose/tokenize" ) func main() { text := "A fast and accurate part-of-speech tagger for Golang." words := tokenize.NewTreebankWordTokenizer().Tokenize(text) tagger := tag.NewPerceptronTagger() for _, tok := range tagger.Tag(words) { fmt.Println(tok.Text, tok.Tag) } } ``` ### Transforming ([GoDoc](https://godoc.org/github.com/jdkato/prose/transform)) The `tranform` package implements a number of functions for changing the case of strings, including `Title`, `Snake`, `Pascal`, and `Camel`. Additionally, unlike `strings.Title`, `tranform.Title` adheres to common guidelines—including styles for both the [AP Stylebook](https://www.apstylebook.com/) and [The Chicago Manual of Style](http://www.chicagomanualofstyle.org/home.html). You can also add your own custom style by defining an [`IgnoreFunc`](https://godoc.org/github.com/jdkato/prose/transform#IgnoreFunc) callback. Inspiration and test data taken from [python-titlecase](https://github.com/ppannuto/python-titlecase) and [to-title-case](https://github.com/gouch/to-title-case). ```go package main import ( "fmt" "strings" "github.com/jdkato/prose/transform" ) func main() { text := "the last of the mohicans" tc := transform.NewTitleConverter(transform.APStyle) fmt.Println(strings.Title(text)) // The Last Of The Mohicans fmt.Println(tc.Title(text)) // The Last of the Mohicans } ``` ### Summarizing ([GoDoc](https://godoc.org/github.com/jdkato/prose/summarize)) The `summarize` package includes functions for computing standard readability and usage statistics. It's among the most accurate implementations available due to its reliance on legitimate tokenizers (whereas others, like [readability-score](https://github.com/DaveChild/Text-Statistics/blob/master/src/DaveChild/TextStatistics/Text.php#L308), rely on naive regular expressions). It also includes a TL;DR algorithm for condensing text into a user-indicated number of paragraphs. ```go package main import ( "fmt" "github.com/jdkato/prose/summarize" ) func main() { doc := summarize.NewDocument("This is some interesting text.") fmt.Println(doc.SMOG(), doc.FleschKincaid()) } ``` ### Chunking ([GoDoc](https://godoc.org/github.com/jdkato/prose/chunk)) The `chunk` package implements named-entity extraction using a regular expression indicating what chunks you're looking for and pre-tagged input. ```go package main import ( "fmt" "github.com/jdkato/prose/chunk" "github.com/jdkato/prose/tag" "github.com/jdkato/prose/tokenize" ) func main() { words := tokenize.TextToWords("Go is an open source programming language created at Google.") regex := chunk.TreebankNamedEntities tagger := tag.NewPerceptronTagger() for _, entity := range chunk.Chunk(tagger.Tag(words), regex) { fmt.Println(entity) // [Go Google] } } ``` ## License If not otherwise specified (see below), the source files are distributed under MIT License found in the [LICENSE](https://github.com/jdkato/prose/blob/master/LICENSE) file. Additionally, the following files contain their own license information: - [`tag/aptag.go`](https://github.com/jdkato/prose/blob/master/tag/aptag.go): MIT © Matthew Honnibal. - [`tokenize/punkt.go`](https://github.com/jdkato/prose/blob/master/tokenize/punkt.go): MIT © Eric Bower. - [`tokenize/pragmatic.go`](https://github.com/jdkato/prose/blob/master/tokenize/pragmatic.go): MIT © Kevin S. Dias. prose-1.2.1/appveyor.yml000066400000000000000000000006021377030147400152370ustar00rootroot00000000000000version: "{build}" os: Windows Server 2012 R2 clone_folder: c:\GOPATH\src\github.com\jdkato\prose environment: GOPATH: c:\GOPATH init: - cmd: set PATH=C:\MinGW\bin;%PATH% - cmd: copy c:\MinGW\bin\mingw32-make.exe c:\MinGW\bin\make.exe install: - set PATH=%GOPATH%\bin;c:\go\bin;C:\Ruby22\bin;%cd%\bin;%PATH% build_script: - cmd: make build-win test_script: - cmd: make test prose-1.2.1/chunk/000077500000000000000000000000001377030147400137615ustar00rootroot00000000000000prose-1.2.1/chunk/chunk.go000066400000000000000000000036171377030147400154270ustar00rootroot00000000000000// Package chunk implements functions for finding useful chunks in text previously tagged from parts of speech. // package chunk import ( "regexp" "github.com/jdkato/prose/tag" ) // quadString creates a string containing all of the tags, each padded to 4 // characters wide. func quadsString(tagged []tag.Token) string { tagQuads := "" for _, tok := range tagged { padding := "" pos := tok.Tag switch len(pos) { case 0: padding = "____" // should not exist case 1: padding = "___" case 2: padding = "__" case 3: padding = "_" case 4: // no padding required default: pos = pos[:4] // longer than 4 ... truncate! } tagQuads += pos + padding } return tagQuads } // TreebankNamedEntities matches proper names, excluding prior adjectives, // possibly including numbers and a linkage by preposition or subordinating // conjunctions (for example "Bank of England"). var TreebankNamedEntities = regexp.MustCompile( `((CD__)*(NNP.)+(CD__|NNP.)*)+` + `((IN__)*(CD__)*(NNP.)+(CD__|NNP.)*)*`) // Chunk returns a slice containing the chunks of interest according to the // regexp. // // This is a convenience wrapper around Locate, which should be used if you // need access the to the in-text locations of each chunk. func Chunk(tagged []tag.Token, rx *regexp.Regexp) []string { chunks := []string{} for _, loc := range Locate(tagged, rx) { res := "" for t, tt := range tagged[loc[0]:loc[1]] { if t != 0 { res += " " } res += tt.Text } chunks = append(chunks, res) } return chunks } // Locate finds the chunks of interest according to the regexp. func Locate(tagged []tag.Token, rx *regexp.Regexp) [][]int { rx.Longest() // make sure we find the longest possible sequences rs := rx.FindAllStringIndex(quadsString(tagged), -1) for i, ii := range rs { for j := range ii { // quadsString makes every offset 4x what it should be rs[i][j] /= 4 } } return rs } prose-1.2.1/chunk/chunk_fuzz.go000066400000000000000000000006511377030147400165000ustar00rootroot00000000000000// +build gofuzz package chunk import ( "github.com/jdkato/prose/tag" "github.com/jdkato/prose/tokenize" ) func Fuzz(data []byte) int { words := tokenize.TextToWords(string(data)) if len(words) == 0 { return 0 } tagger := tag.NewPerceptronTagger() tagged := tagger.Tag(words) if len(tagged) == 0 { return 0 } chunks := Chunk(tagged, TreebankNamedEntities) if len(chunks) == 0 { return 0 } return 1 } prose-1.2.1/chunk/chunk_test.go000066400000000000000000000060411377030147400164600ustar00rootroot00000000000000package chunk import ( "fmt" "testing" "github.com/jdkato/prose/tag" "github.com/jdkato/prose/tokenize" ) func Example() { txt := "Go is a open source programming language created at Google." words := tokenize.TextToWords(txt) tagger := tag.NewPerceptronTagger() fmt.Println(Chunk(tagger.Tag(words), TreebankNamedEntities)) // Output: [Go Google] } func TestChunk(t *testing.T) { text := ` Property surveyors are getting gloomier about the state of the housing market, according to the Royal Institution of Chartered Surveyors (Rics). Its latest monthly survey shows that stock levels are at a new record low. The number of people interested in buying a property - and the number of sales - were also "stagnant" in March, it said. However, because of the shortage of housing, it said prices in many parts of the UK are continuing to accelerate. While prices carry on falling in central London, Rics said that price rises in the North West were "particularly strong". Most surveyors across the country still expect prices to rise over the next 12 months, but by a smaller majority than in February. But on average, each estate agent has just 43 properties for sale on its books, the lowest number recorded since the methodology began in 1994. "High-end sale properties in central London remain under pressure, while the wider residential market continues to be underpinned by a lack of stock," said Simon Rubinsohn, Rics chief economist. "For the time being, it is hard to see any major impetus for change in the market, something also being reflected in the flat trend in transaction levels." Earlier this week, the Office for National Statistics said house prices grew at 5.8% in the year to February, a small rise on the previous month. However, both Nationwide and the Halifax have said that house price inflation is moderating. Separate figures from the Bank of England suggested that lenders are offering fewer loans. Banks reported a tightening of lending criteria, and a drop in loan approval rates. A significant majority also reported falling demand. Hansen Lu, property economist with Capital Economics, said that pointed to an "even more gloomy picture than the Rics survey". The above articile was retrieved from the B.B.C. News website on 13 April 2017. It was also reported on BBC Radio 4 and BBC Radio 5 Live. ` expected := []string{ "Royal Institution of Chartered Surveyors", "Rics", "March", "UK", "London", "Rics", "North West", "February", "London", "Simon Rubinsohn", "Rics", "Office for National Statistics", "February", "Nationwide", "Halifax", "Bank of England", "Hansen Lu", "Capital Economics", "Rics", "B.B.C. News", "13 April 2017", "BBC Radio 4", "BBC Radio 5 Live", } words := tokenize.TextToWords(text) tagger := tag.NewPerceptronTagger() tagged := tagger.Tag(words) for i, chunk := range Chunk(tagged, TreebankNamedEntities) { if i >= len(expected) { t.Error("ERROR unexpected result: " + chunk) } else { if chunk != expected[i] { t.Error("ERROR", chunk, "!=", expected[i]) } } } } prose-1.2.1/doc.go000066400000000000000000000002471377030147400137500ustar00rootroot00000000000000// Package prose is a repository of packages related to text processing, // including tokenization, part-of-speech tagging, and named-entity extraction. package prose prose-1.2.1/go.mod000066400000000000000000000004371377030147400137630ustar00rootroot00000000000000module github.com/jdkato/prose go 1.13 require ( github.com/montanaflynn/stats v0.6.3 github.com/neurosnap/sentences v1.0.6 // indirect github.com/shogo82148/go-shuffle v0.0.0-20180218125048-27e6095f230d github.com/stretchr/testify v1.6.1 gopkg.in/neurosnap/sentences.v1 v1.0.6 ) prose-1.2.1/go.sum000066400000000000000000000034101377030147400140020ustar00rootroot00000000000000github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/montanaflynn/stats v0.6.3 h1:F8446DrvIF5V5smZfZ8K9nrmmix0AFgevPdLruGOmzk= github.com/montanaflynn/stats v0.6.3/go.mod h1:wL8QJuTMNUDYhXwkmfOly8iTdp5TEcJFWZD2D7SIkUc= github.com/neurosnap/sentences v1.0.6 h1:iBVUivNtlwGkYsJblWV8GGVFmXzZzak907Ci8aA0VTE= github.com/neurosnap/sentences v1.0.6/go.mod h1:pg1IapvYpWCJJm/Etxeh0+gtMf1rI1STY9S7eUCPbDc= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/shogo82148/go-shuffle v0.0.0-20180218125048-27e6095f230d h1:rUbV6LJa5RXK3jT/4jnJUz3UkrXzW6cqB+n9Fkbv9jY= github.com/shogo82148/go-shuffle v0.0.0-20180218125048-27e6095f230d/go.mod h1:2htx6lmL0NGLHlO8ZCf+lQBGBHIbEujyywxJArf+2Yc= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/testify v1.6.1 h1:hDPOHmpOpP40lSULcqw7IrRb/u7w6RpDC9399XyoNd0= github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/neurosnap/sentences.v1 v1.0.6 h1:v7ElyP020iEZQONyLld3fHILHWOPs+ntzuQTNPkul8E= gopkg.in/neurosnap/sentences.v1 v1.0.6/go.mod h1:YlK+SN+fLQZj+kY3r8DkGDhDr91+S3JmTb5LSxFRQo0= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c h1:dUUwHk2QECo/6vqA44rthZ8ie2QXMNeKRTHCNY2nXvo= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= prose-1.2.1/internal/000077500000000000000000000000001377030147400144655ustar00rootroot00000000000000prose-1.2.1/internal/model/000077500000000000000000000000001377030147400155655ustar00rootroot00000000000000prose-1.2.1/internal/model/classes.gob000066400000000000000000000002511377030147400177110ustar00rootroot00000000000000  -EXNNPSWP$TO:FWJJR$VBNCC#NNPVBZVBDPOSRBCDNNJJRBSMDVB``.RP),(WRBRBRINPRP$SYMDTVBPPDTLSJJSWDTUHVBG''NNSWPPRPprose-1.2.1/internal/model/load.go000066400000000000000000000005251377030147400170350ustar00rootroot00000000000000/* Package model contains internals used by prose/tag. */ package model import ( "bytes" "encoding/gob" "github.com/jdkato/prose/internal/util" ) // GetAsset returns the named Asset. func GetAsset(name string) *gob.Decoder { b, err := Asset("internal/model/" + name) util.CheckError(err) return gob.NewDecoder(bytes.NewReader(b)) } prose-1.2.1/internal/model/model.go000066400000000000000000323362431377030147400172340ustar00rootroot00000000000000// Code generated by go-bindata. // sources: // internal/model/classes.gob // internal/model/tags.gob // internal/model/weights.gob // DO NOT EDIT! package model import ( "bytes" "compress/gzip" "fmt" "io" "io/ioutil" "os" "path/filepath" "strings" "time" ) func bindataRead(data []byte, name string) ([]byte, error) { gz, err := gzip.NewReader(bytes.NewBuffer(data)) if err != nil { return nil, fmt.Errorf("Read %q: %v", name, err) } var buf bytes.Buffer _, err = io.Copy(&buf, gz) clErr := gz.Close() if err != nil { return nil, fmt.Errorf("Read %q: %v", name, err) } if clErr != nil { return nil, err } return buf.Bytes(), nil } type asset struct { bytes []byte info os.FileInfo } type bindataFileInfo struct { name string size int64 mode os.FileMode modTime time.Time } func (fi bindataFileInfo) Name() string { return fi.name } func (fi bindataFileInfo) Size() int64 { return fi.size } func (fi bindataFileInfo) Mode() os.FileMode { return fi.mode } func (fi bindataFileInfo) ModTime() time.Time { return fi.modTime } func (fi bindataFileInfo) IsDir() bool { return false } func (fi bindataFileInfo) Sys() interface{} { return nil } var _internalModelClassesGob = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x04\xc0\xcd\x4d\xc4\x30\x10\x05\x60\xcf\x7b\x7b\xdc\x2e\x88\xb4\x20\x01\x05\x70\x9c\x98\x3f\x8b\x9d\x8c\xc6\xc6\x06\x4e\x69\x85\x94\x41\xb3\xe6\x3b\xcf\x5f\x08\xe6\x91\xe4\x9c\xd2\xfc\x9b\x47\x7a\xc0\xf3\xd7\xc9\xcc\x2b\x87\x2f\x68\x9b\x3c\xe1\x65\xb0\x94\x90\x85\x5d\x0d\xeb\x2a\x37\x34\x73\x76\xfd\x61\xd7\x4c\xdf\x2a\x42\xb1\x66\x98\xa1\x14\x86\x56\x5c\x33\xba\x62\xdf\xe5\x11\xe1\x72\x27\xf7\x72\xcb\x11\xca\xd0\xc0\xbb\x9d\x3c\x7c\x61\xfd\xbe\x22\x37\x76\x75\x7a\x6e\xf8\xa8\x2c\xa5\x72\xe4\x86\xcf\x37\x76\x7d\xc5\xe5\x42\xb3\x8a\xe1\xf4\xf0\xff\x00\x00\x00\xff\xff\x14\x43\xb9\x44\xa9\x00\x00\x00") func internalModelClassesGobBytes() ([]byte, error) { return bindataRead( _internalModelClassesGob, "internal/model/classes.gob", ) } func internalModelClassesGob() (*asset, error) { bytes, err := internalModelClassesGobBytes() if err != nil { return nil, err } info := bindataFileInfo{name: "internal/model/classes.gob", size: 169, mode: os.FileMode(420), modTime: time.Unix(1494607416, 0)} a := &asset{bytes: bytes, info: info} return a, nil } var _internalModelTagsGob = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x7b\x5b\x77\x1b\xc9\x91\xa6\x51\x57\x00\xa4\xec\xfd\x0b\x7b\xa6\x77\xda\x3e\xc7\x92\x4d\xa9\xdb\x7d\xd9\x87\x5d\x02\x50\x4b\x84\x45\x08\x43\x52\xd2\x78\x8e\x1f\x3a\x51\x15\xa8\x4a\x31\x2b\xb3\x3a\x2f\x00\xd9\x7b\xf6\x69\xe7\x77\x8f\xf7\x44\x44\x26\xc4\x99\xa7\xa6\xd8\x04\x2a\x2f\x11\x5f\x7c\xdf\x17\x51\xbf\xfd\xc7\xff\x2b\x26\xd9\x3f\xfe\xfd\x37\x93\xf3\xc9\xf9\x6f\x7e\xf3\x1f\xff\x5b\xfd\xe3\xdf\x7f\xf3\x1f\xd5\xb3\x72\xec\x8d\x86\x6c\xb3\x29\x83\x96\x46\x67\x9b\x4d\x7d\xb4\xd2\x7b\xd0\xf9\xc7\xc5\x66\x26\x9a\x5f\x82\xb4\x52\x77\xf9\xc7\xc5\x9b\xe9\x42\x58\xaf\xc0\xfb\x7c\xb3\xd9\x9e\x89\xf6\x00\xd6\x4b\x07\xd6\xe5\x9b\xcd\x6d\xbe\x31\x3e\xbb\x59\x94\xb7\xa3\x90\x1a\xff\xa0\x74\xbd\x50\x2a\xbb\x5e\x65\xdf\x7e\x9b\x2d\x57\x85\x13\x0a\x9f\x93\xbd\xbc\xc8\x96\xab\xd2\x04\xdd\xe0\x3f\xa7\xef\xc4\xd1\x82\x6e\x00\x3f\x92\x6f\xdf\x2d\xf1\xbf\xc5\xe6\xc5\xfa\x05\xfe\x50\x75\xd6\x84\x91\xbf\x7f\x10\x8f\xd9\xf5\xaa\x3c\x9a\x41\xd0\x32\x1b\x33\x8c\x42\x3f\x66\x9b\x4d\xee\xc5\x03\xee\xc0\x1c\x35\x58\x7c\xc4\xcf\x3f\x67\x3f\xff\x5c\x0c\x42\xea\x6c\xbd\x9e\x09\xdc\x8d\xe7\xcd\xcd\x44\x67\x01\x06\xd0\x1e\xbf\xa2\x03\x0d\x5e\x36\xd9\x7a\x5d\x77\xe0\x7d\xdc\x66\x19\xb4\x97\x2a\xbb\xda\xd4\xa3\x35\x6d\x68\xf0\x4f\x8b\x6f\xff\xfe\xa7\xef\xb3\xe5\x2a\xbf\xb6\xb4\xb0\xac\x11\xd9\xf5\xaa\x1a\x4c\xfa\xaa\x6b\xf1\x70\x04\xa5\xf0\xff\x4d\x07\x73\x38\x3d\xe2\x20\x1b\x2f\x07\xda\xc1\x1c\x0e\x60\x1f\x7d\x2f\x75\x97\x6d\x36\xd5\x6b\xe7\x85\xa7\x6d\x17\x4e\x0c\x90\xad\xd7\xd5\x0e\x1e\x8d\x6e\xb3\xab\x4d\xf5\x4e\x1c\x9d\xa1\x63\x3c\xf3\x56\x68\x27\x9a\xb8\x81\xec\xe5\xcb\x6c\xb9\xaa\x1b\x13\xb4\xb7\xb8\xf9\x8a\xbe\x90\x1e\x50\xc3\x7e\x6f\xac\xa7\x9f\xa7\xa3\x71\xd2\xcb\x03\x7d\x6f\x23\x74\x43\x27\x93\x1b\xa9\xf0\x33\x4a\x1c\x1f\xf9\x17\xbd\x74\xc5\xf6\x66\xfb\x55\xd9\x09\xa9\xe9\x93\xd5\x6b\x0d\xb6\x7b\xa4\x85\x89\x9d\xc2\x2f\xa8\xef\x8c\x35\xda\x1b\xfc\xdd\x4c\x6a\x0f\xf6\x20\xe1\x88\xc7\xf2\xe1\xc5\x2d\x9f\xc7\xcb\x6f\xb2\xe5\x6a\x3a\x18\x0d\x5e\xd8\x47\xfc\x8c\xd9\xef\x65\x03\xbc\xb0\xd1\x9a\xce\x8a\x81\x1e\x6d\x9c\xe3\xdf\x56\x0e\x1a\x6f\x70\x15\xb3\x83\xb4\x3e\x08\xa5\x1e\xb3\x9b\x45\x2e\x3a\x0a\x8c\x26\x38\x6f\x06\x5a\x65\xdd\x82\x17\x52\xd1\xa7\xce\x5a\xe9\x9a\xe0\x9c\x34\xbc\xdc\x19\x3c\x34\x2a\x38\xde\xe9\x1c\x84\xf5\xfd\x2f\x41\xdc\xe3\x57\x54\xa3\x4d\x2b\xc8\x82\xcb\xb7\x37\xdb\xb9\xd4\x6d\x70\xde\xca\xb8\x82\x25\xe0\x66\x68\xab\xad\x0d\x78\x2d\xe5\x87\x78\xf9\x85\x92\x7b\xfc\x92\xfc\x28\xf0\x98\x67\xa3\x35\xa3\x71\x82\x17\x51\x8a\x1e\x44\x9b\xdd\x2c\xaa\x1d\x34\x62\x80\xfc\xe3\x62\x55\x0e\xe2\x9e\x56\x3b\x1d\xc5\x23\x5e\x3f\x3f\xe2\xda\xe8\x56\xd0\x69\xd6\xcb\x5e\x58\x45\x4f\xde\x96\x78\x52\x74\x7d\xce\x5b\xa3\xbb\x6c\xbd\x3e\x77\xbd\xb0\xd0\x1b\xd5\xc6\x8c\x3a\x83\x87\x51\x19\x2b\xe2\xcd\xe7\x17\x2f\xfe\x82\x57\x2f\xb4\xf1\x3d\xd8\x6c\x75\x47\x51\xe0\x00\x6f\xb4\x1c\xc4\x67\x63\xb3\xf5\xfa\x4c\xea\x03\x38\x7f\x7a\x7e\xae\x29\x2d\x2b\x67\x1a\x29\x14\x06\x03\xfc\x12\xa4\xe7\x47\x83\x96\xf4\xa1\x69\x2b\x6d\xba\x8b\x39\x86\xda\x41\xfa\x78\x44\x53\x0a\xda\x08\x11\x3b\xe1\xa0\x45\x5c\x38\xf3\x30\x8c\xc6\x0a\x2b\xe9\xca\xa6\x47\x61\xad\x88\x4f\x7c\xc6\x2b\x90\x5d\x5a\xf8\x04\x43\xa3\x3e\x08\x2b\x4d\x70\xf8\x34\x8b\x4b\xb0\xe0\xf2\x8f\x8b\x7f\xab\xa1\x31\xda\x0c\x94\xc6\x98\xcd\xab\xbb\xe9\x0e\x34\xec\x25\x7f\x59\x2d\xf6\x7b\x21\x23\xc2\x08\x8b\x07\xbd\xad\x1a\x0b\xad\xc4\xec\xca\x95\xc0\x28\xac\x95\x31\xf7\x31\x79\xe7\x1e\x14\x1c\xa4\xe3\x47\x9f\x35\x46\x3b\xd9\x42\x42\xb0\x99\x86\xa3\x1b\xc5\xc8\x30\xc1\xa1\x8b\x88\x02\x9a\x0e\x7c\x14\xd6\x6b\xb0\xae\x97\x23\x9e\xc4\xc1\x28\xe1\xa5\xe2\xd3\xca\xa4\xce\xae\x36\xcf\x06\xa1\xc3\x5e\x34\x3e\xd8\x74\x4b\x6e\x84\x26\xa8\xb4\xd9\x42\x0c\x12\x33\xb8\xf4\xe2\x9e\x31\x74\xba\x82\x06\x86\x1d\x87\x59\x75\x71\xf1\xf7\x3f\x5d\xe0\x3d\xce\x79\xe3\xd2\xf1\x46\x8b\xa3\x6c\x31\x82\x8b\x45\x70\x3d\xfe\xe5\x04\x61\x32\xbb\xc2\x87\x9e\x0b\xad\x09\x2f\x23\xa8\xcc\x5a\x68\xe4\x29\x01\x4a\xe7\x1f\x09\x59\xcb\xa5\x11\x8e\xb0\xb9\x6c\x40\x71\xa0\x16\xbe\x87\x47\x8c\xfc\xe9\x5d\x2f\x7c\xd3\xf3\x2a\xca\xad\xb0\x9e\x62\xb2\x92\xde\x81\xda\xe3\x5f\xd4\x0a\x44\x0a\xbd\x62\x69\x39\x66\xab\xbd\x09\xd6\xf7\xd9\x7a\x9d\xaf\xcc\x91\x7e\x73\x67\x1e\x8d\x17\x04\xd7\x6f\x3f\xac\x28\xb0\x5d\x68\x1a\x80\x36\xfb\xb8\x98\x9d\x76\x85\x07\xd8\x08\xdd\xca\x56\x78\x0e\xa5\x79\x7c\x00\x9f\xee\x74\x90\x5a\x3a\xcf\x19\xd3\xca\xd3\x95\x15\x8d\x70\xb8\x9b\xa2\x07\x0b\xd9\xcd\xa2\x76\x90\x02\xa7\xdc\x07\x86\x88\x69\x4c\x63\xbc\x97\xa9\xe8\x40\x37\x31\x5a\xcb\x9d\x11\xb6\xc5\x4f\x7b\x4b\x4f\x99\x71\x30\x1a\xde\x56\xf9\x57\x63\x81\x96\x5e\x7a\xf1\xc0\x1f\xf9\xdd\x1b\x30\xb6\x93\xe2\xf9\x56\x34\x72\x2f\x1b\xda\x23\x68\x17\x2c\x64\x1f\x17\xf9\x51\x60\x98\xae\xa6\xaf\x75\x07\xea\x9e\xe2\x64\x3b\xbd\x16\xfa\x20\x95\x62\xf0\xde\x03\x7f\x51\x31\x0a\x2a\x15\x15\xa3\x30\xdd\x93\x44\xac\x69\x62\x26\xb6\x04\x24\x53\xe7\x2d\xe8\xce\xf7\xb8\x4a\x6b\x0c\x82\x62\x89\xbf\xc2\x65\x57\x3a\xc5\x51\xe9\x42\x4c\x81\xac\x07\xba\x1e\x0b\xa3\x12\x0d\x2e\xaa\x1e\x84\x16\x1d\x9d\xdc\xf9\xb6\x97\x4a\xb4\xa0\xc6\x5e\xd2\xc6\x32\xe1\xb3\xab\x4d\xf6\x8a\xa2\xe7\x15\x96\xac\xe2\x6f\xc6\xde\xd3\xb2\xf7\xa2\x49\xd1\x3c\xdf\x09\x7d\x6f\xc3\xe8\x9b\x47\x7a\x98\x37\xcd\x3d\xfe\x70\x2d\x6c\x43\xe1\x57\x0a\xe7\x00\x37\x71\x26\xf5\xde\xd8\xe1\x14\xdf\xdf\x71\x21\xac\x1b\xb0\x3e\x16\x58\x0b\x58\x25\x23\x7b\x60\xc6\x80\xcb\x9c\x9f\x6a\x2d\x03\x75\xc2\x0c\xac\x0e\xd9\x2b\xe4\x04\xd5\x60\x9c\xa7\x1b\xfd\x9d\x85\xd1\x82\x03\xed\x05\x16\x2d\xbe\xad\xe0\x52\x52\xb7\x80\xa9\x19\xc3\xbf\x14\xe3\x48\x01\x5f\x5c\xfc\xfd\x4f\x88\x2d\xb3\x6b\x10\xfa\xd8\x4b\x85\xf1\x52\xb4\xb0\xa3\xbf\xda\x8b\x86\x21\x66\xde\x18\xbd\x07\x22\x19\x98\xc7\xcb\xaf\x26\x5f\x55\x2e\x0c\xb1\xb4\x34\xa0\xbd\x25\x64\x2c\xbc\x39\xd2\x16\xdf\xc9\x7b\xc8\xae\x30\x76\x5c\xb0\x82\x3f\x36\x37\x23\x30\x14\x73\x2c\x7f\x12\x0e\xeb\xae\xe7\x22\x3d\xa7\x5a\xfe\x65\xab\xf1\x70\x38\x58\x5b\x73\xd4\x3e\x58\xfc\xea\xf9\x17\x74\x46\xf8\xba\x5a\x5c\xd3\x59\xbf\x41\x96\x43\xb7\xf7\x8e\x20\x29\xdf\x49\xac\x08\xd3\xc6\x1c\xc0\x72\x39\xac\x1a\x33\x0c\x86\x8e\xbb\x85\x46\x49\x9d\xc8\xca\x3e\xe8\x36\x56\xff\x87\x31\x55\xff\x39\x20\x2a\xc9\x58\x51\x2b\xba\x5e\xfe\xa3\x81\xa0\x88\xcf\xb7\x49\xeb\x3d\xbb\x3d\x4a\xff\x2b\x58\x25\x74\x4b\x31\x8d\x45\x1a\x4f\xc2\xc9\x5f\x69\xf3\x1f\xb4\x3c\x80\x75\x92\x41\x63\x0e\x0a\x1a\x2c\x5b\x44\x9d\xf2\x9f\x80\x3e\x54\x7b\xa1\x12\x0a\x57\xbd\x38\xa4\x05\x2e\xb0\x2c\x32\x4c\xf8\xd0\xa6\xca\xbb\x16\x5d\x10\x0c\x89\x14\x3e\x18\x30\x33\xe7\x6d\x20\x68\xe5\xa3\xe2\x52\x4d\x77\x73\x2e\x75\x63\x41\x60\x40\xd0\x96\x66\x18\x2d\xb2\x8d\x24\xeb\x08\x70\xcf\x09\x54\xfa\xde\x38\xc8\x56\x77\x33\x27\x1f\x9e\x0f\x46\x13\x76\x4d\x77\x18\x4a\xc0\x7b\xda\x5b\x33\x20\x92\x13\x8f\xe1\x7c\xa3\x47\xd4\xd7\xb2\xe9\x05\x10\x85\x3b\xb3\xf0\xf4\xf2\x4b\xcc\x53\x5e\xf7\x5d\x6f\x06\x41\x25\x7c\x8e\x8c\x00\x19\x70\x4c\x7f\x6b\x1c\xf1\x80\xe2\x73\x60\x60\x62\xf6\x48\x51\x56\x05\xad\x38\xa8\x8a\xcd\x8b\xbf\x31\xb5\x5d\x83\x75\x40\xe7\x39\x45\x4a\xa3\x70\xdd\x1f\x17\xb3\xc6\x4a\x2f\x1b\xe9\x10\x17\xea\x65\x2f\x1b\xd1\x11\xef\x2a\xd6\xa6\xa7\x58\xcb\xb5\x39\xe2\xa5\x5a\xe8\x38\xe5\x2a\x27\xf6\x40\x59\x3d\x83\x07\x6f\x61\x00\x8e\xbb\x51\x78\x99\x6e\x78\x3e\x82\xc5\xeb\xe6\x60\xca\x2e\x5e\x21\x07\xef\xe4\x81\x4b\xd4\x99\xd4\x78\xf4\xa7\xf8\x9d\x9b\x91\xe9\x23\x7f\xff\x08\xd6\xd1\x4f\xcf\xae\x85\x73\xa2\xe9\x83\x03\xef\xf9\x10\x5a\xd8\x83\x6e\x53\xed\x2f\x1b\x62\x8c\x9b\xcd\x6c\x29\xec\x78\x22\x57\xd9\x4f\x04\x95\xb3\x05\x28\x75\x6b\x82\x27\x84\x29\x7e\x32\x96\xa3\xad\x11\x1c\x90\xd3\xc6\x60\x2e\x12\x8a\x96\x77\x60\x87\x54\xc2\x82\xc3\x42\x30\x82\xed\xc5\x48\x3f\x52\xc1\xa1\xeb\xac\x90\xda\x5b\x62\xb9\xae\xe9\x8d\x51\x91\xab\x9d\xea\xc9\xe4\x2a\x96\xbf\x60\x5d\x22\x62\x83\xb0\xf7\x10\x09\xc6\xce\x9a\xfb\x98\x10\xf5\x68\xc6\xa0\x04\x32\xa2\xfc\xe2\x05\x11\xda\xc4\xfa\xf0\xd0\x16\x8f\x78\x7f\xde\x98\x7b\xbc\xe6\xec\xdb\x3f\x23\x0c\xb6\x46\xa9\xb8\xfc\xec\x9a\x2e\xf6\xb7\x44\xd8\x31\x15\x4f\xcc\xed\xd1\x04\x5a\x04\x4a\x96\xc0\x25\xaf\x3c\x62\xa0\xe6\x9f\xb6\x5f\x55\x94\x16\x06\x43\x73\x94\x0a\x9f\x34\x5f\x0a\x25\xf7\xc6\x6a\x86\xf4\xfc\xd5\x9f\xf1\x51\x58\x5f\xe8\x68\xdf\x06\x6b\x65\x23\x34\x9d\x29\x7e\xe7\xe9\xde\xa6\xf8\x55\xe9\x1f\xf5\xde\x04\xdd\x72\x7d\xfd\x97\x00\x3b\x68\x0c\xa7\x21\x42\x7f\xaa\xf3\x47\xd0\x1e\x77\x13\xd9\x3a\x49\x82\x2b\xdd\x44\x19\x63\x7d\xc7\x01\x73\x26\x07\x3c\xd3\x44\x40\xf2\xbb\x1e\x73\xac\xfc\xf6\x8f\x7f\xa6\xa5\x4d\x47\x73\x04\xbb\x0f\x98\x46\x33\x66\x67\xb1\xe2\xce\x5a\xd3\x7c\x89\xab\x62\x67\x28\x4b\xeb\x7d\xc0\x2c\x8f\xcb\x14\x76\x48\x88\x84\x89\x1c\x0b\xb9\x70\xd2\x11\x87\x30\xc3\x20\x5d\x22\x07\x9f\xa4\xef\xb3\xab\xcd\x54\xe8\x93\x90\x9a\x3e\xc9\xe1\x6a\x27\xbc\xa7\x00\x9c\x8e\x72\x04\x25\xf5\x17\x1d\x40\xc4\x15\x43\xcc\x05\x86\xfe\x52\x23\xb7\xc5\x54\x6a\x7a\x23\x39\xd1\xd3\x97\x66\x62\x40\xaa\x59\x36\x48\x7f\x48\x76\x61\xc6\x64\x3b\x4c\xd1\x62\x11\x85\x1e\xaa\xd3\x23\x17\xf2\x8b\x1f\xbe\x47\x5d\x36\x73\xa3\xb9\x07\xc7\x0a\xf5\x8c\xff\x91\x04\xeb\x39\x96\x30\x89\x54\xd1\x52\x7e\x96\x3b\x63\x78\xb3\xd9\x9b\xd7\x54\x06\x46\x25\xe8\x78\xe7\x16\x3a\x64\x94\x86\x4a\xe5\xe4\xf7\x93\xdf\xd7\xa8\xba\xe3\x21\x4d\x8f\x20\xee\x23\x98\xd5\x7b\x2c\x43\x4c\x18\x2e\x07\xd4\x11\x57\x9b\x72\xa7\x44\x73\x8f\x80\xf6\xc6\xa8\x76\x10\x3a\xb2\x14\xa5\x48\xa5\xec\xa0\x13\x9a\xae\xfc\xb3\x91\x9a\xab\x6f\xd5\xf4\x09\xe9\x38\x64\xae\x36\x53\xc2\xf8\x18\xbf\xef\xee\x3e\x52\xfe\xa2\x5e\xb6\xb1\xa8\x9c\x47\x16\x7f\xba\xdc\xfa\x89\x74\xa9\x38\x2d\x30\x5a\xb7\x09\xa8\x69\x8b\xb7\x1e\x43\xfc\x66\x91\xaf\x58\x47\xd7\x66\x94\xd1\x77\xa8\x3e\x68\xe9\x1e\x1d\x87\xa8\xec\x3a\x70\x3e\x5f\xaf\x6f\x4b\x6f\x42\x47\x20\x2e\xbc\x37\x96\x55\x53\xdd\xc2\x21\x49\xbb\x92\x3c\x02\xfc\x02\x91\x40\xa1\x5e\xc9\x4e\x7a\x41\x97\x54\x7c\x0e\x0e\x15\x50\xf6\x96\x85\xea\xc5\x77\x08\x7d\x4b\xbc\x57\x8a\xf2\xd1\x28\x99\xe8\x63\xed\x06\xa1\x14\xd8\x7c\xbd\xbe\xc9\x56\xf4\xf7\xc5\xb5\x75\xf4\xc3\x4c\xd8\x9d\xf4\xb1\x1a\xcf\x7d\x0f\x83\x03\x85\x4c\x65\x7b\xb3\xad\x48\x33\x21\x08\x9d\x6d\x85\xd4\xf0\x09\x76\x91\xef\x97\x62\xef\xe9\x3c\x8b\x8d\x39\xd0\xf7\xcc\x29\x02\x95\xe7\xab\x2e\x8e\x1c\xd0\x95\x0e\x58\x97\x31\x6a\x40\x77\x52\x03\x49\x16\x3c\x7b\xc7\xf4\xaf\xb8\x05\xcd\xeb\x68\x25\xa6\x6a\x50\x1e\xe3\xfd\x27\x2b\x23\xa8\x55\x03\x58\xe6\x84\xf5\xe5\x49\x21\xce\xa3\x83\xc1\x27\x3c\x5f\xd2\x35\x2b\xc5\x40\x50\xb6\xe6\x57\xa0\xfb\xbd\xf2\x6c\x02\x14\x16\x38\x8d\xbc\x39\x22\x8f\xbe\xda\x54\xd7\x92\x0e\x04\x61\xe8\x9a\x0f\xa2\xf0\xbd\x74\xd9\xea\xae\xba\x15\xda\x05\xc9\x06\x86\xf4\xcc\xad\x0c\x2f\xc5\xb4\xc0\xfa\x23\xbf\x78\x41\x79\x91\xc4\x3c\x47\x30\x32\x3d\x1b\x59\x1e\xea\xf7\x5e\xe8\x2e\xca\xcd\xd1\xc2\x21\xd2\xfd\xfc\xe5\x8b\x6f\x23\x06\x7f\x86\x48\xa2\x4b\xa9\x5b\x20\xb3\xa7\x35\x91\x60\x14\x6f\x59\x28\x4c\x07\xd1\x89\x5f\x39\xe3\xa7\x70\xc0\x98\xe3\x90\x66\x16\xb0\xd9\x9c\x63\x95\x93\x3e\x9c\x48\xdc\x34\x89\x03\x3c\x9b\x1b\xe3\x7b\xd7\xf4\x52\xb5\x1c\x16\xee\x51\x29\x19\xb0\x0a\x9f\x07\x0d\xc3\xa8\xcc\x63\xf2\x74\xf6\xd0\x02\x53\xc6\x33\xa9\x51\xba\xb4\x21\xfa\x02\xc5\x2b\x66\xa4\x95\xd0\x51\x33\xd7\x0b\x68\x44\x70\x58\xfa\xa7\x91\x30\x10\xe3\x96\x43\xe4\x75\xb7\xde\x02\x50\x28\xd6\x3d\x88\x03\x0b\xea\xf2\x43\x4c\xc3\xfc\x82\x00\x76\xe6\x1f\x47\xd9\xc4\xcc\xcb\xee\x4c\x76\xf7\xbe\x18\x0d\x69\xf7\xc9\xff\x20\xde\x6e\x7c\x44\xf7\xd1\xca\x83\xf0\x18\x8b\xb3\x5b\x18\xfd\x49\x79\xce\x10\x0c\x9f\x4b\x0f\x03\xe6\xd2\xb2\xb7\x8f\x2e\x5e\x6c\x45\xc6\x03\x1f\xef\x20\xbb\xde\x67\xd7\xab\xb3\x01\x2c\x5e\x4b\x2b\x49\x8c\xd5\x37\xc8\x8d\xb8\x5c\xcf\x63\xf1\x65\xb8\xcf\x2e\xc8\xdc\x53\xe2\xc8\xb7\x39\x08\x0f\xc8\xd9\x22\xfa\x93\xaf\x10\xb1\xfb\xd1\x04\x4b\x61\x36\x8d\xd4\x0b\x3f\x5f\x12\x73\x26\x13\xcf\x18\xa4\xef\x9d\x38\x10\x8d\xaa\xdc\x89\xcd\x96\x66\xef\x41\x23\x6a\xac\x6d\x0c\x41\x1b\xc8\x97\x52\xc2\x76\xcc\x76\x28\x2d\x90\xe4\x63\x5a\x9c\x45\x00\x3d\x79\x44\xde\x82\x48\xac\xbb\xf8\x24\x18\xbe\x6b\x67\x82\x4d\x0e\x55\x2b\xf0\x42\x38\x2c\x76\xc2\xc1\x4e\x50\x29\x2e\xf6\x52\x0d\x84\xff\xa4\x57\xa4\x73\x21\x7e\xa0\x51\x27\x72\xc5\x96\x18\x24\x25\x7f\x03\x23\xb3\x78\x27\x1f\x10\x6b\xb0\xe8\xa5\xf2\x6c\x85\x87\x0e\x03\xa0\x58\x8b\x86\x54\x59\x26\x3d\xe6\xf7\x99\xb7\xa2\x95\xa7\x42\xf6\x0c\xf4\x41\x5a\xa3\x71\xcd\xcc\x4e\xc3\xc9\x89\xc8\xdf\x46\xcf\xae\xfe\x25\x08\x1b\x15\xf4\x12\x69\x80\x8d\x36\x6a\x27\x08\x05\x99\x4a\xf2\xa2\x1c\xea\xf3\xcd\xa6\x96\x5a\x7a\xa6\xd4\xd3\x1d\x28\x09\x07\xd6\x48\x25\x62\xf4\xc9\x31\x18\x70\x45\xe7\x28\x62\x50\x11\x27\xfd\x5e\xde\x0a\xcd\xc2\xbf\x6c\x7a\x94\x7e\x9b\x4d\xb9\x16\x03\x1b\x5a\x67\x26\x78\xe7\x31\x60\xc8\xcc\xfa\x6f\xa8\x5c\x9e\xfb\x1e\x9e\x93\x53\x09\x18\xa9\xb3\x6b\xa1\x7b\xe1\x3d\x57\xa4\x33\x39\x0c\xd0\x4a\xe1\x23\x5b\x15\xca\xf7\x84\xf4\x57\x9b\xfa\x00\x3a\xaa\x80\x9a\x6a\x26\x55\xf4\xea\x6d\xf0\x49\x6e\x25\x94\xe0\xab\x7f\x63\xec\x4e\x34\x3d\x1c\x38\x73\x91\xfc\xb5\xbc\xad\x6c\xc1\x55\x66\x0b\x62\x67\x5a\x26\xdb\x77\xa0\x50\xc9\xb1\x78\xf7\x72\xa0\xef\xde\x42\x2c\xaf\xdb\xda\xe2\x2a\x38\x0b\x29\x31\x58\x7c\x05\x4b\x89\x90\x5f\xea\x36\x5b\x2e\x6b\x94\x82\xc9\x75\x15\xe3\x08\x29\xe0\x99\x4d\x72\x6a\xcf\xe8\x3c\x84\x6d\x13\xcf\x51\x2a\x19\xe9\x51\xc0\x73\x54\x78\x2b\x95\xc2\x1c\x59\xae\x6a\x52\x59\x94\x2e\xbf\x15\x2d\x3b\x24\x27\x03\xb0\x3e\xf6\x40\xb8\x7e\xb5\x29\x91\x4b\x10\x8e\x34\xf2\x20\x29\x8f\x88\x82\x61\x24\xa0\x42\x19\xa3\x79\x5c\x22\xd7\xe3\x6b\x8d\x5c\x68\x66\x01\x93\x37\x16\xf6\xcb\x05\xfb\xed\x17\x3f\xfc\x70\x41\xf4\x25\xec\x9c\x4c\x1a\xad\xb8\xd2\x0d\x1d\xdf\xb3\x27\xc0\x49\xa1\x93\x1d\xa9\x26\x65\x4b\xce\x46\x6b\x44\x4b\xce\x06\xd8\x53\x55\xae\xc5\x2e\xc5\xeb\x4c\xea\x83\x51\x49\x0f\xd6\x98\x2c\x98\x10\x18\x75\x44\xcc\x30\xbd\x9e\x3f\x9f\xfc\x58\x29\x38\xc4\xb2\x71\xfe\x09\x1c\x1e\x70\x6f\x82\xa3\x8b\xaa\xb6\xbd\x54\x72\x8c\x69\x3b\x00\x83\xeb\x19\x12\x6a\xf0\x27\xb6\x59\x2a\xe8\x18\x55\x44\x87\x01\x7a\xb3\x28\x64\x0b\x82\x25\x81\x1c\x92\x5d\x39\xf9\x5f\x93\x17\xa5\x23\x7a\xb5\xd9\x94\x9d\x15\xba\xc5\xf0\x8c\xd9\x49\xa2\x76\x96\x8a\x09\x5f\xab\x12\x47\x72\x77\xa3\xba\x47\x4a\xea\x3d\x50\x40\x7c\xcd\xa6\x64\x79\x99\x0a\xfd\x51\x52\xd7\xa3\xe2\x10\xc1\x7b\x1b\xc3\xa9\xb7\x30\x15\x23\xc6\x27\x09\x8a\x6a\x54\x82\x5d\xf8\xd9\x1b\x0b\xa0\xdd\xc8\x99\x51\x5d\x1b\xd7\xb0\xd9\x36\x3d\x40\x8f\xe1\xcf\x47\xba\x02\x37\x62\xa1\xbd\x42\xd5\xd3\xc6\x6f\xcc\xfe\x82\x05\xe2\x77\x6f\xe1\x88\x1c\xf1\xf9\x56\x34\xf7\x11\xa8\x8b\x65\xd4\xeb\xb5\x6b\x30\x10\x15\xc5\x90\xa4\x28\xc4\x2d\x06\xed\xa0\x09\x16\x70\xf3\x85\x13\x8f\x74\x25\xd3\x81\x83\x91\xab\xf7\xd7\x84\xc5\xdb\xec\x0d\xf9\x14\xd5\x27\x61\x75\xd4\xf2\x28\xc6\xe3\x5f\xa1\xb8\x45\xde\x75\xb5\x29\x87\xe0\x64\xc3\xa6\x51\x0b\x23\xe8\x96\xf1\x98\x94\x66\xfc\x7a\xf1\xd9\xd8\xe8\xa8\x72\x8f\xa7\x46\x2e\xc3\xd9\x5e\xec\x58\x00\x65\xdf\xe3\x9e\xce\x50\x85\x5a\x1f\x74\x0c\xa3\xc6\xd8\xd1\x58\xae\x6d\xb9\x36\x36\x5b\x2e\xcb\xe4\xe5\x56\x66\x8c\x59\x72\x6e\x21\x22\x3f\xfb\x8c\xf9\x2d\x9f\xea\xfc\x3f\xd5\xf0\xd2\xc1\x01\x30\xe3\x4a\x17\x19\x69\xe5\x68\x47\xe4\x8d\x45\xb7\x20\xc2\xde\xa3\x09\x74\x60\x95\x0b\xf6\x40\xf4\xb3\x30\x47\x4d\xdb\xa9\x98\xac\x51\xf9\x3a\x1a\x02\x7b\x8a\x26\x14\xe5\x54\x5c\xf0\xc8\xd7\x42\x07\x61\xe9\x26\xce\xd3\x1e\x4e\x27\xfc\x2d\xd5\xf7\xdf\x22\x29\xfc\x4f\x29\x96\xbf\x63\x97\xa1\xd8\x1a\x2e\xec\x73\xdf\x13\x32\x99\x40\x06\xdf\xfb\x3d\x9e\x77\x63\x82\x6a\xb3\xeb\x55\x31\x06\x35\xb2\x0e\xf9\x81\xa4\x7d\x6b\x03\xa3\x53\xf6\xf5\xd7\xd9\xd7\x5f\x97\x8f\x10\x45\xea\xd9\x68\x9c\x93\xa7\xdc\x2c\x45\x52\x0d\x6f\x42\x22\x0a\x63\xc0\xd2\x1f\x77\x3f\x13\x07\x21\x55\xec\x03\x15\xc7\xde\x0c\xd9\xa7\x6d\x25\x76\x94\xf3\x37\x8b\xec\x9b\x1f\xb0\x2e\xb2\x3c\x21\x01\x95\x64\x7b\x26\x71\x85\xf9\x86\x11\xa6\x26\x9f\x80\x20\xb4\x7c\x4f\x20\xb6\x5e\x97\xbb\xc0\xe1\x9f\x7d\x43\xfa\xf6\xe2\x87\xef\xbf\x65\x67\x11\xd1\x9f\x68\x3e\xa5\xb1\xf3\x44\x44\x8d\xb5\x92\x7b\x27\x4d\x5a\x5c\xd5\x9c\xfa\x14\xe7\x4f\x8d\x79\x8e\x16\x16\x7a\x0c\x65\x5b\x11\x58\xb2\x39\xb0\x12\x1c\xad\xd4\xb0\x21\x5b\x12\xe9\xc7\x12\xeb\x4e\xc0\x58\x62\xd0\x31\x3a\xb7\x66\x40\x2c\x42\x50\x98\xc2\xc3\x88\x9b\xe0\xfd\x7d\x8b\x88\x59\x91\x52\x21\xc1\x50\xec\xd9\xb9\x38\x47\x26\x60\x65\x73\xba\x63\xdc\x18\x92\xc2\xf2\xce\x06\xf6\xe7\xb1\x9e\x8c\x4c\x8a\x2e\x95\x43\xda\x93\x1f\x49\x2d\x65\x17\xe4\xd8\x7e\x36\x3b\xfa\xe4\x04\xcf\x23\x97\x91\x9d\xd7\xee\xd1\x79\x18\x22\x25\x4a\x87\xf8\xc6\x46\xd3\xae\x74\x80\xff\xf3\xe3\xe2\xdf\x66\xa9\x9d\x13\x4b\xbf\x31\x08\x85\xf5\xca\x84\x4e\x71\x54\x55\x58\x05\x28\x35\xe7\x27\xaf\x84\x31\xe6\xb5\xee\x92\x0b\x38\x4d\xb4\x06\xc3\xf9\x32\x74\x71\xf1\x73\xd7\x20\xf3\x41\x66\x80\x49\x71\x94\x2d\x57\xf0\x7a\x0c\x64\x89\x22\x28\x4d\xfe\x39\x5b\x2e\x8b\x26\x3a\xfd\x9c\x79\x10\x2b\x29\x39\xbe\xeb\x75\x3d\x88\xa6\x8f\x35\x89\xbb\x99\xc9\x1a\x64\x66\x45\x37\x13\x2d\x8f\xb9\x85\x3d\xc9\x51\xfe\xf6\xb3\x15\x16\x0a\x33\x0e\x51\x55\x16\x17\x7f\xff\x13\xaa\x8c\x29\x2a\xd0\x54\x96\x67\x5b\xa9\xef\xc1\x26\xc6\x00\xc4\x29\x52\x8b\xf1\x9d\xe7\x23\x63\x7b\x71\xb3\x99\x5d\x36\x8d\xb1\x09\x52\x67\x6f\xc5\x30\xba\x5e\x5a\x66\x53\x17\x2f\x30\xa5\xe6\x89\x60\x72\x52\x1f\x8d\x4d\xf5\xa0\x5c\x89\x83\xa4\xef\x9b\xfc\xcf\xc9\x8f\x75\x03\x52\x45\xe0\x6f\x61\x2f\x1b\xea\x54\x45\x33\x30\xda\x6b\x4d\xb0\xf6\x4b\xd3\xa2\xb8\x54\x51\xa4\xdf\x9a\x01\x50\x59\x75\xa8\xa4\x35\xde\xee\xb5\x70\xac\xba\xaa\x55\x20\x45\x78\xb5\xa9\x6f\x58\x3d\x71\xd7\x92\xc9\xf3\xec\xad\x51\xea\xf1\x68\x0c\x2d\xa3\x5a\x0a\x2d\x5a\x62\x6a\x45\x6f\x02\x69\x42\x94\x84\xbc\xaa\xc9\xff\x9d\xfc\x01\xb3\xa9\x8b\xd5\xc6\x22\xe5\xe7\x8d\xd8\x44\xf5\x6a\x2d\x7c\xb0\x51\x0b\xda\xc7\x74\x2e\xa8\x95\x3d\xea\x90\x6c\xbd\x3e\x7f\xd2\x97\xe6\x7b\x13\x6a\x30\x24\xb5\xeb\xed\xc9\xa9\x9b\x91\xfe\xd5\x26\xf6\x34\x7a\x73\x24\xc3\xf1\x1c\xb3\x13\xec\x41\xa4\x0e\x35\xb5\xee\x23\x51\x31\x64\x97\x50\x95\x4d\xd8\x3f\xf9\x71\xf2\x63\x75\x0b\x3a\xd1\xb6\xcb\xd0\xbd\x88\xf6\xe3\x8e\xb9\x22\x27\xeb\xe1\xc9\x3f\x8a\x23\x58\x36\x64\x2f\xef\x7f\x25\x5d\x9a\x0b\x22\x6f\x95\x50\x47\xf1\x48\x3e\xe2\x0e\xfc\x11\x40\x23\x50\xed\x05\x59\x41\xb0\xdf\x03\xa5\xf1\x0c\x1e\x46\xa1\x13\x1e\xc8\x94\x78\x35\xd2\xab\xc4\xae\x8e\xbd\xa4\x6a\x54\x74\x86\xc2\xa8\xc4\x88\x67\x74\x78\x8f\x5f\x3a\xbb\x0c\x48\x2a\x14\xfb\x78\x15\x4a\x9d\x80\xd8\x33\x5b\x80\xef\x15\x20\xd1\x66\x6c\x14\x2a\xee\x7e\xde\x18\xa5\x40\x74\x51\x65\x4c\x11\xfd\x92\x35\x73\x39\x5a\xa9\x22\xc5\x05\x17\x03\xb1\x78\x6b\x74\x17\x17\x83\xfb\xfd\x74\xb3\x98\x5f\x4b\xef\xc2\x4e\xba\x5e\x3e\xcd\xd7\x28\x4f\xb2\x97\x08\xb6\xf9\x6d\xd0\x0c\xf6\xd1\xe7\xe5\x9c\xb9\x85\xc6\x52\x03\x9f\x18\xba\x08\xbe\xc7\x62\x9d\x9a\x6b\xa8\x27\x59\xd9\xb4\xb2\x25\x0b\xe9\x08\x62\x4c\x62\x5a\x84\x56\x26\xc9\x7d\x67\x45\x4b\x37\x55\x5f\x69\xe7\xb9\x55\x5e\x2e\x8d\x66\x0b\xa3\xba\x16\xb6\x31\x8c\xe5\x94\x97\xe4\x7d\x0a\x32\xda\xaa\xf6\x14\xe7\x6f\x4d\x70\x31\x7d\xcb\x75\x68\x3b\xfa\xc2\x72\xaf\x0c\x09\xf6\xa9\xd8\x19\x9b\x9a\x65\xc4\x13\xa9\x79\x3d\x8e\x02\x45\x20\xdb\x5a\x2b\x50\x03\xb4\x49\x15\x74\x56\xf0\x1d\xe6\x9e\xec\xcb\x19\x38\x2f\x76\x4a\xba\x3e\xfb\xb8\x28\xaf\xbc\x50\x2c\x10\x06\xa9\x13\x45\xa9\xfe\x05\x31\xf0\x81\xf6\xdc\x08\x9d\x5d\xaf\x66\xe2\x29\x52\x4c\x59\x62\x31\x29\xfe\x8e\x24\xe2\x4f\xd4\x34\xa0\xb3\xa5\x96\x4d\x1b\x45\xdb\x3b\x2c\x86\x9b\xed\x5c\x74\x9d\xc5\x3a\x43\x71\x3f\xd3\xc4\xc6\xe3\xc4\x84\x06\x8f\xb0\x42\xcd\x66\xe6\xc7\xde\x06\xea\xcb\x65\x17\x84\x6f\x20\xac\x4e\xf8\x36\x67\x9e\x73\x60\xf0\xcd\x2f\xa5\x8d\xfb\xc4\x94\xe4\x5b\x18\x85\xe6\xe1\x00\x27\x22\x85\xac\x7c\x6f\xe5\x9e\xce\xfb\x6d\xe0\xbe\x42\x76\x49\xe5\xf5\x06\x44\x04\x84\xa9\x53\xe6\xd8\x72\x2b\xec\xec\xc9\x4c\x02\x75\xc6\x7c\xcb\x79\x47\xcc\xf1\x14\x19\xd9\x05\x99\x1e\x40\x83\x23\xa4\x3c\x95\x71\xbc\xb0\x39\x3c\x40\x13\x4e\x3d\xbd\x42\xc4\x7a\xf7\xe1\xf6\xab\xc9\x57\xe5\xd1\x1a\x4f\x39\x3a\x4b\x76\x63\x14\xca\x66\xef\x8f\x51\x7b\x71\xd5\x23\x1e\x6d\xcd\x4e\xd1\x8f\x25\x82\x44\x34\x8c\x9e\x34\x2a\x36\xc2\xb5\xe2\x17\xce\xb5\x63\x3a\xa8\xd2\x58\x5e\xfd\x59\xec\x89\xa5\x4c\xc8\x7b\xc1\x9c\x14\x59\x43\xac\x0c\x25\x09\x41\x76\xee\x90\xe2\xb2\x94\xd1\x42\x3d\x72\x19\xdc\xe3\xed\x46\x4d\x60\x74\xf7\x1c\xe9\x4e\xb6\x5e\x4f\xbe\x9a\x7c\x35\x8d\xad\x6f\xaa\x8a\xd4\xa8\x22\x64\xdb\x48\xe7\xf8\x60\xf3\xcb\x86\xab\xff\x3b\xe8\xa3\x2d\x5b\x5b\x8c\xff\x90\xb4\xcc\x20\xbf\x0c\x6e\x4c\x90\x58\x9d\x23\x6f\x7b\x0e\xc2\x2a\xc9\x12\xba\x31\x6e\x80\x24\xea\x67\x62\x00\xdd\x26\x57\x8a\x91\x2b\x5e\x33\xe6\x1f\xdd\x98\x8d\x05\xe2\x6f\xe0\x3c\x58\x66\x3c\xc5\xb5\xe1\xb4\xaa\xae\x74\x0b\x40\x73\x2c\x98\x7e\x5c\xc6\x7b\x39\xa4\x91\x80\xec\xf2\x0d\x67\x04\xc0\x49\xee\x66\x37\x3c\x35\xe1\x64\x17\xe7\x0f\x96\xc6\x32\x60\xe4\x6c\x74\x57\xef\x3b\xa9\x0e\x8f\x0c\x2f\xb1\x07\x96\xfa\x2b\x29\x63\x6b\x6f\xbc\x50\xe4\xc9\xaf\xa6\x5b\x6a\x4c\xf1\x92\xf2\x1b\x88\xa3\x47\x2d\x6b\xc4\xfc\x72\x43\x0c\xf2\xcc\x02\x3e\x32\x89\xe1\xb3\x11\x2c\xf5\xa5\x19\x71\x9e\xc1\x83\xb7\x82\x12\x93\x93\xa9\x30\x51\xbb\xd5\x8b\x60\x75\x2f\x08\x69\x8b\xf7\x0d\x03\x58\x81\x85\x05\xf3\x6a\x20\x21\x3b\xb5\x40\xad\x56\x56\xd4\x48\xf8\x28\xfb\x3e\x51\x4b\xf9\x6a\x53\x74\x82\x5c\x82\xe9\x80\x55\x31\xaa\x11\x20\xbf\x55\x53\xff\x3c\x1b\x1e\x89\xa1\x9d\x51\xf3\xfb\x14\x8f\x75\x6f\x8e\xb1\xc5\x30\x7d\x4d\x2d\x53\x1e\x2f\x98\x0a\xad\x53\xc0\x55\x04\x5d\x4c\xcd\x93\x9a\x65\x6c\x28\x3e\x07\x7d\xff\x54\xe4\xc6\x20\xa7\xc6\x7c\x32\x57\x2f\x88\x30\x0b\x6b\x65\x64\xd2\xc4\x18\x8f\xfd\x23\x16\x82\x4a\xe3\x01\x51\x6b\x5b\x09\x87\x6c\x6f\xba\x17\x83\x54\x92\x5b\x5c\x2f\x49\x7a\x64\x2f\xff\x42\x82\x01\x04\x99\xa4\xf9\x06\x48\x79\x66\x2f\xc9\x27\x47\xd5\xcb\x49\x72\x87\xe9\x10\xf8\xa2\xcb\xdb\x04\x28\x75\x7b\xd2\xa4\xcf\xf0\x7a\xc8\x2f\x8a\xf0\x5b\x0c\x42\x13\xae\x5d\x2a\x25\x85\xfe\x95\x02\xe2\x97\x80\x6c\x3a\xb1\xcd\xbd\x51\xca\x1c\xf9\x01\x8d\x18\x46\x21\x3b\xda\xe3\xc5\x9f\x63\x67\xa9\xd0\x70\x74\xec\x6f\xa9\x30\xec\xb8\x90\x9e\x75\x78\x59\xfa\xcb\x8c\x15\x65\x38\x07\xa3\xf3\x40\x98\x37\x5d\x1a\x4d\x40\x4b\xd7\x7d\x17\xa7\x60\xce\x9e\xd8\x6a\x34\x83\x17\xac\x19\xe3\x18\x87\x31\xa8\xdb\xb2\xef\xa2\x16\xf9\xe1\x1b\x1e\x50\x38\xa4\xde\xc0\x70\x72\x69\xaa\x51\x24\x4a\x54\x71\x3f\x9d\xb4\x2b\xf0\x7f\xf7\x81\xd4\x44\x71\x2f\x49\x08\xe6\x2f\x5e\xbc\x98\xfc\x58\xb9\x3e\x4a\xb5\x38\x6b\xc5\x97\x3f\x98\x16\xe8\x62\xea\xc1\x10\xb4\xe3\x07\xde\xdf\x51\xc0\x97\x3d\x70\x49\xcc\x6f\x5f\xf3\x2f\xee\xe0\x81\xe9\x7b\x49\xcb\xa2\x06\x3d\xc4\x21\xa3\x9f\x60\x67\x93\xca\x9c\xc7\x41\x8f\xb8\xf2\x99\x07\x05\x69\xcc\x73\xde\x18\xdd\x7e\xa9\xf8\xf9\x86\x9a\xc9\xb8\x5f\xf6\x99\x31\x1c\x45\x9a\x28\x40\xf4\x1f\xb9\xbe\x7c\xe2\x90\xca\x2e\xa8\xeb\xd9\x83\x1a\xe3\x09\xe4\xaf\xa8\x11\x5a\xfd\x55\xb6\x6d\x44\xce\x6b\xb3\x63\xa2\x52\xa4\xd9\xb8\xfc\x1d\xb0\x8d\xc3\x50\x8b\x91\xb8\x31\x87\x2f\x53\x51\x52\x63\xd6\x11\x73\x30\xf7\x8f\xa9\x89\xa0\x7d\x1f\x1d\x32\x33\x18\x6b\xcd\x31\xf6\x76\xdb\xd0\xa4\xfa\xbb\xec\x85\xb4\x09\x4c\xf7\xc6\x02\x06\xd0\x7a\x9d\x2f\x0d\x33\x8d\xdb\x90\xa6\xef\x66\xb7\x52\x77\x62\x34\x4c\xea\x51\x93\xd1\x34\xdd\xda\xf4\x3a\xd2\xb9\xe2\x6d\x60\x3d\x51\x75\xca\xec\x98\xfc\x52\x77\x88\x55\x22\x8d\x54\x21\x2c\x20\xa5\xe6\xc3\xdb\xfe\x33\xe1\x63\x3d\x40\x1b\x49\x40\x79\x47\x63\x4b\xaf\xff\xb5\xfa\xa0\xa5\x67\xee\x51\xad\x8d\x83\xb1\x8f\xa8\x89\x78\x75\xb5\x29\xef\xe2\x9c\xc2\xb3\xab\xa7\x63\x08\x9c\x5c\x83\xe4\x0e\x79\x8d\x6a\x33\x3a\x75\xd7\x71\x17\x8c\xf2\x11\x21\x76\xf1\xf6\xeb\xe0\x12\x9e\xd4\x6c\x84\x24\x06\x0c\xf7\x64\x34\x49\x65\x62\xaa\x1c\x4c\xea\x23\x22\xa0\x22\x79\x93\xac\xed\x2b\x62\x62\xb1\xfc\x72\x75\xa7\x41\xa1\xe5\xa9\xff\x4a\xf0\x7c\xcb\x3c\xa3\xf6\x56\xec\xf7\xe4\xf5\xcc\x1e\x9f\x94\x96\xf2\x68\xa2\xdf\x99\x19\xd4\xff\xd9\x37\x28\x68\x67\x16\x9e\x7a\xed\x97\xba\x83\x34\x07\xb9\xb3\xec\x24\x17\x54\x49\x37\x9b\x1c\x1e\xb9\x11\x9b\x80\xa7\xfe\x25\xc8\xe6\x9e\xd3\xc5\x04\x3f\x06\xea\x90\xb2\x81\x9a\xcc\x9c\xd1\x04\xca\xb5\x99\xd4\x8d\x0a\x27\x67\xec\x0a\x57\x50\x0b\x69\xa3\xf7\x59\x53\x07\x36\x32\x6b\x6a\xf5\x58\x1e\xfc\x9b\x46\x7d\xc9\x9e\x8e\x48\xb0\x3e\x53\xf2\x89\x8b\x69\x69\x06\x35\x1e\x5e\xe6\x4d\x76\xf7\x3e\xbf\x31\x6c\xb0\x45\x9b\x8e\x9a\x6f\x03\x58\xd9\x10\x4e\x4d\x37\xc6\xa2\x4c\xe7\xe8\x1c\x84\xed\xe2\x88\x6d\x8d\x59\x16\xbb\xd7\x3c\xc6\xc1\x28\xbd\x10\xfa\x3e\x3a\xaa\x3c\xe0\x34\x04\xe7\xb3\xeb\x15\x8a\xf4\xbd\xf4\xc9\x85\x69\xac\x21\xb3\xa7\x35\xb1\x50\x2d\x8d\xe5\x96\x43\xf5\xde\x7a\xe8\xe8\xe1\xf5\x1b\xc0\xc4\xe0\xc2\x2c\xf8\x4e\xf2\x3b\x32\xa9\x32\x83\xe2\xa4\xfe\x49\x19\x2b\x59\x26\xce\xbf\x20\x6a\x74\x91\x5e\xf2\xc8\x36\xf3\xfc\x4a\x43\x6c\x5a\xd3\xa4\x5e\xcb\xb3\x36\xc5\x3a\xf0\x0c\x42\x7d\x94\x3e\xfa\x52\xb3\xc6\x68\x2f\x75\xe0\x85\xcd\x9a\x1e\x06\xcc\x8c\x54\xae\xb0\x3a\xcd\xf6\x52\x0b\x1d\xa7\x51\xf3\x0f\xb7\xff\x1a\x89\x02\xb5\xad\xf8\x21\xaf\x63\x4b\x90\x22\x44\x21\xd1\xe7\xc7\x31\x41\x9f\x8b\x80\x80\x10\x93\x60\xaa\xc4\xf1\x34\x2b\x57\x35\x56\xf2\xdc\x40\xfd\xbe\xf1\x26\xc2\x4b\x76\x81\x5c\x6a\x7a\xc9\x34\x8e\x6f\xc0\x04\xaf\x8c\xb9\xa7\x7e\x50\x2f\x7c\xf6\x69\x5b\x11\xd9\xe6\xc4\xe9\xe2\xc9\x56\x2e\xd8\x8e\x59\xca\x04\xeb\xe1\x34\x0e\xc7\x62\x40\x9c\xb5\x5f\x5c\x08\x9a\x57\x36\x03\x6a\x0f\x1a\x33\xa8\x7b\xd9\xf5\xa9\x81\xfd\x41\xa7\xe4\xd9\x89\x16\x31\xc2\xf7\x40\xb9\x5f\xbd\x33\xba\xe5\xff\x35\x8d\xb3\xa6\xd4\xd5\x92\x27\xcd\x94\xa7\x96\x59\xd9\x99\x2f\x03\xae\x4d\xaf\x8d\x32\xc4\xb4\x4b\x1b\x62\x25\xce\x0f\x52\x20\x57\x39\x30\xf9\x27\x85\x4d\xe3\x54\x91\x8b\x0c\x52\x87\xa8\xee\x2b\x5c\x1d\x97\xe8\xc6\xd0\x5c\xda\xb9\x50\x11\x85\x22\x4f\x47\x70\x00\x61\x9b\xfe\xe4\x79\x93\x65\x11\x29\x62\xa3\x4e\xf1\xb0\x8c\x37\xcc\x51\x14\x64\x4b\x43\x17\xfc\x99\xab\xe8\x69\x32\xe2\xf6\x6c\x8c\x16\x7b\x6e\x77\xde\xd6\xb7\x61\xb4\x30\x70\x04\x2d\x2c\x40\xcb\xd3\x95\x75\x0f\x42\xf9\x1e\x99\xc3\x34\x32\x7e\xde\xe0\x67\xb3\xcb\x36\x9b\xdf\x5a\x20\xef\x42\xfe\x7a\xea\x8b\xf4\x32\x99\xf9\xf9\x2d\x77\xcb\x4b\x6a\x0c\x22\xaa\x59\x41\x46\xd9\xcd\xe2\xfc\x09\x37\x8b\x82\xb5\x6d\x13\xa9\xca\xf7\x70\xc4\xe7\x19\x0d\xcf\x91\x72\x63\x64\x7e\x43\x04\xa4\xda\xa1\xf2\xa4\x32\xfc\x92\x0b\x1d\xcd\x8b\x42\x54\x41\xde\xab\xd3\x50\x4c\x2f\xa9\x6f\x56\x39\x39\x70\xd1\x9c\x12\x7b\x17\x9d\xc1\x4b\x65\xb3\x9f\xbd\x4a\x0d\x9d\xf1\xf2\x49\x7f\x32\x8d\x36\x9c\x3a\x70\x1a\xb5\x08\x96\x86\xd8\xa9\x84\x2e\x85\x19\x02\x23\x26\x2b\x3d\xd1\x1c\x89\xe7\x91\x91\xca\xfc\xe7\x2e\xc6\x56\x41\xdb\xd8\x6c\xca\x85\x35\x47\x1d\x49\x10\xf5\xed\xf3\xeb\xe5\x25\x79\xd1\x3c\x9d\xba\x0b\x69\x3a\x20\x9d\x07\xf7\x1b\x6f\xbd\xd0\x8a\xb9\xf8\x04\xc1\xe0\x6c\xb4\x06\xeb\x42\xb2\x15\xf3\xe5\xe2\x96\x32\x37\x68\x4e\x56\x0a\xed\xde\x0c\x11\x5f\x6f\x91\xbe\x24\xa3\xa4\x51\x82\x07\x33\x9a\x2f\x4d\xb0\x9a\xe7\xb5\x78\xcb\xad\xe0\xbd\x67\x6f\xf9\xfe\xae\x4d\x6c\xd7\x55\x36\xd9\xf2\xd5\xe5\x3e\x01\xeb\x0c\x85\xc4\xde\x28\x9a\x9a\x42\x70\xf4\x5f\xba\xcc\xbe\x17\x88\x6e\x53\x2e\x05\x9c\xc6\x45\x6b\x34\xf2\x90\xcd\x84\xaa\x51\xc2\x30\x4e\x86\xd7\xed\x31\x36\x4c\x6a\x78\x18\x53\x15\xc8\x76\x8f\xd4\xb2\x27\xb7\x9c\xd2\xb2\x74\x3e\xbe\x56\xc0\x73\xcc\x71\xec\x07\xbf\xb1\xfa\x88\xec\x94\xda\x00\x9a\x02\xa9\x86\x07\x31\xf0\x90\xea\x8c\xad\x2d\xb6\x42\x6b\x06\x72\xbe\xaa\x1d\x74\x81\xcb\xb7\x0e\x94\x51\xd9\x7a\x3d\xbf\x3a\x4d\x3d\xd2\x46\xd3\xf0\x4c\xac\xe7\xdc\x58\x2c\x1b\xcb\x6d\xcb\xfc\x82\x42\xb2\xe8\xd2\xf6\x88\xd2\x38\x80\x34\x87\x99\xff\x64\x68\x98\xe7\x16\x85\x4b\x24\x42\xd3\x34\xe5\x4e\x8b\x38\x26\x5a\x7a\x1d\xc7\xb1\xa3\xd7\x41\xdb\xeb\x03\x25\xd1\xe4\x9f\x26\xff\x94\xbd\xfa\x8e\x95\x85\xc9\x3e\x6d\xf3\x38\x30\x5f\xaf\x4d\xb0\x91\xb6\x14\x4d\xec\x28\xbc\x7b\xd4\x3c\x42\x9c\xeb\xaf\x7d\x76\xb3\x98\xfc\x61\xf2\x87\x8a\x46\x9b\x38\xd6\x93\x1b\xcc\xa7\xdf\xc9\x53\x63\xb0\xb3\x20\x3c\x7b\xe9\x15\x8f\xa3\x45\xe3\x74\x27\x76\x9c\x4f\xd7\xc6\x72\xec\xdf\x2c\xaa\x43\x3a\xf2\x02\xab\x1f\x4b\x16\xea\x45\xdc\x20\xec\xf3\xb4\xd1\x41\x28\xd2\xd6\xf9\x2d\xcb\xbe\x29\x4f\x32\x52\x80\xcf\xc8\xa8\x91\xae\x31\xcc\x1d\xa5\x4e\x8a\xec\xca\xd9\x38\x06\x5a\x3f\xb1\x37\xb3\x57\xaf\xf0\x00\x16\xc1\x67\xcb\x65\x46\x0d\xcf\xf9\x46\x1c\xe2\x6b\x0e\xf4\xd7\x9f\x50\x21\xb0\xd2\xcc\xbe\xe6\xf9\xb1\xa5\xe1\x74\xd9\x16\x6f\x82\xda\xd3\xa2\x16\x56\x70\x68\xe7\x3b\xfa\xae\xb3\xa0\xe3\xb8\xb0\xe7\x9e\x47\x7b\x90\x2e\xda\x2d\xac\xda\x2a\x32\xfb\xf9\xbe\xd6\x22\x76\x09\xb3\x6f\x30\x2b\xf3\x9b\xf5\x0d\x05\x8a\x1c\x68\xe2\x90\x3c\xfd\x7a\x2b\xac\xdc\xb1\x54\xa8\x57\x52\xdf\x33\xed\xd8\xe6\xd7\x02\x92\x1c\x42\x80\x99\xfc\x9c\xfd\xfc\x73\xe5\x7b\x3c\x77\x2c\x68\xf8\x13\x9c\x86\x66\x8b\x5d\xac\x8f\x17\x3f\x7c\x4f\x77\x7f\x75\x43\x09\x3f\xdd\x1b\xe3\xd3\x78\xc4\x8d\x61\x85\x35\x4b\xa3\x8d\xbc\xca\xbd\x8c\x5d\xa0\xf2\x22\x0a\xb9\xf2\x48\x01\x80\x6c\x65\x61\x98\x76\x6d\x9f\xb9\xb0\x73\xb8\xe6\x34\xa8\x5c\xf3\x7b\x49\x29\xd8\x19\x12\x9e\x35\x51\xc9\x9d\x86\xfc\x68\x3c\x92\x87\xa1\x4e\x53\xd9\x3c\xa7\xd3\x82\x3d\x5a\x99\x96\x31\x8f\xed\x6c\x11\x5f\x14\x40\xad\x99\x86\x86\x8e\x3d\x68\xc4\xce\x5a\x28\x0b\xa2\xa5\x62\xb8\x13\x24\xb8\xcb\x0e\x92\x77\x70\xcb\x1d\x6d\x8e\x2e\xcc\x74\xac\xdd\x92\x4b\x72\xb5\x95\x2a\x29\x87\xbd\x09\x36\x5b\xae\xce\x4f\x53\xec\x49\x9f\x38\x25\xbb\x3e\x56\xcd\xa0\x89\xa6\x93\x5f\x6c\xe1\x48\xd6\x47\x83\x67\x9f\xd6\x74\xf1\xc3\xf7\x18\xc1\xcf\x68\x0c\xd6\xd0\x28\x00\x8b\x8a\xe6\x31\x92\x4b\x1a\x35\xb0\x7c\x8c\xf4\x62\x4e\xb6\xba\x9b\x2e\xe3\xd1\xe7\xfc\xbe\x86\x1d\xc8\x2a\x2a\x84\xa5\xce\xf7\x59\x34\xed\xa5\x38\xbd\x2e\x22\xf6\x7b\x56\x52\x6c\x15\x72\x22\x6e\x4d\xea\xfb\xd4\xbb\x93\xd2\x2d\xdf\x9e\x1a\xf0\x2b\x0b\x0f\x9c\x15\x53\x6e\x1e\x9d\x46\xcb\x93\xf9\xce\x08\xc2\x12\x34\x3b\x9a\xec\x7a\x55\x8d\x60\x46\x7a\x4d\xe2\xb6\x04\x9a\x2c\x5a\xae\x66\x4e\xfa\x70\x7a\x9b\x60\x01\x3c\x04\x8e\x7b\xc7\x30\x39\x67\x08\xfe\x52\x1a\xeb\x27\xaf\x65\x4c\xd3\xfb\x14\x64\xf8\xa0\x6e\xc2\xac\x49\x85\x31\xbe\x84\xc2\x87\x73\xec\x65\xd3\xe7\x9f\x56\x77\x33\x67\x06\x48\xad\x8f\xf2\x28\x62\x9b\x72\x90\x91\x36\xcd\xa4\xde\x9f\x5e\xde\x99\xf3\x80\x63\xfa\x57\x63\xb4\x3e\x15\x96\x12\xf1\xe2\x9e\x95\xe9\x69\x14\xa0\xbc\x6a\x04\x4f\x65\x4f\xfe\x38\xf9\x63\x49\x20\x82\xdc\x61\x4f\xb0\x8b\x1c\xec\xc0\xaf\x1e\xd2\xaf\x27\x22\x5b\xdd\xd5\xec\xcd\x45\x43\x4c\xa4\x86\x74\xfe\x35\x4d\x0d\xd4\x11\x9c\x29\x5e\x9f\xf0\xd5\x39\x52\xb6\xe7\x8f\x12\x54\x64\x90\x16\x80\x66\xe3\xc2\x4e\xc9\x86\xe3\xcb\x61\x44\xb0\xb8\xbe\xfc\x32\x4c\x33\x4d\x4c\x0e\x2b\xd7\x10\xa2\xfc\xae\x40\x38\x1e\x86\x78\xd6\x48\xdb\x84\x81\xdb\x0c\xc9\x59\x8e\x51\xcc\xc5\xd3\x27\x04\xbc\xa0\x8e\xe7\x08\x56\x92\x55\x52\xde\x8a\x86\x04\xfa\x76\xf2\xdf\x27\x2f\x6a\x0b\x2e\x28\xff\xa5\x2f\x1b\x2b\xd0\x86\xcd\x8b\xea\x2d\xb1\x3a\xba\x6b\xd4\x88\xd4\x17\xd4\xc6\x0e\x3c\xeb\x57\x53\xdf\x83\xaa\x5b\x7d\x0f\x30\x9e\x24\x1c\x0f\x47\x3d\xb1\x96\x10\xba\x97\xa9\x35\x44\x80\x8a\x47\xc6\x8f\x55\xc2\x47\xd2\x5d\xed\x29\xf1\xb2\xcd\x26\x23\x63\xa3\xec\xe2\xa0\xd2\x6d\xa9\xe3\xff\x98\x36\xd1\x3b\xc0\x67\x3a\x39\x48\x9e\xfc\x9e\xb9\xd4\x03\xc1\x1c\x49\x33\xd0\xd1\xbc\x0e\xde\x70\xbb\x41\x71\x9c\x4d\x37\x4f\x84\xfb\xb4\x11\xa3\x48\x55\x70\x07\xa9\x69\x76\x7a\x35\x04\x7f\xbd\xc5\xca\x4d\x87\xf0\x2a\xbe\x50\xfa\xe1\xf2\x1d\x9d\x4f\x0b\x8d\x68\xb9\xa8\x53\x87\x26\xfb\xc4\x4c\x88\x3c\x18\x0c\x9e\xff\x33\xf9\x7d\x21\xb5\x37\xa8\xaa\x7f\x62\x0f\x16\x13\x95\xc9\xd8\x3b\x6e\xa7\x14\xd1\x6e\xac\xbd\x35\x81\x27\xf1\x8b\xad\x89\x5d\xd2\x3d\x0a\x26\x1a\x51\x30\xa4\x43\xa2\x19\x18\xf7\xf6\xd7\xd8\x47\x2a\x34\x8a\xe5\xe5\x8a\x0e\x99\xa6\x5c\x08\x13\x78\x3e\x35\x6a\x81\x38\xa6\xcf\x87\x3e\x00\xe6\x64\xb6\x5e\x67\xdf\x20\xfd\x98\xa6\x97\xd3\xf8\x3d\x53\x1b\xbb\xe3\x33\xaa\xe8\x69\x30\xb0\xbc\x4d\x3e\x48\x67\x8d\xc3\x00\xa8\x98\xf5\xb3\xcb\x4a\x8d\x61\xfe\x76\x9e\x25\xa7\xd8\xa5\xa1\x7d\xfc\x03\x25\x74\x17\xe2\x9b\x0c\x97\x3a\x5b\xdd\x9d\x5d\x3a\x7a\xbf\x31\x55\xe2\x19\xfc\x12\x64\x12\x66\xd5\xe9\xdd\xd9\x8a\x36\x4c\xf7\xea\xcc\x73\xa4\xa2\x44\x5a\xab\xcf\x48\xf1\x93\x55\xd6\xf4\x3a\x7a\x39\xb3\x4f\xd0\x6a\x48\x2f\x0d\x94\xeb\xe8\x28\x6f\x33\x81\xcf\xcc\x38\xae\xcf\x9e\xd4\x30\x9a\xa3\x89\x2d\xdc\x85\x8d\xd3\xdd\xc8\xe1\x9e\x8c\x22\x16\x47\x10\xf7\x98\xc2\x9f\x7a\xe9\x63\x47\x8b\xb2\x7a\xb3\x29\x97\xbd\xd4\xac\xdd\xdf\x9e\x8c\xe3\xda\x02\x6e\x9c\xe1\xa2\x31\x48\x15\x34\x77\xc4\x7d\x1c\xbe\xc6\x7f\xad\x4e\xef\x47\x51\x20\x5e\x4b\xdf\xf4\x69\x48\x1d\x69\x7d\xac\x46\x3b\x68\xcc\x90\xaa\x4d\x23\x5c\x4f\xd5\xce\x18\x66\xc2\xa5\x32\xbc\xf1\x29\x8a\xb8\x68\x87\x17\x47\x7e\x0d\x76\xc6\xaf\x5b\x27\x33\x14\x61\x3a\x66\xdd\xe4\xc5\xe4\xc5\x34\x76\xb4\xa9\x67\x26\x53\x53\xe1\x7c\xa1\x0c\x3d\xaf\x15\x2a\x16\x11\xfc\x06\xa6\x56\x3f\x85\xcf\xd2\xbb\xc0\x76\x07\xb7\xf9\x73\x43\xe8\x76\xa6\xa0\x93\xee\x04\xca\xd9\x8a\xff\xe8\xf6\xc5\x25\x4f\x70\xf3\xe4\xcf\xde\x8a\x40\x7a\xf2\xd6\x44\x93\xe3\x6f\xfc\x96\x45\xb4\xc3\x99\xc5\x7f\xc3\x8d\xa9\x34\x64\x5a\x80\x68\xfa\x6c\x75\x37\x79\x3e\xf9\x71\x1e\x5f\x85\x62\x66\x9e\xd1\x4b\x99\xd9\x2b\xb2\x37\xa3\xd8\x45\x24\x7f\x1f\x05\x78\xf6\x9a\x0d\x96\xa3\xc4\x62\x42\x4d\x01\x60\x7c\xac\xf7\xe2\xcb\xac\x05\x16\x10\xca\x73\x11\x87\x55\x8a\x8b\xf8\xbe\x1c\xa5\x02\x83\x53\xbd\xb0\xd2\xc7\xb7\xe4\xab\xbd\x90\xf1\x7d\x80\x6b\xf9\xc0\x11\x51\xdf\x85\x53\xd8\x15\x9f\x22\x51\xc9\xbf\xe1\x69\xe8\xe8\xda\x91\x10\x31\x3b\x7a\x05\xef\xe3\xa2\x5c\x98\xa8\x61\x4a\x1a\xaa\xe4\x7e\x3c\x75\x19\xb2\xf5\xfa\xfc\xbf\x08\xe6\xf2\x24\xd1\x2b\xe4\x0e\xdc\x31\x9b\xbb\xde\x58\x9f\x1a\x5a\xd5\xd2\x04\x1d\x5f\x11\xed\x82\x54\x9e\x7a\x2a\xaf\xf9\xf4\xaa\x6b\x78\x90\xcc\x9b\x51\x9e\x45\xda\xbc\x30\xa7\x6e\xed\xd1\x58\x8e\x68\xa2\xf4\xd9\x7a\xfd\xff\x03\x00\x00\xff\xff\x36\x74\x93\xb3\x7e\x40\x00\x00") func internalModelTagsGobBytes() ([]byte, error) { return bindataRead( _internalModelTagsGob, "internal/model/tags.gob", ) } func internalModelTagsGob() (*asset, error) { bytes, err := internalModelTagsGobBytes() if err != nil { return nil, err } info := bindataFileInfo{name: "internal/model/tags.gob", size: 16510, mode: os.FileMode(420), modTime: time.Unix(1494607416, 0)} a := &asset{bytes: bytes, info: info} return a, nil } var _internalModelWeightsGob = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xfd\x79\x94\x1c\xd9\x75\x1e\x88\x03\x99\x55\x58\xba\xd1\xdd\xe8\x8d\xa4\x44\x5a\x4e\x49\xfc\xa9\xfd\xb3\x9a\xd4\xd0\x33\x1a\x8f\xed\xe3\x89\x54\xa1\x9a\x4d\x94\xd5\xd5\x35\x05\x10\xa0\xfb\x68\x74\xfa\x65\xe4\xab\xcc\x40\x45\x46\x24\x23\x22\xab\x50\x3d\x1a\xcd\xc8\x1e\x49\x5e\xe4\x63\xeb\xe8\xc8\xda\xac\x91\x65\x6a\xb1\x6c\xd9\xa6\x24\x4a\xa2\x96\x61\x14\x9b\xfb\xaa\xde\x17\xf4\x8a\x7d\x2b\xa0\x0a\x7b\x55\x01\x28\xcc\x79\xf7\xbb\xef\xbd\x9b\x95\x49\x0d\xff\x61\x44\xa3\x32\x33\xe2\xbd\xfb\xee\xfa\xdd\xef\xde\x77\xe7\x67\x47\xb6\x56\xee\xfc\xb3\x2d\x5b\x77\x6d\xbd\xf3\x33\x5b\xb6\xdc\x7b\xe7\xa7\xcd\xfd\xcf\x98\xfb\x1d\x5b\xb6\xdc\xfe\x47\x5f\x3d\x7e\xe7\x9f\x6d\xb9\xbd\xf5\x07\xfe\xf4\xbb\xa3\x0f\x7d\xa4\x56\xa8\xd6\x0f\x46\xb5\xf9\x34\x6b\xd6\x0e\x8c\x4d\xd6\x3a\x69\x52\xb4\xe3\x85\x4a\x65\x7a\x6c\xf5\x0b\xd7\xfe\xd6\x8f\xfd\xeb\x67\x8f\x06\x95\x89\x09\x7b\x5d\xde\xcf\x7f\x9b\xe9\xbc\x97\xcd\xa8\x50\x37\x2b\xd5\x03\x63\x93\xab\x97\x5f\x78\xa2\xb1\xfb\x13\x47\xcb\xea\x81\xb1\x71\x7b\x13\xdc\xc7\x7f\x9c\xa8\x5e\x11\xc5\xbd\xbc\x6a\xbe\x29\x6f\xff\xfc\x85\x9f\x08\x2e\x05\xd5\x89\x89\xe9\xd5\x7f\xfe\x23\x4f\x9f\x7c\xee\xfb\x4e\x97\x95\xc9\xc9\xd5\xcf\x7e\xcf\x4f\x9f\xff\x5f\x3e\xfb\x4a\xf9\x9e\x4d\x8f\x35\x39\x59\x6b\x6b\xd5\xad\x98\xbf\xf9\xf3\xbd\xbb\x2a\x3f\xf8\xb3\xbf\x13\x98\xc7\xe3\xeb\xf2\xc1\xe8\x07\x3f\x82\xbf\xd4\x73\x3a\x29\x7a\x2a\x8e\x17\x2a\xd5\xc9\xc9\xa9\xd5\xf4\x81\x7f\xba\xf8\xf5\xdf\x3c\x49\x2f\xc0\xd7\x43\xbe\x7d\xaa\x16\x25\xb3\xe6\x2d\xa6\x56\xb7\xfd\xd4\x2f\xee\xf9\x97\xf1\x71\x7a\x1c\xbe\x0e\x06\x57\x69\xbc\xd6\xd6\x59\x43\x67\x45\xc5\x7c\xf1\x75\xb3\x30\xd7\x96\x4a\xfa\x45\xbe\x09\xfc\x32\xb5\x7a\xb1\x2a\xa2\xa4\x55\xad\x1e\x18\x7b\x7c\xf5\xfb\xdf\x58\xfb\xc9\x43\x7f\x79\x95\x7e\xe0\x67\xdf\xf3\xfa\xb7\x6f\xec\xdb\x5a\x37\x5f\xf2\xea\xa7\xba\xff\xf0\xae\x57\xcf\x97\x76\xc5\x54\x51\xe8\xa4\xa9\x35\xbd\xf4\x27\xff\xe1\x5d\xaf\x7e\xaa\xfb\x56\x50\x39\x30\x66\xaf\xcb\xf7\x0d\xd9\xbb\xbc\xd0\xba\x4b\xcf\xf4\x99\xaf\xce\x7d\xee\x37\xbe\x7b\x39\x30\x9f\xe6\xeb\xf2\x7e\xf3\x09\xfa\xdb\xae\x2a\x22\x9d\x14\xf9\x4e\xf3\xa7\x66\x33\x7e\xf8\xc7\x37\x82\xea\x81\xb1\xa7\x56\x7f\x9c\xd6\x74\x19\xef\x12\xfc\xb0\xb9\x3d\x86\x2d\xfd\xe5\xc4\xac\xdf\xe7\x4b\xda\xec\xef\xfd\x74\xd6\xfe\xf9\x0b\x27\xe8\x2d\x5e\x34\x5b\xfd\xf7\xce\x94\xb4\x7e\x67\x7f\xe0\x23\x3b\x7e\xff\x03\xe7\x82\x91\xc9\xc9\xa9\x7d\xab\x66\x7b\xde\xf3\xfa\xb7\x4b\x7a\x73\xb3\xfa\x8f\xfd\xc9\xf1\xe0\x1e\x7e\xe0\xb9\xb4\xd0\x59\x5e\xc5\x5f\xee\xf8\xfd\x0f\x3c\xd5\xfc\x07\xd7\x82\xea\xe4\xe4\xbe\xd5\x5b\xbf\x77\xe9\x85\x27\x1a\xbc\xa0\xff\x7f\xb3\x9e\x7f\xeb\x4d\xb7\x30\x99\xfe\x64\x2f\xca\x74\x73\x9b\x79\x76\xac\xe6\x86\x78\xcd\x6b\x78\xda\xf5\x9f\x3c\xf4\x97\xc5\x2f\xec\x58\xa4\xa7\xfd\xcb\xe2\x17\xde\x37\xf2\xca\xfd\xf5\xca\xf4\xd8\xc6\x4a\x49\x3f\x61\x16\xfe\xf8\x6f\x9b\x35\xf9\xc1\xbf\x83\xef\x0d\xd3\x64\x26\xca\x3a\x39\x09\xfe\xe7\x7e\xe3\xbb\x7f\xe8\xad\x0f\x1e\x0b\xe8\xbb\xf8\xa6\x7c\x20\xfa\x10\xff\x6d\x57\x17\x59\x1a\xeb\x5e\x87\x9f\xfe\xc0\xbd\x1f\xfa\xc3\x5f\x5f\xe6\xa7\x37\xab\xf1\x99\xaf\x9e\xc3\xd3\x4f\xd0\x12\x1c\x1d\xd8\xad\xe9\xb1\x5a\x23\xcd\xa2\xa4\x45\xbb\x85\x43\x70\x9e\x5e\x83\xaf\xcb\x87\xf9\x2f\xa3\x64\x4e\xe7\x45\xd4\x52\x45\x94\x26\x39\x89\x03\x1e\xe8\x6d\xbc\x09\xdf\xb8\x65\x9d\x57\xb4\xac\xf4\xeb\x58\xf2\x65\x3c\xd7\x7f\x32\x8b\xba\xfb\xab\xb4\x67\xdf\x35\x62\x1e\xf9\x6c\xf9\x37\x86\x9e\x85\x42\x67\x73\x3a\xb1\x07\xfb\x87\xde\xfa\xe0\xb6\x9f\xfa\xc5\xe3\x58\x57\xbe\x09\x1e\xf4\x6b\x91\xa5\x85\xce\xcd\x6f\x8e\x18\xf1\xfc\x93\x2b\xb7\x5f\x3a\x7c\xf6\x54\x50\x99\xb6\xc2\xf0\xf5\xd2\xac\x28\x7e\xf1\xbf\x94\x95\xbd\x93\xab\xdf\xf8\xcd\xc7\xfe\xe4\xca\xed\x37\xcd\x82\x7e\xc4\x2e\x7e\xa7\xd3\x4b\xa2\x62\xe1\x2e\x2c\xe8\xfe\xe3\xbf\xfd\x6b\x5f\xac\x2d\x42\xd8\xf0\xe0\x27\x02\x12\x30\xdc\x5c\xa5\xf3\xff\xf7\x68\xcb\xcf\x05\xe6\x3b\xff\xeb\xe3\x47\x9f\x79\xe8\xbf\x2e\x97\x24\xc5\x58\xf5\xaf\xe1\xbd\xe9\xbc\xfc\xc3\xaf\xd3\x7b\xff\xf7\xf4\xbf\xdb\x78\x17\xfe\x5e\x6c\x14\x3e\x7f\x3e\x18\xb6\x22\xbd\xa4\xa9\xb3\xbc\x50\x49\xb3\x62\x5e\x11\x42\xc7\x02\xcf\x37\xc1\xbd\xee\x5d\xf2\x42\x65\xf9\x08\xfd\xe3\xbf\x37\x5b\xb3\xed\x42\x50\x9d\x1e\x9b\xe6\x73\x76\x8c\x9e\x83\xff\x01\x3f\xcd\xff\x10\xbc\x77\xd3\x4f\x8f\xef\xaf\xe5\x45\x2f\x29\x68\xcf\xff\xf0\xd7\x97\x7f\xf7\xcb\xff\xe8\x1d\xd2\x64\x7c\x6d\x84\xd7\xfe\x66\x57\xeb\x26\x49\xd3\x81\xb1\xd5\xd5\x7d\x66\xf5\xde\x25\x69\xe2\xeb\x72\xb3\x0e\x9b\x7a\x72\x5f\x2d\xeb\x75\xd2\xcc\xee\x32\xe9\xe4\x1f\xbe\x4e\xdf\xcf\xd7\xe5\x5d\xfc\xc7\x8d\x4c\xd1\x33\x4c\x93\x82\x3e\x81\x65\xe5\x9b\xf2\xfd\x9b\xbe\x79\x62\xa2\x96\xa4\x59\xd1\xd6\x2a\xc7\x93\xff\xc7\x2f\xff\xa3\xbf\xfb\xcf\x7f\xe4\x5d\xbc\x2b\xdf\x60\xb9\xf2\xde\xcc\x4c\x74\xb8\xd6\xd4\xe9\x28\xfd\xe3\x43\xb4\x09\x57\x59\x79\x8c\xff\xcb\xf8\xf4\xcd\xdf\x7b\xbd\x34\x4f\xf4\x31\xb3\x39\x8f\x7f\x9e\x5e\x89\xaf\xcb\xca\x9e\x71\x5e\x89\xf3\xe5\x6e\xfe\xf1\x8e\xca\x66\x9b\xe9\x7c\x92\x57\xe8\x19\xe9\x58\xfe\xee\x39\xfa\x18\x5f\x97\xf6\x9c\x34\x54\x38\xab\xb3\x4a\x65\x7c\xff\x2a\x69\x98\x1f\x63\xa5\xc7\x37\xc1\x7b\xdc\xf9\x2b\x74\xd6\xcd\xd2\xb9\x28\x09\x23\x15\xd3\x79\x85\x60\x5f\xc4\x07\xf8\x26\xd8\x7c\xc4\xf7\x4e\xd6\xf2\x74\xa6\xd0\x59\x85\x0c\x1d\xbd\xcd\x25\x3c\x0b\x5f\x97\x72\x15\x92\x34\x1f\x25\xb1\x84\x55\x58\x2e\xcd\x56\xc2\x22\xae\x40\xd4\x36\x5e\x3a\x7c\xf6\x07\x3e\xb2\xa5\x5e\x3d\x38\xbe\x7f\x95\xf4\xe5\x3b\xe7\xe9\x3c\xf1\xf5\x10\x43\xf5\x78\xad\x95\xf5\x3a\x1d\x95\x54\xfc\xbe\x9e\xc2\x63\xf3\xcd\xd0\x0f\x35\xa3\x96\x39\x8c\x24\x4d\x1f\x21\xd5\xbc\x4c\x62\xcb\xd7\xc1\x66\x13\xfa\x68\x4d\x75\xa2\x24\x25\xeb\x3e\xf5\xaf\x7e\x29\x79\xe0\x9f\xae\xd2\x7b\xe2\x18\x9f\xc0\x71\xfb\xd1\xbf\x6b\x54\xdb\xd2\x80\xc0\x4c\x4e\xd6\x9a\x3a\x0f\xb3\xa8\xa1\x9b\x24\x30\xf0\x34\xce\xe2\x53\x7c\x13\xdc\x6b\x64\x9d\x97\x6a\x41\x37\xef\x36\x7f\x48\x3b\xfa\xe5\x9b\x25\xad\x2f\x6e\x96\xa1\x25\x3e\x6f\xf4\xde\x95\x6f\x41\x43\xfe\xff\xc8\x90\xbf\x14\xd0\x6b\xaf\xfc\xae\x91\xc0\x0b\x65\xe5\x89\xf1\x55\xb2\xef\xa7\x97\xc9\xac\xf2\x1f\x95\x90\x3d\xb8\x28\x47\x49\xcb\x40\x21\x2f\xd3\xc9\x80\x84\x9e\x82\x96\xc1\xd1\xff\x8c\x59\x0d\xd6\x85\xda\xc8\x4a\xa1\xa2\xa4\xa3\x93\x62\x87\xd9\x1a\xa7\xae\x0e\x8c\xad\xfe\x4d\xb3\x97\xdf\x73\x14\xd6\x10\x07\xf3\x39\x5a\xd6\xdf\x32\xa6\xff\x53\xbc\x4c\xff\xc1\xe8\xc6\x97\x96\x02\x3a\x95\x7c\x83\xfd\x7f\xe7\x49\xb3\xb4\x37\xe8\xa1\xf8\x7b\x07\x16\xf3\x43\xfb\xf6\xff\xc8\xf4\xfe\x0f\xd5\x54\xa3\xb1\x30\x62\x9e\x98\x0e\xcb\xd1\x8b\xa4\x83\xb1\xe5\xdf\xc6\xfe\x7f\xeb\x9b\xe6\x7f\x5b\xea\x95\x3d\x7b\xf8\x61\x96\x06\xac\xd4\xd4\xf4\xd4\x07\x6b\xb1\x56\xd8\x17\xfc\xe6\x19\x5a\x08\xbe\x2e\x77\x45\x76\x53\x3e\xd9\xd3\x77\x7b\xd3\x79\x1d\x2f\x03\x3d\xc7\x4e\x03\x0c\xf4\xab\x25\xc9\x2f\x4c\x26\xeb\xeb\x97\x8d\x60\xef\x38\x83\x07\xfb\x9a\xf9\xab\x1f\xba\x42\x4b\x06\xaf\x68\xeb\x22\x76\x05\x77\x2f\x96\xc6\xb6\xfc\x03\x5a\x8d\x73\xc2\x6f\xbc\xbb\xee\xbd\xbc\x4a\x7d\x88\x94\xa5\xbd\x2c\xd7\xf1\x9c\xce\x2b\xd5\xa9\xe9\xa9\xd5\xde\x2f\xbc\x6f\xe4\xc0\xbd\x6b\xf0\x7b\xf8\xa6\x7c\x8f\x53\xa9\x9d\x28\x57\x4d\x72\x27\x33\x9d\xd3\xf1\xa1\xed\x2e\x4e\x93\x64\xf3\xb5\x53\x3c\x61\xac\xa2\x8e\x4a\x0a\x52\xfc\x4f\xad\xfe\xbb\x2f\xd6\x3e\x9d\xb5\xaf\xb0\x34\xfd\x5b\x23\x66\x37\x8f\x42\x6f\xf2\x3f\x41\x1a\xf9\x5f\x06\xd4\xb3\xb1\x3a\x99\x71\x66\x7b\x70\x00\xaf\x1a\xa3\xfa\x03\xcf\x63\x81\xf8\x26\xf8\xae\x21\x1f\xea\xf4\xb2\xa6\xd1\x6a\x93\x93\xbc\x42\x2f\x04\x95\x8f\x1e\xb4\xd7\xc6\x53\x66\x51\xcd\x55\xdc\x6b\x64\x51\xda\xcb\xab\xf4\xc4\xff\x1b\x89\xf6\x12\x69\x1d\x6c\xee\x2a\x8e\x12\x3c\xa5\xe3\xe5\x07\x36\xfd\xda\xc1\xf1\xfd\x35\xd5\xd1\x59\x14\xaa\x24\xaf\xe0\x45\x1f\x21\x05\x71\x02\xef\xc6\x37\xe5\xe0\x63\xee\xab\x45\x79\xde\xd3\xcd\x2a\xfd\x00\x76\xf5\x36\x64\x84\x6c\xf5\x5d\x23\x75\x92\x1e\x3c\xd3\x89\xb2\x36\x68\x18\x9b\x91\xd1\x18\x9d\x28\x51\x45\x9a\x2d\xd0\xfb\x92\x4b\xfa\x13\xcb\x64\x2f\xf8\x7a\x40\x27\xef\x7f\xb2\x16\xb5\x92\x34\xd3\xa4\xda\xd8\xcf\x24\x81\xb6\x3e\xa7\xf5\xdb\xbb\x69\x56\xcc\xa4\x71\x94\xb2\x29\xa1\xb3\xfb\xd3\x5b\xeb\xe6\x97\xf8\x7a\xf1\x3e\x77\xf0\xc3\x76\xa4\x67\xe0\x9c\x2d\x90\x3d\x60\xe7\x95\x6f\x02\xef\xe9\x74\x33\x63\x47\xba\x2a\x1e\x35\x7f\xfc\x7e\xf2\xa7\x7e\x9b\x6c\x99\xd5\xe8\xb4\x1d\x38\x9d\x27\xa0\xc0\xf8\x86\x9e\xf3\xff\x36\x06\xef\xef\x5e\x08\x76\xf1\x73\x1e\x4a\xc3\x59\xfc\xb0\xf0\x9a\x9d\x0b\xed\x02\xb0\xae\x09\xd7\x3a\xba\x39\x4a\xab\xfc\x09\xf2\x9c\xae\xd0\x17\x22\x88\xda\x8e\x15\x87\x47\x55\x59\xa4\x67\x80\xbe\x59\xc6\x17\xe2\x88\x2e\x0d\x91\xd4\x5a\x91\xf5\xc2\x59\xe3\x7c\x08\x37\xff\x3c\x1d\x4c\xbe\x0e\xbc\x97\xad\xe2\x6e\x5b\x35\x34\x02\x27\x48\xe5\x45\x88\x0b\xdf\x0c\x68\xb4\xe9\xb1\xda\x4c\x1a\xc7\xe9\xbc\xfb\x05\x63\x3b\x5f\x78\xe2\x22\x3d\x3d\x5f\x97\x0f\xba\x05\x8e\x55\x38\x1b\xf7\x8c\x43\x5a\x35\x8f\x80\x13\x76\x93\xfe\x18\x6e\xe1\xbd\x8b\xf4\x7b\xd0\x46\x5b\xea\x43\x44\xa4\x13\x65\x59\x9a\x51\x20\x00\x87\xf1\x0b\x74\x2c\xf8\x3a\xb8\xc7\xbd\x8d\x39\xa1\xf7\xd3\xb7\xfd\xea\xaf\x98\xff\xfd\x5e\xe9\x5f\x6b\x5d\x86\x4d\x27\x69\x57\x37\x2e\x93\xab\x0a\x0d\xb9\x41\x2e\x32\xe2\xad\xad\x8b\xe6\x51\xf1\x78\xb7\x49\xbf\x53\x0c\x31\x57\x5d\xa4\xb5\x87\x97\xf3\x95\xb2\x3a\xf5\xa4\x33\x4d\xa5\x71\x5c\x60\x1c\x5f\x86\x79\xa0\x60\xed\x9f\x3c\x58\xa7\x1d\xc6\xf3\xdc\x0c\x68\xc1\x26\x29\x24\xb9\x4e\x2f\x81\x90\xec\x22\x94\x30\x0c\xcf\xd5\x92\xfc\x53\xfc\xfc\xf3\x81\x0f\x13\x3b\x2a\x53\x45\x3b\x4d\x8c\x78\x6d\xbc\x46\x12\xbd\xf1\xda\x80\xf1\x3f\x30\x56\x0b\x7b\x85\x1e\xf1\x1e\xc6\x68\x9d\x1e\x1b\xc1\xdf\x69\x1c\x6c\x9c\xe5\xd5\xd2\xbb\x05\xaf\x0d\x98\x9b\xbd\x93\xb5\xf9\x34\x75\xfb\xfc\xfc\xf7\x19\x2d\x8b\xe3\xc9\xd7\xe5\x43\x3e\xd4\x4f\x5a\xaa\xa5\x8d\xa1\xcd\xf1\xe7\xb0\xf9\x37\xe9\x17\xf8\x3a\xd8\xac\xb4\x4c\x90\xfc\xc9\x9e\xca\x0a\x9d\xc5\x0b\x55\x6f\xdd\x2b\x75\x6f\x2b\xd7\xe9\x1b\x10\xc5\x1d\x73\x0a\x3e\x4a\x8a\x2c\x4a\xf2\x28\x34\x4e\xce\xc6\xd5\xc0\x1b\xc4\xe7\xb0\xd1\xf4\xb2\x37\x96\x07\xd4\xdd\xf4\x58\x2d\x4a\xf2\x74\x46\x65\xf4\x7b\x70\xe2\x2e\xd3\x4b\x41\x10\x2e\x62\x81\x90\x38\xf8\x6a\xb9\x39\x0a\x30\x7a\xb6\x97\x43\x59\x4e\x72\x5c\x7b\x86\x64\x44\x98\xd0\x71\x4e\x0b\x7c\x6b\x60\x77\x8c\xb6\x4d\x67\x66\x60\x96\xa0\x62\x96\xc9\x80\xe2\xd3\xc7\xc9\x31\x98\xa7\x27\x59\x22\x67\x12\xf1\xf6\x48\xdd\x2a\xc2\x66\x14\x16\xaa\xdb\x4e\x13\xcd\x4a\x1e\x9e\x12\xfb\xf3\x7c\xe3\xa2\x4f\x95\xe7\x51\x2b\xa9\xd0\xaf\xe1\x55\x61\x52\xf8\x3a\xf0\x2a\xb3\x1d\xb5\xda\xf1\xc2\x36\xf3\xf3\xd6\x33\xa4\x4f\xe1\x94\x9d\x86\xd6\x81\x72\x3a\x06\x31\xa6\x30\xfe\xc0\x55\x5a\x3a\xbc\xc9\x5a\xe9\xc3\x92\xeb\x4e\xd7\x75\x54\x2b\x0a\x23\x95\xd0\xf9\xc7\x71\x59\xa3\x0f\x41\x20\x8f\xe3\xab\x49\x06\x3f\x7d\xb1\xbc\x97\x3f\x95\xeb\x6c\x2e\x4a\x5a\xf4\x21\x84\x8c\x47\xe0\xa9\x91\x67\xf0\x21\xec\x18\xd2\x14\xa7\x5d\x10\x11\xe5\x99\xd2\x31\x5e\xd7\xda\x1f\x5a\x17\x6b\x80\x76\xbb\xc3\xd4\x56\x49\x33\x8a\x17\x2a\xc2\xaf\x7b\x8e\xd4\x05\x5f\x0b\x25\x99\xe9\x99\x58\x87\x05\xb2\x65\xd0\x26\x97\x11\x43\xe2\xc0\x9e\xa1\x4d\xfb\x1d\xf3\xfc\xd9\x6b\xe5\x7d\xee\x27\xa2\x64\x46\x75\x16\x48\xb5\x3a\xaf\x7d\xaf\xf7\xda\xef\xf3\xc6\x7f\x36\xa2\x60\xd1\xa9\xe8\xd3\x81\xd0\xdd\xa7\x07\x74\xb0\x89\x16\xf3\x8e\x8a\x63\x9d\x17\x26\x9a\xd9\xc7\xfa\xe5\x2c\x2d\x0a\x5f\x0f\x24\x13\xcc\xa7\x1a\x2a\x9f\xd5\x45\x43\xc5\x71\xa5\x2f\xb5\x23\x0c\x96\x58\xa3\x8e\xce\x73\xd5\xd2\x23\xa4\x9c\x60\x3b\xdf\x84\x23\x8c\x60\xf0\x02\x1d\x3b\xbe\xa6\x77\xe3\x3f\x2a\xef\x77\x72\xa5\x5a\x99\xd6\xb4\x91\x07\xc6\xac\xc0\xd3\xc7\x28\x2e\x59\x3c\x16\x18\x5b\x8b\x18\x6b\xad\xdc\xed\x3e\x96\x51\x8e\x8e\xe3\x76\xca\x55\xfc\xfa\x3b\xa5\xcf\x7b\x9e\xa4\x27\xe6\xff\x0e\x83\xc5\xff\x20\xcc\xc1\x4c\xef\x50\x54\xa1\xd3\xf8\x57\xc6\x67\xfa\xb5\x13\x78\x76\xbe\x11\x69\x4a\x8a\x29\x75\x5e\xe8\xe6\x76\xf3\x12\x24\xfe\xcf\x5d\x24\x95\x8e\xfc\xc9\xf5\xa0\x3a\x35\xbe\xdf\x66\xd3\xa0\x9f\x11\x3a\x5f\x46\xda\xf4\xe2\x4f\x04\x3f\xfc\xe3\x7f\xbe\x65\x91\x1e\x17\x09\x84\x8b\x81\xf7\xf1\x5f\x09\xbc\x63\x9e\x45\x6a\x07\x09\xe8\x98\xd1\x74\x6f\x5c\x80\xf8\x43\x7a\xde\x53\xa7\x57\x81\x51\x58\x21\x97\x1b\xce\xcd\x6d\xc8\xbe\x4d\x93\x99\x97\xe7\x64\x1e\xde\xc9\x9e\x1e\xb3\x42\x50\x3d\x5b\x17\xfd\x4f\x7e\xf8\xb1\x0f\xb3\xb2\x80\x9f\xfc\x22\x0e\x05\xdf\x0c\x84\x9c\x93\x93\xb5\x79\x55\x84\x6d\x2b\x93\x38\x71\x7f\x48\xc2\xc5\xd7\xa5\xf5\x77\xda\xbd\x2c\x5b\x80\x2c\xe1\xeb\xf0\x70\x7c\x3d\x90\x43\x31\x32\x38\xaf\xe2\x59\x91\x89\x80\x41\xe1\xeb\xa1\xd9\xe0\xac\x97\x54\xbc\x1f\xfc\x59\x99\x78\xfa\xac\x38\x6e\x7a\x66\x46\x87\xc5\x4e\x7a\x16\xe4\x8a\xe1\x7c\x72\x5c\x08\x13\x6b\x53\x05\x66\x6f\x90\xb9\x38\x6b\x9c\x80\x8d\xe7\x10\x77\x40\x3d\x7d\x09\xc7\x0f\x39\xa8\x4b\x24\xad\xc8\xbd\x3e\x0b\xd3\xce\x7f\x35\xe0\x83\x9b\xb7\xe3\xd4\x59\x5e\x90\xb6\x80\x9e\xad\xd4\xfd\x57\x9c\x93\x69\x8d\x1b\x22\x09\x9c\xf6\x8a\x99\x38\x9d\xcf\xe9\x55\x91\xc4\x3d\x81\x9f\xe3\x9b\xc0\xe7\x97\xa2\x5c\x35\x74\x1c\xab\x0a\xbd\x13\x3c\xfb\x33\x74\x00\xf9\x7a\xc0\xd3\x9e\x98\xa8\xe5\xe9\x5c\xa4\x8b\xaa\xf0\x05\xb0\x3e\xc8\x10\x8c\x42\xf4\x60\x7f\x6f\x96\xf7\xb8\xdf\x9a\x89\x39\xd5\x0f\x65\xf7\x69\xda\x2e\xbe\x16\xe7\xbc\x50\xb3\x3a\x9d\xd3\xd9\x4e\xf3\xf8\x14\xf4\x3d\x76\x8a\xbe\x1e\xea\xe1\x79\x12\x0b\x3c\xdd\x2a\xad\x3e\xff\x77\x44\x61\x36\x75\x48\xa7\x15\xc7\xfa\x12\x24\x1b\x9b\x74\x14\xdb\xc3\x7f\x86\x25\x84\x4f\x76\x2c\xd8\x1c\x8e\xd8\x98\x5b\x77\xba\x71\xba\xe0\x92\xaf\x30\xd5\x36\x9b\xc5\xe9\x09\x1c\x3e\xa8\xa2\x17\xca\x7b\xdd\xdb\xe4\xed\x5e\x17\xa1\x1e\x92\x12\x77\xe8\xad\xf9\x7a\xc0\x27\x30\x46\x3d\x49\x0b\x8d\x9a\x05\xf4\x2f\x74\x23\x5f\x0f\x88\xf5\x81\xb1\xda\x1c\x25\xe4\x26\x26\xdc\x96\xf9\x05\x3a\x23\xd6\x95\xec\x32\xa5\x3a\x27\x27\x57\x3f\x0a\x75\x84\x65\xe2\x1b\x5f\xa2\xc8\xb2\xb4\xa5\x12\x7c\x29\xb4\xe1\xb6\xba\x4f\xe0\x6c\x5b\x1c\x72\xce\x29\x8b\xaa\x32\x7c\x3b\x72\x31\x97\xe8\x55\xf9\xba\xf4\x0e\x42\xae\x55\x16\xb6\xc9\x41\x40\x00\x74\x1d\xaa\x0f\xe2\xf3\x5c\x20\xd2\x96\xd0\x43\x7f\xc3\xe8\xfa\x27\x61\x17\xa0\xb8\xd8\x8b\xe0\x7f\x40\x0e\x09\xc2\xa3\xe3\x18\x51\x13\xb6\x1b\x15\x22\xbe\x2e\x7d\x72\x3b\x4c\x93\xbc\x1b\x65\x2a\x44\x2e\x0c\xd1\xe9\xef\x92\x68\xf1\xb5\xf4\x3a\x12\x5d\x44\x21\x65\xc1\xe1\xb1\x2f\x97\x23\x53\xd3\x53\x1f\x74\x77\xbe\xe6\x83\x83\x00\x9f\x78\x7b\x7d\xb3\xcb\x38\x31\x51\x53\x61\x98\xf6\x92\x02\x11\xf2\x92\xd1\xc8\xe7\x2f\xd0\xe7\xa1\x4f\xd6\x61\x82\xe0\x11\x9d\x12\x8b\x66\x1c\x76\x9d\xed\x24\xe1\xfd\x52\xcd\x78\x21\xb7\x45\xec\xf2\x3e\x72\x73\x21\x8a\xa7\x4b\x51\x7f\xbb\x5d\x56\x1e\xfb\x04\x1b\xaa\x77\xc9\x8e\xc0\xc0\xdc\x10\xcf\x7c\x0d\xca\xe1\x2b\x46\x6f\x3e\x7d\x16\xc7\x08\xa9\x88\xcf\x0b\xa5\xd8\xd4\x49\xa4\x73\x4a\xab\xba\x94\xfc\x94\xbf\xe9\x4b\xfc\xf6\x74\xbe\x9b\x1e\x02\xe5\x24\xce\xff\xe0\x07\x6e\x40\xeb\x22\x33\x85\xb0\x1b\x7b\x4d\xc1\xe9\x38\xff\xd5\xb5\x52\xa4\xd6\xd7\x03\xd2\x4e\xd0\x5e\x9f\x21\x31\xb0\x75\x48\x9c\x41\x9c\xf3\xe3\x64\x67\xe1\xdf\x5f\x2d\x2b\x1f\x3d\xc8\x6b\xfa\x02\x69\x09\x28\xef\x6d\x28\x1c\xc1\x7d\xb8\x11\xf8\x8a\xda\x0d\x48\x14\xd4\xd1\x92\xc8\x1c\x8e\xd6\x77\x3b\xe9\x6a\x66\xaa\xd5\xe2\x2c\x0c\xe7\xdf\x02\x99\x8b\xdb\x69\x45\x46\x23\x13\x85\x40\x7b\x0d\x7b\xca\x37\xe5\xdd\xfc\x47\xc5\x02\x2b\x06\xeb\xc6\x49\xf7\xee\x7b\xbe\x83\x2a\x6a\xe8\x44\xab\xa2\x5d\x31\x6b\x80\xf5\x78\x13\xdf\xce\x37\xe5\x83\x2e\xac\x51\x4d\xfd\xc9\x9e\x2a\x34\x97\x7c\x71\xc6\xf1\xbc\x7c\x3d\x10\xd2\xec\x19\x97\xb5\x83\x71\x44\x9e\x15\xc8\x34\x5f\x0f\xb1\xf1\x53\xb5\x8e\x4a\xda\x69\x8a\xb3\xcf\xe7\x80\x64\xcd\x9e\x89\x21\x36\xa4\x69\x5e\x83\x53\x30\x08\x63\x97\x48\x6f\xf1\xf5\x80\x66\x7c\xb4\xd6\x88\xd3\xb4\x89\x8c\x10\x9e\xff\x6a\xe9\xdf\xe5\x6a\xf0\xa0\xab\x69\xa4\xaa\x19\xaa\xdc\x78\x7d\xa3\xbe\x24\x33\x4a\x27\x04\xe6\x64\x64\x51\x24\x4a\xbf\x09\x7d\x03\x9b\x7a\x11\xde\x11\xc7\x13\x03\x89\xb8\xe9\xb1\x5a\xa3\x17\xc7\x51\xde\x26\x27\x14\x7e\xd7\xf3\xa5\xf8\x82\x63\x62\xad\xce\x0f\x44\xa9\xe3\xfb\x11\x6e\xb6\x7a\x2e\x16\x46\x40\x7b\x83\x3e\xc6\xd7\x03\x3f\x6b\xbc\x81\x56\x9c\xa6\x1c\x02\x40\x90\x90\xae\xe4\xeb\x81\x15\x36\xbb\x52\x68\x8d\x7a\x89\x95\x0e\x4e\x21\xf1\x4d\xe0\x43\xee\x30\xed\x74\x63\x15\x25\xfc\x54\x4f\xf1\xf1\x5a\xc3\xdf\xf3\x4d\x30\x10\x3c\x4c\x4f\x7d\xd0\x28\xd2\x50\x77\x0b\x6c\x24\xb2\xe8\x17\x49\xb7\xf0\x75\x70\xaf\x2b\x5f\x66\x1d\x57\x2c\xc7\x81\x85\x37\x83\x0c\xed\xa5\xd2\x7b\x39\x57\x87\x01\x05\x8a\x5e\x03\xc7\x85\x3d\x54\x12\x64\xeb\xad\xfa\x08\x48\x35\xe7\xa2\x5c\x23\x18\x83\xc7\x0b\xf5\xcc\xd7\x81\x3f\xcc\x79\x1a\x46\xba\x58\x40\x00\x0d\x0b\x71\x41\xe6\x2a\xcf\xd3\x2f\xe0\xe5\x2f\x05\xa2\xb4\xb2\x32\x20\x9c\x07\xc6\xa6\x6a\x79\x9c\xce\x8f\x78\x83\x57\xad\x7b\xa5\x7e\x8e\x14\x10\x1c\xde\x53\xf8\x09\xeb\xb2\x5b\xef\x37\x8f\x55\x01\xbb\x65\x1f\x5a\x24\x27\x97\x87\xa4\x3b\x8c\x93\x1a\x85\x91\x4e\xc2\x05\x91\x14\x46\xa8\x60\x33\x6e\xf7\xf8\xd8\x29\x2b\xe0\x0e\x52\x95\x77\xcf\x68\x9d\x74\x30\xdf\x2c\xfa\x60\x29\xef\x85\xa1\xd6\x4d\x52\x18\x48\x70\x5d\xa0\xcc\x16\x5f\x8b\x4a\x79\x43\xc5\x45\x64\x54\x45\x45\x04\xf7\xcb\xa2\x16\xbb\x1c\x3c\x14\xe1\x91\x3f\xf4\x77\xcc\xff\x9b\xc3\x33\x35\x3d\x75\x2f\xbd\x17\x0c\xe4\x65\x28\x79\xdc\x70\x6a\x98\x8e\xd1\xcf\x7d\xa0\x4e\xdf\xea\xd2\x99\x07\xc6\xd8\x2e\xbc\x8c\xe5\x43\xcd\xef\x7b\x10\x25\xa1\x32\xf0\x60\xdd\x3c\x28\xfe\x61\x05\x6e\x37\x07\x56\x94\x15\x41\x28\xb6\x42\x87\xe6\xff\x30\xfe\xdb\xfb\x90\x76\xc5\x0e\x3d\xb8\x48\xe6\x0a\x99\xb2\x3b\xb4\x5d\x10\xad\xd5\xf2\xe1\x4d\x4b\xff\xf7\x6b\x87\xd2\xbc\x4d\x6b\x8e\xd4\x29\xd7\x99\xf9\xa6\xdf\x0e\x76\x12\x48\x22\xf4\xce\x2b\x70\xb7\xf8\xa6\xdc\x2d\xf2\x02\x73\x3a\xcb\x35\x2d\xbb\xb5\x19\xfe\xa4\xaf\x89\x65\x57\x5d\x95\x15\x1d\x9d\x14\xf8\x5e\xd4\x1b\xff\x03\xbe\x97\x6f\x84\xcd\xce\x8b\x2c\x9a\xd5\xa3\xe6\xab\x50\xa6\x3f\x2a\xf1\x1f\xe7\x90\x97\x81\x5c\x5e\x2c\x45\x66\xbe\x52\x17\x31\xfd\xd4\x50\x33\xa1\x3b\x2a\x4a\xb8\xc4\x80\x0c\xd9\x79\x88\x2c\xd2\x4f\x37\x68\xa1\x6d\x2a\x6a\xd0\x69\x9d\xaa\x75\x7b\x05\x74\x81\x75\xa2\xe8\x85\xa0\xfe\x57\xf1\x42\xd8\x9b\x63\xa5\x2c\x11\x86\xaa\x3b\x42\xef\x60\x4b\x5b\xbe\x80\x73\x33\xf0\xce\xc4\xe7\xf0\x3a\xf0\x1f\x4e\xf5\xd5\x63\xe3\xde\xe1\xaa\x2f\x32\x42\xf3\xc2\xbb\xfe\x33\x72\x1a\x60\x82\xd7\x02\x1f\xb8\xc4\x69\xa2\xc9\xf1\x41\x42\x0a\xf1\x11\x5f\xf7\xed\xf7\xdf\xfe\xb1\xbf\x5d\x91\xe1\x05\xb4\x86\x8d\x35\x36\x1f\xe2\xbd\x93\xb5\x28\xcb\x54\x33\x52\x85\x39\x72\xc2\x6e\x08\xe3\x7b\x7e\x20\x31\x7f\x60\xec\xf1\x5a\xda\x38\xa4\xc3\x82\xcd\xa7\xd1\x24\x6b\x3f\x79\x8c\x8e\x3e\x5f\x8b\xf2\xdd\x7f\xb7\xef\x13\x95\xca\x9e\x71\xde\xe6\x75\x08\x00\xdf\x04\xbb\x1d\xf6\x26\x34\x21\x97\xc5\x0c\x20\x55\xf8\xfb\x58\x43\xbe\x19\x08\x04\xf7\x8c\xd7\xba\x69\x5e\x70\xe5\x1c\xab\xf9\x46\xe0\x57\xf6\x0d\x51\x94\xea\x66\x69\xb3\x17\x16\x51\x9a\xec\x30\x7f\x80\xb3\xbc\x55\x66\xb4\x7f\x05\x79\x30\x04\x50\x50\x98\x38\xa6\x5b\x17\xcd\x6a\x23\x5f\x48\x99\x94\x8d\x33\x58\x56\x24\x17\xd7\x4b\x0f\x9c\x30\xae\x9a\x15\xfd\x46\xd4\x6c\x1a\x0f\x80\xb6\x03\x21\xfe\x7a\x40\x19\x2e\xd8\x1b\x38\xdd\x1d\x2a\x33\xdc\xa4\xa5\x6b\x92\xda\x3c\x57\x0a\x4c\xcd\x7a\x9f\xe0\xa8\x3c\xdf\x45\x6a\x02\x1e\xc5\xf3\x78\x62\xbe\xa1\x27\x86\x01\x3f\x4a\xf2\x01\xe5\xfa\x0d\xb8\xd3\x88\xc6\xb8\x76\x84\xd2\xc0\x35\x2a\x13\x58\xc5\x60\x5e\x02\x9e\xf9\x05\xb8\x20\x78\xbb\xe7\xc8\xa5\x45\x7c\xfa\x4a\x29\xd3\x9e\x02\xc0\xf4\xf6\x80\x88\x3c\x5a\x9b\x51\x61\x1e\x75\xa2\x58\xd3\xe6\x70\x9c\x41\x9b\x63\x63\x0e\x6b\x97\x7b\xdd\x7c\xde\xd9\x65\x00\x78\x2e\x0b\x4c\xc0\x6d\x7a\x34\x5b\xb5\x1a\xe6\xfc\xe5\x61\x3b\x8d\x15\x8a\x32\x88\x24\x6f\xf6\x55\x92\xe9\x49\x6d\x75\x42\x64\x03\x54\x92\x6f\xa3\xf5\x80\xb7\x75\x83\x6b\xaa\x38\x2d\xc0\xd1\xc1\x4a\xde\xa0\xcc\x1e\xce\x1b\x72\x3c\xa8\xae\xfd\xb1\x5c\xdb\x97\x06\x1c\xd3\xf1\xfd\xb5\x7c\x5e\xc7\xb1\x7b\x39\xfc\x4e\xb5\x2e\x1d\x07\xf3\x2b\xd8\x83\x55\x21\xae\x49\x5a\x44\xa1\x56\x8d\x98\x1d\x09\xf8\xb1\x37\x03\x01\xe3\xb8\x39\x04\xee\x30\x55\x0b\xa3\x22\x7a\x46\xbb\xb2\x29\xbe\x79\x2b\x12\x22\x7c\xb3\x28\x32\x9a\x59\xae\x13\x15\xe7\x23\xf4\x1e\x16\xe7\xe0\x4f\x13\xcc\x29\xd2\x1b\xd7\x10\x23\xf3\x4d\xe9\x05\xbd\x95\xa9\x66\x4f\xc5\x15\x91\xd6\xfb\x0b\xda\x68\xbe\x16\x48\xb8\x22\xd3\x2a\xef\x65\x0b\x3b\xe9\x6f\x91\xdd\x3b\x4a\xd6\x11\xfa\xe0\x18\x7d\x0e\xb6\x9e\xa1\x54\x90\xe2\xf3\x50\xce\xa8\xd5\x5c\x45\x00\x67\xe1\x8a\x5e\x72\xef\x90\xab\x80\x95\xbd\x4e\xe7\x01\xa5\x8f\xab\x81\x7f\x65\x80\xde\xd2\x6c\xbb\xf9\x67\x4e\xdc\xd2\x71\x81\xbb\x78\x2e\x30\xf2\x0e\x43\x76\x84\x0e\x88\x95\x3c\xaf\x1e\xbf\x21\xf1\x23\x7f\x5c\x0a\x3b\xf8\x82\x48\xd9\x36\x58\x99\x3d\x6e\x0d\x79\xe0\x7d\xc7\xd5\x01\x77\xf9\x89\xf1\x9a\xea\xa4\x04\xc9\x3a\x30\xb6\x4a\x59\x85\x7f\xb5\x8c\xc0\x80\x6f\x44\x92\x97\x50\x63\x9d\x28\x61\x54\x0b\xd7\x87\xe8\xe5\x6d\xad\x68\xb3\xc1\x9b\x1e\xab\xcd\x1a\x2f\xd9\xe7\x61\xd9\xde\x59\x07\x6f\xb3\xf0\x4e\x8f\x99\x60\x13\x1e\xb9\x79\x75\xc4\xe3\x27\xa1\x1b\xf8\x26\x78\xb8\xdf\xc1\x32\x22\x57\xdb\xff\x24\xcb\x1e\xd4\x36\x83\x63\xf8\x46\xe4\xa5\x54\x3e\xab\x9b\xdb\x2a\x1f\xff\x18\xe3\x16\x2e\xd0\x86\xf1\x35\x3e\x04\xfd\xbb\xc1\x31\x36\x36\x8b\x03\x24\xe8\x6c\xa4\xe2\x90\xa9\x3f\x31\x60\xde\x8c\x91\xf7\x38\x02\x12\x71\x5b\x35\xc7\x37\xda\x82\xfa\x66\x0f\xeb\x91\x47\x6a\xaa\xd9\xac\x8a\x20\x9b\x32\x1d\x70\xed\xd6\x71\xe8\x67\xe8\x7f\xa7\x06\x5c\x93\xf1\xfd\xb5\x4c\xab\xa6\x0b\xaf\xe0\xd1\x41\xd9\xf3\x75\x60\x03\xf0\x58\x33\x7c\x0a\x2f\x7a\x55\xf8\x86\x57\x07\x24\x64\xcf\x9e\x5a\xae\x33\x9d\x68\x8a\xfc\x2c\x46\xce\x7c\x1a\x47\x64\x0b\xf9\xfb\xf0\x37\xae\xf7\x99\x8d\x1e\x27\xa9\x0f\x01\xad\x4a\xe7\x9b\xaf\x85\x99\xfe\xd8\xd8\x93\xf4\x57\x38\x63\x5c\x84\xe3\x9b\x61\xaa\xad\xa9\xc3\x38\x4a\x34\x2f\x2c\x1c\x65\x96\x58\xbe\x11\x80\xb8\x46\xa4\xad\x4a\x42\xb6\x83\x4b\x65\x7c\xe3\x62\xb4\x28\xc9\x7b\x99\x6e\x8e\xfa\xb4\xc8\xce\xba\xc8\xaa\x72\x41\x13\xf6\xeb\x1d\x5a\x53\x1c\xcf\x25\x1c\x49\x48\xcf\xd9\xa1\x56\x22\x4c\x55\xd8\xb6\x8f\x8b\x9d\x38\x19\xf8\x5d\x39\x59\xfa\xc0\xac\xc8\x54\xb7\xab\x9b\xb4\xd0\x30\x83\xd7\xa1\x72\xf0\x14\x08\xb1\x11\x64\x9c\x17\x50\xc9\x19\x15\x46\x71\x54\x2c\x8c\x9a\xcf\xc1\x90\x2d\x41\x5a\x61\xc9\xde\xc0\xea\xc0\xf7\xc0\x76\x41\x95\xbf\x51\xfa\xd4\xc0\xe5\x01\x31\x9e\x98\xa8\x11\xf0\x30\x7a\xc6\x56\x31\x28\xe1\xfe\xaf\x8f\xe0\x90\xf0\xcd\xd0\xca\x5a\x3a\x33\xa3\x33\x27\x8a\x88\xca\x00\x13\xe5\x6b\x81\xb6\x9d\x8f\x8a\x76\x33\x53\xf3\xec\x4e\x01\xfe\x70\x0a\xbf\xc1\x37\xa5\xd7\x6e\xf3\x94\x6d\x39\x30\xc6\xaa\xe0\x68\xe0\xb1\x44\x47\x8d\xbb\x6c\x61\x0c\x51\xab\x5d\x6c\xaf\x3c\x61\x61\xd3\xcf\x05\x5e\xc4\x96\x60\xcd\x90\x3e\x81\xf3\x68\x13\xb0\x46\x93\xf1\xb5\x2c\xdd\xb2\x83\xef\x2b\xf6\xa2\xe0\x40\xe9\xdf\x28\x69\x8d\x40\xca\x70\x8a\x38\xdf\x80\xda\x2a\x8c\x19\xff\x03\x7e\x9b\xff\x41\x94\x23\xc2\x4c\xab\x22\x9a\xa3\x40\x7f\xe3\x16\xed\xde\xc6\xad\xc0\x97\xea\x67\x54\x52\x58\xa7\x06\x95\x99\xf3\x58\x22\xbe\x19\xd0\x25\x4f\x3f\x5d\x6b\xa5\x52\x4f\x9f\xc7\xc9\xe2\x9b\xc0\xc7\x60\x5d\x9d\x85\x14\x57\xed\xfb\xc7\x4f\xf0\x11\xba\x11\x54\x7e\xd4\x9e\xad\x1b\x7d\x67\x3a\x6a\xea\xf7\x56\x1e\xfb\x84\xb7\xd3\x7b\xad\xb3\x32\x0a\xa7\xd6\xa5\x48\x0f\x8e\xef\xe7\xe4\xc2\x25\x5a\x63\xc4\xa4\xb7\x28\xa4\x45\xe9\xe6\x3c\x3b\x3e\xd8\x3e\x06\x3d\xc2\xa0\x6d\x04\x95\x83\x16\x3d\xfb\x36\xb6\xc2\x46\x2a\xd5\x83\xd3\xfe\x0b\x28\x11\x8b\x5c\xeb\x2d\x72\x96\x90\xba\xdc\xc0\x32\x23\xa9\xb2\x4e\xe6\x14\x8f\xb2\x73\x91\xd2\x93\xf0\xd6\x8e\xc2\x8f\xe5\x5f\x94\xd8\xf3\x2a\xf2\x64\xd6\x49\x16\x1e\xe2\x6f\x05\xde\x28\x9d\x25\x1f\xd5\xf6\x4a\x78\xa4\xfb\x7f\x2e\x3d\x74\x7a\x46\xc7\xd1\x61\xd6\x40\xc8\xa8\x9c\xc4\x3e\xf0\x8d\xc0\xa6\x44\x49\x18\xf7\x9a\xc6\x36\x39\x00\xc1\xaa\xa8\x04\xfe\x82\x80\x0d\x5f\x21\x49\x85\x6b\xf9\xb6\x84\xff\x1f\x97\x65\xc9\x1b\x4e\xe1\xe7\xdd\xb4\xd8\x66\x16\x1e\xd8\x21\xe8\x1f\xf2\x25\xb7\xee\x46\x46\x04\x12\xf9\x57\xa5\x7f\xbb\x51\x20\x75\xb0\x3a\x0c\x0c\x86\x17\x71\xae\xfc\x9b\x43\xf5\x5c\xa7\x93\x26\xf3\x5a\xc5\x45\x9b\x5f\xd8\xf5\x51\xf8\x4c\xdc\x99\x81\x64\xda\xe4\xe4\xbe\x5a\xa6\x63\xad\x72\x9b\x7c\x45\x00\xc0\xf9\x22\xbe\x19\x48\x04\xd9\xbc\x70\x12\xcd\xa6\x09\xe5\x0f\xb0\x02\xdf\xc0\xaf\xf1\x4d\xe0\xb3\xc2\xfa\x70\x57\x67\x91\x4e\x42\x24\xd3\xb0\x6d\x48\x85\xf0\xb5\xf0\x83\xf5\xe1\x30\xcd\x42\x13\x9f\x92\xb2\x81\x50\xbf\x4a\xcb\xc6\xd7\x03\x7a\xcf\x44\xa7\x33\x51\x1c\x75\xa3\x24\xad\x90\x60\x39\xf8\x9b\x79\x20\x8b\x68\x76\xf0\xca\x34\xc9\x0b\x72\xb4\xcd\x13\x0c\x7d\x76\x9f\x9d\x3a\x94\x46\x49\x11\x2f\x8c\xf8\x7c\xce\xb3\x24\x19\xc0\xdf\xc2\x15\xe5\xff\x0e\x61\xe5\x7f\x08\x2c\xde\xfd\x50\xd8\x15\x98\x7b\x46\x74\xf0\xcd\x90\x1d\xa1\xe4\xa6\x11\xc6\x1c\x51\x3d\x4c\xc4\x55\x78\x20\x7c\x33\xe0\x81\x1c\x18\x1b\xaf\xcd\xa4\x99\x6b\x9f\x02\x86\x15\xe9\x4a\xbe\x96\x65\x1d\x3d\x97\xce\xea\x0a\x9d\x66\xd8\xd5\xf3\x24\xd4\x7c\x2d\x1c\x84\xf1\x1f\xd9\x5f\xf5\xe5\xa9\x57\x45\x9d\xe9\xa5\xb2\x0f\xb6\xf0\x5d\xfd\x5e\xe1\xc1\xf1\xfd\x56\x4a\x76\x08\x97\xfe\x1b\x02\x2e\x71\xbc\x14\x79\xb4\x0b\x25\xe9\x06\xfe\x17\x54\x4b\xf9\x23\x84\xad\xb6\xc9\x51\xc8\x36\xdf\xd1\x36\xf0\xe7\x03\x9f\xad\x8a\xa3\xbc\xd0\xc8\x2a\x7b\xd0\xe4\x9b\xa4\xfb\x2c\xbe\xc3\xff\x71\xde\x4d\x67\x75\xde\xd1\x49\xa5\xb2\x67\x0f\xbf\xda\x0a\xe9\x16\xbe\x76\xd0\xc8\xb6\x56\x19\xa7\x9e\x10\xfc\x5d\xc6\x96\x00\x60\x7c\x12\xce\x08\x9e\xec\x9d\x01\x7b\x6e\x0e\x5a\x43\x65\x69\x47\x17\x5c\xc9\x01\x62\x02\xd5\x31\xbe\x16\xb0\xc3\x39\x9d\xc7\x7a\x26\x8b\x66\x67\x47\xcc\xeb\x63\x63\xb0\xfc\x08\xa5\x91\x3d\x40\x89\x0d\xfa\x0f\x5a\xe4\x1d\x91\x88\xeb\x25\x3d\x3a\xd7\xde\x75\x05\xc0\x99\xaf\x07\xc0\x5d\x7b\xf6\x50\x17\x15\xb9\x40\xc8\x57\xdc\x11\xb1\xe0\x4e\x19\x50\x0e\x4a\xe0\xa3\xb5\x99\x28\x89\xf2\xb6\x55\x24\xfc\xc8\x81\x70\xde\x5e\x15\xb9\xe1\xbc\xd7\xc9\xab\xa2\xeb\x06\x76\x06\xd9\x90\xb7\x29\x3a\xb4\x61\xdc\x20\xe0\xb7\xa6\xe6\x55\xd6\xb4\x18\x36\x78\xbf\x7f\x2e\xb4\xe7\xe7\xb1\x17\x28\x67\x7e\x3b\xd8\xe5\x16\x64\x5e\xe5\xef\x31\x02\x68\xd1\xde\x02\xea\x76\x3f\x4a\x74\x80\x2c\xbd\xaf\x6e\x1e\xe0\x7f\xa7\x84\xe5\xbd\x8b\x22\x7f\xc3\x76\xd2\x42\xf5\x51\x8f\xb5\x39\x58\x7a\x03\x88\xe3\x9d\xb2\x3a\x3d\xb6\x8f\xdd\xb4\xab\x30\x75\xd8\xb7\x6b\x81\x47\xc8\xdd\x82\x00\x21\xdf\x7a\x07\x56\xdb\xc6\x72\xe6\x6d\x90\x96\xdc\x5a\x37\xd2\x68\x4d\x96\xdf\xbf\x63\xd2\xa7\xe0\xb2\x28\x4c\xcc\x15\x38\xa0\xd8\xb6\x87\x61\x63\x90\x14\x45\x83\x07\x74\xcf\x71\x3e\x4c\x16\x2e\x64\x95\x63\x91\x16\x85\x70\x20\x91\x5d\x02\x34\x8b\xaf\xc5\x36\x86\x2a\xd3\x23\xe6\x8d\xe0\x9f\x8d\xe0\xc7\x10\xf8\x9d\x21\xe1\x41\x24\xfb\xa7\xc2\x80\xde\x1c\xda\x27\xa6\x3b\xdd\xb6\xca\xa3\x67\x34\x9f\xb1\xf7\x92\x26\xb8\x8d\x25\x72\x88\xc2\xe9\x31\x17\x9d\xf9\xea\x4b\xda\x2b\xba\xbd\x82\x72\xa5\x16\x29\x65\x5e\xd3\x03\xa5\x9c\x43\x90\x66\x33\x3a\x2a\x7a\x99\x46\x86\x0e\xcf\x76\x9c\x5d\x21\x57\x36\x71\xe8\xae\x2d\x94\xb5\xe1\x30\x9f\x7e\x1c\x6e\xd9\xab\x22\x00\x98\x6f\xeb\x44\xcf\xe9\x8c\x02\x00\xc8\xec\x3a\x02\x07\x24\xb2\xd1\x93\xe1\xba\xb5\xdc\xb6\xae\xc2\xc4\x22\x26\x3b\x15\x3c\xe0\xde\xa6\x99\x45\x33\x05\x5c\xed\xe9\x29\xc6\x0e\x9e\x23\xa9\xe1\x6b\x01\xba\x51\x89\x8a\x17\xf2\x22\xdf\x45\x92\x0c\xef\xf9\x35\x1c\x39\x14\x84\x6e\x07\x95\x47\x1e\x61\x09\xfd\x26\x14\x2e\x9c\xf2\x77\x51\xdd\x86\xc0\x7c\x8d\x42\x5d\xb8\x5f\x2b\xa2\xb6\x7c\xab\xf4\x10\x92\xdb\xa5\xaf\x13\xc0\x5a\xc0\x29\xfc\x1a\x70\xc4\xfc\x13\x81\x80\x9b\xbf\x0b\x67\xbd\x4f\x47\xc4\x8a\x4b\x5f\xf8\x30\x70\x70\x40\x37\xde\xa0\x1f\xc0\xb6\x73\xb7\x0e\x0a\x76\xdb\xeb\x56\x34\x19\x12\xa3\x73\x24\xe3\x21\xd3\x5b\x16\x65\xd7\xe4\x96\xba\x68\xd5\x42\x61\x8a\xaf\x07\x9e\xc6\x48\xdd\x23\x23\x66\x7d\x20\xd7\x6f\xc9\x3e\x9c\x25\xbc\x16\x94\x7b\x15\xaa\x0f\xeb\xbb\xe2\x4e\x4a\xdc\x6b\x46\x61\x46\x3d\x0f\xe6\x80\x5b\xef\xdb\xac\x1f\x9c\xdc\x2b\xd8\x0a\xe8\x8e\x6f\x89\x48\x6a\x41\xc5\x5c\xc2\x72\xa8\x66\x01\x71\x1e\xd6\xba\x97\x45\x73\x0c\x41\x47\x4d\x05\x28\x02\x87\xb3\x32\x9f\xb6\xf1\xd2\x07\xbf\x13\xa0\x48\xcd\xe9\xbc\x99\xa5\xdd\x2e\x25\x27\xcd\x1b\x89\x86\x9a\xc7\x79\x01\xaf\x94\x1e\x8b\x7c\x5d\xb8\x41\x33\x2a\x6f\x47\x69\xb2\x43\xa4\xa7\x6e\x43\xa0\xf8\x84\xd3\x5a\xa3\xc6\xb3\x8e\x95\xb4\xf0\x52\x81\x71\x40\xbb\x0f\xff\x55\xe0\xeb\x76\x7f\x84\x0d\x87\x66\xba\x1d\x3c\xe4\x1d\xb5\x22\x8b\x1a\x3d\x34\xab\xd2\xf7\x70\xb2\x98\x3e\x6b\x13\xc7\x0f\xb8\xd3\xa8\xb2\x4e\x5e\x64\x29\x94\xd7\x94\xcb\x50\x98\x1f\xb5\x09\x0a\x87\xb0\xe9\xe5\x61\x6c\xa3\x6b\x9c\x03\xce\x82\xf3\xcd\x80\xe5\xd9\xb3\xa7\x96\xe9\x19\x8f\x9e\x86\xdc\x5e\xa3\x0d\x17\x89\xaa\x71\x8e\x0b\x2b\x75\x5f\xeb\x56\xcd\x39\x9d\x15\x51\xae\xb3\x7c\xd4\xa7\xb6\x57\x11\x46\xba\x9c\xb5\xb1\x2d\x9c\x63\x0a\x3c\xa2\xe9\x2c\x0a\x96\x36\xf9\x24\x23\xc2\x6e\xc4\xe5\x2c\xac\x22\xea\x5f\xf0\xf7\x6e\x51\x17\x08\xa2\xb8\x57\x06\x5e\x65\x7c\x7f\xed\x93\x3d\xe3\x92\xb3\xbf\x08\xa1\x02\x6e\x89\xaf\x4d\x54\xeb\xca\xae\x45\x11\xeb\x56\x96\xf6\xba\x79\xd5\xfb\x51\xdc\x48\x86\xdf\xfb\x76\xe9\xb1\x96\x97\x45\xff\x6a\xb3\x97\x34\x75\x55\xe8\x11\xfa\x0d\xf8\x49\xec\x0b\xdb\xa2\xda\xe6\xc8\x66\x62\xa2\xd6\x4d\xf3\x3c\x6a\x44\x71\x54\x10\x0c\xc8\xf7\x21\x41\xa8\x6c\x53\xd2\xd0\x0a\x41\xd1\x6b\xba\x7e\x1b\x36\x72\xb4\x3e\xd6\xe0\x6d\x5e\x93\xbd\x93\xb5\x96\xca\x1a\xaa\xa5\x85\x83\xf6\x1c\x1e\x91\x6f\x5c\xce\x6a\x2e\x4a\x63\xcd\x58\x35\x87\xf9\x77\x41\x68\x65\x71\xb3\x5b\xff\xf4\xd3\x35\x55\x14\x51\x01\xb7\xde\x7c\x23\xdc\x0e\x86\xcf\xf2\xcd\x10\xb8\xfd\x54\xad\xd9\xd3\xb2\x4b\x34\x90\x5d\xa2\xc2\x53\xff\x1f\x8a\x36\xfd\x19\xd4\xfb\xdd\x75\xb3\xfb\x7c\xbd\xe8\xfb\x85\xd2\xae\xce\xa8\xf5\x7b\x9b\x87\x3b\xff\x7e\xd0\x97\xcd\x33\xfb\xcb\x6d\x41\xb4\xa5\x70\x2b\xef\x60\xaf\x6d\xbf\x10\x19\x0f\x46\xcb\x0d\x69\xe1\x98\xac\x1d\x4a\xf1\xd4\xdc\x33\x5e\xf6\x35\x90\xfb\xac\x9b\xee\x74\xd3\x79\x9d\x01\x08\x0a\x57\x70\x9d\x8c\x0b\x5f\x97\x77\xfb\x7a\xe8\x87\xa1\x66\xf1\x9c\x70\xfe\xfb\x02\x64\xb8\x48\xb7\x85\xce\xca\x74\x11\x71\x46\xfe\x29\x9f\xc7\x37\x2f\xcb\x37\x03\xe1\xd7\xa3\xb5\x28\x09\x33\xad\x72\xe7\xff\x30\x37\x01\x49\xad\xe5\x29\xf8\x6e\xd1\x36\x32\x17\x65\x29\x35\x68\x2a\x13\x77\xa0\xb5\xcf\xa1\xb4\x44\x32\xd9\xbb\x2b\x38\x47\x3b\x8c\xbb\x82\x34\xe4\x59\x59\x1f\xbf\x4e\xce\x2f\x6a\x4d\x17\x64\x39\x84\x3b\x5f\x90\x5e\x58\x0b\x04\x96\xe2\x34\x3d\x1c\xcc\xdc\x29\x5a\x3d\xfe\x5e\x81\xd1\x0f\x55\xaf\xd5\x2e\x68\xd7\x11\x9f\x5e\xa3\xa2\x07\x5f\x93\xfd\x77\x40\xf8\xc9\x49\xb6\x44\x5c\x81\xc1\xc1\x3d\x4d\x7a\x0e\x4e\xf5\x48\xfd\x6e\x91\x15\xbc\xdf\xa3\xa3\xde\x46\xb5\x13\xa6\xe4\x2b\x01\x79\xc1\x7c\x03\xff\x16\x22\xb9\xce\x2e\x97\xc5\x80\xd2\x06\xa1\x9e\x73\x77\x5d\x50\x6d\x5c\x20\x69\x84\x79\xbe\x22\xba\xa1\xfe\x10\x0b\x03\xc5\xc1\xad\xfc\x80\xe0\x7d\x99\xbc\x08\x3c\x7e\x65\xd1\x67\x6a\x18\x9c\x01\x9f\xf0\xcd\xfe\x94\xb5\x59\x08\xf8\x2f\xd7\x03\x91\xcf\xb9\x24\x72\x12\x16\xab\xa4\x51\x21\x80\x2f\xff\x9b\x64\xf2\x04\x14\x77\xca\xc1\x84\xbc\xfe\x9b\x6f\x47\xdd\x9c\x5c\x39\xdb\x99\x61\x1e\xca\x76\x6c\x6c\xce\x1c\x12\x82\x6a\x8e\x7e\x03\x78\xcb\x6b\xb2\x31\xe6\x16\xbb\xec\xd8\x90\x37\x86\x64\x01\x6a\x5d\x9d\xe5\x11\x57\x18\xf0\xa1\x25\xf9\x0d\xbe\x85\x4f\x27\xb9\xee\x50\x0a\xc4\xf5\xbc\xc0\xdd\xe5\xeb\xc5\x21\x4e\x88\x3e\x5c\x64\x8a\xdc\x7d\xdb\xb9\x42\x26\x8b\x9d\x42\xda\x1f\x38\x4c\x23\xa4\x0c\x51\x41\xbe\xe8\xd0\x81\x89\xee\x65\x69\xde\xcb\x5a\x3a\x4d\x46\x3d\x74\xf8\x8b\x04\x80\x80\xd5\x79\x0b\x0f\x6b\x21\x7c\xb4\x1b\x70\x52\xe0\x2a\xe2\xa7\x2a\xf5\x87\x05\x44\x35\x9c\xd5\x85\xa6\x88\x65\xc4\x7b\x93\xcc\x52\xe1\xba\x38\xa7\x2d\x70\x0e\x91\x0c\x5f\x97\x1e\xc3\xab\xa2\xb0\x1d\x51\x0c\x01\xaf\x62\x55\x70\x4b\xac\xba\x64\xde\x7c\x14\x37\x47\x7d\xe3\xdb\x39\x68\x45\x98\xe6\x2f\x97\xbe\xa7\xe7\xbe\xba\x2f\x9b\xdf\xbd\x28\xbc\xc7\x77\x83\x87\x85\xf2\x68\xa6\x59\xce\x4d\x67\x3e\x17\x06\xaa\x05\xbe\x1e\x28\x6b\x4c\x4c\x4c\xd7\xe6\x55\x96\x38\x05\x65\x8b\x79\x12\xc6\x65\xcd\x54\x2b\xd3\x89\x6a\xaa\x8a\xd0\xdd\x5f\xc3\x0a\xf3\xcd\x80\xe5\xdc\xff\x64\x6d\x26\x4e\xa9\xd8\x48\xd9\xb7\x61\xaa\x6c\x97\xc3\x28\x87\xed\x94\xd0\x67\x38\x3d\x55\xf8\xde\x70\x9f\x5e\x97\x98\xa9\xab\x02\xf7\x70\x52\x64\x68\xdb\x51\x23\xcd\x04\x3a\x9f\x4b\x3a\x16\x0f\x6b\x1d\x6d\x26\x48\x49\x81\x26\xb3\xf8\x5a\x61\x08\x5f\x18\x20\xda\x98\x98\xa8\x35\xa3\x4c\x87\x45\x9a\x51\x22\xd1\xc9\xce\xb2\xc4\xc5\x2e\x8b\x96\x9d\xdc\x44\x71\x2a\xbe\xc7\xe3\xd8\xb7\x2e\x92\xc1\x01\xde\xfb\xa4\xc0\x31\x7f\x8d\xce\x30\x7c\xae\x35\x59\x9f\xc0\x09\x82\x52\x65\x98\x3b\xc2\x89\x15\x68\x1c\x88\xf2\x1d\x28\x2c\xab\x6f\x49\x2f\x8a\x5a\x9a\x8d\x4b\x47\x01\x0f\xb3\x75\x57\x7a\x6c\x28\xfc\x65\x51\xb7\x0a\xd3\x5e\x97\x98\x5c\x5c\xb7\xfa\x5b\x81\xcf\x8b\xbd\x35\xac\x56\xa9\x8a\x76\xac\x0b\x2d\xaa\x90\x2b\xa2\x4c\xe2\x33\x5e\xe9\x9c\x2a\x54\x55\xe4\xe2\xde\x28\x7d\xa9\xfe\x1a\xa5\xf2\xa0\x9a\x2f\x94\xf7\x88\x2e\xcf\xa6\x7e\x80\x92\x11\x20\x77\x39\x0d\xef\xd5\x16\x61\x3d\xe6\x65\xcb\xa2\x39\x6c\x70\x71\x6f\xe2\xbd\x2d\xa9\x46\xc5\xf1\x00\xad\xe0\xb5\x01\xc4\x79\xbb\x2f\x50\xe7\x8c\x28\x02\xe8\x15\x2c\x29\xe4\xff\x34\x92\x89\xc8\x42\x2c\x41\x47\x59\x8f\x15\x29\x1b\xb8\x73\x27\xc8\xd4\x62\x1b\x6e\x0b\x88\xc7\x51\x6c\x96\x5d\x6b\xb3\xd7\xc8\xe4\xbc\x00\x23\x82\x63\xfd\xb2\xef\xd6\x4f\x3b\x9d\xa8\x28\x6c\x58\x60\x61\x37\xe6\x0b\xd1\x9b\x5a\x01\xca\x10\xce\xf8\x75\xd7\x14\x3e\x9f\xa5\x49\xb3\xe5\x3b\x54\x91\xe5\x78\x93\x5e\x9f\xaf\x1d\xf1\x93\x0a\x43\xdd\xa5\x9c\x75\xd5\xd7\x0d\xb7\xd7\xfd\x4e\x73\xf3\x16\x1e\xf4\x9c\xd3\x00\x59\xcf\xc4\x38\x9c\x4a\x46\xa0\xb1\x24\xc1\x46\x4b\x03\x2e\xd0\x81\xb1\xa7\x6a\x69\xaf\xc8\xa2\x56\xbb\xa0\xdc\xbe\xcd\x62\x99\xdf\xe5\xeb\x61\xbe\xf3\x7c\x9a\xcd\x3a\xd4\x0b\x67\x00\x48\x12\x5d\x23\xc5\xc4\x04\x1f\x80\xd7\x8d\x63\xe2\xe4\xa5\x28\x98\x11\xc1\x92\x58\x88\xa0\xe0\xb9\x81\xda\x83\xf1\xd2\x7b\x2a\x53\x49\xa1\xed\x82\x63\xd7\xcf\x0b\x0d\x08\x5c\x2f\xd6\xfb\xdb\x02\x72\xac\xc2\xd9\x24\x9d\x8f\x75\xb3\xa5\x91\x86\x80\xbf\xfe\x06\x0b\x96\x45\xa8\xd3\xfa\x20\xb3\x5d\xa9\x8b\x82\xeb\x60\xcc\x30\x35\x3d\x55\x9b\x37\xcf\xc2\x71\x94\xcd\x90\xd1\x7e\xdb\xd4\xd9\x66\x23\x4f\x2d\xb8\x78\x65\xd8\xa7\xd3\xb2\xcb\xf3\xb4\xdb\xf3\x6e\x96\x86\x4c\xc4\x43\x8b\x8a\x2c\x2a\xc8\xcd\xf8\xda\x15\x19\x1e\x49\x1e\xa9\x52\xc6\xc2\x66\xfb\xcd\xe9\x74\x86\x79\xcf\x1e\x2e\x6a\xdd\x12\x79\x72\x52\xf2\x45\x9a\xce\x8a\x36\x9e\x13\xa2\x8d\xe7\x44\xf9\x90\xf0\x7f\xb2\x6e\x8a\xc8\x81\xec\xbf\x25\xa2\xa2\xe7\x46\xa9\xef\x5d\x78\x71\x70\x10\x57\x49\x5a\xe0\x92\xbd\x2d\xc0\x40\x87\xd2\x44\x15\x6d\x45\x3d\xe0\xac\x48\xce\xe2\x88\xf3\xcd\x40\x69\x67\x7c\x7f\x2d\x49\x93\x6e\x96\xce\x44\x08\xb7\xb0\xab\x48\x00\xf0\xb5\xc8\x79\x87\x31\x31\x18\xd0\x66\xc0\xff\xb8\x0a\x3d\xcc\x37\x42\xe1\xcf\xab\x08\x70\xfd\xf1\xfd\x6c\x0e\x5f\x47\x9f\x24\xaa\xa5\x84\xf1\xdb\x40\xf1\x1a\x99\xb7\xeb\xa4\xbd\xf8\x4f\x45\xd2\xa1\x9b\xe9\x3c\xef\x65\x3a\x47\x73\x9a\x25\x3d\xf3\xce\xc8\x76\x08\x11\x10\x01\x77\x44\xfe\xae\xa9\x63\xb5\x60\x73\x10\x76\xfb\xa5\x5c\x6c\x16\x9d\x3d\xe3\xb5\x47\x74\xa7\x42\x3b\x6d\xe1\x1c\xf4\xdd\x16\xe7\x21\xf2\x88\x3a\x53\x51\xcc\xc2\x33\xe9\x14\x83\x3f\xc5\xe7\x04\x8f\x44\x1e\x35\x35\x90\x1d\xe6\x15\xe1\x7a\xde\x21\xcd\xc7\xd7\xa2\xad\xb6\xa1\xb2\x44\x17\x05\xd7\x19\x1d\x9f\x97\x79\x0a\xcb\xe7\xe5\xc1\x00\x9d\x28\x49\xb3\x51\xef\xcf\x9e\x95\xa0\x8d\x2b\x50\xfb\x70\xb2\x3e\x53\x7a\x8a\x16\xc6\x29\x41\xd1\x9e\x14\xda\x22\xd3\x2d\x12\x41\xd7\x7e\x09\x34\x0c\x1c\xe2\x11\x2c\xb3\x80\x3a\x4d\xb9\x4e\xc1\x21\x0a\xab\xd7\x6d\x2a\x77\x70\x61\x1f\xd6\x69\xf1\xf9\xda\xe9\x77\x95\xe7\x29\xd5\x23\x47\x3d\x87\xc3\x1f\xd1\xd3\x62\xd5\x2f\xe2\xa7\xe0\x61\x9f\xa1\x07\x42\x2e\x70\x57\xdd\xbb\x4d\xb7\x86\x78\x72\xb5\xae\xd6\x59\xac\x59\x17\x58\xe3\xe3\xea\xc3\x3f\x75\x74\x28\xdb\x49\xaf\x5b\xf4\x32\x9c\x20\xb8\x23\xcf\xc3\xf8\xf1\xcd\x90\xda\xd3\x54\x4d\x37\x7b\xa1\x2a\x52\xdb\x4c\x48\x4a\x6f\xcd\x82\xac\x44\x61\xd2\x37\xb2\x6f\xfe\xe5\xa7\x9f\xae\xcd\xb7\x53\x4d\x59\xc8\xf1\xfd\x2e\xa9\x6a\x56\xc4\x82\xe4\x2b\x07\xa7\xac\xbf\xe7\x74\x58\x98\x45\x45\x14\x46\x79\x87\x13\x31\x88\xf8\xd6\x02\x8f\xdb\x5c\x2b\xfd\xf6\x46\x1d\xd5\xd2\xf9\x36\x63\x96\x61\x7d\x8f\x07\xde\x39\x44\x0c\xce\x98\xce\xc0\xa3\x5d\x8f\x43\xf1\x38\x2a\x0a\xf3\x82\x96\x03\x69\x10\xc6\xfc\x54\xbf\xa1\x82\xbc\xa1\x3f\x12\xa5\x94\x2b\x82\x6b\xe4\xb4\xe8\x64\x44\x5e\x31\x5e\xd8\x66\xb4\x29\x34\xeb\x8b\x32\xfe\x41\xf3\x11\x36\xfe\x38\x1d\x1d\xfe\x23\x59\xe5\x81\x56\xe0\x3f\x1a\x96\x95\xa3\x8c\x67\x1a\x33\xa2\xc5\x66\x4f\x7c\x26\x05\x1d\x1e\x08\x32\x18\x29\x61\x5b\x26\x36\x07\x6c\x4f\x3f\x5d\x9b\x89\xb2\xbc\x18\xf1\xcf\x75\x89\xe8\x7b\x98\x9c\x4e\x52\xa8\x6d\x5d\xf4\x82\xbf\x31\xe0\x4c\xef\xd9\x53\x53\xd4\xb8\x28\xf2\xb0\x8e\x44\xd2\x13\x4a\x0e\x89\x66\x8d\x0d\x23\xe1\x66\xd0\x08\xfd\xbe\x05\x90\x3c\x24\xe0\x17\x2d\x9d\x44\x69\x2f\x8f\x17\x60\xd2\xe1\xe2\x81\x3f\x8e\xcb\x1a\xa5\x80\x3d\x0e\x01\x00\x4c\xd5\x3e\xd9\xd3\xb9\x79\xc0\x8a\x4f\xf2\x1d\x09\x7c\x75\xfe\x88\xc0\x21\xb6\xd3\xae\x71\x1e\xcc\xfb\x5b\xec\x37\x69\x7e\x94\x6c\x20\x68\x90\xce\xaf\x89\x1c\x4a\xd4\xe9\xf6\x5a\x49\x7f\x33\xe2\x41\xd1\x8c\xe8\xd5\x69\x91\xc6\x3a\x53\x49\xa8\xff\xbf\xe8\x3d\xac\xab\xdd\x8a\xd3\x06\xb2\xa4\x48\x7c\x7d\x5d\xd4\xdb\x98\xd7\xcf\xe6\x7a\x3c\x7a\x0b\xa8\x0a\xdb\x97\x31\xce\xa9\xa1\x2b\x32\x4f\x74\x45\x74\xee\x37\x55\x3e\x22\x31\x90\xa8\x5f\x6f\xdc\x65\x24\x6a\xe3\xae\x45\x51\x2c\xbf\x2c\xfc\xf9\xf6\x87\xdb\x1f\x16\x2b\xca\xcd\xcb\x7c\x33\xc4\x79\x7c\xbc\xd6\x49\x8d\xe9\xe1\xf8\x82\xb9\xb8\x02\xdf\xb9\x72\x46\xec\x43\x98\xa6\x99\xc5\x08\x0e\x85\x61\xf8\x38\xbf\xd0\x61\x3b\x49\xe3\xb4\x15\xd9\x0a\x21\x6c\xc8\xcf\x93\x22\x86\x23\x80\xda\x15\xaa\x46\xcb\x92\x9d\xaa\x30\xcf\xd3\x8a\xb8\x63\xd9\x52\x75\xf9\x3e\xb0\x35\xf1\xc2\xb1\x4a\x50\x9b\xd9\x58\x29\x89\xe2\x73\xa0\x07\xe1\xe0\x54\xad\x9b\x26\x91\xad\x74\x5b\xde\x37\x52\xc2\x7c\x23\xf4\x46\x87\xe0\xcf\x9a\x61\xe7\x70\x6b\x41\x10\xc3\xd7\x8b\x1e\x23\x7c\x2a\x10\xd6\xf1\x02\xbe\x51\x22\x65\xf9\xaf\x06\x5a\xc1\xf6\xec\xa9\x75\x63\x15\x72\x07\xb7\x75\xa5\xa4\x8f\x65\x61\x99\xba\x19\xe5\x7c\x44\x98\x59\x14\xee\x97\xa5\x19\xf5\x32\xac\x7a\x45\xda\x31\x06\x72\x94\x14\x25\xc4\x77\x03\xca\xcc\x66\x76\x3c\x00\xf0\xa4\x20\xca\xba\x22\x1b\xdc\x2f\x0a\x09\x3c\xa4\x3a\x55\x61\x64\x9e\x15\x7c\x2b\x97\x85\x06\x5e\x2e\x85\x07\x5c\xe8\xd0\x1d\x6a\xb8\xe4\x37\x25\xf2\xe4\xe6\xc0\xee\x18\x13\xd9\x8d\x09\xfd\x6b\xa4\x84\x19\x2c\x60\xdc\x2c\x9d\x85\xf7\x4f\xe6\xdb\x5a\x15\x7c\x2c\x04\xc3\xc1\x3e\xf6\x63\xd1\xfe\x80\xbc\x2f\x82\x7b\xf4\xba\x5c\x1c\xa8\x61\x53\xb1\x62\x5e\x67\xed\xb4\x97\x5b\xe8\x8e\x85\xaa\x89\xe6\xe6\xb3\xc2\x99\x49\xb3\x42\xb7\x98\x04\x01\x6a\x18\x4d\x3e\x7c\x2d\xfe\xd2\x18\x7c\xdd\xdc\x89\xc7\x44\xfd\x78\x3d\xf0\x2c\x04\x47\x61\x87\x6c\xc8\x2f\xe0\x7f\x68\xa4\x73\x7d\x86\xe6\x39\xf0\x57\xdc\x1e\x0c\xcd\x0d\xe2\x1b\xf8\x2f\xdf\x2c\x7d\x34\xf0\xe6\x90\x3e\xb4\x99\xb4\x97\x51\x6b\x0f\x83\x70\x03\xd1\xd5\xba\x24\x8e\xd1\x8c\xd6\xcc\x40\x69\x99\x7a\xcd\xf7\xba\x76\x17\x5f\x38\xfc\x5d\xe8\x2b\x38\x21\x97\x84\xbb\x7d\x4e\xf4\x6d\x98\x0d\xbd\x87\x3e\x84\x68\xf2\x5b\xa5\xcf\xe2\xad\x41\x26\x2d\x3d\xac\xe0\xa7\x38\xdd\x07\x72\x3c\x2a\x5a\x59\x6e\x06\xa2\xe7\x72\x0b\xe5\x89\x11\x38\xad\x96\x22\x2e\xfc\x0b\x4a\x0d\x43\x17\xdd\x5d\xa7\x63\x00\x50\xc8\x7a\x29\x7a\x15\x4b\x11\x5f\x5c\x16\x94\x44\x45\x54\xc4\xba\x59\x35\xdf\x6d\x3b\xca\x45\x5b\x8c\xd4\xa3\xa7\xca\x87\xa5\xae\xd2\xaa\x13\xbb\xb6\x58\xbb\x1a\x17\xa1\x1a\xf8\x66\x00\xeb\x3f\xbe\xbf\xd6\xcc\xd4\x7c\xc5\xa7\x4e\xd6\x45\x85\x78\x7d\x08\x3a\x7a\x5f\xed\x7b\xc7\xf7\x3e\xbe\x77\xff\x3e\x28\x0d\xee\x74\x29\x65\xd7\x8b\xc8\x62\x1b\xbf\x8c\x12\x9f\xb0\x4f\x55\x02\x7a\x6c\x30\x88\xc1\xe2\xeb\xcc\x8f\xdb\xf3\x41\x4f\x6b\x51\x78\x22\xcb\x56\xe8\xb9\x2c\x0a\x2b\x22\x05\xf1\x9a\x30\x8f\xaf\x0d\xa5\x96\x2d\x98\x2b\xc8\xfc\x1d\x42\x8c\xe5\x92\xea\x0c\x7c\x13\x3c\x38\x50\xc6\x51\xf9\x88\x54\x28\xbe\x4f\x0a\x8c\x5e\xc0\x99\x03\x0e\x83\xd4\xdb\xae\xba\x4d\x99\xa8\x66\x9a\x39\xba\x62\x88\xe5\x69\x59\x9e\x3e\x2d\x98\x1f\x5a\xaa\xd7\x82\xa1\x73\xe5\xb3\x49\x5f\x58\xb0\xd6\x3d\x56\x59\x4b\x8f\x08\x76\xde\x9d\x8b\x66\x29\x51\x0b\xb9\x2e\x1a\xca\xdf\x5f\xf7\xb1\x7d\x75\xd1\x26\x9d\x75\xde\xcd\x47\x21\xc9\x88\x0b\xb6\xd5\x05\x15\x31\xb0\x21\xae\x46\x33\x39\xc9\x87\x8c\xf1\x41\x38\xe1\x15\xd9\x00\xd4\xed\x66\xe9\x9c\x8a\x47\x2b\x8f\x7d\xc2\xf6\xa5\x89\xb2\xfc\x46\x20\xea\x05\x1b\xd8\x60\xf8\x45\xff\x9e\x7e\xc9\x76\xb2\x0d\x6c\xd4\xf4\x54\x2d\xd1\x51\xd1\xd6\x19\xb4\x9f\x83\xb5\xba\x7a\xc1\x5f\x05\x0f\x38\xc5\xae\x9b\x51\x08\x77\x52\xb2\x5a\x3e\x5f\x8a\x14\xf2\xf3\x92\x6f\x70\x4e\x27\x45\x1f\xb9\xe4\x6a\x20\xfa\xca\x57\xb1\x41\x78\xce\x7f\x23\x20\x3f\x79\xaf\xdb\x8d\xb5\xf5\x91\x9e\xb2\xbd\x99\xf8\xac\x6d\xd4\x14\x54\x56\x05\xda\x22\xc7\xf7\xfb\x8a\xfe\x41\x7f\x23\x49\xaf\xb4\xee\x58\x1f\xb2\xaf\x7b\x1a\x5a\x61\x2b\x15\x60\x91\xf1\xbe\x32\xac\xb2\x9d\xf7\xba\x3a\x0b\xd3\x4e\xb7\x47\x88\x40\x47\x9d\x88\xec\x27\x5f\x8b\xa8\x3b\x2f\x90\x29\x20\x4d\x6f\x15\xba\xa7\x01\xba\x30\x2c\x93\x1f\x9a\xd8\x2b\xcd\xba\x15\x7f\x70\x7f\xb5\x14\xdd\xa1\xbf\x2a\x24\x79\x5e\xc5\x31\xb0\x09\xa8\xe1\xaf\x90\x5f\x65\x81\xe3\xa4\xfb\xb8\x71\x01\x3d\x61\x8e\x8e\xcd\x61\x38\x5e\x1c\x12\x6d\x4d\xd5\x66\x52\xea\x33\xa6\x47\x80\xf4\xbe\x45\x8f\xcd\xd7\x03\xe6\xfb\x51\xf2\x1f\x63\x7b\xfe\xf0\x30\x9c\xc3\xe1\x9b\x61\x3d\xad\x2e\x27\xc8\xa6\x17\xc1\xf0\x49\xec\x33\xdf\x0c\x7c\xce\x22\x63\x8a\x76\x94\xcc\x56\x65\x0d\x54\x70\x34\x31\x48\x83\xe9\x7a\x86\x11\x4a\x36\x75\x07\x7d\x08\x48\xd3\xa1\x1a\xf4\x36\x1d\x29\xbe\x1e\xca\x94\x30\x93\xf6\x12\xca\x60\x8e\xf3\x62\x00\xbe\xc1\xb4\x29\xd8\x27\x7c\xfe\xa2\x73\x88\xc2\xb4\xbb\x40\x99\xd9\x3e\x1e\x51\x99\xfa\x3c\x2f\xb4\x4e\x43\xc7\x40\x43\xbb\x38\xd2\x45\xb6\xfd\xd4\x29\x1d\x95\x8f\x8a\x68\xe8\x08\x27\x06\x98\x3c\x20\x10\xfd\x5f\xaf\xd3\x77\xd8\xc6\x0e\xd9\x50\x31\x2c\x63\xd0\xe5\xf4\x16\x7d\x01\xab\x25\x2c\xa7\xd5\x51\xd6\x2f\x4d\xa2\xd9\x59\x1d\x55\x25\x33\x2f\x1e\x17\xc9\x85\x93\x52\x6c\xd7\x87\x85\xba\x0b\x69\x2f\x69\x8d\xf8\x0e\xde\x13\x65\xe5\xe3\x1f\xe3\x34\xfa\x17\x4b\x1f\x17\xfc\x15\xbe\x09\xab\xbc\x32\x94\xaf\x3a\x2f\x54\x56\xf4\x1b\x80\x65\x69\x00\x96\x85\x61\xd4\x87\x0f\xb3\x73\x6a\x61\x82\xf4\xf5\xb6\x35\x70\x38\x50\x5d\xc7\x5e\x5a\x5c\x1a\xcb\xa7\xb4\x86\x53\xb7\x47\x33\x33\xf4\x3b\x0e\x9b\x21\xe8\x5b\x65\xaf\x7a\xa4\xe2\xf7\x88\x7e\xea\x5b\xc0\x6a\xb8\x3e\x20\x97\xd2\xbb\xd2\xd7\x10\xf7\x12\xa0\x4f\x08\xd1\xde\x25\x6c\x00\xce\xc2\xa5\xfe\x86\x48\x07\x43\x3c\x15\x78\x66\x87\x37\x20\x08\x70\xcd\x8e\x96\xde\x96\xac\x04\x92\xd8\x23\xf0\xce\xc9\xbd\x8b\x04\x0d\x80\xfd\x3e\x0f\x80\x2c\x1c\xd3\x6a\x9d\x2c\x3b\x84\x99\x31\xe2\xb0\xa7\x95\x7a\xe5\xa3\x07\xf9\x95\xb7\x2e\x52\x0a\x14\x8e\xca\x4a\x20\xf0\x6f\xa3\x08\x64\x2d\xec\x94\x74\x15\xaa\xed\xbb\x16\xed\x29\xca\x7b\x9d\x8e\xce\x66\xd2\x78\x76\xc4\x4b\x33\x33\x2a\x20\x8d\xb4\x4a\x6f\x27\xa1\xc5\x50\xe5\x67\x87\x64\xe4\xd0\x3f\x64\xe5\x05\x29\xc1\x2d\xa0\x15\xe2\x9b\xfa\x83\x92\xf4\x04\xfc\x6a\xa0\x63\xc4\xdb\xdc\xa0\xb4\x08\x4a\x88\x27\x44\x62\xf1\x9c\x28\x95\xaa\xde\x5c\xc4\xd4\x90\x38\x96\xe7\xf0\xd6\x7c\x33\x8c\x07\x5d\xe7\x45\xd4\xf1\x4f\x66\xeb\x30\x62\xaf\x06\x31\x6e\xd3\x53\xb5\xef\xfd\xd8\x3f\x9e\xfa\xd8\x63\x93\x94\x8d\x80\x70\xa0\xf6\x03\x4f\xe2\x86\xec\xd5\xf9\xb2\x4c\x0b\x6b\x95\x45\x79\x7b\x1b\xfd\x33\x22\xa6\x37\x49\x5e\xac\x93\xe6\x2d\xc5\x69\xc8\xa4\x6d\xf3\xf5\xcb\x7b\x85\xe4\x93\x83\x04\x07\xb6\x0a\xd3\x24\xd7\x09\x53\xbf\xb9\x3c\xb6\x03\xa6\x63\xe2\x89\x45\xcf\x88\xb1\x1a\x99\x0e\x7b\x59\x9e\xc2\xba\x3a\x1c\xf3\xa4\xaf\xd2\xd8\x1f\xe8\xf6\x9e\x79\x26\xb6\xd5\x24\x20\x50\xd1\xd7\x61\x2b\xde\xb4\x64\x78\xa7\xeb\xc3\x00\xe9\x1d\x45\xa0\x4a\x9c\x68\x88\xd3\x6b\x42\x51\xbe\x36\x8c\xa3\x50\x1f\xee\x9a\x00\x30\x93\xb4\xd5\xf0\xdf\x98\x63\x80\x42\x37\x9b\x02\x1a\x88\xf8\xc7\x6b\x79\x3b\xe5\x91\x31\x90\x6f\xf8\xd1\x7c\xed\xac\x00\x91\xc8\x8f\x78\x69\xfe\x7a\x20\xf0\xe0\x5b\xea\x66\x83\x1c\xa1\xaf\x2b\x13\x2d\xb9\xa5\xe9\xa4\x42\x57\xb9\xa5\x99\x74\xcb\x24\xa2\xfb\x27\xf6\xee\xef\xeb\x3d\x7a\x49\xf6\x1e\xbd\xe4\x7c\xb9\x66\x4a\x3c\xdb\x9a\x8e\x1e\x44\x60\x0d\x41\x97\x9d\x63\xe0\x7d\xe3\x5f\x2e\x45\x51\xb3\x2a\x38\xb1\xb2\x34\x8e\x75\x06\x44\x20\x6c\xe4\x2b\xa5\xb7\xb7\xaf\x0c\xcb\x60\x36\xa3\x1c\x58\x52\x76\x11\x36\xa0\x36\x36\x56\x44\x3e\xaa\x91\xa5\xc9\xe1\x8a\x1c\x3d\x23\x51\x06\xe7\x06\xd9\x28\xf6\xd4\x72\x23\x64\x08\x01\x20\xb7\x18\x1f\xc3\xd7\x22\x20\x9e\x8f\x66\x80\x43\x40\x08\xc9\x50\x07\xbe\x09\x76\x49\xd6\x1c\x5a\x1a\x84\x9d\xd7\x24\x35\xdb\xc5\x40\xf4\xdb\x5f\x13\x78\xac\x8b\x02\x10\x30\x17\x85\x8e\xc4\x5c\x7a\xf7\xd6\x6f\xbf\x57\x2c\x62\x83\x41\x95\x88\x38\x8e\x07\xa2\x7e\x75\xdc\x01\x65\x9b\x51\x4e\x2c\xa8\x14\xfe\x21\xa0\x3a\x0d\x21\x82\xdb\x72\x07\x1f\xe3\xc1\x06\x02\x32\x8e\xbc\x35\x7f\x42\x64\x7b\xf3\x5e\x23\x2f\x54\x52\x44\x2a\xde\x26\x5a\xe6\x48\x67\x3e\x6e\x79\xd9\x04\x93\xd1\x2a\x7d\x0f\x53\x34\x48\x26\xc5\x23\xa5\xe8\x13\x3e\x22\xb2\x3a\x79\x5b\xcd\x62\x05\x90\x3d\xfb\x3c\xad\x00\x5f\x97\x7d\x7d\x69\x71\x14\xaa\x46\xbc\x30\x62\xbc\x05\x9b\x77\x30\x87\x02\x00\xf5\x4a\xdd\x8f\xfc\x39\x70\x51\x64\xd4\x8e\x8a\xd6\xfc\x5c\x25\xcd\xf9\x08\x8d\xc6\x9e\xb8\x01\x7a\x8d\xaf\x45\x6e\x38\x34\xbe\x62\x53\x15\x0c\x00\xb7\xf4\x5b\x64\xcf\x2c\x2f\xd7\x30\x86\x46\x6a\xe5\xa7\x65\xef\x0b\xb1\xf9\x66\x73\x5b\xfe\xf4\xd8\x74\xed\xc0\xd8\x53\xa3\xde\xe4\xbe\x09\xe1\x81\xf1\x7f\x99\x16\x04\x46\xf2\x55\xc1\x67\x79\x43\xce\x56\xb8\x14\xf8\x38\x2a\x6c\xab\x2c\xe2\x9e\x39\x97\x45\x79\x0b\xeb\xcf\x37\x82\x72\xb8\xab\xc2\x59\xd5\xe2\x6e\x6a\xe8\x7c\x36\xe5\x70\x71\x5e\x93\xe4\x85\x03\xf8\xd1\xfd\x4f\xd6\x66\xb4\xca\xe8\xc3\x00\x50\x6c\x04\x32\xf5\xe6\x53\x81\x83\x51\xe8\xde\xc9\x5a\xa6\x67\xa2\x44\xf3\x09\xe0\x44\x50\xe0\x6b\x10\x24\x89\xbe\xac\x9d\xe8\x2c\x2f\x88\x6a\xc7\xf1\x82\x3e\x17\x88\x1a\xd2\x73\x43\x2c\xfe\x54\x0d\xaa\xbb\xaf\x0d\x1e\x9a\xc2\xa6\x01\x7c\xd3\xd1\xec\x2c\xde\x44\x36\xad\x31\xec\x40\x32\x28\x1d\x11\xdd\xa8\x99\x2a\x8a\x98\x1b\xd8\xf6\xb9\xae\xe1\x8a\x68\x27\x96\xec\x80\x11\x88\xa6\x27\x26\x3c\xc7\x8b\x4b\xcb\x5e\x28\x45\xd4\x7b\x64\x40\xae\xf6\x3f\x59\x8b\x7b\x49\xd8\x16\x83\x88\x40\x1e\xcf\xd7\xf5\xfb\x1c\x14\x48\x67\x45\xd4\xc1\xe6\xa3\x20\x73\x55\x74\x6f\x5f\x35\x67\x4a\x8a\xdf\xde\xc9\xda\x9e\xf1\x87\x08\x86\x63\x71\x26\xde\x75\x3c\x22\x12\x71\x2f\x07\x82\x8e\xe7\x0a\x44\x14\x8e\xeb\x3a\x4e\x3a\x6e\x4e\xb0\xb3\x8a\x3d\xb9\x8e\xb5\x46\xfa\x8f\x7b\xb2\x2c\xd1\xb7\x09\xbb\xd9\xd2\xc9\x46\xf0\x2d\x75\xdf\x1e\xf4\x45\x6e\xdc\x82\x1e\xfd\x35\x9c\x23\x66\xf6\x47\x1d\x88\x07\xbe\x04\xde\xb8\x82\x6b\x1f\xf9\xed\x3b\x84\x1b\xb2\x65\x06\xf2\x5d\xb9\xd7\xac\x14\x54\xd3\x97\x07\xac\xc5\xf4\x58\x2d\x0f\xd3\xb4\xcb\x21\x2a\x13\xae\x43\x08\x2c\xfb\xfa\x7d\xb2\xde\xa8\xa2\x64\x44\xe4\xcb\xd1\x14\x80\x75\xbb\x20\x4e\xc4\xa9\xb2\x0f\x51\x2e\x9a\xec\xa2\x02\x3c\x5c\x08\x5e\xd1\xff\x0d\xfd\xca\x2c\xd0\x7c\x13\xf4\x05\x16\x7b\xdd\xa8\x85\x61\x6e\x47\x23\x56\xc9\x6c\x55\x10\xaa\x01\xe9\x04\xc7\x01\x6a\x1b\x7a\xe5\xc6\x30\x2c\x87\x3e\xfc\xc9\x5e\x64\x9e\xab\xe2\x61\xc6\xb0\x13\x7c\xed\xbc\x3e\xd5\x49\x74\x5e\x2c\x54\xc5\xdf\xd1\x3b\xf7\xd1\x44\x59\x02\xc5\x21\x01\xe1\x7c\x54\x84\x60\x4c\x1b\x06\xe1\xde\xfc\x01\xcc\x99\xb2\x55\x6a\x6e\x10\x0c\x7c\xc3\xc1\x39\xe1\x25\xcc\xa8\x8c\x1b\x99\x61\x51\xfe\x00\xeb\xcf\x37\xb2\x67\x26\xcd\x74\xae\x35\xf6\xd0\x4e\xaf\x30\x9f\x43\xf2\xe4\x8c\x44\xbd\x5d\x94\xdc\xcc\x27\x87\xf1\xfe\x53\x43\x83\x75\xe6\xf1\x77\x7f\x8c\x55\xe0\x9b\xbe\x30\xb0\xd0\xd9\x77\x91\x34\x5a\x06\xa0\xad\x1f\xe4\x3d\x3a\x23\xfb\xd4\x31\x18\xca\x99\x53\x13\x94\xd9\xd9\x1c\x38\x71\x90\xec\xb7\x03\x51\xb6\x64\x55\x8e\x98\x70\x47\x9d\x4e\x39\x4e\xc6\x79\x09\xfa\x7c\x45\xd2\x72\xe1\x55\xe1\xd5\xfd\x47\x02\xfc\x42\xf4\x8e\x89\xb6\xb2\x91\x3a\xce\x25\x7f\x97\xa0\x26\x95\xb4\x55\x5c\x82\x82\xef\x71\x05\xa1\xa3\x1d\x89\x63\x0e\x3f\x0c\x1c\xe8\xb0\x50\x99\x7d\x07\xa0\x74\x41\x27\x62\x9d\xf4\x5b\x94\xe0\xb7\x03\xca\x48\x8f\x20\x65\x7d\x65\xa0\xf2\x61\x62\xf0\x2e\x53\x85\x23\x3a\x7b\x9b\xd4\x18\x5f\x0f\xc4\xec\xb4\x61\x2a\x2b\xaa\xbe\xb5\x6e\x0b\xba\x23\x61\xd2\x2e\x8b\xe2\xd7\x92\x38\xf6\x2d\x52\xe7\x15\x51\x05\x65\x0d\x61\xc9\xd3\x37\x93\xb4\x12\x24\x24\x69\xea\xac\x95\xa5\x3d\x26\x5a\xb6\xc3\x29\xcd\xda\xda\xa1\x95\x22\x94\xcc\x74\x82\x11\x6c\x88\x02\x5f\x26\xdd\xcc\xd7\x02\x4b\x75\x48\xb5\x7a\x2a\xdb\x26\x48\x61\x96\x44\x02\x80\x33\xa3\x16\x38\xef\x3b\x87\x6e\x04\x9e\x32\xf9\x0d\xd9\x6e\x71\x7c\x18\x0a\x47\x27\x4d\x87\x80\x71\x93\x69\x1c\xc7\xcb\x09\x61\xac\x9b\xba\x93\x26\x28\xe5\x8e\x98\x6d\xb3\x98\x3c\x8f\xcf\x44\xbf\xbb\x9d\x82\x24\x47\x22\x0d\x0f\xda\x1c\x3c\x4a\x30\x9f\xb9\xf8\xeb\xb9\x81\xcf\xec\x7f\xd2\xb8\x41\x49\xa2\x63\xb2\x97\x28\x99\x42\x29\xf3\x75\x69\xf3\xdb\x79\x57\x87\x91\x8a\xa3\x67\x74\x93\x12\x6b\x1b\xd5\xba\x9c\x61\xc9\x9c\x36\x00\x0a\xdf\x21\xf5\x07\x15\xcf\x89\x4e\x4b\xf9\xe7\x0b\x60\x87\xd2\x70\x56\x02\xb9\xae\x0a\x20\xd7\xd5\x61\x54\x3d\xf3\xed\x28\xf3\x5d\xbc\x8c\xa1\xa7\x67\xb5\x78\x7a\x9b\x7a\xeb\x68\xd5\x32\x21\xa2\x9b\x03\xb6\x2a\xd8\x62\xfe\x09\xec\x04\xb2\x70\x48\xed\x00\x3c\xbb\xa5\x0f\x83\x5f\x44\x33\x51\x48\xf0\x10\x9c\x10\x04\x00\x2f\x8a\x60\xe0\xc5\xc0\xf2\x14\x3f\x92\xef\x26\x95\xc1\x70\x70\x01\xbc\x3d\x4b\x7b\x69\xb3\xbc\xa2\xc7\x73\x94\xea\x25\x76\x8e\x42\x3f\xf0\x4c\x52\xfe\x56\x1e\x79\xc4\x72\x7a\x95\x1c\xdc\x19\xc5\x61\x35\x5a\xc5\x0d\x5d\xb8\x03\xc5\x09\x0f\xe2\x0e\xde\xd1\x22\x9f\x04\x9a\xe8\xfd\x75\x72\xcb\xe1\x02\x7c\x80\x52\xfa\xc8\xcc\xbf\x22\x4e\x6c\xa7\x57\xf4\x54\x3c\x42\x9b\x83\x82\xe4\xdb\xf8\x76\xbe\x81\xea\xb3\x12\x22\x86\x7a\x9e\x1a\xf0\x10\xa6\xa6\xa7\x6a\xc6\x64\x14\x28\x74\x38\x2a\xd9\x03\x63\x6c\xf6\x2e\x43\x3e\xec\x1c\x21\xa9\xf0\xf3\xe8\xf0\x0e\xdf\x39\xc5\x65\x7d\x57\xe7\x9a\xf6\x8c\x90\xbe\x69\x05\xd5\x56\x41\xc7\x30\xee\x73\xfc\xe6\x6d\x90\xfe\x38\x22\x0a\x89\xef\x0a\xb0\x56\x53\xe7\x51\x0b\x8d\x64\xb6\x9d\xc2\x1c\x4b\xd7\x66\x31\xe9\x41\x28\xa4\x59\x61\xa5\xce\x42\xf4\xe1\x60\x5e\xef\xb3\xfc\xb6\xde\x35\x9b\xe8\x79\x34\x68\x4b\x26\x2e\x4b\x73\x28\x74\x28\x7c\x55\x54\xaa\x78\x40\x12\x58\x8b\x1e\x1e\x20\x41\x27\xb2\x5c\x2a\xd9\x48\xfb\x79\x41\xda\xcf\x0b\x0e\xb4\x96\xcf\x6b\x5d\xb4\xb5\xd1\xde\x7d\x1e\xbe\xcf\x58\xdc\x14\xc0\xa2\x53\x82\x53\x35\x2f\xd2\x6e\x57\x37\x77\xc0\x90\x31\xc9\x29\xfb\xae\xb0\x2c\xc7\x83\xca\x63\x9f\xe0\xd7\xe7\x01\x09\x0e\xf3\x38\xe5\x48\xf1\x2e\x0a\xf6\x70\x9e\x90\xc9\x7f\x15\x08\x46\x93\xe3\x92\xca\xeb\xb1\x69\x91\x84\x60\x97\x90\x6f\x06\x22\xac\xf1\xfd\xb5\xb6\x4a\x5a\x9c\xae\x71\xc8\x4c\xf3\x11\xbe\x19\xa6\x52\xd2\xd9\x58\xb5\xd3\x8e\x12\x41\x00\x37\x17\xf1\xcd\x80\x11\x3c\x30\x66\xfe\xbf\x68\x8f\x7a\x23\x8f\x55\xc4\xc6\xbe\x50\x7a\x97\xec\x5d\xc8\x85\x54\x04\x78\xfd\x91\xfa\x2e\x4f\x91\xd8\x08\x47\xfa\x60\x04\x7e\x2d\x6c\xad\x9f\xef\xb0\x66\x36\x93\xe8\x23\xd3\x86\x8a\x55\x12\x6a\xb4\xb1\x22\x0c\x43\xd9\xc5\xd2\x67\x78\x3e\xdf\x8b\x42\xd6\x43\x45\xa8\x0e\x87\xe6\xda\xb8\x2a\x19\x0e\x75\xaf\x48\x93\x28\x14\x04\x51\x57\xe8\x3b\xf9\x5a\xf6\x91\xa9\x5e\x61\x71\x6e\x7d\x83\x3e\xa6\x6d\x53\xed\xbf\x93\x1d\x0f\x17\xfb\xaa\x34\xdd\x5e\x71\x8f\x3f\xc8\xf7\x51\xee\x8e\xc7\xdd\xd1\xcf\xc1\xcb\xd8\xb9\x48\x21\x0c\x4f\x80\x26\x5b\x0c\x1f\xee\x18\x1d\x4f\xcb\x0c\x43\xe7\x0b\x4b\xbf\x0a\xa5\xc4\x13\x52\x83\xfe\xb2\x87\x39\xb9\x90\xff\xff\x06\x83\xef\x00\xe6\x0e\xe6\xba\x06\x97\xca\xa2\x8a\x87\xa0\x1a\x1b\x99\xf6\x74\x9f\x6e\x36\xec\x64\x3f\x2a\x19\x8a\xe3\xa8\x88\x5f\xb4\xca\xf5\x76\xaf\xc0\x01\xc0\xb1\xbd\x20\xfe\x30\x72\x0c\x86\x94\xc0\x25\xc8\x91\x6b\x85\x99\x1e\xe3\x63\xba\x85\xa8\x9a\xf9\x9b\x16\x3d\x7a\x3b\x51\x59\x98\x16\x51\x98\xcb\x69\xbc\x74\xbc\xed\x64\x5e\x1f\xcb\xb7\x7b\xf0\xaf\x2c\xd9\xb4\x6f\x03\x5a\xee\xd3\xc5\x3a\x6b\x8d\xfa\x36\x8d\x2f\xb3\x02\xb0\xf4\xdb\xe6\x99\x2c\xc1\x63\xc5\xf5\xc9\xf1\x20\x4d\xcb\x6a\x39\x38\x90\x7b\x5c\xc2\x9a\x6c\x13\x73\x5f\x77\xb3\x97\xd7\xae\x5a\xd0\x19\x77\x1a\x5b\x82\x3c\x9f\x02\x3b\x2b\xea\xbe\x79\x57\x85\x7a\x3b\x2d\xa0\xdd\x59\x31\x61\xed\x5d\x51\x39\x63\x35\xee\x04\xc8\x7c\x37\x4f\xcc\x2e\xfd\x5e\xbe\x40\x2a\x75\x63\xd5\x35\x6f\xc5\xa9\x2a\xda\x79\xda\x41\x86\x05\x5f\xfb\x45\xda\x7c\xbe\xf6\x05\xcb\x34\xcd\xf5\x5d\x82\x74\x6f\xa3\x14\xf5\xfe\x33\x94\x9f\xc6\x89\x16\x93\x82\x56\x76\xd7\xc5\x20\xcc\xbe\x56\xda\x23\x64\xf6\x2c\x9f\x83\x47\x49\xa0\x39\x0f\x46\x7d\x5d\x46\xff\x83\xd5\x9d\x47\x6b\xaa\xa1\x8b\xc2\xf9\x51\x76\x1e\x7b\xc5\x75\xe8\x2d\x09\x0f\x55\x85\x61\xda\xe9\x2a\x40\x03\x7d\xea\x06\xc8\x60\x0b\x45\xf1\x92\x77\x48\x85\x69\x23\xcd\x67\x23\x91\xc6\x3e\x27\xeb\xbe\x83\x67\xe9\xd1\x1a\x8d\x18\x70\x67\x09\xce\xce\xba\x20\xf2\x47\x04\x6e\x07\x96\x6c\x56\xfc\x13\x13\xb5\xbc\x9d\xce\x57\x05\x41\x09\xb7\x03\xd9\xe4\x68\xc5\xb1\x95\xac\x0c\x98\x8d\xe9\x31\xe3\x2c\x26\x55\x3f\xed\x72\xb4\x2e\x47\xc7\x79\x1f\x7e\x5d\xe8\xce\x76\xaf\xd3\x2d\x30\x0e\xc2\xcd\x57\xd9\xeb\x66\xad\x08\xdd\x1c\xb6\xb3\x85\x3c\xd6\x19\x6a\xd6\x28\xdd\x5e\x16\x7c\x39\x97\x87\x13\xc7\xc4\x3a\x2c\xb2\x28\x64\x0e\x43\xc6\x87\x89\xce\xa3\x6f\x89\x25\xd7\x61\x9a\xa4\x1d\x3a\xec\x13\x13\x1b\xc4\x40\xb1\xb1\x3e\x34\xdd\x6a\x82\x92\x11\x12\x78\x3b\xd6\xd0\x88\x9f\xa3\xb8\xf3\xe7\x05\xdc\x9a\xb6\xe9\x63\x28\xf1\x93\x6e\x45\x89\x6f\xd8\x84\x0a\xda\x10\x90\xd8\x8d\xf2\xa1\x21\xa4\xaa\x76\xe8\xd5\xb0\x49\xa4\x2e\x49\x92\xe4\xf3\x74\xd0\xcd\x39\x41\x02\xe8\xe5\x40\xe0\xb3\x5f\x1e\x90\x80\xa9\x27\xf7\xd5\x54\x94\x55\x36\xa7\x55\x6c\x2a\x66\xc8\xd4\x8c\x6e\x8a\xe1\x13\xee\xaf\x6e\x07\x12\x8b\x4d\x02\x6b\x31\xe5\xae\xbd\xf8\x30\xcd\xb0\xe5\x27\xb3\x75\x73\x31\x7f\xd2\xa3\xa3\x12\xa5\xc2\x6e\xc5\x9b\x93\xd3\xf2\x1b\x4f\x07\x9b\x32\x8b\x7b\xf6\xd4\x26\x26\xde\x23\x62\xd2\xeb\xd0\xfe\x48\xee\x5e\xa2\x14\x00\xd0\x8b\x28\xa0\xc1\xaa\xed\x40\x3d\x16\xda\x63\x15\xe5\x47\x58\x79\x34\x8c\xa3\x0c\x53\x85\xe9\x84\xd7\x7a\x1e\x10\x33\xd4\xae\x2f\x04\x62\xcc\xf2\x09\x68\x48\x3b\x0d\x86\xde\xd0\xf2\xb7\x57\x1c\x87\xd3\xf1\xc0\x08\x8c\xf5\x8c\x28\xb3\xc2\xdf\x85\x03\x07\x6b\xf0\x3a\xe5\xe4\x70\x5c\xed\x60\x62\x3c\xfe\xbb\xb0\xbd\x38\x5b\xb7\xc5\x50\xce\x0a\x2a\x3f\x24\x96\xdf\xff\x50\xdd\x83\xe7\x2e\x8b\x14\x72\x5e\xf4\x9a\x3a\x29\xf2\x6d\x9e\xfc\xf7\xb4\x28\x5f\x9c\xc4\x2b\x58\x74\xa0\xe8\x47\xdd\x5e\x17\xb0\xc1\x40\x80\xc2\x57\xcb\xf7\xf5\xef\xc4\xc4\x84\x05\xd0\x3c\x0c\x77\xd7\xcf\x83\x1c\x73\x83\x00\x2b\x1f\x3d\xe8\x59\xca\xdc\xf1\xbc\x41\x1e\x3d\x12\xdf\x57\x03\xf2\x7b\x5d\x16\xcc\x57\xef\xb7\xd6\x05\xf9\xe3\xbb\x48\xe2\xd8\xf1\xd9\xb4\x9e\xb6\xe4\x54\xf5\x33\xfd\x8e\x52\x02\x18\x7a\xfe\x2f\x02\xb1\xd0\x37\xc5\x90\xc0\x2a\x3a\x6b\x6d\x0d\x9c\xde\x1e\x51\xed\x57\xc5\x04\xf4\x65\x36\xdb\x8c\x89\x28\x05\xfe\x72\x6b\xbd\x72\x70\xca\xc3\x7b\x3d\xe7\xd1\xea\x77\xe4\x4a\xcc\xd2\xa6\x4e\x29\x99\x89\xb0\x90\xd7\x16\x80\x9b\x53\x92\xc1\x67\x59\x8c\x25\x75\x45\xcb\x34\x1b\x11\x94\x90\xc8\x4c\xa2\xd7\xfe\x65\x5a\x57\x47\x22\x66\xbe\xd4\x4e\xfd\xb3\x27\xac\xc8\x7a\xc9\x2c\x2c\x92\xc5\x38\x57\xfc\x44\xb7\x01\x23\x43\xbd\x51\x94\xbc\x12\xd3\xa2\x2f\x09\xf2\xcd\x4b\x2e\x77\xd0\x56\x8d\xc8\x62\x91\xa0\x1b\x91\xbd\xe1\x6b\x51\xa7\xc8\x0b\x15\xce\xf6\x70\xce\x1d\xb4\xce\xaf\xc0\xc5\x01\xa8\x8c\x71\x1b\x75\xd1\x9e\x49\x33\x26\x64\x81\x1b\xf0\x5b\xf8\x14\xdf\x88\x64\x6b\x37\x4b\x3b\x29\x73\x46\xe2\x34\x9e\x87\x5c\xf3\x8d\x0b\x2f\x67\xe2\x74\x7e\x87\xef\x1a\x5b\xf6\xfd\xb6\xff\xeb\xee\xba\xe0\x9d\xe2\x0e\x32\x68\x76\xf0\xa8\x5a\xb6\x54\x3f\x77\xf7\x62\x1f\x81\x4b\xe9\x69\x9a\x5f\xf3\xe0\x45\x55\x14\x3a\x4b\x36\x91\x26\x4b\x9c\xa8\x7f\x89\x46\x1a\xe7\x8c\x09\x70\x13\xd2\xc5\xfe\xde\x14\xc3\xfc\x2e\x0e\xd4\xbe\xc6\xf7\xd7\xe6\x54\xdc\x73\xc4\x96\x4c\xaf\x20\x5a\x3a\xbf\x28\x36\x24\x8b\x5a\x3d\xdd\xcb\xaa\xe6\x84\xe2\x1d\x6f\x08\x52\xa5\x37\x4b\xc1\x92\xef\x75\x75\x43\x67\xba\x10\xcd\x9b\xcf\x93\x54\xf0\x75\xff\xdc\x82\xa8\xf9\x7e\xa8\x05\xd8\xcf\x0a\x71\xea\x59\xc2\x13\xa3\x1a\x11\x75\x5f\x11\x8b\x79\x0c\xaa\xc0\xe1\x88\xa6\xc7\x2c\xd7\x1d\x1a\x33\xa1\xb0\x5f\xc4\xe1\x77\xfc\x18\x66\xa9\x20\x44\xdc\x2d\x0e\x84\xf5\x15\xd8\x05\x4b\x77\x26\xf9\xc9\xaf\x42\x97\xf0\x37\x40\xb5\xc3\xff\xd9\x4a\x4d\xe9\x28\x3b\x9f\x12\xd3\xf4\xb7\x51\xee\x07\x41\xc5\x97\x68\xba\x19\x54\x76\xa5\x5e\xf9\xf8\xc7\x38\x9a\xe5\xdc\x1d\x80\x11\xdb\xd1\x8e\x8d\xc8\xeb\x1c\x0c\x0e\x6e\x36\x44\x23\xf4\xf3\xb2\x02\xf0\x65\xa8\x2b\xb8\x71\x97\x44\xd2\x67\x05\x96\xc0\x4e\xca\xbd\xcf\x95\xaf\x9b\x51\xe8\xba\xce\xe1\xce\x5e\x17\xe3\x6c\x6f\xcb\x49\x1a\x6f\x0e\x9c\x72\x13\x50\x00\xb9\x44\xfb\x69\x13\x93\x62\xaa\xb3\xa0\xaa\xc8\xbb\x2a\x0b\xf3\x82\x33\x7c\xe6\xf7\x70\x46\xce\xcb\x91\x87\xe7\x1d\x4c\xb1\x47\x8c\xaf\xa1\x83\x1e\xc1\x02\xa0\x8e\xcf\xd7\xc3\xb4\x4e\xda\xc8\xc3\x5e\x86\x0e\x77\xd8\x73\x9c\x13\x4b\x1f\x6e\x04\xc2\xa2\x6b\x86\xf8\xa6\x6d\x1d\x83\x45\x1c\x52\xfb\x6a\x20\xe6\x19\x72\xda\x89\x1b\x54\xe8\x5b\x61\x8d\xaf\x49\x16\xc8\xa3\x81\x57\x6c\x49\x33\x26\xc8\xc3\x06\xb0\xee\xb6\xa0\x0a\x11\xc5\x13\x2d\x8b\x7c\x28\xbb\x21\xb6\xec\x2a\x79\x25\x34\x8d\x33\x37\x0b\x0b\xb6\x83\xd7\xc5\x88\xc2\xd7\x45\x0a\x67\x2e\x4a\x30\xc1\x0d\x66\x9e\xfd\x20\xbe\x19\x70\xc6\x9f\x7e\xba\x16\x2b\x8e\xaa\x90\x78\xc7\xa8\x0d\xbe\x1e\x06\x54\x63\xfa\xf6\xbe\xd9\xcf\x82\x6c\x01\x2c\xce\xd6\x8a\x0f\x99\x86\xd5\x56\x71\x5c\xf1\x26\xec\x22\xf9\x2e\x7c\x2d\x92\x1c\x59\xaa\x9a\x0d\xea\xc3\xae\x8a\x51\xc6\xc7\x85\xfb\x71\x41\xf2\x7c\xac\x0a\x10\x59\x37\x56\x79\x11\x85\x55\x8f\x86\x7c\xad\x14\xc5\x52\x66\x90\xb7\x9c\x0f\x82\x05\x43\x75\xc1\x8d\x70\x60\xac\x6f\xd4\x0a\xb2\x3a\xb7\x05\x7e\xed\x82\x00\xa2\xcc\x68\x9a\x6f\x88\xfa\x83\xc3\x34\x9d\x95\xe7\xd8\xcf\xa7\x6c\xc4\x51\x32\x1b\x31\xc6\x94\x1d\x36\x38\x28\xf0\x56\x4e\x0b\x8a\xcb\x0b\x7d\x48\x91\x61\x14\x2e\x54\xab\xe1\x01\x3c\x9c\x18\x0d\x44\x2e\x72\x18\x9d\x3d\xa1\x69\xd3\x99\x19\x3c\xab\x6d\xc1\x92\xfd\x58\x03\x49\xbb\x47\x8d\x03\xd1\xea\xe5\xac\x25\x2c\x23\xd8\x52\x29\x48\x82\x5f\x11\x28\x9d\x2b\xc1\x66\x92\xc4\x3d\x7b\x6a\xc5\x87\x2b\x5e\x17\x71\xc2\x8f\x6f\x04\x93\x79\x92\x66\x44\x5a\x29\x2a\xf8\xef\xd2\x2a\xf0\x75\x20\x91\x50\xdc\x61\xc7\xd9\xbe\x5f\x2c\x45\x45\xef\x17\x87\x34\x74\xd5\x12\x87\xae\x79\x8a\xad\x36\xd3\xc2\xf3\xcd\x30\xbc\x57\x57\xc5\xda\x04\xcb\x96\x0d\x09\x9e\xd3\xb3\x81\xc0\xe7\x3e\x3b\xb4\xbf\x3a\x56\xad\x96\x55\x5c\xb6\x2d\x8b\x16\xcf\xf6\x65\x0d\x4b\x70\x61\x40\x5f\xc5\xb3\x1e\x9c\x13\x75\xa1\x73\xc3\x76\x13\xe9\x73\x13\xed\x1a\xe5\x0e\x03\x08\x93\xc3\xd7\x9e\x6c\x4e\x15\x51\xc8\x6f\xe1\xd8\x29\x7d\xf6\x65\x49\x74\x25\xa4\xdd\x6e\xca\x23\xbd\x5c\x03\x98\x90\x4a\xdf\x04\xd2\x88\xe2\x38\xb2\xbc\x31\xc8\x15\xc2\xfc\xf3\xf5\xe0\xf8\xed\xe9\xa9\x0f\xd6\x3a\x3a\xc9\x8b\xac\xc7\xa1\x36\x83\xd3\x05\x27\xed\x45\xd1\x79\xd1\xd4\x73\x3a\x4e\xbb\x1a\xa4\xc9\x53\x8c\x7f\x01\x6f\xb1\xc5\xc2\xd0\x5b\xd8\x1b\xab\x7a\x73\x4a\x70\x8c\xf8\x5f\xc0\xf4\x02\x5b\x9f\x14\x30\x9b\x9b\x48\x3c\x22\x0c\x18\x1d\xc8\xf9\x13\x75\x04\xc1\x7c\x2b\x3e\xe1\xc3\x30\x5f\xbe\x11\x02\xac\xf3\x50\x75\xcd\x89\xfc\xf8\xc7\xfc\x98\xaf\xc9\x49\x7b\x2d\xd0\x65\x45\xa6\x5c\xdb\x0a\x9c\x3d\x76\xe6\xf9\x46\x64\x30\x1b\xbd\xbc\x7d\x9f\x18\x2b\xb6\x4a\x01\x11\x27\xb1\x02\xa1\x87\x3f\x2b\xa9\x27\x6f\xf6\x55\x0c\x4e\x8b\xec\xf0\x75\xf2\x96\xe0\x2e\xac\xc1\x79\x40\xc5\xe3\x72\xe0\x07\x57\x70\xc1\x80\x89\xf6\x45\x87\xc6\x35\xc9\x89\x70\x8d\xd2\xc1\xb6\x90\x20\x8a\xa5\xe8\x05\xe7\xb1\xae\xa2\x9f\x6d\x3e\x4d\x9a\x3a\x03\xbe\x17\x92\xf7\x2e\x03\x69\xe0\x99\xbc\x09\x0c\x1b\xb6\xa6\x44\x35\x83\xff\x45\x0c\xb2\x66\x9a\x10\xfe\x2b\x67\x6f\x33\x1d\xa6\xbd\x6e\x55\xcc\x4f\x03\x0e\x14\xc6\x15\xdd\xa1\x28\x97\xbe\x3c\x8c\x48\x21\x8b\x5a\x51\x33\x2a\xfe\x9a\x51\xde\xf7\x7a\x6f\x9c\xf8\xb6\xe8\x0f\x99\x86\x92\x24\xd8\x52\x52\x7a\x09\x6e\xa8\x64\x36\xeb\x75\x0b\x1e\x76\x38\x74\x22\xbf\x97\x0a\x15\x75\x74\x73\x1b\x2d\x30\x52\xd4\x3f\x23\xe0\x43\xb7\x02\x3f\x4f\xec\x67\x24\x77\xe5\x11\x7c\x9d\x64\x3e\xb2\x66\xa3\x6f\x7c\x5c\xa4\x77\x7a\xd8\xdb\x49\x92\x22\x08\xe6\x19\xfa\x66\x78\xa6\x57\xb0\xb6\x28\x64\x1e\xeb\xef\xc2\x35\x32\xe4\xaa\xc0\x1e\x38\x1a\x88\xf1\x79\xc0\x35\xd9\x3e\xca\x61\x1d\x83\x6d\xd5\xed\x46\xf1\x42\x45\xce\x89\x27\xe9\xb4\x33\xe3\x3d\xc5\xed\x5c\x14\xea\x1d\x02\xa1\x78\x0e\x5e\x3b\x8f\xbd\x82\x03\x6e\x67\x60\x89\x8c\xfd\x97\xc8\x07\xb1\xce\x9f\x98\x34\xb7\x21\x33\x03\xaf\x8a\xa9\x39\x6f\x3a\xac\xb2\x36\x2a\xad\x28\xd0\x93\x05\xe3\x76\x8a\x4f\x92\x65\x0d\xf5\xa1\xd4\x1b\x82\x86\xa5\xd3\x8b\x8b\xa8\x0b\x4a\x5e\x4b\xef\x24\xbb\x45\x8f\x8a\xa6\x7b\x9a\xd8\xd1\x45\x4b\xf2\x63\x9f\x60\x24\xcf\xc8\xa2\x59\x04\xbe\xae\xfb\x66\x4e\xd5\x2b\xda\x3a\x29\xa2\xd0\x88\x66\x5f\x71\xda\x9c\x14\x3b\x7d\xea\x1e\x81\x0d\xcd\xf5\x2e\xf3\x55\x3c\x3c\x86\x4e\x3b\x43\xa1\x71\xda\xd9\xf1\xa4\x3c\x13\xb3\xa5\x23\x7e\x81\xf5\x7c\x39\x10\x4c\x00\xc7\x03\x11\x46\xae\x50\xdd\xd1\x0d\xa5\x31\x0b\x8b\xb5\x5c\xa3\x73\xe6\x7a\x09\x1d\x3a\x71\xeb\x22\x05\x2d\xf8\xf4\x20\x0f\xdd\xf8\x7e\x34\x30\x19\x8f\x48\x94\x75\x56\xc5\x14\xb6\x75\xd1\xd8\xc9\x23\x00\xf9\x8f\xbe\x43\xfb\x6a\xab\xea\x15\xfd\x25\xc9\x1c\x0f\x47\xdb\xce\x16\x93\x23\x64\x93\x99\xa8\xa9\x93\x22\x5e\x90\xd4\x70\x81\xc7\x0e\xbf\x30\x0c\x21\x1a\x47\x85\xce\x54\x08\x6c\x19\x42\x52\xd4\x96\xb8\xdd\x41\x82\x56\x4e\x8b\xee\xc0\x2c\x4d\x54\xdc\x1c\x91\xa9\xfd\xd2\x47\x12\x6b\x62\x74\xeb\x1a\xa5\xa1\x6c\xfa\x7f\x73\x6a\x63\xef\x24\xe1\x69\xe3\xb4\xe0\xe0\xcb\xd2\xb9\x4a\x6e\xd7\x81\x62\xea\x9e\xf1\x5a\x2b\x4b\xe7\x13\xb8\xef\x10\x36\xd0\xdf\x40\x4a\x31\xd6\x1a\x26\x73\x55\x78\xb9\x9e\x46\x0a\xec\x3e\xd6\x8d\x31\x9f\xb4\xfe\x8d\x8d\xef\xbb\xb1\x56\xcd\x11\xef\xd6\x23\x4b\xed\x6a\xd2\xae\xcf\xe2\x54\x29\xe4\xec\x45\xb1\x44\x61\x5b\x67\xd9\x82\xa0\xfc\x40\xac\xc5\xd7\x03\x99\x76\x23\x45\x91\x6b\xf6\x83\xc5\xba\x20\xc8\x61\xfc\xac\xda\x22\x53\x11\x97\xe3\x5d\xb9\xc1\x51\xa9\x5c\x12\x58\xb1\xbf\x10\x11\x55\x37\x67\xa6\x77\x60\x1b\xaf\x89\x9e\xc6\x33\x32\x0b\x7b\x56\x00\x55\xee\xad\x7b\x25\xb1\x3c\x84\xc2\xbc\xa1\x16\xd8\xf6\x5b\xe7\x4e\x12\x28\xb8\x0e\xd7\xc4\x58\xcb\x3c\xcc\xa2\x2e\x7a\x34\xdc\x3c\x1c\x07\xff\x5b\x97\x8d\x07\x69\x3a\x9b\x6f\xab\x38\xe6\x9f\x6b\xfd\xfa\x7a\xaf\x47\xed\xd0\xeb\xc0\x43\xe4\xa9\x64\x7c\x53\x7a\x1c\xcd\xb5\x3e\xdb\x91\xc6\xe9\x28\xfd\xa1\x6b\xf1\x16\xf3\xe3\x84\x07\x76\x8d\xd4\xbf\x95\x6b\xbc\x22\x54\xcc\xd6\xba\xf7\x02\x42\xa6\x62\x16\xc5\x44\x8f\x84\x3c\x2b\x5e\xa9\xc8\xa2\x6e\x8e\x52\x0e\xbe\xf3\x0b\xa8\x1f\xf2\xcd\x00\x38\x74\xcf\x9e\x9a\x4a\xa2\x8e\x72\x6c\x0f\xf0\x46\x2e\x09\x4c\xd7\x25\x01\xba\x6f\xa8\x38\x4e\x53\x8c\xaa\x73\x69\x81\x13\x42\x61\x9e\x10\xe1\xe1\x7c\x5b\x9b\x40\x6f\xb7\xc7\x8f\x2e\x05\x7e\xa0\xfb\x1a\xa1\x0b\x51\x78\xbd\x22\xb9\x84\x99\x79\x9b\x9d\x27\x28\x24\x54\x0a\x40\xda\xe1\x10\x85\xc6\xd5\x71\x03\xd5\x0f\x8c\x71\xca\x18\x2c\x01\xc8\x46\x1d\x95\x6d\x37\xef\x90\xfa\x16\x54\x57\x4f\x39\xc8\x24\xa9\x52\xfe\xde\x40\xd4\x2c\xb6\xd4\x05\xca\xf9\x9a\x68\xe2\xe8\xf4\xf2\x28\xdc\xee\xb3\x3e\x37\x02\x31\x1d\x77\x19\x5e\x25\xb2\xde\x9f\x16\x1b\xf5\x9b\xf8\x6e\x74\xfe\x30\xf4\x82\xeb\xef\x81\xe8\x7d\x3d\x21\x38\xeb\x55\x98\x41\x59\xf1\x50\x5f\x81\xf8\x3b\x3a\x2c\x1b\x93\xa4\x89\x26\x27\x9e\x5b\xc5\x44\xfd\x0c\xdd\x8e\x58\x0b\x04\x04\xc0\x82\x0d\x26\x2d\x0e\x8c\x3d\x5e\xcb\x74\x27\x0a\x73\x6e\x0d\x45\x36\xe7\xf7\x4a\x01\xa9\x5d\xee\xa7\xc4\x7e\x40\x8c\x7d\x2c\x74\x36\x17\xe9\x79\xb4\xde\x5b\x50\x2f\xbd\xb9\x9d\xe5\x24\x86\xa4\x9d\xc3\x32\xf0\xbf\x08\x9d\xd6\x51\x59\x2b\xe2\xb4\x17\x7e\x7f\x4d\xcc\xef\x5d\xf3\x3e\x6c\xaf\x61\xfb\x23\x50\x71\x81\x45\xe0\x6b\x31\x33\xa2\xa5\x13\x4d\x88\x83\x3e\x75\x26\xf0\x6e\xcb\x62\x0e\x70\x23\x6d\xc2\x50\xd9\x01\x57\xc2\x14\x4a\xbc\xfc\xef\xf7\x1d\xfa\x59\x1d\x8f\xc8\x41\xcb\xb2\x59\xf0\xa2\x1c\x5f\xc9\x53\x50\x6c\x5d\xc1\x55\xed\xf5\x4c\x91\xce\x69\x4b\x18\xc6\x5d\xf6\xec\x4d\xc1\x0b\x3d\xda\x4f\x18\x36\x24\x7f\xdf\x8c\xf2\x30\x4e\x73\xab\xde\xb1\x10\x2f\xe2\x07\xf9\x26\x90\x3d\x5d\xaa\x39\xaf\x98\x00\xca\x72\x99\x98\x97\x45\x65\xe7\x24\x36\x0e\xc7\xec\x1b\x2e\x5a\xec\xaa\x70\xb6\x1f\xd4\xf5\xb2\x04\x75\xbd\x2c\x93\x4b\x44\x15\xcc\x4d\x3a\x3c\xfa\x00\x5f\x6a\xe7\x20\x0c\x8a\xdf\x64\xad\x93\x36\xec\xf0\x37\x80\xe3\xbe\x20\x50\x73\x5f\x10\x96\x93\x70\x14\x9e\x2c\x12\xf1\x0b\xc3\x60\x03\x3f\xea\x66\x43\x4c\x8f\xda\x55\x17\xa4\x41\x7f\x11\x78\x3b\xf1\x1a\xd6\x16\x39\x28\x31\xb0\xbd\x88\xec\x0c\x22\xf8\xef\x96\x11\xda\xc2\x49\xe8\xf7\x99\x7f\x56\x70\xf9\x74\x33\x3d\xa3\xb3\x4c\x37\x99\xe9\xc6\xc2\xcf\x8c\xde\x43\xb2\x77\xbd\xf4\x5c\xd9\xeb\x12\xdb\x71\x62\x18\x0c\x76\x56\xc7\x71\xda\x6a\x89\xe1\xee\x2f\x4a\x92\xaa\x17\x07\x3c\x9e\x3d\xe3\x35\xd5\x3c\x94\x46\xbe\x0a\xee\x7a\xad\x26\x26\x9c\xf3\x29\xb0\x85\xaa\xa3\x5a\xfa\x2e\xef\x0a\x2f\x23\x62\x80\x58\xf4\x0d\x8f\x03\x51\x33\xde\xf9\xa6\x38\x97\x47\x05\xc1\xf9\xcd\xc0\xa3\xdc\xff\x45\xe0\xd3\x67\xaf\x00\xf1\x6e\xb9\x0c\x48\xc5\x22\x28\x19\xc4\x66\x52\x67\x78\x5b\x75\xb5\x40\x58\x9f\x0d\x3c\xc2\xfa\xac\x40\x84\x75\x54\xa2\x5a\x3a\xcb\xb7\x89\xb6\x49\xb8\x35\x38\x3a\xb7\xfb\x66\x5f\xd1\xbe\xc3\xdf\xfa\x36\x99\x25\xdb\x3d\x2e\x98\x9a\x8f\x3a\x81\xd7\x87\x89\x67\x5e\x50\x60\x71\x03\x1e\xdf\x94\x96\x12\x54\x1d\x56\xa4\x37\x60\xd8\xce\x92\x31\x02\xe0\xeb\x2f\xa5\x91\xbb\x00\x7e\xd2\xfe\x88\xd7\x98\x78\x72\xff\x5d\x07\xe1\xde\x49\xd1\x41\x28\x9c\x8b\x08\x79\x29\x3b\xa0\xcb\x47\xd2\xe7\x45\x80\xa5\x93\x96\x6a\xfd\xb5\x0d\x4d\x3e\x8e\xee\xc6\x76\xf2\x1b\xd6\xea\x06\x0c\x24\xdf\x08\x82\xcb\x34\x6b\xa9\x24\x7a\x86\xd9\x33\x20\x43\x98\xb0\xc9\xd7\x03\x14\xe6\x13\x13\xb5\x46\x34\xbb\x69\x2a\x29\xcf\x5e\xe1\x1b\x89\x8c\x2a\xd2\x58\x4b\xbe\xaa\x73\x92\x33\xe9\x5b\x78\x2c\x0b\x9e\xf5\x8e\x89\x9c\xa9\xe9\x7c\xbd\x15\x71\xb6\x57\x5c\xc0\xda\xd4\x33\x3a\x31\x2e\xaa\x27\x5c\xb1\x8d\x4e\x38\x89\x57\x45\x78\x71\x03\xee\x13\x90\xaf\x9f\x2e\xbd\x65\x39\x2d\x52\xef\x0b\xbd\x56\x9a\xc7\x6a\x2e\x52\x23\x02\x68\x7c\xbd\xf4\x99\x3d\x54\x51\x2c\xd7\x13\xfd\xb2\x1d\x60\xe1\xfb\xad\x15\x26\xac\xfb\xec\x17\xfd\x9c\xcd\x84\x09\x12\x94\x38\x9d\x47\xb5\xd2\x32\x29\x82\xe6\xc9\x52\xa2\x55\xdc\x38\xed\xb5\x01\xd7\x9f\xa8\xe2\x14\x6b\x56\x64\x46\x30\x0a\x9a\xaf\x85\xeb\xd1\x55\x19\x48\x6a\x99\x43\xbd\xec\x23\x54\xf7\x06\x1f\xad\xaf\x91\x4a\x20\xbb\x8e\xa2\x64\xaf\xdd\x86\xa5\x81\xfc\xf6\xe4\x64\x2d\x24\x4c\x1f\x71\x87\xde\x19\x10\x99\xc9\xc9\x5a\xa6\xe2\x18\x19\x20\xe4\xc4\xb6\xd5\x3d\x82\x7a\xdb\xe2\xe6\x7a\xff\xf4\x58\x4d\x85\x61\x2f\x2f\x52\x87\x35\x76\x1a\xd6\xd1\x57\xae\xbb\x74\x54\xa6\xc3\xa8\x6b\x27\xd4\xf6\xf9\x33\x96\xb3\x43\x26\xe0\xb2\x59\x9d\x8d\x92\xea\x70\x43\x1c\xa6\xed\x18\xd2\x77\x4a\x4f\xd6\x0c\xb5\xca\x6c\x38\x81\x07\x3e\xfc\x9b\xd2\x71\x0a\xc5\x39\x32\x4a\xa4\xe4\xaf\x3e\xb0\xe8\x87\x8c\x31\x5f\x99\x8d\xbc\xe9\x61\x24\x8f\x12\x44\xaa\x86\xce\x58\x1b\x53\xc8\x71\x14\xa2\x13\xfb\x3a\xbc\x51\x4b\x8d\xea\x23\xb3\xb1\xbd\x53\x15\x81\x50\x7f\x47\xd4\xf9\xde\x19\x44\x43\xed\xab\xed\x7f\xf2\x6e\xfa\x3d\x06\xbc\xf5\x8d\xb5\x32\x0f\x85\x8f\x5e\x23\x41\x77\xd8\x48\x23\x96\x16\x1b\x29\x48\xba\x56\x36\x8d\xac\x3a\x38\xbe\x7f\x03\x60\x21\xfc\xf1\x56\x2a\x55\xdb\xe8\xce\x83\xdd\x2a\x8b\x3e\x5b\x1c\xeb\x86\xca\x50\x0b\x7d\xca\x81\x75\xcd\x83\xf0\xf5\xd0\x41\xed\x69\xbc\xd0\xe9\x7a\x5f\xd6\xf6\x7a\xf5\xcd\xab\xa5\x45\x81\x02\x5b\x17\xe9\xb4\x99\x34\x6d\xde\x6d\x1e\x45\x00\xd7\x6d\xaa\x0a\x0d\x9f\xd6\x5c\x9b\xf7\x40\x1e\x18\x7c\x4d\xcc\x3b\x89\x05\x70\x20\x72\xb3\x00\x76\x0c\x27\xed\x9d\x55\xc4\x32\xed\x4e\x2f\x67\x07\x74\x0a\x8c\xc7\x92\x13\xa3\x38\xcd\x8b\xfb\xcc\x63\x31\xb1\x37\x30\x53\x38\x99\x3b\x17\x85\xf9\x26\x97\xf3\xf6\xe2\x0f\x10\x87\x87\x03\xc2\xda\x39\xf8\x5f\xba\x1f\x7c\x20\xc8\x4c\x73\xed\x1c\xea\x86\x90\x5b\x4f\x71\x1a\x75\xdb\xa2\xd9\x19\x9b\xde\xf5\xd9\xc5\xff\xf9\xfb\xeb\x04\x10\xb0\x03\xdd\x44\xcd\x03\xae\x02\x72\x39\x0c\x67\xb6\xa3\xa4\xbd\xce\x56\x9d\x46\x34\xa7\x62\x9d\x14\x55\x9f\x4f\xb9\x20\xa6\xc9\x9f\x10\xac\x61\x6b\x43\x5c\x83\xa9\x5a\xde\xd5\xb6\xc8\x06\xff\xe3\x42\x29\xe6\xb0\x61\x7a\x05\x0a\x5c\x6b\x7d\xa0\xee\x19\x9d\xdd\x47\x4f\xc5\x21\x90\x08\x0d\xb9\x69\x0e\x37\xa0\x8c\x44\x8c\x07\x18\x08\x8f\xa0\x15\x8d\xa9\x37\x02\x31\x84\x64\xa3\x94\xae\xe1\x2f\x05\x02\xbf\xfa\x2e\x39\x7e\xee\xe8\x9a\x05\xb2\x01\x98\x3b\xe0\x73\xaf\x20\xde\x85\xb5\xbb\x82\xc5\xc6\x32\x32\x05\x08\x23\xcc\xfb\xf2\x63\x71\xcc\x35\x4d\x37\xe0\xc9\xfc\xaa\x4d\xb3\x6f\x3e\x13\xfb\x9f\xac\xb5\xa3\xa4\xa9\x3b\x51\x81\x16\xe4\x3e\x48\xa1\x4d\x51\x78\x26\x8b\xa6\x6e\x6e\xf7\x20\x32\xf0\x53\xf7\x01\xa1\x65\xf3\x84\x24\x11\xb2\x35\x6d\x7a\x09\x94\x1e\xb6\x43\x7f\x21\xfb\xb7\xbd\xbe\x59\x8d\xef\x19\xaf\x75\x54\x94\xcc\x64\xaa\x63\xb5\xb3\xa5\x19\x10\x4c\x44\x47\xc4\x7c\xa2\x96\x1e\x21\xab\xe3\xbc\x0a\x0f\xa3\x3f\x2e\xd9\x83\x8e\xd3\x86\x59\x77\x63\xd8\xe4\x2a\x63\x70\x1c\xbb\x28\x83\x7d\x02\x81\x6b\xbe\x28\x3c\xcd\xb9\x28\x27\x16\x73\xd1\x93\xb1\x2a\x58\x73\x57\x07\x47\x84\x53\x8b\xd1\x21\x01\xce\x80\x4f\xb8\x24\x49\x4e\x8c\x8d\x77\x39\xe9\x54\x15\xce\x65\x82\x30\x7d\x25\x10\xb9\xf8\xaf\x08\x00\xb4\x4e\x8a\x76\x2f\x8f\x94\x73\x50\x45\xa1\xcf\x8d\x6d\x75\xb6\xaf\x2f\x1e\x00\x7e\xee\xb2\xe8\xfd\xbb\xdc\x07\xa9\x6f\xa6\x05\xb6\x01\xba\xf8\x8c\xb0\x6a\x67\x04\xcb\x46\x37\x56\x0b\xdb\x3c\x86\x19\x90\x13\xdb\xe0\xe2\x17\xfe\x3c\x0f\x82\xf0\x00\xed\x29\x37\xb4\xc8\xc3\x17\xef\x04\x3b\x23\x8a\x9d\x3e\x52\xfb\x1f\xb7\x8b\x3a\xcd\x06\x19\x05\x26\x2f\x12\xa3\x4d\xb6\x63\x88\xa8\x85\xf1\x55\xf6\x8c\xc3\x7b\xff\xd3\xfb\xeb\xde\xc5\xdf\x2e\xc9\xfb\x4e\x0d\x9d\xe4\x4b\x9e\x67\x42\xaa\xc8\x16\x59\xe8\x8b\x99\x24\x47\x04\x93\x2f\x0c\xf4\xa9\x4e\x4c\xd4\xe6\x53\x26\x82\x75\xdd\x25\xae\x17\x65\x59\x4c\xdd\x6f\xeb\x2c\x62\x46\x09\x47\x31\x69\x54\x81\x6d\xef\x1c\xc6\x59\x36\x97\x16\x56\x30\x2d\x06\x44\xf4\xbd\x0d\x42\xd2\xa8\x6a\xac\x0f\x87\xb6\xc3\x13\xeb\xfd\x29\xe1\xfa\x7f\xca\x05\xb7\x69\xd6\xe4\xd9\xb8\xf8\xb6\x5b\x81\xe0\x2a\xbf\x35\xf0\xa2\x7b\x27\x6b\x0b\xba\xa8\x52\xee\x0d\x5e\xcf\xa9\xd2\x4f\xef\xe6\xdc\xe8\x77\xe2\x26\x9b\x7a\x72\x5f\x2d\xca\xf3\x9e\x3d\x03\xc3\x9a\x2a\x37\xe7\xb4\x9e\x18\xaf\x65\x36\x34\x71\x16\x42\x34\xe4\xef\x16\xd3\x12\x7a\x49\x91\x2d\xdc\x6b\xa4\x0a\x8f\x7f\xb9\x14\x93\x28\x03\x61\xeb\xce\x43\xc7\xbb\xd6\x0b\x3f\x9b\xe6\x52\x5f\xd7\xc8\x51\x31\xa1\x65\x43\x74\xcd\x5d\x42\x5c\x8c\x3d\xfb\x7a\x20\x28\xa8\x78\x24\x0a\xf3\xd8\x92\xd2\x81\xc4\xee\xa8\x9b\x37\x80\xaa\xdc\xb6\xb8\x69\x38\x82\xf3\x37\xe2\xa8\xdb\xb5\x6d\x0c\x16\xb6\x4f\xdf\x6e\x71\xfb\xde\x97\x7b\x72\x72\xbc\xea\x0b\xa4\x57\x48\xfd\x20\xb3\xd8\x37\x7b\xea\x25\xf1\xf5\x61\x5b\x75\x3b\x3c\x06\x02\xab\xf2\x76\x20\x0e\xd8\xdb\x7d\x13\x1d\x54\xd4\xc9\x77\xf8\xca\xd0\x51\xb8\x32\x78\x8e\xcb\x78\x28\xe4\x18\xaf\xe2\x95\x71\xfe\x2e\x01\x74\xe7\x46\xc4\x3b\x9c\x22\xe0\x9b\xb0\x6b\x97\x02\xcf\xe6\xfd\x95\x01\xf0\xbe\x91\x92\x74\xc6\xc4\x68\xd1\x9c\x16\x13\x76\x2e\x88\x09\x3b\x17\x86\xb1\x11\x36\x32\x55\x44\x26\x0e\x53\x15\xe1\xcf\x1d\x11\xe4\xb6\x47\xca\x87\x65\x81\x66\x46\xe7\x79\x94\x26\x2a\x26\xc2\x16\xc7\xa5\x20\xd1\x65\xe6\x7b\x90\xde\xdf\x52\x97\x64\xa0\x5b\x16\xfb\xd2\x70\xbe\x59\xae\x9d\x02\x49\x87\x88\x71\x49\x74\x76\xf4\x91\xe4\x5e\x1a\x86\xc4\x9b\x8b\xf2\x9e\x8a\xf3\xef\xdc\xc5\x22\x5d\x98\x22\x8a\x47\x44\x27\x1e\x4a\x69\x80\x25\x9c\x12\x38\xd7\xca\xa2\x9f\x2d\xf1\xd6\x40\xc6\xf8\xc0\x18\xe5\x1c\xab\x22\x07\x8b\xd4\xbf\x20\xf9\x1f\x77\x03\xa2\x37\xaf\xb9\xd1\x9a\x44\x87\x5e\x44\x39\x12\x34\xc0\x64\x7e\x3d\xf0\x23\x83\xbf\x5e\x7a\x3c\xa3\xea\x12\xf1\x0f\x11\x90\xf6\x0f\xe7\x9f\xee\xaf\x31\x23\x79\x02\xf8\xa7\x6b\x23\x76\x2d\x51\x3b\x40\x36\x07\x20\xf6\x7f\x09\xee\x17\x4d\x65\x05\x6d\xe7\x4e\x3a\xdd\x7d\x43\x10\x21\x90\xd7\x03\x4f\x8d\x63\x8b\x2d\xf8\xce\x6a\x5d\x4c\xf4\x44\xe1\x13\xa1\xc8\x65\xb1\x96\x5b\xe1\x22\xdb\x80\x51\xce\x02\xdf\x1c\xc1\x3e\x5a\x53\x79\xde\xeb\x80\x6f\xcb\xc6\xd6\xe6\xc7\x85\xa3\x62\xa7\x02\x6f\x15\x55\xd0\x25\x11\xad\x15\x51\x78\x9f\x8b\x28\xbf\xef\x87\xea\x02\x03\xb2\x7d\x11\x96\xd4\x35\x0c\x1a\x13\x02\x63\x73\x0d\x85\x11\x1b\x55\x9a\x87\x44\xa6\xfd\xd9\xd2\x17\x5f\x6e\xf6\x13\xe2\x9b\x07\x83\x21\xe6\x57\xb4\xbe\x1e\xad\x1d\xa2\x8c\x9b\x81\x48\x38\x2c\x8b\x74\x2a\xb3\x17\xd9\x46\x67\xac\xaa\xed\xe6\xd8\xcc\xc1\x7a\x60\xec\xa9\x5a\x23\x4b\x55\x33\x54\xd4\x53\x45\xb5\x0a\x84\x97\x80\x61\xe1\x9a\x31\x7e\x62\xc6\x8d\x07\x60\xdf\x27\x48\xb7\x54\x98\x76\x2a\x7e\xa6\xe3\x35\x2a\x77\xf0\xb5\xec\x3f\xcd\xd2\x74\x36\x5e\x48\xaa\x62\xde\xc0\x65\xfa\x5b\xfc\xdc\x55\x42\xe5\x20\xdd\x5e\x95\x9d\xaf\x8f\x14\xef\x15\xcc\xd4\xc7\x11\xc2\x8a\xa0\x71\x1f\x4b\xf9\x7d\x75\x91\x5a\xbc\x0b\x35\x7c\x8b\x23\x12\x8d\x16\x5b\xeb\x9e\xc9\xe1\x7a\x20\x72\xfc\xf7\x22\x92\x72\x63\xf9\xcd\x76\x62\x6f\x6f\x10\x34\x83\x3f\x0e\xae\x2e\x88\xd3\xe8\xa2\x70\x08\x56\x68\x6f\x01\x37\xdf\xcd\x0d\x2d\x00\xeb\x5f\x27\x04\x02\xf4\xd4\x0b\x08\x14\x5d\x42\xdd\x39\xac\x57\x49\x02\x2c\x67\x9c\x47\xbb\x8f\xd4\xc9\x68\xda\xac\x3b\x6d\x03\x96\x02\x38\x26\xb8\x8c\xd5\xba\x9c\xf1\xd0\xcb\xf5\x2e\xdf\x02\x74\x4d\xf2\x86\x6c\x5b\x14\xb8\x90\x8b\x0f\xd6\x7d\xc0\xf8\x7c\xe9\x83\xe9\x15\x74\xbc\xf2\x84\x47\x3a\x65\xd0\x99\x3c\x95\xd1\x8d\x89\x33\x6b\x61\x47\x3f\xd2\x5a\x20\xea\x5b\xa3\x8d\xb5\x9e\x97\xe8\x6f\xfe\xed\x61\xe8\xdc\x99\x5e\x96\x28\x26\x96\x81\x6c\x63\x61\xf8\xda\x8f\xf4\x52\x45\xa2\x33\x9b\x44\xc0\xda\xbe\x04\x11\x80\x1b\xc1\x73\x41\xf0\x3e\xdb\x06\x60\x71\xd3\x63\xd3\xb5\xb6\x8e\xbb\x1c\xa9\x41\x51\x3f\x8b\x25\xe5\x1b\xd7\x2b\xd1\x88\x7b\x1a\x04\x20\xd6\xf2\xe1\x57\xad\x78\xf8\xd6\x82\x15\x7c\x01\x22\x44\xa4\x11\xe0\xad\xec\xaa\x8b\xe2\xf3\x7a\xe9\xcb\x31\x99\x36\x6a\x89\x11\xa3\x0e\x43\xeb\xe8\x83\x4e\x0f\x84\x8b\x93\x93\xb5\xb4\x68\xeb\x6c\x3e\x62\x88\x23\xb3\xf5\x92\x98\x58\xe6\xde\x61\xc3\x68\xd3\x5e\x31\x2a\xc6\x41\x22\x05\x8a\xeb\x6d\x8b\x1e\x8b\x5d\xa9\xfb\xa1\x32\xb7\x4b\x9f\x69\xd8\x5e\x1f\x36\x26\xb6\x49\xf6\xc3\x86\x2f\x08\x43\x5f\x10\x03\x86\x5f\x18\xc6\x76\x32\xa3\x3c\x39\x1f\x94\x03\xb2\xff\x7c\x2d\xea\xba\x33\x99\xea\x35\xab\xe2\x60\x5f\x14\x03\xa5\xd0\xb2\x87\xa7\xfb\x85\xa1\x55\xab\xa6\x4e\x1c\x57\x90\x1d\xa5\x56\x11\x33\xd6\xfc\x39\x69\xc5\x2a\xcf\xab\xbe\x9f\xe8\x5b\x62\xa2\x12\x5b\x5d\x9e\x2c\x2e\x72\xe3\x61\xa6\xf2\xb6\xf9\xd0\xc6\xbb\xf4\xb5\x62\x72\x9a\x25\xf6\x78\x6b\xc0\xaf\xf8\xe8\x41\xcb\x2d\x5a\xf1\xe9\xc9\x25\x11\xc8\x2d\x0d\xb1\xeb\x4f\xd5\x62\xdd\xd2\x49\x53\x65\x0b\x7d\x8c\xa9\x55\x3f\x99\x16\x26\x00\xd5\x89\xb7\xe4\xe4\x0d\x15\xab\x85\x3c\x52\xf4\x39\xb8\xb8\x5b\xea\xa2\xde\xc7\xad\xe2\xb6\xc7\xc5\xbb\x9c\x79\xd4\xe9\xc6\x0b\xbb\x68\xf1\x61\x7f\xae\x90\x5a\xc2\x5f\xde\x03\x8b\x00\x07\xfa\x2e\xc1\x53\xb8\x81\xd5\xb2\xa0\x02\xfa\x72\x38\x5c\x57\x4b\xcf\x95\xb6\x2e\xa6\xf9\xbc\x41\x40\x3e\x01\x04\xb0\x70\x7f\x8c\x24\xb0\x89\x18\xa3\xe0\x6c\xc1\xca\x31\x41\xb7\x55\xa7\x1b\xa5\x89\xed\xff\xb0\xc3\x35\x05\xc4\x41\xe6\x6c\xd6\x06\x1a\xd3\x26\x27\x89\x1c\x3d\xcd\xbc\x10\xf3\x38\x79\xc1\xd3\x7b\x42\x9c\xd7\xf9\xb6\xce\x74\x63\x41\xb0\xf0\x6f\x9a\xfa\x65\x95\x86\xea\xe8\xc3\x62\x56\x37\x03\x11\xf9\x66\x73\x3f\xe7\x63\x9f\xa8\x4d\x8f\x49\xc2\x78\x4e\x4e\x5a\xd3\xb6\x5b\x80\xe3\x92\x50\xc7\x79\x55\x0c\x45\x38\x45\xc6\x06\xaf\xce\x65\x5f\x38\x32\x2b\x9b\x7f\xe6\x6f\x19\x17\x91\xc4\x0e\xd5\x38\x8c\xd9\xe2\x6b\x61\xc8\xd3\xbc\x9b\xe9\x05\xd1\xaa\xbe\x2a\xfb\xcd\x56\x5d\x53\x57\x18\x47\x9d\x86\x5b\x38\x78\x2f\x77\x44\x58\x7b\x47\x88\x53\x53\xeb\xae\xce\x46\x64\x9b\xb0\xcc\xb0\x8b\x72\xf2\xe9\xc0\xb3\xd9\x9c\x1e\xd2\x96\x4c\xac\x1d\x9c\x5a\xe1\x26\xa5\x40\xa0\x8b\x87\x65\x13\x26\x6b\x51\xa7\xd3\x4b\x60\x56\x6c\xe3\x9d\x68\xc2\x1b\x08\x73\xf7\x4e\xd6\x62\xad\x30\xe7\xd8\x46\xa2\xe6\xa9\x60\xde\x51\x59\x80\x87\xf8\x4d\xf1\x8e\x3a\x0f\xb3\x74\xbe\x22\xe6\xb9\x7d\x11\x2f\xc9\x37\x2e\x8b\x47\x53\x9a\x2a\x64\xfd\xe1\x56\x30\x0a\x9c\x6f\x86\x74\xbc\x77\x63\x95\x14\xaa\x95\x56\x44\x33\x2a\xf0\x37\x7c\x5d\xf7\xe8\xcc\xf9\xa8\x48\x4c\x28\x65\x4b\x8d\xae\xe1\x7c\xd2\x07\xae\x5e\x8b\x15\x2a\x9e\xcd\xef\x32\x8a\x1e\x11\x20\x10\xf0\xb6\x00\x2c\xf8\x59\xd7\x71\x98\x19\x7d\x5b\xfa\x91\x1e\x60\xd3\xc1\x3b\x9e\x10\x31\xe6\xf3\x81\x68\x5d\xfd\x2d\x78\x1e\xce\x85\xf4\x34\x2b\x37\xfa\x52\x5c\x8d\x5e\x71\xbf\x97\x67\xa6\x6e\xe4\x36\x61\x72\x72\x50\xef\x7b\x23\x10\x74\x1b\x47\x44\x37\xd9\x35\x90\x17\xda\x06\x20\x5a\x63\x4b\x61\x4d\xae\x1f\xa0\x48\x5c\xdf\xb1\xc9\x00\xc1\xf6\xf0\x45\x89\xa4\xa9\xb0\x63\xcf\x1f\x12\x83\xbe\x6e\xa3\x12\xc9\x43\x21\x24\xd7\xd1\x55\xf8\x8b\x16\xd8\xea\x41\xb1\xd7\x03\x8f\x89\x37\xfb\xb9\xcb\xa8\x53\xe4\x08\x46\xa1\x4e\x19\x25\x2c\x78\x6f\x96\xb0\xe8\x38\x4f\x95\x45\x39\xc6\x35\x10\x10\xdf\xea\xa2\x4f\xc2\xdc\x28\x25\x99\x22\xd2\x59\xb0\x98\x12\xb1\x33\x52\xa7\x95\xb5\x98\x16\x5a\x0d\x4b\xca\x2b\xd0\x22\xbd\x2c\x2a\x14\xf3\x59\xc1\x0a\x9c\x95\xfd\x89\x67\x07\x12\x64\xc6\xbe\xa7\xb9\x1d\xe7\x80\xc4\x0b\x40\x99\x7c\xed\x08\xc8\xbb\x3a\x8b\x8a\x34\xd1\xdc\x48\x81\x77\x5f\x15\xf3\x53\x56\x87\xf7\x5f\xe8\xc3\x3a\xec\x01\x20\x37\x31\xc1\xcf\xfc\x4d\x12\x6e\xbe\x96\x5d\x0a\xed\x28\x99\xa5\x75\xb6\x9b\x0b\xd7\x0d\x9a\x13\x33\xc9\x00\x34\xe0\xd6\x35\x8b\xe9\x27\x33\x84\xc5\xd9\x4e\x1e\x11\x3e\xff\x99\xc0\x6f\xcd\x4b\x38\x1c\x10\xd4\x91\xba\x30\x40\x23\xe4\x4f\x41\x66\x9e\x87\x9c\x38\xdc\xbf\x27\x55\xdd\xb5\xb8\x39\x1a\xa3\xd7\x6b\xe8\x58\xab\x56\x4f\x67\xd6\x73\x91\x1d\xb0\x7c\xed\x48\x9a\x68\x8c\x3e\x26\x7b\x98\x97\xe4\x32\x87\x44\x89\xff\x92\x43\x66\x99\x83\xae\x9b\xa0\xe8\xc2\x3f\x21\xd5\xe7\x5a\x42\xcc\xdb\xa0\xea\x35\x4a\x44\xa1\x76\x76\xb1\xfd\x82\xa8\xd3\xd5\x4d\xa4\xfe\x98\x7f\x26\xa8\x08\x2e\x9a\xcd\x69\xcf\x3d\x7b\x6a\x99\x9e\xe9\xe5\xce\x40\xf0\x4c\x0d\x81\xa6\x5d\x11\xe1\xf5\x33\x51\x5c\xad\xc8\xd9\x39\xe6\x1d\x60\xc8\x36\xb0\x86\xb6\x3b\xde\xc6\x00\x0b\x51\xb7\x1b\xb9\xac\x3c\x7c\xdf\xcf\xe3\x54\xf0\xcd\x30\xef\x13\xdd\x41\xbc\xb6\xd0\x4d\x00\x26\xf0\xb5\x9b\x78\xd9\x88\xc2\x85\xd0\x93\xe3\xd9\x61\x88\x15\x3f\x18\x71\xe8\xd8\x2d\xd5\x68\x44\xba\x22\x52\x7e\x2c\x4c\xb6\x73\xf5\x5e\x51\xa9\x6f\xea\x94\x3a\xe9\x10\x71\x8c\x08\xdc\xc6\xb1\xc0\xe3\x39\x30\xb0\x80\xff\x66\x71\xd8\xb0\x06\xad\xcc\x89\xc3\x81\x18\x8a\xa4\xdb\x2c\x69\xb6\x21\xbf\xa9\x67\x54\x2f\xb6\x9d\x20\x82\x53\x7f\xca\x71\xea\x0f\x9b\xa4\x99\xeb\xa4\x10\x33\xf7\x64\xb3\xa1\xc5\xca\x0c\x81\x9d\xa8\x38\x4e\xff\x1a\xf2\xc8\xfb\x04\xcf\x5f\x94\xe8\xa6\x20\xe5\xe6\x9a\x1e\xdf\x0c\x94\x73\x1e\xad\x15\x6d\x6a\xe2\x75\x13\x8b\x2c\x57\x35\x3d\x9e\xed\xf2\xf0\x6a\xed\x93\x3d\x95\x15\x3a\xdb\xe1\x0f\xb6\x9c\x58\x7a\x53\xa4\x28\xd9\x9d\x85\x8c\x5f\x86\x32\x06\x0f\xe0\x97\xe0\xaa\x22\x6a\xe2\x01\xe6\x30\x68\x17\x02\x9f\x82\xff\xf4\xd0\x59\x09\xe0\xf2\x17\x54\x2d\x6f\x89\xee\xae\xb7\xdc\xe9\x6e\x47\xad\x76\x37\x8b\x42\xfb\x56\x96\xba\xb4\xe2\xa8\x66\xcf\x0c\xd4\xce\xf6\x4e\xd6\x9a\x91\x8a\x17\xf2\x08\x2d\x92\xce\x72\x39\x8d\x74\xd6\x15\xae\x67\xa2\xa4\x89\xf6\x14\x84\xe7\xdb\x16\x85\x85\x67\x92\x39\x32\x3c\x2f\x3e\x58\xf7\x53\x8f\x8e\x96\x7d\x39\x18\xa3\x0e\xc8\xbe\xfd\x01\x0a\x3c\x88\x93\x6e\x8b\x09\x3e\x3b\x16\x07\x6b\xc5\x4f\xd5\xf2\xae\x4e\x0a\xf2\x07\xad\xf8\xd0\x8f\xc3\x70\xdf\xe9\x23\x50\x20\xcd\x0c\x6d\xf4\x86\x80\x82\x44\xc9\x9c\x6a\x62\x60\x24\xa2\xc3\x2a\x3d\x00\x2c\xf7\x36\x4a\xb4\xc2\x71\x78\x3e\xf0\xf1\x50\xa6\x73\x9d\xcd\xe9\xfc\x2e\xf3\xdc\x48\x43\xae\x07\x62\x8f\xff\x24\xf0\x29\x3a\xae\x05\x59\xb8\x05\xad\x07\xec\xf5\x56\x0a\x4d\xf8\xaf\x50\x50\x97\x2c\x44\x16\x61\xe0\x41\x76\x8c\xab\x05\x3c\xed\xf9\x61\xed\x9d\x33\x99\xca\x2d\x9b\x76\xdf\x78\x34\xbe\x11\xef\x80\xd3\xfb\x77\x3e\xf4\x7d\x95\x1f\xb5\x15\xe8\x17\xe1\xe9\xd8\x49\x93\x92\x7a\xef\x05\xd4\x00\x6c\xa1\xd2\x67\x79\x98\xb4\x03\x8a\xe5\x08\x31\xb5\xf0\x4c\x42\xe9\xe9\x41\x34\x81\x60\x78\x31\xf0\x94\x25\xe7\x4a\x3f\xdc\xe9\x5b\x7d\x2c\x21\x97\xb1\x20\x88\xcc\x4f\x4b\xca\xf3\x13\x34\x1e\x97\xc7\x74\x05\xa2\xb3\xfb\x52\x59\x3d\xe8\xfa\xfb\x4e\x60\xd9\x61\x25\x5f\x2b\x3d\x7b\xca\x65\xe2\xb6\xb4\x1a\x86\x22\x24\x4b\xbb\x4e\x89\x31\x4b\xd9\x54\x79\xc2\x72\x94\xac\x04\x95\x8f\x7f\xcc\x81\xaf\x49\x8f\x63\x03\xcf\xc8\x5a\x94\xec\x6c\x3d\x01\x96\x05\xec\xda\x29\xca\xd6\x41\xb8\xce\x09\x8c\xc1\x6d\xf2\x44\x79\x4c\x04\xa5\xcb\x1d\x69\xba\xf1\x8d\x58\x27\xc0\xa9\x42\xed\x62\x90\x48\xf5\xd1\x5a\xda\x80\x28\x22\x60\x40\x18\xc6\x09\x3a\xbe\x71\xa6\x6e\x46\x35\xb4\xa5\x00\x81\xbe\xbc\x0c\xe1\xe0\x1b\xc9\x52\x90\x76\x54\x91\x12\x4d\x01\xc3\xb5\x05\x45\xcb\xb8\x9b\xc0\xb8\x29\x34\x3c\x38\x55\x7b\xfa\xe9\xbb\x7c\x4d\x15\x4d\x50\xc8\x68\xac\x62\x3f\x6c\x46\x59\x38\x10\xcc\x13\x8a\x36\x95\xb3\x81\x40\xdb\xad\x92\x5e\x40\xda\xf2\x58\x29\xe6\x3b\xfd\xa2\x3c\x46\x60\x6a\xb0\xac\xe5\xf7\x88\x98\xa4\xab\x47\xcd\x72\x0b\x14\xc9\xb8\x1f\x49\xee\x38\x83\xf1\x79\x1c\xf8\xab\x90\x27\x08\xed\x1f\x0f\x55\xbb\x6d\x73\xc2\xd8\xd6\x21\xd9\xf4\xb5\xc0\x27\xa1\xbe\x36\x10\x6b\x82\xbe\xb8\x83\xd1\x61\x38\x26\xc0\x37\xf1\xb5\xdb\x9e\x5c\x75\xbb\x69\x96\x56\x7c\x0e\xee\xf3\xa5\xf4\x43\x24\x43\x4b\x54\x84\x6d\x5b\x53\x64\x24\x91\x50\x76\x92\x05\xb9\xc8\x16\x68\x34\xfb\x5e\x9b\xe3\x39\x2e\x9c\x82\x15\x31\x21\x04\x8e\x83\xe5\x31\xf4\x1c\x6f\xc7\x4b\x81\xb0\x8b\x55\xd4\x19\xf1\xd4\x00\x27\x71\x2e\x11\x0f\x6e\xad\x8b\x46\x72\xa6\x12\x42\x8d\xe5\x9d\x61\x8d\xa6\x79\x57\x25\xa0\x73\xf0\x04\x81\x02\x7e\x75\x66\x68\x06\x4b\xc5\xfa\xb0\x4a\x9a\x18\x8c\x27\xd0\x28\xbe\x66\xe6\x51\x2e\x79\x91\x86\xb3\xa3\x9e\xee\xf6\x78\x29\xcb\xc0\x77\x04\x0e\x09\x1c\xa4\x08\x82\x3e\x27\x21\x91\x83\x53\xad\xc6\xf7\x13\xf8\x9d\x1a\xf4\x2b\x8e\x04\x97\x09\x26\xf8\x46\x0c\x7b\x88\x55\xd2\xcc\xe3\xa8\x69\x07\x5a\x88\x09\x0e\x36\x19\x78\x5c\x36\x9d\x67\x2d\x95\x70\x97\x37\x8e\xfc\x6b\xa5\x2f\xa6\x80\xe8\xd1\xba\x66\x9b\xfd\x17\xeb\x8d\x75\xa2\x1c\x13\x91\x98\x8a\x02\x8f\x86\x10\xf3\x56\x20\xd8\xe6\xff\xaf\xbe\xf1\x0d\x9d\x6e\x96\x76\x22\xe3\xd3\xfa\x04\xdb\x92\x28\x27\x0c\x96\xc3\xcc\x1e\x16\x3d\x4b\xa6\xec\x18\xd0\x04\x19\xfd\x90\x44\x59\x94\xe4\x45\x54\xb8\xd1\x31\x2c\x87\x88\x3c\xf9\xba\xbe\x39\x8f\xb2\x67\x9c\x7c\x53\x7a\x30\x3b\x8e\x5c\x84\x40\x27\x44\xdb\x67\xb7\x17\xc7\x15\xa3\x4a\x51\x85\x7c\x9d\xd4\x2d\x5f\x8b\x7e\x16\xe3\x77\xf2\x08\x0e\x47\x33\xb4\x24\x69\xc4\x1d\xb8\xa3\x91\xa5\x51\xac\xb3\x2a\x19\x23\x89\x40\x83\x98\x6f\xad\x8b\x6a\xda\xda\xd0\x21\xe9\x61\x9a\x84\x26\xe2\xa1\xd7\x75\x15\x64\x37\x90\x63\x49\x40\x13\x5b\x69\xda\xdc\x4d\xf6\x85\xfb\xd2\x05\xcd\xcb\x3a\xac\x93\x83\x1b\x1b\x11\xc1\x49\xe1\x39\x5d\x96\x97\x88\x44\x0b\x37\x48\x96\xe2\xa9\x6f\x93\xd5\x65\xd8\xa6\x68\x4e\x3d\x0f\xd8\x03\x7f\x2f\x6c\x36\x7f\x9a\x6c\x12\xcf\x7d\xa3\xcc\x29\xfe\xe8\x01\xe0\x08\x1d\xce\xcd\xcd\x99\xe2\xfa\x84\x85\xdf\x6d\x16\xd0\xa7\x9f\xae\xc5\xbd\x66\x14\x66\x69\x2f\x17\x24\x75\x9c\x5c\xb0\x73\xc0\x77\x3b\x6d\x98\x84\x45\x4f\x71\x86\xdf\x4d\xea\x75\x80\x88\xf5\x72\x97\x48\xf8\x7c\xf0\x21\xf3\xa6\x90\xf8\x4a\x5d\xa0\x1a\x36\xe8\x25\xf0\xaa\xdc\xf9\xc5\x70\x11\x18\x72\x1c\xfa\x15\xf8\x01\x72\x56\xba\x1d\x32\x20\xd6\x96\x7d\x48\xc7\x61\xfc\xd1\x83\x2e\x81\xe1\x99\xd3\xaf\x7b\xae\xfe\x8f\xee\x5e\x34\xee\x50\x5f\xa6\x12\x56\x62\x74\x51\xa4\xed\x5e\x95\xcd\xc5\xd7\xb1\xb3\x38\x73\x27\xa8\x4e\x28\x5a\x8d\x2c\xf9\xf5\x2b\xb4\x99\x70\x74\x56\x86\xf0\x11\x4d\x1a\x03\xde\xe0\xf4\x89\x85\xdc\x57\xdc\x70\xec\x73\x7d\xa0\x83\x5e\x66\xe9\x8b\x51\xb6\x38\x19\x88\x52\xfc\x49\xb7\x21\x5d\x55\x64\x69\xa2\xd8\x7f\x70\x73\x02\x04\x4d\xfc\x30\x00\x56\x37\xed\x25\x4d\x3e\xeb\x8e\x16\x5c\xa0\x2c\x02\x59\xc5\x52\x4d\x9d\xe5\x64\xaa\x10\x4a\xa0\xeb\x4b\x60\x66\x2c\x6c\x81\x13\x25\x7c\xb3\x28\x15\xc3\x60\xd5\x6a\xbc\x16\xf6\x0a\x28\x29\xf0\x1c\xa2\xd0\xc2\xd7\x92\x72\x3a\x6c\xcf\xab\xec\x99\x8a\x37\xce\x98\xab\x6d\x4b\x79\xf7\xc8\x91\xa5\xec\x01\xd8\x8e\x15\xd9\xc9\x72\xbf\x00\x8e\xd0\xcc\xaf\x7c\x87\x71\x07\x37\x56\x03\x91\xde\x01\x40\xd4\xa1\x9f\x04\x57\x96\x48\xe2\x02\x00\xc2\x0d\xf8\xa2\xa2\xc7\x20\x52\x7b\xd2\x86\xb8\x29\x4a\x67\x69\x23\x0a\x69\xaf\xec\x84\xc8\x8a\xe3\x7b\x3e\xe6\xf2\x39\x61\xa6\x1a\x8d\x05\x21\x27\x2b\x42\x4e\x56\x44\xe3\x53\x43\xe5\x51\xa8\xe2\x78\x61\x54\x54\xc2\x5e\xc3\x73\xd8\x84\x92\x48\xb3\x9e\x24\x15\x67\xb3\x4e\xb4\x54\x40\x16\x5c\x1a\x52\x8c\x9c\xaa\x1d\x4a\xdb\x2a\xc9\xc1\x79\xef\x13\x0e\x7d\x4d\x7d\xbb\x5d\x4f\x45\x92\xa7\x59\x11\xa9\x8a\x90\x23\x0c\xc2\xe1\xeb\x60\x33\xc0\xed\xc0\xd8\xe3\xb5\xae\x12\x14\x7c\x4c\x6e\x6b\xdd\xd8\xcd\x6a\xfb\xe0\x94\x25\x78\x62\xc9\xb5\xc0\x34\xc9\x71\x0e\x4f\x93\xcf\x50\xeb\xc3\x62\x10\xfc\x45\xd9\xc7\x4c\xc4\xd3\x2c\x0e\xb3\x69\x53\xcd\x8e\x78\x3d\xbc\x0e\x1d\x64\xf9\x74\x7c\x71\x6d\x5d\xe4\x14\x9f\x95\x34\xce\x71\xae\x77\x79\x60\xc7\xf1\xc0\xe3\xaa\x41\x3f\xe5\x86\xb5\xca\x39\x17\xb4\x61\x8e\xf6\xc9\xa8\x17\x37\x0e\x63\xca\x91\x60\x9f\xa2\x9f\x87\xdd\xb1\x9e\x12\x93\xa0\x30\xc2\x93\xff\x4e\x42\x96\xdf\x80\xaa\xe0\xd1\x7a\x81\x24\xe0\x3a\x5c\xf5\x1d\xf2\xaf\xc9\xe9\x62\xff\xa2\xf4\xde\xf2\xeb\x62\x96\xc6\x4c\x9a\x36\xf3\x6d\x1e\x35\xbd\x12\xf8\xc2\xdd\x0a\x56\xd4\x12\x49\x55\x1c\x2f\xef\x8b\xf2\x4d\x5f\x04\x94\xc3\x72\x4f\xf9\x68\x46\x1f\x6e\x47\xb1\xca\x50\x64\x36\xbf\x60\xff\xc4\x57\xb1\xce\x0a\x6e\xea\x58\x17\x77\x1b\xc5\x6b\x0b\xe1\x15\xc7\x79\x74\x2e\x10\x14\x5a\x6b\x78\x28\xf8\x66\x3b\xeb\x5e\x23\xef\xae\xfb\xea\x15\x40\x39\x1b\x1b\x78\x34\x7c\xe3\x16\xe0\x71\x60\xd7\xaf\xa2\xa0\x00\x1d\xb3\x93\x32\x24\x28\x9b\xdc\x12\x70\x70\x55\x14\x3a\x61\xb4\x28\x8a\xa2\x27\x25\x73\xea\xc9\xe0\x81\xfe\x40\xec\xd1\xda\xc4\xc4\x7b\xc5\xe0\x81\x17\x10\x2f\x41\x91\x6c\x20\xcd\x84\xe7\xfb\xa3\xd2\x67\xd5\xaf\xf7\x0d\x21\x2b\x05\x77\xf0\x2a\x75\x89\xe0\xed\x7e\x8e\x56\x0d\xff\xfd\x01\x7a\x5e\x18\xc4\x4b\x90\x05\xfc\x43\xb5\x2e\xe0\x5a\x37\xc9\x54\x32\x13\x09\xe9\x05\xe4\x67\xb6\x02\x20\x63\x9b\x27\xcc\x76\x23\x08\x7c\x1d\xb1\x3f\x77\xab\xb2\xf8\x21\x2d\xf0\x52\x20\x86\xce\xec\x04\x5c\x86\xb3\xea\xa4\x44\x6d\x8d\x82\x16\xd5\xd1\xa5\xee\xb1\xb4\x74\x37\x59\xb2\xed\x34\x66\xab\x06\x0f\xf5\x92\x28\xcd\xd0\xa1\xcb\x0c\x8a\x7d\xd0\xd0\x8a\xe3\x51\x38\xea\xc2\xa1\x38\x15\xf4\xd1\x38\x78\x6b\x42\x0d\x21\x8f\x64\x2b\x73\x3e\x2c\x9d\x49\xb3\xce\x36\xbf\x6c\xff\xad\xf4\xad\x5d\x37\x91\x7f\x61\x36\x96\x40\xb4\x05\x7d\x56\x8c\xdd\xdb\x5a\x97\xdc\x6c\x0f\x8b\x22\x7d\xd2\x9b\x51\x61\xd1\xa3\xa4\xbf\xd9\x3c\xd7\xa7\x6d\x56\xd3\xb6\x66\x7b\x0a\xe7\x38\x52\x8d\x28\x8e\x8a\x05\x0c\x56\x79\x4d\xce\x7d\xb8\x28\x51\x2c\x1b\x62\x9c\x32\x26\x98\xda\xe6\xcb\xc1\x11\x3a\xb5\x86\x2a\x8a\x58\x53\x4d\x81\x6d\xa4\x2d\x35\xf9\x42\xe3\xd2\x80\xa7\xfc\x28\xa0\xbe\xbe\x60\x01\x11\xe1\x7c\x03\xdf\xb8\x9c\xa6\xea\xe5\x45\xa6\xe2\x48\x25\x8c\xdd\x41\x36\x15\x04\xae\xc8\xfd\x33\x14\xcb\xd2\xac\x0e\x9b\x37\x99\xce\x45\xba\x10\x8c\x66\xc7\x24\xa3\xd9\xb1\x72\xd3\x1c\x40\xaa\xab\x1c\x9c\xc2\x2b\x41\xfe\x0e\xd3\x2b\xf1\xb5\x9b\x58\x43\x53\xa5\xdb\x88\x52\x7d\xa4\xb0\x2c\x86\xcb\x2f\x6f\xee\xcb\x3a\x38\xbe\xbf\xb6\x67\xcf\x36\xaf\x36\xb8\xb5\x1b\xe2\x77\x3a\x10\x11\xd6\x69\xc1\x87\xf2\x62\x20\x08\x73\xb9\x94\xc7\x37\xa2\x26\x12\xa6\xf3\x14\x0f\x02\x4c\xf3\x6c\x29\x54\xf6\x49\x31\xae\x4c\xce\x61\x9c\xd7\x6a\x36\xd1\x79\xae\xf3\xaa\xa0\x3d\x80\xfb\x8d\xb8\xf4\x84\x60\xa4\x93\x05\x98\x99\x1e\x0f\x5a\x83\x3f\x7f\x5c\x8c\x01\x02\x24\xd2\x21\x38\x25\xf5\x8a\xb7\x02\xd1\x5c\x9a\x2d\xf4\x89\x4d\x29\xc4\x66\x18\xc0\x96\x27\x22\xa0\xbe\x62\x41\xcf\x12\x0d\xed\x1f\x6e\xcf\x8f\x3e\x36\x22\x70\xe1\xe7\xfb\x5a\x89\xcc\xf6\xd8\xc0\xd8\x53\x83\x0d\x62\x07\x26\x26\x6a\xad\x4c\x6b\xb4\x51\x5a\xb6\x26\xfa\x56\xdb\x61\x30\xac\xb8\xd2\xd6\x59\xae\xe3\x99\x8a\xb0\xb8\xf0\xc8\x6d\x42\xcc\xc2\x21\x3a\x69\x91\x66\x69\xac\x2a\x12\xc9\x7a\x5c\xe6\x17\x8e\x0f\x70\xf4\x3d\xf2\x48\xad\x97\xcc\xab\x8c\xe6\xb6\x33\x8a\x05\xa0\x84\x63\x7d\x69\x7e\x92\x29\x4b\xcf\x3c\x64\x62\xce\x07\x6b\x7a\x41\xe7\x55\xd1\x41\xb9\x26\x32\x32\x4b\x62\xba\xd2\xa9\xbe\x72\x7b\xa6\x8b\x6d\x1e\xa6\x76\xa6\x14\xa3\xaa\x39\x7f\x69\xf9\xba\x3d\xf6\x07\x50\x23\x3c\xe5\xd6\xba\x80\x9e\xbf\x2d\x78\xc3\x3a\x69\x12\x15\x69\x16\x25\x2d\x90\xcf\x30\x84\x08\xdf\x89\xf8\xf9\x35\x31\x31\x01\x35\x6f\x66\xf3\xa2\x4d\xb4\xcc\x5e\x7d\x0d\x6a\x2a\xcf\x55\x93\x87\x19\x23\x38\x3b\x2d\x4b\x43\xa7\x07\x52\x2b\x26\x86\x50\x73\x69\xe4\xe7\xf7\x42\xfb\xbe\x2c\xc6\xc1\x0e\x92\xa9\x51\x11\x25\x2f\xa2\x24\x04\xcf\x2f\x22\x94\x25\x4f\x39\xfe\xa9\xc1\x31\x2f\x13\x13\xc6\x0f\x62\x2e\x23\x86\x4f\x60\xef\x2d\x96\xc2\x7b\xe4\x79\x2f\xef\x52\x27\x57\xb5\x72\x60\x6c\xe3\x8c\x00\xb5\xdd\x14\x7d\xf0\x83\xdd\x27\x26\x3c\x9c\x53\xad\x1e\xb1\x97\x3e\xbe\x71\x06\x47\xd1\x31\xd7\xb8\x6e\xe8\x2d\xf5\xfb\x65\x09\x3f\xef\x45\x49\x8b\x66\x88\x38\x64\xa2\xab\xd4\x71\x47\xb5\x33\xeb\xc6\xf8\xc8\xa8\x03\xb1\xd6\x56\x89\xaf\x3f\x26\x89\xfe\x4e\x88\x84\xa5\x4e\xf2\x1e\xf3\xa3\x40\xed\x3c\x27\x5a\x70\x9f\x1b\x28\x7a\xec\x7f\xb2\x66\xc7\xb5\x1d\x18\x73\x6c\x86\x1e\xdf\x7d\xd3\x81\xa9\x32\xad\xba\x55\xdf\x1b\x77\x5b\xd2\xb3\x2c\xf5\x35\xb7\xdd\xe3\xf1\xa1\x51\xca\x46\x8c\xa1\x83\x81\x2f\x14\x0d\xce\x4a\x9c\x98\xa8\x15\x99\x6a\xea\xaa\x64\x34\xe4\xa9\x10\xb2\x83\x88\x59\x85\x05\x92\xa3\xad\xe3\xee\x6e\x7c\x4a\xe0\x64\xec\x08\xbe\x3b\x72\x54\x13\x7f\x9f\x83\x15\x9b\x73\x81\xc5\x79\x5a\x54\x42\xd1\xc1\x63\x9b\xe6\x3c\x15\xfb\x69\x42\x63\xb2\xfe\x83\x2f\x85\x3a\xce\xe7\x91\x07\x72\x30\x1f\xc7\x18\xf8\x5e\x52\xdb\x96\xaa\x46\x64\x50\x8e\x93\xc3\x85\xe4\xfa\x9f\xc9\x61\xfd\xab\xc3\xd2\xbd\x33\xba\x13\x25\x51\x8e\xa3\xc0\xbc\xfc\x24\xa6\x96\xa3\xbf\x8f\xa4\x4f\x2d\xdc\xeb\x4d\x16\x06\xa1\xb0\x65\xfb\x26\x21\x81\xb1\x14\x67\xe0\xe6\xe1\x6d\xd6\x02\x3f\x6e\xf3\x26\x96\xc5\xf2\x73\x6d\xee\x50\x1b\xf3\x45\x9e\x69\x5b\x55\xda\x82\x4c\x9e\xc5\x97\xd0\xca\xe0\xd1\xe0\xb8\x58\x1c\x83\x18\x13\xb3\x2e\xe7\xbb\xbc\xb4\xb9\x18\xf2\xc4\x78\xed\xe9\xa7\x2b\x3e\x2a\xf8\x39\x41\x3e\xf9\x73\x43\x8b\xfe\xb1\x56\x36\x55\x62\x67\x11\xf7\x4d\x29\xf6\x4d\x11\x61\x5b\x77\x4c\x34\xbe\x43\x20\x7e\xa1\xaa\xa1\x00\x5e\x85\xf4\xc0\x17\x3f\x03\xe9\x81\x5c\x80\xa3\x16\x5e\x11\xd3\x5e\x5a\x82\x2e\x7a\x7f\x84\x65\xdf\x66\x37\x19\xd0\xc1\x2b\xb2\xdd\xa8\x17\x77\xb3\x08\x40\x11\x61\xca\x7d\x03\xc5\x3d\xa2\x77\x2b\x2f\xee\xeb\xcb\xd3\x9a\xd5\xb6\x5d\xe4\xbe\xe6\x72\x1d\xdb\x2b\xf0\x30\xb6\x23\xf7\x72\x20\x26\x79\xfe\x31\xa4\x15\x8f\x04\xe5\x83\xd7\x60\xf6\x1c\xc4\x17\x7f\x65\xc4\x63\x03\x09\x56\x94\x1b\x31\x99\xdd\x8d\xcc\x72\xed\x12\x34\x63\x6d\x63\x29\x10\x9c\x18\x6f\x39\xdf\xfe\x99\xb4\xd3\x88\x6c\x8e\x87\x87\xb3\x0a\x0f\x61\xa9\x4f\x5a\x0f\xa9\xbf\x2e\x6f\xb1\x19\x35\x31\x31\x51\xcb\x74\x57\x67\x61\x8f\x1a\x95\xf8\x37\x50\x37\xfe\x1d\x41\xdb\xf0\x3b\xc2\xab\x9a\x8d\x92\xbb\x68\x5d\xb0\x62\x47\x48\x94\x24\x19\x02\x54\x0d\xa0\x48\x76\x04\x06\xad\x9d\xd5\xc2\xf4\x96\xd0\x41\xe7\x65\x34\x7e\x4b\x82\x32\x47\xb8\x1d\x0a\x6a\xe3\x74\xe9\x08\xed\xff\xf3\xfd\x75\xff\x30\x89\x9e\xdf\x69\x7e\x13\x09\xc2\xff\x47\xce\xe1\x3b\x27\x66\xa0\xfe\x27\x31\x0b\xf3\x8e\x60\x6c\xd9\x82\xa0\x8d\xa2\x89\xf7\x3f\x58\xef\x1b\x42\x47\xc7\x19\x0a\xf0\x44\xd9\x37\xb7\xce\x47\x2d\x51\x1c\xeb\x96\x8a\xe3\x05\x94\x49\x5c\xef\xa8\x7b\xa2\xb7\x68\x93\x45\xc3\x88\xb5\x97\xed\x28\x43\xc1\x69\x7c\xbf\x63\x06\x36\xcf\x68\x19\x83\xa5\x4b\xd3\x2b\xf2\x7b\x3d\x56\x6a\xcb\xa2\x89\x7f\xf1\x77\xab\x81\x1f\x6a\xfe\x2b\x78\x79\x37\xcc\x64\xd2\xcd\x52\xe6\x31\x27\xd0\x59\x5b\x17\xfb\x4a\x24\xf4\x62\x50\x04\x2f\x21\x2f\xc0\xdf\x8c\xb0\x97\x45\x15\x05\x77\xe4\x59\x40\xfd\xe7\xe8\xff\xf7\xda\xb6\x86\x3b\x24\xc3\x67\x06\x52\x6a\x0e\x99\xa3\xb2\xd9\xaa\x68\x3a\x00\x0b\x94\x2b\x9b\x4e\xfa\x12\xec\xfd\x72\xfa\x43\xde\xd5\x61\x31\x2a\x02\x40\x1c\x57\x4b\xda\x4f\xcf\xef\x6a\xb7\x53\xae\x88\x0d\x17\xc4\x52\xf2\xda\x7c\x9d\x89\x25\x74\x42\x83\xb5\x27\x1d\x27\x18\x7d\x1f\x03\x8c\x91\x04\xb3\x5f\x2e\x92\xa7\xaa\xdb\xd5\x89\x6e\xa2\x6b\xc2\xf5\x28\x1d\x18\x63\x0f\x02\xf3\x99\xfa\xe0\xf5\x62\xed\xa7\xfa\x70\xdc\xb6\x89\x7e\x70\xec\xd1\xbe\x5a\x98\x76\x3a\x51\x51\x68\xeb\xf9\xc2\xd3\x7a\x05\xdb\xc4\xc2\x18\x88\xf9\x17\xfd\x2d\x7b\x8d\xa8\xb8\xcb\xbf\x18\x0b\xb7\xa3\xcd\x75\x14\x10\xef\xa9\x8b\xec\x08\x66\x23\xa0\x28\xf1\x22\xf2\x2c\x0e\x8f\x60\x24\x00\x87\xe9\x4f\xa0\x0a\xfb\x1a\x68\x9c\x0d\xdb\xeb\xa7\x06\x0d\xa1\x0b\xcb\x74\xdc\x0b\x0b\x95\x14\xc2\x8d\xea\x0a\x37\xaa\x2b\x92\x92\xcd\x4c\xe7\x5c\x9d\x14\x5c\x68\xe3\x8e\x23\x74\x73\x8d\x7f\x7a\xac\xf6\xe8\x3d\x02\xda\xf1\x72\x20\x74\xcb\xb2\x1c\x9b\xb2\x6d\xd1\xcf\x81\xb3\x43\x90\x85\x49\xb2\x74\x6b\xab\xa2\x20\xfd\x75\xd1\x2f\xc6\xfc\x72\xfc\x2b\x10\x34\x3b\x86\x50\xcc\x11\xf8\x83\xc0\xa7\xff\x57\x24\x7f\xd3\x0d\x41\xfd\x56\xa4\x89\x1e\xad\x4c\x4e\x6e\xbc\x56\xca\xa5\x23\x97\xc7\xcd\x50\xf1\xe6\xe5\x1a\x3d\x12\x4e\xe5\xca\x80\x93\xfe\xf7\x6b\x4d\x9d\xcc\x71\x74\x3f\x94\x46\x5c\xcc\xef\x4f\xf3\xa2\x9b\x32\x68\xdc\x06\x38\x22\xcd\xf4\xf6\xc0\xd9\xa5\x60\xa3\xa3\x33\x47\x54\x8e\x04\xd0\x39\x89\xd4\xf5\xe1\x22\xf5\xdd\xe9\xbc\x18\xa1\x57\x41\xcc\x5a\xa9\xf7\xcd\xf4\xf1\xc8\x1b\xf0\xc9\x58\x82\x47\x7b\x40\x75\x1e\xaa\xd8\x44\x8e\xb0\x44\xec\xf4\xc8\xbe\xac\xa5\x61\x2d\x0f\x44\xf5\x1b\xeb\x39\x0d\xe4\x2d\xd0\xda\x00\x37\xf3\xb5\x1c\x91\xa2\x3b\xe9\x1c\xd7\x96\x05\xae\x7b\xdc\x0d\x3c\x19\xec\xb5\xec\x66\xe9\x4c\x04\x01\x76\x84\x90\x7b\xdd\xf5\x40\x6d\xd9\xaa\x3c\xad\xb2\x78\x81\x72\xcf\xc8\xf8\xc1\xf4\xb8\xf6\x16\x11\x17\xf9\xa7\x3b\x64\x8e\x7f\x96\x0b\x76\xd1\x33\x38\x88\x7c\xd3\x77\xe0\xa3\x46\x67\xa7\x6f\xeb\x78\x17\x95\x43\x3b\x1a\x9a\xce\x45\xdf\x2c\x79\x84\x3e\x6f\xe2\x6d\x61\x94\xfe\x0c\x1e\x93\x43\x40\x79\xa8\x58\x29\x38\x7e\x96\x02\x31\xc9\xe8\x8f\x86\x4e\xc5\x56\x33\x96\xf4\x1e\xae\xfa\x92\x48\xd0\x2c\x0d\x9b\xbb\xdd\x52\xdd\xca\x40\x34\x62\xbb\xea\x6c\xfe\x6a\x26\xa3\xec\x5a\xe1\x72\x9b\x6c\x2f\x68\xf1\x90\x85\x85\xea\xb5\xc5\xc4\xcd\xbe\xac\x51\x40\xaa\x6b\x7d\x7d\xab\x93\x2b\x6e\x30\xa5\x9c\xe9\xd1\x2b\x38\x03\x69\x96\x07\x9a\x77\x85\x71\x60\xa8\x17\xf1\x8c\x2f\x47\xcb\xe7\x51\x25\xbf\x21\x39\xfa\x2e\xb8\x54\xae\xca\x73\x5d\xe4\x4c\xcf\x87\xc2\xfc\x48\x5d\x50\x18\x70\x49\x97\xff\x85\x34\xb1\xf5\x29\x5d\xa9\xb3\x97\x01\xe6\x53\xe1\xbe\xac\x8f\x1e\xdc\x78\x77\xa0\xb2\x78\x70\xaa\x36\x1b\xc5\x31\x78\x1f\xec\xd8\x6c\x7a\x0f\x3b\x4f\x7b\x30\xc9\xc9\xb0\xf3\x39\x3d\xe2\x5b\xa5\x9f\xa7\x85\x85\x7b\x0e\x0f\x0e\x41\xd8\xe7\xf0\xa0\xd8\x9e\x4b\x03\x6a\x7e\xef\xa4\x27\x23\xac\x0a\x1a\xca\xab\x62\xc8\xf0\x4b\x58\x22\x6e\xbb\x1c\x28\xd0\x8e\xef\xaf\x75\x54\xf2\x4c\x9a\x44\x12\xe5\x29\x01\x83\x67\x07\x6a\x69\x8f\xd6\xa2\x4c\xe5\x23\x82\xee\x8c\x87\x43\x59\xc6\x20\x19\xc5\xbe\x89\xcd\xc3\x19\xd8\x18\xa2\x45\xf6\xd5\xf2\x34\x26\x1c\x7e\x2e\x99\x2d\xd9\x45\xe5\x9b\xa1\xd4\x2e\x26\xd0\x76\x12\x8a\x12\xf9\x2d\x12\x67\x38\xaf\xa3\x75\x31\x9c\x60\x69\xd8\xe2\xb9\x01\x86\xd4\xce\x0d\x07\xe1\xae\xba\xd7\xfb\xa7\x24\x2d\xdd\x8b\xb2\x7a\x5f\x59\xdc\xec\x46\x58\xe5\x53\xe8\xc3\x2a\xb1\xfd\xa4\x3c\x54\x2f\x10\x4d\x9b\xef\x4a\x6f\x7b\xc9\x29\x71\x55\x14\xca\x8f\xe5\x40\xed\x9f\xb3\x75\x7c\x33\x8c\x42\x64\x1f\xf5\x7f\x40\xfc\xec\x78\xfe\x8a\x23\x72\x7e\xc7\x67\x14\x75\x42\x0b\x0c\xb6\x4b\x3c\xd5\x2a\x01\x08\x60\x40\x4f\xf2\x96\xd9\xc1\x83\x3e\x19\xdb\xc8\xa2\x90\xa7\x9d\xd9\x3c\xa4\xc7\x3c\x1d\x77\x18\x99\xf0\x19\x9d\xc7\x6a\x5e\xe0\x0a\xcf\x49\x5c\xe1\x39\x01\x5c\x8b\x92\x30\xee\x35\xf5\x5d\x46\x93\x5b\xca\x6b\xfa\x53\xe0\xce\x5e\xe2\xa3\x6f\xe7\x50\x54\x1c\x17\xf5\x68\x5d\x24\x8c\xd7\x45\xfc\xf3\x0a\xbd\x33\x30\x2e\x3b\xc0\x7d\x25\x00\xa4\xee\x26\x10\xe3\x77\x97\x45\x73\x68\xd4\x54\xed\x54\xf2\x2c\x6d\x9a\x60\x60\x91\x01\x59\xd4\x2d\xe6\xb3\xa8\xe8\xe3\x55\x39\x25\xf2\x6c\xa7\x86\xe5\xff\x66\xd2\x4c\xe7\x45\xc6\x23\x8a\xa1\xa9\xc0\x3f\x82\xf8\xe1\x46\xe0\xd1\x5d\x17\xdd\x86\x35\xd3\xb0\xc8\xa2\x04\xa0\x64\x3b\x88\xc2\xe7\xe5\xb8\xcd\x0b\x56\xe6\xeb\xc3\xb0\xdb\xe9\xcc\x4c\x14\x46\xdc\x12\x03\x8f\x61\x3b\x69\x6c\xbe\x5e\xf4\xe9\xd0\x5c\x77\x22\x95\x24\x3d\x15\x57\xc4\x1c\x63\x16\x5a\xbe\x71\xbc\x32\xcd\x34\x49\x33\x29\x0f\xe7\x85\x3c\x9c\x17\xa9\x49\xcc\xac\x72\xbd\x63\xb6\xa5\x46\xb6\xda\x0c\x4e\xc7\xdc\x57\xcb\x55\x3c\x07\xfc\x23\xa7\x18\x03\x41\x1f\x7f\x7e\x08\x1a\x73\x6a\x1f\x86\x96\xe2\x10\xb0\x6f\xd9\x9f\xfb\xd8\xed\xb2\x7f\x0d\x1e\x14\x44\x82\x04\x95\xbf\x1d\xee\x3a\xdf\x0c\x34\x27\x1f\x1c\xdf\x5f\x8b\x28\x1d\x89\xc1\xa0\x53\x8e\x03\x85\x9e\xcb\x8e\xb0\xf5\xe2\x3d\x93\x66\x45\x2f\x01\x0d\xe5\x86\x75\x79\x6d\xb3\x2a\x7d\x06\xc9\xa6\x91\xba\x67\x3b\xfd\x52\xe9\xc7\x4e\x7c\x49\x14\x2b\x66\x74\xf3\x6e\xf3\x57\x8e\x99\xc0\x61\x0f\xca\x87\xeb\x95\x3d\x7b\xdc\x38\xae\xca\xc7\x3f\xe6\x61\xb5\xe6\x37\x10\x06\xf7\x27\xdb\x45\x75\x04\xb3\x31\x10\x72\xdf\x85\xc8\x94\x82\xd1\x47\xbf\xbb\xee\x23\x84\x5b\x12\x94\xbb\x36\xac\x05\x66\x3e\xca\x8b\x99\x1e\x64\x8c\x2b\x48\x7d\xd5\xa4\xbe\x11\x76\x87\x61\x61\x10\x0e\x43\x98\xf9\x5a\x56\x46\xb5\xce\x77\x7a\xff\xff\xee\xba\xe0\xd1\xe2\xc9\x6d\xc8\x1e\x5d\xc7\xeb\x40\x33\xdc\xa6\x84\x20\x7a\xcd\x77\xd6\x05\x2c\xf4\x38\x22\x2b\xcb\x66\xed\x41\xc2\x2f\x06\xa2\xc5\xff\x62\x5f\xd8\x1f\x36\xf2\x9d\xc6\x23\xc0\x12\xae\x49\x53\xb8\xa5\xee\x43\xcf\x67\x85\x37\xf3\x7a\xe0\xcf\xf3\xd1\xd2\xf7\xbd\x5f\x22\x2c\x3c\x8f\x8c\x40\xf4\x86\x2f\x5a\x2b\x3d\x99\xe0\xca\x60\xe5\x7e\x7a\xec\xfd\x94\x06\xc1\x61\x07\x45\x95\x05\xbe\xd3\xb7\xe0\xa7\xae\x10\x0a\x1e\xa9\xa2\x7f\x1b\x88\xe0\x68\x05\x89\x5c\x3c\xc4\x0d\xbc\x2a\x94\xe0\x2d\x02\xa2\xa3\x8c\xfb\x6e\xe0\x07\x07\xde\xa0\x9c\x30\xdc\xc6\x5b\x62\x20\x33\x17\x84\xed\xf8\x58\xbf\x69\x4b\x10\x8e\x3e\x2c\x26\xf2\x7f\x5f\x00\x98\x0f\xd5\xc5\x35\x29\x75\xaf\xd0\xd2\xf0\xd0\x52\xc2\xb5\xe1\x09\xbf\xc1\xa7\xc4\xcd\xbc\x36\xdb\x0c\x03\x79\x99\x70\xf7\x76\x88\x88\xa0\xb3\xe1\xe9\x3b\xd8\xe6\xf3\x94\x86\xc6\x27\x50\x1a\x87\x61\x58\x05\x23\x31\xaf\x83\xab\xce\x36\xa3\xbc\x50\x79\xa1\x8d\xe8\xd2\x5b\xc0\x11\xbc\x20\xba\x3f\x2f\x08\x54\x4a\x27\x4a\x34\x37\x4a\xc3\x72\xbe\xd4\x07\xb0\x0c\xc4\x94\x1a\x99\xa0\x6d\xea\x90\xaa\x45\x55\x0f\x6a\x38\x4a\xab\x6c\x01\x0e\x62\x86\xb3\xc0\x62\x45\x1d\x9d\xc3\x15\xb6\x16\xa8\xe2\x47\x15\x97\xa2\x2a\xba\xab\x2e\xc8\xb6\xd0\x94\x8b\x52\xc1\x49\x39\x3d\x4e\x77\x75\x56\xa4\x51\xa6\xfb\x28\x01\x45\x00\x2c\xda\xa5\x3a\x3a\x6b\x71\x6b\xb5\xa5\x9e\x16\x4c\xe0\x17\x44\xa5\xfb\x84\xc4\x09\x1c\xf3\x33\x63\x92\x56\x1c\xe5\x6d\xa2\x5d\x42\x42\x8c\x1b\xbe\x91\x48\xd8\x45\xdd\x80\x0c\xf2\xc7\xab\xb8\xfd\x73\xef\xf8\xea\xb0\xe1\x28\xb9\x56\xc4\xf5\x52\x11\x2d\xb5\x2b\x62\x30\xc9\x8a\x00\x48\xa9\xd9\x67\xd2\x51\x31\xc3\x1e\xed\x64\x38\x77\x9f\x87\x08\xb9\xe1\xaa\x2e\xbb\xc7\xf3\x81\xf9\x13\xa2\x45\x46\x75\x1a\x91\x9d\xd3\xf8\xb8\x4f\x03\xbb\x09\xaa\xb2\xca\xde\xee\xa1\x06\x8a\xa3\x76\x1d\x27\x04\x67\xb8\x4a\x79\x10\x44\xba\x18\x0b\x8e\xd0\xf4\x64\x29\x06\x26\xae\xc9\xa1\x08\x3b\x06\xa8\x46\x68\xcc\x59\x57\x3b\x2c\xa5\x1b\x7c\x65\x16\xd2\xe6\xe2\x06\xb8\xd9\xa6\xa7\x6a\xaa\x95\x31\x9d\xa6\xc8\xd1\x18\xa1\x75\x14\xb5\xbe\x63\xf3\xd6\x30\x24\x61\xac\x55\xe6\x5a\xe2\x70\xfe\x6e\x4b\xe6\xff\xdb\xa5\x27\x92\xee\xf4\x92\x28\x8c\xba\x2a\xae\xfa\x2a\xd3\x0d\xd2\x60\x16\x19\x67\x84\x0f\x8a\xf7\xed\x3e\x64\x69\x94\x16\x51\x58\xf1\x70\x4f\xb4\x3c\xf3\xb5\xf3\x8c\xba\x59\xda\xf4\x45\x58\x6e\x40\x0a\x7c\xfa\xed\xec\xb0\x71\x38\xb9\x71\x62\xbd\xbe\xbe\x22\xb8\x94\xaf\x0c\x83\xa8\x67\x3a\xd7\x2a\x0b\xdb\x3a\xab\x1a\x1d\xe9\x88\x27\x27\xc5\xc4\x6d\x1f\x68\xac\x09\xf8\x7e\x37\x8e\x5a\xed\x02\x72\xea\x7a\x95\xdc\x6c\x98\x13\xc1\x43\x5e\x07\xa9\x6e\x37\x8d\x12\x1f\x63\xd3\x9a\xfc\x4f\xef\xa1\x9e\x5f\x9c\xac\xef\x27\x8f\x8d\xd0\x69\xe1\xee\x45\x47\xed\xd7\xc9\xb8\x67\xd9\xa5\x0c\x3c\x25\xc4\x45\xc1\x9c\x97\xb7\x41\x09\x69\x4e\x1d\x4a\x11\x0c\xd0\xe2\x1b\x39\xdb\x45\x67\xbb\xcd\xbe\xc0\x3b\xfe\x00\x79\x01\xc8\xbb\x1f\x11\x08\x89\xf3\x30\xa7\x88\xa8\x98\x1b\x09\xbe\xc2\x56\x74\x94\x93\x40\xfd\xf2\xf7\x92\x6f\x62\x39\xb7\xc8\x60\xb9\x7a\xb1\xeb\xf9\xbd\x25\x21\x02\x47\x25\x23\xdb\xb5\x40\x00\x7e\x6e\x53\x05\xc2\xce\x50\x15\x6c\x15\x77\x11\xe4\x97\x7e\xfd\xd8\x6e\x54\x95\xe9\xf4\x8e\x3d\xbc\xb8\xd9\x87\x9b\x1e\xab\xa9\x26\xe5\x38\x6d\x98\x0c\xdb\xbe\x85\x96\x1a\xba\xe9\xd7\xe4\x21\xd8\x52\xf7\x6d\x11\x79\xaf\x11\xa6\x49\x91\x29\xeb\x62\xda\x59\x91\xbe\x27\xcf\xab\xef\x74\x66\x26\xd7\xc5\x76\x8f\x7b\x1d\x25\xf6\x63\x4b\x71\x55\x71\x23\xd4\x98\x74\x09\xd1\xff\xb5\x40\x90\x73\x61\xa0\x18\x1e\x70\x94\xba\x03\x6d\x13\xdf\xe6\x88\x73\x7c\xbf\x05\x4c\x75\xd2\x39\xce\xdc\x21\x6e\x7d\x45\x4c\x3e\x7c\x65\x20\xbb\x38\xf5\xe4\xbe\x5a\xdc\x6b\x2c\xa8\x64\x56\x91\x18\x39\xee\x30\xcf\x63\x7f\x73\x20\x50\x37\x8b\x98\xe7\x69\x18\x29\xc7\x75\x6a\x29\x48\x85\xb5\x3a\x2f\x29\x4e\x16\xd2\x8e\x9d\xd5\x6a\x1b\xe4\x3c\x28\x67\x70\x46\xb5\xd3\x6f\xb6\xa5\x95\x67\x1a\xd3\x61\xb5\xf3\x8d\x87\x0c\x52\x8d\x53\x9e\x23\xea\x98\xb5\x5c\xf4\x00\x2c\x83\xf5\x32\x84\x27\xf7\x07\xe2\x98\x34\xcc\x7b\xa5\x49\x65\x60\x12\x95\xb5\x90\x43\x92\x5b\x1d\x9d\xb9\x51\xdd\x78\x1f\x78\x4d\x7c\x2d\x6a\x29\xb9\x4e\x0a\x9d\x30\x13\x15\xfc\x36\xc0\x02\xf9\x7a\x71\x13\xc6\xec\xc0\xd8\xa4\xd9\xa1\xfe\xb9\x58\x82\xf8\xf7\x4a\xe9\x71\xc1\x3b\x90\xe1\xb0\x1c\x15\xd2\x8b\xd5\x59\xfe\x3d\x74\xf2\x10\x16\x5c\x27\x0f\xd9\xa1\x24\xf7\x5a\x64\xc9\x76\x9a\xbd\x8e\x9f\x79\x83\xbc\x13\xa6\x27\x2a\x7d\x37\x0e\xf7\x74\xc0\x68\x56\x16\x05\x5f\xc6\x3d\x70\xcf\x21\xac\xb7\x71\x3a\xa1\x29\xae\x94\x92\x1f\xe1\x18\xcc\x0d\x7c\xfa\x6f\x07\x95\xfd\x4f\xfa\x64\x9e\x67\xef\xbc\x01\xed\x02\xd3\xf0\x10\xda\x23\xa0\xa9\xee\xae\xa3\x7c\x8f\x38\x88\x6b\xd6\xd0\x09\x77\xd5\xbd\x7e\xb8\x05\x1f\x18\x38\xcc\x4b\x04\x92\xc3\x22\x23\xbd\x06\x23\x0b\x94\x2e\xd6\x8f\x47\xd7\x23\x73\xb0\xbd\x5e\x79\xe4\x11\x56\x00\xa7\xc8\xa1\x74\x40\x7b\x4f\xa1\x33\x5a\x27\xc7\x1c\x12\xb5\x75\xd1\x9b\xb5\xf7\x2d\x0a\x7e\xd5\xea\x40\x73\xfd\xde\xc9\x5a\x33\x8b\x66\x3c\x3b\x90\x25\x33\xa9\xb8\x21\xe1\xbf\x35\x24\xc1\x53\x4b\xb4\x26\x74\xcf\xc4\x04\xab\xe6\x1b\x7d\xb3\xc2\x02\x01\xf0\xbd\xec\xba\xde\x0e\xa9\x84\x41\x8d\x70\xa9\xce\xcb\x29\x8b\xe7\xfb\x08\xb3\xd3\x34\x26\x56\x37\x3b\xc1\x93\xfe\xd0\xf9\x7b\x8e\xd9\xf4\x9c\xa8\xb5\xff\x01\x7e\xd4\xfe\x83\xd9\xd9\x8d\x13\x81\x98\x11\xb0\x2e\xd2\xd9\x5b\xea\x62\x6e\xce\x2a\x0c\x28\x32\x3b\xa7\x03\xef\x1f\x5c\xc2\x4b\x59\xda\x00\x31\xc9\x4b\xeb\x0c\xc9\x39\xa8\xd0\x23\x92\x91\xe2\x78\xdf\xb8\x96\xe3\x62\xa0\xda\x91\x61\xc5\x8a\x6e\xaf\x61\x9c\x53\x13\xc7\x4b\x64\xc3\x3b\x78\x67\xbe\x11\x45\xe6\x43\xbd\xc3\x85\xa2\x01\xb0\xf4\x6e\x40\x22\x5f\x0a\x3c\x07\xde\xa5\x81\xba\xbe\xcd\x01\xce\xeb\x38\x0e\xd3\x0e\xce\x3c\x62\x86\x33\xb2\x14\x30\xd8\x6d\x4f\xe9\xcc\x76\x96\xf6\x5a\xed\xaa\x2f\x41\x60\x02\x97\x84\xe1\xd9\x4c\x80\x7f\xcc\x6e\x1a\xc7\x51\x62\xa9\x74\x11\x1c\x03\xf9\xc3\xd7\x81\x54\x0b\xdd\xb4\xd8\x41\xdb\xc7\x11\x1d\x2d\x1a\x90\xb3\x68\xe3\x02\x84\x82\xc1\x70\x38\xcb\x18\xd1\x03\xc9\xfe\x5c\xd0\x1f\x0f\x7e\xf4\x20\x97\x06\x4e\x20\xd5\x66\xe7\x73\x0d\xd1\xed\xaa\x39\x97\x86\xca\x75\xfd\xd9\x2e\xbb\xbe\x61\x6a\x0f\x89\xee\xe3\x39\x9d\xe9\xa8\x95\x14\xe8\x4c\x41\xf5\xe6\x45\x3c\x17\xdf\x88\x60\x6b\x56\x27\x45\x2f\x9c\x5d\xc0\x77\x23\xf6\xbc\x29\x3b\x13\x6e\x0e\xab\x91\xe6\xdd\xb4\x80\xbf\xe6\x7b\x77\x2e\x88\x3a\xf7\x85\x21\xe9\xfb\x6e\x7b\x21\x8f\xc2\x88\xe9\x76\xe1\x9d\xbe\x22\x9a\x94\x5e\xf1\x9e\x6a\x9a\xd1\x9c\xbd\xbe\x39\x2d\xc2\xb0\x9c\x77\x6e\x43\x23\xd5\xce\x0b\x44\xe1\xf2\x9a\x70\x2f\x89\x93\x76\x6a\xe3\xee\xfa\x66\x07\xe0\xc0\xd8\x54\x2d\x4a\x8a\x2c\x6d\xf6\xc2\x7e\xee\xe5\x73\xf4\x40\x16\x11\xe9\x97\xa9\x13\x86\x2a\xa3\x7e\x6e\x9f\xc0\x5b\x96\xc0\xd2\x65\xf7\x4c\xf9\x42\x5e\xe8\x0e\xd7\x50\x1c\x8a\xde\x25\x77\x90\xb6\xec\xe3\x58\x81\xff\xfd\x7a\xe0\x21\x83\x61\x9a\x84\x99\x66\x28\x23\x84\x09\x64\x7b\x7c\xdd\x47\xeb\x95\x14\xd6\x06\x0f\xad\xa7\x3e\x20\x7a\x7f\x7a\x71\xa1\x92\x22\x1f\x15\xc0\xb7\xcb\x7d\x04\xa5\xb7\x03\x61\x99\x51\x50\x41\x1c\xd6\x4f\x67\xe2\xb2\x9a\x33\x69\xd6\xeb\x88\xac\x23\x32\x1d\x76\x66\xa5\x18\x62\x1b\xa5\x71\xda\x8a\x42\x15\x57\xe5\x50\xe1\xe3\x22\x9d\xc6\x3a\x14\x4f\xf5\x7f\xca\xd1\xf5\x69\x47\x37\xd5\x42\xc5\xf3\x38\x3d\x27\x86\xa9\x3c\x27\x50\x2a\x1d\x9d\xe7\x91\xd2\x89\x20\xf9\xee\x0f\xd9\x7d\xd9\xb2\xdd\x4b\x9a\x99\xc6\xa0\x7e\xa8\xe7\x2d\x64\x10\x5d\xce\xcf\x58\x2b\x64\x6c\x30\xfe\x06\xcf\xb5\x42\xc6\x91\xff\xbb\x88\x76\x2d\xde\x42\xb6\xca\xbd\x29\xe0\x9b\x6f\x8a\x04\x6f\x64\xfc\x9a\x3c\x9a\xd3\xdb\xb0\x14\x40\x67\x9c\x86\xaf\xc2\xd9\x1f\x5a\x79\xc9\x65\x64\x3b\x40\x68\x7b\x60\x77\xef\x60\xc1\x78\xfc\x8e\xc3\xf7\x77\x74\x33\x4a\x1b\x2a\x09\xd1\xb4\x05\x1b\xc9\xc5\x2c\xbe\x09\xee\x76\x3e\x5c\xaf\x4d\x51\x0e\x2a\x35\x80\x01\xf2\xb5\x9f\x29\x96\x45\xaa\x03\x01\x83\x08\x9f\xc4\x97\xf1\x8d\x58\x54\xc9\x1d\xca\x44\x6d\x22\xcb\x2f\x42\x51\x3b\x42\x9e\xbe\xd4\xcd\x06\x16\xf3\xe4\xc5\xfc\xa3\x8e\xca\x8a\xaa\x4f\xe6\xc2\x07\x84\x13\xb6\x4e\x31\x8e\xa5\xdf\x1f\x52\xe5\x8d\x53\x6a\xd0\x3b\x30\x66\x0b\x34\x81\xd0\xe1\xe7\x87\xa0\x7b\xa7\x6a\x85\xca\x9a\xe0\x78\x04\xc2\x62\x3d\xf0\xdc\x6a\x3c\xb1\xde\x32\xe3\x0d\x41\x6a\xd2\x28\xd8\xac\xd3\x87\x44\x3c\x27\x07\x08\x9f\x1b\x98\xe5\x39\x31\x51\xeb\x1c\x46\xdc\x6b\x19\x2e\x21\x17\xd6\xa1\x7c\x50\x1c\x60\xfd\xc9\x1e\xcf\x99\x9d\x1e\xe3\xa8\x6f\x2d\x10\x21\xe0\xda\x40\x57\x09\xa5\xe1\x4d\xa8\xa3\x9b\x11\x19\x3b\xd7\x28\x57\xad\xfb\x15\x1f\x74\xbc\x28\x98\x6f\x88\x0e\x54\x97\xd9\x32\x2f\x63\xc7\xad\xed\xf6\x55\x38\x13\xe8\xd9\x30\xd1\x52\xf7\xf8\xe0\x62\x59\x0e\xf8\xdb\x56\xff\x4e\x0e\x80\x71\xdb\x62\x9d\xe7\x94\x3d\x40\x90\x77\x96\x8e\x11\x74\x04\x06\x6b\xe1\xc7\xaf\x0c\x0e\x95\x78\x72\x5f\x4d\x45\x59\x98\xa9\x19\x18\x26\xcb\xa0\x40\x0b\xc4\x37\x22\xe5\x50\xb4\x31\x1c\xd4\x53\xf4\x9d\x13\x14\x7d\xe7\x06\x60\x03\x7b\x27\x6b\xad\x5e\x5e\xa4\x82\x17\xe9\x52\x20\x38\x14\x2f\xf9\xac\x4c\x1a\x47\x85\xd0\x76\xb0\xee\xbf\x29\x82\xaa\x35\x09\x49\x59\x15\xda\xce\x52\x5e\x79\x90\xe8\x16\x6a\xf0\xe7\xeb\x81\x95\xdb\x4b\x33\xfc\x0b\xea\x46\x7a\xc6\x79\xc9\x30\x86\xb7\x4b\xdf\xf9\x74\xbb\xcf\x9d\x89\x5a\xc9\x83\xe4\x9d\xc1\xb7\x67\x28\x34\x1e\x0d\x2a\x13\xad\x7d\x6f\x09\x9e\x95\x15\x41\x84\x7c\x1d\x5e\x0b\xe2\xa2\x37\x65\xa9\x89\xb9\xb7\xed\x24\x56\xd1\x3e\xf5\x2c\x62\x16\xfe\x0c\x22\x1b\x7c\xdb\xba\xe0\x47\x7f\x81\x52\x1d\x08\xd9\x8e\x53\xf0\x85\xb3\x7e\x37\x35\xbc\x6d\xf0\x11\x44\x36\xee\x2b\xb2\x4f\x09\xb8\x38\xa4\x78\xff\x12\xde\x16\x6a\xa8\x5f\x36\xde\x91\xe7\x6a\xe8\xf4\x12\x1a\x1e\x5b\xf5\xee\xca\x35\x31\xf7\x89\x61\x12\x50\x2a\xaf\x09\xc7\x2a\xd3\x89\x8a\xf2\x5c\x25\xa1\x1e\x21\xae\x1c\xac\x16\x52\xe8\x88\x65\xae\xc2\x9b\x77\xe0\xb9\xbd\x93\x2e\x74\xbb\x4f\xe0\x8f\x7b\x59\xd8\x1e\x85\x60\x40\xac\x17\xcb\x3e\x43\x6b\x7e\x5f\x36\x8c\xe1\xd0\x9c\xc2\xcb\x5a\x8f\x62\x87\x75\x81\x46\xab\xfb\xfe\xf1\x13\x9e\xa8\x60\xd2\x37\x6e\xf8\x7e\x48\x54\x70\x5c\x01\xc2\x7c\x8f\xed\xf4\x18\xc2\x80\x6f\xbc\xf0\x11\xdf\x11\x70\x9b\x8e\x31\x82\x85\x1d\x75\x6f\xb0\xcf\x50\xf5\xcc\xe2\x46\xbd\xf3\x92\x6b\x95\xa7\x89\x8a\x29\xa5\x8b\x45\x65\x7a\x13\x2e\x21\xe3\x45\x98\x88\x52\xb0\x95\xde\x90\x54\x5f\xc7\xb0\x0e\xa8\xa6\xac\x0e\xc1\x38\xe5\xb3\x91\x9d\x38\x63\xd9\xe0\xfa\x68\xe2\x76\x0b\x3a\xce\xa6\xb5\xcd\xff\x2f\x63\xef\xfe\x23\x49\x96\x9d\x87\x75\x67\x55\xf5\x63\xba\xe7\x3d\xbb\x5a\x49\x90\x91\x2b\x11\x5e\xc9\x5e\x0c\x40\xd8\x90\x05\x02\x46\x24\xab\x6b\x77\x76\x1a\x9c\x9a\x72\x77\xb3\x87\x1a\xc0\xc0\xdc\x8c\xbc\x95\x19\x5b\x91\x11\x39\xf1\xa8\x9a\x9a\x3f\xc0\x30\x04\x83\xb0\x01\xc2\x06\x2c\xd9\x02\x68\x89\x26\x69\x9a\xe6\x4b\xa4\xac\xe5\x6e\xd6\x2c\xc9\xd5\x92\xdc\x5d\xce\xcc\xce\xfb\xb5\x3d\xfd\x7e\x57\xbf\xdf\x5d\x6d\xc4\xf9\xce\xb9\xf7\x44\x47\x8c\xac\x9f\x26\x62\xba\x32\x33\x1e\xf7\x71\xce\x77\xbe\xf3\x7d\xcf\x31\x40\xf8\xb6\x6a\x4e\x7f\x3b\x68\x59\x33\xc3\x34\x19\xc6\xe9\xd8\xc2\x6b\xc3\xc1\xce\x08\x72\x65\xd2\x38\x0e\x42\x52\xd8\x38\x9d\x10\x4b\x8e\x9f\x38\xa8\x49\xce\x1b\xcc\x55\xb6\xb8\x89\x18\xdb\x3c\xf3\x7f\x81\x37\xdd\x6b\x5d\x6f\x62\xd1\x69\x46\xfd\xe0\xbc\x22\x7f\x9e\x6f\xb6\x21\xbd\x78\xb0\x6b\x5f\x2d\x4d\x0c\x7a\x2f\xa2\x38\x18\xc5\x69\x21\x7f\x3c\xa1\xfb\x3a\xc4\x8a\xc6\x51\x6c\xb2\x47\xab\x97\x2e\x49\x31\xbd\x0b\x5c\xe7\x36\x54\x4c\xf8\x64\x83\x26\xb8\x48\x07\xd3\x2f\x61\xe8\xde\x05\x64\xe9\x8c\xb1\x1d\xa2\x7f\x25\x50\xee\xc2\x4c\x16\x44\xc9\x0c\xe2\x25\x20\xdc\xec\xea\x79\xbc\x75\x93\xaa\x5c\x58\x83\x6e\x4f\x55\x4c\x7a\xb1\x96\x85\x27\x76\xed\x51\xdf\x0e\xfa\x33\x0e\x65\x95\x9c\xd9\x73\x4c\xa7\xbc\xa7\xe2\x7a\x38\x18\xa0\x08\xc5\xdc\x32\x86\xf0\xf1\x6e\xc0\x69\xbc\x87\xf1\xc7\x0a\xa9\xa0\x40\x48\x17\x05\xdd\x0d\x72\xa9\xb9\x8d\xea\x42\xa5\x5d\x5d\x79\x38\x5e\xad\xb5\x14\xaa\x76\x95\xd8\x24\x76\x96\x92\xff\x4b\xd5\x23\xda\xa2\x65\x75\xeb\x12\x7a\x9d\x2f\x05\xcf\x28\xd5\x00\x78\x4b\xe7\x45\x3e\xe3\x6f\xf2\x26\x9e\x38\xe2\xc1\x9f\xe1\xd1\x48\xd0\xda\x94\xea\x3d\xd8\x5d\x36\xa1\xc5\x70\xe0\x7a\xb4\x32\x94\xe0\x02\x06\x02\xb9\x33\x5a\xd8\xed\xd9\xf0\xd9\xd1\xb3\xe8\x99\x56\xd6\x75\xde\xe7\x4a\x92\x0a\x92\xa4\x49\xc2\x42\x9c\x49\xb8\x99\x46\xa9\x69\xbf\xe2\x66\x49\x66\xab\xfc\x43\xec\xc9\x50\x77\xf9\x12\x46\x16\x06\xf4\x9e\x0d\x5f\x0f\x7f\xe0\x1a\x89\xf2\x2a\x1d\xcc\x61\x23\x2c\xb0\x0c\xde\xb3\x73\xa4\xf4\x4f\xfd\xfd\xa9\xda\x56\x7f\xa2\xe8\x38\x93\x2c\x5d\xb5\x73\x75\x27\x08\x47\x57\x7a\x84\xa6\x88\xac\xbf\x3e\x04\xb8\xa8\xd1\x75\xdd\xe3\x39\x88\x72\x6e\x41\x98\xf1\x45\x07\xa4\x4b\xc0\x04\xae\x62\xe3\xc3\xd7\xfc\xae\x2a\xb2\x2d\xdb\xb8\x20\xf7\x30\x6c\x83\x50\xd8\xc6\x67\x3a\x34\xfe\x5d\x37\xae\x13\xac\xf8\x5f\x5a\x7a\x8b\x81\x34\x6d\xeb\xd1\x84\x63\x90\x5f\xa5\xab\x5e\x8f\xc8\xe9\x61\xbd\xa5\xf5\xb0\xde\xd2\x41\x3b\x89\xc1\xe7\xb3\xfe\xa2\x4e\x07\x5a\xf0\x63\xea\x6b\x76\xa7\x71\x25\xa2\x04\xd2\xa6\x59\x32\x5e\x47\xab\x66\xf5\x4a\x9c\x86\x42\xf5\xd4\x45\x36\xe1\xe1\xf0\x97\x28\xbb\x33\xd5\x9d\x03\xc6\xbf\xad\x18\xcd\x58\x44\x25\xbe\x7f\x42\x49\x08\xae\xda\xa4\xb4\x7b\x94\x74\xd5\x39\xd5\xb5\x72\x8e\x10\x32\x47\x8a\x76\xbb\xd0\x55\x14\xd8\x59\xe7\x61\xea\x8d\x64\xae\x06\xbe\xeb\xe1\x01\x16\x31\x00\x2b\x1f\xe0\x35\x2a\x65\x08\xd9\x5d\x8f\x50\xf7\xc0\x71\xd7\x20\x57\x58\xb6\xca\x42\xcc\x71\x91\xd6\x2f\xd7\xfb\xe9\xe4\x6f\xff\x95\x17\x94\x4b\xb3\x65\x0b\xe7\xab\x97\x39\x41\x7a\x8f\xfe\x90\x8f\x95\xa1\x68\x58\x66\x19\x45\xfd\x8f\xf8\x06\xba\xb3\x08\xc0\x38\xd4\xc0\x95\xb1\x49\x0f\xdd\x3d\xc2\xfa\x5b\x58\x84\x44\x30\x82\x16\x44\x89\x3f\x7d\x2c\x3a\x4b\x83\x10\x31\xec\x55\x04\x69\x2e\x84\x39\x30\xcf\x3b\xfc\xbb\x2e\x1f\x0c\x47\x76\x99\x09\x71\xf8\xc5\x23\x58\x85\x50\xb8\xb9\xa5\x78\x74\x9b\xad\xa2\x4e\xf9\xab\xa5\x71\xad\xea\xcc\xf6\x57\x4e\x02\x9b\x8d\x6d\xed\x85\x85\xae\x7d\xcd\x8e\x27\xd4\x39\xe5\xd6\x4b\x35\xa7\xa2\x6c\xfc\x18\xbd\x28\xa1\x7b\x57\xf7\x03\x84\x14\x0e\x0a\x58\xec\x99\x39\x8f\x7b\x03\xb7\x19\x3b\xc2\xde\x0d\x65\x97\xc1\x70\x3c\x56\xcb\xb7\x28\x88\x42\x10\xd7\x21\x00\x9c\xa3\x5c\xba\x60\xec\x14\x3b\x89\x07\x8b\x9f\x78\x07\x8b\x91\x52\x45\x7f\xb9\xae\x4d\x83\x36\xdf\xe3\x2d\xcc\xf5\xe7\xaa\x7c\xab\x2c\x5c\x91\x08\xb8\xd2\x5d\x6c\x50\x7c\x32\xdd\xcd\x7f\x9e\xa4\x8f\x56\x17\x80\x30\xf8\xef\xd2\xfb\xc3\x1e\xc6\x34\xe8\x9a\xc3\x12\xcd\x84\xef\x3e\xb1\xa1\xe5\x4b\x28\x76\xc3\xeb\xff\x0a\xad\x3b\x34\x13\xfe\xe4\x3f\xa3\x7b\xc4\x53\xd9\xa5\x50\x7a\x8a\xfb\xb6\xb8\x69\x0f\xbf\xb4\x45\x50\x88\x12\xbb\x15\xf5\x90\xbb\x4a\x61\xd7\xdb\x28\x83\x53\x76\x5e\x09\x60\xd4\x1b\xc1\xf2\x32\xdf\xa5\x63\x62\xb4\xd8\x88\xeb\x88\xaf\x8b\x7e\x3c\x55\x7c\xb5\x77\xa6\xfe\x12\x3f\x0b\x14\xb1\xe6\x0a\xde\x03\xf7\xea\x4d\x55\x1b\xcf\xe7\x0a\x5b\xa0\x9d\x05\x4f\x1b\x2b\x35\x76\x61\x39\x51\xfa\x4a\x45\x16\x25\x51\xb1\x3e\x43\x0b\x08\xb8\x88\x27\x68\x68\x00\x24\xf8\x53\x3c\x75\x21\x32\xb5\xb8\xe1\x65\x65\xb2\x93\x86\xa8\x32\x81\x94\x6a\xfe\x7b\xd8\xd2\x9d\xca\xa5\xeb\x3a\xbf\x82\xc7\x8a\x91\x7c\x6a\xea\x99\x10\x37\x55\xc2\xb0\x5b\x09\xcf\x47\x49\x68\x93\x6a\x33\xce\xe7\x14\x5c\x87\x14\x05\xd1\xdb\xa7\x4a\x07\xef\x9c\x52\xc2\x3a\xae\x4c\x5e\x2e\x37\x92\x82\x03\x4b\xdd\x65\x51\x91\xc3\xeb\x79\x33\xf0\x89\xc0\x9b\xaa\xf1\xc8\xc4\x71\x44\x29\x52\xf5\xd5\xaa\xc3\xff\xa0\x6b\x7e\xf7\xb2\xf5\x3c\x56\xf9\x1f\x02\x4f\xbe\x19\x44\x79\x51\x66\x7d\x16\x38\xdc\xa2\x1c\x61\xeb\x88\x7a\x71\xab\x69\x61\xf3\x9d\x33\xde\xea\x85\xab\xe5\x08\x24\xd1\x6d\x88\xd5\xe4\x63\x5a\x0b\xf8\xff\x4f\x15\xaf\xf9\x03\x0e\x22\xb0\x65\x7c\xac\x02\xe3\xeb\x6d\xe2\xb0\xd0\x37\x56\x5d\x2b\x9f\x68\x7b\xfa\x4f\xda\xe8\xe1\x96\xba\xe5\xd7\x89\x89\x8a\x1b\xbe\x83\x30\xd2\x55\xb5\x95\x3e\x55\x4b\xec\x9f\x17\xd6\x8c\x15\xf5\x8f\x21\x7f\xc9\xe2\xfc\xfe\x60\xb2\x71\x5e\x64\x54\xcc\x75\x49\x9b\xb8\x79\x01\x75\x3a\x1a\x34\xf3\x2f\xec\x10\x47\xd5\xb6\x1a\x47\x5e\x54\xb2\x4d\x18\x53\x2c\xdd\xf3\x95\x65\xd5\x1b\x75\x5e\x8b\x24\x9e\x0f\x6a\xee\x66\x69\x94\x14\x63\x9b\x14\x2c\x85\x81\x81\x8c\x6c\x9b\xb7\x6a\x7a\x08\x08\xb0\x3e\x6d\xec\x16\x82\x0a\xa5\xf1\x00\x00\x19\x46\x3f\x7c\xe0\xf9\xd8\x69\x29\xaf\x45\x31\x70\x3b\xac\x5e\xc0\x14\x44\x88\x4d\x55\x3f\x36\x6b\xe5\x5e\x93\x4d\x76\x50\x99\xd2\xad\x8b\x8e\x44\xc0\xea\xbc\x58\xd4\xfe\x22\xf0\x80\xcc\x4f\xe9\xab\x19\x2c\x51\x4f\xe8\x1d\x55\x80\x2b\x93\xa8\xc8\xd1\x77\x2a\xa6\x42\xaa\x93\x18\xba\xed\x98\x3d\xd0\x6a\x42\x54\xc1\x5a\x4d\x08\xfb\xee\xa8\xbd\x07\x7a\x17\xae\xd8\x58\x6d\xd1\x22\xf2\xe2\xbd\xb7\xaf\x6b\xc1\x97\x13\x2a\x23\x2f\x32\x6b\xf2\x32\x5b\xdf\xa3\x9a\x3e\xb6\xb3\xf7\x14\x76\xa7\xa3\x81\xf7\x9f\xe0\x7e\x40\x41\xe5\xfd\x2a\xff\x33\x9a\xbb\xfc\x47\x81\x6a\x1c\xde\x41\xa8\x00\xf6\xff\xdf\x44\x53\x0f\x66\xdf\x1f\x06\x5e\xb0\x61\x43\xd3\xba\xae\xd7\x5b\xd6\xad\x41\x1c\x84\xdd\x91\xe3\x09\x3e\x51\x0a\x95\xab\x24\x69\x78\x60\xde\xcd\x81\xea\x7a\x64\x72\x38\xd5\x78\xbb\x1c\x15\x9e\x1c\x84\x08\xff\xac\xd2\xf2\xb8\x57\x8b\x50\x3c\x01\x2b\xcc\xec\x20\xaa\x42\xe1\xdd\x78\x32\x02\x3d\x78\x0c\xed\xba\x16\x16\x78\x17\x4b\x0e\x98\x6f\x6c\xc5\x85\xb5\xf4\x77\x68\x75\xc6\xa0\xbe\x1a\x28\xc8\x18\x96\x4f\x78\x02\x10\x16\xc0\xf1\x83\x40\xa6\x56\x91\xad\x13\x09\x06\xc4\xdd\xaf\x50\x5e\xe2\xf4\x3f\x64\x1d\xf9\xec\xa9\x0d\xe5\x30\xf9\xa0\x16\x30\xab\xde\x7d\x9e\x98\xc2\x2f\xf1\x63\x93\xe8\x8a\x73\xde\x60\x96\x77\x6f\x67\xe3\xe7\x58\x7f\xa0\xd4\x48\x69\x54\xdd\xe1\xbf\xf0\x1a\x9f\x66\x30\xb0\x7d\x14\xcd\x31\x18\x40\x23\xe1\x63\xe5\x89\xbb\x1c\xc5\xe3\x59\x05\x33\x72\x9f\x0a\x9f\x28\xfb\x99\x9f\x22\x4c\xe3\x93\x96\x2c\xe3\xb9\xee\x20\x4a\x12\x9b\x91\x58\x29\xd2\xc5\x0b\xaa\xc2\x76\x41\x81\x6d\xa6\x9f\x9a\x0c\x0e\x63\x4e\x16\xd9\xe5\xeb\xb7\x1a\x0b\xfd\xf3\x8b\x5d\x9b\xa0\x96\xec\x1e\x3c\xa8\x30\x4e\x1e\x53\xfb\xb9\xb4\xf0\x5b\xe2\x68\x1c\x15\x30\xb2\x72\xf2\x6b\xd5\x3d\x4b\xe5\x52\x09\xc0\xfd\x99\x8a\x2f\xfa\x26\x59\xb1\x59\xbe\x57\x59\x8e\x6f\x4c\xbd\x59\xea\x31\x7c\x89\xdc\x5f\x35\x42\xb8\xec\x03\xb4\x55\x3f\x04\x41\xcd\x6b\x0e\x70\x33\xde\x04\xfc\xb6\xbe\x06\xd6\x60\xe5\x66\x52\xde\x33\x9c\xae\x8b\x27\xcf\x9c\x53\xbb\xf3\xab\xa5\x89\xa3\xe5\x75\xd7\xa1\x80\xbc\xed\x82\x12\xd0\xbf\xa0\x68\xfd\x79\x91\x99\x28\x11\xea\x40\xab\xc1\x81\x67\xd3\xfd\x57\xff\xe4\xbf\xec\x54\xef\x87\x9f\x40\x50\x7b\x1c\x3e\xe0\xcf\x47\x11\x24\xa1\xa5\x95\x84\xfe\x4e\x7a\x49\x1c\xdd\x6f\xb9\xb0\xc9\x9c\xda\xf2\x21\x6b\x83\x05\x0f\xa9\x25\x3e\xf2\x68\xaf\xf3\x4b\x07\xdd\x2a\x55\xdd\x06\xb0\xc9\x6d\x1b\xaa\x5e\x68\xb2\x22\xb6\x58\x7d\x44\xf6\x84\xbe\x9a\x4f\x54\xf3\xc1\x38\xe1\x02\xab\xb8\x35\xa9\xd2\xd9\x05\x65\xcd\x86\x00\x40\xd1\x41\x16\xdc\x76\xe5\x0b\x8b\x85\xcd\xb2\xe8\xf5\xd7\x23\xfa\x61\x91\xca\xad\x6e\x83\x8f\x1b\x3d\x66\x0b\x87\xba\xe9\x00\xbe\x49\x68\x5d\x3b\x87\xfc\x5b\xd4\x93\x3d\xbb\xe5\x66\x0d\x94\x4e\xa3\xd0\x92\x34\x01\xe2\xc4\xcf\x03\xa5\xd7\x7a\x6e\xea\x37\x3c\xfc\x3a\xc2\x8a\xb7\x95\x68\xca\x1d\xdd\x25\x74\x8e\xd8\xe7\x80\xde\x40\x09\xc2\x36\x76\x09\x2f\x1e\x9b\xc3\xb1\x46\x01\x67\xdf\x3e\xee\x69\x8c\x84\xec\xa0\xba\x15\x25\x7c\xf9\x97\x6d\x5e\x51\xf6\xb5\xa8\x98\xab\x46\x0e\xd0\xd7\x3f\xd6\xe6\x25\x70\x69\x42\x04\xf6\x58\x6f\xfb\xcf\x39\x97\x9d\x8e\x93\x5d\x3a\xe2\x00\xad\xdc\x16\x45\x4c\x7e\x2e\xd2\x06\x59\x53\x8e\x61\x8c\xa8\x59\x18\x17\x41\x62\x55\xc3\x37\x85\x1d\x92\x20\xd7\x4b\x5a\xaa\xfe\x79\x69\x4b\x6a\xc2\xb7\x87\xe7\xbb\xab\x36\x89\x42\xa6\x24\x62\x03\xb9\xa0\x31\xa8\x0b\xce\xf9\x6b\x92\xaf\x87\xa3\x28\xcc\x3b\x35\x41\x58\x9a\xe6\x22\x15\xeb\x39\x02\x66\x68\x93\x70\x7d\x6f\xc7\x69\x34\x6f\xdb\x50\x4a\x21\x27\x35\xa7\xf9\x44\xbd\x57\x9e\xbe\x1d\x90\x14\xf7\x36\xba\x2e\xfa\xc3\xf3\xae\x42\x4a\x63\x17\x09\xf3\x09\x6c\xff\x5a\x2f\x46\x14\x4e\x6b\xcd\xe3\xd5\xcb\x95\x26\x5e\x1f\xc9\x66\x65\xdf\x26\x03\x83\xc6\xd0\xe7\xf8\x93\x70\x82\xe3\xe3\x06\x99\xf3\xf0\x7c\x4d\x80\x5b\x79\xeb\xd7\x1a\x5e\x37\x5b\xe8\xd9\x07\x99\x25\xd6\x51\x1d\xa0\xdc\x85\xca\x27\x2d\x65\x87\x38\x5a\xb1\xdc\x24\xcd\xa5\x30\xa5\xe3\xcb\xda\xb2\x88\x85\x37\x1a\x34\xa7\x03\xf3\xdd\x89\xc9\x0a\xa2\x79\xc3\x3f\x69\x71\x71\x8b\xbc\x6f\xb6\x2e\xb9\x65\xab\x9f\x95\x09\xba\xea\x04\xa8\xa2\xe7\x2e\x18\xd4\xc3\x57\xb4\x70\xa8\x3b\x48\xcb\x7e\x01\xde\x23\xfe\x0a\x6b\x31\x7a\xa7\xb6\x29\x09\xa2\xdb\x94\x42\x4a\xf3\xfc\xc3\x55\x0f\x89\xb6\x89\xb5\x9b\xc6\x14\xe2\x23\x0e\xf9\x44\xf7\x19\x7e\x12\xd4\x71\xd0\x68\x12\x47\x89\x25\x67\x6c\xcc\xcf\x8e\xee\x3d\x62\x5d\x0e\xe6\x38\x60\x51\x11\xc2\x43\xf5\x0c\x45\x51\xcd\xf7\x9e\xb0\xa6\x05\x48\xe6\xff\xef\xd4\xd3\xb5\x8f\xd6\x09\x59\x36\x7f\xc4\xa7\xa0\xbf\x17\xa8\x0e\x58\x26\xe9\x03\x33\xa9\x15\x5a\xbf\x47\xbb\x3f\x88\x57\x1c\x65\x3a\xce\x4c\xf5\xa3\x00\x74\x3e\xc2\x35\xbb\x7d\xcd\xf9\x75\x5c\x25\x25\x6f\x41\x32\x95\x27\xe0\x88\xdc\x6c\xe8\xa5\x69\xd5\x4b\x3e\x6e\x33\x66\xb2\xaf\x4d\x8c\xef\xa8\x13\xdc\x92\x1e\x9c\x64\x46\xad\xea\x94\x99\x56\xd4\x02\x56\x20\x80\xa0\x2a\x55\xa6\xe1\x8a\x5d\xb6\x71\x6c\xb3\x19\xcf\x41\xb9\xa1\xb4\x98\xb8\x1c\x8f\x65\xfc\xa3\xc6\x30\x5f\x3a\xb0\xd4\x4d\x27\xd5\xee\xe9\xf7\x31\xc0\x98\x4e\x7a\xa5\x7a\xc2\x6c\x76\x49\x57\x01\x54\xed\x4c\xa0\x44\x8d\x7f\xb3\xcd\x3b\x90\x68\x63\xb3\xd5\xc0\xdf\xc0\xea\x82\xc8\xea\xb4\xee\x51\xba\xa0\xac\x01\x6f\x05\x8f\xab\x10\x32\x19\x56\xb7\x74\x78\xde\xe9\xdd\xfb\x7d\x4e\x17\xbb\x3f\x9f\xee\x11\x5a\xf0\xe2\xe2\xd2\x57\x55\x03\xc7\x03\x24\x4f\x78\x66\xac\x38\x42\xaf\x69\xf1\x49\x62\x9c\xb3\x69\x10\x11\xf4\x10\x04\x7f\xa8\xb9\xfb\x6f\x4e\x3b\xdf\xf8\x15\x6f\x8c\xf2\xc2\x82\xb3\xb1\xa0\x21\xc3\xb5\xb3\xa9\x52\x47\xbb\x85\x05\x11\xfb\xcc\x2d\x9d\xc2\x5f\x51\xcd\x77\x6c\x9a\x87\x4d\x6a\x06\x14\x5e\xed\x2b\x2b\xee\x08\xd5\xb6\xca\xf9\xed\x74\xfb\xcf\xf1\x4c\x02\xbe\x83\xcd\x6e\x0e\x34\x63\x00\x5f\x6f\xe8\x5a\xf2\x69\xac\xec\x02\x5e\x51\x50\xc0\xd8\x0f\xab\xc4\x02\x9a\x82\x27\x33\x92\x9f\x2b\x41\xe7\x95\x57\xb6\x2e\x29\xa3\x99\x77\x55\x55\xfb\x22\xc7\x8b\xa2\x3e\xd5\xf9\xda\xd7\x98\xa4\xc3\x34\x48\x2c\x8a\x8f\x11\xa6\xc8\xdb\x83\x72\x79\xba\xaa\x85\x89\x92\x30\x1a\x10\x50\xe0\xeb\xab\x97\x95\xc6\x23\xbb\x40\xb1\xdd\x61\x83\x05\x7a\x78\x7e\xa9\x9b\x17\xe9\x64\x22\x13\x0a\x29\xda\xf6\x0d\x95\xaf\x6d\xef\xb9\x5e\xb1\x6a\xb6\x0e\x3a\xca\x29\x82\xdb\xb2\xf8\xa4\x65\xab\x58\xea\xc6\x5f\x4b\x6d\x84\x45\x51\x4c\x49\xab\x31\x22\x66\xa5\xb5\xaa\x64\x54\xec\xa1\x31\x23\x97\x4b\x97\x04\x1e\xcc\x65\x6c\x7d\x82\x86\xd2\xa8\x11\x13\x47\x7a\x73\x00\x57\xaf\xa8\x2e\x89\xb3\x6a\x60\xcf\x92\x80\x91\x4b\x40\xab\xc1\x24\x60\x2a\xdd\x81\x14\xd5\x95\x19\xd6\xbb\x2e\x66\x28\xca\x6c\x9c\x46\xe2\xa7\x8f\x2b\xbf\xa4\x6c\x56\x2f\xa9\x52\x5d\x98\x66\x03\x9b\xe9\xb6\xf7\x3f\xc5\xa8\x16\xc1\xfa\x8e\xeb\x1c\x3f\x51\x5b\x97\xcb\xc4\xee\xac\x06\x90\xd4\xa8\x3d\x50\xf4\x3f\x06\xaa\x65\xeb\x53\x0c\x4d\x2c\xc5\xd7\x54\x31\xe2\x9c\xf2\x5a\xdb\x0a\x74\xef\x5d\x0b\xc4\xd6\x4f\xd7\x62\x21\x01\xb4\x9b\x55\x2b\xa1\xcd\x08\x59\x6a\x9b\x47\x72\x9b\xcc\x63\x18\xa7\xb9\x9d\xf1\x3e\xe0\xc7\xa7\xde\x79\x1b\x72\xac\x98\x57\xb7\xbc\xed\x42\x98\x99\x71\x3f\x16\xe9\x33\x31\xa4\xa5\x67\x28\x79\x5c\x53\x12\x62\x14\x0d\xec\x8c\xbe\x68\xe7\xe7\xf5\xf3\xa7\x91\xd8\x08\x73\xe0\x8b\xe0\xb1\x81\x49\x66\x3c\x3a\x05\xa6\x2c\x3e\xf3\x31\x36\x6e\xa1\x73\x3e\xa3\x80\xe2\x24\x5d\x35\xac\x1d\x51\x2d\x36\x08\xe5\x7e\x07\xab\x23\x9f\x34\x1a\xbc\x16\x0e\x75\x8b\x2c\x1a\x0e\x6d\xe6\x88\x46\x2c\xca\x44\xeb\xb0\x08\x34\xf9\x05\x7b\x62\x32\xf2\x18\x7b\x61\x81\x17\x40\xde\x67\xb9\xc8\xa9\x0a\xa6\xef\xea\xf2\x88\xce\xa6\xcc\xeb\xeb\x73\x7e\xcd\x78\xb4\xa7\x63\x41\x55\xd6\xbe\xa0\xdb\x22\xaf\x63\x70\x09\x07\x49\x22\xab\xc2\xc4\xcc\x9c\x43\x66\xb2\x8b\x12\x03\x3e\xee\x35\xd9\x7c\x07\xba\xc5\x28\x2d\x89\xe5\x7c\x60\x5e\x07\x95\x2e\xc2\x74\xa4\xcb\x2a\x04\xb5\x49\x2e\xc5\x0e\xee\x51\x54\x64\x91\x13\x53\x6f\xad\x63\x0a\x3b\xe7\x37\xb8\xce\x86\xd2\x03\xb9\x09\xee\x5f\xb5\xe4\x2e\x2e\xf2\xd3\xd8\x49\x0b\xb2\xe0\x93\x32\xd8\xc6\x69\x42\x9e\x83\x60\x87\x70\xb9\x92\xe2\x6d\x29\x5d\xb6\xa4\x17\x63\x13\x47\x21\xb4\x11\xb8\x56\x11\xf8\x0a\xeb\x2b\xf5\x6a\x77\x4b\xa0\xb9\x36\xb2\x16\x4b\xa0\x04\xfb\xd5\x6d\xc8\xca\xde\xd2\xe7\x3e\x31\xb9\x77\x9f\x64\x6d\xf0\xc0\xb7\x58\x1d\x55\x0c\xe1\x49\x96\xae\x46\x24\xea\xb7\xb3\x5a\x00\xb0\xe6\xfc\x88\x26\x83\xa4\x8b\xf4\x2d\xdc\x5e\x8d\xb5\x04\x03\x95\xfd\x1d\xf9\x84\xb6\xb9\x2d\xd4\x00\x58\x69\x5f\x6d\x34\xe9\xaa\xcd\xaa\x38\x8a\xcb\x3e\x62\x1e\xd8\x71\xf6\xeb\x17\xb4\xea\x5d\x99\x0c\x4c\x52\x3d\xb0\xe7\x85\xd3\x08\x50\xd6\x89\xf5\x2a\xe4\x5b\xfb\x3d\xc4\x26\x5c\x19\x99\xb5\x95\x8e\x17\x6c\x87\x8b\x1b\x1f\xbb\x71\x93\x97\xfd\x71\x94\x44\xe3\x72\x3c\xa3\xc7\x98\xef\xca\x9c\x51\x9c\x88\x3d\x3d\x85\xf9\x17\xa3\xd8\x16\x51\x98\xef\xf0\xdd\x1b\x97\x68\xb9\x44\x70\x72\x44\x91\xf5\xb8\xaa\x85\xa5\x8b\x29\xb0\x7c\x82\x29\xc4\x1f\x51\x72\x02\x71\xba\x46\xee\x85\x5b\x57\x28\x3b\xb9\xa2\x10\x09\xd6\x4a\x86\xdd\x00\x22\xf3\x5f\x0f\xbc\x19\xdf\xaf\x4f\x3d\xa5\x9f\x93\x29\x67\xcb\xee\xcb\x9a\xa7\xf0\xca\x04\x21\xf0\xa1\xf4\x98\xba\x47\x07\x33\x1e\x8e\xde\x9c\x7a\x18\x1c\x46\x9c\x88\xb2\x6e\x29\x0e\x43\x3f\x1a\x90\xfd\x89\x5a\x6a\x39\x77\x95\x70\xd7\xaf\xd7\xf0\xea\x42\x31\x10\x60\x86\x98\xcc\xe8\x3d\xbc\x30\x19\xfa\x3d\x58\x12\x16\x51\x1c\x90\x83\x6b\xba\x6e\xf5\xb6\x36\x98\xfe\x23\x8c\x08\x60\xc2\x3b\x7b\x5a\x1b\x66\x53\x35\x9a\xb3\x49\xb8\xa8\xcd\xee\xf5\x8f\xdd\xf4\x95\x33\x16\xdf\x82\x74\x1b\x34\xf5\xe2\x97\xba\x65\x52\xdd\x77\x98\x66\x02\x98\x60\x30\x42\x2e\x94\x8f\x1b\xcb\xf8\x4b\x4b\xdd\xe5\xcc\x31\x89\x95\x06\x0e\x1e\xb5\x58\x0b\xf9\xc1\x56\xad\x6b\x71\x1c\x31\x13\x0e\x21\xf2\x11\x55\xa7\x3c\xd2\xaa\xfa\x3c\xc9\x6c\x5e\x44\xec\x79\xc3\xa6\xd5\x4a\x00\xff\x84\x12\x11\x63\x0b\xf8\x3d\xde\x42\xf7\x36\xdd\x81\x88\xf0\xfb\x4c\xf1\x86\x9a\x46\x77\x91\xa7\x01\xd0\x63\x83\x18\x8c\x93\x6d\x88\x82\xf1\x62\xdf\x47\x30\x8a\x90\xa2\x83\x90\x90\xd3\x75\xa5\xcb\x30\xd3\xd3\x02\xcb\x8e\x74\xdd\x8f\x52\x9b\x0c\xa3\xc4\x3a\xdf\x3a\xec\x72\xc7\xb5\x63\xc3\x71\xed\x06\x66\x26\x51\x61\xe2\x28\x2f\x72\xc2\xa7\xc5\x51\xbc\x1a\x68\x62\x68\xb0\xd7\x85\x59\x26\x1c\x41\xb3\x80\xc5\xa7\x69\xbd\xc3\xea\xc2\x76\x97\xb8\xd2\x9b\xba\x86\xfa\xb6\x32\xd1\xba\xec\x05\x66\xa2\x7c\x85\x69\x19\xca\xbd\xf2\xe0\x16\x0c\x08\x24\x62\x7f\xca\x2f\x3c\x79\x34\x50\x8c\x61\x41\x66\x3b\x8b\xbe\x45\xcd\x97\x0c\xc2\x38\x2d\x8b\x19\xaf\x7b\xf4\xfb\x81\xda\xc7\x2f\xd4\xe0\x30\xdf\x1f\x5a\x98\x64\x18\x8b\xd3\x9e\x00\xe0\x9e\x75\x73\x4e\x0d\x80\xc2\xc6\x36\x4c\xc7\x14\xa0\x61\x2a\xdd\xd0\x1d\x0b\x37\x54\x40\xf0\xe2\x37\xbf\xd9\xd1\xdd\x76\x53\xdf\xe5\x7a\xe1\x0b\x31\x8d\xa1\x4d\x6c\x66\xe2\x19\x25\x21\x05\x1d\x36\x61\x55\xf9\xd4\xfd\xba\x5a\x8d\xd6\x4b\x18\x1c\x6b\xda\x3f\xd6\x34\xe9\x01\xf0\x78\x9f\x1d\xae\x4f\x0a\x69\x6f\x92\x3b\x54\x90\xd9\xb9\x60\x8f\x7b\x9c\x49\x4a\x9e\x5b\x88\xf5\x9f\xe9\x29\xeb\x90\x7f\x83\xbe\xc0\xd3\x18\xda\x4e\xf7\xc0\x69\x9a\xdc\x9e\x2a\xeb\xb7\xdd\x68\xaa\x64\x2e\x20\xbd\x05\x20\xc8\x37\xa7\x0a\x0e\xf9\x78\xea\xf8\x17\xff\xed\x93\xc0\x66\x10\x79\xdc\x51\x74\xe5\x03\x4f\x6e\x54\x99\xad\x1b\xad\xfb\x16\x78\x8f\xbe\x82\x6d\x17\xe3\xf3\x2a\xe5\xc5\x52\x32\xa7\xee\xaa\xed\xa0\x83\x3a\xe3\x74\xe7\x0a\xb3\x73\xc3\x77\xfc\x11\xe9\xc2\x75\x0d\x97\x2c\x04\xc5\x52\xb9\x34\x09\x45\x36\x57\x32\x10\xbb\x5a\xe5\x83\xdc\x4b\x22\xa6\xaa\xf4\x34\xf9\xc4\xf1\x03\x41\x5f\x83\x4a\x14\x40\xf1\xfb\x81\x07\xcb\xa1\xe4\x23\xc7\x4f\xfa\x48\xdd\xda\x70\x44\x22\x23\x8e\xb3\x75\x14\x63\x1a\x57\x8f\xe4\x13\xcb\xdb\x9d\x16\xc1\x25\xa6\x71\x77\x34\x2a\xac\x59\xdc\xad\x70\xe3\x6a\xea\xfb\x58\x9d\x9c\x8f\x97\xf6\x69\x84\x5c\x87\xe7\xbb\xa1\x89\xe3\x9c\xc2\x08\x45\x70\x74\x6c\x47\xbd\x05\x66\xe9\x8a\xcd\x10\x0e\x20\x56\xfc\xbf\x68\xcd\x41\x34\xf8\x43\x42\xae\x54\xad\xc1\x4b\x9d\x55\xaf\x9a\x15\xe7\x30\x1e\x84\xa2\xd4\x46\xef\xcb\x6c\x1c\x59\x54\xff\xb9\xe2\x58\xab\x3e\xfa\xc8\x7f\x2d\x2a\x46\x51\x32\xeb\xd9\x91\x47\x59\x49\x1c\x9b\x37\x3b\xf7\xf0\x49\xe0\x67\x22\x59\x87\xb8\x1c\x34\xc9\x8b\xac\x0c\x7d\x31\x17\xd0\x07\x72\x56\xad\x3d\x23\x80\xeb\xc3\x97\xfc\xc2\x42\xb7\x18\xd9\xcc\x72\x13\x10\xb8\x22\x77\x69\x97\xe3\x63\x55\x03\x89\x6d\x1e\x47\x88\xdf\x05\x42\xaf\x1e\xa0\x60\xeb\x2d\x58\x56\x5a\xc5\xfc\x33\xaa\xbe\xc7\xe6\xb1\xa2\xed\xe7\xc9\xf8\x47\x5a\x98\x70\x8b\x55\x28\x95\x48\xfa\x2a\x3d\x87\xea\x3e\xcf\x2a\x33\xcc\x71\x34\x58\xb3\xf0\x18\xa7\x6d\x81\x21\x51\xfa\x09\x81\x47\x9f\x52\xca\xa9\x85\x4d\x8a\xc8\xc4\x64\x08\xe7\xdc\xc1\x0f\x2c\x79\xad\x5c\xdf\x3d\x7a\x7c\xaa\x18\x50\x17\x95\x95\xd5\x4f\xb5\xbf\x5b\x11\x65\x19\x13\x4a\x1d\x45\xfb\xc0\xbc\xe3\x7f\xb5\xa4\x8a\x26\xeb\x47\x45\x66\x0a\x91\x3d\x03\xaf\xff\xa4\xf2\xa5\x3e\xe9\xca\xc8\x79\x91\x99\x32\xcf\x3b\x7e\x77\xd8\xac\x97\x1b\x54\x83\x4c\x6c\x4d\xc6\x28\x20\x30\xa9\x4f\xb1\x58\xe2\x3b\xaf\xa9\xfc\xe2\xac\x6e\x02\x30\x19\x89\x2a\xd0\x9f\x22\xc6\xf8\x19\xe0\x68\x3e\x51\xf5\xc5\x7e\x99\x25\xd4\x81\xe4\x2c\xe7\x17\x0e\xb9\x32\x57\x75\x89\xa2\xf3\x2a\x6b\xd0\xa0\xec\xf7\xed\x60\x87\x2f\x7c\x33\x87\xa2\xa6\xbc\x09\x18\xe1\x31\x25\x11\xf2\x57\xb5\x7b\xac\x75\x4b\x3d\x3c\x92\xf7\x2d\x74\xc7\x26\x31\x43\x01\xb8\x50\xa5\x63\xc6\x07\x9f\x28\xee\x38\xe9\x5b\x64\xeb\x79\x34\xc0\x0a\x0a\x14\xed\xa3\xc0\xfb\x0b\x7f\xe4\x16\xc3\xff\x98\x94\x5e\x2d\xdf\x36\x4e\xd7\x76\xa9\x06\x61\xf6\x06\x16\xbf\x66\xc5\x91\xdd\x00\xe2\x88\x20\x01\x84\x53\x94\xe7\x8e\xea\x8e\x69\x7a\xb8\x2e\x1d\xa9\x06\x8a\x58\xa2\xb5\xe8\x36\x76\x93\xb4\x90\x2a\x0f\x8a\xb7\xf7\xf0\x8b\x7c\xe2\xe8\xb5\x83\xa8\x8a\x8a\x07\xaa\x75\xe2\x4d\xd5\x3a\xf1\x66\xab\x26\xc8\xc8\x64\xb1\x29\x4c\xc2\x39\xb5\xb3\xf9\x71\x45\xd1\x13\x8a\x2d\x62\xc7\x11\x6b\xd0\xfb\x59\x0e\x76\x23\x1f\xeb\xf6\x8a\xc2\x14\x65\x61\x77\xd0\xcc\xe5\x4e\xef\xa9\x17\xea\x60\xec\xc2\xc9\x85\x1f\x9e\xaf\x29\x47\x49\x6b\xb8\xd6\x14\x6f\x2b\x29\x2c\xc7\x66\x32\x71\x6f\x91\x2d\x78\xd4\x74\x3e\xa5\x0a\xed\x69\x6c\xe6\x14\x7f\x6d\x6f\xaf\xe1\x98\x73\xd0\x29\x9f\xfa\xaa\xc1\x9f\xd1\x45\x23\xf4\xb9\xaf\xf2\xdd\x91\xcd\xfa\x51\x48\x63\xcd\xfd\xda\xfd\x40\x43\xf3\x9e\xa2\x48\x2f\x66\xd5\x66\x2c\xce\x80\xa5\xf2\xb6\x2a\x97\xbc\xaf\x39\xcb\x0f\xda\x84\x0b\xbb\x63\x53\x14\x56\x28\x05\x48\xfb\xb9\x1a\xcf\x27\x2a\x5c\x7c\xe9\x5b\x2f\x76\x3a\x2f\x2d\x39\x43\x03\xfa\x33\x3e\xd9\x78\xf8\xcb\x0f\xcc\x77\xcb\x24\x31\x63\xe9\x63\xc4\xd3\x81\x10\x91\xb4\x4f\x28\xc5\x05\x2d\xfd\x9e\xd9\xe5\xd8\x86\x05\x44\x17\x50\x3e\x44\xe7\x2e\xf6\x8f\x3f\x08\x94\xf0\xe4\x49\x44\x1a\xf8\xc6\xfb\x4a\xf1\x7a\x1c\xc5\x11\x49\x8f\xd7\xc4\xd4\x7d\x57\xd1\x7b\x53\x6f\x11\x31\x4e\x57\xed\x5e\xaa\x1a\x00\x35\x60\xa7\x2b\xd4\xf9\x2f\x07\x4a\x59\xf7\xa4\x56\x4c\xa3\xa9\xe7\x68\x71\x5e\xb6\x12\x2e\xea\x20\xb2\xc1\xac\x0a\xf5\xaf\x4f\xf1\x60\x91\x7d\xb1\x10\x23\x8a\x69\xbf\x4a\x23\x03\x4b\x30\x3f\x16\xc4\x4b\xb7\x1a\xbb\xc1\x81\xf9\x83\xd4\x1a\x5b\xe6\xc2\x2f\x64\x51\x6d\x45\x05\x6c\xba\x45\x55\x73\xd2\x24\x2c\xc5\xa9\x9d\x8f\xc4\x0c\xc0\x13\x42\x97\x21\x46\xe0\x64\xc9\x2e\xa9\x9a\xb1\xb6\xd8\x5a\x78\x71\x71\x46\x0f\x2f\x9a\x6c\xd2\x23\xa7\x10\xc4\xcd\x1a\x5d\xaa\x30\xe8\x87\x13\xad\x3a\x8f\xb8\xed\xe9\x79\x0e\xc7\x3d\x14\x8a\x44\x08\x45\x22\xd9\x65\x13\xc5\x65\x66\x39\x4e\x10\x19\x49\x95\x13\xdd\x55\x22\x5c\x17\xda\x50\xee\x49\x66\xc3\x28\xc7\xe4\xc2\x98\xc1\xe2\xcc\xc7\x1b\x02\x09\x0e\x6c\x98\x59\x93\x0b\x14\x20\x36\x0d\xaa\xc7\xec\xa4\xa6\x66\x9b\x89\xcd\x40\x38\x12\x9a\xb0\xaa\x0b\x5c\x0b\x34\x97\x94\x6e\x4c\x68\x13\xaa\x11\xe8\x0a\xcd\x0c\x2c\x50\xd7\x29\xdc\x64\x77\x17\x0a\x37\xa5\x55\x91\x1e\x38\x52\x8e\xb7\x69\x28\xf2\xbd\xaa\xfa\xce\xb5\xa9\xea\x35\xba\xa2\x34\x86\x46\xd6\x78\x2d\x54\x44\xbd\xa7\xb8\x3f\x9a\xcf\xd4\xdb\x8d\x0c\x88\x2f\x4e\xbf\xce\x39\x45\xbf\xa9\xf8\x7f\x57\x1a\x91\xed\xc2\xa1\x6e\x61\xa2\xa4\xa8\x97\x63\xbf\x33\xf5\x03\xf5\x3b\x2a\x4e\x5c\x4b\x93\x81\xcd\x76\xf8\x46\x6a\x68\x2d\x3a\xd1\x32\x17\x15\xbd\x4f\x4f\x41\xac\xab\xe8\x0e\x50\xd5\xbe\x1e\x28\xb7\x8b\xeb\x0a\xff\x59\x4f\xcb\xc7\x14\xb5\xef\x32\xed\xd7\xb0\xd5\x81\x6d\x31\xd0\x80\xcb\xd0\xeb\xc1\xa5\x5d\xc6\x0b\xc1\x73\xfc\x5f\x15\xce\xf0\x98\xea\xa7\xdb\xb9\xa1\x75\x6f\xa7\xbe\xd7\x67\xcf\x06\xfa\xce\xa8\x16\x29\x1c\x83\xea\x19\x8a\xcb\x23\x0d\x25\xec\x9a\xbf\xa9\x49\xf5\x6f\xe8\x7e\x9c\x74\x64\x8a\xf5\x84\x9e\x3d\xa8\x75\x58\x41\x00\x25\x5f\xa6\x47\x82\xa5\xe8\x68\x9b\x0e\x55\x62\xd7\x44\xf7\x59\x5a\x99\x3a\xf5\x0e\x6b\xe1\xee\x7e\xa7\x4d\xe3\x30\x34\xc9\x60\xbd\x6f\x32\xa4\x80\xe2\x69\xd1\x71\x52\x9c\xa7\x95\xa8\xf7\x9f\xbb\x69\x99\xd7\x76\x4b\xe7\x81\xe6\x23\xf1\xc0\x9b\x9a\x2e\x9b\xec\xa9\xce\xbe\x85\x2d\xe6\xf2\x49\xe5\x4c\xc9\x7e\x6d\x23\x99\x42\x80\xd6\xe7\x29\xd0\xc6\x8e\xf9\x53\xbc\x1c\xe4\x94\x27\xa6\x0a\x95\x62\x04\x54\x97\x95\x5d\x08\xe5\x14\xe1\x7e\x05\x05\x6e\xce\xe1\x30\x47\xa4\xc4\xe1\xc3\x12\x68\xeb\x80\x34\x2c\x72\x1e\x02\x01\xd5\x0c\xe9\xf7\xed\x93\x2b\x41\xe4\x8b\xd5\xfe\x9a\xda\x80\xd2\x95\xd8\x8c\xd2\xb1\xd1\x72\x0f\x17\xb4\xdc\x43\xd3\x30\xf9\xf0\xfc\xcb\x5d\x33\x58\x95\xba\x02\x86\x18\x8c\x83\x90\x62\x5e\x57\xe6\xc9\x7a\x01\x2a\xd2\x89\x79\xbd\xa6\x58\xec\x73\xb4\x73\x53\x3f\xdf\x00\x6f\xce\x2a\xc6\x39\x9e\x90\xa3\x9f\x57\xcf\xd1\xc5\xd0\x5e\xf9\xa3\x4d\xdd\xd9\x44\x19\x37\x7d\xf8\xfc\x07\xe3\x83\x8f\x1b\x81\xe1\x4b\x55\x26\x93\xe7\xe5\x78\x22\x6a\x96\x2f\x3b\xf7\x1e\x0f\xb8\x7c\xd7\xc9\xbf\xd8\x57\xcb\xa8\x40\x00\x09\xea\x24\xeb\x24\xf1\x89\xee\xf4\x8f\x4d\x34\xe6\x94\x4a\xe8\x5d\x7e\xd6\x5c\x50\x4f\xa0\x1f\x9b\x81\xcd\x55\x9a\x78\x47\x6b\xe5\xdf\xd1\xe8\x63\x4a\x1d\x20\x99\x28\x3d\x20\x80\xb9\xa6\x9c\x08\xaf\xa9\xa6\x48\x9b\x65\x29\xd7\x78\x31\x6d\x59\xbb\xda\x75\xdf\x3d\xef\x99\xcb\x8f\x2a\x76\xc9\xc0\xce\x50\xfa\xae\x19\x46\x6c\xbc\x0a\x50\xe8\x4e\x0b\x20\xdc\x5d\x36\xab\x69\x66\xfa\x80\x9c\x3d\x11\xa5\x1a\x28\x02\xd9\x3f\xa1\x9d\x74\xbe\x6d\xc3\x62\xae\x1a\x12\x5c\x27\xeb\xa9\x56\xe3\x8f\xa7\xfe\x01\xdf\x57\xbe\x7b\x6c\xaa\x8c\x90\xe6\x88\xc2\x23\xc2\x34\x4e\x13\xa0\x00\x6e\x41\xf6\xa5\x8f\xf3\x8d\x7e\xac\x03\xf3\xdd\x30\x4b\xf3\x3c\x36\xc9\x40\x55\xd8\x58\x84\x9e\x4f\x1a\x70\xe3\xe1\xf9\xae\x19\x0e\x33\x9b\xe7\xd1\xaa\xe5\x5a\x23\x30\x3c\xa4\x11\x7c\xac\x3b\x49\xed\xa0\x0c\xa9\x0e\x3b\xeb\x99\x3a\xb7\x54\x51\x1e\x6d\x56\x08\x1b\x58\x56\x1f\x31\xf3\xe5\x46\x7e\xb4\x6f\x5f\x77\x10\x65\x36\x84\xc3\x18\x82\x92\xa3\x8a\x64\x7a\xd4\x75\x2b\x4e\x4c\xc6\x84\x31\xe9\x8c\xe9\x38\x99\xb2\x27\xe8\x75\x8a\xf8\x3f\xdd\x2e\xca\x48\x1d\x27\xa4\x99\xaf\x45\xcb\x05\x45\x44\xda\xe6\x19\xf1\xe2\x23\xb4\x62\x89\xbf\x56\x6d\xf5\xf3\x1b\xf5\xfa\xeb\x56\xc3\x18\x5c\x27\x12\x55\x4e\x5f\x54\x2d\xb3\xc2\x94\xf1\x40\xa8\x98\xa2\x59\xa0\x5a\x0f\xa0\xf7\x54\xf3\x0e\xc7\x66\xb5\xab\x27\x57\x3b\x32\x59\x3e\xda\xe1\x2b\x7c\x90\x73\x47\x2c\xf7\xde\xb4\x49\x18\x44\x00\xc7\xd2\x7b\x4e\x17\xe4\x80\x6c\xbe\x7f\xd9\x66\x5d\x48\x59\x31\x8d\x13\x61\x63\xf9\x42\xd5\xd9\xc0\x37\x56\x87\x23\xbb\x26\xd4\x13\xb1\xe7\xf2\xda\x17\x17\x35\x6f\x3a\x5d\xef\x5b\x46\x93\xc5\xd1\xae\xa3\x94\xa3\x7c\xf6\x15\xc6\x26\x27\x7f\x79\x85\x3c\xa3\x3f\x51\x16\xc5\x16\x9e\xfa\x6a\x9a\x0f\xad\xec\xba\x20\x0b\x30\xb9\x9d\x0b\x74\xd3\x9a\x3e\xc9\xe3\x4a\xe9\x28\xeb\xa7\x19\x8d\x30\x59\xb4\xe8\x11\xca\xaa\x55\x93\x2e\x7f\x1d\xdd\x4f\x9c\x46\x29\xa0\x17\x2c\x0f\x6e\xd1\x6d\x40\x6b\xd5\x96\x32\x89\x86\xbc\x4a\x3b\x07\x1b\xef\x66\xa3\x1a\xce\x96\xad\xc9\x72\x92\x8c\xd3\x32\xcd\x1e\x46\x6a\xec\x57\xfb\xf7\x33\xb8\x8c\x7c\xa1\xcd\x9b\xf2\x69\x37\x4d\x28\xc5\x37\x85\xcc\x65\x2c\x86\x78\xb8\x7c\xdc\x08\x68\xaa\xd1\x90\x02\xa6\x5b\x74\x46\xae\xd5\xb7\x4b\x1f\xc7\xc3\x6f\xe3\x17\xba\x93\x98\x4a\xf9\x1d\xdf\x7b\x79\x51\x45\x22\x17\x95\x76\x94\x5f\x93\x54\x16\x73\x93\xf7\x7c\x3e\x73\x9d\x30\x51\xf2\x6a\x19\x79\x5c\x87\x35\xdb\xe9\x5a\x44\xbf\x5d\xfe\x74\x39\xb6\x83\x61\xec\x70\x56\x69\x59\xea\xb8\x26\xf4\x63\x54\x07\xde\x68\x85\xb5\x07\xb6\x2f\x2a\x19\xc8\xb8\xfe\x6d\xe0\x85\x5c\xff\x6d\x6d\xb1\xab\x16\x9e\xb1\x4d\x0a\x12\x8a\x67\xf6\x9a\x1a\xd6\xdb\xb8\x29\x09\x91\xf1\xe7\x88\x97\x50\x33\xdd\x4d\x64\x0d\x4c\xd4\xeb\x81\x2a\xcd\x72\x7b\x21\x32\xff\x1b\xda\xd7\xe6\x19\x22\x9e\x49\xd7\x97\xaf\xea\xc0\xf3\x34\x07\x31\x9b\xa5\x73\x69\x3c\x8a\x8c\x6e\x4b\x22\xda\xcf\x4c\x3e\xa2\x01\xc3\x5e\xa0\xf4\x18\xc5\x17\xf4\x71\x05\x03\x14\x26\x8a\xf1\xd5\xce\xbc\xfa\x79\x6f\xa2\xd4\x32\x5a\xd6\xa2\x8c\x19\xdf\x62\x00\xe2\x59\xf5\x7a\xed\x00\x29\x6b\xb7\x2a\x04\xfe\x41\xe0\x47\xcc\x59\xca\xdf\x91\x8d\xff\x58\x69\x69\x6d\x61\x51\x43\x49\xe0\x26\x71\xf4\x64\x58\x55\xd7\xc5\x1f\xd0\xca\x2b\x9f\x41\xb7\x53\x06\xa2\xca\x18\xab\xc7\xb6\x9b\x1e\x30\x52\xe6\xed\x1b\x1e\x27\xbb\x3c\xf5\xb3\x7b\xb6\x47\x01\x1a\x6a\x8e\x3b\xc0\x35\x67\x12\x00\xfd\x28\xf2\x0c\xf4\x56\xb3\xb9\x1e\x16\x11\xd5\x83\x7e\x80\xa3\xf7\x9d\x3d\x25\x91\x9d\xc6\x36\x2c\x63\x93\x61\x72\x09\xa7\x5e\x41\x0f\x35\xd4\x6d\x14\x11\x21\xd0\x57\xda\x4e\xd2\x73\xf1\x09\xba\x22\x1d\x90\xb6\x5f\xf5\xd2\x64\x66\x78\xb1\x6d\xad\x0c\x1d\x8e\xcc\xa4\xa8\x92\xbf\x03\xf3\xce\x1c\x41\xe5\x72\x68\xcd\x41\x39\xe7\x96\xf2\x14\x65\x38\x18\x2f\x81\xc5\x47\xd9\x9d\xb0\xcd\xe3\xd2\xf3\x7d\xdd\x8c\xc4\xf8\x41\xa8\x85\x51\xa7\x8d\x7a\xdf\x6f\x95\x82\xe1\x26\x29\xd7\x27\x8e\x26\x2b\x31\xb2\x7c\x4c\xc3\x93\xe3\xc9\x17\xdb\x8b\xf9\x6d\xbb\x78\x1d\x1d\x96\xe2\x7a\xa5\x12\xa0\x0b\x8a\xe8\xf7\x7b\x6e\x07\x5f\xb1\xeb\x89\xcd\x23\x93\xe4\x33\x4a\x17\xf3\xa7\xbc\x5e\x21\xc6\xd8\xd2\x96\x9f\xb7\x1b\x13\xe4\xeb\xdd\xbe\xc9\xa3\x10\x6f\x1c\xc3\xee\x07\x53\x0f\x25\xff\x40\xd5\x48\x4c\xf8\x6a\x19\xe5\x20\xd6\x3b\xdb\xd2\x8f\xa7\x5e\x0c\xe0\x63\x35\x9b\x06\xe9\xeb\xd6\xd9\x0d\x71\x57\xdb\x54\xf3\xf6\xb4\xdd\xd0\xf1\x46\xcf\xc9\x3f\xec\x86\xd1\x2a\xab\xae\xb7\x1a\xae\xf8\xc2\x70\x94\x2c\x47\x49\x54\x44\xc8\x1d\x44\xe4\x40\x35\xc2\x6c\x36\xa2\xcf\x85\x43\xdd\x51\x5a\xe6\x76\x94\xc6\x88\x3e\xc5\xbb\xcf\x67\x52\x67\x1b\x20\x5b\xb5\x6b\x66\x76\x58\xc6\x5e\x68\x5a\xe0\xd0\x8e\x93\xb3\x6b\x5a\x9b\x7d\xed\x6b\xdd\x41\x62\x54\x9c\x71\x47\x43\x95\x77\x1a\x2f\xe4\x05\xaa\x02\x22\x94\xc6\x48\x87\xd2\x14\x1f\x2b\x1a\xfa\xc0\xae\x9a\xb8\x34\xde\x05\x80\x0d\x82\x69\x10\x8b\x59\xf0\xc3\x03\xf7\xc0\x7c\x37\x9f\x44\x19\x47\x33\x22\x6e\xe8\x23\xfc\x53\x8d\xa1\xfe\xf5\xee\xc4\x66\x63\xa7\x2a\x2d\xc4\x53\x05\x5c\x68\x9b\x99\xbe\xc5\xf3\xf1\xc8\xfa\x99\x40\x9b\x76\xb5\x0c\xc0\xdc\xda\x15\xc6\xd4\x80\xb2\xfc\x33\x4c\x10\x3e\x51\x09\x95\xc9\xb2\x74\x8d\x71\x69\x30\x17\xf8\x61\xf2\x49\xe3\xda\xf7\xed\xeb\xe6\x69\x9a\xd8\x6c\xc6\xd3\x7e\x6e\xa3\x9c\x85\x28\xff\x3b\x58\x0b\x11\x5b\xdf\x55\x5d\x78\x60\xfe\x14\x26\x19\xcc\x55\x0b\xbf\x2e\x18\xb0\x1c\x0d\x0d\x7c\x47\x92\x38\x3c\xcf\xd3\xf6\xaa\x66\xcb\xfd\x4e\x63\xe8\x91\x97\x50\x99\xad\x46\xab\x76\x00\x44\x45\x24\x75\x69\x44\xe1\xaa\xae\x2a\xef\xa5\xa3\x1a\x80\x1b\xd8\xa7\x94\xa8\xf9\x6e\xa2\x00\x50\x32\x36\xfe\x7b\x10\x34\xc6\xb5\xed\x80\xee\x3c\x70\xc0\xbf\xbd\xa1\x00\x6e\x2d\xbe\x31\x43\xda\x4a\x58\x34\x99\xa9\x86\xdd\xe2\x32\x0a\xd5\xac\xef\x5b\x97\x27\xaf\x1e\x06\xe8\x41\x37\x89\xac\x80\xa9\x7d\x65\xda\xf9\xa5\x83\xde\xde\x5b\xab\x54\x1d\x98\xc7\x4d\xfd\xfa\xdf\xe9\x69\x59\xa1\x07\x53\x9f\x06\x81\x87\x8c\x0c\x77\x57\xaf\x25\xfc\xcf\xe3\xb4\x40\x7e\x2e\xfb\xbc\xc2\xa2\x36\x1b\xf1\xc4\xd7\xbb\x99\xe9\xf7\xd9\xa0\x91\x75\x3b\xe8\x89\x8a\x86\x47\x4d\xaa\x2f\x09\x89\x2d\x0a\x96\xf8\x95\xa9\x22\x33\x5d\x09\x7c\x2b\xc4\xd1\xa9\xee\xb0\xbc\x85\x0a\x03\x32\x16\x2f\x54\xb6\x36\xb2\x99\x5d\xb5\x59\x87\x04\xec\x58\x39\x87\xbe\x44\x54\x74\x1e\x5e\x1d\x16\x17\xbb\xa3\xa8\x98\x53\x8a\x57\x50\xda\x41\xa2\x7a\x09\xaf\xcb\xa1\x17\x4e\x6f\x94\x3b\x2b\x90\x97\x5d\x72\x79\xe7\x98\x1a\xb8\x5d\x8f\x3e\x04\x7a\xe5\xa4\xe7\xe7\xd1\xda\x28\x0a\x47\x4f\x55\xaf\x12\x75\xbd\xcf\x94\xc3\xcc\x03\x4c\x0f\x76\xfe\xa0\x41\x8e\x24\xfe\x06\x1e\x3a\xfe\xe1\xc9\x8d\xce\xbe\x7d\x7c\x61\xff\xa6\x5e\x22\xec\x7c\xe3\x57\x7c\x46\x75\x60\xbe\x0e\xd3\x38\x97\x23\x37\x8a\xff\xd9\x93\xbd\x6a\x18\x8a\xc4\x99\x2f\x05\x03\x91\x05\xc9\xf8\xad\x87\x9c\x78\x3a\xca\x4b\x4e\xc9\xae\x3c\xd2\xf3\x0d\x35\x77\x9e\xec\xed\xf5\x79\xa1\x4d\x69\xcf\x72\x8d\xbc\xcf\xfb\x6e\x66\x25\x62\x15\x85\x2b\xa8\x91\xb3\x2f\x10\x8d\x76\xf1\x08\x6a\xf1\xe9\x7b\x68\x3b\xd0\xd9\xba\x74\x97\x38\x3c\x94\xda\x65\xb9\x2a\x27\xfc\x20\x5f\xc2\xe3\xdc\x58\xa8\x7b\xbe\x9e\xa7\xba\x81\xfd\x3b\xe2\x5e\x41\x3e\x69\x6c\x9e\x0b\x87\x88\x90\xa5\xf4\xa9\x37\x6b\x0a\x0d\x8a\xc9\x90\x8f\xd2\xac\x30\x43\x9b\x77\x94\x76\xd3\xd5\x40\xc9\x32\x5d\x55\x40\x59\x99\xc4\x36\xcf\x77\x57\x4f\x05\xeb\xc9\xec\x86\x9f\x62\xf7\x00\x7a\x8a\xbc\x2d\x7d\x85\xe8\xde\x2a\x44\xea\xba\x72\x4f\xf9\x1e\xbd\x08\x17\xba\x3a\xc1\xb0\xcf\x68\x18\x08\xaf\xd5\x6f\x2e\x69\x3f\xb7\x19\x4b\xa1\xb1\xca\x87\xe2\xe1\x5e\x6c\x80\x8b\x54\x17\xb3\xb1\xed\x67\xfe\x25\x21\x62\x9c\xaa\x46\xdd\xa9\x9f\x3f\x51\x32\xd8\xe1\x7b\xf8\x28\x9e\xdd\x7a\xb4\xa7\x0a\x7f\x9b\x4a\x74\xf8\x9a\x5e\x85\x78\x99\x04\xe4\xfb\x89\xda\xb3\x5e\x2d\xc9\xe3\xc5\xd1\xac\xa8\x1f\x51\x8e\xa7\x5e\x2d\x75\x60\x09\xe3\xa5\xca\x83\xce\x83\xb1\x35\x9d\x99\xfa\xf4\xef\x87\x8e\x93\x18\x47\x7d\x1b\xcf\xf8\x75\xf1\xbe\xfa\xc4\x65\x6d\xb8\x76\xa6\xf1\x68\x0e\xbd\xd8\x8d\xed\x30\xca\x63\x53\xa4\x19\x18\x50\xc2\x4a\x51\xd5\xe9\xa6\x3c\xc0\xf3\x8b\xf5\x5a\x0e\xea\x3f\x1f\x28\x11\xd9\x0f\x54\x75\xf8\xf9\x03\xbf\xc8\xd8\x92\x33\x6a\xf1\x23\xe1\x9c\x8a\xb0\xcf\x69\x51\xed\xd9\xde\x1e\xf7\x0d\xe5\xe4\x31\x95\x3b\x5d\xd2\xbb\xe4\x7d\x1a\x3d\x20\xde\x7d\x05\x33\x1f\x13\xeb\x06\x61\x7a\xa2\x67\x54\x0d\x37\xc0\x70\x5f\xee\x39\xf6\xff\x61\x01\x1b\x76\x6c\x78\x94\xe2\x4b\x1b\x8e\xba\xfc\xd5\x27\x60\xc1\x20\x16\x16\xbe\x31\xec\xa4\xae\x34\x3d\xa0\x5a\x04\xed\xe0\x97\xff\x41\xaf\x45\xee\x20\x34\x59\x3f\x45\xe5\x06\xbf\x71\xa3\xc6\x61\x50\xdc\xe6\x26\xc9\x57\xc8\x95\x71\x6a\x92\xd9\x6a\xb9\x95\x7e\x62\x8f\xaf\x41\xad\x19\x4b\xf2\x8f\xa7\x8a\x35\x72\xb3\x56\x89\x24\x7b\x63\x25\x1c\x5e\x3d\x37\x11\x14\xd7\x0a\xac\x45\x16\xf5\x4b\xc4\x93\xd5\xcd\x23\x86\x79\x67\xea\xc3\xdb\x77\x1c\xf8\x31\x88\xf2\x61\x99\x3b\x45\x62\xdc\xdc\xbf\x0b\x3c\x9b\x9e\x5b\x15\x25\x5c\xf4\x39\xde\x24\x43\x23\x59\xc7\x29\x57\xbf\xa7\x84\xfc\x9b\xeb\xec\xe1\xf9\xc5\xae\x29\x0a\x3b\x9e\x70\x0c\x20\xca\x34\xf4\xf0\x44\xb2\x46\xd6\xd9\xd8\xbc\x66\x20\x97\xe8\x1e\xf9\x76\x45\x09\xda\xbe\xe1\xa1\xad\x3c\x1c\xd9\x41\x19\xa3\x59\xc4\x11\x30\x75\x43\x92\xdb\x6f\x8f\xab\x51\x74\x1c\xab\xa3\x34\x6a\xa9\x42\xca\xc4\x1a\x09\x64\x45\x22\xc4\x3b\xe4\x9d\x57\x64\xc2\x62\x94\x95\x44\x60\x76\x71\x07\x52\x67\x3e\x6e\x73\x7e\x9a\x64\x69\x61\x43\xe9\x6a\xe6\x3e\xc0\xe9\x54\x79\x44\x4c\x1b\x05\x99\xfd\xfb\xbb\xa1\xcd\xcc\xd8\xf5\xb1\x3b\xf1\x3c\x07\x80\x5c\x74\x8c\x9e\x70\x64\x92\xc4\xc6\xb4\xfc\x21\xae\x38\x19\x68\xb3\x58\x3c\x0e\xde\x8e\x03\xd5\x8a\x8b\x4c\x00\x9d\x66\xdc\xb2\xc1\x9d\x5b\x8d\x0b\x22\xfb\xf7\x3c\x1a\x26\x75\x11\x36\xa8\x14\x89\x55\xa7\x03\xd1\xd3\x32\x23\x10\x5c\x32\x60\x62\xee\xa2\x62\x87\xec\xe6\x2c\xcd\x73\x61\xd9\xb5\x38\x1a\xbf\x5a\x46\x85\xe9\xc7\xd8\x30\x84\x5d\x40\x57\xc8\x27\x0d\x8c\xff\xeb\xdd\x3c\x2d\x8b\x91\x19\x53\x18\xe0\x4a\xf2\xd5\x47\xf8\xc4\x55\xa2\xe0\xa8\x85\x18\x5e\x7b\x56\x73\x01\x51\x49\xf3\x7c\xe0\x1e\x72\x66\x29\xf0\xa7\x5a\x04\x22\x67\xc6\xf0\x91\x07\x43\xfe\x17\x6b\xf9\xc7\x53\xa5\xe3\xd9\xd4\x42\x79\xe5\x95\x6e\x18\x97\x45\x38\x9a\xf1\x20\x1c\x07\xf1\x58\x51\x6f\x2b\x43\x83\x53\x8d\x49\x55\xa5\x21\x22\x5b\xd4\xf1\xb0\x05\x32\x41\x3e\x56\x90\x5e\x98\x82\x49\xa9\x35\xbd\xb8\x72\x2c\x55\xf2\xa6\xb3\xc6\x12\x4d\xf5\x34\xe7\x5c\xb3\x55\xd7\xab\x8d\x93\x32\x32\x4c\xc6\x90\x11\xe1\x73\xb7\x73\x6d\x05\xea\x41\x1a\x96\x63\xc2\x9b\x5d\x9b\xe2\x39\xd5\xa6\x78\xae\xb5\x7b\x22\x4c\xc7\x93\x28\x96\x71\xc8\xa2\x25\xf4\x29\x11\x30\xf1\xb4\x81\x24\x7d\x76\x67\xc7\x59\x64\x5d\xd7\x60\xde\x6f\xe0\xf5\x39\xc1\x24\xe7\x22\xdb\xc1\x86\x84\x55\xf6\xaf\xa7\x35\x69\x31\x7a\x02\xd8\x60\x2f\xb7\x28\x15\x76\x07\x76\xd9\x26\x03\x61\xae\x3a\x2b\xcb\x2a\xe3\xe0\x93\xe0\x99\xba\x39\xd3\xe2\x62\xf7\xf0\xfc\xd2\xe3\xf4\xc5\xf8\x49\x56\xf9\xc1\xdb\x41\x89\x58\xc0\x4b\x4a\xee\x50\x8c\xba\x8c\x98\x4d\x36\x71\x5a\xd8\x64\x17\xaf\x36\x09\x4c\xe4\x1b\x14\x8e\x09\xd3\x83\x6e\x05\x5b\x11\xda\x19\x70\xc3\xdb\x41\x7d\xc7\x02\x01\x0e\x30\x18\x24\xdc\x2d\x88\x6c\x72\xb6\xa7\xf8\xf5\xd7\x68\xfe\xa2\x2c\x75\x52\xc9\x1e\x78\x58\xab\xe3\x8b\x5d\xc0\xe6\xf8\xd8\x71\x72\x56\xa2\x2c\x0f\x47\x09\x33\xde\x6b\x66\x3c\x62\xb9\xa3\x80\x69\x53\x0e\xcb\x28\x99\x51\x55\x33\xc8\x54\x62\x39\xe1\x32\x19\x57\xb1\x36\x7c\xf6\xb0\x62\xd7\x77\xa9\x9b\xfb\x70\xaa\x5a\xbc\x7e\x86\x74\x5f\x0a\x27\xbe\x97\xea\x1e\xed\xb2\xbc\x2c\x06\xaa\x79\xe8\xbc\x6e\x3b\xba\xab\x72\x80\x53\x7e\x2d\x8e\xa3\xb1\x29\x20\x63\x2c\x29\x93\x62\x66\xdd\xa5\x71\x2a\x76\x52\x0a\x91\x7f\x57\x81\xae\xc3\x0c\x45\x6d\x87\x01\x43\xd6\x4d\x0c\x64\x9e\x56\xb8\x77\x4c\x95\x0c\xc6\xdf\xf1\x2c\xe6\x90\x3a\xf2\x49\xcf\xe3\x7a\xfd\x74\x40\xe2\xee\x4e\xe2\x99\x5b\x4e\xc5\x5e\xcb\x6f\xb5\xdb\x7a\x4d\x2e\xca\x52\x37\x1c\x84\x4a\x53\x7c\x53\x1b\xb4\x6e\x3a\xba\xb2\xc9\x72\x9b\xf0\xb2\xc1\x75\x48\xba\x65\xa9\x49\x3e\xe9\xba\x18\x6c\x36\x44\xf1\x9e\x9e\x29\x86\xd2\x47\x58\x62\xf8\x44\xd5\xb2\x58\xd7\x36\x9f\xa5\x19\x20\xa2\x6e\x1e\x58\x45\xcf\x15\x1f\xd3\xeb\xe3\xbf\x51\xbd\x5a\x6c\xcd\x9e\x17\xc4\x46\x16\x45\x7f\x1a\x1d\x78\x07\x37\x91\xec\xf0\x09\x3d\x0f\x57\xfe\x5c\x74\x96\xa3\xdb\x19\x0c\xc1\x03\xfe\x49\x0b\x0d\xf3\x60\x77\x10\x2d\x2f\xdb\x0c\xc5\x4c\x26\xf6\x2a\xae\xe2\xd1\x36\x43\x8e\x28\xb1\x93\x82\x52\x4c\x31\xfa\x55\x0e\x7e\x3f\x9e\xaa\x44\xa6\xc6\x00\x29\xa3\x3c\x47\x93\xb4\x36\x91\xac\xf1\xcb\x10\x56\xde\x6f\x29\xc9\x2f\x74\x6d\x12\xa6\x65\x66\x86\xd2\xef\x81\x30\x06\x46\xd2\x12\x4b\xd1\x20\x11\xb1\x81\x5a\x27\xe0\xeb\xeb\x5f\xc8\x58\xf4\x6c\xcc\xe5\x32\x8e\x1f\xc3\x23\xc3\xcd\xbc\x8b\xbd\x0e\xe0\xc2\xbf\x57\x09\x3d\x4b\xc5\xb1\xa6\x2c\x1a\xd5\x58\x45\x34\x50\xad\x60\x7f\x33\xf5\x7e\x37\x1f\x28\xfb\x3f\x6e\xda\x01\xae\x77\x37\xf0\x66\x09\xfc\x5e\x85\xfa\x50\xad\x5c\x7c\x25\x41\xdd\xc0\x54\xc5\x03\x2d\x76\x5a\x07\xbb\x5f\xfd\xd6\x3f\x5d\xfa\xd6\x37\x16\x77\xd2\xf5\xb3\xf5\x03\x98\xdc\x32\xa1\xfc\x22\xc2\x16\x77\xca\xda\x54\xb4\x27\xde\x52\x63\x15\xf4\x02\x44\x81\x3b\x36\x9a\x2d\xf0\xfd\x32\x86\xcb\xa8\x00\x2b\x4a\x2a\xf1\xbd\x46\x66\xb8\xf4\xe2\x41\x6a\x5f\x43\x07\x23\x7d\x0e\x75\x23\x74\x40\xf1\xb1\xca\x2f\xcc\x9a\x68\xc0\xb1\xb5\x40\xe0\x13\x94\xa3\x2d\xe6\x71\x4b\xdd\xe5\xd8\x0c\x99\xb0\x29\x98\x89\x4a\xaa\xee\xd7\x72\xfa\x86\x56\xea\x7c\x37\x33\x99\xd5\xae\x52\x68\x2f\x93\xb2\x9b\x9e\xef\x05\xd7\x67\x95\x97\x57\xe0\xd9\x26\xe7\x75\x84\x13\x65\x61\x29\x9e\x58\x78\xc9\xbc\x6a\xf3\x49\xe3\x42\x9e\x5f\xec\xf6\x53\x66\xaf\xa0\x86\xca\xb0\x0c\x9f\x04\x9e\xd4\x9f\xaf\x99\x09\xda\x15\xb1\x80\x1f\x23\x0c\x84\x8f\xd5\x52\x9c\x97\x13\x9b\xad\x46\x39\x13\x00\x30\x3a\x6b\xd2\x13\xe7\x6b\x4a\x18\x2b\x2b\xe8\xd3\x10\x0d\xc2\xea\x52\x90\x1b\x7f\xac\x75\x96\x3e\x6a\x84\xb9\xaf\xbc\x22\x0e\x7e\xf4\x18\xf1\xac\xdf\x56\x8b\xf7\x45\xdd\xf9\x70\xb5\xcd\x7b\x37\x1d\x47\x49\x5a\x72\xba\x83\x6d\x0e\x28\x00\x1f\x37\x02\x9b\x43\x2f\x76\x97\x6d\x46\xfa\x63\x08\x39\xb1\x10\x21\xe4\xe4\x63\x4d\x64\xb7\xe3\x34\xcc\x4c\x11\x85\x33\x1e\xed\x03\x63\x13\x6f\xe4\x47\x5a\x47\xf3\x7c\x23\x67\x92\xec\xd9\x44\xe1\x28\xc2\x6b\x65\xb3\x10\xbd\x40\xfc\xa4\x8d\xbf\xb0\x6a\xb2\xc8\xf2\x45\x4a\x33\x8e\x2a\xa2\x6d\xba\x7d\x7a\x62\x4d\x38\x92\xcd\xc7\x95\x28\x9d\x85\xaf\x17\x4f\xed\xa7\x49\x4a\xee\x15\xd8\x16\x2e\x28\x39\x5c\x46\x3e\xf0\xa6\xe0\xb8\x84\xb8\xf5\x71\xcc\x7d\x69\x1e\x6f\x33\x1f\x20\xc1\x4e\xe5\x37\x0e\xfc\x87\x8f\x5b\x66\xde\xc1\x6e\xbf\x8c\xe2\x02\x0e\x01\x8e\xed\x53\x8d\x00\x6c\x96\xb7\x08\xd2\x67\x41\xb1\xc6\x9e\x74\x78\xbe\x3b\x89\xad\x47\xd2\x00\x2d\x5d\x55\x92\xae\x57\x5b\xa8\x26\x5d\x6b\xb2\x84\x87\x89\xf4\xb4\xd5\x58\x70\xf2\x8c\xb2\x28\x4c\xd9\xb6\x45\x14\x00\x3b\xce\x36\xe6\xb2\x72\x51\xbc\x35\xf5\xfd\x87\x67\x74\x75\xe2\x89\x9e\xbc\x98\xe1\x28\xcd\x8b\x78\x7d\x46\xab\xb7\x4d\x7d\x4a\x70\x57\x75\xb8\x9d\x99\x7a\x49\x5d\x27\x33\x11\xa5\xa4\xcd\x24\xe4\x88\xfb\xb4\x0f\x60\xbe\x32\x8d\xdb\x29\xb8\xbb\x10\x65\x53\x05\xd9\x27\x6a\xd3\xb4\xb0\xac\x43\xef\x64\xdf\xaa\xe7\xff\x1f\x60\x0f\x4d\xd2\x2c\x1c\x61\x43\x96\x7a\xa6\xff\x1d\xa6\x0e\x71\xa0\xdd\xa6\xb1\xb9\x96\x56\xf1\x13\xad\x0c\x92\x42\xd1\x20\x01\x98\xf5\xbf\x21\xcc\xc7\x53\x39\xdb\x18\x57\x87\x5e\xec\xf6\x33\x71\x48\xc2\x2f\xf2\xc6\xc3\x27\x8d\x14\x8c\xc2\xba\x91\x49\x86\xc2\x8c\x77\x12\x99\xd5\x83\xe2\x93\xc6\x3c\x3b\x30\xdf\xcd\x0b\x2b\x92\x42\x4e\x35\x0c\x57\x2a\x12\x62\x7b\x55\xb1\x33\xee\xd4\x3a\xc8\xe9\x21\xf0\x49\xf0\xb4\x12\x74\x0c\x47\x49\x1a\xa7\xc3\xf5\xc7\xe9\x5a\x18\x75\x83\x9c\x3f\xe0\xc1\x8b\xf8\x0d\x17\x07\xb8\x36\xda\x37\xa6\x5a\x20\x4c\x49\xa6\xb2\xbf\xb4\xa8\x4c\x57\xc3\xaf\xb6\x6f\x89\xa3\xa5\x97\x83\xff\xaf\x4f\xd2\x90\x01\xcc\x7b\x44\x65\xa3\x9b\xba\xa9\xfe\xb7\x11\x6c\x88\x33\x52\xb5\x41\xf0\x95\x28\x3e\x7c\x91\x95\xe1\x0a\x22\x6e\xed\x04\xc9\x54\x1d\x1d\x40\x7f\xdc\x50\xab\xfc\x47\xdd\xb0\x94\xc2\xad\xc8\x30\xd0\x63\xe1\x13\x45\xc2\xce\x27\x58\xf0\xb0\x10\xfd\x01\x05\x38\x7c\xdc\x08\xfa\xf6\xed\xab\x52\xfb\x65\x0b\xfa\x56\x8c\x25\x88\x69\xd0\x34\x0b\x84\x12\xfd\x98\x62\xd1\xa5\xb9\x7d\x84\x6e\x17\x89\xcb\x87\xf4\xe0\x1d\x85\xdc\x59\x58\x7c\x27\x50\xc3\x86\xc8\x6f\xcf\x6d\xdd\x9b\x7a\x22\x0c\x93\x93\x58\xba\x60\x5a\xe7\x85\xcf\x4b\x7b\xf1\xd4\x37\xa3\xdd\x6b\x98\xae\x56\x11\xce\xb2\x1d\x58\x54\x05\x34\x52\x40\x0f\x53\x20\x84\x36\xbf\xff\x34\x2d\x46\x42\x1a\xd9\xc2\xbd\xe2\x55\xde\x53\x9c\xd2\xf3\xaa\xd7\x71\x6d\x3d\x49\x10\xe9\x80\x23\x71\x4e\x2d\x64\x77\x54\x45\xef\xb4\x16\x25\x1d\x99\x22\x1c\x59\x52\xc8\x90\xc7\x72\x0e\x8a\x62\x22\x08\xd1\x71\x92\x55\x17\x58\x5d\xcc\xc9\x46\x1c\x9e\x77\x35\x5d\xdf\x8e\x78\x56\xa1\x77\x17\x90\xf4\xf3\x3f\xd4\xd4\xa5\x56\x0d\x78\xb2\x0e\xe9\xf4\x02\xdb\x9b\xea\x06\x8f\xd7\xdb\x2f\x15\x7f\x27\x36\xeb\x05\x43\x94\xb8\xc7\x93\x3a\x19\x3f\xd9\xca\xc4\x88\xb2\x34\x1f\x45\x63\x70\x24\xa4\xa4\xaa\x04\xce\x9a\x9d\x8a\x4b\x07\x96\xba\x66\x30\x00\xf9\xc8\x7b\xfb\xc8\xea\x3f\x2e\xf3\xc2\x70\x73\xa2\x34\x3b\x7a\x3a\x7f\xb3\x07\x68\xff\xfe\x6e\x3f\x4b\xcd\xa0\x4a\xb6\xaa\xc9\x29\xae\xee\x1e\x7c\x68\x2a\x55\xee\xdf\xdf\x5d\x2e\x93\x84\xc9\xd6\x7a\x8b\x91\x86\x66\xe5\x16\x5c\xe6\x23\x76\x80\xc5\xd7\xfd\x44\x83\x28\xcd\x10\xa4\xda\x03\xbb\x26\x8e\x56\xd8\x59\x08\xc9\xc8\xbb\xf4\x3a\x01\xcd\xc1\x7b\x5c\xaa\x99\x2d\xa4\xb7\x49\x99\xa0\xe8\x04\xd2\xe2\x19\xba\x7f\x3e\x56\x20\xc1\x8a\x49\x72\x93\xe3\x57\xf0\xaf\x50\x84\x44\x1b\x33\x04\xa4\xb0\x05\xfe\x58\x31\xd4\xfb\xd1\x8a\x05\xbd\x59\xdc\x44\x3b\xde\x75\xa2\xf6\xd4\x94\x27\xce\xef\x2b\x26\x51\xb5\xcf\xc6\x26\x4a\xec\x60\xb6\x5a\x97\xb7\x3e\xa0\x5b\xc3\x0f\x5d\x9e\x7a\x09\x36\x82\xa7\x0e\x6e\x7d\xd0\xb6\x79\x14\x59\x99\x17\x16\x38\x3f\xf2\xbb\xd3\x8a\x87\x73\xda\x77\xaa\xa6\x24\x60\xc0\xd0\x25\xbb\x05\xe3\xf9\x8b\x75\x70\x13\x6e\x5f\xea\x8e\x6d\x52\x18\x17\xaa\x3a\xc3\x91\xea\x7e\xc4\x70\xc4\xb7\x03\x57\xe9\x52\x98\x45\x7d\x9b\x01\x70\xc1\x10\xb8\xa5\xfa\xdb\x6f\x35\x6e\xe1\x25\xd2\x57\x4b\xc7\x42\x57\x76\x1b\x4a\x35\xb3\xa4\x7a\xdc\xd2\x86\x3a\xc9\xa2\x22\x5a\x81\x55\xee\x92\xd3\x78\xc0\xdd\x89\xca\xc3\x17\x3e\x2e\x8e\xf7\x91\x2a\x22\x72\xe3\xae\x18\xdd\x65\xbc\xa5\x4c\x1c\xfb\x51\x32\x60\x96\x9b\x16\x30\x17\xf8\x46\xb7\x91\x8c\xec\x18\x31\x8b\x5a\xbb\xa5\x59\x0a\x0d\x43\xa2\x45\xe6\x25\xa0\xec\xab\x25\xb1\x08\x49\x5c\x98\x61\x38\xbc\x1c\x20\xe2\x97\x68\xb3\x65\x73\x9f\xc0\xf7\x55\xfd\x2b\x2d\x5f\xf2\x47\x8a\x20\x1a\x47\x45\x11\xdb\xc7\x15\x38\x80\x65\x10\xcb\x23\x50\x4d\x6c\x9d\x77\x69\xd3\x91\xf2\x4b\x4d\x6a\x4a\x41\xa7\xe7\x54\xb7\xd6\x15\x84\x01\xd8\x56\xfe\x7b\x4d\x93\xdf\xa4\x7d\x08\x1b\xdb\x7d\x6c\xea\xae\x37\x74\xdf\x82\x67\x76\xec\xdf\xcf\xc9\xcb\x15\x84\x01\xa8\x33\x5f\xa2\x46\x36\x36\xc1\x57\xf9\xeb\x24\x9a\xd8\x38\x4a\x74\xbd\xfb\x9a\xca\x8d\xaf\xb9\x3a\xf0\x38\x4d\x0a\x0b\xf3\x94\x9a\x77\x32\x00\x85\x6b\x81\xa6\xae\xbc\xdd\x06\xa1\x8f\x4d\x62\xcb\x55\x46\x51\x59\x5e\x21\x50\xba\x69\xe7\x5a\x01\xaa\xb4\x2c\x06\xd1\x60\x46\x09\x3d\x5e\x01\xb7\x95\x55\x3e\xa7\x8a\xb9\x7e\x55\xa7\xc3\x61\x3a\xb1\xb4\xcf\xe0\x53\xb7\x50\x51\xc3\x73\x7d\x8d\xee\x90\x8f\xb5\x6e\xe4\xad\x96\x12\xc3\x41\xc8\x15\x3c\xa4\xfa\x71\x8b\x06\x9b\xd0\x44\xbf\xc8\x0b\x75\x6c\x5e\x8b\x42\x93\x59\x05\xb2\x33\xbd\x99\x4f\xda\x78\x15\x93\xd8\xa0\x9a\xcb\x9a\x26\x53\x0f\x4a\xc3\x72\x9e\x03\x93\x1b\x6a\xb5\xcb\xcb\x7c\x02\x3c\x7f\xc6\x67\x94\xe7\x94\xf4\xda\x29\xa5\xda\x79\xbb\x96\x39\xe4\xc5\xfa\xac\x72\xe6\xb8\x89\x31\x87\xe8\xea\x8e\x82\xae\xd1\x0f\x88\x55\xfb\xbe\x9a\x0d\xe3\xb4\x1f\xc5\x8c\x95\x08\x80\xa0\xd1\x04\x55\x98\xca\xa9\x6f\x0b\x23\x05\xcb\xc0\x3d\x6d\x64\x72\xcf\xe5\x69\x51\x12\x8e\xe6\xfc\x28\xbc\x57\x4f\x8d\x55\x8b\x07\xb6\x43\x94\xb9\x4e\xd3\xed\x8a\x06\xf4\x13\xee\x57\x43\x13\xc7\xee\xed\x49\xaf\x97\x4f\x28\xbf\xeb\xc5\x1f\xcb\x6c\x92\x45\xb9\xac\x60\x78\xfc\x70\xb4\x63\x32\x5c\x4f\x39\x39\xfd\x8d\x62\xa2\xc6\x69\x1e\x25\xc3\xd9\x6a\xe2\x8b\x15\x32\x7d\x85\x08\x3c\xf9\x45\x90\x41\x0f\xfe\x07\xe4\xb2\x98\x88\xa3\x28\x36\x49\x31\xca\xd2\x49\x94\x17\x9d\xea\xab\x04\x25\xa6\xb9\x2e\xf0\xb1\xa6\xe2\xc7\xd1\xaa\xcd\x22\x6e\x2b\x13\x3d\x43\x8d\x06\x3f\x23\x1b\x94\x4d\x4a\x8c\xe2\xd7\x25\xb3\x46\xda\x70\x5c\x31\x45\x9a\xe5\x4d\x32\xcd\x49\xcb\x9c\x1a\xa8\xf6\x2d\xb8\x2a\xb3\x5f\xae\xce\x37\xa0\xbd\x2a\xd0\x29\xf3\x28\xb1\x79\x3e\xb6\x6c\x6a\x8e\x45\x4b\xdb\x16\x36\x49\xc2\xd5\xb6\x33\x8a\x62\x1e\x1d\xce\x58\xbf\x1a\x1d\x7c\xa2\xa2\x1d\x2a\x83\x77\xfc\xeb\x86\x2e\x32\x1f\x2b\xc4\xcd\x8e\x27\x71\xba\x4e\x36\x43\x42\x68\x3c\xa5\x4b\x45\x28\xa6\x38\x9b\x14\xa7\x80\xf7\x7d\xca\x93\xa4\xdf\xcf\xc7\x75\x30\x2f\xc6\xe6\xfc\x91\xa3\xe4\x55\xa1\x46\x9a\x73\x98\x2f\x68\x31\xfd\x0a\x9f\xd4\xe6\x9b\xc9\x26\xd4\x08\x89\xd8\xf8\xa8\xd6\xd7\xbb\x35\x55\x3a\x5e\xf7\x14\x54\x36\xd7\x6b\x53\xf2\x99\x8c\xd2\x22\xe5\xcc\x4b\x7c\x9a\x7c\x89\xff\xe2\x74\x8f\xea\x7f\xdf\xe5\x37\xcd\x13\xca\x3c\xe5\x7d\x5c\x27\xff\x03\xf1\xea\xb4\x35\x16\x1f\x53\x90\x81\x80\xff\xaf\xa7\x5e\x3f\xfb\xaf\x31\x79\xf9\x9b\x54\x2b\x7f\x3f\x23\x0b\xf1\xc3\xf3\xbe\x85\x56\x51\xc7\x1b\xa1\xf6\xa1\x17\x59\x01\xaa\xa3\x85\x9e\x94\x1a\xd4\x05\x1f\x76\x1b\xea\xcb\x53\x88\xf1\x03\x85\x18\x3f\xa8\x1b\x83\x85\xa8\x36\xc9\x3a\xd4\x59\xf4\x0b\x94\x62\xa7\xd9\x30\xb3\x85\xc9\xd6\xf7\x62\xe4\x21\x6e\x39\x36\x55\x7c\xc3\xcf\x88\x9a\x83\x4c\x04\x42\xcd\xd8\xb7\xef\x4f\x7d\x2f\xe2\x9b\x81\x12\x34\xf9\x0c\xcd\xdd\x4c\x41\x02\x14\x20\x2e\x51\x7e\x29\xd8\x4e\x42\xc0\xcc\xf9\x0a\x14\xe0\xf2\x3f\x4d\xfd\x04\x7b\xb3\x45\x75\xa8\x9b\x86\xe4\x27\xc8\x33\x19\x60\x3d\xc2\x6f\x3e\x76\x0b\xe9\xb2\x89\xe3\xdd\xaa\x0b\x6e\x8e\x0a\x26\x52\x40\xa5\xdf\x14\x83\x4b\xdc\x3e\xf6\x41\x0e\x4f\x9c\x93\xbe\x77\x8b\x85\x85\x19\x96\x2f\x30\x83\xf0\x48\x9f\xf6\x0e\xd7\xff\xf8\x89\x9e\x0f\xbe\xfa\x65\x06\xe7\xde\xea\x5e\xd9\x39\x09\x0b\x9a\xd8\x28\x29\x09\xc1\xf5\x71\x3f\x8d\x73\xe5\x42\x7a\x5c\xb9\x90\x1e\x57\x19\x6f\xb5\xf0\xd1\x46\x27\xa0\x30\x5d\x2e\x06\xcb\x09\x95\x21\x5d\x0a\x7c\x79\xa7\x5a\xc5\x68\xe2\x69\x53\x20\x4c\x6b\x2a\xa4\x3f\xc7\x70\x2d\xb3\x25\x04\x47\xd4\x68\xf1\x24\xcd\xa3\x22\x15\x3c\x54\x99\x4d\x2f\xc8\x89\x8a\x6a\x13\x6b\xb2\x78\xfd\xf1\xea\x71\xb9\x04\xf1\x80\x98\x00\x7c\xae\xac\x0b\x4f\xe2\x07\x6b\x7a\x73\x6c\x19\x35\x55\x28\x9e\x78\xca\xa3\x34\x77\x2d\x50\x02\xe3\x6f\x4c\x95\x75\xe2\xef\x4e\x15\x39\x9c\x4b\x4d\x8e\xb1\xf0\xbc\x34\x5a\x32\xd3\xd6\xb5\xce\xed\xdf\xcf\x03\xfc\x3e\xc0\x1b\x04\x03\x57\x6b\x65\xb4\x74\x85\xfd\x3a\x59\x6d\x23\x50\x5e\x72\x53\x45\xa7\x3f\x4a\xbf\xc3\xac\xed\x40\x99\x19\x7e\xa4\x94\xbe\x8e\x4f\x95\x31\xc5\xa7\x41\xe7\x85\x05\xaf\x56\xe3\x40\x08\xbc\x7f\xd1\x82\x50\x22\x09\x47\xa7\x5e\x76\x2a\x9d\x0c\xcd\x84\xb6\x40\x76\xfb\xa1\xbb\x11\xe7\x1f\x3f\xbc\x42\x1b\x86\x69\x12\x75\x6a\x66\x1c\xb5\xc6\x47\xa1\xdd\x2c\x23\xcd\xa2\x0b\xe4\x1f\xaf\x5d\x88\x6a\x06\x35\x49\x68\xb3\x9d\xca\xb5\xfa\x98\x5a\x5d\x67\x40\xa1\x66\xdf\x96\x9a\xfa\x0f\x16\x05\x0c\x32\x3c\x7e\x60\x85\x2c\x0e\x28\x4a\x5e\xcd\xf2\xf6\xc1\x6e\x3f\x02\x81\x54\x2c\xd7\x3c\x86\xc8\x15\x19\xac\x3b\x77\x75\x08\x72\x13\x83\x42\x5c\xb6\x7d\x2b\x2c\xd5\x0f\xf8\xfd\x7e\x23\x9e\xf1\xd8\xfe\xa6\x62\x4e\xfe\x8d\xa6\xf6\x5e\x0d\xf6\x3a\x62\x44\x28\x5c\x34\xb1\x80\xd2\x7e\x50\xaa\x2a\x1e\x9a\xf1\xa4\xcc\x6d\x4d\x4e\x73\xaa\xe4\x34\x55\x73\xc7\x30\xb3\xb6\x10\xc5\x49\xdc\xc9\xc7\x4a\xbf\xe8\xe3\x60\xaf\xfb\xd6\x38\x2d\x88\x27\x0c\x3c\xee\x5d\xb5\x56\x9c\xd7\x28\xeb\x1c\xac\xb6\x10\xed\xdd\x0d\x6a\x7e\xbb\xf4\x88\x9c\xda\xd1\xf3\xb5\x6d\x51\x3a\x1d\xee\x04\x5a\x34\xb4\x55\x05\xce\x84\x61\x9a\x0d\xb8\x43\x4a\x5a\xf0\x30\x5d\xb1\x10\x5d\xd3\xa6\xa2\x67\x15\x75\x37\x8f\x92\xd0\x3e\xa2\x88\x10\x77\xb0\x96\x29\xda\xbb\xf8\x70\xb0\x6c\x0b\xee\xf0\x16\xe9\x3b\xe2\x1f\x66\xd0\xab\x87\x61\x06\x81\x27\x04\xfd\x3b\x69\x51\x06\x72\xbc\x8b\x56\x7e\x29\x29\xd0\xd5\x08\xa6\xf9\x25\x45\x10\xa6\x68\x1e\x9a\xa2\xd5\x18\xc3\x05\xff\x3b\x5c\x13\x9f\xb4\x21\x25\x6b\x26\x5a\x75\x31\xb6\x43\xa7\x9d\xac\xe0\xc9\xa9\xef\x7a\x19\xdb\x41\x54\xb0\x77\x8a\xcb\x39\x3f\x9a\x2a\x6e\x8d\x1b\x60\xf9\x28\x9d\x90\x0d\xa6\xa4\xea\x70\xa9\x43\xe5\x7b\xbb\xee\x3c\x98\xdb\xf0\xc5\xcc\xe3\x35\x22\xff\x5c\xcf\xe3\xcf\x36\xe1\x0e\x2e\xae\x82\xe3\xa5\x48\x49\xdc\x0f\xac\x30\x59\xeb\x28\x11\x34\xfe\x3b\x21\xd4\xfa\x18\x63\xcd\x46\xc3\x11\x7a\x0e\x45\x15\xba\x1a\x43\xa2\x16\xdd\xe2\xcb\x9f\x95\x03\xa2\xdc\x38\x41\xcc\xa9\x27\x83\x7e\x32\xf5\xfc\x13\x04\x9a\x52\x19\x50\x91\x55\x34\xe1\xc6\x27\x01\x32\x3c\x9f\x46\x37\x19\x13\xd6\x18\x9a\x1c\x44\x0d\xc0\x6e\x57\xa7\x1e\xc7\x62\x11\x04\x84\x4d\x77\x5d\x78\x55\x64\x66\x68\x07\xeb\xdc\x52\x27\xed\xd1\x8a\xe4\xfd\x7f\x4f\x7d\xe6\x7c\x09\xa5\x00\xf9\x60\x92\x1b\xa8\x20\x50\x9f\x3e\x62\xd8\x99\x9e\x1a\x38\xd0\x00\xe6\xfa\xc8\xd4\x07\xd2\x67\xf5\x0e\xca\xe1\xb9\xd0\x90\x9b\x9d\x5c\x61\x9a\x17\xb5\x8a\x30\x0b\x5a\xf1\x49\x8b\xe2\x1c\x89\x76\x4a\xb0\x24\xdd\x1d\x4a\x7c\xe3\x6d\x25\xaa\x6f\xc2\xb0\xcc\x59\x54\xbf\x5a\x5a\x04\x7e\xee\x2c\x7a\x8c\xba\x25\x4b\x32\x45\x61\xc2\x91\xfc\x86\x28\xf5\xa9\x2d\xf1\x23\xbf\x5f\x4d\xd2\x15\x93\xd8\x8e\x02\x83\x96\xd4\xca\xb5\xd4\x26\x54\xba\x16\xe5\x23\x29\x7c\x49\xfc\xa0\x12\xab\xcf\x5b\xc8\xbc\x4b\xdd\x72\xdc\xcf\x6c\x1c\x1b\xd6\x55\x45\xa4\xa0\x55\xda\x36\x95\xe8\xc6\x31\x97\xcc\x88\x8d\x87\x22\x73\x1c\x55\xdd\xcc\x47\x55\x02\x4a\xa5\xcc\x22\x22\x75\xc8\x2a\x18\x91\x5e\x5b\x25\x3b\xa0\x7b\x8f\xd7\xac\x5d\xc9\x77\xf9\x52\xc8\x4f\xd5\x82\xfb\x33\x82\xa7\x5c\xbb\x4d\x75\xc1\xec\x9c\x41\xc5\x06\xe7\xa2\xe1\x84\x46\x80\x99\x21\x58\x67\x4e\x2a\x3b\x78\x6a\x25\x72\xfb\x5a\x14\x9a\x84\x14\x48\x14\x8d\xea\x39\xa7\xf0\x58\x7d\x07\x06\xe4\x15\xc5\xcb\x84\xb6\xa1\x98\x83\xea\xda\x45\xdf\xd2\x84\xda\x7a\x73\xaa\x5c\x60\xcf\x2a\xbc\xec\xe8\x74\xaf\x0a\x98\xa2\x47\x54\x79\x5f\x19\xe2\x5c\x99\xfa\xf4\x7e\x0b\x5b\x0d\x3e\xbe\xa5\xd1\x6c\x28\xff\xb0\xeb\x91\xd2\x85\xe7\xc6\x2c\xa7\xf8\xe0\x8d\x92\x9e\xee\x55\x61\x94\xc0\x35\x3e\xf2\x19\x66\x36\x31\x03\xa3\xbc\x7f\xcf\x2b\xf7\xd2\xf3\x53\x6d\x81\x60\x32\xd3\x8f\xad\xf2\x70\x79\xa0\x10\xfa\xeb\x53\x2f\x71\x7f\x4c\x35\x96\xac\xa6\x51\x68\xf3\x39\x5f\x0d\x3e\x06\x33\x1c\xec\x99\x37\xe8\xe5\x3a\xd3\x3e\x25\x65\x4d\xd7\xce\x27\xad\x2d\x46\x69\x3c\x50\x25\x6a\xac\x8a\x28\x55\x5c\xd6\x0c\xc9\x4d\xa5\x9f\x33\xc9\xd2\xdc\x86\x25\x19\xe2\x2b\x32\x13\x43\xc5\xe2\xaa\xed\x93\xa5\xfb\x5a\x93\xa9\xa9\xc8\x02\x8e\x71\xf4\x3a\x30\x3c\x3c\x92\x33\x34\x72\xf9\xb8\xb1\x46\xfd\xa3\x6e\x6c\xfa\x29\xda\x41\x85\xe3\x45\x3f\x21\xa6\x59\xca\xd0\xe3\xa2\xda\x75\x8a\x04\xf2\xdc\xc2\x6c\xf7\x68\xc9\xe7\xf8\x08\x22\xc4\xcd\x46\x9d\xe8\xa5\x85\x43\x44\xb5\xe9\x28\xba\xd7\x71\xa5\xed\x7e\xbc\x81\xac\x7e\xed\x6b\x22\x72\xde\xf1\x74\x9a\x2b\x81\xcf\xa8\xae\xb4\xb8\x9c\x8c\xd3\x55\xa6\x8b\x02\xd6\xc0\xdb\x40\x44\x71\x73\xaa\xda\x0b\x81\x54\x8b\xa5\x77\x8b\xac\xec\x72\x9a\x0e\xf2\xa2\x5c\x5e\xce\xb5\xfd\x24\x7c\xad\x45\xb2\xb0\xa5\x80\x16\x47\xfd\x4c\xba\x0f\xc5\xb6\xbe\xfa\x08\x1f\x2b\xf4\x37\x4b\x49\x72\xd9\x11\x48\xff\x9c\x9e\x06\x1f\x4f\x1f\xe1\xaf\xee\xee\xdf\xff\xf7\xa9\x8b\x52\xf5\xe9\x8a\xec\xd6\x5b\x28\x60\x82\xe8\xcc\xfd\x07\x5c\x69\x47\xfa\x2a\xa5\xee\xce\x4b\xb2\xd6\xfd\x2a\xcd\x51\x3c\xf2\xed\x1b\x4a\xde\xe0\x03\xba\x31\x5a\x73\xd7\x9e\xe8\xf9\xa1\xf3\x79\xa0\x44\x6f\xff\xbb\x60\xfb\xcf\x79\x3a\xe4\xd2\x81\x25\x4e\x8d\x18\x8f\xc5\xe6\x33\x0b\xed\x4b\x9c\xec\xe8\xd1\x1c\x03\x16\xf3\xcf\x49\xc0\x4e\xf8\xa8\xf4\x96\xa4\xa2\xa1\x64\xde\x77\x6c\x78\xf4\xe2\x2a\xe9\xc5\xb1\x4c\x07\x45\x93\x78\x8e\xa7\x03\x6d\x25\x85\x6c\x0c\x4e\x23\xd7\x89\x39\xe4\xba\x58\xbe\xf1\x2b\x6e\xb0\xd0\xf0\xe6\xc5\x38\xe8\x1c\x7a\xd1\x5b\x65\x1e\x98\xf7\xb5\x78\xd7\x7b\xf7\x1e\x20\x7c\xbc\x8f\x2b\x9c\xd7\x62\x76\x6c\xeb\xd1\x56\x82\x48\x6e\xd7\x46\xe7\x6b\x5f\x13\x31\x9f\xe0\x29\xd7\x45\x92\x45\x79\x61\x93\xdc\x26\x8c\x16\xe2\x52\xdf\xc7\x2c\xe1\x93\xc6\x44\x26\x05\x10\x6a\xa7\xf0\x73\x1f\x02\xf2\xc8\x75\x39\x9e\x14\xce\xbd\x20\x28\xb9\x4d\x06\xd4\x22\xc2\xf9\x59\xa0\x92\x89\x1f\x63\x5e\x4b\xfd\x82\x06\x89\xa0\x02\x9e\x72\xd4\xe7\x51\x8e\x2f\xb8\xac\x34\x25\x2e\xab\xbd\x8a\xcc\x9a\x20\xac\xf5\x1c\x3f\xef\xbf\xa4\xd1\xcd\xc7\x6d\x9d\x37\x93\x34\x8e\x8a\x28\xcc\x15\x3f\x90\x43\x7b\x3e\x69\xd4\xc2\xab\x68\xc8\xc4\xb1\xcd\x86\xd0\x63\x58\x72\x80\x8f\x9f\x54\xda\x01\x73\x12\x9b\xf5\xb4\x9a\xa7\xaa\x65\x07\xa3\x4b\xfa\x77\x5a\xf0\xdf\x49\x66\xb3\x74\xc8\x2d\x52\xee\xa5\xc3\x0f\x47\xaa\x51\x2d\x39\xc4\xb7\x6d\xb2\x12\x09\x8d\x4b\x58\x97\x2a\xc6\xd7\x22\x1e\x63\x93\x2c\x67\x76\xc0\xef\xdf\xb5\xb7\x57\x7f\xcc\x27\x2a\x4e\x89\x92\x41\x99\x17\x59\x64\xf3\x1d\xda\xed\xec\x4a\xa0\xdc\x68\x4e\xab\x4a\x07\xbc\xac\x44\x37\xa9\x9a\xaf\x4c\xa4\xc7\x0f\xe0\x85\xfc\x96\x6a\x53\x63\xd7\x1b\x7a\xcd\x5b\xa4\x5b\xba\x75\xc9\x55\x15\xfa\xa6\x28\xac\x57\x01\xc1\xd4\x47\xb2\x8a\x8c\xe2\x4d\x05\x58\xfd\x41\xad\x6f\xbc\x8c\xd7\x77\x78\xaf\x9a\x4f\x94\x5e\x0d\xa3\x4e\x58\x9e\x1e\x60\x2b\x44\x90\xb4\x93\x40\x39\xdc\xe1\x8d\x29\x2d\x6f\xc2\x14\xf6\x85\xd4\x28\x4b\x93\x28\x9c\xf1\xb7\xf9\xbd\xa9\xaf\x81\xe2\x51\x60\x29\x3a\x8e\x0a\x74\xfd\xfd\x96\x93\x59\xaf\x4b\x70\x59\x37\x30\x07\x0a\xc9\x02\xb6\xce\xac\xa1\x96\x08\xf5\x60\x37\x1a\x26\x69\x66\xc4\x21\xc0\x35\xd1\x7f\xf3\x25\x57\xdc\x91\x44\xb0\x9c\xe4\xb6\xa0\xfe\x18\x5c\xe2\x96\x6a\x65\x9e\x7f\x9a\x32\x5b\x2c\xce\x3f\x9a\xd6\xa4\x26\x3b\x87\xe7\x1f\x6c\x54\xd7\x07\x34\xe8\x8c\x82\xd4\xff\x4a\x99\x04\x99\x81\x7d\xb5\x24\xfd\x23\x77\x5b\x67\x68\xe9\xe2\xe3\x86\x6f\x4b\xb5\x40\x2a\xf6\x68\xc7\x17\xa1\x8e\x20\xfa\xe5\x13\x25\x9c\x64\x0a\x74\x3e\x5a\x80\x90\xa2\x69\xa0\xa8\x55\x97\x03\xc5\x20\x25\x4d\xb1\xad\x4b\xea\x22\xc7\xe6\xdb\x69\x16\xa1\x58\x27\xc8\xc8\x4d\x1a\xa9\xb8\xdb\xbf\xa6\xd7\x86\xd0\x91\x29\x5b\xe0\x72\xbd\xdb\x96\x88\x16\x64\xc8\x5f\x3d\x44\x84\x56\x1f\xd3\xfd\xf2\xb1\x76\x54\x8f\xa3\x09\x1b\x70\xbb\xce\xa7\x4d\x6d\x3f\xed\x99\xaa\xfd\x2c\x2d\x46\x36\xdb\x41\x1b\xa7\x18\x17\x6b\xaf\x90\x6a\xef\x71\x86\xc6\x0f\x9b\x2e\x60\xdd\x7c\xaa\x57\x6d\x4a\xd2\x7d\xd9\x84\x5a\x16\xa8\x71\x29\x2c\x6a\xde\xc2\x2c\x76\xcd\x27\x0a\x82\x5d\x36\x51\x56\x4d\x21\xa7\x72\xf7\x86\xde\x71\x3b\x3d\xba\x52\x3e\xd9\x50\x0c\x89\x37\x54\x3b\x2a\xe3\x94\x7c\xe2\x5c\xde\xfb\x66\x4c\x01\x1e\x20\xa2\xef\xe3\x79\xbb\x16\xad\x5f\xfe\x16\xbf\xe0\x4b\xce\x26\x6a\x32\x5a\xcf\x23\x22\x0d\x76\xbc\x31\x39\x1b\xc3\xf2\x89\xba\xf2\xb4\x2c\x0c\xdb\xee\xa0\xa4\x80\xbe\x31\x3e\x9e\x3e\xfd\x70\x6b\xd6\xc1\xee\x2f\xec\xf6\x08\x28\x77\x0f\x61\xa1\xfa\x90\xf6\x76\x84\xfa\xa7\x81\x7e\xb5\xc9\xea\x78\x6e\xfd\x6f\x68\x21\xdf\x6d\x78\x2e\x48\xe7\x6f\x68\xab\xb1\x5a\x62\xb4\xf2\x7a\x4a\x2b\x95\x43\x4b\x9f\x77\x68\xa9\x96\x9f\xfd\x61\xa0\xf4\x5d\x7e\xa8\x9d\x96\x2e\x68\x2b\xfe\x0b\x9e\x75\x60\x72\xa6\x7a\x49\x37\xbf\xaa\x59\x7c\x4f\x3d\xb0\x9c\x7c\x45\x3b\x0a\xd7\xc2\x72\xc9\xc7\x6d\x2d\x02\x07\xbb\x85\x59\x41\x99\x4a\x12\x39\xba\x57\x3e\x51\xc8\x71\x66\x8b\x32\x4b\x72\x32\x45\xc4\x40\xf8\x91\xf2\x30\xba\x8a\x64\x50\xe8\xc9\x34\xa8\x34\x6f\xd9\x39\xe5\x3d\x2f\xe8\xcb\x8f\xb0\xf3\x20\x7a\x3a\xef\xe0\xae\xbe\x2d\xf2\xf5\x8e\x8a\xf0\x4e\xd1\x67\x44\xc9\xad\x25\xa0\x19\x9a\x6c\x20\x45\x56\x40\xa9\x00\x79\xf8\xb8\x91\x52\xed\xdf\xdf\xcd\x4b\xc0\x74\x8b\x4e\xb9\xa8\xe3\xda\x0e\x35\xd7\xa6\x5f\xc6\x71\x95\xed\x3a\xb2\xc6\x4d\x3c\x7a\xc8\xa9\x40\x4f\x1d\x93\x79\x5b\x43\x4e\xe5\xc0\x7c\x37\x8f\xc4\xa8\x4f\x88\xab\x1d\x67\xdc\x78\xb2\xc1\xb2\xa0\xa6\xdd\xc2\x44\xbe\x4e\xef\xba\x6f\x7d\x27\xae\x62\x7a\x2e\x1b\x4a\x37\x1d\x90\x7b\x0d\x69\xbd\x6b\xc7\x77\xc2\x89\xc7\x94\x6c\xdf\x5f\x4e\x7d\x83\xfb\x35\x85\x95\x4d\xb2\x74\x9c\x16\x04\xf8\x57\xaf\xdf\x49\xbe\x29\x29\x18\x6f\x3e\x97\x17\x99\x2d\x40\xc8\xaf\xe2\x54\x8d\xa4\x88\xa4\xb9\x14\xdd\x43\x9b\x14\x36\x5b\x8e\x6c\x3c\xb0\x19\x4b\x14\xd4\xb4\x65\x9c\x4a\x55\x35\x7c\xa4\x69\xae\xe3\xba\x1d\x67\x7b\xb2\x76\x2c\x67\x55\xfc\x62\x0a\x96\xf6\x10\xe1\xf3\x5a\xf3\xbb\xea\x11\xbd\xd4\xaa\xb8\x9f\x99\x28\x71\x8a\xfb\xa8\x48\x7d\xaa\xfb\xae\x3e\x55\x9a\x0a\x93\x32\x9b\xf3\x7c\xbb\xe3\xfa\xcf\xa0\x8f\x86\x24\x09\xe1\x33\x56\xba\x7b\x53\xa5\xbb\xad\x3b\xbf\x96\x4d\x3f\x43\xb0\xf9\x9c\x5b\xcb\x94\xd9\xff\xd9\x76\x0f\xf5\x22\x15\xc0\x4b\x58\xb8\xaa\xfb\xae\xe9\x1e\xeb\x3a\x31\xc6\xda\x97\x88\x33\x02\x3e\x51\x11\x21\x39\xca\x98\xe5\xa2\x5a\x31\xaa\xe9\x2a\x65\x30\xe5\x00\x7c\xb1\xb1\xe9\x1f\x9e\x7f\xb9\x5b\x26\x51\x31\x4a\xab\x17\x9a\x2b\xbe\x1a\xeb\x59\xf0\x49\x5b\xc6\x3b\x2e\xe3\x22\x8a\xcd\x3a\xd3\xdc\xb0\x24\x5c\x57\xe6\x99\xd7\x1b\x3f\xb7\x70\xa8\x3b\x31\xb1\xcd\x8b\x28\xa1\x36\x55\xbc\x38\x2e\x0c\xea\x50\xe1\xac\x02\xf0\xfb\x99\x35\x2b\xc5\x28\x4b\xcb\xe1\x08\x8f\x1c\xfb\xea\x39\xb5\xc7\x9e\x0b\xfc\xdf\x9b\x70\x25\x49\xd7\x62\x3b\x18\x32\xac\x0c\xde\x0f\xd0\x03\x3e\x6e\x7b\x41\x93\xd8\x26\xc5\xfa\xac\xcf\x0a\xfe\x78\x5a\xa3\xe8\x54\x13\x1f\x19\xf2\x5c\xcf\x53\x33\xb4\x08\x69\x38\xb2\x96\x73\x79\xe0\xcc\x1a\xf2\xde\xb6\xe1\x99\xa0\xd5\x22\xbd\x83\x46\x82\x68\x2b\xaa\xdd\xfe\x91\x9e\x0e\xc9\x19\xf8\x97\x05\x9c\x66\x28\xfa\xda\x48\xb7\xbb\x8a\xca\x55\x0d\xb9\x18\x3c\xbb\x9b\xc6\x2c\xf7\x31\x22\x7f\x43\x16\xcb\xe4\x36\xe4\x06\x77\xa6\xbe\x92\xb1\x45\x4b\xb2\x63\x5b\x1c\x98\x77\x6c\x0b\x0f\x9e\x9c\xd7\xf9\xf0\x66\xe0\x05\x04\xee\xd5\x88\x20\x36\x2b\xf6\xd4\x3a\x4b\x70\xf5\x58\xee\x1f\x4c\xd5\x84\xf9\x1e\x5d\x00\x63\x11\x35\xcf\x9e\xea\x62\x5c\xe7\xa5\x67\xe0\xdf\xa6\xab\x61\x6b\x70\x8a\xa8\x51\x23\xfb\x0b\x24\xde\xa8\xdf\x9e\xc5\xce\x8c\x19\x7b\x53\x31\xac\xd7\xac\x59\xb1\xdc\x18\xcd\xfc\x46\x2d\x80\x7d\x6e\x2a\x41\x50\x1a\xa2\x21\x5e\xa0\xeb\x1a\xa6\xad\x7b\xe4\x4c\x9e\x97\x19\xb6\xda\x36\x9a\x52\x5b\xdf\xd1\xd8\x0c\x2c\x8d\x2f\xc5\xfa\x12\x0a\xc9\xdd\xa9\x6a\x29\x63\x52\x16\x22\x94\x8f\xaa\x17\xec\x0d\xe6\x59\x04\x5d\x34\x49\xe8\x2b\x44\x94\xe4\xe1\xc4\x75\xdf\x3e\xb1\xcd\xf7\xbb\x10\x92\x2d\x30\x80\xf8\x38\xd8\xab\x55\xb4\xe9\xf6\xa5\x0f\x56\xf5\xc4\xea\xb6\xd2\x28\x46\x81\x6f\xeb\x92\xd2\x58\x86\x85\x25\x10\x90\x77\xb4\xfc\x25\x1b\x3f\xb3\xa8\x02\x8d\x36\x21\x83\x76\x0e\x57\x19\xc1\x8c\x37\xc7\xe6\xaa\x2e\x72\xea\x8b\x5e\x07\xed\xef\xdf\x75\x90\xee\xc4\x64\x66\x6c\x8b\x8c\x93\x14\x41\x7c\xe9\x4d\x09\x14\xec\x41\x88\x81\x0d\x63\xa2\x2b\x3a\xd3\x83\x37\x95\x3a\xd7\x9b\x0d\x4c\xe5\xf0\x7c\x77\x2d\x0a\x57\xa4\xf0\x81\xed\x67\x8b\x6e\x93\x8f\x1b\x08\xc4\xd2\x8b\x07\xbb\x99\x8d\x86\x89\xc8\x4d\x61\x43\x3e\x8a\xf1\xce\x27\xf5\x79\x62\x57\x9e\xac\x2e\x48\x3c\xb0\x30\x4d\x10\x61\x5d\x50\x44\xad\xeb\x4a\x9f\xfb\x0d\x0d\x52\x30\x19\x0f\x8b\xc4\x19\x8c\x7a\x24\xc8\xf7\x54\xb4\xd4\xc1\x38\xc2\xf0\x3d\x0d\xce\x8b\x2c\xb0\xd5\x93\x05\x64\x73\x1f\x2e\xa2\xd8\x82\x4f\xe0\x5d\x31\x9a\xa7\xb1\xfb\xbb\x7a\x36\x82\x77\x21\x94\x6e\xba\x4f\x04\x42\x1f\xb5\x75\x9e\xae\xd9\x38\x26\xee\x23\xa2\x99\x87\xda\xbb\xfd\x1e\xfb\x60\xea\x7a\x84\xfe\xd1\x33\xbd\x2a\xe5\x10\x11\x15\xa5\xcf\x5f\xed\x73\x4f\x28\x53\xf2\x93\x53\xa5\xbb\xcf\x6a\xd1\x88\x94\x6e\x6b\x6b\xbe\x1f\x21\x8a\x75\xc2\xba\xce\x6f\x79\x1b\xe9\xf9\xe1\x02\x8e\x11\xcc\x2b\xfd\xf0\x1d\xa7\x00\x7c\x47\xd9\x39\xde\x24\xc7\x02\x76\xaf\x0f\xd4\x20\x99\xd1\x26\x9e\x37\xc1\x97\x02\xdb\xec\x53\xac\xc3\x18\x9c\xbf\x47\xa5\x03\x40\x3a\x9a\xcc\x13\xa6\xd9\x64\xa7\xa6\x1c\x7f\x9f\x7e\x54\xe1\x21\x8a\xea\xed\xad\xd1\xb0\x92\x4b\xdb\x70\xf5\x56\x9c\x2c\x43\x75\xf3\x18\x53\x4f\x36\x44\x96\x16\x17\xbb\x79\xba\xe6\x56\x05\xe9\xf1\xd0\xbd\x1f\xcd\xa6\xc4\xa5\x6e\x9e\x96\xec\x68\x81\xe0\x0e\xcc\x24\x66\xd6\x04\xbe\x13\xe5\xf3\x2f\xb4\x05\xb7\x42\x57\x91\x82\xb5\x87\xb1\xcf\xeb\xbd\x34\xca\xc2\xd8\xce\xd5\xf0\xc7\xea\xdd\x88\xcb\xae\x97\x9b\xd3\x6e\x73\xdf\xa7\x6f\x13\xc2\x63\x0b\x1f\x93\x14\x11\xe9\xfa\x25\xb4\xa5\xe7\x2a\x31\xaf\xa7\x17\x0e\xc7\x7b\xe9\x2a\x5d\xe2\x75\x60\x9e\x47\xef\x75\x4d\x8b\x7b\x4f\xb5\x63\x71\xbe\x8d\x9a\x1d\xe7\xd8\x98\x21\x7f\x85\x28\x0c\x64\xae\xb7\x18\x1c\x06\x02\x76\x6d\xea\x73\x95\x9b\x18\xa2\xfc\x67\x53\xd5\x38\xff\xa7\xaa\xdb\xf7\xb2\x0a\x6a\xc7\xe9\xda\x4c\xcd\x29\x97\x2e\x4d\xae\xc0\xb3\x1d\xee\xb4\x75\x10\xf5\x4d\xe6\x51\x3c\xd1\xef\x3f\x35\x55\xd8\x3a\x54\x1e\x20\x7b\xb9\xad\xf7\xa8\x2f\xc5\xa7\xc5\xe8\x31\x27\xe1\xf5\xf3\x47\xb4\xb4\xcb\x0f\x68\x65\x60\xe2\x35\x8d\x08\xac\x58\xbb\x36\x54\x33\xe5\x5d\x04\x7b\xd0\x0c\x79\x83\x2e\x14\x37\x2a\x44\x07\xfc\x26\xc0\x2d\x57\xdf\xfa\xe6\x4b\x0e\x84\x57\x1d\x25\x33\x10\x9a\x63\xf9\x2c\x6a\x1c\x10\x18\xa7\x7a\x69\x58\x7e\x3f\x6b\x6b\x58\x1e\x46\xe3\xb1\xa8\xcc\x39\x74\xdf\x4b\x1c\x3a\x14\x68\x39\x25\x79\x4a\x02\x5d\x90\x19\x5c\xa3\x35\x1a\xd7\xb8\x7d\xc3\x37\x4a\x7c\xb9\xe7\x69\x3d\xcc\x31\xe4\xc0\x84\xee\x44\x74\x8d\x9a\xcc\xd7\xc5\xae\x21\xf9\xef\xb9\xea\xbb\x90\xa2\xfc\x39\xfd\x06\x56\xb2\x3f\x9b\xaa\x7b\xbc\xa0\xca\xae\x90\x4b\x41\x58\xb6\xab\xa1\x1c\xf2\xf5\xee\x30\x5a\x2e\xf2\x5a\x29\x5b\x7b\x65\x5d\xac\x75\x1a\x5a\x93\xed\xd0\x0a\xe1\x44\x9d\x75\xe6\x3b\xce\x56\x1b\x95\x5e\x0c\x52\x68\x84\x89\x2c\x80\xaf\x75\xfd\xb8\x86\xa4\x14\x51\xfc\x04\xbd\x7c\xe7\x4d\x5d\xfd\x8a\x23\x9f\x3a\xdb\xcb\x6d\x3d\x95\x02\x7c\x86\x77\x8c\xf1\xf2\xae\x92\x1b\xb9\x45\xeb\x27\x66\x0f\x8a\x60\x88\x87\xef\x6a\x3f\x43\x10\x51\xb1\x12\x1e\xa5\xf4\x0e\x63\x82\x25\xaf\xb1\x55\xfe\x11\xd6\x68\x71\x65\xac\x76\x41\x31\xd3\x41\x0d\xf6\xfd\xa9\x07\x82\x2f\x4e\xbf\xda\x18\x41\x07\x1d\x0e\x6f\x62\x4f\x43\xc7\x5c\x84\x96\x12\x1f\xb7\xf9\x67\x71\xbb\xfc\x8c\xaf\x9d\xfc\x4d\xe0\x2b\x16\xa7\xb5\x6b\xc4\x91\x46\x94\xb2\x7f\xff\x81\xee\xb7\xd3\x88\x39\x0d\x2c\x3f\x12\xf8\x9d\x7f\xb3\xa5\xeb\xa3\x3b\x8e\x06\x83\xd8\x3a\x0a\x3b\x2b\x80\x29\x65\x87\xe3\x6d\x6a\x9d\xc3\xcc\x0c\x4a\x23\xd0\x07\x84\xb5\x7e\x42\x1f\xe2\xe3\x16\x20\xaa\x9b\xa7\xab\x91\x2d\x94\xf1\xde\x66\x4d\xb5\x53\x07\xd2\x93\x34\x2b\xec\x60\x8f\x57\x36\xff\xdd\x40\x67\x0d\x7f\x32\xf5\xac\x8d\x3f\x9e\x2a\xf2\xe1\xdc\x86\xd2\x65\x99\xeb\xe9\x5c\x7a\xaa\xb6\xbe\xdb\x58\xd0\x44\xd7\xdc\x67\x6e\x3b\x7b\xd5\x82\xa2\xbd\xbc\x85\x6c\xfa\x8c\x6a\x22\x76\x1c\xa0\x19\x4f\x68\x7c\xac\xe7\x99\x93\x75\x1d\x79\x65\x14\x6c\xb3\xf5\x81\x59\xa7\xea\xb7\xd3\xa2\xdc\xbf\x9f\x7f\x1b\x76\x24\x28\xc1\xcc\x6e\xf8\xf0\x7b\x68\xf2\x47\xab\xe8\x02\xb3\x9e\x51\x38\x79\xe4\x34\x85\x78\x3e\x36\x96\x00\x3c\xd9\xbb\x34\x37\x44\x52\x01\x8f\x51\xfa\x5d\xe9\x31\xc8\xf4\xec\x38\x1b\xe1\x4b\x94\x4b\x61\xbd\x3f\x83\x25\x4b\xde\xab\xb2\x68\xbb\xa8\x13\xa1\x99\xde\x1e\x0f\x5b\x3d\x3b\xa3\xda\xb7\xef\x29\x4b\x9f\xd3\x75\x13\x93\xa7\x94\x2f\x57\x3a\x1e\x9b\x82\x7b\x3c\xb0\xa6\x3d\x08\x94\x9b\xd3\x03\xc5\xde\x48\xb3\x41\x94\x50\x1d\xc3\x19\x69\x7c\x1c\x28\x6f\xa5\x8f\x95\x87\xf3\xb0\xfa\xd2\x59\x3f\x4a\x2f\x2a\x61\x72\x48\xe7\xcb\xff\xa7\x05\x48\xfe\xc1\x23\xae\x10\x7f\x9a\xa9\x1e\x88\x23\x5d\x56\x6f\x00\xd9\x2c\xa4\xe1\xa4\xf7\xe8\x8b\x3c\xbd\x19\xa9\xc0\x9e\xea\x74\xae\x9f\x97\x92\xfe\x35\xdc\xa8\xac\x2f\x4f\xd5\x51\xef\x5f\xe8\xee\xdf\xff\x68\xf5\x54\x00\x61\x73\x7a\xe7\xcc\x5b\xab\xab\x76\xc4\x02\x97\x26\x7f\x8a\xf0\x9f\x39\x21\xdc\xd7\x2c\x3d\xef\xaa\x40\xf7\xe3\xc0\x67\x53\x9b\x34\x50\x84\x98\xe0\x03\xdd\xa3\x08\x68\x51\x5e\x3b\x46\x9b\xa9\x43\xf1\x9c\xb0\xc1\xb1\xe0\x51\x65\xed\x14\x3f\xdb\xf1\x0d\xd3\xbf\x8d\x71\xc2\x27\xb5\xf6\x96\x38\x2a\xe6\x94\x94\xd3\x4f\xd5\xaf\x5e\x21\x40\x01\xbb\xe3\x69\xa5\x52\x8c\x1d\x5c\xc8\x2e\x2d\xf5\xd5\x01\x44\x31\x67\xb4\xcb\x8a\xe2\xbf\x5e\xd7\xfe\x0d\xef\xbb\xc9\xb9\x6a\x92\xa8\x88\x9c\xcf\x0c\xd6\x89\xeb\x5a\x4b\x87\x0d\x39\x91\x9e\x9d\x71\x75\xcf\xd0\x64\x51\xbf\x6f\x4d\x32\xa3\x1b\xbe\xae\xd0\x15\x63\x43\xe2\x34\x14\x8d\x0e\xdb\x1a\x2d\x2e\x50\x00\x28\x6c\x58\x60\x7c\x38\xcc\xe3\xb0\x48\x17\xbd\x87\x57\x8e\xf8\xe7\x7a\x6b\x8f\x6d\x98\x86\x2b\x85\x89\x62\x0e\x64\xb1\xf9\xbf\x1f\x28\xa8\xe7\x7d\xb5\xc0\x16\x99\x78\x15\x7a\xff\xd5\x73\x6a\x31\x3e\xe7\x2d\xcb\xe3\xd8\x0e\x2d\x45\x20\xae\x57\xa9\xfa\x4e\xf1\xf6\xa9\x2e\x52\xfa\x96\xe8\x22\x81\xe9\xde\x51\x4e\xfe\x27\x95\xea\x70\xbf\xcc\x5c\x42\xec\x8c\x68\xbd\x29\x6d\x1b\xf6\x9f\x95\xe4\x0d\x41\x8b\x90\x23\x8c\xb9\x0a\xe0\x05\x55\xed\x0d\xd3\x32\xcb\xd1\x0c\x89\xed\xf9\x33\x84\xd8\x5c\x24\xa6\x1f\xe2\x7f\xc0\x9a\x26\xd5\x63\x5f\x01\x31\x09\xd5\xf6\x1e\xad\x26\x92\xe0\xb6\xd5\xa4\xc0\xaa\x7a\x16\xf7\x8e\x74\xf1\x81\xb6\x9d\xc4\x94\x42\x2e\x77\x44\xdd\xfb\x25\xca\x0b\xc5\xfb\xa6\x0a\x1c\xb0\xc0\xbc\xa7\x6c\xeb\x6f\x4d\x95\x00\x39\x22\x0e\x47\xf7\xa2\x71\xcb\xff\x42\x33\x95\x35\x88\xbd\x16\x76\x98\x16\x85\xe8\xcd\x21\x27\x62\x79\x70\x3e\x71\x01\xeb\xb7\xd3\x7e\x6c\xf3\x7c\x56\x4d\x05\x54\x24\x11\x8c\xfe\xed\x8d\x1a\xf7\xca\x2f\x92\xdd\x9e\x86\x9a\xc6\xaf\x29\xbd\xa1\x73\x2a\x03\xa9\xb9\x74\x58\xf2\xac\xf1\x2a\xdc\x10\x4d\xe4\x63\xd5\xce\x29\x1b\x7d\x0c\x88\x55\x14\x51\x95\x24\xce\x09\x25\xcf\xf0\x16\x1e\x14\xff\x43\xe0\x45\x05\xb3\x68\x30\xab\xfc\x1e\x1f\x28\x51\xd6\x93\x0a\xd3\x7a\x5f\x67\x08\xad\x06\x07\x23\xa7\xc6\xbc\xe0\xb1\x72\xaf\xc9\xdb\x94\x2e\xf8\x3a\x4f\x90\x19\x3d\xdc\x6b\x13\xa4\x36\x29\x3c\x32\x3f\x31\x99\x4d\x8a\x51\x9a\x72\x7c\xc8\xc3\x45\x77\xc5\x5c\x52\x39\xdd\xc2\xe2\x2f\xce\x68\x0f\x61\x28\xc8\x62\xa5\xd8\x83\x75\x09\x3b\xf7\x8e\x8d\xa7\x35\x78\x90\x59\xb2\xa4\xef\x78\x4a\xc1\x79\xd5\x05\x7e\x5e\xd7\xed\x97\x97\xa3\x81\x59\x8d\x0a\xe6\xd1\xba\x2d\xde\xf3\xbb\xa0\xbd\x02\x92\xca\x47\x4a\xec\xb8\x9f\x26\x03\x57\x2c\x70\x6a\xd0\xc7\x94\xe8\xcb\xb1\xba\xd7\x56\x92\x3f\xe9\x15\xe3\x2e\x4d\xfd\xd6\xca\x0a\x4a\x08\x3c\xb7\xe3\xbe\x90\xf8\xcc\x01\x47\x41\xa6\xf5\x23\x3c\x55\xfa\xcc\xd1\x27\x7a\x35\xfc\x9f\x66\xbc\xdb\x4d\x0e\xcf\x73\xb4\xfc\x01\x4d\x3e\xc0\x51\x5c\x55\x40\x86\xf0\xb9\x62\xe7\x32\xb5\x09\x01\xc7\x5f\xd2\xf5\x63\xff\x99\xd9\xa8\xd9\xaf\xfb\xfe\xc7\x47\x7b\x3e\xef\xb8\xd5\xaa\xe6\xc3\x12\x75\x7b\x3c\xba\xb5\xbd\xa7\xc5\xf8\xab\x75\x00\xb3\x7d\x47\x4f\x3b\x2b\x61\xac\xe2\x6d\xef\xde\xc0\xfe\x2d\xda\x96\x5a\x3a\xf6\xdc\x54\x39\xa1\x9f\x57\x90\xd4\x09\xec\x73\x52\x22\xad\x1e\x38\xa2\x8d\x7b\x4a\x33\x80\xed\xbe\xd9\x60\xaa\xcd\x5a\x54\x91\x0d\x6d\x6e\x8b\x59\x25\xa1\x78\x51\x2f\x68\x4a\xaf\x6c\x2b\xf0\x1c\x8a\x63\x4a\xda\xa1\x8c\x8b\xcc\xac\x46\x69\x6c\x59\xea\x17\x69\x19\x36\x77\x47\xb7\x73\xb6\x92\x9f\x7a\x0d\xcf\x34\x59\x8e\xb2\xf1\xac\x77\x40\xfe\x63\x8c\x00\xda\x02\x5e\x7d\xa2\xe7\x09\xff\x73\xd4\xc6\x0c\xd1\xab\x1b\x6d\xf5\xd7\xd0\x64\xd6\x26\xd2\x40\xce\xc6\xad\x74\xf1\x4c\xe4\xd4\xcf\xf3\x56\xe0\x65\x01\x5e\x8b\x6c\x4d\x9c\x8c\xae\x5a\xa2\xea\xc7\x95\xf1\x53\x5e\xc4\xeb\x73\x4a\xee\x8e\x51\x1f\x3e\x51\xe4\xd3\xe3\xca\x67\xfe\xbd\x40\xe9\xe5\x6c\xaa\xf8\xb5\x1f\x65\xc5\xa8\x46\x1c\xa2\x3f\x6c\xb3\xdf\x28\xd2\xe4\x09\x8f\xbc\xa3\xfd\x15\xaf\xfc\xb1\x0d\xba\x1e\x87\x1f\x2f\x1c\x72\xad\xe8\x18\x4b\x80\x43\xef\xe1\xde\xa5\xa0\x43\x8f\x98\x81\x76\x44\xc7\x6e\x1b\xac\x6e\x88\xbf\x8d\xaa\xcd\x5c\x2d\x0f\xbc\x33\x13\xf3\x96\x91\x3e\xa1\x53\x8e\x9e\xf5\xce\xa7\x7a\x8a\xba\x74\x99\x36\x51\x5c\xe4\x0f\x31\x60\x59\x9d\x4e\xf5\x0e\x2d\x47\xb1\x05\x08\xd2\x22\x93\xba\xa9\x3a\x4d\xef\x04\x1e\x7f\x3a\xad\x84\x1c\x9b\xae\x45\x4b\x2f\x1e\xec\x8e\x6c\x3c\xa9\x76\xc4\x8e\x47\x2b\xcf\x04\x9e\x27\x79\xa6\xad\x43\xc1\x26\x55\x1c\x3f\xeb\xd5\x38\xff\x1e\x8d\x3d\xc4\x84\x4f\x93\x87\x0c\x36\x7b\x68\xe1\x0b\x0d\xe2\x8b\x04\xf5\xf2\x22\x95\x16\x09\x44\xaa\xff\x07\xc5\x05\x7c\xdc\xe8\x39\x27\x56\x63\x18\xda\x09\x94\xb8\x95\x6f\xfa\x59\x25\xdb\x78\xb6\x05\xa4\x7d\xae\x3b\x74\x85\x66\xc6\x58\x02\x45\xc0\x38\x37\xad\xd1\x04\xc4\x73\x50\x91\xfa\xe9\x8f\x45\xc0\xef\xe1\x07\xf3\x0f\xbb\x59\x5a\xe6\xb9\x05\xcb\x1a\x28\xf8\x11\x2d\x5f\x7e\xc4\x29\x91\x0f\xa2\x21\x85\x20\xa2\x56\x79\x3d\x50\x5d\x2d\xf7\x02\x1f\xbb\xa1\xd0\x08\xe6\xd4\xf6\x8d\x36\x61\x4d\x53\x8c\xd3\x7c\x32\xb2\x62\x49\x87\x84\x0c\x32\x72\x7c\xac\x18\x9e\xcb\xb1\x7d\x2d\xea\xc7\x16\x1a\x10\xae\x5a\xea\x4b\xac\xa7\x14\x0c\xb0\xbd\xe7\x53\xff\xb3\x2e\xf1\xec\x9b\x24\xcc\x47\x26\x73\xec\x02\x97\xd3\x7a\x19\xee\xd3\x81\x57\x04\x4a\xec\xaa\x19\x18\x2d\x13\x73\x4e\x45\x33\x1f\x4e\x55\x65\xe0\x6a\x63\x88\xec\xdf\xdf\x0d\xd3\xf1\xd8\x26\x3e\x4e\x6f\xa3\xaf\x2b\x43\x23\xbb\xf6\x88\xf2\x40\xb8\x43\x9b\x1f\x72\x8e\x5b\x81\xc7\x5c\xd0\x2b\x87\x54\xe2\xd1\x5e\xe7\x95\x57\x80\x6e\x49\x8c\x82\xc6\x69\xa4\x7a\xdc\x22\x5b\x83\x91\x25\xd8\x53\x49\xdb\x4d\xd5\xd5\x38\xb0\xcb\x51\x18\xc1\x70\x15\x40\xdb\x67\xca\xc9\xed\x58\xa0\x6c\xe7\x51\xc7\x43\xe0\xbf\xd1\x86\x85\xe5\x45\x39\x88\xa4\xef\x1f\xd0\xe2\x87\x4a\x6c\xf0\xc3\x16\xc4\x74\xa9\x8a\x28\x4d\x04\x22\xb3\x14\xac\x9b\x9a\x1a\x4e\x88\xb2\xba\x23\xa9\x71\xef\x8e\xba\x93\xcc\x2e\xff\x7c\x77\xe9\xcb\xf4\xb4\x01\x02\x6d\x05\x8a\x73\x7a\x43\x01\xb6\x3b\x36\x3a\xbf\x74\xd0\xf5\x6f\xd1\x6f\x20\xd6\xb9\xa9\xcc\xac\x3a\x70\xbe\xc0\x4d\xce\x6e\x54\x81\x0e\x9e\x04\x37\x5e\xe2\x99\x5f\x53\x51\xdf\xaf\xfd\xe7\x14\x1d\x60\x93\xbb\x4a\xab\x01\xd6\xd6\x59\xa2\xb4\x2b\xa1\xfb\x05\x47\x4c\x25\xf2\xab\xc0\xe6\x84\x5e\xba\x02\xe5\x0b\x0b\x0e\x6e\xc0\x90\xa5\xda\xd3\xff\xde\x45\x37\x0d\x46\x0a\x8c\x67\xd0\xdf\x70\x95\x5e\x0a\x30\xa8\xdd\xe4\x4b\x04\x10\xe8\x42\x1b\xff\xb9\xb0\x79\x11\x8d\xd3\x24\xe2\xf6\x0a\xc7\xd0\x5f\x14\x15\x85\x7f\xde\x1a\x12\x2d\x93\xda\xff\x43\x25\x17\xdd\xaf\xf5\xf0\x6a\xfd\x52\xb5\x6f\x47\x45\x14\xa6\xd9\xa4\xe3\x6d\x96\x67\xb0\x93\xf0\xc9\xc6\xc3\x9f\xda\xb7\xaf\x9b\x4e\x6c\xa6\x12\x5d\x64\x0e\xef\x2a\x33\xec\x77\x5b\x34\xe3\x97\x48\xd9\xd3\x69\xcc\xb0\x7b\x53\xe0\x83\xbe\x73\x1a\x3d\x6c\xfa\x01\x3c\xbf\xd8\xb5\xaf\x85\xd6\x0b\x38\x88\x40\x61\xc7\xb5\x02\xfe\x76\x6b\xa2\x6b\xc7\x69\x81\x4c\x02\x7f\xf5\x08\xac\xc7\xf0\xfe\x4f\x2b\xae\xe6\x13\xbd\x87\xdf\x46\x75\xd5\x55\xee\x92\xd9\xdc\xb5\x00\x22\xe0\xb8\xa1\x94\x92\x6e\xb8\x06\xc8\xb5\x91\x25\x0e\x6b\xf5\x86\x01\x53\x9e\x44\x4a\x2c\x9d\x34\xd5\x18\xc6\xf1\x2c\x85\xb8\xec\xf6\xac\x1b\x74\xae\x62\xe0\x7d\x91\x12\x1c\x71\x87\x4d\x9c\x2e\x17\x04\x05\x71\xec\xaa\x56\xa2\xa6\xb6\x96\xdb\x16\xcd\x8c\xdf\x55\x51\xd9\x90\x4a\x8e\x12\x52\x6a\xea\x75\x56\xfb\x1c\x95\x2c\x66\xaa\x5f\xc4\x1a\x77\x5f\x49\xe0\x5c\x55\x5d\x9d\xc7\x6b\x0c\x8a\x6f\x3f\xcb\x4b\x3a\x6b\xa4\x68\xe2\xc0\xf1\x06\x0b\xeb\xc0\x7c\x77\x60\xc6\x10\xe9\xa6\xa1\x80\x05\x05\x25\x6c\x14\xda\x10\x03\x4b\x9f\x8a\xd3\x52\xcd\xcc\xba\xfb\x10\xc2\x8c\x07\xca\x26\xe2\xae\x2a\xad\xbd\xd5\xd6\x19\x04\xc5\xf4\x75\x45\x46\x39\xa2\x31\xd8\x23\xee\xfd\x26\x29\x85\x08\x33\x14\xb5\x69\xc3\x79\x0c\xa6\x7b\x8a\x43\xed\x45\x34\xfa\x26\x8e\xa1\xda\x27\x0e\x24\x7e\xa7\x39\xdd\x66\xe1\x6d\x5f\x9b\x44\x99\x25\xa0\x0d\x75\xe7\x6b\x14\x00\x3a\x01\xff\x45\x2f\x87\xec\xeb\x84\x2b\x49\x54\x74\x54\xa9\xfe\x0a\x5d\x17\x1f\x37\x54\x37\x29\xe6\x1a\xd0\x70\x40\x8c\x0a\x6e\xae\xb3\x7f\xd5\x74\x64\xc1\x44\x86\x71\x54\x14\x96\xcd\x38\xf0\xb6\xa1\x67\xc7\xc7\x2a\xff\x29\xd2\xc2\xc4\x51\x32\x44\x48\x82\xa8\xe0\x43\x2d\xc9\x02\xed\x8f\x9a\xea\xbc\x9c\xb4\xb8\x4d\x7c\xbb\xcc\x8b\x68\x39\x92\x19\x88\x92\x3d\x5a\x2e\xf9\x58\xe9\x39\xa8\x85\x09\x51\xd2\x35\xd5\x90\xa0\xbd\xef\x8b\xcc\x26\x83\x9d\x35\x2e\xba\xcf\xd0\xee\x01\x01\x46\xa0\x84\x34\x8f\xff\x21\x50\xe0\x36\xb6\x1b\xa1\xb5\x57\x13\x1a\x93\xfb\x4d\xc5\x6a\xb7\xa6\x18\xb1\x06\x23\xcb\x2c\x4c\x3d\x6b\xed\x63\x85\xb3\x2d\x47\xc3\x32\xb3\x3b\x95\xd9\x2b\x0a\x76\xd2\x47\xed\x47\xcd\x0f\xa7\xca\x1f\x02\xc2\x91\x00\x81\x2e\xd3\xc5\x61\xe9\xf8\x2e\x21\x6c\x7c\xdc\x94\xe9\x5b\xe8\x8e\xed\xd0\xf4\xd7\x0b\x8b\xa4\x11\xc9\xf6\x25\xb5\x88\xdf\x55\x0f\xf8\xa4\xe2\xb0\x8e\xd2\x38\x5e\x5f\x4b\x53\x84\x03\x48\xf5\xfe\xfd\x54\x89\x93\xd0\xfd\xf1\xff\x57\x6e\xbf\x9f\xb7\x2e\x2c\x24\x96\x41\x43\x0a\xe0\xf7\xe7\xf4\xab\x7c\xac\x2a\x19\x63\x1b\x8e\x4c\x12\xe5\xe3\x8e\x27\x90\x42\x56\x83\x8f\x95\x66\x64\x5a\x16\x93\xb2\x98\x55\xc9\xe2\x2d\x9d\x2c\xde\x52\xfe\x6e\x80\x2f\xf9\xd8\x0d\xf5\x81\x0d\xe3\x28\xa9\xb2\x23\xc7\xf7\xd8\xbe\xe1\x59\x21\x5f\xfe\xfb\xda\xcb\x8b\x43\x21\xa6\xc8\x2b\x6e\xd9\xff\xf0\xcc\x86\xbf\xa6\x49\x19\x23\xdd\x12\xcf\x57\x04\xc3\xc0\x64\x8e\xd4\x84\x97\x7c\xba\xb3\x9d\xa2\x13\xc0\x6f\x1f\x6a\x63\x2b\x33\xcc\xac\x08\x8d\x49\x3d\xc9\x27\xde\xcc\x8e\x01\x01\x73\xb7\x32\x19\x2c\xd2\xf4\x11\xc5\x8a\xfd\x48\x75\x79\x6e\xa7\x8c\x0b\xec\x8a\x1b\x53\x0f\xaf\x72\x33\x00\x86\xc7\x0d\x1a\x90\xfc\x0f\x81\x0f\x19\x8e\x6a\x56\xc2\x51\x64\xb8\xfc\x2f\x81\xb6\xbd\x50\x42\xd6\x65\x62\x5f\x9b\xd8\x90\x50\x4a\xc6\xe0\x94\xbf\xa5\x34\xe5\x6d\xd3\xb1\xc8\x45\x65\xa9\x9b\x97\xd9\xb2\x09\x2d\xc6\x20\xe8\x6c\x9f\x23\xe0\xe6\x13\xdd\x80\xb9\x09\xc0\x9a\x4f\x54\x70\xff\x5a\x31\x9a\x53\x56\x59\x17\x14\xf5\x0c\x0c\x3b\x04\x8c\xbb\x89\x76\x80\x50\xf0\x04\x12\x3c\xd6\xff\x0e\xbe\xec\x9e\x6d\x94\xac\x56\x81\xdb\xd0\xb9\xdd\x2e\x6a\x99\x90\x05\x27\xd9\xfa\x85\x1e\x6a\xd6\x40\x02\x0c\xe1\xe3\x79\x6d\x1b\x7b\xbe\x65\x55\x5c\xaa\xf6\x09\x82\x79\xf1\x63\xa2\x97\xec\x27\x9f\x26\x9e\x93\xe8\x74\xf4\x6a\x69\x77\x56\xb1\xaf\x44\xea\x9e\x17\x0a\x5b\x4b\xac\x22\x7f\x11\xa8\x8e\x00\x6e\x79\xc7\xbb\xc1\xf2\x00\x04\x7f\x07\xf5\xda\x20\x82\x7f\xaf\x2d\xd1\x18\x47\x89\xcd\x38\x86\x05\x6c\x7b\x4b\xf1\x4a\x6f\x35\xf6\xa4\x17\x16\xba\xb9\x81\xab\xb0\x92\xb4\x77\xe9\xb1\x9b\x9c\x89\x5d\x23\x6b\xe4\x8e\x6f\xa0\xe1\x92\xa9\x88\xe3\xf8\x35\x75\x35\x8d\xcb\xb1\xdd\x5b\xcd\x28\x47\x3d\xf0\xb9\xe9\x14\xf7\xe6\xb8\x69\xae\x59\x61\x16\x64\x3e\x10\x22\xbe\x0b\xad\x24\xd1\x7b\xf5\xbc\xed\x39\xa6\xdc\x22\x28\x3f\x35\xf5\xda\x58\x2c\x36\x24\x3e\x45\x34\xe5\x6a\x5c\x03\xec\x2b\xd7\x5b\x4c\xaf\xba\x83\x68\xd5\x66\x43\x91\x50\x40\x64\x8a\x66\x14\x3e\xf6\x5c\x19\x13\x96\x71\xb1\xde\x51\xce\x4d\xa7\x95\xae\x64\x6b\x6c\x31\x8e\x1c\x48\x87\xf1\xfc\x40\x71\x27\x36\xb5\xac\x68\xd3\xa9\xfe\xd0\x8b\xdd\x58\x78\xb8\x6d\x76\xd4\x0d\xfd\x58\x12\x50\xcf\xd2\x15\xab\x64\xbb\xd1\xc9\xc1\xc7\x8d\xbe\x3e\x72\x2c\x9d\x94\xfd\x38\x0a\x0d\xeb\xc7\x62\xf3\xc0\xd4\xe4\xe3\x1a\xbf\x33\x2c\x9e\x25\x75\x41\x24\x64\x9f\x63\xcc\xf0\xc9\xf4\x19\xa5\xa7\x35\x4c\x8b\x88\x83\x03\x25\x8b\x4a\x4f\x56\xea\x42\x52\x9e\x1b\x47\x99\x19\xda\x19\x0d\x47\x1c\x51\xca\x03\x9d\x0d\xa5\x63\xb5\xa3\xe7\x09\xb0\x23\x28\x7d\xce\xf9\x6d\xe9\xf7\x15\x98\xcb\xa8\x3f\x37\x13\xd2\x26\x04\xfc\x62\x3b\x21\x5c\x58\x62\x67\x7a\x82\x8d\xae\x99\xd8\x32\xa8\x83\x57\x25\xc9\x26\x90\x9c\x93\x7a\x9d\xe4\x18\x0a\x73\x79\xae\xd1\x51\x03\xb9\xe0\xdc\x74\x54\x9c\x8f\x3b\xe7\xe3\xa9\x57\xb9\x19\x45\xc5\x2e\xba\x4e\x24\xe4\xd0\x2c\xd7\xe1\x05\x72\x96\x2d\x5a\x30\x24\x8d\x55\xfd\x78\xcc\x04\x15\x24\xc5\x43\x4f\x57\xd4\x26\x77\xb6\x31\xf2\x0f\xcc\x77\xed\xb8\x6f\x5f\x7f\x3d\x66\xc3\x7e\x29\x99\x29\x47\x9c\xcd\xe0\x61\x5e\x10\xc9\x2b\x8c\x4c\x36\x36\xa1\x2d\x8b\x28\x34\xd0\xa0\xc2\x2c\xbc\xa9\x5a\xb8\x8e\x20\x54\x53\x9d\xa1\x3c\x7c\x62\xb3\xfe\x88\x57\x65\x9f\x01\x73\x0e\x80\x68\xa7\xe7\x97\xae\x27\x37\x94\x58\x21\x94\x51\x01\xc4\xec\xee\x79\x40\x6d\x47\x4f\xe9\xc2\xec\x44\x7f\xa0\x2a\x58\x89\x79\x38\x8b\xa7\x61\x2c\x5d\x69\x71\x33\x37\xab\xb6\x1a\x7f\x1d\xa5\xbc\xf7\x13\x7a\x90\x7c\x1c\xe8\x62\x54\x92\x53\x3b\x3b\xc0\x21\x80\xb7\x0f\x02\xc5\x76\x07\xd1\x57\x24\xdc\xab\x17\xc8\xc7\xaa\x6c\x36\x4e\x33\x53\xa4\x59\x54\x8e\x69\xd1\x41\xd0\x08\xa4\x9b\x8f\x55\x70\xbf\x9c\xc6\x71\xba\x66\x07\xbb\xa9\xa4\x2a\x8a\x57\x1d\xa7\xee\x0a\xbd\x47\x8c\x72\xd6\x23\xc3\x72\xfb\xff\xd0\x14\x92\xa8\x55\xb5\x8f\xb3\xcc\x1c\x7f\x04\x83\x09\x1b\xec\x91\xa9\xb7\xb5\xa8\xa9\x74\x50\x4a\x9e\xa5\xd1\x8a\xe9\x74\xbe\xf9\x12\x3f\x58\x88\x5e\xf0\x71\xa3\xa8\x78\x78\xfe\xe5\x2e\xd4\x74\xbd\xfa\x19\x7d\x40\xea\x22\xaa\x8c\x98\xa5\x79\x15\x9c\x94\x39\x71\xd9\x91\x52\xbe\xa5\x50\xec\xb7\x54\xf1\x3d\x2f\x27\xd5\x3e\xbc\xb7\x9a\xe8\x4e\xa5\x75\xc9\x69\xae\x5e\x51\xb2\x33\x7f\x46\x13\x48\x98\xe4\xd5\x57\x03\xee\x9e\xe9\x29\x7a\xc1\xd5\x40\xf9\xa5\xa1\x07\xd0\x39\xfb\x2a\x0d\xca\x6a\xf7\xc5\x10\xba\x86\x75\x45\x52\x32\x25\xc0\x77\xa2\xd6\x96\x61\x27\x52\x4a\x74\x41\xbb\x0a\xd4\x95\xc4\x56\x94\x44\x10\x0b\xaf\x85\x31\x35\xd9\x74\x1f\x89\xad\x8d\xd2\x74\x22\xc5\x50\x66\xec\xd4\xd8\x3b\x2e\x35\x2b\xb3\x55\xbb\x9e\x53\xc5\x41\xd0\x0d\xaf\x22\x68\x9e\xea\xf9\x92\xf2\x39\x55\x70\x63\x61\x05\x91\xf5\x6f\xa8\x97\x2c\x75\x97\xd3\x32\x61\xf5\x92\x9a\x35\x90\x94\x9a\x15\xb7\xb4\x28\x13\xfb\x85\xa2\xfb\xde\xde\x40\x42\xd3\xbd\xf4\x3d\x58\xbe\x6e\x05\x8a\x72\xcc\x9a\x5e\x28\x2a\xde\x50\x98\xf0\x1e\x94\x4d\x81\x68\x5d\xa6\x57\x8f\xa8\xe4\x86\x22\x1f\xdf\xc7\x0b\x73\x8a\x6d\x55\x04\x8a\x41\xf1\xb9\x12\xd4\xbd\xa6\xe7\xce\x75\x5d\x9f\x6a\x36\xb0\x1d\x98\x3f\xd0\x0d\xb3\x74\x6d\x20\x96\xfd\xc8\x19\x3e\xd7\x23\x83\x12\xe6\xad\xa6\x02\xdd\x2b\xaf\x74\x8b\xcc\x44\x89\xbc\x43\x91\x40\xf6\xfb\xb4\xb2\x60\x4d\xcb\xa4\xb0\xd9\x9e\xea\x86\xb1\x48\xd6\xe5\xd2\x58\x8c\x0b\x11\x11\x1b\x89\x30\x14\xaf\xe4\xa2\x3e\x0e\x94\x2e\x03\x08\x18\x98\xee\x8f\xf6\x3c\x41\x72\x3b\x8a\xc3\xdc\x88\x89\xd8\x1e\xdb\x10\x3b\x34\x4a\xd2\xfe\xf0\x88\xd8\xb7\xaf\x5b\x44\xc3\x51\x41\x51\x81\x6b\x24\x77\xf8\xd8\x39\x55\x55\xb4\x79\x68\x26\x56\xd9\xd5\x62\xe4\xf2\x71\x93\xd4\xbe\xd0\x4d\xcc\x2a\xba\xce\x9c\x28\xbd\x17\xa0\x3e\xd9\x2e\xd3\x5f\xe6\xa3\x2c\x4d\xc7\x0c\xcc\x82\x22\xc0\x7d\xfe\x7c\xd2\x16\x06\x99\xb2\x48\x59\x1b\xdb\x83\xf3\x40\xdd\xf8\xb8\x11\x6f\xbd\xf2\x4a\xf5\xdf\x95\xb4\x2c\x6a\x8e\x00\x1e\x2b\x3d\xa9\xa4\xe0\xe2\x68\x95\x59\x81\xdc\x46\x1f\xf8\xf7\xe3\x63\xed\x30\x2a\xa2\xd7\x6d\x92\xef\xf0\xfa\x78\xd7\xf8\x85\xe3\xc5\x3c\x50\xb4\x73\xe6\xf3\x4a\xd9\x5e\x35\x35\x32\xe7\x40\xda\xcb\xfd\x42\x6b\x93\x62\x54\xe6\x91\xc9\xc7\x58\x6a\x1c\x69\x50\x1b\xcb\xfa\xcd\x3a\x2b\x52\x06\x14\x85\x9e\xad\xa8\x8c\x17\x54\x8d\x68\x90\x55\x51\xf4\xac\xaa\x06\x60\x27\x41\xbc\x32\x03\x9c\xde\x75\xdf\xba\x36\xca\xa6\x66\x00\x39\xaa\xf4\x6d\xf6\x10\xd8\x7d\x59\x59\x4a\xe9\x26\x81\xff\xe2\x9f\xfc\xe3\x8e\x9f\xc1\xe7\x89\x86\xc0\xc7\x4a\x79\x32\x35\x85\x7e\xf2\x98\xa4\xf2\x1a\x7c\x8d\x3a\x8e\xd3\x75\xc8\x3d\x20\x7d\x3e\xca\x2c\x53\x11\xc8\xa4\x7b\x77\xd2\x99\x5e\xd9\xdd\xab\x9b\xda\x84\x74\x4b\x1a\x9a\x28\x07\x9d\x26\xca\xd3\x7a\x4b\x9d\xd8\x02\x3a\x16\x5e\xf6\x38\x50\x5b\x4e\x9b\xa8\x53\x95\xb4\xd2\x75\x20\x69\x40\xe7\x20\x1f\x2b\x4a\x22\x75\x5c\x53\xd6\xc1\xfe\x33\x81\xa2\xc8\x5e\x50\x86\xe3\xf7\xda\xfc\x76\x87\x91\x49\x0a\x50\x91\x34\x78\x8d\x3c\x14\x01\x98\x54\xe1\x14\x25\xf0\x78\x9b\x6b\x49\x77\x92\x46\xa2\x09\x80\xf5\xf7\x56\xa0\xe4\x33\x6f\x39\xfe\x61\x11\x85\x2b\xd6\x91\x7c\x9c\xbb\x42\x75\xd5\x7c\xd2\xac\x7e\x1f\x58\xea\x66\x96\xe8\xe9\xfc\xc8\x1d\x64\x50\xbd\x1c\x3e\x69\x63\x8b\x9b\xa2\xb0\xc9\xc0\x70\x71\x58\x40\x0b\x9f\x9d\x6f\x4e\x5d\x19\xed\xc5\xbf\xe3\xeb\x40\x28\x96\x21\xb1\xbd\x33\xf5\x24\x81\x33\x50\x80\xc2\xac\xbc\x83\x7a\x02\x70\xbc\x8b\x53\x2f\xc4\x7e\x5a\x79\x01\xfe\x37\xff\x10\xfb\x16\x2f\xb0\x88\x82\x45\x37\xb4\x8a\x53\x30\xd4\x1f\xa8\x7e\xb9\x9b\x81\x32\x9c\xdd\xbd\xe1\xb7\xc0\xb9\x0d\x8a\x7e\x44\xfb\x90\xf6\x00\xe1\xe9\xd3\x48\x97\x58\x74\xe6\xe0\x3f\x7d\xc1\x75\xe5\x56\x51\x1c\xf6\xd6\x2b\x6a\x25\xda\x83\x5a\x0d\x80\xa5\x67\xa8\x72\x86\xc4\x62\x17\x35\x1d\xe0\x07\x1f\xe3\x3c\x1c\x91\xe5\x97\x7a\x0f\x09\x50\xfd\xf2\xb7\x78\x09\x78\x04\xfb\x06\x46\xf3\xec\x86\xe4\x59\x24\xce\x00\x66\x09\x6e\xe6\x69\x2c\x0f\x82\xd6\xd2\x15\xa0\x7a\xf0\x40\x45\xb0\x67\xa6\xaa\xe1\xef\x4e\x83\x54\xf0\xca\x2b\x5d\x33\x1c\x66\x66\x55\xe1\xd1\xa8\x12\x6c\xdf\xf0\x15\x83\xed\xbd\xc7\x55\xa7\x8f\x21\x11\xd8\x2a\x14\x06\xe6\xf1\x7e\x50\x5b\x4b\x9e\x5f\x94\xa8\x38\x50\xa1\xca\xaa\xcd\xd6\xd3\xc4\xce\xd1\x6e\x89\x57\x73\x97\xb6\x54\xb7\x44\x7a\x28\x02\x29\x98\xae\x7c\xf1\xff\xd7\xc8\x5a\x34\x4c\x0c\x41\x95\x0b\x87\x18\xf4\xb8\x5b\xd7\x64\x54\xc1\xfa\x09\xdf\x45\xf8\x5b\x67\xe8\x0a\x11\x7d\x9f\x0c\x34\x19\xaa\x1c\xac\x93\xbf\xc1\xc2\x21\x91\x2c\xe6\x3d\x84\xc5\x18\xb5\x9e\x01\xba\x1d\x45\xd9\xb8\xc5\xd5\x71\x6c\xf3\x9c\x93\x23\x11\x0f\x00\x3f\x8b\x8f\x5b\xfc\x5f\x5f\xee\x8e\x4d\x3c\xc9\x4c\x58\x44\x21\xb4\x09\x25\x0f\xa4\xc6\xda\x0f\x14\xe8\x7d\xdd\x99\xa7\x67\x76\x6c\x06\x48\x16\x10\x0f\x74\x7a\x8a\x72\xd0\xd9\x70\x08\xbf\x8d\x8b\x35\xb3\xce\xfb\x12\xe2\x2e\x16\x66\xe1\x13\x6f\x1a\x5c\x16\xa3\x34\xcb\xb5\xd3\x1e\x8b\xcf\x88\xdc\x84\xea\x5b\x4f\xd3\x95\xdd\xbe\x9c\x04\x06\x17\xfe\xec\x2e\x3d\x68\x80\x3c\x47\xf0\x79\x25\x35\xbc\xa4\xe5\x48\xdc\xc7\xa7\x4a\xb7\xf8\x06\x52\x04\x27\x29\xef\x94\x16\xcf\x37\x42\x8a\x7d\xfb\xba\x99\x1d\x96\xb1\xc9\x14\x1a\x75\x44\xa1\x51\x47\x14\xa5\x3f\x4a\x56\x85\xdf\xd2\xd6\xa6\xed\x2b\x2f\x63\x3b\x88\xcc\x2e\xba\x70\xc6\x9a\x02\xaf\xfd\x78\x53\x01\x0e\x7f\x31\xf5\x15\xaa\xed\x3d\x2d\xed\x44\x33\xd4\x35\x6f\x39\xd4\xf4\x48\xe0\x97\x85\x26\xed\x79\xff\xfe\xee\xb0\x8c\x12\x6b\x3a\x7a\x0c\x68\x12\x98\xa2\x54\xc7\x26\x59\x11\x57\x44\x41\x49\xe8\x92\x05\x3e\x69\x89\x3b\xfb\xd5\x52\x82\xa8\x43\xc4\x77\xab\x1b\x93\x6a\x06\x7d\x1c\x3f\xc5\x5e\xe4\xc2\xc3\x57\xd2\x64\xe5\xeb\xaf\xc7\xd5\xfe\x51\x4d\x67\x84\x52\xa7\x01\x5f\xf3\x49\x8d\x9b\x16\x25\x83\x27\xe9\x35\xe3\x27\xae\x07\x0a\x32\xf8\x5d\x7a\x2e\x78\xc0\xdf\x21\xa1\x41\x71\xb8\xf0\xc3\xe7\x47\x18\x31\x22\x50\x56\x3d\x61\x05\x05\xbe\xec\x4b\x12\x8e\xdc\x7a\x1c\xcb\xbe\xe0\x92\x4a\x2e\x8e\x6d\xdb\x9d\xa5\xc6\x81\x25\xe7\x05\xdf\x71\xe4\x89\x1f\x4d\xd5\x4a\x08\xba\x2d\xe2\x78\x50\xd6\xf8\xca\xd5\x3c\x48\xac\x1d\x10\x40\xc3\x85\x28\x8c\x5d\x4e\xc9\xb0\xb6\xb9\x1e\x40\x0f\x42\x9d\xd3\x9b\xfa\x51\x7a\x09\x52\xff\xc5\x3c\x75\x59\x55\x75\x35\x58\x55\x01\xf7\x88\x4f\xae\x66\x69\xb5\x48\xf6\x72\xab\x3b\xcf\x65\xee\x78\xd2\xc2\x56\x57\x5d\x0c\x9d\x17\x59\x24\x26\x92\x8b\x7e\xc0\xab\x8a\x6e\x13\xae\xeb\xc6\x76\xd5\xc6\x33\x9a\xca\x31\x55\xca\x40\x17\x14\x90\xbe\x15\x28\x79\x99\xb0\x8c\x27\x45\x99\xe9\x94\xe6\xb2\x4a\x69\x2e\xb7\x49\xfd\x1e\xec\x8e\x4d\x94\x14\x26\x4a\x3a\x6a\x56\x1d\x0f\x14\x4d\xf8\xb8\x6e\x29\xb2\x21\x5c\x15\x3b\xbe\xee\xf8\x69\xe0\xe7\xec\xa7\x6d\x8f\x4b\x18\xe9\x1a\x50\x38\x19\xa8\xba\xc8\xc9\x1a\x6f\x20\x8a\x3a\x3e\x28\x87\x35\x85\x54\xb9\x1e\xfe\xf2\xe7\x17\xbb\x7d\x93\xac\x64\xe5\xa4\x50\x79\x19\x44\x75\x45\xf7\xf7\x99\x7a\xe7\xcf\xbe\x7d\xdd\xc3\xf3\x0b\x7b\x95\x13\xc5\x86\xe7\x74\x72\x9d\x0f\x33\xe2\x6f\xf5\x54\x68\xfe\x08\x35\xaf\x73\xc3\x2f\x26\x1a\xe2\x92\x7b\x74\xf7\x28\x9d\x7d\xa0\x9a\x94\x3f\xa0\x71\x0f\xf8\xf8\x9d\xa9\x2f\x6b\xfe\x05\xe0\x21\xfe\x87\x40\xad\x0a\x3f\x68\x2c\xc0\x5f\xef\xda\xd7\x26\x26\x71\x3e\xc8\xdc\x87\x16\x78\x34\x90\xe5\x33\xc5\x6b\xc5\xaf\xb2\x03\x93\x84\x5c\xdc\x65\xc5\x42\xa5\x3a\x75\x9b\xae\x19\x43\xf5\xe3\x56\x46\x64\x6e\x27\x26\x33\x85\x8d\xd9\xaf\x82\xc5\x10\x68\x29\x10\x61\x04\xb5\xc9\x03\x04\x63\xc6\x33\xb6\xe2\x4f\x94\x91\xc3\x27\xaa\x8f\x81\xb8\x24\x7b\x55\xef\x33\xde\x30\xe0\x9a\x93\x2a\x1d\x3b\x03\x0d\x16\x27\xa9\xa4\x3a\xa4\xb4\xd6\x12\x5d\x12\x7f\x3a\x78\xa8\x25\xcb\x77\xbf\xe3\x6a\xd0\xec\xb5\x49\x9b\x1e\x1f\x73\x56\xc5\x7f\xe5\xb4\xc3\xfa\x59\x9a\xbc\xc6\xbb\xba\x53\x1a\xf7\x8d\x0e\x6d\x74\xd0\xae\x19\x4f\x62\xa4\x4f\xd2\x58\x5b\x2d\xbb\x7c\xdc\x6a\x50\x16\x25\xab\x66\x00\xae\x07\x76\xb0\xe3\xb8\x35\x69\x83\xab\xd5\x11\x9b\x83\x83\x6c\x0a\x2d\xa7\x6c\x80\x90\x50\x14\xe7\x63\x25\xc5\x37\x4e\xb3\x62\x68\x86\x36\x9f\xa5\xdd\x44\x14\xdd\x3c\xe8\xb6\x89\x92\xa9\xd4\xb1\x3b\x4a\x2d\xd2\x7f\x4b\xdf\xc6\x69\x32\x94\x5e\x23\xa5\x04\xf3\x9c\xeb\xbe\x16\x79\x97\x7c\x5c\xd6\x1e\xdf\x6f\xeb\xc7\xf7\xdb\xc1\xd3\x91\xa3\x61\x8c\x6d\x32\x48\xcb\x9c\xdb\x5e\x9d\x89\x9f\x37\xf4\x9b\xfe\x2d\x15\x64\x2c\x67\x26\x2f\xb2\x32\xac\xd6\xb9\x19\x85\xb6\xdd\x56\x62\xf6\xa8\xde\x4a\x05\xb3\x25\x0e\x78\x2d\x4a\x46\x25\xfc\x3c\xb1\x31\x7c\x88\xab\xe3\x13\xd5\x05\x33\x31\x29\xad\x5a\x5b\x14\x30\x6f\x9d\x6e\x50\xf6\x9e\x5f\xec\xe6\x13\x1b\xd6\xfa\x92\x31\x41\xae\x28\x02\xfc\x15\x57\xbe\x67\x0c\x4d\xfe\x14\xf3\x91\xb3\x09\x3e\x09\x7c\xdd\xca\x64\xfd\xa8\xc8\x4c\x16\xc5\x28\x8d\x32\x45\x47\x09\xee\x7d\xa6\x50\x9d\xa1\x89\x92\x9c\x64\xc3\x31\x9a\xfe\x7c\xaa\xbc\xab\x58\x7c\xd6\xc9\x3a\xb8\x82\xda\x5b\xd8\x54\x91\x54\x5e\xd6\xae\x59\xe7\x95\x29\xda\xf7\x31\x1b\x39\x2b\xc4\xc8\xc4\xc2\xb2\x6b\x83\x4a\x01\xfc\x79\x17\x41\x97\xc9\xa0\x8c\xd7\x67\x3c\x8b\xe4\x16\xa5\x8f\xae\x85\xdd\x89\x3c\xcd\x28\xbd\x83\x28\x4b\x13\xaa\x9f\x71\x4b\x72\xa0\x24\x2e\xff\x90\xa6\x30\x2e\xe0\x08\x6f\xe4\xb2\xa4\x56\xdf\xcc\xff\xa2\x04\xaa\x12\x5b\x66\x69\x5e\x66\x43\x9b\x26\x1d\x4a\x8a\x1d\x9b\xc6\x71\x70\x36\x1b\x6f\xf4\xc0\x7c\xd7\xc4\x85\xcd\x12\x16\xa1\xf5\x6e\x92\x74\x01\x32\x28\xdb\x4c\xb5\xcc\x60\x35\x62\x45\x52\xf6\xf9\xa2\x85\x56\x3c\xbf\xbc\x99\x9d\x19\x44\xf1\x3a\xf1\x4b\x9c\x37\xf0\xe2\xa2\x96\x9b\x7a\xd9\xd5\xb6\xab\x57\x80\xbd\x15\xe9\x16\x50\x9e\xdd\x3d\x9f\x04\x8e\xa3\x3c\x8f\xaa\xa8\xb1\xe3\x4d\x9c\x68\x19\x10\x43\x27\xf9\xdd\x28\x59\x8e\xd3\xb5\x7c\x46\x75\xb1\xb2\x09\x36\x70\x99\x7b\xb5\xbe\x76\xa5\x76\x95\x26\x52\x0e\x45\x24\xb1\x63\x43\xc3\x48\x53\x15\x2b\x3c\xda\x5a\x7d\x0c\xd3\x35\x8e\x95\xb0\xb3\x9e\xc2\xaf\xf2\x89\x1a\xef\x99\x8d\x92\xbc\x84\xae\x2b\x0d\x31\xec\xa5\x2c\x8a\xc5\x27\xaa\xd7\xcd\x8b\xdb\x01\x87\xd2\x18\x02\x1f\xab\x0e\xcd\x28\x09\x33\x6b\x72\xbb\xd7\x83\x28\xc7\xb4\x89\xcf\xa7\x84\x8f\x70\xab\x03\xbd\x39\xb4\xa2\x9c\x01\x8c\x01\xe6\xcb\xe7\xb4\x7b\x20\x2c\x3b\x16\x78\x02\xca\xbb\xf4\xa3\x40\x07\x3e\xc5\x1e\x2f\x5d\x5d\x33\xde\x82\x97\xf6\xeb\xa5\x2d\xf8\xc5\x61\x5e\xfc\x41\xa0\xc5\x22\x97\xcb\x5c\x50\x7c\x29\x67\x74\x9c\x94\x56\x4d\x59\x6c\xab\xad\x4f\x37\xcc\xd2\x74\x85\xdd\xe4\x9c\x3c\x8d\x16\xb4\xf1\xc2\x2f\x43\x93\x0c\x46\x11\xb0\x09\x06\xd6\x94\x4b\xe3\x05\x45\x1f\x19\xa4\x61\x39\xb6\x49\x91\xcf\x69\xc4\xb8\xa6\xc2\x4a\xb7\xe8\xb8\xf4\x0e\xc1\x39\x17\x28\x35\xb3\x6d\x1b\x1e\x2a\x4d\xcd\x18\x5d\x4f\x40\x30\x8f\x29\xd3\xd6\x63\x6a\xed\x67\x15\x09\xfe\xa3\x56\x83\xcd\x65\x82\xcf\x64\x3d\x55\xba\x3d\xee\x9e\x5d\x5f\x67\xda\xcf\x6d\xb6\x2a\x61\x3b\x5e\x15\xf7\x4a\xf0\x49\xcb\x2e\x5d\x85\xbc\xf0\xe7\xf1\x32\x72\x27\x75\xde\xbe\xe9\x15\xda\x6f\xfe\xb4\xd1\xad\x8e\xe1\x9f\xe4\x65\x5c\x98\xa4\x90\x4e\x68\xae\x04\x05\xca\xe6\xf7\x6c\xad\x1d\x44\x85\xdc\xc3\xac\xec\xdb\x2c\x5d\x35\x3b\xbc\x1d\xd8\x19\x5a\xf1\x9c\x4b\xf7\x81\x79\x47\x70\xe9\x38\xb9\x03\x7e\x76\xe2\x21\xd2\x71\xde\xb4\x4d\x01\xed\xfd\xfb\xbb\xe9\xf2\x72\x14\x46\x29\xad\x5d\x62\xb5\x56\x25\x84\xe2\xb4\xf6\x90\x6a\xec\xd7\xbb\x87\xe7\x5f\x7e\xd2\xc3\x23\xa7\x80\x33\x62\xd1\xe2\xd8\x5e\x9a\x89\xbd\x0e\xe9\xcc\xc6\x8c\x76\xa3\x56\x0e\x3a\xe8\x72\x42\xdc\xf3\x21\x52\x49\xf1\xf2\xab\x82\x28\xb1\xf2\xa3\x47\x84\x93\x07\xbc\x05\x48\x55\xdc\x93\x5a\x3e\xa4\x69\x8c\xde\xc5\xdb\x00\x43\x51\x4c\xb8\xa5\x0a\x7e\xd7\x11\x69\xb1\xfe\x64\xa0\x16\xa7\xbb\x8d\xc7\x73\x78\xfe\xe5\xee\x28\xf2\x55\x00\x31\xaa\xad\x7e\x92\x8f\x1b\xf1\xe0\xc2\xa1\x6e\x3f\xea\x73\x3c\xe8\x8a\x6a\xbe\xc0\x36\xfd\x22\xdb\xd7\x41\x66\xf3\x41\xc2\xac\x48\xec\x1c\x17\x75\xec\xd4\x84\xc5\xaa\x0d\xab\xcc\xab\xa0\x42\x69\xa2\xbd\x17\x78\x4d\x9e\xf7\x1a\x79\xd3\x2f\x74\x4d\x92\xa4\x65\x12\xca\xbc\x71\x0a\x5f\xd5\x8b\xe3\x93\xc6\xce\xb8\xf4\xe2\xc1\xee\x24\x8b\x92\x30\x9a\x18\x69\x8a\x47\xf6\x0c\x97\x02\x3e\x6e\xa4\x99\x0b\x87\xba\x03\x6b\x62\x9b\xe5\xa3\x08\x66\x6b\x08\x8a\xf1\x3e\xf8\x58\xb1\x99\x4d\xf1\x9f\x16\x9d\xda\x0c\xa6\x9f\x92\xb9\xed\xd1\xca\xcc\x44\x71\x96\x1a\x36\xfc\x6a\xd3\x3f\x69\xe9\x23\x18\x44\xa6\x6f\x49\xf9\x5e\xc1\x17\x9f\x2a\xa3\x92\x4f\x1b\x9f\x3a\xf4\x62\x77\x92\xa5\x55\xec\xcb\x12\x08\x6e\x04\x57\xcf\x0e\xb0\xfb\x75\x15\x52\x7d\xa8\xa6\xaf\x7d\xcd\x80\x76\xd5\x51\xee\x31\x28\x3b\x09\x09\xc9\xf3\x22\x4d\xf8\x6a\x19\xe5\x11\x79\x08\xcd\x79\x7a\xe6\x9b\x18\xac\x60\x31\x5f\xc1\x7e\x22\xa3\xa1\xe3\x74\x90\xf6\x6c\xf8\xf8\xe4\x76\xa3\x48\xcc\x9c\xc1\xb8\xca\xf4\xbd\xf6\xda\x45\x45\xa9\xbf\xd8\x06\x63\x93\x0e\x2d\x39\xdb\xf2\xb2\xe9\x28\x2d\xd5\xc3\xe3\x93\x36\xd1\xab\x65\x13\x41\xbf\xb6\xe6\x6c\xce\x43\x99\x4f\x94\x28\xdb\xd0\x26\xcf\x92\x84\x3a\xb2\x52\xf4\xf5\xf3\xb1\xd2\xdb\x1d\xa7\xb1\x0d\x81\x48\x2e\x2e\xd6\x2c\xf0\x04\x5b\x96\xf8\xb3\x9f\x66\x03\x9b\xcc\x78\x6e\x15\xb3\xfa\xd9\x73\x44\xb9\x16\x6e\xaa\xa1\x97\x45\xe1\x68\xd6\xa7\xd7\xec\x87\x28\x62\xa6\x1d\x2d\x72\x7a\xc0\x03\x56\xfe\x6d\x9b\x24\x1c\xa5\xd9\xd8\x88\xbb\x04\x96\x65\xe6\xd4\xf3\x49\x6b\x65\x6a\x68\xab\x4f\xcd\x2a\xda\xe7\x8e\x0d\x7c\x85\x88\x6a\xf8\xe1\x85\xde\x5c\xe9\x17\x96\xdd\x6d\x6c\x8a\x70\xe4\x1a\x21\x50\x5c\x03\x1b\x1b\x0b\xf1\xae\x9e\x2f\x7b\xcd\x2a\x8d\xd4\x49\x5c\xb2\xc3\x3e\x86\x3f\xca\x6b\x92\x1e\xfb\x79\xfd\x9b\xca\x61\x7f\x54\x0e\xed\x8e\xea\x0d\x81\x9a\x75\x4c\xe9\x8a\x32\x0a\x89\xf0\xea\x3b\x4a\x3e\xe7\x24\x81\x23\xd2\x9d\x55\x0d\x41\xfe\x9b\xc6\xda\x79\x60\xbe\xbb\x5c\x7e\x3b\x02\x5b\x05\x0b\xec\xd9\xa9\x16\xec\x6b\xa6\xdf\xd5\x23\x8c\xd3\x9c\xd5\x3e\x30\x07\x98\x68\x51\x33\xae\x17\xd6\x5e\x8b\x31\x6a\x3e\x4a\x27\x13\x99\xa7\x5b\x64\x64\xb0\x75\x7a\xda\xfd\x82\x65\x9a\x04\x8b\x26\x69\xf6\x1f\x69\xbb\xd3\x56\x2d\xcc\x0b\x03\xd7\x6d\x7a\x61\x2c\x71\xa2\xc4\x73\x91\x14\x00\x2c\x7d\x53\x85\xe3\x13\x6b\x56\x66\x3a\x4e\x57\xe7\x4e\x4d\xf4\x93\x1e\xb2\xe0\x24\x2d\xab\x1f\xe5\x9f\xe8\xd0\x75\x48\xbd\x96\x89\xac\x26\x5b\x6d\xa7\xff\xe6\x4b\xdd\xaf\x7f\x31\x67\xd2\x07\xd7\x49\x14\x8e\xd2\xd8\xb0\x10\xb6\xb4\x63\x56\x7f\xcb\xc7\x2e\x33\x0c\xd3\x71\x6e\x0a\x9e\x20\x88\x36\x7f\x3c\x55\x32\x30\x3f\xd6\x5e\x1d\x51\x38\x32\x36\xde\xa5\x8c\x53\x3e\x0f\x7c\x23\xd2\x09\xec\x0c\xb5\x46\x26\xe4\xc5\x97\x54\x8b\xd2\xe7\x4a\x30\xed\x82\x96\x7a\xba\x18\x28\x19\xa6\xa6\x10\x45\x15\x5e\x56\x8b\x3e\x22\x55\xc1\x61\x7c\xcf\x34\x6a\x0f\xc8\x11\xee\x06\x5e\x1c\xea\x98\xf6\x40\x48\x93\x55\x4b\xe0\xa7\x2f\xe1\x70\x18\x2f\xe1\x63\x0b\x19\x32\x4a\x96\xab\x70\xa3\x5e\xbc\x67\x89\x05\xe1\xda\xec\x55\x86\x26\xeb\x5f\xea\xec\xdb\xe7\x25\xcc\x0f\x8b\x72\xfa\x15\xfd\x4b\xc7\x18\xeb\x42\x81\x84\x65\xcf\x31\x3b\x3e\xc7\x53\x61\x77\x5b\xb2\xe7\xc1\xad\xdc\x56\x02\x29\xf0\xef\xc3\xd6\x37\xb3\xa1\xa4\xe5\x76\x53\x4d\x13\x29\xd1\x9f\xe8\x50\xea\x98\xca\x95\x58\x73\x0e\xf3\xbf\xc3\x65\x5a\x69\x4b\xa6\x74\xc9\x99\xcb\xee\xdf\x7f\xd0\xf3\xe0\x7d\xa7\xe8\x45\xa5\x2a\xb1\xa7\xa7\x70\xcf\xcf\x81\x8e\x33\xb7\xb0\x7a\x8d\x8a\x1f\x59\x44\x45\x59\xed\xa7\x26\xee\x28\x02\xee\x05\xa5\xed\x7e\xa1\x56\x54\x31\x39\xe0\x67\xa4\x84\x3c\xa6\xf8\x24\xf8\x8a\xa3\x56\xac\x46\x59\x9a\x54\x49\x91\x89\xa3\xbc\xe0\xec\x40\xfa\xff\xe9\x4e\xb9\x67\x5d\xb9\x4e\x36\xb1\xa8\x6a\x53\x4e\xaa\x9c\xa4\xe3\x27\x0a\x58\x60\x7c\x5c\xbb\xb4\x95\x74\x95\xfe\x0e\x99\xed\x27\x53\x95\xf2\x7e\xe2\x00\xa6\x3c\x24\xcf\x18\x96\x7b\x47\x96\x7f\x1b\x01\x39\xa6\xd7\x75\x2c\x8b\x28\x5d\xbf\xa9\x1a\x67\xe0\x70\x04\xdf\x33\xf1\x2b\xf4\x58\x0c\x40\x13\xec\x9e\xec\x87\xc6\x27\xad\x2a\x8b\x99\xf1\x21\x83\x34\xc7\xfb\x2d\xf7\x5c\x23\xd4\xa0\x5e\xcd\xb0\x30\x89\xaf\x37\xe2\x01\x42\x32\x84\x8f\x1b\x1f\x93\xe5\xf8\xdb\xe5\x60\xe8\x74\xa6\x64\x91\x57\xfe\x60\xb7\xf1\xb0\x98\x63\xd9\xb8\xe2\xe7\x17\xbb\x79\x38\x5a\x8b\x92\x44\x85\xd0\x1c\xab\x08\x01\xb2\x79\x97\xdd\xc2\x8e\x27\xae\xae\x81\x37\x76\x46\xbd\xbd\x33\x4d\x76\xda\x42\xd7\x3e\x0c\xe7\xc3\x86\x53\x74\xed\x54\x55\x64\x4b\x91\x86\x06\xe9\xda\x2e\xd5\x26\x85\x3f\x73\x0e\xa3\xca\x6e\x74\xaa\xe4\xf1\x2f\x2a\x51\x95\x3f\x99\xd6\x4d\xb4\x1d\x2b\xf8\x06\xf0\x5b\xa9\x6c\x3c\xea\xea\x56\x76\xd5\x26\x1d\x2f\xca\xc0\x82\x5b\xc2\xe0\x91\xa8\xe3\xdb\x66\x6c\x88\xae\xef\xd9\xd2\x27\x91\xa6\xf1\xc9\x54\xac\xb7\xa2\xf1\x84\x34\x11\xdd\x03\x43\xdc\x7c\x5b\x29\x2f\xdf\xd6\x6e\xa5\x69\xc2\x90\x96\xe8\x25\xfb\x71\x70\x42\xd5\x9d\xf3\x71\x9a\x16\xa3\x8e\x67\x1f\x40\x41\x85\x8f\x1b\x61\xf0\xc2\xa1\x2e\x75\x4a\xdb\xbc\x80\x5a\x67\x9b\xe1\xec\x97\xdd\x9c\xb0\xaf\x15\x99\x81\x34\x5e\xb6\xae\xbd\x32\xce\x29\xf5\xe7\x73\xce\xa8\x25\xb3\x43\x93\x0d\x48\x12\xaa\x7a\x72\x58\x36\xfe\x01\x2c\x76\x85\x8a\xee\xd6\x83\xf3\x5d\xaa\x29\x21\xc4\x3f\xad\x4a\x24\x23\x13\xc7\x96\xf7\xc7\x9a\x3e\xb4\x58\xbf\x79\x1c\xa5\x88\x62\xcc\x31\xac\x84\xb7\xe9\x2d\xf3\xb1\xd3\x87\x58\x35\x89\x4c\x0d\x24\xbf\x5c\x8c\x76\xda\xb1\x07\xe6\xff\x43\x21\xc3\xb2\x1d\x58\xc6\xd8\x6a\xf1\x94\x57\xac\xf6\x1e\xfb\x99\x5d\x8d\x72\x3b\x98\x55\xa5\xd9\x1d\x3d\xbf\x10\xc1\x96\x52\xd9\x69\x2e\xb8\x06\xbe\x27\x95\xc9\x6f\x16\x8e\x0c\xb7\xc0\xe0\x73\x6f\x29\x3c\xf3\xad\xc6\x2a\x4a\xd7\x38\x36\x9c\x6c\x4b\xb7\x40\xc7\x09\xe0\x34\xc3\xaf\x6a\x1e\xbe\x16\x9a\x38\xea\x97\x99\xaa\x96\x4e\xf5\x2a\x31\x6d\x74\xd0\x1c\x7a\xb1\x3b\x36\x2b\x62\x6f\xec\x78\x54\x9e\x15\x76\x5a\x45\x2e\xe4\xa2\x1b\xa3\x5f\x96\xd5\x7b\x03\x4f\xad\x3b\xd2\x48\xc9\x0f\xbd\xd8\x35\xe5\x20\x82\xb7\xb1\xe3\x7c\x42\x0d\x50\xe0\x0f\xed\x4e\x9a\x0d\x23\x31\x63\x69\x6b\xfe\x7a\xf8\xda\x0f\xcc\x77\x57\x92\xd4\x79\x6e\xd7\x78\xf8\xb2\x71\x7a\xfe\x03\xa1\x41\x96\x79\x51\xce\xad\xf0\xb0\x50\xcc\xde\xc0\xe7\xb0\xb4\x32\x82\x86\xf0\xf1\x5f\x2a\xc1\xcb\x23\x53\xa9\xf2\x28\x53\x37\xce\xba\x91\x5e\x40\x1e\x8f\x8f\x5b\x1c\x9b\xba\x85\x99\x34\xd8\x97\xdf\x55\x91\xdd\x77\x5b\xf1\xb6\xbc\xec\x93\x1b\x69\x28\x7a\x08\x42\x4c\xa7\xdb\x11\x66\xfa\x93\xae\x04\x65\x92\x3c\xf6\xe3\x1b\xf1\x3b\x13\xdc\xf8\xa4\x4d\x5a\x60\xd9\x64\x63\x0b\xa7\x4e\x84\x9c\x37\xc0\xd4\x60\xda\xc3\xd4\xa3\xfb\xa7\xdb\x7d\xbf\x97\x33\xdf\xe7\x04\x28\x0f\x99\x2c\x1f\xab\x88\x7f\x94\x4e\xf2\x8e\x6f\x30\xbb\x4a\xb3\x9c\x8f\x95\x44\x64\x91\x0e\x18\x0a\x01\xe7\xfb\x4d\x2d\x6d\xfb\x66\xc3\xd0\x87\x64\xc6\x59\x39\x15\x41\xec\x65\xcd\x55\x7c\x43\x57\x49\x1a\x3b\xd9\xfe\xfd\x70\x2a\xed\x78\xfc\x81\xcd\x49\xc5\x7d\xc0\xd7\xa2\x4d\x1c\xad\xd8\x19\x55\x7e\xba\xa3\x7c\x83\x40\x92\x01\x70\x78\x56\x51\x61\xcc\x60\x00\xae\xe6\xbe\x7d\xbc\xa0\x5d\xa0\x8a\x3a\x1f\xab\xc1\x4a\x3e\x4f\x19\xee\x03\xb1\xe6\xfb\x98\x94\xc8\xb7\x4f\x2a\x75\xf7\xcb\x2e\x4c\xca\xec\x24\xb3\xb9\x4d\x8a\x1d\xfe\xe7\x6f\x28\x35\x89\x3b\xba\x24\xb7\x67\xc3\x57\x9c\x87\x5f\xe9\xf9\x40\x88\xad\x4b\x85\x97\xa1\x1a\x7e\xb3\x28\xb4\x83\x9d\xd5\x4e\x84\x5d\xfe\x16\x3d\x4d\x14\x49\x50\x5e\xe5\x63\x0c\x1a\x2c\x54\x53\x04\xb2\x58\x1f\xe1\xb4\x8f\x44\xeb\xaa\x52\x9f\xde\xde\x7b\x4a\xf9\x43\x24\x26\x09\x23\x13\x3f\xa5\x1a\x3b\x95\xca\xf7\x9f\xd2\x7a\x8b\x9d\xf8\xed\xa0\xf3\x4b\x02\x92\xfd\x94\xbe\x0f\x2f\xe0\x0f\x03\x0d\xd0\xc0\x2e\x04\x51\x3a\x8b\x6c\x21\xfd\xbf\x12\x90\xc3\xa9\x6b\x1e\xf5\xfd\x5f\xd3\x86\xe9\x92\x62\x9a\x89\xe4\xfb\xa9\xa9\x16\x3e\xa1\x89\x86\xe5\xfc\x2a\xc4\x19\x95\x7c\xcc\xcb\x32\x1a\xb5\x5f\xd7\x95\xc0\x87\x06\xb9\x8d\xe3\x7c\x67\x75\x07\x18\xa9\xec\xad\x88\x91\x21\x7d\x99\x78\x70\xa7\xe8\x76\xf0\x16\xc1\x9b\x71\xd9\x4f\x95\xbf\xf0\xe7\x03\x4f\x31\x7a\xbb\x85\xc6\xdf\x4d\x27\x45\x34\x8e\x72\x71\xeb\x93\x2e\x10\x1f\x8b\x9f\xd7\xae\xfc\xa3\x34\x2b\x76\x29\x0e\xed\x8f\x94\x47\xe3\xf7\xf5\x23\x3d\x5f\xb3\x18\x62\x84\x43\x72\x12\xdf\x28\xf3\x63\xa5\x8a\xf6\x68\x4f\x69\xe2\xeb\x6a\x4e\xbe\x9e\x17\x76\xfc\x98\xd2\xda\xe3\x75\x19\xe1\xdf\xfb\x74\x8b\xc8\x4f\x76\x91\xe1\x03\x66\xe2\x35\xbc\x23\xe0\x17\x73\x1b\x2a\x77\x87\x58\x3c\x48\x4a\x97\x03\xa5\x3b\xf6\x1e\x1e\x1d\x70\x89\x4b\x6a\xb8\x7c\x32\xf5\x0a\x9f\x2c\xba\x88\x9d\x85\x95\xa1\x45\x0a\xdd\x93\xc4\x4f\xb5\x30\x92\xaa\x38\x31\x4b\x27\x36\x8b\xd7\x49\x71\x04\x31\xcf\x4d\x65\xb1\x89\xb0\x96\x05\xbb\xbd\x21\xef\x81\xa5\xbf\x45\x58\x3f\x32\xdf\x7b\x53\x1f\x80\x9d\x50\x66\x13\x27\x49\x6c\x1d\x41\xc7\x1b\x2c\xe1\xcb\x9f\xc0\xa3\x40\x11\xeb\x08\xfd\x86\xc8\x15\x55\x83\x1d\xc5\xd9\xdb\x00\x5b\x70\x5f\xdb\x36\x6a\xda\xb2\xea\x8e\x2f\x13\x5d\x05\xd1\xf6\x0f\xa6\x0a\xaf\x7d\x1b\x3e\xc1\x62\x82\xa1\x84\x41\xb6\x83\x38\xed\xe4\xed\xaa\x85\x00\x69\x23\x24\xd6\xf1\x1e\x4f\x21\x3b\xe6\xcf\x23\x74\xf7\x65\x20\x11\x9c\x7a\x47\xe9\x43\xbd\x3f\x55\x24\xea\xb3\xc1\x23\x6e\x9c\xae\xcc\xfa\x1a\x3c\xb7\x13\x20\x03\xdf\x0d\x06\xb4\x68\x0d\x7a\xbc\xfe\x5e\xcb\x3e\xf6\x5c\x77\x60\x8b\x2c\x8d\xc0\xfc\x94\x08\x5c\x69\x13\x5f\x54\x51\x0b\x04\x3a\x45\xe9\x0b\xb3\x92\xd9\xb2\x7c\xd2\xe6\xbc\x3b\x8c\xd3\x74\x0c\x26\x01\x26\xd1\x1c\x02\x6a\xe1\x0f\x7b\xc6\xcb\x7d\x85\xe4\x2e\x97\xb9\xed\x28\x11\x08\xa6\x5a\xf1\x89\x42\x68\xca\xa4\x8a\x36\xc5\xc3\x4a\x72\x5a\x85\x15\x5f\x50\xf1\xf6\x60\x68\xf7\xf8\x56\x92\xeb\x34\xab\x10\x06\x3d\xa0\x72\x99\xc8\xbb\x57\x17\x8b\x54\x69\x37\x6a\xe5\x28\xfb\xcc\x32\xa6\xeb\x74\x69\xab\x3c\x0c\xf3\x1f\x0f\x1a\xcf\xec\x09\xdd\x4a\xca\x74\x57\x34\x52\xb1\x67\x15\x7e\x66\xab\xd1\x45\xbf\x6f\xa1\x9b\x97\x63\xa5\x4c\xfa\x6b\x81\xaf\xfb\xfd\x9a\xda\x5d\xc3\x74\xd5\x66\x76\x80\x00\x0f\x6f\x17\x44\x49\x27\x74\xe6\xca\x69\xc0\x23\xf8\x18\xbb\x22\x06\x76\xa7\x57\xc3\x4d\x26\xa0\xa8\x08\x7d\xa0\xa3\xe4\xf2\x25\x59\x34\x19\xb4\x94\x90\xfe\x62\x12\x6a\x31\x98\x73\xf8\x7a\x2c\x7b\xb7\x95\x0f\xd2\xa4\x2c\x72\xa5\x78\x74\x95\xfa\x1f\xf9\xb8\x11\x9b\x7d\xed\x6b\xdd\x62\x44\x26\x66\xbe\x29\x02\x6d\xa9\x7c\xdc\xe2\x6c\xbc\xd4\x5d\x4e\xab\x70\x0e\x7c\xb7\x97\x9d\x96\xab\xd2\x75\x75\xde\x7c\x13\x93\xc5\x91\x21\xec\x87\x4d\xc8\x9c\xfe\xb0\xd3\xea\x7f\x4f\x57\xa9\x6c\x3e\x49\x93\x6a\x34\xbe\xe4\xe3\x97\xc0\x27\x6a\x17\xda\x0a\x66\xe6\xd5\xd2\x8c\x4d\x16\x71\xc7\x22\x4b\xfe\xa8\xf8\xf0\xed\xb6\x5a\x75\x3e\xb6\xb1\x33\xa6\x13\x30\xd2\xd7\xc3\x8e\xb9\xf4\xde\x66\x99\x29\xc0\x80\x42\x1c\xc2\x54\x72\x3e\x51\xcd\x54\x65\x12\x15\x76\xb0\xcb\xe3\x53\xdb\x7a\xca\xd9\x01\x10\x28\x0b\xce\x05\x8a\xda\xce\x84\x5c\x8c\x5a\xee\xe2\xc4\xd6\xf0\x13\x8e\x37\xb0\x6c\xde\xc6\x1a\x26\xed\x84\x2e\x28\xb7\xe1\x28\x21\xc7\xd3\x59\xd5\x63\xf7\xbd\x40\xf3\xec\x01\xeb\x22\x67\xbf\x41\x4f\x46\xfc\x6b\xda\x84\xef\x26\xe9\x8a\x11\x5d\x48\xb1\x19\xeb\x28\xff\xb1\xa7\xb5\x53\x42\x66\xf3\xdc\x69\x05\x88\x1e\xa9\xdf\x85\x9b\x9d\x62\x82\x43\x4d\xd6\xcc\x4c\x5d\x49\xd6\xe7\x43\xd7\xf4\x76\xbf\xbd\xe7\x17\x95\x17\xcd\x0a\x4d\x1d\x57\x84\xf5\xcd\x9e\x27\x5b\x1a\x1a\x16\xba\x65\x32\xb1\x19\x0d\x58\xce\x59\x9c\x8c\xbc\x93\xbd\x3a\xa6\x88\xc1\xf2\xc7\x08\xd6\x31\xc3\xaf\x29\xde\xfc\x35\xd5\xab\x85\x02\xa1\x82\xf7\xce\x60\x5b\xe4\x93\xb6\x3c\x60\x2d\xcd\x62\x2c\x9e\x0c\x71\x04\xca\xd0\xe7\x48\xdb\x27\x8a\x68\xc0\xd2\x20\xd2\x8d\xee\x2f\xec\xb4\xea\xc4\x2d\x46\x51\x52\xe5\xdb\x73\x2a\x9c\x3f\x4a\x6b\xae\x23\x7f\x3a\x17\xea\x9f\x4c\x55\x5f\x03\xe8\x00\xd2\x6f\xfa\x70\xa9\x9d\x68\xcf\xac\xf9\x99\x84\x4e\x79\x52\xc6\x60\x8d\x96\xf0\x70\xd2\xf4\xfc\x62\xb7\x18\x99\x02\xfe\x2d\x18\x87\x7b\x36\xbc\x40\xd4\x59\x5a\x67\xd0\x24\xf0\x18\xe9\xf7\x20\xb8\xf8\x6a\x4f\xb9\xc1\xfc\xaa\x52\x0d\x3b\xaf\xb6\xac\xdc\x26\x83\x1d\x8a\x8e\x82\xa0\xc7\x19\xe6\x7c\xf3\x25\x4f\x80\x5d\xf2\xe5\x1f\xe5\x58\xca\x19\x2e\x3f\xa8\x36\xb6\x74\xb5\xec\xe7\xd6\x08\x1c\xe4\x24\xcb\x5d\x6e\x02\xad\x4a\xec\xfd\x77\x35\x6d\x37\xcd\x26\xf2\xa0\xb0\x70\x73\x53\x32\x9f\x38\xe6\x2c\xc9\xe0\xef\xf0\x5a\xd2\xd5\x34\x73\xa8\x0c\xca\x53\x08\xe9\xd8\xab\x0b\xf3\xf7\xac\xf2\x50\xba\xa7\xe6\xe5\x9b\x8a\x1c\x16\xdb\x61\x54\x25\xea\x22\x01\x88\x27\xfb\x7d\xfa\x6b\x3e\xae\x73\x55\x5f\xef\xdb\x6c\x98\x53\x5e\x88\x6f\xbb\xa1\x4d\x7a\x3f\xc2\x53\xfc\x22\x1f\xc1\x2a\x45\x1f\x97\xe1\x48\xa9\x30\x7e\x87\xb6\x83\x2f\xaa\x5a\xee\xdf\xdf\xcd\x47\x36\x5e\x56\x8e\xc3\x67\x15\x53\xfb\x6c\xcb\x2f\x3c\x57\xcd\x04\xab\x2a\x71\x53\xad\x86\x36\x75\xab\xf5\x28\x4d\x06\x26\xc7\xda\x25\xe6\xdf\x78\x15\x7c\xa6\x34\x59\x45\x1f\x8a\xb4\x0b\xa4\x59\xb4\x7a\xea\xd2\x2b\xfa\x8c\x7a\xa7\xe3\x71\xc9\x0e\x0d\xd5\x43\xaa\xe9\xc0\x60\x08\x9c\x53\x22\xf3\xf7\x6b\xe8\x96\xb5\x03\x36\x24\x65\x89\xf6\x9a\x3b\x81\x36\x10\x48\x87\x86\x57\x14\xe1\x71\x69\x52\xd7\x17\xea\xf8\x9a\x3e\xf5\x32\x3b\x75\x0e\x54\xd8\xf8\x58\xa5\xff\x5f\x5d\x78\xfe\xb9\xe7\x0f\x1d\xfc\xbb\x55\x52\x83\x09\xf9\x86\x32\x74\xfa\x29\xf2\x6b\x21\x06\xd3\xec\x62\x35\xe4\xc0\x03\xea\xf7\x61\x50\xe4\x5a\x59\xaa\xed\x93\xeb\x59\x18\xa5\x80\xe7\xa1\x17\x8a\xdd\xee\x83\xe9\xf6\x9f\x63\xba\xf4\x9b\x34\x78\xa5\x9b\x47\xc9\xca\x5e\x22\x26\x92\x03\x94\xaa\xd7\x87\xc0\xf1\xd3\xc0\x63\x9b\x37\xe1\x0a\x88\x68\xf1\x08\x45\x91\xc8\x51\x37\xe8\xb5\x61\xf4\x9c\xe4\xf7\x8d\x2c\xe0\xff\x44\x48\xe8\xa4\x60\xaa\xb5\x08\xdb\xca\xf5\xa9\x92\x2b\xe2\x02\xb8\x28\x3b\xfa\xc2\x25\x67\xe6\xc8\x42\x2f\x05\x3e\x23\xba\x40\x59\x3a\xbe\x6a\xdb\xc6\x97\xea\x95\xe0\xa5\x03\x4b\xd5\xac\xd8\xeb\x93\x29\xe8\x06\x02\x22\xba\xaa\x32\xb4\x9f\x28\xab\xbc\xff\x79\xea\x95\x2e\x3e\xa1\x17\xc3\x5a\x4a\x7a\x14\xb0\xc4\x3c\x9b\x45\xe3\xf9\x3b\xe7\x68\x1f\xfd\x42\x57\x1e\x30\xc8\x75\xac\x75\x12\xf8\xb7\x54\x74\x86\x99\x49\xa4\xf0\x2a\x30\x96\x52\xe2\xdb\x6c\x6c\xad\xcf\x2f\x76\x27\x36\x49\xf2\xf5\x78\xd5\x24\x91\xe1\xd5\xce\xcd\x0a\x2f\x01\xb3\xd9\x28\x2b\xec\xdf\xdf\x35\x61\x11\xad\x46\x79\xa1\x98\x29\x57\x54\x55\xe1\x8a\xb7\xd5\x2c\x93\x28\x1f\x55\xf1\xe3\x8c\xff\x53\x84\xc1\x08\xff\x99\x0a\x28\x76\xac\x2d\xae\x4f\xc5\x5a\x54\x54\x4b\xd3\x61\x57\x9d\x09\x54\x7b\xb5\xaa\xa2\xac\xa5\x59\xc6\xc2\xe9\xb5\x46\x29\x2e\x0f\xab\xfa\x5e\xbd\x3c\x47\x17\x00\xa8\xfa\x87\x6d\xa2\x99\x61\x9c\xe6\xd2\x1e\xed\x3a\x34\xf6\xef\x77\xfb\xb2\x47\xf3\x97\xe3\x94\x9a\x60\x77\xea\xd0\x0d\x1d\x56\x22\xee\xa4\x60\x57\x46\xa4\xb9\x0f\x0b\xaf\x58\x9a\xb2\xe8\xc2\x9d\x1c\x87\x57\xf2\xaf\x37\xc5\x15\x76\xa5\xa3\x58\xe3\xf5\x4e\x82\x5a\xc2\xb2\x9e\x3f\xd5\x79\x49\x66\xd1\x35\xca\xd8\xb1\x33\x5c\x0a\x3c\x5f\x60\x3b\x84\x7c\x80\x68\xc1\xcc\x13\xd4\x83\x39\xdd\x9c\xfc\x83\xa9\x6a\x4c\x03\x3e\x81\x95\xf9\x4f\x69\xc4\x52\x6c\xf0\xf8\x93\x1b\xb4\x34\x20\x87\xdd\x09\x15\x63\x69\x08\xa3\x29\x8c\xab\x84\x94\xbc\x7c\x5c\xed\xb1\xbb\x7b\x1a\xe1\x54\xd2\xc3\xff\x09\x9c\x4c\x85\x54\x45\x4f\x50\x38\xc2\x4f\x2b\x89\xba\x41\x14\x16\xd5\xb0\xdb\x41\x38\x89\xb8\xfd\x74\x9c\x42\x04\x82\x17\x0c\xf1\xdb\x34\x6d\xf9\x98\xfb\x6a\xa4\x86\xa3\xf0\x8c\xb3\x0d\x92\x60\xb5\x6f\xc6\x76\x68\xe2\xe8\x75\x07\xdc\xb3\x87\x3a\xfd\x94\xf8\xa9\xb7\xb5\xb3\x24\x05\x4c\x4e\x3c\x66\xcf\x9d\x88\x62\x37\xff\xb8\x96\xa9\x29\x0b\xb2\xad\x5c\xf4\xc0\x92\x0b\x06\x21\xa3\x88\xe1\x71\x0b\x5f\x51\x23\x9d\x8a\xd6\xb1\x4f\x73\x4c\xbe\x22\xe3\x19\xbb\xef\x55\xd5\xbe\x7a\x55\x21\xbb\x23\x6b\x06\x24\x52\x25\xe2\x64\xf7\x69\x50\xf0\x71\xe0\xd9\x58\x89\x2d\x49\x85\xc2\x0b\xb2\x9c\x50\xdd\xa6\x33\x3d\x0f\x1d\x5c\xd0\x0a\xbc\xe7\xda\x30\xb1\x81\x1d\xa7\x61\x66\x04\x80\xc4\x5f\xb2\x95\x17\x9f\x28\xa1\x8c\x32\xb7\x4f\x78\x3f\xa7\x27\xa9\x75\x16\xb8\xc7\x27\x58\x74\xb1\x68\xce\x62\x08\xea\x18\x10\x2d\x3f\x5f\xd9\x50\x9a\x75\x68\x8f\x43\xd0\xb3\x13\xfb\x27\xd6\x6c\x16\xc5\x72\xf4\xb4\xc3\x82\x2f\xee\x04\x7e\x84\xfb\xdc\xdd\xab\x9e\x94\xf4\x3a\xd2\xe6\xe4\xc2\x2f\x2f\xe7\x7a\x4f\x6d\x75\x5d\xd2\x46\x96\xf7\xf8\x85\x2a\xff\x63\x13\xc7\xc4\x82\x02\xb2\x8f\x40\x05\x49\xe9\x56\xa0\xca\x78\x97\x95\xc7\x59\x92\x4f\xa2\xcc\x84\x30\xc6\x11\x17\x5f\xba\x25\x67\xd1\xe3\x14\xb3\x1f\xa5\x05\x59\xba\x30\x9e\xf1\x24\xbb\x91\x1d\x57\x2f\x22\x32\x89\x12\x2e\x3d\xa1\x84\x4b\x4f\xb4\x12\x89\xd6\xd2\x6c\x65\x4e\x55\xca\x00\xd3\xa3\xc5\x96\x25\x49\xa4\xbf\x81\x16\x03\x44\xac\x93\xa9\x7f\xfa\x9d\x8d\xe6\x42\x7c\xb0\x1b\xa6\x45\xc1\x25\x43\x2d\xec\x28\xa0\xe4\x97\x7d\x41\x3d\x4a\x55\x56\xed\x7b\xee\xee\x20\x03\x67\x23\x34\x6d\xcd\x03\x14\x48\x1c\xd2\x5a\x94\x2b\xc2\xcc\x84\x2b\x83\x74\x0d\x3f\x2f\x36\x4a\xca\x50\xe8\x4c\xf5\xfb\x9e\x8c\x33\xcc\x4c\x51\xa2\xd4\x56\x7d\xc0\x55\x19\xaa\x0f\xf0\x49\x9b\x2e\xb4\x19\xd8\x57\x9d\x34\x09\x74\xa1\x20\xa0\xc7\xc7\xb5\x65\x3d\x8c\xed\x9e\xea\xdf\xd0\x71\x7c\x49\xf1\x48\xaf\x53\x34\x06\x66\xd2\x66\x40\x6b\x20\x9f\x60\x85\x10\xb1\x33\xb5\xfc\xb0\x9c\x9d\x14\xc4\xb4\x45\x3c\x7c\x3d\xb6\xde\x9c\xfa\xee\xd1\x1f\x06\x7e\xe1\xdf\xd3\x68\x84\xd9\xb7\xaf\x5b\x3a\x3c\x07\x2b\x3a\xc8\x22\x7c\x3c\xf5\x38\xe9\x1a\x94\x04\x67\xfc\x68\x44\xcb\x30\xb6\xf0\x8f\x03\xdf\xc2\x7d\xc3\x35\xf7\x4c\x62\x93\x24\x36\x03\x11\xc9\xf5\x6f\xa9\x0e\x6b\xe5\x10\xf2\xd7\xda\xe2\x60\xb0\x4e\x2a\x33\x22\x40\x48\x77\x8f\x6d\xe5\xcc\x54\xb5\x79\x9d\x57\x31\xdd\x49\x6d\x13\x6d\xfa\xb1\x45\xd6\x8a\x35\x10\x72\xf7\x88\x21\x99\x78\xc4\x1e\x39\x94\xc2\x3a\xb5\x65\x77\xe7\x1d\x2c\x37\xfc\x69\x55\xe7\x49\xa2\x70\x84\x3c\x06\xaf\xe9\x18\xdd\x38\x1f\x4f\x95\x04\x43\xba\xca\x74\x27\x60\x0e\x37\x14\x29\x9a\x59\x06\x6c\x67\xaf\x28\xac\x43\x33\xb6\xe0\x3a\x21\x51\xb8\xee\x5d\x23\x5f\x7d\x92\x48\x5b\x78\xc2\xdb\x36\x14\x7b\xe3\xfc\x17\xd2\xf6\xc7\x76\x10\x91\xbe\x9c\x2a\xb9\xc2\x97\x46\xa4\xd1\x95\xe9\x8f\x99\x44\x03\xaa\x5f\x61\x1f\x62\xe5\x06\x36\xc1\x0b\x3a\x2f\x2c\xf8\x42\xa1\x23\x9b\x7f\x84\xc4\x02\x43\xfe\x5d\x55\x41\xfc\x64\xaa\xc5\xbb\xfd\x20\xca\xc3\xb2\x28\x62\xf6\xf1\x68\xd5\x54\x7d\x52\x99\x8b\xa1\xdd\x77\x87\x12\x36\xfb\x0d\xec\x4a\x7c\x12\x28\x4d\xf6\xf7\x55\x7f\xfc\xfb\x81\xd2\xfc\xea\xa0\xbf\x83\x4f\x7a\xaa\x98\x3b\xa1\xef\xef\xe8\xa4\xf5\x1a\x00\x79\xf1\xf9\x6d\x68\x54\xef\xeb\xa6\xf1\xfa\x78\x12\x85\x02\x3b\x20\x07\x60\xd8\x81\x4f\xb4\xc4\x5d\x9a\x55\x5b\xf8\xae\xea\x91\x61\xfc\xc2\x7c\x1c\xe0\xdb\xf9\x40\xa1\x96\xd7\xf4\xc0\xbe\x86\x80\x09\x3a\x13\x9f\x28\x51\xe4\xf3\x58\x09\x58\x07\x76\xaa\xe6\x4f\xb3\x69\xb0\xca\xe5\xd7\xa2\x81\xcd\x27\x99\x28\xf9\x8a\x4b\x4b\xc7\xe9\x8f\x1f\x71\x63\x76\x6c\xa2\x58\xc2\x0d\xa6\xf8\xe3\x01\x0b\xdf\xbf\x05\xc1\x5c\x8e\x8a\xc2\xb1\x85\x9d\xa7\xaf\xab\x52\xdd\x52\x41\xeb\x89\xc6\x30\xad\xa2\xb2\x6a\xff\x4b\xe3\x68\x60\x1c\x02\x2f\x43\xb3\xe3\x54\x06\xff\x6c\xaa\xb2\xd4\x33\x6d\x5d\x2d\xcb\x26\xce\xb1\x12\x0b\x42\xa3\xd0\x1a\x85\xa2\x4e\xca\x2c\x1c\x99\xdc\x66\xcc\x08\x06\x73\x0b\xb8\x37\x1f\x37\xd8\x7c\xfb\xf7\x77\xc7\xf6\xf5\xd7\xd3\x61\x94\x66\x49\xaa\x9a\xd8\x38\x23\xe2\x13\x5d\x51\x8a\xa8\x13\x78\xae\x7a\xe9\xa8\xd0\x71\x53\x95\xd4\x71\x3c\x65\xf5\x86\x72\x12\x38\x82\xcc\x82\xf7\xd8\xe0\x2b\xf5\x44\x77\x71\x51\xa6\x35\x5c\x4b\x30\xd6\xde\x0a\x74\x05\x9f\x3e\x2f\x80\x76\x35\xcc\x70\xcc\xfa\xd5\xbc\x1f\x50\x36\x8d\x60\xeb\x2a\x92\x5a\x64\x08\x3f\x50\xb6\x89\xdb\xd0\x3e\xeb\xcc\xff\xf6\x2d\xf0\x52\xfc\x0e\x90\x0b\xfe\xc4\x54\x09\x6f\x5c\x43\x4e\x8c\xa5\xe0\x53\x0a\xd4\xf1\xf1\xbb\x54\x03\xc4\x53\xba\x82\x1d\x4e\x18\xb2\xd5\x63\x67\x1a\x2f\x40\xf4\xad\x2d\x6d\xa9\x7f\x03\x20\x82\x53\xb0\xac\x9e\x36\xde\xd2\x6f\x51\x8f\x23\x1e\xc1\xe5\xb6\xf2\x5c\x38\x32\x51\x56\x0f\xda\x15\xbd\x63\xd3\xab\x07\x9a\xc2\xc4\xe9\x50\x11\x46\xd0\x84\xc1\xc7\x0f\xeb\x34\xec\xdf\x7f\xa0\xbb\x6f\x81\xea\x0e\x58\xbc\x77\xf6\x3c\xc7\x59\x47\xab\xdb\x55\xdb\x0b\xdb\x9d\x0b\xd8\xa8\x7a\x99\x99\xe6\x88\x31\xf2\x86\x52\x32\xdf\xb6\x21\x04\x45\x47\xa6\xe0\x56\x74\xae\x70\x07\x1e\xac\xbd\xe4\x9a\x2d\xd2\xb2\xa0\xe6\x16\xda\xa2\x39\xcf\x08\xbc\xa4\xfb\x79\x2c\x30\x58\x53\x8e\xbb\xa6\xf8\x22\x42\xa4\x04\x3c\x0d\x92\x23\x7c\xbc\xb1\xc7\x37\x01\xf1\x1c\x77\x65\x39\x25\x89\x4f\x77\x24\x64\x1d\xb9\xf0\x7e\x99\x47\x89\xcd\xf3\x31\x87\xa4\xe2\x76\xd7\x71\x7e\xce\x67\x3d\x0b\x33\x29\x6c\xb6\x1a\xd9\xb5\x5a\x35\x00\xdd\xae\x02\xc0\xcb\x1b\x8b\xab\x29\xcc\x00\x8a\xa8\xc0\xd1\x30\x14\x79\x38\xed\x51\x44\x9a\xf9\xb5\xb0\xb2\xfa\x4a\x50\x71\x3f\xa3\x59\xcf\xc7\xb4\xa7\x49\x80\xe9\x07\x87\xcd\x4d\x26\xb0\x34\x50\xaa\x77\xa6\x4a\x3d\xfe\xa8\xb6\xbe\x3a\xdf\x20\xe3\xbe\xf2\x4a\x37\x34\xe3\x89\x35\x25\xdd\x15\xc2\x6a\xae\xa4\xf0\x89\xd2\x38\x65\x6b\x58\xf2\xa8\xd0\x72\xb3\xf4\xd2\x40\xb6\xbb\xaa\x3a\x5f\x8e\x60\xef\xe0\x7f\xa8\xd9\x2e\xa6\x51\xfc\x88\x6a\xb2\xbf\xae\xdf\xfb\x2d\xb5\x60\xbc\x43\x13\x10\x10\x21\x9e\x0c\xd2\x96\x3d\x4a\x7c\xe4\xbc\x16\x6f\xbd\xa0\x65\x82\xdf\xa3\x39\x88\x74\xee\xf7\xb1\x5d\x21\x33\xbf\xd9\x28\x65\xbe\xb0\xd0\xcd\x0b\x9b\x45\x71\xf4\xba\xad\xa9\xa9\xfb\x0e\x9d\x4d\x87\xd5\x1b\x5b\x24\x66\xce\x33\x14\x8f\x63\xfa\x00\xec\x38\x3a\xf5\x7e\x92\xe7\x55\xb5\x88\x79\xe7\x02\x9b\x78\x81\x57\xd2\x00\xd9\x5d\xfd\x26\x96\x2c\xd6\x51\xc7\x96\x79\x0a\x4f\x06\xd1\xec\x39\x2c\x60\x8e\xea\xe2\x24\x6a\x20\xb1\x86\xa8\xe8\x09\xca\x90\x45\xe3\x8b\x1e\x0d\xea\x7b\xa7\x34\x7b\xf5\x84\x6b\xf8\x1a\xd8\x38\xcd\x24\x56\x70\x2d\xb0\x5e\xe0\xe8\x98\x6a\x23\x9b\x98\xac\xc0\x44\x57\xfb\xe0\x6b\xca\xcf\xe4\xb5\x56\xd0\xcb\x26\x85\x68\xda\xb3\x91\xbc\xee\xf2\xf9\x9b\x56\xf3\x78\xfb\x5a\x94\x17\x1d\xa5\x29\x77\x4a\x79\x78\x9e\x6a\x53\xff\xc9\xcb\xa1\xe1\x38\x5e\xf1\x29\x0e\xd6\xba\xd0\x80\x89\xdd\x6e\x23\xa5\xf7\xb3\x88\xcc\x6b\xe9\xca\x10\x4e\x00\x1a\xe1\x63\xe5\xcc\x9b\x5b\x72\x5c\xdf\xe1\x87\xfa\x2d\x6c\x0a\x58\xbb\x8f\x4d\xfd\x32\x78\x0f\x77\xea\xb8\x14\xd5\x02\x05\x20\x0c\xef\x0f\x1b\xc4\x4d\xb5\x35\xaf\x56\x59\xb2\xd1\xa9\xe1\xa7\xf8\x0e\x3e\x69\x69\x83\x3b\xa8\x15\xea\xd9\x0a\x2a\xf0\xa1\xc6\x12\x42\x60\x21\x94\x79\x21\xd1\x28\x19\x94\x79\x91\x45\x26\xa6\xcc\xde\xa1\xf2\x6e\x79\xbd\xa0\xe4\x8b\x7f\x82\x91\x88\x61\xf9\x71\x2d\x77\x4c\xb2\xa8\xa3\x46\x26\xf0\x1a\x3e\x0e\x7c\x9d\x2e\x2e\x73\xb8\x47\x82\x63\xf6\x33\xba\x44\x3e\x56\x99\xd5\xb8\x64\x36\x26\x83\xd7\xf4\x6d\x02\x64\x3f\xcc\xdc\xa0\x7e\xe1\x01\x7c\xbb\xa5\xf4\x42\x1f\x76\xa4\x76\x37\x31\xf6\xd6\x08\xd5\x34\xc7\xa4\xd8\xdc\xc2\x76\x1f\x45\x79\x91\x66\x0c\x1c\x71\x1f\x4a\xa0\x7b\x52\x5a\x4c\xf2\xc6\x65\x12\xe9\x26\x5f\x26\x21\x6a\x47\xf5\xab\x6e\xde\x0d\xb3\x68\xcc\x5c\x2d\x30\x25\x4e\xab\x90\xf7\xb8\xaa\xd0\x7e\xaf\xf6\xac\x27\xc5\xfa\x0e\xc0\x8a\xa8\x76\xbc\xa9\x3a\x2a\x2f\x2a\xdb\xc0\x93\x88\x63\xf8\x8f\x94\xb5\xff\x49\x85\x19\x5d\x0c\xfc\x2a\xd0\xaf\xf2\x98\x6a\x18\xb0\xf4\xab\x17\x83\xba\xf1\x95\x9e\x72\xe5\x03\x23\x13\x41\xc0\x03\x0a\xa2\x9c\x68\x65\x75\x9b\x78\x3c\x9d\x8d\xa7\x6a\xdd\x44\x36\xc9\x4b\xa6\x50\xf3\xc2\x1e\x28\xde\x84\xa6\x15\x51\x2b\x6f\xe6\x81\x6f\xa6\x9f\x05\xca\x9c\xe5\xb4\x46\x52\x6f\x80\xf2\x25\x13\xdb\x73\x9c\xb7\x83\xed\xc4\xff\x80\x8b\x13\x2e\x9b\xca\x7e\xa2\x38\x5e\x2e\xe3\x6a\x58\x6e\x41\x5f\x75\xab\x29\xe8\xb7\xb8\xd8\x25\x7d\x0d\x81\x25\xb5\xce\x1e\x26\xc7\x35\x5d\x41\x3e\x8b\x65\x1a\x55\x85\x77\x54\xba\x38\x49\xf3\x62\x92\x26\xb6\xd6\x2b\x34\x55\xbd\x42\x35\x21\x09\x95\xdc\x36\xbd\xe5\x29\xa3\xc8\x0b\x9b\x17\x33\x04\x0e\x82\x19\xb5\x87\x12\x70\xe0\x8c\xb3\x1b\xbe\xc8\xd8\xd6\xa3\xd7\x1d\x64\xe9\x2a\xd1\x8b\xa5\xa2\xb5\x15\x28\x29\xb3\xf3\xaa\xf8\xa9\x65\x08\xa3\xc2\x8e\xf3\x39\x8a\x7a\xf1\xaa\x59\x9f\x54\xfc\xbe\xab\x4f\x21\xd8\xfc\x43\x9d\xe2\x7e\x8c\xef\x96\xb2\x93\x72\xbd\xb2\xe3\x49\x2a\xbb\x03\x1e\xd9\x6c\x4f\xb5\xcc\xcc\x6e\xec\x71\x2d\x33\x2b\x76\xd6\x67\xa9\xc8\x51\xb0\x1c\xdd\x56\xd8\xdd\xfb\xba\xe7\xe3\x5d\xf5\xf4\xd7\xaa\x29\x1d\x5b\x5e\x5c\x9c\xdb\xae\x77\xde\xd5\x1b\x9d\x4d\x4c\x5c\xb0\x0a\xb0\x2c\x58\xac\xca\xc1\x27\xf5\x66\xc5\xbc\x1c\xdb\x2c\xdf\xe1\x43\xc7\x1f\x60\x44\x20\xf8\xb9\x1c\x28\x1b\x2f\xfc\xa6\x34\xea\x75\xbe\xf9\x92\xf3\xab\xa1\xdf\x12\xf6\xa3\x87\xce\xf3\x35\x3b\xb0\x49\xa7\x46\xac\xaf\x9e\x83\x14\x48\x5b\xb6\xdc\x32\x89\x96\xd3\x6c\x8c\x5b\x75\xa4\x0f\x55\x74\x6a\xf3\x42\xfc\xff\x57\xda\xdc\xeb\x9a\xe5\x32\x03\xf7\x43\x1e\xf1\xb4\x58\xc8\xe8\x7f\x52\xcb\x67\xd9\x74\x95\x43\x66\xa7\xb4\xe5\x55\xb7\x1a\x0b\xef\xfe\xfd\xdd\x81\x9d\xa4\x79\x24\x2d\x08\x08\xe0\x3f\x55\x35\xe7\x4f\xd5\x2b\xc5\x62\x61\x33\x02\xb4\xb1\xe1\x42\x3e\x8a\x3b\x99\x03\x9f\x35\x9c\x68\x08\x93\x7f\xbd\x9b\x5b\x23\xb7\x8b\x19\xc0\xea\xbe\x7c\xa2\x8a\x40\x66\xdc\x8f\x56\x4d\x6c\x6b\x62\xc3\xa7\x94\xd8\xf0\x29\x17\x1c\x4e\xb2\xb4\xcf\xe8\x91\xf0\xaa\xaa\x8f\xf0\xb1\x6a\xdd\xcf\x9e\x8d\x9e\xa5\x6f\x43\x61\x9c\xa9\xbf\x7c\xa2\xda\x00\x62\x1b\x8e\xac\xee\x08\xe4\x95\x56\xd6\x0c\x85\xd3\x0f\x6d\xee\xc4\x97\xc4\x1d\xd5\x83\x14\xe7\x1a\x9c\x81\x97\x16\x0e\x75\x07\x51\x1e\x96\x79\x6e\xd9\x0c\x40\x46\xb7\x1e\xea\x2d\x6d\xe3\x55\xb8\xc4\xdd\x6b\x82\xc3\xaa\x92\xdb\x99\x2f\x64\x27\x8c\xd2\xc2\xd2\x6a\xcb\x9b\xdb\x2d\xad\x92\xeb\x85\xa4\x97\xa3\x41\x19\x46\xc2\x13\x44\xc2\x7a\x9b\xde\x26\x1f\x2b\x22\x43\x96\xc6\x71\x94\x0c\xa9\xaf\x1e\x7c\x03\x14\x22\xb1\x02\xfc\x18\x93\x16\x83\xe0\x2a\xa6\x18\x9f\xd0\xeb\xe3\xbf\xa2\xd5\x8e\x3f\x3d\xf5\xfe\x54\x98\x12\x51\x61\xe8\x6e\xe9\xc3\x00\xb5\x59\x7a\x8c\x4f\x5a\x4c\xda\x5e\x46\x0d\xb9\xa3\x4c\x45\x36\x6b\xf8\xaa\xf2\xc2\x30\xab\x51\x32\xcc\x67\xb1\xe1\x61\xe8\x72\x14\xe3\x5a\x94\xdc\x2a\xc5\x2f\x9f\xff\x4a\x51\x6c\x5f\xf8\xc6\x2f\x76\x7c\xe2\x74\x47\xab\x4b\xdd\x51\xbc\xc4\x49\x1a\x47\x21\x36\x7a\x11\xef\x53\x48\x3c\xee\x0a\x9b\xfb\x6e\xe8\x38\x62\x5a\xdd\x98\x2a\x7f\xb2\x4b\x53\x9f\x62\xfc\x8b\xc6\xd6\xf2\x2c\x4b\xff\xa8\x0e\xff\xf3\x0a\xe1\xff\x91\x5e\x9f\x4f\xb4\xb4\xf6\x3e\xd7\x1d\x64\x66\x0c\x92\x25\x0b\xc2\x06\xca\xd3\xb6\x59\xe8\x93\xb1\x95\xd8\xd5\x6a\x29\xf8\xe5\x6f\xf9\x26\x30\x27\xfc\x75\x4b\x7b\x9a\x1f\x6b\x5c\x33\xe9\x0a\xa4\x31\xcf\x01\xd0\xdf\xff\xf5\x54\x69\x5c\xfd\xeb\x06\xa3\xed\xd0\x8b\x5d\x2c\x6d\x4e\xab\xf6\x8c\x12\x11\x38\x13\xf8\x55\xd0\x44\x59\x3f\xcd\x12\xdb\xa9\x2e\x0d\x21\xe7\x5d\x25\x65\x7a\xb7\xa6\xe2\x39\xb0\xbb\x15\x8a\x34\xcb\x5d\x19\x9a\xb7\xc7\xbd\x05\x4a\x55\xe3\x4d\xa4\x79\xe2\xc0\xa0\xda\xa8\x79\x98\xba\x8c\xe3\x9b\x2f\xf1\x54\x43\x96\xc8\x1e\xf9\x6d\xf2\xf1\xe3\x54\xac\x0e\x04\x3a\xa2\xaf\xe5\x13\x97\xbe\xbe\x5a\x9a\x38\x5a\x06\x85\xd9\x11\x3e\x9d\x02\xd8\x05\xd5\x69\xd1\x2f\xb3\xa1\xd4\x59\x44\x00\x84\xbe\x52\xe4\x09\xe8\x4a\x51\x35\x3b\xd6\x3a\x2c\x8a\xcc\x30\xeb\x0b\xa0\xe1\xc9\xc0\x97\xef\x4f\xaa\x49\x9b\x59\xa7\x06\x63\x45\x46\xa5\xe6\x15\x2d\xcb\xa1\x8f\x42\xfa\x59\x5a\x8c\x6c\x06\xf1\x18\xd6\xfa\xc3\xdf\x02\xa0\x78\x86\xdf\x83\x93\xd8\xf4\x4e\x99\xa8\x16\x21\x36\xbe\xe7\x5a\xf7\xaa\xc5\x38\x4e\xc7\xd4\x00\xaa\x76\xbf\xb9\x9e\xdf\xfd\xe6\x36\x9e\x70\xe0\x12\xdb\x11\x61\x85\x41\xae\x73\x46\xe5\x87\x67\x1a\xfb\x35\x99\x8e\x27\xc3\x32\xe2\x94\x8a\x2b\x57\x34\xcf\xa4\x8a\xf5\xb8\xef\xd4\x0b\x57\x1c\x04\x8e\xb9\x81\xce\x50\x27\xca\x5e\xdd\xa9\xb4\xd1\xfb\x1d\xaa\x28\xfb\x96\x2a\xf6\x40\xea\xee\x28\x76\xc0\x9d\x96\x25\xaf\xca\x8b\xd3\x04\xb8\x17\xe0\x51\xc8\xbd\xf0\x71\x03\xb6\x86\x51\xf0\x20\x5a\x8d\x06\xa5\x89\x3b\xaa\x3e\xf1\x61\xe0\xef\xbd\xe9\xad\xbd\xb8\xd8\x4d\xcb\x22\xb6\x45\xfe\xc5\x02\x1b\x1a\x6c\x5a\x2b\x46\x64\x66\xf7\xff\x71\xf6\xa7\x31\x92\x65\xd7\x9d\x18\x5e\x15\x99\xb5\xf4\xca\xee\xea\x6e\x0e\x67\x34\x7f\x4c\xe8\x3f\x84\x5b\x83\x29\x11\xb2\x20\x18\x23\xc2\xc0\x0b\x65\x25\xc9\xae\x82\x99\x9d\xce\x2a\x56\x8f\xda\x5f\xea\x46\xc4\xcd\x88\xdb\xf9\xe2\xbd\xe0\x5b\x32\x2b\xcb\xb0\x21\xcc\x87\x81\x31\xb0\x8d\x91\xed\x0f\x1a\x7b\x30\x63\x4b\xb2\x46\x02\x66\x24\x4a\x14\x29\x52\xb2\x14\x49\x8a\x22\x29\xae\xbd\xb3\xf7\xae\x7d\xdf\xf7\xa5\x3b\xcb\x78\xe7\x77\xce\xbd\x27\x32\x5e\x8d\x0d\x7f\x21\xde\x63\x57\x64\xbc\xb8\xef\x2e\x67\xf9\x2d\x38\x82\xa7\x20\x68\x8f\x82\xe3\x37\xe8\x8b\x70\xde\x7f\x43\x31\x6c\x6e\x60\xdd\x60\xef\x78\x15\x11\x2e\x52\xa9\x9b\xa3\xe0\x9b\xf6\x06\x36\x45\x94\x3e\x36\xb5\xc2\x1a\x38\x31\x1a\x37\x65\xaf\x46\x01\x5b\xe7\xab\xba\x54\x74\xb2\xd6\x6e\x29\x73\x9d\x3e\xfa\x0c\xd2\x95\x68\x78\x6e\xfd\x6d\xd5\x35\x38\xef\x3b\xf4\x79\xd9\xce\x5d\x37\x38\x28\x88\x30\x77\x43\x09\x76\x87\x34\xbc\x93\x76\xed\x54\xf5\x56\xd1\x37\xc7\xd3\xf9\xf6\xe2\x6e\x41\x5a\x7c\xa4\xf4\x02\xcd\xb2\xc9\x5c\xc7\xa5\x25\x76\x04\x84\x83\xe7\xe8\xe5\xf2\x75\x2d\x4a\x73\xd9\x30\xac\x8b\x0b\x75\xf4\x43\xa4\x68\x57\x67\x55\xdd\xb6\x49\x5e\xed\x13\x54\xc8\x60\x64\x1e\xfd\x0a\xd4\x22\x8f\x6a\x2e\xfd\xe9\xba\x66\xcf\xb2\x39\xf8\xab\xbf\xf4\x4b\xbf\x34\x45\xff\x0e\x99\xc7\x0d\x6c\x5c\x9e\x61\xe2\x7b\xc3\xf7\x6b\xf8\x0c\xa4\x2d\x9b\xc6\xcb\x96\x95\x29\xf0\x02\xef\x8e\x7b\x51\x68\xdf\x76\x85\x19\xeb\x64\x6e\x30\x04\x85\x00\xff\xf1\x9c\x2a\x1e\xd6\xd6\x18\xa4\xd7\x33\xa5\xa4\xfc\x11\x2d\xa2\x2d\xb9\x8d\x76\x0b\xe4\x60\xf7\x55\xbe\x41\x62\x62\xb6\x48\x93\x69\xa5\x5c\x7e\x11\x89\x30\x4e\x8a\x4d\xb4\xbd\x63\x62\xbe\xa5\xc8\xed\x67\x26\x88\xbf\xd5\xc9\x47\x7a\x1f\x99\x71\x89\x24\x47\x42\xcc\xa4\x5f\xca\x37\x1e\xa2\x93\xc7\xd6\x7a\xc1\x1f\x2f\x44\xd3\xf0\x26\xd9\x3f\x56\xc2\x8c\xc3\xa0\x0d\xf4\xa2\x14\x31\x95\xbd\x7a\x2d\x68\x27\x77\x45\x49\x7e\xa0\xbc\xbc\x99\x92\x89\x45\x28\xfc\xcc\x8d\x3f\x63\xcf\x9e\xe6\xb0\x9f\x16\x69\x2f\x33\xc3\x3e\x57\x6d\x84\xbb\x15\x06\x74\xd2\x6e\x91\xf0\x8e\xe9\x8a\xdf\x1d\xc5\x3a\x24\xd4\x4b\x00\xab\xc6\x99\x70\x76\x14\xf4\x68\x4d\x51\x18\x27\x95\x1e\xd1\x57\x6a\x78\x69\xbb\xb3\xaa\xa2\x95\x88\xaf\xae\x9f\x84\x9e\xf0\xf3\x21\x0d\x1c\x9b\x69\xa2\xf0\x2b\xc0\xc9\x1a\xbd\xba\xae\xcb\x07\x2e\x87\xc0\x93\xc8\xe0\xd0\xb0\x08\x79\x44\x83\x94\xd9\x70\x3e\x65\x75\x2c\xe0\x9d\x00\x82\x90\x1a\x16\x3d\xbb\x2f\x6e\x79\x84\xd4\xbb\x93\xae\x94\xa4\x33\x12\x3b\xc9\x12\xe4\x98\xd6\x67\x76\xf4\x74\x4d\x45\x0c\xca\x88\x28\xe0\xaf\xd1\x57\xf0\xb5\x16\x50\xb1\x1d\x33\xb0\x8f\x28\x37\xdc\x37\x47\xca\xd8\xe8\x36\x76\x59\xd1\xed\x52\x8a\x3b\xc7\x01\x8c\x42\x04\xf0\x11\x3a\x85\x42\xf6\x0d\x07\xe1\x34\x6d\xcc\xe2\x31\x1a\x9c\x25\xdf\x1c\x05\xc7\xc4\x91\x32\xc1\x5b\xaf\x09\x3e\x5e\x84\xb6\xfc\xb4\x46\x59\x8e\xc2\xbc\x78\x55\x29\x42\x33\xe9\x53\x2a\xe9\x4f\xa8\x1c\xd2\x1c\x92\xe6\xb5\x7f\x19\x6a\xcc\xf5\xfa\x4e\xab\xf4\x87\x72\x9a\x19\x7e\x3f\xf7\xb5\x19\xe2\x51\x9d\x96\x9f\x53\xb2\xad\x60\x88\xb3\x9c\xe4\x48\xa9\xa5\x9c\x8c\xb4\x67\x4a\x5e\xb8\xa5\x46\x58\xb1\xf7\x95\x11\xe1\xfd\x28\xd4\x5b\x0e\x1d\x02\xf2\x8a\xf5\x25\x15\x63\x02\xf2\xe1\xa2\xfb\xa1\xa6\x23\x0d\x0a\x8a\x51\xdb\x27\xa0\x3c\xbb\xe7\x9a\x9d\xac\xec\xf2\x7e\x87\xed\x19\x09\x2a\xc6\xe0\x35\x45\x24\x3f\xaa\x88\x38\xca\xc6\xda\x9b\x09\x42\x1e\x83\xaf\xd7\x02\xc0\xf1\x90\xc9\x6c\xc1\x0e\x14\x2a\x72\x9d\x9f\x88\x5c\xab\x50\xa5\xec\x14\x00\xf9\x4a\x0e\x1b\x66\x0a\x73\xfa\x91\xfd\x60\x3b\xf5\x14\x3d\x7f\xa2\xdd\xac\xb3\x7b\x6d\x9b\x0e\x78\x49\xe8\x06\x40\x27\x84\xaf\xc7\xe8\xf7\x89\x21\xa5\xaa\x50\xa5\xbc\x30\x52\xc0\xdd\x0b\xb5\x4d\xe3\x38\xcd\xab\x20\xba\xfa\x8c\x10\x13\x42\x39\xf6\x82\xb6\x3b\xf8\x0f\xaa\xf2\xde\xb6\x36\xdb\x3a\x66\x98\xa5\xb6\xa3\xd3\xfa\x80\x3c\x1d\x8d\x19\x53\x69\x4e\xd6\x1d\x45\x0e\xe2\xf4\xb5\x30\x3d\xce\xbe\x7e\xf9\x17\xff\xff\xd5\xca\x42\xc0\x74\x76\x5c\xa7\x58\x89\x50\xbc\x1f\xa9\x7c\xe4\x0c\x69\x94\x62\x64\x5e\x43\x23\x1d\x1d\xb0\x77\xf1\x78\xd8\x8b\xdf\xa5\x1a\x33\x63\xf6\x09\xe4\xe3\x1b\xec\x5f\x7a\x8e\x03\xb1\xaf\x51\xff\x1f\x65\xb4\xdf\xd5\x82\xdd\x57\x47\x9b\x3f\xcd\x6b\xe6\x5f\x44\x8d\x7d\xcf\xf3\x4e\xfb\x5d\x14\xc7\x3d\x67\x79\xb7\x04\xd0\x2f\x63\xf1\x4e\x62\x50\x8e\x13\x75\x12\x27\xed\x5f\x81\xf5\x80\xb0\xf6\xbd\x31\x86\x01\xf3\x08\xc4\xbe\x40\x99\x35\xbd\x49\x95\x3e\x2f\x16\xb0\x30\xb3\x7e\x3a\x0a\xfe\x70\x2f\x63\xf3\xc2\x4e\xfa\xd7\x40\x30\x78\x30\x84\xef\xa3\x7f\x5f\x73\x21\x2e\x80\x05\x8b\xb5\xf6\x75\x86\x1a\x73\x5c\x4a\x92\x05\x82\xb0\x24\xe6\x34\xd0\x38\x6f\x44\x63\x90\xef\x82\xbd\x6d\xbd\x17\xff\x9e\x3d\x3e\x10\x9c\x44\xcf\xcf\x37\xcb\x44\x54\x56\x84\x5c\xa5\x9d\xe4\x6a\xd5\x3a\x86\x99\xed\xba\x0e\xaf\x47\x25\x60\x23\x0a\xc6\x93\x8e\x30\xb3\xfb\x9a\x6d\x93\xbb\xce\xb4\xe2\x6a\x7c\x77\x14\x0a\xab\x77\x55\x08\xbc\x49\x63\x69\x8f\x4d\xfc\xa9\x03\x07\x9a\xa9\x2d\x17\xc7\x59\x3a\xc1\xae\xe5\x16\x9d\x85\x72\x0e\x4b\xfd\x6e\x31\x36\x03\x78\x0b\xe0\xcf\x9e\x1a\x85\x69\x3f\x4d\x9b\x8e\xf8\x51\x7a\x61\xbe\x38\xd4\x11\x01\x94\xb8\x85\x28\x9f\x6f\x82\x31\xa0\x49\x4c\xd7\x89\x5c\x25\xf6\xb9\x1f\xd0\xa8\x23\xac\xb9\x8b\xd9\xa7\x41\xb5\x02\xa9\xda\x18\xef\x48\xcd\x63\xa5\x6f\xab\xc4\x75\x4b\xf5\x4b\x50\xcf\x59\x87\xa4\xb0\x37\x0b\xad\xe6\x15\xfe\xca\x71\xdd\x75\xbd\x46\x70\x79\xc0\xf3\x6e\x07\x34\xa4\x4d\x87\xb1\xcd\xb7\x2a\xf2\xe8\xa6\x35\x2d\xc9\x09\xbe\x85\xdf\xec\x3f\xff\x02\xe7\x83\xc7\x47\x41\xf0\x8e\x65\x92\x30\xb0\x1f\x7b\xb8\x45\x35\x0f\xc8\x30\x97\x8b\xfd\x32\x25\x1b\xde\x5f\xe3\x0d\xff\x12\x7a\xd6\x2e\xe5\xdb\x54\x23\xef\xd1\x96\x12\xc7\x9a\x5a\x0b\xe5\xab\xf3\xbc\xfe\x10\xac\xad\xd3\x5f\x93\xff\x52\x7d\x8b\x58\x7c\xd0\xdb\x11\xe0\x56\x8d\xee\x6a\x61\xb2\x9e\x0d\xae\x63\x68\xc9\xe1\xcf\xf1\xf5\x03\xeb\x4e\x59\x40\x86\xe1\x9d\xae\x47\x81\xf0\x76\x69\x0c\x80\xe1\xeb\x03\x79\x49\xea\xb0\x2e\xe9\xb1\xd6\x91\xac\x0d\x25\xf4\x34\xe6\xd8\xed\x3a\xc5\x43\xf4\x2e\x7d\x8f\x79\xcf\x1e\x7e\x27\xf0\x26\xc2\x9e\x7a\x05\x63\xef\x75\x71\xbc\x98\x13\xf3\x7e\xf0\x80\x7f\x4e\x2f\x9f\x3f\x81\x45\x8c\x29\xf2\x56\x14\xc8\xec\xa7\xd5\x61\xd5\xe9\x9b\xe1\x80\xeb\xbd\xe2\x13\xad\x9c\xec\x6e\x8d\x59\xdd\xf4\x4c\xd6\x25\xeb\x32\xbf\x7b\x9e\x8e\x54\xc1\x84\xdb\x77\x48\xba\xbf\xaf\x12\xf0\xef\xab\xce\x01\xcc\xfd\x6c\x77\x5a\xeb\x97\x9e\xd4\x18\xe3\x77\x95\x6b\xe2\x5f\xe0\x37\x20\x1e\xb9\xac\xfa\x38\x45\xdf\xa6\x99\xcb\x0b\x26\x01\x0a\x53\xb8\x1a\x64\x21\x0a\x3f\xed\xe3\x01\x72\x98\xe8\xc4\xc6\x89\xed\x28\x00\x70\x47\xa3\x00\x86\x3b\xaa\xc2\xd6\xcc\x05\x15\x52\x9f\x05\x79\x30\x3d\x4a\x1f\x98\x95\xef\xd4\xd9\xad\x76\x83\x74\x92\x97\xb4\xa9\x46\x54\x90\x72\x0f\xc9\x01\xfb\x0b\xcf\x54\x87\x9b\x27\x85\x2e\xcc\x70\x8f\x60\x33\x01\xfe\x11\x30\xdf\x8e\x94\xd4\x3e\xc2\x18\xf6\xc3\xa5\x73\xcb\xdb\xc1\xef\x96\x54\xe1\xab\x7c\x60\xb0\x9c\x09\x2f\x22\x91\x3c\x52\x31\xfe\x35\xe5\x07\xfe\xa3\x28\xd8\x46\xbf\x8a\x93\x4e\x54\xdd\xe8\x77\xe0\xeb\xa7\x5a\x74\xb8\x22\x10\xff\x23\x2d\xbe\xc9\x58\x5c\xcc\x99\x13\x01\xca\xbc\xc4\x9c\x08\x99\x06\x34\x0e\xd8\x71\xaf\x60\xe1\x0a\x36\xaa\x46\xc2\xac\x93\x0e\x87\x55\x48\x14\xe0\xba\xa7\x90\x23\x60\x64\xd0\x13\xc7\x11\x75\x2f\x0a\x45\xc2\x32\xe9\xda\x4c\xa4\x64\xa9\xec\x87\xfa\x4e\x83\xb2\x05\x89\xc9\x31\x2c\x62\x89\xa4\x05\xdf\x42\x14\xff\x17\x35\x9c\x9c\xc5\x38\x4d\x33\x3f\x3b\x44\x56\x2a\x44\xaf\x40\xb0\xa3\xb4\x7c\xc4\x27\x95\x43\x93\x99\x78\xf5\x10\x83\xb2\x11\x06\xc2\x94\x65\x8c\x87\x87\x75\x7b\xa7\xae\xfe\x31\xcc\xd2\x97\x6c\x87\x6d\x3f\x31\xf9\xce\xaa\xf6\x13\xc8\x19\x10\x9f\xfb\x98\x66\x03\x76\x90\x8b\xda\x01\x29\x2b\x7b\x39\x9a\x8d\xa2\x85\x41\xdf\x2a\x62\x18\x1b\xa7\xf2\xbe\xe7\x9b\x83\x6a\xe9\xa8\x90\x97\xf7\x3c\x41\x35\x2a\x05\xa2\x15\x33\x44\x09\x49\x30\xc4\x61\xc1\x5c\xaf\x69\xd0\xad\x12\x56\x50\x15\x39\x3e\x50\xae\x0e\x37\x14\x7e\xf4\xac\x82\x89\x77\xd3\x34\xcb\x49\x42\x0a\x29\xe3\x26\xc2\x8a\x21\xbc\xbd\x8e\xb9\xa5\x30\xee\x73\xa1\x39\xe3\xdd\xb8\xa6\xe1\xeb\x29\x86\x4d\x34\x98\x02\xa4\x18\xf3\xf4\x22\x85\x43\xb8\xfa\xf8\x14\x77\x61\xc6\xa7\xb8\x82\x5f\xec\x58\xa4\xc1\xe8\xd8\x31\xa3\x95\x6f\x6a\xa2\xa6\xd9\x66\x96\x96\x85\x4b\x10\x85\x08\x2b\x3d\xe0\x79\x40\x1f\x15\xce\xe3\x06\xfc\xe7\x17\x67\x9b\xf3\x0b\xf3\x4f\x56\x71\x32\x7e\xf2\x5b\x90\xce\x61\x1f\x62\x84\xae\x98\x78\x17\x94\xd3\xce\x4d\x25\x5b\xc4\x1d\x7d\x44\x5e\x0d\x52\xd1\xc1\x7f\xf8\x21\x36\x06\xcc\xab\x06\xd1\xf7\x05\x5c\x1e\xf0\x93\x17\xb1\x31\xa0\x20\x7e\x7e\xd4\x78\xf6\x59\xf1\x14\x88\xb4\xfb\x03\x5e\x04\xbe\xfc\x28\x6d\x52\xf8\xb3\xbf\x8d\x88\x05\x5b\xdc\x69\x3a\xa7\x70\xe8\x5f\xd6\x1d\xd6\x6a\x6c\x16\x66\x02\xde\x28\x48\x61\xe2\xd9\x45\xd5\x7c\x87\x52\xa7\xc8\x8b\xcc\x75\xc4\x6c\x8b\x9d\x5d\x95\x9f\xc8\x45\xe5\x97\x54\xbd\xda\xc1\xc0\x26\x5d\x03\x5d\xc1\xfd\x33\x5c\xb3\xff\xa6\x52\xcd\xf9\xe6\x84\x40\xc2\xae\xd9\x2a\xab\x2b\x17\x4d\xa7\x28\x83\xfc\x9e\x40\x30\x1a\x9e\xe7\x7d\x51\x59\x91\xc2\xe0\xdd\x76\xb7\x86\x2a\xfe\xcb\x18\x1b\x44\x8f\xaf\xe0\x07\xf1\x0d\xb2\x24\xaf\x73\xbd\x5b\x3a\x40\xe7\x23\x85\xd9\x7d\x59\x09\xab\xdb\xc4\x52\x5c\xd3\x69\x04\x6c\x18\xc3\xfb\xf8\x66\xa2\x0a\xba\x67\x8f\x30\xdc\xf3\x62\x2a\xd4\xf2\xb7\xb4\x42\x69\xe1\xae\x96\xe4\xb8\xf2\x40\x55\x8f\xb6\x4d\x1a\x8d\xdd\x73\xeb\x08\x3c\xd7\x83\x4a\x6a\x91\x26\xbd\xd2\x4e\x87\x56\xfa\x7d\x9a\xd2\x4a\x18\xed\x45\x6f\x6a\xaf\xce\xa2\xbf\x0e\x87\xe2\x3f\xfa\x24\x8d\x04\xd6\xeb\xd7\x28\x45\xc4\x81\x73\x4c\xb9\xfc\xdd\x44\xbc\xe0\x59\x3d\x5f\x7a\x8e\x43\x2b\x9e\x25\x58\x82\xff\xae\xca\x11\x11\xeb\x6f\x69\x05\xe7\xa6\xdb\x23\x85\x29\xe7\x83\x40\x88\x53\xf4\x5e\x25\xae\xaa\x86\xc8\x63\xe8\x83\x57\xee\xcb\x54\x6a\xf2\xd8\xcf\xf9\xe7\x25\x8f\x7e\x8d\xce\x11\x0f\xcd\xab\x06\x52\x94\xf6\x71\x26\x8b\xe5\xba\x2a\x7b\x1d\x45\xc2\xea\x8d\xd9\x77\x07\x19\x40\xd5\xb1\xfd\xe6\x44\x06\x44\x15\x97\x74\x98\xeb\xe3\x11\xee\xe3\x5e\xf4\x4e\x91\xde\x94\x56\x7a\x6c\x4d\x23\x08\x40\xfc\x06\x06\x92\x6f\x22\xad\xd1\x33\xb4\x55\x1c\x43\x36\xb5\x78\x19\x4c\x38\xc6\x88\x00\x40\xc8\xd7\xf4\xd8\xfc\x8f\x54\xe3\xda\xc5\x8e\x76\x50\xa4\xe6\x5c\xe3\xe7\x1b\x55\x04\x42\x61\xde\x63\x8f\xf5\xe1\x86\x86\xc0\x76\x85\xef\xbb\x36\x52\x1d\x80\x4b\xa3\x20\x86\xd1\x75\x8b\x8b\x36\xb3\x49\x21\x8a\x45\x78\xb6\xb1\x87\x9e\x6c\xe7\xcf\xcd\xed\x6d\x26\x69\x56\xf4\xa7\x42\x50\x87\x83\x19\x7c\x89\x1b\xca\x67\xf8\xba\xda\x74\xf2\xd5\x41\x3b\x8d\x5d\x3e\xc0\x19\x36\x56\x97\x93\xc6\x49\x28\x7f\x4d\xc2\x52\xc9\x49\x76\xd9\x59\xb1\x81\x62\xce\x26\x36\x52\x21\x70\xd6\x30\xff\x86\x59\x3a\x70\x0c\xe9\x98\xe5\x69\x3e\x36\xe7\xef\x4c\x34\xe3\x76\x06\x3f\xb6\x0d\x86\x2d\x17\x55\x55\xfb\xa2\x12\x97\x5a\xe9\x9b\xe2\x99\xf0\x9f\x8e\x22\x7c\x45\x93\xff\xdf\x63\xc2\xa3\xc9\x7f\x86\x56\x12\xae\xef\xe9\x1c\xf4\xd6\x48\xf9\xbe\x7d\x57\xfb\xbe\x21\x82\xe3\x0a\x21\xe5\x24\xd8\x84\x1a\x44\x8b\x15\x7d\xac\xea\x65\x48\x3b\x52\xa9\xa4\x5f\xc6\x9e\x81\x98\xfc\xc4\x48\xc9\xfc\x43\xbf\x11\xe9\xe1\xdd\x91\xf2\xf3\xba\x42\x9e\x83\x58\x5e\xa7\x70\x02\x21\x4a\xfd\x3f\xb4\x11\xce\x51\x2c\x7c\xac\x6f\x18\x55\x22\xb0\x9c\x6e\xd5\xc4\x62\x36\xee\x42\x8d\xcf\x53\x1d\x8e\x2b\x07\x76\x94\x14\xd1\x2e\xbc\x35\x7a\x34\xe0\xeb\x96\xc5\x15\xb9\x56\x52\x2d\xc4\x52\x8b\xa6\x53\xad\xbb\x00\x70\xc7\xaf\x16\xb4\x7b\x88\x1a\xdf\xc5\x8b\x11\x67\x6e\x9d\x54\x7e\xb9\x14\xb5\x06\x56\x56\x8c\x54\x1c\x7e\x5e\x75\x30\xbe\x94\x23\x18\xd1\x7d\x0e\x24\x15\xf7\xf1\x7c\x08\x79\xae\x46\x41\xc0\xa4\x57\xba\xb8\x58\x9d\x56\xa8\xb5\xb7\xe9\x45\xe2\xe7\xaf\x8f\x4d\xaa\xc0\x58\xba\xa9\xbe\xb4\x30\xf1\x93\x34\x0f\x54\xf4\x2b\xec\xf1\x29\x62\xb5\x78\xde\x4d\x30\xbd\xf9\x09\x15\x15\x3d\x00\xbc\x7a\x93\xf8\x04\xb3\x32\x71\x02\xdf\xe4\x0d\x9d\xbd\x48\x95\x0e\x00\xfc\x3e\xd1\x24\xdf\xd2\x0a\x0d\x6f\x16\x9d\x04\x46\xfa\x32\xfd\x12\xfc\x29\x28\x42\xa1\xef\xfc\x2c\x7a\xcb\x98\xc4\x9c\xad\x62\xc3\xdb\xb1\x16\x44\x19\xef\xeb\xc4\x3a\x2d\x3d\x57\x84\xdb\x75\x8a\xfd\xf8\xd6\xe8\x69\x85\xbd\x8f\x6d\x5e\xb8\xc4\x03\x91\xd0\x13\x3d\x8b\xb7\xcb\x37\xca\xd5\xe4\xa0\x1b\xb8\x43\x78\x6b\x58\x16\x77\x91\x23\x7a\x6d\xc7\xb9\x60\xec\xb9\xb1\xb2\x71\xe0\x40\xb3\x6b\x97\x6d\x9c\x0e\xad\x50\x94\x10\x4c\x4e\xad\x29\x1d\x3d\xed\x40\xd8\x2e\xe3\xa5\x46\x28\xd2\xbd\x39\x0a\x01\xe1\x9b\x35\x9e\x3a\x2f\x36\x3b\x59\xd9\x91\x4a\x10\xe2\x79\x98\x99\xf1\xb5\x1a\xa2\x22\x4d\x5c\xaf\x5f\x34\x74\xfc\x44\x4f\x21\x81\x95\xb4\xc1\x13\x8a\xd6\x56\x5c\x17\x91\x05\x76\xba\xe9\xb5\x60\x74\xda\x20\x48\x2c\x3d\xfc\x2b\x7f\x0f\x98\x66\x24\xb6\x1f\x8d\x34\x14\xc4\x24\x9d\x3e\x5a\xe9\x92\xba\x9d\x56\xef\xe4\xf4\x48\x8b\x76\x2f\x9b\x98\x16\xb8\xd4\x52\xaa\x2f\xc0\x69\xfe\x9d\x91\xea\x9d\x5c\x50\xca\xeb\x49\xda\x4e\xbb\xab\xd3\x55\x34\xe2\x29\xc2\x73\x73\x1e\x7d\xaf\x65\x58\x79\xa7\x97\x26\x93\x42\x12\x97\x59\x5e\x7a\xa5\x35\xc1\x16\x2a\x9c\xa1\x4a\xe8\x56\x4c\x1c\x93\x24\xf5\x6c\x90\x5f\xdc\x3f\xc3\xf9\xf5\x6b\x58\x54\x2c\x2d\x15\x85\x20\xf4\x34\x6d\x95\x02\x6e\xac\xe3\x1c\xbc\x64\x06\x5e\x48\xcd\x3b\x90\x05\x69\xf2\xb7\x27\x66\x15\x91\x2c\xca\xbc\xdf\x36\xa4\xa7\xad\xa0\xa9\x63\x1a\x28\x75\x36\x62\xb9\xed\x9a\x44\x48\x2a\x2a\xc9\xdc\xab\x92\xcc\x20\x9b\x9c\x56\x19\xbd\x17\xe9\x84\x1c\x98\xe4\x89\x0d\xef\x36\xf8\x37\x1a\x4d\x70\x99\x32\x01\xfe\x40\x1d\xa9\x96\x78\xe2\x3e\xa3\xc7\x4f\x04\x88\x86\xc1\x55\xca\x31\xfa\x9a\x52\x31\xb4\x49\x41\x4a\x51\x5b\xf4\x38\x8d\xf9\x01\xeb\x31\x43\x00\x89\x6d\xf1\xdb\x9a\xb1\x74\x45\xfb\x0a\x5a\x62\x61\x2d\x8f\x71\x94\x4f\x29\x72\xf1\xa9\x3a\x31\x5e\x97\xb8\xc2\x91\x0a\xd8\x18\xd9\x83\xbe\x43\xfc\x1a\x1b\x9e\x1d\xbd\x4e\x3f\x47\xe2\xcd\x8d\xf1\xd0\x81\x03\x4d\x88\xcd\x2a\x83\x7b\xe6\x5d\xf2\x8d\x5f\x24\x69\x46\xa7\x20\xfd\x43\x1c\x96\xdb\xe8\xe4\xe3\xeb\x35\xef\x1c\x1c\x97\x49\x81\x22\xaa\x84\x49\x0d\x6f\x96\xbb\xb9\x15\x6a\x7d\xb7\xd4\x09\x91\x77\xcc\x7f\x04\x18\xbb\x91\x2b\x52\x4d\x5a\x9b\x20\x14\x46\xbb\x14\x93\x1c\xc9\x22\xf3\x99\x31\x82\x1f\xaa\x37\xb8\xec\x72\x57\xa4\x59\x4e\x24\x3d\x88\x50\x30\x3f\x1f\x41\xc5\x31\x8c\xa1\x88\x0e\x2b\x97\x90\xd3\x0a\x75\x33\x74\x43\xf1\x26\x10\x4f\x7a\x15\xfa\x9f\xae\xeb\x5d\xc4\xa6\x70\xc9\x94\x9a\x04\x08\x16\xc1\x47\xba\xcc\x1b\x05\x1a\x24\xeb\x63\x66\x98\xcb\x88\xfd\x82\x72\xde\x54\x4b\xa1\x6c\xa7\xd6\x74\x08\x90\x99\x95\x2d\x55\x20\x83\x58\xeb\x87\xd8\x70\xbc\x73\xac\xaf\x7e\xc3\xf3\xd8\x07\xdd\xbb\x85\xad\xfe\xc3\xd1\x33\x21\x74\x49\x0a\x1b\xc7\xae\x67\x93\x8e\x9d\x0e\xb2\x7b\x27\x74\x35\xe8\x54\xa4\x60\xdd\x27\x14\xe1\xf5\xd4\xb8\x45\xbf\xc1\x70\x6b\x85\x50\x14\x34\x3f\x8a\x94\x9c\xdb\x34\x35\x02\xf0\x8f\x3e\xa8\x95\x27\x1d\xba\xd8\x2e\xe7\x4b\xab\xca\x16\x70\x83\xa5\x72\x0d\xa3\x28\xb7\x90\x98\xc2\x52\x00\x1f\x11\xeb\xe5\xb0\x8e\x58\x2f\xab\x99\xf8\xdc\x73\x7b\x1b\x13\x20\x5d\x41\xef\x3e\xe6\xd7\xc2\xb0\xcf\x45\x74\x96\x27\xa3\x1f\x26\x52\x65\x35\xaa\xb4\xab\x36\xd9\x56\xad\x16\x4c\x69\x08\x08\x78\xb1\xb6\xcf\xbf\x10\x0a\x59\xd5\xd2\x43\x8c\x08\x47\x67\x94\xda\xd1\x19\xf0\x6a\x1d\x41\xa4\xe0\x93\x4a\xc2\xa7\x6f\xda\x04\xb7\xaf\xe6\x19\x7a\x8e\x70\x5c\xe0\xeb\xd1\x53\x8a\xad\xba\x98\x99\xb2\x2b\x20\x06\x2f\x66\xe6\xc9\xf4\x37\x75\x20\xdb\x1e\x3c\x14\x92\x33\xe6\x82\x72\x9e\x8a\xec\xc0\x37\x28\xab\x21\x15\xdb\x13\x5a\xce\xa2\x14\xae\xca\x4d\x67\x15\x98\xf7\xa2\xc6\xa2\x7e\x55\xcb\x66\xbe\xa7\x60\x0e\x45\x3f\x1d\x98\x1c\xbd\x36\x80\x20\xde\x89\xc6\xba\x09\x2a\x37\xfd\xd6\x48\x19\xae\x5e\xf2\x85\xbb\xb8\x3c\xd8\x50\x13\x19\xdf\x24\xb3\x3a\x14\x59\x16\xd3\x32\x29\x8c\x4b\x18\x34\x86\x23\x18\x02\xfd\xe8\x32\xbc\xa9\xca\xc5\xd7\x6a\x44\xd0\x16\x9a\x2e\xf9\x72\xe9\xb2\xb1\x56\x50\x14\xc0\x5f\x97\x46\x8f\xf8\x18\xa7\xc7\x47\x27\x4f\x83\x48\xeb\xf7\x85\x33\xc2\xc4\x71\xba\x62\xda\xb1\x9d\xf2\x21\xcf\x7f\x89\x98\x9b\x19\x87\xa8\x0a\xe2\xd7\xbf\xed\x5b\x99\xf4\xb1\x7c\x5a\xb9\x67\x4d\x51\x97\xc1\x8f\xfb\xbc\xd7\xdb\x42\xe9\x40\x2a\x17\x4f\x29\xe1\x42\x1a\x0b\x3a\x2a\xc3\x0e\xf4\xa6\x0a\xee\xc0\x9b\xc0\xdb\xbb\x52\xe7\x4a\x82\xca\xea\x16\x25\x3a\xc8\xe2\x8a\x1e\x47\x28\xfc\x81\x7f\xf2\x04\x25\xfd\x88\x65\x38\xe9\x17\x5b\x32\xe5\x7e\x68\x1c\xde\x0f\x6a\x7f\x62\x1e\x5e\xad\x0d\xf1\x0e\x0f\xd6\xe5\xd9\x4b\xd9\xf6\xc6\x9e\x3d\xec\x35\x8c\x0c\xe3\xf2\x48\xd9\x36\xfe\x40\xbb\x12\x5e\x8d\xb4\x28\x37\xe0\x45\x2c\xeb\x3b\x0a\x10\x3c\x78\x4f\xae\x1f\xaf\x13\x75\xed\xc4\x69\x59\x8c\xa9\x8d\xa8\x93\x7c\xf2\x10\xdb\x3d\xd7\x8c\xbb\x1d\x65\xbe\xf2\xa1\x36\x5f\xf9\x50\x79\x1f\x99\x67\xf3\xa9\xd0\xff\xbb\xa7\xb8\x65\x37\x30\x9a\x62\xba\x59\xe3\xf2\xc2\xb5\x80\x62\x55\xe1\x3d\x7f\x27\x0a\xad\xdf\xdf\xd1\xb6\x3b\x69\xdc\xe5\x65\x86\xd9\x7e\x19\x7f\x1e\xef\x01\xf2\x11\x38\xed\x3f\x56\xba\x79\xc7\x54\xc4\x96\x77\x48\xb2\x72\xb7\xcf\x69\x68\x18\x25\xbf\xa9\x19\xb3\x5e\x66\xd8\x2f\x5c\x14\x6e\x94\x40\xcb\xa4\xdf\xf1\xfe\x99\x2f\x10\x56\xbf\x2f\x1a\x23\xe2\x8d\x10\x76\xdf\xab\x7e\x09\x2c\x9b\x4e\x59\x0e\x28\x46\x12\xb7\x15\xd5\x0c\xbc\xa8\xb4\x81\xee\x28\x59\xe9\xdb\x0f\xec\x0e\xb7\x63\xc2\x03\x79\x6b\xb4\xf7\xb5\x35\xda\xfb\x1e\x6d\xb5\x64\x87\xec\x7e\x00\xac\xc7\x3a\x4d\x1f\x56\x31\xa2\xa9\x8a\x45\xce\x90\x07\x8f\x66\xf0\x91\x3c\xa6\x8d\xff\x8e\x6a\x3b\xa3\x47\xfb\xef\x9f\x01\x8f\x03\xcf\x7c\xdf\x1f\x46\x8b\xa6\x53\xa4\x8c\xc7\xf7\x5c\x21\x8f\x38\x00\x50\x1d\x1b\xe5\xba\xda\xea\xf2\xbe\x23\xb6\x0d\x6f\x42\x02\x5c\x54\x20\xc6\xb5\x3a\x6a\x59\x66\x5f\x4a\x69\xfd\x05\xf9\x90\xeb\x91\xd2\x94\x9e\x6c\xfe\x54\xc7\x70\xda\x35\x53\x4a\x77\xee\xa4\x52\x25\x81\x44\xa4\x48\x79\xd4\xec\x21\x2b\x69\x2a\x82\x14\x1a\x0e\xc0\xd7\x51\x10\x34\x7a\xa9\x4c\x96\x1e\xa1\xe7\x62\x21\x39\xe5\x3d\x7f\x53\x79\xef\x5f\x55\x38\xd0\xed\x6b\x0a\x5a\xf7\x03\x9c\xbe\x88\x48\x1a\x2d\x45\x59\xbf\x4f\x0f\x89\xa4\x0b\x52\x22\x5c\xa3\xa0\x04\x8c\x55\xa9\xb0\xb5\x88\x88\x5d\x0d\xe6\x6b\xc5\x25\xdd\x74\xa5\xa1\xb8\xec\xa7\x15\xf7\xe3\xb4\xaa\xa4\xae\xd8\xec\x13\xd5\x5f\xc6\x24\x98\x02\x01\x16\x11\xf4\x3f\x6e\x29\x60\xf2\x0e\xcc\x08\x9c\xb2\xeb\x1c\x48\x62\x9f\x5e\x1f\x29\xf3\x91\x73\xa3\x00\xdf\xdf\xb6\x56\x1d\x84\xa2\xcc\xa1\x84\x54\x2e\x84\x1e\xde\x7f\xfe\xff\x83\xb8\x23\xd0\x99\x3b\xd6\x14\x64\xe3\x55\x85\x96\x7c\x07\x4d\x28\x81\x0d\xd1\xd8\xe3\x90\x3f\x3a\x16\x04\x12\x65\xc6\x83\xbf\x01\x7d\xe7\x6b\x1d\x9e\x9b\xf2\x60\xdf\xc4\x31\x07\xd7\x18\xd5\x6b\xda\x53\xe7\x5a\x1d\x7b\xd6\x74\x49\xd2\x99\x76\x48\xa0\x6f\xce\xeb\xd0\x1d\xb3\x05\xc1\xf5\x47\x13\x8a\xa7\xb2\xb6\x09\xf9\x13\xaf\x02\x6e\xce\x50\xb4\x51\xd0\xd9\x3e\xa7\x26\xe9\x99\x89\xf0\xae\xca\x6b\x8b\x36\x95\x2a\xb0\x55\x6e\xc2\x6b\x09\x56\xe5\x62\xb0\xf3\x0e\x7e\x8d\x68\xbe\x86\xd2\x48\xec\xda\x36\x2b\x90\x5c\x49\xfa\xac\xc4\x23\x2e\x29\x5b\xba\x34\xb6\x09\xd1\x53\x91\xae\x5e\x53\xe6\x28\xe4\xc7\x31\x1b\x44\xb2\xab\x87\xa0\xa8\xed\x9b\xcf\x60\x36\x6b\x55\x7f\xe9\xfe\x6f\x5c\xaf\xbb\x76\x11\x65\x88\x36\x3a\x04\x9c\x20\xa9\xf2\x75\xa0\x8e\xae\xa4\x59\x32\x1d\x30\x8b\xf7\x30\xff\xa5\x0f\xad\x8c\xb9\x76\xb4\xc2\x2c\x9f\xa4\x28\xed\xda\xd5\xec\x97\x55\x60\x4f\xf5\xd9\x5a\xb1\xd9\x49\x59\x89\x66\xcf\x1d\x1a\xa4\xbc\x77\x89\x3b\x68\xf5\x2d\xa2\x42\x3e\x59\xb2\x78\xb1\x39\xb4\xd9\xb2\xc9\xdd\x32\x5a\x8e\x38\xd0\x7f\x4b\x39\x55\x5c\x46\xe2\x2b\x8f\xb0\x41\xfd\x77\xff\xcc\x7c\xb5\x03\x3e\xad\xe4\xfa\x39\x85\xc1\xe9\x72\x2f\x0a\xa2\x8a\x7f\x4a\xcf\x82\x5d\x85\xcb\xe9\x38\x5d\x58\xab\x18\xc9\xe7\x1f\x8d\x42\x29\xf1\xe3\x91\xc2\x04\x5d\x22\x14\x24\xa2\x8f\xc3\xc4\x8d\x92\x0f\xd0\x7a\x43\xd5\xe3\x04\x76\x2b\x4c\xac\xab\xda\x20\xfb\x3b\x14\xf0\x78\xca\x8a\x0f\x94\x58\xf8\x88\xeb\x42\xa8\x61\x4b\xf2\x44\x41\x24\xd3\x54\x22\xea\xfb\x0a\x67\x45\x0b\x84\x8c\x74\x50\x9e\x99\xbc\x4f\xa4\x22\x44\x2c\xf7\xe8\xd7\xf0\xf5\x44\xdd\x62\xdf\xf3\x4d\x97\xbc\x54\xe6\x85\xeb\x88\x05\x9a\x30\xa2\x82\xbc\xd2\x99\xba\x16\x48\x27\x4d\x16\x5d\x36\xe0\x23\x47\x34\xf0\xd5\x5c\x3b\xea\x4f\xfc\x2a\x34\xe0\xa3\x02\x45\xff\x8f\x95\x19\xe5\xc7\x35\xd1\xc4\x8b\xa8\xea\xc4\x82\xfa\x02\xc6\xec\x96\x52\x3e\xfd\x70\xa4\xaa\xb2\x5a\x3a\xe4\x25\xbb\x62\xe3\x6c\x75\x4a\x95\x0c\xd0\xbe\xc6\xf5\x7d\x55\xab\x9a\x3c\x13\x77\xcf\x35\xfb\xab\x43\xab\x0c\x57\x7e\x4c\xdf\xc9\xd7\x0a\x03\x51\x58\x33\x60\x77\x6a\x5e\xd6\xca\xe8\x1f\xbe\x3e\xd2\xa5\x0c\x15\xfb\xc5\xcc\x24\x55\x58\xf5\xf9\x17\x82\x87\x41\xe8\x3d\x9c\xf1\x30\x15\x3b\x48\xe1\x0c\x4b\x9b\x27\x96\xf1\x0d\x85\x4f\x68\xb4\xc6\xaa\xf6\x4a\xa8\x7f\x58\x26\xc4\x3c\xc2\x01\x85\xa6\x2f\xa2\x97\x1f\xaa\x0e\xda\x47\x23\xed\xec\xde\x49\x07\xc3\xd8\xe5\x54\x24\xd7\xb4\x87\xb9\x60\x05\xac\x8a\x9d\xe4\xc5\xfa\x09\x4c\x58\xfc\xda\x57\x54\x29\x7a\x5b\x4b\x25\x30\xc7\x48\xc0\x5b\xb2\x85\x46\xf8\xff\xe9\xd0\xc7\x9e\x77\x7d\xa4\x22\x96\xdf\x88\x54\xcc\x73\x91\x06\x51\xef\xd5\x5e\x5b\xee\xf3\x2f\xf0\xf5\x87\x58\xb6\x42\x22\x0a\x8d\x62\xe4\x1e\x82\x2c\x56\x84\xde\x6b\x1e\x2d\x59\xa5\x51\x99\x59\xb6\x09\x26\xd9\xac\x6c\x0b\x58\x58\x2c\xcd\x46\x7f\x52\x80\x20\x35\xbd\xdf\x95\x74\x60\x13\x25\x3a\xc7\x4d\x0c\xbe\xa9\xa1\x75\xef\x6d\x52\xb4\x4a\x13\x87\x1d\x06\x80\x4c\x16\xbb\x81\x8d\x53\x72\x61\xa6\x99\x9b\x64\x89\x16\x8f\x94\x9e\xe9\x71\xa5\x26\x5d\x53\x4a\xcd\x4d\x5c\x06\xa4\xa5\x17\xea\x0c\xa2\x9d\xa3\x90\x8d\x0d\xcd\xea\x27\x54\xf8\x7a\x4f\xeb\x29\x7e\x6f\xa4\xa8\xfb\xe7\x23\x05\xfa\x42\xa6\x2b\x86\x80\x8d\x5d\xbb\x3c\xa6\x3e\xf0\xdb\x8e\xe2\x87\x79\x61\xb4\x85\xf9\xa0\x43\xed\x45\x80\xbf\xa5\x9d\x1e\xdf\xc7\x51\xa5\xbc\xf2\xa4\xe9\xb4\x75\x2d\xc4\x96\xef\xd1\x54\x92\xd2\x4f\xe0\xd0\x75\x62\x93\xe7\x6e\xd1\xb1\x88\xab\x38\xcb\x84\x32\xeb\xb1\x40\x1e\xed\x9b\xc1\xd0\xa5\x49\xde\x77\x43\xfa\xc7\xe2\xff\x16\xc2\xc9\x49\xb4\xf5\xfc\x42\x15\x66\x0f\x85\xa3\x33\x17\xb0\xf8\x81\xc9\x38\x99\x4c\x11\xdd\x3a\x5d\x49\xb6\x87\xb3\x1a\x63\x81\x4c\xf1\x61\xc5\x57\xbd\xa7\x88\x0f\xd0\xdb\xf7\xd9\x89\x97\x3b\xfa\x3e\x4d\x6c\x1c\x41\xec\x5c\x2d\x6f\x61\xe3\xf3\xee\x6c\x56\xe3\x91\x17\x26\x29\xa6\x15\x62\xff\xa2\x52\x55\xb9\xad\x74\xe0\xdf\xc1\xef\x10\x3c\xb8\x07\x2c\x67\x4e\x9c\x71\x45\xb5\xe9\x55\xfc\x4b\xbe\x19\x03\xd1\x66\x83\xfc\xf1\x86\x37\x87\xff\x3e\x0e\x4f\x11\x93\x0e\x70\xb8\x93\x74\xb8\x88\x77\x10\xcd\x38\x44\xb1\x17\x51\xab\x42\x42\x70\x78\xa4\x3a\x48\x8c\x4f\x16\xde\x04\x3d\x01\x16\xe6\xff\x1a\xa9\xd3\xf7\x82\xb2\x8c\x3f\x46\x0d\x64\x61\x36\x06\x59\xeb\x47\xe1\x11\x8e\xaf\xdf\x3c\x61\xb9\xbf\x7b\xae\xd9\x4b\xd3\xee\x8a\x8b\x63\xad\x64\x72\x49\x29\x99\x4c\xae\x3a\x2a\xaa\xe4\xd6\x64\x1d\x16\xb8\xc2\x53\xbf\xae\xc0\x9d\xaf\x6b\x91\x57\x97\xc5\x7a\xe2\x69\x75\xcb\x0b\x63\x23\xba\xec\xec\x36\xfa\xb1\xd8\x15\x59\x21\x94\x6f\xa0\xc8\x8c\xb0\xf5\x5d\xa5\x27\xc3\xfc\x0e\x89\x54\x68\x80\x7d\x85\xdb\x9f\x6d\x6f\x8c\x7d\xd1\x62\xd7\x4c\x6b\x76\x0c\xd6\xa2\x5f\xd6\x1e\xa6\x04\x11\x5b\x51\x67\xd4\x68\x3d\x9e\x6c\x53\x63\x6e\x5b\x1b\xe4\x9f\x1f\x04\x72\x24\x7b\xd4\x7e\xba\x32\x1d\xc4\xa7\x99\x96\xa6\x93\x13\x16\xcd\xc2\x68\x89\x82\xd6\x53\x1b\xfe\xd4\x67\x9b\x06\x9e\x5c\x22\x65\x56\x8d\x8b\x48\x9c\x85\x40\xa1\x63\xb2\xcc\x59\x50\xfd\x70\x36\x00\xc7\xc8\xd7\xca\x06\x29\x39\x84\x2a\x0d\x4e\xb2\xb3\x74\xa8\xf2\x75\xdd\x76\x9d\x0e\x6d\x82\x66\x14\x42\xc8\x0b\xca\x99\x1f\xfc\x71\xc1\x0d\x06\xd8\x05\xf7\x46\x24\x91\x0e\x7d\xc8\xae\xcb\x87\xb1\x59\x65\x7c\x11\xe0\xff\x27\x54\x3b\xff\xac\xa2\xd0\x7c\x27\x28\x8a\xbb\xac\x53\x2a\xeb\x58\x4c\xc0\xff\x0b\x11\x2f\xdf\x8c\xe1\x14\x0e\xc5\xec\x02\x26\x6e\x07\xd5\x98\x09\xa8\x39\x6c\xb1\x79\x91\xd9\xa4\x57\xf4\x2d\x20\x7b\x58\xe5\xdc\x67\xe1\x1b\x05\xa0\x68\x5b\xd3\x01\x79\x1e\x65\xc9\x73\x9a\xf0\x7f\x6e\x42\xaa\xd6\xe7\x7c\x99\xed\xba\x62\x9a\x22\x5f\x34\x05\x4e\xab\xa5\xb7\xa5\xa5\xb4\xda\x18\x8c\x2f\x84\xd0\x8d\xf9\xc8\x0b\xf3\xcd\x81\x5b\x5c\xe4\x03\x01\xa7\x12\x6f\xd7\x7c\x33\xb1\x8e\x77\x36\x0b\x9b\x65\x69\xe6\x72\xd6\xf6\x11\x26\x67\x23\x28\x93\x4d\xf4\x41\xf6\xcf\x34\x5d\x92\x17\x26\x8e\x65\xc0\x75\x4f\x87\xaf\x1f\x58\xbf\x2a\x4c\x5e\x70\x86\x2b\x72\x01\xd5\xc7\xb0\x5e\x6f\xa8\x0e\xe8\x91\xb1\x57\x56\x2e\xb7\x1b\x4a\x6f\xe0\x6d\x05\xab\x78\xbb\x46\xac\x7c\xa1\xd9\x31\x43\x57\x98\x58\x29\xe2\x9c\x56\x26\x69\xa7\xbd\x03\x6d\xc7\x26\x45\x99\x09\x11\x09\x58\x66\xb6\x3c\xe5\x9b\x2a\x86\xd2\x29\xd8\xe7\xfe\x69\x73\xe7\x74\x35\x63\x24\x2b\xa6\x7d\xc4\x8b\xd0\x2d\xcc\x87\xdc\x79\xfe\xf9\xbd\x5e\x91\xae\xa6\x22\x15\xa7\x5c\x92\x40\x91\x6c\x6d\xa4\xa8\x13\x6b\x4a\x2e\xa8\x93\x96\x59\x61\xca\xb8\x0b\xb0\xb3\x74\x7a\x55\xd7\x57\xf1\xc6\x0b\x97\xf3\x3c\x44\xcc\xf4\x53\x04\x84\x7c\x33\x31\x6b\xf6\x3d\xdf\xec\x97\x03\x93\xe4\x5a\xa6\x72\x34\xa6\x56\xfd\xa0\x72\x85\x4b\x72\xd7\xb5\xd9\x54\x75\x76\xa3\x70\xff\x9e\x2a\x03\x70\xb4\x8f\x20\xe0\x67\x41\xcd\xd4\xa4\x85\x33\xc9\x54\x50\xc6\xb8\xae\xa2\xab\xb3\x5a\xf5\xed\x43\xad\x6f\x9e\x59\x53\xd0\x76\x29\x12\xe0\xb4\x85\x00\x27\xf4\x15\x25\xba\x8c\x58\x98\x7b\x57\x4a\x1a\xd5\xc4\x9d\xb4\x9f\xc6\x53\x8a\x3d\x78\x66\xa4\x1c\x6e\xc0\xff\xc0\x99\x74\x4d\x7d\x2e\x5f\xb1\x5d\xd2\x71\xac\x26\x3a\xca\xf7\x27\xb1\xa8\xf8\xc6\x0b\x26\xf5\xad\x89\x8b\xfe\xb2\xcd\xf1\x9c\x63\x4e\xa1\x38\xa2\x6f\x8d\x42\xc5\x04\x6d\xcc\xf5\x6d\x13\x07\xf2\xfc\xf3\x7b\x89\x1f\x53\xb0\xce\x15\xce\x16\x6e\xb9\xf2\xcd\x5a\xd8\xd8\x57\x6c\x3b\x2f\xd8\x00\x1b\x3d\x54\x90\x95\x05\xb2\x4c\x1f\xc3\x96\x71\x7d\xcc\xdd\x9d\xd8\x49\xf9\x76\x65\xc5\x03\x12\x90\x47\xe9\x57\x53\x40\xac\x6c\xe8\xaf\xa0\x5a\x77\x59\x65\x2a\xef\x2b\x25\xa1\x4d\xad\xc6\xe7\x5f\x58\x67\x1b\x01\xfe\x83\x63\xfc\xc0\x7e\xc9\xcd\x72\xf6\xfe\x55\x46\x21\x8c\xd2\x14\x2d\xd1\x3a\xbc\x64\xec\x96\x65\xbb\xf1\xc2\x3f\x01\x20\xf8\xa3\x50\x10\xea\xbb\xc5\x62\x6b\x68\x2d\x70\x41\xc8\x77\xfd\x3c\x23\x17\x80\x4b\x2c\xd5\x6b\x38\x2b\x30\x71\x5f\x19\xe9\x44\xb7\x46\x66\xe4\x0b\x3a\xf8\x56\xe3\x07\x05\x28\xbe\x56\xe7\x48\x48\x3a\xa7\x83\x7d\xc0\x39\xa5\xba\x0c\x04\xae\xb7\x4a\x9e\xdd\x27\xd7\xaa\x18\x5b\xf6\xfa\x3b\x1a\xde\xa7\xe8\x24\xf6\x16\x4c\x5d\x5e\xae\x48\x12\x39\xdc\x1b\x63\x78\x20\x41\xfb\x88\xfe\xb2\xdf\xe1\xf7\x4b\xf1\xe9\xe9\xb5\x86\x28\x54\xff\x9b\x27\x50\xd7\xf5\x32\xc3\x73\xde\xf9\xf9\x32\x86\x08\x91\xf4\xf4\x1a\xa0\xc5\x88\x56\x7e\x40\x80\x4c\xd4\x70\x60\xf9\x42\x51\xd4\x47\xff\xa8\xa5\x4c\xbb\x90\xd3\xe0\x75\x73\x55\x1b\x73\x08\x88\x2a\xfc\xdd\xc7\x5a\x1b\x77\xc9\x67\x9f\x6d\x2e\xa6\xf1\xd2\x54\xf5\x0d\xc2\x41\x0c\x11\x19\x5b\x8c\x08\x2e\x77\x63\x98\xb5\xb3\x69\xb2\xb4\x4c\xba\x8d\x80\x8d\xbc\x42\xcf\x27\xd2\xcd\x35\x2d\xfe\xbd\xcd\xbc\x28\x07\xd4\xe9\xdc\x2f\xa4\xbb\x53\x88\x57\x58\xd7\x65\x14\xf8\x19\x0f\x12\xa1\xe9\x94\x83\x36\x59\xec\xd2\x00\xa8\x78\x60\xaf\x8f\x07\x36\x6e\xaa\xfb\x9e\x6f\x9a\x5e\xe6\x3a\x65\x5c\x94\xa4\x5f\xa8\x68\x43\x8a\xd6\x3f\xce\xb8\xcd\x4b\x3a\x88\x30\xaa\x9b\x5a\xf4\xe6\xb1\x4a\x11\x44\xa0\x57\xc7\x00\x7d\x99\x5f\x35\x06\xff\x69\x3b\xb7\x99\x5f\x5f\x38\xf7\xbe\x15\x05\x72\xcf\xb7\x26\x3e\x54\x1d\x1b\x2e\x1f\x9a\x84\xc5\x31\x50\x41\x38\x8b\xf7\xc1\x37\x0a\x00\xde\x36\xc9\xd2\x63\x34\x81\x78\x36\x61\x62\x8a\xff\x95\x52\x35\x3b\x37\x52\x62\x90\xc7\xe8\x38\x45\x8e\x78\x57\x9d\x77\xdb\xd6\x42\x11\x66\xf3\x5a\x00\x3b\x4e\x13\xc2\x12\xb3\xf7\xb0\x06\x9f\xde\xa6\x14\x4c\x22\x51\x2d\x6f\x7d\x9e\x26\x2f\x7a\x17\x3f\xaa\x41\x6a\xcf\x93\x19\x19\x42\x62\x09\xfa\xe8\x45\x4a\x38\xb8\xf1\x23\xbb\x66\x9b\xed\xcc\x75\x7b\x0c\xa7\x42\x1f\x15\x34\x02\xbe\x9e\x28\x4b\xee\x6c\x2e\xa6\x99\xed\x98\x3c\x94\x31\x58\x63\x59\xf9\xa9\x9e\x9a\x98\x6b\xde\x84\xa7\x6f\xa5\x37\x85\xd1\xbd\xab\x17\xee\x5d\x1f\xea\xe4\x85\x29\xca\x22\x65\x15\x3c\x6c\xed\x8f\xb7\x02\xa8\xe2\xf1\xb5\xc7\x3c\xdc\x33\x76\x1d\x14\xa8\xb1\x77\x1c\xd0\x5d\xc6\x23\x8a\xb5\x72\x44\xb9\x11\x52\xb7\xdf\x76\xb7\xaa\x72\xf4\x26\x98\x6d\xa1\xea\x8e\xac\x86\x09\x42\x48\x7d\x45\x85\xa3\xfa\x26\x16\xd9\xa6\x05\x2a\x82\xdb\x3a\x04\xfc\xcc\xe0\x33\xdb\x1a\x5e\x1b\xeb\x75\x6c\xff\x38\xf4\xdf\xd7\x89\xf4\xcb\xf4\xd7\x58\x2e\x35\x52\xd1\xfa\x75\x6d\xb1\x73\x4b\xa5\xce\x7f\x34\xf1\x12\x77\x36\xf3\xb2\xd7\xb3\x22\x19\xcd\x3e\xe9\x91\x72\xfd\x3e\x35\xf9\xe2\x77\x35\x3b\x76\xd1\x65\x69\x43\x81\x5a\xbf\xa1\x52\xa0\x6f\xd4\x99\xf7\x74\xed\xa2\x29\x63\x9f\xbb\x88\xe8\x65\xa0\xe3\x9e\x7d\x60\xfc\x95\xa7\x45\xdf\xb6\x57\x15\x78\xe6\x1d\xad\x4b\xfb\x4e\xf4\xe9\xc9\xb4\xbd\xb0\xb1\x65\x3a\x4e\x07\xaa\x38\x14\x39\xa0\xe4\x7c\x6d\x14\x82\xd1\xaf\xe8\x64\xe3\xfa\x84\x18\xcb\xc2\x4c\xb3\x9b\x36\x02\x31\x74\x7d\xa4\xec\x3b\xd6\x27\x66\xf8\x81\x03\xcd\x61\x9a\x2d\x99\x61\x1a\x3b\x1d\x69\xb2\x39\x80\xe0\x0c\x6b\xf4\x3b\xc5\x13\xa5\x11\x8e\xcb\x4b\x78\x8f\x02\x56\x7a\x4a\x69\x60\x74\xfa\x2e\x71\x79\x01\xb4\xd7\x98\xf6\x16\xa6\xeb\xbf\xc2\xaf\x12\xbd\x50\x1a\x72\xc4\x54\x0d\x85\x3e\xee\x96\x9d\x25\x28\x2f\x09\xf6\xb6\xe1\xad\x79\xbe\x13\x7d\x52\x61\x53\x06\x43\x53\xb8\xb6\x8b\x5d\xc1\xfc\x0f\x96\xa2\xc0\x16\x21\xba\x14\x12\x9b\x64\x50\xe2\xde\xb3\x87\x63\x47\x56\xa6\xe5\x9b\xb5\xb0\x92\xf2\xb2\x9d\xa5\x45\xaa\xd3\x24\x04\x17\xf8\xa7\x58\x23\x8c\x6a\x1a\x4b\x93\x96\x9c\xc1\x3c\xc2\x79\x7a\x73\xa4\x0e\xed\x9b\xd1\x33\xfe\x0b\x5c\x52\xc5\xa9\xae\x67\x0a\x56\xe5\x13\x2a\x48\xc3\x4b\x90\x9e\x1b\x57\xd8\x4f\x0c\x96\x02\x8e\xf9\x77\x34\xe8\xed\x9d\x28\x74\x0a\x72\x13\xdb\xfc\x29\x55\x31\x1b\x3b\xeb\xcf\x44\xba\x01\x4e\x03\xa6\xd0\x64\x02\x1c\xbd\xa3\x5c\x68\x41\x0b\xf4\x41\xcb\xae\x59\x4f\x57\xa5\xfa\x2c\xaa\x22\x6f\xa0\xf6\xca\x37\x80\x8b\xe0\x86\x95\x72\xd9\x6e\x04\x41\x13\x58\x7e\x77\x94\xf5\xf7\x19\x6e\x49\x49\x3e\xd9\xf0\x8a\x10\x87\x23\xa5\x97\xff\xf0\x5a\xa0\x25\xbd\x3f\x0a\xa7\xe3\xf6\x96\x96\xb4\x77\x09\x05\xd6\xca\x27\xfd\x3e\xbd\x2e\xbe\x56\x35\x99\x76\xd9\xed\xd9\x22\xdf\x12\x2a\x48\xc7\x46\xba\x78\xa5\x2a\xfc\x47\x14\x76\xf2\x26\x7e\x3a\x7f\xa2\x4e\xae\xb7\x3a\x4d\x44\x26\xd7\xcb\x80\xf9\xc8\xf3\x92\xce\x6e\x78\x0b\xc1\xef\xc7\x1b\xe3\x43\x9c\x6f\x46\x8f\x8f\xb1\xb8\xba\x64\x04\xe5\x89\x63\xbe\xf2\x7c\x2e\x92\x6a\xf3\xc0\x25\xce\x54\x29\xf5\x21\xd9\xd3\x10\x78\xdc\xd1\x72\xc7\x77\x82\x5f\x80\x89\x63\x81\xd5\xe1\x78\x61\xeb\x18\x9c\x5e\xf0\x30\xf5\x10\xde\xcf\xbf\xe0\xe5\x9a\x7d\xc0\x1f\x97\x83\xe1\x16\xa5\x54\xc3\xe2\x0c\xca\xb2\x20\x90\x13\x43\x8e\x8f\xa6\x9c\x14\x6b\xbd\x50\x84\xcb\x62\xbc\x10\x61\x4c\x28\xbe\x20\x47\x70\x58\x83\x4f\xb5\x42\xd6\xba\x6d\x2d\xe0\x96\x4f\xfb\x5f\xb6\x64\x07\x43\x48\x7c\x4b\x8b\xe4\x2e\x2a\x98\xde\x2a\xcf\x47\x68\xa8\xda\x61\xdb\xfe\x93\x89\x53\xa2\x0a\xb5\x9b\x31\xe4\xb9\x75\x69\x0e\xa9\xa5\xd4\xe9\x42\x15\x6d\x60\xbb\xce\x2e\x9b\xb8\xa1\x5c\x30\xae\x62\x27\xe0\x1b\x05\x96\x6a\x5b\x97\xf4\x1e\x0b\xb3\xfc\xf1\x9f\x0f\x4c\xa2\xff\xea\x09\x16\xeb\xf0\x0c\xd1\x05\x11\xe5\x3f\xa3\x8a\x29\xdb\x5b\x1e\x4a\xf1\xc1\x0e\x34\xff\xd1\x49\x65\x8a\x2e\xf2\xad\x1b\xaa\x4d\xb8\xb9\x55\xad\x64\xbc\xa1\xd3\x18\x62\x2f\x49\xfa\xa5\xe7\x42\x1b\x6c\xf7\x9c\xb7\xe9\x0b\x8c\x8a\xdc\x75\xed\x8a\x59\xcd\x1b\x41\xea\xe1\x2d\xac\x1b\xbe\x51\x59\x93\xc9\x57\x1f\xf2\xfd\xaa\xa3\x80\x00\x00\x9e\x71\x73\x34\x46\x1f\x6e\xec\x9f\x59\x67\x25\x09\x7c\x3b\xfc\xd3\xb0\xe2\xfe\x14\x33\x4a\x15\x47\xe6\xb9\x33\x74\x97\x14\x84\x44\x93\x6f\xac\xc0\xdc\x37\x1b\x54\xa3\xaa\x71\x11\xd5\x28\x81\x69\xad\xd8\x38\x7e\x54\xa9\x80\x31\x21\x46\x68\x24\xf4\x19\xc0\x5f\xb8\x14\x8e\x33\xed\x3e\xed\x84\x22\x4e\x59\x0d\x19\x1e\x07\x84\x7c\x19\x32\xda\x26\x84\x2c\xa9\x90\x34\x1f\xd1\x9b\xa0\xf5\x3d\xff\x24\xed\xaf\x40\x26\x7f\xa6\x15\x82\xdc\xe9\xb5\x9a\x7a\x55\xbb\xcc\x11\x3b\x32\x1f\x4a\xa9\x9c\x5d\xd4\xba\xf4\x99\x4d\x0a\xd7\x61\x91\x69\x5e\x87\xda\x66\xec\xbc\xea\x60\xdb\xa4\x67\x7a\x56\x43\x0b\x2f\x29\x3b\x2d\xf6\x8e\xc1\x73\xdf\x55\x1b\x57\x66\xdb\xa5\x83\xdf\xfd\xfa\xf1\x88\x00\x96\x4a\x1c\x36\x4e\xc9\x1d\x54\x35\x8c\xc0\xec\xe4\xeb\xf1\x26\x8e\x6b\xe3\x41\x45\x63\x96\x3e\x25\xe2\xb3\x4f\x69\x0f\xdf\x25\xd3\x4f\x63\xd7\x41\x84\x2e\x92\xc9\x0d\xaf\x0f\x7e\x4e\x01\x13\xcc\x62\x66\x1c\x36\x4b\xb1\xb5\x09\x1d\xe9\xc3\x51\xc8\x8c\x20\x6a\xe9\xc1\xf0\x88\x91\x85\x32\xac\xd4\x41\x8c\xcb\x6d\x4e\x85\x25\xc1\xc8\x2a\x2e\x0f\x4a\x68\xd8\xe4\xfe\x9a\x0e\x36\x79\x2b\x61\x29\x64\xc6\xd1\x20\x7b\x47\x5c\x6f\xd4\x77\x7b\x14\x74\x38\x6e\x2a\x36\xae\x29\x0a\x57\x94\xdd\xb1\xf7\x78\x5c\xbf\xc7\xe3\x13\x55\xde\xd9\x7d\xcd\x4e\x96\xe6\x79\x96\x1a\x71\x90\x65\x51\x19\x25\xe9\x7e\x73\xe2\x63\xd8\xe1\xca\x25\xbb\x62\xb2\x81\x32\x1c\xbb\xac\xdc\xac\x2f\xd7\xe1\x17\x16\x6d\xfb\x33\xaa\xe6\x7e\x49\xd7\xdc\x27\x2b\xd7\xc4\x7f\x85\x98\x2f\x38\x5d\xa2\xb8\x51\x7d\x23\xce\xd3\x5b\xd1\x58\xe2\xad\x14\x3a\x82\xa5\x4a\x3b\x73\x85\x71\x68\x0a\x48\x10\xd6\xf0\x9a\x79\xe7\x27\x92\xc8\x9d\xcd\x45\xa7\x40\x8e\x5c\xf6\x8e\x82\xa7\xfa\x99\x91\x36\x8e\xcf\x6c\xa7\xf0\x42\xc3\x38\x54\x6e\x6a\xa3\xe5\x9b\x13\x99\x87\x24\x04\x76\x9a\x14\xc2\xb0\x2b\xbf\xac\xba\x58\x80\x38\xa3\x6f\xf2\xfa\xa8\xf1\x5f\xec\xf5\x66\xbd\x61\x7e\x2c\x2f\xaf\x6e\x0d\xf3\x10\x2d\x6f\xb6\xd1\x42\x78\x25\x1c\x17\xa5\xe6\x00\xee\x39\x1b\x37\x68\xdd\xb7\xf3\xe3\x86\x2e\xb6\x43\x2b\x41\x8a\xd5\xd5\x04\x95\x22\xb6\xe8\xe5\x24\xd6\xf5\xfa\xed\x34\xeb\xa7\x69\x97\xfb\x3f\x0c\xdf\x18\xf3\xd4\xae\xbe\x4f\xa8\xfc\x7a\x75\x74\x5d\x8a\xbc\x42\x68\xfb\xf4\x94\x7c\xa3\x56\x71\xde\xe9\xaf\x58\x57\x1c\xb2\x59\x43\x89\x63\x9d\xd3\x34\xe2\x73\xd0\xe6\xf6\x11\x7e\x66\xfb\x36\xc9\xdd\xb2\x9d\xd6\x87\xe1\x61\x05\xd9\x82\x0c\x2c\x22\x86\x6f\xe8\x8c\xf3\xb2\xc7\x5f\x78\xf5\x4c\x13\x13\x64\x45\x7a\xf4\xd5\x1f\x41\x42\x7b\x5d\x75\x1a\x8f\x2b\xe5\x4d\x12\x8f\x68\xbb\xc4\xb0\x59\x00\x5a\xc7\x6c\x56\xc9\x37\x75\x3a\xa4\x6d\x93\x2c\x59\xef\xc4\x84\x00\x64\x73\x4b\x45\x23\x9b\xd7\xd4\x39\x59\xa2\x6b\xe4\x41\x64\x7b\xf6\xc8\xb5\xf6\x47\x88\x63\xdb\x33\x89\x84\x8b\x22\x42\xa5\x15\xa9\x6a\xec\x84\xe6\x9b\xfd\x34\xcb\x45\x4c\x18\xa7\x2f\xef\x5e\x7c\xa3\xba\x68\x4b\x49\xba\x92\x13\x76\x5b\x50\x82\x14\x32\xf1\x8d\xaf\xb5\x0f\x5d\x9a\x58\x1b\x24\x71\x70\xe4\x01\x35\x84\xad\x1b\x1c\x2f\x39\x99\x03\xcd\xbc\x9d\x26\xdd\x87\xc7\x8d\x49\xf6\xec\xf1\xae\xa7\x2a\x55\xfc\x83\x91\x52\x38\x04\x1d\x0e\xdf\x32\x02\xd7\xc1\x93\x85\xab\xb5\x81\x95\xf9\x23\x2d\x13\x00\x6e\x39\xb2\x18\xd4\xae\x70\x4a\x6c\x5e\xab\x01\x12\xe6\x43\x58\x6e\x57\x23\xc4\x00\x5f\x6c\xb4\x82\xf6\xad\xd9\x68\x87\x7d\x17\xa7\x79\x3a\xec\xa3\x02\xc0\x80\xf2\x28\x54\xe3\x2e\x8e\xab\x4b\xc5\x96\x7d\xb6\xb0\x7e\x38\x22\xe1\x1b\x0f\xed\xcc\xac\x6d\xa7\xec\xdd\x8e\xc0\x0d\xf9\x10\x5f\x6f\xc4\x23\x56\xaf\x77\xcf\x9e\x05\x5e\x1a\x82\xe0\x50\x49\xd7\x4d\x25\xa1\x76\x9d\xc2\x16\x51\x85\xd9\xb8\x9d\x7f\x71\xb6\xb9\x68\xe2\x58\xb5\xa8\x4f\x61\xe3\xe1\x1b\x45\x0d\x2b\x13\x3b\x18\xc6\xe9\xea\xc0\xb2\x50\x90\xe8\xda\x05\xc4\xf9\xf9\xb1\x43\x3e\xb1\xdd\x4f\xd1\x43\x21\x4e\xfa\x3a\xbd\x0f\x9c\x46\x6f\x46\x63\x05\xf3\x6a\x9f\xf2\x87\xc9\xfc\x82\x97\x10\x27\xd8\x0f\xca\x52\x3f\x01\x04\x43\x5c\x3b\xe8\x19\x91\x95\xde\x23\xfa\x0c\x26\xdd\x8d\x48\x89\x1e\x5c\xd7\x44\xa4\xbb\x14\x47\x73\x4e\xd9\x6a\x68\xa9\x9b\x6a\x62\x89\xea\x5d\xb5\x08\xd0\x11\xb9\x81\xc2\x93\x28\xdb\x37\xbc\xc2\xdf\x98\xf6\xd9\xe6\x35\x9a\xd6\x63\x09\x35\x56\xfa\xbf\xa4\x80\x4f\x1c\xed\xaa\x77\x00\xdc\xcb\x4d\x80\x9c\x30\xc7\x4e\xb0\x84\x17\xce\xbe\x1f\xd6\xe9\x05\x0f\x5d\x41\xec\x72\x25\x6a\x79\x1c\x4b\x46\x6c\xa6\xea\x0a\x38\x7d\x37\x0c\xfa\xce\xc0\x80\xa2\x82\xc8\xd7\x6a\x77\x66\xef\x47\x9b\xd9\x31\x25\xb3\x91\x56\x32\x9b\x38\x5e\x17\x66\x9a\xb1\x23\x8f\xdd\xc6\xc2\xcc\xc7\xbf\xf1\x44\x95\x8c\x7d\xfc\x1b\x4f\xb4\x94\xc1\x5a\x91\x0e\x7b\x66\x88\x27\x40\x31\xe4\xac\xb2\x22\x3b\xeb\xe9\x50\xcb\x36\x5b\x7d\x44\xd1\x33\xde\x19\x05\xe4\xe6\x96\x35\x55\x64\x78\x7f\xa4\x20\x0f\xf7\x03\x5e\xef\x8b\xbf\x4c\xfc\x26\xf1\x46\xf3\x71\xf6\xcb\x1f\xd1\x2f\xa6\xf4\xeb\xb9\x9f\x27\xec\x3b\x7e\x3d\xeb\x49\xa8\x28\x7d\xde\x6b\xb9\x84\x68\x77\xb1\xcc\xbc\x5a\xba\x68\xc3\xd1\x3f\x15\x89\xec\xb0\x93\xff\x62\xd9\x9f\x0a\xa1\xcd\xbb\xf8\x67\xde\x3e\xf0\x4b\xcf\xf9\x88\x31\x24\x54\xcb\x06\xa5\x40\xea\x78\x08\x58\x66\x1c\x3b\xee\xad\x9f\x3e\x50\xf5\x8b\xbc\x1c\x0c\x0c\x93\xcc\xd0\x09\xba\xac\xd4\xd5\x2f\xab\x4d\x97\x80\x42\xa1\xb4\x04\xef\x3d\x21\x83\x87\xe2\x11\x49\x93\x6c\xa3\x22\x0d\x1f\xac\x91\x12\xeb\x82\x93\x26\xab\x33\x63\x3d\xc9\xf1\xab\xca\xdd\x20\xf6\x49\x0b\x83\x7e\x05\xe2\xa1\xbb\x75\xb0\xfd\xc2\x25\x8e\xaa\xbc\xd5\xfa\xc2\x5b\xfb\x1e\x7d\x0d\x5f\x2b\xb4\xa9\x5d\x76\x8c\x90\x92\x44\x21\xf4\xba\x2f\xf8\xea\x87\xe9\xf5\x32\x9b\x57\xd1\x42\xbc\x3a\x15\x2c\x36\xcf\x2a\xfa\xcd\xa6\x56\xa8\x16\x5c\xaf\x55\x9d\x4f\xe3\x8e\x49\x52\x45\x00\x45\x1f\x40\x04\x44\x1f\xf5\x0d\xe7\xac\x38\x84\x1a\x21\xf6\xd7\xdb\x91\xd2\x59\x3b\x4f\x51\xbd\x8c\x90\x92\x88\xc8\x2c\xac\xdf\xbd\x5b\xcd\xfb\xca\xdf\x46\xdb\x21\x0d\x4d\x56\x24\x36\xa3\x1e\xb1\x80\xcd\x01\xf1\x42\x1a\xfb\xee\x48\x79\x6e\xfe\x19\x56\x04\xdf\x28\xf5\xb3\x33\x4a\x24\xe5\xf5\x91\x12\xf6\x89\x94\x8e\xf2\xbb\x13\xf8\x18\x6a\x83\xa7\xc9\xa2\xeb\xda\xa4\xc3\xbd\x14\xaf\xa6\xee\x67\xcf\x25\xed\x8b\x52\xf4\x63\x92\xa6\xa2\x07\x11\x85\x93\x00\x00\xbb\x50\x5f\x58\x61\x71\xb4\x46\x38\xa6\xae\x2a\x6a\xcf\x55\xb5\x4e\x56\xfa\xae\x58\x4c\xb3\x6e\x43\x01\x3e\x50\xc5\x11\x79\x85\x1a\x16\x43\x3f\x1d\xc2\x01\x54\x4c\x46\x68\x46\x8b\xcb\x48\x98\xfb\x9d\xd8\x2d\x2e\x4e\x8f\xc9\xe5\xe3\x4c\x15\xbd\xfc\xea\xcc\x90\xde\x72\xc0\x78\x4d\x92\x51\xbc\x94\xeb\x67\x1a\x1a\xd4\x4c\x60\x7e\xa9\x76\x6c\x8c\x26\x16\x66\x9a\x2e\xa9\x26\x46\xee\x37\x6a\xf4\x99\x7f\x10\x85\x9e\xf3\x0f\x14\x1f\x34\x33\x1d\x4b\x51\x9d\x3e\x0b\xde\x53\x54\xe1\xf7\x14\x73\xd0\x25\x9d\x6d\x81\x47\x24\xbf\xcb\xbb\x26\xcd\xcd\x71\x7e\xff\x7d\x3e\x81\xc6\x22\x2b\x29\x66\x34\xbc\x83\xc7\xf4\x9a\x52\xe7\x7c\xa2\xa5\x13\x8d\xb8\x6b\x1a\x61\x86\x9d\x50\x0a\x51\x27\x94\x25\x66\xd7\x2e\xc6\xb6\x53\x28\x63\x91\xbb\x38\xab\xf9\x46\x6d\x5c\x03\xd3\xb5\x8f\xd3\xd7\x01\xc0\x0b\xdc\x11\x76\x9a\x2d\x54\x28\xc3\x0e\x8c\x57\x22\x4a\x3e\xea\xac\xbf\x3c\x0a\xdd\xc9\xdb\xf8\x45\xf8\xf4\x4d\x44\x17\x5e\x57\xb7\x3a\x88\xf9\xbf\x44\x8a\x45\xb1\x75\x4d\x8b\x32\x44\x5a\x3b\x97\x00\x17\x9c\x8d\xdc\xa4\xd7\x8b\x76\xc3\x49\x25\x58\xda\xb5\xcb\x8e\x45\xe7\x76\xed\x0a\x53\xd6\x23\x0c\xce\x8d\xf5\x93\xdb\xae\x43\x8d\x13\x24\x74\xa7\x28\x52\x10\xd1\x8b\x09\xd2\xa2\xa0\x8b\x6a\xb4\x21\x32\xdb\xb1\x6e\xd9\xb4\x63\xab\x32\x96\x77\x68\x0f\xe3\x6b\x8f\xdd\x2b\xfa\x99\xb5\x83\x34\x29\x70\x3e\xa8\xad\x61\xaf\xdf\x3f\xc2\xe1\xd6\x8b\x61\x47\x2e\x31\x8a\x72\x22\xf8\x61\xa4\x29\xe8\x59\x37\x5e\x9d\x0e\x39\xf9\x71\xe5\xe0\x7f\x51\xb7\x04\x8e\x2b\x31\xd6\x8b\xa3\x9f\x7f\xc0\x52\x82\xb6\xfa\x40\xec\xda\x30\x3a\xac\xbb\xc8\x37\x0f\x54\x54\xce\xcc\xea\x20\x4d\x20\xc1\xa9\x09\xb9\x92\x45\x2a\xd1\x90\xdb\x75\xdc\xd4\x97\x52\xc7\x5f\x0b\xd8\x0c\x40\xcc\x7c\xad\x02\xfc\x34\xb3\x3d\x06\xb1\xf1\x6c\x8b\xf4\xcc\xd3\xaf\xd9\x9a\xee\x13\x0a\x98\xf0\x67\x88\x02\x25\x23\xa5\x95\x80\x30\xf9\xba\x12\x83\x3f\x81\x38\x57\x70\xe6\xb4\xec\x11\x69\x3f\xd6\x0a\x22\xb2\xe7\x79\x09\x8b\xed\x5c\x58\x2d\xd7\x15\x6c\xe8\x1e\xe6\xbe\x18\xd5\x55\x4b\x07\x55\xec\x9f\xe0\x44\xc1\x3a\xdc\xba\x46\xa7\x32\x73\xdf\x46\x8a\xb9\xc9\x8c\x27\x14\x4f\x6e\x79\x7a\xbd\xc9\x0a\xce\x43\xd8\x3d\x72\x14\xf6\x96\xc7\x5b\x61\xf6\xdd\xd5\x69\xda\xbd\x1a\xb4\x51\xb3\x6d\x4d\x89\x8e\xde\x6c\xb0\x47\xf6\x26\xb4\x17\x26\xf6\xf9\x03\x07\x9a\x99\xeb\xa4\xd3\x01\xd1\xfe\x32\xbe\x83\x0d\x2a\x95\xff\x10\xc8\x1d\xe8\x34\x9d\x51\x45\x25\x32\xc3\x76\xac\xc5\x84\xcd\x86\xdd\xb6\xf8\x66\x6c\xa5\xae\xf4\x57\xc9\x73\x8d\x89\xf4\x74\x38\x60\xa5\x7e\x4f\x39\x66\xbf\x35\x52\xe8\x24\xe8\x9b\x21\x1a\xfd\x36\xd5\x08\x59\x5d\xba\xce\xc3\xe5\xd3\x0a\xcd\xd6\xd8\x08\x5a\x93\x9b\x89\xa3\x67\xdf\xf3\xcd\x9e\x4b\x72\x9b\xf4\xe8\xc4\x43\x73\x05\x38\x63\xbe\x6e\xd5\x48\x65\x03\x4c\xd5\x61\xf1\x26\x7f\x5c\xcd\x05\x1b\x92\xc0\x29\x22\x77\x61\x36\x39\xc0\x40\x43\xdf\x8a\xaf\x95\x2c\x52\xe1\x7a\x36\xcb\x95\xc2\xf4\x19\x95\xc6\x9e\x79\x20\x3c\xf5\x90\x71\x85\xd1\x66\x3d\x50\x32\x95\x4e\x2e\xfd\x7c\xfc\x87\xcd\x2a\xc1\x20\x91\x02\xc8\xd2\xcf\x7a\x15\x26\x1a\x7b\xbe\x99\x28\x45\xce\xee\x6b\xb6\x33\x6b\x96\x16\xc5\xd3\x08\xff\xf0\xb6\x52\xb0\x0d\xf6\x85\x65\xd2\x37\xc3\xa1\x63\x8c\x07\xde\xf3\xb9\x48\x69\x82\x9c\x1b\x13\x9c\xb2\x66\xc9\x66\xf9\x54\x08\x19\xb9\xbc\xe5\x6b\x76\xde\xc0\xe6\x6a\x9d\x6d\x12\x55\x79\x6c\x97\xbf\x0d\x40\xa7\x97\x95\xd7\xca\xcb\x1e\xcb\xd9\xb5\x31\xa4\xb4\xf6\x4b\x0b\xe1\x3d\x65\xb6\xfe\x5e\x9d\x47\x51\xd7\x2d\xbb\x5c\xd0\xb6\xde\x54\x6e\xce\x3b\xd4\xd5\x8b\x25\x9a\x01\x9d\x25\xde\x1a\xef\x48\xa4\x20\x7a\x47\x26\x0a\xc3\xb4\x82\xf3\x62\x8a\xd2\x69\xa1\xaa\xd0\x66\x82\xed\xb0\x3f\x46\xd2\x94\xca\xc7\x30\x8d\x1d\xe3\x0c\xf0\xb6\x61\x0d\xc0\xd7\x3e\x47\x1c\x18\x17\x6f\xa5\xaf\x07\xaa\x1a\xd4\x71\xd4\xfb\x1e\xc7\x69\x2d\xb2\x4d\x0d\xb1\x08\x7f\xf2\xef\xb4\x94\x74\xe2\x39\x3a\xed\xd7\x2f\xfb\x6f\x3e\xe8\x92\x7e\x09\x87\x42\x4c\xb4\xb7\xf5\x3a\x9b\xc4\x37\x57\x43\x32\xcc\xd2\x65\x87\xda\xbc\xb0\xcb\x8a\x28\xd4\xcd\x8a\x51\x68\xf6\x77\xcc\xd0\x10\x46\xc1\x59\xcc\x0a\xb1\x5b\x08\x49\xf8\x5f\xa2\xf4\x80\x08\xed\xcc\xc4\x80\x1e\x38\xd0\x1c\xd8\x9e\x99\x0e\x01\xcf\x05\xad\xc2\x73\x8c\x22\x0a\x1c\x62\x7f\x4a\x01\x0f\xb8\x72\x77\xea\xc4\x60\x87\x36\x5b\x4c\xb3\x01\xb7\xa7\xf1\x12\x4e\xd2\x18\xf2\xb5\x0a\x8a\xf3\x32\x37\x09\x57\x1b\xb1\x5b\x9d\xd5\xc0\x83\xb3\xd1\xd3\x4a\x63\x77\x18\x9b\x0e\x1d\xd2\x64\xdd\xa9\x8d\x65\xf4\x9e\x22\xb4\x20\x4a\xbb\x59\xd3\x31\x0a\x60\x64\x48\xf8\x8a\xd6\xa3\x86\x7a\xc4\xb1\x69\xa7\x59\x50\xf0\xc5\x6a\x42\x60\xca\xd7\x13\x3f\x77\x67\x73\xc9\x66\x9d\xbe\xb3\x8b\xb6\x3b\x55\x45\x60\x38\x0f\x58\x3b\x10\x33\xf3\x7f\x1a\x05\x69\x84\xb3\x2a\x91\xdf\xfd\xb9\xbd\x5b\xf0\xcb\x21\xe6\x75\x23\x52\x08\x7d\x22\x87\xae\x5f\xa6\x19\x26\x7a\xb4\x34\x30\x38\x64\x2e\xa8\x2d\xb3\x93\x96\x79\x75\xae\x54\x5b\x26\xe6\xc6\x77\x14\x98\xe0\x3b\x75\x70\x40\x5b\x85\xc7\x62\x56\xee\xc7\x45\x0d\x9e\x2a\x1c\x2f\x2e\xd2\x94\x42\x19\xf1\x43\x6d\xfd\xf7\x2d\x05\x0e\xfe\x59\x14\xdc\x2d\xdc\xa0\xcd\x92\x30\xc8\xd2\xef\x28\x58\xd8\x58\xf6\x8e\xe3\x0f\xa4\x88\xe3\x5e\x8a\xd0\x1e\xec\xb8\x82\xfc\x00\xf6\xec\xe1\x05\xb5\x03\x02\xdb\xd8\x41\xb6\xd2\x79\x23\xc2\xc2\xd5\x9f\xc3\x14\xff\xf1\xe8\x29\x3f\x59\xec\xc1\x22\x2b\x73\x78\x82\xe9\x1e\x79\xf5\x27\xa5\x45\x5e\x53\xa5\x6d\xdb\x4e\x3a\xb0\xba\x8e\x7d\x9a\x4e\x07\xbe\x0e\x7a\xc4\xc6\xad\x98\x04\x2e\xf2\xc8\x53\x9f\x64\xc3\x47\xc4\x6d\xe7\x11\xcc\x88\x60\x4a\x78\x89\x53\x6b\x55\xc8\x2d\xda\x50\x35\xfd\xae\xae\xc9\x96\xa6\x02\x3d\x1f\x43\x87\x6b\x86\x52\x49\xb8\x24\x67\x47\xdf\x64\x6c\x48\x16\xea\xe1\x3f\x43\x90\x27\x7d\x9b\xd0\xc1\xbc\x36\x91\x86\x93\xc8\xd9\xb2\xcd\x56\x57\xfa\x36\xb3\x60\xd6\x21\x8a\xfa\x48\xf5\x7e\xc0\xeb\x53\x07\xdf\xac\x37\x7c\x7e\x4a\x09\x89\xc5\xa4\x17\x57\x45\xe6\x2a\x1b\xa4\xa1\xe0\x1b\xad\xdd\xc4\x32\x9c\xc2\x94\x9b\x94\x3b\x98\x6f\x76\xba\x6a\xcf\x3c\x12\xa9\x3d\xf3\x88\x3f\xa3\xf2\xf2\x90\x49\x98\x66\x21\x54\x0c\x05\x87\xfd\x30\x0a\xf2\xba\xb1\x59\x19\xd0\xd1\x49\xec\x45\x4c\xc8\x0f\x30\x54\x4c\x3a\x50\x4d\x53\xfe\x99\xcc\xf7\x8d\x94\xc1\xd8\x45\xca\x9b\x10\x81\xfd\xbe\x32\xb6\xba\x18\x8d\x55\x16\x95\x66\x77\x9c\x2e\x9b\x25\x67\x88\xc6\xae\xb1\x0f\x02\x9a\x1a\x33\xee\x40\x95\x60\xde\xd7\x05\xe8\x9b\xb1\xe2\x5e\xa1\x57\xa9\xdc\xf6\xc4\x50\xe3\x95\x3a\x3d\xb8\x65\xd3\x2b\x31\x2e\xa8\x06\xa3\x24\xca\xd7\x35\x58\xea\x6e\xd9\x6e\xdb\xee\x96\x31\xa6\x74\x28\x7e\x70\xc7\x0d\x67\x22\xdc\xb4\xb0\x5b\xfc\x60\xa4\x8e\xbe\x4b\xaa\x49\x0f\xbf\x92\x87\x68\x63\xc2\x2a\xd9\x8c\x12\x2b\x76\x5f\x00\xb4\x10\xd8\x9d\x8e\xd4\x5c\x5b\x0b\xfd\xc0\xdb\xd8\xc6\xf1\xcc\xd7\x95\xc6\xc6\x8e\x96\xea\xc2\x1d\x8e\x42\x1d\xf6\xa4\x37\xec\xca\xcd\x20\x2f\x21\x79\x39\xef\x45\x17\x15\x6c\x6f\x92\x12\xeb\x8d\x81\xdb\x6e\x4a\xe1\x9c\x6f\x73\x56\x8e\x79\x71\x5c\x25\x1d\xe7\x15\x93\xbc\xc8\x5c\xde\xe7\xa3\x8c\xeb\x04\xba\x36\xfb\x96\xa2\xf6\xba\xa4\x5b\xe6\x45\xe6\x6c\x3e\xdd\x78\xf6\x59\x5f\xf5\xa2\x61\x44\x8f\xff\x54\x44\x45\x52\xa9\x81\x29\x46\xf3\x29\xa5\xbd\xd5\xae\x8e\x2a\xfa\x0e\x76\x60\xa1\x17\x2c\x6e\x2c\x8f\xab\xea\x6c\x66\x18\xbe\x28\x42\x23\x4a\xf5\x63\x1c\xd6\x52\xf6\xfa\x4f\x51\x24\xc5\x86\xf8\xc8\x1d\xc5\xeb\x95\x1e\x04\x69\xd9\x11\x48\x8c\x7b\xe3\xd6\xdd\xa1\x0e\xa0\x2a\x96\xe7\x23\xdd\x53\x65\xa5\x7a\x9c\x4c\x87\x51\x2d\x91\x32\x79\xf5\x0a\xa5\x2e\x41\x4b\x12\x5d\x8b\x47\xd6\xe8\xb9\xf1\x26\xa6\xd7\x02\x80\xe5\x21\x6a\xbf\x21\x0e\xd9\xb4\x16\xd4\xfd\x3f\x26\x9a\x2c\x2a\x82\xdc\x63\x13\x7d\xcc\xd0\xf4\xbc\x05\x25\x0a\x31\xfd\xdf\xb8\x16\x16\x66\x9a\x2b\x2e\xb7\x19\x0e\x55\x94\xeb\xdf\x52\xa8\xc1\xb7\x82\x6e\x6e\x75\xfc\x9b\xa4\x40\x43\xdb\x53\x24\x3c\x16\xfc\x53\x2d\x5f\x32\xfb\xb9\x67\x54\x3f\xb6\x9d\xae\x4c\x8f\x73\x20\x3d\x7a\xe2\x03\xe5\xcf\xf7\x9e\x6e\x18\x1c\x0f\x96\x9a\xfd\x34\x2b\x3a\x25\x54\x07\xc5\xab\x84\x9e\x55\x14\xe9\x1a\x5e\x31\xed\x94\xc2\x1e\x24\x69\x61\xdb\x29\xba\x7f\x02\x11\xb8\x8c\x4a\x3b\xdf\x28\x37\xdf\x9c\x22\xad\x3d\x7b\x38\x8f\xbe\x42\xaf\x18\x87\xe7\x79\x1a\x63\xec\x11\xa4\xd0\x38\xbf\x7e\x17\x2f\x4d\x54\xda\x02\x10\xe5\x5f\xab\x1d\xa1\xef\xc4\xe6\x60\xce\xb7\xda\x42\xeb\xe1\x27\xa3\xb1\x8e\x4e\x2a\xa8\x21\x56\x04\xc4\x50\xa0\x93\x06\xfc\x34\xaa\x00\x37\x14\x6a\xa8\x4a\x6a\xe5\x28\x44\x1b\xf2\xd2\x48\x43\x1f\xd9\x08\x51\x0c\x26\x9e\xd0\x16\x8a\xcb\xe9\x12\x10\xf1\x08\x53\xbf\x1d\x85\xdf\x70\x5e\x05\x0e\xa7\x6b\xa2\xf5\xf9\xe6\x62\x6c\x07\xa2\x73\x28\x56\x16\xf4\xbc\x7c\x33\x71\xee\xee\xd9\xd3\xec\xa6\x9d\xb2\x0a\x67\xa5\xc5\x82\x3a\xc0\x2b\x34\x22\x7c\xed\x4f\x39\x3a\x5a\x39\x30\xf5\xf2\xf8\x41\x2a\x3f\x92\x12\xc9\x4a\xfe\x12\x76\x04\x2f\x44\xbc\x3b\x08\x11\xd7\x68\x2b\x50\x2e\x28\x8c\x01\xef\xcf\x18\x68\x48\xba\xf1\xf4\x9f\xfe\xca\x74\x75\xf0\xb1\x29\x96\x2a\x53\x35\xd6\x7c\xcf\xe0\xab\xcf\x68\x1e\xdb\xe3\x6b\x3b\xc6\xb0\xd4\x65\x61\xb3\xfc\x51\xda\x5e\x84\xff\x40\xb3\xd6\x63\xf9\xab\x99\x88\xbd\xe6\x8f\x79\xe3\x10\x20\x92\x2f\x34\x7d\xed\x89\x35\xda\x1b\x7d\x25\xb1\xda\x44\xd4\x49\x14\x80\x05\xa1\x22\xf7\xbd\x91\x12\x01\x3d\x4e\xa7\x05\x3a\x83\x17\x51\x17\xc6\xe4\x9f\x6e\xd5\x54\x8a\xf2\x8e\xc9\xa4\x23\xaa\xa0\x27\xb3\x1e\x7a\x52\xc7\x28\xe9\x64\xe9\x4a\x77\x2a\xc0\xf6\x2f\x8e\x54\x47\xe1\xa7\xc0\x43\x8a\xba\xe3\x33\x8a\x05\x3a\x18\xb8\xbc\x8a\x5a\x6d\x36\x85\x5f\x2f\x3a\xf2\xa1\xa0\xc8\x87\x8a\x3c\xfe\x23\xfc\xed\xcd\xf9\xe7\xf7\x7e\x8a\x36\x64\x9f\x3f\x2c\xcc\xf0\xe1\xfa\xf8\x9a\x22\x6a\x1e\xc3\xce\x87\x4e\xd5\xb1\x48\xab\xb9\x8f\x77\x8b\x47\x01\x7d\xf9\xfd\xc8\x27\xba\xbf\xf9\x58\xb5\xed\xb2\x17\x21\xb6\xee\x8f\xa9\x73\x8e\xaf\xfd\x99\x32\xc1\x78\x8f\xe0\xab\xeb\x9b\x5b\xa8\x18\xca\xde\x48\x03\x0e\x2c\xda\xd5\x91\x7a\x79\x67\x69\xaa\x0a\x9b\x9b\x86\x08\x45\xb4\x6b\x94\x7c\x32\x4d\x05\x53\x04\x31\xc0\x65\x6a\x80\x09\xcb\x87\x16\x36\xce\xda\x87\x90\x8c\xfb\x4c\xb0\x7a\x77\x58\x87\x37\x35\x10\x2b\x1d\xd8\xbc\x70\x1d\x7a\x4f\xac\xc1\x18\x79\x2c\x69\xfb\x74\x14\x26\xfb\xf9\x89\x1a\xe2\x67\x9b\xb1\x25\x2b\xa8\x29\xbd\x5a\x1b\xa2\x33\xf9\x0d\x9e\x58\xac\x0f\x51\xd7\x6b\x97\x36\x9d\xaa\x22\xdd\x55\xc5\xa1\xbb\x2a\x7e\x6c\x9b\xd8\x24\x5e\xd0\xc8\x9b\x73\x79\x4d\xfd\x0b\x51\x40\x4e\xf4\x57\x87\x69\xd1\xb7\x05\xd5\xdb\xc6\xe1\x68\xca\xc0\xfd\x41\x4c\xa3\x9e\xcd\x4c\x8c\x5a\xf6\x98\x38\x01\xa6\xcb\xc7\x91\xb2\xed\x57\xb8\xf1\xb6\x3b\xd8\x5e\xa5\xbe\x0c\xb6\xff\xbf\xa6\xe0\x96\xaf\x27\xd8\x2d\x44\x2f\xef\xa4\xe3\x1e\xf6\x1e\x80\xbc\x67\x8f\xb7\xa8\x79\x44\x30\x28\xf3\xb3\xfb\x1e\x0e\x20\x9e\x0b\xea\x20\x9e\xc7\x01\x8f\x6e\xdb\x6d\xbc\x69\x3c\xdf\x37\x69\x01\xb0\xe4\x2b\x7e\x04\x57\x42\x78\xce\x7b\x7e\x4a\xb0\x6e\x3a\x89\x1a\x92\xe0\x4b\x68\x35\x60\x87\x7b\xab\x2e\x57\xb3\x3d\x41\xfc\x89\x82\x58\xf5\x60\xa2\xeb\x15\x7a\x34\x36\xe9\xb9\xc4\xda\x8c\x73\x51\x14\xb5\xfe\x86\xde\x35\x5f\xd7\x68\x98\xcf\x35\x73\x37\x18\xc6\xec\x7d\xab\x8f\x75\xa6\xbd\xaa\xe3\x29\x48\xcc\xb7\x4d\x96\xd9\x38\xa7\x3a\x0e\x4e\xca\x93\xf4\x2e\x30\x5a\x6b\x63\x6a\xb9\x58\x31\xa8\x1d\xdf\x7b\xa0\x7c\x41\x3f\x5d\x31\x19\xf6\x32\x0d\x69\xc3\xfe\xf3\x81\x2e\x82\x5f\x89\xd4\x41\x6f\x5c\xcc\xb6\x64\x0c\x75\x8e\x02\xbe\xea\x92\x76\x7f\x3b\x33\xf1\xdb\xbf\x38\xdb\x34\xc3\xea\x3c\xb6\x64\x06\x44\x74\xe4\xf5\xcb\x0f\x26\x49\x0d\xaa\x33\x8c\x43\x35\xec\x71\x77\x34\x33\xfd\xce\x68\xa3\xa2\xc6\xce\x66\x39\xdc\xd6\x50\x42\xca\xd5\x42\x97\x8e\x77\xe3\x4b\xcf\xf9\x3a\x55\xc3\x9b\x77\x42\x51\x93\x39\xac\x44\xa7\x45\x78\xf7\x53\xa5\xfd\xf3\x73\xad\x8d\xfe\x4e\xc4\x24\xe6\x63\xcf\x1d\x12\xf5\x2f\xad\x7a\x01\x30\x25\x53\x6f\x51\x88\x7c\xb3\xce\x6d\xb2\x97\x99\x65\xbb\x6a\x32\xe4\xc3\x9c\x0e\x45\x21\x1d\xba\x3e\xf1\xa1\xdd\x73\xcd\x41\x9a\xb8\x22\xf5\xa7\x97\xd4\xbc\x1a\x5e\xd7\xf5\x84\x27\x55\xb7\x33\x53\xf0\x5c\xc6\x84\x38\xa7\xa8\xce\xe7\xd4\xa6\xd9\xb3\x49\xb5\x45\x58\xd2\x04\xc0\x7f\x66\x12\x80\xb2\xf2\x95\x9c\xe7\xf4\x68\x23\xab\x6c\x76\x5f\x93\xdb\x00\xa2\x18\xa9\xb6\x97\x73\x13\x67\xe9\x2f\x50\xe1\xfd\xd9\xee\x67\x1a\x8a\xc8\x85\x9a\x08\x5f\xab\x06\x4b\xc7\x25\x87\x4c\x92\x62\xc1\xe8\xca\x93\x97\x1d\xf2\xca\xbf\xc7\x94\xe7\x4e\xcf\xc4\x71\x3a\x14\x5b\x36\xf6\xfe\x50\x86\x25\x93\xc5\x52\xa8\x85\xe2\x55\x00\xba\x0c\x50\x1e\x5f\x8f\x42\x54\xb9\x9c\xc6\xe5\x40\xac\x21\x24\x5c\x0e\x8d\x8f\x53\x1b\xc1\x76\x2f\x2c\xcc\x54\x93\x66\x4a\xe5\x7b\xef\x2a\xb5\xb7\x1f\x47\x8a\xdc\xf6\xb7\xbe\x1a\xd5\xb5\xb1\x59\xe5\xb7\x87\xed\x0a\x98\x3c\xbe\xf6\x9b\x03\xc0\x57\xa4\xbf\x33\xae\x25\x87\x73\x76\xeb\x9a\x52\xa7\x58\xa7\xad\x1e\x8b\xe2\x1e\xef\x98\xd2\x8e\x0b\xfe\xd4\xa8\x0f\x80\xe3\xa9\xf9\x75\x9d\xb4\x9a\xa9\x0b\xf3\xa1\x9f\xbc\x3b\xe0\x17\x6b\x38\x92\xf6\xe0\x30\xcd\xcb\x4c\x20\xa4\x78\x79\x27\x46\xea\x4d\x4e\xf6\xa2\xe6\xe6\x9a\x54\xb2\x6a\xaf\x36\xc8\xc0\x96\xcb\xd6\xd8\xb5\xa5\x86\xad\xce\xc5\x72\x60\x12\x57\x98\xcc\x19\x56\x29\x18\x53\xf1\x14\xe1\xa2\x10\x87\x7f\xac\x00\x05\xa6\x9b\x0e\x0b\xdb\x45\xc6\xe6\x37\x31\x85\x5e\x88\x02\x56\xf8\x6a\xa4\x3a\xbe\x57\xd5\xd2\x01\x1b\xcc\x82\xac\x8e\xe9\x7b\x6f\x14\x1c\x85\xef\x29\x2f\x1c\x68\x9b\x68\x40\x95\x76\xd7\x98\x18\x8a\xdd\x73\xcd\x2f\x97\x86\x38\x8a\xa1\xfa\x0f\x46\x19\x5f\x8f\x9e\x1a\x9f\x68\xbb\x76\x35\x77\xcf\x3d\x52\xbd\x62\xd4\x25\xb7\xb4\x82\x10\x35\x9c\x48\xbd\xf0\x9c\x9f\xe4\x53\x60\xfe\x20\x24\xdc\xde\x0a\xb2\x9f\xbf\x7a\x9b\x73\xac\x31\xdf\x1d\x4c\x2a\xb0\x70\x71\xcc\xdd\x1a\x85\xf6\xc5\x43\xad\xb1\x84\xb9\xe6\x17\xf5\x6c\x52\x3a\xae\xeb\x61\x0e\xb0\x7d\x34\xdf\xf8\x3a\x48\x95\xf0\xd9\x8c\x32\x23\xc8\x45\xbd\x16\x29\xf9\xd3\xd7\xea\xb6\x53\x53\x14\x76\x30\xf4\xd1\x17\x6a\xc9\x67\x15\x13\xed\xac\x3a\xcb\x3a\xfd\x70\x76\xeb\x7e\x82\xec\xa7\x52\x88\xed\xa6\x03\x97\x90\xb5\x6f\xa8\x8d\xb1\x3c\x0f\x22\x8f\x6b\x91\x3a\xf7\xde\x9e\xe8\xca\xee\x54\xa4\xcd\x54\xfc\xa1\x05\xf7\x4a\xa3\x25\x81\x89\x74\xaa\x7a\x69\x62\x29\x25\x93\xa6\x80\xd2\x30\x99\x22\xdc\x29\xc6\xea\x15\xec\xb2\xa8\x95\x5c\x1b\x2b\xf7\xc4\x43\x70\x4e\xa0\xdf\xfa\x54\x4b\x35\xe1\x51\xc6\xc0\x87\xb6\xaf\x05\xe2\xf0\x79\x65\x32\xd4\x8e\xd3\xce\x52\xbb\x24\x81\x12\xfa\xa5\xe2\xb5\xab\x40\x50\x77\xe9\xef\xa0\xc7\xb1\xa9\xf5\x48\xb0\x40\xf8\xdc\x14\x25\x2c\x08\xf7\x00\x9a\xf3\x99\x03\x4a\x0a\x35\xd8\xb9\x45\x57\x14\x1e\xd0\x87\x18\xf5\x8e\x12\xd3\x0a\xbc\xc3\xa2\x6f\x17\xe5\x4c\xc3\x34\xbb\x1d\xa9\xd6\xd2\x6d\x25\x1a\x68\x3a\xc5\x56\xda\xa2\x11\x7a\x1f\x1e\x85\x00\xf3\x3a\x96\xb9\x77\x68\xaa\x36\x17\x09\x16\x1b\x4a\x86\x53\x6f\xcc\xba\xe9\x6f\x12\x97\xb3\x6a\x30\xb6\x63\x88\xb7\x20\x6e\x63\xce\x9e\xe8\xe3\x4f\x86\x0f\x73\x84\x66\xef\xa7\x71\x37\xb0\x4b\xbc\x84\xd9\xfe\x19\xaf\x6d\x16\x64\xcb\x96\x5d\x4a\x36\x20\xbd\x29\x85\xa1\x02\xe7\x08\x25\x78\xa8\x29\xe0\x83\x27\x26\xaa\xc6\x2f\xcc\xee\x6b\xc6\x4e\x58\xf1\xda\xbb\x56\x64\x41\x27\x2c\xe7\x66\x45\x6a\x46\x61\x58\x8e\x23\xfb\xe1\x1b\xa5\x5d\xd4\xcb\xac\x85\xef\x13\xea\xc8\x1f\x44\x4a\xbe\xea\x83\x1a\xfa\xfc\x7c\x15\x01\x74\x4b\x27\x6f\x12\x35\x18\x26\x47\xf0\x4d\x9d\xb6\xf0\x8a\x8d\xe3\x46\x50\x8a\x05\x31\x54\xf2\xf7\x27\x95\xab\xaf\x8b\x89\x49\x4b\x2b\xc7\x23\x41\xf6\xec\xf1\x48\x90\x8d\x11\xcc\xce\x66\x6e\x56\x94\xda\x3b\x1a\x90\xd2\xbb\x0c\x1d\x4f\x8e\xe9\xa4\x66\x14\xa6\xfd\xaf\xcd\x4d\x35\x14\x07\x9b\x7e\x08\x36\xdb\x1b\x94\xe8\xa2\x6c\xb5\xb9\xf5\xa0\x78\x77\x68\x7b\x26\x67\xa8\xb0\xa4\x73\x5a\x6d\x4b\x51\xcf\xda\xe9\x6a\x57\x29\xc9\x7f\x4d\x99\x08\x7f\x4d\x01\x46\x4d\xb7\x9b\xd9\x9c\x39\x39\x42\xef\x09\x01\x0d\x73\x4a\xb0\x4c\xaf\xab\xe8\xa6\x57\x65\xb0\xe2\x8b\xc8\x5e\x78\x58\x08\x62\x8c\x17\xd0\x4b\x8b\x65\xd2\xad\x76\xc6\x85\x79\x1f\x26\x05\x4e\xd6\x39\x4a\xfd\x45\x4f\x21\xec\xbc\xb9\x59\xb4\xc5\xea\x16\xfa\xfb\xc0\x1c\xbf\x33\xd2\x96\x4e\x5f\x1d\x05\x08\x04\x94\xc5\x70\x74\x8f\xf5\xae\xbf\x3a\x31\x65\x3f\x4b\x0a\xbe\xb9\x35\x40\x8f\x08\x82\xa3\x7a\x8f\xd2\xe1\xaa\x33\x7c\xcf\xac\xa9\x62\x14\xb4\xb5\x99\xbc\x1c\x29\x60\xf2\x4f\x3c\x82\xa0\x63\xb2\x21\x41\x85\xc4\x06\x9b\x7e\x81\x27\xf5\x06\xc1\x77\x46\xdd\x89\x9c\xfe\x98\xf4\x8b\x1b\x4e\xd3\xa4\x14\x4c\x46\x80\x27\xdd\xc1\xcf\x13\x6a\x3b\xed\x84\x08\x66\xb4\x95\xb9\xe9\x0e\x5c\x01\xbd\x91\x79\xaf\x05\xfd\x53\xa5\x39\xfc\xd3\xf1\xba\xff\x30\xdf\x16\x62\x8c\x77\x69\x2a\xa2\xb4\x82\x16\x28\x3e\xc3\x2a\xa6\xfe\x3c\x0e\xf9\xcc\x0d\xfc\x2e\x29\x3b\x52\xdb\x06\x09\x8d\x36\xf9\x1b\xa6\x2e\xaf\xa6\xc1\xee\x39\x7f\x8c\x07\x58\xee\xdd\x48\xc1\x8d\x4f\x29\x51\x5f\x97\xf4\xd3\xbc\x8a\x88\xda\xb1\x6d\x50\xf9\x0a\x21\x27\x63\x3e\xf8\x46\x35\xad\x77\x7d\xee\xf9\x07\x1b\x28\x3f\xea\x4b\xf7\x22\x1f\x87\x90\xe4\x19\xda\x99\xf9\x7a\x6d\xb2\xd3\x4f\xec\x78\x36\xe0\xf7\x72\x43\x17\xc8\xe2\x5c\x95\x44\xc2\x80\x2e\xba\x86\x62\x20\x9f\x53\x71\xff\x39\xf5\xa8\x65\x06\x56\x1e\x6a\x83\x8f\xad\x85\x4a\xdf\xcf\x11\x87\x1a\x81\xe9\x1d\xda\x65\x64\x6d\x2a\xef\x4a\x0e\xda\xb1\x69\x6c\x9a\xd0\x1a\xab\x32\xd0\x76\xd9\x8b\xab\xe5\x5d\xfd\x05\x2e\xdf\xab\x41\x7f\x5d\x55\xd2\x27\xb1\xc6\xa4\xcf\xd1\xc9\xac\x28\x1d\x29\x36\xdd\x5e\xcf\xa6\xab\xf1\x20\xe8\xa4\x8b\x8b\x56\xf8\x74\x5c\x30\x56\xb2\x4e\x97\x15\x75\xf1\xf2\x48\xd5\xab\x8f\xd7\x39\xd2\x2e\xa6\x99\x38\xec\x63\xcf\x3d\xa5\x3a\x39\x75\x72\x47\xb3\xac\x86\xc9\xe1\x1d\xda\xed\xe7\x95\x2d\xd3\x79\x05\xa7\x1a\x98\xcc\xd9\x82\xa3\x6d\xe4\x5c\xcc\xad\xe1\x1b\x9f\x24\x0f\xe1\x43\x57\x8d\x83\x54\xc7\xe9\xa1\xa4\x6c\x3e\x66\x48\x95\x18\x72\x33\xc2\x64\xfe\x18\x91\x19\x0a\x12\x48\xad\x51\x3f\xe0\x0d\x00\x1d\x96\x63\xe3\x6a\xcb\x41\x0d\x09\x06\x5a\x68\x56\x35\xa0\xb9\xe5\xb1\x86\xb3\xfb\xbc\x39\xaa\xfe\xfe\x25\x9b\x91\x72\x2d\x0a\xad\x1f\x01\x4e\x85\xc0\xf3\x2a\x4a\x5e\x98\xe8\x4c\xf7\x95\x4a\x2e\xc5\x37\x52\xec\x43\xdd\xd6\xcf\xf3\x85\xf9\x70\x68\x85\x3a\xdb\x05\x2a\x93\xea\xf6\x39\xb6\x5d\xb8\xad\x8f\x79\x4e\x22\x59\x58\xa7\x1f\x83\xf7\xf0\x11\x7e\xb1\xc4\x89\x35\xfd\x89\x7e\x3a\xb4\x98\xbd\x9e\x52\x01\x5d\x37\x1c\x16\x77\x47\x63\x20\xb9\x3a\x81\xea\x3c\x35\x99\xee\x77\x41\x22\x8e\xaf\x6b\xf4\x8d\x9b\xc5\x8a\x13\x3e\x02\x82\x9e\x33\x8a\x26\x7c\x46\x35\xc8\x3a\x65\x0c\xec\x24\xde\xe5\xcf\xf0\x2c\x7c\xa3\xf8\x76\x83\xb4\xe0\x32\x9e\x48\x4a\x85\x1f\xf3\x04\xfd\x18\x84\x0f\x0f\xab\xfe\xe0\xe7\xf6\xce\x6c\x0d\xfd\x0b\xb0\x13\x11\x25\xdd\x1c\x29\x72\xe3\xf1\x51\x50\xa1\x7f\x5b\x37\x39\x1e\x62\x3c\x0a\xde\xff\xbf\xd0\xb8\xc9\x34\x59\x82\x4d\xdc\xac\x87\x2a\xd0\x5f\x14\x87\xbf\x30\xd7\x4e\xa8\xee\x4f\xbf\xc8\x1f\x0d\x01\xde\xcf\xad\x29\xf0\xc1\x2d\x2a\x9a\x79\xbb\x80\x40\xd0\xfe\x3b\x6b\x41\x74\x5f\x58\x01\xd4\x9d\xfe\x6f\xd8\x4d\x13\xc7\xf5\x09\x65\x5d\xc1\xbc\x1f\xfe\xc3\x0a\x11\xb5\xf3\x17\x69\x7b\x86\x45\xcd\x13\x6b\x8d\x5d\xbb\x3c\x29\xe1\x19\x25\x4e\x53\xb8\x7c\xd1\x74\x0a\x97\x26\x5b\x54\xbf\xfb\x52\x34\x56\x4a\x50\x92\xe8\x08\xd9\x7c\xc1\x21\xd0\xd0\xbe\xa3\x86\xac\x6f\x4d\xb7\xca\xfe\xab\xff\xea\x85\x6f\xfd\x0b\xb9\xac\x52\x5c\xfe\xf9\xe8\x67\x9e\xf5\xa4\x21\x68\xc0\xae\xa4\x59\xc1\x5c\x4e\x3c\xd6\x0d\xe5\x63\x79\xa3\x0e\x93\xb7\x68\x0d\xc2\x0d\xe8\x1a\xdc\xa5\x38\x89\xaf\x55\x54\x9d\x5b\x3b\xc8\x1f\xc3\xf8\x22\xbb\x44\xf2\x8f\x1d\xf2\x31\x48\xfe\xe1\xbc\xf8\x88\x1e\x56\x44\x19\xab\xa5\x8b\xa6\xfd\x55\x8d\xd1\x3c\xa2\x40\x75\x5b\xd0\x4b\x41\x14\xf2\x96\xb6\xa2\xbe\x04\x6c\x86\xd0\xff\x29\x97\xc3\x97\x1c\x56\xda\xd8\x63\x62\x36\x97\x26\x02\x2b\xdf\x78\xf8\xff\x96\xca\x6e\x3c\x7a\xa0\xad\xe9\xec\x22\xad\x4b\x04\x06\xdb\x5a\xa1\x48\xb5\xad\xc6\x6d\xa8\x69\x92\x82\xac\x6b\xb1\xe6\x25\xb4\x08\x1f\x9a\xc4\xca\x54\xfb\xca\x52\x92\xae\x50\xd1\x01\x75\xf6\xdf\xc3\x16\xcb\x37\xaa\xec\x93\x1e\x74\x5d\x77\xa8\x0a\x1b\x67\xf7\xf1\x91\x77\x18\x23\xc7\x37\x13\x04\x8b\xfd\x33\x4d\x97\x65\x36\xb6\xcb\x44\x09\xf7\xc7\xf3\x4f\x29\xe7\x13\x9d\xd7\x80\x8c\xac\x42\xeb\xac\x30\x4b\x92\x83\x61\x8a\x1e\xa7\x8d\x99\xaf\x27\x98\x0f\xd5\x40\x55\x11\x62\xe2\xf2\x22\x23\xd4\x56\x23\xa0\xc4\x10\xab\x88\xe6\x45\xd8\xf0\xb2\xb4\x6d\x41\xc7\x46\x75\x03\x60\x66\x6f\x2d\xe5\xfd\x76\x8f\xaa\xe4\x62\x05\xfe\x4f\x4a\x03\xe9\x8a\x6a\x5c\x6f\x6e\xa9\xf6\x17\x42\x11\x4c\x5a\xe6\x35\x22\xb6\x7c\x43\x97\x6b\xd3\xb8\x9b\x13\x90\xbe\xe1\xbd\x72\x38\xde\x17\x7f\xa1\x9a\x78\xa4\x9f\x16\x36\xe6\x18\xc2\x93\x0d\x7d\x18\x7f\x76\x2c\x70\x4b\x5e\x72\xd3\xf4\x23\xb1\xbc\x51\x06\xf1\x88\x5a\x9f\xba\xb2\xf2\x2a\xb3\x71\x27\x5e\xe2\xec\x3e\xe0\x8d\x5d\xc7\x99\x44\x01\xc0\x1f\x51\x48\xba\x47\xd6\x9e\x54\x32\x21\x71\xe9\x09\x35\x38\xf6\x8f\xaa\x10\xe0\xa8\x4f\x2e\x72\x82\x46\x7a\x5d\x36\x96\xdf\x42\xf5\x83\x1c\x81\xbe\xb0\xfe\xf8\x5a\x00\x66\x1e\xab\x33\xbb\xca\xe3\x32\xe3\x9e\xbf\xb0\x02\x1b\x81\x21\x38\xc1\x7e\x98\x9b\x6b\x0e\x4b\x09\x01\xc5\x4f\x45\x9b\xab\x28\xe0\x46\x3f\x8d\x5d\xd7\xac\x62\x9a\x88\x4b\x55\xa0\x66\x40\x76\x82\xb3\x15\x55\x82\x49\x56\xcb\x29\xd5\x19\xe6\xa6\xad\x54\x2f\x35\x29\x47\xcb\x74\xd8\x15\x5b\xfd\x8c\xdd\x01\xd5\xa6\xe0\x62\x67\x3d\x5c\xa6\xed\xb2\xa2\x5f\x3d\x54\xc3\x6b\x2b\xdd\x55\xb9\xf0\x11\x1d\xee\x5d\xf1\x05\xa4\x76\xe6\xda\x12\x42\x2a\xb7\x49\xd9\x31\x4f\x6a\x95\xad\xc2\x74\x5d\x39\xa0\x77\xc7\xee\x6a\xca\xab\x44\x2b\xd8\xd9\x83\x36\xeb\x10\x2e\xae\x11\x50\xfa\x5f\xa7\x87\xe1\xeb\x91\x52\x73\x8c\xab\xf5\x39\x00\xa0\x83\xd5\x39\x68\xfc\x44\xa9\x43\xb5\x60\xcd\x92\xcd\xb6\xab\x3c\x93\x3d\x2f\x71\x90\xfe\xe6\xb8\xd1\x11\x02\x3b\xcd\xf5\xc2\xf4\x39\x12\x8d\x43\x1e\xe7\x43\x05\x5f\x39\x7c\xde\x56\x80\x9e\x22\xab\x62\x62\x38\x2f\x4a\xb8\xac\xaa\xbf\x27\x34\xd9\xe8\xeb\xaa\x20\xfd\xb6\x72\x6a\xd0\x89\x5b\xe6\xd8\xdc\x01\x41\xe4\xff\x8c\x1f\xe1\x49\x45\xc1\x59\xe4\xa2\xf2\x76\xdb\xd2\xda\xb8\xf8\x3e\xdb\x2c\x93\x4e\xb5\x27\xba\x44\xb4\xc8\x91\x21\x1d\x1b\x29\xe1\x91\xf3\xaa\x85\x7e\x2b\x0a\x82\x1c\x2e\xe9\x8a\x76\x22\xbd\x24\xc0\xc7\xb0\xd9\xf1\xf5\xc6\x7a\xfa\xc2\xcc\xde\xe6\x4e\x8a\x51\xbd\xc8\xa9\x0e\x25\x94\x48\xef\x65\xc5\x37\x5d\x8c\xd3\x14\x18\x02\x6f\x54\x83\x92\x86\xd8\x8f\x86\x57\xf3\x86\x2e\x57\xb6\x3b\xf4\x55\x9e\xa6\x1c\xec\x9d\xe8\x13\x18\xfb\x0b\x1b\x9f\x71\x67\x73\xff\xcc\x3c\x34\x5a\xb1\x53\xde\xd7\x0e\xc6\x5b\x49\x59\xd5\x67\x9b\xb3\xfb\x82\x69\xe1\xfe\x19\x0e\x56\x1f\x5a\x0b\xc7\xcb\x26\xc8\x10\x7b\xd9\x96\x2f\x3d\xc7\x35\x0d\x04\x35\x38\x07\x3f\x8a\x54\x4d\xe9\xb0\x0e\x31\x2e\x8c\x14\x57\xff\x83\x48\xeb\xf0\x6c\x04\x02\xcf\x2f\xcc\x37\x9f\xcd\x11\xce\xe1\xa7\x7d\xb2\xa5\x4c\xe7\x60\x3f\x22\x89\x2d\x4d\x11\x99\xd9\x84\x13\x02\x30\x65\xcb\x84\x28\x47\xb5\xa9\x99\xbc\x6f\xf2\x07\x67\xe9\x4f\x28\x27\xdb\xc2\xb8\x18\xd3\x41\x8b\xf7\x89\x0b\x45\x38\xee\xcb\xa4\x4b\x56\x05\x8d\xd0\xef\x86\x2d\x1e\x5f\xd7\x98\xe8\xcc\x37\x87\xb6\x10\xb3\x67\x9c\xac\xac\x97\xcd\x37\x8a\x92\x4f\x3c\xa1\x2a\x98\xf0\x2d\x9a\x2b\x4a\x45\xf0\x8a\xc7\x25\x8a\x9d\x15\x98\x4e\x78\x95\xdb\x50\xdd\x47\xdf\x82\x4d\xdc\x44\x60\x5a\x09\xb1\x9b\xbc\x40\xc1\x1a\xb3\xf0\xac\x9a\xf7\x67\x35\xe6\xf8\x37\x15\x07\x21\x4e\xcb\xa4\x87\x10\x82\x8b\x59\x8a\x46\xae\x43\x88\x97\xca\x2e\x22\x60\xac\xe9\x37\x54\x11\xfd\x8d\x31\x8f\xd0\x32\xcb\xb7\x52\xe4\x88\xc6\xc1\x09\x54\x94\x01\xeb\x84\x0f\x34\x8a\x8c\x37\xb0\xb8\x00\x7a\xe5\xf7\x2f\x10\x9c\x86\x77\x58\xff\x23\x55\x8a\xcc\x8b\x32\xe3\x87\x60\xd9\x04\xfa\x87\x22\xa1\xb0\xf1\xf0\xdb\x3f\xd3\x5c\x1a\x87\x14\xde\xc7\xb3\x20\x0e\x67\xd9\x36\x7c\xe5\x49\x85\x4a\x6f\x97\x59\x9b\x6b\xaa\x78\xea\xfb\x91\x3a\xd3\x80\x15\xc2\xf9\x70\xcf\x1f\x39\xb9\x89\x07\x4c\x9d\xe2\xfe\xac\x1a\x9f\x13\x4a\xdd\xbd\xc8\x5c\xbb\x4c\xb8\x95\xee\x7d\x51\xaa\x29\xc3\x37\x5a\x9b\xe1\x33\x1d\x48\x68\x21\x98\xda\x4c\x6c\x4e\xbe\xf6\x82\xc0\x3d\x93\x75\x6d\x42\x94\x43\x86\xea\xd2\x18\xd3\x51\xb7\xce\xfe\x8f\xa2\x9a\x12\x1a\x08\xdb\x41\x87\x42\x5c\xc7\x1e\x8a\x18\x89\x9f\x28\x99\xb1\xa2\xef\x12\x1a\x42\xda\x31\xe4\xbf\x57\x4f\xe1\xd1\x95\xbb\xe5\x0d\x1e\x57\x73\xbd\xc8\xdc\xb2\x13\x95\x43\x44\x33\xa8\x83\xf1\x75\x0d\xf4\x0e\x4e\x0a\x1c\xa9\x88\xc0\x25\x3d\xa3\x48\x5f\x6e\x5c\x7e\x9f\x6d\x0e\x33\xd7\xb1\xfc\xa6\x34\xda\x90\x7d\xd3\x23\x45\xbb\x79\xbb\xae\x23\xd5\x29\xe3\x61\xe6\xd8\x92\xd7\x7b\x1d\xfb\x00\xfa\x52\xa4\x4d\x65\xd8\xea\x58\x09\x34\x9f\x56\xf2\x57\xa7\x7d\x71\x72\xa5\xef\x3a\x7d\x0a\xf3\xc6\x24\x77\x7c\x74\x14\x30\xed\xbc\x11\xe3\xe5\x8c\xb3\xe5\x6d\x9e\x7f\x0a\x67\xbd\x10\x0d\x54\x03\x72\xeb\x9a\x92\x65\xbc\x47\x9b\x28\x42\xcd\xef\x6a\xa8\x4e\xa4\x48\xec\x67\xa8\x72\x82\x9d\xe0\xd5\x48\xbb\x80\xfe\x04\x49\x1e\xa2\xda\xed\x2d\x25\x04\x73\x22\x0a\x9a\xf4\xc7\x34\x36\x64\x53\x8b\x0a\xb9\xd8\x99\x6e\x40\xe9\x12\x09\xfd\x69\x2a\xa9\x4a\xe8\x48\x6f\xd2\xdb\xcb\x55\xbb\x0f\x3e\xff\x7d\x1c\x2d\xe2\x50\x47\xeb\x1e\x61\xe5\x26\xe2\xd8\x78\x2a\xf6\x6e\xe1\xde\xbc\x8c\xa2\xb4\x98\xb0\x86\x90\xeb\x2a\xcd\x45\xb4\x1e\xaf\x7a\x05\x2a\xbb\x6c\x93\xbe\xa1\xae\x05\xc6\x50\xd4\x18\x95\x84\xfa\x09\x85\x57\xbb\x5b\x67\x5d\x36\xcc\x6c\x0f\xc2\x5e\xfb\x67\x3c\xed\x25\x44\xc3\x5a\x9e\xed\x73\x9c\xea\x7b\x02\x76\x60\x74\x1e\xab\xf3\x81\x1e\x78\x69\x76\xc1\x28\xaa\x3a\xea\xf9\xe8\x13\x8a\x38\x57\x2d\xee\xe9\x50\x71\x5d\x57\x42\x64\xa8\xc6\xa1\xb1\x7b\x9c\xde\x15\x5f\xd7\x40\xd2\x9a\xe9\xe2\xa2\xf5\x70\x22\xcc\xee\x2b\x4a\x1e\xf1\x8a\x37\x24\xcb\xcb\xa1\xcd\xdc\x60\x98\xe6\xf2\xaf\x51\xe1\xba\x8e\x37\xc8\x37\xe3\x26\xe0\xcb\xb6\x1a\x28\x14\xfa\x50\x64\xba\x8b\x59\x85\x84\x17\x4e\x87\x08\x31\x5e\x53\xf9\x46\x3b\x2d\x8a\x98\x69\x8f\x98\xbf\x5f\x57\xc6\xc6\x1c\xda\x4b\x46\xfc\xb4\xff\x58\xd7\xe5\x9d\xb4\x24\x25\x5f\x8a\xbe\x30\x8f\x8e\x28\xb2\x1f\x10\xb4\x52\x8e\x78\x42\x35\x0d\x06\x65\xc7\xc5\x0c\xd0\xd5\x96\x05\xf8\x59\x6c\xf7\x8d\x30\xf5\xaa\x42\x66\x76\xed\xb2\x8d\xd3\xe1\xc0\x26\x45\x3e\xad\xa4\x72\x2f\xa9\x82\xe4\x45\x94\xe2\xd0\x42\x7c\x35\x52\x6e\x47\xf5\xea\x36\x65\x96\x78\x41\x0f\xac\x98\xd7\x94\x75\xfc\x6b\x13\x99\xdc\xce\x66\xd7\xb8\x78\x95\x46\x4b\xba\x33\x1a\xb4\x18\x1c\x4b\xbf\x5f\xd3\x8e\x06\x87\x9d\xaa\x6b\x2e\x1f\x4c\x85\x0e\xd7\x6d\x3c\xa9\x98\xcf\x57\x7f\x05\x07\xc4\xb8\xc7\x4f\xa7\x6f\x11\x8f\x08\x57\x48\xcd\xd8\x3e\x95\x2b\xc4\x98\x74\x32\x48\x6a\x0e\x4d\x4f\xf0\x41\x58\xaa\xa7\xb1\x25\xf2\x8d\x12\x99\x8a\xcb\x36\x09\x71\xf3\x64\x02\x30\xed\xb7\xc3\x79\xf6\xdf\xb2\x00\xb2\x04\x6f\x1b\xf1\x81\x7b\xf6\x34\xdb\xca\x0e\xe0\xbc\x36\x84\x3a\xef\xbb\x01\xb1\xed\xf1\xf9\xeb\x25\x7c\x82\x9c\xcf\x58\x2d\x7e\x60\x93\x27\x54\xc4\x00\x04\x00\x9e\x6a\x9a\x0e\x63\x3c\xc8\x3d\x8a\xba\x81\x21\x00\x1d\x06\x47\xe2\xef\xaa\xbc\x69\x7a\x4d\x79\x5e\x1d\xd6\x0c\xf4\xab\x63\xbd\xb0\x48\x77\xc9\xa8\xcc\x87\x21\x67\x37\x70\x94\xe9\x36\xe3\xe4\xf0\x7a\xbf\x5e\x73\x86\xeb\xae\x48\xf7\xae\x47\xca\x9d\xf3\xe3\x3a\xd6\x64\x27\x5d\xb6\x19\x0a\x55\x6c\x83\x1d\x85\xe5\x70\x73\xa4\x49\x16\xae\x43\xd5\x8b\x85\x19\x56\xa1\xc4\x66\x88\x64\x01\x96\xff\x7c\x4d\x4f\xc3\xff\x26\x7a\x5c\x09\xc0\x2f\xd9\xec\xd1\x50\x35\xbd\xa2\xac\xb4\xae\x60\x73\xc1\xda\xb9\x1a\x05\x20\xe7\xab\x38\x44\x44\x01\x5d\x95\x82\x79\x7b\xf0\xce\xda\xd5\x4b\xc2\x8b\xf9\x67\x91\x42\x8d\xdf\xa6\xb9\xe9\x09\xa1\x0b\xa2\x1f\x0a\x40\x13\xe6\xef\x7f\x37\xa9\x0d\x34\xdb\x1c\xa4\x99\xdd\xa2\x64\x35\x1a\x78\x7d\xe2\xed\x17\x34\x61\xbe\xb6\x83\x26\x02\x1a\x21\x67\x47\x41\x3e\xec\x88\x4a\x8e\x67\x7e\xf1\x97\xa9\xab\x8c\x64\xec\x71\x25\xb1\xcc\x53\x54\xbb\xfc\xa0\xb4\xde\x58\x53\x42\xd0\xa9\xc9\xba\x8f\xd2\x2b\x47\x18\x71\x3d\x52\x32\x08\x9c\xaa\xe1\x66\x9a\x65\xa1\xb1\x41\xdd\x1b\x53\xf8\x53\x92\x15\x9b\x5b\x94\x61\xe1\x0c\xbf\xa5\xbb\xc1\x7f\x19\x29\xe1\xfb\x87\xd7\x42\xc9\xeb\x4f\x47\x21\xee\x3b\x3c\xd2\xe4\x14\x39\x3b\x7a\xfd\x34\x2f\xda\x65\x5e\x78\xed\x47\x34\x91\xd6\x95\x2a\xd4\x14\x2d\x21\xd4\x29\x3e\x50\x23\x34\x97\x7e\x66\xbb\x32\xfa\x41\xb4\x88\x69\x7c\x95\x56\x01\x1e\xe2\x3b\xca\x7c\x76\x4d\x9d\x10\xef\xec\xa0\x86\x05\x22\x84\x57\xa3\xcd\x9f\xe6\x59\x06\xeb\x28\x1a\xf6\xdf\xff\x07\xad\x70\xb2\x76\xfa\x26\xe9\x59\xa4\xd4\x2c\x44\x89\x21\x45\x3f\xef\x63\x4c\x28\x84\x69\xc0\xdd\xe0\x59\xa0\x09\x88\xc1\xb9\x8c\xa8\x84\xa5\xc1\xe9\xcc\xf1\xae\xbb\xbb\xc5\xda\x77\x1d\x2f\x47\x44\x45\xe8\x89\x71\xf2\x5c\xa1\xf4\x3c\xf8\x91\x79\xea\x1b\xcf\x2e\x81\xb4\xec\x50\x62\x4d\x5f\x2e\x41\xc3\x6a\x78\xc2\xf7\x49\xfa\x5e\xbe\xf6\x39\x4c\x91\x19\x97\x30\xde\x81\xc1\x2e\x91\xea\xc2\x5e\x52\x38\xa7\x15\x43\x07\x11\x82\x68\xe6\xab\x47\xa1\x4d\xf7\x6f\xa2\xc0\xfa\xbe\x30\x71\xb0\x1c\x38\xd0\x5c\x2e\xe3\xc4\x66\x86\x8d\x16\x1a\xde\x9c\x8e\x45\x30\x84\xc8\x2c\x7b\x6f\x92\x2e\xdb\x78\xba\x5a\x25\x18\x44\x10\x64\x30\xab\xdf\x51\x8d\x47\x40\xb8\xa5\x4f\x1d\xe6\xc9\xaf\xfe\xea\xaf\x36\x42\x0f\xee\x36\x4d\x0d\xbe\x56\xe7\x48\x9a\xf5\x4c\xe2\x0e\x55\x43\x85\xe5\x80\x6a\xf1\x1f\x6a\xd0\xc7\x1f\xd6\x61\x96\xf6\x56\x57\x24\xd1\x81\xcf\x21\x0d\x7e\x4d\x63\x63\xae\xe9\x97\x78\xc1\x07\x9d\x5d\x3b\x4c\x73\x57\x98\x6c\x75\x4a\xe5\xea\x08\x2f\x44\x94\x25\x20\x73\x7e\xa2\x38\xa5\x7d\x3b\x70\xf9\xb0\xef\x95\x15\x11\xda\x72\xe7\x95\x6f\xc6\xcb\xdc\x87\x56\xe1\x91\x28\xb8\x94\xa0\xd2\xa3\x65\x17\x5c\xb2\x98\x66\x83\xd0\x21\xc0\x96\xb0\x89\x66\x30\x5f\xaf\x3d\xa3\x28\xe0\x79\x99\x65\x08\x11\xf0\x1c\xd8\x82\x99\xeb\xcd\x37\xbe\x2f\x36\x46\x56\x09\xc5\xff\x4b\xaa\x7b\x75\xc9\xbf\xf4\x65\xdb\x33\xa8\xc0\x8c\xad\x03\xbe\x99\xe0\x07\xcc\xcd\xed\x45\x67\x24\xef\x04\x0c\x3c\x36\x9b\xc3\x78\x1a\xbe\xa9\x53\x91\x1e\x9a\xce\x92\xe9\xc9\x22\x41\xab\xfc\x77\x95\xfd\xe1\xef\x86\x44\xbf\x30\x85\x8d\x51\x4b\xf7\x3a\xbf\x0b\x33\x72\x5d\x97\x30\xfe\x3f\x7d\xa4\x46\x70\xab\x6d\xf2\x25\x5b\xb4\x49\x3d\x55\xbf\x32\x65\xe3\x39\xc6\x65\x6c\xc7\x76\xf0\xb0\x8e\x49\xab\x19\xce\xf2\x30\x48\xe9\xb4\xbe\x33\xe7\x5a\xd4\x5d\x44\xb9\xe5\x02\x8e\x4c\x0e\xa2\xa3\x20\x84\xbd\x89\xb6\x31\x31\xc7\xa2\xed\xdf\x47\xda\xa1\xee\xbb\xbd\x15\x8e\x9d\x45\x4b\x9d\x97\x30\xfa\xac\x28\x2a\xa8\x90\x9a\x6e\xcd\x62\xe6\x6c\x02\xe4\x5a\x5d\x96\xf1\xb4\x02\x6e\x76\xec\xb0\x20\x6e\xd4\x54\x10\x24\x82\x30\x2f\xc2\xdb\xa3\x1a\x20\x70\x4f\xe5\x0d\x69\xbc\x3a\x18\x3a\x83\xda\xba\x26\x7c\x88\x60\x49\x18\xcf\xcc\x75\xfa\x26\xeb\x6e\xab\xc6\x50\x68\x0b\x0d\xef\xac\x7c\x06\x5b\xbe\x44\xd0\xb4\x6c\x7d\x4b\xb0\xfa\xe3\x48\x66\xb6\xd2\x01\x2f\x46\x66\xd5\x4f\xc3\x20\x9e\x9e\xa8\x77\xce\xee\x6b\x66\x2e\xe5\x2d\x47\x44\x3c\xe8\x2f\x89\xba\x47\x18\xdc\xd8\x14\x36\xdb\x12\x04\x8c\x4e\x8c\xc9\x21\x2a\xc2\x3e\xaa\x78\x5e\xe4\xa9\x7a\x01\x28\x66\xfd\x85\xf2\x95\x58\xb1\xae\xd7\x2f\xc0\x53\x11\x4e\x14\xaa\xf6\xde\xe9\xd9\x97\x9b\x26\xdd\xc0\x67\xf7\x11\xbf\x38\x1f\x83\x4e\x60\x70\x04\x47\xf1\x89\xb1\x56\x62\x56\x6c\x0f\x3d\xc3\xb3\x5a\xad\x98\xb5\x06\x44\x63\x3b\x14\xbb\xff\x16\x7b\x28\x76\xf7\x57\x23\x25\x91\x7a\x3f\xd2\xf5\x53\xc6\xb8\x48\x0b\xb3\xa6\xb5\x5e\x98\x78\x69\x0b\x12\x7b\xcd\x3d\x43\x88\x0e\x03\x05\x6c\xb2\x1f\xe8\x94\x0c\x07\x0d\xe2\xc5\xc7\x5a\x1b\xdf\xdc\xce\x66\x3f\x1d\x72\x25\xc9\x4f\x29\xef\x7d\xc7\x24\x50\x9c\x8e\x77\xa3\x50\xa9\x1d\x0c\xca\x42\x52\x1b\x26\x04\x69\xa9\xf5\xcb\x2a\x97\x2f\x87\x2b\x44\x02\xda\xb3\x87\x5f\xc9\x15\xda\x39\xf8\x7a\x02\x40\x43\x2a\xe1\x79\x10\xb6\xc3\x24\x3d\xa5\x4a\xd7\xa7\x7c\x5f\xb1\x48\xed\x7f\x84\xcd\x26\xff\xea\xcb\xa5\x3b\x34\xa5\x0a\x47\xc7\x10\x66\x68\x15\x7a\x91\x2a\xfd\xa4\x22\xb6\x26\x10\x4d\x4d\x13\x13\x3f\xdc\x50\xdc\xec\x86\x72\xb3\x50\x66\x20\x54\x88\x50\xe9\xf4\x5e\xff\x01\x9a\x24\x8c\xb5\x88\x94\xb4\xcb\x7b\xe8\x65\x60\x49\xde\x47\x4c\xc5\x7f\x00\xb3\x04\x6b\xe2\x8a\x76\xff\x2d\xdb\xb9\xfd\x72\x69\x93\x02\xbc\x0e\x0e\x76\x55\x46\xb1\x9d\xc2\x4c\xc6\x30\x29\xb1\xc4\x0f\x6b\xc4\x33\x56\x5c\x52\x30\x0b\x01\x2b\xee\xa4\xc2\xec\x9c\x54\x06\x4a\x2b\x7d\x6b\x63\xcc\x11\x44\xa0\xbf\x31\xda\x78\xf2\xc9\x7c\x99\x44\xb6\xcd\x37\x17\xcb\xac\xe8\x0b\xdd\x4d\x68\x56\xa1\x7e\x7d\x5a\x81\x2d\x07\xa6\x90\x52\x23\xa6\xf5\x4d\x65\xc4\x7a\x73\x14\xde\x0f\xd1\xed\x86\x19\x0b\x49\xd2\xd8\x31\xb1\x90\x8e\x04\x21\x19\xd6\x68\x3d\x99\x4e\xe1\x96\x03\x8d\x15\x45\x8f\x57\x55\x73\xef\x55\xdd\x2c\xb4\xd5\x71\x0c\x2f\x69\xcf\xb3\xf2\x41\xf1\xe1\x48\x05\xc5\x1a\x66\xfa\xc7\x58\x37\xa2\xc0\xae\xec\xe8\x7a\x69\xe2\x0e\x49\xe3\x04\x4d\x9b\xdf\x89\x54\x37\xe7\x77\x54\xd5\x9f\x8a\xd0\xf9\x96\xea\xf7\x88\x18\x69\x35\xc9\x70\x0a\xfd\xd6\x08\x3b\x81\x07\x58\xce\x7b\x17\xab\xf3\xca\xc6\xe1\x6f\x6a\xa4\x04\xe7\x9b\x43\x33\xe4\x20\x19\x3f\x99\xc5\x0b\xf9\x46\x15\xb9\x7a\x69\xda\x95\xa3\x6d\xcf\x1e\x2f\x21\x32\x15\x0c\x50\xce\x4f\x24\x91\xfb\x67\x9a\xb1\xcd\xf3\x2d\xa1\x83\xc4\xb6\x2f\x42\xd9\x0e\xa4\x36\x66\x24\x79\xb5\x86\x5d\xbb\x78\xcc\x0e\x2b\xc0\x7b\x27\xed\x2c\x15\xc6\x71\x51\x1d\x05\x86\x9b\x4a\x36\xe4\xe6\x58\xe5\xe2\xa0\x8d\x35\xa3\x08\x6f\x45\xe8\x45\x81\x05\x92\xd8\xb2\xc8\x4c\xec\x0e\xc9\x0e\x22\x96\x30\xba\xc6\x1f\x36\xb1\xb6\xe9\x2c\x59\xc6\xe4\xf9\x12\x98\x0f\x27\x27\x8b\x3f\xd5\xb4\x2f\x09\x36\xec\x0d\x7b\x98\xb5\xc5\x99\x92\x82\x51\xfd\x50\x15\x0b\x72\x77\xb0\xe8\xab\x4e\xd9\xb7\x14\xf0\xe4\x5b\xd1\x86\xee\xe8\x81\x03\xcd\x2f\xce\x52\xc1\x1d\x29\xd3\x0d\x85\x81\xb9\xa4\xd2\x08\x2e\x5a\xe1\xcc\x38\x3e\x11\x75\x2e\xcc\x54\x31\x70\x91\x95\x9d\xa2\xf4\x51\x27\x3e\xf9\x31\xe2\x1e\xbe\x51\xf3\x38\x2b\xf3\xdc\x99\x04\x70\x6f\xb4\x66\xbf\x36\x26\xee\x10\x30\x86\x3f\xc5\x2b\x00\xc0\xe1\xe8\x86\x78\x1e\x76\x7d\x52\x42\x53\x6d\xf4\x4b\x75\x42\x7d\x79\x91\xb9\xce\x92\x45\xb7\x09\xdf\x0a\x1d\x70\xbe\xf6\x3a\x3a\xbd\xcc\x1c\xf2\x45\x46\x36\x5a\x1c\x85\xf2\xd8\x75\x05\xd8\x6f\xbb\x6a\x85\x6b\xfb\x9c\x4b\x63\xc3\xf8\xb4\x2e\xf8\xe6\xb6\x53\x56\x69\xc5\x96\x86\x57\x00\xb9\x4a\x85\x16\x71\x11\x51\x06\x7d\xa8\xba\x60\x77\xff\x1b\x2c\x00\xa9\xfb\xd5\x9c\x79\x9d\x34\x71\x79\x31\xe6\xf8\xcd\x95\x1e\xbe\x09\xf9\x56\x39\x8c\x5d\x27\x6c\x60\x0c\xed\xd1\xac\x94\x8b\x13\x8b\x7e\xff\xcc\x8b\xcd\x74\x25\x91\xcf\x08\xc4\x30\x4c\xc2\xda\xf1\x06\x3d\x8c\x0f\x62\x60\x2d\x61\x99\xcb\xd7\xad\x90\x9e\x1e\x14\xb6\x0b\xe3\x23\x15\xb5\xe1\x84\x42\x2e\x77\x62\x6b\x12\xd2\xc0\xf4\x39\x11\x96\x82\x80\x2f\x36\x26\x12\xbb\x76\xe1\x1b\x3a\xce\x32\xb0\x0c\x91\xff\x95\x28\xd4\x8c\xaf\x28\x5c\x61\x46\x25\x4e\xe5\x3d\xcc\x93\x9f\x6f\xa2\x1d\xba\x55\xd7\xeb\xd9\xcc\x76\x21\x9c\xe8\x2b\x00\x9e\x43\xfc\xf1\x48\xc9\x4a\x1d\x8b\x02\xf3\x10\x8e\x2f\x62\x9b\x14\x12\x9a\x93\xea\xaf\x33\x90\xca\xc4\x8f\xd1\xb3\x78\x91\xd7\xea\x25\x79\xbb\x91\xc0\xaa\x40\x01\x9a\x41\xc5\xe8\xd5\x32\x2d\x8d\x36\xc5\x31\x45\x2f\x51\xfe\x08\xda\x13\xec\xff\x8f\xda\x23\x02\x41\x2c\xd9\xad\x94\x56\xa0\xc8\x00\xae\x20\xea\xdd\x18\x3d\xc4\xa7\xdb\xd6\x94\xe0\xb7\x69\xc7\x76\x4b\xf5\x8d\x6a\xcf\xfa\x02\xf7\x57\x5e\xd6\x96\xce\x2c\xad\xce\x8a\x0b\xf4\xe7\x30\xbb\x5f\xaf\xc1\x06\xce\x8a\x73\xa9\xcc\x3f\x9c\x4d\xef\xd3\x60\xf3\xf5\xe8\xb1\xf0\x66\xd2\x95\x64\x5a\xd9\xef\x9e\xa2\x27\x47\x1a\xb3\xb5\x15\xa2\x59\xc8\xf8\xc8\x7f\x58\xab\x81\xe1\x0f\xcd\xc1\x52\x23\x20\x1a\x2d\x55\x45\x6f\xac\xd5\x68\xc5\x56\x69\x13\xd5\x73\xf6\xcf\xac\x53\x4f\x75\xfd\x78\xad\x7d\x0c\x75\x62\x38\x00\xc6\x9b\xba\x87\x63\x9c\x6f\x26\xc2\xad\x6a\x22\xc3\xf7\x59\x1b\x20\x2a\xff\xd0\x1a\xfd\x73\x33\x1c\xc6\xa6\xec\xfa\x9d\x0c\xdb\xdc\x11\x3a\xa3\xf8\x5a\x0d\x5b\xec\x16\x0b\xc5\xbf\xbd\xa4\x0c\x0d\x2e\x8d\xb4\x28\x65\xee\x7a\x09\xc5\x4d\x94\x85\x89\x1c\x30\x0d\xb8\x58\xb6\x56\x7b\x5a\x9d\x68\x47\xe8\x7a\xdf\x54\x89\x69\x99\x2c\xba\x83\xd5\xbb\x0d\xcd\x72\xf0\xa7\x05\xd5\x30\x29\x94\x37\xdb\xec\xa5\xca\x4a\x1e\x0d\x25\xbe\xae\x93\x9c\xce\xd3\x92\xe5\xb8\xa5\xe4\xa7\xd0\x26\x27\x6b\xd5\x48\x33\x9b\x0f\x49\x52\xdd\x2b\xc1\xbe\x4e\xbf\x85\xaf\xa3\x30\x72\x89\x4b\x2c\x4c\xe7\x91\x3f\xbd\x89\xc1\xf0\x32\x5f\xbe\xed\xfa\x01\x0d\x80\x17\xb6\xf3\x7a\x32\x27\x88\x6a\x80\xf5\xf7\xea\x28\x08\x32\xdd\x56\x52\xde\x1f\xd5\x95\x0d\xf2\xc2\x0c\x86\xbc\x73\x72\x3f\x8f\x3e\x22\xbd\xbd\x00\x9f\xe8\xa4\xd4\x9b\xcc\x1a\x4a\xc9\xf0\x12\x3d\x8e\x40\x9b\x27\xbb\x9f\xb3\xc4\x77\xcb\x51\x05\xf3\xef\x45\x09\xbe\x84\x59\x91\xaf\x90\x01\x55\x6c\x12\xda\x0f\x67\x7d\xbb\x80\x86\x05\xa7\xfa\x35\x94\x61\xfc\x71\xbf\x30\x23\x71\x29\x0d\x11\xa2\xb8\x6b\x4a\xb1\xef\x64\xad\x15\x79\x95\xc4\x10\xbe\x98\x37\x03\x71\x5b\x08\x48\x9c\x77\x15\x4c\x27\xef\xd8\x84\x45\xb5\xb8\x70\xaa\xdc\x8b\x2f\x2b\x1f\x87\xf7\xc6\xc4\xa8\x97\xca\xe1\x94\xe2\xa2\x41\x25\x07\xdb\x37\x37\x94\xb0\xf1\xde\xf7\x66\x5f\x79\xd9\x26\x35\xa3\xa2\xb0\x92\xd9\x8a\x5e\xa4\x8a\xcf\x8f\x45\xcd\x07\xc0\xc1\x17\x33\x93\x2c\x55\xa9\xce\x14\x9d\xf5\x58\x31\x10\x49\x43\x8d\xe7\x86\x06\x93\x6d\x6a\x4d\xc0\xf1\x9a\xbb\xe7\x9e\xa9\xa6\x91\x77\x9d\xf4\xa6\x2d\xd7\xd0\x28\xf3\x4e\xc3\x0b\x33\xfe\x66\x8c\xc0\x81\xac\x43\x62\x9c\x80\xc4\xf8\x90\x0e\x11\x55\x62\x99\xe5\x04\x86\xc5\x0d\xc7\x38\x15\x38\x21\x88\x39\x2f\x34\x73\xd6\x32\xc5\xe2\xb8\x1e\x05\x29\xc9\xb7\x54\x8c\xf3\xe8\x5a\xa8\x10\xbd\x15\x29\x9b\xc3\xab\x0a\x8d\xf5\x6d\x55\xb2\x7d\x13\xb5\x7f\x9c\x86\xaf\xa3\x65\x87\x2a\xd4\x65\xb5\x36\xbb\x66\x90\x34\x34\x2f\x47\xe7\xb7\x21\xb0\x30\x49\x52\x9a\x38\x5e\xd5\xa9\x5a\xa3\xa5\x33\x53\xd5\xf2\x80\x27\x97\x74\xec\x03\x58\xf0\x6e\x9d\xe4\x59\xbb\xcc\xac\x29\x3b\x99\xe9\xe0\x54\x20\x81\xdb\x75\x4d\x5b\xcc\x6c\xaf\x8c\x4d\x16\xd3\x7f\x0f\x2a\x21\xd5\x60\x8a\x4a\xc8\x0e\xd5\xc5\x37\x6d\x5b\xb8\x0e\x88\x9c\x80\x7a\x8d\xb8\x10\xc4\x77\x5a\x20\xc4\x66\x66\xe0\x3a\xd3\x2a\x88\x38\x89\x91\xf2\x25\x88\x39\xe9\xb8\x1c\xa5\xdd\x00\xe7\xcf\x6b\xa3\xc0\xde\xdd\xfb\x6b\xb4\x7a\x7c\x5d\xde\x27\x47\x67\xb4\x57\xc1\xbd\x3a\x89\x06\x76\x4f\xa7\xcf\x2b\xe2\xee\x5e\x8e\x33\x8f\x62\x77\x10\x3a\x85\x08\xba\xb9\x65\x71\x63\xf3\x53\x2e\x94\x33\x2e\xf8\x6e\x34\x29\x02\x6e\x57\xbf\xec\xa2\x96\x32\x3f\x1f\x05\x6d\xfe\x1f\x07\xd9\x98\x53\xcf\xd2\x4b\xa5\x95\xfc\x2b\xff\x78\x8d\x86\x02\x6f\xf8\xcd\x91\xda\xc1\xd7\x69\x62\xc2\x5d\xea\xb1\xd6\x93\x0a\xa4\x37\x00\x37\x4b\x4b\x14\x61\x40\xb1\xf5\x50\x27\x72\xfd\x2d\x0f\x9e\xf8\x7f\x51\x2d\xf0\x14\xda\xbe\x5d\xd9\x12\x04\xf0\xff\x04\x33\x40\x2c\x96\x35\x8e\x7f\x14\x80\x7c\xc7\xe9\x7d\x88\x81\xd3\xa4\xd2\xed\x7c\x73\xb1\x8a\x1a\xd8\x0b\x69\x4e\x00\x0b\xf7\x30\x54\x18\xf9\xcd\x4c\x9c\x12\x25\x82\x8d\xc2\x19\xb3\xcd\x03\x07\x58\xb6\xd9\x47\x98\x63\x01\xf2\xfc\xf3\x7b\x43\x13\xdb\x1b\x27\x9d\xd4\xea\x85\x6f\xaa\x0a\x2e\x75\xb4\xb1\xd0\xc4\x77\x3e\x78\xe5\x5f\xd4\x95\xda\x53\xa8\xa5\xe2\xa7\xde\xc4\xb7\x0a\x05\x2a\xe4\x0e\xab\x36\x7b\x98\x36\x38\xec\xcf\x6c\xbe\xab\xeb\x6d\x40\x66\xf0\xdc\xc3\xcd\xfd\x91\x36\x11\x84\xb1\x10\xba\x11\x3f\xc2\x36\x08\xae\xf1\x11\x4d\xee\x42\x13\x13\xb8\xb5\xc7\xa8\x17\x2d\x15\xc5\x1d\x2a\x04\xce\xec\x62\x19\xb3\x53\x12\xce\xba\x3b\xa3\x09\x6d\x01\x94\xf0\xa6\xc7\x9d\x5e\xec\xc1\x47\xf4\x9b\x78\x1d\x10\x31\x2f\xca\xbd\x7b\x4e\xdb\xf5\x8a\x94\xe7\x5f\xe2\x09\x11\x8c\x33\xfa\x5c\x6c\x1b\x43\xed\x6b\x1d\xbb\xbe\x88\x7a\x2b\x6b\x69\x56\xd1\x14\x6f\x5a\x0d\xe8\x56\xea\x36\x26\xb3\x5b\xab\x97\x84\x93\xff\x4d\x15\x9d\xbd\x19\x29\x67\xf4\xb3\x7a\x2d\xdc\x40\x3a\xcb\x37\x48\x3e\x04\xa0\x58\x93\xa7\x51\x35\x71\xd1\x66\x96\x11\xbc\x48\x5c\x61\x5e\x3a\xf6\xbb\x45\xc5\x78\xa2\x89\x35\xdb\x4c\xec\x4a\x27\x1d\x58\x91\x12\x01\x8e\xea\x9c\x56\xc0\x3c\xa7\xaa\x25\x9d\x7e\x9a\x5b\x42\x89\x21\x5e\xfa\x56\x68\x7a\xff\xc2\x79\x0c\x3e\xdf\xa8\x26\xf5\xb7\x22\xcf\x56\x70\xbd\x7e\x11\x54\x2a\x70\x1e\x1c\x56\x3a\x44\x87\xbd\x25\x4c\x66\xbb\x76\x30\x2c\xc4\x24\x80\xe5\x85\xa3\xd0\x5d\x3c\xa6\xf0\xd4\x45\x56\xe6\x12\x44\x08\x01\xfe\x95\x48\x19\x77\xbc\xa2\xbb\x0a\x54\x49\xa1\x2a\x0e\xe2\x9b\x4d\x2d\x9d\x59\x8d\x42\xa2\x7c\x8d\xa2\x72\x06\x07\xd7\x39\xce\x75\x4c\x1c\x8b\x62\x17\x26\xfc\xf4\x9a\xdf\x38\xff\x1d\x17\x28\xb1\xb6\x1f\x6d\x4d\x12\x66\xf6\x36\xe3\x14\x32\x11\x08\x76\x8f\x62\xd6\x33\x54\x50\xe9\x16\x4c\x03\xcb\xce\xa8\xca\x1a\x9d\xc1\x9f\x7f\xee\xd7\xe7\x9f\xfb\xdc\x1c\x19\x2c\x21\x82\xf8\xb6\x32\xd7\xe3\x98\x12\xf3\xba\x41\xcb\x50\x94\x12\x42\x93\x60\xba\xa5\xa4\x66\x6f\x61\x89\x60\xe1\xdf\x98\x08\x74\xe7\x9f\xdf\xdb\x1c\x66\xb6\x30\x07\xe9\xe5\x20\x18\x02\xde\x82\xaf\x27\x28\x74\xbb\xe7\x9a\x5d\x3b\x74\x1d\xbf\xb1\x63\xf9\xbd\xad\xfa\x36\x6f\x7b\x60\xfa\x97\x4b\x97\xc7\x1e\xda\x81\xa7\x00\xfb\x48\x94\x79\xc3\x3c\xb8\xe4\x4f\x0e\xaa\xb1\xae\xa4\xd9\x52\x23\x74\x8c\xde\xd4\x5c\xcb\x37\x27\x85\x49\x76\x11\xc8\xaf\xcc\x61\x1b\x0b\x08\xc1\x25\xcc\x1c\xbe\x51\x00\xff\xa4\x1c\xb4\x6d\x96\xa3\xb5\x81\x11\xbc\x49\xf3\x5c\xa4\x49\x02\x48\x30\x28\x0f\xad\xb8\x58\x5c\x34\x10\x42\x9f\x56\xe1\xf4\x69\x35\x2f\x87\x26\xcf\x2d\x72\x67\x9f\x6c\x04\x2b\x14\xed\xdd\x96\x26\xb9\x4d\x8a\xe9\xe0\x51\x7c\x4a\xab\x85\x9e\xa2\xc6\xc6\x3a\x95\xe5\xd7\x4f\x4f\x00\x29\xc6\xa2\xe7\xd8\xb1\x36\x34\x0e\x6e\x88\xf5\xf3\xf5\x44\xcf\xf1\x85\xf9\x66\x6e\x56\xa0\xfa\xe2\x39\x75\x81\x29\x32\xc9\xa9\xab\x62\x39\xd3\x59\x2a\x87\xf4\xa3\xa4\x21\xa3\x89\xb0\x75\x3c\x87\xbc\x5f\x26\xf8\x12\x3c\xc8\x09\xf5\x50\x27\xea\x5a\xe5\x69\x52\x98\xcc\xa5\x0a\xbe\x7e\x46\x13\x03\xcf\x28\x4c\x47\xee\x0c\x9d\xe9\x48\x28\x3f\x46\x39\x03\x67\xc7\x65\xa2\xa7\x48\xe5\x66\xe3\xd7\xbc\x30\xbb\xaf\xd9\x31\x25\xf9\x9c\xf8\x59\xbe\xc1\x3c\x75\xe3\x8f\xd9\xf7\x3c\xe9\x81\x20\x1f\x66\x1c\x52\xa4\x31\x49\xe1\x80\x1f\xc2\xde\xae\xfa\xd1\x28\x30\xbd\x37\x0a\xc0\xc9\xf7\x22\x5d\x9a\x4f\x0a\x97\x94\x16\xe4\x43\x96\x1e\xd7\xca\xaf\xe3\x26\x43\xfb\xd9\x91\xf2\x7f\xb8\xaf\xc4\x65\x76\xcd\x6e\xf1\xd0\xf5\xf9\xbf\xd7\x0a\x24\xd8\x75\x6d\xdc\xb0\x9d\xe1\x5d\x72\x60\x6b\xd4\x4e\xf0\x7e\x71\x79\x95\x23\x37\x02\x85\x1b\xd9\x34\x5f\xab\x49\x3b\x30\x45\xd0\x6e\xf3\x7e\x6b\xd5\xdf\x14\xbf\xb5\x8d\xfb\x23\xb9\x86\xa6\xc5\x94\x02\x77\x63\x73\x46\x39\xe4\x72\x14\x8c\x69\xd6\x46\x3e\xa7\xb4\x03\x47\x62\x40\x9d\x22\xcd\xb6\x84\xdd\x8d\x1b\x22\xd8\x0f\xdf\x40\xbc\x82\x80\x1e\xb4\x79\x04\x32\xdb\x5a\x01\x75\x78\x56\xbd\x9e\x6e\xba\x1a\x5b\xd4\x01\x14\x04\xf7\x45\xed\x9f\xcd\xfd\x23\x9b\xd9\xc7\xaa\xc0\x08\xa3\xfe\x21\xd6\xa5\x14\x50\x1a\x5a\xc2\x63\xf7\x9c\x8f\x53\x68\x18\x7c\x12\xba\x20\x56\x12\x9f\x6a\x85\x4e\xe9\x27\xd7\xf4\x54\xc3\x7e\xee\xab\x25\x9f\xfb\xa7\xcc\x98\xff\x4f\xa0\xfb\xa0\xce\xfe\xf9\x80\x71\xf7\xbe\x39\x37\x94\xec\xe8\x30\xcd\x8a\xc5\x34\x76\xe9\xb4\x06\x28\xa0\x1a\x83\xc0\x9e\xa9\x11\x9a\xc0\xcb\xff\x41\xb1\xe1\xec\x41\x43\xba\x66\x74\x5c\x7b\x74\xf4\x35\x8d\x4f\xbf\x56\xe3\x37\xb8\xd0\x6c\xdb\x9e\x4b\x3c\xd9\x01\x15\x02\x96\x5b\xe5\x1b\xc5\xa0\x5c\xca\xec\x20\x76\xdc\x03\xc1\x69\xc6\x55\x78\xbe\x51\x92\xb2\x20\x2b\x88\x36\xa1\x36\x69\x1a\xae\x7a\x79\x71\x1c\xed\x1f\x8e\x42\x62\xf8\xe1\x44\x42\xba\x7f\x66\xb6\xe9\xb2\xcc\x74\x9d\x37\xcc\x54\xe9\xc6\x9c\x07\xe5\x3d\xa1\x95\x00\x00\x9d\x5b\x98\xe1\xda\xc3\x1f\x28\x0b\xb5\x3f\x18\x3d\xa8\x9e\x31\xcc\xdc\xc0\x66\xae\x63\x38\x97\x13\x62\x18\x0d\xa2\x30\xc3\x24\xf7\xc9\xdc\xc0\x60\xc3\x60\x79\xa4\x91\x92\xd4\x3e\x17\x3d\x1a\xb8\x66\x39\xce\x14\xd4\xa7\xd9\x1f\x84\x6f\x54\xc7\x79\xb1\x4c\xba\xf9\x13\xd5\x24\x61\xe3\x11\x44\xbc\x7e\x27\xf1\xa5\x22\x5e\x49\xc2\xf0\x6d\x78\xee\xe3\x75\xdd\x5d\xbf\x46\xbb\x29\x33\xb1\x34\xcf\xf1\x26\x55\x46\x98\x11\x48\xf9\x33\x22\xbf\xab\xa3\xa0\xc8\xcf\x3c\x2e\x46\xaa\x2a\xa5\x41\x66\x82\x33\x1f\x84\xca\x22\x22\xf5\x4e\x3f\x8b\x42\xb8\x99\x27\xd6\x1e\x0f\x41\x64\xea\x6b\xb9\x58\xe2\xf0\xfa\xe3\x6b\x0f\x1b\xcb\x6d\x5a\xc6\x53\x13\x0d\x3c\xbc\xb1\x5b\x5c\x2c\x40\x51\xe9\xfd\x8d\xd9\xde\x67\xaa\x48\x0e\x31\x81\x70\x02\xab\xdf\xce\x0d\x6b\x65\x15\x79\x53\xb5\xdd\x4d\x3c\x48\xf3\xe2\xd1\x50\xb8\x5c\xa7\xb1\xf0\x3b\xc5\xc2\x7c\x70\x89\x09\x46\x9c\x17\x15\xd3\xeb\x8c\x12\x7b\xfa\x5b\x8c\xb0\x97\xd7\xaa\xd2\x4b\x11\x9c\xa1\x75\x8d\xe6\x02\x6f\xb8\xfc\x19\xa4\x17\x12\xe9\xd2\xf3\xcb\xe6\x26\x7e\xf5\x2e\xe9\xd9\xc4\xa5\x65\xce\x01\x4c\x9d\x2d\x9b\x72\x90\xe8\x64\x96\x29\x98\xfc\x56\x22\xc5\xe5\x39\xac\x4c\x7d\xae\xd1\x8f\x15\x18\x3c\x3d\xbb\xbc\xc7\x30\x44\xed\x32\x73\x8c\xf8\x03\xac\x8c\xa5\xf9\xf8\xe6\x81\x81\xcd\xc0\x9a\xa4\x70\x03\xc8\xf4\xa3\x1c\x04\x75\x07\x9c\xf3\xdc\x4b\x47\x4a\xb4\x69\x2d\xe4\x36\x5d\x53\x70\xd9\x53\x75\x47\x5f\xf4\x0a\x91\xca\xf4\xb7\x3e\x0a\xc9\x5c\x1a\x73\xfc\x56\xb7\x01\xd7\x99\xac\x75\xed\x20\xed\x64\xa6\x10\x0c\xa8\x28\x63\x28\xad\x5c\x16\x56\x13\x25\x1b\x6f\x29\x61\x5c\x9c\xa5\x29\xd8\xe4\x7e\x2d\xaa\xa3\x3f\xc4\x3c\x5f\xda\xfb\xeb\x53\xb4\x96\xa5\x50\x55\xfd\x33\x4f\x52\xac\xfe\x38\xb2\x8f\xbb\xaa\xb3\x91\x17\x16\xe2\x64\x78\x77\x8f\x91\x75\x06\x12\xff\xff\x9d\x92\x22\xd4\xa6\xde\x50\x90\xbb\x87\x5b\xa1\xc5\x4b\xc8\xd6\xee\x56\x65\x5a\x7a\x8e\xce\x1f\xff\x29\x4f\x9a\xb9\x46\x7f\xc1\xd7\x36\xbd\xeb\xd6\x11\x02\x5e\x08\x61\xd7\xb3\xed\xad\x29\x2c\x1c\xaa\x51\x70\x3c\xa2\xab\xe5\xb7\x94\xed\xdc\x79\x05\x59\x4a\x38\xdd\xc4\x21\xc1\x93\x92\x6f\x54\x12\x09\x10\xab\xed\x4e\x87\x86\x30\xfe\x22\x5f\x8f\x42\x46\xfb\x0a\x3d\x29\x5f\x4f\xc4\x7d\x55\x76\xb4\x28\x8d\x27\x2f\x6e\x54\x7d\xa9\x54\x51\x75\x0d\x23\x2f\x07\x4a\x02\xfb\xbc\x12\xc0\x7a\x8f\x46\x1a\xd1\xd8\x0d\xd5\x39\x30\x9d\x4e\x99\x0b\xf5\xdc\xa7\xfa\xbc\x84\xf9\x46\x6b\x09\x0e\xa6\x94\x64\x14\x2b\x03\x21\xe0\xdb\xca\x75\x2c\xe4\xec\x37\xc3\x38\xa7\x79\xe1\x96\x54\x6e\x77\x4e\x57\xbd\x27\xe9\xc9\xbb\xe7\x9a\xb1\x35\x79\xf1\x50\xc0\x0f\x6e\x5b\x0b\xc3\x78\x06\x75\x67\x6c\x42\xff\xcb\x28\x48\xdb\xfe\x0c\x86\x73\x62\xcd\x48\xf5\x03\xaa\x94\xfe\xd9\xa7\xb0\xd3\x7b\xa2\xfc\x58\x01\x96\x04\xbf\xc3\xc2\x4d\xe3\x5c\x80\xc4\xd8\x68\xb9\x22\xc6\x37\x4a\x0c\x82\xcc\x8e\x62\x40\x9a\xd7\x2f\xe3\x0f\x45\xc1\x10\x8c\xf4\x5e\x11\xc4\x00\xea\x83\x49\xf6\xb7\x80\xfa\xf0\x4d\x14\x94\x84\x86\xfd\xb4\x48\x7b\x99\x19\xf6\x99\x64\x87\xbc\xff\x4d\xbc\x6c\xbe\xf1\x4b\xb6\x6f\xb2\xee\x8a\xc9\x40\x9b\x66\x0e\x3d\xcd\x2f\x81\x4e\xd1\x43\x0b\xd0\xd1\x8b\xb5\xdb\xd8\xd9\x45\x6c\x2b\x80\xdd\xbe\x8d\xed\x81\x6f\x74\x95\xd0\x75\x32\x81\x84\x0a\x28\x97\x9e\x44\xc0\xb7\x13\x42\x38\x0b\xf3\xcd\x7c\x68\x13\x8e\xb1\x15\x77\x51\x84\x2e\x5e\x1b\x29\x61\x9f\xeb\xd1\x53\x8a\xeb\x3e\x34\x59\x31\xb0\x49\xf1\x38\x3d\x8d\xc0\xa5\xa8\x21\x29\x4d\x64\x7a\x6b\x40\x82\x02\x24\x26\x52\x3d\x2a\xfc\x86\x6b\x20\x57\xc4\xb5\x38\xd5\x76\x65\x90\xfe\x11\x97\x1e\xf1\xcf\x6e\xd0\x1a\xc1\xf6\xc8\x25\x13\x64\xd3\xd0\xa3\xf6\x7d\xa0\x05\xb1\x17\xfb\x3f\xa9\x59\x88\x32\xe8\xe5\x07\xda\x1a\x98\x0e\x14\xa9\x95\x9e\xbb\x52\x88\xbc\xa4\xa6\x51\x67\xb5\x13\xbb\xa4\x37\xad\x60\xf3\xfc\xce\xb9\x26\x18\x85\x07\x3c\xa9\x9a\x99\x6f\x8e\xab\xbf\x95\x83\xc7\x48\x94\xda\xbb\x3f\x07\xf9\x5e\x56\x5a\x42\x09\xe2\x43\x84\x43\xe2\x55\x4c\x13\x1d\xa5\xb9\x47\x49\x65\x1e\xfb\xef\xbd\x28\xb0\x1b\xa1\x01\xe5\xc1\x9f\x5e\x30\x94\x81\x98\x28\xa8\xfc\x58\xd5\xfb\xff\x92\x07\x18\x45\xac\x1b\xaa\x89\x1a\x9c\x31\xf3\x38\x5d\xb1\x19\x98\x4a\x4c\x67\x52\x34\x42\xb6\xa8\xf6\x24\x93\xea\x7b\x98\x2f\xd3\x0a\xf4\xad\x8b\x7e\x5e\xf7\xd3\xe1\x92\x4b\x38\x1f\x14\x8b\x25\xfa\xd1\xe2\x29\x55\x87\xa8\xc9\x5c\xbe\x44\x98\xf8\x75\x72\x15\x5e\xbf\x3c\x7a\x24\x4c\xff\xd5\xed\xd5\x7e\x29\xfc\x60\x85\x3f\xbd\xa4\xde\xc1\x49\x5d\x89\xff\x1e\xde\x1a\xca\x37\xb7\xe9\x88\xf2\x40\x81\x39\x61\xbc\x4e\x91\xc3\x36\x66\xd8\x71\xd5\x00\x73\x5d\x9b\x14\xc2\x44\x41\x69\x0d\xeb\x99\xaf\xc7\x0c\xc4\x57\x53\x9c\x41\x88\x21\xef\x51\xe8\xca\xd7\x13\xcb\x72\xdf\xf3\xcd\xae\xed\xb8\x2e\xd2\x6a\xc6\x2a\x2b\xe7\xc5\xab\x2a\xad\x66\x77\xfe\x29\x9f\xd0\xbf\x0c\xc5\x7f\xc0\x5a\x19\xd8\x0e\xe8\xdf\x29\xa5\x00\xcc\xfc\x1e\x8b\x9e\x98\x80\x5d\x02\xb0\x66\x12\x56\x5a\x1d\x6a\xed\xcc\x15\x2e\xef\x37\xb4\x1c\xbf\x42\x8a\x9c\xf3\x70\xe5\xae\xcd\x0b\xe7\xb1\x4f\x38\x9d\xdf\x56\x12\x14\x6f\x4f\x2c\xc2\x5d\xbb\x9a\x66\xe0\x8a\xd5\x65\x17\x57\x41\x14\x66\xa3\xb2\xea\x0e\x2a\xf1\x61\x0f\x1a\xa4\x49\x31\xac\xb6\xc7\x0c\x89\x90\x42\xd7\x07\x19\x9b\x9a\xaa\x42\x2f\x95\x3a\x04\x72\x3e\xd6\xa3\xe5\x1b\xe5\x6f\x2f\x26\xa5\xdd\x86\xa2\x3a\x1e\x57\x56\xc3\xc7\x55\xf8\x30\xb4\xb1\xe9\x5a\x53\xe2\x2f\x23\x25\xe2\x83\x88\x6f\xa2\xc7\x14\x12\xcf\x25\x7f\x9f\xfe\xa8\x08\xfa\x28\xa2\xfb\xb6\xb5\xc0\xb7\x78\x0d\xe1\x3f\x02\xa7\x2b\xda\xed\xf7\x5e\x54\xe5\xfd\x5e\xc5\xa4\x5a\x95\x98\xa3\x4c\xf2\x44\x80\xf3\x2a\x56\x22\x36\xde\x0f\xa0\x7c\x24\x65\x35\x3a\x94\x7d\x11\x61\xb7\xe4\xf5\x5b\xb8\xf0\xc3\xcd\x12\x25\x62\xb7\x4e\xa4\x7b\xc1\x13\xd3\xa1\xe8\xa3\xb5\x5d\xc2\xb9\x47\x19\x18\x1b\xc4\x5d\x84\xd0\xf8\x8e\x0b\xb4\xd3\x63\x02\xdc\xa3\x1d\x19\x3b\xf5\x95\xa8\xf1\xc2\x7c\x30\xeb\xdf\x3f\xe3\xd1\x60\x01\x16\xd5\x60\x7f\x20\xf1\x43\x52\x05\xda\xfb\x08\x01\xb1\xbf\xdc\xc6\x71\x20\x11\xdb\x06\xe7\x84\xfd\x33\xf3\xcd\xfd\x33\x5f\xa0\x54\xc6\xef\x0c\xbb\x03\x38\x6f\x63\x84\x5e\xed\x38\x9d\xcc\x0d\x87\xb1\x4c\x65\xad\xf0\xc5\xd7\xa3\x87\xfd\x7c\xf9\x87\xdb\xc2\xf9\x73\x06\x2f\x4e\x74\x6a\x03\x75\xee\x61\x44\x36\x5e\xb3\xd1\xe7\x9c\xb7\xa2\xc0\xe5\x9b\xa6\x8d\x1d\xfb\xcf\x57\x26\xaa\xd6\xfb\x67\x9a\xf9\x20\xf5\x52\x6e\x38\x0b\x50\x2d\xe6\x6b\xd5\xd0\xce\xad\xad\xfe\x25\xf5\xa2\x24\xb9\x0d\xe8\xfa\x47\xc6\x7b\x1f\x34\x59\x84\xd1\x4c\x7d\xd9\x48\xa9\xb8\x5e\xaa\x29\xe1\x90\xf0\x2a\x89\xd9\xf0\x10\xe1\x17\x43\xf9\x86\xaf\xd5\xd3\x90\xfd\xa7\xed\x4e\xe9\xf6\xfb\xb5\x48\xe9\x2d\x5d\xd7\xc1\xd3\xd4\xda\x3f\x7c\xc0\x61\x0d\x2d\x80\x82\xc8\x02\xaa\x74\xc4\x2a\xbe\x7c\xa3\x92\x20\xeb\x0a\x52\x2e\xc6\x04\x7a\x02\x11\x08\x96\x08\xf3\x28\xc4\x22\xaa\x7a\x85\x78\x09\xe0\x1a\xfb\xa0\x2b\x88\xd5\x83\x90\xcc\x5a\x10\x35\x5a\x30\xb3\xcd\x34\xb1\xd0\xad\x67\x6a\xa6\xaa\x5b\x02\xbe\x2a\x3e\x1f\x3b\x36\x7c\xf8\x33\xcd\x67\x1b\x8d\x67\x9f\xe5\x5a\xcb\x7d\xa4\xf2\x7c\xa3\x38\x97\x2e\x49\x97\x61\x15\x8d\xd7\xc8\x6a\xcf\x7c\xa3\xc0\xb6\x84\x27\xe0\xfc\x07\x9b\xc0\x59\xac\x49\xbe\x51\x61\xb4\x29\x97\x5d\x8c\xf4\x5d\xba\xe6\x9a\x5e\x74\x5a\x19\x45\xe3\x9c\x1b\xab\xb5\xf3\x3f\x1a\x3d\x24\xcf\xb8\x32\x1d\x82\x88\xbb\xda\x5b\x69\x5b\xab\x1a\x62\xfc\x87\x93\xb4\x27\x88\xd2\x64\x78\x16\x6a\x4e\x6c\xa5\x67\x41\x4e\xcc\x86\x19\x7c\x33\xd2\x18\xe6\x86\x27\x84\xff\xde\x38\x9e\x39\x84\x1d\xbf\xa7\xfe\xf4\x60\x55\x1c\xe1\x59\xae\x45\x15\xac\x27\xcf\xa5\x9d\xcd\xc4\x2e\xdb\xac\xe8\x13\x88\x81\x76\x0e\x41\x75\x87\xa2\xfb\xf1\xfa\x8d\x66\x1e\xb1\x92\x58\xcc\x06\x50\xe4\x31\xf4\x7c\xc5\x88\x36\x64\xc0\xbf\xaf\xd5\x7f\x4e\xd4\x2b\xdd\x9b\xa2\x9f\xc6\xae\xc3\x47\x24\x8a\x75\xcc\x4f\xe6\x9b\x89\xfd\xe2\xc0\x81\x66\x3b\x26\x9a\x23\x45\x14\xc8\xfd\xd8\x88\x96\x6f\xd4\xa9\x67\x5c\x16\xbb\x44\x06\x09\x80\x07\xc4\x06\x7c\x3d\xb1\x0b\x1c\x38\xd0\x7c\x29\x2d\xb3\xc4\xc4\x2e\x1f\xa8\x2d\x89\xe1\xa2\x7c\x33\x0a\x35\x49\x93\xd9\x4f\xd1\x2f\x45\x4c\xfb\x14\x96\x23\xc0\xcb\xdf\xa2\xe2\x17\x52\xc2\xad\x6b\x74\x46\xe1\x77\x7d\x05\x87\x1c\x28\x7b\xdf\x45\x4c\x4c\x05\xed\x9f\x7f\x1a\xed\x51\x7c\xcf\xc3\x90\xac\xc1\x14\xde\xba\xa6\xd5\xf2\x15\xe7\xec\x02\x1d\x2e\x2c\x37\x88\xc3\x17\xa7\xe7\xcb\x51\x38\x11\x8e\xf1\x02\x10\x55\x07\x05\x99\x78\x2b\x90\xfb\x0e\x3f\xd9\x52\x68\x9b\xe9\x56\x98\x9b\x5b\x81\x96\xc1\x10\x7f\x77\xa4\xe4\xce\x01\x48\xc1\xfe\xf3\x89\xb5\xea\x54\x15\x7a\x46\x35\xc3\x50\xf9\x9b\x6e\x55\x07\x3c\x32\x98\x5b\x63\x28\xfe\x6c\x09\x2a\x85\x62\x3f\xa0\x82\x8c\x6f\xe3\x34\x44\x01\xe1\x74\x5d\x4f\x65\xd9\x16\x1c\x8b\x22\x41\xb9\xa9\xb2\xa9\x9b\x13\xe1\xd2\xec\xbe\xe6\x52\x92\xb2\xff\x9a\x6e\xc2\x08\xb6\x28\x84\xa2\x71\x6a\x16\x19\x47\xf0\x05\x11\x24\x1a\xb3\x56\x0a\xa5\xbd\x97\xca\x6e\xcf\xe6\xdb\x43\xd0\xfa\xed\x09\x0c\x8b\x7c\x03\x20\xcb\xd8\x84\xcf\xd0\xbb\x61\x9d\xa0\x31\xcd\xa0\x6a\xcc\x7d\xf8\x57\x7d\x3f\x22\xa9\x73\x0a\x32\x0b\xf1\x2a\xa8\x7d\xa0\x46\x74\x9a\x7e\x08\x40\x94\xff\x1b\x56\x90\x30\x8e\x94\x21\x8f\xe9\xb8\x38\x2e\x73\x15\x61\x5f\xd5\x3c\xe5\x8f\x46\xca\xcf\x79\x5b\x2b\xc0\x47\xdb\x59\x99\xe7\x64\xb3\x16\xf8\x24\x23\x85\xe8\x60\xed\x45\x61\x9a\xd0\x4c\xe1\xff\x12\x3d\xec\xff\xca\x7f\xfd\x89\x30\x21\x1e\x69\x05\x9d\xa2\x1d\x80\x54\xa2\x8c\x20\xde\x4b\x5e\xf2\xa4\x1a\x01\x84\x6f\x9b\x29\x90\xc0\x3c\x7f\x15\x11\x1f\xfe\xc0\xfa\x28\x84\x69\xec\xb8\x8b\x84\xfc\x16\x0d\x2c\xd6\x1f\x0c\x44\x10\x4d\xdd\x57\x06\xed\x5f\xd7\x0c\x4b\xc6\xa4\x31\xf0\x11\xe7\xa4\xb0\x74\xe4\xc4\x1a\xa4\x45\x9f\xe6\x46\xa8\x3f\xbf\x82\xcd\x41\xf0\x19\x4f\x2a\xb8\x74\x95\x87\xdb\xee\x36\xda\x14\x10\xac\x1e\xc1\x60\xf1\x0d\x3e\x89\xf4\x89\xf1\x3b\x2c\x6d\xba\x16\xde\x28\x37\xb1\x44\xf3\x34\x14\x5a\x5e\x57\xd6\x34\xb1\xed\xb9\x1c\xae\xa9\x0f\xd1\x37\x00\x3c\xc1\xcc\x50\xd5\x62\x9a\xf3\xca\x95\x0a\xef\x4d\xc1\x23\xa6\xcc\xc7\x18\x42\x40\xbb\xff\x15\x96\x3a\x96\xee\xa6\x96\x12\x83\xff\xc1\x18\x69\x71\xe3\x61\x33\xbb\x0f\x90\x1e\xca\x9e\xd0\x11\x13\x47\x95\xd0\x40\x9f\x74\xa4\xa6\xde\x74\x3a\x18\xda\xc2\xa2\x8b\xa7\x46\x46\x38\xa9\xe0\xe2\x33\x0d\x72\xa4\x9c\xe4\x26\x6d\x95\xf6\xec\x69\x16\xfd\x2c\x2d\x7b\xfd\x0d\x6a\x65\xbb\x83\x5a\x59\x0d\x72\xb1\x9d\xa5\xa6\x2b\x9c\x43\x24\xe1\x9b\xe9\x4b\xf9\x7a\xed\x49\x5f\x5c\x34\x59\x37\x4b\x53\x91\xeb\x17\x71\xdc\x86\xa2\x10\x4b\xcd\x61\x60\xb3\x1e\x57\x64\x7d\x63\x26\x38\x9d\x9f\x51\xed\x90\x2b\xf8\x51\x88\xb7\xae\x2b\x39\x35\xb3\xb8\xe8\xba\x66\xd9\xa1\x0d\xaf\x23\x60\xbe\x56\xde\xef\x26\xeb\x91\xd9\x2e\x77\x31\xfc\x9e\xec\xf1\xaa\x57\x31\x17\xd0\x21\xfe\xed\x28\x74\x8b\x7f\x1b\x5f\x2f\xd6\x96\xa1\x28\x97\xb9\x65\xd8\x1e\x05\xa1\x68\x75\x94\x46\xea\xa1\xff\x4a\x11\x11\x7b\x36\xb1\x1c\xe0\xe1\x21\x58\xe3\x82\x6f\xea\x2a\x79\x9f\x6e\xc6\x69\x5e\x4c\x29\x7c\xe8\x6d\x85\xdc\x3d\xaa\xfc\x95\x26\xc5\x35\x76\xb2\x08\x02\xb9\x38\x88\xd3\xb0\xaf\x0a\x84\x0a\x81\x6a\xf6\x2c\xc6\xd6\x16\x64\xd5\xa2\x43\x42\xef\x08\x1f\xf6\x69\x0f\xcf\x49\xdb\xb1\xeb\x99\xa2\x48\x95\xd0\xf1\xeb\x51\x10\x5c\x79\x7d\x62\x62\xef\x54\xed\x61\x85\x77\x78\x55\x95\xa7\x5e\xad\xa3\x33\xe7\xfd\x74\x05\x1d\xa0\x3d\x7b\xc4\x01\x45\x89\x7f\x1c\xd5\xc5\xec\x1b\x7a\xaa\xb4\xd3\xd8\xe5\x7d\x0b\x1d\x34\xd5\x05\x9a\xf3\xc6\x85\xda\xd6\x8e\xde\x1d\xff\x87\x89\xdc\xd1\x77\xa3\x5c\xe1\x1a\x1e\x40\xfb\xa7\x2f\xe3\xbb\x45\x6c\x4e\xa9\x8d\xfc\xe2\xaf\xa1\x4c\x8f\xa4\x0f\xfa\x4f\x10\x99\xb9\x4e\x7d\x00\x71\x41\x53\x3a\xb8\x83\x74\x9a\x3e\x82\xd3\x1e\x50\x24\xef\x6b\xec\x49\x07\x1f\x28\x27\x81\x7f\xff\xc0\xea\x67\xc7\xe4\x2e\x49\x95\x8c\x0b\xcf\x38\xbe\xa9\xe1\x15\x7c\xa1\x99\xd9\x3c\x8d\x4b\x8f\xd1\x13\x5e\x11\x7d\x4e\x08\x47\x3b\x14\x46\xa0\x13\x97\xb9\x5b\xb6\x5b\x54\xb5\xf9\xde\x48\xd3\xaa\x31\xd6\xc8\xfd\x6e\xd3\xcf\x11\x7d\x0f\x1a\x6b\xec\xa1\x47\x55\x09\xa8\x63\x63\xdb\xce\x4c\xc1\x85\x2c\x51\x6f\xaa\xc6\x4b\x6c\x28\xc2\x78\xa5\x6d\x16\x21\xc6\x32\x40\xc1\x14\xb3\x74\xf3\x9a\x02\x96\xd0\x70\xa3\xa0\xcd\x3c\x2f\x2c\xeb\x46\x2b\x44\x30\xcb\x26\x8e\xed\x2a\x88\x1b\xa8\xc7\xfc\x0c\x0f\xcf\x06\x45\xa3\x90\x20\x71\xd5\x86\xcb\xdd\x91\xee\xed\x1f\x53\x8a\xda\x37\x6a\x79\xc3\x9d\xcc\xe4\x7d\xd0\x7c\x34\x3e\x51\x58\x60\x52\x70\x33\x6d\x7a\x13\x10\x94\xf5\xc2\x49\xfe\xc8\x3b\x5c\x67\x8c\x68\x4d\x16\x3b\x9b\x6d\x51\x34\x00\x58\xe7\xe3\xf8\xd8\x06\xa6\x02\x76\xfc\x47\x09\x18\x83\xda\xe8\x56\xdd\x84\xbf\xa4\xc5\x64\x3b\xb6\x2b\x55\x00\xec\x3a\x7f\xae\x11\x90\x7f\xee\xa3\x81\x2c\xa5\xd0\x88\x5e\x19\x4e\x07\x96\xfd\xe5\x9b\x09\x72\x11\x11\x66\x63\x6b\x58\x29\xf0\xc5\x50\x66\xd6\xdc\xca\x31\x64\x70\x7b\x15\x5b\x86\x58\x80\x2a\x74\x44\xad\x26\xe8\xa2\x8b\xe3\x71\xd5\xc2\x3b\x91\x32\x5e\xbb\xa3\x8a\xa7\xb6\x93\x26\xe9\xc0\x71\xaf\xd7\x6b\x60\x86\x97\x7c\x49\xa1\xfa\x6c\xd7\xe5\x0c\x8a\x41\x74\x7b\x4d\xa7\xea\xd7\x54\xfb\x26\x2f\xd2\x6c\x00\x1f\x26\x21\xf9\xd0\x03\x48\x6b\xc5\x5b\x12\x99\xc4\x75\xb8\x80\x82\x03\xfd\x75\xa5\x49\xc2\x6e\x29\x88\x94\x36\xb5\x74\xda\xe0\x3a\x4b\xdb\x55\x18\xf5\x76\xa4\xa0\x91\x77\x79\x5e\xe2\x60\xdd\x44\x51\x23\xb3\x15\x5b\x61\x5b\x21\x26\x06\xef\xa8\xf7\x54\x24\x74\x5f\x75\x6e\xef\x8d\x35\x39\xec\x52\xbe\x2d\x34\x05\xb7\x50\x04\x2b\x2a\x0b\xf4\x2c\xa8\x39\x9e\x44\xc0\xc5\xd0\x7d\xa5\x9f\xc1\x58\x4c\xcf\xbd\x79\xc1\x83\x44\xae\x4c\xf0\xf7\x76\x52\xd9\xa0\xd3\x87\x72\x3a\xfd\x41\xa4\xd5\x28\x9e\xf3\x75\x9d\x72\x0e\x89\xed\xe4\x2b\x36\x2f\x38\xad\x16\x74\x26\x8d\x90\xc0\x36\x37\x7e\x70\x7e\x61\xbe\x39\xcc\xec\x62\xec\x7a\x7d\x36\xc3\xf3\x11\x43\x20\xdc\xfb\x35\x9a\x17\x99\x5b\xf2\xa0\x56\x21\xfd\x04\x6d\x83\x27\x5b\x81\x6d\x70\x7f\x22\xf7\x3f\x70\xa0\xe9\x06\x03\x4b\x28\xa4\x86\x62\x97\xbf\x4c\xaf\x81\xaf\x27\xab\xf6\x0b\xf3\x55\x60\x56\x05\xdf\x53\x61\xdf\xb8\x47\x51\x28\x06\xfb\xdc\x48\x49\xcf\xe9\xdd\xd2\xf5\x52\xb6\x66\x1a\xd3\xd8\x40\xe3\x04\x1b\x17\xd2\x92\xd3\x5a\x3d\xe7\x8e\x72\x96\x5b\xc9\xcc\x70\x8a\x72\x66\xb1\x08\x0e\xac\x18\x08\x80\x0b\xb2\xb7\x8e\xc0\xba\x42\xa5\x2b\xff\x26\xf1\x31\xe0\x8d\xf8\x7a\x02\x3d\xba\x30\x5f\x25\x1a\x29\x74\x16\x30\x93\x8f\xd0\xf7\xf0\x75\x30\xb9\x8d\xad\x1d\xaf\x9e\x32\xe6\x4c\xea\x16\x61\x18\x7e\xe5\x9f\xfc\x67\x5b\xe9\xf7\x21\x67\x9c\xe6\x8e\x39\x62\xf1\xf7\xd5\x4c\x3d\x46\xc7\x06\x06\x18\xa7\x37\xce\xb1\x87\xd0\x18\xc3\x02\x38\xe2\xb7\xcb\xea\x7f\x86\xb1\x01\xe9\x01\x69\xc3\x2b\xca\x28\x97\x45\x50\x27\xf7\x93\xcc\x2e\xbb\x65\x76\x21\x61\xfe\x47\x14\xe0\xce\x17\x6b\xa8\x28\x0b\x33\x8f\x29\xa4\xcf\x7d\x95\xf7\x5d\x8e\x14\xa8\xa5\x41\xeb\x1c\x47\xe3\xfd\xd1\x86\xa4\x75\x96\x23\x96\x87\x5a\xc1\x47\xe1\xbb\x40\x88\x79\x02\xeb\xfe\x19\x7f\x26\x60\x8c\x50\x62\xfc\x2b\xe4\x61\x5e\x26\x33\x50\x27\xde\x89\xb4\xbc\xd9\x44\xad\xe2\xd9\x67\x89\xf7\x82\x85\xc5\xc5\x00\xfa\x16\x29\x0c\x4c\x96\xc5\xbf\xd0\x1c\x66\xe9\xa2\xc8\x2c\x6b\xc2\x96\xec\xd2\x41\x85\x6c\x98\xa5\xdd\xb2\x53\xb8\x65\x26\x1f\x7b\x4d\xdd\x86\x72\x31\xaf\x73\x75\xb6\x79\xc1\xbb\xaf\x16\x7e\x40\xa9\x9b\xcf\x7a\xe4\x04\x7f\x32\xde\xee\x6d\xe7\x8d\x71\xb3\x2c\x2a\x10\x8b\x3e\xbf\xec\xee\x3d\x93\x4b\x77\x4a\x40\x8d\x0a\xbc\x72\x71\xcc\xb8\x31\xe9\x3e\x4e\xaf\x80\xab\x00\x14\x9c\x0a\x03\x90\xc6\x59\xca\x03\xf4\xe7\xf0\xce\xaf\x47\x41\x40\x14\x72\x9e\x88\xbd\x98\x2b\x89\xb5\x0e\x00\x1a\x22\x99\xff\x51\x75\x0b\x6e\x60\x56\x02\x16\xb7\x5d\x37\x32\x50\xc5\xc4\xef\xbe\x8a\x27\xe6\xef\x43\x16\x8a\xb9\x70\x51\xd5\x63\x56\x5c\xdc\xed\x18\xc0\xa9\xd9\x9a\x3f\x0a\xd4\xba\xdb\x0a\x8c\xb4\x22\x19\x09\x60\x08\xe7\xf1\x17\xf9\x26\x7a\x5c\xb3\xd8\xab\x54\x4b\xc7\xd7\x61\xdf\x87\xce\x00\xaa\x82\x57\x55\x1e\x93\x17\xd6\xc6\x0f\x2b\xe2\xea\x23\xc4\xe0\x17\xa4\x0e\xfd\x12\xaf\x69\xbe\x7f\xc6\xdb\xb3\xd1\x40\x68\x97\x4a\x51\x8a\xac\x86\x54\x50\xc9\x2a\xa0\x5f\x43\xc1\x12\x1b\xf5\x47\x34\xa6\x80\xcd\xbf\xe1\x0f\x76\x53\x64\x25\xdb\x4e\xeb\x99\x85\x57\x72\x97\x7e\x0b\xfb\xb1\x3d\x10\x42\xea\xc8\xa5\xa8\xe7\x3a\xa4\x00\xe7\x83\xe7\x10\xc8\x4f\xa2\xd4\xab\x23\x22\x5d\x91\xc0\x4a\x15\xd1\x66\x7d\x0f\x75\x92\x24\xc7\xf9\x62\x61\x92\x2e\x4f\x56\x81\x06\x05\x74\xbc\x36\x3c\x48\x52\x12\x24\xe2\x5f\x27\x35\x67\x9d\xf1\xab\x75\xb3\x1e\xed\x70\x1b\x51\x26\x5c\x2b\x40\x16\x83\xda\x3b\x5f\xfb\x1d\x75\xd1\xc4\x45\x50\x9e\x96\x20\x98\x7e\xc8\x83\xa2\xe0\x03\x07\x98\x06\xb1\x3a\xdd\xf0\xf2\xe8\xa8\xc1\x02\x8e\x05\xd5\x1b\xb1\x3a\x56\x22\x3c\x87\x95\x66\xb3\x3d\x38\x34\x09\xe9\x56\xb1\x5d\x0e\x36\xd1\x57\x54\xca\xfd\x4a\xf4\x09\x45\xe6\x2b\xca\xcc\x6e\xa1\xd5\x2f\x3e\x17\xa1\x3d\xc8\xd5\x34\x66\xb0\x2b\xaf\xbc\x73\x9a\xc9\x72\x74\x22\x44\x9e\xdd\x47\x3b\x9a\x13\xbd\x61\xac\xbe\xb7\xe8\xf9\xf9\x7a\xc2\x4c\x5a\xaa\x36\x1d\x93\x17\x41\x88\x12\x93\x9a\xa5\x5e\xf1\xf8\xdf\x1a\x29\xa2\xc4\x5d\x55\xc8\x5d\x4a\xd2\x95\x24\xd7\x0d\x55\x6c\x80\x12\x9f\xeb\x0d\xb0\xed\x7a\x4f\xab\xc2\xe9\x3b\x38\x3e\x10\xf2\xa3\xa3\x83\xea\x01\xe4\x06\x31\x15\x98\x9a\xe5\xb5\x8b\x82\x62\xc2\xd1\x48\x15\x9a\xae\x46\x61\xba\xbf\x4b\xd9\x1f\xf6\xae\xeb\x91\x22\xf7\x1d\x04\xa1\x0f\x39\xc0\xb1\xd1\xb8\xc0\xa1\x07\x27\xad\x03\x30\x8b\x4a\xc1\x49\xed\xbc\x88\xf0\x85\x99\x5a\xe8\x05\xf0\xdf\x52\x1c\xa6\x2b\xe0\x76\x62\xa4\xbe\x83\xc1\x40\x5f\xe3\x8c\x2a\x71\xf6\xd3\xa4\x5b\x66\x26\xd7\x67\xdb\x09\x55\x56\x3f\xa1\xd0\xe4\x2e\x21\x43\xd9\xe9\xc0\x2d\x3a\x83\x71\xe0\x1b\xfa\x72\xc6\x3c\x45\xaa\x88\x7d\x42\xc3\x39\x6d\x1c\x3f\x14\x0a\x80\xbc\x83\x0a\xcf\x47\x69\xcb\xc2\xaf\x1a\x5b\xd9\x57\xa8\xda\x2e\x28\x26\x65\xac\x7c\x3e\x6a\x7c\x71\x56\x00\x31\x94\xa5\x23\x3f\xfe\x2a\x36\x45\x41\xca\xd4\x18\x2e\xbf\x64\x92\xcf\x4c\x05\x8c\x39\x63\x5b\x11\x3f\xdd\x18\x29\xbe\xde\x99\xb1\x7e\x87\x4d\xba\x4f\xd3\x43\xb2\xe1\x4f\xa4\xec\xc5\xde\x89\xd4\xc6\xf0\xde\x28\xe0\x54\xff\xe5\x28\xd4\x24\xee\xa0\xf2\x8d\xe2\xee\x4d\x85\x06\xfa\xe7\xf4\xe6\x31\x10\xf7\x46\x8d\x17\xe6\xc5\xf0\x1f\x23\x89\xa5\x70\x79\x14\x38\xc6\x90\x5d\x96\x4a\xac\xea\xef\xb1\xc5\x08\x80\xed\xc7\x31\xbb\xa4\x10\x5d\x4d\x4e\xc4\xf8\x6f\xe1\x28\xc6\xb2\xdf\x4c\x27\x0d\x02\xa3\x6f\x8c\x54\x4b\xf0\x86\xb6\xc2\x3c\xae\xb6\x8e\x36\x09\xe8\x4c\xab\x67\x3b\xab\x6c\xaf\x98\x97\x8a\x5f\xf0\xa3\x51\xe0\xf5\x9c\x54\xad\xb7\xb4\x84\xe7\x27\x1a\x9e\x1f\xd3\xb3\xf9\x1c\xac\x1a\x49\xac\x35\xa0\xee\x45\x89\x92\x16\x0e\x86\xf8\x34\x06\x1f\x8b\xe5\x66\xa4\x28\x9f\xa7\xf1\x13\x50\x7b\x3c\x8a\x1f\xea\x05\x0e\xb5\x47\x45\xd0\x50\xfa\xae\xa2\x75\xb3\x04\x9f\x08\x2b\x54\xc3\x8c\x3e\x68\x30\xdb\x5a\xb4\xd9\x32\x47\xf7\xac\x31\x40\x9f\x17\xbd\x81\x9a\x42\xf6\x8a\x71\xde\x75\x5c\xe4\x70\x95\xb2\xc2\x4f\x54\xbe\x63\x18\xc3\x89\xa3\xf7\x9a\x92\xa4\xba\x36\x86\x5f\x20\xa3\xd9\x2d\xaa\x5d\xc5\xc0\x5b\xc1\xe9\xd2\x9f\x17\xe7\x06\x45\xd9\xbe\xa6\xbc\x09\x1a\x6b\xa1\xe6\x9c\x97\x49\xb2\xba\x6c\x62\x56\xbd\x47\x51\xfa\x43\x0e\xa1\x59\x4e\x5c\xa3\x87\x5f\xad\x13\xba\x59\x8c\x9d\x68\x4a\x8a\x7c\xe7\x18\xf9\x59\x6b\x4a\x3e\xae\x41\xbe\x06\xa5\x09\xf1\x88\x57\xac\xcf\x0b\x8a\xf6\x9b\xb8\x25\x70\x8c\x67\xbd\xb7\x15\xfd\x32\xed\xf0\x87\x05\xf5\x7b\x63\x8d\x9c\x2a\x5f\xb5\x79\x23\xf4\x3c\x20\x20\xcc\xd7\x51\x80\x1b\x9b\xbc\xc8\x75\xe4\xd3\x58\x53\x5d\x7d\x3c\x3e\xc2\xb8\xa9\xd6\x0e\xe5\xf8\x5c\x64\x54\x50\x6c\x68\xaa\xca\x18\x0a\x5e\x40\xe0\x89\xb5\xdd\x47\xe9\x91\xe9\x2c\x6f\x3d\xb1\x56\x6d\x61\xa8\xfd\x6d\x6f\x85\xad\x75\x07\xe5\xe0\x88\x8e\x1f\x6b\x85\x55\xf8\xcd\x1d\x6b\xb4\x06\x04\xa4\x4d\xe3\x24\x4c\xcf\x6a\xa5\xb0\x0f\x16\xa6\x02\x62\x9a\xbf\x4b\x49\x20\x36\x20\x12\xf7\x78\xd1\xdb\x92\xa9\x85\xb6\x59\x31\x10\x56\x6c\x1c\x73\xff\xd4\x4b\x6e\x2b\xfd\x9d\x00\xe9\x9e\x9d\x9d\x0a\xda\xa3\x6f\xd2\x4a\xf7\x3d\xf2\x30\x53\xde\xf1\x03\x3c\x28\x33\x53\x18\x0c\x30\x32\xd4\x33\x23\x5d\x43\x57\x82\x5d\x57\x14\x78\xa4\xa3\x6c\xef\x05\x58\xa4\x40\x46\x13\x05\x11\xb2\xd6\x49\x16\x5d\xd7\x26\x1d\x98\xd9\x42\xbb\x43\xa0\xe7\x8a\x13\xfe\xf6\xd8\xe9\xc4\x92\xcd\x8c\xae\x89\x42\x4a\x70\x51\xa9\x12\xba\xc1\xa0\x4c\x5c\x81\x8c\x59\x15\x00\xbf\xe0\xbb\xf5\x21\xf6\xba\x13\x05\x26\x7e\xdf\xc6\xc3\x87\xab\x6f\xc6\xd4\x7a\x0d\x2b\x54\xf1\x5e\x66\x39\xd3\x3d\xa2\xfc\x6d\xe0\xd7\x8a\x71\xc4\x64\x44\x31\xf7\xc7\xa3\x71\x5c\xa9\x17\x43\x3e\xa3\x9b\x0a\x1f\x52\xdf\x14\xdb\xd7\xdf\x9d\xf0\xdb\x5e\x98\xe1\xe4\x93\xd5\x0a\xd5\x2a\x9d\xf5\xe6\xaa\x34\xe8\xc8\x16\x6e\xab\x1c\xa7\x5d\x66\xb9\x76\x51\xb8\xab\x5c\x14\xee\x4e\xee\x0c\xb3\xcd\xbc\x48\x53\x30\x11\xb0\x9a\x3e\xd0\x74\x9b\x0f\x54\x9c\xd1\x49\x93\x82\x43\x92\x39\x2f\x65\xa9\x9c\x08\xfe\x46\xe9\x88\xbb\xa4\x5b\xe6\x45\xe6\x4c\x3c\xad\xd1\xdf\xa3\xb0\x33\xa3\xe9\x80\x03\x97\xcd\xbb\xa5\x6c\xa8\x72\xaf\xbe\x89\xe3\x6d\x0d\xaf\x5b\xb7\x1d\x2b\x4e\x44\x25\xaa\xc1\xc5\x1b\xb8\x8d\xd3\xc4\xb3\xa3\x66\xf7\x71\xd5\xa0\xb1\xa6\x20\xc3\x0d\x12\xe6\x47\x14\x78\xa5\xce\x9f\x12\xac\x69\x5f\xf4\xe7\xa3\x08\xf9\xd9\xf6\x56\xe8\x4a\x7d\x84\xdf\x8d\xec\xf9\x0d\x7f\xfc\x0c\x63\x9b\x14\xab\x0f\x29\xe9\x28\xd4\x49\x80\x62\x3b\x16\x29\xa9\xb9\xe3\x54\x0c\xc2\x3e\xf2\x07\xb4\x41\xe0\x58\x9c\x6e\x29\xfd\x32\x24\x94\x38\x22\x2f\x2b\x20\xe0\xa3\x08\x7a\x11\x95\xdc\x9f\x38\xd6\x76\x36\xdb\xb1\x35\x9d\xbe\x64\x3a\x42\x78\x51\xe4\x17\x05\xd4\x1f\x96\x6d\xea\x69\x65\x39\xc2\x06\xb1\xd1\xae\xc6\x10\x85\xfe\x33\xa3\x71\xa5\x92\x6a\xd8\xf9\xbf\x44\x81\x6e\x94\x74\x4d\x21\x52\x07\x7c\x60\xd3\x37\xaa\x88\x72\x56\xbc\x5b\x35\x5f\xd9\x64\x89\x5b\x36\x31\xd7\x55\x01\x11\xbd\xaa\x79\x61\x57\xeb\x1c\xbd\xf3\x2f\x97\x55\x2a\xcb\xbf\x10\xb0\x08\x36\xd6\xe4\x1b\xb5\xc0\x7b\xa9\xcd\x1f\xaa\x86\xd2\x83\x2d\x3f\xff\x42\x70\x80\xf4\x86\xf6\x8f\x40\x53\x09\x68\x86\x1b\xb4\xd6\x11\xd3\x7d\x5b\xa1\xd9\xee\x44\x01\x41\x70\x5f\x6b\xa5\x9e\xa3\xe9\x88\x28\xee\xf4\x58\xab\xa1\x6c\x63\xf7\x42\xe8\x7e\x4b\x2b\x09\xdf\xd2\xb2\x5a\xb6\x28\xd8\xb9\x95\x99\x7d\xf4\xb5\xc2\xf2\x0b\x9b\x7b\x7a\x10\xb9\xae\x77\x4d\xf4\x0a\x2a\xc1\x57\x26\x1f\x66\x16\x44\x12\x4c\xf7\x46\x2b\x34\x18\x6e\x61\x9c\x80\x3e\x38\x53\x03\x22\x6b\xb6\x4d\xd2\x5d\x31\xbd\x14\x4c\x2a\x4c\xba\x63\xaa\x63\x78\x9b\xe6\x80\xd4\xe5\x36\xca\x00\xec\x9e\x6b\xf6\x12\x50\xfa\x11\xac\xdf\xd7\x48\x8e\xfb\xa3\xc0\xa7\x01\x21\x78\xc5\x75\x2d\xb4\x6b\x3c\x01\xc8\x3b\x7d\x40\xd8\xd1\x07\x48\xbb\xc5\x92\x09\x85\x55\x96\xf2\xac\xb3\xcd\x1d\xb8\x3c\xb6\x26\x08\xf5\xa1\xb0\x03\xb2\x05\x5f\xd7\x94\x2d\xe6\x9b\x43\x93\xc5\xce\x78\xad\x6b\x59\x01\x0a\x50\x72\xc6\xab\x95\x78\x8b\xa0\x46\x48\xa2\xf1\xd2\xc4\x4c\x4b\x4f\x83\xb4\x9b\x3f\xaa\xc2\x82\x2b\x63\x6c\x02\x65\xa4\x7e\x16\x32\x29\xd8\xe7\x59\xc2\xd0\xe7\x13\x21\x07\x78\x08\x9b\x00\x0e\x97\x5b\xca\xa5\xf0\xa7\xbc\x5c\x45\x0c\x44\xc5\x9b\xef\x28\x2a\x3b\xbb\x1c\xa2\x1c\x78\xb2\x8e\xb0\x98\xd9\x2f\x97\x36\x2f\x68\x0e\x60\xa4\x91\x82\xfa\xa0\xce\x57\x41\xce\x6b\x23\x83\x8c\x14\xac\x3d\x64\x11\x18\x0f\xbe\x9e\x50\x84\x9c\x7f\x7e\x6f\x73\xe0\x98\x0a\x07\xb0\xdf\x7b\x9a\xc5\xf9\x9e\xd7\x7b\x69\x97\xb9\x4b\x2c\x29\x60\xd0\x90\x60\xfd\x5e\xd6\x32\xc9\xda\x0a\x38\x36\x8c\xd1\x90\x52\x5b\xf5\x2b\x70\xf4\x1c\xc5\x98\x02\xde\x82\x19\x81\x2f\x23\xca\x88\xb7\xd7\x0f\x85\xd4\x45\x6b\xb2\xad\xaa\x50\xf0\x5b\x34\xda\xc2\xb8\x0c\xbd\x7b\xe4\xba\xde\xed\xc5\xc3\x04\xdf\x8d\x14\xd1\x51\x3b\xf9\xb9\xc1\x30\x2d\x93\xae\xf0\x07\xea\xe4\x3f\x36\x4e\xed\x3d\x7b\x16\x9a\x89\x5d\xc9\x87\x99\x63\xf5\x55\xd4\xae\x10\x47\xf1\xb5\x3a\x42\x8b\x74\xe8\x60\xf4\xea\xd5\xb4\x3c\x14\xee\x86\xaa\xe2\xdf\x8f\x94\xb0\x61\xdf\x42\xf4\x9b\x06\x50\x70\xcf\x1a\x04\x5d\x53\x5a\x7f\xb1\xd9\x77\x3d\xaf\x29\x3e\xa6\x8a\x24\x32\x06\x75\x2f\x3f\x5d\xe6\xce\x13\x4e\xff\x3b\xa3\x20\xe7\x88\x70\x0b\xaf\x69\x53\x6b\x12\x7b\xdf\xec\xda\xc2\x66\x03\x97\x80\x07\x83\xe3\xe9\xa4\x0a\x0e\x6b\x67\xb5\x4b\xfa\xe5\x80\xb3\x1a\xbc\xea\xef\xab\xd7\xfe\xfd\x3a\xcc\x15\xd9\xbc\x15\xfd\x6a\x39\x34\x02\xc6\xf9\x3f\xd0\x37\xf1\xf5\xc4\x37\xfd\xa3\x66\x66\x87\x69\xe6\x8f\x28\x29\x7a\xe8\x0a\x88\x22\xe1\xf7\xd2\x64\xba\xb1\xef\x79\xde\xe9\x20\x12\xeb\xad\x95\x03\xcc\x4b\xbb\x88\x7b\xdc\xcc\x4a\xc6\xaa\x49\x68\x1c\xe2\xdd\x7e\xa8\xf4\x41\x36\xa1\x8c\x82\x91\xbc\xad\x50\x44\xf6\xe0\xd0\x76\x8a\x47\xb4\x09\xe3\x5f\x29\xd6\xf8\x89\x48\x89\xb9\xfd\x44\xc9\x69\x7c\x44\xd1\x01\xd2\xc0\x37\x68\x42\x49\x91\xa2\xe1\x85\x83\x5f\x19\xef\xbd\x57\xaf\x95\x3f\x80\xd5\x80\x3e\xe6\xb1\xf1\xda\xf3\xc6\x97\x4c\x7d\xfd\xc5\xd8\x76\x7c\x68\x81\x08\xe2\x94\x6a\x52\x9d\xd6\x3a\x82\xb7\x54\x28\xdc\x49\x13\x86\x7d\x88\x83\x6c\x23\xb8\xc9\xaa\xe9\x9e\x97\x43\xf2\x18\xdc\x16\xf8\xe7\xaf\xd0\x0f\x44\x1b\xf1\xc7\xba\x7d\xa3\x5c\x01\x2f\x60\x72\xf3\x07\x40\x6c\xe4\x4f\xa0\x73\xc3\x80\x5b\xa5\x9c\x68\x06\xae\xbb\xb5\xe1\x75\xfa\x3f\xa6\x09\xee\x63\x3d\x8f\x66\x81\x01\x33\xab\xad\xa1\x82\xa2\x9c\x0b\x02\xfd\x3c\x40\x03\x0a\x73\xd0\xe6\xdb\x94\x1a\xfb\x71\xa4\x21\x98\x42\x47\x51\xc1\x43\x50\x7b\x45\x55\xe0\x8f\x29\xbc\x2c\xce\xa3\x31\xb0\x9a\x98\xa9\xd6\xd9\x95\xa6\x49\xc7\x0e\x0b\xe5\x6c\x7d\x59\x69\x4a\x5e\xf6\x21\x71\xd7\x2e\xbb\xdc\xd2\x11\xc2\xee\x0e\x2a\x1f\x81\xfe\x31\x46\xf3\x6b\x4a\x31\x3a\xef\x9b\x04\x2b\x0d\x6c\x8c\x63\x5a\x15\xf1\xd8\x84\x74\xed\x67\x9b\x6d\x17\xc7\x5a\x17\x49\xcb\x44\x4f\x4e\x2a\x72\xd4\x4c\x07\xc3\xc2\x07\x07\x42\xd1\x0c\xf5\xdb\x37\x55\xfa\xb9\xe8\x8a\x7c\x2a\x18\x64\x7c\xa8\xa3\x3e\x26\x32\x8a\xfd\x77\xa8\xf9\xb3\xa4\xaa\xc9\x9c\xcd\xb7\xd2\x8b\x41\x87\xf1\xdf\xe2\xc5\xb0\x8a\x16\xad\x29\x41\x88\x8d\x29\x00\x86\x69\xcb\x76\x6f\xa8\xd4\x5d\xae\xa3\x56\xb3\x1b\xa3\x17\xf7\xff\xb7\x51\xe8\x5b\x9f\x53\x2d\xa2\xb3\x3e\x3c\x5c\x34\x85\xe9\x4f\x2b\xb0\xed\xdb\x23\x25\xe8\x49\x93\x1c\xf5\x02\xb6\x21\x10\xe9\x7e\x39\xe6\xed\xc1\xbe\xf1\x68\x18\x7c\xe9\x35\x8d\x11\xbe\x36\x11\x5b\xed\x9e\xab\x36\xc4\x2a\xd7\xe8\x98\x44\xf8\x7b\x08\xd5\x6f\x47\xca\x5b\xf7\xb6\x76\xfa\x8b\xcb\xa4\x67\xbb\x5b\x68\xc4\xc4\xea\x4f\x81\xa2\x4f\x28\x6e\x21\xf4\xb3\x45\xba\x58\xf5\x8d\x6f\x45\x1b\xc1\x8c\x84\x85\xb4\xc9\x62\x9a\x75\x82\xa9\x89\xb8\x72\x85\xf8\xf0\x0f\x55\xed\x6f\x61\x76\x2f\x63\x1d\x50\x3d\xbb\x13\x29\x7d\xba\xf3\x4a\xe3\xe4\xb2\xa6\xa8\xde\x42\x89\x5b\xaa\xf4\x43\x97\x19\x21\x24\xf9\xd0\x12\xb0\x48\xbe\x9e\x38\x21\x0f\x1c\x68\xe6\x26\x16\x5f\x61\xcf\xeb\x9b\x9b\x1b\x37\xc3\xc5\x86\x70\x45\x77\x2d\xfb\xe9\x4a\x4e\x1b\x1a\xfe\xe1\xf7\x46\x01\x68\xcf\xf8\x2c\x6f\x10\xe7\xc9\x51\xd7\x14\x2c\xf3\x7b\xf8\x85\x58\x9c\xf7\xc7\x85\x2a\x54\x64\x94\xa6\xe8\x26\x61\xe3\x7b\x43\x01\x38\xde\x88\x1e\xf6\xff\xec\xd3\x8f\xd3\x06\x84\x29\x05\xb5\x5a\x0c\xd7\x5d\x9a\x76\x82\xc0\xa4\x09\x84\x01\xbe\x46\xf4\x0b\xac\x8c\xdb\x51\xd0\xdd\xfd\x10\x4f\x82\xa8\x77\x4b\x4b\xa1\xb1\xa6\x55\x35\x8d\xf5\x9b\x14\x4b\x5b\xa2\x2f\xf2\x2b\xfe\x82\x07\x94\x86\xda\xf8\x6b\xca\xa4\xe4\x47\x75\x52\x1c\x85\x39\x38\x34\xa0\x06\x79\xc6\xc8\xa5\x31\x5b\x19\x9f\x0c\xaf\x9a\xac\xeb\x65\xe6\x50\x69\x7c\x45\x1b\x40\xbf\x32\xd1\xfa\xa8\x12\x16\x9b\x09\x68\x0b\x05\x07\x24\x76\xa8\x90\xb0\xf0\x27\x36\xa0\x3b\x0a\x7d\xf2\x6b\xbb\x67\x21\x3b\xc5\xad\xb7\x68\xac\x0f\x27\xbb\x70\xdf\x66\x6d\x6e\xfb\xd5\x19\xab\xef\xf0\x08\x3d\xaa\xa0\x55\x51\x7f\x43\x95\x02\xbf\x46\xc5\x2a\xbe\x56\xd9\x1b\xc9\xcc\x91\xf5\x0d\xc5\x97\x18\xe0\x9f\x29\x4b\x72\x86\xc6\x0a\x22\x48\x6a\xad\x79\x9a\x15\xdb\x42\x51\x19\xb3\xce\x3b\xbc\x85\x77\x75\x8a\x4e\x24\x44\x1c\x5f\xa1\x89\x82\xa6\xc2\x6d\xa5\xf7\x46\x82\x3f\x62\xcd\x7b\xba\xc6\x64\x61\x1e\x2d\xc8\x86\x42\xb8\x8c\xdb\x1b\xd4\x40\xfd\xda\x36\x27\x72\xf5\x6e\x89\x4a\xdf\x47\xe9\x86\x6f\x6a\xbe\x65\x0e\xd2\xb9\x08\x51\x70\x82\xa0\xb2\x80\xc4\xe4\x1d\xb5\x51\xdd\x98\x70\xfb\x90\xde\x7c\xd7\xe6\x43\x57\xd8\x69\xed\xa2\xa8\xe0\xbb\x3f\x62\x7b\x19\x0f\x21\xdb\x2d\x85\x8f\x75\x25\x5f\x95\xf6\xd2\x64\x35\x5d\x52\xa4\x92\x0b\xa3\xc6\x17\x67\xbd\x0b\x08\x09\x0a\xf8\xff\xe0\x09\xd7\x17\xea\xce\x15\xc2\xf8\x4f\x29\x84\x03\xc2\x2e\x4f\x23\x5f\x10\xd5\xba\xa3\x13\x43\xb2\x30\xd3\xcc\xcd\xaa\x3f\x60\x3d\x3d\x67\x2e\x94\x43\xd5\x79\x6f\x92\xee\xea\xb4\x92\x88\xbd\xa3\xf0\x67\x37\x30\x25\x74\x7a\xc0\xff\x61\x1c\xcf\xe9\xb8\x7e\x85\x79\x71\x83\x93\x60\x51\x05\x6c\x78\x33\xfc\x6d\xca\x38\xf7\xa2\x32\x72\x32\x45\x61\x93\xae\x61\x6c\xbf\x20\x35\x11\x46\xa3\x89\xbc\x1e\x05\xc5\x88\x3b\x9a\x44\x7e\x63\x14\x8c\xb9\x6f\xd7\x0a\xdf\x1b\x9b\xa5\x6d\xee\x1f\x09\x69\xbd\xfa\x25\x12\xe2\xd7\x11\xf9\x86\xa6\x70\x04\x6c\xd0\xd2\x16\x0c\xba\x16\x5f\x73\x8f\xad\xed\x5b\x33\xb4\x50\x4b\x98\xd5\xf8\x73\xbf\x09\x46\x41\x97\x60\x68\x56\xb3\x34\x8e\x73\x20\x61\x90\x99\xbf\xac\x50\xc3\xd7\xc6\xec\x80\x36\xfe\x9c\x7d\xcf\x4b\x61\x00\xe2\x32\x22\x9a\x4c\x6f\x89\x6f\x26\x6a\xab\xbb\xe7\x9a\x79\x6a\x86\x98\x4b\xa8\x41\xc2\x1e\x1f\xef\x07\xd5\x29\xd4\x78\xef\x29\x67\x3e\x22\xbb\xc4\xe9\x90\x3a\x74\xfb\x67\xf8\x58\x7d\x5f\x81\xa2\xdf\x57\x45\xe7\xa2\x6f\x07\xb9\x8d\x97\x6d\xfe\xb0\x56\xbe\x0c\x0d\x09\xd4\xee\xf0\xc3\xc6\x84\x4b\xce\x23\x40\xf6\x0f\xb6\x30\x13\x92\xaf\xdd\x12\x0a\xdd\x8d\xc6\xf4\xa6\x95\x16\xe3\x65\x54\x9f\x25\xf8\xd0\x9d\xe9\xf2\xd0\xa1\x2d\x0d\x4f\x83\xe7\xb9\x8c\x6a\xf8\x5b\x0a\x8e\x05\x18\x09\xff\xff\x51\xf0\x30\xfb\xa3\xb1\x3f\xd6\x77\xf9\xdf\xd1\x8e\x74\x51\x90\xc4\x5f\x79\xa2\x45\x39\x87\xdf\x6f\x3c\x23\x65\x9d\x2a\xcd\xba\xe9\x87\xe3\xa5\x41\x1d\x2e\x99\x1d\x98\x63\xa8\x5e\xbe\x3c\x52\xdb\xd8\x3f\xdf\xe0\x89\x32\xbb\x2f\x18\x74\xef\xda\xc5\xef\x8f\x0b\x53\xbe\xf9\x15\x72\xdc\xeb\xca\xee\x92\x99\xdb\x08\xcb\xaf\x8d\x94\x66\xfe\x31\xa4\x52\xe2\x65\x48\x19\x0f\x06\x83\xed\xf6\xf9\x2b\x69\x94\x90\x70\x01\x70\x8e\xb8\x96\x09\xda\xa8\xac\xdf\xd6\x51\xd0\x30\x5d\xb2\x53\xd5\x33\x23\xb2\xbd\x48\x2b\x58\x14\x4d\x02\xe1\xe3\xac\x97\x87\x44\x93\xa3\x4a\x6d\xdc\x32\xe8\x21\x98\x67\xf7\x30\x0c\x5a\x3a\x97\x79\x5d\xaa\xfb\x8e\xac\x42\xb9\xf4\xa3\xde\xc6\xd7\x13\x41\x45\xb5\x31\x0c\xca\xb8\x70\xc3\x98\xf1\x9a\xe2\x59\xd4\xf0\x44\xba\x8b\x4a\xd4\x3e\xef\x94\x59\xb6\x0a\xe1\xc0\x79\x0f\xfa\x09\x0a\xf3\xe7\xc6\x54\x0c\x07\x03\xf2\xa4\xab\xc6\x15\x51\xcd\xd5\x51\x48\xd0\xd0\xc6\x44\x21\x70\xeb\x9a\xaa\x0e\x1c\x9d\xd8\x8a\x76\x56\xa9\x4c\xec\x06\xae\x8a\x5b\x1f\xd8\xe9\x0b\xab\xb0\x6b\x61\x0d\xd4\x01\xd4\x49\xcc\xb3\xab\xef\x13\x43\x7a\x1f\x08\x94\xae\xd8\x3a\x6e\xe0\xe5\xab\x98\xf7\x83\xec\xf9\x07\x4c\xdf\x55\xb5\xd2\x79\xce\x4d\x5f\xa7\x35\x24\xb0\xac\xba\x01\x4e\x97\x6d\x96\x5b\x43\xc9\xb1\x9c\xa4\x8c\xbe\xc0\x17\x9d\x53\x5d\x0a\x88\x10\xa1\x13\xb3\x8e\x49\x85\x44\x19\xfa\x0c\xb4\x54\xff\x19\x60\xd8\xd2\x93\x13\x85\x7d\xe3\x32\xca\x72\x31\xbe\xe0\x49\xe0\x10\xff\x07\xb4\xb9\x61\xa1\x3c\xb3\xb6\x43\x2b\xb5\x2e\x93\xdc\xf1\xb4\x42\xa2\xb3\x7a\x0f\xf6\x28\xa4\xea\xe2\xb4\x47\x63\x80\xb9\xfb\xc6\xc4\xae\xbc\x67\x4f\xd3\x24\x26\x5e\xcd\x1d\xe7\x0a\x72\xc0\x35\x3c\x77\x77\x5d\xfb\xc9\xe8\xbe\x69\x6c\xda\x99\xe9\xa6\x99\xe2\x20\x1c\x53\x15\x88\x63\x35\x80\xf8\x79\x98\xf8\x07\xfb\x20\xe1\x13\xd3\x43\xf2\x8d\x2a\xb1\x0c\x33\x97\xa7\x89\xe8\xb0\x70\xec\x1f\x85\xf1\xba\x3b\xf1\xee\x28\x22\xce\x73\x9b\xf4\xd8\x16\x4f\x70\x55\x8d\xcf\xbf\xe0\xd5\xb0\x6b\xea\xfe\xf0\x0c\x19\x9a\x0e\xa5\x75\xeb\x87\xab\x21\x5c\x3f\x3c\x26\x77\x51\x14\xb1\xed\x4e\x55\x6f\x1a\x65\xdf\xbb\x54\x86\x41\x95\xeb\x3a\xbd\x68\xd1\x21\x08\x2d\xa4\x15\x93\x0d\x28\xa6\x12\xd7\xaa\xea\x23\x68\xba\x00\xdd\xe0\xf3\xf6\x85\x19\xf9\xff\x55\xfe\x58\x76\xfa\x4f\x36\xbc\x4a\xf9\x76\xb0\xd6\xa9\x66\xb6\xaf\xd9\x9a\xda\xfb\xeb\x5f\x64\x74\xd8\x11\xad\x56\xb5\x65\x4d\x51\xe0\xcf\xd3\xd6\xeb\x11\xcb\x22\x14\xfb\xaf\x7f\xa1\x35\x2e\x7d\xe6\x45\x18\xff\x1e\x3a\x89\x48\x05\xb6\xac\x29\x05\x0d\x96\x8a\x45\xde\xb3\x79\x2d\x4c\xf9\x8b\x1a\xb6\xf0\x09\x6a\x96\x0a\xfa\x58\xc3\x95\xe8\x40\xc1\xa7\xcf\xa9\x42\xcf\xa2\xc3\x64\x98\xd5\xfc\xda\x17\xfd\x87\x64\xa1\xe4\x66\xf5\x71\x9c\x36\x02\xcb\x09\xe9\xec\xf4\x5a\xe3\x4b\xcf\xf1\xe4\xe7\x4e\xa8\xf6\x2e\xf2\x25\x97\xe0\x49\x71\x9a\x26\x11\xc5\x64\x9b\x9f\x68\xa9\x6e\xf4\xd4\x5a\x75\x3c\xf9\xf5\x5e\x0d\xa4\x88\xd8\xd1\x10\x03\x71\xf0\xf7\xe9\x14\xf1\xa2\x70\x01\x47\x4d\xec\xe7\xf5\xbb\x13\x71\xed\xae\x5d\xcd\x25\x45\x04\x12\x93\x12\xfa\x62\xbe\x99\x48\xe2\x77\xcf\x35\x07\x21\x89\xc7\x29\xc5\xc1\x84\x66\x9b\x8a\xc5\x43\x8d\x79\xe3\x4a\xdf\x14\x53\x8d\x17\x04\xdc\x79\x1b\x87\x22\xce\xe4\xbf\xa6\x3d\x4b\xdc\xcc\x3e\x19\x82\xea\x74\xd8\x77\x79\x01\x5f\xba\xed\xf4\x01\xcc\x05\xe8\x6c\x32\xb6\x98\xc6\xd5\x87\x7d\x1e\xf8\xfd\x36\x4e\x67\x24\x88\xa7\x50\x82\xe4\x9b\x91\x92\x8a\x64\x9f\x0e\x89\x37\xc7\x24\x08\x06\xab\x5b\x02\x0e\xe3\x1c\x02\x2c\xdf\x84\xf3\x4b\xe1\x9a\x52\xfb\xc6\xc3\x48\x73\xee\x41\x59\x52\x5e\xd8\x61\xdf\x32\x50\xd8\x83\x83\xc3\xa6\x79\x4a\x63\x94\xee\xa9\x1a\xe9\x30\x8d\x63\x71\x41\x41\xb9\x9a\x49\x65\x7c\x13\x69\xd1\xac\x55\x3a\x3d\xab\xd9\xe8\x61\x74\xbe\xe5\xf3\x01\xf5\x8f\x45\xe3\x38\x74\x45\x3f\x98\xc8\xa1\xaa\x8d\xb2\x6b\x56\x25\x84\xc7\x94\x3d\x1e\xa9\xf9\x7b\x1c\xb3\xc5\x57\xe3\x33\x57\x7d\xb1\xa9\x9e\x54\x55\x73\x4f\xeb\x7a\xec\x69\xdf\x7f\xec\x97\x49\x37\xb3\x5d\x76\xe1\x42\x50\x88\x76\x1b\x5f\xaf\xd5\x58\x16\x77\x4c\x1c\x4f\x87\xd4\x0d\xc5\x3e\x1c\xe3\x5c\x5c\x41\xf3\xe4\x27\xaa\x1e\x7c\x7b\x82\x10\x47\x01\x7d\x47\xe4\x57\x11\x51\xde\xd6\x70\xf6\xc9\x8f\xbc\x30\xbb\xaf\x19\xa7\xe9\xd2\x98\xa4\x1b\x6b\x53\xf0\xcd\x78\xe8\x9c\x30\x20\x49\x29\x6a\x7f\x21\x54\xad\xe6\x42\x5c\xfe\xf4\xe4\x22\xed\xb2\x5e\xb5\xf8\x86\x86\xa3\xe6\xdb\x38\x06\x71\xe0\x7f\x14\xa9\xad\xf0\xd2\x04\x6a\x7e\xcf\x1e\x48\x38\x2e\xba\xc4\xe5\x7d\x9f\xcd\xb2\xeb\x8f\x0a\xee\x4e\xd6\x04\x77\xcd\x41\x9a\xb8\x22\xb8\xc6\x7b\x94\x76\x48\xd1\xce\x4d\xd4\x26\x67\xf7\x35\x4d\x59\xf4\xd3\xcc\x1d\x32\x9e\x37\x8b\xc4\xe8\x8f\xa3\x90\x24\xfd\xb1\xcf\xfc\xc8\x75\x77\xd9\x76\x49\xca\x1c\x20\x33\xb4\x1e\xb1\xbb\xae\xe3\xeb\xa0\xb1\x38\x35\x6e\x69\x5e\x3d\x14\x6e\x3e\x50\x60\x89\xb6\xc9\x73\xd5\xbe\xe5\x97\xca\x37\x13\xb5\xf7\xb9\xb9\xa6\x49\xba\x8d\x6a\xaf\xc5\xce\xc1\x92\xde\x7c\xa3\x7c\x7b\xdb\x65\x51\xd8\x6c\xaa\xfa\x97\xa8\x63\x1e\x1b\x05\xb1\x9c\xdb\x63\x8e\xe3\x21\x34\xc9\x13\x6b\x96\x44\xea\x40\x44\xe4\x42\x25\xf3\x9c\x2a\x16\xb3\xc5\x07\x9f\xfa\xd5\x43\xac\x1f\xae\xc3\x36\x88\x66\x1b\x5b\xc7\x7a\x82\xa4\x07\x3f\xbf\x1e\x3d\xea\x37\xd1\xbe\xcd\x1e\xa6\x7f\x86\xd4\x06\xaa\x5b\x08\xe5\xd0\x72\xf7\x22\x1a\x3e\xcc\xda\x46\x07\x2a\xf2\x8a\xcd\x38\xc3\x40\x0f\xf8\xbf\x69\x7b\xb3\x18\x49\xce\x3c\x3f\xac\x3b\xab\xaa\x9b\x64\xf3\x1c\x72\x66\x77\x25\x08\xca\x95\x07\x1e\x19\xa6\x46\xd2\xfa\x45\x5e\x3f\x64\xba\xba\x76\x28\x36\x34\xc5\x42\x75\xab\xb9\x26\xf6\x81\x91\x99\x5f\x55\x06\x2b\x32\x22\x37\x22\xb2\x8a\x35\xf0\x83\x6d\xf8\xc1\x80\x05\xd8\x92\x05\x5b\x16\x0c\x41\x90\x0c\x59\x16\x74\xed\xce\x4a\xda\xb5\xa4\xcd\x9a\x59\xcd\xa1\xe5\xcc\x2c\xc9\xe1\x7d\xf6\xc1\xbe\xef\xfb\xae\x36\xe2\xff\xfb\xff\xbf\xef\x97\x95\xc1\xb5\x5e\xfc\x16\xd1\x9d\x95\x19\xc7\x77\xfc\x8f\xdf\xb1\xab\x1d\x14\x6e\x55\xa0\x4c\x46\xe7\xf3\x5f\x41\x19\x13\x0b\x42\x63\x2b\xf4\x81\xee\x90\x5d\x4c\x11\x97\x80\xd1\x6b\xfc\xd6\xe2\x2a\x46\x5d\xe0\x2b\x03\x23\xea\xf6\x67\x27\xbd\x34\xd9\x3c\x62\x99\xec\x33\xc9\xb5\xae\x06\x6e\x93\xc4\x5d\x97\x8a\x79\xae\x6f\x96\x6b\x9a\x87\x4d\xe8\xe3\x16\xa9\x84\x7d\x4a\xa0\xb1\x24\x83\x2f\x2a\xb3\x26\x15\x3b\x6d\x36\xc9\x35\xcc\xe3\x6e\x12\xa7\x71\xf7\x8f\x31\xe1\xab\x21\x37\x6c\xc4\x3d\x97\xfa\x26\x28\x52\xf9\xcb\xd4\xeb\x82\x8c\xbf\x42\xfc\x08\x84\xda\x8b\x8b\x68\x35\x77\x8e\x9c\x4c\x2f\x91\x93\xe9\x25\xe2\xf5\x0e\xb3\xa2\x1c\x66\x5e\xb6\x10\x3b\xf9\x27\xf2\x1b\x7a\x5c\x77\x33\x9d\x28\x4e\xb2\x51\x39\x59\xf3\xf7\x10\xaa\x3b\x53\x41\xac\xd8\xad\x27\x49\x96\x05\x59\x03\x84\x09\xef\x93\x28\xc5\xfb\x53\x98\x17\xaf\x52\x5a\xc4\x3d\xe4\xbc\x5e\xd8\x7f\x79\x5e\x77\xdb\xb9\x76\x60\xab\xdc\x0d\x1e\x0d\x79\x54\xc5\x09\x18\x28\x58\x10\x00\x19\xc5\x83\xbb\x23\x3f\x6b\x0e\xa9\x01\x2e\x35\xdb\x0e\xf4\x9d\x6e\x1e\x6d\xac\x64\xb9\x72\x84\x4c\x04\x4f\x5e\x9f\x75\xab\x9f\xa0\x62\xdd\xe0\x9b\x55\x2c\xbd\x2d\x82\x49\xcb\xdb\xe7\xa9\x0e\xa9\xe4\x67\x73\x37\xfc\x85\x89\x62\x73\xdc\x73\xb9\xc9\x1a\x2f\x1c\xf2\x25\x63\x2a\x1f\x7f\xe9\x53\xa1\x2e\x8a\x67\x84\xf8\x5c\xf3\xdc\x38\x28\xae\xfd\xdc\x57\xc3\xf3\x51\x0f\x9b\xb1\x92\x76\xea\x2a\xe7\xd3\xb5\xbe\xa5\xa6\x4b\x92\x38\x2b\xcb\x06\xe9\xbd\xbe\xad\xf5\x15\x3d\xf3\x41\x73\x1e\xad\x1b\x7a\xc1\x3a\x03\xdc\x26\xa0\x9a\x9d\xcc\x23\x0f\xc9\x40\x09\xf5\x04\x33\x70\xa6\xc5\xc0\x5e\x5c\x6c\xba\x75\x40\x6d\x75\xc0\x7a\xba\x81\xb7\x86\xbc\x44\x0b\x28\x4c\xc5\x8b\x19\x52\x4b\x3c\x2b\x6b\x84\xea\xf2\x93\xbe\xcb\x71\xca\xf7\x57\x46\xe5\x28\x97\x40\x13\x8f\x17\x91\xfc\x39\x92\xed\xbe\xde\x0a\x44\x8b\x5d\x5b\x4f\x52\x5f\xd5\x25\x3d\x61\x9d\x98\xf1\x01\xf1\x13\xc7\x3c\x45\x02\x16\xf1\x8e\x50\x4b\x54\x50\x41\x6b\xbc\x78\xa1\x18\x45\x46\x6b\xa7\xaa\xf3\x51\x96\x0e\x38\xef\xd1\xed\xdd\x2c\x17\x0d\x33\x7c\x87\x26\x0a\x2d\xaa\xb7\x7f\x31\x35\x33\x6d\x30\x75\x24\x3e\x0b\xae\x03\x37\x78\xd0\xde\x20\x58\x7c\xdf\x45\xbd\x82\x94\xb8\xd0\x6c\x43\x80\x34\x61\xf0\x7e\xb5\xee\xed\xad\xc4\x69\x94\x76\x63\xcd\x7f\x4d\x8a\x34\x0c\x5b\x56\x22\x75\xaf\x8b\x0f\x76\x96\xce\x06\x56\xc7\x36\xe2\x76\xf5\x1c\x00\xb9\xc9\x0c\x08\x48\x6f\x66\xbb\x56\x57\xa2\x93\x65\xa9\x99\xe2\x63\xbe\xff\x04\x77\xa9\x27\x53\x0d\x5e\xaf\x67\x12\xe5\xab\x31\xeb\x7d\x5c\x20\x4f\xe1\x0b\x7e\xd1\x49\x47\x49\x12\xaf\x6c\xce\x90\x2f\xd1\x2d\x8c\x67\xa3\x30\x86\xf2\xf0\x19\x3f\x61\xba\xd1\xc0\xe5\x70\xe8\xc1\x8a\xb6\xa7\x1d\x30\x92\xea\x4e\xa3\x04\x9d\x5a\xaa\x7b\xee\x0a\x97\xaf\x2b\x65\xd8\xf3\x3e\x0f\x9b\x75\xf4\xf9\xf1\xb3\x16\x5a\x67\xa3\xc2\xad\x39\x37\xf4\x6b\xb0\xe9\xc1\x37\xbc\x2e\xdb\xd9\x9a\x52\xff\x52\xb3\xe8\xf6\xa3\x15\x97\xff\x71\x89\x46\xd0\xfd\x2d\x47\xd5\x43\x96\xb6\x0e\xef\xca\xc1\xd2\x29\xd8\x41\x24\x6e\x55\x05\x25\xb4\x40\xd6\xe2\x62\xd9\xce\xcc\x63\xe1\x10\x8c\xbd\x65\xe5\x42\x78\x7b\xaa\x15\xba\x9d\xa7\xea\x92\xd4\xa4\x1a\xad\x6c\x19\x7e\x66\x4c\xb2\x7b\x67\x48\x06\x69\x3d\xce\xa0\x89\x35\x1b\x2c\xb8\xaf\x8e\x43\x3c\x81\xc5\xd5\x44\xea\x69\x4e\x7d\x32\x01\xbb\xe9\xbc\xe6\xba\x93\x5d\x04\xb9\x44\xeb\x28\x4c\xc7\x9a\x4b\x4d\x57\xce\x56\x11\x24\xc2\xae\x3b\xd4\x78\x07\x4c\x4a\x15\xca\x24\x41\x43\x01\xf5\x6c\x8b\x2b\x6e\x83\x61\x94\xc6\xae\xf8\x2a\x29\xf3\xfc\x0d\x94\x9b\xad\xb7\x1d\xf2\xe1\x27\xd1\x2a\xd6\xba\x50\x8b\xf5\x4d\xaa\xf5\x08\xbd\xc8\xeb\x2d\x72\xa2\xbd\x46\xd8\x96\xab\x28\x89\x63\xa5\x52\x5d\x0a\xb5\xdf\x90\xdd\xc6\x5a\xb4\x24\x1e\x64\x22\xe6\x26\x28\x5a\xc5\x9a\x5e\x1c\xfd\x5b\x2f\x7b\xc9\x3a\x99\xc8\xc4\x09\x30\xac\xe4\x5d\xc0\x8e\x80\x8a\x82\x8b\x25\xfe\x1c\xb2\xe7\x4a\x82\x68\x51\x03\xfd\x43\x4f\xa4\x1d\x66\xc9\x66\x51\x6e\xe6\x2e\x75\x94\x4c\x1e\xa7\x98\xe9\x38\x97\xf3\xa2\xee\x5a\xb4\x6a\x76\x7a\x75\xbc\x9a\xb0\xad\xfc\xe6\x48\x10\xa1\x7b\x42\x83\xe3\xa6\x8c\x14\x54\x96\x76\x89\x5e\x80\x07\x75\x2d\x1c\x0a\xcc\x66\x4f\x7d\x83\x94\xa2\xfe\xed\x54\x6b\x69\xff\x7e\x21\x70\x48\xf1\x15\x49\xff\x2d\x64\x78\xdc\xe3\x07\x9b\x6c\x1a\x49\x5e\xa5\xb1\xe5\x28\x0d\x71\xa3\x49\x73\x87\x67\x70\x8f\xa4\xd5\x7e\x30\xc5\x90\x3d\x3c\xbf\x54\x85\x26\xbd\x58\x81\x1d\x54\xd5\x39\x4e\x88\xfd\xe3\xb4\x29\x14\xa5\xeb\xa9\x5e\xa2\x91\xd4\x64\x38\x5a\x39\x2c\x4c\xfa\x3c\xea\xae\xb9\x52\x9f\x72\x9d\x59\x74\x40\xf1\x67\xc3\x32\x1e\xc4\x16\xc6\x2d\x04\x05\x86\xe0\x8d\xa5\xac\x50\x3d\x61\x25\xa5\x1f\x4e\x4d\xb5\x5f\x6d\x76\x5c\xae\xce\x6f\xa8\x14\xe1\xf5\xea\x71\x0d\x93\xee\x20\x3c\x48\x6d\x3f\x25\xa7\x7f\x7f\x42\x79\x55\xb4\x9a\xcd\x05\xe3\x72\x6c\xdd\x26\x03\x47\x13\x0a\x81\x38\x72\x65\x60\xa5\x4c\x5b\x35\x2c\xa1\x2b\x2e\xd5\xb0\x13\x4f\x45\x71\x54\x7a\x42\x60\xc7\x61\x5f\xe4\x81\x42\x73\x6d\x46\xb2\x39\x3d\x9e\x10\xc2\x71\x09\x68\x20\xfe\xfd\x54\x53\x59\x39\x99\x92\x9f\x79\x07\xe3\xe5\x79\xff\x1f\x13\xc6\xa3\x71\x0e\x90\x0f\x70\xd3\xca\x9b\xd3\x13\x1f\x82\x0c\x93\x28\x4e\x93\x4d\x49\xaa\xac\xf7\x55\x7d\x3b\x03\xa7\x15\x34\x50\xeb\x43\x2b\xed\xd1\xd4\x43\x98\xf0\xf5\x78\x51\x7a\xec\x31\xa2\x03\xd7\x8b\xbb\x71\x0a\x60\x87\x35\x8f\xbe\xab\x61\xa9\x9e\x4d\xed\x09\x07\x0e\x34\xd3\x68\x30\xe9\xc7\xa8\x05\x1b\xab\x0b\x4f\x4b\xec\xe4\x6e\x10\xa7\x71\xd1\x75\x0a\x4f\xc6\x9b\xc4\xcd\xe8\xf1\x54\x59\x6a\x79\x5e\xcc\x03\xd8\x37\xf1\xa3\xc9\x9a\x5e\x20\x5b\x5d\x25\x3f\x8e\x60\xc4\x8b\xde\xbf\x8f\x91\x3c\x75\xe3\xd8\x98\xe3\xa5\xc0\x57\x3e\x36\xb5\x8e\x3c\xdf\x2c\xca\x2a\xe4\xf1\x8d\x9e\x86\x16\x9a\xcd\xbb\x3f\xb4\x15\x93\x48\x9a\xdf\x7e\x2b\xd6\x9a\x87\x9e\x54\x93\xc9\xa6\x7a\x54\xc6\xc5\x4a\xd4\xf5\xb6\x67\x86\xa3\xab\x2e\x44\x8f\xa7\x8a\x86\x0b\x87\x9a\xa3\xe1\x50\x31\xf4\xea\x94\x21\xf3\xc0\x5c\x33\x42\x49\x73\x2d\xcb\x5d\x84\x9a\xbb\x69\x15\xca\x95\x58\x59\xb9\x46\xdd\x75\x90\xe5\x6e\x86\xc4\xe0\xa1\xee\x8a\x3d\x6b\x1b\x7b\x16\x2a\xb0\x8f\xb5\x6b\x2e\xac\xdc\x1c\x1a\x36\x08\x1b\x18\x76\x6c\x3d\xf6\x58\xfd\x6e\x26\x56\x39\x16\x3b\x79\x2f\x86\x1a\x62\x6a\x96\xf4\x14\x00\x8e\xbe\xee\x3d\x5c\x03\xe0\x1e\x73\x52\x9e\x47\xfc\x71\x81\xf3\xd5\x15\x6d\x9b\x2d\x78\x5d\x66\x19\x3a\x74\x62\x7c\x0c\x08\x7b\xa2\xbf\x71\x7d\xaa\xc0\x27\x50\xc0\xc8\xe5\x59\x1a\x8d\xca\xb8\x1b\x25\xbb\x82\x75\x74\x36\x94\xc8\x04\xbf\x8e\xf2\x83\x1e\x53\xf5\xa0\x1b\xe5\xbd\xd8\x10\x7d\xca\x08\xc0\x3b\x30\x7a\x80\x5d\x75\x52\x2d\xe6\x9b\xfa\xf0\xd0\x79\xbd\x2b\x53\x55\x8f\x49\xb4\xae\x17\xaf\xac\xb8\xdc\x73\x24\x35\x27\xbf\x4e\xfa\xed\xba\x8b\x9b\x22\xc1\xb4\x3c\xd2\x52\x73\x94\x6e\xc4\x49\xe2\xc3\x57\x74\xd0\x6f\xc9\x74\xd0\x63\x2a\x78\xf7\x5c\x12\xaf\xbb\x1c\xc6\x79\x78\xf6\x0f\xe4\xe7\xf4\x98\x99\xdb\x17\xd1\xac\xb7\x96\x11\x11\x98\xca\xac\xb7\x8a\xbc\x08\x5b\xa7\xe2\xce\xf5\x64\x8b\x57\xd8\x22\x85\x78\x25\x5e\xfa\x15\xcc\x34\x3d\x99\x4a\xe2\x0f\xcf\x2f\x36\x4b\x97\xe7\x59\x95\x67\x36\x42\x82\x73\x4c\x5e\x8a\x1e\xb3\xa4\xa6\x2b\xe2\x74\xa2\x14\x31\xe6\x52\x04\xcd\xe4\x28\x57\x67\xa0\x17\x3c\x87\xac\xe1\x65\x7c\x4f\xfa\x46\xf5\x37\xfe\xd2\x5f\x28\xe6\x82\xc7\xfe\x6d\x56\xb7\xbd\xd9\x22\xf3\x1f\x00\xf4\x2d\x02\x93\x9b\xc2\xc3\xbe\x31\x15\x7a\x88\x77\x40\x94\xe7\xb1\xad\xaf\x3e\x02\xa5\xee\x72\x4d\x57\xb4\x9b\xa5\xdd\x64\xe4\x75\xf4\xd4\x43\xbe\x15\x40\x98\x81\x18\x90\x8d\x72\xe0\x61\x50\x0b\x47\x0e\x3a\xb3\x45\x63\xea\x91\x2d\xb9\x78\x09\x0d\x57\xff\xa4\x94\x87\xb1\x9b\x4d\x8b\x0d\xee\xdf\xdf\x5c\x4d\xa2\xdc\xa6\x3f\x61\xef\x4d\x39\xe8\x34\x3d\x58\xb7\xee\xf2\xcd\x27\x08\x1b\x8d\xe1\x44\x32\xec\x66\xf2\x79\x7d\x1c\xda\xaa\x6a\x64\x83\x25\x1a\xd8\x50\x6f\xdc\xf3\xe2\x62\x60\x47\x57\x37\x8e\x50\xe4\x07\x2d\x76\x9b\x15\xa3\x08\x83\x5e\x90\x77\xe8\xf5\x56\x70\x0e\xd7\xbd\x18\xf3\xe8\x56\xad\x38\x7f\x1e\xad\xce\x04\x70\xc8\xe5\x16\xb1\x2d\x61\x74\x88\xfe\xf0\x4f\xeb\x04\x05\xba\x59\x32\x1a\x98\xa1\x98\xc9\x35\x87\x31\x75\x91\x86\x69\x37\x89\x8a\x42\xe2\x62\x60\x11\x55\xd5\x01\x13\x0b\xfc\x58\x35\xf5\x6f\x85\x84\xe3\xbd\x49\x33\x02\x52\x56\xfb\x11\x31\x96\xca\x2a\x28\x0a\xa2\x14\x17\xc9\x6f\xe8\xe2\x04\x29\x6d\x18\x7d\x87\xec\x69\x80\x85\x30\x91\xcc\xa7\x48\x1a\x3b\x4e\x5d\x6f\x8e\x45\xad\xbe\x8b\xeb\xf0\x42\xc7\x8b\xd6\x4b\x78\xb4\x1d\x04\x3f\x74\x07\x05\x64\xee\x5a\x0d\x6e\x52\x34\xef\xba\xe5\x4c\xd8\x83\xfe\x90\xa4\x20\x4e\x11\x47\xf8\xe2\x54\x87\x65\xe9\xa5\x83\x3b\x38\x36\x18\x1f\x77\x59\x0b\xf4\xee\xd4\xf6\x2a\xf3\x2e\x2b\x80\x59\x45\x8e\x70\x64\x4c\xc6\x14\xff\x8a\x84\x1d\x3e\xa6\xb0\xbd\xcc\xca\x28\xd9\x57\xbd\x08\x96\xe5\x47\xbe\x7b\x99\x48\x60\x97\x5b\xd4\x71\xb9\x8d\xb1\x83\x54\x54\x69\x18\x0a\xa5\x6a\x05\xba\xe8\xae\xb6\xe0\x01\x90\x05\x7d\x2e\xc3\x5e\xff\x63\x8b\x64\x86\xd5\x61\xd0\x70\xab\x01\x17\x24\xea\x7d\x1b\x71\xe1\x66\xc8\x78\xf3\x28\x3d\xbb\xbb\x84\x8d\xbf\x32\x0e\x3e\x71\xa3\xb4\x18\x15\x43\x67\x96\xdb\xaf\xf8\xbb\x26\xa1\x85\x8f\x29\x95\x53\x41\xd0\x7d\x81\xe5\x76\x43\x22\x19\xdc\xde\x0f\x25\xec\x42\xe3\xe7\x1e\x8b\x80\x5c\xa4\xfa\xee\x6e\x60\x1a\x48\x52\xec\x60\xa8\xd9\x05\x8e\xe5\x13\x5b\xac\x82\x7a\x89\xa4\xad\x1a\x68\xf2\x63\x62\xec\x6e\x3f\x41\xea\xf2\x23\x78\x73\x99\xf0\x3c\x77\x94\x42\xd1\x51\xb8\x52\x8f\x13\xdf\x5c\xd5\x39\x80\x75\xd9\xb5\x45\xa6\x1c\x2a\xee\xc3\xb6\xc5\x28\x4d\x7c\x80\xb7\x0a\x08\xc1\x07\x54\xff\xbf\x3f\x0e\x16\x22\xe7\x24\x9b\xc5\xdb\x9a\x13\x2c\x05\x76\x82\x86\x0a\x04\x7a\xe5\x13\xe3\x7e\xff\x9f\xcf\xb6\x77\x66\x97\x8b\x8b\xd5\x10\x97\x57\x14\x75\x12\x47\x5d\xb0\xcf\xb1\xee\x19\x28\xde\x36\xaa\xef\xc4\x69\x97\xb4\x4c\x4e\x0a\xd4\xde\xd4\x5b\xc8\x9f\x2c\xcf\x86\xc3\x2a\x17\x5a\x36\x92\x35\x90\x4f\xe6\xdc\xb3\x73\x5d\x3b\xf4\x12\xf0\x3e\x5d\x21\x83\x6e\xa3\xad\xc2\xd8\x05\x53\xd4\x99\x12\x5c\x9c\x6f\xae\x44\x71\x52\xb0\xb7\xd5\xa7\x63\xd2\x20\xff\x34\x28\xc0\xbb\x44\x38\x6c\xe1\xab\x3f\x1f\x93\x22\x1a\x24\x3a\x8d\xf7\x31\x81\x34\x88\x8b\x47\x44\x53\x09\x25\xc6\x33\x54\x6e\xbc\x86\x8d\x46\xff\x03\xa3\xcd\x67\xc6\xd5\x10\xf0\xdc\x7a\xaa\xc0\xe3\xf5\xa0\xe1\xf7\x8e\xfc\xaa\xea\x46\x91\xb5\x57\x2f\xeb\x96\x79\x9c\x02\x21\x88\x9b\x7f\x15\xdf\x68\x3d\xfa\x06\xc9\x50\x92\x80\xf4\x70\x98\x29\x6f\xbd\xba\x16\x93\x9a\x0a\xd3\xf3\x78\x9d\x1f\xd5\x46\x9c\x4a\x59\xfe\x95\xed\x2f\xd8\x65\xf4\x0e\xad\x54\x97\x68\xf1\xef\x67\xa3\x7c\x2f\x49\x52\xde\xd4\x5b\xc2\xfe\x7f\x07\x53\x13\x25\x53\x60\x5d\x91\x79\x7f\x42\x1e\x34\xf7\xc9\x77\xf0\x1f\xe3\x37\xf1\xa8\xce\x92\x36\x7e\x27\x4b\x7b\x7d\x89\xdf\x51\xc3\xc3\x63\x52\xab\x79\x3d\xa1\xa2\xe1\x46\x5c\x48\x13\x27\x9d\x61\xb0\xe9\x79\xd6\x72\xc5\x76\x81\x20\x61\x7b\x0a\x01\xb2\x7f\x7f\x33\x5a\xcd\xb3\x6e\xdf\x0d\xaa\x50\x5d\xc6\x39\x06\x07\xe4\x34\xf5\x78\x2b\x44\x21\xab\x79\x36\x1a\x3e\x35\xe3\xfd\x82\xbe\xf1\x74\x5b\x96\x60\x25\xd2\x60\x20\xfa\x39\x1d\xda\xc1\x3f\x21\x08\xae\x79\x27\xa0\x6b\xf6\xe8\x56\x20\xac\x3c\x9c\x70\x0a\x6e\xec\xdf\xaf\x83\xe6\x08\xc3\x8d\x1a\x5b\x84\xcf\x3a\x4e\x98\xc9\x5b\x12\x93\x58\xc8\x56\xcd\x53\x80\x7b\xde\xc3\xfe\x61\x5c\x6e\x9b\xd9\x9d\xd1\x77\xbe\x43\x44\xa5\xeb\x44\x54\xba\x4e\xb4\xe7\x61\x24\xad\x35\x6d\x94\xce\xa2\xb3\x8c\x88\x08\xa9\xb0\xfe\x07\x20\x60\xfa\x1f\xad\xd0\x47\xe8\xc5\x05\x0c\x25\xe5\x5b\x00\x11\x39\x49\x3b\xd2\x11\x59\xe1\x48\x04\xd0\x30\xf0\xbb\xdb\xc1\xc6\x72\x30\x08\x32\x7b\x2a\xa3\x82\x9b\x32\x4d\x95\x2f\xd3\x42\x2f\xca\x48\xc5\xab\x10\x7a\xfd\xa3\x1d\x6c\xaf\x45\xab\x42\x5c\x23\xd6\xd2\x43\x8f\x87\x11\x52\x62\x5e\x66\x05\x5a\x99\x78\x9e\xaa\x5a\xe5\xe5\xac\x7c\xb0\xf9\x23\x92\x94\x9b\x8e\xb4\x97\xe7\x97\x9b\xae\x9b\xb8\x6e\xa9\xb0\x7d\xa5\x4f\x53\xfb\xef\xf8\x44\x4f\xb3\x5c\x7f\x44\x6e\x18\x91\x19\xeb\x7b\x20\x66\x44\xf2\xb1\x5b\xea\x9d\xd8\x09\xee\x10\x9a\xfa\x0e\x93\xde\x77\xb5\x43\x29\xfd\x34\xe1\x73\x76\x6d\x05\x44\xe1\x5f\x79\x71\x51\x2e\x0b\xcb\x86\xfa\x14\xea\xc9\xa4\xc0\x72\xe9\x9e\x20\x22\xbc\xe6\x2e\x7a\x82\x09\x07\x32\x62\xa3\x4d\x41\xf2\x44\xc1\x39\x48\xf0\x7f\x82\x10\x46\x0d\xf0\x5b\xa1\xc4\x7c\xa4\x15\xca\x79\xef\x48\xb8\x6a\x26\xf9\x21\x32\x54\xd5\x14\x2c\x97\x7b\x31\x34\x11\x49\x3f\xb9\xf5\x94\xaf\x43\x97\x7d\x71\x49\x96\x4b\xf6\xde\x77\x64\x84\xd7\x7a\xcc\x2f\x40\xff\xc5\xb3\xd5\x8f\x9a\xf5\x00\xa6\xa9\x3a\xfd\x62\xeb\x00\x3c\xec\x14\x06\x1f\xde\xf4\x77\x31\x39\x71\xcb\xf7\xb0\x8b\xa2\xb4\x3c\xbb\x25\xf7\xa6\x64\x9b\x56\xd0\x9d\x40\x35\x18\x69\x0c\x78\x69\x58\x3c\x67\xe0\x17\xa4\x70\x72\x99\xce\xaa\x13\x84\x94\x50\xe1\xf0\xf2\x34\x26\x29\x3c\x6a\xd0\x8d\x97\x86\x89\xb5\x4d\xf6\x4f\x8d\xad\xea\x89\xa3\xc7\x71\xb4\x45\xb2\x9b\xc7\x5b\x61\xf5\x2d\xf3\x28\x2d\x56\x5c\x2e\x33\x2d\x88\xac\x9d\x6f\x91\x16\xdb\x34\xb8\x62\xe1\x50\xb3\x70\xa8\x47\xc9\x8f\x9b\xf5\x7e\xc3\x6b\xda\x5e\xf3\x3d\x81\x6e\x5c\xc6\xae\xf8\x8d\x3f\x1f\x75\xcc\x4c\x0a\x8b\xfa\x04\x67\xfb\x38\x69\xb9\x14\x1b\xda\x30\x0b\xa9\xcb\x4d\x36\xd0\xbc\x59\x97\xcf\x0e\x73\xd7\x8d\x0b\x83\x3a\x69\xc5\xbf\x15\xd8\xf9\x1f\xf8\x74\x36\x77\x3d\xb7\x12\x5c\x23\x75\x42\x61\x25\xb3\xd9\x55\x37\x8d\x07\xd9\xc0\xa5\xe5\x68\xd0\x08\x68\xea\x93\xd4\xc6\x3b\xe9\x55\xb0\xa2\x6e\xd7\x0d\xcb\x3d\x13\x88\x34\x19\x20\xc8\x0c\x20\x80\xec\x7b\x12\x3e\x5e\x7a\x4c\xa2\x3b\x8c\x89\x47\x24\x87\x56\x27\x51\x32\x15\x2b\xf3\x51\xb2\x89\x65\xc9\x8b\xe1\x05\x85\xe6\xf7\x48\x1c\x17\x50\x28\xd4\x6f\x3f\xad\x82\x75\x8b\xf2\xe1\x8e\x01\xf4\x43\xe0\x29\x93\xb4\xda\x7b\xbe\x7b\x99\xbb\x6e\xb6\x9a\xc6\xdf\xf1\x41\xa3\x39\x3a\x86\x9e\xea\x89\x3a\xe9\xe2\x5e\x94\xa3\x94\xac\x2b\x2e\x39\x72\x9e\xe0\x66\xe4\x46\x14\x2b\x21\xff\x15\x4d\xee\x34\x94\x47\xee\xba\xbb\x4d\x5e\x37\xdc\x0b\xda\x70\x09\x14\x59\x96\xe7\x97\x75\xa5\x51\x4d\x42\x3d\xa1\x77\xbd\x9e\x25\xeb\x71\xba\x3a\x1b\xa8\xe3\x3f\xc1\xa4\x46\xa8\x7d\x99\x0a\xbb\x4f\x51\x71\x79\x96\xd6\xc8\x6e\x9c\xec\xc5\xc0\x35\xa9\x9a\x80\x64\xd1\xad\xd1\xfa\x73\xd5\x97\x59\x33\x82\xf6\x8b\x0f\x31\xd4\xb1\xf7\xdf\x14\xec\x81\x51\xd7\x9f\x21\x58\x50\x9c\x96\x46\x51\xc2\xd6\x70\x87\xf8\xdb\x77\xa6\x40\x73\x07\x0e\x34\x8b\x6e\xdc\x20\xa0\xdc\x99\x16\x6f\x17\x35\xe6\x39\xab\x2e\x75\x79\x94\x48\x57\xc2\x5b\x2f\x2d\xd2\xf5\x2f\xcf\x7b\xad\x52\xda\x0a\xde\x67\x66\xe0\xca\x4a\xdc\x75\xf9\xa3\x8d\xfd\x0b\xdb\x97\x5b\xa4\x10\xaa\x15\x11\x0c\xe6\x1f\xcb\x95\x63\xe1\xdc\xd7\x9e\x58\x93\x96\xe7\x61\x89\xad\xcf\xe6\xc2\x78\x4a\x67\x4d\x31\x87\xc4\x59\xe9\x8c\x7a\xab\xe2\x18\x33\x13\x4a\xde\x17\x10\x77\x19\x18\xa6\xe1\x25\x2d\xae\xd5\x29\x0d\x74\xe2\xa4\x93\xbb\x4d\x8a\xf6\xb4\xea\xa1\x27\x35\x36\xc0\xcd\x28\xcf\x46\x69\x6f\x4f\x68\xa0\xee\x6b\x07\xdc\x12\x22\x4e\x55\xa3\x1f\x93\x88\xce\x8d\x49\x8c\xaf\x57\x7c\x3d\x4b\x75\xad\x3c\xcb\x8a\x52\x4a\x9c\x6a\x3c\x4d\x4a\xc3\xf7\x77\x6a\xab\x1f\x9e\x5f\x6a\x3e\xff\x74\xc3\xcb\xdf\xfc\xc3\x31\x61\x7a\x3f\x69\x91\x14\x20\x06\x20\x1e\xdf\x49\xc9\xa3\xbd\xdf\x5f\xb5\xb4\x13\xa0\xfe\x05\x0d\x30\xfe\x9d\x6c\x50\x48\xa2\xae\xb4\x48\x6d\x52\x45\xa9\x8c\x93\x1c\x24\x93\x74\x8a\x22\x68\xfa\x39\x2a\xba\xd8\x06\xdf\x6d\x05\x9d\xb1\xb7\xb1\xc3\x23\x44\x7a\x5f\x22\x14\xe4\x0d\x47\xc9\xdf\x3a\x89\x3b\x32\x1a\xe5\x3d\x60\xe1\x3b\xa2\xfb\x2f\x06\xa1\xf2\xe3\xcd\x62\x36\x94\x6c\xcf\x8e\x1f\x0f\xe5\x87\xe2\xeb\xa8\x6f\x63\x9e\x7c\x2c\x8f\x12\x73\x00\xaa\xfc\x56\x44\xaa\x35\x4f\x5c\x98\x99\x10\xd5\x91\x27\x8b\xfe\xef\x83\x09\x9d\x0f\x4a\xbe\xca\x32\x2e\x47\xbd\x2a\xb8\xa8\xb6\x48\x0f\x40\xae\x9e\xb0\x2d\xf7\xb6\xf7\xb9\x74\x35\x4e\x9d\xcb\xab\x69\x8d\x1b\xab\x35\x0f\x7e\x8e\x90\xa2\x49\xdc\xcd\x86\xa5\xcb\x8b\xb9\x00\x48\xbb\xdf\x22\xba\xf9\x69\x12\x9f\xba\xca\xb2\x41\x93\x84\x86\x69\x39\x37\x11\x55\xf2\x95\x7c\x34\x21\x6e\x50\x43\xe2\x06\xad\xcd\xd0\xb7\x2f\x1e\x95\xe7\x81\x8b\x50\xde\x1d\x46\xd7\x7b\xb8\x22\xc3\x95\x57\x83\xc8\xf4\xa0\x02\x39\xf2\x16\xb6\x3d\xe0\xab\xdf\x1c\x07\x64\xe4\xc3\x16\xd1\xcd\xc6\x21\x81\x39\x31\xc1\xc5\xcd\x36\x50\x89\xc1\x8a\x82\x02\xaf\x1e\xd7\x94\xe3\x96\x9a\x65\x96\x4c\xd0\x88\x8e\xb4\x88\x46\x74\x84\x33\xdb\x78\xb5\xff\x04\x57\xba\x03\x6c\xf5\x0a\x46\x9c\xc7\x08\x1f\x9e\xd7\x4a\xb6\xfa\xbf\x19\xa6\xab\xba\x16\x94\x06\xaf\xb3\xba\xdf\x3f\x97\x20\x17\x65\xa9\x73\xf2\x54\x94\x84\x8f\x4b\xc1\x9c\xd3\x55\x13\x35\xcf\x59\xa4\x92\x1e\xb6\x18\x70\x79\x67\x6a\x9b\xb5\xd1\xa8\x28\xf3\x28\x89\x23\xcb\x7f\x4d\x3d\xb0\xba\x1f\x4c\xb1\xd9\x2d\xca\x7f\xf7\x4e\xc9\x42\x2e\x1c\x6a\xae\x66\xeb\x2e\x4f\xb3\x7c\x66\xc2\x1a\xba\xe1\xad\xc8\xef\x52\x65\xe6\x0e\x11\x21\xfb\xd9\xb0\xda\xaf\x43\xb5\xed\x16\x41\x55\x94\xf6\x63\x06\x14\x44\x95\x2a\xf3\x68\x54\x14\xb3\x9c\x27\xfd\x87\x65\x56\x35\xb1\x45\x39\xca\xd3\x19\x66\xa3\x35\xbc\x72\x29\xa8\xf2\xb6\xab\x10\x25\xbb\xdb\x1d\xe5\x51\xe9\x92\xcd\x59\xee\xc4\xc9\x25\x58\x2b\x4e\xde\x21\x1e\xe5\x35\x56\x65\xbc\xd6\x7a\x36\x80\xe3\xd6\xa3\x64\x24\xa1\xd3\x4c\x30\x4c\xbf\x38\xa6\xa8\xf9\x93\x71\xa0\xa9\xde\x6c\x85\x74\x7a\xd3\xa5\x8f\x54\xab\xb1\xb5\xa9\x08\x9c\x45\xc5\x97\x89\x04\xe3\x0a\x96\x22\x3d\xc1\xf3\xf2\x2c\x04\x2f\xf5\xf1\xa9\x0c\x5d\x7c\xeb\x49\xd2\x73\x88\xbf\xb9\x32\x13\x2c\x15\x81\x17\xb4\xb8\x3c\x40\xea\x8e\x12\xae\xbe\x9f\xf5\x0c\x18\x66\xf0\xea\xd0\x37\x39\x4f\xed\xb9\xdc\x0d\xa2\x7c\x6d\x86\xec\xc2\x7f\x30\x0e\x90\x1d\x14\x93\x10\x86\xdd\xaa\xc3\x24\x0f\x47\x79\xb7\x1f\x05\xe7\x1c\x75\xb2\xa3\x7c\xf8\x0f\x08\x8f\xb8\x9a\x44\x83\x2c\xcf\x46\x05\x62\x3d\xed\x8e\x91\x14\xf9\x05\x0a\x8e\x57\xf3\x28\x2d\x51\xb1\x32\x17\x32\x4c\x11\x3d\x93\x1b\x02\x02\x67\x8f\x84\x24\xc6\xe0\x25\xf2\xc6\x71\x8c\x04\x6c\xa7\xef\x53\xa9\xe3\x9e\xa7\x4a\xf4\x36\xd3\x68\x10\x77\x55\x27\x00\x5b\xdf\xbe\x36\x63\x48\xb5\x37\x86\x0c\xf5\x3c\xe9\x31\x3f\x08\x02\x77\x6b\x9b\x1b\x51\x0e\xbd\x3a\xec\x02\x18\x15\x7a\x4c\xd0\xf7\x5e\xbc\x1a\x97\x06\x09\x62\xb1\x39\x3d\xf6\x69\xc7\xba\x4b\xd6\x9d\x5a\x92\x78\x7f\x3c\xc2\xe9\xd7\x90\x18\x7a\x59\x9a\xba\x24\xd1\xb0\x48\x49\x1c\x63\xe2\xf1\x7e\x46\x35\x9d\x61\xee\x0a\x97\x4a\xc7\xbc\x5a\xb1\xb0\x12\xdf\xa5\x82\xef\xdd\x31\x71\x1c\xce\x23\xe1\x34\x2e\xb7\x5d\x64\x91\x64\xa3\x6e\x7f\x26\x14\x7b\xef\x4e\x0c\xb3\x30\x7d\x4e\xfb\x3f\x29\xfb\x79\xb6\x51\xec\x54\xe3\x5d\x30\x8d\x4c\xae\xbe\xdd\x27\x43\xd5\x6a\x89\xeb\xbb\xa8\xc7\x0e\xfc\x0a\x24\xd2\x93\x29\xec\xe9\xf2\x7c\xd3\x0d\x3a\x51\x9e\x47\x45\x61\xe9\x21\x86\xd9\x87\x94\xbb\x7f\x58\x67\x1b\xd6\xcb\x36\xd2\x32\xdb\x48\x67\x02\x62\x51\x39\xb8\x98\x76\x1f\x8f\x83\xce\xf9\x1b\x53\x4d\x5c\x2b\x5c\xa5\xae\x9c\x0d\xf8\xfe\x19\xd2\x5b\x8b\x9f\x16\x87\x61\xc3\xcb\x34\xbc\x38\xdd\x6c\x3b\xe4\xf2\xa3\x34\x5e\x77\x79\x11\x25\xc9\x26\xa9\x2d\x2a\x19\x54\xe5\x45\x5b\x81\x7a\xf1\x8e\x37\x83\x19\xc6\xae\xeb\x66\xc3\xaa\xaa\x25\x09\x65\xbb\x13\x6a\x06\xc6\x84\xa6\x0d\x46\x32\x89\x31\xe0\xe7\x86\x9c\xa1\xda\xe3\x29\x32\x15\x1a\xa5\x49\xbc\xe6\x04\x75\x8f\x38\xee\xaa\x0c\x1f\x3d\xae\xd3\x50\xe9\xf6\xa3\x38\xd5\x32\x8e\xb7\xf6\xa9\xae\xcd\xbc\x92\xbf\x46\xcc\x9d\xc8\xf0\x73\x09\x06\xf4\x1f\xef\xa2\xff\xab\x5f\x93\x05\x08\xc1\xde\x9e\x2d\x7a\x59\x8a\xfc\xc3\x2e\x74\x8e\x10\xa1\x20\x7f\xa0\xf4\xff\x4c\x3b\x2c\x27\xef\x8e\x43\xac\xbd\x2d\xa8\x51\x03\x9b\x90\x54\xc1\x13\x5b\xa4\x94\xf9\xf6\x98\x4b\x21\x4a\x8d\x44\x4c\xf7\xd9\x38\xe8\xf8\x5f\x95\x08\x04\xa9\xe6\x3b\x40\x6c\xea\x87\xe4\xc1\xa1\x2f\x77\x16\x8f\x1b\xf9\xdc\x6f\x8d\xa9\x57\xa1\x50\x68\x59\x54\xbe\xf9\x4c\xbb\x8a\x4d\x7c\x4b\xf4\xd7\x7e\xdd\xf3\x28\x25\x86\xb7\x16\x6c\xe8\x71\x0d\xaa\x69\x30\xc3\x30\xb0\xea\xce\x30\xb8\xc1\xba\x36\xe9\xd8\xc0\xde\x4d\x63\xad\xa8\xa3\xb6\x7d\x94\xd0\x1f\x47\x89\xc8\xbc\x12\x47\x7b\xaa\x2f\xb3\x08\x20\x68\x02\x6a\x41\x03\x4b\xf3\x4f\x39\xa5\x84\x24\xaa\x1e\x8f\x03\xde\xff\xde\x54\xea\xb6\xf4\xd2\xc1\x66\x27\x8f\xdd\x0a\x49\xf8\x7f\x46\x12\xfe\x9f\x91\xfa\x50\x2f\x2e\xba\xf1\x30\x89\x53\xd5\xc5\x47\x2c\x73\x93\x1d\xab\x20\x6a\x66\xb2\x1c\x35\x96\xa8\x12\x94\xa0\xb5\xa2\x17\x7e\xa3\x45\x72\x17\x1f\x73\x27\xf9\x62\x1d\x2f\xaa\x3b\x4a\xca\x51\xae\x2c\x48\xed\xe8\xc9\xb6\x61\xdd\x3d\xef\x4c\x90\xe5\xae\x28\x61\x76\x66\x4a\x66\x3b\xb1\x8d\x66\x94\x14\xc2\xb6\x8d\x2c\x4f\x7a\x4f\x85\x16\xcd\xdd\x56\x20\x8e\xbf\x73\x95\xe9\x1f\x6f\x49\xd2\x88\x41\x0d\xc2\x0e\xde\xca\x9b\x18\x7b\x56\xe6\x93\x9b\xf3\xfa\x1d\x2f\xda\x7e\xd9\x68\x13\xed\x44\x11\x7e\x1e\x86\x57\x5d\xb2\x85\x20\xf2\xa4\xb0\xdb\xdf\x93\xd1\xae\x97\x32\x0e\xab\xe7\xec\x56\x90\xd1\xdf\x6a\xd4\x81\xc8\x44\xac\x86\x6c\x9d\x3e\x23\x5b\xa7\xcf\xc6\xcc\xcf\xf0\xc1\x06\x3a\xcc\xef\x61\x54\xe9\xc9\xd4\x6a\xfe\xea\xab\xcd\xdc\x75\xd7\x12\x57\xc0\xc4\x1b\x79\x0d\x0a\xab\xde\xd9\xe3\x5b\x2f\x9b\x04\xfb\x54\x90\xba\x3c\x2f\x70\xc7\xd9\xc0\x28\x78\x53\x52\x1c\x73\x7b\x0c\x78\x25\x0d\x3b\xad\x5e\xf3\x1c\x79\xb1\xac\x64\xf9\x40\x42\xcd\x7d\xf4\xac\x51\x59\xb0\x79\xce\x44\x7e\xc2\xd2\xc0\x9b\x1a\x4b\xce\x3d\x8c\x3c\xcd\x47\x5a\xd4\x33\x57\x97\x1f\xa0\x49\xee\x53\x0f\xe9\x5e\x2b\x58\xcf\x9e\xc2\x8b\xc2\x8f\x3c\xac\x71\xb3\x3c\xd8\x2c\x86\x2e\x2d\x01\xb8\x44\x99\xff\xde\x98\x50\x48\xc7\xf1\xfb\xaa\x14\x43\x3a\x08\x79\x94\xae\xcd\x92\x2f\xe3\xc5\x56\xe3\xaf\xfe\x65\x5f\x97\xa1\x1a\x0d\xae\xc0\xfc\xaf\x42\xb1\xac\xec\xbb\x2c\x8f\xcd\x2c\xc2\x24\x49\xab\xc7\xa3\xc0\xa3\x56\x68\x3c\xfd\xcc\x97\xa2\xd7\x5d\x5a\x8e\x72\x57\x64\x03\x47\x8c\x86\x73\xa4\xb7\x3b\x6d\x79\xfc\x7c\xb5\x07\xa5\xab\x26\x1c\x8a\xa4\x08\x6f\xc2\x8a\xc0\x72\x0d\x78\xd5\xbb\xda\x75\x0e\xa8\x29\x19\x46\xe1\x9a\x54\x1e\x5f\x4f\x6a\x44\xe4\x0f\x36\x0b\x57\xce\x52\xd8\xff\x6f\x5a\x64\xfc\x02\xa6\x28\xf6\x85\x7f\xc3\xb8\xef\x6d\xdf\xc5\x2a\x5d\x51\xc6\x2b\xb1\xf5\x40\xcc\x29\x7d\x42\x27\xe5\x09\xb2\x0f\x5d\xc5\x0e\xae\xab\x0a\x59\x4e\x5f\xa4\x10\x3b\xaf\x56\x29\x98\xdb\x22\xab\x3f\x8f\xd7\x8d\x55\x79\x46\xa2\x6a\xfa\x0f\x03\x0d\xdc\xc6\xa6\xa4\xff\x33\x4d\xe9\x5e\x6a\xae\x64\x23\x6f\x6e\x59\xab\x71\x5b\x97\xf0\x67\xa9\xf2\xa7\x90\x8a\x5d\xa6\x5c\xf0\x32\xa5\x36\x83\x51\xde\x53\x1c\xac\x6f\x4b\x11\x8e\x2b\xb4\xe3\xb3\x64\x73\x30\xac\x22\xfb\xb0\xb9\xbc\x35\x9e\x30\xda\xc3\xa6\xad\xf5\x4e\x94\x9c\xcd\xeb\xd9\x03\x34\x5d\x5c\x8c\x72\x88\xa6\xe3\xcf\x9e\x96\xb6\x32\x72\xff\x5d\xc8\xcd\x91\x72\xef\xde\x7a\x9a\x4c\x4c\x64\x13\xd9\xd7\xf0\x3a\x61\x5f\x48\x31\x17\x97\xa1\xa1\x20\x16\x63\xed\xba\x2a\xc1\x89\xbd\x5f\x2e\x4d\x9a\xe0\x05\xe8\x8e\xc2\xd8\xb0\xb9\x61\xba\x43\x99\xea\xba\xb6\xa5\xb1\xd3\x9d\x19\x07\x7d\xd2\x4b\xe3\x80\xb3\xef\x64\x9d\xb9\xc0\xf5\x57\xbb\x19\x4b\xf4\x1b\xe4\xdb\x4d\x2e\x68\xea\xa5\x80\x55\xf2\x12\x29\x7b\x67\x40\x25\xb3\xdc\xb5\x47\x40\x7d\x51\x4f\x22\x4b\xb2\xee\x1a\x75\x2b\xce\x8e\xe9\x21\x4e\x5b\x62\x3f\xdf\xcc\xdd\x6a\x94\xf7\xaa\x15\xbc\xe1\xb5\x2b\xcf\x43\xac\x48\x8f\xb7\x6a\x62\xff\x51\x5a\x0c\x5d\x37\x5e\xf1\x50\x4a\x43\x4a\x33\x82\xda\x77\x16\xb2\x22\xca\xe3\xc8\x62\x53\xef\x61\x19\x1a\xcd\xdf\xa3\xa2\x79\xcf\xa5\x9b\x9e\x76\x89\x2d\xea\x18\x3e\xab\x27\xec\x56\x11\xa5\x65\x24\x10\xda\x6d\x79\x34\xdb\x5a\xd8\x33\xac\x5e\x75\x17\xa6\x9f\x1d\xc6\x4f\x95\x94\xeb\x2f\xf8\x82\x1d\xd9\xf5\x5e\xa7\x44\x4e\x44\x08\x06\xa3\x3c\x6a\x84\x74\x4b\xa9\x65\x7a\x52\xbb\xd4\x0b\x72\x0d\x4b\xbd\x6f\xe8\xfb\x07\xf3\x73\xaa\xce\x5d\x66\xa7\xfb\x24\x89\xa3\xb4\xeb\xf0\x22\x54\xbb\x57\x42\x06\xd3\xf1\xf5\xae\x17\x99\x2b\xd5\x7f\x71\xa2\x9e\x69\x83\x84\xf8\xd3\x2e\x1f\x44\xa9\xee\x3b\x8b\xa1\xbc\xe8\x1b\xdc\x6a\xe6\x6b\x62\x83\xa1\x8d\xb0\xe2\x84\xfa\xeb\x7a\x7b\xab\x2b\x40\xed\xfe\xd4\x98\xc8\xf5\x97\xd9\xab\xf8\x98\x4e\x77\xb3\xc2\xab\x7e\xc0\x93\xa7\xaa\x1f\xd0\x13\xc4\x7a\x98\xb4\x21\xa7\xea\xb9\x61\x56\x92\x73\xb3\x0a\x8a\xe8\x09\x09\x8a\x88\x80\xec\xde\xc6\xf2\xd2\x36\x5c\x0a\x4c\x0a\x22\xa0\x3d\xcf\x42\xa8\x05\x79\xc7\x45\x52\x73\xfa\x48\xb2\x00\x94\x20\xce\xb0\xb8\xea\x35\x7f\x19\x9d\x68\x0d\x18\xf7\xc5\x60\x19\x42\x98\x87\x89\x76\x48\x60\xb3\x7d\x44\xcb\x67\x2f\x4e\x53\x97\x8b\x71\xa1\xf9\xae\xd2\xdd\x83\x69\xe8\x8d\x35\x5f\x0c\xc6\x9a\x64\x26\x93\xa5\x23\x88\x41\xd8\xae\xce\x3f\x5b\xa3\x5d\x51\xf4\xa3\x35\x57\x0c\x5d\x94\x1b\xf7\x10\xcb\xa0\x9a\x5e\xe8\x09\xe1\xe7\x8b\x0d\x95\x9a\x0f\xc3\xe7\x3c\x2d\x2b\xe7\xeb\x78\xb1\xc3\xac\x74\x69\x69\xda\x23\x08\xc2\x2e\x50\xf3\xe0\x82\xe7\x21\x44\x85\x88\x94\x78\xb2\x80\x0c\xf9\xaf\x3e\x83\x08\x15\xa3\x83\x09\xa4\x3a\x97\x50\x75\xda\x35\x55\x7f\x85\x6e\xf4\x30\xf3\x16\x04\x58\x7b\x6f\x60\x1c\xea\x89\xc7\x8c\xbf\x16\x75\xd7\x66\x42\x5f\xe5\x2c\xc9\x1c\x5d\x93\x47\x6f\xa6\x8b\x5f\x21\xd4\x6e\x9e\xc7\x65\x96\x6f\xce\x86\xde\xe6\x78\x4c\xf4\x8e\xe3\xe4\x18\x79\x01\x8b\xb9\xa1\x66\xa7\x05\xf9\x17\x9a\xbd\x51\xa7\x63\x4b\xa2\x66\x41\x2d\xce\x88\xc2\x06\x3a\xc8\xd2\x32\x77\xd6\xd1\x41\xd8\x07\xe4\x89\x67\x57\x7e\xeb\x65\xdd\x1f\xfe\x6b\xd2\x62\xba\x37\x15\x00\x2d\x1c\x6a\xae\x47\x8a\xae\x45\x79\xe0\xd1\x76\xe8\x28\xef\xde\x62\x21\xe1\x3a\x12\x6a\x3e\x2a\xca\x4d\x54\xaa\xbd\x03\xc8\x81\x03\x5e\x68\x69\x92\x07\x13\x5a\x0e\x51\x51\x3c\x21\x99\x02\x47\x91\x1e\x31\x5d\x3d\x41\x1f\xb9\x57\x7b\xbf\x05\x02\x61\x1d\x7d\x14\x1b\xb5\xa2\x59\x24\xee\x37\xd4\x2e\x16\x13\xf3\x1d\xa1\xb0\x09\xeb\x21\x5a\x47\x67\x04\xe6\xe1\x55\xc0\xbe\xbd\xa0\xf1\x85\x72\xc4\xac\xd3\xfa\x55\x96\x7f\x2b\x5c\xbe\x1e\x95\x71\x01\x64\x82\x09\xb1\x36\x48\xb9\xd5\xdb\x93\x45\x03\xf7\x48\x63\x71\x71\xfb\x4f\xb4\x27\x32\x0f\xb9\x19\xb4\x66\x7e\x1e\x5a\xce\xdf\x45\xcd\xc9\x6a\xc5\x44\x09\xba\x31\x91\xd0\xe0\xc6\xc0\x76\x9d\xa6\x72\x1d\x9e\x7f\xa5\x7a\xac\xa3\xbc\xda\x06\x66\xc2\x22\x8d\xd1\xeb\xaf\x20\x40\x31\x3e\x9c\x9a\xac\x55\xac\xb7\xe1\xa2\x35\xe7\x41\x1b\x1a\x55\xb0\x95\x1f\x47\xb3\xab\xd1\xba\x83\xd3\x86\x19\xe9\x84\xdf\xba\x45\xb2\x51\xe7\x88\xdd\x7a\x5d\x16\x2f\xfd\x4c\x8b\x70\x95\xd7\xa6\xfa\x30\xaf\xbe\xda\xcc\x86\x2e\xa8\x70\x53\xc9\xaf\xfa\x6e\xeb\x11\xd5\x38\x43\xad\x46\x71\xda\x20\x41\x40\x54\x68\xed\x6e\xbc\xac\x7a\x96\xac\x15\x32\x79\x31\xda\x14\x72\x8a\x11\xa6\x88\x27\x5c\x1b\xbc\x08\x54\x17\x93\xd6\x43\xc8\x84\x3b\xd4\x97\xd5\xf4\x81\x24\xb2\x2e\x40\x11\x46\x07\xfd\xea\x40\xbc\xb1\x00\x5f\x3a\x8d\x10\x12\x69\xc6\xef\x90\xcf\xe5\xf9\x31\x61\xbb\x4f\x8d\x09\xdb\x7d\xaa\x45\x64\x40\xf4\xcc\xac\xf4\x5d\x43\x05\x1c\xe5\x1d\x5d\xd3\x31\x7d\xcf\x11\x53\xe5\x5c\x9d\x6a\x59\xea\xd4\xbd\x19\x2b\xed\x36\xd9\x90\x6f\x4f\x4d\xfd\xc5\x6a\xea\x77\xe2\xb4\xc1\x32\xeb\x6f\x71\x67\xea\xad\x5a\xa6\x9c\xbf\x28\xdc\xb8\xb2\xcd\xf5\xa4\xf5\xcb\x5f\x52\xaf\xed\xbb\x28\x29\xfb\xdd\x28\x57\xab\x7c\x94\x0a\xde\x21\x40\xe7\x3b\x35\x42\x98\x41\xc0\x5e\x7e\x11\x13\x5c\x6d\x29\xf5\x84\xba\x67\x2b\x71\x9a\x44\xe0\xa6\x2e\xf9\xc4\x8d\xd2\x7a\xd6\x51\xef\xb9\xe4\x9b\x98\x20\xe8\x23\x9c\x1a\x93\xbf\xf2\xa9\x89\xe6\xaa\x8b\xd2\xa7\x25\xaa\xb0\xee\x78\x20\x35\xde\x45\x6f\x17\x20\x9c\xbb\x02\xe1\x43\xb8\x71\x8c\xf9\x5b\x67\x39\x33\x32\xa0\x3d\x90\x99\xca\x9c\xc3\x7f\xed\x96\x3a\x29\xc2\xab\xab\x52\xb4\xe0\xa6\x14\xb2\xee\xaf\xb4\x89\xb2\x72\xb6\x45\x15\x7d\x48\x6e\x79\x6f\x8b\xc5\xc5\xed\xfb\x2c\x11\x7c\xbe\xb5\x8f\xd8\xe4\x44\x41\xf9\x98\x49\x97\x1f\xd7\x64\x8f\xcd\x22\x96\x32\xb1\x9f\x64\x27\x5a\xc1\xb7\x63\x5a\xce\xbb\xfa\x83\x2c\x71\x9a\x6f\x2a\x0e\x48\x66\xd4\x97\xd9\x57\x2d\x1c\x6a\x76\xb2\xd7\x1b\xd5\xd3\xc3\xe6\x77\x96\x36\xc2\xb3\xb5\x35\xcb\xdf\x1c\xc5\x25\x98\xa3\xd8\x25\x00\x9c\xd2\xe3\xf1\x9f\xf9\x32\xa5\x9e\xee\x6f\x8e\xe2\x42\x2a\xdf\x33\xd4\x80\xb9\x4d\x89\xc2\x69\x3c\x0d\xe4\x82\x8d\x36\x71\xed\x92\x6c\xc3\xe5\x7b\x43\x3a\x8c\xa7\xe0\x75\xbe\x16\x83\xf3\x8a\x60\xe3\xa9\x01\x63\x6c\xa9\x13\x04\x7a\xda\xb5\xd5\x78\x79\x49\xf7\xeb\xf7\x38\x2e\x88\x8a\x22\xea\xe6\x6e\x96\x0c\x29\x2f\x91\x9d\x24\xc0\x6a\x06\x69\x20\xb6\xdf\xf1\xa9\xe4\xce\xee\x3a\x4b\xdc\x6a\x23\xc0\x95\x14\x50\x61\x7e\x41\x0c\xec\xdf\xc8\xd2\x59\x6a\xac\x6a\xb1\x8c\x75\x32\xea\xe4\x94\x2c\x5f\xdd\xcc\xf2\xb5\xe0\x59\x8d\x75\x6d\x16\xed\x11\xec\xd8\x4a\x3a\x44\x40\x7d\x8b\x6e\xba\xdb\x17\x3d\x1b\x5d\x1a\x3c\xab\x3a\x30\xac\x7d\x55\x37\x4e\x8b\xb8\x80\x96\x3d\x66\xe3\xad\xf1\x64\x17\xcf\x7b\xce\x9d\x23\x06\xd6\x59\xf6\xa9\xbb\xc8\xdc\xa3\x73\x78\x3f\x18\x99\x4f\x4f\x90\x5b\xa2\x94\xd6\xfa\xeb\xac\xb3\x7a\x13\x81\xa0\xb7\x9d\xf2\x86\xb9\x67\x5b\x84\x55\xc1\xf2\x6e\xaa\x3f\x78\x28\xe8\x7b\x7c\x50\x93\xba\x1f\x6c\x0e\x4d\xdf\xc1\x2a\x01\xb7\x58\x0f\xf7\xd6\x84\xaa\x46\xba\x92\xc4\x22\xe4\x71\xe0\x80\xae\xd5\xf7\x5a\xb4\x70\xdf\x9b\xa0\x1c\x55\x61\xa6\x08\x15\xa0\x33\xec\x85\xe5\xbd\x8e\xef\x29\x12\x17\x1a\xe6\x22\xc5\x9f\xaa\x4a\x88\x3a\x3a\xe3\x29\x99\xbd\x73\x48\xc0\x87\x71\xa2\x3b\xa7\xd9\x5d\x87\xe6\xdf\x89\x31\xb1\x5d\x47\x49\x12\x17\xfd\x99\xc6\xb2\x3d\x6b\xd4\x4f\xb0\x08\x7e\x8f\x64\x28\x2f\xd6\x6d\x84\x45\x19\xad\xea\xe0\x40\xed\x0e\x20\x30\x3d\x66\x9c\xe4\xca\x4a\x14\xe7\xc5\x1c\xfb\xb1\x9d\x1d\x53\x11\xee\x08\xf5\xf7\x3f\x26\x6d\xb6\xe3\xdc\x3e\xb9\x1d\x4c\xfd\xba\x59\xee\xf6\xc8\x7f\x69\xb7\x63\xcc\x45\xa0\x0b\xd4\x35\x7e\xa4\x2d\x4f\xd7\x48\x8b\xf2\xc0\x70\x7b\x17\x5a\xe1\x56\xa7\x83\xbe\x17\x17\x9b\xa3\xa4\x8c\x07\x51\x39\x1a\xa0\x8a\x6e\x76\x68\x72\xd9\xe8\x7a\x41\x12\x03\x13\x8e\xcb\x70\xc5\x68\x75\xd5\x15\x25\x00\x50\xf6\x38\x64\xaf\xd2\x18\xb3\x15\x64\xc9\xce\x21\x52\x53\x64\x84\x7c\xa1\xa1\x24\xa6\xd1\x33\x22\xd2\x36\x94\xb4\x52\xe3\x48\x53\xe3\x91\x79\x60\x72\x3c\x8f\x93\x73\x4c\x77\x96\x56\xce\xbd\x6d\x86\xdc\x68\x54\x86\x6a\xd9\xb5\x49\x1d\xf8\x1a\x2f\xc3\xee\x7a\xca\xda\x70\xec\x45\x74\x69\x6a\x37\x78\x5e\x40\x2b\x85\xea\x0b\xfb\x2a\x7f\x75\xc9\x68\xe0\xdd\x63\xc5\xc9\x53\xfc\xf0\x36\xd3\x5e\x9e\x0d\xe0\x95\x84\x5d\xf7\x22\xa9\x5c\x6e\xc9\x50\x41\xb5\x70\xda\xbb\x74\x79\xbe\x39\xc8\x8a\x12\x40\x70\x05\xc8\x02\x08\x6e\x68\xd9\x9d\x37\xb6\x3c\xdf\x94\xf0\xec\xf0\xbc\x69\xa0\x63\x19\x31\x41\x74\x4b\xa1\x57\x22\xf1\x38\xf4\xfe\x5b\xde\xfd\xda\xe3\x8c\xb4\xa6\x62\xbe\xdc\x3b\x13\xd1\x97\x97\x9a\xdd\x24\x8a\x55\x46\xc2\x46\xa1\x9a\xbd\xe8\xc9\x14\xe3\xfb\xdb\x0b\x9e\xda\xa9\x3b\x37\x9a\x27\x6f\xc9\x2a\xa6\xc7\x93\x09\x60\x92\xfc\x92\xbc\x56\x14\x0e\x00\xa1\x47\x06\x79\x5b\x22\x21\xb4\xce\x95\x9b\x83\x05\x72\x1b\x5e\xfc\xa8\x54\xff\xae\xcc\x0b\xdf\xdd\x3e\x3c\x1f\xb8\x45\xdf\x5e\xd0\x3e\xce\x39\x9d\x6f\x68\x5b\xa8\x22\x29\xb2\x65\xd4\x11\xb0\x0b\x3c\xbe\x15\x68\xa2\x73\x5b\x8d\x43\x2f\x05\xcf\x87\xfd\xfb\xcd\xfa\x9f\x90\xb4\x73\x6d\x6a\x3a\x3e\x40\x14\x85\x45\xe1\x0d\xe9\x4f\x23\x8f\xfd\x8c\x83\xc7\x3f\xc2\x30\x44\x0d\xe1\x1f\xa2\xc9\x67\x92\xbe\x32\x08\x8c\xa2\x00\xc2\x81\x8f\x05\x82\x0d\xcf\x17\xd4\x12\xdf\x26\xcf\x85\x61\x9e\x0d\xf3\x58\x30\xbb\x0d\xf9\xb8\xd5\xd4\xaa\xeb\xb5\x8a\xda\xf4\x14\x95\x8e\x52\x77\x94\x44\x9e\x8d\x6b\x48\x68\xb9\x6a\x83\x42\x4f\x89\x72\xbd\x74\xb0\xd9\x71\x49\xb6\xae\xda\x92\x08\x81\x6e\xb6\x26\x48\x61\x81\xaa\xc4\xe5\xad\x41\x96\x27\x0e\xb6\x57\x18\xe4\x37\x25\x0e\xf0\x1a\xa8\xcb\xc1\x85\xf9\x69\x2a\xb1\xbc\x5e\xc6\xb0\x52\x7f\x41\xb7\x27\x2c\x9b\xc6\xec\xaf\x2e\x02\x0f\x65\x5a\x0a\x7f\xff\x42\x53\x24\xc9\x7d\xed\xc9\xe2\xde\xea\x0b\x2c\xb8\xe6\x08\xa6\x9b\xad\x68\x3e\x83\x4c\x4f\xab\x94\x7a\x42\xe0\xfe\x51\xea\x5e\x17\x35\x18\xd7\x9b\x63\xe6\x60\x35\x0c\x7d\xdf\x2f\xe4\x11\xba\x78\x22\xa8\x39\x42\xb0\xe5\xeb\x13\xa9\x42\xea\xdc\x97\xea\x7f\x7d\x99\x7c\x5b\x37\x8f\x0b\x53\x4a\x04\x7d\x10\xd2\x57\x1e\x34\x57\xdd\x80\x81\x27\x42\x7f\x29\x5b\x29\x5d\xfa\x8c\xd0\x5e\xbc\xd9\xde\xfe\x05\xbf\x8e\x11\xe0\xfb\xb6\x96\x1d\x30\xf4\x4f\x8c\x27\xa2\xe6\x17\x83\x24\xb6\xdc\x2e\x36\x11\x5d\x9a\x3c\x97\x9f\xb5\x60\x97\x0d\x2f\x79\x97\x2c\x34\x9e\xd9\x22\x31\xa7\x2b\x68\xf7\x78\x0c\xee\x61\xc3\x76\xfe\x5d\x36\x0e\xd4\x47\x8a\x69\xf7\x10\x41\x33\x6a\x0a\x0f\xa9\x42\x97\x44\x1b\x90\x39\xda\x1b\x06\x2b\x62\x60\xf5\x04\x14\x7a\x90\x8a\x19\x8c\x89\x61\xf0\xc4\x56\x80\x0e\xee\x6a\x87\x52\xd1\xe7\x41\xbf\xfc\xbf\xbd\x50\x8b\x6b\x4a\x5c\xb7\xcc\xe3\x6e\x5c\x6e\x62\xfd\xb4\xe2\x5d\xe0\x8c\x5e\x6a\x3d\x45\x40\xcf\x51\xe1\x8a\x47\x83\x46\xd1\x7b\xe3\x50\x31\x57\x8c\x2c\xc0\xa6\x17\xb0\x7a\x81\x21\xfd\x6e\x2b\x10\x59\xff\xf9\x44\x69\x83\xa6\xf2\xf1\x31\x91\x27\xaf\xf0\xbc\x3e\x3e\x05\x5a\x3e\x70\x40\x10\x59\x45\xb1\x49\xc8\xc4\x0f\xc6\x24\xfc\xfa\x01\xf9\xc8\xe7\xae\x18\x25\xe5\xe3\xa1\xae\xf8\xf3\x16\xe5\x8a\x97\x5b\x41\xc1\x74\x66\xab\x5a\xcb\xd5\x9e\x1b\xf5\x7b\xb6\xb7\xc6\x8b\xbd\x8a\xf1\x86\xa0\xe3\x04\x7e\x14\xef\xea\x8b\x31\x41\x87\x2e\x10\x06\xbb\xd1\x26\x1a\xca\x9d\x16\x95\xdd\x8f\x4c\x65\x32\x07\x0e\x54\x17\x9c\x8d\xf2\xae\xb3\xf4\x02\x31\xe6\x5b\x8c\x7a\xff\x3e\x7e\x17\x7b\xd5\xf7\x98\x3b\x1c\x15\xfd\xd8\xa9\x61\x21\x6a\xb9\xf7\x58\x94\xed\x9e\xdf\x7b\x85\xe2\xb5\xea\xd2\xb8\x2b\xfb\xb4\x17\x3b\x0f\x56\x60\x97\xa8\x91\xf4\x5a\x24\x72\xd3\x33\xc1\x96\x77\x5b\xde\xbd\x42\x1b\xdb\x81\x9d\x7f\x94\x20\x26\x2b\x51\x3e\x28\xb0\xd0\x63\x33\xb9\x2b\x7f\xa4\xc7\xd4\xed\xe8\x67\x79\xe1\x80\xc6\x40\xf0\xf3\xaf\xe5\xf1\xe9\xf1\xd4\xc2\xfe\x67\x9b\x5e\x5b\x60\x66\x42\x6a\xac\x61\xd6\x05\xbf\xa1\xdd\x1e\x50\x00\xcf\x4c\x55\x84\x0e\xcf\xbf\x20\x41\xcd\x8c\x6c\x6e\xa8\x88\x9e\x91\xdf\xc4\xbd\x1f\xc7\x46\x87\x42\xe1\x4d\xc2\xd0\xbe\xb4\x7c\xb0\x41\xc1\xa5\xea\xf1\xe8\xc9\xb4\x09\xed\xf2\x52\xb3\x3f\xca\x93\x06\xfb\xf6\x4f\xca\x82\xef\x24\x22\x3f\x3f\x29\xae\x4f\x56\xb2\xa7\xf1\x87\x16\x33\x53\x4e\x19\x99\x75\xcb\x37\xbe\xe1\x57\x48\x59\x64\x8c\xa7\xf0\xe4\x44\xc0\xa5\x1d\x86\x3a\x2d\x83\xa7\xa9\x3d\x33\x32\x71\xd7\x17\x0c\xbf\x44\x4e\x57\x37\x68\x5d\x88\xd2\x74\x14\x25\x8f\x86\xdc\xe8\x28\x62\x06\x2d\xef\x03\xc6\xe6\x6b\xfd\xcb\xf3\xf6\x29\x26\xd0\x5f\x68\x91\xa0\x8d\xe5\x90\x1e\x4d\xba\xdf\x44\xcd\x55\x3e\x02\xcd\xad\x5d\x5b\x21\x99\x5b\x1d\xb9\x3c\x8f\x93\x24\x52\x45\x3b\xaf\x8d\x16\x50\xdb\x17\x98\xcb\xbb\x22\x99\x1f\x5c\x9c\x91\x78\xe8\x26\xa8\xf5\xeb\xe0\x67\xf3\x4f\xfe\x74\x3b\xd4\x86\x9f\xd8\x22\x39\xed\xfb\xb5\xba\x3b\xd1\x20\xfa\xce\x0e\x71\xe5\x07\xa4\xd6\xf7\x80\xa4\x4f\x7a\xa3\x32\x76\xc5\x2c\xc2\x28\xd2\xeb\x7b\x41\xeb\x84\x20\x75\x20\xda\x82\xbc\xb2\xc6\x83\x5b\x4f\xfb\x17\x3a\x4a\x4a\xb4\xb4\x43\x4d\x97\x4d\x7d\xc9\x35\x34\x4e\x7b\xae\x53\xba\x5e\x5a\x7d\x9c\x4c\x5b\xd9\xa8\xf5\xf8\xb4\x34\xcf\x42\x73\xc5\x25\x59\xaa\x7d\x13\xf3\xa1\x20\x52\x9c\x04\xa7\xd6\x9c\xf0\x8a\x0b\x9b\x45\xe9\xf2\x4d\x80\xd2\x7c\x6d\xc7\x6f\xa2\x30\xf8\x56\x05\x1a\x22\x61\x44\x9d\xc4\x09\x1e\x1f\xf1\xea\x5e\xb9\x69\xa0\xc5\x6e\x13\xd3\x19\xd4\xb9\xed\xcb\x53\x57\xfb\xf2\xc2\xa1\x66\x51\x66\xb9\xaa\xb0\x1a\xed\x65\x62\x93\xae\x31\x61\xee\xc6\xb9\x84\x97\xc6\x14\xd5\x4c\x59\x36\x2e\xcb\x9a\xbf\x2c\xa8\x29\x63\xb1\x7c\x91\xe1\x6b\x45\xf1\xc6\x5f\x39\x38\x29\x85\x8f\xb7\x71\xab\x65\x56\x50\x83\x38\x8d\xbb\xd9\x60\x38\x2a\x83\xac\xa1\x35\x18\xe5\x39\x5b\xe7\xb1\xa6\x8b\xd5\x49\xa2\x74\x6d\x26\x74\xd6\x95\xb2\x66\x7f\x1e\x50\xe0\xf7\x77\x04\x6c\x9b\xcf\xb1\x95\x1c\x59\x05\x28\xd2\x54\x9b\x89\x2d\x4a\xa5\x4e\x48\x6d\x56\x81\x29\xe8\x62\xe1\x05\x36\xda\x81\xe8\x76\x85\x94\x49\x74\x53\xf7\x3a\xbb\xbe\x16\x7a\x14\x2f\x01\x71\xda\x4d\x99\xd2\xe6\xdd\x48\xde\x0b\xf7\x78\x6f\xbe\x8b\xad\x16\xdf\xf5\xdf\x4b\x38\xe6\x7d\x67\xbd\x8b\xda\x93\x5b\xb2\xd2\xa1\xac\x7c\x0c\xf2\x61\x78\x14\x7b\xc1\xb9\xc6\x88\x39\x41\x38\xd3\x3c\x29\x24\x10\xc6\x5e\xba\x77\x2b\xf4\x00\x11\xc1\x59\xf3\x94\xb4\x26\xce\xe1\xad\x20\x59\x7a\xb6\x6d\xa3\xbc\xef\xa2\xdc\xcf\x75\x0c\x59\x80\xb0\xf4\xb8\xfd\xec\x44\x25\x4b\x65\xeb\x44\xe6\x44\x5a\x77\xdb\x97\xeb\x7a\x9c\x79\xa6\x1b\x38\xb6\x95\x23\xa4\x97\x71\xa4\x6e\xf4\x0e\xe2\x22\x4a\xcb\x7e\x9e\x0d\x61\x6c\x8c\x00\x5f\x85\x03\xf5\x84\x65\x1c\x62\x90\xa8\x51\xcf\xd5\xa8\x45\x4f\xea\x51\xb3\x89\x37\xed\xf4\xb2\xc6\x3e\xab\x39\x3f\x91\x29\xc7\x83\x08\xb5\x11\xcd\xaf\xf0\x3a\x11\x77\xa1\x7c\xa8\xf0\x34\x59\x0b\xac\xad\xc2\xdf\x90\x47\xaf\xe3\x1b\xa8\x0a\xb3\xa8\x71\xd8\x11\x02\xd8\x29\xbe\x59\xff\x83\xf8\x83\x83\x51\xe1\x15\x3c\x4c\x3f\x60\xa2\xfd\x1a\x0a\x86\x51\xb7\x9b\x8d\xd2\x32\x4a\xcb\x62\x46\xc6\x8a\xf7\x63\x79\xd1\xd4\x03\x6e\xb4\x82\x59\xf7\xd1\xa9\xe5\xe6\xd0\x4b\x4d\x97\xa7\xce\x8a\x23\x5e\xb7\x2c\xa4\xcf\x6c\x54\x25\x55\x26\xb1\x87\xf2\xa0\x51\xc0\xb1\x0c\x79\x2f\x7f\x87\x2a\xc1\x75\xd2\x5f\x2d\x46\x83\x81\xcb\xa5\xdf\x13\x0a\xb0\x5a\x11\xd7\x93\xa9\x18\x79\x71\xb1\x59\xf4\x47\x65\xa9\x1c\x6d\x4c\xda\x2f\x68\x05\xfe\xa2\xc5\x85\x53\xe9\x3d\x15\x7d\x91\xed\x31\x99\x74\x00\x37\xf4\xb8\x4e\x8e\xac\xe8\xbb\xbc\x63\xe4\x12\xa3\x30\x06\xee\xca\xa5\x1a\xcb\x9a\x66\xe2\xa2\x75\x27\x96\x1e\x94\xbe\x19\x09\xfa\x62\x0d\xc4\x68\xa9\xb9\x9e\x95\x56\x2d\xb6\x72\x33\xfd\xe2\x39\xc2\x7f\x46\x49\x92\x6d\xc4\xe9\xaa\xf8\x95\x20\x46\xf8\x69\x8b\xb5\xb2\xef\xa2\x57\x65\x38\xf8\x80\x9a\x38\xc7\xda\xf8\x67\x26\xd6\xcd\x7e\x34\x68\x48\xee\x69\xde\xf7\x54\xf8\xfe\xbc\xa6\x87\xb4\xd0\x94\xfd\x58\x7e\x08\xdb\xf8\x11\xac\x4a\x7a\x42\xaa\xb1\x9d\x6c\xdd\x74\x7e\xb0\x7a\xce\xca\xaa\x6a\x6c\x56\x8a\x87\xef\x05\xa8\x5c\x3f\xeb\xae\xb9\x9e\xa0\x11\xe9\x11\xda\x43\x7f\x5f\x16\x0b\x1b\xbb\x32\x45\x50\x6a\x3a\x4d\x85\x8a\xd4\x6d\xac\x46\xa5\x29\xb0\xa3\x66\xf4\x09\xbb\xfb\x7e\x52\xc7\xba\x58\xcf\x02\x4f\x14\x65\x9e\xd3\x54\x43\x3c\x1d\x2a\xc9\x43\x97\xf6\x66\x83\x28\xd5\xf1\x16\x35\x1e\x1e\x4e\x24\xb4\x14\xd0\xde\x25\x2a\x7f\xd1\x1f\x25\x83\x48\x75\x57\x51\x1c\xf8\x43\xec\x05\x28\xc0\x40\xe8\x04\x55\xf4\xb3\x2c\xbf\x78\x6d\x4c\x20\xb3\x4e\x86\x21\x3d\x13\x96\xd2\xfb\x32\xdd\x3c\x42\x2b\xe8\xc7\x5d\x98\x68\x0e\x25\xce\x44\x29\x10\xf5\x29\x4a\x4b\x4f\xea\x0a\xa4\x65\x94\x00\x8b\xa8\x34\x70\xec\x82\xc6\x09\xdf\xf9\x30\xab\x20\x25\x4e\x4c\xc4\xd6\xf8\xe9\x81\x9c\x72\xcd\x53\x85\x87\xb9\x53\xb5\x4e\x8b\x12\x7c\xdf\x9d\xc9\x64\x3b\xb8\xe1\xfb\xf7\x37\x97\xe7\x9f\x69\xf8\x7a\xc9\x2e\x90\x4c\x90\xda\xdc\xc3\xb5\xa9\x03\xa7\xc4\x61\xa6\x74\x40\xf0\x95\x0f\x99\xf6\xad\xea\x70\xc8\x66\xaf\xcb\x1e\x89\x9d\xf0\x2a\xe9\x04\xec\x11\x6f\x1a\x0c\xc9\x63\x2d\x72\xb4\x3c\xd9\x6a\xfc\xda\xaf\xeb\x1a\xb7\x1b\xc5\x13\xfc\xe0\x3f\x6b\x85\x06\xfe\x7b\xb2\xce\x92\xc6\xaa\x81\x0a\xae\xb0\xb1\xe7\xb4\x7f\x8c\xef\x77\xa6\x9b\xb3\xd4\x1e\x3b\x4e\xca\x4f\x37\xb8\x77\xf8\x84\x94\x4f\x25\x15\x1f\x7f\xcd\xef\xe3\x1d\xd1\xca\x84\x54\x2c\x9e\xd2\x6e\x3c\x0c\x0c\x15\xc4\xef\x18\x29\xef\xd2\xfc\xdd\x88\x72\x01\x9f\x90\xf2\x9e\x6c\x1d\xa6\xc2\xf7\x35\x5a\x61\x7b\x2e\x2f\xca\x28\xed\x89\x0c\x99\xb7\xee\x3e\xc3\x4a\x1d\x67\x11\x22\x61\xe3\xe8\x4f\x41\xe0\xaa\xd7\x2f\x32\xf3\x89\xa6\x86\x44\x4e\xd2\x42\xa6\x75\x3a\xeb\x76\xf1\x61\x96\x44\xc0\x3b\x23\x69\x87\x8c\x98\x1e\x8f\xd9\x8d\x30\x2d\x1f\xa9\xc2\x33\xbc\xe2\x9f\xe1\x55\x5a\x14\x25\x2b\xa1\xfe\x0f\xb5\x03\x2f\x4b\xa9\x09\x71\xd7\x03\x89\xce\x18\x98\x8a\xe0\x4a\x1f\xa9\x7d\xed\x14\xf1\x7e\xb1\x4a\x9f\x7e\x01\xc9\x90\x59\xde\x54\x1b\x85\xa7\x00\x55\x63\x18\xbd\x29\xf8\x20\x61\xf4\xdf\x6f\x05\x99\xd1\x53\xff\x7a\x1c\x3a\x1c\x27\x25\x76\x45\x3f\x16\xb8\x22\x94\x51\xb5\x50\x8a\x0a\xce\x0f\x5a\x64\x90\x79\x1d\x83\xde\xfc\x3a\xab\x1b\xaf\x02\xb5\x97\x3d\xf3\xea\x3c\xe9\xd0\x7f\x88\x1e\x08\x72\x9b\x37\x50\x2f\xb0\xa2\xa9\xdc\x28\x9e\xc6\x95\x09\x7b\x96\xbf\x37\x26\xbd\xf5\xc6\x56\x08\x69\x3f\x27\xfb\xe0\x87\x2c\xc6\xf8\x10\xb4\x1c\x0b\x82\x77\x6e\xc3\xfb\x17\x9a\x45\x5c\x86\x85\x19\xdb\xc5\x0d\x32\x19\xba\x41\x25\x46\x17\xe5\x83\x28\x5f\xab\xb6\x79\x0f\xb9\x38\x8a\x1f\x30\x08\x5b\xc8\x4e\x5f\x8b\x56\x47\x51\xfe\x48\xf5\x49\x94\x7c\xe0\xa4\x6c\x18\x25\x79\x54\xa6\x10\x2b\x63\xc4\x88\xf3\xf2\xc0\xb0\xc7\x62\x2c\x60\x43\x83\x80\x21\x0a\x84\x37\x26\x70\xe0\x53\xe3\xf5\xc0\x01\x81\x2e\x2b\x3e\x94\xf8\x2c\x4b\x5e\xb5\x31\xe4\x8c\xc3\xd1\xca\x0a\x6e\x1e\xeb\xcd\xdb\x44\xca\x79\xbb\xce\xcd\x49\x1d\x90\x34\xa4\x45\x1b\xf3\x7b\x24\x5f\xf3\xbd\x2f\xcd\xf5\xb2\x51\x39\x1c\x95\xd8\x97\x10\x2b\x7e\x36\x66\xe8\xd9\x38\xd4\x23\x51\xb5\x40\x86\xfb\x43\xda\x7b\xe3\xb4\x5a\x06\x4a\x79\x01\x7e\x52\x51\x9e\x52\x57\xa7\x1d\x46\x79\x19\x77\xe3\x61\xb5\x67\x73\x53\xad\x41\x26\xc3\x21\xbd\xe9\x8c\xf2\x59\x8a\x93\xe5\x9a\x3c\xde\x33\xf4\x2d\x2f\xea\xc0\x34\x2b\x66\xd6\x1b\x1b\x7e\x53\x36\x33\xd4\x17\x4f\x70\xb1\xf1\xc4\xd4\x08\x3c\xf4\x52\xb3\xe7\xd6\x5d\x92\xc1\x26\x01\xcb\xe7\x43\xc6\xca\xe1\xb1\x18\x2e\xf3\x69\xf2\x95\xe9\x47\x89\xc9\x15\xaa\xbc\x5d\x2b\xd4\xbe\x8f\x04\x7d\xba\x2c\x46\x3c\xef\xd3\x0f\xef\xff\x33\x0d\xe2\x5d\x9e\x87\xfb\x6d\xda\x75\x88\x42\xd4\xe6\x02\x2f\x0a\x8b\x38\xa4\xaa\xf1\xe8\x66\xdb\xa4\xc9\xf4\x2e\xbd\xa9\x8d\xb8\xec\x67\xa3\xf2\x11\x99\xcc\x48\x36\xc1\x74\xc5\x93\xf8\xeb\x04\x8e\x3a\xc9\x0a\x45\xc7\x78\xc7\x3a\x85\x28\x4e\x2b\x8c\xc4\xb3\xc5\xca\x88\xca\xd4\x83\xba\x12\xf7\x30\x89\xd2\x54\x39\x11\x58\xdc\xde\xc0\x17\xeb\x09\xc5\x4b\xdd\x28\x77\x2e\xd7\xca\x97\x01\xc2\xc9\xaa\x61\x9a\x5e\xb8\xb8\x28\x54\xe8\x7c\x64\xb3\x00\xaf\x0d\x3c\x34\x3d\xf6\x68\xf1\x95\x28\xce\x37\xf1\x31\x6f\x01\xee\x95\x2e\x3e\x9a\xea\xaf\x8a\xee\x56\x56\x94\x71\x39\x2a\x1d\xa1\x4f\xa1\xb1\x67\xea\x4f\x35\x6a\x9e\xa5\xf8\xbe\xd3\xde\xff\x5d\x16\x8b\xfd\x2e\x51\x86\x3b\x11\x32\x9b\xe5\x79\x6f\x5d\x1f\x82\xe8\x69\xb6\xd6\xc2\xa1\x66\x94\xc6\x03\x4d\x0a\xcd\xaa\xd1\x57\xf8\xfe\xdc\xf7\xa7\x26\xfc\xf2\x3c\xcc\x9d\xcb\x68\x65\xa5\x8a\x20\x7d\x90\xa4\xfd\x76\x0c\x3e\xe4\xa3\x58\x39\x6f\xd5\x11\xc0\xcd\x40\x11\x84\x34\x8c\xa1\xfb\x1c\xae\xdf\x6b\x05\xbc\xd3\x3f\x6f\x3d\x11\xa6\xc6\xa6\x83\x34\x06\x36\x91\x3b\x58\x60\xf5\x64\x1c\x9a\x54\x97\xc8\xb0\x70\x3a\x38\x7a\xf5\xd5\x66\x9a\xa5\x85\x4b\x0b\x60\x6c\x11\x4a\x63\x19\xc7\xf2\x05\x1d\x6c\xd5\x06\xe2\x4c\xaa\xd7\x13\xfb\xe8\xb9\xd0\x12\xd7\x45\x1e\x51\xf7\x7b\xe3\xb0\xc6\x1e\x93\xef\xf0\x36\x72\x2f\x06\x1b\xb9\x69\x43\x93\x66\xe9\x06\x02\x92\x1d\x79\xb1\x6f\x4c\x4f\xe5\xf4\xe9\x89\x8f\x7f\x07\x51\xd9\x77\x83\xa8\xf4\x45\x6b\xe3\xb8\x10\xdf\xc5\x6b\x30\x0c\xc0\xea\xd4\x21\x84\x48\xe1\x24\x73\x9c\x4e\xfa\x0a\x70\x54\x96\x59\x9e\xba\xcd\x62\x26\xe4\xbb\xc7\x98\xfd\xa8\x69\x85\x95\xab\xc2\xea\xba\xe6\x36\xf7\x11\x4c\x1a\xea\x9a\x56\x78\x95\xbf\xc1\x53\x46\x98\x8c\xdd\xee\x2d\x41\xb8\xa3\x31\x74\x06\x71\xcc\x04\xae\xd6\x78\x5a\x0d\x2f\xe1\xf3\xac\x98\x3b\x6e\x5f\x1e\x53\x59\x71\x28\x37\xad\xa6\x90\x53\x72\xbe\x5e\xe6\x72\xe8\xbc\x75\xaa\xa1\xbe\xe5\x4b\x0c\xf6\xbd\x73\x72\x2c\xcf\x0b\x62\xd5\xe2\x49\xbc\x6c\x60\x30\xf4\x98\x64\x95\xa2\x21\x7b\x0d\x2a\x93\x5d\x4f\x5a\xd6\x5a\xda\x88\x5c\x5e\x16\x71\x12\xb9\x46\xe3\xdb\xe6\x46\xa4\x55\x4a\x3d\x69\x3d\x37\x19\xfd\xfd\x59\x89\x6e\x1b\xa1\x12\xf7\x8f\x5b\x13\x92\x1d\x5f\xb6\x21\xa7\x51\xd1\x1f\x45\xb3\x12\x89\x29\x75\x61\x4c\xcc\x65\x54\x43\x31\xbb\x3e\x62\xed\xb2\x46\x9d\x00\x8e\xc4\xe7\x51\xae\x5a\x36\x26\x2c\xd0\xd8\x61\x5c\x8e\xf1\xf1\x36\xe9\x90\x95\x71\xee\xa4\x73\xdb\xa0\x2d\xe6\x04\x02\x24\xeb\x3e\x87\xfa\x14\xaa\x40\xa8\x40\xe2\x2a\xbf\xd7\xa2\x76\xe7\x8d\x56\x58\x53\x8e\x8e\xc9\x6a\xee\x7b\x58\x37\x6c\x37\xdb\xb9\x7e\x3e\xdf\xec\x62\x51\xa4\x36\xe1\xd9\x16\xc7\x01\xde\x7d\x22\xeb\xb9\xb9\x50\x14\x3a\xcd\x18\x7e\x6d\x4e\x11\xa5\x67\xc9\x7f\xac\xe1\x35\xa1\xee\x4c\x14\x48\xe2\xac\x9c\x93\xaf\x60\x34\xa2\xa9\x15\x05\x98\xef\x49\x99\x04\x38\x7e\x9b\xb4\xe0\x2f\xf9\xee\x94\x38\x8e\xa4\xc5\x04\x4a\xfb\x02\x83\xfd\x2e\xd4\xa1\xe7\xbb\x59\x01\x7d\x8c\x09\x89\x5b\x55\x31\x9e\xc4\xad\xd3\xbc\xbd\x41\x53\xfa\xd0\xe2\x21\x19\xd4\x1e\x1d\xc0\xcf\xe3\x2b\x44\xc6\x1c\x12\x9f\x88\x75\x6f\x4d\xea\x36\x90\x9b\xd2\x2c\x2f\xfb\x8f\x37\x96\x97\xb6\xaf\x4a\x0e\xe3\x3d\xd0\x97\x5e\xb2\x14\xf5\x14\xaa\x42\x78\x50\xaa\x69\x86\x62\x94\x0a\xae\x1a\x63\xbe\xb1\x3c\xbf\x7d\x95\xac\xa0\x9f\xdc\x22\x88\xa7\x8a\xc0\xeb\xc9\x38\xac\xec\xbb\x60\x0f\x6b\x51\xc8\xd7\x26\xe7\xdb\xe2\xe2\x41\x99\x71\x7b\x89\x27\x7a\x6f\xb2\xe0\xcd\xae\xad\x44\x99\xd9\xe1\x30\xdd\x20\x2d\x19\xb9\x2c\xa4\x77\xb3\x53\x8c\x67\x11\xcb\x74\x83\x4c\xd9\x7c\x18\x2b\x58\x66\xf4\x78\xa2\x0c\xdc\x4f\x36\x9f\x94\x94\x4a\xdb\xe9\xad\xa0\x7b\xd6\xd8\x22\xfa\xf7\x36\x72\x66\x5b\x8f\x42\xf6\x77\x53\xfa\x05\x58\x4d\xf7\x00\xb0\x68\xeb\x94\xbc\x04\x7c\xef\xc3\x31\xa1\x3f\xd0\x94\xd2\x04\x85\xa4\xc7\x2f\x63\x2a\x7b\x04\xb5\xe7\x37\xea\xf0\xc2\xf7\x5e\x9b\xe0\x5d\x6e\x66\xa2\xdc\xe0\x7d\xc3\x54\x6f\x45\x4f\x48\xdb\xad\x28\x5d\x9c\xae\x8d\xfa\x89\x92\x91\x27\x98\xf8\x86\xc8\xf1\xf4\xed\x7e\x36\x2a\xa2\xb4\xa7\x5b\x9c\xb1\x0b\xc9\x7a\xf4\x9d\x56\x28\x4f\x0c\xc4\xde\xf8\xb1\x40\x06\x99\x15\xa0\x88\x59\xe0\xc9\x57\x50\x88\x6f\x7a\x77\x77\x48\x6b\xff\x02\xc5\x55\xfb\xf0\x14\x2d\xc8\x22\x7a\xd0\x39\x79\x3b\x18\x83\xca\x65\x46\x11\xe3\x6f\xed\xac\x4c\x7d\xe3\x1b\xcd\xc3\xf3\xb3\x81\x83\x87\x71\xcd\x26\x7f\x58\xad\x60\xbc\xaa\xc7\x35\x56\x88\x07\xad\x76\x0f\xea\x29\x46\xe0\x43\xcc\x28\x24\x34\x3f\xa4\xf5\xea\xc1\xf8\xf1\xd0\x28\xce\xca\x27\xab\xfb\x43\xcc\x75\x93\xa8\x32\xdb\xd8\x99\x19\xc6\x3f\x61\xc1\xef\x2b\x4b\x5e\x32\x03\xaa\xc6\x06\xf8\x98\x09\xfe\x36\x57\xa4\xe4\xa5\xcd\x35\xb9\x15\xd4\x1f\xff\xda\x38\x80\x54\x4f\xb5\x82\x31\xac\xce\x30\x25\xf6\x60\x48\x1b\x85\x80\xdc\xc8\xa2\x6e\xf9\xa8\x3c\x5d\x0c\xeb\x7f\x2a\x38\x34\x8c\x51\x88\xad\x23\x39\xfe\xa3\xf1\x97\x35\x83\x03\x13\xf3\x24\x5e\x3f\x8a\x7d\x77\xa4\x7a\x83\x5c\x55\x2d\x26\xcc\x11\xce\x62\xab\x24\xeb\x74\x36\x7d\x95\x01\x99\x3e\xb4\x10\xf5\xb8\xf5\x1c\x71\x43\x0b\x79\x37\xf2\xf1\xea\x56\x50\x6a\xb9\x81\xd7\xa3\x27\xec\xde\x9d\x64\xdd\x35\x74\xb0\xd1\xeb\x46\x82\xa7\xc7\x53\x30\xe2\xa5\xe5\xa5\x66\x96\xaf\x46\x69\xfc\x1d\xf3\x96\xb0\x06\xb3\x5c\xba\x9e\x50\xe3\xa5\x1f\xa5\xbd\xc4\xf4\xff\x99\x6d\x6a\x31\xd1\xc4\x90\xad\xc9\x1e\x3a\x59\xee\x5d\xfc\xbc\x03\x83\x5f\xf8\x41\x3e\x32\x30\x6c\x28\xa0\x74\x46\x9b\xd9\x08\xfe\x23\x8a\xd1\xc4\x18\xc1\xbe\x07\x5d\x79\x8c\x8b\xab\x54\xb7\xee\x66\xa0\x91\x39\x89\xbd\x09\xa7\xb8\xe4\xf1\xf1\xf2\x2d\x88\x4f\x2e\x93\x46\xe8\x11\xae\xa7\x5f\xf6\x72\xb7\x49\x24\xd5\x47\xc5\x92\x18\x26\x5d\xbe\xc3\xb4\xa2\x7d\xb8\x9d\xc1\x94\x38\x4e\x36\x11\xcb\xf8\xaa\xe6\xf2\xbc\xaf\x6a\xd6\xe8\x2c\xbb\x68\x55\xfa\x60\x78\x89\xec\xd2\x6b\xed\x95\x10\xff\xc4\x45\x96\x48\x21\xc3\x8f\xfe\x53\x84\x4e\x3f\x55\xe3\xcc\xd9\x5c\x4d\x87\x8d\x50\xac\x7c\x07\x3b\x90\x2d\x7e\x3b\x2f\xe7\x1b\xdf\x68\x6e\xba\x28\xef\x64\xd9\x9a\xe6\x0c\x1a\x78\x03\xa0\x6a\x51\x78\xcd\xa8\xfa\x3a\x3c\xdf\x6c\x87\x07\xdb\x53\x2d\x0d\xf4\xa4\x4e\x64\xba\xe3\xd2\x6e\x5f\xe4\xef\xaa\x1b\xd6\xed\x93\x14\x34\x4f\x70\xc7\xe8\x47\x84\x86\xcd\x5d\x51\x46\xa3\x3c\x4a\xcb\x62\x96\xf1\xd1\x93\xd2\xff\xbe\x50\xa1\x0d\x21\xfd\x8f\x5a\xb4\x6b\x37\xcb\xd6\xfc\x24\x35\xd0\x28\x01\x48\x7d\x88\x2e\xf6\x40\x22\x04\x32\x43\x85\xb8\x7b\x8c\x9b\x3f\x8d\xd1\x84\xfb\xb9\x34\xd5\xff\x7b\xf5\x55\x75\xdf\x2c\x85\xea\xc0\xda\x72\x08\x27\x14\x2e\x00\xa2\xeb\x55\x82\x73\x16\x71\xda\x75\x5f\x91\x9f\x35\xa0\x59\x35\x16\x00\x0a\x7a\x4c\x66\x05\x96\xf0\x39\x04\x3a\x26\x8e\x2e\xab\x07\x16\xa9\x5d\x6d\x92\xb4\x00\x84\x0f\x53\xe0\x27\x2d\xa2\xd0\x1e\x91\xab\x31\x8a\xb4\x44\x13\xa6\x68\x21\xcb\x92\x7e\x17\x60\x02\xaa\x4f\xc1\xfa\x0b\x3f\xc3\x8b\xd3\x3d\xa4\xc5\xdd\xb2\x7f\xc7\x00\xc7\x0b\xa4\xd7\xfd\x68\x3b\xf8\x8c\xde\xa9\xb5\xf0\xee\xe4\x19\x79\x59\x62\x91\xbb\xdd\x22\xb5\xdb\xdb\x54\x22\x2b\xf3\x28\x4e\x35\x32\xf0\xa2\xdc\x41\xa0\x7b\x2a\x2f\x12\x06\x89\xdb\x88\xf2\x5e\xd1\x8f\x87\x0d\x82\x64\x7e\x28\x0f\x43\x8f\x6b\xfb\xac\x3d\x97\x94\xd1\x9e\x80\x54\xd2\x1a\x9e\x85\xae\x01\x70\x72\x93\xbd\xa4\xc0\xde\xf6\xe4\x87\xea\xb5\x18\x29\x26\xe0\xfb\x3a\x49\x96\xf5\x04\xd6\xaa\x50\x00\xf2\x3d\xbd\x82\xba\x82\x71\xf2\x83\xd6\x08\xa2\x0a\x3d\xc6\x76\xe5\x69\xcf\xa1\x62\xf8\x0e\x39\xcd\xa5\x71\x51\x88\xf8\x46\x35\x52\x70\xab\x0a\xd0\xd5\x93\xba\xe7\x35\x4a\xa3\x8d\x28\x77\x7e\xf5\xaa\x13\x0a\x08\xc5\xe6\xd7\x5c\x1a\x01\x73\x88\xa2\x36\x93\xd4\x8e\x51\xf8\x7d\x91\xa4\x46\x93\xa8\x93\xe5\x51\x59\x85\xbe\x24\x3b\x38\x66\xd9\xc1\x71\x5d\x05\x70\x45\x17\x23\x19\x6a\x86\x1b\x0f\xc0\xfa\x63\xad\x9d\x8e\x83\x87\xe7\x9b\x51\x4f\x1c\x32\xcb\x3c\x2a\xe3\x75\xb4\x96\xb1\x74\x3d\x20\x19\xb0\x4b\x54\xbf\x3b\x1b\x64\x89\x5f\x8f\x06\x71\x1a\x40\x50\x2a\xe0\x2a\x0f\xc2\xc4\x5c\xc9\xe6\xa7\x1f\x0d\x3a\x48\x79\x5f\x09\x54\xa0\x50\x50\x3f\x43\x15\xfa\xdc\x25\xc0\xd2\x9b\x20\x23\xf5\xfd\xc6\xa1\x3b\x7b\x93\xa0\x19\xdd\x68\x10\xe5\x51\xcf\xe5\xaa\x21\x88\x42\xdd\x47\x18\x2b\x7a\x32\xb5\x26\x61\x0d\x8f\x5f\xd7\xad\x0e\x63\x0d\x35\x4d\x3d\xa6\x37\x59\x94\xd1\x66\x83\x9a\x7c\xb0\xae\xb7\xcc\xf7\x29\x12\x5f\xce\x33\x87\x46\x04\xf8\x8c\xb0\x1b\xd5\xe3\xad\xf0\xc1\x61\x54\x74\xfb\xf1\x2c\xc5\x55\xd0\xc6\x63\x8f\x3a\x0f\xb3\x0d\xaa\x1a\xbf\xed\xeb\xac\xc9\xa8\x1b\x67\x78\xa0\x3e\xff\x5f\xf4\xd6\x85\x47\x5b\x2c\x05\xb6\x9e\x25\xeb\x0e\xee\xac\x9e\x74\x7f\x0e\x8b\x92\x9e\x4c\xd5\x65\x5f\x5c\x6c\x16\x6e\x18\x41\xf4\x96\x14\x92\xce\x92\x42\xd2\xd9\x5a\x6b\xbe\xdc\xb9\x1e\x58\xb1\x88\x01\x8e\x93\x7a\xe9\x71\x02\xa2\x1a\x9e\x1c\x81\x12\xe2\x29\x4c\x24\x54\x5d\x6e\x31\xca\xe2\x68\x8d\xf6\xe8\x12\x78\xab\x9e\x89\x85\x25\x46\xb5\xb4\xf4\x84\xd8\x81\x82\x70\xf1\x91\x0d\x1e\xd3\x05\x92\x52\xbb\x40\x5d\x91\x62\x14\xa3\x41\x8c\x08\x1d\x2f\x11\x85\x01\xc0\x2c\x81\x46\xfb\xbf\xb8\xd9\x71\x83\x86\xc1\x46\xdf\xb9\x04\x2b\x04\xba\xac\x88\x6f\xf4\xb8\xae\xe4\x3c\x1a\xe6\x59\x94\x93\x98\x2b\x4a\x3b\x7a\x4c\x97\x16\xe5\xb2\x1d\xda\x5a\x77\x4f\x64\x18\x15\x86\x2e\xeb\xa1\xee\xce\x63\xda\x9d\x9f\xd8\x22\x16\x9f\x09\xcd\xe2\x73\x48\x5d\x05\x02\xf2\x2b\x5f\x6d\x13\x00\xf6\xce\x38\x54\x73\xf7\xb5\x1b\xfb\xf7\xeb\xb3\x50\x23\x0a\xec\x6c\x0d\xd9\xc0\xfc\xa6\x19\xc0\x1e\x1f\x48\xa5\x13\x11\xef\xac\x50\x7a\xfd\x6a\x1c\x60\xbc\x3f\xc0\xce\xaa\x42\x34\xd4\x36\xdf\xdb\x0e\x9b\xda\x7a\x5c\xc4\x65\x86\x4d\x0d\x10\x11\x44\x80\x7a\x4c\x4f\x66\x94\x66\x0d\xa6\x59\xca\x3d\x1b\xff\x32\x7c\x6c\x3e\xea\x49\xef\xc9\xa3\x03\x7d\x0f\x49\xab\x15\x8a\x21\xf1\x10\x15\x51\x8f\x85\x28\x30\x12\x1d\xb8\x74\x19\xf4\x3f\xb4\x9a\x3e\x18\x33\x5a\x1f\xcf\x09\xe0\x4a\xc0\x5e\x7d\x32\xe0\x95\xf0\xcf\x4c\x85\x88\x32\xac\x3b\x79\x34\x28\x32\x53\x20\xa8\x45\xdb\xfb\x54\x2b\x5e\xed\x97\x1e\x53\x66\xb9\x53\xf5\x6b\x96\x3a\x31\x34\xac\xdb\x75\x45\xb1\x32\x4a\xe6\xc2\xf4\x3c\x87\x5a\x3a\xa1\xac\x0d\x9c\xa8\x65\x05\x64\x23\xc7\xb0\xbf\x1b\xc1\x3a\xd4\x0d\x56\x72\xe7\x94\x05\x8f\x39\xfc\x63\x82\x45\xfe\x98\x9e\x7b\x9a\xa5\x52\xc6\x44\x87\xfe\x2a\x29\x9e\x40\xbd\xc4\x0b\x80\x2d\x7a\x3f\xd9\xbb\xf8\x51\x95\x64\x9a\x42\xbf\x07\xcd\xdb\xb8\xec\xbb\x7c\x8e\xc9\x4f\x04\x67\x04\x15\x06\x1b\xdb\xef\x49\x4e\x8d\x98\xf3\x89\x76\x08\x1f\x1e\xf8\xdc\xb5\xe3\xd2\xd7\xaa\xad\xad\x11\xb8\x4c\xfa\x6d\xe6\xea\x1d\x72\xd1\xc2\x89\x4d\x3d\x50\x08\x06\x9f\x9f\xa0\x1e\xed\x2c\x41\x7e\x7b\x41\x24\xe7\x66\x02\x2a\x06\x20\x77\xc4\x90\xdb\x13\x76\x76\x35\xb5\xf7\x95\xa8\x28\x5d\x0e\xd7\x64\xa4\x34\x37\x65\xa7\xf6\x92\x13\xa1\xcc\x72\x89\x3a\xf9\xc3\x38\x49\xb2\xe0\xef\x8a\x01\x7e\x0c\x81\x99\x9e\x4c\x05\x3b\x87\xe7\x17\xaa\x5d\xaf\x14\x72\x81\x9a\x75\x63\xb3\xbe\xa0\x80\x7b\x3d\x9b\x2c\xef\x26\xee\xab\x34\x84\x1e\xb6\x02\x17\x66\xef\x96\x14\xde\xd9\xf2\xca\x96\x2d\xf9\x72\xe5\xd5\xc9\x7c\xf2\xe5\xdc\xea\x0a\x55\x72\x0e\x0b\x1a\x46\xe3\xae\x36\x85\xe1\xf7\x81\x33\x41\xee\x70\x9b\xb0\x1b\x73\xa8\x41\xa1\x85\xfa\x13\x4c\x4e\xcc\x8a\x6b\xad\x30\xe2\x8e\x91\x3d\xe2\x05\xb5\x45\xd2\xef\xd2\x1b\xc5\x58\xfe\x5d\x84\x13\xb8\x9a\xbb\x52\xf6\xb2\xc5\x85\xd2\x93\x5b\x78\x07\xa8\x11\x9e\x9e\x7a\xff\x0b\x87\x9a\xaf\xb9\xd2\xe2\x79\x12\x1e\x38\x48\xc2\x03\xba\xec\xb8\xa8\xdb\xaf\x5e\x76\x50\xc6\x04\x50\x89\x4a\xbd\x5e\x22\x24\x34\x5d\xca\x8d\xec\x6b\xf2\xd8\xcc\xda\x4b\x9e\x14\xd2\xfc\xeb\xdc\x52\x16\x8b\x5a\x0b\xf1\x28\x91\x39\xc9\x1d\xe9\x99\xad\xc6\xb7\x17\x7c\xed\x5d\x2c\xb4\x6f\x32\x36\xfb\x6f\xc8\x73\x30\xbe\x67\x68\x52\x3f\xb6\x15\x48\x77\x90\xc5\x41\x18\x76\x1d\xeb\xbf\x95\x20\x02\xe6\x06\xf4\x3b\x80\x69\xee\x92\xb8\xe2\xbf\xd0\x77\x80\xc9\xf7\x77\xc6\x54\x82\xd6\xd7\x6b\x9c\xd4\x6a\x1f\x34\x99\x12\x79\x66\xc0\x35\xfe\x5b\xb2\x85\x1a\x64\xb9\xcb\xd6\x5d\xfe\x68\x58\xfe\xae\x8c\x05\xd0\x82\xab\x7e\x48\x61\xef\x71\xc1\x98\x61\xf9\xbe\xcc\x15\x4f\x55\x24\xb5\x46\x55\xb5\xb6\xa8\x6d\x08\x1e\xb5\x6f\x8e\x7b\xdb\x96\xdf\x9f\x8e\x3d\x5f\x3a\xd8\x5c\x89\x13\x5f\x26\xc2\xe8\x3b\x4a\x76\x21\xa7\x28\xa5\xf8\xb1\x97\x79\x80\xa7\xc6\x23\xc4\x7e\x79\x20\x13\x09\xc9\xd1\xb5\xa0\x9c\x3f\xfe\x33\x6d\xe2\xcb\x5d\x0a\xaa\xe8\x77\x9f\x16\x34\x14\x89\x3d\xbe\xe2\xe1\x0a\x14\x90\xb3\xff\x51\x19\xe1\x4a\x1b\x26\xbc\xf4\xb7\x9f\x23\x8a\xf1\x9d\x31\x19\x9c\x3d\xee\xed\xd3\x64\xe9\xf0\xb0\x19\xe5\x6c\xb6\x42\x5f\xf9\x22\xe5\xad\xab\x79\x2c\x26\xa0\x84\xaa\x7e\x4f\x1e\x9f\x1e\xd3\x6e\xd3\x93\xab\xa1\xfa\xce\x91\x56\xa8\xb0\x1e\x19\x07\xfe\x4a\x37\x1b\x0c\x5d\x5a\x20\x41\x91\xbb\x34\xdb\x40\xb9\x20\x3d\xa9\x03\xd4\x6f\xc4\x09\x42\x44\xb0\x39\x21\xda\xa7\xc7\x13\xa8\x82\x62\x4d\xb5\xd6\xad\xa3\x5e\x5d\x89\x3f\x7e\x71\x31\x74\xdd\xa9\x03\xbf\x33\xce\xb6\x3d\x6c\xe8\x86\x45\x3c\x43\x31\x27\xa4\x53\x2c\x1d\x27\x2c\xc7\xc3\xba\xa8\xbb\xec\x67\xa3\xd5\x7e\x83\xa5\xd5\x83\x0d\xde\x17\x54\xdd\x14\x57\xe8\x4e\x1c\x89\x7c\x21\x49\x8c\x5b\x0b\xed\x0c\xb7\xd0\x4e\xc8\xec\x46\xd3\x09\x3a\xdc\x78\x6e\x3f\x6e\x05\xc0\xcf\x5b\xf2\x02\x94\xae\x38\xc1\x39\x4e\xd6\x37\x91\xdf\x60\x22\x5e\xc0\x66\xae\x27\x04\x34\x52\x8d\x09\x3d\x61\x19\xcb\x51\x5c\x16\x7b\x83\xa1\x27\xd4\x1e\xb0\x90\xa8\xb7\x32\xe6\xc7\x65\x2e\x72\x2a\x15\xc3\xca\x69\x8d\x03\x07\xac\x33\x6e\x4a\x1a\xd3\x0a\x51\x2f\x34\xfb\x9d\x4c\x46\x95\x37\xce\x0c\x54\xcd\x23\x53\xe9\xf6\x9f\x6d\xba\xdf\x1c\x45\xc1\xd2\x1e\x45\x64\x30\x80\xf4\xb8\x86\xed\xb5\xd0\x74\xeb\x42\x24\x9b\x09\xf2\x24\x73\x98\xa6\xb8\xd8\x87\x84\x43\x3d\x35\xb5\x75\xbc\xfa\x6a\x73\x23\x2a\xfa\xa4\x2a\xf2\x21\xa9\x8a\x7c\x58\x87\x5d\xd3\xec\x7e\x73\x86\x56\xf4\x6b\xa4\x21\xb4\x2d\x7a\x04\x46\x48\x9d\xbe\xe2\xa5\x66\x7f\xb3\x93\xc7\x3d\x9d\xc5\x13\x0e\x47\x5f\x66\x0c\xbf\xb8\x28\xea\x9a\x71\x69\xa0\xd3\x6d\x74\xc4\xb6\x2f\xd7\xd5\xca\xfb\x51\x77\x4d\x61\x4b\x6a\x1f\x2b\xf7\x64\x56\xb2\xd3\x44\x85\x83\xcd\xa8\x93\x45\x79\x6f\x36\x40\x47\x1e\x60\xb9\x37\xf5\x38\x2f\xd7\x9a\x7c\x8e\x31\x62\x72\x4e\x75\x4d\xfc\x35\x37\x0c\x70\x11\x1b\x1f\xa1\x48\x73\x31\x50\xd4\xe2\xb5\x7e\xb5\xf2\x20\x3e\xb0\x4a\x37\xe9\xf6\x30\xc8\xb0\xec\x8f\x8a\xc7\xaa\x8d\x81\x61\x01\x5a\x66\x94\xbd\xcd\x96\x5f\xa6\x1b\xc0\x2d\x05\x2f\x06\xca\x4b\x26\x20\x20\xfb\x2d\x46\xfa\x45\xa9\x7e\xa2\xa4\xa3\x72\x3b\x5e\x1a\xca\x53\xb9\xcf\x91\x6f\x8c\xcb\xa3\x06\x41\x71\x54\x89\xc7\xd0\xf0\x3b\x9f\xef\x7f\xa2\x42\x42\x46\x95\x45\xac\xbe\x35\xe6\xe4\x95\xa8\xea\x93\x2a\x49\x65\x3c\x50\x12\xb2\x91\x08\x02\x4a\x55\xf1\xf3\xc8\x93\x7e\x97\xaa\x00\x1b\x2e\x5e\xed\x5b\x11\xdd\xbb\xd4\x1f\x38\xc0\x2e\xf5\x46\x79\xdf\x4c\xbb\x7d\x95\xb0\xc1\xce\xa0\x26\x13\xc8\x3f\x6f\xca\x55\x22\x12\x3e\x42\x4e\x44\x37\x39\xab\xdb\xa6\x6d\xe7\xb5\x6a\x8c\xe6\x9b\x13\xba\x08\xe7\x59\x27\xef\x3c\xb5\x47\xa3\x4e\x91\xe5\x1d\x01\x62\xe2\x8e\x3e\x46\xe0\xa0\x27\x35\x94\x9a\xa5\xe6\x7a\x1c\x74\xe3\x8d\xf2\x28\xd7\xa2\x27\x8c\xf3\x48\xa3\x64\xb3\x28\x05\xc5\x35\x61\xf8\xe8\xbd\xc1\xaa\xd7\x81\xba\xd4\x03\xbc\x02\x3d\x21\x62\x74\x96\xf7\x10\x2f\x06\xff\x27\xb9\x1b\xef\xb7\xe0\x8b\x0b\xe7\x68\x7b\x2f\x60\x6f\x88\xcb\x04\x0f\x06\x16\xe3\x7a\x4c\x5e\x3a\x51\x27\xcb\x65\x57\x47\xd4\xa2\x58\x6b\x12\x94\x3a\x29\xa3\x1b\xf5\xac\x5b\x6c\xb7\x18\x09\xd8\x6a\x8f\x5c\x8e\x09\x68\x84\xc4\x59\xa1\xd4\x88\x43\x34\xbe\xb4\x12\x93\xdc\x38\x9a\xe6\xda\x16\x37\x2c\xe7\xb4\x4c\xe4\x62\xb3\x18\x0a\xc7\x4e\x4b\x56\x75\x04\xb4\x50\x00\x16\x1e\x67\x5c\x22\x27\x52\x93\x81\x49\xc7\x01\x1e\xdd\xab\x89\x7b\x4c\x72\x6c\x33\x80\x08\xdb\xde\x05\x22\xaa\xff\x58\x0a\x1f\xb6\xc9\x11\xf6\xf7\x6a\x8b\x47\xee\x55\xe9\xc6\xe2\x63\x57\x5a\x61\xe0\xbe\x33\x0e\x08\xce\x6b\xc0\x8c\x9b\xf9\x44\x70\x91\x8a\x53\xc5\x4b\x6a\x5a\x86\x6c\x07\xc9\xa3\x1e\xd7\x51\x72\x06\x59\x78\xcf\xd8\x64\xae\x91\xba\xc9\xb5\x89\xbb\x75\xc9\x26\xbc\x4d\x90\x62\x6d\x4b\x30\xcc\x50\x56\x04\xb6\x7b\xda\xf2\x48\xcc\x48\x29\x24\x7b\x4f\xb5\x69\x1e\xcd\x6c\xd1\x3a\xf9\x60\x4c\x1e\x26\x0a\x3c\xc5\x7c\x78\x20\x3d\xb7\xed\xcb\xf2\x68\x3c\x7e\x62\x79\x5e\xb7\xca\xc7\xb7\xc8\xd5\x12\x8f\xc6\x0b\xfc\xed\x5f\xd0\x22\xc1\x3d\x2c\x96\xe8\xdc\xcc\x6d\x61\xb5\xc6\xca\x75\x6a\x4c\xe2\xf9\x8d\x36\xed\x19\xb3\x6d\x6a\x6b\x71\x33\xee\xc2\xb8\xf1\x57\xff\xb2\xdf\x1f\x77\xf6\x1a\xf7\x2f\x34\xcb\x8d\x08\x5b\x47\xed\xf4\xae\x01\x3f\xe7\x4e\x9c\xc0\x1b\xa1\xb6\x76\xa2\xc5\xe0\xe9\x69\xf1\xdc\x57\x9a\x1d\x57\x4a\xd2\x5f\xdd\x18\xae\x4b\x29\x3a\xc8\xd7\x60\x7f\xa4\x1e\x6e\x54\x6f\x49\x46\xaf\x13\x81\x43\xf9\x82\xd6\x14\xad\xe9\x4c\x9a\x18\xa9\xa3\xfa\xe8\x6f\x8d\x43\x7d\xf4\xb7\x7c\x66\xda\xc9\xe2\x10\xfb\x60\x77\x45\x91\x57\x8f\xc7\x01\x9a\x5a\x44\x9b\xc5\x13\xa1\x43\x79\x5b\xb6\x2f\xc3\xb5\x48\xbc\x8f\xad\xfe\x46\x2b\x84\xae\xa7\x25\xf6\xf7\x79\xe4\xc2\x21\xaf\xd3\x21\x3f\xe8\x7d\x73\xbd\x51\xed\xa3\x6c\x96\xf5\x3f\x73\x35\xa1\x81\x37\x6b\xc0\x66\xcc\x40\x1d\xc6\x92\xff\xe2\x7f\xae\xd7\x3d\x8f\x6e\x1e\x75\xd7\x7a\xd9\x86\x4a\x22\xaa\xce\x0b\x06\x91\x05\xae\x61\x83\xbb\xd5\xfa\x6a\x1c\x00\x0d\x79\x8c\xe6\x88\x3d\x24\xc3\x6a\x34\x48\x90\x75\x27\x26\xef\xd0\x4b\x70\x79\x10\xbe\xa3\x7a\xfe\x91\x46\xcc\x79\x8f\xeb\xe9\xe4\x2e\x92\x0b\x93\xe4\x03\x6b\x15\x06\x81\x2a\x1e\x92\xb7\x93\x32\xca\xcd\x5b\x2e\x54\xa8\x13\x97\x16\xda\xa8\x40\x8e\x01\x5d\x41\x3d\xf6\xf0\xbf\x32\x4b\x15\x24\x68\xaa\xde\x61\xb1\x67\xc1\xbb\x6e\x54\x5d\xb9\x7c\x10\x7d\x49\x6d\xe8\xea\xc9\x56\x1d\xb9\x33\x16\x00\x77\x98\x3d\xea\x15\xa2\x27\xe3\x7d\x04\x99\x24\x28\xf6\x49\xbc\x5f\x3d\x69\x3d\x66\xf9\xa6\x73\x8f\x52\x03\x76\xb7\xaa\x89\x7a\x03\x26\x8f\xcf\xba\xca\x82\xa6\xe7\x48\x33\x41\x09\xe4\xa8\x19\xce\x6c\x05\xd1\xd0\x5f\x6c\x07\xe8\xf8\x43\x6c\x41\x18\x5d\xcf\xd6\x38\x75\x2c\x35\x3b\x55\x48\xdb\x63\xc9\xc6\x1d\xc2\x12\xbc\xce\xf6\xb2\x8d\x59\x5e\x7c\xc6\x81\x09\x79\x8e\x65\x0e\xcf\x51\xcd\x3b\x20\xbc\x46\x69\xb1\x11\xad\xae\x2a\x6b\xd1\xbb\x37\x05\xbd\x8e\x77\x83\x32\xc5\x9f\xfb\xc8\xff\x99\xe8\xa1\xa4\x3d\xd3\x22\x47\x65\xfe\xbe\xfc\x34\xf9\xe9\x1b\xa6\x01\xd0\x13\xec\x6e\x5f\xf8\xa2\xb8\x7b\xdd\xf4\x26\x55\xa4\x5c\x98\xec\xa8\x63\xa8\x4d\x95\x91\x96\xe5\x89\x49\xd1\x69\xdf\x2f\xc8\xa3\xc4\xf0\xb9\x28\x11\xab\x37\x08\x3b\x3c\xaf\xf4\xec\xb9\xf6\xb4\x72\xea\x52\xb3\x28\xe3\x95\x15\x19\xae\xb8\xb3\x33\xa4\x44\x72\x66\xa7\xdd\xed\xcb\x4b\xcd\x85\x43\x78\xae\x1e\x2d\xed\xb1\x7e\x77\x91\x2e\x98\xc4\xa8\x3c\x02\x40\x5b\xde\x1d\x07\x0e\x5e\xcf\x0d\xb2\x54\x3a\xa3\x59\x5e\xec\xa9\xfe\x5a\x4b\x39\xd8\xb1\xf0\x38\x76\xb7\x29\xef\xbc\x89\x1b\x35\xfd\xbe\x20\xf2\x7a\x43\xd6\x33\x53\x45\x21\x4d\xfb\x24\xdb\xe0\x56\x21\xe0\x6d\x7a\x5c\x67\xbd\xdc\xcf\x46\x85\x85\xca\x56\x13\x97\x61\x66\x9e\x05\x5f\x0d\x2a\x2f\x59\x5a\xe6\x51\x37\x98\x74\x7b\xd5\x75\xdf\x5f\x9b\x4e\xdd\x5e\x5e\x38\x04\xe5\x77\x33\xeb\x46\x27\xe3\x27\xb8\x65\x3d\x99\x8a\x2c\x0e\x1c\x10\xd2\x75\xbe\x83\x73\xca\xc2\x60\xe7\xa9\x09\x01\x72\x63\x37\xcb\x1d\xc9\x0e\x01\x40\x67\x30\xec\x9d\x8b\x45\x75\x5d\x5d\x11\x15\x0c\x3c\xd1\xab\xb8\x28\x3d\xa1\xfe\xb9\x39\x8e\xbb\x62\xa6\xe1\x5d\x51\x01\x2d\x36\x03\xb7\xea\x75\x60\x2a\x4d\x1b\x7f\x2d\x1c\x6a\x0e\xfb\x59\x6a\x7c\x03\x0f\x59\xf4\x0c\xb9\x73\x41\x90\x30\xcb\x3b\x71\xcf\x23\x80\x2c\x67\xa5\xb6\xea\x25\xf6\xd3\x5c\xd9\x7c\x24\xf0\x65\xd4\x56\xc9\x9c\x46\xc9\xcb\x14\x05\x6c\xd3\xd1\x24\xb5\x5b\xed\x87\xf2\x80\xc6\xa7\x7e\x49\x26\x28\x06\xf7\x36\x45\xeb\x79\x96\x0d\x06\x91\xd2\xe1\x17\x27\xb4\x6a\x4c\x77\x3d\x5c\x5e\x39\x82\x84\x37\xfa\xfc\xb3\xed\xc6\xb7\x5e\xf6\xd1\xad\x5c\x1d\x56\x97\xa3\xf4\x20\x4f\x4c\x82\xe7\x49\xc1\xfb\x1a\x41\xc9\x4f\xd6\xd1\x89\xc4\x67\xd3\x57\x3f\x91\xea\xdd\x65\xcd\xaa\x8b\xec\x98\x32\xfe\x2a\xf5\xb2\xab\x91\xe6\xba\xc0\x1d\xec\xb7\x44\x54\x5d\x1d\xf4\x84\xb0\x24\xc3\xe2\x37\xfe\xfc\xaf\xa0\x84\xee\x05\xf5\x3d\x5a\x41\xb9\x57\xa8\xed\xfd\x83\xa9\xeb\x7c\x71\xd1\x83\x13\x19\xf1\xfd\xff\xd5\xa3\xe9\xe5\x2e\x1a\xe8\xf0\x31\xb5\x45\x79\x01\x06\xeb\x0b\xa6\x38\x83\xf8\xf5\x99\xf0\x6d\x90\x18\xf0\x69\x76\x68\x23\x1d\x0f\x2e\x8b\x59\x92\x14\xb3\xe4\x7d\x76\x67\x4c\xfa\x78\x7b\x08\x6b\xa0\x15\x2c\x64\x3d\xa7\xc7\x41\x83\x24\xef\xb8\xbc\x24\x99\x07\xa5\x5a\xe8\x09\x11\x15\xe2\xb4\x0b\xc1\xdb\xbd\x61\xfd\xf8\x57\xac\xfd\x77\x1c\x01\x9c\xda\x3a\x52\x79\xf0\x88\xcc\x30\xb3\x7b\x24\x9e\xcc\x49\x19\xdb\x7a\x3c\x0e\x46\x9b\x2e\x5d\x8f\xa3\x8e\xd1\x11\xac\x53\xdc\xf0\x84\xc5\x8b\x53\x3c\x47\xaf\xa7\xe3\x92\xd7\x15\x81\x62\x6c\x20\x92\xef\x38\x3f\xb1\xd7\xba\x6e\x36\x13\xe0\x50\x3f\x6c\x05\xd2\x8b\x1a\x9f\x20\xa3\x3e\xde\x62\xe5\xf4\x2a\xd0\x2d\x1e\x91\x61\x8a\xc9\x2a\xe4\xe0\x2a\x49\xf1\x39\xa5\x2c\xfc\x8b\xe6\x64\xef\xbd\x4b\xab\x67\xe3\x51\x4f\xde\x04\xee\xb4\x3c\x1b\xfd\x77\xaa\x2f\x24\x11\xd4\x07\x96\x4d\x4c\xe7\x0e\x39\xb9\xcc\x8a\x84\xc1\x97\x79\x55\x2c\xbd\x74\xb0\x59\xba\x68\xd0\x98\x90\x0a\x6b\x90\xf0\xb6\xb5\x0f\xa2\x3c\xcd\x12\x55\x1f\x32\x6a\x10\x0d\x26\xb4\x09\xcc\x47\xda\x5b\x97\x74\x8a\x2c\x19\x79\x18\x08\xa2\x18\xe4\xac\x7a\xec\x47\x57\xcf\xad\xc7\xde\xf6\xb4\x8e\x7e\xf9\x0c\xc5\xc8\xd9\x28\x8f\x56\xdd\x1c\xb5\xf8\x3e\x1a\x07\x73\xe5\x5b\xdc\x6d\x43\x53\xd0\x9b\xe6\x7b\x4f\xaa\x63\xb5\x4e\x88\xd9\xa0\x13\x7b\x9b\x07\xdc\xe6\x1d\xb9\x0a\x3d\x26\x90\xf4\x30\xda\xc4\x0e\x6c\xdc\xe2\x46\x10\x1c\x9c\x16\xdd\xdc\xdf\xcc\xdd\x6b\xb6\xf6\xf8\x88\x00\x8f\xda\x98\xc6\x35\xfb\x49\x37\x77\xbd\x18\x4b\x88\x8e\xb0\xc9\xe1\x16\xd8\xf4\x49\xec\x8a\xd9\x6a\x08\x58\x6d\x47\xc6\x9d\x4e\xbd\x56\xb0\x7f\x7d\x30\xe6\x29\xf9\x14\x71\x64\x87\x59\x5e\xee\xdd\xfd\x75\x0f\xc1\x6a\x78\x3f\x43\xad\xa4\xf8\x9a\x8d\xcf\x9e\xd4\x45\x0a\xd5\x9e\x4f\xc7\xe4\x21\x70\x53\x4b\x16\xc6\xe5\x98\x2e\xb8\x34\xdd\xeb\xdd\xb8\x14\x68\x11\xb2\x24\x14\x6a\x26\x00\xc3\x47\x09\x60\x7e\xa3\xc6\xa6\x4e\x88\x1e\x33\x14\xfa\x1f\x27\x83\x1a\xa8\xab\xe3\xe1\xbe\x4f\xb1\x53\x99\xad\x6d\x66\xb0\x96\x37\xf4\x4e\xb5\x1b\x18\x80\xb8\xba\x3b\xf4\xde\x6e\xb7\x26\xb0\xa3\xe4\xc9\x70\x95\x14\xfc\x14\x63\x85\x26\xe3\x3f\x65\xb5\xf4\x71\xe8\x96\x35\xda\x8f\x13\x2c\xf5\x75\x11\x89\x34\x25\x28\x6a\x9d\x99\x9b\x89\xd9\xce\x35\xbc\xd5\x36\x34\x03\x3d\xda\xcb\xef\x5e\x9f\x93\xeb\xf8\x5b\xad\x09\xa7\x4f\xd2\x08\xbe\xd8\xa2\xfe\xd8\x67\x80\x19\x78\xdd\xf5\xea\xb6\x90\xbb\x4d\xe3\x48\x6d\xad\xdc\xe8\x6f\xce\x92\x56\xf8\xcd\xf1\xcc\xcb\xcb\xf3\x5a\x64\x9e\x43\x43\xdd\xdf\xb4\x77\xe0\xfe\x74\x6a\xb9\xd9\xbf\xbf\x59\x0c\xa2\xbc\x9c\x09\x92\xb0\x9f\x13\x76\xe7\x06\xc1\xbd\xce\xd5\xd4\x33\x96\x9a\xc5\x28\xaf\x16\x13\x79\x64\x7e\xe1\x59\xb6\xd2\xce\xa5\x29\x22\xa8\x34\x32\x7a\x55\x44\x1b\xa7\x4e\xf7\x62\x44\x09\x77\x49\xe2\x89\x15\x22\x3b\x79\x1c\xa5\xb3\xec\xdc\x2d\xf1\xb8\xae\xda\xe6\x91\x2b\xcf\x02\x69\x7d\xa3\x3e\x93\xcb\xe3\xd5\x7e\x39\x43\xa1\xc5\x15\x0a\x4b\x20\x4e\x63\x26\x2a\x75\xe0\xdd\xa1\xcb\xbb\x7d\x53\x23\x32\xa4\x27\x95\x04\xa7\xb9\x2a\xaf\xbe\xda\xec\xf6\xe3\x24\x54\x57\x54\xd6\x84\x82\xb6\x2b\x3e\x05\x13\xaf\x87\xc7\x42\xe2\x74\x9d\x14\x17\x2f\xd0\x93\x79\x6a\x4b\x2a\xd5\x98\xed\x8f\xb5\x89\x79\x72\x8f\x6b\xcc\x77\x42\x07\xfe\xc7\xbf\xdc\x0e\xf2\x2c\x0a\xd9\x42\xe5\xe8\x32\xf3\x22\xcf\xb1\x73\x7a\x5f\x03\xf4\x57\x34\xe6\x57\xb6\xaa\x9e\x10\x68\xc6\x20\x92\x5e\x26\x11\x2a\x44\x7a\x3c\x7e\x96\x72\x98\x24\x71\xab\x71\x54\xaa\xd8\x27\x02\x8a\x63\xf2\x69\x3d\xae\x35\x0c\xe8\xb9\x28\xd1\x5c\xc1\x07\xaa\xd5\x9c\x32\xcd\x04\x1f\x4c\x8d\x06\x43\x8d\xd3\xb8\xbf\xa8\xc7\xa4\x4c\x2a\x95\x31\xd2\xd6\xfc\x5d\xf9\x9c\x1e\x53\xb0\xd9\x77\x79\xf9\x9d\x06\xc9\xd0\x69\x12\x64\xad\x05\x06\xca\x14\x6b\x05\x96\x2f\x93\x52\x0c\xfc\x87\x87\x93\x7f\x45\xc9\x17\x24\x4e\x7c\x7f\x20\xe8\x14\x82\x5a\x67\x98\x3c\xc9\xbe\xcd\x22\x8b\xea\x15\x27\x29\x4d\x8a\x53\xb7\x1e\x97\x50\x50\x5c\x38\x34\x89\x95\x46\x04\xf9\x3b\xe3\x10\x4d\xfe\x8e\xa4\xb0\x16\x8c\x59\x1d\x61\x98\xb8\x34\x2e\x47\x3d\x64\x72\x5e\x1b\x3c\xe0\xb7\x3e\x23\xff\xc2\x22\x19\x0d\x86\xae\x07\x4f\x25\xf5\x13\x20\x98\xf8\x6d\xec\xf7\xc8\xb1\x4e\x51\x9a\x7a\x8a\x47\xdc\x29\xe9\x2f\xe8\x87\xd8\xe1\x26\x2a\xfb\x5e\xd3\x00\xf8\x96\x6d\x2c\xa4\x7a\x52\xd3\xdc\x6c\xba\xd7\xdd\x60\xe8\xa5\x71\xea\xda\x8f\x61\xbf\x29\xfa\x59\x5e\xe2\x85\x21\xf4\xd0\xfa\x96\xc1\x48\x27\x75\x1b\x96\xe7\x83\x87\x96\x27\x54\xed\x05\x13\x11\xfb\xec\x09\xbc\x63\x04\x68\xc7\xc7\x8c\x42\x25\x57\xd7\x8b\x0c\x29\x8d\x4a\x7f\x87\xde\x32\xdc\x7f\xf9\xbb\xbe\x10\xb6\x5e\x7e\x13\x63\xdf\x97\x72\x02\x9f\x64\x9a\x8e\x73\x78\xbe\xd9\xc9\xb3\xa8\xd7\x8d\x0a\x6d\x84\xa0\x27\xf1\x53\xb9\x09\x3d\xf6\xcd\xa2\x49\xec\xbb\x6e\xa3\xd4\xbd\xb8\xea\x03\x3c\x93\x88\xcb\x0b\x5d\x86\x09\x5b\x74\xd0\x6b\x0a\xc9\xa5\x4d\x50\xcc\x4c\x61\xe8\x2b\x84\xb3\xc8\xd7\x8a\x5e\x94\x38\x4c\x2c\x44\x87\x67\xf0\x3d\x7a\x42\xae\x55\xc3\x3c\x1b\xc4\x85\x2b\xf6\x04\x23\x16\x55\x8e\xf5\x42\x1a\x9e\xd6\x73\x02\x1d\x3c\x3d\x69\x85\x32\xd5\xff\x78\x9e\x3c\x5d\x8e\x4e\xd5\xfd\x9f\x6f\x16\x59\x02\x75\x74\xca\x90\x3d\xd8\x47\x9e\x07\x00\xae\xea\x2d\x80\x35\x70\xa6\x4d\x70\xf4\xb3\x3c\x15\x7b\x2e\x4b\xb2\x55\xef\xb3\x6b\x90\x78\xc6\xc7\x13\x04\xa6\x28\xb3\xee\x5a\x01\x59\x01\xe4\x14\x3f\x91\x9f\xf4\x74\xbe\x17\x0d\xc5\x70\x1a\xcf\x14\xa9\xdd\x8f\x31\x46\x27\xec\x2d\x75\x17\x68\xd1\x78\xf9\xd1\xa4\xbe\x4c\xf5\xb4\x54\xfb\x7a\x1c\xda\xd3\xc7\xd8\x29\x93\x25\x9c\x93\x2c\x2a\x65\x3d\x01\xd6\xe0\xef\xe3\x67\x40\x9d\x41\xc5\x5e\x8f\x5b\x81\x30\xfc\xf7\xeb\x1a\xf3\xdd\xac\x18\xb8\x32\xee\x92\xb1\xe2\x0d\x32\x56\xbc\x41\xcf\x63\xb5\x7a\x7e\x8a\xf1\x21\x73\x21\x9f\x09\x4d\x85\xe4\xcb\xf3\xa0\xd5\xa4\xb3\xa1\xc6\xf5\x0e\x9e\x01\x4e\xd4\x91\x18\x65\xe1\x2f\x64\x2c\x60\x35\xfd\xc7\x94\x3a\x94\xdd\xc1\x70\x96\x7a\xf9\x2d\x16\x67\x68\x05\x66\x93\x5e\x8c\x9d\x3c\x49\xe6\x3e\xd9\x10\x66\x32\xea\x14\x48\x86\xf4\x37\x28\x98\x91\x60\x0b\x73\xd3\x6c\x2e\x42\x35\x22\xd4\x82\xdd\xeb\x52\xf0\x9b\x54\xfa\x3a\xce\x4a\x5f\xc7\x09\x09\x37\xcc\x60\xf7\xf4\x78\xf5\x55\x18\xac\x6a\x38\x6f\xfe\x80\xa1\x75\xb4\x17\x39\x22\x42\xba\x9f\x33\xac\x1a\xb6\x00\xd6\x77\xa9\x9e\x93\x79\x5e\x50\xfd\xf8\x96\x34\xd1\xd0\x31\x01\x2a\x4e\xd5\x73\x64\x70\x79\x23\xe4\x40\x6f\xb9\x11\xe4\x0b\x21\xdc\x2d\xdc\x46\x43\xe5\xc9\x45\xaa\x21\x22\x91\x30\xfe\xa0\x15\x62\x6b\x85\x7e\x1b\x1f\x60\x9f\xa7\x36\x9a\xda\x87\xd7\x9a\xae\x36\x4a\xd3\x9a\x7e\xd2\x3f\xc8\x61\x9c\xdb\x5c\x44\x4c\xfa\x58\x9b\x82\xd5\xc7\xa6\x9a\x19\x87\xe7\x5f\x69\x16\xc3\x51\xca\xc6\x82\x9f\xb7\x42\x5a\xf9\x39\x95\x7c\xa2\x5e\xb1\x97\x4c\x58\xe0\x0c\x8c\xc8\xfd\xdf\xb7\xa8\xe4\xa8\xeb\x36\xfa\x53\xef\x61\xee\xea\xc7\xc6\xa1\x4c\x74\x1c\x13\x4c\xbf\x6b\x2a\xb9\x7a\xbe\xb9\x9e\x6d\x60\x44\x98\xc3\xf9\x7b\xa8\x45\xe9\x49\x8d\xf9\xdd\x52\x73\xcd\xb9\xe1\x9e\xc6\x62\xc0\xa8\x93\x15\xee\x71\x2e\x06\xee\x92\xc2\xa3\x09\x50\x56\x2f\x09\xf5\x1f\x6b\x75\x5b\x7e\x5c\x17\x1b\xaf\x64\x45\x11\x27\x1a\x7e\xa1\xf2\xf9\x19\xd9\xf2\x7d\x56\xc3\xec\x3c\xd8\xfc\x46\xd1\x20\x4d\x84\x4b\x2d\x56\x1d\xa8\x23\xe2\x56\x11\x47\x0e\xda\x0e\xa2\xdf\xb7\xe5\xd9\xe9\xf1\x54\x7f\x76\x79\xbe\xd9\x73\x49\xb4\x39\xe9\xb3\x7e\x52\xde\xa4\xf9\x15\xef\xcc\x81\x5f\x7d\xb5\xe9\xd6\x5d\xbe\x59\xf6\x7d\x39\x13\x2f\xfd\x38\x89\x9b\xde\x21\x64\xd8\xa5\xf1\x0e\x35\x93\x85\x43\xcd\xa5\x85\x43\x88\x2d\x50\xd0\xfd\x3d\xf9\x38\xba\x24\x6f\xeb\xb3\x54\x1a\x38\xaa\xcb\x18\xfe\x27\x01\x94\xc0\x32\xa5\x8e\x06\x86\x79\x0d\xfd\xb2\x63\x90\x6b\xb6\x26\x22\x01\x7d\x6f\xd3\x22\x0a\x04\xa6\x94\x9f\xf0\xbb\xff\x9d\x4c\x67\xf5\x2d\x95\x07\x8d\x55\xe2\x5d\xc2\xee\x58\x81\x59\x41\x51\xca\x02\x97\x69\x6d\x8c\xf0\x9d\xaf\xfe\xc0\x81\x66\x37\x4b\xbb\x6e\x68\xad\x3f\x4f\xff\x25\x75\xd5\xe7\xfc\x65\x8d\x52\xaf\xdd\x2f\x3b\x81\x77\x4b\xf5\x73\x7d\x5a\xe5\xa3\x4a\x31\x87\xd9\x10\x41\x90\x57\x00\x3a\x1c\x44\x06\x9f\xf0\x2d\xc3\x24\x51\x19\x47\xc4\xfc\x28\x6a\xe1\x1d\x7c\x28\x6c\x2c\xcb\x1f\x6a\x74\x94\xff\x43\x08\x70\xcf\x06\x28\x63\xb0\xa4\x09\x7d\x2b\x95\x2b\x31\x5e\xe8\x4e\x09\xc7\x6a\x59\xe9\xc5\x45\x99\xc7\x9d\x51\x68\x25\x63\x23\x79\x43\x7e\x47\x8f\xc7\x5f\x9d\xd6\xeb\x38\x3c\xbf\xb4\x4f\x9e\x00\x2a\xf2\x7b\xb6\x1a\xbf\xf6\xeb\x13\x15\x34\x43\xc5\x57\xaf\x56\x45\xe8\x10\xfd\x23\x8b\x80\xf1\x10\x4a\xa5\x10\x56\xc7\xa0\xbb\x8e\xbd\x51\x9d\x3b\xa8\x6b\xff\x3b\x63\x42\x9d\x6b\x69\x18\xbf\x7d\xa3\x15\x2a\xbd\xc3\xc4\x45\xe8\x98\x78\x29\x0f\x50\xee\xf4\x78\x6a\x7e\x49\xd1\xad\x9b\xbb\xf0\xa0\xb5\x9c\xd5\x0a\x4d\xee\x69\x1e\xda\xc2\xa1\x66\x3e\xea\xf5\x14\x59\x88\x4f\x5d\xa4\xbf\xb8\x58\x57\xd5\xe8\xba\xa8\x00\x7f\x50\x69\xbb\xad\x90\x54\xfd\xbb\xa9\x61\xb6\x7f\x7f\x73\x68\xc6\xca\xe6\x0e\xc2\xc6\x0d\x44\x55\xfc\x6b\x75\x34\x80\x8d\x7e\x3c\x20\x11\x58\xf8\xcb\xea\xf1\xd4\xd5\x2d\xcf\x37\xb3\x0d\x5f\xd3\xc4\xe4\xfa\x19\xb9\xed\xfc\x8c\xd4\x64\x56\xe2\x95\xb2\xaf\xbd\x38\xec\xc0\xff\x37\xd6\x06\x3d\x21\x53\xbb\x62\xd4\x29\xe2\x5e\xec\x0d\x96\xfc\xa5\xbc\xe8\x2f\xab\x8e\xca\xdd\xad\xa6\xbd\xf9\x89\xaa\x67\xab\xdc\xae\xf9\xb7\xd6\x54\x65\x8d\xed\x37\x4b\x2a\x41\xe7\x99\x7b\x45\x2b\xf3\xee\x36\xb1\xb7\x4f\x72\x37\x27\x89\xd2\xf2\x09\xd9\x02\xac\xde\x4a\xcc\x3f\x0d\xb0\x7d\x4c\x5e\xdd\x11\x62\xf8\x4f\x49\xe7\xf8\x8e\x8c\x78\x2d\x60\x20\x35\x30\xf6\x4c\x48\x79\xfe\x2d\x8b\x73\xbd\xcd\x22\x36\x47\x68\x79\x9b\x30\x7d\x43\xad\xd5\x16\x8c\x9a\x01\xb9\x52\x25\xdb\x58\xc6\x54\x42\xa7\x35\xa1\xa7\xe3\x91\xf3\xdd\xfe\x86\xcb\xbd\xff\x2c\x82\x25\x25\x77\xea\xc9\xd4\xce\x25\x56\x12\xe9\xaa\x4b\xac\x09\x8b\x3d\xe8\x54\x8b\x20\x04\xa7\x6a\x37\xfb\x4d\x17\xe5\xb3\xe4\x05\xf5\x09\x06\xb1\x59\x6b\x50\x89\x54\x37\x22\xab\x13\x4f\x22\x3f\xe1\x09\xe9\xd5\x04\x5f\xa6\x2d\x20\x2c\x36\x7b\xa4\xaa\x64\xdb\x84\x5c\x1a\x46\x8c\x16\xc4\xf5\x53\x0a\xdd\xc0\xeb\x7f\xaf\x6e\x00\xe6\x2e\xea\x49\x32\xcc\xcc\x6e\x42\x6c\xbf\xe3\x33\xd6\x5e\xee\xd2\x6e\xdf\x2f\x9e\xa6\x98\x1c\x5e\xd5\x35\xea\x81\x76\xe3\x72\x2e\x54\x76\x7e\x8c\xd7\x03\x3c\xc8\x2d\xf2\xfe\x46\x87\x76\x42\xa8\x0c\xdb\xfc\x71\xdf\x68\x59\x89\x3a\xb1\x7a\xf3\x7a\x8b\x95\xea\x73\xc6\x11\x0b\x45\x2e\x04\xe2\xeb\x2e\x51\xba\xb7\x96\xc0\xe5\x27\xac\x1c\xfe\x2c\xed\x87\x3d\x97\xa7\x2e\x2a\xfb\x33\xd8\x73\x51\x92\xf9\x47\xdc\x2d\xfc\x79\x2b\xf4\x23\xfe\xa8\x06\x41\xdd\xec\xc5\xb9\x13\x93\x4c\xef\x03\xa5\x3c\x10\x0b\xab\x9e\xf4\xd8\xd0\x61\x14\xe7\xc5\x4c\xe0\x38\x28\xab\x14\x29\xb3\x62\xd7\x0d\x5c\xc5\xd5\xad\xb5\x64\xf3\x09\xb9\x61\xb3\x44\x92\x89\xa2\x66\xd8\x2d\x4a\x50\xae\xb0\xa2\xfb\x65\x01\xeb\xcf\xc8\x28\x31\xaa\x99\xfc\x9e\xfe\x37\xe2\x1d\xcc\x81\x59\x01\xe8\x60\x7a\x9f\x10\xc4\xa0\xd1\xd1\xaa\xab\x05\xae\x6f\x66\x8b\x34\x64\x1e\x6d\x4b\xb9\x5b\x2f\xa8\x6e\x89\xca\xa3\x38\xd9\x88\x36\x0b\x16\xaf\x3c\x89\x15\x42\x4f\xe8\x4d\x14\x65\xb4\xba\xea\x72\xe3\xc5\x78\x05\xb9\x65\xcb\x3b\x3e\xa3\xfe\xdd\x4d\x12\x6b\x7c\x2d\xeb\xa7\x7b\x28\x2f\xff\x02\x13\xc1\x34\xf7\xe5\xa9\x79\x8e\xf9\xe1\x79\xef\xd4\x5a\xfd\x8a\x7a\x4d\x10\xec\xff\x68\xc8\x6e\x46\x49\x22\x97\xa2\x03\xb6\xc5\xfa\x44\x34\x7a\x8f\x10\x42\xa0\x03\xfb\x51\xd3\x6f\x21\xc8\xed\x82\xa7\x7b\xdb\xb2\x94\x8e\x06\x1d\x97\x1b\x30\xdc\xb3\xf8\x96\xe7\xb9\x4c\xbc\xa0\xa1\xc4\x55\x3f\x13\x36\xa2\x7c\xa0\x9d\x43\x53\x32\x92\xd5\xc1\xe2\xd9\xe7\x76\x86\x2e\xcd\x03\x07\x96\x9f\x0c\x4a\x49\x3f\x25\xdd\xe8\xab\xc4\x69\xb9\x8b\x17\x63\xee\xcc\xf2\x9d\xc8\x9c\xde\xd0\x85\x4a\x79\x54\x88\x98\x6d\xbb\x08\x53\xe3\x9f\x8d\x43\x99\xee\x8c\xf0\x5c\x8c\x46\xdf\x20\x81\x6e\xb9\x27\x6f\xd2\x56\xbd\x28\xd2\xdb\xf7\xb8\x3a\x5f\x52\xee\xbb\xde\x2a\x7c\x33\xf1\xda\xbe\x4f\x1b\xcf\xbb\xf2\xe3\x48\xbc\x3e\xa3\xda\xe5\x30\x8b\xd3\xd2\xf5\x66\xab\xcb\x41\x67\xe1\x63\x82\xe5\x7e\x2c\xf7\x6c\xc0\xca\xea\x32\x0d\x70\x59\x63\x10\x3a\x18\xa9\x3e\xae\x92\xe6\x89\x2e\x78\x74\x82\xa6\x19\xe5\xee\x4f\x56\xb7\x89\x84\xfb\x1a\x44\xce\xbc\x33\x78\xb5\x96\x98\x0b\xa1\x24\x0f\x08\x03\x3f\x93\xa7\xe4\x95\xb0\x43\x0b\xf3\x1a\xd2\x53\xd3\x34\xaa\x6e\x19\x93\x71\x0e\x13\xd0\xda\xe4\x8d\xfd\x0b\x81\x86\x10\xda\xe3\xcf\xb4\x05\xcc\xeb\xe5\xb0\x97\x16\x0e\x05\x8d\x88\x6a\xc6\x23\x70\x39\xd3\x22\x2c\xe7\x55\xb2\xa6\xfe\x44\x58\x2c\xf6\x60\x83\x6b\xcd\x13\x5b\x44\x55\xd8\x2d\x6a\x66\xd8\xc3\x6f\x0a\x57\x10\x6f\xe5\x2b\x6d\xd2\xe7\x78\x0f\x9b\x1f\x4a\x2b\x7b\xb7\xd8\x1e\x10\x8c\x51\xed\xfc\x8c\x49\xaf\x78\x46\xb8\xf1\x68\xe8\xdc\x9f\xaa\x35\xbd\xb8\xd8\x5c\x8b\x7b\xa9\x83\x8e\x9d\x17\x1d\xac\x9e\x9d\x49\x5a\xf0\x7b\x79\x2d\xda\x04\x70\x10\x4f\xfc\x22\xae\x47\x4f\x58\x71\x35\xcf\xab\xed\x1e\x4e\x95\x08\x9a\xb6\x5b\x93\x86\xcf\xb4\x28\x05\xc8\xfb\xc0\xa5\x46\x88\x9b\x34\x9d\x34\xc2\xed\xce\x40\xf5\xc0\x81\xe6\x30\xca\xe1\x56\xa0\xc5\x46\x2c\x51\x56\x79\x7c\x96\x14\x90\x93\x41\x9c\xae\x96\x19\xf6\x3d\x13\x96\x90\x77\x60\x92\x13\xfb\xfc\x5e\xbb\x9a\x3d\x42\x1e\x31\x77\xc7\x5e\xbe\xf6\x97\x9e\x6d\x07\xee\xcb\x63\x5b\x64\xcc\x76\x81\xb9\x00\x3f\xc5\xc6\x21\x53\xf9\x4f\x83\x8f\x88\xf9\x3b\xb7\x45\x9c\xc6\xe9\x38\x7f\x71\xb1\xf9\xcb\xff\xd5\xaf\xfd\x97\xcb\x8d\xd0\x2e\x46\x8f\xd9\xb8\xc8\x35\x8d\x82\xdc\x45\x14\x43\xd4\x09\x80\x3c\x43\xd8\xfc\x12\xd0\xca\xea\xfb\x75\x4c\x92\x92\xda\x55\xcc\x2e\x3f\x58\x3d\xf5\xfb\x6a\x8d\x93\xe9\x52\x33\x1a\xad\x8e\x8a\x32\x4e\xbd\xa1\x03\x1e\xfb\xf9\x16\xbd\x83\x69\x51\x6b\x89\x06\x87\xc3\x3c\x8b\xba\xfd\x06\xe1\x95\x2f\x11\xe9\xee\x12\xf3\xec\x5c\xfc\x1d\x27\xc5\x50\x94\x74\xd1\x65\x41\x8a\xf7\x7b\xd8\xad\xf5\x3f\x48\x16\xe8\xf7\xe8\xa6\x87\x79\x36\xcc\x8a\x28\x79\x5c\xd6\x11\x6b\x13\xc9\x1f\x62\xbe\x5f\x6f\x4d\x2a\xf2\x54\xb3\xda\x50\xe0\x61\x63\x3b\x82\x98\x1d\x35\x44\x88\x59\xa1\x42\xfd\xae\x2c\x82\xfa\xef\x12\x80\x63\x22\x7f\x82\x31\x8f\xf5\x59\x11\x4f\x66\xbc\x20\x2b\x8f\xc9\x29\x4e\xeb\x9f\x16\xa3\x8e\xd9\xdd\x98\x2c\x7d\x75\xd3\xa6\x18\x10\xea\xbc\xe9\xc8\xd3\xb5\x11\x03\xbd\x3f\x26\x3c\xf8\xfb\x35\xa0\x88\x85\xe6\xaa\x4b\x5d\x5a\xba\xae\xa5\x61\x13\x6a\x21\x7a\x52\xe7\xe7\x5d\x6e\xc4\x5d\x08\x55\x9b\xbb\x56\x83\x34\xa9\x38\xe2\x1e\xc4\x48\x6d\x11\x32\x7f\xc2\xf1\xf3\x27\x35\x4e\x3a\x4b\xcd\x7e\x9c\x24\x0d\xd2\xc4\xff\x7c\xa2\x46\xf7\x79\x2d\xd3\x2e\x1f\x0d\x3a\x89\x9a\xa3\xf9\xc6\x08\x69\x92\x87\xa0\x66\xc5\x25\xe5\x23\xf2\xf2\xac\xf1\x19\xd0\x60\xb7\xe5\xe5\x51\x37\xf3\x15\x46\x5d\x79\x3f\xc5\xd6\x84\xda\x7c\xc3\xcb\x06\xff\x94\x1d\x48\xde\xf3\xe1\x48\xd4\xed\xba\x61\xb5\x6d\x92\xd0\x83\x12\xa3\x50\x7d\xd9\x85\x85\xdd\x24\xd7\xab\xeb\x41\xc8\x7e\x84\x9a\x92\x49\x96\xae\x1a\x7e\x13\x49\xfc\x75\xe2\xea\x5d\xaf\x7d\x92\xc5\xa8\x9a\x55\x4b\x54\xbb\xa6\xca\x94\x47\xea\x8d\xd2\xb8\x2c\x66\xa9\x17\xfa\xfb\x1c\xb0\xbc\x81\x5b\xc7\xc9\xb9\xd6\xee\xaf\x7b\xa0\xde\x94\x50\x9b\xa8\x14\x89\xa7\x1e\x55\x0b\x3e\x91\xdf\xd4\xe3\xda\xfa\xea\x20\x4e\xe3\x35\x43\xb1\x1a\x29\x99\x10\x0f\x41\x41\xc4\x78\x1f\x94\x99\x5e\x6a\x4d\xf4\x2c\xea\xb2\xcd\xd7\x5c\x9a\xc6\x68\xfc\x9a\x8c\x82\x7c\xbb\x9e\xf8\x88\x28\xea\x64\xeb\xee\xc9\x80\x2c\x7d\x62\x2b\x74\x81\xe6\xda\x5c\x8d\x1f\x13\x96\xfa\xfc\x78\xf7\xd7\xcd\x79\x07\x0b\x3d\x26\xc1\x2e\xa1\x83\xf8\xe4\xd4\xeb\xf5\x7f\x65\x2b\xb0\xc0\x55\xa2\x1f\xeb\xc0\xc3\x71\x88\x59\xfe\xc5\x78\x42\x4d\xa4\x1a\x95\x32\x6e\x16\xff\xe3\x36\x21\x6b\x4f\xf9\x4b\x5f\x49\xb2\x0d\x55\xbc\xc3\x25\xee\x6e\x13\xb4\xfe\xca\x38\x60\x09\x2f\xd7\x72\xd1\x4a\x97\xa6\xae\x28\x5c\x35\xa3\x97\xbc\x91\x32\x8d\xd7\x33\x54\xb5\xc9\xe3\x6e\x94\xce\x4c\xba\xf6\x78\xde\xf8\xe2\xd3\xb8\x42\x54\x90\x1f\xdd\xaa\x21\x80\xa7\x71\xea\xca\x4d\x28\x03\x72\x05\x0a\x73\xf5\x8b\x31\x21\xfd\x8f\x49\x20\x86\x07\xb7\xbb\x4d\x22\x5d\x99\xec\x5d\x8d\x20\xe9\xa3\x99\xbc\x9e\xd4\xec\x33\x4b\x22\x7c\x3f\xf2\x98\x3f\xdf\xf1\xf1\x4a\x62\xb7\x5a\x3b\xcb\x9a\xa2\x3a\x97\x47\x65\x56\x0c\xfb\x2e\xd7\x16\x5f\x9d\x40\x40\x4d\x29\x30\x89\xd2\x5e\x91\xc4\x3d\xf3\x85\xb6\xbd\x4c\x36\x14\x03\xcb\x56\x49\xe4\x07\x04\x4d\x59\xcf\xe2\xae\x9b\x25\x39\x24\x98\x7a\x5b\x54\x4e\xf8\xd4\x8b\x24\xc3\x5e\x4b\xd0\x51\xb9\xb0\xc3\xf3\xbe\xba\x41\x05\xb9\x8b\x53\x7b\x81\x2c\x17\x90\x58\x2f\x37\x67\xc8\x3e\xf4\x12\x49\x21\xdf\x63\x6f\x3a\xf6\xd6\x29\x46\xb1\x2a\xb8\x2a\x94\x4c\xae\x0e\x2f\xe3\x2e\x6f\xe5\x78\xb9\xe6\x32\x20\x3f\x83\xba\xca\xe3\x18\xb0\x98\x0a\x77\x70\xad\x28\xb4\x7e\xce\xb3\xea\xae\xac\x26\x86\x57\x23\x8d\x32\x97\xe7\x71\x8a\x25\xc4\xb2\x7c\xea\x4a\x5d\xdc\xa9\xd7\xbb\xb8\x28\x4e\x52\x5e\xc3\xe2\x38\xb6\x67\x04\xcd\x5a\x12\xc6\x25\xef\x12\x11\x0a\xbc\xe8\x93\x8c\x78\x3b\xcb\x4d\x48\xf8\x49\x62\x36\xbc\x89\xe5\x13\x53\xff\x0d\xbc\x70\x44\x51\xe8\x3c\xf9\x34\xd9\x6b\x2d\xec\x11\x9f\x61\x15\xf0\x90\x10\x4f\xe5\x76\xa1\xab\x6d\x88\x05\x89\x13\xf4\x9b\xd8\x6d\xf9\x93\x31\x99\xd9\x5e\xa8\x25\x8f\x67\x04\x86\x40\x02\xf1\x2f\x5b\xa1\x23\xf6\x2f\x43\x45\x6f\x34\x1c\xe6\xf2\xc1\xc3\xf3\x06\xf9\x90\x0f\x1a\xfc\x23\xa8\xb7\xb8\x55\x6c\x46\x98\xe9\xbb\x78\xda\xef\xda\xda\x91\x2b\xbf\xbc\x70\xa8\xb9\x7f\x61\x8f\x3c\x3d\xac\x70\xb7\xc6\x44\x13\xbe\x27\x59\xdd\x36\x0c\x1c\xb0\xe8\xfd\x11\x06\x07\x20\x23\x8f\x6c\x11\x79\xfa\x6c\x6b\xa2\xb4\x51\xba\x62\xc3\x15\xe5\x5e\xf9\x6e\x8b\xbb\x48\x09\xfb\x04\xa9\x93\xa8\x36\xb4\xc7\x54\x54\x5f\x8a\xb1\xa4\x62\xf1\xf8\x9f\x77\x35\xe0\xc0\x04\xf8\x78\x42\xf0\x2f\xea\x81\x19\x6c\x5e\x6b\xa1\xa6\x0e\x24\x06\xde\x08\x88\xc6\x6a\x3f\xb6\xc5\x30\x99\x56\x20\x40\x7c\x54\xc7\xba\x1c\xe6\xd9\x7a\xdc\x43\x6d\x1f\xed\x9d\x7b\xd4\xea\x61\xa8\xd7\x30\x2b\x5c\x31\x1b\x0a\xeb\x37\xa9\xf5\x75\xa2\x45\x32\x50\x37\xd9\xb8\xe8\x84\xaf\xc2\xe4\x19\x70\xd8\x4b\x6c\x67\xe7\xbb\x22\x24\x56\x56\x46\x8a\x98\x05\xda\xfb\x43\x82\x5c\x6a\xfb\x1a\x0b\xc2\xe5\x89\xed\x28\x9d\x21\xa4\x09\x5c\x55\xbd\x98\xb9\x1f\x78\x37\xc7\x01\xc4\x5f\x6c\xa6\x19\x14\x0e\xf0\xf4\xc9\xd4\xdc\xb2\xf7\x9f\xd7\x75\x27\xb2\xb2\x04\xe2\x0d\x53\xfd\x2c\xcf\xfb\xb3\xad\x27\xc8\xe5\x3d\xe9\xed\xab\x12\x60\x14\xc1\xdf\xc6\xb2\xe2\x9f\x9d\xaf\x93\x5e\x6f\x51\xdb\xe8\x2d\x2c\x05\xd8\x3b\xff\x41\x2b\x2c\x05\xdb\xe3\xa0\x87\x7a\x9c\x8d\xb7\xae\x8d\xc3\xeb\x7a\x30\xd1\x6a\x90\xc7\x0b\x4f\x39\x2e\xab\x76\xb3\x81\x48\x50\xb8\x62\x0f\x2d\x5f\x27\x39\xf3\x36\x3a\xa8\xfe\x17\xa6\x3b\xf2\x0a\x66\x8c\xc3\x64\x08\x4b\xe8\xa7\xfe\x3d\xaf\xe4\xea\x7e\x49\x92\xdc\x4b\x53\x05\xd4\x61\xd6\x5d\x73\xa5\xee\x55\x5e\x2f\xfd\xc0\x01\xbd\x60\xd3\x7f\x30\x0c\x5f\x4d\x46\xb0\x92\x65\x3d\xb3\x76\x37\x61\x20\xf9\x36\x55\x66\x98\x00\xdb\x06\x71\x9a\x5e\x94\x6f\xc4\xa9\xc4\x1d\x8a\x44\x92\x77\x61\xa8\x24\x4a\xfd\x86\x71\x92\xb0\xec\x0c\xca\x01\x66\xb3\x1d\x98\x7f\x7f\xab\x26\xca\x3c\xd8\x1c\x64\x29\xc4\xf9\x7c\xa3\xec\x0b\x96\x07\xfc\x82\x0d\x11\xa2\x5e\x1c\x85\xe2\x83\xbd\xe4\x50\x2a\x38\x5e\x97\xab\x17\x65\x96\xf5\x48\x15\x51\x55\x7e\xf5\xa4\x4d\xb2\x88\xdd\xcd\xbd\xc1\x6e\xe9\x0c\x9b\xa2\xed\xd9\x62\xbd\xdc\x56\xd8\x44\xbf\xb2\x15\x48\x0c\xc0\x66\xcb\x1a\xf2\xdf\x34\x91\x3a\xa0\x41\x70\xc6\x63\xda\xe2\x81\xac\x23\x3e\xd8\xb1\x1d\x9b\xb7\xef\x89\x2a\xdb\x28\xca\x1f\x99\x70\x2e\xfb\xff\xc9\x1d\x8d\x38\xdf\x2e\x9a\x0b\x9d\x03\xf0\x39\x30\xcd\xae\x13\x95\xf8\x83\xb1\xaf\xe8\x2f\x3e\xd7\x26\xa7\x9c\x99\x2d\x23\x31\x17\xf1\x60\x94\x94\x51\xea\xb2\x51\x91\x6c\xca\xc2\xe9\xb9\x2c\x5e\x5f\xed\x22\xab\xa6\xc7\x45\x99\x55\xd1\x9c\x3c\x1a\x14\xe0\x94\xdd\xaf\x27\x53\x69\xc4\xc2\xa1\x66\x37\x89\x07\x51\xe9\x40\xd0\xd2\xf6\xc5\x38\x20\x83\x4f\x11\x6e\xe2\xe3\xa9\xfe\xb8\xe1\xda\xbb\x51\x9e\xba\x55\x4d\x46\x30\x96\x7e\xce\x2e\x8e\x3f\x9f\x42\x3d\x1e\x7a\xa9\x59\x56\xe3\xd1\xf7\x94\x31\xf6\x6f\xc9\xd8\xd0\xe3\x2f\xfd\xb9\x81\xcb\xbb\xae\x67\xa9\x15\xaa\xd1\x37\xf1\x7b\x7a\xe2\x53\xab\xd5\x7c\xe4\x8a\x6c\x80\x8a\xb0\x09\x65\x37\xbc\x36\xe3\xbd\x56\xf0\x53\x9a\x7e\x3c\x55\xb8\x19\xc5\xc9\x28\xc7\x9f\x73\x61\x0f\x25\xc9\x7b\x94\x04\x9e\xde\x49\x81\xfd\xd5\x2a\x3a\x9f\x21\x95\xbb\x56\x78\x87\x5a\xe6\x34\xc0\x29\x69\x6d\x46\xdd\xae\x79\xcc\xa2\x22\xf8\xef\x5b\x61\xb1\x3d\x35\x09\x57\x08\x71\x62\x37\x89\xe2\x41\xb1\x87\xf0\x85\xc7\x49\xd4\xe0\xaf\xb7\x48\xe2\xe8\xb7\x50\xff\xf2\xc2\x0d\x1e\xb7\xa8\xcb\x3d\x72\xf7\xb7\xc7\x3b\xc5\x8a\x05\x37\x32\x18\x8c\xd2\xb8\x6b\xba\x62\xd5\xc4\x22\x16\xac\x4f\xec\x68\x77\x5a\xc9\x46\xf9\x93\x41\x35\xe2\xbb\x64\xae\xa0\x6d\x17\x04\x7e\x3f\xd4\xd8\x84\x5d\x10\x50\xb0\x50\xb6\x38\x2a\x19\x5a\x52\x40\xae\xf0\x7d\x34\x58\xf0\x3f\x1f\xe0\xea\x95\xcc\x8c\x72\x38\x92\xad\xff\x87\xe3\xf1\x53\x88\x5b\xf5\x6f\xe4\x55\xa2\x9d\xba\x87\xaa\xd3\xef\xb4\x42\xea\x12\xad\xbb\x7c\x73\x36\x08\xd1\x29\x99\x1a\x1a\xab\xd7\xe5\x76\xf4\x3f\x70\x01\xfa\x1f\xad\xe7\x88\x0e\x5b\x94\xf9\xa8\x5b\x8e\x72\x14\xbb\xb0\x02\xa0\x85\xa9\xc7\xbe\x59\x1a\xa7\x2b\x64\x6b\x8f\x06\xdd\x43\x7c\xb1\x9e\x50\xdb\x42\x91\x52\x73\xf2\x14\x30\x26\x6e\x90\x54\x33\xb0\xdd\x46\x69\x95\xdb\x46\xb8\x01\x3b\x76\x23\xbe\xfc\x09\x03\xdd\x55\x93\x31\x5d\xfd\x8d\x3f\x0f\x9c\x40\x96\x6a\x5e\xe8\x51\xd9\x44\xb0\xfd\x0a\xb3\x41\xf3\x38\x2d\x80\x2a\x58\x0c\x16\x1a\x1e\x3c\xfe\xf9\xc4\xbe\x8c\x77\x69\x89\x2f\xaf\xd4\xbd\x28\x99\x95\x97\x06\x42\xcd\x65\xb9\x11\x2c\xa2\x57\x08\xa4\xfe\x63\xd6\x11\xfb\x19\x69\x89\x77\xfb\x2e\x1f\x75\xe0\x0f\x86\xb0\xe1\x4d\x09\x65\xb4\x59\x01\xd3\x4c\xf3\x8f\x08\x51\x4a\xee\xa2\xa2\x18\x99\x29\xfc\x2b\x81\x2e\x5a\x3d\x53\xab\x60\x4f\x17\xa4\x17\x9b\x39\x13\xed\x30\xea\xfe\x90\x78\x11\x7f\x48\x98\x89\xa0\x70\x8d\x97\xf1\x33\xc9\xfe\xf5\x98\x16\xf0\xd7\xe2\xd5\xd5\xc4\x90\x39\x68\x29\xfc\x36\x61\x32\x7e\x9b\x10\xa9\xf9\x28\x51\x4f\x69\xd6\xbf\x81\xe8\x13\xf0\x11\x7a\xcc\x1a\x39\xc4\x00\xd9\xc8\xe3\xd2\xa1\xff\xec\xd3\x36\xef\x8e\x78\x96\xe8\x97\x0a\x16\x7a\x8c\x72\x0a\xd5\xe8\x45\xb5\x7e\x6e\x2b\x60\x73\xcf\x4f\x78\x72\x86\x84\xf6\x7c\x2b\x28\xed\x9c\xd1\x80\x0b\xc1\x93\xea\x89\x20\x2e\x50\xba\x00\x1b\xf3\x22\x8d\xfc\x57\x53\x2f\x60\x79\xbe\x99\x3b\x41\xb7\xeb\x2a\xe4\xf1\x45\x87\xe7\x3d\xbe\x88\x3b\x02\x22\xbf\xdd\xdb\xd7\xf0\x26\x69\x0f\x77\x12\x64\x4d\xe5\x67\xae\x4d\xd2\x8e\xf7\x26\xc5\x20\x98\x6b\x2b\xef\xdd\x7e\x8a\xd2\x0d\x05\xb4\x60\xb4\x02\x52\x84\xe5\x7f\x57\xbb\x41\x2e\x2f\x3b\xf7\xc3\x17\x17\x9b\xa9\xeb\xba\xa2\x88\x4b\x54\x19\x2d\x68\x94\xab\xb1\xa8\xf1\x69\x5a\x57\x93\x24\xdb\xd0\xd0\x1a\x2b\xd8\xbf\x65\x23\x2c\x6c\xa4\x46\x40\xc0\x33\xd7\xff\x19\x33\xa6\x2a\x88\x53\x5c\xaf\xb1\xed\x59\x6a\xf6\x5c\xe1\xf2\x75\xec\x7f\x26\x20\x23\x77\xab\x61\x3a\x19\x74\x1f\x9f\x04\xa4\x14\xa3\x46\xa8\x39\x42\xf6\x54\x8f\x6b\xaa\x99\xcd\xac\xb3\x1e\x67\xea\x1f\xab\x54\x3d\x62\x00\x04\x35\x94\x7e\x94\x94\xa2\x05\xa1\xe0\x39\xe2\x01\x35\xda\x00\x64\xe0\x3d\x6a\x7b\xd8\xd7\xdb\x16\x0e\x05\x15\xda\xea\x99\x69\x7c\x4d\xb6\x36\x6e\xd0\xc9\x37\x33\x28\xfb\xe2\x3b\x66\xdb\x61\x8d\xbe\x29\x03\xc6\xdc\x31\xa6\xef\x60\xa1\xb9\xe1\xe0\x29\x57\x2d\xb4\xa6\x8d\xd2\x20\xd1\x94\x1a\xf8\xda\x46\x94\xac\xcd\x4e\x34\xcb\xaa\x5b\x43\xd4\xfb\x21\x9e\x33\x96\x43\x60\xb3\xcc\x1b\x99\x34\xd1\xba\x65\x96\x17\xf2\x76\xb0\xe8\x6d\xe3\xaf\x7c\x85\xf5\xe5\x25\xaf\xab\x6b\x7b\xcc\x7a\x96\x8c\xd2\x32\xaa\x76\x35\x0f\x8e\x01\x6f\x1d\x65\xa2\x5b\xe3\x30\xa5\x15\x0d\x81\xec\xff\x0b\x6a\x37\xc4\xbd\x2a\xce\xf5\xe5\xd7\xff\xb5\x45\x32\x09\x08\x7a\x11\x8e\x43\x1c\xd4\x9a\x40\x78\x41\x66\xf8\xb3\xf3\x81\x1c\x7a\x49\x2a\xfb\x33\x61\xce\xbd\x81\x56\xb4\x7e\x15\x51\xf0\x4e\xd5\xf9\x91\x0a\x43\x68\x26\xfc\xf6\x75\xb9\x11\x7c\x13\x32\x75\x5b\x5b\x6a\x2c\x50\xfb\x59\x31\x04\x1b\xab\x41\xd9\x26\xb9\xdf\x7f\x4a\x51\x9a\x84\x5b\xae\xb7\x27\x90\xae\xce\x22\xaa\xb2\x09\xd7\xf0\x6a\x7d\xa7\x30\xdc\x8c\xfd\x43\xed\x88\xb3\xf2\x68\xf4\x53\xb4\x93\x95\xce\x0d\x64\x3f\x0a\xad\x99\x0b\xc4\x94\xbf\x40\xf5\xc9\x61\x9e\xc1\x76\xd4\x94\x41\xe4\xe5\xe3\x2e\x67\xdb\xa1\x0c\x78\x8a\xa5\x21\xee\xd4\x00\xbb\x97\x9a\xd9\x4a\x23\x88\x8a\xdd\x6b\x51\x9f\xea\x9e\xef\xa8\x94\x2e\x32\xc8\x97\x29\x2e\xf2\x53\x7d\x96\x24\x4e\xf3\xdc\x75\xcb\x78\xdd\xcd\x32\x11\x8a\xf4\xf4\x11\x45\xab\x99\xbf\x8c\x7a\x33\xf6\x9f\xa6\x27\x2f\x01\x76\x5e\x4d\x13\xeb\xd8\x4b\x21\xcc\x7a\xf9\x35\xcb\x49\x3f\xca\x7b\x22\xc9\xbe\x3c\x6f\x1d\x5b\xd5\x6a\xd4\x13\x0f\x41\x8e\x62\x2f\x1f\xe2\xd5\x18\xaa\x3d\xc9\xd4\x18\x02\xae\x24\x2a\xd1\x8a\xd8\xbe\xcf\xd4\x27\x65\x8b\xd9\xa2\x43\x00\x81\x41\xdc\xad\x86\x93\x96\x0e\x30\x23\xd5\x37\x10\x71\xff\x09\xf6\xb1\x3a\x5f\x57\xdf\x5c\x8f\xd2\xd5\x51\x94\x23\x78\x30\x73\x13\xf9\x23\x73\x3d\xa9\x61\xc8\x8f\xd2\xae\xcb\xcb\x28\x4e\x67\x02\xce\xf9\xc4\x38\xe4\x3f\x58\xb3\x55\x2e\x76\x42\x9e\x41\xec\x30\xaa\x6f\xf7\x04\x8a\x6f\xbd\xbc\x03\x7b\x68\x74\x0a\x26\x6e\x73\x18\x97\xae\x16\x50\x1f\x47\x4e\xff\xc8\x16\x71\x27\xbf\xc0\x1b\x40\xcb\xed\x41\x0b\x8b\x81\xca\xac\x90\x84\xed\x63\x52\x99\x36\xdb\x24\xf2\xb6\x43\x1c\x8f\xcd\xe6\x14\xe6\x9b\x89\xb4\x04\xb4\xfe\x33\xd8\xbf\x15\xba\x8f\x09\xe1\x51\xce\xbf\xf6\xeb\x1a\xf9\x7f\x81\xcd\x1c\x9b\x18\x3c\x80\x50\x10\x9a\x41\x49\x16\x2b\x2d\xc8\x35\xc8\x46\x4f\x8c\xd9\x4f\x08\xa1\x0e\x0a\x09\xff\x06\x05\x6c\xec\xf2\xd7\xd1\x59\xb7\xca\xa1\x8d\xb2\x6e\x96\xf6\x32\x9d\x3a\xd8\x86\x21\xfc\xa7\xc7\x94\xc9\xad\xb8\x3c\x8f\x8b\x06\x69\x52\x43\x9e\x4e\x8f\xa7\x76\x91\xe7\xd1\xb2\x9e\x09\x24\xfd\x3b\x2d\x32\xc8\x56\x8b\x1f\x08\xac\x9c\x9d\xc6\x7a\x2d\x35\x17\x17\x9f\xa6\x64\xe9\x36\x47\xe8\x6f\xca\x9e\x67\x6e\x99\xd5\x2f\x20\x25\xbb\xab\x83\x01\x3d\x82\xdd\xa0\x1a\x61\x43\xfd\xb4\x45\x96\x42\x47\xc9\x0d\xeb\x36\x0c\x9d\x4c\x71\x5f\x5e\x25\x92\xe8\x07\x32\xcc\x30\xfd\xff\x85\x34\x0b\xf1\xc4\x35\xf6\xd1\xa2\x98\xc4\x33\x6c\xdb\x8e\x00\xf7\x36\x26\x94\x4a\x37\xb6\xd8\xac\xab\xe7\x06\x43\x48\x65\x56\x57\x81\x24\xed\x2a\x29\x70\x82\xf2\x6e\x9a\x91\x75\x62\xc1\xdd\x7e\x94\xaf\x5a\x8c\x6f\x84\xf1\x06\x79\x06\x3d\x4d\x3a\x32\x45\x11\x27\x4e\x6b\xbc\x5a\xb7\xc2\x0d\x58\x11\x2b\x7c\x38\x4a\xd3\x91\xc4\x79\x61\x56\xb7\x78\x56\x4f\x2d\xd0\x0b\x87\xbc\xa7\x9a\xc2\x2e\xc6\x04\x88\xfe\x84\xf4\x2b\x86\x51\xb7\x44\x44\x61\x72\x53\x04\x94\xc2\x1d\x9b\x9e\x69\x88\x28\x2e\xb0\xac\xc3\x46\x5c\x80\xe0\x8f\xda\x16\x84\x84\xf4\x98\xca\x96\xee\xf5\xd7\xb3\x74\xae\x4a\x64\xd0\x65\x9c\x81\x7c\x81\xbd\x2d\x02\x85\x5f\x24\x18\xc9\x2d\x19\x51\x56\xe7\xf4\x11\x49\xec\x36\x04\x83\x87\x06\x1d\xb2\x54\xbc\x65\xa4\x06\xd7\x5b\x44\x79\x7b\x8b\x9e\xe4\x86\x4b\x56\xa2\xdc\xcd\x91\xe1\xa9\xae\xdf\x96\xca\x84\x95\xe1\x2c\x29\xd2\x42\x9b\xdb\x2c\x59\x43\xb1\x3e\x5b\x59\x89\xbb\x71\x94\x88\xde\x8c\x61\x2c\xe7\xb6\x64\xbb\xc1\xee\xf9\xbf\x8c\x09\xa0\x06\xcb\x2b\x2c\x55\x9f\xb0\x05\x28\x3a\xe3\x86\xb6\x6d\x78\xff\xd9\xfb\x63\x62\x8b\x3d\xd9\x26\xf2\x7e\xb4\xb1\xb6\x29\x7d\x5f\x33\xfc\x0b\x8a\x65\x67\x7c\x35\x6b\x25\x93\x62\xc2\x26\x97\x8b\x01\x31\xc4\x12\x79\x8b\xd2\xff\x8b\x13\xe1\x78\x37\x57\x84\xa9\x6f\x56\xf8\xe0\xfa\x02\x41\x63\xd7\x5d\x09\x85\x1e\xeb\xaa\xc8\x3d\x61\x69\x3c\xce\xb5\x4c\x5f\x60\x4f\xa2\x8d\x62\x14\x97\xb3\x2c\x60\x4e\x66\xe3\xfb\xa4\xca\x3a\xe1\xc5\x6e\x5a\x7f\x7e\x07\x16\xce\xaa\x10\x9f\xfc\x72\xbe\x6c\xf1\xc0\x3d\xd2\xc1\x9d\x36\x01\x14\x45\xef\xd7\x5d\x77\xe4\xcd\xb3\xb0\xb9\x40\x0a\x0f\xc7\x8f\xb4\xa1\x3b\xc1\x4f\x23\xee\x46\x8f\x4c\xbe\xc6\x03\x07\xb4\x44\xf1\x31\x96\x26\x0c\xdd\xcb\x93\x12\x6a\x54\xc9\xf8\x58\xd6\x23\x66\x83\x9a\x8e\x86\x8c\x15\x23\x37\x4c\xb7\xa3\x45\x16\x3f\x89\xe2\x54\x25\x03\x11\x17\xa8\x4e\x36\x4a\xcb\x0d\x14\xb9\xb0\x06\xdf\x67\x0a\x7c\x19\xe5\xc0\xc7\x23\xf6\xd8\x2b\xc9\x37\x5a\x98\x0a\x05\xc7\x3d\xff\x5c\x5e\x15\x42\x18\xd5\x59\x45\x1d\x64\xdb\x97\xd2\xd7\xb3\x64\xad\xd8\x88\x56\x1d\x34\x2c\x31\x77\x9e\x6a\xcb\xd5\x9b\xbf\x7c\x83\x1c\x73\xe4\xde\x91\xc0\xcd\x6c\xd5\x1b\x79\x45\x69\x97\x5d\xa7\xce\x4d\x74\x46\x02\x01\x69\x35\xcb\x7a\x9b\x2e\xca\xd1\x48\xc3\x8e\x02\x85\x43\x34\xad\x54\x10\x10\xd1\xee\x83\xa0\xf5\xe6\xf2\x32\x4e\xe2\xef\xb8\x1c\xa3\xdf\x72\x92\xd0\x81\xbb\x46\x50\xdf\xa3\xb5\x56\x7b\xdd\x7e\x96\x44\x79\xb0\xda\x43\x19\xe9\x24\x69\x92\x9c\x9c\xe8\x60\xa5\x28\x50\x43\x7d\x10\x4f\xe2\x46\x8b\x9c\x04\xcf\x8c\x09\x07\xde\x0a\xa0\xc9\x3f\x90\x11\x8c\xf0\xe0\x27\x93\x54\xd8\x1a\x51\xc1\x8e\x4b\x56\xe3\x11\xa8\x48\x26\xcf\xcd\x5a\xdd\x44\xde\xda\xc8\xf2\x7c\x33\x4e\x57\xe7\xc2\xf2\x75\x57\x03\x29\x73\x66\x92\x65\xd8\x62\x4a\x09\x92\xcc\xa7\xa9\xba\x26\x05\xf2\xee\xe4\xab\x55\x13\x69\x71\x71\xe9\x97\x68\x0d\x57\xb1\x04\xc4\x4b\x6f\x8e\xc3\xf4\x84\x32\x1d\xae\x4d\x6b\x41\x88\x67\xf7\x6e\x49\xec\x83\x8c\xe6\x8e\xe8\xcc\x22\x7b\x3d\xa2\x89\x9f\x1a\x9a\xb4\x99\x45\x37\x6e\x90\x68\x65\xd8\x9e\xae\x21\xf3\xc3\x02\x78\xa5\x45\x0e\x81\x1a\xde\x20\x57\xbd\xc2\x80\xd4\x33\x54\x64\xf8\x08\xea\x3c\x68\xaa\xdc\x1e\x4b\x1e\x80\xf0\xf2\x28\x02\x11\x93\x5f\x96\xc9\xa1\xd8\x61\xa9\x12\xe0\xc6\xf6\xb5\x99\x7e\x24\xab\x39\x8a\x59\x47\x48\x87\xe3\x6f\x6b\x1c\x84\x6d\x9b\x51\x6d\x69\x54\x8e\xf2\x28\x99\x0b\xce\x09\xa7\x78\x0b\x53\x4b\x58\xf3\x87\x0a\xfd\xc8\xcf\xc7\x01\xb4\x3a\xed\x16\x89\xba\xa3\x99\x90\x52\x79\xe5\x22\xdd\xf9\x45\xbf\xb0\x4a\x91\x2f\x47\x34\xe0\x55\x82\xbc\x86\xe9\xee\x36\x99\x6a\x5e\x24\x83\xf7\x53\x5f\xea\xf2\x34\x70\xfd\x28\x17\xa6\xda\xf2\x3c\xeb\x95\x78\x6b\xb1\xa9\xe4\xed\xdb\x0b\xcd\xdc\x45\x10\x5b\xae\x13\xf8\xaa\x13\xa5\x75\x51\xae\x5a\x02\x18\x3d\x9a\xd5\xea\x49\x0d\xc3\x3a\x1b\xe4\x8a\x78\x36\x59\x53\x4a\x01\xa6\x85\xeb\x0e\x1c\x68\x8e\x92\x32\x8f\xd6\xe3\x2c\x71\x65\x83\xf0\x39\x9f\x52\x52\xfa\xa9\x97\xf3\x18\x6e\x44\x9a\xc3\x61\xc8\x9e\xa3\x38\xe2\x3a\x4b\xa3\xec\x6e\xb3\xc9\x07\x56\x79\xb4\x64\x4c\x90\xb3\xe1\x7d\x87\xef\x32\x57\xf3\x14\x86\x83\x9f\xa7\xde\x0b\x51\xdb\x2a\xe8\x95\xde\xaf\x01\xba\xbe\xd0\xcc\x3a\x55\xaa\xb7\xc3\xe9\x19\x34\x5a\x3d\xae\x73\xe8\x5d\x89\xd0\x61\xb0\x02\xad\xfc\xbe\x9e\xd4\x14\xb7\x5e\x10\x98\xa6\x29\x60\x9b\xac\x9c\x4c\x4a\x44\x45\x7f\x9f\x15\x57\x3c\x8f\x7f\x43\x75\x94\xaa\x8b\x31\x59\x4a\xd6\xa8\xac\x01\x05\xaf\x08\x5b\x4c\x15\x4b\xb0\x2c\x3c\x24\xa5\x34\xc8\xd0\x4d\x80\x29\xb1\x28\xdd\xa8\x2b\xaf\xb9\x75\x97\x8a\x79\x89\x27\xc8\xb3\xf3\xed\xb2\x41\xc8\x1e\x03\x5c\x11\x17\xa5\x41\x0a\x16\xb1\x8f\xe5\x5d\x4c\xc8\xa9\x5a\xee\x50\x83\xd8\x48\xa3\x81\x9b\x25\xff\x2f\xec\xc2\x48\x3e\x1f\xe0\x62\x71\xf2\xfe\x38\x14\xca\x67\x26\xba\x20\xab\xd1\x70\x4f\xb5\x08\x91\x4e\xae\x39\x08\xc3\xb5\x1a\xe5\xe7\xab\x48\x5f\x95\x02\x3c\x0e\x8d\x6c\x98\x97\x9b\x24\xda\x4e\xb4\xd2\xd2\xd7\x9b\x8b\x8b\xb3\xa1\x07\x75\x84\x8c\x9c\xaf\x90\xf7\xc5\xc9\xf1\x84\x5a\x66\x9d\xad\x89\xcb\xbb\x7d\x5b\x83\xf0\x9a\xd0\x7a\xd2\xe3\x2f\x6d\xdd\xf6\x47\x83\x38\xb1\x1a\xb7\x0a\xf1\xe0\xd1\x98\x2a\x0f\x23\x67\x92\x75\x57\x94\x2e\x9f\xc0\x70\xff\x88\x31\xdc\x3f\xaa\x63\x91\xbd\x16\x0d\xa3\xd4\x15\x0e\x60\x6b\x6c\x21\xbb\x05\x68\xa0\xc7\xed\x3a\x32\xb9\xef\x7a\x99\x5e\x8e\xf7\x54\x0c\x30\x47\xd0\xb0\xd1\xf9\x00\xc4\xd2\xbc\x66\x76\x76\x4b\xa5\x9e\xbf\x51\x6c\x64\x79\xd9\x8f\x3d\x44\x4d\x1b\xcd\xf2\xa4\xac\xe9\x5c\x57\x75\xcf\xdd\x4a\x96\x0f\x26\xf8\xf9\x97\x88\x9f\x7f\x89\x50\x4c\xff\xd9\xaf\xfc\x85\x06\x35\x67\xa0\xc4\x6f\xd3\xfa\x29\x92\x59\xcc\xd7\xb4\x09\x85\x3d\xed\x32\x01\x3d\x2f\x4f\x4d\xf9\xfd\xfb\x9b\x1b\xae\x28\x02\x9b\x15\xe1\xcb\x31\x8e\x65\x8e\xd5\x29\x2d\xa6\xe2\x63\x4b\x9c\xef\xcb\xc4\xf9\xbe\x4c\xd7\xfd\x57\xe6\x5f\x9a\x09\x2d\x45\xb8\x33\xaa\x77\x18\x7e\x04\x1b\xf4\x03\xf2\xd0\x1b\x44\xab\x69\xbc\x12\x83\x00\x67\xc6\xee\x1f\x93\x37\xee\xcd\x56\xc8\xf4\xa7\xc1\xab\x8b\x8b\xcd\x9e\xab\xd2\x3b\x27\x71\xea\xe1\x40\x9b\xf3\xb8\x93\xad\x8b\x35\xc5\xc4\xa5\x66\x34\x1c\x26\x86\x36\x50\xf1\x20\xa9\x4b\x99\x90\x50\x9d\xe2\x64\x94\x0f\x5d\x39\x1b\x22\xe8\x1b\xe3\x49\x45\x0e\xf9\x32\x06\xbe\x60\x3c\x3c\x32\x25\xbd\x2d\xbd\xae\x6a\x8d\x47\x29\x15\xd9\xd3\x9b\xa4\x69\xf8\xd3\x31\x49\xfc\x1c\x0b\x34\x9e\xff\xfd\xe8\xd4\xe4\xa8\x56\xf2\x09\x97\x62\x35\x99\x22\x02\xd2\x09\x9f\x6c\xf6\x5c\xd4\x4b\xe2\x14\x2f\x13\x0b\xc6\x55\x32\x13\xbc\xea\x97\x79\x21\x42\xe5\x8a\xb1\xf2\xfa\x3f\xa1\x1b\x7f\x56\x6f\x1d\x0f\xe2\x01\x95\xba\x07\x51\x9c\x14\x59\x3a\x43\xd2\x66\xf8\x43\x2c\xd8\xf0\x4b\x01\x87\xea\x84\xaf\x16\x14\x49\xb6\xee\x52\x23\xf7\x4e\x14\xd6\x6d\x71\xae\xb1\xde\x40\x30\x24\xf7\xa2\x21\x4f\x6b\x22\xfe\xa9\x91\xe5\x72\x49\xe1\x36\xfa\x2e\x07\x1f\x04\x01\xda\x35\x02\x8f\x5d\x23\x32\xd5\xfc\xaf\x48\xdb\xc2\x00\xf3\xe1\x31\x29\x80\x14\xcb\xf3\x35\xdf\xc7\x72\x79\xdc\x95\xf1\xef\xfd\x37\x3d\x26\xff\x87\x0c\x50\xbf\x52\xc7\x07\x13\x6b\xea\xb0\x85\xa8\x37\x99\x9e\x7c\xa9\x50\xef\x20\xda\xec\x47\xc3\x39\x89\xab\xf1\x96\xfe\xf5\x98\x44\x75\x80\x0a\xc0\x1b\x43\xaf\x12\x0b\xe0\x47\xf8\x76\x1b\x29\xf6\x16\x36\xfa\x71\xe9\x36\xa2\xa2\x3f\x1b\x68\x80\x0d\x0e\x9a\x8f\xc9\xf7\x79\xb0\xb5\x0f\x01\xa6\x6d\xb5\xaa\xb7\x13\xa9\x33\x32\x40\x8c\x60\xdd\xe8\xb1\x1f\x67\xab\x59\xb2\xe2\x25\x5e\x0c\xcc\x5f\x7d\x10\x39\xca\x7d\x76\x79\x9b\x1a\x02\xd5\x3c\x96\xd5\x78\x26\x24\xeb\x57\xc8\x48\xf8\x7f\x93\x9d\x13\x8d\xaa\x2b\x53\x91\xd6\x81\x03\xcd\xa8\x28\xe2\xa2\x8c\xd2\xae\xa3\x44\xed\xbc\x64\x03\xa6\xad\x5b\x87\x1f\x8a\x53\xdf\x5f\x00\x34\xe4\x08\x9b\xf4\x1e\xa9\x71\x76\x6f\x16\x83\x2c\x2b\xfb\xf2\x38\x10\x51\x1d\x6d\x51\x46\x7c\x94\x56\xc4\xdc\xf5\x46\x22\x86\x3b\xbb\xfb\xeb\x1a\x9d\x82\xb9\x8a\x68\xe9\x24\x45\x4e\x27\x59\xbb\xfc\xcb\x91\x5c\x6e\xd0\x71\xbd\x9e\xd5\x3c\x0d\x0d\x4c\x94\xe8\x69\xeb\xe4\x17\x17\x41\x53\x47\x3d\xc3\x9c\xa0\x08\x06\x8d\xe4\xde\x6a\x43\x35\x36\xd7\xd1\xa8\x28\xf3\x28\xb1\x29\x8d\x26\x6b\x03\x13\x47\x4f\xea\x08\x17\x20\xc7\xcb\xa3\xad\x6b\x93\x85\x76\x54\x54\x96\x2e\xed\x45\x69\x59\xcc\x52\x83\xec\xe1\x38\x00\xc0\x15\xc5\xaa\x27\xb2\x86\x9a\x7d\xea\x8e\x20\xea\xd0\x4b\x55\x1a\xf6\x4c\xf5\x09\xc4\x88\x3f\x97\xac\x11\x63\xf5\xaa\x34\x5c\xb1\x78\xfd\x70\x02\xb0\x4b\x39\xde\x43\xa4\xb6\xa8\x8f\x7d\x34\x26\x45\xc3\xef\x23\xac\xd3\x68\x95\x29\x15\x0f\x5b\x64\x05\x74\x7f\x1c\x68\x48\x97\x45\x8f\x12\xc3\x76\x37\x89\x3b\xfc\x1d\xa6\xc8\xdd\x62\xa5\xfe\x99\x76\x15\x21\xf8\x3b\x5d\x0e\xcd\xc3\x69\xf5\x9b\x17\x9a\xc3\x3c\xee\xba\xee\xa8\x0c\xea\x37\x26\xbc\x51\x5d\x83\xf9\xf1\xd6\xc5\x30\x92\xc7\x61\xaf\x5e\xf0\x1c\x00\xd2\x79\x04\x93\xd1\xdc\x53\x6b\xf0\x10\xb9\x9b\xd8\xaa\x90\xff\x81\xd6\xa6\xc7\x53\x2b\x89\x58\xa6\x27\x89\xb4\x44\x51\xd1\xfa\x1d\x24\xf8\xde\x1b\xcb\xcb\x35\xde\x23\x80\xf1\xec\x16\x7b\x94\x67\x1b\x79\x96\x0d\xa0\xb9\x60\xea\x36\x0d\x2f\x28\xf8\x83\x31\x09\x18\x5f\x26\xa4\x5b\xd4\xeb\x21\xc8\x43\x57\xe3\x4c\x8b\x14\xcb\xcf\xf8\x16\xea\x4a\x36\x4a\x7b\xfb\xfc\xfb\xfb\x1f\x7e\x71\x2b\xc8\xc3\x7d\xeb\x3f\xe2\x52\xdd\xcc\x56\x88\x12\x75\xf2\xfa\x5c\xfd\xf0\xbc\x3e\x51\xed\xbd\xc8\x1c\xb9\xd9\x94\xf7\x8f\x15\xf7\x1c\xca\x98\x58\xce\xb7\x31\x18\xbc\x58\xf6\xf2\xbc\x06\x4c\xdb\xa4\xeb\x5f\x05\x39\x06\xed\x03\x98\x0b\xad\x2e\x50\x53\xf0\xad\x7f\x20\x49\x02\xf5\x49\x17\xbc\xa0\x51\xc0\x51\x74\xf3\xb8\x88\x8b\xc6\x24\x91\x94\xc8\xa3\x4f\x78\xac\x5b\x48\x5b\x15\xbd\x36\x0e\x1d\xcb\x1b\x2d\x2f\x64\x99\xbb\x5e\xdc\x0d\x03\x90\x05\xbd\xf4\x98\x7e\x3d\x2a\xcb\xa8\xdb\x9f\x23\x26\xf6\x39\xa6\x2f\xa2\x21\x80\x4a\xd0\x3d\x52\x96\x9e\x14\x0f\xa4\x36\xee\x30\x8f\xb3\xbc\x4a\x58\xe4\x79\xfa\x66\x7f\xf5\xf5\xd6\xc6\xdf\x99\x5f\xff\x6a\xb3\xe3\x34\xbf\x36\x09\x8b\x50\x9e\x99\xae\x00\x8a\xd6\x62\xda\xcd\x72\xa0\xac\xb1\x95\xaa\x59\x94\x9e\x4c\xed\x12\xcf\x37\xa3\xa4\x9b\xf5\x33\x50\x06\x7d\xe8\x4f\x19\xfd\xd3\x5c\x35\x4e\x13\xa5\xbf\xdb\xf2\xcf\x7b\x41\x9d\x20\x78\xe1\x22\xad\x8c\x70\x33\x46\x8f\x7d\x84\x58\x64\x03\xb7\xd1\x8f\xca\xc7\x42\xd7\x01\xb4\x22\x33\xdd\xf1\xee\xde\x7f\xea\x97\xa5\xc7\x8a\x27\x76\x12\x8f\x4f\xf9\xa4\xa4\xb9\xf8\x10\x43\x0a\x21\xee\x69\x14\xed\xac\x9c\x2b\xc3\xc9\x40\xfb\x61\x95\x9d\x16\xa7\xf9\xf6\xc2\x04\xd9\x04\x4f\x10\x12\x92\x7a\x4c\xf2\x1b\x55\x14\x53\x0a\x6c\xa7\xe1\x15\xe6\x14\x33\x6d\xfa\xaf\x3b\x1f\xbd\x58\xb4\xe4\x51\x77\x0d\x24\x13\x95\x9a\xa3\xaa\xd6\xf1\xa9\x4b\x5a\x9e\x6f\x8e\x86\x52\xbc\x6f\x84\x56\x10\x06\x85\xc9\x02\x13\xb2\x26\x5f\xd3\xc9\x63\xf6\xd1\xc1\x2c\xe5\x8e\x9f\x3c\xf9\xa8\xe3\x53\x12\x53\xed\xe6\x2e\x44\x28\x19\x17\xd5\xea\x9d\x28\x57\xc2\x98\xa7\xd4\x85\x9a\x2e\x65\x08\x79\x35\xea\x6a\xe6\xa7\xae\x97\x63\xda\x8d\x2f\x4e\x09\x84\x2f\x2e\x1e\x6c\x16\x6b\x9b\xb9\xb0\x2d\xb0\xe8\x2f\x31\xb6\xde\x8a\x09\x1f\xe1\x0d\x9b\x71\x7a\x60\x3c\xb9\x74\x35\x4e\x9d\xcb\x55\x9d\x0d\x43\x00\xb9\xa3\x1e\x13\xb7\x22\x87\xbf\x53\xf8\xe0\x6d\xfa\xe0\xed\xf1\x04\xcc\x71\xb5\x5f\xee\x09\x79\xe6\x39\xec\xbd\xd8\x02\x6e\x11\xf5\x41\x61\x7b\x18\xb8\x9f\x0a\x82\x52\x3f\xc4\x99\xda\xa7\x35\x6d\xe2\x17\x9a\x9d\x6c\x23\xb1\x18\xcf\x17\x56\x42\x91\x65\x42\x1b\xd7\x75\x93\x51\xcf\xe1\xfd\x2a\x34\x43\x42\x48\x83\x69\xec\x1c\x6d\x87\x5e\x6a\x66\xa3\x72\x25\x46\x74\xec\x3d\x81\x43\xba\x46\x61\xce\xaa\x4b\x5d\xae\x04\x8f\x40\x04\xfe\x4c\xe2\x13\x3d\x9e\x5a\x48\x96\x5e\x3a\xa8\x61\xb1\xdc\xa6\x01\x7c\xc3\x3a\x7c\xab\x15\x8c\x2f\x3e\x1f\x7b\xaf\xaf\x18\x7b\x1d\x99\xe4\xf8\xee\x5d\x5d\x49\xa6\x1b\x97\x9b\x1b\x71\xcf\x11\x52\xed\x34\x99\x85\xa2\x32\x6a\x56\xa7\x35\xac\xd3\xd5\x51\x94\x47\x69\xe9\x9c\xb2\x81\x7d\x7c\xeb\x93\xdd\xb7\xf0\x9e\xac\x17\xbb\x23\x6a\x7b\xf5\xd5\x2a\x6a\x7b\x34\x88\xc5\x72\xe4\x03\x97\x54\x40\x36\xae\xb6\xc2\xd3\x3a\xdb\x62\x4f\x5a\x84\xed\xd8\xee\x00\x45\x33\x23\xfc\xea\x01\xa1\x0e\x74\x85\x83\x83\xdf\xe1\x35\xd8\xad\x0e\x5c\x8a\x7a\x00\xb0\x18\xa2\xab\xf1\x82\xf5\x6a\x5b\xa4\x81\x7e\x8a\x00\xff\x77\x88\xa4\x37\x1c\x0d\x86\x08\xcb\x71\x11\xb7\x5b\xb4\x01\xdf\x1e\x87\x0f\x76\x86\xdd\x48\xde\x0e\x96\xcb\x07\xdc\xc4\x7d\x50\x47\xce\x5b\x8f\xd2\x38\x49\xa2\xd9\xe0\xa8\x71\x8a\xf6\x12\xe4\x55\x5a\xe7\x9d\xd0\xb2\xae\x9e\xb2\xc5\x0e\x79\xf6\xba\x10\x49\x54\x69\x08\xef\x61\x4e\x22\x7f\x3d\xde\x9a\x22\xd6\xbf\x74\xb0\x59\x6c\x64\x49\xe2\x52\xe9\xdd\x62\x77\xd8\xc5\x9a\x56\x67\xa9\xb9\x7d\x8d\x27\x76\x14\x8c\x34\xb1\xcb\x9f\x22\x3e\xef\xa9\xba\xca\xd4\x20\xce\xa3\x55\x43\x63\xa9\x92\x1c\x21\xe4\x1b\x5b\x54\x78\xd8\xd3\x9e\x56\x9c\x2e\xe3\x74\x93\xe8\xa3\xe7\x26\xb2\x87\xb0\x36\x65\x1b\xa9\xcb\x0b\x59\x72\x0c\x74\x23\xf7\x63\x9e\x69\x0c\xc7\x91\x07\xeb\x3b\x89\x2f\x9a\x9e\x37\xf4\x35\xf4\x98\x96\xbd\x6e\x5f\xb4\xc0\x64\xa8\x78\x6e\xa6\xa7\xce\xfc\x60\x1c\x8a\x5f\x27\x69\xcd\x89\xd3\x5e\x95\x5e\x6d\x3e\xc3\x45\x18\x05\x56\x62\x0d\x79\x0b\xbc\x52\xa0\x68\xdf\x1c\x53\xf3\xf9\x4d\x96\x6e\x7a\x5f\x66\x1b\x7a\x56\x58\xb4\x0c\x5c\xd8\x58\x36\xfa\xf6\x4d\x8c\x49\xd4\x72\xff\x09\xa6\xa4\x39\x5a\x54\x77\xbe\xad\x16\x7f\x68\x83\x5d\x21\x3d\xa6\xab\xc4\xca\x79\x28\x0f\x40\x2f\x8e\x63\x95\x6b\x32\x6b\xed\xe9\x3d\xc7\xae\x2b\x49\x04\x25\x50\x54\x07\x8c\xf0\x14\x82\x3d\xd1\xae\xde\xfe\xa0\xa6\xa7\x56\xa5\x2a\xab\x71\x09\x1a\x54\xa8\x41\x7c\x34\x0e\xdd\xe4\x1b\x54\x7b\xbf\x48\x45\xcc\xde\x68\x30\x43\xf7\x88\xf6\x1a\x96\x85\xeb\x44\x6f\x3d\x53\x57\x5f\xed\x26\x59\xe1\xc7\x30\xc6\x23\x18\x1b\x7a\x4c\xab\x47\x9c\xae\x54\xc9\x6b\x43\x1a\x97\x28\x76\x9c\x87\xfd\xaa\x9e\xd4\x6a\x87\xbc\x96\xc5\xa9\x89\x85\x21\x94\xbf\x3c\x9e\x68\x92\x05\x41\xb8\x87\x5e\xc3\x7a\x25\x5a\xcf\xf2\xa8\x63\x7a\x64\x28\xc2\x22\x65\xd0\xe3\xa9\xda\xc8\xd2\xf2\x12\x54\xf1\xca\x2c\xd3\xa0\x48\xf5\x90\xf0\x13\x26\x8e\x54\xa3\x83\x57\xf6\xf3\x78\xa5\x54\x0f\x5d\xef\xde\x46\x1b\x11\xbd\xe3\xc1\xa8\x57\x54\xdb\xac\xe8\xbd\x79\xb8\x86\x8a\xac\x19\xb9\x80\x1a\xf9\x3e\xe5\x1a\xc4\xe9\x94\x7d\x7a\xf5\x37\x66\xe6\xb4\x73\xad\xf8\xd5\x2a\x7e\xec\x8d\xba\x88\x1f\x0d\x27\x2e\xf7\x65\xa4\x4c\x2f\xad\x11\xaf\x39\xdd\x6c\x4d\xea\x3c\x24\xd7\x0c\x88\xed\x47\x1b\xae\x58\x8f\x93\xc4\x35\xe4\xb7\x4d\x1b\xbc\x41\x3a\xd2\x35\xf5\x6a\x51\x2e\x58\xd9\xdc\xe1\x0d\x7d\x81\x30\x31\x17\xc6\xcf\x11\x24\x6b\x98\x64\x08\x00\x64\x29\x47\x96\xfc\x8e\x4c\x4f\x3d\x6e\x05\x9a\x88\xfa\x63\xe9\x49\xcd\xbc\x78\xa5\x19\x0f\x86\x12\x50\xac\x3b\x4a\x33\x3e\x68\x85\xad\xe1\x83\xf1\xb3\x96\xcc\x55\x1f\x8d\x23\x38\x8a\x62\xa5\x21\x87\xf6\x80\x17\x26\xa5\xfa\xe8\x75\x2b\x33\x21\xaa\x54\x6c\x94\x9e\x4c\x3d\x0e\xdf\x41\xca\xd2\x5e\x34\x13\xd6\xbd\x0b\x4c\x7b\xb8\x84\xb6\xbf\x91\x67\x9e\x21\x81\x25\x73\x62\xf4\x86\x3b\xe8\x95\xe9\x31\x31\x38\xff\xe2\x5f\xfa\xcf\x1b\x21\xf5\x3e\x2b\x0d\x15\x3d\x6e\xb1\x07\x40\x24\xde\x25\xd5\xb0\xc0\xda\x07\xb8\xb9\x1e\x4f\x55\x61\xab\x19\x3f\x4a\xca\x78\x9d\x3c\x69\xbd\x84\xaf\x47\xdb\x71\xef\x34\xed\x79\xf1\x13\x03\x60\x11\xec\xeb\x16\x39\xa5\x4c\xd7\xe4\xc4\x88\xbb\x9f\x6d\x20\x0e\xf0\xaa\x82\x8b\xde\x85\xfd\xac\x1f\xc3\x82\x79\x9f\x0b\x50\xc8\x7f\x38\x9e\xe8\x98\x7a\x29\xc7\x5f\x6c\xf3\x14\x0a\x12\x73\x07\x9e\xd9\x0a\x2b\xd5\x30\x5a\x75\x52\xca\xf5\xdb\xfe\xf5\x56\x08\x07\xae\x33\x29\x2a\x4a\x0a\xf7\xa5\x21\xbc\xa5\x39\x9d\x3c\x76\x2b\xc5\x6c\xa8\x6b\xe8\x33\x40\x29\xeb\x11\x29\x53\xe3\x52\x77\x6d\x11\x7b\xf1\xa3\x3a\x57\xc0\x4e\x56\xf6\xab\x44\xcf\xeb\x8b\x1c\x95\x4b\xd3\xe3\xa9\xea\xd7\xc2\xa1\xe6\x8a\xa4\x0f\x2e\x0d\x76\xe6\x16\x18\x86\x6c\xf1\xec\x4e\x28\xcd\xcb\xcb\xf3\xd5\xe4\xd9\x43\xe1\xe2\x5d\xaa\x1f\xcd\xc8\x35\x2b\x3d\x88\xc4\x1b\xb7\xc7\xc4\xf2\x33\xb4\xb5\x81\x18\x77\x56\xc7\x04\x6f\xd5\x8d\x3a\x71\xea\x90\x52\xd6\xca\x0b\x4d\x83\x2b\x0e\x36\xcb\xd8\x26\x1d\x02\x81\x6b\xd8\xb0\xf5\x84\x82\x8d\x4e\x96\x55\x53\xb9\xe1\xb5\xb4\xaf\x8e\xe9\x01\x5f\x9d\xba\x24\x9b\x9e\x45\x96\xa5\x73\x8d\xa0\x63\x44\x40\xc3\x67\xda\x84\x0a\xfd\x6c\x1c\x5a\x31\xfa\xd5\x08\xf3\xee\x91\x6e\xcc\x4a\xec\x93\x5c\x7c\xc5\xbb\xd4\xf7\x7a\x77\xfc\x68\x5c\x65\x54\x2b\x7f\xb1\xb9\x0c\xa7\x74\x64\x6c\x57\x5a\xb4\x56\xcf\x6e\x51\xbc\x31\xc3\xa6\xdd\x27\x65\x62\xdb\xc3\x6f\xfc\xd5\xbf\xac\x1f\x7a\x20\xd5\x05\xcf\x57\xac\x96\x13\xb4\x8d\xb5\x4f\x2d\x3f\xfe\x3f\xfd\xa7\x40\xcf\x68\xfa\x32\x0e\x3e\x0a\x6f\x8d\x1b\x87\x5e\x0a\xec\xef\x17\x4d\xee\x65\xaf\x94\xf3\xb0\xda\x22\xe1\xc0\x16\x37\xb3\x15\x38\x46\x47\x30\xb8\x65\xf5\xfa\xcd\xaf\x6c\x35\x0e\xcf\x6f\x9f\x6e\x91\x82\xe2\x8f\xc6\x84\x13\xb9\x87\xf5\x1b\x51\xdb\x11\x6d\xb1\xa1\x2b\xd2\x6c\x87\x6d\x53\xc5\x6f\xe2\xef\x38\xad\x2a\x98\x16\x48\x68\x77\xbc\x5b\x07\xc3\xe9\xbb\x38\xfd\x4e\x23\xc4\xd4\x3b\xf4\x15\x76\xbe\xfe\x03\x07\xac\x4e\x67\x25\x5f\x84\x41\xec\x4d\x73\x5e\x1e\x07\xa6\xee\xdb\x75\xda\x3e\xab\xd9\x48\x51\xd1\x80\x11\xdc\x93\x88\x53\x8f\xa7\xa6\xb4\x74\x00\x52\xb7\x81\x4a\x2d\xfa\x29\x6f\x22\xbc\xc4\x6f\x5c\x6f\x51\x4a\x78\x79\x1c\xac\xe3\xba\xa3\xf2\x31\x79\x92\x58\xf1\x1a\xed\xa0\x67\xa7\xee\x5a\x78\x97\x1f\x12\x72\xf9\x1e\x59\x7b\xe1\x9d\x61\xc7\x51\xfb\x46\x0f\x1e\x09\x72\x3b\xb7\x50\x01\xc6\x57\xdd\x6a\x85\xd1\x76\xd6\x77\x01\x0b\xe7\xd4\x4b\x14\xc5\xb0\xc7\xda\xa1\xf3\x80\x25\x56\xcd\x02\x59\x9f\xe0\x0e\x1e\x1d\x7a\xb4\xf1\x30\xc9\x06\x51\x19\x77\xa3\xc4\x62\x36\xd0\x32\x14\x51\xaa\x27\x7e\xb5\x2f\xd2\x68\xcd\xc9\x03\x53\x31\x0c\x42\x31\xbc\x81\x7b\x47\xa9\xe3\x41\x9d\x69\x0b\x58\x87\x33\x41\xf5\xeb\xea\x98\x78\xec\x00\xea\x98\x6e\xe8\xce\x11\x52\xad\x3e\xdd\x2c\x2d\x46\x03\x5b\x81\x4c\x69\x8e\x9a\x13\x17\x6b\x4d\x27\xa2\x6f\x36\x08\x34\x86\xcf\x5b\x71\x69\x02\xe4\x1c\x25\x5f\xa9\x1e\x33\x56\x95\xa7\x31\x45\x11\x0e\x1e\x23\x77\xaf\x1b\x78\x4b\x88\xcd\x1f\x42\x5f\xd5\x80\x15\x8d\xe5\xf9\xed\x39\xa9\x61\x22\x0b\xb8\xcc\xf9\xca\x3d\x9d\x65\x58\x7f\x6e\x8d\x89\x37\xa1\x2e\xef\x98\x50\x0f\xe0\xeb\xa7\x95\x06\x74\xcf\xcc\xf6\x3f\x74\x15\xf6\xb5\x19\xe7\x2a\x24\x08\x9f\x24\x56\xcb\x94\xa1\xe7\xe5\x09\xa3\xf3\xf3\x0e\xb1\xbf\x8b\x28\x4e\x4b\x15\x86\x50\x19\x27\x96\x4c\x3f\x49\x2a\x52\x3d\x00\xc4\x02\x26\x1a\xa2\x1f\x26\x69\x1b\xbe\xb3\x33\xca\x3b\x51\xba\x36\x4b\x28\x8f\xbb\x1c\x95\x81\x45\x87\x61\xf8\x29\x8d\xcf\x37\xeb\x50\x2c\x07\x9b\xd1\x70\xe8\xa2\x7c\x36\x4c\xe2\xef\xe1\x66\x8c\x1d\xd3\xf0\xfa\xfc\xff\xc7\x98\x3c\xbd\xcf\xd7\x6a\xb9\xe5\xae\x9b\xe5\xa1\x1d\xe4\x7b\x21\xd4\xd0\x0f\xcd\x0c\xd7\xcd\xd2\x6c\xa0\xb3\x22\x04\x20\x3f\x21\xbc\xfe\x4f\x88\xc5\xde\x8d\x06\x9d\x3c\xee\xad\xaa\xfd\x2d\xa6\xc3\x3d\xd9\x20\xf4\x38\x28\x72\x67\x3d\x01\x3b\xb0\x94\x92\x0e\x28\x6c\xea\x77\x31\x8b\xd4\x71\xac\xed\x6d\xfc\xa3\x51\x49\x7c\xfa\x1b\xc4\xa7\xbf\x51\xc7\x6f\xb6\xda\xba\x5c\xbd\x56\xc4\x5b\x13\xe5\xf1\x9a\x3e\xc2\x8a\x73\xbe\x12\x69\xb6\x1e\xf2\xb4\xcc\xd7\x83\xa4\xe6\xa2\x51\x51\xc6\xdd\x06\xf1\xd1\x3e\x24\x13\xb4\x0f\x7d\xa5\xb9\x28\xf3\xb8\x5b\xee\x21\xd7\xe1\x53\xe6\xe4\x78\x78\x7e\xc2\x43\x07\x8f\xea\xab\xed\x90\x9d\xcc\xa1\x3d\x85\x5d\xef\xcd\xa9\x1c\xc3\x62\x06\x69\x32\xda\x23\x05\xdc\xe3\x7b\x63\x12\xfa\x03\x0d\xd3\xd2\x99\x40\x76\xe9\x67\x43\x37\x2b\x9b\x1a\x1e\x7d\x63\x8b\x21\x28\xf2\x47\x5e\x88\xef\x45\x0b\xba\x1a\x6d\x6e\xee\xb8\xc2\xa5\x5d\x37\x43\x1e\x38\xef\x91\x59\xea\x09\xf6\x8a\xbc\x4c\xd1\x7f\xcf\x45\x49\x15\x4b\x06\x32\x4b\x8b\x33\x12\x4f\x1a\x8c\x93\x44\x43\x78\xac\xaa\xc6\x22\xf3\xe6\xf5\x81\x0e\x7a\x9b\xda\x12\x3d\xd7\x4d\xe2\xd4\xe5\x88\xbf\x4c\xe2\x56\xde\xbe\x69\xdf\x86\x37\xb9\xe1\xc4\x01\x7d\x86\x5b\x5e\x84\x28\xda\xdb\xa6\xe2\xec\xae\xad\x9a\x66\x4f\xcf\xe9\x90\xf1\x74\xf6\x45\x6f\x0a\x77\x91\xa4\x30\x8a\xb5\x58\x7d\xab\xf1\x2b\x37\x08\x3e\x78\x83\xa2\xb6\xa2\x74\x2e\x79\x5c\x2e\x47\x11\xfd\x18\x84\x26\xe2\x5d\x8d\x68\xa5\x35\xf3\x88\x7e\xb3\x45\x52\xd5\x6f\xb6\x48\x35\xf7\xda\x98\x70\xa7\x6f\x92\x7a\xc2\x67\x2d\xc2\xa6\xec\xda\x0a\xa2\x65\x1f\x90\xf2\xe2\x4f\x48\x8a\x40\x34\x27\xbc\xf0\x52\x12\xe3\x76\x8c\x77\x10\x5a\xda\xef\x4d\x05\x38\x2f\x2e\x36\x93\x48\xca\x1c\xb6\x7d\x19\x39\x27\x00\x0b\xcf\xd4\x41\x25\xa3\x95\x15\x17\x4c\xc1\x0c\x9c\x46\x40\xb5\x20\xa8\x1a\xe7\x1b\xd1\xba\x05\xbc\xde\xfa\xc8\xeb\x7b\x9e\xac\x83\x5e\x00\x30\x2b\xb7\x01\x28\x91\x4a\xbe\xe9\x09\xc1\x29\x7b\xf1\xca\x8a\xcb\x5d\x5a\xce\x32\x1a\xdf\xc4\x01\xac\x11\x2f\xbf\x8d\xed\x0e\x28\x20\xbc\xa9\xd3\xe3\x67\x49\xfa\xba\x13\x8b\x7c\x64\x8e\xa5\x18\xe3\xec\x3d\x1a\x73\xef\x11\xf1\x71\x34\x4c\x54\xfa\x51\x23\x42\xb9\x77\xc3\x16\x35\x3c\x8f\x14\xb4\x02\x4b\x64\x9e\xa2\xd2\xf9\xeb\xa3\x28\x91\x6d\x4e\xfd\x70\xa9\x85\xfb\x29\xfb\x9f\x46\x9d\x2c\x57\x23\x24\x60\xb8\x4f\xa0\x1a\xa0\x27\x75\x46\x0c\x65\x1e\xad\xbb\x44\xc9\xc5\x08\xe8\x54\x6e\x45\x4f\xa8\xd8\x17\x17\xca\xbb\x42\x9e\x02\x13\x30\xb3\xbe\xa8\x2e\x09\x91\xc6\xef\xd7\xec\x5e\xaf\x54\x33\x3a\x77\x51\x61\x4e\x60\xea\x9e\x36\xa6\xf2\xc7\x31\x52\x02\x59\xcd\xa3\xb4\x57\xa8\xc7\xb5\x6a\xad\x4e\xba\x82\xd4\xbb\x86\x4d\x00\x68\x76\xb4\xec\x6c\x03\xeb\x8c\xd2\xd5\xc4\x86\x23\xa6\xd1\x75\xa2\x8d\x5d\x87\xf7\xd3\x0e\x75\x06\x08\x99\x29\x3f\x00\x0f\xc8\xc8\x02\x14\x3d\x64\x51\xde\xfb\x46\x41\xf2\x25\xb7\x31\xf1\xf5\x84\x36\xdc\x81\x2b\x8a\x18\x88\xf2\xea\xc9\x63\x71\xba\xc3\xde\xd0\x48\x16\xb0\xa5\x9c\xa2\x35\xbf\x93\x67\x1b\x78\x5d\x26\xf5\x34\x21\x02\x15\x5a\x04\x02\x1d\xee\xcd\x04\xaf\x98\xdb\x2d\xea\xaa\xbe\x31\x0e\xf6\x94\x37\x82\xd1\x7a\x4f\x24\xeb\x7a\x1a\x34\x20\x8e\x3f\x47\x5e\x00\xe7\x02\xfe\x2d\x2e\x45\x5a\x56\x97\x77\x83\x5f\xcb\xc5\xa0\xfa\x7c\x77\x82\xbf\x3a\xf5\xc6\x0e\xcf\x37\x57\xf3\x6c\x43\x2d\xeb\x0c\xce\x1c\x00\x69\x3f\x62\x97\x88\xa8\x2c\x5d\xae\xf6\x94\x56\x90\xb9\x40\xc5\x99\x0b\xac\x84\xb3\x99\x96\xfd\x38\xc2\x43\x52\xef\x65\xb9\x05\xf3\x61\xde\xb9\x05\x2c\xcf\x37\xfb\x2e\x42\x65\x04\x59\x10\xcc\xc9\xf5\x78\xda\xed\x7e\x79\xe9\xeb\xcd\x6c\x23\xdd\x13\xd0\x2e\x4a\xfd\x21\x64\xc8\xa2\xaf\x33\x37\xbc\x5e\xf5\x9f\x6a\x13\x0e\xe5\x0e\x8b\x85\x5f\x98\x88\xe3\xd3\x28\x79\x3a\x0c\xa2\xbf\x27\x3e\x60\x78\x6d\xb7\x48\xc8\xfd\xf7\x5b\x8d\x6f\x2f\x68\xba\xb1\x5b\x94\x3a\xf0\x2c\xf6\x6c\x51\x93\xec\x2e\x80\x03\xe6\x96\x2c\x3f\xa9\x02\x75\x5a\x63\xc1\x8b\xbd\xd7\x22\x57\xdc\x86\xd0\x07\x81\x57\x79\x1c\x51\x3a\xae\xb9\x21\x5b\x8c\xaa\x49\x23\x96\xc5\xd2\x7c\x15\x69\x02\x5e\xfc\x75\x76\xf1\x9a\x23\x92\x67\xb7\xef\x56\x74\xad\x31\x5d\x34\xf9\x0e\x53\x4c\x0b\xc8\x98\xae\x2b\xe0\xb9\xe8\x8b\x90\x7e\x25\xde\xdb\x26\x22\xf5\x67\x52\xb8\xc0\xc2\x7a\x76\xcc\x72\x3e\xcf\xed\x14\x23\xab\x6e\x76\x86\xc8\x3a\x67\xc9\xa6\xe5\x8a\xec\xa9\x78\x94\x6f\x79\xe2\xcb\x46\x8c\xca\xfc\xb6\x68\x1c\x6e\x6f\x55\x19\xb4\xed\x25\x11\xea\x4e\xca\xcc\x97\xe1\x62\x2c\xfd\x1a\x50\x56\xd9\x8f\xd3\x19\x0a\xe8\xc0\x9b\x43\xe6\x83\x28\x02\xe9\xe4\x91\xa9\xb1\xf6\xf2\x52\xb3\xdb\xcf\x0a\x95\x40\x47\xe7\xe7\x24\x22\x21\x3d\xf1\x5b\xcd\x30\xee\xae\xb9\xde\x2c\x05\xaa\x97\xb8\x5e\x02\x2e\x87\x19\x61\x50\xea\xb5\x87\x02\xc2\x5e\x5c\x74\x93\xac\x70\x02\x6a\x55\x45\x62\x2c\x30\x26\x4f\x4c\x22\x9a\x77\x88\x1a\x7d\x67\x6a\x6f\x3e\x70\x40\x5a\x3c\xd5\x12\x57\x85\x35\x88\x64\xfe\x88\x6e\xf6\x3e\x4b\x05\xdc\x6e\x05\xb9\xa2\x8e\x8b\xf2\x38\x5d\xc5\x42\x8a\x65\x76\x0e\x9c\x39\x3d\xd9\x62\x99\xc9\x34\x76\x40\x01\x11\x4d\x65\xc9\x53\x56\x77\xa6\xd3\xd5\x55\xe5\x13\x96\xdb\x9a\x9f\x5a\x25\xd9\xf2\x95\x2a\x12\x99\x93\x67\x89\x79\xf0\x01\x06\xb5\x29\x33\x07\x04\xe2\xa3\xd2\xe3\xf5\x26\xfe\xd5\x2d\xd9\xb3\x0a\x21\x43\x31\xea\x94\x2e\x5f\x19\xad\xa2\xa9\xe2\xb5\x61\x82\x4e\x4c\xad\x85\x42\x37\x4a\xa3\x5e\x1c\x69\x8b\x05\x20\xa1\xb7\xe4\xaf\xf4\xb8\x0e\x2f\x31\x74\x65\x1e\xe3\x77\xbc\x99\x6c\x10\xb1\x39\x4f\x51\xfc\x20\xae\x16\x70\x0d\x19\x10\xa0\x5f\x43\xc5\x4f\x4f\x76\xca\x2b\x1f\x9e\x5f\x68\x3e\xff\x8b\xd2\x3a\xf5\x42\x18\xfb\xf7\x6b\xd1\xf6\x0d\x8c\x0d\xac\x9a\xbb\xda\x54\x45\x6c\x05\xde\xd1\xee\x76\x80\x3b\x5d\x90\xc5\x0c\x6b\xe6\xfd\x56\x35\x91\x0d\x05\x22\x2f\x1b\xfb\x20\xeb\xad\xdf\xc0\xc5\x69\xc5\x81\xec\x01\x55\xaf\xcc\x76\x4b\xd6\x30\xff\xbb\xa0\x3b\x7a\x39\xa9\xea\xfd\x98\xa2\xab\x4c\x02\x64\xf0\x0d\x2a\x4f\xa2\x64\x6f\xd8\x4e\x79\xed\x48\xf9\xb5\x47\x8e\x66\xdb\x43\x59\x33\x90\x1a\xfd\x4c\xa4\x35\x10\xcf\xde\x54\x3e\x2a\x46\xc4\xb9\xa9\xa8\x4b\x76\x8f\x41\xdc\x53\x95\x01\x44\x1d\xfa\x33\x7a\xe2\x9b\x20\x82\x49\x9c\xd4\xf8\x3a\x49\x3b\xc0\x34\x96\xee\xf0\xfc\x62\x73\x23\x8a\xd7\x27\x01\xcc\xa7\x5a\xdc\xf5\x09\xdd\x8a\x5e\x26\xf2\x49\x73\x61\x71\xdd\x26\x09\x37\x05\x5d\x7a\x00\xdc\xfe\x05\x2f\x45\x2d\xf3\x42\x3f\x55\xa3\x44\x74\x50\x38\xce\x8d\x00\x36\x45\x76\x68\xda\x5f\x4c\xf8\xca\x8a\xf2\x97\xaa\x91\x82\x49\x76\x1a\x01\xab\x9a\x41\xca\x0b\x56\x35\x47\x68\x8c\x20\x83\x3a\xad\x2f\xd8\x24\x6a\xe4\x9d\xea\x7f\x61\x1b\xb3\xc0\x85\xe0\xa4\x27\xa5\xa7\xae\x68\x4d\x19\x90\x88\x70\xdf\x47\x0a\x86\x37\xbf\xcd\xae\xdb\x52\xb1\xf4\xba\x54\x2f\x5a\x3a\x75\x44\xb6\x5d\xe5\x99\x53\xd6\x7b\xa6\x45\xd2\x8c\x57\xc7\x8d\x6f\x7c\xc3\xab\x4e\xc8\x16\x8c\x02\xdf\xfd\x71\x88\x94\x05\xbc\xfa\xca\xf6\x33\x20\x9d\xe3\xd2\x1e\x43\x0a\x8f\x47\xf5\xa9\x0e\x25\xfc\xa9\xbe\x0f\xec\xb1\x8f\x6d\x59\xe7\xb1\x74\xe8\x52\x8e\x72\x93\xa4\x47\x48\x71\x8b\x84\xc0\x8f\x61\x7b\xc6\xba\x7b\x9e\x85\x9c\xf2\xa8\xe8\x2b\x94\x4c\x4d\x04\xe5\xcf\xcc\x50\x30\xc0\xf2\xc4\x56\x4a\x1e\x2e\x3a\x20\x20\x8d\xfb\xe2\xae\xa7\xdb\x9f\xae\x4b\xd2\x3a\x51\x61\x65\x19\xab\x73\xca\x57\x59\x05\x34\xac\xe7\xeb\x71\x19\x25\xc0\x6a\x7a\x87\xe5\x6f\xbd\xec\xf3\x85\x9d\xe3\xfd\x79\x78\x57\xf9\xaa\x18\xa6\xe6\x3d\x52\xd7\xbf\x47\x3d\xb7\x68\xd5\x29\x65\x0f\xaf\x72\x16\xf3\x59\x4f\xc8\x87\xc0\xfd\xe6\x28\x4a\x92\xcd\xb9\x00\x5b\x85\x68\x2f\xd9\xb9\xbf\xc0\x6e\x85\xa6\x16\xfb\x90\xd8\xf8\x47\xc7\xc1\x17\x7b\xe8\xf2\x32\x2e\x1c\x8a\x48\xde\x02\x75\xd9\x0a\x97\x7f\x38\xa6\x58\x15\x1a\xfb\xe6\xb9\x18\x1a\xe4\x8f\xa2\x7b\x64\x9c\x2d\x5a\xc5\xab\xf5\xbe\xdb\x08\x64\x9a\xbf\xc9\x19\xf0\xdf\x9c\x82\xa3\x1d\x38\xd0\x8c\x06\x0e\x6e\x0f\x0d\x6f\x5a\xf4\x68\x3b\xf4\xd1\xce\xb1\xc6\x52\x63\x6b\xba\xd7\xb1\xdc\xec\xb9\x95\x68\x94\x98\x85\x2e\x4a\xa5\x88\xa8\xf4\x98\xfc\x6b\x7a\xa3\x02\x65\x3c\xd5\x59\x1d\x07\xa1\xad\xe3\x24\xdd\x52\x64\xe9\xe6\x5e\x2a\xbd\xa0\xc0\x86\x09\xf8\x7d\xb2\x63\xb9\x80\x19\xab\x2d\x26\x24\x35\x66\xa7\x5d\x7d\x33\x99\x79\xbc\xe2\x1b\x51\x41\x39\x70\x20\x4e\x4a\xee\xb1\x6a\x09\xf0\x64\x32\xaf\x77\xff\x86\xcc\x7a\x0c\xb7\x7f\xc9\x71\xec\x17\x9c\x16\x63\xb7\xc0\x8e\xb6\xab\x4d\x1e\xfe\x37\x5a\x13\x2f\x89\xb0\xf7\x50\x2d\xd6\x1f\xa4\xac\x7a\x54\xac\x71\x07\x73\x82\xc3\x13\xde\x31\xb8\x04\xb3\xb2\x08\x22\xf3\x3f\xa3\x9a\x02\x48\xc0\x3f\xc1\xce\xa8\x27\x58\x11\xf5\x73\xe4\xf0\x51\x74\xa3\x5c\x59\xa1\xa6\x41\x17\xee\x7c\xda\x64\xe5\xc5\x45\x91\xff\xf5\x93\x0b\x8d\xbc\x1b\x64\x96\x1b\x7c\xd2\x95\xb1\x89\x05\x08\xfb\xeb\x33\x6d\x56\x27\x0f\xab\xc5\xbe\xad\x60\x36\x90\x6f\xba\x59\xd6\x07\xfb\x7c\x4c\x4a\xbd\x88\x74\xf4\x18\x43\x52\x3f\xc5\xb5\x7d\x97\xa6\x0a\xc6\x44\xad\xf3\x8d\x16\xe1\x51\xde\xa8\x0b\x4b\x87\xa3\x4e\x12\x77\xf7\x04\xd0\xa3\x5a\xef\x5b\x8f\xa1\xe1\x8d\x83\xee\xcb\xa6\x61\x2d\x7f\x72\x49\xd4\x22\x13\x42\x8c\xe1\xf8\x17\x7d\xe2\x52\xba\x3c\xc0\x50\xd5\xd1\x06\x2f\x1d\x64\x63\x3d\x9e\x8a\x4b\x9f\x17\x33\x7e\xb9\x0d\xdc\xf0\x51\x19\xfd\x7a\x4c\x1e\x67\x2b\xe2\x93\x1d\x72\x61\xcc\x8f\xdf\x1e\x53\xcf\xf1\xb7\x5b\x5f\x63\x15\xfa\x61\x94\x47\x1d\x21\x1d\xcf\x90\xe0\x30\xf2\x52\xec\x56\xa0\x56\x9b\x9f\x48\x98\x91\xdd\x2c\x55\xef\x0d\x0b\x7b\x65\x4e\xe9\x49\xeb\x17\x82\x68\xd2\x28\xef\x64\x7a\xdf\xa8\x8a\x2d\x7a\xaf\xeb\xea\x67\xcc\x03\xdb\x52\x95\x24\xab\x12\x03\x48\x45\xfa\x22\xc3\x81\x03\xbe\xc8\x50\x47\x42\x1d\x8a\x66\x0c\xbe\x1b\xf5\xb9\x3b\xa4\x3e\x32\x29\xe4\x96\x74\xb2\xc6\xa4\x3b\x4b\xb5\xc3\x9a\x0a\x0f\x29\xc2\xbb\x22\x1b\xe5\x5d\x57\xec\x0b\xb1\xa4\x92\xce\x91\xcd\x9d\x01\x4e\x50\x1b\x8f\x98\xdc\xff\x2f\x63\x6f\x1e\x23\x49\x76\xe6\x87\x75\x67\x55\xf5\x31\x3d\xd3\x73\x8f\x28\x41\xb6\x53\x5a\x0a\xe3\xb5\x09\x6a\x2d\x5b\xb2\xb4\xff\x64\xba\xab\xa8\xd9\x2e\xec\xd4\x14\xba\x7b\x67\xd6\x03\x01\x9a\x57\x99\xaf\x32\x63\x2a\x32\x22\x27\x22\xb2\xaa\x8b\x80\x01\xc1\x10\x0c\x41\x86\x01\x59\x90\x2c\xf8\x10\x2c\x1b\x92\x7c\xc0\xb2\xb5\x4b\x51\xd4\x8a\xdc\xcd\xe4\x92\xbb\x5c\x2e\x8f\x39\x39\x07\xe7\x60\xdf\x47\xf5\x7d\xdf\xd5\x46\x7c\xbf\xef\xbd\xf7\xcb\xca\xe8\x85\xfe\x19\x44\x4c\x57\x66\x46\xbc\xe3\x7b\xdf\xf1\xfb\x7e\x3f\xff\x2f\xe5\x9a\x81\x7d\x01\x4b\xb8\x23\xfa\xaa\x2d\x04\xb1\x28\x99\x16\xd4\x66\x35\x46\x76\xbc\x54\xb5\xf0\xbd\x5c\x73\x3d\xca\xaa\x68\x5d\x1b\xc7\x35\x12\xd4\xb9\x32\xa4\x36\xad\x2b\x13\x9e\x57\xe9\x9e\xe7\x69\x9c\xd6\xc2\x66\xbb\x46\xd2\x50\xd7\xfc\x6e\xed\x46\x9d\xee\x9a\x59\x9f\x0e\xc7\xfe\x53\xcd\x90\xa6\xa8\x8d\x4a\x1b\xe8\xd1\x9b\x04\xb7\x9c\x60\xc6\x78\xed\xc0\xbe\x7a\x62\x3b\x69\x11\x11\xac\xc7\x51\x54\x86\x0a\xcf\x9f\x40\xa9\x61\x06\x99\xb5\x68\x16\x71\x62\x81\x32\x1a\x7a\x53\xa9\x33\xdc\x1f\x80\x96\x8c\xd5\x06\x65\x94\x5c\xbc\xf1\x0c\xf3\x50\x20\xa5\xb5\xd5\xf9\xf0\x15\xd7\xaa\x0e\xc4\x65\x93\x17\xaa\xcb\x0e\xe8\xd1\x76\xe4\x77\x7c\x7c\x52\xda\x61\x4c\xf7\x8e\x89\x66\xfa\x72\x16\x32\x3b\xd6\x2c\xe9\xc8\xe8\x83\x1e\xeb\x24\xd9\xfa\xc2\x42\x3d\xcd\x5a\x5d\x93\xb5\xa7\x82\xfa\xec\x27\xa4\xa2\xb8\x4d\xec\xa9\xd3\x6a\xae\x10\x09\x5c\xeb\xda\xc4\xae\x96\xfb\xea\xb5\x03\xfb\xc6\x68\xd0\x9d\x13\xfd\x68\x42\x79\x93\x97\xfe\x23\x86\x54\xe5\xfc\x1b\xa4\x59\xf0\x71\x45\x81\x53\x35\xf7\x5c\x78\xe2\xb1\xb4\x81\x08\xeb\x5d\x3a\x76\xa3\x3c\x33\x36\x8e\x6a\x01\x48\xba\x41\xb1\xc6\xc6\xc4\xf7\xef\x5f\xa8\xe7\xeb\xbd\xbe\x29\xba\xf0\x06\xb1\x1c\xff\x79\x23\x20\xc8\xff\x39\x79\x76\x45\x37\xcd\xad\xd0\x1b\xc3\x89\xda\x06\x36\x36\x84\xb1\x77\x64\xaf\xc1\x43\x3b\x87\x08\x1d\x9e\xf0\x4d\xd6\x23\x02\xd9\x2d\x1e\x7c\xfb\x28\xd0\x48\x3c\x86\xa4\x1d\xe2\x5d\xc5\x34\x78\x71\x0a\x47\x61\x78\xff\x4f\x8f\x08\x47\x74\x8e\xb8\x97\xf3\x41\x69\xad\x53\x35\x76\x55\xfd\xe6\x93\xfe\xd9\x01\xb7\x41\x89\x87\xee\x24\x25\x5b\x4e\x56\x8d\x96\x14\x87\x4d\xb6\xce\x44\x30\xf2\x80\xce\xff\x08\x3e\xc7\x2b\x0b\xaf\xd4\x4a\xaf\x1a\xf9\x45\xcd\xd3\xea\x0d\xc1\x46\x7b\xa5\x57\x19\x08\xa5\xc7\xc4\xeb\x3d\xfd\x59\x94\xb4\x6d\x92\xa3\xc0\x81\x20\x6a\x24\x66\xd9\xc1\xf2\xa9\x80\x78\x6c\x8c\xfb\x7a\x7b\xf3\x05\xea\x83\x4f\x06\xcb\x46\x28\xe2\xb3\x7c\x77\xf9\x71\xc7\x3f\x16\x84\x95\x94\xd3\xde\x6b\xef\xfb\xd2\xdb\x71\x98\x65\x25\x89\x81\x59\xf6\x7d\x8b\xde\x33\x3b\xcb\xfa\x08\xf7\x35\xf7\xa9\x77\x13\xb9\x97\xf9\x79\x29\x89\xa7\x6d\xd7\x92\xeb\xcb\x75\xe5\x77\x38\x4a\xe2\x8a\x02\xb4\x16\x2e\xa7\x82\xdb\x7e\xab\x31\x96\x12\x2a\xbf\xcc\xe5\xfa\x76\xbb\x1a\x51\x7b\x86\xf2\xb2\xbb\x54\xf4\x95\xc8\x20\x0e\x7a\x62\x44\x9f\x96\x5b\xfc\x33\xcd\x10\xde\x6d\x52\xf3\x43\xd1\x35\x6b\xb5\x80\xab\x3f\xc9\x8a\x09\x27\x09\x10\x9a\x4a\xd0\x68\xa1\xb5\xe6\x5b\x0a\xf7\x2f\xf8\x96\xc2\xc7\x89\x18\x1a\xfe\x95\xd7\x8f\x0b\x58\x9c\xb3\x84\x1b\x1d\x14\xf9\xe3\x01\xea\xc0\x72\x40\xf7\x09\xdc\x7f\x1b\xa7\xa0\x64\x80\xfe\x87\x3f\xd3\x0c\xcd\x45\xff\xe4\xcf\x37\xa9\xae\xf2\xa3\xb1\x19\xba\x1b\x60\x23\xbf\x53\xc7\x4e\x73\x2d\x76\x04\xd3\x9e\x1a\x51\x46\xfa\xa2\x64\x86\x9d\x6b\x1b\x4a\x09\xa6\x28\xa2\x62\xd0\xb6\x9c\x5d\x84\x4b\xab\xd7\x54\x51\x2b\xba\x51\xd2\x99\x0e\xcf\x7e\x1d\xaf\xee\x00\xfd\xb5\x97\xfd\x35\x1c\x48\xfd\x2b\xe2\x99\x5f\x4a\xf3\x22\x4d\x76\xca\x43\xa2\x5b\x60\x37\x7a\x5c\x71\xea\xa2\x07\x0e\xf9\x03\x6d\x53\xd1\xfe\x93\x31\x6d\xcc\xd3\x24\x35\xfc\x01\x9e\x01\xa4\x9a\xf7\xc8\xd0\xf4\x4c\x02\x80\x75\x68\xc7\x06\xa9\xbd\xa3\x14\x70\x1b\xbb\x13\x1b\xa5\x63\xd1\x68\x8f\x62\x8e\x73\xcc\xd2\x99\x65\xd1\xaa\xb2\xf4\xa9\xf1\x84\x3b\x33\x56\x26\x57\xee\x75\xf2\xc8\x73\xa1\xc3\x20\x41\x1e\x65\x86\xd4\x9b\xc9\x16\x2c\x29\xa7\x24\xf1\x3a\xa1\x8e\x61\x8c\xf5\x7a\xa2\x66\xff\xc6\x1b\xf5\xe5\x2c\xed\xcd\x50\x1a\x5c\x63\x2d\xcf\xf3\xe9\x61\xde\x8f\x63\x55\x61\xff\x81\xd2\xcf\xf9\x19\xe1\x91\x3b\xd1\x6a\x94\x74\x76\x84\xf3\x55\x02\xa3\xcd\xcb\x78\x5f\x18\xdd\x1f\x72\x1f\x1f\xbe\xc8\xc1\xac\xcb\x45\xbc\x39\xa9\xc0\xb8\xf8\xca\xc1\xfa\x52\x9a\x65\xe9\xda\x16\xf5\xff\xb3\xa4\xfe\x7f\xb6\xe1\x12\x39\x49\x9a\xb4\xd2\xde\x92\x29\x1c\x80\x58\xa5\xe5\x29\xf4\x3d\x49\x09\x99\x4e\x9a\xb6\xf7\xca\x4b\x7b\xcd\xb2\x03\xfb\xb0\x5f\xfe\xab\xa7\x05\x47\xe7\x18\xfd\x48\x42\xed\x8f\x80\xf6\x82\x73\x71\x14\x7e\x8c\xf2\xfb\xc2\x4e\x39\xb2\x5f\xa6\x57\x25\x42\xae\x07\x18\x04\xc4\x3d\x90\x55\x05\xb4\xa6\x36\x22\x94\xc7\x35\xb4\xae\xea\xaf\xc0\xf9\x76\x19\xe5\x2a\x9f\xb5\x6d\x4d\x1b\xe7\xa3\x5f\xef\x5e\x95\xe5\x74\x63\x0b\xc9\x6c\x8a\xac\x05\x10\x24\x7f\x67\xc8\x91\x0b\x85\x88\x97\x7c\x15\xc7\x18\x53\x0b\xad\x4a\x4a\x47\xa2\x37\x13\x44\x8e\xaf\xee\x7b\xa9\x6e\xda\xab\x91\xfa\x6d\x0e\x54\x1f\xe0\x8e\x97\xb6\x16\x96\x5e\x9e\xab\xbf\x36\x77\x68\x47\x20\xc8\x43\x0e\x51\xcd\x13\x96\x11\xb6\x2c\xf2\x2c\x2a\x28\xee\xe8\x10\x03\x6e\xe1\x83\xe1\xe3\x21\xa8\x35\xeb\x8f\x8f\x21\x21\x7d\x94\xfe\xd4\x48\x1c\x1b\xa0\x15\x76\x8a\x9b\x02\x04\xec\x19\x39\xeb\xb0\xb4\x9f\x6c\x12\x29\xb0\x86\xaa\xf0\x76\x77\x37\xa9\x8f\x62\xc7\x28\xac\xb2\x3d\xc2\x8a\xe0\xc4\x5b\x24\x99\xe0\x98\x2b\xcb\xd7\x71\x6d\x40\x15\xad\x89\x99\x5d\x8e\x92\xd2\xd3\x6d\x33\xfc\xf2\x12\xfa\x49\x5d\x59\xa4\x22\x07\x55\x74\xd3\x41\x6e\x92\xb6\xc0\xe3\x9c\xe8\xce\x98\x56\x6c\xf9\xd6\xee\xd0\x28\x9f\x0e\x0f\xb4\xa3\x19\xf6\x6d\xba\x96\x38\x7e\x35\x17\xfa\x96\x23\xe2\x62\x62\xaf\x2f\x6b\x7b\x69\xe8\x97\x73\x2a\x1e\xa1\x8d\xe3\x44\x15\x79\xda\x8b\xff\xd9\xaf\xe4\x22\xa1\x8d\x93\xee\x1e\x33\xec\x9c\x1b\x92\x72\xf8\x19\x6e\xf3\xf9\x6d\x72\xb3\x72\x7b\x78\x26\x74\xad\x5e\x20\x00\xed\x33\x4d\x72\xb4\x37\xb1\xa7\xb0\x6e\xc1\xaa\x05\xc3\xf7\xc5\x90\x01\x57\x7d\x9b\xb4\xd1\x3c\xe3\xfd\xf3\x72\x21\x39\xff\xbc\x22\x9c\x88\x92\x5c\xda\x51\x64\x26\x90\xdc\x38\xd2\x20\x11\xd2\x23\x55\xc9\x91\x28\xe9\x0f\x5c\x5a\xcf\x19\x10\xee\x2a\xda\x1a\xed\x88\xf5\x6e\xdb\x1c\xee\xc4\xd4\x38\xdb\xf2\xfc\xbc\x2e\xa9\xfb\xf2\x1d\x38\xcc\xcf\x50\x1d\xd5\x2c\xf5\xc6\xab\x20\xe5\x48\xba\x2a\xc8\x6e\xb7\xc7\xbe\xbc\x57\x16\xbd\x5b\x9d\x41\x42\xe9\xc7\x24\xaa\x79\x76\x38\x06\x44\x2e\x67\x0e\x99\x40\x45\x70\x62\x16\xae\x0d\x89\x82\x63\xba\x49\xa1\xe6\x4c\x33\xe4\x90\xde\x6f\xd4\x66\x67\xd5\xef\x44\x63\x06\x3c\xfe\x9f\xc9\x26\xc3\xfa\xfc\xc5\x90\xfa\x41\x76\x8c\xa8\x8d\xed\x03\xca\x30\x74\xd2\x6c\xc9\xb4\xba\x76\x75\x8f\xfc\x2e\x8c\xe5\x47\x8d\x40\x0d\x24\x16\xf5\xf5\xcd\x33\x4c\x7a\xa4\x7c\x37\xfa\xc7\xc4\x26\x7c\x97\xc9\x97\x15\x00\xef\x39\x5c\xf7\xbb\xf3\x76\xba\x39\xce\xe1\x1e\xf2\xf9\x15\xd6\xf7\x25\x91\x17\x9f\x1a\x13\xe1\xa0\x17\x03\xe0\x00\xf6\xe2\x68\xa5\x00\xdf\x20\xe9\x9a\x7e\x7f\x1d\x05\x6a\x0c\xe5\x51\x3a\x66\x8f\x52\xa3\x4d\xbc\x92\xef\xaa\x79\xae\x3e\x24\xcb\x91\x40\x79\x0a\x4e\x1d\xd2\x5d\x27\x87\xb5\xaf\xfd\xa6\x82\x5a\x3f\x1c\x52\xdb\x3e\x66\x18\x27\xd9\x4c\x33\xb0\xbe\xbd\xfb\xa5\x26\x8d\x1e\x33\x8d\xaf\xda\xc2\x66\x26\x91\x7d\x0c\xa4\xc6\x05\x0d\x42\x60\x99\xde\x96\x27\xd5\x7f\xc1\x0e\xd7\x7f\x18\xcb\x27\x65\x36\x7f\x9e\x01\xaf\xa7\x51\xd2\xc1\x23\xa2\x5c\x88\xf7\x78\x28\x0b\x04\x96\x5e\x78\xaf\x1f\xfc\xad\x67\x46\xe5\x5a\xf2\x6f\x50\xee\x59\x87\xa9\xa5\x2a\xf4\x2d\xbc\x1b\x72\x4b\x37\x1a\x41\x26\xf4\x87\x8d\xb0\x8b\xfe\x25\x39\xe8\x3f\xc0\xe1\x8d\x63\xf0\xf2\x90\x70\x14\xe0\xf9\xc7\xf3\x7c\x4b\x2a\x5d\x0a\xed\xc7\xaa\xc2\xd9\xfd\xf7\x18\xaf\x7d\x05\xa1\x95\x73\xf2\x02\x71\xad\x72\xf7\xba\x9e\xd7\xe0\x19\x4b\x02\x4f\x3c\x4d\x15\xd2\x21\xa1\xcd\xef\x3f\x12\xe7\x2a\x8e\x90\xe6\x88\x31\x20\x37\xc4\x4b\x47\xac\xa8\x5a\x2b\x08\x55\x1e\x12\x1e\xc0\x26\x45\x66\x57\x22\x24\x89\x90\xb1\xd5\x98\x55\x6f\x26\x50\x13\x07\xf6\xd5\x4d\xd6\x19\x70\x3b\xeb\x36\xf8\xdd\x38\x68\xa0\x5d\x8c\x15\xfe\xd1\xf0\x05\xd7\xfb\x39\x48\xda\xa6\x67\x93\x62\xac\x8d\x0f\x96\xe6\xb3\x21\x19\xce\xcf\x88\x31\x3c\xef\xa6\xfd\x1d\xa1\xbe\xfd\x0d\x52\xc4\xbb\x3b\xe4\x3c\x9c\xcc\x7c\x68\x49\x74\x99\xf1\x6f\x70\x7f\xef\xe9\xc6\x9e\x50\x35\xf9\xea\x6e\x59\x12\x18\xfc\x07\x0d\xca\xac\x6b\xa8\xa0\x1d\x61\xb2\x58\x1c\xb7\x18\x37\x39\x9f\x23\x45\xd7\xcf\x31\xf9\x88\x71\x34\x5b\x06\x08\x0d\xf8\x90\xdc\xe6\x78\x66\xdc\xbb\x99\x9d\xab\xff\xaa\x88\x5a\xc2\x99\xbe\x29\xdf\x08\x20\xc1\xd5\x06\xed\x01\x24\x07\x10\x82\x1f\xa3\xbe\x42\xa4\x39\x1d\x56\x5d\x5e\x01\x99\xf5\x3f\x9a\x38\x72\xe7\xe7\xeb\xed\x34\xcd\x66\x38\xee\x3b\xcf\xb2\x7a\xe7\xc6\xb0\xee\x21\x70\x3a\xc9\x23\x78\xab\x22\x9d\xb7\x58\x5f\x37\x85\xd5\x2e\x5b\x58\xc5\xcf\x35\xbe\xd2\xbb\x09\xc3\xf6\xda\xe2\x97\xeb\xdd\x41\xbe\x64\x92\x36\x0c\x1b\x1c\xae\xf3\xc4\xd9\x74\x7e\x82\x37\x66\xff\x42\x3d\x4b\x5b\x2b\x38\x3b\x7d\xfb\xd7\x42\xa0\xd8\x79\x9e\x33\xeb\x10\xc5\x8b\xd2\x64\x77\x39\xbe\xc8\x90\x7c\x01\xaf\x09\xbb\x1d\x07\x0f\x1c\xc9\x5b\x63\x79\x40\x3a\x25\x8f\x61\x5d\xe8\x27\x50\x55\x75\x0a\x64\x84\x70\x3c\x36\x64\x1d\x1a\xaa\xda\xb4\xd2\xac\x9d\xef\x0c\x95\x89\x1a\x0c\xb1\x37\x73\xa1\x93\xec\x0a\x2b\x37\xff\x41\x83\x24\xc3\xf6\x34\x89\x1c\xfd\xaa\x2e\x41\xac\xd4\x3b\x8d\x67\x7c\xdf\x40\x6b\xc5\x2e\xdb\x38\xb6\xd9\x74\x58\x44\xdb\x24\xd5\xec\x01\xde\xe5\xd7\x48\x21\xdf\x3e\x35\x86\xaa\x09\x01\x75\x3b\xb3\x87\x6d\x3c\x3d\x06\x00\x18\x06\x7a\xc2\x5b\x44\x4f\x78\x0b\xdf\xe7\x50\x02\xac\x32\x3f\x48\x72\x1b\x4f\xd3\x58\xbf\xc3\xc3\xf8\x0e\x35\xb2\x9e\x22\xa1\x84\x53\x04\x32\xcc\x8b\xb4\x67\x5a\x20\xa9\x43\x05\x02\x41\x9d\x5e\x57\xc9\x33\x2d\xa5\x1e\x3a\x8d\xd5\x7d\x42\x0e\x1f\xbd\xae\x62\x21\x6a\x47\x1d\x3d\x99\x11\x82\x7e\xc2\x8a\x91\x1f\x36\x42\x84\x7d\x86\x4b\x85\x87\xfb\x26\x51\x8a\x50\xcf\x8c\xe3\x31\x07\xda\x66\x89\xd8\xf3\x02\xa1\xa3\x33\xd3\xe6\x26\x2a\xf8\xdd\x77\xa9\x7b\xed\x2e\x25\x99\x5a\x5d\xfb\xf5\xa9\xb0\x68\x40\x70\x07\xdb\xa8\x72\x95\xae\x99\x9d\x05\x49\xd0\x49\xe1\xba\xa9\x5d\xae\x5e\xfe\xdc\x65\xf1\xab\x54\x48\xca\x0f\xa6\x2a\x41\xea\x95\x6c\x7c\xee\x06\x3b\xcc\x35\xc7\x3a\x8f\xbf\xd5\xcd\xa2\xbc\x88\x9c\x1e\x89\x03\x8c\xd2\x69\x76\xa1\x11\x72\xd3\x79\x91\x59\xd3\x83\x4e\x0a\x2c\xc2\x1d\x22\xfa\x3a\x31\x56\x90\x98\x80\x07\x7f\xa5\xde\xb6\x6b\x8c\x88\x67\x47\x7f\xb2\x7e\xb1\xbf\x9c\xd6\x3c\xb7\x89\xf2\x4b\xb9\x64\x0a\xf5\x1f\x8c\xd9\x89\xd4\xb5\xa0\xe7\x63\xba\xb6\x43\xd6\xb5\x1d\xf3\x55\xf2\x78\x7d\x4f\xe8\x6d\xd4\x80\x4f\x3d\xef\x06\x47\x2a\xc8\x59\x39\xc1\xef\xf2\x7d\x11\x60\x7d\x0a\xc3\x01\x40\xcd\x5d\x58\x24\x8c\xfb\x43\x39\x6a\x90\x16\xbf\x4a\x6a\x64\x40\x08\x03\x4d\xf8\xfc\x48\x2a\x66\x8e\x6b\x2d\x64\x11\xbb\x51\xef\x31\x5a\x5a\xe7\xe9\xc4\xd8\x3b\x22\x6e\xf8\x2b\xa4\xdc\x77\x67\xc8\xad\xf4\x9f\x12\xea\xee\x49\x34\xb7\xc1\x13\xfe\xc5\x70\x5c\x43\x6e\x76\xce\xc1\x43\x1b\x04\xbc\xbf\xd8\x08\x7c\x04\x51\x1c\x0b\xe7\x62\xa1\xe5\x70\xef\x14\x05\xb9\x8b\xbf\x17\x68\xbe\x0a\x93\xb4\x4d\xd6\xde\x15\x70\xf7\xcf\x93\x98\xe1\xcf\x00\x3e\x83\xd3\xf7\x5d\x19\x48\x58\xe0\xc7\x81\xe5\x41\x7c\x7e\x9e\xdb\x87\x81\x5d\xf3\x85\x7c\x79\x47\x0c\x5f\xd0\x7a\xee\x99\xf5\x25\x1b\x7b\x02\x5a\xec\x2e\x6d\xcf\xd4\x9b\xaa\xd2\x55\x91\x99\xb6\xcd\x67\x02\x74\x4a\xeb\xd6\x48\xba\xdf\x97\x5c\xf9\xe6\x65\x22\x8b\x51\xa6\x3c\x4c\xf7\xe5\x49\xf2\xa2\xb9\xba\x69\xaf\x4a\x7c\x8f\xbe\x56\x98\x79\xa5\x32\x44\x88\xf2\x03\xd2\x39\x9a\xac\xe4\x94\x07\xf0\x52\x9a\xa5\x83\x4e\x57\x72\xa9\xb0\x19\xe7\x87\x94\x32\xc5\xb9\x8a\x70\x6d\x46\x52\x7f\xee\xff\x57\x10\x91\xb6\xa3\xbc\x95\x26\x85\xd5\x2c\x99\xa3\x25\xac\x79\xd5\x96\x3f\xa8\xa2\xbc\x8f\x7a\xfd\x74\x90\xb4\x7b\x0e\x01\xe4\xcb\x63\xf3\xf3\xbe\x3c\x36\xc9\x40\x71\xb0\x9c\xfc\x4e\x27\x34\xbd\x78\x93\x50\x0e\x85\xde\x90\x5f\x9c\x2e\x2f\xdb\xec\x49\x4c\xa8\x52\x17\x36\x88\x46\xee\x7f\x96\xf0\x00\xa0\x9f\x7f\x3b\xac\xcd\xce\x6e\xde\xe7\xfe\xca\x77\x11\x1e\xc0\xd2\xa8\xe8\x83\xde\x0c\x43\x4b\x39\x18\x4e\x61\xc1\x7f\x08\x5d\x57\x47\x62\x51\x8e\x1c\x6c\xfe\xb5\x61\x28\x22\xaa\x0e\x13\xf6\xf0\x71\xc1\x15\xe0\x1f\x2e\x48\x74\xa0\xe2\x0f\x13\x1d\x3f\x0b\x0b\x4e\x95\x52\xdb\x01\xb0\xf1\x3f\x83\x11\xd1\x1b\x3e\x9a\x6d\x27\xb3\x8a\x11\xf3\xf9\x67\x2f\x2b\x07\x86\x6b\xac\xb2\xc9\x82\xcb\xec\x6c\x5d\x94\x95\xa3\xbe\x89\x69\x7a\x40\x32\xa4\xd7\x64\xb0\xcb\xf9\x37\xad\x62\x86\xc0\x22\xe8\x49\xc6\xf6\x02\x5c\x0f\xa1\xfc\xa7\x43\x8a\x2c\xa7\x9a\xe5\x0b\xc3\x82\xdc\x6c\x84\xfa\x53\xb7\x0c\x13\x05\xc0\x90\x0e\xb4\x4d\x1c\x9f\x3e\xdd\x08\xdf\x74\x7a\x0c\xa3\xdf\x6b\x19\x3d\x5c\x30\xf8\x1f\x63\x67\xea\x4d\xe3\x51\x95\xd6\xa5\xcc\x9a\x15\x9f\x8a\xc2\x56\x38\x41\xc8\x90\x13\xc3\x2f\x4d\x30\x77\xe9\x67\xff\x83\x32\x54\x72\x79\xff\xf2\x65\x61\x7e\x9e\x68\x52\x85\xe8\xb6\xfa\xb5\x4a\xc1\xca\xed\x61\xcf\x8f\x00\x18\xc2\x14\xbc\x23\x19\x0e\xed\x5e\xc5\x22\x72\xa6\x89\x04\xd0\x76\x20\xdb\x88\xb9\xfe\x31\xd1\xc2\xd6\x04\xde\x0b\x23\xad\xd6\x17\xa8\xc3\x7f\x26\x2b\x1c\x9f\xde\x25\x91\x85\x92\x81\x0d\x03\x6a\xf2\x1c\x75\x4b\x9e\x96\xe6\x06\x44\x1f\x77\xd0\x36\xec\xd5\xb1\xcb\x11\x72\x05\x1c\xd9\x0b\x48\x94\xaa\xc4\x1c\x30\xc4\x47\x91\xd0\x46\x20\x78\x1e\x47\x1a\xbe\xed\x13\xc6\x92\xfe\x1b\x64\xa4\xf5\xcf\x24\xbf\xe0\x04\x3e\xcb\x09\xf6\xed\x52\x01\x33\x0b\x11\x78\x78\xdf\x7b\x9a\xb5\x5f\x3f\xe8\xff\xbf\x6f\x57\xd3\xc6\xb6\x29\x12\x8f\x00\xcb\x01\x2c\xfe\x5d\x66\x19\xbc\xe6\xd3\xfc\x26\x29\x64\x9d\x07\xbc\x84\xe3\xd1\xa4\x66\xc8\x8d\xca\x90\x76\xcd\x44\x45\x8d\x6a\x5c\x1b\xcc\xd4\xb8\x31\x0c\xce\x1c\x04\x7f\xa3\xb1\xb6\xc6\x2f\xa8\x7e\xfb\x45\x05\x90\x72\x79\x90\x0d\x56\xcc\x9a\xf6\xcd\x78\x01\x9d\x85\xa0\xd0\x18\x1a\xf5\x06\x45\x9a\xa4\x3d\xc5\x13\x39\xac\x68\xcd\x8b\xd2\xd5\xca\xbd\xbe\x79\x93\x0e\xff\x24\xcd\xc4\xbb\x42\xf4\x76\x93\x78\xc7\x7e\x8a\xd7\xc6\x4a\xbc\xda\x60\x6c\x70\xd6\xff\xea\x63\x81\x70\xec\x92\xac\x14\xc7\x0a\x26\x35\x05\x4f\x80\x13\x14\xab\x36\x25\xe0\x84\x49\xdb\x60\xb2\xb6\xe7\x9a\xd8\x19\xd8\x0c\xcf\xc8\xf9\x0d\x47\x7a\xf7\x28\x54\xcc\x9f\x1a\x51\x0b\xf9\xc5\xa1\x0b\x5e\x96\x33\x93\xb4\xba\x51\xe0\xab\x42\xe6\xf7\x2a\x71\xe8\x5e\x65\xe9\x4b\x5d\x19\xd3\xa1\xd4\xf9\x82\x82\xda\x51\x85\x51\x54\x8d\xfe\x4b\x23\xf4\xac\x6d\x70\x1b\x44\x9a\xe6\xb2\x48\x82\x82\xec\x59\x22\xe9\x3e\x1b\xfa\x54\xd2\x74\xba\xdc\x8e\x0e\xdd\x52\x8e\x99\xca\xad\x21\xeb\xe0\x86\x23\x14\x1b\xfe\x36\xe5\xc6\x73\xd1\x86\x9e\xa6\xb5\xff\xa0\x11\xb0\x61\x1b\xb0\x9f\x1a\x67\x34\x02\xca\xf4\xfe\x18\x8e\xbb\x28\xf2\x99\x90\x68\x3c\x85\xcd\x0b\x9b\xa4\xc2\xa3\xd8\x87\xa7\x88\x6b\x70\x1b\x62\x4d\xfd\x87\x47\x32\xaa\x74\x6d\xe6\x24\x29\xf0\xcb\x47\x38\x17\x73\x9b\x88\x0d\x94\x32\x1b\x4e\xe1\xdb\xc4\x13\x9e\xaf\x45\x45\xab\x2b\x63\xf9\x6a\xd0\x54\xae\x91\xd6\x72\xe0\x0b\x6d\x0d\xb2\xcc\x26\xad\xf5\x5d\xa1\x02\xf9\x05\x56\x18\x32\x39\x17\x70\xa0\xeb\xcd\x90\x8e\xbb\xeb\xc4\xda\xae\xa5\x62\x3c\xca\x70\x48\xa2\xca\x5f\x60\x38\xf4\x5f\xfc\x9e\x5a\x4b\xb5\xb7\x36\xa4\xfb\xb4\xb0\xa0\x37\x0d\x4f\x9a\x91\x26\xae\x57\xdc\x43\x90\xcb\x27\x72\xf2\x47\xd2\xb2\x74\x84\xba\x29\x97\x4c\x56\xc4\xb6\x80\xbb\xa4\x64\xf7\xb0\x1c\x8e\xf9\x3e\x54\x54\xde\x8a\x92\xc2\x1e\xae\x91\xee\x0a\x28\x1b\x5c\x7b\xac\xcb\x1c\xd8\xd5\xa8\x6d\x93\x62\x9a\xb2\xbe\x17\x18\xbb\xf9\x90\x3a\x5b\x51\x67\x92\x45\xf8\xe1\x0b\xcd\x2a\x6c\x5f\x3b\xca\x6c\xab\x20\x39\x76\xb1\x20\xee\x7a\x14\x42\xf7\xc4\x2c\x95\xde\x9f\x9e\xbc\xb0\x26\x63\xe4\xd0\xa7\x1a\x5b\x95\x48\x7c\xf2\xb1\xe8\xda\x6c\x2d\xca\xb5\x46\xe1\xe4\x47\x42\xab\xc7\xfd\x06\xb1\x86\x6e\x90\xd4\x63\x27\x8d\x92\xce\xd3\x24\xda\xc5\x9a\x1b\x57\xe5\x20\x05\x74\xe3\x5a\xa3\xdc\x86\x08\x7d\xce\x31\x7d\xb9\xa2\x94\xb1\x4a\x1f\x34\x42\x2f\xe9\xf6\x66\x50\xc8\xd2\x0a\x93\x76\x85\xb1\x85\xf8\x44\x0e\x55\x6c\xe9\x6d\x24\x38\x5f\x93\xfa\x9f\xa3\x48\x09\x60\xf5\x3f\x86\xeb\xe8\x15\xf9\x02\xfd\xb3\xcb\xce\x20\xd5\x7b\x9c\xb4\xf5\x96\x32\x93\xb4\x41\xda\xe4\x10\xdc\x54\x0f\xc1\x4a\x04\x0a\x10\xe4\x9f\x3e\xf2\xa2\xd4\x8f\x44\x35\x0e\x97\x5d\x05\x8b\x13\x30\x54\x3f\x5d\x53\x78\x80\x57\x76\xf1\x3b\x78\x12\x84\x3c\x3b\x5b\x6f\x75\xad\xe9\x2b\x1c\xcf\xd3\xd1\x95\x83\x0b\x44\xc4\xdd\x06\xa7\x6b\x1e\x95\x7b\x5e\x8a\x4d\x6b\xc5\xed\x1b\x14\x20\xb6\x37\x29\xe9\xa3\xb4\x15\xc0\x88\x1e\xa7\x2a\xde\xbe\x7d\xff\x65\x2d\xd4\x5f\x6f\x35\x08\x3e\x7d\xcb\x77\x2c\xe6\xa6\x95\x39\x4f\x00\xee\x87\x14\xf2\x36\xb7\x23\x57\xa7\x62\x71\x5b\x6b\xc7\xff\xa1\x54\xcf\xe4\xdb\x91\x76\xb8\xd2\xa0\x1c\xe5\x15\x0f\xc5\x4a\xa2\x8e\x8d\x6b\x04\x12\xbd\x40\xa8\xce\x0b\xf4\xac\x5d\xb3\x36\x13\x4a\xe7\x48\x8d\x50\xfe\xda\x71\x9a\xcc\x34\x03\xd3\xa9\x86\x87\x8a\xba\xa9\xc2\x80\xf7\x6d\x2a\xf2\x2f\x18\x3a\x6c\x6f\xd5\xb1\xd2\x1b\x82\x0c\x67\xa2\x3a\x5d\x0e\x03\x8a\x31\x37\x1a\x84\x16\xba\xc1\xe8\x92\x76\x3b\xb3\x79\xce\x88\xd1\x4b\x44\x0b\x75\xa9\x11\x8a\x84\x4b\x4a\x26\xae\x75\xd4\x06\xd7\x54\x83\xdd\xee\x99\x42\x18\xf8\xa6\x49\x56\x71\x53\xdc\x77\x6f\x18\xcb\x27\xd1\x7f\x40\x01\xc7\xa9\xc7\x55\xe8\xa1\x17\x51\x66\x63\x9b\xbb\xd8\x47\x09\x2e\x65\xdc\x1d\xd9\x25\xb5\x60\x98\x2c\x8e\xb4\x4b\x0f\x26\x02\x9d\x41\x7a\x5d\xb5\xa8\x4d\x6f\x10\xdc\x09\x5f\x6a\x27\xf1\xc8\xad\x61\xf4\x57\xea\x45\x2a\x5d\xd0\xee\x43\x55\xfc\x0b\x9e\x37\xce\xb4\x56\x06\xfd\x1d\x38\x0a\xc4\x21\x40\x7a\xe2\x02\x31\x44\x2a\xf1\x10\x1c\x8f\x53\x08\xc7\x1d\xd8\xbe\xfc\x4e\xd8\xb4\x5b\xc4\xc0\xdb\x8b\x62\x80\x53\x7d\x1a\xce\x37\x1d\x9f\x25\x92\x89\xc9\x16\x20\x21\x31\x92\xe8\x70\x82\x0b\x07\xe6\x02\x5f\x85\x75\x7f\xcb\xaf\xfb\x8e\x89\x12\x4d\x80\xba\x68\x41\x16\xab\x02\xad\x1b\xd4\x8d\x77\x96\x76\x41\x1c\xf5\x67\x28\x51\x0a\x43\x86\x5d\x39\xd5\x0c\x6d\x7e\x5a\x17\x56\x8f\x65\x38\x06\xcb\x9a\x68\xf9\x7e\xe5\x60\x7d\xf0\xd5\x95\xaf\x4e\xd1\xb2\xbf\x47\xc2\x00\x58\xba\x30\x1e\xa7\xc9\xaa\xb6\xad\x89\x8b\xa9\xb1\x0d\x5e\xae\x4e\xdf\xd5\x3c\x3f\xbf\xf9\x4e\x55\x25\x64\x39\x32\x05\xce\x29\xee\xb6\x72\xe9\x0d\xf2\x98\x8f\x90\xe7\xd2\x2b\x9d\x1c\x1b\xc7\x32\xc8\x30\xfe\xc7\x11\x11\x21\xd9\xfe\xc1\x58\x17\x9e\x27\xe6\x49\x07\xd9\x4c\xe8\x35\xd0\xaa\xa4\xd3\x5a\x09\xc0\xb8\x4f\xb1\x5c\xdc\xf3\xc8\xac\xa0\xdf\xe4\xfc\x44\xb0\x32\x3b\x5b\x5f\x36\x99\x43\x06\x63\xbe\xcf\x62\xee\xf4\xa6\xf1\x0c\x75\xa5\xd8\xc4\x64\x51\x0a\x44\x1e\x6a\x95\xdf\x97\x47\xd5\xeb\x89\xed\x33\x3f\x5f\x6f\xdb\x3c\xea\x24\x8a\x53\xd0\x9a\x3f\xf1\x46\x5f\xf2\x3b\x61\x39\xcd\x7a\xa5\x51\x20\x25\xb1\x21\xc3\x79\x6a\x5e\xfb\x6a\x7a\x14\x4e\xd0\x67\x9a\x15\x94\x70\x79\x37\x75\x10\x69\x2f\x64\x16\x44\xcd\xc8\x89\x32\x49\x32\x30\xf1\xee\xf2\xd0\xf6\xef\x1e\xb6\xf9\xf7\x48\x3f\xf1\x0c\x02\x19\xc4\x9f\x0f\x1a\xc4\xfc\xfc\x21\x47\xd5\x0f\xb0\x54\x71\x86\x83\xca\x0b\x61\xe5\x03\x31\x70\x6e\x4c\x9f\xf4\x48\xb2\x55\x1b\x47\xb9\x7a\x67\x98\xd7\xb3\xb4\x0b\xe0\x5d\xb9\x9c\x79\xe8\xc6\x0a\x85\xa1\xbe\xc9\x8b\x41\x86\xcc\xa3\x76\xbc\x50\x46\xfc\x8c\xff\xbb\x65\x93\x77\x3d\xdf\x3a\x0c\x06\xd6\x8c\x5e\x4f\xa4\xbf\x67\xe7\xea\x7d\x9b\xdb\xc2\xe8\x40\x62\x15\xdf\x24\xfe\xf3\x9b\x63\x71\xc5\x9b\xd9\x57\x65\x59\x20\xe6\xd1\x0c\xbe\xde\x78\x4a\x8f\x7e\x2c\xd4\x22\x53\x84\xe6\x7e\x66\xe4\x41\x41\xbf\xf2\x42\x93\xc2\xe4\xcb\xb4\x3b\x97\xb3\xb4\x93\xd7\x42\x85\xfc\x88\xbc\xa3\xe3\xc6\xae\x2a\x24\x16\xd6\x15\x7d\x5c\xa5\x9e\x98\x1b\x6f\x0c\x03\x9f\x7f\xde\x4b\xe3\x36\x8c\x35\xe3\x27\x6b\xb3\x73\x1e\x88\x3e\xd1\xea\x3f\x77\xa8\x1e\xdb\x65\x3d\x3e\xb1\x01\xbf\xcb\x8d\xfa\xdf\xf5\x11\x5f\xba\x96\xec\xa5\x77\xd2\x4e\x7a\xcf\x3e\xc1\x24\x13\xa1\xd6\xf6\xa4\x78\x8e\x80\x72\x3c\x90\x59\x47\x62\xed\x1a\x56\x1a\x96\xdd\x6d\x61\xcb\x85\x81\x54\x3c\x2d\x3c\xab\x27\x9b\x63\x74\x15\xb5\x57\xf7\x6d\xfe\xa9\xa6\x6f\x1f\xfc\xe5\x5f\x02\x2b\xc3\x98\xe4\x01\x96\xe8\xb6\x09\xe9\xa2\xf9\xf9\x7a\x2f\x6d\xdb\x2c\x21\xf5\x44\x50\x0d\xea\x35\xb5\xac\x95\x51\x9b\xd9\x45\xc0\xb2\x73\xc4\x7e\x03\xc0\x32\x2c\x2b\x48\x0c\xb1\xab\x55\xb3\x00\x39\xd7\xe3\x43\x82\x75\x00\xcd\xe6\x82\xf0\x5a\x20\x39\xa8\x42\xa8\xe5\x85\x29\x06\xc5\x78\x57\xc4\x19\xca\xd5\x9d\x99\x48\x63\x0a\x02\xbc\xb0\x59\xe6\x20\x9c\x18\xf9\x9b\x24\x7c\x7a\x93\x29\xec\xde\x1a\x58\xfb\x75\x4d\x99\x7a\x52\x5e\x7f\x58\xdc\x21\x6f\x63\xb2\x27\x6a\xff\x42\xe9\x76\x64\x91\x86\x8c\x70\x9b\xee\xb1\xc2\xd0\x3d\x3a\x13\xff\xd2\xaf\xfc\x95\xda\x18\xaf\xed\xec\x9c\xd7\x59\x0a\x2a\x6e\xed\x74\x8f\xac\x05\x3c\xcb\x3d\x76\x0d\x4f\x33\x0e\x50\x52\x31\x2e\x49\x42\x2d\x49\x97\x28\x08\x01\xf8\xd8\x85\x86\xe5\x6f\xe3\x78\x7c\xba\x19\x82\x27\x85\xbe\x79\xcd\x3c\xcf\x9d\xfd\xd6\x97\x9a\x15\x90\xbc\x4c\x70\xa2\xa1\x55\x6f\x53\x5c\x41\xbd\xe6\x70\xbf\xd5\xb5\xed\x41\x0c\x6e\x9a\x85\x4d\xd0\xfb\x68\x86\x09\x8f\x0b\xa7\xe5\x9b\x9c\xb3\xe9\xf7\x6d\x11\x15\x30\x79\x2a\xf7\x20\x9f\x73\xd2\x0f\x61\x94\x5e\xb6\x35\x49\x2d\xc2\x80\xde\x61\xfe\x88\x3b\x13\xeb\xe8\x2b\xe5\x69\x90\x0e\x42\xfd\x04\x67\xe6\x75\xbc\x39\x3c\x19\x48\x28\x38\x7c\x68\xc8\xa8\xf7\x6c\x06\x3d\x81\xc5\x4a\xc6\x5e\x67\x0d\x3a\x83\xf5\xe9\xa0\xc6\x3e\xc4\xac\x39\x40\x47\x6d\x21\x88\xa7\x94\x1f\x06\x0f\xe3\x11\xca\xcd\xf5\xda\xa0\x97\x04\x30\x03\x4a\x31\x7a\x4d\x63\xda\x4a\x93\x22\x4a\x06\xb6\x2d\xbe\x02\xec\x0e\xc8\x1c\x90\x4e\x07\xa6\xc5\x61\x76\x09\xbf\x3b\x0c\x3d\xb9\x9b\xe4\xff\xf7\x4c\x6c\xca\x60\x3c\xe0\xd0\x3f\xc2\x46\x75\x42\xb9\xa1\xc4\x7b\x6e\xec\x44\xc8\xfb\xeb\xb5\x09\x81\xd2\x45\x77\x33\x51\x12\x3b\xf4\x4a\xdd\xb4\x5a\xb6\x0f\x01\x11\x47\x17\x51\x3e\x93\x5e\x13\x58\xaf\x1d\x49\x56\xa3\x9d\x03\x59\x8e\xf5\xaa\xf5\x31\xbc\xc1\xef\x63\x8d\xc2\x88\xee\x6c\x86\x5c\xcd\x79\x22\x9f\xb9\x5c\xb1\x08\xda\xb6\xe0\x56\xda\x2a\xff\x61\xab\xde\x93\xd6\xc9\x31\x1e\xef\x93\x73\xf3\xfe\xf0\x05\xa2\xb6\x94\x1c\xe1\x20\x92\x36\x7e\x49\x72\x2b\xf7\x0b\x12\xe3\x8e\x08\x86\x5a\xfe\x63\x6b\x12\x9b\xd5\xb8\x32\x4a\xbc\xfd\x17\xa9\x79\xae\x93\xa5\x2d\xb4\x9a\xd6\x88\x50\x31\x80\xbe\xcf\x51\x93\xf7\x92\xc9\x73\xb4\xb1\x78\x40\x7e\xf9\x03\x80\x62\x7c\x84\xd5\x8e\x7f\x39\x46\x7c\x52\xb7\x58\xcc\xfc\x34\x45\x73\x83\xd8\x09\x12\x78\x08\x13\xb0\x1d\x4e\xeb\x49\xe6\x01\x93\x72\xcc\xbb\x23\xc5\x7a\x3f\x6a\x99\x78\x3a\xc4\x5e\x4a\x8b\xed\x60\x72\x35\xaf\x99\xb5\xb7\x49\x1d\x83\xa7\xab\xd8\xa9\x4c\x9c\x26\x56\xb2\xd6\x88\x51\xce\x8d\x75\x53\x85\xa0\xf0\x5b\x15\x44\xd3\x22\x20\x84\xc6\x6e\x42\x0c\x7b\xf8\xf0\x84\x7e\x90\xe2\xce\x85\x26\xc0\x4b\x3c\xc2\x85\xff\x06\x1d\xe1\x9f\x11\x18\xf0\xe3\x8a\x67\x5e\xa8\xc7\xd1\x8a\x9d\x2a\x0d\x86\xc7\xc1\x6e\x31\xc8\x58\x6d\xf7\x1b\xac\x26\x14\xe5\xb6\x3d\x5d\xbe\x10\x97\xed\x90\x5d\x38\x4b\x92\x82\x67\x19\xa0\xc7\x9d\x3f\x7f\xed\xaf\xfe\x27\x53\xe5\x81\x02\x37\xe8\x21\x91\x78\x29\x69\xa3\xe3\x10\xa9\x88\xb3\xa3\x44\x88\xe1\xfc\x4b\x23\x92\xdd\x26\x5b\x8b\x79\x09\xf1\x0e\xf7\x2b\x5a\x83\xeb\x79\x1a\x47\xed\x78\x7d\xaa\x7c\x03\xd4\xee\xa9\x5f\xe8\xce\x45\xd6\x1f\x39\x59\x45\x73\xde\xb6\x2d\x9b\x88\x00\xe3\xd7\x6d\x7b\x2a\x54\x49\xd4\x46\x63\x20\x1e\x12\xd4\xf8\xe4\x90\x39\xad\xa2\xc4\xec\x0e\xe9\x89\xb3\x58\xd1\x8e\x29\x54\xbe\xc1\x27\xad\x48\x09\x60\x18\x3a\xeb\xd0\x05\x84\x08\xf7\x46\x23\xa4\x9d\x37\xb8\xd8\xef\x48\x4f\xb0\xfe\x6f\x12\x6f\x42\x57\x51\x0c\x07\x03\x87\x00\x31\xa2\x4f\xc8\x77\x2d\xd6\x57\xa3\x3c\x72\xb0\x70\x87\xd6\x0f\xd9\xda\x4b\xa4\xa8\x20\x7c\x8f\x6b\x69\xb6\xe2\x9c\x6b\xec\xa3\xeb\x78\x47\x80\x4a\x3e\x90\x37\x81\xf7\xf8\x08\xb5\xb0\xae\xcd\xb0\x91\xbd\x2c\xc9\xd7\x7e\xd3\x03\xaf\xca\xf7\x55\x5d\x34\x5a\x52\xfb\x5f\x3e\x88\x77\xc2\x7a\xd0\x7c\x93\xde\x4c\xf8\x5d\xe0\xd4\x31\x59\x54\x68\xcb\xbd\x6f\xdc\x08\x4d\x1c\x95\x80\xc3\xd2\xa1\x08\x65\x80\x7b\xd4\x6a\x73\x6f\xf8\x6c\x88\xe7\xe2\xc8\x26\xbe\x60\xf7\xba\x9a\xff\x5b\x88\x94\xf5\x86\x7c\xad\x56\x8a\x56\x26\x24\xdb\xae\x12\x2b\xc6\x55\x1f\x75\xb7\xd2\xb5\x7c\x2a\x10\xc8\x6a\x16\x0e\xcd\xb0\xf7\x81\xb9\x71\xe2\x4c\x4f\x13\x75\x45\xc7\x7c\x3d\x4a\xac\x50\x17\x00\x4a\xaa\xfe\x8c\xde\xc8\x42\x42\xd5\xe5\x31\x18\x3e\x54\xe9\x9f\x92\x84\x9f\x93\xda\x25\xda\xe6\xbf\x3b\x51\x75\x51\xdd\x8b\x2c\x5d\x75\x73\x8e\x87\xba\x4e\x74\xc7\x9b\x98\x7f\x74\x8b\x9f\xf0\xa5\xa4\x41\xd6\xb1\xa0\x64\x3e\xb0\xcf\xb7\xb9\xcb\x53\xb8\x86\x00\x3e\xc7\xdb\x5f\xc7\x9a\x80\xab\x71\x97\x0c\xaa\x0a\x60\xbb\x58\x75\xb2\xb3\x61\xb1\xde\x89\x56\x6d\xd1\x65\x2d\x2c\x4d\xe6\xe2\x60\xfa\x05\x21\x85\xee\x53\xc0\xd7\x1b\x24\x51\x5e\x23\xe4\xd0\x71\x64\xca\xf5\x86\xe2\xb7\x24\x6a\x99\xcc\x74\x06\x26\x81\xc3\xe9\xcc\x47\xcd\x0b\x83\x9d\x9c\x40\xec\xcd\x1d\xaa\x2f\x45\x31\xf0\x0b\xf0\x1d\x66\x9a\x94\x54\x9e\x19\x85\x25\xb2\xde\xcf\xc5\x65\xf3\xf4\xe6\xe5\xb3\x63\xc2\x9f\xc0\xc1\x04\x6b\x72\x94\xf0\xa3\x53\xa3\xb0\x12\xbe\x6e\xe2\xc1\x52\xd4\xb2\x58\x8f\x9a\x5e\x6e\x04\x71\xb1\x13\x3e\xff\xd1\xea\xa6\xfd\x3e\xd6\xa3\xe7\xbd\x3b\xb0\xcf\x83\x75\x1e\x55\x2d\xc9\xa3\xde\x20\x36\x85\xda\x43\x14\x10\x35\x99\x0d\xbf\x49\x35\xf2\x35\x49\x38\xc1\x67\x31\x3b\x5b\x6f\x67\xeb\x33\x94\x6d\x1c\x86\x64\xe1\xc9\x21\xc7\xc1\x04\x3f\x02\x5b\x04\x92\xc5\x7b\x9a\x4f\x12\x76\x70\xb5\x74\x87\x88\x76\xa7\x18\x86\x4a\x64\x41\x70\xec\xc4\xac\x2a\x82\xb1\x12\xad\x12\xfc\xfd\x25\xd3\x5a\x89\xcb\xf0\x9f\xa8\xd8\x37\x98\x8a\x7d\xc3\x3b\x64\xad\xae\x65\x2a\x6d\x47\x13\x28\x7f\xab\x37\x4c\x93\x9a\xa4\xa2\xb3\x86\x50\x18\xa0\x65\x38\x3e\x5f\xc2\xf8\xa9\x7e\xc9\x70\xb2\x47\x4b\xe9\x44\x64\x82\xdc\xc7\x65\x7d\xfa\xef\x9a\x75\xf8\xfd\x45\x19\x29\x94\x87\xae\x55\xc8\x9f\xcc\xd5\xad\xe9\x38\x8a\x0d\xd7\x1f\x17\xce\xd4\x8b\x13\xe5\x99\x72\x57\xe5\xb6\x35\xc8\xa2\x22\xf2\x5c\xd4\x80\x25\xed\x6a\x12\x07\xc4\x7d\x3c\xaa\x23\x64\x0b\x94\xe3\x9e\x06\x22\x4d\xb0\xb6\x3d\x25\x5e\x39\x6b\x98\x00\x08\xd4\xeb\x35\x13\xf4\x5f\xa2\xba\x77\xe9\x85\xe7\x51\x9a\xec\x96\x1f\x02\x94\xa4\x26\x06\x0c\x6e\x84\x03\xb9\xe3\xf0\xfc\xa9\x98\x57\x0c\xca\x11\x78\x85\x5e\x09\xde\xb7\x09\x9e\xc0\x22\xc3\x62\xbd\xc2\x4a\x79\x9b\x2c\x52\x70\xc1\x17\xfc\x85\x36\x42\x9a\x0d\x25\x16\x70\x00\xc8\x7b\x48\xa7\x92\x22\x84\x93\xf1\x44\x88\x8f\xb8\xfd\x21\x86\xc8\xa5\xb9\xb7\xe8\xa3\x2c\x1e\x58\x2c\x8d\xec\x33\xf2\xf6\x4e\xbf\x4a\xbe\x16\x1f\xb8\x32\xa4\xfa\xb0\xd2\x97\x3b\x8c\x70\x40\x36\x82\xce\x4c\x19\xa5\x85\x91\xcc\xd1\x1e\x05\x5e\x23\x3c\x13\x76\xfa\x65\x29\x53\x3a\x36\x0e\x3a\xb8\x2e\x30\xb7\xf4\x79\x98\x43\x47\x18\x49\xfd\x07\x27\xe5\x94\xc7\x3a\xfe\x82\x58\xd2\x18\x98\xf6\x6d\x71\x30\x1d\x17\xd4\x5e\xee\xd2\xd3\xea\x1d\x52\x91\xdb\x48\x15\x4f\x92\xf0\x0b\x9b\x1f\x3f\xd2\x10\x15\x36\x96\x5a\xb3\xab\xf9\x62\xfd\x7e\x81\x21\xd6\x9b\x2a\x90\x6d\x6e\x57\x6d\x52\x74\xa7\x6a\x8f\x52\x2e\xae\x91\xbc\xf1\x56\x4f\x7a\xee\x50\x3d\x5f\xb3\x16\x39\x1c\xbc\x34\x38\x72\xf4\x9a\x74\x62\x0c\x94\x79\xa9\xf1\xbd\x41\x93\x19\x56\xd4\xaa\x81\xb6\xb0\x77\x74\x3d\xa1\xab\x0f\x2a\x00\xd0\x50\xba\x29\x3e\xf6\xcb\x78\x30\x4a\x34\x4f\x44\x65\x7e\x47\x6b\xf8\x39\x91\x64\x7f\x51\x21\x46\x7d\xb0\xbe\x3c\xc8\x4a\x2f\x6c\x46\xe6\xda\x11\xd8\x04\xc8\x2f\xc4\xe9\x42\xf6\xae\x5c\x04\x38\x56\x77\xc8\x5c\x39\x82\xc7\xad\xe3\xfc\xc6\x1b\xf5\x96\x19\x88\xe2\x66\x8d\x34\xe1\x65\x9c\x9d\x28\x7c\x55\x2d\x48\xe8\x91\x6a\xc1\xe7\xfc\xa8\x11\xd0\xfe\x1f\x79\x7f\xa2\x6d\x97\xa3\x56\x54\xa8\x42\x08\x12\x17\xf7\x65\x1d\x62\xe9\x6a\x45\x01\x9b\xee\x71\xc9\x45\x38\xe7\x9a\x80\xfa\xa6\x88\xf2\x65\xc8\x44\x70\x3b\xad\x13\xe4\x0a\x81\x71\xd7\x9a\xb8\xe8\xae\xef\x0e\xf2\xd0\x88\xcf\x7d\x0a\xbf\x1c\x15\xfc\xd8\xb5\x06\xe7\xad\x48\xdd\xf8\x22\x76\x13\xf6\xd9\xa7\x43\x46\x2f\xc9\x4b\xb8\xef\x1d\x03\x6c\x84\x9d\xd2\xcf\xa2\x9e\xdd\x19\x38\x22\xae\x13\x5d\xaa\x76\x66\xb8\xd4\x94\x3c\x80\xcb\x4d\x95\x8f\xec\x4c\x58\xb9\x07\x09\xa9\xe2\x2c\xe8\xe5\x89\x4d\x52\x2e\xf2\x58\x5a\xb2\xb0\xb0\x70\x4e\xdf\x24\x19\xdd\x4f\x29\x09\xf3\xa0\xa2\xc3\x74\xb1\xde\x8a\xb2\x56\x6c\xa9\x3e\xae\x1a\x2a\x8e\x4c\xed\x51\x30\xc8\xd6\x20\x6b\x87\x6c\x08\xc2\x4b\xa5\x41\xd2\x1b\x22\x51\x58\x89\xda\x6d\x8b\x1a\x95\x6f\x76\xa4\x42\xb1\x7c\x05\xac\xdf\x7b\xb0\x9d\xae\xbb\xc1\xa7\xa7\xff\xaf\x0b\xc3\xe7\xb9\x41\xc2\x26\xed\x48\x08\x13\x6b\xa1\x75\xe4\x17\x32\x72\x7a\xdd\x78\x9c\x3c\xd5\x5f\xda\xc9\x5d\x1e\x44\x85\x76\x9a\x38\xfc\x1e\x6b\xd2\x8c\x9c\x26\x88\x04\x53\x36\x4f\x8f\x4a\xeb\x0c\xab\xfd\x2f\xab\x04\x66\xe2\x28\x29\x63\xad\xda\x8b\x2f\x06\x69\xd9\xd0\x30\x72\x93\xc2\xff\x23\x13\x48\x87\xb9\x43\x75\x9b\xb4\xd2\x41\x66\x3a\x7e\x4e\x5d\xf2\x21\xb0\x15\x20\x1c\x51\xda\xf6\x31\x1e\xba\x62\x6f\x68\x47\x81\xb2\x98\x9e\x97\x72\x74\x38\xf1\x47\x31\x14\xb0\x07\x3b\x9a\x94\xe6\xd7\xe5\x09\xeb\x8a\x64\x20\x52\x10\x8f\x01\xa9\xef\xb8\x61\x64\x8e\xe1\x01\x7c\x87\xa9\xcb\x77\x09\xb5\xb4\xca\x7f\x81\xb3\xd5\xb5\x05\x95\xa7\x1e\x16\x31\xd0\x9a\xae\xe4\xea\x10\x95\x87\xe3\xbf\xf1\x17\xdb\xa6\x30\xad\xb4\xd7\x9f\xa2\x90\x19\x4b\xd9\x69\xc3\x04\xee\xa5\x53\xec\x1c\xa7\xb9\x9d\x96\x27\x47\xd9\xe7\xbc\xec\x59\x72\x07\x5d\x6d\x08\xfd\x0a\xce\x35\x0c\x8b\x73\xd9\x44\xb1\x6d\xcf\x84\x94\x07\x64\x42\x91\x5b\xdf\x09\x6e\x40\x6c\xf4\x63\x82\xe2\xd1\x9d\x45\xad\x79\xb5\x51\xf0\x7d\xd2\x41\x91\x47\x6d\xab\x14\x6a\xf0\xb8\x80\x70\xd3\x6b\xda\x16\x46\xc8\x5b\xa7\x1f\x49\x88\x16\x6a\x23\x3f\x11\xc4\x91\x5e\x3f\x92\x04\xaa\x13\xc5\xb1\x2d\x0a\x5b\x0b\x28\x72\x6d\xc9\x72\x20\xa6\x00\x89\x2a\x80\xe6\xf7\xdb\xe2\x16\xd6\x85\xde\x90\x5a\xe8\x1f\xc3\x06\xe9\x0d\xd5\x3e\xda\x83\xe5\x65\x9b\x21\x06\xc6\x1e\xbd\x83\xe1\x86\xe9\x38\x3e\x1c\x93\xe8\x76\x88\x80\xd8\x2c\xa5\xd9\x0e\xe6\x46\x11\x6b\xbe\xb9\xb7\x49\xe2\x20\xd8\x7d\xae\xe0\x23\x6b\x0c\x0d\x91\xfa\x3a\xc8\x55\xfc\x21\x05\x03\x79\x61\x4d\x3b\x2a\xfd\xfb\xb9\x43\x9e\x89\x30\x54\xc8\x7e\xe1\x2b\x8d\xab\x51\x52\x98\x8e\x25\xb9\x89\x7f\x40\x90\xc8\x7f\x50\xa9\x43\x9a\x17\x0e\xe8\xe2\xa1\x89\x94\x97\x78\xbb\x0a\x1c\x62\x0f\x17\x36\x69\x2b\xf4\x01\xa3\x83\xb6\x18\x4f\x23\xe4\x93\x75\xbf\x5f\xf9\x79\x93\x47\x36\x2f\xa6\x42\x1b\xf1\x59\x6c\x29\xac\x22\x6c\x0c\x57\x4d\xae\xe0\x6b\x15\xdd\x3f\x17\x04\xc0\xfe\x2b\xa7\x04\xbc\xc9\x9f\x73\x36\x73\xcf\x68\xab\xfb\xb4\x7f\xa1\xbe\x1c\x1d\xb6\xed\xe9\xe0\xcf\xa8\x4c\x01\x65\x6f\x17\x34\xaa\xfc\x90\xf8\x24\xcf\x55\x11\x5b\xb5\xa3\xbc\x95\xd9\x02\x83\x8e\x9d\x7d\x9e\xa4\x93\xce\x0f\x1f\xf3\x8b\xea\xeb\xb5\xd2\x72\xa2\x3e\x72\x0b\xbc\x23\x7a\xc3\xa1\xbd\x72\x33\x6a\x38\x07\x8b\x7f\x8e\xac\xff\xb9\x0a\xd2\xb9\x97\xea\x79\xcb\xc4\xfd\x9c\x95\x72\x36\x00\xf1\x43\x88\xd1\xa5\xfa\xfa\xa4\xde\xad\xa4\x93\x63\xdb\x71\x39\x15\xa7\xe9\x1e\xfa\xe4\xb1\x5f\x09\x97\xe7\xeb\x52\x59\x14\x3f\x56\xfe\x9b\xd7\x5e\xf4\x2a\xc4\x67\x29\xe8\x38\x3b\xa4\xfe\x94\xdd\x4d\xa2\xe3\xdf\x20\x01\xf4\x0d\x16\x68\xd8\xc0\xd1\x09\x33\xfd\x3d\x6c\x38\xbc\xc0\xf6\x11\x21\x91\xaa\x78\xae\x5a\x5d\x93\xb4\x5c\x65\x14\x07\xf1\x71\xe2\xfb\x3b\x4e\x0e\x58\xcb\x64\xed\x68\x79\xb9\x46\x2c\x6a\xba\x0f\x9d\x9e\x19\x61\x6f\xd3\x55\x9b\x95\xfb\x4b\xd0\x59\xb0\xa1\x5f\xc8\xcc\xe8\x75\x63\x6b\x9e\xe1\xd0\x2b\x75\x9b\xb4\xc5\xbb\xc3\x39\x72\x9d\x98\x26\xae\x13\x24\xbe\x95\x26\x45\x66\x5a\x45\xfe\x18\x45\x6d\x4a\x43\x8c\xc4\x2d\xc2\x1a\xa7\x68\x4d\xed\xd2\xc7\x59\x2f\x17\xbd\x4e\xc8\xb1\x1d\x19\x52\x3a\xf0\x5f\x34\x42\x61\x4c\x35\xaf\x11\xe2\x9c\x80\x5d\x43\x81\xea\xf7\xbd\x77\x1b\xf5\xca\x73\xda\xf5\x15\xf9\x16\xe9\xf2\x67\x5d\x8f\xf3\x04\x42\x40\xd8\x16\x0f\x17\xa2\xbb\xe4\x9b\x0d\x3d\xfc\xeb\x02\x05\xd1\x5d\xdb\xb1\xbd\x34\x59\xc7\x79\x08\xbb\x78\xa7\xc1\x10\xf8\xb3\xc4\x44\xbd\x31\x91\x51\xfd\x4a\x3d\xb3\x26\x4f\x13\xb3\x14\x83\x4a\x1e\x58\xcb\x23\x44\xe7\x79\xc4\x33\x3b\xf4\xd3\xd8\xa7\x0c\x3c\x91\x77\xc8\x6e\x7c\xc6\x4c\x51\x3f\xf3\xb4\xc8\x20\xac\x4b\x5a\x96\xeb\xeb\xe8\x04\xd3\xeb\x09\x0f\x69\x7e\xbe\xbe\x1c\xaf\x3b\x50\x05\xec\xe2\xb1\x21\x69\xac\x1c\x9b\xa8\xac\xcc\xcf\xd7\xf3\x56\x16\xf5\x8b\xb5\x2c\x2a\x14\x77\xca\x69\x77\xc7\xa4\x1e\x9a\x8b\x4c\x3b\xcd\xbc\x70\xb4\xa3\xd7\x0d\x0e\x94\x4a\x7c\xbb\x56\xea\xc0\x65\xdb\xb2\xa9\x80\xe3\x10\x93\x1d\x95\x5d\xa7\x9e\x28\xd0\x86\xf0\x0f\x6e\x4d\x4c\xeb\xdc\xa1\x7a\x36\x58\x8a\x51\x6b\x82\xeb\xfe\xd8\x28\x24\x1a\xef\x08\x03\x36\x7c\x85\x7b\x84\x9b\x6a\x9b\x6c\x2d\x4a\x22\x65\x71\x46\x06\x18\x61\xad\x92\xdd\x0f\x09\x6b\xf6\xd3\xad\xd8\xd3\xc5\xb9\x43\xf5\xfd\x0b\xd3\x4c\x26\x5f\x3e\x30\x0f\x8d\x83\xd9\x84\xfe\x83\x2a\x15\x97\xd7\xeb\x9d\x34\xd6\x55\x8c\xd3\x01\xe5\x44\xbd\x6e\xb8\x2c\xda\x9b\x36\xed\x97\xa6\xe0\xeb\x58\x4f\x0a\x1d\x93\x1f\x72\x30\x32\x9f\x48\x4e\xa2\x55\x9b\x39\xa4\xb6\xf6\x98\x12\x98\x15\x9d\xf1\x4e\xa2\xec\x71\x8f\xa0\x1f\x24\xed\x1d\xe4\x93\x50\xf0\xa4\x50\x7a\xf8\x82\x57\x19\x67\xa5\x1e\xad\x13\x26\x25\x65\x9d\xef\x4f\xbc\xec\xaf\xd6\x6d\x04\x0d\xdd\xd9\x59\xfd\x91\x93\x92\x87\xd1\x6b\x62\xe7\x6a\xa5\xb1\xf6\x60\xe3\x64\xbb\xd4\xa0\x0a\x28\x07\xfa\x93\xbf\xb2\x78\x60\xb1\xbe\x1a\xa1\xa7\x78\xb1\x1a\xaf\x1f\x8e\x07\x01\xd1\x4e\xc9\x5f\x3a\xd2\x07\x2a\x05\xfd\x80\x94\xb2\x4f\x32\x45\x5b\x3f\xcd\x8a\x75\xa0\xb6\x94\x24\xa7\xc1\x84\x39\x15\x7a\x7c\x2d\x9b\xe4\xd2\xc0\x5e\x0e\x30\xb5\x70\x86\xcd\xfa\x34\xf7\x53\x9b\xd2\x83\xd8\x11\xb0\x44\xe7\x1b\x44\x5b\xf7\x49\x83\xc2\xb4\x4f\x88\xac\xed\x3c\x73\x0c\x1c\x1d\x12\x15\xfe\x51\xb6\x6d\xa6\xdf\xb7\x89\x6d\xef\x0c\x7d\x90\xf7\x04\x79\xef\xd2\xc1\xb2\xdb\x9c\x8e\x5f\xf8\xf6\xbb\xb2\xc2\x31\x05\xd7\x1b\x94\x40\xda\x18\x12\x0a\xf9\xdc\x04\x57\x6d\xb9\x3f\x2d\x34\xd1\x7d\x55\xde\x61\x22\x09\x1f\x49\xc1\x54\x3f\x5f\x9f\xae\xf9\x96\xba\xff\x7b\x48\x9c\xa8\xc0\xe1\xc1\xaf\xbc\x47\xdd\xa7\xe7\xa8\xa6\xd8\x35\x51\xb6\x8e\x33\xd0\x59\x76\xb6\xf8\x2e\x7a\xc9\x4c\xcb\x87\xd0\xae\x8e\x5d\xf3\x7d\xbd\xa7\xab\x1a\x3a\x5b\x69\xb2\x3c\x08\xc5\x56\x64\xda\x7f\x46\x5d\x96\x0f\xe5\x8d\x54\x8f\xca\x67\xc0\xdb\x51\xbf\x5b\x2e\xfc\xc8\xd4\x88\xc3\x03\xb6\xda\xe9\xf1\x3f\xbf\x55\x2a\xe4\xa5\xfa\xab\xfb\x16\x9e\x08\xa5\xcd\xf7\xd1\x66\x08\xdf\xe9\x2e\xd2\x29\xb0\x5a\x47\x90\x35\x81\xf3\xf3\xb6\x38\xb7\xbe\x17\x7c\xbf\x6b\xc2\xfb\x03\xd9\x69\xb0\xc1\x3f\x1f\x52\x37\xc6\xfb\x15\xd4\x26\x01\x93\x42\x60\xb6\xe0\x73\xa0\x94\x8f\x60\x6e\x2f\xd5\x19\x96\x4c\x92\x94\xc1\xdc\xec\xac\xa2\x21\x7e\x2e\x4b\x46\x79\x75\xc0\x05\x0d\x17\x1a\x39\x4c\x2f\xba\x1e\xda\x8e\x26\x2b\xae\xaf\xee\xab\xb7\x6d\x2b\x6a\x8b\xdd\xdb\x14\x8b\xb7\x79\xde\x5b\x2d\x9b\x65\x69\x86\x0c\x17\x1c\x0c\x34\xe8\x3a\x49\xa4\x9a\xef\x8b\xbe\x4f\x0d\xf3\x1b\x04\x5a\xc9\xfb\xe9\x8a\xcd\x7b\x26\xd9\x29\xa0\x24\x9c\x19\x57\xa8\xa7\xe2\xce\x30\x50\x7c\x5e\xe2\x1e\x93\xa3\x9a\x48\x47\x3e\xf0\x7f\x6c\x08\x7a\x44\x29\xac\x80\x1e\x71\x7c\x56\x5b\x57\xd2\x8b\x2f\xd6\x41\xfa\xe6\x8e\x62\x25\xed\xc1\xb4\x38\x06\x1f\xdf\xb0\x14\x47\xed\xe9\xd0\xf6\x75\x9d\x9d\x9c\xc7\xe1\xa9\x3a\xa8\x4d\x40\x78\xdc\xa4\x04\x68\x37\xca\xfb\x26\x89\x5a\x08\xd4\xb1\x38\x7f\x07\x4e\x05\x7c\xd4\xe3\x98\x75\xfd\x97\x46\xc8\xef\x1d\x6f\x3c\x17\xf2\x3e\x71\xd4\x8b\x50\xc6\xdd\x41\x90\x0a\xcc\xaa\xd2\x95\x0c\x03\x68\xef\xb3\x46\x40\xba\xdf\x90\x21\x44\xde\x01\x34\xcc\x4e\x8a\xa0\x02\x9a\x6c\x93\x8e\xe9\x38\xec\x33\x32\xbb\xda\x04\xae\x37\x3e\x27\x9c\xd9\xbc\x9f\x26\x79\xb4\xa4\xa1\x48\x55\x70\x13\xcc\x9e\xa8\xc9\xc6\xa5\x63\x12\x18\x0c\xef\xa9\x4b\x07\x58\xa6\x26\x44\x5d\x1f\xe0\x0b\x0c\xde\x12\x90\x84\x44\x3e\x38\xaa\x75\xbb\x8c\x31\x69\x54\xb5\xcd\x27\x45\x24\x55\x9d\x55\xb8\x27\x2e\xc0\x91\x67\x70\x8c\xa4\x35\xdf\xcd\x79\xd5\x47\xca\x6f\x9a\x2c\x2b\xed\x4c\x68\x22\xba\x81\xd5\x81\xc3\xfe\x0c\x55\xfa\x58\x94\x72\x39\xb2\x19\x68\x8f\xe1\xf0\x68\x0e\x53\x6f\x08\x63\xbd\x94\x0e\x3a\xdd\xe2\xb1\x90\xde\x57\xfe\x37\xc7\xb0\x2c\x1f\x43\x3c\x57\x93\x19\x43\x53\xee\x3b\x54\x13\xf9\x63\xb8\x65\x78\xa5\x93\x98\x22\x37\xaf\x2c\x74\x7c\x81\x09\xfa\x10\x28\xea\x67\x28\x9f\x61\x96\x97\x4d\x94\xe5\x3b\x48\x0f\xfa\x24\x9e\x48\xb9\xd3\xf1\xfd\x1e\x7f\xb9\x10\x24\x30\xc8\x35\x39\x86\x93\x51\x6f\x88\xa7\x47\xc0\x29\xf0\x08\x50\x00\x82\x3a\x8e\x5e\x33\xa6\x39\x8d\x57\xf2\x69\xae\xf4\x8d\x7d\x63\x8d\xe9\x32\xf9\x77\xdd\x4f\xe5\xc5\xa0\x6d\x93\x62\x8a\x4a\x58\x00\x11\xa2\x6c\x09\xcc\x2f\xe2\xc7\x67\x47\x93\x3d\x5e\xaf\x97\xe1\x98\x10\xc0\xaa\xab\x30\x96\xc6\xd4\x1b\xf2\x44\xe2\xa8\x10\xaf\xdc\x93\xff\x6f\x1b\x05\x74\xd8\xb6\x66\x68\x02\x1a\x98\x78\x86\x08\x7b\x46\xb2\x70\x81\x2b\x38\x0e\x10\xbd\x67\x15\xf7\x5e\x81\xf2\xe8\xb9\xa4\xc3\xa4\xb4\xf6\x62\x3d\x8a\xb4\xae\xe4\x20\xbd\x44\x7a\x7e\x86\x9e\x73\x35\x2d\xed\xc6\xee\x00\x86\xda\xd6\xe4\x7c\x65\xe0\x1e\xd8\xe0\x36\xa3\x23\x43\x6a\x46\x3a\xd2\xa0\xdc\xa9\x1a\x62\xe7\x02\xe1\x19\x9c\x77\x14\xb2\x43\xd7\xaa\x78\xd7\x33\xdb\x23\x2d\x04\xd2\x1a\x71\x02\xeb\x17\xab\x34\x5f\xfa\x59\x5a\xd8\x28\xc9\x59\x3c\xf2\x0c\x67\x60\xcf\x50\x1b\xd7\xf2\xe0\xcd\xa8\x16\x72\x00\xef\xb3\xb1\x7d\x9f\x5c\xb1\xc2\x26\x6d\x9b\xb4\xd6\xe1\x4e\x38\x56\xf5\x9a\x27\x8b\xbe\x37\x26\xe1\xf1\xa8\xde\xbc\xcc\x94\xce\xc5\x0e\x39\xbf\xe0\xe4\x9c\xa4\xbe\xcc\x67\x9a\xd4\xe7\x73\x0b\xae\x82\xa3\x07\x11\x27\xc2\xc7\x2f\x9e\x1f\xe1\x02\xab\x72\x0a\x48\x3a\x9b\x19\xe7\x07\xf6\xf5\x32\x94\x89\x5d\x04\x22\x5f\x0e\xfb\x7f\x5b\xe2\x1e\x17\xa6\x54\x31\x65\xf6\xfa\xa6\x85\xe6\x1e\xd8\x16\xa4\xe7\x11\x56\x7c\xc1\xc4\xe7\x17\x29\x5f\xdc\x82\x0a\x6a\xb0\x70\xf0\x24\xf4\x7a\x02\x2b\x5f\xae\x51\x91\xea\x91\xd9\x50\x18\x6d\x83\x1c\x77\xae\x45\x26\x36\x5b\xb5\xb9\xca\xdb\xba\x02\x57\xe9\x02\x61\x6b\xdc\x1e\x8e\x15\xc1\xf6\xbb\x1c\xed\x6d\xdf\x38\xd2\xcf\xd2\x4e\x19\x50\x48\xad\x85\xc0\x48\x8e\x43\xe2\x13\xf2\x2f\xd1\x44\x82\xa5\x33\x2d\xad\x05\x98\xba\x2b\xde\x3f\x2d\x32\xd3\x89\x5a\xb5\x90\x93\x7e\x20\x2b\x5b\xaf\xfd\x9f\xb5\x6d\xcf\x01\x81\x91\x0a\xbb\x47\xd5\xc0\x4b\x24\x9b\x73\x86\x86\xd1\x26\x41\xf3\xd9\xa9\xdc\x95\xdf\x00\x88\x00\x9a\x04\xb0\xed\xfe\x29\x95\xf8\xb4\x6b\x08\x9a\xd9\x38\xbd\xce\x10\xfb\xf5\xb7\x86\x01\x39\xf7\x2d\x39\xfe\xf5\x6f\x28\x3b\x50\x64\x66\xa9\x8c\x77\xcb\xbf\xf4\x11\x64\xc8\x2a\x5f\xf4\x49\x91\x56\x77\x90\x25\x72\xac\x7b\x1e\x9e\x72\x20\x1d\x3d\xf1\xb3\xde\xde\x5a\x1b\x0b\xc4\x2e\x73\x2d\x96\x88\xb5\x55\x87\x57\x6f\x26\xea\xe3\xaf\xee\x5b\x00\x3c\x4f\xd8\x89\x9c\x1f\x86\x18\x10\x75\x3b\xbd\xf6\x9e\x66\x91\xae\xd9\x98\x15\x7c\xdf\x95\xd7\x55\x69\xd0\x46\xb0\xeb\xc7\x28\x92\xc9\x92\xb4\x16\x10\x40\x1b\xbc\xaa\x37\xaa\x9c\x9f\x35\x1b\xfb\x87\xc1\xb6\xbf\x80\x2c\xa3\xde\x70\x94\x93\x2e\xa5\x9a\x16\x77\xd0\x63\x62\xd8\xbe\xe8\xe1\xed\xb1\xe9\xcc\x84\x3e\x24\x28\x9d\x7a\xf0\x40\x48\x43\xdf\x18\x12\x36\x43\xbb\xd8\x5c\x05\x29\xfc\xe8\xb2\x5d\x83\xe8\xee\x4b\xfe\x70\x0f\xdd\x58\xe8\x24\x76\x32\xd2\x5b\xb7\xe2\xec\x6c\xbd\x6b\xb2\xb6\xcd\x24\xad\xee\xdb\xb4\x4b\x8b\x81\x47\x7e\x0f\x79\x42\x14\xaa\x2f\xfb\x85\x10\x65\x4e\x45\x00\xfe\xdf\x6f\xe3\xa9\xf5\x66\x22\x4a\x9b\x3b\x54\xef\x9b\xd6\x8a\x14\xf1\x10\xdb\x21\x51\x70\x55\x1e\x54\xaf\x09\xa4\xdd\x2e\x1d\x21\x5b\x86\xf3\x21\x56\xb8\xce\x16\xe2\xba\x77\x23\x06\x49\x2b\x16\xa1\xdb\x05\x4a\xd5\x78\x60\xd8\xe4\xa9\x71\x60\x5f\x69\x11\x56\xa3\xb6\xcd\xa6\x03\xa1\xd4\x3d\x0c\x34\x86\x0c\x42\xe3\x88\xca\x66\xc4\x22\x38\x88\xec\x04\x1b\xba\xd0\xbc\xaf\xda\xac\x6b\x0d\x50\x65\x2e\x20\x96\xa9\xc2\xc9\x05\x41\x6c\xc4\x2d\xd7\x26\xda\x72\xf7\x2f\x94\x6e\x56\x14\x47\xc6\xeb\x89\x3b\x0a\x9a\x00\xec\xfe\xc5\x58\xa6\x20\x69\xc7\x4e\x46\xde\xd9\xe2\xf2\x17\xf4\x9a\x00\xa7\x71\xab\x8b\xbd\x01\x1b\x74\x92\x51\xc3\x3f\x21\x2e\x98\xd0\x75\x66\x7b\xa9\x47\x3e\xe0\x98\xf8\x0e\x65\xb3\xbe\x43\x36\xc3\x1e\x36\x2d\xc1\x45\xbe\xea\x90\x05\x2a\xe1\xaa\x37\xf4\x18\x73\xbf\x3e\xcf\x58\x3d\x2c\x15\x07\xdc\xdb\x92\xc2\x9b\x9f\x3f\x50\x7f\x75\xdf\x6e\x8e\xf4\xe4\xa1\x01\x2a\x84\x80\x34\x42\xae\x9b\xc3\x49\xc1\x53\xfc\xf6\x7b\xc3\x00\x43\xbc\x29\xe1\x32\xca\x19\x50\xab\x42\x01\xf8\xb1\x66\x60\xa8\xbc\x48\xa3\x9b\xa7\x3d\x5b\x44\x3d\x94\xff\x61\xa7\xc0\xf2\xa4\xd7\xa3\x2d\x64\xa2\x73\x87\xea\x5f\x55\x22\x0f\xdf\xf5\x1b\xb2\xc9\x32\xc6\x4a\x6d\xc8\x18\xb3\xd3\xd4\x64\x10\x7f\xf5\xcd\xaf\x4a\x8d\x4e\xd5\x47\x09\x29\xf7\x0b\xbf\xca\xdb\x6b\x26\x5b\x76\xeb\xc3\xa9\x7f\xd7\x48\x16\x7c\xeb\x32\x5f\x3c\xb0\x28\x05\x0d\x1f\xb4\x29\xfc\x9a\x39\x2e\xab\x69\xcd\x7a\x26\x6e\xa5\x71\x4f\xed\xb6\x42\xb6\x86\x94\x0d\x38\x37\xb1\x86\xcb\x8f\xf5\x6d\x91\xa5\xb1\x1d\xf4\x90\x81\x73\xc2\xac\xf8\x16\x77\x9a\x91\xba\x56\x66\xda\x11\x6a\x56\x51\x0e\x4c\x92\xe6\xfa\x1a\xc1\xe6\x9f\x0b\xdc\x87\x69\x12\xe5\x85\x2e\x4c\x24\x42\xd4\x1e\xe8\x8d\x4f\xeb\x64\xb6\xc8\x4c\x94\x78\x43\x53\x85\x9a\x7e\x86\x56\xb1\xcd\x5a\x51\xae\x9a\xe2\x48\x50\xdc\x42\x08\x85\xb3\x1a\x25\x2c\xa7\x0e\x1d\xc2\xf7\xfe\x20\x13\x9d\xa0\x69\xaa\x3d\x69\xe5\x45\x1b\x38\x64\x7a\x60\xb9\xa1\xc5\xe1\x1a\x06\xfe\x5c\x55\x9f\x44\x5e\x64\x69\xbf\xbb\x9e\x47\xad\x48\x45\x54\xb9\x35\xd0\xd5\x7d\x5d\xf6\x21\x1b\xb4\xad\x58\x2f\x57\x8c\x08\x21\x23\x28\xbf\x55\x1d\x9d\x13\x47\xa1\xc1\xd5\xf4\x4c\xae\xad\xa5\xee\xec\xfe\x88\xd3\x9e\x0a\x85\x77\x93\x36\x99\xfb\x79\xbd\x34\xd0\x4b\xe8\x3e\x82\xf1\x3e\x42\x86\xfc\xc8\x18\x75\xe3\x72\xab\x85\x05\xe8\x24\x22\x65\xc0\x9c\x66\xe9\xf3\x14\xce\xf7\x7a\x69\xb2\x26\x78\xa5\x1a\x15\xcd\x59\x28\x80\x91\x4d\x79\x81\x3f\x0d\xa0\xf4\x8b\x4c\x07\x31\x29\x81\x55\xee\x08\x81\x80\xcb\x63\xc3\x22\x6a\x37\xa8\xde\x34\x5d\x15\x47\x55\xdf\xdc\xd6\xf1\x54\xda\x81\x88\xeb\x02\x75\x91\x75\xca\x03\x20\x49\xb3\x1c\xad\x4a\x88\x86\x6f\x23\xd9\xa4\x37\x74\x58\xb7\xb3\x28\x8e\x59\x5a\x08\xe5\x02\xcf\x76\xb7\x40\x79\xe3\x40\xbe\x76\xbe\x11\x0a\xfb\xae\x8d\x08\x0f\xa7\xca\x30\xd8\xd7\x4e\x26\xe6\x39\x62\xcd\x2a\x32\xb3\x6a\x13\xe1\x80\xe3\x32\x69\x68\x5d\xd8\xf0\x5e\x6b\x57\x03\xd7\x50\x48\x97\x67\x73\x45\xf5\x50\x94\xc8\xb2\x75\xc4\x1e\xc8\xd1\xec\x41\x1d\x1d\x06\xf0\x1e\xa5\x4e\x8e\x11\xd7\xea\xed\x21\x01\xec\x2b\x15\x55\xa1\x50\x36\x2d\xde\x07\x22\xca\xe3\x62\x0c\xf1\x23\xff\x10\x81\x91\xde\x34\x02\x84\xef\x38\xab\xa1\xae\x2d\x0f\xd0\x2d\xa1\x1c\xa0\x9c\x6a\x39\x49\xe2\xd5\xc2\xdc\x6a\xa2\xa4\x50\x6f\xcd\xa5\x12\xc3\x99\xcb\x02\x3b\xbd\xa8\xdd\x8e\x6d\xaf\x74\x79\x3c\xf4\x65\xa3\xc1\x6d\x48\xd4\x7a\x64\xe3\xc8\x2e\x23\xfb\x09\xd3\x7f\x9b\x33\x65\x48\x57\xe0\x34\xb9\x03\x83\xe1\x72\x26\xe1\xe9\xa2\xe4\xcd\x41\x22\x44\xca\x53\x01\x78\x83\xa8\x0e\x49\x3d\x78\x8c\xda\x18\x34\xd1\x05\xb2\xb0\x50\x5f\x1a\xac\x2b\xd4\x42\x59\xa7\x99\x98\xfd\xd2\x18\xee\x33\xd4\x93\x8b\x4c\x34\xd3\xd6\x73\xd6\xe7\x3b\xce\xcd\xb0\xc7\x1b\xa1\xc7\x32\x2a\x0a\xf4\x14\xaa\xda\xb9\x9c\xba\x30\x3c\xdb\x9b\xd4\xa5\x5f\xc6\xbd\x8b\x9b\x92\xb0\xda\xac\x8d\x9e\xe7\xa8\x23\xc9\x8d\xbc\x65\xbe\x93\x60\xfe\x24\x62\xa1\x6b\x46\xa1\x91\x70\xa5\x1d\x4e\x32\xb4\x63\xfe\xaf\xe8\x2d\xc1\x28\xe9\x4e\xc0\x32\xf9\x66\x95\x84\x44\x2b\x1e\xc8\x32\x97\xe5\xe4\xdb\xc8\x7c\x3b\x56\xe9\x92\xfc\xc7\xc4\xfc\xe2\xf8\x7d\x49\xa7\xf4\x1e\x8b\x91\xde\xf3\xdb\xc7\xb4\xb3\x34\xc2\x59\xe6\xe5\xc5\xa8\x65\x6b\x2f\xf5\xbc\x14\xad\xee\x74\xc8\x09\x69\x82\x5f\x6f\xa8\x43\xf7\xb4\x94\x49\x1d\xfe\xce\x07\x3d\x59\x9a\xf6\x6b\x01\x40\x05\xe6\x53\xbd\x6e\x84\x83\xb0\x95\x76\x92\xe8\xeb\x56\x18\x90\xe6\x7c\xcb\x97\xfc\x94\xac\x83\xbf\xff\x5c\x33\x54\x32\xf6\x40\xec\xc6\xeb\x94\xf8\xde\x9a\xcd\x61\xe8\xcc\x39\x13\x02\xdc\x41\x1c\x97\x51\xc3\x81\x45\xc7\x18\x8b\xed\x09\x97\xb7\x06\x7c\x9c\xb2\xd4\x8f\xf6\x10\xec\x57\xc2\x70\xf8\x60\xaa\xab\x07\x34\x0b\x62\x16\xcc\x21\x9c\x6e\x4c\xee\x2d\xd6\x38\x3b\x52\xd5\xd2\x8e\x2a\x16\x9c\xa3\xb9\xa0\x8c\x16\xa4\x00\xce\x4e\xc4\x23\xe5\x59\x90\xb7\x06\x45\x11\xdb\x76\x6d\x8b\x18\x83\x07\x68\x51\x0f\xb9\x89\xa6\x89\xf3\x48\x2b\x7a\x04\x8b\x70\xad\xd2\x33\xd2\xf4\xec\xd8\x48\x2a\x9a\xb3\x0a\xeb\xc8\xd7\x51\xf6\x3c\x4d\xc8\xd4\xd3\x43\xa6\xf3\x8e\x63\x61\x0f\xf3\x13\x7b\x5e\x4c\xa1\xd3\xac\x0c\xa6\x49\x3d\x76\xa3\x51\xb0\x93\x39\x2f\x07\xd0\xa3\xea\x17\x16\x3c\xa0\x27\x78\x30\x9d\x41\x14\x97\xa1\x36\xf6\x3a\xea\x54\xc0\x2c\xeb\x35\x3d\x4e\xd4\xeb\xa7\x59\x91\xef\xd8\xca\x0c\xae\xfd\x7d\x4c\xdc\x7c\x1b\x7b\x03\x7e\xe9\x26\xab\x31\xcd\xc0\x28\xa0\xbf\xe3\x77\x2a\xa1\xb7\x5d\x6b\x32\x27\xdc\xe1\x60\x9e\x4c\xd1\xa4\x74\x62\x2e\x90\xa8\xea\x51\x8d\x92\xc4\xe5\x1c\xe0\x8e\xa8\x3a\x92\xde\x8c\x3c\xea\x6e\x3d\x69\x75\xe1\xab\x7a\xc3\x51\xbe\x85\xde\x4c\x84\x7a\x2e\xaf\xb7\x26\xb4\xd5\x2c\xa3\x30\x46\xdd\x77\x64\xa2\x83\xea\xd0\x2b\xf5\x22\x8b\x7a\xb5\xd0\x3f\x83\x56\x72\xbd\xa6\x2e\xe6\x28\x69\xa5\x3d\x9b\x4f\x31\x76\x4c\x26\xc7\xc3\xea\xfd\x6e\x3d\x3e\xf1\xee\x5f\xa9\xaf\x46\x59\x27\x4a\xe0\xf5\x3a\x05\xca\x5a\x50\xa3\x9c\x20\x91\x93\xe0\x35\x1f\x2c\xe5\x51\x3b\x32\x10\xdf\x0d\x64\x36\x0f\x08\x26\xfe\x80\x52\xf1\x6b\x56\xe4\x18\x7d\x7f\x23\xd8\xd4\x5d\xca\x3e\x2c\xcb\x25\x93\x95\x91\x94\xeb\xc9\x66\x42\x25\x87\xf3\x7a\x96\x05\x4d\xfb\x69\x62\x93\x22\x9f\x09\x4c\xab\x67\x50\x5a\x45\x8a\xf4\x1f\xcb\x27\x71\xfd\xbb\xa4\x84\xfe\xbb\x92\x4a\x73\x10\xc9\x20\xc5\x9b\xb4\xc7\x8e\x4e\xed\x2c\x18\x43\x6a\x61\x1d\x3e\xf4\xa1\x6f\x5b\xc4\x4d\x0b\x92\x46\xbc\xdd\x08\x96\xef\xf6\x18\x51\x6e\xc7\xc4\x3b\x49\x51\xf7\x02\x11\x5c\x5c\x11\x93\xad\x88\x2b\x79\x6a\x65\x2d\xc2\x23\xa0\x5a\xb0\xbb\x49\xa5\x9c\x73\x1a\x24\xe1\xef\x76\x8c\x7c\xd5\xa2\x3f\xc8\x7c\x4e\x00\xbe\xd5\x3f\xa2\x36\xe4\x7f\x44\x3c\xf4\xa6\xd5\x4a\x07\x49\xf9\xf8\x52\xac\x71\xf9\xbe\x6b\xc4\x8e\x59\x48\x20\x83\xb8\xea\xb4\x98\x77\xc5\x5c\x4b\x32\x55\xff\x3f\xb6\x00\xb2\x67\xa7\x7d\xb2\x47\xb2\x71\x7b\x82\x4c\x0b\x4e\x07\x98\xed\xc7\x9b\x21\xdc\x05\x5f\x00\x9c\xe9\x6b\x30\x8b\xc0\xe1\x3d\x87\x82\xa8\x32\x37\x63\x20\x10\x25\x6d\x70\x5b\x24\x86\x11\x60\x2b\xd5\x17\x23\x71\xdb\x10\xbe\x39\x37\xdd\x51\x62\xb4\x67\x82\xc7\x70\x9f\x72\x1c\x07\x9e\x97\x87\x23\xb0\xca\x9c\x3e\xe9\x53\x23\xe2\xda\xfb\xac\x2a\x2b\xb6\xd6\x8d\x0a\x0b\x24\xaf\x03\x5b\x93\xfb\xac\x46\xce\x55\x47\x02\x43\x7f\x9a\xe1\x48\xf1\x19\x65\x3d\x52\x9c\x30\x40\x08\xfb\x0b\x13\x29\xfd\x1d\x96\xfb\x79\x82\x84\x9f\xaf\xca\x42\xa6\x83\x62\x39\x72\x2a\x56\xf0\xa2\x21\xcb\xac\xd7\x8d\xad\xd1\x8b\xa2\xbd\x30\xd0\x3f\x1f\x06\x9b\x73\x8e\xcb\x39\xd7\x69\x1f\xf6\x07\x49\x94\x77\x01\x8f\xf3\x75\x79\xb5\x8b\x7a\x53\x05\x9c\x1c\xf4\x3b\x99\x69\x23\x65\x82\xcd\x7d\xa3\x11\x36\xfa\x8d\xb1\x9d\x93\x47\xc5\xee\x72\xc1\x79\xfa\x03\xcf\xc1\x7d\x82\x11\x25\xca\x41\x8a\x65\x7c\x7a\x48\x3d\xb1\xbf\x2d\x2f\xa2\x3a\x42\x43\x3e\xda\x08\x2d\x7d\x49\x16\xbb\xab\xaa\x79\xda\x2c\x81\xb5\x0b\x81\x9c\xba\x26\x4e\xbd\x15\xb9\x4e\xae\x60\xea\xbc\xc1\x77\x7b\x8e\xfb\x20\x40\x87\x0c\x6f\xea\xbb\x2c\x8b\x69\xcd\xa0\x58\xdf\x41\xf8\x9e\x2b\xb2\xb5\xe0\xd5\x3d\x40\xf4\x88\x2f\x7f\x9b\x08\xf5\x41\x7f\x8b\x07\xb8\x8c\x17\x75\x18\xd5\x31\x2e\x5a\xa5\x78\xf7\x3e\xf2\xfc\xfc\x44\x5b\xec\x72\x54\x4e\x9f\xd4\x49\xf1\xdd\x33\xa3\xc0\x0f\xb2\xc1\xac\x69\x9f\x89\x65\x83\x05\xbc\x45\x1c\xe4\x51\xaf\x1f\x47\x2a\x23\x0a\x58\xb6\x76\x9f\xe8\x4d\x05\xfc\x66\x71\x5c\xca\x88\x74\xe5\x17\xdd\xcd\x04\xc0\x75\x76\xb6\xde\x8a\x4c\x8d\x1a\x5e\xf0\xf7\xae\xfb\x65\x8f\xfe\x7d\xfd\xc0\xbe\x83\x7b\x89\x4c\xec\x2c\xd2\xee\x18\xd1\x99\x51\x00\xc5\xee\x1a\x91\xb8\x98\x12\x14\x68\xff\x1e\x7c\x4c\xd7\x9c\x11\x42\xff\xa3\x44\xa0\x33\xdd\x64\x85\xbd\xd0\x90\x78\x11\xee\x06\x10\x23\x2a\xb6\x84\xbf\xfa\xfd\x46\x68\x4f\x7a\x57\xa6\x39\xc8\xd0\x84\xc5\xbe\x64\x62\x99\x0d\x64\xe5\x7f\x46\x83\xbe\xb3\x49\x30\xe5\x3b\x43\xe2\x9c\xbe\x4b\x4a\x72\xeb\x36\xd9\x11\x4a\x5a\x1b\xc3\x50\xf6\x52\x98\xb3\xd6\x0f\x1b\xe1\x98\xf9\x06\x55\xc3\x8f\x0d\x43\xdb\xd7\xc6\x84\x43\xf3\xea\xbe\xc5\xfa\x92\x4d\xec\x72\xe4\x0f\x19\x8c\xd2\xf9\x21\xb5\x17\x9f\x6f\x3c\x4b\x9d\x5c\x69\xde\xb7\x99\xa4\x12\xe6\xe7\x0f\x7a\x76\x6a\x49\x7b\xe8\xcd\x24\x72\x7f\xae\x9e\xa7\xab\x91\xf5\xda\x53\x30\xba\xf7\x31\x2f\x7a\x43\x19\x39\xa1\xa5\x8e\xf2\x56\x3a\x43\xa8\x1e\x74\x6a\x3a\x69\xd7\x31\xd3\x10\x56\x3b\xb0\x91\x2e\x23\xfe\x38\xcd\xc3\x5f\x78\xba\xfc\x38\x6a\x18\xdb\x46\x0c\x83\xd0\xd6\x27\x37\x76\xf2\xe2\x98\xe1\xbb\xa8\x82\x60\x09\x6f\x13\xd6\x77\xef\x93\x95\x3e\x2d\x8e\xa9\xbb\xc3\xa0\x36\xb0\x41\xcf\xb2\x13\x16\x03\x35\xd4\x23\x32\x0f\x48\x56\xbc\x8f\x58\x15\xee\x31\x58\x63\x00\x1a\xfa\x43\xe9\x48\x82\x97\xaa\x9e\x32\x70\xcc\xbf\x47\x98\x9d\x6b\xbc\x9a\x27\x21\x8d\x02\xea\x6b\xd9\x68\x55\x9b\x77\x1c\x7e\x56\xbe\xcd\x9f\xbe\x0c\xa0\xdd\x82\xac\x9d\xf3\xea\x0a\x15\x80\x2f\xb3\x34\xc8\x81\xd4\x39\xe8\x57\xbb\x7c\x19\x1c\x9f\x93\xf2\xfa\x38\x8c\xee\x56\x34\x6c\x2e\x96\x41\x4d\x94\x98\x71\xef\xfc\x03\xd6\xd1\xfd\x80\x8a\x06\xb3\xbf\xfe\x1b\x38\x1e\xbd\xfb\x12\x7a\xe3\x27\xda\x7d\x5e\x93\x02\x53\x56\x24\x36\xcb\xbb\x51\x5f\xf3\x76\x6e\xe5\x53\x63\xe2\x46\x10\x40\x31\x71\x94\x74\x6c\xa6\x10\x6f\x6f\x3a\xca\x49\x87\x83\xa5\x3c\xc0\x70\xf1\xae\x05\x30\x89\xed\x45\x89\xc9\x6a\xdc\x0e\x1e\xf2\xb5\x93\x1c\xc1\xb3\xb3\xf5\x9e\x2d\xba\x69\x3b\x8d\xd3\x0e\xea\x25\x0e\xbc\x11\xdc\x96\xf3\xde\xd9\x5a\xeb\x5a\x1b\x13\x35\x2c\x98\xd4\x1d\x02\xc8\x05\xf7\x51\xe2\x10\x4c\x33\xa1\x54\x03\xee\x26\x04\x47\x33\x80\x06\x22\x1c\x47\x7f\x85\x13\x82\x92\xd5\xe0\x3a\x68\xc2\xe1\x1f\xdb\x8e\xe4\xe2\xa3\x16\x8c\x81\x0f\xcb\xbd\x44\xfb\x85\x31\x26\xfb\x5e\xd4\xde\x45\x92\x8f\xdc\x20\xfb\x71\x63\x2b\x5b\x0f\x96\xc5\xf6\x51\x78\xaf\x07\x48\x90\x3a\x49\x31\xf9\x49\xc7\x79\x49\xe9\xdf\x49\x4a\xc1\xd9\xd9\x7a\x36\xc8\x4c\x3c\x55\x63\x0d\x41\x5f\xd8\x39\x3b\xae\x3d\x17\x62\xd8\x7e\x16\x25\x05\xea\xa4\x8b\x3a\x60\x97\x1b\xa1\x82\x89\x1a\x9a\x33\x04\xd4\x46\xb5\x12\x15\x45\x94\x77\x75\xd5\xe2\x7b\x8f\xf3\x8f\x1c\xa7\xc2\x65\x3e\xc8\xfa\x59\x94\xeb\x11\xea\xce\x3f\x3e\x18\x43\x28\xd5\x4d\xd3\x36\x82\x3d\xc7\x3c\x25\x8b\x0f\xdb\xf1\x16\x95\x91\x4e\x10\x2b\x2f\xf4\x4f\x6b\x01\xba\xff\x9e\xf8\x0f\x7a\x4d\x85\xac\xcc\x26\xe9\x9a\x00\x6a\xca\x61\x76\xa0\x58\x31\xd5\x7a\x43\x9b\x2d\xed\xe4\x42\xf7\x83\x40\xf3\xd9\x51\x38\x37\xd4\xed\x95\x1d\xf1\xf2\x97\x55\x6f\x80\x44\x76\x16\x43\xcb\xda\x7e\x87\x85\x52\x8c\x98\x23\x3e\x24\x1d\x24\x65\xc7\x77\xf4\x88\xd4\xf7\x57\xda\x16\x6d\x8a\x76\x26\x9f\x38\x5b\xa1\x17\xad\x92\x8a\xa4\x46\x78\x82\x0a\x92\x71\xd4\x2b\x4f\xb2\x9d\x78\x44\x44\x14\xef\x52\x00\x74\x77\x0c\x19\x20\xeb\x0d\x27\xee\x7b\xc3\x00\x8a\xf9\x8c\x89\xe6\xde\x65\xf5\x8a\xdb\x15\x8c\x58\x07\xeb\xb9\xb5\x3d\x64\xc2\x91\x8b\xdd\x89\xc4\x17\xf2\xbe\x17\x29\x1e\x52\xb0\x98\x17\x31\xf4\xa1\xe9\x1f\x56\x44\xf2\xcb\x51\xde\x52\xd7\x01\x3b\xef\x1e\x75\x72\xe9\xda\x53\x07\x54\x5e\x0a\xbe\xf9\x54\x33\x64\x72\x85\x98\xb8\x67\x93\x62\x67\x6d\xbf\x6a\x7e\xbf\xae\x38\x22\xa5\xf8\xc1\x1c\x80\x8b\x05\xcf\xae\xe7\xbe\x6f\x76\x09\x3d\x98\x67\xa5\x22\xb6\x79\x39\x64\x3a\x8b\xc2\x51\x81\xc1\x33\x83\xc0\x91\x5e\x4f\x00\x7e\x5e\xdd\xf7\x52\x5d\xa8\x43\x99\xba\x03\xf9\x73\x07\x56\xaf\xea\xa8\x1f\x64\x1d\xab\xd9\x32\x6a\x8b\xf1\x3d\x32\x8d\x20\xf7\xd0\x12\x8e\x9e\xa9\x2d\x3d\x94\x07\xf6\xe9\x32\xb9\x4d\x29\xe5\xc9\x14\xa2\x70\x09\x08\x8f\x1d\x82\x2b\x0c\xd7\xe2\xe6\x24\xe5\xdd\xc2\x42\x7d\x29\x13\xce\x7d\x77\x88\xb9\xba\x94\x0c\x69\x10\xe6\x77\xcb\x5a\x90\x06\xc2\xfb\x11\x0c\xd4\x9d\xc6\xb8\xa6\xef\xfc\x7c\x68\xe1\x58\x08\x5a\xdf\xb2\x44\x14\x99\x0a\x8f\xc7\xc3\x54\xcb\x59\x72\xda\xe9\x92\x23\xa1\x7f\xf1\xaa\xea\xb4\xbb\x0f\x9a\xde\x74\xed\x65\x57\x7a\x39\x4f\x49\x89\x4b\xd4\xd5\xa2\xa1\x38\x72\x0b\x33\x84\x52\x2c\x03\x6c\xf9\x27\x07\x02\x00\x16\x0b\x4b\xe3\x87\xd8\x30\xca\x12\x0d\x79\x1a\xfd\x17\xaa\xa5\x1c\x27\xe2\xa9\xd8\x28\xb5\x1f\x18\xf8\xb0\x00\xc6\x5a\x17\xae\x4f\x32\x6e\x1d\xd8\x07\xf2\x8a\xa9\x80\xb0\x7d\x40\x12\xce\x9a\x84\x75\xb4\x04\x5b\x53\x70\x2f\xcf\xd5\x57\x84\xc4\xe8\xd5\x7d\xde\x26\x13\xf1\xc0\x25\xa6\xfc\xcb\xd2\xb5\x5a\xa0\xfc\x47\x7e\x56\xaf\x99\x21\x2d\x8b\x7a\x76\x0f\x91\x28\x5e\x14\x34\xf5\xd8\x11\x84\xed\x0a\xb6\x5a\x4a\x1c\xbb\xd4\xd5\xe7\x28\x33\x2b\x81\x55\x23\x80\xb4\x7f\x2c\x9b\x1d\x51\xed\xbf\x21\x28\xc3\xf5\x06\xa5\x9c\x54\x3b\x55\x7f\x9c\x9d\xf4\xc1\x52\x5c\x8e\x6e\x96\x13\x67\xd3\x2f\x58\x08\xe0\x17\xe3\x82\x34\x83\xce\xce\xe0\x05\x4a\x15\xc0\x55\x42\xa6\x9b\x24\xcd\xcd\xcb\x66\xa6\x49\x32\xdd\x4a\x8d\xe1\x49\x02\x7c\xab\xf9\x45\x82\x5c\xd9\x36\xa8\x31\x90\x09\x3e\x8a\xc7\xd1\x9b\x09\x5f\x71\xff\x42\xbd\xc8\x06\xcb\xcb\x66\x50\x90\x90\xb6\xa2\x0f\xf5\x66\x2b\x6e\xe4\xc0\xbe\x32\xa0\x79\x46\x96\x01\x0e\xf4\xff\x5d\x7a\x2b\x1c\x3c\xbf\x34\x06\xf0\x15\x94\x8b\xca\x55\x40\xca\x31\xdd\x3c\x83\x85\xab\xfc\x54\x80\x3c\xa9\xb8\x9c\x4c\x06\xc6\x5c\xe1\xd4\x58\x7e\xd7\x44\x91\xd8\x13\x7d\xf9\x55\x72\x0d\xfb\x53\x46\xfa\x6f\xbe\x20\xb9\x02\x47\x55\x4a\xa7\xa2\xf2\x42\xc0\xba\xbf\x8b\x6c\x12\x7c\xe0\xeb\xa5\xaf\xb6\xf9\x31\x36\x36\xb2\x4d\x77\x03\x35\xb5\x6d\xdb\xcc\xc4\x3b\x42\xda\x63\x53\xc2\x55\xd7\x41\x11\x42\xda\x11\x69\x5c\xff\x64\x48\x39\x23\x45\x03\x23\x00\x78\x7c\x82\x91\xf6\xd5\x7d\x73\xf5\xa5\x48\xe3\x41\xd8\xa5\x6d\x82\x28\xd0\xeb\x11\xb1\xcb\xb6\xd3\x3e\xf8\xe3\x42\xad\x67\x83\xe4\x62\xaa\x42\xce\x97\x5c\x1f\x9c\x72\xda\xe1\x05\xdf\xa3\x6a\xf4\x7b\xbe\xcc\x35\xc8\x9c\x4e\x20\x8e\x50\xd0\x36\xea\xf5\x44\xfb\x06\x98\xac\xb3\xd2\x37\x77\x52\xaa\xdc\x7d\x89\x15\x7d\x9d\x6a\xb6\xd7\x19\x16\x7d\xbe\x42\x45\xbc\x0c\x58\x9c\xf0\x83\xb3\xf3\xe5\xa0\x3a\x33\xff\x4b\x8f\xa8\x10\x44\x49\x5e\x98\x38\x36\x1e\x48\x05\x90\xdf\x3b\xd8\x27\x7a\xc3\x35\xeb\x41\x3b\x4a\x01\xdf\xc3\x3c\x02\x15\x87\xc5\x78\x83\x9a\x5e\x7e\x30\x96\x5c\x58\xb7\xc5\x93\xf2\x21\xec\x88\xfb\xb2\xdc\x11\x84\x48\xb2\x69\x6e\x73\x7a\x44\x4c\x8d\x4f\x4b\x70\xe0\x84\x63\x49\x11\xea\xae\x6c\x59\xc7\x11\x12\xc8\x3f\x20\x38\x87\x10\x52\xc9\x9c\x3c\xe6\xbb\x34\x5c\x9a\x22\x81\xd3\x8a\xac\xc4\xd5\x06\x57\xbd\x09\x84\x78\x13\x31\xb3\xfe\x15\x63\xb2\xb3\xb4\xf7\x25\xf9\x6e\xac\x4e\x30\xf2\x21\x6c\x3e\x43\x0c\x40\xc7\x64\xb7\xc1\xfa\xdc\xc1\x4f\xc2\x09\xbd\xd2\xc0\x69\x84\xb3\xe9\xb6\x0c\x02\x72\x80\xdb\x21\x7b\x05\xb4\xdb\x85\x61\x19\x5d\x3b\x7e\x40\x2c\x0f\xd7\xd3\xba\xfd\xcb\xba\x4f\x3e\x1f\x8a\x15\xd0\xaf\x12\x93\xe1\x01\x81\x9e\x8a\xf8\x34\xe9\x95\x5f\x82\xa5\xc0\x4c\xbd\x2b\xdd\x86\x48\x09\xdf\xe6\x1c\xc5\x4c\x93\x12\xa8\x4a\x31\xe7\xb0\xc3\x32\x5e\xae\x81\x92\xa5\x36\xb0\xff\x3d\x87\xd2\x6f\xfc\x9a\xa2\x28\x8e\x8c\xad\x81\x6e\xbc\xbe\x27\xe4\xe2\x4f\x8e\x91\x88\x29\x1a\xc9\x65\x9e\x43\xf8\xfc\x19\x97\xeb\x6e\xca\x80\xfb\x6e\xa9\xf2\x71\xbc\x7a\xeb\x81\x7d\x5e\x00\x94\x32\xc9\x9b\x08\xcf\x90\xf3\xb8\xcc\xfd\x8c\xa5\xd3\x80\x69\x7d\xd3\x16\x8a\xdd\x54\xe4\x24\xbe\xd9\xc1\x28\x83\x83\xb4\x9c\xd9\xbc\x9b\x08\x95\x44\x68\x9d\xbb\xcb\xba\xe2\x77\xc7\x40\x1b\xda\xbe\xbd\x4e\xb2\xe9\x00\x3b\xeb\xf5\x23\xe1\xf8\x26\x8e\x0b\x1b\x4f\x95\x03\x89\x1a\xaa\xda\x41\x98\xaa\xfb\x0d\x66\x35\xda\xea\x7d\x08\xa3\x6b\x1e\xb5\xad\xb4\x42\xc3\x8b\xbe\x43\xb4\x35\x68\xef\x70\xdc\x7c\xce\x2b\xed\x99\x28\x29\x4c\x94\xa0\x7b\x06\x1b\x53\xc5\xbc\xf0\xb0\x27\xa8\x8c\x02\xd6\x03\xca\xaa\x38\x4a\xc2\x2f\x64\xe7\x6c\x5e\xf6\xd0\x2f\x1b\x69\x17\x03\xb0\xd9\xc7\x18\xa8\x7d\x8c\x04\x66\xda\x26\x99\x0a\x6c\x99\x7f\xe3\x81\xec\x6c\xd7\x0d\x3a\xd6\x5c\xe8\x33\x22\x36\x5b\x35\x89\xab\x30\xf8\xd8\x35\xc4\xb1\xcc\x2a\x9d\x26\x26\x6e\xe7\x6a\xe0\x54\x2d\x4f\xfe\xd6\x29\xe7\x55\x30\x78\x14\xf6\x70\x11\xc5\x00\xae\xe1\xcf\x00\x8d\x85\xc7\x8a\x11\xc5\x59\xf9\x23\x52\xa8\xbe\x38\x61\xea\xcb\x33\x6a\x90\xc4\xd1\x8a\xd5\x1e\x33\x24\x68\xc1\x29\xa3\xd7\xc4\x05\xbc\x9c\x66\x3d\xd7\x61\x86\x1c\xe0\xf7\xc7\x8a\xca\x17\xca\xb1\xdf\x3c\x43\x16\x79\x2d\xcd\xe2\xf6\x13\xa1\x60\xa2\x4c\x30\x78\x36\xd5\xbd\xc2\xbf\x6c\x13\x86\x7e\x1c\xa6\xd7\x87\x24\x92\xfe\x70\x58\xd1\x94\xa8\xf3\x0e\xe3\x80\x47\x01\x3c\xdb\xd7\xcf\xf6\xbb\x4d\xfa\xaf\xb0\x63\x1c\x73\x43\x80\x9e\xdf\x01\x05\x08\x7e\xfe\xde\x44\x88\x32\x3b\x5b\xef\xc4\x26\x4f\x52\x45\x11\xaa\xac\x8c\x90\xdb\x3b\x89\x99\xad\x47\xdd\xfc\x7c\xbd\x48\x0b\x15\x29\x45\x94\x04\xcc\xab\x5e\x8f\x02\x99\x45\xde\x4a\x91\x0d\x09\xdd\xb5\x6f\x0f\x29\x6c\x79\xbb\x11\x52\x15\xa6\xd5\x2a\x37\x76\xa8\x54\xbc\x43\xd2\x82\xef\x10\x46\xad\x9f\xe6\x79\xb4\x14\xc5\x51\x31\xde\x20\x3c\xa4\x06\x61\x6a\x5b\xea\x9b\x3c\xb7\xb9\x74\xf9\xfb\x1a\x5b\xf9\x29\x6f\xe9\xfc\x8a\xbd\x41\x99\x97\x1b\x7e\x07\x75\x4c\xbe\x54\x1b\xdb\x35\xa1\xef\xe1\x18\xa5\x5a\x96\xd2\xac\xad\x68\x38\x37\xf3\x61\x85\x5e\x22\xe7\xf6\xe0\xfe\x43\x1a\x7a\x7a\xde\x15\x5a\xd5\x44\x00\x3f\x49\xc9\x7d\x60\x1f\x78\x69\x84\xe7\x19\x6e\xf3\xef\x93\xa9\x3e\x41\xb2\x28\xbf\xf0\x96\xc5\x9a\x2c\x06\x15\x8e\xcf\x58\x5d\x01\x15\x0e\xb6\xf4\x43\x64\xe4\xb5\x6d\x84\xa0\x69\x42\x45\x82\x94\x13\x4c\xf1\x1f\x50\xf5\xfe\x18\x9e\xd4\x31\xdc\x87\x90\x28\x5f\x33\x7d\x56\x52\x84\x32\xba\x3f\x64\x83\x14\xd6\x05\x6c\x13\xbd\xa9\xea\xd7\x6a\x45\xab\x51\xec\x3a\x07\xf4\x40\x6c\x84\x0c\xc6\x29\x7a\xd6\x65\xd3\x4b\x07\xf9\x0e\x59\xec\x28\x16\x1e\xa5\x6c\xdd\xdf\xc7\xf6\x70\xba\xc0\x74\xd2\x63\xce\x71\x0c\x2b\x1d\xa7\xc2\xd0\x1a\x7b\xc9\xed\x30\x49\xab\x46\x14\x26\x3f\xa7\x3c\xca\xcf\x27\xaa\x5c\xf3\xf3\xf5\x76\xba\x96\x84\x2a\xa7\xca\xd9\x50\x6f\xd4\x87\x95\x69\x05\x91\x56\x71\x39\x47\x8c\xd8\x71\xe2\xd4\x01\x0d\x85\x93\x21\xac\x42\xb3\xb4\xd2\x38\x82\x3d\x46\xc5\x00\x99\x0c\xbd\xae\xae\xc5\x16\xb6\xd7\x4f\xc7\xd4\xe8\xb9\x1a\xfd\xa8\xf3\x31\xca\x56\x7d\x07\x3d\xa2\xd8\xff\x8d\x68\x7a\x95\x01\x4f\xab\x97\x15\x55\xc0\x83\xd2\x05\x11\xa7\xe9\x8a\x8c\xea\xe6\x3b\xf0\x40\xdf\xf1\x09\xeb\x6e\x94\x17\x69\x16\x19\x0f\xce\x71\xd9\x18\xa2\x50\x3a\x42\x39\x0b\x7b\x78\x9d\x80\x74\x1b\x63\xcc\x96\x15\xc5\xf1\x25\x93\xac\xf8\xe7\x47\x04\x74\x99\xb4\xfe\x90\x4d\xc5\xc2\xfc\x1c\x8c\x16\xae\x1e\x6d\x6b\xa5\x69\x44\xf5\xea\x76\x23\x90\x7d\xde\xa6\xd4\xe2\x92\x89\xe3\x34\x4d\xf4\xc9\x9d\x66\x2e\xb1\xd0\xbc\xdf\xd8\xf2\x9e\x2d\x13\x63\xd2\x11\x72\x23\xcd\x83\x33\xef\x26\x35\x8c\x7d\x52\xc5\x0d\x65\x5a\x6f\x0d\xa2\xcc\xb6\xa7\xc5\x05\x24\x4d\x4e\xd7\xde\x7d\x9d\xaa\xbf\xda\x78\x8e\xe2\xd2\xb9\x09\xd3\xfe\x95\x7a\x37\x6a\xb7\x6d\x32\xc5\xcd\x22\xf2\x55\x0e\xa6\x1c\x92\x28\x6c\xfb\xb2\x74\xa0\xf0\xe7\x45\x6e\xf5\x9a\xf3\xad\x5e\x55\xf9\xba\xb5\x34\x5b\xd1\xd2\x8b\xc3\xc5\x50\x67\xd6\x85\x46\xa0\xab\x32\x4b\x79\x1a\x0f\x0a\x1b\xaf\x0b\xe0\x07\xaf\xb2\x29\xbb\xc1\x71\xf2\x95\x0f\xec\xda\x40\xcb\x67\xd4\x23\xb2\x41\xb5\x5d\xd6\xf8\x7c\xd3\xb4\xd2\x25\xb7\xb6\x88\x9b\x7e\xd1\xdd\x6c\x4d\x18\xec\x5f\xa8\xbf\x36\x77\x68\x47\xf9\x93\x8c\x3e\xc1\x66\xfc\x71\x83\x86\xfb\x03\x19\x6e\x8d\x04\x60\x77\x50\xf3\xf8\x94\x3b\x50\x3e\x05\xbd\xa2\x3c\x4c\x1a\xc5\x4f\xd7\x3c\x5d\x87\x3a\x7d\x8e\x5e\xa9\xf4\x7e\x90\x36\xb8\x2e\xcb\x0d\xa7\xb2\xc6\x05\x18\x89\x69\xe4\x57\x50\x18\xbc\xcd\xa2\xd1\x37\xa8\xc5\xbc\xd6\x24\xc6\xfa\x13\x2c\x0f\x74\x6e\x2c\x10\x38\x85\xe0\x4b\xbf\x0d\xb9\x79\x38\x82\xdf\xa0\xb4\xc8\x55\x6a\x88\x3e\x39\x1c\x23\xd6\x2d\x17\x81\x36\x0a\x31\xb9\x62\xa4\xda\x18\x8e\xe9\xae\xfc\x2e\xd8\xe0\x7b\x2c\xcf\x7f\x9b\xa8\x0b\x50\xae\x75\x24\x37\x5b\xab\x78\xd2\xb3\x92\xc6\xc2\x87\x17\xba\xa1\x2a\x71\x34\xf4\x18\xc5\xfa\x9e\xc0\xc2\x7d\x81\x6b\x12\x43\x7e\xd7\x73\xdc\xa1\x76\x6a\x18\xb8\x6d\xef\xe9\x60\x79\xa6\x0a\x77\xde\x7f\x4f\xb9\xad\x31\x3e\x0a\x2c\xf2\x4b\xd2\x8b\x09\x4e\x01\xfc\x8e\x0d\x7d\x61\x62\x43\xbf\xf1\x46\x3d\x4a\x56\x4d\xee\x92\x01\xfe\x39\xcb\xa7\xd1\x9b\xc6\x9f\x7f\x84\x55\xa6\x2e\x19\xb1\x86\x58\x9d\x2a\x12\xa8\x37\xde\x7f\xef\x64\x83\x76\x60\xc9\xe4\xf2\x1d\x42\x89\xcd\x06\x03\x2e\x26\x2d\x45\x3b\x1d\x38\x62\x2c\x0f\x13\xf3\x6d\x39\xa7\x89\x74\xa2\xd5\xcd\xd2\xc4\x91\x87\xcf\xcf\x6b\xf9\xe0\x0d\x22\xad\x7e\x83\xb0\xa3\x71\x94\xb4\x6d\x02\x28\x15\x2c\xd0\x31\x4c\x92\xd6\xe3\x49\x6f\xe7\xf6\x18\xe4\xc5\x14\xf9\x13\xd4\xa2\x0d\xf5\x5d\x38\xd4\xf7\x24\xd6\x76\xb1\x1b\x91\xd9\x2b\x2b\x15\x9e\x02\xc9\x04\x4d\xc3\x36\x88\x3d\xee\xd8\x90\x7b\x67\x64\xb8\x9c\xd8\x80\x6c\x15\x04\x6b\xb7\xc6\xbb\x67\xca\xbd\xea\x0b\x94\xe5\xf6\x54\x05\xf9\x09\x53\x38\x3b\x27\xfd\xd9\x5a\xc5\x75\x1a\xd8\xa1\x59\x6b\x92\x98\x6c\xf1\x95\x83\xf5\xd2\xa9\xed\xb9\xc8\x16\x55\xf8\xed\x30\x1c\x7a\x33\xda\x7a\xec\x1d\xd8\x57\xcf\xfb\xd6\xac\xa8\x8f\x5a\xa5\xef\x14\x18\xeb\x7a\xa6\x1d\xe5\x69\xb2\xa3\xe6\x45\xf2\xc0\xf3\xa3\x5a\x36\x0d\x82\xe6\x82\x44\x19\x85\xb2\x6f\x51\x59\xef\x82\xa4\xb8\x31\xb4\x97\x09\x1c\xfd\xe2\x41\xd8\x7c\x04\x9a\xdb\x9a\xe2\xb2\xe9\xcd\xe8\x05\x7f\x88\xae\x0e\xe2\xc4\x66\xc6\xf9\xf9\xa1\xd2\x77\x81\xd5\x19\x2f\x8c\xe5\x37\x4c\xb6\x0c\x23\xe0\xfa\xda\x49\x20\xee\xd8\x23\x77\x8d\xe9\xf7\x4d\x6c\x5a\x5d\xe7\x68\xba\xde\x41\x92\x98\x3c\x3f\x81\x49\xfa\x8d\x5f\xab\xa7\x89\x8a\x60\xc1\xdf\xfc\x26\xf1\x99\x7e\xd3\x1f\xf0\xde\x11\x84\xc8\x06\x92\x45\xca\x89\xa0\x37\x8d\xad\x1d\x5e\x5e\x80\x60\x2b\x17\x3d\x0e\x95\x99\x11\x61\x2a\x76\x62\xd2\x91\x0e\xfb\xf1\x44\x0a\xf5\xd0\x2b\x2a\x60\x92\x45\x85\xa5\x3d\x05\x1c\xae\x17\x80\x0e\x8a\x0e\x84\xf8\x8e\x92\x56\xec\x38\x16\x3c\xb5\x56\x63\xac\x2e\x19\x22\xfc\x56\xd4\x31\x99\x50\xa7\xca\xfe\x70\x64\xa3\x35\xdf\x9c\x77\x89\xfc\xe9\xb5\xa8\x6d\xd1\x17\xee\x54\x15\xca\x65\xa3\xd7\x13\x54\x9a\x0b\x0b\xf5\xe5\xd4\x51\x55\x3a\xfa\xaf\x10\xcb\x4c\x7a\x31\x00\xf9\xa7\xca\xb7\xe8\xf1\x92\x9e\x09\x6d\x92\xca\x60\xee\x50\xbd\x9f\xc6\xeb\x7d\x4d\x66\x30\xf5\x75\x60\xa8\x76\xd6\xcc\xa4\x1e\xf4\x80\x47\xfe\x62\x18\xdc\xa5\x2f\xc6\xba\xd9\x7a\x45\x0f\x4b\x17\x98\x97\x7b\xcc\xd6\x7d\x6f\x22\xe2\x99\x3b\x54\x37\xed\x37\x07\xb9\x3f\xcb\xb4\x3f\x95\xb2\xd0\xef\x81\xc4\x73\x8c\x90\xad\x9d\x8a\x11\x46\x9e\x4a\xf1\x1a\x7a\xe3\xb1\x8c\x79\x01\x3e\x9e\xe0\x5f\xdd\x91\xb7\xd3\x6b\x72\x5e\x97\x05\xe6\xa2\xf2\x5f\x8e\x2b\x82\x92\x0b\x97\x24\xf7\x05\x23\x03\x96\x02\xaf\x7b\x47\xaa\x80\x8f\xa2\xb2\xef\x46\x59\x9a\x77\xa3\x9e\x99\x62\x9a\xd9\xa9\xd7\x0e\xec\xdb\xd4\x0c\x1b\x5c\xd3\x6b\x13\x83\x33\x3b\x57\x37\x51\xd6\xca\xcc\x72\x51\x23\x65\xdb\x8b\xd4\x33\x7b\x91\x5a\x71\x62\xdb\x89\xf2\xd8\x14\x69\xa6\x6e\xa9\x43\x8e\xd4\x3c\x57\x3f\x0b\x2e\xb4\xca\x7d\xd6\x32\xb1\x38\x78\x70\xbd\x6e\xa3\xe6\x87\xba\xc9\xc7\x70\x8a\x9c\xc8\xfd\x54\x10\x02\xfa\x98\x04\x67\x6e\x0f\xa9\xb6\xc1\xcc\x9b\xa6\x67\x85\xc1\x22\xaf\x85\x1e\xf2\x6b\x4c\x86\x10\xf0\x42\x4b\x69\x66\xdb\x69\xaf\x16\x22\x00\x50\x7d\x3b\x59\xde\xad\x86\xe8\xe5\xb9\xba\x69\xa1\xb7\xd2\xf7\xae\x92\xb6\x2b\x91\x80\x64\xe9\x8a\x75\xec\x3c\x88\xfc\x21\xf7\x3a\xe6\x11\x3a\xf6\x94\xf2\xfb\xe0\x31\x68\xfe\xd7\xe9\x2f\x50\x49\xf2\x61\x15\x8d\xe3\x52\x79\x80\xcb\x09\x03\x97\xe2\x21\x21\x82\x1e\x4e\x00\x95\xdf\x78\xa3\x2e\x53\xea\x56\xbc\x33\xb7\x6c\x87\x7d\x2a\x33\x69\xe7\x3b\x89\x7b\xf6\xa7\x0d\x2e\x0b\x0e\xd9\x44\x42\xfc\x0a\xa9\x97\x73\xe2\x9d\xe2\xe0\x42\x95\x1f\x27\xf9\x4d\x46\xcf\x3e\x68\x3c\xc3\xc8\x9f\xd5\x28\xb6\x1d\x3b\x45\x8a\xef\x7f\x04\x93\x0d\x03\x02\x91\x21\x37\xc4\x8f\xf9\x3e\x47\x65\x27\xf2\x1a\xbb\xa4\xef\xee\xfb\x48\xa2\x44\x0f\x60\x27\x0f\x5b\x3e\x91\x93\x8d\x0d\xf9\xd8\xdc\x14\x72\xf8\xc2\x0d\xbf\x2e\xe7\x2a\x52\x07\x60\xdd\x71\x6a\xd7\xb5\x03\x0e\x0d\x87\x8e\x1f\x2c\x27\x90\xe0\x39\x56\xdb\x0a\x48\x94\x34\xd3\x69\xf8\xe3\x84\xe1\x58\x25\x8e\x38\x36\x33\x9b\x97\xe6\xba\x05\x90\x37\x12\x94\x1b\x44\x2b\xbe\x41\x4f\x9d\x26\xf6\x79\xe2\xad\x7d\xbc\x49\x9a\x2e\xa8\xcf\x48\x45\x69\xf0\x5c\x93\xa4\x3f\x6a\xa3\x32\xa4\x46\xf0\xf1\xe1\xb0\xf6\xe2\x8b\x1e\x4b\x2a\xbb\x09\x19\x5a\x15\x84\x42\x87\x96\x36\x90\xa2\x90\xf2\x8c\xa0\x96\x5d\x67\x5c\xed\x8d\x37\xf4\xe3\xda\x54\x88\xd3\x47\xd9\xd1\x3c\x58\xea\x80\xa3\xc1\x3b\x2e\x2b\x02\xb5\xd8\xda\xa8\x74\x13\x3d\x2b\xe7\xdc\xa1\x40\x49\x5b\xfa\x28\x4e\x20\x57\x2c\x01\x5e\x70\xc7\x28\x58\xfe\xdd\xa3\x72\x8e\xe0\x4a\x3d\x20\xce\xb2\x24\x4a\xec\xb2\xd0\xa5\x1c\x70\x4e\xf8\x79\x4a\xe4\x4c\x36\x4c\xcf\xcf\xd7\xed\xe1\x96\xed\xab\xfa\xb5\x27\x65\xf7\xe5\xb1\x13\x94\xee\xbe\x4d\x3d\xce\xc5\xa0\xb7\x14\x2b\x96\xcc\x4b\xd7\x05\x19\x3b\x56\x67\xce\xbb\x69\x66\xa1\x8d\xec\x1c\xd6\x50\xe6\x7e\xe6\xa1\x44\x9a\x64\xfc\xe7\x7c\xa2\x7d\xa2\x8e\x7e\xa0\x3e\x3b\x37\x4d\x91\x02\x15\x0e\x60\x6c\x9d\x76\x1b\x0b\xb9\x91\x2f\x10\x9b\xac\x63\xb1\xad\xc7\x68\xa1\x90\x92\xd3\xaa\x14\x52\x72\x60\xf4\x43\x8a\xe4\x38\x45\xf9\xc2\xd4\x77\x60\xf3\x3c\x95\xe0\xfe\x49\x23\x34\x29\x27\xde\xba\x20\xce\xbb\x82\x37\xd2\x1b\xef\xa9\xd9\x56\x9a\xa4\xbd\x28\x77\x15\x0d\xb7\x73\xe5\x69\xdc\x96\xae\xe4\xc5\xec\x44\x79\x91\x85\xfa\x2d\xd2\xf6\x47\xa8\xce\x74\x84\xa1\x0d\x49\xfe\x44\x90\x1a\xdf\x3e\x62\x82\xf1\x67\x9a\x7e\x8b\x7c\xf3\xcf\x21\x55\x0a\x83\x73\x1f\xa5\x46\xe7\xfc\xc8\x56\xc0\xfc\xff\x92\x54\x14\x1c\x26\x31\x78\xc6\x3f\xf8\x72\x33\x70\xe4\x75\x9e\x19\x8d\xd1\xca\xc8\xbc\x73\x68\x8a\x7d\xb1\x6d\x14\xf8\xde\xef\x0c\x19\x1b\x58\xbe\xa1\xcd\x24\x2b\x84\x8d\x76\x6e\x2c\x4b\xc8\x08\xb3\x31\xb4\xc8\x61\x93\x0b\xe8\xd3\x89\x98\x96\xdf\xaf\xd7\x18\x57\xbc\xc4\x06\x91\x86\xdc\x1f\x86\xe2\xc5\x49\xcc\x14\x92\x09\x27\x71\xb8\xe2\xf7\x95\x28\x5f\xff\xa5\x41\x54\xdb\x36\x29\x06\xd9\x3a\x4e\x39\xf8\xb7\x5f\x90\x89\xfd\x84\x8d\xfe\xf7\x30\x5e\x28\x72\xa3\xbc\xe6\x19\x53\x7d\x4e\xfd\x03\xbf\x92\x6c\xd1\x8d\x5a\xce\x15\xa7\x2c\x81\x73\xc5\x51\x33\x73\xb4\x0d\x15\xca\x16\x59\xba\x34\xc8\x0b\xc1\xe9\xc1\xcc\xde\x96\x63\x16\xee\xe0\x51\x6c\x40\xa7\xae\x50\x7e\x15\x12\x1f\x7f\x50\xd5\xaf\xdd\x1e\x68\xc1\xd4\xe3\x8e\x7c\xa3\x17\x4b\x88\x2e\xc7\xb6\x68\x75\xd1\x55\xe7\x86\xe3\x94\xd6\xb3\xf5\x6e\xe2\x74\x38\xf4\x4a\x7d\x39\x6d\x0d\xe0\xaa\xe0\xa4\x45\x2a\x40\xaf\xc7\x22\xae\xb8\xdd\x97\xcd\x4f\xba\x4d\x4e\x34\x16\xe7\x94\xe6\xc4\x38\xe0\x39\x31\x31\x36\x87\x5e\xa9\xaf\x9a\xd6\x60\x80\xae\x47\x47\xd1\x12\x62\xcf\x73\x5b\x05\xa4\x40\xfb\xf2\x12\xa5\x13\x16\x29\x9d\xb0\x48\xb5\xb9\x96\xc9\x62\xa3\x07\x1d\xf2\x96\x57\xb1\x5c\xf5\xc6\xeb\x89\xb7\x4c\x32\x43\x35\xbf\x5d\xa3\xda\xcb\x5a\x54\xdd\xf9\x02\x4e\x12\xd2\x09\x7a\x3d\x50\x88\xf9\x94\xc7\xf1\x2d\xca\x6a\x4b\x69\xa2\xec\xcd\x38\x2b\x4e\x8d\xa3\xe7\x03\xfc\x99\xb9\xc7\x44\xf6\x56\x3b\x5a\xb1\x14\x36\x1b\xa4\x72\x74\x01\x03\xec\xd8\x0b\x2b\x50\xf7\xbd\xf5\xdc\xc6\xcb\x72\xd6\xb8\x95\x28\xa6\x43\x6f\x2a\xf9\x84\xd0\x0d\xe8\x53\x41\x48\x68\x1f\xa3\xa3\xe3\x13\x99\x0b\xe7\x70\x3f\x45\x5d\x9b\xc9\x8a\xab\x10\xb9\x6c\x3b\x75\xdc\xfe\xf1\x30\x34\x06\x5d\x9e\x60\x25\x77\x21\x41\x3f\x6d\xad\x84\x76\x0f\x9c\x76\xea\x8c\xea\x8d\xf7\x8d\x57\x12\xd1\xea\x41\x88\xe9\x4b\x52\xa1\x3c\x55\xd5\xee\xfd\xe6\xa0\xdd\xe9\x59\x6d\x87\xd2\x2e\x42\x79\x1d\xd7\x51\x18\x08\x26\x57\xad\x89\x75\xec\x91\xdf\x99\x6e\x8e\xa5\x1a\x08\x90\x73\x77\x2c\xf5\x14\x9b\xd6\x14\x71\xb8\xe2\x6c\x42\x88\xf4\x09\xc3\xd0\x2e\x4f\x74\xfb\xee\x5f\xa8\xe7\xa9\x72\x85\xc1\x5d\x3b\x2e\x0f\xa7\xd7\x15\x38\x57\xaf\xa5\x51\x3e\x99\xab\x13\x86\x8f\x9f\xa6\xbc\x72\x37\xea\x3d\x45\x15\x1a\x65\x24\xf1\xb8\xb1\x05\x57\xa1\xd3\x16\x15\xbf\x5e\x82\x88\xc2\x76\xb4\x05\xa0\x9b\xe4\xff\x10\x67\x93\xce\x10\x57\xc8\x7b\xaa\x59\x7a\xd8\x15\x3a\x8e\xc0\xd1\xc1\xcb\xd3\x66\x35\xac\x8c\xed\xcd\xc0\x8b\x89\xc5\x85\xa9\x9e\x96\x13\x08\x4f\x75\x4d\x3c\x30\xfd\x56\x12\x48\xe8\x45\xed\x04\x35\xd0\xd9\x59\x0f\x65\x0d\x9b\xff\x7e\x23\xc8\xdb\x5f\x9c\x88\x96\x5f\xdd\x57\x47\xe8\xa9\xf2\x15\x44\x85\x70\xa4\x41\xf1\xe7\xfb\x44\xe5\xbd\x9c\xc6\x71\xba\x66\xdb\x02\xca\xf5\xfa\xb2\x7f\xfd\x35\x9f\x98\x2e\x5d\x56\x46\x3e\xab\x6d\xf9\x50\x96\x3f\x0e\x0a\x45\x17\x39\xcd\x21\xf1\x27\xf5\x23\x0d\x92\xcb\xda\x2e\xa7\xb9\x7e\x3c\xf4\x78\x98\x2c\x51\xb0\x3b\xe2\xcc\x29\xee\x07\x86\x06\xdf\x26\x9c\xc2\x50\xc4\xf5\xa1\x67\x92\x98\x41\x1b\x59\x08\x87\x66\xc7\x56\xd3\xbb\xb1\x95\x9c\x65\x66\x9a\xdb\x0f\x64\x2d\x60\x6b\x6f\x1b\x85\x02\x9b\x36\xc9\x3b\xd0\x47\x95\x56\x48\x5f\x34\x95\x6b\x21\x16\xbd\x22\x63\xad\xd7\x54\x9f\x4f\xa2\x3c\x37\xc9\xce\xb0\xea\xd1\x1b\x80\xd9\xfc\x27\x43\x46\x3f\x93\x4f\xae\x24\x29\xee\x13\xe3\xfd\x20\xe5\x1c\xa8\xab\x5f\x51\x26\xad\xf7\xb3\x74\x49\x15\x17\x3c\x7a\xda\x13\x92\x5f\x9a\xc8\x3c\x48\xe3\xfb\x5b\x83\xb4\x30\x63\xdd\xb4\xe0\x28\x76\x20\x69\x8f\x8a\x69\xa5\x45\x6c\x92\x76\x8d\x0e\x99\x8b\x54\x35\xbb\xe8\x41\xf1\x4b\x83\xcc\x9a\x01\xa1\xf6\xcf\x8e\x77\x35\x92\x7a\x04\x9c\x7f\xed\x96\xa8\xa2\xa8\x5b\x56\xfa\x97\x5a\xc0\x25\x7d\x9b\xa4\x3c\xbe\x5d\xba\xed\x38\x61\xa2\x96\x88\x7e\xbd\x35\x70\x60\x18\x0f\x55\xf4\x64\x01\x97\xa8\xcb\x47\x74\xf7\xd4\xb5\x0d\xa9\x9e\x46\x28\x95\x5e\xa2\xe8\x6f\x59\x75\x18\xf0\xa0\xd7\x08\x45\x8f\x6e\x65\x78\x1c\x1f\x06\xf5\x8b\xe5\x65\x9b\xe4\x8e\x56\x19\x51\xd4\x6d\x24\x18\x3c\xa9\xac\x0f\x7a\x8e\x78\x43\x9d\xa7\xad\xc8\x16\xeb\x3b\x42\xc7\xcb\xfd\xe1\xa4\x9d\x46\xbe\xac\xd6\xe4\x2e\x42\x8c\x23\xce\xb7\x5a\x93\x78\x35\xe4\x2d\x7c\xa7\x75\x9f\x11\xdd\xd4\xd0\xf2\xdf\x9d\xae\x94\x39\x6f\x67\x76\xad\x16\xd8\x36\xde\x19\x52\xda\xe0\x9d\x0a\xa0\xe8\x4b\xf5\x41\xbe\x85\x1b\x7b\xc8\xdc\xd8\xd4\x84\xd4\xb3\x31\x20\xb3\x5c\x32\x0a\xf5\xe0\x0b\x44\xf3\xf4\xa6\x5d\xb3\xb1\xe7\xe7\x70\x0e\xb7\x0c\x85\xf3\xb8\xd9\x71\x2b\xa2\xd6\x5e\x79\x4e\x8f\x46\x7c\x75\x9f\x8f\x72\x30\x66\x18\x27\x64\x8a\xe1\x07\xdc\xe2\xde\xb8\xdd\xe8\x49\x85\x73\x73\x9f\x69\xf7\xb6\x83\x1b\x06\x21\xe3\x94\x98\x74\xc5\xdd\x37\x88\xd4\xee\x8a\x14\x65\xe0\x08\x2b\x60\xd4\xd7\x3c\x0f\xb8\x9a\xd2\xfb\xb4\xd4\x76\x36\xb7\x16\x42\xca\xd3\xb3\x6f\x3a\x5d\x5b\x14\xd1\x14\x51\x36\xdc\x21\xf9\x6f\x90\x2a\x38\xb8\xf9\x56\xf7\xe7\xe5\xb9\xfa\x6a\xd4\x49\xb3\x74\x90\x2b\x39\x61\xd0\x10\xf5\xd7\x15\x02\xd1\x0b\xf5\x74\xa9\x20\x06\x62\x9c\x71\xc8\x05\xea\xb5\xa7\x38\x6f\xdb\xc2\x66\x91\xd4\x28\x65\x13\xa1\x5c\x74\x7c\x48\x40\xbf\xe3\x13\x8e\xc1\xe2\x81\xc5\x7a\x91\xda\x5a\xed\x37\x7e\xad\x52\x52\xa4\x02\xcb\x91\xd9\x5e\x9a\xe5\xdc\x57\x0f\xc0\x88\x2b\x21\x56\x35\x24\xf5\xd2\xcc\x02\x90\x8d\xe4\xd2\x6d\x64\x37\xf4\x86\x14\xa3\xf2\xc1\x52\x2f\x2a\xc2\x62\xc4\xe2\x38\x45\xc2\xde\xa7\x28\xee\x28\xcc\x8a\xe9\xa5\x59\x54\x0b\xe0\x1a\x45\x1e\xea\xcd\xd8\x5a\x8c\xda\x66\x5a\xd6\x12\x93\xa9\x2b\x12\xbf\x41\x76\xf4\xff\xd5\x85\xe9\xf4\x0c\x2b\xd5\x18\x4b\xa3\x62\x6b\x5c\x77\x08\xab\xe9\x12\x9d\x8b\xcb\x66\x10\x6b\x0c\xa5\x8a\x8a\xfc\x53\xa7\xa8\xd9\x2c\x6f\x75\xd3\x34\xde\x43\x2c\x33\x2a\x7b\xeb\x38\x29\x49\x20\x4e\x45\x4a\x3c\x0c\xba\x1c\x59\x2f\x6e\xf5\xb5\xdf\x0c\x5c\x25\xe5\xa2\xd1\xbf\x92\x07\x74\x1a\x2d\x81\x81\xe2\x0e\x79\x91\xdf\x15\x7f\xc3\xf5\x5d\x05\x3c\x74\x62\x8d\x66\xc3\x1d\xde\xa1\x46\xf4\x1a\x15\x60\x11\x9b\x2d\x99\x5e\x9a\x00\x0b\xe6\x49\x83\x7d\x2f\x89\x16\xbd\xe0\xe9\xdf\x1f\x0b\xe5\xe3\xa2\xbb\x37\x50\x82\x5c\x92\xcd\x3b\x26\x52\xe2\x68\xa7\x03\x0f\xf8\x7d\xe6\xa9\x52\x60\x80\xd3\xd1\x0b\x38\xc8\x2f\x88\x00\x4e\xe1\xe1\x5c\x5d\xc0\x20\xbf\x87\x41\xc6\x8f\xdf\x6a\x10\xf7\xd4\x03\x51\xfe\x75\x89\xba\x40\x60\xa0\xac\x76\xe3\x5b\xa4\x6d\x81\xeb\xf4\xb4\x55\x7f\xfd\x35\xf5\xa2\x6e\x91\x66\xd6\x67\x2c\x65\xad\xc2\xe1\x8c\xac\x74\x6c\x2d\x5b\x53\xf1\xfb\x17\xea\x71\xba\x56\x63\x8c\x5c\xf9\xe7\x7a\x4d\x10\xb9\xb6\xb5\xfd\x99\x10\x83\x1c\xc3\x59\xef\x04\xf4\x64\xd0\x7c\xbe\xda\x07\x61\x47\xe1\x0a\xe9\x3f\x4c\x12\xa1\x1e\xac\x1f\xd8\x47\xc4\x98\xb7\x88\x18\xf3\x16\x25\x73\xde\x1a\xd8\xbc\x3c\xcf\x77\x05\xd3\xa0\x84\x02\x18\xf5\x2b\x0d\x82\x1a\xfc\x6c\x38\xa6\x68\x85\x64\x1c\xa2\x4f\x70\x76\x23\x9f\x77\x99\xec\xed\x2e\x70\xa5\xb8\x26\x96\xad\x93\xf0\xab\xf5\xd8\x16\xd3\xd4\x5f\x78\x96\x9a\x1b\xbf\xc0\xd1\x09\xeb\xa3\xe5\x6c\xd7\x1c\x14\x7c\x92\x8e\x50\xa5\x47\x49\x07\x20\x01\x84\x00\x78\x5d\x7f\xcc\x93\x99\xdd\x1a\x77\x1e\xd8\x57\xcf\xac\x80\x97\x85\x4a\xae\x46\xc9\x34\x3d\x87\xf5\xa6\xb2\x83\xb3\x67\x56\xec\x8c\x0c\x83\x97\xe6\xf4\x4c\x43\x9f\x33\xf7\xd8\x3f\x95\xf7\x42\xef\xe1\xe6\x90\x08\xc4\xf7\x34\x79\x5b\x0d\xb2\xf5\x3d\x65\x58\xe5\x3e\x44\x0a\x74\x27\x61\x25\x9c\xce\x82\x7c\x37\x10\xe4\xbb\xa4\x5e\xaa\x1f\xc1\xe2\xc1\x1a\x79\x20\x3f\xea\x20\x86\xe5\x88\xa0\xb0\xfe\x98\xa4\xd8\x9d\x7f\x54\x6e\x5d\x14\xc5\x9f\x18\x79\xd4\xf2\xdf\xfc\xb3\xcd\xe0\x77\x74\x4c\x1c\x0b\xb9\xd1\x7e\x52\xf8\x3d\x10\x20\xef\x93\x68\x90\x56\x94\xb5\x1c\x67\x24\x56\xcb\x09\xa2\xe7\x39\x31\x66\xef\xbb\x03\x14\x88\xbc\x2d\xd8\xef\xaf\xe9\xc4\xc9\x6c\xdf\x9a\xc2\xb6\xe3\xf5\xdd\xf2\xad\x48\xfd\x5f\x19\x52\xf0\x7f\xa1\x41\xac\x2b\xa7\xb8\x42\xf3\x58\x93\x72\x9c\xef\xc1\x5e\xa8\xe6\xa5\x78\x3a\xbe\x37\x98\xc4\x8d\xcb\xa1\xc0\xf5\x8e\xd1\x5e\x22\x0e\x35\x1d\x74\xcd\x23\xa2\xb8\xd1\x08\xed\x76\x30\xd7\xf0\x0d\x8f\x23\xf4\xd3\x7f\x68\x10\x45\x3f\x53\xa7\xf7\x4c\x76\x58\x1a\xb2\x3d\x89\xd2\x0d\xf2\x76\x6e\x54\x78\x8b\x73\xf5\x22\x72\x5e\x86\x92\x58\x10\x5d\xfb\xe9\x89\xe5\xed\x2b\xad\x26\x5b\x35\x19\x06\xda\x4d\x08\x01\xcb\x4e\x4c\x14\x12\xa5\x3f\x39\x9d\x0e\xed\xe1\x57\x1b\xd4\x25\xf9\xe9\x18\xd9\x4d\xf9\xc8\xc8\x75\xbc\xdd\x78\x9e\xf0\xc2\x49\x6e\xdf\x1a\x58\xc8\x22\x06\xde\x88\x0f\xb1\xaa\xf5\x06\x74\x2d\xea\xc9\x3f\x57\x0e\x84\x2f\x20\x3b\x75\xd9\x9f\x3c\xdb\x24\x26\xd5\xa3\xb4\x90\x36\xd1\x92\xee\x3a\xc6\x48\xb7\xec\xf1\x51\x38\x9d\x6e\xc9\xf1\x82\x2a\xaf\xd8\x23\xff\x09\x6c\x29\xaf\x8b\x5a\x4e\x12\x0c\xea\x8d\x46\x50\x64\xbb\x4e\x95\xb4\xbd\xcd\x72\xe7\x68\xc5\x10\xcb\xcd\x27\x3a\xca\xf9\xf6\xb5\xbe\xaf\xfd\x66\x98\x9e\xd7\x48\xe2\xa2\x5c\xad\xce\x61\xa1\x4e\xea\xda\x88\xad\x40\xab\x1b\x81\x75\xd1\xd1\xa3\xd7\x98\xfd\xdf\xef\xf5\xdb\x58\xc8\xae\x9e\x53\xbe\xa4\xfe\x83\x9c\x64\xae\x4b\x28\x48\xb0\xad\x45\xea\x0f\x2a\x75\x55\x83\x34\x6b\x3e\x23\xa8\x47\x12\xb5\x84\x52\x98\x05\xff\xbe\x43\xca\x9c\x9a\x77\x44\x92\xe6\xb2\xcf\x88\xf7\xa2\x2c\x4b\x41\x6d\x81\xfd\xfb\xbd\x46\xc0\x68\x7c\x6f\x2c\xb1\x10\xa5\xc9\xbf\x47\x28\x82\x6f\x4b\x51\x16\x59\xfe\x5b\x9a\x8f\xc0\x9e\xde\x29\xdc\x29\xd8\xec\xdb\x51\x26\x04\xa6\x66\xd7\x48\x06\x1c\x2f\x7c\x77\x58\x0e\xb2\x73\x8c\x25\xc3\x89\xaa\xdf\x75\x2c\x10\xa2\x1c\x70\xad\x36\x77\xf1\xf2\x0e\x7b\x5e\x8e\x2a\x46\xfb\xbf\x96\x72\xa0\x8b\x16\x24\x35\x23\x56\xf6\x57\x9e\x6e\x7a\x62\x83\xdf\xfd\xd3\xa3\xa9\xd7\xbc\x3c\xd1\x19\x4c\xab\xf2\x01\xc8\x62\x93\x31\xdb\x78\xbe\x29\x8b\x0d\x93\x3f\xd3\x0c\x2c\x34\xdf\x1a\x96\x5e\x0a\xfe\xff\xa7\x58\x77\x58\xdc\xca\xdd\x02\x1b\x82\x14\x0b\xcc\xf4\x8e\x66\xa8\xfa\x6b\xab\x88\x0f\xc2\x02\xc5\xfe\x97\x46\xe8\x67\x83\xff\x73\x59\xdc\x44\xd8\xa9\x93\x44\x20\x9a\x17\x83\xf6\xfa\x74\xf9\x6f\xd8\xb4\x37\x48\x1b\x02\x24\x1b\x8a\x2f\xc6\x10\x69\x7b\x5b\x45\xd8\x33\x57\xef\xa5\x3d\x9b\x14\x83\x9e\xac\x2a\x9c\xe0\x27\x65\xd2\xf5\x9a\x16\x55\x66\x97\x07\x1d\x6b\x73\x91\x81\xc3\x99\xaa\x09\x55\x4a\x66\x3b\xfa\x62\xa8\x6a\x62\x42\xae\x56\x68\xc7\xbe\x54\x5f\xb3\x76\x25\x5e\x9f\x22\x30\xc7\x39\xb1\x43\x38\x55\xaf\x91\x8e\xdc\x47\x54\xe9\x5c\xce\xac\x59\xc9\x6b\x0c\x09\x66\x17\xd9\x73\xa4\x02\x41\x1d\x98\x6b\x11\x36\x62\x58\xb7\xcb\x54\xe0\xe8\x3d\x33\x0c\xcb\xf3\x28\x11\x18\xf6\xb3\xb4\x6f\xe3\xd8\xb6\xb5\x3e\x84\x18\xf9\x3e\x53\xf9\xfe\x36\x13\x09\xde\xf3\x19\x23\xd1\xca\x12\x99\x28\x5f\xdc\x44\xfc\x0a\x7a\x84\xa3\x38\xf0\x30\x59\x93\x1c\x03\x1e\x2b\x56\x06\x5b\xc4\x6d\x48\x68\xf3\xd3\x15\xec\x3c\x8b\xf5\xa2\x1b\x25\x2b\xd3\xe5\xcb\x20\x3d\x80\x56\x6c\x38\xee\xda\xb3\x87\xf2\x84\x22\x1f\xdc\x01\x5d\x05\x26\x48\x0b\xe5\x57\x41\x0e\xe7\x7e\x83\x25\x3f\x6a\x9e\xbf\xf8\x2c\x11\xba\x8f\xc9\x71\xa9\xdf\x50\x45\x21\x53\x41\x8a\xda\x4d\xfb\x5a\xba\xa6\x12\xed\xc1\x50\x91\xf1\xf0\x61\xed\xda\x77\x26\x3a\x44\x74\x6b\x26\x4b\x6c\x26\x6d\xd1\x30\x07\x3f\xc1\xb9\xe0\xe5\xa2\x48\x1b\x45\x9e\x06\xc3\xf2\xf3\x21\xe9\xa1\x34\x88\xb7\xfe\x0c\xf1\x15\x08\x22\xb9\xb0\x8e\x71\x46\xfb\xf5\x87\xa1\x61\x67\x83\x94\x14\x26\x31\x60\x0b\x0b\xf5\x4e\x16\x41\xcd\x44\x26\x1e\x4b\xf0\x8b\x46\x58\x8e\x5f\x30\xec\x2e\x4b\xf3\x5c\xf2\x8d\xa1\x13\xf7\xe7\x78\x34\xbd\xa1\x58\xa6\x35\xe8\xcb\x46\xa8\xfa\xca\xbd\xd4\xa7\x6d\x1c\xf4\xc0\x49\x02\x05\x0b\x71\x92\xe9\x6b\xef\x34\x82\xf2\xab\x8d\xa3\x1a\x51\xe5\x7c\x30\x26\xb1\x4f\xe8\x5e\x93\x17\x16\x5d\xd2\x8b\x9e\x11\xb7\xb6\x10\x94\x9d\x83\x73\xb0\xae\x49\x01\x6c\x9e\xdf\x27\xc4\x1f\x96\x2a\x22\x0c\x25\xca\x73\x55\x89\x50\x9b\xea\xa4\x71\xbb\xa7\x88\x4e\x57\x9b\x0a\x4a\xaf\x1b\xd4\xfa\x28\x94\xf3\xcc\x32\x3f\xc6\x3f\xef\xea\x83\x5d\x9b\xed\x0d\xbb\x72\xfb\x48\x8c\x30\xaa\x24\x9b\xc3\x31\x3e\x0f\x62\xa8\xba\x29\xf3\xae\xd4\x97\x82\x53\x41\x82\xfe\xa1\x9c\xdd\x88\xff\x6b\xa3\x60\xb9\x9e\x40\xf0\x84\xdf\xb8\x23\xb8\x38\x8f\xa6\x85\xa1\xc7\xe1\xf0\x1f\x35\xcb\x23\xcb\x69\xef\x94\x47\xa9\x87\x06\x94\x47\xa1\x78\x28\xad\x3f\xdf\x7c\x94\xb1\xc8\x34\x9d\xeb\x89\x5c\x02\x4a\x67\xb2\xb3\x7d\x7e\xbe\xbe\x94\x26\xed\xbc\x46\xf8\xa0\x13\xd8\x72\x7a\xf3\x48\x1f\x74\x29\x4b\xa3\xd8\x66\x2c\xa4\xa6\xdd\xd8\x38\xca\x4e\x52\xcf\xcd\xf6\xe6\x5e\x92\xd4\x3a\x5c\xa8\x07\x89\xf1\xfa\x91\xec\x42\xbd\x0e\xd4\x5a\x83\x08\x9a\x92\x5e\x82\xf3\x44\x23\x14\x9c\x4e\x0c\x9f\xa7\xa3\x48\x68\xce\x84\xed\x4b\x76\x8a\x92\x7c\x0e\xa9\xbc\xc5\x00\xd5\x37\xd3\xc4\xe6\x62\x1f\x5c\x01\x5a\x2c\x09\xfc\xe2\x8b\x08\xc4\x1d\x09\x24\x85\x8c\xf7\x19\xd4\x80\x26\x61\xc7\x83\x59\xa1\x0f\xdf\x33\xeb\x4b\x28\x90\x38\x18\x43\x30\x0c\x27\x69\xdb\xee\x7f\xf5\x6b\x33\xc1\x94\xd4\x38\x2c\xbe\xae\xab\xc2\x83\x1b\x67\xe7\xdc\xf1\xdf\xa0\x16\xbc\xd3\x13\x10\x82\xd9\xd9\x7a\x6a\x5c\xa1\xd9\x7b\xd3\x5b\x95\xa4\x70\xb4\xde\xa3\x84\x74\x57\x6c\xf6\xfa\x34\xa5\xd8\xb5\x45\x04\x59\x97\xcb\x9a\x30\x80\xdb\xb8\xab\x49\xb9\xc2\x63\x84\x87\xec\xdb\xac\x67\x12\x9b\x14\xb0\x71\x55\x55\x98\xc0\x56\xdb\xb6\x99\xed\x0c\x62\x69\xf1\x08\x5b\x05\x54\x2b\x0e\xee\xf6\xdc\xa4\xf2\xea\x81\x7d\xcf\x97\x9b\xc4\x31\x97\x95\x9b\x44\x3b\xd5\x60\xdf\xdd\x69\x23\x3b\x46\x41\x56\x08\xdb\xf0\x2a\xd7\xc5\xca\xc0\x5c\xfc\x9e\xbe\x16\x98\x06\x98\x7d\x45\x48\x13\x5e\xd2\x33\x66\x4a\xca\x77\x8e\xff\xb1\xb6\xb0\xb0\x79\x1e\x8d\xf9\xa8\x4c\x9d\x43\xd7\xa5\xab\xd1\x89\x05\xd1\xdf\x92\xa0\x12\x85\x0e\x25\x48\x81\x61\xfe\x10\x47\x18\x12\x6d\x0f\x70\x12\xa3\xa4\xb2\x47\x9c\x53\x18\x47\x6d\xab\x77\xfa\x52\x32\x1f\x48\xe0\xfc\xc1\x78\x9d\xba\x2f\x00\x4a\x67\x79\x37\x65\x85\x7a\x27\xba\x7c\x0f\xe4\xcf\xaf\x91\x49\xde\xde\x94\xd1\xf2\x49\xcc\xf9\x79\xf7\x69\x31\xa7\xfa\xff\x27\xd6\xf7\xdc\xa1\x7a\xd4\xb6\xae\x62\xe6\x41\x43\x01\x40\xe4\xfd\x9f\x2c\x8d\xe3\x25\xa1\x87\xf2\xe8\xad\x33\x54\xf7\x39\x13\xb6\x7b\xdf\x24\x51\xde\x9d\x0a\x09\x97\xc7\x9a\x01\x62\xf9\xd1\x90\xd8\x71\x77\x8e\xdc\xb7\x2f\xa7\x69\xd1\x4d\x63\xa8\x2d\x39\x5a\x69\x2a\xfd\xbd\x4d\xb8\xf0\xcb\x13\x59\xf5\xd9\xd9\xfa\x52\x16\xf9\x0e\x66\xb8\x80\x37\x39\x15\x73\x73\xc2\xb9\xda\xbf\x50\xcf\x06\xb1\x3f\xbf\xb1\x03\xbf\x47\xe5\xf6\xef\xf9\x4a\x56\x7f\x10\x87\x3f\xac\x62\x7f\x0b\x69\xbb\x65\x93\x17\x4b\x26\x8e\x6b\xd8\xf0\x55\x85\x38\xa2\x5a\xc9\x32\x48\xf9\xd4\xbc\x40\xe4\x03\xa2\x33\x7b\x30\x8e\x51\x5f\x4a\x6b\xac\x14\xd6\x08\x6e\xe4\x25\x4a\x35\x9b\xcc\x2c\xe1\x41\xe1\x16\x9e\x21\xa2\xa2\x33\x9e\x4c\xb8\x67\x4d\xb2\xd6\x8d\x62\xbb\xab\x5c\x1c\x8e\x35\x57\xbe\x5e\x45\xa7\x19\xe5\xed\x2a\x4d\x8e\xdb\xbc\xe6\x9b\x6a\x77\x8f\xca\xfd\x0a\x74\xfa\x2d\x31\x6b\xf8\xa5\xff\x73\xe8\xad\xf7\xdf\xad\x37\x03\x15\x81\x2d\xdd\xd9\x4e\x2d\x40\xb1\x91\xda\x71\x89\x0f\x37\xe0\xa5\x63\x65\x12\x23\x7f\x87\x86\x6b\xe5\x16\xd2\x1b\x46\x84\xa7\xbd\x7e\x24\xe4\xcc\xfb\x03\x15\x57\x00\x92\xdd\xd9\x0a\x49\x5a\x58\x38\x58\x7f\x75\xdf\xeb\x8f\x95\x36\xc7\xeb\xc9\xf9\xea\xc7\x26\x2c\x8b\x2f\x83\x6d\x25\x4b\xd3\x7f\x01\xb9\x0a\x02\xe1\xb3\x43\x22\x3a\xb9\x49\x9d\xdd\x3f\x90\x8d\xa7\x7f\xc4\x19\xb0\x2f\x2a\xd2\x47\xf5\xe5\x6c\x10\x31\x17\xf0\x3b\xf2\x12\xae\xab\xbe\x02\x41\xd4\x32\x59\xcf\x26\xbc\x24\xb6\xf4\xae\x3e\xef\xd0\x38\x36\x8e\xd7\xff\xc6\x5f\x5c\x2d\x9d\xe9\x58\xc9\xa9\x91\x4c\x79\x40\xbd\x42\x0f\x2a\xf4\xf2\x17\xeb\xdd\xa8\xd3\x9d\x0a\x5c\x0c\x47\x48\x6c\xff\xf3\x06\x53\xe8\x90\xef\x68\x63\xdb\x31\x89\xd6\x3b\x1c\xf4\x90\x60\x88\x84\x11\x71\x40\x2a\xd1\x5f\xf1\x74\xba\xfb\x5d\x97\xfd\xcf\x28\x23\x97\x17\x69\x66\x80\xf5\x76\xf2\xe7\xc0\x04\x3b\x21\x94\x1a\x71\x0d\x05\x6e\x91\xbe\xcd\xf2\x34\x31\x71\xbc\x3e\x2d\x76\xdc\x39\xa0\xdc\x48\x4d\xba\x78\x4a\x0d\xec\x9e\x9a\xc2\x85\x41\xaf\x3c\xda\x44\x53\x7d\xee\x90\xa7\xd9\x23\x8f\xe9\x28\x21\x7c\x3b\x99\xf9\xba\x93\x16\x74\x47\x56\x18\xc5\xf3\xbe\xb2\xde\x4a\x5b\x2b\x85\x89\x62\xcd\x6e\x23\xaa\xfc\x88\xb9\xd7\x3e\x9a\x88\x3c\x7c\x3b\xd4\x61\x33\x15\x1c\x7e\x74\x77\xe1\xac\xfb\x0e\xb3\x50\x4d\x86\x66\x73\x87\xea\xed\x48\x3b\x0f\x3d\xa0\xd4\xe7\x4d\xb7\x35\x2b\xca\x75\x07\xeb\x71\x9a\xe6\x0a\x9b\x87\xbd\x1f\x11\x8a\x77\x54\x59\x79\x6d\xdb\x65\x9b\x65\x2e\x27\x8a\xaa\xc5\x05\x22\xd3\xbd\xd0\xd8\xda\x29\x7a\x60\x5f\xbd\x1d\xe5\xa6\xdf\x4f\xa3\xa4\xf0\x06\x17\x67\xc8\x59\x4a\xe0\x9f\x1d\xab\x78\xfd\xa5\xff\xfc\x57\x88\xe2\x02\x87\xbe\x83\x33\x54\xe8\xca\x47\x49\x3e\xc8\x4c\xd2\xb2\xd8\x09\xae\x61\x3d\x7c\xc3\x11\xa2\x4e\x37\xed\x76\x66\xf3\x3c\x4a\x3a\x0c\x07\x85\x6f\xac\xda\x25\xa4\xc3\xa1\x55\x59\x27\x6a\xe2\x25\x08\x4c\xaf\xef\xdf\x06\x87\xff\x51\xa2\xfe\x38\x4a\xd1\x50\x3b\x8a\x6d\xaf\x67\x50\xea\x45\x74\x7c\x8f\x1a\x6d\xef\x51\x71\xca\x9a\x0c\x38\x66\x94\x0e\x4e\x93\xc6\xc7\xe9\x89\x9a\xda\x2f\xd7\x57\xf3\xaf\x8e\xa9\xf5\x05\xe6\x90\x0d\x7f\x72\xb7\x4c\xcf\x66\x26\x47\x76\xd1\x83\xa3\x3c\x64\xeb\xf6\x90\x28\x64\x1e\x4c\x24\xa6\x7f\xb9\x5e\x74\x4d\x31\x15\xb6\x87\x76\x6d\xe2\xd0\x46\x13\xbe\xe3\xbf\x70\x35\xf7\xa5\x38\x6d\xad\x2c\x0d\xf2\xc2\x66\x33\xf2\xce\x5e\xc5\xd0\xf7\x66\xbf\xc3\x56\x0d\xb6\xda\x15\xe3\x09\xf2\x71\xa9\x8a\xd5\xd1\x14\x5c\xfb\x77\x7d\x40\x63\xed\x42\xbe\xf1\xca\x66\x91\xcd\x77\x12\xd1\xc0\x99\x20\xd2\xfa\x17\x5e\x6c\x72\xa2\x77\x0c\x35\x41\xcc\xcd\xcf\x8f\x42\x8f\xdf\x9e\x17\x14\xd1\x22\xc7\xe9\xdf\xfe\xf7\x47\x41\x12\xcd\x1e\xee\xdb\x2c\xea\xd9\xa4\x30\x31\x88\x51\x10\xbc\xdc\x90\xf3\x42\xaf\x27\x0a\x72\x0b\x0b\x8b\xf5\x58\x0a\x69\x4e\xde\x8b\x48\x37\x81\x39\x40\xaa\xf1\x3e\xa1\xac\x15\x32\xfa\x58\x88\x68\xbf\x0d\xdf\x54\xd5\xcc\x11\x1d\x2b\x03\x7f\x23\xd0\xc3\xea\x31\xe8\xa8\xf9\xc7\x93\x81\xe5\x3b\xea\x97\x11\x73\xca\xf1\x31\xda\x63\x19\x63\x3c\xcf\x79\x22\xa2\x2f\x7d\x48\xa1\x30\xf4\x15\x98\x8f\xe5\x57\xdd\x6c\x3c\xcd\x05\x18\x53\x74\x53\x74\x1f\xfa\x66\x27\x22\x0f\xa8\xc2\xeb\xb4\xa4\x7d\xc3\x03\xd4\x4e\xcb\x77\x3b\xec\x65\x05\xbd\x84\xe0\x30\xe2\xbc\xb6\x05\x23\xef\x4f\xad\x2a\xf4\xc6\x7a\xd4\xef\x47\x5e\x2a\x46\x89\xb4\x1a\xd4\x31\xff\xdd\xe1\xb3\xe3\x1e\xc7\x6b\x8b\xf5\x03\x8b\xf2\x58\x58\xdc\xea\x0b\xe8\xcd\x70\x5c\x2f\xc5\x64\x51\x9e\x26\xd3\xc4\xb8\x72\x0f\xe7\x2c\x66\xfd\x32\x0b\x56\x33\xe1\xd7\x65\x62\x2b\xee\xa6\x79\x3f\x2a\x4c\x0c\x68\xb8\x83\x03\x73\x33\x5e\x85\x03\xf2\x7a\xbd\xf0\x5a\x31\x4e\xa3\x70\xac\x08\xb3\xf5\x18\x79\xf1\xc5\xfa\x92\xc9\xf4\xe4\x72\x88\x20\xaa\x2b\x1e\xa1\xfa\x46\x96\x2a\x63\x10\x85\xb0\x8b\xbe\xd6\xf3\x1c\x1d\xf2\xa6\x10\xae\xea\x72\x67\x94\x3f\x4e\xe4\xd6\x73\xee\x66\x62\x56\x16\x5f\x39\x58\x17\x14\xa3\x6e\x74\xcf\x59\x48\x3f\xc8\x9e\x74\x3a\x38\x2c\x0f\x83\xbd\x73\x9f\x39\x4a\xef\x8f\xc5\x61\x2d\x1b\x3f\x52\xc2\x32\xc4\xfd\xab\x91\xa9\x11\xd3\xff\x45\x7e\xb9\x8b\x5e\x3c\xb9\x3c\x76\x96\x97\xa3\x56\x64\x15\xd5\x41\x88\xaa\x05\xdf\x7c\x13\x2c\xf4\xdd\x89\xd7\x14\x39\xf5\xe5\x60\xcf\x10\x18\xa9\x26\xbf\xde\x10\x4a\x3a\xef\xa7\x49\x7b\x2a\x28\xef\x6f\x6f\x52\x4b\xf0\x25\x2a\x3a\x5f\xf3\x9d\x7b\xdd\x41\xc7\x12\x21\xc1\x26\x13\x12\x6c\x92\x53\x05\x69\xc4\xd2\x82\x3d\x25\x0b\x15\x16\x7e\x84\x78\xdd\x73\x67\xfa\xb6\x80\x6d\xc0\x99\x71\xbb\xb9\xaf\xe5\xfa\xba\xee\x77\x31\xc7\xf8\x31\x7d\x56\x78\xbf\x77\x19\x6f\x79\x5c\x82\x0c\x18\xe2\x8f\xb8\xa4\xfe\x89\xb8\xe4\x08\x79\xef\xcb\x59\xe3\x28\xaf\xc4\xa6\x6b\x43\xfc\x30\xa4\x5f\xef\x0b\x33\xbf\xe3\x8a\x7e\xce\x4f\xd3\xaa\x4d\x4a\x37\x2f\xb1\x79\x2e\x94\x66\x5e\xb4\x9e\x71\xac\x35\x4f\x5f\x09\x8a\x64\xa7\x0f\x1c\x56\xc5\xe1\xa8\x90\x6a\xb4\x13\x86\xdf\xfe\x65\xdf\x48\x56\x8e\x8c\xd7\xd7\x9c\x75\xda\x54\xff\x9a\x2d\xeb\x6e\x12\x57\x5b\xfa\x6a\x8d\xc4\x3a\x14\xd1\xad\x37\xfe\xe8\xee\x98\xa5\x2c\xb2\xe5\x79\x72\x60\x9f\xeb\xd6\x19\x8e\xb5\xee\xb8\xfe\xa9\x24\xcd\xd6\x6c\x87\x28\x7b\x94\x87\xa1\x31\x46\xca\xe0\x0a\x2e\xdd\x34\x49\xa1\xa8\x8c\xef\xb9\x8e\x31\x47\x01\xe1\xa7\x54\x7a\x3c\x4b\x10\xed\x77\xaa\xd0\xbc\x4b\x83\x28\x2e\xa6\x89\x57\x50\xeb\x4a\xaa\xb6\x23\x9b\x0b\xdb\x40\xc9\x6f\x90\x95\xbe\xd9\x08\x5c\x03\xad\xd2\x6d\x53\x0a\xce\x7c\x8a\x18\xa4\x15\x53\xe0\x6b\x83\xa1\x1b\x89\x73\xdf\xdd\x28\xff\x92\x1c\x78\xce\x90\xc8\xdf\x21\x37\x7c\x04\xf9\x69\x14\x90\x37\x71\xc4\x23\x03\x72\xbc\x11\x72\xc0\x97\xc5\x6d\x52\x62\xc7\x06\x11\x0f\x4c\x8f\xa8\x9c\x79\x6d\x18\x4a\xdc\xdf\xd6\xcc\x9f\x07\xa4\x2d\xbe\x72\x50\x9b\x42\xef\x21\xa5\x85\xb4\xc8\xae\x66\x10\x61\x3b\xaa\x85\x56\x55\xf2\x41\x36\x4a\x65\x4c\xa8\x25\x02\x67\x81\xc6\xde\x72\xd4\xe1\x47\x14\x0a\x0b\xf7\xff\x87\x02\x00\x43\xeb\xd2\xcf\x50\x0e\x75\x1a\x3d\x32\x64\x48\x5f\x6d\x60\xeb\x7a\xe4\xaa\x2f\xd3\xee\x69\xb2\xe1\xec\xff\xe5\xff\x14\x99\x48\x47\x44\x21\x3f\xe4\xf4\x66\x18\x3c\x3d\xa6\x0d\x64\x80\x6e\xd0\xbe\x1c\x5e\x67\xe7\x2a\x2a\x88\xf5\xbe\x59\x77\x5a\x45\x4a\x71\xbe\x79\xb9\x4a\xcb\x29\x36\xab\x92\xf0\x79\xd5\x85\x21\xb7\xc9\x6b\x0c\xba\x49\xfd\xcc\x2e\xc7\xd2\x88\x30\x2e\x3f\xeb\x1d\xba\x7b\x44\xa0\x72\x9a\x9b\x2f\x5b\xc5\xc0\x80\x5d\x1a\x67\x35\xe8\xa6\xf4\xba\x2a\x93\xb6\x9c\x19\x95\x98\xd6\x65\x29\x1f\x70\x4b\xb4\xa2\xd3\x6c\xdd\xc6\x82\x44\x3b\xe0\xc8\xa0\x3f\x26\xae\xdf\x8f\x29\x0e\x89\x92\x16\xcc\x92\x32\x6a\x22\x97\x74\x05\x6e\x9a\xde\x84\x12\x48\x94\x4f\x61\xd5\xa1\x66\xbb\x4d\x5d\x51\x98\x7b\x4d\xa6\x63\x02\xae\x4c\xb8\xcd\x5f\xa9\xb7\x62\x93\xe7\x59\x9a\xf6\x30\x60\x0c\xc9\xc6\xc6\xbd\x43\x6d\x46\xa7\xa8\xb6\x9a\x77\xd3\xb5\xf2\x73\x39\x0a\x09\xd8\x26\x5f\x30\xc3\xca\x30\xd4\x4e\x6f\x05\xde\xbb\xc3\x7d\x9b\xe4\xce\xa5\xda\x3c\xa1\x7d\x12\x13\x2d\x50\xa5\x8f\xb2\x94\x45\x71\x1c\x99\x44\x0b\x5f\x3e\x21\x3d\x3f\x1f\x88\x17\x3d\x4a\xf1\x14\x93\x41\x84\xee\x52\xc7\x29\x4a\x22\xa7\x67\x2a\xb4\xaf\x0f\xd6\x5b\x69\xb2\x1a\xb5\x0a\x27\x41\xe9\x8f\xf7\xe0\x63\x5c\x6c\x3c\xe7\xed\x64\x56\x44\xad\x41\x5c\x0c\x32\x0d\xad\xe1\x05\xbd\x43\xf9\xad\xaa\x34\xce\x4b\x75\xe1\x45\xaa\x05\x7c\xae\xf2\xc5\xeb\xcd\xd6\x8c\x79\x19\x06\xbc\xba\xef\xa9\x72\x51\x62\x7c\xe1\x15\x63\x36\xef\x34\x98\x5b\x0c\x8c\x92\xd8\xe0\xa7\x1a\xb5\x17\x5f\x74\xd7\x9a\xcd\x83\x15\x01\x53\x25\x8c\xe5\x76\xc1\xe6\xa0\xa2\xf6\x63\x31\x1c\x0e\x02\x2e\x8f\x84\x1c\xf8\xbf\x46\xbe\xcb\x8b\xee\x05\xb0\xc8\x0d\xd8\x03\x87\xab\x16\x63\x83\x53\xe3\xe7\x32\x0a\xaa\x58\x35\x1e\xb8\x10\xf9\xba\x19\xe4\x16\x07\x84\xc2\x44\x05\xf0\xe1\x21\xa3\x5e\x8b\x4f\xf1\x7b\x7a\x43\xd2\xb5\xdd\xa5\x14\x53\x4c\x72\x10\x73\xbe\x7f\x86\x65\x38\x93\x55\x9b\xe9\x1a\xf2\x95\x5f\x9f\x38\x46\xe4\x87\xca\xcd\x5d\xca\xea\xc8\xc6\x00\x64\xea\xa5\x50\xd4\xf3\xbc\x81\x17\xe9\x4f\x7b\x51\x6c\x4d\xc7\x4e\x05\x2f\x0b\x8b\x14\x56\xfc\xe7\xe2\x03\x81\x12\xed\xa6\x47\xe9\x74\xb2\xd4\x38\x9c\xa3\x8f\xa3\xca\xcd\xee\x92\x19\x93\xab\x67\xae\x9e\xaf\xd9\x3e\xd2\x86\x0e\xc4\x26\xef\xac\x37\x8d\x90\x17\x5e\x33\x2b\xa9\x1e\xf8\xaa\xb2\x86\x49\x75\x92\x6b\xd4\xcc\x10\x25\x51\x6f\xd0\x13\x45\x57\x25\xa0\xc3\x5c\x7a\x41\xe0\xf9\x79\xd7\xef\x2c\xf3\x8a\xaa\x96\x1e\x28\xce\xf7\x08\xb0\x89\x55\x1b\xa7\x7d\x98\x45\x75\x01\x65\x69\x39\x77\xb0\x22\x2f\x9f\x8b\x2c\xe9\x14\xf3\xf2\x29\x78\xc0\xcb\x9a\x87\xd4\xcd\x89\x4a\xb9\xfb\x35\x13\xaf\xf8\x9c\x8b\xa3\x01\xa4\x8d\x75\x7b\x18\x38\x48\x56\x32\x93\x27\xe9\xba\xc9\xf2\x15\xc9\x22\xa3\xf7\xe9\x6d\x9c\x89\x7a\x43\x02\x2f\x99\x89\x92\x7c\x2a\xa0\x53\x80\xaa\xf5\xc3\x3f\xce\x06\x4e\x2d\x5b\x66\x6d\x3a\xe0\xf1\xb0\x1c\x70\x60\x5f\x23\x96\x60\xf8\x0e\xfa\x37\x55\xa8\x03\x6b\xb2\xc4\x6b\x5a\x04\xd9\x83\xf2\x51\x5d\x35\xa2\x6a\x3c\x62\xb3\x54\x7a\x4e\xb5\x1a\xe9\xe5\xcb\xa3\x3a\x32\x92\x0a\x2d\xdd\x2f\xd7\x4d\x51\xd8\x9e\xae\x2f\x38\x04\xc8\x00\xeb\xf5\xc4\x2f\x01\xb3\x1b\x75\x92\x71\x24\xa4\xe2\xc3\xf4\x66\x54\x95\xa9\x59\xca\xd3\x6c\x49\x25\x16\x1d\x6a\x88\x39\x01\xa9\x11\xad\x3b\xc8\xda\x2a\x65\xe8\x32\xd1\x01\xeb\xf3\x79\x55\x6f\xa9\xf0\x18\xf9\xd5\x00\xbb\x87\xfe\x75\xbd\xf6\x66\xbc\x9f\xa5\x85\x95\x16\xad\x28\xef\x4d\x05\x6c\x84\xb6\x3b\x39\x92\xd8\x72\x1e\x1d\xb6\x68\x4f\x70\x18\x8a\x17\xe8\x3d\x3f\x6a\x90\x29\xda\xd9\x0c\xe5\x22\x54\x04\xf1\xf1\x6b\xf2\xe8\x88\xf8\xfe\x27\xec\x32\xc5\xb6\x73\x77\xdc\x9d\x71\x48\x39\xc5\xab\xb7\x87\x81\xbb\xfa\x31\x20\x28\x1d\x8c\x46\xac\x2c\x42\x8b\x9b\xca\xa6\xee\x22\x88\x9a\xe7\x94\xda\x31\x62\x93\xb0\x03\xba\xf9\x88\x8f\x40\xba\xee\xd8\xd4\x4b\x4b\xec\x7a\x31\x65\xe5\xe1\xbd\x80\x9d\x73\x2e\x74\x19\x50\x01\x13\xf1\x39\x2c\x17\xf2\xd1\x47\xc6\xf9\xdf\x12\xd5\x80\x43\xf6\xf3\xb7\x18\x15\x78\x9e\x58\x54\x4f\x8a\xaf\xed\x83\x0b\xcf\x2c\x3b\xd5\xdc\x4a\x76\x0a\x7d\x60\x89\xdb\x3c\x46\xc9\xe7\xf6\x89\x5e\xb0\x0a\x13\xb5\xd6\xb5\x06\xeb\x1b\x79\x14\x1c\xa7\x7a\xed\x8d\x58\x4f\x64\x58\xa3\x04\x1e\x91\xef\x4a\x70\x48\x97\x6f\x3c\xd5\x0c\x0d\x45\xbb\xab\xd6\x77\x61\xa2\x38\xf5\xb9\x70\xec\x39\x3d\x9e\xf4\x86\xc2\xeb\x6e\xda\xee\xd8\x7e\xf9\x9f\x5a\x88\xaf\x80\x35\x73\x65\x5c\x17\xb1\xf7\x06\x49\x34\x13\xec\xf1\x74\x33\x84\x04\xd3\xa3\x31\xe2\x5f\x1a\x95\x3b\x0d\x89\x12\x61\xce\xcf\x93\xe5\x5f\x8e\xa4\x52\x32\x43\xd9\xbb\xab\x8d\x20\x88\x76\xa3\x41\xf2\xef\x3b\x47\x24\xda\x03\xea\x52\x24\xe7\x2f\x0c\x03\x87\x5c\x6c\x66\x42\x43\x8c\xca\x08\xa8\xa6\x0c\xac\x8f\x6b\x53\x2d\x7d\xfd\xbb\x43\x6a\x74\xbb\x40\x9c\xc1\x79\xd7\xf4\x5d\x6a\x0a\x98\x47\x34\xd7\xe9\x75\x15\x23\x71\xd6\xb5\xc2\xd7\x2a\x33\x8b\xe2\xfb\x4d\xe2\x19\xbe\x49\x3d\x50\x5d\xd3\xeb\x99\xd6\x4a\x5e\x2b\x3d\x24\x0d\xf9\x10\xa6\xb9\xf8\xaf\x22\x11\x23\x22\x19\xe3\x74\x25\xba\xd6\x1c\xf4\x3a\x40\xe8\x84\xc3\x67\x39\xcd\x7a\xe8\xcf\x94\x8f\x00\x1e\x04\xe9\x0b\xbd\x9e\x48\xb0\x09\x6f\xe6\xa0\xa0\xe6\x09\xa5\xc1\x74\x7d\xba\xf2\x7b\x48\xd8\x6e\x9b\x50\xfc\x78\xe3\x8d\x7a\x6e\x63\x64\x8c\xe1\x78\xfd\x37\x44\xbd\xf0\x8e\xfc\x32\x22\xb7\x77\x2b\x72\xa9\x0b\xf5\xbe\x71\x72\x21\x2a\x72\x43\xec\xb4\xe7\xc7\x36\xf4\x61\xdb\xde\x51\x7b\xd9\xa5\x31\x6e\x4a\x1e\xc6\x35\xaf\x93\xf6\xf6\x4d\x58\x34\x9f\xb0\xf6\x49\x10\x90\x26\x39\x4c\x1f\x7f\x73\x3a\x88\x77\x86\xb2\xff\xc7\x43\x52\x82\x3f\x0a\xfc\xb0\xa3\x57\x92\x07\x75\x9c\x04\xe1\x84\x9a\x92\x06\x0c\x87\x40\x2b\xed\x99\x5e\x4f\x12\xac\xcf\xd5\xa3\xa4\xb0\x49\xdb\x02\x82\x40\xee\xad\x53\x65\xd2\x7c\x85\xc3\x64\x04\xb5\x83\x56\x9a\xb4\x6c\x96\xd8\xf6\x0e\x71\xbf\x55\x30\x46\xc6\x0b\xc6\xfc\x5f\x89\xbf\xe7\x85\x64\x82\x87\xf0\x47\x72\x92\x38\x96\xec\x5a\x05\x0f\x95\x89\x23\x9b\x08\xdb\x99\xfb\x04\x09\x6f\xab\x9c\xae\x93\x89\xa8\x79\x25\x1f\x80\x92\xb1\x1f\xff\x05\x1e\xdb\x51\xf7\xba\x20\x71\x29\x3d\x3c\x35\x06\xbb\xac\x79\x51\xec\xfb\x02\x4f\x76\xbc\x0b\x8f\xd3\x3e\x5c\x97\xb1\x21\x71\xa6\x39\x07\x3c\xc7\x61\x87\xe9\xf8\xdd\x21\xc7\xde\x52\x03\xdc\x41\x6b\x75\x17\x2c\x07\xc2\x97\x7f\x4e\x72\x61\xd3\x4d\x82\x79\xfd\x00\xc9\x0a\x44\x9c\xb0\x6b\x88\xec\x6b\x15\xc4\x83\x07\x4b\xa7\xa0\x80\xdd\xd2\xd3\x0b\x47\x26\x66\xee\x73\xee\xeb\x51\xc4\x15\xf6\xc4\xd5\x61\x98\xa5\xa9\xa6\x7b\xec\xe5\xa8\xf8\xfa\x9a\x29\x94\x00\xcc\x4b\x77\x90\x8e\x87\xcf\xbb\xf5\xcd\x7a\x3a\x28\xd4\x6b\x77\x68\x8c\x31\x98\x86\x3b\x43\x62\x33\xe8\x74\xbd\x13\xe2\xf8\xef\xcb\x1f\x70\xbc\xf8\x81\x8a\x55\xc8\xbe\x33\x93\x45\xf1\xfa\x74\xc8\xe0\xde\x6d\xd0\xc0\x5d\x1f\x53\x68\x97\x37\x77\xc8\x8d\xad\xb1\xac\x34\xd4\xb5\xd2\x4c\xcb\xd7\x1e\xec\xf0\x73\xc6\xcc\x56\xf2\xba\xa7\xb2\x25\xf4\xed\xb4\x3f\xb0\x41\x48\xa1\xd3\x74\x78\x24\xa1\x4f\xeb\x25\xaf\xf2\x1f\x1c\xdb\x73\x15\x8d\x2c\x8b\xf5\xf6\xe0\xdf\x91\x90\xa3\xf2\xc3\x76\x57\xb9\x50\x1d\xc9\x9d\xcc\xb1\x0b\xcb\xc4\xa9\xf0\x0d\xb9\xf3\xf3\x8a\x9e\xbe\x22\xb6\x06\xa1\xdd\xee\xe6\x56\x4e\x6b\x97\xb5\x9f\x6a\x06\x37\xe4\xf1\x11\x91\x12\x0f\x7a\xd3\xcc\x7c\x23\x23\xe1\x11\x05\x1e\x38\x74\x87\x2a\x0f\xb7\x2b\x0b\x55\xb1\xf4\x18\x07\x34\xbe\x7c\xc0\x21\xf3\xb7\x4e\xc4\xab\xfb\x5e\x17\x1a\xf6\x81\xf6\x88\x38\x56\xc4\xf2\x4d\x1c\xa0\xb0\x8a\xda\xde\xc6\x51\x2b\x4a\x07\xac\x59\xa9\x22\x83\x7a\x33\xe1\xf3\xef\x17\xd6\x12\x53\xd8\x4e\x79\x72\xfa\x42\xbd\xf6\xb4\xe9\x0d\x61\x6f\xa2\xa4\x15\x0f\xda\xb6\x3d\x13\x74\x96\xaf\x0e\x49\x08\xf7\x22\x0a\xc0\x70\x15\xb7\x8b\xdb\xcb\xbe\x93\xfe\x51\xa5\x46\xd3\xd2\x20\x5e\x91\x52\x32\xbc\x8d\xef\x52\xd7\xd7\x15\xd9\x34\xce\x02\x7a\x4e\x9e\xb4\x30\x45\x6a\x73\x04\xf5\x00\x00\x5e\x95\xbf\x74\x3a\x3c\x01\x64\xc5\x8d\x07\xb9\x59\xb6\xc5\x3a\x3c\x52\x2f\xfb\x17\x12\x85\xc7\x89\x1a\xf5\x47\xa4\x44\xa2\x71\xb6\xfe\x91\x4f\xae\x97\xf3\x54\x74\xb3\x74\x2d\x99\x0a\x15\x59\x90\x0c\x63\x99\xfe\x6c\xc8\x0c\x67\x54\xaa\xcd\x4c\x14\xaf\x19\x18\x58\x9c\xd1\x20\x4e\x57\xc2\x3c\x4a\x6b\xed\xa4\x15\xb9\x6c\xda\xb5\x89\x55\xe8\xa0\x2c\x84\x28\xef\x46\x3b\x58\x45\xf1\xff\x93\xbf\x43\x12\x7f\x6a\x44\x89\xf4\xdf\xa6\xb0\xf4\x07\xb0\x63\x08\x0d\x6e\x21\xea\x80\xa9\xba\xf6\x48\x2a\xdc\xc2\xb6\xba\x89\x2a\xe2\xfa\x7c\xfe\xcd\x06\x71\xca\xdd\x9c\xe0\x07\x9f\x3b\x54\x37\xfd\x7e\x96\xf6\xb3\xc8\x14\x8e\xee\x02\xd5\xb1\xc3\x8d\x80\xba\x38\x4c\xde\x38\x7a\x5b\x04\xf8\x8b\x63\xf1\x09\x69\xff\x42\x66\x5b\xbd\x24\xc7\xd5\xc8\x4d\x2f\xf2\x42\xae\x55\xaa\x46\xcc\x9d\x55\x1e\x50\x39\x97\x42\xb2\xe2\x14\xd6\xca\x59\xf4\x0c\x77\xbe\x1f\xee\x9e\x4c\x13\xa6\x6c\xdb\xa8\x82\xf6\xb3\xc8\xc0\x58\xe0\xf0\x38\x01\x6a\x1e\x56\x6f\x6c\x57\x6d\x2c\xcc\x4e\x01\x57\xfe\x0f\xc9\xa4\x3c\xc4\x69\x88\x7f\x78\x58\xa5\x10\x5d\x86\xb8\x45\xa4\x9d\xf2\xea\x16\xc9\xe8\x39\x17\x29\xa0\xa6\xf3\x7e\x5a\xa0\x36\x8c\xbc\xe4\xc7\xcc\xea\xf0\x71\x83\x7b\x24\x24\xea\x11\xea\x28\xce\x5c\x78\xdf\xe2\x1e\xcb\x14\xcd\x34\x43\x21\xd7\x2c\x2f\x47\xe2\xf0\xae\x22\x86\xd1\x96\x8a\x46\x48\xac\x4d\xea\x3d\x2c\x2c\x08\x2c\xd1\x1f\x91\x3e\x31\xe7\x39\xde\xce\x37\x9e\xf0\xfb\x25\xb6\xa6\xbd\x4b\x46\x0b\x0e\xe1\x4f\x24\x50\xc1\x34\xcc\x8c\x82\xc8\x15\xea\x52\x58\x00\x0f\xc7\x55\x15\x24\x44\xc5\x76\xfe\x3e\xb6\xa5\xd3\x87\x0f\x6e\xf9\xe3\xcd\xe0\xe7\x15\x99\x59\x05\x77\x47\x48\x0c\x28\x28\xdf\x91\x51\x3a\x0f\xc2\x33\xbc\xd7\x02\x50\xf0\x16\x51\xf1\xb3\x3a\x7f\x6e\xb3\xd2\x4c\xeb\x06\xc5\xd4\x7f\x0f\x4f\xea\x8e\x07\x99\x1f\xb7\x88\xcb\x77\x43\x20\xf7\x3d\x18\x5b\xbd\xc1\x2e\xd3\xcf\x13\x4f\x6a\x6e\xcb\x53\xbc\x65\xb5\x62\x86\x02\x23\x9a\xf6\x1d\xea\x3d\xe4\xa8\xcf\x78\x68\xce\xbf\x13\xdd\xf6\x33\xd4\x06\xdc\xb2\x79\x1e\xa5\xc9\x2e\x72\x50\xcf\xca\x62\xc7\x0a\x3c\x49\xbc\xdb\xea\xb0\x3b\xdb\x2e\x13\x81\xea\x28\x4a\xe0\x4e\xec\xb4\xdc\x71\x1e\x62\x51\xbe\xaa\xfe\xd1\x04\x3a\x66\x7e\xbe\x6e\xf2\x19\xa9\x18\xc9\x36\xc5\x8b\xed\x6a\x06\x23\x84\xd6\x1e\x78\x7d\x7f\x88\x9f\x0f\xda\xcd\x1e\xc2\x1e\xd9\x4e\x3a\x25\x87\x96\xa3\xab\xad\x7d\xed\x37\x3d\xc3\x66\xa8\x70\xdd\xae\xe0\x52\x9a\x2b\xa3\xfc\x35\x93\xd4\x88\xee\xf6\x02\xd1\x9e\x85\xdd\x6e\x7b\x4b\xb6\xdd\x76\xe1\xa3\x43\x36\x31\xcc\x69\xf8\xc4\x18\x79\xdb\xde\xd2\xdc\x60\xcb\x9d\xe4\x35\x7c\x45\x62\x1a\xa5\x04\xd7\xaa\x21\x4c\xcb\x5e\x54\xd0\x61\xc9\xa7\x90\x0a\xd0\xfc\x2d\xa9\x6a\x4f\x8d\xc2\x71\x73\xa6\x11\x4e\xa9\x93\x50\xf1\x86\xa5\x3c\x29\x3a\x75\x8e\x77\x5c\xb6\x26\x86\xf4\x3b\x0d\x02\x2a\x5e\x1b\x52\xc2\xea\x28\x15\xc2\x73\xdb\x7e\x52\xbe\x0d\x47\x0f\x93\x4b\x3e\x1c\x86\xa2\xe7\x9f\x1e\xd5\x16\x16\x1e\xfc\xad\xbf\x80\xe0\x40\x5c\xf5\xbf\xfa\x57\x9a\xa4\x01\xb0\x67\xe4\x43\xd6\x0f\xbf\xdc\xa4\xb2\xc3\x43\xad\x67\x20\x36\xdd\x36\x0a\xbc\x62\x7b\x85\x28\xd6\xf5\xb0\x04\xd4\xcd\x5f\xfa\xcb\x4d\x89\xd4\x5c\xac\x4e\xec\x7f\x4f\x8e\x02\x4b\xc8\xb5\x5f\x99\x20\xe7\x97\x94\x7b\xd4\xeb\x6b\xfe\xd1\xb3\xab\x1c\xd8\xe7\xd9\x55\x2a\x9c\xaa\xb7\x06\x26\x2b\x6c\xa6\xba\x0a\xbe\x6e\x73\xc0\xd7\x70\x2a\x55\x86\x96\xb2\xa8\x28\x62\xe5\x26\x44\x3c\xfb\xff\xc8\xee\x70\xed\x82\x5c\xe9\x0a\x55\xb8\xa8\x27\xf2\xc4\x8a\xb2\xc6\x14\xbe\x4b\x92\xd5\xef\x4e\x12\x67\xbd\x72\xb0\xfc\x54\x1c\x69\xec\xeb\xfa\xf4\x03\x07\xb6\x12\x77\x21\x32\xbb\x47\x9c\x6b\xab\x51\x5a\xfa\xb2\xb0\x88\xb0\x9e\x9b\x14\x98\x6c\x56\x56\xbc\x7a\xa6\xd5\x4d\xa7\x49\x91\xfb\x13\x7c\x3d\x8e\x91\xeb\x63\x34\xf7\x35\x2f\x0a\x3e\x85\x14\x87\x3b\x98\x94\x19\x62\xd5\xe6\x3b\x88\xf7\xfa\x3e\xfa\x38\x50\xc7\xd1\x73\x0d\x59\x7a\x34\x8b\x63\xf7\xfe\x54\x5e\x0d\x5b\xe0\x01\xe5\xd5\x82\x10\x7f\xf9\x03\x51\x5e\x08\x56\xc7\x4f\xd9\x9f\x6a\x86\x1a\xc6\xb3\x23\xce\xe3\x90\x3f\x59\x64\xeb\x51\xd2\x79\x5c\x4e\x26\x38\x2e\xd7\x61\xa5\x5d\x82\x03\x8b\xd5\xb3\xed\x2e\xbe\x72\x70\x2c\x27\x02\x5b\x73\x6f\x48\x41\xea\x75\x9c\x54\xfa\x6d\x38\x0c\xf0\x79\xcd\xf1\xe1\xf4\xa9\x49\x2e\x56\xff\xa1\x49\x6e\x00\x56\x3e\x82\x96\xf7\xc7\xbb\xbd\x93\xf5\xa9\x70\x9a\x4b\xbb\xf1\xe6\x91\x61\x08\x2c\xce\x91\xd7\x20\x64\xa3\x3b\x82\x1e\xf8\x3f\x43\x72\x07\x31\x96\x2a\x6c\x38\x8f\x5e\xde\xde\xc7\x00\xc1\xc8\x5d\xa2\x50\xec\x47\x84\x65\x6d\xe5\xcb\x4b\x7f\x42\x71\xf6\xf9\x31\x8f\x24\x8b\x96\x06\xe5\xd1\x3a\x15\x82\xa6\x1f\x0e\x39\x8e\x26\xe4\xd8\x55\xaa\xa1\xaf\x44\x49\xdb\x66\x2d\x93\x29\xf2\x17\xab\xf9\x06\x8c\x98\xde\x4c\x70\xc5\x7c\xa5\xbe\x16\x29\x72\xd6\xf1\xd5\x50\x2d\xf4\x62\x63\x2f\x81\xa2\xb2\x95\xf5\xe9\x00\xaa\x3e\xd9\x20\xea\xc5\x3b\x44\x2a\x7a\x92\x21\x98\x77\x26\x0e\x92\xfd\x0b\xf5\x28\xcf\x8c\x8d\xa1\x07\x89\x24\xe7\xad\x21\x75\x7c\xdf\x22\xac\x5f\x3f\x4b\x7b\x69\x11\x25\x9d\x69\x6a\xe1\xda\x80\x95\x46\x64\x5f\x6b\x06\xeb\xb4\x41\xad\x0e\xb5\x51\x45\xd0\x98\x9b\xa4\x55\x0c\x4c\xb6\x4e\x7c\x14\x77\x89\x39\xff\x2e\xa5\x65\xdb\x69\xbb\xa3\x29\x12\x4d\xb3\x60\xde\x5d\xce\xa5\x2a\x4d\xdf\x4b\x8b\x34\x6b\xad\xb7\x62\xab\xb5\x48\x07\x0b\xa7\x08\xf3\x42\xe3\xd9\xad\x5d\x62\xf5\x37\xde\x78\x5a\x36\xb6\xc7\x90\x1d\x58\x0c\x9c\x7b\x3e\xad\x0b\x78\x8e\xc3\x8b\xcb\xd6\xc2\xcd\xef\x36\x42\x8b\xff\x03\x29\xb9\x78\xb8\x7f\x50\x36\x87\x91\x84\x4f\xf2\xae\x6c\x02\x1c\xb2\xaa\x31\xe3\x2c\xa9\x8c\xb3\xd3\xee\xf3\x10\xe1\x7f\xa6\xe9\x58\x17\xb7\x10\xe2\xf8\xb0\x64\xff\x50\x61\xd7\xd2\xb5\x22\x89\x27\x22\xdf\xfd\x0b\x75\x33\x28\x52\x0d\x62\x5d\x62\xa3\xe6\xc9\x4b\xae\x91\x98\xd5\x19\x56\x00\xec\x46\xab\x26\xdf\x16\xbc\xe3\x7e\x9a\x14\x3b\x43\xbc\xf2\x80\xb5\x58\xde\x95\x11\x43\xdc\x54\x13\x3b\x81\xb7\xd9\x06\x26\x6b\x97\xae\x21\xff\xe1\x1c\x8d\xcc\x03\xda\xb6\x69\x6c\xd6\x81\xf5\x40\xe2\x50\x35\x93\x9c\xa8\x54\xcd\x73\x57\x4d\x66\x41\x66\xe7\xea\x7d\x13\x65\x9a\xd5\x57\xe6\x24\xa2\xb2\x3d\x4a\x26\xb5\x6d\x5b\x4e\xa1\xcf\xf7\x88\x78\x27\xf1\x67\x13\xe9\xae\xfd\x0b\xf5\xd8\xb4\x56\xe2\x01\xb8\xb0\x17\x5c\x8f\xca\xa7\x74\x78\x3e\xc0\x52\xc5\x20\xdc\x24\x6f\xe5\xd0\xd7\xbe\x36\x45\xe4\x91\xe0\x38\xc3\xe7\x15\x05\xe1\x18\xc0\x1e\x25\xb9\x37\x48\x6c\xde\x4a\xa7\xa8\xc1\x44\x56\xe5\x18\x07\x37\x2c\xd5\x43\x5f\xfa\x6f\xc5\xe9\xa0\xbd\xa5\x72\xc5\xa0\x64\x3a\x5e\xa2\x3c\x1f\xd8\x6d\x55\x25\x5e\x55\x04\xc1\xb7\xb8\x66\xb3\x40\x2e\x7e\x9a\x75\x34\xa4\xce\x19\x25\xc8\x0d\x61\x6d\x21\xe9\xa5\xd7\xa3\x67\x18\x95\xdc\x1b\x24\x42\x86\x33\x3f\xaf\x5e\x92\x42\x32\xf5\x86\xa2\xb2\x4e\xb4\x6a\x9f\x1c\x07\xa1\x94\xe3\xec\x20\x3f\xe5\x32\x42\xd5\xfe\x1d\x54\x03\xfc\x1e\xde\xef\xd2\xf7\xd7\x87\xa1\xec\x78\x87\x79\x50\xb6\x2b\x8a\x09\x11\xc4\xb5\x61\x78\x9a\xdb\x40\xc8\x61\x66\xa7\xe0\x1a\x22\x40\xd9\x64\x56\xc8\x5b\x62\x35\x58\xb3\x14\x10\xa6\x0f\x71\x76\x61\x92\xaf\x4d\xac\xd4\x32\x82\xef\x46\xc9\x8a\x44\x72\xbe\xac\xc8\xbd\x4d\xcf\x11\x64\xac\x0c\x82\xd2\x2c\xd2\x9e\x3e\x78\x34\x53\xa3\x00\x12\x99\x6a\x3e\x3d\x66\xbb\xa3\xdc\xb6\x67\xe4\x89\x1d\x1e\x9c\x5c\xde\xb3\x92\x66\x40\x82\x12\x0d\x3e\x4e\xc1\x3f\x88\x55\xdf\x23\x64\x42\xcf\x26\x03\x4d\xc0\xc2\x46\xa0\xbb\x4e\xaf\x27\x12\x2f\x6f\xbc\x31\x4e\xef\x20\x3b\x0c\x3e\xf1\x71\x56\x0d\x3d\x5e\xd5\x96\xbc\x6c\xe2\x58\x92\xa1\x0e\xa5\x88\xd9\x41\x0d\xf4\x3c\xf9\x70\xca\x0f\xe6\xa8\x01\x5d\x84\x9c\x77\x4d\x51\xd8\xcc\xb6\xd1\x6d\x02\xe0\x28\x73\xdc\x29\x8b\x0f\xc2\xbf\xa3\x13\xdb\xed\xb5\xb9\x43\xf5\xce\xc0\x64\x26\x29\xac\x63\xe9\x74\x66\x35\xf4\x88\x30\x9b\x84\xf6\x5a\xca\x64\xfb\x9d\x49\x6d\x60\xcf\x30\x50\xb4\x6f\x92\x40\x22\x8f\x62\xd0\x76\x58\x37\x38\x16\xba\x03\x5c\xde\x3a\xfc\xca\x92\xcd\xe2\x08\x6d\x0b\xea\x47\x37\x42\x7f\xf2\x29\x6a\xfe\xcc\xd3\x9e\x5d\xeb\x9a\x62\x8a\x62\x33\xbc\x3f\xb6\xce\x1d\x92\x35\x3a\x45\x16\x2a\x19\xf4\xa6\x98\xcd\x5e\x86\x1a\x2e\xd5\xe3\x24\xef\x7b\x77\x1c\xf2\xfe\x66\x54\x23\xd6\x74\x55\x8a\xd7\x1b\x0a\x80\xe5\xb5\xb1\x82\x30\x80\x0f\x09\x28\xf9\x90\x40\x18\xad\x34\x69\xa7\x58\xe4\x58\x24\x38\x0b\xf5\x9a\xc6\xa3\x6d\xe3\x34\x63\xb9\xe0\xf3\xcc\xa9\x7e\x9e\x84\x85\x7b\x26\xeb\x44\xc9\x0c\x89\x5d\x9c\x80\x1f\x83\x17\x3a\xc3\xd4\xa5\x68\xf7\x43\x89\x6a\x8c\xee\xe9\x7c\x15\xf4\xb8\x58\x8b\x5a\xc8\xb7\xbb\xce\x86\x72\xff\xb8\xc6\x86\x47\xe5\x32\xdb\x16\xc8\x25\x67\x52\x81\x98\xd8\x1c\x12\x47\xff\x66\x90\xaf\x30\x59\x16\xe5\x93\x4a\x20\x08\x70\xde\x1d\xd2\x24\x5f\xa5\xac\x09\x4a\x87\xe5\x89\x5f\xf3\x15\xf9\x6d\xb2\xbb\xe1\x93\x5c\x19\x8e\xf5\x23\x12\x55\xd0\x9a\x35\xc5\x74\x30\x0f\x9f\xc8\x2b\xe9\xf5\xb8\xd5\xc7\x1a\x76\x07\xc2\x56\x07\xf7\xc0\xbe\x7a\x7f\x50\xec\x90\xb1\x85\x2f\x2f\x74\x90\x8b\x9b\x23\x84\x2d\xa8\x11\x9f\x94\x88\xc9\xc1\x7e\x03\xaa\x4d\xbb\x0f\x10\xc0\x4c\x35\x29\xe3\x9c\x49\x4e\x3d\xa8\xd6\x87\xee\xa0\xbd\x4d\x8a\x82\xc5\xf2\x13\xcf\xd0\xeb\x5e\x29\x74\xd2\x13\x17\x02\x5f\x4a\x56\xdf\x67\xb6\x87\xfb\x55\x7c\xcb\xae\xa4\x8b\xd8\x02\x01\x09\x54\xc0\xf4\xba\x42\xf0\x74\xb1\x1e\x25\x09\xc4\x7d\x5f\x0f\xa9\x2b\x1f\x99\x61\x5b\xba\xc5\x16\x10\x7f\xda\xf5\x3e\x13\x18\xcd\xde\xc7\xea\xc5\x4a\xd1\x5e\x62\xb6\x3b\x30\x9c\xdf\xa7\x3a\xce\xfb\x55\x12\xc5\x65\xb4\x1c\x25\x36\x5b\x9f\x22\xb4\xf5\x49\xca\x25\x3e\xa4\x24\xf9\xf5\xb1\xf0\xce\xae\x5b\x24\x94\x31\xd8\x77\xa9\xe8\x7f\x61\x48\xad\x5f\x6c\x5e\x4c\xb2\xfe\x04\xd0\x42\x0e\x29\xcd\xac\x5f\x70\xea\x80\x95\x06\xb3\xa4\xf8\xec\xf3\x4f\xe1\xd4\x75\xf0\xef\xa0\x28\xa8\xcc\x4a\x28\x9a\xdf\x66\x51\xc6\x0f\xe4\x40\xf3\x75\xf6\xd2\x67\x50\x16\xc6\xc6\x38\xdf\xd4\xec\xdc\xb8\x68\x01\x9e\x6b\xc7\x28\x78\x33\x1d\x9b\xf5\x6c\xa1\x52\x75\x9e\xb6\x37\x38\xda\xc7\x2b\xe0\xbd\x8b\x75\x13\x65\xfd\xd8\x24\xbe\x97\x0b\xb0\x8a\x5f\xe0\x81\xf5\xa6\x4a\x75\xc3\x0c\xda\x11\x84\xbc\x50\x3a\x47\x22\x46\xaf\x89\xf3\xc7\x1e\x6e\x75\x43\x7b\x3f\x8a\xcf\xda\x65\xa1\x37\xe4\xc1\xf7\xa2\x38\xb6\xd9\x34\x9e\x04\xf0\x23\x65\xb9\xd4\x9b\x46\xa8\xee\x2b\x5d\xb4\x63\xb2\x25\x12\xad\x28\x76\x5d\xc7\x38\x37\x8e\xc9\x42\xd3\xeb\x31\x68\x45\xd4\xce\x1f\x93\xc9\xc0\x72\xb8\x31\x24\x7a\x64\xf4\xee\x60\xfe\x1e\x6f\x32\xf4\x4c\x26\x16\x93\x01\xe8\x27\x3c\xab\x2b\xb0\x02\x18\xec\x8f\x84\xc2\xc3\xeb\x3c\xed\x77\x7f\xa4\x4f\x8d\xf2\xfc\x7b\x63\x4a\x76\xb1\x00\x1a\x4b\x63\x86\x05\xf4\x7b\x8d\xc0\x45\xfd\x7b\xe4\xdf\x94\x11\x7c\x3e\x1d\xca\x99\xd0\xb8\x73\x69\xdc\xf2\xd9\x90\xfd\x00\xbd\x8c\x5e\x93\xd1\x5c\x8b\xe2\x38\xdf\x42\x96\x19\x68\x0d\xab\xd2\x62\x5d\x93\xb4\xd3\x01\x00\x62\xde\xa3\x5d\xf0\x2a\x3a\x2c\x9c\x9b\x0d\x92\xc7\x64\xc2\x14\xcc\x30\x0a\x79\x25\x19\xdd\x39\x00\x9c\x1c\x16\xfe\x59\x88\x01\x13\xce\xc4\xf1\x11\x60\x5f\x61\x3d\xdd\x83\x4d\xf4\xde\x81\xe7\x3b\x9f\x69\x92\x62\xc4\x27\x95\x14\xcb\xe0\x43\xae\x85\x12\xbc\x46\x03\x7a\x53\x55\xf0\xf7\xe9\x3c\x52\xfe\x54\x67\xd7\xa1\x98\x1f\xc5\x21\xb4\x96\x66\x2b\xfe\xa8\x84\xbd\x51\xa6\x66\xbd\x61\x09\xfe\xa8\x70\xe0\x0a\x08\x11\x82\x55\x4e\xaf\x03\xb6\x22\xb3\xf1\xa0\xad\x0a\x00\x88\xf0\x8f\x0d\x03\xa0\xeb\x18\xf9\x0e\xad\x34\xef\x45\xad\xa9\x72\x6a\x01\x0b\xff\x09\xb1\x70\x5f\x96\xe5\xe0\x14\x5d\x48\x75\x27\xcd\x7a\x60\x06\x28\x57\xaf\x9b\xd1\xd0\x4f\xa2\x22\x7a\x6e\xde\x43\x73\xc9\x09\x22\x06\x58\x4a\xb3\x4c\xd4\x4e\x50\x51\xc3\x14\xfe\xa0\x11\x0e\x8c\x1f\x54\x15\xba\x96\xad\x0d\x8c\x22\x6e\x80\x42\xb1\xfa\xd4\xc4\x41\xe0\xa9\x9a\xa2\x38\x96\x98\x16\xfb\xf6\x77\x30\xa5\xc8\x66\x5c\x6e\xb0\x2a\x26\x05\x8d\x99\xcd\x07\x31\xe2\x37\xe7\x32\x91\xfb\x34\x24\x00\xfa\x9a\x13\x56\x51\x6a\xab\x46\xc8\x01\x1f\x1f\x12\xed\xde\x25\xca\x02\x20\xda\xf1\x8d\x7c\x9f\x30\x29\xc2\x27\x15\xa2\xf2\x28\x12\x47\x6f\x0d\x2c\x06\x9e\xfa\xff\x5e\x0f\x2a\x67\x0c\x68\xae\x79\x5a\xbf\xcd\x71\xae\x6b\xbb\x26\x3f\x5c\x85\xa6\x7b\x92\x75\x41\xc4\x05\x28\xc7\x46\x89\xc9\xc8\x98\x9e\x26\xfb\x62\x96\x0b\x9b\x3d\x23\x93\x8e\x28\x93\x72\x2f\x4f\x7c\x69\x54\x1a\x18\x87\x7c\x2e\xc7\x05\x1b\x5d\x59\x53\x91\xac\xb9\x23\x06\x0f\xde\xc1\x11\xbc\x11\x8e\xbe\x8b\xac\x66\x34\x35\xe2\xb8\xe2\x12\x5e\xd6\x2b\xc2\x87\xe6\xad\xa7\x9a\x72\x48\xc3\x23\xba\xcb\x1d\x6a\xdf\x6f\x10\xe7\xda\xe6\x30\xc8\xd4\xcd\xc0\xac\x38\xbe\x3b\xdf\x76\xb1\xf3\x4f\x09\x15\x19\xa6\xfc\x54\x85\xdb\x53\x6f\x0f\x7a\x7d\x17\x8d\x29\x61\xb8\xac\x12\xc4\xd8\x17\xb9\x20\x39\x39\xab\x8b\x07\x16\xeb\xb1\x19\x24\xad\xae\x55\x0d\x13\x24\x81\x8e\x72\x2f\xde\xd1\x80\x6a\x5b\x33\x2b\x76\x3a\xb4\x3d\x9d\x20\x81\xd2\x6f\xcb\x9a\xd3\xff\x3f\x24\x6a\xdb\x6f\xfb\xa6\x44\x93\x74\xb2\x75\x49\x45\x3b\x19\x3f\x6e\x44\x0b\x4d\x46\xdf\x46\xc6\xde\xb9\x9a\x04\x6b\x3d\x83\x2f\x76\x68\xd2\xad\x91\x71\x69\x3e\x13\x3b\xc8\xd2\x7c\x90\x75\x6c\xaa\x2c\x2b\x58\xa8\x27\xa9\x69\xf5\xe4\x58\x4a\xc5\x26\x45\xd4\x42\xcf\x07\x13\x50\x61\x3f\x6e\xc8\xb1\x88\xd0\xe0\x5f\x55\x51\xbe\xaf\xa7\x2b\x69\xd7\xf4\x00\xd1\xf7\xea\xf1\x0b\x5e\xa5\xe9\x14\x89\x48\x74\x06\x51\xdc\x96\x42\x74\xd0\x0d\x90\x33\xd3\xa1\x62\x2a\xda\xea\x96\xa3\xbc\xeb\xb5\xa3\x90\x8c\x80\x35\xc5\xb0\xdd\x19\x53\x16\xa9\xe4\xf3\xc8\xa2\xe5\xc0\xca\xe1\xf9\x03\xbd\x22\xdc\x07\x1e\x95\x9c\x9b\x81\x23\x40\x72\x04\x42\xcc\x26\x34\xb6\x87\xdb\xf1\xfa\x73\xe5\x5b\xa0\x83\x49\x15\x23\xf1\x85\x4f\xe0\x8c\xc3\xe2\xb9\x01\x1f\x03\x29\x1b\x2d\x37\xc0\x9b\x7e\xd0\x20\x12\x85\x3b\x32\x0c\xc8\x76\x43\x1b\xcc\x67\xc2\xca\x09\x57\xd4\x5f\x63\x8c\x8e\x0d\x39\x2a\xfd\xb2\x21\x85\xc9\x33\x42\x05\xc8\x8a\xb4\x98\xbf\x27\x46\x61\x8e\xdf\x41\x9e\x19\x0e\xd2\x76\x54\x85\xb0\x61\x4f\x35\xc8\x75\x82\x62\x10\x5c\xfe\x4d\x75\xa9\x1d\xcd\x2c\x2b\xf8\x15\x83\x2c\xb1\xed\x69\x6a\xcd\x38\xad\x01\x1c\xec\xc3\xbb\x4c\x31\xfb\x6e\x23\xb4\x73\x94\x9e\x67\xc8\x41\x24\x76\x39\x2a\xdc\x6e\x66\x31\x54\x04\x34\x9f\x63\x2f\x38\xe0\xe9\xb3\xf4\x00\xfd\x34\x13\x32\x6f\x61\x83\xc5\xfe\x38\x09\x03\xa5\x37\x8d\xd0\x6c\x77\x84\x07\xeb\x08\x25\x50\xb2\x32\xea\xca\xbc\x08\x05\xf3\x43\xeb\x75\xc3\xad\x95\xc2\x2c\x61\x19\x7b\x88\x73\xf8\xc4\x85\xad\xec\xf9\xaf\xee\x7b\xbd\xfe\xf2\x5c\x8d\x88\x87\xee\x0d\xc3\xb2\x1d\x27\xc0\x5b\x95\xe4\x52\x69\xf4\x82\x06\xab\x63\x51\x43\xdb\x04\xd2\xde\xb5\x09\xfa\xc5\xfd\x0b\xf5\xcc\xbe\x35\x88\x32\x10\xd9\x6d\x5e\x86\xfb\x36\xa9\x0a\x56\x9a\x09\x9b\xa8\xf0\xb6\xc3\x8e\xc8\x90\xe8\x8d\xaf\xf8\x2f\xc7\xa9\x41\x95\x26\x78\x6d\x3b\x9a\x5b\x5b\xce\xb0\xba\xae\x8e\x25\x48\x7c\x0f\xa3\xea\x02\x23\x8d\x03\x57\xe9\xb6\x2e\x24\xbd\xa3\x56\xe7\x37\xb3\xaf\x0a\x3a\x0a\x5f\x52\x6b\x86\x1e\xc1\x73\x8c\xb6\xe6\x5a\x96\xd3\x1b\xd4\xf6\x3f\x19\x2d\x87\xe8\xe7\x0d\xdb\x89\xd7\x9f\x28\xff\x0d\x51\x9c\xc6\x07\x5e\x6e\x6b\xee\x90\x9e\x31\xb7\x87\x63\xa0\x91\xd0\x17\xa3\x9d\x29\x7e\x05\x85\x8e\x93\x8b\x22\xbd\xe1\x56\x53\xb9\xf5\xf4\xff\x93\x1c\xd0\x1f\x4a\x93\x09\x0e\xce\x1b\xc0\x80\xc3\x24\x6c\x00\xb2\xa0\x37\xfe\xa8\x58\xb7\x26\xcb\x35\xac\x72\xc1\xbc\xac\x30\x00\xc1\x67\x9a\x9c\xa7\x97\xd1\x70\x15\xef\x27\x43\x29\xb8\x95\xd9\xc2\xee\x94\x27\xc5\x69\xb8\x41\xf0\x75\xb4\x28\xfb\x80\x47\xbe\xdc\x49\x49\x04\x05\xe0\xcf\x99\x8b\x9d\x88\x5a\xb7\x4d\xac\x3e\x90\x20\xf5\x63\xb3\xae\x6e\xb8\xd7\x33\x0c\xec\xb9\xe7\x26\x9c\xf7\x57\xf7\x2d\xd6\x5b\x71\x9a\xff\x89\xe8\xa9\xb1\xc3\x2a\x1f\xf4\xca\xf5\xed\x81\xe9\xdf\xa2\x58\xed\x5b\x15\x01\x73\x3d\x2a\xc7\xc1\x84\x5f\x80\x8b\x78\x81\x38\x90\xb9\x69\xe3\xcd\x34\x6b\x3b\x2c\x8c\xba\x40\x62\x9a\x9d\x3b\xf4\x7c\x88\x06\x44\x60\xab\x95\x99\x42\x51\xa7\x4e\x25\x35\xb8\xfa\x17\x1b\xa1\xa7\xe4\xd7\x2d\x48\x0e\xc6\x96\xb0\x2b\xae\x6f\x3d\xc8\x67\x67\xc7\x19\xa5\xa6\x42\x3b\x81\xaa\x64\x20\xf1\x0c\x46\x6f\x9c\x34\x3b\x9a\x81\xdc\xb6\x30\x63\x44\x2f\xbf\xc5\x44\x2f\xbf\x55\xa5\x08\x9c\x0f\xfa\xfd\x78\x1d\x66\x0f\x33\x7f\x94\x6a\xd3\x47\x27\xc6\xb5\x0c\x32\xfb\x59\x94\xb4\xa2\xbe\xf6\x0d\xe3\x2f\xb7\x51\x01\x7f\xdb\xc8\x79\xe8\x6b\x69\x96\xdb\x64\x2a\xb4\xe4\x9c\x83\x53\x88\x7d\xfa\x8f\x87\xc4\x64\xb6\xc1\x18\xd7\x41\xaf\x67\xb3\x99\xc0\x03\xf9\x5b\x32\x69\xca\x7d\x4b\x5c\x91\xd0\x33\x75\xf9\x19\x79\x57\xe4\x64\xde\xa3\xd3\x25\x5d\xca\x6d\xb6\x6a\xb3\x7c\x9a\x72\x77\xdc\xae\xa6\x15\x78\x18\x92\x0f\x08\xc2\xf1\x81\x07\xc3\x0b\xe0\xd3\xb4\xba\x3b\xc7\x49\xe2\xbc\xa8\xfb\x79\x82\xa4\xbd\x00\x28\x93\x43\x1f\x12\x7b\xf1\x77\x1a\xa1\xc8\x02\x9a\x4b\xf7\x4d\x5b\x2d\xf5\x81\x7d\xf5\x15\xab\x23\x87\x73\x6c\xaa\x39\xd1\x06\xa0\x7a\x68\xbe\x44\xb1\x96\x99\xa4\xe3\x33\x2a\x8a\x13\x87\xe3\xed\x40\xe3\x15\xdc\x6a\xbd\x74\xd5\x4a\xef\xac\x0b\xba\x43\x05\xf1\x71\xd0\xce\xfb\x8e\xfa\x03\x94\xbc\xf0\x48\xfc\x53\x2c\xeb\x26\xb9\xbf\x28\x07\x03\xec\x4b\xfa\x35\xa7\x89\x44\x0d\xf0\x15\xc0\x58\xaf\x4e\xc8\xf9\x97\x07\x54\x9a\xb5\xba\x76\x4c\xf8\xd8\x15\x2d\xb8\x82\xb1\xb5\xe6\xfe\xab\xf5\x57\xf7\xcd\xc9\x11\x02\x67\xe6\xdf\xc2\x49\xf2\x0c\x11\xbe\x28\x70\x67\x48\x07\xde\xef\x89\xd5\x86\x13\xaa\xc4\x2b\x40\x7b\xbe\x57\x45\x97\x50\xa4\x7d\xed\xd0\x42\x29\xf7\x2c\x95\x75\x99\x4a\xe5\xaf\xfd\xb5\xbf\x52\xab\xcd\xce\xe9\x09\x70\x91\xb4\xac\x82\x4a\x5f\x3c\xe8\x2d\x59\x10\x95\x20\xef\xf3\xbf\x60\xa1\xc0\x30\x81\xe2\x81\x34\x4b\x7d\xc8\xec\x7d\xd6\x65\x11\x8c\x09\x99\x8e\xb7\xe5\x1d\x91\x84\x7c\xa2\x19\xfa\x12\x6a\xe2\x13\x02\x6d\xf4\x7d\xfc\x86\xc3\x30\xb8\x67\x31\x4b\xb9\x08\x99\xfa\xac\xec\xdf\x21\x8e\xb8\xbf\x43\x39\xe3\xd2\x9c\xa6\x49\x5e\x63\x40\x42\xe8\x12\xbf\x18\xf8\x47\x6d\x96\x3b\x18\xa6\x13\x32\x0c\x54\x63\xff\xed\xf9\x09\xab\xe2\xb3\x05\x03\x1b\xc7\xe2\x5d\x79\x12\xcb\xf2\x63\x4e\xd1\xb2\x2a\xf9\x6d\xa2\x9e\xf3\x1b\xe1\x1e\x5e\xa6\x5e\x3b\x0d\xe7\x80\x04\xb8\x53\x95\x71\xcf\xec\xaa\x29\xe3\xc8\x69\xd6\x83\x84\x3d\x80\xbb\x0b\x5f\x04\xe3\x77\x82\x75\x84\x26\x09\x32\x16\x16\xa4\x51\x42\x11\xe1\xae\xcb\xae\x46\xfa\x26\x15\x9d\x2e\xa6\xd5\x4a\x7b\xfd\xd8\x31\x83\xf8\x14\xad\x4f\xa9\x9d\xa6\x95\xf5\xd7\x7f\xed\xbf\x98\x66\xf0\xe0\xc7\xd4\x43\x85\x8d\x0b\x9f\xe5\x0a\x53\x10\x4d\x35\x7d\xd9\xbe\x9b\xae\xb8\xe2\x02\x80\x78\xc7\xf0\x46\x7a\x43\x85\xf1\xbe\xe9\xd8\x19\x52\x0a\xd7\xc8\x16\x1d\xb9\xef\x61\x80\x9c\x8c\x5d\x2d\xb0\x89\x4b\x27\x96\x03\xbd\x84\x94\xe9\x52\x96\x16\x22\x17\x5d\x0e\xb2\xf3\xcb\xa9\x3f\xf2\x24\xf5\xe5\xe4\xa6\x88\xf2\x65\xe0\xbc\x9c\xae\x2e\x15\x95\x8e\x93\x7e\xf3\x2d\xef\x36\xf5\x4d\x94\x14\x53\xe3\x52\x6a\xe5\xf3\xa2\xc6\x0e\xae\x17\xd8\xf4\x23\x55\xbc\x26\x6d\x9b\x44\x2e\x8b\xe8\xd2\x8d\x54\xb3\xbc\x34\xfc\xa5\xc9\x52\xb4\x4d\x56\xa3\x2c\x4d\xc0\x8b\x37\x29\xef\x4e\xcd\x71\x15\x1d\x32\xf5\x5e\xda\x8e\x96\x45\x80\xa7\x34\x53\x2e\x64\xa3\x0e\xf2\x49\xb0\xcd\x57\x94\x67\xa0\xc6\xd2\x93\x7a\xea\x39\xc1\xfa\xe0\x31\x15\x69\x56\x3e\x5a\x0e\xc6\x3e\xd7\x55\x5b\x9e\x39\x7a\x1d\xce\xb6\x25\x5b\x84\x38\x19\x10\x13\xd4\x2b\xf5\x7a\x8c\xfd\x3e\x2b\x4c\x16\x4d\xd3\xf2\x7a\x20\x73\xee\x04\x27\x43\x1e\x11\xb9\x74\xf8\xb7\x7f\xe8\xbd\xd3\x32\xcc\xc9\xd2\xb6\x9d\x22\x40\xec\x69\x2c\x42\x25\x53\x6a\x04\x62\xdc\xa3\xde\xda\xad\x44\xda\x1a\xea\x09\x04\xca\xd9\x55\x38\x78\x83\xd4\x5c\x1e\x0e\x03\xf8\x6e\x69\x90\x47\x89\x55\x1d\x03\x02\x1e\xfe\x78\x18\x92\x00\x3f\x1e\xe3\x2c\x6e\x9b\xb7\xa4\x83\x02\xe8\xba\xe3\xa4\xa0\x37\x22\xdd\x8e\x0f\x1b\xdc\x5d\x1e\xf6\x4c\xd7\x24\x6d\x14\x29\x80\x95\x9b\x11\x27\x0d\x5d\x2b\x57\xb1\x1e\x1d\x9f\x1d\xb9\xe0\x9f\x0e\x69\xdd\x5c\x6b\x30\x05\x5e\x88\x88\x1e\x6b\x92\xfe\x1f\x2a\x51\x80\x71\x1d\x1f\x86\x3a\xea\xa4\x84\x6b\xe9\xe0\xb5\xd2\xc2\x13\x4d\xc3\xfe\x5e\x65\x63\x7c\xd5\x97\x84\x33\x91\x0b\xa9\x91\x04\xcd\x06\x1d\xd6\x1b\x8f\xcc\xa4\x67\xe9\xa0\xd3\x55\xa3\xa7\xd8\x65\xae\x39\x9c\x64\x71\xc4\x72\x51\x66\xbb\x6a\xac\x9d\xe0\x6b\xb3\x6f\xe3\xc8\x46\x7a\xe7\xac\xd4\xd1\x54\x59\xac\x11\x12\x2e\x1a\xb0\x78\xc1\xbe\xf2\x77\x94\x39\x4b\x83\x4b\x6c\x9f\x3b\xe3\x4a\x90\xcb\xc5\x13\x35\xe2\xdb\x95\xc1\xc4\x1f\xfe\x08\xbf\x8a\x83\x13\xbd\xb8\x2a\xe8\x35\x24\x36\x57\xb5\x56\x38\x9d\xbf\xd9\xa0\x94\xf3\x37\x87\x41\xa6\x08\x6d\x36\xc8\x78\x4e\x09\xae\x1b\xd1\xf2\x7d\xa4\x7f\xf4\x37\x1a\xb4\xcb\x7f\x24\xd3\x87\x99\x38\x41\x03\x95\xaf\x67\x91\xaa\xde\xe2\x69\x94\xc5\xc0\xf1\x2b\x97\x2f\x83\x9c\xeb\x95\x46\x68\xc4\x5f\xb3\xc2\xfb\x5d\xa4\x89\xb8\xba\x7e\xaf\x2c\x90\xa6\xf2\x78\xa2\x3a\x94\xa6\x1e\xc1\x8d\x91\xc6\xab\x8e\x4f\x08\xee\xb7\x6a\x4c\xea\x4d\x25\xcf\x55\x6a\x3c\x9f\x86\x53\xe6\x27\x82\xb4\x13\x13\xab\xb4\x74\xad\x4c\x14\xe7\xfd\x28\x21\x5e\x21\xf8\xf9\x7a\x1d\x28\xff\xd2\xb8\x0d\xb0\x32\x8e\x80\x4b\x02\xf6\xf7\x08\x06\x4f\x29\x0b\xb7\x07\x59\xd5\x3f\xdb\x0c\xd3\x72\x82\x48\xc8\x6e\xe0\x55\x00\xfb\xb9\x87\x0d\x0a\xfa\xd3\x3f\xd3\xa4\x44\xd1\x7d\xd9\x6e\xca\xee\x26\xd8\x38\x9f\x18\x08\x9d\x0d\x4f\x07\x66\xf8\xd8\xf4\x03\x7d\x2e\xfe\x15\xe7\xb9\x5e\x57\x85\x61\x69\x66\x3b\x69\xa2\xf0\x1d\x18\xbf\xff\x9e\x4a\xd7\xdf\xc0\x8e\x55\xcd\x27\x66\x13\xcf\x6c\x3b\x52\xf2\x31\x75\x52\xb6\x35\x03\xcb\xf4\xb6\x31\x35\xb0\xb4\xb3\xbe\x27\xc0\x1a\x74\x52\x7c\xcb\x64\xd0\x3f\x3a\x4e\xcd\x8b\x30\x48\xc8\x09\x9e\x96\x81\x50\x1d\x69\x86\xc0\x6f\x92\x11\xba\x80\x9d\x42\x2c\x84\x6e\xe8\x77\x35\x89\x8f\xfe\xc6\x44\x72\xea\xd5\x7d\xf5\x7c\xd0\xea\xd6\xa4\xb2\x8e\x30\x07\x4a\xe7\x7a\x4d\x7d\x5e\xe2\x5f\x0a\xda\xbd\x16\x12\x38\xc7\xe4\xe0\xd0\xeb\x71\xd4\xb8\x1d\xd4\x48\xfb\xe0\x22\x09\xd4\x4c\xc2\x36\x7e\xb9\x9e\x77\x53\x30\x5e\xe2\x85\xee\x90\xf8\xae\xb2\x5f\xe2\xe5\x26\xbb\xf0\x90\x86\x5f\x53\x3e\x31\x2c\xd0\xed\xcd\xff\x9f\xb1\x37\x8f\x91\x24\x4b\xef\xc3\xba\xb3\xaa\xaf\xb9\xaf\x25\x57\xa2\x04\xa5\xa8\x35\x47\xb0\xc6\xbb\x22\xf9\x87\x0c\xfe\x13\xa9\xae\xd6\xce\x76\x49\x5b\x53\xa8\xe9\xed\xa1\x06\x04\xdc\x2f\x23\x5f\x65\xc6\x54\x64\x44\x6e\x1c\x55\x53\x6d\xff\x65\x1b\x30\xe0\xbf\x7c\x48\x26\x04\xc3\xb0\x4c\x11\x26\x41\x91\x36\xa9\x25\xb5\xa4\x48\x3a\x73\x57\xe4\x0e\xf7\x9e\x6b\x77\xee\x9e\xbe\xef\xfb\x3e\xab\x8d\xf8\x7e\xdf\xf7\xde\x17\x95\x31\xb4\x81\xf9\x23\x72\xba\xaa\x32\x33\xe2\xbd\xef\x7d\xc7\xef\x50\x26\x81\x17\x39\x46\x21\x8d\xba\xaa\x9c\x44\x4c\x92\xa4\x65\x12\xda\xea\xcc\x9e\x55\x40\xec\x1f\x8e\xbd\xa6\x23\xab\x06\x3a\x1e\xc0\xfc\xbc\x33\x84\x7d\x52\x5b\xb3\x0d\x78\x84\xcf\xea\x7c\xaa\x7b\x73\x44\xc1\xcb\xd3\xd1\x28\xcd\x89\xf3\x85\x32\x42\xf4\x76\xab\xdf\xc4\x3c\xe5\x93\x40\x69\x5e\x5c\x24\x34\x22\xff\x03\x7f\x0d\x4c\x57\xae\xd4\x67\x5c\xab\x76\xfb\x66\x9e\xf2\xcb\x6e\x6d\x78\x6d\x08\xd6\xa7\x17\x92\xb6\xef\xa8\x9e\xa1\xe7\x28\x7c\xed\x86\xf8\xd2\x37\x43\x59\xf1\x48\x09\x4f\x69\xd0\xd1\x29\xaf\x4f\x95\x16\x85\x4d\x66\x3d\xfd\x8c\xd7\x2c\x72\x25\x80\x4b\x00\x1a\xf8\x7d\x65\x6f\x79\x74\xaa\x46\x7e\xa1\x9d\x99\x55\xc9\x0e\x31\xd9\x7e\x17\x8b\x9c\x5f\x34\x49\xf8\x0c\x6d\x9e\x47\x46\xf4\xee\x6b\x0d\x3b\xc1\xef\x6d\x7e\x9f\xbd\x0b\xa4\x0a\x40\x65\x80\x02\xe1\x08\x76\xeb\xac\x52\x1b\x16\xb3\x55\x80\xcf\x50\xb5\xfc\x9b\xb1\x22\x06\x7c\x93\x1e\xba\x4a\x2b\x5f\xe5\x23\xf3\x0a\x3d\x02\xfe\x8d\xa9\x8f\xb0\xb4\x9b\xb0\xa3\xb3\x5a\x10\xc0\xdb\x27\x7e\x75\x96\x42\x0b\x52\xf6\x33\xb4\xe7\xd1\x8d\x3a\x3d\x76\xaa\xb1\x55\x29\x13\x6a\xf3\x2d\xb1\xff\x69\x39\x2d\x8f\xf3\xca\x14\xbd\x2b\x07\x85\x73\x5e\xf3\x7a\x4a\x4a\x9e\xac\x4c\x38\x59\xae\x8e\x51\xe6\x65\xe1\xdc\x16\x92\x56\x6d\xc0\xdd\xb3\x05\xc4\xa3\xfc\xc6\xa5\xf7\x97\x4d\xbc\x19\x9b\xb9\x67\x5f\x7b\x18\xe5\x79\xf5\xdf\x68\x14\x69\x15\x7c\x3c\x31\x91\xc4\xf7\x38\xb8\xae\x4d\xc2\xc1\xd0\x64\x2b\xdb\x5b\x5e\x28\x4e\x4f\x7c\x2e\x52\xfe\x22\x9e\xfb\xd5\x07\x11\xf3\x55\x6f\x84\xc9\xd1\x11\x09\xe2\xd1\xa9\x55\xf4\xb5\xaf\xb4\x0b\x33\x88\x0a\xa9\xa4\xb1\xda\xfe\x42\x43\xf3\xfe\x22\x50\x32\xdd\xab\x69\x4c\x3c\x13\x93\xad\xcf\xaa\xde\x2f\x47\x0d\x8c\x5b\xd1\x26\x17\x68\x81\x42\xc1\xdc\x6b\xe2\x75\x8c\x62\x93\x17\xdc\xf2\x10\x20\xa6\x9f\xa6\x9c\x9f\x8a\x9d\x07\x0e\xb4\xbb\x51\x1f\xc5\xb8\xe6\x08\xe1\x1b\x9e\xad\xa9\x4e\x37\xc4\xff\x3d\x6d\x93\x85\x5c\xdd\x20\xe2\xb1\xb9\x37\xbf\x08\x36\x67\xa0\x2f\xb4\x87\x26\x29\x97\x4d\x58\x94\x99\x3b\x71\x45\xe7\xd1\x03\xa6\x4f\x06\x3f\xff\x19\xa9\x6b\x98\x0e\x87\x36\x3b\xd8\x35\xc9\x8a\xd2\x99\xe0\xe7\xc2\x2f\x54\xc8\xfc\x7a\x99\x16\x58\xdb\xdb\xfd\x26\xbd\x3d\xf6\xb8\x90\xeb\x81\x32\x05\xfd\x70\xec\x19\x5c\x27\x03\x05\x2c\x0a\x7c\x13\x5b\xd9\xd5\xd8\x22\xca\xdc\xbc\x13\xa9\xe2\xe5\x9a\x37\x40\xf5\x36\x38\x38\xbe\xed\xf6\x5b\x49\x14\xa1\x52\xd5\x6f\xfc\xd0\x03\x0f\x37\x3f\xe9\x28\xb2\xac\x23\x58\x25\x0c\xdb\x95\x53\x9a\x7e\x48\xdb\x3b\x6a\x4d\x1e\x1a\xfb\x96\x04\x50\x94\xe8\xbe\xfd\xdf\x81\x4a\x1d\x2e\xb8\xdc\xac\x5b\xe6\xeb\x3b\xab\x9f\x42\xf0\x6e\x41\xad\x1d\xb1\xe6\x1d\xac\x42\xb4\x06\xee\xe9\xe1\x26\x7a\xb8\xf8\xc2\xe7\xc7\xca\x00\xfd\xa4\x9e\xf6\x00\xe3\x85\x7a\xb1\x3d\x65\xf9\x30\x37\xd7\x1e\xc5\x65\xd2\x97\x68\x22\x66\xfb\xf4\x31\xa5\x4d\xb1\xf9\x28\xa9\x76\xbd\x49\x12\x9b\xa1\x06\xc7\x5a\x39\xaa\xd6\xcd\xd1\xa6\x7a\x6a\x54\xe6\x34\xab\x53\x8e\x77\x67\xe9\xf4\xe2\xeb\x06\x6a\xfe\x9e\xf6\xc0\xc6\xbd\x19\x5f\x80\x30\xc7\x0c\x67\x32\x4c\x33\xd1\xe7\xfe\xa0\xa9\x41\x6b\xc2\xb8\x6c\xf9\xb1\x48\x81\xdb\xc2\x2f\x1c\x44\x21\xcc\xca\x1e\xab\x51\x32\xf0\x93\xee\x18\x76\x1b\xba\xae\x38\x84\x8f\xe0\x50\xe1\x3d\xd9\x24\x33\x3f\xb2\xe9\x28\x76\x30\x43\xa7\xc5\x5b\xfd\x69\x7e\x31\x2d\x47\x34\x57\x15\x1f\x61\x4a\x23\x9a\xfd\xbb\x1d\xa5\x46\xa1\x29\x2e\x28\x3c\x40\x11\x85\x2b\xb6\x60\xf9\x3c\x24\xec\xe7\x54\xf2\x7e\x2e\x78\x42\xb5\x94\x93\x28\xc4\x18\x12\x61\xe0\xe6\x58\xe9\xd4\xbd\x41\x8f\x8b\xff\x41\xcb\x67\xbe\x31\xa5\xc0\x52\x3d\x87\x24\xdd\xa6\xd0\x32\xf0\x94\x47\x8f\x7a\xcb\xa4\xaa\x23\xd8\xc4\x55\x6d\xd0\xed\x1d\xa5\x5b\x78\x4a\xb5\xb4\x8a\x34\x1f\x44\x5d\xa0\x1f\x98\x34\xa4\xec\xbb\x6e\x4f\x3d\xc8\xf9\xf9\xf6\x72\x69\x01\x6f\xc3\xb1\x00\x79\x5e\xbe\x56\x06\xd5\xa3\x2c\x7d\x0d\x9a\x7e\x33\x4a\x7d\xed\x56\xcd\xc5\x8d\xbe\xa9\x10\x2d\x9e\xd5\x63\xb2\x5e\x14\x4a\x30\x58\xe0\xb9\xe3\x7b\xb8\x31\xfc\xc2\x71\x46\x4d\xd9\x2f\xf3\x22\xf2\x80\x52\xd6\xfb\xd6\x2a\xea\x4d\xf0\xf4\xc5\x76\x2f\xaa\x73\xc1\xb9\x81\x23\x3c\x5f\xcf\x2f\x19\x9a\x78\x94\x99\x90\x60\x26\xf4\xf3\xda\x13\x5b\xdc\xf8\xe9\x77\x85\xac\xd8\x50\x85\x8e\xb2\x74\xe8\xc5\xcb\xd0\xf3\xf9\xb6\x06\x04\x7c\xdb\x5b\x79\x25\xd1\xf2\x72\xb5\xac\xbe\xf6\x15\x67\x1c\xa2\x58\x9f\x67\x1b\x7d\x5f\xcc\xd0\x66\x51\x28\xb3\x3f\xf4\xbc\x4e\x2b\xce\xd9\x69\x95\x88\xe4\xe1\x60\xcd\x64\x07\x5b\x9a\x3c\xc2\xd4\x0a\x7e\xd1\x78\xae\xe5\xf6\x75\xad\x81\x7f\x4b\x39\xd2\xdd\xd2\x8e\x91\xb6\xf7\xb8\x47\x95\xde\x86\x20\x2e\xf2\x86\x2b\xa8\x55\xb1\xeb\x4f\x23\xa3\x13\x33\x1b\x65\x77\x71\x8d\xfc\x80\xa5\xf5\xac\x25\x54\xb8\x5a\x75\x9a\xbd\x5e\x07\xff\x4d\xda\x06\xd8\x12\x27\x28\xab\x43\xb9\x77\x8e\xa2\x3f\xdb\xd6\xd6\xda\xd8\x1e\x4b\x97\x97\xc9\x7a\xab\x35\x37\xc7\x1b\xf7\x3d\x02\xb5\xf2\xb5\x02\xfa\x76\x63\x33\xb4\xe0\x0c\xe0\x73\xfe\x84\xee\xd9\xc6\xd5\xa0\xb5\xef\x25\xde\x75\x67\x1a\xda\xa4\x7b\xda\x51\x92\xa4\x23\x13\x6a\xaa\xcf\x58\x53\x7d\xd4\xe9\x5c\xd8\xd8\xae\x46\x79\x94\x26\xdb\xe9\x8e\xa0\x4e\xba\x46\xdf\xc2\x69\xee\x3b\x29\x81\x6b\x58\x77\x48\x97\x59\xbb\x13\xdf\x1b\x1d\x7f\xd4\xfb\x97\xa7\x90\x45\xfb\x5e\x6a\x77\x4d\xf2\x7a\x95\x0a\xa0\x06\x51\x22\x5a\x8b\x4e\x44\x6b\x73\xa3\x9f\xd8\x3f\x36\xb1\x99\x71\x0b\x19\xd9\xc3\xdd\x40\x79\x98\xdf\xd5\x28\x63\xdb\xb3\x99\x89\x9f\x54\xe3\xe2\xb3\x78\xd2\x9e\x6b\x25\xa3\x4f\xa6\x1f\xb3\x7a\x25\x5a\x3c\xae\x3d\xe8\x08\x73\xbf\x1e\xa8\x06\xef\xfb\x94\x90\xe0\x6d\x51\xa2\x6e\xdc\x1f\xcf\x68\x9b\x86\x96\x33\xfc\x79\x0b\xed\x2b\x0c\xba\xee\xc1\x3d\xd4\x05\x6d\xa7\xe7\x70\x24\xf0\xc3\xca\x23\x53\x61\x63\x7e\xbe\x9d\x59\xbb\xcc\x45\x81\x43\x9d\x2e\x2c\x7c\x26\xea\x74\xef\x42\xbb\x57\x66\xa2\xac\xee\x72\xc8\x96\x13\x02\x3a\x3b\x35\x4e\x21\x14\x71\x41\xb0\xbe\x78\x1d\x4d\x2b\x61\x67\x54\x37\x8b\xaf\xa7\xc1\x80\x2f\xbd\xdc\x5e\x8e\x4d\x1f\x2e\x9e\x8e\x21\x0b\x5b\x41\x71\x55\xfc\x9b\x6e\x86\x12\xa7\x59\xba\x1c\x97\x69\x96\x86\x26\xeb\xa6\x22\x81\x2c\x2c\x57\xfa\x82\xa2\xfb\x21\xd9\xdd\xc0\x9a\x5e\x9c\x4a\x58\x46\xb3\x1c\x89\x0f\x5f\xab\xd1\x8b\x59\x8d\x56\xa9\xaf\x81\x8e\x27\x9a\xf6\x7c\xad\xce\xd0\x61\x94\xa4\x59\x54\xac\xa3\xc1\x2f\x9a\x1a\xd5\xcf\x8a\x16\x81\xeb\xb9\x67\x7d\x93\x44\x07\x2d\x9d\xcc\x72\x13\xaa\x1f\x94\x9b\x33\x3d\x69\x30\xfd\xcc\x5a\x86\xd6\xa2\x6a\xbb\xac\xdd\x8b\x7e\x4b\xb9\xfe\x11\x9f\x50\xf9\xf7\x0c\x87\x69\xcf\x14\xcc\x59\x47\xbe\x00\x07\x52\xbe\x9e\x3a\x19\xf7\xef\x6e\x0f\x22\x19\x9f\x88\x0b\x72\xcb\x19\x6b\x9f\x56\xf3\xaf\x7f\x9c\xa1\xa8\xc3\xba\x3d\xa4\xa9\x4d\x87\x5c\x26\x94\x17\x99\x59\x57\x3e\x28\xb7\x94\x0f\xca\xb4\x0c\xfe\xbe\x97\xda\x55\xd0\x80\x6c\x25\x1a\x1a\xb7\x14\x8e\x94\xdf\x43\xbe\xaa\xcf\x4b\xba\x71\x59\x45\xb4\xe7\x9f\x17\xb6\x26\x9a\xc2\xae\x6e\xf4\x5a\xe6\x47\xc7\x3e\xc2\x27\xb6\xa0\xee\x37\xee\x05\x6a\x68\x01\x0d\xd1\xef\xa3\x55\xc6\xc6\x9b\xfc\x42\x0b\xe8\x6e\xa0\x2b\xcd\xe2\x65\xf4\x41\x91\x60\xb3\xed\x0e\xff\x61\x25\xd4\x95\x8e\xa2\x24\x4a\x93\x5d\xaa\x09\x70\x0c\x7f\x44\xf0\xf2\xad\x05\x0f\x73\x51\x20\x83\xa3\xc8\xd2\xf9\x57\x10\x55\x10\x3b\xc1\x2f\xc2\xd8\xfc\x08\xad\x24\xf4\xb9\x0f\x53\xe2\x04\xe6\xcd\x5f\x4e\xcd\xaf\x68\x77\xb2\x4a\xa7\x74\x93\xd9\x3c\x9f\x5f\x34\xc1\x4c\xa3\x24\x8c\x8a\x4d\x18\x9e\x33\x0a\xc3\x73\xc6\x4d\x9d\x87\x76\xd8\xb5\x19\x37\xdf\x50\x4f\xcc\x4e\xb4\x33\xc5\x6f\x62\x09\xa3\x67\x31\xdb\x69\x80\x0c\x2d\x67\x51\x7f\x50\xd8\x84\x1d\x61\x6b\x7a\x14\xa2\x51\xf5\xb8\x6a\xbe\x1a\xc0\x0e\xb1\x87\x6f\x2b\x40\x3c\x7a\x8c\x9a\x33\xc6\x3f\x13\xec\xe4\x77\xeb\x81\x1e\x85\x6f\x7e\x7e\xdc\xfa\x67\xd2\x81\x3b\x15\xcc\xbc\xfc\xcf\xbf\xca\xd9\xd1\x74\x99\xbc\xb0\xf0\x72\xdb\xc4\xf1\xb6\x1a\xba\x8b\x7a\xa6\x32\xb8\xf4\xfa\xf8\x77\xc6\x2a\x69\x38\x4f\xb1\x1a\xb8\x87\x56\xa7\x89\x75\x68\xe2\x18\x3a\x0a\x0e\xde\xb6\xe4\x21\x6d\x8d\x4f\x93\xa6\xf5\xfb\xa5\x27\xfc\x4e\xa0\xc6\x82\xef\x28\xea\x68\x41\x2e\x08\xb0\x89\x7a\xd1\x0b\x78\xba\x11\x37\x96\x60\xa3\x18\xc7\x23\x7e\xba\xc6\x49\x17\x7a\x27\x47\x35\xda\xe7\xe8\x54\x48\xaf\x0a\x42\x72\x52\x4c\x2c\xe6\x86\xc2\xce\x52\x12\xfa\x5c\x2f\x48\x53\xc8\x2b\xd2\xa4\x55\x68\x2d\x73\x1e\x69\x49\xd3\x58\x77\x90\x37\x5b\x66\xcd\xed\x69\x2f\x2d\xce\x2a\xec\x37\x8f\xa9\x1c\x6d\xc7\xe1\x44\x20\x06\xc8\xd7\x53\x23\xb5\xbd\x0b\xa4\x18\x12\x25\x36\x29\xc4\xf2\xd0\xc9\x01\xa9\x91\x5a\xb0\x19\x38\x33\xb7\xa7\x3d\x8c\xc2\x2c\x1d\x65\x29\x18\xdd\x2d\x3f\xf1\x46\xcf\x46\x7c\xc7\xa7\x5d\x2a\xf6\x54\x65\xc3\xc8\xf8\x0e\x8a\x34\x3e\x3c\xc6\xe7\xa2\x0e\x7c\x51\x1c\xe7\x8f\xaa\x49\x3e\xb7\x78\x45\xdd\x98\x6e\x2a\xeb\xe4\x20\xcd\x44\x3b\xe4\xba\x12\x92\xfb\x40\x39\xce\x5c\xd3\x58\x05\x20\x98\xd1\x25\xd8\x85\x79\x01\x12\xbd\x1f\x07\x3e\x6c\xfe\x79\xe0\x71\x3e\x17\x1d\xfa\x29\x31\x59\x96\xae\xd9\xbc\x98\xa1\x1e\x8c\x66\x3f\x3a\xb1\x6e\x07\xd6\x3b\x39\x75\xeb\xf7\xef\x7e\x51\xca\x27\x97\x73\x30\x99\xb9\x46\x6c\xf6\x4c\x61\x33\x1a\x59\x93\x6d\xf7\xad\xb9\x9b\x14\xfe\x44\xb9\x44\xb9\x15\x00\x73\x28\xb0\x08\xda\xac\x4a\xf8\x44\x44\x64\x6e\xaa\xec\x8f\x33\x1f\xc2\x07\xc9\x27\xa6\x7b\xc9\x2f\x90\xca\x21\x68\x9f\x54\x01\xfc\xe4\xd4\xe9\xba\x77\xa1\x3d\x4c\x33\x0b\x37\x51\x84\xef\xc7\x3a\x1e\xde\xb3\x03\xce\xf0\xe8\x31\xfd\x55\xa0\xcf\xa6\x26\xb9\x95\xc2\x14\x65\x91\x66\x38\x5e\x5d\x47\x53\x69\xa0\x3f\x55\x23\x39\x9a\x64\x7d\x17\xa5\x8b\xce\x9b\xba\xfa\xba\x38\x20\xa0\xe8\xc6\xd7\x58\x03\x54\x07\xfc\xde\xd3\x1d\xaf\x41\x77\x4f\x81\x5a\xce\x29\x7f\xda\x13\xea\xa4\x39\xc1\xd3\x08\x19\x4c\xf9\x3c\xc0\x64\x2b\x4a\x93\x06\x22\xc3\x7c\xad\x35\x29\xb9\xbd\x22\x73\x26\x35\x73\x1a\x7b\xff\xe1\xbe\x59\x33\x85\x64\x29\x02\xf7\xf6\xdf\xfc\x82\x2a\xe0\x33\x1b\x97\x61\x41\x96\x9d\x3e\xc3\xd3\xa7\xc0\xc5\x26\x43\xe8\x51\xd9\xeb\xb9\x2d\x88\x54\xfe\xb8\x92\x24\x39\xde\x64\xee\x97\x96\x45\x1e\xf5\x2c\x21\x25\x71\x3e\xfd\x30\xd0\x26\x59\x08\xb2\x92\x13\x54\x7f\xcc\x0d\x16\x7c\xc9\x7a\xde\x63\xca\xe2\x2a\x01\x76\x9c\x5b\x3c\x59\x21\xf0\x7e\x96\xaf\xeb\xfa\x2f\x64\x33\xde\x99\xec\x43\xc5\x63\x63\x4f\x66\x6c\xf3\x7b\x4d\xfd\xb7\xcc\x86\x69\xd6\x43\x4f\x46\x30\xa1\x1e\xe5\xc1\x22\xf0\xc2\x3a\xf2\xa3\x61\xcc\x05\x05\x78\xaa\x9c\x7c\x87\x36\x23\xfe\xea\xd2\x6e\xae\x11\x4e\xd2\x5d\xe7\xeb\x26\x67\xd9\xa1\xe5\x30\x8b\xce\xea\x51\xd5\x65\x3d\x3a\x85\xce\xad\xce\xbc\x6e\x96\x9a\x5e\x68\x72\x9f\x93\xa0\x06\xfb\xc1\x58\x09\xcb\xfc\x20\xd0\x7a\x24\x49\x91\x99\xb0\xc8\x77\x55\x1f\x0b\x3d\x9b\xef\x2a\xf7\xdf\x16\x34\xb1\xa0\x0a\x79\x6b\xac\xe4\x60\xcf\xd7\xdc\xe1\x0f\x83\x01\x8d\x13\xe0\x16\xa0\xb3\x6e\xf2\xe9\xa4\x41\x9f\xeb\x68\xc7\x77\xaf\x86\xd5\x33\xab\x51\x0f\x75\x31\xda\x8e\xdf\xc5\xe7\xc5\xcd\xbd\x12\x68\xd2\xf4\x43\xa5\xca\x7a\x92\xd0\x3d\x38\xc7\xae\x29\x37\xe5\x0b\x2a\x10\x2e\x47\xd9\xd0\xf6\x66\x7d\xe3\xf4\xd0\x58\x51\x20\x37\x94\xfb\xd2\x45\xe5\xfa\xfb\xb1\x92\xd6\x48\x33\x1b\x47\x09\x0a\x14\xa4\xd3\x30\xed\xe6\xeb\x26\xfa\x57\x68\xbc\xd8\x1c\x62\xfd\xc3\xa0\xa5\xdc\x6b\xe8\x18\x12\x0c\xee\xe6\x07\x59\x1d\x7a\xe9\xaa\xcd\xd6\x06\x36\x1e\xba\x07\x29\x4a\xfe\x9e\xfe\x7c\xa1\xb1\x56\xb4\x79\x58\xf6\xd2\x21\xce\x08\x19\x99\x2b\xb5\xed\x63\xcd\x49\x5b\x3f\xdd\xee\x2d\x88\x37\x02\x25\x5e\xc4\x60\x35\xb6\xa5\x18\xd7\xf0\xcd\x8e\x9e\x77\x33\xa8\x4d\xe5\xbc\x06\x46\x37\x4d\xf3\x82\x4c\x15\x1c\x8f\xc7\xff\x20\x8f\xc9\x84\xc9\xd4\x72\x2c\xfc\x3b\x58\x4e\xc2\x77\x6a\x80\xa8\x45\xc9\xaa\xcd\x8b\x3a\x92\xe3\xba\xe2\x4f\x5d\x1f\x7f\xd6\x58\x25\x4a\x0a\x9b\x8d\xca\x6e\xcc\x00\x79\x4c\x8d\x19\xcc\xc9\x2f\xa6\x7a\xeb\x07\x0e\xb4\x7b\xe9\x5a\x52\x44\x43\x50\xd2\xb4\x2c\xbd\x5b\x13\x5f\x7e\x85\x9b\x34\x9f\xea\xa1\x46\x5e\x0e\x47\x0e\x2d\xcc\x1d\x88\xc0\x07\x7e\xad\xee\x68\x6d\xef\x49\xdf\x08\xfb\xcd\x9f\xeb\x78\x9a\xc3\x63\x13\x35\x6f\xd8\x85\x73\x11\x67\x0a\xb3\x9a\x29\x87\x9c\x61\x25\x3d\x4c\x71\xff\x36\x14\x1f\xb1\x29\x1f\xa3\xbd\x07\x18\xdb\x06\x35\xe2\x70\xb0\x43\xa9\x48\x84\x4e\x29\x3b\x11\x30\x8a\xc7\x4a\x74\x9e\xa5\xd4\x47\x68\x65\xfe\x5b\xb3\x55\x9f\xc8\xb7\x36\xa8\x11\x0f\x6d\x95\xba\x97\x59\x9f\x7c\x48\x3d\x3c\xf2\x23\x7a\xdc\x7c\xad\x9a\x76\x45\xc4\xbd\x38\xac\x97\xeb\x4a\x7f\xe6\x9c\x8e\x2b\x1f\x7a\xa6\xad\x4d\xb2\x3a\x3e\x92\xe9\x1d\x22\xbe\x35\xcd\xdf\x5b\x6c\x27\xd6\x3a\x29\x0b\x97\xfc\xfa\x44\xb8\x06\xd1\x18\xda\x90\xa2\xb6\x40\xca\xd5\x00\xee\xa4\x92\x9e\xed\x67\xd6\x14\x36\x53\x42\xca\x6c\xd9\x80\x98\x76\x0d\xfb\x88\x5f\xa8\xfc\xe2\x96\x46\x4f\x9d\x0f\x6a\x46\x23\x9e\x4e\xdb\x2f\xbb\x36\x63\x59\x5b\x8d\x16\x12\xec\x76\xf5\x01\xf1\x4c\x3e\xa5\x7d\xc9\x6a\x5c\x5a\xab\xac\xd5\xd1\xbd\xe0\x26\xaf\x28\xd3\x2b\xe3\x02\xfc\x63\x81\x4d\x6b\x41\xec\x06\x71\xf1\x85\x76\xcf\x8a\x6c\x36\xf2\xa8\x77\xc6\xbe\x33\xf5\x8e\x73\x6c\x0d\xd3\xe1\xa8\x2c\x6c\x16\x9b\x84\x8b\x4b\x7c\xdf\xc3\x63\x8d\x77\x51\x20\xfa\x5b\x35\xc3\xbe\xa8\x88\x48\x9f\x92\x40\x67\x68\x21\xa1\x58\x71\xf7\x56\xe3\xe6\x65\x65\x94\xb9\x5d\x2e\x63\xa2\xad\xe9\xba\x0e\x27\x2e\x3c\xb4\xd1\x59\x3e\xd2\x30\x69\x5a\x62\xfe\x1e\x08\x69\x3c\x02\xa4\xf7\x94\x71\xa0\x67\xdd\x78\x0f\x57\x83\x21\x8a\xac\x6b\x85\xb5\xf9\x48\xcd\x8d\xaa\x33\xd7\x6e\x52\x28\x53\x84\x8b\xcf\xa9\x6f\xde\xb3\xdd\xc2\xf6\x12\xcb\x9e\xbf\xf8\x1e\x4c\x1f\xe7\x17\x4a\x9b\xfc\x4b\xbf\x08\x74\x3f\x7b\x2b\x05\x8a\x9d\x75\x69\xfc\x9c\x97\x4b\x1a\xd9\x30\x32\x71\x74\xd0\x32\x17\x02\x88\xac\xbb\x0a\x88\xb0\x75\xe2\x69\x09\x9f\x4e\x0d\xb7\x89\x0b\x31\xaa\x6e\x4f\x99\x88\x4e\x76\x8d\x9b\x2d\x2c\x25\xc9\xde\xc2\xd8\xd0\x09\xbf\xc8\x6b\x51\x2b\x2f\x23\x7b\x72\x90\xe1\x6a\x4b\xb2\x00\x29\x4a\x34\x87\xc6\x9c\x9f\x77\x5d\xa7\x86\xc5\x3b\x34\x19\xd5\x46\x0e\x0f\x70\x57\xe1\x01\xee\xba\x4e\xcc\x72\x9a\x0d\xcb\x18\x76\xff\xf8\xaa\xf7\xb5\x37\x33\x96\x88\x10\xdf\x9b\xac\x9d\xf3\x32\x59\x69\x29\x1b\x90\xb7\x02\x9f\x3b\xbd\x35\xb5\x90\x5e\x68\xdb\xd7\x6d\x16\x46\xb9\xd5\x0d\x4b\xa6\x4c\x8b\x46\x8b\xe6\x2b\x6e\xfe\x03\x4b\xbb\xdb\x79\x91\x8e\x46\x12\xad\x30\xcc\x3f\x8e\xd0\xc2\x2f\x14\x42\x3d\x22\x44\x71\xbe\xad\x5a\xf4\xae\xa8\xf3\x18\xde\x37\xe8\xbe\xe3\x7b\xe3\x7d\xb1\x9b\xe0\x97\xce\x54\xbb\xa9\xbb\x7b\xe0\x40\x3b\x1c\x58\x9b\xe5\xb3\x2a\x9c\x7c\x40\x27\x1e\xd2\x9b\x4f\xb5\x8b\xe0\x3d\x4e\xd8\x24\x4d\x78\xdc\xb1\x42\x86\xe2\xa0\xe0\x60\x56\xd5\x6f\x09\xb4\xca\xaf\xcf\xcc\xae\x46\x05\xad\x4f\xf0\x41\x37\xd0\xe0\xdd\xb8\xdc\xd0\x55\xe7\x3c\x1d\x36\x6e\xd5\x1d\x46\x10\x78\x0f\xdf\x9a\x5f\x4c\x1d\xe8\x2e\x1b\x18\x9a\x96\x82\x71\xa0\x5c\x15\x44\xdb\xe6\x55\x3f\x3f\xdf\x1e\x65\xe9\x32\xa4\xb9\x4d\x8c\x38\x86\xb4\xea\x4f\x69\x0d\x23\x61\x81\xe6\x08\x6b\xcd\xab\xe3\xfd\x97\x7e\xf9\x1f\xb6\xea\xc2\x45\x73\xce\x4e\xcb\x35\xe3\xf3\x32\x5b\xb5\xeb\x30\x79\x11\x18\xed\xe7\x3a\x0a\x06\x7c\x5e\x79\x1f\xb2\x63\x3e\x96\xd1\x6f\xd0\x47\x70\x4c\xbe\x6a\x79\x08\x8f\x52\x76\xe1\x6a\x64\x8b\x96\xce\x3d\x94\x10\xea\x11\x65\x1d\x3e\xca\x6c\xcf\x72\xaf\xa6\xc6\x3d\x51\xf6\xa3\x2a\xea\xfc\xe7\xff\xd9\x2f\x69\x55\xaf\x1f\xd1\x17\xe3\xeb\x06\x72\x65\xbb\x6f\xf2\x14\x29\xb5\xeb\x3c\x80\xae\xc4\xd7\x53\xd8\x9d\xf9\xf9\x2a\x43\x6d\xa9\x90\x51\x53\x74\xf4\x2d\xec\x34\xee\xed\x50\x8f\xf3\x2e\x17\x29\xb2\x60\x29\xd6\xa1\xab\x89\x86\x28\xb2\xd7\xd3\xa4\x62\x8a\xb1\xc8\x5d\x05\x4e\xd9\x08\xd4\x13\x3e\x55\xcb\x09\xca\x95\x08\xb3\x0d\x34\x7a\x31\x9a\xe4\xeb\x26\xf0\xdc\x28\x4b\x71\xae\x0a\x1f\x46\x29\x68\x5c\x6a\xaa\x3e\x4d\xbe\x22\x14\x4b\x8c\x01\x3f\x45\x5b\x05\x47\xe5\x21\xe5\xf4\x73\xb1\xb1\x6d\x66\xba\x69\x1c\xe5\x03\x89\x1a\x4d\x86\x83\x0d\x35\x3b\xb7\xa9\x5b\x6a\x96\xc7\x78\x79\x99\xdb\xa8\x21\x60\x9a\xd9\xa8\x9f\x3c\x5e\xfd\x49\x7c\xc4\x4b\x18\x33\xe0\xc5\x35\xfc\x9e\x03\x08\x29\x7e\x44\x15\x9b\xc4\x2a\xb1\xb5\xe0\xb3\x52\x05\x2d\x65\xcf\x3b\x39\x97\x54\xab\x78\x03\xa1\x13\x0c\x07\x34\x2e\x94\x07\xa3\xf7\x68\xa5\x2d\x83\x80\xf6\xd3\xda\xa3\x3b\x18\x8d\xf0\xe8\xb8\x0d\x11\xf8\x11\xd6\x25\x05\x63\x2c\x6c\x6c\xab\x52\x5a\xa9\x71\x5f\xd4\x69\xc6\x45\xb5\x5f\xaa\x9a\xa2\x2f\xa4\x40\x47\x7a\xe2\x96\x33\xbf\x50\xdc\x8f\x28\xb1\xaf\x13\x14\xb1\x8b\x49\xe0\xa2\xcf\xb6\xaa\x3b\x20\xd9\x96\x92\x21\x27\x43\xbe\x34\x5b\x9f\x55\x96\x16\x37\x02\xaf\x43\x7e\x06\x05\x13\xff\x03\xa1\x61\xf9\x1f\x02\x9f\x42\x76\xb3\x28\xe9\xcf\x7a\x6f\x6b\x7c\x73\x45\x73\x59\xf4\x25\x5f\x75\x7f\xf8\x5f\x34\x6f\x67\x60\x7a\x3d\x0b\x59\x4c\xc1\x57\x5e\xc6\x49\xc4\x2f\x54\xe5\x5d\x90\xb7\xa7\xd6\x17\xd0\xf4\xcd\x4b\x0a\x1d\x98\x59\xb9\x81\x22\x78\x22\x43\x4e\x95\x57\x9e\xdb\xec\xde\xfb\xfc\xf3\xed\xfd\xbb\x5f\x6c\xf9\x74\x1b\x1d\x42\xb1\xf6\x92\xf3\x9e\x0e\x12\x46\x29\x22\xe1\xde\xd6\x51\xa6\x02\xdb\x26\x02\x39\xb1\x49\x98\x96\x55\x71\xc8\xa3\x45\x14\x20\xa2\x94\x5a\x3b\x4b\x11\xda\xae\x35\xed\xa0\x35\x6b\x56\x6c\x5e\xb4\xa8\x92\xc2\xa0\xe0\xac\x9a\x20\x9c\x1d\xef\x8a\xc8\xc9\xeb\x17\xdb\xff\x68\x97\x1f\xfe\x7f\x4b\x39\x35\xdc\x50\x1d\xe4\x67\x50\xcf\xa1\xbf\xfb\x34\x6a\x40\xe6\xa7\x7a\x2f\xf2\xcb\xcf\x75\x14\x62\x62\x32\xf6\xc4\x20\x8c\x14\xa6\x10\x69\x64\x49\x97\xa6\xa4\xa1\xbf\xb4\xe8\x71\x2f\x4b\xbb\xe5\x5a\x1b\xb2\x95\x79\x91\x0e\x6d\x96\xef\xa2\xf8\x83\xe4\x99\x85\xd3\xd1\xa6\x7d\x33\x50\xe2\x84\x67\xb5\x17\xe1\xd9\xc0\x0b\x40\x81\xfa\x88\xfc\xed\xe6\x58\xe1\x1b\x8e\x69\x27\xae\xb3\xca\x3a\xf8\xaa\xc6\xb6\xa4\x65\xe2\x84\x87\x64\x70\x4b\x8f\x49\x26\xb7\x9a\x52\x63\x93\x9c\x64\x15\xb0\x82\xbf\xaf\x10\x2d\x3f\xc6\x6a\x45\x23\xe6\xd4\xb8\xf5\xfc\xf3\x4e\x07\x4e\x09\x4b\x07\x4a\x71\x9e\x75\x39\x1c\xd0\xf0\xab\x82\x2d\xbc\x41\x5f\x4e\x00\xb2\x34\x53\x15\x15\x39\xda\x8c\x48\x68\x6f\x8f\x15\x4c\xfa\xa4\x42\xf7\x5f\x6f\xac\x4b\x73\x13\x3a\x67\x4b\x16\xac\x57\x3c\x83\xe9\xdf\x79\xc1\x11\xc9\xf4\x70\x4c\xab\xc3\x5d\x9c\x4a\xde\x91\xc4\x66\x59\x75\x4b\x37\x79\xa8\x35\xb8\xdc\x08\x4f\x21\x1e\x52\x13\x0d\x81\x92\xe5\x18\xf9\x05\x1e\x04\xca\x8c\x73\x5a\x11\xe2\x5c\xa0\xb5\x5c\x07\x36\x2f\x94\x94\xf3\x3d\xa5\x50\x0d\x46\x95\x1f\x60\x79\x3b\x97\x61\x64\x92\xa4\x34\x18\x94\xe1\x89\x80\x60\x8e\x80\x03\x5f\x27\xbc\xdb\x29\x2f\x33\x51\x95\xe2\x52\x2e\x22\xe3\x9e\x55\x2e\x7e\xdc\xd1\x97\x31\x87\x5f\xeb\x26\xeb\x46\x45\x46\x5e\xd3\xae\xdd\x71\x45\x19\x0a\xdf\xc3\xba\x05\x95\x7e\xda\x54\x5d\x92\xca\xe5\x38\x0a\x57\x66\x3c\x2a\xe8\x4e\x0d\x2a\x4b\xef\x2d\xa4\x95\x06\xbe\x67\xbf\x34\x59\x8f\x63\x10\x42\xdf\x9d\x40\x4d\xdc\x4f\xab\xd5\x7c\x4e\x1d\xc7\x26\x67\x11\x8a\xf9\x79\x0f\x96\xf3\xea\xc5\xcd\x60\xb9\x35\xa1\x34\xbb\x71\xfb\xdc\x1e\xd7\xa5\x94\xc0\xb8\x9c\x99\xb2\x57\xc6\x16\x24\x56\xd9\xb6\x28\x94\x50\x7f\x3f\xd9\xf1\xe9\xd8\x8e\x89\x2f\x46\xd6\x4c\xaf\x17\xa3\x37\xe3\xdd\x58\xaa\x43\x47\xfa\x7f\xbe\x07\xdc\x8f\x7a\xbd\x75\x05\x40\x3c\x86\x0f\xcf\x2f\xfc\xdc\x24\x31\x11\x4a\x6c\xc0\x7f\xa0\xa0\xc3\xd7\x8d\x55\x7c\xb7\x5c\x77\x8b\xdc\x79\xf6\xba\x3e\xfa\x34\xf2\x76\xef\x42\xdb\x84\xbe\x81\x2e\xd2\x6b\x2d\xa5\xc9\xf6\xb8\x32\x3c\x33\x5d\x82\xc3\x20\x51\xbf\x46\x27\x2a\x5f\x37\x48\xd5\xbd\xdc\x8e\xa3\x64\x05\x94\xf0\x17\x21\x85\x23\x93\xc6\x3b\xda\xde\xf3\xa8\xe2\xcc\x24\xa6\x28\x33\xdb\xda\x3c\x90\x96\x86\x86\xa4\xf6\xa3\xb8\xcc\x77\xd1\xd2\x42\x4b\xe3\xc6\xd8\x73\xa3\x80\xb6\x15\x15\x4e\xcf\x44\x9a\xc1\xb9\xc1\x50\x3d\x6c\x5c\x14\x19\xf7\x15\x8b\xf3\x94\x1a\x73\x3d\x3d\x69\xcd\xcd\x21\x3e\xfc\x72\xbb\x23\x47\x6c\x3f\x33\xdd\x2e\xbe\xd5\xa2\x17\xcb\x74\x1f\xf2\xce\x58\x7d\xb5\xad\x1d\x2f\x6b\x92\x99\xcc\xc6\x8c\x11\x72\x35\x91\xef\x83\xa8\xf0\x1f\xa7\x21\x25\x07\xd5\xad\x46\x59\x09\xab\x7d\xbe\x76\x87\x7d\x9e\x0e\x6d\xcf\xac\x93\x64\x04\xf6\x3a\xa8\x8e\x74\x1f\xfe\xed\x33\x1d\x4f\x5a\xbd\x49\xf7\x04\xd7\xac\x86\x8c\xbc\xeb\xdf\xa9\x62\x3a\xb3\x26\x1c\x88\xcc\x35\x9e\x13\x2b\xee\xf0\x8b\x60\xda\x97\x01\xb0\xf7\xc2\x78\xc7\x74\xa4\xb7\x87\xc7\x3e\xd5\x3d\xac\x5c\x5f\x32\x3b\x8a\x4d\xc8\x23\x0a\xe7\x6b\x57\x3d\x48\x41\x4d\xaa\x41\xd3\x43\x25\x82\xf6\xa1\x9a\x7b\x17\xe9\xc8\x1c\x84\xf4\x39\xaa\xe9\xef\xd2\x41\x05\x25\xeb\x73\x38\x82\xf8\x1f\x02\xc5\x1a\xb9\xad\xec\x65\xa6\x25\x03\x96\x76\x57\x41\x85\xbc\xfd\xab\x3f\xac\xdc\xa6\x16\xb9\xd5\x78\x27\xf0\x6d\x86\x33\xca\x72\xd3\xbe\x1e\x5a\x5b\x9d\x2d\xc8\x6f\x17\xbc\x37\x96\xf7\xc9\xaa\x5b\xa3\xf5\xec\x90\xcc\xca\xaa\x87\xe5\x80\xce\xf3\xf3\x72\x3d\x35\x02\x78\xa1\x6d\xe2\x2a\x22\xa5\x6b\x09\x43\x2f\x64\xc4\xa7\x72\xa4\x0f\xd5\x0a\x5a\x35\xd9\xaa\x61\x84\x16\x03\x13\x69\x1f\x09\x48\x71\x1a\x7c\xfb\x6a\xbb\x67\x63\xe3\x83\x07\x12\x38\xd4\x87\x7c\xdd\x84\x09\x62\x03\xdb\x1a\x98\xf0\x52\xa0\xa9\xe7\xd3\xf6\x9b\x6d\xf3\xff\x81\x1d\x13\x59\x54\x9b\xec\x6a\x7d\xed\x2b\x7c\xb2\xf3\x77\xc5\xa3\xe0\x5e\x1f\x96\xc9\xb3\x34\xa5\x96\xa9\x7b\xcb\xd9\xa8\x80\x6e\x87\xac\xe8\x16\x76\xa5\xfb\xa1\xa5\xdd\xae\x05\xe5\x0d\x04\xce\xab\xda\xfa\x60\x34\xda\xa6\xa0\xd4\xb5\xb9\xd0\x69\x2a\x39\x90\xb3\xa2\xb2\xc6\x59\x7e\x5f\x41\xf9\xa6\x6d\xbe\xf6\xec\xab\x6a\x92\xbc\x48\xe3\xbf\xde\xc0\xc4\xb5\x2d\x8b\x68\x54\x2a\x4d\x55\x69\x38\xeb\xee\xb3\x02\x97\xe5\x69\x1c\x85\xac\x2e\x8c\xfc\xe9\x50\xa0\xb8\x1d\x87\x9a\x9a\x49\x4e\x4e\x93\x9f\x1f\xf6\xc6\xa1\xc0\x17\x81\x87\xa6\x96\xca\x9e\x7d\xde\x9b\x97\x32\x0e\xa4\x29\xad\x8e\x62\xf0\x42\xeb\x19\x1b\xf7\xa6\x1b\x0f\x65\x76\x39\x4a\x4c\x12\xba\x35\x86\x34\xe3\x94\xb2\x7a\x3d\xe5\x5a\xa8\x23\x6b\x41\x04\x12\xd3\x07\x9f\x54\xbc\xa9\x84\x58\x87\xb6\x6f\xba\xeb\x85\x9d\xf5\xf1\xed\xfd\xb1\x67\xdd\x9e\x57\x7f\xfb\x41\x50\xe3\x78\x3d\xe1\x3e\x55\xb7\x4a\x0d\x67\x1d\xdb\x3f\x7a\x0a\x07\x05\x88\x76\x88\xa8\x58\xcc\x0c\xae\x17\x42\xed\x33\x0a\x4b\xd8\x4f\x8b\xc8\x30\x0c\x19\x1d\x87\x8f\x29\xbb\xe0\xeb\x46\x0d\x9b\xac\x64\x67\x0c\x14\xaf\x00\x58\xf0\xb5\xf6\xf7\xc8\x6d\xf6\x18\xc5\x64\x1c\xe2\x7f\xbb\xa3\x84\x36\xc9\x82\xf3\x55\xc7\x4b\xa4\x68\x8d\xd0\xc7\xf4\x21\x10\xda\x61\x6d\x07\x06\x0a\x74\x6a\x95\x13\xf3\x8b\xdc\x35\xfe\x8b\xb1\x17\xc1\x86\xbb\x0b\x75\x92\xde\x78\x66\xa2\x7a\x10\x28\x59\x44\x09\xbc\x29\xcb\x0a\xe3\xb2\xdb\xf2\x58\x9f\x3f\xc3\xfa\xe6\x17\xaa\xed\x19\xdb\x7e\x94\xc7\xc8\x5c\xe9\x50\x64\x55\x44\xe5\xb6\xf5\x7f\xd1\xc7\x96\x18\xff\x94\x3a\xf6\x8a\x41\x94\x3c\xaf\x32\xa3\x2b\x2a\x33\xba\xb2\xc9\xa8\x2a\x7f\xc6\x77\xc9\x9f\x86\x7a\x03\xb2\xe4\x45\x4c\x00\x31\x04\x3f\x4f\xcf\xcb\xd9\x5a\x7a\x6e\xfe\x29\xaa\x7c\x00\xda\xba\xcc\x2d\x36\xdc\xef\xab\x7a\x22\x8a\xba\x0e\x81\x64\xe7\xc4\x9b\x73\x5f\xc4\x2d\xe6\xbc\x67\xdc\x7a\x45\x96\xe0\xdd\x40\x6d\xeb\x2b\xd8\xd6\x0a\x7a\xb0\xc8\x37\xf9\x21\x8a\x2d\xfe\xb1\x40\x89\xde\x61\xa6\x23\x00\x8d\xa7\x95\xd9\x76\x34\x1a\x89\xf3\x26\x7a\x7e\xb7\x95\x6a\xd7\x79\xdd\x07\x3d\xa1\xeb\x81\x3c\x8f\xf2\xc2\x24\x05\x1d\xce\xe8\x03\x32\xd9\x41\xc8\x40\x7e\xcc\xce\xa6\x45\x02\x3e\xdf\x1c\xe5\xe7\xe6\xda\xcb\x51\xa1\xa5\x45\x2e\xd1\xb2\x13\x8e\xbb\x0f\xff\x77\x1d\x5a\xb8\xb0\xaf\x0b\xaa\xc7\xa5\xbb\x3e\xf5\x1d\x3f\xa6\x4e\x50\xd6\x32\x14\x05\x31\x3c\x14\x91\x10\x7b\x42\x65\x1b\xdd\xb2\x40\x17\x49\x7b\xf2\x22\x42\x1f\x1d\xab\x8a\xfa\x82\x72\xf8\xd9\xd2\x51\xd0\x6e\x13\x0e\xa2\x95\x08\xf2\x5f\x4c\xc0\xc0\x51\xa0\x8b\x1d\xa1\x48\x3f\xae\x4a\x48\x93\x3c\x45\x9b\x56\xa2\x45\xb5\xba\xf4\xd7\xc2\xff\x7f\x9c\x06\xd5\xae\xc6\xd8\xbf\x9b\xd7\xe9\xcd\x7a\xc9\xe9\x21\x05\x8f\xa1\x3b\xce\x5b\x39\x50\x8d\xe8\xbb\x54\xd3\x63\x97\xfe\x88\xd7\x29\x96\x20\xe0\xed\x8c\x5d\xc1\x03\x65\xda\x2b\x42\x22\x02\xf5\xf7\xc6\x8a\xb4\xf5\xe8\xa4\xf5\xe5\x57\x9c\x1e\xf4\xe6\x49\xb7\x94\x7e\x6c\xf9\x8c\x4a\x06\x01\x89\x45\xce\xf9\x45\x93\x80\x75\x55\x14\xb8\x23\x00\x55\x1e\x46\x71\x7c\xed\x49\x8c\xb1\x5d\x9b\x51\x5e\xec\x17\x94\x9a\x33\x4b\x26\x48\x62\xd7\x04\x64\xb7\xf1\xa8\xe5\x23\xdd\x75\x65\xc1\x79\xdd\x2f\x39\x13\xdb\x7c\xc6\x7b\x50\xf3\x04\x18\x09\xd5\xfd\x40\x8d\x79\xce\xe0\xe1\xa2\xc9\x96\x99\x04\x1f\x0c\x09\xdb\x4f\xc6\x8a\xe5\xc2\xb0\x4b\x6c\xd1\x69\x2a\xf1\xfe\xdd\x0b\xa4\xf4\xe7\x66\xad\xe2\xcd\xe9\x13\xe2\x13\x8e\x44\x15\x66\xeb\xb9\x0c\x59\x5d\x1b\x74\x7e\xde\x75\x3e\xe5\xe7\x8a\x2c\x92\x91\x99\x3f\x9e\x94\x3e\xc2\xf4\x2c\x7b\x7e\x9e\xb0\x3e\x38\x7f\x90\xbd\xe0\x21\xf0\xf5\x14\x31\x1b\x02\x85\x36\x5b\x8d\x72\x01\x1d\x22\xdf\x86\xdc\x20\x5f\x4f\xbc\x6e\x4a\x6c\x46\x45\x3a\xc2\x3e\x95\xc3\x98\x6e\x13\xbf\xd0\x99\xce\x7a\xd2\x8b\xb8\xe4\x71\x7e\x71\xa7\x03\xaf\xe9\x77\xba\xd1\x98\x3e\x1a\xc5\xe9\xd0\x49\x3f\x22\x2f\x7f\x4b\xe1\x3b\xdf\xf2\x85\x52\x75\xbb\xa3\x65\x94\x6c\x92\x03\xb7\x16\x94\xb7\xe0\x97\x5f\xe1\xf3\xfe\xfe\x54\x91\xb3\x67\x5f\xdb\xc6\x36\x2c\xb2\x28\xa4\xce\xaa\xc3\xf9\x23\x1c\xf2\xb5\x9a\x7c\x8d\xf2\x2f\xce\x68\xe8\xc2\x4e\xc5\x62\xe2\xfe\x1a\xba\xb1\xb3\x13\x9f\xbe\x8d\x32\x9b\x9b\xbe\x6d\x29\x69\xff\x53\x84\xac\xe4\xeb\xa6\x9d\xb4\x36\x88\x0e\x1e\x94\xf4\xb0\xb6\x14\xf9\x45\xa3\x4c\x5b\x6e\x12\x69\xb8\x88\x99\xbf\x86\xe6\x17\x81\xca\x47\x3f\x50\xa5\x9b\x08\x2f\x12\xbe\x09\xed\xbe\x8f\xf9\x37\x9d\xa8\x82\x97\x56\x06\xc4\x13\x9f\xe3\x96\x96\x49\xde\x3e\xf1\xd9\x5b\xb7\x8c\xe2\xaa\x70\xda\xa9\xc6\xbb\x5b\xb5\x66\xe3\x35\x05\x2f\xdc\x3a\xf1\x3c\xa9\x93\xda\x53\xfc\x06\xd5\x65\xd8\x70\x10\xec\xe7\x47\xa9\x6c\x83\xff\xa8\xc9\xeb\x4d\xf5\xe1\xab\xb7\x71\x96\xe3\xd5\xfb\x8b\xe5\xb8\xef\xce\xad\xa6\x55\xb2\x12\x47\x05\x98\xd5\xcc\x05\xad\x0b\x67\xd6\x24\x35\x7d\x3b\x0e\xbe\x3c\xac\xde\xa1\xe5\xcc\xde\xa3\xdc\x02\xcd\xe0\x7f\x3f\xf6\xce\x4f\x17\x55\x59\x6e\xf2\x91\x0d\x45\x3d\x4c\x64\xd8\x7c\x5b\xe3\xac\x42\x3a\x78\x64\x06\x3b\x36\x03\x3b\x87\xe4\x88\x25\x6b\x10\x38\x45\x6a\x48\x3d\xde\x90\x74\x8b\x31\xb1\x76\xb4\x2b\x4f\xc1\x6a\xa2\x27\x0f\x8d\xcd\x8b\x2c\xad\x19\x87\x2b\xfd\xd2\x33\xea\x28\x4e\xe3\x9e\xcd\xb6\x29\x33\x9d\xab\x35\xa3\x03\x9f\x9e\x3e\x08\xbc\xd9\xff\x03\xe4\x61\x32\x8f\x6d\xe2\x73\x0f\xd3\x8c\x9d\x6a\x44\x78\xad\xa6\x32\x52\x2d\x48\xce\x39\x9a\xe6\xfc\xb0\x5c\xd5\x8d\x8b\xe3\xda\x71\x5e\xeb\x40\x81\xc4\xb0\xa3\xfa\xd0\xc0\xd4\x3e\x46\x65\x27\x8e\x7e\xa6\xf1\xb0\x5f\x74\xa0\x10\x5d\x63\x0f\xf0\x7e\x0c\x2e\x89\xe8\x39\x4d\xb0\xcc\x44\x94\x77\x4a\xdc\x75\x69\xf1\x0b\x6d\x3b\x1c\x0d\x4c\x1e\x71\x4e\xa4\x3d\xd4\xf9\x5a\x0d\xcd\x46\x99\xed\x57\xc5\xd5\xba\x72\x56\xfb\x4d\x65\x52\xa6\xcd\x6a\x2f\x50\x32\x22\x35\xaf\xef\x50\xd9\x2c\x23\xc3\xad\xfd\xbb\x39\x55\xfc\x98\x9e\x11\x5f\xab\x1f\x84\x8f\xf1\x76\x4a\x4c\x51\x60\x1c\x26\xb7\x6b\x5c\x6f\xa5\xec\x97\xaf\xa1\xb9\x83\xad\xfd\xfe\x58\x99\x53\x82\x0f\x80\xa1\x2e\xeb\xf7\xe0\x43\x50\xac\x4d\x93\x28\x14\x83\x8d\x57\xb5\x56\x9b\x6c\x74\xc6\x7a\x39\x30\xeb\xfc\xbc\xfc\x83\xea\x12\x83\x88\x90\xb7\x34\x8f\x25\xf0\x26\xcf\x5e\x03\x54\xa1\x69\xb0\x5a\x1e\xf5\x0e\x45\xdf\x7b\x74\xa2\xe4\x13\xa3\x5e\x8f\xf4\x6b\xdd\xb2\x3c\x17\x10\x8b\x40\x8e\x01\x5d\xd8\xaa\x5e\xfa\x29\xd7\xd3\xed\x7a\xa7\x0c\xe9\x14\x68\x04\x9a\xc7\x0f\x1f\x55\x31\x60\xd9\x3a\x52\xc8\xab\x22\xc5\x36\x56\xe8\x94\x0b\x0a\x3f\x06\xb5\x6f\xd3\x77\x64\x72\x9c\x86\xdf\xd5\x34\x88\xef\x36\x29\x5f\x99\xcc\x26\x06\x55\x83\x03\x90\x39\x98\x07\x23\xc0\x45\xa2\xc4\x4f\x49\xd7\x6c\x5e\xac\x99\xac\xd7\x52\x32\xb3\x68\xda\xca\x18\x54\xbe\x79\x2f\x33\x43\x33\xab\xd8\x38\x37\x14\xa8\x1e\x72\xda\x68\x1f\x7c\xa2\x7d\x40\x2e\x4c\x7d\x54\xd2\x88\x49\xca\xc2\x2a\x89\xb2\xb3\x4a\xa2\xec\xec\xf8\x51\x4f\x20\x5a\xfe\xdb\xad\xaf\xfa\x46\xb3\x36\xcf\x98\xe9\xd4\xcd\xaa\x54\xc2\x7d\x03\x81\x5c\xa4\xd2\x3d\xb0\x6a\x1b\x39\x79\x20\x1d\x9d\xe9\x10\x1a\x14\x47\xdc\x15\x84\x1a\x24\xa7\x8f\x00\xa8\x82\x1c\xf8\x99\x4e\x55\xf2\x29\xd9\x23\x71\xdd\xff\x06\x1c\x64\x11\x5e\x2f\x8d\x5b\x07\x0e\x6c\x5c\xae\xd5\x9d\xfe\xf8\x1a\xff\x2c\x5c\xc7\x51\xe1\xdc\xa3\x68\x89\x33\x6e\x17\x4e\x4b\x2c\xfd\x93\xa0\xa9\xe3\x2e\x3c\x32\xf1\xe2\xad\x6f\xe1\xd9\x63\xe3\x6d\x21\x0d\x36\xe0\x78\x7e\x9e\x6c\xce\x21\x05\xfb\x0c\x24\x86\x71\x5e\xce\xa2\xcc\xc0\xe0\xe5\xd1\x8e\xa7\x02\xfd\x89\x1e\x0a\x6d\x90\x33\x05\xa2\xdb\xf9\xa6\x03\x22\x2f\xb2\x68\x85\x3d\x5e\xa4\x7f\x40\xf7\x86\x5f\x4c\xb9\xf1\xef\xdf\xfd\x6a\xfb\xf9\x56\xeb\xf9\xe7\x3d\xb8\xb5\xfa\x4a\x02\x6e\xf5\x5d\xd4\xdc\x86\x65\x16\x15\x91\xcd\x9f\x50\x74\xac\x3b\x08\x11\xf8\xa8\x2c\x2a\xc7\x89\x57\x75\x64\x56\x37\xb8\xfa\x73\xce\x61\xff\xf9\xe7\x6b\xee\x64\xa8\xe9\xb6\x33\x55\x11\xd5\xda\x3d\x2c\x0c\x67\xf9\x5c\x3d\x66\xe8\x53\x1d\x52\xe1\xf5\x1a\xf2\x00\xfe\x87\xc0\x8b\x58\xdd\xd6\x92\x98\x9f\x34\x81\x65\xd6\xa2\x8c\xd1\x91\x92\xec\xb6\x9c\x80\xf5\x69\xd7\x0f\xeb\x91\xc4\x9a\x03\x2f\x5f\x52\x75\xe7\x25\x15\xf1\xc2\x81\xc9\xe2\xc8\xce\xb6\x96\x16\x37\xb8\xd1\xcf\x26\x39\x55\xdc\xdb\x38\x1d\xd4\x7c\x73\x9e\x72\xcd\xb6\x6c\x68\x12\xb1\x2c\xc7\x0d\xc3\xf8\x00\xd3\x9d\x67\x26\x9e\x3d\xf3\x3f\x8d\x1f\xf1\xa2\x12\xad\x96\xd2\x72\xd2\x44\x96\xa6\xee\x67\x3f\x33\xbd\x92\x61\xd1\xec\x1f\x41\x71\x42\xbc\x24\xb4\x72\x5a\x31\x88\x92\x27\x7c\x5b\xf7\xaa\xb2\xdd\x79\x14\xbb\x0b\xc3\x9e\x87\x1a\x2c\xf3\x87\xda\xce\xe3\x86\xca\x29\xd8\x87\xd9\x91\xe4\x16\xbd\xdc\x19\xf6\xad\xf3\x8c\x77\x1e\xe5\xd7\x30\x91\x63\xc9\x5d\xc5\xee\xdd\x4e\xdb\x07\xb5\xde\x2d\x2a\xb9\x45\x50\xce\x15\x95\x6b\x64\x8f\xeb\xb4\x28\x2f\x69\xd3\xb5\x4b\x53\x03\xea\xbd\x0b\xed\x3c\x2d\x8b\x81\x35\x79\x61\x33\x40\x37\x44\xe6\xaa\xa5\xf4\xaf\xfc\xc0\xa1\x17\xe5\x61\x5a\x52\x88\xff\xff\xa9\xe5\xe1\xc3\x75\x2f\x1d\xda\x24\x0a\x23\x3e\x1b\xa4\x4c\x55\x23\xf4\x69\xb2\x8d\x94\xfb\xb1\x5d\xa5\x83\xa5\xa5\x60\x83\x81\xc6\x13\x2a\x04\x77\x6c\x6d\x06\xd6\xa6\xeb\xd8\x57\x9f\x94\x5f\xa8\x0e\xae\x09\x43\x3b\x2a\x60\x5c\xf2\xb2\x97\x6a\xde\xeb\x1f\xaa\xb7\x3f\xf9\x43\xdd\x7a\xb9\xa4\xbe\x95\x18\xe6\x3d\xa2\x3c\x83\x99\x86\xed\xc0\x38\x7b\xf6\x09\x19\x47\x03\x31\xb9\x85\x82\x7e\xc8\x59\x3e\x20\x10\xd3\x91\x32\xe1\x44\x60\x05\x25\xa4\xf3\x98\xa6\x21\x53\xbf\x1c\x68\x96\x8f\x8c\xe4\xfb\x69\x4a\x28\xe6\x19\x85\x77\x82\xc0\x2a\xd3\x81\xb1\x20\x65\x20\x57\x33\xf6\x1d\xd9\xac\x58\xdf\xe6\xf3\xcc\x8b\x01\x9d\x33\x0e\x86\xea\x6c\x08\x6e\x8f\xdd\xb0\xef\x1f\xbc\xa7\x20\xd5\xc7\xdc\xc7\x28\xcc\x8a\x19\xa6\x59\xa4\x14\xb5\x8e\x6a\x40\xff\xd1\xa9\x62\xd7\x79\xb2\x99\xd7\x87\x0c\x23\x12\x27\x0f\x75\x84\x5c\xd0\xfe\x69\x71\x64\x13\x50\xe9\x35\x71\xab\x46\xfe\x01\x62\xe1\xfb\x88\x47\x82\x1b\xf4\x74\x8f\x4b\x8a\xd4\xf1\xdf\x1c\xaf\x99\xc6\x29\x55\xf8\x4f\x54\xb6\x3b\x8c\xaa\x54\x95\x46\x68\x8e\x48\x0a\xe0\x91\x08\x3a\xf8\x6e\xcd\x28\x4d\xfa\xbc\xda\x45\x9f\x9d\xbe\x8a\x48\xdd\xfa\x2c\xab\x58\x8b\x84\x65\xb3\x58\x77\xe5\x90\xa0\xdb\x30\x98\xb3\x59\x9a\x8f\x4c\x08\x10\x05\x60\x1a\xef\xe3\x8b\xa2\xcd\x8b\xf9\x3b\x36\xff\x8d\x86\x09\xea\x22\xc6\x29\x21\xcd\xbd\xe9\x9d\x9d\xa1\xf1\x82\x33\x37\x56\xb8\xb6\xbc\x88\xb2\x5c\xc1\xee\x59\x79\x57\x64\xb8\x1d\xb2\xd6\x64\xbd\x2a\x89\x9e\xf1\xf3\xb0\x6b\x74\x83\x04\x8b\xa1\x6c\x7c\x0f\x8f\x6b\x1c\xb9\xbc\xc8\xca\x10\x87\x0d\x17\x34\x63\x55\x13\x9d\x57\x37\xac\x4c\xca\xbc\x34\xf1\xac\xc2\xe7\xf3\x0d\xd3\x66\x27\xd8\x68\xb7\x54\x4e\xf8\x8e\x1a\x55\x2e\x9b\x62\x40\x20\xcc\x2a\xdc\x3a\xb9\x9d\x05\xe7\x78\x76\x7b\xfc\x94\x42\xd5\xb8\x34\x78\xa1\x2e\x04\xcf\x2f\xa6\x1e\xd0\xc2\xc2\xcb\xbe\x4d\xe2\x55\x2d\xce\x23\x4f\x10\x3b\x85\xc7\x1c\x66\xfb\x75\xf9\x39\x11\xe7\x50\xae\x4c\xd3\x92\x48\x7b\x17\xda\x23\x13\xae\x18\xa7\x76\x26\xfa\x5a\x2d\x67\x09\x72\x41\x69\x42\x0d\x4d\x62\xfa\xa4\x2b\xfa\x28\x7d\xc1\x3a\xe6\x0e\x21\xee\x63\xad\x2a\xf1\xf6\xd8\xc7\xc1\xd6\xc4\xc7\xc1\x16\xa4\xb0\xd0\xc9\xd2\x76\x39\x37\x75\xfb\x0b\x9f\x1d\x4b\x97\x9b\xd6\xc8\x4f\x27\xb4\xf7\xc4\xef\x46\x75\x1a\xb2\x28\xaf\x8f\xa5\x61\x4a\xc7\xd7\xbe\x6b\x1a\x0d\xe5\x0b\x3b\x18\x94\xdf\xe6\xe7\x1a\x2d\xde\xaa\x4c\x30\x2c\x98\xc8\x8f\x28\xf2\x7b\x08\x82\xfc\xa2\xa9\xc1\x65\x87\x5d\x93\xf5\xd3\x19\xef\x89\x01\x59\x4a\xe7\x5b\xf6\xe5\x57\xf8\x8b\xff\xbe\x62\xe1\x65\x69\x57\x04\x53\xd0\x87\x40\x72\x87\x18\x8d\x89\xb6\x88\x65\xf9\xd6\x09\x71\xd7\xe2\xc2\x24\x45\xbe\x0d\xcf\x03\x59\xf8\x39\x5d\x66\x5d\xa1\x3f\xd4\xa4\xeb\xa7\xb0\x28\x0f\x15\xf5\x65\x64\x33\x7b\x90\x52\x01\x3c\xd0\xa3\xda\x41\xe2\xa8\xc2\x1d\x02\xf3\x1a\xa5\x49\x4b\x7d\xee\x33\x81\x96\xbb\x50\x93\x9a\xb5\x34\x5b\x21\x1c\x45\x4b\xfb\xbf\x07\xda\xff\xdd\xe5\x76\x36\x2f\xa2\xa1\x29\x80\xb1\xf7\x62\x73\x2d\xe7\x7d\xf5\x8e\xf6\x17\x84\xf7\xa8\x18\x19\xa9\xb6\x1c\x6b\xbd\xd1\x80\xea\xe9\xcf\x77\x3c\x85\xed\x35\x82\x28\x2d\x2d\x7a\xf3\x0b\x07\xb0\xfa\x71\xa3\xf0\x48\xdf\x16\xfc\x74\x30\x5e\xb8\xcb\xe3\x1b\x91\x24\x55\x32\x24\xa7\x15\x89\x1d\xc8\x4c\xb4\xa7\x50\xbe\x73\xee\xc1\x2f\x14\xeb\x9b\x48\x8f\x4c\x98\x54\xd1\x1b\xa9\x9e\x84\xf2\x69\x18\xf9\x62\xdb\xbe\x3e\xb2\x0a\x0d\xc5\x49\x01\x3d\x68\x49\x10\x1e\xf3\x28\xa0\x10\x53\x67\x6d\x41\xe3\x8c\xdd\x16\x9c\x0d\x17\x80\x17\x98\x5c\x1f\x76\x27\xf3\x72\x9a\x11\xde\xfa\x51\xbf\x77\x1f\x9d\x78\x84\x20\x5b\xd6\xa1\x5d\xc3\xb5\xa5\xb4\x61\xe8\x31\x62\xa9\x41\x60\x1a\x61\xe0\xf8\xd8\x73\xf5\xb7\xa2\x94\x43\x69\xc9\xc7\x2e\x4e\xd7\x9d\xd4\x89\xc4\x6f\x5c\x1e\x2b\x8e\xce\xdd\xf1\x33\x53\x42\x1a\x5f\x78\xc2\x4f\x0d\x39\xce\xa2\xa1\x78\x8d\xb2\x29\xf4\xe8\x3e\x45\xc0\x42\x96\x0a\x3d\x7c\x7c\x88\x33\x78\x5f\x60\xda\x66\x3b\x94\x9a\x23\xfe\x5c\xc7\x83\xc3\xb7\xdb\xd6\xa9\x6a\x48\xd1\x64\xf1\xa7\xd5\x4f\xc6\x9e\xc2\xf9\x83\xa0\xee\x09\xa2\x3d\xd5\xab\x02\x16\x9d\x50\xf6\xad\xe7\x3c\x2a\xea\x81\xf3\x8f\xb7\x3c\x3f\xf6\xda\x38\xe7\x9b\x5a\xfc\xdd\x38\x0d\x57\xba\x65\x95\x82\xcf\x28\x79\xa5\x4b\x6a\xc7\x6f\xa5\x16\x05\x5b\xe2\x4d\xa9\x3b\x7c\xb1\x5d\x0c\xec\x72\x81\x8c\x0f\x6b\xe2\x1c\x29\xa2\xa3\x22\x3a\xac\xe6\x4f\x37\x83\x5a\xc2\xd7\x2b\x43\x9b\x13\x80\x52\xd0\xbd\xf4\x37\x6a\xe7\xa9\x48\xda\xf9\xa1\x89\x29\x8b\x74\x98\x76\xa3\xd8\xce\x2a\xec\x20\xb3\x46\xb1\xa2\xee\xaa\xfe\xed\xff\x3a\xf6\xe3\xed\xd3\x2e\x4b\x18\x95\xd9\x28\xcd\x65\x84\x80\x19\x3d\x2b\x1e\xf1\x0b\x17\xf4\x87\x66\x3d\xcd\x66\x3d\xf2\x11\x77\xc3\x65\x76\xd5\x03\x65\x09\x67\x24\x70\xcc\x0e\x9a\x08\x27\x92\x4c\x31\xe3\xb4\x0f\x7f\x0e\x2f\x4b\x7d\x42\xcb\x52\x9f\x50\xc9\x45\x98\x45\xc3\x9c\x99\xc4\xcc\x23\x53\x42\xd1\xa7\x9b\x26\x54\x71\x54\x0c\xd2\x7e\x66\x46\x83\xf5\x9a\x44\x0d\x52\x6f\xd9\xce\x4f\xb9\x92\x1a\x2e\xfd\xcc\x3e\x42\x60\x98\xed\x28\x3f\xe5\x4b\x8a\x7d\xb4\x81\x35\x88\xc2\xaf\x45\x05\xb1\x8c\x47\x55\x4d\xfd\x56\xb3\x4a\x63\xba\x46\x3e\x00\x1b\xec\x20\x24\xa2\x0c\xda\xbc\xc2\x87\x8f\x6d\x9d\xa7\x55\xb6\x47\x9e\x38\xe0\x61\xa3\x3e\x3b\xab\xc4\x2a\x4f\x61\xf3\xa1\x4a\xff\x13\x35\x83\x1a\xc4\xeb\x8f\xf8\xde\x2d\x5c\x88\x30\x8d\x7a\x7a\xa2\x68\x86\xf7\x21\xfe\x77\x57\x99\xd2\x6e\x20\xda\xb8\xb6\xc8\x3f\xf9\x55\x57\x6f\x55\x1f\x91\xb2\xc7\x37\xfe\x3e\x12\x10\x9c\x13\xdc\xd7\x96\x24\x69\x5a\xaa\x01\x6b\xd5\x14\x68\xe9\xb6\x7c\xdb\x1c\x7f\xf2\xb3\x92\xeb\x2a\x77\xb3\x59\x39\x72\x6e\x94\x08\x0c\xc0\x77\x4a\xd3\x89\xde\x1a\x48\x89\xd9\x8e\xcf\x14\x97\x81\xf6\x9e\xf1\x78\x9c\x1f\x04\x1e\xd8\xc9\xf2\xe3\x88\x59\xa7\xfd\xb8\x35\x05\x00\xd2\x57\xdd\xb7\xb1\x38\x65\xcc\x3c\x4d\x91\x7b\x19\x63\xb1\x51\xe6\xd0\x3f\x42\x95\xf6\x25\x57\xa3\x3d\x51\x18\xa7\x6b\x02\x9b\x63\x78\x73\xa0\xa1\xce\xd3\x73\xe3\x57\xeb\xc2\xba\x28\x9d\xce\x05\x4a\x5d\xe1\x5c\x13\xcc\xa8\x1b\x9b\x1c\x9f\x4c\xd4\xc9\x7c\x2f\xe3\x9e\x2a\xa1\x97\xa3\xfe\xa0\x3a\xfa\xb6\xf9\x29\xdb\x51\x5a\xa0\x68\xe4\xdf\x0c\x74\xef\xf4\x94\xc6\xdf\x9d\x52\xea\xca\xd3\xde\x24\x18\xd2\x10\x5b\x38\x8b\x04\x21\x29\x1a\x35\x5e\x6b\xfe\x84\xd6\xc3\x5f\xb5\x59\x9c\xc2\x20\xc9\x87\xfa\x8b\x4a\x35\xe5\xa2\x4a\xf7\x86\x91\x19\x46\x68\xf1\x0b\xa6\xa5\xe5\xc4\x07\x4e\xa8\x50\xfb\x9a\x19\x99\xc4\xe6\xf6\x19\xea\xff\xb0\x7e\x5a\xe0\x27\xce\x87\xe9\x8c\x40\x73\xf7\x96\x96\x3f\x3e\x1b\xd4\xbc\x0d\xbe\x2a\xf7\x1b\x26\x23\x78\x62\x9f\xd2\xa7\x43\xbf\xe5\x36\x96\x17\x72\xc6\x87\xd8\x4f\x62\x77\x5f\x2d\x7e\x1c\xbf\x5b\x28\x86\x08\xee\x8f\x8e\x47\xb6\xb0\x0e\x5a\xaf\x2c\xb2\x24\x89\x24\x47\x62\x20\x4c\x7b\x17\xb7\x9d\x5b\xb4\xfc\x87\xc7\x4a\xd1\xfb\xc6\x66\xf2\xd0\xdc\x9e\xf6\x2b\x7b\xf6\xcd\x28\x4f\xc8\x63\x81\x9a\x29\x1d\x53\x43\xaa\xc1\xf8\x51\x5f\x0b\x32\x5f\xcb\x21\x3b\xaa\xa5\x26\xc8\x0e\x3f\x0d\x5a\xa1\x99\xc8\x4e\x4f\x47\x3a\x5c\x53\x85\x52\xee\xcf\x17\x02\xd5\xc6\xbe\x30\xa6\x24\xa5\x56\x68\xf1\x8f\xd1\xba\x90\x5f\xa9\xee\x18\x50\xfd\x87\x1b\x77\x45\xb1\x3e\x22\xb5\x05\x45\x36\x3d\xa5\x3a\xb3\xa7\x9a\xa4\xf5\xf3\x32\x83\xa2\x13\xf6\xc1\xa3\x44\xff\xc6\x11\xf4\x14\xe5\x54\xc2\xe7\xd4\xd0\x90\xe9\xf8\xc4\x12\x61\x25\x8a\x7f\xc5\xb9\x91\x3e\xe8\x61\x05\x6c\x39\x5d\x83\xa5\xe5\xc5\x17\x67\x7d\xee\xb7\x13\x6d\x7c\x87\x94\x72\xa3\xf3\x4f\xe8\xd8\x46\x26\x39\x2d\x62\x40\x6c\x69\x1a\xe7\x7b\xb7\xe1\x63\x35\xeb\x2a\xa4\x78\x35\x23\x1e\x9c\x2b\x03\x1b\xc7\x70\x9b\xe0\xc4\x9f\xda\x9a\x4e\x24\xd2\x6b\x74\xd2\x87\xc1\xa6\x40\x35\x28\x94\xf6\x27\x94\xea\x4c\xd2\xcb\x77\xfa\x10\xf3\x4e\x4d\x80\x51\xbb\x8b\x01\x7b\xe8\x94\x19\x3d\x19\xff\xb8\x36\xda\xa7\x9b\x86\x47\xce\x4a\xa8\xa2\x68\xf6\x39\x85\xa6\x27\xdd\x6a\x0b\xa1\x76\xc5\x04\x08\x74\x35\x7d\x5a\x09\x01\x1e\x1d\x6b\xd3\xff\x64\xd5\xae\x13\xc0\x1e\xff\x78\x95\x9e\x34\x5f\xd7\x1e\xd4\xc8\xc4\x3b\x94\xea\xe3\x2c\x69\x83\x40\x4d\x04\x83\x5e\x86\x42\x28\x83\xa6\xbb\xe4\x34\x2b\x10\x89\x96\x33\x03\x7c\x9f\xd2\x66\xf9\xf9\xe7\xdc\xa9\x33\x14\xfb\x0f\x6e\x8e\x37\xb1\x7e\x37\x47\xf6\x57\xaa\xd0\x9e\x16\x83\xd9\xea\xad\x90\x6b\x3d\xc4\x6d\x17\xd1\xbf\xea\xbd\xd0\xec\xe1\x42\x0e\x11\x65\x5a\x97\xec\xc0\x81\x76\x1e\x1d\xc4\x1a\x46\xb0\xff\x58\x59\xf3\xcc\x00\x47\x8a\xf9\x47\x95\xce\xfd\x83\xa9\x41\xed\x36\x35\x96\x7c\xa8\x35\x38\x1e\xd2\x97\xc7\xa7\x03\xd1\x0f\x01\xea\x0a\x9e\x2a\xf6\xc8\x9b\x0d\x1b\xeb\xe5\x76\x66\x87\x91\xc3\xa9\x38\x9f\x71\x07\xc4\x3c\x8f\x48\xc8\xa6\xf4\xaa\x87\x11\xa6\x29\x7c\x37\x97\x04\x1e\xf8\x49\xe0\xcd\x46\x3f\xd1\x0a\xa6\x2f\xef\x9b\x55\x68\x2f\x0c\x86\xf9\x5a\xb1\xf7\x18\x05\xc6\x2f\x54\xd8\x5b\xce\x4c\x12\xe6\xf4\x46\xa2\x39\xe1\xd9\x59\x97\x5c\x96\xd9\x35\x71\x1c\x39\xef\x06\x91\x28\xf3\x7d\xb1\x0b\xaa\x17\xd6\x8b\x4c\xec\xaa\x4f\x64\x68\x3f\xa2\xdb\xc6\xd7\xca\xe1\xcc\xf6\xfb\x50\xd7\xe2\xed\x18\xe8\xad\x29\x63\x6d\xb0\xd0\xc0\xce\x14\xea\xac\x87\x01\x90\x80\xa6\x80\x71\x4d\x61\x89\x44\x48\xc3\xd8\xfb\xcf\x52\xc2\x88\xdb\x3e\x83\xd6\x37\x8e\xc2\x9b\xf4\x3e\xe8\x66\x6e\x83\x30\x0f\x73\xb4\xc7\x8a\x30\x79\x5b\xa3\xed\x5b\x98\x5d\xa2\x67\x73\x46\xcf\xa4\xd8\x7c\xc0\x41\x94\x9d\xd5\xd1\x0c\x05\x23\x77\x98\xea\x7e\x70\xc3\x00\x2d\x4e\x57\xed\x8c\x6a\x6f\x1d\xd6\xdc\x4b\x7a\xaa\x42\x46\x53\x18\xd9\xb8\xec\xf7\xc9\x8b\x6d\x69\x37\x77\x83\x3e\x52\x9d\xa1\x8f\x1a\xd6\xe4\x62\x3b\xb7\x45\x11\x4b\xb1\x84\xe3\x89\xf1\x2e\xfc\xa2\x49\xa8\xcf\xc6\xb9\x5d\x1b\x58\x99\xf1\xc9\x44\xc6\xe5\xd2\xff\xdd\x45\xc5\x0d\xa6\xa5\x19\x46\x36\x29\x38\x4f\x46\xd3\x0a\x3d\x04\xbe\xfe\x4c\xf7\xb7\x65\x93\x0f\x44\x7a\x89\x5d\xfb\xb0\x76\xc5\xc2\xef\x11\xb7\x4b\xfe\xcb\xc7\xe9\xd1\x21\xf3\xbe\x47\xa1\x02\x65\xd5\xbf\xc6\x6f\x60\x6c\x7c\x85\xa2\x35\xb6\x2c\x24\xf2\xd1\xab\x3b\x12\x28\xec\x1c\x35\xe1\x44\x6c\xcc\xc3\x92\xae\x6b\xf3\xa9\xa3\x81\xb2\x15\xfc\x41\x0d\x52\x3c\xa6\x21\xb8\xd8\xa0\x54\x77\x05\x8b\xeb\x3f\x36\xca\xf6\x67\xd6\x2a\x45\x87\x3b\x81\x42\x32\xdf\x69\xd2\x5b\x5c\x36\x11\x97\xf3\x7a\xe3\xb9\xe6\x89\x83\x55\x5e\xd9\x2c\x23\xfa\x2b\xed\xf9\xf9\xa5\xd9\xea\xec\x45\xd8\x9f\x99\x78\xb4\xca\x4c\xc7\x8b\x91\x1e\xa2\xfd\x20\x5b\xe0\xd9\x86\x0c\x41\x23\x20\x51\xc0\xf2\x75\x93\x57\x51\x98\x26\xcb\x71\x14\x16\xad\x9a\xe5\xa5\x87\x91\x5c\x9a\xf2\x52\x38\x70\xa0\x9d\xb0\xcc\x05\x93\xab\xe9\x81\x08\xd1\xfa\x49\xe5\x18\xdb\x8f\x86\x16\xb1\xc0\x39\xc2\x78\x09\x8d\x40\xf8\x8f\x43\x3b\x4c\x33\x93\xf4\xca\xe1\x8c\x72\x31\xfa\x54\x09\xd1\x5d\xaf\xa9\x57\x3c\xae\x0d\xde\xed\x2c\xe5\xb1\xc8\x84\x4e\x69\x7b\x88\x63\x1a\x5d\x7c\x8c\xee\x1a\xff\xd4\x54\x55\xe5\xdc\x0c\x6d\xec\x35\xda\x71\xaa\xa1\xf6\xe3\x6b\x37\x1b\xcf\xd7\x4c\x32\x53\x73\x77\xf2\xf4\x83\x0d\xac\x11\xe9\xf4\xab\x1e\x2a\xe9\x0c\xf5\x58\x9f\x9a\xcb\x49\xac\x53\xa9\x2d\x1f\x53\x33\xa4\xd1\xf6\x2a\x24\xe1\x06\x7c\x7b\xec\xe1\xfd\x6f\xab\xbc\x9f\x97\xb9\xfb\x10\x2e\x21\x7a\x10\xa8\x36\xba\x6f\xbe\xb0\xb3\x78\x4b\xb9\x1b\xa2\x3a\x13\xe2\xae\x4e\x58\x46\x23\x9b\x6d\x9b\x52\x64\x14\x27\xa2\xea\x03\x71\xf2\xaf\x24\xb3\x7f\x1a\x28\xf8\xb4\x46\x30\x17\x69\x62\x71\x5f\x11\x32\x5b\x28\xe1\xf9\x45\xc7\xe7\x89\x36\xe9\xd9\xde\x2e\x1f\x51\xce\xd4\xcc\x63\x02\x65\x99\xba\x6b\xa2\x65\xf7\xa9\x72\x14\x39\x1a\xe7\x2a\x33\xf3\x4c\x87\xce\x12\x0d\xf9\x41\x3d\xb1\x8d\xc0\x9d\x72\x2c\x3c\xa3\x5c\x0d\xba\xab\x36\x73\xab\x40\xf7\x5a\x25\x4b\xf2\x53\x41\x93\x14\xd1\x6a\x94\x99\x98\xca\x7e\xdc\x9a\xeb\x58\x77\xce\x14\x75\x69\xb7\xa4\x32\x9d\x06\x5c\xd1\x88\xdc\x50\xf0\x5e\xc2\xcf\xf6\xa8\xe8\x8b\x81\x50\x99\xd6\x22\xb2\x77\x4c\x6c\x9e\x43\xce\x15\x85\xcf\x9b\x6a\x47\x31\x50\x9f\x41\xe1\x2a\xee\xcc\x4c\x7c\x0e\x91\x86\x61\x99\xe5\xb3\x3e\x49\xbd\xa9\xd4\xaa\x6f\x52\x38\x15\x91\x47\xda\x58\xfc\x42\xe9\xb0\x91\xee\x84\xdc\x1e\xbc\xc1\x3d\xf5\x66\xd3\x5a\x9f\xfb\x77\xb7\x8b\xcc\x26\x3d\xac\x7b\xae\x2b\x15\xe1\xf7\x84\x4a\x91\xf2\x28\xdc\x49\x4f\x55\xda\x05\x2d\x51\x8b\xda\xf1\xf3\x9e\x61\xfe\x4b\x4f\x4d\x6a\xeb\x9e\x3e\x0a\x16\xe0\x77\x70\xc2\x8b\x8d\xa7\x12\x71\xd6\xba\x94\x17\xc7\x8f\x38\x70\x9c\x51\xaa\x79\xd8\xc7\x7c\x1d\x68\xa2\x75\x01\xa2\x6a\xf5\xb7\x1d\x2c\xd2\x8f\x93\xa7\x00\x0c\xfb\x5e\x6a\x47\x59\x66\xf3\x51\x9a\xe4\xf0\x68\xdc\x2f\x38\x0f\x3c\x19\xbe\x6e\xb8\x59\xaf\xb6\x8b\x68\x18\xd5\xd4\xa8\xa0\x49\xc4\xd7\xaa\xa6\x2a\x4c\x5e\xf0\xae\x42\xdb\xed\xdd\xb1\xd2\x57\x7f\x57\x7d\x01\xc8\x1e\x71\x72\xab\x84\xe0\xc5\x74\x1c\xb3\x52\x94\xf9\xe7\xd4\xb6\x0d\xd3\xaa\xce\xad\x6e\x9c\x28\x8e\xa9\x3c\xab\x49\x19\xe7\xd5\xb6\x7d\x7d\x64\x20\x7c\xe0\xb9\x34\x0c\x69\xe2\x17\xb5\x29\x54\x5e\x44\x45\x59\xa4\x33\x4a\x08\xf5\x08\xa1\xe3\x31\xcd\xbc\x45\x81\x0c\xbf\x78\x41\xe9\x18\xc6\xd1\x8a\x7d\x86\x56\xa8\x13\x45\xda\x2b\xed\xec\x4f\x28\xbd\x90\x82\x5a\x0d\x61\xb7\x20\x62\xe0\x2f\xa3\xae\x42\xcd\xf9\xe1\x58\x49\x5b\xfd\x18\x40\x1c\x71\x65\x6a\x39\xce\xfc\x76\xac\x3a\x36\x70\x0c\x3c\x03\xf8\x9d\xc0\x57\xf0\xdb\x51\x58\x63\xfd\x3d\x18\x2b\x10\xc7\x69\xd4\xe9\x72\x4a\x54\x8f\x94\xab\x09\x44\x35\x69\x33\x6b\x43\x9e\x47\xa7\x94\xea\x89\x0d\x99\x16\x36\x2f\x6c\x26\x78\x4b\x44\xb7\x3f\xc3\x0a\xe7\x17\x0d\xcd\xcd\xf6\xaa\xcd\x7a\x51\x28\x94\x27\x84\xd4\x0f\x10\xb1\xf9\x85\xba\xc3\x2b\x69\xd2\x27\xdc\x39\x26\x30\xac\x27\x2f\x04\x28\x4f\x1e\x3e\xa1\xaa\x1d\xb8\x27\xb9\x6e\x8b\x62\x4c\x51\x62\x87\xeb\x07\xaa\xf2\xf6\x46\xf4\xcb\x69\xd9\x1f\x14\xd0\x51\x57\x26\xa5\x32\x7a\xdd\x41\xbb\x5f\x59\xe0\xec\x71\x5a\xa6\x6e\x40\x56\xa5\xe5\xb4\xe8\x04\x6b\x4e\x1f\x40\x54\x91\xa6\xf1\xa7\x2f\xb7\xa3\x9e\x35\xe8\xbe\xa2\x54\x3d\x8a\x5b\xc8\x2f\x94\x90\x2f\x6b\xab\x5b\xe0\x70\x31\x1f\xbd\x82\xde\x12\xbf\x18\x6b\x3d\x60\xe5\xcf\xf9\x03\x2f\x21\x60\xc2\x9c\x69\x1a\x58\x5b\xbb\x3a\x7e\xb4\x58\x13\x67\x6c\x4d\xfc\x63\x18\xd8\xb8\xf7\xa8\xca\x64\xb6\x60\x7d\xa1\x87\x72\x08\xc3\x17\xa7\xbb\xe0\x46\x04\x67\xf1\x54\x5d\xf3\xd9\xab\xea\x00\xe0\x22\x1b\xaa\xe5\x34\xff\x0e\x07\x4a\xc3\xf8\x34\xf7\x34\xa4\x9a\x6f\x7d\xed\x2b\xf2\x87\xa7\xa6\x20\xaf\x80\x9f\x9b\x47\x3d\x58\x8e\x7b\xdc\xdb\x0f\xb5\x38\xfc\x0f\xa7\x86\xf4\x4b\xbb\xdb\x36\x8e\x86\x51\x42\x8d\xec\xfd\xbb\x9d\xf0\x93\x27\xcd\x5f\x54\x58\x86\x22\xb3\x26\x2f\x33\xcb\x58\x14\xd1\xff\x56\xec\x96\x13\x8a\x9c\xbc\x92\x66\xd6\x24\xf9\x67\x8b\xfb\x36\xec\xab\xb4\xcb\xde\x5b\xf2\x98\x84\xc2\xa7\x12\x9f\xab\x1a\x29\x72\x54\x6d\x97\x55\x93\xe4\xb3\xbe\x3c\x6e\xe1\x30\x96\x65\xa5\xe8\x6a\x63\x75\x7c\x9f\x9e\xea\xb2\xec\x5d\x68\xe7\xa1\x61\x64\xb8\x60\xd3\x94\x66\xe9\x25\x95\x60\xe7\xa4\x56\xbf\x43\xf1\x2e\xa0\x7c\x2b\x8e\xfe\xd5\xbe\x74\x58\x63\x8f\x81\x3d\x3a\xf6\x0d\xce\xe3\xaa\xf3\x75\xbc\x36\xf5\x75\xb9\x6e\x3f\x8e\xba\x33\x4a\xc7\x20\xd0\xad\x5b\x85\x5c\x99\xd6\xf3\xab\x1e\xf0\xb0\x6b\xb2\xcc\xe4\xb9\xcb\x3a\x31\x39\xc2\xb3\xe0\x6b\x75\x1e\x24\x26\x0b\xd3\x22\x0a\xeb\x86\xfa\x4a\xec\xe2\x92\xc6\x9d\x9b\x38\x4e\xd3\xc4\x19\x27\xca\x6a\xf7\x10\xd1\xdb\x2a\x4e\x4d\x8b\x90\x1e\x38\xd0\xae\xee\x60\x1a\x7d\x36\x0b\xec\x31\x25\x45\x92\xec\xa0\xb5\x8d\x6a\x91\xdb\xd9\xfc\x62\x5c\x97\xde\xdc\x2f\x74\x92\x73\x81\xfa\x60\x80\x57\x3b\x8c\x96\x43\x4e\xde\x6a\xd2\xa7\xeb\x93\x7c\x10\xc7\x77\xfd\xc5\x64\x17\x37\xe8\xfe\x55\x47\x42\x2c\x07\x2f\x6e\xd7\x43\xe5\xb4\xf1\x30\xf0\x28\xf5\x9e\xdd\xe5\x1d\x9b\x7e\x58\x73\x4f\xff\x88\x7e\x05\xa7\xc8\x56\x8c\xee\xd0\x32\x3e\xac\xa6\x2e\xb7\xb5\x35\xce\x2d\x35\xe8\xba\x41\xc5\x20\x8e\xc2\x1d\x1d\x2d\x46\xdd\xa4\xcb\x90\xa5\x2c\x48\xc6\x24\xab\xb1\x1f\xb8\x9c\x74\xc8\x85\x51\x96\xc6\xd1\x72\x14\xd6\x4c\x82\xc6\x9e\x13\xe6\x9d\x96\xa0\x28\x6b\x7b\xdb\xfc\x20\x72\x07\xce\x6c\x5a\xe1\xdf\x7d\xae\xe3\xc3\x0c\xc3\xc2\xf1\x82\x9b\xbe\x68\x15\xbe\x1d\x3c\x5d\x6f\xdb\x26\xac\x3b\xc0\x95\x3b\x2d\x10\x54\x38\x3f\xa4\xac\xe3\xb3\xf8\x4a\xfb\x77\x2f\xb6\xbb\x65\xe6\x92\x65\x29\x7c\x5b\x4a\x5b\xb0\xc1\x0f\x3d\x34\x49\x68\x63\x19\x41\x22\x52\x83\xbb\x02\x04\xfe\xb7\xc7\xbe\xd8\xb8\xb9\x79\xf0\xb2\x77\xa1\x4a\xc2\xfe\x86\xf2\x04\x3b\x8f\x6d\x8d\x33\xf5\x34\x75\xf7\xf9\x44\x0f\x5a\xff\xe4\x57\x05\x90\x47\xc1\x42\x9a\x2d\x4a\x07\xfa\xdb\x01\x38\x0b\x68\xc6\xfd\x0e\x4e\x39\x8c\x85\x59\x80\x41\xe4\x0e\xe9\x39\x62\xdf\xcc\x10\x97\xd7\x65\x8c\x8b\x4b\x32\x80\xfe\x1d\x1c\x99\x58\x11\xc7\x88\x9a\xee\x88\xf1\x5e\x08\xf9\xdf\x05\xca\xfa\x02\x8c\x79\xb1\x8a\xc6\x42\x45\x54\x65\x23\x3b\x8c\x2a\x7e\x5b\x2d\xf4\x2d\x13\x9f\x85\x9c\x51\xd6\x89\x47\x02\xaf\xc1\xce\xa8\x1f\xbc\xc9\xd5\x31\x01\x5e\x05\xa0\xbd\xf9\x68\x98\x9f\x6f\x87\x83\x2c\x1d\xa6\x39\x09\xbf\x7f\x86\x49\xd8\x33\x8a\x2d\x3e\x1c\xa5\x09\xc1\xe7\x5d\xa1\x7f\x58\x85\xcd\xc3\xaa\x7b\x3c\xca\xd2\xe5\x28\xb6\xe0\xda\xa1\x84\x81\x3f\x17\x5f\x2b\xc6\xad\x11\xe2\xe2\x8b\xfc\x6c\x9e\xa0\x79\x9e\xb6\x48\xa0\x9b\xf9\x1b\xff\x09\xce\x1e\xe9\x11\xd3\x5d\x72\x69\xd8\xfc\xbc\xb0\x51\x26\x35\x87\x05\xba\x1d\x9c\xd1\xa9\x63\x2d\x4c\x63\xa3\x6d\x29\xde\x55\xd1\xe1\x5d\xe5\x87\x34\x28\x73\xf8\x6d\xa0\x31\x89\xfa\x8e\xaf\x15\x4a\xa6\x18\x64\xe9\xda\xac\x5e\x52\x67\xa9\x70\x77\x52\x75\x7e\xad\x80\x72\xc8\xff\xd0\xe4\x29\x17\xa6\x79\x81\xe2\x0d\xfc\x81\xd3\x38\x27\xf9\x45\xad\x4d\x14\x15\x7f\xb3\xba\x55\xa8\xa0\x9e\xa0\xca\x1f\x99\xd6\xd3\x1d\xa5\xcb\x38\x4b\xc4\x19\x2c\xee\xbb\xca\xdf\xe3\x1a\x3e\x96\x78\x8c\x54\x3b\x08\x98\xb7\x6b\x63\x6d\x9d\xf0\x97\xca\x6f\x6f\x16\x61\x07\xb9\xdd\x13\x9d\x3a\xc0\xb3\x5a\x6b\x78\x38\x3c\x40\x61\x9a\x41\xa7\xe5\x84\x9a\x9e\x9d\xa8\xe4\xf9\x89\x89\x27\xc8\x3d\xce\x1c\x22\x21\xf0\x2b\xc7\xe0\x9d\x9d\x6a\xd7\xc9\xf9\xa2\xaa\xf7\x9d\x68\x9b\x0b\xd8\xbe\x4a\xe6\xd4\x40\xcc\x5b\x73\x57\x0f\x02\xe1\xe0\x3e\x8c\xfe\xd8\x0b\x12\x5b\x90\x3f\xb1\x6b\x26\x45\x43\x04\x5b\x0a\x8d\x68\xdf\x6e\xc3\xb7\x46\x4c\xbd\xab\x0d\xa8\x9e\x9e\x32\x9d\x7a\x81\x54\x8c\x46\xc5\x4c\xdd\x15\xcf\x19\xfd\x5e\x52\x6e\x94\x0f\xea\xb4\xc3\x90\x8c\x1e\x69\x23\x3a\x3f\x44\x47\xe5\xaa\xcb\xea\x0d\x4d\xd6\xd2\x02\x1a\xec\x39\x26\xfa\x05\x4f\x28\xc9\xee\x88\xe1\x14\x6e\x3c\xb8\xe0\x11\xbf\xca\x4b\xc3\xc6\x66\x7d\x3b\x7d\x4d\xa4\xca\x1f\xd3\xe8\x0d\x7d\x2c\xe6\xbf\xf0\x3f\xe0\x80\x51\x6e\xb8\x2f\x3a\x2c\xb0\xaf\x8c\xcf\x78\xcb\xfa\xf2\xe0\x41\x6e\x14\xa0\x93\xb2\xb5\xe3\xd9\xc4\x5b\x27\x0d\x60\x55\x36\x8b\x6d\xb5\x94\xf5\x18\x7d\x32\xf1\x1e\x6b\xa0\xc4\x84\x51\x11\x1d\xb4\xc0\xd9\x3b\x95\x46\x87\x9e\x3f\xa5\x5a\x06\xcb\x11\x00\x2d\xfe\xfc\xdc\xcb\x52\x0e\x88\x62\xf7\x95\xa5\xd2\xf5\x40\x13\x82\xa2\xc4\xe6\x76\xbb\x96\x7d\xa5\x55\xee\x24\x69\xdd\xe4\xf8\x01\x65\x14\xa2\x13\x4b\x6f\x24\x5a\xb3\x5e\xf7\xe3\x41\xa3\x18\x79\x59\x08\xb1\x87\x3d\x2d\xc7\xca\xc1\xf5\xfd\x5a\xe5\x16\xad\x9a\xc2\xc6\xeb\x64\xdb\xad\x14\x13\xe4\x18\xdb\x50\x3a\x89\x8f\x63\x01\x63\xdb\x7c\x32\x56\x3e\x6b\x30\x06\x95\xef\xb3\xf9\xd4\x5e\x5c\x5a\x6c\x9b\xde\x6b\xa5\x43\x9a\x89\xf9\x17\xfd\x39\x59\xd0\x1e\x52\x6f\xe2\x34\xe9\x3f\xee\x63\xf1\x2d\xdc\x21\xc6\xb0\x07\x9e\x39\xb2\x03\x71\x00\xed\xac\x2d\x13\xa5\x0f\xf8\x4d\x1c\xa5\x00\x07\x9e\xd7\x4d\xd2\x07\x81\x92\x10\xe3\xcc\x5f\x04\x60\x3c\x47\xe8\x1b\xb8\x07\x08\xd1\xc8\x69\xd0\x17\x42\xa5\x8d\xfe\xdb\xff\xac\xa6\x8f\xbd\x68\x95\x72\xcb\xb9\x39\x07\xcf\xa8\x1e\xb1\x54\x35\xd2\xa8\x34\x61\x58\xe6\x30\x4a\xe7\x9d\x27\xfe\xab\xf4\x41\xf8\xc5\x54\xfa\x4a\x14\xcb\x38\x2a\x4c\xb6\xbe\x4d\xcd\x71\xae\x02\xb2\x21\x3a\x28\x1e\xd1\xf8\x44\xc7\xd3\xd1\x6e\x8c\x95\xed\xdf\xfb\x2e\x40\x75\x4d\x18\xc5\x71\x99\xcf\x6a\xf1\xab\x13\x4a\xde\xf1\x91\x8e\x07\x61\xbc\x35\x56\x6d\xc7\xd6\xa4\x21\xbb\x36\xcb\xcb\x71\x29\x87\x3a\x7e\xe9\x03\x65\xad\xfd\xc1\xd4\x11\xb5\xb4\xbb\x9d\x2e\x2f\xdb\x8c\x60\x1f\xc2\x15\x57\x3d\xb7\x3b\x81\xae\x07\x94\x15\xec\xf4\xc6\x5d\x58\x68\xe7\x36\x5b\x8d\x42\xa4\x1f\x32\x08\xab\xc9\x85\xd5\x20\x04\x71\xc8\xdf\x5a\x70\x03\x74\x4f\xb5\x3e\xa3\xb2\xf2\x58\xe4\xaf\x70\x61\x8a\x43\x37\x3f\xdf\x5e\x4f\xcb\xa4\xcf\x96\xe7\x8e\x07\x5c\x1d\x27\xc2\x03\xd6\xe1\xf6\x35\x69\x65\xe3\xe0\x7c\x6b\xac\x0c\xe1\xde\x52\x42\x6b\x79\x39\x9c\xf1\xd4\xc2\x77\x90\x70\x8a\xcb\x89\x27\x22\x1d\x75\xc1\x11\xfc\x3c\x42\x8a\xd1\x3f\xfd\x9d\x9f\xed\x54\xc7\xb0\x6e\x8f\x62\x6b\xb3\xf6\x28\xce\xa3\xad\xd8\x30\x68\xd2\x5d\x1a\x7f\xae\x9e\x2a\x57\xf7\xa7\xbd\x67\xdf\x53\x33\xde\x35\x7e\x27\xea\x1d\x34\x80\x8f\x29\xd3\x8f\x37\xb0\x41\xf1\x79\xe5\xd8\x47\x0e\xbf\x1d\x56\x75\x08\x8a\x7f\x15\x28\x0e\x0d\xb5\x31\x25\x71\xf6\x18\xc4\x53\xc4\x02\x55\xa2\xda\x8b\xdc\xe3\xfa\xa3\xc0\x1f\xa5\x6f\x81\x37\x8a\x43\xf7\x06\xed\x34\x71\xa4\xa3\x47\x89\xd2\xf9\xc8\x58\x4d\x51\x36\xa6\x50\xc6\x73\x73\xed\x28\x31\x3d\x9a\x67\xf0\xc2\x45\x5d\x7c\x5c\x39\x51\x1c\x1f\xff\xac\x00\x66\x4d\xde\x33\x5f\xff\xb5\x2f\x25\x46\x41\x43\x04\x20\x45\x9f\x53\x10\x52\x7a\xad\x65\x80\x63\xbc\xc8\x2d\x4f\x58\xbb\x39\x54\x94\x33\x04\x3b\xa9\x39\x70\x47\xea\xce\x13\x4e\xb3\xd9\xfc\x1c\x6d\x77\x54\x0e\xdb\xc9\x96\x1d\x8f\xf5\x7f\xa4\x7b\x89\xc7\xcd\xba\x9e\x42\x0c\xab\x82\x25\x48\xe2\x4f\x75\xaa\x82\x46\xa8\x89\x78\x46\xb4\xa8\xfe\xd3\xbf\x37\x21\x45\xd0\x1d\x40\x96\x50\x9e\x30\xfc\xc5\x09\x05\x50\x84\xd6\x9b\xbe\xfe\xf9\x25\x96\x7b\xc6\xce\xd9\xda\xa9\xcb\x67\x3a\xef\xd3\x56\x47\x8d\x20\x6e\x29\x09\xea\xc7\x3b\x5e\x1c\xe4\x67\x3a\x5b\xbf\xe0\xea\x5f\x45\x37\xdc\xde\xa9\x32\xca\x8d\xeb\xd8\x49\xa8\xa2\x77\x10\x33\x1a\x33\xbe\x99\x49\x95\x89\xa2\x5d\x73\x08\x4b\x0f\x29\x77\xab\xe3\x1c\x3e\x0f\xa3\x9a\x65\xd4\x92\xa6\x09\xdf\x56\x2a\xe1\x89\xcd\x56\x2d\xb3\x02\x71\x97\xb6\xd6\x4e\x32\xbf\x0b\xaf\x29\xea\x43\x5e\x98\xac\x97\x0e\x67\x3c\x18\x19\x9a\x01\x48\x2c\x4e\xd2\xc3\x90\x71\xfa\x66\x3b\xca\xbd\x0b\x0a\xa1\x4a\xc7\x40\xf5\x84\x1a\xed\x22\x1d\x0c\x36\xb6\x26\x8b\xd7\x67\xbc\x1a\x1c\x56\x91\x93\xc4\x54\xec\xc9\x1a\x07\x33\xcd\xc2\x28\x07\x27\x58\x38\xb1\xd5\xef\xf1\xb5\x1b\x9e\x8d\x32\x6e\x34\x66\xeb\x33\x2d\x65\x3f\xe0\xf1\x41\xd7\xea\x12\x65\xd3\xbd\xe2\xa5\xea\x4b\x31\x44\x42\x6b\xeb\xcb\x36\x16\x6b\x57\xb2\xf0\x58\xd4\x2c\xa5\x85\xda\x24\x01\x25\xfc\x49\x80\x10\xa4\x08\xf0\xea\x5f\xcb\x71\xca\x2c\x43\xb7\x71\xd0\xc3\xe2\xeb\x5a\x72\x6b\xa2\xe4\xd9\x6a\x9d\x38\xf5\xcf\x3d\xfb\x38\xf7\x7c\x17\x6b\x06\x71\x88\xd2\x86\x17\x99\xa4\x0f\x0c\x28\x62\x37\x6b\xe2\xe2\x23\x1d\xc5\x0a\x62\xce\x12\xca\x07\xc0\x27\xfe\x2b\x84\x67\x71\x0f\xc4\xbe\x62\x67\x07\x85\x76\xfb\xf7\x54\x3f\xd4\xc2\x05\xf6\xf7\x51\x3f\xf0\xda\xfa\x54\xc7\x1b\xb2\x4e\x74\x46\x70\x8f\x36\x20\x92\xe5\x1d\x68\x2c\xa0\x4b\xb1\x1d\x21\x59\xca\x4a\x9f\x43\xd1\xa2\xd9\xa1\x4c\x1b\x2e\xea\x0c\xf2\x16\x94\x09\x50\x73\xb1\xd5\xa6\x08\xe8\xf8\x28\xfb\x60\xac\x64\x31\x90\x77\x89\x3a\xea\xe6\x0c\x60\x6e\xae\x1d\x93\xbb\xb8\xcd\x5b\xf4\xf0\xd0\xf7\xf8\x5d\xcd\x5d\xf8\x5d\x35\x9b\x0b\xb3\x32\x1f\xb4\x14\x1e\xe1\x0d\x8d\x47\x78\x23\xf0\xe4\xa1\xe5\xcc\x7e\xbd\x24\x00\xce\x23\xca\xdf\xe1\x0a\xe2\xbc\x88\xce\x2b\x99\xd7\x0f\x95\x9b\xe4\xd9\xda\x1c\x95\xde\x40\x18\x96\x74\xdb\x58\xc8\x88\xb6\xbc\xf2\x9b\x7b\x51\x9c\xde\xb5\x0d\xb9\x67\x72\xae\x45\x45\xe8\xac\x2d\x50\xc0\xf1\x54\x9b\x5f\x28\x8c\x33\x98\xe4\x59\xb2\x1d\x75\xa9\x9b\xc6\xbb\x63\xb0\x35\x51\x63\xff\xeb\x4a\x4d\xec\x8f\xb4\xab\x38\x37\xb9\xd9\x6e\x4b\xc1\x2e\xa3\x5e\x9a\xaf\x27\x61\x46\xb2\x5b\x4a\x6b\xe1\x04\x9e\x36\xbf\x68\xc2\xa1\xb3\x17\xb8\xf2\xff\x6e\x29\x5f\xf0\xc7\x1d\x26\x62\xcd\x39\x72\x48\x5c\xf2\x68\xee\x46\x2d\x90\x51\x96\xae\x0a\x69\x57\xc4\xfc\xe8\xc3\xf0\x8b\x06\x12\xda\xcb\xed\x38\xcd\x99\x6d\x2b\xdb\x9a\x7e\x45\xf6\xb5\x1f\xb9\xda\x3c\x4f\x5b\xba\xaf\x70\x4b\xcf\x38\x6e\xd5\xce\xde\xb4\x04\xee\x50\x83\x01\xf8\x5a\x65\x5b\x07\x7b\x06\x7a\x97\x9a\x1f\xac\x44\x56\xa4\xef\x73\x6f\xca\x5a\x58\x80\x31\xa6\xb7\x0a\x19\xd5\x19\xc5\xfc\xb9\xa6\x41\x59\x9a\xd2\xf7\xa3\x26\x3f\x7f\xce\x23\x67\x7c\x71\xc1\x52\xcf\xe8\x3e\x60\x1e\x2a\x09\xe6\xe6\x1b\x38\x37\xd7\x1e\xd8\xac\x38\x08\x68\x13\x7b\x5a\x07\x6a\x45\x9e\x77\xf5\x07\xc9\x43\xaf\x9a\xb8\x94\xf5\x0b\x8a\x0b\xe4\x75\xf8\x7a\xa2\xef\xa1\x49\xec\x0e\xfa\x20\x48\xe7\x6e\xa2\x5d\xca\x2f\xe8\x53\xe1\xcc\x3e\xa6\x3b\x86\xdb\xaa\x38\xb6\x71\x79\xec\xe7\xbe\x17\x55\xc7\x6b\xcb\xa4\x61\x39\x1a\xdb\x17\x61\x25\x80\x77\xc0\x11\xe2\x6b\x85\xc9\xb4\xaf\x8f\xd2\xac\x00\x46\x03\x77\xfa\xb1\x89\xe7\xa3\xde\xc2\xae\x11\xfc\x80\xef\x58\x5c\x6d\xb0\x8f\x7b\xb5\x9d\x5b\x3b\xac\x7b\xa0\x78\x6e\xe8\xc5\xc0\xaf\xba\xae\xb5\xc9\x93\xd5\x3f\x21\xb0\x43\xd2\x16\x7d\xd6\xeb\xde\xb6\xfa\xc7\x7f\x13\x9b\x19\x5f\xf9\x67\x3a\x1e\x47\xf4\x4b\x9f\x47\x3e\x84\x74\xed\x1a\x9d\x05\xb8\x55\xcf\xa0\xfb\x24\xed\x58\xba\x89\xc8\x9a\xee\xf0\x59\x22\x87\x65\xcb\x29\xaf\x3d\xda\x51\x40\xf1\x5d\x80\x83\x72\x8d\x42\xc1\xcf\x19\x15\x28\x18\x61\x93\x65\x31\x01\x1b\xa3\xbc\x98\x51\xdc\x8a\x8b\x0a\xe3\x71\x45\x19\xf6\xfc\x59\x93\xe4\x5f\x98\x26\xbd\x52\x11\x34\x35\xdc\x4b\xe0\x40\x32\x7f\x5e\xc9\x6c\x72\x50\x3b\xd0\xb3\xbf\x91\x20\x7c\xe9\xfe\x78\xb5\x35\x97\x6b\x0d\x49\xa9\x0c\x1d\x60\x36\x46\x53\xd8\xda\x33\x8a\x32\x2c\x03\xaf\xbc\x80\xda\x07\x2b\x4d\x07\xca\x7c\xfc\x96\x1b\x37\x0f\xca\xfe\xa0\x55\xfd\x1d\xb4\x18\x3e\xd5\x9e\xaf\x9f\xaa\xe5\x16\xa6\xe9\x4a\xe4\xa4\x9b\x44\x57\xa3\x66\xda\xe5\x54\x0d\x4b\x9a\x90\xee\x54\x01\x9d\x8f\x67\x21\x2f\xb9\x79\xf2\x9f\x90\x68\xf0\xab\xd5\x16\x71\x28\x0b\xe4\x1e\x42\x1b\xf4\x8c\x8d\xfb\xda\x34\x64\x53\x21\x5b\x16\x4f\xd1\x41\x8e\x3b\xfa\xa6\xa6\x1a\xb0\x0f\x88\x60\x3e\xea\x1a\x0a\xd5\x09\x8d\x10\xa7\x9d\x6b\xcf\x20\xe4\xf0\xaf\x04\x2a\x28\xce\x52\xf3\x15\x5f\x63\x16\x09\x93\xa8\xba\xe0\xc6\xa0\xfd\x7a\x55\x4d\x07\xdf\xa7\x34\x18\xb7\xe1\x4d\x0d\x76\x38\x41\x6d\x16\xc7\x61\x73\x92\x51\x57\x03\x6f\x29\x5d\x25\x79\x4e\x05\x5b\xa0\x96\xf4\xe5\xe4\x98\xae\x79\x2a\x99\x90\x02\x27\xaa\x54\x56\xda\x44\x9e\x00\x3d\x58\x3c\xfc\x63\x75\x59\x85\xbe\x4d\x22\xd0\x54\xbc\x0f\x9a\xd6\xaa\xf3\x5a\x64\x2b\x51\xd2\x47\x11\x87\x34\x0d\x36\xdc\x28\xb7\x4e\xa3\x05\xe3\xd8\xa9\x0e\x2d\xb6\x4d\x21\x54\xff\x1f\xe7\x44\x39\x2c\xe3\x22\x1a\xc5\xb6\xcc\x6d\x36\xab\x88\x96\x18\x3d\xa0\xf7\x04\xb3\x10\xf6\x69\xc1\x23\x41\xb5\xf5\x6e\xd3\x0c\xd9\x84\x2b\x49\xba\x16\xdb\x9e\x63\xa2\x21\x0f\xba\x4c\xdf\x9c\xaf\xdd\x97\x19\x99\x72\x54\xed\xa6\xea\x8f\x3a\xf1\x75\xef\x91\xde\xe4\x03\xbd\x1c\x49\xdb\x0e\x5d\x9a\xe3\x1a\x33\x74\x7c\xec\x19\xb0\x6b\xc6\x66\x45\x1e\xc5\xc6\x22\x1a\x68\x39\x35\x11\x67\xf7\xd0\xea\x91\xc9\x8a\x28\x8c\x46\xc4\xf0\xaf\xee\x27\x22\xd5\x04\x21\x10\x75\x1b\xc4\xdc\xa5\xcf\x5e\x3d\x1c\x04\xd0\xff\x63\xec\x51\xbe\x47\x83\xcf\x7b\x41\x87\xf5\xbc\xb0\xd9\xfa\xaf\x7d\x29\x4c\x87\xb6\xb7\x8e\xaf\xa9\x85\x0a\x44\xb7\xaa\x9e\x27\x27\x0a\xc3\x7c\x81\xde\x46\xd2\x1b\x5d\x4f\x24\x69\xf1\x39\xaa\x89\xd1\xd3\x63\x62\x2a\x2d\xad\xfe\x73\x68\xa5\xe0\xd8\x79\x38\x56\x40\x5d\x06\xdd\xe2\x77\xee\xd0\x1f\x47\x0a\xca\x5e\xab\xd8\x20\x97\x03\x25\x6a\x05\x2d\x29\x41\xe3\x7a\x03\xf1\xb7\x71\xf6\xa2\x33\xce\x63\x48\x1c\x0e\x77\xe8\x40\x11\x85\xe8\xaa\xcc\xd7\xc7\x19\xf6\xe3\x2e\x96\xb5\x70\x8a\x95\xae\xc9\xbe\x7d\x42\xf1\x00\xd3\xc1\xf7\x94\x2d\xf8\x65\x4a\xf9\xa5\x75\x43\x4b\x40\x04\x48\x36\xf7\x52\x0e\x1c\x98\x22\x5e\x4a\xd7\xcc\x37\x01\xb5\x13\xbc\x1a\x19\x2a\xed\x8c\xe3\x34\x3e\xe2\xeb\xc0\x3b\x7c\x94\xc3\xa1\x49\x66\xb5\x7c\x1e\x24\xab\x71\x04\x9e\x54\xd1\xf2\x6d\xcd\xe8\xbd\xab\xd2\x3c\xdb\x85\x9a\x16\x8e\x98\x2d\x13\x7f\x46\xc1\x91\x6b\xe3\xf8\xd4\x09\xb7\xf8\xd2\xcb\xed\xe5\x6a\x67\x39\xd8\x80\xa0\x5c\xfc\x88\xf9\xaa\x17\xb5\x8d\xe2\x55\x0f\x3a\x13\xb1\x3c\xad\x9c\x37\x95\x82\x2c\xed\x6e\xc7\x65\xb8\xb2\x4e\x07\x11\xce\x59\x1c\x12\x7c\xdd\xa0\xa3\xfc\x6a\x3b\x5b\x47\x9b\x53\x4f\x6d\xf9\x5a\xc9\x38\xe5\x45\x1a\x1f\x1c\x9a\x64\x53\x7c\x53\x3e\xaf\x8f\xfa\xb1\xe3\xea\x8e\x96\xd3\xc4\x61\x85\x71\xdc\x59\xd8\xc9\x8b\xf6\x2b\xad\x00\xb1\xbe\x53\x13\xe9\x9b\x81\x22\x64\x5d\x0c\xf4\x44\xe9\x62\x83\xb5\xc5\x9e\x76\xcf\xe6\x51\xdf\x0d\xfe\x1d\x71\xc1\xd1\x3d\x2e\x35\xc9\x21\xbe\x66\xd7\x88\x20\xe2\x20\x3c\x6c\xd5\x2f\x84\xed\x26\x86\xc8\xc8\x84\x2b\xfe\x99\xa0\xeb\xc4\x18\x25\x7e\x31\xb5\x92\xf7\x2e\xb4\x6d\xb2\x9c\x66\x21\x09\xc3\x28\xa5\x26\x64\xbb\x7c\xdd\x34\x3c\xea\xdb\xa4\x14\x5f\x49\x0d\xd0\x15\x9e\xef\xe3\x8e\xe7\x1e\x4a\xbf\x91\xfb\xaa\x1d\x7f\x7a\xed\x9c\x48\xc2\xb4\x1a\xd9\xb5\x7c\x87\x92\x0d\x23\x7d\xa9\x8d\xf7\xf1\x18\xf8\x7f\x05\xaa\x6d\xf6\xb9\x8e\x42\x42\xbd\x47\x6f\xad\x39\x83\x68\x91\x3d\xee\xfe\xfe\xc0\x86\xb1\x41\xea\xc7\x1c\x54\xe5\xdd\x76\x5e\x3b\x99\x4c\x7b\x67\xcc\xcd\xb5\x33\x9b\x17\x69\xc6\x02\xc9\x4c\xde\x1d\xfb\x21\xd2\x09\xd7\x5e\x1a\x46\x55\x4a\x66\xb3\x88\x5b\xa6\x0e\x8b\xe5\xc0\x93\x47\x9a\x1e\x77\xdf\x0c\x45\x02\x94\xcf\x75\x85\x09\x9d\x9e\x01\xcc\xcf\xb7\x47\x71\xd4\x1f\x14\x0c\x43\x16\x95\xfa\x9a\x7c\x7d\x03\x85\x65\xd5\xe4\xb2\x3c\xb8\x83\x3c\x56\x1a\xec\x27\x9b\xfc\xf5\x33\xb3\x2a\x8e\xfc\xae\x91\xef\x5b\x70\x6f\x29\x2d\x4e\x93\x0c\xe8\xa4\xdf\xd6\x72\x42\xe9\x4c\xc5\x42\x40\x3c\x43\x29\x3a\x12\x89\xbb\x6a\x5e\x74\xa6\xd6\x91\x09\xfc\x94\x29\xca\x33\x63\x63\x36\xe2\x46\x24\x43\xce\xc5\x0d\x6f\xe5\x4a\xfd\x5d\x85\x21\x3b\xa2\x45\x73\x6e\x60\xfd\x63\x01\xb5\xa6\x26\xa7\x73\x73\xed\x62\x90\x45\xcb\x9c\x44\x4b\x01\x49\x7f\x40\x4a\x4b\xe5\x72\x12\x0e\xec\x90\x7a\x3e\x7b\xf6\x71\xaf\xea\xc2\x58\x19\xbf\xd7\x07\x20\xdd\xa8\xb7\xa3\xfa\x96\x38\xa9\x78\xac\x87\xb1\xcb\xfd\xc0\x5b\x43\x82\xbb\x8d\x94\xea\x9c\xd6\x93\xfa\xcd\x40\x1d\xa6\x17\x14\x9a\x6f\x1a\x29\x44\x82\xbd\x83\xa8\xd7\xb3\x09\xa2\x0c\x0a\x7f\xb8\xe3\xf2\xf5\x44\x21\x2f\xac\x18\x80\x71\x1d\x89\x47\x2a\x45\xa5\x7f\x02\xc5\x20\x4a\x56\xa0\x0e\x22\xcf\x90\x7e\xd2\x81\x8c\xab\xa4\x59\x06\x01\x3e\x1c\xa7\x59\xd4\x8f\x12\x43\x14\xdf\xc5\x9a\x2a\xab\x68\x88\xd2\x87\xc4\x99\x02\x5a\x12\xe7\x97\xc8\xfe\xf9\x1f\x1c\x30\x7f\x98\xae\x61\xf4\x0c\xb2\x1e\xc4\x66\x10\x9b\xee\x06\x35\x33\xcd\x26\x0a\x9c\x18\x24\x21\x4f\xe3\xef\x11\xe8\xef\xe4\x25\x93\x5e\x2b\x65\xae\x86\x4e\x28\xb6\x21\x5f\x2b\x06\xdf\x4a\x14\xae\x74\x4d\xc8\xe6\xd4\x52\x9d\xd1\x67\x94\xb2\xcd\xe3\x66\xfa\x66\x68\x77\xa8\x92\x11\xa8\x3a\xa4\x3c\xf0\x5d\xe1\xd1\x0e\x52\x1e\xb6\xbc\x1b\xab\x58\x73\x84\x82\x15\x8e\x9c\x9d\x34\xed\xc2\x76\xb8\x1d\x3c\xa9\xe6\xc8\x31\xa9\x0d\xbf\xe2\x34\x62\x31\x94\x15\xfb\x82\xcd\x7b\x7b\xdf\x4b\x7c\x32\xd1\xca\x07\xf0\xf7\xb6\x62\x8c\xdf\x56\x0c\xa4\x81\xcd\x9e\xa3\x2f\xc7\x74\x3c\x94\x01\x48\x00\xff\x92\xde\x45\x4c\x80\x69\xb6\x72\x7d\xac\x02\x2d\x8b\x30\xb3\x3a\x20\xe5\x6e\xc0\x9f\x5d\xc5\xd7\x45\x65\xc6\xd2\x31\x68\x8f\xbf\x45\xb8\x14\x5d\xa2\xa3\xe4\x63\x84\x0e\xfe\xe1\x3e\x85\x13\xf7\xdb\x6e\x98\xf3\xd5\xfb\x54\x72\x61\x89\xce\x4e\x7c\xb2\xfb\x00\x68\x1b\x14\x2c\x87\xb0\xb9\xc4\xd6\xdd\x4b\x41\x7c\x97\x9c\x58\x30\x7f\xbc\x19\xfc\xac\xc7\x9a\x0c\xd2\x22\x5d\xae\xa2\xfb\x40\x94\xff\x58\xcf\xba\xa6\x6d\xed\x49\x53\xab\x69\xde\x67\x39\x0f\xc1\x69\xd2\xa7\x17\x00\xe7\x34\x42\xf0\xd5\x76\x68\xe2\x58\x12\x05\xe5\xd3\xb2\x47\x5e\x8c\xff\xde\x67\x34\xe5\xba\x51\x6a\x93\x7e\x94\x58\xd7\xbf\xc4\x1e\x62\x41\x71\x7e\xe1\x6c\x06\x05\x1c\x19\xaf\xcf\xf8\x43\xec\x2d\x35\xe3\xbc\xa6\xec\x18\x2e\xba\x66\xf0\x5a\x46\xa3\x57\xde\x49\x32\xb0\x55\xc3\x5b\xc5\x70\x5b\xce\xca\xa8\x88\xc5\x4b\x1f\xc0\xbc\x37\xe9\x67\xf9\x5a\x31\x7d\xa2\x92\x47\x25\x38\x03\xce\xd5\xf5\xf1\xfc\x38\xed\xa7\x04\x28\x15\xaf\x81\x06\xd8\x40\x3a\x8a\x12\x1a\x33\x29\x90\xfb\xa7\x0a\x91\xfa\xe9\x66\x88\xe4\xd2\xee\xf6\xfc\xfc\xd2\x4c\x0d\x8d\xac\xb8\x0d\x67\x94\xe7\xcc\x9f\xaa\x83\x20\x4c\x13\x9a\xa2\xd2\x87\x06\xfd\x14\xa9\x2c\x5f\xbb\x0a\x18\x12\x0d\x36\x29\x24\x1f\xc0\x41\xc1\x50\x75\x7e\xe1\x52\xff\x2c\x5a\x8d\x6c\x66\xf8\x84\x46\xcf\x81\x97\x36\xbf\x70\x69\x15\x49\x28\x70\xa5\x2a\x72\x87\x5a\xfb\x30\xd8\x24\xa8\xf5\x42\x75\x96\x2b\x30\xc5\x87\x80\x39\xe2\x98\xfe\xfd\xda\x58\x91\x8a\x05\x74\x3f\x78\xf5\x39\xa6\xee\x92\x14\xae\xef\xe3\x11\xa1\x11\xb2\x81\xf9\x8a\x73\x1c\x7a\xc5\x1d\xd1\x2c\xfd\x8c\x2c\xeb\x7d\xa0\x54\x9c\xff\x4d\xb5\xf9\xc1\xa7\xdf\x3a\xd1\x2e\xf6\x87\xc6\xaa\x57\x7b\x33\x50\x9c\xce\x5b\x54\xa2\x49\x97\xa1\x8a\x24\x08\x55\xdb\x27\xad\xe7\x9f\x77\x66\x77\x55\x45\x28\xa3\x6d\x7a\xb0\xa2\xe2\xab\x0a\xbf\x37\x28\x68\x61\xad\xff\x96\x86\x95\x3e\x20\x20\x2a\x5a\x28\x1f\x51\x20\x41\xfc\xbc\x46\xa5\x29\x02\xd7\x75\x0a\x4f\x38\x7f\xde\x46\xdc\xc2\xa4\xf2\xbd\x31\x06\x1f\x4e\xf7\xe9\xcb\xaf\x88\xa8\x78\xe0\x61\x09\x7f\x40\x11\x46\xb2\xfa\xa7\x54\xfe\xd4\xb7\x99\xed\x51\xc4\x70\x19\x8e\xca\x6a\x1a\x92\xf0\xd5\x28\x73\xd8\x27\xa7\x6c\xea\x78\xc5\x27\x5c\xb5\x36\xb0\x66\xd5\x26\xb9\xf2\xfc\x64\x2c\x10\xbf\x98\x62\x40\xcc\xcd\x91\x2c\x73\x54\x14\xe2\x8c\x8e\x1d\x78\x14\x13\x23\xe7\xeb\x34\x3f\xcf\x8d\xe1\x8b\xea\x10\x4d\xaa\x77\x6b\x29\x1d\x2e\x9e\x08\xf0\x0b\x55\xa6\xee\xfb\xc7\xbf\x4a\x9f\x09\xad\x80\x96\x16\x7b\xa8\xf1\x5e\xd2\x32\x43\x2e\xa1\xd1\xef\xc8\x92\x3e\xa6\x55\x89\x85\x08\x0d\x1d\xbe\xa6\x58\x81\x6e\xca\xad\xa9\xef\x57\x95\x4b\xeb\xb6\x48\xa2\x95\x74\x79\x99\xf7\x9b\x02\x49\x79\xa7\x3f\x8f\x6a\xb5\xab\x36\x79\xae\xe5\x04\xf2\x37\xb0\x67\xb0\x4a\xdf\xa7\x95\xc2\x50\x66\x2c\x73\xc7\x9c\xf4\x04\x50\x76\x0d\x40\xfc\xba\x86\x03\x88\xb9\xee\xd8\x4e\x8e\xf4\xb9\x57\x9c\x00\x8e\xd0\x21\x87\x96\x61\x0b\xad\x48\x27\x1f\xbe\x24\xa2\x2f\xb3\x1d\x8f\x16\x38\x1a\x68\xf9\xf0\x33\x40\x8e\x88\xac\x80\xc2\x81\x7e\x42\xdb\xc7\x25\x9a\xd5\x57\xc6\x36\xf9\x91\xc2\x69\x5c\x26\x85\x75\x1c\x6d\xdf\x9a\x4a\x20\xf6\x2e\xb4\x45\xb2\xd3\xc1\xad\x6f\x61\xc7\xf1\x8b\x46\x6d\x0d\x52\x7d\x13\xff\x21\x54\xe1\x1f\xe1\x5e\xf0\x8b\xcd\x5a\x80\x7f\xbf\xbd\x67\xdf\x2e\xda\x65\xec\x1b\x45\xf7\x47\xac\xa6\x14\xaf\x0b\x5e\x69\xce\xe8\xa4\xba\xf1\x00\x86\x40\x9b\x9a\x25\xe4\x03\x95\x9b\xfc\x47\x95\x5c\x30\xa0\x51\xd8\xa2\xda\x5c\x3d\xa5\xf6\xb9\x23\x69\x00\xea\xc5\xd7\x9a\xd7\x5c\x66\xc9\x63\x0a\x5e\x7b\x97\xde\x16\x1f\x1a\x00\x4e\xc4\x98\x87\x08\x70\xce\xc3\x4b\x80\x4c\xff\xfb\x23\x78\xc2\x1c\xa1\x03\xa5\xe3\x8f\x62\x13\x4f\x08\x28\x69\x1a\x8e\xe4\xcf\x60\xd2\xc2\x7f\x0a\x31\xd5\x81\x96\x97\x9c\x78\xf1\x58\xce\xa3\xbc\xc8\x6c\xd2\x2f\x06\x8e\xc7\x20\x72\x87\xf4\x67\xf0\xd5\x3f\xd2\x62\xd9\xdf\xf4\xa0\xf3\x28\x89\x9c\x9e\x07\xf6\xe1\x1b\xca\xda\xe5\x0d\xef\x31\x11\x97\x6e\x4f\x39\x2c\xac\xef\xfe\x9d\x56\x80\xcc\x9e\x5d\xb6\x49\x8f\x68\x5c\x73\x73\x0e\x2b\xeb\x65\x25\x3f\x0e\xea\xaa\x45\xd0\xbc\x64\xd3\x02\x2c\x35\x71\x30\xa0\xfb\xae\x87\x91\x7c\xed\x3e\xd6\x9a\x8d\xaa\xa7\xf8\xd5\x3d\x4e\x97\x55\x4d\xc5\x2f\x04\x1e\x29\x98\x54\xd5\x7b\xd2\x52\x46\x44\xe8\xab\xf3\x75\x53\xf9\xbe\x9a\x46\xa1\xcd\x67\xd4\x3c\xeb\x92\xc6\x1c\xbd\xc6\xf8\x5f\x48\x9a\xdc\x72\xad\x7f\xd3\x5b\x65\xb3\x5d\x25\x4a\xf1\xa9\x9e\x80\x7c\xea\x66\x99\x61\x94\x85\xe5\x90\xdc\x78\x66\x3c\x78\xeb\x6a\xe0\xd9\xf1\x47\xc6\x1e\x90\x32\x0d\x92\xaf\xb6\x5e\x62\x4d\x86\x7d\x27\x85\xae\x57\xf8\xd5\xca\xca\x3c\xe9\x6a\xd5\xc5\x08\x17\x16\x9c\xc5\xea\x34\x7d\x6f\xa9\x9d\xd9\x38\x32\x42\x6f\x76\x03\x0f\x37\x32\xbd\xa4\x90\x2d\xf6\xf5\x30\x36\xd1\x10\xe7\x91\xfc\x4d\xed\xe1\xea\x12\x55\x67\xce\xc5\x29\x9d\xc8\xb5\x79\x40\xfe\x89\xa9\x9a\xaf\xfa\xa6\x06\x5a\xf1\x35\xb5\x3a\x16\x22\x12\x9a\xb6\x64\x52\xaf\x99\x30\xed\xe6\xa4\xb6\x21\x44\x3c\xa5\x98\xcf\x62\xc7\x68\x39\xa2\x0d\x2b\x9c\xa1\x67\xf5\x94\xd6\x66\x91\x4d\x42\xbb\xa3\x0a\xd7\x80\x2a\x41\x3b\xcc\xe1\x83\x5c\x3b\xff\x03\x35\x05\xfa\x29\x22\x01\x4e\x94\x1d\x13\x35\xbb\x43\x83\x10\x51\xea\x94\x1b\x2b\x96\x49\xc8\x5d\x22\x84\x29\xa8\x31\xf2\x75\x93\x40\xf4\xa0\x7a\x92\x99\xe1\xbb\x27\xc6\xc6\x6a\xfa\xf7\xb0\xa1\x65\xb9\xd8\x4e\xcb\x42\xdd\x3e\x84\x5a\x74\x47\xf9\x7a\xaa\xb9\xfb\x42\x3b\x49\x37\x3b\x79\x1f\x51\x80\x94\x23\x53\xd8\x30\x2f\xb4\xd1\x37\x99\xaf\xcf\x91\x49\x31\x04\x84\x5f\x34\xda\xc0\xda\x5e\x64\x8a\x8c\xfd\xd7\x84\x88\xe7\x3b\xbb\xc7\x14\xc4\x3a\xcc\x4c\x62\x5b\x8a\xa5\x06\xa3\x79\xbe\x76\x11\xae\x67\xc3\xd8\x64\x50\xbb\x74\x22\xf7\x6e\xf6\x75\x1c\x67\xb4\x94\xd6\x0d\xa6\x7f\x3d\x33\x84\xe9\x1f\x9e\xe7\x59\x65\xa7\x73\x76\x4a\x3a\x65\x7e\xbe\x1d\xf6\x44\xed\x19\xa1\xe5\x0c\xa2\x04\xea\x23\x00\x92\x35\x84\x46\x60\x56\xf4\x3d\x04\x7d\xb7\x39\x18\xcd\xcd\x71\x55\x3f\xe3\x3b\x76\xd7\x94\x6b\xd3\x56\xd5\x12\x3a\xdf\x24\x2a\x97\x17\x76\x34\x92\x09\x80\x28\xe3\xd0\x93\x91\x92\xc8\xbb\x25\x99\x1e\xda\x9d\x19\xfb\xa8\x7a\xca\xf9\x7d\x0c\x50\x9c\xec\x93\x53\x0e\xb9\xb4\xb9\x02\xdb\xbf\xbb\xbd\xb8\xb4\xf8\x04\x2d\x34\x51\xa1\xa0\x58\x8e\xdb\x00\x26\x0a\xda\xeb\x3f\xd5\x8c\x86\x9b\x34\x3c\x41\x07\xe7\x08\xde\x0d\x81\xec\x5f\x8c\xf5\x8c\xd7\x33\xb4\x8e\x51\x2a\xe5\x78\xc5\xce\x77\x99\x8b\x04\x1c\xd3\xb7\x75\xeb\xef\x5f\x60\xa8\x8c\xde\xe1\x4d\x45\x18\xfb\xfd\xb1\x9a\x82\x0f\xa3\x22\x57\xc9\xc1\x05\xe4\x85\xa2\xac\xf8\xa4\x66\x95\x24\x26\x6e\x29\xa9\xc5\xeb\xf4\x29\xf8\x5a\xe5\x11\x24\x6a\x5d\x57\xf2\x75\xe3\x1b\x5f\x01\x56\x37\xbf\x80\x7d\xa4\xf4\xa7\xe8\x9d\x85\xc9\x40\x77\x54\xd0\x35\x3e\xe5\x4e\x5f\x5f\xdf\xde\x72\xfe\x89\x4f\x77\x94\x86\x37\x23\x32\xc5\xf2\xdc\xd7\xea\x57\x75\x5b\x92\x66\xc0\x4b\x1b\x97\xa7\xea\x91\x5f\x69\x2f\x47\x3d\x1b\x47\xc5\xba\x9a\xd8\x70\xa5\xcb\x2f\x6a\xd2\xc3\x51\x18\x25\x7d\x8e\x4c\x32\x25\x6c\x39\xb3\xa3\xf3\x7e\x5b\x9a\x68\x18\x33\xea\x5c\x50\xeb\xf4\x47\xf9\x05\xb6\xa2\x1c\x5c\xcb\x59\x9a\x14\x04\x36\x9d\xa5\x3b\x20\xbc\x62\x5f\x55\x5d\xf8\x6c\x65\x93\x26\x85\xc7\x30\x4e\xf3\x4d\xfb\x41\x09\x45\x9f\x71\xcd\x91\xa2\xcc\x4c\xd2\x4b\x31\xea\x40\x12\x7a\x52\x43\x1f\x4f\x6a\xb6\x72\x5a\x46\x71\x6c\xa2\xcc\x22\x67\x60\x59\x39\xd5\xaf\xfb\x21\x15\x8f\xd2\x0a\x54\x56\x92\x49\x9e\x66\x2d\x05\x96\x84\xcf\x38\x5f\x4f\x35\xf0\x5f\x68\x67\xb6\x88\x32\x21\x90\x62\xa1\x20\x30\x21\x17\xbd\x53\xef\xb8\xfa\x98\x39\x48\xb3\x1e\x46\x9b\xd8\x0c\xff\x2d\xdd\x41\xbe\x56\x7d\x9e\x30\x4d\x8a\xcc\x84\x05\x0f\x6f\xe4\x74\xd5\xbc\xe1\x96\xb3\x57\x3e\x1f\xd4\xcd\xe4\x96\x64\x89\xdf\x50\x60\x04\x18\x73\x01\x97\x71\x43\xad\x18\x92\xbc\x33\x11\x3a\xf5\xc8\x4e\x7f\x5d\x17\x6b\xbf\x1e\x3c\xa7\x6d\xee\x8b\x2c\x5d\xb5\x59\xbe\xbe\xdd\x03\xe1\xc0\xe7\x16\x71\x18\xcf\xac\xfc\x4e\xe0\xa3\xf6\xc9\x40\x55\xb8\xc7\xe9\x4e\x89\x6a\xbd\x4f\x60\xba\x51\x56\x0c\x48\xbd\xc9\xa9\x2c\xcc\x76\x3c\x2e\x7f\x76\x22\x30\x7a\x9b\xac\x46\x59\x4a\xa6\x88\x26\x8e\xf2\x42\x99\x86\x1d\x55\xa6\x61\x47\x7d\xf2\x1c\x25\x7d\x3d\x07\x7a\x5b\xcd\x81\xde\x9e\x8a\xd7\x24\x26\x5a\xe5\x1e\x69\xa6\x6c\x48\x31\x78\xe7\xeb\x9a\x5d\x79\x16\x0e\x4c\x52\xcc\x2a\xdb\x6d\x28\x47\xf2\xb5\x4a\x6f\x58\x12\x55\xa4\x17\x24\xe8\x44\x49\x6c\x12\x86\x3b\x22\xcd\x41\x6b\x9a\xaf\x9b\x90\xb2\xac\x31\xce\x2b\x10\x05\xf9\xa7\x8a\xb6\xcc\x2a\xca\xec\xd7\xde\x34\x7c\x63\xa9\xec\x19\x6f\xe1\xfc\x01\xce\x62\xcc\xe7\x7f\x57\xa9\xa4\xff\xb4\x81\x2e\xb3\xc8\x6d\xd5\x19\x95\x52\x30\x1a\x5b\x80\x20\x4a\x29\xe7\x2f\xa6\x4e\xea\x17\xc8\x72\x82\x9e\x49\xcd\x46\x55\xac\xbd\x9a\xac\xf6\xcb\xa4\x1f\xd7\xd3\xa7\xeb\x6a\x80\x73\x7d\xfc\x9c\x1f\xb1\xd8\x2c\x8b\x8a\x34\x8b\x20\x29\x24\x2d\xe9\x53\x8a\xc3\x7c\xaa\xc9\x40\x97\x36\x9d\x62\xf7\x83\x80\xcc\xd7\xee\x79\x25\x69\x37\xed\xad\x6f\xf7\xc8\x86\xf3\x1a\xe4\x09\x89\x3d\x07\xc2\x72\x3a\x25\x97\xc7\x7e\xaa\xfb\x2c\xb1\x0c\xa4\xca\x9a\x8e\x2f\xe6\xd7\xbe\xb4\xf2\x6b\x5f\x32\x50\x13\x12\x02\x98\xef\x86\x7c\x44\xdb\x4c\x44\x38\x37\xe7\x71\xfb\x5e\x6a\xe7\xd5\xea\x2d\x73\xf6\xe6\x60\xe1\x58\xc5\x0b\xbc\xe4\x82\xdf\xda\x7a\x3a\x74\x69\x22\x8a\xce\x3b\x63\xd5\x15\xba\x33\xd5\xe5\x99\x9f\x6f\x9b\x62\x98\xe6\xa3\x81\xcd\x38\x3d\x11\x17\x72\x5f\x40\xdc\xa2\xdd\x22\xa0\xa9\xcd\xe2\x4d\x4b\xbb\xc9\xd0\x21\x8e\x6d\x58\x94\x46\x3a\xae\x58\x44\xc7\xb4\x2b\xe1\xb1\x26\x91\x9d\x2a\xa3\x8c\x12\xac\xfd\x57\xeb\xde\xc8\x42\xff\xd6\x63\x15\x2c\x3d\xec\x55\x93\x7f\xbd\xb4\xe0\x79\x13\x60\x02\x09\x29\xfc\xe9\xf9\xba\x8a\xc2\x32\x6c\x40\x23\x30\x5e\xdf\x55\x03\xc2\x56\xcf\x9d\x0d\x61\x95\x2c\xd1\x51\x65\xc5\x73\x87\xfa\x9a\x32\x57\x53\xc2\xa8\x5b\x50\x8d\x38\xf9\xd4\xf9\x79\xc6\x70\x1f\x0e\xbc\xaf\xf5\x21\x05\x48\xcc\x47\xd6\xf6\xd2\xa1\x2d\xaa\xa3\x7a\xcf\x3e\x4e\xc3\xef\xe0\x80\xe5\x17\x81\x87\x61\x24\xe9\xd3\x75\xd2\xa1\x83\xfc\xb2\xab\x9a\xe4\x3e\x74\xeb\xd0\x19\xbb\x89\x1b\x8e\xd3\xf2\x5d\xa5\xed\xb1\x8d\x3a\x60\xa8\xaf\x9e\x9d\x28\xc0\x9f\xa8\x04\x08\x96\x9c\x12\x3a\x96\x4a\x56\x33\xb5\xcb\x24\x7a\x0d\x38\x38\x4f\xa2\x50\xab\x9f\x40\x1d\x82\x73\x78\x2b\x21\xe1\xf0\xe0\x8e\x07\x8a\xf7\xcb\x7a\xb0\x68\x46\xcf\x4e\xdc\x82\x1d\xa4\x76\x95\x75\xf3\x44\x31\x47\x2d\x72\xea\x34\xe3\xe1\x3c\xdd\xd1\x56\x6e\x9e\x0a\x78\xb7\xa1\x8c\xaf\x6e\x74\xd2\xa3\x43\x10\xbb\x98\x8d\x5a\xf8\x85\xe2\x27\xe7\x85\x35\x71\x0b\x2d\x69\x6c\xf2\x5b\x63\xc5\x5e\xbf\xa5\x80\x61\xdd\xcc\x44\x09\x0d\xee\xd1\xdf\xff\x1f\xc6\x7e\xa8\xf7\xb6\xc6\xaa\xb0\x04\x84\x6b\x0a\x2c\xed\x96\x9f\x1a\xab\xc5\x6b\xab\x73\x86\x05\xf7\xe9\x61\x22\x6f\x9e\xa1\x69\x1c\x5f\x77\xe4\x36\x25\x76\x8d\x1a\x82\x9e\x7a\x7c\x47\x7b\x64\xdd\xf1\xe2\x1f\x83\xcc\xe4\x7f\x2d\xfc\xd6\x39\xa0\x65\x66\x34\x72\x62\xa9\x2c\xc0\x8a\xdc\x43\xd4\x58\x1b\xea\xb7\x6e\x19\x43\xb7\xc0\x61\xf0\x3c\x1e\x4f\xd1\xc3\x8b\xac\xcc\x8b\x5d\xf4\x19\x58\x59\x46\xf3\x21\x4e\x07\xca\xc1\x80\x55\xd2\xc5\x70\xbb\x7a\x66\x92\x71\xa8\x19\xc7\x61\x9c\x66\x92\x7f\x78\x10\xd2\xd6\x49\x4b\xc9\xd7\x68\x6c\x41\x6e\x93\xed\x5a\x6a\x1a\x01\x4d\x9c\x18\xe8\x13\x38\xbe\x75\xf5\xad\x79\xeb\x8e\x6b\x98\xf9\xea\xe3\xe0\x57\xee\x34\x5a\x83\x49\x6a\x97\x66\xe0\x8c\x49\x36\xea\x8b\xd1\xcb\xd8\x1e\x68\x36\x7f\xd0\x2c\xa5\x9c\x96\x05\x01\x48\xdc\xe9\x02\xc2\xa1\x40\xe0\x94\xb2\x4b\xd7\x74\x63\x0e\xd3\xa2\xef\xe9\xd3\xaf\xfb\x81\xce\xff\xbd\x85\x48\x12\x0e\xa2\xa4\x0f\x13\x30\xe5\xaf\x20\x62\xc0\x3f\xa5\x5f\x43\xd4\x67\x67\x2f\x81\x5a\x34\xd9\x93\x93\xb1\x4e\xcb\x61\xdc\x5f\xfa\x21\x7e\x45\x72\x72\x59\xb2\x71\x19\xae\x44\x82\x2c\x45\x8f\xf5\x08\x9e\x3b\xbf\x98\x02\x5a\x2d\x2c\xb4\x2d\x69\x34\x45\x39\xb3\x69\x5e\xf5\x06\x8d\xbe\xf9\x7d\xa9\x36\x64\x4c\x57\x9c\xdf\x98\x0c\x6a\xe8\xe3\xc8\x08\x67\x5a\x30\x70\xb1\xdd\x2d\x87\x23\x40\xec\x50\x13\xbc\x35\xf6\x63\xc7\xb7\x02\x2f\xe1\xfc\x5a\x19\xb3\x76\x01\x72\xbc\xeb\x63\x25\x02\x7f\x8c\x86\x68\x62\xdf\xaa\xac\x5c\x95\x4c\xf2\xb5\x5a\x77\xc7\x7f\xec\xcc\x0e\xd3\x55\x9e\x49\xb1\x9a\x44\xa0\x0c\x5a\xce\x2b\xd1\x2a\xb2\xbd\x81\x7c\x3c\x7a\x2c\x6f\xaa\x7e\x3c\xc0\x2b\x28\xcb\xef\x4f\x7d\xd5\xbf\xdf\x1e\xd9\xc4\x49\x3f\x88\x56\x89\x16\x2e\xf1\x8c\x3f\x9b\x45\x55\x06\x50\x9d\xde\xd8\x33\x88\x01\x5b\x30\x6e\xe2\x17\x93\x67\x5c\x06\x9e\x66\x36\xb7\x26\x0b\x07\x6a\xca\xff\x81\x92\xae\xfe\xa0\xd9\x30\x3b\x0f\x07\xb6\x57\xc6\x3c\xf9\x12\xa5\xf0\xea\xd7\xa4\xbc\x7b\x56\x3d\xdb\xe1\xc8\x16\x55\xde\x47\x9f\x1f\x79\x13\xc6\x7d\x7c\xdd\x68\xe5\x52\x64\x11\x33\x38\x58\x4e\x1d\x77\x56\xb4\xd5\x9b\x40\x81\xcb\x51\x62\x92\xd0\xf2\x37\x47\xd1\x7a\x4b\x23\xd4\xa7\x87\x63\x73\x7b\xda\x43\x53\x6d\x2b\x22\x17\x68\xee\xf8\x69\x2d\x7f\x76\x5a\xd5\x5b\xcb\x69\x36\x2c\x63\x53\x48\xa1\x2c\x82\xd9\x5a\x3d\xbb\x01\x9c\xb3\x54\x9d\x91\xe9\x48\x66\x48\xc8\x38\x4f\x29\x8f\x90\x53\xce\x49\xac\x4c\x96\xd3\xb8\xb7\x29\xff\x3b\xa5\x06\x10\xd3\x5a\x3d\x7b\xf6\xb5\xd7\xa2\xa4\x97\x0f\x22\x1b\x63\xac\x2a\xa2\x4e\x7e\x65\xe9\x63\xab\x6e\x84\xba\xa4\xac\x02\xaa\xbb\x25\x86\x02\x9b\x57\x22\xfc\xe5\xd2\x11\x1f\x36\xd8\x4d\x3f\x0a\xd4\xd6\xfa\x51\x93\x75\x82\x4d\xd2\xb2\x3f\xd8\xe6\x5b\x84\x3b\x26\xde\x30\x8a\x8d\x95\x91\x96\x9d\x57\x4a\x58\xb7\xa9\x45\x20\x1a\x76\x4a\x0e\x3e\x8a\x63\x9b\xb5\xd4\x16\xbe\xa6\xb8\x00\xd7\xa6\x56\xc6\x0b\xed\x28\x09\x33\x6b\xf2\xba\xb4\xd4\x99\x1a\x88\x41\xc9\x66\x9f\x56\xc0\x96\x32\xe9\x59\xd3\xc3\x91\x80\xba\x1a\xc3\x2d\x1c\xc2\xff\x06\x77\x0b\x05\xc3\xd6\x29\xf2\x13\x65\xfc\x49\x8e\x29\x81\x83\x29\xcd\xcf\x3b\x98\x92\x4f\x5f\x06\x51\x1c\xe7\x50\xf7\x17\x67\x46\xac\x45\xf1\x0e\x54\xc0\x73\xb4\xc8\x30\x66\x65\x5d\x17\x81\xb6\x09\x07\xc6\x44\x3d\x91\x7f\x10\x4b\x54\x35\x09\x04\xe0\x9e\xaf\xb5\x4f\xde\xd9\xa9\x07\x3e\x37\xd7\xce\xd2\x6e\x5a\xe4\xb3\xbe\x8f\xf6\xd1\xd8\xcb\x54\xfd\xc6\x58\x8d\x32\xc0\x06\x97\xde\xe7\xe6\xa4\xe3\x85\xf6\x28\xb2\x21\x0e\x47\xa1\xa7\x7a\x74\xf7\xd9\x40\x00\x70\x79\xca\x12\xd3\xf8\x87\xab\xca\x63\x66\xb6\x0a\x93\x1b\x37\xd5\xf3\xc9\xec\xc8\x44\xbd\x96\x47\x18\x42\x3e\x47\x88\x25\xd3\x3a\xad\x2f\xb6\x6d\x99\xa5\x23\x6b\x9c\xd8\x21\x1e\xfa\x65\x6c\x5f\x24\xbc\xbf\x3d\xae\x0d\xe0\x9f\x56\xd2\xde\x85\x89\x62\x9b\xd1\x54\x4a\x4b\xb4\xb3\x68\xd8\x58\xb9\x4d\x7e\xd8\xc4\x06\x5c\x36\xd9\xd0\x66\xf2\xd6\x38\x40\x7f\xa2\x8d\xc7\x58\x45\x1b\x77\xfa\xce\xd4\x9f\x98\x9b\xa3\x70\x1a\xdb\xd7\x95\x60\x8e\xd6\x3c\x9e\x56\xd6\x25\x36\x57\x99\x89\xfa\xa9\x68\x46\xf9\x12\xbf\x59\x1f\xdd\x74\xa3\xc4\x16\xb9\x22\x64\xbf\xad\x9d\x7a\xde\x76\xcf\xab\x5f\x26\x9f\x7d\x0a\xf8\x96\xb0\xe9\xdb\x24\x5c\x7f\x12\x5f\x1c\x29\xda\x0c\x06\xba\x2c\x05\x83\x9c\x42\xce\x7e\x3f\xf6\x7b\x94\x64\xab\x78\x10\xa5\x3c\x1a\x6e\xea\xd1\xed\xa7\xaa\xe1\x7d\x96\xba\xe5\x92\x26\x23\x87\x17\xe4\xac\x9a\x9c\x32\x59\x8a\xff\x05\x5d\x75\x44\x86\xb7\xf0\x45\xb1\xad\x4f\x05\x4a\x56\x7e\xfb\x14\xa8\xb6\x5a\x51\x79\xba\x5c\x48\x82\x84\x2f\x73\x47\xc9\x0a\x4f\x0f\x51\x5f\x68\x77\x63\xd3\xeb\x59\x9e\x4f\x72\x91\xa5\xac\x81\x8e\x7b\x44\xb9\xc9\xd6\xa2\x84\xcf\x25\xf1\x5f\xd4\x66\x8c\x4d\xda\x17\x26\xac\xd6\x88\x49\x22\xdb\xa3\x7c\xa3\x26\x17\x8d\x89\x02\xcc\x39\xd1\xf1\x3e\xae\x12\x9a\x81\x49\x7a\xb1\x23\xc5\x39\xd3\x22\x97\xa5\x1f\x6b\x86\x4d\x27\xbd\x74\xa8\x54\x33\xce\x28\x4e\xe8\xb4\x55\xc3\xbe\x97\xda\xcb\xa6\x9b\xd1\xa8\x53\xe9\x0a\xa0\xa9\xc3\xd7\x8d\x83\x67\x26\xb7\x56\xcf\xc6\xe1\xaf\x3c\x2d\xea\xe2\x54\x73\x6a\xff\xee\x85\xf6\x28\xb6\x49\x01\x05\x6e\x26\x3b\x04\x7e\x40\x74\x6d\xea\x18\x5d\x58\x68\x8f\x4a\x4a\x5c\xdd\xe9\xdb\x24\xe1\xef\xbb\xdb\x99\x1d\x59\x43\xe8\x42\xcc\xdc\xd0\x5d\x3c\xae\x3a\x8d\xc7\x15\xe7\x71\xcd\xc4\x2b\x6b\x66\x5d\x0b\xcb\x1d\x56\xed\xe3\xc3\x53\x89\xd0\x81\x03\xed\x7c\x68\x62\xe8\xac\xe3\xec\x04\x9e\x1a\xa8\x27\x86\x28\x8b\x2c\xb5\xb6\xb7\xe8\xa6\x59\x8f\x24\x66\xf9\x8e\x09\x90\xc0\x0f\x89\x2e\x29\xdc\xc7\x68\x10\xc5\xd1\x68\x96\x36\x81\x34\xfb\x75\x78\xdc\xda\x21\x70\x4d\x8d\xcc\xca\xff\x32\xf1\xe1\xb1\x18\x90\x98\x31\x37\xf7\x80\x36\x00\x9e\x80\xaf\x1b\x59\xe5\x51\x5e\xa4\x89\xd6\x3d\x3d\x37\xd6\xad\xbe\xcd\xb7\xa4\xca\x41\x7a\x65\x97\x53\x10\x9c\x62\x1f\xe1\xfc\xe6\x17\x2a\x60\x0f\x4c\x56\x24\xb6\x60\xf4\xa2\x53\x82\x73\x16\x7f\x47\xd5\xcf\x46\x49\x18\xf5\x84\xbf\xc1\xc6\xb7\x14\x4a\xc4\x04\xf7\x09\x5f\xbe\x15\x36\x2f\xb4\xcd\xeb\x49\xda\x23\x88\x7a\x97\xc7\x5e\x61\xff\x82\xe2\x69\xbd\x1f\xf8\x58\xba\x0b\xbe\xa1\xd2\x1d\x79\x4e\xa1\x44\x86\xf0\x55\x8c\xc2\x16\x05\x44\x69\xa6\xd0\x9b\x89\xc8\xf1\x33\xea\x00\x0c\xd3\xac\x57\x1d\x29\x5e\x6d\xe9\x2f\xf0\xc3\xf8\xe3\xa7\x68\xb9\xb0\xd6\xc5\x54\xa4\xdf\xf7\x52\x3b\xb1\x51\x7f\xd0\x4d\x71\xa6\xe1\xe0\xbc\x46\x9f\x1a\xcb\xf7\xaa\x1a\xe1\xcf\x74\x36\xd3\x14\x09\x5b\x66\xf2\x22\x3b\x68\x87\xf9\x4a\x84\xdb\xec\xa6\xfa\x7b\xbd\xd1\x56\xc3\x54\x5b\x4c\xee\x7b\x94\x5b\x60\xf2\xc8\x2a\xe2\xd8\xd1\x37\xe9\xad\x9d\x18\x4a\x15\x5e\x85\x92\xee\x6f\x80\xfa\x2b\xce\x16\x6a\x6b\x47\x1b\x6a\x04\xde\x08\x79\xe7\xc4\xcf\x21\x0e\x05\xb5\xc1\x4e\x08\xdc\x7c\x75\x8c\x48\x7f\xd4\x7f\xfe\xe9\xb0\x57\x6d\x4c\x9b\x9b\x21\xf2\x19\x49\x1c\xd5\xbe\x38\xed\x7c\x3e\x46\x59\xda\xcf\x48\x44\xbb\xa5\xc6\xa5\x6c\xdf\xc4\x2f\xd4\x56\xec\xdb\x34\xeb\xdb\x6d\xfe\x34\xe0\xa1\x81\x08\x63\x56\x8f\x86\x65\x18\x03\xc5\x41\xfe\x43\x74\x02\x58\xed\xab\xd1\xe2\x91\xad\x1a\x35\x2a\xe6\x38\x7e\x8b\x5f\xe8\xa2\x6d\x60\x87\xe2\x22\xe9\x20\xc5\xe7\x54\x09\x72\xce\xcb\x66\x0c\xd2\xb4\x48\xcb\x62\xa6\xb5\xb4\x58\x53\xe5\xc4\x11\x75\x53\xe1\x8a\x3f\xaa\xb1\x7b\x6d\x3e\x40\x2f\x03\x7b\xf1\x36\x7a\x39\x68\x96\x6c\x60\x30\xce\x2f\x10\xe7\xf9\xc7\xb4\x8d\x93\x35\xb1\xcd\x72\xd8\x86\x89\x8c\x69\x75\x83\xf0\xb8\x45\xb0\x0a\xbf\xf8\x1f\xaa\x0f\xb5\xc1\x3b\xcf\xe9\x83\x2d\xed\x76\x2f\xc6\x5e\x2a\xe1\x72\x93\xb0\x46\x1a\x5a\x93\xcc\xd0\xaf\x3b\xd7\x75\xf7\x94\x80\x61\x40\xde\x36\x3b\xf9\x2c\xec\x7a\x3e\x30\x99\x1d\x10\xf1\x5d\x92\x40\x11\x37\x51\xb2\xbc\x4c\xbb\x93\x30\xbd\x39\x93\x5e\x7c\xe9\xe5\x76\x92\x7e\x91\x1e\x0c\xf7\xd9\x03\xc5\x5b\xbf\xa8\xea\x8a\xbe\x29\x79\xc4\x26\xe4\x2d\x7a\x1b\x61\x75\x39\xbc\x1b\xfc\xf8\x67\x7d\xe3\x8a\xab\x32\xad\x08\xa6\x9a\xd4\x02\xe9\xbd\x3f\xf5\xd9\xf6\xec\x6b\x17\x66\x68\x67\x7c\x8b\xfb\x01\x85\x3d\x1c\x51\x97\x95\xc3\xc1\x99\xcd\xe8\x88\x57\x96\x76\xb7\xe7\xe6\x88\xb0\x58\x03\x94\x0a\x61\xab\xca\xfd\x79\x67\x23\x0c\x70\xed\xc2\x2f\xa8\xc5\x87\xfb\x0f\xf4\x36\x22\xed\xf7\xa6\x72\xe8\x25\x42\xaf\x78\xc8\x8f\xc8\x05\xfb\x73\xf8\x7c\x13\x82\x25\x37\x50\x41\x12\x89\x2f\x05\x5a\x38\xe5\xf6\x7a\x98\x26\x85\x89\x12\xff\x74\x81\x9c\xfe\x1e\x6e\x3b\xd6\xe1\xe5\xb1\x96\x4a\x6a\x12\x64\xcf\xcb\x6e\x0e\x6d\x1c\x35\x94\xbe\xab\x86\xd2\xda\x80\x39\xb7\x76\x85\x4b\x47\x49\x5f\xfd\x19\xff\x20\x50\x34\x39\x74\xb7\xa4\x43\x51\xfd\x65\x71\x5e\xf7\xbd\xe4\x88\x00\x31\x20\x09\xb0\xc7\xe4\xd8\x97\xac\xc8\x6b\x65\x8b\x28\x0a\x6e\xbc\xfc\x18\x65\xd3\xd4\x62\x7d\xff\x17\x3a\x3a\xe5\x18\xeb\x01\x17\xee\x8a\x93\x3a\x5d\xf2\xab\xbc\x7a\x17\x84\x32\x92\x53\x7d\x95\x8f\xdd\x2b\x1a\x4f\x89\x9e\x19\x66\x07\x27\xb1\x3a\xdc\x70\xbc\x7a\x1c\x80\xc8\xe0\xf1\xcb\x09\xbe\x49\xfd\x6e\x7e\x7e\xa9\x4a\x0c\xb7\xd1\x2f\xcb\xd9\x52\x7d\x0e\x7c\x2b\x4c\xc1\x9d\x36\x8b\xb3\xc0\xbf\x42\xa7\x01\xff\x8c\x4b\xcf\x33\x33\x8a\x7a\x75\x12\xea\xf7\xc6\x2a\xd5\xf8\x9e\x72\x1c\x4b\xb3\xbe\x49\xa2\x83\x04\xd7\x20\x91\x50\x2e\xed\x09\xe7\xcf\x9a\x0b\x81\x52\xbc\x01\x8c\xc3\xd5\xff\xaf\xf8\x9f\xa2\x8f\x28\xb6\xc1\x8d\xde\x56\x43\xdb\x8b\xea\x22\x0b\x68\xf0\x0b\x63\xde\x0b\x87\x77\xd3\x32\xe9\xf1\xc1\x84\x15\xf9\x0e\x96\x0c\xbf\x98\x3a\xb8\xa9\xfd\x17\x9a\x51\x54\x98\x58\x89\x32\x3e\x50\x83\x93\x07\x63\x05\x4e\x88\x8a\xc8\xe6\xbf\xf6\x25\xd3\x85\x2d\x1f\x8e\x79\xae\x61\xf8\x85\xdb\x3d\xdd\x32\x8e\x7b\xe9\x41\xcf\xeb\x45\xb1\xc2\xcd\x0b\x7e\xd1\x54\xe0\x76\xcb\x7c\x60\xd9\x98\x54\xaa\x24\x7f\x02\x9d\x54\x70\xcf\x6e\x9a\x94\xd5\x49\x5c\x3d\x00\x3c\xe5\xc3\x84\x0e\xe7\x6b\xd7\x82\x1b\x46\x79\xbf\x8c\x7a\x68\x19\x89\xe0\x22\xf7\x8d\x31\x0f\xb8\xaa\x28\xc0\x33\x1d\x7d\xae\x75\xcd\x3a\x28\x3e\x2c\xcd\x48\xdb\x0e\x0b\xe2\xa2\x52\x79\xfc\xef\x95\x5f\xfd\x69\xd7\xba\xc9\x6c\xbc\x8e\xdd\xac\x33\x48\x3a\x56\xff\x8b\x67\x3b\x4a\x08\xea\x89\x8e\x9b\xaf\x1d\xff\xb9\x89\xe7\xcc\x9f\x6d\x0a\x78\xd5\x27\x23\xba\x54\xf5\x87\x99\xc5\x10\x28\xcf\x8f\x69\xda\xed\xdc\x5c\xbb\x6b\x13\xbb\x1c\xb1\x37\x09\x6e\xd0\x9b\x4a\xf8\x6c\x3b\xca\x77\x4c\x12\xb1\xcb\x91\x7f\xde\x56\xcd\xba\xae\x0d\xcd\xd0\x52\x50\xc7\x3b\xb5\x26\x4a\x0a\x14\xfe\xb3\x9a\x26\x8b\x00\xce\xf2\x4c\x48\xe0\x7e\x6b\xac\x24\x14\x7e\x4b\xf1\x30\x5a\x9d\xcd\x8b\x73\xef\x82\xf7\x1a\x47\x6a\xc1\xa4\x67\x94\xf7\x35\xd1\x58\xa7\x77\xec\xb5\x8f\xbd\x98\x06\xf9\x3f\x93\x80\x29\x63\xe4\xb5\xd9\xe6\x05\xe5\x8d\x73\x4f\xa5\x44\x97\xc6\x5f\x98\x2e\x27\xd3\x55\x9b\x85\x69\x1c\x9b\xc2\x66\x26\x8e\x0e\xca\xa9\x23\xd8\xcf\xaa\xc0\x10\xe8\x67\xd3\xca\x36\x59\x66\x63\x25\xbe\x0e\xc0\x0b\x5f\xfb\x8d\x1c\xad\xda\xc2\x05\x6e\x14\xd1\x9f\x2a\x79\x50\xb4\xe6\xc4\xec\x49\xb1\xd1\x0e\x5a\x98\xac\xa0\x15\x74\x1f\x61\x14\x3d\x11\xb8\xef\x39\x4f\x99\xea\x06\xa2\x23\x73\x5a\x3f\x9d\x2d\xb4\xf4\xb4\x85\x17\x9a\xfa\x57\x90\xb0\x0b\x3b\xc7\xe7\xd2\xf7\xb0\x9b\x45\xb5\xda\xd7\x47\xed\x8e\xa7\xd5\xe4\x23\x13\x25\x84\xdd\xc3\xbf\xbd\xa9\x2c\xa9\xcf\x22\xf0\xf3\x3f\x50\x85\x26\x1a\x7d\x9e\xb4\x35\x19\xfb\x5d\x3d\x51\x74\xdd\xdc\x26\xa6\x48\xb3\x7c\x56\x51\x32\x2e\xe9\x4e\xd2\x7b\x4a\xaf\xe5\x92\x3e\x62\xde\x73\xce\x20\xaf\xa5\xb9\xcc\x18\x94\xa7\xc2\xa2\xeb\x51\x29\xa7\x92\xb2\x5b\xc4\x16\x85\x1c\x52\xc6\xcb\xc8\x6b\xf9\x45\x5d\x21\xde\xae\xb5\x3c\x51\xe5\x63\xfa\x32\xc2\xfb\x69\x70\x5c\x8c\xb2\x15\xde\xcf\x5c\x00\x04\xfe\x04\xfd\x43\xbf\x92\xab\xc8\xd8\xdb\xe6\xcd\x37\x59\x17\x5f\x89\xe2\x49\x76\xff\x50\x35\x60\xde\x1b\x2b\x60\xfe\x7b\xc1\x73\x4d\x70\x8f\x19\x45\xf7\x39\x3b\xf6\x66\x48\xb0\xc2\x10\xe1\x0a\x01\x7b\xe5\x2b\x91\x70\x15\x45\x01\x5c\xe5\x2c\x67\x5c\xe0\xc5\x0c\x27\x62\x6b\x39\x0c\x2e\x80\xd1\x11\x6f\x12\x85\x6d\x7e\x10\xfc\x8c\x6f\x79\xa4\x43\x9b\xe5\xa6\x8c\x01\xcd\xf6\xaa\x52\x17\x94\xaa\xd4\x05\x97\xf2\x9a\x21\x39\xee\x61\x33\x02\xcd\x00\x2d\x36\xbe\x56\x58\x32\xea\xf1\xc4\x16\x6d\x66\x91\x4d\xae\xfe\x26\x5f\x2b\x6c\x41\xdf\x74\x19\x9e\x86\x8e\x07\x37\x68\xf8\x45\xe0\x07\xeb\xbd\xac\xec\xe7\x33\x7e\xa9\x6d\x9f\xf8\xcc\x6a\x06\xe9\x93\x72\xe5\x70\x52\xd4\x07\x0f\xae\xcb\xd8\x49\xb8\x04\xd5\xdf\x10\x88\xc2\x67\x19\x3c\x32\x45\x80\xb0\x51\xe2\xd6\x32\xed\x82\x80\x26\x41\x8b\x36\xb4\x1c\x38\x3e\xd2\x9d\x1b\xfb\x3a\xfa\x7f\x73\xb7\x71\x35\x8d\xcb\xa1\xa4\x1a\xc8\x86\xaf\x05\x8a\x04\x3d\x3d\x8e\x21\x98\x9c\xcd\xcb\xa1\x9c\xad\x48\xc2\xd8\x67\xcb\xd9\x38\xba\x52\xec\x4d\x35\xb5\x32\x49\x61\xfa\x24\x04\x06\x51\x44\xaf\x43\xda\xf2\x9a\xa4\x8a\xd3\x9f\x0f\x20\x77\xe0\x0e\x6a\xd6\x8e\x16\xa8\xf0\x14\xc6\x70\x91\x96\xd1\xda\xc0\x14\x2d\xaf\xbe\x72\x41\x69\x74\x5e\xd0\x4a\x2c\xe9\xd0\x76\xd3\x1e\xd0\x5c\x22\xfa\xe8\xc1\x43\xad\x5a\x52\x10\x96\xa4\x1f\x26\x31\xe7\x1c\x32\x3a\x84\x16\xf4\x68\xf8\x1f\x28\x1f\xe4\xff\xaf\x95\x42\x99\x5f\x8a\x6a\x68\x43\x47\xa9\xc0\x0f\x92\x8f\xab\x25\x96\x45\xf9\x0a\x4a\x16\xe1\x5f\x56\x3f\x27\xa2\x2a\x4f\xba\x59\x63\x94\xa5\xeb\x3c\xc3\x66\xe1\x25\x2c\x07\x51\x61\xf2\x7f\x91\x90\x33\x60\xf7\xe3\x2b\xa2\x39\x84\x35\xf1\x7b\x81\x16\x7a\x43\x48\x45\x6e\xf0\x10\x9d\x76\x11\xee\xf0\x4f\x63\x4b\xa7\x26\xe2\xd1\x80\xff\xf9\x7a\x19\xc1\xe9\x4f\x34\xa8\x51\x8a\xf2\xb5\xd2\x1d\xe8\x46\x2b\xac\x58\xe2\xdc\x66\x7c\xbf\x56\x1d\x78\xff\xf4\x9f\x2e\xb5\x6a\xb3\x34\x75\x94\x9d\x6b\x02\x64\x86\x99\xf5\xac\x25\x41\xf6\xfa\xd5\x79\xde\x09\x37\xac\xff\x42\x36\xeb\x25\x9d\x3e\x24\xef\x30\x77\xa4\xb8\xc6\xdf\x75\xad\xd9\xbe\xa5\x23\x4f\xe1\xa0\x89\xcb\x6e\x54\x83\x63\x70\xe8\xe0\x17\x8d\x70\xed\x6e\xba\xe6\x5d\xac\x05\x4e\xa4\xa0\x45\x81\x1e\x94\xf5\xca\xd0\xd2\x08\x56\x70\xbb\x2d\xa7\x13\xf5\x16\x88\xc7\x28\x29\x3e\xa9\x16\xe0\xc6\x61\x40\x83\x51\x7e\x5c\x9f\x62\x80\xec\x7b\x89\x10\x44\x44\x1f\x01\x7a\x0c\x5b\xd6\x69\x99\xef\xf7\x05\x58\xc3\x63\x5d\x8d\xfa\x11\x92\x1a\x34\xe2\xd1\xa3\xe3\x6b\xe5\x12\x53\x0c\x22\xcb\x32\xce\x7b\x78\x9e\xc0\xaa\x7f\xc0\xb5\x9d\x1b\x13\xff\x54\x54\x6e\x1a\xa4\x63\x32\x4b\x6a\x3b\x78\xe6\x48\x2e\x31\x01\xe0\x6b\x77\x50\xe6\x36\xca\x07\x29\xa5\x7c\x92\xe5\xf8\x95\xa6\x7d\x6e\x8f\x53\x0f\x03\x4f\x79\xa6\xb3\xb9\x51\xf0\x2b\xed\x5e\xba\x96\xcc\x28\xb3\xeb\xb1\x77\xe0\xbd\xa1\x32\xfe\xf3\x2a\x49\x4e\xd2\x6c\x68\x12\x74\xdf\x85\x38\xdc\x72\x52\x19\xe8\xba\x29\x65\xe5\x3d\x8e\x6a\x2c\x85\xd3\x9a\x35\x2b\x09\xb7\x18\x3d\xad\x01\x8e\xb9\x7c\x5d\x53\xb9\x26\x8f\xdb\x3a\x6b\xb9\xe5\xb4\x51\x2f\x69\x9e\xf6\xd0\x1c\xa4\x15\xb6\xb4\x5b\x64\x62\x7f\x0f\x14\x72\x7e\xa1\x66\x47\x43\x4b\x29\xe8\x23\xc8\x8c\x70\xb3\xde\x45\xee\x8e\x0c\xff\xb6\x5e\xfb\x13\x0a\xaa\x68\x8f\xb0\xe6\x14\x76\xd4\xf5\x40\xfb\x53\xb6\x9c\xae\xd0\xce\x89\x1f\x2a\xed\x42\xe9\x81\x15\xf6\x30\xf0\x24\xca\x77\xc7\x4f\x29\x47\xdb\x51\x66\x87\xa0\x38\x89\xcd\x63\xf5\x9e\x0e\xee\xfe\xe5\x57\xb8\x40\xbc\xac\xb0\x9a\x99\x99\x92\xbc\xd9\xe3\x24\x6f\x64\xb1\x7c\xbd\x4c\x0b\x93\x6f\xf3\x2e\xab\x9c\x01\x62\xb5\xd4\x70\x9c\x67\xb5\xff\xea\xd3\x74\x9e\x42\x24\xe6\x41\x0d\x66\x10\xa5\x49\x3e\xab\xc6\xa1\x0c\xda\xe6\x17\x81\x87\x2a\xfc\x74\xec\x7b\x07\xd3\xd4\x34\xaa\xfe\x4b\x06\x18\xa2\xdc\x39\xac\x75\x09\x0e\x2b\x60\x7f\x6e\xa3\x83\x65\x26\x4b\xc6\xa5\x13\x3e\xb5\x70\x4c\xda\x32\x09\x07\x26\x8e\x6d\xe2\x7a\x66\x8e\xb0\xe4\xa6\x88\xe7\xdd\x78\x24\x2d\x0b\x28\x0b\x56\x7f\x16\xb0\x0e\xc8\xfd\xf1\xb5\x8a\x4a\x09\x91\xa9\x5a\x0a\xaa\x76\x4c\x29\x04\x1d\x73\x49\x61\x6e\xe2\x62\xcd\x14\xb2\x66\x05\xce\xa2\x61\x2e\x1e\xed\x95\xa4\xab\x5f\x6c\x29\x7e\xf3\x59\x1c\x4c\xc2\x1c\xac\x69\xe0\x16\x07\x5b\x3e\x73\x18\x8f\x95\x30\xc7\xb8\x41\x56\x76\xa1\x9d\x26\xf1\xfa\x36\xdf\x45\xbb\x41\xbd\x03\x51\x68\x57\xfc\xc6\xb7\xe9\xce\xa0\xb5\x0b\x43\x27\xe1\x2d\x6d\x6e\xf7\x2d\xed\x5e\x6a\x87\x59\x34\x1a\xf9\x48\x8e\x5e\xd9\x31\xe5\x05\x73\xcc\x89\x6c\x44\xc9\x72\x16\x25\x7d\x2f\x61\x86\x88\xfb\xae\x8a\xbe\xef\x36\x0d\x4f\xbb\x99\x49\xc2\x41\xcb\xc7\x1f\x14\xbe\xe2\x38\xea\xfd\xfe\xd2\xb2\x78\x9a\x8e\x6b\x14\x8b\x33\x1d\xcf\x5e\x78\x0c\x7d\x39\xe4\x6b\x8f\x75\x14\x03\x18\x86\x36\x58\xd7\xb7\xb4\xff\xd1\x36\xb6\x6d\x42\xb5\x37\x33\x51\x4e\xb0\x1f\x07\x9e\x12\x83\xee\x01\x92\x82\x2b\x5a\xdf\x78\x07\x6c\xac\x11\x6c\x6e\x50\xad\x87\x82\xf4\x53\x04\x16\x24\x18\xbb\x3a\x1e\xe2\xbe\x15\xb2\xbb\x88\x19\x1f\x04\x2a\xcb\xdd\x32\x79\xaa\xe6\xd1\x9e\x26\xd4\x36\x15\xd1\xa6\x8f\xc6\xca\xb5\xef\x92\xa6\x24\xd0\x3a\x43\xda\x7c\x2d\x50\x95\xde\xc5\xa0\x3e\xfa\xcc\x4d\xd2\xa3\x68\xa3\xed\x39\xb0\xe8\xaf\xd3\x47\xc7\xac\x70\x6b\xc7\xd7\x0b\x49\x1a\xe5\x9c\xb7\x88\x79\x06\x45\x57\x7e\x31\x75\xee\xce\xed\x69\x8f\x4c\xca\xec\x6b\xfc\xe9\xbb\xdc\x53\x05\x89\x08\xb6\xe6\x42\x16\x69\xc2\xd5\xf5\xb2\x74\xd4\x52\x5d\x74\x84\x7e\x21\x2e\x2b\x79\xf6\xd8\x74\xbb\x51\x75\xaa\xcc\xa8\x46\xd1\xdb\x78\xba\x38\x8d\x70\x92\x4a\x65\xb5\x79\x65\xef\x5d\x68\x0f\x6c\x1c\x85\xe9\x88\x36\x6e\xf5\x1c\xa5\x6f\xef\xdf\x71\x3a\xe7\xda\xbf\x7b\x4f\xbb\x6b\x97\xd3\xcc\xce\xd0\xef\xb8\xfe\xf0\xd2\x6e\x5e\x93\x77\x28\x04\xe2\x94\x9e\xed\x3c\xa3\x20\x96\x26\x5c\x19\x98\x35\x00\x9b\x1b\x67\x04\xda\xe1\x70\xd8\x25\xba\x42\xcb\x29\xb6\x1f\x57\xea\x5c\x2c\x26\x84\x62\xf0\x7a\x2d\x68\x94\x99\xfd\x9c\xcf\x6f\x8e\x04\xba\x55\x09\xd4\x37\x65\x44\xff\xcb\x73\x1d\xd5\x3d\xd8\x32\xa1\xe7\x8a\x54\xf9\x27\xc8\x8e\xb1\xf9\xfe\x0a\x1d\x01\x46\xfc\xa0\x76\xc2\x82\x7d\x00\xad\x19\xe1\x73\x29\x7d\x97\xc7\x95\x9b\xc1\x05\xed\x74\x74\x88\x6e\x2d\x16\xff\x77\x03\xe5\x13\xbd\x41\xf7\x0c\xdd\x98\x1b\xc4\x00\x40\x93\xe7\x1a\xb4\x71\x10\xf1\xcf\x61\x02\x87\xe9\x0b\x27\x5a\xc2\x35\xaa\xaa\x12\x76\x93\xee\x28\xcc\xd9\x1d\x95\x00\xe4\xeb\x79\x61\x87\xf9\xa3\xea\x6b\x9f\x42\x17\x48\x9c\x59\x67\xbc\x1d\xe4\x4f\xc7\x6a\x78\x79\x7a\xac\xf0\x84\xdc\x98\xc4\x49\xff\x80\x22\x03\x6e\xee\xff\xc9\x2b\x1d\xc0\x68\x0c\xdf\x84\x64\xe4\x5b\x45\x8f\x69\x65\x95\x53\x0e\xa6\x94\xbe\x16\x69\x84\xc6\x79\x6a\xbc\x09\xfd\xb2\xc1\x77\xa8\x17\xa5\xaf\x47\x3d\xab\x0e\x52\xa4\xfd\xd2\x43\x6c\xe2\x5e\xf5\x6c\x18\xf5\xec\xb6\x2a\xb1\x90\x96\x5e\xf5\xe9\x81\xa4\xbd\x83\xfb\xa9\x85\xb4\x1c\x04\xcf\xdb\x6b\x9f\x6c\x92\xad\xcc\x6c\x62\xa2\x3c\x27\x6c\x2b\x7d\x07\x71\x2b\xf6\xe0\xf2\xd3\x35\xf3\xf2\x8c\xe1\x91\x02\xf0\x52\x2d\xbe\xd3\xba\x19\x16\x1b\x02\xba\xcc\xf8\xf4\x62\x4b\x47\xd9\xbb\x2b\xdf\xa9\xab\x2a\xb1\xb2\x43\x92\x79\x42\x59\x06\xe4\xdb\x87\x58\xaa\xfc\x42\x4f\xa7\x06\x11\x35\x4e\x16\xbd\xf2\xec\xd2\x6e\xb9\xae\xa9\xf0\x8e\xd2\xd1\xf6\xea\xdf\x70\x68\x22\x77\xc5\x80\xe0\x68\x50\x73\xbd\xf7\xf5\xe3\x03\x3a\x59\x81\x81\x86\x52\x2e\x70\x8c\xdf\x1e\xfb\xb6\x10\x6b\x49\x14\xd5\xcd\x13\x0a\x3a\x2a\x96\x87\xf4\x16\x0e\xc3\xba\xa8\xa7\xd7\x8e\x1b\xc8\xa2\x2b\xe2\x20\xe0\x0b\xc9\x22\x5a\x9e\xa9\x1e\xb4\xe8\xb0\xd1\xc3\x95\x67\xd1\x52\x06\x01\xaa\x1b\x38\x30\x19\x12\xa8\x17\xbd\xe4\x9e\x97\xdf\x53\xaa\x42\x23\x53\xd8\x18\xa8\x53\xfc\x19\x9c\x41\x6c\x52\x42\xdf\x5a\x84\x3d\xdc\x14\x7e\x64\x92\x15\xd7\x01\xc6\x1c\x13\xdb\x02\x01\x74\x0b\x9d\x91\xb2\xdd\x5c\x17\xac\xb7\x6a\xb3\xdc\x6e\xf7\x04\xfa\x23\x1a\x47\xf0\xc1\xd8\xb5\x33\xfe\xe0\x73\x1d\x3f\x6f\x9e\x85\x1c\xbe\x37\x50\xf4\x4b\xc6\x87\x03\x12\x21\x29\xf2\x59\xe5\x2a\x7f\x47\x0b\x09\x31\x49\x45\xea\x68\x8f\x39\xbf\x33\x55\xec\xee\x5d\xf0\x15\x72\xad\x2a\xd6\xe5\x72\xad\xdb\x92\x0e\xb4\x1c\xc6\x15\x45\x34\xb9\x32\x7e\xcc\x83\x12\xa3\xde\xac\x82\x16\xdc\xa7\x0f\x81\x9c\x02\xe9\x17\xff\xff\x40\x25\x1b\xc7\x82\x4d\x73\xeb\x03\x07\xda\x8b\x4b\x8b\xbb\x14\x85\xec\x92\x8a\x14\xb3\xc8\x60\xf0\xbb\xff\x16\x3b\x11\x55\xf7\x95\xb1\xda\xa3\x3f\x50\xdd\x35\x76\x67\x91\x4e\x8a\x47\xdb\xfe\xd7\x63\x5f\x3e\xdc\x70\xcf\x30\x2c\xb3\xc2\x44\xf1\x8c\x57\x02\xbc\xaf\x2a\x5c\x2c\x66\xe9\x9c\x3f\xa9\x78\x02\x69\x8f\x05\x25\x64\xe8\xad\x4d\xf5\xcf\xab\xa5\xfe\x8f\xfe\xe1\x3f\x44\xc2\x20\x0b\xb5\x0a\x9d\xb2\x80\x7d\x3d\x51\xa4\x65\x16\xe5\x05\x9b\x2e\x39\x45\xfa\xea\x3b\xa2\xe4\x83\x4c\x0f\xf2\x94\x13\x8d\x04\x9a\xd0\x14\x83\xb4\x07\x54\x20\xeb\x1c\x8d\x3d\xa6\xf8\x94\x86\x93\x86\x55\xe5\x30\x5b\xed\x04\x96\x8a\xc6\x33\x62\xa3\x43\x74\xd7\xb4\x88\xb4\x38\x20\x2a\xd4\xca\x5a\x11\x31\x52\x01\x9d\x8f\x33\x4a\x6a\xeb\x7c\xdd\x20\xa4\x01\x17\x6d\x94\x3d\x82\xc3\x55\xab\xa0\xbe\xb9\x17\xbb\x7f\x37\xcd\x82\x32\xcb\xbf\x58\xbd\x2f\xee\x05\x6b\x4e\xf0\x0b\x25\x19\x16\x25\x10\x30\x17\xc5\x65\xfa\x48\x62\xbb\x31\xed\xea\xd6\x7e\x65\xcf\xbe\x47\xe8\x7e\xe3\x9c\xff\x09\x14\xb1\x14\x53\x68\xd1\x59\x10\xd3\xf3\x94\xd9\x0e\x1e\xbc\x88\xaa\x29\xc1\xf3\x9f\x04\x4a\x32\x81\xf9\x41\x02\x28\xf7\xf3\xbe\xd3\x0a\x99\x70\x3f\xd8\xcc\x2a\x3d\x70\xa0\xdd\x8b\x72\x33\x1a\xa5\x51\xe2\x47\x54\xd8\x58\xa8\xef\x79\x60\x44\x7f\x05\x6f\x75\xa2\xe6\x2a\x9c\x0f\x6d\x11\x85\xf9\x4e\xdf\x8b\x7e\xbc\x43\x59\x8b\x53\x31\xac\x52\x2b\x11\x3f\xa0\xaf\x09\x88\x17\x50\xae\xc8\x44\x1e\x8c\x95\x7f\x1c\xab\x77\xf3\x4f\x8d\xb5\x99\xd2\xd4\xa8\x65\x61\xa1\x9d\x0f\xac\xf9\xeb\xa4\x84\x95\x59\xa4\xed\x66\x51\x4e\x48\x28\x01\x4d\x7b\x72\xc5\x55\x0a\xdc\x92\xe7\x37\xb4\xd4\x0a\xb3\x62\x67\xbc\x3f\x39\x5a\x6a\x0e\xd7\xbe\xb0\xe0\xee\xfd\x67\xf6\xf9\x6d\x96\xbe\x66\x81\x1a\xc1\x71\xf9\x8d\xb1\x2a\xd3\xbe\xa1\xec\x4a\x87\x11\x99\xd3\x63\xb3\x3a\xb4\xe3\xd2\x6e\x2e\x7a\x3e\x1d\x7b\xd5\x90\x9b\xae\xef\x91\x44\x89\x2d\xd6\x49\x3f\x08\xd1\x6d\x6b\x47\xd1\x30\x2e\xa9\x2a\xff\xf8\x58\xd9\xfc\x1c\x55\x1a\x0a\x02\x37\xe4\xfe\x00\xcf\xac\x03\x3d\xbf\xfe\x5c\x93\x6a\xca\x17\x66\xab\x0f\xa7\x35\xf1\x40\x24\x7e\x8b\x7e\x95\xaf\xe9\x43\x8b\x02\xa9\x6f\x23\xae\x99\x4c\xd8\xd4\xaf\x0a\x60\x5c\x9b\x30\x7d\x3a\x95\x74\x91\xe8\x4e\x46\x0a\x54\xd1\xaa\x56\x21\xba\xa8\x54\x88\xb4\x48\x6e\x2f\xcd\xf3\x88\xc4\xbd\x96\xa4\xdf\x0e\xf9\x19\xbe\x9e\x72\xd6\x9c\x9b\x6b\xe7\xe1\x60\xcd\x66\x11\xcb\x6f\x61\xfb\x4b\x39\xc1\xaf\x5c\x90\x1f\x9a\xa4\x67\x0a\xac\x0e\xb4\x3c\xae\x2b\x1b\x22\x70\x83\x70\x48\x6c\x99\x78\x70\xe4\xa8\xcc\xc2\x81\xc9\x19\xd9\xe5\x26\xe8\x2e\x69\xfa\x09\xd5\xe0\xa8\x29\x7e\x3a\xf6\xb8\xe2\x7f\xd9\x34\xb5\x79\xad\xec\xf5\x5d\xdb\x81\x9b\x9b\x0a\xf5\xf1\xd1\xb8\x26\x7a\x35\x30\x49\xdf\x3e\xa1\x9c\xb9\x98\x71\x5d\x83\x4a\x4a\xcc\xa0\x0d\x28\xa4\x23\x05\x3f\x79\x10\x28\x77\xf5\xd3\x08\xea\x38\x4b\xae\x2a\x3f\x1f\x1c\x77\xae\x23\xec\xcb\x0a\x88\x3c\x48\x62\x5d\x7d\x6d\xd7\x9c\xdf\xb3\x8f\x6f\xe3\x87\x74\x28\xa1\x0f\x78\x51\xb5\xe4\x96\x4b\xf2\xa2\xaf\xfe\x11\x59\xed\xf5\xb1\x47\xa6\x61\x88\x81\xc2\x6c\x63\x0a\x2c\x36\x37\xd7\xce\x4c\x82\xa6\x35\x46\x34\xd7\x02\x35\xf3\x3e\xa2\x91\xfe\xae\xff\x1c\xa7\x49\xdf\x66\xbb\x3c\x56\x6a\xfb\xc4\xb5\x0f\x1e\xfd\x19\x58\x01\xd1\x27\xfe\xfa\xcf\x75\x14\x34\x92\x67\x85\xa8\xdf\xee\x78\x66\xec\xfb\xcf\x52\x89\x88\x89\x2c\x3c\x69\xdc\x2e\xd5\x9a\xfe\xe3\xd9\x6e\x64\xf2\x5f\x40\x97\x06\x23\xae\x4f\x82\xd6\x81\x03\xa2\x5b\x1c\xcc\xbc\xfc\xcf\xbf\xca\xfd\x1f\x88\x0d\x3b\x93\xe6\xaf\x7d\xc5\x15\x87\xf4\x60\xb0\xbc\xfe\xc6\xc4\x3b\x56\x3e\x47\x96\x90\xf4\xc4\x5f\x78\x76\xd2\x9a\x9b\xe3\xc3\x71\x0b\xc2\x37\x1e\xcc\x55\x7a\x30\x92\x15\xd0\xd3\x43\xb2\xf4\x80\xca\x54\x91\x27\x6a\xfd\x33\x69\x26\xbe\x8b\xe5\x42\x5f\xf9\xd1\x9f\x9f\x38\xd3\x60\xfb\x14\xd8\xf0\xc8\x4a\xef\xe3\xb4\xa2\xb3\xe5\xef\xfe\x9d\x0e\x09\xb5\x62\x21\x5e\x27\xc2\x67\xbd\x79\x82\x00\x78\x0b\xd5\x2a\x3e\xe4\x8d\x71\xeb\xf9\xe7\x39\x12\x83\x9f\x49\x15\x52\xf4\xb7\x3a\xca\x30\x70\x17\x99\x57\xd6\xc6\xb6\x48\x01\x6f\x41\x19\x93\xce\x94\x93\xcf\x22\x5d\xc6\x69\xb9\x0b\x5d\x34\x14\xef\xdf\x52\x47\xe7\x13\xc0\xd8\x23\xf3\xde\x32\x69\xed\x7b\xc9\xb3\x43\xbd\xbc\x61\xd0\xfa\xaa\xd8\x06\x6c\x05\x94\x95\xa1\x79\x08\xb8\x28\x0b\x1e\x99\x6c\xfd\x02\x6f\xe5\x07\x4a\x82\xd0\xc6\xd1\x41\xd3\xb5\xc5\x40\x49\xb3\x5c\xd5\x47\xe1\x55\x85\x2c\x0f\x4d\x62\x7a\x91\x49\x38\x9f\x43\x97\xf7\x8f\xc7\x7e\x82\x04\xc1\x30\x51\x76\xf4\xa9\x99\x4d\x6c\xd6\x5f\xdf\x59\x7d\x66\xd7\x56\x50\xb3\x66\x3c\x17\x34\xe4\xbf\x8b\x47\x29\xe2\x46\x2d\xe7\x66\x7e\x41\x49\xbb\xde\x18\xab\x23\xfd\x3b\x1a\x09\x77\x6a\xfc\xb8\xca\x3e\xd3\x78\x7b\x6b\x7e\x7e\xe3\xb2\xe2\x7a\x7f\x17\x47\x3b\x9e\xf5\x61\x75\x3c\x41\x00\x73\xe3\x32\xfe\x34\xff\xb0\x02\x6e\x0c\xd3\x7c\x60\x33\x95\x7c\x1d\xd2\xc9\xd7\x21\x25\x95\x3a\x8c\x62\x0b\x30\x21\x82\xd1\x87\xf8\x41\x21\x9b\xd0\xdf\xc7\x5e\x3a\x3c\xd6\xfa\x0c\x27\x11\x0e\xf9\x97\x54\xdf\x2d\xb3\x26\x4f\x13\xd0\xc3\xab\xe5\x2c\xde\x9c\xd5\x87\x87\x79\xce\x86\x26\xfd\x5d\x53\x85\xf9\xc8\xf4\xad\xa9\x02\xb4\xdb\x8d\xdf\x0c\xd4\xd6\xfc\xa6\x9a\x01\x8d\x4c\x0e\x46\xb1\xf7\x44\x55\xac\xc0\x4b\xaa\x16\x0d\x33\x53\x9d\x80\x5e\x6c\x56\x8b\xd0\x06\xbe\x71\x6c\xb2\x10\x6d\x49\x84\xc5\x9b\x5a\xe7\x94\x5b\x1c\x28\x1e\x8f\x4e\xf5\x4e\x9e\x7f\xbe\x1d\xdb\x28\x2f\x33\xab\x30\x82\x5b\x3b\x0a\x23\x38\x4d\xae\x7c\xa1\xbd\x1c\xa7\x6b\x42\xbb\x62\x9d\x59\xba\x49\xa2\x39\xdb\xa0\x99\x1d\xdb\x55\x1b\xbb\x1c\xd4\x99\xfa\x78\xa0\xd2\xbf\x54\xa5\xfb\xc3\xa9\xee\x2b\xc1\x5e\xec\x88\xce\x78\xe6\x4e\x29\x95\xef\xe3\x8d\x25\x4d\x3f\x4b\xd7\x5c\x9d\xc0\x26\x9b\xea\x63\x5e\x08\xb4\x86\x45\x3a\xca\x67\x7c\x8d\xf4\x40\xb1\xce\x2f\x28\x59\xd7\x0b\x6a\xd9\xaf\x45\xc5\xe0\xf3\xb5\x9e\x9f\x27\xf9\x41\x2b\x57\x4c\xf1\x95\xa0\xee\x4e\x98\xfb\x62\xf8\xd6\xea\x38\x89\xd5\x6b\x77\xd0\xc6\x41\x6c\xfb\xd7\xb4\x91\xd0\x16\x3a\x3a\x56\x56\xd5\x7f\x46\x25\xc2\x46\x2d\x90\x5d\xa1\x23\x15\x3d\xbb\x23\xd8\x02\x38\x90\x2f\x8d\x6b\xa2\x2b\x55\xe8\x74\xe2\xd5\x7b\x1d\x97\x6f\xac\x5d\xd8\xbe\x57\x83\x59\x6a\x81\xf4\xd3\xca\x12\xe3\x1a\xd2\x7e\x14\x0f\x0f\x54\xb5\xfe\x21\x86\xc2\xaa\xa5\xf9\xb2\xa3\xf1\x3f\xa5\x68\x16\x99\x89\x7b\xe2\x38\xe9\x7c\x08\xbc\x02\xca\xf1\x06\xd9\xc3\x17\xdb\x59\xd4\xa3\x3d\x83\xfe\x1e\xf0\xd0\x7c\xad\x6a\x16\x72\x4c\x82\x6d\xfc\x92\x2c\xe1\x9b\xb4\x6f\x44\x60\x4f\x8e\xfd\x22\x8b\xc2\x15\xce\x85\x1d\xf7\x51\x29\x57\x6b\xe4\x2a\xf1\x7c\xc0\xde\x10\x14\x07\xdd\x4f\x81\x77\x48\x69\x1b\x9a\x22\xf4\xfc\x35\x34\x1b\x2e\x28\x5b\xa8\x0b\x5a\x88\x62\x94\xba\xa9\x31\x9a\xdd\x77\xd1\x7d\xe0\x17\x8a\x24\x93\xd9\xaf\x97\x51\x16\x25\x7d\x52\x19\x63\xc5\xfa\xc0\x53\x06\x6e\x8e\x55\x43\xf0\x28\x62\x3e\xbf\x08\x7c\x51\xc3\xc5\x2e\xe2\xe3\x0d\xe5\xc4\xb8\x66\xe3\x78\xa7\x72\x03\xf8\xd1\x58\x3d\x78\x58\xe8\x21\x58\x6e\x21\xf5\x31\x9c\x3b\x3b\x48\x4c\x06\x1d\xae\x3f\x1d\xfb\x77\x01\x2c\xd3\xa9\x55\x78\x72\xf7\xb3\x13\xcf\xb5\x8a\x12\x38\xdb\xb3\x59\xdc\xab\x7e\xc9\x54\x9b\x80\x5f\x34\x79\xc3\x57\x7b\xda\x99\x0f\xb8\xe8\xe9\x6a\xff\x4b\x1e\xcc\x1b\x85\x40\x91\xb2\x2f\xc8\x58\xcd\x44\x41\xf8\x44\x93\x66\x5b\xc7\xa3\xf1\x2f\x29\x33\xbb\xc4\xae\xe5\xa3\x2c\x82\xfa\xfe\xcb\x5e\x31\xca\x0d\x06\x2f\x29\x15\xbb\xcc\x24\x2b\xc0\x3a\x21\x2d\x3b\x89\x3b\xcd\x2f\x14\x48\x8d\x18\x03\xb3\x4a\xed\xfe\x12\x0e\x55\x1c\xbd\x57\x94\xc9\x01\x38\x5c\xfc\xff\xc7\x9f\x53\x54\xb9\xc2\x66\x43\x52\x25\x65\x55\x3f\x3c\xcf\x73\x8a\xec\xf7\xe7\x8a\xab\x7b\xb1\xd6\xe9\x8d\x8b\xd5\x59\xe5\xf4\xc0\x58\x21\x6d\xd2\x8a\x30\x75\x42\x1b\xc0\x9e\x98\x4a\xb3\x97\x76\x57\xdf\x44\xf5\x8a\xb6\x00\x1e\xcd\x2f\xa6\xa8\xba\x5f\x6c\x0f\xa0\xaa\xc0\x03\x2d\x9c\x53\xbc\xe7\x31\xdd\xfa\x5e\xa0\x49\x8f\x1f\xab\xe6\x56\x94\x84\x65\xe6\xba\xb7\x00\xfe\xfd\x2b\x65\xac\xf2\xaf\xd4\xdd\xc9\xcb\x6e\x98\x0e\x87\x51\x51\x58\x3b\xab\x14\x4c\xd9\x0a\x53\xc0\x67\x7a\x6e\x74\x51\xe9\x40\x5c\x52\xd2\x58\x61\x3a\x1c\x95\x85\xcd\x08\x37\xec\xd1\x1c\x17\x91\x37\xf1\x8b\x66\xe9\xf1\xcc\xf6\xa2\xb0\xa0\xf1\x96\x13\x02\xdb\xbf\xdb\xd9\x97\x2b\xa0\xef\x3d\x35\xc7\x14\x1b\x43\xa8\x78\xe1\x49\x72\xf5\x82\x15\xf7\x8e\xb2\x67\xbb\xe8\xfb\xc8\x49\x31\xc8\xcc\xeb\xb8\xb1\x38\x8a\x40\x43\xc1\x2f\x11\x71\x9f\x7f\xa9\x35\xf9\x2c\x75\xdc\xd7\xd2\x41\x92\x17\x02\x9f\xd1\xbc\x10\x94\x6a\xbf\xa1\x9d\x68\x2f\x37\x9d\xef\xf9\x4a\x94\x0d\xc9\x4b\xcc\x75\xf6\x51\x85\xf3\xb5\xb3\xc8\xa2\xbd\x32\xab\x60\xf6\x9c\xbc\xe3\xe4\x3b\x1f\x28\x62\xd0\x61\xb5\x4f\xb7\x4f\x24\x72\x46\xfd\x04\x86\xe5\xf4\x20\xb4\x6f\x91\xe8\xc2\x7d\xde\x3d\x44\xfb\x7a\x91\x19\xd0\x71\xb3\x88\x6d\x48\x10\x5e\x4f\x63\x8b\x22\x7e\x5e\xaf\x21\xe3\x3c\xb4\x6d\xd9\xac\xd8\x56\x55\x6d\xb1\x23\x52\xe0\x5b\x0c\xfe\x01\x0c\xa3\xdc\x66\x2c\x2c\x87\xb0\x77\x42\x99\xf6\x9f\x08\x74\x3f\x8d\xf4\x03\xd8\xae\xa5\xc9\x3c\x49\x50\x45\xbd\x28\x1f\xc5\x66\xdd\x7d\x4b\x2e\xa4\x83\xda\xb8\x6a\x1a\x97\xb6\x07\xb0\x4b\x8b\x83\x12\x37\xee\xfb\x58\xfa\xfc\xa2\x81\x44\xbe\x58\x5d\xc4\xbd\x59\x25\xeb\xca\x47\x88\xd6\xbe\x42\x4a\xc1\x13\x3e\xe1\x06\x3a\x12\x9b\xe9\xc6\x69\xd4\xdb\xe6\x11\x2c\xec\x25\x2e\xce\x62\x1e\xc9\xd0\xea\x78\x85\xb8\xdb\x54\x7f\xca\xcf\x34\xf0\x54\xab\xbd\x9c\xf6\xa2\x82\x19\xde\x10\xc9\xba\xa7\x04\xb3\xee\xd5\xa2\xdb\x00\x3a\x3d\x1b\xef\xd3\x6a\xdd\x78\xbf\x89\xaf\x32\x4a\xb3\xb4\x44\xac\x96\x6e\x55\xcb\x7b\xe7\x28\x05\xca\x65\x53\x73\xaa\xdb\x50\x4e\x75\x1b\x1a\xea\x54\x94\xbd\xc8\xe6\xb3\x7e\x48\x7b\x18\xf5\x27\xbf\xc0\x32\x43\x67\xfb\xb0\x62\x3c\x1c\xd6\x00\x74\x6b\xc2\x01\x2c\xde\x11\x2f\x78\xce\xcb\x2f\x26\x9b\xc7\xfb\xae\xe7\xd8\xed\x46\xc8\xdb\x51\x78\xdf\x1d\x2b\x05\xa4\xbb\x81\x17\x9c\x1e\xd9\xa4\x97\xeb\xb8\xc2\x6e\xc7\xd8\x9b\xc0\x23\xca\x54\x6b\x73\xec\x7e\x01\xf6\x5c\x82\x7d\x56\x5e\xef\x22\xee\x79\x58\x25\xd2\x26\x2e\xb8\x78\x63\xeb\x48\xe5\x54\xfa\xb6\x4a\xa9\x72\x6b\x8a\x22\x16\x2c\x3f\xfe\xfd\xa4\xd6\xf0\x98\x76\x89\xa3\x43\x27\x63\x1b\xf4\x3d\x02\x8d\xa6\x5b\x2a\x30\x69\x8f\x97\x25\x06\x91\x72\x2c\x46\x30\x13\x7a\xb4\x17\x11\x48\x57\x6d\xd6\x25\xea\x3c\x4d\x23\xd0\x1a\xfa\x63\x5a\xf1\xca\x44\xd9\xfb\xbf\xea\xcd\x9c\xf4\xa2\x42\x0a\xb9\x26\x93\x26\x49\x45\x46\x51\xb8\x02\x5e\x11\x8a\x48\x9c\x06\x88\x77\xb7\x55\xb5\x7d\x46\x39\xd5\xb3\xcb\x97\x70\x38\x7c\x6f\x20\x1f\x65\x66\xcd\x79\x67\xb2\x24\x1a\xfd\xa2\xc8\xa3\xf9\x6c\x83\x74\xaf\xe8\xe7\x34\x98\x4d\x50\x6e\x5a\x1c\x34\xb6\xc4\x7c\xaf\xee\xad\x02\x0d\x28\x29\xf6\xa3\x4d\x78\xb7\xd7\xca\x61\x37\x9d\x51\x64\xea\x33\xaa\xeb\xb7\x4d\x4d\x3d\x37\x1a\x7d\x02\x7a\x99\x61\x46\x34\xd2\xfe\xc3\x81\xe7\x1a\x1c\x56\x60\x6f\x76\xb6\xcc\x5a\x1e\xa9\x74\xa9\x76\x9e\x4f\x91\x24\x5e\x68\xc7\xe9\x5a\xcb\x23\x41\xb7\x2a\x95\xf3\xad\x93\x86\x40\xd3\x35\xe1\x4a\xd7\x26\xac\xc5\x85\xf2\xfe\x94\xe2\xed\x9d\xf2\xa1\x2e\x33\xcb\xcb\x51\x48\x27\x09\x44\x07\x30\x73\x96\x3e\x9d\x32\xc2\x9a\xd6\xae\x5e\x58\x68\x87\x03\x25\x2e\xc8\xae\x3d\x63\x3f\x7e\xf9\xa4\xd1\xc9\x7f\x64\xf2\x62\x87\x87\x99\x61\xa0\xcc\x16\x5a\xb8\x13\x32\xab\xa6\xaa\x44\x19\xc5\x2d\xfa\xc2\xd7\xb9\x48\x1f\x56\xce\x26\x5b\x3b\x8f\xb9\x01\xc3\xeb\xbc\x96\x55\xc6\xec\x6d\xf5\x1e\xd7\xd8\xbd\xde\xae\x96\x33\xbf\xe4\x13\x5b\xcc\xfd\xab\x38\x88\x93\xef\x0e\x95\x1e\xb5\x8a\x42\xf4\xba\x7c\xcb\xfc\x37\x28\xcd\xe5\x5f\xd0\x32\xcb\xdf\xe4\x24\x4d\xd4\x32\x6b\x30\xa0\x51\x0e\x28\x3c\x26\x21\xb8\x1d\x88\x7a\xb7\x03\x05\xf6\xb9\xa3\x7c\x5f\x3f\xae\x8b\x84\x29\x65\x99\xab\x63\x1d\x84\xde\x6e\x82\x32\xaf\x59\x56\xeb\x12\x84\xd1\xcf\x5c\xc1\x83\xe6\x17\x6a\xb1\x8e\xe2\xb4\x70\xfa\x64\x62\xc3\xa8\x74\xc4\xef\xfb\xe1\xb1\x49\x42\x1b\x73\x58\x06\xc9\xf6\x3c\x2a\x6e\x36\x70\xc2\x21\x2c\x6c\x16\x05\x78\x2b\xb3\xa4\x8a\x5b\x33\xb4\x57\x35\x6a\x8e\x3d\xd1\xf1\x7e\x2c\x5a\x3f\xf6\xc1\x6e\xc5\x66\xe1\x20\xb2\xcb\x9c\x1f\x34\x79\x14\xfa\x08\x1d\x25\x79\x19\x47\x6c\xf4\x88\x46\xe7\x11\xac\x35\x7e\xd1\xe8\xe6\x04\x05\x17\xc7\x77\xc4\x01\xc1\x7a\x6e\xfc\x42\x45\xdf\x51\x66\x57\x21\xcb\xbb\x9d\xce\x6d\xe4\x37\xce\x1f\xc3\x63\xa8\x2e\xaa\xa2\x12\x9c\x90\xda\x60\x56\x10\xb6\xd3\x8c\xdc\x25\x10\x85\xa1\x11\xf3\xb2\xaf\x74\x1c\x12\x66\x5a\xbb\x66\xcf\x3e\x19\xf9\xb4\x34\x30\xc2\x47\xf9\x3b\x9e\x31\x65\x42\x1b\x13\xcf\x85\xfe\xba\xb8\xa7\xb5\x1c\xe1\xef\x9c\x9a\xe5\x1b\xf3\xcb\xcc\x4c\x17\xab\xad\xea\x4f\xa2\xcf\xcc\x9e\x54\xc8\x19\xee\x37\xe8\xa8\x85\x69\xb2\xac\x50\xe6\x4e\x8f\xa8\xba\xc9\x42\xb5\xf5\x8d\xc3\x81\x4d\xb2\xf5\xed\x2a\x67\x62\xfd\x75\x51\xab\x51\xaa\xd4\xb8\xb3\xfc\x53\x63\x25\x83\x76\x36\xd0\x53\x42\x35\x9e\xc9\x07\x74\xac\x28\x30\xe2\x3b\x58\x17\x42\x62\xf6\x07\x8b\x5d\x5e\xc6\x18\x4f\x04\x5a\x19\x3f\xa6\xf3\xd8\xb3\x0a\x3e\xe5\x45\x2b\xc5\x6b\x5b\x39\x22\x5f\xac\xb9\xf4\x58\x28\xef\x3b\x33\x3f\x7d\xbe\x2b\x4a\xd2\xb9\xa0\xa6\x8b\xe2\xc1\xe6\xcf\xe7\x7f\x8b\x7e\x1d\x55\xf2\x21\x25\x4b\x3d\xdb\x69\xbd\xe2\x58\xb2\x81\x6f\xe8\x9e\x03\x5a\x10\xcf\x68\x86\xd1\xb5\x0e\x45\xaf\xd4\xdc\xf1\xed\x10\x1a\x76\x4d\x68\x15\x0b\xe7\xb6\xfa\x6e\x0f\x27\x6a\x9a\x45\x2a\x18\x1b\xa7\x03\xc5\x85\x9b\xa1\xde\x21\xce\x96\x8f\x09\x2a\x2f\x16\x85\xca\x59\xee\x18\x6d\x02\x2c\xb2\x87\x63\x8d\xad\x3a\x42\x83\x45\x34\x05\xc6\xb4\xd0\x31\x32\xfd\x29\x7a\x73\x68\x88\xff\x31\xc2\x24\xfb\x2e\x50\xeb\x71\xe3\xb2\x76\x0f\xfa\x13\xed\x29\x70\x88\x22\x39\xfe\xe1\x0c\x35\x15\xa5\x43\x43\xc7\x0d\x9a\x70\x0f\x9a\x5c\x51\x97\xd3\x38\x56\x4d\x58\xf7\xac\xd4\xf3\xd9\xdc\xea\x23\xd1\x42\xe1\xc5\x3b\x3d\x9b\x25\x9f\xc8\x49\xfc\xec\xa6\xc9\x32\x59\x1b\x78\x06\x29\x9e\x3c\xa2\x20\x6f\x29\x9c\x04\x37\xd4\xbc\x38\x2f\xb3\x55\xbb\x6e\x7b\x84\x60\x61\xaf\x77\x0c\x3b\x6b\x66\x0d\xce\x05\xde\x8b\x62\x4c\x9d\xcd\x7b\xf6\xb5\x57\x6d\xc6\x32\x1f\xd2\x5b\xad\xa9\x64\x6d\x86\x64\x10\x87\xbf\x1b\xa7\x69\x2f\x2f\x32\x6b\x86\x2d\x35\x3f\x55\x16\xf5\x3a\x95\xe5\x00\xa3\xa4\x5c\xf1\x16\x42\x94\xf5\x3b\x33\x4e\x4d\x4f\x44\xa7\x9c\xfa\xae\x1b\x72\x69\x49\xd4\xa2\xcc\xba\x6c\xd1\xef\xca\x50\x5f\x92\x4e\x9e\x93\xde\x42\x88\x0a\xcc\x38\xd8\x8c\x72\xaf\x74\x56\x96\xaa\x87\x91\x17\x59\x9a\xf4\xe3\xf5\x6d\xb4\xbc\x44\x41\xa1\x7a\x7a\xe8\x4c\xdc\x51\xf3\xe2\x53\xe8\x0f\x6b\x2d\x06\x9c\x65\xe7\xf4\x08\x84\x4c\xd1\x68\xe3\x01\x75\x7c\x5e\xe9\xd3\x9d\x9f\x5a\x72\x7b\xc1\xfa\xee\x65\x66\x2d\xa9\x39\x82\x2a\xea\xc4\x9b\x4d\xf8\x8f\x28\x33\x5f\xa7\xfc\x12\xdb\x8b\x13\x04\x7e\xa1\x1a\x78\xa1\xc9\xed\x3a\x4d\x79\xb4\xcb\x87\xdc\x08\x65\xc6\x1b\xad\xda\x1d\xba\x7f\x52\xfd\x0a\xea\x39\x3e\x0d\x25\x77\x6d\x39\x57\x01\x6e\x52\xc9\x58\x4f\xbb\xb7\x61\x49\xf2\xef\xbb\x0e\x76\x9a\xf5\x2c\x4b\x41\xa0\x02\xfa\x86\xaa\x86\xbe\xb1\x19\xcc\x51\x25\x92\xf3\xf3\x4b\x8f\xd4\xe6\x7e\x4a\x47\xe0\xfb\x48\x3e\xb0\x61\xfe\x9c\xb6\xbc\x90\xf3\x3d\xc5\xe0\x8a\x92\x0d\x87\x83\xe6\xc6\x69\x24\x9d\x32\x63\xf4\x65\xd4\x6f\x07\xde\xf7\xeb\xb8\x9a\x85\x96\x49\xcf\x2e\x47\x89\x84\x7a\xd4\x2d\x7f\xa0\xe5\x52\xfe\x60\xbc\xb9\xe3\x58\x55\xee\x46\x46\x06\x6c\xf4\xa9\xcf\xfe\xf7\x1b\xf2\xe6\xc5\xb6\x35\x79\x81\xbe\x06\x32\xf2\x77\x39\x52\x4a\x85\x56\x7d\x2f\x34\x46\x58\xff\x03\xa0\x99\xdf\x71\x5d\x7a\xa8\x53\x89\x7c\x14\x92\x24\x16\xf2\xe1\x17\x53\x4b\x70\x6e\x4f\x7b\x68\xfb\x66\xcd\x14\x45\xcd\x4d\xec\x82\x72\x13\x6b\x62\xe6\x2d\xb6\x7b\xeb\x6c\x3f\x83\x49\xc5\x77\xb4\x52\xc7\x77\xb4\x90\x86\x89\xe3\x34\x4d\x50\x52\x3a\x88\x99\x92\xcd\xd4\x90\x87\x87\xb5\xf6\x46\x4d\xbf\x5a\xa4\x88\x69\x64\x32\xca\x22\x53\x58\x12\x91\x97\xd4\xaa\xe5\xfc\x51\x1e\x9d\x78\x04\x10\xbb\x6a\x3b\x46\x9e\x53\xc7\xfb\x39\x25\x22\x90\x45\xab\x36\x9b\xad\x0e\x22\x9c\x1a\x5b\x26\xaa\x21\x7e\x56\xad\x79\xb0\xd7\xf9\x87\x3a\x4d\x66\xc5\x03\x93\xf5\x6c\xb6\x8d\xd6\x18\x92\xa5\xcb\xca\x18\x07\x03\x3d\xa0\x00\x40\x1b\x64\x9f\x70\x4c\xcd\xb0\xc9\xee\x34\x15\xaf\xb9\xed\x19\xd6\xbe\xd3\x03\x48\xbe\x76\xcd\x93\xdc\x0c\x47\xb1\xe5\x2c\x1d\xe7\x00\x3b\xbf\x63\x62\x06\x6b\x3c\xd1\x2d\x7b\x7a\xd3\xc8\xc6\x6a\xcf\xa6\x7b\xca\xd0\xf1\x5e\x93\x8c\xb0\xe9\x11\x34\xcc\x39\x0b\xb3\x7f\x56\xd0\x52\x5e\x5a\xd3\x3e\x6a\xa2\xf2\x2c\xb3\x55\x3d\x1e\x65\x5e\x29\x3d\x25\xb4\xbb\xbf\xa3\x0a\x89\x6e\x06\xcb\xf2\x19\x65\x9c\xa5\xa4\x6f\x60\xc5\x26\x6a\x65\x7e\xf0\xb9\x6c\x63\x9a\xf7\x33\xd4\x64\x86\x54\x42\x11\x1e\xee\x28\x9c\x0a\x06\x47\xc0\x90\x3c\xd3\xa9\x99\x6d\x29\xae\xc3\xb4\x63\xf8\xe2\x4b\x55\xc1\xbb\x2a\x92\xc1\x68\xea\xe2\x2b\x00\x6b\xc6\x38\x49\xf4\xb7\xbf\xdf\xe4\x2e\xd6\x5b\x8b\x92\x9e\x73\x46\x41\x61\x77\x17\x8b\x9f\x5f\x4c\x79\x84\x48\x4f\x2d\x1d\x59\x58\x95\xf3\x9a\x0a\xbc\xf8\xd0\xb4\x5a\xeb\xdc\x5c\xbb\xc8\x4c\x92\x2f\xdb\x6c\xb6\xa6\xb5\xee\xa9\xdf\x2d\x3d\x19\x61\xd3\x07\x61\x58\x0a\xb3\x6c\x64\xb2\x22\x0a\xa3\x91\x49\x00\xe1\x65\x74\xc4\x1e\x49\xc9\x10\x34\x1e\xaa\x99\xc8\x72\x0a\x41\x39\xc4\x00\x1c\x12\x4c\x59\x47\x85\xfb\xe3\xc0\x77\x3f\xb0\xee\xf8\xff\x8f\x6b\x80\xfe\xcf\xea\x2c\x16\x69\xcf\x90\x6e\xfb\x42\xad\x7f\xe6\xa6\x5b\xba\x3b\x4c\x91\x07\xc7\x7b\xcb\x3f\xf2\xe7\x40\x50\x47\xf4\xfa\x7c\xc7\x47\x2f\x13\x12\xb3\x78\x9b\xbf\xaf\xb0\x58\xe7\xeb\x40\xe1\xd6\xee\x22\xd4\x08\xf4\xc2\xc3\x76\x7f\xa8\x56\xe3\x90\x0a\x35\x17\x9e\x40\x4c\xe0\xeb\xa6\x07\x96\x96\x45\xee\x4d\xad\xb9\xf9\x1c\xe8\x46\xf4\x13\x4a\xd8\xa2\x94\x1f\x54\x4c\x43\x47\x3b\x9c\x52\x80\xdd\xbf\x7b\xb1\x9d\x97\xfd\xbe\xcd\x8b\xa9\xd6\xbd\xc6\xc3\xf9\x32\xc4\xf6\xfe\x3a\x74\xab\x17\x05\x34\x71\x64\x13\x2f\x7c\x8e\x88\x0b\x7d\x3f\xbe\x9e\x3a\x52\xf6\xef\x7e\xb1\x6d\x8a\x74\x44\x83\x70\xa4\x0e\xc7\x95\x73\xf1\x71\x35\x5f\x1e\x9a\x70\xc5\x26\x07\xb9\x99\xec\x5c\x4c\xaa\x27\xc1\x2f\x6a\x7d\x76\xb3\xbc\xbc\x9d\x6e\x8a\x14\xbc\xb4\x1e\xa4\x53\x53\xad\x7d\xc4\xc6\x93\x81\x47\xce\xb2\x66\x98\x33\x3f\xf1\x1a\x05\xd3\x25\xc0\xfc\x7c\xbb\x67\xc3\x2f\xce\x6c\xfd\x82\xa3\x09\x55\x7f\x08\xe5\x51\xcd\x16\xc9\x4f\xf3\xbb\xa6\x30\x9c\xd1\xa2\x16\x78\x43\x77\x93\xde\x68\xe0\xba\xb5\xbb\x69\x9a\x17\xd2\x4e\x96\xa1\x2e\x7d\x30\x99\xf6\x3e\xa3\x58\x8b\x79\x54\x3d\x82\x62\x96\x76\x30\x26\x57\x1f\xe0\xa7\x95\xe1\xce\x1e\xaf\x0a\x58\x85\x38\xfe\x31\x45\xbb\xed\x65\xeb\x82\x4d\x40\x03\xec\xdb\xb4\xf4\xf8\x7a\xfc\x9c\x9a\x5c\x99\x7e\xdf\x66\x46\x86\x39\x22\xaa\x5c\xdb\x7a\x0d\xfd\x45\x93\x93\x10\x0b\xbd\x83\x6b\xe3\x3a\xb6\xd6\xd1\x69\x4f\x81\x97\x5e\x6e\x2f\x9b\x30\x8f\x86\x51\x6c\x55\xf7\xb3\xae\x5a\xe6\x23\x4f\x62\xfa\x66\xdd\x0c\x0d\x4d\x37\x99\x1c\x1a\xd4\x6e\x83\xe7\x7b\xbc\x57\x5b\x35\x59\x6c\x30\xc6\x61\x5a\x13\x0f\x7c\x85\xe4\xe4\x85\xd1\x46\x69\x56\xd8\x6c\xc6\x2f\x45\x30\x97\xa4\xa4\xf2\x3d\xbd\xdf\x55\x44\x7e\xd3\xcd\xd3\xac\xbb\xcb\x0f\x69\xfe\x03\xd6\x2f\x6a\xf2\xf7\x03\xd5\xf2\xb8\xae\x7d\x09\x3e\xa1\xf5\x8a\x78\xf1\x9e\x12\x3c\xff\x73\xec\x74\xfe\x87\xc0\xd7\xd1\x87\x02\x95\x50\x9e\x77\x02\x6a\x51\xf2\x5a\x99\x84\x34\x0f\xa0\x5f\x64\x09\x6b\x25\x08\x78\x4a\x41\x60\x86\x65\xbc\x9c\x66\x3c\xd2\x46\xbe\x7e\x4a\x81\x4f\x4e\xb9\x39\xd4\x30\xea\xf5\x62\xbb\x8d\x9e\x3a\x0e\xf3\x1b\x3a\xb3\xb9\xa4\x92\xb4\x0b\x1a\x6f\x7e\x4e\x79\x09\xb7\x3a\xbe\x23\x03\xf3\x81\x2c\xb1\x59\x3e\xab\x79\x4d\xf4\xab\x38\xf6\x67\xd9\x26\x1f\x19\xc7\x75\xac\x38\xf4\x27\xdf\x1f\x6f\xf2\xbe\x23\xdb\x96\x7c\x9b\x9f\x5b\xfc\x11\x3e\x04\x90\xf6\xec\x58\x23\xee\x6e\x2d\xe7\x20\x78\xa7\x66\xfb\xf6\x99\x67\x71\x62\x5f\x2f\xb6\x79\x60\x7c\x8b\x6a\x54\x47\x90\x73\xe4\x11\xee\xc5\x62\x0f\xed\x98\x78\x09\xe0\x23\x81\x96\x18\xce\x89\x13\xc5\xe1\x16\x3b\xfc\x0e\x7e\x93\x5f\x34\x18\x9d\xb4\xf3\xd0\x64\x21\x06\x49\x82\xa5\x6e\x39\xf3\xc8\xe3\xda\x77\xb3\x30\x85\xcd\x1f\xa5\xbf\xe7\x3c\xf5\x96\x16\xf9\x0b\x7f\x8b\x1e\x07\x56\xd6\x4f\x54\x9e\x79\x41\x4f\x97\xce\xa2\x00\x43\x09\x34\xdb\xa1\x76\x8d\x50\xae\xbd\xb1\xef\x1f\x50\x0c\x77\x99\x94\xa7\x85\x9f\xd1\xb8\x9f\xb7\x35\xf9\x2d\x31\x2b\x3c\x73\x16\x01\x59\x3f\xfe\x9c\x8e\xbe\x55\xd2\x4d\x1a\xa7\x4e\xd4\xf3\xfb\x8a\xd4\xf4\xfd\x26\xb2\xb1\x59\x5e\x8e\x7a\x66\x95\x2c\x4a\xf7\xec\x73\xc6\x11\x0a\x92\x70\xc1\x99\x0b\x87\xd1\x6a\x14\x6a\x51\x10\x7c\x1a\xbe\x56\x87\x52\x94\x84\x71\x59\x25\x39\x8f\x29\xb3\x5f\xf2\x2a\xda\xb8\xa9\x5b\x6c\x90\x65\x43\x13\x6a\xa6\xa3\x80\x05\xa2\x41\x8b\xc9\xc0\x22\x3d\x02\x9c\xdc\x57\xb0\xfe\x04\xdf\x47\x1b\x8a\xef\x6e\xa0\x20\xb7\xe7\xf1\x0d\xf0\xfb\x1c\x35\x3e\x3b\xeb\x5c\x6c\xe7\x23\x6b\x56\xaa\x54\xb0\xfa\x41\xae\x43\x38\xca\x49\x55\x52\xdd\x48\xd5\xeb\xdf\x23\x2f\xd4\x34\x78\x94\xa5\xaf\x43\xfa\x17\xfb\xf1\xa2\x92\xa0\xb8\xb8\x59\xb9\x75\x71\x69\xb1\xfd\xca\xe2\x8e\xd6\x57\xf7\xd4\x9a\x9f\xe8\xe7\x1e\xd3\x86\xaa\x6c\xff\x84\x9f\x82\x70\x07\x5b\x14\x05\x7e\x1c\xc4\xe6\xae\x02\x1d\x6d\xa8\x6d\xd1\xe1\x71\x0e\xed\x2c\x69\xa5\xd8\xe8\x27\x54\xf7\x86\x9c\x77\x66\xf5\x91\xa5\x19\xd7\x20\x96\xbb\x6a\x53\x4d\x51\xa7\x47\xbf\x4b\x6d\x53\x65\xc9\x0a\xff\x79\x5e\xe1\x3f\xcf\x2b\x96\x4b\x6c\x5f\x8f\x92\x7e\xc1\xb3\x2c\x14\xf4\x27\x75\x75\x7f\xb2\x51\xd5\xd7\xf6\xfb\x33\xaa\x61\x8e\x3e\x07\xf2\x9b\x9d\x0a\xa2\xd1\x34\xc9\x5c\x6c\x0f\xc9\x7a\xca\x41\x41\xd9\x2a\x8d\x5f\x34\x9d\xd2\xb1\xa5\xf4\x1d\x05\x1b\x76\x2c\x24\xb7\x25\x62\xd3\x63\xf0\x36\x54\x1e\x29\x90\x98\xa4\x98\x51\x72\x35\xf7\x02\x6d\x2f\x42\x7f\x43\x68\x4e\x4f\x2a\x91\xed\x2c\xe1\xb1\x3c\x3a\xb7\xb0\x52\xe1\xeb\x89\x9f\x6d\xa6\x85\x13\x5c\x92\xf1\x40\x6d\x70\xb0\xb9\x9d\xe9\x90\x08\x21\x7c\x01\x5b\x5e\x39\xef\xb8\x76\x6f\x38\x3e\x15\x5b\xf7\xbd\xd4\x1e\x95\x09\x01\x86\xf6\xef\xe6\x22\xf3\x76\xe0\x0b\xce\xdb\x6a\x3e\x9d\x8f\x6c\x18\x91\xb1\x29\xcc\x50\x34\x70\x4b\xf0\x5d\x1e\x7d\x73\x66\xec\x47\x8a\x67\x14\xaa\xde\x94\x79\x91\x99\x38\x32\x48\xe8\x65\xbf\x7b\x86\xe2\x74\xd7\xe9\x85\xf6\x20\x65\x4f\x4e\x20\x07\x7f\x30\x56\xf2\x0f\x3f\x50\x05\xd9\x28\x4b\x47\x36\x8b\xd7\x09\x3f\x85\x25\xf4\x50\x69\xd8\x7e\xa2\x84\x48\x66\x1a\x00\xd5\x36\x1c\xa4\xb6\x66\x76\xc3\xcc\x71\xec\xc4\x7b\xc8\x39\xe4\x9c\x9f\x1e\x73\xbd\xdc\xfe\xbb\x7b\xf6\xbe\xb8\x77\xdf\xcb\x08\xac\xf8\xc1\x3f\x27\xa2\x3d\x5f\xeb\x36\xb1\xe9\x45\x36\x87\xc4\x83\xb4\x44\xab\x87\x00\x1a\xde\x49\x24\x3e\x38\x4d\xa7\xa7\x63\x4b\xe0\x52\xf6\x4a\xd0\x37\x9d\x3b\xcc\x92\x8c\xe6\x59\x4d\x4e\xbc\x9e\xd5\xdb\x46\xe4\x61\x4d\x7f\xdd\x89\x55\x2d\xed\x96\xeb\xa9\x2c\x60\xef\x42\xbb\x88\x4c\x62\x92\xa1\x65\x9e\x16\x23\x32\xe8\x6b\x09\x3a\xa3\x61\x08\x19\xda\x24\x4f\xb3\x7c\x10\x8d\x5a\x9e\xac\xf6\x2d\x45\x56\xfb\x96\xda\x1a\x64\xf7\x9b\x13\xc3\xcd\xb9\xf7\x3a\x90\xf1\x7b\x0a\x64\xfc\x1e\x2d\x2b\x79\x38\xcf\x6a\x3d\x13\xb1\xa4\xa2\xd8\xe6\x34\xe6\xab\xdb\x2b\x1a\xf3\xd3\x70\xf6\x97\x09\x41\x49\x37\x03\xf7\xed\x58\xe0\xe1\x0d\xc7\x14\x97\x3b\xac\x6e\x81\x35\x2d\xa5\x0b\x0d\xfe\x19\x5f\x8f\xb5\x48\x61\x3e\x2a\x0b\xe7\x21\x82\xe5\xf6\x6d\xad\x30\xf8\xed\x26\x43\xf9\x38\x1a\x76\xa9\x05\xe4\xec\x16\x17\xea\x66\x25\xec\x60\xae\xa6\xdc\x26\xeb\x97\x43\x9b\x70\x73\x55\xb8\x8a\xaa\x0c\xfc\x88\xfe\x88\xf8\x59\xf8\xa8\xfd\x57\x4e\xb4\xad\x48\xd9\x84\xcf\x19\x25\x7f\xed\x2b\x1c\xa1\x2f\xaa\x8a\xe5\xaa\xd3\xfe\xcc\x63\x0b\x4c\x87\x86\xab\xca\x10\xf7\x69\x5f\x3d\x30\xf1\x6e\x5b\x2d\xda\xed\xdf\xcd\x79\xd5\x13\x93\xad\x5f\xe0\x9b\x01\x76\xb2\x04\x41\x65\x50\xfd\x74\xc7\xb3\x35\xba\x34\x29\x59\x99\xad\xe3\x35\x9c\xd7\xdd\x35\xd5\x5b\xb9\xa5\x2d\x41\x4e\x4e\x55\x5a\x07\x0e\xb4\x87\x26\x31\x4a\x40\x88\x8f\x9a\xa0\x76\xee\x48\xe6\x6f\x57\x6d\xe2\xd2\x55\xe4\x9b\x37\xf5\x1c\xfd\xa6\x73\x9e\x23\x90\xa3\x60\x91\xbc\x11\x7d\xe0\x15\x08\x8e\x29\x80\x7c\xbe\x62\x47\x45\x14\x9a\x78\xd6\x3b\x2a\x03\x3e\xe9\x2c\x8d\xf6\x0b\x04\x94\xb1\xaa\xfc\x62\x0a\x66\xb3\x67\x5f\xbb\x1c\x11\xe3\x56\xe6\xfc\x5e\x8e\x11\xae\xf3\x42\xf2\x6c\x92\xec\x20\x56\x72\xcd\xe9\xf6\xbd\xff\x97\xb0\x77\x0d\x92\x23\xcb\xce\xc3\x80\xea\x6e\x60\x00\xcc\xce\x7b\x76\x45\xca\x8f\x92\x4c\x7b\xe4\xd0\x7a\x68\xca\x0e\x87\xc5\x3f\x59\x42\xf7\xee\x12\x08\x6e\x4f\x47\xa3\x39\xb3\x9a\xa0\x23\x70\xbb\xea\x56\x55\x4e\x67\x65\x16\x33\xb3\xba\xd1\x08\xff\x50\x38\x6c\x87\x43\xf6\x0f\xd1\x76\x58\xe1\xb0\xc3\x41\x9a\x14\x45\x4a\x24\x25\x71\x49\x5a\xe4\x92\xac\xe2\xee\x72\x5f\xb3\x8f\x99\x9d\x37\xb0\x33\x03\xa0\xf1\x46\x03\x8d\x37\x1a\xaf\x86\x23\xcf\x77\xce\xbd\xa7\x3a\x13\xd4\xaf\xc9\x1c\x74\x55\xe5\xe3\x3e\xce\xf9\xce\x77\xbe\x4f\x3b\xdd\x7e\xe0\x21\x58\x1b\x45\x61\xdc\x21\x6c\x5a\xda\xab\x6b\xce\xe9\xe8\xa9\x86\xea\xef\xf8\x58\x9a\x8b\x7c\xac\xb7\x6b\xe4\xb1\xa2\xe5\x24\xb7\x6c\x68\x29\x36\xfa\xc5\x15\x8b\x02\x4f\xcd\xe9\x56\x43\xe4\x51\x54\x7a\x94\xaa\x09\x00\x4e\x24\x95\x37\xdd\x15\x16\x61\x8e\x03\x7c\x84\xc8\xea\xd3\xab\x75\x47\x18\xb0\xcb\x61\xcb\xc6\x4d\xd9\x63\x9d\x33\x8c\x7b\x53\x1b\x5e\xb5\xb5\x48\x83\xb1\x23\x60\xd5\x3a\xa9\x9a\xa8\x6e\x8f\xd9\x30\xef\x95\x68\x70\x7a\xfa\x3f\x2c\xee\x07\x37\xfe\x76\xe0\x91\x18\x28\x66\xa3\xee\x76\x0d\x9b\x89\x98\x49\xd1\x23\xc7\x2f\x5c\xa0\x95\x15\xe8\xe4\x29\xb6\x6f\x42\x99\x76\x0d\xac\x67\x2c\x0a\xbb\xa1\xf3\x84\xc7\xbf\x19\xd4\xbe\xf8\xda\xd6\x79\x14\x97\x9d\xd8\xdc\xfc\x7e\x47\x5a\x0e\x74\x8b\xfb\x8d\xa0\x98\xe5\x58\x22\xde\x19\x7a\x8c\xe2\xac\xda\xcb\xbf\x85\x26\x00\x7c\x7c\x8a\xd2\x39\x3c\xfb\x35\xed\x1d\xf9\x35\x84\xb3\x8e\x26\xfd\xda\xcc\x02\xc7\xf3\x77\x21\x28\x82\x68\xf4\x6d\x32\x1e\x46\x90\x7d\x02\x6b\x32\x5a\x2d\x77\x8c\xb4\x5b\x64\x40\x4d\x8a\x78\x3e\x6b\x81\xaa\x92\xac\x91\x7d\x2e\x22\xb9\x93\x84\x53\xba\x94\xe8\x0b\x5f\xf1\x4a\xb3\x45\x28\x8c\xc2\xc1\x2d\x55\x04\x5c\x22\x91\x33\x67\xc7\x70\x03\x03\x49\xe4\xac\x9e\x56\x0d\x74\xb9\x89\xd0\xbf\x0c\xec\xe2\xa2\x22\x9b\x5e\xf4\x83\xc7\x74\x8a\xcc\x3d\x83\x78\x2d\xea\x4f\x90\xff\x12\x16\x82\x6f\x84\xd8\xd5\xf0\x52\x1b\x6f\x84\x3d\x5e\x46\x80\xa4\xb2\x0b\x02\x9f\x8c\x19\xbe\x86\x9d\x64\x52\xb5\x6a\xaf\x05\xaa\x49\x8f\x75\x6b\x45\x20\xae\xe6\x9c\x60\xcf\xa8\x56\xb4\x95\x7e\x1f\x33\x9a\x93\x26\xed\xc9\xa9\xb7\xaa\xa6\xe9\x9b\x66\x98\xaf\x4e\x29\x3c\xf5\xa3\x40\xe9\xca\x42\xdc\x1a\x64\x05\x96\x9d\xe6\x7f\x68\xf8\x7d\xf2\x78\x29\x53\x38\x30\x5b\x6f\x27\x69\x53\x04\x6e\x9d\x48\x74\xf1\xc5\xae\x79\x5b\xb5\x16\x8e\xb9\xdd\x26\x47\x6a\xe3\xdd\xba\xc5\x38\x14\x0a\x42\x19\x5e\x9d\xa9\x77\xc3\x4e\xb7\xe6\xbb\x2d\x41\x33\x94\x0d\xa5\xc2\x1e\xc0\x2c\x87\xc6\x2d\xd3\x95\x95\xbb\x0a\xd2\xeb\x4a\x91\x54\xa2\x26\xc1\xf4\x7e\xbc\x15\xe1\xfa\x57\x94\x4a\xa3\x10\x2d\x0b\x58\xcc\x10\x56\xf3\xb1\x22\x24\xfd\xd2\x3f\x78\x8d\xfe\x0a\x31\xe6\x1a\x2e\x84\x4f\x94\xa8\x5f\xd7\xa4\xad\xdd\x3e\x3c\x78\x14\x68\x5f\x64\xca\x23\x45\xb0\xd1\xd3\xa5\xfe\x12\x4f\x1c\x63\xf4\xb2\xde\x45\xfe\x2f\x45\x2a\xbd\xa2\x61\xfc\x30\x6e\x4d\x8e\x89\xef\xab\xdc\xe8\xaa\x72\xfa\xbb\x4a\x1a\x28\xfc\x47\x4a\x55\xa1\x15\x9a\x5e\x12\xb7\xa0\x97\x29\x85\xc6\x31\xc7\x18\x5f\xc5\xef\xda\x30\xc6\xcc\x44\x1b\x06\xb2\x3d\x3e\xae\x62\x79\xb4\xc2\x94\xad\xcc\xaa\x7a\x8e\x64\x1b\xe8\xc4\x66\x45\x34\x9d\x78\xc9\xc1\x5d\x60\x67\x7d\xa8\x2c\x34\x6a\xa5\x5a\x67\x11\x12\x2e\x87\x76\x45\xd2\x00\xc4\x28\xd7\xb5\x36\xf3\x5d\x5d\x1c\xf9\x49\x49\x39\xc1\x39\xdd\xd8\x66\x12\xb7\x76\xf9\x30\x16\x41\x8a\xc3\xe7\x7f\xe9\x17\xbc\x83\xfe\x2f\xca\x4e\xf8\x90\xde\x24\xba\x6f\xfe\x97\xa1\x62\xf9\xdf\x2c\xa1\x00\xc5\xe6\x9d\xb4\xdb\x21\xa4\xc2\xdd\x00\x7a\xb1\xe1\xba\xe6\xff\xe7\xbd\x58\x5d\x81\x66\x3e\x72\x95\xe6\x66\x12\xe7\x61\xec\x33\x45\x0c\x9c\x0b\x18\xcf\x7c\xa2\xf8\x8a\x2c\x48\x1e\x77\xd0\x9a\x89\x12\xe3\x9b\x34\x80\x44\x0c\x5b\x75\x40\xfd\xc8\x6d\xc7\xc6\xe6\x36\x8d\x0d\x89\x44\x09\xd0\x57\x73\x22\xab\x77\x86\x7e\xf9\xfc\x13\xe5\x2c\xdf\x33\x91\x6d\x03\xd0\xac\x29\xe9\x54\x78\x87\xf1\xf1\xd0\x77\x1f\x2f\x27\x21\xef\xe2\xc8\x9b\xee\xe1\xe5\xf0\x49\x45\x2a\x19\x59\xd3\xda\xa5\xbc\xc4\x90\xb3\x8a\x09\x84\x37\x2a\xbd\xa3\x14\x39\x90\xa7\x83\x85\xc5\x6d\xcb\x12\x94\xe8\x95\x2b\xee\x64\xcf\xd1\x06\x2c\x6a\x22\x2a\xc9\x3a\x41\x5f\x8d\xa0\x94\xa3\x5c\x3c\x87\x37\x75\xb4\xf5\xa3\x40\x05\x24\xbc\xdb\x63\x55\xbe\x11\x78\x39\xee\xf7\x28\x07\xc2\x3a\x7a\x96\x18\x3b\xe2\x1d\xab\x24\x7b\xae\x61\x33\x16\x5e\x86\xa2\xb7\x9e\x67\x40\x0e\x6b\xc7\x71\xda\xff\xb5\x88\x26\xb6\x96\x6b\x0a\xc1\x7a\x08\xbc\xc8\x8b\x3e\xba\x97\x95\xa4\x79\xc7\x74\xec\x1e\xda\xd2\x59\xf9\x53\xf1\x8a\xaf\x0e\x7d\xfd\xf3\x1d\x7a\x83\x42\x04\xa3\x27\x80\xa7\xce\x8d\xd2\x28\x32\x6c\x0d\x15\xfa\x5a\x6b\x28\x16\x17\x33\xc9\xf8\xc4\x35\x32\x75\xad\x69\x65\x53\xbe\xc2\xf5\x00\x5f\x0d\x56\xf4\xd6\x50\xf9\x7d\x1c\xc3\x00\x17\x8f\x77\xfa\x6a\xfa\xd1\xdf\x7c\xa6\x51\x85\x23\x26\x45\x06\x93\xb6\x14\xab\x8c\x5b\xdb\xf9\x44\x59\xdb\x10\xe1\xb6\x49\x9b\x0a\x02\x08\x21\x6f\xfb\x9a\xfc\x46\xb0\x5d\xb3\x66\x66\xc1\x69\xc1\x74\x93\x04\x3a\x8c\x8e\xaa\x5c\x3c\x6f\x29\x86\xd5\x94\x34\xcc\xf3\xca\xfa\xab\x98\xfb\x36\x6e\xae\x6a\x1f\x2c\xfa\x63\xa9\x7e\xbd\xe8\xa9\xa8\x61\x96\x27\xa9\x98\xf4\x7b\x33\x99\x3f\x56\x11\xdf\x1f\xeb\x3a\x0e\xf1\x45\xf7\x68\x7f\x13\x5c\x93\xf8\x31\xa8\xca\x21\x37\x4f\x8a\x44\x95\xaf\xd1\x5c\xa1\xdb\x17\x23\x20\x7a\x13\xc0\x8a\xcf\x80\x7a\x20\x3e\x0f\xb4\xc1\xf3\xbf\xf8\x76\x99\x30\x1a\xe4\xc2\x3e\x40\xad\xf4\x27\x63\x8d\x3b\x4a\x64\xf1\xff\x2b\xb5\xc2\xcd\xbd\x72\xa8\x6e\xfa\x7d\x93\x9a\x5c\xcb\xf0\xbe\xab\x82\xf7\x77\xdd\x4f\x29\x91\xed\xd7\xf9\x36\xae\xe9\x59\xc9\xac\x24\x29\x7a\x57\x54\xb3\x7b\x83\xac\x58\x87\x11\x51\x00\x64\xbe\x45\x17\xcb\xc7\xa5\xcc\x6b\x6e\x7e\x0e\x76\x9e\x9c\x79\x61\x2d\x78\x27\x50\x0b\xc3\x3b\xda\xa5\x64\xc9\x3e\x5d\xcc\x73\xec\x8d\x1f\xd1\xde\x8b\x04\xef\x1e\x2e\x14\x73\x7e\xdf\x48\x15\x5b\x77\x8d\xbc\x6e\xda\x1e\x6a\x71\x77\xc5\xaa\x03\xbc\x5a\x9e\xfd\x8f\x40\x08\xc1\x6c\x7b\x34\x54\xa5\xe6\xa7\x94\xe0\xca\x35\xa6\x2a\x63\x59\x7b\xa8\xd4\xc4\x6e\xe9\x5a\xc9\x5f\xd2\x64\x47\xae\x05\xd5\x5c\x26\xd4\x55\x59\xa6\xb6\x07\xde\x7c\x42\x6c\xf4\x75\xc7\x72\xe9\x81\xbd\x72\xa8\x9e\x0e\xbc\x74\x01\x22\xc7\xf7\x55\xd3\x07\x22\x4a\x51\x68\x73\x7d\x8e\x61\x7e\x74\x75\xc2\x53\xbc\x11\xc3\x08\x1a\x47\x8f\x4b\x28\x84\x15\xed\xb5\x1d\x9b\x23\x34\x06\x4b\xe6\x42\xa0\x24\x2b\x10\xe7\x8b\x27\x9c\xb6\x7a\x54\xe4\x9b\x46\xb9\x98\xf5\x7a\xbd\x05\x1d\x4b\x2f\xf4\xf2\xa6\x92\xdd\x7b\xd3\xd5\xd2\xb3\xbe\xc9\x7a\x63\x1e\x56\x1f\xa8\x6a\xf0\x07\xa5\xc0\x83\x9c\x78\x2d\x8d\x79\x09\x6e\x9d\xc1\x93\xb3\xf4\x3a\xa1\x7a\x0b\xe2\x64\xa5\x6b\x53\xb0\xcd\xb0\x11\xb3\x44\x27\x9f\x28\x34\x17\xbb\xa1\x6b\x9c\x3a\x30\xeb\xac\x71\xcb\x61\xc9\xa1\x7a\xd6\x4c\x4d\x6f\x31\x82\x58\x93\x20\x51\xf4\xcd\x58\xdf\x90\x37\x8b\x59\xe8\xb3\x8a\x66\x1a\x45\xa6\x9f\x71\xa1\x75\xcc\xe2\x96\xf5\x76\x87\xfe\xae\xfe\x89\xa6\xbb\xb3\x2c\x31\xfb\xfb\x38\x1c\x2a\x4f\x6d\xf1\x14\x1d\x61\xdf\xf5\x8f\xbb\xc6\xdc\xb2\xe7\xd0\x81\xd9\x7a\x27\x2a\x46\x8d\x16\xd1\xa5\x4f\x88\xa0\x6e\x05\xa4\x94\x0d\x7a\x3d\x9b\xb6\x93\x68\x69\xd2\x8b\xb7\xff\x29\x8d\x68\xe7\xf3\xa3\x34\x8f\x94\x94\xca\xa6\xe7\x4e\xd8\xd5\x84\xf5\x93\x45\xae\x44\x79\xa7\xd4\x46\xde\xd7\x7b\xa2\xe1\x7b\xad\x63\xdb\x49\x72\xe4\x33\xd9\x6e\x25\x6c\xa5\xe5\xa1\xdf\xa4\x1a\xa8\x53\xbc\x72\xdb\xf0\x7d\x3c\xc2\xb1\x9e\x5f\xec\x1d\xb7\x55\xe1\xfa\x82\x6a\x0d\xb0\x26\x5b\xdd\xed\xe1\x89\xef\x0d\x95\xbc\x0b\xe4\x9e\x65\xb7\x53\x6d\x0b\xbf\xaf\x29\x94\xf7\x18\x89\xc0\xdd\x03\xfc\xc3\x66\x7d\xbe\x54\xd4\x29\x56\xc9\xa5\x38\x59\xa1\xac\x0b\xf3\x77\x1d\xbf\xc8\x27\x4a\x78\xce\xf6\x88\x02\xae\xdc\x1d\x4f\xaa\xa2\xc2\x49\x47\x6c\xe8\x35\x5b\x49\x6c\x22\x6c\xeb\xd2\x2e\x45\xd7\xc7\x27\x5a\x8f\xa4\x9f\x1a\xf6\x22\x13\x5e\x9e\xa2\x91\x6d\x8c\x6b\x08\xd2\xd3\x63\x55\x9f\xa1\xf2\x6b\xb8\xa1\x6d\x73\x97\x1d\x3e\x85\xb9\x04\x0c\x99\x8f\x4b\xf7\xff\xda\xcc\x42\x11\x62\x6d\xf3\xf5\xa0\xeb\x11\xf5\xaa\x8a\xda\x60\x3a\xe8\xb1\xef\xb1\x07\x3d\xce\xe0\x8a\xa4\x4e\x58\x49\xf5\x89\x57\x6b\x8a\x7a\xfc\x03\x35\x4e\x7e\xa0\xd8\x8a\x59\xd8\x35\x71\x32\x58\x9a\x50\xee\xc3\x1b\xc3\xda\x97\x67\x78\x45\x40\x8b\x8e\x48\x88\x2a\xb1\x7d\x27\x37\xe9\x14\x3c\xd1\x49\x8f\xec\x84\xe1\x57\x46\xc0\x5c\xd3\x66\x6e\xb2\x0c\x55\x07\x84\xbe\x20\xd1\xf1\xf1\xf0\x71\x7d\xf4\x36\xcb\xc3\x9e\x11\x3f\x4f\x64\x53\x4f\x37\x94\x08\x06\xcf\x40\x0c\x4f\xd6\x72\x15\x75\x0e\x25\x00\x25\x9a\xff\x35\x55\x21\x1d\x6b\x7b\xd2\xd1\x7f\x12\xb5\x77\x6b\xd7\x70\x54\x01\x1d\x88\x51\xfc\x38\x36\xa7\x7b\x98\x68\x7c\x32\x54\x38\xcd\x5b\xc1\x58\x87\x96\xea\xc3\x55\xda\x26\x36\x8a\x06\x91\x49\xb1\x46\x8a\x7c\xbd\xaf\x0f\x3c\x4d\xb9\x0a\xb6\xfd\xa9\x91\x5a\x40\xde\x0b\xbc\xb5\xef\x86\x5a\x74\xc9\xcc\xb9\xc9\x46\xf7\xe2\x4c\xe5\x3b\x59\x2f\xa8\x64\x2b\x4d\x22\xfb\x84\xc2\x42\xb9\x47\x03\xb8\xfb\x7d\x85\x96\xdd\x24\xe5\x32\xfe\xff\x7a\x9a\x7c\x80\x65\x89\x29\x18\xf4\x32\x55\xef\x8e\xac\x04\xa7\x9d\xda\xbf\x8d\x73\x9b\xe6\x26\x8c\x25\xa1\x27\xf6\xd9\x9f\xc0\x46\x02\xa9\xea\x43\x7c\x25\x56\xc6\xc9\x91\x9f\xbd\xab\xc9\x20\xee\xa0\xfd\x4a\xf0\x05\xbc\x1f\x34\xf2\x80\x32\x2c\x22\xab\x74\x57\xd8\x71\xa0\x05\xe0\xfc\xe0\xfc\x56\x74\xac\xaa\x49\x6d\x71\xd0\x31\x8b\x49\x82\x3a\x3c\xe7\x64\xca\x97\xe1\xec\x18\xb0\x97\xac\x32\xdb\x1e\xaf\xe4\x16\x42\x5f\x3e\x71\x00\x46\x98\xf5\x4c\x18\x85\x35\x4f\x38\x60\x43\x22\x3e\x51\xd8\xe6\x20\xb3\xd9\x5e\x2d\x1d\x74\x6c\xa8\x1c\x14\x90\xc3\x39\xb7\xc3\x62\x11\x91\x26\x14\x8a\xee\x5c\x77\xca\xab\xfb\xbd\xbf\xa8\x53\x70\xf8\x2b\x3d\x1a\x59\x72\x0b\x37\x75\x51\x43\xc0\xc7\xfd\x75\x17\x2f\x2b\xec\x29\xb7\xdd\xb7\x95\x03\xdf\xdb\x6e\x57\x7e\x63\x90\xe5\x61\xdb\xcb\x2a\x38\x10\xcb\xc5\x53\x1e\x7f\xef\xf6\x92\xb8\xc3\xb8\x29\xe2\xbc\x4d\xdd\xdc\xbb\xe9\x7e\xbc\x9d\xa4\xb6\xc7\x11\xb8\xec\x0e\x3e\xec\x5b\x57\x18\x97\x59\x31\xab\x7b\x08\x9c\xc6\x98\x59\x1b\x02\x63\xe7\xb3\x60\x8c\x21\xe9\x13\xcb\x53\xc0\xd3\xa5\x66\x4a\x4f\x00\x0f\xed\x5f\x63\xf4\x20\x12\xb9\xaf\x14\x60\x26\x08\x24\x05\x48\xf6\xb0\xba\xf9\x9a\xd4\xb4\x5c\x1d\x0b\x35\x3a\xc1\x63\xfc\x6b\xce\x93\x95\x78\xca\xe7\x87\xb7\x15\xdc\xfc\x3d\xaa\x16\x38\xeb\x67\x17\x02\xef\xa4\x90\x9f\xff\x46\xd5\x0c\x9b\xdd\x30\xea\x99\x74\x89\x9f\x29\xf6\x91\xbf\xd0\x92\x88\x7f\xe1\xd5\x4e\x4d\xd6\x32\xbf\x52\xf3\x51\x0c\x0b\xd2\xf0\x49\xa9\x56\x4c\xf2\x60\x59\x98\x92\x76\x9b\x87\xe6\xae\xa9\x46\x4f\x74\xb3\x63\x48\xde\x73\xb5\xb3\x76\x98\x1f\xcd\xc2\x5e\xaf\x48\x9f\xc7\x25\xee\x55\xcf\xee\xc5\xaa\xdf\xcb\x62\x93\x37\xbb\xde\x30\x15\x2f\xe4\xc7\x5a\xa9\xf7\xc7\x8f\xe5\x4b\xe4\x66\xc9\xa2\x85\xb7\xf8\x6b\x3c\x2b\x48\x60\x63\xd5\xdd\x45\x42\x4b\x28\xd1\x5c\x55\xac\xd0\x41\x2c\x1d\xb6\x2d\xdd\x98\x7b\x86\x5e\x3d\x1f\x57\x76\x9d\x27\x83\xd4\xb9\xa0\x8b\xac\x1d\x4d\x32\x3e\x29\xe5\xb1\xd3\xd3\xf5\x24\x0d\x6d\x9c\xb3\x3f\x19\x56\x80\x4d\x4d\x14\xdc\x54\xc2\x3b\x3d\x13\x0f\xda\xa6\x99\x0f\xa4\xe5\x01\xe8\xf4\x0d\xcd\x0e\xbf\xa1\xd0\x5a\x1b\x77\x25\x17\x19\xf3\xb6\x3c\x24\x27\xa5\xd4\xed\xa5\x97\xea\xdd\x24\xcd\x13\xe6\x02\x20\x6b\xff\x1d\x9a\xba\x7c\x5c\x0a\xa8\x0f\x1f\xae\x47\xe1\xa2\x4d\xcd\x84\x17\xa4\xfc\xf5\x93\xd4\x52\x89\x2c\xe9\x56\xa0\xbb\x47\x5e\x50\xe9\x40\x9c\x25\x51\x48\x3d\xc0\x13\xde\x8c\x1b\x85\x3a\xb1\xf2\xd4\xd0\x33\x19\x16\x4c\xea\xe7\x34\xe6\x87\xe9\x1c\x6f\x47\x98\xe3\xf2\xfc\xb6\x03\x33\x45\xd8\xb5\x98\xc4\x2d\xb6\x29\xd7\x4d\x7f\xcc\xee\xe7\x13\xb7\x29\x47\x61\x96\x47\x52\x12\x12\x5d\xd2\x9a\x73\xcc\xba\x87\xe5\x16\x48\xc8\x45\x6d\xc6\xf6\x85\x19\xf0\x9e\x45\x79\x4a\x4d\xaf\x6b\xe5\x96\x8c\xf9\xb9\x7a\xd6\x35\x7d\xce\x1d\x11\xcf\xb3\xb8\x17\x9f\x28\xd6\xbc\x19\xb4\xc2\x64\x92\x36\x68\x66\xac\xd0\xd3\x90\xee\xd8\xe2\xea\x9c\x11\xd4\x01\xcf\x5e\xad\xe8\xbb\x67\xd5\x28\xad\x5b\x7d\x5b\x11\xe9\xaf\x28\x92\xc1\xc7\x6e\xe1\x6e\x47\xd6\x64\x14\xb8\x8b\x8b\xb6\x6a\xa6\x39\xa1\xca\x6e\x6d\x13\x35\x8b\x74\x75\xde\x1b\x8a\x78\xe6\xd0\xc9\xd2\xf5\x1c\x98\xad\x67\x83\x38\x0d\x33\xab\xaa\xec\xd7\x54\xed\xf6\x5a\xe9\x23\x87\x0f\xd7\x9b\xd1\x20\x17\x49\x14\x97\xad\x78\x2b\xb2\x62\x21\xd2\x7c\xbe\xcf\xd7\x5f\x9b\xd3\x04\x62\x60\x26\x52\x27\xde\xe7\x9f\x71\xeb\x89\xe2\x1f\x9c\x9c\x41\x31\x50\x10\x1b\xfe\x30\x18\x2b\xa2\xd3\x3b\x72\x8d\xad\xc5\xa6\x2f\x19\x3d\x0d\x6c\xe9\x6c\x1d\x97\x67\x50\x5e\xe5\x5e\xb6\x29\xb7\xec\x75\x8e\xb2\xf3\x07\x1c\xd3\x48\x2f\x84\x02\xbb\x9e\xa2\x11\x38\x66\x70\x09\x6c\x67\x5f\x89\xfa\x54\x6c\x45\xbd\x01\xeb\x6e\x00\x64\x1f\x29\x67\xe2\x51\x85\x10\xe4\xa1\x7a\xd6\x85\x92\x93\xd0\x05\xe9\xe2\x05\xa7\x54\x5a\xac\x7f\xae\x55\x37\x21\xa7\x04\x32\xa2\x54\x8f\x3c\xad\xf5\x11\xfd\xa8\x16\x7c\xe4\xff\x5f\x04\x84\xe3\x2f\x68\x7e\xff\xfc\x5e\x0d\x71\xd0\x0c\x13\xf7\x01\x0a\x75\x9c\xb1\xdb\x01\x07\xd9\x28\x2b\x81\x8b\xca\x54\xee\xcd\x40\xf9\x83\x7c\x1f\xbb\x39\x56\x7d\x8e\x74\xb4\xf0\xa7\x94\x0a\xb4\x18\x1c\x75\x52\x86\xb9\x8d\x56\x27\xbd\x9d\xef\x1e\xf4\x1c\xb1\x85\x07\xbe\x08\x0b\x1e\xfc\xd9\x85\xfb\xf0\xbc\x5e\xf0\x96\x6d\xec\xd4\x6c\x58\x2d\x14\x8b\x82\x48\x87\x96\xb1\xb4\x43\xf5\x6c\xc5\x9a\x1c\xe3\x15\xa0\x0a\xd2\x4a\x3e\x56\xeb\xcd\xa1\x30\x9e\x54\x03\xe1\x01\x46\x9f\x68\x3f\xfb\x8a\xce\x0f\x94\xc5\xdf\xa9\xe1\x67\x15\xcb\x0a\xae\x41\x04\x37\x50\x35\x08\x88\xc6\xe6\x58\x3b\x30\xc5\x56\x22\x28\xe9\xdf\x7d\xd8\xeb\x27\x69\x9e\x91\x68\x09\xf2\xe4\x1d\x8d\xda\xf4\x34\x97\x07\x58\xbb\x0e\x51\xc2\xc5\xa1\xef\x43\x66\x8a\x00\x32\x83\xdb\x04\xae\x49\xb0\xa4\xae\x1e\x5d\x72\xa8\x4d\x9e\x0d\x3c\xec\xbe\x56\x92\xe3\xa7\x3a\x62\x49\x8e\x1f\xbf\x75\x4b\xf5\xb7\xe9\xa2\xcf\xc5\x12\xd8\x46\x44\xe3\xa5\xd5\xac\x99\x1a\x72\x12\xf4\x4d\xa0\xdf\x1e\xfa\xb2\xf2\xb7\x95\xbc\x63\x91\xc8\x3f\x55\xdc\xaf\xeb\x4e\x73\x0c\xf9\xbb\x8c\x89\x60\x6b\xbc\x40\x68\x8d\x32\x60\xfe\x12\xe7\x1f\x54\xce\x93\x64\xe4\x99\x86\xef\x47\xf9\x6c\xc3\xd3\x9f\x58\x69\x16\x79\x6e\x6d\xa4\x1a\x99\xae\xd2\xb3\x63\x32\x2d\xc8\x23\x58\x77\x1e\x69\xc3\xb2\x3f\xa4\xb1\x89\x20\xa6\xec\x2f\xee\x3b\xd3\x62\x76\x13\x12\xa3\x2e\x0f\x49\xaf\x57\x41\x6a\xff\xae\xc6\x20\xe7\x4a\x91\x9b\x28\x4a\x62\x91\xa4\xaa\xfc\x5b\x3f\x9e\x5f\x9e\x7d\x79\xd2\xcb\xa0\x9f\x1a\xea\x0c\xa2\xb8\x8d\xb1\xe6\x38\x2c\xdf\x93\x8d\x0a\x2b\xe9\x22\xdf\x52\x99\xc3\x79\x95\x39\x94\x51\xa9\x83\x07\xeb\x24\xbc\x0b\xea\x26\x2e\xea\x9f\xd2\x84\x13\xbb\x34\x05\xd7\x9c\xf5\xae\x80\x2f\xb5\x56\x56\x61\xe0\x27\x09\xe9\xdb\x81\x2f\x78\xbf\xed\x10\xaa\x76\x94\x90\xb2\x1e\x06\x26\x26\xd8\x5b\x8a\x96\xac\x05\xaa\x4e\x3a\x5a\x4a\x33\x89\x06\xbd\x38\xcc\xc0\x69\xc3\xba\x7d\x42\xf9\x79\x9d\x28\x0d\xe1\x85\x57\x74\xbc\x48\x5b\x35\xab\xd8\x04\x63\x92\x36\x3e\xc2\xe2\x56\x2d\x55\x6d\xde\xd9\x18\x67\x92\x1f\x3c\xc8\x68\xe2\x75\x05\xfd\xf4\x4c\xda\x49\xa2\x90\xeb\xb9\x58\x0f\x7f\x4b\xd9\x1b\xfd\x96\xc2\xa4\x93\x41\x1e\x25\xc9\x12\xc9\x2d\x23\x7b\x00\xb7\x86\x8f\x55\xcd\xad\x99\x24\x7d\x9b\x92\x7f\x62\xa6\x4d\x48\x6e\x28\x52\xc0\x8d\x12\xa8\x5f\x84\x0f\x4c\xcb\x60\xb1\xf7\xa1\x82\x97\x3e\xd6\xfd\xdd\x69\x62\x5a\x1c\x32\x88\xc3\x4a\xcd\xd9\x41\x9d\x55\x5c\xbe\x64\x31\xb3\xd4\x30\x0c\x26\x25\x96\x5d\xce\x10\x59\x27\x64\xe8\x59\x0e\x77\x02\xcf\x09\x6a\x15\x61\xfa\x17\x5f\xf3\xcd\xc2\x07\xbc\x96\x72\x45\xfe\xb0\x6c\x9a\x4d\xe1\xb8\x8b\x0e\x83\x8a\xd6\xd7\xc7\x94\xdd\xd2\x65\x62\xeb\xb9\x82\xd4\x65\x5a\x56\x5c\x07\x84\x0b\x2e\xee\x2b\xa8\xf7\xa3\xc0\xd7\x31\x76\x8c\x7c\x97\xd1\x52\x98\x36\xbb\x8b\x36\xed\xc8\xa8\xd7\xed\x3f\xa2\x70\x44\xcf\x11\x85\xf7\xcd\x52\xc0\x30\xb3\x50\xef\xa4\x61\x4b\x3f\x21\x14\xe3\x50\xa0\x46\xf1\x46\xaa\xa6\x82\xfe\x2d\xa6\x89\xe4\x75\xac\x55\x1a\x28\x81\xed\xd3\x15\x52\x27\x87\xea\x83\x7e\xd7\x9a\x65\x08\xda\x4a\x62\x06\x4e\x0c\x1f\x2b\xcc\x38\xef\x86\x69\x0b\xc0\x97\xec\x16\x4a\x6d\x6b\xad\xa2\x97\x73\x96\xc9\x46\x2e\xcd\x86\xbd\x09\x1f\xbb\xee\x9a\xd6\x20\x6f\x76\x27\x71\xe5\xcc\xe7\x56\xca\x45\x30\x92\x72\x6a\x13\xae\x6b\xea\xca\x0b\xbe\xaa\x1d\x92\x8d\xba\xc3\xc6\x99\x2c\xc6\x27\x55\x74\xf0\x3c\x35\x24\xe6\x50\xf3\xd2\xb8\xc1\x58\x4b\xe5\xe3\x9a\x8c\xc3\xcc\x18\xd8\x20\x39\x6c\xc8\x3b\x53\xac\x97\x68\x38\x0b\xaf\xd4\x17\xd3\xd0\xb6\x69\xbd\x70\xfb\xad\xdf\x7b\xbd\xf1\x3e\x0b\x67\x16\x5f\x26\x8a\x22\x6a\xab\xbd\xa4\x05\xa8\x92\x34\x6f\x27\x51\x98\x20\x61\x60\xaf\x26\xc5\x10\xbb\x38\x7c\x51\x07\x49\xd4\xf1\x86\x5a\xbb\x63\x7a\xad\x29\xe3\xd6\xb5\x2a\x3b\x93\xc5\x24\x59\x5a\xb2\xb6\x2f\x48\xa2\x93\xb5\xf7\x59\x0d\x1c\xf5\x80\x7b\xde\x52\x46\x49\xb6\xe5\xf3\x1f\x94\x9f\x11\x5b\x63\x72\x4f\x8d\x3c\xe2\x7d\x43\xc5\x3b\x91\xed\x98\xa8\x88\x08\x9d\xfc\xf7\x4f\x28\xac\xc1\xca\xb9\xa3\x41\x61\x92\x98\xee\x14\xa3\x08\x68\xd2\x69\x07\x69\x65\x91\xe9\xf5\x00\x31\xcc\x79\x29\x26\xaf\xb4\x5f\x6e\xd9\x2b\x82\x41\x93\x35\xd3\x70\x51\xf8\x4b\xa2\xf5\xa3\xaa\x13\xcc\x5f\x12\x01\x56\x8f\x77\xdb\x5f\x19\x84\xfd\x9e\x8d\xf3\x27\x94\x4a\xd4\x24\xe2\x32\x91\xe6\xa6\x7c\x12\xb3\x1f\x32\xd4\x7c\xac\x99\x46\x08\x5a\xb6\x08\x60\xdd\xba\xae\xcd\xfd\x26\x9d\xb4\xea\xa2\x8d\x2d\xb8\x4b\xc4\x10\x47\xc1\x6b\x97\x12\xb6\xe6\x82\x8a\x93\x3b\x52\x9a\x0d\x8a\x37\x79\x5e\x2b\xf7\xc2\x7e\x19\x64\x10\x00\x38\x0f\x28\xc8\x42\x6e\x74\x81\xf0\x6f\x3e\xd6\xdd\xcb\x0f\x94\xcf\xec\x93\x0d\xbf\xc1\x98\x34\x0f\x71\x89\x11\x6a\x81\xac\x7b\xa0\xbc\x77\xce\x28\x2c\x25\x0f\x3b\xdd\x5c\x42\x41\xa7\x15\x55\x2c\x77\xa2\x14\x5e\x11\x48\xa4\xe1\xb2\x89\xb0\x28\x3a\x29\x0f\x57\xff\xfb\xb6\xd2\x16\xff\x49\xa0\xac\x76\xd0\x60\xd0\x22\xb5\x53\xce\x22\xf0\x62\x24\xa5\xa0\xbb\x73\x79\xe4\xf4\xb4\xcb\x23\x7d\x38\xfa\x86\x39\x7a\x14\x23\x4b\x1a\xba\x6b\xbe\xb9\xdb\x2d\x64\x8b\x51\x18\xb7\x94\xe4\x10\xba\x69\xf8\xb8\x4a\xf3\x81\xf6\x9d\xa6\x60\x5c\x48\x5a\x2e\x8e\x89\xdb\x57\xc1\x78\x87\x48\xe2\x25\xb5\x39\x43\x1b\x4e\x95\xc4\x2b\x94\xe8\x3e\x79\x5b\x84\x47\x03\xd9\xf6\xd9\x1f\x4a\xd5\xc6\x37\x4a\x57\x36\xb3\xc0\x52\xef\xc5\xc6\xe0\x35\x85\xd0\x18\xcc\xc7\x55\xcd\xe9\xed\x30\x8f\x6d\x86\x2d\x82\x33\x42\xca\xcb\x25\x3b\x7c\x56\xa5\x46\xed\x30\xb6\xe9\xaa\xd2\xfc\xdd\x18\x73\xa1\x7b\xca\x81\xaa\xf9\x20\x65\x38\x0f\xb0\xed\x35\xed\x9d\x7d\x4d\xf5\x27\x9b\x38\xc9\xbb\x36\x7d\x9e\xde\xad\x6a\xa1\x7e\x9d\x03\xa7\x4f\x68\x78\xcb\x00\x29\x46\x83\x63\xea\x7a\xe9\xc1\xb7\x69\x6d\x91\x56\x59\x9a\x8c\xb2\x54\x13\x10\x81\x8c\xef\xe3\xa0\xf6\xd2\x4b\x4e\x0d\x89\xa6\x1e\x56\xba\x5a\x03\x2f\xcf\xd9\x9f\xcc\x0a\xd5\xee\x41\xa0\xbc\xa8\xf7\x8e\x94\x73\xcc\x5d\xca\x34\xb0\xb3\xbf\x15\x28\x85\xe7\x75\xa4\xe9\xfc\x57\x5a\x66\x11\x46\x8b\xc8\xe5\x76\x8c\x3e\xa3\x94\x9e\xd2\xec\xc9\xe2\xdb\xd0\x64\xfc\x57\x40\xd2\x44\xc6\xdf\xfb\xf0\x7d\x3d\xd0\x72\x4e\x43\xe5\x89\xc1\xdd\xc5\xf8\x97\xdf\xc0\x50\x84\xb2\xc7\x97\x9c\xad\x79\x71\x53\x48\xbe\x6e\x05\x8a\xe4\xcc\x06\x85\x8e\xf1\xea\x94\x2f\x6e\xa8\x1c\x64\x71\xc0\xbe\x5a\x12\xf7\xf9\xd4\x7b\xbd\x04\x9f\xce\xbd\x72\xa8\xde\x4a\x8e\x5a\xd4\x29\x64\xb4\x2a\x37\x93\x0d\x35\xcf\x57\x92\xa8\xdd\x31\x52\x25\x41\xe4\x86\xd5\x87\x8f\x5d\x45\xa5\x9f\x34\x97\x6c\xbe\x48\x81\xb3\x9b\x32\xdf\x0a\x3c\x07\xe7\x5b\x43\x1f\x9a\xf4\x7a\xab\x2a\x82\xff\x06\xfd\x95\x38\x3e\x14\xc1\xa8\x48\xdf\x96\x31\x9f\xb9\xba\xe1\x62\xe8\x58\x62\x25\xf5\x1b\x49\x45\x4c\x6c\xa2\xd5\xa3\xae\xbc\x83\xdf\x41\x5d\x98\x8f\x2b\x7a\xe7\xea\xbd\xa4\x45\x42\x0b\x35\xcf\x4c\x06\x8c\x21\x0e\xb7\x2a\xb8\x15\x00\xd0\xe5\x41\x10\x4f\xe6\xe3\x86\x84\x20\x2d\xd3\xeb\xb3\x98\x13\xc2\x99\xf3\xaa\xb5\xf1\x7c\x09\xf7\x2d\x6e\xb0\x99\xf4\x7a\x36\x2d\x16\x7d\x5e\xc2\x5c\x47\x6e\x31\xbc\x44\x80\xbc\x02\x94\x6c\x87\x71\x64\xe2\xd6\xa4\x4f\x6b\x3e\xa1\xe1\x09\x14\x8a\x69\xdd\xe2\xda\x8a\x29\x05\x68\xee\x9c\xea\x32\xeb\x0f\x28\xd2\xa8\x15\x4b\xb6\x94\x42\x6b\xce\xa0\xf2\xb4\x4a\xc5\xba\xc9\x8a\x5d\xb6\xe9\x5e\xe5\x27\x7e\x55\x51\xef\x6e\x2a\x71\xe3\xeb\x4a\x77\xe8\xb6\x72\x17\x60\x76\x25\x26\xf3\x27\x98\x25\x78\x82\xff\x8c\x52\x05\x00\xf2\x6c\x70\x87\x59\xbe\x39\x54\x7d\x42\x55\xdc\x9f\xb9\x7a\x3f\x32\x71\xbc\x0d\x56\xd9\x50\xb4\x9d\x39\x3c\x09\xd1\x29\x53\xfd\xf1\x3d\x1b\x45\x99\xa2\xbf\x6c\xa8\x25\x01\x01\x12\x00\xfb\xad\x2a\xe1\xfb\x5e\xd8\xca\xc2\xa3\x45\x6e\xea\x80\xe0\x3b\x34\x7a\x30\x93\x39\x9a\xc0\x85\x7f\xaa\x82\xb4\x9e\x49\xc3\xbc\x08\x42\x5e\xdd\xef\xfe\xb4\xe6\xba\x77\xbf\x43\x0b\x2c\xf6\x07\x60\xcc\xfc\xff\x69\xb1\x45\xd0\xf8\xa7\x15\x24\xe3\x66\x34\x58\xac\xf9\x3b\x81\x0c\x04\x1f\x57\xf0\xb6\x66\xea\xf6\x48\xdf\xa6\xa1\x8d\x59\xe4\xc0\xc1\x95\xce\xf3\xe3\xca\xf0\x3f\x2e\x4f\x99\x66\x37\x4a\xd2\xa4\x1d\x0d\x92\x34\x69\x9a\x74\xd1\x49\x56\x49\x70\xa4\xe4\xae\xcf\xab\x1a\x60\xcf\xa4\xab\xc5\x60\xad\xd5\x94\x6a\xb7\x0a\xe0\x2e\xa9\x3d\x68\x31\x35\x4d\xd7\x55\x29\x92\xcc\xb4\x08\x8b\x26\xf3\xf3\x25\xb7\xc2\x2f\x7c\x05\xd9\x17\xa2\xf1\x4f\x11\x01\xf2\x49\x95\xa7\x50\x27\x91\x80\x01\x23\xf6\x44\xa0\xbc\x08\x4e\xb8\x74\x30\x0a\x7b\x28\x96\xe2\x45\xfd\x48\xbd\xdf\x1f\x95\x72\xb5\x99\x85\x7a\x6e\xe3\xb1\x24\xea\xfb\x6a\x2e\x7d\x5f\x35\x9f\xa6\x36\xa2\x4e\xdc\xe2\x37\xb1\xcd\xdd\x53\xe4\xef\x2b\xaa\xa1\xe2\x8c\x13\x8b\x32\xb1\xcd\xf2\xae\xcd\xc9\x97\x82\xee\xcf\x55\x70\x7d\x35\x37\xf8\xdb\x8f\xc9\xb9\xd8\x9b\x22\xf4\xf5\x4e\x6e\x16\xd3\x4a\x53\x6f\xab\xd8\xb6\x9f\x26\x6f\xd8\x66\x0e\x0b\x50\x40\x78\xec\xd5\xe6\x7c\x78\x5c\xb5\xaf\x46\x51\xb4\x73\x03\xf4\x6a\x54\x1c\x39\x63\xf3\x3c\x49\x2b\x04\xc6\xc6\xf7\x89\x03\x2e\xfa\x97\xca\x1e\x3b\x51\xd1\xaf\x93\x41\xf0\x92\x08\xa5\x2d\xe2\xf0\xe1\x7a\x3b\x49\x7b\x54\x16\x40\x5c\xc1\x86\x76\xec\x5b\x8f\xcd\x55\xd0\x0a\x05\x7c\x0b\xd3\x26\xd3\x3a\xe6\xd8\xeb\x9c\xfd\xe7\xab\x62\x23\x7a\x4f\xa9\x18\x3a\xcd\x0b\x8c\x38\x64\xee\xf7\x15\x13\xed\xfe\x38\x01\x23\xcb\x7f\x5a\xa1\xc6\xdf\xa2\xa8\x47\xbc\x84\x3c\xcb\xec\x01\x09\xc2\xf2\xd8\xba\x85\xfe\x15\x3e\x41\x8b\x1d\x50\xb9\x13\xb4\xc2\xb3\xca\x12\x46\x39\x0a\xb9\xd7\x40\x8c\x01\xe0\x73\x06\x71\x96\x98\x14\x51\xda\xe7\x64\xf3\xe7\xf7\xbb\x1a\xaa\x9a\xb9\x70\xb8\x16\x53\x5d\x5a\x49\x29\x39\xfc\xb5\x67\xc8\xed\x0f\xe0\x32\x00\x6a\x64\x96\xe7\x79\x4b\x71\xec\x3b\x6f\x33\x75\x13\xe3\x84\x4f\xb8\x9f\xd0\x4d\x7a\x6f\x2c\x77\x8a\x86\x90\x13\x50\x2f\x66\x23\x40\xb1\x89\x91\x97\xb2\xe5\x65\x02\x19\xcd\x4f\x94\xba\x49\xcf\xc4\xa1\x69\x62\xc3\x47\x96\x09\x37\x0f\x3e\xae\x62\xce\xb0\x31\x18\x36\x0a\xfc\xee\x93\x0d\xb5\x3d\x8d\xfc\x54\xbf\x55\x21\xb8\xf7\x7a\x91\x33\x84\x59\xce\x54\x57\xec\x7b\x13\x68\x12\xe0\x93\x91\x72\xfe\xcb\x32\x31\x3a\x52\x89\x2a\x3f\x35\x49\x5b\xcb\x2b\xf3\xac\x4a\x54\x15\xea\x33\x6e\x5b\xfe\xb8\x59\xae\x5c\xeb\x27\x6a\xca\x1e\xc2\xd3\xa4\x7f\x4d\xf3\x7a\xee\x29\x81\xaa\xbe\x89\x4d\x8f\x25\x12\x44\x9b\xa4\xa6\x44\x4b\x7c\xd2\xde\x0a\xb3\x66\x64\xc2\x1e\x27\x43\xce\x6f\xca\x75\x6a\x9d\xaa\xd4\xca\xc8\x4d\x1f\x38\x22\x37\x87\x05\x1e\xc9\xbb\x5c\x0a\x8c\xc8\x0c\xb6\x15\x9a\x3c\xf5\x2c\x77\x54\x2e\x80\x45\xf3\x71\xa5\x89\x6c\x37\x8c\xc2\x7e\x3f\x8c\x6d\x36\xa1\x9d\x26\x77\x34\x94\xa6\x34\x3b\x66\x60\xbc\x1f\x57\x2b\x73\x3f\x4d\xda\x61\xfe\x94\x2f\xbe\xee\xa4\x8a\x11\x7e\xef\x6d\x2d\xa0\xfd\x09\x12\x03\x0c\xb7\xf7\x35\x2d\xfd\x23\x9a\xd7\xa8\x65\xed\x22\xb7\x2c\xcc\xfd\xab\x40\xb9\xf9\x13\xc8\x07\xb0\xd3\x3f\x4b\x23\x0f\x05\x6d\x48\xb4\xb0\x1f\x0b\x66\x05\x16\x36\x60\x8a\x40\x22\xef\x8d\xed\x70\x2a\x4a\xb3\x47\x4c\x2f\x8c\xed\xae\xda\x97\xa5\x22\xb3\xae\x74\xde\xb9\x41\x88\xff\x41\x61\xa9\x97\x03\xe5\x40\x76\x7d\xa8\xbc\xc9\xae\x97\x62\x9f\xd9\xd9\x7a\x7f\x90\x52\x65\x0d\xc3\x05\x21\xdc\x9d\x40\x69\x6a\xde\x51\x25\xc0\x4e\x02\x4d\x2f\x46\xbc\x28\xec\xdb\xba\x1a\x28\xc1\x8a\x87\x5e\x77\xb5\x1b\x52\xcf\x77\x4d\xa5\x70\xa7\x95\x46\xf7\x69\xd5\x9f\xd8\x1e\x58\x94\x50\xb0\x76\xdf\x51\xa8\xf2\x9d\x52\xb8\x2f\x33\xa4\x67\x63\xba\x18\x76\xab\x45\x0c\x8a\x84\xf0\xee\x5f\x7f\xdb\x33\x0b\xf5\xa4\xdd\x26\x20\x60\xc2\x2f\xf6\xe7\xf0\x1a\x45\x97\xdd\x77\x30\xdd\x29\x89\x04\x92\x04\x34\x77\xc2\x09\x8d\x47\x14\x9c\x6a\xae\x0d\xff\x82\x02\x78\xda\x49\x02\x7d\x09\xa5\xd8\x11\x28\x41\xcd\xb7\xaa\x50\x87\x66\x14\xc6\x61\x93\x17\x0f\x2c\x4b\x10\x5e\xe5\xe3\x2a\xbf\x1d\xdb\x4c\xe2\xa4\x17\x66\x39\xcf\x18\xee\xab\xa2\xdb\xc1\x83\x67\x38\x18\x88\xf6\xad\x12\xa0\xb2\xf0\x4a\xdd\x74\x3a\xa9\x59\xa6\x74\xca\x9b\x2d\x05\x8e\x41\xf9\xf7\xc7\xc2\x41\xdb\x6a\xe1\x35\x17\x9b\x96\xc8\x58\x7a\x28\xee\x5c\x49\x44\xa1\x08\x59\x85\x3c\xc5\x21\xa7\xab\x4d\xb9\xca\xf6\x85\xc7\x24\x58\xf1\xb2\x4d\xf3\x70\x31\xc2\xfa\xa3\xed\xea\xf8\x58\xeb\xdc\x25\xcb\xb6\xb7\x08\x5d\x4f\x09\xc2\xe0\xcf\x86\x42\x31\x0b\x55\xf2\x3f\xe0\xed\xf3\xbf\x94\x96\xbd\x85\x57\xea\xb4\x52\xd6\xbc\x2c\xe8\x45\x95\x60\x96\x5f\x85\x2a\x76\x22\x04\x52\x31\x95\x0f\x97\x2a\x08\x33\x45\x06\x39\x48\xd1\x97\x25\x32\x19\xf4\x19\xd1\xc9\x90\x4c\xb9\x67\x9a\x5d\x42\x8d\x76\x29\xd1\xf7\x33\xda\x3f\xe8\xaa\x22\xed\x6c\x0d\xfd\xc2\xfb\x5c\x43\x19\x8e\x20\x53\x42\x90\xf7\xa8\xaa\xd7\xa8\x18\xe9\x99\x2c\x10\x88\x04\xce\x6a\x66\xeb\xd9\xb1\xba\x5a\xdc\x0e\x5b\xbc\x59\x16\x83\x00\x45\x62\xae\x93\xf1\x49\xa9\xaa\xee\xba\x5e\x93\x9e\xcd\xc3\x1e\x50\x02\x6e\xb5\xd3\xca\x1a\x97\x4a\x31\x63\x11\xa8\x87\xfc\x80\xb1\xb4\x3e\x54\xd4\xf3\x87\x0a\xb2\x8c\x93\x62\x29\x3d\x30\xeb\x69\x1e\xbe\x75\x6a\x2d\x50\xde\xc3\x6b\x43\x55\xa4\xe2\x72\xac\x80\x7c\xbe\x6a\xbe\xa1\x9a\xe9\x98\xcf\x17\xc6\x9d\x49\x0f\xe6\xdf\x51\x06\xe3\x1b\xba\x57\x88\x2d\x1c\xc1\xd3\x7a\xaf\x94\xd1\xbc\x36\x57\x6f\x93\x4a\xca\xab\xfb\x5d\x49\x9c\xde\x96\xd4\xca\x2b\xd0\x8f\x2c\xb2\x9c\xfa\xbb\xc0\xe2\xa2\x6a\x68\xba\xa8\x1d\x2b\x7b\xfd\x5c\x3a\xeb\xb1\x5f\x70\x8e\x0e\x10\x07\x71\x17\xc0\xbb\xf5\xa1\x68\xc8\x2f\x0f\xa2\xd8\xa6\x66\x31\x8c\xc2\x1c\x03\x93\x65\x2b\x02\x05\x87\x5e\xd2\x4f\x24\x0d\xe3\x66\xd8\x8f\x98\x48\x88\x34\xe3\x9a\x52\xe2\xb9\xa6\xfb\xd3\xda\xf9\xde\xe2\x6e\x91\xe2\xee\x69\x6c\x9b\x2c\xa2\x31\x77\x5f\x39\x3a\x3d\x85\x01\xec\x1a\x25\xa7\xa7\x99\x65\xf3\x4d\x6c\xeb\xd8\x7e\x39\x7d\x00\x9a\x7f\x5d\x73\xe5\x0f\xe3\x85\x08\xac\xa1\x83\x7c\xfb\x86\xa9\x79\x6e\x37\x88\x54\xd2\xa5\x51\x05\x0c\x27\xfd\x41\x24\x85\x73\x04\x58\xc0\xfa\xf8\xd8\x57\xf0\xdb\x6d\x1b\x67\x96\x44\x3d\x31\x9a\x34\xc7\xff\xd2\x63\x05\x14\xb3\x41\xca\x26\x91\x6c\xab\x38\xf4\x9a\x2f\xd8\x27\xb1\x02\x5d\x55\x4f\xf4\xe7\xfe\xfe\x7f\x3e\xa6\xf4\x5f\x24\x1a\xa2\x6f\xaf\x1a\x54\x62\xd3\xe7\xf5\xd7\xf1\x30\x94\xf4\x58\xa5\xf1\x5a\x98\x31\xbd\x48\xac\x2f\x6b\xca\xed\x52\xfb\x3d\xe6\x36\x6e\xd9\xd6\x94\xf2\x50\x9d\x18\x79\xa9\xf6\x0d\x55\x2b\x9b\x50\xc6\x4e\x48\xd4\x30\x9e\x1e\x05\xfb\xbc\xd7\xc1\xcb\x68\xe5\x14\x3e\x5a\xcd\xeb\xb4\x0d\x55\xcc\xfe\xa0\xca\x89\x62\xc5\x1a\xd8\x4e\x61\x83\xa8\x8d\xfc\xc6\x51\x6b\xc8\x5a\x9a\xad\xc6\xad\xb0\x69\x72\x74\x9d\x39\xde\x9e\x8b\x2e\x40\x98\xc1\xfa\xb5\x67\xe4\x9f\x74\x92\x77\x9f\x51\x6d\x50\x3b\x46\x94\xe0\x61\x97\x84\x2d\x29\x16\x95\xc9\x91\x22\xf9\xec\x18\x29\xc1\x96\xdd\x28\x7e\x61\xf8\x6e\x52\xbd\x85\x9e\xe7\x8b\xe0\xe5\x80\x7d\xc3\x16\xe8\xec\xf1\xaf\x9c\x28\x77\x8e\x7c\x73\xd6\x0e\xa0\xe8\xd2\x57\x5b\xbc\x74\xec\x09\x8f\x10\xd1\xa2\x03\xfb\xde\xd0\x8b\xd5\xee\xa6\x84\x10\x0e\xf3\x7f\xb7\x42\xcd\x60\xae\xde\x07\x67\x43\x2b\xea\x0e\x7d\x3e\xcf\x4c\x3d\xbc\xc7\x87\x2a\x03\x49\x6d\x7b\x10\x73\xb7\x82\xe6\x8f\x0a\x4f\xd4\x43\xf4\xed\x30\xed\x91\x6d\xbf\x73\x3b\x99\x9e\x71\xe0\x10\x3d\x19\xc4\x47\x1f\x62\xd5\x04\xac\x78\x5d\xcb\x54\xa0\xde\x80\x9c\xfa\x7f\x52\x4e\x38\xbb\x20\xc0\x27\x10\x8f\x02\x85\xde\x1a\x8e\x65\x40\xbd\x30\xcb\xc6\xec\x16\xef\xa8\xd2\xcb\x9d\xa1\x27\xd2\x9b\x74\x91\x3d\x70\x00\xc5\x02\x99\xe3\xe3\x4a\x92\x57\xcf\x84\x71\x3b\x35\x3d\xe9\x0f\x06\xb6\x7b\x71\xa8\x9a\xa8\x1f\x28\xf7\xb8\x2a\xe7\xbe\x9e\xc9\x6d\x2a\x09\xa4\xb4\x61\x6a\xee\xa2\xb7\x3b\x5c\x36\x2d\x8c\x5f\x11\xec\xa3\xd7\x2e\xe6\x47\x74\xe1\xd2\x7b\x54\xd1\xc3\xd5\xb5\x51\x5f\x45\x37\xe3\xf0\xf9\x18\x0c\x92\xb6\x9e\xaf\x39\x57\xd0\x29\x1a\x81\xba\xab\xd5\x49\x89\xf9\xae\x98\x5d\x18\xbf\xf8\xb6\x2d\xa2\x7b\x8d\xf9\xd9\x03\x46\xbe\x48\x0c\x4b\xd4\x1c\x36\xe1\xc0\x28\x22\xc4\xb4\x25\xbb\xf2\x6b\x31\xe8\xa4\x4c\x41\xf0\x88\xa8\x90\x52\x0c\xea\x02\xf1\x03\x63\xdc\xd8\x2f\xf1\xb4\x7e\x93\xea\xe8\xf8\xc5\xab\x88\x02\x50\xda\x7e\xb2\xe1\x73\xeb\xd1\x50\x71\x4d\x76\x8d\xb6\xaf\x85\xd3\xd3\x48\x20\x38\x28\x42\x84\xc5\x90\x38\x9f\x94\x68\xb2\x07\x0f\xce\xd7\x97\x4d\xca\x7d\x72\x55\x3c\x5d\x1f\x54\x77\x93\xac\x1f\xe6\x26\xda\xa5\x64\x9e\xb6\x34\xbc\xc7\x2d\xab\x7c\x82\x27\x82\xf2\x1d\xd3\x32\x5d\x0b\x44\xf1\x78\x58\x92\xad\xaa\xf2\xd0\x0a\xb3\xce\x80\xb7\x2f\xcc\xa1\x75\x65\xff\xb1\xae\x46\x7f\x3f\x49\x97\x00\xb0\x01\x6e\x81\x67\x1e\xdb\x5d\x29\xa9\xfa\xf2\x36\x29\x5b\x59\xdb\xae\xec\x56\x53\x7a\x72\xe4\x77\xaf\x9f\xa2\xc5\x4e\xa6\x27\xa1\x5c\xf2\x54\x7c\x5d\xe2\xa2\xf2\x1a\xe5\x39\x84\xd5\xf5\x92\x0b\x70\x3a\x49\xd2\x5a\x09\x23\xae\x8a\x63\x21\xd0\x9b\xcd\x23\x3c\x37\x59\x23\x7d\x78\xb8\x98\x44\x2d\xbd\xb1\xd1\x0d\xc9\x26\x37\xee\x35\xb9\x62\xc3\x4e\x37\x07\xf2\x84\x91\x03\x30\x0d\x3b\xec\x2d\xd5\x4e\xb7\xae\x6a\x05\x8b\x51\x98\x1f\xe5\x78\x08\x0f\xed\x9b\x81\x7f\x80\xdf\xf4\xb4\xa5\x24\xe9\x91\xac\x9b\xf4\x1e\x15\x73\x82\xc1\x64\x84\xa9\x52\xa6\xd5\x40\x8a\x6f\x2f\xe9\x13\xbd\x85\xb5\x1a\x8a\x91\x86\xb6\x4d\x16\x66\xe2\x93\x52\x72\x25\xaf\xa8\x99\x0c\xe2\x26\xd3\x19\xf1\x3b\xac\x2b\xcd\x27\xc3\x3d\x61\xbd\x9f\xda\xf6\xcf\xd5\xc3\x9f\xa6\x07\xa0\x06\xdd\x0c\x6f\x56\x17\x87\x13\x87\xfe\xe1\x97\x3d\x33\xe0\x97\x7e\xc1\x6f\x3d\xae\xf3\xe8\xc9\x86\x37\xf6\x7e\x96\x74\x92\x51\x56\x15\xbd\xb9\x3b\x81\x6a\x53\xd8\xd7\x50\xb1\x1b\x24\xa4\xb1\x01\xfd\x8d\x46\xed\x17\x0f\x71\xe0\xf8\xcf\x69\x74\x20\xf0\xbf\xc6\xd8\x1c\xc6\xca\x0b\x23\xc2\x60\xf1\x40\xb7\x10\xd1\xcb\xfc\xa8\x7d\xf1\x35\x0e\xac\xfe\x8c\xc6\x3d\x56\xe8\xe7\xa8\xff\x49\xd4\x9d\x8a\x3d\x19\xeb\xd8\x29\xda\x9e\x10\x0e\x3e\x1c\x2a\xb7\x9b\xa7\x41\xc8\x11\x8d\x14\x02\x80\x85\x42\xae\xe0\xd4\xad\xa1\x17\xc1\xfc\xfe\xdf\x1d\x3d\xa9\x5c\x0a\xc8\x0b\xc6\x99\x40\x52\x0d\x0d\x6b\xd4\x16\x1e\x8b\xb8\x43\x7a\x15\x69\x40\xf5\x88\x22\x3e\x52\xaa\xde\x83\xd8\xac\x98\xd4\x82\x7a\xf0\xea\x7e\x2e\xf0\x61\xcf\xe4\x63\x17\x95\xb6\x4d\xda\xb3\xa9\xa0\x6b\x48\x6d\x26\x75\x78\xf2\x50\x31\xf3\xce\x3e\xdb\x78\x5e\x67\x7a\xac\x1d\x5e\x03\x2a\xec\x92\x95\xe2\x41\x48\x40\xe9\x43\x42\xd3\x6c\xda\x22\xf5\xd8\xed\x03\xd3\x5b\x18\xcf\x00\xba\x2f\x0c\xc7\x74\xbc\xc7\xf5\xcb\x6b\xca\xde\x90\x1e\x13\x77\x61\xe2\xd1\x20\x59\xb8\xaf\x6a\x0f\xcd\xc8\x64\x59\xd8\x86\x42\x11\x2a\x06\x70\xcc\xe4\x63\xe5\x0a\x90\x0d\xd2\x7e\x1a\x66\x36\x9b\x52\x05\xcd\x4d\xda\x89\x58\x18\x27\xd0\x0d\x84\x27\xb4\x5e\x09\x62\x21\xd1\xcf\xa9\xd8\x24\x6c\xde\x8d\xd9\x68\x54\x94\xe0\x14\xb1\x13\x1f\x07\xd3\xe1\x41\xa0\xcb\xb3\x83\x8c\x8d\x41\xc4\xa5\xfc\x98\xb6\x29\xb8\xa8\xaa\xe1\x1b\x5a\x1f\x1a\xed\x67\x00\xe7\xca\xea\x54\xaf\xcd\xef\xaf\x2f\x26\xd6\x41\x72\x18\x0b\xdc\x0e\xc6\x27\x0a\x3d\xe9\x67\xab\x51\x14\x0e\x7a\xbb\x8a\x67\x88\x87\xff\x3b\xb4\x18\x49\x4f\x42\xcd\x39\x69\x3e\x01\x22\xaf\xd8\x0f\xd3\xa5\x8a\xc6\x9e\xea\xb8\xbf\x57\x11\x23\x89\x19\xab\xd7\x5e\x74\x6d\x7f\xbe\x05\xb0\x04\x18\x14\x2f\xa4\x9e\x77\x53\x6b\x72\x1b\xbb\x4f\x4a\xd2\xa8\x12\xc8\xaa\x66\xf5\x28\x61\xd8\x4f\xd8\x91\xc5\x0d\xb2\x57\x5f\xa0\x18\x87\x6b\x25\xe4\xca\xb7\xfe\x45\x28\x36\x89\xae\xcb\x05\xdd\x27\x82\x75\x01\x89\xea\x83\x52\xba\xfe\xf9\x7a\xd6\x35\x11\x71\xc0\x51\x16\x15\x13\x3d\x5f\x8f\xd4\x5e\x0d\x61\x96\x44\x26\xe7\xd2\x34\x86\xe0\x24\x2d\x80\xce\x6f\xb5\xb8\x73\x19\x8e\x7e\x11\xc8\xfa\xb6\x99\x9b\xe6\x20\x2a\x92\x1f\xd7\x6a\x71\x44\xed\xed\x47\x74\x0a\xde\xcf\x27\x3d\xe8\xbf\xa3\xe1\x8d\x66\x4f\x2b\x74\xe8\x1c\xe6\xab\x74\x56\x6c\xdf\x43\x8a\x00\x47\xf9\x50\x69\x56\xe8\x36\x0b\x3b\x57\x1e\xb6\x6d\xea\x6b\x18\xef\xa5\xf1\xcc\x2f\x2f\x0a\xbf\xa1\x2d\x72\x99\x68\xcb\x9a\x2c\x34\x26\xb1\x72\x61\xd0\x80\xb2\xfe\x00\x23\x0f\xd4\xa5\x4d\x9e\xc3\x18\xba\x3b\xe1\x64\xe5\x86\x6b\xb1\x39\xe0\x3d\x4e\x02\x0b\x61\x73\x4f\xc4\x96\x32\xe7\xe8\xde\x25\x7e\xf6\x8f\x6e\xee\xb5\x7f\x80\x91\x20\xfa\x81\xda\x9c\x00\x29\x3e\xc2\x9a\x9b\xd5\xd8\x5a\x6e\x23\x7b\x44\x09\x8f\xbf\xad\x8a\xb1\x6f\x3f\x96\x77\x4b\x1e\x10\x13\x3e\xbf\x84\xdc\x0a\x30\xa5\x1b\x5a\xfa\x6d\x57\xe3\x05\xc7\xf1\xef\xf5\x53\xdb\xb5\x71\x16\x2e\x43\xf8\x19\x61\xe1\xf7\x14\x99\x7e\xe7\x48\x35\x18\x3c\x52\x4b\x92\x03\x25\x5f\xdd\xef\x7a\xd3\xe9\xf9\x4a\xd3\x7a\x05\x3d\xd1\xe4\x89\x28\xd0\x60\x8d\x5b\xa7\xa0\x8a\x8f\x4b\x4f\x63\x7e\x7f\x3d\xb5\x34\x6c\x6b\xbe\x13\xe3\x78\xa0\x48\x42\xc7\x4b\x4b\xec\xc1\x83\xf5\x41\x9c\x92\x92\x7d\xf1\x33\x08\x0a\xbe\x35\xf4\x01\xc2\xb7\x54\x19\x9c\x8c\xe0\xd2\x38\x7b\x52\x9b\xbc\x0c\x15\xd7\xe0\x96\xba\xbe\xb7\x86\x5e\x0e\xe5\x21\xd2\x07\xec\x1d\xb7\x79\x6b\xc2\xb3\xbe\xab\x34\xef\x11\x98\x88\x1c\x16\x5d\x37\xea\x43\xa7\xb8\x47\x9c\xe9\xba\xb4\xb7\x63\x0b\xbf\x8c\xdd\x12\xb7\xb7\xa6\x24\xb4\x90\x77\x2b\xa5\x74\x32\x4d\xe0\x70\xf3\xa3\xc0\x2b\xde\x9e\xd3\xf6\x17\x1b\xc1\x36\x6b\x81\x83\x07\x8b\x55\x7f\x9f\x32\xc3\x7c\x38\xd6\x86\x46\xb3\x4d\xa2\xb6\x22\x2d\x42\x88\x35\xd9\x50\xfa\x2f\xa8\x87\x23\x5d\x43\x66\x8c\xa4\xec\x06\x22\x4a\x27\x10\x50\xbc\x00\xfe\x2a\x2a\x40\x63\x03\xe0\x24\x5e\x16\x28\xe5\x13\x6b\x8a\x51\x38\x2f\x23\xe8\x9e\x52\x8f\xdb\x50\x2d\xdf\x67\x95\xfa\x78\x37\xec\x74\xa3\xd5\x49\xdf\x96\xf2\x54\xc3\xcb\xa5\xe1\x01\x01\x39\x60\xfd\x72\x8c\xef\x7f\xec\xb8\xd8\x26\x4c\xfb\x91\x89\x59\xe7\x45\x5b\xe4\x89\x3c\x87\x23\x4f\x87\xad\x6e\x7f\x00\xfa\x87\x5b\x26\xbc\x1a\x46\xd9\x45\x74\x76\xb6\x1e\x99\xe6\x12\xa7\xf9\x42\xab\x50\xa4\x90\xd3\x5a\x0b\x7e\x43\xf9\x2b\x44\xd6\x64\xf9\x13\x5e\x87\xef\x04\x0d\x0f\x14\xcf\xcf\x04\xfe\x65\xc1\x85\x9f\x2d\xda\xf0\x65\xd2\xc5\x5c\x3c\x10\x8c\x0c\xf8\x2a\x8f\xe9\x56\x4a\x73\xb8\x1f\x5b\x71\x92\xae\x98\x55\xa6\x8e\xa0\x00\x7a\x11\xeb\x2e\x9f\x54\xf5\xc0\xf6\xad\x89\x07\x39\x33\x2c\xb8\xd5\x8c\x1e\x1d\x80\xab\x77\x87\x6a\xe3\xbc\x56\xda\x38\x0f\x1e\x14\xb5\xd8\x44\x4a\x3e\xb8\x2b\x74\xc5\xf0\xb1\xd3\x98\x1c\xc4\x2d\x9b\xae\xa4\xa1\x58\x08\xe1\x86\x26\x94\x34\xeb\x86\xe2\xa5\xde\x2e\xa1\x19\xc5\x52\x12\x66\x4b\x13\x4a\x98\x16\x23\x57\x6e\x90\x1e\x1f\x3f\xe3\xe1\xf3\x2a\x77\x4a\xda\x68\xc6\xa9\xf9\xac\x8b\xdd\xdf\xf8\xa4\x24\x09\x4b\xf5\xf0\xd4\x2c\x5b\xe1\xfc\x39\x39\x62\xef\x3b\xb2\xee\x85\x26\x4c\xde\xf5\xf1\xb6\xe3\x58\x14\x7f\x8a\x68\x84\x39\x08\xb8\xcb\x1b\x95\x34\xca\x28\xc9\xf9\xe5\x89\x9a\x5d\x71\x6b\xe2\x10\x52\xd6\x0c\x9b\xa9\x77\x52\x6b\x97\x68\x3f\x1e\xe3\xeb\xf1\x49\x29\x5f\x5f\x78\x45\x69\x83\x7a\x2c\x80\x9e\x20\x1e\xf9\xbb\x43\x8f\xd4\x9c\x52\xdc\xca\xe2\xde\x6c\xd4\xa6\xfc\x55\x58\x2a\x63\xc5\x8b\x9a\xa7\xaf\x60\x8e\x4a\xd6\x20\x64\x54\x62\x24\x24\x04\x7a\xfb\x9f\xdb\x1a\xd3\x36\x47\xd1\xf9\xb1\x29\x6c\x3c\x48\x33\xc7\x0c\x41\x8b\xf6\x09\x95\xfb\xfc\xae\x4a\xc1\x9e\x3c\x55\x51\x4d\x39\x54\xb7\x26\xf5\x2d\x74\x48\x41\xbe\x33\xf4\xdd\x5b\x17\x55\x19\x68\xad\x8a\x8c\xda\xb2\xa6\x15\x51\xab\x95\x0b\xd3\xa1\xb5\x2c\xc2\xbc\x9e\x20\xd7\xb5\x51\x9f\x0a\x37\xaf\xee\x17\x89\x50\x2c\xab\xa2\x17\x5a\xa6\xae\x7c\xa9\xde\x49\x4d\x8c\xc0\xce\x69\x6b\x40\x1c\x55\xf6\x24\xbf\xe5\xc7\x79\x4a\x65\xd6\x50\x38\x72\xd2\x7b\x45\x43\x8e\x4f\x4a\xb5\x87\xc3\x87\xeb\x2d\xdb\x37\x69\x2e\xaf\x81\x99\x0a\x8a\xc4\x78\x7e\xa8\x22\x85\xcb\x55\x85\xe8\x6c\xc5\xda\xdc\xc6\x52\x1e\x47\xc2\xbd\xa5\x5a\xff\xb7\x1c\xad\x78\xd1\x44\x6c\xbb\x81\x54\x1e\x18\xbd\xe3\x39\xf8\x38\x7b\x8f\xea\xb0\xd0\xaa\x94\x14\xbc\x62\x36\x7d\x1d\xcf\x0f\x57\xfc\x21\xad\x8d\x8a\x0a\x35\xe3\xda\xb3\x3c\xf9\xa0\x63\x63\xbb\xd7\xe7\xfe\xff\x07\x76\x45\x20\xcd\xdf\x09\x14\xd3\x64\x8b\x96\x63\xa0\x88\xff\x12\xc5\x7b\x97\x07\x4e\xcb\xda\xfe\x88\x96\x60\x27\x0f\xeb\xba\x49\xf6\x40\xb7\x55\x54\x63\x94\x01\xeb\x3d\xe5\x4d\x9c\x85\x71\xd3\x3e\xa3\xa0\x9a\x1a\x6d\x71\xd8\x7d\xf7\x70\x6c\x29\x42\x8e\x4a\xcb\xf0\x87\xca\x52\x6d\xef\xc8\xa3\x51\x4f\x01\x93\x44\x36\xb4\xbb\x41\x81\x80\x6c\x1b\x74\x9b\xe2\x0d\x58\x5c\x34\xbf\xd9\xc0\x6b\xbf\x20\x28\xc0\xfc\xe7\x1b\x40\x30\xbb\x49\x77\x8c\xf9\xc0\xaa\xab\x62\xe6\x4a\xaf\x0b\x89\xc4\xcd\xd2\xc8\xa2\x90\xb7\x9f\xda\x8c\xfc\x13\x1c\x77\x1c\xa1\x13\x1f\x8f\x5e\x18\x07\x19\xc2\xc5\x81\xc4\x42\x48\xfb\x6f\x07\x5e\x52\xeb\x94\xc2\xc2\xff\x35\x01\xcb\x52\x5c\x53\x6d\xa1\x66\x29\x32\x71\x6b\xaa\xf6\xc5\xd7\x9c\x84\x95\xee\x99\xbe\xab\x01\x47\x74\x75\xe0\x1f\xee\x07\x4a\x74\xe4\x6e\x05\x7b\xe6\x50\xb1\x65\xb4\x06\x4d\xc0\xee\x88\xd4\x2e\xe2\x71\x68\x26\x0b\x1b\xc5\x97\xc2\xd7\xf9\xfd\xf5\x41\x6c\x4d\xb6\xaa\x7c\xae\xcf\x07\xde\x69\xe3\xbc\x52\xe4\x68\x26\x3d\x9b\xed\x53\x79\xf6\xad\x71\xb4\x9b\xae\x54\x48\x3f\xbe\x11\x8e\x5d\x7b\x11\x58\x7d\xa0\x3c\x9e\x2e\x00\x97\x72\x5a\x52\xc5\x90\xc3\xa2\x78\x5d\xe9\x2e\x3d\x45\x18\x93\xd0\x59\x54\xfa\xb7\xf1\xd8\x22\x7e\xcf\x74\x62\x9b\x87\x4d\x86\x85\xdc\x7e\xed\xf7\xee\xe0\x79\x55\x28\x5a\x1c\x84\x11\x6a\xd7\x33\x0b\xbc\x25\x5f\xa0\x29\xc4\xc7\x15\x04\xb4\xba\xe9\xd8\x38\x9f\xf0\xa5\xc7\x87\xf4\x94\xc5\xe8\xb0\xf8\xb0\xb0\xb1\x7d\x3f\x84\xa8\xac\x4e\xa8\x09\x8d\xf9\x89\xbb\x03\x09\x56\x1c\x03\xb6\xbf\xa9\xcf\xd7\xb3\x3c\x0d\x97\xa4\x8e\x23\x34\x18\xfa\x2e\x80\xd3\xf7\x14\x1d\xf3\xb2\x8a\x73\xbb\x26\x6a\x93\xce\x07\x20\xe1\x13\x34\xa3\x90\x4a\x6c\xd2\x4c\xc3\xaa\x73\x76\xe8\x69\x63\x50\x7f\x41\x1e\xc2\x52\xb5\xf8\xa3\xff\x11\xaf\x89\x4f\x28\x04\xc2\xcc\xae\x8d\x3c\xd0\x9c\x75\x93\x15\x9b\x02\x68\xc6\x0b\x05\x51\x85\x8f\xc7\xbc\xe6\xe3\x56\x12\x3f\x53\x5c\x04\x26\x10\x5c\xc2\x05\x02\xa3\xf1\x81\x9b\xdb\xd4\x66\x6d\xac\x5d\x8f\xa0\xed\x22\xd6\x41\xfe\x33\xac\x29\x88\xdc\xdf\x27\x0c\x0d\xe9\xe9\x71\x9e\x6f\x48\xd9\x4f\xd0\xf5\xb0\xaf\x88\xea\x33\x61\x9f\x42\x8c\xbc\x5f\x1f\xaa\xba\xde\x3a\xd6\x3a\x84\x6f\x00\x61\xc7\xa4\x49\x98\xda\x5b\x8a\x09\x5e\x2d\x72\xca\x30\x5e\xb6\x59\xee\x1c\x5b\xd8\x88\x42\xb1\xea\xd7\x14\xe9\x2e\x35\x71\x47\x98\x14\xac\x58\x1a\xa8\x96\xc1\xf5\x8a\xb6\x5e\x25\x33\x89\x15\x8c\x63\x3f\x3e\xd1\x12\xa5\xa9\x6d\x11\x77\x89\x1e\xad\xf4\x83\xd0\x03\x94\x4e\x11\xbf\x6a\xad\xd8\xc5\x8c\x54\x67\xbe\xf8\x9a\x90\x1b\x02\x6f\xfd\xfa\xcd\x52\xe3\xc0\xcf\xd7\x7b\x66\x09\x8c\x2d\xac\x64\x6b\x5a\x11\x66\xad\xa4\x63\x35\xb3\xa0\x3b\xf8\x9d\x06\x96\x14\x52\xe9\xa6\xf9\xc4\x05\xe6\xdb\x49\xa9\x08\xe5\xf6\x8c\x4a\xa4\x54\x84\x2f\x7b\x94\x67\x30\x99\x2b\x46\xab\x93\x4a\x8f\xe4\xac\x36\x18\x0a\x14\x71\xe3\x82\x12\xa2\x3e\xab\x18\x0b\x61\xdc\x1c\x20\xea\x71\x89\xa6\x2b\x91\x5f\xac\x8a\xc4\xf2\x41\x6f\xd1\x73\x10\x1d\x7a\xea\x14\xaf\xcb\xb4\xad\x22\x5c\xee\x47\x83\xde\xa2\xfb\x94\x2b\xba\xbb\xd2\xe6\xba\xf3\x33\xca\x6d\xdc\x9a\xf0\xdc\x82\xf7\xf0\xc4\x75\x9d\x02\xb8\xe2\xd4\xc8\x83\x5e\x26\xeb\x92\x2a\x67\xf1\xdd\xd2\xdc\xe9\xf7\xb6\xf5\xa1\xa2\xa7\xe7\x39\x04\x5d\xf6\x78\x29\x5c\x6c\x4f\xaa\xac\x29\xb1\xf5\x5b\x98\xaf\xae\xee\xe7\xc5\x38\xf5\x1e\xc4\x1c\x01\xd1\x44\x2b\xde\x9b\xf0\xe2\x68\xea\x4a\x0b\x5c\x49\x4c\x74\x7e\x7f\x3d\x12\x61\x60\x2c\xba\x6b\xba\xf1\x70\xad\xc2\x5b\x63\xae\x9e\x87\x76\xcc\x3f\xff\x6d\xbc\x64\x69\x57\xa8\xd0\x2b\xcb\xa2\x41\xaf\x2f\xf3\x0f\x01\x20\xc7\x39\x7c\xe2\xca\xdd\x9d\x34\xec\xdb\x0c\x76\x13\x28\x2f\x71\xc5\x59\x24\x73\xe9\x77\x41\xe6\xc4\x2b\x17\x11\x18\x8f\xdd\x65\x6d\x20\x5a\x2e\xdb\x3e\x78\xd0\x65\x85\x55\x2a\x47\x5d\x33\x88\x26\xfc\x04\xdb\xd0\x82\xc7\xbf\x33\x1c\x53\xef\x7f\x46\x49\xad\x37\xc3\x16\xeb\x5e\x60\x5a\x3c\xa0\x4e\x39\x3c\xf7\x0b\x9a\x89\x74\x75\xe8\xeb\x2b\xd9\xa0\x6f\xd3\x2c\x37\x69\xa6\x6c\x40\x4e\xd1\x27\xf9\xb8\x42\xcd\xa7\xde\x37\xab\xc9\x00\xeb\x9c\x73\x9e\x77\xb6\x68\xda\xa1\xb2\x9b\x48\x7b\x4b\xd5\x7a\x58\xc5\x13\x36\xcd\x25\xd3\x91\x34\x02\x91\x26\xb7\x28\xf3\x49\x29\xf5\x5c\x78\x85\xb4\xcd\x6c\x5c\x53\xfd\x53\x6b\x14\x9c\xf0\xb1\x8a\x04\x54\x4f\x37\xbd\x6f\xee\x58\xa5\x95\xc0\x45\xd9\xb3\xb3\x5b\xd7\x03\x2d\x9c\x8b\x37\x20\x7c\x11\x2d\x36\x6a\xc8\x8a\x64\xce\x49\x8e\xd1\xa7\x9c\x8d\xad\xeb\xfd\xfb\xab\x31\x2d\x33\x0a\xc4\xa5\x35\x33\x59\x84\x56\x96\x23\x1d\xcd\xef\xd7\x8e\x8a\xb3\xde\x52\xe8\xe0\x41\xe7\xae\xa8\xf4\x73\x36\x95\x06\x63\x66\xa3\xe8\x49\x9f\xe4\x89\x8e\x31\x80\x8d\x7b\x5a\xe0\xf5\x8a\x56\x42\xd5\x82\x71\xf0\xe2\xc7\x16\x7c\x43\x95\xb4\x77\x80\x5b\x81\x40\xee\x0c\x1e\x88\x70\x6e\xe8\xfa\xf1\x04\x26\x1b\xbe\xc5\x97\xf3\x7f\xae\xa8\x05\x92\x2e\x26\xfd\x7e\x92\xe6\x83\x38\xcc\x43\x09\x74\x44\x9c\x1d\x97\x8b\xe5\x8f\xc3\x1e\x11\xe0\x2a\x8f\xc2\xb9\x7a\x94\x2c\x4b\xde\x27\xa2\x0a\x8a\xe4\xbe\x56\xaa\xca\xfc\x7c\x7d\x25\x4d\x8a\x59\xef\x9a\x64\xdf\x53\x7c\xa1\xf7\xbc\xa8\x41\x6e\xa2\x88\x8b\x21\xdc\x7a\x8c\x2f\xc6\x78\x62\x4c\x01\x69\xed\x2d\x95\x56\x15\x1b\x74\xbc\x87\xaa\xb2\xd8\xd2\x6e\x6a\x8f\xd8\x89\x91\xe7\x4a\x9e\x1a\x2a\x69\xdc\x75\x34\xef\xe0\x2d\x41\x37\x53\xfa\x10\x3d\x39\x86\x8b\xd3\x58\x07\xdf\xe1\x27\x85\xfd\xe0\xf2\xf0\xb3\xa1\x0b\xca\xd2\xdc\x74\x6c\x3b\xf2\xfa\xea\xe2\x19\xa8\x9a\x3b\xd7\xd4\xea\xdf\x33\x1d\x73\x34\x8c\xa5\x30\xe9\xb8\x8e\x4e\x5e\xf6\x99\x86\x87\x27\x9f\x40\x72\x86\x99\x78\x5e\x67\x97\xe7\x03\xaf\x89\x38\x88\x9b\x10\xc4\xcd\x57\xf7\xd2\x97\x22\x92\xfc\x16\x42\x10\x24\xb6\xb7\x94\xd6\x08\x7a\x9b\x11\xc7\x6c\x21\x5f\xe0\x3f\x1a\xaa\xe6\xff\x9b\xf4\xaa\x98\x5b\x1e\x78\x49\xbb\x1a\x38\x6f\x62\xef\x5a\x8c\x7e\x09\x95\xb7\x2f\xae\xf3\xfb\xeb\xad\xd4\xac\xc4\x94\xe4\x39\x95\x99\x57\xf7\x3b\x40\x58\x31\x6b\xde\xc2\xdd\x21\x64\xdc\xd9\x70\x84\x84\x5f\x86\x2e\x9c\x34\xd7\xfb\x8a\xca\xa3\xa1\xc7\x6b\xce\x81\x9b\x80\xb7\xf8\x64\xe3\x05\x1d\x5a\x24\x69\x6a\x9b\x79\xb4\xaa\x7d\x05\x58\xfa\x9a\x4f\x54\x7b\xb5\x88\xc3\x3f\x5e\x1a\xde\xd1\xb4\x07\x79\x48\x25\xbc\x9a\x02\xa5\xe1\x73\xc2\xc7\xdb\x0d\x81\x5f\xdd\x5f\x7f\x75\xff\xeb\xe4\xd7\x84\xd8\xe6\x7b\x81\xa7\x23\x3c\x52\xe5\x4d\xe4\x73\x58\xb4\x3f\x18\xaa\x14\xee\x98\x42\x2a\xd6\x28\x21\xe2\x0f\x97\x72\xd8\xd7\x66\x16\x9c\xef\x68\x11\x56\x33\x6e\xa2\xa5\x72\x3e\xac\x6c\xd5\x5d\x34\xb1\x4d\x43\xc3\x52\x9e\xc8\x76\xef\xaa\xbe\x8d\xbb\x55\xea\xe2\x2d\xdb\xb6\x64\x0e\x52\xab\x69\xd9\x20\xd7\xf8\xf1\x51\xa9\xe0\xf5\xea\xfe\xd9\x7a\x3f\xc9\xfb\xc9\x20\x4d\x43\x4d\x56\x3d\xa1\x3a\x6d\x4f\x94\x1a\x34\xa6\xa7\x8b\xcc\x3c\xcb\xc3\x9c\xcc\x34\x69\x20\x8a\x02\x3f\x7d\x89\x48\xf3\xab\x86\xf9\xd4\xf4\x8b\x2d\x97\x8a\x12\x08\x51\xee\x2a\xfe\xfc\xf9\xa1\xea\xaa\x73\x7c\xa3\x56\x1a\xb6\x49\x07\xce\x43\xb0\xbf\x89\x78\x85\xdf\x4a\xe0\xe7\xeb\xbb\x6a\xfb\xcd\x56\x6c\x3f\x9f\x2c\xbe\x11\xeb\xc6\x37\x28\x59\x72\xf6\xf8\xf3\x12\x57\x7d\x63\xa8\x6c\xf3\x4b\xfc\xad\xc3\x87\xeb\xad\xd5\xd8\x64\xf9\x6a\x4d\x69\xb4\x62\xd6\x8a\x81\x77\x95\x04\x66\xd7\xa4\x2e\xbc\x75\xc8\xac\x83\xf6\xd6\x15\x11\xad\x6d\x7a\x61\x14\x9a\x14\x4f\x5e\xdc\x58\x3c\xcb\xe0\x7b\xa5\xef\x9f\x59\x80\x77\x0a\x37\xf4\x60\x59\xb8\xad\xc4\x48\x6e\x3f\x5e\x79\x3d\xb6\x69\x87\xa0\x03\x3f\xc4\xb9\xbe\xc5\x27\xd5\x25\xd4\x30\xee\x0f\xb8\x02\x28\x77\xad\x9e\x80\x8b\x18\x4d\x56\x0c\x86\x09\x0f\xca\xde\x55\xac\x35\x54\x6a\xa5\xbb\x41\xd9\x2e\x9b\x3c\x8f\xec\x84\x9a\x5b\x5c\x3d\x00\xbe\xc6\x32\x14\x32\x44\xaa\x0c\xc1\x5a\xd6\xf6\xd1\x83\x32\xe7\x04\xbd\x68\x29\x05\x7a\x76\x9d\x56\x4c\x31\xf3\xa2\x85\x18\x5f\xfd\x51\x85\xa4\xc8\x0c\x9b\x14\xd7\x94\xb0\x24\x2a\xf4\x7c\xac\x5a\xe2\x9b\x5d\x93\xe6\x60\x00\x21\x4d\x63\x17\x0d\x3e\x51\x22\x14\xa6\xd5\x7a\xa2\xe6\x44\x98\x98\xbf\x20\x4e\xc2\xbe\x73\xf6\x49\xe5\x10\xbc\xa1\x98\x26\x57\xc6\x4b\x5b\x63\x44\x6d\xe5\x0a\xf6\x28\xd0\xb2\xf1\x36\xcb\x06\xa9\xdd\xe5\x39\x24\xbf\x83\x60\x05\xe0\xe4\x43\x1d\xae\x5d\x54\x72\x04\x08\x67\x5d\x5b\xbf\x32\x70\xf3\x99\x26\x69\xe9\x14\x99\x66\xf1\x7d\x42\xe5\xa6\x0b\xc1\x77\x9c\xc6\x25\xb2\xe6\x7b\x43\x89\x9a\x5c\xa9\xd2\x4d\xcb\x93\xc4\xa7\x90\x58\x46\xef\x28\x95\xc6\x3b\x5e\x47\x23\x32\xab\x2b\x69\xf1\xe3\x34\xf2\x51\x6f\xbd\xa4\x94\x42\x2f\x8d\xc5\x97\x61\x1b\x18\x0d\x42\x2c\x98\x58\xf3\xf1\xd0\x9b\x31\x76\x4d\xeb\x05\x4a\x2c\x9c\xb0\xd1\x6b\x4e\x05\x6a\xaa\x51\xac\xd8\x0c\x54\x93\x8b\x82\x28\x06\x7b\x7a\xf4\x13\xa8\x5e\x21\xb9\xdc\x04\xd0\xe9\xf4\x8d\x5d\x8b\xec\x23\x5a\xdc\x00\x54\x4f\x8c\x94\x99\xc2\x19\x0e\x54\x71\x76\x17\x8c\x08\x6c\xfb\xb7\xb5\xf9\xfd\x55\xcd\x4f\x62\x56\x2d\xbe\x6e\xdf\x48\xd1\xe4\xa6\x88\xf5\x87\xa7\x71\x0b\x55\x75\x30\xd1\xb7\x86\x9e\x65\xf4\x7f\x22\xea\x12\x8e\xe6\xf6\x1d\xa1\xd8\x7c\x8a\x2d\x95\xa3\x54\x2f\x3c\xf1\x31\x5f\x2b\x02\xd3\x47\x81\x8a\x9d\x27\x46\x6a\xec\x45\xd6\xb4\x9c\x8c\x2c\x7b\x14\xd1\xb3\x10\xbf\xa2\xe2\x52\x10\xa7\xff\x30\x50\x8d\xa1\x3f\x74\xea\x64\x59\xd7\x86\x4b\x99\xa2\x29\xf0\xa6\xc2\x27\xa5\x4d\xb6\xc8\x85\x99\x95\x57\xf3\xfd\xd8\xf5\x0f\x55\xa3\xc8\x87\x2a\x5a\x1d\xf4\x33\x9b\x53\xa3\x08\xd0\xf9\xb3\x74\x45\x7c\x5c\x8a\x9d\xa0\x0a\xb3\x12\xd3\x07\xb4\x12\x29\x1f\x57\x35\x7d\x36\x93\x5e\xb1\x44\xf3\xc6\x88\xcb\x7e\x27\x50\xf7\xf0\x8e\xab\xcd\x2c\x87\x22\x1f\xce\x35\x49\x25\x95\x76\xa3\x0a\x9c\xcd\xba\x61\x3b\xaf\x79\xdf\xda\xef\x0d\x3d\xde\xf2\x3d\xef\x44\xc1\xf4\x41\xda\x38\xd1\x8a\x78\x57\x19\xe2\x8e\x39\x59\xea\x72\x79\xcf\x84\x31\x0b\x7a\x33\xbb\x17\xc3\x50\xa8\xbe\x0a\xc9\xb3\x8b\xc9\x20\x6e\xd5\x3c\x93\xef\x84\xa2\xeb\x9d\xa8\x6a\x2a\xef\x9a\x41\xec\xda\x1d\x40\xb6\xba\xaa\x78\x09\x1f\x68\x61\xe2\x32\x9a\xff\xea\xfe\xd7\xeb\xa9\xed\x5b\x52\x0f\x9c\xdb\x22\x95\xec\xad\xd3\xc0\xe9\xf8\xda\x1d\xdc\xd6\x02\x04\x28\xb7\xe0\x7b\x4d\xcb\xec\x69\x92\x65\x8b\x57\x61\xe5\x52\x7c\x08\xb9\xe1\x29\x45\xa6\x3d\xa5\x14\xb1\xfb\x36\x8e\xed\x2a\x86\x99\x88\xb2\x2a\x4d\xbe\x3f\x54\xd4\x47\xd3\xef\x47\x66\xd0\xb2\x2d\x62\x88\xa9\x94\x7e\xce\xa5\xf4\x15\x7a\x1b\x59\xd8\x42\x83\x5e\x15\x30\xe6\x89\x6b\xed\x64\x90\xe6\xd6\x42\x9b\x9b\x35\x6d\x68\xab\x13\x7d\x1b\x27\x7f\x9e\x34\xd9\x7a\xdd\x6b\xe9\x1d\xa3\xa7\xce\xc7\x4a\xe2\x66\xd1\x46\xa1\x5d\xb6\x7b\x8b\xef\x71\x61\xd9\xcc\x02\x2f\x22\xf7\x54\xcb\xdd\x98\xed\xf5\x39\x08\x9c\x61\xdd\x5a\x57\x42\xa3\x6f\x0d\xc7\x72\x2b\xa5\x6e\x7c\x3d\xf0\x8d\x40\xe7\x86\xe3\xfa\x08\xcf\xf8\x96\x2e\x02\x2c\xb2\xa9\x62\x1d\x76\x3b\x4d\xf1\x8d\x48\x4e\xe1\x51\x22\x1c\x80\xe2\x67\xc5\x7b\x5e\x79\x1a\xd5\x1a\x1e\x91\x6f\xdb\x9e\x89\xac\x2a\xba\xff\xb6\x8e\xf0\x11\x6b\xe0\x95\x1f\x53\x64\xa1\x3c\x8c\xc4\xb0\x07\x9b\xfb\x57\x03\x0f\xce\x7e\xd5\x97\xd6\xad\x89\xac\xf7\xd4\x47\xf6\xba\xa9\x5a\xc8\x36\xd5\x93\x66\x5a\xe6\xee\x62\x51\x01\x28\x7b\x52\xbd\xe8\x1d\xd8\x35\x45\x4a\x93\xe6\x0b\x52\x15\x94\x41\x80\x86\xfc\x90\xde\x37\x7f\x3a\xf0\xd4\xd1\xbd\xa3\xa7\x1c\xd1\xe3\xdf\xb1\x28\x56\xc8\xce\x12\x8d\xab\x58\x3c\xb8\x3d\x59\x3b\x7f\xcb\x26\xa9\x24\xc0\xd2\xa4\x3f\xe5\x63\xdb\x0f\x87\xca\xaf\xfe\x2c\xc2\x2d\x2c\xfb\xe8\x90\x46\xde\xfe\x7b\x54\x48\x04\x81\xe9\x96\x8b\x1f\x5b\x36\x4b\xf2\xa4\xe6\x53\xe2\x9d\xe0\x6a\xf0\x49\xa9\x49\x64\xe1\x95\x62\x39\x30\x21\x07\xcf\x98\xdf\x9f\x52\x30\xc3\xc7\x5a\xc8\x3e\x85\xb0\x97\xeb\x40\x80\x24\xa5\x40\xad\x65\x71\x89\xd7\xeb\x83\x38\x6c\x27\x69\x2f\xcc\x61\x51\x87\x7a\xd1\x88\x6e\x03\x55\x97\x6b\x63\xdd\x25\x15\xce\x0a\xfd\xd4\xe6\x39\x0a\xef\xda\xb7\xd4\xf5\xe8\x7d\xf1\x35\xc6\x52\xca\xee\xef\x64\x73\x60\xa3\xa4\xd8\x47\x7d\x67\xd3\x95\xa1\x82\x55\xb6\xe8\xf5\x8f\xe1\x3f\x00\xc6\xde\xd5\x28\x87\x35\xf1\x4a\x37\x8c\xd8\x2e\x12\xa5\xa3\xeb\xb4\xb6\x49\xd5\x94\x9e\x1e\xb6\x85\x6f\x07\x4a\x80\x43\x48\xfe\xdc\x54\x47\x68\x08\x82\x86\x6b\x78\xb1\x58\x3f\xd8\x73\x95\xbf\x19\xa1\x89\x48\x1d\xfa\x18\x38\x1a\x74\x50\x9a\x10\x5d\x8e\xe2\x35\xc9\x4a\xaf\x70\xe5\x1f\xd0\xf3\xc5\x43\x79\x58\x41\x03\x3b\x54\xef\x26\xd2\x79\x21\x50\xb2\x82\x95\xd5\xea\xdb\x4c\xe2\xcc\xc6\xd9\x20\x03\xcf\x04\x5f\xf9\xa9\xca\xc3\xde\x52\x3a\xec\xe7\x1f\x6b\x43\x52\xbc\xc3\x24\x0d\xcd\x84\x8f\xe6\x86\x5a\x13\x0e\x8a\xe2\x78\x62\xef\x28\x45\xf1\x2c\x8c\x97\xb0\x9f\x20\x4e\x03\xb9\x81\x8f\xd5\x0b\x4a\x6d\x67\x10\x99\x3c\x41\xdd\x05\xff\x0e\x05\x13\x3e\x56\x93\x2d\x4a\xda\x39\x97\x7d\xb1\x73\x73\x83\x30\x9f\x54\x68\x5d\xd9\x65\x1b\x83\xa6\x85\xfb\xbf\x44\x6f\x1e\xcf\xfd\x51\xe0\xe9\x8f\xd7\x1d\x9c\x92\x27\xc5\x9a\x11\xb7\x8c\x82\xc5\xcf\xe2\x86\xf9\x44\x65\x36\x76\xf1\xe5\x62\xf2\x6f\x5d\x55\xc2\x98\x1b\x08\x82\xa5\x52\xab\x14\x3a\x86\xaa\x36\xb5\xaf\xe1\xd7\xd7\xc5\x41\xab\x63\xf3\xdd\x9e\xc1\x73\x1f\x43\x8a\x67\xd9\x50\x95\xd9\x3e\xa5\x97\x0d\x92\x41\x0d\xc0\xa0\x28\x74\xe8\x1e\xde\xc0\xeb\xdf\xde\x56\x2c\xdb\x2c\xb7\xfd\xae\x8d\x27\x55\xc9\x04\xc9\x3c\x1f\x2b\xf1\x17\xa4\x8d\x5e\x2e\x5b\x55\x7f\x19\xc5\x70\xec\xeb\xff\x5e\x41\x6f\x5c\xae\x15\xa1\xfc\xa7\x35\x0d\xb1\x6f\x21\x6d\x0d\x18\xe3\x5d\xe5\x97\xfa\xae\xfa\x81\x66\xd7\x62\xbb\x56\x1d\x12\xba\x0d\x42\x65\x79\x8b\x49\x9a\x12\xcf\xbd\xe6\x0c\x5e\x4e\x06\xca\xf9\xe5\x64\x65\xac\x13\xc6\x6f\x14\x01\x12\xdd\x00\xe0\xea\xdf\xc7\xe2\x81\x75\xf6\x36\x9e\x3d\x12\x92\x3b\xca\xd9\x2c\xb5\xbd\x24\x5e\x45\x67\x3b\x3b\xa2\x0d\x7d\x15\xe9\xa1\xd2\x3d\xbf\xab\x80\x98\x7e\x71\x81\x7b\x8a\x67\x89\x0c\x65\x67\x83\xe6\x04\x77\xc3\xe3\x69\x49\x6b\x3c\x05\x11\xd8\xe6\x6e\x0e\x55\xe4\x7c\x4e\x47\xff\x0c\x58\xc8\xae\x84\x25\x4a\xf6\xa5\x9a\xeb\x11\x5a\x57\x39\xde\xc0\x44\xbb\x69\x0d\x00\x1e\x88\x2d\x19\x09\x3d\x1c\x47\x91\x40\x9f\xd1\xac\xcf\xe3\xba\xcd\x6f\x73\xe8\x11\x58\x18\x6c\x22\x60\xf8\x46\x95\xbe\x44\xcc\x4e\xc3\x74\xcd\xce\x0a\xdd\xdb\xa2\x6b\x6e\xaa\x89\x25\x47\xa8\x54\x10\xf6\xf5\x8d\x95\x30\xef\xfe\x34\xee\x15\x37\x71\x93\x39\xcf\x88\xcc\x76\x35\x8a\xbd\x04\x51\xc6\x29\xcc\x17\x20\xf6\xf0\x83\xc5\x5d\xb0\x08\x16\xc6\xe6\x56\xa0\xb8\x15\xf4\x52\x0e\x39\x2e\x3f\xdd\x39\x2f\xee\x81\xc7\xca\x8e\x23\x3b\x45\x99\xef\x27\x81\x72\xcd\x39\x16\x78\xcf\xeb\x1f\x83\xef\x8f\x08\xe5\xec\x50\x95\x61\xb9\xf9\x83\x3d\x4b\xa9\xeb\x0b\x13\xe8\x9b\x14\x0e\x88\x28\x82\x92\x2a\xbd\x81\x21\x01\x78\x0f\xb4\x19\x61\x22\x29\x72\xd5\x83\xc0\x4b\xed\x7e\x04\x05\x2f\x40\xdc\xe0\x62\x33\x3f\x95\x26\x29\x8e\xbf\xab\x56\xb0\xd6\x92\xc1\x9b\xc2\x83\xfc\xef\xe8\x79\xf1\xb1\xa7\x2b\xff\xca\xc0\xda\xa3\x96\xdc\x0c\x58\xe7\x38\x50\xf5\x16\x80\x35\x42\x68\x2b\xde\x84\xd4\xc1\x1e\xc7\xa1\xec\xd9\x34\x0d\x23\x38\xc3\xbb\xca\xa3\xab\xcd\xb0\xc6\x08\x78\x33\x7f\xe4\xa6\x60\xcb\xe6\x26\x8c\x24\x7d\xc2\xa3\x7b\xb7\x78\x28\x0f\xff\x11\x0b\x8e\xd0\x74\xfe\xaf\x9f\x1d\x6d\x13\xfd\x9b\x59\xa8\x7f\xf1\x35\x9a\xef\xce\x91\xd0\xc5\xa7\xef\x53\x14\x22\xf5\xd6\xed\xc3\xd9\x71\x3e\x13\x02\xb0\x30\xcd\x3e\xa5\x8f\xa3\x40\xb8\xa6\x1a\xf6\x36\xa8\x15\x91\x97\x3e\xda\xed\xd8\x8e\x8d\xde\x0f\xe0\xd6\x67\x1a\x9a\xe3\xa4\x85\x72\x76\x29\x73\xc0\x34\x89\xc0\xf6\x9d\x75\x0d\xa8\xc5\xd7\xf1\x71\xf0\x82\xd2\xf5\xcd\x72\x33\x48\x4d\x9c\x67\x53\x9a\xad\xa7\x04\x6b\x50\xca\x13\x7b\xce\xe2\x6a\xb1\x60\x7d\x17\x6f\x50\x3c\x41\x9d\x9e\xb8\x35\x69\xb3\x2b\xb3\x12\xef\xf1\x7d\x8d\x96\xbd\x5f\xe2\x0c\x1f\x80\xee\xfc\xa4\xdf\x11\xb8\x53\x59\x84\xf8\x8a\x6b\x77\xbd\x8e\x4e\xa1\xf7\xfd\xb1\xde\xdf\x2c\x27\x95\x4b\xfc\x19\xdb\x84\xf0\x49\xa0\x17\xe4\xa1\x87\x57\xbf\xa1\xfb\xf7\xef\x39\xce\x44\x2b\x6c\x32\x03\x1f\x2c\xa8\x7d\x14\xb8\xf1\xf1\xa8\xac\xca\xcf\xcd\x7c\x22\x83\x84\x54\xfc\x9c\xa2\x10\x95\x51\x61\x70\x9e\x91\xfd\x2b\x95\xbb\xe2\x3e\xf9\xb8\x04\x5c\xfc\x9d\x7a\xbf\x6b\x23\x29\x67\x60\x9c\xa3\x9d\x88\x8f\xdd\xf5\x9b\x3c\xe9\xd3\x4c\x13\x54\xbf\x58\x81\x1c\x14\xeb\x80\xbf\x35\x25\xaf\xbc\x59\x22\xc4\xcf\xce\x12\xbb\xa3\xd7\xf7\x99\xaf\x54\x5e\x7c\xed\xfe\x43\x6d\xbe\x33\x73\x00\x58\x17\x96\xff\x73\x2a\xd5\x3d\xae\x8c\xfb\x7e\x5c\xa5\x20\x60\x4d\x06\xc8\xc1\x3b\x95\x32\x75\x44\xca\x94\x1a\x97\xb4\x03\x1e\xda\x88\x42\xaf\x6a\x92\xc9\x55\x07\x0b\x45\x76\x25\x04\x02\xe6\x5c\xbe\x67\x9d\xc5\xe3\x95\x52\x60\x3c\xb3\x50\xef\x0c\x42\x56\x6d\x62\x0e\x66\xe0\x43\xa5\x0d\xaf\x1a\x06\x64\x8a\x17\x11\x4c\x17\xf8\x3b\x60\x5d\xbe\xa0\xfb\x49\x3e\xad\xd2\x03\x5a\xec\x37\x11\x1b\xa2\x79\x87\xf5\xb1\xf9\x44\xa1\x6c\xc9\xb2\x8d\x71\x07\x58\x19\x3f\xa4\x5f\xe1\xe3\x31\xc1\x83\xae\xed\xbd\xe8\xaf\x60\xc7\x48\xa3\x35\x4a\xd9\x74\x6d\xa8\x1a\x05\xfe\x02\x74\x10\x4c\xb1\xf7\x31\x45\x98\x99\x42\x9b\x91\x13\xa9\x9c\x59\x70\x42\x16\xc5\xa0\xc2\xbe\xf4\x3e\x6d\x6b\x00\x11\x1e\x8d\xbf\xaa\x62\x5b\x42\x34\x7f\x0e\x31\xc8\x98\xf9\x04\x12\xdb\xdb\x08\x48\x30\x3d\xfe\x39\x21\xc3\xd2\xc5\x82\x3d\x1a\x8f\xef\x12\xf6\x48\xfc\xfc\xdb\x34\x3d\x64\x01\xa6\x3d\x12\xdb\xea\x8e\x86\xa2\x41\x69\xf5\xcc\x96\xcd\xc2\x0e\x75\x5f\x16\x0f\x07\x70\xcc\xba\xa2\x53\xac\x97\xc2\xbb\xb9\x57\x0e\xd5\x93\x98\x25\x9e\x9c\x9a\x18\xe8\x80\xd2\x2e\xfe\x9c\x2b\xf5\x27\xcd\x25\x98\xe8\x8d\x0b\xa8\xbb\xba\xe9\xc5\xe1\x8b\xa1\x03\xd6\xc2\x76\xb1\xd4\xaa\xc8\x06\x08\x16\x5a\x87\xf9\x78\xf8\x9c\xd6\x06\x2c\x72\x57\x4c\x8a\x2f\xf1\xdb\xb8\x31\xf4\x55\xc9\x1b\x25\xe8\xc1\x09\x33\x86\xcd\x25\xbb\x4a\xc5\x52\x57\xb5\xf1\x2c\xe1\xcb\xca\xb2\x67\x29\x6c\x2e\xb1\xd1\x91\xb8\xbf\xd1\xab\x14\xa4\xa8\x8a\x39\xd1\x03\x73\xa2\xb8\x03\xe5\x87\x30\xe3\x34\x27\x55\x65\xaa\x3b\x48\x9b\xdd\x49\x35\x06\x36\x94\x14\x39\xc8\x4c\x7c\x3c\x1c\x53\x4b\xd2\x93\x3d\x31\x28\x42\x30\x77\x56\xc9\xe0\x5f\x7a\x6c\xc6\x49\x4e\xad\x36\xcb\xa7\x68\x90\x38\xc6\x9e\x78\xe9\xff\x37\xd0\xca\x91\x1a\x8d\xd6\x9a\x1b\x2a\x5b\xbb\x0d\xa7\x86\x3b\x88\xb9\x07\xdb\x2d\x85\xba\xbb\x5a\x88\x3e\x65\xba\x63\x26\x9e\x73\xce\x93\xcd\x85\x46\x17\x55\x53\x8f\x3d\xd2\x0d\x17\x43\xc7\xba\xc0\x82\xb3\xa6\x16\x9f\xb5\xc7\x16\x24\xe3\x24\xcd\xbb\x2b\xd4\x5e\x58\xdc\xea\x18\x4c\x28\x8f\xbc\xd2\xe6\x65\x90\x02\xd8\xc6\x9b\x66\x5a\x0a\x02\x48\x00\x64\x92\x80\x79\x02\x42\x33\x89\xb3\xb0\x45\x9a\x84\xbb\xe8\x21\x80\xa6\x0d\x3f\x61\xdd\x46\x8b\x55\x01\x6a\x4a\x78\xbf\x1f\xd3\x56\x23\x6a\x8d\xc5\x8a\x22\x32\x8e\x4a\x20\xbb\x6b\x8b\x98\xa5\xe6\x9c\x28\xee\x68\xcf\xec\x3b\x55\xd4\xf4\xb6\x4d\x97\x99\x23\xe6\xec\xab\x9d\xf5\xc9\x15\x75\xe9\x26\xca\x6d\x1a\x93\x99\x12\x45\x71\x60\x06\x6f\x29\x19\xd1\xeb\x9a\xc0\x71\xbe\x92\x4f\x90\x02\xda\x4d\xc7\x77\x08\xc5\xd8\xaf\x28\x64\xf7\xc2\xcc\x0f\x1a\x87\x33\x3a\x4e\x69\xd9\xff\xb1\x08\x0c\x5a\x76\x91\xa0\xc3\x99\x05\xdf\x6e\xe8\x62\x89\x0d\x95\x8d\x9b\x01\x89\x2c\xef\x52\x76\x9f\x78\x02\x3c\xb4\x03\xd5\x3d\xc9\xfd\x8f\x48\x24\xa6\x46\x13\xaf\x6d\xab\x52\xa2\x5f\xf1\xbc\x83\x8e\x01\x29\x84\x40\xcf\xbe\xe4\x90\x84\xed\x03\x94\xcd\xb7\x31\xe2\x64\x05\xdc\xbe\xaa\xce\xcf\xd5\xe3\x30\xb6\x6d\x52\x30\x99\x59\xe0\xbf\x43\x7d\x80\x8f\x4b\x8b\xd9\xfc\xfe\x7a\x2b\xcc\xf2\xd4\x66\x59\x7b\xc0\xb2\xb6\x48\x5d\xce\xab\x34\xe6\x7c\xb0\xcf\xab\x91\x36\x61\x07\x0a\x10\xe5\x2e\x79\x74\xf3\xf1\xd0\x77\x2f\xae\x43\xb6\x47\x70\x01\xaf\xb3\xd4\xb3\xe9\x52\x66\x7a\x36\x65\x63\x23\xe7\x04\xfa\x98\x4a\x29\x5d\x11\xff\x91\x0b\x0e\x6c\x64\x9b\x79\x1a\x36\x77\x15\x9f\x42\x72\xf5\x09\xe5\x07\x10\xfd\xbd\x8c\xba\xba\x54\xae\x69\x37\x16\xe6\xa3\x07\x33\x3e\x83\xe0\x17\xd1\xdb\x79\x6d\x2f\x49\x3e\x08\xd9\x94\x17\x1f\xc4\xc8\x70\x88\xa0\x53\x0a\xbd\x0b\x5c\xc0\x15\xa0\x3c\x05\x5d\x5b\x16\xb6\x4c\xcf\x74\x6c\x36\xe5\xf9\x54\x0f\x95\xa6\x12\x77\x1e\x0b\x5f\x94\xc6\x12\x80\x86\x13\x81\xa7\x92\x9f\x18\x0b\x44\x7a\xfd\x0c\xc8\x22\x12\xe6\x9b\xf4\x8a\xf9\x58\x25\xe3\x2d\x9b\x2d\x4d\x15\x01\x04\xf6\xbd\x9f\x28\x5f\x42\xf4\x89\xf1\x31\x2d\x1b\x20\x35\xdc\x0c\x74\x03\x8b\x87\x85\x08\x8c\x61\x46\x94\x3c\x87\x31\xb2\xa2\xaf\x6e\xe5\x36\xed\x85\x0e\x5c\x28\x6e\x07\x04\x8c\xef\x06\x8a\x99\xf1\x5d\xe5\x7c\xc6\x1f\x88\x10\x84\x21\x25\xde\xd9\xf0\x0c\xb0\x9d\x23\x5f\x4d\x5a\x36\xb1\x72\x4c\x66\xd1\x85\xc0\x87\xe7\x17\x54\x5b\xc3\xa2\x49\x6d\xb4\xba\xdb\xaf\x95\x77\xb4\xce\xe7\xaf\x6b\xf7\xf2\x13\x43\xe5\x6b\x7e\x02\x51\x1a\x76\x90\x53\xca\xec\x41\xb0\x0c\xcc\xd2\x73\xea\xa7\x4c\x3b\x0d\x9b\x46\x7b\xfc\x62\x0f\x96\xba\x65\x85\x86\x5e\x27\x0a\xf3\x66\xb7\x36\x66\xf6\x56\x53\xa6\x1f\x4f\x7a\x19\x90\xb0\xf7\xb4\x6f\xe4\x79\x3f\x50\x08\x3a\xfb\xc3\x21\x28\xe0\x6e\x6d\x84\x6e\xe7\x01\x49\xc8\xa0\xa8\x69\xb5\xa1\xe9\x19\xd1\x5a\x51\xc4\x97\xe3\x18\xcb\xae\x09\xfc\xc0\xac\x1a\x5d\x73\x5e\xd0\xd5\xe1\xa7\xac\x5e\x27\xf1\x20\x8d\x47\xe0\x0c\x97\xb0\x22\xe2\x42\xee\xa9\xde\xa5\x2c\xb7\x3d\xec\x3d\xdc\x2d\x1c\x28\xcd\xbb\x77\xab\xd4\xf7\xe3\x24\x15\xed\x00\x59\x58\x7c\x26\x57\xe9\x11\xb9\x6c\xe3\x16\xef\x56\xae\x22\xe4\x20\x81\x32\xa1\xbd\x08\x45\x17\x07\x19\x13\xa7\xf0\xce\x37\x87\x3e\x9a\xd8\x54\x7b\xa7\x89\x9b\xdd\xe2\xab\x67\x16\x38\xc7\x3e\x4b\x8f\x89\x8f\x4b\x91\xc9\xf4\x74\xbd\x1b\xe6\x93\x9e\xb3\xff\x35\x4d\x8e\xf8\x1e\x4d\x5a\x0c\x2c\x6e\x0a\x17\x7a\x57\x85\xba\x01\xd2\xfd\x9a\x6f\x53\xba\x3c\xd6\x0a\xfb\x42\x29\xd9\xcb\x97\xb9\x47\x1b\x2b\xf8\x96\x4a\x27\xdf\xd2\xf5\xcd\x7b\xd5\x54\xaa\x41\xdc\xe4\x24\xcd\xc9\x0d\x7b\xe9\xe1\x8a\xf6\x9a\xb9\xfa\xaf\x0c\x6c\x56\xcc\xf9\x6d\x14\x99\x4b\xaa\x9d\xea\x92\x1a\x0a\x51\xd2\x1c\x63\x4e\x30\x0b\x84\x4f\x54\x84\xbe\x8d\xfe\x2a\x5d\x67\xa5\x7e\x4e\x00\x24\x67\xb4\x08\x38\xd7\x7e\x85\xc9\xe0\xb9\x7a\xa6\xd3\x71\x97\xe9\x5c\x32\x66\xbd\x70\x8b\x73\x94\x2f\xe2\xbe\x66\xd2\x73\x4d\xc0\x5c\x70\x1a\x7a\x6a\x36\xca\x4d\x62\x36\x2c\x59\x71\xcf\xf6\x12\xee\x49\x18\x6b\x11\x43\xf6\x8c\x97\x01\x5e\xc1\xbb\xb4\x6f\x61\x7d\xba\xa0\x16\xdc\xd8\xa4\x69\xb2\x82\x65\x4e\xfc\x3f\xe8\x3e\xc5\x00\xa4\xcc\x2d\x99\xa9\x77\x4d\xdc\x0a\xd9\x69\x01\xeb\xc8\xa6\x12\xb5\xd9\x54\x45\xa7\x8e\x8d\xc9\x27\xa7\x05\xb9\x66\x2c\x2d\x90\x84\xe4\xe3\xc0\x6f\x60\x66\xd9\xa6\xa6\x63\xf7\x2a\xc8\xfe\x21\x32\x43\x46\x8b\x74\xcf\x0e\x4a\x87\x20\xbf\xee\xa1\x87\xc3\xe0\xa9\x52\xac\xfa\x55\xfa\x21\x6c\xf1\x08\x54\x9d\x99\xa3\xab\x87\x3c\x18\xaa\x8c\xec\x2f\x55\x45\x3a\x19\xe4\x45\x80\x8c\xe0\x58\x14\x03\x6a\xce\x8a\xf3\xaf\x74\x85\xf1\xff\xc6\x8c\x03\xaa\x06\x7a\x37\xf6\x14\x6e\xaf\x67\xf1\x8f\x4a\x87\xa5\xdc\xf6\xfa\x09\xa4\x79\x00\xc7\xc2\x49\x82\x8f\x03\x3f\x94\x49\xa5\x60\xaf\x22\x7b\xde\xc5\xc3\x71\x3c\xd3\xe2\x12\xf0\xb3\xb7\xf4\x32\xf9\x29\x17\x05\x50\xd2\xbc\xa5\x5c\xc4\x3e\xa5\x80\x17\x2b\xeb\x1f\xaa\x3a\x38\x1a\xca\xb6\xc6\x6a\x48\x9b\x15\xbc\x9e\x39\x7e\xbf\x91\x92\x77\x41\x83\xac\xab\x67\xe8\xee\xab\xed\xa0\xd4\x4b\x2f\xd5\xc3\x38\xcb\xc3\x8e\x67\x2b\x8b\x50\x15\x3d\x5b\x3e\x29\x05\x93\x07\x66\xeb\xa9\x6d\xda\x70\xd9\x2c\x92\xe2\xaf\x6b\x36\x1c\x93\x42\xba\x12\x6c\x5f\x3e\xb4\x8a\xba\x9b\x97\xae\x05\x74\xd6\xb7\x80\xfe\x0d\xa5\x93\x36\x88\x5b\xbf\xfc\xb3\x9d\xd4\xf4\xbb\x61\x53\x7a\xd6\x50\x3b\x5c\xd3\xe6\x40\x6b\x8a\x8a\x92\x77\xd3\x30\x8a\x6c\x3a\xe1\x47\x28\xe2\x20\x60\x69\xe8\x48\x91\x8d\x62\x3b\xa2\x34\x3d\x53\x8f\x93\xdc\x2a\xa8\xeb\x0f\x54\x35\xe1\x0f\xaa\xd2\x92\x3c\x59\x34\xcd\x66\x52\x53\x0a\x85\x1b\xaa\x2c\xbf\x11\xe8\x0c\xbc\x9f\xda\x9a\xaa\x5e\xc2\x7c\x41\x3a\x7c\x1e\x2b\x0a\x6c\x06\x51\x4d\x07\x25\x9c\x94\xca\x0f\x54\xb4\xc2\xa5\xd6\x44\xce\xe3\x48\x82\xa6\x31\xd2\x5e\xcd\x29\x6d\xbc\x55\xb5\xc1\x66\xd6\x4b\x87\x61\x8f\x04\x4b\x87\x8f\x75\x19\x38\x2c\x7e\x46\xb9\x0f\x15\xcf\x17\x00\xdc\x65\x25\x26\xf3\xb0\x74\x99\xd3\xd3\x84\x98\xa7\x61\x33\x47\xfb\x89\xfb\xd0\xab\xfb\x79\xa1\xe7\x99\x04\x40\xe1\xe3\xe1\x53\xca\x43\x24\x6f\x02\xe3\x76\x95\x21\xc7\x50\xc5\x7e\xed\x1a\xd4\x8b\x95\x8f\x4f\x9c\x57\x61\xd3\x64\x56\x34\x51\x10\x97\x30\x49\x87\x4f\x82\x7d\x0e\x8a\xfd\xaf\xfe\xcb\x9a\xde\x34\x8a\xb0\x4a\x36\x13\x1f\x33\xa4\x83\x88\x25\xdc\x5e\x77\x38\x3b\xbe\x9d\x5b\x2b\x30\x35\x5c\x4c\x3d\xf7\x8a\xc3\xe3\x31\x49\xb1\xcd\x6c\x39\xd8\x39\x4c\x56\x0c\x71\xa9\x5c\xae\x53\xfc\x15\x9f\xa8\xe0\xdf\xf4\xc2\xd6\x13\xb4\x5c\x5c\xc7\x17\xa1\x6a\x76\x82\x9e\x21\xe0\x68\xa4\x78\x58\x42\xbf\xa7\x8d\x01\xc6\x14\x12\xf0\xa0\x45\x2e\x41\x13\x32\xfc\x6e\xb5\x1c\xda\x38\x36\x93\x8f\xa7\xd7\xfb\x4a\xcc\x98\x10\xd0\x39\x87\x92\xad\x84\x51\xab\x69\x80\x96\x80\x43\xf2\x20\xa8\xfd\xd2\x2f\x78\xf5\x4b\xe7\xa5\xad\x2d\x7f\x52\xdb\x4c\xad\xf9\x6b\x31\x1d\xc7\xd5\x34\x91\x49\x57\x27\x95\x18\xed\xd7\xe9\x96\x01\xc6\x02\x5e\xc1\x5b\x60\xb3\x51\x49\x82\x3c\x10\x10\xad\x2e\xa6\x26\x6e\xf1\xe8\x90\xad\x4c\xd9\x4d\xfc\xea\x63\x9b\xe1\x53\xab\x22\x38\x4c\xb4\x9d\x7a\x0b\xda\x39\xf2\xbc\xe5\x7e\x64\x5b\x1d\x26\xe3\x69\x60\x87\x8f\xdd\x48\x68\x26\x69\x4b\x8f\xc0\x60\xac\x40\xeb\xf7\xa7\x6e\xd2\xb3\x29\xc9\x2d\x22\xf7\xba\xa6\xb1\xb8\x8f\x03\xef\xe0\xb4\xae\xdc\x48\x78\x0c\x88\x68\x8e\x4a\xb7\xfe\x1c\xb9\x92\x60\x9e\x15\xe1\x63\xbd\x6d\xa8\x63\x59\x25\xc7\xf7\x03\xc5\x73\xbc\x8f\x65\x05\xa9\x7c\x9c\xa7\xb6\x9f\xda\xd8\x0e\x52\xd2\x99\x71\x84\x92\x2d\x0c\x3c\x81\x99\x68\x38\xc9\xd4\xf5\xc9\xd1\x62\xd8\xda\xa7\x40\xf5\x7d\x23\x9a\x41\xa2\x89\x5c\x3c\x36\xa4\x21\xff\x36\x50\xa2\x3c\x27\xb4\x96\x88\xd0\x85\xb1\x7e\x69\xca\xd1\x43\x55\x9e\xdb\x43\x1c\x6b\xe1\xde\xd2\xe2\x87\x99\x79\x45\x99\xb6\x4f\xaa\xb7\x18\xc6\x59\x3f\x4c\xb5\xfa\xdd\x1f\x2a\xf5\xbb\x3f\x1c\xd7\x9a\x4f\xed\xdf\x24\xa8\x88\xc9\x2f\x20\x3e\xb3\xf3\x24\x82\x58\xc0\x14\x37\x35\x6d\x69\x27\x15\xd3\xf1\x1e\xb8\x02\x8d\x8d\x0c\xb4\x5f\x84\x57\x10\xb0\x05\x71\x99\x7d\xd6\x31\x56\x2f\x90\xc4\x38\x62\x08\x6e\x3c\x44\xe0\x35\x35\x52\x34\xbe\xe7\x1a\x9e\xec\x77\x0f\x72\xa6\x22\x93\x40\xcf\x00\x03\xe7\x29\xd5\x53\x78\x15\x6f\x0a\x78\x06\x46\x17\xb3\x2d\x02\x25\xb8\x73\x36\xa8\x7d\xe1\x2b\xbe\x96\x71\x40\x68\xea\x77\x28\xd9\xa4\xd2\x7d\xef\xb9\x11\x5e\x0c\x93\x38\x50\xd5\x47\x4f\xc4\x33\xd0\x57\x97\xb2\x10\x8d\x2d\x56\x7c\xa5\x75\x18\x01\xd6\xb9\xb1\x0d\x36\xb5\xe9\x6e\xba\x34\x59\xc9\xd5\x6e\xbb\x39\x1c\xb3\xd9\x1e\xaa\x60\xff\xd2\x50\xc3\xc9\xf4\x2e\x74\xdd\x8a\x45\xc7\x1a\x15\xc9\x5f\xcb\x68\xa1\x81\x0f\x30\xe6\x84\xc2\xe9\xa7\xa7\x39\x9a\xb4\xdb\x35\xe5\xf6\x7f\x65\xac\x12\xec\xf5\x69\xba\x83\x34\x9f\x52\x15\x81\x35\x05\xac\x7e\x5d\x8b\xc0\x9c\x52\xb9\xe1\x19\x1a\xcf\x20\x8e\x7c\x34\xdc\x2b\x64\x6e\x73\xa4\xe6\xb3\x62\xbe\x34\x3e\x71\x75\xfc\x34\xe9\x99\x38\x0f\x9b\x0a\xcb\x85\xc0\x31\x06\xcd\xf7\x87\xca\xf4\xe1\x91\xa2\xd2\xac\x98\x94\x4d\xb5\x31\xd2\xce\xe8\x25\xf2\x4c\xe0\xf9\x2e\x36\x6e\xed\xa2\xb1\xc6\xf6\xed\xf4\xea\x5c\x05\x5c\xa8\x8c\x33\x2f\x34\x94\xf2\x30\x82\x08\x00\x57\x97\x15\x13\x75\xd7\xe8\x19\xd5\x55\x42\xa5\x89\xa9\x9a\x72\xa6\xa2\xaf\x90\xa2\x5e\x31\x6f\x04\x89\xa5\xa9\x86\x37\x7a\x8e\xe6\x0d\xe6\xfe\x49\x2d\x4f\x69\xa2\x25\xe6\xd5\xf2\x83\x54\x6c\x9c\x8f\x1c\x23\xad\x1d\xc6\x70\xff\x98\x50\x58\xee\x39\x05\x17\x02\x13\x92\x26\x02\xe5\xd0\xfb\xcb\x3f\xbb\xf4\xcb\x3f\x8b\x62\x25\xd2\x45\x78\xa8\xf2\x71\xa9\x00\xc3\xb6\x65\x19\xf5\x54\xe7\xd1\xea\x84\xb2\xe7\xe3\xbe\x1b\xe7\x23\xe8\x74\x6f\x1f\xa8\xd8\xa0\x99\xf4\xec\x67\x68\xca\x0b\xad\x93\xc6\x35\x9e\xf0\x26\x4d\x47\x97\x28\x14\xeb\x8d\x6b\xb2\x2e\x7e\x47\x2a\x93\x63\xd3\x47\x77\xa7\xd5\x9c\x64\x06\x37\xa0\x62\xdf\xbe\x0e\xf2\xb5\x23\x51\xcd\xcd\xcf\xb9\xe6\xa9\xe2\x19\xe1\x23\x37\x79\x26\x02\xf1\x3e\xe9\xdb\xfc\x8b\x3b\xb5\xbb\x7c\x00\xf8\xf6\xd0\xb3\x00\x76\xd1\xb0\x44\x6f\x18\x4b\x2a\x61\xcd\xf9\xa3\xe1\xb8\x3a\x93\xd3\xf2\xd6\x26\x25\x59\x6e\x6d\xd4\x33\x4b\x36\x55\xda\xfa\x3b\x1a\x0a\x0b\xdf\x31\x7a\x71\x9c\xa9\x72\xf8\x30\x49\xcf\x4e\xea\x82\x9f\x6e\xb6\xfd\x5d\x25\x1e\xc4\x25\x76\xfe\x07\xed\xc0\x4d\x75\x53\xdb\x42\x26\x8b\x05\x7e\x6a\xe4\x87\xc8\xfb\x4a\x41\xfc\x34\x5e\x04\x38\x4d\x0c\x26\x20\xa5\xbc\xaf\xfb\x86\xef\x54\x59\x5c\x45\xe6\x88\x41\xaf\xa5\x0b\x84\x01\xaf\xf2\xf1\xc8\x35\xc6\x0d\x5a\x21\x08\x2a\xaf\x8b\x1a\x31\xbf\x0d\x11\x9d\x56\x02\x75\x4f\xd0\x95\xa2\x86\xf7\x39\x3c\x2c\x8c\xc0\x1f\x8d\x99\x62\xe6\x26\x8c\x19\xea\x97\x7a\x9f\xe7\xa1\xd6\x94\xc7\x4b\x0d\xed\x46\x42\x4b\x70\x34\xcf\xd5\x3e\x8b\x98\xfb\x7d\x0c\x7e\x63\x72\xe2\x9a\xc2\xd3\x30\x5b\x92\x2a\x34\xde\xdb\x3f\xc1\xaa\xc8\x27\xa5\x7c\xb5\x98\x47\x52\xc4\x94\x44\x17\x13\xe7\x96\x32\xe0\xbc\x55\x21\xa5\x37\x57\x57\xc2\xbd\x08\xac\xbf\x89\x5d\x88\x4f\xdc\x45\xe5\x83\xd4\x43\x62\xec\xff\x49\x33\x44\xbc\x40\xab\x3a\xcd\x52\x6e\x4c\x1a\x93\xd3\x2a\xbe\x40\xa4\x2b\xc6\x60\x15\x07\x6a\x4c\x36\xb6\xa3\x9b\x9f\xaf\x2f\x9b\x68\x59\x58\x42\x52\xd0\xa5\xb7\x28\x95\xde\x8a\x24\x7e\xd1\x46\xd6\x74\x06\xd6\x71\x45\x10\x0a\x7f\x4b\x59\x00\x7f\x6b\xcc\x10\x33\x6c\x1e\xc5\x2f\xa8\xad\xd5\xa7\x4f\xe5\x56\xde\x2f\xd5\x73\x9b\xe5\x61\x8f\x2c\xb1\x1c\x5b\xfb\x1c\x85\x2a\x22\x6f\xe2\x53\xa8\x56\x6a\x4d\x0f\x44\x56\x7c\xe5\xed\x31\x4b\xdb\x9a\xf3\xe8\x38\xae\x74\x8f\xed\x91\x7e\x94\xa4\x94\x1a\x4c\xf9\x4d\xf8\x16\x40\x6e\x91\x58\xa9\x39\xdb\x8e\xe3\x9a\xc9\x74\x0e\xcb\x21\x9f\x28\xae\xf4\x62\x34\x60\x0f\x1e\x35\xe7\xc5\x36\xe2\x23\x9e\x2b\xa8\xd7\xde\x2a\x3d\x58\xb2\xda\x35\xfd\x96\x8d\x8c\x68\x02\x62\xc9\xe3\x68\x94\x4f\x94\x2b\x63\x6a\x9b\xab\xcd\x48\x54\x50\xdc\xa6\xef\xda\x3b\xd6\xdc\x28\xeb\x9a\xb4\x65\xb3\x9c\xea\x61\x62\x58\x48\xc1\x1a\x36\x4a\x0a\xfc\xa4\x93\xee\x1a\x82\x79\xfc\x1c\xc4\x0c\xc4\xbb\x4c\xb5\xac\x9c\x51\xac\xaf\x24\x8c\x1e\xcf\x0e\x78\x1c\x15\xcf\xc4\x13\x45\x50\x08\x98\x05\xeb\x8d\x73\xe7\x28\x6e\x97\x1f\xd3\xd0\xab\x12\x24\x83\x3c\xcb\x4d\x5c\x0c\xfd\x27\x14\xf6\x77\x59\x51\xf4\xb4\xe3\xc9\xbe\x51\x11\x2e\x80\x55\x76\x53\x89\x65\xfc\x98\x00\x45\xc1\x9a\xe8\xb7\x34\xba\x88\x40\xe6\xb6\xe7\x4c\xe6\x83\x76\xdb\xb6\x74\xed\xe6\x92\x6e\x64\xd5\x36\xc6\xa8\xe4\xb5\xc8\x3e\x4c\x7c\xc1\x8a\x1f\xc3\xda\xfe\x7d\x65\xae\x79\x1d\xf5\x4f\xdc\xf1\x3b\x18\x4f\xe2\xdb\xe6\x8b\xe7\x17\xd5\x43\x2e\x52\x4b\x6a\x04\x97\xa0\x98\x5e\x86\x2c\x87\x9e\x76\xc4\x16\x6a\x12\x5f\x6b\x21\xfe\x28\x32\x39\xa1\x7e\xca\x1e\xa2\xa6\x44\xc2\x4f\xe2\xa3\xd8\xa7\x1f\xa8\xf2\x55\xd2\xa7\x14\x5a\x09\x43\xde\xd0\xc2\x90\x37\x54\x10\x9a\x99\xb0\xf5\x53\xc5\x3d\x63\xd5\xfe\x11\x05\x2a\xb8\x67\xa8\x86\x21\x6f\x98\x18\x01\x95\x72\xea\xcd\x5e\x9a\x64\xb2\xa1\xee\xec\xf7\x02\xd5\x6c\xb1\x85\x60\x4c\xd0\x38\x7a\x09\xd8\xe0\x9f\x85\xad\x02\x06\xf0\xbf\x54\x56\x18\x0f\x40\xaf\x12\xaf\x40\x5f\xc8\xdc\x3d\xaa\x7d\x79\x86\x27\xf7\x0d\xe4\x2a\xc8\xa7\x3e\x56\x62\xfb\x23\xec\xaa\x8e\xdd\xab\x0a\xf4\x94\x8e\x39\x11\xa5\x62\x65\x47\x4e\x31\x31\xf2\xd4\xcc\x87\x3c\xe3\x91\x49\x4f\x8c\xe8\x2d\x23\xec\xae\x41\x62\x11\xbc\xfc\x1a\xf2\x2e\x7e\x09\x2a\x0e\x4b\x4d\xce\x1c\x3b\x91\x84\xa6\x7b\xe6\x13\xb5\x8f\x76\x4c\xda\x0c\x4d\x4d\x35\xb0\x60\x18\x89\x2f\xe0\x67\x7d\x30\x63\x7b\x61\x33\x89\x5b\x83\x66\x9e\xa4\x53\x1e\xa0\xbc\xa8\xe3\xb5\x2b\x63\x17\x0e\xe1\x1a\x3c\xb6\x4d\x9a\x6c\xfc\x11\xb5\x06\x2f\x86\x91\x89\x8f\x6a\x2d\x98\xfb\x5a\xdc\x8c\x31\x32\x51\xea\xac\x5a\xf1\x4d\xcf\xa6\x61\xd3\x14\x99\xc1\xf4\x34\x47\xe2\xeb\x7c\x1d\x7c\x56\xc5\x16\xec\xa7\xc9\x91\xd5\x9a\x12\x95\x3e\x46\x57\xcb\xc7\x2e\x57\xc9\x06\x9d\x8e\xcd\x72\x56\xab\x81\x93\xd5\x8b\x0d\xc5\x5e\xe3\x7e\x3c\xaa\x7b\xfe\xfc\xb3\xa5\x1e\xad\x99\x85\x7a\xb3\x1b\x2e\x9b\xac\xa6\x7c\x61\x2e\x31\x32\xc0\x67\x8a\x4b\x94\xd9\xe6\x20\xa5\xc6\xe3\xa7\xe9\xa5\x83\x51\xc0\xb2\x77\x4a\x5f\xf6\x90\x67\xe9\xcf\x69\xfb\xe3\x62\x6c\x20\xe7\x78\x47\xdd\x0e\xaa\xae\x4c\x07\x0e\x54\xba\xf8\x90\xb2\x62\x14\x8f\xa0\x6f\x4d\xf3\x6a\xe5\x19\xd0\xa9\x11\x77\x7d\x30\x54\xf5\xac\xad\xa1\x36\x25\xde\xdb\xf0\x94\xd7\xdb\x98\x8b\x38\x39\x5d\x2a\x23\xcd\xef\x77\x96\xa8\x88\x59\x44\x1b\xb6\xb8\x4c\x11\x8d\x7d\x56\x75\xaa\xa4\x26\xb7\x9d\xd5\xdd\xca\x14\x72\xe7\x48\x41\x9a\xa7\xf8\x19\x8a\x44\xb3\x87\xcf\x2f\x62\xb0\x63\x56\x9e\x04\xf2\xc9\x5f\xd0\x50\x9e\x2f\x27\x83\x17\x55\xde\x12\x2f\x43\x09\xcd\x44\x6a\x4f\xfc\xaa\xda\x13\xbf\xaa\xda\x16\xb2\xc8\x5a\xf4\x38\x8e\x69\x90\xf3\x89\xaa\x86\xb5\xc2\xac\x99\x0c\xd2\x8c\xf5\x1d\x30\xed\x8f\xa9\xfe\x50\x86\x50\x85\x19\xb3\xfd\xa1\x11\xb3\x3a\xeb\x9b\x98\x25\x2b\x9c\x72\xa2\x57\x57\xde\x54\x7d\x1e\x91\xcd\x77\xd5\x16\x5e\xf1\xf9\x41\x31\x1c\x00\xbb\x9d\x50\x74\x3d\xe0\x22\xfc\xff\x87\x4a\x50\x7c\x4d\xf3\xe7\xca\x22\x4a\x07\x0f\xd6\xad\x61\xe1\x47\x14\x26\x4f\x6a\xa5\xa6\x93\xa5\x69\xf6\xf9\xfa\x72\xd8\xcc\xc3\x9e\x02\x13\x2f\x06\x1e\xce\xbe\x38\xdc\xa7\x44\xeb\x7e\xca\xb7\x26\xde\xc7\x45\xe1\x75\xee\xc1\xb2\xce\xce\x11\x23\x07\xb4\x37\x3f\xd7\x50\x38\x20\x0b\x06\x61\x6c\xdc\x0b\x74\xf1\x91\xd8\xf7\x58\x09\xee\x51\x86\x8e\x28\xed\xdd\xa1\xb7\x0b\xbc\x83\xa0\xc6\x09\x47\x17\xcb\xb2\xd8\x70\x16\xd7\x2b\xa6\x39\x34\xb0\x10\x19\x5c\xa7\x55\x1d\xf5\xe0\x77\x00\x21\x61\x5c\x8d\xf9\xcc\x7c\x8d\xc0\x30\x6c\x29\xa7\x50\xbd\x03\xf2\x39\x31\xaa\xfd\xd2\x2f\xf0\x24\x66\x0f\x75\x94\xfb\x3f\xd1\x4a\xa9\x30\x37\xc7\x52\xf8\x21\x41\x5e\xd8\x1d\x6f\xf1\x2c\xc4\xa6\x52\xae\xd4\x4d\x4f\x17\x21\x61\xee\xb9\xdf\x28\xb0\x5f\x51\xde\xbe\x57\x86\x5a\xb6\xa9\x88\x6a\x8b\xe8\xb1\x35\xe9\x8b\x79\x68\xf4\xc1\x1a\x30\xe6\xd4\x8f\xd2\xbb\x48\x51\xfa\x69\xb1\x68\xe3\x66\x57\x8b\x72\x9d\xd3\xa2\x5c\x45\xbc\xeb\x0a\xbf\x83\x0e\x1b\x2e\xe2\x01\xbe\xd8\xf0\x51\x20\xd7\x02\x81\xd5\x3e\x3b\xd2\x69\x6d\x44\xcd\xbc\xf8\x20\x06\xc7\xff\x3b\xf4\x4c\x2d\xde\xe4\x84\x90\x55\xa1\x4a\x60\xa2\x28\x34\x71\x13\x09\x2b\xb2\xbc\x2b\x0a\xc6\xbc\x32\x86\x9d\x9a\x2e\x53\x6b\x25\x08\xd1\x8a\x6a\xa7\x95\x17\x90\x78\x51\x4e\x14\x8f\x0b\x09\xd3\x77\xe9\x5b\x71\x7c\x41\xc1\x79\x1b\x8a\xbd\x15\x0f\x9a\x91\x35\xe9\xee\x62\x74\x3a\x0f\x12\x8f\x70\x72\x4c\x25\x7a\x70\xdb\xda\xbc\x1c\x98\x7d\x0a\xe8\x00\x16\x90\x5f\xa3\x9f\xc2\xcd\xec\x28\xd9\xf3\x1c\x3c\x58\xfc\x77\x89\x7a\xf7\x5e\x13\xff\xf1\x0b\xda\x01\xf5\x5a\xa0\x34\xb7\xdf\xae\x20\x37\xbe\x5e\xcf\x6c\xd4\x4a\x7a\xd8\x37\x5d\x4b\x87\x6f\xef\x28\xf5\x21\x1c\x98\xad\xb7\x6c\x2f\x69\x16\x19\x13\x00\x3f\x69\xb2\xaa\x39\x3b\x9a\x73\x5a\xea\xfb\x42\x25\xa9\x3b\x33\xcb\x61\xdc\xc9\x38\xe1\xc7\x08\x9e\xd4\x76\x78\x9b\xf4\x4c\x00\x05\x72\x0f\x20\x8a\xbb\x77\x15\x47\xb0\x9f\x14\xef\xaa\x25\x0a\x5c\x12\x2b\xd3\xb0\xe1\x13\x35\x9c\xfb\x51\x32\x68\x6b\x3e\xd8\x65\xfc\xa5\x68\xdf\x55\xc9\x33\x40\x2b\xa9\xe6\xe4\xc0\x2e\xd1\x40\x10\x0d\x8f\xe7\x54\xdf\x8e\x89\xc2\x2c\x0f\x9b\xda\xf4\x98\x07\xb0\x88\x34\x3d\xe5\xca\x31\x24\x1a\x51\x53\xbe\x54\x8c\x7f\xf1\x49\xb0\x9d\xa5\xf3\xd2\x4b\xf5\x2c\xa9\xf9\xde\xec\x3b\x6a\x26\xdf\x51\x72\xa7\x4d\x33\xc8\x30\x19\xbc\x73\xc8\x7e\x17\x25\x6e\x5f\xcd\xa7\xa7\xeb\x8b\x49\x92\xe5\x13\xbe\xda\x7a\x97\xb0\x09\xee\x7e\x15\xd9\x88\x8a\xfc\x34\x1b\x2c\x26\x69\x2b\x8c\x4d\x6e\xd1\x8c\x8b\xcc\xf6\x82\x82\xda\xee\x07\x8a\x83\x54\x2a\x92\x93\x41\x44\x6e\x27\x54\xcf\xde\x45\xfa\x30\x46\xf1\xdb\x18\x41\x62\x03\x5c\x35\x70\xc9\x43\x19\xbb\x28\x42\x94\x77\x15\xe1\xeb\x5d\xad\xa7\x4c\x7d\x69\xf3\xe2\x3e\x80\xb2\x35\xd6\xe6\x1f\xd2\x66\x80\x9d\xfb\xbc\x4a\xb1\xe2\x97\xdf\x78\x79\x42\xeb\xd8\x3c\x52\x8c\x8e\x8f\x86\xaa\xad\x66\xa2\x51\xc6\x8a\x66\xeb\x83\x38\xb3\x79\x1e\x89\x5b\xbc\x03\xdb\x5d\xeb\xc8\xbf\x45\x08\x86\xe9\xf2\xe9\x63\xfd\x0f\x63\x0b\x82\xae\xb0\x86\xe8\x87\x45\x46\xb1\x4a\x72\x33\xb5\x45\xd8\x33\x86\xe2\xb0\x55\xb5\x74\x9c\x3c\xe9\xb5\x09\x96\x32\xf4\x0d\xa3\xfe\x03\x7e\x92\xf3\x38\x39\x78\x90\x83\xfe\xf7\xb0\x77\x4b\xe7\x54\xb9\x2f\xa9\x98\xcc\xb9\x8d\xa2\x30\xb7\x93\xbe\x97\xe3\xa6\xf2\x3c\x38\x4e\x79\x98\x98\x40\xd2\x78\x41\xca\xfc\xd5\x2a\x23\x8e\x48\xac\xa0\x38\x7d\xa0\xe5\x48\x52\x89\x2a\x77\xae\x41\x73\x09\x5b\x08\x5b\x9a\x0c\x7d\xa7\x13\x1b\xc6\x81\x55\x7f\x5c\x85\xa3\xa0\x9f\x58\x2a\x09\xce\xb9\x4a\x74\xcd\xd9\x23\x5c\xd3\x35\xd2\xcd\x40\xd9\xaf\x72\xeb\x38\x22\xdc\x1f\xd1\x9d\x01\xa1\x80\xdc\x05\xbb\xec\xc2\x16\xca\xf9\xad\x4c\xcf\x30\x3c\x07\x0a\x2d\x1e\xe6\x25\xde\x81\x10\x45\x5e\x51\xf3\x78\x31\x32\xdc\xf0\x82\x21\x77\x3f\xf0\x7d\x9f\xf7\xb5\x37\x77\xdf\xa6\x82\xea\x3b\xb9\xc7\xf9\xfd\x5c\xbe\xbd\xaf\xe4\x71\xca\x2f\x6e\x66\xa1\x58\xb4\xb2\x24\x36\xe4\x8d\xef\x86\x29\x68\x10\x7c\xac\x7d\x77\x07\x51\xb4\xa7\x18\x8c\x62\xe7\xe0\x51\x5d\x18\x1e\x62\x4a\x3d\x89\x20\x0e\x6b\x9e\x36\xec\x64\x1a\x30\x77\x50\x62\xbd\x93\x76\x4a\x7a\x09\xa2\x6e\xad\x8d\x05\x7c\xef\x90\x3d\xd2\x4f\xd2\xdc\x19\xa8\x22\x42\x60\x20\x8a\x4f\x94\x9d\x70\xdb\x84\x69\xb4\xba\xdb\xc3\xf8\x77\xf4\xd7\x0e\xc7\x5a\x36\x7d\x09\x0c\x10\x08\x42\xce\xdd\xd0\xc7\xc4\xdc\xb8\x36\x54\x95\xe3\x47\x0a\x4a\x69\x9b\xac\x49\xab\x20\x77\xe0\x00\x5e\xc0\x48\xe0\xe3\x8a\x6d\x65\xb6\x9e\x25\x51\x88\xba\xbd\x68\x86\x78\xd8\xeb\x16\xa2\x68\xe8\x3a\xce\xfe\x07\x7e\xbf\xf9\xea\x50\xf1\x3c\xfe\x34\xa0\x08\x17\x4f\xf0\x2a\x02\x4e\xec\x96\x1f\x51\x88\x8a\x00\xe2\x1f\x21\x5b\x62\x1e\x06\x72\x4b\xe9\x2c\x2a\x46\xae\x60\xc6\x18\x88\x78\xe9\xd7\x87\x45\x34\xe1\x5a\xcc\xe6\x45\x25\x10\x6d\x6c\x4e\x22\xa3\x08\xa9\x69\xcc\x4d\x3d\x87\x57\x2e\x5e\x5a\xf4\xdc\x98\x3c\x37\xa2\xb8\x1d\x65\xc0\xff\x16\xb3\x08\xef\xe3\x1c\xa5\x0d\xae\x05\xec\xc0\xac\xd3\x80\xa7\x27\x0d\x68\xf1\x24\x26\x21\x7b\x6d\x01\xc0\x61\xdb\x6b\x84\xde\x58\x15\x4e\x2a\xa0\x06\xc9\x01\x22\x8f\x33\x54\x3a\x06\xa9\xed\x5f\x04\xb5\x2f\xcf\x38\xd5\x5e\x40\x4e\xce\x2a\xf8\xd5\xfd\x73\x5b\xeb\x94\x49\x00\x0a\xfb\x7f\x14\xa5\x71\xd1\x84\x51\x32\xc8\x51\xeb\x00\x3c\x78\x42\xbd\xde\x1d\x0d\x7a\xc0\xfc\x0f\xca\xab\x84\xb5\x21\x30\xe2\x36\xab\x9b\x2c\x63\xf4\xb5\x29\x4e\xba\x97\xb0\xbd\xa0\xfa\x4a\x3a\xa9\xb5\xb9\x20\x8f\x22\xa1\xe7\x5f\xc6\x95\x60\x5b\xd1\xe9\xb5\x99\x85\xfa\xab\xfb\x67\xc0\xb2\x11\xef\x3e\xa5\x7b\x8c\x78\x53\x1b\xfc\xf1\xff\x57\x08\x66\x16\x25\x2b\x62\xb2\xe0\x84\xa7\x5f\xf3\x27\xa5\x18\xe5\xf3\xf5\xc5\x64\x75\xc2\x93\xd6\xee\x52\xf3\x34\x26\x16\xfc\x01\x11\xe1\x1f\x53\x3c\x99\x9e\x89\x4d\x87\xf7\x38\xe7\xde\xeb\x22\x9b\x0d\x57\xd3\xeb\x0e\x7a\x26\xe6\x7a\x93\x6b\x1f\x7b\xd5\xdb\xec\xab\xfa\x07\xc7\xbf\x48\x8c\xf7\x00\xf6\x90\x37\x52\x6e\x9f\x3b\x04\x0c\x83\xa8\xd7\x8e\x81\x58\x7c\x99\x63\x0f\x7b\x6a\x22\x06\xa3\xac\x1a\x9f\xf1\xdc\x9a\x5c\x54\xe5\x30\x04\xc5\x3a\x10\xe8\xce\x69\x5c\x0f\x62\xd7\xcb\xa5\xc6\xb1\x62\x31\x60\x65\x33\xdb\x77\x3a\xa7\x18\xb3\xc7\x02\xdf\xc6\x78\x4c\x11\x9d\x8b\x55\x9f\xa9\x4c\xce\xee\xf0\x03\x9a\x43\x7c\xac\xe0\xb8\x95\x24\xa1\x92\xd8\x01\xa9\x9d\x5f\x45\x2a\xcd\x27\x63\xad\x7d\x51\x68\x77\xab\xba\xdd\x9f\x21\xea\x46\x51\x78\x9d\x96\x0b\xa9\xa4\xe0\x06\xf9\xcf\x86\xca\x2f\x64\x43\x75\x59\x6f\x28\xb6\xc6\xbf\xa9\x12\xf0\x25\xd5\x3a\x0a\x90\xb0\x5b\x1c\xa3\x77\xaa\xfa\x5b\xc4\xbd\xec\x96\xda\x07\x7a\x49\x1a\x66\xdd\x30\xe7\x1e\x0a\xf1\x6e\xf1\x44\xae\x4b\x25\x0b\x19\x4a\x73\x72\x93\xfa\xec\x19\x38\xdd\x9b\x34\xf4\xf9\x58\xa1\x41\xcd\xd4\x34\x97\xc8\xfb\x05\xf5\xe8\xf1\x56\x17\x1a\x1e\x7c\x12\xa8\x9d\xf7\x1d\xd5\xca\xad\x9d\xb9\x4d\xbf\x6f\x4d\xca\xac\x00\xac\x2f\x3f\x0c\x3c\x6f\x43\x97\xf7\x3b\x61\x92\x76\xc2\x44\x55\x7c\x7e\xa2\x6a\xe4\x3f\xa9\xf2\x60\xcf\x6c\x14\x21\x02\x17\xdf\x8b\x9a\x93\x78\xbe\xa1\xa8\xf8\xef\x7b\x3d\x80\xd5\xb8\x95\x26\xbc\xee\xe0\xc1\x43\x5b\x98\x8f\x2b\xf2\xec\xb9\x43\xf5\x76\x68\xb2\x66\x82\x67\x2e\x7a\x24\xbe\x88\x31\x66\xdb\xdb\xb1\x71\x33\xb4\xd9\x2e\x5f\x7a\x5c\x0f\x54\x46\x76\x4f\xfb\xca\x83\x48\x8e\xf2\xe9\x35\xc2\x2e\xf9\x38\x50\x72\x74\xeb\x8a\xc5\x95\x44\x2d\xe8\x3e\x69\x1f\x25\x61\x1d\x78\xd9\xe2\x8d\xa1\xdf\xdd\x4e\xd2\xf7\x22\xef\x86\xac\xac\xee\x40\x55\x66\x12\x73\xbe\x23\x70\x5e\xb4\x08\x8f\x95\xb2\x1f\x67\x7c\x0d\x14\x58\x77\x05\xd2\x7c\x91\x89\x50\xe1\x5c\xab\x38\xcf\x53\x3e\xbb\xad\x69\x03\x37\xf1\x19\x12\xe3\x1b\x1a\x60\x40\xcb\xd9\xa3\x10\x04\xa3\xb3\xce\xfe\x3b\xcb\x93\x3e\xb1\x1d\xb0\x33\x7e\x86\x62\x18\x70\xef\xbf\x8b\x5d\x5a\xe8\xee\x35\x27\xb4\x30\x09\xa1\x6d\x3c\xeb\xb7\xb5\x7c\xeb\x27\xa5\x41\xf6\x9f\x92\x24\xff\x98\x55\xdd\xdc\x50\x35\x8c\xcc\x39\x68\xbd\x9d\x5a\xdb\x72\x0e\x9e\x0e\x8e\xf1\xd0\x8c\x02\x4b\x8a\xfc\x28\x14\x29\x30\x20\x08\x3f\x51\xd6\x5b\x6b\x0a\x8c\x5b\x43\x0c\xc3\x7f\xa4\x6c\x09\x6d\xdc\x72\xfd\x90\x18\xe5\xe8\x0e\x14\xa7\xcc\x9a\x53\xd9\xff\x24\x18\x13\x87\x7c\x1c\x49\xba\x67\x5a\x76\x52\x65\xa4\xdc\x71\x87\xe1\x35\x45\x0f\xd6\x19\x96\x17\xdf\x27\xc9\x92\x6a\xb1\x4e\x07\x2d\xcb\x95\x9a\x31\x52\x87\x00\xb5\x63\x80\xd4\xa0\x37\xa9\xaa\x21\xf7\xf9\xd5\xf3\x99\x96\x62\xa3\x60\x49\x36\x48\xe5\x46\xd1\xec\x4e\xaa\x0b\x79\x92\x40\x37\xa0\x99\xbb\x47\x3e\xac\xf8\x98\xc2\x0a\x24\x9e\x6f\x29\x02\x74\x9e\xc4\x36\x9b\xf4\x32\xd2\x90\x40\xc7\x1d\x82\x70\x81\x75\xe4\x1a\x7d\x5e\x84\x9d\x9e\x71\xd9\x47\x18\x37\xc3\x7e\xc4\x39\x3c\x50\xba\x2d\xfa\x0a\x24\x8e\x4f\x35\x7c\x17\xe1\xc3\xb2\x62\xf9\x5c\x7d\x7e\xff\x0b\x9e\x92\xf0\x5d\xa5\x7c\x78\x98\x7a\x45\xc7\x94\xdc\x91\xa1\x3d\x42\x55\xde\xcd\x59\xed\xcb\x47\xc3\x00\xe1\xc6\x7b\x81\xae\x76\x80\x6e\x81\xfa\xc8\x8d\x40\x59\x6d\x5d\xc0\x56\xe8\x76\xae\x03\x52\xfe\x7c\x82\x50\x5a\xe0\xd0\x1f\x68\x57\xa1\x2d\x0a\x12\x5d\xa6\x35\x3d\xed\x34\x67\x8b\x58\x47\xa8\xd5\xbe\x50\x7e\x93\xa2\x51\x56\x47\xa1\x5d\x04\x97\x71\xc7\x85\x0f\x4b\x61\x6e\x5a\xa6\xe6\xf9\x05\xbc\x8a\xf0\xc9\x18\x2f\xb1\x67\xd3\x67\x54\x57\xc8\x35\x5a\x3b\x05\x2a\x2d\xbe\x1c\x70\xc2\xce\x86\x22\x5c\xb2\xe6\x2e\xc0\x76\x14\xbc\x11\x80\x5f\x0b\x10\x04\x8b\xe9\xa2\xdf\x0d\x76\x22\x68\x77\xbd\xeb\x73\xca\x81\xd1\x07\x1c\x2c\x1f\x81\xe8\x04\x0d\x33\xc0\x51\xae\xa2\x36\x8b\x07\x36\x86\x6b\xbd\x0b\x8e\x95\xc4\xb7\x1e\x6e\x89\xc2\x36\x3c\x9d\x11\x46\x4f\x8e\x94\xac\xd3\x95\x61\x11\xc4\x33\x45\x51\x29\x4e\xec\xc4\x12\x86\xfc\xe7\xfb\x74\x63\x98\x63\x77\x10\x8f\x88\x0a\x5c\xcd\x39\x8e\xee\x6e\x50\x02\xc1\x7f\x85\x81\x20\x32\xaf\x74\x95\x98\x21\x5b\x3a\xec\x39\x4d\xfb\x08\xcb\x1c\x23\xd4\xe7\x5f\xac\x2a\x41\x92\x94\xf3\xae\x6d\x1c\xa6\x83\x07\xf9\xf8\x56\xe0\xe7\xc6\xae\x86\xee\x11\xc7\xcf\xb3\x83\x84\x9a\xac\x37\x2b\xa5\x8c\xb3\x3c\x89\xf2\xa3\x3d\x13\xab\xa6\x38\x1e\x35\x7c\xe2\x28\x0b\x51\xd2\x5b\x34\x29\x5a\x2b\x24\x32\xf1\x18\xc7\x0f\x86\x0a\x56\xbd\x11\x3c\xa7\x04\x55\xd2\xa4\x17\x66\x96\x1b\x03\xd9\xd5\x57\x75\x5b\xb3\x15\xa0\x14\xcb\x7c\x68\x4a\x06\x44\x2d\x2b\x4b\xa0\x93\x24\xf5\xf2\xa4\x0a\xbd\x75\xd4\x1e\x48\xb0\xa1\xc0\xb2\xa6\x03\xbf\xbb\x3a\x39\xa9\xb2\x8c\x6c\x47\xc9\x0a\xc9\x96\x2b\xe3\xdd\x8f\x55\x23\xfc\xc7\xa5\xc4\x6b\x7a\xba\x9e\xa7\x54\x19\x99\xf0\xd1\xdf\x43\xcc\x12\xa4\x93\x1c\x7a\x4a\xd7\x84\x3c\x16\xd3\xee\x74\x4d\x1c\x66\x39\x24\x7f\x0e\x39\x8e\xa8\x26\x8c\x56\x08\x39\xcf\x08\x4b\x0b\xa1\xa7\x38\xfd\x7a\xf4\xa4\xec\x7b\x30\xb3\x20\x4d\x4e\xec\x62\x88\x29\x73\x67\xa8\x9c\xe8\x58\xa4\x12\xa4\xbf\x27\x1a\xbe\xf9\xa9\x6c\xad\x39\xbf\xbf\x1e\x59\x74\xe6\xb1\x4a\x0e\xa0\x1a\x70\x6d\xd0\x43\x71\x13\x69\xbb\x28\xc2\x29\x48\x39\x74\xfa\xc6\xa2\xaf\x5f\x8c\x26\x2c\xeb\x1f\x0d\x7d\x01\x40\x4b\xfe\xc5\x36\xec\x74\x17\x93\x94\xf0\x40\x97\x26\x14\xcf\x09\x20\xa0\x14\x9d\xf9\x8c\x5e\x98\x24\x1d\xcf\xa8\xb6\x6c\x4a\xbd\x75\x77\xe4\x37\xf1\x08\xf8\x04\x91\x24\x9e\xc7\xd7\xb5\xd0\xdc\xd7\x4b\x88\x31\x35\x0a\xf5\x93\x54\x02\x19\x25\x36\x72\xc8\xc9\x33\x78\xaa\xf5\x4a\x92\x66\x39\xc5\x76\xb2\x10\xd7\x9c\xff\xca\x86\x32\xdb\xef\xd9\x22\x1f\xb1\x10\xcd\x77\x31\x9b\x5f\xa3\xab\xc4\xc8\x0f\xb1\xbe\x92\xd0\xb5\xc4\x43\x61\xcc\x5c\xe1\x73\x0e\xa6\x4d\x8e\xac\xa6\xe1\x62\x42\xd5\xa5\xb0\x59\xf3\x9b\x08\xa6\x32\x1f\xbb\x54\x59\xf4\x99\x5d\x40\x7f\x56\xb7\x0c\x9f\x2d\xd5\x73\xbc\x2a\x68\x68\xb8\x0c\x84\x0d\x99\xc9\xd8\x7c\x52\xfa\xdc\xfc\x5c\x7d\x10\xf7\x53\x4b\xda\x4b\x35\x35\x16\xd7\x15\x19\x75\xdd\xc5\x86\x9d\x24\x6a\x2d\xda\xb4\x43\x29\xab\x4b\xdb\x7d\x7f\xcf\x86\x2a\x26\xf6\x5f\xee\xbd\x4c\x02\xc9\x18\x9a\xec\x48\x8a\xbd\xe1\xb4\x2a\x0b\xdd\x52\x3a\xa9\x8c\x8d\x0b\x02\x5c\x51\xea\x68\xa7\x49\x9c\x43\x0c\x41\x9c\xdc\x6b\xce\x33\xee\x8a\xd2\xad\x68\xb6\xf6\x28\xb6\xe6\xe6\x50\xb1\x35\x21\xb4\x28\x42\xf7\x6a\x71\x64\xd7\x79\x3e\x19\xfa\xfc\xe1\x94\x92\x2a\x62\x3d\x48\x07\x2d\x38\xd5\xc5\x8a\x1e\xc2\xe9\x7a\x37\xc9\x72\x35\x3e\xde\xd2\x3a\xaf\x2a\x06\xb4\xff\xd9\xdf\x9b\xd4\xdd\x88\x4a\xfb\x76\x6d\xe8\x5b\x79\x1e\x6a\x57\x8c\x1f\xb9\x64\x70\xa5\x9b\x24\xfd\x22\x88\xf6\xc3\xfb\x1c\x6d\x79\xa2\xa1\x42\x83\x12\x88\xe1\xee\x91\x6f\x04\x78\xae\xf1\x19\x05\xe2\x64\xd9\xe3\xa5\x55\x9f\xf5\x60\x75\x3b\x19\xc4\x2d\xe6\xe7\x72\x67\x00\xdd\x94\x74\x09\xf8\x44\x38\xe2\xbe\x6b\xbf\xc1\x71\x1b\x2e\x9f\x8c\x7c\x12\xf0\x86\x5d\x09\x33\x74\x4b\x21\xa1\x7e\x10\xf8\x44\xfb\x81\xca\xea\xdb\x49\xb4\x94\xd5\x3c\x3a\xfe\x11\x85\x4f\x7c\x5c\xc2\x0c\x16\x5e\xa9\x47\x83\x23\x83\x34\x4c\x06\x98\xdc\x40\x24\x91\x54\xf0\xb1\x92\x56\x6a\x25\x83\xc5\x22\x12\x2e\x22\x1f\xdd\x97\x30\xa6\x69\x24\xc1\xad\xb7\xf6\x4e\xf3\xae\x4d\x27\x7d\x69\xf9\x23\x44\x48\xc8\x61\xbf\xad\xc8\xbb\x37\x31\x0a\xf1\xf0\x1f\xba\xc9\x5e\x4c\xbe\x38\xa7\x97\x07\x28\x16\x75\x77\xe4\x4d\xfb\x46\x3e\x1f\x3e\xa7\x05\x9d\xae\x81\x9f\x34\x5e\x8d\x33\x93\x7e\x0b\x39\xa9\xb5\xf4\xef\x52\x0c\xcb\xf2\xa0\x14\xe7\x22\x9c\xd2\xa6\x2f\x51\x11\xf8\x58\x1e\xaf\x02\x4a\x7a\xe2\xf8\x15\x55\x8d\x6b\xd9\x6c\x09\xcb\x85\x6b\xb8\x28\xae\x4c\x08\x61\x15\x35\x6e\x6e\x2a\x9f\x50\x4e\x89\x28\x3e\xc8\x3a\xe5\x1f\xb4\x27\x6b\xf6\x6c\x96\xa5\xd9\xcb\xbb\xb4\xed\x39\x74\x03\x45\x14\x87\xde\x95\x13\x34\x74\x54\x15\x9e\x41\xe2\xa5\x4c\x0f\x82\xe2\x82\xdf\x7a\x6e\x34\x2e\xf1\x16\x7f\xb6\xe6\xf4\xda\x3e\x09\x94\xde\xe8\xbb\x04\x4a\x88\x92\x41\xf1\x12\x44\x4b\xcd\xb7\xd8\x9f\x1f\x7a\xbf\x83\xdb\x0a\xa7\xde\x42\x86\xe3\x84\x87\x8b\x67\x83\x8c\xff\x7f\xd5\x56\x88\x27\x55\x81\x6e\xc7\xc8\x2b\xb7\xfc\x2e\xc2\x75\xf1\x02\x57\x9b\xe5\x79\x3d\x2d\x6f\x32\x44\x89\x68\xee\xc6\x50\xc9\x30\x4c\x34\x14\x39\xf1\x3d\xed\x18\xfc\x1e\x00\x50\xc4\xcf\x8f\xf0\xfc\xf8\x86\x55\xb6\x7e\xae\xb4\xf6\x16\x83\x6b\x91\x3c\x06\xe7\x65\x8f\x44\xfd\x9a\x8f\xc7\x72\x9c\x38\xef\xee\xa1\xab\xa1\xfb\xf9\xed\xe7\x69\x3c\x23\x4c\x78\x80\xf2\x85\xb8\x01\xd4\x9c\x3b\xff\xd3\xb0\xa8\x74\xae\x7b\xd3\xe2\xb5\x73\x2d\x18\x5f\xee\xe7\xa5\xc3\xec\x16\xfd\x3e\xd6\xbb\xaf\xba\xba\xbc\x69\xb7\x4d\x98\x32\xcc\x8c\xf4\x49\x48\x22\x18\x40\xbc\x13\x21\x92\x3d\xad\xda\xed\x4f\x68\x21\xe8\x1d\xa3\x7d\xae\x2f\xaa\x65\x27\x94\x23\xe0\x2d\xdd\xa1\xb7\x89\x97\x8b\xfc\x6d\x77\x43\x2e\xc2\xc6\x2a\x4e\xc3\x8d\xdf\xa4\x5f\x42\x81\x7e\x07\xb5\xf2\x89\x98\x41\x95\x17\xa9\x89\x73\x1b\x25\x7d\xab\x05\x63\xbe\x1f\xf8\x91\xf7\xfd\xb2\xcd\xd6\x74\x11\x6e\xb6\x07\x5e\x19\x0b\x3b\xdc\x49\x25\x03\x74\xb2\x24\x5a\xf2\xf9\x7a\x9e\xa4\x31\xae\x13\x4f\x12\xee\x48\x48\x42\x2f\x51\xa6\x2c\xb5\xc7\x52\xf2\xff\x7a\x7d\x76\xf6\xdf\x47\x02\x8a\x71\xff\x8f\x29\xe5\xc7\x63\x3e\xa1\x2d\x7b\x08\xfa\x90\xf4\x95\x2e\x0e\xef\xf6\x4c\x50\x7b\xe9\x25\xef\xe0\x3c\xb3\xc0\x01\x24\x1a\xa2\x5c\x24\x5f\xac\x9a\x08\xb3\xd9\xd2\x01\xc3\x97\x01\x30\x24\x76\xb7\xa9\xc8\x85\x41\xfe\x2c\x92\x3c\x8c\xe5\x6f\x04\x5e\x26\xed\x4c\xa0\xe8\xb7\xdf\x0a\x94\x5c\xe2\x25\xcd\x07\x38\x47\xa8\x00\xa0\x03\xee\x0e\x90\x29\x47\xa3\x17\x4f\xea\x37\x40\x4f\x03\xca\xf4\x20\x50\x62\xd5\xf7\xbc\x92\xed\xff\xfe\xdc\xc8\xa3\xda\xd8\x95\x9d\xd5\x6e\x91\xc8\xba\xee\xa6\x2f\x7c\x85\xf3\xf3\xfb\x98\x94\xac\x28\x8c\xbd\x44\x7c\xb0\xbc\xec\x92\xe8\xc6\x99\xc5\x68\x75\x4a\xd5\x64\xcf\x63\xe9\x11\xb9\x54\xba\x5d\xac\x30\x97\x01\xa1\x08\x05\xc0\x4f\xc9\x7b\xaa\xb3\x9b\x98\xae\x76\x92\x6e\x0c\xeb\xdd\x0f\x70\x39\x7c\xa2\xdd\x2c\x94\xc6\xcc\x79\xbd\x45\x93\xc3\x4c\xcd\xc9\xa4\x5c\xd0\x6c\xc4\x0b\x5e\x4f\x35\xb6\x2b\x53\xda\xac\x15\x8b\x9e\xcc\x58\xdf\xdf\x0d\xde\x81\xb8\xad\x7a\xd3\x82\x47\xa5\x9a\xec\xcc\x42\xbd\x63\x7a\x8b\xac\x64\x83\xe9\x35\xd9\xf0\xed\x8c\x93\x23\x17\x31\x25\xe9\xd2\x8a\xb5\x4b\xca\xb1\xe9\xb8\xca\x8c\x8f\x8f\x21\x7c\x49\xdc\x7a\x6e\x0c\x5f\x73\x79\xf0\x03\x6c\x18\x4e\xfa\xc6\x51\xc0\xaf\x6a\x59\xce\xad\x40\x09\xbd\x72\xef\x2d\x77\xb0\xd0\x30\xc7\x5f\x5d\xc4\x9b\x76\xba\x0e\xde\x34\xf0\x4f\x31\x02\x31\xce\x3e\xc1\x62\xae\x35\x7c\x51\x05\xe2\x12\x95\xd6\xb9\x10\xa7\x2a\xa5\xdd\x82\x9d\x4c\x3a\xeb\x69\xfa\x88\xbd\x99\x27\x36\x35\x97\xfa\x61\x8e\x66\x27\x87\x92\x49\x70\xf2\x3f\x94\xd5\x98\x67\x67\xeb\x5d\x9b\x66\x36\x6a\xd7\xe8\x15\x3a\x8e\x95\xf2\x49\x52\x45\xfd\xd0\x46\xad\x6c\xd2\xbb\xea\xdd\xa5\x89\xcb\xc7\xb8\x6f\xbc\xf8\x37\xf1\xa8\xf8\x44\x75\xd2\xf5\x92\xd8\xa4\xcd\xee\xaa\xb6\x31\xe2\x26\x0e\xf9\x6d\xe5\x37\xd4\x26\x98\x80\xbe\x17\x70\xd0\x75\xe5\x7d\xf2\x43\x7c\x4c\xc0\x66\x1f\xe1\xa4\x61\x66\x9f\xa0\x7f\x43\x10\x01\x9c\x4e\x12\x66\xfa\x36\xfe\x07\x4c\x2b\xac\x61\xf7\xb1\x3c\x89\x1e\x47\xf1\x76\x58\xbe\x3e\x50\x8a\xb1\xf7\xa9\x96\x01\x74\x7f\x47\x89\x9b\x3e\x3b\x5b\x5f\x4c\x06\x9d\x2e\xa5\xcc\x33\x1c\xdb\xee\xa2\x61\xac\x45\x45\x5c\x0f\xff\x01\xa1\x34\x5c\xd6\xed\x25\x49\xd2\xa3\xf4\xd1\xf1\x7b\x3d\xd7\x57\x6b\x05\x18\x36\x62\xf0\xee\xcc\x35\x27\xd0\x7a\x5d\xb7\x1a\x5e\x2a\xd5\x5d\x17\x5e\xa9\xdb\x23\xe8\x79\x9f\x9d\x75\xba\x7a\x5e\x21\xf9\x7c\x29\x1c\x9f\x59\xa8\xdb\xc8\x2c\x26\xa9\x70\x83\x30\xf4\x6e\xab\xfa\xec\xed\xaa\x24\x2a\xcb\xcd\x2a\xa5\x47\x58\xb7\xf7\x22\xb8\xc1\xe4\xb8\x4e\xbb\x86\x20\xfd\x9e\xf4\x72\xbd\x54\xf2\x99\x9d\xad\xdb\x36\xfb\x50\x72\xfe\x82\xfc\x16\x96\x07\x7c\xac\x4d\x10\x93\x28\x4a\x56\x30\x76\xbe\xc4\x8f\xe1\x7f\x53\xbe\x50\x60\x11\x8a\x7f\x92\x2f\x6e\xfa\x66\x37\x7a\xb0\x42\x9e\xa3\xb7\x29\x6a\x5e\x1e\x1f\x89\x4c\x92\x3b\x3f\x4d\x2c\xc8\x9b\x63\xc0\xca\xa6\x76\x57\x32\x61\x1a\x5b\xce\xd4\x44\xc9\x83\x3e\xc9\x27\xca\xf5\x35\x1b\x64\x54\x8d\x16\x62\x10\x68\x13\xd7\xf1\xe7\x7c\x52\xe5\x86\xb5\x68\xe2\x25\xef\x0b\xcf\xaa\x6e\x18\x0a\x22\xf1\xe6\x84\x19\x8f\x34\xad\x15\xa0\x02\x0f\xf0\x04\xee\x93\x4f\x4a\x43\xa0\x48\x89\x07\x29\x75\x86\x58\x95\x6e\xb2\x8e\xa6\x24\x5a\x65\x9e\x85\x16\x99\x9f\xe1\xf5\xeb\x2d\xad\xaf\xfa\x9b\x34\x70\xb1\x7d\xbf\x13\x6c\x53\x9a\x9f\x9e\xae\x1f\x3e\xbc\xcb\x8b\xb7\x5d\x1c\x7a\x51\xb7\x8b\x04\xba\x73\x1b\x97\x1a\x40\x90\x2c\x40\xf5\x01\x8e\x3a\xd8\x76\xce\x94\x46\xe8\xe7\xe1\x4f\xac\x40\x9d\x4b\x08\x59\x45\xbb\xab\x9c\x0e\xcd\x6b\xe3\x1f\xd1\x35\xf3\xe1\xf7\xa5\xd2\xe0\x3d\x30\x5b\xcf\xbb\xa9\x35\xb9\x8d\x5d\xc7\xb9\xa3\xe5\xb9\x5e\x38\x50\x9f\xc0\x88\x79\xa8\x01\xae\xa4\x15\xb6\x43\xde\x95\xa5\x7e\xe6\x0b\x89\x1b\xa5\xd7\x34\x3b\x5b\xef\x99\x74\xc9\xfa\x62\x3b\xd2\xc5\x2d\x85\xc4\x6f\xa9\x15\x39\x59\xb6\x69\x33\xe9\xd9\x22\x0b\xde\x42\xa4\xcb\xc4\x89\x40\xb9\xa4\x70\x15\x06\xb1\xe5\x86\x72\x3b\x48\x56\xe2\xcf\xfa\xae\xbf\x2d\x7a\x23\xa8\x80\xdd\x56\xac\xbb\x93\x18\x5a\xb8\xd5\x67\x47\x9e\xa5\xf3\x74\xa3\x58\x4f\xe9\xff\xff\x72\xbd\xb1\xf3\x67\x3c\x08\xef\x74\xd7\x9e\x64\x71\x09\xf6\xc9\xc5\x5e\x2b\x9c\x74\xba\x41\xe6\xef\x0d\x55\x69\x89\xfb\x3d\x11\xaa\xee\x1b\x15\x63\x06\xe5\x8c\xb3\x14\x17\x73\xb7\xd7\x88\xb6\x57\x11\xc9\x2a\x52\xeb\x31\xa5\x4f\xba\x96\x5f\xad\x23\x22\x55\xaa\x4d\xd2\xfd\xf2\x02\x1a\xa1\x71\x2d\x37\x95\x7a\xfc\x8b\x0d\x8f\xdf\xc6\xe6\x28\xcb\xae\xe3\x77\xee\x6a\x65\xae\xbb\x0e\x49\xe8\x85\x59\x26\xdd\xbf\xae\xc5\xcc\x97\x85\xaf\xa8\xa6\x94\xc5\xb0\xf3\x7c\xf1\x98\x45\x2d\xcf\x53\x7b\xd8\xe4\x8b\xd9\x1c\x08\x1e\xc4\xc0\x5b\x41\x6a\xd7\x03\x2f\xdf\x70\x13\x9d\x16\x18\x17\xdf\x44\x50\xe4\x0c\xa0\x3c\xf0\x76\x1d\xcf\x13\x0b\xf7\x59\x0a\x97\xa4\x5f\x6a\x6c\x3d\xf3\xa5\x03\x2e\x5c\xe1\xb1\xa1\x77\x0a\x01\xf3\x35\x25\xc5\xb8\x85\x17\x28\x4c\x28\x7a\x81\xa2\xe6\xa9\x88\xa3\x97\x86\xbe\xad\xb1\x1d\x46\xbd\x49\xef\xc8\xf5\x50\x5b\xe7\xd2\x0a\x8f\xf8\xea\x01\x16\x4b\xb1\xe1\x71\x3d\xa4\x26\x4a\x7a\x49\x3c\xa9\x88\x7c\xff\x82\x73\x71\x29\x7f\xf8\xc5\x68\x43\x09\x8a\x6c\x2a\x70\x3a\x8c\x07\x61\x5e\x53\x4d\x29\x6b\x34\xec\xe5\x0b\xb6\xaf\x19\xf3\xfb\xa1\xb7\xcc\x4b\xe0\xd6\x79\x84\xf6\xb8\xb5\x37\x55\x6e\x79\x52\xd5\x86\x4d\xdc\x11\x15\x57\xd7\xd2\x5f\xbc\x5b\x69\x9c\x79\x1c\x8c\x6c\xa2\x90\xdb\x31\xf0\xfd\x5f\x1b\x2a\x35\xf3\xaf\xa9\x26\x8b\x5f\x19\xd8\xd4\x36\xbb\x49\x4d\x37\x42\xdc\xd1\x56\x38\x77\xdc\x53\x6b\xd9\xe5\xb0\x69\x65\x5f\x71\x7d\x93\xde\x52\xa4\x36\xf2\x8c\xa7\x76\x08\xc3\x77\x8f\xd7\x8f\x51\xf6\xe9\xb5\x22\x30\xfc\x9a\xe2\x23\xe4\xc9\x20\x0d\x33\x04\x3e\x88\xaa\x1f\xd0\x9b\xe5\xe3\x12\x29\x66\x66\xa1\x9e\x15\x4b\x9c\xc8\x08\xe0\x3a\x4e\x2a\xce\xfb\xc9\x92\x79\xd5\xf4\x74\xbd\x9f\xf4\x95\xe6\xe2\x75\xe5\xd7\xe5\xfd\xaa\x9a\x5d\x93\x9a\x66\xce\xc2\xd6\xe8\x08\x82\x8b\x2d\x1f\x3b\x0e\x77\xd8\xb2\x26\xdb\xe5\x19\x2d\xbb\x46\x7e\x9e\xdf\xa1\x79\xa9\x6a\x6a\xaf\xeb\x52\xe1\x21\xb4\x30\xfd\xd1\xdf\x6c\x68\x0c\xbe\x14\xa8\x7d\xbe\x9e\xf5\x92\x25\xb7\x92\x63\x71\xfc\x90\x86\x25\x1f\xbb\x05\xa4\x6d\xd2\x9e\x45\xc1\x07\x21\xd5\x54\x43\x49\xf9\x71\x8a\x22\xfc\x4b\x4f\x0d\xbf\x51\x42\x23\x48\xf2\x3f\x2d\x1e\x42\x8b\x99\x24\xe8\xb6\x82\xb0\x28\x1f\x0f\x5f\x70\xb3\xc1\x1e\x69\x46\x83\x2c\x5c\x0e\xf3\xd5\x9a\x5a\x71\x2e\xe9\xb5\xe4\x92\x62\x7e\x2f\xa6\xd6\x14\xb7\x44\xee\x24\x48\x2d\x21\x7d\x03\xf0\x1e\x25\x47\x71\x82\xa8\x29\x27\xb4\x62\xd1\xe2\x75\x4a\xad\x07\x79\x18\xaf\x4e\x79\xf2\x2e\x2b\x5c\x72\x62\x46\x6b\xba\x03\xff\x1c\xbf\xe1\xd7\x30\x97\x24\x7b\xf3\xf7\xd2\x1c\x64\x79\xd2\x33\xa9\x48\x73\x62\x3b\x38\x8b\xb5\x88\x4f\xb4\x34\x6a\x98\xe5\xd9\x94\x77\xbd\x67\xc0\x01\xeb\x1c\xf8\xfc\xcc\x7c\xa7\x9b\x12\x16\xbc\xe2\x4f\xdd\xaa\x50\x56\xaf\x67\xcd\xae\x6d\x0d\x5c\xc8\xc4\x8d\xce\x58\x5c\xc5\x9e\xa4\xf8\x6e\xec\x6e\x17\xdc\x70\x6c\xdb\x28\x3c\x42\x83\xd6\x71\xe5\x8a\xc1\x25\x5c\xb9\x8a\xe4\x2f\xcb\xd3\x70\xc9\x72\x1b\x02\x96\xea\x35\x7a\x4e\x22\x73\x4a\x17\x80\x77\xfe\xfb\x43\xd5\xd4\x70\xc7\xc9\x7e\xd8\xc8\xf6\xbb\xc6\xf5\x3c\x00\x29\x3a\x36\x54\x2d\x86\xc7\x02\x5f\x9f\x8e\xc3\x4e\x37\xef\x19\x56\xdb\x42\xa0\x30\x41\x0f\x8a\x8f\x47\x15\x8e\xe9\xcd\xa4\xd7\x8f\x2c\x74\x90\xd8\x2f\x59\x99\x44\xdc\x2b\x45\x75\x0b\xaf\xd4\x23\xdb\x86\x9e\xaf\xd3\x1f\x72\x3d\xd8\x93\x0d\x9f\x60\x5f\xd2\x49\xeb\x39\xc5\x23\xea\x27\x61\xc6\x7a\x14\x0e\x96\x2e\x6e\x0f\x58\xc6\xa3\x40\x99\x53\x9f\xd7\xb4\x6a\xce\xfe\xa5\xa3\xc5\xdf\x78\x77\xb5\x95\x9a\x41\x14\x36\xa9\xd9\x07\x09\xe4\x5d\xd5\x28\x81\x5a\x30\x3a\x8a\xcf\xb8\xa5\x68\x31\x4d\x68\xfa\x67\x13\xba\x0d\x9c\x15\x07\x1c\x14\x50\xbc\x64\xfc\xe2\x83\x2a\x60\xa5\x19\x85\x71\xd8\x9c\x18\x8b\x26\x7c\xfc\x0e\xbb\x5c\x0c\xa5\x3f\x51\x75\xad\xa5\x24\x9e\xf4\x2a\x0c\x80\x4e\xdc\xa7\xe7\xf7\xbb\xed\x8b\x7e\x1d\x0f\xf0\x91\x8a\x0b\x7b\x61\xeb\x09\x9f\x5c\xbe\x0b\xee\xb8\x30\x1c\xe9\x19\xc9\x62\xaa\x36\xfd\xb3\x2a\xb2\x7d\x14\x78\xce\x2c\x48\xe5\xde\x6b\x7f\xbf\x23\xcb\x8d\x69\x9b\xf4\xb3\x27\x7c\xe1\xef\x2a\x7d\x1e\xf3\xfd\x74\xe0\x95\x6b\xd7\x29\xcf\x95\x72\x8f\xcf\xe6\xd1\x3a\xc5\x18\x0c\x2e\x8a\xff\x08\xc0\x00\x96\x97\xbb\xa5\x07\x3c\x3b\x7b\xa8\xde\x4c\x06\x4d\x5d\x02\xbb\xa2\x4a\x60\xec\xb6\x28\x94\xb3\xf8\xa7\x94\x01\xd9\x55\xba\x16\x8e\x1f\x81\x42\x82\xfd\xb5\x0b\x31\x27\x80\xd3\x49\x48\xa8\xd1\x0a\xf3\xb9\xcf\xa2\x55\x1e\xf7\xbf\x13\xc0\x3b\x50\xd4\x63\xcc\xaa\xc7\x57\xff\x64\xa8\xd8\x0e\x7b\x49\xf5\x8d\x63\x29\xc2\x6c\x80\x87\xa3\x45\x8c\x25\xf4\x10\xaf\xf1\xa7\x69\xbb\x03\x8b\xff\x9a\x16\x44\xde\xc4\xbb\xe3\xca\x94\x77\x5f\x39\xf8\xb9\xd1\xc4\xa1\x7f\xf8\x65\x5e\xfa\x4e\x56\x74\xff\x2a\x69\x79\xa9\x22\x81\x7c\x8a\x65\x67\x67\x03\x23\x7c\x2c\x14\xc4\x55\xde\x45\xdd\x03\xb5\x86\x2a\x11\xdd\x3a\xf5\x7d\xba\x5d\x12\x6b\xf1\xa7\xca\x23\xe2\x53\xd5\x84\x98\x26\x49\x0f\x0a\xff\xd8\x19\xbf\x1e\x28\x9f\xff\x73\x2a\xef\x80\x0c\xb2\xd8\x66\x2b\x9b\xff\x47\xca\x92\xa8\xd9\x35\x61\xfc\x84\x72\x7f\x7c\x14\x28\x1f\x84\x8b\x81\xae\x5e\x9c\x50\x56\x5d\x53\x0d\xd5\x52\x7f\x46\xaf\x42\xa8\x9f\x60\xc9\xc5\x7c\xc0\xbe\x33\xe5\x10\xd0\x24\x5a\xed\xf5\xc3\xa6\xac\x09\xd8\xc5\xb8\xa9\x1b\xfc\xb9\xdd\x23\xd5\xfb\xf0\x9d\x22\x0e\x72\x91\xeb\xb2\x85\x5c\x70\x92\x22\xb8\x14\xa1\x00\xa5\x31\x56\x76\x48\xf9\x7c\xbd\x6f\x9a\x4b\x42\x33\x50\xe0\xba\xb8\x78\x9f\x53\xd1\x71\xc7\xc6\x36\x7b\xd2\xc7\x0a\x58\x6c\xf8\x38\xf0\xc2\x23\x68\x34\x72\x66\x1c\xca\x99\x83\x66\x05\xd3\xde\x75\xb6\xf4\x29\x35\xd6\x80\x17\x74\x86\xf0\x57\xf9\x80\x52\x3e\x66\x85\x34\xfe\xab\xa1\xb2\x2d\x5b\xaf\xec\xea\x36\xbd\xc5\x34\x34\xf1\x84\xee\x19\x18\x2b\x27\x9d\xa2\xe0\x5e\xc4\x20\xab\x1c\x80\xf2\x64\xc5\xa6\xe8\x40\x90\xe9\xa3\xda\xed\x4f\x29\x25\x85\xaf\x57\xa9\x7e\x0d\xe2\xdc\xf4\xfb\x0c\xc5\x38\xfc\xd1\x8b\x0f\x57\xfc\x26\x15\xf4\xd8\x2b\x4d\x25\xe8\x2e\x5b\xaf\xa0\x41\x7d\x09\x5e\x1c\xf2\x12\xa5\x25\x99\x1e\x2f\x9f\xb8\x58\x32\xb3\x47\xc2\x2c\xaf\x79\x6e\xc0\x9f\xd1\xf5\xf0\x71\xd5\xf5\xd8\x23\x7d\x9b\xe6\x28\x11\x4b\x5b\x4f\xcd\x49\x1c\xdd\xc2\xda\x26\x50\x5f\x15\xa9\xce\xb6\x42\x32\xc5\x8d\xc6\xac\x19\x86\x0a\xf5\x28\x89\x51\xcf\x2c\xd4\xdb\x83\xb8\x65\x7a\x36\xce\x4d\x94\x8d\xb5\x50\x2b\x10\xbd\xfc\xfc\x5e\xdd\x5f\xef\xda\x34\xb1\xd9\x84\xf2\x92\xe0\x8e\x38\x14\xe0\x3f\x1e\xaa\x3d\xdd\xfb\x49\x67\x79\x6a\x2d\xca\xfd\xc8\x84\xc1\xf8\x45\x50\x3a\x35\x2a\xc6\x89\x33\xc6\xf4\xca\x39\x3f\x18\xf3\x62\x35\x71\x2b\xb2\x29\xa7\x52\x58\x92\x59\x18\x8e\x4f\x14\x41\x2f\x8c\xdb\xc5\xb2\x26\xcd\x6d\x48\xac\x2f\x29\x44\xdf\xa3\xe5\x29\x50\xb6\x54\x93\x81\x51\x8a\xc1\xc2\x7b\x37\xf0\x6e\x95\x97\x9d\xc1\x78\xdb\xb6\x6c\x4a\x8d\xd3\x94\xaf\x89\xe2\x5f\x6d\xbb\x31\x31\xde\xfc\xed\xaa\xb5\xb7\x63\xb3\x7c\x90\x0a\x74\x81\x98\xe4\x43\x1d\xa0\x7c\xa8\xa2\x82\x9f\xfb\x2f\xfe\x5e\xcd\x73\xcd\x4e\x53\x48\xcf\xc7\x8a\xf2\xb6\x98\x9a\x10\xb1\x17\x8a\xb3\xec\x67\xc6\x27\xa3\x31\x9f\x4c\xfa\x55\x57\xee\xf2\x23\xe0\x5c\xa9\x53\x75\x66\xa1\xde\x4f\x12\xa8\x91\x30\x16\xa4\x94\x79\xce\x56\xc8\xbb\x1d\xaa\x67\x89\x67\x57\x39\x5c\xc1\x13\x47\x1f\x38\xce\x66\x3f\x4d\xfa\x49\xe6\x3d\xab\xc6\xa2\x23\x3e\x29\x3d\xbd\xb9\xf9\xb9\x7a\x77\x90\x2d\x1a\x9e\xc9\x5c\x17\x50\x1a\x8b\xeb\x2e\x12\x0c\xa9\xaa\xdc\x09\x9b\x35\x55\xec\xdc\x50\x40\x4c\xd9\x6e\x69\x7a\xba\x7e\xd4\xf4\x93\xdc\xa2\x49\x5b\xd4\x88\xe8\xf3\xc2\xed\x55\xfa\x30\xcd\x6e\x9a\xb4\x6c\x8a\xf7\xc8\x79\x59\xa0\xea\x7f\x67\x14\x4e\xbe\xd2\x4d\x22\x9b\x91\xf1\xbd\x2b\xf0\x5d\x56\x5a\x09\x7b\x47\x3e\xb0\x98\x68\x78\x5e\xd1\x8a\xc9\x72\xe1\x15\x89\x48\x72\xcd\xc9\xa8\x7c\x5c\x4a\x86\x3e\xcf\xbd\x59\x5e\xf5\x4f\xc4\xe6\xe9\x2d\x88\xda\xbc\xd3\x15\xb4\x7d\x52\x32\x57\xbd\x82\xeb\x9a\xdb\xcb\x2f\x0f\x8b\xfc\x54\x43\x07\x8f\x59\x78\x84\x34\x98\x10\xe6\xbd\x49\x9b\xf0\x98\x23\xb6\x20\xc2\x35\xa5\x0c\x5c\xf3\x2e\x8e\x2a\xc7\x79\x63\x70\x24\x37\xfd\x24\xb3\x4a\xb6\x60\x23\xd0\x5c\x61\x9f\x67\x24\xed\x76\xd8\xb4\x4f\x7a\xf8\xe8\x4d\x2e\x20\x48\x67\xa5\x22\xa0\x5c\x19\x7a\x91\x64\xa6\x63\x21\xbc\x41\x7f\x00\x2a\x3f\x35\x7a\xf2\xc8\x06\xd6\xb5\x3d\xce\x15\xc4\x39\xc4\x04\x3f\x06\xc3\x37\xec\x49\x53\x23\xcd\xb7\xa0\x11\x85\x8d\xef\xa6\x6a\x14\xcc\xba\x36\x5a\xb6\x19\x2d\x7d\x58\xd5\xee\xab\x72\xe4\x87\x81\x6a\xca\xaa\x11\xa4\x2b\x49\xb7\x2c\x9d\xa9\xe9\x87\xcc\x4f\x62\x8e\x60\xe0\x21\x41\x8f\xcf\xe5\x5d\x9b\x9a\x3e\x77\x54\x23\x09\xbd\x4f\x8f\x1c\x69\xe7\xa4\xa2\x57\x5d\x2a\x11\x5d\x8a\x84\x36\x4a\x56\x78\x29\x42\x1d\x03\x91\x2c\x1f\x8f\xbb\x66\x9a\xe8\x39\xbf\xb3\x7f\x13\x95\x5e\xbc\x84\x77\xb4\xbc\x36\x36\x56\x97\xad\x14\xb1\xac\x68\xf5\xf8\xde\xa9\x8f\xa8\x2c\x81\xb2\xe2\x8d\xc0\xbf\x8e\xf3\xc1\x58\x91\xb2\xe6\xb4\xd1\x1f\x04\x8a\xc1\x7d\x07\xe1\xa5\xa8\xfe\x68\x2d\xab\x1b\x14\xe7\x70\x03\x2f\x1a\x71\xf8\x33\x78\xb9\xa2\xe4\x49\x59\x05\xae\x85\x25\x74\x81\xf5\xec\x1c\xf9\xb2\xd2\x36\xe3\x17\x61\x8a\x9d\xc2\x35\x8a\xa5\x7a\x45\x8d\xa4\x9b\xb0\x3b\x9e\xb3\x60\x77\xbc\x88\x5b\x7a\xec\x35\x04\x89\x88\x93\xb4\x03\x14\x92\x25\xac\xb5\xb0\xf0\x05\x45\x35\x8d\x4c\x28\x2a\xed\x78\x78\x80\x69\xf8\x78\x4c\xba\x32\x6d\xad\x3e\xe1\xcd\x48\x58\x59\x09\x29\x06\x4b\x70\x21\x3b\xbe\xc3\xcf\x4f\xfa\x18\x35\xf3\xc6\xd7\x58\xfe\x15\x86\x2c\x86\xe9\x9f\x0f\x3d\xb7\x73\xfd\xb1\x0d\x67\x5d\x93\xa6\x0c\xe5\x4b\xc5\x55\x61\xcc\x6f\xab\x7e\x8a\x3c\xb1\x10\x75\x72\x32\x34\xc5\x03\xe6\x13\xd5\xdb\xdc\xec\x9a\x7e\x6e\x53\x74\x50\x09\xb7\xb0\xa6\x3c\xd5\x3c\x3c\x79\x1b\xbf\x85\x69\xf0\x41\xe0\xb1\xca\x34\xcc\xf2\x22\x7e\xf5\xaf\xe7\xe1\xd0\x6f\x20\xfc\x31\xcc\xa4\x3d\x8d\x9f\xd2\xfa\x0b\xa6\x1f\xe6\x26\x0a\x8f\xa2\x95\x55\xf9\x0b\xa3\x0f\x89\x8f\x4b\xb0\xd1\xc2\x2b\x22\xde\x50\xf3\xf8\x00\x88\xb9\x7c\xec\x26\x7d\x4e\xad\x76\x58\x8e\x71\x09\xbf\xb7\x4d\x2c\x71\x76\xd6\x21\x84\x15\xbf\x93\x35\x07\x79\xce\x35\x50\xfc\xd9\xb7\x87\x9e\xe8\xfd\xed\x2a\x31\x8a\xb6\x8d\xb0\xca\x54\x7a\x9f\x55\x68\x30\x64\x83\xc5\x2c\x0f\xf3\x01\x1b\x86\x60\x6f\x38\x1f\x78\xac\xa9\xec\x3c\x4c\x4d\x20\x61\xcb\x4e\x78\x76\x3d\xaa\xe7\xa2\x59\xef\xdb\x3e\x6f\x06\x7f\xab\xbc\xe9\xff\x8c\xaf\x66\xbb\x8a\x30\xdb\x4b\x29\x0f\xb3\xd3\x55\x46\x25\xa9\x6d\xa6\x83\x30\x57\x6e\xb9\x3f\xd0\x6e\xb9\x3f\x50\x85\xbd\x2c\x59\x5d\xb4\x26\x66\x73\x23\xd6\xab\xc7\x1f\x63\xd4\xd7\xa0\xfe\xc6\x27\x48\x48\x45\xd6\x5e\x4f\xbc\x41\xd4\x07\xcf\x00\x2b\x12\xe1\x67\x5b\xeb\x1a\x42\xf5\x65\xe5\x4e\x18\x45\x36\xcf\x11\x17\x88\xcc\x73\x31\x03\x25\xa0\xf7\x7c\xce\xff\xe4\xae\x12\xdc\x88\xc2\x5e\x98\x53\x56\x2e\x6c\x04\xfa\x45\xc6\x74\x35\xf1\x06\x3b\x29\xb6\x9a\x7b\x81\xe2\x97\x5d\x2a\xad\x5c\xb3\xb3\xf5\x6e\x92\x22\x20\x63\x43\xfe\x40\x49\x07\x9f\xa9\x12\xd6\x49\x93\xe6\x92\x6d\xdb\x28\x62\xf8\xdf\x45\x11\x5e\x9d\x74\x5d\x05\xb4\x61\x73\x95\x25\x94\xa4\xb0\xed\x13\xa5\xbf\x41\x9b\x15\xab\xf3\x8f\x54\xa3\xe1\xad\xd2\x9b\xc5\x38\x7c\xc3\x36\xf1\x66\xb1\x90\x3d\xdd\xf0\x1c\xd3\xa7\x47\xca\xf5\xd0\xa6\x19\x3b\xf6\x39\xef\x3b\xe5\x83\x76\xaa\x54\x12\x9e\xdf\x7f\xa8\x6e\x8f\xd8\xb4\x19\x66\x16\x04\x7c\x5c\x2c\xf2\x03\x3e\x56\x7d\x9d\x7d\x93\xe6\xd1\x2a\xc6\x0d\x6a\x64\xf7\x10\x08\xf2\xc9\x50\x4b\x44\xe0\xdd\x88\x5e\x44\x45\x86\x1d\xc6\xad\xd0\xe7\x9d\xd8\x65\x7e\xac\xb7\x9c\x1f\x97\x4c\xd1\x5e\x7a\xa9\x9e\x2f\x23\xd0\x95\x82\x6c\xcd\xdb\x30\x96\xa6\xfd\xfc\xfe\x7a\x3a\x88\xb0\x1c\x49\xfe\x3c\xe1\xad\xde\xcb\x56\x72\xf3\xfb\xeb\x59\x3e\x68\xad\x22\x5f\x45\xc8\xca\x34\x1f\x04\xc6\x3f\x1c\xfa\x40\xe7\x86\x2a\xbd\x0e\xda\x09\x75\x2d\xf1\xde\x42\x1b\x3d\xd2\x12\x68\xb1\x83\x1b\x7b\x4a\x2d\xf1\x6d\x13\xb7\x4d\x6a\xa9\x03\x4c\x9b\x97\x8a\xe0\x43\xcd\x49\x60\xf7\x55\x9a\x98\x9a\xd6\xd1\xd5\x5e\x88\x55\x5d\xc0\x7c\xaf\x56\x72\x49\xfd\xd8\xbd\x52\x5e\x7c\xf0\x60\x3d\xcb\x6d\xbf\xd9\x0d\xa3\x56\x6a\xe3\x09\x25\xd1\x02\xd6\xae\x04\xf7\x5e\x66\xec\xdb\xba\xa9\xd5\x30\x56\xec\x70\x51\x27\x4b\x7b\x97\x82\x11\x71\x58\xa8\x82\x42\x48\xfe\x48\x2d\x68\x39\x76\x66\x3e\x51\x65\x9b\xac\x9b\xe4\xbb\x94\x0e\xfb\x3d\xd0\x33\xa5\xcd\x03\x50\xa6\xeb\x00\xf1\x51\xfb\x3d\x08\x8f\x08\xa2\x43\x38\xa3\x40\x45\x15\xdb\x41\x33\x32\xad\x9a\x7a\xcb\xc0\xb1\x45\x9c\xfc\x33\xaa\x1d\xda\xb6\xa6\x94\xa2\x45\xa0\x74\x18\x4e\x28\x49\x3c\xa4\x8c\x02\x10\xaa\xee\xe4\x0d\x75\x6f\x7d\x93\xe5\x7b\x8a\x37\x84\xb0\xf3\x01\xa5\xde\x88\x7d\xfe\x8d\x02\x26\xf6\x34\x6a\xd3\xd3\x1c\x3d\xb0\xb1\x93\x03\xd8\xa7\x67\xbc\xce\x88\xab\x47\xdf\x1d\x2a\x35\x97\xab\x14\x71\x22\x4b\xff\xd1\xb8\x7d\x46\xc8\xbb\xb9\x6b\xa2\x2e\x5e\x81\x08\x16\x2a\x83\x61\x6a\xc7\xda\xad\x0c\x56\x76\x36\xbc\x09\xc8\x3f\x1b\xfa\x82\xc4\x13\xaa\x64\xf2\x24\x30\x67\xd1\x23\x2c\xae\x54\x9a\x16\x8a\xf1\x84\xc1\xf1\xe3\x4a\xa9\x0f\xea\x3f\x81\x56\x3a\xde\xec\x69\xdc\x35\x76\x67\x08\xda\xaa\x32\xca\x8c\x03\x9f\xb6\xbf\xd8\x03\xb3\xf5\x25\xc3\x1b\x36\x46\xe6\x7b\x5a\x6b\xf9\x3d\x05\xd0\xb6\x92\xa3\x16\xfa\xd6\x82\xcf\x7a\x58\xea\xbe\x82\xfc\xdf\xa9\x62\x65\xf7\x6d\x9e\x86\xed\x90\x5b\x15\x25\xe7\xaf\x39\xf1\x99\x3b\xb8\x7e\x8c\x6e\xdf\x99\x3d\x88\x57\xd2\x30\xcf\x99\x23\x24\x9e\xb3\x35\xe5\x41\xaf\x2c\x67\x6d\xdb\x0c\x22\x44\xd7\x22\x01\xe7\x7b\xfa\x4e\xe3\xb6\xf0\x46\xca\x6a\xbd\x33\x0b\x50\xc5\x8f\x92\x3e\x6f\x57\x18\x40\x28\xd5\xf2\xb1\xf7\x55\x8a\x4c\x3e\x4e\xa7\xdc\xa5\xd2\xc0\x2b\x1a\x69\x7d\xe8\xba\x2e\x8b\xbd\x20\x6c\x0e\x22\x92\x29\x9d\xdf\xcf\xb9\x17\xd7\xb0\xf9\xa4\x42\x6a\x61\xae\xde\x4f\x93\xdc\x36\x1d\x20\x02\x9e\xe3\x5d\xdc\x0f\x9f\x38\x5c\x0d\xfc\x28\xfa\x3b\x5c\xd8\x4d\xdd\x03\x7c\xb3\x4a\xfa\x36\xcb\xd3\x24\xee\xd8\x14\x10\x1e\xd6\x86\x4d\xad\xf4\x79\x05\xa9\x1a\x02\x94\xb2\xf4\xcc\xe1\xc3\xc5\xf8\x4f\x96\x32\x8a\x54\x9c\x71\xbb\x97\x8a\xb9\xa5\xa8\xa6\xef\x97\x76\x90\x03\xb3\x75\x7b\x24\x8c\x10\x02\x62\x76\x5e\x0b\x7c\x37\xe7\x1f\xd3\xbc\x90\x67\xb5\x8d\xd2\x36\xb3\x50\xff\xf2\xcc\x6e\x85\x52\xff\x55\xe0\x37\xfa\x33\xb8\x73\x94\x41\xbe\x43\x2b\x07\x62\xb2\x4f\x03\xdf\x3a\x05\xaf\x3d\x20\x01\x9b\xba\xbc\x72\x41\xf1\x48\x4d\xda\x5b\x45\x61\x97\x1d\x68\x95\xf7\xdb\x15\x85\xe7\x72\x6c\x23\x18\x43\x45\x01\xb1\x9d\xa4\x3d\x13\xd5\x7c\xb7\x1e\x4a\xa8\x7c\x3c\xaa\x50\xa8\xec\x85\x91\xcd\x48\xde\x00\x2b\x91\x34\x49\xd6\x9c\xbe\xff\xc6\x58\xe9\xae\x1d\x36\xf7\x29\xd3\x7c\xd8\xfa\x3b\x3d\xa1\x22\x0e\x61\xc3\xaf\xc0\x77\xed\x88\x0a\x0e\xa2\xbf\x4f\x51\xef\x42\x4d\xf3\x01\x3d\x2b\xe7\x02\x3d\x2b\x42\xc1\x67\x31\x40\xb0\x14\xbf\x1d\x28\xe1\xf4\x35\xdd\xbe\x78\x2d\x78\x5e\xb1\x15\xc2\x56\x87\x1a\x57\x69\x78\xa2\x91\x7e\x12\xe8\x0b\x9f\x8c\xb6\x0f\xff\xb9\xf9\x39\x11\x2a\x36\x1d\x8e\xb8\x10\x3a\x1d\x0b\x14\x0f\xee\x58\x15\x30\xdd\x8c\x92\xac\x18\xd5\x7e\x37\xd8\xd4\x22\x22\x17\x80\x14\xa0\x6d\xbe\xd6\x50\xd6\x0b\x76\x91\x92\x53\x1d\x9c\xcc\x7a\xb3\xea\x72\x52\xdf\x4c\xa2\x24\xa5\xc1\x2f\x2c\xd7\x9a\xd3\xa4\xc2\x52\x2c\xbe\x6c\x5e\xfc\xa5\x19\x9a\x5d\x63\xd3\xa5\xb8\x19\x66\x72\xa1\x27\x02\xc3\xff\xfd\xa1\xaa\x2d\xe1\x65\x3a\x1b\x5e\xb7\x69\xdd\x0a\xc4\xe3\xa8\x9b\xb0\xa1\x22\x96\xe5\x1b\x94\x4b\xf1\xb1\xb3\xfb\xcb\x6c\x78\x14\x21\x1e\x98\x02\x5c\x38\xe6\x13\x25\x50\xd4\x4c\x7a\x7d\x13\x87\x49\x3c\x85\x20\xc2\x55\x04\xbc\xa8\xea\x50\x01\xba\xa7\x94\x64\xe6\xb7\x75\x13\x36\xa9\x80\x3a\x63\xf9\xbc\x9b\x40\x46\x7c\x8a\xf6\x60\xfc\xec\x6f\xe3\x8b\xb8\xdb\x8b\xea\x59\x6c\xd0\x10\x28\x09\x16\xdc\xb4\xe8\x31\x28\xf1\xd4\x34\x69\x0d\x9a\xec\x39\xa8\x90\x47\x17\xa1\x5d\x0b\x74\xf5\x4a\xd9\x87\x5c\x56\xed\x44\xeb\x4a\x6c\xaa\x47\x6e\x6e\x94\x46\x09\xd4\xa2\xca\xf3\x1b\xca\x38\xf0\x3c\x6d\xd6\x42\x37\x98\xf0\x36\x62\xf7\x4a\x9b\xed\xf4\x74\x3d\x5b\x31\xab\x35\x2f\x70\x71\x6e\x4c\x6a\x56\xb1\x67\x52\xdb\x0a\x17\xc3\x28\xcc\x19\xc0\x63\xf1\xe9\x40\x83\x3f\xc3\x71\x74\xe6\xb3\x0e\x31\xca\x57\xc2\xbc\x2b\xb6\x12\x53\x3e\x16\x78\x12\xe8\x3f\x1a\xfc\xd1\x78\x88\xa7\xbf\x77\xe4\xc1\xc0\x73\x14\x11\xe3\xb1\xdd\x50\xf9\xd9\xf4\x4c\xb6\x8b\x7e\x1d\xa5\x8d\xa7\x99\x4b\x0a\x62\x0a\x42\x6a\x27\x43\xe8\xfa\x84\x1f\xd0\xa3\x96\xff\x4f\x77\x42\x50\xf6\xb3\x7f\xab\x51\xb1\xd6\xf5\xbb\xab\x59\x98\x44\x49\x07\xc4\x74\xee\x8e\xc2\x7a\x22\xad\x52\x15\x1b\x77\x3f\x4d\xde\x50\xfb\x23\xa6\xf7\x99\xc0\x77\x54\x9f\x19\x6a\x8b\xba\x66\xd2\xb3\x6c\x25\x8f\x21\xf6\x09\x2d\x85\x7c\x5c\xec\x4f\xd2\x09\x1b\x66\xcd\x34\x14\x5f\x77\x2c\x24\xdc\xf2\x48\x5f\x8e\x32\xfa\x45\x45\x59\xbe\xab\x88\xf3\x78\x85\xa2\x29\x83\x05\xee\xb4\x52\x9a\xbc\x3b\xd6\x55\xba\x7d\xa8\x7c\xe1\x2b\xd4\x96\x30\xe1\x31\x9a\x4f\x35\x29\xf7\x8e\x32\x97\xdc\x18\x57\x3e\x4b\x56\x9e\xa6\x2b\x05\x06\x77\x82\x0a\x43\x5c\x3e\x0d\xbc\xb6\xfa\x87\x5a\xea\x0c\xb5\x7a\x4c\x8e\xab\xda\xd5\xe0\xe4\xd0\x97\xba\x3e\x1a\xaa\x3a\x3b\x8b\xcf\x00\x61\xf8\xb3\xc0\x07\xd6\x2c\x8f\x2e\xcb\x5a\xf1\x1a\x31\x42\xd8\xcd\xc2\x15\x72\x67\x16\x44\x9e\x54\x2b\x4b\x5f\xa8\xc8\xb8\xeb\xa9\xed\x0c\x28\xe0\x52\x44\xf1\xe3\x43\x25\xd1\x7d\x5c\xc1\x1f\x36\x7e\x23\x59\x9d\xa4\xdf\x42\x24\x7e\x52\x85\x8b\xd7\x70\xd7\x7c\x82\x35\x81\xff\x6a\xcc\xa6\x7b\xc5\xa6\xfb\x54\x78\xf5\xb1\xa2\xec\xdc\x0b\x6a\xd3\xd3\x5b\xeb\xd8\x3c\xb0\x14\x63\x8f\x64\x8f\x3f\xdc\x0d\x62\xa5\x9b\x63\xdc\x32\xda\x7b\x30\xd5\x3f\x50\x78\x37\xf7\xef\x21\x8b\xfd\x76\x50\x9b\x59\xd8\x5a\x2f\x51\x63\xe6\xf7\xcf\x13\x7f\xd1\x2a\xe5\xe4\x4b\x4a\xa4\xf5\x92\xeb\x28\x5b\x0c\xe3\xd6\x84\x02\x38\x37\x14\x33\xea\x46\x31\x00\xb6\xde\x72\x2c\x37\x7a\x56\x53\xf4\x26\x01\x13\x5f\x50\x4a\xb7\x1b\xfa\x7d\x5f\xd0\xca\xb9\x97\x68\x54\xa0\x14\xe7\x1b\xb8\xc9\x9d\x98\x0b\x06\xaa\x5f\xc2\x35\x4f\xe8\x12\x48\xd2\xb3\x49\x6c\x95\x54\x21\xb4\x05\x10\xc3\x21\xfa\x03\x96\x32\x31\xf2\xec\x99\x0b\x0a\x57\x69\x5b\xa9\x26\x7e\xa9\xd2\xac\xdd\xcf\xf7\x4e\x92\x65\x61\x1f\x1c\x44\xa7\x89\xe6\xc4\xd2\x4e\xaa\x9e\xac\xbc\x9b\x86\xed\x7c\x77\xf1\x66\x10\x40\xde\xc5\x4d\x3b\x57\xb5\xe2\x66\xf8\x04\x25\x0e\x76\x0d\x0a\x3c\x78\xc9\xf2\x70\x5c\x80\x42\x8c\x24\xd5\xa8\xf1\x1a\x99\x60\xf5\xb2\x30\xa8\x30\xe8\xf4\x18\x66\xb8\x18\xd9\x17\xf0\xa7\x58\x52\xdf\x0d\x76\x4a\x3a\xbf\x3e\xf4\xf2\xa8\xeb\xca\x2e\x67\x57\xa3\xb8\x09\x49\x5a\x94\x8a\xf7\x6d\x65\x1e\x08\x21\x4b\xd6\xa8\xc6\x95\x22\xe4\xb8\x42\xb4\x26\x54\xe5\x27\x1b\x9e\x1e\xff\x55\x8a\xc4\xd1\x23\xf2\x21\xf2\x67\xec\xca\x9b\xe0\x3b\xc9\x16\x58\x13\x86\xd5\x3f\xbd\xa9\x5d\x8f\xf6\x8d\xe8\x99\xe1\x42\xee\xe1\x39\x01\x06\x65\x13\x99\x31\x5a\xb3\x58\x28\xf9\x41\x63\x16\x93\x28\xcc\x58\xc3\x1f\x63\xea\x36\xcd\x4b\x3e\x0e\xf6\xb9\x37\x69\x44\xf1\xda\x31\xee\xd4\x62\xa9\xa4\x40\x1e\x96\x56\x1b\xc2\x85\xfb\xd6\xf8\x96\x0f\xac\xb7\x1f\xa9\x54\xf5\x23\xa5\xee\xb0\x62\x4d\x3f\x89\xb3\x5d\x7e\x9d\x3b\x16\x28\x0b\x14\x4c\x3e\xa9\x30\xd3\x2d\xab\xd6\x46\x6f\x59\x5d\xfb\xc2\x57\x1c\xdd\xf3\x99\x70\x2c\x9d\x95\x34\x13\x0f\x04\x79\xb6\x88\x04\xd3\x17\x8a\xf0\xac\x16\x70\x87\x8d\x34\xe3\xd5\xae\x5c\xe0\xa3\xad\xd3\xb4\x62\xf1\x3f\xd0\xae\xc0\xff\xbf\x48\x56\xb7\xf5\x0c\xfd\x1d\x4c\x69\xac\x84\x17\x70\x77\x7c\xa2\x4c\x89\x7b\x61\xab\x97\xc0\xf5\xad\xb8\x65\x65\x4a\xee\x1c\xca\x1d\xc1\x22\xb7\xa6\xd9\x15\x41\x71\xcc\x1b\xe6\xd8\x89\xcc\x4b\xcd\x19\x22\x5f\x77\xaa\x1b\x72\x57\xac\x23\x04\x31\xce\x8f\xf4\xc0\xbd\xaa\x38\x78\xdc\x69\x06\x3c\xe1\x84\x5a\xdc\xf3\x64\x69\x75\xa0\x4d\x3f\x30\x20\xa4\x43\xb0\x92\xea\x90\xe6\xca\x57\xe4\x5a\xa0\xc2\xca\x12\x31\x9e\xa4\x11\x19\xa0\x95\x86\xc4\x9a\x93\xa9\xba\x5c\x2a\x01\xcd\xef\xaf\xdb\x23\xfd\x94\x6a\x17\xaf\xca\xca\x0e\xbf\x33\x3e\x76\x05\xdd\x08\x15\x7f\xb4\x3d\x49\xdf\xa4\x6f\x6b\xdf\xd3\xf0\x70\xcc\x8d\x31\xf6\xe9\xb2\x12\x1f\xb9\xa4\xd5\xb5\x2e\xe9\xee\xa3\x2c\x7b\x8a\xf6\x34\xac\x0e\xe7\x87\x2a\x89\xe4\xd1\xca\x0d\xe3\xb4\xfa\x63\x79\xf8\x1e\xb1\x3e\xc5\xf0\xa9\x18\x53\x2c\x5e\xa8\x15\x9d\x76\x8c\x94\xb0\xdf\xfb\x8a\x72\x73\x47\x71\x3b\x77\x91\xc2\x07\x6d\x00\x9f\xd4\x1b\x34\xe2\x9c\xf7\xa9\x17\x9a\xd1\x4e\x1f\x77\x14\xcd\x65\x39\x09\x9b\x76\x52\xd5\xaa\xd7\xf1\x97\x22\xdd\xe3\x73\xec\xeb\x18\x68\x7c\xe2\x76\xcd\x2c\x6c\xc1\x67\x13\xc5\x69\x18\x22\x3b\x11\x20\xe7\x68\xf1\x3c\x9a\x2e\x5d\xf3\x80\xeb\x12\x5d\xd7\xc8\xe0\x66\x55\x8b\x45\x6c\x3b\xde\x90\x52\x6a\xfd\x7e\xa3\xfb\xd0\x77\x1e\x47\x21\x51\xd8\x14\xa2\x7b\x5e\xbb\x69\x9e\xaf\x2a\xce\xfc\xf5\xb6\xd8\x2e\xf1\xcb\x93\x88\xc5\x47\x50\x50\xba\x04\x32\xb1\x13\xa7\xf4\x72\xd7\x77\x2a\x8c\x23\xe7\x8a\x9b\x48\xf2\x10\x2a\xeb\x33\x0b\x0e\xee\x52\xd0\x97\x72\x4d\xeb\x0f\x72\x56\x5d\xd3\x91\x88\xd8\xee\xd5\x9c\xca\xde\x83\xd2\x2a\x7c\xf8\x30\x8c\x4b\x32\x69\x51\x75\x30\xbb\x9b\x85\x67\x2a\xd8\xfe\x73\x4e\xc3\x8a\x97\x7f\x44\x5e\x7b\x1b\x0a\x38\x61\x3f\x0f\xa4\x90\x93\xa3\x52\xc7\xc6\xfc\xdc\xcf\xd4\x9b\x49\x96\x0f\x7a\x76\x9b\x16\xfd\x36\x3b\x00\x34\xe4\xbc\xe3\xf8\x5f\x7d\xd3\xec\xae\xb6\x6c\xda\x93\x1f\x47\x12\xf8\x00\x0b\x26\x20\xa1\x3f\xc0\x8f\x63\xee\x7a\xf1\xfb\xd6\x20\x69\xd9\x98\x61\x21\x56\xe4\x08\x3c\x84\x70\x5a\x51\x8b\xba\x26\x6e\x65\xa4\x78\xeb\x74\x92\x86\x43\xe5\x40\x3f\x2c\x11\x4e\xa9\x73\x98\x2c\xa1\x5c\x05\xed\xac\xa2\x8e\x9e\xad\x40\x4e\x5e\x57\x2c\x6c\xcc\x07\x14\x53\xf9\x58\x59\x85\x50\x8e\x93\x27\x69\xb6\x57\xe9\x57\x5e\xa4\x05\xc2\x65\x61\x4e\xdd\xe6\x0e\xc6\x17\x62\xab\x0b\x28\x3e\x60\xc2\x9c\x0a\x54\x47\xc0\x77\x03\x25\x28\xc1\x16\x32\xcc\x85\x46\x83\x1d\xb0\x36\x08\x94\xe3\xae\xaf\x29\x94\x3a\xe9\x44\xcc\x18\xd0\x16\x0a\x42\x94\xd9\x3e\x31\x0f\x1f\xae\xe7\x83\xd4\xc4\xad\x04\x4b\xbc\x52\x9b\x71\xd2\x33\xa5\xe1\x29\x2c\x86\xdc\x72\xbf\xab\xd8\xc8\xa9\x87\xb0\xa9\xb0\x1e\x93\xda\x7f\x8f\x26\x1d\x6e\xf0\x0e\x3d\x1f\xd9\x4f\x6b\xaf\x89\xe2\xde\x77\x02\x65\x77\x75\x87\x93\x7b\xf1\x54\xa2\xa7\x85\x98\xf5\x21\xb5\xe2\x70\xab\x25\x33\xd5\x11\x1d\x6c\x80\xd5\x32\x06\xca\x01\xa7\x61\x2b\x7a\xc4\x18\x37\xb5\x78\xe5\xce\x46\x11\x7c\x00\xd6\xb8\x13\x28\xee\x0b\x88\x67\x08\xf7\x6a\x0d\xdf\x60\xff\x74\x83\xe8\xe9\x4e\x3d\xb6\x78\x3f\xd8\xe1\xf7\x2a\xa1\x55\x30\x77\x58\xac\x5f\x3b\xcf\x5f\x1b\x92\xcb\x20\x10\xc5\xb3\x24\x65\x8f\x60\xf1\x14\x85\x97\x12\x52\xd3\x2a\x8d\xe4\x78\xdf\x48\x8d\x9b\xbd\x23\xaf\x54\x74\x0f\x23\x05\xb3\xfc\xbe\xaa\x1a\x0d\x5e\x8e\x5f\xae\xe9\x56\xc4\xe3\xda\xf7\xea\x78\xa5\xb7\x6d\x16\x46\xdc\xa9\x24\xf8\x62\x71\x03\x02\x2f\x56\x20\x39\x4b\xc5\xa4\xf2\x44\xb0\xd7\x79\x91\x16\x13\x1c\xdf\x77\xdc\xb7\x71\xb3\x6b\x62\xc8\x83\xb3\xb9\xcc\x98\xeb\xab\x47\x17\xff\x48\xed\xdb\x61\xcf\x3e\xe9\x09\x7d\xfb\xe8\x0d\x88\x8f\xb3\x76\x10\xbc\xe7\x7d\xa8\x9f\xfe\xe9\x86\x8f\x4d\xa6\x48\x5e\x07\xa9\xee\xa7\x43\x25\x81\x72\x5f\x2b\x69\x9c\xd2\xfa\x58\xc7\x87\xc5\xeb\x70\xb5\xd5\x57\xf7\xf3\xcb\xbc\x85\xdd\x94\xe2\xaa\x07\xcf\x8e\xa4\xa0\xd1\x8e\x8a\x94\x8f\x6c\xf3\x10\x94\x88\xca\x43\xcd\xa9\x58\x21\xf4\x46\xb0\x70\xaa\x6a\x5b\xec\x24\x49\x6b\xd5\x9a\x54\x97\xa8\x37\x87\x0a\x9c\xd9\xac\x56\x9f\xce\xd3\xc4\x10\xed\x63\xc2\xe3\xf7\x57\x87\xca\xb8\xfb\x92\xa2\x14\x6e\x95\x14\xfe\x7f\xbe\x1e\xc9\x16\x8b\x50\x68\x2d\x50\xca\x19\x6b\x55\xd0\xfd\x62\x92\xe7\x49\x6f\x52\xd9\x8c\x9e\x55\x75\x3d\x68\x55\x73\xf3\x0e\x66\xab\x70\xf6\xfd\x2b\x1d\x44\x83\x9a\xb6\xe2\x61\xa5\x3f\x3e\x51\xc1\x58\x94\xaf\xee\xa1\x8b\xc3\x84\x7d\xa0\xd4\xef\x1e\xe1\x26\x59\xfd\x85\x47\x02\x36\xa3\x35\xd5\x97\xf7\xb7\xb1\xe9\x61\x29\xb8\xaf\x85\x78\xd7\x68\xec\x61\xe1\xfc\x57\x9a\xb4\x7e\x5f\xb9\xae\xf5\xd3\x84\xa9\x3c\x63\xc2\xa9\x77\xd5\xa2\x0b\xf8\x41\xe4\x9b\xbc\x26\x8f\x69\xf5\xc2\x38\xcc\xa8\x4b\x97\x6c\x2f\x9d\x7f\x93\xd3\x0f\xd6\x22\x6a\x51\x92\xd9\x29\x5f\x42\x61\x5d\x2a\xc7\xf6\x2a\x56\x2d\xa4\x08\x9b\xca\x1a\x63\x17\x2a\xa7\xfc\x0f\x8a\x23\xd0\x1d\xc4\x64\xac\xe2\x71\x72\x14\x2d\xf8\xb8\xaa\xc5\x3f\x1b\xa4\xfd\x34\xcc\xa4\x45\x90\x53\x5a\x9d\xba\x43\x25\x00\xb9\xc9\x29\xed\xc6\x64\xa3\x88\xea\xa1\x4e\xe7\xbf\xb8\x28\x84\xcc\xdc\x9a\x88\x25\xf3\x96\xea\xe9\x20\xbb\xda\xbd\xc5\x2b\xc0\xa3\xbb\x82\xf7\x29\x4c\x00\x15\x2d\x5c\x54\x5d\xbb\x57\x31\x81\x91\xa5\x3d\x08\x94\xd3\xcf\xa7\xf8\x55\x10\xe7\xa1\xf1\x0b\x18\x05\x6d\x70\xd8\x26\x26\x46\xf4\x20\xb1\x35\xdd\xab\x44\x97\xba\x26\xcd\xba\x35\x5f\x77\x7b\x3f\xf0\x49\xd8\xfb\x63\x08\x63\x68\x9a\x98\xee\x78\x54\x37\x87\xaa\x07\x7b\x43\x21\x65\xb5\x86\x22\xda\x74\xc3\x28\xec\x33\x3a\x84\x35\x89\xe5\x21\xf8\x44\xcd\x92\x38\x5d\x45\x53\xb9\xd0\x69\x4a\x3c\x1b\x30\x4b\x26\x1a\x9e\x8b\x3d\x51\x8a\xe4\xa8\xe6\x1c\x9b\x28\x0f\x85\x50\x2f\x06\xf3\xaa\x9e\xf0\xbe\xef\xbd\x64\x52\xcf\x98\x3e\xec\x43\x55\xe7\x3b\x86\x17\xca\x4e\xca\x2e\x5a\x6f\xa7\xb6\xd5\x0a\x41\x4a\x71\xd5\xdf\xe2\xe2\xc1\x3b\x7c\x14\xd4\x7e\xd1\x8f\x66\x4f\x56\x1e\xc4\x3d\x23\xe2\x81\xac\xc1\x33\xa6\xc7\x53\x36\x93\x9d\xa9\xb7\xc3\xd8\xc4\x4d\x07\x4c\xe0\x2d\x83\xa4\xcc\xc7\x0d\x87\xc5\x85\xd1\x32\xab\x31\x8a\xc3\x01\x3d\x02\x19\x72\x35\x6f\x8f\x15\xf8\x56\x19\xed\xfa\xdc\x0e\x53\x2b\xba\xcc\xd8\x4f\xb8\x52\xc7\x27\xa3\xe7\x7d\xbf\x39\x29\x26\xc6\xd2\x3e\x2e\xf9\x83\x4e\x26\x5c\x0d\xbc\x58\x16\xc2\x28\x3c\xea\xb6\x0c\x60\xcb\xbb\x1b\xfe\x41\xe3\x8e\xb0\xf0\x95\x5b\x09\x5e\x7a\xa9\xbe\x68\xd9\x1b\x6e\x7e\xbf\x33\x97\xf5\xe6\xd4\x97\x54\x63\xfe\x20\x6e\x27\x11\x29\xb3\x38\x72\xd1\x95\x31\xa5\xf1\xed\x8f\xf9\x35\x42\x9b\xdb\x36\x4d\xb7\x35\x8a\xaf\xab\x32\xf1\xba\x46\x32\x73\x93\xb6\x58\x64\xc8\x19\x50\x7a\x54\xb6\x74\xf9\x73\xaf\x1c\xaa\xb7\x42\xd3\x17\x1b\x7d\xf1\x7e\xf2\xb4\x98\x8b\xa5\x8b\x9a\x9d\x3d\x54\x5f\x09\xf3\x6e\x2b\x35\x2b\x71\x4d\x89\xd4\xfd\x86\x52\xf2\xfd\x0d\x75\x51\xdd\x64\x90\xe5\x49\xcc\x82\x91\x22\x94\x59\x73\x2d\xa4\xdf\x27\xe1\x0e\x11\x85\xae\x39\x51\x66\x6e\xf1\x42\x45\x74\x5d\x73\xf5\x77\x94\x4c\xf6\xe9\xa2\x92\x25\x5b\xa3\x88\x11\xd3\x85\x11\x63\x3e\x51\x78\xdc\xe2\xea\x73\xc5\x2f\xb2\xe7\x24\xc5\x2b\xec\x61\x31\x54\x56\x2f\x04\x3b\x8a\x47\xb2\x12\xa5\x3b\xa7\x93\x0f\xb5\x2a\xb1\x3a\x3b\x4b\x4f\x60\x15\xc2\x22\xbd\x45\x98\x01\x4b\x20\x51\x01\x04\xcf\xf6\xba\x9e\x9a\xc7\x99\xdc\xcc\xda\x73\x28\xba\x0a\xc7\x41\x79\x57\x73\x2c\x0a\x12\xf0\x33\x0d\x0a\x39\x5d\xd2\x5f\xac\xaa\xb8\x80\x07\x15\x7a\x3d\x59\xdf\x5a\x2f\x97\x2d\xcb\xa5\xcf\x33\x6e\x96\xe0\xa6\xc3\x87\xeb\x99\x69\xdb\x49\xbf\x8a\x4e\x35\xb4\xef\xa1\x27\xa6\x5c\xa1\x97\x88\xed\xf0\xfc\xf0\x45\x99\x5f\x83\xbe\x4d\x6d\xbb\x1d\x36\x43\x61\x8f\x61\x49\xb9\xae\xfa\x1f\xaf\xab\x48\xa3\x6b\xe3\x3d\x74\xe7\x78\xd6\x6b\xb4\x81\x70\x60\x1a\x28\x0d\x12\xee\xc7\x47\xac\x7d\x59\x09\xf8\x72\xd0\x85\x40\xe3\x57\x87\x8a\x07\xcb\x0c\x15\xe4\x00\xf7\x95\xfb\xcb\xe9\x40\x47\x90\xe4\x81\x13\x77\x10\x58\x29\x17\xa4\x2f\xf1\x6e\xb7\xa9\x7d\x4e\x14\xed\xe1\x96\x63\xe3\x2c\x87\xa6\x99\xc0\xc8\xd7\x75\x31\x16\xbf\x2c\x0d\x91\x15\x78\x09\x71\x9b\xe9\xc2\x81\x04\xb1\xb2\x34\x9f\x28\x10\x23\x69\xe6\x2f\x4f\xd5\x0e\x1f\xde\xba\x8a\x5b\x13\x42\xb1\x2e\xec\x14\xd7\xa7\xc0\x5f\x41\xc2\x77\x94\xfc\x14\x67\x67\xeb\x26\x5d\x0c\xf3\x94\x65\x11\xe6\xf7\x33\x04\x32\x0a\x7c\xab\xc9\x48\x1b\xee\xb0\x01\x0d\x30\x1b\x16\xf9\x54\xf5\xc6\x6f\xd0\xfc\x61\x03\x42\x57\xdf\x6f\xa5\xe1\x58\xad\xec\x92\xae\x95\x5d\xaa\x62\xa1\xb3\xd9\x22\x25\xb3\x62\x2a\xe0\x73\x8f\x3b\x25\xce\xce\xc2\x2b\xf5\x66\x62\x32\x7c\x00\xcb\xf6\x75\xa5\xf0\x72\x5d\xe5\xe3\xfd\xf0\xe8\x51\x53\xf3\x28\xc0\x05\x0d\xc0\x5f\x28\x85\x22\x73\xf3\x73\xf5\x6c\x85\x28\x4c\x4e\xba\xf9\xb8\x96\xc0\x3b\x3e\x46\xbb\x8b\xc2\x3c\xab\x29\x67\xf1\xe3\x04\x66\xcb\xc7\xc6\xa2\x96\xd8\x7e\xae\x36\xbf\x7f\x6b\x9d\x96\x19\x6c\xd5\x3f\x56\xce\x63\x5b\x34\xf2\xb1\x14\xdd\x40\x8e\x2a\xb3\x45\xd5\x01\x58\xf6\x94\xcd\xb2\x91\xb0\x4b\xdf\x48\xb1\xe6\x00\xa2\xdb\x42\x62\x0a\x2c\xf6\x0c\x56\x09\xd7\xe7\x7d\x40\x40\x95\x9d\xc0\x45\x01\x64\xff\xfa\x58\xab\x0a\x77\xb1\x00\x28\x22\x19\xdb\x99\xad\x2d\x1a\x67\x0e\x39\xfd\xe2\x6b\x8c\x49\x6e\x81\xee\x89\x6c\x63\x53\xd3\x45\xd6\xb4\x24\xfc\x27\xb4\x0e\x2a\x65\x5e\xb1\x0b\xd6\x4d\x65\xfd\x34\x59\x0e\x5b\x76\xb7\xdf\x57\xbe\x01\xe0\x00\x6d\xd7\x57\x71\x59\x7c\x82\xe5\xc1\x61\x7b\xbe\xda\x0e\xe0\x01\xfb\x0b\x56\xfb\xff\x9f\xaf\x3f\x0d\x8e\x24\x4d\xef\xc3\xf0\xee\x02\xd0\x3d\xf7\x3d\x3b\x4b\x89\xd2\xbf\xf4\xf7\x46\x0c\x15\x1e\x4f\x98\x21\xdb\x61\xf3\x4b\x16\xd1\xd8\x19\x36\x82\xc4\x74\x00\xcd\xee\xf5\xf8\x83\xe7\x45\xd5\x8b\xaa\x1c\x64\x65\xd6\xe6\x01\x34\x26\xf4\x41\xe1\x50\xe8\x03\x43\xa1\xd0\x27\x52\xb4\x25\x07\x43\x92\x75\x98\x26\x19\xe4\x92\xd4\xee\x92\x74\x61\x79\xec\x41\xce\xec\xf6\xec\xdc\xf7\xf4\x7d\xdf\x37\xba\x1b\xed\xc8\xe7\xf7\x3c\xef\xfb\x24\x32\x9b\xdf\x2a\xbb\x01\x54\xe6\x9b\xef\xf1\x1c\xbf\x43\x1a\x4b\xbe\x2d\xb7\x62\xd3\x8c\xb8\x12\xe5\xbb\x73\xbb\xca\x6e\x59\x54\x75\xd9\xf3\x17\xda\x3d\x3b\x2a\xf2\x35\xda\x1a\x81\xe3\xe5\x88\x04\x11\xe0\x55\xc5\x76\x79\x1b\xa3\x20\xe0\x26\xdf\xe2\xcb\xf2\xd4\x9a\xe5\x6a\x76\xb0\xdb\x67\x07\x8f\x2a\x94\x40\x9e\x3c\x49\xef\x1d\xcf\x74\x09\xc7\x83\x93\x4b\x2f\x87\x41\xec\x03\xcb\x71\xc5\x21\xb2\x83\x31\x11\x82\x42\x2e\xef\xc8\xf9\x73\x79\x5f\x38\x5a\x5a\xd8\xc4\x26\x3a\x34\xbc\xe8\xc9\x1f\xa4\xb1\x12\xda\xac\x57\xbc\xbe\x82\x25\xc3\x20\x1b\x7a\xf5\x8c\xba\xd0\xa1\xf1\x1d\xad\xc7\x78\x0e\x53\xd3\x59\x5c\x78\x8f\xa3\xa3\x6a\xfd\xf4\x92\x62\x31\x67\xc9\x12\xcc\x8c\xf3\x5a\x9c\x0a\x4e\x2c\x52\x27\xa4\xaf\x92\x02\x62\x9d\x14\x0d\x7a\x61\x12\x81\x83\x21\xda\xd6\xea\x8b\x4f\xaa\xe8\x32\x1c\x96\x33\x0d\xc7\x1c\xce\x04\xe6\x89\x4b\x59\x48\x31\x92\x20\xed\x81\x8c\xfb\x7a\x93\x55\x09\x75\x4f\x26\x68\xc5\x39\x5f\x74\xd7\x63\x38\x11\x28\x4d\x8f\x83\xde\x5a\x20\x8c\x7b\x0c\x2a\x15\xd1\x7d\x0f\x1d\x39\xa7\x40\x6b\x1e\xb4\x39\x55\xc1\x8f\xe2\x45\x23\x54\x3a\xa9\xb5\x5d\x61\x76\xe4\x70\xbc\xbb\x9d\x10\xb9\x3a\x54\xfa\xa9\x5d\xdd\xe1\x29\x5d\xc7\x74\x72\xd7\x5a\xdf\x3a\x09\xf8\xb3\xf6\xc5\x44\x25\x9c\x7f\xa1\xe3\x3b\x07\xd6\xc4\x2c\x5c\x04\x9c\xca\x93\xf4\xc7\x30\x8e\x10\xbb\xc5\x8c\x3a\x82\x85\x8c\x8a\xc2\x57\x3a\x9e\x70\x99\x5a\x62\xc3\xf3\xf1\xe1\xec\xf9\xe7\xa7\x9d\x25\xbf\xcf\xe9\xbe\x59\x84\x36\x8f\x80\x66\xc2\xdc\x44\x61\x99\x3f\xab\xaa\xf5\xb0\xcc\x79\x43\x13\x4d\xf8\xf3\x05\xe3\x2d\x45\xf4\x96\xb3\x46\xb9\xa2\xa6\x67\x11\x5b\x93\x31\x96\x03\xd3\xfa\x2e\xa3\xd9\x31\xd4\xdb\xd7\x7d\x17\xf3\x4a\x85\x03\xa9\xc4\xb0\x52\xd3\xa5\x82\x80\x4b\x1b\x39\x38\x10\x0e\x6f\x9d\xab\xbc\xa7\xdd\x1d\x14\x69\x77\xd0\xd2\xf1\x33\xf7\x8d\x45\xfd\xb5\x81\x2f\x99\x9b\x8c\x05\x3d\x35\x39\x41\x1c\x99\x54\x5d\xaf\x97\x4c\x28\x9e\xd1\x31\x85\x52\xbb\xa5\x46\xfa\x6c\x6d\x07\xdc\x37\xdd\x1e\x45\x26\x66\x12\x98\x43\xd8\xec\xf3\x16\xf1\x34\x0d\x45\x59\xa3\x96\xdb\xcc\xec\x65\x89\x86\x5e\xdf\xb6\x2a\xa8\xd0\xf2\x6e\x24\xc0\xf2\x39\xea\x22\x79\x00\x4d\xaa\x88\xe6\x9a\xda\xd1\x1e\xa0\x94\x4d\xd0\x21\xe5\x1e\x28\x09\x45\x83\x42\xf6\xfc\xf4\x73\xe5\xa9\x8b\x12\xcf\x51\xd5\x70\xbe\x8e\x59\x8d\x3f\x7f\x57\x8b\x69\xd1\x86\x89\x40\xf2\x10\xba\x54\xd8\x02\xfe\x05\xce\x56\x14\x56\x8e\xa1\xd2\xc6\x17\x81\xda\xbb\x7e\x8d\xa2\x24\x9c\xad\xdb\x29\x84\xc6\xdc\xb8\x37\x56\xa7\xd6\x19\xb2\x87\xd5\xf6\x7b\xa2\xd8\x49\x73\x4e\xe8\xfe\x0a\xf8\xc1\x84\x50\x71\xf6\x2e\x07\x5f\xe2\x5b\xda\xc8\xa5\x98\x88\x69\xca\x7f\x00\xe1\x0b\x0e\xf3\xff\x5c\x89\xa3\xb1\x0c\x11\x5a\xdc\xad\x71\xa8\xca\xa4\xbf\x67\x73\x9b\x0e\xc3\x58\xc0\x2e\x0c\x33\xc1\x53\x08\xe6\x44\x91\xa0\x8b\x7c\x29\xcc\x5b\xfa\x18\xfa\x52\xeb\xc4\x7c\x39\xfe\xff\x35\xb5\xcd\xc2\x6e\x9a\x64\x6b\x59\x6e\x87\xa2\x4c\x87\xe0\x7e\x47\x47\xa9\x9f\xec\xa8\xd5\x58\x66\x67\x29\xd7\xb4\x83\x24\xea\xd1\x36\x20\xa2\x4a\x9e\x79\x75\xae\x36\x0f\x89\x53\x63\x72\x72\x98\x97\x5e\x59\x65\x02\xe3\x8c\xd9\x0c\x3c\xd7\xec\x5c\xad\x1e\xfb\xd2\xfe\x76\xd7\x64\x79\x2a\x9a\x7b\xce\xe3\x43\x61\x34\x95\xeb\xec\x30\x4c\x4d\xdc\x33\x74\x8f\x02\x62\xa5\x1f\x15\x14\xab\xe4\x4f\x26\x4c\xbb\x49\xdc\x23\xf5\x01\x9b\x4e\xf8\x26\xdc\x59\x9a\x1e\x28\x70\x9f\xd4\x0a\x70\x1b\xce\xa7\xa1\x3b\x30\x59\x16\x66\x5a\xac\xfe\xa6\x52\xc5\xbb\xa9\x5a\x02\x65\xe0\x1a\xe7\x96\x85\x63\x30\x4b\x99\xfe\xc5\x17\xea\xe6\xc3\xb8\x17\x9a\x18\x31\x34\x26\xde\x29\x3d\x0b\x4f\x81\xf3\x45\x3f\x1a\x9b\xbc\x48\x4d\x14\xbe\xc1\x1b\xb8\x30\x2a\xe9\xc7\xf9\x42\x05\x61\xbd\x30\x1b\x45\x86\x15\xa4\x59\x1b\x0d\xb3\x5d\x84\xd2\xea\x2a\x7a\x66\xa8\xc4\xf5\x19\x56\xa6\x40\x9e\x57\x82\xff\xea\x3e\xdd\x32\x13\xc7\x49\x11\x77\xed\x50\x12\x53\x7c\xc7\x3a\x9e\x85\x2f\x6a\x2d\x82\xd9\xd9\x85\xf6\x30\x89\xf3\x01\x37\x67\x30\x8d\x2f\xd2\x46\xc9\x9f\xc7\x5b\x59\x5b\xc4\x9e\x8a\xbb\x09\xd5\x82\xc5\x6b\x98\xbd\x32\x30\xc8\x62\x9c\xf1\x88\x87\x89\x15\x30\xfc\x65\x7f\xfb\xb1\x72\xdd\x83\x5e\x3d\x37\xe2\x94\x31\xf7\x4a\x22\x1e\xde\xbe\x08\x43\xbf\x26\xd5\x99\xad\x4b\x8d\x0c\xb4\x06\x49\x9a\x14\xfd\xc1\x62\x5a\x95\x8f\x41\x16\x29\x40\xb7\x0a\x59\x3b\x45\x8f\x03\xd5\x88\xbf\x52\x05\xd6\xcf\xb5\xa2\xc8\xd1\x26\xc2\x60\x56\xf4\xfb\xd6\x39\x5e\x8a\xa2\x96\x6a\x61\x9c\xf7\x5e\xaa\x79\x6a\xe2\xbe\xd4\xa5\xb0\x3f\xdd\x52\x69\xee\x2d\x15\x14\x99\x6e\xd7\x46\x16\x02\xd6\x0e\xf5\xfe\x47\x4a\x30\xf2\x8f\xb6\x12\x35\xca\xb4\xee\x85\xc7\xe8\x8b\x2b\x8e\x87\xa8\x5f\xdc\x19\x7b\x00\xee\xc3\x54\xfe\xe3\x1a\xd4\xd8\xeb\x48\x00\x4b\x0a\xdc\xdb\x26\x76\x7a\x2c\xc0\x9b\xe8\x0a\x3b\x8d\x4e\x4f\x24\xbb\x87\xbd\x16\x39\x1d\x4a\x8c\xc2\x89\x6a\xfd\xca\x0c\x9f\x01\xf7\x70\x02\xa9\x32\xe9\x8c\x73\x52\x93\x68\x31\xc9\x07\x36\x95\xbd\xca\xed\x01\xde\x24\xfd\x52\xa0\x29\x53\xf7\x65\xbd\x27\xa9\xed\x33\x46\x59\xea\x36\x6a\x10\x4e\x6e\xd5\x6b\xde\x37\xdd\xde\x37\xfd\xb0\xf2\x89\xf8\x11\x32\x2e\x8c\xcd\xbb\x88\xfd\xf1\x1a\x4f\xd3\x91\x2a\xb8\x82\xf2\xa8\xe5\x7e\x22\x9d\xa2\x8c\xf5\xa0\x68\x1e\x77\xff\xa1\x92\xef\x87\x83\x01\x4e\x5a\x64\x6b\x62\x3c\xa6\xac\xe5\xeb\x9c\xae\xd9\xd9\x76\x92\xf6\x4d\x1c\x66\x43\x6e\x11\xb1\x30\x48\x50\xc9\xbd\x3c\xd4\xd2\x8b\x2b\xe6\x66\xc4\xaa\xa6\x2e\x22\xf3\x6b\xe8\x9e\xd2\x6c\xb9\xd8\xa8\x8f\x64\xd2\x58\xd6\x0e\xa2\x42\x76\x20\xe4\x8b\x75\xaf\xe3\x63\xb2\xc4\xfd\xa8\xc3\x6a\x3a\xd3\xa3\x3a\x84\x64\xcf\x2b\x0b\xed\x7c\x10\xc6\xcb\x02\x63\xc3\x2d\x5d\x0b\x94\xf6\xf9\x35\xb7\x62\x4c\x9c\x87\x51\x24\x86\xd9\x72\x30\x63\x92\x20\x16\xba\x81\x21\xc4\x49\x78\x48\x91\x52\x97\xa2\xc4\x41\x0c\x95\xa0\x97\x12\xfa\xf2\x05\x94\x7e\x92\x2e\xaf\xed\xf0\x27\xea\x2d\x34\xe9\xd9\xf7\x53\x99\xe7\xa0\xb6\xe0\xfc\x40\xcb\x15\x82\x45\xf1\xdb\x5a\x00\xf8\xb7\x55\x70\xdc\x4d\xe2\xae\x65\x70\x5b\x93\xb8\xca\xa3\x4a\x46\xdd\x0a\x60\x15\x6b\x8b\xa7\x3c\x5f\xd4\xfa\xe3\xbb\xe7\xda\x26\xb3\xe6\x6f\xeb\x76\x36\x49\x57\xd1\xa1\xb8\x68\xe2\x65\xae\x5d\x4b\x73\xc8\x03\x8c\xd0\x14\x43\x93\x1d\xdc\x1a\xf4\xe8\x4e\x68\xa8\xe1\x05\x5d\xe7\xfd\x1b\x07\xf2\x5a\xb2\x51\xfe\x00\x8d\x38\xea\xdd\x77\x75\x1f\xed\x16\x4d\x7d\x86\x41\x23\x0b\xc6\xc6\xba\x31\xf6\xd2\x26\x60\x8e\x60\x22\xdc\xa5\xb9\x8d\xf5\xd4\x02\x44\x81\x76\x94\x17\xff\x5e\xc7\x4b\xe4\x2d\x9a\x65\x91\x9c\x92\x36\x92\x2f\x93\x7d\xac\x34\xed\xb3\xb0\x9f\x44\xc9\xd2\x52\xcb\x13\x04\x40\x9b\xe3\xcf\x0a\xc1\xb8\x6c\xd7\xf8\x78\xc7\x02\xfe\x76\xe0\xfd\x54\xbe\xad\xda\x00\x8b\x49\x5c\x64\xc2\x74\x10\x54\xa4\x42\x48\x36\x09\xa8\x75\x4d\x6c\x7a\xa4\x81\xe1\xf8\x0d\x0f\xd2\x86\xcc\x45\xee\x40\x01\x98\x6e\x34\x74\x53\x17\xa4\x84\xc4\xab\x4e\x8c\x5d\x68\x78\xa4\xd2\xee\x16\xd0\xaa\x49\x7d\x79\xbc\x49\xb4\xe4\x69\x45\x45\x8a\xb3\x22\x2a\xd7\xcc\x54\x55\x08\x90\x16\x83\x33\xdc\x9f\x9b\xf3\xc6\x3b\xbb\xe7\xbc\x29\xd5\xcc\x5e\xe7\x3c\xae\x1c\x8e\x8b\x74\xb1\xbc\xd1\xf2\xc0\x63\x5f\x11\x44\xf1\x62\x32\x22\x91\xdd\x8a\xcd\x32\x2b\xb2\x68\x4e\x97\xd2\x6b\x54\xd6\xb6\xa9\xd9\xd9\xb6\x29\xf2\x62\x88\xcd\xde\x59\xe0\x7b\x3b\x7c\x05\x56\xe9\xd3\x31\x3a\xb3\x97\xcf\xb6\x0d\xba\x71\xfe\x3c\x7e\xda\x93\x51\x6c\xb1\x3c\xb4\xaf\x93\x49\x42\xf9\x42\x75\x6b\x9a\x3f\x37\x08\x6a\x12\x64\x2f\x85\x0d\x3b\x5e\x27\xa7\xbf\x7c\x51\x89\x34\x7a\x61\xf2\x90\x77\xa5\x05\xee\x11\x91\x39\xfb\xfa\x30\xc3\x3d\x50\x2c\xf0\xc3\x78\x01\x72\x26\x95\xf7\xce\x9f\x35\xa2\xf7\xf2\x58\xd1\x49\x31\x10\x68\x4c\xff\x00\x77\x23\x23\xf4\x84\x46\x96\x99\xdc\x72\x6d\x97\xdd\x25\xe8\xaf\x8b\xd3\xc4\xfd\x54\xbb\xb3\x01\x69\x04\xb8\x34\xfc\x0b\x7c\x03\x12\x89\xdb\x4a\x05\x79\xbb\xef\x96\x16\x61\x2e\x4d\x62\xf4\xd1\xb9\xd8\xcf\x17\xba\x7b\x1f\x0e\x43\x76\xf1\x44\xf4\xf9\x2f\x03\x0f\x33\xf9\x98\xe6\x04\x7f\xc6\x94\xe7\x1f\x6a\xf4\xf3\x18\x24\xb9\x4a\x48\x18\x7d\xc9\x17\xb5\xdd\x71\xef\x2b\x6d\xd3\xb3\xdf\x2c\x4c\x6e\xb9\xe4\x82\xed\xfc\x96\x52\x90\xbd\xa5\x42\xfb\xa5\x24\xb5\x2b\x5c\x0b\xc2\x91\x70\x48\xfd\x24\xfb\x2a\x6b\x17\x24\x59\x7e\x6a\x79\x0c\x4c\x9a\x83\xd4\xeb\x54\xb3\x9c\x98\x0d\xec\x63\xb0\x93\xbc\x55\x2b\x55\x94\xe1\x5e\x42\x5f\xbf\x5b\x10\x0c\xef\x53\xdd\x1d\xbb\xd9\x76\xa5\x3d\x75\x41\x0b\x56\xbb\x15\x37\x32\x61\xbc\x54\x44\xc4\x10\x71\x7c\x47\xc7\x00\x07\xd4\x58\xe8\x77\x34\x6e\xec\xc4\x5c\x29\xf9\x2f\x45\x6c\x81\xae\xdb\xde\xac\x1f\x15\x78\x66\xdf\x39\xed\x1d\x72\x5e\x55\x29\x87\x49\x5a\x2e\xfb\x09\x4f\x81\x60\xba\xa3\x48\xa6\xf8\x22\xdc\xd1\xb1\x87\xa9\xf7\x19\xfc\x32\xa1\xb8\x88\xd7\x94\xc3\xda\x87\x58\x4c\x2c\xeb\x55\x7b\xd3\x65\x96\x00\x7f\xd7\x32\xe6\xa4\xfb\x47\xdb\xf6\xba\x52\xb8\xe0\x7e\x3e\x28\x5b\x5f\xba\x61\x2b\x67\x67\xb9\x9d\x28\xfc\x14\x36\x2a\xd1\xfe\x68\x90\x69\xe9\x26\xf1\x8a\x4d\xd9\x21\x45\xf7\x88\x9d\x82\xcc\x9b\x15\x4d\x84\x41\x32\xda\xd1\x72\x06\x47\xdf\xa2\x9b\x42\x86\x0b\xc3\x2f\xac\xb4\x2b\xa8\x91\xe3\x1d\xbd\x3b\xf6\xb2\xf5\xdf\xd2\x50\xbc\x13\x55\x75\x9c\xb8\xbf\xc3\x7f\xeb\x1d\xed\x0f\xc1\x8d\x35\x91\xd1\xd5\xd4\x99\xcb\x8a\x0a\xc7\x5d\x4a\xfc\xce\xb6\x8e\xbc\x13\xe2\xb1\xe6\x20\xe3\x95\xff\xaf\xd4\xc3\xc5\x5d\x1b\x20\x66\x24\xdf\xd7\x54\xa9\x76\x50\xf4\x79\xdf\x17\x86\xbe\xef\xbe\xd5\x75\x02\xcb\x77\x17\xc3\x0c\x46\x4b\xc2\xd2\x18\x89\x3c\xac\xef\xd2\x99\xd5\x78\x87\xc6\x8d\x78\xa2\xd6\x35\xcc\x33\x5a\x2d\x7f\xef\x39\x65\x3e\x7f\x1b\x83\x82\xcc\xe7\x20\x45\x26\xb8\x97\x1b\x90\x56\xe1\x91\x0c\x9e\xc6\x08\x21\xdd\xf9\x0b\x3c\x28\xf6\xe5\xa3\x68\x47\x39\x63\x5c\x6f\x01\x72\x34\x50\x52\x93\xd7\x11\xc6\x8b\xce\x37\xea\x59\xce\x0f\xcf\x15\x36\x6f\x07\xde\xc3\xef\x30\xce\x05\xec\x7f\x4f\x80\xd5\x26\x5e\xf3\xf4\xf6\x84\x5e\xee\xf9\x03\xb0\xe6\xc7\xd7\xef\x5c\x57\x3b\xe6\x1d\x50\x8a\x10\x81\x9d\x54\x84\xe3\xbb\xca\xdb\xfe\x3d\xda\x52\x10\xbe\x5d\x53\xb0\x0f\x1b\xe7\x61\x6a\xa3\xb5\x09\xa5\x5c\x83\xfa\xb0\xb8\x7c\xd3\x37\x89\x61\xfa\xd3\xbe\x1e\x62\xa3\x70\xc5\xa6\xa1\x04\x4d\xd2\x07\x57\x3d\x71\xa5\xdc\x68\xbf\x59\x84\xa3\xa1\x8d\xf3\xc7\xca\xf1\xc0\x84\x66\x2f\x76\x66\x4c\x12\xaf\x87\x05\xba\x28\x38\x87\xda\x09\x53\x2c\x11\xa8\x7c\xaa\xec\xee\x61\x7f\xc9\x85\x42\xba\x61\xa4\x6e\x1f\x54\xb5\x0b\x55\xd1\x68\xa2\xa3\xec\x10\x8e\xe0\x05\x62\x47\xfa\x70\xac\x55\xa0\x7f\xa8\x24\x6f\x3e\xa9\xf9\x1f\xce\xce\xb6\x47\x36\x57\x55\x06\x96\x45\x97\x54\xd7\x4f\xdf\xdb\xc1\x23\xca\x19\x7b\xf5\xd9\xf2\xed\x8b\x8d\x27\x4d\x32\xcc\xe5\xcb\x81\x5a\xbb\x3b\x00\x3e\x43\x65\x05\xa6\x43\xb8\x91\x77\x02\xe5\x06\x75\x57\xb3\xde\x4f\x03\xc8\x8c\x67\xfc\x7d\x4c\x45\x5e\xed\x63\x8f\x40\xfc\x82\x5a\x9a\x22\xe3\xaf\x6d\xd0\xb4\x88\xdd\xb9\xb1\x37\xcd\xba\x1a\x78\x83\x9d\xa3\xc8\xa3\x30\xdd\x4f\x32\x8e\x5a\x3c\xab\x95\x66\xf6\x05\x9a\x65\x78\x41\x37\x54\x51\xf2\x71\x62\xac\x00\xaf\x72\xb0\xa6\x4d\x26\xe1\x88\x38\x14\x5a\x22\x65\x2e\x6c\x56\x80\x7c\x6c\x28\x85\x63\xe1\x68\x03\xe8\x6b\xae\x9d\x16\xc3\xc5\x28\x8c\x65\x13\x62\x19\x9d\x40\x95\x7f\xfd\xee\x1f\xd9\x3c\x2f\xba\xa8\xed\x8b\x6c\xbe\xc7\x15\x9c\x6c\x92\x9c\xcd\x53\x13\x67\x4b\x36\x9d\xf0\x26\x6d\x5f\x62\x0f\x45\x51\xe2\xac\x22\x0c\x5e\xaf\x4a\xe3\xe4\x6b\x8f\x29\x25\xaf\x67\x3b\x74\x4b\x42\xfe\xf7\xd4\xe6\x8f\x91\x3c\x3b\xc1\x33\x67\x81\xb9\x81\xc8\xd1\x55\x64\x76\x8b\xb4\xc4\x65\x0a\xd7\x11\x5e\x02\x55\x20\x4e\xab\xca\xed\xe1\x07\xa8\xfa\x60\x0d\xbf\x89\xe9\x86\x16\xfb\xe4\xba\x17\x1f\x12\xa4\x34\x2a\x10\xe7\x6a\x6c\xad\xdd\x73\xed\xe7\xff\xc7\xff\x61\xa2\xbc\x29\xcc\x62\xbc\xe0\x8a\x1d\x80\x60\x6b\xeb\xed\x98\x97\xdb\xb1\xed\x2e\xeb\xfc\x01\x7b\xb8\xe8\x03\xf9\xf4\x79\x29\x5c\xb1\x4f\xd1\x2a\xe0\x8e\xac\xe2\x90\x1d\x0a\xd4\x5e\xc3\x32\xb7\xa2\x47\x52\xde\x18\x56\xfd\xb6\x8e\x32\xcc\xff\xf3\x4a\xfb\xf1\x4e\xe0\x77\x8d\x1f\x8d\x5b\x4a\x03\x96\xee\x0c\x2b\xea\xd7\x95\x78\xe7\x75\x04\x0f\x02\x12\xd0\x25\x3c\x1a\x61\x57\x27\x2c\x47\x18\x5f\xbf\x49\x6e\xc9\xce\xfb\xd1\x15\x9b\x7e\x84\xb7\x2b\x0d\x18\x6d\x5a\x70\x60\x52\x45\x8e\x5a\x20\x04\x5d\x24\xd6\x0a\x0a\x14\xfb\xee\x0f\x94\x8a\x54\x9e\xa4\x6b\x14\x8e\xa0\x4a\x77\x42\xb5\x08\xb5\x42\xfa\x4a\xb8\x12\xf6\x94\x3e\xe4\x07\x81\xcf\x9f\x3f\x50\x8e\x9e\x4b\x49\x91\xe6\x83\x1d\x1a\x9a\xa7\xf0\x62\x77\x14\xac\xf9\xf7\xe8\x80\x91\x25\xa9\xed\xc8\x3d\x9a\xb2\x5e\x6b\x9d\x9d\x6d\xf7\xec\x30\xe9\xa6\xac\xbd\x23\x68\x0f\x05\xae\xbf\xe5\xf2\xde\xf2\x7c\xca\x9d\x9a\xa3\x1c\xa4\x4a\x35\x92\x05\x84\xb0\x19\x69\x9d\x8b\xdc\x46\xb6\xcc\xae\x93\x96\x2a\xa5\x7c\x14\xe8\x2a\xcb\x47\xb5\x12\xba\x6c\x45\x71\x92\x4e\xb5\x76\xed\xe2\x8d\xf8\xf1\x8e\xca\x03\xef\x50\x23\x0c\xb1\xc7\x19\x05\x32\xbb\x4a\x33\x50\x3a\x57\xcf\x6a\xb6\xa7\x59\xca\x6d\x1a\x27\x49\xdc\x2a\x67\x1f\x9b\x9c\x28\x5a\xe9\xa9\xa6\xfe\xa5\x35\x29\xd7\xf1\x81\x5d\x79\x88\x02\x79\xfe\xbc\xfe\x94\xf2\x20\x87\xe6\x42\xa6\xfa\xa9\xbf\x31\x56\x3a\xbd\xbf\x71\x5f\xd7\xa6\xbe\x09\xa5\x45\xea\x90\x6b\x1e\xdf\xc0\x1c\x1d\xb9\xc5\x26\x5b\x23\x93\x52\xf6\x88\xb5\x75\x5d\xa5\x3c\x17\x69\xde\x23\x04\x9d\xe8\x34\x54\x26\x87\x49\x12\x87\xb6\x55\xa3\x8d\x49\xd3\xd8\xa7\x56\x5e\x0c\x7b\x86\x63\x02\x76\xb2\xe2\x0b\x6f\xb2\x95\x44\x85\x58\x17\x22\x32\xfa\x30\xf0\xf8\x8a\x0f\x55\xec\x12\xd9\xb8\x9f\x0f\x6c\x2c\x4e\x8d\x08\x97\x50\xc1\x47\xef\xf2\x9e\xe2\x65\xbc\xdf\xac\x2a\x16\x25\x26\x9f\xf0\xc7\xe5\x71\xed\x28\x72\x1e\xb5\x11\x9c\x5c\x07\x15\x57\xc0\x1e\x18\x45\x06\xef\x8b\xcb\x76\xe8\x7b\xbe\x8d\x5f\x90\xbc\x8a\x36\x23\x87\x79\x2f\xa3\x3b\x71\x36\x2e\xe7\x18\x7f\xc6\x2a\xe0\xdf\xdf\x4a\x46\xfe\xb9\xf6\xde\x57\x28\xf5\xe5\x9d\x8b\x46\x42\x76\x31\x09\xab\x4d\x6a\x63\x43\xa1\x0c\xc7\x4e\xca\xb5\xf0\x3d\x65\x79\xff\x6f\x54\x6d\x85\x7c\x94\x7a\xc9\xaa\x28\x41\xba\x96\x9f\xab\xb1\x9d\x0d\xb4\xb5\x6f\xdc\x5d\x9b\xf0\x29\x10\x2b\xdc\x21\x56\xfd\xe7\x0a\xa5\x75\x61\xfc\xb8\x4e\x40\x52\x59\xf1\xf4\x74\xe1\x53\xd8\xd1\xb1\xbb\x3c\xbe\xae\xc0\xc6\x47\x1b\x65\x52\x97\xc2\x74\x38\xe1\x41\x2a\x78\x9b\xf8\x85\x2f\xf5\x3e\x73\x43\xf5\x19\xbb\x26\x4c\x6d\x6c\x33\xcd\x74\x39\xa3\x34\x1e\xce\x68\x06\x77\x11\x87\xdd\x70\x64\x22\x06\x04\xe9\xac\x44\xc8\x9d\x2d\xe7\x70\xf9\x69\xa0\x18\xbe\x9f\x36\x28\xbe\xb7\xb3\xdc\xf4\xc2\x62\xd8\x52\x2e\x65\x17\x94\xa1\x71\xdd\x41\x77\xd7\x4c\xbb\x67\xfb\xa9\x15\xca\x89\x4b\x9e\x1c\x1c\xfc\x0f\x70\x70\x49\xa9\x5d\x46\x77\x14\xe6\x4b\x26\x8a\xb2\x09\x65\xbf\x7f\x4a\x6b\x37\x30\x7f\x09\x20\xe0\xed\x9d\xe7\x3c\x5d\x64\x6d\x64\xd3\x30\x5e\x8a\x20\xdc\xeb\x13\x93\xf3\xaa\x58\x77\x5e\xa9\x49\xe4\x69\xd8\x5d\x8e\x2c\xbd\x7d\x44\x2b\x57\xe9\x5c\x40\x8d\xe3\xb8\x72\xc8\xbf\x57\xc3\x88\xcc\x4f\xb7\x17\x23\x33\xe4\xec\x5c\xc8\x9b\x8a\xc8\x19\xf8\x0d\x76\x34\x48\xf2\xa4\x9b\x8c\x42\xc2\xae\x38\x25\xc1\xf7\x10\x64\xf3\x85\x3a\x2e\x17\x4d\xdc\x9f\x50\x5b\x1b\x4b\x5a\x3b\x0a\xb5\xb3\x9f\xf8\xb2\x49\x30\x75\xd1\xa4\x69\xc2\x08\x5a\xb1\x5b\xf1\x11\x9c\x37\x45\x5e\x4c\xf2\xdc\xf1\xa6\x84\x4f\xdd\x72\x5a\x66\x97\x95\x0c\x4b\xbf\xb0\x59\x8e\x1f\x44\x91\x88\x0d\xb0\xf8\xa2\x11\x76\x33\x4c\xf2\xc4\xb5\xd9\x10\x1c\xdd\xd0\x89\xc4\x04\x00\x93\x52\x95\xab\x1b\x8a\xb2\xe9\x58\xc5\xbf\xe2\x8c\x92\x89\x3c\xa3\xf6\xcb\x30\xee\x85\xa9\xed\xe6\xd1\x1a\xf1\xbe\xc5\xdf\xd7\xd7\xf7\xcf\x28\x55\x97\x9f\xd2\x8b\xe5\xcf\xc8\x34\x90\x04\xb0\x1e\x02\x5f\x8c\xbf\xe2\x5b\xa4\x90\xb9\x82\x22\xf4\x94\x32\x1a\x38\xa2\x2d\x78\x18\xf1\x20\x5f\x48\x01\x97\xbc\x5c\x1f\x49\x9e\x56\x9c\xa3\xb5\x24\x5d\x7e\xcc\xab\xb3\x1e\xc1\x84\x40\x0e\x74\x51\xc7\x34\x8c\xcb\x46\x0a\x75\x4f\x23\x00\xde\xe5\x78\x01\xa1\xe8\x25\xed\x76\x72\x41\x55\x33\x27\x3b\xbe\xa7\xf1\xbb\x97\x02\x6d\xc1\xe7\x5b\x30\x8f\x12\xc9\x50\xac\x25\x69\xbf\x67\xa7\x8e\x40\xf1\xb8\x6e\x35\x60\xe3\xbb\x51\x92\x0f\x5c\xf1\x5f\x60\x75\xfe\xb4\x3a\xa7\x26\x53\xbe\x1a\x76\x2d\x31\xad\xd8\xcc\x87\xee\x06\xd8\xa3\x1b\x4a\x2b\x6c\xbb\xeb\xfd\x99\x95\x90\x46\x7e\x52\x61\xbd\xe0\x22\xe7\xc4\x85\x5d\x9c\x7c\x4a\x77\xed\x2f\x28\x71\x8f\x91\x25\x01\x2d\xaa\x49\x29\xd1\xe3\x57\x45\x43\x34\x50\xc5\xc5\xc3\x78\x11\xe2\x8e\xeb\x4b\xad\x17\x94\x18\xdc\x01\x77\x4a\x75\x5f\xec\xbd\x98\xe9\xe2\xe4\xf6\x8e\xc7\x2b\x1d\xd3\x34\xf1\xbb\xe3\xaa\xf8\xcb\xfd\xa2\xbb\xa1\x35\x14\x25\x88\x9b\x3d\xfd\x09\xbe\xf0\x1a\xe7\x49\xbc\x64\xb3\x4c\x96\x30\x46\x9a\x1d\x20\xf8\x42\x2d\x91\x51\x6a\x7b\x61\x37\x0f\xe3\xfe\xa4\x2f\xf6\x02\xc8\xef\x22\x22\xa7\xfa\xf5\x49\xe0\x4b\x56\xff\xe6\x92\x02\xff\x8d\xd2\x30\xa6\xbf\x41\x03\x84\x8d\x1c\xdb\x2b\xce\x2b\x78\xd6\x21\xd6\xe5\x42\x11\xab\xcf\xab\xc3\x29\x2b\x16\x73\x72\x92\xec\xa1\x23\x80\x9a\xf0\xfb\x81\x47\xef\xbe\x5f\xab\xb1\xff\x5c\x3b\x0a\x17\x93\x14\x25\x3f\x6c\xd0\xe7\x35\x46\x96\x87\x19\x0b\xe9\x56\x25\xb9\xb5\x91\x99\x2c\x27\xb6\x98\xbc\xd2\x8b\x92\x06\x92\x27\x32\x7c\x8a\x68\x52\x7c\x5d\x1d\x27\x2c\xe9\x16\x8e\x49\x86\x89\x33\x41\x42\x1d\x22\x84\x52\x01\x19\x54\xb7\xa4\x2e\x4b\xc8\xef\x77\x2e\x63\x48\x8d\xf9\x73\xa0\x02\xc3\x15\x7a\x31\x0e\xb3\xa2\x7d\xe5\x98\xc0\x2e\xe2\x62\x34\xf2\xc2\xe2\x7a\x5a\x39\xf3\x8d\x0a\x9c\x7c\xa4\x11\x87\xfc\x81\x64\x75\x37\xe1\x27\x86\xc2\xc1\x4d\xaa\x50\x09\x12\x8b\x46\x53\xdc\x11\x1e\xf3\xb4\xae\xd1\x08\x4f\xbc\x47\x97\x11\xc4\x32\xe7\x98\x86\xc0\x5d\x69\x12\x41\xc9\x07\x70\x7b\x2f\xbf\x4a\x20\xe5\x13\xde\xb2\x15\x51\x00\x1e\xf4\x73\xfc\x31\xe4\xb5\x9f\xd7\x12\x81\xdd\x73\xed\xd7\x93\x22\x8d\xc9\x8b\x47\x59\x84\x9f\x57\xba\xfa\x1e\xf6\xb2\x58\x84\x51\x8f\x85\x03\x5f\x16\x74\xbd\x8f\x79\xbe\xf9\xb3\x54\xa1\xa4\x98\xe2\x67\x9e\xc0\xf9\x83\xf6\x11\x8c\x48\x37\x2f\x36\x52\xf5\x32\x93\x87\xd9\x52\x58\x55\xea\xbe\xa3\xaa\x22\x77\xbc\x18\x63\x6e\xed\x68\xd2\xaf\x5c\x76\x1f\xd3\x26\x6a\xee\xd7\x95\x6a\xc3\x13\x8a\x4a\xd8\x23\xf9\x18\x65\xfb\x75\x35\x50\x40\xba\xba\xe6\xeb\xee\xb9\xf6\x4a\x98\x44\x36\xcf\xb1\x65\x08\xf6\x43\x09\xda\x9f\x0a\x94\x7c\x41\xbc\xf6\x94\x57\x84\xfa\x35\xc5\x5f\x3a\x4c\xfb\x30\x32\xa5\x4d\x2a\xc6\x61\x00\xd9\xd0\x96\xd5\x7c\x02\x9f\x03\xdd\xc6\xab\x63\x2b\x42\x9a\x63\x48\xfe\x0e\xe3\xec\x40\x97\x7d\x13\x45\x05\x94\xdc\xb8\xa8\xe9\xea\x8a\xe5\x78\xb2\x06\xdd\xd8\x6b\x90\xfc\x5b\x9c\x76\x98\x6d\x77\x55\x50\x75\x86\x0f\x3b\xa4\x3d\x87\xc7\xad\xaf\x7f\xc3\xc9\x00\x28\xa7\x90\x9d\xeb\x0d\x24\xa1\x9e\xa3\x8e\x0a\x75\x46\x35\x02\xce\xa8\x57\xc0\x8c\xc4\x27\x5b\x2f\xed\xdf\xfc\x12\x77\x82\xd5\x7d\x21\xa8\xb6\x0e\x7e\x45\x02\xa0\x6b\x81\x17\xe6\xbc\x3d\xf6\xdd\xac\x3b\x81\x77\xcb\xb9\x82\x87\xc5\xc6\x3f\x05\x8d\x2c\x16\x12\x0d\x54\x79\xf4\x9c\xe2\x00\xdd\xa6\x21\x91\x27\xa7\x97\x00\x24\xca\x21\x4d\x62\xbb\x8c\xb7\xc0\xa4\x03\x45\x00\xfd\x44\xa9\x75\x7c\xe4\x84\xa8\xc8\xdf\x22\x2f\x52\x80\xbd\x1c\xd1\xa9\xbc\x1d\xaf\x59\xe5\x02\xd1\x24\x8a\x84\x09\x2a\x7a\x41\x74\x1f\x7c\xa1\x4a\x44\x07\x0a\x0e\xf4\x75\x72\xc0\xfb\x45\xa0\x8e\xaf\x77\x6b\xec\xfd\x17\xda\x26\x8a\x76\x50\xbd\x18\x73\xfc\xa6\x12\x1a\x7c\x00\x25\x71\x96\xf7\xa4\x01\x61\x51\xa2\x40\xc9\x57\xa2\x32\x8a\xce\xe8\x15\x75\xd0\x44\x26\xee\x17\x61\x36\x60\x83\x1e\xbc\xa1\x6d\x24\xbe\x20\x21\x78\x6b\xff\x9e\xaa\x1e\x38\xc6\xfe\x44\xad\x9a\xf0\x42\xbb\x9f\x9a\xc5\x09\xef\xb0\x7d\x5b\x1b\x24\xfe\x40\xc9\x07\xdd\x54\xf4\xe7\x28\x5c\x6a\x29\xaa\x01\x14\x54\xf8\xb3\xb7\x67\x02\x4a\x7f\x42\x15\xd0\x4f\x69\x96\xd7\x05\x65\x5c\x72\x47\xb5\x46\x96\x6c\x9a\xda\x30\x35\xc8\x15\xd8\x72\x22\xd0\xa1\x47\xf9\xa4\x92\xf7\xf8\x9b\x5a\x8c\xd6\x1e\xae\x0a\x6a\xb4\x9c\x6e\x29\xcb\xe4\x81\xd0\x72\x77\xac\x3b\x27\x54\x35\x14\xa5\x10\x57\x3f\xfb\x27\xff\xa8\xa3\x3c\x6d\x1f\x5d\x57\x4f\xbb\x83\x8a\xb7\x18\xdd\x47\xd6\x3d\xb1\x6e\xfb\xba\x92\x87\xdd\x54\x3a\xad\xdd\xb4\xe8\xd9\x6c\xc2\x47\xa4\x77\x50\xf5\xc4\x05\x44\xf1\xe4\x73\x83\xd8\xdb\x92\xe9\xda\x28\x5c\xca\x39\x65\x40\x60\x87\x94\x81\x3f\xfb\xe4\x27\x0a\xf3\x37\x44\x85\x59\xb4\x69\x5b\x4a\xd1\xa8\x61\x07\x29\xcf\x45\xa2\xf9\xb1\x48\x9b\x52\x11\x3a\xdb\x60\x0d\x99\x2c\x2d\x31\xa2\xf4\x55\x07\x05\xa5\xaf\x13\x8c\xe8\xd3\x95\xe6\xd3\x8a\x89\x6c\x9c\x4f\x79\x1a\xe1\xc9\xc0\x4b\x58\xe1\xbb\xb0\xae\xef\x69\x66\x00\x8c\x9f\x44\x76\x4d\xb5\xfb\x4d\x56\xc0\x33\xf0\x65\xa7\x56\xd6\x9a\xf3\x2a\x66\x3e\x07\xb1\x2b\x36\x7d\x58\xc9\x68\xe1\x64\xc5\xcf\x4d\xa0\x8b\x87\x6a\x3a\x37\x81\xd1\x53\xba\x86\xc9\xef\xac\x10\xe6\xa7\x9d\x05\x4f\x39\xe7\x30\x57\xdf\xa4\xad\x1b\x9d\xb1\xb3\x4a\x13\xf2\xe1\x75\x05\x11\xbc\x12\x28\xab\xba\x53\x0a\x24\x14\xa6\xa9\xe9\x85\xc6\x45\x89\xce\x09\x66\xb7\x73\x85\x69\xaa\x4a\x9a\xe1\x22\x5b\x5e\x38\x81\x63\xc7\x94\xb9\xe0\x05\x9e\x00\x6c\x8a\xd9\x13\x1e\x67\xd8\x45\x8d\xe0\xbc\x18\x3c\x28\xe9\x47\x6f\xaa\xdc\x77\x24\xbf\xf0\x15\x8c\x07\x69\xf0\xf1\x22\x60\x6b\x8e\x17\xf1\xe6\x58\xd1\x2c\x8e\x35\xc1\xe9\x62\x23\x3d\x20\xec\x49\xdf\x23\x15\x20\xfe\x5c\x83\x40\xef\x9b\xde\xd3\x26\x6d\x96\x15\x13\x15\x8c\x16\x53\x85\x91\x39\xb9\x68\x90\x82\x68\x2f\x25\x69\x3f\xe1\xdc\x9d\x49\x7c\x88\x58\x85\xd1\xe7\xf5\x9f\x8a\x3c\x8c\x48\xca\x79\x27\xfd\xb4\x73\x88\x76\x89\x33\xda\x7d\x38\xdb\xb8\x9f\x82\xde\x1f\xb4\x82\x30\xaf\x3f\xa2\x01\x92\xde\x7e\x6b\xd7\x2e\xf9\x85\x06\x9a\xd9\xab\xed\x81\x29\xe2\x5c\x8a\xa7\xa2\x70\x46\x5f\x2f\xda\x67\x8f\x29\x05\x5f\x13\xa1\x86\xec\xf4\x4d\x1d\xba\xec\xd4\xdf\x0a\x21\x1a\x29\xfd\xef\x1b\x1a\xde\x7b\xa3\xc6\xa0\x00\x05\xad\x97\x0c\xc3\xd8\xc4\x39\xf3\x7a\x11\xb6\x82\xba\xce\x9f\x15\x84\x6f\x94\x86\x5d\xfb\x84\xca\x25\xb1\xe5\xa0\xa2\x74\x11\x8d\x49\x87\x23\xf2\x11\x04\x7c\x31\x15\x2d\x55\x6e\xea\x1e\x42\x7c\x54\x46\x58\x5b\x13\x51\xc0\x04\x55\xd8\x91\x00\xef\x84\x6a\x0a\x2b\xf3\x04\x9e\x5b\xf6\x30\x58\x88\x22\xd9\xa3\x30\x2e\x17\x09\x4c\x8c\xa0\x79\x83\xce\x14\xdc\xe3\x79\x56\xc1\x15\x68\x65\x64\x52\x8e\x75\x71\x66\x7f\xa9\xdc\x7f\xbf\x6c\xda\x78\xbb\x49\x9c\xd9\x38\x2b\xb0\x75\x03\xd4\xf5\xa7\x81\xd6\x69\x50\xc0\xb0\xba\x73\xd6\x9e\x57\x16\xda\x86\x52\xd3\x09\x0f\x0b\x42\xf3\x4e\x8e\x1e\x1a\x11\x39\x9a\x15\xa5\x3a\xcf\x93\x34\xb6\x6b\x3b\x55\x0c\x54\x31\xcf\xd8\x08\xaa\x27\xd8\xec\x2c\x1f\xb0\x87\x30\x0d\x50\x82\x40\xd9\x4f\x58\x48\x9e\xce\xe0\xf5\x2a\x15\x60\xaf\xe5\xa5\xd7\x34\x33\xfd\xb8\x0a\x86\xcc\x20\x9b\x2a\x33\x4e\x15\x58\xc8\x01\x09\x6b\x09\x27\xb1\xee\x20\x8e\xef\x22\x8c\x13\x29\xd8\xad\xd3\x12\x83\xdc\x2f\x73\x83\x30\x11\x75\x39\xa4\x12\xdb\x3a\x2a\x3d\xdc\xb6\xae\x44\x20\x97\xb3\x87\x55\x43\xee\x3c\xe1\xe4\x95\x62\xa9\xe0\xac\x98\xb8\x24\xda\xdf\x0a\x51\x72\x0e\x5d\x5d\x55\xf3\x7b\x15\x6f\xf7\x3f\xfd\x9d\x8e\xd6\xbb\x6f\x89\xc7\xda\xaf\x3f\x45\xc7\x3c\x62\xc0\x6d\xda\x47\xeb\x67\x94\x7e\x4c\x3e\x08\xed\x8a\x05\x8d\x8f\x4f\x10\x5a\x5a\x72\x9a\x08\x94\xef\xf5\xa2\xd7\xaf\x66\xde\xa8\xfa\x38\x90\xb0\xa7\x75\x5c\xab\xad\xff\xf9\xe9\xf9\x76\x37\x32\x59\x16\x76\x79\xb8\x9a\x40\xd1\x5b\x21\x54\xaf\xbd\xc6\x62\xf1\xa3\xd0\x76\x71\x8c\x88\x56\x4d\x45\xc5\x46\xe6\x05\xb1\xdb\xb3\x41\xc8\xb8\x6b\x09\xde\x3c\x79\xe2\x94\x72\x1e\x5b\xb4\x26\x35\xd2\x00\x12\x4b\xa4\x96\x93\xc0\x38\xec\xf3\x58\x93\xd9\xc8\x66\x19\x2d\x07\x9c\x75\xdb\xb0\xaa\xa5\xd7\xe5\x51\xbc\x57\x6b\x4f\x4e\xed\x4b\x72\x5d\x35\x29\x78\x30\x58\xe6\x28\x03\x4b\x61\x80\xde\x0d\x72\xaf\x73\x63\x2d\x37\x6b\x48\x7c\x9d\xe4\x66\xbd\x47\xa6\xc7\x85\xbd\x89\x15\xe5\xc4\xf7\xe7\x9d\xd1\x9f\x37\xab\x0c\x97\x96\x4c\xbc\xa6\x2c\xbb\x2e\xe9\x52\xd0\xa5\x06\x94\xdc\x1e\x11\x4e\x95\xb3\xc0\x41\x47\xbc\x22\xec\x69\x55\x5d\xe9\x26\x71\x8e\x2d\xa3\x05\xac\x87\xa0\x4a\xa9\x17\x25\xb0\xd2\x9a\x7c\xe2\x0c\xc9\x41\x72\x50\x86\x69\xcd\xc2\xe1\x7c\x31\x7e\xda\x17\xd7\xb2\x30\xcb\x6d\x79\x06\x4c\x28\xa1\xd2\x0b\x7a\x77\x41\x16\x8f\x05\x3c\xd5\xd1\xb2\xf4\x59\x6e\x4d\x8f\xea\x1f\xc2\x1d\xa3\x51\x13\xf2\x98\xf2\x59\x60\x12\x93\xb8\x0a\x7a\xaa\x40\xb6\x1a\x2e\xa1\xe4\x21\xf1\x26\x8d\x61\x5d\x21\xb8\x1b\xf6\x4d\x6a\x73\xf6\xfd\x91\x5c\xb5\x7c\x63\xfc\xb9\x49\x00\xcd\x1e\x70\xde\x1d\xcc\xbc\xa1\xcd\x51\x58\x38\x5b\x9a\x75\xff\xb0\xbd\x6f\x9a\x04\x88\x70\x42\xa1\x6c\xa8\x45\xa2\xb8\xef\x3d\xae\x00\xe5\xb6\x0e\xff\x6b\xaf\xb5\x17\xbd\xbe\x9c\x54\xfa\x74\x7a\xaf\x18\xf0\xf5\xde\xc6\xfc\x74\x3b\x4f\x95\x9c\xaa\xc4\xab\x4a\xec\xe3\x3c\x0a\x9e\xd5\xb8\x7d\x91\x9e\x52\xa9\xe2\x88\x7a\xe1\xb1\xe0\x11\x0f\x0f\xcd\x87\xca\x8f\xe7\x9c\x56\x46\x3e\xe7\x7b\x53\x26\xcd\x63\x06\x72\xba\xe3\x8c\x4b\xba\x68\x9e\x4d\x75\x54\x73\x6a\x53\x01\xc3\x73\x8a\xf8\xca\xdb\x66\xc1\x1a\xbc\x76\x51\xaf\x79\xb2\x22\x42\x94\x53\xa1\xda\xc1\x1b\xbe\x40\x0c\xc1\x70\x02\x55\x2e\x27\x09\x78\x0f\x33\x28\x6f\x8a\x7f\x83\xd6\xa5\x54\x56\xb6\x2e\xb7\x97\xf6\xb7\x97\x52\x13\x77\x4d\x98\x49\x0a\xe4\x60\xde\xe5\xdf\x10\xfc\xf7\xd6\x93\xbe\x0c\xd8\x86\x26\x5d\xb6\x3d\x8e\x8b\x9c\x18\x9c\xab\x0f\x9c\x6f\xf2\x24\x2a\x83\xed\xc4\xd9\xe4\x3b\x8b\x66\x67\x33\x50\x9f\xa0\xbb\x66\xda\x7d\x13\x45\x09\x9b\xb4\x39\x75\x23\xc7\x3f\x02\xe4\x17\x85\xf8\x7f\x55\xa3\xfe\x94\x37\x9a\x85\x3d\xbb\x6a\xd6\x10\x92\x48\x3b\x40\x29\x11\xc0\x1c\x18\x3d\xb5\x6d\x9d\x26\xf2\x03\x72\xa8\x7c\xad\x55\x95\xe5\xab\xa8\xef\xa9\xee\xec\xc0\x92\x78\x22\x0d\x0c\xa6\xc6\x77\x09\xfb\xc4\x9f\x6b\x6f\x61\xff\x9e\xaf\x51\x39\x9d\xda\xb4\xca\x44\xe8\xba\x12\x38\xbe\xae\x18\x20\x6c\x21\xa9\x42\x2c\x68\xd7\x32\xa6\x16\xf3\x49\xdc\x98\x1b\xd0\x61\x66\x98\xb8\x58\xdb\x1d\x09\xf8\x2d\x39\x1f\x3c\x66\x23\x19\xd9\xd4\xe4\x49\x9a\x91\x69\x0a\x32\x19\x08\x20\x88\xd6\x70\xb9\x6c\x51\xe7\x3f\x8a\x2a\x01\xa2\x8c\xcb\x84\x5f\x12\x92\x9a\xd2\x8c\x33\xa9\x8d\xf3\x8c\xda\x73\x08\xa1\xb9\xdb\x25\x7c\x39\x8f\x56\x3e\x5b\xa9\xeb\x07\x1e\x6b\x7d\x92\x6e\x00\x5b\xef\x69\xe5\x1f\xd0\xa5\xac\xa5\xe5\xd9\x6e\x00\x77\xf0\xe7\x06\x22\xc5\x42\x9b\xea\xd3\x13\x65\x40\x84\x11\xbb\xa1\xbc\x89\x8f\x6a\x82\xcb\xa9\x06\x3a\xc8\x7c\x3b\x0f\x7b\xb2\x72\xa4\x43\xd6\x72\xc6\x88\x6f\x35\x9d\xc8\x00\xfb\x64\x62\x6b\x82\xe3\xe6\x3d\x2d\xaa\xf4\x9e\x63\x28\x8e\x52\xbb\x98\x20\xd0\x6c\xa4\x42\x3f\xe6\xa0\x47\x03\x13\x77\x61\x2b\x82\x8d\xf9\x01\x48\x5a\x8b\xea\xb7\x6f\x56\xb5\x9a\x4a\xa2\xc4\x03\xa3\xa3\x10\xb5\x1f\x8e\x0a\xf9\x22\xf0\x48\xa5\xd4\x2e\x45\xb6\x9b\x0b\x1a\xc5\xf5\xca\xdd\xc6\x8f\xb8\x4c\xac\x7c\xfc\x5b\x5f\x4d\xd2\x65\x9b\x66\x8f\xb4\x9c\x98\x35\xdb\x03\x00\x78\xf2\x6d\x6d\xe3\xf6\x1e\x4d\x29\xc6\x00\xf2\xa6\x8a\x7a\xf0\x9f\x63\x42\xe0\x02\x38\x3a\xf1\xb3\xa2\x8d\xd1\x59\xe0\x38\xbd\xd7\xc9\x8e\x87\x73\x9e\x0c\x94\xc4\xc2\x0d\x0d\x2e\xac\x43\xbe\xe7\xe6\xf6\xb4\xcb\x18\x2d\x34\x15\x43\x87\xb3\xda\xd0\xe1\xac\xf2\x3f\x1a\x16\x51\x1e\x2e\x99\x61\x18\xad\x61\x59\x89\x10\x8d\x72\x80\x3a\xaf\x36\xf7\xa1\xed\x9b\xb4\x6f\xa3\x96\xa7\x52\xfc\x71\xe0\x21\x07\x7f\xac\x2a\x38\x4b\xac\xdc\xe1\x20\x55\x57\x03\x5f\x61\xbf\xaa\x0a\x38\x7d\x1b\xdb\x87\x2b\xf3\x43\x45\x6e\x58\x09\x52\x8e\xa1\x81\x10\x52\x62\xb9\x37\x29\x1b\x85\x05\x97\xe0\xf9\x75\xf4\xb1\x62\x01\xb3\xf0\x81\xc3\x16\x96\x03\x8f\x17\x77\x45\xed\xff\x37\x9b\x45\x39\xb3\xdc\x84\xb1\x84\xf2\x4e\xc7\x7d\x76\x56\xf0\x9f\x15\xc1\x2e\x85\xe5\x01\x04\x80\x18\xf0\x2a\x5e\x45\xe2\x2f\x6a\x15\x4a\x99\x4e\x74\x82\xc5\x0d\x54\x95\x28\xce\x04\xcf\x6a\xa6\x24\xf4\x50\xcb\xd5\x88\xdf\x40\xc9\x8d\x45\x9c\xf8\xa2\x76\x28\xcc\x4f\x0b\x73\x8d\x9d\x0f\x95\x5b\xe3\x8c\x67\x2b\x6a\xd3\xa8\xad\x48\x62\xca\xe3\x86\x43\x9b\x76\x43\x03\xe5\x44\xd4\xe8\x70\x10\x9e\x50\xb5\xca\x13\x9a\xfc\x97\x26\x8b\x36\x45\x1d\xde\xd9\xb7\x3b\x81\x8b\x4f\xc7\x62\x18\x96\x27\xc9\xa4\x12\x31\x7e\x97\x2a\xb6\x48\x42\x8f\xd3\x71\x87\x70\x63\x3b\x32\x46\x2c\x95\xcb\x15\x2b\x93\xd4\xf6\xbe\x5a\xde\x03\x10\x0d\xef\x53\x09\xd2\xed\x8a\x7b\x5c\x15\xee\x9f\x02\x0d\x86\xba\x93\x40\x16\xa5\x19\x42\xd9\xa4\x20\xad\xca\x59\x86\x68\xe8\x7d\x8a\x49\x18\x35\x1a\x54\xb4\x64\x77\xcf\x79\x48\xb6\x43\xa6\xfe\x54\x37\x36\x58\xc0\x10\xa5\x81\x23\x6a\x8a\xfe\x14\xea\x57\x80\xd0\xed\x41\x00\xa9\xe9\x9d\x4e\x56\xbd\x9c\xaf\x48\x1c\xb9\x80\x8a\x26\xd6\x95\x80\xd4\xc1\xb8\xb9\x0a\x39\x12\xfe\x63\xb4\xd1\x38\x71\xc0\xf2\x2d\x21\xd2\x7a\x60\x5d\xd1\xd2\x27\xd6\x9f\x54\x06\xc4\xbd\x5e\x44\x55\x8c\xb9\x2a\x18\xd5\x61\xe3\x76\xcf\x39\x2c\xb3\xcf\xd3\x5f\xfc\xc5\x17\xd9\x2b\x99\x35\xc0\x68\xdf\xc6\xd8\x82\x38\x80\x8d\xe4\x73\x4d\xf6\x6b\x75\xfc\x0e\xb0\x6a\xa2\xa8\xe5\x41\x72\x67\x02\xa5\xdc\x58\x57\xad\x9c\x9b\x6b\x2f\x93\x39\x3a\x4e\x22\x40\xb6\x59\x49\x9f\x2f\x9a\x7a\xba\xac\x08\x35\xa9\x90\xf9\xff\x4e\xcb\x9f\xdc\xae\x64\x1c\x9e\x3b\x77\xdc\xd5\x5c\xb3\xdc\xda\x68\x68\x96\xd9\x92\x93\x5b\x37\xb8\x59\xe9\xe3\xf8\xac\x26\xcb\xcb\x68\xca\xc6\x79\x8b\xa6\x1a\xaa\xcb\x37\x30\xb9\xf8\x62\xab\x38\x4d\xb9\x7b\xef\x9e\xfb\xbb\xad\xe7\x9f\xf7\xba\x31\xae\xd8\x52\x61\x21\x5c\xc1\x31\x80\x3b\xbc\xc8\x87\x0d\xe6\xc0\x75\x6c\x6d\xf2\x7d\x2d\xc7\xce\xbe\xa7\xba\x29\xbf\x86\x33\x85\x35\x03\x03\xcf\xdc\x39\xa3\xfb\x90\x93\xeb\xad\x97\xf6\xf3\xb6\x7a\x14\x99\xa9\x33\xda\x2b\x47\x1b\x73\xfe\x0b\x74\xf3\x78\xd2\x52\xf8\x24\x0a\x62\xb4\xe2\x98\x5a\xa6\xea\xcb\xd7\xb1\xfa\x5c\x57\x79\xd7\x0c\x6f\xea\xdb\xd6\x69\x31\x3c\xc1\x93\x5e\xe9\x0c\x4e\x74\xca\x58\xc7\xa9\xa5\x94\x43\x8e\x42\x40\xab\xa3\x60\x5d\x50\x89\xc7\xd9\x7c\x95\x6a\xb7\x82\xf0\xd8\x9a\xca\x51\x44\x63\x04\x9c\xa5\xb5\x07\x1a\x83\x00\x62\xe1\xf8\xfc\x12\xcd\x00\x49\x6b\x9f\xda\x4a\xd9\xb1\xd0\x9f\x91\x7d\x47\x45\x66\x2a\xeb\xa5\xfc\x60\x24\xab\x0d\xa4\x82\x6d\x9d\xfb\x88\x70\x5c\xd1\x0a\xee\xa6\xbb\x6c\xfa\x96\x01\x3b\x1a\xda\x8b\xa2\xd7\x6d\x45\xf0\xfa\x3d\x0d\xb5\x6a\x6a\x37\xbc\xda\x1e\x26\xa9\x9d\xf0\x0b\x9b\x55\xae\x71\x38\x7d\x86\xd9\x00\x66\xe2\x21\xd5\xdb\xb0\x71\x3e\x28\xb2\xd0\x64\x48\x3a\xd9\x99\x95\xbe\x58\x5c\x5a\xbd\x0e\x4c\xd8\xb3\x49\x94\xf4\x51\xc7\xf2\xb5\x2b\xda\x36\xa5\x8e\xd5\x60\x14\xd1\x33\x21\x97\x7f\x30\xb5\xae\xd3\xae\x29\xf5\x3f\x0f\xdb\xfe\xb8\x49\x0d\xa2\x6b\x52\xbb\x54\x44\x9c\xe7\x89\xf1\x63\x4b\xf9\x24\xaa\x43\x3a\x19\x8e\xd2\x64\x18\x66\xf6\x01\x1a\x52\x4c\xbf\xc3\x8a\xcf\x86\xf0\x10\xff\xce\x29\x07\x92\xfc\x0d\xf0\x84\x58\xcc\x0e\x47\x27\xff\xcf\xd8\xa3\xa4\x8f\x52\xac\x22\x8a\x77\x0d\xb9\x62\x94\x98\x1e\x1f\xc9\xc8\xec\x6f\xd1\xad\xa2\x50\x7e\x5c\x13\xc4\xce\xea\x7d\xf7\x1f\xfd\xf7\x34\x27\xa5\x5a\x54\xae\x23\x29\x23\x3d\xa3\x10\x19\xb1\xed\xda\x2c\x33\xe9\x5a\xab\xf5\xf5\x6f\xf0\x66\x00\xa7\x49\xfe\xac\xc0\x03\xc8\x9b\xac\x92\xc8\x84\xca\x3a\x7f\x2e\x77\x2c\x4c\x80\x03\x79\x6a\x92\xb4\x17\xc6\xf4\x77\x5d\x75\xed\x62\xa0\x68\x38\x17\x9b\xc0\x1e\x61\xbc\x94\xa4\x43\x49\xe3\x84\x15\xa5\x4c\x15\xce\xa9\x78\xb3\x3b\xb0\xc3\x72\xde\x3c\x5a\xbe\x0b\x0c\xc7\xe7\x5a\x54\xe5\x02\xce\x45\x3e\x4a\x69\x83\x73\x94\x54\x8f\x1f\x41\xdf\x1d\xfb\xd8\xe5\x40\x89\x59\x62\x89\xe9\x6c\x83\x7d\xf3\xb0\x41\x49\x6d\x97\xf6\x21\x60\x01\x7e\x34\xf6\x9c\xf4\x8b\x81\xf2\xf8\xd9\xf0\x42\x02\x5d\xd3\xb3\xc3\x10\x12\x49\x48\x02\xbf\x17\xf8\xae\xcf\xf7\x54\x5c\xb4\x1a\xe6\x83\xa4\xc8\x9f\x2a\x7f\x12\xc1\xfe\x97\x0a\x44\xc6\x4e\xc7\xe2\xad\x51\x3e\x03\x2b\xd4\xd0\x26\x2b\x2c\x5a\xda\x7d\xf1\x7e\x7e\x44\x73\x80\xc9\x7f\x4c\x22\x93\xc6\xa4\x0a\x46\xbe\xa4\xa9\x8d\xa2\xe4\x3f\x1b\xab\x46\xe8\x0d\x6c\xf2\x4e\x7e\xc5\x19\x22\xfd\x2e\x30\x1e\x52\xce\x29\xc7\x40\x28\x2e\x34\x9c\x7c\x8f\x5a\x82\xf4\x0b\xdd\x33\xf9\xae\xab\x89\x27\x07\xd6\xfa\xe2\x5d\xaf\x59\x5d\x88\x9d\x11\x6e\xc8\xbf\xfb\xa9\x9e\xa6\x8c\x56\x77\x75\x23\xd7\xb0\x3d\x33\x56\xc4\x85\x77\x1b\x60\x0f\x8b\xc5\x1a\x17\x4c\xdd\xcb\xd8\x37\xed\x5e\x86\x88\xff\x0e\xac\xe9\x7d\xb3\x30\x69\x6e\xc1\xb8\xc0\xc1\x01\x13\x2f\x21\xe5\xd2\xa3\x22\x8b\xfb\x03\xf5\x16\x47\x36\xb5\x51\x64\xb4\x29\xf8\x58\x45\x7b\x17\x5c\x5e\x3c\x30\x5d\x0a\x1e\x66\x67\x2b\x9d\x07\xfe\xec\x94\x41\x7a\x36\x5b\x9e\xf4\xe5\x29\x70\xcd\xc5\x3b\xcc\x1f\x51\x4c\xc2\x12\xac\x70\x03\x9b\x6c\xd4\xcd\x34\xe0\xfd\x84\x36\x8d\x3d\x31\xf6\x72\x53\xd9\x92\x65\x9c\xb3\xd3\x01\xf5\x28\xa7\xe3\x3a\x6a\xdb\x50\x09\x5e\x96\xa7\xd6\xe6\x0f\x7a\x0f\xfc\xb7\x31\x15\x59\x0f\x5b\x71\xcc\xa1\x93\x8d\xfe\xf3\xdd\xb1\xa2\x5e\x6c\x04\x4a\xda\xe4\xff\xc1\xed\x21\x39\xff\xf3\x40\x91\x3d\xfe\xb7\xb1\x47\x04\x1e\xab\x40\x23\x7b\xbd\xb5\x49\xbf\x78\xee\x28\x9c\xfc\x1d\xdc\x36\xbb\xf0\x23\x44\x11\x0f\xc2\xad\xe7\xc5\xcc\xde\xb6\x52\xa9\x56\x0a\xf4\x1e\xb4\xa0\xe3\x5d\x9b\xc6\x0f\xb7\x76\xcd\x80\x3d\x29\x9d\x84\x93\xb8\x7b\x21\x2f\x97\xd1\x8a\xb3\x20\x74\x62\xed\xdb\xd7\xcb\x98\xc4\xe9\x83\x48\xfe\x98\xfc\x83\x4e\xcb\x89\x5e\x73\x32\x8b\xac\xef\xe1\x75\x4f\xf7\xff\x0b\x0e\xf3\xf8\x91\x1a\x85\xc6\x4c\xb7\x6b\x47\xb9\x89\xbb\x56\xa4\xf3\x9c\xbd\x81\x9f\x90\x67\xc6\x3f\xeb\x53\xc9\x41\x94\xa4\xc9\x52\x54\x24\x69\xd2\x35\xe9\x22\x35\x4e\xca\x2d\x15\x8d\x9a\xcf\x14\x4a\x10\xdc\x7d\x41\x71\x96\xdb\x14\xff\x4c\xa0\x8f\xd2\x34\x2d\xfa\xb0\xa3\x2f\x9f\x02\xf7\x7a\x4e\xe1\x9b\xa1\x48\x2a\x4d\x6f\xad\xfe\x53\x8c\x22\xe1\x86\x08\x47\xa9\x89\xbd\x32\x32\x91\xc9\x43\xae\x38\xf2\x0a\x09\x3c\x49\xec\xb8\x4e\x3b\x4d\x06\x50\xb7\xf3\x8b\xf9\xc7\x67\x94\xc5\xf1\x19\xb7\x29\x2d\x9a\x74\x91\x05\xf6\xdc\xb3\x2a\x01\x4f\x95\x54\xff\x96\x92\x21\xca\xc3\xc8\xb6\x94\xdd\x15\x1b\xd3\xf1\x45\xb3\x9b\x63\x64\x57\x4c\xdc\x5d\xc3\x2d\xb1\xe9\x41\xc5\x00\xc1\x83\x89\xfa\x69\x18\xf7\x10\x75\x36\xf1\x39\x7d\x2f\x29\x2b\x46\xa3\x24\xa3\xa2\x76\xc5\x68\x4d\x63\x12\x6a\xb2\xe3\x65\xe8\xe7\x84\xff\xf1\x6c\x67\x15\xcc\xb6\x8e\x4f\x9a\x9d\x6d\xdb\x03\xb6\x5b\xe4\xe1\x8a\x9d\x2a\x67\xa5\xdb\x15\xbd\xac\x19\xf6\x33\x44\x9b\x77\xb4\x2b\x31\x86\x10\xf1\xda\xf9\x7a\x04\xb4\xab\x5d\xc4\x23\xc3\xdc\x49\xf7\xf2\x3d\x59\xcd\x15\x08\x96\xf2\x6e\xcb\xef\x25\x7f\x85\x3f\xcb\x17\x81\x8f\x38\xb3\x91\xed\x16\x11\xd5\x7f\x5b\xbe\xc4\x7c\x35\x50\x7a\x0c\x57\xbd\xba\x47\x1a\xae\x98\x1c\xfe\xaf\xc8\x1f\x6f\x78\x67\xf3\xeb\x5f\xed\xf8\x54\xf0\xba\xde\x53\x1e\x5a\xd7\x05\x99\x74\x94\xa4\x20\x09\x4e\x79\x6b\xa4\x0b\x41\x95\x54\xec\x1a\x22\x17\x02\x4d\xfd\xa2\x3f\x2a\x74\x7a\xdf\x3f\x1b\x98\xd1\x48\x6a\xf7\x28\x2c\x6f\xa3\xde\x3b\x7f\x5e\xaf\x97\xc8\x17\xda\x59\x64\x86\x1c\x5b\xed\x69\x9e\x07\x8f\xa9\x18\xbe\x67\x7b\x53\x74\xae\x3b\x7d\xb4\xf9\x69\x67\xe3\xaf\x30\x8f\x9b\xaa\xb5\xf6\x18\x8d\x07\xa2\x82\xff\x53\xe9\x42\x0e\x4c\x9a\x47\x16\xa1\xa0\x78\xb7\x97\xc1\x88\x98\xba\x37\x14\xf4\x17\x4d\x77\x79\xd5\xa4\x3d\xa2\x7b\x0b\xef\xbe\xe5\x64\x7e\xb0\xc7\x60\x06\x9c\x51\x72\x65\x8b\x26\xc2\x06\x47\x83\x8b\xc4\xea\x2f\x29\x6c\xe2\xcf\x4d\x55\xd1\x85\xf6\xeb\xc5\x70\x94\x4d\xaa\xc9\xfa\x93\xaa\x86\x3e\x3d\xaf\x34\xcc\x68\x1d\x89\xed\x4a\x93\x9e\xcc\x92\xb5\xd1\x14\xfd\x94\xc3\x8b\xee\x13\x2e\xff\xc5\x40\x25\xae\xb7\x95\xe5\xfe\x05\x65\xfd\x7a\x42\xa9\xcb\xf4\xad\x89\x19\xe2\x24\xea\x74\xbe\x53\xa4\x1b\xf0\xa9\xcd\x8b\x34\xb6\x6c\xa9\xac\x4d\xdb\x65\x69\x79\x34\xdd\x86\xdb\x31\x57\xad\x59\xb6\xae\x7a\x89\x65\xbb\x19\xe8\xcc\x81\xfe\x9c\xd4\xff\x1a\x20\xec\x04\xde\x8a\xd6\x5c\xb5\x0f\x27\xdb\x29\xe5\x38\x75\x4a\xf1\xcb\xcb\x78\xa8\xa5\x70\xc7\x47\x50\xb9\xe0\x8b\x5a\x6d\x66\xdf\xf4\x4c\x7b\x94\xda\xdc\x1c\xa0\xc9\xc3\x02\x8b\xf4\x54\x22\xb6\xf8\x15\xf7\xf2\x5f\x2f\xd2\x30\x1b\xa5\x05\x41\xdf\x34\xc5\xee\x2e\x17\xf1\x70\x1a\x1f\xd4\x85\xf9\x3a\xe1\x87\x70\x65\x44\x8b\x68\x55\xec\x82\xe8\xef\x09\xb9\xc1\xa7\xea\x71\x92\xe5\x26\xea\x87\xdd\x96\x4f\xe5\x3f\x0d\x3c\x60\xf6\x53\x35\x3b\x87\x49\x8f\x32\x28\x9a\xd4\xf8\x7e\x08\x0c\x61\xc9\x6c\x22\xfc\x41\xb8\xfe\xb6\xd2\xef\x48\xed\x37\x8b\x30\x95\x72\x80\x84\x84\x74\x77\xa8\xd2\xfe\xa5\xf2\x7d\x3a\x5d\xa9\x79\x16\x99\x7d\x8e\xd6\x02\xeb\x45\x8c\xfd\xd9\x75\x43\x07\x58\xda\x19\x7c\x27\x28\x9e\x82\x69\xa6\x07\x47\x99\x93\x6b\x10\x58\x83\xff\x6f\xa0\xf4\xda\xae\x70\x00\x82\xfd\xf6\x3d\xa8\x1d\x33\xbb\x1f\x69\x80\x68\x54\x50\x15\x52\x78\xff\x65\xd2\x29\xaa\x9d\x65\xde\xe2\xd8\x55\x2f\xed\xe7\x5c\xf9\x6a\xd0\xda\xfb\x8a\x87\xec\x78\x79\xc0\x33\x4a\x6d\xfd\x70\xa0\x58\xe6\xb7\x69\xb9\xb9\xfc\x61\xf7\x9c\x2b\x58\x20\xe9\x91\xb2\x0f\xa5\x33\x7c\x31\xf6\x5b\x9f\x59\x49\xc2\xde\x83\x65\x8c\xa6\x85\xab\xf1\xfc\x9f\xab\x7d\xfa\x04\xde\x96\x26\x2e\xa2\xb8\x7d\x05\x3b\x84\x6c\x74\xca\xdd\x77\x3b\x86\x0f\x23\xfe\x69\x55\x16\xb3\x0e\xf1\x69\x9b\x28\x4f\xfa\x36\x1f\xc8\x49\x2c\xdb\x65\xf9\xa6\xe4\xaf\x37\x55\x6d\xb2\x82\xf1\x29\x8d\xb0\x00\xe5\x53\x9d\xe7\xa6\x3b\x40\x3e\xcf\x73\x27\x50\x74\x88\xd3\x75\xb1\xac\x57\x16\xda\x5d\x93\xe6\xad\x8a\x02\x80\x67\x59\xd5\x35\xca\xf7\x4d\xbf\xdc\x1e\x25\x51\x64\xd9\x0e\x08\x8b\xf6\x6f\xc6\x7e\x01\xff\x8d\xf2\x32\x78\xbd\x78\x9d\xf5\x02\x18\x2a\x16\x78\x6a\xd3\x59\xb7\x27\x32\x67\x06\x14\x1e\xad\xe3\x8c\x9b\x78\xa2\xe3\xd9\x33\x0f\xad\x3f\xae\xc4\x08\x87\x23\x9b\x72\x2e\x53\xa9\x94\xe2\x78\xe1\x50\x0e\xed\xf8\xf7\x1a\x7d\xf5\x6c\x37\x19\xda\x29\x7a\xa1\x68\x49\x6e\xeb\x28\xaf\x81\x8f\x15\x01\xf9\xb8\xaa\x41\x7d\x97\x12\x6f\x49\x48\x15\x8d\x39\x89\xc3\x3c\x49\x05\x0e\x21\x55\x87\x09\xef\xb4\xf5\xbe\x22\x39\x5e\x0d\x94\x3b\xfa\x69\x2a\xdd\xca\x6b\x52\xc4\xd3\xd3\x8a\xed\xce\x16\xb8\x08\x74\x76\x4b\xab\xeb\xb3\xc0\x63\xb9\x3e\x6b\x52\x2d\xcd\xcd\xc8\xed\xe5\x82\x08\xf3\x74\xc4\xa3\xe3\xaf\xaa\xad\x2f\x5f\x0d\xf3\x41\x96\x1b\x62\x1f\xe2\xe0\xd1\x45\x72\x1c\x27\xb0\xc5\x41\xe8\x58\x07\xbe\x10\x61\x3c\xb5\xf6\x0d\xab\x20\x2a\xd7\x02\x75\xe2\x5e\xf3\x74\xb5\xb0\x5f\xa4\x36\xa3\xe1\x62\xb7\x50\x6c\xcb\xae\xed\xe7\xc8\x49\x9b\x58\x84\x82\x53\xf3\xf6\x22\xbf\xf4\x34\x35\x88\x36\x2f\x2a\x90\xeb\xa2\x8d\x92\x55\x3a\x60\xf0\x96\xbe\xa0\xbb\xe7\xcf\x2a\x2a\x4a\xed\x88\x8a\x86\xce\x07\x95\x96\xa2\x78\xa2\xfa\x79\xbc\x58\x64\x6b\xe8\x26\xe3\xd0\x87\x78\x94\x08\xf7\x7a\x4c\xb6\x46\x40\x70\x51\x12\xcb\x44\x44\xd7\x3d\x04\xbb\xee\xc7\xbd\x6b\x57\x3b\x2d\x86\xa3\xc8\x02\x8a\x25\x2a\xab\xaa\x72\x76\x4c\xc9\xe5\xdd\x0a\xd4\xf9\xf5\x27\x5b\x45\x8f\xe7\xa7\xe7\xdb\x2f\x4c\x79\x9c\xe8\x67\xf8\x33\x8e\x02\xe9\xde\xe5\xfb\x81\x82\x8b\x01\x72\x8a\x98\xf0\xbf\x34\x28\x8c\xcd\xb5\x97\x4c\x14\x25\xab\x74\x6a\x49\x19\xa0\xfc\x12\x97\xb9\xcf\xce\x0a\xbe\xae\x11\x8f\x63\x0f\x8c\x5c\x67\x5e\xc2\x18\xc8\xf9\x61\x5c\x37\xf1\xf6\xb1\x17\x9e\x0c\xd4\x41\x6b\xe2\xc2\x44\xd1\x9a\x86\xa1\x83\x2b\xc7\x9f\x95\x14\x7a\x18\xdb\xcc\xee\x50\x35\xa7\x0f\xb1\x11\x70\xb0\x10\x78\x2c\xe8\x09\x3e\xe3\xd0\x60\xd7\xd9\xe2\x3d\xa5\x2b\x7e\x4f\x95\xc2\xcb\x88\xcc\x10\x03\x86\xfc\x25\x25\x95\xa2\xbb\x96\x5c\x6a\x6b\x6d\x66\x66\x6f\x3b\x4f\x93\x96\x0f\xdc\x36\x03\x95\x20\x6d\x2a\x2f\xf1\x9e\xed\x27\x11\x27\x01\x98\x5c\x07\xb5\x4c\xd3\xc1\xf1\xb3\x5b\xdf\xf2\x42\x19\x50\x4d\x7a\x57\xb3\xd3\xca\xbe\xfd\x27\x2a\xae\x64\x9f\x0f\x6c\x49\xdf\x41\x7e\xc8\x05\xe3\xcc\xc6\x79\x38\xb4\x71\x6e\x22\x8c\xae\xd3\x6a\x50\xce\xed\x5b\x13\xca\xd9\xd9\x76\xcf\xac\x49\xd9\x01\xfd\x0c\x2e\x3b\xf0\x45\x03\xef\x3a\x8c\x57\x92\x68\x45\xde\x3e\x72\x94\xe3\x4a\x60\xf7\x0f\x30\x8e\xd2\x36\x6f\xc0\x80\x44\x36\x66\xe2\x16\xb6\xeb\x2b\xea\xf8\xde\xd6\x51\xac\xf3\x53\x2a\x73\x5f\x64\x8f\xd7\x05\x0f\xe6\x72\x7d\xeb\x0b\xaa\x73\x31\x4c\x68\x14\x9c\x3f\x16\x26\x32\x68\x49\xfc\xb9\x76\x3a\xef\xdf\xf3\x35\x22\xf2\xb4\x7c\xfb\x00\x3b\xa5\xf0\xee\x9e\xd1\x06\x47\xa3\x24\x85\xb4\x0c\xdd\x0d\x37\x37\x54\xdd\xc9\x33\x3e\xfa\xa9\xb5\x31\x19\x1c\x4c\x7a\x04\xf7\xe5\xb1\x67\xc1\x1d\xd7\x6e\x50\x87\x95\x4f\x7c\x5d\x1e\x66\xff\xcc\xde\x36\x09\xac\xd3\x14\x94\xaa\x90\x76\xc0\x0c\x7c\x64\x0a\x65\x82\x24\xcd\x1e\xa4\x08\xc5\x29\x16\x95\x11\xa7\xb8\x83\x94\x03\xe2\x1a\xdd\xe5\xa6\x88\x95\x75\x47\xbd\x0c\x06\x47\x4a\xf9\x82\xde\x4c\x85\xb8\x86\xca\xcb\xcd\x40\xab\x49\xbd\xb9\x85\x08\x1d\x3d\x4e\xe3\x84\xce\x3f\x77\x3a\xb1\xd3\x1c\x0f\x3c\xba\xfb\xe7\x4e\xfa\x82\xd3\x3f\x60\x9e\x2c\x92\x70\xb4\x11\x59\xd8\x84\x96\xbd\x20\x69\x7c\x47\x77\x02\x11\x1c\xfa\x08\x37\xd1\x09\x70\x76\xed\xe5\x23\x48\x8f\xc0\xd3\x4d\xe1\x87\x8c\x5f\x7f\x06\x91\xb5\x48\x4a\xaa\xe2\x74\x6b\xbd\x8e\x1b\x7e\xb5\xbd\x14\xf6\xfa\x36\x17\x96\xa2\x20\x22\xe8\x6f\x08\x54\xe2\x71\x57\x3f\x86\xdf\x3a\x15\xa8\xb1\xff\xdf\xad\x28\x40\x2a\x7c\xe6\x99\x4a\x83\x8b\x88\xf6\xf2\x1d\x4d\x74\xb1\xad\xc5\x44\x4f\xe4\xcf\xb2\x34\x7b\x71\x42\x71\x4e\x4e\x8d\xb5\xcb\x05\x36\x05\x6c\xb9\xbf\x3f\x7e\x5a\xe5\x41\x12\xf9\xec\xf4\x5a\x83\x9f\x56\x03\x9c\x4a\x50\xe3\x71\x06\x77\x55\x1f\xf6\x7a\x95\x0c\xe1\xa1\xa3\x93\xb5\xfa\xc7\xec\x6c\x3b\x33\x91\x49\x43\xee\xa4\x29\xe0\xf2\xdc\x26\x8e\x64\xf1\xa5\x7d\xd8\x7b\x3f\xc5\x3f\x4b\x6f\x08\x7b\x25\x2b\x03\x0b\x48\x9d\x12\x1c\x4c\xcb\xcb\x94\xc6\xe0\x9e\x2e\x12\xf8\xc3\xe9\xd8\xef\xdf\xe3\x6b\x8b\x4e\x25\xf2\x9f\x8f\x15\xb8\x8e\x3b\x48\xe2\x69\xe1\xb3\x66\xe6\x8e\xb1\xed\xe8\x7a\x19\x43\x32\x91\x1c\x89\x07\x02\xd5\xbf\x42\x1f\x08\x71\xce\x35\x2d\xed\x70\x4f\x29\x3a\xdd\xd6\xbc\xa0\xcf\x08\x87\x82\x79\xfe\x43\x8a\xb0\xc5\x06\x82\x52\x71\x6e\x9e\xa1\x79\x29\xfb\x92\x16\xa7\xa3\xaf\x5c\xf0\x4d\x07\x07\x70\xe1\x92\x16\x63\x25\xa9\x27\x05\xac\xc0\x31\x7a\x37\x62\xbc\xe8\x81\xe3\x9f\x06\x5b\xa7\xd6\xee\xb9\x76\x56\x2c\x32\x80\x49\xa2\x50\xce\xbd\x68\x6c\x24\x0f\xab\xa2\xe5\x53\x53\x6e\x42\x3b\xe8\x05\x21\x34\x78\x17\x7b\x90\xe0\x13\xfc\x34\xe3\x62\x0e\xd6\xe3\xd1\x40\x3b\x25\x30\xd6\x89\xff\x80\xeb\xcc\x74\x4d\x9c\x27\x80\x75\x28\xcf\x4f\x67\x00\xaa\xa8\x31\xc9\x1a\x1a\x7b\xa8\x3a\x70\xde\xc5\x17\x0a\x7f\xba\x9a\xa4\x51\x6f\x35\xec\x59\x55\xae\x3c\xa4\xcb\x95\x87\xaa\xb6\x1a\x36\xde\x49\x53\x01\x69\x3b\xeb\xaf\x49\xe7\x4f\x81\xf7\xb6\xb1\xa9\x1b\x8a\x71\x50\x9b\xc5\x8c\x43\xce\x08\xa4\xdc\xbb\xf4\xc6\xf0\x62\xaf\x29\xa0\xa9\x49\xfb\x5e\x3a\x5f\x31\xda\x65\x06\x1f\xa9\x95\xe9\xf6\x4d\xb7\xe3\x24\x0d\x6d\x9f\x89\x43\xd8\xe4\xef\xe8\x66\x47\xdd\x6b\xb4\x4c\xc1\xdb\x26\x13\xb2\x11\x46\xe7\x37\x03\x35\x54\xbf\x59\xab\x32\xcd\xcd\xb5\xbb\x49\x44\x7e\xd4\x0c\x13\x60\x91\x0c\x9a\x12\x22\x98\x21\x21\xdd\x20\xcc\xbb\x03\x41\xb0\x0a\x5c\x5f\x63\xf7\xb7\x42\x6b\x76\xcf\x95\x99\xed\x94\x72\xf9\xe5\x42\x03\xbb\x1f\x76\x3c\xc1\x0e\x44\x53\x25\x3d\x2a\x46\x5b\x57\x74\xcf\x2f\xb5\x5d\xcb\x6f\x17\xbb\xd6\x21\x85\x94\x3a\xa4\x36\xc2\x51\x9a\x74\x6d\xaf\x48\x11\x4b\xed\xa9\x08\x48\xf3\x67\x85\x54\x5d\x2a\xd2\x30\x29\x32\xa8\x6a\x73\x87\x69\xf3\x62\x83\x58\xe6\x42\x99\xd1\x84\x76\xc5\x4e\xaa\xb1\x52\x36\x7d\x17\x54\x8f\xf7\x73\x9c\x5b\x62\x54\xad\x0c\x83\x47\x36\xee\x96\x09\x33\x15\x4d\x5c\xf1\xb3\x1c\x17\xc4\x6c\x0c\xab\xc2\x1e\xbd\xb1\x65\xca\x9a\x9d\x6a\xea\xe0\xfb\x70\xca\x5e\xa1\xa9\x88\xa1\xb8\x12\x54\x30\xb9\x74\x23\x4e\x2f\xc5\x2d\x76\xdc\x39\x3a\x27\x47\x02\x35\x78\x26\xcb\x6c\xdc\xb7\x69\x36\xa9\x74\xe4\xd0\x3a\xc3\xe3\xdc\x09\x7c\xbd\xec\x1d\xdc\x2d\xd2\x98\xcf\x1b\xc2\xcd\xa5\x24\xb5\x5d\x93\xe5\x3b\x5b\xca\xd5\xc3\x1f\x0c\x2c\x45\x80\xf9\x71\x29\x50\x67\xc1\x76\x14\x01\xf0\xf5\x90\x1f\x02\x8e\xe4\xe8\x58\xc9\xaf\x6f\x8c\x9f\x51\x40\x8a\x32\xb4\x2b\xe2\x30\x5f\x53\xf8\x66\x0d\x24\xb9\xaa\xf0\xbe\xf5\x3a\xcc\xec\x6c\x99\x22\x24\x23\xd5\xff\x39\xad\xfa\x3f\xa7\x6b\xb1\xf0\x0b\x30\x0b\x51\xba\xb9\xcc\x71\x16\x05\x94\xf2\x00\x13\xd4\xbc\xda\xf7\x62\x2b\x22\x57\x0c\xce\xc2\xfb\x97\xa0\x59\xc1\x28\xb6\xd7\x7c\x97\xe7\xa7\xdb\xb0\xe9\xa2\x2f\x52\xbe\xcb\xaf\x3a\xdf\x65\xd1\x6d\x18\x9a\xe1\xd0\x44\xb2\x25\x88\x0b\x61\xcb\x29\xc8\x1d\xaa\x51\xd9\xca\x54\x86\x58\x60\xa1\xf7\x4d\xa9\x18\x22\xf1\x85\x9a\x2e\x03\x6b\xa2\x7c\x50\xa6\xd9\x3b\x3c\x39\xe2\x7d\x9a\x5b\xfc\x39\xa8\x40\x6a\x7d\xbd\xf9\x8c\x3e\x17\x8e\x06\xea\x94\x39\xaa\xf2\x86\x61\x9a\xbd\xf8\x28\x1d\x3a\xdc\xf4\x55\x2d\x8a\x6b\x38\xcb\x05\x0a\xa5\x64\x26\xc0\x71\xc7\x72\x78\x10\xf2\xc3\x58\x5d\x93\xeb\x0a\x59\x72\x0e\x5f\x8a\x45\xf8\x1e\x4d\x31\x75\xb0\x2f\xc8\xdf\x5a\xf7\x2e\x6f\x6f\x8d\x3d\xfe\x91\x73\x7f\x54\x80\x7f\xa8\x6e\x39\x4e\xd2\x6e\x4b\xe9\x27\x1f\x0d\xbc\xb8\xee\x51\x55\x1f\xc9\x06\x66\xd9\x4e\x69\x31\x31\xcc\x03\x54\x65\xef\xd1\x6f\x61\x1b\x38\xaf\xbd\x75\xf5\xfe\x70\xde\xbd\xec\xdc\x66\x79\xb8\x14\x4a\x5e\x27\x38\x26\x5f\x71\xe1\x52\x3b\x98\x67\x1b\x0a\xda\x1c\xc6\x4b\x04\x9b\x74\xbe\x5c\x0c\xba\x52\x30\xd2\xd3\x8e\xe3\x96\x27\x07\xc2\x2e\x41\xcb\x58\x5b\x07\xcb\xf8\x2f\xe9\x87\xf9\xb3\xb6\xf2\x5f\x06\x46\x83\xf1\x9e\xb8\x75\x01\x7f\x36\xd8\x8f\x64\x79\x32\x34\xdd\x01\x9f\x32\x38\x8c\x11\x9b\xf2\xe7\xda\x0e\xb3\x7b\xae\x3d\xb4\xc3\x45\x6f\xcf\x24\x60\x59\xfa\x0b\x58\xb9\xec\x13\x2b\x37\xf1\x90\xe3\xeb\xa1\x77\xc6\xde\xe0\xf4\x35\xe2\x13\xde\xd0\xe9\x5f\x68\x87\x71\xaf\xc8\x72\x02\x26\xe2\xbb\x70\x92\x1d\x0c\x94\x7f\xda\x41\x07\x6f\xb1\x91\xed\xe6\x69\xd8\x0d\xf3\x35\x2c\x56\xcc\xc0\x0b\x4a\xd1\xb8\xde\xb1\x56\x5a\xad\x5d\x85\x66\xe2\x43\x51\x6c\x51\x1a\x9a\x2b\x99\x85\xee\x8a\x76\x1a\xa7\x97\x22\xae\xe3\x9e\x6a\xb8\x68\x57\x6c\x0a\x75\xf4\x57\xc5\xb2\x97\x13\x0c\x3c\x3e\x0b\xa5\x88\x8f\xe7\x57\x94\x13\x5d\x96\x9b\x28\x62\x69\x56\x05\xc5\x62\xbf\x76\x81\xe9\x4b\xf6\x84\x3c\xd6\xf6\xa0\xc2\x86\xb3\xe6\x36\x16\x1d\xb2\xc6\x8b\xaa\x9f\xc5\x6c\x01\x29\x03\x6d\x8d\x56\x66\xf6\xb6\x93\x6e\xd7\x28\x2e\x33\x08\x1d\xdf\xa7\xf7\xc6\x9f\xb7\x56\xe0\x76\xed\x6a\xcf\xef\xd9\xe9\x05\x8e\xa7\xe0\x7b\x21\x76\x1d\x0a\xe5\xc7\x7a\x96\x08\x06\xaf\x69\x94\x32\x37\x1e\x80\x71\xf9\xbf\xc7\xca\xea\xea\xac\x6a\x1d\x93\x9a\x7f\x45\x38\xb3\xd2\x57\xa5\x6f\x12\x45\x4d\x65\x9f\xa2\x2d\x91\xb3\x62\x38\xb4\xdc\x3e\x67\x7f\xea\xc0\xdb\x03\xfc\x54\x0b\xd3\x51\x37\x0e\xee\x21\xc8\x3d\xdf\xa1\x6f\xe3\xcf\xaa\xed\x92\x25\x51\xd8\x6b\xf9\x1e\xe8\x19\x0f\x81\xb9\x70\x46\x29\xec\xa5\x61\xb6\xbc\xa6\x20\x88\x20\x37\xf1\xe7\x4a\xcf\x2c\x1b\x25\xe8\x62\x6b\x7a\x0b\xa5\x2e\x22\x47\xa4\xf5\xea\xae\x07\xca\xaf\x00\x50\x2a\x91\x83\x71\x52\x36\x36\x32\xce\x7e\x85\x63\x93\x40\x51\x22\xcf\x37\x21\x55\x8b\xb4\x2f\x07\x94\xf3\x63\x53\xa0\x70\x65\xe2\xc1\x9a\x95\x13\x3e\x6d\x3b\xa3\xc2\x76\x94\x2d\x90\x57\xdf\x6a\xb2\xa4\x5a\x10\x2f\x8e\x0a\x83\xf4\xb4\x66\x9f\x9c\xd6\x8d\x58\xd3\xb5\x93\x94\xe3\x09\xe9\x50\x71\xb0\x6f\x28\x27\x7b\x66\xd0\xf3\x7f\x28\xac\x71\x2f\x0d\xa3\x88\xa6\x81\xab\x75\x80\xf7\x22\x68\xd4\xad\x87\x36\x85\xfe\x8c\xa3\x8b\xd6\xa8\x8f\xb2\x89\x10\x0b\xbd\xa9\x4b\xf4\xdb\xe8\x13\xc2\x38\xc5\xc9\x8f\xb8\x06\xca\x05\x27\xf6\x94\xa7\xd6\x64\x45\x6a\xd3\x1d\xf4\x82\x11\x7e\xfd\x97\x8a\x62\x24\x5a\x84\xb4\x52\xfe\x97\x27\x51\xb9\x71\x24\x76\xdd\x29\xf0\xfa\x8f\x67\xc6\x4f\x29\x99\x99\xb8\x17\xf6\x08\xfd\xe1\x5c\x24\x8e\x04\x9e\x17\x76\x64\xec\x85\xca\xff\x90\x32\x4c\xfe\xac\x24\x05\x73\xb3\x6c\x93\x15\x9b\x3e\x48\x2b\x09\xd5\x89\xb7\xe8\xcb\xd1\xb2\x38\xac\x97\xec\x71\x0d\x21\xb9\x84\x5a\x99\xc0\x04\x3d\x50\x60\x4a\xeb\xab\x7f\x3c\xf6\x9a\x4d\x4a\xaa\xe0\x2b\xf7\x1a\xc5\x53\x8b\x32\x31\xe2\x66\xa2\xf3\x3b\x71\xb0\xe7\x77\x15\x3f\xbb\x3c\xa4\xb3\x49\x9f\xf7\x1c\x42\xf1\x43\x1f\x0c\x08\x6b\x27\x3a\xaa\x58\xae\xb7\x99\x2c\x5f\x8b\x08\x33\xed\xbd\x31\x90\x49\xa0\x05\x71\x8d\x5f\x14\xff\x1f\x0a\x17\x1a\xf8\xc8\x24\xba\x40\x51\x7e\xce\x42\x8c\x99\xff\x00\x8d\x22\x1b\x8a\x37\x89\xc3\xf4\xec\xa2\xc9\xd9\x46\x05\xf3\xeb\x90\x7a\x58\xc8\xf7\x60\xb5\x9f\x0c\x9a\xfc\x6c\x99\x13\x12\x89\xf7\xa9\x23\xde\x38\xd0\xf9\x59\x27\x8d\xb7\x98\x24\xb1\xe5\xa3\x96\x95\x04\xc6\x0a\xeb\xfc\xa6\x16\x7a\xb1\x8b\xa2\xe1\xe4\x60\xca\x0a\xb3\xec\xfe\xe4\x30\x8c\x8b\x8c\x0e\x04\xa0\xfc\x77\xae\x7b\xd4\xe7\x69\xb5\x68\x0e\x11\x95\x01\x15\xff\xc7\x90\x89\xa0\x32\x74\x4c\x0d\x10\x8a\xb0\xa8\xce\x6f\xeb\x78\xe2\x76\x66\xd8\x3e\xd0\x81\x77\x5d\x3b\xe0\x8b\x86\x86\x0e\x39\x25\x65\x16\x0b\xc2\x59\xc7\x3b\x37\xdd\x1b\x54\xe3\x72\x5d\xea\xd9\x59\x0e\x04\x0f\x6b\x38\xa9\x35\xe4\xc9\x23\x6f\xb4\xbc\x2f\xb7\x37\x97\x4b\x01\xd9\x2a\x37\x35\x91\x5b\xbc\xa5\x4d\xf2\x44\x26\x0f\xb9\xd1\x5f\xab\x00\x3f\x8c\x4d\xb7\x5b\xa4\xb4\x60\xdd\x93\xdf\xd4\x69\xdb\x47\xb4\x8c\xf8\x3f\x70\x8c\xf2\x7f\x34\xa4\x58\xf3\xed\xa5\x50\xd4\x14\x10\x9d\x7d\x3f\x50\xa1\xda\xf7\xd5\x43\x45\xc9\xea\x0e\x8f\x5e\xf8\xbf\x68\x5f\xe0\xdc\x4d\xe1\x22\x2f\xab\x10\xe2\x2d\xda\x2f\x50\xef\xf8\x11\xfe\x2c\xbb\x1f\x34\x15\x4c\xda\xa9\x49\x2d\xb7\x19\x9c\x92\x77\xf9\x58\xc2\x90\xd8\x3a\xfd\xf7\x4d\xef\x69\x67\x36\xce\xe0\xc7\x2a\x1e\x82\xbe\x0d\x7b\x55\xeb\xb6\x1e\xaa\x15\x76\x5e\x68\x8f\x8a\xc5\x28\xcc\x06\x36\x9d\x2c\x67\x97\xec\x6b\x2d\xa7\x89\x0d\xe4\x12\x22\x03\x94\x67\xe5\xb0\x6c\x02\x44\x45\xe1\xb2\x55\x7a\x99\x1c\xb4\xe0\x4d\x4f\x74\x7c\x06\xf6\xbb\x63\xe5\x2c\x76\x41\x6d\xc5\x66\x68\xe3\xde\x50\x02\x09\x1c\x8e\xf7\x14\x02\xf4\x9e\x86\x1e\x27\x91\x8d\x80\xfc\xc5\x3d\x41\x8b\x08\x61\xdc\x51\xec\xaa\xae\x3e\x3b\x3b\xcb\x99\xe2\x65\x75\x34\xf6\x93\x32\x6e\x73\xac\x8c\xeb\x81\xa7\x0e\x5c\x07\xa1\xa7\xa2\xdd\xba\x8c\xfd\xa1\x09\x87\x59\xef\x49\x2d\xb4\xf3\x14\x49\xbf\x18\x95\x2b\x2c\xf3\xce\x8e\xcf\x82\x6e\xb9\x83\x2e\x36\x6f\x50\x28\x09\x69\x95\x46\xd2\x6e\x9d\x97\xba\xa7\xdd\x1d\x10\x11\xce\xb6\x54\xe9\xf7\x1c\x2f\x1e\x29\x60\x69\xf4\x58\x64\x0e\x48\x13\x00\x75\xb2\x4b\x4a\xb5\xfe\x92\x96\x89\x58\x1e\x98\xd7\x43\xda\x36\x84\x42\xa1\xf9\x14\xaa\xa4\xb8\x1a\x66\xbd\x64\x48\x05\x77\xd6\x7d\x0e\x14\x76\x6d\xac\xb2\xf6\x1f\xab\x54\x2c\x8c\xfb\xcf\x79\x8d\xf9\x9f\xff\x45\xad\x3a\xf1\xf7\xd6\x55\xcd\xed\x06\x42\x16\x01\xd8\xe2\xd1\x30\x7a\x8f\xae\x53\x26\x2e\xf2\x80\x5e\xb6\xe0\x21\x32\x2e\x42\x53\xec\xb2\x6a\x20\xfe\x8b\xaf\xac\x3b\xf3\xcc\x8d\xa7\x88\xdb\xe6\x4c\x26\x9c\x7a\xc1\x53\x1d\xa5\xad\xf2\xec\x7a\x39\x45\x30\x3c\x1f\x8c\x3d\x42\xe2\x67\x3a\x74\x4a\x39\x43\xd0\x5d\x33\xde\xb7\xdd\x61\x91\xae\xe9\x06\xeb\xdf\x47\xaa\x8f\xef\xbb\x4b\xbc\x56\x76\xa4\x41\x97\x01\x1b\x32\xd3\x03\xe5\x6f\x35\x60\x26\x47\x61\xde\xf5\x42\xd5\x28\x25\x03\x19\xc3\x9f\x55\xa9\xba\x9b\x72\x42\xaf\xf4\x57\x16\x9c\x4c\x92\xda\x3f\x55\x97\x9b\x9d\x54\xc5\x26\xca\x71\x5a\xca\x33\xb2\x1f\x76\x27\xee\xab\x9d\xe3\x9b\x57\x97\x55\x93\x3e\x4b\x86\x76\x31\xe9\xad\x4d\xea\x76\x1f\xbe\xc2\xad\xa5\xf9\x69\x7e\xfa\xed\xe4\x61\xc4\x9f\x95\x1a\xcd\x62\x19\x5f\x67\x19\xfe\x86\x9b\x58\xe5\xb3\x60\x73\xbd\xa7\x3a\x59\x9f\x13\xac\x4c\x04\xf0\x1b\xd2\xb6\xee\xc0\xa4\x61\xee\x54\x8c\xd0\xf3\xbd\xa4\xfa\xbf\x97\xc6\x5f\xa9\xb1\x32\x17\xda\xfb\xa6\xe7\x5a\x3a\x2a\xf0\x94\x8c\xb3\xca\xd8\x25\xb2\x59\xc6\xec\x50\x14\x21\x0f\xd3\xb8\xf0\x67\x77\xee\x47\xc9\xe2\xe2\xda\x94\x6f\xbd\x42\x7e\x0e\xbd\x93\x49\x48\x16\x0a\x87\xda\xef\xa8\x67\x70\x98\x09\xc6\x68\xeb\x71\x40\x81\x77\x5e\xa4\x4b\x74\x1c\x20\x56\xd8\x54\xae\x0c\xbc\x9b\xc8\xd4\x6a\xb2\x48\x28\x16\xb3\xb0\xc7\x3a\x00\x92\x49\xb7\xe6\x3c\xdf\xbd\x01\x11\x6e\xe2\x3c\xcc\xd3\x22\xcb\xd1\x82\x77\x41\xaa\x43\xa1\x5e\x57\x25\xbe\xcf\x1a\x9c\x24\xda\x91\x35\x92\xbd\xb3\x3c\x9a\x56\x38\x38\xd1\xc4\xd5\xc8\x6d\x9a\x86\xce\x92\xc7\x09\x93\xce\xce\x3a\x61\xd2\x3a\x09\x28\xcb\x0d\xde\x0b\x9a\x22\xac\x82\xc2\x17\xaa\xfe\xde\x2d\xa3\x41\x28\x7b\x97\x2b\x11\xfb\xdd\x21\x6c\x42\x7c\xe1\x81\xbb\x61\xd4\x4f\xc3\xe1\x04\x65\x58\x8e\x02\xe0\xc7\xa1\x22\xb5\xd2\x94\xcf\x2d\xb4\x47\x36\xcd\x0a\xd3\x13\x2f\x0e\xf1\x41\xa5\x3f\x82\xfa\xca\xdb\xca\xc5\xa1\xee\x11\x4d\x0f\x96\x97\x67\x40\x57\x4a\x4e\x48\x93\xaf\x05\x4a\x16\xe7\xac\xd6\x16\xff\x44\x05\x35\x79\x38\xe4\x88\x56\x8c\xc7\x94\x48\xd8\x49\x05\x23\x5c\x4b\x0a\xb2\x63\xf7\xdc\x8d\x73\x8a\xd2\x76\xae\x36\x9d\x76\xcd\xb4\xbb\x83\xb0\x7c\xb7\x15\x48\xbf\xda\xd8\x2f\x68\x1f\x0b\xc8\x6d\x3f\xd8\x52\xa2\x4c\x34\xe2\x8e\x00\x59\xbe\x0b\xbe\x20\x54\xb9\xf0\x47\xca\xb1\x41\xcd\xf3\x0e\xc1\xe5\x50\xba\xbc\x45\x3b\x93\x6e\x2c\x63\x02\x42\xe3\x12\xdb\xf9\xe3\x35\x50\x04\x55\xdc\x6d\xdc\xab\xfa\xd3\x8f\x2b\x36\xbb\x4d\x87\x70\x18\x67\x61\x7f\x90\x4b\x19\xae\x91\x6b\xd5\xd4\xab\xce\xc3\x61\x11\xb1\xe4\x20\x02\x6a\xa0\xe8\x98\x08\x88\x83\x4b\xb2\x31\xdf\xcc\x17\x6e\x83\xed\x51\xfc\xc3\x0a\x88\x4a\xcb\xe4\x0c\xc5\x32\xfc\x19\xb7\x2f\x32\x89\xcf\x6c\xf5\x74\x7f\xb9\xfd\xfc\xf3\x15\x23\x61\xc5\xf9\x3b\x1f\x54\xd8\x39\x71\x9e\xae\x3d\xd8\x72\xf6\xc6\x7c\x50\x00\x18\xf1\x81\x4a\x4b\x59\x43\xcb\x41\x3b\xb6\x12\x0a\xf1\x53\x0f\x54\x44\x8c\xb7\x30\x15\xcb\x63\x1d\x61\x6f\x7d\xfd\xef\x9e\xa3\xa8\x37\xcc\xc3\x15\xab\xe1\x7c\x81\x82\xf3\x55\x7c\x57\xe3\x68\xed\x19\xdf\x0a\xdb\x40\x16\xca\xec\xaa\x8e\x0f\xe4\xbe\x0f\x1d\x06\x89\xd8\xca\x89\x22\x1a\x37\xad\x5f\x99\x11\x6d\x66\xd4\x96\xf8\x87\x90\xb7\x3a\x95\xf6\xaf\x7f\xc3\xa9\xf7\x6b\x7c\x2b\xb2\x7f\xbc\xd4\x07\x3a\xbe\x99\xf9\xc8\xba\x0a\xef\x2f\xe1\xa1\x31\x02\xd7\x68\x5a\xe3\x90\x9d\xe8\x94\x53\x19\x81\x11\xe4\x4b\xb1\xb5\x3f\xc2\x7d\x60\x9c\x41\x15\x87\xe0\x4f\xf1\x02\xd0\x88\xd8\xd6\x91\x43\x67\x25\x59\x45\x3d\xfe\x55\x86\x05\x1d\x1f\x2b\x39\xab\x2b\x98\x6e\x88\xa6\x37\x83\xad\xf2\x8d\x52\x09\x4e\xed\x8a\x8d\x0b\xd7\x31\x42\x81\xe3\x77\xf1\xed\xcc\x2d\xc5\xc3\x4b\x0f\xbf\xa1\x44\xb1\x6a\xc2\xdc\x89\xa8\xb1\xc3\x68\xe0\xa1\xb4\x88\xae\xc5\x99\xba\x4e\x5b\x6a\x0f\xcc\x0a\xc0\x55\xac\xaa\x15\xa8\x84\xf8\x9c\x8a\x31\xbb\x79\x42\x20\x7c\x04\x09\x00\x5a\xa2\x2c\x7e\x94\x82\x04\x1c\x50\x37\x1b\x98\x51\xe4\xc1\x4c\xa7\x05\x93\x61\x02\x4d\x8c\xa9\xa3\x18\x67\x08\xc9\x65\x53\x4e\xdf\xf0\x4e\xfe\xbd\x8a\x11\xfe\x7d\xd3\x79\xdb\xb3\x4b\x65\xfa\xa6\x44\x2c\x78\x4d\xf1\x85\xca\x8d\x06\x66\x38\xca\x06\x61\x6a\x27\xcb\xd9\x20\xb6\x5c\xe5\x77\x89\x5f\x57\xcb\x29\x23\x7e\x4f\x1b\xdb\x7f\x4f\xd5\x7b\x16\x4d\xba\x08\xec\x02\x76\x4c\xe6\x48\xf0\x85\x42\x34\xa6\x76\x25\x89\x0a\xe7\x41\x24\x16\xf9\x4a\x74\xa1\xbe\xe1\xef\x9b\x6e\x2f\xa6\x89\xe9\x31\x8b\x4e\x50\x55\xb4\x71\x23\x4d\xc6\xe6\xc6\x2e\x83\x2a\x97\x1b\x25\x59\x8c\x98\x69\x93\x3c\x85\x37\xaf\x3b\x5f\x92\xd4\x2e\xda\x68\xb2\xa2\x52\x4e\x33\xcd\xf1\x83\x5c\xa4\x03\xdd\xf8\xfb\x09\xf5\x52\x5b\x26\xb5\xbd\x30\x1f\xf0\x26\x8d\x66\xdc\xdb\x18\x01\xbe\x08\x9e\xde\x1a\xf7\xb5\x77\xed\x7a\x4e\xb9\xf2\xee\x5c\x57\xfc\xfe\xa3\x63\xef\x42\xb0\xc9\x65\x2f\xe1\x0b\xfa\xfc\x8a\xfd\x75\x50\x7e\xbe\x3a\xf6\xd9\xc4\x11\xc2\x10\x01\x4f\x74\x50\x6d\xd8\x52\xdc\x44\x41\xe8\x06\xb6\x05\xec\x24\x13\xeb\x1e\x7b\x0e\xeb\x50\x47\xe5\x71\x2d\xc1\x09\xca\x6a\x50\x63\x63\xc0\x1d\xbd\xb1\x7f\xf8\x44\x47\x85\x95\x3b\xd7\x09\x05\x84\x77\x71\x17\x5b\xb4\xb0\x5a\xc8\x17\x94\xf1\x1d\x5a\xa0\x03\x45\xbc\x7f\x8c\x37\x8a\x75\x7f\xda\xc1\x67\x96\xe3\xf2\x04\x9c\xdc\x22\x39\xe5\x05\x78\x8f\x2a\x01\xde\xa3\xc1\x7d\xb4\xa8\xec\x81\x51\xc4\x24\x3a\xe0\x34\xf0\xd8\x77\x54\x08\x8d\x36\x86\xa3\xb4\x2a\x59\x84\xc0\x6b\x6f\x9d\x55\x1d\x82\x6e\x12\x77\x6d\x1a\xdb\xde\x03\xe5\x78\x69\xe7\x6d\x27\x1d\x5b\xc6\x19\x00\xb4\xdf\x46\xf6\xc5\x17\x63\x4f\x31\x38\xaf\x7d\xfa\xde\xa2\xaf\xe2\x5f\xe7\xb7\xc5\xff\xe3\x26\xee\x6a\x32\xb4\xb1\xb2\xc9\xe3\x00\x8c\x2f\x94\x6a\x63\x66\x56\x77\xb6\x9c\x5c\xef\x49\x14\x0a\x04\x12\x40\xef\x5e\x76\x1d\xdf\x87\x81\x56\x32\x7e\xe8\xbb\x08\xf3\x1c\xea\xd1\x89\xd3\xb5\x3a\xed\x26\xe5\x26\x01\xd8\x84\x6f\x48\x6f\x56\xc3\x51\x50\xa1\x98\xea\xf8\x74\xf2\x9e\xd2\xe9\x5a\xb5\x76\xf9\x31\x15\x99\x7e\x8f\xc6\x11\xb9\x2e\x4b\x0a\x61\x77\xb8\x85\x49\x8f\x1b\x41\xcc\x85\xc9\xbd\x03\xb5\x4b\xb4\xc7\xce\x2b\xfd\x2c\xc8\xd4\x88\x98\xab\x72\x5e\x3e\x89\xf7\x23\x28\x45\x9a\xb6\x08\x20\x8e\x61\x69\xb8\x02\xe9\x6e\xe9\x4e\xb2\xb9\x04\x42\x9e\x8f\x6b\x29\xc7\x6b\xaf\xb5\xf3\x81\x0d\xd3\x09\xe5\x3a\x7a\x81\x03\x10\xbc\xc6\x4b\x4a\x83\x60\x5d\x01\x79\x52\x33\x0a\x7b\xd4\x98\x9e\x28\x17\x19\xc6\x7c\xb3\x62\xd1\xaa\xe1\x37\xbe\x1c\x9c\xa7\xa6\x67\x1f\x51\xa0\xff\x1d\xeb\x15\x27\x43\xdf\xa7\x00\x6e\x0b\x4f\x7b\x1c\x81\x03\xa3\x54\x02\xb5\x53\xed\xa4\xbe\x09\x4b\x28\x2a\xf8\xca\x4d\xcd\xf4\xbc\xa9\x25\x2c\x3e\xc2\x60\x61\x39\xff\xc9\x58\x39\x04\xfe\x69\x93\xbb\xdf\x42\x7b\x35\xc4\xde\xef\x64\xbf\xbd\x97\xf6\xc7\xf7\x6d\x13\x9b\x61\x08\xa5\x79\xc1\x09\xa8\xa7\x3c\x0e\x2d\x20\x51\xc6\xf2\x75\xee\xcf\x95\xef\xca\x44\x0d\x60\x32\x3b\xdb\xee\x0e\x8a\x78\xb9\xa5\x42\x5d\x1a\x2f\x09\x7b\x1b\xfd\x6e\x8a\xc5\x61\x98\x3b\x4e\x01\x86\x00\x6f\x15\xb9\xd8\xb7\xc6\x95\xa2\x52\xbd\xcc\xb2\x67\x01\xc8\x23\x6e\xb3\x49\x0d\x55\xd9\x06\x1d\xd2\xfe\x99\x36\x0d\xe1\x55\x20\x8d\x54\x2c\x51\x29\x9d\x3a\x1e\xa6\x49\xd3\x30\x49\xb9\x33\x20\x4d\xf7\x4a\xd3\xa5\x89\x39\xd3\x0f\x4d\x9c\x4b\xc4\x25\xc9\x0e\xfd\x09\x39\x8c\x69\x6e\x30\xc9\xac\x89\xbe\x39\x34\x69\x3f\x8c\x4d\x14\x9a\x96\x8a\x13\x21\x87\xc3\x9f\xb5\xb1\x00\xa0\x99\x56\x75\xfc\x8f\xa9\x64\xef\x98\xdb\xe5\xb2\x41\xb2\x9a\x11\x94\x0a\x39\xe7\xdd\xb1\x32\x3a\x65\xe7\x20\x4c\xf8\x07\x3b\x95\xe2\x83\x27\x01\xdd\xad\x34\x4a\xc7\x0a\xaf\x54\x6f\x2d\x2a\x34\x42\x9e\xc4\x13\x1e\x1c\xf2\x63\x0c\x00\xf2\xc3\xf7\xe9\x60\x05\x74\xe7\x4f\x6b\xaf\x76\x66\x6f\xfb\x75\xd3\x4d\x16\xb3\x24\x9e\xd0\x07\xed\x8f\xd4\x99\xf0\x99\x8e\x0a\x8e\x35\x71\x0e\xe2\x24\xb7\xa4\x2b\xaa\x91\x97\x38\xd0\x80\x08\x52\x20\x17\xf1\x88\xfd\x42\x55\x5a\xb7\x37\xf9\xb5\x8e\x8a\x6c\x20\x13\x0e\x37\xf2\x96\x16\x39\x7f\xab\xd6\xff\x9a\x9d\x6d\x9b\x6e\x37\x49\x7b\x13\x5a\xdf\x15\xa3\x8b\x9d\xec\x98\x4e\xb8\xdf\x51\x0d\xf6\x81\x8d\x46\x68\xfd\x39\xe6\xbf\xe8\x55\x7d\xe7\x69\xbc\x38\x47\x09\x77\x16\xe3\x0f\xd4\xe0\xeb\x34\xb5\x62\xd3\xc7\xfc\x6f\x39\xea\xff\x51\x55\x00\xaa\xeb\x1d\xcd\xec\x6d\x0f\x42\x2f\xa3\x0c\x0c\xd0\x5f\x2a\xc8\xc0\x89\x4a\x87\xf9\x7e\xa9\x48\x64\x4d\x66\x57\xcd\x1a\xa0\xe9\x1c\x7a\x05\x15\x96\x86\xab\x6a\xfe\xc4\xcd\xd9\x51\xf9\x6b\x58\x05\x78\x49\x47\x54\xe2\x78\x44\xbb\x28\xa5\xe1\xa2\xe5\x12\x13\x3a\x7c\xf0\x33\xe1\xcf\x4a\x14\x2e\xb5\xba\x24\xdb\xa4\xf0\xe8\x73\x92\x5f\x4c\xbb\x1c\x81\x62\x7c\x0f\x63\xae\xf1\x45\xa0\xa3\xe2\x55\x9b\x66\x93\xbe\x89\x00\x54\xaa\x8b\x60\x5c\x97\x09\x3c\x5a\x89\x53\x9e\x54\xa5\x48\x93\xc6\x64\x25\xe6\x3b\xc9\x97\xb9\x7e\x2e\x4a\xb7\x6a\xfc\xff\x10\xfb\x90\x86\x61\x63\x0e\x1d\x6a\xe2\x0f\x12\x1d\x90\x6b\x56\x4a\x79\x59\x30\x37\xf0\x49\x47\x93\xff\x86\x56\x73\x4a\x93\x78\x39\xe4\x9d\xc5\x7d\xd5\x6e\xf7\x59\x95\x84\xb2\x9c\xf8\x29\x93\x4a\xdb\xfc\x96\xf2\xfa\x63\xca\x08\xce\xc0\x37\xb7\x00\x02\xb6\xae\xd8\x5d\xbb\xda\x59\xd1\x1d\x4c\x54\x44\x2b\xbc\x32\x1d\x36\x37\x76\x12\x76\x21\x6d\x3f\x89\x7a\xd0\x29\xda\xe3\x8d\xbc\x5c\x89\x11\x31\x92\x98\xf2\x78\x3f\x87\xc5\x28\xc9\xc1\xe5\x98\xdf\xc3\xe9\x08\x14\x9d\xf8\xb3\x02\x88\x9a\xcc\x8e\xf2\xb0\x0b\x0a\x5b\x39\xf6\xee\xc7\x5d\x26\xf3\xa5\xce\x66\x13\x83\xf1\x16\x5f\x8c\x96\xd3\xeb\x05\x92\x03\x59\xe3\x11\x55\x8d\x2e\x93\x75\x13\xed\xa0\xb7\x8c\x70\xf1\xb8\xea\xa7\xfd\x8d\xfa\x0b\x6f\x8d\x95\xec\xca\x89\x2a\x22\xc5\xa9\xac\x5e\x09\xf4\x73\x86\xf1\xb2\x58\x31\x62\x0b\x9d\xc4\xbe\x81\xdd\xee\x84\x22\x26\x20\x02\x44\x0f\xe2\xc3\x06\x94\x67\xdb\x16\x69\xd2\x2b\x43\x53\x07\x9b\xc3\xdd\xfe\x74\xac\xec\x4c\x6f\x69\xe4\xe6\x35\x35\xe4\xec\xec\xcb\x72\x78\x4e\x68\xc1\x25\x67\x87\xc7\x3e\x55\xda\x50\x99\xd6\x7f\xf4\xed\x2e\xf6\x84\x9c\x50\xb6\x25\x48\xb6\xf0\xb2\x51\x9e\x97\x5e\x8b\x42\xd3\x47\x91\x5d\x63\xec\xab\x33\x4e\xd9\xed\xa7\x85\x34\xf7\x6c\xbc\x12\x66\xa6\xcf\x62\xb8\x22\xdf\xa3\x7a\xd6\x75\x03\xda\x99\xbd\xed\x28\x5c\x4c\x45\x5b\x8d\x8d\xd6\x54\x73\xb6\x2e\xa3\xb0\x6b\x57\xbb\x9b\x0c\x97\x92\x14\x9e\xd9\x12\x3f\xfb\x66\xdc\x6d\x24\x4c\x20\x26\x5d\x50\x10\xd1\xcc\x94\xdb\x44\x19\x20\xa2\xc7\x7f\x0d\x8b\x0b\x08\xaa\xb7\x75\x71\xe7\x24\x3d\x1f\xff\x54\xd0\xda\x35\xb3\xa9\xa7\x68\xb2\x42\x2e\x32\x73\x5e\x06\xd4\x81\xff\x1f\xa2\x46\x1a\x16\x28\xf3\x19\x10\x33\x5c\x52\xd2\x50\xb7\x95\x3c\xf6\x73\x1d\x2a\xc7\xa9\x5c\x72\x86\x03\xc6\x16\xe6\x19\xba\x25\x8f\x50\xab\x0f\xad\xce\x3f\x1a\x6f\xff\x9a\x6f\xe8\xcd\x4f\xfb\x32\xc7\x9e\x99\xbd\x22\xd6\x84\xd4\xf8\x5e\xa0\x1a\x0e\xd0\x58\xc2\x71\xff\x77\x3b\xfe\xf5\x16\xb1\x59\x8c\x60\xf4\x2a\xc4\x66\x1f\x42\x5e\x09\x14\xd4\xfc\x78\xc5\x02\x2c\xcc\xc2\x4c\x1d\x1b\x10\x6d\xe1\xcf\xeb\xda\x4c\x83\xe0\xfb\x6c\x0e\x85\x2d\xf9\xb4\xd2\xfd\x3e\xdd\x00\xfa\xdf\xd3\xee\xad\xc5\x66\x18\x02\x8d\x89\xf1\x38\xac\xd4\x8b\x0f\x37\x75\x58\x7a\x36\x5b\xe6\x9a\xb6\x2c\x4e\xbd\x52\x3d\x07\x26\x89\x63\x9b\xf2\xf1\xc4\x49\x96\xc6\x10\x1c\x53\xb5\xa4\x9e\x35\xf9\x00\xe1\xb5\x6c\xf3\x2d\xa7\x30\xa0\x8f\xa7\x43\x2a\x81\x5c\xb4\x26\x9d\xd4\x2c\xa3\x73\x0a\x05\x74\x30\xf0\x92\x07\x5c\x99\x12\xd0\x5a\xd3\x38\x0c\x92\xa5\xa5\xa1\x81\x02\x2c\x2a\xa5\x47\x35\xa5\xf7\xa8\xea\x50\x67\xf6\x00\x5b\x89\x6d\x59\x09\x7c\xa1\xf6\xe4\x70\x38\x4a\x93\x15\xca\xf1\xc8\x67\x57\x93\x03\xf1\xf9\x5b\x38\x27\x59\x9f\x98\xee\x19\x59\xe7\x77\xe9\xd5\xf1\xe7\x40\x99\xfc\x1f\x56\xdd\x25\x3b\x1c\x45\xc9\x9a\x4d\xb3\xbf\x4d\x92\xdf\x07\x01\xab\x69\xe8\xcc\x3e\xd8\x61\x62\xac\x6c\xda\xcf\x68\xb3\xb1\x38\xb7\xa9\xcd\x72\x0b\x7c\xa5\x53\x28\xd8\x25\x40\xcf\xe3\x4e\x5e\x6e\xd5\x64\x03\xfa\x21\xf6\xbb\x0a\x5a\xca\xfb\xca\xef\xab\xdd\x34\x1c\x8d\x22\xe6\xd2\xe1\x79\x61\x8e\xeb\xf8\x1e\x0e\x0d\x7a\x5d\xe9\x78\x8d\xa2\x22\xee\xdb\xde\x4e\x3c\xa0\x58\x4c\xd0\xce\xaa\xa3\x65\xd4\xc3\x0f\x8e\x7d\xe7\x76\x83\xee\x83\x35\x6d\xf0\x98\xb2\xba\x54\x53\xea\xce\xd6\x2a\xdd\x4b\xfb\xdb\x7b\x5f\xa9\xa8\x24\x71\x81\x49\xd0\xfb\x4d\xee\xf5\x8b\x89\x81\x0f\x01\x2b\xab\x29\xe9\x5f\x16\xdd\x46\x44\x72\xbc\xc1\x19\x7c\xa1\x1d\x85\xb1\x2d\x46\x34\x84\x15\xed\x01\xc1\x1d\x36\xf4\x49\x47\x45\x14\x2d\x9a\xee\x32\x87\x9e\x4d\xd4\xa6\xad\x3d\xcb\xb9\xb9\xf2\x80\x99\xf4\xdb\x0f\xf2\x35\xac\xda\xd6\x7a\x15\xaf\x36\x3f\xed\x74\x72\x1f\x53\x64\xd1\xa5\x22\x52\xb1\x16\xba\x0f\xfc\x79\x5d\xb1\x80\xcc\x4a\x18\xf7\xb3\x9d\x9a\xb9\xfd\x30\xf5\x1d\x74\xab\x0f\x41\xd0\x3d\x15\xda\x5d\x50\x66\xf3\x37\xf1\xc6\x1c\x20\xab\x1c\x43\x4c\x8e\x8d\x26\xeb\x79\x33\x32\x69\xde\x52\x12\xa4\xf4\x15\x22\x47\x5a\x47\x94\xcf\xd3\xe3\xb0\x2f\x1e\x4a\x62\x80\x69\xf2\x67\xd7\x93\x5d\x4d\xd2\xe5\xa4\xc0\xcb\xc5\x50\xa1\xb7\xc0\xf1\x0f\xee\x12\x21\xef\xd1\x86\xc8\x76\x0f\x41\xa7\x2b\x91\x2d\x1b\x98\x39\xdc\xa2\xf3\x29\x3b\xd6\xd4\xd5\x5b\x1d\x84\xa3\xa8\x5c\x60\x4a\xc4\xaf\x2a\x85\xd2\x44\xe5\xb2\x07\xc2\xcc\x81\x7a\x5d\xb1\xab\xfc\x5a\xe1\xea\xaa\xa8\x2e\x49\x72\xf6\xd0\xc3\x19\x78\x85\xe6\x05\x7f\x56\xe1\x49\x2f\xcc\x4c\x3a\x6c\x29\x32\x33\x64\x8b\xa5\x24\xe9\x83\xed\xae\x49\xf3\x24\x89\x01\xb0\x10\x9b\x40\xcc\x06\xa0\xa8\xbe\xc0\xb8\xf1\x7f\x61\x7d\xf1\xff\x34\x89\xb9\x95\xef\xaa\x5a\x3b\x61\xf9\x51\xd1\x3f\xb9\x3f\xd1\x20\x46\x72\xe0\x0a\x89\xbe\x95\x71\x4b\xc7\x7c\x5d\x1b\x9b\x34\x4c\xf0\x9e\x50\x61\xba\xa9\x71\x03\x47\x68\xe7\x93\xfa\x88\x52\xe0\xa0\x2e\x40\xa6\x64\x73\xdf\xa5\x31\xe1\xcf\x4d\x8a\x30\x45\xdc\xb3\x06\x88\x6d\xd6\xc0\xa4\x09\xe5\x14\xc4\xcb\x3b\xc4\xc5\xad\xfb\xb2\xa8\xbb\x61\xda\x2d\xc2\xbc\xa5\xda\xf0\xef\x28\x47\xcc\x77\x6a\x45\x86\xd9\xd9\xf6\x52\x62\x20\xae\xcc\x0e\xcf\xf4\xad\xe2\xf6\xfc\xac\x3b\x23\x52\x3b\x4a\x93\x5e\xd1\xcd\xc3\x15\x11\xf1\x14\x94\x21\x8d\x07\xca\x91\x5f\x68\xef\xa5\x2f\x95\xb4\xd5\x62\x9a\x2c\xdb\xd4\xf4\xed\x43\xde\xbe\xf8\xf8\xd8\x8b\x8d\x40\xb2\xc9\x79\xd6\xb8\xa4\x16\xee\x33\xf8\xa6\xcb\xfa\xfc\xfa\x0b\x4e\xc6\x50\x8d\x39\xac\x54\x40\xd7\x51\xd0\x16\x8f\x94\x72\x21\x21\x20\x6c\x54\x58\xfb\x5a\x3b\x63\xab\x11\x56\x6b\xa3\xe7\x17\xe5\x36\xcf\x29\x58\x8c\xcc\xd0\x4e\x2a\x29\x69\xdd\x3e\x66\x18\x01\xd6\xc6\xb1\xb1\x12\xb3\x3e\xa6\x84\x16\x07\x45\xdc\x4f\x99\x81\xe2\x4a\x54\x4e\x29\xf9\x98\xea\xb3\x6d\xe8\x96\x78\x6a\x0d\x71\x86\x9d\xdb\xe8\xa9\xc0\xab\xab\x9c\xaa\x6d\x0e\x7b\xe6\xf7\xb4\x7b\xb6\x1b\xf6\x44\x9e\x0f\x09\x1b\x13\xcf\xf8\x42\x33\x41\x53\x33\xb4\xe5\x76\x86\x00\xd1\x35\x40\x76\x7b\x3d\x5a\xcf\x6c\xc9\x48\x00\x72\xc2\x53\x30\x19\x71\x2c\x1e\x30\x1e\x9d\x75\x47\xc5\x17\xa9\x1d\x59\x13\x91\x6c\x89\x7b\xab\xae\x0e\x7f\x49\xd1\x16\x4c\xbc\xb6\x98\xf4\xd6\xaa\xae\xa4\xf3\xee\x73\x83\x16\xc8\x42\x3b\x32\x07\xe8\xf5\xb9\x0a\x93\xaf\x36\xd5\xa0\x30\xf4\xbe\xed\x81\x91\xda\x37\x5c\x75\xc3\x57\x3a\x6a\xab\x64\x66\x6f\xbb\x27\x3c\x31\x51\x5c\xf4\xa9\xf0\x05\xb5\xee\xe3\x24\x1f\x90\x08\xd3\xfc\xb4\xa3\xce\x2b\x6a\xda\x8f\x83\xf2\x7d\xe3\x3f\xb4\x1b\x08\x69\x30\x6d\xb2\xb4\x2b\x4e\x8d\xba\xa6\xf5\x2f\x28\x03\x33\x5a\x72\x5a\x1e\x49\xdc\xcc\xb6\xee\x0c\x33\x7b\xdb\x26\xcb\x92\x6e\x68\x94\xfc\x07\x2a\x2e\xbf\x53\x69\x2a\xfd\x4e\x05\xcc\xb0\x54\xc4\x00\x26\xe1\xa0\x3d\xa8\xc0\xce\x07\xc7\xfa\xe4\x8f\xa4\xd7\xef\x0c\x78\xbc\xff\xfd\xa5\x40\x49\xea\x7c\xbb\xb6\x19\x97\xa7\x60\x36\x08\x47\x5e\x22\x4a\x70\xd8\x2d\x67\xda\xf7\xd7\xf7\x51\x95\xb2\x52\xdd\xc6\x2a\xe3\x8a\x30\x5f\xd4\x1a\x07\x33\x7b\xd1\x92\x1a\x65\x1c\x66\x02\x8f\xd5\xea\xa8\x91\xd3\x20\xca\x6b\xbe\xf4\x1c\xf6\x85\x97\x27\xb2\xc0\xfe\xd8\x38\xa6\xca\x78\x02\x5c\xa2\x7d\x80\xbd\x30\xd0\xe6\x13\x63\x8c\xc7\x95\x16\x44\x37\x19\xda\x87\x69\x70\xd0\x99\x3d\x80\x68\x9f\x2f\x94\xe5\x3d\xbc\x6c\x84\xba\xa2\x7a\xbc\xa8\xa4\x8a\x0d\xbc\x9f\xbc\x7f\xa6\x24\x6a\x0f\x53\x75\x02\x9f\x59\x93\x14\x29\xdf\x61\x6c\xd9\x72\x9b\xbe\x83\xd4\x4f\xad\x5d\xd6\xd1\xc1\xd5\x40\x45\x07\x57\x6b\xeb\x6f\xff\x9e\xb6\x8d\x32\x8b\x7d\x86\x8b\xaa\xca\x3f\xe5\x44\xb0\xb5\x39\x38\xb3\xb7\x3d\xb2\x79\x9a\x88\xde\x3a\x8f\x2d\x4b\xf2\x29\x23\xf6\x73\xe3\x47\xdd\x0e\xb8\x24\x06\x7c\xd2\x6f\xf6\x27\xd4\x99\x86\xb0\x7b\xa1\x1d\x5b\xdb\x9b\xf2\x5a\x4b\x0c\xa0\x41\x98\x75\x31\xf0\x46\xb5\x17\xb4\xe6\xd3\x1d\xc2\xdf\xa0\x8d\xf5\x7e\x83\x16\xde\x5c\x3b\x4a\xe2\xfe\xa4\x92\x3e\xb9\xa0\xc8\x37\x30\xfa\x46\x23\x7b\x92\x62\x5a\x54\x05\x4e\x36\x1d\xf5\x59\xb2\x94\x33\x80\x01\x65\x8b\x6d\xf0\xa8\xc5\xce\xf9\x68\xc7\x23\x48\x36\x94\x44\x53\xd7\xa4\x29\x19\xb8\xbe\xba\x79\x91\xde\x3e\x22\x3d\x30\x25\xa4\x10\xdf\x52\x7a\xaf\x2d\xa7\x32\x71\x50\x99\x13\x1f\xa7\x13\x11\x4b\xe5\x7b\x6a\x06\x87\xe4\xe3\x98\xb5\xa8\x62\x29\x39\xa2\x2f\x44\x1c\xa9\x8d\xf4\x0b\xed\xd4\xc4\xbd\x64\x88\xbc\x11\xe5\x9e\x23\x34\x24\xfc\xb9\xa9\x93\xd0\x1f\x78\x5f\xc9\x0a\xff\x97\x2f\x6a\x03\xff\x0b\x6d\xda\xbd\x40\x7e\x64\xb4\x02\xe2\x00\x81\x2e\x78\x14\xb0\x49\x01\x51\xdc\x51\x9e\x34\x8e\xd4\xec\x6d\x6f\x8e\xa2\x57\x89\xb0\xfa\x1c\x96\x27\x5f\xd4\x5c\x14\xf8\xd7\x1b\x3b\x65\x8b\xd6\x8e\x58\x5f\x1d\x81\xd5\x09\x15\x64\x9d\x28\x0f\x3e\x5f\x33\x5c\x5a\xca\xe8\x38\x63\xe1\x97\xc0\xc7\x77\x97\x55\xeb\x36\xb6\x86\x61\x66\x4d\xd2\x4c\x35\xe9\xa7\x99\xbd\xed\x7e\xc8\xe8\x24\x27\x34\x56\xce\x71\xbe\x70\x08\xe0\x6c\x94\x08\x43\xc8\x71\xd1\x5d\x8e\x70\xa6\xa1\xab\xf9\x2a\x79\x05\x10\xaf\x13\x65\x17\x1c\xa5\x1b\x15\xdf\x59\xcf\xec\x3e\xeb\x88\xbf\xa3\x6c\xad\x3b\x08\x4d\x9e\x86\x5d\xe5\xb9\xbb\xa1\x38\x2b\x1b\xae\x50\x99\x25\x45\x3e\xb0\x26\xcb\x27\xbd\x7d\x09\x38\x89\x38\x38\x6e\x05\x1e\x4f\xf5\x11\x5e\x36\x16\xec\x27\x4d\x8d\xb6\x34\x5c\xb1\xbe\xac\xca\x5e\x31\x63\x9f\xb7\xdc\xa8\x88\x6e\xe9\x53\xee\x8d\x37\x8c\x62\x7f\x9e\xd2\xf5\xc2\xc6\x52\xe9\xd0\xa4\x2b\x36\x92\xa2\x8a\xb3\x94\x28\x47\x57\x2c\x25\x94\xac\x72\x91\x72\x55\x15\xdb\x37\xd0\xe3\xfc\x59\x55\x33\x23\xb3\x3a\xa5\xba\x0f\x9f\xa9\x99\xf8\x77\xd6\x6b\x42\xc9\x08\xc9\x40\x05\x42\xd0\xf5\xb3\x1d\x8f\xb3\xed\x89\x5b\x0b\x1b\x47\xe8\x0e\xe3\xef\x93\x3c\x8f\x18\x5b\xe1\x11\x90\x77\x5f\x51\x65\xc5\x2c\x4f\xad\x59\xc6\x71\xac\x85\x2b\x04\x1e\xe0\x7f\x32\xb2\xa6\x5f\x48\x2a\x20\x92\x1e\x2d\x27\xc5\xcd\xd5\x14\xec\x8e\x1b\x35\x56\x1c\xf9\x46\xc2\x3a\xd6\x1d\xff\x02\xab\xf2\xcc\xba\xb3\x35\x9b\xd2\x17\xda\x59\x32\x55\x2e\x6f\x71\xeb\xaa\xe8\xa2\x97\xd3\x49\xea\xce\xbe\xf5\x3f\x45\x78\x7f\x6a\x13\x0e\x9f\xed\xb8\x2e\xf9\x20\xcc\xf3\xd0\xa6\x2d\x25\xd5\xc9\x9e\x5c\x7c\x71\xdf\xce\x70\x11\x47\xe1\x32\x3a\xb3\x2e\x06\x9b\x9f\xe6\xc9\xcb\xb5\x4c\xf6\x7f\x53\x92\x46\x53\x9d\x32\x57\x14\xb1\xec\xa6\x7d\x25\x2b\xc2\x2c\x13\xee\x9f\x83\x75\x6a\x0d\xd3\x06\x0c\xa1\x57\x17\xc6\x96\xb5\xb3\xe3\x7b\x2f\x3b\xd7\x9f\xf4\x45\xd7\x2c\x49\xf3\xb0\x18\x02\x41\xef\x38\x73\xce\xfe\x65\x43\x81\xf8\x4f\xba\x90\x3f\x0d\xbb\x83\x61\x12\x8b\x96\x8f\x14\x82\xe8\xa6\x84\xa3\xe0\xe7\xc4\x52\x9a\xe4\x03\x84\xef\x6c\x79\x19\x78\x1c\xe0\x51\x4f\xb7\xb5\x69\x9a\xa4\x61\x86\x0e\x82\x28\xc0\x94\x5f\x8f\x5d\xe5\xc1\x8e\xdf\x35\x26\xd6\x7d\xfd\x60\x14\x76\x97\xa5\xe9\x85\xd2\xd0\x4f\x68\xa7\xe0\xcf\x4e\xe3\x20\xb6\xbd\x96\x57\x8c\x62\xdc\x02\x5f\xf8\x32\x74\x6a\xcd\x10\x7d\x57\xf4\xfa\xb6\x91\x25\x37\x7f\xee\x38\x8f\x49\xb3\x46\x75\x1e\x47\xc9\xfd\x52\xc9\xe8\xc3\x2a\x48\xc4\xe9\xea\xcc\xb9\x57\xdb\xa3\x24\x84\xe4\xf6\x1e\x2d\x55\xe8\x74\x0b\x55\x94\xb3\x6a\xe3\xfc\x01\x4a\xc1\x70\x24\x3d\xa9\xaa\x68\x9b\xaa\x5e\xcf\x6a\xa4\xd8\x48\xae\xd1\x59\x85\x43\x9e\x05\x55\xd0\xe3\x65\xeb\x3a\xde\x53\x2a\xc6\x73\x9f\x69\x35\x8e\xdc\xf4\xed\x03\xaa\x1e\x73\x17\xb7\xe7\xd4\xb9\x48\xde\x34\xa8\x39\xbc\xbc\xcc\xbb\xd2\x2d\x25\x96\x7b\xa7\x8e\xc1\x96\x6e\xe0\xa3\x4a\x9a\x34\x8a\x1e\x29\x1f\x06\x0b\xe7\x8a\x12\xbb\x7c\x07\x0f\xa6\x20\x05\x92\x9b\x1c\x1b\x7b\xce\xff\x5d\x7c\x3d\x6a\x31\x7f\x4e\xe5\x17\x11\x0c\xae\x3a\xfa\xed\x97\x7e\x0d\x3b\xd8\xb3\x21\x1f\xd7\x9b\x34\x8b\x57\xe4\x3e\xf4\xd1\x90\x5a\xfb\x74\xf9\x7f\xd8\x0a\x5a\xeb\x14\x15\x31\x88\x4c\x9b\x56\x02\x37\xcd\xc6\xef\x81\xaf\x6d\x5c\x0d\xfc\x22\x38\xcb\xdf\xa9\xdb\xbb\xa8\x90\xac\x53\x78\x8f\xfc\x9f\xf1\xb4\xce\xe6\x75\x5e\x3d\xf1\x7e\xf7\x77\x2f\x02\x19\xce\x9a\x78\x48\x5a\xd0\x40\x3b\xa6\x51\x2d\x6c\x19\xe4\x72\x1b\x0f\xde\xdb\xc0\xf8\xe1\xec\x98\x82\x0f\x9a\x28\xec\x49\x62\x97\x14\xe5\xb4\xe0\x28\x4d\x4c\x43\xe9\x6f\x88\x53\xe8\xa3\x4a\x0a\x27\xea\x41\xb0\x11\x45\x1a\xee\x98\x23\x7d\x99\x58\x2f\x63\x6a\x8c\x35\x74\x4d\x91\xc9\xdf\x1d\x7b\xcc\xcf\x25\x8d\x3e\xb9\xc7\x33\x15\x0d\x9e\xed\x04\x40\xc3\xc4\x64\xaf\x18\xb4\x5d\x36\x6a\x89\x85\xab\x80\xb1\x43\x02\x78\xc5\xd8\x78\x77\xac\x2b\xfd\xa8\x07\xa9\x0b\x87\x21\xfb\xfd\xb1\x2f\x8c\x7f\xb5\xd3\x20\xb2\xb2\x1c\x27\xab\xee\x78\x62\x91\xbc\xc0\x4f\x8b\xbf\xaa\x13\x6c\x5f\x59\x68\x67\xc3\x24\xc9\x07\x74\xf2\x23\x1f\xf8\x80\xa0\x42\xfc\xd9\x49\x22\x2d\x99\x28\xb2\x31\x35\xb6\xf1\xec\xdb\x50\x6b\xa7\xc5\xb0\xff\xb9\x8e\xef\x9c\x6c\xa7\x30\x00\xfb\xd7\xad\x06\xe5\xb4\x99\x76\x96\x17\xb1\x68\x17\x6d\x92\x41\xf9\xe6\xcd\x8a\x88\x56\xb1\x68\x5b\x15\xa1\x11\xdf\x69\x3a\xb3\x95\x87\x56\xa6\x3a\xe5\x7a\x9f\xf4\xf9\xc9\x8f\x14\x86\x12\xa7\x2c\x62\x8a\xef\x61\x56\x48\x6d\xbd\x01\x55\xb7\x04\xc1\xda\xb9\x39\xd7\x31\xa5\xdb\xe0\x8b\x5a\xa6\xbe\x67\x7e\x4f\x45\xa9\xd7\x33\x5b\x68\x6c\x2a\xa5\x2c\x1c\xfa\xb7\x6a\x53\x81\xde\x41\x31\xb2\x69\x37\x19\x8e\x8a\x5c\x44\x0a\x9c\x5a\x83\x6a\xa7\x34\xd5\xc8\xf3\x24\xed\x3a\x80\x14\x56\xe0\x6d\xed\x41\x7e\xdb\xa9\x0f\x2d\x9a\xee\xf2\x52\x98\xca\x42\x61\x24\x67\xa0\xe4\x7f\xd7\x55\xc3\xca\x46\x51\x98\xe4\x60\x1d\x63\x2e\x70\x3f\x8e\x2f\x6a\x67\x7b\xf9\x1c\x8b\x06\x27\x14\xc8\x94\x2c\x51\xc3\x17\xee\xb8\x4b\x7a\xbd\x9d\xea\x2f\x41\x1e\xd2\xa1\xb4\x1c\x2a\xf6\x37\x54\x92\x02\x2e\x29\xff\x3c\xf6\x6d\x57\xd0\x76\x0d\x92\xba\x9e\xeb\x0b\xed\xd5\x81\x4d\xed\x22\x17\x31\x45\xa2\x97\x9c\x41\xb9\x3f\x43\x3b\x1a\x52\xed\xa3\xae\x52\x64\x16\x8b\x2c\x5c\x81\x9e\x28\x42\x45\x08\x3d\xb9\xea\x69\x39\xbc\x02\x66\xf3\x14\x24\x66\x8e\x87\x71\x7f\x87\xc6\xe3\x6b\xb4\x99\x50\xf8\x95\xe4\xcc\xcb\x5e\xc2\xdb\x21\x9e\x21\x8d\xc5\xda\xac\xeb\x0a\xb7\x1d\xae\x84\x51\x48\xcc\xc0\x72\x8f\x05\xa0\xe0\xb4\x32\x10\x3e\xad\xd4\x21\x4d\xda\x1d\x84\xb9\xed\xe6\xc0\x4b\x09\xac\x56\x63\x6c\x35\x98\x1b\x4f\x25\x88\x29\x7d\xb8\x64\xb6\xab\xd6\x3d\xc1\x20\x16\xca\x9c\x7e\x66\xef\xe6\x45\x6c\xcf\xfc\x3f\xc1\x53\xd5\xa5\xf9\x73\xed\xdd\x73\x53\x1e\x41\xf8\x9e\x96\x8e\x83\x46\x03\x42\xa1\x4b\xba\xf4\x74\x52\x83\xc2\xff\xa5\x9a\x91\xc5\x88\x3c\xf4\x5b\x1e\xb2\x8e\xda\x00\x7f\xae\xad\x8e\x7d\xd3\x6d\x13\xaf\xe5\x1e\x83\x26\x5d\x57\x4f\xa4\x39\xdd\xa0\xda\xbf\xa7\x9d\x25\x2b\xa1\xcd\x95\xaf\xe5\x65\xdd\x26\xb8\xac\x7c\x9d\x08\x4f\x9b\xa6\x26\x46\xe3\xc9\xf9\xa6\x7b\x02\xc9\xd1\xa6\x36\xdf\x37\x0b\xf9\xfb\xae\x83\x30\x3f\xed\x9a\xff\xbe\xc6\x91\x27\xab\x26\x65\xaf\x23\x8c\xda\xb6\x75\x05\xb9\xdf\xd6\xf1\xa9\xfb\xa2\xc9\x96\x6d\x0e\xe7\x0f\x14\x4e\xee\x60\xb4\x1d\x60\x49\x61\xb0\xeb\xd5\xa2\xf6\x62\x1a\xda\xa5\x09\xfd\x4a\xbc\x08\xcd\x8f\x54\x09\xe6\x5c\x35\xec\xc8\xec\x43\xe5\xff\xa1\x24\x75\x94\x03\x07\xf6\x08\x26\x04\x1e\xff\x0f\x2a\x19\x88\x48\xaf\x8f\x55\xf5\x88\xf7\x08\x41\x60\x20\x72\x73\x85\x33\xf7\xa2\x98\x94\x05\x30\xef\x86\x0a\xd6\x1e\x54\xc8\x14\x93\x65\x36\xcf\x1e\xad\x4c\xd5\x72\x3c\x30\xaf\x58\xc4\x16\x99\xda\x1d\x44\x1f\x48\x1f\x0e\x52\xe1\x11\x47\x35\x4d\x6b\x66\x5b\xbe\x13\x68\x2d\x6c\xac\x55\xec\x47\x2c\x2a\xcb\xbf\x1e\x78\x82\xe6\x3b\x81\xef\x8a\x5c\x46\x50\xe3\xa4\xb4\xf7\x4d\x73\x10\x76\x27\x78\x44\x57\xe0\x7f\x86\xe0\xfb\x4e\xef\x67\x7e\xda\xab\x9d\x2e\xfc\xcf\xbf\xc2\x2f\x0d\xe0\x4f\x8c\xec\x0e\x62\xb3\x30\x66\x3c\x68\x3d\xff\xbc\xfc\x72\xa0\xfa\xb3\xd7\x69\x7d\xea\xd6\xe6\x6f\x8d\x95\xff\xfd\x77\xc6\xea\xd9\x26\x3b\x8a\xfd\x37\xd5\x69\x7d\xfd\x1b\xae\x1b\x5a\xbe\x5d\xfc\xfb\x23\x90\xe8\x63\x1d\xdf\xa0\xf5\xcb\xc2\x9f\x44\x5f\xcc\xdd\x42\x19\x79\x0a\x28\x4c\xeb\x12\x6c\xef\xd0\x6b\x77\x29\x99\x17\x18\xfb\xb2\xc2\x4b\x55\xe9\xe8\x21\x8a\x44\x1c\x09\x64\xbf\x33\x83\xfb\xa0\x12\x2d\x2c\x86\x16\x3d\x5a\xc9\x99\xe8\xd1\x24\x9b\xba\x2f\x14\x46\x09\x70\x45\xe1\x10\xe6\x06\x62\x07\xe5\x8d\xa8\xeb\xca\x56\xfb\xa6\x5f\x6e\xaf\xda\x0c\xcd\x74\x2d\xfe\xc4\x3a\x1b\xf4\x0a\x71\xa0\x1e\x1c\x0b\xba\xc4\x84\xc3\x6c\x47\x39\x4e\x18\x3f\x30\x7f\x2a\x3b\xaf\x00\xd5\xcb\xdf\x56\x1e\x96\xd2\x7b\xe3\x4c\x07\x6b\xfb\x66\xad\x56\xb9\xf7\x95\xf6\x28\x29\x62\xd6\x57\x17\x6e\x9a\x2f\xfe\x7b\xcd\x82\xd4\x8e\xd2\xd0\xae\xb0\x3c\x90\x08\xe0\xd3\x1f\x97\x3d\xb7\xe5\x44\xbf\x0f\x36\x35\x97\x96\x92\x24\x57\x52\xb4\x87\x15\x5e\xe3\xb0\x2a\x00\xa7\x66\x64\x7b\xad\x2a\x05\x8c\x8e\x6e\x01\x25\x3f\xaa\xea\x89\x07\xf2\x07\x3c\xa3\xf3\xfb\x34\x08\x8c\x51\xa6\x87\x10\x8e\x85\xe7\x84\x00\xb3\x88\x4c\xe6\xae\x26\x93\x5e\xc5\x40\x61\xfb\xbd\x4e\x73\x53\x78\x48\x12\x09\x2d\x25\x69\x3f\xc9\x73\x0e\x67\x11\x3d\x1c\x1a\xab\x2d\x0a\xd0\x11\xcc\xc8\xe3\x5a\x3e\x7c\xbb\x4f\xb4\xd3\x64\x45\xf8\xe9\xf8\x25\x0e\xf9\x59\xaf\x5d\x09\x77\x9f\x73\xca\x8c\xa3\x34\xe9\x46\x66\x68\x40\x22\x74\xa5\xd5\xc3\xda\x4b\xf2\x70\x20\x81\x52\x5a\xc4\x0f\xd1\xc2\xc4\xd6\xfb\x11\xcd\x93\xcd\x0d\xdc\x0f\x02\xa6\xa7\x3b\x3e\x6e\x7f\x80\x52\x05\x2c\x10\x00\x71\x11\x13\x5c\x1c\x6b\x13\xa2\xb1\x4a\xee\xd9\x08\x00\x03\xca\x3a\x18\x0c\x2a\x76\x71\x7f\x11\x5b\x93\xad\xd1\xc9\x80\xa0\x65\x43\x09\x99\x9c\x53\x86\x3c\x27\x7d\x17\x2a\x0a\x47\x6c\x3e\x80\xed\xf2\xc8\x58\x41\x2c\x39\x6f\x16\xa6\x58\xfd\xd4\x26\xea\x78\x91\x4a\x4c\x0b\x5a\x1b\xea\x2d\xfc\x39\xd0\xa6\x93\xc3\x49\x35\xd2\xba\x48\x8e\x7e\x19\xb2\xed\xd6\xba\x16\x38\x6d\x50\x59\xde\xd3\xee\xd9\x15\x1b\x25\x23\x7c\xed\xab\x8e\x7a\xa2\xe9\xe6\xaa\x54\x9e\xdb\xe1\x28\x92\xda\x17\xf6\xfe\x4b\x78\x8b\x7c\xa1\xea\xfc\x71\xb2\x42\xea\x97\x74\x8e\x33\xdf\x3a\xf0\x38\x81\x8d\x5a\x9f\x6a\x66\x2f\xad\x08\xd4\x46\x1d\xa8\xc8\x35\xcd\x1e\xa7\x07\xc3\x59\xb0\x89\x2f\x15\x18\x4e\x03\xc5\xd3\x84\x69\x37\x35\x4b\x6c\xa4\x86\xc0\xef\xa7\x4a\xab\xf4\xa7\xae\xc4\x04\x93\x9f\x47\xe9\x89\x05\x69\xad\x32\xf6\x27\x3b\x5a\xf8\x88\x06\x09\x5c\x86\x93\x5a\xf8\xf2\x7b\xb4\xe2\x50\x3b\x78\xb0\xa3\x40\x72\xeb\xbe\x06\xbc\x1d\xf5\x09\x01\x04\x53\x89\x40\x04\x14\xb5\x61\x90\x3a\xa3\xb7\x13\x31\x5e\x0e\x8f\x26\xfa\x74\x99\xb9\xc9\x9c\xc1\xd7\x7c\xa4\x1c\xbf\x3e\x72\xab\x6a\xd5\xe6\x13\xad\x5f\xfd\x25\xfe\xf7\x1f\x8d\x7d\x59\xf4\x0a\x69\x28\x48\x90\x54\xef\xe4\x2e\xb4\xed\x37\x0b\x61\x34\x21\xfc\xf8\x58\x85\x22\x1f\x2b\x08\x01\x45\x9d\xd9\x83\x3e\x30\xff\x98\xce\x38\x56\xbe\x53\x42\xac\x5f\x42\xe7\xc6\xc9\x6a\x97\x77\xef\xd4\x9c\x5d\x49\x18\xfa\xc8\x4a\x30\xce\x59\xc0\x52\x0d\x47\x6c\x86\x1f\x73\x99\x5e\xee\x3b\x0c\xa2\x73\xd2\x72\x0a\x9c\xd0\x1c\xc5\xe1\xf3\xb1\xb3\xae\xee\xd9\x6e\x12\x67\x79\x5a\x74\x1d\xe4\x8a\xb9\x3e\x6a\x2b\xab\xf3\x7e\xca\x7c\x5e\x68\x71\x00\xb4\x00\x90\xc7\x9f\x35\x81\x8a\xf4\xbe\x2d\xb2\x11\xec\x1f\xb7\xb4\x1d\x00\x24\xa0\x9c\x34\x87\xdf\xd1\x3f\x6c\x44\xa4\x99\x90\xf5\x41\x66\x38\xb7\xfa\x84\xc3\x8d\x8a\xe4\x08\xbb\x0d\xb9\x24\x78\x94\xda\x6e\x54\xf4\x84\x04\xe7\x5a\xf8\xce\x20\xf7\x3c\x5a\xc8\xd8\xfb\x2f\x37\x90\xe0\x16\xca\x38\xb3\x18\x4a\xc2\x2f\x95\xff\xca\xea\x52\x2a\xbe\x97\x15\x3d\xc0\xae\x98\xa8\x30\x82\x87\xd0\xfe\x97\x02\xd3\xf0\xd9\xdb\x6a\x18\x45\x66\x48\xe8\x09\x0d\xfe\xe7\xf8\x48\x24\xd6\x1a\xc4\xff\xa2\x64\x45\x04\xd3\x50\x86\x07\x3e\x9b\x3f\x37\x81\x0d\x06\x45\xdc\x4b\x6d\x8f\x8b\x40\xd8\x4a\xb6\x77\x7c\x07\x7b\xfb\xfa\x93\x5a\x66\xc3\x2c\x13\x9c\xc1\xc7\x6f\x1b\x78\x5e\x29\xd8\xf9\x1a\x3e\x69\xc6\x38\x66\x1f\x5a\xa6\x10\xb7\xe6\xcf\x4a\x52\x33\x2a\x0e\x14\xa4\xda\x4b\x7f\x98\x11\xc6\x81\x46\x1b\x6f\x5d\xf4\xaf\xbd\xd6\x4e\x6d\xbf\x88\x0c\x36\x56\x11\x89\xf1\xc7\xea\x79\x57\x72\x30\xfd\xe4\x41\x5f\xd9\x7f\x7a\x5d\x19\x51\xde\xc0\x3c\x91\x0e\xbb\x4f\xf9\x01\xbb\xa7\x03\xe3\xb7\x9f\xa1\xb2\x29\x4a\xc5\x7f\x36\xf6\x55\xbe\xe7\x3a\x95\x52\x80\xf2\x79\xbb\x50\xeb\xc6\x10\x7d\xb2\x67\xb3\x6e\x1a\x2e\x4a\x0d\xc6\xd1\xb3\xdc\xd6\x78\xee\xbe\x60\x39\x93\x67\x45\x36\x80\xf8\x98\xd8\x12\x68\x8f\x82\x4a\x48\x1c\xf7\xd6\x88\x40\xed\x8e\xf6\x32\xc5\x40\x0d\xfc\x36\x82\x30\xbc\xad\x4f\xe9\x81\x9d\x42\x42\x79\x4f\x98\x28\xac\x09\x8b\xcd\x63\x23\x50\x62\x96\x7f\x5a\x03\xed\xc8\x1d\x66\x45\xdc\x33\x6b\x42\x56\xc1\x1f\x3d\x44\x07\x1d\x96\xc2\xa7\xda\x15\xe2\x3b\xe3\x47\xbc\x7c\x61\xd7\xee\x68\x29\x97\xf0\x72\xe0\xb1\x41\x6c\x43\x5f\x40\x06\xb8\xdc\x39\x50\xaa\x65\xc1\x12\x60\x7c\xd0\xa6\x66\xd5\x94\xa6\x19\x3e\x34\x71\xcf\x40\x1a\xc9\x89\x5b\x9d\x50\x7d\xd6\x13\x0a\x1f\xba\x68\x97\x92\xd4\x3e\xda\x72\x1a\x6f\xa7\x10\x19\x56\x9c\x1f\x9d\xb1\x7b\x19\x6e\x54\xfa\x36\x88\x26\xaf\x51\xba\xc7\xa2\xe7\xb8\x55\xa7\x42\xe3\xca\xca\x1f\x20\x43\xd7\x62\xbe\x88\xc0\xf7\xd0\x08\x60\xec\x1f\x5b\xa7\x17\x01\x58\xe9\x3d\x32\xd0\x46\x1d\xe2\x68\x03\x42\x89\xfa\x66\xa3\x90\x62\x27\xcf\x65\xe0\x20\x86\x2f\x94\x59\x5b\x6c\xf2\x84\x77\x17\x39\x73\x14\x38\xf2\x82\x92\x3d\xe6\x8a\x18\x4d\x3e\xe4\x45\xd7\x03\xdf\x1e\xbc\xae\xfa\xc3\x83\x24\xdd\xe1\x4b\xce\x88\x4f\x51\x14\xbd\x47\x4f\xa5\x80\x57\xaf\x7a\xd3\x24\xaf\x24\x7e\x46\x43\x47\xbf\x55\x91\xe9\xfb\x66\x11\x92\x05\x9e\xaf\x64\x60\x92\x4a\x8d\xa1\xa5\xcc\x1c\x55\xed\x01\x89\xa3\xb6\x48\x90\x54\xb3\x86\xb7\x7b\x65\xa1\x9d\x27\xb1\x59\x2d\xa7\x4b\xcb\x1f\x98\xdc\x1c\xe6\x8b\x46\xf0\x7b\x36\x4a\x93\x82\x3b\x67\x0e\xdc\xb2\xdb\x17\xbb\x9a\xd0\x64\xbd\x70\x25\xcc\x24\x13\x10\xa0\x32\x7d\x93\x20\x98\x1f\xd5\xf0\xe6\xe1\x94\x6f\x3f\x56\xc2\x78\x6c\x93\x9c\xf0\xa8\x7a\xff\x7b\xb4\x53\x21\x00\xbe\xa8\x0a\x69\x69\x31\x4c\x52\x66\x44\xe0\x20\x41\xc2\xcb\x9f\xef\x0b\x43\x1e\x84\x7d\x1c\x11\x62\x1a\xa5\x64\x59\x26\xd6\xfd\x14\x28\xd2\xec\x11\xbf\x0b\x3f\xb4\xae\x3c\xdf\x7e\x8b\x72\x91\xcd\x93\x15\x1c\x32\x3d\x0a\x02\x9d\xf3\x63\xff\x8c\x67\xf8\x3c\xc7\x11\xbe\x1d\xda\x82\x38\x38\x00\x46\xa4\xd7\xf8\xf8\x13\xeb\x34\x95\x08\xec\xf1\xeb\x4f\x74\xfc\x54\x3a\xfb\xd5\x8e\x62\x91\xee\x5c\x6f\xe0\x00\x2d\xda\xd4\x22\x95\xc5\xb2\x7d\x5b\xe1\xed\xdf\xae\x54\xba\x8a\x37\xcc\x64\x39\xa7\x1c\x66\x76\x8f\x63\xd2\xc1\xa4\x03\xf9\xef\xa6\x76\x80\x39\x58\x23\x2f\xcc\x4f\xcf\xb7\xb3\xa4\xe5\x89\x7f\x60\x8e\xf1\xe7\xb1\x2a\xe7\x15\xdd\xe5\xc8\x52\x49\x82\xb7\x4b\xa5\x9a\xfa\x1d\xef\x53\x91\x78\x34\x22\x40\x82\x67\x94\xf1\x55\x13\x60\x66\xae\x6d\x86\x36\x0d\xbb\x26\xce\x2a\x2b\xff\x83\x40\xad\xfc\x0f\x9a\x64\xf4\xda\x26\x4a\xe2\xfe\x44\x79\x4b\x78\x97\xd0\xa9\x76\xd4\x66\x07\xfc\xbb\xad\xb9\x96\x45\x2f\x89\x96\x26\x14\xca\xfd\x06\x36\x3d\xc1\x31\xd1\x70\x49\xb2\xb1\xf5\x0d\xed\x7d\xa5\xdd\x1d\xd8\xee\x72\xcb\xe9\x53\x6e\x91\x18\xac\x97\x66\x66\xda\x61\x2f\x42\xe5\x1e\x2f\x61\x03\xdf\xa7\x25\x21\x05\x34\xd0\x10\x3c\x2d\x9a\xee\xb2\xc4\x86\x78\xbb\xff\xbb\x82\xe6\xfc\x3e\x62\x43\xd1\xba\x95\xda\x4e\xf1\x62\xfc\x22\x05\xb5\x02\x57\xf4\x14\x1a\x04\xf1\xae\x6f\xe0\xf3\xc3\xc9\xce\xd6\xf8\x80\x8c\xe4\x47\x91\x89\xfd\x41\xe5\x16\xa7\x5f\xa8\xca\x52\x79\x90\x44\xf9\x1b\x43\x96\x92\x13\xe5\x37\x95\x89\x9d\xaa\xf9\x2b\xee\x7d\xa5\x8c\x9a\x27\x3c\xec\x04\x40\x30\xcc\xaa\x6b\x81\xdf\x58\x8f\xd4\x95\xeb\x76\xb5\xbb\x49\x02\x38\xc3\xdc\x9c\xc3\x0f\xb5\x9c\xe3\xda\x39\x15\xcb\x99\x2e\x09\xa3\x65\x0f\xd2\x38\xb2\xfc\x16\xfd\x2c\x83\x27\xca\xaf\xda\xfc\x50\x59\x93\xfe\xf0\x78\x39\x50\x9b\x1f\x8e\x3d\xbe\xe9\x18\x06\x1b\x23\x7f\x48\xc7\x26\xef\x62\x91\x09\xa4\xcb\xbb\x96\xd9\x17\x95\xd0\x14\x44\x43\xf8\xb3\xaa\x18\x2c\x26\xc9\x64\xc5\x1f\x80\x12\x30\xed\x5d\xcb\xff\x11\x28\xc6\x58\x43\x9f\x60\xae\xdd\x35\xe9\x62\x12\xe3\xa4\x15\x7c\xa7\xc6\x7d\xfa\x2a\x6f\x94\xf4\x27\x34\x1f\x96\x7e\x0c\xd5\x53\x12\x77\x72\x75\x20\x67\x0b\x53\x44\x79\x38\x8a\x6c\x05\x0c\x77\x42\x81\xe1\x4e\xa8\x36\x41\x96\x5b\x93\xc6\x19\x69\x8c\x20\x91\x7c\x6f\xac\x54\xa9\x8e\x29\x15\xb1\x0d\x1a\x14\xfe\x21\x0c\xa3\xd4\xa7\x25\x6c\x5f\x09\xe3\x5e\xd8\x35\x2e\x09\x14\xf5\x60\x5d\xe1\xdc\x3a\x77\xf7\xbe\xd2\x4e\xed\x52\x64\x0f\x84\xc8\x3d\xf6\x4d\x7b\x29\x42\x27\x8d\x78\x4a\xf1\x2b\xba\x49\xbc\x12\x92\x5b\x7d\x79\x3f\x90\x7f\x38\x81\x83\x9a\x2f\x5c\x32\x3b\xb2\x26\x2e\xf2\x6c\x8a\x6e\x86\x1d\x97\x94\xba\xcb\xbb\x1a\x70\x77\x89\xc2\x2e\x15\x8f\x89\xfd\xc7\x1d\x35\x01\xfa\x69\xa2\x13\x06\x5d\x7b\x3b\xef\xcd\x51\x93\x61\x19\x34\xb6\x54\xa6\x80\xb7\xc6\x9f\x2b\xd1\x76\xd7\xc4\x4f\x79\xbe\xee\x15\x8d\xec\x98\x5a\xf7\x1c\x83\x4d\xad\x78\xcf\x89\x1c\x62\xf2\x87\x3b\xca\x81\xeb\x0a\x35\x4e\x04\x5c\x4d\xb1\x27\x0a\x45\xa7\xf9\x40\x44\xd4\x74\x25\xf0\x73\xfd\x22\x52\x0f\x01\x60\xb6\x9e\x7f\x9e\x03\xc6\x5b\x88\x50\xd1\x98\xe7\x11\x71\x82\x91\xfb\xa6\xf9\xf3\x26\x96\x9a\xf8\xaa\x79\xc7\xb8\x4d\x0a\xf2\x44\x86\xa0\x0e\x18\x6a\x67\x79\x92\x62\x92\xee\xe1\x93\xe0\x2c\x56\x35\x5f\x34\x2b\x3c\x9a\xd4\xa3\xe8\x70\x6b\x10\x86\xe0\xcf\x0a\x7b\x9e\x27\xa3\x11\x54\xe8\xf7\xf8\x1a\xb2\xef\x62\x9c\xab\xf4\x29\xa3\x28\x84\x30\x81\x54\x88\x51\x7b\x96\x05\x43\x6d\x5f\xd1\x73\x94\x85\xd6\x4b\x56\x6c\x6e\xc2\x88\x2b\xb9\x78\x69\xdb\x3b\x8a\xb0\x00\xe7\x54\x31\x71\xf2\x44\x94\x91\x4d\x47\x36\x2f\x58\xe1\x83\x65\x95\x69\x95\x88\xc4\xf2\xfd\x40\x1f\xb1\x5d\xcd\x88\x5c\x3f\xe1\xe9\xd0\xd8\x06\x70\x80\x32\x86\x54\x90\x81\x4f\x28\x62\xca\x8a\x4d\xf3\x6c\x42\xfb\xf2\x7a\xfa\xcf\x6d\x6d\x59\xd7\x28\xdf\xc3\x20\x48\xc9\xd0\x9c\x17\x7e\xf9\xb0\xe2\xa6\xaf\x0e\x90\x6b\xb5\xf3\x75\x7e\xba\x9d\x5a\xd3\x83\x8a\xb7\xf3\x1f\x9f\x9d\xe5\xe1\x81\x0b\x90\x30\x5b\x24\x48\x29\xc3\xf6\x65\x0d\x2d\x3d\xa7\xa0\xa5\x5a\x99\xf0\xbf\x7b\xf1\x7f\xa2\x9f\x72\x26\xf7\xbb\xc4\xb5\xf9\x4c\x93\x5b\x22\xe8\x3d\x21\x88\x22\x78\x22\xc4\xba\xac\xa0\xcf\x17\x35\x56\xcd\x4b\xfb\xdb\xc9\xc8\xa6\xcc\x30\xf1\x26\x90\x9f\x04\x8a\xaf\xf5\x89\x6a\xa4\x87\xb1\x5d\x21\x6d\xe4\x35\xe5\xdb\x77\x8e\x22\x55\xfe\xdc\x80\xbf\x6f\x67\xab\x36\x8a\x5a\x4a\x5c\x43\x79\x49\xd7\x63\xec\x32\xf5\x18\x24\x51\x2f\x8c\xfb\xf2\x30\x6c\x4a\x86\xbb\x12\x87\x32\xed\x2f\x93\xf4\x53\x33\x7c\x5c\x99\x58\x71\xb9\x16\x6f\x8f\x5d\xb4\xf0\x66\xd8\x51\x13\xf5\x29\x54\x13\xb1\xcf\x9e\xc1\xf1\xe7\xec\x99\xcb\x1d\x18\x0f\x85\xf0\x0e\x61\xed\xfb\x48\x61\x85\xb4\x58\x3e\x14\x02\xf1\xef\x55\x54\xa7\x94\x81\xce\xbf\x1d\x7b\x79\x8f\xeb\x63\x0f\xf9\x67\xb3\x47\xa6\x0b\x04\x0f\x79\xa6\xf6\x33\x74\xbb\xc8\xd9\xa0\xd0\xec\x22\xda\xfd\x02\x0a\x3e\x85\xed\x4c\x82\x94\xf2\x2b\x68\xde\xfe\xdd\xaf\x76\x3c\x77\xe4\x01\x12\x55\x70\x94\x89\xf2\xeb\xd0\x04\x7f\x73\xac\x7c\x6e\x5a\x48\x1b\x40\xea\x3a\x44\x8f\x84\x2a\xc5\x59\x3c\xab\x58\xf6\xd0\xfe\xcb\xc6\x71\x18\x5e\x44\x24\xb7\x69\x7a\x4a\xc7\x51\x37\x3a\x81\x15\xc1\x66\x7a\x4f\xb1\x9d\xde\xd1\x0a\x6e\x97\x81\x92\x93\xed\x48\x23\x0e\xd3\x1e\xc5\xfd\x48\x5b\x8e\x53\x54\xc6\x9f\x1b\xe4\x25\x67\xda\x2b\x26\x2a\x2c\xf3\x20\xd8\xda\x1a\xcf\x29\x3e\xd7\x4d\x94\x93\x8c\xf7\xdf\x3d\xda\xcd\xff\x65\xb9\x58\x6f\x94\xc1\x4e\xfb\x6e\xd3\x46\x0b\x15\x02\xe9\xfc\x79\xfc\x8c\xe7\xba\x27\x51\x98\x87\xdd\xd0\xc4\xd9\x84\x8f\xd6\xdf\xc5\xe8\xb1\x06\x39\xfd\x2a\x5e\xf6\x87\x5a\x00\xdf\xa6\x4f\x28\x74\xd2\x76\xe4\x8e\x28\x3c\x4d\xa1\x01\x8d\x8a\x5c\x9b\x0a\x0b\xd8\xda\x77\x12\x60\x1a\x39\x2f\xd3\x33\x70\x02\x3c\xbc\xee\x31\xe4\x9c\x31\xa3\x7a\xb4\x13\x04\x16\x9a\xaa\x3f\xff\x5f\x77\x3c\xaf\x73\x6a\xdd\x4b\x17\x9c\xa6\x89\xe7\xb0\xda\x3a\x61\x2d\xe7\x94\x0b\x81\xdd\x18\x30\xc2\x00\x79\xc7\x66\x4d\xa1\xe9\xb5\xd7\xca\xa8\x62\x94\xda\x81\x8d\x33\x91\xe9\x65\x09\x5b\xe5\x6b\x56\x05\x76\x0e\xc2\xee\x03\x2d\xa7\x7e\x7c\x19\xf3\xdf\x55\x4a\xca\x91\x12\xf7\xfb\xf2\x21\x30\xb8\x9f\x07\xbe\x39\xfb\x39\xee\x89\x7f\x1d\xd1\x84\xe0\xae\x68\x40\xf8\xd7\x83\x07\xc3\xf6\x28\xb5\x4b\x3f\xdf\x5e\xf8\xfb\xf4\x8a\xb1\x42\x61\xdf\x8f\xa5\xfb\x1e\xb6\x0a\xc4\xeb\x1b\x68\x2a\xca\x48\x6d\xff\x9a\x4b\x50\x54\x27\xf9\xd1\x75\x6a\xed\x08\xb6\x8b\xe0\x0c\x38\x74\x0e\x6d\x49\xfa\x5f\xda\xcf\xc5\xb2\xc3\xc8\xac\x25\x7c\x68\xfd\xea\x2f\xf1\x46\x75\x9b\xb1\x21\x88\x71\xee\x69\x9d\x98\x43\xe3\xd6\x2f\xcb\x16\xf8\x21\x79\xc2\xe0\xf5\xff\x25\x16\x2f\x22\xdf\xc3\x63\x25\xcb\x21\x8e\x09\x74\xf5\xbf\xfe\x9d\x4e\xcb\xa9\x89\x3e\x46\x4d\x54\x3c\xcb\x55\x7a\xe9\x78\xf8\x2b\xb4\x0e\x51\x6e\xdc\x49\x30\x51\xec\x1c\x8f\x76\xca\x49\x82\x05\x0e\x42\x3b\x8a\x98\xd7\x20\xa5\x84\x28\xee\x43\xec\xbe\xe8\xea\x5f\x57\x18\xb7\x1b\x5a\x55\xe1\x85\x4e\x03\x5b\xc4\xf4\x63\x1b\x45\xa1\x9c\x09\x58\xa0\x8f\x76\x94\xb1\xc5\xa3\xeb\x8a\x73\x95\x24\x69\xa6\x4d\x05\x4e\xf3\xce\x84\xf7\x7f\x13\x67\x09\x5f\x60\x08\xc5\x43\xf3\x7e\x45\xdd\xd4\x0e\x93\x15\xc9\x05\x9c\xa8\xfc\xfc\xb4\x13\x95\x7f\xce\x03\xb4\xe2\x70\xa9\xcc\x1c\xc2\x24\x0e\xb3\xe1\xa4\xc2\x22\x6d\xef\x78\x61\xe2\xcf\xc6\xaa\xf3\x82\x84\x4b\xa4\xcf\xb7\x06\x4c\x65\xc8\x32\x34\x71\xb1\x64\xba\x79\x91\x7a\x7d\x10\xc4\x3b\xbc\xb7\xf3\x45\x83\x8e\x3c\xd6\x50\x37\x24\x2e\xac\xf6\x9f\x51\x02\x4f\x7e\xeb\x79\xf9\xeb\x33\x3b\x7c\xf6\x70\x88\x67\x08\xee\xff\xcf\x31\x56\x38\x18\xaf\xa0\xa2\x80\x77\x3e\xd5\x51\x64\xc2\x2b\x3a\x17\xb9\xe7\xfa\xe1\xa4\x70\x31\xe5\x9b\xf3\x3f\xa0\x83\x4b\xc2\x3b\x5a\x54\x2a\x17\x59\x70\x1a\xc5\xf4\x1e\x45\x99\xc7\x83\xe0\x07\x36\x4c\xb9\xbd\xee\x70\x22\xe5\x5a\x04\x83\xfc\xd3\xb1\xdf\x4a\xae\xd7\xfa\x43\xbb\xe7\xda\x8b\x69\xe8\x04\x37\x90\x8a\x7c\x57\xb5\xbf\xbe\x5b\x3b\x63\x7e\xa1\x9d\x74\xbb\x45\xea\xfa\xf1\x82\x03\x53\xd9\xf9\x39\xd7\x5c\x1d\xa5\xa1\x32\x55\xe2\x37\xc4\x17\xb5\x9b\x21\xab\x96\xa4\x48\x73\x8e\x47\x11\x84\x7c\xa8\x6c\x64\xb8\x9c\x26\x47\xcc\xd6\x39\x5a\x1e\x7f\xc9\x8a\x4d\x57\x07\x36\x1a\xca\xfd\xe1\x39\x26\xd7\xfd\x33\x4d\x76\xfc\x5b\xce\x53\xf3\x00\x8d\x96\xcb\xc4\xe7\xa7\x79\x95\xde\xd4\x05\xfc\x07\x3a\x5a\x13\x0e\xdd\x5b\xd1\xc6\xf5\x85\x8c\xc7\x28\x92\xc2\x3a\xe4\xb3\x0a\x48\x15\x9f\x60\x8c\xd2\x64\x18\xc6\x32\x05\x69\xd6\xff\xeb\x27\x3a\xae\xa2\xf3\xaf\x9f\x58\xaf\xdb\x58\x2e\xb4\xc3\x78\xc5\x66\x79\xd8\x37\xb9\x9d\xf0\x9d\xd5\x0d\x6c\xd9\xc8\x26\x8f\x2a\x2d\xb1\x7a\x73\x8c\xea\x13\x51\x92\xd9\x74\x52\x39\xf5\xa3\xc5\x8a\x28\xf0\x2a\x66\x8d\x38\xb6\xd2\x64\x03\x4d\xe4\xf4\x7d\x2b\xc0\x6b\x49\xc1\x9e\x73\x78\xcc\xd3\xbc\x29\x23\x72\x7a\xa2\xe3\x69\xd7\x67\xc7\x9a\x11\x58\xee\xc9\x02\xa7\x2a\x87\x41\x0a\x65\x0f\x2b\x5c\xfe\x73\x18\x70\xf6\x0f\x0e\xaa\x6d\xf1\xf2\x4e\x81\x42\xb8\x8d\x93\x03\x30\x95\x43\x08\x58\x51\xfa\x9e\x58\x77\x94\xbc\x9b\x4f\x50\x0c\x88\x5b\x79\x72\xdd\xe3\xf3\x26\x3b\x34\x1a\x08\x58\x0f\x53\x37\x05\xdd\xbe\x1b\xba\xda\x74\x37\x50\x7d\xf8\xdb\xc4\xcd\x70\x2a\x0a\x73\x73\x7b\xee\x91\x23\x3d\x6e\x67\x72\xbd\xf5\xf5\x6f\x38\xed\x7f\xbf\xae\x9f\xec\x94\x47\x17\x46\x9a\xc1\x12\xb8\x65\x90\x04\x10\xde\xb0\x36\x07\x76\xd2\xcf\x02\xdf\x17\xbf\x42\xc0\x37\xe4\x91\x13\xb5\x63\x61\x7e\xba\x9c\x55\x8b\x64\xd6\x42\x7f\x40\xcb\x19\xf0\xe7\xe0\xef\xf3\x0f\xdb\xd8\xa6\xfd\x10\x6a\x18\xcb\x79\x68\x17\x6d\x2f\x0d\x5f\x5f\xe2\x9d\x54\x41\x7f\x24\x6d\x3e\x5b\x23\xbf\x79\x19\x92\x3c\xec\xa2\xb6\x2a\x96\x57\xbe\x77\xcd\x96\xd8\x48\xba\x6e\xd6\x76\xe3\xfd\x33\x7b\xcb\x10\x72\x94\x86\xcc\xff\x9a\xf1\x69\x91\xd7\xb1\x6e\x0c\x70\x47\xc6\x93\x1a\x84\x20\x54\x7e\xaf\xd0\x83\xa4\x0c\xfb\x86\x19\xc2\xc8\xd6\xc5\x1b\x3e\x9d\xbb\x70\x5f\xe9\xfe\xd7\xcd\xc8\xc4\x36\xb3\x3b\xfc\xae\xb3\xa1\xe3\xb8\x93\x3a\x27\xfa\xcf\x34\xc4\x08\x47\xbf\xd4\x48\xc5\x2b\x7c\xce\x62\x99\xdd\xad\x3d\xfe\x0b\xb4\xa2\xe3\x3c\x91\x16\xb7\xc0\x34\x3f\x1d\x2b\x43\x92\x4f\x2b\xe5\x8c\xd8\xae\x7e\x85\xbe\xdb\x99\x90\x28\x10\x3b\x35\xb8\x5c\xf8\x33\x3f\xed\x45\x9e\xca\xf9\x2d\xeb\x58\x89\x72\x5d\xc6\xba\xe1\xf8\x87\x66\x2a\x93\xad\x03\x2d\xba\xf5\x0e\xb2\x1f\x24\x71\x97\x09\x5d\x82\x20\xfb\x1d\x82\xe9\xa3\xb8\x70\x43\xa9\x92\x3e\x08\xd1\x74\x66\xa8\x68\xa5\xfe\x23\x08\x81\xa4\x76\x55\xae\x19\x2c\xee\x9b\xaa\x20\xc9\x58\x09\x8c\x22\x63\x1c\x51\xe4\xdb\x41\x91\x98\xc8\x01\x60\x9f\x61\x82\x52\x0d\x34\xb6\x6b\x57\x7b\x25\xcc\xc2\x3c\x71\x52\x89\x2c\x57\xd8\x51\xb6\x75\x87\xf5\x2c\xbf\xd3\x88\x29\x21\xcf\x9e\x96\x8a\x0d\xbf\xe0\x59\x24\xc3\x56\x29\x37\xe5\x6b\x8f\xd0\x98\xf2\x49\x4e\x90\x58\x8d\x23\xa0\x80\xf4\x97\x9e\x58\x57\xf3\xa4\x45\x81\x10\x5a\xc9\x9b\x34\xa2\xba\x38\x80\x48\xe6\x07\x3a\xb6\xa5\x0d\x6b\xc1\xab\x23\x96\xbb\xa2\xa8\x23\xd2\xdb\x75\x87\x4f\xf9\xa0\x38\xc8\xae\x36\x4b\x37\x77\x4d\x14\xc9\x21\x89\xe4\xe5\x3d\x6c\x7a\x7c\xa1\x8c\x15\x8a\x18\x86\xaf\xe8\x11\xb2\xf7\x4c\xa0\xda\x17\xf5\xf2\xd2\xec\x6c\x3b\x8c\x97\xc2\x38\xcc\xc3\x56\x65\xe1\xf9\xa2\x69\x1d\x78\x3e\x3b\xdb\xce\x06\xc9\x28\xd3\xdb\x58\x15\x0d\xd1\xc0\xb8\xf9\x5a\xfb\x1f\xcc\xec\x7e\x79\xf7\xde\x85\x89\x72\x4a\x01\xdc\x0d\x6f\x6b\x01\xb4\xd1\xf7\xcb\xfa\xaa\x9b\x1e\x0d\x4d\x88\xa2\x1d\xf2\xcf\x2f\x95\xd0\xe9\x97\x4a\xfe\x69\x94\x26\x4b\x61\xae\xfb\xcd\x5f\x80\xed\xc0\x1e\xba\x81\x77\xf3\x7f\x9b\xee\x59\xbc\x75\x95\x38\xc6\xbf\x1a\x7b\x48\xcd\x09\x15\x6c\x9a\x3c\x99\xaa\x44\xaf\x4a\xff\xec\xb8\xd2\xb3\xbc\xa0\x58\xae\xda\x9e\xe3\xa8\x52\x7d\x1a\x15\x31\xdb\xbe\xb8\xb3\xfd\xba\x1a\x8e\xeb\xb5\x2e\xa0\x6c\x7d\xfd\xc4\x81\xc4\x80\x74\x60\xdb\x67\xad\x42\xc8\x04\xee\x26\x88\xe2\xaa\x59\xb6\x13\x15\x98\x81\x47\xf6\xdc\xab\x7a\x1a\x35\x38\xb6\x51\x3d\xa1\xcb\x42\x09\x98\x54\x9f\x28\x20\xfd\x27\xf5\x16\xe4\x2b\x0b\xed\xd4\xc4\x12\xba\x3a\x0d\x36\xe5\xbf\xdd\x54\xe9\x18\x26\x59\x3e\x41\x6b\x08\x6f\xe1\x12\x22\x0b\xe7\x73\xe0\x0d\x48\x7f\xe0\xc4\x01\x48\x0e\x6b\x31\x8c\xc2\x7c\x8d\x54\x80\x90\x04\xe0\xb4\xe3\xcf\x0a\xeb\x27\x6d\x20\xaf\x76\xc2\xe7\x3a\x5f\x28\xa0\xcb\xd2\x28\xc2\xcf\x21\x6f\x66\xac\x19\x5f\x38\xfa\x51\xb7\x08\xb3\x90\x15\xbf\x18\xf9\x12\x54\x60\x30\x0d\x9d\xec\x6e\x52\xf4\x21\x5f\x88\xb5\x76\x42\x69\x61\x9c\x18\xfb\xc6\xcb\x92\xc9\xf2\x45\x13\x89\x92\x89\x43\x63\x94\x01\x96\x4c\x39\x09\xe6\x87\xf9\x0a\xfd\x45\xc4\x9b\x5c\x1a\xe6\x0b\xa0\x48\x78\x36\xbf\xf6\x5a\x5b\x1f\x14\x94\xc1\x8b\x80\x3a\x9d\x01\x38\x36\x98\x08\x87\xc4\x89\x1d\x0c\x5d\x1a\xb8\xdb\xe9\xc9\x93\xe8\x10\xab\xac\xd2\x53\xe0\xf3\xa5\xc0\xfb\xea\x6d\x5b\xf7\x99\xda\x31\x8a\xe2\x1c\x54\xa7\x3c\x30\xf1\x87\xbe\x43\x0b\x14\xe9\xf8\x07\x00\x99\x22\xd2\xba\x4b\x67\x11\x72\x83\xbf\xd6\x15\xc5\x0f\xe8\x54\x65\x8b\x25\xb5\x9d\xbf\x33\x56\x0d\xc3\x93\x68\x24\x60\x9a\xfe\x1f\x81\x36\x4e\x39\xa7\x5d\x94\x2e\x69\x82\xeb\x41\xaa\x25\xe1\x2b\x7f\x8a\x19\x88\x95\xc5\xcc\x57\x04\xc4\x7f\x40\x61\x1f\x1a\x02\x5f\x06\x65\x00\xc9\xfe\x07\x78\xfd\x38\xd5\xe5\x2c\x44\xdc\x7a\x29\x50\x65\x8d\x0f\x02\xdf\x9b\x3d\xd4\x04\x0f\x1a\x25\x69\x9e\x1a\xe7\xed\x2a\xca\xd0\xf4\x74\xe2\x31\xfb\x33\x1e\xc0\x4f\x3e\xe2\x19\x56\x02\xc7\x2d\x33\x1c\x95\x9e\xc7\xca\xe1\x8b\x3a\x31\xf2\x95\x85\x76\x31\x1a\x58\xb3\xc2\xfd\x11\xf6\x5a\x0c\x3c\xa9\xea\xac\x83\x86\x76\x53\x2a\x17\xbe\x61\x7b\x68\xf2\x21\x9b\xd8\xd6\xf1\x9c\x62\x46\x30\xe1\xcd\x00\xfc\x81\x0c\x77\x3b\x8a\xdc\xec\x76\xa3\x1c\x4e\x8a\x9c\x6f\x7a\x07\xfd\x49\x91\xc7\x2e\x7f\x93\x51\x59\x81\x92\x7e\x85\x6c\x97\xfb\x21\x9f\xb9\x04\x1a\x39\x35\x56\x0d\xdd\xde\xa8\xe5\x0b\x6e\xa7\x15\x03\xe2\xb4\xd6\xca\x18\x0d\xa6\x14\x72\x6e\x67\xc7\x0b\xbd\x9c\xa9\x68\x4f\x94\xaf\x1a\x21\x35\xbe\x1d\xb5\xa8\x4f\x6b\x7b\xe0\x6b\xaf\xb5\xe3\x84\x8c\x23\x5b\xae\xb8\x74\x56\xc1\x0d\x76\xd0\x98\x39\xaf\x38\x7d\x5e\x2b\x05\x53\x9b\xda\x61\x12\xaf\x4d\xd0\x02\x74\x91\xde\x9c\xd2\xe7\x2f\x97\x04\xa2\xc3\x1f\x36\xc6\x49\x8b\x36\x4d\x4d\xab\xa2\x9d\x87\x75\x20\x1e\xf2\x5a\x66\xd6\x66\x66\xb5\xa5\x22\xea\xa3\x78\x99\x7c\xa1\x24\x48\xa2\x24\x59\xce\xa6\x14\xa5\x0f\xab\x59\xf8\x7d\x9e\xd1\xf0\xd7\x63\x2f\xd9\x72\x1c\xaf\x08\x15\xfe\x2f\xc7\xff\xff\xfb\x95\xb1\x92\xee\xb2\x5d\xb2\xe4\x69\xed\xe3\x0b\x2e\xd8\xf0\x45\xf0\x94\xea\xb4\x2d\xb1\xdf\xa1\x17\x92\x81\x96\x96\x28\x00\x37\xac\x2e\x52\xef\x1c\x8a\xf2\x9a\x44\x4d\xfe\x7c\xbb\xa0\x7d\x93\x81\x5d\x16\xec\x0b\x04\xa9\x5d\xf0\xf8\xd2\x7e\x4e\xb0\xef\x04\x8f\xbb\x3c\x8e\xd2\xf9\x9e\xc6\xc7\x9e\x51\xf8\x58\xaf\xab\x6d\x96\x96\xc2\x9e\x59\x09\xd9\x7c\xd2\xe9\xd2\x3a\x44\xd6\x54\xc7\x53\xe4\x6e\x2b\xcd\xc0\x6f\x16\x66\xd9\xd2\xcc\x12\xec\x26\x6d\xde\x7c\xa1\xc3\x1a\x76\xe1\xe3\x0b\xa5\x88\xd7\x4d\xa2\x28\x8c\xa1\xf3\x2c\x29\x73\xcb\xc9\x42\x5e\x18\x3f\xec\x06\x60\xa5\x20\x09\x69\xc9\x0e\x2a\xae\xe0\xde\x8e\xb0\x2e\x8e\x46\x66\xaf\xb6\x6b\x87\xd6\x44\x93\xde\x24\x95\x53\x07\x01\x5e\xf9\x6e\xfc\x39\x85\x7e\x3e\xaa\xa4\xef\x7a\x49\xb1\x48\xe1\x70\xb9\x08\x90\x65\x3c\x04\x86\x1a\x5f\xac\x3f\xe3\xd1\x58\x16\x8d\xd3\x94\xe7\x03\x68\x7c\x4c\xec\xe5\x8b\x26\xa9\x9f\x9e\x5d\x0a\xbb\xa1\x28\x1a\xa1\x9d\x75\x41\x01\xb4\x2e\xa8\x4e\xb7\x3d\x50\x6e\xce\x53\x5e\x38\xe3\xf2\x58\x29\x60\xa3\xb1\x8c\xd8\x0a\x5d\x56\x1c\x06\xdc\x73\x43\xb1\xfe\x6c\x93\x2d\x5c\x98\x1a\x80\xf3\xc5\xd1\x48\xdd\xf4\x71\x45\x68\x19\x86\xbd\x9e\x59\xab\x46\x05\x3a\x0e\xd5\x78\x07\x1b\xe7\x3f\x4b\x3f\xe8\x92\xce\x3d\xca\xa7\xa8\x7c\x04\x74\x1d\x99\xd7\x2b\xd5\x16\x9c\x5b\x1e\x18\x25\xd4\x70\xd4\xd9\x9d\x46\x74\xf9\xd4\xd8\x4b\xff\x58\x81\xbd\xfe\x10\x18\x66\xcc\x97\x7f\x46\x43\x80\xca\xfc\x2d\x3a\xb4\x45\x47\x83\x5e\x27\xa6\xfc\xc3\xeb\x74\x1a\x23\xd9\xba\x03\x21\x0a\x57\x97\xf4\xa3\xb6\x8e\xd7\x28\x5d\x02\x5f\xa8\x7e\x8f\xf7\x34\xac\x2f\x3e\x68\x11\x8b\x7c\x44\x89\x31\x9e\xa4\x85\x23\xc8\x29\x45\x38\xd2\xc6\x66\x40\x81\x82\xd8\x72\x95\x51\x0d\x07\x03\x24\xdd\x86\x05\x7e\x18\xc1\x00\x0e\xb0\xeb\x81\x92\x07\xfa\xc2\x61\x51\x86\x45\x16\x85\x43\xc9\x6c\xf1\x3c\x9c\xd9\x4a\xf3\x47\x61\x49\x6e\x2b\x6f\xa6\x6e\x32\x1c\x99\x3c\x0d\x13\x40\x0d\x70\xf3\xfc\xd3\x9c\x38\x8d\x7d\x1f\xad\x5e\xa1\xdd\x37\xdd\x5e\xb4\x79\x6e\x01\xe9\xc5\x8e\x71\x63\xac\xba\x2a\x5c\x44\x44\x47\x09\x92\xee\x98\xda\x9f\xd0\x40\x3a\xa1\x70\xa7\xc0\xb5\xad\xe6\x65\xb4\x6b\x57\x3b\x5b\xb5\x86\x41\x1e\x8e\x4f\xa9\xa8\x20\x0d\xdd\xc8\xf2\xc1\x22\x7b\x60\xca\x13\xa1\x26\xb4\xcf\x02\x4e\x57\x67\x0f\xe0\x68\x4b\x9f\x6b\xaa\xe5\xe7\xaa\x99\xde\x37\x45\xbf\x08\x63\x2d\xec\x74\x52\x09\x3b\x9d\x54\x1a\x34\xdd\xc8\xa6\xcb\x2d\xc5\x61\x7b\x0f\x5b\x0f\x5f\xb8\xaa\xff\xd0\xc4\x21\x40\xc4\x52\x1f\xa0\x1f\x93\xb2\xbf\x7f\x49\xa3\xd4\xae\x84\x49\x91\x45\xa4\x96\x37\xe7\x9d\xa8\xe7\xa5\xcb\x0e\x28\x31\xa6\xf8\x4d\x94\x81\x80\xc4\x62\x08\x6e\xc5\xf9\x8d\x7f\x3d\xa0\xe5\xc2\x3f\xa6\xc0\xb9\x26\x5d\x6a\x29\xc7\x68\x46\xdf\x0a\x0f\x7d\xeb\x06\xb2\xf7\x95\x76\xcf\x76\x5f\x6c\xa9\x28\xe6\xcd\xc0\xd3\x58\xdf\xac\x1d\x83\xbb\x76\xb5\xf3\xd4\xc4\xd9\x52\x92\x0e\x69\xdb\xc1\x2e\xfc\x19\xee\x8d\x2f\xee\x9b\x91\x1a\x9b\xc7\x66\xc2\x33\x35\x20\x8f\x5a\x61\x0f\xb0\x90\x90\xca\xbf\x7a\x76\xc9\x9a\x1c\x8a\x08\x5c\xcc\xa5\x3d\x48\x0a\xbb\x5e\xfc\x25\x0d\xbb\x83\xc9\x8a\x8d\xb2\x9a\xb0\x14\x02\xca\xe4\xa5\xaf\x12\xe3\xe5\xa7\x14\x06\x9d\x22\x62\x9b\xb5\x94\xcc\xab\x42\xf4\x5f\x70\xa0\x17\x13\x45\xb9\x8d\xa8\x76\xef\x76\xd3\x5f\xfd\x25\xa7\xb2\x48\x7f\x5f\x78\xfa\x4a\x72\xdc\x76\x41\x0d\x9d\xd9\xcb\xbb\xdb\x29\xec\xad\x7c\xe1\x6a\x9d\x99\x98\x7d\x8a\x8c\x05\xbd\x45\xd1\x1c\x6f\x62\x2c\x47\x84\x66\x2b\x9f\x5d\xd7\x6e\xf9\xb3\xd6\xb4\xed\x25\xa3\xdc\xf6\x76\x28\xab\x41\x04\x27\x08\x03\x3e\x42\x42\x27\x4b\xd3\xe3\x3f\x6f\xd1\x96\x28\xcb\x97\xbe\x08\xf5\x87\xba\xd7\x1c\xd9\x8d\x13\xac\xd7\x75\x8a\xce\x04\xaa\x53\x74\xc6\x71\x95\x81\xd3\x49\x10\xb2\x61\x93\x02\xba\x82\x3f\xbb\xf1\x18\x26\x51\x4f\xb9\x02\x1d\x52\x1e\x7c\xb7\x30\xf5\xc4\xad\x9e\xe6\x3e\x6e\xf9\x58\x53\x55\x63\x18\x66\x1c\x99\x39\xed\xba\xd9\x59\xe1\xa3\xd3\x9f\x05\xb7\xf1\xed\xa6\xc0\x78\xa1\x9d\x25\x11\x87\x68\xae\xd2\xaa\x84\xe1\x7d\x58\x3c\x8a\x4c\xd7\xf6\x88\xba\x8a\xdb\x7c\x0b\x67\xa5\x33\xd7\x75\xb5\x97\xf7\x31\x59\xf0\x53\x9f\x35\x34\xd1\xda\xf6\x40\xd7\x8a\x7a\x32\x56\x3f\x82\x65\xfe\xec\xe6\xe4\x8a\x8d\xc3\x2e\x97\x6c\x90\x09\xa3\xc6\x23\x9d\x5c\x05\x1f\xbb\x85\x9d\x00\x91\x49\x96\x1b\x12\x36\x71\xa1\xad\xa0\x9e\x34\x1a\xaa\x0e\x35\x6f\xf7\xc2\x2c\x49\x7b\xce\xff\x15\xc1\xc2\x9b\x34\x67\xf8\xf3\x56\xd7\x82\x72\xa2\xfe\xc2\x03\x34\xf5\x1c\xbe\x6d\x7e\xda\x45\xb8\x9e\x91\xf1\xc7\x14\x32\xb8\x04\xc8\xdd\xc7\x47\x5a\x62\xff\x74\xa0\x45\x55\x71\x7a\xa2\x7c\x71\x52\x11\xed\x70\x94\xe4\x56\xb6\x5f\x56\xc1\x27\xcf\xd5\x83\x0a\x75\xdf\x02\x59\xda\x0b\xd5\x88\x97\xc2\x4d\xa5\x0e\xc5\xd2\x3b\x52\xfb\x7c\xb6\xa2\x3a\x2f\x79\x34\x1f\xe4\x42\x46\x56\x80\x89\x09\xd4\x8a\x51\x21\x79\xa8\xe3\xc1\x86\x30\xa1\x0f\x2d\xc3\x60\x71\x90\xdf\x50\x72\x5c\x20\x87\xcb\x7f\x8c\x15\xd8\xf8\x02\xc5\x91\x9b\xd7\x03\x5d\x04\x8a\x73\x93\x95\x19\x7d\x6b\x6e\xae\x22\x29\x2a\x5a\xa3\x32\x65\x06\x45\x4a\xf6\x02\xce\xe2\xff\xa4\x0a\xc9\x4e\x2a\xd8\x52\xcf\xe4\xe6\x61\xef\xee\x77\x9c\x76\x03\x64\x6e\x1b\x81\xb7\x4c\x44\xbf\x5f\x7c\xbd\x7c\x10\xf7\x67\xb8\x63\x34\x23\xd1\x22\x53\x68\xac\x19\xa7\x57\x43\x9b\x8f\xcc\x5d\xc5\x83\xff\x96\xf6\x9d\xd9\x50\x5c\x97\x5e\x12\x27\x2b\x6c\x88\x82\x50\xfa\xa7\x98\x22\x7c\xa1\x36\x77\xf4\x5c\x93\x34\x7b\x82\xbe\x12\x91\x66\xab\xe3\x81\x3f\xba\xc1\x76\x17\xa5\x1e\x77\xf2\x2a\x62\x5b\xe0\xf5\xfe\x58\x03\x59\xaa\x7d\xe5\xf8\xe0\xd7\xdf\x0e\x94\x56\x00\xd7\x52\x10\x40\xb0\xe5\x35\xea\x1e\x70\x61\xc3\x92\x1c\x8f\xbd\xca\xe8\x77\xc6\xca\x31\xf4\x8f\x49\xb2\x04\x3f\x74\x45\xc5\xaf\x9f\xd5\x4e\xf3\x5d\xbb\xda\xab\x61\xd4\x6b\x29\xe3\x10\x14\xbf\xf9\x73\xad\xc1\x3e\x3f\xad\xf1\x17\x3d\x6d\x16\x73\x2a\xf0\xfa\x35\x75\xe7\x82\x99\xbd\x6d\x33\x1a\x59\xf2\x55\x55\x42\x07\xe7\x03\x0d\xbc\x96\x48\x69\x90\xe4\x36\x9a\x6c\x3d\xff\xbc\xf7\xa6\x9f\x9b\xc3\xf8\xef\x7c\x82\x62\x4a\x84\xc7\xcc\x75\x47\x20\x79\xd5\x33\x8b\x6d\x5a\xc6\x82\xae\x47\x88\xb0\xfc\xc6\xd8\xe7\x9d\x37\xf4\xf9\xb6\x6a\x42\xc9\xeb\xd1\x3b\x41\x37\x91\x3f\xab\x1a\x4f\xd7\xa4\x0f\xab\xf2\x0f\xaa\x86\x58\x20\x87\xc6\xfe\xe1\x27\x08\x7d\x86\x43\x81\x69\x0a\xe8\x25\x70\x57\x15\xd1\xfc\x4f\x68\x11\x60\xba\xc0\x44\x04\x47\xca\x36\x64\x0f\x0c\x0d\xa2\xb3\x0d\xc3\xb3\x53\xa9\x17\xbc\xaf\x7c\x2e\x86\x26\xcf\x45\xb8\x1b\x39\xe0\x71\x9c\x1c\x7c\xd1\xa0\x7b\x3c\x4a\x6d\x6e\x0e\x50\x25\x5b\xb6\x04\x4f\x83\xbc\x10\x3c\xa7\x22\xa9\x21\x51\xc0\x01\x8d\x05\x0b\x06\xe7\xce\x8e\x75\x5f\x07\xe1\x56\x39\xb2\x8d\x6b\x4a\x46\xa5\x9b\x26\x59\x86\x82\x17\x96\xe8\x4e\x06\x51\xa0\xae\x71\x05\xd3\x5c\xca\x6f\x9e\xf0\xc9\x9b\xa6\xb0\x25\x7d\x15\x66\x29\x8c\x4d\xdc\x0d\x4d\xf4\x58\x39\x78\xb8\xdf\x5b\xbc\x91\x3b\x0e\x9a\x07\xe8\x6f\x23\xf0\x1e\xea\x6b\x47\x34\x56\xf3\x1c\xd6\x94\x93\x2e\x28\x97\x9e\xca\x9f\x5f\x76\x20\xd9\x96\x93\x99\x7b\xb8\xa3\xf4\xe7\x38\x1e\x44\xed\xf9\xb6\xf2\xbb\x7b\x72\xdd\x67\xae\xa7\x95\xc5\x65\xab\xa3\xe4\xc0\x2d\xb7\xd1\x38\x80\x52\x9e\xe4\x1f\x35\x20\x5a\x5e\x25\x67\x8d\x34\x37\xe0\xda\xb8\x36\xce\xb6\x75\x25\x24\xb9\x4d\xa9\x1e\x65\x49\x11\xf7\x98\x36\x8d\x8a\xf8\xf7\x30\x9e\x7c\x51\xeb\x45\xcf\x4f\xb7\xbb\x49\x9c\xa7\xe1\x22\xb9\x99\x3a\x53\x34\xd6\x64\xe6\x8b\x40\x7b\x69\x10\xf3\xb2\x3c\xfe\xb3\x32\x38\xdf\x3c\xab\xe9\x06\x27\xd4\x5a\xb8\x15\xf8\xa2\x49\x52\xe4\x4b\xa1\x8d\x7a\x36\xe5\x78\xca\xa9\xc8\x79\x46\x03\xe4\xd7\xea\x16\x72\xdd\x24\xcf\x93\x78\xa7\x2a\xe6\x5f\x51\x92\x7e\x3f\x08\x7c\xb7\xe0\x4a\xb5\x72\x44\xef\x09\x6b\xf4\xf6\x58\x75\xb6\xc0\x2f\xe0\xff\x70\x72\xd3\xdd\xc8\x9a\x98\x62\x74\xa4\x79\x60\x43\x83\x7e\x34\x49\xeb\x0f\xed\xb9\x6d\xeb\xcf\xea\xa2\xb8\x4d\x57\xc4\x9e\xa0\x7c\x2e\x25\x5c\xb4\xe0\xf8\xa7\x7e\x1b\x49\x8a\xfc\xc9\x96\x72\x08\xa0\xa1\x73\x60\xd5\xf2\x0f\x60\x27\xf8\x8c\xe6\x8f\x58\x56\xab\x02\xc5\x41\x54\x3e\x44\x3f\xdc\xa3\x41\x1f\x02\x84\x19\xa9\xd8\x1d\x7c\xbf\xeb\xa4\x39\xfa\xf1\x23\x1d\x85\x67\x46\x2a\x8e\x2f\x61\x2c\x0c\xd6\xe0\x0f\xc6\x2a\x7f\xba\x42\xa7\x37\x76\xb1\xff\x84\xdd\xa5\xa2\x92\xcc\xfe\xb2\x35\x29\xc3\x7d\xd3\x33\xed\xd7\x8b\x34\xcc\x46\x69\xd1\xb3\x24\x46\xe4\xa2\xc5\xdf\xd4\x67\xe4\x6f\x36\xb5\x8f\x87\xa6\x1f\xdb\x9c\xf5\xb8\x9b\x8a\x65\x12\xec\x87\xae\x7d\xe5\x24\x1b\xca\x3f\x2d\x6c\x4c\x2f\x2b\xf4\x7a\x31\x1c\x4d\x79\x80\xe1\x89\xc0\x1b\x81\x00\xf8\x85\x07\xd9\x54\x82\x47\x97\x89\xf1\x22\xb6\x23\x6a\xdb\xb5\x69\xdf\xa6\x3b\xfd\x49\xcb\x73\x0d\x0b\xf9\x9a\x12\xb5\x87\x1f\x27\xda\xb4\x98\x50\xd8\x13\x3e\x18\x7b\x3e\xf0\x2d\xcc\x4d\xfe\x21\x85\xed\xeb\xa5\x61\xbc\xdc\xaa\x39\x46\x8a\x27\x5d\x93\xcc\x7f\x6c\x0f\xe4\x4a\xb8\xed\x8b\xb1\xcf\x8f\xce\x8c\xfd\xd1\x74\xad\x82\x5d\x58\x8c\xd6\x9e\x6a\x39\xc0\xf8\x8f\x11\x57\x61\x5a\x20\x9c\x46\x26\xf6\x28\x04\x57\x9d\x97\x95\x37\x33\xbf\x17\x28\x15\x94\x9d\xeb\x4a\xbe\x75\xa2\xa3\xec\xb6\xcf\xa3\xec\xe6\xc4\x16\x5f\xda\xef\x39\xdf\xe5\xa4\x96\xbc\x8a\x26\x1f\x03\xa7\xd1\x64\xc7\xee\xf5\x91\xe2\x05\x3d\x4e\x12\x30\x4e\x51\xc8\xaf\x36\xd6\x0d\x77\x11\xe6\xfc\x34\xaf\xe1\x1f\xa9\x5e\xcc\x7f\x93\x25\x13\x9e\x2b\x73\x46\xf9\x4e\x9c\x56\x1c\xcd\x7f\xe7\x9a\xb0\x59\x94\xf4\x8d\x38\x90\x38\x84\xc7\xbc\x17\xec\x56\xc1\xf9\xc8\x76\x8b\x88\x44\x5c\x9d\x59\x24\x40\x39\x2c\xdb\x1b\xf8\xea\x19\x2c\xd9\xf9\x67\x6a\x38\x96\x17\xda\x66\xc5\xa6\xa6\x2f\x5b\x7f\xa5\xad\x28\x12\x47\x9e\xbf\xbf\x6c\x72\x0b\xde\x12\xaa\x71\xa2\x93\xee\x98\x52\x9e\xd2\x7b\x45\xd1\x33\x47\x26\x0f\xcb\xbd\xfc\xc1\x72\x39\xc8\x44\x55\xb0\x90\x73\x81\x26\x97\xeb\x79\x7e\x57\xa9\xd0\x41\x21\x04\x2b\x68\x0a\xd8\x47\xc4\xa3\x70\x16\x75\x9c\x07\x9f\xdd\xfc\x56\x93\xc3\xc2\x28\xf2\x3d\x7d\x71\xf8\x28\xff\xb0\xf8\x86\xf8\xa7\xcd\x93\x55\xf2\xe2\x7a\xd9\x63\x37\xdd\xcd\x40\x94\x0a\xdd\x52\x9e\x0e\x28\xf2\xfd\xb8\x01\x17\xbc\xd0\xb6\x07\x46\xa9\xcd\x32\x61\xfa\x8a\xb0\x87\x8a\xf6\x2e\x55\xab\x75\x0d\xdb\x55\x2f\xcc\x88\xe5\xda\xf2\x64\x9a\xdf\xa3\xe1\xe1\xcf\xb5\x40\x6c\xcf\x2b\x0b\xed\xd5\xc4\x56\xb6\xae\xe3\x15\x8d\x43\xbd\x42\xad\x59\x7e\xa8\xfc\x3f\xe1\xba\xd0\xbd\x89\x28\xb4\x72\xb9\xfb\xa7\x0a\x98\x7e\x14\xa3\x8d\xff\x38\x3a\xf6\x9c\x96\x3f\x54\xaa\x72\x37\x51\x64\xe6\x1f\x0a\xaa\xd2\xf9\x6e\xe5\x9f\xd1\xb2\xb1\x39\x3b\x59\xcf\xce\x72\x86\x76\x56\xb1\x1e\xce\xaa\x0d\x77\x64\x8d\xc0\xa7\x10\xa8\x30\xe6\x8a\x2f\xb6\xea\x83\xfe\x42\xfb\x57\x66\x28\x00\xc1\x90\x1d\x51\x5e\xe0\x47\x94\xc8\xff\x62\x6a\x57\x59\x3d\x0b\x2d\xf8\x6f\x6b\xf9\xc5\x6f\x37\x6a\xd3\x87\x19\x15\xbc\x70\x2f\xce\x2e\xb5\xfc\x2d\xbe\xa8\x35\x96\xe6\xa7\xdb\x45\xdc\x2d\x23\xaf\x30\x56\xec\xeb\xe3\x8a\x7d\x7d\xbc\x62\x6f\x42\x9e\x28\x4e\x0a\xa6\x85\xe6\x11\x02\x46\x08\x46\x23\x6b\xf9\xb2\x96\x1c\xd1\x37\x65\x5d\x93\x0f\x38\x0f\x41\xd7\x94\x1d\xf5\xf8\xc2\x9d\x76\x65\xfc\xb8\x43\x91\xbc\xb8\x78\x58\x37\x8d\x7f\xa4\xa3\xc2\xe8\xd3\x28\xcc\xbb\x8b\x72\xc2\xa0\xd8\x57\xf7\x28\x9a\x9d\x65\xe9\x4c\x1e\x2e\xc0\xe5\x2e\x62\x90\xf9\x42\xf5\x8f\x87\x26\xce\x40\x9d\xdb\x2d\xec\xc5\xab\xd8\xc0\xf9\x22\xf0\x54\xa0\xee\x20\x89\x6c\x96\xdb\x34\x89\x26\x7d\x29\x97\x89\x32\x22\x90\x44\xbb\x0d\xd6\x20\x0b\xb8\xf1\x85\x8a\x08\x97\x92\x2c\x07\x11\xf4\x55\xbd\x31\x2d\x38\x09\x0c\x45\x87\x0e\xa3\xb0\x9b\xb0\x21\x94\x08\x25\x29\xb0\xc9\xe9\xf1\xd7\xea\x35\xb4\xdc\x46\xb6\x9b\x0c\x87\x45\xcc\x0c\x06\x5e\xa6\x38\x3c\x01\x33\xe2\xcf\xb5\xf9\xb6\x7f\x4f\x7b\x50\x66\xbb\x31\xc3\x2a\x70\xf4\x6d\x60\x07\xe1\x8b\x06\x64\xeb\xab\x2c\x1d\xdd\x52\xb5\xdb\xf3\x81\x2f\xea\x96\x09\xb2\x3c\xd3\xf3\x2b\xf6\x91\x72\xfc\x50\x1e\x44\xd9\x0e\x9b\x35\xf7\xa5\x10\xf7\xdd\x0e\x6a\x22\x86\x58\x4e\x5c\x88\x40\x27\x6e\x23\xf0\xee\xd5\x27\x28\x72\x51\x65\x6f\x29\x91\xfd\x21\xed\x2b\xae\x36\xbe\x4b\x60\x82\xac\x7f\x2e\x68\x6e\x09\xa5\xf3\x41\xd8\x5d\x6e\x29\x68\x70\xa0\xca\xcb\xfe\xa7\xec\x70\x94\xd0\x86\xc9\x66\xf4\x78\xdd\xe2\x4c\xff\x88\xda\xff\x9e\x7f\xa4\x1c\x09\x7c\x3f\x82\x20\xac\xf6\x6d\x9d\x32\x88\x70\x52\x9b\xbb\x66\x9c\x4e\x3d\x3d\x21\x62\x08\x86\xf2\x23\xd8\x92\x53\xd1\x11\xef\xca\x1d\x4f\xd8\x1b\x2d\x27\xc9\xd7\x02\x27\x4c\x3a\x84\xde\x21\x03\x82\xc7\x7c\x50\x5e\xad\xc5\x60\x7b\x5f\x69\x67\xdd\xd4\x00\x0f\xd2\x44\xe7\x6a\x02\xb2\x0d\xec\x52\x0e\x36\xa9\xcc\xfb\x96\xd3\x1b\x3a\x57\xa3\xd7\xef\x9b\x7e\x99\x8e\x9b\x70\x14\x85\x31\x17\x70\x91\xbf\x7e\xae\x04\x2d\x00\xfa\x13\x3f\xaa\x86\xa2\x7b\x1a\xe6\x6f\x40\xc9\x11\xc7\xc5\x45\x15\x97\xfc\x99\xee\xae\x9c\x6b\x2a\x8c\xa7\x45\xc4\x5f\x8d\xdb\x04\xb5\x11\x55\x00\x74\xfe\x30\xc0\xff\xa4\x76\x58\xce\x4f\xb7\x4d\x5c\xee\x76\x43\xf4\x76\x30\xbd\x59\x98\x03\x27\xec\x19\x25\x6f\x78\x6a\x5c\x91\x82\x4f\x17\x01\x51\xd4\xe0\x48\x69\xf9\x79\xe8\xf8\x1d\xd7\x33\x10\xf1\x89\x8a\xd5\xee\x86\xca\xff\xd8\x10\xc1\xa5\x8c\xe5\xea\x53\xd5\x00\x99\x43\x4c\x02\x07\x29\xe5\x20\x36\x43\x6c\x70\x27\x15\x8c\xe0\x8d\x24\x89\x92\xfe\x5a\x4b\x91\x0b\x8f\xe3\xef\xf3\x45\x2d\xe6\x21\x43\xad\x24\xb6\xe9\xa4\x97\x46\xe0\xc3\x03\xf5\xd2\xc3\x15\xf4\x02\x2d\x68\x81\xa2\x3f\xad\xd2\xd0\x7e\x19\x72\x86\x02\x3c\x74\x00\xce\xf2\x36\xf9\x42\x9d\x56\x8b\x49\xe8\x9c\x5a\x9c\x15\x8d\xdf\xde\x8f\x57\x92\x83\xdc\x0e\x1f\xf3\xd1\xe7\x03\x1d\x25\x81\x79\x8b\x56\x9c\x73\xe8\xd9\xed\xa5\xd6\x2a\x6b\x8c\x08\x1f\x42\x53\xa1\xb7\x87\xd0\x10\x8c\x51\x24\xac\x57\x03\xc5\x03\xdb\xa8\x40\x7d\x00\xd6\x93\xb4\xcf\xb3\x69\xcf\x8c\x7d\x8f\x89\x35\xc9\xa4\x60\xed\x8b\x46\x8b\x96\x42\x68\x89\xb3\x70\x08\x7f\xa8\x0e\xe4\x0f\x83\x8a\x57\x7d\x68\xb9\x20\x8a\xf2\xd0\x8f\x71\x0a\xf3\xc5\x7d\x3b\x95\x59\x9e\x74\x97\x27\x7c\x87\x98\x75\xac\x05\xa7\x5d\xee\x05\xc8\x34\x8e\x68\xf8\xa7\x49\x1f\x56\xdc\xd1\xb7\x94\x38\xed\xef\x8c\x3d\xd2\xf2\xdd\x40\x7b\xed\xe1\xac\x94\xc1\x50\x80\xf3\x4b\x81\x97\x96\xb8\x4c\xa3\x84\xcf\xdb\x3b\x9a\x29\x09\x39\x07\x91\x3c\xd3\xf6\x75\x63\x5f\xab\xc9\x6d\x9c\x9b\x1c\xe2\x1d\x4a\x74\x95\x71\x12\x7c\x11\x54\x04\x5e\x42\xb2\x98\x54\x66\x91\xc7\xe9\x76\xf8\x73\x93\x72\x00\x49\x07\x62\xa1\x70\xff\x2d\xf0\xbe\x93\xc7\x2a\x8b\x3e\x49\xe2\x87\xfd\x4e\xf1\xfd\x40\xa1\x74\x61\x7b\x23\x38\x30\x9a\xfb\x38\x18\xb8\x00\x82\x8a\x5f\xab\xa3\xc1\xaa\x5b\x4c\x7b\xcb\x6f\xc5\x7c\x64\x00\x2e\xd6\x0b\xa3\x55\x5c\xbb\x76\xd7\x8c\x23\x77\x6c\x5d\xc3\x2f\xed\x87\x15\x4d\xb6\x95\xec\xe6\x10\x26\xb5\xf0\x72\xd7\x2e\x98\x91\x2f\xd9\xd4\x4e\x95\x77\x20\x1c\x8d\x4a\xf3\xaa\x7c\x4e\xcc\xf5\x13\x34\x39\x50\x3a\xd8\xa1\x6a\x51\x67\x74\x60\xbc\x36\x32\x59\x46\xc6\x17\x28\x15\x7d\x48\xc8\x12\x27\x4b\xb5\x6f\xda\xa7\x64\xb3\xb3\x4c\x3a\xda\x6c\xd2\x8e\x46\xfc\x42\x47\x98\x40\x3a\xe9\x69\x04\xec\xd9\x00\xe0\x36\x79\x1e\xe6\x45\x8f\x75\xa4\xb1\x4d\xae\xd3\x2c\x16\x4a\x71\xf9\x94\x08\x58\x8e\x35\xaa\xa9\xf6\x92\x62\x31\x9f\xa2\x57\x28\x0a\x50\x3e\x65\x79\x77\xac\x1c\xe2\x80\xc5\x90\xb6\x23\xbd\x33\xc9\x01\xf5\xc6\x95\xac\x66\x8f\x78\x2d\xf2\x63\x15\x3d\xd0\x9f\x28\xef\xa8\xc7\x3a\x54\xd6\xc0\xd9\x75\x02\xb3\x4b\x52\x54\x45\xcb\x9f\xa0\x82\x03\x7f\x5e\x57\xe7\x23\x37\x7f\xa0\xe6\xba\x89\x1b\x15\x70\x8c\x2f\x5e\xdd\xd6\xce\xcb\x7f\x51\xa3\x83\xef\x9b\x9e\x29\x0f\xf5\x6f\x16\x26\x0a\x97\x42\x69\xae\x48\x5c\x54\xfe\x19\x09\x8b\xfc\x36\x9e\x85\x49\x71\x80\xc2\x06\x9e\xf3\x81\x4a\x75\xef\xdc\xa7\x9a\x9c\x25\x51\xd8\x45\xcf\x63\xd7\x2e\xaf\xb1\xe8\xf5\x16\x35\x0a\x2c\x49\xd3\x30\xdb\xa1\xe0\x1e\xdb\xd7\x31\x8a\x7c\xd5\xf1\x71\xca\x5b\x80\x98\xe8\x76\x10\xff\xc7\x58\x01\x4c\x4e\x29\xe8\xcc\xa8\x18\x8e\x38\x46\x76\x12\xbf\xe5\x10\xf1\x85\xd2\x1b\xb4\xa6\x0c\xf7\xe3\x07\x94\x4a\x20\xe3\x67\x98\x09\x89\xd3\x4b\xcc\xec\xf5\x8b\xfe\xbd\xc0\xc3\xd6\xae\x50\xc5\x09\x6b\xe3\xe8\x58\xbd\xe7\x75\xe5\x3e\x71\x42\x7d\x6f\x1a\x76\x07\x39\x43\x44\x59\xc2\x1d\x43\xbc\x55\xcf\x7d\xb5\x3c\x4f\xcb\xbf\xe1\x5c\xfa\x5d\x82\xbd\xa1\xaa\x4e\xbf\xf8\xcb\x0b\x93\x34\x3d\x9c\xd4\xbb\x17\x96\x79\x94\xc6\x52\x88\x94\x0a\x88\x7a\xb7\x51\x7e\x2d\xcb\x9d\x1e\x51\x93\xbc\xbb\x74\xc3\x5c\xa3\x19\x22\x2d\xb2\xd7\xfb\xc9\x7f\xb3\xe2\x92\xa9\xcc\x1f\xa3\x64\x64\xb3\x09\x7f\xda\x5e\x52\x87\xf5\x59\x65\x77\xf6\xc3\xf1\xb3\x9a\x23\x43\xaa\xbe\x26\x62\x71\x14\x89\x7a\x7c\xf4\x7f\x5c\x7d\x07\xe4\xe0\x30\x03\x2a\x0a\x70\x72\x8c\x37\x6d\x13\x26\x74\xdc\x5e\xe6\xe5\x63\x07\x10\x92\xbe\x52\xa9\x2c\xca\x59\x63\x95\xa0\xdf\x29\xe5\x0f\x73\x4a\x29\xf1\x52\x03\xc4\x74\x73\x72\xaf\x60\xf9\x12\xcc\x2f\x4c\xa2\xb1\x12\xfd\xb9\x81\xd5\xce\xa5\x52\x7c\x37\x0a\xf0\x6c\x81\x84\xe7\xe4\x3c\x16\x13\xef\x4f\x02\xdf\x61\xbb\x87\x82\x0b\xb6\xd2\x9f\xd2\x16\x87\x62\xe3\x27\x0a\x04\xc6\x8b\x94\x9b\x98\xca\x3b\x76\x7e\xda\x69\x8b\xf9\x52\xd8\x92\x8d\x21\x12\xc2\x9e\xe6\x14\x89\x89\xbf\xf9\xe3\x8e\x79\x6c\x47\xc6\xd9\xfd\x38\x3e\x91\x42\x24\x6d\x3d\xa3\x66\x67\xdb\x94\x00\x87\x23\x13\x4d\x78\xe2\x12\x27\x40\x98\xc2\x97\xd5\xc8\x4c\xd6\xa8\xa9\xaf\xbd\xd6\x5e\x4a\x43\x1b\xf7\x78\x3a\xa0\x98\x76\x24\xf0\x92\x07\x47\x54\xf0\x6c\x46\x91\x8d\xf3\x35\x14\xf5\x70\xfb\x38\xa9\xc4\x33\xbd\xb5\xd5\x4b\x08\xe1\xea\xf9\x72\xe0\x5c\x73\xaa\x4c\xdb\x6d\xdc\xe3\x2e\x93\x28\xe1\xb4\xbe\xfe\x0d\x27\x9a\xe3\xfb\xbb\xd5\x2a\x78\x94\x74\x27\x95\x7c\xfa\x5d\x7a\x37\x2e\xc5\x76\x0c\xbe\x27\x3b\x9e\xc1\x70\x53\x41\x76\x07\xd6\x44\xf9\x60\xa7\x82\xe0\xa1\x5f\x81\xcf\x47\x02\xd5\x41\xe4\xc0\x0d\xdf\x83\xbc\x45\x92\x11\x4f\x0c\x39\xaf\x45\xee\xbc\xfd\x20\x7a\xb2\x49\x01\x1f\x18\xce\x54\x2a\x18\xe0\xfb\xc8\xb5\x58\x11\xa7\xc3\x3c\x3c\x42\xe3\xc0\x9f\x2b\xb8\x87\xac\x48\x4d\xdc\xb5\x8f\x2b\x2c\xf4\x71\xdc\x30\x12\xc5\x0f\x99\xe6\xcd\x0d\x02\xee\xc0\x3a\xa0\xa7\x0c\xd4\x0f\x8f\x83\x9f\xa8\x94\x40\xbc\xc5\x8a\x82\x56\x1f\x0f\x94\x02\xf1\x59\x85\xf0\xb9\x50\x11\x28\x1b\xab\xb4\xef\x7d\x9a\xb7\xe8\x03\x40\xa8\x50\x1c\xc4\x5b\x4e\x3b\xf5\x76\x2d\x35\x9f\xd9\xdb\x1e\x15\x7d\x56\xf8\x94\xb3\x42\x1f\x1c\xca\x82\x22\x8b\xc2\x91\x2a\x31\x6e\x06\x3e\xb1\xde\xd4\xc4\xbd\x30\xa6\x66\x34\x6a\x9f\x8f\x73\x69\xc1\x79\xc7\xbc\xb4\x9f\x0f\x98\x93\x4a\x83\x2a\x7c\x16\xfb\x04\x6e\x1f\x8a\xf3\xc8\xe8\xae\x53\x70\x5e\x69\x5e\x62\x6d\xc2\x43\x0d\xcf\x05\x27\x56\x20\x01\x38\x19\xc3\xf6\x73\x91\x92\xc3\xcd\x8b\x63\xef\x95\xfd\xdf\x7e\x15\x28\x25\x51\xc8\x68\xd0\x7f\xc8\x62\x6b\x58\x8e\xcb\x89\xe5\x7a\xe1\x5c\x8d\x48\x37\x59\x68\x53\x2c\x10\xbc\xeb\xbf\x18\x7b\x11\x8b\xff\xa8\x24\x9a\xb0\x50\xf9\xdf\xc7\xcf\x54\x8b\xbc\x33\x7b\xdb\xf3\xd3\xf3\x7a\x4f\x46\x91\x4a\x36\x68\xcf\xff\xc8\x06\x49\x92\x4f\x7a\x12\xe1\x31\x05\x7a\x3f\x86\xb5\xe1\x28\x58\x8a\x8f\x55\x0b\xb5\x67\x67\xdb\x11\x27\x81\xbd\xc9\x32\x8c\x77\x12\x93\xae\x47\x40\x4d\xaa\x39\xe7\x85\xe3\x13\xa9\x0d\xd5\x27\x19\x9a\x3c\x4f\x6d\x06\x11\x23\xb4\x10\xff\x06\x19\x11\xd6\xeb\x26\x22\x47\x54\x2d\x6e\x37\x30\x42\x16\xda\xe5\xc2\x8d\xfb\x9c\xeb\x63\x92\x7f\x0b\x4b\x01\x13\xe0\xb2\x06\xf2\xb0\x3c\x0f\xaa\x4e\x13\x0a\x42\xb0\x62\xb2\x7c\xaa\xa5\xa4\xd0\xe9\x9d\x60\x9f\xb8\xac\x95\x94\x2f\x68\xd4\x35\xf6\x1f\xe6\x49\x75\x94\xea\x73\x92\x76\x71\x26\x60\xcb\xfd\x0f\x1a\x59\xff\x1f\x9a\x24\x43\x56\xc3\xd4\xa1\x6b\x80\xe5\xd8\xb6\xee\xf9\x2a\xdb\x94\xbc\x86\x8d\xcd\xa4\xff\x9f\x23\x5a\xd8\xf9\x82\xca\xf6\xde\xa3\x11\x17\xe3\x6f\x0f\x4c\x4b\xd2\xd8\x10\xcc\xa0\xe5\x67\xc1\x15\x35\x0b\xae\xd4\x0a\x53\xe5\x91\x95\x64\x79\x8b\x36\x1e\x04\x7a\x57\x51\x3e\xe0\x8b\x26\xae\x78\x6a\xa3\xa4\x2b\xc8\x24\xc1\x99\x29\x05\xb0\xe0\x29\x5d\x67\x31\x69\x2f\x8c\xfb\x53\xf4\xf4\x38\x04\x3e\x54\x34\xb6\x0f\xb5\x62\x33\xab\x4f\xa1\x7d\x7c\x3b\xd0\x9a\x3d\xe7\x94\x51\x5c\x6a\x4d\x9a\x9a\xd8\xd5\x28\x18\x3c\xa4\x8a\xcc\x87\xdc\x29\x5e\x8c\xfa\xa9\x21\xa7\x03\xdf\x8f\xba\xa1\xce\x7b\x16\x97\x90\x18\xb7\xc9\x22\x3b\xb6\xc9\x68\xb0\x96\x4b\x24\xa0\xcc\x90\x16\x9c\x19\xd2\xd3\x15\x0a\x8f\x19\x41\x20\xcc\x43\x2b\x00\xbe\xe4\xcf\x0d\x0a\xd8\x7b\xda\x51\x48\x82\x14\x2d\x27\x69\x78\x94\x5e\x32\x7f\x56\x30\xa1\x7c\x90\x64\xf6\xe9\x72\x5d\x3a\x0a\x44\x39\xed\x91\x4d\x4d\x74\x28\x01\x03\x42\x10\x88\x39\x61\x66\x7b\x99\xe7\xaf\xdc\xa6\xb7\x85\xc3\xe9\x0e\xce\x09\xb6\xc9\xc2\x09\xe4\xb4\x75\xbc\x94\xf8\x3b\x81\x2a\xf4\x7d\xae\x6b\x8f\x20\x08\x08\x06\xa6\x35\xb3\x57\x3c\xae\x54\x81\x93\x41\xc4\xa2\x12\x4b\xed\x72\x77\x4c\x95\xcb\x99\xe5\x36\xc7\x9e\x9a\x38\xd9\x51\xe2\xe4\x67\x95\xfe\x68\x6e\x87\x0f\xd2\x5f\x43\xa4\x71\x9b\xbe\x5e\xf2\x21\x3f\x0b\x3f\x55\x86\xf8\xcf\x74\x54\x32\x7c\x31\x50\x48\x8f\x23\xda\x0f\xe2\xaf\xc7\x55\x2f\x66\x3f\xfe\x37\x15\xaa\x6a\x94\x26\x83\x70\x31\x74\xed\x1e\xd4\xd3\xde\xd5\x42\x14\xef\x56\xc2\x83\x25\x14\x1a\x1f\xf5\xb8\xa7\x73\xca\x65\x61\x1b\x64\xd9\xd0\xaf\x67\xed\x53\x67\xdf\xe5\x60\xbf\x27\xb5\x17\xe4\x61\xd4\xe0\xd9\x6e\x2a\x50\xf5\xc5\x13\x54\x39\x14\x73\x7d\x1a\x59\xa4\x91\xc7\x90\xbd\x49\x10\x5e\xbe\x25\xa6\xc3\xe2\xbe\xd1\xe6\xf8\xff\xf8\xfa\xb7\x20\x39\xce\xec\x4e\x0c\x07\xaa\x1b\x57\x12\x1c\x82\x97\x91\xe6\xaf\xfd\x87\x4b\xda\x09\xd3\x1b\xcb\x61\x6c\x38\xfc\xb0\xa1\x97\x2c\x03\x3d\xa4\x00\xaf\x9a\x6d\x00\x03\x68\xf9\xc4\xaf\xb3\xbe\xae\x4a\x76\x56\x66\x31\x33\xab\x1b\xcd\xb0\x23\xfc\xb8\xa1\x70\x38\x62\xb5\x4f\xf6\x7a\x1d\xab\x95\x2c\x79\xb5\xb6\x2e\xa3\x5d\xaf\x46\x23\x4d\xb6\x66\xb4\xc3\x91\x86\x1c\x91\x04\xc9\xe1\x90\x1c\x10\x77\x34\xae\x8d\x3b\xd0\xb8\x34\x1d\x79\x7e\xe7\x7c\xdf\xc9\xae\xc4\xbe\x65\x02\x5d\x55\x99\xdf\xe5\x7c\xe7\xf2\x3b\xbf\xdf\xdf\x35\xf2\xac\xcf\x66\x69\xd1\xb7\x59\x3e\xa9\x68\x4a\xef\x63\x39\x89\x10\xb8\x56\xbc\xe5\x4e\x12\x3c\xd0\xdb\x8d\x82\x27\xe9\xdc\xdc\x84\x17\xf0\x81\xfb\x8d\x1a\xe7\x6f\x11\x30\x18\xa9\xbb\xbe\x6a\x30\x99\x8b\xad\xa5\xaa\xbe\xa3\x7f\x40\x33\xaa\x68\x44\xfa\xf1\xee\x9b\xc1\x6c\x66\xc3\xbe\x14\x52\x61\x25\xef\x06\xaa\xa2\x71\xb7\x91\xf8\x7a\x34\x4c\x93\x96\x42\x28\x90\x91\x92\x9d\xe0\x43\x9f\x38\x4d\x87\xfd\x34\xb6\x68\x98\x70\xca\x0a\xfb\x7c\xaf\xb9\x6e\xed\x0e\x21\xe8\x89\xcd\x79\x0b\x8b\x8d\x6f\x9a\x18\xb7\xc2\x34\xe9\x8e\xc2\x42\xf0\x0b\x8c\xbb\xc1\x0e\x15\x10\xce\x57\x9d\xb9\x1f\x44\x49\x24\xaa\xa7\x84\x6c\x16\x20\xe4\x29\x4c\xaa\x63\xda\x74\x47\x1f\x50\x59\x4c\x0a\x52\x2a\x64\xd2\x4f\x54\x70\x57\x39\xcb\xb3\x31\xa3\xeb\xa5\x5f\x93\x9e\x5c\xd0\xf5\xca\x96\x5e\x52\xd9\xf6\x47\x0a\x23\x9d\xd9\x59\x28\x0a\x69\x8a\x83\x4b\xaa\xb0\x83\x48\x05\x21\xc6\x07\x8d\x5d\xb2\xf9\x30\xcd\x8a\x09\x15\xb1\xa3\x7f\x80\xf5\xf9\x68\x7a\x24\xaf\xed\x63\x58\x62\xc7\x95\x4a\x27\xb2\x6a\x60\x7a\xe2\x6b\xc7\xd3\x9c\x81\xd3\x27\x14\x3a\x1d\x57\x51\xab\x7e\x4f\x52\x47\xe3\xeb\xe4\x35\xea\x70\xa0\x75\x88\xb4\xd1\xf7\x02\x9f\x4f\xfa\x9e\x7a\x90\x30\x36\x79\x1e\x85\x38\x04\x84\xda\xc2\x77\x91\x5d\x09\x7e\xf9\x71\xa9\xf1\xd1\x6c\x6e\xdf\x1c\x09\xe5\x15\x9f\x8c\x41\xed\x98\x74\x08\xbc\x74\x14\x42\x53\x00\x7b\x6f\x4d\x75\x58\xac\x05\x9e\xd9\x7b\x76\x1e\x88\x57\x7c\xfe\xb7\x4b\xef\xf5\xff\x76\x03\x35\x77\x35\x36\x69\x26\x5d\xee\xf0\x6c\x4f\x69\xc4\xd0\xa9\x5a\x18\xd8\xb5\x80\x06\xc1\x35\xfc\x5c\xe5\x8f\x3e\xa3\x2c\x30\xc6\xe6\x7f\x51\xa8\xf2\x7e\xd4\xeb\x2f\x1a\x38\xd1\x38\x2c\x74\x65\xe3\x9e\x8a\x17\xec\xc0\x6e\xf7\x01\x33\x97\xe8\x45\x5c\x91\x4c\x1a\x0b\xcc\x82\xf7\x10\x01\x22\x54\x6d\xe1\x45\xec\xec\xa8\xc5\xfa\xa0\x54\x30\xf7\xab\x74\x70\x60\x33\x9e\x73\xb8\xa5\xd9\x34\x19\xe5\x72\xd4\xe3\x8c\xb8\xab\xa1\x81\x77\x03\xaf\xc8\x64\x73\x9b\x14\x2c\xe6\xf3\x9a\x66\xa9\x3f\xe8\x9a\x77\x25\x08\x4d\xa2\x5e\xbf\xa0\xea\xa3\xcf\x0b\xe8\x86\x8c\x53\x9a\x0d\xe9\xae\x66\xc7\xe8\x1b\x6a\x08\x3e\x20\x99\xe5\x6f\x93\xad\xe1\xeb\x26\x79\xc1\xc2\x24\x68\x0d\x92\x1e\xfc\xea\x17\xa5\x98\xb1\x5b\xf5\x4a\xe5\x04\x43\x98\xf0\x58\x8d\x3f\x57\x58\x8d\x3f\x28\xbd\xa4\xc5\x1f\xb8\xec\x18\xa9\xef\xcc\xc6\xce\x9b\x6d\x6a\xd2\xde\xb8\x67\xf6\x4d\xb7\xfb\x36\x1e\xe2\x87\xd8\x31\xa1\x37\x07\x88\x93\x23\x13\xec\x8a\x35\xd7\xb4\x19\x47\x83\xa8\xb0\xdd\x1d\x7a\x34\x31\x46\x38\x1c\x1e\x06\x8a\x71\x0d\xb9\x7a\x0d\xe9\x90\xd4\x05\xad\x17\x11\xa4\x50\xdd\xb4\x17\x75\x59\x08\x64\x77\x30\xdf\x5f\xed\x6c\x24\xbc\x99\x9e\x6e\xe7\x66\x69\x52\xf1\x14\xee\xe8\xd4\x6c\x7a\xf5\x1c\x2c\xf0\xae\x14\x76\x1e\x8e\x25\xfd\xf7\x4e\xb5\xcd\x70\x68\x32\xd9\xd9\xb0\xd5\x60\x1b\xe5\x6b\x35\x3f\xf3\x76\x69\x36\x25\x32\xdb\x7d\x12\xfa\x3e\x20\x87\x80\xaf\x55\xe0\xd7\x1f\x55\x9b\xd5\xf3\x91\x1f\x57\xe9\xca\xe3\xe3\x82\xd9\x07\x66\xbe\xde\xee\x5b\xd3\x7d\x73\x44\xa6\x92\x9d\x68\x2d\x5e\x29\x9e\x85\x8a\xdb\xe3\x62\x27\x8d\x00\x8b\x0b\x68\xe2\xcd\xe3\x94\x5c\x80\x59\x7e\x47\x71\xd0\xdc\x86\x67\x82\x29\x9f\xec\xf8\xda\xe3\x3b\x1a\x67\x75\x87\x93\x23\x35\xce\x2d\x04\x88\x38\x22\x84\x7c\x7d\xa3\x9d\x3a\xb0\xa7\x1d\x0d\x86\x26\xcf\xed\x63\x57\x7b\xad\x3d\xdc\x66\x48\x64\xb8\xda\x9c\xce\x3b\x7d\x4d\xb5\x0a\x0d\x33\xb3\x60\x93\x22\x8b\x42\x12\xc7\x52\x29\xe7\x55\x45\x47\xbc\x3a\x16\x19\xed\xdf\xdf\xee\xa5\x0b\x36\x4b\x52\xfe\x90\x4b\x59\xba\x34\xdc\x07\x35\x8e\x84\x9c\x8a\x80\x79\xcb\xcb\xe7\xde\xa3\xcd\x2d\xf4\xc0\x22\x2d\x97\xd8\x51\x96\xe6\x61\x64\x89\xf1\x1f\x6e\x8d\xe0\x17\x14\xb3\xc9\x71\xd7\x76\x34\x9f\xa4\x8b\x82\xc0\x61\x71\x6e\x1a\x17\x11\xea\x7e\x5e\x29\x87\x46\xbd\xfe\x6c\x9a\xf5\xd3\xb4\xab\x34\xec\xd9\x5d\xe2\x9b\x26\xc4\x53\xd8\xaf\x02\xb0\x09\xef\x63\xff\x19\x4d\x16\x5c\x8b\xe3\x08\xcb\xb1\x02\x4f\x29\x3c\x93\x4d\x8a\xfe\x28\x8f\x4c\x3e\x40\x36\x0e\x5b\xf6\x74\xa0\x20\x59\xa7\x9b\xa8\x21\xba\x36\xa7\x56\x46\xd4\x0c\xe0\xdf\xae\x29\x25\xb4\x35\x95\x15\x1d\xc6\x26\x49\x6c\x77\xbb\x07\xb9\x33\x57\xb5\x33\xfb\x0a\x08\xa4\x32\xe1\x0c\xa8\x80\xa7\xc2\x8e\xb8\xd3\xc2\xab\x7c\x3d\x44\x2f\x77\x94\xb6\xe9\xae\x31\x15\x92\x7d\xd3\x55\x7c\x90\x0f\x6d\x58\x08\x45\x31\x7c\xce\x2b\xaa\x5b\xeb\x8a\xda\xbb\x83\xb4\x6b\x63\x52\xef\xc2\x6f\x01\xc4\x07\x8b\xf5\x57\xb0\x58\x18\xc6\x3b\x08\xf3\x84\x21\xa4\x7a\x08\xc4\x26\x97\xb5\x02\xc3\xf1\x06\x6d\xce\xb6\x29\x28\x59\x2f\x0f\x24\x1a\xe5\xb5\xc2\x8a\xf7\xdc\xbc\xd8\x17\x8d\x07\xcc\xdc\x0d\x1a\x35\xbe\x7e\x2c\x19\x60\x31\xca\x92\x6a\x07\x4c\xd0\x78\xc9\x5a\xf0\x16\x81\x27\x5a\xde\xae\xa1\xeb\xa9\x6b\x46\xbd\xbe\x37\x4a\xcc\x06\xaa\x34\x6c\xaf\x2a\xe7\xe0\x9f\x7e\xf3\x9b\xb4\x00\x61\x61\xae\x05\x1e\x21\xc7\x69\x4a\x06\x41\x6b\xd1\x97\x51\x3e\x6b\xa8\xdf\xe3\x88\xcb\xa6\x5c\x09\x34\x21\xf5\x18\x7a\xc8\xcb\x0e\xc4\x39\x8b\x4d\x21\xf9\xc4\x03\xcf\x37\x8d\x4c\x1b\x59\x3a\x67\xf3\x3c\xcd\x30\x94\x1a\x9f\xc2\xd7\xc1\x73\x1b\x3b\x38\xa7\xda\xaf\xbf\xbe\xc3\xf7\xcc\xde\x0e\x54\x23\x0e\x50\xd1\x92\x8e\xa6\x11\x42\x16\xf8\x1d\xce\x95\x70\x67\x60\xe9\x47\xe5\x14\xf1\x20\x71\xa7\x27\xce\x4c\xa5\x55\x26\xfc\x36\xc7\x4a\x1d\xb4\x2c\xda\xa7\x54\x4c\xb9\xa5\xa3\xd0\x86\x0f\xe9\x09\xc4\x3d\xae\xec\x3e\x02\xf4\x3f\xa3\xca\xb9\x88\x7a\x6a\x3e\xda\xfb\x3e\xc5\xbc\xb2\x1b\x64\x87\xf2\x11\x2f\xc4\x79\x75\xb7\xc2\x22\x1d\x2f\x3d\x67\xfb\x66\x6c\x5d\x54\x1a\x1f\x50\x76\x01\xde\xed\x59\x44\xf1\x48\x2f\x4c\x76\x1c\xda\x33\x35\x03\x9a\x22\xf6\x04\x03\xef\x6e\x9d\x1e\x3b\x90\x67\x5e\x3d\xd8\x1e\xa6\x69\x66\x25\x01\xe6\x5a\x96\x15\x73\xdb\x6e\x95\xcb\xea\xda\x3c\xea\x31\xcb\x01\xd6\x16\x0a\x64\x7c\x5d\x23\xf9\x48\x47\x30\xa8\xd8\xd6\xf0\xf5\xf8\xba\x51\x01\x2d\x8e\x16\xa2\xa4\x47\xeb\xd9\x75\x6b\x56\xe3\xa3\xa0\x24\x42\xad\x30\x0e\x41\xd8\xbf\xbf\x9d\xdb\x70\x94\x59\x05\x41\xb8\xa8\xc4\x34\x2e\xaa\x2d\x40\xbd\xe3\xe9\xdc\x1c\x75\xc9\x73\x41\x28\x50\x3c\x8f\x57\x6b\xaf\x9c\x5b\x93\x85\xfd\x1d\x98\x51\x69\x79\x1b\xeb\x30\x10\xea\x53\xdf\xee\x7b\x45\x97\xa6\xd7\x34\x97\xe8\xbf\x80\x35\xe5\x42\x13\xb9\x34\xd2\x53\x52\xcd\xf5\xfa\x19\x2d\x4f\x6c\xb2\xdd\xf8\x69\x64\x89\x7f\x4e\xe9\x01\xa1\x41\xa0\x45\x8a\xd5\xbc\x65\xd9\x37\xc0\xde\xf8\x45\x02\x1e\xe0\x6d\x40\x4e\xae\xd5\xeb\x28\x12\xf8\xee\xd7\x3a\x7e\x8f\xdc\x47\xe2\x18\xb0\xac\x2f\xe1\x81\x08\x52\xa1\x0a\x60\xe0\xa8\x7c\xae\x00\x2a\x9f\x7f\x15\x78\x06\xa4\x4d\xa0\x1c\x8d\x55\x06\x92\x2a\x27\xba\x7c\x40\x28\x69\x1f\x61\xef\xd1\x4b\xfc\xee\xd3\xcb\x1b\xfd\xf6\xd7\x5f\x6f\x9b\x51\xc2\x58\x56\x80\xda\x4e\x6a\x2d\x91\x93\x63\xac\xb2\xfb\xf7\x1f\x00\x22\xc6\xe6\xd2\x8f\x29\x6d\x37\xf4\x02\x32\xa6\x7e\x30\x07\x11\xb5\x9f\xf9\xde\x75\x87\x39\x3c\xa1\xdb\xbe\xef\x8c\x2d\x4f\xe2\xa6\x24\xd9\xd7\x96\xaa\x11\x02\xc4\x2e\x2a\x52\x5f\x51\x72\x4a\x59\x34\x6f\x27\x7d\xc4\xc2\x24\x3b\x8e\x62\xce\xe3\xed\x2e\xa8\x25\x7a\xb5\x61\x57\xb4\xe7\x4c\x56\xf4\x6d\x36\xa9\x48\xe6\xde\xa6\x41\x05\x3d\xde\x35\x9c\x89\x48\x49\x9d\x28\x7d\x2f\xc0\x07\x4d\x00\xaa\x22\x1b\x71\x2b\xbd\x88\x10\xa9\x0e\xe8\x4b\xea\x04\xe4\xd0\xdd\xc4\x08\x9a\x1d\xe3\x8e\x27\x62\x1a\x9b\x0d\x4a\x20\x25\x5d\x9b\xe5\x45\x9a\x76\x27\x3c\xfc\x84\xdb\xac\x9d\x58\xd5\xf4\x34\x9b\xd5\x2f\x5c\xc8\x49\x4d\x4b\x0c\x9a\x60\x06\x5d\x5d\xad\xbd\xaf\x5a\x65\xba\x76\x68\xb2\xa2\xda\xe7\x0a\x69\x79\x5f\x8b\xe6\xdd\x77\xa2\xad\x45\x34\x44\xc6\x8e\xe5\x00\x03\x4d\x12\x4a\x63\xe5\x08\x43\xf7\x4e\x39\xcd\xc0\x27\xdc\x72\xd9\xf7\xf2\x84\xb7\xc3\xb0\xe2\xa2\x1b\xa7\x0e\xd7\x0b\x63\x04\xa1\xfb\xa6\xdb\xd9\x12\x33\x2b\x37\x31\x3f\x36\x54\x19\xa3\x64\x14\xc1\x39\x47\x9c\xcf\x22\x96\x7c\x33\xe6\x68\x4f\x4f\xcf\xb4\x87\xa3\x2c\x1f\x71\x9c\xbe\x7e\x86\xde\x6d\x5d\xb3\x7a\xce\xda\xbe\x59\x88\xd2\x6c\xa2\xf5\xf2\x11\xde\x0b\x00\x64\x08\xa7\x74\xf5\x6e\x38\x55\xdf\x2f\x77\xba\xa9\x0f\x9e\x25\xdb\x26\x8e\xb2\x2f\x35\x6e\x03\x43\x2c\x72\xe6\x77\x08\x17\x23\x47\x78\x4d\x12\xcc\xd7\xa6\xce\x60\xc7\x8b\xce\x78\x65\x22\xb0\x38\x5b\x1d\xdd\x82\xfb\x03\x18\x1f\x17\x57\x79\x44\xe0\x24\xf5\x39\xe3\xcc\xb8\xcd\xec\x4f\xc2\x04\xe9\x0b\x86\x0f\x02\x95\x13\x79\x88\x33\x03\xae\xd2\xd3\xcb\x9e\x65\xe5\x11\x6a\xc6\x2c\x81\x1d\x28\xee\xd4\x2f\x34\x86\xc5\x0c\x06\x4b\xbc\xb6\x5c\x92\xa5\xfa\x53\xbe\x51\xc8\xcf\xbc\x30\x83\x21\x82\x4e\xfc\x02\xcb\x8d\xf3\x8d\x4a\xc8\x0e\xd3\xbc\x18\x65\x51\xd2\x03\x93\x3a\x5a\xeb\x7e\x4c\xbb\xb8\xd6\x6b\xc1\xff\x41\x26\x41\xd6\xca\x46\x33\xf9\xab\xed\xb9\xc8\x66\x00\x61\x63\xc8\x1f\xa8\xf3\x67\xa5\xac\x81\x1c\xc6\xd9\x72\x0f\x54\x17\xf3\xb4\xac\xa5\x35\xcc\xe3\xdd\x90\x5d\x94\x0c\x8c\x4e\x70\xf5\x22\xd8\x57\x91\xcf\xf7\x51\xe4\x79\x85\xce\xca\x46\x79\xb1\xa4\xd1\x27\xd7\x31\x33\x7c\xa3\xb8\xdb\x62\xb3\x05\x2b\x00\x5f\xf2\x45\xa9\x60\xe1\x17\xe8\x29\x70\x6c\xb2\xbc\x05\xca\x16\xb7\x68\xcd\xf1\x7f\x04\xcf\x8f\x15\x89\xab\x2f\x04\x12\x04\x7f\xf3\x85\xe2\x3e\x38\xaf\x48\x58\x36\x53\xbf\xbd\x40\xa0\x74\xcf\xf0\x82\xcd\x0a\xcc\x11\x6b\xab\x63\x35\x8b\xd0\x7a\xf5\x31\xa0\xc7\x2e\x53\xd3\x03\x5f\x7b\x99\x06\x22\x35\xac\xf3\x18\xd6\x28\x0e\x1b\x90\xdc\x61\x66\xcd\x00\x79\x40\x14\xe8\x37\xa9\xb6\xfd\x4d\xcb\x35\x05\xd1\xc1\x90\xa6\x1d\xd1\x37\xfe\x0e\x23\xf3\x10\x9b\x06\x29\xc7\x1f\x3b\x16\x5a\x52\x36\x48\x33\xa7\xb9\x88\x26\xad\x0f\x4b\xd5\xb1\xf5\xa1\x7a\xff\x2e\xad\xd1\x5d\xe4\x9b\xb0\x46\xb2\x72\x1e\x41\x3c\x0d\xd8\xac\x88\x82\xc0\x1a\xfe\x6e\xe9\xf9\x2a\xce\x2b\xa6\xae\x4f\x14\x07\x17\x6b\xf7\x60\xf7\x6d\x22\x6e\x7d\x94\x75\x2e\xeb\xf8\xfd\x27\x9a\x5d\xeb\x1c\xc2\x33\xc7\x70\xb9\x4f\x08\x01\x2f\xa9\xaa\xc8\xac\xa9\x0e\x0e\x46\xee\x00\x10\xf3\xa5\x06\xfb\x32\x00\x59\xf4\xa5\x14\x7d\x4e\x96\x2e\xd8\x9c\x3c\x40\x69\x9a\xd0\xcd\x14\x4d\xac\x54\xfd\xcc\x9a\xc2\xf5\xe8\xc0\x2a\xad\x69\xcc\xd7\x9a\xfe\xfe\x34\x8e\x0a\x36\x24\x1c\x6a\x07\xaa\x66\x77\x65\x0c\xcd\xc9\x5a\x16\x95\x3f\x33\x4c\xa3\xa4\x98\x50\x90\xf2\xf5\x5a\x4a\xb5\xf4\x07\xd1\xb6\xce\x57\x5c\x63\xcc\xd1\x22\x72\x72\x8f\xac\x47\xa1\x9a\x2d\x37\xd4\xef\x86\x69\x6e\x62\x48\x8a\x30\x39\x2e\x8c\x97\x63\xca\xdd\xbf\x5f\x38\x01\xc9\x3f\x15\x5e\x00\xdf\xb1\xa5\xc5\x66\xa3\xc1\xd0\x76\x91\x84\x72\x31\x97\x67\x69\x29\x77\x48\xbe\x38\x9f\x54\x08\xeb\x7f\xae\xd5\x10\x4b\x1f\x96\x9f\xd3\x89\xe0\x35\xc5\x22\x40\xbe\x5e\x36\x1a\xa2\x38\xf4\x18\xfa\xac\xe7\x34\x03\x27\xd8\x1f\x84\xa2\x5a\x38\xea\x3c\xb0\xee\xb3\x52\x17\xcc\xbd\x21\x9b\x4d\x47\x8c\x20\x80\xa7\x78\x32\xf0\x95\xcb\x93\xea\x27\xc2\x34\xc9\x47\x83\x61\x11\xa5\xc9\xa4\x6f\x2d\x5e\x0d\x14\xd1\xe5\xe5\x5a\x3a\x4e\xc1\xf2\xbd\xd9\xe8\x66\x66\x91\xd5\x03\x31\x1a\xdc\x00\x8d\x06\xd6\x87\x34\xe6\x58\xda\x67\xc7\x5c\x0d\x64\x86\x5a\xbe\xce\xfc\x85\x66\xf2\xfb\x42\xa5\xd1\x07\xa4\xba\xbf\x8b\xac\x1b\x9c\xf6\xcd\x1d\x1f\x7e\x26\x57\x75\xeb\xd6\x99\x1a\xd7\x11\x37\x60\xe8\x9c\x13\x0c\xec\xf9\x52\x11\x63\x7d\x41\xcf\x29\x6c\xb8\xda\x0b\x50\x25\xe9\x75\x5a\x4c\x4c\xab\xa5\x9b\x50\x7f\x57\x31\xe3\x6c\x5e\x6e\x48\x8b\x84\xe9\x60\x68\x0b\x37\x97\x08\x09\xb0\xcc\x24\xf6\xf4\xc0\xe2\xdb\xaa\x0a\xb5\xd8\x4f\xed\x82\xe5\x7c\x24\x22\x91\x2d\xcb\x0a\x5e\xbc\xa5\xe3\x03\xc3\xdc\x14\xa3\xac\x6b\x18\x4f\xc8\x94\x0e\xf4\x1b\xe2\x95\xf9\x83\xef\x76\x5d\x16\xf8\x71\x09\x21\x7b\x34\xb4\xd9\xb0\x60\xf4\x05\x9a\x9d\xef\x29\xe4\x13\x27\x21\x10\x32\x9e\xac\x83\xd1\x67\x2d\x0e\x53\xe6\x93\xd6\x14\xc6\x1a\x72\x6c\xf2\x1c\xa2\x8e\x53\x87\xd8\x0a\x6f\xee\xa8\x76\xf8\xcb\x34\x31\xc8\xdb\xdf\x6e\x90\xe0\x9c\x6a\x9b\xa4\x97\x2d\x4d\xd4\xdd\x55\x47\x8f\xfb\x50\x21\x48\xc7\xe1\x60\x2f\xb6\xf3\xc2\x0e\x87\x02\xaf\x65\xdc\x6f\xa9\xd4\x40\xaf\x07\x4f\xaa\xce\x9a\x82\x38\xd6\x44\x58\x0e\xab\x0c\x16\xf1\x82\xe2\x33\xbe\xa8\x8b\xad\x17\x1a\xf2\x4a\x07\x69\x3d\x44\x4e\x8d\x00\xc6\xe2\x23\x75\xc8\x7f\x54\x3e\xeb\xca\x9c\x73\x69\x36\x18\xc5\x5e\x90\x56\x20\xc6\xba\xcb\x4a\x31\x51\x2d\xf6\x6d\xf2\x55\x2f\xd0\xb2\x15\x6d\x7d\x42\x9e\xd8\xfa\xd6\xaf\xb9\x8c\xb2\x9a\x90\xd5\x52\x6f\xa6\x60\xf3\xd7\xfd\x6b\xb9\xfe\xda\xb3\x54\x26\x60\xda\x6d\xd5\xb6\xb1\x69\xb9\xe5\x2a\x77\xbb\x50\xad\x43\xca\x7f\x07\x08\x36\x90\xe1\xfa\xbf\x81\x4c\x41\x02\xf5\x4b\x9d\x14\x7b\x1f\x7e\xb6\xe8\xb4\x57\xeb\x40\x18\xb2\x15\xf1\xc7\xfb\x81\x87\x89\xac\x05\x8a\xd9\xf4\xb8\xae\x2a\x1d\x25\x67\x1e\x60\xb0\x16\x23\xf7\x45\x2e\x42\x33\x26\xda\xa1\x08\x03\xc1\xd5\xbe\xa6\xfd\x76\x54\x74\xa4\x14\x43\xc3\xc7\x7f\x15\xf8\x12\x68\xb8\x14\xc6\xe4\x13\x57\xcf\x0e\x6f\xe4\x0e\x4e\x53\xbe\x51\xca\xa4\xe0\xa1\x10\xe6\x85\xdd\x5a\xcf\xd4\x54\x67\xcf\x56\xef\x33\xb1\x5e\x9d\x13\x86\xf3\x72\x2e\x41\x8d\x7e\x8d\x7e\x89\xff\x2a\x50\xca\x33\xc7\x1d\x61\xf2\x6c\x66\x2d\x91\xcf\x60\x14\x84\xb8\x49\xcd\xcf\x05\xad\x23\xfd\xde\x58\x76\xed\xf0\x9e\x99\x76\x6e\xe3\x58\xc0\x0c\x30\xca\x9c\xc8\xe2\x9b\x26\x72\x1d\x0a\xa3\x07\x51\x22\xeb\x15\x07\xf1\x9d\x40\x51\xba\xdc\xd1\x5c\x37\x26\x09\x2d\x64\x01\xd6\x89\xba\xe0\xe0\xfa\xb5\xb1\xf0\x9c\x70\xf0\x79\x9e\x86\x51\xb5\x0f\x34\x33\x13\x1c\x1f\xd8\x31\x46\x29\x49\x49\x78\x97\x8a\x8b\xe6\x38\xa0\x15\x60\xa8\x6f\x28\x1a\xaf\x03\xed\x9b\x6e\x9b\xe1\x30\x36\xa3\x2e\xf2\x2d\xa2\xa7\xec\x03\x9b\x4f\x91\x04\xc1\x7f\xdc\x0e\x9e\x73\x2f\x63\x93\xb9\x34\x0b\x89\x2a\x68\xb2\xce\x9c\xe1\x79\x50\x15\x01\xe0\x99\xa0\xd6\xc6\xa1\xea\x2c\xdd\x11\xda\xb0\x0d\xfa\xc6\x91\x44\x3a\xab\x33\x4a\x67\xb1\x20\x98\xe9\x04\x4b\x4f\x68\x4f\xfc\x32\x8d\xad\xa9\x16\x01\x34\xbf\x5c\xcb\x41\x35\x7c\x88\xb2\x00\xc3\x80\xa9\xbd\x46\xb0\x22\xa6\x7c\x0a\x54\x46\xe9\x1e\xb9\xc8\xc2\x05\xe5\x81\xc1\xac\x52\x85\x93\xfe\x4c\xcd\x3d\x8d\x42\x9b\x3f\xeb\xf9\x4f\xff\x53\xa9\x1a\x9d\x1f\xa0\xc9\x08\x1f\x63\xd0\x27\x0a\x3d\x57\x4a\x2f\x63\x7a\x8b\x9e\x06\x1f\x3f\xab\x18\xe2\x3f\xa8\x29\xd3\x5d\xd4\x07\x3a\xa6\x5f\x20\x5c\x2a\xbd\x7e\xb9\x54\xd5\x20\x1c\xf5\x60\x22\x65\xb2\x15\x64\x05\x96\x55\x19\x9c\xdb\xca\x51\xd6\xfd\x38\xf0\x68\xe4\xdb\x98\x03\xfc\xc7\x13\x38\x8a\x61\xb3\xc7\xd9\x63\x5f\x6c\xf7\xb2\x94\x9d\xa3\xf5\x7b\x81\xa7\xa6\x63\x32\x71\xa1\xbf\x6b\x40\x70\x98\x3c\x1f\xb9\xb6\x0f\x6e\x2c\x0e\x74\x93\xf1\xc6\xdf\x9a\x9e\x6e\xbf\x50\x44\x2c\xaf\x81\x5f\x59\x2b\xbd\x2e\xe8\x9a\x3a\x71\xbb\x66\x30\x74\x8d\x16\xae\xa8\xe6\xc5\x79\xc7\x12\x79\x8e\x9e\x36\xdf\xa6\x2a\x2d\x93\xcb\x9e\x08\x17\x58\x3b\xc7\xdf\x5e\xcf\xa0\xae\x9f\xf0\xe1\xcf\x22\xf2\xb9\x52\xf6\xf7\xc9\xcd\x57\xbf\x75\x70\x52\x1d\x9b\x3f\xd7\x3d\x17\xb0\x83\x58\xf6\x60\xff\xc6\xbf\x7f\xaa\x55\x60\xa2\x62\x0e\xba\x1e\xd5\x1a\x90\x38\x97\x5e\x51\x05\xba\x82\xea\x4a\x07\x13\xde\x7d\xff\x1d\x75\x98\x71\xa6\x1b\xab\xe3\x7e\x5d\x8f\x2a\x7c\x69\x87\xea\xa9\xfe\x2f\x9e\xeb\x28\x12\xa3\x5b\x14\x39\x22\x84\x45\x38\xe0\x84\x3a\x1d\xd9\xf4\x77\xd0\x48\x81\x85\xbb\x1d\xa5\x14\x96\x8a\x0a\xbc\x76\x3d\x27\xde\xe1\x8a\x7e\xa9\x00\x05\xb1\x5d\xec\x26\x96\xb1\x4b\x12\xc5\x78\xb8\xe9\x8a\xa3\xf5\x1a\x58\xc3\xed\x27\x4e\xe7\xcd\x21\x2a\x4e\x29\x8d\x88\x2a\xc0\x9e\x1d\x45\x71\xd1\x52\x87\x18\x9b\x24\xbe\x69\x54\xd1\x9e\x8b\x7a\x23\x56\x3d\xaf\x6c\x75\xf5\xf7\xeb\xd7\xd4\xe8\x16\x89\xd9\xd2\xda\xc8\x5b\x0c\x73\x73\x8b\x1e\x05\xa3\x8b\xa4\x1f\x2f\x05\x90\xe6\x08\xeb\xf1\xc6\x05\x38\x75\xa8\x3d\x30\x59\x94\x38\xee\x50\xa7\xea\x5c\x7d\x83\x4b\xd4\x4e\x3b\xad\xc4\xf7\x74\xd3\x60\x3f\x0d\x99\xb0\xda\x15\x1e\xaa\x8f\x09\x33\x73\x43\x6f\x67\x98\x26\x73\x51\x36\x60\xb7\xd7\xc9\x79\x79\xf5\x96\x55\x8d\x3a\x5f\x73\x8a\x31\xc9\xd2\xa8\xa5\x34\xee\xb9\x05\x44\x58\xba\x04\x84\x13\x25\xf6\x68\x9a\x91\x9e\x36\x99\x25\x7c\xe5\x79\x45\x1b\x74\xde\x21\x01\xe8\x38\xe1\xf0\xca\x31\x56\x57\x0f\x05\x8b\xc5\xca\xf5\x72\xaa\x89\xd3\x18\x9a\xc2\xe4\x45\x96\x0e\xfb\x51\x38\xa9\x42\x87\x0b\xaa\x3d\x13\x1b\x09\x8b\x91\x81\x8d\x22\x10\xda\x40\xf0\xc1\xad\x4a\x8a\x95\x09\x11\x0b\x5f\xeb\xf2\xc1\x7c\x24\x1a\xed\x92\x97\xa3\xb7\xd4\x94\xd3\x68\x6a\xb9\xa5\xa8\x9c\x08\xf4\x44\x6f\x29\x8d\x4a\xf4\xd8\x22\x3c\xbd\x5b\xb1\x85\xa7\xbd\xcc\xe6\xf9\x0e\xda\x7c\x8e\x8d\xd6\xc1\x71\x7f\x82\x93\x86\x21\x43\xe4\x0e\x72\xf9\x87\xf6\x98\x94\x82\x3c\x57\xf2\x59\xdd\x8e\xf1\x7e\xe9\x9b\xf8\xee\x05\x1e\xe2\x7a\xd5\x91\x08\xcf\xa6\x59\x96\x2e\x92\xf5\xd0\x91\xa3\xe4\x2c\xab\xef\x15\x81\x9f\x9a\xf1\x48\xb3\x9d\x9a\x90\xe1\x0f\x94\x06\xfc\x23\x9c\x06\xac\xf9\x8b\x63\x5d\x40\x33\x0a\xb4\x37\xd1\x51\xed\x59\xf4\x6c\x58\x03\x17\xb1\x06\x04\xe8\x59\xbd\x00\xb3\xa7\x6a\x5b\xf6\x78\x39\x7e\xa6\x7d\xc9\x01\x6a\x72\xf4\x94\x6e\x71\x5c\x6d\x82\x8f\x0c\x33\x3b\x67\x99\xb3\xde\xc9\x88\x79\x49\xb1\x1a\x8e\x32\xcd\xa3\xa4\xb7\xad\x7a\x60\x64\x2d\xb7\x80\xed\x01\x7f\x7a\x8d\x8e\x7c\x64\xcf\xd1\xdb\xce\x49\x55\x25\x29\xf6\xdb\x5a\x71\x76\xf3\xb2\x72\x18\xbe\x54\xb5\xc6\x64\x64\x77\xb6\x1c\xed\x3d\xab\x43\xcb\xbc\xd0\x38\xe2\xd0\x66\x1a\x55\x7c\xf5\xd9\xd2\x77\x69\x3f\xc2\x42\xa5\xbd\x94\x3e\x43\xb6\x1a\x03\x39\x89\x8c\x86\xa8\x79\xf9\x4a\xc0\x04\x57\x02\xe0\x26\xb5\x96\xc7\x5d\xe8\x76\x37\x32\xf1\x52\x1e\xe5\x3a\x85\x49\x07\xb9\xa4\x33\xfd\x0b\x74\x33\x33\xa1\x3c\x72\x94\x6c\x24\x14\x6a\xb9\x06\xf6\x15\x25\x59\xd2\x8b\x16\x6c\x4e\xac\x7c\xe2\xa4\x2a\xb8\xea\x05\x9d\x8a\x42\x77\x05\x8e\xc2\x6b\xa8\xe0\x3a\xd5\x4e\x27\xe9\x71\x8b\xf6\x0b\x10\x8d\x3f\x1c\x6b\xa7\xde\x37\x4d\x34\xc7\x80\xdd\x16\x62\x8a\x99\xe9\x57\x1b\x73\xce\x81\x01\x3f\xb0\x52\x3e\xa7\xb0\xf4\x85\xcd\x8a\x45\x89\x0d\xa4\x3b\x8e\x49\x8e\xf9\xa6\x29\xa6\xc8\x8b\x6c\xc4\x1c\xbc\x2d\xa7\x6b\xfb\x9b\x81\xc2\x9a\xfd\x66\x13\xbe\x2c\x19\x65\xb9\x4b\xba\x08\x3e\xc4\x83\x89\xd1\xb5\x2c\x64\xce\x7a\xc9\x5a\x43\x3f\x75\x40\x92\xf7\x27\x68\x60\xf8\x5a\x11\x7e\xf5\xd3\xbc\x50\x0e\xfa\xed\x40\xb9\x04\xa0\x55\x84\xe1\xfd\x88\x7e\x09\x73\xf9\x9e\xe2\x6a\x9a\x8b\x8a\xea\x48\xdf\x46\x83\x21\x11\x60\xf5\xa7\x08\xb3\x37\x75\x14\x38\xf1\x8f\x4b\x85\x98\xe0\x0a\x9b\x90\x95\x79\x0e\xcf\x15\x76\x8f\xf1\xb6\x17\xc6\x8a\x28\x7b\xf7\xb6\xfb\x69\x96\x5b\xd0\x43\x39\x34\x92\x5b\x69\x27\xc6\xce\xc3\x2a\x0e\xcc\xa2\x6e\xd7\xa5\x2b\xb0\x56\x00\xba\xe4\xeb\x8e\x6a\x6f\xb1\xd9\x20\x47\xe3\xba\x50\x21\x29\x2e\xfd\x13\xaa\x62\x0c\xfe\x1d\xe4\x59\x6e\x23\x3d\x80\x04\xc4\xbf\xc1\xfa\x44\xed\xe3\x0b\x45\xe3\x04\x9c\x3e\xff\xfb\x58\x3d\x82\x3a\x9b\xc2\x34\xeb\x4e\x78\x0d\xf3\x3f\x2f\x7d\x8f\xd3\x35\x85\xf4\x1e\x37\x6a\x87\xf7\xb4\x7b\x69\x51\xd8\x44\x67\xad\xd0\xb4\x25\x39\x92\xb1\x73\x91\xf8\xf2\x07\x51\xc8\x4c\xa8\x38\x81\xb8\x23\x8d\x6f\x02\x4f\x7f\x62\xb2\x81\x6e\xf5\x45\x9a\x8a\x61\x93\x81\xaf\x5d\x5d\xd1\x4c\xa1\x57\xc6\xcc\xf6\xaf\x4f\xb5\xf3\x68\x30\x8a\x0b\x93\x58\x52\xcd\x50\xc4\x4b\x80\x44\xf3\x75\xc3\x44\x4e\x89\x74\xe4\xa4\xef\xf8\xbb\xa6\x9b\x1a\xbe\x47\xb5\x64\x24\x8b\x38\x9d\x31\x8e\x6c\x2d\x6c\x6c\x33\x11\x9b\xc5\x70\xfe\xa1\x26\x62\xf8\xc3\x1a\x97\xc9\xd0\xb2\x10\x93\xb0\x1c\xd0\xf0\xb2\x36\x82\xe2\xd1\xbb\x55\xcb\x1e\x66\x71\x77\xbb\xa2\xab\xbb\xc5\xc9\x36\x04\x33\xcc\x05\xec\xfa\x87\x5c\xe8\xf2\x7b\x38\x0a\x45\x95\x6c\x2c\x91\x2d\xa2\xfe\xf4\x3c\x70\x5d\xd6\x1a\xa9\x5a\xfa\xa6\x97\xb7\xa8\xcb\x49\x48\x7e\x69\x4e\xf9\xa6\x81\x87\xb4\xf2\x8a\x93\x6e\xcb\xb7\x1f\x1e\x0b\x7c\xcb\xe3\xb1\x31\x37\xfa\x57\x39\xf9\xee\xf3\x33\xa2\x28\xa1\xbc\xb5\x9b\x5a\x60\xe9\x63\xc5\x7b\xd2\x8f\xba\x5d\x59\xa7\x1c\xa9\xc0\x82\x4a\xd8\x32\xfe\x7c\xec\x05\x57\x43\xc5\x94\x08\x35\xb6\x2c\xf1\x6e\x72\xb3\xe0\xec\x25\x4e\x7f\x34\x02\xb3\x3e\x1f\xad\x58\xd8\xce\x87\x2a\xe5\x58\xd0\x68\x55\x4f\x83\xf3\xf2\x33\x3c\x0d\xdf\xa8\x6e\xc2\x74\x96\x95\x5e\xb6\x28\x21\xd1\xbf\x0a\x14\xc2\x02\xa1\x1e\xea\x74\x9c\x32\x62\xa5\x41\x3a\x76\x91\xc5\x3f\x39\xb6\x79\x8f\xcc\x10\xd0\x5e\xa0\xfc\x4a\x21\xd6\x73\x12\x35\x10\x97\x99\x98\x40\xc5\x0e\xfc\xc3\x3a\x93\x92\x2e\xf6\x76\x7a\x21\xb2\x8b\x36\xcb\xb7\x2a\x26\x84\x73\xaa\x07\x8c\x29\xaf\x30\x53\xf7\xe1\x46\xf0\x4d\xe0\x55\xfc\xce\xab\x54\xf6\xf9\x26\xb4\x8c\x3d\x3a\x8c\xb2\x0d\x41\x7f\xa9\xd0\x01\xff\x93\x0b\xf1\x62\x6b\xa4\x92\x27\x2a\x2d\x35\x5d\x97\x8d\xe3\x73\x60\x0f\x47\x6d\x9a\x5c\x98\x36\x8e\x10\x0d\x6f\x3c\x74\xa7\x0e\xb5\x33\x6b\xf2\x9c\xaa\xaa\x13\x2d\xa5\xce\x46\x63\x00\xeb\x7a\x4f\xa1\xe7\xaa\x33\x80\xe3\xcf\x34\x4b\xdc\x2a\xd2\xbf\x85\xb2\xd5\x26\x70\x13\xe1\xd8\xbd\x56\xfe\xa2\x4f\x9e\x1d\x1d\xda\x2c\x1a\x80\x8b\x29\x05\x31\xb5\x58\x6b\x1a\x12\xe4\xc9\x98\x27\x12\x76\x69\x9c\x69\xe9\xf0\x9e\x76\xd1\x27\x16\x8c\x6f\xfe\x06\xa7\x9b\xdf\x25\xb3\xc8\xd7\xc1\x46\xf6\x43\x57\xeb\x48\x16\xa2\x2c\x4d\xe8\xf7\x41\xff\xa0\x3d\x51\xb8\xea\xef\x6b\xd0\xe5\x8f\xd5\x02\x49\x6c\xb1\x98\x66\xa0\x2c\x85\x5d\x62\x06\x75\xac\xa5\x63\x38\xd1\x54\xb5\xe8\x4b\xa4\x8e\x60\xde\x40\xfc\x23\x70\x6b\x45\x13\xff\x29\xd6\x12\x22\xd0\xcf\xc8\x09\xa9\xf5\x3d\xe2\x84\x3d\xa5\x8c\xf3\xd0\x66\xf9\xc8\x74\x2d\xc2\x3e\x1e\x3e\xda\xeb\x88\x70\xae\xd3\x82\xe4\x6b\xc5\x2b\xa8\x73\x31\xdd\x7e\x34\xa1\xea\xda\x62\x7c\x71\x82\x7f\xa8\x08\xc9\xc6\x8f\x44\x56\x90\x71\xd3\xef\xb4\xdd\xf7\xef\xe7\x73\x7b\xa2\xe3\xe1\xf4\xdb\x94\x30\x53\x66\xe2\x5d\xf4\xb2\xc8\x0b\xb2\x08\xb9\x74\x80\xa9\xee\xa9\xaf\xd4\x58\x7e\x4f\x2a\x2e\xc8\x35\xad\xdc\x78\x99\xa0\x7f\x18\xd3\xfb\xa5\x4b\x60\xff\xe6\x3f\xec\xa8\x6c\xc7\xe7\xda\xa7\xfa\x0a\x25\xb4\x90\xa5\x6d\x11\xf6\x06\xa0\xaa\x9d\xcb\xad\x97\x8f\xb8\x08\x5a\xf2\xeb\xae\x8f\xb0\xe5\xd9\x03\x02\xc5\x2a\xa0\x9b\xa0\xbe\x01\xf7\x1f\x1b\xe5\x7d\x55\xf6\x7b\x5f\x31\x79\xd8\xa4\x17\x25\xd6\x66\x92\xdf\xc6\x7a\x05\xe5\xb0\xeb\x68\x75\xee\xb9\xd6\x09\x48\x47\x59\x6e\xe3\x05\x9b\x4f\xfa\x0a\xcd\x47\x30\x7e\x7c\x53\xfa\x07\x63\xe7\x9c\x6f\x5c\x8f\x82\xe9\x2e\xd8\xac\x88\x72\x3b\x90\xf6\x16\xc4\x51\xe7\x95\x0a\xde\x79\xd5\xc5\x6c\xb2\x81\xc5\x79\x27\xa0\x0a\x6f\xb8\x2f\xd6\x8e\xf2\xd1\x10\x56\x87\x2b\x10\x8a\x89\xf0\x64\x93\x68\xe0\x9c\x35\x85\x4b\x2f\x79\xee\x23\xcd\x4d\xd9\x80\xd4\x46\x29\xc5\xf5\x35\x31\xa2\x50\x51\x91\x57\x5e\xbb\x73\xc4\xe2\x22\xa5\x12\x7c\x6d\x53\xf3\xcd\x58\x16\x77\xff\xfe\x76\x98\xc6\xdd\x09\xd5\xfa\x18\x28\xfe\xff\xcf\xd4\xa1\xb8\xac\xb2\x6b\x04\x53\x48\x44\x32\xc8\xa1\x88\x3d\xa2\xd8\xe5\x78\xba\x76\x21\x2d\x18\x9a\x29\x4c\xe7\x2d\x47\x1e\x73\xbe\x36\x98\x3d\xc3\x8c\x14\x0c\x89\x2b\x15\x33\x2e\x94\x50\x71\x54\x3f\x54\x0c\x5a\x7f\xa3\x4e\xe0\xd9\x74\x30\x6b\xb2\x2e\x05\x37\x7b\x9a\x39\x88\x14\x1d\xc1\x62\x62\xb3\xbc\x1f\x0d\x27\xfd\x63\xc3\x1a\x02\xaf\xf0\x1f\xc9\x14\xc0\xc1\xfa\x67\x68\xe0\x13\xc4\xbe\xf6\x00\xcd\xd0\x3e\x41\x94\x04\x92\xe4\x27\x57\x9f\x6f\xb4\xdc\xcb\x1a\xbe\x03\x69\x71\xe6\x69\xc6\x89\x76\x53\xd7\x37\xd6\x74\xd1\x59\x58\xce\xf8\x4e\x51\x7a\xb2\xba\x00\x8c\xc6\xcf\xd4\xd9\xbb\xd6\x08\x48\x1c\x98\x6c\x31\x0a\xe7\x19\x00\x25\x6c\x9b\xf4\x4b\x7c\xa3\x94\xd4\x4c\x92\x58\x64\x9a\x99\x21\x06\x2b\x42\xe8\x62\x94\x29\xb5\xf1\x76\xfa\x3b\x18\xa2\xab\x64\x94\x90\xb7\x39\xa7\x19\xde\x4e\xd0\xca\x00\x54\xab\xb5\xac\x62\xe9\x9f\x68\x2a\xd7\x77\x15\xfe\x74\x33\x11\xc1\xe2\x78\x6d\x8d\xa9\x0a\x4e\x4f\xb7\x17\xb3\x88\xf5\x2d\xf8\xf7\x02\x8f\x70\x39\xd7\x10\xfe\xbc\xd6\xa6\x8e\xdf\x96\xca\xb5\x00\xcc\xc7\xd7\x0e\x98\x45\xcc\xdf\x45\xdf\xbe\x39\xd2\x0d\x32\x60\x70\xe4\x6b\xe7\xa8\xf4\x46\x51\xd7\x6e\x51\x55\x2e\xa6\x05\xd0\xc6\x1b\xab\x14\xa9\x37\xd6\xc5\x20\x26\x19\xc4\xc3\x3f\x6c\xc8\x41\x1f\xac\x8e\xb9\x28\xed\x72\xdc\xe5\xb8\x42\x7d\x5a\x77\x9c\x4a\x6b\xdf\x74\x7b\x94\xbc\x31\xe2\x34\x17\xb6\x0f\xfb\x7b\x7c\xa3\x20\x41\x85\xa9\xce\x51\x4a\x00\x38\x68\xfc\x81\x3d\x72\x3d\x76\xea\xed\x9b\x6e\x27\xb6\x17\xdb\x10\xf4\x2d\xa2\xcd\x52\x83\x5e\x28\x69\x96\x6a\x0d\x88\x8f\xe9\x97\x4a\x9a\x0e\x76\x54\xff\xe3\xf8\x49\xab\x57\x13\xea\x6e\x0f\x98\xdc\x84\xd5\x01\xdf\xe4\x69\xc0\xd8\xb1\x49\x6e\x53\x1a\x00\x81\xdc\x55\x7a\x5e\xac\x47\xd8\x05\x7a\xa8\xe7\xff\x1e\x4e\x3f\x61\x08\x94\x84\xb1\xc9\xc2\x7e\x54\x58\x4a\xb1\xa8\xf6\x8b\x63\x0a\x41\x77\x4c\xa5\x3d\xc2\x74\x60\x9f\x50\xb1\x4e\xa9\x69\x80\x2e\xc3\x43\x64\xdb\x43\x4f\x8e\xfc\xd8\xb7\x03\x45\xe2\xbe\x42\x1b\x12\xb9\x9b\xcd\x1d\x95\xba\x07\x2c\x1d\x8b\xe5\x04\x9c\x00\x49\xae\x54\xa3\x83\x62\xc7\xe7\xaa\xf7\xf7\x8e\x8a\x8c\xf2\x22\x33\xa3\x59\x9c\x01\x72\x60\xd3\x77\x0b\x4b\x9f\xa2\x84\x1d\x65\x49\x3e\xe1\x35\xd5\xd7\x54\x8a\x06\x0f\x87\xbd\x75\x69\xac\x23\xeb\xf5\xd7\xa9\xeb\x2b\x4b\xa2\xb7\xc4\x59\x47\x5c\xf2\xbe\xa2\x6a\x79\xdf\x2b\x29\xf4\x4d\x36\xb4\x99\x6a\xb5\x7b\x08\x3f\x05\x26\x6b\x6b\xc7\x1f\x9c\xd7\x14\xe5\xb5\xe9\xa5\x4f\xd2\x77\xab\xaa\xad\x6b\x72\xa2\x67\x45\x02\x75\x45\x91\x84\x48\xf2\xa7\xe6\xaa\x33\x87\xb4\xf2\x01\x27\x88\xbd\x06\x3e\xc5\x35\x06\x26\x8b\xa7\x48\x53\x24\x28\xf6\x96\xe3\x82\xbc\xaa\x3b\x40\x7e\x47\x91\x0d\xc4\x66\x31\x73\x52\x27\x70\xaa\x18\x14\xc9\x37\x4a\xe0\xda\x2e\xd8\x04\x3b\xc4\x09\x2b\xee\x9d\x92\x6b\x6c\x45\x58\xc0\x7b\xca\x1a\xde\x53\x95\xcb\x30\x0d\xe7\x87\x51\x81\xf9\xc5\xda\xbb\xab\x44\x8b\xee\x3e\x16\xc7\xd4\x4b\xd3\xee\x92\x35\xd9\x84\xef\x71\xbc\xa8\x74\xce\x59\x07\x1b\x0e\xea\xa6\x8e\x7f\x3b\x33\x3b\x4a\xba\x86\x1d\x22\xd1\xf0\x52\xed\x7a\x8d\xb5\xdb\x68\x40\xea\x0a\x64\x7a\x45\x58\xd4\x37\x92\x5c\x51\x84\xb8\xc9\x0b\xc5\x53\xbe\x9a\x77\x23\x50\xb0\x40\x4c\x37\x79\x15\x33\xbf\xd4\xd1\x32\x41\xf4\xf3\xb0\x93\x4f\x52\x0e\x4e\x68\xa3\x6b\x4a\x40\xad\x5f\x9f\xf2\x2c\x32\x2f\x1f\xd1\x52\x6b\xaf\xc9\xfa\x08\x34\x34\x84\xdb\x71\xe0\x4a\x9c\x09\x14\x24\x77\x95\x3b\x7c\xa5\xeb\xdd\xf5\x6a\x99\xcc\x52\xa1\x0f\x8b\x92\x5b\xbd\x60\x5a\xbe\x43\x11\x0d\xef\x26\xb8\xa2\x88\x68\xbe\x5f\x7a\x3f\xea\xbe\xd7\xd9\x4b\x0b\x1b\x73\x99\x0b\xbb\x9a\xf5\x84\xc4\x40\xf8\x0f\xdd\x19\x73\xff\xa8\x21\x7a\x60\xf2\x9c\x1a\x24\x15\x27\x64\xcb\x29\x4d\x5d\x71\x25\xba\x41\x74\x74\xa2\xa5\xb8\x90\xab\xc7\x14\xd8\x93\x62\x52\x19\x87\x9a\x55\x4e\x66\x9a\x3a\x14\x16\x1c\xeb\x0b\xd8\x2f\x7c\xa3\x70\x17\x79\x9c\x2e\x12\x6b\xd2\x81\x3d\x07\x84\xf5\xa5\xf4\x4d\xe3\x9b\x80\xca\xc2\xdb\x4d\x76\xbc\x28\xd1\xe7\xf8\x42\xbe\x69\xca\x59\xd8\xa4\xc8\x90\xf3\x43\x9c\x79\xbb\xf4\x31\xe7\xed\xe0\x19\x07\x1b\xeb\x5a\x40\x3b\xd9\x91\x16\x72\x93\x96\xd2\xb9\xf7\xe7\xdd\x5c\x1c\xf5\xfa\x05\x97\xb7\x61\xa4\x56\x54\x72\x1c\xb1\x14\x57\xc8\x03\xef\x0c\x32\xe9\xbc\x6a\x2b\x39\xc8\x3e\xd6\xf5\xc0\x83\x3f\xae\x28\x81\xc8\xad\x30\xf5\xc8\x55\xdf\x57\x95\x8c\xdc\x0e\x8b\x97\x76\xd2\xcb\x63\x1b\x3e\x0a\x54\x87\xff\x03\xfc\x90\x70\x31\xd1\xfe\x17\x85\x9d\xd6\x06\xad\x0a\xd8\xa8\xf3\x0a\xb3\x71\x41\x35\x8b\x30\xe8\xc9\xf5\xb6\x1e\x16\xbc\xf7\x8d\xb1\x7a\xc7\x8b\xed\x85\xa8\x6b\xd3\x90\xc4\x21\x0a\x0d\x10\xbe\x0a\xdf\x54\xc8\x10\xbc\x7b\x6d\x8f\x0e\x4d\x42\x74\x59\xd5\x1f\x8b\xf4\x76\xcb\xf1\x10\x6d\x5d\xf6\xe4\x0f\x57\x79\xfb\x09\x07\x8a\xe2\x0a\xbb\xe4\xe6\x31\x4a\xba\x76\x68\x93\xae\x4d\x20\x72\xc4\x22\x62\x8a\x87\x85\x2d\xb3\x68\x31\x6f\xb4\x47\xaf\xbf\xde\xce\xdf\x1c\x59\xfb\x16\x7a\xbd\x91\x01\x65\x7d\x2d\x11\x92\xa8\x06\x01\x27\xc3\x03\x85\x70\xab\x02\x41\x12\xe3\x75\x59\xea\x9f\x04\x35\xb4\xfb\x46\x90\xd6\xd4\xa1\x76\x4e\x6f\x1f\xe5\x85\xc9\x27\x35\x23\xfa\x43\xec\x2d\x58\x5b\x98\x6c\x25\xd9\x22\x8c\xed\x93\xcb\x12\x5c\xcf\x65\x69\x52\x44\x36\x6b\x29\x72\xa9\x0d\x4d\x45\x3e\x70\xce\xa3\x41\x14\x9b\x2c\x02\x93\xe6\x6b\x8e\xa0\x85\x00\x16\x8e\xb9\xc5\xb5\x29\x32\x8e\x59\x3c\x40\xff\xc2\x66\x54\xa4\x03\x73\xb4\xa5\xda\x65\x75\x4f\xf2\xb5\x5a\x50\x93\x99\x3e\x87\x0a\x12\xf2\xe8\x8e\xe5\xa6\x06\xcf\xae\x1d\x98\x04\xb5\x09\x9d\x14\xc3\xab\x3f\x0a\xb4\xa0\xab\x82\x2a\x9a\xa4\x87\x3a\xeb\x2b\xa2\x74\xaa\x1a\xcc\x7f\xa6\xfc\x85\x70\x36\xc2\x93\xc3\x49\xbd\x87\xb7\xe4\x9b\xb1\xf4\xde\xe1\x3d\x53\x94\x82\xb6\x49\x3e\x62\x0b\xa1\x37\xab\x38\xd1\xe3\x28\xa3\x99\xb6\xcd\xcc\x84\x7e\xf3\xb3\x2a\x8f\xc8\x82\xdc\x30\xae\x0f\x95\x63\xb6\x90\x46\xa1\xcd\x27\xbd\xab\x03\x26\x23\x01\xa5\x33\x86\xa4\x86\x48\x1d\x6f\xff\x69\x2f\x9a\x05\x49\x0c\x70\x46\xba\x96\x9d\xf6\xe7\x76\x94\xe4\x51\xd7\x66\xf8\x41\x58\x8d\x9f\xea\x4c\xea\x1f\x97\x4a\xf6\xfb\x42\xa9\x54\x90\x6e\x36\x24\xcf\x5f\x69\xe7\x23\xc9\xca\xe0\x1c\xbd\x41\xeb\x42\xbc\x68\xfa\x62\xf1\x58\xfd\x7a\x9a\x8b\xc8\x14\x50\x52\x86\xb9\x75\xf0\xb3\xae\xbb\xc6\xc3\x79\xb9\xc7\x12\xff\xd3\x48\x51\x0e\x20\x70\xcb\x17\x9f\x6f\xa8\x7e\xc9\x1b\x8a\xc3\x7a\xd6\xc4\x6f\x19\x66\x38\x44\xe8\x76\x1a\x40\x5a\xbe\x09\xe4\xfc\x4e\x87\x36\x79\xb2\xf2\x13\x24\x16\xf1\x38\xde\xd3\x2a\x56\x7c\x02\xe2\x56\x2c\x87\x57\xaa\x88\xeb\x23\xa5\xbd\xc4\xa8\xf4\xda\x51\xc0\x3c\x66\xa5\xa7\x17\xd9\x4c\xce\x2e\x2c\xf1\xdf\x43\x5f\x3a\xac\xc9\x3d\x85\xff\xf9\xd1\xc6\xa6\xfa\x03\x7b\x0e\xb4\xf7\xee\x25\x94\x2c\x76\xc8\x7b\x74\x94\xea\xb6\xde\x75\x2e\x63\x21\xab\xf0\x9d\xa0\xee\xf9\x3a\x67\xf9\xf2\xd8\xec\xee\x9b\x6e\xc7\xe9\x12\xab\x3b\xe1\x55\xd8\x15\xe5\x1b\xd5\x58\xd1\xcb\xac\x4d\x28\x46\xc3\x61\x76\x41\x49\xd2\xde\x0d\x14\xe3\xd0\xaa\xe6\xb9\xbe\xc4\x4e\x39\x2c\x11\x44\x36\x71\xbe\xd7\x0a\x1c\xab\x2a\xe7\x73\x53\x43\x14\x6e\x2a\xb6\x09\xd3\xed\xda\xee\x4e\x8f\x84\xfe\xa9\x72\x62\x11\x48\x30\xf7\x22\x9d\x78\xaa\x83\x55\xfa\x01\x77\x62\x83\x62\x36\xb6\x12\xa2\x04\xc9\xcf\x9f\xf2\x53\x22\xfb\xca\xb2\xac\xb0\xb5\x7f\x87\xb7\xc1\x02\xdf\xb9\xac\x16\x78\x9a\x2d\x9a\xac\xbb\xd5\xcf\xe9\x5f\xe1\xb7\x14\xba\xf5\xa0\x43\xb7\x7a\xda\x8d\xef\x2b\xfe\xaa\xbf\x0a\x94\x88\xe4\xf7\x9d\x43\x58\xd8\xf8\x28\xe8\x7b\x25\x43\x82\xb8\x90\xaf\xc7\xdc\xee\xd7\x5f\x6f\x27\x36\x2a\xfa\x55\x9c\xb5\x77\x2f\x7f\x37\x74\x1c\xb9\x9d\xae\x54\x1d\x49\xe7\xd4\x91\x4d\x93\x9a\x0f\x0d\x0b\x89\xa8\x1a\xac\xc8\xf3\x8d\x8b\xc9\x10\xbb\x99\xb5\x03\xa4\x1f\x5c\xdf\x8c\x3f\xe2\x56\x1d\xe3\x52\x9a\x85\x7d\x5b\x85\xa5\xdc\x3d\xc4\xc4\xb7\x68\xe7\x44\x6a\xf2\x2f\x68\x68\x5c\x25\xe0\xe5\x23\xae\x95\xd0\xf7\xea\x8c\x92\xae\xcd\xa3\xcc\xcc\xc6\x16\x89\x75\x6c\x84\x13\x0a\x00\x78\x4f\x25\xd9\xb5\x6f\x97\x59\x1b\x33\x98\x01\x71\xf8\x07\xb4\x6d\xf9\xba\xa9\x54\x94\x99\x28\xe7\xe4\x6e\x0d\x32\xec\xd5\xb1\x7d\xd3\x61\x66\xe9\x44\x63\xa2\x15\xa5\xf6\x3e\x41\xb1\x89\xa0\x43\x1a\x30\xd6\xc3\xd8\xe4\x05\xd5\xce\x3d\xd2\xeb\x8a\xd2\x22\x1e\x67\x0c\x7a\xfd\x75\x6a\x38\x74\x4c\x9e\xae\x25\xea\xb0\x28\x3e\x8e\xb7\x78\x4c\x4f\xb7\x87\x69\xbc\x34\xe4\x9f\x61\xfc\x2d\xfd\x8c\x60\x71\x1f\x0f\x8c\xca\x07\xb6\x7a\x42\xd4\xaf\x81\x74\x85\xe5\xc7\x6b\xfd\x5d\x2d\x71\xaa\xd8\xcc\x2b\xc3\x1f\x9a\x22\x45\x6b\xdf\x2b\x0c\x55\x47\xb7\x3c\x32\xc5\x9f\x28\x03\x7b\xa3\x9e\x2e\x4f\xa4\x09\x53\xb2\x4d\xf4\x23\x92\x86\xf2\xbb\xaf\x30\x59\x34\x37\x97\xc3\x37\x40\xf5\xf4\x86\xe2\xe4\xbb\xd1\x48\x26\x9f\xa5\x23\x49\x35\xc3\x06\xac\x28\x4e\xbe\x15\xd7\x3c\x30\xb0\x26\x29\xa2\x81\x9d\x6c\x29\x26\x8d\x96\x63\x34\x64\x57\x0c\x95\x08\xc8\x0e\x23\x1f\xf5\x54\xc7\x3b\x24\x83\xe8\x28\x1d\xbf\xc8\xda\x3f\x2a\x15\xb4\xe9\x72\x2d\x6d\x4d\x43\xc1\x7f\xe5\x12\x87\x6f\x8e\xd2\xc2\xb4\xea\x20\x60\x07\xfc\xbd\x3a\xd6\x20\x40\xd8\x8f\xe1\x68\x36\x8e\x42\x93\xd4\x39\x96\x2e\x6a\xaf\xf5\x62\xcd\x89\xeb\xa7\x84\xc8\x90\x26\x30\xac\x24\xd1\x80\xa2\x41\xe2\x1b\xc4\x22\x02\x42\x69\x28\x39\x66\xd1\x02\x9f\x21\x70\x16\x51\x7a\xe0\x6b\x2c\x4a\xde\x30\x09\xc1\x17\x09\xda\x2f\x6a\x33\x5c\xf1\xa2\xe5\x21\xd5\xaf\x8d\xbf\x51\xf9\xf1\x85\xb5\xf1\x84\x4f\x30\xa2\x34\xc4\x60\x5a\x0c\x2f\xfc\xa9\x9b\x0a\x8a\xbf\x98\x66\xf3\xd5\x91\xb1\x57\x98\x36\xce\x2b\xe1\xf2\xb3\x81\x62\xc1\x38\x1d\x68\x25\x60\x8c\xa0\x88\x11\xfa\xe4\xce\x43\xd8\x6b\xe9\x2e\x23\x33\x06\x0b\x0f\xee\xab\x5a\x34\x23\x2b\x67\x63\x64\x45\x11\x3b\xb9\xdb\xa9\x63\x35\x42\x16\xe3\x8a\x46\xa2\x56\x51\x3b\x3e\xd8\x7e\xf9\xc8\xb3\x78\x22\x4e\x95\x68\xed\xcb\xd2\xbf\xdc\xaa\x02\x94\xbc\x07\x60\x27\x47\x93\x28\xc0\x72\x3b\x81\x92\x5d\x3e\x5b\x6a\x7e\x11\x0a\x37\x5c\xfc\xe9\xf1\x27\x38\xbd\x90\x74\xf9\x7f\x35\x6f\xc9\x6a\xd9\x7a\xe1\x05\x2f\xc7\xf6\xcd\xdf\x70\x99\x38\x65\x33\xfe\x82\x10\xf1\x30\x37\x57\x28\x1b\x83\xd0\x6d\x7b\x87\xfc\x32\x81\x5c\x6a\xed\x74\xdd\x20\x37\x0a\xab\x38\x6c\x6b\x65\xc0\x9d\x84\x85\xab\x72\x70\x5f\x2e\x8e\x9d\xd6\xb2\x2a\x4c\xb5\x3a\x5e\x82\xf5\x0a\xcd\x0d\x7f\xba\x89\x44\x7a\x68\x72\x86\xe9\x38\xfd\x1f\x87\xe6\x6c\x75\x3c\x66\xeb\xd6\x06\xfc\x78\x98\x0e\xb8\x81\x13\xd9\x3a\xf0\x94\xf1\xb5\x3b\x04\x6d\xd2\xcd\xd2\x30\x13\xfa\x44\x81\xb7\xb4\x14\xff\x88\xe2\xa3\xfb\x58\x53\x79\xa4\xc3\xa5\x2c\xea\xf5\x8b\x09\x6d\x7d\x3c\x84\xef\x4c\xa9\x5a\x7e\xee\xa9\x42\x57\x91\x99\x05\x8b\x0e\x2d\xbf\xc4\x91\x86\xc7\x27\xe1\x8a\x32\x54\x48\x11\x5c\x9c\x6a\x82\xbb\x0e\x4c\x21\x6d\xe8\x52\x0a\xd5\x25\x52\x3f\x26\xb1\x19\x25\x61\xdf\xfd\x2c\x17\xfc\x1b\x1a\xce\x75\x57\x1b\x5f\x2b\x44\xcd\x1b\xe9\x2c\x13\xc2\x0a\x6b\x2c\x59\x79\x61\xfb\xa9\x3e\xc4\x07\x3d\x0d\x22\xce\x97\x2f\xc9\xd1\x16\xce\xd9\x8d\x6f\xf1\x92\x88\xca\xa0\xb4\x8f\x94\xd5\xbb\x65\xad\x47\xae\xf4\x88\xae\xc7\xf4\x60\x15\xac\x9b\xce\xa4\xab\x22\x1d\xa2\x64\x44\x54\xd0\xb7\x68\x8d\xeb\x5d\x95\x65\xa5\x48\xfe\x57\x9b\x9c\xf1\x39\x53\x98\x3e\x56\x22\xb6\xdb\x0f\x95\x74\xd9\x43\xcd\xf4\xb5\x36\xce\x07\x75\x60\xa6\x6d\x16\xb9\xbc\xe9\x3a\xe7\x2e\x61\x89\x08\x67\xcc\x2e\x87\x91\x1f\x39\x01\x5c\x44\x0d\x7f\xa3\x44\x71\x58\x93\x1f\x5e\xc5\x97\x81\xc7\x57\x0c\x42\x9b\x98\xc4\x2e\x69\x72\xf0\x9b\x3a\x3b\x75\x53\x51\x67\x80\xe6\x5c\x1a\xbe\x11\x34\x5c\xa1\xc1\xe2\xeb\x26\xa1\xc1\x42\x04\xad\x55\x01\xe3\xa0\xe3\x1b\xf0\xa0\xfb\x07\x35\x80\xb9\x09\xfb\xcf\x54\xeb\x8a\xc3\xc9\x40\x0d\xfa\x31\x25\x89\x7d\x93\x7e\x5d\x84\xd2\x68\x34\x61\xbc\x4e\x70\x92\x57\x4e\x42\xac\x0b\x87\xaf\xdf\xbf\x9f\x9d\xd5\x77\x02\x9f\xb0\xbe\x86\xe2\xad\x4c\x3c\x8d\x18\x12\x6b\xa7\x36\xf4\x7b\x55\x83\x2c\xd5\xa1\xca\xde\xb2\x68\x1c\xc6\x4d\xcb\x1e\x33\x96\x08\xe1\x07\x26\xfd\xbd\x52\x95\xf4\x57\xc6\x9c\x42\x3a\x4b\xe2\x68\xd6\xc6\x2d\xef\xc9\xbc\xa3\xe8\x12\xdf\x51\xa7\x61\xd7\x26\x6e\x45\x22\x3a\x64\x20\x0d\xdf\x04\xcf\xd6\x23\xcf\x17\xdb\x33\xaf\x1e\xdc\xa6\xa3\x24\x1f\x6f\x1d\x23\x4b\xae\x9e\x51\xfa\xd6\x7f\x1a\x78\xb8\xd1\xff\x53\xaa\x6c\x05\x93\xc4\xf2\xcd\x98\x7f\xf6\xc2\x0b\xd0\x22\x41\xa6\x11\xc9\xb9\x9b\xa5\xd2\xa2\xbe\xd9\xc4\xec\xc4\xbc\x92\xf4\x19\x1c\x37\x4c\xdb\xc1\x37\x8e\x91\xb5\x97\xa5\x8b\x36\x43\x4b\xa3\x4b\x40\xf9\x82\x21\x1e\x54\x34\xd2\x64\x97\x0c\x47\xd9\x30\xb6\x8a\x59\xf2\xba\x02\xed\x5e\x1f\x4b\x01\x72\x9f\xa6\x1d\xcc\xc6\x91\x64\x6a\xe4\x60\xa0\x17\x91\x93\x61\xe3\x8b\xec\xdd\xdb\x5e\x34\x04\x1b\x6b\xa9\xc6\x8e\xdb\x2a\xa1\x7b\x5b\x95\x4a\xf7\xcd\x1c\x6c\x69\x59\xae\x33\xfa\x8d\xcf\xb8\x37\xce\xec\x20\x5d\xb0\xdd\x2d\xbe\xad\xef\x3c\x86\xd3\xf1\xd8\xfb\xa6\xdf\x5b\x34\x69\xf0\x9f\xce\xea\x0e\xf0\x4b\x63\xb9\xb3\x23\x53\x87\xda\x6f\x58\x13\x33\xfa\xd6\x31\xfa\xad\x6a\x65\xb6\xd5\xa6\xad\xfd\xc2\x3f\xfe\x47\xcc\xc2\x2e\x0d\xed\x2a\x37\x8f\x22\x07\x7c\x1a\x28\xbb\x02\x42\xf8\x13\x25\x7b\x69\x93\x30\x1d\x65\x4e\x79\xcf\x75\x97\xee\xf3\xdd\xa5\x3b\x5d\x49\xd7\xa8\xd4\xed\x06\xa2\xd1\x8d\x25\x94\xc3\x7b\x66\xda\xa3\xa4\x0a\x69\xb9\x73\x0c\x0b\x19\xfa\x4b\x7c\xad\x5a\xaa\x08\x5a\xb0\xa5\xfa\x55\x29\x00\x2b\x36\xf9\x0b\x74\xbe\x49\xe7\x24\xbd\xa0\x14\x4b\x7c\x1b\xf1\xef\xab\x63\x22\xb3\x95\x2b\xbc\xd5\xab\xb1\x4f\x2c\x2b\xc2\x74\xae\x84\x21\xcb\xf2\x08\x16\x87\x35\xdd\xe9\xbd\x45\xdf\x5d\x39\x9c\xf7\xc7\xf6\xc9\xbe\x69\xde\x5a\x5c\xbd\x71\xed\xf0\xfb\xf7\xcb\xb5\x62\x2e\xee\xf5\x5d\x99\x07\xb6\x69\x45\xb9\xe6\x2b\x2a\xcd\xb8\x10\xc5\x31\xa4\x36\xb5\x58\x90\x4f\x8a\x7d\x32\x76\xc2\x4d\x4f\xb7\xfb\x83\x14\xda\x12\x33\x8e\xaf\xa0\xde\xd1\xfa\x9c\x06\xf3\xd9\xbc\xc8\xd2\x68\x1e\xca\xb1\xb2\x22\xbd\xe7\x72\x5c\x41\x70\x3e\x29\x9f\xf4\x39\x71\xb3\xb4\x5b\x29\x76\x6c\x43\x2b\xbe\xcb\x4e\xf9\x2c\x24\xa0\x05\x64\x5f\x7e\xfc\x74\xa7\x96\x02\xd1\xd5\x20\xf4\x37\x62\xd5\x42\xfc\x04\x89\xc2\x4d\x1d\x8a\x00\x54\xda\x4b\x8e\xa0\x9d\x5a\x13\xff\x2a\x0d\x0a\x8a\x0f\x3b\x3b\xaa\xfd\x97\x65\x17\x98\x1d\x30\xa8\xfc\x64\xf1\x45\x68\xfc\x99\xff\x88\x54\xa2\x60\xb4\xd6\xea\xe8\xf2\xd0\x80\xc8\x9f\xa5\x2e\xd5\xf1\xf6\xd7\x9a\x4d\x8c\x25\x10\xb6\xab\x56\x79\x21\x70\x90\x83\xc5\xe7\xa4\xfe\x39\x6c\x15\x5e\xea\xdf\x05\xbe\x73\xe9\x64\xa0\x40\x9b\x97\x29\xbb\x24\x0a\x0a\x8a\x11\xf9\x8c\x83\x53\x2f\xf6\xa3\xc2\xe6\xba\x03\x6f\xa2\xa3\x65\xb9\x15\x2c\x0f\xad\x63\xc8\x2e\x2b\x36\xf3\x51\x14\x77\x47\xc3\x96\x2f\xf1\x01\xb7\x2d\x34\x3c\x8a\x67\x3c\x4e\x73\xdb\xdd\xd1\x72\x94\xba\x5f\x12\xc9\x93\xb4\x70\x55\xef\x80\x92\xf5\x3d\x84\x45\xec\x1a\xd0\xb7\x21\x46\x78\xb7\x54\xfa\x9f\xc7\x4a\x55\xa7\x03\xee\xd0\xe5\x92\xab\x79\xe1\x21\xd4\x48\xa7\xd1\x70\x52\x29\x79\xc3\x6d\xd3\x88\x47\x4e\xc3\x07\xaa\x7c\xfa\x73\x3d\x45\x26\x8e\x53\x92\x55\x77\xfe\xc5\xc3\xc0\x67\xb7\x1e\xaa\xfe\x9c\xbe\x65\x77\xfc\x80\xa4\x28\x91\xe3\xe5\xeb\xb1\x02\xf1\xe1\x3d\xed\x61\x66\x89\x00\x91\xb7\x35\xe0\x47\x10\x58\xe2\x6b\x37\x69\x3d\x9b\x88\xda\xbf\x34\x81\xe8\x8e\x90\x26\x7e\xf4\x59\x1b\xa7\x8b\x2d\xef\x24\x6d\xa2\x32\x1f\x5f\x77\x7c\x34\x63\x8f\x86\xd6\x76\x9d\xb4\x0c\x6c\x1a\xcc\x22\x5f\x3b\x5a\x1d\xc2\x4a\xd0\xbc\x63\x51\x15\x81\x0a\x28\x0a\x27\x8e\x36\x34\x99\x19\xa4\x23\xfe\x53\xc4\x6b\x0f\x31\x77\x7c\xd3\x48\x75\x98\x17\xd6\x74\x23\xea\x26\xa6\x49\x6f\x62\xba\x56\xc4\x32\x61\xdf\x76\x47\xb1\xa5\x74\x0e\x82\x95\x93\x18\x13\x9c\x97\xff\x27\x7d\x0e\x55\xf4\x0f\xf0\x9c\x08\xae\x2f\xa8\xf5\x31\x8a\xba\xdb\x7c\x5f\xce\xa7\xa5\xef\x81\x3b\xa3\x60\x9a\xbc\x3a\x61\x3e\xdf\xa3\x65\x0b\x6f\xf7\x64\x59\x13\xf6\x52\x3c\x51\xfd\xa6\xce\xaf\xa1\xa1\x1c\x0b\xf2\x84\x4d\x78\xf7\x06\x16\xc3\xc4\x48\x0e\x47\xfe\x48\xbb\x4a\x0d\xbc\xcc\xa2\xfe\x28\x9e\x0e\x4c\xe5\x27\x30\x12\x7c\xa3\xb5\xd3\x86\xf9\x0e\xbf\x4c\x6f\xc2\xc9\xa8\x75\x2b\x02\x0a\xf3\x14\xa5\xe5\xb5\x64\x06\x6d\xbd\x7f\xf3\x0b\xcb\x8a\x72\x48\x77\x04\x32\x24\x8c\x4c\xed\x3f\xfb\xe5\x8e\x22\x89\xb8\x5e\x3e\xbf\x91\x9f\xf8\x95\xf6\xf4\xf4\xcc\x4e\x55\xaa\xbf\xab\x49\x28\x1e\x96\x5e\x56\xf1\xf7\xfc\xd1\xf0\xdf\x81\xa6\x0f\xf1\xe7\xc5\xd2\xe3\x15\x36\x11\x34\x05\x9f\x7d\x07\x6f\x04\x2f\x6c\xbd\x54\x1b\xed\x4a\xa0\x68\x09\x6e\x8f\xed\xcf\x7d\xd3\xac\x58\xc1\x0a\x31\xa8\x04\xbe\xb2\x7e\x4d\x65\x41\x86\x59\x3a\x88\x72\xa6\x24\x73\xa5\x03\xcf\xc7\xf5\x57\x63\xfe\x16\xad\x73\x13\xb6\xfc\xda\xbc\x48\x1e\xbb\x10\x48\x6e\x9c\xd0\xfd\xfb\x89\x55\x9f\x8e\x7f\xb8\x57\x35\xb2\x15\xa1\x61\x91\xea\x59\x32\xea\xa2\xa4\xce\xf4\xde\xa5\x12\x3a\x39\xab\x04\x2c\x36\x75\x36\x2e\xcf\x17\x49\xe4\xc4\x49\x8a\xad\x93\x77\xb1\xbe\xa2\x2a\x87\x8b\x26\x5a\x20\xfc\xa1\xe7\x87\x52\xe6\x94\x50\x6c\x62\xf6\xb3\x74\x31\x99\x50\x95\x87\xb5\x40\x15\xfe\xa4\xf4\xc4\x1a\x44\x65\x4d\xcd\x62\x60\x38\xd2\xd0\xde\x99\xb8\x70\xe3\xcf\x3c\x4c\xf3\x3c\x9a\x8d\xa1\x87\x23\xf0\x7f\xd5\x0a\xa0\x98\xf1\x4d\x18\xda\xa1\x4b\x98\x30\xea\x31\xf0\x09\x9c\xd3\x0a\xf7\x61\xba\x66\x58\x90\x32\x2f\x0c\xcb\x59\x3a\x55\xf9\x7a\x6c\x4e\xff\xab\xf6\xe8\xa5\xfc\x25\xd3\xaa\x65\x11\x7c\x26\xa6\x11\x1a\x5e\x64\xd6\x54\xae\x1f\x08\x5a\xe1\x1b\x9c\xc0\x9a\xe7\x1b\x37\x2e\xf9\x68\x98\xd9\x81\x65\xaf\xbe\x49\xec\x6c\x23\xc0\x8c\xe2\xf5\xb0\x9f\xa4\x71\xda\x23\xc6\xd9\x96\xe2\x7f\xae\x3e\x28\xd8\xa2\x27\xdc\x4f\xcc\x71\x73\x05\xc6\x8d\x79\xc4\xe0\x00\x9d\xa4\x8f\x20\x52\xdf\xec\xc8\xf1\x88\x8d\xa0\x2b\x45\x0f\xe6\x7e\xc3\xda\x17\x22\xb8\x06\x09\xc0\x74\x36\x2f\x4c\x18\xcb\xc7\x84\xcf\x89\x3e\x26\xd4\x54\x1b\xf3\xb2\x8e\xe8\x23\x59\x9a\x4d\xbb\x4b\x4a\x6e\x01\x91\x00\x5f\x6f\x94\x38\x7c\xfd\xf5\xca\xa6\xec\x50\xaf\x5b\x2a\x72\xaa\x6d\x1d\x45\xf6\x74\x56\xc3\x5c\x98\x4e\x9e\x9b\x1b\x02\x7f\x3a\xfc\x41\xe9\x9b\x2a\xbe\x8f\x8d\x25\x69\xdc\xea\x31\x70\x06\x9c\x1f\x4b\x2b\x3b\x05\x1e\xa2\xd2\xe6\xdc\x8e\xa3\x54\x77\xc8\x3f\xd6\x52\x15\xe7\x7b\xe3\xd8\xbd\xd8\x9e\xcb\x46\x79\x91\x19\xa1\x65\x56\xe4\xeb\x1e\xa2\xb1\x5b\xc9\xa0\xc6\xc3\xd8\xe6\x5c\x25\xe2\x36\xd7\x72\x63\x9e\x53\xf8\x50\x9a\x18\xcc\x8a\x7e\x94\x75\x27\xab\x75\xaf\xb2\x64\x07\x6b\x52\xd5\x70\x82\x00\x9a\x40\xb6\xef\xa4\xea\x3e\xca\xa3\x5e\x22\x34\x4d\x38\xbe\x6f\x28\xed\xd8\x1b\xea\x0c\x9a\x1d\xc5\xad\x1a\xda\x5f\xb7\x01\xd4\xe8\xdb\x96\x0c\xd0\x34\x02\xac\x57\x1e\xcb\x59\x45\x5f\xab\xcb\xd6\xab\xce\x7b\x59\xc8\xaa\xf0\xbf\x06\x67\xac\x7e\x54\x92\xf4\x3a\x21\x53\x18\xb0\xd6\xcc\x70\x9c\xf9\x83\xc0\xc7\x9f\x3f\x18\x33\x00\x2f\xb6\xe7\x6c\x96\x61\x65\xba\xa2\x8d\xea\x0f\x7e\x1c\xf9\x7f\x98\x16\x45\xca\x86\x12\xd6\xf0\x73\x05\x9f\xf8\xdf\xb0\x22\xb0\x54\x3e\x1d\xf3\x0d\xf6\x4e\x11\x7d\xa6\x9d\x50\xa9\x64\x16\x98\x40\xcf\xfa\x09\xb6\xb3\xc8\x5f\x9f\x53\x01\xfb\xa2\xc9\xfb\x51\xd2\x2b\xd2\x64\xa7\x77\xc1\xaf\xf2\x9f\x73\x3a\x1b\x0b\x0b\x85\x61\x4e\x24\xa1\x70\xf4\xbb\x1a\x5e\xb7\x09\xc0\x79\x97\x6c\x53\x84\x1d\x14\x3a\x08\x45\x54\x4b\x51\x75\x79\x70\xcc\x8d\x26\x87\xa7\xc8\x0c\xf3\x5e\x02\x93\xb3\x49\x41\x91\x37\x8d\xd1\x18\x4e\x4f\xcf\xb4\x4d\x1e\x9b\x24\x32\x5c\x98\x47\xde\x02\x96\x9d\xaf\x15\x56\xe1\x1b\xdf\x9c\x9e\xfa\xc6\x33\x9a\x78\x1e\xad\xba\xb0\xed\x13\x88\x35\x91\x6c\x5e\xa7\xa4\xa0\x2c\xa2\xca\x03\x91\xec\x36\x8d\x06\x43\x6b\x02\x55\x52\xe1\x26\x42\x26\x64\x5e\xf6\x7e\xe2\x9f\x68\xd2\xde\x4b\xc1\xc4\xc1\x7f\xfa\xeb\xcc\xde\x06\x72\x03\x74\xbc\x9e\x24\x63\x83\x23\x7d\x0d\x40\x31\x45\x6f\x36\xed\x05\x9e\x5e\x78\x81\x27\xe6\x47\xf4\x96\x92\x2b\xf3\x08\xfe\x4b\x8a\x9b\x64\x94\xd0\xb1\x6d\x5b\x35\xbc\xac\xee\x29\xbd\x34\x46\x81\x39\x75\xa8\x1d\x77\x11\xe0\xe1\x65\x3e\xd5\xa4\x31\xe3\x6b\xb1\xb2\x17\x6f\xa4\x16\x7e\xaa\x28\xb1\xa9\xe2\xc9\xa9\xb1\x74\x95\x6c\x81\x81\xc9\x22\xae\xa8\xc2\x48\x31\x33\x0f\xdf\x3c\x56\x14\x64\x60\xbb\x51\x18\x25\xf6\xf1\xca\x19\x0d\x4d\x80\xb1\x35\xbe\x09\x10\xa6\x1f\xda\x66\xf8\xcc\x64\xc7\x37\x7b\x5c\x53\xca\xa0\xa1\x49\xba\x51\x97\x2a\xfc\xda\xac\x54\xc3\x2d\xe6\x66\xe3\x80\xfc\xfa\x14\x48\x72\xe8\xf1\x98\xd2\xa5\x46\xef\xb2\xab\x46\x4d\xd0\xf2\x5d\x2a\x67\x95\x0a\xeb\x59\xc5\xf3\x98\x9b\xa5\xdd\xbe\xef\xe1\x36\xd9\x17\x04\xe6\xad\x8e\xef\xc0\xdc\xba\xec\xeb\xd1\xb7\x70\xde\xc1\x8e\x6e\xc6\x79\x87\x0d\xf1\x76\xd0\xfa\xe6\x6f\xf8\xbe\x1e\x2f\x9c\xb0\x82\xac\x36\x7e\xe3\x3c\x48\xd0\xc4\xab\x9a\xf0\xfa\x8b\x7c\x44\x02\xb6\x72\x8b\xde\xcb\x55\x02\x8e\x48\x5b\xd0\x03\xb4\xc7\x89\x23\xa6\x94\xae\xae\x93\x37\x25\xc0\x2f\xbf\x52\x0b\x6b\xc2\x3e\x2b\x9f\x4d\x7b\x52\x1c\x0f\xaa\x72\x00\xd4\x24\x4d\x6c\xd1\xb7\xd5\x01\xb7\xc3\x67\x1e\x40\x42\xed\x4a\xa0\x42\xa1\xb2\xfb\x57\x3a\xd4\xdb\xe5\x0a\xa5\x3e\xa1\xb0\xaa\x65\xc2\xae\x68\xb0\xd6\x1a\x46\x42\xc4\x70\x5a\x4e\x4d\x4b\x37\x76\xf4\xad\xc9\x0a\xc0\xf9\x60\x1b\xb9\x3f\x94\x59\xb6\x6a\x02\xcc\xaa\x15\xfe\x3d\x95\x12\xeb\x26\x66\x42\x75\x7b\xae\x6a\x1f\x23\x50\x7d\x01\xaa\xc9\xf1\x0d\x33\xb0\xf9\x16\x7a\x0b\x97\xc7\xd2\x64\x03\x9e\x22\xef\x94\x9e\x34\xe6\xa7\xc4\xbb\xfe\x89\x92\x36\x7a\xc3\xce\xcd\x65\x76\x09\x8e\x09\x96\x11\x8a\x99\x9c\xe9\xc5\x37\x8a\x64\xac\xf8\x7f\x8b\x51\xd1\xef\x66\x76\x71\xa2\x26\x01\xdd\x72\xec\x1b\xa7\xf0\xc6\x48\x00\xdf\x56\x6a\x4d\xf9\xd0\x86\x23\x88\x97\x6e\x55\x25\x98\xf7\x6a\x1c\x41\xd5\x92\x12\x1a\x00\x7a\x6c\xae\x59\xd3\x90\xe2\xe5\xb8\x2b\x04\xde\xc4\xb9\x31\x2c\xcf\x8b\xc2\x97\x25\xd9\x15\x25\x50\x34\xe5\xd0\x1b\x5e\xcc\x70\xc0\xea\x8e\xd8\x15\x2b\x81\xaa\x12\x68\x5a\xe6\x41\x94\x0b\x6e\x09\xcb\xff\x63\x4a\x43\xf1\x75\x03\xbb\xc5\x2b\xed\x81\xc9\xd3\x84\xbd\x03\xe6\x12\x53\x18\x89\xcb\x2e\xc5\x13\xda\x24\x4f\x33\x25\x3b\x76\xba\x54\x48\xae\xd3\x35\x8a\xce\x62\x94\x25\xb6\xab\x74\x8a\x76\x74\x7c\xe7\xd3\x23\x0c\x19\x0e\x98\x3b\xe5\xf3\x6e\xe8\xbb\x51\x6e\x86\xc4\x84\xcd\xad\x96\x48\x23\xdc\x54\xdc\xb9\x37\x9b\x30\x1e\x73\x71\x6a\x8a\x56\xeb\x5b\xbf\xe6\x2b\xd6\xce\xd3\xb9\xd4\x88\xe8\xe9\x66\xd1\x02\x30\x58\x80\x4d\x9d\xc5\xab\xc0\xaa\x73\xaf\xbc\x04\xb2\xcf\x28\x53\x18\xf6\x93\x2a\x60\xd9\xea\xd7\xc2\xdd\x40\xef\x3d\x5a\xf5\xb0\x55\x77\x60\x9e\x90\x7b\x41\xb7\x82\x94\xc3\x54\x99\xf1\x92\x5a\xe8\x69\x77\x29\xcf\x51\x24\x75\x25\x6c\x3a\xe3\xa5\x9c\xed\xff\x74\x31\x8b\x0a\x42\xc9\xba\xae\x02\xce\xb7\x39\x4a\x2d\x07\x5b\x7f\x88\x85\x2e\x62\x7a\x4a\x32\x2c\x1d\xa2\xf7\xd7\x17\x07\x2e\xa9\xe2\xc0\x25\xc5\xdd\x6f\xf2\xe7\xfd\x58\x5d\x40\x2b\xaa\x23\xde\xab\x5e\x19\xdb\xf2\x33\xe0\x45\x1c\x53\x8b\xa3\x9d\x29\x21\x7e\x8c\xc8\x11\xe2\xfd\xc8\x62\xad\xd4\xf8\x38\xe9\xc8\x72\xa2\x12\xd3\x4e\xad\xe1\xa7\x64\x90\xf9\x6b\x39\x01\x8d\x90\x62\x85\x46\x1f\x33\xb1\x95\x7a\x3b\x61\xdc\xb9\x2f\x07\x59\x06\xc6\x65\xe2\xb5\x4e\x63\xf1\xc1\x84\x01\x11\x83\xb4\x6c\x6b\xc3\x09\xf4\xad\x5f\x73\x0c\x14\x8a\x04\xf5\xae\x13\xb7\x8c\x4d\xd2\xcd\x43\x33\xc4\x32\xc2\xca\xc6\xc2\xc3\x83\xde\x52\x6d\x80\x9f\xe9\xbe\xf6\xb7\xec\x56\x0f\x12\x04\xa1\x1c\xd2\x5e\xbb\x3a\xf5\x06\x83\x97\x8f\xb0\xad\xe2\x32\x23\x36\x0c\x27\x2a\xb1\x94\x1e\x35\xe4\x1c\xf2\xd1\x70\x88\x42\xa2\xaf\x13\xb3\x70\x37\xdf\x34\xa9\x9f\xf6\x6c\x32\x8a\x12\x66\x9f\xd6\x15\x6c\x49\xe1\x8c\x47\x7c\x43\x9b\xe7\xd1\x20\xca\x45\x33\x55\xb0\xbf\x4a\x33\x64\x65\xec\xa7\x0e\xec\x69\x8b\x3e\x01\x4d\x84\x63\x0f\xde\xbf\xdf\xb1\x07\xab\x04\x7d\x9a\xc6\x9c\x83\x10\x56\x60\x9a\x4b\xa1\x05\xf6\xdd\x95\x71\x9a\xce\x6f\xa7\x87\x87\x2b\x7e\x0a\xf0\x6d\x51\x78\xf1\x8c\x44\x7c\xee\xc3\x6a\x4d\x2c\x2b\x82\xe0\xd3\x5a\x10\x6a\x13\x88\x2a\x1d\xfd\xac\xc3\x72\x7d\xee\xd0\x76\x94\xfa\x9c\xf0\x3e\xd9\x96\x8e\x4e\x27\x6b\x2c\x71\x93\x4a\x9a\x08\x84\xb4\x14\xd3\x3a\xfa\x08\xf8\x5a\x05\x7c\xf6\x68\x68\xf3\x7c\x7b\xcb\xf1\x3b\x3d\xc2\x20\xe3\x55\xaf\x06\xbe\x0a\x08\xd9\x5f\xfe\x77\xcd\x21\x78\x8c\xd8\x60\xe1\x88\x00\xe4\x24\xda\x79\x5e\x16\xfe\x6a\x93\xb2\x6a\xdf\x64\x90\xf6\x41\x96\x6e\x7b\xc7\xb7\x3a\x4c\x52\x08\x81\x62\xfe\x89\xca\x8e\xff\xd7\xce\x8e\x3b\x01\x70\xaa\x4c\x60\x87\xf1\xf3\xf0\x8d\xea\x2a\xed\x65\x26\x61\x3e\x4d\x41\xd5\xab\x78\x64\x55\x35\x43\x2e\xa6\x03\x93\x80\x50\x06\x55\xd9\x3b\x4a\x78\xf7\x2e\x21\xc6\xa4\x26\xa0\x18\x93\x7e\xab\x6c\x29\xfd\x59\x6a\x9b\x78\xa8\x98\xad\x67\xb3\x6a\x2b\x6f\xd7\xf9\x7f\x3a\xe0\x91\x72\x5e\xe5\xb8\x53\x2a\x03\x3e\xf9\xf7\x2e\xce\x09\x27\x97\x58\xfd\xa0\x32\xc6\x52\x66\x59\x55\x39\xc2\x77\x1b\x32\xe2\x33\x94\xa6\x4d\x89\xbd\xa5\xa6\xde\xad\x99\xe8\x5a\x1d\xc5\xc5\x39\x9e\x69\xdc\xbb\xb7\x6d\xc2\x30\x1b\xb1\x7e\x35\x5b\x7e\xcd\x00\x08\xed\x19\xc7\x11\xae\xc9\x0f\x9f\x51\xdb\x8d\x81\x63\xb4\xe3\x9c\x92\xb6\xd7\x37\x1b\x3b\x4c\x0f\xef\x79\x0d\xf8\x7a\xb8\x67\xac\x7a\xac\xc2\xbe\x8f\x03\x85\x15\xfd\x69\x13\xb3\xda\x1b\x69\x24\xb4\x3c\x18\xe3\xfb\x81\x97\xd8\xbb\xef\x1a\xe8\x07\x26\x1e\x92\xa0\x63\x88\x94\xc2\xfa\x27\xa5\x6a\x62\xa5\x5f\xc4\xf5\x75\x4d\x7c\x69\xb2\x22\x61\x0e\x22\x29\x06\xae\x29\x0d\xf5\x49\x44\xc4\x58\x26\xf7\x02\xd5\x22\xdb\xea\xf8\x85\xf5\x95\xe5\x9a\x88\xee\xc6\x77\x78\xb1\x3d\x97\x2e\x92\x68\xed\x74\xbd\xd0\xc0\xd7\x2a\x4a\x2a\x0c\xfe\x0a\x75\x80\x75\xb2\xf1\x7c\xad\x48\x19\xa3\x39\xbb\x45\x61\xc7\x3f\xa2\x17\x45\x30\xc5\xb2\x57\x4e\xf8\xde\x41\xcf\xfe\x8f\x40\x8b\x39\x38\x10\x61\x98\x0e\x88\x9b\x87\xfd\x3b\x1d\x48\xf2\xf5\xf2\xc6\xec\xcf\xeb\xaf\xb7\xc3\x7e\x96\x92\xa3\x13\x2f\x91\x64\x3d\x4e\x9e\x7b\x8a\x82\x11\x21\x87\xe0\x3c\x25\x4f\xbb\x68\x96\xa4\x85\x0d\x86\x73\x73\x47\xd5\x4c\x1e\xc1\x57\xc0\x21\xf4\xd7\x58\xdd\xc8\x4a\xbe\xad\x68\xc7\xbb\xa9\xcd\x9f\x68\x39\x06\x85\xdb\x8a\x21\x81\x49\x30\x58\x56\x8c\x16\x34\x22\xfe\x4d\x30\xe3\xc2\x59\x5c\x2d\x1f\x6c\x9b\xaf\x75\x88\x43\x03\xde\x39\x8b\x89\x8a\x12\x3d\x6d\x51\x94\x5a\x9e\x58\xf6\x52\xf6\x6f\x93\xb3\xc1\x96\xbb\x29\x4a\xe7\x7c\x37\xc5\xda\x4e\x1a\x68\xda\x33\x26\x2b\x0f\x0b\xab\x4f\xf1\x3d\x60\x55\xf1\xf5\x72\x4d\xbe\x75\x49\xba\x9e\x9c\xe4\xcb\x81\x3d\x8c\xab\x03\x83\x1f\x5f\x73\xeb\xb9\x54\x59\x45\x68\x25\x9d\x23\x39\x12\x98\x99\xaf\xc0\x93\xc0\x41\xf2\x33\x06\xa9\xc9\x77\xd1\xb8\xc3\x98\x4f\x2e\xd7\xba\x30\xc1\x65\x43\xa2\x12\x48\x29\x6f\xea\x28\x0d\x58\x38\x74\x58\x60\x37\x9a\x1a\xcd\x0c\xf2\xed\x8f\x63\x70\xf7\x71\x69\xd7\x26\x91\xed\x02\x44\xce\x64\x8c\xa5\x82\x5a\x7c\xa6\x4a\x65\x77\x60\xc3\xa4\x3f\xda\x87\x69\xdd\x34\x1c\xc9\xca\xa6\x6d\x8b\xf6\x8f\xbb\x4a\xd2\xe7\xee\x58\x56\x87\x54\x24\xe2\x51\x5e\xd8\x4c\xc0\x98\x8e\x19\xb2\xfa\x19\xbe\xd1\x12\xd0\x79\x4e\x39\x48\x78\x68\xd7\x4a\x5f\x0d\xf9\x1a\x6d\x22\x44\xb8\x93\xb4\x7e\x44\x7f\x40\xb1\x4b\x40\x41\x09\x1e\xc5\x0f\xb1\xe2\xd0\x84\xc8\xc5\x3d\x24\xbb\x99\x90\x06\xa5\xaf\x35\x3e\x6f\x10\xb1\x4f\x40\x34\x11\x5e\x38\xb5\x5a\x16\xbc\x2f\x6b\x95\xdd\xea\x57\x5c\x54\x7f\xc0\xab\x82\x3b\x44\x5a\x3a\x4a\xba\xcc\xa9\x7e\xbf\x54\x53\xb4\x93\x16\xa4\xef\x2c\x56\xbd\x9a\xc5\xd2\x36\xd5\xe2\x87\xce\x94\x1a\xcb\x0c\x02\xc4\x87\xf8\x3a\x8d\x7d\x82\x6d\xbd\xaa\xb2\x12\x4c\xb9\x2c\xf9\x73\xf1\xa0\xe6\x62\x93\xf7\x5b\x8a\xf7\x8e\xa1\x66\x42\xf7\xd6\x00\x04\xea\x8e\x12\x9b\x2b\x3c\xff\x0f\x90\x22\x11\x48\xb2\xae\x01\x34\x6d\x5e\x42\xb7\x71\xc5\xc9\x85\x10\xae\x5c\xb1\xa2\xe0\x5a\x84\x82\xdb\xe6\x2d\xde\x3b\x75\x15\x9c\xca\x92\x61\x0f\xae\x95\x4a\x30\x11\x84\x18\x48\x46\xec\xa2\xc4\x97\x33\xf5\x07\x04\x8f\x75\xb3\xc9\x69\x2f\x6c\x16\x13\x69\xdc\xfe\xfd\x22\x6f\x8b\x48\x05\xe6\x0a\x89\x33\x0c\xec\xb6\xb1\xe2\x28\x65\x99\xe3\x37\x22\x93\x28\x06\xf3\x0f\xb0\x10\xf9\xc6\x25\x46\xd2\x2c\xea\x45\x24\x91\x70\x60\xc6\x39\x8a\xde\xde\xc2\x89\xc5\x70\x6e\x06\x51\x0a\x22\xb2\x9f\x8f\xed\xa6\x7d\xd3\xc4\x6a\x13\xa7\xf9\x28\x43\x55\x17\xf1\xf3\xba\xd2\x64\xb9\x22\x5d\xaa\x1e\x0c\x3c\x97\x86\xa3\xdc\x39\xbe\x42\xfa\xed\x73\xb9\x57\x5d\x88\x15\x46\x0b\x51\x4c\x5d\x55\xb4\x10\xb1\x62\xb1\xc3\xf9\x3a\x78\x56\xc9\x82\x11\x14\x86\xac\xa8\x4f\xb3\x69\xe8\x1b\xbc\x78\xf7\x1f\xba\x1f\xc1\xc7\x11\x83\x51\x12\xd1\x20\xb2\x5e\x73\x4d\x99\xda\xb1\x93\x0c\x08\x19\x45\xbe\xad\x16\xf5\x94\x16\xb4\x67\x55\x36\x29\xb2\xf1\x42\xda\xb3\x31\xe9\x8e\x09\x19\x97\xe2\xa1\x5d\x55\x4d\xd9\x8b\xd6\xcc\x27\x36\xcf\x19\xa9\xe8\xe8\xec\xaa\x53\x8f\x6f\x94\x33\x3c\x34\x85\xe5\xc2\x94\x68\x98\x55\x6f\x2e\xda\x66\x8e\x7c\x9b\xec\x5d\x4b\x15\x04\x57\x35\x73\x07\xfd\xbe\x3c\xad\x8d\x2d\xf5\x4d\x60\x87\x61\x45\x7c\x16\x28\xf1\x92\xdb\xa5\x6f\xf9\xbc\x3c\x96\x4e\xa2\x0d\x36\x4c\x33\x27\x37\x82\x12\xc6\x75\x55\x6d\x66\x04\x07\xc3\xd4\x1d\x64\x36\xb3\xb3\x69\x86\xd5\x2b\x79\x1b\x95\xc3\x51\x76\x7f\xd6\x84\xf3\xbd\x8c\xcc\x19\x8d\x11\x97\x35\x15\x58\xea\xbc\x07\x82\x99\x7c\xde\x16\x7c\x24\xb9\x76\x32\x57\x0c\xbc\xd0\x80\xc4\x9d\x69\x2f\xd8\x3e\xd1\xb9\xa1\x9e\xbd\x7e\x2d\x60\x91\x95\x27\x5c\x97\xd7\x20\xdd\x42\x36\x07\xa9\xd3\xd3\x75\x14\x9b\x6e\xfa\xa9\x4c\x01\x02\x82\x9f\x6a\x10\xf3\xf7\xd5\x66\xe8\xda\x30\xea\xb2\x24\xce\x2b\x7e\x6d\x7a\xb6\xa7\x35\x95\x20\x00\x7b\x30\x8b\xf6\xd4\xda\x95\x68\x38\xe8\x2b\x70\xb0\x63\x39\xf2\xb5\x72\xae\x2a\x5f\x5b\xe9\xd2\x60\x90\xe5\x08\x14\x10\xec\x1b\x52\xaa\xe2\x53\x44\x8d\xed\xea\x58\xfb\xc0\xbe\xe9\xb6\x0d\xd3\x24\x1d\x44\x00\x8d\xd4\x98\x6f\x84\x1f\xa7\x69\x9c\x87\x59\x3a\x17\x85\x91\x10\xe7\x89\x8c\x86\x4f\x15\x6b\xb2\xbe\x2a\x44\x2b\xe6\xd2\xac\x8b\x38\x01\x43\x73\x5b\x8f\xd3\xed\xb1\xc8\xca\x95\x62\xd2\xa4\xb0\x2d\x95\x8c\xe3\xe5\x2f\x4a\x36\x4e\x01\x22\x8a\xe7\x79\xad\xb8\x2a\xad\xaf\xd8\xea\x3e\x13\x5b\xe4\x93\xfe\xd8\x7c\x58\xe7\xfc\x50\xe5\x00\x55\xef\x1b\x7f\xbc\x7d\x24\xe3\x16\x66\xd1\xac\xb3\x85\xe2\x27\x78\xd4\xd0\x0f\x6b\xb2\xd4\xa1\x8d\x16\x6c\x97\xf8\xda\xe1\x10\x3d\x80\x47\x2b\xa1\x52\x65\x61\x14\x07\x9b\x74\xa2\x95\x81\x6f\xfd\xf9\x84\x42\x0e\x01\x27\x2b\x4a\xf9\xfb\x1a\xb5\xac\x38\x33\xff\x25\x06\x0b\x19\x3a\xad\xfc\x49\x16\xf0\x39\x8f\x71\xe4\x50\x0a\xd6\xe7\x2f\x89\x4a\x07\xc7\xf8\x6a\xcd\xa1\xf9\x90\xfa\xbd\xa4\xe1\xb7\x7a\x62\xe4\x03\xc0\xcc\x26\xe0\x6d\x45\x56\xfa\x10\x49\x45\xbc\xf0\xcf\x68\x7c\x1d\xe7\x95\xe3\xa1\x82\xa4\xa9\xab\xd0\x79\x29\x37\x48\x6d\x63\x89\x7c\x89\x83\x5a\x4e\x19\x32\x88\xd8\x63\x3f\x29\x15\xe4\xed\x07\xa5\x07\x28\x6d\x55\x20\xb1\x1f\x71\x8d\x8a\xe9\x94\x15\x7b\x77\x5e\x98\xc2\xee\xf6\xcc\xab\xdf\x0b\x94\x8d\x63\x61\x36\x94\xf3\x1e\xd0\x33\x23\x6d\x7f\x99\x80\xbb\x8a\x0b\xd7\xd5\x9f\xca\x9a\xde\x9d\x62\x33\x67\x7c\x98\x43\x2b\x1c\xd8\xe3\xea\x25\xd5\x44\x88\x86\x13\x25\x5b\xb5\xac\x1b\xab\x89\x29\xdb\x77\x1d\x7b\xc7\x51\x12\xbe\x7c\xc4\xa9\xa3\xd0\x34\x32\x26\xdc\x61\x13\x42\xe3\xd2\x7c\x92\x0a\x50\xd8\x86\x2b\x35\xcf\x31\x1d\xa4\x5a\x7b\xe3\x82\x46\xaf\x5c\x57\x54\xc5\xeb\x4e\xdc\x63\xce\x76\x6d\xc6\xfc\xb5\xee\xdc\xc1\x51\x23\x25\x24\xd5\x00\xd0\xea\x34\xd0\xd4\xcd\x45\xb1\xdb\x47\x9c\x91\x52\x51\xd9\x89\x31\x4c\xc4\x81\x3d\xed\xcc\x1a\x0e\x42\xb0\xd4\x6f\x07\x35\xbe\x9c\x6a\x3e\x31\x53\xf7\xb1\x56\x30\x21\x9b\x96\xbd\xe1\xed\x5b\x13\x17\xfd\xa7\x5a\x8e\xd3\x98\xf1\xdb\x92\x1b\xaf\xbe\x02\xd1\xc2\x43\x2d\xa6\x04\xf4\x05\x92\x8e\xd7\x69\x45\x60\xe5\x72\x4c\x8c\x4e\xad\x47\x9c\xe8\xc6\x17\xa3\x9d\x90\x3d\x31\xac\x02\xd1\x92\xa7\x57\xe6\x5f\x21\xac\x1e\x1e\x1a\xa8\x6e\x10\x18\xdc\xc0\x14\x48\x33\x91\x4f\x7d\x15\xfd\x2c\x9a\x2b\x5a\x6a\x55\x31\x2b\xb3\x94\xad\x1e\xd7\xe6\x3d\xb4\x45\x96\xc6\x76\x34\x20\x87\x15\x8f\x7f\x46\x3b\x9c\xf0\xe8\x90\x73\x5b\x6b\x48\x38\x4f\xb5\x4d\x2e\x59\xe0\x19\x8f\x5d\xdc\xad\x52\x25\xf3\x66\xc9\x0c\x0c\xa6\x94\xbb\xb7\x6a\x9d\x5c\x1b\x57\xc1\xcc\x81\x99\xb6\x4d\x9c\xaf\x23\xf2\xcd\xd5\x58\x8b\xae\x73\x53\x2d\xe8\xcd\x51\x24\xdd\xdd\x58\xa3\xe7\x15\x42\x6f\x3c\x06\xa9\xec\x76\x9a\xa4\xb5\xa4\x74\xa0\x2a\x04\x97\x9a\x72\x5c\xf9\x28\x07\x57\xc2\x8c\x43\xb1\xd3\x58\xf1\x8d\x82\x01\x76\x6d\x18\x47\xc9\x86\xda\x4e\xa9\x58\x33\x57\x28\x3f\x51\x2b\xfa\x48\xe2\x7d\xbc\x07\xf3\x60\x7b\x68\xe3\xe2\x2d\xee\xfb\x71\x69\x58\x8f\xe7\x1f\xd7\xad\xda\xbf\xbf\x9d\xa5\xb1\xdf\x4c\x58\x73\x37\x15\xc7\xc0\xcd\x26\xe4\x5c\x6e\xa9\xf7\x3d\x29\x54\xab\x14\xeb\x65\x6a\xe6\x7e\xd9\x8e\xbe\xc2\xdc\x4f\x17\x77\xd3\x9f\xc9\x58\xa8\x23\x6d\x25\x50\x0c\xd0\x97\x89\xed\x07\x36\x85\xd9\x3e\xf1\xcd\x37\x34\xca\xfb\xdf\x2b\x34\xe0\x04\x8b\x19\xba\x22\x80\x73\xe5\xdf\xc7\x88\x22\xb1\xf1\xfd\xd2\x37\x17\x3e\x2a\xbd\x19\x87\x96\x0d\xbc\xf4\x2d\x1d\x55\xa8\xfa\x71\xa0\x3a\xed\xee\x94\x0a\xae\xf1\x28\xa8\xce\x3d\x9c\xc1\xa7\xc6\x8e\xfc\x43\xaf\xb6\x17\xb3\x34\xe9\x75\x53\x8a\xf4\x5c\xf0\xf0\x2e\xbe\x82\x59\xe4\x4a\x5d\x88\x6d\xea\x68\x4f\xcc\x3c\xc2\x2d\x58\xaa\x35\xc5\x31\xf0\x63\x4d\xae\xf0\x28\xf0\x60\xc8\x38\xcd\x4c\x37\x9d\xd0\xa4\x2a\x3f\x53\x13\xc2\x56\x1f\xbd\x7f\x37\x02\x0f\xc5\x8a\x4d\xd2\x1b\xa5\x59\x2a\x7c\x47\x18\xbe\x0b\x6a\x28\x2f\x8c\x61\x60\xa6\x0e\xb5\x87\xf9\x52\xd8\x4f\x4d\x62\xe2\xa5\x1c\xc9\x64\x2c\x37\xa4\x10\xf9\xba\x7c\x6e\x2c\x0c\x16\x2a\x12\x29\xa7\x21\x73\x25\x64\xc4\xd4\x35\xc3\xa5\xd6\x60\xa7\x5b\x41\xbf\xbc\x4d\x63\xe6\xbc\xcf\xf6\x36\x4a\x40\x08\x15\xcf\xe3\xd3\x12\x37\xfa\x26\xaf\x1b\xb0\xfa\xfc\x57\x58\x4a\x12\x69\xea\x7e\xf2\x6e\x34\x1b\x5b\x6c\x09\xe6\x7a\x2b\xbd\x67\xbe\xd2\x50\x65\x6e\xa7\x61\x38\xca\x72\x00\x02\x59\xec\xa6\xa3\x08\xe7\x41\x10\x20\x3d\x21\xd5\xda\x16\x0a\xbe\xe7\x54\x52\x2e\x8c\x47\x79\xb4\x10\x41\x64\xfd\x35\xaf\xd1\x56\x7d\x8f\x64\x1c\xbd\x27\x92\xce\x15\x36\x79\xd2\xfb\x2f\xb7\xb0\x03\x81\x78\x7f\x0f\xbb\x09\xae\x04\x9a\xf3\x31\xb2\x28\x56\x61\x00\x1f\x90\x79\x41\xdc\xf6\x03\xa5\xcf\x7a\x03\x3e\x8d\xeb\x79\xde\xbb\xd7\xd3\x40\xfa\x2a\xd3\x9f\xe2\xa0\x71\x1c\x4f\xd3\x5e\x99\xde\xd3\xf0\x47\x0b\x36\x47\x04\x85\x8c\xd9\x13\xcc\x4d\x0e\xe4\x2b\xe7\x93\x30\xae\x68\xef\xc3\x29\xc2\xaa\x70\x30\x76\xeb\x4d\x74\xb2\x03\xe2\x9d\x44\x66\x16\x1b\x48\x4b\xa7\xd5\xb5\x32\xac\x8d\x9f\xa9\xfe\x0e\x45\x90\x7f\x4b\xa7\x30\xde\x7a\xb2\xa3\x75\x58\xc8\x1e\x38\xae\x07\x37\xe1\xef\x05\x0a\x30\xb3\x82\x03\x59\x24\x44\x68\x94\x61\x4e\xb8\xc3\x0e\x83\xf3\x03\x76\x84\x05\x59\x44\x0b\x12\xaf\x03\xb1\x3f\x9c\x52\x9f\x90\x57\xcc\x39\x57\x9c\xee\xec\x04\xa1\x72\x29\xab\x87\x86\x1d\x40\x91\x6b\x8a\x2a\xf3\x4b\xed\xc0\xdd\x51\x04\xde\x45\x96\x0e\x27\x7c\x66\x75\x5d\x25\x67\x1f\x94\x1e\x18\xf7\x43\x45\x8f\x96\xbf\x34\x9c\x68\xbd\xf0\x42\x6d\xc1\x93\x6d\xfc\xc7\xbb\x91\x1a\x02\xae\xe6\xb9\xb1\x84\xd4\xe1\x3d\xaf\x31\x9d\x18\xe1\x38\x1c\x41\xb7\xdb\x9b\xe7\x9b\xf8\x40\xe6\xe2\x74\x91\x9d\x4c\x5e\x41\x41\x6d\x39\x89\x39\x1b\x66\x69\x3e\xb4\x21\x1a\xbe\x35\xe4\xc3\x71\x44\x7b\xf8\xd7\xbd\xe0\xf9\x71\x5e\xac\xc3\x7b\x66\xb6\xf9\xc6\xa3\x7b\x35\x47\x51\xf9\x56\x97\x11\x20\x89\x7a\x9d\x97\x18\x42\x4d\x8c\x95\xa5\x02\x45\x5b\xb5\x1a\x3c\xef\xf6\x6e\x3e\x9a\xcd\x8b\xa8\x18\x51\x15\x94\xfe\x46\xe8\x44\x7d\x39\xe7\xea\x98\xdd\x98\x3a\xd4\x7e\x6b\x94\x45\xa1\x10\xe5\x39\x7a\x60\x4d\xf6\xbb\x31\x9e\x3e\xf4\x6a\x3b\x1a\x0c\xa2\x5e\xe6\x4b\xae\x98\xcc\x8b\x8a\x38\xf4\xa2\x02\xf5\x25\x66\x00\x14\x82\x50\xb0\xab\x5c\xfc\x97\xaa\x71\x8d\x05\x74\xb1\x62\xb6\x77\x3c\x2e\x8e\xf1\x76\x52\x97\x69\x28\x70\x2f\xa6\x59\xdc\x5d\xac\x56\x80\xa2\x5a\x04\x89\x08\x5f\xab\xb5\x39\x4b\x3a\x30\x9e\x65\x93\xfc\x58\x61\xdc\xdc\x78\x4c\x1c\xde\xd3\xee\xa6\x2d\x85\xe9\x58\xad\x71\xc0\x36\x11\x1c\x84\x26\xcb\x22\x49\xf9\x4b\xb7\x7f\xf5\xfe\x42\x24\x27\x91\xc8\xd0\x76\x6d\x5e\x64\x92\x49\x75\x1c\xd1\xae\xd2\x78\x5b\x81\xd8\xf3\xb0\x9f\xc6\x26\x83\x6e\x1f\xd2\xd1\x6c\x0d\x65\xc4\x5b\x5e\xfd\x56\x15\x15\xe2\x79\x96\xde\x46\x3e\xe8\x53\xc5\xcb\x72\x4d\x31\xc5\x9f\x2e\xbf\xaa\x28\x3d\x92\x22\x33\xd4\x21\xb2\x00\x3e\x10\x00\x7a\x7e\xa6\x64\x2a\xef\x94\x4a\x03\xe5\xda\x58\x72\xee\xd0\xab\xaa\x1d\xc5\xa9\xaa\x42\xcb\x8d\xaf\x1b\xfc\xf4\xe9\x76\x3a\x37\x97\xdb\x62\xc2\xeb\x96\xde\xa8\x35\x49\x4e\x78\x59\xe1\x77\x55\x8d\x27\x34\xc9\x82\x01\x20\x55\x50\x27\xd5\x93\x7a\xd9\x5b\x31\x4a\x66\xc1\x0a\xc4\x03\x4e\xdf\x8f\x02\x55\x89\xff\x51\x23\x8d\xd8\xf0\xa5\xc1\x4b\xf4\x09\xee\x94\x2a\x7d\x90\x7f\x65\xec\xbd\x2b\xe7\xb4\xc8\x0c\xca\xda\x2e\x49\xfb\x97\x4a\x3b\xfe\x2f\xc7\x3c\xb5\x23\x54\xe7\xcb\x86\x59\x94\x4b\x49\x4b\x92\x61\x3a\x33\xa6\x4e\xde\x30\x8d\x12\x6e\x5a\x15\x79\xf1\x96\x27\xe8\xa1\x05\x2a\x64\x3d\xd5\x51\x2f\x7a\xe4\x5f\x53\xa0\xb9\x7c\x98\x26\x79\x34\x1b\xc5\x51\x41\x8d\x00\x7b\xa7\x24\x07\x50\x2a\xf3\x71\x4a\x05\x0b\xf6\xa8\xcd\x42\x7a\x44\x8f\x42\xb9\xa8\xb9\x8e\x2f\xba\x04\x6b\x6c\x16\x4c\x96\xd2\xa0\xc1\xd1\xe6\x86\x0e\xbe\x29\xbf\xea\xfb\x66\x6a\x5c\x4b\xbe\x9c\x71\x59\x35\x96\x5e\x6e\xf0\xdd\x16\x8a\x97\x34\xc2\x9d\x31\x10\xb2\x89\x9f\xd1\x3c\x5f\x23\xda\x62\xe8\x0c\x40\x51\xfe\x24\xa5\x20\xe0\xb7\xde\x25\x23\x81\x28\xef\x8a\xd2\xfa\xe8\xda\x39\x4b\xc4\xd2\xf9\x36\xbf\x5a\x2e\xab\x76\x54\xce\x34\xa0\xbf\x92\x05\x0f\xa4\x4e\x0a\x6b\x8a\xb7\xfd\x80\x8a\x31\x08\xd7\xfe\x8e\xa6\x06\x6e\xcd\xc9\x26\x2f\x2e\xb7\x0b\x24\x8c\xe3\xfe\x0a\x84\x2f\xa2\x96\xd4\x20\x84\xda\x37\xc3\xa1\x75\x4a\xde\x30\x1b\x1c\xc2\xf1\x4d\x75\x4a\x08\x3d\x62\x3f\xcd\x8b\xd9\x51\x5e\x70\xc0\xf5\x9a\x97\xaa\xd7\x6b\x69\xa3\xc5\xdf\xbf\x5f\xf7\xb9\xb7\x3c\xaa\xfa\x2a\x0d\xa4\x80\x49\xbd\xcd\xe9\x8d\x18\xc8\x8b\xe0\x04\x87\x10\xc2\x99\xcf\x34\xdb\xfb\xed\xa0\x96\x9c\x8e\xa3\xc4\x92\xa8\x98\xb0\x5c\xdc\xc0\x1f\xbf\x4c\x7e\xeb\x75\x1e\x56\xdc\x5d\x50\x64\xf0\x48\xbe\xb8\x21\xde\xbb\xd7\xc9\x50\x78\xe7\xec\x04\x39\x3a\xf0\x6d\x4e\xd5\x78\x59\xec\xe8\xa8\x6a\xb2\x63\xe0\x33\xdf\x8c\x01\xd1\xa6\x0e\xb5\xbb\x26\x5b\x8c\x12\x31\xda\x42\x5b\xaf\x39\xec\x5d\x22\xcb\x54\x4e\xc9\x76\xcf\x60\x7c\x9f\xd6\x02\xbe\xfb\xc9\x8e\xb7\xd7\x1f\xa8\xea\x25\x70\x4e\x94\xe4\xf8\xa5\xe7\x3a\x1e\x2f\xb5\x79\xb9\x7a\x01\xb1\x05\x5a\x7a\xa5\x89\xbc\x8b\xb0\x18\x11\xed\x2c\x26\xed\x46\xe2\xfd\x01\x36\x8a\x94\xfd\x95\x7e\xdc\x39\xd7\x63\x57\x99\x7f\x13\x11\xa4\x76\xff\x7e\xf6\xba\x18\x3f\xef\xa8\xb3\x7c\x0e\x67\x53\xe7\x2b\x8a\x90\x38\x8b\x0a\xae\x0d\x68\xed\x4a\xbe\x56\x58\x99\xdc\x24\xdd\xc5\xca\xf1\xd0\x5e\x6e\xb5\x98\xf8\xba\x7c\xc2\xf7\x1f\xbe\x44\x48\x05\xe1\x84\xc7\x22\x70\x39\xdd\xe9\x69\x87\x0a\xa7\x29\x10\xaa\x47\x27\x6f\x61\x06\xa2\xce\x8b\xd8\x42\xbe\x01\xef\xf5\x44\x47\xf1\x92\x4c\x2e\x7b\xa7\x65\xde\x14\x69\x8b\x42\x3a\xf1\xc7\xe9\x3b\x84\x6e\x4d\xaa\x3e\x73\x86\x52\x81\x13\xaa\x6a\xb5\xa9\xe3\xeb\x1c\x48\x2b\x32\xf7\xf5\xd8\xe9\x72\x64\xa6\x1d\x9b\xa2\x8a\x42\x5d\x73\xcc\x5a\xa0\x14\x96\x2e\x23\x87\x2c\xf3\xe3\x7d\x81\x70\x94\x17\xe9\xc0\x66\x93\x5e\x3b\xe4\x6f\x31\x27\x78\x91\xff\x39\xf0\x05\xdc\xe3\x1a\xe4\xfd\x81\x42\x6f\x2f\xd9\x58\xd0\xdb\x02\x1c\xad\x9e\x83\xaf\x55\x2b\x42\xd7\xce\x99\x51\x5c\x30\xcc\xde\xf9\x7a\x53\x87\x38\xda\x3a\x4e\xb3\x80\xa6\x87\x2d\x2a\x75\xf8\x48\xe9\xee\x1e\x57\x58\xe0\xcc\x0e\x4c\x94\xe4\x5b\xaa\x6f\x60\x29\x78\xe4\x24\x04\x8a\xe6\x27\xf5\x87\x8a\x90\xf1\x56\xa0\xd2\x06\x1f\x36\xee\x4c\xb1\xd9\xb4\x70\xe1\x66\xd4\x84\x03\x56\x55\x1b\xfc\xe6\xce\x33\x35\x87\x87\x0a\x89\x2d\x42\xf0\x08\x07\x0b\x95\x42\x85\x9d\xa5\x49\x91\x26\x2f\x46\x83\x2a\x50\xaf\xa6\xc1\x55\x33\x3c\x37\x8b\xf2\x39\x87\x66\x04\x20\x37\x1e\xff\x73\x9a\x20\xe4\xd5\xb6\x74\x5a\xdf\xfa\x35\xa7\x0d\x5a\x4d\x81\x22\x84\x39\xe8\x10\xba\xf4\x1a\x22\x3a\xec\x5d\x81\xd9\x6c\xc4\xc4\xe7\x9c\x5c\x09\x14\xbf\xf3\x4a\x83\x43\xd3\x4e\xb3\x5e\x3d\x3d\xf8\x69\xe9\x0f\xea\x4f\x9b\x12\x9d\x5f\x27\x16\xd1\x96\xb3\x06\xef\x3f\x4d\x4b\x9c\xaf\x97\x7d\xd5\x28\xec\x67\x4b\x79\x6c\xb3\x49\xcd\x3e\x8d\x3d\x20\x87\x91\x77\x6e\x57\x35\x1f\xf7\xed\xb1\xf9\x94\xe4\x6f\x4c\x14\x08\xd5\x3e\x70\x7e\xee\x3f\x39\xe8\x56\x61\x43\xcf\x5c\x94\xe7\x23\x3b\x49\x13\x29\x56\x42\x29\xad\x5d\x53\x6c\x9a\xbb\x3a\xbe\x80\x76\x7f\x6c\x82\x8f\xcc\xc0\x11\x4e\xe3\x5a\x5f\x2f\xbb\x1a\xc2\x21\xa4\x19\xe1\xfa\x09\x0e\x2f\x84\xf9\xd7\x75\x6c\x7c\x8a\xad\x0e\x0e\xa9\x2f\x4a\xef\x4f\x5e\x0f\x14\x64\xfe\x24\x76\xb1\xa8\x3f\xf8\xec\xe2\x1a\xb9\x29\xa2\x1a\xe2\x81\x54\xc9\x28\xb3\x83\x59\x9b\xf5\x26\x2a\xe3\xe9\xa4\x6c\x1c\x51\xca\x5d\xdd\x6c\x77\xba\x99\x57\x30\x1e\x28\xed\xb3\x93\x4a\xfb\xec\xa4\xea\x15\x4c\xb3\x79\x3b\x98\xd4\xaf\x4e\x53\x29\xc3\xe0\x3b\x60\x6f\x20\x0b\x24\x2c\x90\x3b\x1c\x7e\x79\xb2\x75\xe8\x55\x4e\x01\x6c\xed\x54\x56\x87\xe5\x01\xe8\xb3\x9a\xda\x5c\x7a\x5d\xfc\x22\xef\x66\xd6\xb0\x1e\xb1\x48\x74\x54\xc3\x21\xd2\x1d\x3e\x73\x36\x30\x5c\x99\xa9\xd6\x8b\xc4\x42\x64\xb6\x04\xde\xa0\xe8\x2e\xec\x5b\x70\x21\x71\xe4\xfc\xa8\xc6\xa6\xf3\x23\x55\x0b\x1d\x44\x49\x34\x88\xde\xe2\x7c\x5c\x13\xbc\x63\x9c\xbb\xfd\x35\x47\xc9\xc1\x9e\x99\x68\x1b\xb4\x1c\x13\xf3\xb8\xde\xe5\x0b\x2f\xb4\x4d\x3e\x2f\x9f\x70\x44\xae\x5e\xd9\xfa\x92\x82\x30\x98\x2e\x63\x42\x70\x96\x63\xd2\xf9\x7a\x6c\x33\x4d\x4f\xb7\xc3\xd8\x64\xd1\x9c\x83\xea\x33\xa7\x0e\x1c\x3f\x21\xd8\xf1\xfd\xca\xb3\xa3\x38\x8e\xea\xf4\xce\x9f\xf0\x12\xe6\xbb\xb1\xf0\x8d\x2a\x22\x47\x3d\x42\xdf\x11\x4b\xf8\xba\xf9\x15\x07\xb0\x1d\x66\x51\x12\x46\x43\x78\xfd\x87\x95\xb7\xeb\x3d\xdf\xb1\x97\x20\x4b\x34\xcc\x6c\x6e\x58\xd3\x8f\x3b\x39\xd4\x36\xb9\x54\x6e\xa0\x87\x9b\x3a\xd4\x9e\x3a\xb4\xbd\xe5\x28\x74\x3e\xc2\xe3\x60\x89\x71\x15\x99\x7b\xe1\x78\xfe\x45\x32\x42\x71\x38\xff\x5f\x4a\x48\x74\xf7\xb2\xc2\x08\xde\xd4\xdd\xaf\x37\x1e\xdb\xac\x1f\xa6\x83\x61\x6c\x8f\xb6\x7c\xfb\xfd\xa7\x81\x82\x02\x7f\xaa\x8c\x48\xf2\xd2\xc2\x4b\xe4\xfe\xab\x66\x0c\x51\x2a\xbd\x1a\x28\x4f\xcb\xf4\x12\x8b\x10\x93\x0f\x08\x24\xef\xe4\xb4\xf0\xdf\x98\x19\x56\xf7\x73\x3e\x45\xf5\x8d\xc2\xe8\xb7\xd1\xe8\xed\xdd\x4b\x4f\x6b\x32\x59\x27\xf0\x1b\x2e\x06\x8a\xe7\xf7\xe2\x98\xa9\x3c\xbc\x67\xa6\x9d\x8f\x38\x4d\xe6\xc0\xec\xec\xcb\x60\xcb\x5f\x52\xc4\xc7\xe3\x11\x06\x4d\xed\x5c\x6c\xbb\x3d\xef\x4d\x49\xee\xae\xfa\x1c\xb8\x95\x6f\xa9\x96\xf9\x53\xce\x05\xab\xf6\xfc\xc0\x26\x8f\x27\xa9\x7e\x46\x9d\xc2\x51\x32\x37\x22\x56\xdf\xca\x40\x00\x51\xbc\x02\x03\xc1\x37\x4d\x98\x93\xe1\x28\x1b\xa6\xb9\x8c\x08\x3c\xbb\xb7\x4b\xd5\xa9\xf8\xf6\xd8\xd4\xef\x9b\xae\x0e\xc3\x28\x2f\x22\x93\x44\x05\xf0\xd0\x58\x33\x90\x52\x90\x9b\x60\x97\xaa\x65\x87\x5d\x38\xaa\xc2\x36\x4a\xbf\x20\xf2\xca\x2d\x25\xf0\xaa\xe8\xbd\x33\xbb\x08\x73\x21\x82\x10\x64\x2e\xc4\x9c\x4a\xa6\xa9\x88\x32\x6a\x10\xe5\x18\x1b\x4f\xfd\x85\x62\x7b\xfb\x42\x9b\xfa\x81\xed\x81\x99\x4e\xd6\xdd\x84\x17\x15\xbf\xaa\xea\x14\x6f\x8e\x4c\x1c\x15\x4b\x5b\xe9\x85\xa4\x83\xcf\x4b\x95\x88\xf0\x9f\xeb\xf3\x73\x71\xe3\x07\xb4\xcf\x11\xc7\x31\x7a\x04\xce\xea\xfd\x46\x51\xb8\xac\xe7\x0a\x84\x38\xc4\x2f\x2a\x9d\xf0\x8b\x1a\xa7\x6b\x07\x69\x2f\x33\xc3\x7e\x14\x62\x50\x60\xcc\xd1\x79\xc5\xd7\x4d\xcc\x73\x79\x61\x32\xc7\x98\x0a\x63\x78\x19\x27\x31\xdf\xb8\xe2\xd6\x42\x15\xe1\x64\xcc\x59\x23\xdc\xc1\x2a\x84\xf8\x0b\x05\x99\xcb\x87\xd6\x76\x29\x7b\xe0\x78\xf2\xaa\x55\x87\xb5\x7c\x1f\xe9\x5e\xbe\xc1\x4e\x41\x62\xeb\xac\xd2\x01\x7b\x5f\x75\xdb\x9c\x80\x49\xc2\x08\x9e\x1a\xdb\xb9\xaf\xbf\xde\x9e\xb7\x4b\xb3\xa9\xc9\xba\x93\x2a\x6a\x86\xb6\x83\x63\x6b\x72\x49\x15\x30\x09\x08\x19\x88\x4e\x2d\x85\xe9\x80\x3c\x55\xd8\xc8\x0b\x00\x78\x60\xac\x8f\x07\x9e\xcb\x0e\x0a\x6c\x0e\xd6\xea\xff\x06\x8f\xc9\x9f\xfe\xcf\xf4\xba\x47\x49\x0d\xd6\x5e\x2a\xbf\xf5\xb2\x8a\x16\xc2\xd4\x84\x7d\xcb\x41\xa5\x28\xb7\xb6\x94\xa2\xab\x6f\x99\x1c\x98\xb0\x1f\x25\x36\x5b\x82\xa8\x13\x57\x58\x50\x3c\x00\x4e\x01\xaa\x74\x52\x7a\xf1\xd0\xa7\xe3\xb4\x42\x04\x31\xec\xe9\xfd\xb2\x34\x9c\xb7\x73\x55\xa0\x04\x4a\xd2\x75\x52\x4c\x98\x59\x1f\xa7\xc7\x24\xdd\x95\xc1\x30\xca\x10\x0d\xb8\x76\x16\xdf\xda\x12\xf8\x32\xf4\x9b\x0b\xa1\xa6\x42\xd5\xf5\xd0\x77\xc6\x8f\xbd\x57\x0f\xb6\x33\x9b\x47\x5d\xa1\x1b\x73\xfc\xcf\x9e\x55\x47\x49\x82\x86\x59\x54\x44\x61\x94\x0f\xb6\xf8\x4e\x80\x93\x14\xad\x01\x64\xf0\x76\xa0\x5a\xd4\x15\x4d\xf5\x47\x8a\x1c\xfc\xed\xc6\xd7\xcb\xc3\x94\xd9\xec\x5f\xe3\xe2\x00\x13\x3e\xf0\x8d\x43\x2d\xf6\xb2\x74\x71\x8b\x6a\x21\x42\xb7\x3f\xca\xf4\x5b\x3b\x9a\xda\x10\x9f\x17\xa2\xe8\xea\x61\xb0\x21\x6a\xed\x0a\x76\xd4\xb3\x69\xa1\xa8\x32\xaf\x6a\xaa\xcc\xab\x8a\x70\x7f\x31\x8b\x8a\xc2\x26\x38\x3f\x6a\x15\x13\xe0\x5f\xfe\x45\xe9\xfb\x61\x56\xea\x15\xba\x84\xf9\x82\x9d\x8c\xa7\x1b\xbc\x77\x15\xa4\x31\x1f\xa6\x45\x8b\xd5\x4c\x5a\xfb\xf7\xaf\x5f\x1b\xab\x99\x1f\xd8\xd3\xb6\xc9\x1b\xe9\x12\x9d\x83\x80\xfa\x3c\xc2\xee\x16\xb1\xc2\x96\xa7\xad\x6b\xaa\x2b\x2e\x44\xb6\x48\xcc\x40\xb3\x87\x96\xaa\x4e\xbc\xaa\xda\x10\x17\xcd\x3c\x29\x77\x1e\x74\xf0\x13\xd5\x87\x86\x96\x50\xc4\x49\xeb\xa5\xe2\x33\xe2\x4c\x86\xa0\x54\xbe\xea\xd1\x20\x51\x1e\x66\x76\x68\x92\x90\xbd\xc4\x69\xd7\x30\xe1\x93\x38\x97\x94\x13\x52\x98\x5c\x78\x20\x60\x07\x5a\x70\xa8\xf8\x66\x79\x03\x09\xd1\x91\x99\xea\x9c\x87\x1b\x8f\x8a\x31\xf7\x6b\xf1\x8d\x07\x11\x13\x3c\x9d\x6b\x52\xae\x49\xcf\x73\x74\xf8\xec\xce\x9c\xc9\x42\xc0\x13\xc4\x41\xf6\xda\xd9\x48\x9d\x32\x45\xa4\xca\x7b\x24\x66\x40\x4c\x3c\x7b\xf7\x72\xa0\x76\x9b\xac\x17\x5f\x37\x24\x69\xbe\xde\x9e\x8b\x98\x96\xc2\x31\xc4\xbb\xfc\xc2\x95\xf2\x49\x1f\x28\x84\x22\x0c\x21\x44\xa3\xaa\x88\x3c\xce\x34\x7a\xe8\x55\x70\x42\x2a\xc1\xa9\x6d\x1d\xdf\x2e\x06\xce\x14\xc4\x0a\x27\xc7\x8a\x5e\x7b\xa7\xda\x79\x3f\xcd\x8a\x39\x13\x43\x71\x00\xe6\xe3\xa1\x92\xc3\xe2\xe6\x58\x44\x3e\xd7\x14\x79\x59\x92\xce\x66\xb6\x67\x26\xbc\xbe\x27\xef\x28\xa4\x6b\xef\x93\x55\x00\x6e\xe3\x6c\x53\xf7\x5f\x98\x26\xa1\xed\x5a\xcd\x76\x70\x59\x89\xff\xb3\xac\x2f\x4e\xad\x71\xa6\x57\x39\x01\xd2\x6c\x1b\xfd\xa8\xeb\x46\x75\xd2\xde\xa8\x7e\x2a\xca\x03\x2f\x39\x55\xcd\x1a\x55\xbb\xdf\x46\x4b\x0c\xbc\x75\xee\x32\x79\x9c\xe2\x23\x19\xaf\xbe\x8d\x04\x71\x2b\x51\x92\x8a\x98\xc6\x0b\x79\xaf\x1e\x6c\xcf\x66\x29\x45\x59\x74\x52\x33\x12\x3a\xf0\xcd\x1c\x47\x1b\x7e\xc8\x11\x3d\xa9\x52\x3a\x52\x0e\x7c\xdd\xd0\xd4\xd8\x1e\x25\xdd\x11\x79\x66\x33\x7e\x34\x0f\xec\x91\x6b\x9d\x89\x8b\xf2\x30\x1d\x25\x05\x99\x76\x9c\x7f\x77\x02\xcf\x4a\x8a\x73\x11\x0b\x19\xa1\x14\xff\x3b\xd9\x85\xf5\x33\xa5\xce\xc1\xbd\x39\x8a\x32\xbb\x8d\x1e\x13\x01\x10\x34\x47\x81\x07\xfc\x79\xa0\x82\xed\x35\x80\x0c\x90\xfa\x3c\xaf\xd4\xce\x6f\xd1\xc6\xe1\x7f\xd7\xf2\x16\x9a\xf6\xb4\x1b\xe5\x89\x5d\x52\x1c\x46\x57\xeb\xed\xc4\xcf\xd7\x34\x59\xe6\xe6\x2c\x8b\x95\xee\xdf\xef\x72\xb9\x2d\xc7\x02\xb1\xaa\xe0\x2a\x5c\xa5\x2c\x52\x21\x49\x61\x92\x83\xa0\xc6\xda\xe8\xd1\x45\xa3\x84\x18\x6f\x48\xf7\xd3\x79\x31\xef\x29\x2f\xe6\xbd\xa6\xfa\x78\xd7\x86\x82\x1a\xc7\x31\x75\x5f\x01\x9c\xef\xab\x9c\xac\xc9\xb2\xb4\x67\xaa\xb9\x99\xf6\x99\x09\xa5\x6f\x71\x49\x91\x30\x71\x43\x88\x94\xab\x68\x7d\xb1\x2a\x78\x93\x3c\xce\x20\x4a\x84\xaa\x4f\x1a\x0b\xb4\x68\xcd\x58\x56\x67\xef\x5e\x22\x0c\x20\xbb\x02\xaf\x7d\x13\xd0\xc4\x0e\x2a\xea\xfa\x3d\x6e\xa8\xc3\xcd\xc4\x79\xfa\xb4\x37\x25\x27\x14\x99\xc7\x7d\x60\x96\x71\x04\x70\x4e\x49\x84\xeb\x2a\xff\x70\xfd\x1a\xfa\x46\x94\x7e\xdf\xb4\xa3\xa3\xa7\xd7\x93\xbd\x49\x0f\x8e\x55\x02\x17\x54\x30\x29\xb4\x28\x38\x35\x4b\x32\xff\xa8\xfd\x7f\x17\x63\xa8\x0a\x5b\xe2\x27\x6f\xeb\x78\x8c\xc4\x05\xaa\x12\x0b\x47\xea\x46\x43\x3b\x73\x60\xa6\x9d\xd2\xa2\x3a\xb0\x47\x83\x19\x7d\x3b\x75\x43\x1a\x31\x8d\xdd\xd6\x97\x86\xf5\x96\xe3\x5b\xb8\xaa\xce\x93\xd8\x2c\xe6\x69\xb2\xa5\xfa\x6e\x81\xf8\x29\x96\x71\xd6\xc5\x64\x36\x0b\x6c\x2b\x38\x2e\x0f\x95\x29\xf1\xc4\x8f\x8b\x51\x92\x90\x30\x69\xcb\xaf\xa3\x0b\x4a\x10\xe6\x82\xf2\xd5\x63\x53\x44\x49\x4b\x95\x1e\x56\x55\x8b\xc5\xaa\x6a\x2f\xcb\x47\x21\xe7\x6f\x61\x85\x2e\x52\xdd\x8e\xaf\x95\xef\x18\xdb\x05\x9b\x99\x9e\x05\x0f\x2c\x36\xf9\x9d\x40\x71\x13\x00\xcb\x06\x07\xea\xc3\x6a\x19\xad\x6f\x43\x3e\x84\xff\x89\x8e\x5f\x47\x49\xec\x64\x04\x2e\xbb\xbc\xd5\x7c\x96\x26\x69\x46\x0d\x0d\x82\x55\xae\xbe\x11\x63\xb5\x46\x8f\x25\x2d\xe4\xca\xa4\x3f\xd9\xf1\x69\xbb\xa9\x03\xcc\xe3\x07\xaf\x61\x82\xbc\x78\xe9\x9e\x27\x1b\x84\x83\xf9\xae\xb2\x41\x83\xb4\x88\xc4\x73\x15\xb4\x9f\xc2\x4a\xe9\x1e\xcc\xbe\xe9\xee\x72\xd5\xc4\xff\xff\x33\x80\x58\xe3\x10\xfe\x87\xd8\x44\xf0\x0a\x9f\xeb\xa8\x42\xda\xd3\xd4\x2b\x03\x9f\xb6\x45\xed\x99\xae\x3e\x75\x78\x8f\x90\x79\x70\x34\xac\x3a\x63\xbd\x16\x70\xbd\xbf\xd2\x11\x93\x9c\x25\x50\x61\xb5\xb9\x66\x0e\x38\xf2\xfc\x31\xfc\xc0\x81\x3d\xed\x28\x31\x61\x38\xca\x4c\x01\x67\x42\x2a\x5d\x0a\x2c\x87\x3c\x0a\xcc\xd6\x3d\x75\xa4\xd8\xa3\x21\xd8\x5d\x68\xff\x0a\xd1\x07\xed\x39\xa7\x8c\xec\x16\xdf\x95\x92\xd2\xea\xfc\x57\x63\x04\x0e\x87\xf7\xb4\x07\xc4\x57\x77\x78\x8f\x6f\x27\xab\x86\x4c\xa1\x52\x60\x69\x06\xc3\x18\xc2\xc4\x08\xbf\xb6\x77\x6a\x24\x38\x8a\x1b\x05\x79\x56\xd7\xef\x74\x44\x20\x99\xc7\x1b\x68\x1a\xdb\xdd\x74\x34\x1b\xdb\x49\x2f\x36\x76\x97\xcc\x02\x1f\x69\x4a\x20\xe8\xf7\x54\xe3\x6e\xa3\xc2\xc7\x6c\xca\x10\x21\xa1\x39\x55\xd5\x97\xb3\x63\xc7\x84\x23\xe5\x24\xd2\x0c\x6a\x75\xff\x0f\x44\xf2\x2b\xa2\x87\xeb\x3b\x2b\x8b\xb6\x7e\x86\x7e\x16\xd6\xeb\x51\x1d\x20\x5c\x99\x19\xe9\x66\xf2\x6c\xe6\x57\x54\xdf\x55\x48\x68\x73\x4a\x27\xa0\xe5\xf4\x76\xa9\x0a\x7b\x80\xf5\x88\x60\xb8\xef\x9d\xbe\x8c\x44\x23\xf6\xca\x39\x1a\x0e\xf0\x35\x6c\x5f\xf6\x91\xf0\xe6\x8e\x74\x63\x75\x23\xd8\x1d\xee\x70\xa5\x8a\xac\x74\xbb\x36\xc8\xd0\x59\x43\xcc\x4b\xaa\x53\x05\x92\xce\xae\xeb\xde\x33\x3f\x5c\x6f\xea\xdf\x4b\x49\xff\x98\x29\x9d\xf1\x05\x1f\x29\xe1\xb7\x8f\xea\x52\x60\xa3\xc1\xa4\x07\x22\xaf\x6a\xc1\xee\x40\x55\x03\xca\x1a\x66\xa6\x89\x9c\x6f\xb1\x6f\x8a\x56\xb5\x94\x14\x79\xb8\xf7\x30\x7d\x15\xbc\x5a\xa4\x4e\xc9\x4e\xa8\x2c\x55\xab\xd3\x38\x97\x65\xe5\x34\x56\x3e\x9a\xcd\x1c\xd9\xa7\x74\x6c\xaa\xb6\x71\xad\x42\x4d\x6c\x52\xd5\x10\x4e\x3b\xc5\xf2\x73\x4a\x98\x19\xe4\xd2\x42\xb5\xd9\x44\xc4\x81\xfe\x72\xfa\x29\x87\xa9\x75\xf8\xb4\x07\xca\x5d\x32\xd9\x6c\x54\x64\x26\x8b\x58\xd3\x6c\x9d\xc0\x2c\xeb\x97\x15\x8c\xaa\x17\xa7\x79\x0e\x75\x09\xfc\x3c\xf8\xa6\xf8\x5a\x35\x12\x8e\x86\xbd\xcc\x74\x6d\x97\xa3\x1d\x39\x45\xf5\xf1\xea\xa3\x22\x13\x16\xba\xfb\x9e\xdb\x08\x04\xbb\x50\x7d\x06\xe7\xf6\xb7\x4b\xaf\xbc\xfc\xed\x40\xcf\xbc\x2d\xf2\xaf\xd2\xf8\x39\xd0\x6b\x65\xd7\x60\x14\xa0\xa9\x09\xd3\xf9\x65\xa0\xba\xe1\x6f\x12\x10\x04\xae\xcc\x3a\x2d\x10\x54\x38\x1f\x6e\xb0\xc3\xd5\x12\x77\x14\xa8\x95\x9f\x0b\x33\x0b\xed\x00\x97\x99\x38\x30\xe3\x14\xd1\x55\x27\xff\x5d\xc0\x6a\xb1\x8b\x8e\x69\x50\xc6\x93\x60\xf1\x60\x12\x7d\x44\xdc\xd2\xcf\x5e\x4d\xaf\x53\x79\xae\x0c\x2d\xb6\xea\x8a\x16\x3b\x39\x4e\x23\x0f\x1a\x97\x67\x69\xab\x22\x61\xfc\x3e\xb1\x15\x0a\x77\xf4\xf3\x1a\xbb\xdd\x37\x49\xcf\x8a\xfc\xa4\x38\x71\x67\x94\x5d\xb8\x1c\xd4\x78\xf7\x36\x1e\x23\x53\x87\xaa\x88\x92\x00\x89\x92\x82\x87\xf3\x78\x4e\xe9\x97\x3f\x52\xdc\x49\x37\x14\x9e\x63\x10\xc5\x51\x61\xb2\xa5\x1d\xf4\x39\x6c\xc5\x07\xaa\xbf\xf2\xa2\xea\xaf\x9a\xe8\x28\xd0\xf5\xe5\x52\x6b\x6c\x63\x3d\x88\x03\x41\x8f\xcb\x8c\xe6\x34\x83\xe2\x4d\xa8\xb2\x5d\x6b\xd9\x8b\xf5\xbf\x61\x8b\x7a\x2e\xc0\x25\x89\x7f\x02\xab\x80\x39\x3f\xad\xea\xa7\x99\xcd\x23\x86\x43\x55\xf3\x25\x39\x45\x9a\x16\x49\x36\x8e\xd3\xf3\xb7\x4d\x52\x44\x61\x34\x34\x45\x5d\xae\xe4\x9a\x92\x2b\xb9\xa6\x12\x25\xb3\x94\xbe\xe3\xdd\xa2\xd9\xbb\xc4\xff\x70\x62\x01\xfd\xa5\x3c\x0a\x23\xc3\x3c\xb8\xac\x07\xa8\xe0\x53\xdb\x3b\xfe\x08\x69\x2d\x37\x70\x0e\x8c\x86\x79\x68\x58\x0f\x88\x23\xe8\xa0\x5e\x54\x75\x79\x5e\x43\x6a\x6f\x4e\xf8\xfd\x2e\x1c\x75\xcc\x17\x00\x85\x22\x40\xd9\xa0\x83\xc4\xe8\x11\x7a\x79\x24\x38\xb9\xcd\x85\x6f\x54\xb3\xfc\x30\x4b\x0b\x4b\x83\xac\xdf\x8a\x59\x30\xb4\x7e\x21\xe6\xed\x6e\x13\x95\xc2\xbc\x8d\xe3\xb4\xd7\xa3\xc7\x75\xd0\x46\xc7\x23\xc0\x12\x51\x70\x42\xef\xb9\xd1\xec\x46\xf9\x20\xca\x73\x49\xec\xa3\xa8\xcd\x4a\xa9\x7c\x33\xf6\x5b\xd3\xd3\xed\xa2\x1f\xd9\x05\xb1\xfb\x12\x0b\xd1\x93\xf3\x8d\xe6\xb5\x8b\x6d\xb7\xe7\x0c\x21\x0c\x01\x87\xc2\x7c\xd3\x00\xf3\x9b\x69\xcf\x3a\xd0\x2f\xe6\x85\x1d\x0c\xbe\x71\x42\x37\xa1\xc9\xba\x91\x09\x27\x5b\xbf\x3e\xe5\xb9\x0b\x0e\xef\x11\x18\x1b\x8d\x00\xe2\xc6\x27\xc8\x0d\xc6\xf5\xba\x07\x18\xa7\x31\x25\x83\xab\xdf\x72\xad\x8e\xbb\x3b\x7e\xe0\x76\x2f\xfb\x6a\x0e\xbc\x27\x34\xba\xc3\xe1\xfd\x6d\xec\x03\xbe\x71\xe9\xb9\x7c\x98\xa5\xa3\x02\x79\x3c\xe1\x66\xad\x76\xa7\x70\xb6\x36\x78\x66\xb3\x76\x2e\xcd\xa0\x55\x0a\x6f\x0c\xd9\x66\xb0\x02\x3d\xd5\x51\x1d\x6d\xb0\x00\x88\x36\x26\xd5\xd3\xe5\x44\x08\xb9\xa4\x85\xc1\xe0\x02\x88\xfa\x83\x77\xe1\xf7\xff\x97\xff\x64\xc2\x43\x88\xd0\x6b\xcc\xc9\xe0\x52\xd1\x77\x5e\x6e\x52\x21\x31\xbd\x34\x89\xde\x72\x09\x1c\x38\x32\xa0\x23\xe1\xeb\xce\x2e\xad\xdc\xc9\x72\x07\xe2\xae\xd1\xd3\xf1\x8d\xda\xff\x8b\xa6\xe8\x5b\x2e\xa6\x3b\x47\x42\xa9\x9a\x3e\x46\x0f\x65\xc1\xc4\x92\x7b\x80\x07\x8d\x2a\x20\x5f\xab\xba\x17\x13\x59\x0e\xa4\x42\x00\x97\x0d\x6c\x9c\x7c\xed\x2a\x58\x64\xba\x46\x31\xbe\x16\x67\xe8\x35\xe5\x64\x5f\x73\xbc\xb2\x26\x8e\x6d\x8f\x30\xfe\x9c\x36\x03\xc9\x06\x80\x97\x7c\x3d\x36\xd7\x47\x66\xda\xfd\x28\x93\xf0\x55\xba\x71\x74\x6b\x8e\x72\x69\x07\x69\xd2\x35\x4b\x3b\xab\xc3\x15\xab\xfb\x6f\x15\xdd\xc6\x23\xec\x53\x9c\x0b\x5f\xd0\x02\x53\x28\xf0\xd7\x38\x87\xc0\x28\x5c\xa7\xd6\xe3\x50\xfd\x9b\x3a\x0a\xb0\x78\x06\x50\x2e\x1c\x61\xd7\x03\xef\xf9\x1e\x6b\xf2\x4a\x49\xd2\xc7\x66\xa2\x51\x8b\x4f\xbd\xab\x79\xf9\xdf\xf5\x48\xe7\x68\xde\xc6\x4b\xdb\x7d\xd1\x73\xad\x74\x7e\x69\xf8\xb5\x65\x5f\x6e\x38\xa3\xc5\xed\x97\x4b\xc5\x7c\xf8\x65\xe9\x02\xa1\xf3\x2f\x10\xe0\xb3\x56\xe5\x40\x4a\xe5\x98\x4a\x64\xe5\xc3\x34\x2b\xf2\x45\x6b\x32\x2c\x52\xc1\xaa\x6a\x10\x6b\x13\xb6\xb8\x6f\x1c\x11\x11\x36\xe1\x59\x3c\x06\xdf\xa8\xfa\x54\x1c\x21\x3a\x13\x7d\x9c\x96\x92\x4c\xa0\x87\x42\xa8\x7b\xa3\xf4\xf8\x93\x63\xa5\x8a\x87\x8f\x35\x35\x7a\x56\x0e\x4a\x62\xe3\x96\x16\xbc\xe0\x2e\x5e\x51\x23\x6f\x4a\xc2\x2e\x46\x89\x4f\xa8\x36\xe9\xc4\x48\x50\x99\xa5\xa1\xb4\x3a\x60\x5b\xfd\x11\x0d\xac\xf8\x0c\xbe\x0f\xe6\x62\x4d\xd9\xac\xdb\xb5\xcc\x76\xab\xd5\xea\x1d\xad\x42\x13\x29\x7b\x3f\xca\xba\x94\xe6\x43\x9e\x7d\x1b\xfa\x43\x9d\x46\xbf\x43\xa3\x3c\x0a\x3c\x9b\x13\x84\x31\xd7\x3f\x51\x44\x8b\x73\x24\x64\xb2\xad\x9a\x71\xc4\x3b\xdc\x27\xaf\x14\xfa\x67\xbc\xb8\xc8\x01\xe1\x0f\xfb\x19\x7d\xab\xee\x94\x15\xbe\xe5\x96\xd3\x9b\x19\x1f\xca\xea\xd4\xe9\x47\x83\xdc\xc6\x73\x3c\x03\x8e\xf5\xb9\x72\x61\xa5\x8e\xe8\x06\xd3\x12\x38\xf7\x48\x0d\x2a\xec\x23\x26\xdf\x15\x10\x25\x45\x16\x85\x94\x78\x70\x15\x71\x16\x8f\x76\x39\x7b\x87\x22\x5e\x57\x6f\x1f\xa6\xc9\x82\x3d\x0a\xcb\x82\x5d\xfa\x67\x81\x47\xda\xff\x99\x6b\xda\xe8\xda\x3c\xea\xb9\x28\x13\x35\xed\x5f\x52\xc5\xeb\x49\xa4\x68\x70\xf8\xec\x5e\x96\xa3\x2f\xb1\x45\x11\xdb\x3c\x65\xee\x34\x19\x3a\x25\x79\xf3\x33\x05\xcf\x04\x4e\xdb\xe5\xab\x6e\x05\x0a\x93\xf0\x3d\xbc\x3a\x7e\xe0\x2f\x4b\xe7\xff\x7e\xfc\x6c\xc7\xf7\x3e\xee\x5c\xae\xa2\x0d\xc1\xc7\x50\x1c\x81\x57\xfe\x44\x49\xc7\x8f\xeb\xfa\x56\x31\x74\xcc\x2c\x68\x70\xf0\x91\xb7\x07\x4e\x46\x73\xe0\x8d\x43\x39\x2b\x7f\x3d\x8d\x23\x28\x60\x08\xad\x6c\xcb\x75\x79\x8e\x7b\x87\x87\x5e\x6d\xe7\xb1\x45\x6b\x8a\x03\xac\xde\x55\x11\xe6\x5d\x55\xf9\x8e\x92\x85\xca\x67\xeb\xc9\xcc\xa2\xc6\xcb\x25\x25\x54\xe9\xef\xab\x48\xf3\x52\xf9\x8b\x1b\x3b\xdf\x24\x2d\xf2\x0b\xba\x1f\xfc\x87\x81\x72\x12\xbf\xb2\xac\x54\x25\xb6\x80\x7b\x9d\xf9\xaf\x14\x5a\xff\x38\xbc\x10\xd0\x02\x82\xd8\xdf\x69\x63\x7b\xce\xaa\x9f\xd0\x58\xe1\x8f\xce\x05\xaa\x32\x75\x1f\x8d\xb9\xc2\x55\xa8\x14\x0a\x3e\x87\xc3\xcb\x88\x5c\xd8\x42\x78\xbf\x37\x74\x84\x71\x83\x32\xdc\x4c\x07\xb1\x16\x50\x06\x8c\xf5\xd8\x28\x18\x83\x13\x73\x03\x47\x8c\xb0\x82\xf8\x04\x27\x98\x33\x84\x46\xc0\x37\x7c\xdf\xa0\xd3\x99\x61\xe2\xc1\xb3\xce\x65\x9d\x9b\xa3\xe3\x39\xb2\x9c\xe6\x44\xb8\x06\xb0\x82\x10\xcb\x2b\x46\xb4\xfb\xce\xa3\xb7\xd5\xa1\x15\x2f\x4d\xb8\x02\xe0\xff\xf8\x8b\x94\x21\x27\x1c\xc8\xbd\xe7\x6b\x67\xd1\x46\x8d\x83\x43\xaf\xb6\x4d\x04\x38\x21\x8e\xd2\xfb\x0a\x13\x7c\x3f\xf0\xb8\x40\x48\x99\xe5\xdb\x95\x26\xd9\xb7\xb5\xf4\xfa\x25\xc4\xe6\x38\xb4\x50\x8d\x95\xbe\x0f\x0f\x0c\x43\xa5\x89\x49\xfa\x3b\xca\x11\x62\x66\x3e\xc9\xb1\x37\xa0\x55\xe7\x62\xbb\xd8\xf2\x31\xcb\x05\x9c\xaa\x7c\x13\xd4\x91\x40\x61\x66\x7c\x25\x1b\x5e\x81\x2e\xc2\x8c\x2b\x3d\xec\xdd\xdb\x8e\xc5\xd0\xc0\xb8\x7c\xbb\xf4\xc4\x08\x8c\xc4\x14\x2d\x70\x7f\x1e\x53\x13\x5f\xba\xc4\x49\xd4\x03\x9c\x7b\xc2\xc6\x12\x92\x07\x32\xb2\xc2\xf2\x40\x2f\xc9\x7f\xa5\xc0\xab\x79\xdf\x66\x03\x23\x75\x6f\x27\xc2\xe1\x33\x8f\x13\xcb\x3e\xe0\xee\x47\xbd\x7e\x6c\x12\x50\x97\x63\xa3\xc0\xdf\xe3\x6b\xe7\xef\x8d\x12\x9b\x74\x5d\x44\x8f\x13\xfd\x43\xa5\xa3\x8c\x9a\x81\x68\xff\xec\x56\x27\xe3\x9c\x2f\x3b\xc1\xb7\xb9\xab\x90\x49\x77\x3d\xdd\x5f\x66\x0b\x73\x94\xfc\x05\x9a\xe9\x7f\xf7\x0b\x1d\x5f\xef\xdc\xb1\xac\xb8\x54\x8e\x51\xf9\x56\x20\xc3\xb4\xba\x51\xbf\xbd\x53\xc3\x62\x14\x69\xfa\x54\x75\xdc\x49\xb6\xcc\xb7\x7f\x7f\x56\x7a\x5e\x33\x4e\x7f\xc2\x46\xf3\x86\xc5\xb6\x64\x6a\x15\xd4\x95\x11\x9a\xa0\xc8\xc4\xcc\x24\xf0\x5d\xaf\x07\x9e\x30\x05\xa5\x24\xe4\xb9\x1e\xd5\xb0\x83\xb4\x16\x60\x93\x58\x3f\x4c\x24\x6c\x5b\x8e\x1b\x68\xd7\xb2\xf7\x27\x4c\x46\x30\x1d\x32\x12\x0e\x48\x56\x19\x06\x01\x92\xe9\xbc\xd6\xbc\xcd\x77\x83\x74\x00\xa7\xfc\x66\xd8\x43\x3c\xf8\x5d\xcd\xb1\xca\x6a\x58\x78\xf3\x9b\x4a\x7f\xe5\x41\xa0\x4e\x3f\xe6\x21\x66\xa9\x4f\xda\x7c\x08\x5a\x6e\x50\x32\x8b\x09\x01\x19\xe7\x2a\x81\x67\xcb\xf1\x68\xfd\x61\xe0\x25\xe8\x8f\xc3\xc6\x60\xc1\xb6\x54\x79\xe3\x8f\x61\x34\xb1\xc1\xcf\x97\xde\x62\x5c\xc5\x1a\xe7\x37\xe9\xa8\xe2\x53\x74\x14\x00\xc8\xf5\x6b\x41\x6b\xef\xd4\xfa\x35\x05\x33\x8e\xd3\xcc\x26\x6f\xa5\x54\xfa\x66\x22\x8b\xc0\x07\x2d\xa7\x54\xc1\xda\x14\x85\x09\xe7\x59\x72\xdd\xd1\x0d\x1d\x98\xf1\x44\xaa\xfe\x6d\x55\x7d\x13\x79\x23\x29\xe0\xa9\x87\x32\x0b\x55\xd4\x4e\x83\x2f\xc8\x45\x7a\xfe\xc7\x71\x61\xb0\xfc\x31\xb7\x12\xc1\xcd\xc6\x14\xad\x9f\x29\x3d\x83\xd5\x38\x90\x60\xef\x5e\x52\x79\x88\xe6\xa2\x90\x6a\x33\x38\x3b\x91\x97\x43\x6a\xfc\xae\x8a\xea\xc6\xb3\x4d\x4e\x32\xab\xb0\x71\x98\x4e\xe8\x48\xac\xf4\x07\x33\x2b\x85\x63\xdc\xee\xd4\xf2\xe6\xdd\x48\x22\x19\x54\x6c\x51\x92\x90\x1b\x67\x27\xaa\x70\x73\x30\x04\x53\xea\x6b\xf5\x52\x0c\x36\x1f\x58\x81\xe0\x6b\x9e\xd1\xb9\xb9\xf1\xc6\x26\xc8\xcb\x74\x01\x0d\x52\x00\x1e\xe7\x24\xab\xce\xf5\xcc\x82\xbb\x3b\xef\x47\x43\xa2\x2d\x14\x1f\x9f\xdc\x01\x71\xf2\x9f\x76\x4e\xfe\xac\xcd\x8a\xdc\xb1\x57\xe3\xd1\x90\x21\x13\xca\x64\x45\x5a\xbc\xa6\x52\x35\xb3\x11\x41\xda\x9f\xf4\x3d\x81\x1c\x23\x8a\xe2\x89\x27\x0f\x40\xb8\xc9\xd7\x00\x40\x72\x49\x0d\x67\x1d\xce\x1b\xa6\xc9\x86\xa1\xbb\x13\x28\xf2\xae\x3b\xba\xe9\x68\x13\x55\xb3\xa5\x20\xb1\xf9\xeb\x0c\xcc\xdc\x5e\xeb\xa1\x69\x2a\x59\x0f\xa2\x9c\x75\x8b\x1d\x10\xe2\xc0\x1e\x57\x59\x54\x82\xf7\x69\x56\x44\x03\x89\x62\x1c\x0e\xb8\x7a\x1c\xc1\x01\x7b\xb7\x7b\xc1\x26\x44\x6a\x7d\x44\x49\x3d\x78\xc9\x4b\x90\xb1\x89\x7a\x7f\x4d\xa5\xfb\x3f\xc3\x63\xda\xd0\x8a\x55\x9d\x1d\xa4\xab\xd5\xaa\x09\x45\xb7\x1c\x79\xcc\xea\x58\xf5\x70\x7a\x9a\x70\x56\x5b\x7d\x3d\x97\x35\x0a\x5c\x76\xbe\x1a\x0a\x38\x68\x3f\x2c\x6b\xd0\x81\xea\xbd\x55\x09\xf8\xa0\x6b\xf7\xda\xe5\x82\x88\x24\x89\xd8\xa1\x12\x65\x5e\x0f\xcd\xe4\xec\x1b\x33\x76\x07\x1e\x11\xd7\xcb\x4c\xd2\x0d\xfb\x51\xdc\xcd\x6c\xa2\x2a\xab\x8c\x59\x46\xbf\xec\x2d\x55\x20\x3d\xd9\x54\xa3\x21\x9c\x96\x60\x09\xa4\x2b\xa2\xa5\x1a\xca\x25\x66\x61\xe8\x9f\xcd\x75\xcc\xc2\x45\x0d\x61\x95\xf3\x0c\xbd\xc4\x8a\x15\xf6\xed\x80\x54\x0d\x55\x5b\x43\xad\x8b\xc6\xc9\x1a\x46\x85\x1d\x4c\x56\x33\x2d\xde\x4f\xf5\x13\xcc\xe8\x51\xd6\xe0\x28\xd5\xa7\x01\x97\xdd\xd6\x91\x47\xb3\xa3\x2c\xa5\xc6\x2a\xce\x05\xe1\x75\x7f\xae\xdb\x5e\x7f\xae\x80\xf6\x79\x62\x0a\xc8\x17\xf9\xbc\x23\x77\xfe\x0a\xcf\xe7\xc6\x0c\xc5\x8b\xed\xcc\x24\xbd\x0d\x54\xad\xa7\x68\x9c\xf8\xba\xd6\x9d\x3d\x6b\x93\x62\x94\x81\xdb\x65\xca\xc1\x8e\x68\x77\x3a\x5d\xa6\xea\x7b\x84\x16\xd0\xe3\xea\xbe\xa7\x58\x0c\x6e\x34\xc6\xc9\x99\x0d\xd3\xac\x9b\xb3\x89\x41\x1a\x91\x75\xd2\x25\x07\x46\xaf\x82\xf9\xbf\xa1\x78\x0a\x67\xad\xe1\x9e\x56\x09\xa8\x95\xfc\xca\xaa\xe6\xa0\xb0\x4c\xd5\xed\x00\xed\xee\x18\xbe\x58\xb3\xde\x71\x5a\xe3\x93\xbf\x49\x2f\x82\x68\x82\x05\xda\x70\x60\x73\x62\x06\x75\xa5\x75\x3e\xe3\x51\x2b\xbf\x57\xaa\xea\xfa\xe9\x1a\x08\x8c\x64\xe2\x31\xa3\x8e\x3c\x40\x65\xd8\x1b\xf0\x50\xc3\x2c\x1d\xda\x6c\xc2\x43\x2b\x77\x74\x3c\x3c\xab\x85\xaa\x97\x74\x2e\x35\xea\xd3\x0d\x87\x59\xba\x20\x2d\xb9\x8e\x53\xab\xda\xda\x08\x27\x18\x1e\x26\x14\x53\x62\xf8\x4d\xd6\x23\x0a\x6e\x5e\x7f\xc2\xab\x58\xed\x49\xc9\x8c\x8f\xaf\x28\xea\xdc\x1a\x01\xba\x89\xc8\x1e\x6c\xf4\x7c\x3d\x66\x75\xa7\xa7\x0f\xb6\x87\xf1\x28\x27\x5a\x28\x78\x6c\xd7\xf0\x6c\x42\x5d\x52\x99\x47\x31\xaa\x0d\xb8\x81\xf9\xa8\xcb\x0f\x08\x1b\x8a\xe1\xe4\xeb\xf2\x49\x4d\x58\xf1\xac\xd2\x14\x5c\xa9\x27\xe2\x14\x59\xfc\x9a\x16\x18\x94\x5a\x19\x70\xea\x3f\xf7\x09\xbf\x03\xbf\xd0\x69\x1d\x91\xd3\xff\x1e\xd9\x70\xc4\x2f\x35\xe6\x9c\xfb\x14\xae\x62\xc8\xcf\x29\xcd\xb4\x87\x81\xe2\xe8\x06\xef\x0a\x5c\xba\xf5\x52\x01\xa9\xef\xe0\x40\x86\xcd\x7f\xba\xd3\x7a\xf9\xc8\xfa\x09\x72\xcd\x45\x41\xa4\x9a\x0a\xf8\x88\x2b\x3e\xf1\xf6\xe4\x2f\x37\xa8\x14\xb6\x4d\xf7\x0d\xaa\x5b\xf3\x58\xb1\xbe\x3a\x5c\x59\x11\x5b\x1f\x2f\xcc\x1c\x84\xaf\x00\x7c\x09\xc6\xea\x24\x0e\x05\xbe\x51\xba\x60\x89\xcd\x98\x82\xdc\x6b\xc1\x3b\xa3\x78\x5b\x97\x8b\x3e\x0f\x9e\x50\x14\x44\x1a\x23\xb4\x81\x46\x61\xac\xcb\xfe\xd5\x83\x6d\xa2\x30\x26\xf9\x02\x58\x3a\xd7\x8b\xed\x63\x9b\xbf\x55\xe2\x1f\xfd\xa8\x60\xc6\xc0\x69\x47\x51\x49\xbf\xc1\x37\x63\xbf\x71\x78\xcf\x2b\x6d\x33\xd7\xeb\x9b\x24\xca\x0b\x93\xd4\x44\xac\x4b\x95\xa3\xf8\xc4\x95\x8c\xf2\xca\x4d\x66\x3d\x7a\x61\x3e\x50\xfd\x39\x27\x14\xd4\x69\x10\x2f\x6d\xf7\x82\x0b\x7f\xbf\xa3\x10\x49\x3f\x55\x1d\x33\xf7\x54\x67\xe1\xf6\x65\xd5\xac\xca\xe1\x06\x9c\xa1\x2b\x98\x09\x9c\x1b\x9b\x91\xcb\x11\x8a\xe4\x8d\x1b\xf3\xd0\xab\x6d\x93\xe4\x8b\xdc\xbf\x28\x07\x15\xb9\x59\x72\x82\xa9\x48\x3e\xb3\x79\x3e\x30\xf3\x02\xa8\xe0\x6e\x78\xa5\x84\x75\x4e\x41\xe2\xe6\xcc\x88\x45\xe4\xd6\x91\x3d\xd3\x34\x48\xc8\xb2\x9e\x6c\x6a\xf1\x8a\x06\x64\x96\x40\x79\x20\x22\x63\x2a\x49\xff\x3b\x2a\xd1\x7a\x46\xfd\x9e\xed\x2e\x46\x3c\x2d\x8e\x34\xd6\xb5\x7a\xfd\x4c\xb1\x6d\xa3\xd0\x6c\x92\x90\xca\xf3\x33\x5e\x78\xe9\x9b\xbf\xe1\x08\x34\xbc\x47\xf2\xbf\x2a\x01\xe9\xbc\x9f\x0e\x73\x75\x56\xf0\x3e\x11\xb4\x90\x62\x05\x48\x07\xb6\x1b\x71\x05\xcf\x31\xf6\x78\xf6\x9e\xb1\x7c\xc7\xbe\xe9\x76\x7f\xfe\xeb\x94\xde\x73\x5a\x2d\xd5\x52\x41\x03\xe6\x5a\xe5\xab\x02\xf4\x30\xd9\xf1\xd9\x8e\x74\x38\x4c\xf3\xa8\xf2\xd8\xb7\x78\x61\x1f\x54\xc8\xb8\x7f\x9f\xec\x8f\x7e\x27\xa6\xe8\x07\x8c\x58\x98\x43\x6a\x52\xb6\x71\xaa\xba\x08\x38\xb8\xe0\x1b\xd5\xdf\x53\xf4\x4d\x32\x8f\x7e\xf0\x6a\x97\x22\x82\xb9\x83\xfc\x1e\xdf\x8c\xb1\x55\x4d\x1d\xaa\x8e\x9c\x38\x0a\x99\xad\xca\x11\x85\x00\xc8\xcc\xd7\xb5\xa7\xe9\x45\x21\x60\x0c\x22\xd7\xe8\xab\x7f\x9f\x93\xb0\x11\xea\x87\xc0\xc7\x22\x37\xc4\x3d\x15\x8e\x2b\x78\xea\x90\xfc\x51\x50\x23\x43\x6d\x6d\x50\xe6\x66\x66\x72\x8d\x26\x1d\x85\xf3\xcc\xca\x00\x33\x7f\x92\x86\x93\xaf\xc7\xac\xe2\xe1\x3d\x38\xe4\x4c\xdc\x52\x5e\x02\x6a\xe3\x7c\x1d\x28\xc1\xbe\xb4\x60\xc9\xfd\x57\x7c\xc7\xed\xf4\xf4\x63\x3b\x6e\xa7\xa7\xdd\xba\x2d\x14\x22\xfb\x91\x42\x64\x3f\xf2\x27\x74\x77\x21\xca\xcd\x2c\x63\x0f\xa4\xdf\x59\x37\x3f\xab\xc0\x7f\x2e\x8d\xe3\x74\x31\xa7\xed\xe6\x60\x4f\xca\x80\x7a\x3d\x92\x2f\xc6\xb6\xeb\xd4\xa1\x76\x1e\x47\xc3\xa1\xe9\x31\x93\x2a\x9c\x9e\xcb\x4a\x87\xae\x9e\x67\xe9\x8e\x06\x78\xe7\xc7\xd8\x0e\xf7\x87\xb3\x29\xd6\xa1\x68\x3a\x78\xb0\xdd\x6a\xa9\x15\x91\xa1\x28\xe2\x79\xdf\xb8\x43\x12\xce\xe1\x7f\x50\x28\xbf\x77\xeb\xe2\x47\xfa\xa1\xf2\x21\x40\xf1\xc0\x0c\x7f\x9b\xf2\xda\x7c\xad\xb0\x13\xa3\xb8\x88\x06\xa6\x80\xe0\xf9\xcc\xfa\x99\xea\xd8\x5e\x3f\x53\x7b\xe8\xc4\xe4\x5b\xaa\x25\xc2\x29\x19\x5d\x6c\x7d\x18\x68\x4e\xd2\xd5\x72\x23\x1e\x47\xb2\x38\xfe\x4c\xc8\x8a\x7c\x57\xcb\x31\xa4\x3f\xb3\xec\x63\xe9\x1f\x7f\x95\xe2\x58\xf8\xfa\x8f\x98\x42\x97\xe6\x09\xc1\xd6\x97\x9e\xfd\xad\xfb\x2b\xcb\x4a\x7c\xeb\xe3\xc0\x87\xc9\xbf\xc6\xa7\x0c\x39\x2a\x0b\xff\x90\xb9\x18\x69\x6f\x7d\xe7\x59\x44\x7b\x58\x0d\xdb\x96\x5b\x2f\x1f\xf1\xcf\xbd\x77\x6a\xfd\x84\x0b\xe6\x32\x22\xb1\xd7\x05\x41\x90\xfd\xf1\xb5\xc2\xfd\x0e\x0d\xd0\x1f\xd5\x4b\x60\x42\x20\xef\xc8\xd7\x4a\x45\x2c\x1f\x85\xa1\xcd\x73\x6a\x0e\x9e\xf4\x5d\x0d\x7f\x54\xaa\xd6\x87\x3f\x0a\xfc\xa1\x78\x46\xd1\x33\x9e\x51\xfd\xb8\x03\x13\xa2\xc5\x16\x1f\x79\x10\xa8\x9a\xff\x03\x75\x6e\xf4\x29\x3d\x42\x5f\xee\x30\x66\xfb\xa4\xad\xe0\x8c\x6a\x22\xb5\xc3\xa1\x8d\x55\xb7\x3b\x73\x82\xf1\x4d\x93\x40\x65\x2f\x75\xa3\x03\xd6\xa1\xf7\xf0\x11\xbe\xd1\xb0\xe8\xe8\x68\x61\xc3\x96\x47\x74\x5d\xd5\x68\xd1\xab\x4a\x59\x62\x50\xad\xc3\xd8\x2e\xb0\xaa\xb1\x90\xb1\xfa\xd4\xf0\x05\x57\xaf\xb3\x79\x38\xea\xa6\x03\x66\xe2\x83\x53\x09\x01\x6a\xbe\x7e\x2c\x77\x3e\x31\x9b\x13\x46\x84\xac\xdd\x89\xdd\x94\x95\xe5\x6c\x66\xe9\x57\xe5\x1d\xed\xf9\x6c\x5a\x56\xd1\x57\x16\xd9\x39\x82\xff\xc2\x13\x5e\x87\x27\xcd\x37\x4a\xac\xee\x1a\x3d\x0f\x5f\x97\x1a\x64\xb2\x60\x93\xa2\x8f\xc1\x83\xc7\xf3\x99\xf2\x7e\x3e\x6b\xea\x1d\x8e\xa3\x24\x4c\x63\xc9\x47\x21\xb2\xf8\x50\x45\xe0\x9c\xc1\xc7\x41\xb3\x69\xd9\x9f\x66\x8b\xfd\x14\x05\x4a\x4a\x2c\xa8\x2a\xd4\xcc\xfa\x1d\x14\x93\x84\xed\x65\xa3\x01\x3c\xb0\xe7\x40\xdb\x1e\xb5\xe1\x88\x7d\x61\xa7\xcc\xe7\x5e\x6a\xbc\x76\x32\x75\xa8\xdd\x8d\x42\x8e\xf5\x70\x1c\x01\x33\xc4\xd7\xcb\xba\x76\x92\x45\x0b\xa6\x88\x16\x2a\x57\x62\xea\x10\x67\x2c\xaf\xd1\x02\xe5\x6b\xe5\x45\xe6\x51\xb2\xd5\xb7\x07\x7e\x09\xd7\x57\x52\xf7\xf4\xea\x98\xc1\x2f\x29\x40\xc0\xe1\x07\xf0\x1b\x16\x24\x27\xe1\x70\x5c\x7e\x3e\x16\x33\xee\x9b\x76\xb4\x7d\x92\xc6\xc4\xb9\x70\x3d\x50\x90\xbe\xeb\xea\x04\x1d\xc6\xa3\xa4\x67\xb7\xd3\xde\x92\x16\x94\x6a\x21\xc1\x79\xbb\x4c\xc7\x29\xff\x3b\x70\xd7\x82\x37\xa9\xce\x5c\xfe\x23\x98\x6d\x94\xdb\x18\xa4\xc9\x7f\x05\x4b\xcf\xff\xa3\x86\x61\xea\xbf\xfd\xef\x69\x6b\x20\x33\x7c\x56\xb3\x88\x9d\x6d\x02\x11\xe4\x45\xca\x32\x69\xf0\x5c\xce\xe8\xac\xec\x99\x86\x93\x98\x44\x2c\x42\x6b\xbb\xec\xfd\x48\xc2\x8e\xc6\x5b\x88\x5f\xfc\xea\x0a\x63\x13\x0d\x0c\xc7\xcb\x33\x8e\xc6\xa1\x9a\x83\xc7\xb1\x38\x50\x67\x5f\x96\x26\xb6\x90\x91\x66\x1c\x77\xa0\x28\x23\xfe\xba\xe9\x38\xe6\x6e\x32\x68\xf0\x22\x56\x45\x89\x09\xa9\xce\x6d\x1d\x55\xbb\x9f\x5c\x7e\xd2\xb5\xba\xe4\x92\x15\x63\x32\x5a\x32\x28\x42\x4c\xeb\x93\xf5\xa4\xf5\x45\xdf\xed\x1a\x62\xab\xe9\x71\xf4\x0d\xd5\x26\xc7\xfa\x79\x47\x35\x03\xe7\xc3\x38\xaa\xde\xdf\x7b\xc3\x17\xb4\x3a\xed\x05\xc5\x3d\x37\x30\x45\xd1\xb7\x8b\x1c\x8e\x8a\xb2\x41\xf5\x41\xbe\x56\x69\xe4\xbc\x4f\xed\x39\x64\xa7\x1c\x49\x47\xf5\x0e\x48\x53\x42\xee\xd2\x85\xf5\xd5\xca\x41\x7d\x5b\x27\x5e\x86\xa3\xbc\x3f\x8f\xd6\x1d\x69\xb4\x3c\x59\xaa\x5c\xf4\x49\xf5\x7b\x45\x66\x22\xe2\xac\x3c\x20\x26\xef\x3e\x2d\x61\xbe\x56\x49\x31\x93\x4b\x88\xd1\xd2\x4d\xc1\xa5\x6e\xf7\x0d\x3c\xf4\xd5\x54\x27\x0b\xe2\x69\x87\xaa\xff\x42\xa3\xe7\xbf\x50\xb5\xc9\x30\x4b\x53\xf2\x4b\x1d\xe2\xe1\xaa\x42\x02\x5f\x55\x1e\xc4\xc1\xf9\xa5\x2d\xf4\x25\x88\xbc\x6e\x04\xba\xf6\x70\x86\xfc\x67\x5c\xaf\x28\xcb\x8a\x63\x59\x00\x23\x92\xb2\x7c\x73\x14\x15\x04\xad\xc2\x79\xfd\x25\x7f\x95\xc6\x7f\x3a\x8a\x5c\xcf\x40\x86\x10\x15\x29\x8f\x16\xba\x74\x10\xa2\x6e\xa2\xa9\xc1\x11\xfb\x5e\xa9\x14\x40\xef\x36\x75\xd0\xd9\xd9\x59\x4e\x20\x60\x32\x81\xdb\x16\x19\x9e\x96\x6a\x67\xd4\xce\x58\x94\x0f\x9e\xf2\x9d\xdf\x9f\xe9\xdc\xed\x53\x14\x23\x21\x32\x7c\xa4\x72\x90\xf7\x75\x5d\x79\x73\xa7\xd6\xa9\xff\xf2\x11\xf6\x88\xaf\x69\xa6\xfa\x33\x88\xb5\x61\x71\x39\x4c\x45\x2e\xf2\x1e\x39\x64\xd2\x8f\xaf\x14\x57\xce\xc0\x09\x13\xfc\x4e\xb5\x80\x30\x8c\x1f\x05\x1b\x18\x73\xf6\xef\x6f\xef\xdf\x4f\x0a\xcc\x40\x93\x5e\x24\xe3\x29\x85\x40\x85\xde\xf8\x19\x36\x1e\xb2\x43\xf7\xf0\x63\x18\xe8\x49\x7a\x09\x61\xe4\x51\x30\xa6\xf7\x35\xe1\xe0\x29\x9e\x4e\x57\x1b\x76\x1c\x66\x37\xe8\xc5\x99\x1a\x11\x47\xa1\x10\x74\xd2\x28\x38\x00\xc5\xfe\xfd\x3c\x54\x5b\x96\xeb\x44\xce\xd5\xf9\x0d\xdb\x73\x13\xc3\x83\x89\x9e\x84\x3c\x8a\xe3\x0d\xfa\xe6\x6f\xf0\xbe\x98\xa1\x11\x91\x8f\x57\xae\x38\xc6\xf0\xbe\x72\xd9\xf2\xe8\x68\xd1\xa7\x6d\x88\x94\xc0\x25\x3a\x10\xf9\xba\x09\x47\x6c\x8f\x0e\x33\x9b\xe7\x93\x8a\x9a\x14\x14\xe3\x52\x44\xd0\x73\xe5\x35\x21\x57\x1b\xc1\x7b\x69\x38\x6f\x01\xee\x74\x86\xbf\x9a\x0a\x31\xfc\x3a\xb2\x30\x49\xb8\xa3\xfa\x43\x3c\xda\xa6\x0e\xc5\xc7\x4e\xa7\x83\x5c\x69\x55\x5a\xe6\xd2\x39\x77\x02\xb1\x88\x81\xa0\x2b\xaa\x27\xe4\xa6\x70\x6c\x18\x04\x7d\x9b\xb0\xad\x90\xaa\xfb\x54\x81\x06\x16\x39\xed\x3f\xe9\xd1\xc8\xf7\x14\x0c\xff\xb8\x46\x91\xfd\x29\x15\x8f\xa5\x32\x34\x76\x18\x4d\xb5\x07\x29\xb5\xd1\xf0\x79\x27\x24\x8a\x0a\xef\x79\x4e\x85\xb6\x49\x3a\x9b\x76\x97\x28\x25\x81\x68\xeb\x7d\x1a\x52\xbe\xc6\xea\x97\xb0\x4e\xc9\xb0\xac\xea\x00\xf5\xcb\xb1\xf0\x7a\xe6\xc0\x0c\xbb\x1f\x88\x34\x91\x6a\xfe\x03\x7c\x03\xdf\x94\xcf\xa9\x0c\x4c\x92\xd8\xb0\x88\xc2\x11\xc2\x65\x94\x25\xae\xd3\x66\xe7\x6b\xe5\x6d\x0e\x19\xd9\xd8\x72\xc4\xe2\x9b\x3b\x3e\x74\xd8\xbc\xbc\x31\x5d\x43\xfa\xc8\x85\x92\x23\x5c\x45\x2d\x5e\x98\x31\x5b\x8e\x28\xe9\xaf\x95\x3d\xfe\xd6\xcb\xaf\x4e\x2a\x16\x2f\x29\x0d\x38\x80\x43\x35\x9c\xf8\xd4\x89\xd2\x23\x48\x7f\xae\xf9\xcf\x40\xab\x92\x6f\xaf\xf5\x7e\xee\x93\x1a\xc7\x69\x32\x8c\x42\x21\x49\x5b\x0f\xa3\xce\x5c\x44\x0e\x41\x5f\x0d\x34\x9c\x88\x5b\x9a\xef\xe6\x0a\x62\x2c\xfe\xb2\x06\xc6\xc2\x83\x6d\x1b\xf6\x59\xe5\x07\x5f\x76\x19\x06\x90\xb5\xef\x03\x95\x15\x3d\xa1\x39\xe8\xfb\x36\x21\x59\xb5\x4f\x18\x7b\xa9\x34\xbe\xba\xe9\x62\x92\x47\x6f\x6d\xe0\xcd\xad\xb1\x13\x3e\xa3\xf8\x12\xb2\xa2\x6f\x4d\x5e\x4c\xa8\xc0\xe0\xb6\x62\xe6\xdd\x4e\x3e\xfe\xfa\xc3\xb1\x73\x64\xdf\x34\x09\x78\xb1\x3b\x05\x23\xc6\x90\x65\xbe\x51\xa1\x5e\xdf\xc6\xc3\x7c\x0b\x0d\x06\xdc\x80\xb5\x5a\x79\x43\xb1\xaa\xae\x29\xd5\xa8\x49\x82\x0c\xf3\x07\x9a\x9a\x7a\x4c\xaf\x97\xd9\x9e\x29\xa4\x74\xc7\x51\x05\x59\x39\x89\x30\x54\x62\x66\x14\xc7\x36\xc7\xf2\x45\x3a\x02\xe4\xb4\x7c\x0d\x57\x16\x43\x18\xe5\x61\x16\x0d\xa2\xc4\x48\x52\x69\x5a\x8b\x8f\x4e\x39\x55\x31\x9f\x39\x31\x73\x73\x36\xe4\x51\x44\x1d\xf0\x81\xea\xe2\x98\x54\x6a\x90\x17\x95\xe1\x5d\xb2\x26\xcb\x9f\xd3\xa0\xd5\x1f\xe3\x34\x84\x4d\x5b\x29\x55\x85\xe6\x5f\x03\xc5\xe1\xaa\xac\x53\x87\x84\x27\x81\xe5\x3d\xa4\xe6\x4a\x3b\x87\xbf\x40\x0d\x33\xd8\x77\x91\x7a\x04\x1e\x15\xa7\xff\xba\xd6\x70\x01\x8d\x2f\x2a\x2c\x35\xe4\xd1\x5f\xe2\xe4\xc1\x64\x00\x35\x83\xff\xb8\xab\x3b\xc0\xce\xe1\x48\xc3\xe8\xfc\x18\x06\x08\x87\xf1\xb3\x1d\xaf\xa9\xb8\x1d\x99\x12\x6c\x98\x75\xd5\xb7\x13\x47\x89\x91\x15\x85\x17\xf8\xb0\x54\x14\x47\x1f\x3a\xac\xc4\x5c\x9a\x59\x92\xd2\xc2\xd6\x41\x3a\x90\x99\x1d\x54\xbe\xf7\xa0\xa3\x7c\x7d\x5a\x19\xb2\x51\x92\x73\xb0\xef\x84\xb5\xaa\x01\x90\x86\xf4\xa6\xa6\x96\xca\x51\x95\x07\x83\x9f\xc4\xe9\x0f\xbe\xd1\x4a\x84\x91\x19\xa4\x2c\x23\x28\xfc\xe4\x17\xb5\x23\x73\x51\xd9\xc9\xc2\xc4\xf3\x51\xd2\xdb\xaa\x7c\x87\x8f\x69\x06\xe0\x9c\xa3\x83\x1c\x1f\x03\x54\xdd\xcf\x92\x30\xe5\x43\x33\x17\xe7\xfb\xee\x31\x45\xaf\x43\xaf\xb6\x87\xb1\x4d\x8a\x25\xb2\xad\x58\x48\x2b\x74\x3a\x39\xd0\xe9\xfe\xfd\xec\xf5\x3c\x70\x95\x96\x61\x9a\x66\xd5\x4e\xa1\xc9\xc4\xcc\x42\xcf\x94\xaf\x97\xf5\x99\x1c\xd9\xb9\xa7\xab\xc7\x61\xfd\x6c\x2e\xe4\xe1\x2f\x3f\x20\x63\x2a\x7d\x57\x34\x57\x00\x99\x61\x61\x3a\x9c\x76\x35\x54\x2a\x00\x72\xd1\x10\xf2\xea\x8e\xed\xaa\x5a\xff\xb5\x9a\x30\x2a\x3f\x3f\x52\x0c\x72\xc7\xe8\x85\xb0\xd3\xb6\xe1\x2c\xc7\x92\x5f\x2f\xbd\xec\xff\x1a\xec\x2a\x9a\x11\xee\x07\x8a\xb8\xe1\xa4\x8a\x22\xa2\x24\x8c\x47\xdd\x28\xe9\xed\x52\xb5\x42\x40\x22\x50\xcf\x85\xc8\x00\x6b\x8e\x61\xdf\x22\x42\x2c\x4a\x45\x14\xfa\x21\x99\x23\xbc\xf6\xff\x40\x9d\x9b\xd8\x38\xbc\x51\xb1\xa3\x26\x3a\x5e\xfc\x70\xf7\xb2\x67\xaf\xf9\x4d\xea\x6b\x56\xfe\xa6\x30\x15\x9e\xc3\xfa\xc3\x83\x7c\xbf\x81\xa6\x73\x8a\x84\x43\xf2\x82\x30\x7b\xd5\xd3\x34\xb1\xae\xfb\x84\x59\x2f\x5a\xb0\x89\x88\x8e\xbb\x0e\xd6\x69\xc9\xfc\x9e\x54\x5a\xb4\x27\xeb\xb2\xab\x0d\xb4\x76\x51\xb6\xe0\x12\x75\x58\x73\x8c\xcc\xe2\x9b\x60\xe3\xf9\xff\x62\x3b\x4c\xd3\x78\xd2\x57\x3f\xb9\xe6\x86\xed\x8b\xa5\x2f\xb2\x4e\xb4\x58\xe4\x48\xf4\xce\xc0\x5c\x54\x50\x78\x82\xba\xc3\x53\x48\xbd\x38\x91\x0d\xbf\xfd\x3e\xa5\xca\xae\x6b\xff\xdc\x57\xa3\xa2\x92\x75\xbb\x03\xd5\x7e\xae\x96\x69\xee\x85\x9d\x64\xfa\x50\xb3\xd8\xd6\x51\x24\xd6\x57\xf1\xc4\xd8\x88\x4f\x74\xbc\xe4\xd5\xaa\xca\x98\x3d\x05\x5c\x03\x92\xbf\x8f\x34\xdf\x45\x64\x84\xeb\x05\x26\x85\x9d\x60\xbe\x29\x75\xcd\xcc\xcc\x2f\x4d\x28\xda\xad\xcf\x4a\x75\xae\x82\x3d\x16\xcf\x7d\x7b\x0c\x01\x52\xad\x8a\xd0\x0c\x5d\x25\x43\xf4\x67\xab\x07\xe4\xeb\x06\xf1\x33\x5e\x48\x2d\x1f\xc7\x9e\xd6\x1d\x31\xa7\x5d\x67\xc5\x28\x27\xa4\xb5\xeb\xab\xe6\x24\x19\xdf\x04\xbb\x14\x00\x37\x41\x68\x8e\x1a\xc3\xb9\xc0\x43\x58\xce\xa9\xa8\x1f\x8a\x19\xc2\xe8\x2f\x2d\x18\x2b\x58\x01\x62\x47\x7e\xb9\x09\x89\xd1\x1d\x44\x49\x94\x17\xac\x85\xa8\x7a\xaa\x51\x49\xc1\xae\x61\x38\x1d\x46\xf1\x81\x2a\x4b\x92\x47\x31\xe1\x0d\x23\x42\x1b\x9c\x5d\x4c\xba\x2d\xa5\xbe\x86\xf4\x97\x29\x62\x16\xec\x60\xe9\x4c\x7c\x42\x74\x34\x77\xa9\xcc\x73\xd8\xdf\x3d\x71\xc4\x95\xa9\xcf\xd1\x99\x4e\xce\xd3\xef\x3d\x43\xcb\x0c\x4b\x7e\x85\x6c\x80\xa3\x26\x74\x4d\x92\x28\xf6\xe0\x44\xf8\xb4\x54\xbd\xdb\x6f\x2b\x45\xcc\xab\x58\x1d\x02\xe1\x54\x02\x4b\x17\x03\xa5\x7c\x04\x30\x29\xa2\x88\x4d\xf5\xa6\x1f\x15\x5d\xff\x00\xa6\x92\x01\xe4\x14\x3d\xd3\xa6\xf8\x66\x1b\x99\x60\x38\x14\xf7\x9b\xd6\x50\x5e\x64\xd1\x3c\x72\xba\x8e\xd4\xbe\xfa\x79\xf1\xf0\x9b\x14\x05\x87\xa9\xd3\xac\x16\xba\x29\x7a\x4b\xe1\x9b\x6a\x00\xe7\x99\xc1\x28\xb7\xae\x59\x50\xc4\xbb\x7c\x3a\xe7\x56\xf9\x4b\x3e\xfd\x64\x63\x1b\xa6\x83\xc1\x28\xe1\x12\x6a\x3e\xa9\xe4\x63\x8f\x6b\xd6\xf9\x15\xa5\x25\x7b\x9c\xbe\x4e\xd6\x62\x43\xe1\x39\x9a\x8b\x5a\x2d\xc5\xeb\x54\x23\xef\x77\xc0\x43\x93\xcc\x93\x7a\x9d\x03\x81\xb1\x00\x1e\x4c\x24\xcc\x0c\xa4\x12\x9e\x1d\x93\x85\x22\x4e\xd9\x8c\x00\x59\x4a\xff\x06\xde\x2c\x5f\x3b\x57\x69\x90\x76\x6d\x96\x44\x6f\x61\xec\x9b\x48\x46\x1b\xea\xca\x8b\x51\xd2\xcd\xfb\x91\x8d\x05\xf3\x83\xd7\x45\x93\x26\x5f\x8f\xf3\xb6\xed\x6d\xa7\x0b\x36\xeb\x66\x66\xae\x50\xb4\xbc\x48\x86\xf1\xb5\xc3\xe4\x2e\xa5\xa3\x2c\xb7\x31\x6a\x1a\x8e\x1b\xcd\xb9\x18\xf7\xe0\xec\xc2\x89\x87\x35\x55\x9c\xb7\x62\x1f\x46\x45\x3a\x3f\x1a\x0c\x47\x2d\x6f\xc0\x98\xa7\x8f\x6f\x96\x1b\xf2\x0d\x8b\x51\x38\xcf\x42\x39\x4e\xf6\xc8\x51\x4c\x68\x02\xda\xd9\x34\xee\x42\xba\x5f\x71\x3f\x49\x5d\x94\x51\xe4\x0c\x33\xc2\xd9\xe1\xba\x15\x0f\x8b\xed\xc7\xc9\xe5\x42\xda\x6a\xf1\x8a\x33\x34\x26\x95\x73\x60\x4f\x7b\x2e\x4a\x4c\x12\x4a\x67\x02\xf6\x2c\x8a\xf9\x7c\xdd\x48\xd5\x1f\xf6\x53\x4f\xe1\xdb\x48\xfc\x51\x03\x24\x24\x4b\xd4\xd0\x80\x6a\xf2\x27\x75\xe5\x91\x71\x7e\x1a\x3c\xee\xbd\x40\x81\xad\xfe\xac\x89\x1c\xce\x64\x59\xe4\xb0\x6f\xc8\x3c\x71\xf4\xca\xf9\xc2\xd2\xb3\x48\x5d\x1d\x53\xbd\x79\xfd\xf5\x76\x6c\x5b\x64\x0b\x1b\x85\xaf\xfd\xa4\xbc\xf0\xdf\xfc\x23\x5e\x92\xae\xdf\x63\xaf\x10\xdb\x7e\xa8\xfe\xae\x88\x06\xf6\xb9\xf1\x43\x1c\x16\xea\x04\x92\x6d\xc2\xec\xa4\x58\x3b\x7e\x4a\x36\x58\x46\xbe\x2e\x1d\x56\x59\x61\x89\x59\x14\x91\x08\x40\xd4\x42\xa7\x4d\xd6\x16\xaf\x09\xb2\x1a\x64\xf1\xe8\xe0\x7f\x85\xbd\x83\x4d\x9d\xea\x99\x71\xb6\xfc\x5b\x32\xe8\x30\xbc\xec\xb4\xc0\x88\xaf\xe9\x8e\x8e\xdb\x58\x6d\x9a\xa0\x1d\x1e\xcc\x3d\xac\x49\xe4\xbb\xd6\x69\x8c\xd9\x4f\x1a\x4b\xdb\x1d\xd8\xd3\x9e\x8f\x20\x48\xea\xa3\x0a\x8e\xbd\x45\xca\xcb\x75\xd7\x67\xe9\x20\x4a\xc0\x56\x77\x78\x8f\x34\x9f\xd0\xef\x4a\x23\x8a\x2f\x30\x8f\x92\x7c\xd1\xf4\x7a\x36\x13\x7b\x86\x94\xd3\x9f\xe8\x4d\xf1\x51\xe9\xdd\xe6\x4f\xd5\x19\x68\x8a\x74\xd8\xf2\x8c\x80\x9b\x3b\xbe\xa3\x72\xf3\xb2\x10\xec\x17\x0b\xdb\x7c\x6b\xee\xdf\xdf\xbd\xac\xe3\xe5\xcf\x54\x53\xfd\xaa\x92\xb5\xfd\x15\x1a\x63\xd7\x4d\xb0\x7f\xbf\xc8\x01\x63\x24\x45\xed\x65\xe3\x20\xbd\xd8\xce\x0b\x93\x74\x4d\xd6\x9d\xf4\xfd\x86\xe7\x54\xe3\xeb\x64\xa7\x1a\x10\xf7\xbd\x0e\xcb\xb1\x5a\xd6\x00\x51\x96\x5b\xd6\x35\x55\x6c\x40\xd9\x4a\xe1\x8d\xdd\xb8\x93\x5f\x78\x81\xf8\x6d\x6d\x16\x99\x96\xe6\x95\xaf\xc1\xa9\x37\x9a\xb3\x7f\x20\xe7\x88\xc2\x81\x9e\xd1\xba\xdd\x67\xc6\x5c\x6d\xea\x02\x67\x89\x24\x61\x0b\x68\x79\x41\x2a\x55\x65\x4a\x87\x36\xa3\x1a\x8a\x4b\x1b\xfc\x48\x61\xe3\xc7\x15\xc5\xf6\xee\x6d\xcf\x99\x98\x11\xde\xdc\xb6\x43\x4f\x2f\x2d\x3c\x35\x33\x64\xe6\x15\x90\xef\xb2\x92\x33\xba\xac\x69\x60\xa3\x84\x69\x08\xe0\x27\x70\x8e\x94\x6f\x1c\x00\xdc\x84\x45\x4e\x46\x0d\x15\x85\x4f\x31\xc7\x28\x9a\x6c\x46\x10\xe8\xba\xf0\xaa\xcf\x73\xa8\x48\x0f\x87\x88\xf0\xe6\xd8\xdb\xec\x9b\x6e\x9b\xd8\x30\x39\x2a\xf7\x8c\xd0\xeb\x4b\xff\x88\x8e\x81\xc3\xa8\xd8\xea\x63\xc1\x33\x9a\xa7\xf1\xbb\x81\x62\x70\xfc\x6e\xe9\x14\x90\xfe\xe5\x19\x3c\xa5\x2a\xa7\x78\x5b\xb9\x81\x5e\x76\x7a\xba\x3d\xf3\xea\xc1\xe7\x5a\x5e\x92\x15\xce\x13\x56\xf1\x09\x18\x1d\xac\xfb\x3f\x29\x7d\xc0\xf8\xa8\xd4\x7e\xa0\x4f\xe9\x1f\x23\x23\x07\x9b\xc1\xc9\x6f\x18\x8d\x6b\x74\x74\x89\x66\x35\xb6\x99\xd8\x42\x5a\x54\x88\x98\xd9\x41\x14\x36\x4e\xb2\xa5\xb0\x60\x5c\xb1\x41\xea\xfe\xb4\xd2\xe3\x63\x4e\x70\xfe\x2b\xb5\x67\x5b\x1d\x55\x22\x7a\x82\x36\xad\xb4\x3c\xd2\x9e\x17\x15\x29\x55\x95\x9f\x8f\x50\x85\x63\x8e\x81\xc0\xe7\x6b\x75\x17\x06\x5a\x8f\xf8\x1a\x7e\xa3\x20\x4b\x6a\x00\x2a\x13\x71\x5e\x07\x8e\x13\xeb\x72\xf1\x8d\x42\x39\x56\x26\x31\x05\x65\x84\xe7\x0f\x00\x56\x86\xaf\x15\x08\x3a\xb7\xc5\x93\x5a\xcc\x10\xbf\x80\xc3\x07\xfd\x51\x35\x34\xa9\x90\x4f\xfa\xac\xce\x4d\xf5\xf4\x13\x1d\x9f\xee\x5f\x03\x24\x10\x43\x74\x92\x58\xe3\x30\x41\xdf\x45\x1a\x8e\xff\x43\x23\xfa\x4f\xd6\x75\x00\x7d\xa6\x6a\xd1\xe4\x85\x9d\x1b\x21\x15\xe6\x34\x7e\x0e\x38\xbd\x1f\x5d\xfc\x48\xb3\x6c\x89\xcc\xbb\xe3\xed\x85\xa9\x76\xe2\x26\xfb\x24\xc1\x70\xb3\xac\x89\x0f\xe5\xa3\x81\xcd\x72\x80\x0e\x85\x99\x9b\xd6\x08\x96\xd2\x35\x95\xda\x47\xe6\x1d\x7f\xc4\x8a\x48\x38\xe4\x6e\xa8\x44\x04\xd7\xe9\x5c\xf5\xdd\xa7\x1b\x39\x59\xc4\x9f\x2f\xbd\x11\x89\x47\xe1\x3c\xfc\x12\x8e\xd4\x03\xdd\x99\x5f\xaa\xc2\xd3\xd8\x71\x40\xca\xdf\xa6\x90\x78\x02\x8f\x70\x45\xe5\x42\xae\x28\x35\xaf\x6f\x7c\x03\x54\x5e\x38\x68\x9e\x04\x50\x4c\xf8\xa9\xfc\xc2\xe4\xae\x17\xa4\x93\x4e\xa0\xe9\x9a\xa9\x3e\x79\x9d\x08\xe9\x01\x6d\x19\x18\xcf\x9b\x9c\xe3\x45\x94\xcf\xd8\x43\xfc\x1d\xba\xb0\x91\xda\xbf\x1e\x28\xf5\x87\x13\xb4\x33\x60\x54\xef\x11\x19\x18\x16\xea\x96\x8e\x97\x26\xbe\x19\xa8\xda\xfc\x6f\x93\x2f\x05\xe7\xed\x5f\xa3\xb7\xd3\x15\xd2\xbc\x6a\xf7\x75\x85\x17\x7e\x08\x96\x30\xbc\xcb\x35\x18\x57\x7c\x31\x04\xc0\x51\x6d\xdf\xd1\xe8\x86\x13\x9f\x3d\x8c\x7b\x93\x1a\x76\xd3\xb9\x15\xf5\x6a\xbd\x71\x10\xc1\x43\x34\xba\x69\x59\x05\xf3\xbb\x1c\xeb\xdf\x5b\xd1\x90\x3a\x1e\xb4\xe7\x84\xc1\xe6\x69\x10\xdd\x89\x86\x40\x3e\xf4\x39\x50\x14\x72\x6f\xd2\xc7\xf9\x7a\x2c\xe5\x56\x45\x7e\x49\x98\x11\x13\x2f\xb7\x24\xe3\x9c\xba\xa1\xa4\x15\xff\x46\x95\x37\xae\x6e\x10\x52\x1e\xee\xf0\xed\x49\x37\x74\xcf\x3e\x5a\xc2\xb0\xb0\xb7\xd2\xe4\x61\xf4\xff\x5a\x27\xa6\xa4\xbe\xe9\xb0\xda\x07\xf6\xf0\xa3\x4e\xe2\x04\xd4\x9d\xb0\xd2\x4c\xe9\xad\xaa\xfd\xc6\x5e\xc5\xb5\x8d\xca\xa6\x23\xb0\x3a\xec\x54\x41\x1b\xe8\x7c\xa6\xda\x61\xdf\x28\x1d\x0b\xa7\x32\xef\x48\x78\x2e\xab\xdf\x49\x7a\x69\x0d\x81\xb3\xa2\x45\x5b\x56\xc6\xba\x04\xaa\x69\x48\x13\xaf\xff\xeb\x11\xe8\xdf\xd1\x62\x23\xdf\x69\xe2\x9e\x0e\x8d\xe7\xf1\x82\x23\x37\x01\xe3\xc1\x37\x1d\x9f\x7e\x1b\x55\x73\xb6\xd5\xdb\x3e\xb8\x06\x4a\x7e\x46\x32\xf2\x1f\x2b\xea\xf9\x8b\xa5\x8a\x43\x3e\xa7\xa3\x53\x92\x0c\xaa\xe8\x14\xa7\x59\xd4\x15\xf2\x74\x45\xb9\x35\xe3\x28\xb7\x36\xc6\xdf\xbf\xda\x1e\x98\x64\x34\x67\xc2\x62\x94\xc9\xf3\x33\xb1\xbf\xe2\xa8\x5d\x19\xab\xc8\x1d\x7a\x95\x5a\xe7\x95\x48\xc3\x05\x95\xdd\xbf\xe0\x9c\xfb\x59\x13\xc7\x69\x9a\x50\x53\x7f\x35\x61\x70\x60\x5b\xc4\x5c\x40\x1d\x2f\x3b\x50\xac\x71\x7b\xe6\xb0\x64\xa6\xef\x34\xf5\x00\xbe\x31\xca\x8b\x28\xb4\x8f\x6f\xcb\x68\xc0\xbd\x75\xd3\xb0\x48\x33\xb7\x64\x70\x84\x21\xbe\xe0\x6b\xc5\xc3\x12\x66\x69\x9e\x13\x21\x00\x0d\x85\xe8\x51\xfb\x9c\xe1\x3d\xad\x68\x5d\xd8\x48\x5a\x99\x61\x25\x18\x47\x86\x83\xf1\x6f\x55\xe9\xfc\xac\x22\xcb\x23\x65\xa0\x24\xb2\xf9\x33\x64\x40\x71\xbc\x4c\x00\x53\x81\xf3\x6e\x3b\x90\x5e\x22\x3a\xae\xb4\xc5\x69\x90\x91\x76\xe6\x5a\x1a\xbc\x87\x5b\xc1\x06\x8c\xc1\x2b\x0e\x52\xa1\x9a\x68\xae\xea\x62\x3e\x39\x6f\x38\xc3\xb9\xd5\x9f\x39\x92\x54\xfe\x69\xfb\x32\x98\x73\xb1\x2c\x9d\x44\x7f\x75\x56\x30\x5f\x07\xcd\x98\x63\x6e\xac\xec\x97\xc0\xfa\x37\x4e\xdf\x0b\x2f\xb4\xbb\x51\x3e\x1c\x15\x0c\x37\x47\xd9\x1a\xd4\x9c\x7c\xad\x82\xb5\xae\xcd\xe7\x5b\xbe\xeb\x02\x0d\xf6\xc2\x1c\xeb\xc9\xce\x4d\x88\xd1\x84\xc3\x70\x78\x0f\x67\xcb\x59\x9f\x53\x78\x74\x7c\xc3\xcb\xc5\x72\x83\xb4\xf8\xe1\x3d\x33\xed\xc3\x7b\xa6\x09\x3f\xb7\x4e\x0c\x5e\xeb\xd7\x94\x3c\xd8\x5c\x9a\x0d\xb6\x2a\x01\x21\x6e\xed\x10\xf1\x24\x5f\xf1\xbc\xe1\x99\x3e\xfe\xf7\xa7\x3b\x75\x59\x40\x2f\xea\xd6\x78\xe8\x33\xd9\x81\x4a\xbd\x04\x2a\x25\xe3\x89\x49\x8e\x0e\x6d\x92\xdb\x09\xd5\x65\xb6\xaa\xf8\xfe\x1e\xd4\x72\x37\x4a\x4c\x30\x46\x3f\xe8\x84\xef\x51\x02\xf2\xcd\x09\x69\xb8\x65\x70\xa1\xe6\xad\xa6\x19\x10\xa9\x82\x13\xa3\x25\x82\x4d\x00\x71\xe3\xf5\x1b\x9a\x28\xf4\x4f\xd9\x87\x87\xaf\x85\xf5\x28\xdd\xda\x92\xb4\x0f\x47\xd9\x2c\x67\x54\x70\x92\xa2\x61\x93\xaf\x35\xa6\x63\x94\x45\x5c\x71\x95\x0a\x31\x0b\x2a\x63\xe4\xef\xc0\x95\x10\x7c\xec\x33\x8a\xa2\x7a\x81\x52\xb2\x39\x85\x48\x70\xe8\xef\xeb\xde\xc3\x3f\x0e\xbc\x47\xbd\x52\x2a\xb8\xd3\x15\xad\x5b\x0f\x19\x05\x69\xc9\x6a\x10\x27\xc9\x87\x86\x25\x6a\x38\x82\x51\x39\x87\x73\xb5\xae\x09\xd3\x5d\x7a\x5a\x91\xe0\xfd\x7b\xf6\xbb\x44\x66\xb2\x1a\x7d\x9e\x95\x52\x41\x91\xee\x22\xd7\xe2\xa0\x21\xfb\x64\x9a\x4f\x2b\x01\xb0\x0f\x4a\x55\xdb\x86\xe6\x25\xbc\x80\x9a\x47\xfb\x13\x8d\xd8\xa6\x46\x29\x87\xcc\x74\x08\xbb\x89\x4e\xe5\xb2\x49\xd5\x8e\x8c\x8f\xb4\x93\xd0\x10\x21\xc5\xf9\xd0\x65\x54\x07\x26\x49\xac\x3b\x30\xf4\x42\x17\xfd\x4b\x9f\x39\x35\xc3\xa1\x35\x31\x61\x3d\xc1\x70\x4f\x84\xce\x81\xef\xa1\x06\x5e\xe4\x71\xa8\xad\xea\xd0\xef\x9b\x85\x34\xc4\xba\x71\x72\x66\x2e\x3e\x3d\x3f\xe6\xbe\x1d\xde\xd3\x8e\xd3\xc5\x1a\x20\x5f\x7b\x42\xcf\xaa\xde\xef\x3c\x8f\x06\xb4\xd2\x14\x6b\x41\xe9\xa9\x4e\x56\xb4\x34\xfc\x2d\x05\xe4\x2c\x32\xd3\x8d\x92\xde\x6e\xaf\xaa\x7e\x0b\x66\x91\x3b\x59\x4a\x2d\x60\xb2\x02\x17\x9a\x0d\x3d\xf5\x7f\xc0\xf3\xba\x15\xc0\xd3\xc6\x9e\xb9\x48\x33\x88\x6f\x3b\x07\xe7\x5a\x68\xfb\x94\x53\xa5\xbd\x82\x4d\xcb\x4a\xe8\xec\x24\xbd\x24\xaf\x59\xec\x0f\x84\xe9\x9b\x71\xb4\xe0\x68\x6e\x75\x3c\x3d\xf0\x2d\xac\x1f\x26\xf3\x0e\x54\x32\xbb\x49\xf1\x74\xa6\x1d\x9a\xbc\x50\xcd\x36\x57\x35\x98\xe3\xaa\xc2\x01\x67\x36\x4a\x16\xc8\xa4\xb9\xb0\xf4\x33\x4d\x68\xf4\x59\x8d\x1f\xa7\x57\xd9\x3f\x96\x8c\xc5\x4e\x58\x07\xb2\x83\x6f\x9c\x01\x1c\x25\x89\x19\x08\xb1\x10\xfb\x8e\x0a\xbd\x3a\x81\xe8\x5e\xda\x9f\xfd\xe3\xe4\x45\x3a\x18\x4a\x2a\x12\x56\xef\x98\xa2\xbe\x3b\xa6\xd2\x50\x3d\x94\x00\xb7\xf8\x1a\x30\x34\x44\x70\x12\x1f\xa3\x95\xe1\x48\x92\x3d\xb3\x0b\x92\x35\xb0\x53\x0f\x15\x2d\x75\x68\xb2\x2c\xb2\xe0\xe9\xc7\xec\x3f\x50\xd5\x90\xcd\x04\x92\xc1\xf9\xfd\x7d\x0a\x87\x24\xa5\x33\x4e\xb7\xfd\x5a\x7b\x31\x4d\x01\x0c\x47\x32\xfd\x9e\xea\xbb\xbb\x8e\x1d\x3b\x8e\x23\x9c\x8b\xed\xd1\x68\x36\x66\x20\xb3\x10\xb7\xb6\xa6\x3d\x6f\xab\x8f\x9f\x47\x49\x92\x56\xbe\x55\xb7\x55\x23\xa3\xf1\x07\xd9\xd5\xa6\x1a\x58\x6c\x92\x6a\x55\xd8\xac\xa5\xf3\xd7\x8c\xc2\xe7\x1b\x45\x93\x9f\x99\xa1\xcd\x2d\xec\xc6\x2b\xee\x78\xa8\xde\x44\xe8\xc8\x1b\x94\x76\xbb\x54\x22\x55\xa2\x81\x37\x35\xb7\xe0\x66\xf8\x4a\x12\x5b\x29\x59\xa5\xa8\x30\x49\xae\x08\x34\x11\x1b\xf1\xb5\x3e\x56\xd3\x9c\x3b\x56\x39\xe8\xd4\xf5\x4d\xae\xe7\x23\xba\xd9\xd4\xf1\x16\x20\x1d\x15\x79\xd4\xb5\x5b\x94\x1d\x53\x82\xb1\x57\x02\x45\x45\x7e\x1f\x6b\xa5\xe6\xc9\x0b\x93\xea\xc6\xc8\x8e\xca\x6d\xdc\xdd\x5f\x23\x45\xbe\xa5\x48\x91\x6f\x35\x49\xd8\xe7\x05\x11\xcf\x58\x15\x5a\x5d\x26\x2b\x2b\xfd\xba\x2d\x47\x70\xf7\xb1\x0a\x1a\x06\x51\xd8\x37\x16\xaa\xca\xf0\xce\x91\x0f\xe2\x6b\xbc\x3e\x4e\x0c\x70\xea\xe3\x54\x41\xc1\x81\xaf\x4b\x05\xf8\xbf\x1a\x7c\x55\xa1\x5a\x84\xfd\x2e\xcd\x00\xe0\x5d\x67\x99\x48\x1c\xc6\x94\x0d\x5e\x5f\x51\x3d\x5b\x97\x15\xb5\xe1\x30\x8d\xa3\x1c\x34\x10\xc8\x13\xbc\x17\x28\xf2\xcf\xf7\x9c\x08\x6a\x98\xc6\xb1\x0d\xd1\x68\xa3\xf8\x85\xdf\x09\x14\xd4\xf1\x9d\x31\xcf\xeb\xd0\xab\xed\xb9\x34\xeb\x45\x0b\x38\xc6\x91\x62\xf9\xb9\x4a\xb7\xfc\xbc\x4e\x20\x11\x75\x55\x97\xf7\x55\x7a\x7b\x81\x35\x29\xfe\x9a\x8f\x4b\xc5\x5f\xf3\x31\x12\x99\x9a\xd1\x52\xa4\x4d\xfc\x1e\xdc\xdc\xa1\xb4\x86\xf4\x67\x6d\x0c\xd0\xf6\xee\xad\xce\x9a\x24\x1f\x44\x85\x63\xc9\x16\xee\x0f\x05\x3b\xf9\x4c\xc1\x03\xf3\x51\xd2\x35\x4b\x5b\x3c\x0b\x15\xd7\xe5\x5d\x73\x9a\xaf\x54\xa1\xa2\x01\x9b\x7f\x1f\xc9\x55\x1c\x26\x9b\x3a\x35\xd8\xd5\x60\x76\xc2\x83\xfe\x59\x4f\x1d\xc5\x7c\xd8\x21\x61\x63\xf2\x2a\x38\x89\xa5\x43\x75\x86\xfd\x99\x07\x8a\x2d\x76\x95\xe6\x1b\xcf\x7d\xbe\xdc\x88\xa9\x70\xca\x86\x24\xc8\x0c\x3a\x23\xd7\x23\x78\x42\x33\x0a\x9e\x18\xdf\x3c\xaf\x1e\xa4\xe8\x2a\xcd\xa3\x5a\x3f\xc6\x4d\x65\x62\x6e\x36\xc9\x13\xcd\xc6\x26\x9c\xcf\x35\x09\xf1\x05\x4d\x42\x7c\xa1\xc1\x2c\x1d\x6c\xcf\x65\xe9\xa0\x55\xbd\x8a\x93\x8d\xab\x9e\x4d\xda\x45\x76\x2b\x88\x47\x1c\xa7\x8b\x66\xa9\xe5\x59\xd7\x30\x04\x82\x6a\xf2\x51\xcf\x1b\x26\x9c\xc7\x1c\x23\xa0\x65\x04\x12\xdf\x04\x5e\xab\x35\x9b\xb7\x85\x20\xa8\x38\x27\x03\xa0\x23\xcc\xdb\xc7\x3a\xea\xbf\x56\xaa\x02\xcc\x8a\x7a\xb0\x28\xc9\x87\x51\x66\xbb\x50\x1e\xc5\xd2\xbc\xa7\x02\xe3\x4d\x1d\x5a\x2a\x80\x13\xfd\x0d\x3c\x12\xbe\xa1\x01\x85\x51\xbc\x5b\xd6\x4a\x48\x1e\xe6\xf5\xe6\xc8\xc4\x03\x64\xb0\x71\x96\x4e\x28\x6c\xd5\x84\x92\x26\x9c\x35\x59\x62\xb2\xae\x42\xe9\xa0\x5b\x82\xaf\xcb\xc7\x09\x02\x27\xd1\xd1\x6e\x9a\xcd\xb5\xbc\xde\xfe\x06\x7d\xbb\x06\x86\x82\xcc\x0e\x2d\xf1\xcd\xeb\x68\x49\xf1\xbd\x9d\xf7\x14\x10\x36\xa9\xec\x96\x16\xac\xd3\x39\xb0\x71\xce\xf3\xa9\x43\xed\x6e\x66\x16\x5d\x46\x4e\xf2\xfa\xde\xfd\x3e\x55\xaa\xae\xd3\xd3\xca\x11\xcd\x6c\x98\x2e\xd8\xac\x0e\x63\x47\xf2\x93\xaf\x15\x95\xc3\x30\x4b\xc3\x51\x46\x61\xce\xa4\x47\x57\x7e\x5f\x6b\xc4\x80\x64\x8c\x3b\x07\x4a\x85\x0e\x3d\xd5\x20\x3a\x3c\xd5\xce\x17\xe9\xe8\x68\x29\x06\xca\x2f\x54\x56\xee\x0b\xd5\xc2\x2a\xd8\xfc\x14\xbc\xeb\x8e\xe9\xbf\x7a\x2f\x61\xfa\x97\x70\x6f\x36\x4e\xa5\x19\xcc\x09\x9f\x3a\x7e\x9e\xe3\xe5\x13\x8a\xef\xe7\xff\x47\x23\x86\xb3\xf3\xba\xd6\x86\xf8\xb2\x54\x89\x18\x56\xbd\x74\xcd\x81\xbe\xa9\x78\x62\xb9\x46\x0d\x59\xad\x08\x6c\xc4\x1b\x30\x56\x70\x61\x4e\xa9\xea\xe3\xc4\x32\x41\x00\x5c\x08\xb2\x77\xaf\xdf\xc7\x95\x2b\x0a\x24\xf2\x6e\x64\xfd\x85\x23\xc1\xcb\xc8\x02\x69\x89\x88\xe9\x24\x45\x55\x78\xde\xff\xe8\x69\xa8\x7f\x1f\xc9\x6f\xe4\x61\x26\x48\xab\x1d\xe6\xa4\x45\x5d\xd9\x4a\xc7\x58\xd0\xe4\x2c\xb2\x8a\x6f\x3a\x0f\x2a\x0f\x61\xcf\xad\x0c\x06\x1c\x2a\xc1\x51\xe0\x2c\xbf\x86\xb8\x03\xee\xe5\xfb\x63\x4b\xde\x75\x05\x5b\x34\xc8\xb2\x5c\x94\x6a\x11\xe4\x2a\x94\x40\x1e\x7d\xfa\x34\xed\xf5\xb6\x54\x1f\x91\xce\x22\x35\x91\xa7\x94\x6e\x3b\xe8\x2c\x6b\x0a\x02\x82\x4c\x95\x9a\xa9\xd7\x40\x47\xb9\xfd\x1e\xfd\x3c\x5f\x2b\x4f\x7d\x98\xa5\xdd\x51\x68\xbb\xdb\x14\x6f\xf0\x3d\x6d\x56\x5f\x57\x9c\x84\x4c\xe0\x81\xe1\xfd\x4c\xe3\x65\xee\xab\x42\x0f\x97\x13\x24\x79\xa7\x24\x63\x48\xf3\x0e\xf8\x14\x64\xc4\xbe\xa3\xd1\x53\x97\x10\xb3\x01\xa8\x8d\x6c\x21\x86\xf8\x2e\x4d\x3c\xff\x91\xa6\x13\x2f\x32\x5b\x84\xc4\xd5\x56\xcd\x34\x62\xc9\xdf\x2f\x3d\x03\xde\xef\x2b\xd4\x5f\x3a\xc8\x1c\xf7\x9e\xa8\x43\xd0\x3b\x73\xcd\xa5\x54\xfd\xee\x6b\xc1\x4e\xf7\x23\x2f\x7c\xa5\x7a\xdc\x1a\x55\x2e\x72\x8d\xa7\x34\x9a\xe6\x26\xde\x99\xab\x3e\xa5\x16\x55\x80\x5a\x23\x32\x06\x1f\x6a\xf2\xfc\x2f\xa0\x49\xc5\xdf\x86\x68\xcd\x45\x3d\xae\xe6\xf3\x99\xc6\x8d\x7d\xa2\x98\x3b\xce\xe3\xf1\x91\xc5\xbe\x49\xf9\x69\x3c\x0b\x93\x04\x49\x77\x66\x03\x73\x73\x62\x0d\xab\x20\x60\x8e\x87\x34\x7b\x7c\xdd\x08\x2b\x4d\x13\xd5\x9c\x0f\xaf\x73\x13\x61\xd8\xf8\xba\xa3\xb9\xb9\x68\x41\x6d\x57\xdc\xd3\xc8\xed\xa0\x54\x7c\x42\x21\x85\x2e\xaa\x92\xd0\xa4\x46\x73\x9f\x08\xbc\xa5\x3b\xa7\x7c\x97\xef\x6a\xb1\xbd\xdf\x52\xad\x05\xa3\x61\x2c\x0c\xf1\xd8\x22\x9b\xa1\xee\xc6\x37\x9d\x06\x30\x9b\x49\x42\x9b\x17\x19\xf8\x47\x5e\x63\xaa\xd4\xcf\x69\x24\xf8\x3a\xd8\xad\x95\x40\x06\x69\x61\xb3\x49\xd5\x3f\x05\x40\x27\x2c\xc7\x69\x58\x46\xbe\xa1\xa7\xe7\x3f\x6a\xb0\xfe\xaf\xb5\x67\xb3\x74\xd4\xeb\x17\x13\x4a\xd0\xe3\x3a\x7d\x88\x33\x66\x54\xf9\x95\x58\xed\x79\x09\x9b\x40\xd9\x04\x01\x7d\xf6\x9c\x44\x64\x95\x86\x85\x6f\x02\xbd\xe3\xb2\x81\xcd\xf2\xed\xbe\x5f\x0d\x25\x60\x91\x93\xa1\xb7\x41\xd5\xfe\x3a\x76\x9f\x14\xbb\xe9\x75\x84\xdc\xc9\xa7\x53\x41\xf6\x20\xb4\x79\x34\xc5\xbe\x3c\xee\xa9\x38\xfa\xbb\xaa\x0d\x89\x89\xe5\x3e\x46\x98\xdb\x07\x30\x1a\x22\xf3\xe6\xe1\x40\x4f\x76\xbc\xf3\x8c\xa6\x24\xb6\x9b\xf7\x68\xed\x08\x63\x3a\x36\x16\x0e\xd6\x87\xb4\x92\xb0\x97\x01\x5d\x84\x11\x7c\xb2\x4e\x8e\xa9\x85\x10\x31\x4e\xd8\x3f\xad\x65\xad\x60\x3f\x1a\x3e\xe7\xe1\x0c\x47\xc9\xe0\x60\x5e\x36\x75\x90\x30\x82\xe1\x7d\x80\x97\xe1\x7e\x4b\x3a\x84\xe0\x29\xde\x01\xa2\x91\xff\x4a\x35\x79\x5c\xa5\xc6\x04\xec\x83\x7f\xa5\xbd\x99\x0b\xd8\xd8\x8c\x2c\xa3\x77\xc1\xd9\xb6\xad\xa3\x7a\x55\x99\x96\x40\x0e\x7d\xdf\x67\xc4\x06\x43\x58\xa2\x68\xbe\x30\xac\x1f\xe3\x95\x31\x2f\xf7\xe0\x43\x32\x07\x7c\xe0\x73\xac\x67\x95\x8e\xc9\x7b\xe5\x93\x1e\x80\x6e\x8f\x6e\xf3\x88\xf6\xf7\x61\xb0\x80\x0a\xbb\x80\xef\x72\x34\x8c\x7b\xa7\x5c\xe1\x8a\x46\x85\xff\xaa\x74\xdc\xdd\x47\xaf\xa8\xd2\xe6\x8a\xca\xf1\x0f\xad\x89\x91\x5e\xd0\xe2\x30\x48\x28\x20\x15\x8f\x13\xf0\xc7\x0e\x7c\x9e\x0f\x4c\x06\xf5\x58\xfa\x9f\x1f\x3c\x47\x40\x2d\xa7\x50\xe1\x99\x1d\x51\x66\xc6\x0e\x86\x54\x9c\xa0\xbc\x1a\x88\x25\x06\x69\x0a\x1f\xd8\xb5\x17\xab\x66\xee\x71\x56\xbe\x05\x9b\x75\x23\xb4\x81\x39\x3a\x48\xfa\x39\x66\xa3\x0c\x7c\x5f\xef\x69\xb5\x1f\x4c\x96\x3f\x55\x3d\x08\xbe\x78\x0b\x3c\x0e\xf8\x25\x3f\x2b\x3d\x3a\x63\xfb\x72\x5d\x5f\x6c\xdf\xb4\xe3\x80\xa4\xa1\xa2\xaa\x40\x0a\x79\x3e\x1c\xb5\xff\xea\x1f\xd0\x28\x60\x3d\xa3\x7c\x8d\x9d\xfd\x2b\xcb\xe4\xc8\x08\xa7\xbb\xe2\xb4\xb9\x47\xa6\x45\x94\x2a\xb1\x9d\xb8\x87\x54\x07\xb7\x13\xcb\x12\xea\x47\x49\x61\x93\x3c\x9a\x8b\xc4\x59\xc5\x56\xba\x08\xdb\xc1\x37\x81\xef\x24\x5d\x48\xe3\x51\x52\x58\xa4\xaa\x7d\x7a\x7f\x2d\xf0\x3d\xe4\x6b\xea\x0c\x8f\x12\xd3\xb5\x6f\x8e\xa4\x99\x5f\xba\x23\xaa\x3f\x96\xe6\x88\x9d\x0e\xea\x3c\x3b\x89\xbd\xa8\x4b\x31\xa2\xa5\xde\x72\x5a\x33\xec\xf2\x0b\x0f\xe7\xb3\x2a\xf1\x59\x3d\x1c\x11\x80\x29\x0a\xa4\x8f\x79\x14\x44\xae\xa4\xe5\x68\x2a\x4f\x2a\xc1\x5c\x62\x80\x76\x6a\x39\xb2\x2a\x0b\x33\x9b\xa6\x78\x4d\xa7\x7f\xec\x4c\xda\x65\x9f\xbb\xb7\x26\x1f\x65\x60\x28\x9e\xf2\x2c\x00\x5e\x74\xae\x54\x55\x60\x10\x3d\x22\x9e\x3a\xad\xd8\x41\xcc\x82\x4d\x46\x18\x25\x86\x66\xc1\x02\x08\x4e\x6b\x63\xbc\xbc\x7f\x7f\x3b\x34\x49\x77\x49\x81\x8d\x8f\xa9\x82\xd5\xb1\x46\xe1\x68\x4e\xb1\x51\xa0\x81\x51\x46\x6d\x92\xaf\xdd\x89\x3b\x48\xf3\xd8\x0e\xa4\x67\xce\x21\x74\x14\x14\x7e\x0c\x3a\x3f\x75\xa8\x9d\x1b\xec\x36\x49\x59\xb6\x1c\x13\xf9\x19\x85\x0a\xec\x99\xb7\xcc\x84\x67\x87\x61\x31\x50\x18\x50\x24\xca\x84\x16\x4e\x0c\x4a\xd1\xb7\x51\x96\x6f\xab\x06\xd4\x7d\xc6\xf7\x89\x3f\xb5\xec\xbf\xec\xcf\x95\xb2\x0a\x7a\xde\x14\x50\x56\x41\x2c\x67\x5c\x1a\x65\x57\x67\x6c\x9c\x0e\xcc\x7c\x9d\x1a\x1e\x42\xaa\x20\xa2\xb0\xb2\x7e\xcd\x3d\x8d\xc9\x73\x9b\x15\x30\x6f\x82\x24\x55\xc5\xdc\xb5\xc0\x2b\xa2\x30\x68\x52\x32\x0c\x51\xaa\xc5\x87\x4a\x2d\x3e\xf4\x18\x5e\x15\xbb\x40\xad\x8b\x8a\x55\x0e\x98\x35\x21\xad\x90\xf9\x22\x82\xa1\x78\x89\xb2\xec\xa8\xd7\xb6\x3a\xe4\x7d\x0a\x78\xd3\x63\x86\x4f\x95\x5e\x26\xe9\x3f\x61\x97\x4b\xb9\xcb\xd9\x84\xc1\x30\xcd\x0a\x93\x14\xb1\xa6\x8c\x5a\x55\xc1\xf3\xaa\x02\x68\xe5\x51\x81\x94\x04\x1c\x9a\xd3\x74\x70\xf0\xb5\x4a\x54\xe7\xc5\x68\x76\x36\xcd\x92\x96\x62\x19\xfc\x02\x36\x89\x6f\x54\x0a\x35\x4f\xff\x3f\xca\xfe\x3c\x46\x92\x33\x3d\x13\xc3\xbb\xb3\xaa\x0f\x92\xcd\x21\xbb\xc9\xe1\xec\xe8\x27\xfd\x94\xb3\x3b\x30\x25\x7b\x44\x8c\x6c\xc3\x58\x09\x06\x32\x5d\x5d\x23\x0e\xcb\x62\xb1\xd1\xdd\x6a\x4a\xf4\x1f\xcb\x2f\x23\xbf\xca\x0c\x76\x64\x44\x32\x8e\xaa\x2e\xda\x06\x16\x06\x6c\x2f\x8c\x85\x60\x1b\xc6\xae\x8f\x5d\x63\xbd\x36\xa0\xf5\x7a\x05\xad\x46\xc7\x48\x96\x84\xcc\x19\xcd\x2d\x89\xc3\x73\xc8\xe1\xd9\xf7\x55\x7d\xdf\x67\xb5\x11\xef\xf3\xbe\xdf\xf7\x46\x45\x70\x61\xff\x41\x20\x82\x5d\x79\x7d\xf1\x7d\xef\xf9\xbc\xcf\xb3\x1c\xda\x3c\x7b\x44\xa9\xf0\x1f\xd5\x2a\x84\x47\x81\x16\x73\x62\xb6\x7b\xe7\xa4\x65\x43\x76\x15\x91\xf9\x5f\x92\x6b\xc6\x37\xb9\x4f\xae\x51\xa3\x40\xa4\x02\xa4\x66\xa1\x2e\xa2\xba\x88\x43\x8b\x0c\x05\x68\xb0\x33\x5a\xee\x74\x68\x42\x46\x11\xc2\x23\xbd\xab\x04\x3f\xdf\x9d\x78\x86\xb4\x6c\x1c\xd9\xb8\x1f\xf6\x23\xa2\x1d\xf1\xaa\x33\xf4\x81\x42\xf2\xe6\x09\xf3\x51\x1e\x40\x84\x79\x97\x8a\xa1\xfc\xff\x31\x38\x2e\xbe\x26\x9c\x21\xd3\xef\x90\x7b\xae\x41\x75\x95\xc2\x55\xd1\x6d\xad\x47\xa5\xcf\xb6\xf3\x64\xc5\xa4\x32\x12\x82\xa2\xc6\x6d\x5a\x2e\xbe\xae\xed\xc1\x85\x85\x76\x6a\x47\x86\xd4\x16\x66\x6a\x6a\xce\x70\x38\xeb\x4a\x3f\xf1\x82\xe2\x87\xa3\x82\xbb\x09\x86\x52\x41\x86\x19\x3b\x42\x9b\x83\xaf\x6b\x99\xc8\xc2\x42\xbb\x67\xa3\xd0\x2e\xf3\x80\x87\xd0\x79\x94\xeb\xcb\xd7\x4d\xb0\xe5\x20\x74\x23\xe4\x82\xc4\x53\x5c\xf8\x67\x14\x17\x52\x11\x0f\x76\xf8\x3c\x99\x09\x9e\x60\x79\x78\x22\x18\x66\x04\x30\x71\x3c\xfb\xcb\x13\x3f\x30\x74\x0e\x7b\x10\x87\xea\x77\x27\x8a\xc4\xeb\xa4\xe2\x8f\xf9\xce\xc4\xb3\x3a\xdd\xc0\x57\xe1\x16\x24\xcc\x96\xc4\x4e\x5a\xa3\xf4\xbd\xba\x64\x6b\x69\x86\x7a\x45\x96\x85\x36\x95\x9f\x27\x69\x95\xaa\x2e\x9e\x6d\x22\x96\xec\xdb\x65\x93\xe5\x26\x17\x48\x3f\x1e\xcf\xba\xea\xa8\x5f\xd0\xe2\xd9\xba\x5e\x9a\xe5\x66\xb5\xa5\x46\x7d\x3f\xaa\x0a\xd3\xd4\x79\x60\x17\x29\x84\x48\xf3\x95\x30\x96\x10\x42\xfc\xa3\xf2\x95\xd5\x7a\x57\x10\x15\x19\x8f\xf6\x3d\xcb\x51\x0c\xa8\x79\xa5\xbb\xd3\x72\x84\xee\xe7\x26\x9f\x57\x65\x3a\x1b\x94\x56\xb4\xc8\xa2\x55\xcd\x87\x7b\x0a\x40\x03\xd1\x93\xf6\x66\x24\xc5\x6e\x6a\x51\x5c\x2b\xf3\xdb\xde\x2b\x9c\x55\xa9\xd4\x6a\x31\x1e\x13\x45\xa9\xeb\x68\x56\xb9\xfb\x14\xd6\xae\x07\x33\xce\xfd\x26\xfa\x95\xd2\x7b\x6a\x18\x9d\x4b\x8a\x3c\x48\x59\xfe\x4b\x5a\xd9\x1e\xa2\xb1\x5e\x51\x08\x7e\x5c\x49\x70\x25\x2b\x44\x57\xe2\xc6\xee\xcf\x6b\xfa\x69\x46\xcb\xf2\xbf\x28\x78\xea\x45\x15\x51\x04\x26\x1a\x31\x63\x27\x92\xa5\xeb\x74\x92\xf8\x5a\x13\x93\x11\x75\x76\xcb\x47\x70\x40\x5f\xf3\xb5\x83\x67\x25\xcb\x36\x4d\x43\x96\xd1\xc6\x57\xbe\xad\x6c\xdf\xed\xda\x16\xa6\xe1\xd3\x30\x0f\x8d\xea\x24\x09\x4a\x83\x5c\x30\xdf\x34\xb4\xc6\xdb\xc9\xd2\x92\x4d\x11\x89\x33\x67\x55\xc7\x8f\x87\xfc\x7e\xc7\x5b\xf9\x35\x65\x9b\xed\xab\x45\x98\xaf\x6e\xd5\xfc\x2a\xe5\xaf\x77\xf0\xac\x03\x73\x6e\x74\x84\xb6\x1e\xf3\xf4\x57\x64\x2e\x7c\x00\x71\x49\xb1\xb8\xe4\xa9\x35\xf9\x6a\xcb\x33\xed\x5f\xd0\x99\xee\x05\x45\xf0\x4c\xfc\x69\xdb\x14\xc5\xfb\x9a\xa2\x93\x62\xa9\x1e\x18\x90\x77\xf1\x16\x6c\x0e\x3a\xbe\xfe\xbf\x86\x6a\x93\xd8\x09\x3a\xed\x08\xe2\xaf\x36\xd0\xf9\xec\x69\x07\xc9\x41\xcb\xae\x1a\xf6\xeb\xad\x89\x32\x66\x6f\xa9\x2f\x67\xe3\x57\x92\xd5\xad\x6a\xa4\xe1\xa2\x46\xc5\xf0\xae\x42\x8e\x71\x8a\x5c\x03\x5f\xe3\x80\x21\x33\x3c\xa5\x6a\x51\x75\x0a\xe5\xf9\xfd\xcc\x73\xf7\x99\x23\x7a\xf5\xbc\xeb\x60\xd8\x27\x7a\x60\x4d\x49\x8f\x52\x9c\x7c\x49\xdf\x54\x8f\x4c\xdc\x4f\x56\x62\xde\xae\x62\x96\xfc\x60\xe3\x47\xaa\x63\x56\x64\xcc\x39\x2c\x58\xcd\x96\x93\x8e\xad\x83\xe9\x0e\xcc\xcd\xb7\x4d\x9a\x2f\x15\x4c\x58\xab\xf9\xf9\xf9\xba\xd6\xb3\x22\x0e\xc0\x22\x47\x47\x55\xc8\x0e\xd5\xd2\x5f\xd0\x14\x8e\xc9\xc8\x26\xb1\xdd\xa6\x1f\x2d\x7d\x21\xa6\xbf\x50\x4a\x21\xf7\x26\x8a\x9f\x86\x91\x8b\xe8\x3c\x6c\x9a\xfa\xee\xe2\x35\x3a\x04\xb2\x49\x7c\xa0\xb9\x94\x04\x45\xb6\x45\x95\xe7\xee\x2a\x15\xcd\x73\xba\x81\x7a\x0c\xee\x4c\x34\x0a\x7c\x19\x68\xa6\xfb\x39\x85\xff\x4a\x4d\x04\xf2\x17\x51\x57\x53\x44\x06\x6f\xe9\x66\xfe\x55\x8d\x97\x51\xac\x8c\x77\x94\xf5\x7c\x69\x6e\xae\xd5\xaa\x0a\xf2\x39\x54\x61\xcd\x95\x1d\x98\x7b\xa9\xdd\xb7\xb9\x4d\x47\xde\xb9\x08\x5f\xa5\x07\x6b\x6c\xea\x6a\x41\xd3\x50\xa2\x07\x57\x53\xf1\x4d\x95\x26\x1a\x9c\x61\x98\x6f\xd8\x79\x2d\xaf\x92\x30\x69\x37\x6c\x6f\x9b\x06\x76\x5c\x9a\xb4\xd8\x66\xd8\x5f\x30\xa9\xe0\xb4\xe6\xeb\xc6\xfd\x65\xf3\x61\x18\xf0\xa7\x69\x31\x24\x69\x55\x3f\xae\x08\x1d\xe2\xcc\xc6\x83\x96\x87\x25\x1f\xf5\x02\x7f\x07\x8e\xba\x5a\xcb\x2b\x66\xd5\xa4\x98\xc5\xc2\x33\x60\x31\x0b\xbe\xa9\x99\x8b\xfd\x2f\x88\x46\x7a\x65\x98\xbb\xe5\x54\x69\xcf\x56\x18\xce\x4d\x96\x87\x81\x89\xa2\x55\xa4\x3b\x48\x56\x6e\x74\x74\x97\xf4\xdd\x89\x82\x4f\x5e\x76\x0d\x8a\xd4\x84\x48\x06\x61\xa5\x3f\xd4\x64\x5e\x1f\xba\x04\x3b\x0d\xa3\x7f\x63\xe8\xd6\x70\xe0\xe2\xf0\xe0\xc1\x44\x75\xa2\x2f\x56\x74\xf5\x35\xf2\x28\x0d\xfb\x7d\xa7\xa5\x04\xd7\x7b\x0f\xa9\x1f\xdf\x34\xd1\x4a\xb3\x26\xb4\xec\x36\xc5\x08\x32\x2f\x37\x9d\x0a\xc9\x71\x61\x77\x95\x0f\x06\xf3\xcd\x70\x9c\xc8\xc0\xae\x77\x14\xd7\xc5\x39\x5d\x5b\x3b\x05\xa3\xeb\x66\xb3\x16\x9d\xf6\x34\xe7\xd8\x50\x2e\xb8\x8a\xb3\x8a\x29\x82\x3b\xaa\x9e\xf7\xbe\x3e\x74\xa7\x60\xb4\xd1\x45\xba\x46\xa1\x27\x33\xa3\xa0\x4e\x88\x2e\xd4\x0f\xc8\x68\x23\x7c\xff\x14\x6b\x2c\xdd\x84\xd6\xf3\x92\x01\x1e\x47\xc7\xc2\xd5\xec\xe6\xf7\x3b\x8a\x41\xd7\x77\xfa\x95\xbf\xfb\x77\x67\xca\x18\x5e\xd4\xff\x74\x74\x38\xf1\x43\x74\x9b\x94\x42\xb2\x3d\x44\xba\xb0\x58\x50\x24\x35\x5c\x9a\xe6\x9b\x86\x96\xc4\x9e\x76\x2f\x59\x89\x5c\x4b\x02\x19\x22\x52\x32\xbe\xd6\xa4\x40\x43\x93\xd9\x34\x23\xb1\x4a\x67\xd9\xca\xef\xe5\x58\x72\x9c\xda\xdf\x6d\x2d\x7a\x50\x8c\x4c\x6c\x66\x7c\x5d\x78\xa8\xe9\xd3\x2e\xa8\xce\xea\x85\xc9\x06\x2e\xc2\x5f\x2c\xc3\xf3\x59\xfa\x0c\xa1\xe1\xf6\xd3\x1f\xc7\xab\xa4\x6e\x1e\x9c\x78\x7c\xf2\x94\x56\x46\x4e\x93\x43\x42\xa1\xad\xd4\xac\x36\x61\xca\x41\xf8\xec\x1a\x4e\x40\x14\x8e\x7a\xac\xb7\x25\x94\x60\xde\x64\x41\x07\x5f\x58\x94\x1a\x6a\xa2\x4b\xa9\x59\x55\x08\x82\xe3\x8a\xf1\xf6\x78\x47\x0b\xd9\x88\xd9\x85\xee\x16\x96\xf2\x83\x89\xa7\x54\xbb\xa8\xd7\xf8\x83\x8e\x82\x0c\x34\x91\xca\x98\x28\x0a\x19\x23\x20\x51\x97\x42\x47\x1e\x56\xa4\xaa\xe3\x30\x8a\xc0\xd3\xa7\x06\xf7\x5f\xd2\x63\xf8\x82\x3c\xe6\xba\xb4\xf0\x22\x55\xf0\x35\x19\x28\x40\x50\xc0\xbc\x33\x51\x54\xc7\x3f\x56\xd9\xc5\x8d\x0a\xb0\xb8\x28\xdd\x73\xf9\x9b\x2a\xae\xdc\xf1\x3c\x1f\x98\xf3\xa0\x7f\x47\xd5\xc0\x95\x25\x37\x62\xba\xbb\x42\xe0\xf7\x12\x7f\xce\x3f\x68\x1a\x50\x1d\xa7\x21\x8b\xc0\xa2\x1a\xb0\xae\xe8\xdf\xd7\x27\x4f\x2a\x4e\xaa\x2c\x2d\xc6\xac\x77\xed\x71\x15\x9b\xbb\x8a\x2e\x70\xb3\x62\x9b\x0e\x92\x91\x3d\x54\xa1\x8a\xee\xf8\x08\x54\x23\x45\x5f\x31\x63\x13\xdb\xcc\x3e\x46\x6b\x8a\x8e\xc0\x11\x80\x99\x58\x54\x99\x9e\x2a\x0c\xd0\xec\x94\x2c\x98\xa8\x2d\x97\x3f\x14\x09\x32\xc3\x64\x44\xbb\xb6\x5c\x26\x61\xf0\x54\x1d\x90\x7b\xb4\x2f\x91\xec\xde\xee\x28\xe2\xc4\x1b\xf4\xe5\xb0\x61\x1f\xc3\xde\xd7\xa3\x15\x78\xab\x13\x1d\x65\x8d\x19\x8b\x8d\x64\xdb\x83\x59\xc3\xf8\xd5\x22\x4c\x57\xc1\x6a\xe9\xa2\x37\x37\x1e\x78\x57\x05\xd8\xec\x33\xf0\xcd\xde\xa8\x39\x49\xaa\x94\x06\xd6\xc4\x52\x00\x55\x6a\x5c\xee\xa6\x36\x41\xb6\xb8\xb8\xaf\x1d\xc6\x7d\xd2\x1c\xe6\x92\x9d\xc8\xfb\x29\x50\xf0\x05\xe5\xe4\x03\x93\xda\xd2\x6e\xa9\xd2\xca\xef\x4c\x7c\x09\xf7\xb6\x1a\x4f\xbd\xd5\xc8\x1d\xc1\xbd\x58\xed\xaa\xce\x69\x57\x75\xae\xf3\x94\x87\x04\x15\xa9\x35\x05\x4b\x8f\xce\x28\x40\x3a\xbc\x3f\xc2\xb9\x1f\x4d\x14\xf3\xc4\x31\x3d\x3e\x10\x25\x79\xce\x3c\xca\x82\xcd\x54\xb2\x8a\x3f\x55\x53\xb1\x37\x9a\xbc\x76\x96\x14\xf9\x70\xc6\x0f\x60\xdf\xa5\x0f\x55\xea\xf4\x7b\x5c\x2d\xd5\x7f\x68\x5a\x8c\x12\xea\x33\x94\x0e\xce\x99\xba\xe7\x3c\x2b\xa2\x82\xa6\x16\xa3\x5e\x64\xb7\x94\xbb\x12\x31\xe7\x61\xda\x88\x70\xa4\x47\x54\x27\xf1\x23\xc5\xf8\xbe\xa6\x74\x9d\xdf\x68\x9a\x21\xa4\x13\x4a\xdf\x1a\x81\x0b\x4a\xca\x58\xdb\x3b\x9a\x7f\xe8\xa2\x9e\xb6\x1d\x5a\xeb\x78\x1a\x64\xdc\x80\xfe\x56\x98\x24\x7d\x34\xfc\xf5\xb9\x05\xfa\x33\x27\x1a\x5b\xfe\x99\x4c\x50\x6f\x7c\xe2\x2f\xbf\x5c\xc6\x9e\x59\x12\x1b\x0c\xfd\xa2\x95\x73\x55\xab\x97\xd5\xf3\xc3\x03\x73\xcf\xb6\xb3\x20\xc9\x59\xfd\x4b\x78\x10\x3d\xa4\xe6\x7b\x35\xcc\xdf\x73\x8b\xa5\x09\xe9\x15\x99\x9b\xd9\x13\x44\xb5\x1a\xae\xfe\x76\x4d\x26\x6f\xef\x5c\x3b\xb2\x59\x36\xdb\xda\xbd\x5b\x78\x0a\x95\xb4\xee\x1a\xa2\x11\x07\x3a\x2c\x6d\x09\xde\x49\x4f\x36\x50\xd6\x4f\xd4\xaa\x1e\xda\xc9\xa8\x14\x41\xc8\x37\x08\xb8\x9b\x38\x1f\xa6\xe6\x50\x4b\x7b\x32\xed\xe1\x9a\x10\x0f\xc3\x30\xf7\xc5\x49\x29\x70\x2b\xb4\x96\xa6\x92\x89\x8a\xe0\xe0\x16\x15\xb0\x3c\x40\x3b\xd6\x8d\x40\xfa\xb8\xe6\x81\x1a\xc2\xb8\xab\x7a\xe9\x33\xdd\x1d\x0e\x68\xf8\x5a\xdf\xcc\x68\xf4\x28\xd9\x28\x91\x8b\x54\x8a\x10\x77\x6b\x2b\x3c\xbf\xbf\x0c\x6a\xc7\x28\x67\x49\x55\xa8\xe5\xc8\xad\xce\xd7\x4c\xd2\xde\x39\xe5\xc7\x67\xd4\xc8\xc4\x0f\x55\xc9\x88\x63\x31\xf1\xe3\xfe\xf8\x0d\x4c\x14\xd9\x74\x95\x5c\x31\x4e\x1c\x43\x78\xb0\xd7\xd0\xc5\xe3\x7f\x98\xa8\xe6\xe2\x9a\x53\x5e\xe9\x99\xf8\xd0\xab\x45\x92\xe3\x0c\x09\xa0\xdc\x3f\xa6\x37\x34\x3f\xe4\x35\xc5\x38\x9a\x15\x03\x93\x22\xbe\x72\x43\x03\x6e\x1f\xc2\x95\xa0\x99\xfe\x43\x9c\x2c\x04\x07\x97\x6b\xb5\x85\x5f\x7b\x91\x18\x23\x99\x6c\x1d\x36\x8e\xf9\x25\xf8\x46\x75\x28\x46\x06\x68\x23\x88\x25\x0b\xc9\x1e\x2d\xb6\xd6\xa4\x41\x13\x81\x49\x21\xf9\xa6\x41\x09\xa1\x9d\xda\x57\x6c\x90\x57\xd3\xd6\x1f\x4f\x54\xc9\xf9\xc7\x2a\x84\xcd\xac\xc9\xc8\xbf\xef\x99\xdf\xef\xc7\x0a\x16\x16\xdc\x58\xc1\xc6\xd4\x18\xe6\x5f\x1a\x9e\x9f\x9d\x0f\x35\x8c\x6f\xd2\xcb\x96\x5d\x4d\x5f\xa7\xff\x70\xc3\xeb\x4a\x46\xe7\xa2\xaa\x2c\xd8\x43\x87\x92\x18\xd6\x98\x91\x5b\x13\x5f\x82\xb8\xd9\xa9\x08\x3e\x8d\x4d\x6a\xfb\x44\xcc\x2b\xcf\xc6\x3f\xc0\xb7\x80\x20\xc4\xfe\x7f\x1d\x86\x81\x6f\x28\x80\x42\xc6\x02\xc4\x2a\xca\x72\x28\x93\xf2\x35\x7e\xa0\x8c\xe8\x78\x51\xcc\xac\xe8\x91\x20\x50\x68\x48\x2b\xe5\x80\x70\x1d\xdc\xd6\x6c\x84\xd7\xd5\x7c\xdc\x5b\x1d\x3f\x8d\xf7\xbb\x8d\x63\x52\x81\x23\xdb\x53\x50\x04\x11\x68\x3b\xee\x1a\xc0\x76\xd4\x4b\x4d\x20\x23\x15\xa8\xa1\x70\x6a\x24\x44\x3f\x2d\xaf\xde\xa3\x6a\xe1\xbd\x10\x42\x99\x15\x7e\x3e\x4e\x02\xa5\x5f\xe4\x61\x15\x87\x4c\x14\xb5\x34\xfb\x27\xfd\x9d\xe0\xe7\xc5\xc2\x8c\x93\x22\xe5\xf8\x83\x85\x8a\x10\x7f\x88\x6a\x91\x07\x07\x9a\x20\x08\xfb\x36\xce\xe9\x74\x62\xad\xee\xaa\x89\xa9\xb3\x9a\xea\xe0\x9c\x2a\x86\xda\x38\x2b\x52\x4b\xb5\x69\xf1\x55\x65\xea\xe5\xb8\xb9\x0f\x08\x8d\xd1\xfb\xea\xac\xbf\x5f\xf3\x67\x7b\xe7\xda\xf6\x90\x4d\x83\x30\x03\x90\x12\x58\x97\x4d\x53\xd5\xaa\xfd\xeb\x89\x0f\x38\x5a\xdd\xba\x30\x6b\x99\x26\xae\xb6\x5a\xbf\xf1\x75\xaf\x67\x5e\x7e\x65\x01\xad\x7a\x13\x3e\x0e\xcb\xe7\xe8\x46\xcb\xce\xaa\xfd\x74\x56\x31\x33\x27\x2b\x71\xb6\xa5\xf5\x6b\x2f\x56\x3a\x8b\xd2\x8e\xf7\x5f\xe5\x94\x56\x4f\x3a\xa3\x11\xd2\x77\x9b\x10\xd2\x26\x30\x7d\x3b\x0a\x21\x68\x23\x42\x0a\xbe\x6e\x74\x44\x6d\x08\x80\xc0\xc2\x00\xf8\x19\x4f\x3a\xeb\x7b\x83\x9b\x34\x59\xdf\x95\xc9\xcf\xd7\x3f\x4e\xcd\x9f\xa7\xa2\x15\x8a\xa7\x7b\xbf\xa3\x00\x52\x6c\x28\xa4\x8a\xae\x84\x24\x92\x28\xec\x73\x3d\x19\xee\xeb\xb2\xea\x52\x5c\x56\x8e\x71\xc5\x44\xd1\x76\x3f\xc1\x75\x51\x4f\xbf\xa1\x87\x86\x18\xff\x5f\x2a\x51\xc7\x93\x0a\x75\xf1\x86\x26\x55\x3b\x0b\x47\x8a\x0e\x26\x6a\x69\x30\x1d\x9b\xa7\xbe\xa4\x9b\x87\x36\x9b\x2d\xff\x89\xeb\xf8\xb4\xf1\x90\x2f\x9c\x54\xd1\x1c\x46\x37\xf9\xff\x6f\x4c\xde\xf7\xec\xdd\xd3\xfe\xd5\xed\x8a\xb4\x17\x73\x9b\x38\xb6\x2c\x2d\x89\x12\xce\x89\x89\xa2\x2b\x39\xdf\x51\x7a\x6e\xac\x0c\x8a\x70\xe6\x8d\x89\x1e\xbd\x54\xb9\xcd\x07\x4d\x03\x5e\xc4\x58\x18\x8e\x39\x88\x83\xad\x03\x7a\x98\xaf\x6b\x96\x88\x5a\x81\x79\x18\x23\x6f\x77\x35\x75\x5f\x5f\x57\x54\xa4\x07\xe3\x64\x05\xea\x38\x2c\x96\x5c\x11\x4e\xf6\x43\xcc\xcb\x36\xed\x99\x3c\x04\x41\x92\x60\x07\x69\x43\x88\x48\x6a\x13\x29\xed\x38\xb5\x4b\x36\x75\x63\xaa\x18\x9c\x9b\xd2\xb3\xe2\x6b\xdd\x28\x5b\xb6\x8f\xf8\x16\x1a\x2b\x34\x22\x8c\x3b\x0a\x93\x4c\xcf\xfd\x27\x3f\x83\x79\x1d\xc9\xa7\x3d\x1b\xf1\x6f\x4f\x94\x5e\xfe\x5d\x2d\x5d\x7d\x4a\x69\xe4\x6f\xed\x7a\xa0\xea\x95\x89\x97\x18\xdd\x3a\x55\x62\x23\xff\xed\x44\x0d\x21\x64\xa4\x70\xe3\x58\x3d\x10\xd5\xf3\xf5\x54\x75\xfa\xcb\xc8\x61\x95\xcc\x9c\x34\x84\xbc\xea\xd8\x7f\x7c\xbb\xa3\x2a\x53\xb7\xe9\x5b\xf3\x5f\xf9\xe1\xec\x34\x59\xe9\xcf\x2a\x34\xd9\xd5\x8e\x42\x7c\xff\xb6\x0e\xdd\xf0\x4b\x81\x0d\xfb\x71\x6d\xe9\x17\x16\xf6\xb6\xa3\x24\x19\x93\x30\x13\x4c\xbb\xb0\xfc\x28\x46\xac\xb5\xa6\x39\x9c\x7e\xf2\x9a\x8d\x39\xcc\x95\x12\x8a\xae\xad\xd4\x26\xb1\xf7\xb4\xf3\x61\xc8\xa3\x23\xf8\x72\x27\xc8\xfa\xf0\xb5\xf3\x79\x62\xd4\x54\x78\xb8\x79\xaa\x86\x16\x4e\x76\x14\x0c\xff\x4d\xa5\xfb\x77\xb7\x61\xf4\x67\x4f\xf9\x58\x08\x53\x23\xe2\x46\x98\x6c\x41\x25\xf3\xc6\xa4\xe2\x10\x1b\xf8\x0b\xb3\x3c\x25\x54\x86\x52\x0a\xe5\x66\x96\x04\x45\xbb\x14\x0f\xc2\x28\x29\xd3\xe0\x55\x36\x8d\x0e\x7a\xed\x62\x01\x46\xbe\xc2\xde\xae\xb9\x5a\xfb\x20\x35\x4e\xe6\x17\xb6\xf0\x04\x0e\x3b\xdf\x28\x9a\x5f\xd3\xef\xcb\x10\x10\x62\x05\x54\x39\x04\xb5\xa1\xba\x29\xc7\x15\x19\x21\x68\xe1\xf9\xff\x63\xf9\xf8\xd5\x8a\x36\x53\x44\x2e\x31\x8f\x8f\x44\xf6\x3a\xd4\xb9\xd0\x71\x87\x41\x67\x3c\x03\x16\x93\x40\xb6\xeb\xe7\x60\xda\x84\x14\xa8\x61\x06\x3f\x48\x32\x41\x1e\x4b\x16\x54\xc9\x8f\x74\xb1\xec\x35\x13\xe0\x2f\xdd\x9c\x42\x69\x1d\x85\x60\xc3\x5b\x81\x5f\xfe\x95\x5f\x6e\x95\x41\x1d\x6a\x6a\x27\x95\x16\xd8\x49\xa5\x19\x3e\x0a\xb3\x20\x89\xa9\xaf\x52\x46\xb3\x4e\x76\xe1\x6e\x47\x69\x30\xdc\x6d\xc8\xe4\x16\xdb\x49\x2f\x0a\x5f\x2d\xec\xac\xe2\x2e\x7b\x4f\xf1\xe0\x93\xef\x5c\xbf\x43\x1e\x48\xb4\xbc\x7c\xcc\x3f\x08\x97\xad\x59\xe1\x8a\x28\x4c\xd8\x71\x22\x5b\xe2\xeb\xce\x0e\x1f\x2d\x85\xe9\xc3\xaa\x7b\xfb\x4f\xc1\x1c\xe9\xea\xf6\xe5\x29\x47\xb0\xce\x3d\x0c\xa1\xf6\x6d\xf9\xbf\xc2\xbe\x92\xea\x58\x69\xc2\x60\x3e\xbe\x8f\xc5\xe3\x57\xd0\x12\xa1\x34\xf2\xa6\x62\xf1\xbc\xa0\xbe\xcb\xd8\xa4\x5b\x7d\xa1\x0d\x2c\x83\x08\x40\x36\x4f\xd5\x7c\x1b\x37\x0a\xf8\x06\xdf\xd1\x05\x56\x7b\x05\x76\x7d\xab\x89\x7e\x67\x5c\x64\x43\x31\xf3\x52\x27\x52\x32\x88\x67\xd5\x8e\x5c\x4a\x0b\x22\x6b\xb6\x34\x9d\x88\x0e\x3d\xa0\x06\x92\xd5\x96\x26\x14\x51\xc1\xd1\x26\x21\x08\x3e\x91\x39\x47\x48\xa8\xaf\x30\x15\x2c\xdf\xd4\x38\xa8\xf6\xbf\x40\x30\x35\xe6\x2b\x04\x16\x09\xec\x21\x7c\xdd\x64\x0c\x21\xfe\x4f\xa6\x0d\x30\x18\x4c\x75\xf1\xf5\xb4\x41\xf8\x3f\x2f\xe3\x46\x4a\x50\x24\x68\x2a\x5f\xcc\xd7\x6a\x40\xbf\x97\xe4\x43\x9b\xf2\xd0\xb3\xf0\x96\x57\x8e\x7c\xb9\x90\xf0\x45\xeb\x7e\x20\xce\x8c\xc6\x8e\xe4\x08\xff\xc8\x33\xf7\x7c\x33\x15\xd6\x9f\x51\x48\x43\xbf\x2e\x69\x63\xfc\xb4\xc6\x26\x29\xaa\xc9\x13\x9a\x70\x2f\x4f\x48\x37\x52\xea\xb3\xaa\x69\x81\x9c\x0c\xf6\x82\x4b\x54\x42\xe2\xd8\xf0\x94\x8a\xcc\x2e\x15\x91\xeb\x79\xf2\x90\x06\x5e\xe6\x27\x36\x5c\x10\xb9\x42\x58\x3f\x4f\x30\x71\x51\x11\x4c\x5c\x6c\xd2\x2b\x1c\xda\xfe\x40\xb8\x30\x15\xd7\x9c\x23\x9e\xab\xd4\xf7\x47\x66\xf5\x91\xf2\x61\xe3\xdf\x1e\xeb\xaa\xa5\x46\xc6\xae\xf8\xe6\x45\xb0\x76\x2b\x35\xcf\x71\x64\x20\x5e\xcb\x4c\x87\x18\x0b\x73\x52\xfd\xe5\xd3\x76\x3c\xb6\x9e\xd3\xfd\x22\xcc\xb6\x63\x47\xf4\x2f\x71\xdc\x4c\x49\x1a\x0e\xc2\xd8\xe4\x28\xb6\x08\xfb\x00\xb3\xbc\x62\x57\x6c\x41\x3b\x1f\xc7\xfb\xb2\x4a\xae\x7b\x49\x72\x30\x23\x00\x27\x47\x01\xf0\x2d\xa2\x3a\xde\x12\x42\x69\x79\x3b\x61\x29\x22\xcb\x21\x42\xe5\xbe\xb9\x95\xad\x46\xcb\xa1\x69\x79\x08\xd6\x9f\x4c\x34\x09\x70\x53\xf5\x6e\xc9\xa4\x76\x8b\xe2\x6f\xf9\xd3\x89\x17\x16\xe3\x1c\x9a\xc7\x11\x3a\xfe\x51\x02\xf8\x0d\xdb\xb3\xa6\x50\xa1\x60\x1b\xda\x3b\xc7\x21\x36\xf8\x06\xf9\x5a\x0d\xaa\x26\x45\x1e\x24\x23\xbb\xa5\xf5\xfc\xbc\x73\x24\x15\xd5\xc9\x72\xc9\x15\x27\xd9\xfa\x0d\x7a\x70\xdc\x20\xd5\x02\x02\x36\x7d\xac\x7c\x21\xe5\x74\xff\x70\x67\xd7\x63\xa7\xff\xd1\xcf\x75\x3d\x73\xce\x31\x2d\xf4\xb5\x6d\xea\xcb\x17\xf7\x19\x8e\x27\x83\xd0\x2d\x47\xca\xb1\x1d\x33\xbb\x74\x7e\xfe\x93\xa7\xba\x0a\xb5\xbb\x4e\x6e\x46\xa8\xf7\x7d\x7b\xfe\x6f\x4d\x55\x35\xec\x3e\xb5\x4a\x14\xd2\x7f\x51\x0b\xe7\xbc\x24\xb4\x82\xb5\xa8\x86\xdc\x71\x9a\x16\x63\x16\x80\x10\x90\x6c\xf9\x31\x82\x9e\xf5\x63\xa1\x26\x00\x08\x00\x3b\x92\x03\x18\xbe\x71\x64\xe2\x41\x12\x2f\xa5\x49\x2c\x2e\xde\xb5\x56\xca\x15\xe1\x1b\xb5\xa2\xc5\x52\x88\x1c\x94\x4f\x8c\xa2\xd1\xdd\xdc\x55\x69\xf6\xed\x32\x86\xf4\xdc\xb9\x79\x5a\x94\xa9\xa7\x2b\xe2\xc2\xb8\x7e\x03\xe5\x32\xbe\xd9\xc0\x03\x60\xf4\xb0\xd3\xef\xd3\xe6\x12\x12\x62\x81\x24\xdb\x38\x0f\xf3\xc8\x73\xc3\x83\xb5\x61\x13\xed\x2a\xbe\x9e\x4a\x9c\x16\x99\x9e\xc9\x73\x2a\x29\xe0\x69\x9e\x56\x02\xcc\xc7\xf5\x1c\xf7\x0d\x05\x17\xe8\x11\xa5\x39\xd4\x1c\x79\x5c\x54\x8f\x71\xfe\x80\xa2\x02\x91\x84\x57\x29\xb0\xed\xf7\x89\x18\x00\x78\xcf\x77\x3a\xca\xc5\xb7\xba\x3e\xab\xbb\xa0\xea\x6b\xa7\xe9\xbd\x24\x82\x97\xf9\xaf\xe4\xb5\x24\xb6\x7d\x3b\x8e\xac\x54\xf4\xd6\xa9\x8c\xbd\x7e\xbc\x4c\x60\x71\xa8\xc3\x41\x1c\x2e\x85\x81\x97\x52\x14\x36\xb9\xf2\x83\x64\x58\xa7\x29\x48\xa2\x81\x79\xee\xbf\x2a\x00\xdb\xa2\x03\xb0\x35\x94\x2d\x86\x26\xed\xf7\xc3\x0c\x1b\x4b\x62\x90\x96\x53\xbb\x6d\x94\x4f\xc8\x22\x13\xc6\xb3\x4a\xfa\x93\xb7\xbc\xa8\x1e\xfa\x9e\xfa\xb5\x89\x92\xe0\xf9\xc7\x2e\x3d\x1b\x87\x59\x9e\x44\x1c\x65\xbb\x83\xef\xf1\x4b\x8d\x32\x5c\x4b\xd6\xa4\x33\xba\xe9\x3e\xf1\xbc\xf4\x6f\xc3\x72\x61\x0e\xe1\x9a\xd2\xaf\x64\x3a\x84\x9d\xda\xde\x2b\xda\xc3\x7c\xa2\x25\xaa\xdf\x53\x68\xf0\x13\x9a\x95\xed\x0a\xc5\xec\x4e\xd8\x50\x3b\x43\x00\x4f\x50\x3e\x9b\x62\x04\x5a\x48\xcb\xd4\x89\x7e\x80\xef\x07\x8b\x76\x9e\x8c\x85\x2a\x03\x4a\xd9\xee\x62\xc7\x33\x80\x1e\xef\xf8\xfd\x76\x03\x5e\x42\x88\x42\x4a\x43\x87\xfd\x76\xa7\x86\xc6\x04\x98\xaa\x0c\x81\x00\x39\x28\xbd\x24\xc0\xcb\x17\x94\x9c\xde\x85\x86\x60\xf0\xd9\xf2\x22\xb3\x33\xf4\x12\x44\x1b\x77\x68\xa5\x2a\x32\xa3\x5c\xde\x51\x6c\x08\x3c\xbb\xcf\x5d\x6b\x64\x82\xb7\x3b\x4a\xea\xf4\xb6\x02\xa1\xa6\xa6\x8c\xa0\x66\x35\x80\x78\xe2\x47\xee\x4f\xe2\x65\xd8\xe2\x7f\x4e\xa1\xb3\xb0\x8f\xf9\x9d\xc3\x1d\x1d\x4f\xda\xcd\x83\x93\x7c\x53\x49\x5f\xa2\xa2\x87\xbf\xe4\x89\x92\x8e\x6a\xfc\x9f\x6d\xde\xd9\xc5\x08\xc4\x19\xac\x71\x43\x2b\x20\x7a\x37\xf5\x62\x49\x7b\x29\x35\x71\x30\x0c\x33\x0b\x28\x24\xe0\x55\x90\x9f\xe0\x6b\xc5\x3e\x1b\x3c\xd3\xd2\xb8\x41\xc5\x70\x70\x41\x15\x6d\x52\x3b\x4a\x48\x9b\xa7\xdc\x73\x38\x39\x0f\x90\x86\xf0\x4d\xed\x18\xef\xde\xdd\x2e\xe2\x25\x13\xa6\x5c\xcf\x43\x42\x8d\x2c\x8c\xaf\x6b\x9e\x67\x7e\xbf\x74\x5e\x67\x54\xfa\x70\x4b\x81\x15\x8f\x28\xb0\xe2\x05\xf5\xc0\x23\x53\xc4\xc1\x90\xa3\x60\x9e\xaf\x24\x62\xca\x4a\xfd\x84\xd5\x57\x3a\x62\xd5\xca\xf0\x3f\x46\x06\x91\xcd\x2a\x68\xd2\xb6\xae\x3e\x81\x95\x52\x07\x13\x0a\x09\x10\x45\xfc\xe0\x92\x39\x54\x7e\xe9\xf2\xef\x84\x99\x7c\xc6\xeb\x8f\x30\xac\x12\x63\x8c\x5b\x6a\xb2\x1c\x14\x82\x86\x83\x61\x9e\xb5\x5a\xbb\x77\xfb\xe1\xba\xf2\xdd\xf8\xa6\xe3\x1f\x45\x2f\xc9\xf3\x48\xc2\x55\x19\x90\x2a\x7f\xb6\x54\x8e\xdd\xb8\xd0\xd2\x60\x68\x38\x12\x46\x1c\xca\xfd\x6e\xbe\xa9\xe5\xe1\xbb\x77\xb7\xa3\x44\x12\x1b\xa1\x89\x23\x1b\xc1\x37\x93\x2f\x54\x6a\x19\xb1\x28\xe5\x64\x6a\xac\xeb\xa2\x1a\xeb\xaa\x2a\x48\x58\x93\x3e\xe1\xad\xdc\x0d\x05\x9d\xfd\x57\x38\x63\x08\x48\x36\x75\x95\x36\xc9\x49\x2d\x8b\x78\x59\xa5\xd2\xe7\xd4\xb0\xd3\xe5\x89\x9a\x9e\x79\x0f\xfe\x1e\x55\xa6\xeb\x64\x23\x65\x16\x9d\x9e\x30\x5a\x7e\x5b\x69\x74\x0b\x15\xdf\xfb\x88\xf5\xf0\x19\x67\x68\xf4\x96\xd5\xf7\xa6\x7e\x9a\x6f\xf5\x49\xa2\xcf\x74\xe7\xb4\x34\x84\xb0\x7d\xb7\xa8\x73\x04\x1b\xf6\x28\x6f\x1c\x8e\xd2\x6a\x87\xa2\xcc\x04\x23\x33\x70\x4c\x38\x70\x1a\x00\x88\xf0\x75\x93\xdc\x37\x94\xcd\x89\xde\xc8\x61\x34\xae\x2b\x62\xc9\xeb\x8d\xbe\x69\x58\x80\xa9\xd5\x4f\x8a\xd0\xca\x60\x82\x15\x69\x78\x45\xc8\x4e\xc6\x51\x64\xff\x64\xc3\xa4\xc8\xf9\x5c\xa0\xb8\xcd\xda\xc1\xce\x8d\x7b\x9a\x80\x4f\x27\x1a\xc9\xfe\x54\xad\xec\xfd\xe5\x32\x16\x40\xe5\x5b\xca\x79\xf4\xcc\xb0\xe8\x7f\xd3\xf1\x68\x99\xcb\x1d\x35\x3e\xf6\xbb\x70\x78\x7c\x43\x0b\xed\xf8\xb9\x5c\x35\xe7\xad\x89\xca\x57\xea\x02\x29\x80\x56\x06\x36\xcb\x1c\xa8\x4f\x94\xb7\x3c\xea\xe9\x42\x47\xcf\x3a\xf5\x19\x19\x23\xc1\xbe\xef\x52\x41\xa5\x18\x3b\xed\xd8\xa4\xa2\x1c\x1d\x85\x14\x1c\xf9\x01\x25\xf8\x74\xbe\xf6\x03\x8e\x45\xbf\xef\x32\x6f\x57\x30\x54\xd5\xc3\x5a\xa9\x69\x61\xc1\x75\xab\x5a\x2a\x01\xab\x60\xc1\x1a\xd0\x17\x7b\xda\x2b\x34\x1f\x43\xdf\x08\xa5\x37\x70\x88\xf1\xb5\x82\xab\x67\xd6\x30\x3f\x27\x8e\x20\xa2\x25\xd4\x53\xee\x2a\x65\xb0\x63\x6a\xc8\xcc\x2e\xdb\x74\x35\xa7\xae\xb5\x87\xbb\x69\x44\x0f\xc6\xfd\xb0\x3d\x4e\x61\xea\x42\x20\x2b\xbe\xed\x15\x14\x79\xf6\x70\xf9\x7a\x1c\x45\xc6\x80\x31\xb7\x14\x45\x1b\x30\xbb\x57\x71\xc4\x85\x9e\xd1\x37\xc4\xf8\xb8\xbb\x62\x58\x79\x92\xf9\x25\xf4\x63\xb1\xa9\x6f\x6b\x8a\x71\x2e\x86\x09\xc9\x91\x2f\xcf\xe7\x79\x24\x9e\x07\x71\xf8\x75\x85\x56\x61\x86\x44\xb8\xae\x9f\x34\x89\x18\xe5\x69\x38\x18\x78\x26\x4d\xe6\x7b\xc4\xcb\x84\xfc\xb1\x41\x55\x3b\x0c\x84\x60\x42\x08\x0f\x5a\x4a\x27\xa0\x01\xd0\x18\x24\xa3\xcc\xe4\x0c\x10\xe3\x03\xa4\xe1\x1b\x7f\xd3\x00\x10\xdb\xd3\x0e\x92\x6c\x64\xf3\x30\x10\x64\x19\x76\xc1\x71\x3d\xcf\x7a\xdc\xe5\x6b\x66\x64\xe3\xfe\x48\x1a\xb4\xe8\x7c\x68\x48\x1b\x2f\x21\xc7\x91\x4d\x62\xfe\xe3\x30\x4a\x90\x30\x01\xac\x82\x3e\x34\x5f\xbb\x35\x47\x3f\x97\x23\x27\x3c\xc3\x35\x8d\x4a\x5e\x6b\x9a\xec\xc9\x56\x47\xe3\x32\x64\x93\xaa\x9d\xc0\xe2\xfc\xe0\xde\x89\x86\x96\xfa\xb3\x80\xf8\xb4\x94\x3f\x83\x0f\x91\x2c\xfa\xf3\x3e\x7a\x0c\x33\xd3\x5f\x36\x71\x6e\x78\x98\x04\x5b\xe5\x3e\xf6\x20\xdf\xa8\x89\x43\x1a\x78\x4b\x62\x9b\xae\xb6\x94\x02\xda\x9a\xaa\x8d\xae\x4d\x9e\x52\xcd\x9d\x38\x4f\xc3\x5e\x01\xe5\xb0\xd2\x0d\x21\x37\xe3\x8a\x11\xdf\x74\x3c\x89\xe9\x45\x35\xb4\x7e\xd1\xd9\x91\x83\x14\x74\xb2\x7b\x87\x4d\x3f\xae\x18\x0a\x3c\x44\x20\xb3\x81\x29\x82\x02\xb5\x33\xc0\x49\x7e\x8a\xc7\xc7\x37\x0a\x7b\x9b\x15\xd9\x38\x0c\xc2\xa4\x90\x5d\xe2\x80\x50\x7e\x08\xf0\xc2\x67\x72\x78\x05\x91\x49\x03\x66\xd9\x12\xb3\x47\x1f\x24\xf6\xb0\x41\xf4\x2c\x0b\xf9\x27\x08\xff\xaf\xef\xfe\x9c\xe9\x78\x61\x8c\xf0\x50\xc4\xdf\x08\x87\xfb\xba\x66\xe1\xbf\xae\xc2\xd9\x5e\xae\x06\x38\xa1\xa1\xcf\xd7\x6e\xe5\x96\x49\xc8\x8b\x13\x3d\x84\x92\x33\xf0\xf4\x7c\x53\x83\x3e\xef\x7f\x81\x48\x62\x01\x16\xc0\x03\xba\xa1\x02\xd9\xb3\x6a\xac\xee\xa8\x9b\x43\x18\x86\x51\x84\xd0\x1a\xee\xe2\xd3\x8e\x1e\xbb\xfc\x54\xb5\x02\xfa\x36\x32\xab\x4e\xad\x10\xce\xfa\x8f\x61\x37\xf8\xa6\xa9\x9b\x3b\xb0\xb1\x8d\x73\xcb\xf0\x3a\xe1\xf7\x51\x90\xbc\xb7\xd5\xe8\x7b\x91\xd9\xec\x21\xaf\xf2\x74\x8e\x4c\xab\x00\x9c\x54\xbc\x75\xa1\xa3\x2a\xc2\x37\x2a\x44\xa6\xf4\x7d\x10\x3d\x7d\x84\xa8\x0c\x27\xe1\x7a\xc7\xf3\xfc\x5f\x57\x40\xfc\xe3\xaa\x26\x67\x22\x0b\x90\x9c\x9b\xfd\xf2\xa8\xc4\x3a\x68\xbb\xcc\x79\x02\x93\x06\xa0\xbf\x94\x19\x3f\xf2\x0c\xc8\x3d\x0f\x4f\x3c\x00\x6c\x73\x4d\xbb\xf6\xc0\xdc\xa2\xc4\xb1\x7b\xf7\x38\x6f\xa7\x3c\x5f\x6d\x96\x14\x6d\xee\xd4\x66\x63\x93\x65\x02\xcd\x6b\x0a\x67\x1f\x75\x87\xcf\x4b\x04\x20\xd2\x64\x92\x0b\xbe\x69\xb0\x3f\xed\x28\x1c\xd1\xbc\xfa\xde\xb9\xaa\xd4\x30\xdf\x28\x94\x0b\xea\x03\x48\x48\x59\xd6\x41\xc9\xba\x5c\xf4\xfa\x89\xff\x25\x4b\xe0\x8a\xf6\x83\x62\x06\x89\xc3\x19\x54\x01\x70\xf6\xbe\x47\x0f\x06\x81\x1b\x4b\xce\x23\x4b\x3a\xa1\x2b\xb7\x43\x6b\x19\xb0\x26\x9e\x5a\x23\x4d\x9d\x45\x29\x9e\xc9\x9e\xc9\x9e\x49\x9f\x99\xa9\x22\x19\x9c\xe7\xe7\x53\x0f\x43\x74\xa7\x23\x95\xb4\x2c\x59\xb6\xa9\x0d\x07\x71\xce\x43\xa9\x8e\xef\xc5\xbd\x12\xc5\x5a\x6e\xe4\xd4\x05\xf0\x77\xb7\x07\x26\x4b\xa2\x30\xc6\x0c\x51\xd3\x5c\xed\x93\x6e\x15\x55\x72\x37\xeb\x25\x7c\xa1\x21\x84\x35\x7f\x43\x4d\x2c\xbc\x31\xf1\x83\xef\xc7\x14\x14\xb1\xb4\x69\x02\x73\xc3\x09\xff\xb6\x6e\x3c\x7c\x5b\x1d\xe3\x71\x12\x85\x41\xc8\xa2\xf0\xf0\xdf\x60\x56\x45\xf0\xf4\x76\xc7\x5b\x0f\xd6\x0e\x46\x51\x12\xfa\x8b\x82\x71\x51\x4d\xb4\xd3\x93\x4a\x4d\x82\xce\x1c\xe2\xac\xff\xaa\x16\x48\x94\x01\x7f\xb2\xc2\x01\xa2\x90\x51\x2a\x62\x4a\x85\x9d\xe9\x17\xa3\x5e\xcb\x87\xcf\xa0\xaa\x96\x62\xc4\x4e\xed\xd5\xd2\xbc\xb4\x93\x2d\x47\xa5\x75\xa2\xe3\x43\xb5\x13\x2a\x16\x34\x59\x16\x66\x79\x19\xfe\x92\x85\x04\x39\xee\x27\xf4\xbe\xf8\xbe\x60\x51\x12\x2c\x63\x93\x00\x58\x64\x46\x78\x31\xd2\x20\x90\x82\xc3\x8e\xa1\xd0\x2f\x60\x5e\x05\x0a\x8c\xf3\x74\x95\xce\xb8\x53\x9c\x50\x20\x15\xff\x7b\x87\x36\x8a\x5a\x4a\x09\x12\xcf\x4f\x64\x21\x7d\x6b\x73\x90\xc4\x68\xb8\xb9\xf8\xfa\x45\x17\x6b\x2b\xc0\x77\x6c\x57\x46\x26\x6e\x79\x3d\x55\x26\xe8\x14\x9e\x58\x29\x09\x40\xcf\x52\xf5\xa1\xd6\x54\x1f\xaa\x8e\x98\x58\x5c\x6c\x2f\xa5\x36\x2e\xcd\xb9\xb3\x6d\x7f\x50\x21\xe5\xaf\xd4\xae\xc7\x91\x7d\xdc\x27\xdd\xa0\x97\x44\xba\xf2\xad\x89\x1a\x3a\xe7\x5a\x2b\x10\xee\xb3\x90\x16\x42\x14\xdc\xea\x6a\x9d\x2e\x4e\xa1\x1d\xa5\xad\xee\x4a\x79\x68\xce\x2c\xe9\x6c\xa1\xd5\x70\x83\xb6\x33\x8e\x2a\x54\x63\x9c\x96\x7f\xb9\x83\x61\x5d\xae\x6a\x1c\xcd\x09\xa5\x9a\x7c\x4a\xd7\xfe\x9b\x28\x59\xdb\x83\xc2\xa4\x4c\xf4\xa3\x29\x99\x05\xeb\x24\xab\x6c\xd2\x41\x61\xb7\xaa\x18\x9b\xe7\x8a\x9d\x04\x96\xa3\x1c\xc1\x5c\xa8\x60\x8c\xca\x2f\xcf\x96\xab\xe3\x21\xac\xef\xd5\x62\x9b\xf2\x5c\x15\x31\x33\x65\x4a\x76\x00\xa0\xc4\x25\x35\xa1\x7b\xb7\xa3\xdc\x75\x9d\x11\xea\xc0\x5c\x7b\x90\x86\x23\x6c\x2f\xa7\x5a\xe5\x15\xac\x2a\x05\x42\x9b\x9b\x59\x15\x10\x33\x1d\x1f\xdf\xc0\x3f\xe3\x65\xe7\xf0\xa1\x7c\xa3\x5a\xa0\xbf\xf4\xb5\xc5\xf9\x5f\xfa\x79\x3d\x8c\xae\x0a\x8e\xb7\x90\x8b\xc1\xaa\x1c\xee\xa8\x0d\xba\xa5\xdb\xda\xbd\x9b\x97\x71\xd3\xb4\xdc\x03\xc8\xa9\xf1\xa8\x65\x4a\x93\x76\x17\x6c\xfb\x25\xcc\x4a\xe3\xab\x7d\x9f\x7a\x0b\x78\xdb\x37\x30\xcf\xc7\xc9\x02\x33\xe3\xe3\xcf\xb6\x4e\x55\xae\xc3\x60\x36\x7c\xe4\xf7\x55\xb5\xfd\x8e\x9e\xe0\xd9\x01\x7a\x4f\x09\x2b\xca\x47\x0a\x8f\x77\x5a\x09\x4f\xed\xea\xce\xec\xfb\xad\xe7\x39\xc3\xf8\x0e\x2d\xae\x68\x31\xb4\xdc\xc0\xff\xb5\x4e\xeb\x6b\xbf\xc9\x25\xe0\x19\xe6\x7c\x43\x65\xf7\x96\x16\x4e\xfa\x04\x15\x21\xd7\x2d\xdb\x33\xbf\x5f\xcd\x9e\xbc\x20\xd8\xda\x0b\xba\xaa\x78\x0b\x01\x8a\xfc\xe4\xd6\x6f\x7c\x9d\x4b\xfb\x77\x14\x0d\x36\x0d\xfe\x65\x60\x6b\x52\xa0\x69\x8f\x1c\x2a\x7f\x9b\x0b\xa5\x9e\x5b\x74\x21\x96\xc4\xae\xfd\x22\x75\xc0\x60\x3c\xf7\x3b\x8a\x96\xe7\x4e\x03\x42\x69\x5f\x3b\x8c\x45\x04\x67\x8f\x53\x62\xf7\xc7\xe2\x48\x53\x47\xfc\x4b\xf3\xcf\x3d\xfb\xdc\xfe\x7d\xa0\x8f\x81\x21\xd8\x46\x73\xcf\x18\x8f\xdd\x46\xa5\xd5\x0a\x4b\x80\x43\x42\xee\x66\xbd\xbc\xff\xe2\x6f\x75\xe5\x4b\x9b\xf8\x10\xa5\x14\xea\x59\xc3\x56\xf3\x75\x13\xfb\xee\xd0\x1a\xaf\xf3\x83\x7c\x00\x4a\x43\x7c\xed\xde\xdc\x8e\xc3\x2c\xe9\xdb\x19\x45\x2d\x70\x4a\x39\xd4\xdb\xd4\xbe\x40\x2b\x63\x4d\xd3\xf9\x0f\xad\x19\x5b\xee\xdd\x08\x8f\x4d\xa5\x1f\xe9\x8b\x3e\x47\xd4\x48\x5c\xd2\x43\x9f\x91\x59\x50\x85\x65\xf3\x9a\xd2\x20\xbe\xa6\x9c\x45\x30\x0c\x3d\x3b\x28\x1c\xe7\x79\x35\xb1\xc4\x84\xa8\x38\x5a\x47\x55\xfc\x76\x88\x05\xd1\xdd\x64\xf8\xde\x39\x17\x3b\x7b\x0f\x58\xe6\x91\xb6\x55\xa3\x1e\x95\x26\xe3\xe9\x86\xb1\xf6\x45\xcf\x8f\xc3\xf1\x2b\x4f\xe0\xd2\x47\xc8\x34\xae\xaf\x36\xe7\x09\xe4\x5b\x5a\xca\xf0\xbd\x01\x13\xcf\x37\x1d\x5f\x47\x1a\x99\x30\xda\xe6\x87\xea\xfe\x35\xfe\x0e\xed\x4f\xe6\xcd\xe4\x1b\xc8\x58\x08\x6b\xac\x1f\x63\x3e\x4f\xae\x47\x98\x65\x55\xdd\xfd\x62\x67\x3b\xff\x06\x66\x9f\x65\x75\x5d\xda\xfd\xa2\xb4\x2b\x84\x6e\x51\x98\x63\x6a\x06\xff\x70\xaf\xe3\xbb\x9e\x17\xd5\xea\x23\x29\x90\xba\xaf\x1a\x08\x39\xd7\x34\x48\x16\x15\xaf\x25\x31\x2f\xb6\xc0\x13\xe9\x35\x52\xd0\x6c\xa0\xc3\x09\xe3\xe5\x24\x5a\xf6\xcd\x63\x34\x31\xce\xa8\x86\xc6\x99\xc9\x17\x15\x8d\x5c\x60\xc6\x61\x6e\xa2\xf0\x35\x16\xa0\x2f\x2d\x8a\x23\x06\x72\xfd\xcf\x6b\xb0\x55\xd2\xcd\xac\x77\x80\x5e\x22\xd6\x90\xac\x48\x6d\x3a\xa3\x09\x30\x54\x2c\x80\x44\x5b\x8a\xfc\x0d\x25\xc7\xb1\x59\x4d\x93\x48\xfa\xa1\x2e\xf5\xf0\x69\x88\xaa\x1f\x0e\x92\x55\x33\xa3\x5c\xd6\x4d\x4e\x75\x39\x22\xd0\x51\x4c\x6b\xea\xc3\xc6\x5e\x91\xf6\x6d\x9c\x25\x23\xab\x33\x5f\xd4\x35\xa5\x27\x28\xc7\x3c\x4f\x93\x71\x18\x08\xa8\x1c\xde\x63\x2b\x3a\x05\xe8\x84\xdd\xac\xb4\xd7\x9b\x5a\x4b\x4b\xe1\xa0\x48\xa5\xd1\x23\x1c\x46\xf4\x0e\x8e\x89\xcf\x01\x9b\xef\x4e\x7c\xa7\xe2\x3b\xb5\x37\x7b\x71\xef\x5c\x7b\x64\x73\x23\xab\x23\x7a\x07\x2d\x47\xb4\x7a\x6e\xe2\xa1\x0f\xa4\x14\x9f\xe5\xc4\xbf\x8c\x87\x2e\x0c\x4c\xc2\xbe\x53\xbe\x0e\x80\x81\x9d\xf5\x3e\xb5\x18\x18\x47\x58\x39\x34\x29\x32\x63\xf4\xb6\x76\x74\x3d\x2a\x9d\x27\x54\x04\xb7\xfc\xb8\x1a\xa0\x19\xdb\x20\xcf\x48\xaa\x0e\xd5\xf4\xbf\x51\x3a\x3a\x97\x10\x33\xa1\x50\x72\x5e\x69\xea\x3e\x0a\x24\x33\x4e\xc5\x1d\x3c\x47\xd4\x3c\x1e\xad\x88\x0a\x44\x11\x3f\x7f\x20\x22\x4e\x53\x78\x85\x73\x71\x57\xeb\x8d\xd5\x21\xb4\x94\x7a\xdb\xd1\x38\x07\x10\x12\x28\x0f\xcc\x68\xf2\x75\x33\x28\x7d\x6c\x78\x72\xa5\xa9\x53\xbf\x51\x26\xfc\x17\xda\xb1\xc5\x5f\xe3\xcb\xbf\xde\xf1\x10\xdf\xd7\xeb\x13\xf6\x07\xe6\x9e\x55\xf2\xd5\x1f\x2b\xf9\xea\x8f\x5d\x73\xc4\x1e\xca\xa9\x3c\xba\x28\x28\x95\x99\xae\x9f\x1b\xb8\x8f\x93\x26\x2d\xcb\x87\x42\x82\xaf\xff\x72\x3b\xfa\xff\xd1\xff\x47\xc0\x70\x0d\x21\x0e\xac\xe8\x15\x0a\x52\x30\x5a\xb1\x63\xea\x33\xae\x87\x81\x50\x47\x8c\xf2\xaf\x10\x2b\x20\x49\x5d\x23\x9a\x73\xec\x7d\x5e\x63\x14\xaa\xcf\x76\x5a\xcf\xcf\xbb\x66\x20\x36\x1a\x65\x5e\xff\xe9\x17\xa6\x4a\x00\x6a\xb6\x4b\x91\x8c\x28\xeb\x52\x8c\xe3\x46\x8d\xca\xa8\x0e\x21\xde\x63\xc0\x20\xe1\x2b\x7f\x4e\xfd\xc6\x4d\xdd\xd6\xd3\x4f\x3b\x79\xc7\xd2\xc0\xa2\x4c\xf0\xa1\x52\x0b\xbb\xdb\xf1\x48\xb9\x3f\x87\x33\x60\xd5\x4d\x62\x53\x17\x78\x9d\x22\xe5\xfd\x77\xa6\x14\x38\x8a\x36\xa2\x17\xd5\xbb\xf5\x24\xe5\x1e\xa8\x60\xdc\xa3\xd8\x48\x26\x4a\x1f\x53\x14\x3d\xe9\xc0\xa6\x40\x3f\xa3\xf5\xfe\x2e\xf2\x1a\x17\x95\xb9\x44\xf2\xa2\x42\x1e\xfc\x31\xbd\x9d\xf8\x04\xcf\x82\xfa\xf1\x35\x57\x10\xcf\x6d\x96\x87\xa3\x24\x5e\xdd\xe6\x25\x84\x4e\xe9\x1e\x3f\x98\xa8\x75\x73\x0a\xcb\x3c\xf5\x34\xf5\xff\x60\x57\xb7\xf5\x6b\x2f\xae\x9f\xd3\xf4\xde\x17\x95\xf8\x6f\x52\xa4\x3b\x7d\xcb\xe4\x9b\xf4\x42\xbc\xc7\xba\xae\x14\x6d\x9e\xaa\x27\x72\x94\xf6\x8d\x14\x89\x2a\x0d\x79\x5a\x3b\x66\xb0\xa2\x2f\x84\x70\xf6\x12\x79\x58\x3c\xdc\x77\x26\x0a\x2c\xb8\xa9\xab\x70\xd4\x17\x35\x6d\xe5\x35\x98\x07\x9c\xed\x2b\x88\x8d\xc5\xc3\x97\x2b\x87\xb3\xc1\xb3\xf5\xfc\x25\xbb\x5e\x4b\xf0\x66\x23\x75\x14\xe3\xe6\xb1\x3f\xdd\xd7\xf1\xc5\xec\x77\x14\x92\x3b\x2a\xb2\x47\xcb\xa7\x2f\x8a\x37\x8a\x89\x61\x3a\xf1\x34\x36\xa7\x74\xa3\xfe\xd1\xa9\x0e\xba\x4e\x28\x92\x7b\x1e\x3b\x65\x95\x4e\xd2\xba\x26\x53\xf5\xef\xb5\xb1\xd7\xe5\xe9\x7a\x71\xad\x19\xa0\xce\x90\x2f\x3e\x3a\xf5\x65\x8a\xdb\xaa\x0d\xb9\xa5\xfb\xa4\xae\xf1\x07\x36\xa6\xda\xd3\x56\x7c\x0d\xf4\xa1\x6e\x76\x54\x96\x81\xb8\x87\xaf\x3b\x4a\x13\xe9\x26\xbc\x92\xa8\xac\x2b\xf4\xe4\xa6\xa9\x5f\x94\x7e\x38\x9e\xf1\x3e\xfc\x16\x72\x41\x47\xe9\xaf\x66\xf5\x1c\x55\x67\x31\x88\xc2\x83\x56\x31\x66\x5e\x57\xa9\xaf\xa6\x65\x0b\x92\x28\x49\x39\x5e\x77\xfd\x08\x17\xd6\x1d\x57\x83\x7c\xfd\x64\x44\xb0\x53\x9a\x55\xc1\x53\x58\xc3\x06\xe1\x9b\x8e\x22\x7a\xe2\xa1\x26\xbe\x51\xd5\xe9\xac\x08\x86\x84\xa1\x14\x9a\xd4\x96\x62\xe1\x53\xac\x02\xff\x87\xc6\xfb\x9c\xd5\x00\xa4\x9f\x74\xaa\x4f\x9b\x4e\x3d\x92\xdf\xff\x13\x5f\x81\x69\x72\xb0\x77\xb0\x34\xa8\x36\x22\x2e\xb9\xad\xb5\x1b\x76\xd2\xf3\x5e\xbf\x45\xa6\x0c\x26\xf6\xb1\xa9\x97\x0b\xff\x33\x4a\x3b\x91\x1b\xfc\x77\xca\xfc\x64\xc9\x4a\xc8\xcc\x49\x22\x3b\xef\xf1\x37\x27\x5d\x1d\x34\xb5\xe3\xc8\x04\xd0\xfc\xa0\x6f\x83\x0d\xcf\xaa\x01\x8c\xba\xf2\x9c\xcb\x7f\xef\xf1\xae\x1f\x29\x6f\x4d\x37\x86\x6a\xfb\x5f\x68\xaf\x0c\x93\x64\x4c\x8c\x8b\x6e\xca\xef\x36\x59\x5e\xc5\xb4\xf6\xac\xe3\x00\xd8\xd8\x4a\xd8\xf3\xc2\xbe\xf6\x38\x32\x71\xee\x67\xf6\x84\x5c\x5f\xd1\x6d\xfd\x08\xdb\x10\xa5\xbd\xfa\x08\x47\x79\xa2\x47\x49\xca\x48\x2d\x58\x9a\x1f\xe1\x69\x89\x7c\x15\xbd\xde\x0f\xac\xf8\x6e\x7b\x90\x98\x96\xef\x37\xbf\xa9\x78\x92\xdf\x6c\xaa\x92\x41\x30\xa7\xe5\x81\x95\xef\xe3\xad\xf9\x46\xa9\x86\x8d\x92\xbe\x8d\xa0\x55\xc5\x4f\x19\x24\xcc\x88\x80\xdf\xed\xf8\xb7\x98\x56\x21\xca\xbb\x34\x03\x8a\x19\xa4\xac\x72\x26\xaa\xc1\x5c\xe2\xe2\x1b\x65\xa7\x9e\xff\x8f\x7e\x6b\x46\x15\x87\x01\x71\x71\xfc\xff\xcf\x79\x52\x9f\x06\x0c\x74\x66\xa3\x68\xcb\x8c\xd7\x47\x39\xa9\x26\x2f\xbf\x39\xf1\x8a\x4b\x0f\xe8\x6c\x03\x0e\xca\x44\xcd\x28\xa9\x3d\x68\x4a\xe4\xfb\x36\x4f\x93\x10\xab\xc5\x4c\x31\xf8\xa9\x42\x1b\xb3\xb1\x25\xb7\xb0\xd0\xee\x15\xab\x7a\x5f\x9e\xab\x93\xa0\x63\xd1\xae\x91\x3b\x15\xaf\xef\xc7\x9c\x1c\xfc\x6c\xd6\x4f\xd3\xf0\x1e\x44\xc2\x7f\x53\x71\x00\x80\x05\x1a\x9b\xfb\xb4\x2a\x52\x9b\xd4\x8a\xf8\x31\x16\xed\x75\x3d\xc1\xf6\x7a\x9d\x63\x7a\x6f\xb9\x01\xe3\x30\x4f\x52\x2a\x23\xcb\xf3\xa6\x1f\x22\xb3\x05\x65\x60\x84\x08\xe2\xa8\x9a\x3a\x5d\x0e\x83\x3c\x1c\x65\xdb\xcb\x2f\x82\xc2\xce\x27\x1a\x26\x79\x51\x31\x5b\x9d\x55\x81\xc7\xbd\x8e\x6a\x07\xff\xb4\xa3\x10\xbb\x40\x67\x0b\x44\xd1\x27\xb7\xdb\x6a\x73\xc4\x5f\x69\x67\xc9\x92\xe1\x2c\xc2\x7d\x4b\x27\x88\x7c\xae\x76\x58\x17\x16\xda\xb9\x4d\xd3\x24\x95\xc1\x6d\x1c\x35\xcc\xcd\xf3\x75\x6d\x6d\xc0\x82\x92\x06\x6e\x86\x03\xf5\x8e\xcb\x4a\x38\xe6\xb4\x52\xa4\x7b\xc7\xb5\xb9\xec\xc8\xa6\x03\x46\xe6\x4b\x29\xa4\x5c\x5c\x89\x8e\x94\x94\xe5\x0d\xb2\x95\x22\x35\xd8\x72\x72\xe9\x57\xb5\xa0\x6b\x58\xe6\x41\xae\xf5\x2a\x9a\xf4\xde\x6a\x9d\xa9\xd8\x85\xd4\x70\xa5\x8c\x39\x53\xb0\x71\xa5\x15\x47\x4f\x48\xb3\xa9\x28\x46\x59\x41\x48\x87\x7d\x3b\x5b\x7e\x2d\xd6\x36\x57\xdc\xa2\x3f\x9d\x54\x4a\xc6\xe5\x8f\x92\x62\xd4\xc6\x25\x7f\xf9\xe5\x76\x38\x1a\xa7\x36\xcb\xa4\x62\x02\x07\x76\x9d\x96\x8c\xaf\x15\xba\xd7\xa4\x69\xb8\xcc\x80\x67\x44\x0c\x5c\xe5\xe1\x1b\xb7\xba\xa3\xf0\x50\x6e\x03\xe5\x8e\x79\x72\x8e\x6f\x9a\x8d\x84\x1d\xb5\xb4\x9c\x2d\x3d\x01\xd1\x09\xdd\x58\x08\x90\xbe\x7c\xb2\x94\x5b\x66\xa6\x77\xb0\xf4\xe7\x44\xea\x15\xed\x1f\xd8\x9c\x47\xbb\xad\x5f\x97\x30\x13\x81\x2b\xf6\xe1\xa6\x69\x45\x07\xd3\x2e\x15\x91\xfe\x16\x1d\x45\x1e\x73\x5e\x8d\x67\x85\x2c\xc0\x6e\x5b\x4a\xcf\xe3\x23\x25\xda\xfb\x51\xed\x37\x96\xce\x28\x66\xeb\xce\xf4\x0d\x1d\x4d\xe5\xe0\xb0\x69\xd6\x66\x66\x45\x11\x6d\xa1\xc3\x54\x11\x33\x65\x65\x1c\x85\x12\x5d\xb2\xd8\x82\x2d\x9f\x31\xbf\xaf\x66\xb7\xdf\xaf\xa5\x9a\x8b\x8b\x6d\x33\xb0\x71\xb0\xaa\x0c\xe8\x29\x6d\x40\x4f\x55\x71\x63\xf6\x21\x98\x2c\xec\xc5\x0f\x29\x2d\x82\xe5\xd8\xd6\x55\xd1\xd4\xe1\xca\xf0\xac\xc6\xd2\xdc\xec\xf8\xe1\xba\xbf\x51\x40\xa0\xcd\x53\x1f\xbf\x62\xc2\x8d\xc1\x87\x1b\xb3\xd7\xe7\x16\xdb\xfb\x5f\x68\x55\x88\xfd\x5a\xd5\x71\x6d\xcf\xe8\xfd\x9a\x55\x0a\xb0\x98\x68\xe0\xeb\xda\x40\xda\xcb\x2f\xb7\x97\xc3\x65\xd3\x2a\x7f\x10\x12\xa8\xdb\x78\xea\x7c\xa3\xa1\x70\xfd\x3e\x1f\x16\x94\xfd\xd9\x8b\xa0\xeb\x20\x2e\xa5\xa1\x3c\x13\x17\x69\x26\xe4\x45\xb0\x1d\x47\x94\x1d\x39\xd2\x28\xdb\x67\x4d\x96\xcf\x78\xda\x1f\x4e\xad\x10\xc4\xfd\x90\x36\x36\xce\xe7\xe5\x9a\x9f\xfb\xd5\x76\x36\x4e\xf2\x59\x5f\x79\x39\xa7\x39\x86\x98\xe6\x5f\xb6\x93\x07\x35\xd4\xc1\xbb\x54\x8d\x18\x99\x38\x34\x15\xd8\xc0\x44\x9b\xa4\x5d\x6a\xf8\x3d\xc6\x88\xca\x8c\x76\x4c\xf4\x4d\xb1\xc5\x8f\x29\xf2\xdb\x9b\x95\xb6\x50\x16\x24\x9c\x4b\xa0\xbc\xd3\x52\x65\x82\x37\x69\x4b\x60\x17\xb3\x42\xa9\x23\x89\xf3\xba\x46\xdf\xe8\xa8\x52\xfd\x35\xd5\x96\x88\xad\x49\x7b\xab\x2d\xdd\x90\xf2\x4d\x85\x77\xfc\x00\xbb\x89\x96\xcd\x00\xb5\x27\xe6\x86\xec\xf8\x4c\x17\xd3\xab\x52\x1c\xf4\x3f\xb9\x88\x83\xa1\x49\x73\x51\xed\x60\x5d\x00\xfa\x00\xd1\x08\x90\x53\xfd\x5a\x94\xe4\xab\x19\xc0\x01\xb0\x4e\x77\xa8\x91\x22\x73\x0d\x7e\x27\xdf\x56\x61\x5e\xaf\x48\x63\x86\x39\xf2\x9c\x5a\x47\xcf\xac\x6d\x3c\xd3\x7b\xe7\xda\x26\xc8\x5d\x6f\x01\x5d\x0c\x58\x19\xbe\xae\x34\x5a\x83\x22\x9a\x51\x95\x8b\xb3\x8a\x5b\xe9\x3a\xd5\x95\x81\xa6\x3e\xa2\x12\xf9\x83\x83\xde\x6c\x85\x5e\xa8\x46\x76\xcb\xff\xa0\xf3\xa1\xf3\xb5\x22\x2c\x50\x29\x2b\x26\x65\xf8\x01\xbc\x33\x8f\x7a\xf0\x4d\x43\x6a\xdd\x1e\xa7\x61\xb0\xe1\xe7\x6d\x56\x0d\x9b\xcd\x5d\x5f\xb8\x5d\x31\xe5\x4e\xf4\xcc\x1c\x6b\x9a\xf2\xf9\xf7\x39\xa7\x92\xa2\xf5\x2e\x95\x1f\xc6\x4b\x21\x84\xee\xe7\xf7\xbb\x9a\x66\xb9\x30\x7c\xdd\x84\x08\x24\x3a\x5f\x05\x14\xbf\xa9\xbc\xf6\xcd\x46\xf9\x4f\xcf\xc9\xa5\xa0\xf0\xe7\xd4\xc3\xf5\x15\xff\x7e\xba\x8a\x30\xc5\x89\xd1\xba\xbd\xfc\x64\xd7\xa3\x10\x31\x88\x89\x68\xec\x04\x65\x71\x80\x47\xac\x4d\x64\x90\x32\x1c\x8d\x6d\x3f\x1c\x89\x88\x3f\x4a\x1b\xd7\x55\x09\x50\xd3\x7f\x66\xc3\x24\xcd\x6d\xda\xa2\x7a\x19\x1e\xe3\x19\xc0\x97\xf9\x46\x75\x74\x7e\xfd\x6b\xf3\x0f\x63\x3d\x9d\x89\x29\x77\x05\x0c\xd7\x17\xe0\x1d\x2a\xe8\x3c\xf2\x6b\xdb\x76\x4d\x15\x3f\x03\x02\x15\x1c\xb1\x53\x4a\x9c\x90\x89\xca\x90\xd7\xa0\xe7\x2d\x64\xd3\xe5\x43\x61\xf2\xc2\x1a\xee\xe2\x2b\xed\x7c\x98\x14\x83\xe1\x76\x7f\xd8\xd7\x75\x5c\xc4\x6c\xb1\x6e\x26\x66\xef\x1c\x7b\xbd\xff\x7f\xd7\x8f\x2f\xf2\xcc\x39\xab\xe5\x54\x28\xa0\xe8\x1b\xa2\x02\x75\x4d\x81\xc1\xd2\x64\xc5\xce\xfa\xb1\xb1\xe3\x7a\xc0\x86\x87\xe4\x84\x53\x03\x0b\xc6\x77\xca\x60\x01\xab\x8b\xb6\x3f\xa3\x88\x3a\xaa\xaa\xb6\xa6\xa5\x21\x28\x18\x47\xa9\xb0\xd5\xf5\xb3\xe1\x30\x9f\x22\x1f\xe1\x50\x95\x71\x12\x1c\x94\x21\x5a\x58\x61\x80\x80\x61\xaa\x8e\xe0\xeb\x09\xce\x5d\x51\x3b\x84\xcb\xe5\x81\xe8\x67\xdb\x94\x22\xef\x45\xcd\x1d\x09\x0e\x70\xf8\x9a\x59\xfa\x1e\x78\xf4\x3f\x50\x22\xad\xdb\xa6\xa5\x2f\xc3\x4c\xc4\x3f\x41\x01\xaf\xce\x85\x35\x32\xab\x3d\x4b\x5c\x77\x0e\xa1\xe6\x46\xce\x78\x52\x98\x87\x05\xe9\xe1\xcb\xe0\xe0\x4e\x17\xd3\x8f\x87\x26\x0b\x5f\x13\x7a\x55\x61\x4e\xa3\x47\x8d\x1f\x76\x65\xe2\x01\xa7\xef\x4d\x14\x31\x66\xab\xeb\xc9\x52\x87\xd6\x30\x9a\x0d\x75\xaa\x1b\x04\xa6\xe5\x6b\x55\x4b\xca\x87\x69\x91\xe5\x2d\x3d\x92\x76\x09\xb1\x00\xdf\x28\xf2\x0a\x1a\x44\x44\x23\x41\xe4\xc7\xfc\xd8\x13\xc0\x9c\x08\x54\xeb\xf9\xdf\xcb\x2f\xb7\xb3\xbc\xe8\xaf\x3a\xc3\x87\x46\xd4\x75\x45\x40\x7a\xbd\x32\xcf\x14\xd8\x38\x8f\x56\x1f\xa2\x27\x84\xec\xe3\x4d\x6a\x5e\x0b\x61\xae\xff\xb0\xed\x53\xc5\x0c\x8d\x06\xa5\x88\x06\x2a\x44\x25\xd6\x89\xdc\xf1\xc2\x17\xbb\x8a\x66\xf9\x81\xe2\x4f\xbe\xa4\x8a\x05\x26\x38\xf8\xb9\xf2\xc9\x21\x99\xde\xd4\x55\xf2\xec\x68\xf6\x61\x52\xfb\x81\x47\xee\x7d\xe1\x71\x12\x1e\xc5\xb1\xfb\x59\xda\x43\xf8\xff\x3b\xbb\x8a\x3c\xb3\x35\xad\x8a\x4e\xfc\xda\x8b\x55\x2c\x10\xbc\xf5\x0e\xaa\x67\xc1\x4a\xcc\x4c\xd5\x54\xee\x96\xa9\x22\x09\xdf\x39\x55\x54\x08\xbe\xa7\x15\x8e\xc6\x98\x88\xa5\x54\x5b\xca\xc7\xde\x2e\x5f\xa1\xef\x2c\xbb\xd0\x01\x91\x57\x53\x13\x14\x99\x55\xc5\x1e\x06\x0f\xf0\x8d\x92\x0b\x18\xda\x68\xcc\xa4\x66\x20\xfb\x46\x01\x17\x31\xd2\x5f\x2a\x19\x9d\xc3\xaa\xf0\x30\x4e\xc3\x65\x62\x35\xa6\x36\x97\xa0\x16\x5b\x6e\x38\xb9\x52\xb7\x39\xaf\x05\xf7\xe0\x95\x05\xf4\x58\xae\x8c\x58\xf3\x06\xfc\x7d\x9a\x78\xf0\x27\x6c\xe3\x25\x25\xce\x75\xc9\x4d\x97\x05\x49\x14\x99\x5e\x92\x1a\x47\xc5\xa7\x84\x78\xfc\xac\x65\xa5\x14\x76\x90\xe5\x45\x5c\xef\xcc\x37\x98\xef\xaa\xb1\x89\x83\x61\xcc\xe4\xa4\x08\x51\x6f\x74\x5a\x2f\x8a\x2e\xcb\x0d\x55\xda\x78\xb5\x30\x51\x98\xaf\x52\x98\x8b\x44\x1f\xec\xa4\xb8\xfe\xfb\x9d\x6a\xdb\xcf\x79\x81\x1b\x6a\x9b\xa6\x51\x7f\x2b\x7d\x12\x62\x1e\x0c\x63\xe3\xbb\x6f\x9b\xaa\xa3\x7a\x74\x52\xd5\x1a\xf2\x29\xe1\xf6\xae\xab\x65\x7e\xba\xa9\xfb\xa8\x62\xef\x48\x46\x5f\xa4\x6f\x80\x03\xfe\x80\x1e\x15\x4e\xc0\xa5\x89\xe7\xed\x3a\x4a\x06\x8e\x05\x05\x3b\x15\x71\x29\x32\xb6\x0e\x22\xfb\x9c\xc0\xce\x5b\x53\x98\x1b\x0e\x4c\x15\x51\xc0\x29\x1a\x08\xc3\x7e\xbb\x49\x9e\x01\xde\x94\xb9\x4c\x11\x4d\xcf\x90\x19\xc6\x0b\xfe\x00\x78\x27\x2c\xad\xc8\x44\x22\xf8\xfa\x08\x35\x2d\x7c\xe4\x43\x5d\x65\xeb\x59\xa8\xc0\xe9\xfb\x94\xe1\x01\x5a\x4d\x67\x29\x9e\x95\x51\x25\xda\x07\x70\xfa\x27\xb4\xae\x14\x51\x71\xbc\xe4\x60\xbd\x64\x2d\x5d\x90\xfd\xfc\xbc\xab\xa9\x35\x28\xb3\x8d\x09\xd5\x52\x1e\x7a\x09\x91\x14\x04\x1d\xd4\x46\x38\xe7\xb7\xdd\xb9\xcc\xc3\x51\xd8\x0f\xf3\x55\x95\x0c\x7e\xa3\xe3\x93\xc1\x6f\x4c\x2a\x72\x96\x43\x24\xf3\x82\xb7\x55\xd8\x5b\xe5\x0e\x4d\xda\x0b\xf3\xd4\x0c\xec\xac\x8f\x76\x99\x76\x1b\xcb\xfa\x30\xac\x8c\x74\x00\x7d\x26\xf3\x68\xd7\x97\x1a\xb2\x71\x6a\x4d\x3f\x53\xd9\xfa\x39\x95\xad\xd7\x39\xc6\x0f\xcc\xb5\xfb\x26\x37\x5b\xfd\xc8\x06\xb3\x37\x0b\x5f\xaa\x2f\xd8\x00\x8b\xe8\x1a\x16\x7e\x38\x08\xe4\x71\xcc\x3c\xa8\x1a\x1d\xa9\xcd\xc2\x41\x2c\x72\xc6\x78\x66\x6c\xbd\x18\x5c\xa4\x24\x28\x2e\x77\x54\x97\xe1\xdb\x15\xc1\xfa\xf2\x63\xf1\xea\xcb\x13\x85\x98\xb8\xa8\xf2\x99\x2c\x37\x4b\x4b\x19\x49\x52\xe2\x51\x3d\xd0\x43\x98\xcc\xa5\x24\x71\xab\x9e\x7e\xd2\xba\x61\x35\xc3\xb5\xb0\xd0\x36\x79\x2e\x6c\x0d\xc0\xd1\x9f\xee\x78\xbd\xa8\xd3\xca\x6c\x50\xfb\x8a\xab\xc6\xc2\xbf\xea\xd9\x8f\xd7\x94\xa8\x67\x9c\xf4\x67\xfd\xac\x34\xa6\x87\x61\xb0\xa1\xad\xec\xa0\xb4\x07\xe6\xe4\xff\x4f\x3e\x5f\xad\x58\x1c\x98\x7b\xa9\xfc\x6f\xbb\xaf\x60\xf2\x10\x82\x28\x88\x7b\x20\xd6\x65\x7a\x6a\x30\x31\x6f\x53\xbc\xc1\xa7\x8a\x9c\xb2\x4c\xe0\xd3\xfa\x38\x29\x01\x27\xd0\x76\x53\x37\x14\x7b\x9c\x53\x60\x67\x5c\x51\x4a\xca\x75\x62\xc3\xc5\xc5\x3d\xed\xbe\x5d\xb6\x51\x32\x2e\x7d\x5e\xd6\x52\x31\xee\xa7\x1c\xa2\xf2\x5d\xad\x78\x28\x25\xb8\x22\x33\x68\x72\x60\xfb\x7f\xa8\x99\x1b\x3f\x54\x2d\xa4\x91\x1d\x25\x65\x2a\x53\xda\x1c\x59\x2f\x7f\x66\xef\xc3\xe0\xb9\x05\x76\xbd\xc7\x75\xd4\xa2\x05\x28\xac\xd4\x9c\x92\x34\x2f\x62\x3b\xab\x10\xff\xe7\x95\x1a\xd1\x0f\x10\xf6\xf1\x4d\xa7\xa5\x68\x5f\x7d\xb0\xbd\x92\xa4\x07\x6d\x4a\xc5\x7c\x84\xa6\xe0\xba\xe3\x6b\x05\xbc\xc8\x27\x2a\x5a\xc8\x3f\x83\x38\x76\x50\x44\x26\x4f\xd2\x55\x2e\xee\x23\x48\x60\x24\x15\xdf\x28\x71\xed\x9e\x21\x66\x0c\x37\xb9\xfe\x3d\xdd\xa8\xb9\x04\x33\xcb\x6c\x69\x0e\x20\x13\xf6\xad\x89\x88\xcf\x86\x91\x07\xf4\x67\xeb\xe4\x52\xd6\x2f\xa9\xde\x3c\xd3\xb9\xb3\xae\xaa\x92\xe6\xfe\xca\xdf\x56\x73\xae\x9f\x68\x05\xee\x2b\x84\xba\xc0\x79\xfb\x26\x8d\x0a\x23\x76\xbc\x5f\x65\x59\x53\xcc\x38\x78\x64\x8c\x93\xee\xa8\x9c\xef\x07\x13\xcf\x99\xf0\x3d\x72\x71\x00\xbc\x1c\x83\x8b\x73\x98\xe9\xdd\xf3\x6c\x9a\x4e\x91\xd2\x1b\x96\xfd\x70\x47\x0f\xb2\x22\x83\x12\xb0\xae\x9a\x6b\xba\xa0\xf2\xbf\x77\x98\x16\x02\x05\xc5\xc3\x0a\xbc\xfc\x57\xe4\x08\xf1\xc6\x37\x26\x9b\xbf\x5c\xe5\x84\x16\x1a\x43\xc2\xe0\x8a\xdc\x2f\x21\x0d\x98\x83\x12\x9e\xcb\xf9\xa7\x17\x3d\x22\xae\xdc\x32\x5c\x7a\xa2\x38\x14\xdd\xf4\xa3\x08\xff\x81\xbb\x3b\x82\x34\x07\xe9\xe3\x27\x7c\x9a\x44\xe1\xa7\xf5\xf4\xd3\xa2\x5c\x46\xbd\x1b\x27\xa1\x55\x3a\x54\x04\x0a\x27\x27\x9f\xf7\x95\xf7\xa5\x25\x4b\xc8\x4c\x12\x7d\x75\x2c\x8b\xe7\x15\x3f\xd5\x79\x85\x89\x62\xc5\x3f\xca\x61\xf0\x89\x37\x60\x68\xf9\xa6\x36\x7b\x48\x80\x3e\x7b\x68\x6c\xe3\x2c\x5c\xb6\x8a\x91\xfe\x58\x85\xa3\x88\x56\x16\x8e\xe0\xb6\xa2\x79\x59\x31\x69\x1c\xc6\x83\xed\xf4\xa7\x5a\x6e\x1f\xee\x93\xf9\x34\xd0\xb3\x3e\xa1\x19\x52\x4f\xd1\x46\x81\x05\x44\x18\xec\xa4\xd8\xca\xdd\x24\x0a\x43\xb4\xcf\xa4\xfc\xb6\xb1\x2c\xf4\x95\x76\x6a\x23\x52\x43\x9b\xf5\x05\xe6\x8f\xe9\x9b\xc2\x3a\x22\x51\xc2\x26\x3f\x4e\x1b\x0d\xf1\x75\x9d\x9d\xbe\x3c\xc6\xcb\x82\xbe\x92\xb9\x56\x75\x90\x3e\x75\xa4\x31\x7d\xa2\xd6\xcb\xc3\xb8\xb0\xfd\x2d\x3e\x23\xb8\x3f\xa9\x28\x88\xa8\x92\x2d\x08\x35\x45\x33\x8b\x36\xb5\x54\x82\x25\x41\x8f\x8a\xd1\x38\x44\xc9\x65\x6f\x05\xc0\x2f\x63\x48\x1b\x75\x93\xf6\xbc\xb0\x0f\x54\xe4\x61\x19\x89\xbb\x16\x18\xce\xe0\x15\x7a\x00\xd8\x89\x27\x94\x90\xca\x61\xad\x08\x9a\x9b\x38\xb2\xab\x5b\x3d\xa6\x98\x53\x07\x9c\x50\xa8\x52\xf3\x35\xed\x78\xe1\x44\x57\xb1\xfb\x79\x38\x25\xc1\xfb\xa9\xda\x65\x32\xea\x31\x07\x20\x6c\x1a\xc4\xe6\xf8\xda\xfd\xea\x22\x56\x3a\xc9\x30\x13\xbb\xba\x1e\x2f\xb7\x6b\x2a\x99\x59\xdf\x06\xa9\x35\xae\x53\x05\xeb\x72\x14\x4b\xc9\x37\x0d\x4d\x8e\x3d\xed\x2c\xb7\xa1\x80\x5b\xe5\xa4\x6c\x98\x92\xf6\x72\x62\x51\x08\x39\x06\xec\x90\x2b\x38\xce\x4e\xac\xc4\x05\x8e\xdf\xae\x70\xc1\xb1\xc0\x89\xa3\xb7\xf5\x18\x2d\x64\x1e\xe4\xd4\xfe\xd7\x36\xa1\xbc\x44\xad\x90\x8e\x8a\x23\x57\xdb\xf8\x29\x74\x6e\xfe\xe2\xa9\x69\x25\x81\x2a\xd2\x96\xd2\xca\xf8\xa1\x1a\x00\xfd\x61\xad\x99\x5a\xfe\x70\x46\xe8\xf2\x7a\xc1\x6a\x32\xdf\x20\xdf\xd4\x0e\xc0\xd3\x4f\xb7\x5f\x51\x12\x1d\x32\xe1\x5b\x19\xfd\xf5\x4d\xb0\xcc\x44\xf9\x6b\xbd\x22\xe5\xe9\x4e\x29\xde\xa9\xa9\x9a\x53\x4d\x44\x1c\xa5\x0f\xe3\x18\x05\xa0\x18\xcc\xee\xf3\x75\x13\x13\x29\x9b\xb3\x59\x4f\x82\xcd\x13\xc5\x48\x71\xb7\x75\x5b\x8a\xa5\xcb\x97\x24\xee\xd5\xf4\x94\x7f\xa1\x1d\x9b\xd7\xc2\x19\xdf\xbf\x84\x8f\x17\x05\x2d\xfa\xe6\x08\xaf\x4e\x4e\xfc\x18\x4e\x92\xd9\x6d\x5e\x0e\xf9\x47\x15\x3e\x08\x5a\x4e\x58\xc7\xcf\x77\xd5\x00\xcb\x3b\xaa\x80\xd2\x42\x32\xe9\xc4\xf5\xcb\x5f\x2e\x32\x86\x7e\x1c\xaf\x9f\x14\x83\xc8\x64\x5b\x74\x06\xcd\x4e\xc3\xfd\x34\x57\xd6\x63\xff\x2e\xcf\xd1\xc7\x8e\x17\x3b\x5f\x6a\xaa\xb5\x57\x38\xc4\x50\x45\x82\x7d\xbf\xac\x46\x8f\x2e\x6b\x6d\xc6\x64\x3c\xe6\x4e\x2f\xba\xe0\x4c\x5c\xce\x37\x9a\x94\x70\x68\x96\x99\x38\xcb\xe9\x8a\x3f\x3f\xef\xaa\xa6\x15\x5d\x2f\x13\xed\x2a\xcd\x88\x88\xa7\xfb\x89\x3a\x99\x58\x81\x3f\x9f\xe9\x92\x13\xae\xf0\xbb\x61\xc1\xbf\x0d\x37\x06\xd3\x79\x5f\x81\xcd\xef\x53\x14\x8f\x23\x78\x1f\x54\x0b\xd8\x50\x57\x60\x9f\xe0\x16\x6e\x7a\xb4\xc9\x7f\xbf\x6b\xaa\x66\x3c\x99\x0f\x05\xa9\x07\x34\x62\xc8\xbc\x65\x4f\x4d\x95\x46\xc5\x0c\x70\x84\x08\x0e\x2e\xc1\xbd\xc3\xdd\xcd\x22\xad\x95\x67\x50\xeb\xfd\xee\xdd\xd3\x5e\x49\x62\x70\x21\x08\xea\xdf\x53\x40\x5c\x54\x4a\x4d\x41\x6a\xed\xc1\x59\xa5\xce\xf4\x36\x6f\x02\x91\x40\x57\x8a\x9f\xc0\x46\x08\x81\x96\x94\x41\xe3\x30\x30\xa9\x19\x14\x26\x9e\x51\xc0\xa6\x9d\xbc\xc2\xc8\xdc\x8e\xfa\xcc\x2d\x79\xa2\xbb\xd1\x7a\x7c\xa5\xbd\x94\xda\x57\x0b\xbb\x41\xac\xfa\x3d\x25\x56\xfd\x9e\x07\x6d\x8f\x4d\x80\x98\xc4\x95\x2e\x16\x9d\x4c\xe2\x19\x35\x83\x3b\x30\x69\xdf\xc6\xdb\x14\x8f\xd9\x0c\xe1\x0d\xf1\x30\xdf\xa5\x8d\x08\x7f\x75\x1b\x0f\x10\x37\x57\xf1\xfc\x91\xe6\x9f\x52\x8d\x63\x06\x16\x4a\x63\xec\x51\x35\x6c\x10\xe7\x33\xd5\xf1\xba\x85\x05\xbe\xd6\x62\x22\x5a\x1b\x70\x29\x8c\x07\x24\x77\xb6\x57\xb8\x73\x80\xd4\x76\x40\x19\x47\x65\x7b\xba\x51\x35\x28\x48\x46\x6e\x14\x42\xc8\x52\x15\x41\xc0\x51\xd5\x24\x58\x0a\xe3\x98\xd6\x0b\x95\x67\x14\x1a\xf8\xba\x66\xb1\x16\x17\xdb\x7d\xf0\xf0\xbe\xc4\x1d\x8a\xfb\x8a\x33\x10\x1c\x9d\xa8\xa6\xfe\xbe\xea\x62\x3c\x50\xec\xf7\xe3\x64\x5c\xe6\x25\x61\x12\x6f\xd5\x79\xc9\x19\x84\xd9\x38\x3d\x9b\xba\xbe\x61\x75\x1f\x31\xa8\xa6\xa9\x76\x98\x65\x9f\xc9\x9c\xa9\x45\x23\x92\x0f\xf6\x4c\x94\x87\xa3\x24\xdd\x08\x8d\x78\x6e\xd1\x41\x23\x9a\x16\x30\x1c\x8d\xa3\x50\xf8\x32\x1c\xc2\xd2\xd7\x6b\xd7\x1c\xfb\xc0\x52\x6a\xed\x43\x2d\xd1\x01\xfa\x9d\xbf\x03\xb3\x8b\xcc\xf1\xee\x44\x29\x55\x21\xba\x14\x09\x37\x2d\x47\x49\x79\x22\x96\xed\x08\x25\xf3\x30\xfa\xb7\xb0\x75\x45\x35\xb1\x25\x83\xd1\x17\xbe\x38\x6d\xe0\x77\x78\xda\x8e\x66\xc8\x73\xc3\xd0\xdc\x50\x14\xc3\xe7\x95\x5e\xfb\xa7\x4d\xaa\xfe\xcb\x21\x52\x3f\x97\xe4\xbb\x30\xef\x27\x94\x4e\xa0\xf9\x75\xa5\x41\x4c\x71\x5f\x7b\x9c\x26\xc3\xb0\x17\xe6\xc0\xed\xc9\xe0\x3f\x99\x16\x61\x04\xd8\xe9\x62\x26\x42\xf7\x18\xde\x98\xc0\x93\x80\xa8\x8c\xaf\x9b\xa4\x7f\x56\x6c\xb4\x64\x52\xab\x06\xc3\x21\xf8\x29\x6d\xe2\x5d\xae\x0a\x1c\xc6\x24\x76\xc1\xdc\x40\x08\x67\x80\x7a\xe2\x6b\x65\xd8\x96\x52\x5b\xf4\x39\xb0\x00\x56\xe4\x0a\x36\x14\xdf\xa8\x1a\xdb\xb8\xe8\x45\x61\x36\xb4\xfd\xad\x95\x12\xc4\xc4\x37\xd6\xb9\xfa\x25\x01\x8a\xd7\xc9\xe3\x3d\xc3\x7f\xa5\x7b\x76\x9f\x56\xca\xd1\xe9\x60\x75\x3b\xbd\x05\x22\xa8\x33\x0a\xa7\x70\x19\x26\xd6\x8d\x48\x3a\xa2\xac\xdb\xdb\xa9\x82\x26\xfc\x5b\xf8\x6e\xc8\x86\xa0\xd5\x85\xf0\xfe\xd2\xc4\x43\x8f\xbf\xaf\x02\xc5\xd5\xb1\x05\x89\x23\xba\xad\x5b\x69\xea\x10\x79\x23\x22\x18\xec\xa3\xd9\xae\x1a\x74\xd9\x32\x75\xe4\x4a\x61\x1c\x8e\x8a\xd1\x56\x3f\xde\x71\x8b\x7a\xf4\x22\xa6\x4f\x16\xb3\xd2\xdc\xc4\x5b\x9f\x54\xad\x4a\x4e\xa0\x85\x30\xf3\x09\x45\x28\x10\x59\x66\x42\xf6\x0f\x1a\x18\x61\x14\x1a\xd0\xf6\x10\x2c\x91\x37\xb5\x43\x13\x62\x0e\x0b\x91\x18\x70\x77\x68\x42\x63\x49\x11\x64\xbf\xd9\x44\x5d\xd5\x4b\xd2\x34\x59\xf1\x4d\xf0\x46\x65\xaa\x86\x44\x75\x68\xcd\xf2\xea\x0a\xb1\xca\xb5\x5a\x4a\x48\xb8\xb5\xe8\x05\x86\x7d\x43\xdf\x1e\x0a\x86\x26\x1e\xd8\xfe\x6c\x45\x85\xb0\xa5\xb8\x00\xcb\xef\x89\xc0\xe3\xb4\x2a\x2a\x9c\x56\x54\x09\x51\x92\x1c\x24\x3a\x28\xa7\x1c\x8b\x57\x31\x45\xa5\x9a\xd4\x43\x5b\x9a\xff\x46\xa5\xc8\xcc\x82\x37\xe3\xc7\x34\x6e\x56\x26\xce\x68\x2f\x22\x7c\xf9\xb8\x02\xd2\x30\xaf\xbd\xa6\xb8\x86\x0e\x23\xfe\xe1\x9b\x26\x3e\xad\x70\xa4\x94\xc7\x11\x5e\xfc\x25\x7d\x12\x5f\x2b\x56\x87\x60\xd5\xc4\x66\x14\xf6\x35\x66\x0c\xdb\x5d\x00\x64\x3b\x74\x8a\xbf\xcd\x0f\x96\x9f\x45\x50\x05\x67\x83\xe3\x07\xc3\x07\xa3\xc9\x95\xbb\x0a\x19\xaa\x12\xeb\x39\xa5\x69\xf4\x77\xd5\x28\x69\xca\xb4\x36\x4b\x22\xd8\x14\x86\xcd\x93\x4d\x11\x08\x7d\x03\x79\x46\x38\x1a\x27\x69\xfe\x6f\xd2\xca\xf7\x85\xc3\x34\x89\x22\x47\x49\x83\x12\x10\x9b\x4f\xbe\x69\x54\x2d\x7a\xb5\x08\x6d\x4e\x94\x0c\xae\x84\xb3\xb0\x20\xd7\x2a\x87\xb4\x51\x64\xe3\xcf\x96\x0d\xdf\x38\x84\x3f\xbf\x1f\x1c\x4b\x59\x1e\x06\xa1\x89\x55\xa3\xe2\x96\x6a\x54\xdc\x52\x66\x24\x4f\x46\x5b\xc8\x43\x33\x3f\xe9\xc4\x87\x12\xf7\x70\xbe\x11\xbf\xdc\x56\x9c\x0c\x90\x94\x97\x6c\x61\xe3\x99\x7a\xf9\x65\x30\x37\x99\x65\xeb\x24\xcd\x50\xdd\x86\x4f\x83\x25\x3c\xab\xdb\xe5\x47\x6b\x1d\x0a\x3a\xd0\xf9\x90\x68\x1e\x51\x76\x3f\x4e\xa5\x6b\xbe\x56\x2b\x94\x27\x87\x42\x56\xbc\xd2\x02\x23\x02\x85\xf8\x9c\xd6\x0a\x89\xfa\x4f\xb6\x1c\xf9\xfb\x9f\x61\x94\x4b\x42\x32\xb2\x78\xd8\xa9\x57\xc8\x89\x3b\x69\x53\x87\x31\xf9\xaf\xef\x51\x8e\xe1\xea\x48\x7e\xd3\x6e\xa2\x46\x98\x6b\x35\x78\xe1\x7f\x90\xc2\x55\xd8\xeb\xf0\x8a\xed\xcc\x2a\x21\x51\xb9\x12\x78\xbb\x85\x4e\x1a\x7f\x17\x58\x5f\x54\x61\xd6\x91\xdb\xe3\xe6\xb8\x42\xce\xf1\xb8\x0c\x0c\xc5\xc9\x8e\x0f\xdd\x66\xa6\x7e\x7e\x6c\x56\x89\x70\x2f\x25\x99\x30\xde\x39\xce\xc3\xf2\x77\xf2\x4d\x2d\xd1\x3e\x30\xf7\x52\xbb\x57\x64\xab\x18\x5b\xc0\x7b\x63\x46\x00\x86\xe0\x43\x2d\x44\x35\xad\x74\x48\x28\x92\x05\x7c\x40\x21\x00\x24\xdb\x7c\x4b\xab\xb7\x4f\x54\x60\xfa\x07\xba\xe3\x7d\x86\xdd\xa3\xd0\x6b\xaa\xd5\x7a\xa8\xab\xda\xa9\x1f\x76\xbc\x9c\xe1\x7b\xae\x6f\x97\x14\x79\x16\xf6\x6d\x4a\xe1\xb8\xe0\x9e\x54\x47\xf4\x9c\x22\xd6\xb9\x57\x03\x07\x3f\xb7\xd8\x0e\x4c\x14\x94\x51\x6f\xb5\xfa\x01\xda\x42\xa9\x1f\x8b\x67\x0d\x8a\x68\x9c\x86\xb9\x26\x38\x43\xbf\x49\x94\x77\xeb\xd5\xfe\xb6\x35\x69\x3e\x14\xde\x58\x47\x59\x7b\x44\xe5\x63\x47\x6a\xc5\x95\xd2\xae\x05\x54\x5d\x74\x2d\xc1\x33\x8a\x75\xe6\x8c\x96\x3a\x19\x8f\x23\x70\xc6\x48\xad\x9c\x1e\x80\x60\x27\x5b\x5e\x31\xaf\x16\xbf\x3d\xb7\xd8\x1e\x61\x40\x5a\xb1\xa8\xb2\x0a\x11\xdf\x38\x50\xe2\x38\x0d\x99\xf4\xda\x33\x21\x95\xbb\x5f\xd0\x02\x9f\xc5\x86\xb6\x14\xc6\x26\xe2\xd4\x10\x09\x04\x43\x66\xf9\x46\xa1\x51\xfa\xcc\x9e\xb3\x95\xce\x9e\x43\x4f\x79\xc6\x5f\xd0\x69\xc0\xe5\xfe\x0f\x48\x3d\xf8\x46\xf3\x81\x7c\x47\x89\xe6\xde\x73\x93\xaa\x23\xe3\x91\xeb\xa8\x0f\x30\x3e\x9a\x6f\x54\x5b\xac\x00\x20\x66\x8f\x93\x07\x53\x88\xd6\xb7\x35\xa2\x95\x1a\x06\x1a\x17\x46\xff\xfb\xcf\xda\xc8\x32\xb0\x17\xef\xd1\x11\xc0\xd1\x59\x9f\x54\x25\x05\x0e\xcc\x39\xaa\x28\xa5\x2f\x93\x9a\x20\x0f\x03\x9b\x3d\xa2\x29\x9a\x54\x0f\xe2\xf0\x44\xb3\xab\x5e\x50\xfb\xe8\xe3\x8e\xd2\x47\x39\x43\xc6\x09\x1e\x15\x24\xd9\x7c\x4d\x3f\x47\xc4\x68\x60\x87\x80\xf3\x41\xd1\xfd\x3a\xd6\x52\xc4\x49\x7d\x4e\x5e\x8c\xfb\x26\xb7\x9f\xcd\x0a\xf6\xa4\xfb\xcb\x3c\x35\x71\x06\x9d\x2a\x0c\xef\xcb\xcc\x4d\xcb\xb1\x19\x01\x9b\x86\xaf\x7d\xbf\x56\x03\x79\x7e\xbe\x9d\x5b\xd6\xda\x73\xf8\xed\xbd\x73\xaa\x4b\xec\x76\x7f\x90\x17\x26\xc2\xa0\x8e\x02\xdf\xed\xf3\xcd\x6e\x17\x0f\x9d\xa6\xfd\x2a\x75\xa7\x8a\x58\xf5\x38\xd7\x50\xb7\x63\x5a\x25\xe0\x8a\x1a\x97\x38\xa2\xe9\xb2\x09\x3a\x85\x36\x86\x9b\xa5\x75\x03\x6a\x9b\x08\x1a\x28\x19\x9b\xaa\x2f\x1c\xd3\x54\x17\x37\xf0\x0c\x50\x27\xfb\xa4\xe3\xc1\x80\xe7\x2a\x74\x1d\x4e\x65\xa0\x34\x75\x2d\x55\x80\xd7\x23\x49\xe7\xd5\x06\xce\x4d\x8f\x2a\xd3\xc2\x7f\xe1\x1d\xf3\xff\xac\x71\x10\xa7\x5c\x8b\x82\x1e\x18\xa9\x1a\x31\x36\x55\xa6\x40\xca\x77\x91\xe9\x90\x9d\x9a\x19\xd2\x1a\xe1\xea\x47\x8d\x07\x51\x03\x8f\x1b\xd1\x07\x8a\x9c\x9b\xdf\x16\xf6\x50\x10\x15\x59\xb8\xcc\x82\xeb\xa2\xdd\xf5\x4d\x55\x3c\xf9\x66\x2d\x56\xf8\xd5\x32\x87\x4d\x96\x66\x54\x95\xeb\x43\x35\x93\x71\x1a\x5b\x1e\xe1\xde\x3b\x2a\xf4\x49\x93\x7e\x4b\x41\x32\x31\x83\x28\xec\xdb\x9f\x0b\x2b\x3f\x04\x7b\x5a\xe0\x61\x1e\xcb\x71\x41\x29\xa2\xe6\x61\xdf\x66\xe8\xb7\x20\x4e\xfa\x14\x35\x3d\xbe\xa9\xd9\xd6\x32\x0e\xcc\x87\x36\x1d\x25\x2d\x9f\x33\x9c\xd3\xad\xe1\x73\xee\x6b\x2c\x85\x65\x90\x89\x11\xbd\xf5\x4b\x78\xaa\x28\x68\xa1\x68\x83\xc7\xf5\x80\x4c\x8c\x60\x32\x1a\x46\x07\xb2\x64\x39\xb4\x79\x36\xab\x08\x59\x1e\xed\xaa\xa7\x39\x51\x5e\x5c\x30\x3c\xf0\x91\xdf\x51\xd5\xad\x51\x12\xe7\xc3\x68\x75\xb6\xb5\x77\x6e\x7d\x2b\xc1\xe3\xb0\xd2\x3c\xe8\x05\x83\x75\x56\xf5\xbb\xbf\x53\xab\x3c\xec\x9d\x6b\x67\x65\x9c\xea\x9b\x35\x00\xc9\xfe\x54\xc1\xcb\x7f\xaa\x05\x0f\x47\xa4\x74\x4b\x82\x32\xe2\x77\xf0\xf5\xd0\x86\x7f\xa0\x63\x55\x6e\x3b\x61\x6f\x1f\x57\xcd\xfa\x07\x13\xb5\x47\xfe\x52\x23\x99\xd0\x5a\xc1\x0f\x67\xc9\x43\xe1\x6b\xa6\x07\x8a\x28\xe7\x3e\x1e\x28\x4a\xa0\x75\x3e\x91\xf9\xfd\xed\x15\x93\xdb\x94\x14\x3c\xb0\x63\x04\x00\xe5\x61\xe9\x1f\x55\x0a\x07\x07\x2d\x84\x77\xb5\x96\x94\xdb\x8e\xcf\x79\x16\x2f\x6f\xce\x82\x34\xa4\x73\xe5\x78\x23\x6e\x77\x54\x91\xea\xba\x52\x55\x7c\xab\x01\xf7\xf3\x52\x3b\xb3\x00\x23\xa2\xe6\xcb\xcc\x79\x82\xa2\xf3\xa8\x5f\xcf\x9f\xba\x64\xe2\xdc\x64\x00\x3d\xe1\xab\x81\xc1\x81\xaf\x6b\xb2\x4f\x65\x60\x62\xc6\xff\xc1\x57\xbf\xaa\x88\x5c\x36\x38\x74\x8f\xab\xef\xa7\xc5\x60\x07\xed\x1a\x44\x09\x68\x20\x20\xb1\x03\x4f\x96\xb4\x2b\xe9\x7b\x0a\xee\xc1\xfb\xad\xd7\x2b\x0e\x13\xbb\x80\xc3\x68\x7c\x26\xea\x16\x5c\x07\x70\x20\x0a\x3f\x17\xff\xcf\x10\xae\xf3\xbb\xd1\x66\xc1\xc1\xb8\xa1\x7c\x48\x2f\x49\x0e\x96\xf1\xa3\xc3\x63\xde\x54\xb1\xdf\x15\x3d\x0b\x50\xaf\x4d\x2c\x2c\xec\x6b\x9b\x91\x4d\xc3\xc0\xb7\xc2\x5c\x5f\x5a\x51\xc6\xd4\x0a\x7b\x2f\xbf\xdc\xb6\x59\x8f\x27\x8d\x61\x9c\xff\x1b\x5a\x1e\x86\x3f\x4c\x2a\xa0\x0c\x5f\x45\x59\x09\x53\x6c\x2a\x98\xfd\xef\x4e\x7c\x57\xff\x0c\x4e\x06\xf2\x81\xe3\x13\x0f\x5d\xb1\xb1\x4d\x07\xab\xdb\x54\x16\x01\x44\x84\x30\x1f\x56\x8a\xf0\xe5\xf6\x11\xf5\xb2\x32\xbe\x11\x4a\x44\x8f\x82\xba\x5e\x0d\x33\xea\xd3\x9c\xa3\x64\x59\xaa\xb3\x8e\xf9\xbf\x5c\x0b\xd1\xda\xac\xd7\x74\xf7\xb5\xb3\x22\x5d\x32\x5c\x1c\x44\xb8\xcf\x60\x6c\xbe\x69\x62\xc7\x1a\x99\xf4\x90\xcc\xb1\x35\x0e\xe1\x3d\xa1\xc8\x65\xa9\xba\x49\x1c\x96\x0e\x2f\x74\x61\x52\xd1\x7c\xf0\x1b\x77\x1c\x59\xd6\xc4\x91\x46\xb8\x22\x80\x39\x5c\x89\x1d\xf2\xd0\x32\xaa\x1b\x45\x9d\xf7\x91\xc5\xf1\x4d\x33\xd1\x4b\x2f\x0d\xed\xd2\x8c\x9e\x03\x9a\x78\x9c\x0e\x9a\xf1\x08\x1d\x7e\xa2\xec\xf2\xd0\x8c\x46\x94\x42\xec\x15\xed\x65\x9c\x14\xbe\x76\x27\x9a\xa5\x23\x66\x3d\x72\x9b\x11\xcf\x08\xf5\x76\x90\x47\x91\xbc\x86\x1e\x24\x7b\x70\xf5\x59\x26\x08\x8a\xac\x7c\x0f\xc7\xc2\xb3\x65\x4a\xe7\x18\xa9\xfe\x23\x5d\xbf\xe2\x57\x27\x9e\x1d\xe0\xe3\xda\x43\x7a\xf9\x65\x97\x61\xa8\x0c\xf4\x8a\xe2\x36\xba\xa2\x1a\x89\xd9\x38\x49\x73\x66\x8f\xd6\x21\xa3\x4c\x69\xfb\x22\x5b\x1e\x2e\x2d\x99\x78\xb5\xe5\x37\x2b\x53\x78\xf3\x8d\x73\xad\xaf\x24\x83\x81\x6b\x63\x8a\x3c\x60\xf9\x9e\x7c\xdd\xa0\xb6\xb2\x48\x7e\xdb\xb6\x5a\x5f\xfb\x4d\xc7\x4a\xab\xe9\x6a\x1b\x58\x1a\xcd\x0a\xb1\x34\x7a\x63\xfb\xb1\x22\x70\xfe\x58\xa9\x56\xa4\x26\xee\x27\x23\xc4\x3f\x8b\x5a\x57\xcb\x05\x08\x8f\xa8\xda\xc7\xcf\x95\x51\x3b\x77\x5a\xb0\xad\x5c\xad\xda\xa7\xc8\x77\xaa\x32\x56\xe5\x8a\xe0\xb1\x73\x8f\x59\x08\x58\x54\xe8\xf2\x8f\x81\x55\x62\xa1\x4a\x25\x8c\x04\xdc\x12\x82\xa9\x8f\x08\x59\xe8\x48\xcf\x77\xef\xe6\x5a\xf4\xbb\xc8\xc2\x90\x1b\xfd\x6f\xa8\x66\x20\x87\x7a\xcb\xd3\xde\xb5\xae\x03\x1b\x85\x63\x80\xc8\x5b\xca\xfc\xad\xdf\xf8\xba\x9b\x02\xc3\xc9\x11\xec\xef\x66\xc1\x2a\xbf\x41\xf1\x2f\x5c\xfc\x3b\x1d\xdf\x55\xfc\xb4\x32\x0a\x73\x0d\x90\x62\x0e\x9f\x11\x4b\xe3\x43\xbe\xab\x04\xd4\xaf\x6b\xdd\xda\xcd\x98\x2f\x40\x7f\x94\x69\x9d\xf0\x91\x75\x96\x38\xc9\x60\xfb\x49\x14\x99\x14\xc7\x55\x94\x97\x7c\xde\x83\x79\x0c\xa4\xde\x6f\xd6\xac\xfc\xde\xb9\x76\xbf\x00\xb6\x0a\x11\x07\xc8\x36\xf8\xda\xe1\x55\x4c\xd4\x33\x71\xe8\x3d\x08\xb0\x7c\x9f\x4e\x14\xb0\xef\xd3\xce\x53\x5a\x7d\x32\x27\x09\xe3\x5c\x6a\x0a\xfc\x98\xe8\x67\xcb\x23\xdb\x00\x30\x7d\x71\xef\x5c\x7b\x71\x71\x4f\x45\x41\x87\x56\x46\x92\x6b\x37\xa0\xb0\xa2\x85\x7c\x18\x7c\xd0\xa9\x20\x11\x1a\xc6\x01\xd0\xb1\x55\xac\xc9\x1f\x6a\x5e\x84\x0d\x74\x14\x59\xbe\xd5\x63\xf1\xf7\xd0\xee\x40\xd9\xeb\x7f\xc4\x57\xe2\x1b\x32\x2d\x9c\x11\x61\xff\x62\xfd\xd7\xb1\xeb\x90\x61\x6c\xad\xcd\xa2\xee\xde\xdd\x4e\x8b\x5e\x18\x98\x11\x2d\xbc\x0c\x8d\xa9\xae\x3d\x13\x3e\xe0\x98\x0d\x93\x34\x29\x06\xc3\x5e\x6a\xfb\x98\x0e\x87\x45\x3d\xa3\xf5\x73\xcf\x60\x77\xb9\xa0\x73\x71\xd1\xd1\xaa\x94\x3f\x44\x40\x78\x8f\xaa\xa1\xef\x3c\x79\xca\x03\xf9\xa1\x9f\x8f\x52\xc1\xec\x54\xc9\x57\xfd\x35\x7e\x17\x9c\xdc\x83\xea\x44\x90\x42\x30\x6e\x05\xe6\x80\x39\xa7\xa6\x1b\xc6\x88\xca\x63\x8e\xb4\xfa\xaf\xe0\x33\x85\x17\x94\x8e\x39\x10\x8d\x38\xce\xce\x02\x1e\x10\x9b\xfd\x50\x97\xd6\x12\xe1\xd2\x2d\xea\x45\xe2\x99\x81\x32\x12\xa6\x17\xc3\x5f\x08\x57\xef\xa2\x95\x8e\xfe\x2c\x53\x27\x21\x16\xd9\x44\x63\x85\xa8\x42\xbf\x85\x05\xc3\xc3\xdb\xd4\x25\x93\x01\xff\xf6\x91\x1f\xa4\x5d\xcd\x72\x3b\xca\xb6\x28\xc1\x28\xa1\x84\x43\x8c\xf8\x98\xf2\x55\x90\x60\xaf\xc0\x06\xe0\x80\xae\xbb\x79\x9c\xa4\xf7\x8a\x0d\xa0\x0f\xe3\x16\xfe\x8e\x7a\x3e\x77\x1a\xe5\x6b\xcd\xb2\x4d\x49\xe1\xc0\x25\xef\xeb\x8a\x8c\x63\x5d\xa1\x57\x88\xba\x7c\x8b\x9a\x56\xe0\xa1\x3f\x85\xb8\xde\x23\x37\x6a\x22\x18\xda\xe2\x38\xc5\x2c\xfa\x21\xb1\xc3\x0a\x4d\x8e\x32\x61\x99\x22\xd5\x38\xeb\x18\xb7\x80\x14\x4e\x23\xe6\x22\x41\x3e\xf3\x2d\x6c\x0d\x04\xdc\x48\x0b\x51\x50\x80\x92\x36\xac\xf1\x51\x7f\xa0\x8b\xf1\x38\x0a\x6d\xba\xd5\x67\x41\x3b\xf1\xd4\xe1\x41\x18\x34\x09\xd7\x79\x8d\xb6\x80\x6b\x4d\xef\x9d\xd3\xd8\xe4\x7d\x7c\x32\x4f\x2b\xc4\x53\x6a\x90\x3d\x08\x76\xd4\xb7\x3a\xea\xd0\x51\x31\xa9\xe3\xd4\x2c\xf7\xcd\x8c\xe7\x23\x07\xbb\x08\x7e\xd0\x09\x5d\x94\xbf\xe3\x3c\xf9\xb2\x39\xf4\x2b\x5f\xfd\xea\x57\x61\x87\x71\x92\x8e\xab\x51\xe8\x07\xb0\x1c\xa2\x04\xe4\x3b\x57\x45\x1c\x85\x07\x6d\xb9\x80\xe5\x1e\xc4\xbb\x5e\x80\xe7\xe0\x1b\x7a\x17\xa4\x7d\xe8\x77\xf3\x75\x43\x23\x72\x5f\x3b\xb5\x4b\x09\x05\x47\x2d\x55\x72\xbc\x35\x51\x14\xc4\xb7\xb4\xbf\xb7\x99\x4d\x97\x6d\x86\xd8\x1b\x0e\xf4\x2a\x52\x3a\x99\xe3\xa5\x33\xca\x6c\x94\x95\xa1\xde\x72\x3b\x08\x4b\x65\x05\x90\x40\x9f\x25\xe6\xa3\xa9\x96\x9f\x99\x25\x9d\x23\xa0\x36\x03\xbf\xcc\xa3\x12\x68\xfe\x9f\x6e\xaa\x22\x0c\xad\x59\x76\xd0\x52\x18\x9c\xdb\x4a\xb1\x5c\x4b\xc6\x05\x51\x92\x31\x4b\x05\xde\x1d\x1c\xe5\x7c\xfd\x59\xd8\x97\xb1\x89\x45\xfa\x1b\x40\x8c\xf3\xea\x01\x7c\x4f\x73\xed\x5f\x76\x5c\xfb\x43\x93\xf6\x83\x24\xc5\xc0\x2c\x23\xf6\x60\xf7\xc0\x2f\x73\x56\x01\x2e\xdf\xc2\x76\xe6\xa0\xa2\x49\x4a\xae\x97\x0c\x0a\xb4\x57\x51\x59\xb9\xac\xaa\x19\x98\xdf\x17\x02\x64\x07\x5c\x8a\xc2\xbe\xdd\xea\xe7\x41\x89\xfa\xf7\xfe\xdf\x7f\xa2\x5b\xcd\xa9\x1c\xd3\x02\xd7\x8c\x5d\x10\x7b\xc0\xfd\x83\xa3\xec\xb6\x23\x9b\xe2\xe4\x60\x5b\xf0\xb6\xe7\x9b\x86\x1e\xcd\x62\x7b\x5c\xe4\x15\xaf\x8c\x0a\xbc\xb4\x57\xbc\xa1\x2a\x13\xa9\x3e\x00\xbe\x28\x64\x7d\x40\x3f\x90\x7f\x54\xa7\xa5\xa8\x5f\x1f\xd3\x93\xac\xe3\x72\x57\xab\xce\x09\x0a\x22\xf2\xa7\x2a\x15\x29\x54\x50\x2d\xfc\xc7\x2d\xcf\x85\xac\x66\xc3\x0f\xc6\x50\x74\xa3\xe5\x10\x3c\xa6\x37\xaf\xc7\x6b\xb5\xa3\xdd\xbb\xdb\x26\x36\xd1\xea\x6b\xee\x03\x98\x72\xa9\xe3\x37\xf4\x19\x55\x54\xa4\x6e\x64\xb2\x6c\xd3\x0c\xd9\x40\x93\x7a\xd0\xc6\x0c\x75\x7e\x7f\x3b\x37\x11\x2a\x9d\x78\x2c\x37\xd5\x7c\xe4\xcd\xc9\xc3\x6e\x25\x5f\xa3\x79\x0f\xec\xfc\xbb\xf4\xbd\x31\xcd\x06\x38\xa1\xf3\x02\xe5\x83\x43\x40\x7c\xa2\xb3\x91\x75\x73\xf7\xee\x76\x32\x9c\x29\x83\x5e\x89\x8c\x7d\x05\xf7\xe3\x89\xef\x68\x35\x8a\xfc\xb0\x46\xe6\x30\x1c\xf3\x12\x22\xf2\x65\xbc\x18\xdf\x34\x65\x24\x59\x6e\x56\x79\x72\x14\x91\x01\xb3\xe9\x89\x31\xd7\x94\xbf\x4a\xf8\x26\x48\xad\x0d\x86\xbc\xf4\x2f\x09\x72\xb5\xa3\x1a\x25\x75\x20\xf0\x81\xb9\x67\x15\xe9\x19\xc3\xf8\x27\xbe\xfe\xfc\x11\xce\xa3\xe0\x2d\xbd\x30\x80\x35\x23\xf0\x7f\x38\x7a\x67\x17\xbd\x42\x17\x1c\x67\xfb\xe1\x5a\x11\x6a\xf7\xee\xb6\x8d\x1d\x01\xb8\xce\x7c\xf8\xba\xb6\xab\x0e\xcc\xb5\x8b\x98\xe4\x9c\x36\x0e\xa1\xfa\x39\x4e\xaf\xec\x11\xc6\x4b\x04\x94\xc7\x92\x6b\x6a\x28\xbe\xd6\xf3\xcb\x51\xb6\x43\x81\xab\xae\x21\x24\xa0\xa5\xfd\xed\x27\xba\x3e\x69\xf8\xf2\x2f\x03\xab\x43\xd1\xd8\x57\x9e\x9c\xfa\xa4\x6b\xe7\xd4\x03\xbf\xbf\x34\x55\xcc\x88\x17\xc8\x15\x3b\xac\xf7\xde\x39\xaf\xa3\x7d\x40\x1a\x5c\x77\x38\x60\x82\x09\xfa\x02\x26\xa0\x11\x18\x3d\x50\x5a\x4e\x45\x6c\x8a\x32\xd0\x0d\x5f\xb3\x5c\x16\xc7\x66\x64\xae\x48\xbe\x69\x90\x4f\x6b\x2f\x15\x71\xdf\x8d\x0b\xc8\x8c\x9c\xdf\xc1\x88\x0c\x05\x53\xef\x31\x20\xa3\x7c\x34\xa3\xc6\x8c\x31\x16\x8d\x84\x0c\xe3\x6b\x32\x47\xfe\xb8\x33\x87\x3d\xfb\xda\x6b\x91\xed\x53\xcc\x2e\x51\x81\x02\xd4\x5e\x54\xb3\x58\x36\xec\x67\xa3\x64\xa6\x7c\x1f\xec\xca\x7b\x5a\xd2\xf1\x5d\x3c\x03\xc4\x8a\x9b\xba\x15\xf1\xc5\xf1\x10\x40\x57\x04\xa6\x98\x63\x92\x92\xba\xe7\x13\x7a\x5d\x6b\xc8\xf4\x32\xa4\x05\x88\xec\x1e\x9e\x6a\xf6\x99\x2d\x78\xc2\x48\xb1\x3f\x47\xb3\xe8\xf8\xb3\xfb\x4a\xda\xfd\xe6\xe4\xef\x7c\x46\x1c\x94\x8d\x6d\x40\x7a\xc2\xd2\x21\x85\xef\x3f\x8d\xe3\xcd\x37\xbe\xf9\x9c\x9a\x25\xd7\xa5\x76\x95\x09\xb7\x8f\xce\x79\x99\xe2\xa4\xc8\x87\x2b\x36\xcb\xad\x48\xc0\x6b\x8d\x6c\x51\xfd\xda\xe8\x9e\x9f\x7e\xba\x9d\xf4\x28\x5c\xe9\xc3\x70\x08\x07\x23\x7d\x9e\xaa\xd4\xca\x64\xc2\x1d\xcd\x85\x32\x34\xa3\xb1\x19\xc4\x0c\x3f\xc5\x61\xe0\xd1\x60\xd8\x9c\xab\x5a\x63\xed\xa3\x8e\x1f\x84\xb9\xda\x24\x07\x37\xb4\x06\xd3\x15\x08\xdd\x8f\x76\x3c\x0e\xff\xa8\x9a\xdd\xde\xa3\xca\xb8\x59\x38\x88\x4d\x04\x9f\xc1\xfc\x08\xf4\x29\xc2\x95\xe0\xfb\x57\x26\x4c\xc7\x49\xca\xbd\xb4\xc6\xce\x8c\x1b\xf1\x17\xee\xae\x19\x4d\x2f\x0f\x75\x72\x04\xcf\xeb\xf4\xcd\xb0\x0b\x6f\xd4\x66\x2b\xe6\xf7\x93\x83\x32\x61\x2c\xcf\x0d\xc0\xe0\x4b\x1d\x0f\x12\xbe\xd4\xcc\x54\xb7\x94\xaf\x24\x49\xbf\xe5\x73\x87\xcb\x8a\x0a\xf1\xf2\x67\xb2\x9c\xa5\x85\xf0\xcb\x60\x75\x6f\x6b\x24\xee\xed\x26\x95\x73\x42\x81\x2d\x83\xbb\x14\x1e\xf3\xf4\x44\xa9\x38\x21\x7a\x41\x43\x61\x2b\x81\xed\xd7\x2f\xa9\xf1\xb1\x41\x6a\x7a\x3d\xb0\x1a\x09\x9e\xe3\xc1\x44\xf3\x9e\xd7\x09\x19\x0f\xcc\xed\x69\xe7\x45\xea\x96\x04\x16\xee\x7f\x81\x97\xe1\x1b\x0d\x3d\x23\xbc\x51\xca\x94\x00\x88\xbf\x4e\x41\x76\x9f\x6f\x2a\x20\xb8\x41\x38\x6e\xa9\xae\xec\x9a\xa6\x3e\x5e\x53\xa1\x79\xdf\x46\x61\x60\x72\x8b\x84\xc2\x69\x05\x39\x60\xe0\xdb\x6a\x2c\xac\xae\xa4\x47\x0c\x9c\x07\x5d\x8c\x82\x3a\xfd\xd6\xa9\xef\x97\x6e\x55\x78\x9c\xc8\x66\x99\x4d\x5b\x9e\xed\xe4\xd6\xc4\x97\x3c\x6e\xa9\x39\x4f\x0a\xa8\xb7\x2b\x42\x6c\xc0\x05\x61\x76\x1f\xea\xfa\xcc\xec\x44\xc7\xf7\x02\x01\x44\xe4\x6b\x78\xf9\x4a\xc3\x0f\x55\xc8\x77\xe9\x31\xa2\xd3\xb5\x7d\xea\x3f\x32\xcc\x4d\xb4\x0a\xa0\x3d\xa2\x71\xd6\x94\x43\x90\xfd\x7e\xc7\xf7\xe4\x2e\xaa\x6c\xeb\x9b\xc8\x61\xb4\xee\xae\xcc\x2e\x2a\xb6\x8a\xeb\x6a\x64\xa5\xc8\x8a\xd2\xca\xa1\x61\xae\xed\x25\x33\x12\x4c\x14\x89\xc2\x35\xfa\x54\x84\x27\x9b\xa7\xbe\x8c\xb4\x19\x03\x16\xb8\x79\x1b\x61\x85\x93\x8a\xf7\x4a\xf9\xe7\x3b\x02\xff\x4e\xc3\x1c\xc5\x00\x19\xc3\x68\x39\xf2\x99\x4b\x9a\x72\xda\x60\xba\x5e\x38\x74\xfc\x98\xcb\xda\x44\xf4\x16\xd2\x6d\xaa\xc9\x25\x65\x0a\xe1\xa2\x6a\x39\x0e\xf9\x16\xf4\x57\x1c\x75\xdd\xaf\xbb\x09\x58\x25\x4e\xcc\x5e\x17\x70\xff\xb3\x5a\xc9\xc2\xf6\xfb\x18\x83\xab\x84\x96\x7c\xa3\xba\xd1\xaf\x98\xb1\x89\x1f\x2e\x57\x09\xe7\xe5\x43\x3c\x0f\xd1\xc0\xa1\x9c\x12\x6f\x0f\x16\x1b\xd8\xa7\x75\xda\x29\xc8\x1c\x77\x60\x0a\xc5\xe9\xae\xef\x9d\x93\x3f\x42\x6e\xec\xe8\xe0\xca\x75\x05\xc8\x97\x91\x15\xc2\xde\xea\x2b\xd5\xbf\xf4\x4b\x3f\xa3\xa6\x36\xdf\x44\x15\xcb\x05\x18\x7b\xe6\xf7\x3b\x45\x0d\xc5\xef\xa4\xa7\x3e\x4f\x12\x3e\x45\xc8\x0a\xfc\x24\xe1\x4f\xa9\xee\x8c\xc5\xfc\x0b\xaa\x2e\xc3\xbb\xde\x04\xf8\xc7\x21\xef\xca\x03\x83\x0d\xfb\x83\x8e\xda\x22\x9b\xa9\x1c\x22\x43\xf3\x0a\xb8\x72\x6a\xe2\x79\xb9\xaf\x23\xcb\x81\x2d\x06\x24\x97\x41\x91\x44\x52\x21\xc4\x41\x6a\x3e\xf3\xae\xae\xab\x5d\x21\xce\x11\xa6\x21\xa7\x1a\x1b\x3c\x13\x57\xec\xdc\x24\xce\xde\x39\x2f\x6d\x8b\xcd\x23\x2a\x2d\xb4\x8d\xf9\xe3\x6b\xae\x70\xff\x0b\xed\xa5\x30\xee\x53\x6a\x83\x66\x27\xaa\x53\x7c\xad\xe2\x94\xbd\xfb\xf6\x6f\xf1\xcd\x7e\xee\x1f\x22\x23\xbe\xd2\xf1\x3b\xe5\xa2\x22\xd1\x3d\xd5\x29\xf7\x27\xeb\xb2\x35\xb4\x36\x81\xef\x4b\x83\xb0\xf4\x28\x1a\xac\xed\xb8\x5c\xcf\x34\x44\xda\xcf\xb6\xed\xa1\x71\x14\x06\x21\x1a\x73\x88\x0d\x31\x9d\xca\xd7\x35\x87\x57\x26\x64\x36\x1d\x85\xb1\x89\x66\x7c\x2d\xe0\x82\x22\xc8\xe5\xdf\xc3\x9c\xc5\x8e\xf0\x6c\x98\xac\x6c\xa9\x00\xb2\x16\x16\xd6\x59\xfc\x05\x86\x72\x16\xa2\x49\x64\x6a\x9f\xf8\x3c\xa2\x35\xc1\x5f\x3d\xe5\x89\x3a\xe2\x38\x29\x62\x90\x51\x33\xf1\x9e\x50\xb1\xfa\xaa\x23\x72\x44\xa4\xb8\x27\x3e\x43\xdc\xf9\xa5\x1d\x4a\x56\xe3\x82\x16\x53\x79\x87\xf6\x86\x93\x97\x2c\xb7\x03\x22\xf8\xb3\x38\x6f\x7c\x83\xf3\x86\x0f\x7c\x97\x3e\x9c\x7b\x15\x5d\x35\x82\xc3\x2c\xdd\x1a\x3b\xcf\x1a\xb4\x64\x89\xb0\x31\x99\x0a\x5d\x38\x7f\x1a\xca\x20\x91\x5d\xb6\x78\xb0\x70\xfb\xe7\x54\xd2\x7c\x4e\xc9\xa1\x1e\xb4\x71\x16\xc6\x83\xdc\xe9\xbe\xb0\x50\x4f\x55\xb5\x67\x97\x03\x0a\x12\x7e\xcd\x85\xb4\xd8\xf4\xc7\x14\xc7\xfa\x31\x65\xf1\x32\x3b\xce\x9f\x01\x62\x45\x78\x19\x54\x49\x05\xa5\x53\xe1\x62\xa0\xdf\xc3\xff\xb0\xc1\xe5\xc7\x04\x96\x43\x35\xe7\xa2\x22\x69\xbf\x81\x48\xc6\x29\x4d\x96\x6f\x0d\xcb\xf6\x27\x34\x56\x8f\x00\xe2\x26\xd5\x51\xa4\xc5\x4f\x0b\x0d\x77\xba\x03\xed\x22\x58\x4c\xd4\x14\x98\x67\x75\xa2\xc2\xdc\x73\x60\x3a\x90\x85\xd8\x88\x84\x3c\x30\xb7\xd8\x8e\xed\x20\xc9\x43\xe3\xf9\x16\xb9\x8e\x4a\x3b\x5c\x6a\xaa\x0d\xf0\xcc\x30\xee\x17\x81\xb4\x62\xf0\x5c\xff\x33\xb8\x78\xbe\xf1\xc5\x74\x56\x12\x20\xd3\xd4\x28\xaa\xe5\x4d\x45\x52\xc8\x93\x84\xbf\x7d\x4b\x4b\xac\xbc\xd5\x24\x43\xd7\x4f\xcd\x48\x68\xd1\x59\x60\x7e\xa2\x86\xf3\x38\x66\x90\x3a\x98\x62\xa8\x0b\xa3\x65\x68\x78\xbe\xe4\x06\x20\x74\xd5\x48\x1d\x29\x46\xb3\xc9\x68\x44\x03\x50\x57\x3a\x35\x11\xb7\x88\xa5\xcb\x5f\x3e\x7a\x69\xff\x7b\xaa\x1a\x62\xac\x0d\x6d\x46\x82\x33\xae\x07\xa4\x75\x21\x2b\x81\x9f\x2a\x8b\x42\x36\x0d\x16\xf6\x6c\x95\x2b\xb6\x17\xcc\xaa\xe2\x34\xdc\x16\x0c\x0d\x84\xca\xf8\xba\xa3\x26\xa8\x9a\xaa\x33\x51\x18\x1f\xe4\x82\x8e\x0b\xa1\x5c\xc3\xb2\x2e\x7d\x4e\xa0\x9b\x9e\x1a\x5a\x40\x84\x7a\x59\xa1\xab\x2f\xd7\x1a\xd9\x5f\x69\x9b\x20\x48\x0b\x79\x09\xcf\x5f\xe0\x10\xc9\x30\x46\x03\xc6\x69\x1c\xe6\x79\xd6\x2b\xd2\x01\x14\x18\x85\xc1\x5f\x1d\xf5\x93\x2a\xed\x8b\x4d\x5e\xe6\x1b\xd1\xea\x8c\xcf\x67\xce\x69\xd1\x0c\x10\x62\x0b\x39\x68\x13\x1b\x4f\xd1\x0f\x05\xb3\x86\x9d\x7a\x5b\x95\x12\xb7\x74\x55\xd7\xee\xc7\x38\x74\x70\x0e\x67\xdd\xce\x4f\x96\x6d\xda\x2f\x34\x97\x22\x7f\x03\x47\x55\xb7\xb0\xc0\x08\xa0\x27\x28\xe2\x84\x11\xde\x3e\xad\xd0\x1a\xe5\x69\x18\x70\x73\x07\x68\x9c\xb7\x68\x34\x19\x25\xa8\x3b\x08\xaf\xdc\x62\x78\x78\x28\x54\x4b\xa5\x91\xd0\x50\xf1\xde\xd7\x1e\x9b\x54\xa6\x3d\x59\x96\xaf\xa3\x88\x99\xbf\xa3\xd8\x95\x40\x8b\x6b\xb3\x6d\x7e\x42\x8e\xb1\x36\x30\xca\x37\x10\xaa\x60\x67\xde\xd2\x22\x1a\x9f\x4c\x7c\x5b\x99\xa7\x1d\xe0\xc0\x1e\xe0\x54\xe1\x5f\xb4\x6c\x68\x11\xe7\x61\xf4\xb8\x9a\x04\xfc\x43\xd5\x25\xd8\xd4\x55\xf3\xce\x9f\x74\x7c\xe6\xc0\x14\x1f\x58\xc1\xb7\x10\x07\x89\xac\xa7\x62\xe8\x7c\x8f\x90\x43\x4e\x31\xbe\x8c\x00\xe5\xa9\x95\xa6\x72\x1d\xea\x2b\x8c\x3d\xec\x28\xf8\xd1\xbb\x8a\x35\x04\xf5\x56\x44\x53\xb7\x34\x83\xd5\xe6\xae\x9f\x9b\x3a\x5a\xa3\x34\x9e\xdf\xdf\xce\xcc\xea\x8c\x3a\xe9\x4c\x8a\x09\x93\xfe\xbe\x46\x66\xa8\xf5\x58\x8a\x0c\x17\x04\xe0\x07\xee\x77\x14\xee\xeb\x7e\x13\xc7\xd8\x20\x0d\xed\x52\xcb\xef\x3a\xce\xbd\xf8\xc6\x75\xdf\x7a\x26\x1f\xa6\x49\x32\xc2\x71\x77\x8d\x35\x37\x8b\xeb\xa5\xf7\x7b\x49\x92\x39\x71\x4d\x38\x05\x64\x3f\x4e\xd1\xb4\x7c\x5a\x30\xfc\xad\x5a\xd7\xbb\xf4\x16\xb9\x89\x68\x30\x68\x61\xc1\x09\xc3\xd1\xaf\x10\x65\xb8\x5d\x6e\xd6\x93\x19\x88\xe4\xd3\x50\x13\x3a\xac\x84\xfe\xbf\x87\x4f\x43\x8c\xf1\xae\x9b\x12\xcd\x8a\x1e\xb5\x70\x02\xe0\x0c\x35\xb8\x16\x7e\x15\xf0\x41\x3c\xa8\x7b\x75\x3e\xdb\x32\x4c\x32\x29\x66\x98\x5a\xfe\x2f\x3f\x52\xd4\x53\x1f\xd5\x5e\xb5\x77\xae\x5d\xc4\x7d\x9b\x66\xb9\x89\xfb\x33\x3e\x37\xbc\xab\x20\x06\xc8\x4e\xd1\x2b\x3e\xe9\x7e\xa8\x05\x17\x0e\x41\x8e\x7d\x8a\x03\x10\x06\x5f\x4f\x1b\x48\x24\xcc\x12\x01\xfa\x5a\x6a\x4a\xb7\xa3\x82\x4a\x4d\x5d\x12\x98\x2c\x4f\x93\x19\xaf\xfc\xb4\x95\x92\x8e\x8a\xc2\x37\x7a\x1d\xf7\x94\x5f\x84\xe6\x1b\xd6\x5e\xa6\xa4\x3c\x20\xfe\x66\x47\xa1\xd1\xd7\x14\x50\x76\x14\x46\x7d\xbb\x02\x22\x43\x19\xbc\xa4\x64\x0b\x1f\xbd\xa6\x4e\xcc\x3f\xc3\x47\x0b\x1f\x91\x37\xd9\x63\x13\xc6\x4b\x05\x45\x67\x4a\xaa\x49\xd1\xc6\x6a\x9c\x55\x3f\x35\xf4\xa4\x54\x4c\x74\x4f\x51\xe4\xdc\x53\xb4\x43\x9e\x36\x42\x5c\x4e\x13\xd3\x7d\x43\x18\x9a\x0d\x6d\x84\x73\xe4\xe2\x37\xd7\x99\xd3\x84\x70\x26\x85\x5a\xa3\x67\xcc\xbb\xd5\xf1\xb0\xb9\x5b\xae\xfa\x19\xc6\xcb\x36\xcb\xc3\x81\xc9\x25\x70\xe2\xd6\x27\x8c\xb8\xf4\x41\x3d\xa4\xf2\x15\xbb\xb4\xd4\xd2\xc3\x35\x7a\xe8\x66\xa3\xcb\x7a\x71\x7e\x7f\x7b\x68\x32\x16\x6a\x63\x76\xd8\x8e\x1f\x9f\x7b\xaf\x86\x87\xdc\x3d\xdf\x5e\x8a\x92\x95\x56\x05\xde\xbf\xb0\xe0\x7c\x55\x93\x70\x61\x36\x4c\xc3\xd8\x97\x97\xb0\xad\x8f\x2a\x58\xaa\x56\xc9\x34\x03\xfb\xb8\xa2\xbe\x62\x89\x49\x58\xf5\x2b\x64\x69\x61\x50\x4f\x4c\x3c\x83\xe4\x17\x91\x4f\x70\xef\x7c\xe2\x37\x14\xd2\x4b\x72\xbe\xe1\xdf\x46\xf8\x0b\x1b\xb0\xa9\x5b\x61\x38\xd6\x2c\xe7\x4a\x2f\x0a\xe9\xa5\x50\x26\xfa\x88\xee\xca\x53\x53\x45\xbe\xb6\x85\x8b\xe8\x88\x0b\x10\x3a\x01\xe1\x75\xf1\x33\x31\x03\x7d\x13\x45\x26\xa3\x83\x26\x6d\x63\x45\x01\x7e\xa5\xa3\xda\x63\xaf\xe3\x19\xc0\x60\x0d\xcd\x41\x9b\x8d\xad\x49\x2d\x8f\x4c\x4a\xf6\xe2\xc3\x9b\xa3\xba\x4e\x15\x07\x26\x8e\x59\x9a\x1d\x9d\x87\x07\x6a\xa2\xf4\x8e\xd2\x23\x7b\xab\x69\x20\xbe\x67\x63\xbb\xc4\xa4\x81\xa8\x1d\x1c\xc1\xbe\xe3\x1b\x35\xb9\x15\x9b\x83\x16\xe6\x4c\x05\x16\xa2\x9a\x73\xa1\xa3\xe6\x04\xdf\xd8\x08\xe6\xda\xb3\x77\x4f\x7b\x61\x61\x1f\x0a\x9d\x58\xed\x7f\xae\x87\xa1\xff\xb9\xda\x1e\x71\xdf\x6c\x53\x87\xe6\x30\x95\x35\x44\xb3\xbb\xa5\x94\x99\x14\x09\xe9\x79\xb0\x6d\xca\x73\x6c\x39\x0e\xf0\x07\x5a\xe5\x5b\xd3\x98\x66\xc3\x64\x3c\x8b\xa7\xaa\x46\x28\x3d\x5f\x3c\xbd\x8c\xff\xa5\xa3\x7e\xe7\xd9\x8e\xef\x52\x11\xad\x58\x14\x06\xa6\x27\x08\xc9\x0a\x1d\x37\xdf\x74\xbc\x74\x66\x6a\xb3\x24\x2a\x72\x51\xa6\x07\x88\xe9\x38\xc5\x2b\x7c\xad\x98\x02\x46\x26\xb7\x69\x68\xa2\x8c\xc4\xeb\xa4\x8a\xa5\xf4\x88\x3a\x7e\xb6\xf9\x8a\x2a\xb2\x70\xcf\x03\x25\x93\xbf\xc4\x66\x47\x58\xf8\x7a\x47\x45\xba\x87\xd5\x92\xff\xfb\x5f\xcd\x20\x1a\xac\x49\x87\x64\xae\x52\x3d\xa6\x6f\x50\x87\x4f\x76\x16\x2d\x91\xd4\x1d\x6b\xa0\xb6\xf9\x76\x56\xa4\xcb\x76\xb5\x22\x45\x7a\x4a\x0d\x86\x9f\xaa\x65\x9e\x5f\x29\xe3\x73\x1a\xea\xf1\xfe\x16\xfd\x94\xb7\x14\xc9\xec\x5b\x0a\x39\x40\x8c\x32\x2d\xe5\x0c\x4e\x4d\x14\xbb\x78\xbd\x41\x38\xbf\xbf\xdd\xb3\x76\xec\x0c\x15\x0e\xf1\x75\x45\xfe\x72\xbd\x92\xa9\x0f\xc3\xd1\xa3\x6a\xcf\x72\x04\x09\xbf\x7f\x8e\xcc\x13\x5e\xb5\x89\x28\x9e\xb5\x26\xaf\x92\x78\x14\x3a\x34\xae\x02\x3a\x52\xf8\xdd\xf3\xbc\x12\xd7\x95\x72\xda\xbf\x80\x6b\x93\x64\xcc\xf3\x0f\x00\x3d\xcd\xe4\x7d\x64\x25\x45\x1e\xb1\xc2\xbb\x18\x66\x3b\xe8\x20\xe2\x45\x0f\xe8\x45\x78\xb3\xef\x21\x93\x45\x70\x76\x84\x3a\x89\x78\x87\xab\xd8\x23\xfc\x0a\x15\x99\x83\x6a\x17\xe6\xf4\x8f\xe8\x23\x71\x8e\xfe\xb8\xc2\x17\xdf\xf1\x43\x1e\x8f\xd0\xc6\x11\x42\x3d\x5a\x38\x1c\xe2\x1b\x15\xf3\x9f\x3d\x44\xab\x82\x58\xf5\x3c\xe2\x6d\x57\x69\xf6\x19\x03\xbf\x03\x10\x0c\xc7\xc8\x50\x0b\x2a\x8d\xb6\x14\xfa\x35\x5f\xec\xba\x4a\xdd\xd7\x77\x4d\x4b\x5b\x81\xff\xff\x2d\x04\xf8\xc8\x03\x66\x6b\x3c\x40\x07\xe6\xe6\x59\x5e\x55\xdc\x3f\x22\xfa\xcb\xaa\x82\x76\x59\x01\x43\x56\x4c\x9a\xda\x98\x05\x95\xb1\x3c\x77\xb5\x22\xe1\x5d\x55\xed\x0e\xa8\x2c\x57\xbe\x0f\x6a\xda\xeb\x1a\x6c\x42\xcf\x1d\x1b\x62\xab\x62\xcd\xcd\x53\xbb\x1c\xc6\x09\x4a\x0f\x7a\xe8\x01\x3b\xef\x64\xa5\x62\x41\x50\x47\xfe\x07\xe5\x0b\x22\x6b\x96\xc3\x78\x00\x80\xa2\xe8\x08\x96\x9b\x54\xfe\x94\x36\x00\x9e\x21\x10\x48\xa8\xb1\xde\x56\x21\xd2\xb9\xce\x13\x1a\x0d\xc6\xe6\x8a\x5a\xd7\x70\x63\xb7\x75\x35\xf9\xb4\xd6\x44\x76\xb3\xab\x03\xf3\x9a\xcd\x41\x9c\x0a\xe0\xdb\xfb\x9a\xff\xf3\x7d\x45\x1d\x31\x32\xd1\xd8\xf6\xad\x02\xe4\xb1\x62\x1d\xdf\x28\xdb\x99\x99\x25\x3b\x28\x4c\xda\x07\x91\x11\x8f\x62\xd3\x12\x89\x5e\x34\xfd\x6e\x09\xc4\x76\xa8\x63\xfc\xcc\x0e\x58\x7a\x15\x3d\xce\xb3\x23\x3e\x4e\x25\x7b\x57\x41\x77\x03\xf9\xff\x17\xbe\x07\x8e\xf4\x35\x5a\x45\x1c\x23\xf0\x09\xa1\x75\xf0\x43\xb4\xf5\xdc\xae\x2c\xf7\x06\xbf\x6d\xa7\xf5\xf4\xd3\xbe\xc6\xef\xb9\xed\xfe\xb4\xe3\x75\x1e\xce\xd5\x48\x6b\x25\x78\x38\x68\xca\xe4\xa1\x0f\xb7\x2c\x55\x68\xe5\xc9\x4e\xd6\xfa\xa9\x18\x2f\x29\xe2\xa4\x08\x86\x61\x4b\x57\xbe\x7e\x4f\xcf\x50\xfe\x9e\x1a\x5f\x48\xc3\x8c\x98\x2d\xcb\x13\x07\x9f\xba\x09\x52\x9a\x7c\x43\xf0\x58\x86\x89\x74\x3c\xbb\xfa\xdd\x8e\xa2\x04\xbc\x4a\x65\x62\xc4\x0a\x38\x3a\xb4\x49\xb6\x3c\x45\xad\x45\x1c\xbe\x56\x77\x63\x8c\xb4\x7b\x37\x0d\x4f\xa7\x61\xaf\xe0\xe3\x37\x2f\x58\xe5\x49\x65\x5a\xce\xfb\xeb\x60\x29\xc0\xfc\xa6\xb2\x2e\x8b\x6e\x04\xd8\x97\x4c\x7e\xe2\x26\xc0\x83\x61\x91\x06\xc3\x2d\x95\x19\xa7\x89\xf2\x45\x0f\x3c\xd9\xdd\x3f\x04\x2d\x23\x4e\xc0\x8d\x89\xa2\xee\x79\x43\x0d\x94\x27\x3d\x9b\x91\x30\x19\x1c\x3b\x4b\xba\xc0\xf2\x71\xaf\x09\x69\xc3\x43\xb4\x45\x50\x85\xbd\xe7\x30\x79\xc3\x22\xcd\x19\xe2\x84\x6c\xab\xc5\xac\x0b\xa8\x7c\x7c\x4b\xcf\x1c\x6d\x9e\x7a\xc0\x77\x90\xc4\x4c\x90\x6a\x53\xb4\xad\x59\x13\xb2\xe3\x13\xb7\x63\x4d\x0d\xdf\x3c\x0c\x44\x72\x91\x07\x85\x69\x9d\x64\x68\x58\xfb\x39\xdb\xaf\xd2\x17\x9d\xd6\x6b\x70\xba\xe6\x46\x17\x16\xda\xc9\xd8\xc6\xce\x8d\xc2\x04\x42\xc0\x9f\xaf\x3b\x3b\xb5\x9a\x7e\xd4\x4f\x6d\xfc\xb0\x42\x89\x7c\x34\xf1\xe4\x15\x1f\x20\x78\x13\x81\x15\xdf\x77\x3c\x86\x13\x8d\xa3\xce\x3a\xff\x42\xd1\x06\x48\x39\xbf\x06\x71\x8d\x1b\xac\xf1\x84\x0e\x1f\x4c\x3c\x75\xde\xc7\x4d\xb2\x94\x3d\x13\x1c\x2c\xb8\x01\xef\x94\x2c\xbd\xaa\xa5\xfa\x15\x84\xf2\xcb\xf2\xec\x51\x2d\xaf\x73\x7e\xa2\x00\x4c\xb7\xd1\x26\x41\x21\x6c\x1b\x50\xf3\x7c\xd3\x55\x3c\x6f\xbf\xa7\xc3\xe6\x0f\xe8\x60\x39\x2e\xff\x03\x12\xe8\xdd\xa3\x6f\x81\x48\xeb\x16\x30\xb7\xfc\x47\x1d\x3f\xfa\xfe\xa7\x1d\xd5\x07\xff\xae\x66\x9e\xb9\xe4\x18\xc5\xb2\xa4\x88\xc8\x60\xa2\x84\x84\x64\x11\xfe\xe0\x1e\xbd\x95\x64\xfe\x3e\x8a\x18\x86\x71\x9e\xb5\xbc\xa2\x3f\xa0\xbd\x42\x3c\xe3\x8f\x64\xcf\xa6\x39\x55\x29\x50\x47\x7d\x43\x89\x4c\xbe\xa1\xcc\x8c\x89\x8a\x51\x1c\x62\xa3\xe0\x07\x9d\x56\x3f\xee\xb4\x9a\x26\x85\xe8\x08\x90\xe3\x08\xdf\xff\x62\xa2\xaa\x50\x57\xd5\xe0\xf5\xf7\x69\x9b\x08\xe7\xa9\x1c\xb1\xe5\x30\x4f\x13\xda\xf0\x08\x78\xd9\x66\xf2\x8d\x02\x64\x85\xb1\x09\xc2\xa4\xe5\x11\x13\xac\x43\x2f\x9c\xe3\x8e\xac\x23\x08\x8a\x71\x68\xf9\xd8\xc2\x6e\xdc\xee\x28\x81\xd5\x6b\x4a\x18\xea\x1d\x55\x1a\x2d\x63\x5f\xe8\x09\x2a\xe2\xdf\x72\xad\xc4\x10\x35\xc9\x04\x16\xc2\xdc\x83\x22\xe9\x51\x85\x82\xf5\xe8\xf8\x91\xed\x87\x81\x09\x49\x07\x66\xb1\x22\xb9\xc6\x0c\xeb\xf8\x25\xd8\x5e\x77\xd4\xbc\xf1\x19\x85\x82\x09\x52\xdb\x0f\x73\xa0\x08\x98\xc4\x08\xdb\x47\x18\x8d\x64\x45\xc7\xd6\x25\x97\x4e\x84\xd0\x21\x4f\x81\x7a\xc4\x4b\x6e\x29\xbc\x6d\x3f\x5c\xb6\x69\x66\xd5\x20\xf9\x71\x45\x3e\x75\xbc\xfa\xc4\x93\x95\x58\x7d\x0d\x40\xa0\x64\x9a\x76\x57\x35\x8b\xfc\x85\xf6\xde\xb9\x19\xdf\x59\x3e\x3b\x51\x1a\xb1\xc7\x68\x4e\x4b\xa8\x7d\x6a\xd4\xac\xf3\x24\x40\xcb\xbd\x52\x9c\x5d\xd0\x16\x0b\x1a\xd9\xff\xaa\xfb\x13\x3f\xcc\xb0\x92\x9a\xf1\x58\x8a\x8e\x18\x00\x44\x30\x07\xcb\x38\x03\xfc\xa2\x3c\x22\x1f\xe3\x0e\xcd\x78\x8b\xa2\x4b\x06\x8d\x14\xe6\x36\x11\x3f\x38\xcb\x57\x2e\xba\xf4\x68\x29\x10\x16\xb1\x62\xf1\x3b\x79\x6a\x82\x83\xdc\x70\xc0\xd3\x7e\xa0\x10\xb9\x2c\xe6\x21\x42\x11\xb4\x20\x88\xf0\x6f\x2a\x48\x52\x7f\x35\x36\xa3\x90\x1d\xa8\x0b\x0c\x5d\x57\x7c\xd3\x54\x05\x97\xdb\xbb\xd2\xac\x2e\x32\xbb\xa3\x0c\x34\xa5\x16\x46\x06\x0d\x55\xc8\x0f\xb0\xf4\xf0\xf5\x3b\x69\x21\x61\x5f\x1e\xa2\x09\x7c\x18\x81\xc7\x09\xf7\x89\x16\xf8\x4e\x4a\x90\x3c\x0f\xc9\x1c\x6f\x50\x86\x1d\xc0\x42\x63\x0c\x0e\x67\xf0\x49\x98\x4c\x35\x43\xf0\x92\x1b\x0f\xf5\xf9\xdf\x38\x39\x68\x21\x67\xe4\x24\x0b\x54\xd7\x5a\xd5\x2f\x53\x43\x2a\x4f\xe5\xd3\x42\xb4\xc8\x54\x46\x7c\x03\x0b\x2b\x25\x9d\x96\x92\x17\xf4\xfe\x03\xf4\x9a\xa8\x9a\x5d\x54\x15\xe4\x73\x35\xbf\x32\xbf\xbf\x6d\xd2\xc0\xc4\xc0\xfb\xa2\x02\x85\x3a\x15\x5f\xab\xca\xea\xb2\x19\x27\x69\x46\xb5\x4d\xa7\x5a\xe6\x15\xcc\x54\x52\x61\x8a\x3c\x45\x11\xaf\x52\xab\x15\x2c\xb2\x12\xf7\x4e\x93\x31\x31\x6f\x28\x77\x0b\xfe\x7c\xbe\x76\x05\xfc\xa1\xc9\x86\x61\x36\x54\xa2\xcc\x55\x9c\xdf\x4e\x5d\xb8\xc8\x8d\x13\x03\x74\x9a\x78\xee\xcc\x68\x36\x8f\x41\xd8\xdf\xaa\xc8\x59\x4f\x4e\x7c\xe1\xfd\x92\x82\xd2\xcf\xa0\xec\x27\x84\x32\x2e\x32\xf9\x7b\x7f\xab\xab\xf6\xfa\xf9\xa6\x4e\xc6\x72\x12\x30\x66\x90\x27\x70\x68\x6d\x65\x1a\xa7\x81\x66\xd4\x66\xdc\x2a\x73\x8c\x82\x7e\x6a\xef\x07\x3a\xae\xf8\x54\x71\x01\x42\x66\x03\xbf\xef\x5d\x27\xc4\x55\xc4\x64\xdc\x44\x78\x85\x3c\xd3\x2f\xee\xf4\xca\x4f\xbf\xb8\xd3\xd3\x1a\x92\xa5\xc6\x17\x85\xf3\xfe\x9f\xf0\xc1\x7c\xd3\xa9\x14\xa3\x6d\xba\x4c\xc5\x0f\x32\xca\xeb\xc4\x13\xb2\x67\xfd\x74\xad\x46\xb2\x67\xef\x1e\xe0\x65\x6d\x1a\xdb\x94\x1d\x93\xf8\x41\x84\x26\x28\x25\xb1\x9a\x0d\x92\xf4\x53\x93\x8d\x30\xff\xe7\x16\xdb\x10\xea\x15\xf2\xe6\xfb\x93\x2a\x49\x94\xc4\xfe\xff\xe1\x4e\x6a\x5f\x09\x90\xa9\xe1\x71\xf4\xad\x89\x28\xcc\x5c\x7f\x83\xc2\xa1\xf5\x37\x9c\x98\x92\x09\x88\x44\x33\x37\x52\xbf\x47\x17\xf2\x03\x7a\x7b\xbe\xee\x7c\x16\xdb\x6a\x9e\xa4\xc1\xb0\x34\xdb\x2d\xf5\xb8\xfe\xa4\xe3\x6b\x25\x7f\xa2\xc6\x41\xc6\xc5\x68\x2c\x58\x71\xe5\x08\xf7\x39\xdd\x11\xc5\x97\x94\x26\x33\x8a\x25\xfd\xaa\xf6\xe7\x17\x3c\x33\x6a\xfc\x56\x03\x59\xde\x4b\x6d\x7b\x28\x8c\x2c\xda\x75\x8e\x72\xdd\x13\xfa\x7f\x7b\xe2\x11\x99\x97\x9b\xca\x4f\xe3\x34\x19\x85\xac\xa6\x85\x02\xc8\xb7\x94\x54\xca\xb7\x9a\x14\xb2\xbf\xdc\xee\x87\xa9\x0d\x34\x01\x2f\xce\x0b\x5f\x2b\x22\x80\x95\xa1\x8d\x77\x95\xeb\xcc\x38\x35\xde\x11\xf8\x3e\xcc\x36\xec\xdc\x90\xc3\xdc\x7d\xd2\x69\x7d\xed\x37\xb9\x27\x73\xaa\xa3\x84\x6a\x00\x48\xc3\xa3\x5f\x03\xee\x07\x36\xe4\x1d\x0a\x5b\x15\x4b\xfe\x3c\x27\xc1\x9b\xa6\xad\xdd\xf3\x5c\xa6\x5f\x43\x5c\xaf\x85\xd1\x1d\x3f\x6f\xb9\xe2\xf0\xa7\xe8\xb8\xe3\x8f\xd6\x81\x3b\xe3\xcf\x98\xa8\x51\xb3\x77\x11\x9e\x88\x42\x6f\xc3\x84\x4c\x3f\xcc\x0e\x7e\x66\xbd\xbc\x01\x9d\xd1\xb3\x51\xb4\x62\xcb\x73\xa4\x38\x4f\x6e\xa3\x3d\xe5\x8c\xbf\x8a\x24\x7d\x63\x67\x60\xd3\x91\x89\xb7\x7b\x2e\xf8\x2d\x5f\x9a\xba\x29\xc2\xf5\x7f\xbb\xeb\x4b\xbb\xf7\xb4\xe6\xc5\x05\xfc\x38\x51\xaa\xa3\x1d\x84\x0f\x3a\xac\x1c\x22\x98\x56\x10\x5e\xbc\xdf\x80\xcd\x79\xa9\x6d\xb3\xcc\xc6\x79\xb8\x01\xb0\x04\xa9\x1f\xbe\xae\x35\x25\x30\xca\x16\x45\x36\xc8\x13\x11\xf2\x76\x85\xc0\x45\x11\x45\x38\xa2\x08\x28\x82\xa4\x48\x73\x53\x44\xfd\x4a\xc9\xeb\x53\x55\x1d\xfc\x54\x15\x67\xcc\x60\x40\x74\x15\xcb\x16\x83\x17\xe8\xe9\x61\xb8\x92\x3d\xa6\x92\x7b\x98\x99\x7a\x2c\x66\xf4\x0c\xc3\x74\x5c\xe1\xbd\x7c\xbd\x78\x59\x5a\x63\xc0\x89\xef\x75\x3c\xfe\x2d\x0b\x07\x31\xcd\x21\xc4\x79\xb4\x0a\xcb\x0e\xfc\xf1\xbd\x4a\xa0\xd0\x69\x1d\x98\x5b\x7f\x7f\xa2\xc6\x17\x37\x21\xaa\x10\x19\xbb\x06\xc6\x4a\x13\x45\x69\x38\x18\xe6\x71\x28\x88\x17\x34\x55\x2e\xab\x69\x9f\xcb\x4d\xfb\x2f\x5e\x0a\x7b\x2d\x35\x59\x75\x5e\x29\xa4\x9f\x6f\x7a\x41\xaf\x88\x80\x66\xc3\xdf\xfc\x54\xfd\xfd\x4f\x55\xa8\x3e\xa6\x09\xc4\x44\xa1\x6c\xe1\xee\x64\x5e\x70\x63\x61\xf3\xb9\xc5\xb6\x8d\x4d\x90\x3b\xca\x6e\xac\xe5\x31\xf5\x2c\x8e\x35\xf4\xf0\xda\xac\xf9\xe1\x72\xfa\xa6\x81\x0d\x3f\xa1\x1b\xf7\x8d\x50\x23\x8b\xe7\xa4\xdf\xce\x37\x2a\x6f\x0e\xe3\xa5\x30\x0e\xf3\x10\x1b\x43\x30\x61\x2d\xc7\xce\x82\xf6\xa9\x4c\x1e\x36\x6d\xdc\xa1\x8d\xc2\x20\x19\xe7\xe5\x49\x3d\x20\xa4\xd7\xe8\x1d\xc3\x4c\x5d\x55\xb4\xcc\xef\x6a\x0d\x10\x6b\x06\xa9\x19\xb5\xfc\x9e\x3d\xa5\x52\xc8\x53\x55\xfe\xfe\x62\xdc\xf2\xd3\x17\x17\x3a\x5a\xd0\x42\x02\xe2\x71\x8f\x13\x08\x27\xb8\xe2\xcc\xcd\x35\x5d\x9d\x5b\x77\x80\xee\x20\x19\xd3\xfe\x94\x60\x88\x9d\xb2\xe3\x6e\x77\xd3\xa1\xeb\x0a\x5d\xcc\x38\x4c\x7e\x85\xce\xda\x6c\x9a\x9b\x30\xde\xe1\x6b\x50\x9b\x89\xea\x13\x55\xdc\x53\xa8\x82\xa8\x5a\xaf\xc4\xd5\x37\x2b\x3a\x53\x1d\x55\xa9\x3a\xad\x06\xfa\x7e\x4c\xa5\x3c\xac\xee\x4d\xa5\xd8\x76\x05\xf6\x1d\x6e\x03\x01\xa2\x13\x49\xf2\x93\xf5\xa7\xeb\x42\xc8\x2f\xec\x6b\xf7\x4c\xe4\xf6\x89\x40\x86\x7d\x84\x79\xf8\x33\x59\x18\xbf\x34\xff\xdc\xb3\xcf\xed\xdf\xd7\x2a\x9f\x02\x1c\xc0\x63\xd3\xd6\xaf\xef\x93\xeb\xee\x53\xca\x4e\x8d\xc6\x36\x0f\x81\x99\xc0\x08\x17\x36\xc5\x75\x78\x3b\x58\x36\x4d\x02\x7f\x6a\x52\x91\x44\x86\xd0\xcd\x56\x95\xc8\x71\xdf\x81\x75\xa4\x26\x5e\x6c\xed\x0f\x61\x9c\x84\xc9\xcd\x27\x50\x1f\x77\x5a\x4a\xd4\xbb\x69\x8e\x38\x49\xfb\x36\x65\xd1\x09\xd9\xeb\x0a\xda\x76\x51\x05\xfa\xa9\x19\x87\xfd\x16\x55\x65\x31\xd1\x32\xd3\x55\xb3\xcd\x33\x53\x5d\xb7\x2b\x96\x92\x59\xf2\x92\xf8\x1e\xe7\x55\x52\x87\xf0\x9c\xaf\xe1\x3d\xe5\xc6\x7f\xd6\x4a\x52\xc4\x7d\xf2\x7f\xa8\xf3\xae\xeb\x82\xc9\xeb\x8a\xf6\x66\x73\x0d\xbf\xe3\x66\xc2\x92\xed\xe5\x1e\x64\xf2\xe4\x8e\x67\x11\x7f\x9b\xa6\x09\xdc\x04\x92\x53\x3a\xbf\x41\x9e\x0a\x27\x65\x6b\x57\xd1\x46\x3d\xe0\xa2\x9e\x1e\xdf\x00\xe8\xe0\xda\xe4\x29\x15\x2a\x83\xf1\x9f\x86\x4c\xb7\x28\x22\xad\xab\xd4\xa1\x12\x6f\xa3\x88\xc6\x19\x0c\x8f\xa7\xff\x57\x8a\xff\xe4\x7c\xd3\xfc\xd3\x20\x59\xb6\x24\xf9\x34\xa3\x02\xa1\x6d\x4a\x8d\xfa\x06\x2d\x32\x6a\x19\xb7\x1a\xd5\x69\x5e\x2d\x6c\x86\x26\xef\xee\xdd\x0e\x91\xa4\xa0\x09\xef\x2a\xcf\x39\x4e\x6d\x46\x3c\xf3\xab\x28\x83\xc3\x8a\x61\xd0\x96\xaf\x9b\x66\x8e\x83\xb4\x88\x83\x61\x68\x53\x4c\xb1\x0a\xb9\x16\x6d\x14\x78\xd2\x4b\x1d\x6f\x20\xd7\x1c\xf8\xb0\x57\xa4\x03\x9b\x65\x4a\xae\xff\xa6\x16\x06\xb8\xa9\x44\xed\x92\xa5\x25\x9a\x96\x77\x62\xb7\x50\xf7\x94\x44\xf1\x89\x0d\x74\x2d\x7b\xda\x0b\x0b\xe8\x3c\xa1\xf4\xca\x72\x26\x32\xc8\x54\x7e\xa0\xd0\xe7\xfa\x02\x2b\x6b\xbb\x0a\x4f\xa6\xd4\x3c\xfa\xa1\x19\xcb\x48\xbf\x00\xf1\x3c\xce\xfe\xac\x22\x5c\xa6\x71\xa0\x19\xd5\x41\x44\xe6\x82\x1e\xce\xdb\x13\xaf\x7e\x77\xad\xc2\x74\xf7\xdc\xfe\x7d\x3f\x8b\xcd\xe6\x1a\x03\xe5\x29\x42\x90\xd0\x9a\xfa\x2c\xfb\xc3\x89\x57\xcd\xa0\xee\x88\xf0\x57\x7e\x0c\x1d\x0f\x58\xdb\x0f\x34\x87\xdb\x25\x54\xad\x61\xa0\x11\x66\x33\xa7\x11\x19\x58\xd9\xd1\x88\x7a\x58\x41\x6b\x4a\xbf\x40\xba\x42\xb4\x26\xc0\xfd\x6c\xed\x52\x40\x2a\xf3\x0f\x8a\x33\xea\x30\x50\xdc\x78\x6e\x77\xa9\x9d\x2b\xea\x9e\x14\x67\x3a\xbf\x54\xee\x0f\x27\xf6\xbe\x7b\x7e\x7d\xda\xd9\xfc\x65\xce\x76\x76\x74\x5b\xcf\xcf\x3b\x21\x50\x3a\x25\xb8\xb9\x43\x51\x28\x2b\x6c\xc1\x7b\xb0\x46\xb0\x2a\x63\x1c\xc5\xce\x81\x37\xdd\x4e\xc5\x1e\xd6\xdb\xae\x55\x44\xf6\xce\xb5\xb3\x30\x12\x79\x76\xc7\x6f\xea\xb9\x4e\xdd\x06\x1d\xd8\x38\x8f\x2c\xd3\x17\x39\x59\x5a\x3f\x90\x3d\xdb\xf5\xbd\xca\x5b\x0a\x14\xd5\x0f\xb3\x21\x4e\x2c\x9e\xc2\x61\x95\x21\xc1\xfa\xe3\xf5\x5e\x40\x35\x09\x02\x43\x04\x6b\xf4\x2b\xb4\xe4\xa5\xaf\x1f\xfd\x92\x0b\xf9\x93\x74\x60\x67\x94\x88\x12\x44\x59\x25\xea\x54\xa3\x41\x6a\xd6\x3f\xe9\x01\x62\x26\x78\x0f\xc7\x7a\xe4\x19\x90\x94\x76\x4a\x66\x22\xfb\x08\x3d\x03\xee\x59\xa3\xb4\xc7\x45\x29\x5d\xa5\xb8\xa8\xcb\x08\x47\xc8\xe4\xa2\x3a\xbf\xce\xcc\xd4\xd8\x2e\x28\x64\xe1\x7a\xad\xe3\x45\x20\x4e\x29\x3e\xd2\xc3\xd8\x6c\x5c\x43\x45\x8a\x87\x87\x78\xbe\x96\xbd\x52\x2a\x1a\xdb\x40\x02\x63\xec\x5d\xc4\xb9\x7c\xdd\x64\x50\x49\x4f\x6e\xd9\xa6\x5c\x46\x76\xd4\xee\x2e\x8d\xbf\xa4\x42\xd3\x6f\xfa\xba\x27\xd1\x3a\xcd\xf8\x64\x16\x2b\x8e\x53\x0e\xa1\x18\xe4\xcc\x47\x54\xdd\xf5\x6b\xcf\xef\x6e\xb5\x14\x0f\xb6\x52\x92\xba\xd0\x79\x52\x01\x77\xf2\x34\xe9\x17\x01\x37\xcb\x9f\x75\xd3\x88\x1e\x4f\x0a\x8c\x28\xf6\xd2\xbf\xd6\xba\x7e\x15\xdd\xd9\x35\xa5\x63\x9d\x99\x28\x27\xc6\x4d\xfa\x06\xff\x39\x15\x4a\x71\x5c\xf8\x5a\xb7\x07\x86\xd6\xa4\x59\x12\xa3\x48\x0c\x84\xc3\x8f\x3b\x0a\x2b\xcf\xc0\x11\xec\x12\x1e\x36\xe4\x3f\xa3\xa3\x29\x2d\xe7\xc6\x72\x41\x96\x5b\x02\x90\xba\xb0\x17\x5c\x9a\x82\x5a\xd0\x94\x3e\xd9\x33\x33\xad\xc5\x45\xd6\xd7\x44\x74\xc5\x38\x35\x9c\x77\x8d\x5e\x0a\x92\xd1\x28\xcc\x73\x6b\xd1\x81\x17\xce\xd9\x32\x46\x83\x67\xff\x17\x7a\x64\xba\x91\x78\xce\xf6\xfb\xa1\xdd\xa0\xaa\x5d\x7e\xd8\x46\x46\x03\x7b\x48\x6b\x1e\x68\x8e\x22\x21\x2f\xf2\x6d\x28\x3b\xf8\xb7\x06\x94\x08\xa3\xcd\xf1\x66\x47\x01\xf7\xde\x54\x7f\x97\x91\x8a\xae\x7b\x0b\x5d\xdb\xd8\x5c\xa3\x6c\x28\x0d\x56\x0e\x31\x37\x7f\x08\xdf\xab\xb6\x20\x9d\x12\x4d\x98\x8d\x4d\x4e\x60\x4f\x8f\x93\xfc\x73\x1c\x2c\xbe\x51\x25\x9a\xa5\xb4\x74\xaa\x8a\xde\x5a\xd3\x5e\xd7\x05\x20\xfb\x36\x37\xc0\x91\x96\x2b\xe1\x52\x26\x9f\x3e\xd5\x8e\xdc\x9e\xbd\x7b\x5c\x5c\xdb\x52\xf4\x71\x18\x5e\x91\x01\x3f\x8f\xf2\x18\x0f\xc3\x28\xc9\x92\xf1\x90\x31\x6c\x3c\x1b\xa8\x68\xe8\x8f\xaa\x88\x71\x64\x06\x61\x40\xb3\xd7\xe8\x39\x1c\xa3\x99\x12\xf4\xba\x01\xd5\xe3\xeb\x89\x9f\x70\x3a\xe6\x79\x69\x6c\x9c\xd9\xed\x7a\x90\x04\xcf\x1f\xfd\xcc\x23\x13\xef\x43\xfe\xa9\x92\x12\x87\xb1\xa0\x1d\xff\xe2\xcf\x74\x95\x68\x27\x0a\x0c\xf4\x82\x7f\x77\x17\xcc\xa5\x98\x97\x06\x72\x12\x8e\xb4\xf2\xd0\x44\x30\x45\x6e\x60\xdc\xcd\xea\xa3\x4a\x2f\x8c\x46\x3b\xfc\x43\x2b\x62\x64\xc5\x9c\x42\x74\x74\x3a\xd1\x40\x28\x1a\x46\x46\x46\x96\x18\xaa\xae\xe1\xcd\x87\x55\x7a\x9c\x0f\x69\xeb\xa4\x04\xf2\x73\x8d\xa0\xf2\x97\x20\x31\xe4\x8c\xd1\xe9\x54\xf8\x9a\xff\x87\x13\x4d\xc6\xfa\x01\xfd\x0a\xe4\x29\xd7\xe8\xeb\x09\x94\x5a\xd6\xfe\x99\x95\xa1\xc9\x67\x94\xfc\xfc\x25\x0a\xc4\x81\x57\x39\x47\xa1\x12\xf2\x9f\xef\x69\x8e\x7b\x9b\x9b\x30\xe2\x9d\x2d\xda\xfd\xda\x7d\xd4\x29\xca\x48\x96\x72\x34\x92\x2d\x2b\x1d\x45\x3a\x0e\xd2\x6b\x14\x23\x6f\x0e\x85\xc9\x48\x58\x04\x9d\x0e\x6f\xf9\x83\x45\x3f\xb2\x1e\x5f\xb7\x4d\x91\x27\x23\x8f\x96\xe6\x7a\x00\x0c\xa6\x14\x07\x1c\x08\xa4\xf4\x3c\xdc\x52\x86\xb3\xc6\xd4\x20\x05\x44\x3b\x7f\xa6\xeb\x00\xe8\x47\x77\xa1\x1f\x01\x14\xdc\xf9\x46\x2e\x2d\xa7\xdd\xa4\xa9\x11\x58\x5f\x45\x66\x89\xd4\xd4\xda\xb2\x41\x75\xde\xa1\x99\x9d\x52\xff\xcc\x54\xb1\x01\x3f\xd4\xf5\xfd\xd0\xa5\x24\x1d\x81\x1e\xfe\x59\xb6\x89\xc8\xc4\xf9\x9a\xbe\xba\x68\x71\xfa\xce\xd4\x09\x3d\x69\x5d\x8c\x7a\x89\x52\x81\xbc\xa4\xb8\xa2\x3e\xd2\xcc\x3f\x47\x9a\xa6\x5a\xcd\x72\x68\x5c\xb8\xd2\xa4\x79\xe5\xb1\xfd\x7d\x02\x7c\x73\x0b\xc1\x49\xe3\xfb\x79\xd5\x93\x70\x67\xf8\xb0\x37\xb1\x48\x7c\xa3\xb0\x06\xab\x04\xe8\x52\xa2\x8d\x17\x95\xa6\x13\x22\x44\x1c\xf5\x1f\x75\xb4\x04\x70\x90\x8c\x2c\x47\x21\x30\x83\xe0\x58\xe7\xeb\xce\x2e\xd7\xc0\x7d\xb5\x08\x53\xeb\x4a\x61\x48\x46\x3e\xa5\x5f\xc4\xd7\xaa\x85\x50\xc4\xe8\x2b\xb9\xca\xfc\x19\xcd\xa5\x7c\x46\x91\x1a\xf7\x4d\x6e\x1e\xd6\xcc\x7f\xc7\x3a\xaa\x6c\xf9\x1e\xf6\x3a\x02\xf0\x0b\x08\xc0\x65\xf6\x8f\x36\x22\xde\xf0\x3a\xc2\xda\x0a\x11\xb0\x68\x44\x7a\x2b\x74\x05\x61\xb9\x93\xc7\x70\xd4\xf8\x27\xdd\x1e\x2f\xe2\x22\x93\x1e\x35\x8b\x61\x29\x54\xc2\xa6\xae\xc2\x35\x1f\x55\xa2\x65\x59\x9e\x44\x51\x55\x19\x84\x9e\xa5\x48\x83\x3c\xb1\x51\xf0\xfd\xd9\xf6\x2f\x62\xe3\x2b\x3d\xdd\x79\xc7\xed\xef\xb9\x41\x23\x3b\xb0\xfd\x8a\x84\xc6\x96\xae\x6f\xd6\x6d\x99\x7a\x1d\xfa\x91\xcd\xb7\x6a\x6c\x09\xad\x01\x02\xa0\x4d\x00\xfc\x33\x6a\xa5\xe3\x87\x65\x2e\x61\x0d\x1d\x34\x65\x61\x81\x33\xbc\x7b\x8d\x4c\x4f\x49\x9c\x83\xd1\x5e\x70\x5a\xe5\xe7\xf1\xb5\x7a\xa2\xc3\x22\xce\x19\x2a\xa6\x39\xd8\x11\x66\xdd\x54\x23\x21\xc7\x2b\x44\xed\x14\x7b\x4b\x2a\xeb\x8d\xba\x1d\x8d\xa3\x64\xd5\xda\x47\x14\xb6\x0e\x85\x7d\x01\xcb\x97\xd6\x96\xf5\x4f\x3a\x0a\x73\x07\x3e\x3f\x74\xe8\x31\xaa\x87\xd2\xc8\x9a\x06\xa7\x33\xf6\xcd\x45\x98\x7b\x95\x94\x8a\xaf\xde\x30\xc1\x2c\xdf\x54\x38\xa0\x23\xd3\x57\xb5\xce\xb3\x5a\x06\xee\xac\xd6\x9a\x34\x81\xdd\xd2\x72\xe3\xb9\x97\x15\x07\x0e\x97\xa4\xdc\x28\x93\x02\xcf\xf9\x36\xc4\x65\xb7\x27\xb2\xa2\x57\x9a\x61\x8b\x52\x13\x52\xd6\xbf\x99\x54\xd4\x60\x67\xbc\xe6\xdd\x55\x17\x06\x8e\xcb\x70\x3a\x63\x73\x24\x82\xf1\xf4\x6d\xf9\xc6\x39\x92\xb4\xf0\x76\x19\x5e\xf4\x4d\xbc\x3f\xdf\xd4\x10\x21\x7b\xe7\x08\xfb\xc5\x3e\xc4\xe9\x83\x3c\xe7\x67\xf3\x7d\x8f\x3e\xb2\x66\x50\xd8\xd9\x4a\x5b\xda\x77\x97\x2e\x75\x3c\xed\xeb\x3d\xfc\x0e\x6c\xc8\x3b\x8e\x3b\x2c\x48\xcd\xb2\x6d\x69\xfd\x14\xa5\x58\x7e\xa1\x52\x99\x88\x82\x04\x41\x1b\x0a\x83\xa7\x74\x95\xb0\x8e\x67\xa7\x70\x9f\xa6\x73\x67\x54\xb7\xf7\xaa\xaa\xb6\x60\x1f\x0b\x15\xb2\xb7\xa1\xd9\x30\x59\xb6\x08\x6f\x85\x7e\x08\x4c\x7b\x7c\xad\x6c\x34\x98\xff\x94\x4f\x5a\x53\x3e\x69\xad\x91\xa4\x94\x45\x8e\x28\x6a\x00\xac\xe4\x13\x25\x1e\xf7\x49\xad\x44\x3a\xbf\xbf\x0c\xf9\x8d\xa7\x3b\x43\x98\x8a\x49\x16\xbe\x56\x96\x3a\x4e\x46\x45\x6a\x66\x55\x68\x7e\x6c\xa2\x27\x74\x4e\x00\x97\xcb\xff\xd4\x51\x10\x93\x13\x93\x87\x3d\x5a\x7e\x8b\x1f\xa0\x60\xdd\x72\xc7\xb0\xf9\xfc\xbc\x9b\x52\xf0\x79\xe0\x1d\xb8\x34\xc4\xa7\x9f\xaa\x8e\xe0\x98\x76\x1f\x31\x3b\x48\x04\x46\x65\x1b\xec\x83\xe3\x3a\x34\x9b\xa8\xc1\xd0\x3b\xf8\x50\x89\x84\x55\xe3\xa2\x18\x8d\x6c\x9a\xcd\x7a\x38\x0c\x4f\xb8\x3a\x8d\x4f\x57\xc3\x3c\x33\xd1\x24\xb6\x0d\xfb\xa3\x1d\x85\xcb\xae\xa9\x23\x22\xed\x2d\xc7\x76\x77\xd8\xd5\x43\xcc\x88\x26\x59\xf0\xd0\xb8\x25\x80\xc3\x26\xfd\x81\xba\x7d\x25\xe0\x02\x46\x2b\x11\x00\x3d\xd4\x55\xec\x5b\xb3\x54\x48\x13\x16\xc5\x8d\x11\xf9\xfe\x17\xda\xa9\x0d\x92\x18\x35\x92\x96\x6f\xed\x54\x81\xad\xfe\x18\xc6\x45\x4a\x3c\xa6\x95\x7a\xf7\x73\xbe\xc6\xdd\x54\x77\x37\xfd\xe5\x30\x13\x88\xb1\xd2\x09\xf7\x34\xbd\x8d\x47\x6a\x89\x62\x5e\xfa\x3b\xa7\xd2\x53\xbe\x83\xa8\xf1\x3c\xae\x66\xb9\x53\x6b\x2a\x5f\xff\x94\xfa\xfa\xa7\x1c\x0e\x73\x24\xe4\x58\x30\xe8\x20\x64\xe4\x6b\xcd\x8a\x62\xc7\x2d\x45\xf2\x7f\x92\x0b\x3a\x7c\xd7\x24\xb7\x9a\xf5\xc3\x96\x76\x1a\xf4\x6a\xbe\xa9\xd5\xe1\xdc\x70\xda\x8c\x12\x08\x38\x47\x85\x7a\xd7\x44\xda\xf7\x5b\xcf\x0b\x6f\x6f\xcd\xde\x2c\x2e\xb6\xd3\xa4\xd7\xb3\xd2\x43\x86\x0f\x62\xf5\x5c\xbe\x71\x56\xff\x95\x22\xcb\x49\x00\x1f\xa1\x09\xb6\xf9\x6d\x85\x44\x62\xf8\x1c\x02\xbc\xb3\x6a\x90\x61\x14\xf6\x57\x6c\x96\x6f\xf1\x47\xef\x16\x4a\x53\x4e\x2f\xad\x7c\x43\xb4\xec\xef\x2a\xb1\xf8\xab\x13\x75\x8a\xaf\x34\xb5\x46\x07\x36\x19\xd9\x3c\xe5\xe1\x22\x47\x83\xe3\x53\xdd\x9a\x39\x7b\xb1\x0c\x8b\xb3\xac\x18\x09\x0a\x14\x0d\x91\x5b\x6a\xca\xe7\x84\xd6\x25\x58\x53\xfc\x94\x45\xec\x46\x4c\xbc\x22\x36\x0b\x96\xf1\x8d\x02\xb3\xf5\x4c\x16\x06\xe8\x16\xf2\xfc\x3b\xa2\x4a\x54\x82\x3f\xd4\x81\xe0\xf5\x8e\xaa\xc0\xe8\x31\x94\xb5\xa6\x1f\x6d\xfa\xa3\x30\xcf\xeb\x04\xa5\x0e\x45\x78\xa6\x02\x06\x0f\x92\x94\x7b\xf2\x08\x1e\xee\xa9\x22\xd6\xba\x36\xa6\x8f\x4e\x9f\xd0\x9d\xb4\xac\x88\x72\x52\x12\x55\x24\xe6\x7e\x98\xe6\x2f\x74\xa5\x07\x56\x15\x16\xf6\xbe\x0b\xd7\xfd\x4c\x00\xbb\x65\x9c\x51\x96\x76\xe5\x1b\x35\x21\x17\x24\xa3\x51\x11\x87\xf9\x2a\x71\x66\x08\x49\x04\xfd\x46\xd4\xa0\x60\xe8\xf0\x0f\x57\xd5\x74\xc2\x17\xa6\x1e\xed\xfb\xab\x3f\x57\x61\x5c\x0c\x0a\x3b\xe3\xd1\x64\x98\x2c\x80\xf7\x3c\xaf\xa9\x7e\x3f\xac\x61\x83\x4a\x53\xbb\x64\xad\x54\x8c\x5c\xd7\xdd\x61\x06\x8f\xd5\xb6\xd6\x57\xda\xa9\x1d\x99\xd0\xe3\xe8\x75\x9a\x27\xe9\x5f\x03\x68\x3d\x48\x8a\x98\xf1\x67\x4d\x93\xb6\x0d\x33\xcb\x71\x78\x48\x0a\xdd\x0e\x8c\xec\xb8\x8a\xb4\x44\xfb\xd0\x9a\x34\x47\x55\xd2\x01\xc6\x5d\x3f\xe5\xa2\x02\xf8\x1f\xa3\x8e\x03\x5f\x6b\xd9\x9b\x7b\x35\x37\x51\xae\x4c\xdf\x9a\x68\x46\x69\x9a\xa3\xf1\x0c\x17\xc6\xb5\x4e\x09\x8d\xd4\x9e\x4a\xc3\x3c\x0c\xc0\x01\xaa\x69\xe2\xca\x6f\x24\x8a\x5f\x6a\x37\x0c\xd3\x30\xcb\x47\x06\xd0\x75\x21\x5b\xd7\xcc\xeb\xae\x2d\x3f\x34\x21\x93\xa5\xea\x61\x7c\x91\x09\x7c\x52\xb3\xe2\xdb\xd4\x66\xe5\xae\xde\xaa\x6b\x14\x50\xb1\x81\xdd\xe2\x71\x4b\xa1\x2c\x50\xa8\xd2\x73\x4a\xbf\x87\xe7\xb7\x44\xee\xe1\x73\xd5\x04\x75\xd6\x4f\x80\xbe\xdf\x51\xc4\xe9\x68\x3b\x22\xfe\xd9\x3e\x55\xa3\x84\xef\x56\xb0\x0b\xab\x36\xdd\x81\x6e\x16\x5c\xe1\x4d\x18\x4b\x81\x86\x92\xdd\x40\x5d\xec\x06\x25\x1e\x22\x2b\xe6\x51\x47\xf7\x14\x2d\x08\x48\xf5\x71\x7d\x16\xc0\x58\xa4\x64\x7f\x05\x3c\x17\x7f\xc6\xc4\xd7\x3a\x41\x0f\x08\x5b\xc8\x2b\x0e\xd8\xe4\x8c\x2a\x6d\xe4\xa9\xe9\xdb\xfe\xd6\xf2\x33\x11\x05\xfe\xa4\xa3\xfa\x5c\x9c\x00\xf0\x8d\x86\xe3\xae\xa9\x69\x66\xc0\x71\x59\xb5\xad\x56\xa2\x11\xe7\x66\xc6\x26\xcd\x69\x62\x8d\x63\x3b\xda\x30\x32\x6e\x50\x91\x47\xda\xb8\x55\xbf\xd2\x5e\xb1\xfd\x81\xb8\x7e\x04\x7a\xcc\x6e\xc0\x37\xbe\x94\x59\xc4\x31\xce\x20\xf2\x71\x4c\x02\xf0\x75\x2d\x16\x29\xbd\x08\x84\x7c\xd9\x3e\x08\x6d\x95\x02\x63\x9c\x73\xef\x3d\x32\x79\x30\x9c\x51\x4a\x5a\x6f\x77\x3c\x82\xe2\x78\x35\xef\xde\xa5\xe0\x2e\x71\x6e\xe3\x80\x67\xb4\xb1\xd5\x36\x4f\x7d\xa5\xf2\x73\x5d\x1f\x36\x6a\xd9\xab\x32\x88\x79\xdc\xe3\x3d\x38\x14\x46\xd8\x76\x58\x0b\xa6\x9c\xc4\x06\x50\xc5\x9e\x3d\x8c\x6d\xfb\x97\xa8\x65\x00\xce\x76\x07\x5a\x2a\xa8\xf5\x9d\x85\x0f\x43\x40\xf2\xe8\xd4\x5b\x9d\x47\xb4\xdc\xcb\xb6\x69\xeb\x6b\xbf\xe9\x3b\x2f\x4e\x58\xe0\xa4\xc2\x13\x5c\xa4\x19\x7e\xe9\xa0\x97\x8f\x14\x9f\x70\x94\xf6\x34\xac\xc7\xe6\x6e\x13\x3b\x01\x05\x81\x14\xda\xd2\x47\x4a\x71\xc7\xb7\x90\xea\xb4\x70\x65\x60\x55\x04\x81\xcd\x96\x0a\x00\x78\x65\x0c\xd3\x8f\xcf\x9c\x54\xdd\xc7\xdc\xf4\x32\x85\xd0\x3a\x4f\x5f\x8f\xaf\x55\xcd\x0c\xc8\xc1\xd5\x87\x74\x33\x90\xd6\x4a\x1a\x73\xf4\xfd\x04\x2e\x58\x2e\x03\x42\xef\x53\x78\x24\xfc\x0f\xf4\xe6\xfc\x0f\xb0\xbc\xe8\xa3\x9d\xa3\x85\x90\x2e\x91\x92\x3f\x38\xa7\x92\xb9\x65\x13\x85\xac\x17\xae\xaa\x3e\x5e\x91\xb3\xa5\xc4\x61\x15\x64\xfa\x63\xd5\xa8\x1c\x26\x2b\x5c\x37\x62\xc6\xdd\x8e\x8a\x4c\xea\x2d\x29\xe0\xaf\xc3\x11\x71\x97\x7a\x60\xcd\xd9\xaa\x28\xcd\x81\x39\xa7\x41\x55\x4f\x28\x9f\xad\xa8\x5e\x20\xf7\xff\x1d\x25\x53\xf1\x3b\x2a\x37\x1c\x85\x83\x61\x6e\x5a\x9e\x75\xe5\x04\x2c\x2a\xdf\x34\x60\x7a\x17\x3d\x82\x99\x4d\xe3\x59\x1d\xed\x9f\xed\x78\x01\x10\x12\x26\xa3\x3f\xc4\xd0\xd5\x09\x32\x4e\x7c\x5d\x0b\xbd\xbe\x02\x9a\xe1\x30\x71\xd2\xd3\xb0\xde\x27\x94\xed\xac\x74\xfb\x6f\xd7\x8b\x6e\xed\xe7\x16\x79\x78\x55\xa6\x0d\x94\xe8\xf1\x31\x1a\x77\x90\xf5\xa0\xf3\xe8\xa0\xab\xbb\xe7\xfd\x98\x8c\x17\xff\xbb\x86\xe3\xc8\x2c\xa4\xaa\x72\x71\x43\x35\x64\x0f\x75\x94\xf8\x12\xef\x0f\x01\x92\x78\x97\x36\xdb\x75\x44\xcf\x49\xdc\x4f\x62\x14\x38\x50\x1f\x7a\x53\xd5\x8a\xea\x2a\x43\xf3\xfb\xdb\x45\x06\xa7\xe7\xa6\x27\xcb\x47\x84\xd2\x43\x8b\x9c\x9e\x6c\x3b\x1f\xa6\x5f\xa8\x3d\xba\xf2\x90\xae\xa6\xa1\x89\x29\x62\x13\x32\x34\xd5\x50\x42\xb2\x21\x79\x42\xc3\x14\x63\x56\x90\x06\x4b\xcb\x67\xee\x50\x68\x14\x95\xef\xa6\x94\x52\xc3\xfa\xe1\xe6\xfe\x48\xfb\xbc\x3f\xaa\x8d\xe6\x96\xf1\x8f\x8d\x83\xa4\xa0\x1d\x4c\xbf\xd4\x81\x9a\xcb\x67\x2f\x24\x91\x3e\x0a\x33\x36\x8f\x31\x3f\x8d\x36\x0b\x04\xbd\xf8\x5a\xb7\xa5\x42\xc8\xb6\x23\x4e\xff\x09\x59\x0c\xbe\xee\x78\xbf\x10\xdb\x64\x3c\x5c\xe5\xa0\xfa\x59\x0e\x27\x2e\x2b\xb2\xc6\xcb\x0a\xe9\x60\x4d\x16\x46\xab\x33\x7e\x72\xa7\x82\x5c\x3a\x42\xae\x14\x33\x86\xf5\xb9\x97\xc5\xc5\xf6\xc8\xe6\x26\xca\xd4\x3c\xf7\x07\x13\x85\xae\xff\xa0\xe3\x6d\x61\x91\x87\x11\x85\xee\xae\x3c\x85\x9c\x98\x4b\x23\x58\x52\xe0\x88\x31\x7e\x8d\x42\xc8\x0f\x27\x8a\xe4\xfe\x5a\xa5\xac\x39\x5e\x61\x11\x3c\x11\x04\xa3\xbf\xe4\x1b\x45\x9f\x1b\x99\x43\x2d\x82\xc8\x70\x36\x59\x4d\x2d\xbd\xb2\x71\x94\x24\xe3\x61\x12\x59\x46\x40\x2b\x80\xb2\xa3\x09\xa9\xf1\x9f\xee\x9d\x6b\x07\x49\x96\x2b\x25\xe0\x35\x0d\x71\x5a\xdb\xa0\xb7\x39\x42\x67\x8a\xf1\x1a\x74\x68\x34\x76\x03\xad\xd4\x2b\xb0\xaf\x7c\xd3\x58\xe5\xee\x85\x7d\xce\xc8\x19\xc2\xa8\x46\x07\x2f\x28\x07\x64\xc6\x63\x6b\x22\x61\x46\xe4\x88\x53\xe5\x62\x33\x5d\x35\x44\xba\x69\x5a\xe1\x12\x1c\x69\xe9\xff\xb3\xf4\xac\x44\x90\x51\xaa\xb0\xbd\xd4\xc4\xc1\x90\x0e\x36\x1e\xe3\x1f\x72\x59\x0e\x4e\x09\x61\x36\x2a\xf7\xdb\xba\x1e\xf4\x71\xdf\x05\x3e\x4b\xa1\x8d\xc0\xa3\x8e\x34\x01\x0d\x5e\x26\x7c\x9b\x28\xf9\x2f\x4d\xd5\xbc\x52\xa6\x09\x9c\x77\x3a\xd5\x6b\x37\xc2\xf5\x46\xc7\x8f\x6a\xbd\x31\xf1\x05\xde\xb7\x55\x43\x29\x18\x9a\x74\x60\xfb\xcc\x07\x03\xdb\x71\x55\x89\x7f\x62\xf4\xab\xa2\x7b\x22\x27\xdf\x1f\xda\xd8\x2c\x73\xf7\x48\xd3\x4c\x4b\x71\x6f\xe3\x46\x59\x5c\x6c\x0f\x93\x31\x79\xc4\x97\xd6\x4f\xe3\x8c\x21\x24\xb8\xab\x58\xe0\x2f\xa8\xf0\x6e\x68\xd2\x65\x9b\x51\x2d\x41\x51\xf0\xb4\x14\x21\x8e\xff\x41\x51\x62\x96\x6c\x8a\x79\x3f\x74\x34\xdf\xac\x08\x52\xb7\x1c\xcf\xc1\xa9\xea\x11\x4a\xe2\x59\xcd\xb4\x89\x69\x6c\x8c\x24\xbf\xae\x20\x78\x47\x35\x97\xd1\x1d\xf5\xc1\x43\x4b\xaa\x8f\x54\xe7\x87\x25\xba\xa1\x92\xc6\xef\x4f\xd4\x14\xc7\xed\x06\x2d\xc3\xf9\x76\x96\x9b\xd1\xb8\xe5\x19\xf3\x8f\x23\x40\xe2\x1b\xd5\x63\x19\x99\xd8\x16\xcb\x8c\xb6\x69\x9a\xb1\xdb\xe8\x8d\x25\x3d\x88\x4d\x9e\x20\x15\x16\xf1\x2a\x8f\xfa\xd1\xe4\xd6\x41\x11\x8d\x0d\xbd\x3b\x9a\xb6\x6c\x92\xf8\x46\x91\x8e\x85\x71\x96\x1b\xee\x30\xe2\xe4\xcc\xd2\xe6\xe6\xeb\xa9\xc0\xc7\x57\x12\x1a\x81\x97\x0e\xd3\x9b\x64\xd5\xa4\x36\xe0\x43\x73\x1e\x8c\x03\x80\x65\x87\x86\x3b\x6c\x21\x46\x06\xa1\x59\xf3\x19\xc1\x0d\xc5\x7f\xff\xf9\x9f\xef\xfa\x52\x13\x77\xf4\x90\x30\x3d\x50\xf3\x7c\x41\x12\x67\x61\xdf\xa6\xb3\xde\x4e\x7d\x7f\xa2\x4a\x10\xff\x3b\xbd\x3b\x02\xb2\x87\xbb\x7e\x7d\xb6\x4f\x37\xae\xea\xfe\x17\x48\x53\x2b\x26\x81\x9d\xf2\xdd\x84\x4f\x50\xe9\xa9\x9d\x56\x43\xe3\x4b\x61\x19\x28\xcc\xef\x77\x06\xb1\xfc\xb6\x62\x29\x3d\x30\xbb\x5f\x8c\x41\x77\x4f\x7f\x0b\x40\xde\x51\xfa\x5b\xbe\xae\xc3\x5e\x5e\xd8\xd7\x4e\xd2\x70\x10\x8a\x26\x38\x43\xb3\x27\x0a\xfa\xfc\xb1\x9a\x02\x0b\x4d\x0e\x9d\x0c\xec\xee\x16\x01\x35\x15\x28\x65\x9f\x53\xc9\x9b\xa9\xe8\x36\xb9\xa2\xd9\x77\x55\xed\x61\x6c\xd3\xbc\xc8\xb2\x10\x9e\x8f\x53\x2c\x8d\x41\xbe\xdd\x10\x77\xb6\xa3\xe2\x50\xc1\x33\x9d\x08\xd5\xd0\xf2\xe3\xeb\x5a\xbc\xb2\x7b\x77\x3b\x0a\x7b\x96\x24\x47\x2b\x92\x30\xae\x19\x73\x51\xc1\x77\x29\xdf\x06\x35\xa7\x70\x6c\xb5\x76\xef\xae\x56\x50\x91\xd6\x41\xb7\x05\xed\xf7\xcb\x1d\x0f\x04\xfb\x6e\xc7\x0f\x07\x5c\xc4\xf3\x14\xa2\x83\x86\xaf\x36\xb2\xf9\x30\x11\x2f\xc4\xbd\x6f\x35\x83\x75\xa1\x66\x01\x9f\x7e\xba\xbd\xf2\x4c\xf8\x0c\x55\x46\x65\x4c\xa6\x32\x3f\xd3\x20\xb3\x91\x86\x01\xab\x9f\x0b\x5d\x88\xef\x64\x1c\x6f\x92\x83\x31\x24\x25\x87\x8c\x58\x98\x61\xd4\xe2\x81\x59\x11\x79\xef\x35\x95\xe2\xac\x98\x28\x7a\x94\xce\x0e\x22\xc1\x8f\x1a\x80\x95\xe8\xaf\xfd\x3e\xce\x1e\xec\xd3\x1b\x48\x35\x60\x16\x79\x7e\x8d\x01\x02\x14\x38\x61\xe3\xdc\xed\xf8\x81\xca\x63\x08\x52\xe0\x2d\x67\xba\x0a\x8c\x38\x2d\x7f\xda\x3a\xf3\xa1\xc0\x62\xae\x01\xf2\xab\xb8\xd4\xf1\xa4\x93\xbe\x59\xdd\x5a\x19\x97\x6e\x39\x49\xde\x93\x7a\x2f\xdf\xd3\xe4\x3a\x37\xe8\x2b\xa1\x53\x73\xc5\x77\x09\x2f\x7d\xa1\xdb\x40\x7b\xbb\x62\xed\xc1\x68\x75\x86\xc8\xc9\x01\xdd\xc7\x08\x22\x5c\x16\x00\x0b\x48\x62\x6f\xaa\x70\x23\xb2\x4e\x8c\x47\x7a\x7f\x5b\xa6\xbe\x9c\xc3\x94\xdf\x18\xa3\xbc\xdc\xf1\xcb\xdf\xb7\xaf\x18\xdd\xd0\x44\xc9\x0f\xf5\xa0\xfb\x94\xe5\x72\x79\xaa\x61\x5e\x68\x1f\x41\xea\x83\x34\xec\x49\xd2\xe5\x98\x7d\x5d\x74\xb5\xa6\xfb\x04\x47\x15\x62\x37\x4f\x4d\x9c\x45\x45\x40\x80\x91\xf9\xfd\x5e\x84\xee\x45\x7f\xe3\x9a\x3f\x99\x4d\xc3\xa4\xc8\xa2\x55\xb2\xa2\xd2\x36\xa6\xaf\x2d\x04\x4e\xf4\xf9\xce\xe9\xee\x15\xa7\xb6\xad\xfb\x64\xa5\x88\x1d\xd2\xb4\x16\xc7\xe7\x7a\xc8\x9f\xaf\x5d\x8f\x2e\x1c\x81\xa9\x7e\xd6\xbb\x0b\x90\xcd\xc8\xe0\x5f\xf9\x19\xd2\xd5\xa1\x0f\x47\xda\x7b\xd3\xf5\xa1\x96\x4a\xbb\xf7\xff\xdd\xd4\x55\x2c\xa5\x37\xa2\xd6\x46\x8f\xe0\x64\x08\xab\x65\xf9\x05\xf0\x40\xc1\xaf\x03\x44\xcb\xe6\xae\x92\x39\x00\xf5\x99\x9b\x88\x2e\x4f\x8c\xd3\xdd\x5c\x54\x62\x7a\xe5\xaa\xe2\x6d\x31\x5f\x8d\xa4\xf5\xa1\xa9\x42\x7d\xf1\xd7\x97\x15\x56\x92\x39\xfd\x65\x13\x07\x16\x2c\x5c\x38\x30\x77\x68\x45\xe1\x3e\x66\xa6\x5e\x84\xf2\x6c\x8d\x92\xb7\xb4\x66\xe1\x21\x32\xe5\x82\xb8\x28\xbf\x8b\x60\x37\x76\x2a\x08\x4d\x9a\xc4\x83\x68\xf5\xa1\xf2\x9f\x9d\xd0\x7b\xf9\x4b\xa5\xb2\x5d\x7e\x3c\xbe\xdd\xe6\xa9\x17\x15\xfe\x2e\x46\x04\x90\x7d\xdd\x56\x28\xa7\x7b\x9a\xf2\xfd\x07\x1d\xcd\xc1\x42\x3f\x54\x48\x89\x7c\x92\x42\x22\x61\xe5\xee\x99\x75\x50\xb6\xde\xf1\x89\xa2\xd7\xa4\x29\x48\x37\xb1\xd5\x72\xa2\x60\xc7\x15\xd1\x97\x9f\xb0\x83\x19\x61\xa6\x63\x3c\x1b\x36\x6d\xf4\x52\xf4\x04\x5a\x5d\x4f\xc2\x81\x08\x14\x3b\x83\xe3\x10\xe1\x49\x76\xd8\x0c\x1b\xdb\x15\x6e\x9e\x61\x91\xae\x75\x54\xf7\x10\xa4\x00\x00\xe7\xbd\x51\x73\x93\xbb\x77\xb7\xf3\x24\xb2\xfd\x44\x55\x5d\x8e\xc0\x8c\xf1\x4d\xe7\xf3\xae\x22\x3b\xb6\x69\x18\xe7\x36\xee\xcb\xa4\x01\xf6\xf5\x8f\xe8\x13\xf8\xba\xa3\x8f\x5e\x1c\x27\x39\x03\xde\x1c\x07\x31\x50\x67\x7c\xad\xe2\xef\x41\x92\xf6\x4c\x30\xb4\xcb\x0f\xd1\x31\x85\xfd\xc6\x40\x2c\xc2\x30\x26\x32\x15\x55\x16\x95\x26\x9c\xa0\x67\x20\xc5\x6d\x5f\x6a\x3d\x4e\x44\x6e\xa8\x81\x9c\xa4\xa3\x23\x3a\xea\xb4\x3e\x58\xac\xa3\x9a\x5b\xc1\xc4\x5b\xe9\xa1\xe0\xc7\x7c\xa0\x9a\xff\x47\x75\xe1\xe3\x32\xfb\x2b\x01\x47\xf8\x7a\xd3\xc3\x6a\x3c\x79\xcb\x74\xe3\xfc\x5d\x99\x95\xac\x8e\x93\x7c\x68\x33\x91\x5e\x5b\xf4\xe0\x98\x85\x05\x67\xe5\x1a\x8a\x7c\xa3\x30\xcb\xc2\x48\x60\x79\xae\x10\xea\x46\x55\xcf\x6b\x0e\xc0\xd4\xcc\x2a\x16\x31\x80\x54\xf8\x5a\xcd\x13\x9c\xd1\xac\x3c\x67\x20\x55\x88\x44\x33\xcc\x46\x26\x0d\x0e\x86\x26\x9e\xa1\x5a\x15\xba\xd7\x6b\xea\x7d\xd0\xa0\x80\x95\x69\x75\xbd\x4f\x0a\x22\x93\x86\x4b\xab\xa0\xcf\xc1\x0a\x5f\xea\x28\x7d\x72\x70\x7d\xc3\x97\x1d\x83\xe1\xe7\x9b\x6a\xa6\x64\xfb\xbb\xa8\x12\x87\x30\x60\x2b\x59\xa5\xf5\x5b\x64\x28\xe8\x2c\x9b\x9f\xa1\x40\x5c\x9a\x4a\x5e\x1a\xfd\x6d\x2a\xda\x31\x29\x3a\x38\x5f\xd4\x44\xe0\xb3\x4e\x1a\x97\x7e\x17\xbf\x7b\x57\xd9\xdf\xb3\x95\x98\x87\x56\x11\x79\xf8\x07\x30\x1e\xf8\xf9\x77\x27\x4a\xe5\xef\x1c\x0a\xf7\xcc\x57\xd0\xf1\x35\x9c\x77\x78\xe4\x4e\x98\x0c\xca\x25\x43\xa5\x6f\x66\xea\xe1\x28\x81\x4d\xad\x54\x75\x84\xb9\x59\x59\xea\xb5\x8e\x16\x50\x88\x07\x91\xdd\xe6\x1d\xe2\x5f\xd1\xd0\x93\xb8\xeb\x96\x52\xc7\xa7\x35\x87\x41\xb9\x3f\x51\x65\x10\xc8\xbf\x22\x2e\x41\x49\x0b\xfb\xe7\x4d\x55\xd2\x1a\xa7\xe1\xb2\xc9\x6d\xb4\xda\xa2\xf5\x43\x72\x72\x49\x25\x72\x97\x26\x0f\x09\x44\xe3\x20\x95\x98\xf0\xbf\x3f\xa9\x20\x07\x26\xde\x3a\x3f\xd6\x55\xb3\x4c\x3b\x88\x46\x12\xd6\xe9\x9e\x33\x63\x43\x13\x09\x82\x4d\xc5\xc4\xe2\xd4\x8e\xe1\x9d\x45\xc4\xac\x4e\x93\xb1\xaf\xbd\x62\x33\x58\x25\xce\xad\x95\xdd\x3f\xab\x35\x28\x86\x21\x69\xbd\x1d\x98\xe3\x64\xfb\x93\x89\x9a\x20\xfe\xa4\x96\x35\x97\x89\x4f\x9c\x08\x70\x07\x6b\xf8\xa1\x0a\x76\x3e\xac\x1d\x56\x97\x09\xe7\xb9\x7a\xcd\x29\x3d\xe5\x72\xaa\xe3\x86\x9e\x2d\xc3\xa7\x65\xda\x46\x49\xa3\x9e\xf6\xb4\x2d\x9f\x22\x0e\x81\x7b\xd5\x2a\xd4\x3d\x5b\x1a\x2d\x3f\xf7\x7a\xaa\xe2\xb2\xb5\xda\x9b\x18\x2d\x60\x58\x41\xa3\x2a\x80\x9b\xf2\xbd\x71\xc6\xb7\x4d\xfd\x52\x0d\x4d\x2f\x64\xa6\x4d\x17\x34\xb8\x35\xfd\xbf\x27\x0a\x4a\x71\xb1\x56\x36\xdb\xb3\x77\x4f\x7b\x68\x40\x58\xe0\x31\x58\xe5\xaa\xc3\x06\x33\xeb\x2f\xcb\xfc\xaa\x01\x8e\x60\x98\x8c\x5b\xbe\xee\x8e\x0c\x56\xc0\x89\x0d\xc4\x53\x3d\x3b\x08\xe3\x56\x55\x38\xd4\x0d\x5a\x5f\xd4\x94\xfe\x26\x1d\x30\x33\x09\xc2\xae\xfb\x00\xe3\x48\xa7\xaf\xfc\x1c\xb9\xf6\xa6\x34\x8a\xb8\x9a\x21\x5a\x80\x2d\x25\x12\xd8\x80\x9e\x1f\x86\x71\xbf\x74\x93\x0c\x39\x40\x0a\x08\x7e\x5d\xbe\x76\xb1\xe2\x38\x1c\x5b\x9d\xcf\x9d\x55\xd5\xa6\xb3\x0d\x70\xab\x7d\xed\x91\xb5\x1e\x67\x82\x0d\x03\x79\x0c\xbe\x56\x3a\xf6\xa9\x09\x0e\xda\xdc\xe2\xab\x54\xf0\xce\x7e\xfa\xe8\x4a\xed\x43\x0e\xcc\xbd\xd4\xfe\xd2\xd7\x7f\x6b\xcf\xd7\xbf\xb6\xf8\xb0\x22\x14\x78\x47\xf5\x25\x40\xd0\x05\xc3\x07\x0d\x3a\x00\x50\x7e\xb7\xa3\xa6\xe6\x7e\x48\x1e\xb9\x22\xc6\x86\x77\x9a\x9d\x92\xc9\x97\x23\xe1\x87\x50\x4e\xc2\xd4\x62\x83\x6f\x6a\xa2\xb4\x34\x4b\x4b\x61\x3a\xe2\x70\xe2\x80\x17\x05\xd5\xdd\x3e\x85\x9f\xb7\x51\xb8\x6c\x53\x4a\xd0\x35\xa9\x8b\xcc\x63\x28\x6a\x1e\xd6\xd3\xe6\x1b\xfc\x0c\xf1\xa9\xe5\x07\xb1\x84\x27\x5a\x3b\x9e\x14\xc6\xe3\x8a\x06\x59\xcb\x5b\xe1\x2b\x8a\x13\xf8\x8a\x2a\xa3\x9a\x30\x22\xa0\xbc\x9e\xda\xa0\x55\x92\x09\x0e\x4f\x0e\x32\x4e\x93\xc0\xf6\x8b\xd4\x66\x5b\x7c\x8d\xf3\xed\x89\xaf\x39\x33\xe1\x21\x8b\xff\xb1\x93\x51\xa2\x36\xcf\x3a\x74\xea\x4e\x75\xae\x6c\x70\xd0\x49\xf9\x36\x89\xde\x54\xce\x4a\x90\x27\xb3\x65\xf4\x84\x7a\x70\x8b\x9c\x2d\xc0\xbe\x6c\xa2\x84\x54\x51\x8d\x5a\x54\xd5\x71\x82\x94\x31\xbd\x02\x83\x29\x7f\x0b\xe2\x50\x30\xf5\x03\x33\xc1\x3b\x12\x4d\xd1\x63\x1d\x4f\xac\xb8\x64\x88\x9f\xc0\x75\xc6\xfc\xb8\x75\x67\x87\x1f\x57\x8f\x0d\x56\x54\x30\xe7\x64\x6e\xa4\xed\xa5\xe2\xf8\x38\x5b\xa1\xb3\x40\xd6\x0c\x71\xdb\x29\xd0\xc7\x48\x63\xb5\xe5\xc8\x3c\xee\xaa\x3a\x4f\x36\x36\xd9\x08\xee\x42\x9a\x97\xbe\x22\x7a\xb6\xa3\x11\xbf\x66\x1c\x32\x3d\x22\x4e\xfa\x1d\x6c\x25\xbe\xa9\x15\x68\x16\x16\xda\x4b\x96\x29\x0c\x1b\x95\x95\xeb\x87\x73\xbe\x1d\xdb\x10\x9c\x3a\xf3\xfb\xb9\x76\xf2\x1d\x3a\x44\x78\x00\xdf\x98\x78\xae\x80\xd7\x55\xc2\xbf\x64\x72\x8b\xe7\x8e\x2d\x73\x44\x6b\xa2\x79\x0d\xf2\x95\x30\xee\x53\xfb\x75\xfd\x12\xfd\xc1\xfa\x25\x87\x1d\x33\x01\xa1\xa2\x4c\x2c\xe2\xdd\x52\x11\x2b\xf7\x85\x54\xca\x9c\x2a\x48\x9e\x16\x83\x41\xe4\x86\xfc\xb1\xc1\x77\x92\x07\x43\xf6\xbb\x3e\xf1\x53\x2f\xb3\x15\xca\x85\x28\x61\x2c\xb4\xcc\x13\xfb\x90\xf3\xb6\xa2\xe2\xce\xec\xc8\x46\x54\x76\xd2\xd2\x51\x15\xf9\x7d\x04\x18\xc7\x6b\xe9\xe7\x81\xb9\x76\x12\xdb\x2d\x1e\x2c\x7a\x0a\x68\x62\x47\xbd\xb4\xb0\xa0\xfb\xa6\x8b\x7e\xff\xee\x16\x1a\xdd\x73\x95\x3e\xd3\x2b\x36\x9f\xf1\x3d\x1e\x00\x6a\xa4\xa6\x4f\xeb\x2c\x94\xb0\x8f\x78\xfc\x09\x58\xe1\x1c\x0a\x43\xcd\xc5\x4a\xd7\x37\x4f\xc3\x71\x84\x1a\xcb\xbc\x33\x8b\xf4\x7d\xd0\x28\x39\x32\xf1\xaf\xba\x85\xbc\x8e\xb3\xae\x22\xce\x6d\x1a\x14\x51\x0e\xed\x57\x55\xbe\xf4\xc0\xb7\x8b\x9e\x6c\x66\x05\x8c\xed\x78\x54\xb0\x2f\x9f\xa3\x2a\x12\x7d\xe8\x57\x7f\x96\x1e\x1b\x42\xe0\x87\xa7\x6a\xbe\x25\xb2\x16\x9d\x04\x37\xe2\xb6\xd7\x5d\x2b\x4d\xa8\xac\xe8\x0d\xd2\xa4\x18\x03\x37\x86\x7f\x3f\x8d\xc0\x9f\x6f\xbc\x06\xfe\xab\x85\x89\xb6\x29\x71\xb3\x77\xc8\xfe\xc2\x34\x60\x5d\xf1\xff\x31\x71\x8e\xba\xfb\x7d\xc2\xad\x88\xfe\x99\x02\xfe\x63\x74\x03\xb1\xcf\x03\xd5\x9f\x1c\xaf\x18\x3a\x3e\x68\xdc\xfc\x14\x5f\x45\xc8\xd2\xfd\x5c\xfe\xf5\x5a\x81\xf4\xc0\xdc\xb3\xed\x90\x75\xe2\xe1\xda\x6e\x2b\x90\xc4\x6d\x65\x6b\x47\x26\x36\x03\x9b\x66\x0f\xb7\x1c\x03\x0d\xcf\x09\x31\x79\x03\xb8\xaa\x9c\x72\xa9\x9f\xe4\xba\xaa\xb0\x5e\xe7\xd5\xc0\xc0\x4f\xb4\xc2\xea\x55\x7c\x67\xd1\x66\x28\x7f\x26\xd6\x02\xaa\xee\xeb\x97\x3e\x13\xbb\x95\x9b\x83\x36\x86\x66\x19\xdc\xee\x1d\x02\x27\x0b\xb5\xaf\x4f\x91\xcf\xea\xf2\xd6\x43\xdd\x06\xcc\xe3\xb2\x19\x14\x88\x89\x5d\x62\xe9\x93\x4c\x55\xf3\xa3\x9a\xba\x89\x24\xdf\x9d\x67\x0f\x7a\x14\x5d\x57\xbe\x51\x75\x80\x91\x89\xfb\x26\x4f\x52\x56\x75\x43\x49\xe6\x30\x3d\x64\xbe\x56\xd6\x79\x35\xb4\x51\x9f\x14\xd7\x1d\xbb\x0c\xda\xcd\xdc\xa0\xe9\x54\xd6\xd9\xff\x3c\x04\x31\xf8\xf0\x9f\x00\x5c\x85\x43\x7a\xbb\x53\xe5\xad\xf4\x4a\x51\xa8\xd0\xa0\xfa\xd0\x42\x3a\x83\xf7\x02\x35\x83\x48\xbc\x52\xd2\x2a\x25\x5c\x6d\x25\xf2\x70\x09\x35\x57\xc4\xe9\x3c\x9e\x26\x8d\xa4\xf2\xe7\xc9\x7b\x2b\xd1\xba\xd8\x44\xab\xe5\xc2\x21\x72\x77\x62\x1c\xbe\x51\x7b\x5e\x35\xca\x52\x6b\xa8\x1c\x5c\xee\x20\x74\x12\x5a\x8a\x3a\xf4\xe6\xc4\x63\x46\xce\xa8\xb9\xed\x95\x20\xcd\x2a\xc0\xad\x8e\x52\x0f\x38\xa3\xa2\x92\x81\x8d\x6d\x4a\xe1\xd7\x16\xe5\xb1\x6f\xaa\xa6\xf3\xb5\x8e\x92\x7e\x01\x13\x0c\xe3\x29\x3b\x5e\xe3\xfd\xdd\x5a\x0d\xea\x45\xf0\x82\x25\x2b\x88\xe2\xb9\xd6\x80\x1a\x9e\x14\x1e\x9a\x90\x22\xb6\xbf\x62\xd2\x7e\x65\x4e\xf1\x3e\xd6\x86\x6f\xd4\x1c\x70\xcf\xd5\xca\x15\x6e\x4b\xa1\x8b\xee\x2a\x09\xae\x33\x4a\x97\x20\x4b\x46\x36\x89\xed\x56\x84\x58\xf0\xb2\x1f\x50\xd8\xe6\xe5\xcc\x5e\xd8\xe7\x06\x2a\xe9\x07\xf0\xbf\xc0\xab\xf0\x4b\xf4\xcc\x71\x9d\x75\xf2\xc0\x5c\x7b\x64\x5e\x2d\xc2\xc8\xf4\x93\xd4\xf0\xb0\x11\xdc\xc9\xdb\x8a\xf1\x10\xdb\x04\x90\xbe\x6b\x2e\x71\x5e\x49\xd2\x7c\xc8\xec\x0f\x22\x9a\xe9\xbb\x4c\x98\xc3\x47\x38\x7b\xb5\x36\x8d\xb1\xb8\x48\xca\x0b\x26\xce\x51\x3f\x44\x31\xf2\x9c\xae\x17\x5c\x56\x36\xee\xfb\xca\xc6\x31\x77\x33\x46\x97\x65\x9c\x58\xa1\x70\xcf\x3b\x05\xa6\x32\x14\x2f\x6d\x00\x15\x14\xca\xa5\x43\xe0\x77\x52\x29\xec\x9f\x54\x23\xb6\xe3\x30\x8a\x30\x9b\x83\x0d\x83\x09\x59\x78\xc0\x2b\xf8\x04\x41\x2c\x56\xc6\xcc\xbd\xe2\x68\x92\x8d\x21\xf3\x45\x9d\x83\xca\x6c\x28\x33\x9f\xd3\x02\x91\xf3\x1f\x3c\xde\xf5\xf5\x9e\xd9\x69\x43\xe1\x2d\x4d\xa2\xa8\x47\xe4\x06\xae\xb2\x07\xee\x52\xbe\xae\xed\xcd\xe7\xe7\xdb\x59\xd1\xef\xdb\x98\x7f\xae\x26\x29\xe6\xeb\x26\x4e\xdb\x2c\xf7\x69\xe3\xff\xbb\x84\xb0\x3d\x8e\x4c\xec\xb9\x94\x98\x48\x92\x5e\x04\x0b\x74\x4b\x75\x08\x4f\xba\xf0\xa3\xc8\x86\x46\x17\x64\x71\x66\xa4\x3a\xab\x83\xb1\x24\x38\xb8\xab\x8c\x28\x45\x11\x47\xa9\xac\x7f\x3a\xf1\x14\x95\x0f\x50\x66\x63\x3b\xd3\x51\xb2\x22\x3f\x56\x5d\xac\xbb\x54\xf9\x43\xc4\xf5\x00\xe7\x01\x85\x9e\xbb\x13\x8f\xcf\x3e\xdc\xf1\xe3\x0d\x88\xfd\xb8\x1f\xdf\xa9\x68\xa2\xd0\xef\x95\xbc\xb3\xcc\xbd\x04\x5d\x46\x3b\x02\x91\x1c\x8f\x7f\x01\x32\xcc\x8a\x81\x32\x85\xa2\xe8\x88\x6e\x35\x75\x5b\x97\x4c\x5a\x86\xd9\xa0\x09\x73\x84\x64\x0e\x24\x76\x5a\x01\x22\x53\x96\x71\xf5\x44\xea\x27\x3a\x2a\xd4\x3e\xa1\x6a\x09\xe3\x61\x65\xae\xe7\x1c\x59\x45\xbe\x56\x73\x17\xe3\x24\xcd\x53\x13\x4a\xc3\x4a\x17\x0f\xa5\xc4\xe8\xa0\x81\x84\xac\xc9\xb6\x2a\xad\x7c\xe4\x59\xae\x5d\x56\x7e\x13\x2e\xfe\x63\x71\xe8\x5b\xbd\xfa\x78\xd7\xb7\x5c\x00\x21\x11\xb8\xea\x63\x6a\x0e\xdc\x14\x2c\x6c\xc6\x63\xfb\x1d\x0f\x78\x39\xaf\xba\x41\x3d\x93\xd9\x9e\x89\xa2\xad\xf4\x7d\xe1\x62\x7e\xa8\x65\x3b\x89\xb5\x54\xe8\xc9\x7d\x16\xce\x1a\x62\xce\x92\xfa\xe9\xda\x2b\x8a\x70\x39\x5b\x09\x01\x7a\xa1\x77\x77\xfa\xf0\xa5\xa7\x71\xaa\x4d\xce\xb3\xdd\x55\x19\x59\xdf\xc6\xa9\xb5\x99\x92\x9d\x3e\x4b\x06\x94\xaf\x75\xa3\x69\x6c\x52\xc9\x8d\x45\xca\x03\x33\x34\x7c\xdd\x90\x44\xbc\xd4\xee\xf3\x28\x29\x76\xf1\x7b\x0a\x37\xfc\x5e\xcd\xd0\x96\x7f\xdf\xb3\x43\xd2\xee\x7e\x4e\xc2\x69\xd0\x69\xf3\xb5\xb2\x80\xe5\x57\xc9\x14\x01\xf3\x5d\x45\xc0\x7c\x77\xa2\x4b\x65\xe1\x78\xab\x1f\x7b\xbe\x82\x7d\xe7\x50\xc3\xe5\xd3\x06\xaa\x0d\x73\xdc\x48\x6a\xee\x00\xfd\xcf\x2f\x21\xa3\x24\x03\xde\x4a\xc6\x30\xb2\x26\xe6\x9e\x92\x48\x8a\x52\x5c\xa5\xf9\x8b\x71\x4a\x6f\x56\x3b\x3e\xcb\x36\xcd\xc3\x5e\x64\xa1\xec\x2f\x3c\xec\x7e\x0f\xfd\x90\xac\x00\x82\xda\x2b\x13\x45\xd7\x78\x77\xa2\x4c\x3b\x66\x14\x45\x3e\x57\x29\x57\x33\x1b\x30\x82\xd7\x99\xee\x46\x9b\xb8\xb0\x50\x9a\x7f\x16\x49\xf6\x64\x39\xb7\x26\x4a\x9f\xf9\x96\x0a\x0b\xc6\x61\x1e\x0c\xa9\x42\xa6\x9c\x58\xcb\x91\x33\x54\xe0\xff\x79\x6a\xe3\x41\x3e\xcc\x34\x05\xeb\x1d\x95\x94\x80\xcf\x16\xdd\xb9\xd3\x7a\xda\xae\x8c\x6d\xd2\x55\x8e\xe1\xd0\x59\xba\xa3\xd1\xfd\x77\x54\x07\x2a\x0e\x86\x3b\x5c\x67\xed\x9f\x7c\xb1\xab\x8a\xb9\x0f\x26\x9b\xbf\x2c\x5a\x40\x13\xef\xd4\x9f\x40\x52\xe8\xe8\x10\xca\x73\x21\x74\x51\x1e\xb2\xf7\x67\x93\xaa\x1e\xeb\x01\x51\xe1\xfd\x2e\x43\x08\xb1\x51\xfe\x9a\x1a\x29\x0c\x40\xd5\x6a\x95\x9f\x9f\xfa\x6d\x17\xdb\xe0\x20\x4c\x13\x26\xe4\x30\xe0\xc7\xd7\x1e\xac\x98\x14\x69\x66\x49\xa0\x0f\x49\x8f\xb0\x67\x29\x35\x40\x89\x15\xee\xab\x4d\x5d\xe6\xbd\xdb\x55\x89\xe1\x54\x79\x48\xd6\x69\xa3\xae\x83\xef\x89\x79\x91\xb5\x9f\xc1\x24\xb3\xcc\xe8\xf9\x14\xea\xe3\x89\x1a\x62\x5e\x53\x9f\xb2\x62\x56\x33\x90\xb5\x38\xeb\xfe\x9c\x7f\x78\x2d\x07\x89\x1b\xd7\xca\x36\x07\xe6\xda\xd9\x30\x59\x21\xcf\x2e\xaa\xf7\x0a\xc2\x7b\x66\xe2\x67\x72\xb2\xa1\x49\x6d\xf6\x44\xe9\x41\x91\x1e\xdc\xd4\xb8\x71\x78\x24\xc4\x35\x1f\x90\xf1\xc0\x3a\x5d\x21\xab\xc0\x00\xcd\x89\x9f\x7a\xd8\xca\x2a\x89\x28\x2d\xfe\x23\xda\x02\xa8\x1d\xde\xd0\xf8\xee\x4b\x13\xd5\x20\xbc\x4c\x4f\x9a\xd5\xfd\x70\xf0\xdd\xa4\x92\x1b\xf5\x79\xa8\x4b\xee\x5b\xfa\xa4\x8a\x5d\xe3\x12\xb6\x93\x33\x9e\xf3\xfb\x79\x03\x6e\xef\x2a\x63\xbd\xbd\xab\x40\xef\x6b\x8e\x5d\x20\xb6\xb6\x1f\xd9\x2c\x9b\x29\x7f\x3f\xbe\xce\x19\x55\x03\x44\x0e\x2f\xd4\xd9\x75\x92\x9f\xa1\x49\xfb\xab\x5b\xfc\x80\x23\x8f\x68\xe3\xe1\xff\x05\x6d\x6d\xcd\xc4\xa9\xd2\xd6\x79\xd9\xcc\x0a\x3d\xda\xb7\xe3\x24\xa7\x6f\x82\xea\xc9\x6d\xa5\xe8\x87\xc2\xb0\xcc\x51\x3f\x59\xe7\xe5\x78\xf9\xe5\x87\xcb\x47\xc2\x92\x24\x5a\x8d\x15\xb4\xbf\x02\x04\xf6\x35\x52\x1c\x3d\x0d\x38\x85\x9b\x7f\x47\x4f\x99\xf2\x5c\x1f\x9e\xe1\xbd\x8e\x7a\x6c\x6c\x0b\x45\x4a\xd9\x77\x7b\x48\x1e\x1b\x7c\x8c\x82\xae\xf6\x63\x1e\xa8\xef\xa0\xa3\xb2\xde\xac\xb5\x8b\x19\x29\x0e\xda\xb9\xae\xa2\xb9\x21\xd6\x14\xf7\xe3\x52\x11\xf7\xb3\x87\xe9\xc7\xb2\x5a\x0c\x36\x10\x6c\xc8\x31\xa5\xac\xb3\x79\x5a\xee\x0c\x91\x6f\xf1\xaa\xa2\x70\x3b\x22\x0f\x53\x7e\xcc\xfa\x25\x9c\x15\x00\xb2\x10\xec\xe1\xf1\x7e\x8c\x6d\x2b\xc5\xf0\x9d\xaa\x00\x6b\x83\x70\x29\x0c\xb6\xfa\x19\xcc\x5b\x74\x42\x1c\x41\x9a\x1e\xd5\x2d\xe3\x35\xb7\x5f\xca\xbd\xcb\x37\x53\x35\x94\x7e\x4b\x75\x3a\xd3\x24\x18\xda\x2c\xb7\x29\x9b\x67\xec\xcd\x29\xd6\x9f\x6f\x3a\x1b\x9b\x11\x04\x09\x27\x61\xcf\x20\x34\xd1\x8c\x67\xeb\xba\xa8\x65\xb3\xb0\xd9\x61\x4b\xef\xd5\xa6\x16\x40\x19\x3e\x1a\x27\x59\x98\xdb\xad\x14\x58\xe3\x3d\x90\x27\xc0\x33\xb0\xdf\x72\xba\x1e\xee\xfd\x3e\xd7\xf5\xf9\xd1\x09\x6c\x48\x41\x9a\x3d\xee\xc8\x3d\x62\x93\x25\x71\x18\xcc\x54\x80\x36\x0b\x0b\x4e\xfc\x50\xb5\xb5\xfe\x1f\xc2\xde\x2c\x46\x92\x2b\x3d\x17\x63\x67\x55\x75\xf7\x70\x1b\xae\x33\x73\x81\xbb\xe4\xf5\x95\x31\xb2\x31\xa6\xe5\xfb\x20\x5c\x0b\x06\x22\x55\x5d\x1a\xaa\x0b\x9e\x62\xa3\xba\xd5\x94\xe8\x17\x9e\x8c\x3c\x95\x19\xac\xc8\x88\x9c\x58\xaa\x58\x7c\x32\xfc\x70\xe1\x27\xc3\x2f\xbe\x36\x0c\xdb\x90\x01\x41\xf7\x5e\x1b\x96\x6c\x4b\xa3\x5d\xca\x9a\x7d\x5f\xb8\x0f\x87\x4d\xb2\x9b\xbd\xef\xfb\x56\xdd\x5d\x6d\xc4\xff\xfd\xff\x39\x7f\x54\x04\xe1\x17\x22\x82\x5d\x55\x99\x71\xe2\x2c\xff\xf2\x2d\x5b\x2d\x9d\xa0\x03\x52\x4a\x9c\xf1\x28\x08\x10\xb4\x44\xa1\x81\x46\x1b\x99\xd3\x4f\x5a\x71\xf3\xb1\x5d\xe1\x86\x07\x0b\x6c\x21\x27\x16\xb5\xad\x9d\xce\x04\x8b\x8b\xdd\x12\xc2\xe3\x45\x94\x26\x51\x3e\xee\xd4\xfa\x07\x35\x7e\xed\x33\x8e\xf8\x9f\x14\x76\x10\xe5\xa2\xaa\x84\x07\x65\xa8\x13\xdf\x6c\xaa\x2a\x7d\x68\x32\x12\x0a\x5e\xae\x57\x8e\x65\xd9\xb6\xd5\xdc\xa9\x1b\x1e\x32\x2a\x54\x0a\x28\xaa\x98\xd2\x9a\xcc\x55\x5b\x3f\x03\x3c\x5c\x5c\xe1\x63\x8c\xa9\x97\xfd\x2b\x93\x49\x6c\x4d\x6e\x92\x82\xb2\x55\xec\x6f\xef\xea\x02\xe9\x05\x85\x0d\x7a\x57\x8b\x8a\x05\x35\x7d\xce\xd5\x59\x8f\x04\xbf\xa9\x20\xe8\xbb\x81\x71\x56\x42\x0b\xd2\x7a\xf9\xd8\xe5\xcc\x61\x9a\x4e\xac\x64\x32\xde\xc6\xf2\xa4\x52\xaf\x3f\xd9\x12\xd3\xbe\xd8\x8d\x92\x42\xe4\x19\x84\xb6\xa7\xe9\x7c\x2d\x0d\xd2\xb1\x4d\xc8\x6c\x8d\xab\x81\xaa\x6f\xe3\x9a\x38\x2a\x65\x5a\x17\x31\x39\x8d\x40\x71\x90\xe2\xc5\x45\xc7\x1b\x75\x00\xbc\xf2\xb5\x68\xb7\x82\x61\xde\xe0\xa8\x03\xbb\x16\x82\x7a\xb1\x32\xa9\x0e\x63\x11\x00\xf2\xa8\x98\x9b\xd8\x89\xb0\x71\x74\x1a\xa5\xcf\x43\x2f\x55\x71\xb7\x85\x45\x34\x22\x3f\xd8\x95\xf3\x75\x03\x33\xb9\x70\xa8\x9b\xd9\x34\x1b\x9a\x24\x7a\xc3\x82\x7d\x21\x3a\x28\xf4\xd0\x08\x6c\x21\x2a\x83\x7d\xf3\x17\x4a\x5f\x6d\x12\x49\x28\x2b\x76\xdc\xd5\x1f\x10\x31\x2f\x3f\x50\x07\x7f\xfb\xb7\x3b\x3e\x8d\xfb\x50\x37\xd5\x3e\x74\x47\x72\x58\x2d\x96\xf1\x44\x9b\xd6\x9d\x56\xa6\x75\xa7\xdb\xbe\xfb\x4a\x9c\x96\x59\x94\x8f\xa4\x77\xe6\xbc\xa9\x5c\x55\x88\x07\x4c\xb0\xa4\xcf\xd6\xd2\x81\x28\x84\xc1\xa5\x77\x46\x52\x6a\x4f\xd7\xe8\x15\xb0\x4b\x73\x63\xb2\x10\xd9\x27\x09\xcb\xcc\xad\x24\xd1\x3b\xa4\x99\x23\x02\x89\x4e\x60\x25\xd9\x58\x1f\xd9\xcc\x42\xde\x0d\x79\xc4\xb7\x15\x2a\x14\x1a\xf0\xce\xb0\xfa\x77\x7e\xdf\x19\x77\xb5\x31\xd7\xaa\x53\x87\xbb\x27\xa2\x73\xe3\x3b\x87\xc7\x1b\x9d\xff\x43\x2f\x75\x6d\x32\x32\x49\xe8\x56\x10\x76\x70\xb0\x1f\xf8\xda\xbd\xd6\xaf\x97\x36\x8e\x6d\x47\x41\xd8\xb0\x0b\x49\x8e\xe3\x18\x91\xb1\x8d\x86\x23\x2c\x2f\x54\x8a\x6f\x7b\xad\xc6\xf7\x6f\x07\xbe\xbf\x39\x2c\xf3\xc2\xac\xe4\x29\x9b\xc8\x4b\x4c\x51\x7d\x78\x4d\xf6\x58\xac\x06\xb4\x04\x61\x1c\x85\xd5\xf6\x56\x8d\x88\x8b\xa8\x7c\x74\xa5\x4d\x22\xd3\x84\xbf\x34\x83\x9f\x03\x1f\x79\x9d\x6a\x94\x75\xf7\x2f\x75\xf3\xc2\x38\x46\xb6\xe3\x2b\xfb\x63\xfe\x9c\xd6\xe4\x29\xa2\x71\x19\x47\x33\x5a\xf3\x1e\x61\x2d\xa2\x4f\x06\x91\xa1\x98\xf7\xa6\x97\x43\x1b\x9b\x37\xbc\x00\x1d\x80\x9d\x28\x31\xf0\xb5\xaa\xd4\xe4\x71\xba\x1e\x73\x77\x11\x2d\x01\x10\x18\xf9\xda\x4d\xa4\x2a\xd3\xcb\x73\x99\x73\x08\x71\x58\x49\x9b\x6f\x02\x55\x6b\x0c\xad\x1d\x54\xf9\x3a\x9d\x92\xf8\xe2\xef\x68\xac\x20\xbb\xb1\xa0\x1a\xfb\x91\x56\x31\xdb\xb0\xfd\x2c\x5d\x47\xa2\x0f\xf0\x22\xb4\x6d\xf8\xda\x6d\x69\x6b\x69\x34\xe8\x74\x7e\xef\x77\x39\x9b\x06\x8b\x81\xaf\x55\xbc\x36\x8c\xd3\x1c\x40\x04\xc4\x2d\x47\xe9\xa8\xe0\xeb\x9a\xbf\x9d\x5d\xab\xa2\x16\x87\x26\xf8\xe3\xa9\x02\xc5\x20\x6a\x41\x58\x7e\xbe\x4d\x1a\x3d\xb3\x13\x4b\x07\xc5\x8c\xea\x2c\x02\x74\xe0\xa4\x4d\xdd\x42\xb9\xab\xa8\x8f\x2b\x26\x74\x55\x1c\xa9\x69\xfa\xde\xc1\x96\x12\x79\x3e\x57\x6b\xaf\xda\x21\x63\x16\x5c\x21\xa2\x0a\x96\xf8\x46\x35\x1a\x33\x33\x60\x75\x45\xec\xf8\x78\x57\x1c\x09\xf0\xcd\x66\x9b\x45\x7b\x66\x0d\x99\x54\x7a\x10\x08\x52\x0a\x21\x4a\x7c\x96\x81\xd2\x9a\x4d\xec\x1b\xa5\x8d\xcd\x4c\x47\x69\x40\x6a\xbd\x28\xb5\x09\x9f\x6e\xab\xdf\xf6\xcb\x28\x1e\xb8\x41\x41\x1d\xec\x5a\xa0\x41\x96\xf4\x17\xf8\xcf\xb5\xc8\x05\x1d\xe8\x4e\x32\xdb\x17\xed\x11\x87\x7f\x52\x2e\x66\xde\x04\xcb\xbe\x3e\xb1\xc9\x20\x2a\xca\xcc\x82\xb9\x26\xba\xc9\x14\x27\xa3\x75\x7e\x41\xed\x91\x3f\x53\x75\x92\x95\x32\x09\xd1\xf9\xa9\xc2\x12\x54\xac\x3e\xa5\x48\x5f\xf0\x5f\x9e\x48\x78\x82\xf2\x44\xfe\x19\x05\x5a\xd9\x6a\xda\x06\xee\xa3\xca\x1b\x98\xcd\x2e\xfa\x5d\x5c\x94\xeb\xe0\x49\xe5\xba\x16\x25\xab\x5a\x55\xe9\x28\xfd\x65\xa4\xd5\x90\x91\x91\x0c\xd0\x9f\x89\x1b\xb0\x3e\xf6\x68\x06\xff\x4f\x5f\xde\x1f\x63\xcc\x44\x41\x18\x73\x46\xc4\x85\x55\x25\xcc\xe4\x05\x63\xff\x50\x7c\x65\x82\x22\xdf\x28\x14\xb6\x99\x30\x77\x10\x09\xcf\x25\x8d\xf6\xd7\x5a\x88\x21\xe9\x03\x3a\x53\xa6\x73\xaa\xcb\x7b\x4e\x71\x64\x26\x69\x1c\xef\xa5\xe1\x76\x34\xa2\xc5\x45\x9f\x5e\x3a\x5a\xd7\xdd\xa9\xa7\x1b\xdc\x46\x95\xdc\x05\xb6\xcb\xc2\xcb\xbf\x8a\xdd\x13\xdb\x13\xa3\xe0\xf9\xa6\x11\xbd\xbe\xfa\x6a\x77\x3d\x8a\x45\x61\xd2\x69\x86\xb9\x39\x75\x7c\x67\x8a\xbc\x3c\xdf\x3d\x3c\xbf\xf4\x14\x65\x03\x08\x60\x6a\x2a\x2b\xdf\xa4\x7d\x88\xa5\xeb\xa7\x4a\xe6\xf7\xc7\x53\xd5\xe2\xe3\x66\x0e\x12\xc3\x77\x68\x15\x71\x4b\x15\xa1\xa1\x23\x13\x57\x0f\x08\x74\xd3\x07\xd3\x9a\xc2\x89\xa7\x12\x5e\x09\x3c\xab\xed\xff\x45\x4f\x92\xb7\xdf\xc0\xeb\xcf\x9f\xe3\x57\x2e\xe0\xe0\x6a\x3a\xe1\x4b\xbe\xab\x4a\xb1\x65\x5e\x56\x51\x80\x23\xe6\x3e\xda\xf3\xe5\xdb\x47\x37\x7d\x91\x6f\x35\x4a\x86\x83\x94\x13\x16\xe4\x68\x47\x50\x8e\xe5\x1b\xad\xab\x54\x45\x34\x49\x11\x6f\x30\xb7\x83\x05\x9c\x28\x91\x45\x68\xbb\x8b\x3e\x05\xef\xf4\xa9\x4d\xe5\x89\xc3\xfd\x2f\xec\x4c\x88\xce\x45\x79\x94\xc6\xc2\x91\x92\xaa\x21\xe3\xee\x0a\x29\x88\x3b\x3a\xca\xcb\x0e\x28\x0d\xd0\x34\xe6\xf1\x07\x0e\xbb\x53\x85\x88\x59\x1a\xc7\x1c\xa9\xba\x4e\x9b\x07\xc2\x3c\x50\x8e\x42\x5e\x09\x78\x64\xb2\x01\xcb\x2c\x23\x2d\xba\x88\xb7\xcb\xc6\x25\x53\x8f\xb7\xbd\xa5\x44\x45\xb7\xbc\x49\xf4\xe3\xb3\x9b\x4a\xce\xf3\x19\x64\xef\xd8\x54\xe7\xda\xea\xbc\x61\x54\x44\x6f\xb0\x65\xfc\x2b\x3c\x3c\x47\xa7\x6a\xac\x8e\x36\xf6\x9b\xa5\xa5\x83\xdd\xdc\x48\x99\x1f\x41\xf8\xc7\x9a\xab\xf4\xb1\x23\x3b\x4c\x46\x26\x1b\x9b\xd0\x96\x45\x14\x9a\x98\xc0\x42\x22\x41\x4c\x6f\x80\xb5\xdc\xf1\x8a\x5d\xed\xd5\x4b\x1e\x61\x1f\xc3\x3c\xb9\xff\x99\x27\x88\x7d\xdd\x86\x65\x11\xad\x59\x85\xfd\xfe\xb0\xa6\x83\xd5\x38\x81\x0f\xbc\x74\xb0\x6b\xb2\x22\x0a\x1d\x15\x80\xb9\x0a\x81\x27\x61\xfc\x4a\x6d\x23\xaf\xa5\x91\x70\x8e\x51\x12\x3d\xa6\x1c\xa0\x11\x6f\x88\xe0\x2d\x7d\xae\x88\x50\xef\xfc\xca\xcb\xf3\xe4\x34\x90\x45\xe3\x28\x51\x79\xa2\x74\xcc\x3b\x4e\x08\xe2\xec\x54\x23\x12\x0a\x13\x25\x79\x07\xdd\x73\x07\x36\x56\x61\xb8\xda\x68\xd3\xa2\x48\x93\xcf\xd1\x23\x49\x5e\x51\x4d\x1a\x6c\x22\x67\xb1\x71\x88\x5b\x83\x0f\xcb\x19\x25\x8e\x4d\xe4\x6f\xb5\xd8\xca\x49\xa5\x18\x34\x8b\x4e\x13\xff\xdd\x5a\x2f\xb1\x25\xad\x5d\xe8\xe6\x36\x2c\xf9\x5c\x62\x88\x7f\x50\xc3\xfb\xb7\x99\x31\x55\xab\xc6\x9d\xe5\x48\xbd\xaf\xaa\x1e\x12\x54\x6e\xd9\x96\x5a\x79\xe0\xe6\x45\xea\xfb\xbe\xcc\x7a\xa1\xe7\x13\x06\x4c\x8b\xe1\x66\xcc\xa2\x90\x38\xc1\xef\x20\x4e\x06\x2e\x00\x1e\x91\xae\xec\xf4\xa4\x22\x0b\xae\x99\x98\x43\x23\xd4\xf3\x98\xbb\xcb\x37\x8d\xe8\x62\xff\x52\xd7\xc4\x26\x5f\x35\x60\xef\x00\x2c\xc3\x98\x46\xbe\x51\x62\x62\x03\xdb\xb7\x09\xc5\x16\x4a\xb9\x03\xe7\x94\x64\x38\x7e\x52\xf6\x53\x53\x28\x8f\x9c\x9f\xd2\x76\xcf\xd7\xca\x11\x61\x60\xd7\x6c\x9c\x4e\x1c\x6c\x43\x40\x5e\x1d\x27\x02\x00\x26\x38\x36\xcd\xd9\x4d\x9f\xd4\x4c\xb2\xb4\xb0\x51\x92\xef\xae\xb6\x38\x49\xb0\x69\x60\x94\xa8\xdf\x92\x2b\x21\xd2\xae\x88\x77\xab\x6d\x49\x01\xc6\xe2\xff\xdf\x02\xf6\x3e\xd8\x8d\xad\xc9\xbc\xbe\x1c\x32\x15\xb4\x43\xf8\xba\x51\xd8\xde\xb7\xd0\x9d\xbc\x30\x7e\x81\x76\x14\x4c\x92\x87\x81\x72\x4d\x7e\x40\x43\x81\x2a\xd1\x49\x05\x45\xfc\x11\x7d\x15\x6c\xa6\x9f\xaa\x82\x70\x3e\x29\x07\xbc\x05\xb2\x34\x7f\x50\xb3\x01\x69\x01\x7c\x8c\x0d\x5e\x13\xfd\x12\xd0\x2f\xd7\xb5\xd3\xf9\xf5\x26\x96\xff\xa5\x83\xdd\xb5\xb4\xb0\x34\xe7\xb8\x2b\x13\xf8\x1d\xeb\xdb\xaa\xd8\x54\xf7\xbd\x2f\xd6\xd3\xa7\x69\xd4\x51\x59\x79\x33\xa8\xd9\xa9\xfa\x42\xd1\x5b\x81\x56\x1d\xa5\x78\x01\x91\xd8\x4f\x70\x7a\x4b\xa4\x44\x2d\x48\x64\xf3\xaf\x2a\x5f\xcb\x73\x54\x0f\xc6\x2e\x0c\xaa\xad\x18\x26\x10\xfc\x8b\x7f\x61\xaa\x00\x67\xac\x88\x83\x6a\xfb\x2e\xf4\x2f\x70\x04\xfc\x6b\x4c\x70\x9c\xc9\xf7\xb0\xa5\x23\x86\x3a\xc6\x01\x03\xc8\xa7\x3f\x6b\xf3\x62\x81\x2f\x84\x4d\x80\x07\xc5\x0f\x32\xb9\x08\x25\xbb\x19\xee\xe1\xa0\xde\xf2\xbe\x6a\x50\xf4\x6d\x34\x64\x36\x80\xdb\xbe\x9c\x4e\xcf\xc9\x96\xf2\xec\x52\x77\xdd\x44\x85\x54\x65\xb8\xc5\x83\x5d\xd2\x05\x86\xae\xa4\xf0\xd0\xb1\x6a\xc3\xd8\x8c\xfb\xd6\x55\x54\x00\xf3\xba\x3d\x55\x98\xaf\xdb\x81\x76\x30\xd9\x30\xf0\x89\x72\x06\x3e\x2f\x7b\x03\x68\x29\x53\xac\x93\xc7\x02\xcf\x28\x04\x09\x1f\x4e\x55\xe9\xf6\x43\xd5\x6a\x5f\x4b\xb3\x34\xb1\x6f\x8c\x70\x06\x6b\xb6\x00\x5f\x4f\x9f\xf7\x91\xc8\x8a\x1d\x30\xe4\x4c\x4c\x0c\xd0\x44\xe6\x9c\x9a\x6f\xb4\x13\x77\x94\x4f\x52\x97\xba\x3b\x61\x33\xe7\xcd\x73\xb9\x01\xea\x5c\x5a\xea\x66\x51\x38\xa2\x41\x44\x55\xa2\xd3\xf3\x6c\x68\x84\x85\xf8\xdd\x9b\x53\x6f\xab\x69\x5f\x9f\x51\xa6\x71\xe7\x55\x96\xf3\x31\x41\x0c\xb8\x0a\xdb\xd8\x53\x0f\xbd\x24\xfd\x69\x5a\x4b\x38\x6c\xaf\x61\x92\x3b\xec\x96\x53\xec\xf9\xa9\x5a\xe8\x2b\x66\x20\x25\x53\x94\x2c\x3f\xc1\x7c\xe6\x9b\x96\xe2\xd9\xc1\xee\x9a\x89\x4b\x27\x39\x5c\xf3\x66\xe6\x1b\x05\xa8\x5e\x49\xb3\xd0\xee\xa9\x56\x1e\xf2\x82\x5b\x08\xdf\xd0\xc2\x62\x4f\x7e\x3c\xe1\x5f\xd0\x6a\x63\xcb\x2b\x25\x84\xf3\x17\x80\x07\x89\x4f\x93\x47\x48\xfd\x52\xe9\xa3\x51\x45\x68\x6f\xf5\x31\x08\xdb\x3b\x9b\x35\xfa\xec\xf2\x01\x37\x23\xab\xdf\x47\x4f\x6e\x77\xcf\x87\x36\x57\x82\x1a\xf0\x43\x09\x9e\x21\xae\x10\x5d\xc5\xcf\x2b\xef\x54\xe1\x7e\x2f\xe8\x5e\xb8\x34\xcd\xfe\x56\x21\x4d\xc4\x2c\xe4\x73\xd5\x67\x8b\x8f\x79\xf5\x5d\x41\x71\x7f\x47\x8b\x1b\xee\xe9\xf9\x96\xe0\xaf\x34\x21\xf8\x3e\xf2\x15\x7c\xc3\x3b\x08\xb8\x11\xaf\x43\xaf\x59\x10\x44\x1d\x67\x98\x70\x5b\xd1\x56\x46\xd6\xac\x45\x31\x64\x9b\x50\x84\xf9\x30\xa8\x09\xe2\x78\x0d\x10\xd6\x1a\xe3\x9f\xa2\xf1\x42\xcd\xeb\x9a\xca\x35\x9c\x02\xea\x9c\x82\xf4\xc1\x63\x69\x7b\xb3\x56\x48\xea\x38\xe3\xc9\xb7\xf0\xea\x45\x35\xa9\xd9\xb9\xea\xe6\x45\x66\x0a\x3b\x8c\xf2\x42\xa9\x68\xc1\xde\x49\x1e\x4f\x30\xdd\xec\xab\xbe\xb4\xd4\xee\xab\xde\x38\x6a\x16\x0e\x75\xed\x9a\x4d\x14\xfa\x05\x84\x4a\xb1\x58\xf3\x79\xf4\xc4\x44\xb1\x2a\xc2\xdf\x99\xfa\x22\xfc\x1d\xe7\x90\x4d\x8a\x03\x1b\xf1\x9a\x49\x22\xf3\xd9\x49\xbc\x14\xc7\x06\x99\x96\x8b\x45\x96\x79\x52\xa9\xbd\x6b\x30\xd7\xc8\xc0\xf8\x40\x48\xf7\x2a\x6a\xbf\xdc\x58\x8d\x8b\x8b\x07\xbb\xa6\x9f\xa7\x59\x5f\xf6\x26\xe7\xee\xe5\x34\xc8\x35\x68\x7a\xa5\x4c\x06\x66\x4c\xce\xde\x1d\xdf\x30\x38\x37\xd5\x53\xbc\x45\xe4\x7d\x25\x4a\x94\x81\x0a\x0b\x15\xd0\xf7\x17\xd1\x82\x96\x20\xcf\xbe\x3e\xc9\x6c\x9e\xcf\xd6\x1c\xd0\x7c\x78\x02\x0d\x0f\x11\x9f\xa6\xa7\x44\x64\x7a\x5a\x0d\xc6\x6f\xfe\xc6\x6f\x00\x55\x8e\xd7\x74\x57\xaf\x30\xdd\x73\xb9\x4b\xc9\xa8\xb8\xfc\xb4\x74\x87\xa2\x64\x0d\x82\xb0\x1d\x75\x92\x5d\xa7\x51\xe2\xeb\x36\x3f\x20\x6b\x24\x0f\x14\x54\x74\x1d\x30\xed\x11\x4a\x71\x35\x6b\xe1\x70\xb9\xbb\x5a\x4a\x88\xa8\x68\x23\x79\x71\x5b\x23\x78\x8e\x68\xa0\xd1\x29\xd5\xc8\xde\x05\x1c\x02\x8a\x13\x67\x1b\x13\x78\xe1\x50\xb7\xc8\xaa\xfd\x9d\x7e\x4a\x46\x4a\xe1\xc8\xcf\x28\x41\x99\xdb\x4a\x0c\xd7\x94\xc5\x28\xcd\xa2\x37\xdc\xb3\x63\x83\x44\x27\x8f\xaf\x1b\x23\x76\x78\xfe\xc5\xee\x4a\x16\xd9\x64\x10\x6f\xd0\x11\x86\xfa\xc9\xae\x9e\xe7\x04\xdd\xc2\x87\xa3\x0b\x70\xa6\xd1\xe1\x71\xaa\xae\x71\xec\xa4\xc4\xf1\x47\xa0\xab\x8f\x82\xfb\x37\xf1\xe2\xf9\x8f\x34\xcb\xc2\x0b\xdd\x28\x09\xcb\x71\x5f\x0a\xf1\xd8\xb8\x6f\x28\x60\x45\x53\xb3\x75\xe1\x50\x77\x82\xc6\x67\x0e\x56\x26\x8e\x91\x73\x0c\x48\xc2\x9e\xcb\xa8\x0f\x6c\xf1\x37\x5c\x63\x84\x33\x83\xbd\xd5\xdf\x17\x2f\xf0\x6a\xa3\x56\xc6\xd6\x07\x5d\x69\x52\x4d\x4c\x18\x7f\x52\xf2\xf9\x07\xcf\xf6\x7c\x73\xf3\x66\x5d\xe4\x9b\xf6\x4a\xec\xb8\x77\xdb\xf6\xbf\x15\xd3\xcf\x48\x3e\x89\x07\x4c\x8c\x35\x3c\xd8\x95\x25\x50\x24\xce\xf3\x9c\xda\xaf\x97\xb6\x6f\xd1\x93\x47\x6a\xfa\x3f\x07\xfe\xb4\x39\x01\x90\x1d\x7a\x9a\xc7\x15\x0c\x9d\x34\x1e\xb0\xae\xa5\x37\xdb\x51\x5f\xbf\xb3\xa9\x9c\xfa\xd3\x2c\x1c\x59\xa2\xce\x39\x2a\x78\x35\x00\x52\xe7\xda\x99\x4e\xbe\xd0\xed\xbf\xb0\xf6\x02\xbd\x35\x75\x3a\xb8\xa3\xa2\x65\x91\x1e\xe8\x9a\x90\x74\x95\x79\xcd\x49\x53\x44\x77\x48\xda\xa5\x1d\x4d\x51\xd8\x2c\xaf\x39\x77\xb1\xf2\x06\xdf\x04\xde\xbc\xa6\x58\xcb\xe7\xb4\x25\x48\xe0\x09\x53\x70\xd2\x70\xba\x0c\xbe\xb2\xf9\x77\x48\x30\xc4\x44\xe4\x39\x45\x68\x4f\x63\x5b\x98\x2c\x32\x49\x47\xa9\x48\x7c\x82\xef\xcc\x37\x2d\xc9\xd2\xc1\x6e\xbf\xdc\x70\x2b\xd2\x91\x35\x5c\x0b\xee\xb2\xaa\x91\x53\xe5\xcc\x84\xc5\xa3\x14\x06\x61\xeb\x79\x17\x72\xa2\x38\xa3\x8f\x6b\x4e\x0d\xe0\x00\x00\x60\x3d\x02\xcd\x15\x87\x21\xf1\x8e\x64\x9f\x06\x2a\x79\xb8\x86\xe8\x1e\x49\x0b\xf0\xb5\xa2\xbf\x40\x41\x11\xfa\xab\xe7\xda\xdc\x41\x87\x69\x51\x58\xd0\x66\x31\x84\x9f\xe2\xbb\xf0\x8d\xc7\x6c\xa5\xe3\x28\x21\xcc\xec\xd7\x16\x5a\x51\xf6\xc1\x3f\xfb\x8c\xfd\x63\x92\xc2\xbb\x6b\x46\x0d\xef\x69\x55\xb2\xbe\x8a\x27\xc1\xe1\xf5\x9e\xaa\x11\x4d\xd2\x32\x23\x79\x41\xa7\x0a\x02\x26\x19\x16\xec\x4f\x69\x59\xf3\x75\xe0\x41\xeb\x17\x20\xaf\xa2\xbe\xc8\xaf\x77\x4b\xde\x47\x70\x86\x5d\x07\xd6\x44\xf4\x29\x3b\x4e\x15\xe4\x4c\x6b\xc5\x67\x12\x9b\x50\x0e\x4e\x84\xb0\x3f\x52\x9e\xe1\x3f\x72\x3b\xcf\xc4\xe4\xb9\x9b\x10\xcc\x90\x98\xfa\xc5\x73\xb5\xb1\xcd\x51\xcb\x0c\x66\x98\xf8\x25\xe4\xa6\x90\x41\xe1\x6b\x4f\xc6\x1b\xa5\xeb\x83\x74\x1d\xfd\x72\xfc\xe3\x9d\xda\xf9\xad\xc4\xb5\x8e\xd7\xe8\x45\x99\x35\x7b\xb0\xae\xb4\x51\x2f\xa6\xd4\x27\x8a\x44\xd9\xd9\xac\xf2\x13\x87\xa6\x70\xe1\xd3\x09\xbc\x1f\xd4\xef\xf7\xf6\x7c\x75\xe9\x42\x03\xfe\x84\xb6\x53\x3a\xb1\x59\x11\x59\x11\xbb\x44\xe5\xfd\x88\x6e\x76\x72\x90\xc5\xea\xe6\x3e\x03\x4d\x93\x30\x2e\x07\xdc\x84\x72\x34\x62\x5f\x19\xd8\xdb\x53\x3c\xa9\x5d\x0d\x4a\x46\xf5\xb6\xfa\x36\x34\x65\x6e\xa9\xe7\x8a\xdd\x12\x3c\x17\xc7\xe5\x75\x08\xd0\xeb\x2d\x3b\xd1\xc1\xee\x20\x4d\x8c\xf3\xbf\x14\x2d\x0c\x05\xa3\x7a\xaf\xb1\x88\xbe\xd2\x8d\x4d\x51\x44\xa1\xed\x78\x69\xec\x9f\x29\x0c\xe6\xcf\xb4\x81\x5a\x6a\xb2\xc1\x97\x79\x36\x22\x95\xbb\x3d\xd5\x11\xc9\x2e\xc5\xa9\x3c\xd5\x28\xb7\x7c\xf9\xcb\xdd\xf5\x91\x09\x57\x67\x7c\x56\xfc\x80\x66\x0b\x86\xf5\x2a\xbd\x59\xa9\x4a\xc9\xcc\x59\x89\xcd\x70\x28\x5c\x7f\xdd\x31\xe2\xeb\x16\x35\xd9\x03\xdd\x6a\xb1\xcb\x76\x8c\x55\xf3\xc8\xa6\x5a\x42\x8f\x28\x5d\x17\x1e\xf1\xe7\xbc\x6a\xf6\x79\x6a\x3c\x21\xcf\xd9\x8d\xfa\x2a\x3a\xde\x48\x61\x71\x32\x71\xe3\x09\x53\x79\x2b\x50\x46\x81\xff\x37\x6a\x3e\x9c\xd6\xd1\xb9\x8c\xb7\x77\x5d\x19\x91\xde\x9c\xaa\x0a\xce\x05\xdd\xb7\x82\x41\x08\xf6\xaf\x27\xb1\xff\x61\xdb\x3f\x46\x6d\x2f\xfc\xa9\x9f\x07\x2a\xb0\xf8\x02\xd7\x5e\xf0\x63\x57\xa7\xaa\x98\xc4\x3a\xf1\x88\x54\xae\x21\xaf\xc2\x60\xcf\xa1\x29\x21\xbe\x87\x3b\x77\x8e\x2a\x86\xc9\xd2\xc2\xe6\xc5\x0c\xfd\x39\x87\xd4\x73\x82\x0b\x37\xe8\x69\xb0\xde\xde\xd6\xb5\x8d\x61\x66\x8a\x32\x56\xa5\x74\xd7\xda\xf3\x70\xb4\xb6\x6a\xc5\xc8\xac\x59\x58\x33\x39\x52\x98\xab\x92\xdf\xc4\x00\x63\x62\xdd\x51\x36\x95\xdb\x2a\x02\xc9\xa2\xe1\xa8\xc8\x9f\x50\xbc\xfd\x47\x68\xb9\x83\x14\xf7\xdf\x82\xcb\xc3\xc7\x0f\x7a\xc3\x4a\x59\x40\x5e\xfe\x03\x1a\x7e\x87\xd0\xf6\xbf\x81\xf7\xcd\xf8\x32\x7a\x76\xf4\x4d\x66\x48\x29\x1f\x07\xd9\x1d\xaa\x91\x20\x8b\x3d\x81\x60\x0b\x8d\x9e\x22\x50\xce\xc7\x0f\x5b\x31\x93\x49\x9a\x15\x23\x6b\x90\x79\x6e\x13\x6a\xf6\xc0\xf6\xfd\x36\x3c\x4e\x9e\x86\x91\x89\xa3\x7c\xdc\xf1\x35\x0a\x18\xe8\x4b\xa0\xe9\xe1\x33\x10\xa3\xcf\xd3\x0c\x3b\x02\x4e\xa9\xef\x69\xd3\xaa\xef\xa9\x22\xc6\x6a\x94\x0c\xf2\x59\x0f\xb6\xfd\x1e\x66\x8c\x34\x14\xd4\x5c\xda\x52\x80\x8e\xf3\x8a\xda\x6d\xc2\x55\xd9\x7d\x18\xf2\x55\x83\x7f\x29\x05\xb8\xb8\x20\xf5\x33\x51\x1c\xf1\x2d\x8d\x3d\x9b\x8a\x0c\xfe\x20\x50\xcc\x95\xbb\x5a\xc3\xf9\x8c\x6a\x6c\x7e\x34\xf5\xe1\xce\x0b\xff\x84\x72\x04\x84\xf7\x67\xa7\x8a\x74\xbd\xa5\x10\xec\xa3\x32\x19\xb2\x84\xa6\x08\xb3\x76\x1c\xcf\x7e\x4b\x73\x96\xb2\x74\x92\xe6\x26\xce\xe7\x94\x04\x6d\x07\x85\x55\x94\x95\x3f\x52\x6c\x4b\xd8\x26\xe0\xb3\xd9\x54\x88\xa3\xb9\xe0\x39\x1e\x23\x9b\xac\x45\x59\x9a\x20\x07\x9e\xf1\x7c\xc6\x8f\x14\x07\xe9\x4d\x1c\x30\x08\x36\xbe\xef\x51\x53\x70\xe3\x99\x51\x2f\xe5\x89\x9e\xc7\xa4\xdc\x53\x8c\xd5\x47\x36\x7d\x3d\x61\x3d\x4a\xf2\xd9\xce\xcb\x07\xb8\x6e\xbb\xa5\x7c\xa6\x50\xb9\x91\x92\x7e\x15\x5a\xb3\xd2\x80\xda\xf4\x27\x51\xb8\x6a\xb3\x1c\x1a\xfc\xc2\x71\xa8\x55\x31\x1c\x65\xfd\xbc\xb2\xaa\x26\x00\x70\x94\x26\x8f\x7a\xe7\x8e\x53\xd0\xe4\x75\xbf\xe7\xd2\xd4\x2b\x75\x94\xa4\xf2\xb1\x43\xf7\x1b\x08\x9e\x59\x52\xc2\x63\x39\x6f\x04\xc4\x58\x6a\xdb\x58\x5d\x92\xf2\x56\xdb\x24\x23\xe0\x82\xe7\x7d\x81\x0e\xc0\x37\xe4\xa1\x0a\x23\x8f\x29\x2e\x80\xf9\x9d\x2b\x73\xe1\x50\x37\x5f\xb7\xa6\x20\x71\xa5\x8e\x3f\xab\xce\x2a\xbd\xd3\xba\x0b\x92\x0d\x8b\xa7\xb0\x1f\xe3\x04\xf9\x07\xa5\x08\xf1\x5d\xda\xd2\x24\x8a\xa7\x2f\x2d\xfa\xc1\xb4\x1f\x09\x3e\xa5\x1a\x32\xb4\xf4\x1e\x4e\x3d\xd6\xe9\x02\xbe\x2a\x87\x3e\x81\x52\xfc\x3b\x81\x23\x07\x49\xe2\x55\xda\xb5\x30\xe5\x99\x39\x25\x2d\xae\x6a\x64\x70\x0d\x06\x26\x0b\x8e\x6a\xa3\x83\xab\x98\x7a\xe2\x2b\xd0\x04\x3f\x2f\x74\xd3\x32\xcb\x3b\x8a\x03\xfc\x2d\x45\x39\xf8\x16\xaa\x18\x38\x59\xa3\xb4\xb0\xe1\x28\x49\xe3\x74\xb8\x01\xfc\x1b\xca\x8a\xa7\x74\x26\xb0\x55\xd3\xa5\x68\x05\xf7\x4f\x32\x3b\x8e\x6c\xc6\x5d\x04\x5d\x4e\xe6\xeb\xc0\x77\x1d\x05\xc3\xa5\xd0\x58\xdf\xab\xe1\xb6\x3c\xb4\xe0\x96\x8b\x31\x8a\x2a\x7f\x1a\xc6\x56\x49\x31\xff\xdd\x54\x29\x9a\xff\x9d\xca\x86\xcc\x64\x12\x1b\xea\x4d\x55\x43\x8e\x97\x71\x33\xf0\x50\xf9\x9b\xba\x92\x97\x66\xab\xca\x30\xec\xc6\xb4\x86\xdf\x15\x18\x5c\x91\xae\x27\xb3\xd5\x3b\xe3\x55\xa2\xdd\x3c\xb4\xf4\xd9\x87\x1a\x7d\xf7\xb0\x35\xee\x89\x92\x81\x7d\x1d\x87\xa8\x08\xdd\x62\x2e\x02\xba\x70\x52\xc9\x33\x9f\xd1\x54\x8c\x47\x7a\x6d\x7e\xc9\x2b\x85\xcd\xd6\x4d\x06\x50\x0f\x43\x17\x15\xc8\x55\x8b\x1c\xae\xd8\xa4\x1c\x66\xd6\x82\x4c\xcc\x72\x93\xf4\xb3\x22\x3d\xd9\x52\x4f\x1a\x64\x66\x9c\x73\x0f\x1f\x13\x80\x55\xff\xc5\x43\xbe\xe3\x88\xc9\x27\x34\x60\xec\x9c\xa2\x68\xda\xd7\x27\xb1\x89\x92\x7c\x4f\xc7\x19\x6e\xfd\x3d\xfe\x08\x36\x8d\xeb\x81\x22\xf4\xbc\x37\xd5\x04\x77\x7c\xb0\xa0\x48\xab\xcd\x0f\x3b\xd3\x31\x6c\x40\xc0\xa5\xdf\x55\x2d\x9e\xcc\x86\x69\x36\x10\x57\x29\xa7\x3d\xa2\xd0\x82\xfe\xd5\xf7\x4d\x8c\xdd\x1d\x11\xc3\x9f\xd0\x8f\x39\xeb\x8e\xea\x2b\x09\x24\xb0\x05\x3c\x46\x6e\x08\x8a\x96\x8d\x52\xa7\x48\x30\x3b\x27\xa1\x22\xcd\xec\x63\xb4\x71\xe0\x48\x64\xa0\x89\xd4\x54\xe9\x29\xb0\x42\x1e\xd0\x04\x45\xc0\x72\x06\x67\xa2\xf8\xc8\x55\x23\x82\x4d\x1f\xca\x69\xc8\x2b\x81\x5f\xa1\x09\xf9\xde\x17\xa0\xf0\xe1\x0a\x4d\x6e\x43\x66\x51\x02\x81\x1d\xb5\x4d\xc8\x74\xcd\x14\x6c\x67\xed\xea\xf9\x4b\x4b\x2e\xaa\xab\x06\x9d\x59\x6f\x3e\x55\x24\x39\xce\x14\xec\x0c\x24\x4e\x77\x95\x84\x3c\x29\xec\x6c\x3f\x5e\x33\x5f\x33\xeb\xab\x75\xe2\x8f\x87\x27\x9e\x57\xa2\x1a\x59\xda\x2f\xf3\x82\xf4\xfe\x95\x98\xe0\x8b\x3c\xb0\x37\x94\x87\xee\x2d\x15\xe8\x36\x41\x11\x87\xe7\x3d\x48\xa7\x1a\x3e\x70\xb4\xcf\x60\xda\xf1\x8d\xb6\xc6\x78\x7d\x92\x66\xc5\x1e\xe5\x67\x71\x09\x93\x52\xf8\x7e\x98\x88\x32\x0e\x4a\x00\x1d\x26\xdc\xe8\xcb\x3c\xa4\xec\x48\x0a\x95\xd5\xeb\x94\xca\x67\x53\x33\xb0\x9b\x98\x9c\x09\xce\x4e\xbb\x71\x69\xc9\xf5\xa7\x65\xb7\x5c\x4f\xb3\x78\xb0\x1e\x0d\xec\xac\xc2\xc9\xce\xf4\x34\xaf\xe0\xb2\x22\xd8\x9e\xa3\xb3\x48\xdc\x0c\x7c\x88\xb4\x12\x25\x26\x09\x23\x9b\xf1\x52\x76\xfa\x65\x52\xd4\xb8\x06\x29\x02\x3c\x3b\x30\x8b\x5c\x33\xde\xb5\xe9\x3a\x14\xa6\x4c\x7c\xca\xa0\x75\x62\xa4\xd6\xbd\x33\x65\x78\xf5\xd5\x6e\x31\x8a\xd0\x50\xc1\xd1\xcf\x32\xd5\x7c\xd3\x52\xe0\x3b\xd8\x8d\x92\x3c\xca\x5d\x82\x8c\xc0\xe7\x63\x84\xc3\x7c\xa3\x90\x3b\x2b\x69\x66\xf3\x42\x43\x50\xeb\x1e\x9d\x2d\x7a\xd7\xe2\x05\xae\x70\xda\xca\x5e\xe7\x44\xcb\x1a\x39\xd8\xb5\xc9\xc0\x0e\x66\xab\xb1\x05\x8d\x8b\x8d\x19\x11\x0a\xce\xf5\x14\x9b\xf2\xd4\x54\xd7\x02\x1e\xf3\x3d\x54\x16\xc1\x92\x2d\x4b\x11\x0a\xef\xba\xe8\xb1\x5f\x66\x03\x2b\xc6\xeb\x78\x58\x76\x48\x14\x45\xf2\x8e\xa2\xf9\x7a\x0d\xd2\xe3\x6d\x41\xd1\x7a\x54\x8c\x06\x99\x59\xe7\x6d\x4a\x1c\xcf\x34\x71\x45\x07\x45\x26\xdf\xd8\xa3\xca\x64\x5b\x3c\xe5\xd9\x50\x8e\x3e\x58\xce\x94\x6a\x4b\x40\x9e\xf7\xa3\x69\xc3\xb1\x5b\x48\x52\x0a\x0a\xf2\x27\x8d\x89\xf1\xf2\xc2\xa1\xee\xc8\x0c\x34\xe7\xfd\xb2\x66\x56\x5c\x6e\xe3\x35\x65\xe1\x6f\xfe\xcb\x7f\xf5\x1b\xf4\x30\xaa\x35\x2c\xde\x1a\x77\x5b\x39\x42\x54\x0e\x61\xb0\x9a\xb3\x62\x59\x76\xb6\x2c\x6d\xf3\x63\x60\xed\xc4\xb2\x87\x20\x76\xdd\x6d\x0d\x53\xde\x6e\x9d\xb4\x62\x83\xa5\x9f\x68\x1a\x78\x04\xd6\xb4\x0d\x4a\x15\xca\x37\x93\x82\x6e\xb5\x7d\x48\xa1\xd7\x97\x3f\xc6\x51\x62\x49\x4d\xcb\x29\x8e\xb1\xce\x05\xdf\x4c\xbf\x24\x79\x4b\x6c\xc3\x22\x4b\x87\x86\x7a\x8e\x4e\xe4\x57\x84\x87\x3d\x50\xf9\xbd\x60\x07\x8c\xf6\xc0\x4b\x07\xbb\x0b\x87\x76\xfb\xdd\xe8\x9e\xda\x8d\xee\xe1\xcd\x88\xcf\x8a\x0a\x6a\x7f\x41\xdf\x18\x63\xf9\x36\xcd\x47\xbe\x6e\x3b\x68\x0e\x76\x47\x69\x3c\xc0\x52\xc5\xa0\xbc\x3f\x55\xa3\xf5\x7e\x9b\x23\xed\xff\x3f\xba\xe3\xf3\x2e\xac\x8c\x23\x93\xa0\xf7\x25\x6d\x79\x58\xcc\x21\xae\x3f\xa6\x2a\xe7\xdf\x56\x41\xc0\xc8\xc4\x31\xf2\x46\xd4\x89\x1e\xeb\x79\x34\xf9\x19\x8e\x3f\x14\x6e\x67\xc9\x1f\xca\x2e\x88\xd2\x41\x96\x7d\x3d\x1c\x99\x64\x68\xf3\x3d\xaa\x87\x08\xbd\x62\x9c\x8d\x97\x14\xc5\x9f\xa5\xd3\x85\x0a\x54\x2d\x2b\x1c\x2a\xbb\x48\xc3\x9c\x0f\xd3\x40\x71\xd0\xbc\x8e\x5b\x9e\x96\xd9\x6e\x2f\xe1\x78\x4e\x19\xb5\x7f\x91\xb6\x72\xc4\x1b\x73\xc8\xd4\x91\xc2\x7f\x47\xc9\xc0\x70\xa9\x00\xef\xf1\x86\x83\xd2\x0e\x6c\xbc\x26\xe3\xcd\x78\x41\x7c\xbe\x80\x07\x95\x3a\xa1\x8d\xc6\x16\x06\xc5\xaa\x5a\xef\x04\x72\x74\xc0\x6f\x22\x0f\x33\x44\xa9\xe7\x04\x0d\x03\x5f\xab\xd7\xb1\x6e\x86\x76\xb7\xe2\xf7\xef\xae\x46\x62\xfb\x96\x12\xac\x7f\x1a\x05\x37\x2e\x40\x05\x3e\xcb\x45\x1e\x86\xdc\xf3\x64\x63\x91\x7e\xf5\xe5\x6e\x18\x47\x13\xda\x0f\x68\x0b\x11\x61\x92\x6a\x48\x44\xa1\xfc\x59\x15\x47\x0e\xcb\xd8\x14\x69\x96\xcf\x55\x7f\x15\x59\x0a\xe3\x75\x1d\x46\xca\x19\x69\x7d\x03\x13\x19\xcb\xe5\x58\xa0\x81\xa0\x0a\xe2\x31\xb0\x93\x88\x0c\x83\xa9\x5c\xe7\xa4\x5f\xdd\x93\x5d\x74\xe9\xc6\xc0\x64\xab\x64\x7c\xcb\x50\xd9\xa9\x8a\x66\xcf\x2b\x5a\xfe\xf3\xf4\xa6\x11\x06\xcc\xa2\x7a\x8a\x9b\x9b\x35\x45\x4f\x9b\x47\x03\x9b\x84\x80\x42\x28\x4a\xd6\x8b\x4a\x52\x90\x7f\xd6\x66\x2b\x69\x36\x9e\x55\xef\x9f\x04\xf2\xb7\xb9\x7c\x8a\xe5\x7d\x3b\xf0\x14\x95\x47\x36\x9f\x51\x5a\x2c\x31\xb3\xd0\xaa\x41\x45\x00\x79\x9b\xe2\x20\xbe\x56\x9c\xcf\x24\xb1\x61\x11\x85\x65\xa1\xc4\xdf\x3f\xd2\xe2\xef\x1f\x35\xb5\xfb\x17\xba\xab\x16\x0f\xc1\xa2\xf4\x4a\xee\xf0\x56\x4b\x07\xed\xc0\xc1\x6e\x91\x95\xb9\x2e\x0a\x5c\xac\x43\xa8\x9f\xf6\x01\x2d\x61\xb7\x98\x78\x20\x74\x47\xd5\xa1\xbb\xac\xaa\x98\x61\x9a\x17\x6c\x0d\xe1\x84\xdf\xaa\xd1\x14\x66\x6b\xf5\xad\x70\x24\xc2\x99\x02\x6f\xf1\x81\x7a\x27\x51\x32\x88\x32\x1b\x16\xf1\x06\x72\x54\x41\xb5\x79\x17\x9c\x4b\xca\xcd\x7e\x30\xeb\x9b\x4f\x5c\x87\x91\xa2\x70\xc7\x7b\xc0\xe0\x30\xc4\x92\xfa\x41\x23\x20\xa8\x0e\xc3\xd5\x28\x5c\xed\x9b\x70\x95\x4f\x1d\x51\x56\xf2\x03\x7a\xc9\x45\xf8\x83\x28\x9f\xc4\x66\x83\x43\x11\x89\x17\xd4\x76\xcd\x2e\x94\xd8\x96\x66\x7b\x0a\x0f\x76\x5e\x11\xfc\x92\x72\x6c\xb3\xb4\xcc\x09\x53\x84\x0a\xe3\x51\xbc\x01\x8e\x6e\xa6\x3e\x57\xbd\x83\x8d\x06\xa7\xf9\x71\x3c\xa6\xb8\xd3\x4a\x3e\xf5\x5a\x39\xee\xa7\xb3\x4a\x3f\x97\x05\x61\x05\xa8\xed\x71\xbd\x88\x67\xb1\x1b\xec\x6e\x58\x1b\xbd\xfa\x6a\x37\x33\x51\xdc\x8f\x56\x05\xc9\xde\x66\xec\xe5\x97\x23\xcb\x79\xb1\x87\x22\xc6\x41\xeb\x64\x01\xaa\xf1\xab\xa9\x2a\xf9\xdf\x08\xb4\x98\xf5\x5a\x94\x0c\xa9\x98\x2a\x0c\x22\x9a\x30\x4e\xd7\x79\x59\x9a\x2d\xe8\xce\x20\xda\x3b\x1b\x78\xf3\x9e\xdb\xaa\x13\xf7\x79\xd8\x05\x3b\x63\x9d\x6a\x34\x14\x45\xe5\x60\x23\x89\x08\x47\x26\x8b\xd3\xa2\x40\xf1\x44\x3c\x48\x95\x0a\xcc\xa5\x46\xb1\x7f\xff\x52\x15\x76\x0c\xa8\x33\x8a\xfa\xc3\xac\xc6\x9e\xb0\x14\x8e\x1c\x25\x7e\xd8\x4f\x2a\x5a\x65\x98\x26\xa1\x8d\x00\xb6\x16\xed\x31\x5d\x88\xf4\x1b\x47\x98\xd9\x41\x54\x6d\xb6\x30\xd1\x62\x68\xda\x74\xd7\xaf\x71\xdb\xf4\x02\x66\x83\x08\xa0\xd3\xf0\xa3\x82\x8b\xa3\x55\x89\xb6\x8b\x8e\xdc\x51\x3a\xfb\x45\xdb\xb6\xfa\x58\x1c\x8e\x9f\xc3\x99\x2b\xfa\xe9\x4a\x8e\xf2\x8e\x62\x2e\x14\x91\x45\xb9\x02\xa7\xd0\xaf\x68\x61\xb2\x48\x49\xbd\x5f\xe3\x37\x81\x2d\xaa\x6a\x3a\xc7\x87\x25\x5f\x1f\xa2\x2f\x2f\xd2\x82\x3b\x17\xe6\xe2\x22\x50\xd1\x51\xf5\x99\x9d\xba\xa7\x1e\x7d\x12\xdf\x04\x8f\x4a\xb0\x76\xe8\xa5\x7f\xaa\xf8\x0f\x30\xa0\x40\xbf\x94\xb5\x99\x85\x83\xa2\x42\xf0\x1b\x1a\x88\x71\x2f\xe8\xbc\x7c\xc0\x91\x84\xd5\xa0\x6d\x83\xdf\xc8\x36\x17\xd3\xce\xef\xfd\xae\x74\xfc\x89\xaf\x83\x89\xf0\x97\x9c\x19\x88\x17\x08\x1d\xc7\xf8\x63\x6f\x05\x60\x5b\x30\x5d\x25\xe8\x7c\xf9\xcb\x4e\x0f\xa5\xf3\xd5\x97\x3d\xd3\x74\xdf\x3e\xce\x7d\x6e\x92\x7d\xc1\x36\x5b\xc1\xe1\x6d\xdf\x02\x70\x01\x7f\xf2\xc6\x54\x41\xe7\x9f\xde\xa4\x57\x4f\xe7\xfd\xd3\x4f\x41\xce\x1b\xeb\xe6\x03\x25\xf3\x74\x0c\x58\x6d\x71\x13\xf3\x4a\x7f\xef\x01\x93\x8d\x64\xfd\x7f\xa7\xd5\x85\x4f\xfc\xab\xa0\x6e\x29\x2d\x12\x38\xd0\x89\x01\x34\xfc\x1b\x81\xaf\x68\x0d\x32\x9b\x0f\x12\x9b\x21\xa2\x69\xd3\xfc\x97\x0d\x2b\x2e\xc3\xd5\x8d\x59\x0f\x2a\xbf\x83\xc9\x80\x9e\xc8\xff\xaa\xf8\xae\xf7\xf0\xd0\x38\xfb\xbe\xab\xd4\x82\xc6\x51\x0c\xc9\x14\xa1\x84\xfa\xb3\xf7\x62\xa3\xae\xb0\xb4\xd4\xcd\x4a\x66\xe7\x88\x28\x0f\x97\x72\xf9\x46\x91\x56\xc7\x26\x5c\xb5\xc9\x1b\x11\xf4\x88\x99\x43\xaa\x70\x44\x0f\xc9\xc2\x04\xad\xfb\xb3\xd8\xf3\x38\xba\xc2\x5f\xe4\x80\xb6\xad\x31\x49\x22\x88\xd5\xf8\x54\x73\x43\x44\xdb\x7c\xf3\xe4\x62\x0b\x3d\xea\x40\x77\x92\xa6\x71\x47\x9d\x37\x68\x65\xca\xf4\xdf\xb9\x85\xef\x5f\x02\x7b\x76\x85\xfb\x71\x6e\x33\xa5\xef\x26\x3d\xab\xe7\xeb\x79\x4e\x95\x77\x2e\x2d\x1d\xd8\x43\x0f\xe3\x66\xa6\xe7\x8d\x61\x31\x60\x31\xb1\x93\x8d\xe0\x83\x6b\xec\x46\xac\x00\xe9\x9a\x2a\x6b\x9c\x2b\x6d\x19\x65\x5e\x98\x95\x15\x3e\x67\xa4\xa5\xa1\xda\x1b\x5a\x70\x26\x8e\x86\xa3\x22\xde\x78\x4c\x49\xf5\x30\x24\x4c\xc4\xdf\xa9\xaa\xcf\x09\x77\xe0\xed\x38\x81\x98\x13\x35\x20\xd5\x3c\xbc\xc3\x6b\xd2\xe5\xe8\xcb\x82\xb4\xb8\x11\x78\xa4\x5e\x87\x1a\x37\x22\x56\xa0\x93\xd2\x46\xe2\xba\x6f\x5f\x37\x35\xab\x35\xa7\x4a\x1a\x1b\xb1\xaa\xf4\x0d\xc4\x03\xfb\xa0\x0b\x51\x6b\x5b\x08\x29\x54\x56\x48\x62\x87\x59\xda\xf1\x10\x78\x1e\x69\x01\x56\xb7\x00\x14\xa2\x81\x35\xac\x0f\xe7\x28\xe0\x5e\x01\x11\x1e\x23\x68\x02\x1e\x6f\x14\x1e\x96\xe7\xbb\x69\xc2\x26\xb8\xae\x7d\xe5\x46\xe1\x73\x3d\x5f\x5f\xdc\xb5\xd9\x62\x2b\xf1\x6b\xdd\x74\x65\x85\x78\xee\xa2\x23\x53\xfd\xb2\x08\xcc\x68\x13\xc6\xf1\x24\x8a\x59\x60\x5d\xc8\xed\x9a\xe9\xae\xb8\xf3\xff\xfc\x0f\x7e\xe7\xb7\x97\x9f\xf6\x64\xa1\x8f\xf0\xbe\x11\x91\xfd\x09\x4f\x35\x31\x8e\xa3\x0d\x87\xcd\x95\x02\xbf\x7b\xfc\x18\x6f\xdc\x2d\x01\xaf\x16\x33\x4b\xfa\x87\xc8\x43\x6f\xd2\x82\xc2\x41\x7d\x17\x06\x14\xd8\x95\xae\x05\x2a\x0a\x85\x17\x23\xde\x26\xaf\x01\x7c\xc8\x43\xad\x4c\x74\x14\x9b\x2c\x5a\xfc\x67\xb0\xb1\xf2\x8d\xe2\x3c\x7c\xa8\x52\xaa\x68\x3c\xb1\x61\x08\x4e\x80\xb3\xfc\x60\x80\xa0\xf0\x70\x9f\x74\x39\x63\xe1\x31\x7e\x8e\xef\xe8\xe1\x3d\x17\x1b\x4d\xf7\xfd\x4b\xdd\x30\xcd\x26\x69\x66\x38\xcc\x11\xe7\x6e\x95\x52\x34\xa9\x2c\x54\xff\x9e\xd8\x44\x1a\x8e\x35\x1f\x06\x71\x68\x68\xb1\x77\xcc\x53\x7a\xbb\x33\xde\x68\x88\xb1\x80\xe2\xeb\xd4\xb2\x31\xaf\xa7\x59\xb6\x31\xa3\x24\x9e\x59\x14\x13\x25\x3c\x20\x95\x05\xbb\xd0\x52\x0a\x31\x59\x16\xad\x31\x0d\x63\x1b\x55\x98\xed\x5f\x78\x21\x5e\xe3\xb5\x58\xb1\x2f\x5f\xa1\x0d\x01\x8b\xf8\xba\x12\x71\xfc\xa9\xea\xf0\xff\xe7\xbf\xf9\xaf\x3a\xbe\x01\xf2\xb3\x9a\x22\xca\xce\xa1\x5a\x9e\x27\x4a\x65\x36\x10\x9c\x1d\x0e\xf3\xdb\xaa\xcf\xdc\x41\x6c\x25\x64\x55\x0f\x5a\x08\x63\x93\x43\x56\x97\xe3\x29\x0c\x16\xf3\x14\x02\x95\xef\xff\xaa\xce\x60\xf0\x0c\xf7\x30\xcd\x06\x64\xae\x4f\x01\xe8\x9f\xfe\x23\x54\x01\x94\x0f\xb3\x68\x12\x7e\x80\xe5\x23\x62\x47\x2a\xb8\x7f\x48\x19\xbb\xb2\x09\x7c\xd1\x83\xfe\xdc\xde\xb9\xab\xa7\x9a\xab\x73\x9b\x7e\xac\x0e\x99\xd7\xe7\xb0\x93\x4a\x05\x08\x2b\x53\xfc\x1b\xbd\x43\x3a\x5a\x78\xd8\x96\x99\x34\xce\x92\x5a\x35\x6d\x89\xb2\x78\x43\x99\xa3\x1c\xd5\xe6\x28\x47\xd5\x29\x5d\x8c\xaa\x14\x96\xb8\x56\xcb\x42\x5a\xba\x1b\x28\xff\x29\x05\x5f\x3a\xae\xb0\x8d\x61\x9a\xe4\xec\xf9\xf1\x0a\x87\x30\xef\x4e\x7d\x38\xf3\x6e\x5b\x85\x15\x06\x0f\x24\x96\xcf\x61\x95\x4a\x4d\x3e\x98\x7e\xa9\xe1\x60\xcf\x08\xcc\xc7\x95\xc4\x25\x3f\x08\xf6\xb2\x63\x74\xdc\xb8\xb0\xcf\xe9\x0c\x6e\x63\x02\x38\x27\x10\xaf\xae\x0a\x05\x45\xac\xd7\x9b\x14\x75\xe2\xfb\x02\xb6\x01\x90\xf4\x71\x6d\x8d\x75\x07\x27\xa2\x33\xe3\x72\x6f\xf2\x8f\xb5\xb0\xa3\x99\xd8\x59\xda\xe3\xb0\x95\xdd\xa5\x4f\xe1\x6b\x1c\xfa\x08\x6e\x99\x10\xc9\x37\x6d\xc7\x47\x15\x6f\xcc\xd2\xb7\x47\x10\x77\x72\xea\x81\x80\x9d\x9e\xd2\x0b\xb8\x3f\xf5\xa0\xf8\xef\x28\x25\x9b\xcc\x9a\x01\x55\xee\xb8\xbb\x38\xf5\x34\x96\x1f\xe8\x54\xe1\x32\x26\xb2\xf4\x20\xab\x3f\x86\x4a\xe1\xae\x5e\x8d\xf9\xfd\x98\x6b\x1e\x0c\x91\x67\x8b\xde\x48\xf5\xbd\x78\xc0\x94\xe5\xf8\x05\x9a\x2f\xae\xcf\xe8\xf7\xd4\xa7\x1b\xe6\xa0\x4b\x4b\xdd\x81\x4d\x22\x3e\xc6\xc4\x89\x51\x79\x9e\x5f\x6e\xd4\x68\x16\x17\xbb\xfd\x68\xa0\x34\x9e\x2e\x53\x98\x2d\xfd\x90\xa7\x35\x16\x3d\x2f\x2c\x93\xdf\x58\x71\x44\xd9\x42\x01\xe9\x22\x55\x0e\x7f\x58\xae\x9b\xbc\xb0\x54\x1a\xc3\x4a\x81\x4b\xac\x5b\xec\x55\xf6\x82\xf0\x1e\x0c\x6c\xfe\x21\x4a\x44\x44\x23\xb0\x25\x01\x5b\x21\x73\xf3\x28\xb7\xf6\x33\x4d\xbe\x7d\x89\x32\x8f\x86\x09\xed\x65\x4e\x9a\x72\xbf\x04\x9f\x47\x09\xd7\xc1\xd7\x81\xc7\xed\x34\x7d\x28\xf7\x2f\x75\xcd\x10\x24\x1e\x74\x23\x21\xa6\xc8\xd7\x6d\x8d\xb4\x21\x51\xf5\xdd\x83\x9f\x09\xd4\x7e\xd1\x24\x08\x1f\x78\xe9\x60\x77\x25\xb3\x5f\x2f\xc5\x2e\x11\x13\x01\xcd\x31\xbe\x6e\x65\x91\xda\xac\x88\x56\x22\x39\xdb\x1c\xda\xd2\x25\xd9\xe7\xdb\xce\xa6\x32\x19\x59\x93\xc1\x40\x0d\x71\xe6\x2c\x65\x4e\x88\xc8\x76\x51\x08\x82\x49\xf6\x6e\x8b\x56\xdf\x2b\xdd\x91\x8d\x27\x34\xf2\xcc\x69\x0c\x7c\x04\x71\x5e\x1d\x23\x71\x9a\xae\xe6\x44\x90\xd3\x43\x8c\xd5\xb6\x1d\x28\x95\x7b\x4e\x02\x44\x09\x52\xb9\x61\x6d\x01\x62\xc8\x64\x35\x84\x3d\x62\x20\x54\xbd\x47\x77\xed\x84\x82\xdf\x53\x2a\x4e\xb1\x1d\x9a\x90\x71\x32\x80\x9d\x5c\xd1\xe9\xc6\x1f\x29\xbb\xfd\xcb\x8d\xd1\xdd\xb7\xaf\x1b\x8e\xb2\x28\x2f\x22\xc9\xcf\x04\x83\x51\xf3\xff\xf4\x00\xb8\x75\x6b\xc8\x04\xdd\xf3\xd7\x50\x90\x14\x32\x5b\x93\xe8\xd5\x9d\x94\xfd\x58\xb1\xb0\xc0\xa2\x82\x68\x06\x5f\xab\x89\x1c\xa6\xa1\xe9\xf8\xd7\x74\x72\x5a\xab\x2a\x38\x2d\x47\x96\xb4\xcf\xb5\xab\x23\xfc\x74\xa4\xeb\x4d\xe3\x81\xef\xbf\xa5\x93\x95\x53\xad\x1e\xbe\xe1\xc8\x8e\xa3\xd0\xc4\x5c\x6b\x65\xc7\x74\x3c\x9a\xd8\xa7\x37\x27\xc9\x81\xee\x30\x36\x98\x61\x78\x92\xbb\x88\x14\xa4\x25\xef\x71\x75\x27\xa6\x1e\x18\x47\xba\x43\x39\x48\xa8\xe2\x68\xd8\x51\x56\x87\x0e\xb6\x17\x96\x05\x49\xed\x38\x55\xa1\xef\x2b\x55\xdf\xef\xd7\xcd\x34\xac\x7d\x8c\x46\x0a\xe5\x4e\x00\xbe\x81\xe5\x62\xc0\x0e\x0e\xc2\xfb\x1c\xba\x63\x9f\xde\x52\xd2\x4a\xd7\xa9\x18\x22\xc7\x87\x82\x7e\x9f\x02\x65\x93\x0d\x77\x55\x73\x8d\x61\x95\x52\xe7\xea\x38\xab\xd7\x6d\x85\x9d\x30\xe9\x86\x19\x83\x69\x28\xba\x0a\x1d\xc7\xe7\xfd\xa8\xf1\x2e\xaa\x2d\x22\xb6\xc3\x88\x1b\x97\x1e\x2e\x8b\xad\x48\xa2\xb8\xcf\xab\x43\x34\x5e\xb5\xd0\x10\x47\xa0\xf3\x26\xb5\x52\xf9\x5a\x85\x95\x7d\x5b\x3c\x5a\x8d\x24\x8e\xab\xdb\x78\xb5\x38\xc6\x19\x25\x8c\xa3\x68\xd7\xa6\x02\x05\x6e\x29\xca\xd7\x5d\x95\xa8\x1c\xa3\x2a\x04\xe2\x6a\xb6\xc1\x14\xed\xd1\x6a\x7c\xb8\x61\x46\x16\xef\xa2\x3f\xa8\x64\xd8\xa3\xf4\xf5\x68\xc0\x84\x38\x6c\xae\x10\x6f\x42\xca\x06\x19\x47\x94\xec\xee\x6b\x95\x9c\x34\x8e\xcd\x24\xb7\xf0\xc5\x44\x39\xec\x7d\x0d\xf8\x7c\x3f\xf8\x42\xb3\x81\x5a\xbd\xed\x3d\xf4\x05\x31\x6d\x3e\x51\xda\x99\x1f\x61\x91\x23\x2a\xfa\x1f\xe8\x08\x46\xb6\xf4\x4b\x0e\x23\xb5\xaa\x1d\x23\x2e\x31\x33\xd8\x5a\x51\xb1\x8a\xf3\x68\x32\x91\x20\x9c\x47\x55\xe9\xaa\x3c\xd0\xa8\xf7\xa3\x2d\x2b\xf0\x40\x37\x2f\x4c\x51\xed\x43\xa1\xd4\x1b\xf1\xae\x59\xae\x8c\x6f\x36\xd5\x07\x9a\x78\x2c\xea\x7e\x78\x9c\x93\x4a\xf7\xf8\x86\x96\xd5\xfb\xb4\x51\x2e\xf8\x4a\x77\xdd\xf6\xc1\xb7\xc0\x4c\xe4\x98\x1c\xfd\xb1\xdb\x28\x1f\xa2\xaa\x7c\x4c\xb1\xa6\xc6\x26\x4a\x0a\x66\xc4\xfa\x19\x7d\x4c\xcd\xe8\x63\x6a\xc6\x85\x62\x0c\x83\xf0\xf2\x2d\x1e\x54\xe9\xcf\xaa\xaa\x38\xbe\x39\x43\x81\x49\xea\x48\x04\x9d\x9e\x50\x5c\xec\x28\xe9\xa8\x96\xff\x77\x50\x9b\xe3\x9b\xb6\x0a\x4f\x94\xe7\xa5\x65\xef\x14\xf4\xd4\xae\xa9\x7e\xf3\x69\xed\x72\xb1\xad\x8c\x12\x87\xa3\x34\x2f\xfa\x1c\xde\xd3\x2e\x2a\x06\x06\x0a\x89\x74\x4d\x79\x90\x5c\x6a\xfb\xf0\x95\xcc\xda\x37\x18\x79\xa9\xe5\xe0\xf9\xba\x91\x8b\x72\x30\x91\x40\xcb\x59\x1c\xdf\x66\xbc\xab\xdf\x6d\xad\x77\x78\x52\xe9\xc5\xca\x59\x50\xe6\x33\x9d\xaf\x2d\x70\x6c\xfb\xe7\x34\x9b\xf1\x70\xf7\xb1\xbc\xf1\x3a\xef\xe9\x66\x71\x91\x95\xe1\x2a\x8e\x3d\x36\x92\x0a\x34\x65\xe8\x7a\xe3\xc1\x96\x96\xba\x71\x39\xee\xdb\x8c\x3a\x2f\x78\x96\xff\x05\xa7\x0b\x8a\x21\x17\x14\xbc\xe2\xe7\x9a\xd9\x7d\x5c\x99\x09\x9a\x38\x4d\xec\x9c\xd6\xba\xba\xae\x45\x36\x18\x00\x2e\xd2\xce\xea\x15\x9c\xa5\xa7\x42\x95\xbf\xd3\xd3\xa8\xf4\xa1\x8d\x45\x50\xdf\x99\xfb\x2a\x92\xa3\xe7\x1a\x99\x2c\x8d\xa3\xc4\x08\x4b\x09\xab\xfa\x29\xe5\xe9\xfe\xbe\xa6\x34\x3f\xb1\x59\x73\x53\x8a\xa3\x37\x2c\x25\x62\x42\xf1\xa9\xa6\xaa\x50\x7f\xda\xac\x33\x07\xeb\x26\x5b\xa9\xa3\xa6\x2e\xa9\x10\x54\xcb\x1d\xc5\x66\x2d\x65\xb7\x40\x86\x15\xd2\x81\x24\x10\xc3\x36\xa9\xbf\x7e\x5a\x92\x18\xa8\x8b\x8e\x99\xb5\xca\x37\xae\x91\x3a\xb0\x2b\x36\x84\x68\x06\x3d\x1b\xa6\xc8\x11\x2d\xb0\x76\xa4\x8d\xd5\x1a\x25\x2b\xd1\x70\xe4\x61\xc1\x5c\x21\x69\xa8\x04\xe0\xd4\xfb\x43\xd7\xa7\x34\xfd\x01\x91\x61\xe9\xe4\x06\xec\xf6\xdf\x63\x92\xf0\x8d\x5a\x6d\x79\x99\xad\xd9\x28\x8e\x01\x13\xa9\x7e\x06\x89\xe9\xdb\x8a\x4a\x85\x21\xc3\xef\x9e\xf4\xc4\xbb\xcc\x78\x26\x26\x50\xdf\x97\x95\x35\x91\x32\xb4\xdb\x18\x4f\x8a\x74\xcc\x3b\x01\x0b\xb9\x04\x4a\xc4\x04\xd9\x1e\xa6\xd5\x05\x15\x8b\x99\x68\x90\xcf\xf9\xa0\xf3\xbe\x66\x75\x1c\x57\xf6\x2b\xe0\xfb\xc9\x3c\x57\xec\xe2\x63\x4a\x38\x2e\x8c\x6d\xb6\xaa\x6a\xe2\x88\x93\x25\x45\x91\xf9\xd9\x8f\xb2\x62\x34\x30\x1b\x35\x29\xaf\x2d\x25\xe5\xa5\x39\x16\x2b\x69\x66\x43\x93\x17\xa0\x9e\x20\xbc\xbb\x83\x6d\x51\x34\x69\x3a\xce\xd5\xec\x0e\xf0\x52\xfc\x0f\xb5\xa2\xc7\x38\x1d\x2b\x79\x85\x93\xaa\x2e\x75\x52\xfb\x3b\x4d\x8a\x68\x4c\xec\x19\xe7\x0d\x80\xf0\x9c\xaf\x5b\x8a\x53\xcb\x24\xb1\xea\x5e\x12\xe2\x78\x48\x40\xf2\xb5\xab\x38\x13\x97\x4e\x39\x0b\x1f\x57\x9d\x9b\x2b\x81\x22\x9b\x6f\xb9\xfa\x93\x19\xa4\xf1\x64\xd4\xe9\xec\xdb\x27\x4e\x8b\x5a\x11\xfc\xbc\xfb\xd3\x61\x46\xdc\x39\x4f\x53\xa1\x18\xc5\xf9\xfc\x2b\xa7\xb3\xa6\x9d\xf0\xbe\x6e\x31\xb2\x63\xab\x4a\xe1\x1f\xab\x89\xf9\x71\xd0\x34\x74\x3f\xc0\x82\x2e\xb4\xde\x00\x7c\x42\x8c\xf3\x47\x53\x2d\x17\xc4\xb2\x4c\x02\xca\x57\x02\x4e\xd6\x14\xb9\xb6\xd1\xc3\x9a\x16\x4f\xbd\x9d\xcb\x74\x7f\x95\xe8\xd9\x41\x19\x7a\xfa\xa2\x94\x9d\x3a\x4e\xc7\xf9\xb8\xd3\xa7\xcd\x6c\x98\x95\x51\xe1\x04\x72\xb5\xb0\x14\x5f\x6b\xee\x69\xe9\x17\x3f\x2a\xcc\xf7\x95\x42\x2b\x2a\x74\x58\x0e\xe7\x6b\xd1\xf8\x1b\x36\xfb\x1c\x3d\x39\xa2\xf1\xdb\x0a\xd0\x8e\xb9\xec\xf2\x92\xe5\x79\xe9\x09\x7e\x6b\xaa\x1a\x84\xdf\xc2\x2c\x16\x5e\x16\x3d\x96\xf0\xe8\xbd\xd3\xcc\x71\x4c\x69\x61\x72\xb5\x25\xb1\x65\xce\xde\x06\xc8\x4f\x3e\x9c\xaa\x14\xec\x43\x15\xbe\xf5\xb3\x68\x30\xc4\x6b\x76\x2a\x9c\x4a\x4e\xca\x07\xaf\xab\x94\x2c\x26\x0a\x61\x85\xf4\x9d\xaf\x55\x64\x9e\xd8\x38\x4f\x13\x3e\x67\xb0\x39\xb0\x78\x81\x4b\x81\xbd\x42\xc8\xf5\x9d\x75\xbc\x97\x0f\x48\x1d\x0f\x8e\x0b\xce\x73\xf8\xc0\x4b\x07\x75\x87\x45\x12\xd6\x6d\x58\xce\x73\x19\x34\xa8\xd9\xdb\x54\x0b\x16\x70\x0e\xde\xf3\xb1\xeb\xcc\x52\xf5\x0e\xa5\xd2\x87\x88\x11\x80\x02\x38\x8d\x8c\x87\x7f\x45\x6d\xd6\x94\xc9\x42\x8c\x1f\x7b\x8e\xf8\xef\x2a\x11\xcf\xd3\xca\xb0\x0b\x50\x18\x51\xfd\x70\xae\xb2\x36\xca\x06\xc0\x8b\xb8\xf2\xa2\xe3\xa5\x6a\x88\x08\xa0\xdb\xe2\x53\xed\xd2\x42\x33\x89\xac\x78\x11\xa9\x36\xce\x41\x9e\x6d\x57\x95\xd2\xe2\xb6\x03\x51\xbd\x66\xc2\xaf\x97\x82\x2b\x41\x1c\xce\x10\x63\xbe\x69\xac\x2c\xd2\xb0\x18\x44\x6b\xd1\xa0\x64\x64\x32\xba\x64\x0f\xa6\xbe\x7d\xf6\x40\x29\xf5\xe4\xd6\xae\x46\xc9\x70\x6f\xc7\x15\x34\xdf\x9e\x2a\xcb\x21\xd6\x80\x16\x57\x79\x4c\x0b\x71\xff\xf4\x8b\xea\x1a\xc2\x3c\x29\x67\x6b\x74\x63\xe0\x85\x3f\xce\xbb\x02\x63\x5a\x14\xe9\x8c\xae\x70\x74\x9c\x09\xec\x39\xcd\x7b\x79\xd0\x60\x6d\xef\x5b\xd0\x0a\xc0\x8a\xda\x85\xb2\xa6\x14\x5d\x9e\xf3\x6f\x1f\x38\xb4\xea\xa4\x86\x99\x13\x76\xb2\x73\x28\xd8\x20\x08\xb8\xa5\x76\x9d\xd3\x53\xdf\xbe\xbc\x45\x5d\x51\xfe\x05\x85\xc6\x3e\xad\x29\x95\xec\x80\x23\x3c\x8c\x9d\xeb\x79\xff\x92\x22\x78\x08\x3d\x50\x0b\x3f\x34\xea\x6d\xcb\x07\x7e\xad\x5a\xd9\x45\x94\x8f\x3a\x3a\xea\x52\x60\xa7\x4b\x8d\xf7\x4e\x82\x9a\xfd\xcc\xe4\xd1\x9a\xcc\x17\x96\x54\x55\x82\x8d\x9f\x7a\x7f\x81\xcc\x6c\xcc\xf8\x23\x01\x6c\x08\xf1\x8e\xf1\x65\xb1\x13\x2d\xb4\xf3\x6e\x6e\xc7\x51\x62\x32\x6e\xa9\x61\xd2\xf3\x5c\xe6\x1b\x37\x7f\xf3\x71\xe4\xc5\x24\x51\x29\xc3\x5e\x2c\xdd\x12\x7a\x26\x51\x5a\xf5\x9d\x8a\x28\x29\xca\xc8\x29\x8a\x3a\x67\x56\x75\xbc\xb4\xf1\x03\xcc\xaa\x9d\xf3\x10\xc1\xb3\x54\x79\x73\x16\xed\x2a\x42\xa5\x0f\xc5\x6e\xf4\x21\xc5\xe6\x2c\x6c\xd5\xb0\x6b\x5f\x5a\xea\x86\x51\x16\x96\xe3\x35\x11\xdf\x7a\x85\x97\x10\x4b\x0d\xf2\x4d\x0b\x78\xe2\x40\xb7\x1f\x97\x96\x83\x7b\xd5\x41\x72\xed\x24\x25\xa5\x9c\xa5\xb9\x7d\x82\xa6\xa3\xac\x6a\x2f\x35\x7c\x57\xd5\x32\x1e\xa5\xad\x0f\xbb\xfb\x17\x41\x4a\xc5\xf2\x3b\xb3\x43\x42\xd8\x81\xea\xa1\x5f\x86\xf2\xc0\x09\x6c\xaf\xf8\xf8\x99\x4d\x25\x95\xf8\x90\xa6\xb9\x28\xab\xe9\x7c\xe4\xcf\x34\x11\xeb\x56\xe3\xac\xda\xbf\xd4\x35\xd1\xaa\xdd\xa9\xdb\xbd\xcf\x17\x16\x7d\x5e\x3d\x1f\x0d\xe7\x7c\x25\xe7\x9b\x53\x9d\xb2\xb1\xd0\x92\xf3\xc1\x73\x93\xfe\x99\x9e\x12\xb8\x7a\xd8\x28\x08\x2c\x1c\xea\x4e\x0c\x60\x9c\x6d\xaa\xac\x12\x9e\x02\x0a\x41\xe4\x8e\xea\xb0\x46\x83\xe4\x02\x62\x69\xbe\x51\xda\x4a\x5a\xb4\xaa\x29\x45\x21\x05\x7d\x9f\xc9\x16\x23\x6b\x8a\x2c\x0a\x4d\x0c\x75\x36\x49\x4d\xaa\x77\x28\x39\xcb\xce\x2f\x5e\xad\xd6\x61\xda\xf1\xa0\x6b\xa8\x6d\x4a\xe1\xc3\x1f\xc7\x66\x65\x38\x32\x49\xa7\xa6\xd5\xe4\x5a\x97\xff\xe9\xd9\xba\x76\x86\x99\xcc\xf9\x2a\xf6\x66\xa0\xc2\xca\xe3\x78\x58\xb4\x35\x8f\xa9\x6c\xf7\x34\xdc\x6f\xf8\x1f\x54\x7e\x2e\x3e\x71\x36\x99\x51\x35\xef\x73\x2a\x78\x02\xb9\x92\xcd\x4d\x15\xf0\x64\x98\x99\x64\x60\xcb\xac\xe3\x5f\x05\x6a\x51\xc2\xff\xf8\xbc\xee\x5f\xc5\xf1\xc6\x1c\x7d\x05\x4c\xd8\x6b\xb4\x1e\x51\xb5\x3c\x8a\xec\x8b\x35\x10\x10\x35\xf1\x4f\x11\xea\x4c\x7c\xb7\x77\x6a\xb9\xec\xdb\x47\xdf\x7e\x52\xa4\xab\x55\xce\x6c\x51\xce\xc1\x9f\x99\x21\x8d\x80\x5a\x58\x81\xd2\xd3\xa5\xa9\x1e\xd6\xea\x4d\x23\xdc\x7a\xbb\xa6\xfa\x57\x0e\x36\x50\xbb\xc6\x11\x88\x33\x47\xda\x01\x1d\x27\x76\xc7\x82\xf7\x28\x70\xed\xea\xb5\x88\x10\x47\xc9\xa0\xcc\x8b\x2c\xf2\x8e\xd2\x52\x64\xe9\x10\x49\x9b\xaf\x1b\x3b\xd2\xf2\x81\x6e\x99\xe4\x69\x1c\x85\x91\x8b\x9c\x21\x51\x01\x21\x52\xbe\x6e\x64\x35\x87\x5e\xea\xa6\x6b\x36\xcb\xad\xc9\x67\x7d\x6b\x4c\xeb\x59\x6f\x63\x34\x10\xdb\x20\x0c\xc7\xf5\xa3\x0d\xd9\x6a\x9c\x01\xf0\x9b\xf2\xdc\x0e\xec\xcf\x02\x18\x55\x3c\x3c\x9b\xa7\x59\x81\x97\x80\xf3\xe1\x03\x8e\x23\xf8\x6e\xaa\xbc\x3e\x3e\x0e\x7c\xc3\xfb\x96\xf2\x74\x79\xa0\x72\x8d\x89\xc9\xa2\x7c\x37\xfe\x04\x7e\x6b\x3b\x50\xc2\x46\x28\xcb\xe3\xa1\xee\x63\x7a\xe3\xa7\x66\xd0\xe8\xe7\x1b\x60\xdc\x71\xce\x5f\x51\x09\xa3\x7d\x9d\x42\xe5\xe1\x6c\x0d\xcb\x4b\x7f\xdf\x19\x03\xb8\xbc\x19\xd1\x0d\xc0\x5b\xd7\x35\x5e\xd5\x64\x59\x64\xb3\xb9\x6a\xa8\x71\xf4\x32\xb2\xc9\xf1\xec\x1c\x33\x1c\x89\x2b\xe6\xd3\x1e\x2a\x22\xa3\x67\xfb\x50\xe9\x3a\x8c\xa3\x24\xaa\x46\x3b\x9f\xf1\x6b\xea\x8a\x82\x5c\x6d\xe3\x8f\x73\x00\xa5\xea\xf8\x23\xb3\x46\xb4\xc5\x7d\xfb\x1c\xf3\xa4\x3a\x14\x05\x00\xe6\x0f\xdc\x61\x66\xaa\x80\x31\xe6\x8e\x14\x0a\x99\xd7\x11\x5e\x4b\xb9\x41\x29\xeb\x35\x9d\x41\x17\x0e\x75\x8b\x51\x16\xad\x14\xb5\x60\xf5\x82\x92\x07\xba\xa0\x7a\xaf\x79\x91\x66\x1b\x7b\x3c\x75\xff\xa2\x27\xa0\x1e\xbe\x36\x55\x45\xfe\x8f\x30\x39\xf8\x98\x40\xcc\xc6\xa9\xa8\xda\x8e\xaf\x06\xde\x48\xe0\x74\x9b\x02\x74\x38\xb2\x66\x62\xb3\x19\x0f\x8c\x61\x8b\x49\x24\x40\x77\x95\x6c\xc5\x89\x46\xf9\x90\x96\x6b\x1e\x0d\xec\x9c\x67\xcc\xde\x51\x8e\x99\x50\x65\x02\x92\xea\x27\x14\x3d\xa2\xf6\x09\xcd\x03\x9c\x9d\xf7\x1b\x03\xf6\x95\x6e\x3f\xb3\x65\x62\x33\x1e\x30\xc1\x98\x2a\x92\xed\xa7\x6d\xc8\x99\xbc\x28\xfb\xfd\x34\x4b\x10\x8d\x38\x3d\x5b\x5f\xd7\x6d\x53\xa8\x8b\xd3\x7e\x7f\x43\x74\x2e\x51\x04\x3b\x85\xf3\x81\x6f\xb4\xdd\x23\x09\x8e\xec\x56\x5a\x5e\x9f\xe0\xd5\x8b\x14\x41\xf5\x54\xd2\x1f\x53\x12\x7f\xa8\x7d\x60\xb9\x3e\x54\x70\xd4\x47\x7a\x8f\xfb\x6a\xe4\x6b\xd9\x1e\x8f\xf6\xbb\x32\xd5\xd5\x54\xcc\x01\x31\xd9\xa4\x8c\x11\x9f\xf2\x57\x98\x86\x08\x1f\x2f\x4c\x15\x81\xeb\xb2\xf6\xd1\xfe\xb6\xca\x77\x73\x9b\xad\x45\xa1\x7d\x1c\x7f\x1f\x5f\x1c\x1d\x1a\xa1\xc1\xf8\x7c\xfe\xa8\xd6\xe3\x39\x82\xc6\x3f\xf2\xd6\xe3\x34\xc5\xb0\x1c\xef\x52\x3e\xea\x08\xb9\x87\x45\xd9\x0b\x32\x15\x42\xce\xd5\x8d\x63\x8d\x24\x3c\xa6\xcb\xb3\x33\xbd\x66\x63\xa3\x6f\x72\xab\xe2\x98\x53\x2a\x8e\x69\x2a\x2b\x55\xfb\xaf\x49\x44\x30\x1b\x78\x91\xf3\x1a\xe1\x7d\x5e\x55\xf0\xf2\x32\x2a\xf2\xdd\x1d\x27\xd3\xca\x3e\xb4\x2c\x97\x35\x55\x7c\x53\x96\xe2\x10\x21\x2d\x5f\x23\x65\xc4\x37\xb6\xd4\xad\xa6\x16\xf8\xbe\x6e\x9c\x0a\x92\x45\xa4\xe5\x7d\xb6\xc3\x85\x10\xfc\x29\xbc\x04\x6e\xc7\x35\x92\x0b\x72\x9c\x4b\x27\x13\xe9\xd4\xe0\x0f\x5c\x53\x7f\xec\x9a\x42\x3b\xe6\x0e\x00\xc8\x5a\x20\x81\x22\x04\x5f\xd2\xd6\xb5\x36\xcf\xb3\xfc\x85\xce\x0e\x0a\x9e\x57\x80\xbf\xa4\x04\xe6\x57\xa2\xd7\xed\x60\x4e\x59\xf8\x7f\x18\x28\x31\x7f\x1c\x2e\x18\xc9\x4f\xa6\x0a\x1a\x0d\xb1\x01\xfe\x0d\x67\x43\x51\x26\x03\x9b\x55\x79\x09\xeb\xf5\xe1\x84\x82\x16\x29\x5f\x6f\xee\x2c\xc6\x2d\xcf\x77\xcd\x40\x76\xfc\x7a\x75\xec\xb6\x3a\x11\x6f\x6b\x47\x6e\x9b\x3c\xee\xcb\x9f\x0c\x6d\xc7\x3e\x77\x45\xf9\x7d\xff\x80\xb6\x49\x64\x03\x73\x9b\xaa\x93\x75\x6f\xda\xf9\xda\x82\x37\x45\x3e\x3c\xcf\x47\xf3\x17\x48\x1d\x98\x43\x02\xa4\x0f\x5a\xc1\x07\x79\xdb\xb3\x80\xea\x01\xf2\xfe\xef\xf0\xb2\x31\x73\xef\xa8\x23\x8c\xa2\x0f\x8a\x75\x3a\xce\x0b\x15\x1b\xa4\xac\x7e\x55\xb3\xa5\x48\xc5\xe6\x7b\xea\xaa\x59\x5a\xe8\xaa\x7a\x28\xf1\xf7\xad\x1e\xca\x79\x7a\x38\x3c\xed\x25\x2d\x22\x7e\x7d\xea\x61\x47\xd7\xdb\x76\xd5\x35\x9b\x29\xac\x0a\x0a\xb8\xf0\xe4\xe4\x6b\xf5\x28\x7d\x13\x16\x36\x8b\x4a\x28\x32\x21\xe2\x62\xfe\x30\xdf\xb4\x31\x74\x87\x69\x41\xb0\x3b\xa9\x82\x75\x9c\xaa\xd5\x16\x0e\x3c\x56\xea\x6a\x8b\xb6\x26\xa4\x38\x99\xf0\x49\x21\xbc\x66\x1f\xc5\x5f\xd6\xad\xf5\x32\x4b\xec\x00\xd6\xc3\x1a\xa8\x8d\xb0\xe7\xc9\x9e\x7f\x71\x73\x54\xb4\x92\x34\x53\x01\x31\x19\x26\xee\xa0\xf3\x0e\x3b\x00\xe5\x13\x9c\xcc\x8f\x35\x4c\xa8\x96\x96\xba\x23\x3b\x70\xea\x6d\x62\x08\xee\xeb\x5a\xcd\x96\x23\x41\x6d\xd7\x6c\x06\x60\x11\x5e\x28\x6a\xad\x7c\xdd\x56\xdb\xde\x30\x85\xa3\xb7\x48\xc7\x80\x46\x5f\xba\x04\x2d\x9f\x62\x92\x68\x2c\x1e\x8c\xd2\x32\xa9\x3e\x12\xbf\x72\x47\x11\x0a\x66\x7a\xba\xbe\x4a\x72\xa5\xaa\x50\xa5\x93\x2a\xdf\xab\x31\x93\x89\x89\x63\x3b\x20\x5d\x17\xed\x5f\x8f\x2a\xd6\x0c\x69\x54\x21\x40\x38\x83\x81\xc6\xe3\x9d\x70\xe5\xc1\x31\x79\x94\xb2\x32\xba\x28\x26\xd2\x4f\xf2\x8d\xfb\xc9\x30\x4b\xd3\x55\x5e\x46\xae\x28\x5f\xfd\x96\x84\x45\x9a\x89\x3f\x8e\x06\x7b\x3d\x72\x60\x77\x4f\x35\x3e\x70\x5e\xd4\xb4\x86\x1c\xaa\xcf\xbd\xbd\x5f\x05\x0a\xa2\xc7\x75\x3d\x04\x40\x3f\x41\xfc\xc4\xde\xe6\x6d\xf8\x2f\x16\x8a\xe0\x2a\x24\x2a\x0d\x77\x35\x86\xfa\x6e\x23\x52\xa3\xde\xcb\xc8\x10\x24\xa1\xfa\x76\xe2\x76\xa9\xaa\x03\xff\x1d\x8d\xeb\x67\x85\x7a\x87\xe7\xbb\xc5\x88\xfa\x8b\x33\x8a\xac\x7c\x41\x19\x5b\xb2\x81\x20\xd3\xef\x1a\x9d\x90\xc3\xf3\x4b\xdd\x81\x1d\xa7\xc3\xcc\x4c\x46\x51\x48\x5f\x5d\xbc\x64\x3c\xb8\xf2\x68\x83\x13\xc9\xe8\xef\x8c\x78\xbe\x38\x97\x05\x88\xa0\x72\xf7\x63\x6d\xe4\xb8\xc4\xbe\x5e\xcc\x7a\x64\xfd\x65\x6a\xa0\x22\x52\xd0\x7a\x1c\x8f\xf4\xbc\x36\xd4\xa6\x67\xbf\x8e\xb2\x34\x01\x04\x8a\x82\x5b\xe4\xc4\x28\xe1\x01\xe8\x82\x48\x95\x45\x30\x55\x16\x35\x8a\xe2\x98\x85\x9d\x50\xc5\x82\x91\x28\x5f\x37\x46\xf6\xc0\xf2\x81\x6e\x3f\x36\x63\x41\xd2\x8b\xd2\x8c\xa2\x9d\x3f\x50\x4d\x3e\x93\xe7\x76\xdc\x8f\xd9\x4a\x4c\xe4\xa7\x15\x45\xee\x54\xad\x97\x67\xf2\xfe\x6c\x8d\x9a\xe2\x81\x90\xb7\xf0\xc2\x74\xfa\xc2\xff\xa0\x0e\xed\x61\x19\x86\x11\xbe\x18\x2b\x2e\x06\x4a\xb8\xfa\xa6\x16\x2a\xcb\xec\x38\x2a\xc7\x70\x18\x74\x99\xc4\xfe\x25\xb7\x96\xbc\xd3\x9c\x49\x0a\x33\x4c\x13\x82\xb7\x10\xcb\x03\x99\xdc\x7f\x83\xdd\x51\x23\x3b\x45\x03\xa5\x85\xe6\xd1\xcd\x47\x65\x81\xa4\x4a\xd0\xd9\x5e\xe8\xf0\x9b\x78\x36\x19\x73\xe5\x66\x99\xae\x27\xeb\x04\x83\x74\xb5\x52\x28\x67\x61\xe7\x61\x14\x88\xd4\x42\x5b\xc4\x96\x26\x29\xbd\x5d\x85\x55\x52\xa0\xd0\xa3\xda\xaf\x28\x8b\xc6\x36\xdf\xed\x5b\xb1\x7b\x68\x9e\xe9\xce\x34\xb2\xf1\xce\xa6\x72\x07\x60\x01\x03\x24\x83\x3f\x47\x5a\x26\x0d\xec\x26\x5d\xf8\x95\x6e\x9e\xae\x14\xd6\x4b\xd2\xa3\xde\xfa\x41\xe0\xb9\x68\x1f\xa8\xaa\x50\xdf\x24\x5f\x2f\x19\x84\x02\x4c\x16\xd4\xff\xf8\x5a\x69\xed\x8c\xca\x7c\xd5\x66\x1d\xcf\x43\x42\x97\x5f\xb4\x08\x25\x0a\xdb\x28\x87\x69\x1e\x9b\xb5\xc8\xe0\x8f\x8a\xae\x28\x0d\xa2\x08\x8b\x4a\x7f\x76\x25\x22\xd7\x30\xc5\x12\x9d\xe9\xf9\xaa\x1a\x57\x5a\x11\x12\xdd\xd5\xd4\xf8\xd1\x46\x1e\x85\x91\x49\x90\xa3\x23\x5a\xbd\xa4\xe4\xa2\x76\xa1\xe0\x80\xb9\x7b\x43\x49\x8c\x91\x6c\x7d\x99\x51\x77\x42\x58\x1f\x57\x30\xbe\x88\xa9\x7e\xa9\xd2\x10\x6e\xd4\xe3\x64\x46\x2a\x86\x5c\x9d\x30\x8c\x2f\x6e\xdf\x52\xd2\x8a\xa8\x29\xf2\x1e\xea\xb0\x24\x79\x51\x4e\xa2\x81\x2b\x86\x0a\x5b\xcd\x87\x05\x4a\x9b\xa9\x28\x07\x1b\x3b\x54\x82\xa1\xd7\xcd\xd7\x0d\x5e\xd3\xab\xaf\x76\x57\xd2\xb0\x04\xd8\xcd\xf9\x13\xbb\x64\x49\x4b\x18\x64\x76\x60\x81\x7f\x3e\x2c\xa4\xca\x2d\x2c\x5a\xb6\xdb\xa0\xaf\xe4\x28\x11\x4b\xe2\x60\x74\xad\x56\xf3\x8c\x26\x84\xbf\x58\xf0\xfe\x71\xfe\x7c\x7e\xa0\x76\xbe\x1b\x8a\x91\xbb\x1e\x0d\xec\x1e\xdf\x4b\xe8\xf4\x7c\xa5\xf6\x02\x82\x5c\xc1\x7d\xd7\x6c\xd8\xaa\xef\xe9\xac\x00\x96\xe7\x1d\xb5\x98\xa0\x4f\xe2\x23\xa7\x48\xef\x55\x76\x42\x0d\x43\x39\x35\xd0\xb9\x94\xbd\xa2\xe6\x63\xdb\x71\x4a\x3a\x4f\xf7\x1e\x15\xa4\x48\x98\xcf\x2a\x69\xb2\x93\x0a\xf8\xf2\xd7\xff\xb8\xe7\x17\x26\xeb\x20\x41\x7e\xe1\x99\x4d\x3f\xc2\x61\x66\xa9\xe9\x39\xa3\xc2\x83\xfb\x81\xda\xbd\xcf\xd6\x39\x02\x2d\xd5\x75\x93\x8d\x31\x4d\x5c\x50\xa3\xe8\x56\xae\xc9\x53\x8e\xc7\x26\xdb\x98\x51\xd8\xe3\x13\x8a\x1e\x82\xa4\x45\x84\x08\x5b\x25\xff\xe2\x68\xc5\x16\xd1\xd8\x2a\x1c\x11\xd8\xa3\x7c\xdd\x26\xc8\xd0\x9d\x98\xcc\x26\x05\x1e\x0e\xf5\xeb\x8b\x0a\x38\xb2\xa5\x4b\x42\x3a\x17\x34\x79\x1e\xad\x59\x68\xb2\x4b\x6c\x4f\xf3\xdb\x79\x7d\x39\x85\x29\x80\x26\x20\x26\xb7\xbb\xa7\x04\xda\x9b\x05\xfd\x57\x5f\xed\xc6\xb6\xd8\xed\x49\x26\xc7\xf4\xee\xf2\xad\xc0\x0b\x7c\xcc\xd0\xab\xc3\x17\x7e\x13\x47\x89\x63\xdf\xec\x17\xe1\x83\x26\xa0\x9e\xf4\xea\xa3\x2c\xcc\xcc\x4a\x31\xa3\x12\xd2\xab\xb4\xc8\xc5\x5d\x4b\xa9\x96\xd6\xd4\x39\xcb\x2c\x1c\x99\xdc\x3e\x51\xfd\x2c\xe2\x37\x26\x58\x89\x28\x19\x7d\x0f\xb6\x1d\xd0\x0d\x43\xfa\xe2\x62\x47\xa0\x25\xb2\xcf\x04\x4a\x82\xe5\x28\x65\x4a\x18\x28\x16\x34\xc4\x0e\xb1\x9b\xf0\xfa\x6c\xce\x18\xd4\x84\xe1\xe8\x19\xb0\xf9\x73\x54\x88\x5d\xeb\xff\xd0\xb2\xb1\x36\x7f\xb2\x26\xe1\xee\x97\xc3\x6d\x5d\xf2\x9c\x25\xfb\x1d\x21\x9e\x7b\x38\xc4\x2d\xad\xa7\xa9\x99\xac\xb3\x9b\x5e\x50\x74\xf4\x1f\x28\x73\x86\xf7\xff\x63\x16\x44\xc3\x26\x04\x07\x0a\xbc\x9f\x3d\x9b\x2e\x00\xfc\x7a\x77\x53\xd5\xac\xb9\x94\x28\xd6\x2e\xcf\xaa\xca\x77\x98\x8e\xc7\x36\x19\xe4\xca\x4d\xe2\xa8\x6a\xb5\x1e\x55\x13\xb3\xc8\x0c\x68\x9e\xde\xca\x99\x02\x32\xb1\x75\x7e\xc2\x95\x14\xe2\x68\xd5\xce\x55\xff\xa4\x8b\x7f\xe8\x56\x20\x59\x43\x3d\xfa\xa4\xd6\x27\xf9\x06\x8d\x04\xf6\x9e\xb9\x9e\x36\xd6\x99\xa4\x19\xb9\x19\xe8\x0e\x62\xe0\x9d\x8d\x7c\x92\x13\x8e\x4c\x36\x74\xcd\x5c\xcc\xd3\x39\x3a\x1a\xd1\x41\x41\x12\x85\x09\x71\x4d\x91\x35\xc9\x3e\x9d\xb5\x5c\x5c\x62\x77\x42\x65\xf0\x27\x94\xc0\xe3\xd8\x0c\x13\x5b\x44\x61\x47\xd1\x0f\xb7\x94\x1e\xe0\x96\xc3\x04\x79\xf3\x1e\x8e\x48\x9d\x25\x5e\xf5\x32\xc5\x12\xef\x4b\x35\x1e\xad\x2d\xa8\xa9\x9c\xd8\x9c\x31\x85\x02\x23\xf6\xb0\xe0\x8b\xca\xcb\x24\xb3\xf9\x24\x4d\xf2\xa8\x1f\xdb\x59\x1f\x80\x1c\x51\xea\x4a\x47\xb8\x93\xe1\x34\x93\xab\x40\x88\x6f\xda\x88\x9b\xab\x99\x4d\xde\xd0\x8c\x7a\xce\xdd\xf8\xa6\x36\x77\x86\x26\x1b\xc4\x36\x47\x3c\x81\xdc\x94\x11\xfe\xaa\x3d\x26\xb5\x8a\x6b\x2d\x38\xa2\xee\x30\x32\x0c\x98\x42\x20\x81\x9a\x1e\x5f\xbb\x1a\x55\x3e\x4e\xe3\x81\xf5\xaa\x4a\x82\x8e\xf1\xc1\xc3\x79\xd5\xd9\x18\xdb\xd7\xa3\xd0\x24\xb3\xaa\x3c\x2c\xf4\x45\xe7\xa1\xec\x14\xfb\xcf\x23\x5d\xe6\x7f\x68\x73\x74\x08\x4b\xf1\x12\x7a\x45\x5b\x64\x0a\x7d\xe3\x6c\x03\xff\x51\x85\xd4\xd1\xc0\x26\x9e\x5a\x74\x80\x77\xdc\xef\xea\xbe\xc1\x77\xb5\xdf\xfb\xc8\xbe\x81\xc0\x4f\xf4\x77\x3c\x14\xff\x72\xe0\xa5\x43\xca\x84\x6a\x11\xf2\x75\x64\x3e\x55\x6b\x41\xa6\x93\x8c\xd9\x7a\x9a\x15\xa3\xf5\x51\xc4\xa6\x64\x0c\xf2\x0a\xfc\xf9\x7e\x5e\x15\xa3\xa3\x71\x54\xb0\x9e\xdb\x92\x97\x2d\x56\x65\xcb\x9d\x49\xa8\x98\x51\x44\x49\x54\x44\x2c\x1b\x8d\x8d\x0e\x22\x40\x62\x86\x4e\x83\x2b\x2a\x2a\x4d\x6a\xf1\x8b\xe4\x9a\x8a\xd2\x8a\xa0\xa2\x3a\x4b\xbe\xd2\xdd\x52\x26\x59\x89\x72\x11\x34\x44\x29\x0b\x8a\xfd\x7c\xdd\x06\xac\x66\x37\xfa\xea\x9d\x0b\x1f\xbd\xa3\x88\xea\x3e\xa5\x31\x93\x89\xc9\x8a\x92\x37\x1a\xf1\x58\xa7\x31\xe1\x1b\x17\x50\x64\x51\xea\xc5\x21\x71\xb4\x21\x76\xe2\xeb\x9e\x02\x83\xa7\xb1\x45\xd3\xca\x89\x6e\xd0\x24\xc7\x91\x75\x1e\xab\x0b\xe5\xe6\x9b\xba\xad\x3e\x99\xc4\x96\x45\xae\x11\x7b\xb2\x26\x33\x60\x07\x5b\xb5\xc9\xdf\x22\x96\x6b\xf3\xbc\x9a\x82\x26\x46\x66\x27\x7e\xb5\xbe\x68\x7f\x43\x01\x06\x2f\xa8\xfd\x2d\xb3\x79\x1a\xaf\xc9\x14\x73\x16\xc3\xd5\xe4\x94\x48\xdc\xaf\xb5\xfc\xeb\xa5\xb5\x6f\x70\xff\x1a\xe1\xc9\x77\x91\x6b\x39\x23\x2d\x7f\x1d\x28\x44\xf1\xfb\x4a\x4b\xf7\x68\x2d\x5e\xb6\x36\x79\x9a\x3e\x9a\x0d\x91\x02\xd5\xf4\xbd\x1a\x54\x67\xad\x73\x41\x5b\x16\xa8\xfc\x23\x08\x15\x9c\x36\xc9\x7e\x4f\xe0\xec\x38\xd1\xac\xbd\x9b\x34\x7e\x48\xbd\xce\xa0\x58\x0b\xa8\x09\xb7\xf0\x30\x23\x6e\x6b\x80\xfb\x55\x05\xf7\x3f\x81\xc6\x0b\x62\x97\xb7\xa7\x8a\xc7\x7d\x47\x09\x5f\x71\x47\x12\x69\xfd\x43\x42\x9a\x08\x31\xa3\xd9\x53\x19\x95\x43\x4e\x81\x1d\xa3\x77\xc9\x53\x9d\x5d\xf4\x6a\xc3\xcc\x16\x0c\xcc\x73\xae\x47\xd5\x6f\x39\xcf\x0a\x67\xe5\x7e\xb9\xd1\xfb\x38\x3c\xbf\x44\xea\x93\xd5\x37\xc1\xce\x73\x52\x6f\x43\x27\x15\xd2\x6e\x92\xd9\x41\x14\x16\x5a\x2e\xff\x8a\xea\x3b\x5e\x69\x2b\x1a\x0f\x22\x1c\x9a\x6c\x0a\x4f\xfc\x25\x31\x88\x7f\xae\x7e\xb4\x25\xb9\x60\x69\x5f\x74\xf6\x92\xbe\xaa\x79\xd6\x7b\x4e\x45\x6b\x91\x23\xde\x63\xe2\x3e\xa2\x3a\x63\xec\xf8\x24\xad\x58\x39\xfc\xd3\x49\x94\x08\x14\xff\x20\xbf\xfe\x4f\x94\x9f\xd9\x27\xb5\x59\xf6\xf5\xb5\x90\xbe\xb6\xc0\x3f\x3b\xce\x09\xe3\x81\x22\x54\x4c\xb2\x28\xb4\x4f\xab\x69\xc3\xed\x44\x44\x55\x4f\x10\xe9\x18\x2b\xfe\x2d\x9a\x74\x62\x12\x45\xdf\xdc\x29\x49\x55\xf3\x01\x41\x07\xd2\x28\x24\xd0\x8f\xf6\x54\x99\xef\x97\x90\x04\x72\x7a\x4a\xfb\x16\xf8\xc1\x7f\x14\x28\x79\xd4\xbf\xa0\xd5\x84\x9c\x90\x6d\x7e\x30\x81\xcf\x52\x10\x8c\x7d\x56\xa8\x26\xda\x43\x89\x6d\xb3\x30\x69\xf0\x89\x67\x02\x65\x44\xbe\x62\xf3\x3c\x4a\x19\x24\xc5\x9e\x32\xca\x08\xe5\xa4\x03\xe5\x4d\x4c\x3c\x9e\xf1\x00\xf2\x1b\x8a\xa8\x7d\x8c\xaa\x82\xa2\x25\xf9\xb8\xe7\x85\x64\x1b\xbb\x55\x04\xc1\x32\xd0\x38\x70\xd9\x80\x06\xa9\x06\x34\x43\xb6\xe1\x50\x82\x50\x07\x52\x0e\x18\x48\x2f\x1c\x9b\x95\x89\x59\x37\xb0\x61\x43\xc5\xea\x89\x9e\xef\x1a\xef\xdd\xf4\xed\xa4\x13\x6e\x76\x4c\xb2\xb4\x9a\x54\x19\xf2\x55\xbc\x01\x74\xed\xf0\xe1\x50\xc2\x14\x19\x8d\xea\x1b\xb0\xa9\xfb\x54\x3b\xb3\x44\xaf\x45\xc9\xf0\x73\xaa\xc5\xff\x9e\x0a\x12\xcf\xa8\x22\xdd\x7b\x9a\x26\xca\x7d\xd6\x5a\x4d\x47\x5a\xa2\x9d\x7d\xfb\x5c\x47\xd4\x83\x55\x7f\x49\x5d\x22\x74\xb8\x76\x35\xa4\xd0\x7f\x8b\xcd\xfb\xc6\xe2\x7f\xcb\xa7\x07\xbd\x0c\x6c\x62\x2c\x2e\x28\x7d\x04\x9f\x67\xad\x45\x19\xc9\xdf\xe3\x55\xa3\x16\xfb\x9d\xc0\xd7\x65\xbf\xa3\x0a\x6f\x03\x3b\x36\xc9\xe0\x89\xba\x4a\x97\x7f\xde\x2b\x34\x7c\xe8\x93\x7f\x1e\xf2\x54\x2c\xc0\x41\xb3\x9c\xb6\x97\xf9\xa7\x88\xab\xc8\x9a\x61\x98\xb2\x28\xc8\x43\x9f\x02\x53\xe7\xee\x54\x29\x0a\x6e\x69\xb0\xea\x1e\x00\x62\xb8\x4d\x4b\x6b\x0c\xcf\xf4\x4b\x0d\xb8\x2e\x5a\x73\xd1\xc2\x44\x71\xdf\x84\xab\x9f\x59\x7c\x73\xba\xe5\xd1\x50\xb6\x0d\x4c\x1b\x98\x9d\xc8\x4d\x0b\x2e\x62\x54\x26\x83\xcc\x8a\xa0\xad\xf8\x69\x2b\x4b\xb4\x9f\x36\xbe\xd1\xab\xaf\x56\x9b\xe0\xb8\xac\xf6\xa8\xcf\xd6\x09\x7a\xda\x17\x67\x42\xdf\x6f\x91\x42\xd5\xa3\x3d\xcf\x26\x79\x74\xd3\xb7\xfb\xe4\xa7\x59\xc0\x50\x79\xf3\x49\x11\xf8\x3c\xd0\x0a\x2e\x7d\xde\xb7\xe0\x36\xd3\x36\x95\x98\x41\x3a\x18\xda\x4c\xb8\x5c\x28\x57\x5c\x0b\x6a\x0d\x3b\x25\x1c\xf2\x76\x6b\x55\xb9\x48\x63\x6a\x52\x4b\xb3\xe8\x46\xa0\xf4\xdf\x8f\xe1\xc4\x45\x77\x11\x9c\x3f\x76\x6b\x9b\xea\xc4\xae\xa5\x78\x97\x4f\x6c\xc2\x41\xb5\x13\xe5\x76\xd0\xd0\x8b\xd3\x67\xea\x68\xff\xc5\xc5\xee\x6f\x3d\xa6\x4c\xbb\xcf\x4d\x6b\x8a\xb9\x8d\x9a\x02\x26\xd7\x1d\x15\x9c\x9c\xa9\xb7\xae\xe8\x6b\xa3\x26\xf0\xe6\xd4\xfb\xba\x5c\x6c\x9a\x22\xf2\x07\xf2\x6e\x2c\xc3\xe6\x63\xee\x70\x14\x25\x36\xb7\xb3\x04\xff\x72\x8c\xea\x6a\xb6\xf3\x4d\xe0\xf3\xec\xd3\x4a\xfe\xfa\xb4\x02\x4f\x59\x93\x47\x54\x5d\x9e\x67\xb4\x17\xc0\x0b\x7c\xbd\xe9\x26\xb8\x35\x59\x3e\x47\xc3\x20\xce\x6c\x75\x39\x17\xfa\xc2\x88\x72\x6e\x69\x10\xf7\xe7\x7a\x9d\x97\x0f\x70\xe2\xfe\xe3\x9a\xf0\x2f\x95\x84\xed\x80\x50\x1b\x18\x8e\x9b\x58\xb7\xb5\x3c\xd3\xf1\xd5\x1d\x5c\x76\x9b\x9e\x04\xeb\x79\x9b\x36\x4f\xec\x72\xcd\xbe\xd3\xe2\x62\x77\x62\x22\x06\x96\xea\x22\x2b\x5f\xb7\xc8\x1b\x11\xee\x3e\x74\x8b\x46\xcc\x38\x54\x03\xe8\x62\xad\xc8\xba\x62\x79\x86\x3b\x79\x5a\x87\x51\xda\xd2\x6d\xd4\xd3\x2d\xcd\xb4\x6e\x66\xa3\x24\x2f\x3c\x3b\x08\xe9\xcf\x29\x04\x27\x7c\xd3\xd0\x71\x93\xbc\x69\xdd\xe6\xc5\x6e\xdf\x39\xfb\x15\x8d\x0a\x4e\x8b\x5f\xe2\x05\x20\x7b\x7f\xb4\xe7\xcb\xca\x8c\x2f\x70\x8a\x96\xcb\xf3\x22\x4b\xe8\x9b\xb4\x61\x6c\xb2\x30\xcd\x3a\x35\xe4\x88\x2f\x39\x5e\xaa\xc5\x40\x66\x10\x81\x47\x85\xb1\x39\xc9\xda\x69\xf8\xd1\xef\x69\x3a\x96\xb2\x03\x0d\xd3\xac\x1c\xe3\xa5\x60\x5e\x9c\x57\x16\xb6\xe7\x3f\xd3\xb5\x70\x1c\x85\xa3\x68\x68\x12\x9a\xab\xce\x50\xd2\x23\xb7\x3f\x55\x7a\x62\x45\x3a\xb4\x05\xb9\x43\xbb\xd0\x05\x6a\xe1\xac\x3a\x47\x0b\x1e\x03\xc7\xc6\x47\x80\x64\x5d\x9b\x7a\x6c\xe2\x8f\x51\xf4\x16\xc0\x88\x9e\x0f\x34\xd6\x22\x60\xa7\xea\x94\xff\xb6\x65\xa3\xb7\xaf\xdb\xb0\x2c\xa4\xa3\x28\x3d\x5d\xda\x36\xa4\x70\xbb\x73\x1a\xbe\xbc\x70\x48\x0a\x16\xd8\xa6\x5a\xe5\x2c\x76\x4e\xa8\xe5\xf9\xe5\xae\x19\x0e\x33\xb3\x26\xfc\x4e\xec\x18\x47\xb5\xe6\xfc\xd1\xa6\x1f\xec\x3e\xbf\x16\x31\x0d\xd1\x4c\x38\x81\x69\xc8\x37\x8d\x12\xc5\xfe\xa5\xee\x6b\x69\x99\x25\x26\x46\x71\xca\x1f\xa5\x70\x4b\xe4\x6b\x55\xec\x49\xcc\x5a\x34\xa4\x5a\xfd\xe7\x68\xc4\xd9\x56\x17\xcb\x5c\x74\x59\x3a\x4e\x5d\xeb\xe3\xc0\x97\x35\xef\x53\x4e\x80\xad\x7e\x13\x87\xa4\x94\x15\xaa\xd8\x00\xcd\x0b\x3e\xcf\x1d\x3d\xa7\x9a\x19\xdc\xc6\x0f\x7c\xb3\xc7\x9a\x41\x24\x42\x8b\xac\x7f\x10\xf8\x49\xf2\xa1\xd7\x80\x35\x89\x19\x44\x46\x78\xb9\x75\x0d\x2b\xc1\xe0\xb6\x00\x02\x46\x69\x3e\x89\x0a\x13\xe7\x4d\x20\x96\xbb\x69\xa8\xdb\x90\xbf\x9f\x45\x9f\x9a\xc5\x44\x03\xa5\x9e\xe0\x3b\x2e\x45\x5a\x98\x98\x1c\x38\x5d\xb7\xe1\xe3\xa9\x9a\xbf\x5b\x20\xe7\x49\x22\xe7\xf9\x5a\x3f\x6c\x73\xfc\x30\x59\x5a\x7a\x83\x4c\xc6\xca\xab\x4c\xb0\x39\x33\xbf\xd2\x2d\x93\xcc\xac\x59\xd7\x3c\x14\xe6\xba\x6f\xdb\xb2\xb4\x1e\xea\xdc\xdb\xaa\x05\x58\x4e\xb2\x28\x17\xd0\x1b\x8a\xdd\x6f\x6b\x05\xf4\xb7\x9d\x9c\xf7\x88\x68\x96\xce\xd4\xe8\xd3\x69\x8d\xe9\xa3\x6a\x4e\x6b\x36\xcb\x53\x58\xa5\x3a\x81\x67\x77\x78\x9d\x77\xd5\xe4\xa2\x4c\x12\x1b\x63\x8e\xb2\x07\x9b\x72\xee\x7f\x10\x7c\xd1\x0b\x95\xda\x49\x96\x0e\x33\x33\x1e\x47\xc9\x30\x9f\x51\xa6\x15\xf7\xb4\x82\xef\xae\x9e\xe6\x3d\xec\x44\xbe\xcb\x86\x95\xdb\x89\xc9\xaa\xdd\x7d\x4e\xf1\x3b\x6e\xab\xf8\xf1\x8c\xf6\x06\x00\x7e\x46\x6c\x22\xaa\xf0\x0a\xa5\xfe\x57\xa7\x8f\xfb\x5a\xad\x29\xea\x88\x58\xfa\x82\x02\x89\x75\xd2\xfe\x26\x19\xa4\xe3\x78\x03\x89\x8a\x83\x97\x54\x4f\x2f\x3c\x7a\xdf\x6b\x7d\xbc\xe7\x01\xa9\x33\x9b\x9e\x06\x50\xf4\xd3\x84\xf7\x03\x84\x79\xc7\x35\x81\xfd\x78\x0b\x27\xfd\x60\xb7\xca\x26\xa2\x34\x11\x84\x0f\x76\xfe\x6b\x1a\xf9\x7e\xad\x06\x88\x78\x2d\xed\x7f\xae\xee\x8d\xe2\xd4\xb8\xae\x22\x8e\x61\xc1\x64\xe5\xee\x7a\x27\x50\xe7\xcd\x45\xc5\x61\xf8\x70\xaa\x68\x92\x2c\x6d\xec\x4e\x3d\xcf\xf5\xbb\xa0\x29\x49\x26\x59\x9d\x55\xbe\x15\xf0\xa0\x11\x8c\x84\x67\xc5\x5d\xaa\x37\x85\x14\x85\xcb\x24\x45\x44\x92\xe9\x73\x1e\xec\x78\x7e\xaa\xf4\x8e\x2e\x4c\x55\x2d\x87\xc3\x3a\xfe\x17\x7a\x5a\x14\xbc\x1e\xb8\xaa\x60\x58\x66\x45\x15\xb2\x68\x4a\xd5\x77\x35\xa5\xea\xbb\xaa\x96\x3b\xb0\xd5\x61\x4d\xdb\xc1\xf2\xbc\x4b\xb4\x3d\x04\xe2\x08\xad\x06\xbe\x0e\x3a\xbf\xf3\xfb\x2e\x31\x7f\xd4\x4d\xa9\x17\xfe\x79\xe7\x6b\x0b\x4e\x9b\x1b\xc7\x37\x6a\xa7\x35\x3b\x6f\xd0\xc9\x01\xa3\x7b\x97\x88\x29\x7a\x8f\x11\x7e\xa4\xb7\xa2\xba\x02\x4e\x82\x80\x63\xab\xcf\x76\xa5\xe6\x2f\x7f\x99\xf3\xec\x5f\x61\xa4\x1c\xd3\xf2\xab\x2f\x3b\x91\xb6\x6a\xfe\x23\x7d\x3e\x8d\x62\x20\xce\xca\x27\x36\xab\xfd\x1e\x8b\xe4\xf9\x1e\x9d\xcf\x68\xc8\x5d\xab\x31\xba\xde\x0e\x3a\xbf\xf7\xbb\x0e\x07\x32\xe3\x7d\xd2\xe1\x3a\x85\xc3\xfa\x2e\xc9\x2a\x0b\xc7\x97\xa6\x1b\xf6\xca\xeb\x81\x6a\xfe\x9c\xd6\xc8\x9c\xef\x41\xb7\xd3\xc9\x86\x56\xc1\x14\xb2\xcc\x7f\x33\xed\x1c\x7a\xc9\xab\xe2\x56\x1b\x39\xa6\x25\x64\xe5\x00\x91\x63\x29\x0d\x34\xde\xbf\x39\x55\x85\x59\x68\x61\x23\xc7\xbd\x82\x44\x0b\x3b\xeb\xbb\x81\xef\x31\xc5\x51\xc1\x07\x68\xa7\xee\x4a\xa4\x74\xe0\x2f\x07\x35\xe3\xbe\x78\xf2\xa8\xd7\x59\xfc\x47\x3d\x8f\x52\xec\x6c\x7a\x26\x10\x7c\x9b\x45\xbd\xb3\xfa\x22\x08\xb4\x59\x50\x07\xe9\x09\x3b\x88\x49\xf0\x51\x3d\x14\x8e\xcc\xb7\x31\x5a\x58\x90\xd7\xa7\x8a\x86\xf4\x49\xe0\x23\xe5\xdc\x26\x02\x4d\x96\x98\x8f\x7e\x52\x82\x3e\xdf\x0e\x5d\x4b\xb3\xbd\xaa\xfe\x86\x9a\x38\x92\x2a\x06\xe1\x4a\xc4\xea\x45\xa1\xce\xea\x12\x3b\x23\xbc\x91\x7b\xed\xee\xf9\x9c\x6c\xd7\xa6\x72\x0e\xfc\x54\x91\x01\x36\x4c\xb2\x6a\x07\x64\xce\x85\x3d\xf7\xbf\xa7\x11\xc1\xcc\xba\x44\x85\x14\x49\x43\x5a\x18\x21\xe1\xc8\xd0\xf1\xe2\xeb\x84\x57\x03\x0f\xdf\xbb\xda\x9a\x1d\xe7\x51\xbc\xe6\xdd\xd5\x65\x33\xd3\x3b\x9b\x0a\x66\xfb\xd5\x21\x6d\xf3\xfc\x59\x5a\x08\xea\x21\x5f\xf1\x7e\x8c\x0b\x87\xb6\x6f\x61\x76\x89\x26\xb8\x07\xe5\xdc\xa6\xe8\xc9\x29\xb5\x39\xce\xd3\x03\x3d\xb5\x4f\x61\xc1\xd6\xa4\x14\x1d\xad\xff\xb0\xd8\xec\x1c\xa7\xc1\x40\x20\x76\x07\x74\x3b\xfc\xc6\x13\x14\x45\x6f\x9f\x98\x2a\xd1\x66\xe6\x0c\x63\x47\xbe\x47\x43\x8a\xb9\x74\x93\x17\xab\x98\x0a\x55\x03\x8f\x65\xf4\xaf\xb5\x32\xc4\x98\xeb\xd5\x22\x8c\xa8\x29\x37\xaa\x28\xff\x0f\x8d\x11\x3e\xf0\xd2\xc1\xee\x24\xcd\x8b\x75\x03\x7e\x1e\x53\x97\x68\x48\x84\xc6\xa4\x5c\x38\xb2\x34\x1c\x95\x99\x10\x8a\x19\x1d\xbc\xc3\x0c\xd6\xc1\xe5\x32\xd3\xcf\x09\x01\x8b\xec\xea\x16\x92\x04\xbe\x09\xbc\x5f\x0c\xec\x7d\xf8\xba\xcd\x1b\x38\x8f\xc2\xd5\x19\x5d\x84\x98\x7a\x25\x86\x3b\xea\xed\x1d\x9f\x6a\xb7\xbe\x81\xb5\x63\x29\x80\x0b\x0f\xd9\x47\x79\x67\x95\x84\xa7\xc9\xaa\xb0\xbc\x7a\x43\x22\x03\xd1\x71\x42\x3a\xe7\x5b\xc5\x31\x06\x51\x6e\x26\x93\x2c\x75\x86\x36\x48\x93\xd9\x7b\x8b\x6f\x94\xec\x53\x62\x0d\x2c\x75\x78\x06\x05\x8a\x43\x89\xb2\x2e\x76\xf0\xf7\xa7\xbe\x0e\xfc\x0d\x1a\x22\x37\xe5\xaa\x09\x2b\x27\xb6\x93\x1b\x59\x37\x51\x31\xab\x2a\x61\xac\xa5\x8e\xdd\x71\xae\xe7\x63\x17\xc6\x17\xc9\x09\xa5\xad\x8d\xec\x4e\x25\xc0\x6a\x09\xc8\xe6\xf5\xb4\x6e\x40\x47\x89\x89\x07\x8a\x32\x04\x2a\x39\x5f\x4f\x9f\xf7\x4d\xb8\x91\x5d\x33\xd9\x20\x31\x83\x37\xe0\x65\x8e\x53\x84\x51\x8a\x28\x01\x03\x37\xc6\x50\x46\xd5\x4f\x5e\x4f\x33\xe8\x0f\x38\xdc\xc2\x9b\x14\x6a\x20\x0c\xfc\x81\x26\x25\x5e\x9e\xaa\xed\x14\x96\xac\xcc\xee\xa6\xf7\x8c\xd1\x65\xc1\x98\x1a\xbb\x15\xfb\xc2\x56\xa3\x45\xbe\xb8\xb8\xdc\x1d\xa6\xe9\x40\x01\x94\x51\x98\x97\x4a\x75\xcb\xdc\x4c\x27\x36\x99\xf3\xb5\x85\xbd\xf4\x58\xa2\x5c\xb0\x93\x45\xc1\xb2\x09\x78\x08\xb4\x2f\x9a\x6a\x2d\x5f\x21\x1d\x58\x9b\xcd\x78\xc5\xc0\xcb\x78\x08\xac\xb1\xeb\x48\x5c\x70\xd4\xfc\x48\x8b\x2e\x9a\xb1\x7d\x92\xfe\x34\xe2\x9f\x07\x81\x12\x4f\xbf\xc1\x1b\x09\xa2\x28\x80\x87\x65\x83\x50\x41\xd8\x11\x65\xe5\xb5\x97\x22\x08\xd6\xc0\x9c\xfa\x2d\xff\x0c\x52\x72\x07\x96\x7a\xd9\xe1\xdd\x76\xa3\x80\x8c\xde\xc3\x35\x95\x38\x3c\xc4\x77\xe6\x7f\xc0\x66\x27\x16\xf9\x4f\x69\x22\x67\x16\x25\x69\x47\xb7\x4a\x95\x38\xc8\x05\x45\xb2\x1e\x44\x79\x58\xe6\xb9\x80\x48\x1c\x23\xdb\xcb\xaa\xb6\x7a\xa9\x01\x92\x2d\xd9\x3b\x17\x32\x02\x25\xd4\x75\x4d\x55\xe4\x13\xd7\x75\x7e\xc5\xc1\x5c\xab\x51\xe0\xeb\x40\x3b\x67\xc7\x31\xd2\x30\xac\x50\x40\xdc\xf8\x5a\xa1\xa0\xc7\x69\x52\xf4\xb3\x08\xc4\x83\x03\xbc\xe6\xa1\xb8\xec\xa4\x46\xbe\xfa\xb2\xe3\x79\xf9\x8d\x37\xcd\x86\xb0\x5d\x9b\xf1\x33\xfb\x86\xe6\x84\x05\xca\x43\xe0\xa1\xcb\xcc\xd1\x53\x70\x69\xab\x16\x77\xe7\xeb\xe9\x17\x35\x2f\x77\x62\xc3\xc2\xf4\xa3\x38\x2a\xd8\x3c\xa8\x95\xe5\xa0\x5e\x58\x3a\x29\x63\x93\xcd\xf9\x0a\xca\x15\x6d\x67\x42\x13\xa0\x0d\x50\xaa\xd2\xa3\xb7\x77\xfa\x28\x1c\x9e\x7f\xb1\x7b\x78\xfe\x95\xe7\xe9\xf3\x45\xbb\xb2\x1a\x76\xa7\xc1\x5d\x4d\x31\x9c\xb7\x3f\xa7\x16\x1d\xa6\xd8\xbb\x3c\xc1\xd1\x70\xfb\x9f\x30\xc7\x84\x12\x4e\x51\x26\x90\x66\xa7\xa7\x4a\x08\x68\x4b\x07\x02\x67\xe8\xc4\x16\x0d\x7b\x8f\xf1\x7d\x02\x48\x67\x8c\xfa\x5b\x81\x42\x0a\xfe\x0d\x9d\x5c\x58\xa3\xe7\x39\x23\xe0\x4f\x09\x14\x17\xef\x34\x45\xfb\x48\xaa\xd0\x3c\xc3\x79\xf5\xf4\x26\x9d\x88\xa2\x39\x47\x4b\x44\xec\xa7\x68\x89\x89\x15\x7e\x1b\xce\xa2\x30\xce\x60\xc8\xc9\x21\x2b\x7b\x48\xbf\x2d\x0c\x36\x2c\x94\x98\xb0\xe0\x80\x37\xe4\xeb\x4d\x07\xfa\x31\x45\x94\xaf\x78\x70\x2f\xaa\x41\x37\x68\x41\xf1\xb5\xab\x11\x8c\x6d\x16\x49\x1d\x0b\x3b\x1d\x34\x3c\xf8\xba\xb1\x4b\x1e\x58\x3e\xd0\x9d\x18\x98\x5a\x21\x88\x3d\x8d\x63\x0a\x6f\x17\xbe\x44\xc2\xb0\xa4\xa1\x16\xc5\xa4\x16\xa4\x45\x5e\x98\x64\x40\xc6\x8b\x78\xdd\x4a\xc1\xdf\x79\x6f\xb9\x02\xea\xba\xc9\x56\x0c\xab\xc2\xe0\x85\x9f\x08\x94\xd1\xc0\x89\xe9\xe3\x2a\x03\xf8\xf5\xa7\x95\xe6\xfe\x25\xea\xda\x88\x13\x20\x7d\x5b\xc4\xb8\x2c\xc6\x8f\x0a\xc5\x23\x14\x71\xa3\x28\x71\x85\x3c\x6d\x50\x60\xb8\x45\xab\x80\x9b\x83\x41\x4d\x52\x5b\x51\x12\xdf\xc3\x39\x20\xdb\x44\xc7\x8b\x57\x61\xbe\x0a\x65\x1a\x0f\x8a\x8f\xff\x99\xb6\x03\xbb\x46\x47\x35\xfb\xb7\x2b\xfa\x37\x9a\xba\x12\x6a\xb4\x54\xee\x81\x04\x5e\xb3\x35\xd2\x50\xc7\x31\xae\x2f\x29\xdd\x07\x93\x13\xff\xb7\xb0\x83\xd9\x2a\x07\x74\x22\xc8\xd5\xb7\x10\x62\x6b\xf5\x57\xb0\x7d\x72\x3f\x83\x6f\x94\x4d\x55\xba\xb2\x62\x33\xe8\xf4\xa3\xa3\x76\x56\x31\xe5\xef\xd1\xfa\x76\xb8\x0f\x5f\x4d\xd7\x46\xf4\x63\x43\x3d\x1c\xd2\x68\x76\xa9\xef\xe2\xa2\x6b\xe9\x63\x94\x9c\x6a\x98\xcb\x84\xb6\x69\x90\x44\x48\x89\x36\x0f\x99\x84\xd5\x2b\x46\x44\xc4\xa5\x12\xbc\xb1\x47\x36\xe9\xe9\x90\xee\xde\x6c\x13\x6a\xcf\x47\xe9\xfa\x9c\xe6\x1d\xd3\x80\xb3\x47\x59\xa0\x42\x30\x8c\x2a\x02\xf6\x8f\xe9\x29\x11\xc1\xbe\x3b\x7d\xce\x81\xa5\x27\x36\x0b\xd3\xf1\xa4\x2c\xd0\x2f\x5f\xf0\xc0\x63\x87\x70\x7a\x12\xe7\x2a\xfe\xce\x0d\x25\xfe\xbe\xd5\x08\xe8\xf7\x2f\x75\xf3\x51\x66\x07\x03\x0b\x45\xe3\x9a\x50\xae\x50\x32\x94\xdc\xea\x47\x2a\xc4\xb3\xe3\x14\xfa\x8a\xbe\x16\xf2\xe7\x8a\x26\xf2\xe7\x8a\xb0\x3f\x19\xa5\x89\x9d\x51\x68\x89\xc7\xc1\x1f\x85\xc2\xeb\x13\x8a\x49\xf8\x7f\xb9\x68\x75\x68\xd6\x57\x37\x66\x54\xc9\x13\x00\x29\x94\x08\x60\x76\x8c\xfd\xf2\x78\x0d\x06\x10\xa7\xc9\x10\x87\xab\x77\x59\x9d\x77\x09\xd1\xb3\x0a\xae\x37\xb0\x59\xbc\x41\x35\x1e\xd7\xf5\x62\xd9\x63\xbe\xc1\xa1\x80\x2a\xe5\x0f\x03\x55\xb2\x6c\xd6\x7c\x99\x75\x5b\xb8\x60\x01\x31\xc8\xad\x40\xe1\xf4\x6f\x29\x68\xf2\xd2\xef\xfc\xc1\x6c\xcd\x45\xa4\xe3\xac\xef\x1e\x51\x89\x35\x07\x34\xd8\x3e\xde\x54\x40\xb0\x28\x29\x6c\x9c\x1b\xa0\xf3\x70\x4e\x7e\x10\xf8\xf3\xf3\x03\x15\x97\x0c\x33\x13\x49\xb1\x5d\x1a\x80\x3e\x61\x69\xe2\x4c\x0f\xcf\x77\x47\xe9\x44\x9e\x03\x9d\xdf\x63\xaa\x0b\x7c\xcc\xbd\xa1\x7e\x39\x9e\x6c\x28\xb4\xdf\x9b\x0a\x67\xf3\x66\x63\x88\xf6\x2d\x10\xd2\xc8\x38\x37\x15\x6e\x2a\x6b\x29\xa4\x8b\x75\xb4\x99\x29\x9e\xab\xce\x58\xb1\xa2\xda\xa1\x86\xe4\x51\xf7\x0c\xfa\xc4\xaa\xfd\x9b\xc0\xc7\xa4\xd7\xe8\x1b\x21\xda\xfc\x36\x56\xb3\xcb\x9c\x9c\xb2\x11\xe1\x18\xa4\x8a\x79\x0b\x85\x28\xbe\xd1\xbc\xfb\xd3\x08\x7c\x59\xa3\x19\xa5\x24\x31\xfa\xa1\x0d\xd8\x69\xdc\x38\xff\x30\x16\x54\x77\x88\x96\xc3\xf3\xfc\x85\xaf\x2a\x82\xc3\x45\x64\x19\x98\xfe\xdc\x7b\x17\x7b\xe9\x67\x3d\xaf\x3c\x33\x49\x68\xa2\xdc\xe6\x33\xd5\x06\xe5\xc2\x24\x27\xfd\x79\x5a\xa3\x4a\x7e\xe0\xce\xb4\x55\x1b\xc7\xe9\x10\xda\x49\x35\x81\x36\x4c\xb6\x4f\x15\xb3\xf9\xb6\x52\x67\x67\xa2\x90\x40\x38\xda\x9c\xa8\xbf\x5e\x46\x82\x9d\x46\x86\x74\x8e\x6a\x83\x7c\x3d\xf5\x38\xe8\xb1\x29\x2c\x4b\xd5\x74\xbc\x82\xee\x05\x2d\x17\x70\x21\xf0\x48\xf6\x95\xf2\xb5\xa8\xc8\xcb\x8e\xaf\x4c\xdf\xa0\x2f\xc9\xd7\x2d\x86\xbe\xd5\x6a\x30\x61\x31\x5b\xa3\xa3\x78\x08\xe6\x6d\xbc\x38\x3e\xa9\xa7\x1e\x4d\xf6\x58\xcf\xa3\xc9\x36\xd2\x32\x19\x3e\x46\x5f\x09\x51\xe0\x3b\xd8\x0a\x10\x30\x3f\xb2\xe9\x75\x39\x18\xdc\x05\x3c\xc1\x69\x25\xe2\xfc\x5d\xaa\xde\x32\x7d\x1c\x93\x0d\x6f\xfb\x24\xde\x30\xdf\x28\x68\x24\x62\x6b\x16\x33\xab\xf7\x20\x75\xb1\x31\x4d\x27\x4a\x28\xe7\x03\x9a\xd3\x7c\xad\x0a\x28\xeb\x23\x13\xdb\x8e\x62\xe2\x1e\x51\xea\x29\x47\xb4\xd1\xb0\x8d\x27\x44\xeb\xc5\x09\x74\x93\xa2\x52\x91\x99\xf1\x85\x66\xd4\x5c\x30\x33\xde\x56\x76\x89\x97\x11\x79\xe2\x1f\x1e\x01\x6e\x93\x6f\x00\xa7\x13\xef\x99\xa7\x95\xc9\x68\x3e\x89\x32\x74\xb6\x5e\x71\xc1\xb8\xea\x1a\x5d\x55\x13\x59\x63\x9f\x0b\x1b\xdb\xd7\x39\x1e\x75\x6a\xf8\xce\x37\xe2\xfb\xea\xe9\x33\x13\xae\x72\x55\x0b\x6f\xfd\xe7\x98\x5f\x98\xce\xa8\x50\x89\x8d\xac\x9f\x9a\xf6\x75\x13\xda\xac\x4f\x39\x9e\x27\x3a\x9f\xa5\x97\xca\xd7\x81\x2f\xfc\xe4\x69\x19\xd7\xc4\xce\x29\x50\x97\xdf\xa1\xc7\x61\x09\x5c\x27\xd7\x3a\xb2\x49\xcc\x4e\xb1\xc8\x78\x58\xda\x9c\x6f\x9c\xa3\x3d\xe5\xf0\x09\x57\x56\x70\x58\x1d\x47\x15\x9c\x6f\xdc\xa6\xbb\xe2\xf1\x22\x78\x1f\x57\x01\x4f\x44\x9f\xf7\x88\xb6\x19\x42\x45\x07\x3b\xe1\x7d\x7a\x26\x84\x13\x77\xa7\xff\xe2\x33\x21\xe3\xa4\x2b\xb5\xb1\xce\x52\xf5\x07\x9c\x55\x6a\xe7\xbf\x3c\xc8\x41\x0a\xd2\x2b\xbc\xc4\xeb\x8d\x6e\xd5\xa1\x97\xba\xc3\xcc\xda\x64\x94\x96\x39\x96\xbb\x16\xbb\x17\x32\xa9\x12\x0a\x0b\x23\xa0\xf1\xc3\x3d\x35\x4e\x55\xc7\x19\x47\xff\x12\x9b\x3b\xfb\x8a\x62\x7f\x74\x26\xa3\xd5\x12\x05\xe8\x02\xf6\x8a\x38\x7c\x20\x34\xc0\xff\x5f\x09\x9e\x66\xf6\x35\x1b\x32\xff\xc9\x79\x5d\x2f\x2e\x6e\x5f\x0b\xfc\x0b\x6f\xfa\x82\x54\x9b\x5d\xbf\xcc\xd9\x31\x4b\xb0\xd3\xf4\x47\xb0\xd8\x4f\xa9\xc8\xf2\x8e\x2a\xb8\xf7\xd3\x78\x56\x35\xcb\xef\xf0\x01\xe6\x0c\xdb\x24\xe8\xf9\x97\x4f\xf5\xbc\x1c\x90\xd6\x3a\xce\xcc\xc4\xe6\xd6\x0e\x04\xec\xa5\x8f\x6f\xe6\x3e\x05\xbe\x2d\xdb\xf4\xde\xaf\xa2\x3b\x1b\xb2\xa3\xe7\x4c\x67\xdf\xc2\xb6\x68\xe6\x08\x84\x53\x79\x9e\xfd\x58\x85\x51\xaf\xd9\x64\x35\x12\x25\x5f\x24\x9c\x37\x70\xe2\x61\x0e\xbc\x37\xad\xb1\x79\x25\x2d\x8c\x92\x35\x93\x45\xa6\x1f\x6f\xcc\xa8\xf4\x22\xf0\x18\x94\xff\x53\xd3\xae\x9a\x7e\x8d\xfb\x97\x88\x79\xec\xd2\x4a\x4c\x97\x2b\x6a\xea\x5c\x51\x65\x94\xd7\xd2\x48\xa0\x81\xa2\x43\xe0\x33\xb7\x0b\x8d\x3f\xbe\x6f\x5f\x77\x98\xe6\x79\x62\xfa\x1d\x85\x6d\x39\x45\x99\x9b\x44\x7f\xbe\x20\x3c\x4e\x13\x5b\x98\x6c\x03\x2f\x50\x74\xe3\x94\x98\xf6\xdf\x2b\x03\x80\xb3\xca\xb6\xeb\xe3\x69\x53\x14\xa0\x6b\xc2\xb0\x1c\x97\xb1\xa1\x0a\x91\x06\xd1\x29\x01\xa4\xcb\xea\x0c\x1c\xd8\x38\x26\x96\xb9\x43\xd1\x82\x11\xc0\xd7\xaa\x00\x0a\x4f\xf3\xbc\xe3\x71\xb5\x50\x34\x11\x95\xc2\x27\x1c\xfd\x2a\xcd\x6d\x42\x45\x65\xa4\x93\xe0\x5b\x39\x51\x5d\xc7\xc7\xfe\xdb\xe7\x68\x32\x62\x13\xbd\x8e\xa3\xd3\xd9\x4b\xea\x2d\x4e\xa1\x77\xc3\x6a\x8e\xce\x79\x45\x98\xff\xea\x99\x9e\x02\x3e\x70\xcb\x58\xb4\x07\x7c\xc9\x9a\x8d\xc2\x05\x7b\xdb\x94\x73\xe8\x5a\x93\xc5\x04\x2a\xa9\x4e\x1c\xd7\x81\x5c\x16\xc7\xc4\xb7\xd5\x01\x50\x98\x64\x35\xdf\xed\xad\xca\x79\x6c\x11\x57\xbe\x1b\x78\x54\xe7\xbb\x38\x18\xc0\x10\x7a\x18\x78\xe7\x97\x87\x14\xb9\x49\x3d\xf0\x29\x8d\xf6\x5c\xb3\x42\x50\x15\xf9\x2f\x4f\x56\xbb\xa2\x18\x23\x7f\xd9\x80\x2c\xec\xdb\xd7\x0d\xd3\x64\x98\x99\x42\x5e\x3f\x7d\x2d\x19\x51\xdf\x38\xb9\xd8\xe6\x60\x95\xae\x27\x9d\x9a\xea\xcb\xe2\xa2\x5c\xbb\xc6\x76\x3f\xb3\xeb\x94\xc5\x38\xb0\x31\x54\x5a\x50\x49\x66\xab\x44\x44\xba\x9c\x88\xa3\xcd\xb7\x5b\x71\x7d\x9d\x42\x4c\xe7\xcb\x5f\x66\x35\xaa\x1b\x60\x54\xf0\x4d\x43\xd0\x61\xe1\x50\xb5\x3b\x45\xe2\x53\x8e\x98\x69\x9b\x86\x82\xaf\x1b\xfb\xe8\xe2\x62\xb7\x18\x95\xe3\x3e\x96\xac\xb0\x0c\xfd\x08\x9c\x6c\x0b\xed\x4c\x51\x98\x70\x34\xe3\xdd\x76\xb9\x14\x80\x9a\x01\x6a\x86\x58\x78\x7f\xe1\x89\xe7\x69\x1c\x0d\xa2\x95\x0d\x40\xbc\x98\xdc\x1b\xd4\x98\xbe\x4a\x7a\x7c\xdd\x1a\x06\x83\x09\x16\xd6\x87\x4d\x37\xd4\x0f\x0e\xb2\x68\xcd\xce\x2a\x55\xa0\xcb\x2a\x4c\xf8\xa9\x72\xfd\xdd\xd5\xab\x51\xb5\xda\xc8\xc7\xa6\x9f\xa5\x66\x40\x23\x87\x9e\x35\x44\x35\xf9\xba\x4d\x91\x61\x90\xae\x0f\x36\xb4\x42\xba\x72\xf1\xb9\xa8\x0b\x30\x65\x91\x8e\xc1\xdb\xae\xd6\x82\xb3\x20\x73\xfc\x43\x4c\x57\x4c\x94\xb6\xb3\x0e\x0a\x86\xf4\xcb\xa8\xfa\xb1\x4a\x36\x4e\x01\x48\x29\x40\xb8\xe1\x7a\x0b\x88\xa9\x18\x65\xd6\x14\x36\xe1\xc4\xc0\x29\x21\xed\x77\xaa\x48\x53\xaf\xac\x2d\xc5\x22\x14\x11\x0e\xcf\x73\xb0\xb1\x0b\x61\x24\xdf\x28\xf7\x17\xaa\x22\xe4\xb3\x14\x71\x0a\xcb\x9f\x76\x06\xbe\x99\xfa\x24\xf5\x6c\xa0\xb2\xd7\xb3\xee\x80\x62\x5d\x11\xb7\x0c\x45\x29\xde\x97\x42\x8f\x37\x86\x64\x19\xf9\x30\x07\x97\x62\x86\xaa\x3d\x4e\x02\x55\xa4\xb8\xa4\xca\xf0\x99\x9d\x64\x36\xb7\x49\x41\x28\x12\x56\xb8\xa2\xcf\x42\x26\xf1\x66\xa0\x68\xaa\x58\x3b\x38\x19\x77\x6d\xb6\xb5\xb6\xfb\x19\x49\xd3\x20\xcd\x81\x6c\x03\xf9\xa8\x6e\x5f\xa0\x36\x00\xa2\xe7\xef\xeb\x92\xe8\x4c\x4f\x05\x5a\x36\x16\x3f\x8c\x6a\xa8\x91\xb2\xc0\x56\x9a\xaf\x1b\x72\x0c\x2f\x2f\x1c\xea\x16\xd6\x64\x33\xde\x3a\xe0\x04\x25\x08\x78\xff\x5c\xba\x92\xe8\xc1\x19\x4d\x5b\x33\xc8\xa1\x95\x2d\x1d\xf5\xea\xc9\x50\x90\xdc\x9e\x7a\xb7\xdc\xf5\x2f\x01\x07\xe3\x4a\x95\x9e\x80\x70\x91\x3e\x46\xa8\xa6\xbe\xb2\x75\x49\x3b\x11\x79\x12\x56\xb9\x9a\x99\x28\x41\xe1\x16\x1b\x31\xe7\xaf\x7c\xa3\x2a\x8b\xf9\x28\x8b\x92\xd5\x19\x9a\x36\x18\x6c\x28\xdc\x20\xe1\x3f\x82\xb4\x4d\x04\x83\x1d\x6c\xce\x46\x59\x47\x19\xe1\x60\xfb\xe7\xeb\x46\x0b\xfa\x2b\xdd\x71\xba\x26\xf5\x13\xe0\x0c\x19\xeb\xc2\x37\x8d\xcd\x74\xdf\x42\x75\x8a\x56\xb1\x29\x3d\x82\xa4\x90\x5e\x8b\xe3\xd2\xf4\x9f\x37\x37\xd3\x24\x2d\xd6\xa3\x62\x44\x25\x6e\xe9\x6c\x09\x69\xaf\x7a\x63\x7c\xad\x80\x82\x26\xcb\xd2\xa1\xa9\xe6\xa3\x2e\x1b\x54\x43\x21\x14\x54\xd5\x2d\x61\xbd\x26\xfe\xb1\xc6\xde\xbc\xb8\xd8\x0d\xd3\xac\xb0\x12\x9b\x62\x77\x61\x98\x82\x73\x71\xf0\xf1\xe3\x1d\x17\x8a\x64\x26\x14\x2d\x49\xe4\xe4\x68\x4d\xf1\x75\xa3\xd6\x70\xe0\xa5\x83\xdd\x7c\x3d\x5a\xc1\x6f\x08\xbe\xcf\x33\xdf\x3c\x59\x6a\x5c\xe6\xa3\x2c\x4d\xa9\x8d\xef\xc5\x46\xb9\x97\xcd\x37\x81\x87\xcd\x8e\xa2\xbc\x48\xa1\xbc\xec\x8b\xe9\xd8\x57\xa5\xc6\xf4\x98\x4f\x61\xf3\x7f\xaa\x74\x1e\x4f\x10\xc2\x09\x8d\xfb\xcb\x5c\x4b\x16\x85\x42\x1a\x42\xe4\xf4\x67\x14\x8a\xee\x26\x06\xc3\xc1\xa4\xbf\xfa\x32\xaf\xe1\xdb\x58\x46\x02\x1d\xef\xbc\x2c\x3f\xc4\xee\x9a\x12\x9b\x7a\xd6\xd1\x55\x8d\x63\x9f\xd9\x9c\x79\xd9\x95\xc3\x7f\x89\xea\x95\xc0\xf6\xd1\x62\xe2\xb3\x1f\xf5\x0c\xfc\xdc\x1d\xe5\x67\xca\x7e\xef\xb5\x2d\x09\xed\xbe\xc7\x37\x7d\x25\x72\x8e\x34\x12\x30\xa5\x6e\x01\xec\x8e\xb3\x05\xb0\x4b\x54\xbf\x9f\xec\x55\xf1\x03\x4e\xc1\xdb\xc8\x17\xf8\x86\x8a\xe7\x5c\x58\x21\xbc\x1c\x62\xde\x27\x7a\x54\x39\xc3\x7a\xbe\xad\xed\xbb\xc0\x27\xa2\x38\x71\xfa\x85\xc6\xce\x74\x78\xbe\x5b\xa4\x65\x15\x17\x78\xd5\xca\xcb\xea\x90\xbb\xa6\x62\x84\x6f\x4d\x9f\x8d\x7c\xd1\x34\x5b\x8b\xac\x37\x67\x41\x2f\xe6\x17\xf4\xd3\x7c\x5d\xab\x40\x0e\x13\xda\xc9\x14\x52\xa6\xfa\x2d\x80\xbb\xd0\x82\x41\x25\xe2\xb6\x36\xaa\x0b\x74\x63\x08\xa3\x2e\x8d\xc5\x6a\x3a\x88\x33\x7a\xf5\x7c\xfc\xff\x1b\x31\xc2\xab\xaf\x76\x27\x66\x23\x4b\xe3\xb8\xa3\xd8\xbb\x67\x15\xb0\xf1\xac\xaa\x92\xbc\x66\x92\xd2\x64\xe0\xdc\x89\x61\x50\xf5\x49\x08\x4d\xae\x4f\xbd\x6c\xe3\x76\xb0\x33\x3e\x3d\x3c\xff\x22\x95\x65\x33\x3b\xb2\x49\x2e\x4d\x1e\x66\xe8\x29\xcd\xb2\x13\xad\x71\x4c\x9e\xae\x45\x16\x45\x68\xe1\xda\xd0\xf7\xe5\x9b\x46\x6d\x99\xf0\xf7\x65\x38\xea\x50\xc9\xc2\x29\xc9\x56\xf3\xbf\xa9\x24\x4b\x29\x98\x34\xee\x58\x90\x3e\x50\xe9\x58\xd3\xd4\x51\xca\x18\x59\x34\x1c\x49\xcb\x11\xc7\xd3\x79\x9d\xe9\x9e\x6f\x0f\x4d\xc9\xa0\xc3\x43\x2d\x2e\xaa\x90\x0e\xef\x17\xfb\xcd\xd6\x54\xe1\x24\xae\xa9\x52\x46\x98\x26\x45\x94\x94\x51\x32\xfc\x5c\xb5\x56\x11\xff\xc1\x97\x5d\xeb\x92\x31\x10\x4e\xdb\x75\x1e\x55\x70\x0f\x88\x82\xe3\x25\x43\x23\x1d\x83\x79\x16\x9d\x6c\xfe\xa1\xa9\x9a\x88\x1f\x69\x52\xac\x2d\x6c\xb6\x57\x81\x3f\x4f\x69\x64\x2c\xf4\x48\x1c\x54\xd9\x09\x8e\x1f\x47\x04\xe3\x8c\xaf\xfd\x07\xb1\x1c\x0b\x46\xe1\xd8\xd4\x23\xd8\xcf\xbb\x12\xd7\xb8\xca\x1d\xe4\x35\x61\xf9\x5d\xd0\x34\x99\x0b\x81\x8e\xa1\xcd\x3a\x18\x76\x28\x89\x00\x35\xca\xd7\x6d\xe5\x80\xbe\x49\x56\xdd\x6a\x45\xbd\x12\x62\x9c\x7c\xdd\x38\x7c\x17\x0e\x75\xd7\x4d\x06\x6b\x27\xec\xcf\xa8\x2d\xf2\x75\xe3\x74\xf9\x4a\x37\x4c\xcb\x89\xb3\x50\x47\x64\xbf\xab\xa7\x74\x0b\x77\x6d\xb6\x08\x4f\xf4\x4b\xea\x1c\xd1\xcc\x55\xdc\xd9\x17\x39\x3e\xdc\xae\xd5\x1b\xab\xef\x22\xd9\xef\x53\xbe\x91\x47\xd2\x29\x68\xbb\xb9\x61\xf3\x25\xe0\x7b\x81\x8a\x1f\xce\x37\xc6\x66\x71\xf1\x20\x33\xaa\x3a\x5e\x11\xf9\x7b\x48\x6d\xf9\x26\x78\x4e\xc1\xdb\xf2\xc2\x94\x99\x49\x0a\x44\x7f\xd8\xa9\x4e\xe0\xc7\xf9\xa6\xd5\x4a\x28\x4f\xcc\x84\xc6\x92\x15\xaa\xe8\xb9\x44\xad\xaa\x65\x15\xe5\xa1\xe5\x38\xcc\x71\xce\x5d\x33\xe6\x5c\xad\xa8\x1d\xe7\x76\xce\x6f\x9a\x08\xc2\xf8\x1a\x99\xa7\x9c\xee\x4a\x52\xeb\x58\x5d\x96\x6f\xe7\x98\xfc\x56\x15\x45\x4d\x6c\x56\xa0\xe0\x8a\x8d\x96\xc1\x9b\x7c\xd3\xb2\x8b\x55\xe3\x18\x5a\x11\x03\x61\x53\x2c\x2c\x08\x71\xc8\x6a\x91\xb6\x5a\x65\x6f\x69\xa7\x28\xeb\xe4\x8e\x2f\xb4\x40\xb4\xa0\x55\x36\xa3\x6c\xb4\xdf\xd2\xee\x3d\x97\x95\x04\xf8\x8d\x16\xe1\x97\x03\xdd\x89\x0d\x57\x79\x89\xe1\x9c\x62\xf9\x0e\xbe\x09\xbe\xe0\x03\xdc\xb2\x5f\x45\x84\x45\x04\x5f\x5b\xed\x08\x5b\x9d\x44\xc2\x5f\xf4\x61\x90\x09\xc3\x32\x2f\xaa\xa8\x69\xd6\x51\x83\xbf\xf5\x11\x76\x1b\x41\xaf\x57\xdb\x06\xff\x03\xa2\x05\xfe\x07\xc7\x8c\x20\x39\xc8\x68\x80\x57\x2f\x42\xf2\x1d\xe5\xca\xa3\x4c\x7c\xe3\x34\x19\x5a\x18\x8f\x3b\x09\x22\xd7\xff\x65\x37\x3f\x46\x29\x68\x4a\x27\x7c\xb4\xa9\x54\xb3\xf8\x0c\x32\x07\xe1\x74\xee\x04\x7e\x2c\xcf\x93\xce\xd1\xd8\x9b\x1c\x20\x95\xb8\x33\xf5\x0a\x36\x77\xda\x4a\x1a\xa1\x4d\x0a\xcf\xad\xe5\x1e\x2c\x26\x1d\x0e\xd3\xbf\x9f\xaa\xaa\xf8\x99\xe9\xe3\x4a\x7f\x69\x63\xb7\xa7\x7a\x5e\xd6\x66\xe0\x8a\x87\xff\x4d\x6c\x12\xd2\x5a\xa0\xbf\x25\x5d\x8f\xea\xcc\x90\x54\xa8\x25\x07\x9d\x40\x8c\xe5\xb0\x00\xca\xb6\xf5\xb1\xb9\xdd\xa6\xc6\x32\xb1\xe9\x24\x16\x16\xa5\x60\x67\x15\xe2\x74\xae\xa7\x8c\xda\x9a\x62\x7c\x8b\x8b\xdd\x95\x28\x16\xca\x89\x28\x12\xd2\x68\xf2\x4d\x9b\x05\xe8\xc4\x4c\x9c\x26\x3d\xf2\x88\x29\x86\x8c\x6f\x02\x1f\x52\x0f\x5e\x50\x5e\x89\x17\xb5\x6f\xd3\x45\xa5\x65\x59\xcd\x96\xc2\x66\x4c\x6b\x14\x61\x98\x8e\x17\x89\x69\xd3\xeb\xcd\x6d\x16\x59\xf6\x89\xc6\x98\xde\xc7\xc8\x8b\xdc\x87\x3f\x57\x3f\xd0\x99\xe2\x9e\x9e\xde\xa2\x5e\x78\xe1\x85\xc7\xbd\xc4\xf4\x75\x5a\x05\x58\x70\x77\xa8\x6a\x2c\x1e\xba\xf4\x22\x94\xa7\xe7\x41\xae\xd3\xde\x51\x02\x70\xff\x40\x6a\x02\x0c\x0a\x83\x6d\x99\x53\xb1\x76\x2d\xfc\xb3\xca\xf9\x9b\x29\x1c\xfc\x97\x28\x5e\x67\x55\x9a\x5a\x84\xba\x6e\xf2\x2f\x2a\x45\x0b\xce\xc9\x11\xb3\x6d\x61\xc9\xa3\xe3\xfd\x28\xd1\x85\xd9\x96\x0b\x47\xbc\x6b\x44\xb8\x0e\xfe\xd3\x9b\xb4\xf5\xaa\x53\x5c\x1a\xc5\xd7\x02\xd5\xc9\xd8\x46\x6b\x8a\x5d\x4c\x30\xb2\xa8\xac\x3d\xb2\x59\x65\x00\x72\xf0\x7b\xcd\xfb\xc7\x7b\x9e\x8f\x7d\x56\x49\x3a\x1e\x9b\xea\xce\xc6\x23\x80\xce\xa1\xee\x74\x76\xaa\xba\x85\x0f\x94\xbf\xca\xb3\xbd\x6a\x28\xa5\x0c\xea\xcb\xf7\xe7\x28\xb1\x70\x2e\x1e\x8e\xb4\x3b\xb7\xd9\xc2\xcc\xec\xc7\xa5\x9d\x64\x11\x0b\x5c\x89\xa3\xbc\x87\x56\x9f\x57\x72\x3f\xa1\xc9\xac\x4d\x66\x7c\xdd\x19\x94\x6f\xb7\x79\x2d\x1f\xe0\x2e\xdd\xbd\x40\x39\x37\xc7\x51\xb5\x99\xc4\x16\x82\x67\xae\xdc\xec\x60\x4c\x54\xbb\xe1\xf7\x7b\x62\xba\x93\x9b\x7b\x78\x7e\x81\x61\xe3\xd5\xba\x97\x6d\x0c\xf3\xe7\x96\xb2\x8e\xbb\xf5\x99\xf2\x4f\x83\x32\x8b\x32\xd6\x33\xc0\x76\x7a\x4a\xd3\xc7\x9b\xfc\xe7\x43\x2f\x75\xcd\xca\x4a\x14\x47\xa6\xb0\x54\xff\x73\xcc\x5d\xc7\x51\xbe\x1f\xa8\xec\xc0\x95\x47\xc2\x54\xbe\x9f\x76\x9f\xe7\x6b\x57\x48\x1f\x96\x26\x1b\x58\x2a\x18\x3b\xac\x64\xbd\x50\xb1\x73\x07\x3a\xf4\x52\xb7\x58\x8f\xb8\x60\xe5\xe8\x67\x0a\xd9\x1e\x88\xd8\x65\x1a\x0f\x90\x28\x61\x98\x2f\x06\xde\xc7\xeb\xa2\x6e\x96\xa4\xfd\xbe\x8b\x26\x31\x81\xce\x2b\x42\xc0\xf9\x46\xeb\x06\x86\xb3\xc9\x60\x44\x94\x61\xde\xd6\xd0\x01\xd4\x58\x2d\xdf\x01\x1b\x50\xc9\x2f\x77\x3a\x77\x88\xa2\xf1\xc2\xb0\xf6\x40\x0b\x44\xb6\xbd\x6b\xf3\x09\xb5\xdd\x14\xc2\xe3\x41\xed\xf9\x27\xda\xa9\xef\x27\xda\x54\x75\x54\x56\xcf\xa0\x29\x2d\x75\xb6\x8b\xd3\x62\xb1\xa4\xa6\x3a\xe3\x67\xc0\xf7\xa6\x9e\xb4\xf4\x00\x5b\x05\x82\x96\xa6\x52\xfa\xfe\x25\x98\x42\x77\xfc\x2c\x85\xa3\x0e\x5f\x7f\x26\x39\xb3\x18\x95\x59\x3e\x30\x1b\xf9\x2c\xbe\x15\xa2\xe0\x6d\x6c\x8c\xc8\x37\xe0\x67\x29\x7e\x71\xda\xda\xa7\x85\xe6\xcd\x72\x6d\x98\x36\x52\x06\xf4\x2c\xf3\x4b\xda\xd2\x61\x14\x25\xe2\x88\x8c\xc0\x83\xdb\xed\x7c\xb3\xa9\x68\x53\x69\xb2\x41\x65\x30\xd6\xa5\x9a\xaa\x4d\xf4\x32\x6d\x5c\x4e\xb0\x6a\xd9\x4b\x58\x4a\x25\xa1\x4c\xdc\x4a\x19\x28\x22\x0c\x9b\x63\xc8\xfa\xf6\x9f\xb6\x16\xd9\xf5\xbd\x1e\xc2\xf1\x00\xfb\x27\xb6\xb3\x93\x50\x0b\xe0\x1b\x40\x89\xd0\x1f\xbb\x1a\x78\xfe\x0e\xb4\x28\x31\x9d\x6e\xd0\xf7\x13\xe7\x52\x8f\x5b\xa8\x9e\xcf\xe9\x73\x97\x59\x81\x79\x8e\xd5\xf5\x87\x53\x5f\x1e\xfc\x43\xc5\x74\x0c\xe3\xb4\xdf\x87\x6a\x5d\x15\xd7\x31\x24\x09\xe7\x83\xe0\x93\x7c\xf5\x34\x49\xc7\x65\x66\xf6\x54\x7b\xae\x2b\xba\xb8\xc0\xf7\x3e\x7d\x2d\xa7\x31\x51\xc3\x9b\x1d\x9e\x77\x78\x33\x9f\x82\x02\x82\x8c\x2a\xd8\x59\x45\x32\x81\x07\x01\x90\x16\x28\x85\x21\xbe\x46\x89\xec\x1c\x22\x44\x9c\xaa\x7f\xea\xa4\xcc\x8b\xcc\x24\xb9\x46\xe0\x89\xdf\x29\xfd\xb4\x30\x59\xdb\xaa\x98\xa3\x68\x60\xb1\xc7\x60\x12\x5e\x9c\x2a\x67\xc2\x8b\xc1\xe7\x5c\x23\x70\xd6\xd3\xa1\x4f\x53\xc9\x9d\xc7\x40\x61\x11\xf9\xb9\xf9\x87\x94\x5e\x71\x8d\x5f\x2e\xa2\x9c\x4a\xea\xf4\xb4\x2a\xa3\xdd\xc5\x13\x0a\x3b\xa5\xc5\x28\xc1\x8e\x6d\x36\x14\x1c\x9d\x58\x9b\xd0\x02\x13\xcf\x93\x16\xa5\xf8\x49\xc9\x78\xad\xed\x33\xf4\xb3\xdb\x67\x94\x39\xd9\x4a\x66\xc6\x56\x2b\x17\x9e\x22\x70\x0b\x5f\xab\x29\x90\xdb\x6c\x4d\x1c\x4e\xb0\xa3\x1d\x55\x42\x50\x9f\xd4\x5c\x16\xd5\xda\xbb\x11\x78\xa1\xe6\x5b\x0a\xd7\x46\x7b\x1f\x61\x40\x3a\xca\x1e\xe0\x8a\x42\x92\x5f\x09\x3c\x4d\x3b\x2f\x5e\xd8\xe3\xb3\xe9\x0b\x35\xb1\x4e\x7c\x1a\x0a\x1d\x3f\xa1\x59\xa6\xc5\x84\x91\xca\x3d\xde\x53\x95\xd3\x4b\x1a\x56\xfe\x9e\xea\xfd\x4f\xb2\x74\x3c\xa1\x95\xbd\x3c\xcf\xc9\xe6\x27\x1a\x09\xf8\x49\x03\xf5\x52\x05\xbe\x51\x51\xe4\xfd\x32\x1b\x8e\x94\x4e\xe9\x3b\xfa\x4b\xbd\xa3\xa0\x21\x26\x11\x93\x5c\x24\xf8\xef\x2b\xf2\x03\x2b\xaf\x62\xdd\x5f\x09\xbc\x94\xd0\xc4\x66\x2b\x36\x2c\xe2\x8d\x39\x1f\xa7\x5c\x0e\x94\xd9\xc6\x43\xa2\x24\xe0\x2f\x7e\x5f\x05\x9f\xa0\xca\xb2\xb0\x8e\xc2\x97\x80\xdf\x12\xa5\xc9\x5e\x0a\xfb\xc4\x19\x44\x69\xbb\xcd\x6c\x2a\x4c\x60\xa0\x54\x3b\x99\x1b\x8b\x3c\x70\x57\x4f\x55\x53\xb5\xcd\xe4\xa3\x3d\xc5\xfe\xfd\xa0\xe9\xc6\xb1\xd0\xcd\x28\x4d\xa5\x07\xc6\xe4\x7f\x5b\xc9\xec\xbd\xed\x36\x5c\xfb\xfa\xa4\x0a\xe9\xa1\x03\x4b\x1f\x86\x1a\xe0\xa7\xca\x1f\xe4\xd3\x9d\x02\x43\xbf\xde\x5d\x5c\xdc\xeb\xa9\x35\x40\x05\xb1\xe0\xa5\x56\x91\xda\x0a\x7c\x47\xec\x6c\xa0\x60\x03\xc7\xa6\x5e\x98\xf2\xd8\xd4\xbf\xd6\xb9\x4d\xa5\x90\xd4\xcc\xf7\xab\xa8\x61\xc5\xda\x18\xe0\x65\x27\xcf\x7c\x58\xac\x95\x3f\xc5\xc4\x13\xe5\xf5\x9a\xd6\x6d\x9e\x66\x45\x54\x8e\x01\xa6\xc0\x02\x38\x82\x71\xc7\x99\x70\x1b\xdf\x8f\xfd\x35\x51\x63\xe7\x13\x76\xea\x6b\x33\x7f\x56\xd7\x92\x49\xf2\x2f\xd2\xdf\x43\x85\xe1\x09\x32\x31\xc4\x1a\x85\x6b\x03\x0b\x20\x91\x80\xa3\x90\x48\x3c\x4f\xea\x41\xa0\x30\x6f\x0c\xa6\xc4\x5f\x9a\x21\xca\x17\x06\x8e\x61\x91\x28\x94\xef\xdd\xac\x42\x74\x09\x94\xe8\x7c\x03\xf4\xec\x2a\xda\x4d\x4a\x4b\x60\xc1\xe9\x28\x54\x3b\xaa\xab\x87\xec\xf7\x25\x3b\x9a\x42\x98\xe0\x57\x03\x45\x37\xe9\x6c\x36\x74\x8c\x30\xbe\x37\x14\xc4\xf2\x28\xc7\x46\xf4\x0f\xdb\xcf\x01\xea\x8b\xa2\xfd\x5f\x62\xe9\x20\xff\xfe\xcb\xb6\x35\xed\xa5\xdc\x94\xb4\xc6\x65\x2d\xad\x71\x59\xa1\xcb\x0c\x99\xd5\x76\x74\xd7\x4e\x09\x53\x5f\xaa\xb6\x31\x29\x16\xa4\xe9\x93\x4a\x10\xe6\x16\xc6\x14\x29\xd8\x49\xc5\x8a\x3e\x5b\x83\x09\xfb\x32\xfe\x35\x4a\x26\xf1\x76\x3e\x9c\x7a\x0c\xe9\x13\x9b\x35\x0b\x2e\xa5\xec\x77\x8d\xce\x66\x8c\xf4\xcd\xa9\x42\x9e\xf3\x6b\x03\x8e\xe9\xa6\x62\x1e\xed\xa1\x8c\x4d\xa8\x81\x8a\xe6\x56\x8e\xfb\x36\xdb\xed\x13\x20\x96\x0e\xd5\xab\x04\xbc\x90\x8f\x31\x6f\x9c\x85\x68\xf5\xb2\xc4\x0c\xd0\x6f\xef\x47\x75\xa2\x95\x59\x33\x46\xf1\x8e\xc5\x07\x02\xdf\x3a\xbe\xd6\xc8\x91\x16\x0e\x75\x6d\xb2\x56\x25\x39\xec\xb7\xea\xa9\xcb\xff\x1b\x86\x9e\x6f\x1a\x25\x82\x7d\xfb\xba\x61\x6c\xa2\x31\x47\xf4\xc8\x19\xaf\x62\x9d\xf1\x8d\xe6\x31\xdb\x24\x1c\x8d\x4d\xb6\x4a\x1f\xe0\xcc\x13\xf6\x2d\xc8\xb5\x42\xdb\xe7\x13\x93\xad\xe6\xb5\x36\xae\x9e\x04\x4a\xb1\x7b\x2d\xca\xa3\x3e\x67\x43\x2e\x61\x5e\x9e\x77\xc9\xf7\xb3\x35\xd5\xd7\x92\x7a\xbc\xb3\x1e\x86\xcb\x78\x6f\x09\xa8\xe9\x39\xb0\x01\xc3\xf0\x41\x98\x94\xcf\xe8\xdd\x25\x61\x05\x2e\x2f\x35\x09\x42\x34\x5f\xab\x73\x39\xb3\x31\x71\x7e\xe2\x8d\x8e\x8a\x8c\x39\x32\xe1\x1b\x55\xa5\xf9\x7a\x69\xfb\xd6\x89\x5b\x61\x5a\x6f\xab\xaa\xe6\x76\x1b\xb6\x87\x0c\x61\xb8\xbe\x24\x22\x0b\x5e\x67\xfc\xf2\xf4\x71\xd9\xc8\xab\x15\xfc\x9c\xca\x86\x8e\xd2\x6c\x16\xa2\x41\xb5\x16\x94\x69\xfe\x01\x47\x34\xa7\x19\x87\xed\xf7\xdb\x34\x26\x38\x19\xef\xd2\x0a\x43\xa5\xe9\xaf\x15\x7e\xfb\xea\x54\x75\x19\x98\x5a\xc6\x2c\x42\x14\x3d\xa5\xf2\xea\xb1\xe0\xdf\xa4\xed\x13\x89\xe6\x9b\x3a\xc2\x09\x3c\x27\xf8\xa1\x96\x9c\xfb\x54\xe3\xfb\x59\x6a\x40\xd0\x0c\x4a\x97\xe5\xc3\xa9\x56\xa6\x7b\xbc\xb7\x73\x6f\x92\x5c\xcb\x8c\x87\x5c\x98\xd0\xa0\x52\xe4\xed\x9f\xea\x25\x70\xab\xb1\xbd\xed\x5f\xea\x66\x51\x38\x22\x68\x3e\x9c\xfd\xc5\x76\xb2\x86\xc3\xf8\x52\xa4\x4c\xb5\x6d\x16\xa6\x71\x6c\x87\x11\xe9\x51\x7b\x8b\xa5\xba\xda\xb7\xe4\xc2\x76\x12\xc5\x76\x52\x44\x21\xaf\x32\xd1\xf1\xf6\x00\xee\xcb\xaa\xdb\x97\x66\x55\x86\xfd\x28\x9e\x5b\xfa\x74\xbe\x41\xf0\xf9\x9e\x0f\x61\x66\x7a\x4a\xf1\xf8\xa4\x56\xc9\x78\x40\x1b\x8b\x08\x33\xd1\x4b\x93\xf7\x4c\xe3\x8e\xaf\x78\x8f\x4a\x36\x7c\xfc\x4e\x15\x1e\xbb\xd9\x88\x5d\x5a\xea\x16\x25\x9c\x88\x66\xbc\xd5\xe1\xb7\xb4\x3c\xd0\xb7\x94\xa3\x8c\x7d\x3d\x24\xc9\x75\xe7\xae\x71\x61\xea\xbf\xf6\xc7\x5e\x7a\xf3\x5b\x37\x9b\xe6\x55\x07\x44\x1c\x5d\xf3\xc9\xb5\xe1\xd5\xc9\x16\x6e\xde\x81\x6e\x18\x47\x63\xa7\x81\xae\x60\xa5\x5e\x8d\xff\x0b\x8a\x1d\x95\xd8\x2a\xda\x36\x59\x64\x59\xc2\x80\x6d\x31\x55\x07\xfc\xc2\xf4\x79\x97\xe5\x46\x2b\x51\x48\x01\x62\x94\x8f\xd1\x6b\x77\x0c\x36\xd7\x60\x79\x4f\x6f\x44\x37\x9d\xd4\x94\x1d\x0e\xc5\x65\x57\x08\xca\xd5\xef\xe0\x75\x3c\xa6\x3d\x06\x41\x93\x76\xbe\xaa\x5e\xc8\xf2\xe9\x9e\x0a\x84\xb7\x1c\x7e\x64\x12\x85\xab\x25\x18\x11\x22\xba\xe0\xf7\xe5\x66\x0d\xe7\xf0\xfc\x42\x77\x32\x4a\x0b\x98\x72\xf1\x5c\x64\x43\x2b\xda\x6e\xc4\xdc\x4a\x6d\x7e\x69\x31\xca\xc3\x51\x24\x55\x25\x61\x68\x74\x94\xf5\xbc\x4f\xee\xdf\xb0\x85\x21\x94\x26\x76\xd1\x1f\xd0\xfe\xc0\xd7\x5e\x1f\x2d\x2d\x8b\x91\xcd\x92\x39\x7f\xc2\xc2\x98\x00\x71\x36\x43\x61\x19\x64\x47\xcf\x83\x49\xf3\x74\xcf\x57\x7e\xb5\x1f\xfa\xaa\xcd\x9f\xf4\x4a\x4c\xff\xc5\x17\xe8\xc7\xf0\x24\x47\x69\x7a\x4b\x65\xca\xbf\x58\x08\xbe\x60\x69\xfd\x93\x4d\x65\xb7\xb9\x3d\x55\x6a\x54\x08\x54\xd9\x04\x7c\xaa\xa3\xe4\xa9\xe6\x4c\x3e\xd6\xa3\xa8\x4e\x21\x7c\x95\x11\xc9\xf2\x3c\x87\x47\x0f\x14\x4c\xfe\x93\xff\xb0\xf7\x6c\xa3\x61\x57\x8e\x3a\x9d\xdf\xfb\x5d\x4f\x67\x5a\x9e\x77\xac\x6f\xe7\x6d\x17\x0d\xac\xc9\xd9\x01\x1a\xd1\xfb\x55\x00\x50\x5c\x39\xd9\xa5\x00\x38\xcd\x58\xb5\x2e\xf0\x4e\x54\xff\xb6\x91\xf8\xff\x56\x77\x6c\xb3\x2c\x8a\x63\x4a\xfc\x51\xab\x3c\xa2\x49\x4f\x47\x5c\xe1\xb2\x8a\xca\x6d\x92\x97\x40\x17\x4b\xea\xe9\x11\xfb\x18\x57\xb4\x51\x9e\xa6\x6d\x0a\x65\x1a\x9e\xcb\x35\xf7\x7e\xde\xa6\x6b\x62\x5d\x69\x92\xff\x63\x7a\x1b\x88\x71\xaf\x23\xa8\x97\xba\x1f\xfd\x9a\x53\x85\x70\x0a\x0b\x70\x65\x44\x3a\xb2\xad\x24\xce\xef\x11\xb2\x08\xc1\xfd\x47\x74\x22\x21\xcc\x3a\x41\xf1\x0a\x6a\x5a\xcc\x6b\x55\x04\x54\xc7\x4a\xf6\x7a\x60\x7f\xff\x2c\xe0\x47\xd8\xaf\x3a\x9b\x8a\xd4\xbc\x05\xc6\x09\x44\xbb\x2e\xd0\x36\xbb\xfd\xd8\x26\xbd\x12\x34\xc6\xee\x33\xf2\x08\x65\x90\x1f\xa3\xa6\x85\xf5\x79\x5a\x91\x77\xff\xd9\xa6\x06\xef\xd3\xb2\x41\xf0\x73\x9f\x98\x64\x98\xf4\xff\x23\xc9\x5a\x49\x49\xb4\x3a\xeb\x85\x9e\x44\xfb\x3e\xf6\xa3\xb7\x79\x6e\x4a\xa3\x59\x29\x1f\xce\x6c\xd6\x0c\x9f\x42\xfb\x45\x95\x4d\xdd\x43\xab\x19\xd9\xde\x4f\x95\x5e\xf4\xae\x4d\x25\xc2\x87\x90\x1c\x51\xc9\xfb\x0a\xfa\x77\x03\x25\x17\x49\x8c\x3c\x82\x95\xc5\x02\x51\x73\xb8\xa7\xf6\x03\x86\x8a\xca\x82\x72\x48\x8f\x5d\x4f\xf5\xaa\xd7\x26\xad\x87\xea\x29\xb1\x34\xff\x7c\xda\xd0\x1e\x97\x1d\x5b\x41\xf5\xde\xa7\xf1\x72\xda\x2f\x9e\x8e\x7c\x55\x93\xa0\x76\x53\xb6\x86\xa1\xbf\xaf\xed\x9b\xf7\xb0\x69\x0d\xea\x96\x4d\xb5\xd7\xe5\xf9\xee\xc8\x71\xfd\x5c\xef\xd2\xfb\xff\x9c\xd5\x76\x2d\xb6\x4a\x61\xf3\x51\x34\xe9\x74\x7e\xe7\xf7\x1d\x24\xaa\x1a\x59\xbe\x76\xc0\x91\x89\x4d\x12\x39\x57\x85\xba\xa9\x79\x9c\x53\xb5\x00\x8b\x28\x29\xed\xe0\x31\x57\x6c\xfc\xf4\xb9\x9e\x92\x9c\xda\xa6\xb1\xaf\x15\xcf\x60\xad\xf3\x05\x40\xb1\xa5\x05\xa7\xf2\xbd\xce\xa6\xb2\xcd\x3e\xa5\x79\xe8\xe8\x46\x33\xf6\x99\x92\x52\x94\x37\x4f\x20\x40\xc3\x3a\x3f\xa3\x64\xbb\xcd\x60\x8d\xe4\x17\x67\x95\x88\x2f\x37\x8d\xf9\x06\xfb\x2b\xbb\xda\x2a\x1d\x0e\x6f\xcb\x99\xa4\xeb\x23\x9b\x41\xfe\x06\x33\x70\x96\x40\xfc\x8e\x96\xbc\xe4\x0c\xfb\x1e\xb8\xbe\xcb\x20\x33\xeb\x7b\x3c\xb1\xe1\x24\x46\xcf\x89\x40\x57\x0f\x8b\x13\x01\x69\x94\x70\xc0\xe9\x6b\x62\x1a\xfc\x02\x5b\x14\x60\x68\x47\x68\x14\x11\x9a\xde\x52\x65\xa7\x91\x4d\x06\x24\x07\x89\x08\x00\x3b\xfb\x71\x8c\x86\x6c\x6e\xbe\x49\x70\x47\xe9\x6b\x25\xa9\xa8\x83\xd4\x1a\x2e\x8e\xc4\x70\x5e\x51\xc4\x93\x68\x38\x42\xb3\x41\xf1\x03\x65\xd5\xfd\x5c\x81\x58\xf3\x91\x1d\x0c\x9c\xd2\x0a\x76\x37\xa6\xe3\xf2\x8d\x4a\xdd\xc2\x51\x16\xe5\xc5\xd8\x20\x23\x73\xda\x05\x5e\xc7\xc0\x95\x9d\x57\x62\x5b\x84\x23\x0b\xb0\x33\x1b\x1e\x2b\xc2\xf9\x77\xb4\x47\xec\x7b\x8d\x56\xd5\xfe\x25\x00\x12\xab\xd8\x6d\xfb\x16\xa1\xb2\x6f\x7d\xb6\xde\x6e\x38\x48\x9d\x36\x92\x38\x8a\x2b\x41\xf0\xd3\x4a\xc7\x20\x8e\x72\x62\x8d\x60\x85\x8a\xd1\x0f\xbd\x08\xb1\x00\xaa\x95\x7a\x62\x83\x7c\xca\x49\x6a\x57\x33\x4f\xe4\xae\x77\x9e\xbf\xfb\xf6\x75\x33\x2e\x43\x62\x0a\x1c\x55\x1a\x9a\x0c\x9c\x11\x5f\xaa\x27\x94\x39\x67\x64\x66\x14\xfa\xe4\x17\x34\x6f\x30\xbb\x00\xcc\x15\x71\x97\x67\x1c\xf0\x32\x2f\xa2\xa2\x04\x2b\xc1\x9d\x95\xef\x28\x25\x08\x4e\x56\x44\xae\xd2\x33\xd1\xe2\xa8\x6f\x33\x13\xd3\xd1\x8b\xe2\x87\xe8\x63\x63\x4d\x63\x3f\x76\x7e\x41\xde\x1c\x86\xa1\x0a\x18\xd1\x9b\x78\x16\x84\xff\x8f\x78\xed\xed\xc2\xda\x98\xdb\x54\x58\x75\x68\xd9\xa3\xcc\x7b\xb5\xd6\xec\x54\x25\xca\xab\xea\xfd\x84\x96\xaa\x3e\x2a\xe4\xbf\x8f\x31\x47\xa0\x3b\xab\x34\xbf\x4f\x37\x0a\x85\x2f\x2f\x1c\xea\x8e\x69\xd6\x38\xe5\x2d\x2c\x0f\xc9\x7f\x5a\x90\x67\x45\xea\xf5\x84\xc5\xb8\x42\x99\x55\x5c\x50\xdf\xcd\xae\x99\x5c\x14\xed\x9d\x9a\x8b\x57\x76\x69\x90\x0c\x0e\xcf\x77\xf3\x89\xb5\x5e\x01\x48\x68\xb6\x8a\x72\x1b\xfc\x5a\x4b\x93\xd6\xc6\x96\xf5\xf3\x91\x2d\xe4\x33\x9e\x67\xc6\x00\x44\xc4\x36\x0f\x54\x97\x63\xb6\xf7\xbc\xd7\x44\x1d\xd9\x6c\x9c\x8e\x2d\x59\x89\x55\xbf\xab\x14\x18\x1c\x53\x4f\x35\x72\x49\x91\x24\xcd\x3a\x8a\x0a\x81\x46\x18\x5f\xab\x4a\xfb\xa1\x74\x02\x0e\x1f\x16\x01\x34\xce\x59\x73\x8f\x7e\x85\xb9\x68\xbd\xea\x6c\x95\x90\xe3\xb3\x80\xa5\x7d\xbb\x91\x26\x83\x99\xea\x4f\xa0\x96\x00\x79\x1c\x2e\x21\x62\x8e\xe0\x4c\xec\x6c\xea\x96\x89\xc9\xd3\x64\x0f\xe6\x19\xda\xf6\x20\xd1\x22\xda\xf9\x3b\x1a\x14\x61\x50\x51\xe4\xe0\xd4\xc4\x14\x9d\x8a\xb6\x3b\xbc\xba\x9a\x3b\xe0\xa9\xe0\x79\x85\xf3\x7b\xad\x5c\xb3\x09\xa4\x2c\xab\x4f\x60\x8d\xf4\xc0\x9b\x9c\x9f\xae\xa1\xf0\x32\x93\x53\x57\x4b\x88\x32\x34\xde\xd8\x9c\xff\x2c\xf0\x4e\x5c\x77\x95\xf3\xd3\x05\x77\x2e\x8f\xcb\xb8\x88\x36\xac\xc9\x70\x30\x70\x43\x62\xda\xd9\xa1\xd5\x0f\x24\xf4\xa7\x3e\xa0\x47\x9a\x4b\xc0\x47\xfc\xc9\x2b\x58\x9e\x2e\xe4\xf1\x46\x7f\x97\xa7\xb5\xfa\xd5\x5a\x44\xf5\xab\x8e\x73\xbf\x3a\x45\xe1\xae\xcc\x34\x97\x6c\x95\xa4\x4d\xc5\x11\x0b\xe2\x5c\x16\xdb\xe3\x9b\x16\x9b\xd9\x05\x69\x87\x48\xef\x1e\xbb\xd8\x2d\xc5\xf2\x9a\x53\x1e\x0f\x37\x55\x4f\x6c\xcd\xc6\x6b\x16\x87\x97\x83\xa5\x78\xa6\x5e\x8b\x4e\xe5\xc1\xae\x4d\x06\xe9\xba\x14\xbf\xd0\xe4\x7c\x67\xaa\x3a\x9e\xef\xa8\xc2\xf2\x8a\x49\x92\x08\x64\x6a\x0d\x75\x97\xee\xe3\xce\x46\x3c\x79\x62\x96\x49\x5e\x66\xa2\x0b\x4d\x8f\xe3\x7a\xb1\x2e\x57\x6e\x5a\xaa\x2d\x1c\xea\x4e\x4c\x39\x11\x19\x6f\xe9\x18\x75\x9c\xda\xfc\xa9\xe0\x71\x5f\xb1\x89\x07\x9f\xa7\xf9\x22\x78\x69\x1a\x6d\x2c\xee\x27\x7a\x35\xa5\x51\x7a\xbd\xce\xda\xca\xf5\x15\x01\x11\x14\x8a\x8c\xdf\xa6\x6e\x06\x8a\x7b\x88\xe0\x11\x93\x97\x05\x64\xb1\x64\x59\x65\x13\x51\xeb\x59\x9d\xc6\xfc\x20\xa8\x72\x06\xe1\xbe\xe9\xb4\x75\x66\xd3\x2f\x7f\x6d\x7b\x1f\x97\xe4\x60\x57\xc5\xf9\x68\x3b\xdc\xa4\x4f\xe5\xeb\xc6\xc6\x7d\x78\x1e\xfd\xe6\x4e\x2d\x71\x56\x47\x78\x53\x56\xe5\xd0\x4b\x0a\xc2\xc7\x23\xa6\xdc\xd1\xda\x1c\xd8\x16\xba\x2b\x26\xce\xad\xd2\xd7\x39\xa3\xf4\x75\xce\xd4\xd4\x16\xc3\x34\x1b\xd8\xc1\x6c\x67\xf9\xc0\xf6\x1d\x25\x42\x8d\x6a\x9b\xd3\xc4\xd8\xbf\xb4\x7d\xa7\x51\x45\xfa\x4a\xd7\xe4\x39\x87\x19\x35\x3e\x72\x67\xc9\x13\x95\xfd\xf1\x1f\x9b\x84\x8a\x7f\x07\xb6\x49\xec\x7f\xfb\xca\xf4\xd9\x7a\xdb\xed\x6b\x0b\xdd\xe5\xf9\x6a\x8f\x64\xbb\x20\xe4\x47\x0f\x55\x97\xf8\xb2\xea\x41\xda\xd8\xae\x91\xed\x39\x16\x9d\x08\x4b\x57\xcf\x2c\xfe\xd0\x7e\xef\x39\xa1\x9a\x28\x99\x1d\x90\x4b\x83\x6e\xc2\xa3\x6a\x09\x81\x28\x91\xb8\xac\x5e\x38\x5f\xeb\x64\xfa\x61\xcd\x8a\xe9\xba\x6a\x85\xf7\x63\x13\xae\xee\xf5\xf3\xe4\x6a\xa0\x14\xbe\x39\x50\xc3\x2b\xf8\x23\xfa\x20\x27\xbf\xbc\x24\x91\xd6\xcf\x10\x88\x00\xc8\xc7\x9a\x42\xe2\x32\xe8\xe1\x1a\xd7\x1b\x35\xc0\xaf\x74\x89\xa4\x97\xb1\x73\x3c\x4e\x81\x8b\xb4\xc5\xf1\xb5\x9a\xb2\x45\x1a\xc5\xb6\x80\xf0\x1e\x4b\x0c\x07\x5a\x6e\x78\x67\x16\x57\x05\x7b\xd6\x4c\x3a\x9e\x59\x77\x01\xc7\xab\x24\x29\x7e\x04\xf2\x49\x5a\xd4\xde\x07\x36\x72\xe9\x77\xfa\x8d\xfb\x84\x2a\xe0\x02\xf9\xb9\x5b\x35\x83\xae\x2b\x2f\xbf\xeb\xa8\xc6\x2a\x9f\x64\x5f\x22\x55\x86\xe8\x57\xb1\x89\xf0\x4d\x5b\x98\x3d\x8a\xc2\x55\x2e\xe2\x49\xbe\xa6\x93\x37\x75\x18\x96\x89\x58\x8e\xc4\x50\x93\x43\x31\xff\x87\x53\x45\x0b\xfe\x21\xbe\x09\xa0\x98\xec\xbd\xc6\x37\x8d\xb7\xb3\xb8\xd8\x1d\xda\xa4\x8a\x46\x67\x55\x2d\xea\xa3\xa0\x4e\x0c\x74\x7e\x8e\xf7\xd4\xea\xbe\xae\xdc\x1a\xf2\x22\x2b\xc3\xa2\xcc\xec\x60\xae\xca\xc7\xf1\x3d\xae\xd2\x4c\x62\xb1\x19\x34\xcd\x45\xc0\xd0\xb3\x1d\x2e\x63\x0c\xa5\x27\xd1\xd2\xb0\x5c\x8f\x72\x1b\x92\x14\x0a\x46\xc8\x75\xf4\xab\xef\x2b\xb5\xba\x36\x22\xcf\xd0\x44\x2e\x17\xc7\x6b\xbe\x82\x39\xcc\x37\xee\x68\x8d\xa3\xc2\x66\x26\x64\x36\x3c\x76\x87\xd3\xaa\xb2\xfb\x88\x92\xb2\xb8\xd1\x72\xca\x92\x18\x6e\x48\x48\x40\x5d\x51\x3f\x15\xa8\x8a\xba\x3f\xc8\xd7\x47\x36\xb1\x6b\xe2\x0c\xe6\xb2\x9f\x97\x97\x05\x9c\xf8\x4c\xcf\xf3\x91\x6f\xd3\x52\x47\x09\xa8\xb3\x59\xdb\x1c\x6d\x52\xc4\x1b\x4f\x62\xc1\xb3\x10\x30\x50\x57\xa8\xbe\xee\x42\x5b\x58\x68\xcd\xd5\x13\x38\x58\x58\x35\x72\xf8\x87\xf7\x11\x9b\x09\xe2\x9f\x5e\x92\x40\xfe\xab\xb7\xa7\x4d\x32\x11\x91\xcc\x68\xb8\xc9\xfd\x40\xe5\x62\xdb\x88\x8a\x91\x18\xdc\x0c\x3c\x5f\xe8\x1a\x66\x27\x0b\xd0\x79\xef\x18\x1b\x17\x69\x62\x28\xc4\x68\xf5\x9f\x77\x9a\x5c\x14\x55\x68\x9e\x99\xe2\x03\x5f\x6a\x5b\x50\x61\x6c\x72\xa4\xc7\x78\x83\x3f\x0c\x14\x12\xfb\x87\xaa\xce\xdd\x4f\xd3\x55\xb8\xc5\x39\x22\x94\x57\x69\x65\xe1\x5c\xbe\xc1\xa3\x4a\x31\xcc\xa7\x51\xdb\x38\xbf\xf9\xa6\x4d\xa2\x63\x90\x99\xbc\x88\x42\x62\x4c\xa3\xe8\xc7\x26\x7d\x38\xe5\xdf\xa3\x97\x83\xb3\xfc\xee\xd4\x1f\x0c\x47\xdb\x28\x74\x7d\x13\x9b\x24\x04\x27\xc1\x05\xc2\x3e\x28\xd6\x6a\x1f\x26\x31\x43\x2a\xe1\xe8\x8a\xad\x6f\xbe\x7f\x23\xf0\xe7\xd1\x75\xda\x65\x91\x22\xbe\xaf\xba\xb4\x69\x18\x52\xba\x55\x6d\x0f\x3a\xec\xf4\x26\xfb\xac\x11\xc4\x0d\x71\x25\x3a\xf8\x83\xa9\xc6\x30\x9a\x6c\x02\x99\x01\x9c\x1f\xf7\xd5\x7c\x9c\xeb\xf9\xc6\xf2\xa7\x81\x12\x19\xbf\xa3\x0e\xe8\xd7\xd2\x7e\x3e\xa7\x3a\x27\xff\x06\x53\x0a\xd5\xa3\x77\xa7\xea\x4f\x03\xc3\x8a\x15\x73\x45\xc5\x62\x77\x1b\x09\xd0\xc2\xa1\xae\xc9\x8b\x34\x89\xf2\x91\x0b\x13\x10\x1c\x01\x21\xc4\xd7\x3d\x9f\x77\xbd\x6c\xf2\x39\x3a\x9b\x9c\x76\xc5\x61\x69\xc0\x7e\x32\x55\x8e\xa0\xb3\x3d\x5a\xce\x98\xa0\x7f\x3c\xf5\x63\x7b\xb5\xf1\x25\xc8\xa6\x0d\xa5\x04\x81\x64\xc8\x49\xea\x63\xf4\xeb\x6d\x6c\x90\x81\x5d\xb3\x71\x3a\x11\x50\xa1\xd6\x0b\x70\x11\x67\xf5\x95\x04\x5e\xea\x8f\xc2\xf0\x0d\x53\xa5\xa4\x0b\x87\x78\xa2\x6d\xa9\xa5\xbe\x15\x34\x23\x9f\xa5\x25\xa2\x0c\xc0\x51\x02\xba\x3e\xda\xcf\x41\x35\x7e\x17\x3c\x54\xd2\x33\x6a\xe6\xb0\xf7\x3b\x57\x0b\xaf\x47\x76\x14\x61\x84\xe8\xba\x78\xd1\x8d\xef\x60\x4d\x29\x4c\x9b\x28\x09\x42\x8a\x0e\x87\x4a\x53\xfa\xf1\xb7\xba\x66\x6c\xb3\x2a\x13\x13\xf2\x1e\xbe\xcf\x71\x6d\x68\x72\x5c\x55\xf3\x06\x59\x9a\x12\xc2\x05\xc5\x7d\x3c\xca\x1d\x70\x19\xf8\x26\x50\x95\x95\x35\x64\x2c\x38\x0c\x4f\xeb\x6a\xde\x69\xc5\x3e\x9a\x64\x76\x0d\xe6\x26\x1d\x85\xfb\x52\xf6\x6a\x6f\xb7\xad\xec\x95\x32\x2b\x46\x36\x9b\x51\x95\x96\xb3\xaa\xf2\x04\x57\x23\x89\x35\x5b\x45\xec\xb3\xc8\x59\x8a\x63\x47\x3e\x45\x9f\xc9\xd7\xd3\xe7\x95\x15\x08\x4d\x9d\xb1\x4d\xd8\x3a\xc7\x9d\x79\x87\xe7\xe5\xba\xcd\xae\x68\x25\x33\xc9\x6a\xf5\x3d\x3b\x1e\x60\xc1\xbc\x48\xa9\xd4\xc8\x29\x67\xcb\xc9\x28\xcd\x22\x43\x7c\x38\xec\xfc\xa8\x1b\x71\x96\x84\xdf\x92\x54\xb9\xfa\x5c\xe7\x1c\xef\x31\xd5\x0f\x94\xb0\x46\x98\x26\x85\x1d\x4f\xd2\xcc\x64\x1b\x08\x04\xda\xd2\x52\x29\x23\x67\xd1\xc0\x52\x5b\x12\x13\xf5\x2a\xa2\x42\x76\x65\x57\xda\xe8\xa7\x54\xdd\xf4\x8e\x76\x49\xb8\xdf\xc8\x5d\x16\x0e\x75\xe3\x34\x5d\x95\x33\x5e\xb4\xbb\x15\xbb\xa3\xc9\x0d\xa6\xb4\x35\xb7\x8c\x03\x6d\x53\x62\x6b\x39\xbc\xfa\x26\xe7\x60\x59\x0a\xc1\x9e\x5c\x7a\x5f\x05\xcb\x13\x93\x15\x02\x65\x91\x36\xa5\x46\xe7\x35\x7a\x1e\x87\xe7\x5f\xe9\x4e\x4a\xe8\xa0\x28\x67\x5e\x09\x15\x6f\x07\x1e\x1d\x75\x56\x15\xa6\x26\x69\x1c\x97\x05\x52\x36\xc0\x10\x6e\x4f\xbd\x91\xde\xed\x56\x73\x9f\x30\x4d\xc2\xb8\x74\x01\x11\xce\x0a\x1e\x2c\xbe\x69\xe4\x6c\xfb\xf6\x75\xe3\xb4\xdf\xf7\x0a\xcc\xc8\xb4\xcf\x2b\x39\xc7\xf3\x6a\xe9\x8a\xf6\x07\x4e\x26\xc7\x53\xf7\x12\xac\xdc\xa2\x70\xd2\xd0\xcb\xf3\x4e\x1a\x5a\xc9\x47\x24\x26\xde\xc8\x23\x76\xb2\x14\x34\x9c\x8f\xf7\x8e\x28\x0b\xc0\x4e\xaf\x46\xb8\x6e\x75\x45\x20\x93\x1d\xe3\xd6\x3e\xa7\xfb\x98\xed\x92\xfb\xb7\x04\xab\x07\xbb\x93\xd8\x24\xac\xc7\x82\xe4\xa5\xd3\x53\x85\x42\x5e\x16\x8c\x3b\xd6\xdf\x3f\x5b\x35\x49\x6e\x20\xab\x25\xa6\x45\x1d\xe5\xe1\xe7\x0f\xf3\x95\x32\x5e\x89\x58\x89\xac\x0a\x0d\x51\x94\x39\x4a\x0f\xcb\xd7\x0a\x13\xb7\xc2\x3a\xb2\x4b\x4b\xce\x31\x0f\x3b\x2a\xa2\xff\x0f\xf0\x85\xb0\x72\x20\x76\x21\xda\x09\xbe\x58\x6b\xe2\x38\x32\xc9\x1b\xbb\xe9\x41\x9c\xdf\xd1\xcb\x8e\x41\x85\xcf\x66\x95\x08\x0a\x41\xf8\xff\x23\x5c\x73\xf2\x11\x4b\x4b\x8e\x02\xa5\x0b\x7d\xb9\x59\x47\x42\x27\x06\x41\xd5\x0f\xa2\x4f\xcd\xb5\x77\xce\x31\xfc\xae\xf4\xfa\xc4\x24\xce\xea\x19\x19\xf4\x75\xd5\xbc\x3a\xa7\x97\xf3\x07\xaa\xe7\x32\x88\x72\x72\x24\xc8\x31\x33\x59\xa8\x8e\xbe\xbe\x88\xd6\x3d\xa3\x84\x6c\xab\xe0\x3c\xe2\xc3\x42\xd4\x99\xfd\x96\xf9\x4b\x95\x61\x46\xc9\xa0\xe4\x70\xce\x61\x89\x9c\x04\xc3\x65\x85\xdf\x08\x4d\x61\xe2\x74\x28\x68\x4c\x20\x0a\x8e\x51\x6c\xc1\xd7\xca\x26\x7d\x25\xcd\x6c\x34\x4c\xa0\xfd\x89\x15\x7d\x1d\xd0\x31\x39\xad\x3c\x26\x8d\x35\x60\x51\x72\xf8\xb9\xee\xf1\x5d\x0b\x74\x79\xf7\x5b\x53\x5f\xec\xb8\x39\x55\x0c\x54\x66\xb8\x89\x72\x88\xff\xfa\x7f\x19\x28\x21\xeb\xef\xb5\x6d\xa8\xeb\x04\xc0\x9a\xd3\xf2\xde\x70\xa0\x64\x06\x0f\xfd\x31\x74\x38\xd8\xb8\x16\xab\x72\x06\x12\x9d\x42\xdb\xf1\x55\xcb\x38\x2d\x45\xbe\xcb\x69\x6e\x38\xdc\x49\x9d\xac\x9d\xa5\xf1\xa3\x7e\xf3\x3f\xa7\x32\xdb\x37\x11\xa3\x80\x0a\x79\x9d\x36\x0e\x31\x28\x54\x1a\xeb\xe2\x7b\x8d\x80\x94\xb9\x98\x4e\x4e\xd4\x1b\xdb\xec\xda\xf4\xc5\x41\x46\xc7\xa1\xf0\x71\x4f\x53\x56\xd2\x31\xf3\x3c\xfc\xf0\x7d\xa2\x50\x65\x9f\x34\xd2\xce\xc5\xc5\xe5\x46\xb0\x83\xc4\xf6\x06\x96\x26\xdf\x34\xbc\x18\x0f\xcf\xbf\xe8\x62\x47\x47\x0b\x16\xc2\x2e\xfd\x26\x2f\xe4\x40\xd5\xfe\x8e\xab\x64\xbf\xb0\xe1\x28\x89\xbe\x5e\xda\x7c\x56\x19\xec\x3f\xc4\x33\xb3\xdd\x12\x8d\x3a\x8a\x09\x7b\x36\x3d\x1c\xf1\x5d\xef\xd8\x63\xfa\x26\xae\x9d\xe3\x5a\xbb\xaf\xc5\x71\xe6\x60\x37\xed\xe7\x36\xa3\xba\xda\x46\x87\x6a\xa9\x0e\x41\xa2\x6c\x3b\x77\x1e\x2a\xaf\xbe\xda\x8d\xad\xc9\x92\x28\x19\xce\x29\xa3\x83\x6d\x42\x5b\x72\x0e\x3c\x55\xb5\x64\xa4\x30\x62\xe5\xe3\xd5\x47\xfe\xbd\xc2\x29\xfd\x27\xff\xd9\x6f\xcc\x74\x16\x17\xb7\x7f\xa9\xdc\xde\xb9\x52\x8a\x9b\xe3\xaa\x61\xd5\x8f\xc2\xd5\xf5\x08\x91\xbd\x13\x1f\xf7\x1c\xe9\xcb\x0e\x5c\x16\xa7\x26\x99\x53\xfb\xde\x5b\xa4\xc7\x23\x38\x33\xbc\x26\x3c\x25\x4e\x44\xcc\x3b\x74\xbf\x44\x8d\x59\x7d\xac\x19\x0e\xcd\xb0\x2e\x6f\x5f\x33\x16\xde\xc9\xff\xa7\x52\x1a\xa6\x9f\xc2\x40\x2f\x38\x74\xb3\x3f\x19\x8a\xcc\x92\xe5\xa2\x73\xbf\xbb\x32\x55\x0e\xe5\x57\x1a\x81\xe3\xf2\x7c\x37\x2f\xfb\x6b\x96\x94\x21\x68\xdf\x60\x7b\x78\xa5\xda\xf6\x53\x6c\xbc\x32\x15\x7c\x90\x63\xc6\x69\x99\x14\x7b\xaa\x0f\x63\xfd\x10\x2c\x21\x64\x5d\x38\xa9\x91\x66\x7c\x4c\x6f\x43\xfe\x3f\xfd\x39\x81\x09\x29\x9c\xe4\x79\x5a\xce\x22\x45\xb2\xf3\xab\x56\x11\xd2\x20\xca\x94\xa7\xaf\x82\xd5\x2f\xc8\x8d\xaa\x1f\x84\xa3\x08\xba\xc3\x62\x33\xa6\x9c\x3b\x59\x51\x9f\x2b\x67\x14\x5b\x8b\xdd\x8c\x76\x64\xbb\xa7\xac\x66\xf9\xab\x4a\xfe\xab\x14\xfc\x2e\xa8\xfe\x71\x48\x7a\xa2\x6c\x38\x89\x21\x7b\x58\x5b\x3d\xd5\x68\xc9\xf5\x13\x8e\xea\xb5\x26\x3d\x5d\x61\xd9\xd1\xb4\xc7\xd4\x01\x6e\x07\x5d\xa0\x4e\xaf\xd1\xd3\x3d\xd0\x35\xf9\x2a\xcf\x8e\x9a\x9b\x92\x54\xe4\x9f\x71\x5d\xaa\x89\xcd\xd6\xa2\xbc\x5a\xa3\x7e\x21\x3d\x42\xf9\x34\x5f\xf7\x76\x2e\xd1\xc5\xc5\x6e\x66\x27\x65\x3f\x8e\xc2\x8e\x0a\x2a\x2e\x69\x74\xc2\xa5\x96\xa0\xe9\x60\x77\x14\x0d\x47\x36\x83\x78\x1e\x67\x49\x48\xdd\xb0\x83\xc1\xf0\x11\x1f\x7b\x13\x19\x29\x6e\x9e\xea\x49\x0d\x6a\x62\x8a\x2c\x4a\x91\xcf\x60\x5b\x87\x2c\x3c\x5f\xd7\xdc\x9b\x63\x88\x49\x08\xa0\x49\x29\xaf\x03\x2b\x0c\x6e\x1b\x58\xda\x7c\xed\x98\x7c\x26\x5c\x4d\xd2\xf5\xd8\x0e\x86\x76\x46\x91\x9b\x66\x7b\x1e\xf1\x79\xb7\xae\x3f\xfb\x59\x4e\xce\xd5\x09\x47\xef\xc1\x49\xd8\x2a\x3d\xdb\x9d\x4e\x32\x55\x48\x7a\x78\x7e\xe9\x51\x08\x02\xd3\xa6\x89\x77\x0c\xc5\x6e\x47\xa1\xf6\xe8\x99\x1f\x04\x8a\x4f\x2d\xca\xba\xa8\x80\xc1\x25\x0e\x1b\xd2\x7d\xcc\x4d\x87\xc3\xdb\x2f\x49\x1e\x6b\x80\xe0\x98\xfe\x89\x72\x23\x2d\xd2\xf4\xf3\xd5\x12\x40\xa9\x12\x8e\x27\xec\xcd\x1e\x28\xa4\xe0\xcf\xb1\x02\x70\x74\x6e\x63\x8a\x22\x6d\x9b\xd9\x54\x40\x78\xe6\x7b\xa0\xc5\xfb\x11\xbd\x32\x91\x07\xf4\xa9\x09\x7a\x07\x38\x92\xbf\x4d\x75\x03\xbe\xae\xdb\xe5\xe2\x19\x05\xc3\x4c\x5b\x19\xf2\x84\xf3\x9a\x17\xd4\x26\x16\xd5\xed\x9b\x24\x71\xe9\x0a\xa2\xc6\x7b\xca\x97\xf4\x5e\xcb\xa9\xdd\x35\x61\x68\x27\x85\xe9\xc7\x56\xe5\x78\x47\x54\x8e\x77\x44\x89\x79\x57\x39\x5e\x14\x46\x13\xa1\xaf\x33\xc4\x09\x83\x24\x96\x97\xbe\xb0\x70\xb9\x51\x5f\xda\xb7\x8f\x6c\x47\xf1\x27\x20\xcc\x03\x6a\xd5\x23\xa8\xe3\xe2\x45\xdd\x41\x3c\x87\xa8\xeb\x68\xab\x7d\x0d\xc1\xe3\xbd\x23\x4f\x07\x41\x1f\xdf\xa8\x1a\x99\x2d\x0c\x6d\x32\x40\x40\x5e\x51\xe1\x20\xd7\x4b\xc4\xcc\xbe\x25\xfd\x2b\xb2\x32\xf4\xd2\x48\xfa\xb0\xe3\xeb\x16\x3d\x1f\xf2\x1f\x0b\x29\xe2\x6b\x4d\xb6\x7c\x50\xdc\x37\x93\x22\xca\x21\xa3\xe4\x44\x60\x96\x96\x9c\xee\xcb\x33\xae\x1d\x30\x1c\x15\xeb\xb6\xfa\xef\xac\x87\x84\xb3\xd1\x7a\xcd\xa2\x45\x4b\xd8\x62\xfa\x76\x7a\x2d\x1d\x96\x15\x13\x65\xeb\x66\xa3\x56\x8f\xf6\x91\xc5\x0f\xa7\x1e\x96\xb6\x96\xc6\x65\x52\x58\x54\x81\x5e\xa9\x99\xbc\xa0\x94\xbe\x15\xf8\x02\xee\xc9\xc6\xec\x5a\x38\xd4\x35\x83\xd7\x4a\xa1\x77\x39\x9c\xc2\x39\x25\x46\x78\xae\x31\x45\xf6\x2f\x31\x1a\x91\x08\x47\x33\x9d\x1d\xfa\xcc\x6c\xe0\x84\x27\x16\xac\x86\xc3\x3d\x98\x6c\x3d\x72\x32\x3e\x58\xa8\x8c\xec\xe3\x9b\xba\x98\x58\x35\xf5\xa3\x34\x41\x18\x00\xe2\xf8\x49\xc5\x72\x83\xe7\x10\x16\xff\x5b\x2a\xac\x2f\xca\x70\x55\x38\x3e\x22\x7b\x43\x1b\xbd\xe8\xde\xc8\xf7\x19\xc6\xd6\xae\x94\x60\x4d\x39\x1f\x74\xcf\x5e\x6e\x16\xce\xbe\xd2\xb5\x26\x1b\x9b\xcc\xd5\x75\x00\xc0\xfe\xa6\x76\x33\xfd\xa6\x97\x79\xb4\xc3\x8c\x41\x11\xa8\x62\xe0\xb4\xe0\xeb\x16\x4b\x89\x03\xdd\x37\xcc\x9a\x98\x54\xb5\xce\x4f\x5f\xd0\x18\x96\x26\x33\x09\x90\x85\x3e\x4e\xd3\x26\xc3\xcf\x2b\xf0\xa8\x89\x12\x9b\xf5\x53\x93\xf1\xb0\x48\x79\xd5\x63\xbd\xfc\xd9\x8f\xc3\x75\xef\x0e\x2a\xbb\xf0\x77\xe6\x00\x65\x40\xfa\xb5\x8b\x88\x94\x08\xca\xd0\x73\x06\x24\x5a\x2b\x66\xbc\xa7\x6d\x2e\xde\xf1\x0c\x90\xf9\xe7\x1a\xb3\x9f\xd8\x1c\xa3\x34\x2b\x79\x08\x9c\x6f\xac\x53\x7b\x3f\xeb\xdb\x3c\xb1\xc9\x8b\x59\x3f\x19\xce\x4d\x95\x9c\x52\xa0\xa0\xad\xa8\x08\xf0\x0f\xb5\x58\x18\x7a\xd8\x22\x4f\xe4\x2d\x85\xe5\xdc\x6a\x44\x12\xd5\x1e\xb2\x11\xd9\x78\xb0\xd3\x4b\x4c\x15\x8c\x04\x1e\x64\xf3\xdc\x92\x0e\x15\x16\x28\x22\xf5\x5f\xa9\x3a\x00\x0e\x36\x6c\x78\x0f\xda\xd4\xdf\x56\xb2\xc8\x26\x03\x86\xf1\x38\x8a\x57\xf5\xb9\x7c\xa3\xf4\x56\xe2\xb2\x4f\xf9\x5d\xd1\x51\xda\x36\xa7\x02\xdf\x2f\x39\x35\x7d\xcc\x9b\xc6\x2d\xfc\x33\x6a\xff\xa1\x6b\xfb\x16\x7a\x79\xce\xa1\xb0\x7a\x61\x40\x12\xec\x85\x1e\x8e\xab\xda\x1f\x70\x00\xea\x5f\x4c\x95\x50\xe6\x3b\xe4\xfc\x81\xb8\x02\xa2\x89\x18\xfc\x2b\xd0\x79\xc0\xdf\xba\x4d\x20\x6d\x89\x7d\xb5\x0c\xff\x4c\x0f\x15\x75\x54\x3c\xce\xd0\xe9\x8b\xca\xea\xae\xcd\xce\xd7\x44\xee\x16\x29\x00\x56\xd9\x3d\x50\x15\x31\xd7\x77\x6d\x7a\x17\xc0\x73\x81\x6a\x8e\x72\x85\x06\x91\xc3\x23\x9b\x2a\x46\x7f\x1f\x47\x37\xba\x14\x4f\x6f\xd6\x03\xf1\x2a\xf6\x13\x85\x82\x6a\x8b\x71\x98\x86\x6a\xe6\xbb\x58\xcc\x69\x78\x5e\x27\x26\x02\x7a\xf9\x77\x00\xf5\x17\xcb\x24\x3f\x2b\x7e\x4e\x65\x6b\x24\xb9\x7f\xaf\x04\xea\xb5\xe9\x57\xbf\x4c\x56\x6d\xd6\xa9\x32\x39\x91\x6e\xa9\x86\x52\x24\x5d\x94\x2d\x42\xba\x61\xe2\x22\xb2\x5c\x60\xc2\xa7\xfd\x35\x8d\x3b\x5f\xb7\xc8\xfc\xad\x99\x32\x91\x9a\x81\xd4\xb3\x95\x51\x9f\xa6\xc5\x87\x69\xb2\x52\x02\xd1\x5d\x4d\x12\x0c\xd9\xcd\x40\x51\x87\x39\x42\x16\x89\x08\x45\x72\x6f\xe2\x78\x16\x0e\x75\x27\x65\x66\xb9\xd2\x22\xb6\xcc\x9e\x56\x7f\x5e\x55\xb8\xc8\x3a\xc3\xd2\xb1\x82\xf2\xca\x5d\x95\x36\x1f\xaf\x03\xe3\x3c\x93\x34\x0f\x47\x69\x1a\xe7\x7b\x55\x38\x86\x4a\x8c\x13\x03\xdd\x2f\xa5\xdd\xeb\x53\x6f\xc9\x01\x15\x2c\x85\xc8\x58\x70\x4a\x8c\xd5\x03\x6d\x6f\x05\xaa\x6f\xf8\xdd\x66\x1b\xa5\x0a\x74\x06\xe9\x84\x33\xd5\x57\xb6\xaf\x4c\x95\x82\x1e\xd7\xaf\xc5\x54\xcd\xbf\x65\x13\x9a\x41\x64\xb0\xa4\x85\xa3\x44\x3f\x2a\x6c\xf1\xc7\x95\xa3\x4d\xfa\x9c\xaa\xca\x5d\x54\x44\x8a\xa3\xb4\x48\xb0\x98\xf6\x6e\xaa\x5e\xfa\x03\x1a\x30\x21\xc2\xd2\x8b\x71\x12\xad\xfb\x16\xdc\x2a\xf1\x00\xa1\x9f\xa2\x7d\x86\x9d\x80\xc3\x7b\x20\x2c\xee\x02\x22\xa0\x72\x38\x29\x03\xce\xf6\xaa\x29\x8f\xb7\x32\x47\xf9\x1a\x4e\x11\xf6\x4d\x43\x8d\xb1\x03\x46\x8c\x73\xf7\xa9\xf6\x0e\x84\xd1\xbb\x50\x1b\x17\x1c\x87\x6f\x24\xed\xd9\xd4\xae\xab\x4f\x35\xb2\xbf\xa5\x25\x8e\x59\xd8\xd9\x53\x25\xf0\xa2\x05\x0f\xd0\x32\x06\xe9\xaf\xa6\x0a\xac\x57\x16\x4f\x2b\xe3\xd6\xbf\xc3\x98\x4b\x10\x5b\xad\x39\xf1\x9c\xa2\x99\x8d\x95\x7a\x1d\x7f\x19\x8f\xf0\x18\xe8\xf6\x22\x9a\x4d\x43\xcb\x3f\x86\x21\xc4\x8f\x69\xc3\xc8\x93\xaa\x28\xf4\xd7\xd8\x3f\x10\x58\xcd\x6c\x7a\xd1\xca\xf7\x6a\x5c\x57\x74\x36\xb1\x8c\x21\xd8\x20\x70\x1c\x9a\x09\x82\x1c\xa7\x37\xce\x96\x7b\xaa\x34\x38\xc9\x4c\x58\x44\xa1\x85\x75\x20\xba\xb9\xbf\xc2\xa3\xb2\x7f\x6e\xe0\xc1\x74\xef\x20\x33\xc0\x03\x79\xcc\x89\x29\x46\xb1\x2d\xb8\xab\xe4\x2c\xc5\x5c\x67\xee\x6f\x1a\x0b\xe1\xab\x2f\x77\x87\xd1\x9a\x35\xeb\x66\x63\xc6\x9f\xd5\xff\xcf\x74\xa7\x37\x38\x46\x5e\xcb\xa1\x9a\x2a\x65\x99\xd5\xf2\xb7\xf4\xc4\xd2\xb8\xa4\xf7\xe5\x24\x89\x9c\xf2\xdf\xa9\x46\xbe\xbb\x70\xa8\xbb\x16\x85\x45\xea\xa8\xbc\xe8\x98\x9d\x0c\x14\x20\xf9\xa4\xeb\xf7\xc5\x2f\xbc\xf6\xc2\x4c\x83\xbf\xe9\x8c\x92\x16\x17\x1d\xa9\xbc\x0d\x92\xd8\xb7\x71\xba\x4e\x70\x2a\x67\xa8\xe5\x04\x7d\xbe\x4f\xcf\x29\x0e\x60\xd5\xa3\x60\x52\x3e\x74\x31\x67\x16\x0d\x06\x8e\x4c\x8b\x28\x6a\x76\xd3\x73\xfc\x67\x1b\xe5\x94\xfd\x4b\xb0\x73\xc0\x56\xef\x80\x8c\xbe\xb6\xa2\x54\x4e\xa3\x64\x10\xad\x45\x83\xd2\xc4\xac\x3f\x2f\xa4\x7b\x6f\x46\xfc\x5f\x2b\xa9\x0f\x48\x46\x60\xb1\x3e\x0c\x76\x14\x7b\x16\x7c\xc2\xef\x9d\xbe\xdf\x9f\x2a\xc8\xd2\x96\x12\x9e\x32\x63\x93\x33\xa1\x16\xa7\xed\x9b\x38\x46\xf9\xa6\xcd\xda\x64\x60\x57\x00\x51\xf6\x32\x2a\x30\xc4\x97\x44\x46\xd7\xdf\xa3\x71\xca\x69\x83\x1c\xf9\xaa\xde\xb3\xab\xe7\x4b\x80\x83\x28\x9f\xd8\x98\xf0\x0a\x98\x6e\xa8\x37\xf0\x75\x5b\x1e\x09\xec\x27\xa7\xbb\xd8\x37\xcf\x60\x00\x04\x59\x43\xcf\x8c\xe0\xe8\x46\x0b\x05\xf9\x60\x37\x33\xc9\x90\x33\xd1\x03\x5e\xce\xb1\x7a\x5f\x5e\xce\xd1\x5b\x81\xad\xa4\x61\x9a\x81\xbe\x2b\xc6\x7c\x1d\x27\x30\xfb\xed\x9a\xc7\x61\x18\x47\x09\x81\x5a\x9d\x74\x60\xcd\xa8\xa9\x7a\x95\x4e\x1c\xd9\xeb\x6a\xbe\xab\xca\x7f\xc5\x88\x4c\x13\x9e\xf5\x18\xf7\xc7\x78\x8f\x45\xa8\xbe\x3d\x55\x96\x65\x67\x89\x5f\x87\x73\xe8\x7b\x88\xb0\x24\xbd\xa2\x3f\x8f\xaa\xe8\x03\x9a\xd8\x5c\x1a\x07\x7f\x50\x0a\xcf\x33\xde\x26\x7a\x0b\x11\x16\xbe\xde\x55\x25\x85\x8a\xca\x10\xf6\xfe\xa7\x50\x57\x40\xac\xf7\x18\x20\xd3\xf8\x97\x87\x4a\xe1\xe0\x2c\xe6\x12\x76\x33\x68\xb1\x72\xff\x08\x73\x93\xff\x21\x50\x90\x9f\xbd\x0d\x6e\x07\xb0\x33\x44\xa3\xa3\x4e\x1b\x56\xcf\x69\x6d\xe1\x70\xba\x65\xbd\xbf\x48\x16\x3c\x1b\xc8\x41\x9d\xb6\xa9\x83\xcd\x3c\xa0\xdd\x5a\x1c\x8d\x7d\xd9\x3b\x2d\x8b\x30\xe3\xdf\xc2\x34\x7a\x47\xe9\xec\xfd\x59\xe0\x73\x80\x0f\x14\x0a\xcb\x14\x45\xb5\x7f\xa3\x3f\x8b\xdd\x05\x26\x74\x7c\xad\x3e\x20\x1a\x4f\x4c\x58\xcc\x79\xc8\xc6\x53\x3d\x8f\x60\xf8\x53\x05\x0c\xdb\xb5\xe9\xd9\xc8\xe7\x75\xe5\xe6\x82\x9a\x69\x71\x1a\x7a\xcb\x14\xfc\x3d\x0e\x66\x44\xac\xd7\xd3\x8a\x9b\x06\x84\x0b\x87\xba\x59\x44\x1a\x88\xbe\x2e\x7c\xb1\x4e\x9e\x6a\xab\x9d\x47\x49\x98\x8e\x5d\x01\x07\xe1\xf0\xb5\xa9\xc7\xca\x5d\x0b\x76\xc8\x19\x1d\x7a\xa9\xfb\x1f\x11\x4e\x03\x05\xd3\x6f\x6b\xf9\x9a\xd3\xd3\x5d\xbf\xc6\x91\xec\x7d\x1a\x32\x9c\x8d\x1f\x6a\x21\xee\x33\x6d\xee\xaf\xe1\x88\x17\x6f\x67\xa9\xe6\xf0\xfe\xa2\xab\xa5\x7b\xe1\xc1\xf5\x28\x19\xb2\xa8\x2a\x66\xfc\x25\xfc\xa4\xb0\xd6\x7c\xc9\x13\x14\x3b\xa1\xb6\x29\x68\x9a\x89\x50\x6f\x40\x5c\xf8\x8b\xc0\x63\xe0\x7e\xe1\xd9\x1b\x93\x32\xcb\xdc\xc0\x20\x16\xfa\x86\x52\x45\xff\x86\x46\xcb\xd9\x49\xf1\x82\x8a\xe9\xdf\xd2\xa8\xc8\xb7\x1a\xaf\x6a\x79\xde\x35\x91\x5d\x81\xf0\x82\x36\x61\x54\x6d\xec\x89\x89\x92\x95\x92\x44\x94\x97\xe5\x7c\x3e\xa7\x1c\xdd\xcf\x35\x3a\x22\x52\x76\x1e\x1a\xcc\xfd\x17\xbd\x5c\xad\x2b\x93\x33\x0f\x1c\x13\xe3\x5e\x1b\xd5\x36\x8b\xd8\x38\xaf\x15\xae\xdc\x86\xa8\xcd\xed\xc4\x28\x9f\x7a\x11\xbc\xf5\xc7\xea\x7d\x5d\x39\x89\xca\x38\x32\x49\xa4\xc5\x01\xcf\x28\xfb\xf2\x33\x2d\x36\xda\x07\xc8\xdc\x7e\x25\xe2\x29\x2e\x3f\xa8\x7c\xf9\xce\x04\x8f\xba\x3d\xf7\x5f\x3c\x81\x1d\x16\xd3\xf8\x0a\xa5\x87\x08\x35\xe0\x36\x8a\xa1\xde\xc2\xaf\x33\xa3\x7c\x5a\xa3\x97\x57\x1f\x02\x6c\xc2\x7b\x55\x9c\xdf\xf3\x62\x6e\x37\x02\xe5\x37\xf9\xa1\x76\xa2\xfc\x90\xb6\x65\x67\xda\x5e\x4d\x52\xe0\x4f\xef\x68\xd0\xd5\x6c\xcf\x13\x08\x56\x2d\x6c\xeb\xb7\xaf\x10\x31\xe2\x4a\xe3\x65\x2c\x2d\x75\x47\x69\x8c\x50\x1b\x21\xc3\x47\x53\xe5\x02\x7c\x11\x5f\x1a\x87\xce\x4d\xaf\xf4\x00\x65\x77\x5e\x28\x38\x00\xb8\x6c\x0f\x88\xc5\x43\x04\x76\x08\x8d\x3a\x3d\xaf\x8d\xe8\xa5\x53\x26\x36\x2f\xa2\x90\x74\x09\x95\x60\xf3\x79\xa5\x64\x7f\x5e\x41\xd4\x8c\xcd\xd2\xc4\x94\x05\x59\x99\xd0\x77\x42\xd9\x1a\x20\x0f\xbe\xae\xd1\x44\x33\x33\x04\x80\x1b\x3b\xc3\xae\x9e\x6f\x0a\x7c\x5a\x33\x8a\xfc\xbc\x0a\xae\x4c\x18\xa5\x33\x1e\xa4\x77\x4f\x1d\x6a\x97\xb4\x56\xe9\x19\x57\xf1\x4c\x13\x5b\x44\x63\xd4\xee\x91\x67\x42\x2b\x90\xaf\xd5\x7e\x9e\x45\xe0\xde\x7a\x62\x97\x22\xb1\x7c\xa8\x38\x4b\x57\x6b\xcf\x91\xaf\xf4\x29\xab\xc6\xc4\xe1\x6f\xc1\x37\xad\x8e\x35\x23\x6b\x33\xad\x24\xfa\xab\x40\x27\x0a\x52\x5d\xcb\xd2\x3e\xf7\xb9\x80\xd5\xfd\x31\x3d\x2a\x5f\xd7\x02\xb3\x55\x3b\x46\x2a\x2b\x24\x44\xfa\x06\xc2\x42\xf4\xfb\xd4\xba\x8d\xa4\xf8\xe8\x8a\x74\x3e\x94\x24\x4b\x52\x2f\xc7\x6e\x63\x5b\x2d\xe7\x5c\x97\xf6\x4f\xab\xd2\xfe\x69\x95\x42\xe4\x63\x13\xc7\x4f\xfa\x60\xe1\xee\x54\x89\x3b\xfd\x60\xea\x8f\xe7\x5d\x68\x42\x48\x40\x4e\xb9\xa9\xb3\x96\x71\x61\xcf\x7b\xaa\x56\x80\x9c\x03\xe5\x97\x63\x48\xf1\xb0\x6d\x5d\x55\x6c\x90\x5f\x68\x8c\x2a\x78\xe6\xd2\xd7\xa7\x71\xc1\xb2\xe5\x20\x12\xd0\x92\x4f\xd1\x33\xa1\xaf\x3f\x4a\xb3\x22\x0a\xcb\xb8\x28\x33\xcc\xdd\x57\x18\x3e\x22\x7d\x5f\xbe\x0b\x3c\xb8\x67\x92\xa5\x6b\x51\x4e\x46\x56\xf4\xf3\x4e\x07\x51\x73\x10\xbd\x10\x6a\xdf\xbc\x06\xd8\x3c\xa2\xac\x8f\x03\x15\x72\x7d\xac\x90\x7b\xb9\x19\x97\x99\x89\x76\x57\x3f\x2a\xda\x6e\xaa\x6d\xf3\xe3\xa9\x12\xeb\x64\x4b\x34\x99\xee\xd5\x90\x09\x08\xa9\x1a\x32\x41\xc6\xe9\xd2\x56\xb8\x1a\x5b\xa5\xaf\x7f\x76\xaa\x64\x0f\xb8\x00\xc2\x37\x54\x26\xe4\x9f\x52\x2c\x7c\xd7\x13\xed\xf8\x1c\x0b\x1d\x0e\xbe\x56\x05\xa1\x22\xca\xf3\xd2\x02\x76\x20\x46\x76\x14\x8e\x8a\xc3\xdd\x73\xfe\xb1\x47\x26\xb3\x90\x37\xa6\x38\x5b\x9c\x34\xd5\xa1\xf3\x26\x2d\x3f\x44\xc2\x5b\x8a\x0b\x78\x45\x09\x1f\xe5\x85\xcd\x6c\xaa\xda\xd8\xa8\x70\x09\x36\xa4\x19\x58\xbe\xd2\x5d\x89\xcb\x1c\x85\x67\x76\xb0\x57\x68\x83\x8b\x0a\xcc\x65\x62\x09\xcf\x3a\x2a\x37\xa5\x1f\x96\x3c\xd5\xff\xf0\xc0\x4e\x6c\x32\xb0\x49\x88\x45\x2e\x72\xef\xb4\x2a\xf9\xc6\x55\xfa\x87\x36\x1a\x5a\xe6\x10\xcb\x17\xa5\x1f\x94\x27\x78\x6e\x67\x83\xf8\x60\xf7\x6b\x0b\x33\x3e\x02\x63\xed\x4d\x2c\x3c\xc8\x7c\x6d\x5f\x51\x2e\x9e\xf9\x28\x4b\x93\xe2\x0d\x7c\x02\xd2\x3a\xee\x8c\xf1\x8d\xca\x8b\x92\x74\xcd\xc6\x64\x8b\xe5\x11\xe3\xf4\x76\x05\x3d\x2e\x32\xb4\xe5\x68\x0e\xd5\x62\x01\x07\x6b\xcd\x9c\x6a\xea\xe0\xd8\xdd\x4b\x5b\x3a\x0e\x2a\x6e\x5a\xe0\xe5\xdf\x52\xd9\xd1\xd8\x0e\xaa\x33\x63\xaf\xfa\x4e\x0c\x20\x17\x25\xd2\xea\x8f\x3b\x09\x7a\x97\xf6\xfc\xbb\xa9\x92\x79\x23\xd9\x88\xed\x0b\xaa\xa2\x79\x59\x8b\x99\x06\x5f\xf2\x86\x5b\x7a\xb1\xc7\x1b\x33\x9d\x7d\xfb\xb8\xcb\x7c\x7e\x8a\x67\x62\x21\x77\xf4\xab\x90\x3c\xde\x6b\x53\x2e\xab\xa6\x5b\x14\x47\x6f\x48\xc8\x23\xca\x25\x1d\x27\xc5\x7c\xac\xd1\xf0\xab\x5e\x1f\x73\x62\x45\x39\x57\xd4\x6d\x95\x8c\xec\x29\xd7\x62\x19\x96\x79\x91\xea\x7e\xd1\xd5\x9a\x36\x80\xb3\x3f\x8d\xad\xc9\x0d\xd3\x11\xc4\x66\x53\xb3\xe5\xa4\xec\x52\x98\xb1\x9d\x51\xab\x67\xea\x85\x7a\x10\x20\x22\x54\x78\xe0\x9d\x47\xd3\xb2\x1f\xdb\x01\x37\x43\x11\x25\x9f\xd1\x2e\xef\x67\x3c\x56\xd3\xe4\xc5\xba\xc9\x06\x33\x4a\xd2\xfb\x04\xbd\x3c\x6c\x88\x28\x23\xa3\xe0\x79\xb1\xd1\xd4\x5c\x9e\x5f\xee\x96\xa4\xf1\x51\xa4\x29\x8f\x28\x62\xa7\x13\xca\xf7\xe8\x44\x6b\x60\x08\x41\x38\xe7\xff\x83\x42\xc3\x11\x2d\x7b\x7b\xa4\xc5\x20\xcf\x64\x79\x9a\xe8\xd0\xe6\xb2\x82\x0e\x5f\x56\xbb\xde\xd8\x16\x66\x32\x4a\xb3\x9c\xd4\x64\x5c\xf9\x47\xf1\x5b\xdb\x34\xd1\x0a\xfb\x7a\x11\x41\x79\xff\x15\x4e\xfb\x2f\x2a\x7a\xe6\x15\xda\x3c\x10\x98\xfd\x8d\x32\x4f\xca\xa2\x35\x13\x77\xbc\xcf\xda\xd9\x40\xe1\x23\x1a\xf3\x49\xa2\xfd\xf5\xb4\x8c\x07\xb3\x9d\xaf\x2d\x70\x82\x38\xdb\xa3\x52\xef\xff\x47\xd9\x9f\xc7\xc8\x72\x65\x67\x62\xf8\x7b\x59\x55\x6f\xe7\xd6\xcd\xd6\xae\xdf\xa4\x20\xfd\xd4\x02\xdc\x22\x20\x8c\x67\x0c\xeb\x9f\x48\xd7\x2b\x89\xcd\x07\x75\xb1\x50\xef\xe9\x51\xe6\x1f\x06\x6f\x65\xde\xca\x0c\x56\x64\x44\x2a\x96\x2a\x16\xe1\x01\x06\x86\x21\x0c\x06\x82\x60\x7b\x3c\xb6\x67\xc6\x9e\x91\x07\x63\x19\xd6\x8c\x6d\x2d\xee\x91\xac\x56\x2b\xb2\xd5\x2d\xb1\x5b\xec\x85\xec\x85\x6c\xee\x6f\xdf\xf7\x7d\xa7\x11\xe7\x3b\xe7\xde\x13\x15\x41\xc1\xfe\x83\x40\x04\x5f\x65\x66\xc4\x5d\xce\x3d\xcb\x77\xbe\xcf\xb9\xfe\xbf\xfe\x79\x76\xc1\x18\xc7\x2f\x3d\x26\x2d\x22\x9f\xb9\x99\x88\xc7\xc7\x04\xb4\xb4\xa2\x85\x8c\x76\x2b\x0c\x8d\x34\x02\x92\x19\xcf\xbe\x71\x07\x06\x49\x00\xc3\xb5\xa0\xdd\xf9\x64\xeb\x36\x8d\xcc\x66\x47\xc7\x53\x1d\x27\x2b\xf6\xc5\xb6\xae\xc7\xc8\x9a\x61\x21\x0f\x26\xee\x8b\xaf\x72\x5d\x2a\xbd\x44\xba\x8d\x32\x1e\xf6\x56\xc5\x9e\x9a\xb0\xcf\x5e\x7f\x5e\x3d\xd3\xa9\x71\xdd\xd7\x69\xf0\x3d\x50\x8f\x99\x03\x66\xab\x29\x42\xea\xf9\x6c\xe9\xcf\x01\x24\x26\xe4\x64\xaf\xac\x15\x5c\xf3\xed\x8d\xa4\xe2\x81\x03\x07\xbb\x59\x28\x0e\x84\x60\x27\xe8\x49\x05\x3c\x21\xc3\xb5\x46\x24\x45\x18\x2e\x91\xc0\x54\x8c\x81\x27\xda\x04\xa8\x2a\x3b\x3e\xa3\x4a\xb8\x58\x7b\x08\xd4\xaf\x2b\xa1\xa3\x37\xda\xd8\xee\xb3\xd4\x54\x07\x01\xef\x27\x0c\xdc\xdd\x40\xb1\x4f\xdf\x55\x03\x92\xda\x7c\x14\xc6\x6b\xb3\x5e\x87\xfe\x07\x4a\x72\x90\xb5\x1d\xe1\x57\xdc\x53\x72\x92\xc7\x1a\x8b\x19\xcd\x17\x13\xdb\x0f\x57\x39\xf3\x2d\xf2\x0d\x1d\x2f\xe5\xd0\x62\x52\x97\x50\x2f\xcf\x46\x96\xa9\x3f\x51\xe8\x06\xf5\x27\x5f\x2b\x32\x8e\x68\xd5\x74\x54\x77\x11\x76\xbd\x90\x11\x68\x50\x78\x56\xa4\x26\xee\xdb\x7d\xbe\x12\xf6\xc4\xd4\x17\x8b\x4f\xc3\xe9\x74\xfa\x9d\xcb\xf3\x1c\x04\x1e\x47\x6f\x28\x36\x00\x03\x0c\xe1\x8c\x7f\xa5\xf4\x8a\x16\x7f\x09\x67\x56\x53\x8e\x62\xda\x77\xf5\xb8\xaf\x9d\x0e\x44\x89\x52\x68\x1b\x21\x74\x7b\x4d\x39\x59\xab\xa6\x0f\x78\xad\xa2\x45\x0c\x7c\xcc\x70\xb9\x55\x47\x7e\x64\x0d\x1b\x69\xd8\xaf\xeb\x35\xc8\xb5\xaf\x60\xbe\xa3\x62\xa3\x91\x79\xd5\xa4\x88\xbc\xdb\xe8\x36\xfd\xe8\xfe\xdd\x5f\xfc\xa5\x99\xca\x95\x47\x79\x03\x9d\xb8\x70\x7a\xee\x69\x7a\x9d\x0f\x1a\x79\xa0\x43\xcf\x77\xed\x2b\x94\x09\x42\xe6\x01\xab\xe4\xcf\x4a\x5f\x3c\xff\xb3\x86\x9d\x5d\x38\xd4\xcd\x88\xd1\xde\x0a\x85\x10\x86\xe8\x34\x92\x92\x4c\x07\xaf\x91\x30\xd7\x03\x61\xf3\x1e\x5b\x13\x87\xf1\x90\xb3\x2b\x2e\xa3\x7b\x51\xa9\x16\x5e\x54\xce\xa5\xe9\xa7\x49\x96\x41\xa0\x40\xa2\x6d\xfa\x11\xbe\x71\xb6\x2d\x5b\xb3\x79\x7f\x04\x21\x44\xd8\x9f\x9b\xaa\x7e\x7a\x5a\x41\x1c\x8f\x6b\xba\xf7\x22\x27\x88\x19\x31\x3f\x71\xe9\x2f\x50\xf4\x6f\x17\x15\xa9\xaa\x66\xc2\x37\x2b\x45\x66\x07\x1d\xdf\xd7\x78\x59\x91\xcc\x7a\x01\xf1\x49\x64\xc2\x38\x0f\x57\x57\x75\xd3\xba\x26\x6a\x3d\xe7\x5c\x8e\x97\x8b\xc1\xd0\xee\xa0\x3f\x13\x4a\x73\xd5\xdb\xfe\xa0\xf4\xae\x27\xea\xbb\xee\x67\xdd\x10\xee\xed\x79\x37\xec\x26\x00\x0f\xf0\x25\x9e\xe1\x49\x62\xcf\xb5\xf4\xb0\x9c\xfb\xf8\x0d\x44\x70\x73\x0e\xed\xb9\x52\x8c\x49\xc9\x09\x1f\x93\x52\xb5\x2a\x15\x9d\x6f\x2c\x89\x43\xcf\x77\x57\xc3\x28\x9c\x84\x31\x0e\x25\x87\x0c\xf4\xc4\xe0\xe7\xa9\x0a\x0b\x07\x65\x49\x43\x97\x57\xd2\x62\x82\x90\x1b\x0e\x2f\x90\x7a\x7c\xed\x19\xcf\xac\x89\x76\x7b\x57\xe6\x49\xf4\x6d\x3b\x31\x75\x29\xd8\x7d\xf8\xe4\x54\x89\x27\x9d\x29\x55\x2f\x3c\xbf\xad\x68\x68\x79\xc6\xb3\xbd\x3d\x4d\x1e\x55\x6b\x87\x6a\xa1\xff\x58\xe8\x6e\xd8\x28\x22\xee\x4a\xcf\xc7\x28\xb4\x99\x17\x1a\x99\x41\xa4\x1e\xc6\x95\xb3\x2d\x23\x5a\x63\x0f\x10\x21\x47\xad\x17\x51\xa4\x61\x26\xf5\x21\x81\x67\x55\xaf\x2e\x07\xfa\x27\x71\x14\x15\x31\x16\xb3\xaa\x38\x7a\x08\xfc\x6f\x95\x0a\xd8\x7f\xc1\xd7\x3c\xfb\x79\xb8\x2e\xa2\xbc\x0e\xf5\xea\xb2\xd9\x27\x4b\x11\xda\xb1\x79\x7f\xb6\xf2\x5b\x61\xb3\x67\x7a\xd5\x00\x70\x53\x88\x62\x9d\x3e\x59\x47\xa8\xb7\xa0\x8e\xfa\x45\x34\x31\x1d\x72\xf3\x6b\x19\x24\xbe\x69\xd1\xc0\xeb\xe6\x45\x2a\x4d\x5f\x48\xef\xb2\xe2\x85\x48\x7b\x28\x10\xc1\x29\x4d\xc8\x4d\x7a\x15\x94\x25\x52\x07\xfd\x92\x3b\xe8\xb5\x26\xc3\xda\xde\x8e\xa3\x1e\x67\x5f\x0a\x88\x88\xed\x53\x9f\x62\xbe\x82\xc4\x06\x4e\x07\x3e\x63\xb0\x6a\xb0\x41\x71\x4a\x9f\x66\x27\xc6\xb9\x26\xcb\xd2\x0a\x3b\x37\x55\x72\xe1\x9f\x06\x41\x61\x0d\xed\x26\xfc\x0b\x6d\x42\xc8\xc9\xea\xaa\x4d\x95\xce\x35\x23\xf6\xa4\x62\xec\x7d\xd9\xb1\x89\x22\x4e\x20\xc1\xfb\x3c\xa5\x92\x81\xa7\x14\xb7\x69\x14\x99\x49\x66\x07\xb3\xaa\x34\x72\x83\xfe\x54\x62\x39\xd5\xe5\x75\x5d\xa9\x2d\x5c\x69\xc1\x97\x2e\x75\x07\xd6\x4e\x66\x7c\x7a\xed\x58\x59\x3f\xed\x5d\x69\xff\x6e\xf0\x98\xea\xd6\x4a\xb9\x5e\x2b\x48\x01\x9d\x45\xf2\x7e\xdc\xd1\x40\x91\x21\xe3\xac\x60\x70\x51\xe9\x3b\xef\xfe\x35\x9e\x97\x7b\x82\x03\xd5\x42\x71\x5e\x61\x47\x4d\xbf\x9f\xa4\x83\x30\x1e\x3e\xa1\x3a\x51\x08\xa6\xfb\xac\xa7\xb1\xda\xbf\x9f\x87\xeb\x2f\xc9\x99\xc4\xc9\x70\x36\xf0\xc9\xb2\xdf\x2a\xfd\xe1\x2d\xec\xb8\xb0\x45\x5a\xb8\x75\x77\x8f\x0e\x2e\x6e\xdf\x85\xe7\x02\x27\x15\x85\x69\x0c\x2d\x8b\x1f\x33\x5b\x39\xd9\x25\x7c\x15\xb7\x9d\x62\x85\x7c\xbf\x54\xd9\xab\x26\xce\xff\xb9\xc5\x6e\x9a\x14\x39\x49\xa1\xbb\xa6\xfc\xcb\x2a\x6b\x7c\xb9\xa6\x0b\x51\x44\x6b\x1d\xcf\xab\xf7\x43\x3c\x1a\xdf\xa8\xf9\x59\x0d\xa3\x71\x47\x69\x38\x5c\x44\xf2\x90\x6f\x54\x7f\x65\x15\x5a\x8c\x4c\x11\xed\xa0\x27\x86\x29\x40\x0c\x85\x9c\xee\x87\x98\x40\x07\x65\x75\x1c\x71\x1f\xaa\x0c\x13\x18\xf8\xb0\x10\x6f\x35\x1a\xb2\xf6\xef\xef\xae\x84\x49\x6a\x33\x6b\x52\x86\x2d\x4a\x1d\xd1\x43\x2f\xde\x71\x71\x71\x3f\xe9\xaf\xe5\x26\x04\x50\x17\x0f\x7c\xb6\xd4\x09\x77\xef\xe1\xdc\x6b\x03\x47\xae\xa6\xc9\xab\x56\x91\x6e\x30\xa2\x8e\x6f\x34\x45\x17\x61\x22\x77\x78\x1a\x52\x51\x05\x97\xfc\x86\xc6\x9d\x93\xfd\x50\x07\xbc\x3b\xed\x31\x3e\xfc\x91\x46\x64\xf1\xdc\x22\x41\xdc\x3b\x1d\x45\xd5\xad\x68\x18\x2f\x04\x5e\x5b\x76\x05\x0d\x72\xb3\xb4\xf2\x14\x47\xb3\xc0\x63\xf7\x90\x9b\x80\x35\xb5\x5d\xb7\x24\x7e\xa9\xfc\x31\xe5\x85\xe7\x36\x05\x97\x1c\x44\x5a\xbc\x12\xb0\xd6\x46\xbe\xd8\x48\xd0\xc8\x49\x34\xb2\x66\x1d\x91\x93\xb0\x61\xab\x4a\xcc\xd7\x4b\x9f\xc4\x5e\x0f\x73\x64\x7f\x9f\xf5\x90\x0d\x25\xa0\x20\xee\x51\xbe\x41\x81\x55\xf5\x18\x4e\x47\xcc\xb1\x5b\xdd\xa7\x8d\x29\x15\xcc\xad\xeb\x86\xe2\x9b\xd4\x66\x93\x24\xce\xea\xba\x49\xdc\x2d\x2c\xfa\x96\x5b\x72\x7e\x87\xe7\x9f\xed\x1e\x9e\xa7\x66\x0c\x4d\xdb\x81\xbf\x9e\x23\x42\x5d\x56\xf0\x83\xa9\x41\x0a\xe0\x41\xa9\x24\x43\x3f\x08\x14\xb9\xcc\x69\xb5\x1d\x6e\x40\x18\x85\xff\x01\xb1\x9a\xf4\x45\xd0\xc9\x88\x17\x7b\x9d\x4c\x20\x90\x24\xfb\x40\x0f\x81\x7e\xe5\x33\xa5\x8f\x83\x77\x4c\x75\xde\x50\x1d\x30\x7f\xa6\x23\x96\xa4\x4f\x1e\x2b\xfd\x92\x68\x26\xd2\x17\x4a\xde\xcd\xa7\xc3\x47\x26\x26\xa0\x4e\xc7\xa9\x23\x5e\x56\xea\x88\x97\x1d\x89\x6f\x31\x59\xb1\x26\xa7\xfd\x25\x12\xa7\xd5\x47\x10\x1d\xbf\x81\xa3\x12\x6f\x58\xb6\xe0\xc9\xab\x88\x23\x5a\x0d\xb3\x11\x25\xc6\x30\xa9\x77\x03\x9f\xb7\xc2\xbe\x91\xc0\xa2\xa5\xf0\xbe\x52\xad\xf3\x74\x86\x5e\xc2\x39\x62\x2e\x54\x07\x16\x0d\x09\xd1\x3b\xae\xba\x33\xb0\x51\x6e\x76\x77\x0e\x1c\x78\xc4\xa2\x74\x8e\xae\xbb\x1a\x36\x75\x23\x79\xa0\x93\xf4\x4a\x0e\x5f\xa7\xd2\x76\x4a\x09\x06\xda\x29\x4c\xe0\x5e\xea\xe8\xfd\xb5\x56\x06\x8a\xbe\xc9\xc2\x38\x61\xff\xce\xb5\x43\xf9\xd6\xa8\x96\xf0\x91\xdc\x5f\xf8\x68\x00\xeb\xb2\x39\xe2\x9b\xc0\x23\xd8\x72\xd3\x5f\x93\x33\x5d\x0a\xa7\x1d\xd7\xb9\xfd\x96\xc6\xf7\xfc\x79\xa9\x52\xa1\xe7\xda\xda\x24\xc2\xf1\xc4\x0e\x42\xd7\x26\xe1\xa4\x62\x0e\x1c\x90\x6b\xb7\x1a\x52\x13\xc6\x2e\x17\xc8\xcb\x5f\xb3\x62\x7e\xa0\x4a\x62\x93\xc8\x9a\x01\x5c\x40\x00\x05\x24\x09\xcc\x77\x2a\x91\x3e\x4e\xe2\xac\x9a\x66\x75\x0c\x97\x1d\x0d\xc5\xf6\x32\xa7\x57\x1b\xbe\xf7\x0b\x0b\x87\x48\x17\x3a\xe1\x60\x0d\x38\xd5\x85\x47\x57\x14\xa2\x38\xdb\x1c\xaf\x24\x51\x98\x8d\x81\xe1\x82\x7b\x7c\x02\xe5\x65\xbe\xd1\xc2\xf4\x26\x1d\x86\xcc\xa5\xe0\xf8\xea\x5c\xf7\xfa\x11\x2c\x1d\xbe\xc1\x0a\x13\xb2\x01\xef\x96\x4e\x4c\x6a\xe3\x9c\x83\x32\x44\x20\xe8\x3c\x11\x3a\x3b\x75\x14\x3c\x6c\x98\xb3\xc5\xc5\xa5\x6e\x6a\x21\x20\xce\x21\xb4\xeb\x7f\x59\x9e\x77\x70\x32\x59\xf1\x04\xdc\x98\xd1\x95\xd7\xce\x17\x16\x3c\x86\xc3\x6b\xde\xdf\x76\x6b\x68\xa5\x08\x49\xf2\x72\x46\x8b\x38\xb2\xc7\x8d\xfd\x7c\x1c\x13\x0b\xcc\xdc\xd1\x46\x72\xb8\x5a\xe3\x1b\x66\xdd\xa6\x5b\x7a\x94\xea\x85\x4c\x85\x4b\x48\xcd\x64\x14\xf6\xb3\xd9\xca\xef\x92\x1a\xa0\xb2\x76\xd7\x54\x26\xea\x02\x66\x86\xff\xa1\x4d\xd4\x8f\xfa\xb8\xb2\x2d\xdc\x27\xbe\xeb\xb3\x56\xc3\x5d\xad\xfe\xf0\x05\xa7\xf8\x78\x49\xa9\x3f\x5e\x72\xa9\x85\x41\x6a\x86\x43\x29\x37\x00\x77\xcc\x08\x06\xbe\x51\x5a\x7f\xc2\xb6\x01\x0c\x08\x2a\x6a\x27\x14\x34\x12\xa4\x2a\x42\x9f\xdf\xe2\x76\x98\x62\x10\xe6\x33\x3e\x97\x74\x5f\xe1\x33\x98\x2e\x0f\x66\xea\x9c\xf2\x69\xf3\x91\x4d\xed\x6a\x92\x5a\xcd\x72\xf2\x9e\x6a\x78\x7b\x4f\x49\x2c\x32\xe6\x8f\xfe\x12\x63\x72\x9a\x1e\x50\xd2\x03\x0a\x32\x7b\xdf\xb7\xc5\x1a\xcf\x11\xe9\x82\x44\x1f\x30\x36\xb2\x99\x0b\x87\x08\x73\x96\x9a\x0c\x84\x79\xe0\xa5\xd8\xc6\x00\x3c\x7c\x6a\x57\x4f\xd1\xb2\x82\x69\x58\xb8\x68\x3d\xc0\x21\xcb\x93\xfe\xda\x4a\x9a\xac\x55\x0b\xd2\x8b\xb8\x21\xb9\xe3\x9a\x33\x7c\x8a\xf4\xed\x72\xcb\x31\xbe\x70\xa8\x8a\x4e\x9e\xa6\x83\x18\xbd\x56\x7f\xad\xdd\xea\x47\xa5\x12\x44\xb8\x4e\x28\x4c\x97\x3a\xf0\xbd\x65\xa7\xd8\xa5\xc3\xd2\x00\xcb\x26\x2b\x20\x96\x3e\x30\xbf\x1b\x28\x54\xc8\x97\x03\xcf\x2a\xfc\x27\x80\x93\xf3\xcf\xab\xa6\xff\x6f\x29\xd5\xe7\x6b\x70\x03\x70\x64\xbd\xa1\x61\xce\xe7\xd1\x92\xea\xca\x88\x3e\x67\xf3\xfd\x40\x91\x35\x7f\x84\xc3\x1f\xcd\x36\xe0\x41\x92\xa8\xca\x01\x54\xf2\x34\xec\x93\x39\x75\x99\xe8\x7b\xba\x43\xf7\xe3\x9a\x02\x5f\xcb\xa1\x3b\x2c\xc2\xd8\x1a\x72\xec\x10\xd2\xc2\x0f\xe3\x6b\x95\xb8\xeb\x27\x59\x1e\x6d\x02\x08\x23\x2d\x6e\xbe\x1d\xe9\x1a\xbc\x03\x49\xb2\xa8\xd2\x95\x66\x62\xa9\x42\xb5\x22\xae\x16\xde\x9e\x6a\x5f\x0a\x55\xbd\x22\x95\x3e\xad\x22\x5b\x3e\xb7\x91\x1b\xfd\x18\x18\x4c\x58\xe2\x7f\x44\x23\x8e\x4d\x77\x23\xf0\x9d\x04\xff\x48\x53\x7a\xc0\x3d\x53\x1b\x4d\x0e\xd7\x4b\x8d\x83\xb1\x3a\x56\x38\xd8\x82\x6f\x2c\x1d\x4a\x1f\x96\x9e\x7d\xef\x43\x45\x6e\x90\x98\xb5\xc8\xc4\x03\x10\x64\x8a\x22\xe2\x56\x31\x54\x69\x73\xa7\x9f\x76\x6d\x0f\xae\xcf\xef\x8f\x4a\x5f\x0f\xba\xd9\x7a\x2a\x88\x00\x31\x73\xea\x60\x46\x6f\x63\xb9\xf0\x4d\x0d\x41\xb3\x9a\x6f\xce\x55\x0f\x81\x52\xce\x1f\xc1\xc0\xa3\x54\xf1\x51\xe9\x71\x58\x68\x6f\x14\x31\x95\x6a\xf4\x84\xfb\xa8\xa5\x3a\xdb\x0f\x87\x26\xb5\x79\xce\xaa\xaa\x2e\x91\xe0\xb3\x35\x97\x95\xe8\x61\x75\x44\xac\x86\xe8\xf1\x75\x12\xb5\x17\x6a\x16\x6f\xcb\x6e\x7e\x6e\xb1\xf2\xe7\x9f\xac\x96\x03\x3b\x65\xa5\x1a\xd4\xdb\x81\xb7\xb4\x9c\x6b\x11\xdc\x7c\xf5\xa2\x40\x56\xdc\xc7\xac\xc3\x65\xbd\x4a\xae\x9b\xcb\x43\x55\x1b\x90\xa5\xdd\x03\x15\x33\x6d\xef\x79\x40\x3b\xcb\xbc\x0b\xd9\x4b\x8d\xf8\xb7\x9a\x2d\xa9\xc0\xc1\x60\xe0\x84\x38\xa3\x44\xeb\xef\xa2\x1d\x04\x2e\xfa\x3f\x6f\x63\x81\x98\x98\x2c\xb3\xf1\x90\x93\x3d\xae\x77\xdc\x35\x41\x37\x5b\xac\x5f\x7a\xa9\x9b\x25\x63\x3b\x4a\x36\x66\xfc\x02\xc4\xa9\x89\xb2\xe7\x5b\x9a\x47\xec\x4c\xed\x08\xec\xaf\x6d\xce\x54\xa6\x42\xf7\x0c\x22\xaa\xbc\xa5\x7b\x08\x3e\x68\xfc\xe8\xe1\xf9\xa5\xae\x8d\x93\x62\x38\x9a\xf1\x07\xcd\x57\x69\x17\x01\xef\xf8\x45\x95\x69\xfe\xc3\x46\xb3\x74\xe5\x9a\x59\x03\x5d\x3d\x96\xb5\xa3\x07\x16\x89\xbb\x36\x22\x83\x71\xb2\x2e\x78\x55\x47\x00\x5b\xcd\xbe\x10\xc0\x3a\xba\x82\x22\x8a\x92\x02\x3e\x2b\x52\x0e\xef\xd0\xb6\xe7\xeb\xb6\x73\x97\x28\xb5\x3a\x3e\x14\xb9\xaf\xba\x21\xee\xb7\x39\xe4\xd9\x24\x8c\x22\xca\x75\x33\xb3\x49\xa0\xdc\xf9\xeb\xaa\x9e\xf3\x0d\xd5\x5b\x9d\xa7\xa6\xf2\xac\xf6\x91\xa5\x42\xc8\xf6\xaf\x68\xc4\x10\x85\xbd\x1b\x28\xf0\xe2\x19\x3a\x8c\x90\xed\x3e\x4a\x24\x27\xce\x38\x55\x06\x9b\xff\xa8\x54\xdc\xd7\x17\x60\xf4\x44\x3f\xcc\xc3\xb9\x6e\x07\x5e\xd8\xe9\x82\x6a\xc5\x3d\xa9\x82\xe8\x6d\x53\x5f\xca\x1d\x9a\x78\xa8\x6a\xcb\xef\x97\xaa\x01\xe7\x0a\xcd\x12\xbe\xf7\xb8\x02\x52\x0f\xc2\x8c\x74\xdc\xb6\x20\xb3\xaa\x0f\x4a\xe0\xb8\x95\xad\xe6\x05\x6a\xc4\x1e\x87\x71\xe8\x38\xa3\x5e\x74\x62\xc2\x34\x12\x52\x4a\x6a\xe3\x2e\x4d\x4d\x0c\xb3\xc1\x59\x57\xed\x05\x9c\x6e\x03\xf0\x2c\xcf\x3f\xae\x50\xfa\x8f\xb0\xdb\x05\xc0\xae\xc4\x45\x2f\x28\x6a\x82\xa3\xa5\x6a\xde\xe2\xd7\xc1\xb4\xde\xa7\x31\x75\x42\x48\x95\xad\x71\x00\x68\xa7\x40\xbf\x9d\xb4\xb9\x34\x09\x0b\x93\xea\x53\x8a\x91\x27\x5d\xf5\xa8\xdc\x0b\x14\x95\xea\x35\x57\xfb\x18\x99\x28\x42\xaf\x10\x3c\xca\x1b\xaa\xb3\x97\x45\x26\xf9\x1f\x02\x2f\x35\x7b\xa9\x2e\x6b\xbc\x1e\x0e\x6c\xb6\xb3\x7a\x9c\x9a\x8a\x2f\x3c\x17\x7e\x7f\xe1\xe8\xf1\xa0\xdb\x7b\x8a\x04\xf0\x0a\x4c\x22\xfc\x9e\x2b\x4a\xd1\xee\xba\x46\x3b\x8e\xac\x8d\x3a\x4a\xf4\xe6\x52\x7d\x6c\x14\x89\xf5\xc8\x26\x29\xd8\x99\x6b\x81\xb7\xe4\xf1\xe9\x3b\xb0\x45\xb6\xf5\xfc\x3a\x7d\xaf\x96\xc7\x1c\x6e\x26\xb3\xaa\x8d\x9e\xc9\xe0\x9c\xc0\xad\x6b\x67\x86\xc4\x14\x33\x41\xa8\x42\x1e\xa4\x07\x1f\x57\xa9\x6a\xae\xff\xe1\x87\x6f\x95\x4a\xdd\xec\x7b\x38\x9a\x91\x67\xba\x83\xc8\x53\x40\xc7\xd5\xb7\x4b\x2b\x05\x2d\x63\x07\x07\x5a\x16\xe6\xfe\xdb\x34\x62\xd8\xb6\x6f\x04\x8a\x61\x1b\x32\x03\x38\x83\x76\x50\x7b\x21\x7f\x20\x50\xdc\xf9\xc7\x94\x42\xcf\x87\x8d\xf2\xdb\x81\x03\xdd\x6c\x23\x1c\x8f\xc5\x3a\xc2\x09\xfa\x48\xf1\x82\x7d\xe4\xc2\x19\xea\xe1\x46\x00\x20\x4d\x9a\x37\xf0\x9a\xae\xe9\xdd\x9f\x7c\x9d\xde\x67\xdc\x58\x0d\x6d\x12\x25\xc3\xb0\x4f\x19\xc1\x6a\x21\x39\xd5\xc8\x17\xfc\x8d\x66\xbb\x2e\x56\xb2\x70\x10\x9a\x74\x73\x27\xbd\x88\x10\x44\x68\x65\xc0\x6f\x63\xe1\x49\xb9\xb0\xe3\xc8\xdf\xce\x04\xaa\x83\x04\xd2\x32\x78\xa2\x6d\x50\x7f\x42\x6b\xe0\xb7\x34\xf2\x71\x94\x86\xab\x79\x36\xeb\x69\x64\x41\xd4\x09\xb7\xf9\x0a\xf6\x2e\xdf\x60\xf2\xc4\x56\x6c\xa1\x72\x5d\x9e\xef\x7e\xf6\xb3\x7b\xbd\x9c\xf6\x69\xac\x60\x2c\x24\xee\x1c\x44\x1c\x7c\x1e\xe3\x86\xa8\x00\xfd\x2a\x4e\xdf\xe6\x39\x9f\x7e\x51\x81\xc4\xad\x40\xf5\xce\x23\xc5\x05\xb7\xe0\x76\x0d\x05\xa5\x08\xd3\x9b\x31\xee\xe1\xf9\x67\xbb\x45\xba\x62\x18\x45\xe5\x0a\x0a\x0e\x01\x73\xa9\x91\x3b\xaf\xdc\x43\x6e\xb1\x21\xbe\x3d\xe7\x25\x9d\x52\x30\xd2\x53\x4d\x5a\x9c\x83\xd5\x7f\x4f\x56\xa3\xc8\xb2\x48\xf4\xe7\x78\x2f\xee\x70\x47\x1e\xe8\x22\x22\x1c\xbe\xc1\x8a\xc0\xc3\xfc\x1f\x78\x7d\x69\xa0\x52\xc4\x93\x60\xda\x79\xc4\x66\x05\x1b\x78\xfb\xd4\x43\x0d\xaf\x68\x4c\xf7\x5f\xd0\xe8\xc2\x40\xdf\x09\x7c\x06\x88\xbb\x97\x85\x48\x47\xc9\xba\x3f\xa8\xb5\x0a\xb6\x31\x2e\x40\x3a\xa1\xda\x30\x8f\x20\x43\x42\x82\x06\x0e\x5e\xbd\xb6\x99\xf5\x53\x33\x61\x3f\xcc\x35\xc8\x78\xb4\xd2\x05\xc7\x85\xd2\xb7\x26\xb3\x91\xcd\x32\xc4\x03\x4b\x4e\xe4\xca\xe3\x53\xce\xab\x9c\xd3\x7a\x68\x37\x58\x11\xc2\x81\xef\x01\xab\x12\xe6\x6e\x5f\x9a\x0c\x33\xfb\x98\x87\x85\xfd\xce\x67\xa8\x7d\x96\x56\x9c\xf9\x0c\x8b\xb7\xe1\xe5\xaf\x61\x99\x3a\xe5\xd9\xea\x20\x11\x42\x51\x87\x94\xfa\xea\x53\x3d\xc5\x94\x01\x53\x05\x8f\xf5\x01\xde\x0c\x8e\xf4\x51\x55\xde\xba\xa3\x00\x3d\x5c\xb3\xc4\xeb\xef\x9a\x2a\xb6\xd8\xd9\x9e\x1c\x56\x2b\x42\x6d\x23\x85\x9c\xce\x56\x6a\x1b\xa9\x6e\x3d\xe9\xb0\x0f\xaf\xe4\x66\x92\x64\xe0\xee\x11\xbe\x0c\x25\x94\x7e\x53\x53\x75\xb5\x82\x6b\x92\x89\x8d\x31\xf2\x02\xf5\xd5\x18\xe0\xb6\x7c\x6a\x1a\xae\x5b\x6a\x22\xc3\x6a\x01\x83\x08\x37\xa9\xe9\x62\xae\xee\xf4\xf8\x01\x0d\x05\xac\xc2\xb6\xde\x53\x1a\xa7\x6c\x87\x5e\xaa\x0b\xcb\x9b\x9b\x4f\xf8\x26\xf0\x76\x34\xb7\x63\x52\x9b\x29\x52\x0b\x6b\x25\x7d\xa3\xd5\xaa\x96\xb6\x51\x35\xb4\xc7\x14\x55\xf7\x31\xa5\xb7\x47\x0b\xa4\x1f\xda\x38\x57\xad\x19\x37\xb1\x9b\x70\x88\xa2\xf9\x18\xae\xc1\x91\x46\x9a\xee\xb9\xc5\xee\x24\x89\x9a\xb4\xde\x57\x55\xd5\xf0\xaa\x9b\xa4\x55\x93\xe5\x36\xf6\xb0\x10\x98\xef\xb7\x4b\x25\xf6\xf2\x36\xea\x68\xbe\x82\x34\x49\x6d\xee\xbb\xeb\xe0\xcc\x71\x27\x1e\x9c\x51\x66\x57\xc2\xaa\xbf\xe1\xe5\x83\x4d\x9a\x8f\x56\x92\x22\xe6\x3c\xb6\x40\x0b\xbc\xe7\x7a\x5b\x01\xa4\xdf\xa6\xe5\x2d\xb5\xc0\xb6\x8d\x3e\x19\xd9\xc8\x20\x2a\x56\x32\x6a\x4e\x55\x40\x63\xe2\x35\x31\xdb\x81\x03\x6e\xd7\x7b\x38\xfd\x85\x36\xee\xc4\x41\xd2\x2f\x9c\x56\x3c\xf7\xc8\x68\xd9\xb0\xfb\x1e\xe7\x53\x6d\xfb\x1d\x5e\x09\xf6\x8c\x5f\x52\xcf\xfc\x9d\x29\xd9\x7d\xc9\x8a\x54\xdf\x45\xa1\xf6\xcf\xfc\x2c\xce\x3c\xc1\x70\xd5\x24\x28\x9a\x9d\x4b\x4b\xdd\x51\x92\x2b\xa2\xdb\x33\x8a\xe8\xb6\xd9\x08\xb8\x3c\xdf\x4d\x6d\x66\xc7\x42\xb4\x85\x18\xe9\x22\x6d\x01\xbe\x6e\x85\x23\x0c\x53\xb3\x0e\xff\x5b\x78\x6f\x3b\x4e\xb4\xf0\x58\x63\xc7\x2d\xcf\x77\xb3\xdc\xc4\x83\x19\xff\xb5\xff\x77\xa9\x64\x0a\x81\x36\x16\xb4\xab\xcf\xb7\xf7\xa3\xa4\x18\x6c\x49\xe6\xd6\x38\xa5\x5a\xb4\xc5\x23\x33\xc9\x93\x49\x47\xed\x6d\xa5\xcb\x70\x49\xb5\x24\xf6\x93\x64\x4d\x01\x2a\x6e\x6a\x40\xc5\xcd\x72\x9f\x5b\xcb\xc9\xea\xea\x63\xb4\x0e\x91\xc1\xf8\x12\xad\x37\x61\x6c\x51\x21\x17\x2a\x13\x70\x66\x59\x65\x13\xd3\xbf\x7d\xda\xd9\xbf\xe0\x95\xde\x9f\x13\xfa\xdd\x6b\xe5\xf6\x9f\x73\x1a\xc4\xb4\x03\x91\x5a\x81\xd8\x14\xbe\xf4\xaf\x94\x90\xd6\x0d\x38\x06\x22\x72\xab\xf8\xe2\x7d\x1d\x06\x6c\x00\x1d\x0f\x42\xe0\xb6\x43\xbe\x69\x01\x4d\x53\xf3\x7c\x5f\xfa\xc0\x6b\xcc\x90\xc8\x49\xb1\x4b\x0c\x1b\x7e\xbc\x31\xe4\x55\x30\x66\xc6\x93\x22\x43\x2d\x4e\xc0\x89\x3e\xf8\xbe\xaf\xc4\xcc\x2e\xb4\x40\x99\xbb\x99\x7d\xa5\xe3\x61\x0f\x00\xdd\xf1\x75\xe0\x65\x32\xd3\xd5\x24\xc2\x7c\x21\xdc\x3d\xa1\x4b\xe0\x27\x82\xad\xdf\xfb\xdc\x62\x37\xfb\xf9\x49\x8d\x5a\x5e\x4d\xc9\xf7\xd4\x3a\x18\x87\x31\x8e\x02\xd6\x31\x99\x2a\x3e\xde\xb7\x68\xf8\xb1\xf3\x76\xf7\x14\x43\xe6\x65\x1d\x86\x1f\x51\x5a\x65\xd9\xc4\xa4\x6b\x4e\x18\x10\xa9\xee\xb3\xba\x0d\xe5\x8a\xa6\x8f\x7d\xd8\x28\xa1\x53\xbd\xda\xbe\x02\x55\xa6\x19\xc5\xa3\xfc\x15\x1a\x46\xa1\xa0\xee\x38\xda\xec\x13\xae\xbc\x59\xed\x16\x86\x1f\x6b\x94\xad\x53\x61\x3a\x70\xc0\x35\x28\x6d\x69\x30\xfe\x5c\x77\xe1\x10\xb9\xbc\x22\x79\xd9\xd1\xd2\x8a\x0a\xab\xa5\x68\x7e\xbf\x16\x68\xdc\x16\x7c\x09\xac\xdf\x0f\xc8\x7a\x60\x00\x6f\x29\x34\xdf\xf9\x52\xab\x93\x97\x35\xba\x21\x1a\x4d\xd1\x71\xfd\x8c\x22\x0d\xc8\x6d\x14\xd9\x7e\x5e\x18\xb4\x0f\x4b\x42\x4f\x61\xf9\x4e\x35\xe6\xfe\x85\xa5\x6e\x66\x01\x68\x15\xb5\x7e\x45\xed\xf4\x95\x16\xfc\x52\x77\x25\xa2\x26\x8d\xc3\xf3\x9c\x81\xba\x5a\xa3\x07\xf7\xfd\x8e\x7f\xdd\xd2\x0b\xd1\x9d\xa4\xe1\x7a\x18\xd9\xa1\xc5\xe0\x33\xbc\xb8\xac\x41\x90\x7c\x52\xe1\xa1\x22\x7b\x9b\x10\x49\xa9\xef\xe0\xd5\x19\x61\x99\x43\x55\x29\x4b\xd6\x6d\x1a\x27\x29\xab\xab\xe3\x64\x7f\xa4\x4a\x27\x37\x31\xc2\x2c\xbe\x86\xf5\x2a\x4a\x6c\x2a\x7f\xac\x73\x06\x8f\x82\x1f\x55\x7a\xb6\xc8\xc6\xa4\xa6\x8a\x13\xa8\x21\xce\x15\x25\xab\xef\x15\x5e\x32\x25\xcb\x72\x4b\x85\xb8\x8c\x6f\xc1\xd1\x74\x1b\xcb\x1c\xee\x7b\x93\x7f\xec\xf0\xfc\x8b\xdd\x28\x5c\xb3\x0a\xc8\x73\xb3\xf4\x22\x56\x37\xdb\x32\xa3\x8e\xfe\x19\xd5\x2b\xbc\xcc\x75\x85\x56\xbc\xab\x41\x3a\xef\xaa\x12\xe3\x04\x9d\x3a\x99\x02\x47\xb1\x33\xca\x37\x81\xeb\xbf\x35\xb1\x19\x9b\x58\xe8\x54\x70\xce\x6c\xeb\xa9\x43\x67\xdb\x54\x81\x57\xa3\x88\xc9\xa8\x16\x75\x92\x68\xc1\x99\xd1\x86\xce\xcd\x42\x37\x8c\x5f\x2e\x52\x79\x07\x51\xf4\xe9\x38\x26\xbe\xbb\xf8\x02\x24\x90\x4e\xb6\xa5\xbe\x46\x26\xe6\xb6\x04\x64\x77\x6f\xa9\x4c\xef\xad\xd2\xfb\x60\x7d\x93\x0e\xc2\x64\xdd\x64\xfd\x22\x32\x69\x47\xb1\x50\x9f\x57\x6d\x09\xe7\x5d\x75\x68\x23\x49\xd3\x4d\x67\x74\x44\x0f\xa6\xfa\x1d\x54\xde\x81\xa9\x10\x3d\x0b\x15\xa2\xd8\x7c\x0f\x16\x24\x12\x2c\x9d\x69\x65\x49\x98\x60\x0d\x4b\x42\x8e\x22\x1f\x56\xfc\x5c\xcf\x67\x87\x39\x57\xef\x28\xa2\xfd\xe4\xa2\xc9\x03\x21\xf2\x45\xed\x6b\x32\x3b\x34\xb2\x08\x1f\x2a\xf3\xbb\x31\x4a\x22\x9b\x99\x88\xb7\xa2\xe8\x4f\x54\x3f\x86\xb0\xf2\x96\x6a\xac\xf9\x40\xbd\xc5\x7f\xfc\xf7\x7f\xa9\x53\x1d\xd3\xb0\x96\x17\x03\x9f\xdf\xba\xa8\xfe\xea\xb9\x43\x87\x66\x3d\xac\x69\x54\x2a\x66\x34\x16\x8b\xe3\x05\xaf\x32\xc0\x6f\x96\x3f\xf3\x89\x0d\x44\xc9\x60\x25\x0d\x89\xee\xf6\x05\xd7\xaf\x7b\x5c\x81\x30\x6f\xeb\x55\xba\xad\xd1\xce\x42\x61\xac\xc9\xed\xac\x6a\x4c\xd9\x36\xad\x29\x22\x74\x1c\x35\xc3\xe3\x3d\x8d\x4d\x39\x5f\x3e\xa9\x1b\x6b\x07\x45\xdf\x3e\x56\x85\xc2\x6f\xa8\x04\xf1\x59\xc5\xd7\x76\x02\x33\x29\xb8\x6c\xfa\x41\xb8\x31\xf7\xc8\xef\x71\x99\x54\x7f\xb8\xed\xa4\x0e\x77\x18\xc0\x9b\x9c\xf7\x01\xde\xed\x5d\xcd\x20\x70\xa2\x54\x00\x2a\xa6\x1e\x83\xe7\xc0\x3c\xb3\xfc\xd5\xaa\xa2\xb6\x6e\xd2\xd0\xe6\x9b\x3b\x55\xf6\xe8\xb4\x6a\xf3\x3a\x87\xb3\x45\xba\xde\x3c\x95\x1d\x80\x16\x52\xd4\xa5\x33\x87\xff\x48\x3b\x7f\xff\xab\x4a\x53\x4a\xc5\x73\x51\x88\x70\x58\xbf\x4b\xf4\xf4\x5b\x52\x71\x26\x4c\xfb\xa9\x59\x05\x34\x4a\xe8\x44\x15\xd5\x7d\xa7\xe7\x0b\x1d\xb7\x5d\xd0\x13\x27\xf1\x6a\xd8\x77\x92\x18\x48\x5c\x7c\x49\x69\x02\x7f\x49\x63\xb4\x92\x68\x40\xba\x13\xce\x44\x7d\x35\x50\x46\xe8\xbe\xe2\xb9\xfe\x6a\xa9\x0c\xd2\xfd\x86\x2f\xbf\x7f\x3f\xf1\x11\xc5\x83\x5a\xe2\x9e\x0e\x70\x49\xe2\x2b\x9c\xf4\x24\x07\x0c\xdb\xb5\xee\x1d\x38\xc0\xa9\xb8\xbb\x2a\x46\x3f\xae\x9c\xab\x41\x38\xcc\x68\x20\x00\x33\xba\xa1\xba\x32\xfe\x44\x77\xc5\x5d\x6b\xed\x31\x1c\x59\x93\x86\xf1\x90\x23\x00\x01\x6e\x7b\x18\xc9\x79\x85\x9b\xaf\x9c\x50\x13\x0e\xe3\x5d\x95\xc9\x10\xf1\xba\xea\xa1\xc0\x2f\x34\x43\x90\x3d\xec\xe8\xbb\x5a\xe8\xec\x28\x81\xe9\xf0\x78\x9d\x9e\x2f\x15\x5f\x50\xb2\x95\x6f\xe3\xc8\xc3\x9c\xd5\x53\xd0\xab\x76\x83\x28\x43\x85\xa4\xb2\xfa\x75\xc9\xf2\xfa\xee\x0c\x3e\x98\x19\xa4\xa0\xa5\x07\x8f\x62\xc1\x0b\x47\x88\x37\xb7\xa8\xe0\x60\xeb\xce\xf6\x74\xcd\x2e\xb7\xf1\x13\xca\x9a\x23\x61\xaf\x1c\x00\x91\x4e\x00\xb9\x03\xac\xc2\x3d\xa5\xc8\x38\x37\x55\xb6\xf1\x21\x1c\x59\x6c\xb8\x6f\x60\x4a\x90\x40\x67\x65\x2c\x38\x4d\x6f\x96\x8a\x73\xfd\x14\xd5\xa6\x90\xe0\xdb\x41\x9b\x1c\x2e\xe1\x0d\xec\x3b\xe1\x83\x55\x01\xde\x23\x5a\x1e\xf8\xc5\x6d\xd3\xad\x3e\xef\xf2\xfc\x41\x82\x68\x2a\x46\x79\x07\xaf\x70\x71\xec\x11\x77\x46\x17\x71\x66\xf3\xdc\xf9\xd8\x88\x00\xfe\xb4\x54\xad\x5d\x28\x60\x73\xea\xbc\xe1\x7b\x2c\x1c\xc2\x59\xd7\xf1\xb8\xa8\x3b\x4a\x27\xff\x4e\x13\xd1\xb4\xbc\xd4\x4d\xad\x71\x6d\xc7\x3e\x98\xa3\x57\xe4\x1b\x05\x5d\x18\xa6\xa6\x6f\xa9\xc9\x69\x46\xb5\x41\x9d\xac\xd9\xc0\x3b\xba\x41\xf2\xfc\x27\x68\x55\x25\xc3\xd4\x8c\x95\x36\xfe\x4d\xad\xa6\x75\x53\xf3\x90\xc5\x79\x12\x77\x94\x52\xf4\x45\x55\xc6\xba\xa8\xd2\x46\xe3\x30\xcb\xcd\x9a\x8d\x19\xd6\xeb\x53\x9f\x0d\xf4\xdc\x92\x4b\x87\x58\xcd\x2d\xc2\x0a\x09\x82\xba\xf0\xc1\xba\x89\xc6\x49\x96\x3f\xa6\x0e\xff\xc0\x03\x96\x9f\xe8\x29\x10\x56\x83\x75\x75\xd1\xdb\xc9\x6a\x12\xb1\x63\x99\xea\x0c\xef\x0a\x1a\x51\x01\xff\xaa\x9e\x81\xd9\x9e\x17\xab\x9e\x9d\xaa\x8c\x26\x37\xff\x08\x35\x92\x96\xe5\xb9\xdb\x52\xcd\x5e\xe8\xe6\x45\xba\x66\xe1\x58\x21\xbf\x8f\xf0\x89\xaf\x95\x72\x99\x19\x50\x8a\xa8\xf2\xfc\x3c\x22\x13\x09\x10\xbe\x6e\xb8\x6d\xd5\x0a\x9a\x90\xda\xa2\x23\xe1\xfc\x9a\x2a\x18\x7c\xcd\xc5\xef\xe3\x22\xb3\xc5\x78\xd6\xc7\x8e\xb3\x80\x49\x09\xe3\x84\x2a\xce\x68\xaf\x51\x53\x70\xad\xa6\x26\xe3\xac\xb5\x74\xa1\x2a\x4a\xf1\x8b\x2d\x82\x57\x4b\x5e\x7d\xab\x8d\xc3\xc1\x9f\xbb\x93\x84\xba\xcd\x69\x8c\x1c\x87\x92\x23\xf6\xb9\xd0\x46\x4f\x68\xc7\x93\x28\xd9\xf4\x89\x43\x47\xcd\x58\xbd\x95\x50\xb1\x34\x1f\x69\xa1\x3b\x0a\x73\xe6\x3b\x10\xd1\x66\xaa\xc5\xc2\xb6\x7e\x1d\x03\xe1\xca\x9e\x6e\x9d\xbd\x51\x2a\x9d\xca\xaf\x2b\x97\x61\x12\x66\x79\x12\xe1\x2c\x42\x42\x11\xad\x1a\x18\x4b\x66\x67\x90\x6e\x9c\xad\xa5\x6a\x71\xd8\x32\x1b\x43\x7d\x5e\xb5\xa3\xd0\xb7\x78\x91\x5e\xa7\xb1\x63\x72\x9b\xe5\xbb\xb4\xdc\x1f\xcc\xbe\x93\x5e\xaa\xd6\xb0\x34\x16\x57\xd6\xd1\x41\x1f\xab\x35\xac\x18\xa8\x97\x1c\x27\x88\xcf\x1b\xa2\x24\x2a\x8c\x22\xfe\xb8\x1d\x26\x36\x9b\xf5\x2b\xf8\x34\xf6\x13\x9c\x1f\xc6\xa6\x03\xeb\x76\x5e\x11\x9b\xed\xe9\x35\x0b\x46\xdd\x89\x4d\xfb\xa3\x28\x81\x77\xb9\x15\x11\x0d\xff\x8e\xc1\xea\x78\xf7\xa3\x4a\x9f\xf3\xa3\x4f\x50\x01\x58\x73\xd1\x05\x7f\x86\xc6\x0e\xd3\xfb\x9e\x5a\x72\x75\x94\xe6\x78\xb2\xa9\x99\xc1\x51\x90\xe0\xeb\x5a\x13\xd7\xab\x30\x53\xad\x7c\x09\x4a\x17\xa4\x18\x0c\xa2\x6a\xeb\x7e\x61\x41\xd3\x66\x2f\xa9\x9e\x76\x9e\xc1\xf0\x37\x8b\x84\x15\xee\xa5\x80\xd1\x59\xac\x2f\x3a\xc9\xff\xe8\x19\x88\x06\xbb\xe8\xfb\x30\x53\x3b\x7b\x0a\xa1\x04\xe1\x52\xa4\x2d\x1e\x10\x08\x00\x67\xc7\x3d\x05\x37\x79\x8f\x8e\x4a\x41\xa4\xd2\x62\x10\x4b\x59\xf9\x19\xfc\x81\x52\x3a\x6a\x91\x21\x09\x87\x36\xee\x13\xc9\x04\xf3\x71\x38\xa2\xaa\xea\x49\x80\x69\xfa\x5f\x1a\x75\xc1\x03\x07\x96\xbb\xab\x36\xcd\x89\x50\x03\x16\x43\x9c\x12\xef\xd9\x35\x09\xdb\x97\xe7\xbb\xd0\x57\x9e\x55\x80\xd4\x63\xe4\x85\x68\xa2\x40\x91\x2a\xf4\x32\xa8\xb3\xbd\x16\x90\x79\x7f\x64\xa2\xc8\xc6\x43\x0b\x9c\xb2\x54\xa0\xe8\xc5\x71\xc8\xdc\xc3\x49\xc9\x14\x44\xe5\x1e\x37\xe5\x2f\x52\xc2\x06\x25\x96\x69\xe9\x13\xa5\xd7\x02\x05\x0a\xb8\xa2\xfa\x94\xc6\xa6\x3f\x0a\x63\x9b\xed\xaa\x3e\x27\xe4\x33\xfa\x64\x60\xb9\x17\x44\x74\x1f\x29\x62\xe9\xb3\x70\x93\xe0\xc1\xff\x25\x12\xb1\x7c\xa3\xd4\x75\x78\x25\x09\x99\xb2\xef\x6b\x77\x9a\x90\x7b\xaa\x5f\xc6\xc0\x9e\xad\x91\x6d\xc2\x38\x00\xbd\x09\x06\x55\xf8\xb0\x53\xec\x5a\x2c\xba\x07\xbe\xd3\xf5\x3f\x7b\xa0\x08\xb5\x6e\xd0\x59\x02\x57\x8b\xbb\x14\x45\x36\x9e\x1e\x08\xc7\xe3\xc3\x16\x36\xc2\x85\x6e\x3f\x89\x07\x76\x1c\xb3\x8f\x2d\x80\x7c\x25\xc6\xdd\xd4\x93\x58\x5c\xec\x2a\x2e\x15\xc1\x3a\x28\x3d\xad\x0b\x4a\x9c\x23\xb5\x36\xcb\x0d\x51\x05\xe0\xef\xb9\xa8\x1f\x78\x39\xd5\x33\x5a\x36\x8a\x73\xf7\xce\x9f\x76\x65\xd1\x73\x8a\xf0\xb5\x9f\xc4\x59\x31\x1e\x53\xe2\xcc\xe3\x67\x7e\x37\xf0\x85\xc7\xdf\x6d\xab\x0d\xd8\xf1\x4a\xba\x99\x68\xd4\x7c\x50\x63\xc0\x79\x52\x3d\xf5\x24\x32\x7d\x8b\x41\x81\x73\x8e\xa2\x13\x5f\xab\xc0\x63\xd5\x84\x51\x91\x5a\x66\x81\x65\x57\x2f\x50\x4d\x3d\xcd\x2c\xce\x0b\x4b\xdd\x55\xb3\x9e\x30\x5a\x4a\x9c\x06\x95\x56\x3b\x16\xf8\x01\x74\xc3\x67\x07\x73\x8a\xb6\x82\x11\x67\x4e\xde\xcb\x39\xca\xc8\xde\x22\x88\x60\x31\x46\x66\x9f\x9e\xfa\x3c\x49\x6a\xf3\x22\x85\x2a\x8b\xe7\x1e\x65\x73\xc1\x37\xc1\x53\xa1\xe6\xd7\x4d\x6d\x1f\x90\x3a\x6c\x8e\xf3\xaa\x67\xe1\xbc\xa2\x9b\x5e\x35\xe9\xe3\x34\xa6\x8c\x8a\x2c\x09\x26\x80\xa7\xdc\xde\xa3\x03\x03\x4b\xf3\x96\x02\x65\x9e\xa5\x18\x0c\xe1\xcc\x6b\x64\x17\x05\x53\x49\x67\xbe\xd3\xc1\xad\xb6\x08\x26\x00\x5d\x28\xb0\x0f\xbb\x08\x66\x05\xdf\x12\xaa\xcb\x42\xc4\xe0\x5d\xe0\xb9\x29\x21\x14\x70\xc6\xde\xa3\xfd\x85\x0c\xcb\xbf\x75\x55\x7c\x13\xe7\xe1\x38\xcc\xb2\x90\xf1\xa8\xd8\x4e\x37\x68\x64\xf9\xba\x81\x23\x78\xe9\xa5\xee\x9a\x49\x4d\xb2\xc6\xf9\x26\xe4\x4a\x50\xd5\x73\xc4\x60\xbf\xfa\x82\xb4\xa0\x2b\xda\x27\x6a\x2b\xa0\xf3\xd0\xa7\x8c\xbf\xa3\x95\x82\x95\x3f\x79\xaa\xfc\x11\xb7\x1a\xbc\xbd\xcf\x05\x7d\xec\x90\x60\xd5\xb0\x4b\x85\xd3\x91\x0f\x25\x45\x3e\xe3\xe5\xd1\x01\x24\x72\x9a\xd8\xce\x75\x69\xb2\xbc\x2f\x2e\x76\xc7\x26\x2e\x00\xf7\x59\x9e\x77\xde\xbf\x86\x5c\x37\x39\x29\x17\xbb\x83\x2a\x90\xab\xdc\x06\x95\x40\xbd\xac\x98\x3a\xbc\xfc\xec\xa0\x18\xaf\x90\x3f\x86\x67\xde\xd9\xf3\xf6\x7f\xdb\xd4\x3b\xc7\xcd\x9e\xbe\xc3\xf3\x5d\x33\x99\xa4\xc9\x24\x0d\x59\x70\x67\x91\xcf\x45\x34\x5b\xf0\x75\xb0\x57\xb1\x83\x3d\x46\xf3\x0f\x33\xca\x6e\x34\x52\x64\x8f\xd4\xd6\xd9\x4d\xf0\x08\xf8\x4e\xdf\x81\x1d\x15\x41\x4e\x9c\x12\x48\x07\x3c\xac\x9f\x75\xbf\xfa\x02\x3b\x9f\x7c\x50\x61\x91\xe5\x5a\xd7\x11\x40\x1b\x71\xa1\x68\xa2\xb0\x24\x6e\x52\xd9\x1f\xfe\xd4\x57\xd4\x36\x1a\x70\x02\xda\x75\xae\x57\x1f\x91\x04\xc8\x13\xca\x4c\xe5\x06\x0d\x49\x0b\x8e\xba\x88\x7e\x16\x8e\xc9\x05\x8d\x28\x45\x19\x43\x48\x8d\x3c\x1b\x66\x11\x9b\x8e\x66\x46\x66\x90\x8b\x64\x41\xfc\x33\x45\xf9\x33\x1d\x6f\x5a\x1a\xc6\x82\x8f\xd8\x24\x4e\xa2\x30\x1f\x85\xfd\x8e\xc7\xb5\x3d\x50\x15\x94\x07\x81\x50\x0a\x24\x1b\x76\x07\x8d\x31\x4b\x5b\xd3\xd2\xc4\xe0\xff\x9f\x3a\xf7\x70\xb4\x54\xbc\x29\xbb\x7b\x1e\xd5\x76\x9e\xf6\xb1\x14\xe4\x1e\x77\x70\xc9\x49\x64\xb3\x0c\x2d\xb0\x4e\x59\x63\x59\x40\x4c\x47\x14\x8b\x31\x90\xb1\x18\x92\x6f\x78\xac\x43\x11\x53\x22\x8e\x8f\x44\x16\x33\x52\x81\xce\x09\xcf\x58\x9b\x14\x69\xdf\x79\xb5\x8e\xf3\xd9\x9d\x42\x80\xae\x71\xb7\x46\x63\x8b\x51\x8b\xdd\x98\x24\x85\x3a\x3e\x3d\x73\x5f\xe1\xc2\xee\x2b\xf4\xf0\x24\x32\x31\x91\x62\x3b\x7b\x74\x47\x69\xb9\xee\xe9\x79\x84\x20\xa7\x1b\x85\x1b\x4e\x06\xc6\x8c\xcd\xab\xa4\x6d\xe1\x09\xd5\x3f\x3d\xf5\x5e\xec\x4f\xd0\xfe\x43\x85\xf0\xae\xa6\x8d\xf9\x56\x23\x1e\xaa\x42\x46\xb3\xba\x1a\xa6\x63\xaa\x14\x61\x07\x6a\x59\x60\xe1\x51\x54\x4d\x7f\x69\x31\x80\x49\x10\xc5\x70\xc5\xb5\x7e\xa7\x45\xb6\x23\x0a\x57\x7d\xd3\x11\x57\x8f\x69\x64\xa5\x92\xac\xb3\x70\x23\x93\xff\xb4\x17\x46\xdf\x8e\x14\x38\x9e\x7e\xae\xa7\x92\x52\x67\x79\x1f\xb3\x76\x2d\x31\x2e\x0a\x05\x47\x67\xbf\xf0\xb4\x3e\x81\x82\x04\x82\x99\x5d\x3d\x4a\x42\x3b\x49\xfe\x85\x43\xbc\x0f\x3b\x53\x1f\x0a\x01\xa1\xcd\x0c\x33\x40\xc6\x49\x5b\x35\x8d\x0d\x8e\x33\x54\x53\xb0\x32\x9e\x24\xed\x16\x78\x36\x35\xac\xd0\xee\xa9\xe7\x74\xda\x41\x6a\x2b\x42\x46\x43\x7b\x05\x5b\x62\x67\x4f\x09\xc8\x1d\xc1\x29\x09\x0f\x76\x5f\xaf\x0a\x6c\x98\x83\x0c\x38\x53\xe6\xc9\x20\xa9\x1a\xfc\xf8\x4b\x94\xc0\x43\x18\xfc\x58\x8f\xda\x8b\x78\xdf\x81\x80\x0f\xbb\xe6\x84\x4a\xff\x3f\x40\xce\x46\x20\x37\x0a\xa2\x91\xda\x41\x98\x13\x7d\x06\x72\xa8\xdb\xe8\xc5\x90\x56\x3f\x8b\x4f\x29\xd9\xe0\x45\x47\x72\x51\x4d\x97\x2b\x47\x2d\x2f\xd5\x04\x13\x60\x54\x6e\xc2\x89\xc2\x9c\x6c\xeb\xf9\xb0\xe8\x5a\xa0\xd8\xa7\xdf\xd3\x3e\x77\x67\xea\x57\x5c\x9e\xc0\x3b\x5c\xf2\x6d\xcc\xae\xbd\xd8\x1f\x42\xc9\x28\x4c\x28\x2b\xf3\xff\x8a\x49\xf6\xb9\x45\xe2\xcd\x5c\x63\xd3\x80\x03\xea\xdf\x28\x69\x89\x7f\xe3\xc2\xc7\x6c\x12\xa6\x61\x8e\x90\x54\xb0\xd0\x1d\xc5\x93\xed\xed\xea\xcb\xc9\xca\xce\xea\x1b\x84\x97\xce\x27\x95\x2e\xd1\xa2\x74\xd7\xce\x86\xdd\xa3\x53\x83\x9b\x48\xb8\x79\x56\x80\xbe\x34\x34\xc2\xd7\xd0\x4a\x35\xd7\x0f\x51\x9b\x10\x36\x6b\xef\x05\x70\xb9\x09\xee\xe2\xf1\x06\x36\x61\x79\xfe\xa0\x13\xc5\x05\x2d\x15\x4e\xee\x6f\x23\x78\xe1\x1b\xa5\xa7\x13\x56\x61\x1d\x10\x60\x5b\x48\xe7\x24\x2e\xa7\xf5\x21\xd0\xe0\xa7\x9b\x2e\xc8\x67\x33\x1c\x11\x48\x94\xec\x98\xd6\x88\xf4\xbc\x44\xd3\xe7\x3f\xd3\xeb\x7c\xf6\xb3\x0c\xf2\x61\x16\x49\xe9\x1e\xa8\xd6\x0d\x12\x1d\x6f\xb4\x59\xe0\xac\x6f\x63\x93\x86\x09\xe4\xbe\xa5\xd6\xe8\xcd\xf1\xc5\x5a\xd7\xd4\x24\x04\xba\x51\x1c\xc2\x8e\xa2\x4f\xd6\x98\x84\x9a\x75\x0a\x8b\x6c\xae\x7a\x0a\x64\xcc\x4f\xd1\xe4\xc1\x42\x7e\xb5\x54\x4e\x02\x83\xca\xb9\xe7\xa3\xf4\xfe\xdf\x9d\x46\x99\xe9\xf0\xbc\x53\xe9\xee\x28\xa4\x34\x58\xe4\xf9\x3a\xd0\x44\x57\x71\x9f\x70\x7e\xd5\x2f\xbb\x0a\xea\x92\xbf\x71\xfa\xba\x99\x59\x93\x4c\x9d\x48\xfa\xaa\x5a\xc9\xff\x16\x3c\xa6\x42\xda\x64\xfc\x63\x64\x27\xe1\xc3\x77\x20\x33\x85\x85\xb4\xa7\xe7\x01\xd4\xdc\xbf\xc8\x3d\x6d\xd8\xad\x12\x3a\xd3\x98\x8b\x18\x50\x65\x8c\x15\xfc\xdf\x65\x50\xa6\x7e\xbc\x8e\xd3\x26\xe0\xe6\x2d\x80\x8e\x45\x3d\xa8\x9a\x7f\xe9\x9b\xa3\x71\x74\x14\x2e\x2e\x67\xf3\x07\x08\xe2\x91\x5e\xfe\x9e\x6a\xd4\xf8\x4a\xa0\x76\x0d\x28\x32\x84\x07\x95\x56\x1f\x80\x29\x57\xc9\xd5\x53\x05\x68\x49\xa6\xbd\x0d\x43\x25\xe4\xb8\xd5\x9e\x45\xb2\x62\x7b\x4f\xcb\x66\x36\xfb\x64\x41\x4e\xf1\xb7\x72\x4e\x7b\x02\xac\x78\xc8\x2d\xd9\xba\xe0\x59\x03\x34\xc2\xa0\xdf\x6f\xe0\x61\x3e\xd7\x9d\x24\xd5\xe4\x2f\x7f\x02\x33\xd7\x13\x0a\x13\xb7\xba\x6a\x2d\x75\x62\x63\x15\xa1\xf3\x4c\x44\x8b\xab\x5f\x64\x6a\x29\xb2\x4c\x52\x26\xf6\xec\x43\xc3\xc8\x64\x19\x21\x47\x84\x05\x66\xab\x23\xb7\xe8\xdd\x3d\x97\xf0\x7b\x9d\x36\xa9\xfb\x84\x57\x2e\xf8\x77\xca\xd7\x5d\x0f\xed\x06\x87\xfb\x78\xeb\x53\xaa\xdd\x85\x8d\x07\xfc\x54\x3b\x0c\xb3\xc8\xe4\x49\x9a\xcd\xa8\xe2\xda\x17\xcb\x1a\xed\xa8\x52\x48\xbb\xaa\x46\x60\x60\xe3\x3c\x2b\x88\x40\x19\x93\xcb\x68\x19\xbe\x69\x84\xf2\xbf\xd0\x4d\xed\x2b\x26\x8a\x3a\x5a\x18\x47\x09\x1e\x5d\x52\x85\x03\xea\x89\x4e\xa2\xa8\x72\xe2\x9e\x13\x1b\x78\xa2\xf4\x64\xdb\xd7\x51\x50\xe2\x1b\x5a\xeb\xfc\x47\x95\x27\x25\xe2\x58\x49\x11\xc3\xfa\x02\x0c\xc6\xd8\x41\xbe\x69\xe3\x66\x0b\xe3\x7e\x6a\x0d\x8b\x0b\x48\xeb\xb0\x77\xa5\xbe\x5f\x7a\xea\x37\x82\x9d\x75\x94\xa4\x20\xbe\x5c\x12\xa5\xaa\x97\x6d\x14\xf6\xd7\x6c\xae\x40\xa3\x6f\xd2\xf9\xca\xd7\xaa\x68\x40\x44\xb1\x7d\x3e\x09\xa5\x84\x5a\xfd\x29\x5f\xbb\x00\x9c\x04\x26\x73\xca\xbb\x20\x2a\x46\xec\xf5\xbd\xd2\x1f\x50\x47\x69\x73\xe1\xac\xff\xa6\xe7\xf5\x48\x8a\x95\x9c\x04\xa6\xb9\x8f\x59\x05\xfe\x8f\x03\x63\x8c\x68\x86\xd5\x06\x10\xb9\x5d\x0d\x7c\x02\xe2\xa2\xde\xe7\xc7\xb1\x50\xf0\x26\x0f\x4b\xcf\x8b\xb8\xad\xe7\xdf\x7f\x90\xda\xcd\xd5\x42\x6c\xa5\x6b\x08\xa9\x26\x9e\x6f\x1c\xb0\x26\x0a\x57\x6d\x54\x6d\x40\xb2\x76\x8c\xe0\x2b\x35\x9a\xaf\x45\x9e\x23\x4f\xd2\x71\xb5\x14\x3b\x4a\x97\xec\x1b\x81\x4a\xd6\x7c\x43\x57\xd9\x6d\xcc\x39\x72\x6e\x8c\x51\xf9\xdb\x6f\xb5\x14\xbb\x5e\xec\xae\x59\x2a\x01\x76\x9c\x64\x20\xfa\xd6\xa4\xaf\xd2\xe7\xe3\x92\x4c\x08\x04\x61\x43\x11\xa5\xd7\x42\x40\xb8\xd6\x1f\x37\xb2\x8b\xcb\xf3\xcb\xdd\xd8\xa4\x69\xb2\xc1\xbf\xe4\xb8\x32\x9d\x7d\xbb\xac\x52\x6e\xeb\x36\x45\xf7\xf2\xf2\xbc\x4f\xff\x54\x8b\x4f\x3a\xd6\x9a\x18\xb2\x67\xbb\x63\x33\xe0\xf0\x03\x99\xd0\xef\x6b\x06\xcf\xef\xd7\xa5\xfd\x20\xae\x4e\xdf\x0f\x2c\x10\x8a\xe2\x7c\xdd\x96\x00\xc9\x72\xa3\x04\x49\x04\x47\xaa\x30\xa5\xe5\xe3\xba\xb9\x33\x96\xe5\x00\xcf\xe1\x07\x18\x1e\xbe\x51\xb9\x1f\x4a\x5e\xac\xdb\xc1\x9c\x7f\x94\x3f\xa5\x41\xe1\x6b\x7c\x4e\x68\xa9\xf1\x95\x8e\xe3\xc6\xd1\x23\xfd\x8d\x12\x68\x99\x98\x89\x4d\xf7\xf9\xec\xdc\xee\xa9\x32\xbb\x7c\x50\x32\x02\x03\x5f\x2e\xd0\x24\xaf\xa4\xf4\x8e\xde\xe9\xef\xd2\x3e\x93\xe6\x39\xda\x34\xfc\x57\x6a\xf2\xf6\x51\xde\x4d\x64\x54\x69\x71\xe3\x44\xd9\xde\x53\x18\xae\x0f\x34\x4f\xd8\x64\x92\x90\xbc\x62\xe5\x1d\xc8\x31\xa6\x80\x05\xf7\x14\xc6\x15\xec\xfa\x42\x0f\xe1\x33\x97\xfd\xb4\x18\xaf\x44\xdc\xea\xf6\x88\xce\xa7\x47\x27\x5a\x45\x65\x57\x92\x78\x20\x34\x26\xd8\x0b\x1f\x68\x5e\x05\x0e\x1c\x98\x3d\xae\x8d\xe6\x34\xe9\xf7\x8b\x89\x68\x9f\x30\x17\x51\xa0\x48\x61\x4f\xab\x34\x77\x18\x67\x79\x4a\x5d\x00\xd9\x0e\x05\xc5\x39\x5e\xea\x96\xc4\xc0\x37\x64\x70\x66\x1e\xef\xfa\x7e\xe9\x21\x41\xdc\x67\x28\x4d\x8c\xcd\xf6\xaf\xc5\xee\x6a\x98\x32\x5f\xbc\x1c\x21\xaa\xd6\x75\xa2\xa6\x25\x3c\x9e\x44\xa1\x89\xfb\x56\xe9\xbc\x72\x63\x15\xdf\x28\x93\x9e\x15\x2b\x2f\xdb\x7e\xbe\xab\x96\x33\x52\xdd\x06\xc8\x96\x30\x18\x90\x40\x7e\x58\x94\xb7\x14\x77\xc2\x2d\x45\x88\xb1\x17\xcb\x00\x71\xe9\x4d\x25\x70\xf4\x75\x65\xba\x26\x45\xbc\x39\xa3\xfa\xe8\x2e\x29\x0e\xc0\x87\xea\x04\xbc\xd0\xc6\x4f\xcd\x6d\xef\x1d\x95\x5d\xac\x91\xbd\x6c\x0d\x28\x96\x97\xba\xc5\x64\xa6\x7a\x72\x27\xdf\xea\xc4\x32\x8f\xd2\x7a\xc3\x93\xbf\xde\x70\xa1\x0e\x3d\xdf\x1d\xac\xf6\x3b\x9e\x41\x8e\x4b\xb3\x52\xda\xdd\xa7\x18\x06\xf3\xdd\xaa\x88\x74\x1f\x8e\x86\xeb\x20\xfa\xec\x67\x19\x07\x0e\xff\x07\xde\x08\xc7\x5d\xf4\xe3\xc3\xa7\xd9\x69\x14\xb9\x17\x1f\x0e\x5e\xc1\x5e\x11\xb1\x33\x72\xab\xf9\xcb\x02\xdf\xbe\x1d\x52\x78\x5a\xfd\xa1\x04\xe1\xd5\x0f\xf1\xb5\x3b\x33\xc3\x2c\x37\x0c\x16\x87\x13\x04\x1e\x3d\xb8\x4a\x27\x75\x0a\xf0\x8a\xf2\x60\x06\x61\x96\x25\x71\xb5\xa0\x90\xf1\x12\x65\x2c\x8f\x9e\x39\xa1\x54\x64\x4e\xb6\x24\x8e\x16\x40\x38\x3f\x09\xe3\x58\x62\x17\x59\xb7\x7a\x41\xb7\x4c\xf6\xb8\x88\x07\x86\x09\x0e\x25\x88\x56\x28\xd0\x4b\xaa\x30\x98\xce\x55\x0f\xc1\x95\xee\x40\x89\xdc\x22\xbd\x20\xf2\x54\x33\x07\xff\xd3\x2f\x78\x2a\x96\x5f\x3b\xc8\xc1\x9b\x6e\x53\xee\x8f\xe8\x65\xab\xa5\x21\x39\x01\x0a\x2e\xf0\xe2\xdc\xf9\xcd\x95\x84\x06\xc9\xc1\xa1\xe7\xbb\x93\x22\x1b\xcd\xfa\x94\x3b\xa3\x39\x1c\xc7\x99\x73\x6c\xb0\x3d\xb0\x55\xde\x51\xa7\x4a\x96\x9b\xd5\xd5\x5d\xd5\x8a\xc5\xc8\x6c\x23\xb8\x8b\x1e\x6a\x98\x75\x26\xb1\x45\x72\xe5\x48\xe0\xc3\xfb\x77\x69\x59\x63\x3e\x6e\x6b\x9a\xd1\x33\x64\xfb\x01\x0a\x99\x9b\x3e\xae\xf8\xdf\x26\x13\x86\x2d\xc1\xff\xba\x5a\x7a\x05\xdf\x6f\xa9\xdc\xe6\x05\x15\x0c\x66\x49\x12\xef\xa1\x13\x00\xee\x38\xa9\x37\xf1\xa3\x5d\xaa\xf9\x59\x7e\x62\x3e\x42\x98\xc6\x7f\x84\x98\x1d\x49\x8c\xd3\xaa\x9b\xf5\x46\xa0\x74\x12\x8f\x61\x03\x48\x77\x3d\x99\x0d\x24\xe3\xde\x53\xa4\x82\x66\xdd\xa6\x9b\x3b\x54\x16\x05\xe1\x19\x20\x34\x8c\x36\xe5\x1b\x4c\xa6\x50\xb6\xf8\x88\x1b\xfd\x80\x42\xeb\x22\x89\xe1\x34\x89\x92\x81\x7d\xc5\xca\xa1\x02\x23\xc2\x59\x7f\x0e\xee\x4b\xc5\x74\x79\xb1\x95\xe2\x29\x5a\x29\xc6\x94\x43\xc0\x82\x82\xf8\x3f\x3e\xfd\x2f\xcb\x5a\x77\x53\x0b\x9c\x26\xcb\x4d\x15\xcb\xb3\x43\x25\x5d\x3d\x1d\x27\x22\xe1\xb3\xbd\xd9\xd8\x46\xb9\x4d\xc1\xf9\x87\x15\x0f\x64\x31\x5f\xb7\x71\x88\xae\x98\xc1\xc0\xae\xe4\x8a\x71\xfc\xb6\x62\x1c\xbf\xad\xe2\x3c\xb3\x92\x14\xf9\x8f\x75\xbe\xb0\xc0\x0b\xe3\x24\x42\x6b\xb4\xed\x5c\x2d\x15\xfd\xce\x19\xcc\x2c\x37\x7a\x51\xd8\x58\x0b\xa1\x39\xf3\xa4\x18\x3a\xde\xe4\x24\xad\xe8\xb3\xd2\x84\x21\xbd\x76\xa4\xec\xbc\xb0\xa4\x7b\xc4\x5f\x74\xa3\x48\x8b\x01\xf5\x73\x48\xa0\xb8\x14\x64\x65\x26\x11\xb5\x82\x38\x11\xf6\x0e\x8a\x92\x48\x2b\x5c\x57\xbc\x25\x0f\x35\x5a\x6a\x96\x92\xb1\xc8\x56\xdc\x80\x37\x8a\xc5\xbb\xbd\xa7\xb8\x33\xaf\xd3\x6a\x47\x0d\xef\xb8\x82\x75\x1c\x01\x1e\x92\x75\xad\x1a\x1e\xc6\xf2\x7c\xd7\x46\xe1\x30\x94\xde\x3b\xe9\x5b\xa8\x7e\x92\xaf\x5b\x2a\xf6\x4b\xdd\x6c\x62\xe3\x81\xf3\x4a\x11\x9b\xdf\x50\x60\xa6\x1b\x3a\x1e\x4f\xad\xc9\x77\x7b\xb6\xd9\x1d\xbd\x9a\x0e\xbe\x22\x72\xbb\x48\x69\x29\xd6\x2a\xe0\x19\x70\xf9\x94\xea\x35\x9c\xd4\x8c\x73\x54\xd1\x18\x89\xb4\x35\x13\x66\xe1\x80\x7f\xd4\xda\x8e\x65\xc6\x8a\xee\x85\x7f\x9b\x6f\x54\x78\x9b\x8c\xc6\xc6\xe2\xd5\x60\x7f\x90\x67\xe7\xeb\xde\xa7\x15\x18\x2d\xcd\x57\x93\x28\x4c\xb2\x59\x3f\x62\x7f\x09\x7f\x4b\x32\x4f\x7e\x1d\xc0\x72\x09\x26\xc5\x93\xa7\x25\x54\xac\x0c\xe3\xe1\x6e\x5a\x66\xd2\x8b\x4a\x8b\x46\xb2\xe8\x1e\xc8\x0d\xea\x0d\x2c\xa0\xa3\x35\xf2\x82\x40\xa5\xc2\xfe\x2a\x50\xd2\x58\x77\x70\x48\x61\xfd\xde\xa1\xc9\xc5\x2a\x7d\xd4\x38\x2f\x96\xe7\xa9\x27\x66\x56\xc1\x1b\x67\x7a\xde\x28\xcd\x50\x0a\x1c\x39\x7f\xd2\xde\x61\xdb\xf7\xd4\xb4\xcd\xcc\xac\x24\xeb\x38\xb7\xa4\xc5\xa5\xb3\x3c\xff\xe8\x8d\x1a\x25\xb0\x47\x3a\xad\xd8\xd4\x10\x0f\x90\xab\xae\x3b\x60\xed\x99\x3a\xdb\x9f\xd8\xc2\xdc\xbc\x32\x31\x9b\x36\xcd\x66\xab\x65\xe3\x92\x2a\xbe\xbf\x7f\xae\xa7\xfa\x01\x79\xb6\x99\x0a\xac\xf4\xde\x52\x14\x4e\x66\xc8\x3e\xc0\x2b\x06\xae\x4d\xba\x79\x2a\x5b\x21\x78\x41\x8d\x08\x2b\xa2\xcd\x9d\xde\x93\x7e\xac\xe7\xd7\xc7\x8e\xa9\xe2\x1f\x67\x5f\x1d\xe9\xbe\x9b\x58\x18\xce\x10\xba\xf2\xf2\x11\x4c\xa3\x1c\xfd\x4f\x29\xe7\x39\xee\xa7\x16\xf5\x65\x61\xed\xfd\x1b\xcd\xda\xfb\x37\x81\x06\x61\xa5\x63\x3b\x08\x19\x2d\xe7\xcb\xf0\x9e\x1a\xf4\x1e\x6d\x1c\x80\x02\x9e\xee\x79\xfb\x3f\x33\xdd\xea\xe2\xff\x32\x81\xef\xa4\x9f\xd8\x41\x82\x16\x1d\x3c\x48\x09\x66\x24\x69\x6c\x90\x27\xf0\x30\xd8\xe3\xb4\x2d\xf9\xba\x61\x75\x08\x58\x6c\xfa\x6b\x66\xc8\x81\x33\x0c\xc3\x9b\x2a\x67\xf2\x66\xe0\xbb\x5f\xa3\x7c\x1d\x6f\xc4\xa0\xd3\xa0\x8e\x40\x75\x0e\x0c\xbb\x8c\x7c\xd3\x28\x3c\x54\xfb\xdf\x86\x43\x06\xd4\xb8\xd1\x51\x3c\x36\x5b\x2d\xdd\x67\x3f\x2b\x82\x8a\xe2\x27\x0a\x37\x14\x3d\x8e\x90\x46\xe9\x3c\xbb\x29\x06\x33\xaa\x3b\xe3\x92\x22\xa7\xbb\xac\xa4\x86\xff\x49\x8b\x9c\x89\x92\x90\x56\x9a\x71\xdf\x56\x67\xf3\xb7\x75\xff\x45\x61\x87\x51\x18\x2b\xc9\xae\x8f\x54\x47\xfa\x47\xb5\xc5\x3a\x89\x36\x9f\xa0\xc7\x67\x45\x61\xd8\x06\x44\x4b\xd7\xb0\x9c\xe0\x9d\x5d\xc7\x42\xc4\x9f\x21\x09\x0d\x1c\xf5\xae\x9e\x6f\x2a\xf8\x3a\x1d\x35\x58\x39\x6f\x29\x3e\x82\x19\xaa\xba\x09\x52\xd6\xeb\xfc\x7e\x1c\xa8\xd1\x3a\x0e\x47\xc8\x41\x5e\xab\xfd\xc9\x37\x54\x10\x14\x20\xbb\xcf\x04\x3d\x52\x99\xa0\x22\x83\xa1\xc5\x01\x58\x6f\xc4\xae\xe1\x3b\x94\xe2\x65\xb3\x03\x8e\xa4\x8b\xc2\x6c\x6c\x98\x26\x08\xe6\x0c\x75\x72\xbe\x6e\x69\x16\x5c\xe8\x9a\xfc\xe7\xf3\x9a\x34\xce\xdb\x35\xde\x47\x75\x80\xc4\x76\x98\x02\xe3\x25\xd6\x9e\xfe\x90\x6f\xda\xc0\x6c\x83\xd4\x8c\xd1\xe3\x03\xe8\xc6\x11\x8d\xe3\x38\xa2\xa0\x5e\x1b\x23\x93\xdb\x75\x9b\x82\x3d\x47\xd2\x90\xf4\x1e\x2c\x1f\x51\xa3\xbb\xf0\x05\x18\x22\x60\x0e\xe3\xe1\x0e\xd5\xe2\x7f\x15\xc5\x2f\xbe\x29\x3d\x9c\xea\x7e\x59\x27\xc4\x5e\x9e\x67\x2b\x38\xd7\xf3\xe0\x9b\x7f\xdd\x12\x5b\x3d\x2b\x44\xd7\xe1\x0a\x3b\x88\x18\x51\xd4\xcd\xf9\x5a\x23\xc5\x4d\xd4\x67\x71\x3d\xe1\xcd\x50\x8d\xca\x67\x1a\xdb\x64\x79\x5e\x58\x7d\x9c\xfe\x1a\xce\x88\xaf\x97\x1e\x81\xfd\xf5\x56\x8b\x13\x27\xb9\x11\x3f\x07\x59\x29\xf8\x5f\x7c\xed\xb9\x1f\xe2\x7c\x54\x64\xa1\xc9\xe0\x22\x63\x33\xdc\x0a\x6a\x78\x52\x97\x49\x7c\x4f\xab\x3d\x26\x71\x42\xdf\xde\x06\xcb\xde\x0a\x20\x02\x31\x70\x6e\xb3\xdc\xc4\xb9\x78\xf3\xd8\x60\x1c\x6f\xe0\x68\xf9\x61\xdd\x9b\x6f\x09\x4a\xed\x2b\xc4\xba\xd8\x51\xec\x29\x17\x31\xaf\x7c\xd3\xc6\x8d\x9a\x25\x45\x3e\x62\x6f\xc8\xf5\xff\x2f\x3a\x5d\xbd\x0b\x6d\x0d\xca\xab\x61\x2a\x63\x8e\x9a\x89\x06\x4c\xbf\x57\xd6\x28\x93\xc3\x3c\x49\x55\x85\xf7\x8e\xca\x58\xf2\xee\x64\x6d\x4f\xfd\x31\x93\x6e\x84\xfd\xb5\x8e\x66\xfd\xe5\x92\x26\xdf\xb4\xec\x9c\x83\xdd\x49\x64\x36\xc1\x87\x2c\xfc\x57\x5e\x66\x9f\x71\x3b\xc0\xcc\x6c\xef\x79\xcf\xe9\x62\xad\x3a\x6a\x42\xb0\x56\x09\x8b\x82\x3a\x47\xce\x06\x5a\xf1\x6a\xdd\x9a\x08\x20\x61\xec\xbc\xd9\x9e\xb7\xce\xf7\x34\x7f\x4d\x73\xd0\x0f\xcf\x53\x54\xc8\x67\xde\x92\x2b\x7b\xfa\x5c\xd3\x65\x87\xe9\xb1\xbf\x59\x84\x93\x89\x1d\xa0\xa9\x12\x0e\x11\xab\x76\x72\x15\x41\x7d\xec\x35\x6d\x5f\xaf\x2a\x5c\xc4\x8a\x49\x63\xcb\x49\x79\x78\xcb\x47\x54\x17\xea\x11\x47\xad\xbb\x6e\xd3\x15\xee\x6d\x87\x37\xf7\x50\xf5\xb7\x3d\x54\x42\x39\xa9\xcd\x8a\x31\x3b\xc6\x18\xd2\x5d\x3d\x0f\x49\xda\x35\xdd\x6a\x0e\xaa\x5d\x97\xda\x7e\x5a\x84\xb9\x63\xf0\x86\x13\x87\x34\x24\x5f\xb7\x24\x18\xbb\xa9\x89\xd7\x64\xb1\xa1\xbc\xfa\x7b\x81\x12\x59\xf9\x3d\xc8\xbe\xb9\x63\x61\x8f\xcf\x8a\x5d\xa5\x73\x04\xd3\x73\xa4\xe6\x6b\xd6\x5a\x7c\xab\x03\x06\xc0\x19\xae\x78\x21\xa1\xc1\x0c\x86\x98\x44\xc4\x64\x52\x58\xa9\xc2\x3e\xfe\xff\xa5\x9a\x97\x8b\x6d\xca\xe6\x79\x6a\xc2\xd8\xc5\x47\x38\x1f\xaf\xaa\xb3\xf2\x6a\xcd\xc9\x1b\x4f\xa0\xbb\xed\x48\x27\x6e\x2a\x31\xc9\x9b\xce\x30\x99\xd5\xd5\x70\x60\xd6\xc3\x1c\xfd\x15\x52\x5b\x51\x00\xcc\x63\x74\x34\x0b\x89\x85\xd2\x01\xb8\xef\xf4\x19\x36\x6d\x1e\x87\x6b\x09\x14\xa1\x9c\x78\x4b\xa0\xb1\x85\xcd\x13\xf3\xc0\x01\x69\x5e\xe9\xa8\x63\xe9\x82\x66\xc5\x56\xb4\x6b\x5e\x24\x77\x87\x22\xd6\x62\x72\x3d\x1c\x29\xbf\x1f\xa8\xea\x1b\xed\x57\x8e\x88\xcb\xad\x28\x14\xec\xe9\xed\xbd\x16\x55\x23\x33\x36\xaf\x5a\xb7\xb0\x84\x85\xc3\x1f\x03\x27\x1a\xe7\xd3\x81\x03\x07\xbb\x2b\x26\x8a\x92\x24\x86\xbe\x51\x35\x74\xb5\x54\x80\xec\x4a\x27\x67\x11\x27\x1b\x2b\x61\x3a\xd8\xca\x95\xef\xc4\xb0\xce\xbb\x70\xa4\x3f\x4a\xc3\x2c\x0f\x6d\x36\xa3\x10\x22\xb3\x9c\x49\x55\xe0\x16\xf1\xdd\xaf\xf9\x9a\xa7\xc9\x73\x9b\x6e\xce\x28\x3e\xc4\xd3\x0a\x57\xb7\x93\x8c\x0c\xce\xa1\xed\x53\x87\xaa\xb5\x19\x68\x7c\x04\x68\xe3\x8c\xdb\x6f\xfd\x34\xa4\xa9\x30\x33\x4f\x4e\xe9\x2c\x10\x72\x63\x8f\xde\xef\x4c\x6b\xdd\xec\x2d\xab\xd8\xc6\x43\x33\xdc\x22\x86\x8f\x86\x19\xbe\xd6\xbc\xf4\x36\x1f\x25\x83\x59\x9f\xab\x38\x87\x5c\x05\x50\x33\x60\x00\xd2\xf8\x2a\xfe\xff\x35\x3f\x75\x60\xe3\xbd\x3e\x0b\x72\x57\xa7\x56\x01\x49\x13\xb5\x03\xd5\x7a\x7a\x53\xed\xaa\x9d\x3d\x85\x42\xbd\xad\x95\xb7\xee\xf2\x02\x47\x69\x09\xea\x74\x62\xa8\x3d\x1d\xd9\xf6\xa9\x62\x8f\xf8\xa0\xec\xb6\x1c\xd9\x23\x93\x8e\x4d\xdf\xb2\xde\x79\x67\xab\xb4\x3e\xdf\x28\x8d\xec\x7e\x92\x4e\x9e\xd9\xab\x19\xab\x4e\xab\x06\xdd\x59\x04\x8b\xf0\x25\xae\x96\xaa\x6a\xc3\xbd\xfc\xb5\x4c\x3f\x45\xb5\x5f\xf9\x29\xd5\x78\xb5\x97\x78\x7d\xa4\xe3\xa1\x7a\x1c\x44\x7a\x47\x28\x97\x05\x23\xf8\x80\xb2\x2a\x08\xab\xfe\x16\x25\x51\xb3\x19\x43\x22\xd6\x81\x96\x5c\x0f\x57\x89\x9f\xc7\x56\x3c\x1e\xe8\x29\x1b\x25\x93\x59\x0f\x9c\x3f\x4f\x3f\x2b\x90\x3a\x4d\xc5\xa1\xa5\xc6\x6e\xab\x8a\xeb\xc0\xae\x87\x24\x0b\x52\xfd\x33\xce\xb6\x33\x8a\xa1\xfe\x4c\x4b\x55\xed\x60\x37\x2b\x86\x26\x55\xc2\xb4\xdc\x04\xcb\x37\xaa\x50\xb7\x5a\x1d\x3d\x2b\xc9\x46\xa4\x6a\x4f\xf7\x02\xaf\x2b\x7c\x4f\xfd\x6d\x91\x87\x51\x58\x6d\xdf\xd9\x6a\x48\x5d\x85\xac\xfa\x62\x97\xd7\xa9\x36\x92\xcb\xce\x3a\xef\xfe\xad\xa0\x41\x5b\xb8\x44\xb4\x85\x8a\x38\x61\xf7\x54\xd7\x50\x7f\x58\xea\x7c\x0e\x25\x1f\x9c\xe4\xe5\xf2\xbc\x30\x53\x52\x01\x94\x91\x2a\xd5\xa1\x86\x46\xd9\x83\x9c\x20\x7a\x0b\x09\x22\xe0\x5f\xae\x2a\x76\xd1\x9b\x48\x4a\x6a\xbf\x5b\x7c\x58\x5a\x6c\xf8\xab\xeb\x08\xc4\x14\x09\xe6\x92\xc3\x0f\x6a\x0e\x7f\x85\x69\x4e\xd7\x6d\x96\x03\x41\x80\x28\x0f\x4d\xfe\x7c\xad\xca\x3f\x9b\xeb\x22\xb0\xeb\x34\x95\x7d\x99\xf3\x5c\x93\xcc\x6b\x79\xe9\xe7\xba\xe3\x22\x0e\x61\x00\x25\x42\xf6\xd1\xf2\xf1\xc0\xa3\x16\x8f\xb9\xf2\xd1\x8a\x1d\x86\xf1\x4e\x07\x39\xfe\xfc\x93\x04\xf8\x72\x90\x78\x37\x3d\xbb\xa7\x9d\xfd\xfb\xdd\xb4\xd1\x8b\x22\xab\xb6\xb3\xa7\xe5\xab\x6b\xc8\x9c\xbf\xd3\xd2\x3c\x68\x63\xbb\x1a\xf6\x43\x43\x5d\xb7\xca\x8e\xa3\x1f\x41\xd4\xd4\x1d\x95\xc9\x28\x44\xdd\xde\xfb\x9c\xdc\xd9\xc5\x37\x5b\x09\x82\x97\x16\x0e\x75\x97\xe7\x3b\x9e\xae\xf7\xb8\x52\x74\x3c\xae\x25\xb1\x92\x74\xbc\x43\x49\x62\x75\x7a\x4a\x12\xab\x33\xf5\x6d\x7c\xa7\xb1\x10\x84\xec\xac\xe3\xa8\xa5\x39\x7f\xc1\xff\xa0\xfa\x7c\xc2\x34\x35\x83\x10\x7a\xe7\xba\x17\x57\xe1\xa4\xce\x07\xfb\x54\x43\x2b\x8e\x5e\xc9\xa0\x56\x6b\x50\x52\xab\x5b\xb3\xaf\x8b\x8b\xdd\xc9\xdf\xfb\xbb\x0a\x63\x8e\x06\x3f\xbe\x56\x31\xfe\xaf\x85\x30\x43\x78\x3a\x98\x6a\xa1\x62\x51\x95\xe0\x9b\xaa\x42\x95\x26\xfd\xb5\x4c\xc9\x00\x31\xf3\x1d\x12\xee\xdf\x54\xdc\xf6\xb7\x1d\xd0\x67\x68\x63\x9b\x83\x49\x76\xc6\x97\xb0\xee\x28\xd9\x6a\xb8\xf6\x62\x7f\xb7\x9e\x8e\x62\x36\x5f\xfe\xf9\x68\xc6\xf7\x72\xc1\xb6\x88\x0e\x8f\x26\xea\x6c\xcb\xf7\xe4\x36\x4d\x93\xd4\x3b\x22\x58\xba\x5f\xd2\xb4\xc8\x5f\x6a\xe9\x4b\x7e\xd1\x31\x4b\x21\x48\x66\xcd\x17\xbe\x09\xb6\x2e\x5d\xa2\x39\xcf\xd3\x44\x34\x20\x69\x0a\x9c\x44\x91\x97\x2b\x9a\x2a\x98\x5b\x12\x15\x63\xbb\x87\x56\x2b\x7c\x31\x20\x74\x39\xab\x4a\x67\x0e\x0e\x83\xf3\x30\x90\xe8\xee\xfd\x76\xbd\x27\xe5\xb0\xc7\xd0\xf8\x90\xbb\xd3\x53\xec\x1d\xef\x05\x6a\xd3\xbd\xa7\x11\xe8\xd7\x74\xc6\x23\x8c\x06\x51\xb8\x6a\x67\x15\x21\xf7\x69\xd5\xd4\x00\x40\x0a\xff\xff\x40\x69\x53\x5c\xa8\x65\xe6\xe2\xcd\x62\xc6\xb3\xf6\x9f\x45\x7d\xc8\x25\x38\x9e\x5b\x7c\xf4\x40\x81\x59\x72\x13\x87\x21\x3c\x64\x18\x48\x68\xfe\xf3\x75\x1b\x9d\x67\x3f\x32\x19\x7b\x7e\xb0\xb6\xcc\x47\x86\xa1\x81\x00\xa2\x20\xa7\x7d\x44\x05\x5d\x91\x19\xd5\x69\x7a\x29\x50\x46\xf0\x8f\x15\x8b\xca\x79\x15\x29\xc7\x76\x2d\x49\x32\x83\xa8\xd7\xa1\x5f\xaa\x0d\xcb\xd8\x19\x1a\x1e\x57\x61\xa9\x36\xbb\x80\x6a\xb6\xae\xa7\x03\x07\x68\xfb\x28\xf5\xd3\xf3\x35\xbe\xb4\xad\x7e\xf7\xe7\xba\x59\x9e\xda\x78\x98\x8f\x6c\xac\xc5\xb6\xff\x6b\x25\xa9\x77\x45\x8b\x09\x29\x1a\xc3\xb5\x70\xdc\x01\xe3\x6e\x09\xc6\x87\x76\xea\xb9\x89\x89\x4c\x1e\xb2\x7b\x25\x4c\x39\x7e\x93\x9d\x6a\x84\x27\xcb\xf3\xdd\x41\x98\xf5\x49\xa8\xf8\xf0\xbc\xd3\x99\x54\x24\x11\xa7\x7c\xbb\x0c\x63\xad\x89\xa3\x05\x59\xb2\xb7\x4b\x9f\x0a\xff\xf1\x5e\x1d\x83\xed\x86\xf1\x7a\xd9\xd4\x6d\x73\xf4\x11\xd5\xac\x0b\x59\xb2\x52\xa8\x39\xab\xa6\x2c\x4b\x88\x47\x46\x33\x5b\x81\x46\x06\x2e\xd6\x47\x8a\x28\xf5\x87\x2e\xe2\x5b\x31\xe9\x10\x81\x24\x3e\x87\x90\x6f\x07\x55\xa3\x50\x1d\x7c\x8c\xb6\xb0\x20\xb3\x5a\x92\x4c\xb9\xed\x8f\xe2\xea\xd8\x72\xc8\xb0\x5a\x83\x8e\xa8\x3f\xb5\x76\xaa\x4e\xc2\xd4\x2a\x86\x12\xd0\x45\xf0\xb5\xda\xa0\xa8\x5f\xa1\x95\x54\x90\x61\xff\xb8\x54\x3a\x70\xff\x38\xd0\x2d\x11\x1b\xa2\x7d\x2e\xfd\x49\x4a\x7c\xe5\x8c\x8a\x8b\x23\x13\x0f\x0b\x33\xb4\xbb\x3e\x81\xb0\xfa\x07\xaa\x2e\x8c\x16\x38\x84\x4b\x77\x34\x53\x1c\x2b\x58\xf2\x0d\xbd\x00\xe6\xe6\x21\x9d\x56\x7c\xdd\xa6\x0d\xb1\x52\x30\xc0\x09\xdb\xf9\xdd\xd2\x3b\x52\xef\x2a\xc4\x52\x6a\xfb\x9b\x7d\xce\x2a\x22\xe1\x0c\x52\x07\xbe\x2e\x3d\x40\x21\x2a\xd8\x1b\x90\x0d\xab\xf7\xe8\x8f\xf8\x86\x85\x54\x67\x50\x95\xc7\xf0\x8e\x8f\xf0\x76\xbc\xd3\xf0\x8b\x7f\xa1\xbb\x62\xfb\xa6\xc8\x6c\xc7\x47\xd6\x5f\x2d\xfd\x89\xfc\x55\xc5\x31\x9b\xda\x2c\x89\x0a\xd5\x5f\x86\x60\xe2\x8b\x14\xd6\xf2\xb5\xf3\xfb\xc6\x61\x1c\xf6\x4d\x4a\xa7\x1c\xce\xe1\xfb\xaa\x90\x81\x81\x97\x32\xb9\x87\x7d\x25\xc4\x0c\x5c\x1d\xaf\xb3\xaa\x19\x8b\xf0\xf5\xd2\x98\xe5\x2b\xc2\x6f\x96\x9e\x9a\xe7\xcd\x46\xdd\x76\x79\xbe\x3b\x4c\x00\x80\x83\xab\xc9\xe2\x5f\x7c\xe3\x30\xae\x93\x24\x8a\x0a\x57\xa9\xe1\xd6\xfa\xd2\x77\x7d\x5c\x54\x99\x3c\x43\x4c\x3f\x28\x26\xe0\xfc\xfb\x53\xfa\x4b\xd6\xc6\x0f\xbc\x41\x38\x87\x13\x45\xb0\xa2\xe2\x7c\xc6\xc9\x5a\x88\x7c\x3d\xc6\x81\x71\xb7\x7c\xd3\xb0\x6b\x9c\xed\x4d\x8d\xa7\x17\x92\x00\x58\x05\xc3\x2d\x87\xfd\xb3\x5d\xa2\x59\xaf\x3e\xe0\x88\xb1\x94\x2a\xa2\x82\x45\xd9\x55\x33\x36\x24\x0a\x5f\x9d\x72\x42\x75\x5c\x0d\x2c\x5f\x2b\xa2\x8a\x38\xec\xef\xd1\x44\x40\xe7\x14\xa5\xc6\xd1\x5a\x8b\x81\xc3\x56\xff\x8b\x9f\xed\x79\x1a\x8a\xd7\x9f\x9c\x7a\xed\x89\x07\xa5\xc2\x23\xb2\x94\x92\x53\x1e\xae\xa7\xa3\xa4\xa4\x7c\xbb\x16\x20\x17\x71\x0e\x83\xe0\xbc\x4d\x27\x95\x7e\x5e\xcb\x9c\x26\xe9\xd8\xa6\x4f\x55\x4f\x27\x3e\x06\x45\x40\x8e\x7e\xde\x11\x98\xcc\x90\xc7\x2f\x54\xf4\x64\xd0\x1d\x0f\xb9\x72\x7e\xe8\xb1\xf1\xd2\x4c\x77\xcd\x39\x40\x98\x7a\x71\x14\xaa\x77\x10\x91\x7c\xe5\xd2\x7d\x93\x53\x0a\x28\x88\x82\x03\x08\x3e\xf8\x5d\x25\x4f\xc8\x71\x05\x0c\xf7\x97\x71\x38\x60\x61\x5d\x83\x99\xe2\xdf\x6f\x18\xe0\x6a\xea\xb3\x0d\x33\xe1\x1d\xca\x04\xd4\xea\x9b\x4f\x2a\x46\xa5\x41\x38\x89\x92\xb1\xc9\xc3\x7e\x47\xc9\x71\x9d\x56\x3d\xe0\xa7\x95\xd3\x91\xe5\x26\xe5\xb6\x34\xd7\x58\xba\x3c\xef\x1a\x4b\x65\xe3\x13\xdd\x54\x0e\x8a\x2a\x51\xe8\xa3\xf7\xe7\x1b\xe5\xb3\xe7\x05\xc3\xe5\x1d\x77\xb3\x4b\xc8\xc1\x17\x80\x17\xf4\x17\x6e\xfb\x54\x8f\x90\xcd\x29\x9d\x74\xae\x79\x60\xdd\x80\x50\x53\x12\xf5\xbe\xe3\xe3\x04\x0e\x15\x69\x71\x68\x29\xf0\x8e\xcd\xab\x12\x9c\x31\x01\xb9\xd2\x1f\x3f\xd7\x96\xe3\x1a\x17\x51\x1e\x4e\x22\xdd\x2a\x7e\x57\x01\x38\xef\x2a\xee\xd3\xac\x48\xd7\xc3\x75\x49\x56\x38\xed\x89\x6a\x48\x44\x7b\xa2\x8d\xe7\x6b\x14\x46\x96\x9a\x2d\x60\x59\x6f\xab\x40\x6c\x77\xaf\x46\x40\xe0\x70\x81\x4d\x2e\x2e\xf2\xe2\xd3\x30\x19\x84\x7d\x3e\xc6\xd1\x1c\x73\x41\xb5\x5b\x35\xf1\xa9\x87\x9e\xef\x0e\xc2\x7e\x4e\x9d\xf0\xbe\x35\x37\xf0\x2d\xb0\xe7\xd4\x24\xc6\x26\xdb\x89\xaf\xc6\x32\x46\x6e\x1f\xc0\xc2\x9d\x53\x05\x21\x65\xf6\x55\x29\xd0\x54\xaf\xe0\x36\xbf\xe3\xbb\xfa\xed\x4f\xf7\x14\x23\xe4\xdc\xb4\xe5\xd1\x20\x22\x09\x42\x2a\x47\xb0\xe4\x9b\x2e\x2e\x37\xac\xe8\xe2\x62\x37\xb2\x43\x13\x85\xaf\x4a\x60\xcd\x09\x41\xec\x2b\xc9\x0e\xb6\x15\x89\x86\xa9\x59\x99\xf1\x71\xfa\xbb\x78\x05\x38\xc5\xc0\x8e\x4a\x4b\xd0\xa7\xeb\xa2\x86\x66\x35\xb7\xec\xd9\x30\x1a\x36\xf0\xa0\xd9\xf3\xad\xa0\xef\x97\x6d\x96\x59\x9e\x25\x69\x94\x50\x8d\xea\xdf\x68\xbc\xd7\xfe\x85\xee\x86\xc9\x72\xbb\x61\x72\xe6\xc0\x81\x55\xe0\x80\x97\x6f\xbc\x14\xb1\x8d\xb9\x5a\x20\x49\xbd\x8e\x6b\x27\x3f\xab\x8e\x04\x1b\x23\x0d\x6f\x19\x92\x80\xc0\x79\xb6\xe7\x63\xf0\x8f\x4b\xd5\xa9\x7f\x44\xbd\xba\x19\xac\x27\x7d\x56\x5c\xac\xcc\x27\xf2\x9a\x1f\x28\x8c\xda\x07\xaa\xf0\xb9\x5a\xc4\x83\xbd\xb4\x40\x60\x7f\x71\xa8\x21\x01\x7e\xae\xf4\x32\x4e\x27\x74\xa4\x86\x53\x43\xfa\x76\x68\x3a\xf0\x80\x73\xe8\x76\x96\xee\xb7\x6a\xe7\xf0\x75\xa0\x5a\xcc\x84\xc9\x0e\xff\xc4\x6d\xc6\x28\x59\xfd\x71\x2d\xbf\xb8\x5a\x8d\xd6\x93\xd5\xa9\x21\xe9\x67\x7a\x23\x96\x3b\xa2\xaf\xc7\x66\x3c\x8e\x1e\x66\x04\xb6\x77\xa1\x8f\x2c\xa2\x48\x1d\xa7\x41\x74\xa7\x76\xd0\x13\x98\x0f\xde\xcf\x0d\x15\xe5\x42\xef\x82\xff\x7f\xa9\xcc\xd1\x1d\x2d\x16\xc2\x5d\x0d\x2e\x51\xb7\x70\x88\x47\xe0\x2c\x01\xf8\xdc\x4f\xec\x97\x9c\xdd\xb6\x9e\x07\xad\xaf\xc5\x76\x83\xd6\x80\xa8\xcd\x77\x1c\x7d\xf8\x59\xd5\xf9\x34\x08\xb3\x49\x64\x60\xc4\x61\xe0\x81\xcc\xe5\x6b\x45\xf7\x90\x59\x62\x5f\xe5\x0d\xb2\x17\x64\x25\x30\x47\xd7\x31\x64\x7c\x13\x28\xcc\xeb\x1f\x93\x17\xad\xc8\x51\x5e\x74\x45\xbd\xea\x75\xe0\x4e\x5d\x09\xbc\xd0\xfb\x93\x3d\x5f\xb8\xbc\x8e\x18\x5c\xc2\x7f\x8f\xe0\xff\x03\x4c\x34\x7e\xe2\x7b\xd8\xdc\xac\x13\xe4\xd8\xd8\x57\x2b\x07\x96\xe9\x17\x11\x42\x81\x39\x13\xc5\xcd\x37\xf0\x21\x2c\xbb\x6d\xd3\x2d\xfa\x3a\x2f\xbd\xd4\xdd\xbf\xff\xf1\x6a\x49\xb8\x03\xff\xc0\x81\x65\xcf\x7c\xed\x82\x84\x1f\x60\x86\x98\xfd\x1c\x13\x09\xb3\x77\x83\x96\x35\xa6\xe8\xab\xbc\x14\xe1\x30\xdc\x0e\x94\xcf\x7e\x5b\x49\x6e\x5d\xd7\x70\x15\xd0\x70\xc1\xfe\xb0\x27\xe0\xa0\x22\xd5\xbe\x60\xbf\x8c\x16\x85\xd4\x35\x3d\xe4\xaa\xf2\x25\x93\x7c\x73\xc2\xf0\x29\xa6\x79\x09\x7c\x48\x7b\x59\x55\x6d\xb3\x91\x49\x6d\xb6\xaf\x5a\xa9\x78\xde\x8f\xe9\x5b\x59\x45\x2a\x50\x9c\x4b\xa0\xf1\xc4\xab\x73\xe5\x1c\x07\xef\x03\xcc\x14\x9c\xa8\xeb\xc8\x34\xc0\x82\xa0\x52\x09\x83\xbd\x93\xa4\x73\xb0\xd0\x1f\x95\x0a\x19\x8a\xfd\x23\xda\x81\xf4\xb2\xc0\xf6\x5c\x6b\xb8\x3d\x9f\xab\xce\xcb\xcc\x95\x7e\x11\x6e\xdf\xc3\x00\xf1\x4d\x23\x58\x3b\x3c\xbf\xd4\x4d\x8a\x9c\xea\x10\x58\x59\x33\x74\xae\xba\x66\x6f\x97\x41\x84\xda\x29\x8e\xa4\xed\x53\xdf\x14\xb4\x62\xd2\x7e\x64\x36\xd9\x73\x70\xec\x37\x4a\xe0\x55\xc1\xe1\x37\xd3\x62\x02\xa1\x01\x4e\x1d\x2b\x16\xac\xff\x0b\x38\x55\xcc\xeb\x39\xe7\x4a\xf5\x53\x33\x1e\x0b\x71\x27\x3e\x75\x14\xa3\xc8\x37\xa5\x0a\x90\xd3\x22\xda\x9c\xf1\x4d\x48\x8f\x94\xfc\xc2\x25\x6d\x34\x2f\xb6\x81\xfd\xf3\x64\x30\x50\xac\xf3\xec\x75\x8b\xaf\xa2\x2b\x37\x9b\xd6\xce\x79\x40\xdf\xbb\xa5\x82\x88\x9e\xd0\xa5\x9b\x2f\x97\x4a\x3e\xed\x94\x86\x57\x3e\x6a\xb0\xb9\x1d\x9e\x5f\xe8\xae\x14\xf1\xc0\x66\x2b\x26\x5e\x43\xfe\x8c\x43\x01\xf6\x96\x25\x30\x70\xd2\xc6\x36\xb3\xa9\x15\x2d\x6a\x89\x86\x55\x94\xac\x21\x56\x1f\x3b\xc8\xc2\x24\x4d\x26\x36\x9a\x53\x4d\x3b\x8c\xd1\x76\xf0\x33\x57\x14\x64\x39\x34\xc1\xf8\x7b\x61\x9d\xbd\xbd\x16\xf8\x79\xdf\xa4\xc3\x30\x42\xea\x09\x6b\xe9\xa3\x52\xa5\x01\x3f\x72\x24\x33\x44\x51\x6f\x87\x61\x96\xcf\xf8\x9c\xd3\x39\xd5\x79\x72\x57\x79\x15\x9a\x5d\xac\x18\xc7\x3b\x94\x28\xe1\xdb\xb4\x3c\x91\x27\x79\x57\x9d\x46\xcc\x64\x8f\x0d\xc4\xc9\x1a\x0d\x79\x44\x54\xbf\xaf\xc1\x9b\x78\x78\xfe\xc5\x6e\x18\xdb\x57\x92\xd4\xac\x88\x16\x14\x7c\x38\xd4\x1d\xf9\xba\x0d\x83\x36\x0e\xa3\x88\x53\x33\xa2\x3a\x50\x13\x10\x6f\x51\x5b\x2d\xe2\xd5\x34\xb4\x31\xe9\x80\x3b\xc0\x3e\x1a\x44\xf8\x7a\xea\x03\x38\xfb\x8a\x4b\x28\x01\xfc\x83\xae\x01\xbe\x76\x49\xaf\x8d\x30\x1e\x64\xa3\xd0\x46\x03\x25\xee\xf2\x5d\x25\xee\xf2\xdd\xad\x9a\xac\x2f\x2c\x75\x97\x9e\x3f\x48\x4f\xfe\x88\x0e\x9b\x47\x57\x5c\x55\xde\x71\x41\x91\xbe\x06\x1c\xd8\x9f\x40\xdb\x06\x4e\xaa\x9b\xa5\xa2\x57\xbc\x5c\x6a\x14\x61\xc7\x49\x98\xec\x9d\x6a\xee\x55\x48\x00\x48\x76\x06\x06\xef\x2d\x15\x68\xbc\xa5\x92\x63\xf9\x28\x49\x49\xa2\x54\x69\x03\x63\x26\x70\x5c\xdc\xaf\x41\x54\xb6\xce\xca\xa1\xe7\xbb\xe3\x30\x2e\x32\x5a\x63\x70\xbc\xc0\x4b\x85\x1a\xeb\x9f\x28\xcd\xa8\x6d\xbd\xad\xe6\xe0\xa5\x97\xba\xab\x61\x3a\x56\x9e\xe2\x75\xe5\x29\x5e\x57\xf9\x80\xff\xe4\x17\xff\xfe\x8c\x0f\xf3\x50\x16\x40\xc6\x83\x59\x78\xa4\x5b\x48\x91\x8b\x26\x66\x00\x95\x7f\x81\xba\x5f\xd7\xad\x61\x1f\x94\x3e\x84\xbb\x0d\xf3\x8d\x02\xc5\x1b\x2e\x5f\x13\xc6\x14\xd1\x13\xa3\x9c\xb0\x47\xc0\x89\x42\xae\xef\x3b\x81\x02\xec\x7c\x84\xed\xa0\xba\x5a\x0f\xba\xb6\xfb\xad\x28\x8f\xcf\x75\x6d\x9c\xa7\x76\x92\xda\xd8\x16\x29\xe2\x8b\x1a\x37\xbc\xb0\xb9\x7f\x62\x2d\x3c\x49\x33\xbb\xab\xf3\x6b\x72\x14\xbc\x55\x12\x37\xbe\xa3\x1c\x77\xa4\x52\x77\xe0\x38\xa0\xe0\xf3\x14\x58\x7e\x60\x09\xb6\xf7\x3a\xbf\xfe\x79\x0f\xba\x78\x41\x08\x89\xd9\xce\x62\x9d\xcc\x4c\xfd\x58\x64\x45\x14\xc6\x99\x2e\x6a\xe3\x59\xa5\xc2\xed\x00\x29\xc5\x64\x12\x85\x24\x56\x5a\xfd\x33\x0b\x57\x06\x8a\x0c\xbf\x19\x18\x2f\x2e\x76\xfb\x23\x6b\x26\x1d\xcf\x4b\x8e\xba\xb0\x00\x07\xbc\x5b\xb9\x99\x14\xe9\x63\x95\x7b\x80\x95\xca\x18\x0c\x26\xc1\xac\x37\xe2\x57\x33\x85\x35\xfc\x18\x78\x37\x98\x74\x1b\xbe\x02\xf3\xbb\x91\x83\x2c\xa2\x91\x2a\xeb\xfb\x07\xe4\x13\x02\x19\xb4\x4f\xb1\x3e\x3d\xd4\x5c\xf1\x1f\x2b\x61\x52\xa8\x16\x49\x69\xae\x4d\x9b\x97\xc0\xd3\x76\x46\x31\xc5\xde\x56\x94\x67\x70\xc9\x85\x4f\x74\x8f\x07\x6d\xee\xf0\x5d\x3f\x27\x31\xe4\xf0\x4d\xb8\x4b\x19\x96\xf9\x8e\xaa\x89\x20\xad\x82\xf5\xaa\xb5\x47\xbe\xd3\x08\x06\xf7\xef\xef\x5a\x93\x85\x55\x4c\x77\xd8\x2f\x1f\x5a\x32\xa2\xb3\xa8\xf2\x60\x61\x2e\x81\x9a\x56\x42\x66\x94\x36\xfd\x3e\x17\x34\x35\xf1\x63\x64\xad\xa3\x4b\x40\x9c\x08\x77\x84\xaf\x55\xf7\xb9\xa7\x14\xf3\x3b\x9d\x5f\x98\x6f\x94\x41\xd8\xbf\xcc\xb5\x2c\x34\x69\xcf\x4e\x55\x35\x1f\x79\x01\x38\xa8\xc7\x54\x9f\x4f\xdf\x46\x11\x90\x69\x2c\x8c\x0d\x47\x58\x08\x96\x69\x89\x08\x59\x63\x47\x69\x07\x09\x17\x9b\x99\xe4\x3b\x1b\xca\x9c\x0b\x3e\x14\xf6\x7c\x5a\xc8\xea\x32\xbc\xa9\xa7\x59\xff\x6b\xd2\x00\xf4\x02\x88\xda\x8e\x29\xa4\x52\x56\xa4\x36\x82\xec\x2b\x42\xaf\xdf\xc6\x94\x68\x29\x13\xfe\x07\x60\x24\x44\xd7\xc4\xbb\xd4\xab\x61\x14\x59\xe6\xe5\xc5\x40\x9c\x2a\x1b\x4d\x09\x88\x8a\xee\x29\xde\xdf\x95\x34\x19\x47\x96\x0f\x65\x4d\x10\x29\xac\x04\x7b\x79\x01\x75\x17\x17\x97\xfe\x7f\xf4\x2e\x70\x9a\x1f\xef\x79\x34\xd8\x35\x84\xa9\x30\x27\x8f\xe8\x00\xc0\xf6\xfc\x6f\xb0\x3d\xb1\x5d\xb6\x4f\x7d\xe3\xf3\xee\x1f\x9d\x52\xa2\x14\x4e\x3e\xd8\xb9\x58\x27\x85\x4e\x6a\x27\x1b\x5b\x8d\x02\xf7\xd5\x13\x96\x1f\xf9\x0a\xe6\x4f\xa1\x85\x68\x7f\x42\xb3\x7e\xcd\x52\x25\x58\x18\x46\x3b\x8e\x88\x79\xdb\x54\x09\xb2\xbe\xa3\x34\x60\x9f\x9a\x56\x96\x10\x1f\xfe\x77\x14\x85\x90\xc3\xf9\x0f\x9e\xa2\x74\xb2\x48\xb7\xd1\xa0\xc3\x34\xed\x99\x56\x66\x14\xd6\xe0\x6d\x66\x99\x42\x3e\xf9\x1d\xea\x63\x96\xc3\xa6\x1a\xd1\x47\x0f\x40\x06\x8d\x68\xf0\xba\x4a\x16\x5c\xf9\xc9\x5e\x15\x50\x63\x25\x3e\x62\x4f\x14\xf8\x96\xc7\x51\xef\x83\x57\x74\x55\xed\x2c\xb3\x92\xa4\xd5\x76\xd9\xd1\x71\x24\x9f\xec\x85\xe1\x1c\x03\x67\x8a\xb0\xea\xd0\xc8\xe3\x4c\x38\x56\x7a\x84\xfc\x36\xe4\x98\xf9\xaf\x82\xbd\x9e\x85\x20\xfe\x71\x7a\xd6\x9a\x57\x0d\x97\x6e\x7b\x4f\xd9\x9d\x07\xf4\x2b\x58\xdd\xf7\xb1\x1a\x59\x6b\x33\xe8\xfc\xca\x6f\x70\xda\xed\x7e\xa9\x0b\x7b\xc7\x02\x0c\x93\x63\xa8\xf2\x09\x87\xdf\x0e\x14\x4f\xe5\x4e\x82\xcb\xe0\x28\xfc\x93\xd2\x43\x64\xce\x61\x1d\xc0\x52\x9e\x44\xf6\x1c\xab\xf0\x1a\xf6\x20\xc6\xf7\xa6\x6a\x6c\xdb\x33\xf5\xc1\xfe\x09\xd5\x25\x34\xd7\xab\x56\x11\x4c\xc8\x51\xa5\x60\x78\xa3\x54\xa4\x1a\x0f\x81\xb8\xc5\xa7\x1f\x60\x07\xb3\x0a\x0d\x19\x57\xc0\x2c\x8f\x07\x9e\x86\xec\x96\x07\x4e\xda\x68\x18\x42\x86\x56\xca\xee\xe8\x71\xe2\xeb\xb6\x6a\xb7\x5d\xb7\xb1\x22\xec\xfd\x87\xf4\x1e\x7c\xad\xdc\xf4\x6c\x14\xee\x50\xfe\x0c\xa4\x1f\x51\xde\x7e\x0b\xd3\x85\x78\x9d\x01\xea\xf8\x41\xc4\x9d\xda\x7d\x84\x2d\x7a\xbd\xd1\x90\xf0\x0b\xc4\x18\x13\xd9\x01\xe7\x66\x5a\x19\xc3\x35\x7c\x61\xdd\x46\x8f\xab\xfa\xea\x3f\x2f\x15\xf1\xf1\x95\x3a\x67\x1a\x0d\xae\x14\x73\x14\x9b\x0f\x77\x05\xe0\x5d\xf7\xf4\xbc\x62\xf4\xbf\xc0\x0b\xb9\x2e\x45\x07\x04\x07\xb8\x52\xb2\x28\xd5\xbb\xb9\x0e\x88\x85\x43\x52\x01\x0c\xbc\xfa\xc6\x05\x54\x64\xb8\xfa\xdd\x2a\x79\x9b\xa7\xd6\xe4\x9b\x73\xaa\x8b\xa7\x54\xe4\x46\xe0\x4e\xc0\x0e\xbf\x4d\x0f\x82\x1a\x13\x67\x0d\x84\x5c\xad\xed\xf8\x37\x69\x7f\x24\x21\x36\xab\xc6\x93\xcb\x20\x0a\xf2\x4d\x2c\x70\xd7\x4c\x48\x03\x57\x91\xdc\x20\x65\xc0\x1c\x1d\x7c\xd3\xc8\x51\x90\x94\x64\x1a\x4e\xf8\x33\x6c\x3e\x95\x4e\x8e\xd6\xf7\xce\xed\x78\x12\x59\x4d\x71\x7c\x57\x27\x83\xef\xaa\xe3\xc1\xbe\x02\x1f\x40\xfb\x80\x1d\xc7\x8d\x79\x46\x89\xb1\xdc\x73\x81\x30\xa9\xc8\xf2\x49\xe4\x6a\x76\x8b\x8b\x1c\xbb\xdf\x57\x5d\xf8\xa7\xda\x40\x6d\x63\x13\x17\xab\xa6\x9f\x17\x9e\x62\x46\xfa\x47\x3d\xc8\xf4\xaf\x54\xaf\xea\xc4\xa4\x26\x8a\x6c\x94\xc1\x6b\xc7\x69\x71\xbc\x54\x28\xd6\xe3\x30\xbc\xc0\x6a\x5c\x0b\x1a\x69\xf0\x83\x2e\x97\xa1\xf5\x0f\xfb\x16\x5d\xe2\x02\xaa\xa6\x95\x2a\x68\x6b\xff\x87\xf9\xc8\xe4\x3f\x4d\xbf\x2c\x04\xe7\x9a\x51\x52\xd5\xbe\x6e\x96\x5b\xb8\x2d\x0f\x72\xa1\x69\x67\x8d\xcf\x72\x0b\x15\xa7\xcb\x4e\xef\xeb\x6d\x25\xd0\x14\x8d\x58\x02\x51\x2e\x3d\x7a\x14\x28\x74\xcf\xb6\x9e\x4b\xd3\x25\x9f\x9a\xd6\xe9\x2b\x9d\xa1\x39\x51\xd6\x48\x40\x69\xa3\xe0\x54\x7c\x9b\x98\x3b\xb1\x69\xd0\x84\x8e\x0a\xe1\xb6\x5e\x8d\xf0\x52\xd5\xa1\x1f\xd6\x99\x42\x5f\x70\xdc\xd3\x28\xd8\x22\x50\xdc\x3e\xd5\x34\x9c\x35\x9a\xd1\xe5\x25\xc9\xf2\x05\x5e\x0d\xe4\x08\xe8\xf8\xe8\x91\x9e\x78\xaa\xb7\xd5\x62\xfd\x72\x77\x14\x66\x13\x13\x87\x7d\x01\x92\x70\x43\x3b\x32\x88\xd2\xdd\xfe\x84\x2e\x9f\x88\x88\x2d\xf6\xed\x31\xa5\x82\x7a\xac\x01\x10\x7c\xe9\xa5\xae\xad\x1c\xd9\x4f\x6a\x48\xf2\x9d\x6c\x26\xcf\x2d\xd1\x0e\x7a\x5f\x13\x4e\x2f\x5f\xb7\x24\x08\xbb\x69\x38\xb1\xb3\x3e\x10\x7e\xb3\xf4\x85\xd4\xfb\x78\x01\x24\x88\xce\xe9\x34\xd2\x71\x97\x45\xb0\x51\xf8\xaa\x59\xb1\xf9\xa8\xa3\xe8\xa6\xce\x2a\xd2\x83\xb3\x8a\x69\x3f\xb7\x91\x9d\x8c\x92\xd8\x92\xef\x20\x32\x08\xd5\xbc\xa2\xa8\x7d\x9f\x3a\x54\xf8\x1a\x6b\x93\x29\xa7\x21\xd4\xa0\xb3\x60\x78\xdc\x6f\x34\x42\x8b\xca\x7a\xe5\xb9\xe9\x8f\xe0\x4c\x4a\x38\xa1\x73\x09\x5b\x3f\xb2\x70\xa8\x9b\xad\x85\x0e\x4b\xe4\xfa\xe7\x7d\x34\x1b\xf8\xc5\x73\xd2\x93\x38\x8c\x92\x34\xb7\xe9\x1c\xad\x45\x1a\xa4\x2f\xff\x24\x25\x08\x44\x7a\x4d\xe5\xab\x1f\x29\xd5\xce\x99\xa9\x17\x45\xbe\xa8\x1c\xab\x81\x9d\x14\xd4\x25\x81\x45\xc4\x8c\x43\x1a\x7e\x3b\xd7\x53\xb9\xc8\xce\xf4\xe9\x06\xb8\xfa\x60\xf7\x73\xb3\x8a\xba\xf7\x5c\xa0\x2b\xa2\xef\xc3\xc9\xe1\x22\x3b\xd6\x10\x12\xd7\x5f\x69\x2c\x8c\x03\x07\xba\x5e\x10\x44\x87\xf7\x35\xa6\x48\xe1\x01\xf4\xa1\x4e\x96\xdb\x09\x00\xa7\x88\x15\x11\x06\x3a\x44\x8c\x73\xfe\xdf\x57\x25\xb5\xf5\x24\x2a\x26\x79\x91\x14\x19\x31\xfb\x61\x1b\xdc\xa1\xbd\xc8\xd7\x2a\xfe\x4a\xe2\xc1\x63\x64\x60\x04\x48\xe6\xf9\x5b\x5e\xaf\x26\xf9\xe1\x3f\xfc\xf1\x5e\x65\x02\x70\x4c\x1c\x21\x5c\x8d\x30\x25\x78\xac\x2e\x50\xe1\x38\xfc\x6f\x07\x9a\xd1\xe2\x9e\xaa\xb6\x9c\x08\x54\xf4\xce\x15\x41\x29\x2e\x7b\xdd\xf7\xc7\x77\x4c\x3b\xbf\x76\x90\xbf\xec\xa1\x1a\x8b\x15\x93\x02\x2d\xfc\x6c\xab\x1e\x8f\x1f\x80\x41\x98\xf5\xa3\xa4\x8a\xbe\xa8\x1a\xae\x8d\x91\x48\x49\xd3\x83\x08\x1f\x15\xcd\x30\xdf\x28\x58\xd8\xd8\x8c\x4c\x3e\x0a\xd3\x4e\xf5\xce\x70\x86\xce\x69\xb0\xd9\xb9\xda\x89\x6a\xd3\x09\xce\x76\x61\x9b\x3a\x81\x68\x86\x6f\xda\x3d\x89\x7e\xbf\x60\x29\x78\xd8\x77\x46\x8d\x23\xe4\xba\x47\x16\x1a\x2b\xef\x94\xaa\x34\x66\x10\x1a\x9f\xad\xf3\x59\xb8\x9c\xe3\xb7\x94\x14\xdb\xb7\xf0\xbc\x32\x61\x4f\x8b\x91\x19\xaf\x98\x34\x35\x59\xe6\x7a\x9a\x70\x8a\x00\x42\xc1\xd7\x0d\x8c\x1f\x9a\xe9\xd3\x28\xa4\x26\x7c\x5a\x94\x2c\xbc\x81\xa9\x64\xe8\x89\x52\x11\x6e\xb6\xc6\x1f\x9e\x7f\xb1\xbb\x6e\xd3\xcd\x59\x8f\x03\x01\x0d\x82\x74\x6c\x7a\x0c\xd7\x71\x1c\x63\xf0\x0c\xb4\x7a\xe5\x2f\xfe\x87\xff\x11\x19\x64\xc1\x07\x2a\x50\xe4\xd7\x7c\xd5\xce\xac\x27\x69\xbd\xaf\xf1\x2e\x0c\x08\xce\x8f\xef\xd3\xab\x2a\x47\x76\x41\x4e\x52\xb5\xe2\x36\x4c\x98\x73\x13\xa5\xe4\x03\x14\x55\xf8\xc5\xb6\x3c\xf5\x24\xc9\xc2\x9c\x4a\xe1\x70\x10\x55\x27\xaa\x7b\xc9\x16\x21\xc5\x83\xae\x65\xd3\xe7\x10\x99\x4e\x4d\x42\x14\x9f\x14\x60\xbc\xa4\xf2\x23\x8f\x06\xca\x8f\x3c\xda\x4a\x82\x18\xc6\x59\x98\xe5\x94\x8c\x90\x16\x1a\xfa\x7a\x25\x35\x7e\x50\x77\xb5\xfb\xee\x1a\x49\x1d\xc6\x36\xdf\x48\xd2\xb5\x6c\x46\x71\x73\x9f\xd5\x79\x9d\x3d\x34\x93\x80\x96\xce\x2a\xe5\xd8\x95\x70\x30\xb0\xa9\xf6\x61\x99\xa7\x8a\x6f\xca\xdd\x61\x77\x92\xda\xd5\x5f\xea\x6e\xfc\x14\xcd\x39\x6c\xd1\x75\x78\x3e\x8e\x8b\x6e\x79\x5e\x12\x43\xa7\xd0\xc9\x82\x8f\x33\x94\x03\xbe\xeb\x3d\x8a\xde\x60\xbf\x3a\x80\x92\xc0\xdc\x74\x28\x42\x14\x04\xba\xea\xdb\x45\xa8\x02\xbb\xcd\xfd\x5e\x38\x0a\x59\xb4\x1d\xf6\xf5\x81\x46\x04\xfc\x07\xdc\x62\x03\x63\xf2\x13\x53\x8f\xfc\x3b\x49\xbc\xe3\x64\xd2\x1e\x7c\x5a\x85\xbd\x0f\xc9\x54\x23\xdb\xbc\xb7\xe7\xe9\xd3\xd1\x1d\xea\xce\x64\xcf\x29\xb5\xbb\xa7\x58\x85\x7e\xa2\xe7\xd1\x6d\x1f\x97\x95\xaf\x05\x9f\xf7\x51\xa9\x90\xd8\xa7\x14\xcd\xe8\x1f\x23\x8d\x4c\xe3\xf3\xff\x7f\x8a\x12\xc4\x52\x99\x79\x52\xe9\x03\xbd\xb2\x61\xa3\x68\xc6\xc3\x7a\xe1\x44\x22\x63\x7c\x8c\x9e\x0c\xc1\xd9\xf5\x06\x5f\xc5\xc2\xa1\xee\x46\x18\xc7\xc9\x86\xc0\x63\x34\x7b\x0c\x5f\x2b\x3c\x93\x9d\x84\x91\x9d\x64\x9b\x5a\x77\x93\x85\xed\xf8\xa6\x8d\x43\x23\xb6\x1b\x12\x70\x48\x6f\x03\xcd\x95\xe8\x4f\xf8\xc6\xde\xb3\x6e\x8d\x4e\xd2\xe4\x65\xdb\xcf\xb3\x9a\x92\x95\x06\x93\x75\x78\xee\x44\x16\xcd\xa7\x45\x37\x4c\x24\x88\x2e\x4c\xd4\x65\x4d\x1c\x7c\x59\xa1\x5a\xb3\x3c\xe9\xaf\x01\x50\x8f\xe2\x31\x56\x0f\x2b\x32\xf3\x4d\xad\x04\x9a\x15\xf6\x71\xd5\x09\xc3\x25\x59\xe9\xe1\x53\x66\x9e\xbc\x64\x61\xd6\xa0\xf5\x00\xef\xe9\x0c\x8c\x21\x5c\xbc\x93\xd8\xb9\x2e\x0d\xe2\x54\x40\x3a\x68\x2b\x94\xb2\xb2\xae\x31\x2b\xa8\x23\x9a\x9c\x30\xf0\x77\x41\x97\x89\x81\xba\x8b\x84\x1f\xdc\xad\x53\xae\x10\x60\xc6\x36\x0d\xfb\x26\x36\x18\x1c\x9c\xeb\x2c\x13\xcd\x37\x9a\x89\x7e\x14\xc6\x6b\x7b\xab\x05\x2b\x73\x43\x7f\xc8\xc2\xba\x81\x27\xc3\x44\xd7\x11\x1e\xfc\x9b\x2a\x22\x62\xb0\x06\x0e\x81\xf3\x8a\x96\x7f\x1b\x77\xb8\x3a\x8d\xde\x25\xb7\x2b\xce\x52\x92\xca\xe1\x7d\x1d\xb7\xde\x91\xd2\xf7\x8a\x0d\x13\x13\x75\xf4\x57\xd3\xb8\xcb\xcf\xec\x96\x44\xcf\x9a\x6e\x57\xfe\xef\xe9\xbb\xf8\xba\x2e\x22\x3c\x4e\x72\xab\xdb\x55\xef\x2b\x00\xf0\xfd\xc6\x72\x3e\x70\xa0\xfb\xb2\xdd\xb0\xe8\x89\x41\x31\x02\xe8\x38\xbe\x6e\x55\x84\xcd\x46\xc4\x6a\xc6\x8b\x92\xf7\x40\x50\x6b\xf6\xf1\xfc\x16\xe3\x24\x1e\x98\xcd\x3d\x5a\x91\x1b\xab\x0c\xd9\xef\x1b\xd8\x6e\x4e\x2b\xdf\x1d\xb3\x0f\x39\x34\xc5\x37\x7e\x1f\x09\x33\xf8\x89\xdb\x15\xd4\xf4\x3a\x59\x30\x54\xc0\xff\x46\xf5\xb4\xbf\x89\xe9\xc5\x2a\xdd\xd5\xd0\x3c\x23\xf1\x8c\x3e\x21\x6f\x05\x69\xc1\x00\x59\x25\xbd\x7c\xb1\xf1\xf6\x07\x0e\x74\xc3\x78\xdd\xc6\x40\x19\xbb\xda\xec\x39\x55\x9b\x3d\xa7\x2a\x0e\x83\xd4\x82\xf3\x7d\xc6\x23\x18\x10\x63\x70\x77\x7e\xbd\x23\xbf\x45\xb0\x6f\x35\x49\x87\x56\x72\x33\x4a\x26\xf9\xa0\x13\x56\xf6\x2b\xfc\x65\xf3\xea\xab\x9b\x10\xc0\xd2\x09\x38\x39\x48\xb7\x26\x3f\xa4\xd6\xd7\x2f\xd2\xea\x31\xf1\x3e\xe2\x41\x68\x77\xc2\x61\x56\x37\x46\x2e\xe5\xe3\xf4\xc6\x3c\xe1\xe1\x05\xfd\xe2\x61\xd6\x2f\x32\x6a\x6b\xad\x16\xb6\xb8\xd9\xd5\xf4\x88\x49\xd7\xac\x21\x43\xa3\x58\x43\xee\x2a\xd6\x90\xbb\xea\xcf\xf2\xcd\x35\xab\xc7\xe1\x5b\x78\x48\xbe\x69\xb4\x97\x7d\xae\x9b\xda\xf5\x24\xca\xc3\x78\xc8\x3c\x2c\x0c\x1a\x09\x94\xc1\xbb\xa8\x00\xfb\x26\xcb\x2c\x93\xda\xd2\x5a\xc3\x92\xc4\xd3\xf0\xb5\x23\xeb\x32\x43\x1b\x0f\xcc\x8c\x12\x26\x3b\x4a\x63\x8d\xea\x07\xa6\x58\x92\x7b\x5b\x9d\xaa\xfd\x0b\xae\x37\x80\xde\x1a\xeb\x75\x4e\x09\x99\xcc\xb5\x60\x1a\x16\x85\x53\x84\xe5\xaa\xa4\xdd\x6d\xaa\x99\xb3\xce\x29\x4c\xd5\xa5\xe0\x29\x1d\x05\xf4\xd1\x18\xf0\x82\xe3\xc8\x3b\x4d\xb3\xc1\xd7\xad\xed\x1f\x26\x85\x0c\x36\xbc\x7e\xac\x71\xbe\x2e\x5b\xfa\x7d\x0f\x1c\x38\x38\x8b\x2d\xeb\x62\x12\xef\x82\xc1\x0a\x21\x29\x0e\xd1\x3c\x21\x9a\x6f\x8b\x3f\x8a\xd4\x37\xdd\xbb\x9a\x9e\x1b\xaa\x56\x2a\x99\xd4\xfe\x66\x11\xa6\x9e\x0c\x01\xc7\xc8\x47\xf4\x31\xbe\x6e\x23\x75\xc8\x93\x62\x38\x92\xe3\xd2\xf1\x20\x54\x5b\x48\x78\x10\x1a\x44\x3a\xcb\x4b\x3f\xd7\xed\x9b\xd4\xda\x14\xf6\xcf\xf5\xdf\xf8\x5e\x1c\xa7\xe4\xd0\x37\x29\x96\xb6\x28\x3e\x29\x82\x94\xb3\x0a\xd9\xdf\x4f\xc6\x2b\x26\xc7\xde\x85\xc3\x78\x42\x49\x5b\x9e\xa8\xc3\x39\xc3\x18\xf1\x83\xa0\x90\x34\xb8\xec\x7d\x2d\x42\xf0\xe5\x1a\x42\xf4\xaa\xea\xc5\x5a\x31\xe9\x4a\xf5\x68\x5a\x72\xea\x8c\xe6\x9b\x3d\xa3\x42\xf1\xbe\xc9\xe6\x54\x45\x66\x6e\xea\xf9\xaa\x45\xca\x07\x51\xdd\xde\x9e\x02\xe9\x7c\xa8\x36\xc4\x87\x2a\x48\x18\x99\xf5\x30\x1e\xee\x51\x29\x8a\x2e\x60\x03\xf8\xf6\x2b\x14\x0e\x2b\xb0\x97\xe4\xb2\x77\x4e\xe9\x5c\xc5\x99\x77\x1c\x73\x24\xb4\xdd\xf5\x79\x70\x94\x4b\xbf\xad\xb4\x12\x6e\x28\x3a\xd3\x63\x6d\x30\xf8\x22\x0e\x23\xbb\x6e\x59\x57\x56\xc8\xeb\xbc\x01\x3d\xad\x02\xf9\x49\x98\xe7\xd9\x4a\x91\x02\xd4\xf2\xa2\xab\xdb\x55\x7f\x8d\x94\xed\xf7\x30\x98\x42\x13\x52\x57\x0e\xb7\x4f\xd0\x3f\x22\x9d\xfa\xd7\xe4\x5a\x21\x43\xba\xa4\xe4\xf8\xb6\x93\x41\xc0\x09\x7f\x4f\x77\x88\x2d\xa1\x5c\x04\xff\x82\xb3\xb0\xd8\x18\xff\x73\x0d\x86\x79\x51\xc7\x76\xa7\x29\x00\x40\x52\xef\x74\xa0\x00\x88\xc7\x4a\x95\xf3\x86\xcb\x87\xca\x1d\xf0\x46\x2e\xe4\xf0\xe5\xb9\xd3\x8d\x2d\x4b\x5b\x22\x0a\xd7\x2d\xbb\xb7\xa8\x71\x7f\x4c\x83\xe7\x1a\x55\xaa\x37\x96\xa0\xf3\xd3\x4a\x3b\x6d\xa5\x08\x23\x21\xd2\x5c\xd4\x74\xa3\x0b\x72\xa3\x84\x21\x48\x6a\x2d\xda\xe1\x53\x46\xa0\xd2\xd0\xbd\x2d\x8e\x57\xb8\x72\x52\xb1\x4a\xd1\xf5\xc6\x1f\x08\x94\xf2\xd6\xe5\x46\xab\x55\x15\x91\x16\x13\xe2\x84\x87\x19\x7d\x9c\x38\xb6\x71\xc2\x75\x7a\xaa\x30\x88\x34\x13\x4e\x33\x54\x26\x70\x12\xed\xee\x29\xd5\x85\x88\x98\xd6\x77\x29\xe4\x0e\x07\xa6\xa2\x1a\xe1\x31\xcb\xd0\x4b\x40\x00\x75\xa5\x4e\x7d\x49\x93\x2f\xf5\x25\x5f\x11\x84\x05\x47\xb6\xfa\xc9\x5e\x8b\x67\xd7\x4f\x8a\x09\x17\x5e\x74\x66\x4e\xaa\x56\x72\x98\xf5\x69\xdd\xcf\xa9\x30\x18\xa0\x5d\x0c\xde\x53\xbd\x7a\xef\xd5\xf2\x3c\xef\xc1\xab\x98\x24\x60\xe3\xce\xa8\x83\x74\x92\x64\x99\xcd\xb2\x90\x73\xd9\x58\x9b\x77\x15\x28\xe3\x6e\xf9\x19\xf7\xc7\x61\x3c\x4a\xb2\x49\xc8\xc4\x64\xda\x09\xfd\xd5\x17\x9c\x13\xfa\x19\xd5\x2b\x15\xe7\xa4\xd5\x16\x72\x1f\xb7\x20\x37\x3a\x8e\xb9\xf9\x64\xc3\x6b\x7b\x6e\xb1\x9b\xda\x0c\x67\xa7\xea\x3f\x64\x99\x26\xbe\xa9\x11\x29\x0f\x4c\x4d\x01\xa1\x1a\x67\x01\x08\xeb\xad\x1c\xc6\xd9\xd3\xf4\x1d\x18\x11\xc9\x30\x62\xff\x5d\x57\x5d\x90\xbb\xa7\x35\x88\x9d\x12\xe9\xf9\x80\xbe\x1c\xf6\xee\xbb\xa5\x27\xe6\xe0\x7e\x13\x69\xed\xa2\x85\x87\x27\x3d\xad\x7b\xb0\xae\x31\x24\xc0\x71\x71\x57\x4b\x85\xa5\x6d\x03\xd7\xba\xf6\xde\x7d\x82\x1a\xe0\x34\x79\x03\x26\x43\x88\x76\xab\xe5\x0d\x57\xfc\x16\x55\x61\x70\x46\xff\x3e\x4a\xed\xfc\x8b\x4a\xf4\x7a\x27\x12\x00\x08\x05\xff\x55\x9b\x2c\xf1\xc0\xc6\xa1\xf8\xd4\x4a\x2b\x7e\x41\x6e\x6a\xd4\xf8\x71\x96\xa4\x79\x58\x8c\xe7\xfc\xd4\xdf\xc2\xcb\x8a\x22\x06\x3d\x87\x48\x62\x74\x1c\x41\xe1\x2c\x96\x25\x76\xc2\xf5\xf2\x67\x3e\xc1\xb9\xcd\x72\x93\xdb\x6c\xc3\x66\xf9\xac\x82\x39\x60\x1f\x08\x59\x74\x35\xe8\x78\xb9\x13\x9a\xe6\xa5\xd3\x53\x31\x78\x1a\x32\x7e\x52\x54\x37\xe9\x8d\xc4\x8a\x74\x9e\x5b\x7c\x74\x45\x0b\x24\xe2\x07\x70\xee\x7e\x1c\xe8\x86\x1a\x82\x42\x26\x45\x8e\xd2\x3a\x77\x8b\xa8\xb2\xc3\x1c\x42\x65\x38\x77\x8c\x4d\xe7\x1b\x0d\xc3\x45\x0f\x15\xd6\xc0\xde\xde\xe3\x0e\x38\x3a\xb0\xd4\xec\xe2\x29\xff\x4f\x2a\x94\xc2\x07\x78\x6a\x61\x51\x6d\x09\x37\x36\xc2\x38\x76\x81\x9d\x34\x21\x79\x7c\xfb\x65\xb5\x13\x93\x7e\xdf\x64\x61\x12\x43\x9b\xd4\xc9\x90\x01\xac\xcd\xd7\x6d\x72\x1e\xab\x61\x4c\x32\xba\x1d\xb5\x26\x6e\x96\x6a\xb5\xdc\x6c\xef\xd0\xcf\xf0\x2b\xd8\x29\x0f\x14\x24\xfc\x41\x5b\x37\x7c\xdf\xc6\x88\x50\x3d\x98\xe2\x72\x0d\xe6\xaa\xb6\x7b\x9e\xc4\x9b\x3a\x69\xf9\x4f\x75\xf1\xfb\x9f\xb6\x51\x74\xf7\xcd\x78\x62\x4d\xa1\x88\x24\x76\xeb\x5e\xaf\xdd\xd3\xad\x0e\xaa\x2c\xc7\xd8\x66\x39\xdb\x39\x69\x14\x52\x7e\xc2\x99\xc0\x7b\x68\xa9\x09\xa3\xbe\x49\xd9\x43\xc3\xaa\x7a\x5d\x67\x27\x5f\x57\x92\x1e\x2b\x49\xb2\x16\xc6\x43\x00\xdb\x30\x2a\xe7\x14\x61\xf2\xb9\xc6\x36\x3d\xf4\x7c\x37\x1c\x4f\x92\x34\xa7\xb4\x2e\x0e\x31\x50\xc5\xf1\xb5\x27\xe2\x8b\x33\x55\x1a\x47\x89\x10\x1a\x54\x7c\xad\xf0\x6f\x1b\x61\x9e\x6f\x76\x3a\x9f\xfd\xac\xb4\xf7\xe3\x18\x93\x5e\xff\x26\x8d\xf6\xb3\x28\x91\x86\xa2\x62\xed\x08\xfd\xab\xd7\xe4\x1b\x87\x96\x35\x7d\xf2\xf0\xd9\xeb\xc6\x9b\x1d\x53\x82\xe3\xc7\xda\x14\x7c\x52\xbb\x6e\xe3\x42\xbe\xdf\xf1\xb0\x55\xdf\xc0\x37\x81\x0e\xd7\x8b\x61\x75\x4c\xd8\x19\xb2\x15\x32\xce\xde\x71\xbc\xa6\x20\xce\x4d\x90\xe9\xd2\xf2\x52\x77\x6c\xd1\xac\xec\x7c\x9d\xa0\x96\x6d\x6f\xf4\xbd\xed\xef\x9a\xc1\xba\x4d\x73\x50\x40\xf9\x4d\xf0\x9e\x36\x99\xef\x35\x76\xc4\xc2\x21\xf2\xb7\xea\xea\xbe\x4a\x73\x43\xb2\x46\x91\xa1\x0a\xac\x12\x87\x7b\x91\xd1\x4b\xa7\x35\xd9\xc8\x1e\x4a\x42\xc3\xbd\xe4\x5e\x1c\xd7\xb3\xec\xf1\x52\xef\x37\xb9\xb2\x97\xba\xd6\xf0\xc6\x6c\xcd\xd7\xfb\xa6\x11\x02\x76\xcc\x79\x7f\x1c\x94\x6e\x48\x99\xee\x9a\x2a\xdf\xef\xaf\xf9\x10\x55\x2a\xf2\xee\xa6\x01\xe0\xe0\x93\x3d\x2d\x18\xc0\x81\x3a\x26\xde\x10\x0e\x34\x22\x21\xfd\x6b\x67\x3c\x32\x3e\x34\x2b\x36\x0f\xfb\x5c\x39\x10\x2a\x14\xfa\x45\x4e\xd5\x2b\x39\xe4\x9b\x0a\x41\x59\x64\x76\xb5\x80\x03\x82\x13\xe8\xb2\x42\x6a\x5d\x6e\x8c\xd3\xfe\xfd\xdd\xd8\xbe\x92\x73\x78\xcc\xb9\x56\x5a\x57\x5c\x1d\x0e\x14\xdf\xe6\x4d\xf2\x08\xe0\xd2\xde\x6f\xec\xdc\x6a\x91\xad\x86\x91\xac\x16\x9c\x00\xb7\xb0\x5a\xf8\xc6\xd5\x9a\x26\xa9\x5d\x0f\xed\x06\xed\x71\x78\x15\xa0\xbf\xe4\xeb\xc6\x86\xdc\xbf\xd0\x4d\xed\x98\x79\x1b\x55\x93\x02\xfc\x24\x81\x50\xb5\xe4\xdc\x27\x36\x5d\xb5\xfd\x9c\xf3\x2c\x6d\xbc\x9e\xfe\x28\x1d\xa4\xc9\x3a\x28\x1a\x84\x9f\xa2\x7a\x5d\xa1\xa7\x68\x88\xb4\x57\xb6\x3c\x59\x83\xc9\x74\x6a\xe6\xd5\x60\x89\x6f\xb6\xa5\x38\x7e\x78\xbe\x7b\x78\x7e\x01\x3c\xf2\xd8\xb4\x7f\x51\xfa\x5c\xe9\x6b\x34\xb6\x8c\x68\x2e\x95\xeb\xf6\x1a\xf9\x41\x52\xb9\xf3\x22\x9f\x5f\x57\x9e\xc2\x5f\x90\x13\x25\x60\x6c\xe6\x6f\xf1\x3c\x18\xab\x11\xca\x0e\xe4\x1f\xe1\xaf\x6e\xd1\xbb\xf1\x75\x2d\x08\xb4\x83\x6c\x9f\x4a\x7c\x9e\x0f\x94\x08\xcb\x19\x7a\x48\xf8\x61\x37\xe8\xb9\x44\x6c\xde\x13\xa6\xef\xa6\xc5\xcd\xac\x43\xba\xa0\xcb\x09\x79\xd1\x3a\xa2\x87\xe1\x70\x01\x7e\x95\x68\x1a\x79\xf8\x07\x37\xb5\x23\x85\x74\xaf\x4e\xe6\x9d\xae\x3d\x06\x07\x53\x70\xe3\x58\xc2\x22\xfd\xac\x75\xbe\xf0\x0a\xd2\x82\xec\xfb\x3b\x30\xc1\xee\x81\xaa\x9d\x26\xdc\x3e\x0a\xd0\x73\x3d\xa8\xf5\x6c\x55\x33\x83\xf0\xe7\xaf\x14\x3f\xc4\x0f\x69\x36\x5c\x18\x5c\x1d\x2e\xfc\x55\x5a\xd8\xab\xdf\xb7\x13\xd1\x18\xc3\xf0\x9e\xc6\x38\xf0\x4d\xb9\xa5\x19\x72\x79\xa9\xbb\xb8\xb8\x93\x06\x07\x79\x8c\x8b\x04\x2e\x72\x39\x54\xf7\x35\x08\x04\x9c\xa1\xab\xde\x44\xe7\xad\x1d\x62\xcd\x95\x8d\x1f\xb6\xc4\x97\x5d\x13\x0e\x66\x7c\x35\x05\x48\x70\xf8\x6a\x0f\x69\xd4\xe4\xac\x68\x4b\x8c\x8d\x4d\x6c\x86\x28\xcc\x2b\x31\x96\x25\x8e\xb8\xaf\x63\x21\x08\xf7\xe7\x27\x39\x21\x7d\x13\x39\xfb\xc1\x55\x6c\x2d\x9c\xf0\x81\x07\xbe\x90\x9f\x93\x76\x6a\xd2\x63\x0a\x2a\xf1\x8e\xb3\xa4\xd9\x86\xb5\x79\x6c\xb3\xac\xe3\x71\x31\xe7\x14\x81\xe7\x39\x95\x4e\x4a\x6d\x32\xe7\xc5\x6c\x38\x1e\x76\xc4\x17\xce\x6d\xbe\xab\x1d\x18\x3c\x1f\xc2\x94\x33\x8d\x17\x5b\x5c\x74\xa7\xa8\xcb\x8e\xb2\x6c\x3d\xa2\x7d\x4d\x1c\x22\x0d\xb6\x2d\xa9\xfd\xd4\xf4\xed\x28\x49\xb9\xb5\x1c\x1b\xf0\x54\xe0\x13\x97\xa7\x7c\x3b\x63\x92\xa6\xc5\x24\x9f\xf5\xa9\xbd\x93\x81\x6a\x44\xfd\x48\x27\xde\x35\x7d\xf5\x59\xe5\xe1\x85\xf1\x7a\x98\x5b\xf4\x0b\xb0\x4a\x12\xc6\x02\xaf\xf9\x28\xf0\x1d\x9c\x67\x15\x6b\xc7\x1b\x2a\xe3\x1f\xdb\x8d\x68\x73\xd6\x0b\x0d\x70\x64\x89\x6a\xc8\xd3\x74\xe6\xa1\x64\xbd\x77\xaa\x94\x36\xcf\x2a\x2c\x52\xdf\x46\x51\x11\x19\x62\xaa\x7e\x74\xa4\x6c\xb2\x2d\x23\xf6\xb8\xd1\x0a\x29\x48\x93\x21\xda\x3a\x29\xe0\x78\x84\xa6\x77\x3c\x3d\x7b\x11\xc2\x1c\xd4\x12\x07\xe4\x69\xb8\x52\xc4\x1c\xc5\x3b\x1f\xc6\xef\xaf\xc6\x21\xfa\xdc\x62\x37\x4b\xa2\x64\xc6\x63\xde\x8e\x96\x0a\x78\x77\x42\x69\x74\x5d\x0b\x3c\xab\xe5\x24\x0d\xd7\x4d\x6e\xa3\x4d\x44\x45\xb0\x72\x10\xb0\x87\x5b\xc3\x0c\xa4\x02\xe2\x6f\xd2\x7d\x4d\x8a\x95\x28\xcc\x46\x72\x28\xc2\x46\xcc\x02\xa9\xc6\x37\x53\x85\xce\x09\xe3\x70\xdd\xc4\xdc\x3d\x22\xa9\x38\xcd\x94\x72\x4e\xf3\xb2\x36\x4b\x72\xfb\xf7\x77\xb3\xdc\xda\x94\x76\x39\x90\x47\x77\x03\xe5\xb1\x9e\x53\x9c\x93\xa7\x15\xfc\xe4\x05\x93\xce\xa8\xda\xe7\x23\xe4\x02\x44\x24\x52\x43\xfe\x3d\x89\x4f\x6e\xe3\x04\x7c\x0b\xc0\x3b\x7d\x33\xf0\x64\x1a\xdf\x54\xf4\x2a\xa4\xab\xc8\x5c\x15\x0b\x87\x5c\x25\xc5\x27\x18\x2e\x2a\x9a\xa7\xdc\xbc\x12\x02\x9d\x26\xf0\x55\x1a\x2a\xb8\x9a\x30\xe1\x7c\x4d\xf3\x2d\x80\xd7\x96\x70\x34\x32\x43\x5f\x08\x70\x2c\x01\x2e\x07\xa0\x2b\x4e\xa6\xc8\x47\x49\x1a\xe6\x9b\x73\xf4\xcb\x35\xad\x2d\xe7\x90\xb8\x95\xf6\x10\x8b\x9b\xff\x4a\x29\x02\x36\xa5\x5b\xc9\x01\x89\x29\xe9\xde\x51\x7c\x39\x17\x35\x79\xcd\x27\x11\xcc\xa7\x92\x03\xd3\x09\x4a\xa9\x33\xd6\x24\x69\xb3\x22\xca\x65\x81\x71\x7d\xba\x86\x23\x70\x9c\xc7\x45\x0c\xed\x6b\x64\x27\xef\x90\x91\xc0\x5a\x40\x49\x5a\x72\x60\x3e\x09\x39\x34\x24\x62\x8a\xbc\x36\x0b\x94\xab\x8e\x94\x8f\x5a\x9a\xe5\x96\xba\x59\x3f\x11\xa5\x87\x56\x2c\x6a\x53\x0b\x7b\xa9\x9b\xac\xae\xda\xb4\x3e\x4a\x7f\xa8\x3b\x98\xfe\x50\x13\xc9\x87\x51\x24\x5d\x5b\x22\xa6\x43\x3f\xc0\x37\x0d\x7b\x73\x78\x7e\xa1\xfb\x72\x91\xe5\xe1\xaa\x4b\x2e\x89\x5b\x53\xbd\x8b\x64\x44\xb7\xce\xc3\x33\xdd\x38\xec\x8f\x92\xc8\xb0\x3a\x00\xea\x11\x4c\xfc\xcc\x37\x0d\x66\xed\xfd\xfb\x89\x4c\xaa\x88\x5c\x6d\x58\xd4\x02\x55\x1b\xe7\x85\xd6\x34\x45\x21\x48\x77\x0d\x45\x97\xf5\xd7\x16\x00\xd7\x48\x29\x85\x5f\xc2\xf3\xe0\x5c\x6f\x43\x6c\xae\x14\x19\xaa\xb5\xf0\x3e\xc0\x9c\xc7\xd7\x8a\x23\x21\x37\xe9\xd0\xba\x55\x05\xab\x80\xce\x56\xbe\x56\x82\x73\x49\x11\xf7\x2d\x81\xdf\xb8\x07\x06\xd6\x43\x0b\xf6\x69\x26\x5a\xbe\xae\x4b\x08\xc4\x83\x9f\x26\x9f\x08\x35\x45\x28\x46\xa1\xf9\xec\x1a\xc0\x4c\xf8\xd9\xed\xb0\x9c\xe2\xbf\x74\x7e\xe5\x37\x5c\x13\x46\xb5\x80\x55\x37\x99\xf8\x35\x1f\x13\x94\x1d\x4e\xf0\x71\xb8\x7d\xee\x66\x51\xe9\xa2\x77\xf6\xef\xe7\xc3\xe0\xcf\xe1\x05\x73\x4b\x4d\xd0\xf9\x82\xd8\x77\x64\xed\xb9\x75\x2c\x50\xa8\xf6\x2b\x40\x77\x60\xd4\x3b\xd4\xce\x83\x04\xc4\xf6\x1e\x61\xba\xa4\xf0\xe9\x49\x2f\xe6\xa6\x04\x66\x92\x26\x3e\xb8\xc9\x4c\x99\x15\x28\xa2\x0c\xd1\x1f\xe7\x56\xa5\x40\x09\x10\x7f\x0d\x66\xc8\x79\x1a\x4e\x97\xf2\x08\xb9\xfd\x88\xfe\x9f\x22\x18\xb1\xb0\x64\x55\x9e\x29\xf6\xfe\x4e\x97\xf6\xb3\xaf\xf4\xad\x1d\x70\x14\x8b\xa7\xbe\xa3\x69\x49\x8f\xd1\x4b\x7f\x52\x0e\x42\xdc\x42\x28\xb5\x6a\x67\x05\x1d\x36\xd2\xdb\xa9\x08\x1f\xaf\x04\x9e\x35\xa5\x6f\x56\x66\x3c\xf1\x25\xfb\xa3\xc2\x74\xe1\x23\xf0\xeb\xaa\x1c\xdd\x4f\xe2\xbe\x4d\x05\x95\x8a\x22\xde\x09\x25\xcc\x70\x42\xb1\x25\xae\x9a\x30\xdd\xc4\x26\x14\x31\x25\x9a\x35\x51\x59\x6a\xc9\xf5\x2b\x67\x54\x39\xa0\xda\x31\x6d\xfa\x7e\xcb\xdd\xfe\x66\x3f\x72\x94\xe6\xae\x1c\xe6\x5a\x40\x2e\x2a\x16\xcf\x30\x35\x68\xfb\x16\x90\x8e\xc2\x01\xdc\x55\x8a\x76\xe7\x83\x1a\xca\x53\xda\xfb\x47\xd6\x44\xf9\xa8\x6f\x52\x0b\x9b\x84\x4d\x06\xf1\x38\xbe\x56\x9d\x21\xab\x11\xd3\xdc\xb4\x43\xee\xe5\xcf\xa2\x30\xb7\x29\xe5\x62\xe9\xc9\x18\x46\x46\xc1\x8b\x40\xca\x9a\x12\x57\xa9\xcd\xc3\x54\xc0\x65\x8e\xc6\xdd\x57\x07\x2e\x6a\x24\xf1\xd8\xa6\x43\xab\x19\x09\x6e\x28\xd4\xcb\x8d\x52\xc1\xd0\xc2\xe1\x28\xcf\xac\x25\xcb\xb3\x70\xa8\x95\x3f\x56\x44\xbb\x56\x52\x53\x8c\x6d\x98\x51\xb2\x56\xf7\xa2\x30\x5f\x3a\xdf\xe8\x2e\xde\x24\x42\xa0\x4d\xea\x63\x08\x22\x76\x11\xef\x0a\x6c\x0d\x93\x91\xd6\x1d\x2f\xdd\x23\x01\xd3\x31\x07\xa6\x7c\x51\x0c\x52\x7e\xf3\x77\x1b\x86\xfd\xd0\xf3\xdd\x38\x89\x01\x81\x15\x54\x87\xaf\xed\x5c\xd6\x12\xd0\x49\x96\x43\x1d\x05\x49\x4f\x86\xf6\x02\xab\x79\x42\x89\xc5\x5c\x0e\x7e\xf6\x13\xb6\x61\x18\x67\x79\x98\x6b\x6e\x4a\x29\x14\xa9\x1c\xd1\x07\x2d\x50\xda\xa5\xee\xaa\xc9\x88\xaa\xab\xb2\xb5\x40\x68\x1e\x41\xf9\x84\x6f\xda\xbc\x94\xff\x2f\xe4\x96\x8e\xbb\xae\x8a\x5b\x68\x34\x98\x21\x12\x1b\x40\xe8\x22\xbd\x4b\x6a\x53\x50\x8e\xe1\x44\xb8\x19\xa8\x6d\x7c\x5a\xb1\xeb\x1f\xd7\xbd\xc9\x23\x33\xb1\x03\x72\xf2\x61\xbc\x98\x7e\xd2\x9d\xa7\x87\x05\x09\xfa\xd7\x8d\xf3\x94\xea\xd0\xd6\xa4\xb1\xcd\x72\xa4\x70\xa5\x77\xce\xa3\x8b\xa0\xec\xc2\xb4\x43\x8d\x7c\xa2\x2b\x1b\x8d\xc2\xcc\x86\x83\x04\xe6\x10\xe3\x72\x52\xc9\x0e\xde\x0d\xbc\x82\xc1\x85\x46\x8e\x8e\x62\x23\xb3\x3e\x30\x6a\xdf\xd6\x64\xda\x2f\xba\x14\x5d\x9c\xe4\x61\x5f\xbc\x0c\xe1\xce\xf4\xe3\x7f\xde\x21\x8e\x2a\x17\x8e\x8d\x93\xeb\x7f\x75\x6d\xda\xd7\xda\x98\x00\x33\x6b\x52\xe9\x31\x11\xb2\x36\x9a\x27\x84\xc6\x37\x02\xc5\x25\xfe\x81\x32\x38\x2b\x26\x85\xe5\x84\xe1\x83\x37\xc2\xd7\xce\x86\x8d\x8b\xac\x9f\x50\xfc\xca\xbb\x16\xf9\x62\x6e\xa7\xe7\x9b\xc0\x53\x90\xac\xdb\x28\x99\xa0\xc8\x5c\x67\xa8\x47\xe5\xe3\x89\x9e\x42\x3b\xbf\xa3\xb2\x29\xa0\xd6\x7c\xd4\xa6\x82\x80\xb8\xac\x3f\xe3\x5d\x66\x6a\x3e\x7d\x84\xa2\x3a\xce\xce\xbb\x4a\x2f\xce\x0c\x06\x61\xc6\x4a\x5b\x30\x15\xdf\x55\xac\x66\xdf\x6d\xb4\x47\xca\x5a\xc8\xd3\x70\xd5\xa4\x21\xfd\x8e\x6b\x59\x5f\x96\x04\xcc\x87\xda\xdc\xdc\x56\xa5\x3e\x9b\x86\xf9\x88\x18\x29\x35\xe3\xf1\x47\x8a\xcc\x91\xa1\xaa\x30\xf9\x77\x1a\xbf\x5f\xb9\xe1\x26\xce\xc3\xdf\x2c\x48\x94\x41\x2b\x20\x5e\x2a\x6b\xec\xfb\x2d\xb1\xf9\xd8\xf4\x47\x21\x49\xbc\xf0\x0a\x00\x90\xe4\xdb\xf8\xa0\xf4\xe6\xa9\x0e\x85\x36\x97\xfe\xc5\xee\xc0\xf6\xc3\x81\x2c\x4f\x69\x6e\x21\xc3\x29\xdd\x2d\x8e\x55\xba\x80\xf7\x3f\xab\x14\x48\x2f\x94\x2a\x0d\xbb\x7d\xea\xcb\xa7\xff\x05\x1c\x69\xc4\x2d\xbb\x7a\x2d\xfb\x67\x63\x14\x8e\xd9\xc9\x15\xd4\x49\xc7\xc9\x96\x9e\x56\xe9\xe4\xcc\xda\x35\x58\x5c\x49\x7b\xf9\x24\xc4\x37\x4b\x85\xe5\xd1\x75\xe7\x30\x5e\x8d\x0a\x1b\xf7\xa5\x54\x0a\xa7\xeb\x0f\x02\xef\x47\x9f\xaf\x67\x6d\x14\x47\x64\x4e\xb1\xed\x8b\x60\xf0\x96\xe4\xc3\x1d\x85\x34\xba\x23\xd4\xde\x2d\xd6\x36\xb5\x91\x91\xa0\xe2\x11\x3d\xea\xa3\x13\x5b\x33\xd8\xcb\xf3\x07\xbb\xfb\xf7\x63\xd1\x70\x5b\x01\x0c\x27\xbc\x97\x0f\xe9\x05\x61\x51\xbf\xe3\xe2\x42\xbb\xb2\xc2\xfe\x1f\x8c\x12\x34\x4e\x05\x2c\xd5\x51\xf2\x0c\x62\xc4\xfb\x45\x34\x31\x1d\xf2\x6d\x61\xdf\xf9\xe0\xe4\x1b\x75\xf2\x9b\xc1\xba\x89\xfb\x76\xa7\x87\x48\x9f\x57\x4d\x2a\xaf\xa9\x6e\xff\x2b\x98\x57\x69\xb8\xa1\xa7\xe6\xae\x42\x32\x98\x42\x61\x4d\x3f\x24\x6c\xc7\x6d\x04\x92\xab\x61\x3a\xe6\x88\x0d\x65\x87\xbb\x18\x6d\xbe\x69\x93\x1b\x79\x61\x79\x7e\x8f\x6f\x9f\x10\xb9\x1b\x1c\x30\x97\x15\x32\xe8\x75\x38\x38\xc8\x4c\x75\x7a\x8a\xfd\xf9\x2e\xb5\x30\xb8\x22\x83\x7f\x93\xff\xa9\xf4\x8e\x0e\x8f\x12\xf2\x3e\x47\x15\x54\xfc\x4e\xe0\x7b\x84\x9d\x2e\x6b\xa7\xc6\x80\x4f\xbf\xc5\x37\x2d\xbc\x6f\x91\x29\xe2\x01\xf7\x8b\x3a\x9a\x0f\x85\xc9\x75\x33\x97\x14\xd1\xa0\x53\x3d\xab\x20\x3d\xe9\x91\x84\x33\xa5\x06\x96\x19\x46\xc9\x98\xc8\x9f\xd8\x4c\xe3\x59\xff\xbc\x54\x6d\x7d\x7f\xde\x20\x31\x5b\x38\x44\x1f\x4d\x2d\x35\x62\x71\xd5\x8a\xfb\x6e\x03\x85\xf0\xba\xa9\x1c\x40\xd6\xdc\xc6\x26\x9c\x99\x6e\x55\x0e\xa2\xa3\x99\xb2\x48\x9b\xd1\xba\x89\x43\xa0\x22\x15\xe9\x8c\xec\xb5\x93\xee\x68\x1c\xa4\x9b\xce\x89\x67\xe1\xea\xc0\xf7\xc6\x6a\x4c\x64\x62\xd6\x22\x13\x0f\x76\x76\x9c\x68\x06\x0b\x4e\x3b\x72\x09\x4f\x76\x75\x91\x3a\x05\x59\xaf\x4e\xb9\xa4\x4c\x92\xc6\x9f\x08\x14\x97\xef\xd9\xba\x12\x7c\x9a\xed\xd0\x52\x61\xaf\x21\x6e\x14\xaa\x5e\x45\xe8\x0b\xd5\x21\xfe\x87\x40\x35\x60\x3f\x28\x15\x92\xff\xb5\xb6\xaa\x75\xdf\xe4\xd6\x17\xdd\x71\x5e\x3f\xa0\xb5\xc0\xd7\xaa\x17\x38\x29\xf2\xc8\x6c\x70\x2f\x30\x96\xca\x4d\xdd\x0d\x76\x53\xc3\x4c\x4d\x6c\x06\x66\x17\x7d\x2b\x5c\xa3\xef\x97\x3e\x2e\xfa\x50\x11\xbc\x9f\xc3\xe6\x85\xaf\xfc\xd5\xc0\x43\x64\xee\x28\x02\xc1\x07\x44\x82\xc0\xd7\x58\x84\xb0\x9e\x37\x1d\x00\x36\x35\xd9\x88\x17\x90\x34\x1c\x76\x1c\x65\xe7\x49\x45\xd9\xc9\x8b\x40\x5a\x14\x95\x90\x3c\x09\xa8\x2b\x86\x5c\x44\xb6\x02\x48\x71\x7d\x75\xa9\xb5\xaf\x4a\xad\x02\xdb\xf6\x03\xfa\x29\xbe\x0e\x9e\xf6\xa9\xc2\x61\x1a\xf6\x8b\x28\x2f\x52\xd2\x09\x7e\xd6\xbf\x72\xe5\x83\x20\x74\x85\x52\xa2\x93\xeb\x3a\x3c\x2f\xff\x7f\xda\xa4\xe4\x3d\xd8\xb5\xaf\x8c\x4c\x91\xb9\x6c\x91\xf8\x85\x64\x42\xf8\xa6\xa5\xe3\xf0\xd9\x6e\xb1\x9a\xc8\xf9\x2c\x51\x26\xad\x13\x84\x8f\xf7\x03\x4d\x7e\xab\xc8\x77\xf2\xb0\xbf\x66\x73\x00\xf6\x04\x27\x4f\x2f\x22\x62\xef\x1d\xcf\xcf\xab\x10\x0b\xff\x9e\xa6\x4e\xec\x63\x1b\xdd\xf6\xd8\xc6\x05\x63\x38\x81\xfc\xba\x4a\x33\x2f\x78\xee\x8e\xd3\x20\xfa\x76\x9b\xc3\x39\xb2\x66\x1d\xbc\x8d\x48\xac\x1d\xd3\xdc\xba\x6f\xd0\xa7\x81\xe3\x3a\xa7\x96\x64\x6a\x07\xae\x66\x23\x9e\xd0\x27\xfa\x4b\x6d\x47\xc5\x88\xdc\x5c\x1a\x0b\x84\x59\xd7\xb4\xd2\xd6\x49\x4c\x02\x5a\x06\x3f\xf2\x69\xd4\x24\x8c\x60\x9b\x05\xdc\xab\x7a\x0e\xeb\x7a\xc6\x9b\x31\x50\xf0\xa2\x4a\x47\x4f\xca\x37\xb5\x92\xae\xc9\xcd\x3e\xcc\x25\x9c\xfc\xa3\xf8\x69\x27\x94\xeb\xcb\x6d\x2c\x83\x8d\x64\x87\xa6\x6b\x61\xa6\x5c\x1a\xe2\xc5\x27\xe1\x1e\x02\xb1\x76\x93\xce\x73\x57\x61\x74\x3c\x24\xd7\x94\x18\xdd\x1c\x11\x9a\xc0\x42\xdc\x2a\x15\x5e\xe7\x81\xaa\x12\x7c\xfe\xb9\x83\x33\xba\x86\x5b\x43\xe6\x5e\xe5\x2c\x16\xe0\xae\xdb\x1a\x98\xd2\xe5\x79\x2e\xdf\xd7\xdc\x78\x7a\x4d\xbe\x71\x1b\x7f\x60\xe3\x4d\xb0\x3c\x0a\x73\xa5\x22\xe2\xd7\x4a\x22\xd8\x5d\x8c\xbd\x08\xfc\x8e\xfd\x96\x9e\x39\x2f\x0c\x3a\x08\xd7\xad\xdf\x69\xae\xdc\xe6\x04\x7f\x3f\x6a\xb8\x5d\x87\xe7\xbb\xfd\x64\xbc\x4a\x60\x27\x57\x3d\xe6\xe8\x87\x6f\x14\x75\xc1\xa8\x48\xa9\xa9\xcc\x76\x3c\x45\xec\xfb\x68\xe9\xe2\x1b\x95\xb8\x5f\x31\xfd\xb5\x61\x9a\x14\xf1\x60\xd6\xd7\xda\xce\x06\xde\x58\x5d\xa7\xa9\x72\x27\x8f\xeb\xb5\xbc\xa9\xf5\x33\x92\x62\x38\x8a\x58\xa5\x94\x3b\xdc\xe9\x85\xa4\xdb\xdd\xb5\x80\xd9\x39\x65\xd7\x67\x09\x86\x8f\xe2\xe3\xa7\x40\xe7\x28\xbc\xd4\xbe\x43\x92\x2b\xf4\xc2\xec\xe0\x97\xc1\xaf\x2f\x1e\x9a\xab\x51\x91\xd4\x84\x8b\x1c\xe0\xe9\x54\xa0\xb8\x9e\xff\x49\xe9\xc3\xa5\x1b\x0d\xfb\xf1\xc2\x12\x84\x0c\x6a\x3e\x0f\xf7\xfa\x49\x13\x79\x8b\x96\x71\x64\xfa\x6b\x51\xe1\xf3\x16\xa8\x57\x01\x1c\xc3\xd7\x0d\xff\xa4\xda\xf6\x49\x1a\x0e\xc3\x58\x9c\x69\x39\x38\xee\x68\x28\xc4\x1d\x9f\xb0\x30\x91\x61\xd2\x7a\x38\xaa\xef\x2a\xa7\xf5\xdd\xc6\x8a\x21\x22\x8e\xd4\x0c\x25\x3c\xc0\x51\x79\x43\xd1\xe8\x6e\x23\xc0\x14\x92\x47\xa7\xda\x38\x2b\x49\x9a\xad\xe3\x09\xb2\xce\xaa\x54\xe2\xd9\xb6\x52\x57\x6e\xfa\x79\xd8\xe7\x8c\x4f\x1b\xa4\xab\x81\x29\x5a\xe8\xae\x18\x86\xfc\x61\x7e\x59\x17\x9f\x6f\xda\xf4\x8b\xa3\x24\xc9\x40\x02\xc2\x84\x84\x34\xed\x92\x8b\xf6\x78\xf6\x5b\x98\x36\x39\x79\x6a\xa8\x44\x01\xb4\x7b\x30\x77\x1d\xa1\xbb\x3c\xcf\x86\x6d\xae\x57\xc3\xf1\x56\xdb\x09\x6d\xa2\x50\x68\x03\x24\x75\xa6\xd7\x51\x0a\xaa\xb4\xcd\x30\x48\x3f\x68\xeb\xd1\x48\xed\x38\x59\x77\x7e\x11\x1c\x8f\x13\x81\xaf\x8d\x9f\x68\x8c\x12\x05\x13\x49\xda\xf1\x8d\x81\x27\xf5\xa9\x7a\xb2\xd9\x9d\xb5\xbf\xbb\x92\x14\x71\xbf\x5e\x36\xb9\xa4\xf9\xcd\x2e\xd5\xcc\xfe\x38\x89\xf7\xe8\x64\x60\x35\x00\x5c\x90\x50\x8c\x27\x97\xb7\xb0\x4c\x1f\xf6\x3c\xd5\xb0\xc6\xd2\x9d\x5e\x0d\x0d\x66\xf0\x5d\xad\x51\xc7\x94\xd3\xf8\xe2\x37\x35\x25\xf0\xb6\xde\x67\x14\xef\xca\x98\xa8\x5e\x8b\xd4\x42\xd9\x05\x78\x9a\xaf\xc0\x65\xe2\x9b\x52\x29\x9e\xb3\x18\xbd\x34\xbe\xb6\x8d\xde\xc4\xe4\xba\xf3\xf4\x6d\xec\x30\xbe\x51\x55\xdf\xc1\xcb\xec\xd4\x33\x59\x13\x4d\x8b\x10\x37\x79\x77\x35\x0a\xc7\x61\x2e\x65\x51\x27\x65\xa6\xe4\xcb\xbc\xe7\x57\xa4\x61\x0c\xac\x8b\xf0\x0e\x78\xf0\x1a\xd4\xc8\x81\x1a\x3b\xdb\x78\xee\x17\x96\xba\xe3\x24\x65\x42\x25\x2c\xae\x1b\xf0\xee\xf8\x46\x25\x1c\x4d\x38\x70\x2b\x4a\x7c\x35\xff\xe8\x17\x1a\x7b\x15\x14\xc9\x83\x10\xfa\xc1\x9f\xd0\x93\xfd\x23\x3e\x54\x8b\x73\x9b\xc2\xdb\x34\x91\xee\x2d\x82\x99\x95\x9d\xde\xe6\x55\x4e\x52\xbb\x6e\xc2\x2d\x50\x1d\x76\x68\x84\x50\xcf\x17\x4a\xc6\xc9\xc0\x46\x14\x02\x09\x3f\x42\x67\xbf\x30\x86\x5f\x0b\x14\x7d\x07\x50\xf4\x4c\xd0\x1d\x68\x6c\x20\x8d\x81\xeb\xbf\x70\x3a\x7e\x47\x5a\x30\x11\xfd\x24\xce\xc2\x81\x94\x7b\x05\xa8\x7a\x5c\xe3\xb8\x8f\xab\x80\x78\xc5\x46\x11\x09\xae\x23\x3d\xc4\xca\x30\x81\x12\x76\x41\x61\x0e\xf1\xfd\x49\x0d\x38\xd4\xa4\x81\xc5\xe4\x29\xec\x16\x78\x8a\x4c\xc7\x8a\xd3\x05\x7d\xf7\xe4\xdd\xfe\xcb\xa7\xa8\x1e\x00\x2f\x8c\xb1\x91\x70\x8d\xf7\xf4\xd4\x36\xda\x46\x44\x08\x88\x7d\xa0\x1b\x8d\x13\xf7\x26\xdc\x13\x38\xe1\xbb\x7b\xd5\x08\xe1\x03\xbb\x54\x50\x70\x85\x08\x03\x85\x18\x5a\x79\xed\x60\x89\x43\x02\x6a\xdb\x94\xc6\x1d\x9f\xee\xa0\x73\x42\xb0\x48\x2a\x9b\x7f\xb6\x8d\x37\x75\x38\x4a\x32\x96\x06\x91\xc8\x5e\x53\xa3\xd6\x5d\xcf\x31\xd2\x9a\x78\x49\xf8\x84\x7c\xad\x80\x00\xab\x91\x59\x4f\x52\x40\xb4\xda\xa4\x8c\xc5\xcf\xb0\xf9\x6c\xf5\x6e\x52\x36\xf2\xef\x7c\x49\x71\xf9\xdf\xa6\xca\xc0\x27\x89\xa7\x1d\x9e\x5f\xa0\x66\x84\x14\x5b\x50\x50\x07\xb4\x05\x05\x76\xe0\x4b\x88\x2f\xdb\x95\x8e\x62\xd4\x67\x18\x1b\xdf\x38\x8c\xd9\x24\x9c\xd8\x28\x8c\x1d\x6f\x12\x7a\x0c\xfe\x22\xd0\x2c\xc0\x18\x55\x59\xc2\xde\xdd\xf9\x7b\xbf\xf8\x4b\x9d\x6a\x3b\xc0\x60\xdc\x56\xc6\xe3\xb6\xc2\xaf\xaf\x14\x69\x9c\x61\x85\x8a\xd9\xaf\x86\x1f\x70\x98\xef\x2b\xe6\xe8\x7f\xa6\x06\xe5\x86\xcb\xcb\xac\x44\x85\xcd\x38\xd8\xad\xd1\x87\xc3\xb9\x46\x48\x29\xa4\x53\xf4\xa0\x22\x65\xe6\x29\xc3\xc6\x49\xbc\x66\xb9\xde\x29\xaf\x41\xa3\x21\xd8\x1f\xdf\x0b\x37\x4c\xcd\xab\xd2\xd2\x0b\xa7\xec\x5c\xe0\xcb\x60\x6d\x14\x81\x4b\xdd\x97\x8b\xc1\xd0\xa5\xec\x51\xaf\xe1\x04\x36\xdf\x34\xb2\x11\x84\xee\xb5\x69\x24\xd8\x3e\x87\xa5\xf1\x40\xdf\x36\x77\xc6\x8c\x95\x2f\xc8\x3a\x28\x98\x29\x11\x45\xd9\x9a\xee\x26\xc9\xfb\x2a\xae\xb5\x2a\xf5\x81\xb7\x86\x76\x24\x5f\x2b\x10\xc9\x46\x18\x0f\x92\x0d\xb8\x40\x30\x7a\xdc\xf6\xc7\x37\x2e\x95\x34\x2a\x22\x6a\x8f\xc0\x7b\x23\xba\xe1\xce\x0b\xbe\x69\x43\x61\x55\xce\x0e\xbc\x25\xee\xad\xa5\x65\x23\x6a\xb9\xd5\xca\x40\x9a\x1b\x84\x78\xec\xfd\x37\x39\x03\x16\x0e\x75\x37\xa8\xe2\x1b\x8a\x8f\x8b\x24\xd9\x05\x25\xd4\x7e\x41\x81\xfa\x86\xd6\xae\x65\xb3\xaa\xf2\x77\x12\x27\x36\x8a\x2a\x50\xe4\xe7\x7f\xc0\xe9\xcd\xff\xd0\xe6\x5d\x67\x26\x0f\xb3\xd5\x4d\x37\x9e\xc2\xe6\xdd\x71\xfa\x47\x6f\x35\xbc\x6b\xa9\x7b\xac\xdb\x38\xec\x03\x0a\xc9\x24\x32\x18\x31\x61\x94\x69\x13\x19\xda\xb0\x51\xd4\x51\xfc\x29\xa7\x95\x9c\xac\x16\xe0\x1a\x53\xa5\x12\x39\x6e\xd7\x64\xe7\xd2\x5b\x17\x14\x23\xe9\x23\x35\x32\x23\x93\x0e\x36\x77\x56\xdf\xc8\x02\x64\x5a\xbb\x06\x5b\x4d\x88\x61\x54\xa0\x24\x5d\x79\x92\x61\x51\x4d\x86\x88\xc3\x91\xcb\xfd\xb2\x2f\x65\xe4\x61\xde\x1f\x49\x59\xdc\x11\x79\x1c\x38\x20\xd7\xae\x0a\x36\x49\x93\xbe\x1d\xd0\xc9\xde\x71\x1a\x06\x20\xf9\xe3\x6b\x17\x82\x8c\xc3\x57\xec\x60\xb7\xa2\xba\xbb\xcb\x8e\x9f\x73\x9c\x5d\xb7\xf4\x29\xaf\x83\xf5\x5b\x3f\xd3\xab\x8b\x6e\xfa\xc6\xdd\x4b\x9a\x6c\xfe\x3e\x9c\x70\xa7\x21\x55\xad\x17\x11\x4e\xf8\x51\xd5\x3b\x3e\x4e\x62\x92\x6d\x08\x93\x38\x9b\x23\x86\x15\xe4\x2a\xc0\x06\xa8\xb4\x60\x84\x9f\xe5\x0a\x2d\x37\x58\xc0\x33\x5a\x52\xa6\x09\x7f\xaa\x36\x30\x75\xdf\x1f\x9e\xe7\x62\xc3\x8c\xe2\xc9\x9e\x99\x7a\x6f\xc0\xae\xd8\x98\xda\xa7\xb1\xca\xb1\x05\x8e\xd0\x23\x00\x8c\xf3\x7b\x34\x1a\x18\x6d\x2e\xa1\x23\xeb\xbb\xbd\xa7\xf8\xf7\xc3\x2c\xb7\x31\xdc\x0f\xa9\xed\xaa\xc6\xca\x87\xa5\x96\xa8\x5c\xb7\x26\x82\xa1\x10\x8a\x06\x05\x07\xbb\xe3\xaa\xac\x29\x21\x0b\x66\x94\x98\x16\x95\x0e\x1e\x5d\x53\xd2\x46\x5f\x51\x92\xe9\x36\xb2\x43\x13\xe7\x11\xf7\x8f\x71\xef\x31\xe8\x6a\xa4\x11\xd9\x67\x8f\xe3\x24\xcd\x47\x14\x2c\xa0\x5c\x08\x99\x08\x81\xb6\xd3\x37\x08\xac\xc5\x23\x6a\x1e\x95\x5a\x3a\xff\x3e\x01\x83\xf8\x23\x4a\x87\xeb\x32\x30\x96\x30\x7c\xdb\xa7\x0a\x60\xca\x18\x29\xac\xfe\xb9\x9e\x3f\x13\x9f\x59\x7e\x86\xb2\x16\x48\x30\xfd\x5b\xcd\x13\xc8\x84\x90\x78\x00\x58\x5f\xf1\x1d\x5b\x38\x14\xaa\x88\xd0\x59\x18\xe9\x8f\xf4\xf1\xf5\x25\x2d\xdb\x63\xf2\x34\x34\x69\x9f\x59\x24\xf1\xd3\xaf\x07\xfe\x31\x5e\x57\xec\x4c\xfd\x64\x3c\x89\x6c\x6e\xe9\x29\x61\xa7\xa7\x78\x19\x98\xda\x6f\xc1\xee\x6a\xb4\xb9\xa8\x74\x29\xf9\xa7\x22\x8a\xc2\x6c\x84\x13\x15\xe7\xed\x57\x4a\x05\x86\xfe\x8a\x4a\xa5\x83\x8a\xac\x8a\xfa\x3d\x14\x0c\x4c\x58\x8e\x2a\xd2\x75\x11\x3c\x6c\x41\x28\xbe\xe8\x1e\x99\x5d\x76\x54\xe7\x6f\x28\xc8\xea\x0d\x97\x82\x5c\x8d\xec\x06\x52\xb8\x72\x74\xf9\x13\xe5\x82\x16\x67\xbb\xa4\xa4\x5c\xb6\x4f\x15\x0b\xf0\xa7\x7b\x9e\x44\x28\x32\xe1\x60\x8e\x8a\x79\x78\xbc\xd7\xc8\xf0\x62\x6d\x40\xe8\xd5\x11\x36\x50\x86\x8f\xff\x8a\x68\x8f\x30\xb2\x57\x54\x3f\xa1\x5d\x0f\x07\x36\xee\xdb\xdd\xd5\x97\x38\x45\x2e\x87\x63\x3d\x19\x28\x19\x9f\xdb\x1a\x3b\x73\x83\x46\x0b\xf9\x92\xaf\x95\x9a\xbf\x91\xe2\x7f\x94\xcc\x2f\x05\x0a\xcf\x7b\x44\xf1\x66\x5c\xf5\xbe\x9e\x4d\xf3\x22\xcb\x42\xb6\xc1\x52\x6c\xee\x78\x5a\x45\xe5\xdc\xad\xdb\x68\x9f\xa2\x3f\xfc\x7d\xf2\xcc\x99\x34\x1b\x76\x51\xc8\x6e\xe9\x49\x35\x34\x4a\xc0\x86\x1e\x42\x0a\xd6\x02\x78\xec\x3b\x29\xcb\x03\xcf\x88\x81\x6d\xf8\xf5\x59\xa4\x36\x6a\x9a\x7f\x88\x1d\x76\x4e\x69\x81\x4a\x3b\xf6\xa7\x55\x2d\x6e\x3c\x31\xa9\x59\x89\x2c\x72\x4a\x28\xe0\x5e\x56\xa5\x59\xae\x0f\xc2\xd6\xde\x6b\xb8\xd4\x54\x41\x1b\x25\xd2\xd0\x2f\xca\xcb\x1d\xc7\x7e\x74\x29\xd8\xea\x52\x1d\x7a\x5e\x90\x17\x20\x78\xf6\x14\xf3\x8c\xd8\x11\xf6\x22\x9d\xef\xce\xf2\xec\xc7\xe9\xed\xe4\x5c\xa6\xc9\x12\x44\x87\xdf\x8a\x9f\xa2\xc1\x71\xd8\xfb\xfd\x0b\x2e\xe5\xa8\x09\x8f\xaf\x96\x4a\x8d\xe2\x66\xa0\xa2\xbf\x1f\x80\x2b\x4f\x94\xfe\xe9\xcc\xa1\xa4\xcc\x99\x27\x01\xcd\xc2\x2a\xba\x43\x7b\x0e\x89\xef\xaf\x53\x81\x16\x66\xad\xc4\x1b\xd4\xdc\x69\x4c\xf3\x0e\x4a\x8c\xc2\x43\x38\xc2\xcb\x5d\xf1\x29\xaa\x5e\x89\x17\x5c\x4f\x3c\xb2\x15\xc0\x4e\xef\x23\xab\xec\x0a\xc7\x8e\x98\xf8\x2c\x28\xc9\x30\xb5\xbb\xa7\xb4\xb0\xb0\x4e\xae\xd3\xaa\x97\xa4\x4f\x33\x16\x7a\xb1\xfb\x9b\x45\x28\xce\x30\x12\x4f\xd7\x75\x86\xed\x7a\x9b\x88\xe2\xc1\xee\x86\x81\x2c\xec\x12\xc3\x1e\x2e\x2b\x08\xc4\x65\x15\xb6\x8c\x6c\x9c\x86\xf8\x43\xe6\x61\xa3\x55\x21\x9c\x6c\x2d\x2c\xb8\xe3\x30\x96\x40\x50\xf1\x73\x1c\x74\x49\xfc\x96\xf2\xfa\xf2\xfc\xc1\x8e\xf7\xca\x90\x22\x11\x71\x17\x8d\xec\x8c\x92\xd4\x0c\x92\x8e\xfe\xba\xd2\x97\x4f\x5a\xe9\x74\xaa\x53\xd4\xab\x02\x8b\x7b\xa1\x5a\xcb\x2e\x28\xd3\x94\x6d\x84\xe3\x31\x31\x6a\xb9\x7a\xc8\x19\x25\x89\x8d\x70\x55\x5a\x0a\x7c\x89\x78\xd5\x84\x51\x91\xd6\x1a\x66\x61\x0d\x24\x01\xe3\x78\x8e\x27\x61\x6c\x22\x8f\x46\x44\x6e\xe4\x9e\xae\xdf\xde\x2b\x25\xbd\x63\xe3\xf5\x30\x4d\x62\x60\xb3\xa2\xcd\x99\x6a\xe1\x60\x17\x5c\x55\x2e\xec\x05\xd5\xab\xff\xcd\x1a\x7f\x44\xbe\x81\x94\x19\x96\xfa\xfb\xf4\xec\x7c\xad\x9c\x8c\x34\xa9\xc2\x22\xca\x99\xb9\x5e\x40\x90\xd4\x09\x0a\xfa\x31\xf5\x9d\x83\xe4\x89\xea\x9f\xe0\x54\x6d\xef\xa9\x3e\x07\x70\xe8\x22\x2f\x00\xc5\x19\x38\x55\x3b\x28\x5b\x82\x88\xf5\x88\xd6\x0a\x63\xb5\x5f\x04\xda\xb7\x4a\xe5\xac\x5d\x09\x54\x12\xb1\x03\xfe\x1e\x4e\xcc\x91\x83\x22\xc9\x50\x5a\x94\x30\x6f\x3b\xa6\xbe\xd8\xfb\xb0\x5e\x34\xf7\x60\xeb\x5d\x3d\x45\x27\x2b\x2c\x50\xba\x19\xbc\x7a\x6a\xe9\x12\x6f\x09\xd9\x06\x26\x1e\x6c\x76\x3c\xa1\x0e\xb0\x60\xb2\x66\xc5\x6d\x5f\x35\xfd\x30\x62\x50\x95\xa7\xf7\xe5\xf0\x86\x6f\x1a\xee\xed\xfe\xfd\xdd\x8c\xe8\x65\x0f\xcf\xbb\x96\x88\xea\x69\x80\x5d\x67\x02\x78\x18\xbd\xdb\xaa\xcb\x6b\x6c\xd2\x35\x49\x77\x4a\xb3\xa0\xaa\x94\x37\x9b\x02\xd0\x4e\x0b\x92\x93\x8e\x8f\xd3\x4e\x29\x31\xbe\x66\xc5\x61\xff\x7e\x51\xc9\xda\xbf\x5f\xe6\x4b\xd9\xea\x0b\x0a\x88\x7d\x54\x31\xb5\xf4\xcd\x24\xcc\x4d\x14\x66\x63\x1a\x33\x38\xdf\xf0\xa4\xf8\xba\xa5\x67\x61\xa9\x9b\xda\x55\x9b\xba\x4e\x0f\x86\xd5\xa8\xa6\x85\xd7\x6b\x8b\x3c\x8d\xb3\x3d\xd5\x9a\x80\xe1\x42\x45\x19\x71\xd4\x95\x40\xd5\x11\xef\xd3\x32\x10\x95\x42\x9d\xa3\x57\xf5\x34\x70\xf2\x8a\xc0\x26\x2d\x22\x81\x83\x78\x1f\xeb\x3f\x57\xfd\xb3\xf7\x54\x6e\x65\x62\xb2\xfe\x28\x84\xe7\x09\x00\xcb\x65\x04\xd0\x7c\xe3\x5c\xb3\xcc\x9a\x7c\x46\x51\x2d\xc0\x82\x09\x3d\x3d\x4d\x34\xc6\xf8\x43\x45\x08\x97\x5a\x9b\xed\xa0\x0f\xa1\x86\xb2\x8d\xfa\x1f\x6a\x8c\x2f\x4e\x3a\x42\x9f\x2f\xcf\x09\x33\x2d\x8b\x6e\x43\xdc\xe2\x47\x95\xa3\xbe\xb2\xb2\x89\x82\x8b\xb0\x2a\x54\x9f\xe7\xd6\x5f\x0c\x14\xf2\x13\xdb\x28\x55\x29\x6c\x0b\x1d\x27\xc6\x70\x9f\x1e\x5f\x04\xa1\x54\x63\xd6\x69\x3a\xdd\x64\x3b\x79\x2b\x3e\xb1\x39\x71\x05\xd7\x15\x0e\x3a\x8a\xdf\x4c\xa5\xa4\xae\xd1\xf4\x60\x2b\x1f\x2d\x55\x93\xd1\x65\xc5\xdd\xd7\x4f\xb2\x67\x3a\x1a\xb8\x5e\x23\x91\x97\x41\x5c\x09\x87\x43\xc9\x91\x70\xa5\x5c\x07\x2f\x37\xd5\xca\xcd\x8a\xc9\x24\xa9\x76\xc9\x70\x56\x73\x9c\xbd\xd3\xd4\xa1\xe1\x6b\x7c\x11\xff\x55\xcd\xe1\x49\xb3\x1c\x1c\xa8\x58\x05\xd7\x11\xbd\x31\x87\x0e\xfc\x47\xa1\x1f\xa8\x06\x1e\x59\xbf\x3f\x82\x35\x04\xe2\xe0\x82\xea\x11\x65\xee\x5b\x01\x3a\x54\xd3\x0b\x2f\xfc\x2e\x79\xc0\x92\xf0\xad\xc6\x4c\xca\x3c\x7e\x76\xde\x04\x61\x06\x37\x60\x62\x77\xc8\x46\x54\xb0\xfc\xb3\xaa\x7c\xb1\x8e\x88\xd5\x87\xef\x67\x74\x8b\x3f\xfd\x0e\x13\xa0\xb5\x30\xed\x11\xfa\x7b\x5c\x8c\x3b\x8a\x66\x06\xa7\x29\x5f\xb7\x14\xd3\x9f\xed\x9a\x2c\xb2\x76\x32\x53\xef\xdb\x5d\x96\x5a\xf4\x5d\x7a\x67\xf8\xc9\x67\x1c\x3c\xc7\xac\x24\x14\x86\x55\xcf\xc3\x04\xec\x81\xef\x44\xba\xd7\xaa\x22\x3d\x4a\x72\x26\x26\x75\x92\xb6\x9e\xd2\xf3\x0d\x68\x62\x08\x5b\xfc\x1a\x51\x4b\xd4\x04\x64\xb1\xab\x81\x33\xc7\xcf\x7c\x58\x2a\x6a\x0b\x24\xd2\xf8\x13\xc1\x63\x2a\xc9\x14\xe5\x08\x65\x71\x88\xc1\xe4\xf0\xf5\xd4\xff\x5d\x3e\x32\xf9\x4f\x79\x5e\xa4\xef\x63\xa5\x60\x82\xae\x22\x03\x23\xde\xa1\xb7\x72\xc3\xa7\x7a\x3e\xcb\x31\x43\x5d\x46\x08\x92\x4f\x61\xe6\xe1\xc1\x3e\x24\x4d\x0f\x07\x05\x70\xc4\xfa\xe7\x75\x5a\xeb\x21\xdc\x51\x46\xe2\xa1\x74\x8a\xef\x3d\x06\x67\x85\xe3\x54\x72\xcd\x25\xad\x42\x2e\x37\x02\x1a\x84\x6a\x58\x27\xb3\x53\xb8\xc9\x70\x86\xde\x0b\x7c\xdf\xcc\x87\xd4\x54\x85\xb4\xdc\xd7\x10\x0a\xe0\xd0\xbf\x0b\x5f\x1a\xd5\xc9\xed\x4c\x5e\x0c\x9c\xd1\x87\xd4\xd3\x85\x61\xb9\x81\x76\x27\x91\xa3\xa1\xf1\xa7\x09\xfc\xaf\x7e\x04\xe5\x10\x58\x9f\x33\xb0\x7d\x34\x60\xff\xdd\xd3\x3d\x6a\xac\xe2\x2d\xd4\xc6\xc1\xea\x78\x55\x31\x51\x42\xa6\xea\x53\xb5\x47\x54\x03\x30\xe9\xed\x54\x2e\x1a\xe5\x11\xf0\xf4\x33\x3d\xd5\xc6\x7e\x56\x7d\xf0\x42\x5d\x72\x4d\x2c\x53\x16\x9b\xc9\x04\xc8\x4c\xa7\xf9\xe3\x99\xd4\x4a\x5f\xa1\x5a\xb1\xfb\x6a\xc0\xcc\xea\x45\x58\x2f\x99\x3e\x81\x14\xd2\x4d\xb2\x05\xb0\x2a\xf7\x68\x8f\xa2\x44\xb0\x4b\x29\x46\xec\x23\x3a\x6e\x56\xc2\xc0\x39\x85\xd0\xf0\x0a\x0d\x2f\x36\x18\xf2\x52\x38\x70\x7e\xb7\x54\x39\xa8\xcb\x3a\x57\x3b\xdb\x00\xad\x11\x39\x1c\xb5\xb0\x87\x49\x5c\xc3\x1c\xd4\x28\x63\xbd\x33\xb6\x11\xc6\xb1\xcb\x8c\xb1\xf4\xa6\x6a\x58\xc2\x66\x66\x4a\x72\xe5\xad\xa7\x23\x9b\x27\x69\xd8\x57\xe9\xd1\x53\x2a\x3d\x7a\xaa\xf4\xa8\x3c\x15\xa9\x22\x9a\xc7\x50\xa1\x1b\x05\x9b\xe7\x53\xe4\xa8\x62\x61\x5e\x51\xe9\x92\x33\x1c\x72\xba\x98\x78\xff\x82\x47\xee\xbc\xe0\x18\x9f\x2f\xea\xba\xde\x65\x72\x37\x10\x00\xdf\xc2\xbe\xc2\xea\xdd\xd1\xf3\xf3\xc4\xdc\x77\xe2\x75\xf9\x0c\x66\x18\xaf\xdb\xac\x3a\x7d\x70\xe2\x73\x1d\x47\x59\xb4\x4b\xaa\x59\xe4\x1d\xcd\xf2\x7b\x15\xfb\x06\xce\xc4\x07\xa5\x57\x9f\xfb\x5e\xc3\xe3\xac\x42\xa3\x91\x21\x0c\x8a\x30\x08\x7d\x1c\xa8\x96\xbc\xcb\x30\x2c\x82\x90\x12\xef\x25\xb2\x86\xb5\xe8\x91\xad\xb9\xaa\x08\xce\x58\x5d\x0c\x43\xc8\x38\x54\xce\xb9\xd3\x78\x02\x94\x01\xb6\x1c\xfc\xe2\xd6\x98\xb9\x5a\x87\xd2\x4a\x49\x3f\x0f\xe7\xa5\xa3\xac\xe4\x2c\x08\xe3\x05\x70\xde\x52\x51\x1a\x99\x78\xb0\x95\x68\xf7\xed\xd2\x77\xb4\xbe\xad\x12\x78\x59\x5e\x0c\xc4\x15\x66\x09\x63\x45\x3f\x75\xa9\xdc\xeb\x51\xfd\xab\x4f\xab\xde\xef\x27\x7a\x64\x51\x81\x71\xbe\x42\x89\x2e\xde\xe2\x9a\x32\x73\xb6\xe7\xdb\x98\xc0\x04\x27\x8d\xf5\xbe\x4d\xe8\x2f\x03\x95\x44\xba\xaa\xc1\xeb\xff\x8c\x12\x12\x58\x76\x42\xe0\x2e\xbc\x4f\x1d\xa7\x3b\xb5\x63\x4a\xa7\x81\xf0\xf5\x6a\xe7\xb4\x5a\x83\xcc\xb2\x3f\x55\x98\xc0\x4f\xf7\x14\x04\x12\x3d\x58\xf0\x9e\xb7\x01\xaf\x0e\xe7\x84\x69\x93\x04\xfa\xe2\x81\x13\xc3\x91\x89\x0d\x05\xa3\x82\xcd\xae\x7e\xd3\xc9\x60\xf8\xbe\xab\x5a\x0f\xfa\x78\x1c\x66\x59\xe5\xf5\x79\x30\xdd\x4d\x45\xb3\x36\x33\x55\xae\xd8\x17\x03\x9d\x94\xe6\x64\x86\x40\x43\x5b\xc8\x1e\x56\x8a\xc1\xd0\xa7\x45\x01\xf5\xb8\xac\xb8\xd5\x2f\x2b\x68\xda\xf3\x8b\x07\xe1\x5b\x60\x0f\x82\x46\x51\xc6\x5b\xf9\x8d\xd7\x1b\x51\xd0\x2f\x77\x57\x92\x34\x4d\x36\x28\x46\x43\x3e\x19\x02\xa8\x78\xdd\x8f\x68\x18\x64\x7f\xfa\xa4\xb4\x8d\xd1\x9d\x94\xe1\xe9\xb0\x88\x3f\xc2\x59\xc5\x37\xaa\xec\x3a\x49\x6d\x75\x14\xa8\x42\xde\x1d\xec\x0a\xbe\x69\xe4\x5b\xf6\xef\xef\x52\x2f\x79\xa6\x0b\x63\x9c\x70\xe1\x1b\xd5\x9a\xb2\x99\x14\xf1\x10\xed\x90\xbe\xf4\x7f\x4e\x35\xad\x9d\x73\x75\x2a\x13\x0d\x6d\x1a\x1a\x94\xfe\x05\xe1\x4a\x03\xc4\x37\x8d\x64\x0b\x61\x95\x63\xe3\x93\x2d\x52\x28\x55\x50\xcb\xd3\x8d\xca\x2c\xb5\x03\x8c\x27\x45\x6e\xd3\xf0\x55\xee\xcd\x73\x5a\xbe\xbe\xbd\xf1\x82\x3a\x46\x5b\x9d\xcd\xfe\xc8\x4c\x08\xcb\xad\x15\xdd\x3c\x48\xa8\xde\x20\x9c\xa7\x49\x94\xd1\x52\x84\xe5\x7a\x9f\xf2\x0a\x30\xe4\xec\x7b\x60\x41\xdf\x55\xb1\xed\x36\x42\xc0\xf2\x1f\xd5\x9a\xd3\xad\x29\xc0\x09\x85\xf4\xc7\x2b\xd4\x47\xed\x24\x60\xab\x79\x41\x44\x77\x8e\x8f\x12\x8c\xc5\x7d\xcd\xff\x1b\x28\x95\x01\x86\x36\x0b\xbb\xb1\xaf\x0b\x1f\x85\xe7\x27\x3d\x65\x4f\x6f\x61\xe6\x27\xbe\x44\x62\xbf\x11\x51\x2c\xfa\x6d\x59\x3a\x1e\x22\x0d\x71\x61\x57\x1b\xdc\xbf\xe0\xb6\xf9\x13\xae\x7e\x10\x4e\x26\xce\x86\x0a\x32\x4d\x43\xd6\xc4\x79\x59\x0d\x6d\xda\x47\xea\x0b\xae\xc8\x63\x3d\x5f\x9d\x79\xac\xa6\xeb\x3d\x08\xf9\x11\x69\x41\x38\x4d\x2d\x07\x82\x78\x5f\xf9\xb2\xa7\x6f\xd6\xc4\xb6\x74\xd7\x4a\x13\x7a\xb8\xd4\x9d\x14\xf1\xa6\x4a\x76\x1d\x51\xc9\xae\x23\xaa\xbd\x97\xc8\x68\x23\x13\xa3\x9f\x41\x08\xc8\xbc\x8a\x53\x53\xdc\xe6\xc0\x81\x6e\x14\xae\x58\x54\x35\x3b\x3e\x78\x01\xe2\x5c\x34\xb7\x55\x7b\x72\xb2\x6e\x53\x1b\x0e\xe3\x7c\x53\xd1\x90\x5d\x54\x98\x90\x8b\xe5\xa7\xea\x09\xd0\x67\xba\xbf\x76\x50\x51\x55\x7c\x53\x15\x74\xbe\xd9\x62\xee\x0e\x76\x27\x36\x1e\x6c\x21\x2e\xd9\x36\xf5\x1f\xda\xd6\xf3\xed\x96\x1b\x36\xb5\x9f\xa9\x3c\x3a\xd4\xb1\x41\xd0\x00\x2b\xfb\x71\xe0\x19\x2b\x5f\x7f\xba\xe7\x53\xae\x67\x02\x05\xeb\x7d\x72\xaa\x02\x56\x88\x8c\x62\x43\x3e\x39\x55\x54\xc7\x52\x6e\xc6\x3f\xc1\xb9\x74\xf5\xa5\xc3\xf3\xec\xa1\x33\xd1\x34\x23\xaa\x4a\xc5\x9a\xf5\x93\x3d\x85\x8b\xd9\x8b\xb3\x00\x47\xff\xb5\xd2\x53\xf5\xe2\x08\x45\x80\xf5\xd4\x54\x95\x5b\x1e\x06\x1e\x8d\x76\x8a\xbc\x5f\x78\x80\x7f\xc3\x09\x7a\x71\x98\xb7\x0e\xe6\x4b\x2f\x91\x04\x42\xb8\x6e\x63\xd4\x4d\xe0\x55\x00\x9e\xe6\x48\xb3\x5d\xcb\x41\x13\xf5\xf2\x39\x32\xd8\xc6\x65\xab\x24\x09\x46\x03\xc8\x37\x81\x6a\xf0\xd9\x08\xb3\x6c\x87\x0f\xe7\xdf\x85\xb3\xe0\x3c\x9e\x6a\x3e\x78\xa8\xe0\x34\xf2\x9f\x95\xbe\x53\xf1\x7b\x18\x43\x9c\xfd\xef\xd6\x52\x61\xc6\x46\x8f\xfb\xf8\xef\x43\xd8\x0a\xc7\x4b\x5d\x7d\x37\x60\xd7\x77\x6a\x35\x14\xd6\x6f\x11\x44\x75\x35\xc1\x4e\x52\xba\x3a\x78\x84\x09\x9b\xde\x4f\xa0\xd6\x4a\xc3\x04\xcf\x23\x74\x43\x34\xa7\xfc\xf9\xd2\xc7\xaf\xb7\x14\xb5\xda\x04\xd6\x0d\x3b\x7b\x5f\xa3\xeb\x62\xe1\x50\xd7\xbe\x92\x0c\x0a\xce\x9e\x72\xc3\xa1\x32\xe5\x77\xda\x38\x53\x07\x66\xec\xcd\x15\x3c\x53\xc0\xcf\xf8\xba\xc5\x68\x3c\x4b\x88\x0f\xda\xa4\x38\x6f\xbe\xab\x34\x08\xbe\xab\x60\xc9\x26\x4c\xa3\x30\xb6\xbb\x14\x23\xdc\x65\x52\x47\x96\x60\x8d\x26\x11\x16\x9e\x61\x74\x7c\x13\xa8\x72\xdd\x8d\x40\x8b\x6f\xdf\x50\x49\x3f\x06\x5d\xf2\x8d\x6e\x8d\x24\xa1\xb4\x01\x72\x8a\xe2\x23\xe3\x5b\xf8\x2e\xf0\x47\x40\xb6\x19\x0f\xc2\x3e\xcc\x14\xcd\x3c\xce\x9f\xeb\x98\x45\xbe\x29\x6b\x1a\x7b\x63\x60\x16\x98\xee\x4a\x09\xce\x1f\x75\x99\x95\x64\x52\x44\xe2\x1f\x33\xab\x38\x0d\xab\x30\x8c\xcb\xdf\x91\x62\x64\xca\x4d\x95\x12\x19\xd0\x50\xf0\x4d\x23\xfe\x58\x9e\xef\xf6\x8b\x3c\xc3\xbe\xc3\xf1\xc6\x94\x20\x2c\x8b\x5d\xaa\x5e\xc0\xbb\x5a\x9e\x32\x4c\x27\x11\xb5\x50\x7c\x61\x41\x4a\xa1\xa5\x72\x11\x2f\x29\xf7\x3e\x0a\x57\x52\xc3\x4d\x8f\x2e\x9b\xb6\xe8\x7d\x0a\x5f\x41\xcd\xc6\x26\xe7\xb6\x38\x4f\x9f\xf7\x1d\xbd\xb8\xbf\xd3\x6c\x4a\x58\x38\xd4\x8d\xad\x1d\x70\xed\x8d\xb5\xc1\x02\xe5\x5e\x9e\x55\x09\xe2\x30\x4d\xe2\xb0\xaf\xbd\x40\x4e\xeb\xf3\x4d\x8b\x3e\x5a\xd7\xc4\x39\x39\x8f\xd8\x0b\x82\x7c\xd5\xb8\xa4\xe6\xba\x5e\xe8\xae\x5a\x24\x99\xda\x05\x64\x5c\x53\xef\xf0\xe7\xf1\xae\x2e\xde\xd3\xa9\x6b\x95\x0c\xb5\x79\x1e\x91\xf4\xc5\x4e\x55\xd6\xbd\xa6\x6b\xc3\x1a\x04\xfb\xf5\x52\xfd\xf2\x1d\x0c\xa0\x94\x90\xbd\x75\x7a\x10\x28\xe4\xd1\xb5\x60\xcb\x89\x78\xe0\x40\xf7\x73\x4f\x57\x8f\x26\x49\x43\xfa\x7e\xd7\x3d\x59\xad\x6e\x6e\x3a\x0b\x54\x8b\xf1\x2d\xde\x1b\x8c\x94\x25\xfc\xad\xeb\x75\xf8\xd5\x17\x1c\x7b\x8e\x37\x71\xdf\x25\xdd\x02\x0e\x71\xf1\x44\x1c\x09\xeb\x46\xac\xd7\xd5\xab\xfe\x59\xa0\x48\x0e\x38\xaa\xc2\x54\x30\x52\x41\x88\x3d\x95\x60\xe3\xd7\xe9\x08\x11\x6d\x6d\xda\x8e\x9c\x4c\xa5\x73\x46\x80\x92\xd5\x11\x26\x5c\xc9\x2e\xb1\xd9\xef\xa7\x85\x1d\x90\xa7\x2a\x74\x43\x4a\x82\x83\x31\x07\x48\xca\x40\x1c\xbb\xc6\x25\x05\x83\xab\x99\x98\xc6\x49\x34\xc0\x76\x90\x6c\x9e\x2f\xc7\x1c\x6b\x63\xf0\x18\x15\xf1\x20\xb5\xe8\x40\x92\xaa\x82\xc2\x41\x21\xbb\x85\xd1\x3c\x45\xaf\x20\x0f\xf3\x98\x4a\xf8\xf7\xd7\xe6\xaa\x43\xd9\x3d\xb4\x37\x12\x77\xeb\x28\x6d\x1a\x1c\x27\xcb\xf6\xdc\xa2\xc3\x72\x7b\x7a\x9c\xd4\x0e\x76\x63\x9e\x39\x9f\xa8\x25\x6a\x2e\x29\x02\xa6\x3b\x8a\x2b\x7c\x17\xa9\x79\xe2\x91\xd9\x2b\x96\x2d\xe8\x95\xb6\x4e\xc0\x8a\xc0\x16\x7d\x03\x4f\x29\x8e\x74\x1b\x7d\x41\x16\xc6\x7d\x9b\xda\x19\xef\xfa\xa2\xe5\xd7\xf9\xac\xbf\xf2\x1b\x8e\xb8\x42\xd5\x89\xc2\xfe\x5a\x31\x81\xc5\x60\xbe\x78\xf8\x5b\x42\x1e\xbf\xcf\x67\x5a\xb2\x7c\x0f\x79\x5f\xe8\x2b\xf8\x6f\x4b\xa5\x57\xcc\xb3\xe0\x38\x82\x3c\x12\x16\xc9\x21\x20\x40\x9e\x9a\x52\x1a\x17\x4f\xb7\x17\x99\x13\xf2\xb5\xff\xf7\x9f\xa5\xd5\x82\x4f\x50\xb2\xf6\xd1\x15\xc5\x63\xf2\xf8\xb4\xc6\x99\x92\x0e\x32\xc5\xcc\x73\x4c\x99\x93\x63\x5b\xe9\x4e\x0f\xcf\x77\x0f\x3d\xff\x53\xd5\x77\x63\xbb\x6e\xef\xd5\x08\xcb\x68\x50\xf1\x6c\x25\x39\x6d\xf0\x22\x6e\x90\xd3\x86\x28\x00\x6a\x69\xf8\xf4\x1d\xda\xac\x88\x63\xbf\x83\x64\x2f\xd2\xde\xac\xb5\xee\x5a\x68\x7f\xfd\xf3\x9c\x0e\xbb\x8a\xba\x86\x20\xa4\x2b\x23\x82\x3f\x3a\x45\xe5\x28\xfc\x1c\x4b\x31\x23\x1d\x72\x8b\x8c\x00\x93\x27\xd2\x9a\xc1\xf5\x15\x68\x2f\xf2\xef\xb1\x6d\x11\x46\xf9\xca\x9e\x20\xbc\xe0\x84\x8f\xee\xe2\xc2\xf7\x5e\x81\x6d\x92\xf3\x4f\xf5\x7a\x31\xce\x0a\xa6\x76\x66\xaa\xb0\xb3\x37\xb0\x03\xf0\x2a\x27\x03\x78\xaf\x0e\x44\xe1\x0b\x92\xef\x6b\xca\x63\x9b\xad\xb1\xb3\x84\x08\xe9\x07\x81\x8f\x96\x7e\xd0\x38\x20\x3e\xd7\xcd\xac\x1d\x8b\xc3\x8a\xea\xcd\x37\x61\x2e\xf8\x46\xe5\x6d\x1c\x95\x05\xe0\x1c\x88\x18\x4f\xa9\x48\xf2\x54\xa3\x3b\xa6\xfa\xfe\x74\x1d\x9d\x35\x08\x21\x98\x2b\x12\x89\x1e\xe0\xfd\x30\xa3\xd7\x55\xfb\x40\xdf\x64\x7d\x33\xb0\x78\x2a\x24\x54\x00\xa4\xe7\xeb\x36\x2a\x2e\x1b\x0f\x92\x34\x93\x5e\x2a\x96\x99\x80\x39\x10\xcd\x09\x25\xee\x62\xe2\x35\xcb\x6d\x7a\xa2\x00\xad\x1a\x9d\x2e\xab\x16\x6e\x1b\x0f\xc3\x18\x40\xf1\x39\x9f\x01\xff\xa1\x4a\x5e\xbf\x47\xa6\x4e\xd2\x0c\xf4\x35\x70\xcf\x99\xf2\x41\xb8\x89\x9f\x54\xa4\x20\x59\xb2\x6a\x52\x38\xa8\xa8\x0b\xc1\x29\xe6\x6b\xa5\x18\x50\x64\x9c\xc6\x60\x62\x66\x7c\xbf\xb0\x34\xb7\x50\xd5\xa4\x89\xa7\xdc\x15\x92\x67\x9a\x50\x41\xb0\x3c\xe1\x90\xea\xe3\x30\x0a\x73\x30\x9f\xb8\x16\x66\x0f\x6e\x3a\xd9\x42\xd3\xb2\xd8\x4d\x6d\x6c\x84\x86\x95\xbf\xf2\x96\x02\x55\xbe\x87\x6f\x10\x74\xb0\xa3\x14\x4a\x92\x38\xb4\x33\x0a\xbd\x86\xec\x3f\x76\xe0\xf6\x9e\x62\x85\x6e\x12\x0c\x2d\x2e\x76\xb3\x0d\x33\xe1\x65\x2d\x3a\x47\x33\x5e\xd4\xe2\x42\x63\x3d\x10\x82\x6d\x92\xda\x71\x58\x8c\x55\x13\xca\x5d\xd5\x84\x72\x57\xc1\x3f\xb3\xb1\x89\x22\x9b\x91\x2a\x96\xfc\x02\x20\xf8\x7c\xdd\x10\x50\x5f\x38\xd4\x1d\xc7\x7d\x06\xee\x88\xa9\xa5\xb7\xe0\x1b\x55\xe6\x5b\x35\xc5\x2b\x78\x75\x69\xe3\xd0\xd9\xc8\xca\x78\x88\x4e\x7a\x0b\xf7\x7e\x6e\xc2\x48\x35\x13\x1f\x51\x28\x93\x23\xc0\xc5\x63\x99\xc4\x59\xd1\xef\xdb\x2c\x5b\x2d\x98\x98\x6d\x51\xd2\x92\xa5\x3a\x50\x6e\x07\x4f\xbb\x8f\x4c\x6c\xda\x1f\x45\x09\x31\x76\x78\x61\xfa\x0b\xa5\x06\xc7\xef\x53\x79\xad\x7f\xf0\x98\x3a\x9d\xcf\x2a\x0e\xed\xdb\x4a\x53\xe4\xaf\x4a\x9f\x30\x67\x49\x7d\x07\x28\xaf\x0c\xa0\x28\x13\x79\x79\xbe\x33\x81\xaf\xc7\xfd\x08\xbb\x03\xf8\xfc\x0d\x3c\xb9\x24\x42\x34\x71\xbf\x12\x7a\xfd\x2a\x65\xb6\x61\x3e\xcf\xeb\x3d\x36\x9e\x44\xa1\xc5\x51\x25\x22\xbb\x0a\x68\x71\xbe\xb1\xba\x7f\xa1\x6b\x07\xa4\x7a\xc7\x0c\x99\xc8\x72\x6c\xa3\x24\x09\x5f\x4f\x7d\xff\xe3\x06\x8a\x32\xa3\xa4\xc8\xa0\xd6\x02\x23\x73\xa4\xf4\x21\xe4\xbb\xf4\x96\x7c\xad\xfb\x22\x2f\x2a\xb3\x77\xbb\xd1\x14\xf1\xdc\x62\xb7\x88\xf2\xd4\xac\x87\x49\x64\x11\x6c\xb9\x78\x7c\xd1\x47\xdd\x35\x20\xa5\xd9\xdc\xa7\xa8\x2a\xde\xa3\x03\x14\x4e\x31\x73\x9a\x61\x1d\xff\x97\xaa\x1b\x14\x85\x74\xa9\x50\xd5\x2c\x04\x1d\x75\xc2\xa7\xac\xd4\xdf\x90\x17\x42\xf4\xb8\x6d\x4a\x7b\x85\xff\x2a\xf0\x60\x37\x66\x37\x11\x34\x50\x1b\xb5\x38\x49\x6b\xc5\x9d\x66\x7d\x49\xe2\x0d\x05\x36\x7e\xc6\x3c\x43\xb3\x81\x04\xd0\x0f\x4b\x95\x0d\xfa\x61\x0b\xb1\xcd\x6a\x0a\x32\x40\x25\x62\xfc\x8e\x52\x17\x7b\xa7\xad\x44\x94\x25\x45\x44\x4d\x47\x0a\x0d\x82\x1e\x41\xe1\x66\xdc\xeb\x3b\x66\x92\xc7\xbc\xbe\xe3\x8e\x9e\x52\xd1\xdb\x89\xa3\x1b\xa8\x22\x8e\x57\x61\xce\xb7\x4d\xb7\xff\x1c\xe7\x54\x01\x12\x43\x19\xe6\x3e\xb9\x33\xf8\xfb\x1f\xd0\x76\x12\x8d\xb9\xca\xe5\x81\xcf\x02\x89\x1b\x27\x90\x51\xb9\x03\x08\xb6\xe7\x7a\xaa\x86\xf3\xa7\x70\xff\xf0\x55\x0f\x1b\xf6\xf3\xc0\x81\x6e\xbe\x11\x66\xf9\xcc\x8c\xd6\x49\xf2\xfb\xe2\x7e\xe0\xab\x98\x17\x34\xb9\x72\x12\x0d\xf6\x54\xee\x10\xbe\xf8\x22\xf2\x39\x00\x56\x83\x4a\xc2\x55\xd4\xbd\x4a\xa8\xd0\xf6\x3b\x95\xc8\x65\xa9\x8f\x7c\xaf\xf4\x07\x0d\x88\x03\x60\x65\xee\x05\x1e\x76\xcb\x3c\x61\x30\x19\xb3\xbd\x4f\x69\x55\xa4\xe1\xc8\x11\xcc\x32\x7b\x47\x50\xa3\xf2\xf0\x84\x1b\x31\x23\xaf\x18\xe1\x4e\xaf\x27\x68\xf7\x4f\xa9\x50\x76\x6c\x62\x34\xc2\x57\x13\x07\xfb\xf5\xc5\xc0\x63\xfb\xbf\xf8\x89\xb4\xf6\xe3\x22\x1d\x58\x10\x19\xc2\x88\x41\x86\x13\x43\xcb\xbc\x1d\xc2\xe2\xea\x4a\x28\x83\x97\x4d\x5f\x24\x23\xa9\xac\xf4\xda\x53\x53\x87\x53\x7a\xed\xa9\x5e\x5b\x19\xc3\x4c\x20\x56\xe6\x16\x0d\x12\xe1\xa2\x12\xe2\x91\x07\x1b\x49\x1a\x0d\x36\xc2\x81\x85\xda\x3b\x82\xb3\xf3\x35\x66\xaa\xf3\x70\x86\x84\xa2\xcc\xfb\x2f\xe7\xcb\x7d\xbe\x71\xd3\x0c\x14\xdd\xef\xc7\x8a\xa6\xec\xe3\x52\x13\x9d\x27\x93\x24\x33\x51\xb6\x43\xe9\x83\xdf\xc2\xfa\x40\x81\xe1\x0d\x5a\xdc\x7c\xad\xb2\xbe\x57\xb4\x9a\x15\x6b\x31\x49\xdb\xba\xfe\x7e\xbb\x6e\x90\x6a\x7a\x4e\xe5\x2d\x96\x3d\xa6\x5c\xf3\x24\x85\x51\xf4\x14\x9c\x63\xd9\x64\xf4\x1b\xae\x95\x55\x4b\xe8\x7b\xd5\xb3\x5b\x81\x87\xa2\xb2\xa2\x30\xbc\xcb\x8f\x69\xff\x21\xc2\x07\xb2\x4e\xfa\x61\xe8\x65\x5d\x57\xa2\x13\x59\xbf\xac\x3c\x85\x33\xf0\xf3\x91\xfd\xf8\x1f\xaa\xa3\xe9\xd1\x19\xa0\xbc\x84\x0d\x82\x5e\x59\x58\x88\x15\x88\x6f\x8a\x80\x0e\x59\xd9\x2b\x0d\xbb\xf9\xcb\xa0\x06\x1f\x08\x3b\x1f\x60\x75\xef\x21\x62\xe6\x1b\xc5\xdb\xb3\x61\xd2\x31\xe9\x52\xb8\x6a\x13\xbd\xae\x54\x9e\xda\x1a\xea\x06\xa9\xd9\x00\xb9\x0d\x32\x15\x6f\xe0\x7d\x11\x63\x30\xc9\xbe\x0c\xf0\x13\xfa\x98\x35\x7d\x92\x18\x7b\x96\x87\xe3\x6a\xd0\xd1\x54\x7a\xbf\xfe\x79\xd7\xc1\xef\x29\xd8\xbf\x47\x87\x36\x5f\x07\x6a\xc9\xde\xfe\xe4\x3d\x67\xd3\xa1\x4d\x67\x68\x36\x45\x9e\xa0\xe3\x04\xf6\x18\xaf\xc4\xea\xde\x1e\x5e\x69\xc2\xc1\x4e\x0f\x7a\x39\x5f\xea\x55\x5f\xbd\xd1\xa3\x4f\x53\x79\x42\xc8\x3b\x15\x4e\xfb\x3c\x59\x38\x98\x2b\x06\x1b\xca\x8a\x7a\x4c\x05\xe5\xa0\x21\x14\xc7\xe4\x53\x3d\xf5\x48\xa5\xaa\x6c\xe1\xdb\x50\x65\xdf\x39\xf5\x91\xce\xba\x1d\x85\xfd\x08\x7d\x47\xdc\xe1\x4c\x6b\x14\x49\x98\x7f\xaf\xfa\xa1\xee\x69\x7e\x94\xd3\xad\xbc\x1e\xa3\xa4\x18\x8e\x60\x60\xdc\xe9\xad\xa4\x11\x02\x61\xc2\x0d\xe3\x2c\x37\x51\xc4\x55\x2c\x97\x4b\x7f\x23\xa8\x91\x28\xb5\x50\x95\x0c\x6c\x16\x0e\xe3\x5a\xb7\x22\xe4\x57\xf8\xba\xe1\x87\x57\x11\x43\x3f\x89\xfb\xa9\xcd\xad\xa2\x0f\x41\x0e\x52\x90\xdf\x92\xdf\x1a\x9b\x74\xdd\x46\x82\x86\x97\x02\x9f\x8a\x65\x2f\x2a\xe9\x95\x55\xb3\x9e\xa4\x61\x0e\x22\x71\x4d\x73\x00\xef\xfe\xa2\xf2\xf4\x2f\x96\x1a\x72\x76\xb9\x8d\x4c\x7d\xa5\x18\xf0\x5b\x71\x48\x1d\x78\xcc\xfa\xfb\x5a\xf4\xbc\x48\xc3\x4c\xda\x2b\xd0\x0f\x79\x16\x3b\x83\x6f\x94\x90\x81\x89\xf2\x64\x68\xf3\x91\x74\xa6\x73\xff\x48\xe0\x69\x4b\x2e\xa8\x10\xc4\x8c\xc7\x49\x4c\xd1\xca\x27\xb8\xe2\xb5\x12\xf3\x24\xdb\xe9\x19\xf8\x79\x8c\xe4\xc0\xc1\xf0\xe1\x68\x9e\x2a\xc6\x27\x94\x62\x01\x68\xb8\x8f\xfc\x01\x7f\x3e\xf0\xb8\xbf\xa6\x86\xf4\x73\x8b\xdd\xdc\xbc\xe2\xd7\x8a\x48\xfa\xd1\x5a\xe1\x9b\x96\x48\x71\xa1\x3b\x31\x9b\x49\x21\x63\xe5\xda\x45\xb5\xda\xdf\x93\x1e\x24\x9f\x85\xe3\x90\x0f\x3a\x8c\x24\xb0\x18\x7c\xed\x76\x5c\x11\x6f\x84\x19\xfe\x4c\x04\x66\x35\x90\x46\x50\xf7\xf6\x95\x49\xe5\xcb\x4b\xfe\x5e\x98\xa0\xc9\x48\x09\x45\xb4\x16\x86\xa5\x0d\x91\xdb\x01\x9d\xe8\xa8\x71\x75\x28\x25\x86\x24\x08\xbc\x36\x3c\xcb\x4d\x05\x39\xa3\xc6\x73\xf1\x49\xf0\xa7\x67\x02\x45\xd5\xd9\x46\x25\xbb\xd4\x1d\x87\x91\x5b\xe4\xc8\x07\xb1\x2a\x12\xdf\xb4\x54\x79\x97\xba\x2b\x26\x5e\x73\x7e\xad\xb4\x5e\x76\x5c\x33\xfa\xf6\xde\x27\x51\xca\x66\x76\xdd\xa6\x26\x02\x9d\x13\x16\xc2\x9e\x69\x6d\xcf\x38\x00\x26\x8a\xff\x22\x1c\xe2\x0b\x93\x3f\xd6\x53\xf2\x7f\xb6\x9f\x8c\xc3\x78\x38\xeb\xf3\xe6\xf7\xe8\xbc\x74\x40\x1b\x97\xec\xbb\x57\x47\x68\xfb\x13\x7b\xc5\x73\x87\x33\x79\x3b\xb6\x90\x30\xb9\xfb\xfa\xb9\x7d\x65\x12\x99\x98\xcb\x58\x95\x95\x55\x1c\xda\x0b\x7f\x5b\x9f\x68\xb5\xeb\xcc\x84\x89\xae\xe0\x31\x03\x00\xc2\xd7\x8d\x8e\xf2\x03\x07\xba\xfd\x34\xd9\xe0\x94\x10\x0e\xe1\xdf\x51\x82\x5c\xbf\x53\x85\xc2\xce\x71\x34\xb3\xd5\x2b\xbb\xce\x78\x0f\x55\xbd\xae\x88\xb7\x6a\xed\xf3\x8a\xf4\x18\xfe\x69\xb5\x29\x90\xfd\x40\x11\x8a\xaf\x9d\xbb\x58\xc4\x6b\x71\xb2\x11\x67\xc4\x25\xd1\xda\x39\xa5\xab\xbd\x93\x30\x26\x43\xc8\x61\x30\x9d\xf5\x9e\x26\x69\xc9\x2b\x9c\xfa\x2a\xda\x79\x55\xfe\xcb\x93\x24\xca\x66\x7d\x37\x62\x87\x82\x5e\xe4\xe8\xee\xe0\xfd\xf8\x1f\x50\x68\xe7\x7f\x51\x58\x8a\xb1\x09\xe3\xd5\xd4\x8c\x2d\xfa\x4c\xa5\x6d\xc2\x2f\xa2\x6b\xec\x8b\xc2\x0d\x3c\x01\x0c\x32\xff\x99\xd2\xbd\xff\x48\x57\xe1\xec\xc4\xa4\xa4\xa7\xa3\xc4\xfc\x58\x38\x88\x6f\x28\x74\x70\x3c\xe9\xcf\x79\x24\x36\x99\x37\xf8\x23\xf7\x83\xa7\x43\x09\xde\xd6\x6d\x4a\x2d\x54\x99\xe5\x68\x08\xaf\x35\xdb\xf3\xfd\x69\x80\xe3\xe1\x31\x1f\xa8\xc2\x6f\x65\x20\xc2\x2c\x9c\x51\x14\x16\xb7\xf8\x9d\xc4\xeb\xa0\xd1\x15\xa2\xa0\x16\xa6\xae\x51\x12\x27\xd0\xda\xc1\x7c\xdc\xa8\x31\x0b\xf9\xa6\x07\x8d\x01\xcb\xf2\x34\x89\x87\x3b\xaa\xc9\x45\xd4\xcb\xf5\x2f\xec\xb7\x3f\x41\x56\x04\xc7\x09\x9a\xb4\x61\xa6\x3e\x40\x14\xce\xbc\x7f\x5a\x29\xf1\xbc\x3b\x6f\x53\xe8\xbb\x63\x20\x98\x76\x45\xa5\x72\x8e\x62\x97\x71\x33\x87\xee\x8b\xcb\xcd\xea\xaa\x4d\xb3\x5d\x8a\x8a\xe6\xb8\x16\x17\x3d\xc1\xe3\x82\xcc\xcd\xff\x08\xbb\xeb\x84\xe5\x9c\xf4\x34\xe7\x77\xf0\x6b\x1c\x0b\xf0\x4d\xe0\x8f\xad\xef\xb6\xb1\x96\xda\x62\x32\x4a\xd2\xd0\xcc\x28\xaa\xab\xd3\xaa\x93\xff\x1d\x58\x54\x98\xf2\xb7\x54\x8f\x54\x66\xcd\x30\x35\x63\xec\x3f\xb1\x59\x6a\x40\x2f\x37\x78\xda\x0f\xcf\xbf\xd8\xad\xd6\xcd\xc6\xc8\x46\x63\x87\x4b\x66\xd4\x4c\xe9\x51\x63\x8f\xd3\xf1\x8a\xb7\x7c\xa8\x0e\xf6\xb1\x89\x6d\xb1\xce\x49\x5c\x44\xb9\xff\x0f\x61\xef\x1a\x24\xc9\x95\x9d\x87\xcd\x54\xf5\x0c\x06\x18\x60\xf1\x26\xb5\x92\x6c\x95\x65\x86\xd7\x0a\x83\xe3\x90\xc3\xb6\x6c\xfd\xc9\x52\x77\x73\xc1\x19\x92\x8d\x76\xcf\x70\x40\x23\x1c\x61\xdc\xca\xba\x5d\x95\xe8\xac\xcc\xda\xcc\xac\x6e\x34\xc2\xbf\x64\xff\x50\x38\x18\x0a\x59\xb2\xf4\x4b\xb6\x68\xda\x92\x48\x5b\xa4\x49\xee\xf2\x21\x31\xc8\xea\xdd\xe5\xee\x92\xbb\xd8\x5d\x3c\x16\x58\x00\x03\x60\xe7\xfd\xee\x79\xbf\x67\xd0\x70\xe4\xf9\xce\xb9\xf7\x64\x67\x0e\x1d\xb1\x11\x9b\x89\xe9\xaa\xca\xc7\xbd\xe7\xf9\x9d\xef\x3b\x4a\x96\x81\x8f\x1b\x6a\xf2\x3d\x93\xc5\x76\x9d\x5d\x84\x70\xac\xb4\x1c\x21\xde\xf9\x8a\xef\x1a\x99\x6c\xa5\x4c\x12\x67\x5a\x5f\xfa\x92\x9e\x01\x92\x12\xcc\x5b\x53\x45\x30\xfb\x21\xf6\x1d\x22\xaf\x7b\x35\x2b\x38\x7f\xa8\x53\xa4\x85\x89\x67\x3c\xcc\xef\x5f\x07\xbe\xdf\xf9\x00\x7d\x16\x51\xf7\x50\x9c\x54\x17\x9a\x18\x41\x4c\x41\xc2\x5b\x85\xa4\x2c\xd2\x30\xa0\xcf\x49\xc7\x60\x7b\x61\xf5\xd5\x57\x3b\xeb\x36\xdf\xdd\xfa\x45\x09\x13\xde\x55\x78\x97\x33\xd4\xdb\x41\xc7\xe8\x27\xf4\x10\xf1\x35\xbb\x50\x40\x76\x12\xd0\x0e\xca\xf4\x0b\x37\x6b\x17\x46\x44\x63\x19\x51\xe0\xd9\x6d\x34\x2d\x81\xa6\x69\x99\xfe\xcd\x87\x78\xd4\xbe\x59\x5e\x5e\x4f\x22\x17\x10\x21\x88\x62\xb0\x2e\x9f\x28\x28\x46\xdf\xe6\x61\x16\x8d\xc5\x87\xbd\xc2\x57\xc9\xab\x8e\x4f\xaa\xd0\x9d\xcc\x7e\x51\x19\xa7\x3d\xdd\x96\xe3\x72\x3a\x51\x41\x94\x20\xb5\xc5\x86\xdf\x43\x78\x44\x06\x0f\xe1\x3d\xc1\x46\xee\x41\x5f\x1a\xaf\x7c\xef\x46\xeb\xcb\x2f\x3b\x70\x49\x69\x89\x60\xf4\xde\x85\xc1\xc4\x92\xbc\x43\x2e\x03\xa0\xe5\xdd\x1b\x65\x7a\xc4\x22\x36\x68\x94\xe1\xf9\xdc\x41\x43\x8c\x33\xb1\xa0\xf5\x73\xbf\xc2\xd1\xf6\x6d\x6c\x77\x54\x4c\x9f\xe8\x2a\x34\x0b\x68\xd9\xd1\x0d\x69\x77\xd5\x90\xd1\xe7\x6a\x92\xf6\x3e\xa5\x3f\xf8\xf4\x7b\x5a\x7e\xf3\x26\x1b\x15\xa1\x05\xa7\xf2\x23\x2e\xf8\x83\x69\xfb\xe0\x7f\xfb\x4b\xc2\x1d\xab\x68\xdd\x8a\x4c\xaa\xe7\x8e\x2b\xc2\xeb\x6a\xd7\xd0\x7d\x4b\xb3\x9d\x49\xd2\xb7\x59\x98\xd2\x76\x5d\x5a\xf4\x93\x73\xbe\xdf\x1d\xfc\x94\x9e\xb3\x67\x1c\xb3\x9b\x1d\xc5\x32\xbd\xa0\x96\xec\x05\xcf\xa5\x6d\xfa\x03\xa6\x33\x75\x44\x2f\xce\x60\x9d\x9b\xea\x69\xd4\xa8\x48\xb3\x1c\x74\x4b\x5c\x1c\xa9\xf0\xfb\x3d\xa5\x48\x2e\xb2\xd2\x9b\xcd\x54\x1a\x2b\x95\xe2\x7f\xcb\x4b\x09\x04\x95\x46\x40\x25\x9f\x78\xbd\x78\x56\x71\xd6\x7d\xac\xa7\x9f\xce\x06\x8a\x21\x0d\x23\x12\xa8\x06\xbf\xa5\xcb\x2c\x2c\xe2\xc4\xce\x80\xe2\x0f\x57\x1c\x59\x92\x4a\x1c\xd8\xc2\xdc\xb4\xfe\xcb\x6e\x31\x5d\x84\x59\x72\x21\xe9\xfc\x21\x4e\x7b\x7e\x44\x6b\xd4\x51\xe8\x94\xcb\x9d\x95\x53\x70\x97\xf8\xab\xff\x2b\x50\x84\xda\x97\x38\x01\x42\x39\xf2\xfb\xd8\x30\x58\x9a\xff\x32\xf0\x1c\x94\x1f\x2b\x34\xff\xcf\xfe\xec\x5f\xc5\x67\x44\x21\x15\xf9\xa2\x93\xcd\x2e\xef\x5f\x26\x47\x95\x3c\xc1\x07\x68\x69\xc0\x4e\x82\x05\x03\xa6\x11\xb2\xba\x28\xfe\xbe\x4f\x8a\x50\x78\xc9\xf7\xb1\x2f\x91\x82\x71\x6f\x5a\x98\x5e\xe9\x0e\xa4\x6b\xd9\x72\x5f\x7b\x93\xc0\x2a\x4e\x03\xb5\x7c\x4a\xa8\x55\x54\x0a\x32\x6f\x51\x1c\x84\x28\xfe\xdb\x34\x46\xc5\xf0\x1b\xe0\xbd\xf8\x07\x15\xf1\xc1\xf0\x1c\x1e\x3f\x4e\xfe\x0f\x7a\xab\xb0\x30\x98\x49\x61\x44\xa1\x46\x2f\x71\x0d\xc4\xad\xc7\xc3\x32\x13\x3e\xb3\x51\x86\xa8\x42\x5c\xe0\xb0\x62\x93\x22\x4c\x47\x76\x46\x13\xc9\x79\xe8\x8c\xc1\x70\x1a\x5e\xec\x0c\x20\x9e\xd2\x96\x70\x7c\xde\x51\x38\xf4\xf0\xc8\x7f\xfe\x57\xbb\x1e\xc1\xf7\xe4\x86\x9a\x35\x3f\x55\x19\x72\x55\xb8\x9d\x0b\x9a\x27\xfe\xad\xa9\x1e\xe2\xeb\x4f\x66\xb4\x5c\xbb\x02\xbf\xfe\x82\xe6\x10\x38\x13\xe8\xb8\xb0\x49\x84\x3b\x4e\x73\xde\xd3\x22\xd0\xaf\xd5\xfa\xa7\xcf\xc8\xde\x4f\x93\xd5\x28\x84\xd0\x4e\xf9\xe4\xb0\x83\xce\xea\xe6\xca\xd9\xda\xfc\x73\xe9\xa9\xfa\xa2\x5e\x47\x8b\xd0\xc9\x39\x3b\xf6\xf9\x63\x81\x87\xd6\x94\x66\xeb\xb9\x72\x21\x60\x19\x5d\xa1\x3f\x63\x5e\x45\x5c\x96\x60\xc5\x69\x1d\xa1\x89\xf8\x8f\xb0\x26\x91\xca\x1d\xc7\x9a\x44\xf0\xfb\x35\xd4\x73\x61\x2f\x5a\x5d\x9f\xf0\xdd\xa2\x3c\x91\x39\x33\x2a\xac\xbb\x81\x6a\x84\xa1\xea\x29\x89\xb0\x0f\x78\x6e\x04\x55\x12\x57\xd7\x46\xbc\x89\x8d\xe6\x16\x98\x63\xc3\xd8\xd4\x5c\x4b\xdf\xc2\x1b\x16\xab\x49\x6f\x58\x66\x31\x7d\x58\xe4\xd2\x91\x7c\x77\xf9\x03\x42\xfe\xef\x9f\x1b\xcb\x15\xb3\xa0\xaa\x22\x1b\x44\x95\xd2\x09\xad\x7a\xb0\xa5\x1e\x14\x8a\x01\x70\xdc\xed\x1b\x53\x28\xb4\x08\xbd\x4d\xf9\x15\x70\xcb\xa7\x70\xb9\x32\xfb\x49\x0f\x4b\x78\xb0\xe8\xcb\xf1\x7e\xae\x29\x98\xc5\xd8\x66\xcb\x69\x86\x50\xd3\xb7\xd8\xee\xc1\xdf\xba\x29\x1b\xe7\x49\xeb\x82\x90\x73\x73\x9d\x71\x79\xff\x93\xb8\x55\x99\x38\x3a\x70\x40\x8e\x9b\x40\xb3\x3c\xe6\x5c\xd5\x48\x55\x14\x16\xdb\x3f\xb2\x34\x4b\x3d\x50\x9b\x01\x08\x8f\xb7\xfe\x23\x3c\x31\x3e\xa9\xd5\x72\xe7\x0f\x75\xc2\xcc\x52\x3e\x1f\xe5\xf8\x29\x6e\x27\x2b\x8d\xe8\x73\xc1\xf6\x10\x7c\xfe\x50\x27\x1a\x24\xe9\x28\x4a\xa2\x74\x92\xb3\xf4\xb7\xab\x24\xfa\xaa\xa2\x4b\x9e\xe3\x34\x19\x14\xd1\x08\x8c\x7a\x8c\x41\xa3\xa2\x87\x43\x93\xb9\x2c\xe7\x29\x60\x34\x44\xbb\xd4\xe1\xad\xa2\xa4\x6f\xda\xb4\x1b\x2a\x85\x48\x87\x4d\xf5\xf1\xe6\x7d\xc5\x8c\x5a\xa4\x6b\x1c\x3a\xa0\xec\x0b\x44\x19\x1f\x6b\xe1\xe8\xfe\x6b\x44\x44\xbd\x5b\xcd\x91\xc2\xbd\x49\x9f\xca\x17\x9f\x7f\x0b\xbf\x8c\x2c\x97\x4b\x45\xae\xb3\xb5\xe4\x79\x9c\x9a\x44\x7d\xd2\xe5\xe5\x28\x8c\x4c\xdc\x4f\x47\x2d\x8d\xf3\x46\x07\x9a\x8f\xd5\x34\x8c\x49\xc2\x61\x4a\x00\xf6\x72\xe5\x09\xcc\x80\x56\x9e\xe0\x0f\x1a\xad\x94\x35\x60\x3d\x54\x93\xea\x67\x15\xb6\xb6\xb9\x10\x36\x4c\x7b\x3d\xa0\x4f\x98\x12\x3e\xa8\xf0\xc3\x2b\x78\xc6\x24\x24\xd5\x41\x14\xb1\x60\x5b\xff\x1f\xdd\x61\xbd\x44\x28\x0a\xb7\xc9\xbc\xe6\xe3\x15\x15\x59\x5e\xd6\xdf\x18\x9a\xc4\x47\x6d\x3a\x35\x15\x98\x8d\xe3\xdd\x33\x59\x11\x85\x93\xd8\x64\x33\xbe\x4a\x7a\x02\x1b\x59\x87\x87\xf8\x1c\xb8\x4e\xb0\xa7\x1f\xdd\xa8\x50\x53\xd8\x88\x6e\x95\xb3\xfd\xa0\x52\x2b\x78\x5e\x13\x47\x94\x01\x25\x54\x84\xcb\xdd\x2b\xfd\x20\x5a\x8a\x78\xd5\x3b\xba\x6a\x4c\x53\x8f\xb3\xfd\xec\xdf\xf9\x2f\x68\x2f\xca\x7c\x71\x69\xa6\x65\x10\xd1\xd1\x5d\xa5\xa5\x3f\x31\x85\x85\xac\x20\xfc\xe9\x4d\xb8\x07\xd4\xbb\x79\x40\xda\xc9\x8d\x3b\x46\x8c\x23\xb5\x7c\x71\xff\x42\xf9\xff\x82\x9b\x71\x33\x3c\x6a\x54\x47\x3f\x82\x28\x31\x44\x1a\xcc\xdc\x59\xfa\x37\x59\xd1\x5d\xe6\xd0\x2b\xfc\x74\x35\x82\xb9\xad\x2b\x78\xc5\x30\x66\xd7\xa6\xff\xc1\x43\x12\x35\x3b\x8a\x06\x99\x2f\x5c\x03\x7a\xb2\x89\x45\xc6\x27\xb5\x75\xf9\xea\xab\x9d\x3c\x8d\x2d\xdb\x18\xc7\x17\xe9\xf8\x46\x2e\xeb\xf1\x3c\x12\x05\x7b\x92\x9e\x23\xcf\x3f\x50\xe0\xc7\xf3\x4b\xf4\x29\xf4\x1a\x77\xe8\x19\xf0\xab\xf0\xb8\x42\x06\xac\x3c\xd8\xa7\x40\x5e\x48\x87\x96\x9e\x8f\xc3\x13\x94\xc6\x81\x3f\x13\x54\xaa\x17\xbe\x7a\xf8\xd8\x86\x22\xd0\xfa\x10\x19\x92\x6b\x66\x2d\xf9\xc1\xaa\xf2\x95\xc2\xd6\x7e\xbf\xb9\x42\x6d\x49\x54\xba\xfc\x11\x6c\xa3\x07\x14\x86\x63\xee\xe5\x52\x45\x81\x6f\xfa\x33\x0d\xce\x27\x4b\xc7\x36\x2b\xd6\xff\xbb\xff\x34\x34\xf9\xc4\xc4\xc5\xba\x9a\x18\xd8\x52\x13\x03\x5b\x4a\xe8\xd2\x24\xeb\x4f\xd1\x43\x72\xc2\x35\xe5\x43\x42\x7f\x81\xdf\x37\x3c\xea\x67\x6a\xf6\xef\x01\x75\x61\x05\x91\x5f\x61\xd3\xa5\xe7\x05\x6b\xfd\xf9\x54\x29\xb5\x60\x36\x8a\x3e\xf1\x37\x9e\x26\x54\xb8\x00\x1f\xca\x27\x24\x9c\xbb\xd5\xce\xdd\xfe\x85\x2a\xe9\xaf\x83\xa3\x3a\xad\x96\xa3\xd8\xcf\xe8\xda\x6d\xd5\x22\xb9\xa5\xd9\x4e\xcf\x26\x76\x39\x72\xd3\x90\x15\xc9\x10\xc1\xdb\x35\x8a\xfb\x95\xcf\x92\x9e\x9f\xe8\x0e\xd3\x25\x08\xab\x4a\x03\x00\x70\x39\x8a\x5d\x99\x0a\xe5\x88\xdb\x78\x65\xc2\x53\xe6\xd1\x67\x9f\xd7\x76\xf4\xd2\x6c\x67\x35\x2d\x84\xad\x48\x62\xcc\x96\x13\x50\x3a\x56\xab\xa7\xec\x5f\xa0\x42\x8f\x09\x8b\x68\x15\x3d\x3e\x26\xf6\xaf\x90\xfc\xab\x5d\x93\xc6\x51\x68\xc1\xf7\x02\x7c\xfa\x49\xc5\xf7\xf7\x75\x8d\xe9\xf8\x36\xad\x54\x94\x7b\x40\x69\x0c\xa3\x54\xc7\x7f\xce\xcd\x75\xfa\x51\x1e\x9a\xac\x6f\xfb\x6d\x9f\x9a\x70\x2e\x8c\x3a\xca\x39\x0d\x83\x7f\x50\xeb\x02\x52\xed\x2b\x8d\x71\xe3\xd2\xb4\x68\x29\x22\x9a\xa6\x36\x43\x9a\x44\xd2\x71\xc5\xe6\x3e\xa5\xc7\x86\x4f\x29\x3a\xca\x30\x4d\xc2\x78\x42\xed\x7b\x9f\x03\x6e\xea\xfc\x6c\xd3\xd7\xfe\xc7\x83\xcc\xf4\xa5\xb3\xcc\x1c\x1a\x81\x8f\xdf\x6e\xe8\x29\xad\xf3\x5a\x7e\xf7\xbc\xda\x51\xfb\xf6\xed\x7b\xdc\xd3\x73\x01\x00\xff\x14\x33\xda\x95\xc1\xb5\x24\x03\xe5\xf2\x56\xed\xe2\x57\x9c\xbe\x45\x99\x4a\x88\x8a\x4a\xf9\x4c\xb1\x81\xae\x93\x5b\x41\x42\xfd\x4f\xf5\xce\xba\x0e\xe8\x03\x4e\x36\xd5\xa0\x2a\x83\xa1\x44\x29\xe3\xa1\x75\x35\x5b\xd8\x32\xec\x75\xd9\x0e\xa7\x77\x74\xe1\x92\xea\x35\x55\xf3\x96\xa3\xe2\x8d\x35\x43\xe3\xbe\xce\xf3\xbc\xab\xe7\xca\xde\x6d\x20\x10\xee\x14\x26\x1f\x46\x2d\xdd\x09\xd3\x8c\xf9\x4a\x68\x95\x28\x68\x90\xe3\x39\x87\xef\x13\xce\x26\x9f\x18\xdb\xd7\x27\x00\x1e\x4a\x53\x55\xb5\xee\x2f\x03\x4d\x86\xc9\x96\x83\xcf\x6b\x92\x79\x8c\xd2\x31\x0c\x36\x50\x0a\x15\x9f\xc0\xb6\xc9\xf8\x9c\xd2\x92\xde\xb1\xa1\x52\x48\x86\xb1\x60\x9f\x73\xdd\x0f\xa0\x82\x5b\xf0\xaf\xb8\x82\x6f\xaa\xd1\xb6\x2d\x2a\xcf\x08\x08\xaf\x7c\xe3\x7a\x02\x05\x05\xfc\x5f\x9d\xee\xfc\x19\xb6\x8c\x80\x7d\x8a\xa4\x25\x2d\x5e\x87\x87\x71\x5c\x03\xac\x60\x21\x8c\xd5\x3e\x6d\x6f\x63\xe6\x00\x26\xfa\x0a\x2c\xbc\xcc\x02\x34\x22\x78\x7b\x26\x36\x09\x13\x43\x23\x50\x38\xaa\x74\xd9\x8e\xaa\x80\x2e\xa6\x16\x35\x1b\x20\xdc\x0e\xca\x8d\x7c\xac\xc9\xde\xa4\x05\x50\xfe\x3c\x12\x3d\x86\x9d\xf2\x89\x17\x16\x9a\x70\x92\x22\x78\x33\x3f\xba\x73\x47\x61\x6d\x62\x6b\x12\x8b\xd9\x41\x69\x73\x97\x0f\x43\xba\xdc\x3e\x41\x1f\x64\xe0\x61\x9d\xe7\x06\x1a\x93\x42\xcb\x3c\xa9\x47\x9e\xed\xed\xfa\xc1\xf5\x7b\x1a\xf1\xfd\xd5\xa9\xa6\xf9\x8c\x63\x4b\x56\x97\xf4\x37\x90\x73\x55\xc8\x0c\x81\x62\xe0\x7f\xa0\x6b\xe2\xff\x3e\x95\x8e\x98\x99\x14\x29\x09\x87\x52\x4b\xb6\xfc\x1a\x47\x59\xe2\xc1\xa1\x81\xd2\xb6\x59\x65\xbe\x45\x47\xc6\xb4\x20\x65\xc9\x0b\x2a\x0d\x8a\x27\x6f\x70\xd0\x25\xb2\x1b\x4a\xd6\xa3\x2a\x65\x65\x4d\xf6\xc5\xf2\xb7\x50\x6c\x83\x4f\x45\x1a\xbd\x13\xe3\x2a\xce\x0a\xcc\xcd\x7b\xe1\x93\xfd\xe2\x41\xf7\x00\x82\x89\x9d\xd1\x46\x59\x08\x51\x35\x60\x5c\x6e\x14\x75\xf1\x25\xc9\xa4\xaf\x05\x4a\x91\xf0\x0a\x02\x05\xac\xe8\x1d\xdd\xd6\xcf\xfd\x8a\xcf\xfd\xcb\xb5\x2a\x76\x87\x5e\x14\x8a\x95\x27\xb1\x19\x51\x87\xfc\x2e\xed\x19\x6c\x0e\x80\xc5\x98\xe2\x1b\x01\x01\xc2\xcc\x53\x53\xdd\xed\xdf\xb9\xd1\x7e\x79\xfe\xd0\x16\x6f\x63\xfc\x37\xc0\x4d\x45\xef\xa8\xf5\xb2\x44\x84\x90\x7e\x70\xf8\xf2\x72\x5b\xc1\x7f\xbd\xda\xe4\xf9\x89\xd4\x9e\x03\x0c\x7c\xd7\x37\xa6\xaa\xee\xf3\x8d\x5a\x27\x6d\x6e\xae\x53\x64\xe9\xa4\x17\x4b\x8b\x46\xb8\x72\xe8\xe2\x85\x44\xc7\x97\x9b\x47\x36\x8e\x53\x83\x37\xeb\xa6\xfd\xca\x87\x29\x33\x7d\x4d\x84\xa4\x6b\x59\x9a\x0c\x88\x22\xc4\x69\xb0\xec\xf7\x96\xb1\xe5\xd4\xa7\xee\x07\x4a\x18\x38\x4e\xd7\x66\xbc\x01\xbd\x3f\x55\x34\x3d\x5f\x9f\xaa\x38\x11\x7c\x68\x32\xd2\xdd\x50\xd6\xa0\x79\xfd\x82\x91\x00\x32\x55\x55\x7e\xb3\x8c\x5b\x3d\xad\x7a\x69\x03\x66\x24\x28\xd7\x1d\xea\xc7\xe7\xb0\x0c\xf8\x44\x4b\x71\x4f\x15\x08\xea\xd8\x54\xe1\xe6\xee\xd4\x10\xdd\x2f\x74\x08\x26\xbe\x62\xad\x1f\x4b\x6e\x6a\xeb\x79\xdf\x9d\x47\xfd\x96\x1e\xa2\x67\x5c\xac\x88\x7b\x37\xdc\x67\x2f\x25\x71\xaf\x96\x72\x96\x54\x1d\x90\x05\x5c\x1f\x56\x8f\xcd\xc8\x26\x85\xa8\xaa\x20\xa6\x7d\x1f\x7e\x82\x4f\x34\xbb\x12\xc9\xb7\xdb\xbc\x22\xc7\x16\xf8\x4a\xe9\x65\xc5\x58\x94\x4f\xf2\xc2\x44\x09\xbe\xf9\x45\x87\x54\xf4\x99\xf8\x91\x46\xe2\xda\xde\x24\x8a\x0b\x25\xb1\xbc\xa9\xd9\xd8\x6f\x55\x7a\xdb\x7e\xa1\x24\xf6\xf5\xe2\xd9\x6d\x05\x7f\xdd\x18\xd0\x05\xff\x4a\x23\x42\xb5\x18\x2a\xcd\x83\x4a\x1b\xc4\xc3\x0e\xae\x55\x3b\x14\xd5\x4e\x44\xa5\x91\xa1\x3b\x27\x95\xe6\xc5\xf6\x2e\x8a\xe3\x9f\xac\x74\x51\x74\xb7\xe2\xa1\x2d\x15\x7f\xff\xeb\xd6\x64\x8f\x97\x37\x83\xeb\xe7\x81\x50\x18\x8f\x07\x74\xc7\x6e\x2e\xa9\xfc\x32\xbd\xeb\xd0\x9f\x42\xdf\x10\xb5\xd5\x47\xbb\x2a\x7f\xe4\x35\x2d\xa2\x11\x9e\x75\x6f\x0f\x99\x39\x98\xbc\x5d\x1b\xaa\x99\x7b\x9e\x62\x06\xdc\xef\x13\x5d\xdd\x5f\x1a\xd9\xfc\xd9\xf2\x0b\xf0\xc4\xf1\x5c\x71\x5f\x47\x34\xf4\xe9\x98\x66\x36\xfd\x90\x6a\x3a\xf8\xc9\x73\xd3\xd6\xa1\x97\x7c\x2a\x5c\x3e\x6f\xfc\x0c\xf3\xcf\xc1\x26\xfe\xda\x54\xb3\xb1\xaa\xf2\xc6\xed\xa9\xe7\x09\x64\xea\x4b\x84\xcb\x7f\xaa\x19\xb2\xda\xdd\xd6\x2f\x1e\x74\xf8\xca\xf2\x09\x21\x7b\x3a\xc6\x8d\x47\x7c\x7e\x77\x57\x8d\x16\xfc\x26\x4a\x63\xc8\x01\xef\xc0\x54\xf0\x89\xc2\x54\x9b\x5e\x48\x0a\x7f\x52\xe6\x2e\x2f\x46\xc8\xd9\x7c\xaf\x72\xcd\xc6\xe1\x50\x21\xec\x50\x4c\x7f\x18\xb3\xd5\xc2\x42\xa7\xcc\x11\x26\xa6\xb0\xa8\x52\x22\x51\x3f\xae\xab\x62\xe7\x15\x7a\xb4\xcc\xc0\x64\x27\xe7\x85\x93\x58\xe1\x09\x46\xda\x9b\x32\xcd\xf8\x8c\x1a\xf8\xcb\xc7\x36\x2c\xd2\xac\xed\x87\x41\x3f\x51\xc6\xf3\xc2\xb4\x42\x69\xa0\xc4\xf8\x57\x23\x05\xbc\x63\x6c\x08\x9f\x28\x77\x12\xa6\x09\x0d\x82\xe0\xf9\x8a\xa8\x89\xa2\xdd\xdf\x54\xfc\x07\x45\x3a\x29\x88\x7e\xd2\xb5\x56\xbf\x49\xeb\x4d\x60\x14\x1e\xfb\x79\xaa\x66\x80\x0f\xcf\xce\x77\xf2\xaf\x4c\x4c\xe2\x64\xa4\xdc\xd4\x3d\x3d\x65\x19\xff\x55\x0a\xee\xc9\xeb\x91\x15\xb7\xc1\x5a\x98\xf4\x94\x44\x17\xf3\x29\xcd\x6c\x2b\xe3\x2c\x2f\x3a\xaa\xdd\x96\xe2\xe0\x6d\x2a\xb1\xd0\x10\xdd\x2e\xff\xd8\x39\x53\x85\x15\xf9\x40\xf5\xc0\x37\xa7\x2a\xa0\x7b\x4c\xd1\xae\x5e\x56\x97\xd0\xcb\xac\xed\xdb\x64\x86\x56\xa3\xb0\x03\x79\x00\xfe\x0d\x74\xfe\xf8\x1f\xc8\xf6\xf1\x3f\x28\x26\x85\x3c\x8d\xed\x28\xa9\x14\xd7\x41\xe6\xc5\xc7\x35\xca\xf7\x03\x07\x3a\x66\x3c\x8e\x99\x66\x22\xdf\x56\x4a\x55\x13\x8b\x4a\xf5\xc8\xe4\x51\x48\x35\x6f\x61\x28\xa3\x0b\x43\xfe\x7b\x3b\x50\x2a\x21\xb7\xa7\x6a\xb2\x00\x81\xb7\xc4\xae\xe5\x23\x90\x76\xfe\xf6\x6d\xf1\x42\x27\x34\xd9\x18\x0c\xd6\xf4\x3e\x10\xc3\x80\x31\x84\x8f\xb7\x8b\xa0\x2f\x2e\x2d\x76\x16\x16\x9e\x26\xfb\xee\xe6\x69\x5e\xf6\xb8\xb2\xc0\x83\x42\x77\x80\x8a\x1d\xc6\xe3\xb7\x03\x3f\xc3\xb2\xa5\xf5\x21\x1e\x68\x8d\x2e\xa4\xce\x70\x41\xc2\xdb\x26\xe4\xba\x0a\x9c\x7d\x83\x3c\x95\x62\xc6\x79\x85\x1d\xcf\x15\xea\x1f\xbb\x41\xd3\x25\xa9\x7f\x9f\xc0\xd3\x62\x7c\x7a\xa0\x68\x48\x59\x93\x45\xaa\xb1\xdb\xeb\x1c\xfb\x17\x88\xea\x84\xb6\x34\x2c\xfd\xdb\xf4\xdb\xd2\x0a\x6d\x39\x02\x71\xad\x55\x6a\xf3\x22\x1a\x99\xc2\xf2\xc4\x87\xe4\x36\xe5\x07\x71\x37\x3f\xa6\xa7\xc1\xc7\xaa\x68\x7c\x79\xaa\x04\x14\xff\x88\xde\x03\x1f\x2b\x7b\xb1\x3e\x59\x69\x79\x9f\x70\x22\xa8\x00\xcb\x1a\xea\x2e\xc3\x49\xbe\x62\xb3\xaa\x9e\xf1\x4d\x7c\xca\xcd\x74\x7b\xec\xe9\x85\xa9\x9f\x27\x5b\x49\xd2\xb5\x47\x7d\x96\x0d\xad\x48\xd7\xb5\x3f\x3c\xeb\xf9\x77\x0f\x1c\x90\x09\x3a\x3d\x98\x71\x1c\x49\x2f\x9f\xd0\x54\xbf\x78\x09\x7a\x30\xc2\xb8\x50\x3e\x0c\xf6\x4a\xaa\xf6\xb5\x4c\x1a\x7b\x7b\x68\x75\x21\x2d\xdb\xa2\xa5\x8d\x27\xf2\xe7\x9a\xe4\x00\x86\xdc\x5d\xe5\x61\x11\xc7\xc0\x74\x05\x02\x94\x82\x92\x22\xb4\xfa\x2f\x6a\x86\xc6\xcf\x5d\xfb\xa2\x1f\xe5\x04\x67\x41\x31\x49\x48\x06\x3e\x9f\xaa\x99\x05\x4c\x38\x22\x83\xba\x87\x35\x89\x9f\xbd\x13\x6c\xaf\xac\x2f\xbe\x74\x10\xca\xea\xe3\x34\x2b\x7c\x65\xbd\x51\xd4\xdf\x25\xd1\xaf\x45\x86\x2d\x3c\xe2\xba\x4f\xf0\x77\x7c\x12\x3c\xaf\xe2\xc6\x5e\x1e\xf5\x23\x93\x45\x96\xa5\xd1\x50\xe3\x78\x9f\xcc\x21\xa2\x2d\x4c\x0e\xf0\x31\x62\x32\xfe\x23\xe5\x4a\x87\xc4\xa0\xaa\xe8\x23\x76\x22\x4b\xe4\x93\x0d\xa5\xfb\x98\x9b\x28\x23\xe7\xec\xa8\xc2\xf6\x7b\xaa\xb0\x7a\x94\xda\x31\x61\x96\xe6\xf9\x8c\x8f\x99\x8e\x51\x9a\xe9\xb8\xf3\x3c\x6b\xab\x6a\x79\x7f\xa0\x82\xe3\xb1\x4d\x4c\x4c\x7c\xf0\x9e\x04\x93\xe9\x97\x25\xc9\xd8\xee\xbd\x96\x66\x3b\x51\x1c\x4f\x48\x4d\x49\xe0\x9a\xe8\xfd\xbe\xa7\x18\x2e\x8e\xeb\x5a\xf2\x66\xf0\x98\x20\x0f\x96\xc3\x56\x25\x45\x2b\x7f\x56\x72\xb7\x86\x9e\x6e\x38\x34\xd9\x40\xd2\x41\x94\x5e\x2f\x60\x67\xf1\xc9\xf4\x79\xed\xbf\xc1\xe2\xc6\xb2\xda\x07\xbd\xa6\xeb\x76\xae\x3e\xe1\xc2\xf2\xc5\x90\x9e\x49\x06\x33\x44\x5a\x8b\xcd\x04\x6c\x16\x56\x05\xe6\x83\xf9\x18\x11\x22\xff\x91\x82\x72\x16\xe9\x38\x32\x99\xc0\x24\x05\x79\xa5\xc6\xef\x2f\x04\x6a\xbc\x62\x3c\x8e\xcd\x24\xe7\xba\xb3\x08\x5b\x94\xaf\x08\x29\xfa\xb7\x34\xb0\xee\x1e\xed\x31\xc7\x63\xe2\xc6\x96\xbf\xa5\xd8\xbb\x4c\x1c\x5b\x34\x2f\x51\x62\xb8\x10\x28\x76\xa0\x3a\x1c\x72\xfe\x50\x27\x4a\x0a\x3b\xc8\x8c\x6b\x01\x80\x4d\x04\x24\x6c\x7c\xbc\xd1\x34\x97\xd5\xcb\x44\x78\xb8\x12\x25\x0b\xaf\x95\xaa\xac\x9b\xc4\xb2\xf2\x14\xbc\x12\x8a\x65\x7c\x3c\xd5\xca\x0d\x66\x1f\xdb\x4e\x19\x1a\xf1\xc5\x75\x2e\x56\x22\x58\xf8\x4c\x3d\x42\x99\x76\xd8\xe5\x0b\xc9\x98\x55\x12\xa9\x61\x3f\xab\xc7\x18\x4f\xd8\xcf\x19\xb0\x2f\x33\x29\x4a\xad\x4d\xfd\xf2\xfc\xa1\x4e\x19\x66\x46\x26\x8e\xde\x90\x85\x27\xb3\x32\x15\xe1\x95\xed\xcf\xd4\xa9\xc7\x45\x45\x96\xb6\xfc\x55\x9d\xd6\x32\x83\xa7\x6b\xcd\x98\xd2\x88\x8d\x27\x71\xdc\x33\xe1\x4a\x4b\x55\x69\xd0\x13\x97\x2e\x61\x9d\x8d\xfc\x95\xce\x64\xbc\x26\x24\x61\xac\x12\x13\x78\x50\xef\x9f\xeb\x38\xc7\xc6\xe9\xda\x1e\x5f\xcf\x63\x2a\x7c\xb8\xfa\x9d\x1b\x8a\x52\x72\x67\xd7\x93\xd5\x31\xfa\x46\xf4\x27\xa8\x9a\x2e\xc4\x2a\xbe\x90\xff\xc1\xd4\xcf\x4e\xed\xd8\xd0\x54\x38\xe3\xb6\x2f\xa4\x5d\x54\xf3\x4f\xbf\x8f\xe7\x81\xdc\xd3\x23\xb4\xc2\x74\x34\xb2\x49\xb1\xcb\x7b\xbd\xc7\xba\x6a\xa3\xa3\x4a\x82\x67\xbf\xbb\xeb\x58\x07\x8e\x3f\xbd\xa1\x3a\x34\xc7\x15\x6c\x31\x8c\xb2\x70\x12\x15\x33\x15\xc1\x76\x8f\x9f\xaa\x56\x0b\x2a\x42\xee\x7e\x66\x6a\x9c\x8e\x27\x98\x4b\xdb\x4d\x0f\x89\x31\x4a\x53\xcf\xfd\xc1\xec\x36\x48\x26\xbe\x03\xdb\xe0\x14\x83\x1c\x9c\x92\x1b\x6b\x4c\x78\xae\xf6\xc8\xc8\x64\x61\x9a\xb7\x5a\x73\x73\xae\xf2\xa6\x12\x50\x0d\x85\xe8\x4d\xb2\x04\xf3\x4b\x9e\x88\xef\x63\xfc\x9e\x44\xa2\x0d\xb2\xd7\x43\x6b\x56\xd7\xdb\xe4\x6d\x1c\xc1\x83\x63\xe7\xfd\x86\x6e\x6e\x9d\x77\x19\x59\x3f\x4b\x89\x5e\xb3\xad\x24\x66\x77\x76\x3d\xc2\x07\x43\x25\x88\x40\x2f\xa9\x89\x84\x5e\x66\xd7\xa2\x64\x30\xa3\x20\x37\x12\x61\xf2\x59\xd7\x17\xea\xaa\x8e\x53\x01\xe2\x43\x82\x6e\xd0\x40\x0b\x92\x6d\x26\xe9\x41\x51\x0a\x2d\x09\x3c\x9d\x73\x6a\x4d\xed\xd8\xf0\xab\x3d\x8b\x56\x6d\xb6\xab\x5c\xc7\x08\xd9\xce\xe8\x14\x6e\x77\x17\x57\xc4\x33\x05\x53\x9f\xd4\x7e\x57\x39\x86\x9b\x35\xea\x8b\x43\x2f\x75\x8a\x49\x06\x5d\x73\xae\xad\x54\x54\x46\xfc\x9a\x89\x46\xe3\xcc\xe6\x39\x15\xff\x9d\x32\x3e\x16\x83\x50\xea\xb9\x89\x87\x68\x30\xb1\x93\xac\xdd\xfa\xf2\xcb\x3c\xa4\x79\x5b\x99\xc8\x8f\x75\x9e\x7a\x59\x89\x41\x9a\x30\xb3\xcc\x66\x27\x05\x5d\x7a\xc3\x7c\x12\x7c\x51\x30\x8f\xab\x36\x0b\xd3\x38\x36\x85\xcd\xc8\x9a\xb1\xa5\x17\x5a\x83\xf2\x11\x49\x8c\x5e\x91\x85\xb0\x6b\xba\x5d\xbb\xa9\x3a\xb4\x9f\x29\xf2\x02\xdf\x20\x5c\xc9\xa2\x7c\x1c\x39\xf8\x3a\xc2\x5c\x56\xdf\xe3\x13\x35\xa2\xdb\xcb\xac\xe1\xd2\x82\xd3\xe2\xf5\xba\xbc\x4d\x22\xa2\x84\x6c\xc8\x87\x3c\x10\xc7\x52\x6a\x53\x45\x8a\xf9\x5d\x15\x78\x5c\x6b\xb4\xb0\x59\x5a\x06\x88\x92\x86\x49\x73\x42\xf7\x23\xf4\x13\x30\x59\xc2\xe2\x1a\x28\x9f\xbc\x09\x77\xcc\x27\x81\x2f\x92\x62\x32\x89\x8f\x37\x1a\xd0\x1b\x6b\x43\x13\xae\xac\xb7\x1e\x36\x09\x2a\xad\x8c\xe1\x64\x64\x12\xc2\x06\xc2\x78\xb7\x36\x7c\x79\x72\x2f\x01\x5a\x1d\x66\x55\x2c\xfc\x7f\xfe\xef\x77\xf5\xb4\x91\x1a\x5a\x9e\x2a\xb3\x31\x36\x45\x11\xe5\x1c\x18\x37\xa9\xaf\x3a\x19\x97\x2c\xb3\x79\x81\xcd\xeb\x6a\x56\x65\x36\x0c\x03\x80\x0b\x42\xf1\xf3\xa9\xae\x57\x7a\xdf\x54\xec\x61\x6b\x65\x10\x52\xb4\x94\xd2\xe7\x39\xa5\xf0\x71\x4e\x95\x09\xf3\x34\x8a\x5b\x6a\xc0\xe6\x98\x1e\xbd\x39\xa6\x90\x8d\xc3\x74\x64\x97\x25\xc8\x44\x64\x0d\xe4\xa0\xf4\x97\xe9\x73\x48\x67\xef\xb8\x18\xbf\x5c\xf8\x8f\x97\xee\x9f\xa2\x86\xdb\xff\x49\x57\xe1\x69\x91\x0c\x22\x58\xde\xb5\xe1\xe0\x49\xbf\xf8\x3c\xdd\x20\xbe\xf6\xaf\x6e\xa8\xc2\xdf\x66\x95\x5d\x94\xdc\x09\xf2\xca\xeb\x14\x8b\x51\x45\xfb\xc9\x0e\x39\x4e\x04\x72\x10\xd8\xc3\xa2\x60\x30\xb1\xa4\xe8\x4a\x3f\x53\x38\x91\xd5\x9b\xb9\xa7\xde\xcc\x3d\x95\x25\xae\xed\x8b\xf6\x61\xbf\x0b\x63\x2f\x16\xa7\x70\xf6\x7a\x11\x86\xb0\xbf\x5b\x8f\xb4\x2a\xe0\xff\x67\xd3\x4a\xa6\x4c\x31\x10\xec\xe3\x4d\x55\x7e\x85\x60\x22\xff\xf7\xc0\xeb\x54\x0f\x6d\xf6\xa4\x07\xa5\xee\x05\xdb\x07\x02\xe2\x63\x35\x8c\xf3\x41\x6e\xbc\xde\x51\x61\xdc\xee\xae\xe2\xed\xe5\xb2\xb6\xe4\x5f\x3e\x98\x68\x6d\x78\x2d\x72\x28\x81\x0a\x7d\x43\xdb\x8b\x4a\xde\xa1\xc8\x0e\xce\xfa\x8f\xab\x73\xbf\x6a\x73\xbf\x49\xc9\x30\x7f\x6d\x8d\xcc\xe2\x85\x4e\xda\x7b\x4d\x49\xaf\x09\xb6\x46\x03\x6d\x6a\x31\xd7\xa1\x97\x3a\xa3\xa8\x5f\xa4\x6b\x49\xdb\xaf\x21\x14\x20\x51\x3f\xdd\xa1\xac\x41\x3d\xb2\xfc\xf2\xcb\x65\x50\x94\xa5\xfd\x09\x63\x53\x94\x70\x8d\xf2\xe3\x67\x03\xbf\xa3\x6c\x31\x8c\xc2\x5c\xd5\x2e\x51\x08\xe6\xe3\x1a\x30\x75\x61\x61\x91\x52\xb3\x51\x94\x28\x63\xd7\xd8\xb2\x91\x6d\x9f\x8e\xc7\x69\x6e\x77\xfb\xa2\xd0\x3d\x7a\x1d\xaa\x0a\x38\x2f\xbc\x28\x58\x40\xd8\x14\x3f\xdd\xf5\x8e\x13\x90\x0d\x54\xb3\x6e\x35\x6a\x6f\xdb\xaf\x4c\x84\xd8\x4b\xf8\xd9\x35\x59\xbb\xf3\x87\xfd\x28\xb6\xa3\x91\x51\x18\x4c\xcc\x53\xf3\xb1\x0a\x13\x52\x9a\x22\x8e\x67\xe8\x06\xf5\x62\x67\x46\x88\xc0\xe3\x77\xaf\x22\xd8\x15\x08\xcd\xc3\xf8\x1c\xc2\x74\x3c\xb6\x59\xbb\xbc\x15\xe4\x09\x97\x14\x89\xf6\x0c\x06\xba\x60\x80\xee\x35\x55\xbf\x8b\xcc\xe4\x5e\x96\x45\xa6\xc9\x5a\x9e\x8b\xce\x19\xa7\xd1\xbe\xb5\x7d\x8a\x05\x8a\x2d\xb7\xc0\xf5\xb7\xbb\x90\x43\x2f\x75\x7a\x99\x49\xc2\x61\xdb\x93\x96\x7c\x8d\xbe\x97\xc7\xd1\x02\x1f\x64\x7c\xbf\x36\x2c\x28\x37\x47\x6a\xcd\xb6\x9f\xb7\x55\x7e\x71\x5f\x51\xb7\x30\x80\x58\x62\x2c\x1f\x9f\x9a\x64\x10\x33\xbf\x1e\x8c\xcd\xdb\x81\x47\x8d\xbe\x5d\x81\x53\x8e\x63\x43\x95\x0b\x66\xc8\xa5\x17\x27\x6c\xb9\x4d\x1e\xb9\xaa\x84\x21\x75\x4b\x9f\x2d\x6e\x4d\xab\x12\xa2\xb1\x89\x12\x09\x7f\x31\x27\x82\xc0\x84\x8f\x15\x9a\xb9\xc8\x26\xe1\x8a\xcc\xc1\x0b\x94\xb1\xbc\x05\x3e\x56\x8e\xc8\x8c\xd2\x15\xda\x5e\x80\x53\x32\xbd\x3e\x9f\x28\xee\x21\xb3\x6f\xb4\x6f\xc6\x63\x16\x4f\x2a\x60\xe5\x49\x6a\xb9\x3b\x0e\xc9\x45\x7f\xa2\xaa\xd9\xe3\x34\xcf\xa3\x5e\x6c\xf7\xf8\x49\x1c\xf0\x0c\x39\xc2\x4c\x1f\xd5\x73\xd3\x4e\x78\x3f\x7d\x7a\x45\xdc\x86\x5b\x0f\x60\xbb\xb1\xb8\x31\x6c\x02\x2c\xdc\xa6\xab\xb2\xe5\x29\xa5\xaf\x79\x21\x25\x49\x7c\xfe\xf1\xae\xea\xc6\xdc\xd0\xd4\x46\x3b\x6b\x99\xfe\xd2\x2c\xc1\x2e\x0b\xe2\x12\x53\x44\x9e\x42\xc0\x72\x6b\xaa\x34\x05\xa0\xe6\x8c\xd7\x76\x52\xf3\xe1\x9e\xd7\x72\xc4\x99\x59\x2e\x18\x97\xe2\xd6\xc8\x81\x03\x6e\x8d\xec\x75\xe5\xd7\xff\x66\x1f\xc5\x79\xc8\xfb\x38\x7a\x17\x49\x1c\x3d\x74\x77\x59\x35\x84\xd7\x32\x53\xee\x5f\x2c\x55\x84\x63\xa0\x6c\xe0\xe3\xa9\x9e\x96\x30\x83\x89\x0b\x56\xf1\x34\x4e\x6b\xdc\xeb\xe9\x86\x86\xcd\x2b\x64\xc4\x84\x05\xc8\x09\xcc\x9d\x09\xfc\x4e\x3e\xa3\x62\xdc\x81\x79\xc3\x16\x50\xb8\x94\x36\x87\x2a\x63\x1c\x6b\x42\x4b\xf4\x26\xeb\xb2\x66\x61\x4b\x3f\x0a\x54\xcb\xe0\xa3\x8a\xd4\xe8\xa8\x34\xda\x78\x94\x78\x03\xe0\x22\xe5\x63\x85\x05\x7a\xc3\x26\x51\x31\xe4\x5b\x45\x08\x7f\x37\x50\xe0\x97\xbb\xaa\xa6\x4e\xb5\xd9\x09\xa9\xe5\xba\xed\xce\x7f\xcc\x27\x0a\xe0\x54\x1a\xe0\x6c\x92\xe4\x5a\xc7\x1c\x53\x02\x58\x1f\xd0\x0e\x93\x52\x04\x7d\x89\x60\x56\x25\xe6\x2d\x1c\xb5\x1d\x1c\x3e\x4b\xd7\xf3\x49\xcd\x50\x13\xb4\xce\xf6\xad\x82\x50\xc3\xb4\x7e\x84\xaf\xe7\x93\xa6\x31\x4a\x20\xa3\x7d\x02\x04\x07\x7f\x44\x89\x88\x1f\x99\x0a\x19\x8d\x57\x82\x88\xd7\xdb\x7e\xec\x17\xc5\x39\x78\x03\x16\x4d\x42\xf2\xfa\x91\xe6\x7e\xb2\x49\x8e\x21\x0f\xa1\x6d\x2e\x7f\x01\x9e\x07\x41\x21\x8c\x15\x4f\x4d\x48\xd7\xd2\x7f\x41\x61\x7a\x69\xaa\xa4\x22\x4e\x2a\xa9\x88\x93\x98\x4d\x96\x4e\x68\x11\x15\x13\x16\xb3\x2f\xcd\x01\xae\x12\x34\x5a\xcc\xe4\xa7\x00\xaf\x77\x94\x8b\xfe\x9f\xc9\x32\x23\x2a\xdb\xd1\xad\x3f\xad\x83\xd4\x07\x4d\x33\x17\x1b\x89\xa4\xac\x07\xfd\x5e\xd8\xde\xb3\x5a\x5a\xec\x1c\x9e\x5d\x7c\xdc\x33\xef\xdf\xd2\x1c\x9f\x22\x45\x0c\xb3\x7a\x01\x95\x24\x3e\xd1\x72\x71\x10\xbb\xc0\xfa\xb9\xa1\x80\x4c\x1f\x4e\xbd\x1e\x0c\x48\x07\x45\x61\x80\xac\x2d\xec\xc4\x0f\xa7\x4a\x96\x18\x70\x4f\x58\xd0\xa3\xb5\xb6\x81\x77\xf9\x24\x59\x2e\xab\x09\xd9\x47\x0b\xae\x9e\x4f\x36\xbe\xe0\xe6\x2e\xc2\x15\x2f\x8d\x8b\x57\x7f\x4d\xaf\x83\x6b\xb5\x05\x4b\x90\xc1\xb4\x18\xda\x6c\x2d\xca\x2d\x15\xc3\x10\x59\x9c\x56\x49\xfe\x49\xf2\x61\xd8\xb8\xbf\xa1\x36\xee\x38\xcd\x0b\xdb\x7f\xb4\xe5\xf4\x1d\xee\x29\xc6\xe8\xd3\x78\x6a\xa8\xec\xbf\x8b\xaa\x24\x0a\x11\xd7\x34\x73\x18\x87\x6f\x28\x55\x9f\x9f\x6a\x69\x7e\xb4\x8d\xf8\x0b\x68\x65\xca\x47\x1a\x24\x0f\xd2\x49\x91\x4b\x5e\xe7\x06\xe8\x14\xc5\x4c\x5d\x0e\x7e\x11\x72\xf7\x69\x11\x85\x2d\x2f\xd9\x79\x5e\x67\x6e\xaa\xdd\xb6\x5c\x0c\x77\x79\x51\x0b\xac\x79\xf6\x91\x53\x35\x8a\xf9\x87\xf4\x71\x58\x91\xdd\x94\x6e\x01\x02\x71\xcf\x69\xa7\x4b\x98\xc0\x55\xdb\x26\x6a\x39\x29\x59\x14\xc3\x35\x43\x4b\xdc\x8f\x02\x5c\x84\x4b\x13\x25\x81\xed\x41\xde\xd2\x6c\x67\x39\x4a\x4c\x12\x56\x15\x84\x7e\xa2\x15\x84\x7e\x32\xd5\xe3\xd8\x49\x1e\x89\xb9\x9a\xf1\x63\xeb\xe7\x15\x0d\xe7\x79\x05\x26\xe6\x18\x8c\x4f\x82\xed\x44\x04\x73\x73\x9d\x15\xcb\x34\x35\x5a\x78\x46\xfa\xaa\xba\xda\x6b\x0a\x86\x75\x63\x5d\xbd\xa5\xd6\xd8\x5b\x4e\x0a\xb8\xb4\x21\xd9\x64\x64\x13\x16\x7c\x75\xad\x42\xd7\xf8\xfc\x5c\xb1\x08\x5e\x55\xc1\xd0\x6a\x14\x5a\xf2\xd0\xc8\xc7\x3e\x9e\x56\x38\x48\x94\xb6\x64\xad\x44\xfe\x1f\x77\x12\x62\xa0\x8a\x4d\xd2\xcf\xa9\xec\x25\x4d\x26\xec\x2b\x04\xd8\x37\x02\xc5\xa9\xf2\xb1\xf2\xaa\xf6\xf5\xd0\xe6\x3c\x09\x02\x4b\x74\x5b\x6b\x87\x9c\x27\x88\x0e\x8f\x44\x35\x55\xf0\xd6\x6c\x5e\xb4\x2a\x70\x7c\x4d\x5e\xdc\x30\xb7\x58\xa4\x93\x8c\x24\x82\x95\x16\x52\x4b\x51\x8b\x36\xf9\xa8\xcc\x0e\x26\xb1\x29\xd2\x8c\x2f\x54\xd4\x30\x54\x0b\xe2\x9f\x4d\xd5\x9a\xb9\x5c\x11\xd7\x9b\x24\x7d\x6a\xc9\xd0\xf3\xd8\xda\xa0\x4f\x6d\x6d\xa8\x87\x3f\x32\x51\xfc\x58\x79\x9f\x0e\xf3\x52\xae\x45\x87\x73\x70\xf2\x93\x08\x1c\x3d\x37\x85\x73\x37\x81\x4f\x93\x4e\x22\xa2\x03\x8c\xed\xfb\x8a\xc0\xe2\xb8\x92\x75\x47\x1f\x1a\xbe\xe3\x9a\x9a\xee\x5a\xc9\x90\xd1\x89\x90\x97\x9f\xd9\x6e\x34\x22\x79\x98\x59\x9b\x60\xa9\xc9\xe4\x8e\x7f\xac\xd5\xba\x62\x7d\x74\x90\x9c\x12\x7c\x9e\x6c\x3f\x84\x52\x37\xf1\x28\xf9\x44\x19\x95\x28\xcc\x1f\x2f\x2f\x1c\xcb\x01\xa4\xe8\x0e\x7e\xe2\xfb\x5d\x3c\x8c\x83\x0c\xf3\xb3\xa9\x02\x44\xec\xfb\x8f\xba\x3e\x9c\x79\x62\xc3\x65\xf9\x7f\xeb\x79\x1a\xdd\x44\x64\xf3\x18\xe9\x32\x2a\x73\xfb\x0a\xef\xb3\x3f\x42\x44\x4f\x89\xd9\xd3\xfb\xe0\x53\xa8\xc5\xf2\x9f\x7d\x51\x29\x1e\x84\xd1\x6a\x14\xef\xd6\x03\x6a\xda\x98\x04\xda\xcc\x00\x03\x02\x13\x89\x68\x8f\x8f\xf1\x43\x62\x06\xea\x7d\xa2\xce\xd8\x66\x51\x2a\x7c\x72\x82\xa1\xd6\x64\xbb\xf5\xcf\x2c\x76\x5e\x4b\x05\x31\xe9\xeb\x77\x8a\x7f\xc7\xeb\x83\x46\x2a\x89\xe3\xc2\x4d\xe0\x41\xb4\x27\x6a\xb9\xf2\xdc\x5c\x27\xcc\xa2\xf1\x38\x96\xaa\x9e\xc3\x3a\x3b\x0e\xf7\x77\xf0\x14\xd0\x6d\xb8\xdf\x88\x57\x2a\x32\xd3\x07\xce\x5c\xa8\x3b\x5b\x8e\xcc\x75\xa6\x5b\xa9\x60\x94\x4f\x5e\xd4\x3f\x1e\xf7\x2d\x8e\x55\xbb\x4b\xc1\xd4\xb1\x0a\xc8\xa6\xfc\xe3\x67\x37\x3c\xd8\xe2\xd3\xa9\xd7\x33\xe1\x97\x03\x71\xd7\xbf\xde\x6d\x20\x54\x2a\x32\x13\x82\xbc\x1a\x53\xd8\x68\x78\xf2\xb1\xa6\xe2\x4b\x92\x09\x0a\xf2\x6d\xbf\xc4\x1e\xa8\xcc\xfa\xfa\x54\xeb\xd2\x6f\xdf\x0e\x65\x8c\x46\xcc\x20\xab\x26\x9e\xb0\x0b\x83\xdb\xb8\x3d\x55\x44\x04\xb7\x55\x21\xa9\x47\x02\x32\x34\x09\x0c\xa7\x79\x92\x56\x00\x1f\xab\x1a\x6e\x2f\x23\xff\xd9\x72\x6c\x7c\xe8\xa3\xf2\x71\xcd\x2b\x51\x85\x3b\x6d\xb7\x94\x8a\xac\x1f\x9e\x3a\x47\x62\xbe\xd2\xc3\x16\x04\xc0\x64\xb4\x86\x5a\x26\xd2\x67\xb0\x8f\xf3\xb1\xaa\x79\x8e\x4d\x9e\xb7\xfd\xc3\xff\x1e\x99\x30\xa0\x2c\xdf\xa7\x6b\x87\xd5\x3a\xe6\x38\x0d\xa2\xa4\x1f\xad\x46\xfd\x89\x89\x2b\xd4\x89\xcc\xa2\x23\xb3\xa4\xde\x40\x64\x69\xb6\xdb\xbf\x2a\x20\x6c\x10\x1d\x81\xc9\x0e\xbb\xf5\xd9\xae\xa6\xf6\x56\x93\xa8\x8c\x22\x94\xfe\xde\xf6\x07\x53\x2e\xd2\x3c\xa5\xa2\x8d\xac\x1e\x3f\xf0\xbd\x83\xac\x06\x9c\xd6\x9e\xae\x84\x98\xbd\xb4\x6f\x07\x26\x6f\xfb\x39\x27\xa6\xa1\x76\x4a\x4c\x1e\x82\x73\x2f\xf8\xd2\x43\x82\xda\x49\xe2\x2c\x25\x97\x97\xdd\xe8\xc6\x49\x4d\xa8\x79\xb2\x89\xd7\xfe\x35\x5b\x14\xeb\x08\x9e\x84\x28\xae\x7c\x14\xc2\x2c\xd7\x60\xd6\x87\x66\xd5\x0a\xd8\x4e\xf8\x53\x7d\xeb\xe2\xdd\x26\xb4\xd4\x72\x34\x18\x16\xc2\x42\xe9\xa8\xfe\x3c\xed\x5f\x43\xf6\xbd\x80\x68\x2a\x2f\x24\xfb\xe6\xe0\x59\x95\x8b\x4e\x6a\x71\x7f\x8e\x03\x6d\x7f\x77\x19\x26\x8a\xb7\xf7\x91\xc9\x79\xd5\xbb\xbb\xa6\x52\xf8\xef\x05\x8a\x1f\x68\x13\x51\x36\x9a\xb6\xef\x4c\x1b\x60\x7a\x73\xf3\xa0\x97\x73\x43\x13\xbf\xe4\x9b\xc8\x8a\xdc\x1a\x45\x5b\x07\x67\xf0\xf8\xc9\x7b\x8a\x97\x89\x85\x1f\x63\x91\xbf\x14\x29\x01\x0f\xaf\xba\x58\x19\x54\x31\xfd\x7c\x2f\xfd\x86\x48\x39\x96\xbf\x01\x8f\x8d\x7c\x09\xeb\x7a\x27\x14\xa5\xe1\x44\x7e\xac\xbe\x8d\x79\xdb\xf8\xd3\x44\xeb\x22\x92\xc2\xf4\x62\x10\xa0\xb2\x50\x2e\x7f\x6f\xe0\x8b\x4d\x77\x01\x0e\x10\x1c\x5d\x53\xbb\xd4\xc4\x28\xad\x31\x5f\x8b\x12\x81\xf6\x9b\x76\x64\xa2\xa4\xb0\x09\xa6\xaa\x5c\x98\x71\x5e\xe1\x23\xcf\x37\x4d\x17\x7c\x65\x92\x16\x19\xa7\x6d\x95\x66\x29\x9f\x34\x05\xef\x51\x92\xa4\x8e\xf0\x9a\x39\x6c\x55\xdb\xf0\x9e\x62\x54\xec\x09\x37\x96\x60\x14\xe8\x5e\xf9\xa4\xd6\x5e\x3c\x70\x80\x24\x2e\xa3\x44\x16\xa7\x4c\xbf\x95\x3f\xc4\xc7\xaa\x7a\xb3\x6c\xf3\x22\x5a\x35\xf1\x8c\x32\x82\xc2\xdc\xc7\x67\xb0\xe2\x78\xb4\xbf\x1d\xa8\x24\xee\xb7\x6b\x0f\x7a\x41\xc1\x27\x85\x9a\xd5\x5b\xf6\x0f\x34\xe7\x8a\x42\x52\xdb\x3c\xb7\x49\x41\xe5\x17\x17\x54\xdc\x52\x41\xc5\x2d\x8d\xa3\x88\x4d\x3e\x64\x2f\xc3\x73\xb0\xd5\xa1\x58\xef\xd7\x46\x93\x24\x0a\xa3\x31\x59\xe0\xf2\xa2\x81\x11\x38\x8d\xbd\xc0\x27\xd3\x4e\x3d\x20\xb0\xd9\x7a\x31\xcc\xd2\x71\x1a\xd9\x22\x4a\x74\x93\x1a\x13\x5d\x42\x23\x59\xb7\x58\x8b\x9d\x9e\xc9\xb9\x17\xce\x7d\x61\xba\x0d\xe9\x11\x3f\xa1\xb1\x8e\x19\xe1\xe4\x04\xcf\x52\x3e\x25\x3e\x56\xe2\x42\x9f\xe0\xde\xa4\xb7\xe3\xd2\xff\x2c\x0a\x23\x0b\xb2\x44\xd1\xf5\x21\xeb\x80\x30\xe7\x76\xa0\x74\x70\x4f\x6a\x72\x4d\x13\xaf\x10\x69\x10\x40\x49\x77\x35\x12\x0d\x0a\x5b\x6e\xdc\xdb\x09\xf4\x9e\xa7\xd2\x07\x72\xab\xff\x41\x2f\xeb\x93\x4d\x64\xb8\x96\x87\xee\x14\x7e\xfe\x5d\x85\x9f\x7f\xf7\x2f\xeb\x09\xd0\x58\x3c\x39\x6f\xae\x51\x05\xfe\x52\x79\x72\x18\xce\x82\x98\x81\x1d\xcb\x6c\x12\x49\x76\xf3\x22\x3f\xc1\x93\x4a\xf3\x1b\xa1\xbc\xe4\x0b\x0d\x90\x3e\x26\x94\x41\x76\xe4\x88\xd0\x1c\xb7\xc4\x6f\x6b\x6e\x89\x2b\xae\x6d\x92\x47\x83\x04\x58\x1e\x2d\x5d\x0f\xb3\x06\xbe\x4c\xc7\x97\xe4\xa2\xf3\xf3\xba\x68\x6a\x0a\xd6\xcd\xf7\x54\x29\x97\x2b\xc2\x49\x5a\xf4\x1d\xcd\x59\x54\x42\x59\x99\x8b\x4c\xa4\xa8\x74\x79\x4e\x58\x93\x65\x26\x19\x90\x04\xdd\x8c\x52\xd6\x7c\x8f\xee\xc8\x85\x0a\x9e\x15\x73\x4b\x11\x54\x6f\x4e\x9f\xaf\x3a\x95\x97\x97\x66\x3b\x87\x67\xe7\xa9\x56\x24\x3d\xcd\xd6\x2f\xff\xbc\xef\x77\x28\x9d\xa3\x3a\x1a\x74\xa1\x63\x7a\xe9\xa4\xa0\x55\xce\x83\xd5\x4a\xae\xea\x92\xaa\xfb\x7d\x67\xea\xeb\x8a\x17\x6b\x36\x65\xf1\xa5\x83\x9d\x3e\x67\x77\x9a\xca\xba\x3e\x8b\x6c\x46\x69\x32\x78\xdc\xcf\x48\xcd\x74\xab\xbc\x4e\x7e\xda\xfd\x37\x09\x6d\x22\x4c\xc1\xe4\x93\xa4\xae\x48\xeb\x08\x6b\x67\x53\x95\x78\xbe\x0d\x0f\x03\xa4\xc4\xfd\xc0\x83\xa4\x6f\x69\xc6\x87\xf7\xa7\x15\x33\xea\x95\x6a\xff\x79\x83\x2c\x5a\xa7\x1f\xe5\x23\xb3\x2e\x4a\x4b\x42\x0b\x44\x97\x29\x84\x41\x4f\x2a\x3d\x5e\x10\xde\xba\x3a\xf6\xc9\x40\x8d\x5f\x9c\x54\x69\xfb\x9a\x8d\xf2\xe5\xc8\xc6\x98\xa0\xc0\xfe\x39\xa6\xf6\xd2\x31\xad\x42\xb4\x93\x11\x48\x70\xc3\x3f\xd2\x51\x9d\x6e\x79\xd9\x38\xfd\xca\xc4\x26\x45\xbc\x0e\xe2\x3d\xac\xd1\x23\x2a\x1f\x39\x12\x78\x83\xbe\x1a\x65\xc5\x44\x78\x8c\x85\x8e\x6a\x33\x50\x33\x81\x9b\x2a\xb6\x1e\xa4\x69\xff\x71\x5c\x85\x70\xb1\xb5\xdc\x58\xf1\x93\xc0\x47\xba\x01\xb4\xf2\xfb\x90\x8a\xdd\x9c\x2a\x8d\xc5\xad\x40\xb5\x0c\x3f\xc2\x4b\x14\x0a\x98\xf2\x5d\xc1\x4a\xfe\x1e\xcd\xc4\x48\x02\xe9\x0b\xdb\x5b\x53\x9f\x37\xff\x98\x1a\x61\x82\x20\xf6\x01\xfa\xbe\xc5\x7d\x8a\xd0\x72\x47\x57\x11\x5a\xee\xd8\x10\xb3\xb0\xbe\xef\xb5\x7d\x2d\x94\x97\x45\x06\xd8\xe7\xda\xbf\x77\xac\xa1\x36\x89\x98\x03\x03\x81\x3e\x51\xbd\x3a\x55\x8c\x2f\x57\x9b\x22\x5d\x93\x17\x93\x02\x66\x16\x6f\xeb\xb4\x2a\x45\x9f\x56\xf0\xac\x6c\x22\x1a\x19\xc8\x21\x41\x15\xc1\xc7\x1b\xb5\x2a\xd3\x7c\x67\x14\xf5\x49\xf6\x99\x9e\x6e\x65\xc5\xc8\x52\x92\x64\xdb\x1a\x6a\xc7\xfe\x25\x2c\xa1\x8a\x6c\x32\x5d\x59\x4f\x41\x51\x04\x6c\x59\xab\xab\x69\x70\x8f\x4e\x95\x7c\x12\x48\x4c\x10\x33\x5c\x21\x43\x27\xad\xe0\x06\x5a\x8a\x2c\xca\x21\x10\x20\xd1\xad\x9e\x47\xbb\xa8\x39\xe4\x34\x63\x7c\xbb\x2b\x37\xf1\x5a\x9a\x0f\x27\xa6\xed\x07\x0d\x2e\x2a\x80\x19\xa7\x55\x4c\xac\xa1\xd0\xf8\x94\xf0\xae\x65\x51\x51\x40\x0f\x59\x40\x38\x67\xb0\xf4\x50\xbd\xa4\x78\x67\xeb\x9a\x92\xbc\x5e\x31\xeb\xb9\xcd\xf2\x9e\xcd\xc0\xbd\x0e\x14\xf5\x79\xa5\x0c\x79\xbe\x96\x6f\xcc\xcd\x75\xe2\xc8\xf4\xa2\x38\x22\x60\x3c\xdd\x90\x24\xc0\x4a\xbd\xf6\x5c\x45\xb9\xff\x45\x5a\xab\x00\x60\x9d\xd1\x68\xac\x33\xb5\x80\x71\xff\x42\x67\x6c\x4d\x68\x8b\x68\x64\x95\x6a\xf7\x1d\x05\x38\xb8\x53\x5b\xb8\x0b\x0b\x07\x3b\x79\x3a\xa2\x0f\xe5\x6d\x8d\xe5\x99\x6a\x1d\x32\xa5\x7e\xbc\x55\x3e\x3d\x87\xa3\x02\x6d\x54\x31\xc9\xec\xc3\xf9\xd1\x2a\x8a\x27\x79\x3e\xc9\x58\xb2\x03\x93\x8e\xa0\x42\xe5\x63\x65\x7b\x7a\x96\x58\x47\xb8\x1f\x29\xb0\xfc\x72\x7f\x0b\x5e\xff\x49\xe5\x2d\xd3\x49\xd2\x7f\xc2\xcb\xa7\x5e\x9c\x2a\x0a\xf9\x13\x64\xfe\x51\xf7\x45\x48\x01\xab\xf0\x2d\xd5\xdd\xfc\x07\x9a\xe1\xef\x5a\x65\x92\x9d\x61\x90\xb8\xc2\x47\xbb\x14\x92\xa1\x22\xb9\x13\xe4\x13\xf8\x86\x2b\x81\x6e\xe4\xab\x28\xe4\xef\x4f\x55\x5b\xee\xaa\xaa\x25\xa6\xa1\x51\x69\x74\x55\xef\xf9\x79\x35\x9e\xb8\x5a\x86\xf6\x03\x53\x58\x54\x2e\x90\xec\xbc\x4d\xe1\x9c\xb4\x88\xc9\xb6\xb2\xf6\x8c\x23\x02\x07\xa9\x57\x34\x76\x9d\xcd\xad\x2b\xa5\xad\xdc\xaa\xcb\xae\x90\x90\x01\x31\xd6\xa0\x92\x8a\x24\x0f\xd2\x9e\x22\x2b\xe0\xb7\xf2\xd9\x2a\xac\xb3\x18\x3e\xde\x5a\x5a\xdc\xba\x56\xbe\xc7\x2d\xa4\xbd\xb0\xd2\xbb\x81\x77\x43\x64\x71\x27\x50\xa3\xc5\xdc\x28\x72\xcd\xe0\xd2\x46\xf2\x9f\x29\xd4\x18\xcb\xd3\x4a\x55\xbc\x35\x37\xa7\x09\x8a\x84\x2b\x8e\xd1\xd1\xc2\xf2\xa6\x88\xd5\xc7\x69\x92\xa7\x24\x6f\xac\x8a\x9c\x47\x55\x3e\x72\x54\x4d\x79\x64\xb6\x5c\x9c\x96\xb0\xff\x33\xbe\xd2\x77\x41\x09\xf8\x7d\x4c\xd7\xc6\xc7\xd8\xb2\xfc\x47\xb5\x64\x92\x26\x1a\xec\x30\x4a\xfa\xf4\xca\x50\x99\x9e\x01\xbe\x0d\x31\x2c\x20\xc7\x58\x88\x77\x15\xe2\x20\xca\xd3\xd8\xc8\xaa\x07\xca\xe0\xae\x42\x1c\xdc\x75\xc5\x46\xda\x4b\x7b\xe9\x2a\xc4\x59\x28\x99\xf4\x6f\xd0\x6d\xe2\xeb\x3f\x99\x2a\x62\x74\x50\x9d\xb1\x58\xa3\xe2\xb9\xdd\xbb\xa1\x58\xb9\x2e\xeb\x2a\xd4\x23\x6c\xe0\x5d\x2c\xb5\xc0\x37\xf4\x3e\x10\x9b\x08\x8a\x3f\x6d\x2a\xc9\x0e\x4c\x31\xa4\x59\xd4\xf2\x77\x10\x87\x9f\xd6\xdd\xc3\xd3\x1a\x89\x4e\xd3\x9d\x19\xb7\xfe\x1d\x80\x48\x55\x8a\x95\xaa\x18\x8f\xcb\xc8\x89\xe4\x53\xcb\x99\x49\x56\xe2\xf5\xdd\x9e\xd5\x0c\x72\x20\x4e\x25\xf6\xc0\x01\x19\x4e\xa7\xed\x23\xad\x12\x45\xdf\x7a\x5c\x27\x28\x47\x9d\x8b\x1c\xa7\x85\x9b\x4a\x92\x0e\x52\xcb\x49\xc2\x72\x5f\x5a\x46\x56\x9b\x34\xae\x88\x3e\x25\x53\x6c\x21\xf7\xa7\x0a\x3f\x7f\xbf\x66\x98\x0f\x1c\xe8\x98\x9c\x10\x37\x8e\xa7\xca\x91\xbf\x7a\x2f\x50\xd5\x47\xb0\x51\x85\xf2\xfd\x8c\x52\x60\x54\xaa\x21\x49\x96\xc6\xf1\x48\x4a\x16\x28\x6e\x03\x88\xcf\xc7\x1b\x9a\xcf\x69\x34\x4a\xfb\x51\x01\x6d\x02\x14\x80\x39\xa6\x81\xa5\x83\x8d\xa8\xa8\x82\xf2\x5f\xe1\x91\xa0\x32\xe9\x45\xd3\xc7\x26\xcb\xcb\x0c\x08\x4b\x0a\x76\xe6\xa2\x96\xbb\xbb\xe8\x1e\x79\x3f\x4d\x9d\x04\x27\x77\xb2\x15\xd9\x1c\x03\x82\x10\xed\x9f\xa8\x8d\xed\x72\x71\x0f\x8c\x5d\xd2\x48\x40\x6c\x7f\x49\x71\x4c\x5d\x52\x35\xea\x91\x59\x59\x33\x43\x72\xe7\x02\x24\xa2\xde\xb6\x20\x89\x1a\x68\x3e\xd7\x40\x5b\x9b\xd8\x3c\x6f\xfb\xf6\xf2\x15\x35\x2f\xc3\x65\x2f\x51\x1b\x6a\x18\x53\x0d\x27\x3d\x99\x1c\x44\x79\x81\x41\x43\x7c\xa2\x54\x02\x47\xe9\xaa\x7d\x9a\xbe\x0e\x45\xf1\x47\xba\x6a\xc4\xb2\x85\x1c\x49\xda\x66\x74\xe5\x30\x19\x67\x90\xf1\xb8\x82\x9e\x13\xc8\xba\xa5\xc4\xc9\x77\x60\x5c\x47\x3a\x6d\x2d\xff\x69\x3d\x32\x76\x7c\xaa\x74\xff\x8f\x6b\xbe\x3a\xb0\xc2\xb0\x42\x39\x01\x98\xb1\x19\x9e\xd8\x50\x63\xba\x98\x12\x96\x32\xa8\x1f\xb9\x20\x1a\x05\x81\x38\xc5\x69\xb6\x3e\xe3\x3b\x80\x3f\xc1\xd3\xc0\x4f\xfe\x80\xbe\x80\x75\xd6\x55\x4b\x58\x67\xe4\xe9\xaa\xcd\x72\x6b\xf2\x3d\x74\x43\x78\x52\x0c\x32\x45\x9d\xff\xdb\x8a\xf5\x60\x67\x57\x11\xc2\xb0\x0a\xa4\x22\x8b\x7c\x51\xb8\xa4\x54\x1f\xe8\xb3\xa9\xa2\xb4\x3f\xa3\x82\x90\x71\x66\x7b\x29\x68\x62\x95\x92\x89\xa7\x11\xd9\x5e\x66\x7a\xf5\xd5\xce\x57\x26\x4e\x8e\x55\x78\xa1\x35\x49\xb4\x1a\x4b\xcb\x6c\x68\xa3\x55\xdb\x7f\x8c\x3a\xb7\x17\x71\x71\x98\x67\xfa\x28\xf0\x59\xd6\x16\x96\x1b\x6e\xe1\x43\xf8\x28\xd1\x48\xa2\x3b\x95\xa2\xbf\x87\x8d\x7c\x1b\xee\xd7\x31\x74\x97\x5e\xda\x4d\x97\x28\x10\x68\x13\x27\x59\x61\x63\x3b\xc8\xcc\x78\x58\x01\xb0\x9c\xd7\x6c\x39\xe7\xd5\x13\xca\x43\x93\x85\x76\x97\xa2\x09\x3b\xa1\x6a\xca\x60\xf2\xc4\x6e\xbb\x4d\xf7\x24\x53\x30\xbe\xdd\x75\xd1\xb1\x34\x2d\x4f\x92\x64\x9d\xf2\x05\x29\xd6\xd0\xcb\xab\xf0\xa6\x6b\x42\x6e\x54\x12\x6e\x56\xb0\xa5\xe9\x60\xfd\x0b\xe5\xef\x4b\x83\x98\x5e\xac\xa2\x21\x5a\x90\x15\x83\x40\x84\xfb\xcb\x95\xf9\xb5\xa9\x57\x3f\xff\x63\x44\x61\xa2\x8c\xeb\x99\xa4\x2f\x69\x45\x1b\xc6\xfc\xc2\x99\x7e\x1d\xef\x51\xc8\xea\xcb\xbb\x91\x41\xcd\xf2\x9a\xf1\xeb\x20\xa2\x96\x00\x78\xbb\x6f\x59\x7c\xe9\x60\x67\x60\xbc\xc2\x89\x80\xf7\x3d\xa0\xfb\x27\xb8\x2f\x16\xe3\x6f\x28\xf0\x2c\x76\x26\xd9\x40\x3e\x8f\x45\x7e\x5d\x91\x21\xf2\x73\xc1\x15\xbf\x5d\xeb\xef\xbc\xfa\x2a\xa9\x6b\xf3\x2c\x33\x1e\xf3\x2e\xbc\x0c\x5c\xff\xa5\xa9\xa6\x49\xf0\xb3\x31\x67\x95\xed\xcd\xc7\xd6\xac\xa0\x28\xe2\x98\xd6\xdc\x0d\x5c\xf6\xde\xc3\x4e\x06\x36\x2d\x78\xb5\xc9\x74\xa6\xc2\x89\x9c\xaf\x4f\xe9\x2c\x2d\x3a\x71\xeb\x96\x62\x87\xf9\x27\x74\x25\x7c\x5c\x91\x09\x88\xb2\xfe\x23\x8a\xda\x9a\x6a\x5d\x42\x73\x5d\x7e\x86\xc9\x4e\x37\x94\x6c\xef\xd1\xa9\xe2\x30\xfc\x74\xda\xfa\xd2\x97\x78\x56\xe1\xbb\x8a\xd0\x67\x77\x57\xab\x72\xae\xda\x8c\xda\x13\x6a\x44\xfd\x12\x1e\xb4\x8c\x96\x6f\x7f\xd0\x2f\xcf\x1f\xea\xd8\x55\x9b\x68\x36\x3f\x38\x59\x09\xda\x9a\x24\xdf\x22\x69\xd1\x73\x15\x98\x36\x96\x54\x84\xd5\x74\x9b\xb5\xb9\x55\x54\xd5\x4c\x20\x2b\x63\xfa\xdb\xfb\x90\xfb\x17\x3a\xa9\x29\x66\x7c\x6c\xbc\xab\xeb\x6f\x14\xa6\x1d\xd5\x01\xce\x59\x45\xb4\xc1\xb3\xde\xe7\x2b\x7b\x54\x3b\x9e\xa9\xc7\x9c\xd8\xba\x28\xca\xff\xa3\x67\x35\xf5\xce\x35\xed\x19\x51\xdc\x45\x0d\xff\x87\xca\x17\x7c\xaa\xe0\xf1\x7f\xbd\xeb\xa7\x0f\x23\x92\x16\x43\x79\x19\x71\xe3\x2e\xf2\x59\xb0\xb5\xcf\x76\xfd\xf0\xe5\x8e\x0d\x9f\xe8\xf7\xed\xaa\x8d\xd3\x71\x19\x2e\xed\xa1\x4b\xc4\xda\x05\xae\x40\x12\x76\x5a\xf9\xd8\xb8\x4c\x42\x8a\x3c\x72\x77\xd7\x33\x44\xcc\xd0\x8f\x21\x56\x66\x65\x2f\x84\x70\x3f\xc6\xda\x11\x3a\x22\x9f\x09\x84\x69\xb2\x1c\x47\x21\x4b\x38\x31\xea\x70\xea\x2d\xde\xe5\x40\xf9\x8a\x9f\xa8\x29\x86\x71\x6c\xd6\x6d\x96\x93\x22\xa4\xd3\x2b\xf7\xf3\x03\xc0\x3a\xca\xd8\x12\x5d\x09\x7e\x7c\x06\xfc\xbd\xc0\x6f\x70\x6e\x8b\x05\x70\xbb\x12\x29\xd4\x2d\xc8\x8b\xe5\x6f\x0a\x3e\x0e\x7e\x9b\x47\x76\xf8\x44\xbb\xc9\xc8\xd3\xb7\xc1\xd8\x30\x04\x84\x4f\x6a\xc0\x8c\xfd\x0b\x9d\xbc\xc8\xdc\xbb\x83\xb1\x45\x69\x11\x06\x1e\x2f\x43\x36\xc1\x73\xb5\x99\x9c\xdc\x62\xfc\x97\xd3\x71\xf8\x3b\x98\xe6\x07\x8a\xb7\xf1\xfa\x54\x29\x87\x7c\x0f\x26\x5f\x68\xad\x1e\x95\xe0\xb9\xaf\xf4\x1d\x39\x50\x13\x14\xbd\x27\xaa\x19\x64\x96\x88\x3a\xc9\xfd\xa2\x41\x75\x1e\x19\x2f\x9f\x68\x8e\xee\x21\x18\x7f\x68\x57\x03\x4e\x70\x25\xf0\x80\xd5\x2b\xaa\x7a\xd2\xb3\xc5\x30\xb6\x43\x3b\x42\x7b\x18\xc9\xcb\xed\x40\x0b\x28\x1d\xd7\x1c\xb8\x28\x80\xc1\xf0\x9e\xd0\xa0\xb4\x13\xae\xfd\xd1\xb3\x31\x23\x30\x91\x11\x03\x81\xc9\xc7\x4d\xe5\xca\xbc\x30\xe3\x18\x86\x02\x01\x1e\x9a\x3b\x7c\xac\x2e\x76\x39\xcd\x6c\x68\xf2\x02\xc0\x03\x91\xdb\x23\x0f\xe9\x20\xaa\xfb\x25\x3b\xb9\x1d\x78\x75\xcc\x62\x92\xc9\x7c\xbc\x0c\x8f\x29\xd1\x99\xcf\x54\x45\x94\xa4\x0f\x76\x7b\x60\xc8\x67\xf4\x32\x45\x3b\x40\x97\x9b\xc9\x3c\x00\x99\xf5\x17\xf4\xb3\x95\x32\xb4\x24\xb6\x1e\x40\x35\x9e\xc4\x6c\x0d\x85\xc8\xbc\xa5\x24\xcc\x74\x08\xb1\x1a\x99\x3d\xe5\x97\x8b\xe4\x2c\x3d\x65\xa1\x8a\xd4\xb3\x9e\x5c\x91\x62\x3e\xbf\xa9\xc7\xa5\x61\xf4\x45\xa9\xd0\x49\xa3\xe3\x52\xa0\x80\x4c\x4d\xdc\x58\x07\xcb\x03\xaf\x97\x28\x9b\xc9\x87\xaa\xe7\x14\x4f\x6e\xcf\x20\x0b\xc7\x63\xfc\xaa\x52\xaf\xfd\xaa\x43\xaf\xa6\xe3\x71\x9a\x48\x62\x88\x0e\xc9\x5d\x35\x44\x7b\xb7\xe6\x60\x5e\x5e\xa4\xa2\x7f\xdb\x57\xac\x31\x6b\x28\x3a\x56\x74\x37\x12\x91\xf8\x18\xff\x35\x33\x36\xc9\x17\x68\x43\xf0\x30\x15\x5e\x04\x92\xc5\x5d\x1b\x3e\x4b\xb8\xa9\xc8\x2b\x6e\x22\x61\x96\xf1\xab\xf2\x35\xca\x35\xd2\x53\x87\x27\xd9\xc1\xd5\x0a\xd4\x01\x59\x7b\x44\x18\xce\xe9\x39\x71\x96\x4e\x4f\x00\x25\xa4\xbb\x8a\xf2\x14\xb3\x82\x0c\x88\xa6\xee\x92\xa0\x5c\x1a\x6a\xd6\x89\x0d\x41\xe9\x03\xbc\x29\x02\x66\x3e\xae\x4c\x56\x44\x49\x18\xf5\xd9\xd9\x3b\xfd\x2e\x9f\x46\xd4\x7b\xd0\x65\x54\x35\x32\x19\x3a\xff\x52\xf0\xf4\xe3\x2b\xf5\x38\x70\xff\x42\xc7\xf4\x29\xf5\x69\x2b\x0e\xbe\x0f\xa7\xce\x95\x3e\x05\x0c\xad\x14\x11\xbc\xbb\x60\x5e\xeb\x19\xbf\x22\x2e\x6b\x2e\x20\x80\x5a\xb0\x47\x8e\x21\xbd\x10\x02\xb2\xa6\xa1\xbc\x6c\x42\x6d\x7d\xe5\xd3\xde\xd6\x3e\xe6\x6d\xd5\xe6\x5b\x33\x79\x61\xb1\x76\x65\x68\xcd\x8f\xc0\xd4\xf3\x25\x7c\xbb\x1b\x3b\x71\xc4\x61\xbe\x2f\xa3\x89\x0d\xc6\x59\x3a\x4a\x0b\xc4\x7c\x02\xe9\xbe\x18\x28\x5d\xa3\x8b\x8a\xbb\x6e\x64\xe3\x96\x6a\x35\xa1\xd3\xcd\xc7\x6a\xdd\xe6\x11\x4d\x6f\x38\x39\x94\x47\x36\x7c\x64\x7b\x81\xfa\x1b\x78\x7e\x3b\x54\x3e\x9b\x8f\x4d\xb6\x52\x61\xe1\x85\x27\x10\x4a\xde\xba\x96\xf0\x2b\x9d\xb5\x61\x9a\x7a\x0e\x4d\xb9\xdc\xf2\xb7\xe4\x3e\xfc\xdb\x0b\xd3\xd1\xd8\x16\x76\x17\xfd\x02\xd3\x17\xd3\x9f\x3a\x39\xa4\xf2\xd7\x1c\xaf\xf1\xd2\x2c\xff\x03\xa9\x91\x6d\x5d\x6c\xa0\xe1\x59\xa2\x56\x56\x5e\x64\xd6\x8c\x5a\x3e\xcc\xf9\x30\xf0\x5d\xb3\x0f\xb7\xe5\xdb\x43\xcb\x82\xea\x4d\x50\xcd\x87\x69\xb6\x8e\x6c\x16\x15\x29\x4a\x62\xe2\x17\xe9\x65\x8a\xc7\x6c\x2a\xaa\x0e\x6c\x12\x19\x1e\xf2\x6e\x6a\x22\xab\x61\x70\x9b\xec\xdb\x85\xa5\x82\x3e\xf7\xff\x02\x97\xe0\xc8\xa6\x5c\x4f\xe0\x1a\xd9\x12\xfe\xef\x53\x45\x9b\x5b\xc7\x19\xcc\xcd\x77\x7a\x59\x9a\x84\x29\x07\xd5\xcc\x9e\x03\x03\x24\x54\x3a\x4d\x92\xd2\x51\x1e\xa6\x19\x9e\x91\x20\xe6\xcb\x0b\x10\x24\xfd\xd3\x6e\xd4\x20\x59\xb5\x99\x53\xdb\x45\xc6\x79\x0b\xae\x83\x4f\xd4\xec\x5b\x3e\x24\x1e\xf1\xb6\x9f\x07\x43\x53\xd0\xc1\xfc\xca\xab\x82\x21\xd4\x10\xeb\x7e\x9a\xed\xa6\x7f\x82\x2d\x99\x06\x3e\x94\xda\xd5\xd5\x70\x04\x3f\x9a\xcd\x20\x64\x21\x2a\x51\x02\x3f\x9b\xea\x8b\x63\x93\x93\x33\x14\xaa\x67\xfa\x33\x94\xec\xff\x0a\xd2\x5e\x66\x90\x9a\x7a\xbe\x8b\xb3\x53\x0f\xb2\x40\xbf\x10\xcd\x83\x5d\x1b\x8a\xff\xfb\x53\x52\x44\x14\x02\xb3\x67\x95\xc6\x6e\xb2\x92\x4d\xc6\x45\xb8\xde\x52\x46\x0f\xac\x18\x7c\x3c\x7d\x4e\x31\xdf\x2e\xc7\xf6\xf5\x68\xd5\xa2\x9f\x2d\x00\x44\xe4\xba\x7c\xac\xc3\x68\x6b\x92\x49\x91\xd3\x8c\x85\x52\xef\x74\x5c\xa5\xe4\x9a\x9c\x92\xa7\xe2\x75\xab\x6b\xc7\x90\x54\x73\x56\x44\x1c\x54\x60\x75\x71\x93\x88\x4f\x54\xdf\x7f\x64\x92\xa1\x29\x0a\x23\x64\x11\x22\x3a\xa6\x34\xc2\xa1\x78\x07\x2c\x07\xcf\x35\x30\x9f\x8d\x1b\xc4\x18\x67\xe9\x6b\x36\x74\x63\x48\xba\xe2\x2f\x39\xd7\xf3\x91\x6a\x82\xe6\x36\xcc\x6c\x61\x18\xa0\x21\x2a\x33\x7e\xbe\xb5\x32\xbf\xdb\x9b\xc8\xa0\x20\xd0\xc4\x40\xa5\xf1\x71\x53\x04\x3f\x4e\xa3\x3c\x4d\xda\x3e\x78\x06\xc5\x05\xd6\x03\x0f\x8d\x0a\x70\x5c\xc7\x57\xfd\xf8\xb5\x19\x55\xa2\x63\x19\x00\x8d\xe7\x43\xce\x76\x46\x4f\x28\xd5\x05\x23\xe6\xe6\x3a\xe1\xd0\x24\x03\x80\xbb\x05\xc5\xa2\x90\x20\x48\xed\xe1\x7a\x2e\x28\xf6\xf5\x1f\xd5\x0c\xf4\xfe\x05\xd5\x9a\xa4\x65\x84\x15\x7e\x5a\x81\x4c\x4e\xd7\x82\x85\x43\x2f\x75\x46\x69\x66\x09\xe9\x25\xf3\x45\xa5\x65\xde\x62\xb5\x51\x60\xbc\xfe\xc8\xe1\xdf\xf3\x51\x9a\x16\x43\xc2\xf0\x33\x5f\x0d\xf6\x03\x36\xdd\x31\x6a\x86\x21\x78\xf9\x31\xfd\x2e\x32\xfa\x19\xe2\xee\x80\x1d\xfa\x88\x36\x99\x14\x13\x3c\x06\x69\x2d\xea\xdb\x84\xf3\x18\xc6\x64\x55\xf0\x59\x92\xea\x14\xfb\x20\x02\xcc\x82\xe0\x84\x81\x11\xf9\x66\xdf\x91\xfd\x49\x03\x7d\xdc\x62\xa7\x98\x8c\xd8\xb0\x33\x33\x43\xe0\xe9\x36\x2f\x79\xfd\xaa\x68\x14\x39\x53\xe7\x28\xd4\xcb\x7d\xcc\x0c\x3b\x81\x66\x2a\xcd\xd7\x04\xc3\xea\xc8\xdb\xdd\x0c\xf1\x65\x85\xb2\x4c\xa3\xf8\x89\xd6\x2f\x1e\xe4\xfa\xc3\x77\xe8\x97\xe1\xb5\xbe\x1e\xa8\x28\xf3\xa2\x2a\x1f\x48\xa4\x2e\xe0\x64\xba\x06\xbc\xff\x37\x15\x75\xf7\x4d\x8c\x48\xb3\x75\x0b\x2a\x70\x21\x8f\x1a\xbb\x80\x12\x2a\xff\x8a\xea\x36\xbe\xaa\xf1\x8d\x8f\x6c\x78\x7c\x63\x31\x04\xab\x75\x8c\x7a\xa6\xe4\x93\x74\x15\xae\xce\x53\xfe\x98\xe3\x2b\x55\x08\xaa\xca\x34\xfb\x68\x92\xd0\x78\x36\x2d\x15\x5c\x27\x86\x3a\x60\x46\xcf\x4f\x95\x78\xcc\xe9\x5a\x25\x6f\xfe\x50\x27\x4c\xc3\x14\x4e\x1f\x56\x98\x53\x5c\x3e\x51\xe1\x55\x32\x19\xd9\x2c\x9d\x00\xca\xe6\xd8\x11\x96\x66\x1d\xf6\xc2\x7b\xa9\x5e\x66\xcd\xca\x64\x8c\xbd\x22\xb4\x9e\x3e\xd0\xab\x53\x5f\x32\x8b\x5c\xc2\x12\xf8\x00\x6d\xdc\x55\xf2\xd9\x77\xdd\x68\x9e\x63\xf6\x9f\xf1\x6d\x8d\xf3\x6a\x5e\xf8\xa2\x12\x37\xff\xdf\x71\x2f\x48\x45\x1f\x28\xa4\x41\x4c\x08\x70\x1a\xc3\x24\xc4\x8f\xf0\xea\xd1\x40\xa9\x30\xee\xd5\x5b\xe6\x0b\x9d\xb1\x19\xfb\xe1\x4d\xe1\x13\xd3\xe4\x62\x0d\xc5\xd6\x4e\x2f\x4e\xd3\xfe\xba\x22\x97\xc7\xf5\x4a\xb5\xdc\x47\x8e\xd1\x68\x5c\x46\x9b\x07\x0e\x38\xa2\x0a\xfa\x6a\x99\x5f\xf1\x05\xf2\x76\x6d\x68\xa4\x4c\xd4\xd7\x4c\xb2\xd2\xaa\x45\x03\x22\xa7\xe4\xea\x62\xe9\xc8\xe6\x34\x4f\xe9\x34\xcc\x51\x22\x94\x8c\xbd\x01\xce\x1f\xc6\x36\x63\x4e\x39\xf8\xed\x13\x53\x5f\x51\xaa\xbb\xbf\x32\xa2\x95\xf6\xc5\x4c\x85\xae\x85\x20\x09\x28\x7f\xa1\x6e\x8c\xd1\x40\xe1\xb9\xf6\x81\x45\xaf\x97\x93\xe5\x14\x30\x8f\x77\x7e\x9c\xc2\x0b\x6c\xa2\xe1\x79\x8f\x4c\x36\x88\x92\x76\x6b\x69\xd1\x51\xec\xf9\x2a\xee\x15\xd5\x51\xfc\xb3\x0a\xac\x21\x8f\xb8\x7e\xc3\x25\xbb\xa9\x2e\xdf\x79\x06\x9b\x2f\xc5\xf1\x23\x14\x61\xe3\x79\xfd\x3b\x9d\xd8\x23\x8b\x82\xaf\x7a\x87\xca\xc8\x58\x94\x77\xa6\x1e\x88\x89\x81\x76\x94\x08\x18\x32\xc8\xd2\x0a\xb5\x27\x7f\xe0\x40\x67\x18\x0d\x86\xcc\xb6\x81\xfe\xc3\x13\x5d\x9f\xb9\xe2\x12\x51\x15\xda\xbd\xa1\x68\x93\xd3\x38\x1d\x24\xa6\xa5\xbb\x13\x53\xd5\x9d\xa8\x3d\xb4\xb9\xb9\x4e\xdf\x86\x02\x3b\x47\xf2\xfd\x09\x2d\x0a\x3e\x76\xf5\x78\x93\x24\x42\xc1\xe2\xb0\x25\xbe\xe4\x30\x30\xf9\x63\xbe\x22\xb3\x93\xc0\x02\x2c\xb7\x0d\x13\x2b\x64\x6f\x4a\xe3\x95\x2b\xe9\x7c\x42\x28\x55\xdd\x05\x92\xb9\x98\xd6\xfe\x85\xad\xb7\x02\x15\x10\x41\xb2\x45\x9c\xc8\x17\x14\xe6\xde\x64\x4c\x45\xeb\x56\x9d\xa3\x20\xbe\xa1\x1e\x03\x26\xc3\x51\x38\x7b\xb4\xab\x48\x6d\xf6\x50\x11\x97\x3b\x6a\x8a\xe6\x0e\xd4\x55\x58\x52\xbf\x11\xe8\x69\x7d\x3b\xca\x09\x41\x02\xdf\x80\x8a\x88\xd0\x5d\xa9\x0e\xf9\xe7\xe4\x81\x04\xe1\xfa\x84\x87\x84\xa7\x19\x44\xf4\xb0\x0f\x76\x92\x98\x35\x1f\x77\x7d\x0c\x96\x78\x25\x18\x54\xb3\x4e\x6b\x9e\x72\x5d\x8e\x4c\xc7\xb6\x4c\x13\x1e\xf1\xca\x7e\xd7\x15\x9a\xfd\x1e\xad\x4c\x74\xf3\x77\x53\x42\x8b\x30\xee\xc6\xd4\x87\x74\x37\x02\x05\x81\xfa\x04\x29\x25\x9f\xd4\x66\x22\xca\x2c\x6d\x79\x82\x2a\x1e\x2c\x23\x1c\x11\x03\x2b\xf8\x44\x51\x56\x15\xeb\x63\x28\xb3\x3c\xa6\xb8\x7b\x2f\xd3\xfb\xc4\x6f\xa0\x5b\x89\x32\xd2\xce\xae\x42\xfd\xdf\x42\x3c\xce\x7c\x41\xf4\x9c\x9d\x5c\xdc\x7e\xa9\xdd\xed\xdc\xa8\x88\x62\xd0\xc2\xe3\xc6\x14\xaa\x6d\x1c\x28\xa8\x29\xf9\xbe\x35\xc5\x30\xa7\x9a\xb1\x88\x76\xd0\x0f\xf1\xc9\x54\x51\x8c\x81\x9b\x16\x97\xc3\xdc\xb4\xc2\xa3\xee\x87\x6b\xf3\x22\xca\x94\x50\xd2\x09\x45\xa0\x7b\xa2\x62\x74\x26\xb6\xff\x85\xaa\xdb\x2f\x17\xae\x08\xea\xe1\x69\xba\x3e\xbe\x53\x79\xfd\xb7\xa0\xe4\x77\x8c\x12\x4e\x75\x81\x8b\x23\x28\x7c\xb6\xf0\xe4\x10\xee\x7e\x82\x27\xc7\xbd\x03\x15\xdb\xbd\x09\x71\x3e\xc7\x7c\xbd\x7f\xc1\x17\x12\xbc\x76\xf3\x3d\x8d\x28\xfa\x3f\x6b\x06\x64\x69\xb6\x33\x30\x23\x82\xab\xba\xfe\xc7\x19\x3c\x6c\x3e\x51\xd9\x4e\xba\x6a\x33\x22\x71\x69\xf9\xe0\xa7\xaa\x77\xda\x30\x41\xdd\xcb\x52\xd3\xb7\x59\x4b\xc5\x60\xcc\xfe\x25\x18\x8f\xaa\x30\xc3\x5f\x52\xde\xd9\x7e\xf1\x07\x0e\x74\xc6\xb1\x09\xa5\x06\xed\xd6\x7c\xf9\x4b\xb2\xe6\x1b\x84\xd9\x32\xbb\x9a\xc6\xab\x14\xcd\x3a\xbd\xbc\x37\xb1\xda\x84\xdf\xaf\x69\x00\x6d\x68\x92\x7e\x9e\x8e\x44\x8a\x11\xc5\xcd\x3f\x51\x3c\x53\x7f\xa2\xf8\x39\xc2\x32\x87\x5c\x8e\x42\x61\x28\x9f\xe7\xd7\x71\x23\x50\x58\xf3\x1b\x78\xb5\x1c\x0b\xd1\x1b\xc4\x0a\xff\x1c\xf1\x27\x76\xf4\x03\x26\xcf\xf8\x4b\xf8\x19\xb0\x89\x29\x65\x43\xc2\xb4\x53\xb1\x73\xdd\xd0\xbd\x0f\x4f\xbe\x12\x66\x26\xb1\x6d\x85\x0f\x42\x43\x01\x96\x94\x69\x17\x50\x8d\x69\x77\x55\x00\x6c\xc3\x61\x12\x7d\x65\x82\x67\xae\x8c\x4e\x79\x8b\x62\x8d\x6a\xf0\xb2\xf9\x8e\x9d\x64\x69\x99\xa5\xd3\xca\x11\x40\x94\x46\x47\x35\x44\x6d\x98\xb9\xa9\x8a\xaf\x61\xe8\x43\x1c\xc9\xd3\xba\x02\x90\x1b\x62\x87\x2a\x23\x7a\x26\x80\xd3\xd8\xd6\x37\x9b\xa6\x01\xcc\x78\x9c\xa5\xab\x92\x1c\xa2\x0c\x01\xe6\x10\x3e\xae\xd0\x43\xf7\x6c\xab\x7c\x45\x58\x8d\x47\x14\x2f\xd9\x91\x5a\xe6\x79\xe0\x40\xa7\x6f\x97\x6d\xe2\x48\x40\x9d\xa0\xd9\x82\x67\xdf\x74\x83\x2d\x69\x6c\x67\x4a\xcf\x21\xcb\x88\x10\x41\xa2\x39\xe3\x4d\x25\x98\xd6\xd1\xc6\xfe\x37\x4d\xd1\x5e\xe1\xc6\x15\xd8\x9f\xe9\x39\x89\x7b\x0e\xad\x95\xd9\x7e\xdf\x66\xed\x8a\x4a\x9f\x8a\x9f\xc0\x33\x22\x4c\xf5\xdb\xb3\xe3\xa5\xd9\x4e\x6c\x0d\xf3\x3f\x33\x1a\x23\x50\x85\xcb\xcd\x0a\x1b\x4e\xf4\x06\x56\x25\x7e\xe6\x53\x72\xa3\x22\x06\xa4\x78\x83\xfe\xbc\xa9\x1f\xbe\x9c\xc6\x1c\xba\xca\x10\x9e\xaf\x15\x9d\xab\x19\xb2\x05\x2a\x5c\xd0\x0a\x28\x6d\x41\x45\xe8\x8f\x4f\x02\x4d\x38\x1d\xe5\x7f\xcd\x4f\x58\x7f\x8d\xdc\x16\x36\xff\x8d\xc0\xb3\x0e\x02\xcf\x21\x83\x48\x64\xba\x61\x57\xde\x9b\xaa\x29\x8b\xfb\x9a\xe8\xfc\xb9\x8d\xd6\xcb\x02\x5f\xba\x36\x55\x5c\x65\xf7\xb5\x2f\x9e\x01\xff\x3b\x0f\x65\xea\x89\xb3\x53\xc0\x83\xe1\x5a\xae\x04\xad\xf9\x43\x5b\xac\xb4\x8d\x5d\x7a\x85\x62\x00\xd4\x99\xee\x52\x6d\x81\x09\x5d\xe0\xea\x68\x33\xfd\xf7\xcf\x51\x6d\xd0\xf1\x09\x97\xaf\x0a\x7f\xf5\x18\x49\x7d\x09\x20\x50\x69\x7c\x3d\xd9\xf5\x66\x7c\x66\x03\x06\x47\xda\x00\x2a\x00\x7c\xb6\xab\x1b\x65\x27\x89\x61\x51\x02\xbd\x67\xab\x93\x4c\x07\x0e\x74\x96\x16\x35\x09\x3b\xec\x8b\x48\x33\x7a\xd7\xf7\x89\x6a\xb1\x8e\x4c\x62\x06\x04\xeb\x75\x71\xff\xc9\x3a\x92\x90\x95\x7a\x74\x29\xea\x48\xc5\x8b\x24\x11\x84\x14\x05\x10\xad\x68\x74\x2f\x54\x60\x98\x03\x1b\x73\xe4\x83\xe8\xf0\xa4\x96\x4b\x3a\xe9\x52\xaf\x5e\x64\x13\x2a\x66\xeb\xfa\xb5\x4e\xed\x9b\x50\xda\x39\xb1\xd0\x61\x9b\x61\xc7\xf3\xa4\x93\x63\x7b\x29\x5f\x18\x72\x8e\x7b\x81\xa7\x8d\x19\x45\x49\x14\xa6\xa3\xf1\xa4\x20\x88\x6d\xf9\xbe\x5c\xd0\xe2\x55\xd0\xbe\x4b\xbf\xcf\xc7\x14\x1c\xf3\x1f\x35\xec\x8c\x83\xa8\x24\xe1\x52\x10\x88\x5c\x0d\xaa\x53\xc1\x6a\xf8\xb7\x21\xc7\x9f\x8c\xf3\x35\xd7\xd5\x47\x4f\xf8\x1a\xbd\x4d\x74\xf8\x31\xf0\x27\x6b\x42\x0d\xd8\xaf\xac\xef\xc6\xd3\xd5\xc6\x1b\x31\x0e\x93\xaa\x3a\x21\xfc\x39\x61\x23\x7f\x47\x41\xb7\x79\xc4\x48\xcc\xfd\x76\x5c\x1b\x24\x19\xd3\xa2\xd8\xae\x2f\x7b\xb7\x22\x90\xac\x32\x5e\x45\x76\x36\x4a\x13\x93\x17\x96\x8b\xa8\x3c\xc5\x14\xf8\x1d\xf1\x51\x53\xb8\xc1\x10\xd5\xf2\xaf\x78\xc0\x30\xf0\xc9\xe6\xf9\x9a\x8b\xe1\x4f\xa0\x8c\x5d\xa1\x2d\x74\x4c\x60\x9a\xb6\x10\x7a\x13\xcc\xb6\x88\x08\x16\xa0\x76\x3e\x56\x91\x38\x88\x88\x22\x89\xab\x2a\xb3\xa2\x7c\xa2\xbc\x63\x94\x2c\x9b\x51\x3a\xc9\xdb\xe5\x63\x66\xae\xdc\xa9\x6f\x45\xbc\xad\xc1\x3a\x0f\x54\x34\x6c\x26\x45\xba\x47\x49\xb0\x7e\x1c\x28\xe1\xd4\x8f\xb1\x9a\x51\xa2\xfa\x94\x9e\x03\xbe\xe1\x53\xcd\x13\xd2\xee\xaa\x10\xfc\x2e\x6c\x91\xe3\xea\x77\xfc\xa7\x1a\x3b\x91\xc7\xe9\xaa\x4d\x22\x56\xf5\x93\x16\x30\x5d\xa1\xa0\xb6\x9b\x24\xdf\xed\xa8\x97\xf9\x58\x10\x71\x14\xa0\x69\x7c\xdc\xac\xe8\x99\xd9\x71\x9a\x31\xab\x24\xeb\x78\x6f\x5d\xa9\xfd\xe9\xa1\x97\x3a\x85\xcd\xb2\x34\x8b\x98\x3f\x08\xeb\xe9\x8c\xea\x88\x6c\x53\x91\x0c\x2d\xc4\x72\x91\xf0\x7f\x4a\x6f\x1c\xa8\x96\x5f\x0f\x14\xc8\xef\x53\x32\xe7\xfc\x0f\x0f\x15\x14\x18\x99\x6c\x85\xd1\xf6\x40\xe9\xfc\x10\xcf\x43\x1a\xf9\x8a\x0f\xe9\x32\x47\x8b\x68\x6d\x6f\xba\x2a\x75\x6f\x12\xc5\xfd\x7c\x46\xb1\x25\xb3\xf0\x18\x10\x10\x8c\xc9\x94\x76\x83\xc7\x9c\xfa\x1a\x70\x1e\x66\x94\x29\xcc\x28\xfc\xd7\x2d\xa5\x76\x78\x4d\xe9\x85\x7e\x2b\xd0\x88\xa6\x06\x28\x75\xdf\x14\x66\x97\x1a\x14\x83\x2a\x2b\x3e\xf0\xc7\x8a\x1f\xeb\x1d\x6d\xe4\x77\x32\x99\x3c\x42\xc6\xeb\x4d\xa0\x97\xcc\x84\x11\x6b\xa4\x02\xa7\x01\x99\x62\x3e\xae\x81\xe3\xca\xfc\x24\x45\x1e\x80\x12\x3d\x93\x79\xf1\x89\x32\x17\x32\x0f\xb6\x3e\xe3\x89\x73\x4e\x04\xbe\xc6\x7d\x42\x4f\xa1\x81\xe7\x9e\x8f\x37\x9e\xab\xd4\x7d\x23\xd2\xd3\xcf\x67\x54\x9a\x7a\x19\xed\x4e\x27\x3b\xb2\x34\xeb\x84\xf5\x3c\x4d\xc8\xa5\x5a\xfa\x5e\x06\xfe\x66\x35\xcd\xa2\x02\xb5\x05\xe6\xc4\x0b\x7c\xe1\xe3\xa3\x26\xb6\x80\x7e\x3a\xe0\x96\x28\xcb\x3e\x05\x7e\x9f\x5d\xa8\x82\xda\x56\x23\xa2\x65\x70\xc3\xa7\x7c\xa1\x32\x2d\xed\x33\x43\x93\x14\xc3\x34\x4e\x07\xdc\xdc\x93\x01\x59\x0f\xae\x3f\xd9\xac\x25\x6e\x0b\xf3\x7a\xcb\x87\x75\xf7\x03\x3d\xf6\x51\x0f\xd8\x17\x3b\xc3\x34\x2f\xa2\x18\x5c\x7a\x6a\x7e\x6c\xc1\x6b\x2a\x3a\xf1\x12\xcd\x05\xd5\x4f\x8b\x19\xd5\x16\x65\xf1\x41\x01\x4f\x95\x9f\x71\xbc\x7a\x1e\xc2\x7e\xda\xfb\x7f\x6e\x5e\xb6\xfc\x38\xc2\x79\x25\x5f\x7d\xde\xf3\xcf\x45\xab\x11\x68\x7d\xd4\xa0\xd4\x47\x8a\x87\x91\xe9\xf9\xe4\x32\x9a\xb4\xcb\x27\xc5\x30\xcd\x3c\x55\xa5\xf4\xc9\x3c\xe8\xb1\x3e\x4f\x78\xe0\x80\x48\xd7\xf1\xdc\x8a\xab\xcc\x1c\x38\xe0\xca\x29\x75\x22\x96\x83\x04\xf3\x96\x1f\x72\x03\x05\x9e\xc6\x4b\xf1\x07\xad\xa5\x49\xdf\x66\xe0\x16\x77\xc2\x96\x0b\x5e\x9f\x9a\xe7\xf0\x80\xb0\xb8\xae\x8a\x02\xb7\x50\x90\x61\x71\x22\xfa\x76\xc9\x2d\x1a\xa8\x61\x32\x33\x8e\xfa\xe2\x2d\x35\xf1\xa6\x94\x39\x94\xdc\x8e\x35\xe1\x10\xa8\x11\x49\x5b\xaf\x60\xf7\xf2\x89\xea\x82\xe6\x2b\x51\x86\x66\x8b\x34\xad\x01\x75\x66\xba\x39\x5d\x70\xdf\xd9\x6d\xda\x67\x36\x5c\x71\x1a\x85\xa8\x1f\xbf\xa3\x6a\xef\xef\xa8\xd1\x6a\xb3\x66\x30\xd5\x84\x1c\xe0\x0f\xe8\xcf\x2a\x31\xba\xb4\xa8\xca\xef\x42\x24\xfe\x23\xda\xe7\xfc\x01\x4a\x92\xd0\xe2\xd3\x1d\xfb\x5f\x78\x71\xb6\xe5\xa3\xe2\x2d\x5c\x32\x9f\x04\xdb\x29\x35\x34\xc1\x25\xc5\x91\x15\xd4\xff\x3b\x53\x0d\xc0\x57\x42\x8c\x61\x3a\xc9\xb8\xf1\x8d\x8c\xed\x07\xaa\x22\xfa\x83\x1a\x3c\xa4\x5c\x41\x84\x64\x2a\xa2\xdc\xe5\xe9\x32\x84\xd0\x72\x72\x17\xdf\xd7\x21\xce\x30\x22\x69\x91\x47\xe8\x49\x08\x62\xc1\x77\xb1\xbe\xa1\x24\xc7\x4e\x55\xe7\xbb\x7c\xd5\x18\xb1\x37\x53\x69\x22\x25\x10\x8e\xbd\xa6\x16\xe7\x5a\x9a\xca\xc0\xbf\x28\x40\x69\x39\xa8\xda\x6e\x92\x87\x67\xa3\xd7\xa2\x96\xef\xd8\x1e\xd7\x72\x62\xc7\x1f\x12\x8c\x9a\x62\x98\xa5\xe9\x08\xbf\x86\xf1\xcf\x4d\xc5\x0f\xbf\xa9\x6c\xd2\x7f\xf5\x5f\xfe\xd7\xad\x32\x1e\xe3\xba\x4e\xe0\x3b\xe4\xe5\x5e\xad\xe4\x52\x4b\xb3\x4b\x72\x55\x33\xbe\xc8\xf3\x2f\x28\x6c\x77\x5a\x1e\xce\x88\x5d\xa1\x0d\x83\x3f\xf9\x77\x81\xa6\xc6\x4c\xf3\xa8\xb0\x7b\xa8\x44\x22\xba\x50\xe5\x9f\x0a\x59\x3f\x59\x48\xc7\x43\x57\xde\x81\xd0\x92\x2a\x78\xca\x59\xcf\x9c\xd4\xfe\x6b\xe4\xe7\xb0\x86\x1f\xd9\x50\x8c\x2f\xd7\x6a\x9e\xf6\xc0\x81\xce\xba\x2d\x28\x2b\x03\x22\xeb\x77\x28\x79\xe5\xe3\x26\xba\x9e\x7e\x94\x8f\x3d\xd9\x1f\xb2\x37\x1e\x9d\xe2\x93\xda\x28\x7d\x19\x07\x0e\xd3\x78\x24\x51\x20\x4a\x3f\x9c\xd4\xf1\x89\x9b\xb9\xcd\xc3\x61\xf4\x46\x3a\x1e\x66\x65\xb0\xd9\xf6\x9b\xf9\x0e\xc1\xc3\x10\x44\x9f\xd4\x93\x7f\x17\xa6\x8f\x2b\x38\x0b\x3a\xc0\x6e\xca\x55\xcf\x5d\xd0\x05\xf3\x09\x95\x89\x84\xd7\xca\x57\x93\x22\x53\x18\x7a\x18\xa2\x03\x42\x97\x28\x02\x21\xfe\xef\xf2\xa1\x59\x6b\x79\x20\x04\xb7\x06\x65\xb5\xfb\x48\xbd\x9f\xa6\xd9\x6e\x95\x1c\x7f\x13\x65\x04\xc7\x88\xe0\x79\xa2\x90\x1b\xf1\x31\x5e\x39\x7f\x84\xda\x2a\x42\x9b\xe0\x9b\xd5\xa6\x97\xa7\xf1\xa4\xa0\xba\xe7\x82\xb0\x79\xfc\x5b\xfa\x16\x3e\x6e\x2a\xf8\x99\x38\x8e\x9c\x54\xbe\xc8\xc8\x28\x02\x87\x4d\x75\xf1\x89\xc9\x38\x70\x68\xda\x31\xcf\xb8\x08\x36\x8f\x12\x9b\xe7\x23\x9b\xec\x52\x97\xcd\x2b\x15\xcc\x8c\xcf\x50\xe7\x4a\x20\xc3\x1e\x92\x71\x77\xaa\xc2\xba\xba\x04\xc0\xe1\xd9\x85\x4e\x94\x98\x30\x9c\x64\x86\x19\x1e\x58\xf3\x97\x76\xa5\xe8\xff\x2a\x3d\x8e\x34\xeb\x3f\x42\x57\xdc\xc4\xd2\x45\xbf\xa5\xf4\x49\x16\x1c\xe5\x2d\x85\x4f\x08\x91\xcf\x4d\x2b\x97\xba\x5f\x72\xd0\x07\xae\x4e\xb7\x6c\x63\xe6\x48\x7c\xc5\x89\x17\xd0\x57\x63\x39\xed\xec\x2a\x17\x70\x6d\xfa\x57\x94\x0a\x4b\x36\x1a\x5a\x22\xb7\x2d\x9f\x17\x68\xd6\x70\xeb\x17\x94\x60\x78\x7d\x14\x7a\x69\xb1\xd3\xb3\xa1\x99\x94\x2e\xc0\xb5\x3d\x51\x97\xe6\x63\x05\xe9\x0e\xe3\x74\x82\x80\x08\x4e\x14\xf8\x7c\x3e\x56\x1d\x9a\x01\xf3\x09\xce\xcd\x49\x46\x41\x6c\x1f\x3e\xbb\x90\x55\x10\xe5\xf9\xc4\xf6\x77\xd3\x53\x45\x6e\x7c\x4a\x75\x6c\x66\xba\x2d\x4d\x0a\xec\x71\x99\xe7\xd4\x74\xe2\xdb\xda\x2b\x5e\x6c\x82\x01\x67\x69\x8a\xec\x00\x29\x17\x10\xb3\x7c\xdc\x94\xbe\x47\x49\x3f\xca\x6c\x88\xcf\xb8\xe1\x37\x35\xe4\xd6\x30\x40\x9c\xd9\x31\x08\x78\xfd\x24\x1a\x43\x50\x04\x6d\xe7\x30\x11\x79\x68\x93\xbe\x73\x9d\x8c\xdc\xad\xa0\x78\x7d\x8f\xb6\x58\x33\x8a\x18\xfc\x63\x45\x0c\xfe\xb1\x1a\xcf\x5a\x8e\xcd\x8a\xcd\xe9\xfd\xb1\xf2\x22\x8d\x78\x8a\x0a\x63\x45\xe3\xa8\xbf\xfe\x64\xeb\xf0\xec\xd6\x95\xca\x5c\xc2\x69\xc4\x6b\x88\x00\xef\x6a\x82\x6b\xb4\x1f\x11\xfc\x7d\x46\x7d\x8c\xad\x2b\x54\xb8\x11\x7e\x4b\xcf\xd0\xf3\xd1\xd4\x77\x2d\x59\xbc\x1f\x86\xe5\x54\xa0\xc6\x05\x2e\x2b\x8d\xe4\xfb\x4a\xca\x81\x29\x5d\xd1\x8c\xfe\x3d\xcd\x98\x70\xb6\x49\x1c\x6a\x14\xe5\x83\x49\xd4\x97\xa0\x5b\x50\x94\xbe\x73\xd7\x86\xd7\x40\xa6\x79\x63\x3b\x8f\xdf\x81\x03\x4b\x9d\xf9\x43\x5f\x50\x6a\xc1\x2c\x5c\x25\x85\x2a\x0f\x5f\xff\xa7\x5a\x0e\xe5\x01\x6e\xc5\xb1\x92\xbb\x62\x06\x37\x3e\xb1\xc2\xef\x21\x2f\x74\x1a\xc8\xee\x26\xef\x92\xf7\x16\xf2\x79\x72\x33\x70\xa4\x6f\x4e\xd5\x0b\xc0\xb8\x14\x72\x61\x8c\x51\xe1\xd3\xc7\x14\xb4\x92\xa8\x50\xa9\x44\xd0\x52\x23\x25\x6f\x62\x2f\xf0\x49\x23\x00\xfc\xff\x9f\x4c\xa6\x09\xd8\x9d\x9b\x64\x05\x50\x6d\x47\xa4\x76\xe0\x80\x1b\xb2\x7c\x58\x24\x0a\x6e\x8c\x34\xcb\x77\x29\xbe\xe6\x2f\x94\xe6\x7a\xeb\x0a\xae\xd4\x8d\x20\xce\x1f\xda\xba\x32\xd5\xa3\x01\x17\x55\x56\x6a\x56\x23\x26\xc9\x50\x43\x87\xaa\xbe\x5b\xe6\x2c\xbe\x39\x1c\x66\x96\x9a\x36\x5b\x67\x69\x15\x6d\x9d\xad\x3d\x87\x03\x07\x3a\x71\x14\x02\xc1\xe4\x30\xfb\x88\xa6\x04\x26\xf4\x30\xf6\xf8\x51\x94\x44\x79\x98\x45\x3d\xdb\x46\xcd\x45\xfb\x1d\x25\x7f\xbe\xe8\x28\x5d\x1a\x9a\x29\x61\xcc\xd3\x1e\xa2\xe8\x49\x6b\x47\x46\x4b\x1f\xe5\x0f\x74\xfe\xd6\x53\xb4\x8c\xd0\x27\x3f\xa5\x46\x7f\x16\x29\x5a\x11\xc8\x65\x69\x59\x1d\xf9\xc3\x61\xa1\x48\xfd\x13\x60\x02\xb0\xbf\xaf\xe9\x1a\x1e\xcf\x92\x0b\xe7\x33\xed\x34\xbc\xc9\x3b\xaa\xbf\x75\x59\xd5\x0a\x19\xec\x8b\xa0\xfc\x01\x6c\x85\xe0\xb4\xca\x8d\x82\x2b\x3f\x86\xbd\x51\x91\x90\x40\x4a\x73\x5b\x65\x65\xcb\x99\xb5\x6f\xd8\xb6\x42\x92\x03\xa9\x01\x07\xf9\x28\xf5\x30\x11\x87\x5d\x54\x16\x2e\x8e\x46\xe3\xa8\x0f\xe0\x9c\xf0\xb9\xd0\x5d\x68\x8d\x70\x58\xa9\xf7\x6a\x0b\x98\xd0\xa5\x69\x6e\x09\xac\xe5\x78\x59\x9d\x8f\x67\x99\x46\x29\xca\x3f\xa9\x00\xc9\x36\x16\x52\x6e\x27\x33\x47\x17\xce\x27\x4e\x3e\x22\x2f\x4c\x11\xe5\x45\x14\x46\xdc\xed\xe4\x19\xf8\xa9\xc7\xd7\xdc\xf1\x98\x2e\x1b\x47\xab\x52\x83\x96\xd1\x97\xd2\xa4\x4a\xed\xfa\x99\xaa\xad\x7a\xa1\x73\xe8\xa5\x76\xeb\x97\x7f\xde\x57\x87\x1d\x81\xe0\x9b\xf4\xf8\x25\xc8\xdd\xeb\xad\xdb\xc1\xe7\xe9\xed\x23\x68\xa0\x8e\x12\x7f\xfa\xb3\x40\x0d\xb1\x7e\x1b\xed\x2d\x58\x9d\xeb\x53\xe5\xae\xae\x28\xf8\x25\x9e\x15\x4a\x3a\x37\x02\xc5\xdf\xca\xd8\x30\x96\x8b\x0f\x7c\x9f\xf4\xae\x66\x8c\xe0\x14\x43\xb0\x10\x78\x9a\xcc\x4d\xb5\x41\x0b\x1c\x65\x82\xfb\x88\x5e\xf1\x7e\x3e\x87\xaa\x72\x45\x7e\x4d\xf8\xe5\xca\xe7\xcb\xda\xe0\xe4\x9c\x44\xb8\xdd\xcb\xaf\x7d\x84\xe6\x19\x22\xd5\x47\xbb\xcf\x45\x5e\x9e\x74\x10\xe5\x85\xcd\x64\xa0\x4f\xc6\x83\xcb\x4b\xe7\x63\x95\x19\xe7\xc5\xba\xe3\xab\x76\x7a\xca\x0e\x3f\x76\x13\x4f\x12\x06\xe3\xc7\x0f\x1d\xa3\x08\xd3\x24\x33\x51\xdc\xae\x14\x90\x17\xd4\x88\x5b\xf9\xa4\x50\xc6\xbd\xaf\x61\xc0\x69\x96\x45\x96\xc1\x64\x52\xcd\xf1\x23\x40\xd7\x03\xcf\xca\xf4\x7d\xc5\x13\x3f\x88\x27\x05\xfd\x14\x03\x9f\x2a\xa5\x31\x1f\x4c\xdd\x50\xf8\x4f\x00\xaf\x73\x9a\xb4\x67\x2e\x02\x32\x2f\xae\xcf\x5b\x2e\x11\x17\x39\x2d\xcd\x7a\xc0\x73\x79\x69\x08\x46\x1e\x54\x75\x6e\x7c\x7c\xf5\x51\xa0\x48\x4d\x77\x74\x5b\x3f\xf7\x2b\x3e\xff\x77\x6d\xa1\x0f\xf1\x24\xb1\xda\x6e\x52\x74\x01\xeb\x72\x09\x7e\x14\x46\xfe\x36\xbd\x25\xfe\x07\xf5\xa4\xb2\x34\x5d\x76\xd1\x14\xd6\xe2\x49\x85\xbe\x3c\xe9\x66\x17\x43\x93\xf5\xa3\xe5\x65\xf8\x4b\x47\xde\xae\x84\x33\x14\x97\xc7\x72\x94\x58\x56\x51\x42\x11\x8a\xe5\xe0\x45\x5a\xbe\xfc\xd8\xd6\x5b\x2a\x39\xe8\x9b\x11\x76\x3e\xac\x13\x78\x96\xf8\x58\xc5\xbb\xfd\x34\x49\xa4\x2e\xe1\x26\x5d\x16\xfc\x74\x8b\xd0\x65\x2f\x4f\x92\x19\xf5\x83\x80\x54\x8a\x8c\x78\x4b\xcd\xeb\xab\xe1\xe3\x93\x0e\xf7\x97\xd8\xa8\x18\xda\xec\x31\xc5\x4c\x7f\x51\xd1\xf3\x71\xd6\xee\x5a\x65\x73\x73\x4c\x7e\xf0\x7c\xb7\x7c\xc4\x2e\x4e\x9b\x3f\xc4\xfb\xf4\xa7\x29\xeb\xd8\xba\x47\x46\x41\x66\x81\x5a\x8e\xbb\x19\x4d\x1d\xf4\x14\x5a\x1b\x7e\xc4\x67\x60\x93\x7d\x6d\xbf\x00\x37\x15\xab\xf4\x7b\xca\x53\x5d\xaf\x15\x02\xa8\xac\x12\x7f\x29\xb5\x51\xac\xe6\x6c\x2e\x51\xf0\x24\x2c\x0f\x4d\xe3\xf7\x10\x53\xf6\x50\x00\x6e\x3d\xf1\x49\xad\x60\xb6\xf8\x12\x54\x6f\xb2\xa8\x07\x51\x1d\x2d\x62\xf9\x17\x4a\x28\xed\x2f\x6a\x95\x0d\xca\x2a\xd6\x5a\x1e\xf3\x8c\xe8\x41\xd8\x9e\x2b\x7c\x05\x6f\x20\x84\xe7\xa1\x5f\xfa\x5a\x19\x00\x56\xc2\x05\x36\x7f\x9a\x76\x9a\xd3\x2c\x9e\x9b\x07\xf8\xf6\x15\xf8\xb5\x7f\xfc\x1f\x12\xd0\x11\x23\x51\xed\x0d\xad\x88\xf5\xa5\xae\x4f\x4e\x9e\xc1\xbb\x45\xf0\xb1\x85\xe5\x81\x97\x38\xb3\xa1\xf8\x8c\x77\x6f\x38\x62\x8c\x93\xcf\x80\x98\xd3\xd5\x4d\x4a\xc7\xa1\x84\xf8\x5f\x74\xb3\x9a\xde\x6c\x75\x36\x14\xde\xea\x6f\xd3\xaa\x41\x32\x76\x57\xeb\x8b\x3d\xb3\xe1\x33\xc7\x91\x79\xa3\x6f\x50\x8e\x87\x31\xf8\x87\xe4\xf2\xf0\x20\x5a\x1b\xaa\xf0\xc4\x52\x3c\x88\xb7\xbf\xa6\x22\x87\xd5\x94\x84\x86\xcb\x8f\x01\xa8\xdb\x42\xff\x0a\x66\xfe\x6d\x45\x3f\x05\x5d\x00\xa1\x87\xab\x33\xa3\x94\xb6\x7d\x92\x2d\x1b\x16\x75\x99\xe7\x05\x7a\x2c\x50\x12\x11\xc7\x9a\xf0\xf7\x71\xba\xce\x80\x00\xe1\xee\x69\x39\xea\xaf\x33\x0e\x65\x35\x49\x64\xaa\x07\x2b\x6f\x53\x5b\x47\xdf\x9d\x1b\x99\x4c\xfe\x0e\x8f\xe1\xa4\x8e\xde\x4f\x2a\x4e\x52\x5b\xc6\x17\x4c\xcc\x22\xac\x30\x7e\xa2\x81\x41\x93\xb0\x8c\xff\x37\xad\x43\xbc\xa5\x2d\x45\x9f\xaa\x8d\xd0\x5a\x9a\x92\xc1\xf4\xf0\xe7\xd3\x8a\x7a\xfb\xb4\x8a\x80\x88\xaa\xa0\xcf\x7d\x52\x18\xbd\x2b\x8a\xf5\x66\x90\x99\xfe\xc4\x70\x27\x0a\xa5\x9b\xdf\xd5\xc2\x6d\xbf\x1b\x6c\xc3\x87\xec\x5f\xe8\x1c\x38\xf0\x45\x5a\xe7\x68\xf6\xa3\xee\x06\x93\x72\x03\x01\x08\xb2\xae\x9b\x00\x3a\x72\x64\x39\xf5\x84\xee\x27\x80\xfb\x47\x6d\x84\x51\x34\xf8\xb5\x53\xc0\x50\x61\x03\x1d\x21\x98\x8a\xa0\xbb\xe8\x25\xc3\xda\x30\xb4\x52\x78\xbd\x7c\x5d\xec\x14\x45\x49\x30\x8a\x37\x83\xd6\x2f\xcd\xfb\xfe\x57\x19\xf2\x54\xe3\x17\x87\x46\x29\x9f\x21\xd3\x4a\x71\x13\x96\xaf\x6c\xaa\xd8\x97\x50\xc7\x70\xf0\x76\x07\x3b\x3a\xaa\x49\x68\x69\x7f\xbe\x22\x72\xb7\x54\xf9\x16\xaf\x50\xee\x2f\x84\x42\x5b\x2a\x05\x4c\x28\x27\x5a\x8b\xfa\x10\x1f\x13\x5c\xab\xdf\x06\x90\x75\xe5\x63\x32\xb8\xfc\x37\x2a\xb0\xb6\x89\xa1\xf6\xae\x9f\x16\x80\xe1\x47\xed\xe0\x18\xb2\x03\x3e\x51\xc4\x14\x97\x9b\x1a\x93\x23\x93\x98\x30\x16\x3a\x34\x3c\x30\x98\x51\x3e\x9e\xfe\xcd\x87\x04\x49\xe3\xcc\xf6\xa3\xb0\x30\x3d\xc6\x59\xb2\x5f\x09\xb4\x8f\xa9\xa8\x1b\x47\x36\x29\xf2\x47\xe9\x11\x0b\x30\xdd\x27\xa4\x15\x92\xda\xe3\x81\xaa\x44\xdc\xa5\xf7\xea\x18\xfe\x0e\x4b\x2d\xee\xfd\xc0\x97\xf2\x10\x0d\x0a\x11\x39\xbd\x13\xfe\xb0\x1a\x3e\xb4\xc9\x20\x36\x49\x7f\x17\x5d\x01\x2a\xf0\x7f\xaa\xdb\x88\x7f\x8a\xaa\x1f\xd6\xe2\x7d\x5a\x59\x12\x71\x94\xdf\x0e\x3f\x71\xc6\x39\xec\x38\x2d\x80\x4a\x71\x3d\xc3\x5b\xca\xe3\xdf\x52\x60\xf1\xd8\x0c\x12\xd3\x87\xf6\x06\xd0\x82\x5a\x3c\xfc\xa2\xce\xaa\x8f\x2b\x20\x63\x96\x9a\xfe\x5e\xda\x05\x48\x5d\x8e\xeb\xb1\x8e\x6f\xd1\x37\xb8\x42\x9d\x28\x28\xff\x9d\x36\x2c\x31\xfe\xe8\x14\xaf\x7c\x3e\xa3\x02\x13\xf2\xdd\x6b\x6a\xce\xef\x87\xd8\x5d\x58\xea\x77\x02\x8f\xa0\x07\xfc\x05\x96\x72\xe7\xc6\x5e\x8f\x52\x89\xd4\xf8\xe3\x39\x35\xfe\x78\xae\x71\xa4\xc7\x0c\x32\x6b\x59\x62\x09\x09\xec\x3d\xbc\x5f\x80\x9a\xb8\xd9\x26\x13\x91\x8a\xcb\x33\x5b\x79\xa2\xbc\x00\xb7\xc4\x5f\xf6\x53\x8a\xf4\x65\x95\xf1\x62\x18\x81\xef\x4d\xfd\xf0\xc6\xcc\x86\xf7\x71\x9b\x30\x08\x30\x60\xff\x46\x2b\xf4\x8c\x61\xc1\xf0\x88\xf7\x12\x4f\x02\x0c\x18\x0c\x00\x5d\xf0\xe2\x17\xbb\x64\xff\xe4\xb1\xd0\xf3\x42\x84\xfb\x79\x23\xbb\xf7\xb2\x5d\x13\xae\x12\xb8\xf8\xb3\xc8\xc1\xf8\xa4\x09\x1a\x3c\xb6\xe9\x38\xb6\x3c\x5d\xad\x1a\xb7\x07\x1d\x59\x9e\xdf\x58\xd0\x48\x45\x9e\xfe\xfb\xb8\x7d\xac\xfd\xbb\x35\x40\xb4\xda\xad\x85\x79\xbd\xed\x83\x1a\x08\xb8\xba\x98\xcb\x53\xad\xbf\xdb\x88\xda\x19\xd9\x3c\x37\x03\x79\x8d\x58\x77\x8c\x73\x43\x78\x73\x07\x36\x5e\xc2\x3e\xa7\xde\x96\xa5\x93\x5e\x2c\x9f\x13\xcf\xa5\xa8\xac\xee\x29\x31\x1d\x2d\x51\x3e\xa4\x71\x7d\x14\xa1\xb0\xe1\x3f\x55\x55\x66\x2d\xc7\xf6\x9e\x4e\x08\xce\x54\x74\x47\xcf\x78\xd1\x74\x82\xb7\xcf\x78\xe7\x0a\x26\x7a\x59\xb7\x7e\x6b\x6e\x6a\x2e\xc8\x7a\xeb\x7b\xfe\x50\x87\xf0\x5c\x3c\xc9\x23\x40\x2a\x05\xaa\xaa\xbd\xdc\x25\xc2\x2f\x5b\x03\x4d\x02\x1e\x83\x0f\xb6\xb7\x52\x25\xb2\xaf\x91\x91\x11\xf8\x29\x1a\x0c\x99\xb4\x48\xe8\xa3\xfc\x80\xf5\x27\xaa\x2e\x72\xb3\x66\xe3\xf7\x97\x91\x93\x6a\x8a\x63\xd9\x62\x46\x8a\x8f\x6b\x92\xb2\x73\x73\x9d\xd8\xf4\x6d\xd2\xf6\xb0\x04\x56\x11\x01\x3e\xe7\xf4\x54\x91\x05\x5c\x68\x2a\xf5\x8e\x4d\x91\xa5\x89\x19\x20\xcc\xc0\xb5\x1d\x53\x22\xb2\xc7\x9a\x00\x2f\x65\x2a\xb0\x8b\x7e\x86\x35\x69\xc9\x60\xa1\xa6\x7d\x4b\x69\x65\xec\x52\x03\x5e\xad\x0d\x5f\xf5\xad\x33\x3f\x2c\x2c\x74\xa2\x32\x57\x48\xf2\x28\x2c\x6f\x66\x0b\x1a\x46\x30\x75\x6f\x4d\x2b\x4c\x5f\xca\xf0\xac\xee\x6b\x57\xd5\xfb\xd4\xe4\x04\xad\x0e\x98\xb1\x07\x55\x8e\xb3\x62\xfd\x39\xcd\x17\x8f\xd8\xdb\x75\x97\xbc\xf2\xe3\x0d\x98\x1f\x5c\xff\xce\x8d\x32\x4c\x82\x0f\xdc\xd1\xf5\x05\x87\x9d\x1b\x4a\xd2\xff\x81\x26\xfa\xbd\x1f\xa8\xe2\xc6\x05\x54\x0c\x11\xbf\x5c\x0d\xd4\xe6\xfc\x03\x5a\x55\x5c\xcc\xd7\x43\xf6\x77\xf5\xcc\xec\x25\x80\x86\x91\x3a\x5c\x99\xfa\x61\x04\x6e\xe0\xe2\xe1\x3f\xb2\x41\xd6\x0b\x21\xdb\x67\xe4\x15\x50\x96\x04\xb3\x0b\xe2\xb2\x2f\x34\x8d\x4c\xc6\xe9\x9a\xcd\xda\xbe\xba\xc6\x13\x25\x30\xbd\x8f\xd1\x7b\xc4\xc8\x6a\x6b\x63\xfb\xbb\x43\x67\xb9\x98\x64\xbd\x8a\xf6\xe3\xc7\x41\x05\x46\xb4\x7d\x19\xcd\xcd\x93\xd0\x51\x4b\xcd\xe2\xf0\xa4\xaf\xb8\x91\x3a\x26\xe7\x20\xd8\x73\x2c\x0f\xc7\x62\xf1\xfd\x20\x50\xa3\x5f\x3f\xa8\xb5\x9c\xe6\x0f\x75\xc2\xcc\x9a\x51\x24\x76\x5e\x03\x6a\xf8\x58\x15\x6c\x08\x2f\xcd\xe3\xfd\xa2\xcc\xda\xf2\x2a\xad\x6a\xf1\x2d\x47\xe1\x1e\xd5\x3b\x9e\x92\x3f\x46\xc3\xa1\x45\xa3\x64\xb4\x86\xba\xcf\x74\x7d\x87\x82\x57\x84\x10\x6b\xd1\xe5\x60\x11\x9c\x9f\x7a\x22\x25\xa6\x4c\x44\x15\xf1\x96\xa3\xc7\xe8\xdb\xe5\x28\x89\x0a\x1b\xaf\xb7\xbd\x24\xc3\xaf\xc2\x5d\xba\x4a\xff\xd2\xac\x03\xb7\x6d\x6b\xca\xcc\xcd\x95\xee\xe1\xa7\xcb\x65\x00\x70\x2d\x71\x56\xf3\xd7\x5c\xa3\x7c\x51\x3a\x9a\xba\x8a\xf8\x28\x70\xf5\x88\x31\xaf\x07\x88\xc2\x71\x69\xef\x2b\xc6\x9a\x23\x58\xd1\xb0\x79\x8f\x6c\x54\xea\x6e\x4a\x87\xfb\x63\x94\x21\x99\xb8\x6e\x4a\x3b\x07\xf1\xef\x27\x48\x23\xf0\x34\x58\xad\x07\x8b\xef\x39\x30\xbd\x22\xd2\x06\xbd\x05\xe2\x91\xef\xa0\x10\x59\x19\x06\xc0\x36\xba\x4f\x5b\x0a\xbb\xfb\x7f\xc5\xc6\x61\xf8\x33\xf6\x17\x9c\xf3\xad\x29\x39\x42\xac\x81\xaf\xd2\xeb\x93\xe7\xf8\x8c\x62\xc7\x29\xcc\x78\x98\x66\x68\x00\x22\x27\x3f\x46\x5f\xcf\xc7\x4d\x73\x13\x71\x9a\x0c\x6c\x46\x3e\x0c\x5b\x71\x77\x57\xf5\x0b\xbe\x31\xf5\xd0\x88\x5b\x9a\x22\xf7\x46\x03\x79\xf2\xc1\x4e\x3e\x4c\xd7\x04\xb3\x01\xc7\x7f\x53\xd3\x27\xdd\x44\x65\x9a\xfe\x3c\x5d\xfe\x1b\x74\xb3\xec\xf5\x11\x26\xa3\x00\x7d\x5f\xd5\xcc\xfe\x1c\x0f\x0e\xaf\x5b\x18\xae\x11\x4d\x9f\x08\x14\x36\xe4\xba\x12\x88\xdb\x43\x93\x98\x30\x5f\xd7\x03\x45\x16\xf7\x28\xca\x0b\x02\xa8\x6e\xcd\xcd\xf1\x83\xff\x9f\x28\x1d\x10\x56\x44\x5a\x11\xf8\x87\x16\x09\xcd\xa2\x10\x70\x1f\x6b\x00\x17\xbc\xa3\x4b\xab\x03\x19\xdb\xae\x0d\x15\x88\x6d\x90\x0a\x27\x12\xac\xb7\x74\x8e\x79\x86\xf2\x29\xa7\x21\x5d\x1a\x5f\x61\xed\xa3\x97\x0b\xfb\xff\x0d\xf2\x49\x98\x40\x79\x72\xa3\xf5\xcb\x3f\xcf\xe6\x72\x07\x15\x57\x44\xf8\x8c\x5e\x11\x0b\x36\x70\xba\xc9\x9c\x0f\x41\x19\xd1\xe2\xe2\xb9\xe0\x2e\xd5\xf7\x96\x23\x7e\xfc\x84\x16\x10\x62\xf0\x23\x6a\x08\x37\x4c\x13\xd7\x11\x94\x79\x7a\x7a\x18\x32\x69\xaf\x09\xa7\x27\x59\x91\xa5\xe9\xa8\x0e\xab\xc3\x1f\x1f\xc1\x8b\x67\x4a\xb0\x5a\x95\xee\xf0\xec\x3c\xd5\x56\x67\x7c\xf0\x78\xaf\x42\x14\x5c\x2e\x01\x59\xc2\xf4\x13\x70\x67\x6f\x39\x6a\x4a\xd3\xeb\xad\x43\x44\x0b\x4e\x6f\x47\xb7\x7c\x9f\x5a\xd2\x09\x0f\x0e\x96\x46\x50\x6c\x5e\x51\xc2\xae\x46\x79\x48\xfa\xbc\x50\x05\x3a\xe8\x6c\xa8\xb2\x08\x17\xa6\xcf\x29\x1c\x7d\x99\x9a\x8e\x2c\x49\xa4\x1f\x16\x32\xed\x36\xc8\xe2\xf9\x64\x63\xbb\x49\x7f\x79\xb1\x33\x2c\x03\xb5\x44\x2a\x4c\x40\xc5\x71\x85\x89\x4f\x9a\x48\xc2\xfa\x76\xd9\x4c\xe2\x42\xc9\x4a\x5c\xae\xf0\x82\x69\xbc\x79\x3c\xc9\xf7\xf8\xb8\xe0\x06\x9e\x3c\x9e\xca\x1d\x3c\x3c\xd8\x9a\xab\xd3\x6d\xc8\xd9\x57\x1c\xc1\x3e\x3d\x00\x3c\xfb\x2d\x5a\x1d\xf0\xd8\xf7\x14\xf3\xfc\x83\x5a\x07\x93\xc2\x40\xa6\xa1\x6b\xa2\x83\x6d\xd2\xc7\x25\x2e\x06\x9a\xf6\x6e\xf9\xc4\xf6\x77\xb0\xcc\xf8\xa4\x09\xda\x1d\x0e\xd3\x6c\x82\xf1\x36\x66\xe0\x0c\xfc\x9c\xf9\x31\xb7\x28\x52\x53\x30\x54\x1e\x81\xf7\x31\x35\xa1\x01\xfa\x28\xc1\x45\xd0\xdd\xc3\xc8\x69\x7e\xd5\x5e\xda\x33\x99\x52\xe1\xe7\x44\x90\x4f\x6a\x99\xd0\x81\x03\x1d\x33\xc9\x8b\xcc\xc4\x91\x71\x6c\xe9\x28\x44\x7c\x80\x75\xc4\x27\x0f\x6d\x8d\x9b\x6c\x94\x97\x61\x2d\xd8\xa1\xb8\x85\x45\xef\x09\x01\xe5\x59\x0d\x3c\xdc\xd9\x7d\x98\x9c\xd7\x72\x9a\x16\x3d\x13\xa3\x4c\x0e\x9f\xc5\x54\x3b\x7c\xd2\x10\xc6\x1e\xa4\xd6\x56\x16\x85\x45\x4b\x0b\x1e\x04\xaa\x0b\xaa\xc9\x84\x72\x9b\xad\x8a\xf6\x08\x8a\x53\xdf\x56\x3c\x50\x0c\x9e\x16\x54\x79\x65\x1c\xc2\x26\x3f\x4d\xe6\x9d\x9b\x82\x64\xa2\xa4\x41\xb8\xf3\x67\xa4\x31\x11\x28\x1d\xea\xa3\x3a\xfd\xba\x0b\x73\x87\xb4\x8a\x47\x87\x50\xd0\x7b\xa2\xeb\x05\xec\x7e\x8d\x3c\x00\x0c\x32\xf4\x7a\xd1\x79\x42\xec\x80\xe4\xf7\x18\x27\x72\xf0\xf0\x5f\xc3\x9d\xc2\x29\x5f\x9f\xfa\x49\xcd\x13\x88\x10\x5c\x5e\xec\xe4\x4a\x3e\x98\x56\x86\x1d\x7d\xa3\x73\xe7\x86\xd6\xb8\x3f\x13\x78\xd7\xf6\xc8\xf3\x5d\x1d\x36\x4e\x95\xfa\xfd\x19\xaa\x66\xc2\x9f\xbc\xaf\x24\xf7\xf2\xd0\x24\x7d\x13\xef\x56\x3d\x2f\xd4\x97\xf1\x04\x3e\xd3\xb0\xc4\x7f\x8d\x2b\xe2\x13\xe4\x53\xfc\x67\x6a\x2b\x9e\x51\x2b\xdc\x14\xe9\x08\x1b\xa9\x09\xc1\xe1\x9b\x36\xa5\x2f\x78\x44\xe9\x07\x81\x39\x5e\x9e\xb5\x6a\x51\xb0\x88\x3f\x42\xcb\x9b\x1a\xc2\x70\x0e\xd7\x03\x5f\x78\x45\x49\xac\xde\x6f\xe0\xde\x5a\x74\x54\xa4\xbb\x7c\x2d\x1d\x82\x57\x42\x97\x47\xaf\x0b\x55\xfe\x19\x4a\x6b\x84\xe9\x93\x7e\x86\x67\x91\xfc\xd0\x4b\x4a\x84\x29\x74\x0b\x78\x95\xc7\x03\x8f\xda\x3c\xde\x34\x43\xbb\x9c\x66\xa1\xa5\x58\x48\xf9\xef\xf9\x8a\x4a\x69\x25\x3a\x46\xfb\xe1\x68\xa3\xa1\xeb\xdb\xc9\xca\xc8\xbe\x26\x40\x80\x46\x2a\x5a\xbd\x4b\x8a\x61\xbe\xd7\xcb\xc6\xec\xea\xaa\x01\xa2\x9d\x08\x2b\x65\x4a\xa1\x8c\x2f\x44\x5c\x86\xae\xcf\x25\x64\xe5\x52\x80\x8b\xdf\xb5\x51\x61\x42\xd0\xe4\x07\x9a\x2e\xa1\xbc\x55\x04\x0b\x57\xb6\x41\x90\xab\x37\xf4\x42\xc7\xe4\xb9\x1d\xf5\x18\x06\x8a\x9c\x13\x4c\x21\x7c\xbc\xd1\x80\xf9\x7d\xcd\x8c\xda\x4a\xb2\x03\xc1\x24\x0c\xe2\x35\x25\xa4\x7e\x59\xf7\x45\xed\xb2\x4d\xfa\x18\xe7\x03\x44\xfb\x47\x53\x05\x3c\xd5\xd6\xf8\x23\x87\x95\x14\x89\x4a\x27\x70\xc7\x50\x49\xe9\xc8\x79\x11\xc1\x65\x34\xc5\xb5\x44\x27\x7a\xa6\x15\x77\xf8\x6a\x93\xd2\x62\x94\x94\xb9\x59\xce\x59\x20\xee\x7a\x43\xd1\xdf\x6f\x38\x60\x5f\xdf\xc6\x96\x64\x80\xd8\x1f\x28\xad\x16\x77\xa2\x7a\x2b\x34\x29\x9a\xcf\xf8\x41\xc4\xf3\x41\x75\x78\xcc\x15\x1f\x3f\xa5\xd4\x47\x9c\x96\x02\xe9\x2e\x2f\x47\x31\x0b\x90\x94\x0f\x0e\x95\x0b\x30\xcc\xf2\x71\xa3\x2c\xc0\xd8\x84\x2b\x34\x71\x8b\x8f\x21\xe8\x04\x9a\x95\x8f\xb7\x67\x66\x87\x67\x17\x3b\x87\x5e\x42\x80\x8f\x42\xd9\xa6\x16\x13\xd9\x54\xfc\x2a\xa3\x28\x2f\x03\xa5\x25\x91\x8f\x85\xea\x31\x1f\xd7\xd2\xfa\xa5\xd9\x4e\x9e\x4e\x8a\xe1\x8c\xaf\xfa\xa3\x56\x2a\xf5\x6c\xcd\x2a\x53\xd9\x94\xbe\xb5\xf8\x9a\x89\x46\x76\x1b\xd4\xdf\xf3\xc3\x5c\x54\x23\x91\x6b\x69\xda\xcf\x26\xcb\xcb\x0a\x5c\x3d\x9d\x2a\xb9\xfe\x69\xe0\xbf\x35\x1f\xa6\xab\xb6\xe5\x85\x14\x81\x74\xe2\xe3\x1a\xda\x83\xca\x13\xc9\x20\x2f\x0c\x41\x3b\xdb\xad\x85\x85\xad\x1b\x68\x01\x61\x6d\x61\xee\x1a\x51\xc8\x23\x5d\x8f\x31\xe9\x4d\x96\x97\x25\x75\x92\x32\x8c\x07\x31\x5e\x68\x90\x41\x3f\xd8\x89\xa3\xa4\x6f\x5a\x95\xe7\x4f\x8b\x53\xde\x8c\xbf\x61\xd3\xcb\x26\xe3\x82\x89\xcb\x58\x70\x7c\xaa\x60\x7c\x77\xe0\xf1\x1c\x07\xb5\x67\xde\x6e\x14\xe0\x1d\x99\x3c\x34\x99\x69\xa9\xb1\xc1\x4d\x25\xd8\xb5\xe9\xa0\x16\x69\x96\xd8\xa2\xb0\xad\x32\x21\xab\x48\x16\xc9\x36\x68\x10\x5f\xb3\x49\x98\x8e\xc6\xa5\xbd\x61\xc8\x8d\x1e\x82\x72\x04\xd5\x1e\x8a\x79\xa7\x81\x81\xb6\xb3\x5a\x26\xa2\x80\x89\x61\x7b\xf2\x1d\x22\xac\xe5\x5a\xa3\xd0\xeb\x2b\xbc\x72\x1a\xf7\x6d\xb2\x5b\xcd\x0f\x70\x68\x0c\x7f\x70\x2f\x50\xac\xa3\x5b\x5c\x7c\x60\x21\x3a\x35\x96\x02\x78\x0c\xd3\xf2\xd6\x88\xce\xcb\x98\x71\xd4\xf2\x3e\xee\x42\x95\x8c\xba\x21\xf8\xed\x5b\x3b\xe6\x86\x18\x02\x44\x90\xac\xf1\xb1\xea\xee\xe4\x51\xb2\xd2\xaa\x94\x4a\x1c\x88\xee\x5a\x05\x8b\x30\x0a\xcd\xee\x72\x49\xe3\x09\x80\x5d\x4b\x8a\x31\xe5\xe7\xf9\xbf\x2b\xea\xef\x0b\x81\xaf\xca\x31\x67\xbc\x8c\x2c\x2a\xcd\xcc\x74\x92\x14\xeb\x33\x55\xaa\x60\x87\xf5\x68\xfb\x52\xd3\xc6\x3b\x81\xe2\x19\xdd\xa3\x14\x17\xc6\xf1\x64\x34\xb2\x85\x60\x63\x98\x89\x8b\xee\x57\x58\xb9\xea\xa3\x81\x2f\x76\x8a\x74\x3c\x8e\x65\xff\x08\x79\x1d\xbd\xfe\x87\xb1\xd7\x1d\x9e\x7d\xa5\x33\x4c\x89\x1f\x93\x3e\x24\x45\x85\x96\xd3\x85\x39\xe1\x88\x37\x47\x51\x1e\x25\x85\xcd\xc6\x19\x5d\x59\x4b\x91\x6d\xea\x3e\x93\xea\xd4\xaf\x9a\x58\xfa\x78\x70\xc8\xe7\xa6\x8a\xa5\xb1\xce\x60\x51\xde\x43\x6c\x72\x9b\xed\x2a\xb3\x58\x57\x8f\x77\xdd\x94\x1d\x5d\x45\x3f\x89\xd9\x4a\x81\x7f\x93\xd7\x87\x13\x2f\x14\x41\xed\x68\x1c\x5b\xc7\x2a\x0a\x50\x25\x23\x2a\xf8\x64\xa3\xa2\x27\x1e\x0d\xda\xca\xb7\xde\x80\x21\x91\xfa\x2a\x16\x3a\xca\xb3\x3f\x6a\x78\x92\x8b\x1d\xec\x57\x6d\xbe\x90\xae\x0a\x5c\xae\xa1\xd4\x99\x0f\xd3\xb4\x48\x27\x05\x51\xbe\xb9\xa6\xa8\x4b\xd7\x30\x5d\x2c\x10\x69\xcf\x01\x3d\xc9\x7f\x46\x71\xf0\xbf\xa9\x38\xf8\xdf\x54\xb5\xb0\x30\x8e\xc6\x94\x65\xb6\x95\x9c\x0e\x07\x8a\x6e\xb2\xf0\xcb\x2f\xf3\x02\x7c\x10\x78\xa4\xfd\x72\xbc\xde\xf6\x1c\x70\x2d\xc2\xc7\xa0\x96\x04\xc0\x15\x82\xad\x3f\xa9\x25\xc3\x73\x73\x28\x12\x97\x2e\x45\x66\xa2\xe9\xe7\xf8\xa4\x66\x47\x5f\x7d\xb5\xb3\x36\xb4\xc5\xd0\x66\xc4\x2c\x03\x17\x7f\x9a\xaa\x52\x7c\xdc\x60\xf4\x17\x3b\x61\x4c\x08\xd6\xb9\xf9\x0a\x82\x55\x2b\x01\x0a\x6f\xbf\x2f\xec\x2c\x47\xb1\x70\xe9\xe2\x25\x82\xcd\x97\x8f\x15\x86\x2e\x9f\x24\xbd\x28\xc3\x0a\x17\x7e\x6f\xb5\xa5\x74\xa4\x96\x2e\x2f\xdb\x2c\xdf\x5d\x5a\x05\x6e\x87\x06\x3e\xbc\x63\x89\x0a\x7c\xea\x5d\x3d\xe1\xfc\x03\xb5\x76\x77\x52\x48\x20\x5e\xbd\xc1\xcf\xe4\x6b\xb6\x1f\xe5\x43\xba\x1c\xfc\xc8\x31\xd8\x0d\x3e\xa9\xc5\xf0\x87\x67\xe7\x3b\xb1\x89\xfa\x7a\x2e\xf4\x63\x5a\x48\x7c\xdc\x10\xf5\x1f\xec\x44\x59\x9a\xb4\x2a\x62\xb9\xbe\xce\xb0\x19\x6c\x0f\x6c\x97\x66\x3b\x86\x67\x42\x00\x18\x39\xa6\xc0\x23\xc7\x9a\x48\x75\x97\xd3\x3c\x67\x04\x9b\xae\x4f\x49\xfe\xe5\xc2\xd8\x34\xcd\x6d\x42\x0b\xa8\x29\x82\x93\x58\xa1\x0c\x5e\xd6\xa2\x04\xda\x9c\x8e\x5b\xdb\xf3\x91\x68\xd8\x8e\x89\xdc\x84\xaf\x70\x02\xb4\x1c\xf5\xfd\xb6\x81\x90\x28\x7e\xd6\x4b\xa4\xde\x40\xb1\x13\x2e\xe6\x14\x1a\xcd\xc0\x96\x33\xad\x1a\x92\xeb\x77\x94\x64\xe7\x0d\x15\x0c\x9f\xd4\xd1\xd4\xe7\x70\x17\xa8\x67\xfc\x11\xf9\x91\x0a\x89\x84\x5b\x68\x8b\x2f\x1d\x74\x0f\x85\xcc\x1d\xbe\x6c\x17\xd2\x1f\x54\xb7\x80\xf0\x46\xa5\x88\x65\x18\xf8\x52\x68\xe7\x38\xaa\x8a\xc3\xb3\x8b\x5b\x98\x85\x94\x44\xb9\x7c\x5c\x82\x59\xf4\xe9\xf0\x72\x94\x8d\xf2\xdd\xca\x9f\xfd\x43\xc5\x36\xb1\xef\x19\xc6\xd7\x29\x1d\x8a\x17\xb7\xda\x1b\xbe\xbb\xfc\x61\xe0\x66\x9a\x3f\xfe\xf7\xba\xdb\xdf\xfd\xab\xaf\x76\xc6\x93\x5e\x8c\x3e\xa1\x20\x61\x15\x77\x0a\xbb\x7e\x21\x2b\xd8\x1e\xa3\xbf\xfa\x6a\x67\x60\xe2\x55\x93\xd0\x50\xb9\x1f\x97\xe1\x4c\x58\x28\x3b\xca\xb7\x26\x58\x7d\xfd\x46\x8b\x09\xb8\xf1\xa4\x1c\xe7\xb9\x10\x98\x08\x1d\xbb\xf0\x1e\xd5\xa5\x51\x50\x79\x5b\xa9\x52\xdc\x57\xc3\x14\x99\x2d\x4c\x14\xef\xf2\x19\x3c\x03\x62\x10\xce\x63\xbf\x20\xe7\xe7\x1e\x0a\xff\x43\x69\x8f\xb6\xbc\xaa\xe0\x72\x9a\x7a\x95\x3f\x47\x45\xb2\x20\x9d\xb7\x3b\x81\xaf\xb6\x12\x1e\x33\x25\xd9\xbe\x19\x25\xd7\x7d\x91\x5e\x23\x42\x9a\x37\x95\x48\x15\x08\x7c\xf9\xbf\xd7\x1e\xe4\xfe\x05\x22\xc1\xc9\xc7\x99\x35\xfd\xb6\x9a\x7f\x46\xc5\x1a\xde\x01\xbc\x0d\x08\x81\x6f\xaa\xec\x2a\xa7\xce\x7c\xb4\x5c\xbe\xc5\xc3\xb3\x5e\x10\xcd\x8d\xe2\xfe\xbf\x7a\x6c\xb9\x41\xb9\xb7\x33\xce\xd2\xc2\x2a\x7d\x43\xd1\x0d\xf1\x29\xdf\xa5\x66\x72\xdd\x95\x78\x5b\x72\x76\x54\x25\x67\x47\x9b\x35\xe0\xf3\xa8\x6f\xc9\x81\xf1\x9d\x04\xbe\xb3\x7a\x54\x49\x2e\x9d\x6f\xc2\x8b\xa4\xbd\xd7\x64\xdc\x0d\xd9\xca\x07\x8a\xe8\xf5\x83\xe9\xf6\xe2\x23\xe5\x90\x59\x1a\xc6\x66\xe4\xb4\x6b\x39\x16\xe2\xd9\x17\x3e\x51\x1e\x66\x60\x88\x0b\x7f\xc6\xdb\x8a\x7b\x0a\x31\x7b\x9d\x76\x2c\x6c\xf5\x59\x18\x1a\xac\xf2\xf7\x95\x1e\xc5\x30\x9d\x64\x39\xaa\x63\xf0\xad\x5b\x2a\x47\x7e\xa0\xe4\x0f\x58\xaf\x99\xe5\xd1\x28\x79\xc6\x6a\xd9\x52\xa5\xf4\xc7\x37\x9e\xf4\x38\xcc\xb8\x97\x66\x69\x4b\x4d\x9e\x83\x80\x8a\x8f\x6b\xce\xe3\x85\x4e\xcf\xc4\x6f\x98\x50\x69\xe5\x5f\xd0\xf9\x4d\x5d\x2f\xe4\xd0\x4b\x9d\xd7\x26\xfd\x01\xc2\x04\xf4\x18\xd0\xde\xe5\x63\x95\x8b\x8c\xcd\x1a\xc6\x13\x16\xbd\x28\xdb\x7e\x59\xa0\x97\x6b\xe1\xc4\xdf\xed\xf4\x6d\x18\x47\x89\xd8\x7b\xb5\x4f\x05\xe2\x7d\x41\xed\xe8\x30\x1d\xd1\x24\x7e\x79\xb1\xcc\x5b\xac\x65\x57\xce\x4c\x7d\x15\xec\x39\xda\x18\x30\x9d\x3b\xa8\xb7\xa6\x2d\x0a\x40\x4e\x57\x68\x5f\x62\x1b\x5f\xab\xd5\xc3\xa4\x4a\xcd\xe3\xa0\xb4\x01\x11\x09\x73\x48\xca\x27\x1b\xbe\xb9\x5d\x0c\x89\x6b\xfb\x59\xa5\x2e\xf0\x3e\x5e\xa7\x1b\x71\x72\x18\x87\x8b\x6a\xca\xf1\x6a\xe0\x21\x34\x3f\xb5\xe1\x81\x22\xf7\x71\x77\x52\xf9\x51\x55\xc1\x2b\x9a\xd7\x84\xed\x1a\x1e\xf2\x99\xc0\x13\xf3\x9d\x23\x78\x3c\x96\xcc\x55\xd8\x38\xfc\x08\x57\x6b\x60\x99\x77\xa2\xd8\x8b\xb7\x8f\xfa\x18\x58\x42\xa0\x88\x29\xba\xe8\x70\x2a\x6e\x28\xc7\x11\xde\x5c\x72\xc5\xcb\xd5\xc8\xae\xd9\xfe\x2e\xa5\x7b\xc4\xc1\x2b\x0c\xf8\x35\xec\x0d\x00\xa3\x1e\xe9\x7a\x2c\x04\x73\x9b\x8a\xfc\x87\x9a\x8e\xb0\xe1\x7a\x18\x5b\xcc\x03\x33\xcd\x38\x9e\xa7\x70\x8e\x0b\x6a\x39\xb7\xb6\xcf\xf3\x26\x70\xb9\xed\xae\xae\xac\xb5\x9c\xbe\xf4\x2d\x65\x24\xe3\x88\xa4\xaf\xa3\x34\x61\xd2\x2f\xe1\xf2\xf6\x20\xa8\x4f\xa6\xaa\x6d\x7e\x49\xcf\xc9\x9f\x53\xd3\x34\x3c\xd8\xcc\x1f\x0f\xb4\xec\xeb\x30\x16\xc6\x2b\x29\xb3\x7b\xfd\xe0\xba\x94\x40\x99\x61\x94\x2b\x88\x21\x4e\x9a\xe4\x57\x98\x9b\x7d\x9b\xb9\x9e\x54\x2e\x2c\x74\xec\xa8\x97\xf6\x23\xd9\x4f\x4a\x0c\x62\xde\x89\x41\x88\x63\xcb\x87\xe9\x5a\x2f\x7a\x43\x61\xbd\x39\xdf\x13\xf6\xc1\xed\xa6\x73\x69\xb6\x13\x25\xab\x69\x3c\x49\x0a\x93\x45\xf1\x7a\x4b\xcf\x1c\x7a\xda\xfe\xcb\x4e\x47\x73\x9c\x66\x36\x57\x24\x9f\x67\xd4\x48\xc0\x3b\xf7\xa9\xe7\x2c\x13\x03\x5a\xc7\x3d\xca\x53\x62\x4c\xa7\xb5\xe3\x06\xec\x5d\xb3\x7f\x53\x4f\x1a\x19\x62\xf9\x7f\x44\xb5\x61\x4e\x4e\xb5\x9a\x80\xd2\xe6\xc5\x58\x0b\x03\x25\x34\x84\x74\x53\x15\xea\x18\x3a\xc4\x5f\x55\x09\x36\xfb\x36\xde\x43\x2b\xd1\xb5\x7b\xca\x95\x28\xca\x29\x7e\xae\xed\x62\x83\xe4\x33\xd0\x15\xc7\xb0\x89\xb6\xf0\x46\xf1\x4c\x4e\x04\x1e\x7f\x7e\xd5\x37\x8a\xb3\x1e\xc4\x80\xb8\x10\xa4\xc1\xf5\x5b\xdc\x10\x82\x71\x7b\x5f\x95\x32\xec\xa4\x47\xc4\xec\x6e\x5a\x9d\x4b\xf7\x7c\x12\x3c\xab\x23\x95\xd5\xc8\x0b\x78\x60\x83\x32\x29\x04\x9f\x68\x42\x85\xfe\x6b\x93\xbc\x20\xac\xb5\x2e\xb8\xd3\x23\x04\xca\x01\x25\x08\x5c\x11\xb3\xa9\x21\xbb\xff\x5a\x03\xe6\x62\x91\x14\xfd\x98\xc2\x8c\x2d\xca\x3d\x6d\xdd\xee\x79\xa9\x8a\xb1\xb5\xfd\x75\xec\x06\x69\x0a\xfa\x9a\xd5\xbf\x9a\xfa\xc1\xf3\x73\x2e\x25\x19\x44\x6f\x8c\x44\x43\x07\x10\xc7\xf3\x6a\x4c\xe9\x7c\x03\x29\xcc\x92\x16\x5b\xa6\x07\xe2\x34\xba\x14\xd1\x52\x45\xdd\x75\x25\xdf\xdb\xf2\xb2\x6d\x64\x0e\xb1\x98\xae\x53\x68\x0b\x1c\x59\x69\x4c\x05\x68\x7c\x5c\xbd\xe7\x99\x0d\x35\x2e\x5e\x79\x47\x37\xd8\xcc\x22\x60\x7b\xa4\xeb\x55\x0f\x6e\xc1\xe2\x3b\x88\x83\xdf\x48\x9b\x0d\xec\x10\x2f\x96\x07\x2b\x66\x98\xc6\x4c\xbf\x8f\x4a\xdd\xf7\xd4\xc8\xc7\xf7\x9a\x33\xf5\x2c\x1d\xf3\xb3\xc3\xca\x3e\xad\xf5\x69\x4f\xeb\x10\xb3\xb0\x36\x1e\x99\x15\x9b\xb5\x7d\xec\x75\x72\xea\xdd\xc7\x23\x8a\xd2\xb7\xf4\x92\xd2\x39\x48\xcb\xec\x42\xe8\x0f\xb1\x96\xae\xd2\x8b\x84\x4b\xdf\xdb\xf5\xb9\x46\x6b\x43\x85\xf3\x93\x5e\xcf\x02\x3a\x0a\x6c\xcb\x5d\x80\x9d\xf4\x0f\xcb\x3a\xf6\x33\x85\xcb\x26\xc3\xa2\x75\x4a\x79\xe5\x0e\x66\x76\x36\x7a\xbc\x82\x09\xa7\xdd\x2c\x45\xb4\xa6\xca\x35\xb1\xb5\x6a\x4a\xca\x9b\x4a\xe0\xf1\x43\x2d\xf0\x58\x2f\x1d\x2d\x2c\x74\x8a\x0c\x51\x24\xad\x2f\x91\x4e\x51\x84\x84\x97\xa6\xfe\x11\x59\x93\x43\xa9\xd0\xb3\xf1\x9f\x25\x73\xc9\xc7\x8d\xf4\x9d\x3d\x5b\x14\x36\x6b\xab\xbe\xf3\x7b\xaa\x2e\xfa\x29\xee\x9c\xbb\x5a\x4d\x53\xe5\x66\x39\x8b\x42\xee\xfc\x21\x06\x7e\x3f\x50\x01\xf1\xfb\x0d\x48\xd5\xc5\x4e\x6c\xd1\x9d\xc2\x22\xbf\x33\x55\xe4\xa1\x5c\xcb\x44\xc2\x76\x51\x8d\x01\x64\x26\x8e\x4b\x17\x55\xda\x29\x81\x4f\x94\x17\x2a\xb8\x8a\xe7\x94\x72\xec\x60\x12\x93\x87\xce\xb1\x5c\x64\x1e\xa8\xbc\x46\xa9\x0f\xfa\x39\xb6\xab\x8d\xb5\x95\x7c\x98\x16\x6d\x3f\x22\xc1\x5c\x4a\x70\x10\xb0\xc4\x42\x1c\xbe\xdd\xe1\xd1\xa0\x5c\x1c\xdb\x2c\x4c\x89\x79\xb3\xe5\x67\xb0\x81\xf7\xe2\xe3\x26\xac\x72\x27\x5d\x5e\xce\x2d\xb8\x17\xc5\x9a\xd0\x0f\x8b\x39\x79\xb6\x9e\x38\x67\x88\x60\x90\x14\x9c\x57\x43\xa6\x9a\x1e\xf4\x8c\xaa\x67\x99\x51\xdf\x0c\x31\xd3\xe5\x04\xf5\x9c\x26\x49\x5d\x5f\xa3\xb4\x0b\x43\x1b\x73\x70\x20\x41\x39\xbd\x25\x89\xd6\x9f\x71\xf3\xa6\x71\x48\x8f\x9e\x17\x2c\x72\xe3\x73\xf0\xa7\x7c\xa2\x9a\x53\xe1\xd0\x8c\x7a\xce\x67\x4b\x71\xa4\xb4\x8a\x52\x84\x7b\x18\x67\xd5\x32\x11\x1e\xb8\x40\xe2\xbe\x16\x9c\xba\xdf\x70\x07\x8b\x1d\x6b\x72\xf4\x15\x64\x20\xa8\xe5\x48\xfb\x2e\x36\x09\xfb\x1d\xec\x14\x60\xeb\x59\x64\x60\x23\xa3\xa5\xf8\x44\xd1\xc5\xf7\x33\xd3\x8b\x92\x7c\x65\x5d\x71\xcb\x7f\x33\x50\xf5\xd7\x6f\x36\x8e\x04\xe4\x63\x93\x24\xce\xa2\xb9\x38\xcf\x89\xb0\x40\xbd\x09\x35\xd8\xff\x4d\x31\x34\xe6\xe1\x30\xb1\x51\x5f\x18\xe1\x78\xa3\xa8\x5a\xe3\x45\x47\xfd\x94\xae\xda\x8c\x37\x83\xc4\x76\x42\xc3\xdf\xf2\x94\xfc\x35\x84\xc2\xfe\x85\x4e\x3e\x9c\x14\x7d\xa2\xd9\xd6\x0c\x5f\xca\x19\x6d\xba\x80\x70\xcd\xc6\x7d\x79\xdf\x52\x1e\xa5\x5b\x92\xd1\x11\x15\xa4\x4d\xb2\x70\x68\x72\x9b\xef\x52\x73\x39\xac\x5e\xee\xb8\x3f\x1c\xdf\xd2\xb9\x8a\x52\x8e\x67\x0e\x3a\xaf\x06\xc2\xc2\x34\xcb\x26\xe3\x72\xab\xb7\x7d\x0b\xf5\x47\x95\xfe\x33\x7d\x23\xb2\x99\x9b\xdb\x9b\xbc\x2f\x2f\xcd\x76\x0e\xcf\x92\xb6\x36\x22\x92\xef\x50\x85\x88\x8f\xf1\xc2\x01\x1e\x3e\xa9\x63\xc2\x4f\x15\x71\xe8\xde\x0d\x85\xa6\xef\xfa\x62\xe7\xce\xae\x2f\xd1\xfb\x57\xe6\x41\xcb\x97\xf5\x18\xfc\x65\xa5\x46\x1c\x46\x59\x38\x61\xed\x72\x7c\xed\xc7\x1c\xba\x89\x72\x31\xdd\x1d\xff\x13\xbe\x45\x04\x8e\xeb\x2e\x9d\xc8\x76\x0b\x93\x14\xc2\xd0\xee\xa4\x29\x9c\x60\xcd\x3b\xea\x0d\x8d\x4c\xb6\x62\x41\xc8\xec\xa9\x72\xef\x4c\x95\x39\xd2\x5c\xfe\xa7\xf9\xc2\xf8\xcf\x54\x2b\x99\x4a\xe6\x5f\xc0\xbf\x8a\xda\x8f\x4f\xa1\x4f\x07\x7e\x30\x89\xe7\x19\x51\x7e\xbd\x49\x8f\x1f\xbb\xe6\x48\xa0\xc8\x11\x41\xe8\xe4\x24\x6d\x4b\x67\x25\x95\x5d\x5a\xd6\x52\xb6\xa0\xa7\x86\x8f\x10\x04\xff\x45\xcf\x3d\x5e\xfa\x31\x57\x19\xde\x2f\x14\x28\xb7\xc9\x90\x6d\x5d\x71\x26\xac\x97\xd9\x37\x86\x89\x5d\x8d\x0a\xdb\x52\x57\x06\xba\x7c\x11\x18\xf4\x5e\xc9\xbe\x3e\xa6\xc2\xb3\x17\x85\xfd\x64\xea\xf9\x41\x3e\x51\x8f\xa4\x17\x65\xdc\xf4\x17\xb5\x2b\x95\x5a\x5f\x0a\x7c\xcc\x07\xf4\x0d\xff\x91\xaa\x63\xa4\xfd\x28\x9d\xe4\x2d\x95\x19\x5c\x57\x03\xc0\xd7\x55\x63\x27\x36\x79\x5b\x91\x76\x1c\xe7\xd7\xe4\x04\xe0\x17\x7c\x3a\xfa\x05\x85\xb1\xcf\x56\xf2\xdd\xbe\x66\xfe\x1e\x9e\x3f\x3e\x74\x4f\x63\x1f\x20\x1c\x0e\x30\xdc\x15\x2a\x1c\x20\x0b\xfa\x2c\x50\xbd\x9a\x40\xe7\x66\xe9\x28\x2d\xf7\xe8\x8c\x87\x58\xa2\xcf\xc9\xc7\xaa\xf9\xca\xb2\x8e\x5e\x14\xca\x5d\x5e\x9a\x26\x11\xf8\x4c\x9c\x3b\x7f\xf5\x55\x76\xc8\x10\x99\x14\x96\xd9\x6d\x64\x22\x3f\xf7\x2b\x9d\xbf\xdb\x52\x82\xe8\xe7\x50\x7e\xe7\x13\x97\x34\x84\x71\xea\x2a\x4a\x58\x34\x97\xf5\x9c\x5d\x33\x1b\xf3\xc8\x24\x7d\x6f\x5c\x65\x0c\x4b\x8b\x0c\xbb\xb4\x16\x28\x11\xba\x0e\xc9\x49\xe8\xeb\x05\xc2\xa8\xe4\x67\x48\x7c\x22\x34\x71\x5b\x0d\x7a\x61\xe4\x10\x6e\xe2\x08\x55\x84\x64\xc6\x5f\xf1\xee\x0e\x4d\x1c\xdb\x04\x38\x97\x72\xbd\x6b\xa6\x1e\x11\x9e\xd6\xf2\x6c\x59\x36\x19\x94\x97\xdf\x56\x93\x72\x9b\x8a\xd2\x12\x83\x96\xd2\x82\xda\x1e\xc9\x1d\x9e\xed\x0c\x2c\x63\x48\x5d\x4b\xdd\xb7\xd7\x2b\x6b\x2b\x61\xf5\x3d\x81\x1d\x2a\x08\x62\xa3\xde\x09\xe9\xc5\x33\xaa\xc8\x8d\x1d\x96\x17\xc9\x27\x2a\x2b\xa5\xbe\x43\x3e\x74\x37\xcd\xea\xb7\x4a\x6a\xfc\x42\x53\x0b\xb3\x98\x64\xe8\x40\x89\x56\x1c\x19\x36\x11\x8b\x7b\x52\xd1\x4e\x45\xe1\x0a\x33\xb5\x3a\x26\x07\xcf\xea\x50\xf3\x9e\xf3\x87\x3a\x66\x30\xc8\x08\x17\x45\x16\xd7\x31\x67\x39\x4d\xd3\x4b\x4d\x93\x56\xa6\xdf\xcf\xac\xb4\x96\xe7\x39\x97\x3b\x32\x55\x7d\xe6\x23\xe5\xbb\x93\x9b\x4e\xd7\x6c\x46\x4d\x7d\xa5\xa8\x76\x57\x09\x0e\xdd\x55\x49\xd7\x9a\xb1\x59\x91\x47\xb1\x61\x6d\x63\xf8\x37\x0c\xb1\xf1\xf1\x86\xbf\x61\x52\xc1\xe5\x98\x4c\xc8\x72\x15\x27\x77\xbd\x1e\xbb\x34\xdb\x89\xa3\xd0\xcb\x7e\x23\x42\xc0\x64\x2b\x1f\x57\x85\xcc\xd2\x6c\xc6\xaf\x85\xc7\xbb\xde\xe5\xdf\x57\x9d\x6a\x1e\xb8\x91\x62\xcb\xf6\x37\xf8\x42\x19\x6c\x46\xcb\x4a\x18\xfc\x94\x26\x97\x3c\xa5\xca\x3d\x7d\x4b\x33\xfd\xd4\xc0\x75\x38\x4a\xcf\xbe\x70\x91\x72\x6f\xa1\x5f\xf1\x95\xb2\x8b\x53\xc5\xfa\x74\x09\x63\x1b\x92\xb9\xfb\x64\xa3\x6f\xc3\xd8\x64\x94\x6d\x80\x09\x1d\xb9\x36\x2c\x12\x53\x20\x2a\x04\xe0\xa3\x1b\x8a\xe8\xfb\x5d\xaf\x55\x62\xc2\x15\x01\x01\x09\x64\xd7\xcf\x0b\xbc\x39\x55\x22\xec\xdf\xd0\x3e\x85\x4c\x56\xe9\x3a\xe0\x1a\xdf\x0f\xfc\xc0\xd2\xfb\x53\xbf\x45\xfa\x96\x38\x51\x4d\xc6\x73\x04\xe8\xa1\xdf\xa8\xa0\x1d\x1e\xc0\xda\x89\x38\x8b\xaf\x7d\x7c\xd4\x44\x27\x3e\x30\xb2\x3b\xb9\x36\xac\xb9\xf5\xcf\xeb\x18\x3f\x8d\x63\x99\x7c\x15\xa9\x9f\x1d\x68\x73\xca\x90\x68\x69\xfd\x79\x94\xc9\xb9\xe1\x68\x34\x4e\x27\x49\x7f\x24\x93\xa2\x58\x7b\xe8\x45\xf1\x71\x0d\x51\x45\xb3\x9e\x51\x11\x25\x36\x33\xd9\x7a\xbb\x5c\x4a\x0e\x00\xe1\x60\xee\x0f\x94\x92\xd1\xb9\xc6\xe4\x74\x9c\xa5\x2d\x0f\x8d\x01\x61\xad\x14\x1c\x1b\xc1\x1d\x26\x1b\xdb\xbc\x68\x53\x1b\xd9\xc1\x4d\x1d\x0b\x16\x42\x5a\xf4\x0b\xea\x4c\x73\xaf\xbe\xda\x09\x33\xf3\x06\x67\x1a\xae\x29\xef\x2a\x8b\x9a\x49\x77\xcd\x8c\x77\xfb\x08\xfc\xae\xc6\x1f\xf3\x50\x35\xec\x04\xcc\x00\x9a\xd0\xcc\x59\xc4\x21\x15\x05\x72\x0c\x55\x68\x10\x7f\x7a\xa5\x33\xb4\x24\x23\xeb\x1c\xa1\x0c\x0d\xaa\x01\xc2\x06\x79\xd5\x79\x20\x1a\x5b\x15\xca\x78\x27\x85\x7a\xa2\x11\x90\x3f\x49\xe2\xb4\x5c\xf3\xb0\x76\x4e\x2c\xc7\xc3\x2d\x4f\x35\x12\xa3\x8f\xcc\x68\x94\x16\xc3\xb6\x07\x28\x1f\xa3\x96\x88\x94\x8a\x5b\x8e\x8f\xe8\x46\x23\x17\x60\xd4\xb7\x26\xe6\xac\x06\x58\x97\x1f\x2a\x1d\xa0\x1f\x2a\xbb\x0f\x42\xa1\xdd\xfe\xed\xdf\x45\xce\x8b\x7a\x03\xa3\x96\x11\x46\x01\xee\x85\x80\xe8\x23\x98\x16\x07\x14\x71\x29\x61\x7b\x43\x49\xb0\x0f\x6d\xbc\x3c\xa3\xd9\x05\xae\xaa\x01\x83\xf3\x6a\xba\x99\xf7\x15\xff\x51\x13\xbb\x7c\x9e\x4e\x32\xe6\x9f\xc5\x4d\x9c\xc0\x47\xf8\xa4\x79\x97\xac\x24\xe9\x5a\x6c\xfb\x03\xbb\xad\x45\xbc\x20\x10\xf4\xbb\x14\xd7\xc1\x1b\x9e\x54\xc8\x53\xdb\xef\x47\x56\x35\x01\xb7\x81\x1c\x1b\xb5\x27\x58\xed\xaf\xad\x18\x22\xd1\x09\x74\xb3\x3a\x4e\xb1\xf5\x8f\x9a\xb0\xea\x59\x94\xaf\xf0\x04\xbc\xc8\x22\xd1\x55\xa3\x37\xf7\x9d\xc0\xb7\x0a\x2e\x4f\x9f\x55\x94\x2f\x23\x93\x44\x6f\x38\xaf\xe4\x44\xf1\x7d\x58\xa0\x92\x78\xd2\x8d\x88\x92\x41\xfe\x97\xa4\xfc\x8f\x3b\x63\x1d\xe5\x96\xf0\x06\xd8\x12\x5f\xe8\xaa\x9e\xc3\xd7\x15\xe8\xe1\xdd\xa9\x87\x54\x21\xff\xc1\x4d\xb6\x36\x9a\x3a\xd2\x93\xbc\x10\x17\x80\xbd\x0f\xea\x74\xd4\x75\xde\x9f\x2a\xea\xb5\xcb\x35\x8c\x73\xb9\x77\x93\x34\x59\x25\xd0\x81\xae\x28\x5c\x56\xe3\xa0\x24\xb0\xef\xa2\xe4\xed\x63\x3a\xc4\x30\x1a\x66\xe9\x38\x4b\x43\x9b\xe7\x69\xc6\xf6\x5d\xb5\x27\x16\x1d\xa3\xd3\x76\x8f\xf0\xea\xab\x9d\x41\x9a\xe0\x87\x01\xf9\xbf\x83\x77\x84\x6c\xe0\x84\x62\x56\xdc\x9c\x3e\xae\x50\x3b\xfb\xf8\x57\x10\x0b\x7c\xae\xd9\x18\x3e\x57\xa1\x6a\x66\xfb\x13\x6a\x3c\xe4\x68\x14\xa2\x2d\xc7\x88\x55\x3e\xa1\xa7\x25\x91\xbb\x6f\xfc\x70\x8d\x15\x57\x75\xbc\x66\xbd\x5e\xe8\xf4\x2c\xe1\x98\x11\x9a\x23\xc1\xdf\xd1\x55\x8a\x62\x3b\x36\xbc\x09\x7e\xd9\x60\x2c\x40\x82\x7b\xba\x5c\x09\xfb\xb7\xbf\x94\xa5\xd9\xd2\xdc\x10\xa0\x42\x5e\x2c\x0a\x73\x9f\x55\x04\x0b\xe8\xf2\x04\x6e\xfa\x8c\xaa\x62\x7e\x65\x12\x81\xb6\xcf\xb1\x92\x9d\x99\x7a\xf1\xbc\x33\x8d\xf6\x6d\x9c\xd9\x65\x11\x3d\x43\xf3\xef\x31\xdc\x8b\x93\xa8\x76\xd3\x86\xed\x1a\xaf\x38\xed\xd6\x41\x64\xd8\xe7\x4a\x7d\xc8\x7f\x44\x13\xf5\xbf\xf8\xf7\x16\x5a\x7e\xa9\xb3\x4a\x15\x9f\x04\x15\x79\x8d\x22\x4b\xe3\xfc\x91\x96\xd0\xa9\xff\x8f\x0f\xa6\x1a\xc9\xa8\x6a\x35\xb7\xb5\x31\xb9\x4d\xb6\x53\x78\x85\x2b\xe5\xef\x32\x78\x10\x50\xa4\x94\xa1\xde\xb0\x26\x36\x09\x46\xed\x58\x5d\x70\xaa\x66\x7a\x3e\x77\xfc\xda\xfd\x28\x07\xfd\x99\xbc\x13\x27\xd7\xea\x6a\x33\xdf\x9c\x2a\x29\xc3\x93\x8e\xa1\xce\xf4\xb9\x2c\x23\xfc\x22\x58\xba\x2c\x25\x18\xa8\xbe\x14\xf7\xef\xf0\x86\x2f\xd4\x1c\xd9\x0b\x98\xb0\x34\x05\x27\x45\xd8\x92\xef\xd2\x15\xf0\x31\x22\x13\xb9\x60\x33\xa6\x36\x82\x68\x32\xb9\x71\xa6\xa5\x59\x87\x0b\x90\x36\xc0\xa8\xcc\x09\x8a\xcc\x8c\x2b\x93\x9e\x53\x0f\xbc\xb8\xa0\x82\x33\x72\xdb\x36\x4b\x76\xa9\x97\xf0\xae\x66\x47\x51\xcf\xfd\x3c\x16\x3b\x23\xe0\xf8\xde\x05\x0a\x24\x6f\xa1\x4f\x74\x25\x20\x0a\x11\xa1\x2d\xd5\x94\x86\xa3\xc4\x03\xfb\x33\x3c\x64\x40\x60\x1f\xeb\x36\x10\x4c\xe7\x63\xbb\xe6\xcc\xb7\x14\xbf\x7c\x00\x58\x7f\xae\x65\x34\x36\x89\xa8\xe5\xd8\xf2\x15\xfa\x13\x8a\x38\xec\x84\x2f\x5b\xa2\x07\x0c\x04\x37\x1e\xfa\xd3\x14\xb3\xcb\x08\xb8\x0f\x13\x77\x20\x66\x17\x66\x4e\x35\x42\x69\x07\x13\xe4\x90\x40\x21\xdc\x44\x0e\xc9\x27\xee\x95\xd0\x96\xcc\xdc\x9d\x20\xcd\x46\xc3\x8a\x8f\x37\x1c\xab\xea\x24\x2c\x8d\xef\xf2\x24\x66\x42\x01\x40\x98\x4e\xa3\xe4\xe5\x80\x09\x4b\xb3\x22\xba\x1d\x54\x70\x24\xd1\x72\x91\xef\x2e\x3f\x86\x58\xf7\x8a\xe2\x49\x7a\xa0\x1c\x1f\x37\x61\x71\x77\xdf\x9f\x6e\x6b\x42\x0b\xea\xff\x6c\x43\x39\xf1\x95\x4e\x94\x98\xbe\xfd\xca\xc4\x14\x10\xa7\x71\x85\x37\x3f\xc4\x78\x41\x21\x25\xef\xb8\x95\x21\x08\x37\xdf\x1b\x65\xae\x25\x5c\x12\x83\x56\xb0\xec\x3e\xa7\xe5\x0a\xf3\xb5\x53\x31\xea\x31\xae\xe3\xa1\x7c\xe3\x4d\xf4\x49\xc3\x68\x40\xea\x29\x4b\xb3\x5e\x89\x55\xcb\xb2\xd6\x95\x1f\x17\x3b\xa3\x34\x2f\x5a\x14\xce\xc3\x9e\x9d\xc0\x68\x3e\x9f\xb8\x76\xfb\xb2\x09\x2d\x4d\x23\xc3\x2b\xef\x02\xe7\x07\x6e\xee\x86\xd6\x7e\x3d\x8f\xe8\x1c\xce\x1f\x02\xd9\x58\x65\x6d\x10\xa0\x49\xb7\x83\x6e\x06\x39\x23\x78\x8d\xb9\xfa\x1f\xf8\x59\xc5\x22\xe5\x52\xfb\xc3\xc0\x67\xee\xef\x26\xe5\x7d\xb7\xfd\x24\xc5\x0e\xc5\x33\x7c\x45\x15\x93\x2e\x2b\x9a\xb1\x62\x38\xc9\x46\x69\xd2\x87\x32\xb7\x63\xeb\xdc\xef\xd9\x3a\xbd\x4b\x8e\x4a\xbb\xde\x9f\x84\xe5\x6e\x77\xc4\x96\x9f\x28\xf1\x43\xfc\x20\xca\xe7\x2c\x3d\x83\x40\xfa\x5d\xb7\x09\xcb\x2c\x2f\x2b\x97\xec\x97\x5f\xf6\x63\xa3\xe5\xa3\x72\x1d\x00\xc7\x18\x7d\x7b\xaa\x26\x55\x4f\x07\xaa\x20\xf1\x38\xed\x24\xa9\x9d\x3a\x6c\x4f\x68\x7a\xb9\x1e\x91\x02\x93\xbc\x80\xa3\x5d\x2c\x97\x86\x43\xcb\x31\x88\xa2\x65\x5a\x74\x6c\x0d\xf5\xe2\xd4\x41\x8a\x9e\xc1\xee\x83\x5c\xfd\x22\xf2\x16\x3c\xdb\x8f\xd5\xc4\xca\xcd\x9a\x89\x7a\x79\xfe\x10\x09\xd0\x64\x7d\x8e\x68\x45\xa4\x80\x6e\x1b\x19\xcd\xd7\x61\x19\x61\xae\xcf\x54\x10\x04\x6f\xd8\xec\x51\x35\x40\xbe\xa5\x40\x47\xf7\x15\xed\xc1\x5d\x82\x1e\x3b\xc6\x3d\x4f\x5c\x72\x89\x4b\xc1\x08\xcb\xae\x06\x4a\xcb\x64\x06\x1c\xd9\x22\x43\xa0\x48\x76\x8e\x06\x8f\x46\x14\x58\xfc\xed\xce\x2b\x7b\x2a\x74\xd9\x4e\xd1\xea\xc9\x0d\x3d\xd3\x4d\x37\x86\x54\xff\x16\x7e\x1d\x21\xd2\xee\x0d\xcf\xba\xde\xfe\x5b\x5d\x6f\x38\x37\xd9\x9d\x20\x92\xbb\xd8\x48\xf0\x95\x16\xa6\x48\x5b\xaa\x22\x0a\x06\x47\x3e\x56\x45\x91\xb1\x59\xb5\x7d\x4a\x10\x85\x8f\xbc\xbc\x36\xa1\x77\xf1\x9c\x6c\x67\x2a\x45\xa9\x74\x90\xb6\xb4\x93\x6c\x29\x7a\x19\x09\x1d\xcc\x60\x90\x99\x55\x53\x6c\x53\x32\xf8\x4c\x01\x4a\x3e\xf3\x71\x86\x59\x5e\x5e\x4f\x22\x87\x96\xc1\x9d\x5e\xd5\xe2\x20\x57\x6b\x10\xda\x32\xc5\x7d\xcd\x9a\x38\x9d\xe4\x32\xc6\xa0\x8d\xbe\x8c\x79\xea\x0b\xcf\x46\x70\x76\xc8\xfd\x51\x79\xe0\xe3\xda\x73\x5c\x7c\xe9\x60\x67\x90\x59\x8b\x76\x3d\x2c\xcd\x55\xa5\x67\x77\x35\x90\xa9\x9a\x71\x96\x0e\x32\x33\x1a\x71\x90\xb4\x85\x31\x0a\x44\x44\xd7\xb0\x6c\x24\xdf\x6d\x28\xdf\xf6\xa3\x7c\xc4\xac\xa1\x0e\xeb\xe2\xa2\xe6\x73\xb5\x7a\xd2\x0b\x44\xb6\x3f\xe3\x31\xce\x2c\x80\x8a\x42\x60\xab\x5b\xe1\xe0\x75\xca\x3a\x17\x15\x41\xd0\x38\x8b\x56\x4d\x61\x1f\xa5\x27\xc6\x84\x26\x98\x0b\x66\xb9\x4e\x7a\x9f\xd8\x03\xf7\xc8\xa0\x09\x77\x6f\xf9\xdd\x8e\x0d\xdf\x8d\x5e\x71\xbf\x03\x86\x19\xc0\x62\x01\xed\xb5\xe6\xe6\x9c\x06\xa8\xef\x1d\x4c\x46\xf9\xba\x7a\x0d\x28\xff\xf1\x71\x8d\x9b\x89\xe6\x3d\xa2\x22\x1c\x4a\xdf\x54\x38\x77\x69\x51\x09\x19\xaf\x37\xcb\x76\x32\x1e\xa6\x59\x64\x28\x13\x10\xe6\x4f\x3f\x41\x7d\xca\x11\x78\x9b\xd1\x28\x4d\xa2\xc9\xa8\xed\xcd\xfb\x7d\xa5\x93\xc7\xc5\x04\x19\x34\x55\x54\xbc\x69\x31\xe3\x57\xc4\x31\xfc\x19\xc6\x23\xa4\xc7\xc7\x67\x6a\xb1\x1c\xd3\x1c\x8d\x65\xc6\xc8\xa2\xcc\x88\x8e\x4f\x05\xbe\x95\x74\xaa\xb6\x46\xe6\xe6\x3b\xa3\x34\xb1\x85\x14\x11\xdd\x60\x44\xb9\xbd\xc5\x1d\x7a\x5f\x63\x47\x26\x27\x60\x81\xc5\x9e\x60\x26\x7e\xac\x12\xa1\xe5\x6f\x30\x1a\xbd\xcc\x24\xe1\xb0\xe5\xeb\xdc\x60\xed\x10\x7d\x1c\xff\x00\xe6\x4d\x42\xe1\x96\xee\x1d\xc0\x46\x1e\xd1\xac\x14\x37\x1a\xa7\xf9\x27\xa3\x5e\x66\xe3\xd8\x28\xc1\x15\x6e\x6a\xf3\x89\x02\xdb\x25\x36\xce\xb9\x59\x2d\xb1\x45\xb9\xa0\x44\x87\x5b\xa9\xb3\xff\x48\x55\xfb\x81\x0a\x29\x58\xcb\x7d\x0b\x95\xe9\xad\x8b\x4a\x99\xd0\xc9\x76\xb6\x3d\xa5\x09\x87\x1d\x88\x21\xae\x2b\x72\xe7\x0f\x15\xad\xa7\x49\x06\x84\xca\x54\xd3\x7d\x77\xf0\x5c\xf9\xa4\x06\x8e\x58\x9a\xed\x8c\xcc\x7a\x0f\xe2\x39\xb0\xf2\x60\x56\xe0\xe3\x87\x8c\x2a\x15\x76\x86\x82\x30\x04\x6b\xa0\xa9\x42\xd5\x86\x2b\x99\x5a\x06\x0f\xee\xed\xad\xc6\x19\xa6\x22\x8b\x46\x2d\xcd\x55\x32\xad\x70\x7a\xd4\x83\xc0\x17\x3b\xeb\x36\x8e\xd3\x35\x38\x0f\x47\x51\xe4\x5a\x25\x67\x14\xf6\x36\xb7\x49\x94\x66\x4f\xf8\xb8\xf9\xcf\x02\xc5\xa4\xc4\xd5\x2e\x61\xc5\xa0\xb7\x85\xa8\xee\x34\x3d\x5e\xe9\x46\x2a\x26\x1a\x06\x33\xb3\x28\x4b\xd0\xfa\xc5\x83\x6e\xdc\xb6\x7c\x53\xc0\xa1\xfd\x0e\x6f\x32\xe1\xee\x29\x1f\x01\x0a\x16\x1f\xc1\xd6\x8a\x7e\x78\xb9\xe9\x91\xc9\x5f\x6d\x9a\xdc\x1f\xa5\x93\x2c\x71\xde\x09\xf5\xe7\x5f\x57\xb5\xe8\x5f\x57\xf5\x85\x3c\x2a\x26\xc6\x75\x65\xf1\x24\xbe\xa3\xf8\xa8\xfe\x01\x35\x19\x45\xa1\x88\xbe\x10\xaf\xeb\x27\xb5\x15\x51\xba\xe7\x61\x9a\xc0\x00\x22\xfe\x05\x3f\x26\x1f\xab\x7e\x79\x68\x26\xb9\x2b\x51\xc9\x0e\x53\x86\x5f\xe5\xc0\xdf\x9b\xfe\x94\xc7\xa8\x26\xab\x51\x96\x26\x23\x9b\x14\x26\xde\xed\x11\x1d\xd3\xa9\x1f\xb5\x3f\x17\xe8\x80\x8a\x90\x04\x15\xfc\x11\x7f\x02\xdd\x5f\x09\xbb\x9e\x50\x57\x96\xe5\x7b\xe8\x5d\xb9\x6f\x70\xca\xd1\x57\xc9\x65\xe0\x5d\x71\x36\x08\x2c\x39\x38\x0b\x78\xcc\x5c\x21\x85\x7f\x84\x2d\x84\x85\xc2\x14\x1a\x32\xa6\xa0\xb4\x99\x27\x49\x14\x46\x63\x13\x3f\x4a\xd1\x96\x74\x68\xcb\xdf\x92\x5c\x43\x11\x42\xb1\x9a\xa7\xd3\xb2\x5e\x52\xea\x0a\x0e\x4b\x87\xa0\x9b\xeb\xb9\x81\x2f\x86\x30\x3b\x19\x9a\x02\x75\x1d\x7a\x62\x92\x67\x14\x2b\xee\x86\x91\x25\x7c\x52\x2b\xf8\xcd\x1f\xea\x24\x29\xa6\x27\xb1\x44\xce\x29\xce\x90\x73\x4d\x54\xc9\xf9\x57\x26\x4c\x5e\xe1\xe6\x31\x01\x02\xe0\xe3\x26\x91\x50\x6a\x1e\x15\x36\x33\x18\x29\x64\xaa\x92\xc0\x43\xb7\xde\x6a\x00\x0a\x77\xc2\x61\xea\x9b\x91\x8e\x07\xcc\x65\x94\x9f\x54\xe2\xbe\x35\x50\x49\xb8\xaa\x9a\x2e\x1a\x9d\xa9\xdd\x47\xf9\xed\x69\x12\xda\x2c\xe1\xf0\x1d\x11\xeb\x5b\x81\x62\x95\x02\x25\x2b\xae\x6f\xcb\x43\xe3\x20\x5c\x3a\x12\x16\x29\x11\xd6\x6a\x79\x91\x2d\x85\xc3\x09\xd3\x24\x31\x04\xe9\xd7\x3c\x70\x37\x03\xa5\x4b\xba\xa9\x8b\x65\x47\x1e\xaa\xde\x93\xd9\x3c\xca\x0b\x27\x51\x27\x9c\xde\xf4\x59\x3e\x51\x93\x38\x99\x49\xf2\x74\x84\x14\x9b\x99\xce\x90\x98\x0b\xed\x99\xdf\x2f\x76\x9f\xdd\xa7\xf8\xb0\x4e\x68\x75\xa2\x13\x0a\xcf\x94\xdb\xc4\x14\x76\xaf\x07\x41\xbe\xab\xc5\xe7\x6f\xa9\x11\x00\x46\xec\x38\x97\xb2\xb0\xb0\xc5\x99\x95\x30\x42\x96\x16\x09\xd1\xdd\x8f\x34\xdf\xdc\x67\xc8\x38\x90\x96\x5c\x0f\xd4\x40\xc7\x0f\xa6\x3a\xb5\xfb\x67\xae\xdf\x3a\xda\xd7\xdb\x67\xa0\xd4\x20\x90\x2e\x25\xde\x73\x55\x81\x53\x4e\x36\x8d\xb9\x16\xc3\x32\xbd\x6e\x7b\xdb\x03\x7e\x19\x98\x6c\xb4\x51\x84\xef\xba\x49\x0f\xd8\x14\xb2\x0a\x44\x46\xc8\xe7\xb9\xc7\x34\xf4\x60\x98\x59\x53\x70\x88\x04\x70\x1f\xd3\x45\xf1\x89\x0a\x11\x08\x34\x42\xda\xc4\x7b\x7d\x49\xe2\x4c\xa0\x86\x67\x30\x8f\x8c\xe7\x72\x4d\xb1\x0d\x71\x15\x1b\x86\x6b\x0f\x05\xdb\x6e\x2f\xf8\x70\xe4\x24\xdd\xa1\xaa\x1f\xcd\x73\xd0\xc2\xec\xa8\xce\x60\x95\x0f\x1f\xc1\xe2\x25\xc5\x47\x4c\x3d\x78\x2e\x9f\x2a\xa6\x60\xd7\xdf\xd7\xc3\x67\x81\x2e\x2c\x79\x2d\xca\x55\xf3\xba\x76\xfb\xdc\x68\x13\x86\x1c\x1f\xd1\x8c\xac\x2d\x23\xa5\xc7\x3c\x8c\xe5\xd1\x0d\xc5\x13\xb7\x05\x07\xe0\xc6\x67\xcb\x98\x44\x78\x53\x14\xd8\xe2\x9f\x4c\xb5\x20\xbc\x1a\xdb\x69\x75\x3d\x5c\xf0\xb2\x2e\xbf\x80\x4f\x02\x7d\xac\x2d\xd5\x32\x5b\xc9\x6c\xf2\x06\x62\x0f\x47\x25\xea\x0b\x45\x97\x74\x39\x76\x9c\x66\x68\xe0\x94\x7f\x2c\xe5\x08\xdf\x0c\x84\x7a\x38\xf7\xc0\x6a\x96\x6f\x6e\xae\x63\xca\x30\xc7\xf6\x67\xfc\x02\xbc\xac\x3d\xc8\x1d\xc5\xb3\x72\x59\x8f\xcb\x1d\xa9\x25\xa2\x2f\xcf\x1f\xea\xa4\xc5\xd0\x66\x6b\x11\xcb\x24\x32\xa9\x70\x50\x61\x18\x7e\xca\xd5\x2d\x7b\xe3\xd4\x26\x86\x2b\x2e\x08\xdf\xc0\x3a\xc4\xc7\x95\x32\x46\x3e\xb4\x8f\xd1\xf7\x60\x35\xde\xd3\x23\xb6\x8f\x75\x95\x6d\xda\x9c\xb6\x7e\x69\xde\xf1\xae\x95\x4b\x53\xfc\x3e\xbd\x44\x41\x1a\xd1\x3d\x22\x5b\x64\x49\x05\x27\x5e\xe4\x16\x01\x8f\x12\xa3\x26\xf0\x54\x77\xfb\x3c\x47\x19\x26\x46\x49\x3f\x5a\x5e\xb6\x99\x80\x0e\xe4\x0d\xf9\x50\xe6\x52\x53\xb6\x1b\x4f\x5e\x9f\x64\x8c\x10\xd2\xbf\x2b\xec\x10\x0d\xfc\xd0\x79\x6c\x64\x92\xc5\x49\xa0\xab\xde\x9c\x17\xd9\x89\x92\x70\x48\x33\xae\x58\x88\x4f\x6c\xf8\xc6\xd6\xd3\xca\xd5\x9f\x6e\x18\xd8\x4c\xc7\xe3\x34\xb7\x68\x05\xc1\x7f\x60\x62\x50\x50\x9f\xbe\x4e\x5c\x97\x84\x44\x2c\x99\xf8\x4a\x87\x88\xff\xb7\x9c\x1e\x82\x17\xff\xb0\x71\x54\x80\xde\xd2\x15\x80\x9d\xd2\xfa\x55\x0d\x72\xdb\x01\x1e\x78\x71\x3b\x2e\x7b\x5e\x0f\x63\xd1\x7d\x82\xe5\xf9\x2c\xf0\x89\x24\xd0\x10\xe8\x1c\x5d\x9c\x0a\xb4\x79\x64\x0b\x13\xc7\x93\x6c\x10\x85\x1c\x1c\xa0\x58\x73\x64\xea\x0b\x37\x47\x1a\x90\x4a\x4b\x9d\xa1\xf5\x80\x3d\x29\xe9\x7b\xc3\x78\x49\x81\x8b\x97\x4d\x36\x8a\x92\x41\xc1\xf9\x9a\x93\xa4\x72\x96\xea\xcf\x35\x42\xf8\x6c\xe0\xfb\xfb\x83\xcc\xda\x95\x87\x32\x9c\x3f\x6c\x66\x74\xd5\x66\x09\xe8\x19\x94\x49\xd9\xef\xb9\xfd\xdd\xa8\x92\x19\xf5\x62\x34\xa0\x1d\x6d\xa0\x0f\x05\xce\xa8\x61\x6b\x60\xab\x80\x88\x7a\x0e\x46\x50\xa6\x16\x9e\x51\x02\x4d\xa3\x28\x21\x14\x60\xcb\xb1\xb7\x01\x1b\x86\x06\xc1\x55\x6c\x2f\x19\xdf\xd6\xfb\x78\x3d\xcd\xda\x0f\x27\x1b\xaa\x70\x12\xf9\x5c\x3b\x1f\xaf\x53\xc5\x98\x29\xc1\xe1\xae\x5d\x38\xed\xc4\x55\x79\x20\x4c\x88\xc3\xb7\xef\xd7\x17\xa8\x91\x17\x25\x83\x49\x54\x46\x95\x68\xe5\xe9\x51\x77\x38\x24\x06\x6d\x3c\x6c\x42\xe7\xc0\x81\x4e\x3e\x36\xf9\x88\xf7\x22\x6b\x5d\x05\x7e\xfd\xfe\x58\x69\x32\x26\x76\x60\x8a\x68\xd5\x62\x58\xc6\xc9\xf2\x96\x0e\x44\xe8\x31\x2a\xa0\x99\xa6\x5a\x41\x66\x43\x1b\x8d\x8b\xbc\xdd\x00\xbd\x62\x05\xf0\x69\x05\xa2\x25\xa5\x9d\xc9\xb8\xaf\x0a\x8f\x2e\xd2\x74\x53\x37\xf7\xa6\x5e\xa4\x26\x1c\x5a\x9b\x45\x29\x07\xb6\xa2\x89\xda\x72\x6c\x5c\x9b\x8d\xe3\x75\x79\x14\xaf\x62\xaa\xe0\x15\x8f\xc6\x5f\x70\x03\xbb\x35\x20\x09\x71\xf9\x17\x94\xc0\xb8\x0d\x25\xb3\x7c\x6a\xae\x6f\xfa\x53\x55\x38\x2e\x35\x99\x0f\xcf\xbe\xb8\x47\xcd\xb7\xde\xc4\x02\x56\x2e\x4b\xf2\x6a\x22\x32\xdc\x02\x53\x1b\xc2\x98\x07\x78\xc8\x8e\x6b\x48\x13\x22\x96\xc6\x51\xb4\xa0\x1b\x48\x56\x32\xa3\x04\xdc\x91\xde\x9f\x55\x2d\xb2\xba\xb0\xc4\x81\x03\x9d\x62\x32\xa2\x76\xa2\x43\x7c\x7e\x4e\x9f\xe0\xe3\x5a\xd2\x52\x3e\x94\x3c\x9f\x8c\xfc\x4c\x02\xda\xcb\x77\x95\xe9\x65\xfd\x0d\xc4\x97\x67\x2b\x1b\xaa\x30\x3d\x6a\xd9\x60\x3d\xdd\x56\x28\xfd\x4b\x6a\x60\xe5\xa8\xe2\x3b\x1b\x73\x13\x66\xb7\x47\x5b\x22\x7c\xc5\xc6\x79\x00\x85\x20\x5c\xee\x29\x74\xbe\x60\x02\x6e\x07\x4a\x30\xf9\x27\x53\xa6\x11\x79\x5e\x95\xd1\xb3\x22\x0a\x27\xb1\xc9\xe2\xf5\xbd\x8a\x7a\xf3\x6e\xe0\x2b\x8f\x6f\x23\x39\x90\x66\xc4\x76\x61\x75\x69\x53\xdc\x53\x26\xbc\x85\xe2\x88\x1b\x63\x75\x14\x5e\x1f\x07\x95\x59\xba\xd2\xe7\x09\x03\xb0\x37\x68\x9a\x78\xca\x14\x85\x09\x57\x76\x79\xac\xdb\x0d\x0d\x0b\xe2\xc0\x07\xdb\xe8\x03\x7a\x22\x88\x4a\xbf\x8b\x2b\x13\x7c\xad\xe3\x9a\x89\x8a\xa1\x9f\x72\x12\x46\x38\xff\xb1\xf3\x8a\x64\x68\xc5\x0c\x0d\xfa\xbe\xc2\x0a\x42\x5f\x29\x4c\x20\x0d\x0a\x16\x3d\x9b\xd9\xe5\x02\xdf\x8d\xce\xed\x6d\x7a\x26\x7c\xac\xa2\xd7\xdc\xac\x46\xc9\x80\x61\x2e\x32\xe3\x07\x63\x81\xe7\x74\x36\x50\xe3\x5e\x98\x35\xad\x28\xfb\xc9\xe4\x81\x2f\x8e\x73\x53\x79\x46\x6d\x95\xd3\x95\x19\x03\x3f\x68\x74\x2c\xd0\x5b\xc8\xdf\x71\x2f\x4b\xd7\x12\x40\xa3\x04\x82\xa4\x26\xae\x2e\x6f\x17\xbd\x3a\x3c\xdb\x59\x58\x78\xbc\x7c\x85\x78\xcc\x5f\x9d\xfa\xde\xe3\x51\x7a\xa8\x48\xb4\xbe\x05\x1f\x01\x07\xf5\x2d\x3d\x62\x77\x2b\x50\x3c\xfc\xff\x6a\xea\xd9\x3b\x3f\x56\xca\x95\xf7\x08\x22\x02\xfb\xc4\xc5\x4e\x2c\xf4\x4d\x8c\xbd\x02\x84\xf7\xbb\xd4\x0c\x13\xdb\x22\x0d\x8e\xe5\xd8\x8c\x7a\xe9\xba\x60\x5d\x18\xa7\xa4\xe6\xf3\x4e\x34\xe9\x64\x2f\xa7\x69\x31\x4c\x63\xc0\x4c\x70\x0f\x00\x8e\xf0\x71\x2d\x0c\x3b\xf4\x52\xa7\x97\x45\xf9\x0a\xad\x16\xd6\x97\x56\x94\xdd\xf7\xfc\x78\x40\x18\x9a\xb5\x5d\x7a\xd0\x87\x95\x7d\x98\x62\x5f\x69\xe1\x9e\xd5\x61\x07\x14\x87\x50\x77\xd9\x74\x21\xd9\x1b\x51\x1c\x02\x24\x29\x3c\x85\xaa\x0d\x77\x6a\xaa\x68\x92\xbe\x5f\xa1\x24\x4d\xa2\x32\x0c\xd0\x4c\x3a\xae\x68\x7c\x5f\x61\xf6\xcf\xb8\x6d\x93\x8f\x2d\xd3\x3f\xba\x2c\xe5\xd1\x0d\xd7\xee\xda\xdf\x41\x4a\x4f\x57\xfa\xe0\xd9\x1a\x73\xea\xc2\x42\x27\x34\xe3\x96\x4a\x52\x2f\x29\x4b\x7f\x49\x05\x0d\x0b\xf3\x07\x67\xfc\xbb\xb9\xac\x34\xf7\xbe\xf2\x45\x66\x2e\x02\x68\x6e\x6f\x57\x29\x1b\x3c\xd9\xf5\xe9\xe3\x30\x2d\x90\x7e\xe2\xe9\xfe\x44\xb7\x90\x7f\xa2\xe4\x1c\x2f\xa8\x69\xe7\x0b\xaa\xde\x61\xc2\xcc\x6a\x4a\x68\xb4\xa2\x54\x05\x7b\xde\xa1\x8a\x1b\xdc\x48\xb9\x68\x58\xeb\x02\xde\x6c\xeb\xa2\x32\x65\xc4\xc6\x8b\xe1\x1b\xd7\x51\x2e\xaf\x4e\x4a\x02\x74\xb7\xb8\xbf\xcf\xe1\x1d\x65\x46\xc7\xbf\x62\x36\xac\xf2\xe2\x9a\x82\x8f\x30\x4b\x93\x15\x37\xd8\xc4\xa4\xcf\x81\xa6\xe8\xf8\xd4\x65\x74\x83\xcc\x8c\xed\x6a\x94\xc0\xf5\x21\x6e\xf8\x2d\x15\x43\xfc\x96\x6b\xe2\x0f\xd3\x49\xd2\xe7\xba\x1e\x6c\xfc\x51\x1d\xfa\x1d\x0d\xaa\x11\x23\xb6\x02\x3f\xaa\xc0\x87\x99\xf5\x84\xb6\x0c\xce\x6c\xb6\x6a\xb3\x5c\x29\x06\x32\x4f\x82\x00\x11\x7d\xd0\x93\x9b\x78\xd5\xf4\xd3\x0c\xde\x1d\x17\x79\x4a\x91\x3c\x35\xa9\x22\x2e\x76\xf2\xc9\x68\xc4\xb4\x14\x8e\x61\xe3\x42\xa0\x99\x64\x54\x97\x68\x71\xf6\x60\x5b\x0d\x57\x9f\x54\x0a\xd8\x0c\x70\x00\x9a\x69\x4b\x2d\xdc\xd0\x16\xad\xd6\x2f\xff\x3c\x57\xf0\x99\xe3\x9c\x4f\x02\xcf\x67\x59\xa4\x49\x84\x2b\x07\x44\xf0\x94\x92\xb1\x3d\xe5\x68\x7d\xfb\xa9\xcd\xa9\x03\x0f\x57\x73\x8c\x98\x5a\xa4\xed\xa2\x12\x73\x04\x0b\x0e\xf2\xe7\x58\x57\x8e\x2b\x17\x7d\xf2\x99\xae\x82\x86\x73\xf9\x4e\x24\x95\xb6\x6f\xd4\xbf\xdb\x59\xb3\x76\xa5\x5d\x26\xe3\xc8\x51\xcf\x28\xb1\xb6\x7b\xaa\xc1\xde\x48\xef\x34\xb0\xd9\xc8\x24\x12\xf3\xf2\xd4\x35\x56\x38\xb7\x14\x20\xb4\x78\xb2\x91\x5e\x3a\xb6\x83\xa8\xcc\x97\x19\x2c\x27\x24\x1b\xe5\x6f\x0a\x77\x87\xcf\x97\x87\xe9\xc8\x3e\x5e\x2e\x30\xf8\xb6\xe3\xec\x3a\xd1\xb1\xdc\xdd\x55\x42\x1c\x7f\x00\x2b\x88\x70\xe5\x8c\x46\xe8\x9c\xd6\x94\x6e\xff\x42\xa3\xa9\x01\xdc\xa4\x4f\xfc\xf1\xd3\xa5\x99\xdb\x9a\xe9\xaa\x2c\x65\x46\x65\xe7\xbf\x8b\xfb\x93\x05\xa1\xbc\x71\x61\xb2\xc2\xf6\x1f\xf5\x25\xc6\x16\x71\xbb\x03\x61\x79\x5f\x57\xc5\xce\xe9\xca\xdc\xc7\xe4\x9a\x61\x7f\x7f\x0c\xff\x86\xb7\x05\x29\x2e\x34\xcc\x58\x08\x83\x3f\x0e\x53\x21\xec\x18\x0d\xdb\x2b\x4c\x47\xb6\xcf\x5c\x0f\x08\x73\xae\xa8\x90\xe7\x4a\x23\x71\x78\x9c\xae\x71\xed\x1b\x4f\xeb\x96\x16\x5a\xff\x78\xea\x5b\x0e\x8d\xd3\x12\xfd\x28\x1f\x7b\xe8\xa5\x1e\x2f\x70\xe3\xa0\x9e\xe7\xbb\xd1\x24\xf4\x6d\x9e\xdb\x0c\xe5\x53\x37\x8c\xee\x81\x64\x97\x6b\x17\xbd\x7f\xa1\x63\x92\x41\x8c\xa1\x0e\x24\xf1\xdf\xd3\xf8\xcc\xef\xd5\x0a\x34\x2f\x74\x42\x9b\xd0\xe4\xbe\x6b\x4f\x60\xbd\xf1\xb1\xf3\x7e\x61\x9a\xac\x5a\x4e\x82\x17\x19\x01\x72\x4a\x61\x72\x30\x3f\x27\x29\x6c\xc3\xe3\x48\x27\xc5\x20\x75\xfd\x30\x21\x25\x6e\x39\x96\xb0\xdb\xaa\xad\xa8\x29\xeb\xb3\x28\x4c\x77\x7b\x55\xcd\x8f\x29\x26\x67\xa5\xbb\x8a\xf4\x2a\x5b\x77\x81\x5e\x97\x21\x99\x13\xc4\x73\x40\x86\x8f\x55\xa1\x16\x32\x09\x6d\x2f\xbc\x7b\x2b\x50\xec\x0c\x97\x01\x6b\x43\x09\x52\x93\x2e\x99\x78\xb9\xfc\x1f\xd9\x76\xcd\x9f\x24\x88\x95\x86\x32\xb8\xcd\x72\x53\xbc\xd1\xf6\xc0\x8c\x5b\xca\xf3\x1e\x99\x6a\xf6\xad\xa7\xdc\xf3\x1e\x8d\xe3\x75\xf7\xbc\x60\x72\x30\xd1\x83\x4d\x72\x56\x8d\x51\x5c\x51\x5d\xee\x71\x3c\x49\x06\xb6\xbf\x9b\xae\x1e\x0f\xe3\x43\xda\x4f\x78\xb4\x90\x9c\x71\x6a\xa5\x8e\xa6\xef\x2c\xb2\x7b\xc4\xa7\xff\x32\x50\x74\x90\xe7\x1b\x1d\xec\x5a\x66\xf3\x22\xb6\x8c\x25\x57\x1c\xe7\x9e\xcb\xdc\x3b\xfd\x81\xc9\xfa\x36\xd9\x5b\xde\xa7\x13\xc3\xf5\xd1\xf0\x39\xe8\x27\xb8\x9a\xce\x81\x03\x6e\xf4\x11\x02\x0c\xfc\x2f\x1a\x31\x7f\x5b\xa1\x6c\x3e\x9b\x6e\x53\xb7\x29\xaf\x1d\x16\xed\x11\xcc\x2b\xc8\xbf\x94\xaf\x8c\xe9\xfd\x6b\x73\x92\x65\x02\x6c\x38\xfd\x45\x7b\x85\x67\x22\xf8\xc4\x61\x21\xa3\x64\x85\x6b\x28\x08\x6c\x31\xc3\xc2\xc7\xcd\x94\xec\x59\xfa\x9a\x0d\x0b\x99\x00\x42\xf1\xe3\xa2\xaa\xae\x5d\xac\x5d\x0d\x06\x80\x38\x45\x43\x01\x40\xa3\xde\xee\x07\x4f\x57\x9b\x6d\x6e\xa1\xe8\x51\x2e\x41\x18\xf9\x71\x8c\xf7\xdd\x7e\xee\xdb\x3c\xcc\xa2\x1e\x38\xeb\x10\x6c\xf3\x5c\x28\x9f\xa8\x60\xc0\x66\x21\x3b\x34\xa9\x70\xb7\x1c\x27\xd2\xe9\xaa\xaa\xa4\xc2\x99\x7c\x79\xae\xb2\x45\x74\xd9\x43\x31\xca\x2f\x47\xf1\x28\xa7\x9d\x01\x93\x70\x5b\xc5\x79\xe7\x28\xee\x64\xcd\xdc\x5a\x23\x77\xff\x42\x67\x14\x8d\x2b\x7a\xb4\x8c\xaa\xe7\x93\x5a\x27\xf7\xd0\x4b\x9d\x34\xb1\x8a\xf0\xf1\xf6\xd4\xbf\xed\x9b\x34\xd2\x0d\xc3\xf6\xf5\xed\x59\xde\xdc\x7c\x67\xff\xc2\x33\x54\xd2\x45\xa8\x77\x36\xf0\x39\xf7\xaf\x3d\xa5\xf4\x43\x3f\x84\x57\x43\x3e\xcf\xbc\x67\xa8\x26\x3c\xb6\xa1\xca\xcb\x7f\xa8\xb0\x30\x37\xd9\x72\x09\xdd\x04\x21\x70\xf9\x67\xa8\x0f\x88\x65\xfe\xf5\x40\x11\x25\xdc\x0a\x3c\x39\xcc\xaf\xa1\x43\x00\x53\x70\x9c\xf6\x3a\xf6\x34\xac\x0c\x4c\x07\x4f\xd5\xc0\xb9\xdf\xc4\x60\x01\x33\x70\x29\xa6\xdb\xaf\xab\x21\xfc\x9e\x29\x8a\xd8\xee\xf6\xef\xf0\x3a\xd9\x54\x61\xea\x52\xa6\xf2\xba\x92\x22\x3e\x16\x28\xfd\xce\x4b\x81\x6a\x5c\xd5\xe3\xa5\xc3\xb3\x0b\x9d\x91\x35\x03\x9b\x01\x2f\x83\xb7\x7e\x8c\xd6\x2b\xba\xcd\x3b\xba\x5e\x34\x07\xa4\xa2\xb0\x49\x7f\x5f\x99\xf1\x49\x62\xf3\x30\x85\x58\xaf\x9b\xd4\x2a\x5f\x0e\x82\x9f\x07\x75\x21\x47\xfe\x87\x29\x74\x1e\x5d\xdb\x7a\x98\x45\x79\x91\x8e\x87\x36\x03\xa5\x00\x90\x64\xed\xae\x4f\x9a\x81\xd8\x81\xd5\xba\xad\x6c\x6e\xbe\x12\xc5\x31\x66\xcb\x45\x07\xe6\xfa\x54\x15\xf9\x77\x74\x5b\x2f\x0b\xbf\x71\x3d\x71\x86\x6a\x43\xb6\xd2\xda\xb6\x0c\x16\x9c\xf8\xf5\xa6\xaa\x9a\x2c\x47\x83\x49\x66\x89\x2a\x53\xf8\x2c\xa1\x5e\x80\xa4\xe9\x6d\x5a\x18\x7c\x4c\x4f\x8c\xff\x46\x37\xc1\x18\x6c\xc1\x27\x6a\x7e\x38\x8c\x4d\xce\xa4\x25\xae\x24\x43\x59\xb7\x4c\x89\xb5\x16\xbc\x4c\x82\xaa\x43\xdf\x52\x36\xf0\x56\x53\x58\xd2\x8b\x27\x5c\x7e\xc0\x62\xbe\xa9\xec\xf7\x4d\x87\x1c\x98\x24\xa1\xcd\x4a\x73\x56\xac\xb7\x15\xbd\xf0\x45\x95\x9b\xdf\x0e\xd4\xf4\xcd\x09\xed\x96\x7b\x26\xe9\xa7\x09\xe0\xef\x78\xec\xf7\xe1\xc2\xf9\xa4\xd6\xf8\x73\x8a\xb7\x69\xcc\x49\x11\x9c\xd3\x0d\x3d\x00\x76\x43\x21\xd2\x97\xd3\x49\xf6\x38\xdd\x35\x8b\x8a\xd3\x72\x70\x32\xd0\xfb\x17\x5c\xbf\x16\x6f\xd2\x49\x8f\xbb\x0e\x19\x0b\xa8\x89\xfe\x0f\xed\x5b\x04\x80\xac\x5c\xce\x44\xcd\xd8\x44\xc2\x52\xa0\xa2\x9c\xb7\xa7\x5e\xf9\xf3\x84\x4e\x9c\xd4\x80\x5f\x34\x48\xd2\xcc\x8c\x26\x5c\x14\x17\xda\xe9\x8a\xc7\x55\x40\xf8\x35\x34\x17\x5a\xdb\x08\x79\x67\x1d\x09\xaf\x84\x24\x36\x59\x8d\x72\xa1\x9a\x7a\x85\x97\x26\x63\x10\x50\x95\xe1\x01\x34\x69\xb5\xd5\x1b\x8f\xf3\x7a\x26\xa9\xb5\x6d\x0c\x49\x1a\x5b\xdf\xd4\xc3\xff\x59\x3a\xb6\x59\x11\x59\x4c\x55\xb9\xf7\x5a\x6e\x76\xce\x67\x88\x4f\x04\xfe\xe7\xb2\x4a\x1c\x10\x94\xa1\x78\xb0\xb7\xab\xb8\x95\xef\x4c\x2b\x4d\x8d\x86\x11\xff\xb1\x35\xc9\xa4\xc8\x11\xb8\x4b\xeb\xbf\x7c\xee\xc2\x52\xaa\x6e\xf9\xae\x03\x5a\x2c\xa7\xfd\xbe\x70\x59\xca\x1c\x65\xcb\x89\x45\x5e\x50\x3d\xb3\x3e\xa9\xba\xf8\x38\xe7\xa4\x0a\x7d\x4f\x56\x20\x3b\xfb\x56\x65\x6a\x10\x5e\x90\xc1\xba\x7c\xd2\x30\x16\x77\xb0\x33\x9e\x64\x03\xe9\x51\xc0\x95\xdf\xc2\xab\xe7\x13\x57\xcc\x18\x99\xd7\xa3\xd1\x64\x44\x06\x5e\xba\xcb\xde\x0f\x83\x36\x0c\x45\xcf\x0b\x18\x0a\x01\xe6\xfd\xc3\xa9\x27\xea\xaf\x30\x39\x5e\x6a\x24\x75\x8b\xc2\x15\xeb\x7a\x26\x22\x7f\xaf\xf8\x5f\x4f\x37\x11\x44\x90\x04\x73\x68\xf2\xa2\xed\x71\x06\x17\x29\xb9\x17\xac\x44\xcb\x4d\xb9\xdf\x51\xe8\xe1\xd8\x9a\xc1\x84\x8a\x28\x7a\xa8\x7d\x6e\xde\x0d\xb5\x3f\xad\xa0\x13\xfd\x08\x89\xb6\x56\x73\x28\xaf\x4b\xd4\x1c\x1a\x72\x18\xd3\x7f\xcd\x84\x02\x68\x71\x30\x6d\xa5\x35\xfd\xd3\x1e\xc7\xfb\xfa\xd8\x66\x11\x50\x7c\x31\x77\xcc\x05\xca\x52\xde\x94\x60\x5c\xea\x2a\xa9\x8b\x2f\x1d\xdc\xa5\x6a\x91\x53\x35\x91\xf5\x3e\x47\x0a\xa8\x89\xfc\x26\x9e\x3e\x7e\x1b\x1c\x5a\xe8\xee\xec\xe8\xfa\xc1\xad\x24\x5d\xb5\x71\xdb\xc7\x01\xa8\x60\xa0\xe3\xc7\xf8\x3e\x19\x1a\xf1\x0f\xa7\xfc\xd0\xa8\x67\xb9\xc0\x24\xdc\xa7\x2d\xcf\x83\xaa\xc3\x04\x62\xd5\xdb\xab\x58\x61\x6e\x92\x29\x64\xb6\x66\x64\xe9\xae\x56\x73\x78\x96\xeb\x04\xd0\x5d\x40\xe8\x75\x5f\x4f\x46\x7e\x55\xe9\xac\xdc\xc2\x46\x97\x95\x52\x6e\x74\x84\x3c\x57\x54\xe7\xf7\x41\x85\x46\xaf\x59\x16\x7b\x39\xca\x72\xb8\x1f\x47\x28\xbd\x34\x2b\xc7\xaa\xef\x99\x0f\xd3\xb5\x2c\x4d\x47\xaa\xfc\x72\x43\x95\x5f\x6e\x34\x68\x02\x33\x91\x94\x0b\xc0\x51\x96\xbf\xae\x10\xf6\x47\x55\xe0\x5e\x57\x44\x58\x7c\xe9\x60\x27\x27\xf5\xe3\x96\xea\x0a\x55\xb9\x18\x1c\x77\x46\x14\xa6\xb6\xdf\xd6\x14\x98\x40\xf7\x92\x61\x3b\xfd\x54\x57\x05\xd9\x7b\x2b\x52\x20\x61\x6a\xda\x8a\xb3\x03\x97\x27\xa5\x35\x7a\x7e\xac\x0a\xe0\x12\x84\x6c\x92\xe7\x4a\xff\x10\x81\x23\x33\x72\xf1\x49\x53\x9a\xdf\x4b\xb3\xcc\xdf\x0c\x0a\x32\xe7\x95\x22\xfd\x79\x45\xe2\x63\x96\x97\xa3\x4c\xb1\x8c\x4b\x8b\x85\x7e\x43\x9a\x2f\x15\x3a\x95\x61\x44\xe0\x0b\x01\x9b\xd3\xed\x0a\x0c\xbd\x5c\x1d\x58\x11\xef\x90\x89\xe2\xe3\x1a\x4b\xaf\xb8\xfd\xa2\xbc\xcc\x6d\xc4\xf5\x27\x11\x5d\xf0\x49\x2d\x90\x99\x3f\xd4\x79\x6d\x32\xea\xa1\xbe\x22\x63\x53\x2d\x47\xb7\x7a\xdc\xd3\xb2\xae\x59\x2b\xa8\x17\xa9\xdc\xa8\x2a\x8e\x5e\x71\x93\x5e\x11\xc5\x51\xce\x14\x09\xce\xdb\xb8\xd9\xcf\xc7\xba\x1e\x90\xf5\xb6\x6e\xe8\xb5\x14\x91\x4d\x98\x26\x7d\x69\x82\xbb\x50\xcd\xcd\x88\x5f\x50\x0d\xf3\x74\xd5\x66\x63\x13\xa1\xf5\x21\x4d\x37\xfa\x9c\xb0\xad\x96\x9f\xc3\x1e\xbd\x57\xeb\xeb\x97\x1e\x5c\x24\xb0\x79\x19\x22\xed\x40\x65\x02\xdb\xfc\xd6\x54\x29\xd2\xbc\xd7\x98\x11\x67\x96\x59\x2b\x79\x75\xe1\x42\xae\x05\x6a\x00\xe1\x5a\xa5\x5b\x3c\x09\xed\xe3\x14\xd9\xe1\x5b\x3f\x43\x55\x90\x65\xed\x35\xa8\xfe\x5d\xa5\xe4\xf5\x3e\x21\xa3\x9d\x4a\x77\xf9\x9a\xb1\xe5\xa1\x6a\x81\xc2\xd5\x7b\x08\x07\xf8\x7b\xb1\xf6\xd0\x73\xc3\xd4\x31\x42\xe9\x99\x0d\x6a\x2e\x03\x2f\xfe\x56\x05\xba\xdd\x50\x39\x5c\x4b\xb3\x15\xae\x8c\x34\xb6\x60\x7c\x96\xbc\x6a\x56\xda\xba\x6e\x85\x62\x38\x2c\xe1\x67\x81\xaa\xc7\x5e\x77\x0d\xaf\x30\x72\x45\x45\x84\x20\x57\x15\x08\x84\x99\x73\xf1\x43\x4f\x74\x9f\x55\xd0\x97\xb5\x24\x27\x8e\x88\xb6\x1e\x92\xc3\xcd\x23\x94\xbb\x89\x36\x39\x02\xca\x0f\x15\xac\x6f\x2d\xcd\x8a\xe1\x23\x7e\x96\x13\x99\x98\x43\x93\x96\x1f\x02\xf0\xec\x26\xbe\x8e\x4f\xe8\xf1\x69\xa1\x63\x84\xad\xb7\xa7\x0a\x11\x7f\xb3\x49\x89\x6c\x98\x82\x67\x91\xfe\x0e\xcf\xff\x9c\x52\x6f\x39\xe7\x22\xd2\x70\x68\x47\x65\x3c\x09\xa6\x02\x2c\xf6\x3f\x54\x0b\xff\x0f\x55\x8e\x46\x85\x92\xb0\x40\xec\x5a\xe1\x46\x42\x43\xf3\x3a\xfd\x02\x1e\xf6\x8e\xae\x3c\xec\xd7\x6c\x9e\xcb\xd0\x24\xc2\xf1\xbf\xc0\xea\xe6\x13\x57\x87\x31\x61\x68\x63\x9b\x11\x13\xd6\xe1\x59\x5e\x4e\xbf\x8f\x8a\x0a\x9f\xa8\x71\xea\xe1\x48\xc4\x61\xf1\x7c\x6e\x28\x7f\xc6\xa3\x4b\x82\x56\x68\x28\x27\xf6\x26\xeb\xee\xf1\x20\xc0\xbd\xae\x50\x64\xd7\xd5\xf2\xfa\x7b\x4b\x07\x67\x34\x75\x3b\x27\xe4\x28\x77\x3e\x45\x21\x1e\x2e\x60\x4b\x73\x34\x3e\xba\x21\x76\xcc\xbe\x4e\xed\x74\x8f\xdc\x7e\xae\xeb\x91\x89\x3b\xa9\xfb\x89\x62\xfe\xe7\xaa\x54\x53\x47\x0e\x92\x0f\xce\xd3\x28\x6e\x55\x60\x0b\x2d\x25\x31\xec\x01\xe1\xa5\xff\x1d\x89\xee\xa1\x64\xe1\x4c\x7f\xcd\x27\xaa\x0b\x32\x49\xa2\xe2\x31\x5a\x75\x82\x38\xf1\x6b\xf3\x3c\xac\x04\x96\xe3\x7b\x64\x18\xf8\x18\x51\x89\x90\x88\xaa\xe0\xec\x22\x9c\x21\x06\xfa\x8f\x62\x43\xf0\x17\xc3\xca\x60\x0d\x5f\x55\x83\xdf\xb7\x1a\xac\xe4\x2b\x80\x6c\x0c\x25\xf0\x45\xf8\x00\xb5\x54\x3e\x6e\x8a\x2f\xd3\xe5\xe5\x28\x8c\x78\x9c\x50\x58\x1f\x35\x3e\xb0\x46\xee\x36\xdf\x49\xec\xeb\x88\x6c\x44\xdd\xb1\xbc\x4d\x51\x7d\x74\x54\xf6\xe8\xc4\xb4\x55\xa4\xf4\x58\x57\xf5\xa2\x6f\x29\x13\xf2\xf9\xf4\x31\xf7\x74\x7f\x76\x8f\x1a\xf7\xfd\x55\x45\xb6\xf4\x1b\x53\xb5\x8f\xbe\x1e\x54\xe8\xfd\x54\xe1\x62\xd7\xc6\xf6\x3e\x1a\xfa\xbc\x8f\x74\x95\x4e\xe1\x07\xb5\x38\x62\x69\xf6\xff\x63\xec\xcd\x82\x24\xb9\xb2\xec\xb0\xaa\xc8\xcc\x2a\x54\x01\x68\xac\xdd\x1c\x8d\x4c\xb2\x18\x6a\x68\x98\x0f\x10\x66\x12\x3f\x68\x1a\x7d\x44\x4c\x56\x4e\xa3\x51\xc6\x4e\x24\xb3\x6a\xaa\x34\xd0\x0f\x5e\x78\xbc\x8c\x70\xa4\x87\x7b\xc0\x97\xcc\x4a\x18\xbf\xb4\x98\x0d\xf5\x21\x13\x25\x9a\x28\x52\x34\xd9\x48\x43\x1b\x51\x1c\x8e\xc4\x9e\xad\x35\xec\x61\x47\x36\xd8\xdd\x33\xbd\xa0\x1b\x7b\x63\x2d\xd4\xbe\x57\xd6\xbe\xa3\xb2\x64\x7e\xcf\xbd\xef\x5d\x4f\xf7\x12\xf5\xe7\x5e\x95\x11\xe1\xfe\x96\xfb\xee\x72\xee\x39\xed\xbe\x1d\x47\xc9\x5a\x15\x6c\x75\x4e\x81\xad\xce\x29\xfb\x14\x44\x21\xfb\xe4\x4e\xa8\xc8\x35\xdf\xfe\x57\x27\x9a\xa8\x9c\x53\x5b\x4e\x4e\xd6\xaa\xb0\x1e\xd2\x1b\x09\xab\x4a\x43\xa1\x64\x08\x9d\x0b\x5f\x30\x63\xc9\x3c\xbe\x51\x89\x02\xb3\x6a\xd6\x1e\x57\x8c\x1b\x37\x74\xbf\xce\x3d\xca\xd0\xf0\x11\x43\x1e\x31\x1e\x74\x67\x57\x55\x53\x26\x8a\x80\x69\x1d\x56\x04\xcb\xf0\x5f\xab\x43\x69\x47\xd7\xfb\x3c\x4c\xca\x81\x8f\x4f\xad\xab\xbc\xe3\x79\xd8\x5b\x44\x4b\xff\x84\x86\x90\xf0\x25\x77\x9f\x59\x7f\x46\x85\x43\x71\x79\x1e\xb3\x59\x11\x93\xf5\x03\xd5\x03\xf9\x03\x55\xc4\x0f\x6c\x9c\x25\x15\xd9\x06\xc0\x49\x24\xbb\xb4\x75\x43\x2c\xce\xee\x6b\x67\x45\xba\x12\xae\xc8\x84\xe2\x69\xfe\x05\x3d\x0d\x5f\xbb\x2c\xd0\xc8\xc4\xc5\x92\x09\xf2\x22\xb5\xd3\x9e\x54\x0a\x9a\x65\x9b\xd4\xcf\xbf\x79\x59\xc3\xbb\xaa\x3e\xe2\x8a\xcd\x9e\xa9\x14\xb5\xe9\x2f\xe1\xdd\x1e\xa5\x74\x2a\x36\xe0\xbf\xea\x94\x4b\xd3\x31\xb6\x1e\x98\xe5\xb4\x31\xd2\x8f\xa8\x97\x6d\xa7\x72\x25\xb6\xf9\x67\x98\x6c\x40\x51\x1e\x5b\xd7\x2a\xb0\xbf\x07\xdf\x02\x3e\xda\x4e\xec\x2b\x24\xfb\xbe\x07\x0b\x84\x13\xe6\x49\x3a\x04\xf1\xcd\x3b\xd7\x95\x34\xed\x65\xd5\xb2\x73\x03\x49\x21\x29\x17\xaa\x5e\x79\x90\xdd\x63\x8f\x3e\x8d\x09\x46\x64\x7c\xc4\x15\x8d\x6c\x9a\x26\xb1\x4d\x0a\x68\xd9\xbb\xb8\xcd\x11\x12\x9d\x75\xed\xb3\x81\xc9\x0a\x13\xe5\x6b\xd3\x3a\x96\x00\xe7\x1c\xb3\x6b\x2b\x46\xa6\x73\xda\xed\x3c\xde\xf1\x78\xda\x7c\x6d\x1c\x06\x65\x7c\x3b\xc3\xd0\xc5\xc5\x4a\xa7\xe2\xfc\x26\x5c\x28\x21\x23\x2d\x5f\x1f\x5e\xe6\x9b\xcd\xf4\x59\xbd\x34\x81\x74\x9e\xc3\xfe\x5f\xac\xf4\x8c\xfa\xa4\x6f\x60\xc6\x61\x6e\x66\xb4\x16\xc5\xa4\xa5\xfa\xe0\xb5\xde\xc5\x43\x9b\xe2\x1f\x77\xb0\x8e\x68\x24\x95\x2c\xd7\x95\x5d\xbe\xb1\x74\xea\x39\xaa\xbe\xbe\x4d\xa2\x64\xe0\x09\x4b\x35\xf1\xb2\x4e\x37\x4b\x37\x5e\x83\x61\x33\x41\x50\xa4\xc4\x29\x72\x60\x56\xf0\xd4\x13\xef\x4f\xa2\xbd\x06\x36\x6e\x43\xc7\x09\xd6\x64\x60\x6d\x5d\x9c\xdd\xe7\x1a\x55\xa8\x22\x21\x2d\xda\x0d\x5d\xc1\x51\x12\x5b\xce\x6d\xba\x01\xf0\x83\xd1\xf1\xb4\x2d\xdc\x8e\x31\xd3\x3a\x30\xbb\x79\x79\xa2\x7a\x2a\xcf\xa9\xda\xe6\xd3\x5d\xff\xe1\xcd\x49\xeb\xa5\x72\x37\xfa\x7e\xc7\x7e\x98\xe5\x45\xda\xa3\x2d\x2b\x24\x69\x0f\x61\xa7\x06\x6c\x93\xaf\x1b\xf8\x2e\x4d\xd8\xb7\x9c\x65\x44\xbc\xfa\xe9\x44\x01\x38\xae\xa9\x21\xaa\x33\xa1\x10\x9b\x4e\x91\x3a\x89\x3c\xec\xde\x33\x48\x12\xf0\x8d\xf2\x90\x46\x26\xda\x8d\x3d\xe0\x18\x7a\x17\x45\xd3\x87\x9b\x35\x60\x17\x4e\x6a\xc1\xbb\x4d\x9d\x22\x3e\xd1\xf1\x8d\x44\xbf\xa0\xe1\xc2\x09\x7b\x19\x71\x15\x82\x94\x7b\x13\x25\x22\x04\xde\x18\x1a\xd3\xe7\xfe\x7a\xb7\x81\xb1\xd5\x2b\x98\x4a\x7f\x11\x3d\x3e\xdf\x34\xf9\xcc\xbd\x22\xf5\x4e\xa1\x08\x55\xf9\x58\xe2\x7c\x43\xd7\x44\x19\xa5\x88\x4f\x80\x35\xc4\x80\x63\x41\x7d\x29\xfe\x4e\x5f\x98\xee\xd9\xd8\x2e\x85\x2e\xa5\xc7\xaa\x48\x08\x3b\x44\x22\xa9\xc1\xb5\xc9\x93\x62\x2b\x09\x00\x28\x92\xf8\xba\xbb\x35\x4c\xdf\xff\x72\x7b\xa9\x88\xfb\xc6\xa5\xd0\xca\x41\x46\xfc\x85\x4e\x3a\xbe\x6e\x68\x5c\x5c\x68\x0f\x6d\x9a\xd9\x68\x09\x5b\xda\x89\x81\x2f\x2c\x2e\xc8\x8d\xaa\x40\x12\x7b\xde\x4e\x95\x20\xe6\x8e\x76\xa1\x59\xa1\x8f\xa1\x34\x85\x95\x27\xc8\x2f\x14\xa7\xf9\x7f\xb0\x67\x5c\xc6\xdf\x91\x48\x7e\x5f\xc5\xde\xfd\x30\x33\xbd\xc8\xf6\x5b\x5e\x92\xf1\x98\x4e\xfb\xd7\x29\x58\xe6\xf6\xb7\xb3\x38\x1c\xb3\x49\x84\xbb\xc4\xa8\x79\xbe\x51\xd6\xb8\x6f\x47\x49\x90\x9a\x3c\xdb\x49\xaf\x0d\xdb\x7d\x4c\x61\xf7\x50\xbe\xc1\x8e\xba\xa4\x3d\x0c\x6e\x07\x93\xea\xae\x6a\xbe\xbd\xa3\x94\x78\xea\x7a\xd5\x73\xfb\xdb\xc3\x22\xed\x73\xd5\x1c\xa8\xd5\x33\xde\xc3\x78\xe3\x8c\x92\x78\xcd\xad\x21\x37\x95\x49\xe6\xb1\x1f\x85\x71\xfe\x71\x95\x1b\x4f\x41\xf2\xc1\xcc\x2b\x1d\x5f\xa1\xd5\x2c\x06\x89\xe9\x3f\x82\x6d\x2b\x1c\xf3\xe5\x6b\x22\x3c\x80\xc6\x38\xb9\xc0\xfb\x9f\x04\x00\x00\x8b\xf8\xb4\x36\x41\x13\x25\x45\xfc\xe5\x16\x52\xa7\x03\xb3\x9c\x21\xbd\x56\x7b\xe5\x83\x73\xfb\xdb\x4b\x51\x28\xc7\x05\x13\x0b\x61\xc5\x08\xcb\x90\x9f\x12\x1b\xe7\x49\x91\x9a\x01\xb4\xc6\x5d\x41\x6d\xd1\xa7\x5e\x1e\xf3\xa1\x6c\xb0\xfc\x08\x7d\xa7\x48\x63\x2b\x86\x08\xc6\x3e\x48\x69\xbe\x7c\x40\xf8\x70\x4f\x75\x7d\xdd\xea\x33\x85\x08\x79\x17\x4f\xe4\x98\x20\x5d\xce\x77\xc7\x7a\x43\x52\xcb\x66\x19\xb3\xfd\xb9\xcc\x87\x03\x31\xd7\x33\xaa\x07\x89\xa3\x26\x74\x02\x45\x08\x4e\x8e\x2a\x16\x8c\xa3\x93\xaf\xba\x21\x08\xe3\xbe\x1d\xdb\xb8\x6f\xe3\xc0\x82\x82\xcc\xd1\xcc\x3b\xf2\xa0\x8b\x2a\xfc\xf8\x89\xa6\xd7\x6b\x02\x2c\x8d\xc2\xa8\x6f\x99\xe1\x00\x69\x71\x9c\x51\x7c\x5d\xc1\x60\x0e\x62\xd3\x52\x1b\x6c\x8b\x19\x7d\xb6\x56\x76\x0c\x25\x26\x90\x62\xb6\xb7\x56\xba\x5b\x75\xc9\xf4\xd2\x30\x98\xa6\x2f\xe3\x26\x00\xfa\x4b\x69\x08\xf0\x1d\x75\xdf\x45\x34\xc4\x37\x2a\x03\x90\x0f\x8b\x51\x8f\x16\x3a\x83\x53\xd4\xde\x3c\xaf\xea\x14\xaf\x17\x65\xe4\x96\x32\xa4\x9d\x1b\x75\x51\xbe\x17\x06\xe2\xd2\xad\x72\xd4\xc4\xe5\x23\x3d\xac\x9d\xf7\xd7\x85\xeb\x66\xaa\x74\xaa\x98\x75\x81\xc6\x0e\x6e\xf0\x83\x8e\x22\x4d\xb9\xad\x48\x49\x02\x33\x36\xbd\x30\x0a\x73\xf0\x1e\x38\x6d\xd6\xc5\x59\x27\x19\xdb\x44\xd3\xd9\x0f\xb3\x31\xf1\x51\xb7\x54\xea\x19\x7c\xb9\x7c\xad\x78\x6d\x7a\x09\x0b\xa4\xf8\x14\xf6\x35\xe5\x7b\x5c\xab\x30\x01\x8d\xd2\x17\xbe\x4a\xf3\x84\x90\xea\xda\xa4\x75\x50\x60\x1f\x1f\x63\x70\x70\xd2\xef\x5c\xf7\xc5\x84\x0f\x15\xfc\xe7\x33\x78\xec\xb0\xa1\x3b\xba\x4a\x53\xfc\x0e\x39\x9c\x48\x03\x9d\xee\x78\x0d\xd0\xc7\x61\x48\xe0\xbd\x03\xec\x86\xe0\xf7\x0a\x44\x75\x91\x71\xf8\x2e\xa0\x18\xa8\xa8\xdc\x86\x55\x45\xca\x61\xe7\x7a\x19\x7a\x30\xd6\x8a\xc2\xc1\x4d\x66\x85\x83\xdf\x78\x57\xb5\x7f\x6e\xa8\x7c\xf9\x97\xe4\x54\xbb\xf0\x65\x6e\xbf\x88\x6e\xac\xfb\xb5\x14\x85\x71\xdf\xd0\x9c\xba\x96\x07\xa5\x16\x54\xbe\x83\x48\x24\xf9\xb2\xcd\xb0\x18\x0c\xad\xe0\x54\x11\xa5\x7e\xa0\x13\x21\xec\x01\x73\x0b\xba\x96\x1f\x4e\x93\xa5\x30\x7f\xaa\x1c\x4b\x7c\x2b\x0b\x6f\x71\xee\x87\x16\x05\xfc\x75\x86\x40\x70\xb1\xaa\xa3\xd2\x66\x37\x3a\x2a\x4b\xf9\x05\x62\x39\x54\xa6\xa7\xba\x64\x02\x1d\xb5\x8c\x97\x41\x3f\x43\x2f\xa2\xdb\x18\x31\xad\x33\x5d\x6f\xb7\x8e\x40\xf1\x0a\x28\xe8\x6b\x70\xbf\xf0\x23\xd7\x34\x41\xcc\x7d\x9c\xe9\x98\x70\xd0\x67\xc0\x99\x38\x54\x33\x37\x0b\x2f\xef\x6b\xc7\x66\x84\x03\x0e\xaf\x08\xbc\x0c\x5f\xab\x4c\xd4\x6b\x45\xbc\x0c\x9f\x55\x11\xd6\x09\xf8\xe5\xc7\x13\x6f\xed\xea\xa5\x45\xf0\x3f\x24\xa3\x5e\x68\xb0\xfe\x45\xd1\xd2\x23\x67\x2f\xb8\xc2\x4c\x94\x04\xcb\x43\x6b\xfb\x8a\x27\xe2\xaf\x30\x59\x7c\xe3\x85\xde\x54\x25\x46\x4e\x3d\xe5\x78\xd7\x62\xb0\xe7\xdb\x83\x24\xc9\x6c\xcf\xa6\xe9\xda\x94\xd2\x08\x38\x81\x91\xc4\x01\x42\x69\xbb\xcd\xbb\xaa\x9c\x1d\x98\xb1\x8d\xa6\x15\x87\xc6\x05\x2e\x53\xba\x22\xb1\xaf\x45\xff\xee\x44\xd5\xa2\x7f\xb7\xf3\xac\xef\x39\x88\x72\x9b\xc6\xd4\x74\xb8\x83\xd6\x93\x68\xf2\xd5\xc4\xfa\x24\xb6\x50\x71\x06\x72\xd0\x4e\x64\xa7\x7c\x5f\x69\xeb\xf3\x8f\xb9\x62\xd3\x7e\x38\x43\xdf\x0d\x0b\x77\x95\xbe\x1b\x0e\xfd\x47\xd8\xc5\x92\x17\xf6\xe0\x14\x44\xad\x52\x20\xf6\x29\x10\x68\x79\xd2\x1c\x70\x83\x17\x9e\x4e\xba\xbd\xb6\x2e\xa4\xe7\x9e\x6b\xaf\x5a\x51\x61\x87\x6b\x06\xf6\x0c\xbe\x56\x48\x96\x2c\x19\xd9\xbe\x59\xe3\xbd\x89\xff\x47\x5b\x2d\x4c\x09\xb3\xff\x03\x21\xf5\x57\xae\xad\xc6\x44\xe1\xb2\x9d\xa1\x69\xd3\x93\x0d\x33\xff\x08\xf9\xda\x80\xec\x9d\xa3\x9d\x84\xbf\xb9\x4f\xa6\x82\x22\x94\x99\x7f\xbf\xeb\x0f\xc4\xbe\x4d\xb3\xdc\xc4\x4e\xee\xc8\x0d\x86\xe7\x39\x6b\xe0\x17\x36\x84\x57\x66\xd7\xc8\x71\xd8\xea\x72\x83\x44\x11\x66\x6c\xd2\xbc\x74\xed\xa7\xdc\x7b\x3d\xf5\xa4\x92\x3c\x7d\x1c\x01\x85\xe0\x98\xbe\xa2\xe3\xe0\x94\x19\xf6\xb1\xcd\x3f\xa7\x67\x12\x74\x6f\xf9\x66\xb0\x17\xb9\xeb\x7f\xb2\xaf\x17\xe1\x8a\x89\x6c\x9c\xcf\xb8\x42\x6c\xf6\x54\x57\xd1\xd0\xbf\xa3\x92\xc6\xdb\xe9\xc8\x80\xd1\x67\x7d\x13\x09\x81\x94\x10\x56\xb8\x62\xd3\x2c\x5c\xd2\xe7\xe1\x6d\x75\x1e\xd6\x29\x5e\xa4\xea\xf8\x7a\x61\x96\x11\xfb\xb3\x30\x02\xfd\x34\x36\xee\x06\x6c\xa4\x80\xab\x65\x1b\xc7\x84\xb4\x55\x0a\x6d\xc8\x17\xe0\x08\x65\xcf\x50\x1a\x1d\x3d\x16\x62\x29\x49\xf2\x9e\x89\xa2\xe9\x72\x48\x00\x19\xbe\x09\x23\xe8\x78\x28\x5c\x85\xfa\x36\x7e\x18\x87\xcc\x65\xf7\xc3\x6b\x26\x5e\xb6\x10\xa2\x91\x42\xa2\xe2\x33\xf9\x2b\xa5\xae\x73\x52\x01\x3f\xc3\x7e\xf6\x98\x96\x65\xf7\x7d\x29\x7f\x0d\x3c\x75\x38\x5c\x1f\x20\xb8\x46\x52\x69\x06\x0d\x1a\xb4\x0e\xfe\xee\xaf\x75\xd5\x30\x9c\x9d\x68\xb2\x32\x6c\x09\x3c\xe7\x8f\x95\x10\xd8\x66\xd5\xf1\xa9\xb1\x09\x0a\x86\xd7\x47\x7d\x59\x48\x31\xa5\x4b\x34\xbd\x43\xcb\x88\xaf\xd5\xdf\x05\x51\xd1\xcb\x88\x96\xc0\xf1\x5a\x2d\xce\xf2\x22\xfd\x84\x96\x9b\x0c\x4d\x63\x46\xcb\x92\x2e\x1e\x48\x08\x25\xa1\xe2\x1b\xba\xae\x9c\xd3\x13\x66\x46\x61\x14\x9a\xb4\xa5\x22\x16\x64\xe4\x44\x68\x40\xb2\xf9\x79\x12\x0f\x9e\x0b\xa3\x8a\x66\xcc\x5f\x68\x3e\xdb\xbf\x50\x58\x8e\xd7\x88\x21\x28\x62\x8d\x50\xf8\x89\x57\x3b\xba\x69\x46\x15\x05\xbe\x3f\xf9\x9a\x57\x21\xb4\x2b\x49\x54\xe4\x61\x12\x1b\x2e\xb0\x09\x6c\xad\x7c\x6b\xbe\x6e\x2a\x91\x97\xbe\xf1\x32\xf2\x63\x12\x51\x91\x71\x95\x94\xa8\x07\xcf\x5c\x56\x6d\x41\x6b\x49\x91\x3e\x4e\x5e\x99\xe6\x49\xe1\x25\xd9\x71\x11\xdd\xfb\xdb\xd6\x75\x73\x88\xb7\x64\xd7\xc8\x9a\xc3\xfc\x4e\xad\x57\xd9\x50\x0f\xcc\xba\x74\x22\xbd\x2c\x8a\x38\x5f\xc0\x3f\x93\x9a\x81\x57\x12\x67\x20\x34\x16\xed\xbf\x99\x28\xc6\xaa\x9f\xd5\x8c\xde\xaf\xb5\x7f\xe5\x1b\xbf\xbd\xf0\x8d\xdf\x9c\x9f\xa1\xf1\x17\x49\xa8\xf2\xcb\x9c\x44\xb9\xcb\xc2\x5c\x51\x9c\xb1\x47\xe9\xd9\x31\x0e\x3f\xab\x41\xe5\x88\xa5\x2a\x0d\x4c\x94\x14\xf1\x80\xc3\x7f\xc0\xac\x3e\xc1\x44\xf3\x4d\x03\x07\xdc\x7c\xbb\x57\x64\x61\xb4\x36\xa5\xcc\x91\xe6\x16\x42\xf2\x49\x3a\xc5\x9e\x72\x15\xa2\xb4\x08\xf2\x22\xe5\xe2\x13\x0e\xfe\x33\x34\xee\x7c\x5d\x9b\xea\x3d\x73\xe5\x54\xf7\xe0\x1b\x61\xa6\x8f\x77\x54\x20\x7d\x5c\xc5\xeb\xa6\x38\x84\x15\x01\x0b\x46\x90\x98\x4d\x90\x62\x49\x0a\x5e\x51\x5c\x0e\x13\x1b\x87\x87\x28\x6d\x29\xa9\x2c\x75\xf4\x9f\x57\x79\xe0\xd4\xe6\x26\x8c\x1e\xa1\x75\xe3\xb6\x8c\x83\x0c\x1f\xa9\x6c\x1f\x9a\x7a\xa7\xf8\xe5\xcb\x4a\x3f\x53\x65\xa5\x9f\x4d\x7c\x7b\xc4\x11\x5a\x38\xfc\x01\x15\x92\x85\x71\x9c\xac\x10\x41\xa3\x12\x9e\x82\xd7\x21\x38\x27\x2f\x50\x96\xa5\x2f\x4c\x79\xbd\xe5\x7f\x09\x0b\x8c\xe0\xe4\x02\x9e\x48\x38\x24\x6a\x8d\xc5\xaf\xb4\x9f\xff\x2a\xfd\x84\x64\x6f\xe8\x99\x61\x86\x8e\xd0\x72\x15\xfa\x6d\x5a\xa1\x8c\x99\x57\x38\xd4\x1f\x93\x6b\x8b\xac\xc4\xb6\x75\x55\x14\xd9\xb1\x5e\xc6\x4b\xf0\x7f\xbf\xa3\x1a\x07\x8f\xa2\x58\xe2\x38\xd5\x54\x15\x92\x26\x0f\x6e\xdb\x91\x8e\x4a\x65\x5e\xea\x90\x2f\x2d\x02\x57\xde\x38\xfe\xd1\x44\x81\xc7\xae\x74\x3c\x8c\xfc\x2f\x09\xa9\xe3\x18\x88\xcb\x43\x00\x11\x76\x6b\x1d\x19\x35\x11\xce\xf2\x3d\xde\xc1\x93\xb5\x94\xe2\xde\xbd\xed\x25\x6b\x72\xa7\x02\xbb\x49\x36\x62\xf3\x72\xcd\x0c\x1f\x98\x5d\x68\x9b\xf1\x38\x4d\x5c\xed\x09\xfd\x63\x28\x70\xf0\xb5\x66\x94\x48\xa2\x24\x0e\x4d\x04\x47\x1c\xe3\x72\x56\x75\x83\x56\x05\x9e\xac\x19\x3d\xe1\xdb\x7a\x6e\x23\x21\xcf\xdd\xeb\x34\x18\xb0\x41\x27\x30\xb0\x02\xd5\xc3\x7b\xc2\x81\x3b\x03\x70\xa5\x34\x44\xd1\x84\x0b\xa3\x57\x95\x68\xe2\x25\xe9\xe8\xd8\xb1\x5e\xce\x2b\xb6\x36\xeb\x37\x88\x9c\x8e\x2a\x5b\xdc\xee\x68\xbd\x89\xe3\x4a\xee\xe9\x77\x30\x81\xc2\x89\xe5\x83\xc2\x71\x02\x18\xbb\x27\xf4\xfc\x1f\xe8\x67\x5d\x2b\xb2\xa7\xaa\xdd\xf0\x74\xe7\x26\x8c\x7b\xc9\xea\x94\xca\x50\x9d\xc0\x72\x11\x1b\xd3\x72\x5a\x2b\xff\x58\x9f\x77\x91\x19\x0c\xa8\x9f\x7a\x2b\xab\xbc\xf0\xaf\xd0\x98\x21\x62\xfc\xd8\x49\x13\x0c\x92\x31\x95\x18\x84\x49\x4e\xe7\x27\x5b\x4e\x18\xf3\x88\x06\x4d\xb7\x1c\x9c\x23\x1c\x8d\x23\x16\x20\x92\x9e\x97\x72\x92\x24\xaf\xf6\x30\xba\x9a\xcc\x8c\x0a\xcb\x2b\x42\xa8\x0f\x34\x27\x42\x13\xc4\x69\x64\x4d\xbc\x3a\x0c\x23\x50\x4a\xb1\xb4\x6e\xa7\xa5\x64\x76\xb7\x40\x3f\xf7\xee\xdd\xd7\xde\x33\x47\xde\x16\x5c\x9f\x77\x74\xd8\x75\x5e\x31\x1c\x1e\x57\x51\xe7\x92\x49\xed\x94\xea\x9e\xb8\x53\x51\x7d\xa1\x11\x84\x83\xe2\xcb\x5d\xb9\x8d\xe3\x30\x83\x84\x97\x03\xfe\x3a\x27\x74\x77\x97\x3e\xa4\x11\xc1\x02\xeb\xaa\xe0\xcd\xf2\xd4\xb4\x94\xcd\x3b\x36\x51\xd6\xf0\x58\x25\x59\x63\xa3\x84\x32\xde\x2c\xef\x52\x91\x7a\xa9\xab\x52\x11\xd7\xbc\x42\xa7\x5d\xc7\x9a\xc0\xca\x3d\x83\x25\x88\x3e\xe0\x23\x2a\x2c\x28\xc3\x89\x6c\x57\xcb\x69\xd0\x1d\x2b\xd7\xed\xe6\x19\x15\xe1\xfd\xf3\x8e\x12\xc9\xfc\x62\xe2\xfb\xef\xa6\xba\x94\x34\x10\x64\x7c\xf9\xcb\x40\x19\xb3\x58\x33\x7e\xf9\xea\x44\xa1\x12\x7f\xae\x48\xff\x86\x45\x2a\xca\xc7\xae\x2b\xc0\x71\x60\x9f\x04\xae\xa5\xe2\x2f\xb0\xe0\x28\xf6\x14\x77\xab\x21\xa4\xfa\xb8\xda\x57\x55\xda\x55\xfc\xd5\x03\xd5\x54\xcb\x6d\xa5\x53\x4a\x68\x18\x2e\x06\x8b\x50\x74\x7c\x19\xf4\xae\xe7\x7e\x0f\xb3\xe5\x6c\xda\xa3\xcc\x41\x62\x2e\x11\x08\xd9\x60\x78\x25\x7f\x88\xd7\xa4\xa7\xdf\xf5\x54\xd7\xc3\xa7\xa2\x24\xb5\xf1\x1b\x98\x48\x61\xfb\x52\x42\x5c\xbe\x3e\x64\x0f\xe5\x36\xce\x04\xd2\x89\x79\xde\x50\x70\xdb\x8d\xc9\x57\x7d\x30\x37\xb6\x41\xb8\x84\x12\xf2\xf4\x56\xa1\xdc\x79\x57\x15\x69\x39\x39\xd5\x0d\xcd\xd7\x7c\x4c\x95\x47\xc7\x26\x0f\x6d\x9c\x67\xbb\xbd\x78\xee\x97\x6c\xff\xb0\x20\xce\xa9\x1e\x92\x8b\x48\x11\xea\xe2\xab\x68\x32\x79\x01\x1a\xee\x58\xc3\x01\xf1\x89\xa2\x10\xdb\x80\x37\x8b\x9b\x63\xe4\xe9\xc9\xd1\xab\xa4\x8b\xed\x38\x27\x08\xf5\x2e\x7a\x2d\xa0\x6c\xb8\x20\x88\x49\x3b\xa9\x8a\xbe\x0c\xab\x85\x61\xf8\x87\x13\xaf\x72\x07\x9e\x1f\xbc\xee\xf6\x6e\xf9\x53\x5c\xbb\x26\xb3\xec\xd0\x2e\xe5\xfc\x09\x67\x57\x93\xa6\x75\xcf\x04\xcb\x64\x34\x99\x6f\x99\x7e\x01\x8b\xfc\x0c\x4d\x0d\x83\x0f\x15\xe8\xf8\x8a\x8a\x76\x73\x93\xc6\x21\x08\x4d\xb7\xf6\xfd\xf1\x8d\x5a\x9f\x2b\x36\xee\x27\x0c\xc1\x17\x6d\x53\x2d\x7a\xda\x04\x29\x5d\x4a\x52\x4b\x70\xff\x29\xaf\x1c\x74\x43\x2d\x64\x56\xa5\x17\x59\xb6\x67\xdd\xaa\xb4\xa3\xf1\xd0\x64\x2c\x7d\x55\x0e\x21\xec\xcf\x61\x25\x03\x7a\x58\x11\xdf\xae\x26\x49\x04\xcc\x00\x36\xf5\x3f\x57\x98\xbf\x4b\x58\x14\x9a\x89\x0d\x47\xcf\x2d\x1a\x21\xbe\x6e\x4a\x7a\x04\xa4\x71\xd0\x52\xa2\x38\x58\xef\x7c\x3d\xa9\x64\x55\x06\xa9\xe9\x17\x84\x12\xd4\x9d\x87\xae\xde\x75\xc3\x41\xb6\x06\xa9\x89\x1d\xd0\x13\xcb\x13\x8c\xb7\x58\x19\x97\x75\x3f\xdf\x25\xf7\x29\xca\xb7\xa7\x92\xd7\x15\x14\x8f\x6a\x5b\x67\x8c\x6d\xbd\x21\xa2\x67\xa3\xd0\x92\x9c\xc0\xdc\x7e\x9e\x82\x2b\x95\x42\x7b\x39\x89\xd2\x84\xd4\x50\x74\x8f\x4d\x9a\x26\xab\x9c\xfb\x51\x0d\xb4\xfb\x5c\xf0\xad\xaa\x77\x69\xff\x31\x3a\x3b\x10\x54\x31\x8e\x0a\xee\xe1\x0c\xf1\xd4\x8b\x15\x27\x2b\x27\x5a\x09\xad\xaf\x1f\xe4\x4c\xc6\x09\x98\x66\x46\x7b\xd0\x64\xb9\x04\x7c\xf9\xfb\x4a\x57\x53\xaa\xf4\xcf\x76\x35\xd4\xe5\x92\x5a\x21\x4f\x69\xc4\xce\x0d\xf5\x98\x3d\xdb\x7f\xd4\xa7\xdd\x9e\x5d\xf7\xf9\xe4\x7f\xf2\x37\x68\x33\xe2\x64\x81\xa3\x87\xad\xf5\xe8\xba\x6a\x7f\x9c\x5e\x57\xf8\xb0\xaa\x7c\x9c\xc2\x7d\xed\x56\x92\x7a\xdc\x41\x4d\x86\xe0\xd7\xff\x06\x52\x54\x94\x8a\xba\xfc\xcc\xfa\x93\x2e\xfa\x4f\x83\xe1\xc8\xa4\xcb\x2d\xef\xd1\xfd\x3f\xf8\x72\xbe\xe9\x3c\xab\x50\xaf\xa3\xa5\x24\x85\x4e\x10\x8d\xa5\x43\xd2\xa9\x0e\x16\xd7\x11\x94\xa4\x76\x85\x95\x54\x1c\x68\xd2\x09\xb0\xfc\x4c\x53\x3f\xfd\xb9\x4a\xac\x0e\x4d\x3a\xca\xa0\xa3\x02\x47\xea\xb6\xe2\x90\xbe\xed\x69\x88\xc2\xd8\xc4\x41\xb8\x45\x7f\x8c\xb5\x4f\x45\xaf\xc6\xfb\xa2\x99\x0d\x8a\x14\xed\xa7\x58\xc6\xcc\xcc\x8d\x8c\xd5\xcd\x89\xcf\x5e\xa1\xf9\x90\xff\x08\x48\x3b\xb1\xa4\xda\xac\x7a\x05\xd2\x22\x4e\x96\x20\xa7\x8a\x94\x02\xf4\xd4\xf8\xba\x51\xc2\xd1\x1e\x0a\x86\x26\x1e\xc0\x2f\xc1\x39\xf6\x43\x2c\x41\x54\x59\xce\xa8\x86\xa4\x8d\x26\x06\xe9\x71\x98\xb7\x54\x39\xe0\x5d\xf5\xf7\xef\xd6\xaa\xfe\xf3\xf3\x5c\x65\xa1\x9c\x9f\x70\xb1\xa9\x1a\xda\x25\x45\xfd\x58\x57\xc8\x03\xdb\xc5\x28\xcc\x73\x2b\xe5\xcc\x8a\x00\x39\xdf\x28\xc2\x9f\x5e\x9a\x54\x15\x88\x99\x5f\x8c\x6f\x2a\x11\xcf\x60\x98\x4d\x7b\x88\xfd\xc6\xa4\xca\xe7\xad\x4d\xb6\xe7\x20\xbd\xd0\xa0\xfe\x31\x5f\x3a\xe3\x36\x0d\x93\x02\xed\xdf\x9c\x21\xa1\xaf\x10\x59\x84\x72\x21\x4a\xd6\xa8\x56\x99\x59\x5c\x68\xe7\x43\x93\xef\x28\xcf\x32\x54\x63\x78\x4a\xe0\xc9\x31\x31\x16\x36\xdf\xcf\x27\x1e\x3b\x37\x45\x30\x3c\x78\xc8\xa7\x3b\xfe\xc0\xbf\x5f\xd3\x09\x2c\x43\xf0\x22\x0e\x86\x51\x92\x82\x36\xb2\xa5\x51\xf7\xb4\x68\x04\x81\xdf\x40\x05\x33\x2a\xb2\x28\x1c\x89\x29\x16\x2f\x9e\xc6\x55\xf8\xf0\x54\xa5\xfb\x3b\x0f\xcd\x18\xa7\x76\xc4\xbc\x25\x8c\x4a\xc6\xc7\x04\xa2\xac\x7c\xa0\x30\x5f\x32\x51\xc4\x5b\x11\xa7\xcf\x76\xea\x3c\xe6\x6b\xa7\xbd\x35\x0c\xb3\x3c\x49\xe1\x77\x29\x22\xf4\x13\xaa\xb5\xef\x84\x72\x66\x8a\x18\x9b\xb1\x8f\x22\x34\x66\xe4\xa4\x46\x37\x01\x7f\xee\xc8\xd9\xca\x99\x87\x01\xf9\xbc\x01\x9e\xb3\xaf\x9d\x0d\xc3\xf1\x58\x86\x13\xdb\x69\x13\x96\x8f\x6f\x6a\xe3\xf9\xea\xab\xed\x25\x13\x53\xb0\x53\x6e\x41\xa1\x9e\xf7\x98\xdf\xcb\x2a\xac\x38\xa5\xf4\x80\x6d\x90\xc4\x09\x09\x92\x93\x29\x61\x85\x30\x7a\x51\xfe\x12\xfc\x30\x1c\xb1\x6d\x5d\x85\x4e\xfd\x52\x27\x6b\x70\xf6\x4a\x67\xab\xd7\x16\x08\x4c\xdc\x0f\xfb\x26\x40\x25\x40\x28\xad\x5a\x8e\x1e\xff\xe1\x41\xa5\x3d\x34\xb6\x01\x4a\x12\x88\x65\x4f\xd0\x11\x2b\x2c\xb7\x1e\xc1\xb9\xa3\xab\x88\x6d\x3f\x55\x3d\xc7\x97\x26\xcf\xaa\x44\xd8\x52\x91\xf6\xbc\x97\xc6\x92\x4a\x9d\x8a\xbe\x92\x3f\xda\x8a\xa5\xa5\x9d\x3e\xef\xb3\x4d\xf1\xea\xbc\x8b\x25\x0a\x43\x73\x63\xa2\xfa\xa1\x2e\x10\x62\x96\x8f\x59\x4e\xc5\xe3\xc9\x71\x02\x4a\x73\x93\xe2\xa7\x36\x39\x61\x17\x5a\x4e\xe4\xf7\x1d\x04\x0d\x6e\xa5\x94\x6e\x1d\xe6\xe4\x66\xc7\x53\x2f\x37\x92\x3d\x64\x26\xca\x5b\xda\x89\xf7\xe8\xb1\x8b\x93\x67\x1c\x92\x31\xee\xdb\x37\x56\x92\xc2\xa9\x8b\x4b\x83\x81\xa6\x7a\x6b\x30\xb8\xa6\xc8\x87\x4c\xbb\xe4\x3a\xf0\x5e\xf2\x1d\x78\x5f\xdd\x9a\x9c\x9b\x2f\x83\xfc\x1d\x5e\xbf\x80\x60\xef\xfb\x36\x2f\x93\x6b\xed\x98\x96\x7c\x6b\xcc\x5b\x1d\xd0\x4e\x76\xfc\xe1\xfa\x96\xb2\xc0\xf9\xd0\xc6\x4f\x2a\x48\xf0\x7f\xdf\xf1\x94\x12\x47\xe1\x05\x61\x12\x6f\x29\xca\x70\x56\x27\x12\x9f\x97\x7e\x0d\x0e\xe1\x54\x57\x01\x87\x2f\x6a\x1a\xd1\xcf\x31\xa3\x4e\x3c\xd4\xf5\xf6\x7f\x1b\xc0\x63\x21\xa2\x24\xf7\x8c\xbf\x8c\x40\xfc\xb8\xfe\x82\x46\x1d\x01\xc9\x23\xeb\xe5\xbb\xc2\xe7\x40\x0b\x33\xc2\x9c\xeb\x0a\xce\x35\x4c\xc6\x76\x46\x21\x35\xa6\x54\xb5\xfe\x7d\x5a\x35\x22\x29\xaa\x2a\xd8\x6f\x77\x34\xdb\x88\xef\x58\x5e\xb5\x59\x66\x23\x39\xa9\x2a\xfa\x93\x7c\xd3\x70\x94\x2e\xb4\xb3\x71\x18\x45\x14\xb8\x22\x09\x75\x54\x25\xa4\x8e\x3a\x44\x74\x6a\x97\x92\x74\xc4\x91\x3c\x9c\x1c\x50\x03\xf3\xf5\xfa\x93\x9a\x22\xb2\x18\x0c\x73\x12\xc4\x43\xe1\xed\x01\x82\x07\x4c\xcb\xa6\xea\x18\xbd\xac\xba\x96\x99\x35\x54\x50\x62\x0a\x5f\x71\x84\x5f\xd8\x25\xc7\x5d\x2f\xcd\xef\x37\x50\xeb\xee\x6b\xa7\xd6\xf3\xc9\x48\xb8\x7b\x73\xa2\xc8\x77\x6e\xba\xec\xdc\x4a\x18\xe4\xe1\x88\x61\x35\x58\x02\x8c\xcb\xe0\x9b\x4a\xaa\x26\x5e\xce\x9e\xa6\xbc\x03\x40\xbe\x28\x69\x0a\x5c\xba\x3c\x2a\x11\x65\xde\x23\xeb\x24\x6e\xb9\x16\x47\x3f\xac\x89\xf4\xa7\x95\xfe\xdf\xe3\x5d\x95\x4f\xdd\xb6\xee\xbd\xef\xab\xe0\x3b\xa9\x90\x2e\xa9\x21\xda\xe7\xf4\xae\xe9\xf5\x1c\x55\xee\x1e\xe9\x58\xfd\x1e\xce\x21\xde\x11\x88\xcd\x85\x66\x86\x26\x45\x44\xc0\x55\x1d\x14\x0e\x72\x15\x97\x9d\x2c\x23\x23\x26\x38\x69\x05\x85\x3a\x33\x69\xfd\xd6\x37\xf8\x3d\x3e\x51\xfd\xde\xdb\x1a\xb2\xd2\x8b\xed\xd7\x0b\x03\xa4\x94\x0b\xf0\x40\x80\xca\xd7\x35\xaa\x9f\xb9\xfd\xed\x7c\x6d\x6c\x95\xc2\x2c\xa4\x9b\x04\x4c\xd6\xa0\xb5\x9b\x15\x63\x06\x6c\xc3\xa9\x47\xe6\x0e\x4e\x3d\x5f\x3b\xb8\x48\x2f\x4a\x82\x65\x4a\xb3\xba\xee\x92\xfb\x93\x0a\x5c\x51\xc9\x51\xee\x50\x1d\x83\x19\x53\x8e\x47\x38\xda\x30\xa5\x3f\xa5\xdf\xe0\xeb\xa6\xfe\xdf\xa1\x35\x29\x7c\xfc\x72\xee\x30\x66\x5c\x1c\xe1\x9b\x86\x0c\xc0\x8b\xed\xa1\x19\x8f\xbd\x16\xbb\x4b\x5f\x96\x53\x2e\x18\xc6\xad\x1f\x9b\xdb\xdf\x0e\xe3\xac\x3c\x43\xc1\x84\x28\x89\x83\x8b\xb4\xbd\xf9\xba\xe6\x8b\xef\xd9\xd3\x36\xa1\x96\x0d\xb8\x85\xf5\x23\x2c\x1c\x1e\xa2\xfa\xd3\x89\x17\x4c\xdb\xde\x7d\xc2\x77\xc4\x45\x45\xbf\x01\xfe\x39\xe7\xc6\xf3\x59\x05\x13\xc8\x82\x22\x23\xce\x0c\xa4\xb7\xa4\x2d\x51\x35\xea\x7e\xbb\xe3\x10\x18\xff\xcd\x71\xd5\x58\x7a\xdc\x9d\x69\x61\x14\x15\xc4\x5b\xee\xe6\xdb\x15\x15\x7c\xfb\xfe\x09\xd5\x9e\x33\x2a\xd2\xbe\x15\x51\x6b\xec\x4b\x36\x93\x7c\xa3\xca\xae\xe3\x61\x18\xcd\xb4\xf6\xec\x71\xcb\x0d\x9f\x82\x21\x46\x4f\x05\xd3\x90\xa8\x34\x08\x5b\x6b\xe9\x3c\xf2\x2e\x68\xb2\x62\xd3\x3c\x1c\xd9\x8a\xa3\x8c\x69\x14\xaf\xf9\x69\x85\x73\x09\x42\x13\x85\x59\x4e\xe0\x58\x64\x92\xb8\x17\x99\x6f\x14\x33\x4d\x19\x3d\x46\xd1\xda\x4e\x0f\xf3\xdd\x41\xd6\x19\x5d\x51\x57\xe1\x56\x88\xe6\x57\x39\x8a\x22\x9f\x59\x6e\x7b\xfc\x11\xd3\x1d\xc0\x9c\xdd\xa2\x83\x1a\x89\xe4\x33\x6e\xb3\x8c\x53\x4b\x3c\x9c\x53\x0a\x81\x0c\xab\xed\x60\xc6\x07\x66\xd9\x37\x7a\xa0\x46\x71\x90\x44\x4b\x00\xb7\x0a\x3f\xb7\xfa\x10\xa7\x37\x70\x9a\x7d\xa9\x36\xe9\xe1\x26\xfa\x54\x13\x0f\x22\x09\xdb\x50\xb4\x3e\xaa\xb4\x30\x8e\x56\xba\xa2\x93\xfe\xda\x57\x34\x61\xf2\x3f\xa5\x39\x82\x8d\xbe\xa3\xc8\x7f\x76\xae\x2b\x84\x23\x1a\xa9\x78\x3e\x1e\x20\x4a\x72\x7e\xab\xa3\xe3\x63\x72\x59\xfc\xea\x2d\x7a\x6d\xbc\xc0\xf6\x2e\xf9\x09\x58\xec\x77\x90\xa5\x46\x6e\xef\x0b\x3a\xeb\x1c\x22\xad\x1c\x00\xdc\xcc\xc0\xf6\xf3\x33\xd6\x1c\xe2\x3d\x7b\x1c\xf1\x65\xb8\x02\x3b\x08\x57\xf4\xcd\x89\x77\x4b\xdf\xf4\xa8\xb6\xc8\xa4\xb2\xff\xb8\x2a\x00\x97\x55\x4a\x04\xcf\xe8\xe6\xd0\x91\xaf\xfc\xbd\xc8\xaf\x76\x5e\xc1\x4a\xcf\x2b\xe0\x4a\x6c\x7a\x2d\x85\xcd\x38\x45\x87\x8c\x74\xc5\x3b\x96\x97\xd4\x9a\xe5\x6c\xca\x37\x23\xfc\xce\x44\xd7\xba\x94\x79\x3c\x51\x41\x2d\x45\x2b\x2c\xe7\xeb\x14\xd5\xca\x4f\x49\x09\xae\xc1\xb6\x65\xb9\xc9\x8b\x3c\x49\x61\x7d\xb1\xb2\x1f\xe9\x7a\xff\xf7\x91\x75\x1f\xa0\x8d\x93\x28\xcc\x4b\x5b\xbd\xdb\xdb\x0f\x90\xa1\xa2\x7e\x70\x1a\x1e\x24\x13\x67\xd2\x33\xc2\x18\x1f\xd3\x84\x3d\xd3\xeb\xb4\x16\x90\x07\x39\x41\x91\xb1\x2b\xb2\x2d\xce\x6a\x8a\x1f\x89\x90\xa6\xe1\x66\x8a\xca\x45\x43\xab\x72\x5a\xf4\x7a\x36\x9d\xa1\x0a\x8b\xc4\x07\x1e\xa5\xbe\x8b\xd0\xeb\x6a\xe7\x0b\x32\xf0\xc4\xc4\x2b\xa2\x1f\x6b\x28\xaf\x91\xb0\xec\x68\x64\xe3\x3e\x2f\x04\xa9\xe9\xd2\xa8\x4a\x51\x77\x4b\x45\x7d\x7e\xbe\xfd\xea\xab\x5f\x75\xa3\xf9\xeb\x4f\x77\x15\x83\xd5\xdd\x89\x2f\x43\x7e\x4c\xb6\x01\x33\xcf\xfd\x1f\x38\x1e\x4f\x76\x3c\xc7\xf3\xdf\x83\x43\xc4\x91\x4c\x47\x23\x93\x3e\x99\xb4\x9e\x7b\x8e\x1d\xdb\x6f\xe1\x6c\x60\x55\x4a\xd4\x7a\x45\x74\x9a\x36\x12\xff\xd9\x44\x21\xb0\x8e\xe9\x24\xe6\x1f\x29\x85\xe8\x8b\xa8\x2f\xf3\xe7\x69\xb3\x63\xb6\x66\xd6\xbd\x40\xd3\x3b\x1d\x25\x87\x7e\xa9\xd3\xfa\xfa\x41\xde\x79\x9c\x34\x95\x90\x66\xeb\xe1\x7d\x60\x76\xae\x1d\x0c\x4d\x92\x73\xb6\x01\xa3\x7f\x58\xeb\x2a\x1d\x56\x00\xc8\xb1\x89\x22\xa6\xcf\x69\x6a\xd5\x68\xa8\xd7\x33\x55\x21\xcf\x18\xeb\x68\xe0\x61\x45\x54\xc3\x6f\xc6\xa5\xf0\x50\xcb\xf7\x61\xf0\x09\x2b\x08\x54\x7f\xe0\x44\x36\xeb\x11\x4b\x49\xcb\xa9\x7f\xa0\xfe\xc6\xd7\x2a\xa1\x38\x48\x93\x62\x9c\xed\xf0\x8a\xa8\x9f\xd2\x94\xc3\xbd\xfc\x05\x56\x9f\xd0\xad\x29\x35\x89\x1b\xba\x0a\x78\x06\x2e\x25\x7f\xbe\x06\xbe\x99\xdb\xdf\x1e\x85\x59\x16\x72\x43\x8c\x13\xd5\xf1\x02\x3b\xf5\x0e\xee\x3d\xed\x3c\x14\xbf\x07\x46\xf5\x96\xa6\x6a\xbb\x55\xf1\xcf\xc7\xa3\x41\x85\x7c\xda\xe7\x3f\x8e\x34\xb5\x39\x67\xc3\xc4\xcb\xca\x3b\x0e\x1e\xe7\x7a\x6f\xd4\xd2\x72\x65\x70\x21\xb9\xc3\x4a\x7a\xe6\xb0\x4e\xcf\x1c\x6e\x60\xf6\x7a\x91\xa6\x37\x8c\xa9\x5b\xab\xa5\xdc\x06\x4d\x97\x70\xb1\xe3\x4d\xe2\x6a\x32\xb2\xf1\x6e\x5f\x86\x7c\xa0\x0a\xd7\xef\x21\x0c\x10\x42\xf7\x4a\xfb\xa2\x0b\xb3\x98\x1b\x1e\x9b\xfd\xcb\x8e\x92\xce\x67\x97\x0e\x25\x43\xe8\x7f\x31\xf2\x7a\xe2\x59\xf4\xeb\x53\x51\xc6\x8a\x49\x6c\xa7\x69\xc3\x0b\xa9\xac\x2f\xd8\xdf\xec\x28\xd8\xed\xdb\x84\xbf\x81\x21\xd8\xb6\xee\x97\x6d\x14\xd9\x1d\x2a\xcf\xff\x24\x17\x1d\xf0\x5a\x9f\x2a\xf8\xd7\xf6\x75\xc5\xfa\xaa\xa4\x0d\x1e\x68\xde\xc0\xe3\x95\xcc\xeb\x1b\xb6\xff\x98\x47\x38\xdc\xc6\x4b\xc2\xfb\xbb\x3e\x51\x0a\xc0\x47\x70\xa6\x0b\x27\xab\xef\x05\x40\x3b\x33\x4c\xc9\x5b\x13\x0f\x6e\xba\x45\x88\x1c\x78\x07\xc7\x55\x65\xf1\x23\x6c\x4e\x1c\x02\xc8\xb2\xc3\x26\x31\x99\x20\xe3\x4c\x6a\x0e\xbd\x64\xb8\x06\x49\xc2\x9c\x88\x78\xe4\xcb\x1a\x09\x7e\x42\xc1\xd0\xee\xd5\x0e\xc0\xd2\x11\xca\x20\xe7\x07\x76\x03\xfc\xe1\x07\x0a\xac\xf4\x81\xaa\x50\x8e\x6d\x9a\x97\x8e\x36\xfb\x4d\xae\x60\xe4\x88\x24\x2f\x74\x5c\xee\xb3\x18\x99\x38\xcc\x4d\x1a\x1a\x82\x65\x6e\x12\x4b\xe6\xe6\xcd\x26\x8b\x95\x45\xc5\x60\x10\x66\xc3\xd6\x54\x45\xb5\x75\xef\x5e\xd7\x93\xee\xab\x20\xe3\xd2\xb4\x4d\xfb\x3e\xf2\x93\xda\x6e\x30\x4a\x07\x5c\x19\x17\x31\x0c\xe2\x03\x6e\x7d\xf5\xd2\x22\xd8\xc8\xae\x84\x59\x55\xbb\xe9\x32\xb6\x20\xdf\x28\x53\xb9\x57\x94\x94\x84\x6b\xdd\x57\x33\xce\x28\xcc\x46\x46\xe0\x97\x9d\xb4\xb3\xe0\x97\x5d\x86\x9d\x43\x7d\x6c\xb3\xa2\xcf\xd8\x3a\xb8\x50\x65\x6e\x45\xe4\xf0\xa1\x52\x77\xfa\x10\x09\x27\xfe\x2a\x07\x35\x88\xc2\x3c\xb2\xca\x67\xb9\xa8\x7a\xa8\x2e\x4e\xfe\xa3\x87\x2c\x95\x24\x08\x4c\x19\x27\x19\xa1\x62\xc4\x81\x79\x4a\xd3\x7e\x9c\x72\x18\x83\xbe\x0d\xec\x98\x9c\x45\x1a\x63\xae\x9d\x4d\x74\x1d\xad\x41\x88\x7a\xd5\x9a\x65\xeb\x35\x63\x05\x41\xe9\x97\xf5\x27\x2e\xd3\x14\x41\xea\x61\x5a\xf9\x16\x1b\x88\x93\x71\x04\xa1\x66\xa7\x1b\xcf\xc9\x3e\xfd\xe0\x99\xae\xe7\x31\xb1\x45\x9a\x8c\xad\x89\xb3\x19\x4f\x99\x02\xf1\x19\xae\x76\x31\x83\x26\xdc\xf5\x16\xe5\x4a\xb8\x25\x85\xf6\xa0\xb4\xa7\xd4\xab\x12\xf3\xed\x5e\x98\x78\x15\x44\x0a\x9f\xb0\x2c\x8e\xa9\x4e\xb8\x63\x8a\x53\x25\x1f\x26\x45\x66\xc8\x5b\x2a\xe7\x0c\xe6\xe0\x2a\xc2\x72\xbe\x51\x61\xab\x5d\xb1\x69\x64\x98\x15\xb2\xfc\x13\x21\x59\x2f\x1f\x51\xf8\xda\xa5\xac\x17\xa6\x49\xcc\x69\x02\x9a\x2b\x1c\xbc\x1f\x74\x3c\x53\xea\x07\x6e\x6d\x0c\xcd\xea\x72\x36\xad\xd1\x6f\x27\x26\x4a\x13\x6b\x5b\x97\x4c\xaf\x70\x80\x7b\xfc\xc8\xe1\x06\x6a\xc1\x7d\xc4\x0d\xe9\xaa\x08\x92\x1d\x55\xf9\xee\x5b\x4d\x44\xa4\x43\x93\xe5\x6b\x53\x3e\x73\x77\x4b\xf3\xf5\x4e\x26\x1e\x04\x7e\xc7\x35\x56\x0c\x52\x13\xc6\x33\x6a\xcf\x9e\x9b\x78\x44\xe7\x5d\x7a\x4c\x24\x6a\x1f\xed\xfa\x82\xd5\x3b\x2a\x93\x50\xef\xc4\x5b\x9c\x6d\xaf\xda\x70\x30\x64\x5f\x08\x4b\x00\x15\x25\xbe\x6e\x78\xe3\x85\x76\xdf\x8c\x8c\x23\x77\xc4\xa6\xb8\xac\xfd\xcb\x3a\xfa\xf1\xa5\xf9\xf6\xa8\x88\xf2\x70\xec\x62\x4a\x07\x20\x71\x00\xa8\xd3\xb5\xdf\x7a\xf5\xd5\x76\x9c\xe4\xb6\x97\x24\x90\x76\x43\xbd\xea\xa3\x89\x6f\x47\xfa\xa8\xd6\xe0\xb2\x77\x6f\xb9\xc1\x38\x5c\x61\xd7\x49\x59\xeb\x1b\xb5\x92\xce\xf3\xed\xa1\x19\x8d\xac\x6b\xd4\x07\xe8\xed\x1a\xde\x87\x6f\x6a\x67\xf4\xe2\x2c\xe1\x0d\xc9\xc1\x50\xa4\xe3\x0b\x8e\x3b\xc9\xf3\x11\x8c\x0d\x61\x8b\x38\x0d\x82\x7c\xd0\x59\x18\x33\xbe\xa9\x65\x8b\xf7\xcc\xb5\xc3\x38\x0b\xfb\x16\x7d\x5c\x8e\xa7\xc8\x45\xc5\xe0\xb1\x82\x33\x73\x45\x75\x09\x44\xa6\x97\xa4\xbb\xe9\x35\xd0\x39\xb2\x6b\xdd\xb7\x5d\x73\x06\x01\x55\xf4\x53\x94\x72\x47\xc0\xfc\x8f\x68\xc2\x39\x92\x56\xcd\x40\x9c\xac\x41\x57\xde\xd1\x8e\x6a\x33\x7d\xd0\x51\xb2\x2c\x3f\x9c\x28\x36\xa5\x6f\xd7\x44\xcb\x16\x16\x17\x90\x28\xcc\x6c\x9f\x8d\x6a\xa3\x33\xbd\x35\x43\xb6\x38\xdb\x4e\x96\x96\xa6\x4b\xa3\x82\x20\x11\x74\x7a\x18\xb3\x3b\x34\x18\x22\x33\x59\x0e\x06\x22\x83\x99\x6e\x1d\x88\xde\x4e\x2d\xe9\x75\x29\x9e\x2b\x76\x5a\x00\x49\x9d\xa2\xed\x82\xf3\xe3\x42\x53\x6f\xf9\x38\xb5\x79\xbe\x36\xed\xc3\x9c\xcd\x8e\x22\xec\x81\x92\x0d\xfc\x9f\x9b\x8a\x69\xf5\xff\x98\x7c\x55\x71\xf5\xbb\xae\x32\xa6\x93\xe2\x72\x83\xa2\x1f\xbe\x38\x79\xcc\x13\x88\x26\x19\x65\xf5\x71\x0c\x1e\xc1\xf9\xc8\xd8\x5a\x0c\x3d\x3c\x99\xf7\x15\x78\xeb\xf4\x44\xc5\x33\x0c\x67\xe0\xb0\x5b\xb7\xcb\xec\xea\x6a\xc5\xa3\xfb\x0a\xc2\x99\x45\xc5\xe8\xe1\x0a\xce\x62\x67\x47\x61\x16\x24\x71\xbf\x08\x50\x04\x73\xb9\x9c\xf2\x17\xa4\x5e\xae\x0e\xfb\x71\x92\xe6\xd9\x23\xe5\x04\xc1\x03\xb9\x4b\x06\x19\xcb\xee\x9c\xa2\x17\xfc\x85\x26\x63\xbd\x89\x17\x86\x5b\xcb\x2d\x93\xfc\x67\xf0\x29\x39\x8c\x9d\xf8\x5a\xe7\xf7\x15\x1a\xab\x6f\xd3\x70\x45\x0f\xb6\xf8\x5e\xba\x5a\x20\x56\x35\x2e\x0d\xf1\xb4\xc7\x31\xec\x84\x62\x26\xa2\x53\xa4\x68\x9c\x30\xea\xa2\x60\x40\xae\xb8\xe1\x48\xc3\x60\x98\x5b\x71\xe2\x7c\xe0\xa6\x48\xb3\x6b\xc6\x10\xd2\xdc\x21\x49\x5d\x4e\xa9\x98\x08\xae\x2d\x0e\xe5\x9b\xaa\x1f\xfa\x1f\xd5\x0c\xe3\x9e\xb9\xd2\xf7\x88\xc2\xd8\xf6\xa7\x95\x6f\x7c\x66\xa2\xc6\xed\xe7\x4a\x61\xe9\x92\xd6\x39\x78\xa0\x52\xb4\x69\x32\x10\xb1\x1f\xa4\x3f\x3e\xd1\x78\xba\x4f\x54\x63\x64\x50\x44\x48\xfe\x96\x5e\x5e\x39\x07\x92\x43\x6e\xf9\x6b\x95\x89\x0c\xd2\x64\x3c\xed\xc3\x8c\x3b\xb4\x47\xf1\xad\xef\x4e\x7c\x9e\xf5\x5d\xa5\x84\x76\x47\x49\x0b\x99\x3c\x4f\x4d\x90\x23\x9e\x86\x65\x3a\x4d\xa1\x0e\x5f\x6b\x75\x97\x61\xb8\x22\x5c\xbb\x4e\x23\xb8\x7c\x5b\xbe\x51\xb8\xbb\x7e\x6a\x57\xc9\x0a\xf0\x26\xe9\xe8\xa3\x5d\xd1\xd8\x7d\xde\x84\xa3\x00\xf2\x86\x79\x4a\x5c\x57\x7d\x39\xde\x4e\x95\xcc\x55\x36\x2e\x2a\xe1\x90\x3e\x35\xd8\x2f\xce\x56\x64\x09\xf9\xba\x49\x51\xb8\x1f\x66\x69\x31\x66\x82\x40\x87\xd1\x74\xad\x43\x30\xd0\x12\x3b\x3e\xa5\xda\xa4\x50\x8b\x23\x9f\x02\xab\x94\xab\xe6\x48\xee\xa1\x77\x00\x4e\xd6\x91\x8e\x6f\x0c\x89\xcc\xa0\x4a\x4d\x50\x4e\x94\x30\x13\xd4\xd6\x1d\xe9\xe8\x8e\xc7\xce\x79\x75\x1b\x71\x7e\xde\xe5\x96\x1a\x5a\xb1\x88\xac\xa8\xa5\x3a\x04\x8e\x2a\x1e\xc5\xa3\x6a\xde\x47\x86\x30\xbb\x99\xea\x73\x66\x99\x39\xbe\x69\xfa\xf6\x2c\x2f\x82\xe5\x2d\xbc\xe1\x7b\xf7\xba\x26\xaa\xaf\xaa\x31\x0a\x52\x4b\x4b\xd8\x44\xb4\x88\x37\x89\xcd\x99\x84\xc1\x2a\x19\xcc\x6c\x67\x19\x15\x63\x2e\x01\x90\x15\xc4\x85\x06\x25\x60\x97\xe3\xfc\x3a\xdd\xd1\xf8\x9a\xd3\x64\x2b\xb8\xbd\xab\x92\x07\xd2\x81\x74\xc8\x04\xbf\xae\x5b\xde\x35\x70\x9c\xaa\x8d\xfc\xc1\xc5\xd9\xf6\xd8\xc4\x36\x8a\x42\xfa\x8c\xd3\x61\x2e\x1f\x41\x48\x15\xf5\x97\x07\x66\x75\xa6\xe5\x38\xbf\x3e\xc0\x1f\x4a\x3b\xa9\x6a\x2d\x55\x84\x69\xa7\x69\xee\x91\x39\xab\x77\x65\x53\xbd\xaf\xa7\x53\x32\x38\xf1\x51\x8a\xe7\xeb\x26\x57\x37\x0a\x97\x84\xa2\x03\x66\xea\xed\x8e\x3f\xdb\xde\x56\xf4\x0e\x23\x1b\x98\x38\x7c\xbd\xb0\xac\x5a\x2e\x29\x6a\x4f\x98\xc8\x2d\xc7\xf0\x07\x36\x29\xa7\x28\xbe\xc1\x57\xd4\x61\xbb\x12\xc6\xd3\xaa\xc5\x93\x0b\xb8\x82\xaf\xf5\x47\xf4\x25\xc5\xd1\x59\x67\x60\x9f\xdb\xdf\x7e\xcd\xa4\xa9\x33\xd2\x42\xda\x54\x7e\x06\x11\xf4\xf6\xae\xc7\x69\xdc\x50\x78\x93\xd7\x92\x30\xce\xa3\x35\x0a\xb8\x18\x05\xd6\x51\x90\x25\xce\xeb\x89\x0d\xf1\x69\x39\xae\x9d\xe3\xa4\x3c\x32\x51\x52\xf3\xe5\xb2\x1d\xd9\x38\xcf\x54\x07\xde\x39\x15\x32\x9e\x6b\x1a\x78\xd2\x93\xae\xf0\x26\x5f\xd2\xd2\x5a\x97\x1e\x92\x37\xb4\x29\x97\x5a\x25\xd9\x5c\xae\x16\xbe\x6e\x60\x99\xdd\xd7\x1e\x47\x05\xdb\x10\x19\x0a\x35\x2c\x1a\x4a\x09\xb4\x95\x6f\x3a\x3e\xad\xfa\xe2\x4e\x37\x09\x16\x05\xc9\xa8\x67\xf2\xa9\x0a\x58\xad\xfc\x08\x4e\x56\xe8\x23\x4a\x45\xac\x52\x05\xeb\x53\x0f\x86\xc0\xc9\x28\xed\x0f\x07\xf1\x43\x4d\xc0\x70\x6b\xe2\xed\xf2\x45\x3a\xc8\xf8\x8f\x14\xdc\xf4\x30\x11\x71\x08\x93\x46\xb9\x14\x1d\x29\x44\xb9\x46\xb9\xc9\x4c\x35\xba\x46\xe1\x92\xa5\xda\xa3\xef\x59\xbc\x40\x47\x17\x5f\xd7\xb6\xf6\xe2\xec\x62\x3b\x2b\x7d\x08\xce\x57\x08\x6a\xa0\xa5\x24\xe5\x3d\xd0\x6b\x50\x18\x42\x64\xdb\x96\xe2\x17\xc1\x83\xf1\x75\x53\x26\x27\x48\xe2\x0c\xe8\x5b\x1f\xde\x33\xc3\x0d\xdf\xd4\xf8\xa9\x89\x52\xdc\x31\x20\xa6\x02\x77\xc1\xd1\x72\x51\x73\x2b\x5f\x74\x6a\x79\x63\x13\xc6\x98\x2d\xc4\x09\xf0\x9f\x70\x10\xdf\xaf\x48\xe1\xfb\x8a\xea\x6b\xa5\x45\x11\xa2\x07\xb8\xb5\xff\x6c\xd2\x52\xcc\x7b\x0a\xa0\x72\x61\xb2\xdb\xa5\x9b\x66\x5b\x8a\x7f\x0a\xcb\xc2\xd3\x8b\xb8\x2f\x37\x71\x6c\xd7\x70\x56\x81\xfe\xef\x07\x8a\xfe\xf3\x07\x0e\x9e\xb2\x3a\x0c\xb3\x65\xb1\x6b\x98\xd3\xbb\xf0\x48\xf9\x46\x2b\x7c\xac\x1a\xf0\x8e\x3d\x0c\xde\xd8\x00\xeb\x8a\xac\x59\x91\x62\xa1\xe2\x27\x75\x64\xa5\xd5\x72\x6a\x4f\x48\xad\x71\x84\xe1\xe5\x84\xcb\x4f\x65\x9b\x6f\xd7\x40\x1c\x2f\xcd\x53\x8f\x8d\x06\x48\x82\x45\x02\x66\xf2\xa6\x32\x36\xc8\x1e\xe0\xf7\x7f\xae\xd6\x6f\x16\xf6\x22\x42\x4e\x78\xa8\x27\x4a\x75\x7c\xad\xb0\xfa\xd9\x30\x49\x28\x3b\x53\x3a\x74\x30\x2a\x2d\x0a\x38\xf9\xba\x86\x4b\x21\x49\xcc\x30\x0d\x8a\x30\x87\xc1\x10\xde\x25\x7a\x29\x21\x64\xd2\x63\x61\x33\xfb\x84\x7f\xfe\xbb\x30\x90\x5c\x2b\xa1\x45\x2f\x9a\xe6\xe5\xee\x55\x19\xcf\x57\xd8\xf3\x7d\x4f\xc7\x3e\x28\xae\x31\xbe\xbf\xab\x20\x2b\x1f\xe2\x84\x40\x42\x71\x7b\xd7\x77\x2c\xe3\x50\xae\xa8\xd5\x60\x91\xad\xeb\x4c\xf7\x97\x1d\xaf\x48\xf4\xce\x44\x1b\xdc\x3b\xca\x43\x0b\x47\xe3\x84\xc4\xb0\xcb\xaf\x84\x8f\x3e\xa1\x81\xe5\x6b\xa5\x04\x3d\x0a\x83\x34\xc9\xd6\xb2\xdc\x8e\x30\x0f\xce\xfd\x50\xba\x26\x0d\x90\xd6\xb6\x09\xf2\x70\x45\x50\x3f\xa8\x55\xfc\x10\x1b\x88\x6f\x54\xb2\x80\x96\x71\x4b\x33\xef\x5c\xd4\x01\x7f\xbd\x1a\xbc\x38\x5b\xda\x91\xa5\xb0\x6f\x39\x19\x0e\x83\xf3\x3e\xbd\x04\x5f\x57\x2b\x05\x6c\x6f\x9c\xf0\xb7\xab\x1a\x9c\xa9\xfc\x5d\x91\xc6\xbb\x7d\xac\x70\x0f\xe3\x0c\x57\xfc\x06\xb2\xbb\x92\xb7\x2d\x67\xa6\x42\xcf\x2f\x29\x41\x4d\x8d\x7d\x5f\x97\x99\xc1\x08\x8f\xa7\xbb\x8e\xa1\x10\xd8\x63\xb9\x7c\x24\xc9\xe7\xe3\x09\x12\xa2\x11\x53\xd0\x24\x9a\xea\xd7\x3f\x85\x04\x44\x57\xe9\x34\x54\x40\x0f\x84\xa3\x83\x83\x70\x57\x26\x9d\xdb\xcf\x1b\xfa\x2e\xca\x77\x70\xe2\x4f\x4d\x3c\xa6\xc7\x8e\xc6\x91\x41\x31\x53\xda\xb1\xbd\x83\x78\x4e\x01\x5c\xfa\xe1\x38\x4a\x46\x38\x1a\x17\xbc\x30\x85\x6b\x50\x03\xa7\x8b\x14\xfb\x1a\xd9\x84\xc2\x00\x93\xe3\xe4\x6b\xe6\xbd\x34\x67\xbd\x26\xbb\xd0\x5e\x35\xb9\x27\x92\xc6\x7b\x1c\xe9\xa8\xfa\xcb\x91\x06\x29\x51\x07\xa8\x28\x44\xc9\xd7\x51\x93\x39\xf4\x09\x12\xfe\xc2\x38\xe5\xda\x8e\x20\x60\x3a\xad\xa0\xe9\x4f\xac\xab\x46\x3f\xa6\xa5\xc3\xc8\x3c\xd2\xd5\xca\x7b\x77\x54\x7c\x6b\x63\x9b\x0e\xd6\x76\x7a\xee\x8e\x3b\xaa\x49\xe3\x4f\x95\x5d\xe5\x5a\x1d\xc7\x4a\xb4\xce\xe0\x97\x5c\x99\x54\xb4\xc3\x14\xe6\x7d\x47\xd7\xb1\xc8\xc4\x87\x42\xeb\x49\xdb\x18\x3c\xac\x44\xaa\xea\xea\x32\x7b\xf6\xb4\x97\x6c\x5c\x0c\x52\x12\x79\x75\x18\x6b\x8a\x8b\x36\x6f\x2b\x74\x6b\x5d\xae\x6c\xcf\x9e\x76\x98\x9b\x48\x52\x0e\x15\x85\x6a\xbe\x51\xe9\xc7\x9e\xc9\xc3\x5e\x92\xe3\xe8\x41\xae\xe4\x4f\x3a\x4a\xb0\xf9\x4f\x6a\x93\xfd\x6b\xed\xa8\xdc\x01\xb1\x70\xee\x20\x71\xfa\xd6\x44\xa9\xfc\xbe\xd5\xd1\xf2\x95\x26\x0a\x63\x2c\x0b\xae\x2e\x78\xcd\xd6\xff\xec\x0b\xdf\x12\x96\x26\x2b\x49\x96\x2b\x5d\x7f\x56\x59\xe6\x9b\x7a\x16\x74\x4f\x3b\x30\x45\x26\xc7\x66\x45\xe7\x89\x6f\x54\x98\x3d\x32\x59\x06\x3f\x5d\x5a\x47\x7c\x6e\x16\xfa\xdf\x48\xa6\xfc\xa2\x12\x25\x15\x71\xff\x99\x29\x2f\x4a\x3b\xd5\xf5\xaa\x65\x1c\x6b\x80\x90\xe4\xa6\xce\xa7\x7d\xaa\x34\x6e\xf8\x44\xc2\xb0\xdc\xc1\x18\x21\x1c\x3b\xc7\x11\x21\x0e\x92\xff\xbd\xd3\x52\xdc\x80\x84\xb8\xc0\xd9\x71\x06\xd5\x0f\xac\x7f\x16\xdc\x62\x06\x39\xcf\xaf\xf8\xc6\x3f\x04\xfc\x03\xd1\x25\x34\xfc\x99\x44\x89\x0e\x41\xb8\xa7\xbb\xd7\x15\x1f\xdf\x29\x16\xad\xe4\x8f\xe0\xb8\x42\x44\x7a\xbf\xa3\xe7\x24\xec\xdb\x1d\xe5\xb3\xe1\x3b\x5a\xeb\xaa\xd9\xeb\xd9\xae\x5f\x87\xbb\xd6\x3d\xc9\xcc\xf6\x75\xdf\xc3\xf0\x24\x9d\x96\xec\xe2\x29\xca\x49\x30\x62\xd8\x34\x43\xc5\x42\x3a\xe1\xca\x3f\x06\xba\xe5\x1e\xac\x34\xec\x15\x22\x29\xbe\x5e\x57\xcb\xba\x49\xd6\x62\x1c\x46\x62\x87\x04\xb8\x44\x93\x20\xf1\xe2\xd3\x4a\xfd\x28\x4f\xed\xc8\x82\x75\xe6\x45\x2e\xb5\xc0\x29\x95\xc2\xa4\x87\x98\xdc\xad\xad\xc0\xd2\xec\xbd\x5e\x84\x36\xc7\x8f\x21\xe8\x3b\xab\x02\xc0\xb3\x0a\xb6\xf5\x37\xff\x93\xbf\x35\xa5\xb7\xad\x02\x92\x83\xd4\x45\x84\xcb\x7d\xa0\xb2\x64\x6d\x34\xe3\x39\x14\xb8\x7a\x0e\x83\x74\x47\x51\x55\x80\x30\x54\x44\x6d\x7d\x0c\x72\xbd\x81\x76\xe5\x45\x66\x85\x84\x1b\xee\x5c\x3d\xc5\x49\xdd\x72\x0c\x5c\xa7\x5c\x16\x74\x29\x8c\x25\xea\x96\xba\x91\x92\xdd\xc6\xec\x38\x8e\x72\xc7\x21\xb4\xa1\xf6\xdf\x30\x89\x07\x94\xe7\x85\x6b\x7d\x91\x8e\x3b\xbe\x9e\x78\x0a\x8d\xe3\x17\x69\x55\xe3\xfa\xbe\xa2\xe5\xbe\xa8\x32\x42\x77\x60\x8c\xdd\x37\xb9\xf1\x3e\xd9\xf9\x9a\xfb\x41\x6a\xdb\x5a\xb2\x01\xf4\x5b\x7c\x1a\x11\xb5\x79\xbe\x76\x6a\xa9\x26\xcd\x33\xa4\x4a\xf1\x7e\x15\xd2\xc3\x29\x74\x4b\x62\x50\x44\xc0\x9a\x55\xba\xbd\x12\x78\x98\x0d\x55\x2f\xf9\x5d\xd5\xe8\x73\x57\x21\x81\xec\xa1\x61\xd8\x0b\x73\xce\x3c\xe3\xfb\x0f\xd3\x5c\xf2\xf5\x43\x1b\x71\xf2\x55\x1b\xe7\x5a\x42\xe4\x12\x2d\x1b\x49\x55\x54\x22\x84\x22\x9a\x51\xa9\x47\xce\x44\x61\x13\x82\x37\x56\x98\xe2\xf0\x2e\xfc\x3f\x1d\xcf\x6e\xf5\x0f\xaa\x08\xce\x17\xcc\x0b\xd8\x22\x70\x72\xae\xa8\xf3\xf9\x87\x13\xe5\x3f\x2a\x99\x4a\x93\xf6\x21\xb1\xcf\xaf\xaa\xca\xf4\x1e\xf9\xae\xb4\x29\xc7\x46\x68\x9e\x5f\xe4\xfc\xeb\xf5\x89\xcf\xf2\xa1\xf5\x87\xf9\x2e\x6b\x45\x98\x3d\x7b\xda\x51\x98\xe7\x91\x9d\xf6\x75\x7f\xd6\x0c\x07\x08\xe7\x23\x55\x84\x81\x58\x27\x46\x7b\x43\x21\xc5\x46\x26\x1d\x84\xf1\x2e\xf5\x7c\xc7\x61\xaf\xe1\xbf\x70\xd1\x01\x2b\xfb\x26\x0d\x3d\x56\x3c\x1e\x0d\xa7\xd4\x0f\x3a\x5e\xa6\xf9\xaa\x62\x25\xba\x3a\x51\x08\x00\xee\x49\x17\x95\x78\x15\x39\xc6\xd9\x2a\x8f\x97\x18\xa3\x6b\x0a\xc6\x71\xad\x4e\xfb\xb8\xb8\xd0\xce\x56\xc3\x51\x4b\x69\xa5\x6f\x74\x54\x07\xc2\x86\x2a\x97\x8f\xd3\x24\xb0\xb6\x5f\xc6\x6e\x3b\x14\x3c\xfb\x82\xaa\x61\xb0\xfa\x22\x67\x95\x3b\x35\x1a\x00\xfe\x04\x96\x13\x7f\x44\xad\x6d\xa1\x06\x9b\xf1\x51\xe4\x76\xe2\x13\x15\x47\x93\x3e\xa7\x78\x0b\x04\xfe\xf7\x40\xb9\xa3\xdb\x6b\x14\xdb\x07\x66\xe7\xa8\x0b\x2d\xee\x87\x9e\x48\x47\x93\x60\xcf\x3b\x12\xec\xaf\x28\x5e\xb9\x34\xb0\x8f\x96\x06\x07\x7e\xbe\x6c\x5b\x27\x43\xe7\x12\x0f\x77\xf4\x11\xcd\xb9\x37\x21\x2d\xa4\x03\x13\x45\x5e\x64\x93\x60\xf0\x40\x6d\x2c\x71\x02\x0d\x3e\xe6\xff\x3e\x99\x35\x04\xcd\x57\x74\x0b\xd3\x17\x5e\xd2\x20\xb5\xfd\x50\xa4\xf3\x39\x0a\xec\xf8\xc5\x7d\xa7\xb6\xff\xf7\xbf\xdc\xee\x27\xa3\x30\xb6\x24\x03\x36\xa5\xd0\x86\x93\xea\xa9\xe5\x52\x72\xf7\x3b\x3e\x69\xca\x95\x12\x2a\xcb\x2c\xcc\xed\xf7\x50\x2e\x7f\xad\x66\x70\x35\x49\x97\x5d\x70\x8f\x41\x00\x12\x9c\xaf\x6b\x18\xd7\x3d\x73\x24\x01\x9e\xc4\xd6\xf1\x2c\x73\x35\x99\x3e\x26\x95\x65\x9f\xe4\x4b\x56\x63\x9b\x12\xf5\xf7\x82\x13\xf3\xf5\x06\xfc\xe2\x44\xf9\xa1\x27\x88\x6b\x16\xe3\x87\x7e\x32\xb8\xdc\xd7\x14\x54\x87\xc5\x10\xe1\xb0\x7f\xae\x99\xbc\xfa\x46\x35\x65\x7f\xce\xb3\xef\x68\x13\x94\x58\x0d\x3d\x0a\xdc\xeb\x1f\x4d\x74\x0e\x4a\xc5\x4e\x8f\x75\xb7\x42\x09\x41\xdf\x1e\x85\x41\x32\xce\x7d\xf6\x0b\xb1\xe7\x17\xd8\x20\x7c\xd3\xa0\x27\x2c\xe3\x8c\x9d\x2e\x0a\x70\xe5\x6f\x8b\x32\x5c\x43\x8e\x28\xb5\xd6\xf9\x35\x8e\x83\xda\xd7\xdc\x7f\xd2\xf1\xa5\xda\xa1\x49\x39\x81\xe2\xb8\xd4\x3c\xdb\x4e\x0d\x4d\xb9\x67\x4f\xbb\x88\x93\x1e\x75\x14\x70\x37\xa2\x53\xa4\x77\xf4\x12\x8d\x6c\xb0\x49\x91\xf7\x8d\x48\xa4\x62\x3b\xb0\xaf\xc5\x37\xcd\x32\x82\x36\x0d\x6d\x06\x07\x04\xdb\x06\x4d\x00\x80\x94\xb0\x30\x0f\xea\xb9\xe7\x6b\x1e\xcc\xe2\xec\xbe\xf6\xd8\xe4\xa2\x6e\x89\xb9\xfa\x63\x95\x3b\xfc\xe3\x2a\xf1\x55\x94\x3d\x51\x2e\x03\x38\x47\xa2\x87\x82\x6d\x72\x11\xb9\x03\x38\x64\xe7\x80\xe5\xc4\x32\xdc\xdd\x55\xc2\xd3\x9f\x74\x54\xd6\x83\xa1\xd5\x42\x9f\xa9\xba\x87\x2e\x4f\x94\x86\xfb\x7b\x8a\xeb\x61\xba\xeb\xf3\x50\x9f\xc0\xbc\xe0\x1c\x78\x93\xd6\x31\x1c\xd9\xdd\x20\x77\x06\xf9\x05\x0b\x3a\x48\x4c\xe9\x0f\x88\x28\xec\xad\x99\x98\x0f\x08\x89\x0f\x3c\x94\xff\xcc\xc4\xcb\xad\x8f\xc6\x91\x09\x63\x21\xe6\x80\xd9\xfa\x52\x15\xd4\xbf\xc0\xda\xc1\xb1\xdd\xaa\x89\x3b\x3c\xdf\x1e\x85\x71\xfc\x82\x1a\xe3\x4b\x5a\x5d\xe5\x92\x0a\xf0\xfa\xa1\xcd\x6c\x84\x75\x29\x3d\xa9\xf4\xdd\x82\xe0\xde\x7a\x6a\xed\x7f\xb9\x34\x82\x66\xb9\xe5\x1b\x97\x4e\x6b\x31\xc5\xd3\xca\x8c\xc7\x49\x6e\xb3\x47\x55\xa6\x95\x69\x6d\xe4\xf8\x56\xd4\x53\x37\x10\x29\x01\xff\xff\x0f\x3a\xad\xdf\xfa\x06\xe3\x9a\xa0\x95\x01\xf7\x76\x7b\x57\xa1\x8b\x58\xb4\x14\x9f\x60\xbd\x37\x44\x8e\x80\x45\xa1\x3e\xb0\xd9\xf1\x1d\x2a\x75\x19\x07\x52\x69\x0a\x92\xb4\xcf\xa5\x55\x57\x78\xf3\x5c\x1d\x0f\x2a\x34\x96\xf5\x9d\xbd\xaf\x1d\x85\x83\x21\xd6\x33\xca\x41\x20\x8b\xe5\xeb\x26\xe2\x84\x91\x09\x86\x61\x1c\x66\xf9\x16\x3e\x17\xd5\x64\xba\xa1\x85\xbf\xf3\x22\x8e\x6d\xbf\x85\x90\x4f\x98\xdc\x29\x64\x54\x54\xee\x12\x14\xf5\x8b\x00\x2c\x02\x3e\x51\xff\x9d\x89\x4f\xff\x7c\x47\x05\x35\x36\x5b\x86\xd7\x8c\x65\x71\x9e\x46\x5a\xfc\xaf\x96\x13\x58\x38\xa2\x58\xdd\xea\xdd\x88\xa5\x4d\x18\xa7\x36\x08\x33\x64\x9c\x98\x45\x5c\x11\xef\x1f\xd5\x34\x1e\x49\x2c\x7d\x32\xd2\x2f\xd0\x72\xbd\xba\x27\x9c\x56\x4c\x18\xe7\x36\x8a\x2c\x94\xf4\x94\xa0\x89\x7b\x0e\x74\x11\x31\x7d\x9c\x82\xa4\xe4\x45\x1a\xdb\xfe\xe3\xa5\xdb\x82\xb8\x6f\x13\x96\x01\x9f\xba\xdd\x51\x34\x70\x13\xef\xe2\x43\xcc\x01\x03\x74\x8d\x0a\x8f\x82\xf0\x2c\x47\x04\x2e\xcf\x35\x2c\x37\x81\x81\xd2\x2b\x60\xff\x5d\x86\x25\xaa\x70\x6d\xe1\x37\x00\x8c\xe0\xcf\x77\x3c\xe9\xd5\xdf\xbf\xa1\xaa\xe2\xf6\xd0\x38\x4a\xfa\x6c\x86\x45\x34\xc7\x67\x78\x1b\x8b\x7f\x87\x6c\x9a\x1c\x9a\xf2\xd1\x2d\x62\x40\xe1\x2b\xa5\x07\x85\x2d\xbc\xd6\x94\x47\xce\x8b\xb4\x57\x86\x84\xba\x11\x1d\xc6\x50\x2c\x40\x9d\x7a\x67\xa1\x3d\x4c\x72\x1b\x65\x53\x3e\xf1\xf2\x09\x0c\x9d\xc8\x23\xa8\x8a\xc7\xb5\x8e\x6e\xe1\x48\x97\xb9\xe1\xd9\x11\x69\x6b\x86\xed\xa6\x66\xea\xd8\x2c\xf3\x78\x48\xba\x43\x29\xa7\x9c\x6a\xaa\xe5\x0e\x93\x22\x73\xb5\x5c\x91\xfb\xf6\x90\x0d\x8e\xa1\xe0\x4e\x5c\x2b\xdd\x6a\x81\xc8\x78\x46\x03\x7a\x33\x4c\x22\xf4\x91\x1c\x89\x8f\xab\x43\x7a\x7a\xbb\xa2\x8c\x36\x06\xd3\x0a\xac\xcf\xcd\x01\x28\x64\x3e\x42\x51\x05\x12\x32\x53\xeb\x3e\xcf\x36\x55\x2b\x1f\x3d\xdf\x1e\xd9\x43\x61\x60\x18\x5d\x2d\x34\x46\xbe\xe3\x45\x37\x8f\x8d\xc2\xe0\x91\xf2\xc9\x70\x1c\x6d\x4e\x54\xc8\x3b\xbd\xae\xba\xca\x76\x90\x80\xa2\x74\x86\xe0\xd4\x14\x8d\x8f\x96\x10\x91\x3d\xd5\xee\x3a\x27\xf6\x33\xe6\x1d\x12\xe9\x4d\x8f\xaa\x29\x96\x92\xac\xe5\x6b\xc4\xa8\xd7\xf3\x75\xc7\xab\xe3\xf5\x43\x13\xf1\xc9\xc6\xca\x22\xaa\xdd\xa0\x4e\xe0\x3b\x3f\xdf\xb6\xaf\x17\x26\x9a\xf6\x8d\x43\x7f\x0f\xab\xc9\x75\xed\xbb\x4f\xdf\x50\xf5\xda\xcb\xea\x38\x0d\x92\x28\xb2\x03\x90\xf7\x48\x30\x34\x75\x70\xd1\x33\xa8\xf9\xa8\x84\x4f\x77\x09\x80\x7c\x80\x73\x19\xeb\x42\x38\x75\x3c\x96\x39\x48\x8a\x38\x27\xd8\xa8\xcf\x74\x9c\xec\xf8\x0c\xc8\x49\x0d\x49\xc8\x42\x13\xd3\x63\x70\x3b\xfd\xa4\xb5\x67\x0f\xfb\x50\xdb\x01\x38\x93\xec\x24\x39\xf1\x2e\x03\xb9\x38\xeb\xfe\x87\xea\xd3\x70\xf1\x6e\xd5\xd6\xf7\xde\xbd\xed\x81\x89\x22\xcb\x0c\xc9\x8c\x5e\xeb\x78\x8e\x8e\xf3\x4d\x5b\x62\xa9\x48\xf3\xa1\x45\x38\x87\x68\xf5\x7d\xa5\x88\xc5\x4d\xf0\x48\xf3\xcd\x94\x41\xf5\xe6\x4d\x28\x21\xa0\x1e\xf6\xe8\xba\x4f\xb4\x05\x51\x92\x0f\x43\xa7\x9b\x21\xdc\x9c\x1e\xac\xb0\xd1\x74\xca\x41\x9c\xdc\xc6\x01\xc4\x4a\x9b\xfa\xa6\x9a\xf5\xd9\x8a\x41\x14\x2e\xeb\x6a\xf9\x0d\x55\x2d\xbf\xd1\x24\xe5\x9e\xdb\x2c\x0f\x97\x42\xde\xc3\x2a\xbe\x9a\x93\x44\xae\x6e\x30\x3b\xd5\x48\xa5\x19\x0c\xcb\x21\x8e\x07\x52\x34\x93\xdc\x3e\xbd\xb2\x24\xfd\xb7\xee\xde\xfd\x2f\xb7\xb3\x3c\xb5\x19\xb4\xf0\x58\x21\x87\x9e\x56\xd4\x72\x9e\x54\xad\xee\x83\x81\xcd\x72\x0a\x01\x91\x94\xf8\x6c\xc2\xad\x21\x2f\xf9\xde\x85\x06\xae\xca\x8c\xa4\x7d\x34\x67\x88\x22\x67\x71\x2d\xa3\x61\x3a\xb2\xe9\x0e\xef\x49\xdf\xaa\xb4\x21\xb5\x5c\x0f\xd7\xf6\x75\x9a\x78\x0c\xd2\xd7\xba\x34\xe5\x38\xa6\xcf\xe1\xe8\x42\xfe\xe3\xa7\x13\x9d\xc9\x8c\xf2\x96\x4f\x57\x5f\xd0\x8c\x57\x17\x14\x4b\xe5\x52\x9a\xc4\x39\x5b\x01\x4d\x81\x29\x41\x74\xa5\xf4\x1b\x2c\xef\x54\xcc\xb3\x97\x01\xfd\x44\x4c\xff\x97\x64\x64\xf8\x1a\x66\x15\x16\xef\x98\x02\x94\x7f\x8a\x33\x41\x38\xbe\x29\xe9\x2e\xcd\x9f\x7a\x1f\x8f\x7a\x61\xec\x98\xfb\xe0\xae\x2f\x68\xa1\xa3\x05\xd5\x2e\x36\x8e\x4c\x9c\xef\x2e\x87\x17\x83\xc0\x42\xc7\xa8\x08\x5d\xd5\x9c\x35\xc7\x75\x16\x88\x85\x5e\x60\x45\x60\xee\x09\xf5\xbb\xfc\x4c\x57\xf1\x69\x01\xd5\x2c\xf8\x80\xf2\x0d\x99\xd6\x83\xf6\xbe\x50\x7c\x3c\xe6\x46\x73\x39\xe4\xbe\x26\xbc\xfb\x5d\x85\x54\x43\x12\x0c\x27\xe8\xa7\xb5\x0d\x41\xd2\x49\xb6\x74\x31\xed\x9a\x42\x14\xbd\xab\x39\xbd\xdf\x55\x4d\x45\xd9\xaa\x1d\xe7\x00\x3c\xe0\xf4\xc2\x8a\xe4\x6b\x57\xe2\xe1\xe6\xf8\x96\xe7\x96\xb9\xa3\x2b\xae\x77\x5c\xba\x79\x2d\x29\xe2\xc1\x8e\xf2\xcf\x44\xe2\xdc\x9f\xac\x9f\x92\x67\x2f\x3c\xf0\x7e\x40\x7e\x5e\x8d\x4f\xb0\x05\xa5\x6b\x52\x49\x22\xd8\x20\xec\xdb\x7e\xb4\x86\x91\xe1\xaa\x5f\xa5\x28\xcf\xb5\x43\xa4\x88\x5b\xdd\x87\xb5\x8d\x65\xb9\x05\xc5\x2f\x9e\x91\x14\x3f\xa5\x5d\x9d\x36\x18\x16\x2d\x3b\x53\x08\x6e\x8f\x37\xed\xce\xd8\x1e\xca\x77\xf8\xf4\x1a\x5e\xd6\x21\x12\x5c\x45\xfb\xc1\xc4\x71\xed\xfc\xfe\xd3\xd0\x9f\x11\xfd\x5c\xe5\xf6\x1f\x56\xc2\xf5\x36\x0e\x48\xd6\xcb\x2d\x5e\x8c\xda\x19\x7e\x5b\xbe\x73\x99\xa9\x9e\x4d\x97\x6d\x64\x45\xd1\x43\x72\x37\xde\x16\x9d\xd1\x89\xfa\x7b\x4a\x48\x76\xc9\x64\x3d\x3a\xe6\xa4\x05\xd1\xeb\x5b\xdc\xd4\xb5\xc6\x62\x10\x91\xa5\x73\x65\x65\xb8\xb7\x7c\x5d\x43\xab\x50\x11\x34\x62\x0f\x1e\x16\xe6\x5f\xab\x3e\x96\x8f\x61\x9f\x61\xd5\xbf\xa8\xd4\xed\xd2\xe5\x35\x2a\x5a\x09\xa6\x96\x96\x26\x00\x43\x48\x6a\x08\xc0\xb6\xfc\x79\xfe\x77\xd4\xd6\xe0\xe4\xfc\x41\x47\xa9\x9a\xfd\x81\x8a\xa4\x56\x87\xc8\x33\xd3\x40\x70\x6b\x1c\xcc\x08\x7c\xad\xe3\xbc\xf0\xa4\x6b\x8e\x76\x2f\xff\x97\x36\x2a\x9c\x04\xcc\x10\x9e\x23\x7c\xbf\xad\x89\xab\xb7\x77\x2b\x24\x66\xde\x9d\x5a\x4a\xd2\xd1\x8c\x02\x1c\x72\x6b\x92\x93\xe9\x50\x68\x06\x1f\x8f\x7e\xa8\x65\x8d\x4e\xd6\x4e\xaf\x57\x5f\x6d\x8f\xcc\xa1\x70\x04\x86\xd2\x72\x4d\x0b\x6a\x4e\x79\xc3\x3a\xe6\x8f\xa0\x4b\x5c\xfe\x25\x53\xc3\xc2\x3f\x12\x9e\xd8\x3a\xbb\xeb\x42\xbb\x18\x27\x31\x29\x54\x60\x39\xc3\x43\x75\xfa\xc2\x2f\xcd\xf3\x3e\xfa\x52\x71\x6f\x07\x91\x35\xb1\x4d\xc1\xbc\x87\xf5\x08\xb2\x4f\xd1\x1e\xa1\xb7\x42\x94\xff\x59\x1d\x05\xbf\xa7\x9d\xd9\x08\xa8\x67\x1a\x66\xfc\xc0\x5d\x4d\x43\x8c\x21\xc7\xf2\xbe\x50\xeb\x31\x79\x69\xbe\xbd\x64\xd2\x96\xe2\x2f\x41\xf1\x91\xaf\xbb\x8f\xab\xcc\xcc\x68\xdc\xd2\xd4\xcb\x13\x8f\xdc\xf9\x79\x6d\x38\xf6\xec\x69\xdb\x15\x29\xd0\xbb\x01\x2c\x7f\xe5\x61\x03\x48\x79\xb3\x28\x59\xa5\x4f\x48\x6e\xcc\x67\x73\xce\x57\xaa\x35\x41\x64\x94\x10\xe3\x05\x2d\xc4\x78\xc1\x2b\xc1\xc7\x79\x18\x84\x63\x91\x78\x95\x96\x31\x45\xb9\x7e\xa7\x2a\x46\xea\xa7\xc5\xf4\x57\x4c\x1c\xa0\xf0\xee\x0f\x53\xdf\x4e\xf0\xa9\x6e\x6f\x2a\xd2\x71\x92\x31\xab\xa7\x34\xd3\xb7\x1c\x23\xca\x29\x57\x81\xeb\x17\xc1\x32\x39\x5f\xf0\x6c\xa6\xba\x2d\x25\xf5\x5d\xba\xc3\xb2\xa5\x9e\x50\x5a\x6c\x26\xcb\xb3\x96\xf7\x95\x19\xfd\xc6\x37\xae\x33\xae\x17\xf6\xb8\xd5\x1d\xd1\xc9\x29\x7a\x56\xbe\x56\x78\x1d\xe6\xdf\xe7\x82\x95\x66\x6e\xe7\xeb\xda\xb4\xbc\x34\xdf\x0e\x8a\x51\x18\x63\xea\x61\xfc\xbf\xa5\x0e\x82\x6f\x29\xde\xae\x20\x2d\xc2\x9c\xe5\x62\xe1\xe6\x7f\xd8\xd1\x4d\xd4\x34\x2a\x82\x73\x79\x42\x75\xab\xac\x48\x62\x04\x4e\xef\x9f\x76\xbc\x03\xfc\xa7\xaa\x3f\x67\x90\x86\x7d\xf6\x3c\x61\x4f\xb6\xa1\x86\xc9\x37\x0d\xb0\xc3\x85\xb6\x89\x92\xd8\x22\x13\xeb\xe8\x38\x16\x67\x39\x2b\xfb\xb5\xae\xf3\x85\x5f\x78\x7a\x5d\x71\xb9\x5b\xdb\xdf\xa1\x68\x33\xb9\xad\x84\x6f\x60\x6b\xf1\xfa\xf7\xe8\x20\xe0\xeb\x6a\xe5\x8f\x1e\x4d\x6a\x82\xfe\xbb\x97\x05\x2e\x85\xdc\xe9\xa9\x89\x6a\x94\x3c\xae\xb3\x05\xff\x97\xe6\xee\x47\xae\x88\x3f\xe2\x18\x58\x86\x45\x3f\x2b\x4d\x8e\x93\x84\xb9\xd5\x51\x34\x81\x47\x54\x6f\x94\x46\x07\xf7\x92\xb5\x7e\x4b\xa9\xbb\xbd\x8b\xe7\x16\x31\xc1\x87\x56\x67\xd7\x46\xb1\xcd\x55\x01\x98\xc5\x3a\xf9\x46\x75\x99\x98\x7e\x3f\x83\x12\x08\x1e\x18\xe4\xd9\xf0\xf0\xee\xd1\xda\x41\x31\xe2\x86\x52\x20\x3c\x3f\xf1\x64\xa0\xff\x96\xfa\x63\x90\xa7\xbc\x8f\x37\x42\xdb\xc6\xdb\x1d\x4f\x7f\xf3\xb6\x57\xec\xb4\x79\xc1\x61\x17\xd2\x41\x1b\x44\x18\xc3\xd7\x13\xcd\x73\x04\x19\x1d\x76\xbf\x35\x85\x2b\x5f\xd7\x32\x41\xf2\xf2\x61\xce\x20\x6c\xbc\xd1\x39\x45\x6d\xf5\x8e\xde\x92\x57\x6a\xdf\x30\xb7\xbf\x6d\x47\x24\xa1\x9f\x4e\x55\x58\x88\x7d\x81\xf9\x4b\x25\xf0\x51\x57\xf3\x9a\xdb\xdf\x36\x4b\x4b\x36\xc8\xc9\x15\xc3\x69\x77\x97\xf0\x96\x62\xd4\xcb\x6f\x92\x06\xd7\x96\xd3\x05\xfb\x9e\x8b\x7b\x06\x61\x1c\x87\x30\x0f\xac\x6f\x35\x51\xa7\x7b\x63\x93\x4b\x90\x44\x49\x6a\xfa\x09\x6f\x37\xa1\xc5\xa7\x8f\xf1\x4d\xa5\x69\x25\x2f\x52\x41\x4b\x39\x15\x7f\x4d\x6f\xe8\x53\x12\xe8\xa0\xca\xa6\x4b\x67\x4a\x0e\x86\x72\xea\xe5\x5c\x68\x39\x4d\x3f\x4e\xf6\xf2\x4d\x13\xd5\x35\xf3\xff\x55\x7f\xd6\xd3\x7b\xe9\x9f\xcd\x4d\x16\x0c\x6d\xda\x52\x25\x73\x16\xc7\xe0\x9b\x4a\x1d\xd9\x8e\x4d\x8a\x4e\x2f\xff\x98\xe0\xa1\x94\xed\xe4\xed\xff\x8a\x19\x14\x16\x0d\x03\x9b\x97\x21\x28\x79\xb9\xc6\xcb\x21\xeb\x28\x18\x9a\x34\xe2\xb9\x10\xe4\x26\xbd\xa5\x74\x73\x6b\x1f\xcf\x44\xa3\x96\x3f\x73\xee\xa9\xc0\xee\x5e\xa5\x04\x14\x99\xc1\x4e\x5a\xd1\x92\x17\x2f\xb7\x9b\x10\x23\x78\x17\xe9\xbf\xeb\x68\x6a\x15\x9c\x83\x9a\x4a\x01\x07\x2d\x73\x44\xc1\x40\x9e\x55\x02\x3a\x66\x90\xec\x20\x33\x88\x21\xf8\x49\xa7\x42\x62\xd3\x72\xc2\xeb\x87\x69\x3a\x11\x3b\x7f\x41\x55\x58\xbe\xc6\xd4\xe0\x19\xeb\xc0\x9d\x72\x99\xa7\xc1\xd0\x30\xe9\x0d\x2c\xc1\x35\xc5\x45\x72\x4d\x9d\x63\xa3\x30\xcb\xd3\x22\xcb\x2b\x74\x73\x1d\xbf\x27\x2f\x2a\x77\x72\x68\x4d\x1f\x7a\xbe\x62\x75\xaa\x14\x10\xf3\x4e\xe6\x71\xbd\xe3\x85\x49\x77\xae\x6b\x31\xf2\x75\x1a\x52\x19\x39\xef\x77\x5f\xa3\xe5\x0a\x8c\xd3\xf6\xee\x56\x82\x80\xbd\x7b\xdb\x66\x30\x48\x6d\x96\x85\x2b\x36\xa6\xb8\xc0\x9d\x6b\x47\x55\x5f\xfe\xd1\xa6\x6e\xf1\xa1\x59\xcd\x87\x49\x1a\x43\x6f\x0e\xee\xe0\x8c\x12\xe6\x7b\x53\xeb\xcd\x4d\xad\x3f\xbb\x95\x17\x75\xae\xfd\xd2\xfc\x63\xf4\x27\x22\xdf\xe1\x01\x66\x3f\x46\x43\x88\xf0\x7f\x50\x7e\x43\x88\x8d\xbc\x18\xd6\x75\x25\xf9\xf8\x3f\x75\x94\x1a\x2f\xd8\x5b\x44\x61\xc6\x27\x5b\xbf\x44\xbe\x8c\xbf\x69\xa2\xe2\x7a\x20\x48\x70\xc8\xdd\x9f\xf8\x94\x68\x66\x93\x42\xe4\xd3\x14\x44\xc7\x23\x79\x6a\x01\xd3\x5c\x3b\x35\x71\x7f\xca\xb3\xb6\x1f\xc1\xe9\x85\x98\xe2\x09\x85\xd3\x7a\x74\xdd\xe9\x0e\xc6\x83\x28\xcc\x86\x23\x13\x2b\x2e\x48\x36\x50\x42\x99\xd4\x98\x66\xa3\x0a\x23\x0b\x78\x21\x5c\x05\x10\x0c\x87\x2d\xaa\x23\xe2\x21\x88\x97\x17\xd9\x01\x0a\x00\x18\x1f\xa8\x18\x32\xa5\x0b\x1e\x15\x28\xab\x1d\xdd\x47\x3d\x5e\x02\xe9\x3f\xf8\x82\xc7\x35\x1b\xf5\xf1\x4e\xbd\x2c\xbf\xaf\x1d\x24\x71\x3f\x2c\xcd\x93\x54\xcb\x91\xaf\xbc\x87\x0d\xce\x37\x8e\xa4\x23\xb5\x11\xdb\x5c\x0c\x34\x16\xdd\xfd\x8e\x2a\xed\x82\x4c\x53\xd4\x77\xd4\x79\x76\x74\xf2\x8c\x12\x90\x2e\x37\xdd\xc8\xc6\xf9\xb4\x92\xec\xde\x54\x9a\xd6\xdc\x60\xef\x52\x17\x07\x66\x5d\x4a\xdd\xa7\x52\x06\x26\xcd\x81\x23\xc3\x3c\xc1\xe4\xf3\xb5\x5a\x1b\x41\x62\x82\x61\x4b\x89\x2b\x70\xd9\x88\x6f\x9c\xef\x9b\x99\x7e\x39\x45\x7f\x67\x9f\x6b\x03\x2f\x47\x1c\xfe\xec\xdd\x4e\x05\x88\xf4\x8c\x36\x0a\x51\x3e\xec\xaf\xc5\x50\x05\x12\x8a\xa7\x72\xf1\x0b\xf7\x53\x1d\x02\x3e\xdf\x8e\x6d\x98\x97\xa7\x48\xb9\x31\x1c\x05\xc5\xa2\x8b\x2d\xd4\x79\x93\xda\xd8\x14\x51\x4e\xc9\x7b\x2e\xac\x63\x70\x64\x65\x63\x2e\xc4\x9d\x50\x7e\x6c\xab\xeb\x64\x00\xac\x89\x5d\xc1\x46\xd0\xb6\x2d\xc7\x98\xb1\x9d\x36\x15\xb8\x99\x8e\x3a\x0c\x7d\x90\xc4\x81\x1d\x4b\xd9\x54\x36\x95\x07\x03\x9d\x57\xb4\x7c\xe3\xa2\x57\x6e\x0c\x6a\x1e\xfe\xa6\x87\x8f\x56\x44\xa9\x1a\x75\xed\xfc\xb1\x2b\xd1\x99\x97\x64\xf8\xe5\x46\x86\xd0\xd5\x61\x38\xca\xc2\x80\x55\xed\xa4\x0b\xc0\x47\x43\x77\x95\x75\xcf\x6d\x19\x7c\x03\x26\x56\x1e\xa6\xe5\xe0\x6c\x5e\x56\x0e\x66\xcf\x9a\xbc\x55\xfa\x78\x8a\x48\xd1\xdd\x3c\x14\x5e\x18\x24\x71\x2e\xe2\x51\xd2\xe3\xe9\xed\xc1\x95\x26\x58\x92\x57\x6d\x58\xa3\x1d\x8a\xd3\xe0\x32\xcd\x39\x5f\xab\x46\xec\xe5\x30\x0f\x86\x36\x7e\xe8\x99\xfd\xa4\x6a\xf4\xcc\xb2\x34\x7b\x01\x7e\xa8\x48\x86\xfb\x5a\xde\x39\xf5\xae\x59\x38\x88\x91\x0d\x41\x7d\xf6\x3a\xd5\x5e\x71\xa2\x5f\x56\x22\x41\x7f\xff\xac\x3a\x97\xde\xd2\xc0\xf2\xb3\x35\x97\x7e\x6e\xbf\x26\x09\xe3\x6c\x18\x17\x8d\xe9\x31\xe0\x59\xde\xd5\x28\x9f\xd3\xce\x9e\x2c\xa5\xb6\x6f\xd3\x10\x1d\xc7\x8e\x74\x90\x76\xb1\x10\x10\x36\x61\x96\x4d\xba\xcc\x40\xf6\x0a\x1b\x27\xdf\x28\x6f\x32\x1d\x5a\x22\xc5\xdf\xa9\x28\x2a\x50\x77\x67\x75\x1c\x6c\x24\xac\x1b\x1e\x02\xbe\xe9\xf8\x1e\x78\xb4\x89\x8b\x9e\x8e\x92\x5e\x3e\xad\xd0\x60\x04\x3b\x33\x8c\xb4\x01\x4c\xe6\xb6\x52\xfa\xb9\x5d\x5b\xfd\x7b\xf6\xb4\x97\xc2\xd4\xca\x51\xc2\xb9\xed\x6a\xa2\xdb\xd7\x22\xfb\x26\x9d\xd2\x45\x4e\x7a\x54\x5d\xe4\x41\x72\xe8\x91\x6e\xc3\x04\xe5\xa9\x89\xb3\x20\x0d\xdd\x56\xc6\xd1\x7d\x4e\x1d\xe3\xe7\x2a\x39\x91\x70\x65\xad\x55\xc5\x80\xd1\x53\x89\x6e\xe0\xd6\xb0\x62\x61\x71\x81\x58\x56\x39\x17\x80\xde\xf5\x37\x3b\x9e\xf2\xe9\xcd\x26\x88\x56\x96\x9b\x81\xe0\x13\x05\x1f\xec\x2d\xd2\xf1\x87\x6a\x27\x8c\x6d\xce\x9a\xf5\x08\xde\x4e\x69\xce\xb8\x53\xb5\xad\xf7\xea\xab\x20\x96\xec\xf1\xec\xa8\x9d\xe1\xf1\xaf\xe7\x9a\x78\x2e\x41\x55\x32\xe5\x3b\xb2\xaf\xa9\x3d\x8e\x55\x84\x85\xfe\x51\xcd\xb7\xd8\xbb\x77\x5f\x7b\x1c\xf0\xcb\x31\xe7\xa3\x2a\xe0\xfd\xd1\x64\x2b\x6c\x93\xb6\x51\x9a\xda\x6c\x9c\xc4\x7d\xc1\x6b\x69\x26\x39\x81\x1f\x7a\xa1\xad\x30\xce\xc3\x51\xd8\x67\x0a\xe1\xd2\xef\x72\x1c\x7a\xe5\x0a\xe5\x9b\x26\x3a\xda\x71\x92\xe5\x36\x25\xcf\x82\x23\x69\x9a\x2b\xa9\x54\x96\x3f\x87\x34\xcb\xe9\xc9\x2f\x6f\xa5\xdb\x5c\xd8\x27\x13\xb1\x8b\x72\x17\xc8\x34\xb3\xc0\x00\xab\xb2\x69\x30\xe0\x61\xd5\x19\x79\x83\x4f\x2a\x9c\x07\x7f\xae\x49\x9a\x4f\xea\x6e\xed\x0a\xf3\xef\x2d\x72\x1d\xf9\x67\x34\xfd\xea\xaa\x95\x6e\x66\xa4\x1b\xa0\x29\xc6\xdd\x62\x6a\x69\xdf\x76\x25\x95\x60\x68\x97\x87\xc9\xca\x94\x2f\xd1\x9e\x51\xc2\xb5\x87\x75\xc2\xfe\x9a\x0e\x33\xed\x72\x92\x64\x66\x67\x19\x27\x73\x0f\x42\xc7\xb3\xdc\x9c\x50\x8a\xdc\xa0\x85\x44\xe9\xe5\x27\x1d\x65\x69\x6f\x6b\xdc\xf7\x55\xc5\x9d\x72\x46\x61\x89\xb2\x31\x18\xca\x1e\xf3\xbe\xe0\x05\xd5\xe6\xf7\x25\x2a\xd8\x58\x7e\xa7\x3b\xd5\x34\x52\x39\x5e\x8e\xad\xbd\xfc\x29\x80\xe3\x4e\xd0\x4f\xe1\x5c\x67\xad\x1d\x7c\xe4\x3a\xce\x39\x18\x8d\xbf\x40\x35\x90\x89\x64\xe8\xdd\xb8\x85\x86\x6a\x65\x42\x30\xb3\x85\x7a\xf5\xd7\xcb\x7d\xaf\x19\x53\x3e\xd2\x3a\x2f\x0a\xa7\xfa\x39\x45\x71\x0c\x19\xd6\x04\x4b\x45\xaf\x8c\xa2\xcb\xf0\xc1\xb1\xf3\xba\x98\xa4\x2e\x17\xb1\x77\x6f\x7b\x14\x4a\x02\x4e\x78\xb9\xfd\x34\x23\xf3\x01\x23\x7d\x56\x41\x4e\xec\x21\xe3\xb8\x56\xfc\xf3\xbd\xd7\xf1\xbd\xdb\xef\x35\x41\xe4\xed\xa1\x71\x92\xa2\x0c\x2b\xa5\xe9\x96\x6f\x41\xab\x19\xf3\x97\xe6\xdb\xd9\x30\x49\x65\x5b\x89\x7f\x44\x3b\x11\x2b\xea\x56\x47\x57\xad\x94\xd2\x7e\x92\xe5\xd9\x13\x34\x0a\x70\x03\x2e\x50\x42\x06\x8e\x2f\x18\x7b\x91\x13\x3c\xcb\x12\xa3\x48\xc6\x23\x55\xc3\xc8\x3e\xcc\x3f\xe6\x69\x5b\xb7\xb5\x67\x8f\x07\x3d\x94\xab\x84\x39\x37\x35\xfd\xfd\xfb\xaa\xf3\x64\x3b\xe0\x94\x38\x9b\x7f\x41\x76\x8d\x01\x0c\x13\x45\xe4\xba\xad\xab\xca\x1b\xd3\xd4\xb4\x84\x1f\xd9\xb6\xde\x40\x23\x32\x2e\xfd\x17\xa5\xec\x71\x56\x29\x7b\x9c\x9d\x3c\xea\xf1\x2e\xd9\x13\x6a\x05\x9d\x40\x5d\xd9\xf1\x2b\x28\x39\x44\xca\xe3\xd5\x55\xa4\x91\x1e\xc7\xe3\x9e\xe8\xb4\x9e\x7b\xce\x33\x53\x78\x7a\x7f\xd5\xe2\x35\xb5\xee\x69\xde\xce\x74\x94\x8e\xdf\x87\xf0\x04\x10\x1c\x5f\x01\x72\x44\x7c\x7d\x1a\x5d\xc7\x66\xf0\x92\x27\xa6\x69\xea\x71\x5a\x32\x51\x66\x5b\xaa\x59\x15\x6e\x10\x5f\xd7\xb8\xeb\x9f\xa7\xa4\x42\x6b\xab\x0d\xe1\xeb\xda\x26\x78\xf5\x55\x22\xe7\xa3\xbf\xe7\x22\x1f\x39\x71\x52\xf0\x6b\x38\x67\xf3\x61\x18\x8b\xbb\xc4\x82\x98\x1d\xe5\x3d\x9c\x75\xee\xfe\xc8\xa4\x69\x98\xe4\x79\x4b\x65\xf4\x36\x2b\xcd\xa5\xbe\x9a\x30\x88\x4c\xcc\x3d\xaf\x4d\x72\x90\x4e\xa3\x32\xe9\x85\x0c\xb5\x12\x95\x07\x2d\xf9\xe0\xfc\xc0\x22\x5e\x4a\x8a\xb8\x2f\x31\xa8\x03\x3f\x39\x94\xfe\x45\x55\x1b\x88\x42\x90\x2f\x1c\xf0\x64\x6c\xbe\xe4\x45\x6d\x32\x2e\xca\xcc\x6d\x9c\x81\xf8\x5d\x08\x10\x7c\xda\xe4\xe2\x44\xa1\x93\xff\xcb\x5a\x4e\xf0\xa5\xf9\x76\xdf\x9a\xc8\x01\xcf\xb1\x96\xae\x2a\xa2\xed\xab\xb5\x12\xd8\xc1\x85\x76\xb2\x1a\x4f\xab\xbe\x7a\x0e\x63\x85\x18\xb1\x7c\x66\x78\xd2\x1f\x60\x55\x61\x6b\x3e\xe8\x6c\xcd\xf7\x88\xb3\x33\x32\xb9\x19\x24\x69\xdf\xb4\xbc\x4f\xcc\x95\x3c\xbe\x71\xfd\x87\x7d\x6a\x12\xe4\x9a\x09\x2c\xdb\x8d\x89\x72\xf7\xb6\x77\xd5\x3c\x9c\x53\x54\x31\xa9\x1d\x27\x19\xe5\x00\xa6\xbc\xc6\xff\xd4\xba\x27\x97\xfb\x4b\xc5\x1a\x33\xdd\x6d\x58\x62\xc9\xd2\x92\x4d\xf9\x97\x51\xc9\xe6\x42\x2b\x73\xf7\xd2\xda\x90\xcd\xff\x8c\xd2\x34\x88\xa9\xaa\x16\xa1\xca\x8d\x52\x03\x30\xda\x7c\xad\x8a\x1d\x20\xc1\x9a\xdb\x2f\x27\x1b\xce\x2c\x77\xcc\x2d\xce\xba\x64\x51\xf9\xb0\x92\x82\xfa\x8a\xca\xda\xf6\x22\x3e\x3c\x70\x50\x8a\x96\x32\x2c\x2d\x13\xec\x4a\x91\xc5\x9f\x1f\x66\x4c\x70\x5b\xc4\x6d\xae\x18\xae\x33\x77\x17\x5d\x11\xa5\x97\x00\x02\xe6\x1a\x47\x37\x34\x3d\xf7\x36\x82\x09\x22\xab\x88\x22\x8c\x70\xa0\xb6\x16\x67\x37\x2f\x3b\x37\x65\x58\x64\xcb\x5e\xef\x51\x75\xa5\x89\x45\x39\xa2\x99\x67\xce\xa3\x6f\x50\xf2\xbc\xbf\x8a\xd5\xea\x78\xaa\xe6\x7d\x1f\xf6\x93\x95\xce\x95\xbe\x59\x23\x59\x48\x78\x31\x77\x55\x83\x35\xa7\xf4\xe5\xe1\x9e\xaa\xa6\x10\x96\x8a\x88\x36\x94\x24\x5f\xe9\x88\x73\xf5\x0f\x57\x95\x7b\xb7\x2e\x85\xdc\x3e\x30\xfb\xe2\x13\x9a\x3b\xf9\x1a\x76\xa0\xa8\x20\xf8\x5a\xf5\x0d\xb2\x69\x58\xc3\xff\x0b\x0e\x37\xd6\xdf\x56\xc5\xc8\x73\xf8\x69\x2c\xcb\xfb\x13\xa5\x51\x79\x5a\x33\x42\xb2\x9b\x09\x87\xf6\xbc\xe2\x76\xf9\x6c\xe2\xe1\x79\x4c\x15\x2e\x90\x0f\xf2\xa6\x59\x7c\x15\x03\x0f\x0b\x78\x5d\xf5\x9b\xae\x9a\x68\x99\xb8\x3a\xb0\x08\x90\x9c\xe3\xeb\x87\xc2\x60\x7a\x61\x9f\x7b\x39\xb0\x1b\x80\x76\xaf\x88\x49\xca\x4d\x43\xf5\x74\x75\x48\xc9\x8a\x79\xef\x4c\xd1\x27\xa4\x19\x6b\xeb\xc6\xfc\xe6\x5c\x3b\x0a\x97\x2d\x27\x1d\x91\x62\x03\x52\x16\x6f\x73\x53\x33\xa1\xa9\xee\xd3\x28\x31\xfd\x19\x8f\xc2\x07\x9b\x81\x23\x19\x52\xc7\x9f\x77\x0e\x99\x84\x41\xfe\xc8\xdb\x16\x6b\xd2\x91\x41\xfb\x8e\xff\x46\x2e\xc4\xf1\x8d\x53\x01\xef\x9b\x58\x81\x82\x3f\x9d\x54\x33\xce\x8e\x75\xe0\x7c\xad\x22\xf2\xea\xab\xa4\x15\xcd\x15\x7a\xc6\x2f\x60\x25\x4d\xad\x7b\xf4\xe9\x87\x98\x64\xd4\xfc\x66\x6a\x5d\x1c\x07\x17\x67\xdb\x52\x95\x44\x50\x72\x51\x11\xea\xd5\x0f\xfb\x32\xb0\x36\xe9\xc0\x72\x10\x82\xb4\xc1\x4f\x15\xe4\x06\x19\x7d\xe9\xe0\x7b\xd8\x92\x18\x9a\x38\x9c\x82\x67\x27\x22\x94\x1e\x80\xcb\xce\x3c\x23\x38\x74\x0d\x2a\x1c\x0c\x73\x9e\x59\xbc\x10\xea\x75\x0c\x84\xaf\x94\xc7\x9b\x6a\xd9\x41\x9a\x70\x0d\x41\x40\x9a\xf4\x43\x7c\xa3\x51\x25\x44\x76\x14\xe7\x5a\xc4\x87\xb1\x80\x42\x80\xfe\x6c\xe8\x93\xba\x61\x5e\x30\x25\x9c\x03\x3e\xff\xdd\x8f\x30\xdd\x7c\xd3\xd0\xe1\xf5\x22\xa1\x35\xd8\xbe\x8a\x0b\xa1\xdc\x09\xd5\xac\x65\x96\xdf\x48\xe0\xca\xa0\xd9\xe1\x16\xb6\x27\xdf\xa8\xe0\x22\x88\x4c\x38\x9a\xf2\xd2\x29\x9f\x56\xf8\x20\x55\xf6\xb7\x0e\x89\x27\xd1\x84\x64\xc5\xa6\x2d\x0f\x32\x86\xe6\x8c\x70\x83\x28\x6e\x78\xf3\xc2\x74\xe9\x6f\x6b\x1d\x0c\xec\xb4\xdb\x4a\x3f\x8f\xd7\x32\x26\x67\xa7\x53\xae\x37\xa3\x24\x48\xe8\xa5\x71\xe6\xb2\xe1\xe5\x1b\x4d\xf6\x55\x8c\x46\x36\xdd\x05\xdb\x89\x73\xff\x47\xca\x39\xfa\x40\x21\x82\xb8\x67\xa7\x52\x4f\x96\xb2\xba\x0f\x96\x18\x2a\x20\x25\x3b\xda\xbc\xf0\xe6\x41\xd7\x21\x61\x4a\x8d\x69\x63\xae\xfd\x7a\x61\xca\x30\x87\x67\x8b\x93\xce\x74\xfe\x4a\x02\xfa\x29\xa5\x1b\x3d\x0c\x83\xc8\x66\x33\x3e\x26\xba\xa4\x35\xbf\x90\xa8\xc4\xfa\x9d\x42\x7c\x01\x9f\xfb\xfb\x08\x6f\x25\xf2\x6c\xca\x61\xa4\x49\xcf\xa2\x3a\x22\xac\x55\xf4\xae\x8a\x31\x40\xce\xce\x7b\x0d\x33\xfc\x22\xa1\x39\x06\x33\x5e\x04\x65\x77\xb7\x34\xe6\xf0\xc7\xee\x57\xa8\x64\x5b\x4e\x3c\x0e\x10\x38\x84\x40\x33\xeb\x15\x7c\xed\x38\x7f\x8c\x4e\x0d\xac\xc4\x2b\x1d\x85\xf0\x02\x4c\x04\x75\xe4\x07\xb4\x8e\x60\xf9\xfe\x2d\x05\x77\x08\xe7\x4e\x20\x54\xe4\x4f\xe3\x5c\xc4\x7b\x9d\xa0\x85\x2b\x54\xf9\x7a\xe1\x52\x48\xc4\x5f\x45\xa6\x1c\x27\xf6\x06\x2a\x72\xfc\xbd\xae\xe5\xbe\x67\x32\xbb\xcb\xff\xf8\x03\x1c\x98\xae\xe9\x62\x71\xd6\x9f\x7e\x9e\x6c\xe1\x8c\x6a\xb6\x07\x22\x16\x3d\x1d\xa8\x5d\x61\x71\x4f\x21\x7c\x54\xa7\xad\x3b\x7a\x9b\x10\x0c\x4b\x26\xcb\x7b\x26\x8a\xaa\x10\xeb\xbd\x7b\x5d\xf9\xb7\xa1\x9a\x9b\x8d\xc3\x38\x59\x5a\x9a\xf2\xe8\x84\xcd\x0a\x5d\x1d\x8d\x9d\xe0\x11\x9e\xd0\x04\x98\x31\x57\x58\xd4\x81\xb9\xcf\x1d\x98\x5f\xd5\x02\xfc\xd2\xf9\x9b\x29\x52\x15\x44\xad\x52\xbf\xf6\x81\x45\x14\x82\x48\x5d\x09\xe7\x4f\x54\x0b\x4b\x0d\x9b\xf9\xf5\x83\x6d\xc2\x72\xd2\x73\xc2\x1e\x9d\xef\x28\x27\x43\xeb\x68\x2f\x2f\x27\xad\x96\x62\xab\xd3\xd8\x9f\x86\x46\xa1\xf6\x38\x0d\x47\x42\xd1\xad\x69\xfd\xf8\xba\xb6\xf6\xf7\xee\x5d\x6c\x9b\x55\x93\x5a\x55\x3d\x79\x5f\x55\x4f\xde\x57\x19\x29\x62\x67\x73\x11\x90\x43\x4d\x3a\x77\xe0\x3d\xd7\x41\x96\x2c\x2d\x11\x81\x19\xa7\x3c\x91\x32\x60\x0f\x8d\x6f\x74\xad\x76\x68\x52\xfb\x15\x9f\x0f\x69\xa1\x85\x14\xf6\xf1\xda\xc4\xeb\xde\x1c\xc5\x37\x08\x7f\x13\x0d\x99\xc8\x62\xd1\xfa\xd5\x02\x5c\xb2\x2f\x95\xe6\xd0\x19\x2d\x24\x78\xbb\x33\xb5\xef\xb7\xbf\xe9\x18\xbf\xca\x09\x43\xdd\xf7\x2a\xf6\x1b\xe6\xe2\x06\x49\x92\xf3\x92\xef\xa8\x96\x9f\xb3\x4d\x9a\x45\xcb\x76\x2d\xb6\x19\xa9\xd5\xc0\x3a\xcb\xc0\x28\x0f\xe7\x3d\xcd\x9b\x60\xd3\x81\xd0\xdd\xb1\xd6\x54\xc7\x13\x3a\xff\x8e\x3a\xc0\x46\xe1\xa1\xdc\xee\xd4\xda\xd4\xe5\x76\x87\x6f\x84\x73\x46\x52\x98\x4a\x7e\x60\x03\x7e\x18\x36\xa9\x6e\xab\x02\xb8\x0c\x03\x3c\xb5\xee\xa3\xa2\xd5\x34\xc9\x85\x20\x0f\xae\xf0\x9d\xea\xce\x52\xf5\xe3\x26\x68\x41\x38\x1a\xd9\x7e\x48\xda\xf7\xae\x15\x02\x0e\xa3\x50\x4b\x29\x4e\xec\x61\x92\x4f\x79\x65\xe7\x63\xaa\xd3\xf4\x7a\x47\x09\x5b\xf9\x7c\xad\xe9\x85\xb1\x85\x62\xb6\x80\x00\x5b\x4e\xa0\x99\x19\x79\x25\x49\x2e\x31\x58\xb9\x8b\xa1\xf2\xf0\xa2\x53\x9e\xf1\x7b\x03\x5a\xa5\x8e\x0c\xd7\xc7\x39\xd7\x9b\x1c\xee\xd2\x66\x72\xe6\xc4\xe5\x82\xca\x05\xc1\x37\x5a\xa7\x39\x4d\xfa\x05\xa1\x3c\x0f\x3a\x39\x16\x00\x20\x24\x2a\x95\x43\x7f\x3c\x4c\xf2\x04\x85\x12\x9d\xc9\xe3\xeb\x7a\x6d\xe5\xe5\x7d\xed\x2c\x4f\x82\x65\x5e\x5f\x4e\x65\xb7\x7c\x74\x11\xaa\xda\xfa\xe8\xcf\x23\xc5\xcf\x9e\xb0\xec\x3f\x0f\xff\xff\x42\x23\x05\x6f\x78\x06\xa3\x24\xcb\x57\x99\x32\x4d\xe8\xad\x7d\xbe\xe4\x81\x02\xb5\xa6\x36\xb3\x23\xd6\x9f\x97\x8a\x0d\x52\xaa\x7c\xad\x0c\x5a\x1c\x30\x70\x5b\x07\x89\x38\xa6\x4f\x4d\x14\xb1\xce\x5d\xc5\x9b\x18\x9b\x34\x35\xac\x01\xf9\x8a\xf4\xa3\xd2\xb3\x48\x6f\xea\x13\xba\x0e\x62\xe3\x7c\x97\xcf\xbc\x5f\xa3\x75\x8f\x01\xdd\x86\x8e\x1b\xc9\x29\x93\x35\x91\x64\x33\x3d\x94\xc8\x34\x53\x7f\xaf\xb4\x78\x94\x27\x86\x90\x24\xc2\x35\xe7\xff\x51\x24\xd7\x9e\x5e\xad\x6f\x97\x22\x1b\x20\x57\x8c\xd0\xf2\x82\xe2\xc9\xbb\xe0\xf2\x6b\x91\x35\x99\x5d\x35\x50\xaa\x10\xe4\xb3\x4a\xe5\x68\x35\xc6\x93\x5e\x7b\xa5\x70\xca\x78\x28\xea\x7f\x06\xa3\xc4\x37\x6a\x52\x7a\x29\x18\x4b\x5a\x0a\xe3\x7e\x5c\x1b\xa2\xaa\xf4\x50\x90\xbc\xa0\x78\xf1\x37\x61\x29\x5d\x0e\xc5\xb5\xfb\xee\x5e\x2f\x47\x43\xf8\x8a\xe8\xab\x91\x6c\x64\xcc\x26\x36\xf0\xd3\xdd\xd6\x37\xe7\x38\x96\xdc\xce\x0c\x72\xc8\x61\xd6\x5b\x98\x29\x4b\x9a\xa4\xab\x26\xed\xab\x31\x83\xde\x34\x5f\xab\xd6\xc0\xd4\xbe\x5e\x84\x59\x98\x6b\xa0\x1b\x02\x33\x09\x43\x1d\x7a\xa3\x3c\x80\xa6\x14\xc1\xf5\x5d\x1d\xa7\x80\xca\x07\x41\xc8\x99\x9a\x93\x71\x70\x6e\x7f\xbb\x6f\x47\x26\xee\x63\x6b\x8a\x29\xf2\xf1\xe8\x69\x2d\x3b\x66\xd2\xbe\x8d\x31\x29\xac\x49\x39\x51\xad\xe5\x75\xc6\xe9\x32\xe4\x82\xfc\x3f\x1f\x90\xa8\x09\x9c\xed\xa8\x92\xd3\xd9\x1a\x4c\xa4\xdc\xfb\xaf\x25\x3d\xd7\x06\x82\xa5\x81\xd4\x11\x5f\xd7\x3e\x53\xbe\x88\x09\xa8\x9f\x12\x43\x81\x94\xd1\xa6\x62\x70\x7b\x13\xae\x1f\xfc\xad\x7b\xb5\x53\x8d\xda\x0f\xe2\x71\x64\x62\x87\x09\x72\x22\xac\x7b\xf7\x3a\x84\xdc\x13\x2a\x44\x1c\x5a\x77\xfe\x39\xe5\x77\x1f\x78\x6c\xd6\xfc\xf7\xfd\x2f\x97\x43\x48\xbe\x99\xcb\x63\xff\x98\xe6\x87\xaf\x6b\x1e\xd4\xf3\xed\x5f\xf9\xed\xdf\xfc\x8d\xc5\x96\x47\x40\x81\xd0\x49\xaa\x4d\x6a\x17\x44\x61\xbc\x4c\x88\x8f\x72\xe3\x03\x7d\x70\x1b\x6e\x04\xdf\xa8\xe2\x4b\x66\xe2\xfe\x1a\xfa\x53\xa4\x7a\x56\xda\x6c\x9c\x9f\x50\x34\xc6\xc9\x7c\x53\x29\xba\x5e\x51\x5d\x43\x41\x12\x93\xe3\x98\xa4\x68\xdb\x95\xba\x4b\xf9\x2d\x7c\x5d\xa3\x10\x29\x07\xb8\x67\x09\x49\x2b\xae\x15\x6f\x2f\x05\x5f\xf2\xad\x86\xc3\x24\xcd\x2c\x27\x57\x91\xdf\xe2\xb4\x2e\x37\x1e\x76\x54\x8a\xe0\x7b\xca\x81\x28\x9f\x8b\xd9\x7a\x59\xc0\x94\xd6\x80\x88\x99\x6e\xad\x93\x1f\x98\x7d\x85\x94\xbd\xcb\xd5\xc6\x6d\x67\x52\x5d\xd4\xd8\xb4\x7a\xfd\x22\x30\x59\x3e\xe5\x97\xe7\x45\x95\xbe\xe0\x30\x13\x01\xf1\xdd\x1a\xfe\x0c\x42\x00\xa3\x71\xe9\x75\x0f\xc3\x71\xcb\x63\x90\xf0\x25\xa2\x15\x27\x21\xcc\x1b\x36\x4d\x66\x7c\xa7\x32\x88\x50\x10\xb5\x00\xd9\xc3\xe6\xeb\x03\x5a\x4a\xc8\x3d\xdf\xa1\x65\x42\xbd\x5f\xfb\x9f\x6e\x34\x45\xec\xe3\x4e\x29\x9e\x90\xeb\xe5\x2b\x6f\x9e\xd1\x9a\xe2\x4d\xe9\x1f\x74\xa5\xb7\x7c\x21\xee\x43\x38\x92\x7c\xd3\x48\x28\xb7\xc2\x24\xbf\x6e\x26\x50\xb6\xe6\x6b\x55\xdf\x1e\xa7\x61\x82\x54\x32\x8b\x74\x72\xba\xda\x49\xea\x94\x4b\x00\x26\xf6\x5d\xd2\xb2\x76\x5a\x9e\xbe\xcd\xe7\xc2\x43\x01\x4c\x3d\x3b\x0c\xe3\x7e\x4b\xc9\xe8\x75\x14\x6d\xf0\x59\xf5\x1c\xc1\xd0\xae\xac\x3d\x1c\x21\xe5\xcf\xf9\xd4\x80\x1b\x14\x10\x87\x53\x8a\x26\x12\x9a\xeb\xa8\x81\x3c\x86\x68\x51\x48\x5d\x7d\x61\xe0\xa8\xe6\x06\xe5\xf6\x7a\xc1\xa6\xf8\x1f\x29\xa4\x3c\xd5\xe4\x6a\xd6\xa3\xa3\x7d\x9c\x01\xa5\xa5\x05\x3a\x36\x78\xc5\x7c\xed\x92\xdb\x61\x5c\x1e\x33\x44\x3b\x8a\x61\xc6\x9a\x65\x7f\x8f\x6f\x6a\xce\xd9\xdc\xfe\x76\x1e\x8e\xe4\xfb\x99\x1f\x90\xbe\x5f\xb8\x02\xfd\x93\x87\x71\x38\xe3\x73\x62\xa0\x6b\x13\x9e\x5f\xc5\x6b\x30\x4d\x45\x02\xc1\x98\xd0\xaf\x63\x2e\xff\xa2\xa9\x4f\x7d\x64\xd2\x30\xe7\x64\x1b\xc3\xf6\x3b\x1a\xc2\xdf\x10\x7f\xbf\x66\xc6\x26\xb6\x99\xdd\x81\xf7\xc4\xaa\x01\x23\x07\x1e\x6d\x86\x58\xc8\xa4\x5f\xce\x03\xd0\x76\xac\x2b\x94\xe7\x93\x5d\xd5\x27\x75\x44\x51\xaa\x8f\x93\x7c\x9c\x14\x69\x1a\x4e\x79\x6f\xed\xd2\x44\xb1\x1d\x80\x36\x9b\xc5\x08\x95\x1b\xd7\x0f\xb3\xa1\x65\xb2\x35\x46\x7a\xd2\xab\xa0\xc2\xc3\x09\x21\x21\xa1\xf7\xc3\x7d\x95\x9c\x6c\xc0\xa9\x79\x09\x61\x0f\x5f\x68\x6c\x3b\x1f\x16\xa3\xf1\x30\xf5\xd3\x5c\x69\x2f\xe6\x9b\xce\x33\xca\xb7\xec\x87\x01\x89\x05\x4c\xf9\xcc\x1e\xc0\x92\x88\x01\xb6\xd1\x60\xe1\xe7\xbf\xd5\xa0\x82\x3e\xdf\xce\xf2\x94\xb8\x85\x70\x92\x62\x88\x91\x95\xe6\xeb\x5a\xb1\xe0\xef\xec\x6b\x9b\x38\x4e\x8a\x38\x90\x4f\x09\x63\x11\x6d\x1d\xa1\x32\xf2\x79\x8e\xc8\xae\x84\xb1\xa5\xe2\x18\x20\x5a\xf7\x3b\x8a\x70\xf9\x03\x5a\x6a\x7c\x4d\xa3\xc5\x7f\xe4\xc5\xc8\xe3\xdc\xa6\x41\x32\x1a\x9b\x18\x1d\xcc\x9c\x48\xa2\x99\x92\xa4\x92\xee\x0a\x8e\xc2\x20\x4c\x0a\x28\x26\xc3\x1e\x21\x53\x22\xcd\x01\x3e\x68\x38\xdb\x30\x26\x73\xed\x38\x01\x7f\x80\xa6\x88\xbf\xaa\xc0\x1f\x57\x35\xe6\x3e\x59\x45\x05\x17\xe9\x38\xa4\xe6\xd0\xcb\xcb\xa8\x1a\xe4\x10\xde\x57\x79\xc7\x64\x6c\x53\x93\x0b\xb8\x4c\x0a\x52\x8a\x50\xe6\x5d\xe5\xbe\xe4\x66\x4c\x54\x71\x73\xfb\x9d\x60\x3c\x05\x71\x5a\x31\x03\x1c\x6b\x37\x5d\xba\xc3\x84\x69\xe9\x20\xd9\x06\x2a\x33\x77\xa3\xda\xa4\x32\x6b\xb9\x4d\x4a\x75\x74\xb9\xf6\x2e\x4f\x44\x65\xc6\xa6\x17\x46\x42\x39\x2e\x42\xf4\x2d\xc7\x9a\xae\xeb\x92\x4b\x49\x6a\xd3\x22\x8e\x45\xae\x87\xc1\xbb\x1d\x7f\x70\x1e\x55\xb1\x41\xdf\x06\x76\xd4\xb3\xe9\x63\xa5\x71\xc2\x0a\x82\xf0\x34\x6c\xe7\x34\xc2\x24\xa5\x9c\xf1\x22\x43\x69\x20\x60\xc7\xb5\x5f\x58\x00\x66\xaf\x64\x30\x17\x4c\xfc\x15\x30\x4d\x29\x62\x3a\x1f\xde\xd2\x8b\x0b\xe5\x25\x4d\x02\x7f\x86\x80\x2e\xe2\x35\x78\x4b\xb0\x6a\xcd\x98\x5b\xd1\x5c\x51\x65\x71\x96\x8f\xc8\x1f\xd2\xde\xc7\xdc\x7c\xdc\xf1\x76\xe7\xf5\xc2\x66\x94\xbe\xdb\x4d\x0f\x0f\xc3\xf3\x7b\xaa\x0b\xe3\xc8\xc4\xa3\xb3\x39\x09\xcd\x18\x2b\x0e\xf1\xe0\x7a\x6e\xe8\xf4\x07\xed\x16\xb1\x71\xe5\xc3\xf2\x75\xc7\xf7\x51\xb0\xa2\x96\x08\xbe\x6d\x5d\xed\xcf\x13\x30\x92\x58\xde\x65\xad\x48\xb9\x46\x09\xc8\x9f\xa8\xf4\xea\x64\x6b\x9c\x46\x10\x5e\x38\x5f\x7d\xbf\xd8\xd9\xc5\x5f\xfc\xfa\x0b\xe8\xc9\x17\xf5\x8e\x6a\x76\xc0\x47\x98\xa7\xd5\x11\xb4\x60\x5e\x68\x29\x62\x8e\x0d\x5d\xf3\xd9\x50\xe0\xe3\x71\x64\x72\x6b\x0a\x5a\x56\xd2\x09\xdb\x52\x2d\xb2\x75\xd5\xbf\x51\x18\x87\xa3\x90\x93\xba\x38\xcf\x7f\x04\x3f\x81\x6f\x54\x52\x71\xd9\xc6\x79\x11\x2c\xb3\x48\x05\xce\x1f\xae\x5a\x20\x3e\x81\xe0\x25\xf2\x3a\x77\x6a\x7e\x17\x75\x53\xc4\x66\x64\x15\x7e\x71\xba\xeb\xdb\xa3\x6f\x57\xa8\x0d\x6a\x59\x9d\xd2\xe7\x8c\x12\xc3\x12\x47\xc8\x72\x83\x71\x8b\xaf\x2b\xb4\x19\xcb\x36\x7d\x42\xd5\xda\xc1\x05\x82\x8d\x71\x6d\x52\x69\xbc\x5a\x78\x59\xe8\x32\xe1\xd0\x31\x28\x8d\xbc\xcf\x8a\x72\x0e\x8e\x66\xb6\xe5\x28\xb8\x6f\x12\x70\x09\x81\xd5\x35\x98\x6e\xb8\x90\xbf\xdf\x69\x1d\x94\x21\x3a\x4a\x0b\x10\x99\xcc\xb7\x91\x09\xc5\x2a\xbd\x86\x5a\x83\x08\x96\xa8\x38\xe1\x81\xcb\xec\x0c\x4d\xba\x42\xe1\xb6\x7b\xcf\x13\x15\x4e\x65\x75\x98\xf4\x6c\x9c\x27\xba\xd9\x1a\x49\x0f\xbe\xae\x64\x10\x86\x36\x7b\xd4\x1b\xaa\x1d\xe0\xde\x11\xa0\x2a\xad\x60\x0c\x0f\x0a\xa1\x70\x2d\x77\x76\xbd\x16\xf1\xfa\xa4\x35\xb7\x7f\xf3\xa3\xea\xa9\xad\xe2\xa1\xe3\xa8\x64\x54\x14\x76\x85\x8b\x57\x91\x6e\xb5\xd6\xeb\x9e\xd1\xbe\xf6\xd0\x44\x39\xeb\x14\x22\x12\xe0\x4d\x2f\xfc\x02\xf4\x6d\x98\xca\x3b\x6a\xed\xf7\xed\x92\x8d\x33\xb0\x78\xe3\x9d\xd1\x29\xe5\x58\xa5\xfd\x3a\x7d\x53\x03\x46\x3f\x98\x68\x95\x91\xcf\xf0\x1a\xb0\xa7\x75\x39\xe0\xb9\xfd\xed\xb1\xc9\x32\x1b\x0f\x38\x04\x76\xf6\x46\xa5\x5e\x7d\xb9\xa1\xc8\x51\x70\xa3\x49\x17\xf5\x8a\xf2\x63\x0f\x13\xaf\x20\xe5\xb3\x54\x35\xf3\xc3\xd2\xad\x93\xed\x74\x23\x58\x8e\x06\x7c\xb2\x8d\x9a\xdd\x2a\x7d\xa5\xd4\x66\xd6\xa4\xc1\x10\x0e\x37\xd6\x97\xe4\x76\xf8\x6e\xbd\xa9\x4f\xad\x3f\x22\xb6\xbd\x94\x54\x03\x5b\xfe\xe8\x3e\xab\xaa\x6a\x67\x55\x07\x43\x1c\x0e\x6c\x1a\x1a\xaa\xd3\xe0\x2c\x07\x34\x83\xaf\x1b\xb3\x9b\xb9\xc9\x51\x26\x71\x5e\xef\xd7\x0f\xfe\x7f\x79\xbd\xa4\xb2\xba\x45\x26\x18\x05\x2d\xbe\x6e\x88\xd2\x5f\x6c\x9b\xa5\xc8\xe4\xc9\x21\x69\x59\x77\x82\x68\xee\x64\xaa\xe3\xf9\xf6\xee\x6d\x8f\x43\x80\x1d\xa4\x06\xdb\xf2\xfd\xbd\x9a\xc3\xd9\x46\xcb\x61\x2a\x69\x5d\xa1\x68\xa2\xa1\x16\x58\x7f\x4d\xfd\xf3\xe5\x7d\xe4\x91\xae\x84\xfd\x82\x9d\x7e\x46\x07\x61\x25\x0a\x54\xc8\xe7\x00\x28\x73\xfc\x54\x69\xb4\x84\x28\xa3\x34\x22\xf0\x05\xff\xcd\xc4\xbb\xd7\x17\x3a\xaa\x88\xf0\x28\xb1\xd3\xe3\x03\xdb\xd6\x55\x5c\xcd\x20\x24\x6c\xde\xcb\x34\xe4\x92\xba\xf2\x10\xc7\x9b\xc0\x70\x02\xc6\xc2\x08\x58\xa1\xac\xa1\xc1\x47\x65\xe6\x77\xb1\xfe\x60\xcf\xbe\x02\xf7\x03\xf0\xf1\x16\x58\x7c\xb8\x13\x72\x5d\x35\x68\xcc\x10\x78\x53\xd0\xfb\xfe\x5c\x0b\x6c\x4a\x15\x66\xa4\x1f\x77\x74\x95\xfc\xf0\x9f\xd1\xa9\x2f\x6d\x7a\x2d\x27\x35\xb0\x7d\x5d\x8d\xd8\xe7\x8a\x9d\x25\x2d\xe2\x6c\xa7\x66\x7c\x52\x2a\x55\x13\xcd\x0b\xd2\xd1\x2a\x29\x27\x55\x72\xfd\x38\x8d\x2b\xbe\x99\xc9\x54\x44\xe5\xca\x37\x8d\x15\x71\xdf\xa6\xab\x69\x98\xdb\x69\x0f\x31\x66\x1c\x2f\xc2\xad\x3b\xba\xa5\x18\x6b\x0e\xb3\x70\x47\x01\xb9\xc2\x41\x9c\xa4\x2c\x03\x86\xaa\xe6\x59\xf8\x23\x7c\xa3\xec\x7a\x9e\x86\x4b\x11\x5a\xd4\x44\x58\xb3\xe5\xd4\xbf\x2e\xba\x64\x76\x3e\x0c\x25\xef\x37\xe7\x6d\xb9\x57\xa8\xbb\x54\xcb\xe2\x48\x4a\xa1\xc8\xc9\x75\x9d\xf2\x9a\x2d\xa7\x34\xfc\x60\x43\xd5\xac\xee\xaa\xca\x49\x66\x33\x52\x29\x44\xfe\x05\x41\xf0\xe6\xa4\x02\x2c\x75\xe9\xce\x8b\xb5\xf6\x23\x52\x50\x06\x7e\x51\x8a\xa0\x70\x7e\x7f\xa0\x1c\xe1\x1f\x34\x34\xe0\xb5\xfb\xc9\x6a\xbc\x6a\xd2\x3e\x49\xd1\xc2\x6f\xfa\xb9\x96\x91\x3a\xaf\xfa\x20\xb4\xce\xdd\x2f\x1e\xda\x98\xb2\x14\x15\x49\xaa\xa4\x92\xff\x1d\xf0\xac\xf2\xd1\x97\x92\xa0\x10\xbf\xd0\xf5\x4f\xbb\x1e\x98\x7a\x21\x79\xef\xde\x76\x9e\x14\x38\x33\x84\xf9\x53\x01\x60\x8e\xba\x5c\x78\x69\xb5\x02\x22\x78\x67\x58\x47\xc7\x83\x60\xef\x93\x57\x0c\x23\xc0\xa9\x44\x54\x5b\xeb\x64\x6f\xf2\x6a\xc4\x7c\xe1\xed\xd8\x49\xda\x55\x70\x71\x58\xe4\x14\xc8\xb7\x2b\x6a\x62\x5f\x4b\x62\x93\x0f\x4d\xcc\xaf\xe7\xf8\x3a\xcb\xbf\xe6\x9b\xc6\x6a\x97\xe9\x25\x45\xde\x52\xc5\x80\x89\xc7\xec\x9d\xe9\xe8\x54\xd0\xf0\x11\xa5\xbd\xd2\x5a\x57\xed\xd7\x5f\xd2\x2b\xa2\x6e\x7b\x8b\x4f\x66\x2c\xbd\x4d\x7a\x74\x8c\xd6\xae\xae\xf7\x5e\x98\xbf\xc5\xb5\xbd\xef\xdd\xcb\x99\xdf\xff\xb9\xd9\x03\xcd\x96\x43\x84\x28\x0e\x81\xea\xc8\x06\x8e\x51\x05\x19\x3f\xf7\x27\x9a\x65\x3b\x0e\x5a\x3e\x29\xb2\x93\xdc\x0a\xbe\x5e\x77\xd5\xc1\x30\x4a\xf2\x1d\x5e\xf0\x12\xf6\x07\x4f\xf5\x43\xf8\x76\x98\x4f\x28\x8e\x69\x35\x6b\x0c\x03\xe4\xc5\xe0\x3f\xdd\x6a\x3a\x9d\x7a\x1c\x5a\x39\x82\x27\x27\xce\x79\x05\x4b\x09\x21\xf8\xbb\xea\xc1\xb3\x24\xdd\xdd\x72\xb4\x12\xdb\xd6\xd5\xa8\x83\xdc\x5d\x88\xc7\x30\xd0\x9a\x4b\x02\x13\xfd\x38\x92\x7e\x28\x44\xfe\x18\xe6\x04\xab\xe7\x18\x3c\x59\xe5\xa1\x49\xee\xf2\x7d\xbd\xae\x76\x76\xb7\x6e\x3a\x12\x34\x8c\xf3\x34\x89\x1c\xcf\xb7\xde\xb7\x7c\xad\xea\x48\xac\x46\x6a\xa2\x1d\xf4\xf8\x98\x5c\x26\xa4\x84\x1b\x08\x45\x2c\x8c\xcb\x2d\x85\xef\xdd\x0d\xc7\x56\xf0\x4b\xe5\xd7\x83\x56\x65\xa3\x21\xb9\xf1\x4a\xbb\x5f\x06\xa2\x2e\xe1\x83\x8d\xf9\xb1\xf2\x80\x3f\x6e\x90\x81\x6f\x67\xc9\x88\x84\x0e\xa7\x3c\x93\x28\xea\xe3\xf0\x05\x6e\x29\x92\xc3\x87\x27\x75\x31\x18\x54\xce\xd8\x3c\xa3\x1b\xaa\x2e\x60\xc8\x61\x44\xef\x29\x49\xfa\xef\x34\xba\xa6\x49\x6e\xe3\x3c\x64\x0f\x03\xe6\xeb\xa4\x92\x7d\x3f\x59\x7b\x81\xbd\x7b\x17\x49\x91\x2d\xcd\xb7\xe8\x0d\xf8\x6e\xbb\xa6\xb1\x7a\xb1\x3d\x32\xb1\x72\xcb\x70\xfe\x03\x00\xce\xd7\x0d\x68\xc1\x85\x76\xcf\x2e\x25\x29\x8e\x32\xa4\x50\x40\xfb\xc1\xd7\x9d\x67\xeb\xd5\x26\x03\x72\x6e\xce\x6f\x60\xd2\x25\xd9\xe1\x13\x5b\x21\x41\x1d\x03\x9b\xa9\x74\xee\x29\xa5\xb6\x70\xaa\xa1\xe1\xe3\xc5\x76\x6a\xc2\x0c\xf3\x86\x42\xe3\x0d\x05\xed\x46\xd1\x5d\x10\xe6\x5b\xd7\xf0\xdc\xfe\x76\x3e\x4c\xad\xc9\x6d\xcc\xfc\xbb\x68\x62\x64\x66\x48\xbe\xa9\x19\xc9\xc5\xd9\x76\x94\x04\xcb\x22\x9f\xec\x2a\xc9\x1e\xf5\x7a\x52\xe9\xd2\x7c\xd2\x20\x25\xb6\xaf\x1d\xdb\x41\x92\x87\xc6\x69\xb3\x39\x4e\x6c\x6d\x04\x1b\x7a\x22\x57\x92\xd0\x65\x25\xb9\xad\x5f\x25\x88\x8e\xba\x86\x8e\xc0\xe4\xc3\x24\x0a\x03\x46\x3b\x73\xfe\x0c\x5b\x1a\xd1\xd3\x6d\xb6\x16\x58\x88\x3b\xbb\x4f\xab\x10\x2c\x37\x61\x24\x55\x12\xa7\x9f\xee\x42\x97\x3a\xc9\xf7\xc2\x62\x19\xad\x18\x82\x65\x81\xf3\x83\x95\x9e\x68\x2a\x44\xf5\x49\x51\xc8\xf6\xfb\xb6\xbf\xa3\x8c\x37\x10\x8d\xdc\xc3\x8a\x10\x6e\xbb\x96\xa3\xa4\x3a\x49\xf1\xbb\x93\x45\xf4\xfd\x85\xb4\xe0\xf8\xc3\xba\x58\x12\x99\x2c\x03\x81\x0a\x72\x89\x7f\x58\x61\x27\x25\x5b\x07\x10\xce\x45\x78\xc6\x7c\xa3\x80\xc6\x57\x3a\x5b\xea\xed\x52\x62\x7f\x5b\xeb\x74\x27\x26\x15\x00\x1a\xd0\x39\xef\x4d\x94\x24\xdc\x7b\x58\x33\xb0\x7b\xc3\x24\x4f\xc6\x69\x92\xdb\x80\xe2\x31\x8c\xba\x68\x92\xd3\xf7\xcb\x42\x51\x03\x34\xea\x45\x02\x0b\xd2\x67\x0c\x56\x38\x0f\x97\xc8\x6d\x3e\xa6\xf4\x33\xec\x14\xbd\x16\x27\x85\x55\x3f\x00\x67\xfe\xa4\xfa\xd8\x54\x20\x37\x2b\x36\x35\x03\x4b\x4a\xbf\x8a\xdd\x7b\xa1\x12\x77\xb9\xbe\x4d\xb7\xc0\xcf\x75\x54\x83\xfa\xbd\xa6\x36\xeb\xb1\x09\x96\xcd\x00\x7b\x14\x5f\x3c\x0d\xc2\x40\xcd\xc2\x22\xda\xea\x0d\xc1\xe3\x30\x8c\xa2\x2c\xec\x5b\x55\xb5\x3b\xa7\xaa\x76\xe7\xea\xaa\x72\x73\xed\x9e\x25\xbd\xb5\x96\x96\xcf\x29\xd7\x8c\x74\xec\x79\xec\x61\x14\x8e\x31\x3f\x61\x45\xaa\xfb\x43\xe5\x51\x7c\x58\x4b\x63\xed\xd9\xd3\x36\x99\xd0\x47\x38\x0d\x1f\x5f\xc7\x3e\xa5\xd0\x0a\xa5\x31\xe7\x94\x32\x8e\x03\x94\x1f\xf8\xba\x56\x13\x25\x5c\x7b\xce\x6c\xcc\x6e\xce\x2f\x29\xfa\x9c\x4b\x8d\xa8\x83\x5f\xf9\xc6\x6f\x2f\x7c\xe3\x37\xe7\x51\x4d\x87\xd7\x79\x91\x83\x24\xbe\xab\x44\xc2\x3a\x42\xd6\xa5\x0c\xb3\x2c\xd1\x07\x52\x87\x57\x60\xd8\xf8\xa6\x91\x2a\xdd\xc4\xe1\xc8\x08\xf7\x0b\xf6\x1a\xa7\xb7\xf8\xc6\x81\xc3\xb2\xbc\x48\xfb\x6b\x4a\x8d\xf5\x82\x52\x63\xbd\xd0\xd8\x04\x5e\xf4\xa2\x30\x20\x8f\x09\x46\xec\x88\xd2\x0f\x7b\x57\xfb\x28\x9e\x42\xaf\x6f\x7b\x45\x3e\xed\x0b\xd5\xe7\xe1\xb8\x89\xec\x76\xb9\x0c\x25\x0b\xe2\xbb\x6e\x5a\x5d\x45\x4a\x21\xf0\x4c\x3c\xff\x55\xe4\x04\xf9\xa6\xb6\x16\x9e\x67\x81\xc7\x96\x4f\x82\x7e\x86\x3d\xc1\x37\xb5\x86\x89\xf2\xd8\x2a\xe2\x6c\x6c\x03\x55\x86\x69\x6a\xba\x6b\xf0\x0e\x82\x24\x4a\x46\x3d\xe1\x63\x84\xe7\x74\x5f\xbb\x51\xf7\x1b\x4e\xfa\x05\xa8\x36\xd8\x2c\x6f\x91\x2f\x05\x4f\xe8\xa4\xf2\x8a\x4e\x7a\xd6\x11\x52\xe1\x89\xa2\xd6\xd4\xc2\xcb\xfb\x3c\x65\xc7\x93\x4a\x73\x21\x84\x44\x8f\xa7\xab\x39\xad\x54\x12\xeb\x8a\x57\x7b\xf7\xb6\x6d\x5e\xf4\x99\x81\xff\xff\x17\x2d\xfe\x4b\xf3\x6d\x9b\x05\x69\xb2\x4a\x1f\xc1\x38\x1e\xa1\xec\x2f\x5f\x6b\x94\xec\xc8\xa6\x61\x60\xe2\xc7\xc8\xa6\x20\x3b\x72\x9b\x86\x51\x62\x03\x9a\x7e\xe7\xe3\x7a\xe6\xff\xef\x4c\xd4\x34\x6d\x5f\xd7\x10\x2a\x5f\x05\xbe\x34\xd1\x14\xb3\x8f\x2a\xed\x84\x5b\xf0\xf1\x90\x29\xd9\x44\xaa\x81\x8b\xac\x64\x6b\x50\x5c\xf8\x48\xe5\x83\x56\x92\x68\x25\xa1\x95\xe9\x3a\x94\x7d\x62\x6b\x53\xf1\x48\x61\x65\xa2\x42\xf9\xb6\x22\x58\x0c\x4a\x5b\xb8\xa6\xeb\x6a\xe7\x94\xe4\xe8\xb9\x9a\x61\x58\x9c\xdd\xd7\x5e\x32\x2b\x94\xa4\x50\xe2\x53\x1f\x2a\xcf\xf0\xc3\x1a\x19\x02\x25\x1f\x93\x2c\xb7\xf1\x72\xb2\x9a\x2d\x87\x48\x40\x22\x2d\xc2\xf0\x03\xbe\x69\x14\x57\x7d\xa3\x5c\x9f\x52\xfc\x13\xda\xec\xf2\xd5\x84\x4f\xbb\xa9\xb3\x9c\x6c\xb5\x6a\x5f\x57\x94\xb6\x97\x14\xa8\xa6\x20\xa9\xd7\x6a\xbf\xc4\x4b\x3e\xc8\x7e\x08\xc3\xd2\x8a\x4d\xf3\x90\xe1\x92\x0b\xde\x85\x50\x74\x05\xb5\xde\xfa\x03\xb3\xf3\xbb\xe8\xb5\x11\x07\xb2\xe6\x24\xd7\xb9\x31\xd5\x2e\x13\xec\x48\x07\x8f\x93\xef\xe0\x00\xce\x07\x66\x5d\x61\xdc\xe3\x2c\x7e\x44\x33\xeb\xe4\x17\x9d\x32\xdb\x25\x45\xcc\xdd\x2b\xc2\x28\xdf\x41\xde\x0a\x92\x7a\x0c\xa0\xe2\x1b\x45\x56\xf5\x25\x4c\x9b\x93\x66\x5f\x9c\xad\x48\x5a\x89\xfa\x77\x83\x8a\xd2\x52\x39\x26\x51\xf8\x86\x4d\x5b\xaa\x2e\x72\x42\x33\x10\x76\x7e\xe5\x21\x81\xce\xd8\xa6\x59\xe2\xe9\xb1\x25\x9b\xa0\x53\x0b\x6a\xce\x86\xd6\x46\xbc\x1a\x24\x2f\xa5\x20\x4a\xb5\x67\xa3\xf6\xa8\x24\x8a\xcc\xd8\xc1\xae\xe0\x62\x33\xcd\x15\xc0\x9a\x77\xd4\x30\xbe\xe5\x75\x59\x8b\x34\x23\x3d\x6e\xdf\xe2\x87\x53\x8f\xaf\x6b\xf9\xab\xf2\x84\xc9\xd6\x82\x61\x68\xf2\x94\x5d\x57\x41\x90\x2b\x98\x7d\xe3\x79\xcb\x3e\x5d\x4b\x3d\x21\x07\xd0\x22\xea\xec\x93\xcd\x3d\x93\x65\xa1\x70\xdc\x35\x1a\x40\x25\xac\x17\xa5\xd6\xf4\xd7\x76\x79\x6f\x85\xc5\x46\x90\x8a\xe4\xe6\x53\x81\x45\x69\x0e\xd5\x13\x8a\x00\xe2\x1e\x6c\x93\x6b\x49\x39\xe8\xf8\xdf\xce\x29\xf2\xdb\x16\xd9\x39\xbc\x65\x5d\xbe\x6a\xcf\x9e\x36\xd1\xaa\x67\x56\x41\x66\xf9\xb9\xc5\xd6\xb7\x9c\x18\x5c\xdd\xf5\xa3\x44\x4d\x1a\x0e\x42\x38\x32\x38\xbf\xa1\x17\xc0\xd7\x0d\xe1\xe5\x7c\x3b\x48\xc6\x63\xae\xcb\x20\xce\x47\x45\x8f\xaf\x35\xfd\x58\x1a\x8e\x46\x04\x8d\x92\x56\x1d\x05\x8a\x39\xe1\x63\xa1\x24\x5e\x09\x7d\x2d\x06\x89\xf5\x1d\x5d\xdf\xfe\xb0\x89\xb1\x42\x5c\xb4\xa1\x1a\xa4\x7b\x61\x12\x25\x03\x47\x75\x05\x6f\xe2\x38\x6d\x5a\xbe\xee\x78\x91\xd8\x41\x6a\x6d\x9c\x8d\x4d\x4c\xf4\xe8\xe8\x86\xf9\x33\x45\x19\x7e\x9e\x0a\x88\x7c\x4d\x83\xc0\x7f\x03\x8b\xca\x01\x0f\x5c\x0d\x89\x7e\x1a\xfa\x4d\x98\x74\x93\xbd\x2d\x1c\x57\x1f\x63\x81\xf0\x8d\xca\xa6\x07\x45\xda\x6b\xf9\x1e\xaf\xdb\xb4\x17\xf8\xda\xa9\x5f\x8e\x8b\x28\x18\xa6\x61\x79\x42\xb7\x54\xdb\xd4\x4f\x26\xbe\x06\xf7\x93\xce\x53\x1a\xab\x62\xb3\xdc\xf6\x29\x71\xae\x9a\xca\x18\x9e\xf3\xa3\x5f\x59\x77\xf5\xba\x17\x9e\x43\xe2\x49\xd0\x5e\x5b\xb7\xfa\xfe\x97\xb7\xca\x66\xb0\x8f\xd7\xd1\xfe\x9e\x12\xd7\x49\xb2\xdc\x44\x53\xaa\x99\xef\xa8\x52\xc7\x43\x8e\x15\x6e\xf5\xdb\x55\x9f\x76\x85\x7b\xe0\x1c\xcf\xc9\x81\x59\x47\xd2\x5a\x5a\x30\x54\x8e\xcf\x75\x7c\xff\x3d\xcc\x3a\x52\xce\xdf\xae\xc0\x03\x5e\x88\x5f\xa0\x21\x65\xd2\x7b\x95\x2d\xb9\xdb\x90\x98\x21\x5b\xde\x97\x60\x1a\xc1\x36\x49\xb4\x4a\xbf\xcb\x94\x8a\xbc\xc3\xf8\x35\x68\xc0\xea\xbe\x3a\x15\xdf\x5f\xd1\xec\x54\xef\x3b\x7f\x37\x48\x8b\x6c\x38\xed\x5f\xfe\x02\xad\x50\x2c\x67\xe4\x29\x71\x0c\x9d\x55\xe2\x60\x17\xca\x08\xc8\x8b\xf9\xa7\x61\x96\xc4\x23\x21\x3e\x42\xf8\x88\xa8\x98\xaf\x95\x0f\xd2\x2b\xd2\x01\xe8\x57\x05\xd9\xba\xa1\x90\xad\x1b\x9e\x24\x9b\xca\x8f\x8e\x58\x0e\x8d\x2d\x82\x0a\x7d\x52\x69\x12\x71\xe7\x86\xaf\xec\x9e\x82\xc7\xc6\x37\x0d\x12\x28\xfb\xda\x26\x18\x86\x76\x45\xbc\x1a\x96\xb8\xc3\x4e\x12\xbd\x3b\x5d\xed\x59\x2a\xd7\x58\x9f\x81\x82\xac\x9c\x40\x0f\x2d\x2a\x0a\x4f\x54\x62\x7b\x5e\xdd\xa8\x92\x7f\x02\xab\xce\x37\x5a\x8c\x5e\x27\xb2\x36\xca\x38\xdc\x87\x94\x38\x16\x70\xec\xbc\x03\x78\x02\xdf\x54\x8e\x05\xa2\xf1\xd0\x9a\x01\x1b\x4a\x47\x16\x90\x2c\x06\xe0\xb9\x61\xcd\x4d\x08\x9c\x87\xe3\x55\xf5\x1c\xab\xce\x89\x37\x51\x14\x96\x5f\x3d\xb3\x55\x15\x85\x6b\x8f\x0a\x24\xb9\xa1\x8a\x87\xef\xeb\x43\x69\x5b\x4d\xdc\xd4\x25\x3a\x2d\xf5\xe7\x22\xa6\x55\xe5\x32\x57\x3b\x53\xd3\x5b\x9a\xde\x70\x94\x91\x60\x90\xeb\x84\x71\x34\x5e\x77\x3a\x14\x8f\xc0\x26\xe3\x64\x62\xcd\xe6\x8e\x42\x7e\xf2\x99\x27\xa4\x1a\x72\xda\xbf\x5e\x84\xc1\xb2\x4d\x77\x90\x6f\xc4\xba\x13\x8a\xf5\xec\xd8\x44\x15\xce\xc1\x02\x03\xbb\x7a\x51\x55\x08\xef\x21\x29\x84\xe3\x6c\x7b\x57\x23\xcb\xd3\x54\x0b\x32\x2b\x92\x59\x87\xb3\xea\xfc\x35\x25\x2c\x98\x05\x69\x28\x4c\x47\x74\x04\x38\xbd\xeb\x03\xc2\x7e\x73\x75\xe2\x49\x0a\xb6\xc1\x34\x22\xc9\xf8\x66\x47\x05\x53\xc7\x51\x86\x14\x74\xd4\x56\x6f\x79\x71\xb6\x9d\xac\x4a\x4b\x0a\x93\x75\xe2\x13\xc2\xdc\xe9\x0c\x7b\xb2\x6a\xd3\x61\xe2\x65\xe7\xa5\x91\x4e\x77\xd5\x35\xf8\x5f\xcc\x28\x58\x70\x2f\x8b\x20\x60\xde\x01\xa3\x16\xdf\xd4\x6c\xdd\x4b\xf3\xed\xa5\x28\x31\xbe\x5f\x11\x68\xc4\x53\x0a\x99\x78\x4a\xa5\xea\x06\xa9\x89\xb1\xcb\x00\x15\xfa\x3d\xd5\xeb\x79\x51\x21\x15\x58\xf7\x50\x98\x73\x7c\x7d\x2b\x30\xa9\x8d\x44\x8b\x08\xdf\x7f\xbb\xa3\xb4\x85\x6f\x37\x26\xb9\xfa\x36\x0b\xc4\xcc\xb9\xc1\x2b\x7f\x40\x06\x4f\x16\x57\x2f\xec\x8b\x1e\xf4\x2b\x4e\x31\x50\xcb\x07\x36\x16\x14\x57\x93\x34\x1f\xce\xe0\x6c\x16\x20\x49\xf9\x53\xba\xae\x25\x79\x08\xc5\xcd\x7a\x96\x90\x6e\xd8\xe9\x5f\x2a\x9a\x9f\x6c\x18\x3a\xad\x6f\xa1\x13\xa0\xd5\x0e\x37\xe2\xb4\x32\xe8\x77\xd1\xd0\x8a\xef\xbb\xa5\x8e\xbf\xb1\x4d\xc6\x91\x7d\x8a\x16\x18\x76\xfc\x97\x18\x26\x38\xd2\xef\xd0\xfa\x64\xba\x83\x8e\xa2\x28\xbb\xdc\xd1\xbe\x9d\x4f\x94\xdc\x04\x0f\x9a\x23\xa5\xfe\xfa\x41\xde\xa5\x3f\x55\xcc\x2f\x5c\x16\xc5\x6b\x33\x24\x0c\xc5\x60\x29\x07\xc2\xc4\xdd\xc4\xfe\x77\xb5\xd7\x45\x21\x66\xfb\x48\x35\x81\xfd\x0b\x8d\x95\xb9\x4a\x60\x7b\xfc\xd1\x11\x65\xe3\x83\x24\xce\xc2\xbe\x4d\x6d\xff\x11\x1a\x08\xe9\xe2\xf7\x99\xdd\xb7\x2a\x41\x25\x66\x9d\xff\x47\xc9\x4a\xdf\xc3\xeb\x09\xf8\x93\x1e\x0f\xc3\xf6\x33\x0c\xbd\x70\x05\x34\xc0\xc1\x57\x42\xbb\xea\x96\x3f\xbc\xed\x3f\xeb\xf8\xf6\x84\x3f\x53\xda\x2c\x26\xcf\x6d\xdc\xcf\x94\x57\xc0\x2c\xdc\x7c\xa3\xf0\x39\xd9\x72\xb9\x14\xfb\x8a\xa8\xe0\xb0\x26\x2a\x38\xbc\x35\x78\x9d\xdb\xdf\x3e\x30\xfb\x35\x85\xaf\xdb\x44\xf4\x08\x74\xc9\x31\x5a\x6a\x92\x20\x56\x04\x30\xf7\x34\x72\xe1\x03\x34\xe4\xb1\x10\xac\x36\xa4\x9f\x41\x75\xce\x49\x1e\x94\x83\x05\x2f\xf0\x38\xa6\x09\xe1\xec\xb7\x27\xbe\xb5\x8c\x95\xd6\x70\x9c\x6f\x76\x34\x5d\xee\x97\x34\xe5\x58\x7d\xd0\x29\x87\x1d\x9f\xe9\x96\xeb\xca\x25\x98\xcb\xb5\x2b\x02\x4d\xde\xf7\xfa\x08\x6e\x82\xf8\x1d\xa5\xf3\x86\xd5\x77\x5f\x29\x80\x3e\xc0\x14\xb2\x76\x4b\xad\x22\x7b\x70\x71\xb6\xfd\x5c\x95\xcc\x14\x00\x1a\x61\x36\x6d\x98\xe6\x71\x1a\x06\xae\x63\x05\x99\xa4\x4f\x27\xde\xbd\x04\x13\x1e\xce\xd0\x1b\x4a\x47\x67\x64\xe2\xbe\xc9\x93\x74\x6d\xba\x4a\x4e\xe0\x58\x45\x35\x45\xfa\x69\x2a\x0c\x63\x27\x1e\xa9\x41\xb0\x4a\x53\x93\x15\xe2\xfd\xb0\x28\xa6\xa6\x53\x3b\x37\xf9\x9a\x2a\xab\xe5\x36\xc5\xb9\x64\xa2\x47\x69\x5e\x79\x2a\xe9\xb0\x84\xd5\x79\x9f\x51\xb8\x8e\x9b\xc7\x31\x02\x5c\x53\xa7\xe5\xad\x8e\xe6\xd6\xea\x28\x0e\x79\x02\x0a\x89\x5e\xfa\x79\x4d\x6e\x30\xd5\x55\xf9\x85\x29\xdd\x58\xb2\xbd\x2b\x79\xe1\xd7\x8a\xfe\xc0\xb2\x9d\x13\xb5\x23\xd5\x12\xc0\x2c\x5e\x78\x86\x93\x6c\x40\x00\x7d\xda\xe5\xb8\xb7\x97\xc5\xac\x4b\xd7\x8a\x6e\x61\xa9\x92\xf1\xaf\xc6\x3b\xcb\x3f\xc4\xf2\xba\x3b\xa9\x2a\xf6\x96\xaf\x21\xfe\x9d\x67\x0b\x7f\x9b\xb6\x0d\x5f\x4f\x54\xa1\x7e\x43\xf5\x42\x9e\x6c\x92\x1f\xad\x7a\xaa\x18\xed\xcb\x1d\xa5\xa0\x7c\x59\xb3\x11\x46\x49\xc1\x75\x45\xc1\x90\xd2\xab\x3b\x3f\xc8\x6f\xd1\x5b\x4d\xb4\x89\xab\xd6\xa9\xf3\xaa\x1e\x16\x27\xb4\xd9\xf1\xad\xdd\xe3\x30\x4f\x24\x67\x8f\x21\xff\x5c\x67\xd3\x3f\xaf\x61\x5f\xbe\x39\xd7\x8e\x2d\x63\x9d\x84\x58\xa6\xf5\xcd\x39\xc7\x2b\xe3\xc3\x98\xac\xe8\x8d\xc2\xdc\xa9\xf2\x3a\x06\x42\x45\x42\xd6\x10\xd8\x92\x6a\xbe\x50\xf7\x61\xef\x5e\x52\xfb\xd8\x77\x98\xc7\x49\x9a\x86\x70\xca\x50\x1b\x3b\xae\x3b\xd1\x8f\xd7\x1e\xfc\xd7\x08\xae\xcc\xe3\xef\x50\xe6\xae\xf1\xb1\x5e\x67\xdd\xbb\xb7\xdd\xb7\x3d\xc3\xd8\x30\xec\x4d\x1c\xb5\x88\xfa\xaf\x55\x34\x92\x2b\x70\xe7\x06\xc5\xb4\x41\xd2\xe7\xe0\xc6\x89\x4f\xcc\x6b\xf1\x09\x47\xd5\x14\xf5\x6d\x1a\xad\x4d\x7b\x4a\xa1\xbb\x8a\x68\xf1\x26\x0d\x05\x1f\x7b\x38\xbb\x90\x4e\x3d\xa3\xd8\x9e\x8a\x38\x18\x9a\x78\xc0\xfd\xf7\xaf\x38\x20\x83\x5a\xd3\xc7\x3a\xaa\xde\x0c\x81\x28\xbe\xee\x56\x74\x28\x92\x74\x47\x4b\x13\xec\x97\x1f\xc2\xdb\x7f\x41\x26\x1b\x07\xe7\x76\x82\x2a\xe2\x60\xe6\x0a\x23\x92\xca\x40\x84\x23\x65\xf3\xdd\xa6\xde\xbd\xc0\xa4\x3d\xe6\x51\xc4\xf1\xf3\x8e\x42\x48\xbd\xa3\x18\xc4\xfb\xa6\x18\x0c\x73\xc4\x9b\xf3\xba\xa0\x23\x39\x98\x3a\x47\xb9\x84\x29\x83\x64\x85\x51\xfa\xf0\xb2\xd9\xef\xd1\x6b\x8b\x4b\xcb\xae\xd9\x33\x1b\x26\x45\x44\x82\x41\xca\x37\x78\x69\xde\xc9\x80\xd1\xb7\x09\x36\xa2\x5c\xfd\x30\x50\x4f\x33\x2c\x17\xf9\x02\x28\x37\x33\xd8\xab\xce\xe1\xb3\xa7\xdc\x20\x83\x34\x29\xc6\xd9\x94\x12\x6a\x3d\x53\x6d\xc6\xf7\xe8\xf6\xba\x4a\x66\xb9\xd1\x93\x14\x9a\xe4\x4e\x20\xc8\xb1\xf6\x1d\xa9\xd0\x47\xa1\x5a\xd4\x52\x8c\x93\x1f\x28\x51\xd2\x0f\x3a\xaa\x7a\x1c\xf6\x09\x79\x89\x10\x1d\x0b\x5e\xf2\xd4\x34\xde\x48\x6c\xff\xb7\xb4\x82\x36\x81\xb8\xc2\x50\xec\x80\x55\x47\x78\x77\x13\x4e\x24\x7f\x52\x25\x36\xa9\x49\xc1\x44\x60\x61\x71\x0a\xf5\xa5\x67\x20\xac\xfa\x1a\xfa\xff\x86\xed\x3f\x41\xff\x89\xb9\xdb\xc0\x11\x80\xe1\x3e\x0d\xbf\x05\x5d\x48\x9b\x34\x41\xac\x86\x41\x09\x78\x21\xef\x54\x4c\xb5\x2c\xd4\x8f\x13\xe4\x1a\x1c\x39\xfe\x62\x4a\xfa\xc0\x37\xc1\xa8\xa3\x21\x7f\x86\x60\xb0\x9b\xac\xd4\x29\xb4\x46\xbe\x8f\xf1\x2d\xf6\x63\x64\x17\x7a\x58\xdb\xb6\x26\x8a\xc6\x60\x98\xb8\xc2\xaa\xf4\x29\x28\x41\xd0\x63\xae\x09\x89\x90\xa9\xa3\x30\xb6\x7d\xf0\x58\xc2\xcc\xdc\xd0\x2c\x7a\x8f\x75\x7d\x67\xc8\xd5\x4a\x1a\x59\xc5\xdd\x5c\x0e\xfe\x0f\x68\xd8\xf0\xc8\x17\x71\xea\x20\xf1\x75\x07\x9b\x01\xfe\xfd\x2f\xe0\xc7\x21\xa9\xfc\x00\xe5\x0d\xb8\xeb\x8f\xae\xb7\xf6\xec\x91\x8d\x0c\x3f\x12\x63\x01\x26\x4e\xcc\x47\x6b\xbd\x74\x56\x9c\xe6\x84\x47\x59\xdc\xa1\x53\x53\xba\x50\xc9\x11\x53\x3c\xeb\x02\xf5\xbc\x85\x3e\x03\x4c\xe7\x75\xf2\xe3\x50\xc5\x63\x5a\x08\x0c\xeb\xf5\x89\xe2\xcf\xfc\x92\xdc\x4b\xce\xd8\x76\x74\x27\x54\x6b\xbd\x8c\x0f\x10\x49\x4f\xd8\xa9\xc1\x4c\x1f\x43\x1a\x06\xce\x2a\xd3\xe9\x0a\xa9\x7c\xb9\x6c\x50\x85\x43\xa7\xb9\x5b\x35\xa5\xaf\x8b\x76\xf4\x8b\xe4\x9e\x62\xa0\x99\xfe\x19\xab\x1f\x81\x12\x46\xe5\x9c\x3b\xa5\xc2\x2c\x2b\x38\x8b\xed\x0a\x42\x4e\xd1\xf4\x5c\x05\xf5\x94\xdb\x41\x1a\x32\xd3\x39\x7c\xae\xe3\x58\xe0\xf2\x14\x3e\xe5\xf4\x5d\x67\xa9\x46\x36\xb6\x91\x1c\xe0\xff\x4e\x97\x27\xc9\xd6\xa8\x9e\xcb\xcb\x35\xef\x28\xae\xd0\xbc\x01\xa1\xa4\x95\xc2\x61\x79\xe1\x6e\x01\xd6\xcb\xd7\x95\x1a\x4f\x34\x26\xa1\xb0\x05\xa7\xf3\xd9\x72\xfa\xee\xc7\xb0\xf9\x34\x0f\x04\x4b\x93\xd3\xde\x43\xcc\x7f\x92\xc6\x1d\x26\xe4\xba\x2a\xee\x30\x30\x54\x94\x97\x7d\x72\x7e\x89\x09\xa3\x4c\xd4\xaa\x88\x24\x39\x12\x14\x2d\x8c\x0b\x6d\xc5\x70\x85\xb5\xfd\x64\xd3\xb5\x1c\xfb\xf8\xb1\xda\x29\xf2\xd2\x7c\x3b\x4b\x82\xd0\x44\x61\x06\xed\x26\x9d\x46\xe3\x6b\x95\x8e\x58\x12\xfa\x2a\x2c\x39\x81\x67\xd2\x9b\xf3\x4d\x43\x8f\xc3\x2b\x65\xdc\xba\x44\xfd\x69\x33\x34\x7a\x52\xf2\xac\xf4\x89\xb5\x1c\x09\xf9\x99\x49\x45\x76\xc1\xb7\xf2\x3e\xd6\xf5\x78\xd1\xff\xf4\x6f\xfe\xc7\xba\x67\x64\xba\xeb\x1b\x8a\xa7\xd7\xb7\x06\x40\xbf\xde\x1e\x50\x9e\xf6\xc0\xac\x93\x63\x51\x86\x41\x13\xbd\xac\x12\xff\x68\xab\xf5\xdc\x73\xbc\x00\x2e\x62\x43\xf1\x4d\x6d\x00\x5f\x7d\xb5\x3d\xb0\xb1\x4d\x5d\x9d\x10\xfe\xf6\x86\x06\x3d\xd5\x19\x96\x09\x5d\x97\x2c\xef\xf0\xc4\x67\xc4\xcf\xea\x61\x50\x0e\x2f\x32\xdd\x55\xb9\x5f\x16\x83\x6c\x6a\xe4\xf1\xe5\x10\x53\xe4\x09\x29\xca\x8b\x9c\xa2\xdf\x9d\x08\x3e\x79\x90\xe9\xe3\x94\x56\x29\x9e\xec\x2a\xd4\x10\x8c\x16\xfe\x68\x53\xe7\xe2\xff\x04\xfb\x15\xe6\xf9\x2f\x1b\xbb\x79\x4c\x1a\x0c\xc3\x15\xd7\xb1\x8a\xc8\xee\x6a\x47\x01\xcc\xae\xaa\x38\x60\xd5\xda\xe5\x6c\x87\xef\x76\xc3\x63\xc0\xcb\xfc\x14\x1f\x82\x4d\x3f\xab\x7a\xb1\x7f\xa6\xe0\x76\x3b\xd7\x2b\x89\x95\x67\x3d\x7a\xa3\xf4\x0f\xad\x4d\x5d\x00\x8b\x3d\x7a\x57\x51\x01\x5e\xef\x68\x07\xa1\x21\x3f\x98\xd9\x38\xb7\x71\xe0\x52\x1d\xc0\x11\xfd\x48\xe1\x8b\x7e\xf4\xd0\x36\x85\x6c\x98\xac\xf6\xc2\x37\xc8\x30\x0a\x5b\xbc\x42\xaf\x9c\x6d\x64\x6d\x50\x88\x53\x58\xf9\x2f\x26\xfe\x60\xf9\x42\xb1\xc2\xf6\xac\xc9\x35\xdb\x21\x7c\x91\x4a\x95\x8a\xc9\x7e\x26\x1e\x36\xf1\xc9\x44\x01\x39\x6f\x28\x1a\xa4\xbe\xcd\xc6\x26\x24\x6a\x11\x21\x11\xfe\x09\xfd\x30\x5f\xd7\xc2\xbd\xc5\xd9\xf6\xd0\x66\x61\x4e\x84\x5c\x07\x84\xbf\xf9\x17\x1d\x9f\x6d\xfc\x85\x2a\xa4\x8c\xc2\xa8\x1f\x31\x45\x08\x9c\x4d\xcc\x26\x5f\xab\x42\x41\x40\x28\xd5\xfe\x14\x9d\x93\x22\xa9\xe7\xfb\x23\x6e\xd1\x0e\x41\x20\x76\x44\xc1\x14\x43\x13\x24\x41\x00\x7d\x55\x64\x53\x6f\x69\xdd\xbf\x5b\xaa\x3d\x65\x39\xc9\x92\x95\x44\x17\x61\x60\x76\xe4\x88\xf5\x86\xce\x0c\xca\xa9\x2f\xa3\x75\xef\x83\x1d\x51\xfd\x31\xbb\xc8\x3b\x41\xc0\x7a\x55\x47\xf1\x77\xd4\xab\xe7\x43\x9b\x8e\x12\xbc\x3a\x4a\x0f\xff\x12\x7f\xca\x37\x4a\x43\xa6\x6f\x83\x30\x0b\x93\x78\xb7\xa2\x26\x78\xaf\x42\x62\xa0\x9a\xed\xc1\x3d\x25\x5d\xa1\x3e\x05\x75\x59\xa5\x56\xfe\x78\xa2\x18\xea\x5e\x9d\xe8\x7e\x19\xcf\xa8\xcb\xaa\x26\x42\x4e\xf6\x30\xc8\xb7\xed\x87\x59\x9e\x10\x0a\x10\xeb\xea\x63\xcd\x28\xf5\x71\x53\x67\xe0\xd8\xa4\x39\x75\x8d\x13\xb0\xea\x02\xb2\x19\x9b\xf5\xcc\xd4\xab\xaf\xb6\x73\x73\x68\xca\xa7\x0f\x6f\x77\x70\xb4\x60\x4f\xe3\x1c\x15\x19\x9d\xba\x86\xf1\x8b\xc4\xe8\xd0\xf2\x05\xdf\x23\x1d\xbf\xc3\x8f\x34\x00\x85\xa4\x6b\x9f\xcf\x7b\x59\x90\x34\x56\xb2\x22\xbd\x38\x3a\x24\x18\x61\xcb\x10\x95\x5e\xd0\x34\x1a\x75\xae\x8e\xc5\xd9\xf6\x20\x4d\x4c\xcc\xc4\x40\x82\x58\xd1\xf0\x95\x8e\xae\x84\x2e\x41\xe9\xec\xc9\xd2\x2c\x2b\xcd\x8d\x05\xef\xbe\x1e\x74\x3e\xe3\x05\x45\x38\x73\x9a\xf4\x77\x51\x87\xba\x4f\xee\xa7\x13\xf2\x9d\xdb\xcf\xd9\xd5\x3f\xd0\x09\x03\x6e\xc1\xc1\x72\x78\x9b\x76\x92\xeb\x83\x5e\x5c\x70\x0a\xae\xe5\xe0\x21\x01\x0e\xef\x84\xbd\x99\x8e\x42\x47\x32\xa3\x3d\x77\x8e\xc0\xc5\x12\xed\x0f\x1d\xda\xac\x86\xf1\xae\xf2\x2b\x84\xfa\x9e\x5e\x4b\xd2\x09\xe5\x13\x23\xbf\x76\x5c\xf7\xbb\xdd\x67\x27\xd7\x09\xfd\x2e\x8a\xb2\x1e\x44\xa6\x61\xc5\x0f\x93\xfd\x10\x21\x3c\xb2\x16\x12\xc1\xd7\xcd\xea\x2b\x6d\x82\xc8\xf6\xb7\x28\x2f\x7a\x8e\x29\x15\x4d\x04\x45\x9a\x86\x16\xdd\x55\xd2\x19\xa3\xe0\x51\x97\x6a\xa7\xc4\xf3\xe5\x5b\xf6\xb3\x61\x68\x23\x49\x7f\x48\xa3\x7b\xc5\xb5\xa9\x71\x6e\x2d\x2e\xfc\xaa\x90\xf4\x28\x0e\xc1\x6b\x13\x5d\xf1\x6c\xc8\x1e\x05\xba\xf2\x24\xea\x39\xe5\x67\xf8\xba\x49\x31\x64\x14\xc6\x63\x1b\x24\x8c\xb3\x86\xd1\xb8\xa7\x28\x84\x4f\xe8\x06\xe3\x56\xf7\x09\xa5\x7b\x37\x12\x91\x66\x38\x82\x97\xb5\xe7\x7d\xb9\xe3\x15\x1d\x72\x9b\x86\x10\x2a\xdb\xc7\x6b\x15\xac\x46\x7c\xad\x4a\x3d\x41\x5a\x88\x74\xb2\xd0\x1c\xd3\x77\x0a\xff\xb1\x2a\x1d\x84\xe9\x38\x49\x73\x62\xcc\x00\x26\x15\xf4\x8d\x02\x88\xa3\x8f\xc1\xc1\xfe\x5c\xb9\xe8\x4b\x26\x80\x14\xf2\x8b\x15\x40\xbd\x74\x59\xf9\x05\xf9\x26\xc2\x3c\x74\x4d\xdc\x46\x84\xce\x37\x6a\x77\x6c\x28\xcf\x10\x04\x5c\xd3\x14\xac\x69\x15\x23\x3c\xdd\x11\x0d\x9f\x3d\xc2\x21\x19\xff\x99\x1a\x80\x25\x83\xa4\xba\xef\x77\xbd\xa6\x61\x2d\xa0\xbc\x95\xb5\x57\xc3\x63\xcf\xb5\xc7\x66\x2c\x58\x36\x6e\xaa\xd5\x4a\x3c\x17\x14\xe3\xc8\x52\x61\x23\xae\xa7\x70\x9b\x68\xa5\x65\xd4\x19\xb9\x24\x1d\xd8\x9c\x6b\x03\xa2\xbd\x45\xdf\x2f\xaa\x5c\xff\xde\x56\xa5\xce\x57\xaa\xe2\x4c\xcc\xb2\xd8\xf1\x84\xaa\xff\x27\x8d\xa0\xb0\x3c\xa9\x0d\xca\x0d\xf1\x58\x84\x3f\x98\xf8\x16\xa1\xe3\x13\xcf\x9f\x0b\xa5\x31\xfe\x77\x0d\xc4\xf4\x0f\x3d\xb6\x69\x20\x74\x39\x48\xb9\x03\xe9\x84\x03\xe9\x7e\xe9\xe5\x6e\x5e\x86\xd3\xcd\x86\x76\xc5\x66\x79\x38\x30\xb9\x1b\x7c\x9c\x98\x77\xd9\xe0\x60\x4d\x30\xbf\x9e\xf4\x12\x39\xc6\x94\x22\xcb\x93\x51\xf8\x86\x60\xab\x50\xa3\xb9\xaa\xb0\x33\xd7\x70\x8e\xca\xdb\xfb\x7a\xdd\x52\x18\x9b\xd2\x8f\x28\xdd\xba\xaf\x1f\x74\xb2\x8b\x1e\x3b\x55\x87\xf5\x97\x9e\xa7\x19\x87\x36\x66\x83\x02\x93\xfd\x91\x12\xbc\xfc\xa8\x76\xe0\xee\xdd\xdb\xce\x92\xc8\x77\xa7\x22\x69\x7f\x53\xa1\x23\x6f\x36\x89\xb6\x0c\x4d\x11\xcb\xd4\x4b\x7c\xa3\x88\x03\x2f\xaa\xfa\x6a\x38\xb2\x51\xdf\xe0\x4f\x9d\xc8\x4a\xf9\xa7\x22\xb2\xa2\x68\x3b\x4d\x18\xa5\x89\xe9\x53\x0c\xe5\x3a\x94\x7c\xb7\x92\x43\xf4\x0c\x52\x33\xe2\x97\x74\x5c\xa6\xf3\x9e\x1d\xd2\x21\x6c\xcc\x28\x6e\x79\x48\x01\x10\x36\x52\x3f\x69\x60\xde\xc8\x62\xc2\x8e\x38\x90\xc5\x49\xc5\x96\x7f\xb2\x42\xbc\x61\x8a\x68\x46\x99\x5f\x64\x34\xb1\xd6\x58\xa9\x1d\xb1\xc8\x1f\x4f\x2a\x4c\x3a\x9a\xc8\xf6\xff\xae\x8d\xeb\xe2\x6c\x19\xb4\xbb\x54\xbc\xb0\x7a\x79\x77\xb1\xde\x5a\x37\x3f\x4f\x3a\x6b\x79\xc8\x64\x06\x2e\xaf\xfa\x3d\x95\x2e\xfe\x5e\x53\xda\x3d\x88\x8a\x1e\x46\x50\x7a\x79\x5a\xae\x31\xb3\xae\x11\xfb\x7c\xbb\x1f\x12\x6d\xc2\x50\x96\x32\x56\xec\x49\xc5\x51\xf0\x2e\x7c\x21\xe9\xad\x53\x42\x5a\xe1\xa8\xc7\x42\xe4\x08\x07\x51\xa4\xe4\x6b\x65\xb9\x53\x9b\xe5\x09\xb7\x16\x08\xde\xcf\x33\xa0\x9f\x74\xf3\x3a\x0c\x07\xc3\x47\xe9\xc7\xb8\xb5\x41\x1b\x87\x07\xf0\x17\xe4\xf9\x94\x98\xff\x03\x72\x83\x44\x6e\xa4\xfc\x62\x64\xe1\xa6\x15\x66\xfd\xd1\x75\x5f\x9c\xfc\x0f\xbb\xb4\x68\xc5\x9f\x54\x3d\x58\x1f\xeb\x1c\xee\x5b\x0a\x50\x12\xad\xa5\xc3\xb5\x7c\x28\x8b\x93\x29\xcb\x69\x71\x0a\x7d\x79\x83\x00\x22\x29\x13\xc4\x81\xe3\xa3\x60\xd7\x9b\x3e\x26\x6e\xb8\xef\xbe\x88\x4c\xb0\x3c\xa3\xd4\xa0\x78\xe7\x09\x10\xcd\x87\xf6\xef\x69\x02\xc2\x8e\x8a\x25\xce\xa8\xb3\x09\x1c\x4d\x53\xbe\x1f\x19\x53\x8a\x60\x6f\x32\x51\xd6\xe9\x6c\x03\x57\x37\x64\x6b\xb8\x8b\x4e\x3a\xc9\xfd\x41\xc4\x85\x4e\xee\x35\x53\xfe\xd2\x52\x92\x8e\x8a\x08\xaa\x41\x42\xf0\xd7\x72\x4d\xe3\x15\x2d\xee\x74\x84\xa5\x83\x63\x15\xa4\x97\x7c\xdd\x6d\x2c\x3e\x13\xd3\x71\x4b\x91\xce\x9c\x51\x64\x76\x67\x94\xe4\x0e\x51\x07\x4e\x79\xe1\xae\x3b\xf4\xe6\xf0\x55\xa7\xbb\x9a\xca\x53\x39\x17\x51\x64\x07\xb6\x3f\x43\x2f\x2c\xc2\xb1\x7e\xe7\x9c\xd6\xa2\xee\xe4\xab\x02\x7a\x7c\x93\x4e\x29\x06\x05\xa8\x43\x7d\xcd\xc4\xcb\x16\x93\x2e\xd2\x6d\x1e\x49\x72\xaa\x1c\x06\x1c\x9d\xa5\x4f\xf0\xcb\xe5\x93\xc2\x59\xff\xa4\xe3\x5b\xb8\xcf\xe8\x25\x8e\x24\x2c\x46\xf1\x9e\x2a\x9d\x7f\x81\xa2\xbd\xe8\x86\x50\xda\x16\xf6\x77\x63\xd2\xfa\xcd\xff\x5c\x60\x31\x1d\x9d\x35\x50\x42\xe2\xef\x4c\x94\xde\xc1\x54\x57\x29\xde\xfc\x53\x05\x0d\xb9\xdf\xf1\x63\xf6\x1e\xd2\xdc\x88\xcc\x7e\x58\x61\x29\xe6\x16\x09\xac\xb6\x07\xa8\x1f\xe0\xb5\x76\x11\x97\x2f\x32\x6b\x7c\x30\xb2\x9f\x46\x88\x54\xa1\xa9\xa0\x5c\x3c\x3e\x71\x8c\x4d\x2a\x6a\x74\x3b\xba\x0a\x58\xb5\x7d\x9d\xdc\x34\x38\xd2\x77\xc1\xff\x05\x28\xd0\x5f\x55\x10\x44\xa6\x9f\xac\xd2\x04\x20\x9b\x8c\xf6\x58\xbe\x7e\x28\x97\x42\x9e\x10\xd0\xd6\x93\xdf\xbd\xaf\xc8\x67\xf9\xd1\xc5\x66\x7b\x20\x29\x75\x34\x99\x28\x7c\xc3\x79\xe2\x48\x7a\x80\x92\x83\xaf\x55\x27\x51\x60\x72\x13\x25\x03\xdd\x49\x34\x99\x28\xe1\xeb\x89\x12\xcf\x1d\x24\x51\xff\x51\x85\x03\x3a\x05\x33\xe8\xdc\x4d\x47\x1b\x7b\xb6\x52\x29\xc2\xa3\x62\x9a\xbe\xe4\xc1\xc4\x62\xe0\x0a\x00\x37\x62\x6b\x05\x4e\x4d\xe2\x7e\xb6\xd2\xad\x4d\x2b\x11\x0b\xe3\x7d\xd5\xa0\xff\xb7\xff\xd6\xdf\x46\xc2\xd5\xc1\xbc\xf6\xb8\x2e\x5e\xed\xe1\x86\x26\x0b\x92\x56\x35\x90\xa3\xcf\xf1\x8d\x1a\x9a\x95\x30\x8a\xcc\xc0\x4e\xb7\x34\x5d\x7a\xf9\xf6\xc8\x25\x5f\x57\xfb\x90\xf1\x31\xfc\x1f\x0f\xe5\x90\x58\xb5\x51\x34\xe3\x37\x1f\xa3\x23\x31\x98\x80\xe1\x20\xb1\xf9\xfd\x89\xf2\x3b\xce\x12\xda\x0a\x03\xb6\xbb\xab\xc9\x46\xc7\x04\xa1\x80\x85\xd8\x89\x1d\xe3\x04\xa4\xcb\xe1\x83\x99\xf9\x78\xe2\x6b\x23\x77\x27\xad\x83\x0b\x9b\x4c\xbc\xe6\x32\xd8\x07\x66\xd9\xfc\xde\x52\xdc\x12\x51\x3e\x9c\x71\xfb\xee\xbf\xf8\x25\xf2\x60\x69\x43\x1c\xfe\xa5\x75\xb5\x6d\xee\x57\x7c\xd4\xab\x13\x25\xa1\xec\x55\xb4\x47\xb6\x1f\x06\xd4\xd0\xe7\x2a\x17\x77\x74\x60\x77\xa7\xf3\xb4\xa6\x13\xee\x17\x41\x6e\xfb\x8a\x00\x90\xe1\x98\x7c\xe3\xc9\xf1\x23\x93\x65\x02\x5b\x46\x1d\x8b\x01\x31\x7c\xa3\xd6\xc7\x92\x21\xdd\xe7\x79\xdf\xa7\xa3\x20\x91\x1e\x4f\xc1\x4a\x87\x92\xe9\xf7\xc5\x89\xdd\x4e\x47\xdc\xae\x58\xd2\x11\xf7\x8e\xd0\x4c\x57\xb1\x9c\xfc\x21\x32\x10\xb0\x09\x33\xeb\x4d\xcc\xc7\xa9\x1d\xa7\x61\xec\xd2\x3c\xd8\x19\xe8\xb0\xe0\xeb\xad\xca\x61\x65\x58\xf3\xdc\x73\x4f\xd0\xb3\x49\xf9\x8a\x42\x3d\xe7\x1b\x3a\x7e\xa3\xab\x0a\x33\xf8\x40\x85\x94\x53\x5d\x0f\x0d\x7c\x7c\xbd\xb4\xf3\xc8\x43\xfd\x2b\xd8\x5d\xf8\x00\x0b\x9d\x72\xdb\x20\xb7\xff\x36\x5b\x54\x97\x65\x29\x47\x19\xfe\xe7\xf9\x8e\x97\x90\xfc\x0b\x9c\xfa\x8e\xf1\x62\x6e\xbf\xab\x00\xe8\xce\xbe\x86\x82\xec\x42\x7b\x10\x25\x2b\x16\xdb\x56\x58\x21\x5b\x4a\xf7\xc3\x5b\x9e\xd7\x5e\x08\x5e\x50\xb1\xc3\x86\x8a\x1d\x7c\x24\x34\x0a\x83\x34\x59\x35\x2b\x02\xb5\xe5\x8a\x2b\x96\xa4\x94\x5f\x9f\xad\x10\x9b\x82\x46\x2a\xdb\xe1\x71\xaf\xa4\x12\xb1\x79\x81\x32\x55\x58\x1e\xff\x2b\xde\x43\xb3\x10\x89\x0c\x7f\x85\xc7\xd7\xdb\x60\xad\xc4\x35\xa3\x28\x0a\xbf\x45\xdf\x8a\xd3\xf2\x1e\x96\x34\x83\x6d\x27\x9e\x38\x1b\x6d\x87\x42\xa7\xda\xd4\x17\x48\x5a\xd6\xa3\x90\x38\x83\x5a\xbe\x2e\xc5\xc0\x71\xbe\x71\x09\x90\x6c\x98\xac\xa6\x49\x32\xc2\x98\x38\xf2\x1a\x4f\x64\xe3\xfe\xd2\xc4\x43\x5b\x64\x2c\xdf\x0a\xf7\xe7\xba\x56\x14\xda\xd6\xf5\x32\xc4\xe7\x94\x7b\x07\x26\x06\x95\xe6\x5c\xd7\x2a\x63\xeb\xaa\x0d\xdb\xa4\x66\xc9\x70\xbb\x16\x8a\x4f\xcc\x26\xc7\x37\x8e\xe6\x7a\x64\xd2\xe5\x47\x54\x55\x1d\xd2\xf2\x4c\x8c\x0c\xd4\xb6\x53\xf4\x2d\x4f\x6a\x8c\xdc\xa9\x89\xea\x2e\xda\xd0\xea\x92\x27\xd5\xa6\xb8\x32\x51\x24\xbe\x1b\x93\x47\xbd\x30\x09\x32\xbd\x5c\x45\x26\xf0\x1f\xaa\xd6\x9f\x4c\x3c\xee\xf3\xba\x4a\x8b\xf7\x6c\x6c\x97\xc2\x3c\xa3\xbe\x8f\x0a\x2b\x9f\xb4\x73\x69\x41\x94\xf3\x15\xf6\xbe\x5a\x94\x5c\x6e\xf1\xa5\xc4\x8b\xa1\x23\xb3\x7e\x41\x65\xd9\xbd\x8c\xc2\xeb\x85\x35\x59\xc8\x25\x3d\xb8\x68\x2c\x18\xcd\x37\x93\x5f\xf2\xe2\xbf\x71\x5e\xda\x1b\x1b\xdb\x22\x0d\x4d\x84\xd4\x2f\xfb\x65\xc8\x32\x89\x93\x56\x29\x56\x2f\xdb\xc7\x5a\x9a\x65\xd6\x73\xa3\x22\x03\xc5\x59\x5c\xda\x2d\x5c\x11\x85\x6d\xf8\x09\xec\x1f\x1f\x44\xf8\x05\xfe\x20\x1e\xd1\xe9\x81\x1d\x9c\xdb\xbf\x79\xa6\x43\x66\x0c\xa9\xd3\x9b\x64\x7d\xe0\x75\x71\xa1\x4f\x40\x73\xca\x61\x19\x92\xf8\xd6\x94\xe2\x38\xbd\xa4\x32\xc3\x5c\xe8\x86\xab\x7a\x67\xb2\x4b\x2c\xe8\xf3\x7f\x1d\x73\x81\x78\xea\x06\x1e\x92\x91\xff\xa8\xa1\x62\xa5\x20\x95\x2b\x2c\xbe\x34\x63\x9a\xd2\x17\x91\xe7\x0f\x27\xdb\x7f\x95\xd7\xec\x29\xca\x75\xa3\xe0\xf7\x27\x48\xd4\x61\xdd\xff\x6e\xa7\x74\x7a\xb1\x1b\x3f\x23\x9c\x12\x52\x56\x6f\xc1\xe9\x15\x96\x8a\x72\x4b\x01\xc3\x00\x7a\x55\xee\xaa\x87\x4e\x0f\x2c\xec\x55\x64\x91\x59\x34\x95\xf8\x30\x99\xf8\x19\x67\x00\xb2\x3c\x7f\x09\x8f\x5b\xa4\x41\x4b\x03\xed\x4e\x31\x0d\xce\xd9\xbb\xd7\x95\xc1\x3c\xbc\xf5\x6d\x4d\x7d\xfe\x3d\x60\x73\x60\xa7\xbe\xcd\xa7\x00\x33\x5d\x75\x94\xbc\xfd\x46\xc7\x33\x7b\xfe\x1c\x0e\x1b\xc0\xce\xd7\xe1\x09\x3b\xb0\xf3\x6f\x7d\x83\x37\x28\x63\x2e\x2b\xfc\xed\x68\x56\x7d\x0f\xfb\x58\xfa\xcd\x54\x2b\x26\x3a\xcb\x1f\xd3\xc2\x6f\x67\x95\x0c\x17\xf2\x86\xb8\xfe\x53\x95\x86\xff\x33\x05\x16\x3d\xa1\x1b\xce\x7f\xa2\x8b\x5c\xbb\xba\x9e\xae\xfd\xb6\xc6\xd2\x4e\xad\xd3\x9a\x70\x00\xe1\xe7\x9e\x73\xd0\x41\x7a\x05\x71\xfb\x1a\xc2\xd5\x25\x3b\x32\x9c\x99\x76\x52\x6a\x8e\x93\xed\xfe\x56\x09\xf1\xf9\xf9\xf6\xfc\xfc\x2f\x95\x4f\x81\x25\x7b\xad\x53\xae\x27\x78\xc1\xdb\xd6\x69\x3d\xc1\xc1\xfb\xc7\x34\x8d\x58\x04\x3f\xe8\xa8\x88\xe6\x18\x16\x14\x56\xe6\x65\x3a\x80\x59\xec\x11\xeb\x46\x08\x2b\x68\xc5\xc3\xfa\x80\xff\xc8\x71\x51\x95\x83\x23\x7a\x02\xea\xac\xc3\x76\xc4\xd2\xfe\x67\x58\x13\x3a\x96\x70\x60\x70\x4f\xd1\x34\x51\xf0\x79\xf0\x2c\x62\x09\xde\xa4\xa5\x26\x6c\x42\x34\xb2\xc8\x79\xb7\xba\xe5\x26\x91\x0a\xb9\x2e\x02\x7c\x8e\x71\x66\x62\x6b\x4c\x0d\x3e\xf3\x51\x43\x79\x7a\xa1\xfd\x7a\x91\xe4\xa6\x42\xbd\x04\x16\x7a\xbe\x9e\x3c\xe3\x0e\xa1\xd7\x92\x22\x8d\x09\x52\x32\xe5\xdb\x2e\xf8\xe8\x90\xc2\x96\xee\xba\xf3\x5e\x48\xb2\x62\xd3\x27\x68\x18\xb1\xce\xff\x6a\xa2\x32\x00\x17\x68\x7e\xe0\xed\x6c\xd2\xf6\x43\xe2\xe8\x03\x45\xad\x72\x51\xe3\x9c\x21\x97\x8a\x9f\x6f\x75\x55\xeb\xd6\x71\x1e\x08\xb8\x61\xad\x75\x9f\x3b\xde\x09\xfc\x16\xc2\xda\xef\x4d\x54\x2b\xf3\x23\xc8\x23\xa9\xde\x04\xc9\xcd\xce\x40\x58\x4c\x98\x33\xb6\xb2\x95\xbe\x34\xdf\x4e\xde\x48\x62\xdb\xb7\xe3\xc8\x8a\x42\x3c\x90\x85\x9b\x27\x14\x06\x34\x30\x45\x1e\x26\x45\x36\xe3\x13\xe9\x9c\x14\xc2\x58\xa0\xf1\xdd\x29\x95\x7b\xf0\x02\x56\x14\xca\x69\xd7\x6a\x49\xbf\xc5\x59\xca\xb4\x45\x80\x4c\x1f\x98\x75\xc7\x23\x0d\x94\x9c\xa9\x4f\xa9\x76\xc6\x34\x0b\x97\x6c\x7f\xca\xe7\x43\xee\x60\x1c\xe0\x3d\x4d\x75\x75\xf6\xda\xcb\x13\x65\xe1\x20\xce\x66\xd4\x18\x41\x05\x0b\x56\x6d\x6a\x5d\x95\x2c\xb6\x77\xbd\x2f\x76\x83\x0c\x8d\x74\xa9\x36\x70\x57\x51\x1f\x66\x12\x3b\x20\x07\x56\x32\xd6\x8f\x6b\x39\x76\xc5\xac\x33\x4d\xcd\xa9\xd4\x34\x93\x09\x6b\x18\x10\x85\x9b\x38\x50\xf9\x46\x69\x7f\xbe\x66\xe2\x17\xa8\xdb\x5a\x54\x4a\x15\x7d\xf5\xa9\x89\xd6\xa3\x89\x22\x91\x8e\x72\xfd\xa1\x8e\xad\x67\x43\x6b\xac\x59\x9b\x67\xd3\x9a\x6b\x9b\xfe\x10\x15\xcf\x1b\xba\xfc\x79\xa3\xa3\x48\xb8\x9b\x52\xdb\x44\x99\xd0\x52\xce\xd5\x39\x2d\x7a\x70\x4e\xc1\x50\x23\x6b\xfa\x36\xcd\x76\x90\x25\x90\xff\xf6\x43\x7d\x12\x16\xcd\x7d\x49\xf9\x0c\xfc\x3f\xb4\xb1\x9c\x98\xbf\xf7\x03\xeb\xdc\x92\x07\x66\xdb\x59\x94\x8c\xc7\x6b\x84\x1c\x11\xd2\x73\x9f\x84\xd1\xdc\x00\xe3\x34\x19\x8f\xcb\x45\xb5\x38\xeb\x34\x14\xcb\x97\xc5\xc9\x7f\x98\x0e\x66\x04\x35\xb7\x6a\x7d\x20\x2f\xcd\xb7\x97\xc2\xd8\x66\x53\x2a\x3c\xc1\xfe\xc3\xa1\xf4\x40\xa5\xee\xea\x12\xb8\xcf\x3b\xf9\x1c\x89\x06\x61\xfa\xaf\xe9\x1c\xcc\xb5\xda\x8f\xce\xed\x6f\xc7\xb6\x5c\x34\x2d\xc5\x48\x44\x3f\x2a\x54\x45\xb2\x65\xcc\xeb\x85\x19\x99\x34\x8c\x71\x22\xc1\xad\x7f\x97\x06\x9b\xaf\x55\x22\xb4\x9f\x22\xca\x72\xca\xdd\x1e\x4d\xae\xe1\x27\x59\x12\x85\x41\xc8\xbf\x2e\x20\x63\xdf\xa0\x79\xb6\x2a\xe1\xd2\xb7\xd8\x77\x38\x32\x2f\x77\x3c\xf7\xcf\xb7\xe0\x78\xf1\x7f\xd0\xdc\xc0\x96\x32\x26\x0b\x1e\xc8\x95\x06\x64\xc5\x2b\x34\xe6\x53\x8a\x6d\x1b\x40\x3c\x4c\x1e\xc4\x56\x10\x42\x5d\x53\x89\xd5\x2c\x09\x42\x9b\xaf\xcd\x68\x32\x99\x2f\xb4\x7d\xfa\x82\x1e\x0e\x36\xfc\xa7\x30\xee\xc8\x24\xfc\x42\x11\xda\xbd\xa9\xb2\x0a\xbf\xb1\x6f\x96\x06\x41\x5a\xfe\x54\x3f\xe1\xad\xce\x57\x94\xf1\xcc\x83\x21\x59\x4e\xe0\x05\x7e\xd1\x51\x4c\xfa\x9a\xc8\x1c\x81\x3c\xbc\xa0\xef\xc3\x77\x96\x8e\xa8\x06\xd5\xa1\x22\xed\x4d\x55\x5a\x7e\xfc\x0c\xa3\x6f\x41\x88\xd6\xbd\x01\xe9\x25\xab\xc0\x6a\x4a\x7b\x83\xf2\x58\xef\x36\xe8\x60\xbd\xd2\xee\x99\x2c\x0c\x1c\x7e\x50\x48\xad\xca\x6f\x17\x4a\xab\x06\xd4\xe6\x38\x0d\x63\x92\xb5\xd7\x68\x85\x8e\xae\x1e\xef\x76\x8f\xf4\xc2\x63\x1e\x67\xb8\x8d\x41\xfc\xd2\x09\x5a\xfa\x5d\x92\x50\x55\x30\xce\xeb\x58\x38\x70\x7c\x19\x53\xc6\x7a\xbd\x2a\x57\xf8\x07\x13\x95\x41\xff\x73\xf2\x06\x34\x8d\x1a\xce\xaa\x1f\x69\x3f\xe3\x04\x39\xf3\x2c\x07\xde\xc4\xa5\xd1\xee\x25\x45\x79\x52\xa9\x4a\xe3\x86\x56\xf3\xdd\x50\x81\xca\x92\xc9\x72\x9b\xe5\x58\xa4\x38\xcb\x6f\xaa\x4e\xc4\x63\x64\xca\xc4\xa1\xf5\x30\xd9\x20\x19\xaf\xa5\xe5\x71\x88\xd4\x2f\x2b\x72\xd2\x07\x2b\x42\xed\x62\xca\x3d\xf0\x2e\x4e\x84\x11\x0a\x47\xef\x1d\xfc\x21\xdf\x34\x04\x9c\xf3\xed\xdc\xc6\x4b\x49\x04\xc3\x27\xa9\x15\xe5\x55\x9c\x57\x32\x04\xdf\x76\x64\x1e\xc4\x16\x90\x6f\x49\x3e\x74\x74\xf2\x41\x55\x61\x08\xf4\x0b\xdb\xf6\xa2\x07\xd8\x38\x5e\x97\x7a\x19\x70\xef\xde\x76\x1c\x06\x26\x35\x83\x82\x5b\x26\xe0\xd0\xb3\x35\xe2\x9b\xce\x57\xab\x6e\x74\x39\x37\xf3\xf3\x0b\x3b\x69\x3b\xc0\x9f\xff\x23\x9c\x22\x82\x35\x54\x45\x52\xf4\x83\x8b\x8e\x80\x96\xa4\x60\xb9\x3c\xa1\x5a\x9e\xf2\xd2\x8e\xa7\x1b\x36\x07\xda\xfa\xc6\xa9\x43\x28\xb8\x70\x54\x71\x6c\x3d\x5b\xe1\x78\x48\x56\xec\xc8\xc6\x39\xc9\x20\x21\x3e\x82\xae\x3b\x7c\x45\xfe\x45\xae\xa7\xd0\x30\x49\xa3\x0b\x3d\x97\x60\x60\x6b\xd2\x7d\x8b\xb3\xed\x5e\x92\x0f\x6d\x3a\xed\xc9\xf0\x38\x01\x82\xa8\x07\x26\x11\x06\xec\x94\x6a\x81\xff\x5c\xad\xbc\x1e\x51\xde\x39\xf5\x44\x19\xc5\xf2\x83\x7c\xad\x20\xf3\x63\xfa\xe3\xac\x5c\x04\x7b\xf6\x38\x42\x0b\x9a\x65\xc9\x94\x39\xbe\x92\xbe\x25\x0e\x17\xc9\xd4\x3a\x8e\x49\x57\x3d\xae\x37\xa3\x1d\x98\x7d\xb1\xfc\x09\xe9\x27\x74\x1a\xdb\x5e\x6f\xbb\x66\x76\xf6\xbf\xdc\x36\xe3\x71\x64\xd7\x44\x54\xb1\x42\x20\x29\x55\xe7\xad\xa5\xd1\xe7\x55\x1e\x90\x6d\x1c\x77\x7f\x56\x3a\x41\x1b\xaa\xdb\x26\x1c\xf1\xb4\xbb\x3e\x67\x47\x63\xb2\xa1\x71\x5b\x49\x1a\xdb\x14\x49\x22\x81\x77\xb7\x1c\xed\x05\xd7\x7c\xb1\x30\x6f\x51\xd5\x82\xaf\x3b\xcf\xea\x9c\xc7\xb8\x6f\x23\x53\x9e\xe2\x58\xae\x80\xc4\x31\xb6\x93\x6f\x5c\xdf\xc3\x80\xe5\x7c\x9c\xaa\x02\xf7\x32\xc8\x46\x6a\x79\xa5\x10\x2d\xfb\x00\x27\x08\xad\xdb\x08\x31\x8e\x2a\x12\xf2\xbb\xf0\x49\x25\x3b\xa6\x98\xa6\xaf\x76\xb4\xf2\x36\x9e\x0f\xc6\x15\xd5\x3a\xfe\xae\x8e\xaf\x90\x1e\xe9\x78\x5b\x92\x25\x45\x1a\xd8\x8c\x11\x60\x02\x1a\xa4\x85\x82\x60\x97\xf9\xf7\xb1\x27\x7f\xa4\x1a\xab\x88\x24\x2f\x80\xe7\xec\x45\x70\x2b\xac\xed\x3a\xa5\x95\xa6\x6b\xbb\x94\xdc\xae\x62\xd9\x7a\x44\x0b\xb2\x81\x75\x06\x81\xc1\xbb\xc8\x4e\x09\x41\x09\x0d\x80\xb3\x61\x73\xfb\xf9\x9d\xdf\xd5\x89\x8c\x9f\xc0\x10\x02\xd5\xfc\x47\x0d\xf8\x99\x05\xe8\xf2\x33\xad\x16\xc2\xee\x9d\xe8\xcf\xc5\x5e\xdf\xb6\xae\x5c\xbf\x4b\x2a\x04\xb3\x87\x02\x48\x51\x97\x3f\xcd\xea\x76\x48\x04\x88\xd4\x9d\x77\xeb\x07\xa1\x89\xf3\x47\xc8\x9a\xb8\x33\xcf\x71\x42\xf3\x9b\x20\x8b\xfd\x07\x95\x44\x1b\x99\x06\x9d\x24\x86\xb3\x7c\x1f\xc3\x0a\x97\x8a\x3b\xc6\x24\x7d\xdc\xd4\x59\x98\x9a\x5e\x0f\x60\x1f\x58\x8e\xcb\xca\x8a\x5c\x7e\x08\x29\x44\x10\xf6\x85\x6c\x0c\x9e\xd1\x36\x8c\x0a\xdc\x8c\x6b\xf4\xfc\x52\xb1\xfb\xea\xd6\xf2\xc8\x8b\xed\x03\xb3\x73\xcf\x96\x5e\x15\x1e\x8b\x85\x16\x50\x5e\x3a\x49\x89\x0c\x8d\xd9\x46\x6c\x7f\x0f\xe8\x2f\xa6\xee\xa6\x55\x8c\xad\xc4\xc5\x15\xc9\x2a\xfb\xe2\x4a\x8b\x7a\xe2\x65\x75\x21\x33\xc6\x7f\x85\x41\x91\x52\x3c\xbd\x86\x4b\x44\x7b\x10\xe1\x65\x25\x42\xba\x49\x83\xba\xf9\x11\x96\x0f\xbe\xf4\x9a\xa2\x71\x7a\xe9\xfd\x8e\xb2\xe0\xe7\x29\xfc\x72\x90\xe0\xd2\x35\x44\xc6\xf3\x70\xed\x08\x7d\xee\x39\xa2\x41\x18\x27\x21\x14\x50\x5f\xf1\x7a\xa1\x2e\x6f\xc3\xad\xa2\xc2\x8e\xe3\x5d\xda\x3d\x07\x7f\xa3\xa5\x53\xa5\x27\xb5\xce\x4c\x7d\xb6\x5f\x9a\x6f\xf7\x12\xeb\x02\x60\xc1\xe8\xb5\x14\xe1\x86\xea\x94\xfd\xaf\x15\x1b\x79\x48\xec\x9b\x79\x92\x02\xd9\xe1\x14\xfd\xe7\xa5\x7c\x07\x91\x39\x18\xee\x6b\x0a\xb8\x8e\xde\x66\x8a\xb7\x90\x7b\xb8\x4d\x66\x46\x8e\x1d\x5a\xa9\xf8\xb9\x13\x35\xda\x4f\x57\x89\x0d\xa3\xa5\x94\x89\xc2\x39\xcd\xb0\x5b\x8b\x6e\x00\x3f\x07\x80\xd5\x76\x6c\x48\xdc\xfc\x8f\x4d\x19\x14\x4a\xb0\x67\x36\xce\x8d\x73\x8b\x74\x54\x2b\x81\x6c\x63\x4f\x0a\x43\xf9\xa7\x34\x98\x07\x43\x26\x23\x82\xd9\xc0\x2a\xfd\xb2\x09\x44\x9b\x14\x79\x64\xd6\x32\xe0\x51\x5c\xbb\x7e\xf9\x7d\x7c\xa3\xfa\x29\x7a\x49\x9a\x26\xab\x82\xd2\xc4\x14\x9d\x53\xd3\x75\xce\x21\x8d\x28\x30\x0d\x7b\x05\xf1\x8c\xb9\x26\x68\x2e\x81\xd3\x9a\x1c\x3c\xdb\x6d\x6d\x55\x38\xc4\x63\xee\x5e\xd7\x48\xb6\x7e\x72\x68\x46\xc1\x1a\x4f\x50\x6c\x8d\x71\x66\xe5\x23\x29\xaf\xe3\x55\x01\x08\xb9\xa5\x53\xca\x1f\xb9\xc3\xad\x1c\xe8\x28\x6a\xf9\xfc\xf6\x5d\x5d\xb2\xbd\xeb\x50\x98\xa9\x35\x9e\x70\x0e\x4e\xe0\x0d\x05\xa0\xb8\xa5\x8b\x77\x3b\xba\x3e\x3d\x68\x32\x6a\x39\x2b\x7d\x56\xad\x36\xca\x4a\x16\x02\x87\xaa\x57\x33\xf7\xb5\x7b\x91\x19\x31\x28\x08\xf1\x2d\xd4\xcf\xf9\x7a\xa2\x91\xf5\x41\x6a\x4d\x66\xfb\xbb\xf0\x0b\x0e\x78\xb9\x38\xeb\xba\x5c\xd5\xe9\x70\x5e\xa3\x6f\xfe\x37\xdd\xae\x74\x84\x1c\x59\xe9\xa0\x29\xe7\x02\xf6\x07\x35\x60\x61\x45\x2f\x1f\x82\xbf\xd6\x57\x05\xc7\x26\x5d\x76\x10\x11\xc9\xa1\xf8\x9c\xb5\x46\x57\xc6\x61\x96\x99\xf8\x11\xfa\x4b\x11\x55\xf1\xed\x90\xb7\xb5\x88\xf8\x47\x08\x66\x05\xf0\x4d\x13\x28\x7d\xf9\x2d\x27\xa7\xf5\x00\xe6\x4b\x20\xe2\x8a\xa8\xe2\x92\xca\x75\xf5\x0b\x69\xcc\x71\xe5\x06\xaf\xcb\xe8\x56\x69\x69\x43\x8a\x08\xd0\xc4\x1a\xd7\x94\x48\x91\x37\xb0\x9d\x6e\x45\xdd\x73\x97\x05\xdf\x28\x04\x17\x51\xd7\xed\xf0\x7d\xa3\xe8\x50\x91\xe3\xb7\x3c\x71\x5c\x82\xcd\x29\xf4\x6d\xa8\xae\xb6\x53\xd5\x23\xfa\x59\x25\x4c\x64\x06\xdc\x61\x01\x37\x12\x67\xcf\x5d\x1c\x07\x7c\xd3\x14\x75\x6c\x6d\xfd\xc2\x8c\x7d\xae\x66\xef\xf3\x26\xca\x94\x2c\x0f\x47\x45\x14\x2a\xc8\x3c\xe7\xa9\x7c\x23\xa5\xa2\x49\x59\x09\xa3\xc8\xa2\xfd\x59\x15\x3e\xaa\x94\x29\x0e\x36\xed\xe9\x2d\x8e\xab\x7e\xa6\x15\x1b\xf7\x13\xd0\x73\xc3\x07\x39\x43\xfb\x81\xaf\x55\x4f\xe0\x4a\x18\xd8\x47\xcb\x95\x0c\x1f\xef\x1d\x4c\x05\xea\x6b\x5f\x4e\x14\xd1\xfe\xe7\x13\x45\xcb\x75\x44\xef\x91\x9f\x6b\x8a\xaa\x1f\x74\x3c\xc2\xbb\x45\x26\xca\x71\x2b\x2d\xbc\xbc\xcf\x29\xdd\x94\xaf\x00\xa4\xca\x15\x7a\x30\x29\x43\xec\x16\x0b\xb2\x06\xd2\x4d\xa7\x69\xb0\x38\xeb\x64\x25\x55\x93\x96\x62\x2e\x48\x22\x47\x32\xa2\x58\x53\xe6\x9c\x19\xde\xba\x0e\x4b\xbf\x25\x29\xf2\xe9\x72\x15\xb9\x02\x9d\xc3\x53\xa2\x40\x80\xa7\x6a\x11\x7a\x03\x87\xf0\x07\x7a\x6f\x5a\x93\x46\x6b\x8f\x7a\xaa\xe3\xb7\xa9\xa2\x28\x09\x9d\x72\x50\x45\xb2\xd0\xd9\x70\xf3\xa4\x32\xdb\xa7\x91\x65\x02\x46\x84\xd7\x9e\x0b\x9c\xca\x67\x77\xfd\x79\xe5\xc6\xe6\x3f\x9b\x54\xbb\x8c\x1d\x17\xc5\x5b\x2a\xec\x31\x23\x93\xdb\x22\x6d\xf9\x76\x85\x53\x64\x89\x84\x5e\xb0\x91\x4f\xc7\x9a\x5c\xa9\x54\x1c\x86\xd7\x29\x12\x72\x3e\xbd\x3d\x4a\xb2\x20\x59\xdd\xad\xb8\xd0\x3e\xd6\xb2\x0d\x87\xa9\x86\x26\xb8\x0c\x05\x9a\xf9\x31\x0d\x02\xda\xa3\xf8\x90\x75\x92\x26\x8b\x52\x7b\x40\xa8\xcc\x1f\x80\x71\x43\xa2\xe9\x8b\x89\xe2\x52\xf9\x91\x6a\x66\x20\xc3\x8f\x66\x06\xa4\x81\x10\x5c\xf0\xb5\xca\x7b\x97\x47\x2a\x85\xb4\xce\x29\x78\xb7\xe3\x9d\x85\x77\xd5\xe8\x8d\xc2\xd4\xc4\x7d\x4e\x80\x60\x09\xbc\x87\x07\xe6\x1b\x17\x41\xf5\xc3\x2c\x2f\xd2\x1e\x1f\xd2\xf0\x19\x90\x2e\x12\xf6\x3a\x2d\x12\x42\xaf\x03\x9f\xfe\xd3\xa6\xfe\xb0\x11\x85\xf5\x74\xba\x22\xce\xfe\x6e\xc7\xc7\xdf\xdf\x55\x82\x7c\xac\xd2\xba\xc3\x27\xb1\x3e\xa6\x1f\x42\xc0\x89\x5d\x87\xc0\xef\xe3\x4e\x25\xc1\x49\xcb\x0d\x61\xff\x51\x05\x24\x3e\xff\x50\x1c\xa4\x49\x47\x01\x77\x45\xa2\x88\xf5\xbe\x26\xb6\x7f\xbf\xb1\x59\x75\xb8\xd6\x4b\x43\x8c\x88\x6e\x5d\xc1\xe9\xf5\x96\x0e\xb9\x2f\x4d\x1a\x75\x68\x47\x26\x2f\x52\x12\xc3\xe6\xc0\x54\x10\x65\x2a\xc9\x8e\xcc\xbe\x58\x8d\x06\x2e\xbe\x20\xb2\xc6\x0b\xdc\x63\x34\xa6\xd6\xfd\xc8\x4c\xd5\x24\x7d\x16\x16\x17\xda\xec\x4a\x8a\x21\xc1\x6f\x71\x0b\x3e\xdf\x28\x67\x38\xb6\x59\x1e\xd9\x19\x32\x6c\xbc\x21\xb5\x87\xc0\xd0\x0c\xd9\xaa\x78\x17\xac\x79\x16\x1c\x45\x4e\xe9\x66\xed\xc4\x80\xc4\x53\x78\x28\x1f\x2a\xaa\xd5\x0b\x9a\x7d\xe5\x82\xf3\x26\x56\x4d\x1e\x0c\x6d\x2a\x63\x25\xa2\x99\xf4\xfd\x30\x33\x7f\xac\xd3\xb7\x47\x5c\x2a\xb1\x97\x26\xa6\x1f\x98\x2c\xa7\xe4\x38\x32\xb5\x37\x14\x5b\xdf\xe5\x8e\x97\x26\x63\x15\x04\x98\x75\xd4\xf9\xb0\x2c\x37\x1a\x15\xf9\xa3\x88\xca\xbb\xd8\xec\x37\x55\xd4\x77\x54\xef\xa3\xf3\xb5\x0e\x89\xfd\x2f\x63\xf2\xd1\x3d\xcc\xfd\x81\x78\x15\x69\x16\x54\x8a\x72\xab\x28\xdd\xf9\x68\x8f\xbb\x74\xf8\x46\x19\x89\xd4\x0e\x4c\x18\x4f\xf9\x9d\xc5\x96\x09\x91\x0a\x68\x4f\x70\x06\x9c\x52\xc4\xfa\xc9\xd2\x52\x18\x94\x23\x4b\x4b\xc8\x31\xb9\xbb\x1e\x13\x90\xef\xa2\x00\xf8\xe1\xc4\x57\x1c\x56\x93\x91\x8d\x1f\x51\x48\x87\xcf\x2a\x8d\x21\x37\x3a\x4a\x6a\x0e\x7a\x59\xf8\xb3\x13\xba\xc1\xe2\x14\x68\x66\xd6\x71\xf2\xe3\x08\xbe\xa7\x6b\xcb\x17\x1a\x4a\x33\xed\x61\xe1\x34\x90\xf0\x5c\x87\xb1\x06\xf9\xc6\x2d\x9a\xd4\x86\x03\xbf\x3b\x50\x7c\xbd\xae\xe8\x56\xaf\x37\xe7\x09\x9e\x33\x91\xe5\x62\x96\x90\x47\xd1\x6b\x0a\xab\x94\x5b\x93\xa9\x19\x8f\x85\xf4\x57\xb8\xe1\xe9\xa7\x44\xf0\xdc\x6f\xa2\xd7\x8b\x24\xb7\x94\xa1\xdb\xbc\x4b\x87\x14\xf6\xcb\x5d\xb2\x68\x7c\x5d\x0e\xd2\xe6\x5d\x45\xec\x1c\x17\x2c\x87\x82\x62\xc5\x17\x0a\x5a\xf3\x45\x63\xa8\x97\x15\xbd\x3c\x8c\xc2\x6c\x4a\x7d\x48\x53\x84\x7f\x89\xa1\x05\x02\x48\xf7\x3a\x66\x49\x6c\x72\x34\x32\x34\x12\x97\x8b\xd1\xb2\x45\x9a\xf4\x93\x28\x32\xe9\x94\x8a\xd9\x1f\x59\x77\x9d\x75\xb3\x4f\x77\x7d\x42\xef\xf6\x43\x83\xe3\x20\x89\x06\xd4\x3e\xef\x7a\x43\x3e\xc2\x0f\x4a\x87\x97\xd7\xa9\xa0\x96\x54\xce\xc0\xa1\x80\x70\x8c\x41\x6f\x7c\xd7\xd4\xd9\x45\x72\x51\xbc\x6b\x70\xce\x6e\x60\x83\xf1\x4d\xc3\x67\x16\xda\x79\xb2\xea\x28\xb7\x85\x05\x9c\x7e\x56\x68\xc0\x7d\xf2\xab\x17\x99\x0c\xed\x77\x92\x14\xf4\x65\x5f\xf4\xe9\x8b\x58\x79\x43\x7b\x5b\x18\x67\x45\x5a\x95\x2e\x03\xde\x48\x7a\x48\x7c\xaa\x64\x9c\xbf\xd0\xaa\x20\xa9\xe9\x79\xa4\x60\xe7\x0f\xf3\xa1\x35\x8e\x7e\x1a\xd9\x17\x84\xc0\x7c\xed\x50\x8f\x51\x31\xe0\x8d\x23\x62\x98\x1e\x2b\xbe\xa1\x30\x51\x23\x93\x0e\xc2\x38\xdb\x49\x3f\x27\x62\x3c\xb4\xb4\x99\x15\x90\xde\x51\x7f\x07\x1c\x4a\xae\x6e\xc8\x17\xd2\xae\x76\x7f\xe5\xc8\xd5\xa7\xd6\xb7\xba\xa9\xaf\xbe\xda\xce\x8a\x60\x48\xb6\xcb\x29\x9a\x2f\xcc\xed\x67\x40\xce\x70\xa2\xda\xc7\x1a\xf5\x52\xcc\x8a\x4d\xe3\xa4\xc8\x14\x84\xf7\x4d\x05\xe1\x7d\x53\x19\x2e\x13\xe7\x86\x81\x0b\xf8\xc6\xeb\x70\xda\xf9\xa6\x51\x0c\x8d\x78\x7e\x78\xc6\x64\x4c\xcb\x5f\x92\xb1\x7e\x5c\x31\xde\xda\x55\x98\x52\x91\xa0\xf2\xc5\x79\xc0\xb4\x44\xf2\xde\x07\x43\x59\x9e\x86\xcb\x4c\x43\xeb\xf1\x0f\x34\x92\x82\x98\x68\x18\xb0\xd5\x24\x5d\x06\xc9\xa4\x30\xfe\x7a\x38\xe5\xdb\x84\xe1\x73\xda\x15\x8e\xa4\x42\xf3\x5e\x04\x49\x14\xd9\x20\xc7\x90\x09\xc4\xb3\xe5\xd4\x9f\xae\xd6\x06\x62\x71\xb6\x3d\x8e\x28\xab\xd0\x52\x64\x0c\x17\x15\x5d\xd6\xc5\x5a\x87\x78\xe9\xa3\x0c\x4d\x1a\x52\x87\x55\xcb\x57\x4e\xa1\x77\xfd\xff\xf2\xf5\xa7\x31\x92\x9c\xe9\x9d\x18\xde\x9d\x55\x7d\xf0\x26\x87\xe4\xac\xfe\x98\xdd\xbf\x73\xed\xc1\x72\x01\x53\xb4\x21\xc3\x6b\xed\x7c\x89\x54\x75\x8d\x38\x2c\x68\x8a\x85\xea\x56\x53\x4b\xf8\x03\xdf\x8a\x7c\x33\x33\x58\x91\x11\x39\x71\x54\x75\x8d\xfd\x41\x30\x16\xc2\x62\x61\x2c\x60\x5b\x6b\xad\x81\xb5\x21\xed\x1a\xbb\x92\x20\x5b\xd7\x48\x3b\x5a\xad\x26\x6b\x46\x73\x88\x9a\x11\x87\xc3\xe1\x7d\xf6\x7d\x55\x75\x57\x37\xfb\xbe\x8a\x46\x3c\xbf\xe7\x79\xdf\x27\x2a\x83\xfa\xc4\x0c\x76\x55\x56\x66\xc4\xfb\x3e\xef\x73\xfc\x0e\x7e\x3d\x56\x83\xff\xb2\xdb\xb5\x49\xbc\x36\xad\xa6\x5d\x02\x72\x55\x86\x9f\x07\xdd\xf8\x90\xee\x92\x70\xb6\x1a\xf0\x33\x65\x62\xf2\xbc\x1c\xba\x53\x00\x99\x09\x7a\xbd\xfc\x5a\xdd\x93\x1e\xb3\x03\xf7\xb6\x1c\xc9\xf9\xc4\xd8\x4f\x18\xa6\x3b\x94\x5b\x22\x47\x3a\x81\x82\x85\x2f\x02\x0d\xce\xd0\x76\xb6\xfe\x28\xef\xdb\xcc\xc4\xdd\x96\x42\x03\x6c\xd5\x94\x36\x55\x72\x1e\x5b\xd3\x4d\x7b\x3d\xba\x61\x78\xa3\xe3\x81\x07\xda\x1f\x6f\xd2\xd3\xf1\xc3\x22\x54\x05\xac\x14\xca\x17\x2a\xaf\x0e\xd3\x24\xb4\x59\xc2\x78\x47\x44\x6a\xae\x83\x58\x25\x06\x25\x09\xc0\x25\xa7\xb0\x89\x31\x7a\x38\x43\xdf\x8c\x9d\xf6\x10\x50\xb1\x03\xd6\x09\xc0\x22\x46\x1a\xbe\xc3\x7f\x8f\x3e\x35\xee\xf3\x0d\xa2\x7b\xb1\xd0\x22\xdd\x7f\xf4\xad\xee\x5f\x57\x91\xff\x37\x1b\xe6\x60\x0b\xed\xd5\x28\x69\x69\x6e\x9f\x5a\xf5\xa7\x26\x22\xec\xe2\x0c\xb7\xfa\x79\x99\x62\x17\xbc\xae\xd5\xed\x5e\xff\x4c\xe1\x9a\xd8\x16\x85\x6b\x35\xb3\xa2\x49\xcd\x92\x4e\x65\x76\x27\x54\x4f\xfb\xbf\xf9\x6f\x39\xae\x8a\x57\xbe\x92\x44\x99\x5e\x77\xbc\x6d\xa3\x48\x19\xdc\x3c\xab\x35\xd2\x7c\xef\x3a\xcd\x12\x33\xb4\x49\x01\xd4\x0f\x8b\x32\x2b\x7e\xf0\x39\x65\x03\x73\x62\xfc\x80\xfb\x20\x87\x9e\x99\x52\xc7\xcf\x58\x75\x9f\xaf\x29\x4a\xc5\xe6\xc4\xc9\x5c\xad\xa0\x30\x24\x8d\x2a\x8c\x29\x0f\xcf\xf0\xcd\x7a\x8f\xfe\x12\xbf\x9e\xb8\xdb\x87\x9e\x6f\x77\x6d\xaf\x0a\x24\x2d\x2f\xc4\x82\xfc\x51\xfa\x64\x0a\xc7\x5f\x1e\x29\xb3\xb5\x69\x5f\x9c\x32\x96\x9a\x2f\xc6\x6a\xa6\x5a\xc3\x34\x35\x85\xe4\x32\xf3\x9e\x96\x32\x3a\xf0\x08\xa1\x53\x4d\xf3\xd4\x61\x9a\x81\x6b\xc5\xb3\xf0\xb1\xe2\xd6\xed\x22\x50\x9e\xcb\xdf\xab\x9d\x2d\x58\xc9\x1a\x6a\xbd\x9f\x53\x6c\x40\x8c\x84\xda\x0a\x72\x2b\x14\xf5\x62\x96\x4f\x2b\x14\x8d\x03\xf8\x02\xf1\x2f\xe0\x81\x88\xb0\xb7\x9a\x8c\xc7\x26\xa9\x4e\x70\x6e\xb1\x3b\xc1\xf0\xc3\x33\xf2\xba\xf6\x31\xa2\xc2\x4c\x57\x5b\x11\x1f\xf1\x4c\xa0\x50\x0c\xa7\x69\x6b\xf1\x3f\x68\x44\xc3\xe9\xa6\x6a\x7c\xd5\x9a\x65\x9b\x41\xad\x11\x2d\x72\x4d\x3a\xbb\xea\xac\x8e\xab\x6c\x8d\xc3\x0b\x2a\xac\x6f\x68\xd1\xb3\x6f\x34\x0c\xbd\x4d\xb8\x9c\xa4\xab\xb1\xed\xf6\x65\xc1\xb3\x47\xa1\x6e\xfa\x5c\x9d\x00\x1d\xcd\xcf\xb7\x8b\xa4\x40\x90\x14\x8b\x9d\x96\xf2\xa5\x69\x4a\x7b\x47\x66\x8d\xb6\x0a\x76\xa0\x48\x4c\xb5\x94\xf6\x94\x6b\x4a\x17\xa6\xd7\x73\x82\xef\x62\xc9\xa8\x08\x22\xef\x4d\x64\x17\x64\xe3\x36\xca\x0b\x13\x65\x3c\x42\x41\x27\xea\x94\x12\x29\x03\x16\x4a\x86\x71\xbe\xb6\x5a\x1d\x98\xc2\xae\x80\x4a\xf0\x22\x3f\x86\x9b\x78\x58\xee\x70\x51\xcb\x51\x73\xc8\xc9\x51\x04\xab\x1b\xf1\x16\x7b\x8a\x5f\x2b\xb0\x71\x37\xca\xc9\xa7\x81\x11\x30\xdb\xa4\xd2\xb4\x7d\x74\xd2\xe7\x67\x96\xe0\x17\x94\x25\xba\xf1\xf3\x7b\x4a\xe7\xee\x3d\x6f\xe0\x37\xca\xcc\x5a\x0e\x81\x62\xd7\xc3\xa8\xbe\x41\x43\x43\xe3\xd3\x9d\xc2\xe4\x8b\x33\xed\xf9\xf9\x27\x69\x15\xa3\xd9\x0a\x78\xb1\xa8\xc4\x56\xab\x16\xc9\xc2\xe5\xb1\x42\x9f\x3d\xba\xae\xb4\x34\x8e\x8f\x95\x98\x34\x23\xb1\x30\x7b\x3b\x1b\x28\x2a\x19\x90\xe8\xe8\x97\x5e\xa1\x01\x6c\x4d\xf5\x5d\x94\xc1\x7d\x7b\xb0\x05\x32\xa8\x18\x48\x2b\xc0\xcb\x93\x9d\xd6\x81\x03\xdc\x06\x3c\x4f\xe7\x94\x13\xab\x77\xc0\x83\xab\x88\x0a\xc8\x59\x76\x75\x3c\xe6\xf3\xa7\x81\xb2\xcf\x7f\x43\xcd\xa1\xf7\xb8\xc0\xbf\x94\xa5\x64\x79\x0b\x19\x28\x48\xce\x6c\x9f\x6c\x04\x5d\x9a\xbc\x58\x83\x7f\x1f\x4f\x65\x95\x4a\xf7\xa4\x1d\xc1\xec\xa1\x2a\xaa\x99\x1c\x48\xc9\x26\xec\xdc\x13\x6e\xa5\x94\x49\x37\x2d\x97\x0a\xdb\x8d\xd7\x30\xb3\xc2\x54\x08\x1b\x1e\xcf\xe4\xc3\xb1\xca\xdf\xcf\x4f\xb0\xfc\x0f\xcf\xbc\xd8\x2e\xaa\xfc\x79\x98\x96\x49\x41\xd9\xba\x4c\x1e\x5b\x4e\x1f\x1b\xad\x41\x81\x77\x3c\x5a\xe3\xe8\x8b\x9d\x6a\x13\x4c\xab\xce\x6e\x4b\x6c\x96\x0f\xa2\x51\xbe\x5f\xed\x69\x16\x2c\x70\xc2\x36\xaa\x5b\xde\x52\x32\xbf\x0a\x48\x00\x1a\x02\x4e\x49\x24\x2f\xfc\x0b\x78\x64\x18\x25\x5e\x6f\x30\xb8\x9b\x6d\xaf\x9a\xb8\x18\x60\x8a\x29\xe9\xda\x06\xfa\x8c\x7c\xa1\x60\xfb\xa3\x28\x5c\x26\x10\x30\xb3\x96\x03\x2f\x98\x7c\xba\x09\x91\x9d\xf6\x7a\xf9\x20\x4d\x0b\x25\x1c\xfa\x5e\xa0\x4e\x59\x05\xa7\xcc\xc2\x7c\x69\xaa\x5a\xdb\xc2\x26\xa3\xcf\x83\xee\x3b\xc6\xd7\xd8\x33\x57\x27\x88\x7c\x73\x73\x90\x99\xcd\x0b\x1c\x2d\xf4\xc7\x64\xd6\xe9\x47\xdb\xef\x38\x0c\x7b\x6e\xb3\x95\x08\xfe\x79\xf3\xce\x73\xca\x37\x38\xdf\x0d\x9e\x10\xc4\xef\x68\x94\xa5\xa3\x2c\x32\x85\x65\xb3\x1d\x94\x69\x47\xe8\xa4\xe3\xd7\x8a\xc5\x86\x82\x37\xe3\x88\x82\xce\x0f\x0e\x7b\x07\x00\xa8\xc2\x05\xda\xde\x57\xd4\x2f\x72\xaa\x9a\xc3\xf4\x11\x4d\xad\x9b\x40\x4e\x20\x21\xbd\xac\x8e\xfc\x0b\x14\x0e\x10\x20\xdf\x40\x04\xc1\x6f\xbc\xaa\xb2\xd6\x37\x82\x09\x7b\x77\xf0\xc8\x7e\x1c\xf8\xf3\xff\x82\x8a\xca\xa7\x02\x65\x1b\x76\x7d\xac\xc0\x8f\x0f\x4f\x98\xba\x1e\x9e\x69\x57\xc7\x0b\xa8\xc5\xee\x10\xfd\x53\xfc\x12\x5f\x4c\x80\x24\xab\x0a\x29\xb3\xc6\xc9\x66\x20\x29\xfe\x89\x32\x47\xf9\x89\x02\xc5\xe5\x6b\xf1\x8a\xcd\x0b\x71\x66\x42\x82\xf4\x83\xc0\xc3\x18\x7e\xa0\x96\x65\x68\xf2\xc1\x43\xf4\x7d\xb1\x64\x7f\x9f\xc0\x5f\x42\xf5\xa3\x37\xc0\x34\xf7\x47\xf8\x92\x80\x54\xfd\x19\x62\x2c\x4e\x36\x1e\xb7\xba\xc5\xe7\xd9\x37\xbb\x3a\x3e\x6c\xdc\x52\xd2\x54\x4c\xba\x72\x16\x94\xce\xb2\xfb\x7d\x85\x3c\x6e\x51\xc7\x48\xfc\x3d\xa4\xbb\xe4\x30\xbd\x7c\x92\x8b\x01\x84\x47\x29\xbe\x33\xd1\xc3\x3f\x30\xdb\x4e\xd2\x6c\xd5\xf6\x23\x93\x70\x97\x48\x90\xf8\x28\x70\x04\x8b\xdf\xc0\xa3\x32\x4b\x69\x99\x74\x91\x71\x01\xc7\x73\x4e\x29\xdf\x9e\xd3\x1c\x06\xfc\xa0\xef\xc4\x9c\x51\xe2\xa3\x67\x1a\xbc\x58\xdb\x65\x92\x99\x15\xa7\x40\xe5\x80\x2a\xda\x06\xbc\x09\xb9\xd5\xb5\xc3\x52\xd2\x13\xd1\x0b\xd0\xe2\x01\x4d\xee\xb9\x5d\x93\x55\x05\x92\x9e\xf4\xb3\xac\x18\x5f\xec\xdc\x51\x5d\xa4\x72\xb3\x3c\x1f\xff\x38\x50\xc3\xf2\x8f\x95\xc3\xd5\xc8\xac\xed\x6f\x39\xdb\xa8\x69\x74\xf3\xb1\x75\x58\xdf\x95\x79\x76\x44\x3e\x14\xce\x5d\xf5\xc4\x59\x12\x98\x9e\x38\x4e\xfe\x4b\xb4\xa7\xd0\xe1\xba\x30\xae\x0d\x7a\x1b\xfa\x39\x71\xda\x27\x9b\x71\x5e\x08\xa2\x4c\xd8\xf2\xba\x99\xae\xc1\x6f\xe2\xd8\x26\x45\xba\x2a\x37\x00\x3b\x95\xdd\x4c\xf8\xa2\xd1\xb1\x61\x54\x1d\x33\x65\x3e\x55\x2d\x5d\xed\x51\x0d\xa0\x36\x77\xb2\x30\x97\x3b\xa3\xaa\xf8\x6e\x04\xac\xa5\x73\x6e\x85\x13\x08\xfb\x1b\xe1\xcf\x3a\x70\xf9\xe1\x19\x77\xf8\x48\x0b\xae\x9f\x76\xf3\x29\x95\x3b\x9f\xac\xb1\xe3\x6a\xb6\x01\x0d\x9f\x7a\xa9\x8c\x63\x5b\x44\x3c\xcf\xc7\x56\x7e\x6d\xec\xd9\xbc\xaf\xb9\xa9\xdd\x92\x4d\xc8\x0d\xb8\xab\x35\xf5\x61\x4a\xcd\xaf\x3b\x6a\x94\x1a\x86\x59\xc9\xd6\xbd\x4c\x3d\xa7\x6f\x25\x34\xf4\x06\x78\x43\x8f\x85\x27\xb7\x29\x7f\xd8\xbe\x3a\xfe\x2c\x1f\xd1\x7e\x95\x9d\x92\xed\xdc\x34\x1a\xdc\x8a\xb2\x73\x51\x81\xa0\x6a\x28\xcc\x6b\x13\x8f\xec\xe9\x76\x66\x42\x3b\x48\xb3\x5c\x2b\x44\x9d\x52\x18\xdf\x53\x5a\x5a\x37\x1d\x9a\x64\x8f\x07\x24\xfe\x58\xcb\xc4\x61\xe6\xe3\xb4\xae\x17\x17\xbc\x9c\xd2\x2f\x7f\x85\x0f\x8a\xef\x36\xf9\x19\xac\x46\x90\x19\x52\x26\x11\x0a\xe3\xc6\x98\x39\xf1\xa1\x97\x6c\xda\x86\x83\x54\x80\xc9\xc8\x75\xde\x57\xb6\xa3\xef\xab\x78\x9d\xd9\xbc\xd8\xa3\x74\xb8\x91\xc8\x21\x4a\xb6\x70\x77\x90\x99\x61\xd6\x88\xe5\xd7\x82\xcf\x20\x1b\x48\x28\x2d\x95\x28\x4b\x93\xbd\xaa\x27\x71\x42\x5b\x37\x9c\xe7\x9e\x9a\x90\x17\x3d\x54\x15\xd6\xdb\xfc\x3a\x50\x2a\x2b\x27\x5c\x9c\xce\x47\x91\x8d\x57\xd2\x3e\x34\x0f\x1d\x8c\x4c\x91\x75\x27\xb5\xfb\xbe\x3a\xdb\x8e\x09\x15\x56\xed\x09\x44\xc0\xd3\x88\x3b\x7c\xe1\xf0\x36\x99\x25\xd4\x9e\x59\x8a\xd9\x33\x0f\x2d\xf6\x8f\xe9\x73\x21\x11\x84\x53\x15\x52\x80\x2b\x2a\x4c\x9b\xa5\x74\xc5\x32\xe4\x09\xff\xda\xea\x78\xcc\xcc\x47\x4a\xdf\xec\x7d\xe2\x61\xa0\x28\xdf\x54\x70\x65\x86\x7c\x88\xce\xb8\x12\xa3\xbf\x39\xf6\x52\x8c\xd7\x71\xc6\x49\xef\x7e\x67\xe6\x35\x7b\xa8\x3d\x48\xb3\x22\x0a\xcb\xb8\x28\x33\xa6\xa8\x20\xdb\x7a\x2d\xf0\x59\xd8\x6b\xaa\x7f\xf4\xdc\x81\xaf\xb4\x94\xdf\xf0\x8e\x69\x85\x32\x54\x1b\xa4\x79\xa1\x9a\xdc\x37\x55\x93\xfb\xa6\x12\xa1\x1b\x44\x5d\x6b\x56\xcd\x1a\x0b\x95\x3b\xce\xe3\x82\xb3\x4f\x3a\xd7\x3c\x41\xaa\x92\x45\x93\x75\x99\xc1\xe4\xa6\x13\xee\x04\x06\x12\x52\x9a\x9b\xd5\x07\x61\x05\x03\x4d\xa8\xfa\xc1\xd8\xbb\xb4\x17\x36\xa3\x11\x3e\x7e\x6c\x5f\xc7\x5b\xf7\x01\xc3\x84\x7b\x71\x16\xed\x7e\xe9\x84\xaa\x3c\xe3\x5a\xa0\xa9\xd8\xba\x7d\x4d\x92\xea\x39\x6e\x1b\x4e\xe2\xf7\x29\xd3\xe3\xd7\x81\xaf\x91\x07\xd6\x74\x89\x00\xca\x3f\x2d\x50\x30\x2f\xb7\xbd\xd5\x3c\xa5\xcd\x8a\x01\x84\x95\x59\xe4\x51\x8b\x55\x9c\xd6\x4a\xb6\xc3\x51\x9a\x15\xdc\x58\x78\x56\x8c\xb7\xe8\xd9\x88\x09\x97\x22\x9c\x57\x4b\x23\xb6\x60\x92\x88\xc4\x89\x5f\xdc\xe7\x34\x31\x30\x50\x88\xb3\x5d\xeb\x4a\x13\x65\xac\x54\xaa\x14\xee\x7d\x97\x32\xb8\xef\x8a\xc1\xbd\xa8\xc3\x56\xbf\x22\xb2\xb1\x4d\x03\xb0\x9e\x89\xe3\xda\xa8\x99\xe5\x83\xf8\x42\xcd\xa5\x66\x9e\xfb\xb2\x9a\xdd\xdd\xd6\xb3\xbb\xdb\x0d\x70\x89\xf6\xd0\xe6\x79\x96\x3f\xc3\x47\x34\xbe\xdb\x75\x6d\xf5\x70\xbd\x89\x5d\x19\x9b\x25\x53\xa0\xaf\x28\xb2\xaa\xf4\x2b\xa2\xab\xaa\x19\x10\x94\xd6\xec\x51\x72\xce\xc2\x13\x00\x5d\x82\x65\x83\x70\x30\xa3\xd7\x27\x0e\x7f\x7e\x11\x6c\x34\x11\xcd\xf2\x32\x2f\x4c\x94\x70\x22\xc7\x28\x17\x9c\x61\x02\x79\x69\xc0\x58\x7c\xb1\x6d\xba\x2f\x9b\x50\xa0\x38\x4d\xa6\x40\xbe\xc6\xeb\x19\x30\x87\x67\x5d\x37\xde\xfb\x68\xee\x82\xea\x12\x32\xb9\x4b\x48\x20\xf9\xa7\xe8\x79\xa2\x31\xb0\x35\xf1\x19\x88\x06\x10\xf5\x4d\x66\x0b\x9e\xb3\x22\xa1\x3f\x8a\xbc\x86\x2f\x74\xe3\xf8\x85\x69\xaf\x54\x00\x08\xa2\x68\x5b\xfa\x8e\x06\x3f\x69\xe4\x60\xfb\x3a\x1a\x7b\x00\x3c\x84\xab\xc6\xee\x28\xb0\x22\x73\x39\xc4\x5e\x67\x67\xb8\xfc\x52\x3b\x0f\x23\x9b\x14\x51\x4f\xd1\x00\x99\x79\x47\x77\x4c\x58\x78\x7e\x9c\xbe\x46\x8a\xc3\x7b\xa8\x36\x61\x24\x01\x62\x86\xb4\x6d\xe8\x64\x11\x8c\x81\x57\xd8\x47\xa1\x82\x5e\xfe\x71\x15\x56\x63\x6b\xb2\x64\x5a\xdb\x6c\xff\x08\x0b\x46\xea\x23\x8f\xa9\x6f\x75\x3c\xb3\xb5\xb5\x2e\xd9\x56\x62\xc2\xaf\xdb\x38\x89\x96\xa7\x7c\xe7\x7b\x37\x15\x39\x58\x7f\xdb\xa4\x4f\x40\x79\xc2\x97\x1e\xed\xf8\x61\x0c\x53\x62\xf6\xfa\xf1\xf1\x1d\x25\xdd\x76\x07\xdf\x43\x78\x10\x9a\x14\x31\xf6\xb0\x95\x13\x14\x30\x64\x48\xed\xb5\x76\x4c\x31\xb0\x43\x43\xd9\x4a\x6d\xb0\xe3\x68\xe3\x73\x73\x82\xb6\xd5\xd6\x48\xa9\x34\x52\xf1\xdd\xa1\xfb\xc8\xaf\x27\x70\x30\xb3\x87\xda\x45\x3a\x52\x1d\xc5\x6d\x05\x33\xd9\x6e\xca\x1b\xf3\xe5\x2a\x7b\xad\xde\x5f\x04\xa8\x5b\xf3\x5e\x98\xda\x1b\xe4\xd0\xa8\xd1\xf0\xfe\x91\xc6\x9e\xcf\x4f\xb7\x94\xbc\xad\xc9\x73\x93\xe7\xec\xca\x4a\x6b\xdd\x95\x4e\xd5\x5a\x97\xd2\xc9\x6f\xb8\x32\x37\x08\xeb\x78\x38\x70\x2f\xe5\xd7\x4d\x79\x5f\x41\xb5\x1c\xdd\x49\x00\x64\xb6\x15\xbd\x99\x83\x24\x2a\xe1\x6b\xe3\x27\x7d\x50\xb2\x19\xd6\x74\xc1\xdc\x6d\x31\x5b\xf0\x93\xbc\xab\x5a\x9f\xed\x62\xf0\x80\xc7\xf1\x99\xbd\x7e\x56\x7c\x63\xac\x2a\x2f\x3e\x83\x84\x4a\xa4\xd5\xe2\x4f\xd0\x3b\xa3\xb3\xbe\xbf\x43\x67\xbd\x4c\xaa\x1a\xca\xc6\x30\x1d\x45\xd2\xfa\x67\x0f\x46\x7a\x14\xe2\xc7\x38\x09\x79\x2a\xd2\xb8\x8b\x38\x85\xc6\xc4\xc3\xa4\x6d\x82\x6f\xa5\x55\x66\x3f\x1d\x2b\xc0\xf6\x6b\xb4\xce\x84\xd0\xf2\x50\xe4\x5b\x13\x28\x4d\x84\x8b\xc3\x04\x44\xf1\xc3\xf6\xa3\x11\xd8\x8b\x14\xb6\x4b\xf7\x90\x69\x17\xb4\xa7\x11\xcd\x2f\xd3\xf2\x07\x2d\xe4\xc3\x40\xa0\xb5\x3d\x50\x2f\x6a\xb6\x95\xd2\xa2\x80\x58\x32\x6a\x81\xeb\xf8\xb3\x92\xe8\x3c\xae\x1c\xab\xc3\xb4\x9f\x44\x5f\x67\xdd\x29\xe5\xc1\x3b\xeb\xea\xbb\x9d\xfd\xd1\xb9\x39\x78\xee\x99\xd8\xfd\x9e\x70\x1a\x14\xbf\x41\x13\xcc\xe2\xd8\xf6\x53\xf6\x58\x46\xff\x12\x8b\x91\x5f\xab\x62\xdc\xc4\xf1\x63\xf4\xe4\xb1\x55\x76\xad\x57\x35\x37\x92\xdc\x8d\xb1\xc2\xa9\xee\x57\x9c\x96\x87\xd7\x15\x71\xf9\x2c\x60\xe2\x28\xf3\xef\xd1\x4d\x43\x9c\x7a\x88\x54\xb7\xf0\x9d\xee\x29\xa3\x58\x90\x36\x9c\xf9\xbc\xb7\x53\x18\x69\x04\x1a\x43\x75\x59\x9d\x4f\x55\x53\x9f\x12\x46\x16\x2d\xd6\xef\x52\xb8\xc2\xff\xff\x1d\xcd\x0d\xbb\xa2\xe4\xd2\xca\x24\x2a\x06\x69\x4c\x86\xbc\x10\x07\xe1\x36\xf9\x63\x9e\x2f\xd2\xb3\x19\x6c\xe4\x35\xfa\xbd\xba\x2b\x02\x9d\xf7\x67\x44\x1a\x47\x2b\xd2\xbf\xc5\xbf\xfe\xae\xea\xb1\xfe\xee\x44\x6c\x7a\xea\xa9\x76\xaf\x4c\x88\xd8\xb9\x4d\xdd\x8a\xed\x4b\x3a\xc3\x18\x98\x24\xb1\xd0\x56\x74\x2e\x3d\x9e\x76\xf4\x0d\x84\x56\x66\xfc\x06\x0a\x4b\xf7\x8d\xb1\x5f\xb6\x47\x15\x79\x9b\x7c\xad\xe3\xb5\x07\xe8\xee\xb9\x11\x8f\x9b\x55\xa0\x37\xc9\x2e\x64\x8a\x24\x7d\x07\x0f\x02\xc3\x86\x93\x63\xc5\xbf\x3b\x49\xb8\x6c\x46\x46\xd2\x3c\x1e\xb3\xf9\x5d\x00\x2d\xb8\x6d\xfa\x9c\x34\x30\xff\x25\x96\x8d\x68\xe9\x35\xd0\x7e\x7a\x65\xe6\x28\xbf\x22\x4b\xed\x1b\x42\xf7\x53\x1a\x25\xad\x13\xfa\x23\x68\x42\x5c\x77\xe9\x7f\x1e\xc5\x31\xe6\xbd\x54\x38\xfd\xb3\xff\xac\xa3\x98\x68\x5b\x2a\xff\xdf\x1e\xbb\x6e\xfe\xd1\xc7\xd7\x1b\x06\x95\x26\x4b\xcb\xa4\x4b\x38\x76\xd4\xc0\x30\xe4\x12\xd0\xac\x6f\x34\xa1\xdb\x2b\xc5\xbd\xb7\x4d\x34\x61\x11\xad\x10\xde\xf6\x3e\x5a\x7f\xe2\x67\x51\xdd\x66\x80\x49\xde\x47\x3d\xca\x64\x3d\x2c\x6b\xfe\x97\xb1\x4a\x49\xe8\xfd\x5d\x7a\xe2\x7c\x79\xe0\xa7\x03\xa0\xf2\x29\xcc\xac\xc4\x25\xc3\xeb\xa1\xc7\xb6\x1f\xe5\xb1\x29\x52\xee\xdf\xa2\xa6\xba\xad\x5c\xf6\x6e\x4f\xa4\x47\x2f\xbd\xd4\xee\x46\xb9\x19\x8d\xac\xc9\x8c\xac\x7d\xd4\x46\x1b\x4a\x8b\x60\x43\xd5\xc1\xa4\x45\xa3\x8d\x56\xef\x69\xb2\x22\x94\xa2\x01\x4f\xfa\x89\x9a\x2a\x5e\x1a\xeb\x7c\xae\x6b\xed\x50\xb3\xf6\xb1\xd4\xf0\xe4\xef\x2a\x26\xc8\xb9\x09\x28\x01\xa5\xbf\x61\x5a\x26\x45\xb6\x36\xb4\x7c\xd8\x37\x29\x34\x3c\xa2\x70\x37\x36\x0b\xed\x0e\x64\x9a\x47\x98\xd5\x8c\x35\x92\x22\xfd\x9c\x12\x2e\xb8\xc5\x9d\x0c\x08\xfb\xb3\x5b\x95\xd3\x7a\x74\x23\xa2\x0f\xb1\x40\x11\x82\x4f\x23\x04\x21\x7a\x6e\x51\x57\x1c\x0f\x6e\x2f\x74\x7a\xb0\x5b\x7f\x1d\xbd\x6f\x61\xf1\x57\x09\x1c\xce\xd6\xf3\x90\xbd\x72\x5c\x55\xdf\x59\x3a\xaa\x10\x5e\x48\xe4\xa4\x47\x48\xab\x09\xdb\xe3\x2e\xad\x20\x61\x63\x7a\xb1\x60\xf6\x31\x42\x20\xfe\x41\xe3\xa8\xcf\x44\x49\xbc\x86\xdb\x24\xe9\x8a\xa7\x84\x9f\x56\xb1\x74\x94\x59\x37\x15\xaf\x56\x38\xf2\xbc\x6b\x2a\xe7\xbb\xa6\xe4\x56\xec\x91\x11\x4d\x2d\xf6\x51\x6c\x41\x37\xeb\x16\xee\xa4\xb8\x8b\x56\x7f\x06\x89\xe3\x35\xfa\xf8\xfc\x1a\x0d\x22\x1c\x30\xdf\xd5\x68\x93\x3b\x64\x1b\x8b\xed\x79\xc2\x4d\x96\xbb\xbe\x81\x86\x73\xf9\x1e\x1d\x18\x48\xce\x2f\xe0\x7e\x8b\x1f\xe6\x64\x41\x38\xdb\x36\x71\x9a\xa0\xa6\xe5\xb0\x43\x3d\x27\x09\x41\x35\xa0\x46\xcf\x60\x8b\x35\x11\xe2\x7d\x21\x3b\x48\x47\x7b\x3d\xb2\xe8\x98\x52\x48\x85\x46\x37\xea\xae\xfd\x14\xe9\xa4\x3f\xa6\x66\x13\x9c\xbf\xe1\x2c\xfb\x61\xe0\x0b\x8a\x97\xd3\x28\x29\xf6\xd3\x92\x43\xda\x36\x85\xa3\x98\xbb\x4c\xf4\x77\x9c\x9f\x4c\xf5\x16\x98\x9a\xfd\x33\x0a\x47\x48\xb6\x4f\xaa\x11\xd0\x29\x44\x7d\x7c\x02\x76\xda\xc6\x5a\xbc\x59\x73\x00\xb4\x06\x98\x31\xd1\x3a\x6f\x39\x15\x92\x26\x37\xde\x83\x6d\xd3\xcf\xac\x30\x18\x45\x89\x52\xd9\x64\x71\xf1\x29\xe6\x61\xf2\x14\x47\x69\x1c\xe5\x83\x29\x85\x8d\xfd\x74\xec\x8b\x63\x0a\x2f\xa4\xec\xe5\x86\x56\x26\x5c\x26\x6c\x4b\xf5\xac\x19\x56\x46\x5b\x53\x20\x66\xbe\x6f\x6b\x8b\x01\xab\x53\x36\xfa\xa3\x34\x18\xc9\xa0\x16\xb4\x3c\xc6\x51\x70\x05\x87\x5d\x68\x20\x02\xb5\xf3\x32\x5c\xe6\x56\x87\x08\x40\xd6\x48\xea\x8f\xab\x3e\xd3\x90\x95\x50\x1f\xa4\xf5\x24\xc5\x63\x15\x0e\x64\xc8\xac\xe0\x90\x40\xfb\x20\x80\x80\x52\xc5\x16\x19\x3a\xe4\xc0\xba\x1c\x81\xe5\xe8\x58\x15\x29\x53\x1d\x35\x61\xde\x82\xc6\xb2\xb2\xd8\x10\xdd\xe3\x3b\xba\x0c\xff\x9b\x89\x5e\xeb\xfc\x7c\xdb\x66\x69\x97\xdb\xa7\xb8\x0b\xf7\x14\x2e\xe1\xa6\x5e\x4d\x6f\xb8\xf9\xef\x28\x2d\x33\x81\x87\x30\x64\x6f\xac\x30\x93\x37\x54\x6f\x79\x68\x4d\x41\x83\x13\x24\x12\xc0\x48\xe2\xbb\x5d\x53\x48\xc8\xd3\x13\x67\xc3\xe1\x99\x17\xab\xd3\x2c\x4a\xc2\x98\x7a\x2a\x74\xe7\xd0\x31\xf8\x50\xcd\x72\x3f\x04\x6c\xa1\x3e\xe7\x5b\x7d\xa6\xa5\x14\x9d\x41\xe2\xe0\xd7\xda\x62\x27\xca\xc2\x18\x30\x2f\x04\x3a\xbe\x59\x6c\xa2\x86\x80\x85\x18\x05\x93\x00\x91\x62\xd9\xb9\x3f\x66\x0f\xb5\x97\x4c\xb2\xec\xd0\x80\x08\x11\x97\xb5\x48\x27\x7d\x62\xb1\xb1\x99\x00\xdc\x1c\x68\x87\xd9\x5a\x5e\x98\x98\xd6\x33\x72\x2e\xdc\x1d\x7e\xad\x40\xc9\xd4\xd7\x9d\x9a\x74\x22\xc1\xc2\xff\xfe\xd8\x37\xdb\xce\xaa\xb5\x39\xca\xd2\x51\x55\x64\xc2\xa7\xcd\x9f\x88\xbe\x9b\xcf\x64\x75\xfe\x07\xe4\x34\xc2\x2c\xfd\x2c\x3a\x54\x92\x66\xc5\x80\x8e\x7e\x67\x86\xe9\xd4\x25\x8f\xd5\xc4\x44\x54\x95\x96\x59\x13\x53\x76\x85\x0e\xab\x43\xf4\x39\x20\xc4\xf1\x09\x0c\xf3\xec\xa1\x76\x37\xca\xec\x54\xb5\x93\x44\xc0\xb6\xe5\xfc\xfa\x1e\xe8\xf8\x81\xe1\xf4\x7a\x83\xc5\x9a\x1d\x2e\x65\x26\x94\x35\xe4\x1a\x84\xd5\xd7\x95\x06\xe1\xce\xfa\xec\x1f\xb6\x5f\x36\xe1\x72\x9e\x82\x7b\xca\x5c\x22\x37\x9d\x76\xc5\xce\x85\x9a\x73\x58\x13\x4a\x27\x1f\xb8\x2e\x09\x32\xc4\x1b\x4a\x91\xe7\x86\xdb\x51\x43\x63\xf3\x22\x4b\x5b\x0a\xb6\x19\xd4\x74\xd7\x1b\x00\xcb\x51\x52\x98\xa4\x1f\x89\xf5\x14\x8b\xc5\x29\xcb\x9c\x49\x3b\x2d\x6e\xdc\x53\xf7\x43\x2b\x8f\x6d\x8d\x6b\x58\x63\xdf\x99\xa0\x1d\xd8\xb7\x49\x49\x88\x79\x07\xba\xdc\xc0\xfa\xe0\x0b\xc5\xb3\xcd\x57\x6d\xd7\x26\x14\xbe\x91\x1d\xa3\x52\xe1\xd7\xde\x28\x48\xfa\x8d\x7c\x6b\xb0\xea\xb6\xa8\x9b\xc9\xaf\xd5\xd1\x3b\x8c\x70\x92\xa3\x5d\xcb\x03\x5b\xbe\xd0\x6a\xbc\xb1\xc9\xf3\x28\x04\x20\x9c\xad\xb7\x71\x13\xb5\x0f\xb7\xa3\xc3\x3b\x04\x45\x53\x02\xf1\x2c\x94\xad\xf1\xe9\x78\xdf\x6b\x01\xc2\x0b\x93\x56\x7e\xb3\xed\xae\x2d\x8b\x3c\x1c\xc0\xc1\x08\x0d\x84\x7b\xc8\xf9\xf8\x62\xac\x50\x5e\x4b\x36\x63\x71\x23\x69\xcc\xd2\x4f\xf2\xc5\xc4\x82\x64\xad\x76\xf2\x7d\x04\x17\x7d\xde\x63\xa3\x16\x1d\x4e\x4a\x75\xde\x13\x47\x51\xc1\xdd\x67\xa3\x1e\xbe\x98\xa8\x9c\xe6\xe7\x09\x9c\x24\xbb\x04\x9f\xf8\x5d\x05\x10\x7b\x57\x61\x8e\xd9\xad\xc9\xc4\xfb\xf0\x17\x70\x53\xa6\x80\x9a\x43\xd4\xb8\xa9\x32\xa4\xff\x9d\xee\x3c\x56\xd7\x35\xfa\xb8\xd2\xda\x56\xe0\x9b\x9b\xb8\x01\x98\xb4\x35\x0e\x55\x7b\xd5\x52\xcc\xa6\x3c\x6a\x95\xc9\xfb\x0e\x3d\xeb\xd8\x25\x53\x9d\x27\xd5\xac\xd4\x57\x44\x4a\xa8\xe3\x24\x84\x81\x71\xce\xb1\x3a\x24\x36\xf8\x8d\x26\x65\xd0\x30\x8b\x46\xa3\xd8\xe1\x88\xa5\xaa\xae\xde\x4f\x8a\x6a\xbf\x12\x47\xb1\x01\x7a\x5b\xd1\x39\xf5\x20\x60\x72\x60\x5f\x45\xb8\x34\xee\x66\xe5\x90\xa1\xa3\x68\xc7\x7d\xaa\x24\x48\xf6\x75\xf4\xce\xde\x81\xa5\x9c\x9b\x6b\x1f\x98\x7d\xdc\x4b\x0e\xb7\x3a\xaa\xb1\xf6\x07\x63\x65\x60\x7f\x0e\xb9\x82\xd8\xc3\x28\xb6\xff\x4d\x4a\x91\x65\xc0\xad\x38\x3c\xf7\x77\x5c\x5d\xbe\xff\xd2\xd8\x4b\xf7\xdf\xa3\x92\x44\x12\x21\xfa\xd8\x02\x0d\xa1\x47\x89\xaa\xf6\xaf\x28\x01\x72\xd2\xcc\x55\xd6\x82\xb2\xee\x44\xa0\xb4\x9d\x45\x68\x56\x1c\xff\x7d\x07\xb5\xb5\xae\x65\x94\x28\x44\xc8\x58\x43\x8d\xb0\xbb\xd6\xdc\x47\x1f\xd9\xad\xac\xea\xbd\x45\x7c\x95\xfe\xaa\x48\x5b\xe8\x7d\x46\x59\x34\xee\x12\xd0\x19\x28\xfb\x30\x36\xc7\x37\xdb\x85\x7c\x5c\xe2\x8d\x07\xae\xbd\xa3\xd4\x2a\x47\x51\x7f\x5a\x29\x04\x5d\xc0\x7a\x42\x8b\xf2\xe4\x58\x23\x2e\x55\xef\xf2\xa4\x9a\x0b\x66\x36\x4c\xb3\x6e\x94\xf4\xf7\x68\xf6\x01\xde\x46\x6c\x6c\xaa\xcf\xe7\x44\xbc\xdd\x86\xfa\x7d\x9a\x54\x08\x2f\xe0\x91\x5a\x1b\x23\x4d\x1e\xa8\x42\x31\x3b\x25\xe0\xc8\xc3\x6a\xba\x43\xcf\x11\xb5\xe8\x1b\xf4\xa5\x50\xd7\xfe\x04\x37\x0e\xdf\x76\x5b\x51\x20\x8f\x06\x1e\x3b\x72\x52\xeb\x6c\x1c\xc5\x33\x95\x07\x47\x0b\x0a\x07\x33\x6b\x3a\x60\xb4\xf3\xfd\x06\xbb\xeb\xd9\xb6\x4d\x56\x6c\x9c\x8e\x6c\x8d\x13\x01\x44\x89\x78\xfb\x4b\x9f\x36\xcc\xd0\x89\x47\x46\xf5\x91\x16\x04\xfd\xa8\x51\xf8\x29\x4e\x73\x5b\x20\x9a\xa1\xe7\x78\x5d\x59\x50\x5c\xaf\x32\x12\x39\xb4\x6c\x52\x44\x80\x9d\x1c\x9e\x11\x1b\xd9\x40\x01\x5f\x2f\x2a\x67\xed\x77\x70\x17\xe5\xb4\x75\xfe\x1f\x66\x38\xb2\xa6\xdc\x53\xbd\x03\xa3\x83\x79\x45\xab\xc9\xd6\x41\xf7\x4f\xd5\x07\xc1\x28\xf1\x2f\x03\x95\x27\xb5\x3a\x0d\x92\xae\x79\x62\xfa\x1c\x15\x44\x84\xbd\xd6\x64\x9a\x77\x52\xdc\x0d\x64\xc5\x83\xed\x7e\x2c\x6d\x63\xee\x01\x07\x8a\xa7\xb3\x51\x6b\x98\xa4\x4b\x39\x50\x25\xe8\xf4\x01\x13\x8b\x0d\x05\x4c\xac\x90\xcc\x6a\xaa\x8f\x5a\xb0\x57\xa1\x78\xf3\x38\x1a\x0e\x2d\x44\x17\xb4\xde\x95\xb8\x45\x49\xe7\x6f\x60\x57\xa5\xb0\x14\xad\x4c\xff\x98\xce\xeb\x9a\x67\x53\x9d\x6e\x26\x1f\x4e\xf9\x19\xc6\xf5\x1a\xf3\xc6\x1f\x30\xef\xd7\xbe\x5e\x96\xdb\xfb\xb4\xc9\x0f\x3e\xb9\xb3\xbd\x98\x3d\xc4\x41\x06\x3e\xb1\x4e\x97\xa4\x5a\xd0\xd8\x34\x1b\x9a\x70\xbc\x10\x78\x64\xe2\x75\x84\x32\x9c\x76\x6f\x8d\x7d\xe6\xfe\x27\x2a\x8d\xf9\xa5\xf2\x08\x65\x06\x68\x5b\x70\x37\x88\x2f\x1a\x80\x81\xb3\xa4\xf1\x5d\x2d\x4c\xd5\xc7\x83\x25\x00\xbf\x6e\x48\xef\x0e\x52\xfb\x93\x89\x77\xb3\x9c\xa0\x5d\xc3\x5a\xe6\x0b\x45\xf0\xca\x6d\x58\x66\xb6\x3b\xe5\xb1\x10\x67\xe8\xfd\x1d\xd0\xd5\x11\x8a\x2e\xba\x92\xbe\x6b\xb2\xe5\x78\xad\x6e\xa0\xe6\x85\x67\xd4\xa4\xf9\x56\xb0\xb3\x32\x7b\x6e\xbe\xbd\xb4\xdc\xf2\x43\x87\xdf\xd0\x72\x88\xbf\xa1\x3b\xb0\x50\xd3\x8b\x92\xfe\xb4\x47\x85\xfe\x31\x8e\x24\x2c\x85\x9b\x4a\x11\xf1\x7d\xa5\x2a\xb1\xd5\xc4\xe6\xb1\x6b\x12\x5f\xdc\x21\xa2\x1c\xe4\x9b\xbc\x92\x7b\x51\x66\x35\xb2\xf4\xac\xd6\xbf\x0c\x1a\x0c\x71\x16\x17\x5a\xb5\xf3\xdd\x37\x39\xb6\x6a\x46\x8a\xd1\xf2\xf2\xde\xd6\x57\x05\x4f\xf9\xb6\x22\xb7\xdd\x51\xb2\xaa\x1f\xd3\x37\x12\xdb\xd2\xea\xe9\x48\x57\x8e\x6e\x98\xb4\xe5\x7c\x57\x14\x6c\xcb\xbd\xb4\xb1\x9d\xbe\x9a\xdb\x11\xe7\x91\x05\x3b\xda\x81\xa3\x0a\xdd\x4f\xc7\x1c\x4e\xfc\x3d\x38\x66\x27\x65\x93\xfb\x69\x94\xf4\x1f\xf6\xca\xfa\x77\xd4\x79\xc3\x09\x1c\x0e\xa5\x6f\x04\x94\x51\x21\x4f\xf8\x11\xce\x5c\x27\xf3\xe8\x18\x4f\xb7\x68\xd8\x83\xf0\x79\x3d\x50\x89\x09\xbc\xdc\x70\xe6\xde\x52\xa3\xad\x87\x61\x7f\xc0\x96\x67\xeb\xb4\x1d\xc5\xff\xac\xfa\x2a\xce\xe4\x6d\x71\xe6\x20\xa7\x35\x1f\xa8\x35\x4e\x82\x64\x79\xa1\x2c\x61\xde\x51\xce\xd7\xef\x34\xcf\x3b\x93\x24\xb2\x7f\x9b\xe4\x96\x40\x34\xab\x32\x16\xde\x78\x48\xab\xaf\x06\xca\xd7\xe9\x13\x95\xbc\xb1\x33\x20\x76\xc6\x9d\xc0\xc3\x3d\xb7\x26\x34\xdc\x1c\x1a\x32\x33\x4a\x08\x14\x08\x8b\x6f\x69\x9c\xd9\xb7\x7c\x9b\xad\x8c\x63\xd6\xa1\x17\x17\x36\xe5\x06\x3b\xdd\x51\xba\x63\xb7\x54\xf3\xff\xe5\x74\x90\x80\xd4\x2b\xc1\x4a\x09\x17\xfd\x89\x22\xb1\xe7\x65\xdf\x64\xd3\x5e\x93\xf0\xaa\x82\xbf\xbe\x11\x28\x03\x6f\x24\xfd\x82\xdb\x6f\x16\x9c\x4c\x73\x09\xf7\x2c\x7b\x41\xbf\x53\x53\xcc\xc3\x8e\xf8\xad\x06\x24\xf6\x62\xbb\x1c\x8d\xd8\x78\x1a\x9f\x05\x0e\x82\xfc\x7a\x62\xce\xba\xf0\xfc\xc1\x76\xba\xf4\xb2\xa5\x5c\x48\xea\xa1\xda\xda\x15\xea\x98\x47\x5d\xad\x0e\x6c\x31\xb0\xd9\x43\x9e\xcd\xcb\x2a\x50\x8e\xd1\x3e\x37\xc7\x5f\xfe\xa6\x1a\x21\xdd\xd2\x16\x04\xef\xe8\x62\x06\xd2\x68\x38\xaf\x3f\x45\xeb\x9e\xb3\x25\x85\x98\x38\x8a\xc4\x8b\x45\x49\x69\x2f\x88\x89\x16\xcd\xe7\x91\x73\xbe\x86\x75\x84\xe6\xf0\xff\x5c\x55\x01\x58\xe4\x2b\x36\x5b\x1d\xd8\x78\x48\x09\x64\xf5\xe3\x4e\x86\xdb\x81\xcf\xff\xae\x36\xb8\x7b\x64\xbd\xf5\xcb\x5f\xe1\x64\xf7\x3d\x65\xa6\x7d\xcf\xad\xa9\xb8\x1c\x8e\xea\x7c\xbc\x8b\x81\xe2\xe3\x4d\x0a\x9d\xcc\xcf\xb7\x97\x22\x3e\x77\x90\xbb\xa1\xf1\xc6\xaf\x9b\x7a\xab\x6b\x69\xc9\x6c\x13\xc4\xa3\x37\xb5\x68\xf9\x9b\xaa\x0d\xb1\x54\x66\xd6\x94\x61\x66\x8a\x28\x24\x91\x5f\xcc\x31\x5e\x55\x32\xb7\xaf\xaa\x6a\x60\x98\xae\xd8\x07\x69\x59\xa2\x17\xf5\x60\xc7\xaf\x97\xb7\x28\x7c\x21\xb4\x30\xc3\x0e\xc7\xf6\xfd\x64\x44\x26\xa9\xbd\xdf\x73\x7b\xa1\xc8\x8a\x8d\xb5\x1b\x23\x52\xe4\x06\x37\xb5\x9e\xd3\xd5\xb1\xe2\x42\x7f\xea\xbb\xf3\xbf\xf4\x28\x8d\x07\xd0\xda\xda\x3d\xa1\xb2\x43\xb6\xfe\x44\xb6\xb3\x99\xac\x4f\x3c\xaf\xcb\x81\x62\x11\x5c\x56\x79\xc4\xa8\x84\x6c\x07\x36\x34\x92\x34\x2c\xc7\x4d\xac\x21\x19\x5e\xa8\xb6\x4c\x91\xc6\x36\x51\xd2\x89\x2c\x26\x85\x6a\x19\x84\x54\xfe\x07\x2c\x75\xfe\x87\x9a\x74\x62\x94\x66\x0f\x2a\x39\xd8\x16\xea\x22\x64\xb1\x37\xe8\x53\xe0\x4e\xfc\x73\x2d\xe5\x76\x5b\x3b\x2e\xfe\x3b\xc5\xe5\xff\x21\x91\xe7\xf0\xec\x78\xf0\x2c\xc9\x36\x2d\x71\x9c\x4a\x57\x68\x83\xa1\xc0\xff\x09\xdd\x54\x81\x0d\x2b\xb9\xfe\xb7\x5c\x16\x1e\x9b\x51\x91\x8e\x72\xed\x2f\xc6\x2a\x00\x1e\x36\xe4\x39\x2f\x5e\x30\x44\xcd\x01\xfd\xc1\xad\x86\x0d\x26\x36\xd9\x90\xba\x5a\xe2\x69\xe0\xc5\x99\xb7\x94\x4a\xe5\xb0\x97\x66\x5e\xc0\x40\x74\xd8\x5b\x4e\x80\xeb\x62\xd3\x08\xb4\x6d\x12\xb1\x68\x03\x9c\x81\xc0\x7b\x2f\x6e\x5f\x52\x7d\xb5\xd8\x94\x99\x45\x7b\x18\x07\xca\xc7\xf4\x09\xf8\xb5\xaa\xfa\x72\x9b\x98\x02\x1a\x81\xc2\x3e\xa3\x9b\x81\x0e\x0d\x37\x15\xdd\x4c\xd8\x11\xc3\x37\xd4\x93\xe1\xe6\x1e\xff\xc6\x44\x92\xf9\xd2\x4b\xed\x32\x19\x54\x0b\x96\xc3\x38\x3e\xc4\x3d\x45\x6e\x80\x8f\xa3\x24\x58\x4f\x28\x46\x44\x8f\x61\x19\xf9\x1e\x25\xcf\xfd\x1a\xfd\xaa\x68\xf2\xa8\x39\xd9\x19\xc2\x5e\x3b\xa5\x70\xa7\x72\x7c\x5a\x15\x02\x8b\xbf\x90\x03\xbb\x8e\x3f\xcd\xfe\x87\x04\xf2\x59\x7c\x74\x5d\xbb\xd7\xec\xa5\x65\x8e\xf4\xe4\xac\x6e\x60\x62\x28\x21\x31\xf5\x31\x35\x1a\x4d\xbb\x65\x58\xe4\x0f\xe1\x5d\x9c\x20\x81\x03\x09\x5e\x56\xe7\xe0\x63\x08\x13\x48\x85\x36\xc7\xf5\x3b\x73\x60\xd6\xf9\x1f\x54\xeb\xd9\x91\x5e\x0e\x7b\x2c\x02\xdd\x0f\x6d\x0d\x22\xfd\x53\xac\x85\xb1\x1a\x37\xff\x53\xdc\x23\x01\x01\x37\x74\xf2\x8a\xa8\x88\x25\x78\x8b\xb4\x3b\x7d\x3c\xbe\x70\x07\x47\x66\xfb\x51\x5e\x64\x1e\x0f\x27\x92\x0d\x7e\xd8\x7f\xf4\x33\xb5\x79\x7a\x11\xe8\x82\xca\x6a\x99\xa9\x19\x7c\xd1\x69\x30\x7f\xce\xec\xa8\x5c\x8a\xa3\xd0\xb8\xe3\x58\xe4\x19\xe8\x1b\x4a\x4d\x21\x19\x56\xd4\x8d\xed\x5e\xfc\x1c\xc6\x66\xe7\x94\x19\xfe\xe3\x1d\x0f\xfa\xbc\x81\x5b\x2e\x33\x61\xbf\x3b\xce\xe0\xd6\x49\x84\xdc\x19\x80\x17\x67\xda\xc3\x34\x89\x8a\x34\x93\xaf\xb2\x7d\x97\x30\x3d\x77\xd5\xa8\x28\x49\xb3\xa1\x89\xa7\xb4\x7a\x9d\x5a\xb2\x63\x6f\x23\x7c\xcd\xb1\x6a\x4c\x92\x94\x10\x6d\x53\xe0\xb2\x1b\x0a\xd4\xcf\xfa\x65\x48\x65\x8f\x2b\x4a\x77\xd7\x0e\x4d\xd2\xcd\x5b\xd5\xbb\xd6\x00\x59\x7c\xa1\xe0\x89\x89\x19\x12\x3a\xfc\x45\x37\x15\xa6\x3f\xc6\x17\xf4\xc7\x30\xac\xbd\x88\x74\x5c\xfc\xb0\xe9\xed\xd8\xac\x24\xf0\x2a\x10\x48\xed\xc5\xc4\xa4\x01\xe6\x13\xda\xa4\x10\x9a\x02\x7e\x8c\xb9\x22\x7c\xa1\x6d\x7f\x22\xc8\x63\xf8\x66\x26\x06\x27\x88\xeb\xaf\xd0\xfd\x43\xd2\x78\xb2\x09\x50\xe4\xe4\x09\xbd\x24\xa1\xd2\x2f\x7e\xbd\x21\xb7\x6c\x77\xa3\xb0\x30\x85\xa5\xd2\x54\x4d\x77\x17\x6a\x28\x0b\x91\x27\x79\x5c\x6b\xe2\x47\x49\x31\x88\x78\x9a\x8c\xaa\xeb\xb6\xea\x7c\xdd\x6e\xf4\x30\x1f\x9a\x3e\xe1\x48\x99\x8c\x29\xa3\x13\xdf\x97\xd3\x9e\xa1\xfd\x2c\x5d\x55\x86\x8e\x80\xac\x20\x22\xa0\x87\x2c\x2e\xd2\x93\x93\x88\x17\xab\x62\x34\x2f\x68\xed\x39\x37\x6c\x57\xda\x01\x56\xb0\xbd\x39\x81\xc1\x5c\x9c\x69\xe7\x16\x88\x78\xbc\xf7\xfb\x38\xf1\xf9\x62\xa2\xdf\xf0\xd4\x53\x54\x29\x45\x5e\x05\x8d\xa9\x4a\xf4\x8d\x84\xb6\xd4\x00\xd8\x97\x7e\x43\xcb\x09\xd0\x70\x33\x9d\x2f\x1a\xe5\x89\x63\x6b\x33\x85\xf6\xda\xdf\xea\xa8\x9e\x14\x06\x1a\x32\xc3\xf4\x8d\xe0\xa3\x4d\xe3\xeb\xbe\x29\xfb\x5c\xaa\xbb\xf4\xdc\x3f\x82\x26\x0e\xed\x52\x5a\x16\xd1\xd7\x4a\x74\x55\x70\x47\x5f\x57\x1e\x74\xaf\x2b\x38\xc2\x92\xc9\x6d\x6c\xf3\x5c\x89\x64\xbe\xa7\x44\x32\xdf\x73\x6a\x11\x61\x6a\xb3\x90\x42\xe8\xe1\x19\x77\xc2\xa8\xd3\x66\xe2\x26\x1c\x38\xd0\x8e\x6d\x31\x80\xa9\xf6\x8b\xae\xa7\xe9\xc7\x13\x50\x70\x41\x9a\x7a\x51\xd1\x7a\x6d\x5e\x44\x43\x53\xd8\xee\x83\x4a\x8b\xe2\xb8\xea\x8a\x5f\x0f\xb4\x70\x35\x13\xa6\xc5\x9e\xbe\xba\xb1\x18\x3d\x9e\x08\x5a\xbf\x24\xbf\x7e\x33\x50\x4d\x5b\x8e\xe0\x4e\x48\xce\xf5\xb8\x58\x8e\x0f\xe5\xf6\x5f\x8c\xc9\x14\x12\x67\xee\x35\xaa\x56\xe4\x96\x3b\x44\x9f\x71\x02\xb4\x28\x6a\xde\xc0\x1b\xf0\x85\xca\xc4\xba\xe9\x6a\x52\x94\x59\x32\xad\xa8\x8a\x6c\xf3\xce\x17\x58\xbb\xca\x98\x64\xd6\x49\x61\xf8\x19\xf7\xd0\x0e\xd3\xcc\x24\xdd\x92\x1d\xf4\x1d\x64\xdb\xc3\xb7\x1b\xa1\x2d\x79\x61\xfa\xd2\x30\x63\x59\x17\xba\x9f\x22\xf1\xd2\x30\xab\x89\x92\xc2\xf6\x25\x10\x8a\x66\x71\x4b\x89\x19\xfb\xe6\xf2\xc0\x0c\x97\x32\x1b\x0e\x10\xca\xc4\xc5\x4b\x95\xf1\x1f\x29\x78\x55\x98\x0e\x47\x44\x20\x6e\x39\x45\xc9\xd3\x4a\xf4\xf4\xf4\xce\xb1\xcf\xe1\x99\xf6\xe2\xcc\x17\x28\x9a\xa3\xb5\xf0\xe7\x0c\xf3\x66\x39\xfe\xb1\xe2\x8a\xa0\x2d\x89\x45\x7e\x77\xac\x5c\xcd\x6e\xeb\x56\x0d\xbb\x87\xe3\x7b\x3c\xb0\xee\xf5\xa5\x2f\x51\xdf\xc6\x75\x43\x16\x66\x0f\x39\xe8\x71\xeb\xcb\xbf\xc2\xcb\xe2\xff\x21\x83\x4d\xe4\xf1\xdf\x47\xdd\xca\x98\x47\x05\x0b\xdb\xd5\x69\xbd\xb0\xe0\xdc\xfc\xfd\x32\xdf\x46\x06\x80\x7f\xf8\x06\x25\x4d\x00\x87\xbc\x87\xe4\x08\x25\xed\x9d\xa0\x75\xe8\x79\x39\xe6\x71\xf8\x30\xf5\x16\x3d\x58\xd4\x20\x2d\x6d\xda\x0f\x18\x9d\x70\xec\xb1\x3d\xf0\x79\xff\x4f\xea\x5d\xe2\x18\x9a\xee\x78\xf3\x9b\x63\x0d\xa1\xe6\x60\xbb\x5b\xc6\x78\xe2\x8e\xf4\x57\xdd\xdd\xcf\x12\x5d\x3d\x3c\x03\x03\xfc\x5e\x14\xee\xf1\xec\xb7\x87\x08\x20\x86\x9b\xc2\x48\x49\xa8\xa3\xbe\x43\x77\x02\x5f\xfe\xe6\x58\xb5\x93\xbd\x75\x60\x55\x27\x7c\xad\xc4\x10\x93\x69\x3e\x0a\x25\xf9\x83\xc0\x77\xc3\xae\x38\xd2\xf3\x6a\x94\x74\x99\xad\xe5\xc9\xc3\x5b\x4a\x62\x6f\x92\xcf\x76\xe0\x00\x33\x71\xa7\x3d\x41\x9b\x3b\x75\x48\xa4\x31\x29\x03\x29\x19\xd4\x15\xb1\x4d\xf3\x69\xb9\x7d\xd9\x4c\x51\x47\xce\x75\x44\x1d\x06\x07\x62\x14\x82\x6a\x6c\x82\x28\xc4\xd1\x92\xcd\x0c\x68\x14\xc8\x65\xd0\x58\xaa\xf1\x1a\xc4\x1e\x63\x27\x0a\xf6\xd0\xf3\xb4\x3d\x49\xb2\xae\x34\x31\x60\x0b\xf8\x80\xb7\xb5\xc2\xff\x6d\x17\xa9\xc2\x81\xc9\x71\x8a\xa3\x57\x81\x42\x81\x5f\xaf\xfb\x2e\xeb\x4a\x64\x04\x6c\x21\x28\x00\x05\x0b\x9a\x58\x32\x2f\xbd\xd4\x26\x10\x23\x94\xcb\x45\x2d\xd3\x6f\x42\xa0\x6b\xd1\x6d\x03\x5a\x66\xfb\x52\xd3\xc3\x58\x25\x0a\x93\xf6\x11\x3f\x86\x9d\x22\x38\x32\x25\xbf\x3c\x8c\xf2\xbc\x3a\x54\x7c\xbf\x17\x3b\x0c\x1b\x09\x02\x2e\x28\x85\x9b\x96\xf8\xc2\xc1\xb6\x19\xc1\xcd\x42\x0e\x2e\xba\xd5\xd8\x20\x47\x79\xeb\x20\xb6\xbc\x3a\xd1\x00\xfa\x52\x7b\x95\x3c\xc6\xaa\xdf\x00\x94\xf0\x56\xe0\xed\xd4\x4e\x8f\xc9\x13\x18\xf9\xc7\x46\x83\x60\xcc\xb3\xd0\x19\xec\x47\x24\xf7\xe9\x9a\x92\x48\x40\xf8\xb5\xab\x5b\x08\x05\xb5\x54\xe6\x85\xcd\xf2\x69\xed\xfa\xff\x6f\xf0\x88\x71\x64\xbd\xa3\xa0\x6c\x17\x35\x00\xf3\x44\x83\x03\xd9\xb3\xed\x51\x16\x85\x22\x7f\x22\x62\xbb\x3e\xad\xf9\x9f\xb4\x7b\xdf\x30\x15\x19\x46\x19\xe1\xdc\xa1\x6a\x8e\x5f\x37\xc0\x37\x5e\xa4\xa9\x06\x79\x58\xd4\xf0\x40\x68\x25\xc8\xea\xf0\x10\x0b\x13\x87\xe9\x20\x8d\xa3\x90\x7e\x78\x9b\x76\xfa\xf6\x25\x5d\x26\x64\x26\x2c\x63\x83\x75\x81\x8f\x78\x13\xfa\x94\x7c\x81\x07\x84\x2a\x0a\x2e\x0f\x51\xd2\x8f\xd7\xf6\xf9\x99\x03\x64\xc3\x04\x6f\xe4\x47\xde\xec\xd6\xe6\x6c\xc4\x3d\x17\xec\xcf\xc9\x06\xcf\xf9\x98\x79\xb3\x8b\xbb\x4a\x5e\xb8\xba\x8f\xac\x01\xae\xe4\x40\x5e\xac\x3b\x52\x6a\xf7\x7c\x61\x35\x39\x78\x4c\x5c\x8a\xfa\x9d\x1c\xf4\xc7\x74\x0a\x70\xac\x51\xfb\x2f\x7f\x66\xd4\xaa\x29\x79\x8c\xb5\xc8\x47\xe0\x87\xf5\xc5\x4a\x8e\x54\x43\x1c\x62\x14\xe2\xe5\x02\x3d\x0e\xfe\x07\xdc\x06\x19\xe9\x3f\xa4\xe0\xb3\x4f\x3d\xf5\x05\xcf\x62\xba\x1f\x56\xb8\xe8\x52\x9d\xc3\x31\x24\x0a\xad\x4a\xb3\x7d\x2b\xa8\xee\x1d\x9b\xdf\x2a\x2f\xf5\x93\xd4\xd9\x40\x40\x87\xcc\x2f\x7a\x5c\x1f\xd3\x8a\x72\x56\xdb\x07\x9c\x23\x04\x9f\xf1\xca\xeb\xe4\x45\x6e\x8c\xec\xa6\x1e\xa6\x43\x3c\xff\xe2\x0b\x1e\xf4\x50\x9d\xa0\xb8\xe7\xec\x24\x85\xc6\xa2\x80\xe2\xf1\xe1\xef\x61\x01\xe1\x1b\xef\x5a\x57\xbe\x2c\xbb\x3a\xad\xaf\xca\x74\xe8\x6f\xe8\x94\x67\xba\xa2\x12\x74\xe1\xfb\x85\x43\xe2\x2a\x56\x07\xda\xa6\xac\x49\x80\x13\xfc\x32\xf2\x0d\xfc\xce\x65\xca\x1e\xd8\x92\xb0\xa9\x95\xb1\x12\xd9\x55\xe1\x7f\x09\x43\x5a\xa5\x6a\xe7\x1a\xfa\xca\x07\xe9\xd4\xc3\xe6\xe4\x65\x8b\xa3\x5a\xd6\xb0\xab\xd1\x87\x4b\x65\xec\x98\x12\x38\x9d\x00\x2e\xe5\xd7\x13\x1f\xe8\xe9\xba\x26\x2f\x32\x38\x10\xb1\xf8\xb5\x2a\x81\x97\x4c\xb7\x6f\x39\x48\x38\xec\x9a\xd7\x58\x7e\xaf\xf1\xa3\x87\x86\x1d\x65\x30\xc1\xde\xd0\x0a\x28\x1b\x13\x95\xf2\xdc\x5c\x7b\x64\x93\x5c\xba\x37\x68\x48\x70\xa8\xe3\x0b\xc5\x6e\x27\xbe\x99\x49\xa8\x48\x76\xba\x12\x37\x14\x36\x95\xf7\xba\xd4\x0e\x6e\x3f\xda\x38\xb2\x2b\x76\x7f\xcb\xb1\xc7\xef\x5f\x57\xee\xd1\xc7\x75\x33\xed\x67\x40\x27\x94\xa0\xeb\x01\x52\x6f\x28\xb1\x53\x1e\xe3\x89\x60\xa1\x97\x07\xdb\xd3\x69\xc2\xe2\xe5\xa3\xcc\xe2\x19\x39\x7a\xb4\xa7\x4a\xbb\x22\x2c\xcd\xba\xc6\x43\x85\x45\x11\xb6\xe5\x94\xaa\x37\x34\x7a\xdc\x64\xf1\xda\xc3\xb4\x29\xd8\x7c\x10\x27\x1d\x32\x8c\x4f\x70\x1b\xd8\xec\x9c\x88\x07\xdc\xda\x0e\x3c\xcf\xe5\x3b\x2a\x75\x3d\x1e\x28\xf1\x31\x54\x0f\x28\x99\x2f\x23\x6f\xc2\x71\xf4\x1a\x20\x67\xf2\x60\xab\x1d\xcd\xfe\xae\xf4\x29\x31\x75\x07\x47\x17\xd9\xfc\x19\x2c\x17\xf4\x8e\x36\x9a\xe4\x8c\x33\x9b\x97\x59\x5f\xc8\xe3\x0c\x56\x56\xe2\x9f\xa7\x6a\x00\x88\xb0\x04\x7a\x4e\xdc\xd6\x5a\x4a\x0b\xad\xfa\xab\x72\xcf\xe4\x8e\x92\xa7\x64\x52\x93\xa5\xe0\x9d\xcc\x17\x9d\x07\xfd\xcc\xc5\xf0\x8e\x13\xe6\x9f\x07\x22\x8f\xd4\x24\xa7\x18\xa4\x59\x5a\xf6\x07\x4b\x19\xf7\x0c\x9a\xda\x0c\x3e\x54\x3f\x95\xf1\x20\x07\x11\xe2\x13\xdc\x4e\xe7\xb3\x52\x3d\x25\x49\x50\xbd\x10\xef\xef\x8f\xd5\x48\xf6\x83\xb1\xcf\x41\xb0\x1c\xf1\x0b\x57\x95\x82\xf1\x77\xe9\xdb\x8b\x2e\x0e\xad\x0a\x21\x49\x53\x30\x47\x77\xec\x6d\x8a\xcd\xc0\xd5\x4f\xad\x2b\x30\x64\x16\x15\x05\xc9\x2a\x56\x1f\x01\x69\x31\x60\xaf\xfc\xba\xc9\xa0\xba\x5b\x0e\x87\x6b\xea\xbe\x9e\x54\x9d\xc1\x93\x6e\x08\xb7\x3a\xb0\x56\x52\x77\x59\x05\xf4\x89\xf8\x62\xa2\x8d\xb3\xf0\xfc\xc1\xf6\xd0\x66\xe1\xc0\xd4\xdc\x2a\x2f\x2a\xb7\xca\x8b\x6e\x5b\x47\xc3\xaa\x60\x8e\x15\x22\xe3\x96\x12\x53\xbd\xa5\xb2\xf9\x7f\xf4\xb3\xff\xa8\xe5\x87\x47\xdc\x22\xe0\x8b\x8e\xff\xb1\xd0\x40\xea\x1c\x77\xfb\x2e\x1d\x13\x22\x22\xe6\xcf\xbb\x4d\xd5\xce\x48\xb3\xbe\x21\xea\xec\x94\x47\x8e\xc3\xfb\x09\x07\xd2\x1f\xd2\x3d\x47\x2a\xbe\xa1\x3a\x33\x51\x92\x17\x51\x12\xe2\x3b\x72\x77\x83\xbe\xa3\x74\x3a\x04\x69\xbc\x6a\x0a\x9b\x85\x69\x9c\x66\x3a\x40\xe2\x38\x90\x68\xe9\xbf\x40\x99\xa7\x8a\x15\xf3\xca\x58\xe5\xb2\xaf\x28\x7c\x67\x9e\x66\x85\x24\x8a\x35\x01\x18\xa9\x05\x1b\x1a\x86\x3d\x93\x87\xd4\x30\x14\x96\x80\x00\xb0\xfc\xf8\x4e\x0b\xc3\x5e\xa9\x6d\x5c\xf3\x0c\x0b\x9d\x22\x4a\xfe\x47\x3e\xb4\xf9\xaa\x46\x67\x4a\xc2\xc1\x1e\x3f\xed\x7c\x95\x56\x3f\xfa\x67\x1f\xd0\xbd\x44\x19\x7a\x5a\xb9\xc2\x9c\xd6\x5a\x19\xbb\x3a\xb2\x3a\x7a\x99\x25\xeb\x5f\x5f\x84\x3d\xd0\xf1\x61\x6a\x1f\x0e\x00\x9c\x93\xc7\x94\xa1\x58\x38\xb0\xc3\x28\x34\x71\xbe\xaf\xca\x6a\x90\x20\x7d\x5b\xff\x85\xbf\xa2\x8f\x24\x24\x3c\xcf\x57\x3d\x83\x87\xa2\x60\x57\x82\x66\x40\x8b\x14\x63\xf2\x5d\x1d\x65\xbe\x37\xb2\x36\x1c\x90\xa9\x93\x83\x7e\x39\xd1\x86\x8b\x0d\x8d\xc7\x36\x05\x4b\x36\x76\x44\x49\xc1\xce\x23\x42\x58\x53\xf3\xcd\xc9\x06\x38\xe8\x8a\x83\x28\xee\xee\x64\x15\x1f\x74\xac\x62\x6f\xb1\x9b\xd8\xb2\xc8\x88\xdf\xcd\x5a\x2f\xa0\xeb\xde\x55\xce\xd8\x77\x1b\x31\x91\xdd\x74\x35\x21\xd7\xe5\x96\x8f\x37\xb7\x94\x43\xd4\x2d\x2d\x47\x61\x92\x65\xd3\xf2\xde\x4c\x67\xb4\xec\xf4\x19\x85\x71\x8c\x92\x2e\xe9\x0b\x00\x25\x22\x1f\xbd\xe5\x14\x19\x8f\x8e\x95\x96\xdf\x5f\x4d\xe4\x3d\xe4\xd9\x65\x4d\x5d\xf4\xe5\x7c\xa0\x2c\x8e\xbd\xf5\x54\x66\xf3\xa8\x9f\x28\xb6\xc0\x09\x15\x55\x4e\x34\x89\xb8\xf9\x0f\x47\x1f\x02\x69\x22\xe4\x33\x90\xa3\xd4\xec\xa3\x4f\x39\x48\x68\xd7\x2e\x71\xc6\xef\x38\x2c\xd5\xb7\x17\xda\x8a\xc2\x22\x0e\x4d\x1c\xdb\x6c\xaf\x27\x1f\xed\x55\xc2\x58\x0f\xaf\x2b\xca\xfa\x3b\x5a\x38\xf6\x9d\xb1\x6a\x7b\x60\x26\x20\xde\x24\x3b\x9f\xdc\xdc\xdc\x22\x7d\xf3\x38\x92\xd3\x18\x7f\xe8\xa7\x6a\xec\xf0\xd3\xa6\x9a\xbb\x9d\xdb\x68\xa9\x55\x03\x98\xd4\xc8\x18\x8f\xbb\xc3\x38\x4c\x93\x3c\xca\x69\x2c\x42\x9f\xb1\x21\xb4\x4e\xa4\x94\x55\xe1\x19\x5b\x90\xd5\xfd\x90\xc2\x0f\x2c\x3e\x13\x7e\x44\x79\xae\xcb\x8d\x91\xf2\xdc\x0d\x94\xb9\xc6\xdd\x89\xd6\x4d\x75\xf8\x14\x65\x36\x4c\x23\x4c\xaa\x45\x41\x48\xf1\xe5\xb6\x1c\xec\x73\xc9\x24\xcb\xf9\xb4\xcf\x94\x8e\x8d\x35\xde\x6a\x3f\xb6\x25\x40\x5a\xd7\x75\x9b\xef\x91\x75\xbf\xfa\xf3\x55\x3b\xc2\x11\x80\x93\xf6\x2c\x42\x08\x5f\x34\x62\x2a\x47\x6e\x40\xef\x1a\xdb\x67\x95\x78\xda\x59\xd7\x61\xe8\x46\x2b\x51\x1e\xad\xd8\xc4\xe6\xbc\xe8\x75\x27\x4b\xe0\x02\xbe\x1c\x37\xab\x26\xeb\xb2\x94\x03\x1e\x46\x0b\xa3\x68\xbe\x58\x7f\x5c\x1d\x5e\x52\x8d\x13\x5c\x18\x77\xe6\x0c\x96\x1a\x5f\x04\xbe\xab\xf6\x16\x00\x56\x4e\x78\xc3\xcd\x7e\x3e\x52\xa4\xaa\xd0\x66\x05\x51\x7e\xf7\x55\x4b\x1c\xeb\x95\x38\x99\x2f\xca\xb4\x91\x38\xff\xd2\xf0\xf5\xca\xba\x77\xd0\x5b\x15\x1c\x75\xf5\xee\x80\x35\x70\xe1\x21\x6e\xd7\xde\xda\xbd\x6b\xd6\xf2\x47\xb4\xf7\x09\xee\x08\xce\x1b\xb6\xc8\x13\xcd\x6e\x6f\x21\xfd\x76\xa0\x58\xd1\x14\xa6\x6b\x70\x7c\x20\xd5\x30\xf9\x01\xcc\xf2\x12\x7d\x60\x1c\xd1\x57\x91\xd0\xe9\xe6\xbc\xd8\xb2\x2a\x69\xe6\xf3\x48\xaf\xc5\x34\x92\x3e\xbe\x40\x47\x7d\xf7\xf0\xfa\x44\x6f\xe6\xb9\xf9\x76\x62\xfb\x69\x11\xd1\xe1\x8c\x58\xad\x59\xfb\x02\xb4\xae\x61\x61\xb2\xee\x3e\x5f\x8f\xb0\x66\x88\xae\x79\x10\x55\x2f\x61\xb2\x82\x4c\xe9\xb8\x16\xc3\x60\x59\x4c\xfe\x97\x40\x65\x04\xef\x3b\x3c\x49\x75\x10\xf4\x33\xe3\x67\xec\xb8\x33\xbf\xad\xc0\xa8\xbf\xad\xda\x2e\x3d\x1a\x52\xef\xa3\x8f\xe2\x3a\xea\x55\xb2\xa8\x9d\x58\x98\xb2\x4d\x55\xbb\x32\x9f\x3b\x58\xe7\x08\xf0\xaf\xe3\x86\x4a\xd4\xd0\x59\x46\xd7\xe6\x9f\xf3\x92\xb8\x5b\x84\xd3\xc0\xbd\x66\xba\x04\xd2\xb7\x3b\x63\xd5\x21\xe3\xf6\x00\xba\x96\x6f\x62\x80\x84\x74\xed\x56\xe0\x9b\xe2\xaf\xd2\xa2\x61\xc1\x96\x40\x09\x67\xb4\x00\x12\xc2\xf7\xbe\x1e\x78\xd9\xa9\xab\x98\x8e\xe3\xa3\x3c\xd4\xc1\xd2\x74\xb7\xbc\xba\x6f\xa8\x33\xc1\xd9\x06\x50\xf9\xaa\x5a\xb3\xff\x2f\xdd\x0c\xfc\xf5\x87\xd6\x69\xb3\xe1\xac\xd2\xb8\x9a\x5e\x6c\x56\xd2\x6c\x5a\xa1\xbf\xe0\x76\x00\xe5\x8c\x4d\xb4\x34\x44\x1e\xbd\xe5\xcc\x75\x26\x03\xf2\xdc\x5c\x7b\x68\x5e\x4e\x01\x61\xc4\xc2\xfd\xb5\xb1\xc2\x48\xfd\x9a\x8a\x29\x45\x5a\x18\x12\x86\x75\x92\x28\xaf\x28\xd9\x80\x57\x94\x52\x68\xdc\xbd\xcf\x73\xe7\xee\x61\x39\xe2\x16\x3c\xb8\xee\x33\x87\x6f\x6b\xf9\x35\xc8\x35\xd1\x1f\x7d\xb6\x4d\x5e\xd2\xa2\x21\xa2\xd0\xfd\xdb\x7a\x82\xfe\x2e\x56\x8a\x28\x41\x3d\xae\x92\x8b\x82\xa0\x32\xb6\x0b\x5d\x35\xa4\x6a\x57\xc7\x5a\x26\xeb\x2a\xd6\xb8\x06\x48\x63\x95\x7d\xa2\x24\xb3\xbe\xa3\x94\x1e\x42\x93\x24\x29\x6b\x42\xc8\x49\xa2\x4e\x15\x95\x04\x99\x30\xea\x42\x37\x09\xb1\x16\xe0\x70\x00\xc5\x79\x6a\x89\x83\x64\xb3\x69\x80\xdd\xb5\xb1\x59\x93\xae\x01\x63\xae\x03\x8d\xbf\xde\x79\xcc\x2d\xce\xb4\xf3\xd5\xa8\x08\x07\x75\x9f\x1f\xa6\x67\xf3\x45\xe0\x6b\x9c\xc2\x66\x59\x9a\x45\xf9\x70\x5a\x5b\x9c\x8e\x5b\x5a\x55\xca\x41\xe1\x58\x70\x42\x66\x8a\xbe\x34\x89\x92\xe2\x61\x0f\xba\xdf\xd3\xf1\x10\xa1\x9b\x38\xf5\x10\xdb\x59\x78\xba\x66\x38\x89\x48\xbb\x1d\xa8\x77\x9e\x5a\xaf\x76\x99\xc4\x4d\x3f\x9b\x63\x50\x2c\x9d\xa0\x7f\xf6\xd8\x7a\x6b\x7e\x7e\xfb\xef\x75\x54\xef\xee\x6d\xae\x3c\x5c\x07\xb8\x5a\xf6\xee\x18\x78\x6e\xde\x89\xd8\xfa\xe7\x38\x34\xbd\xc8\x70\x17\x0c\xbd\xd8\x13\x4a\xb8\xec\x84\x32\xfd\xc8\xd3\x28\xae\x72\x40\xef\xfb\x79\x46\x29\xca\x7d\x32\xf6\x7e\x75\xdb\x9a\x6c\x97\xa5\x61\xc1\x90\x60\xf6\x11\xd5\x96\x64\x67\x1c\x22\xc7\xae\xd8\x6c\x6d\x29\xed\xae\x61\x91\x0a\xb2\x9f\x3e\x18\x6a\xbc\x63\x5a\xb1\x61\x73\xec\xf9\x25\xf7\x75\x3c\xb8\x6d\x52\x41\xaf\xca\x2b\xca\x24\x4e\x55\xa4\x16\xfb\xc3\xea\xd7\xc4\xf0\xd0\xe3\xa9\x57\xd3\x2c\x43\x1f\x1e\x47\xda\x29\xd5\xfd\xb8\x07\xd5\x72\x76\x5f\xa1\x85\x88\xd7\x47\xe9\xfe\xa2\x36\xb9\xa7\xad\x21\xc6\xdc\x0f\x16\xc3\x96\x9d\xb9\xfb\x17\xdb\x7f\xff\x2b\xff\x64\xe1\x2b\x5f\x9e\x27\x75\x78\xec\xc6\x4d\x45\x68\x07\xe1\x1f\xcf\x77\x4b\xf5\x5e\x86\xc5\x50\x0f\x9d\xd8\x6d\x8f\x2f\x82\xfb\xa4\x4c\x1c\xc2\xb8\x1c\xc7\xee\x9b\x5a\xe3\x09\x27\xa1\xd0\x9e\xb5\xd8\xea\x0f\x27\x58\xfb\xcf\xcd\xb7\xf3\x74\xca\x7b\xe5\x02\x5a\xa7\x4d\xba\x05\xa2\xf4\x59\xea\xc1\xc3\x34\x29\xfa\xe9\xd0\x32\xd9\x09\x2b\xf4\x1c\x96\x02\x5f\xb8\xc6\x56\x61\xc2\xa2\x2a\x52\x55\x9e\x0e\x1c\x94\x67\x45\xb9\x45\x39\x8a\x23\xce\xb7\xc5\xc6\xb2\xfa\x25\x7e\xdd\xa4\x05\x30\x34\x89\xe9\x5b\xf4\x1b\x24\x6b\xa3\x4f\x21\x7a\x69\x35\xa3\x85\x28\x67\x48\x7c\xcb\x0d\xf1\xb7\x14\x0e\xe4\x6e\x6d\xfc\xb5\x33\x75\x91\xef\xbe\x54\xd5\xb5\xec\xb4\x87\x00\xb4\x1d\x78\xa1\x23\x94\xc5\xf8\xeb\x17\x15\xf2\x29\x4a\x56\x6c\x5e\x0c\x6d\x52\x3c\x42\xe7\x1a\xb0\xcb\xf7\x90\x6f\x22\xfa\xb1\xcc\x0d\x26\x0a\x7c\x33\x9d\xaf\xb7\xb7\x3d\xa7\x75\x2e\x0d\xaa\x96\x33\x61\x61\xb0\xbb\x1b\x2a\x55\x0b\x1b\xb3\x4f\x7c\x24\x24\xea\x1f\xd4\x32\xff\x73\xba\xab\xc7\xda\xda\x78\x2a\xbb\xd6\x3d\x95\xec\x4f\x79\xcd\x23\x68\xbe\xb5\xd3\x5a\xa4\x2a\xab\x9e\xd9\xdb\x52\x4e\xf2\x55\x84\x45\x1c\xf9\x23\x05\x20\xbc\x41\x47\x3f\xbb\x12\x6b\x63\x4d\x7e\x62\xa2\xf0\xe4\x26\xf0\x50\xbf\x9e\x52\x45\xf0\xd5\x40\x09\x8f\x83\x83\x2c\xe0\xd5\x9a\x0f\xcf\x70\xd4\xa2\xfb\x2a\xba\xa0\x1a\x4b\xe8\xb9\x07\xb1\xc9\x3d\x6c\x0e\x69\x0b\x14\x53\x70\x73\x30\x32\x16\x39\x10\xdf\x0e\x2b\x93\xe5\x84\x3c\x09\x15\x1f\x79\xac\x86\xc0\x27\x03\x0f\xc2\x4d\xd2\xc4\x16\x03\xe0\x9a\xe8\x89\xe0\xa4\xdf\xdd\xa9\xa2\x03\xbf\x5e\x6f\x0a\x71\xcb\x51\x37\x31\x23\x47\x0a\x40\x6f\xe6\x2c\x7d\x11\x7e\xad\xda\x40\xb9\x8d\x41\xba\xa0\x6d\xc0\x87\x0b\x2d\x19\x39\x68\x3e\xa7\x60\xc1\x32\xb7\xf6\x5c\x46\x7c\x6b\xb1\x33\xa7\x87\x21\x14\x77\xe9\x33\xf4\x33\x6b\x13\xf1\x79\x95\x61\xb7\x2a\x14\xee\x04\x8a\xce\x32\x39\x9e\x7f\x6e\x9e\x20\xe0\xa0\xb2\xa9\x1c\x65\xc1\x81\xf1\xfc\x29\x35\x09\x92\x98\x3d\xd4\x1e\x95\x5f\xff\x3a\x17\x92\xa8\x46\x2e\x2b\xa1\xb1\xcb\x4a\xb2\x23\x36\x4b\x36\x9e\x52\x6a\x6c\x47\x35\x56\xf5\x9a\xb2\x04\x3a\xaf\x96\xc2\x52\x6a\xb2\xee\x53\xb9\x52\xa9\xbc\x34\x56\x02\xff\x97\x1a\x85\x79\x47\x59\x34\x04\x40\x04\x0b\x12\x44\xe6\x9a\x46\x2f\x32\xad\xdb\x13\xe3\xfb\xc3\x33\xed\x1e\xdb\x79\x89\x18\x93\xff\x3a\x27\x26\x32\xa7\xa7\xdb\x85\x35\xe1\xc0\xb5\x33\x9d\x24\xb1\xeb\xff\x7e\xa2\x5c\x48\xdf\x56\xc6\x87\xcb\x69\x48\x7a\xf0\x7c\x64\xdc\x08\xd4\xf9\x71\x63\xa2\x68\x77\xd6\xcb\xcb\x51\xda\xf2\xbc\xbd\x0d\xad\xbc\xb1\xa1\xf2\xa4\xd8\xf6\xa7\xab\x1f\x73\x50\x6a\x77\x8c\x9c\x55\x5e\x63\x67\xeb\xb3\x61\xd9\xdf\x5f\x2b\x4d\x1c\x15\x6b\x74\x03\xd1\xa1\xbc\xa7\x74\x65\xff\xfd\x58\xf5\x21\x3c\x53\xa6\x67\x88\x2e\x46\xff\xc6\x2a\x73\x54\xc3\x88\xe2\x9c\x4f\x85\xe2\xb4\x4c\xfa\x58\x31\x38\x6e\x4f\x60\xc1\xf1\x45\xb3\xbf\x41\x9a\x5b\x0f\xca\xc4\x04\xf8\x96\x52\x42\xbd\x15\x48\xb9\x28\xac\xc9\x54\x74\x2b\x24\x15\xf5\xe5\xc8\xd1\x89\x3f\x71\xe0\x40\x3b\x2f\x4c\x56\xc4\xa2\xe7\x23\x7a\xee\x2d\xa5\xf3\xfe\x59\xfa\x2f\x3d\x1b\x47\x47\x94\x06\xd3\x79\xad\xc1\x74\x7e\xa2\xf4\x79\xba\x9d\xa7\x2b\x91\x2d\xb4\x7b\x6c\xa0\x52\xb5\xad\x89\xac\xe0\xe9\x76\xf7\x1f\x2c\xa9\x66\x2b\x2f\x61\xbe\x98\xa8\xe4\x17\x9e\x3f\xd8\x2e\x93\x5e\x16\xd9\xa4\xcb\x7e\x33\x28\x4a\xcf\x28\xbe\xc6\x99\xa6\x84\xbe\x5a\xc9\xd6\xe1\x15\xb1\x7e\x6b\xbe\x4f\xc7\x27\x10\x23\x2f\xbd\x84\x8c\xb2\x6b\xf0\x97\xd0\xaa\x80\x14\x26\xbf\x56\xf1\x70\xd5\xc4\x71\xba\xca\xbb\xe5\xc5\xba\x8c\x0a\x4e\x66\x3e\xeb\x84\x80\xf9\x98\x72\x6a\xcf\x8b\x72\x58\x7d\xb6\xea\xfc\x70\x32\x99\xf3\xf3\xf2\x5a\x41\x29\x8b\x41\x3a\x1c\xe5\x69\x82\xd5\x82\x42\xef\xa8\x1a\xc5\x1d\x6d\xe8\x38\xb7\xbb\xe5\x28\x46\xff\x15\x5f\x1f\xcd\x20\x1e\x92\xf0\xc5\xd8\x37\x80\x56\xed\x52\x4e\x3b\x11\x85\x20\xca\x6a\x7e\xad\x8d\xf1\xa9\x1f\x05\xdf\x51\x04\x81\x13\xc1\x67\x0d\xfc\xbc\xef\xe8\x89\x26\xf3\x72\x93\x2d\x9b\x24\x37\xbc\xac\x71\xa4\x73\x77\x8d\x2f\xd6\x9b\x24\xea\xbb\x96\xb4\xa3\x6a\x26\x29\x2c\xc8\xcf\x17\x4d\xd8\x4e\x5b\x66\xe9\xc8\x9a\x04\xd9\x14\x1a\x3c\xd0\xde\x40\x16\x04\x4d\x0e\x06\x72\x37\x48\xe3\xb7\xbb\xb6\x30\x91\x97\x0a\x11\xa8\x62\xf5\x5b\xd2\x08\xf1\x21\x61\x60\x4d\x5c\x0c\xf6\x29\x95\x2e\xc9\x94\x01\x12\x78\x5d\x89\x47\xfc\x24\x50\x62\xd5\x5c\xdb\xa1\xf6\x62\x92\x0f\xca\xdf\xab\xaa\x86\xfb\xc7\xb7\x1b\xf1\xd7\x24\xde\x4f\x3e\xe7\xda\x80\x04\x59\xf2\x0d\xc4\x24\xe0\x54\xf8\xa4\x12\xc6\xa4\x4f\xed\xb6\x26\xa6\xd1\xd5\xfb\x66\x36\x2f\x63\xb7\x8e\x04\xbd\xac\x5a\x4a\x17\xb5\xf2\x60\x1a\x47\x05\x84\xbc\xa7\x69\x69\xb3\xb6\x85\x22\x24\xdc\x00\x10\xd2\x89\x5e\x1c\x38\x20\xff\xa0\x14\xf4\x42\xb3\xc4\x99\x7c\xa3\x23\xf5\xc4\x88\x74\x71\xe1\x8b\xed\x24\x1d\x46\x09\xeb\x6d\xe1\x6b\x03\x95\xc8\xaf\xd7\x77\xe4\x93\xb3\x87\xda\x07\x66\xf7\xeb\x0e\x26\xe1\x64\x50\x71\xbd\x41\xd1\xde\xc9\x56\x3a\x90\xdb\x2d\x3c\x14\xfe\xa1\xb1\xd2\x62\x44\x9f\x15\x3b\xf2\xa5\xb1\xaa\xbe\xd4\xb7\xa2\xe3\x1f\x42\x72\x8e\xf1\xe5\xea\xd1\xd6\x3a\x75\xe6\x50\x8b\x4d\x77\xe8\xc3\x20\x63\xfe\x08\xe3\x0b\xb4\x1f\xff\x15\xee\x04\xfc\xb6\xff\x6e\xc7\x4f\x64\xee\x70\xca\x8d\x4a\x17\xfc\x2b\xd4\x0a\x0f\x01\x99\xc1\xbe\x93\xca\x08\xe0\xd6\xd8\x9b\x76\x4c\xce\x9d\x0f\x1c\xa8\xfe\xbb\x3c\x8a\x4d\x08\xf0\x1e\x10\x54\xd8\xe5\xfc\x5a\x49\x08\x90\x8e\x8f\xe2\x0d\x03\xa4\x28\x84\x46\x35\x91\x6b\x92\xab\x6f\x9b\xee\xcb\x25\xea\x16\x7a\x7e\x28\xcb\x7f\xaa\xf8\x67\x93\x73\x96\xb9\xb9\x76\x46\xea\xda\xf8\xde\xf8\xab\xaf\x05\x8a\x37\x80\x96\xbb\xb4\x32\xd4\x90\xd1\x66\x2b\x96\xe2\xdd\x36\x91\xb7\xb6\xcf\xaa\xa9\x1a\x4b\x4e\x19\xf8\xfb\xa3\x7e\xfa\xde\xd8\x73\xa7\x36\xd5\xe4\xeb\x4c\x83\x4d\xf2\xc1\xf6\x28\x8d\xaa\x70\xed\x47\x5d\x5b\xca\xf2\xa5\xde\x73\xce\x23\x12\xa4\x9d\xe5\x11\xee\x27\x68\x7b\xb2\xae\x1e\x15\x32\x28\x4a\xaf\x6a\x08\xe4\x26\x81\xcb\x9c\xf8\x9e\x1b\x7a\x6c\x62\x9d\x48\xfd\x54\x3d\x67\x1c\x74\x1f\xa1\x4d\x84\xcc\xfb\x74\xc3\x98\xab\x6d\x93\xc2\x66\xa3\x2c\xca\x35\x85\xe2\xaf\x71\x90\xf3\x85\x4a\x63\x0b\x7b\xa4\x28\x33\xdb\x52\x38\x98\xa3\x6a\xe0\x72\xb4\x09\xf3\x95\x17\x69\x26\xc3\x40\xcc\xfe\xaf\x28\x81\xca\x63\x5a\x88\xfb\x54\xa3\x08\x46\x3e\x70\x67\xad\x24\xbc\xa7\xc7\x8a\x71\x78\x5d\x01\xa0\x75\xaf\xaa\x4c\x7a\x26\xca\xd8\xd2\x44\xe4\x5c\xe9\x6e\x0a\x1e\x56\x09\x19\xd3\x47\x72\xa2\xc6\xd5\x4d\x13\xf5\xa3\x86\x3c\xce\x0e\xd3\x2a\x33\x33\x70\x3e\x40\x81\xf2\x29\xe2\xb9\x33\xdd\x50\x58\xd5\xc7\xdd\x94\xac\x28\x62\xdb\xcf\xd2\x72\xc4\xa7\x1f\x10\x43\x58\x58\xfc\xba\xd9\xd2\x21\x1d\x8e\xca\xc2\x93\x8a\x91\xce\x72\x47\x9d\x2f\x9a\xd0\xc6\x43\x5b\x25\x2a\x0a\x4e\xf4\x37\x0a\x4e\xf4\x37\x4d\x7e\xd2\x79\x0a\x97\xf4\x05\xe7\xf8\xe5\xa7\x2d\x5e\x37\x24\x2f\xb2\x74\x19\x2b\x06\x2d\x4c\x10\x97\xf9\xb5\xe2\x2a\x0f\xed\x91\x28\x4c\x71\x66\x37\x69\x01\x4f\xd6\x2d\xf3\x6d\xf3\x8c\x42\x87\x9d\x09\xd4\xc9\x7d\x46\x29\xd2\x2c\x99\x32\x8e\x6c\x49\xdf\xcd\x1d\xa2\x5e\x45\xe8\xa2\x9e\xa7\x95\x79\x91\x0e\x6d\x06\x14\x03\x56\xf5\x4d\x25\x4f\xf7\x29\x92\x23\x4c\x26\xf6\x61\xe4\x81\x6e\xdc\x1d\x1c\x9f\x02\xb3\xa0\x3d\x2a\xf9\x64\xb5\x47\xa5\x25\xe3\xf5\xda\xbf\x9e\x1b\x42\x0e\x89\x59\x4c\xb5\xc4\xc4\x45\xe6\x51\x25\x08\x1d\xe5\xa5\xa8\x92\xe0\x0d\x77\x77\xd4\xdc\x80\xce\x2c\x69\x2a\xd9\x6c\x95\x40\x49\x09\x55\xd4\x32\x5c\x53\xa3\xb9\x3f\xa2\x9b\xcf\xae\x46\x8a\x67\xdc\x4b\xab\xa7\x0f\x49\x0b\x9e\xed\x40\xd5\xc3\xb5\x6d\xdc\xe8\x69\x8f\x3a\x30\x6f\xe1\x3e\x22\x68\x5c\x1a\x6b\xb1\xc7\xea\x7c\xa7\xda\xc2\xe9\x66\xed\x21\xb1\x53\x7e\x5d\x63\x98\x0f\x6c\xf7\x31\xba\x7b\xdc\xa4\x0c\x3c\x30\xf6\xad\x00\x0d\x1f\x59\x05\xb4\x73\x10\x0f\x2e\x13\x89\x03\x9f\xe3\x5b\x63\xb5\x49\xfe\xd3\x58\xf5\x69\x2e\x62\x98\x25\x58\x21\xba\x17\x58\x22\xf7\x94\x96\xe4\x75\x25\xab\xbb\xa9\xf0\x71\x57\xd1\x14\x63\x0f\x73\x00\x68\xdd\xe2\x7c\x4e\xd4\x27\x59\xed\x0f\x55\x25\xd8\x56\x00\xcb\x6f\x07\x3b\x59\x0a\x52\x42\x95\x49\x14\xc3\xf8\xd7\xdb\xf7\x40\xdf\x49\x76\x5c\xf5\xf6\x42\x65\x57\xb4\xe7\xe7\x99\x58\x8a\x85\x06\x0d\x4c\xd6\xaf\xc3\xc3\x00\xc4\xfb\x53\xf5\x3b\x69\x96\x4e\xf9\xf3\xe8\x32\x7d\x6d\x04\x39\x08\xe8\x73\x90\xbb\xeb\xda\xa4\x43\x93\x65\x91\xe9\x6b\xca\xc3\x3d\x45\x79\xf0\x25\xf0\x90\x78\x83\xd3\x14\x61\x71\x5b\x1e\x5a\xf7\x74\xa8\x27\x3b\x1e\x52\x3b\x0d\xec\x98\xb4\xdc\x9e\x94\xe8\x50\x8e\x6c\x16\xa6\x49\xb7\x0c\x8b\x34\xa3\xd3\x14\x9b\x12\x83\x3a\x44\xd9\x6b\x8a\x77\xf2\x8d\xf1\x93\x3b\xa9\x50\xb3\x55\xe8\xff\xbc\x2a\xe0\x38\x45\x96\xf6\xb5\x4f\x72\x58\x52\x43\xe4\x46\xab\x3b\x8c\x8c\x80\x75\x9c\x04\x41\x54\x2d\x3f\x14\x18\x7b\xe8\xeb\x08\x3a\x46\xf5\x44\x5b\x64\xb5\x24\x40\x3f\x62\xbc\x60\x91\xbc\x83\x15\x83\x12\xfa\x01\xcc\xa9\xb5\xe4\x3e\xba\x08\xfb\xa9\xeb\x26\xe9\x3d\x22\x35\xfe\xe5\x44\xa0\x48\x6c\x3c\x47\xc6\x26\x84\xa2\x30\x8b\xa7\xd0\x22\xc3\x67\x7c\x4b\x1f\xc1\x3c\xbb\x15\x24\xaf\x2f\xcb\xe0\x7d\x42\x48\x18\xe1\x21\xb7\x9c\xf9\xd4\xee\x75\x22\x76\x39\xd9\xa0\xea\xf6\x89\x7f\x88\x3f\xb7\x76\xd3\x06\x16\x5c\x81\x1f\x57\xb2\x09\xeb\x7d\x7e\x34\xc5\x35\x2d\x0b\xd5\x8e\xeb\x8e\x75\xce\x1d\xec\x93\xc0\x4f\x36\xce\x68\xf5\x62\x74\x93\x9c\x80\x5a\x15\x4a\x51\x31\xbe\x42\x59\x0d\x96\xfe\xed\x26\x5a\x68\x2f\x8a\xa5\xee\xc3\x0e\x3c\x1d\x28\xbf\xe2\xd3\x75\xc4\x9c\x19\x4d\x69\x66\xcb\x25\x7c\x04\x24\x53\x7f\x30\x6e\x29\xf3\x80\xcf\x6a\x84\xe4\x69\x62\x91\x8c\xe2\x33\x71\x9f\x82\x2f\xb4\x28\x67\x17\x5b\x10\x0d\x82\xe3\x9a\x5e\xf3\x4e\x50\x1b\x0f\xee\x3c\x68\x0f\xcc\x12\xfb\x7a\x4a\x0d\x7e\xb6\x94\x4d\xdd\x3d\xa5\xfb\xaa\xfb\x0e\x19\x2c\xf7\x99\x8e\x81\x04\xe5\x8c\x02\xfb\xb2\x74\xb4\xe3\xa2\xb8\x5a\xe4\x8c\x32\x1f\xc9\x6c\x5e\x18\x7a\x0f\x27\x58\xc0\x04\x3b\xbe\x58\x57\x45\xc7\x11\xa4\x67\x62\xee\xab\x8e\xdf\xcc\x52\x52\xe6\x41\x8e\xf0\x88\xc0\x7c\xec\x9b\xb8\x65\xb2\xde\xfd\x91\x94\x45\xdd\xd8\xae\xa1\x5a\x40\xc0\x87\x63\x14\x6e\x21\x80\x8c\x82\xbb\x14\x70\xd1\x28\x72\xf2\x07\x18\x5d\x33\x69\x94\x2f\xf4\xcc\xd1\xae\x3a\x33\x36\xc4\x6d\xa8\x0f\xf2\xeb\xea\x98\x76\x07\x70\xf1\x70\x4b\xd9\xb4\xd1\xf7\x77\xfe\x70\xbf\xfc\x15\xd1\xa6\xa7\xc5\x2c\x8d\xeb\x6a\x99\xba\xe6\xb7\x93\x0f\x61\x89\x6f\x6d\xfb\x81\xd0\xf0\x43\x2d\xf3\xf0\x0d\xca\x37\x9c\xb1\x9e\x73\x71\x62\xf5\x7f\x7c\x42\x4e\xe8\x64\x34\x49\x0f\x93\xb3\x4b\xb5\xe9\xbb\x65\x1c\x5b\x4e\xd2\x30\xd8\xe1\xb9\x38\x5f\x28\xf5\xa3\x61\x94\x99\x30\xe6\x7c\x1d\xe7\xd1\x4d\x4d\xdc\xbd\xd9\xe0\x46\xdb\xce\xd3\xa1\x1d\xa4\xab\x34\xbf\x43\x68\x07\x33\x11\x63\xf7\xd7\xc6\xca\x34\x78\x52\xca\x78\x71\x46\x59\xe8\x4c\x2b\xa2\xc6\x96\xba\x01\x1c\x3c\xdc\x80\x7f\x6e\x8e\xc7\x23\xb7\xb4\x8f\x52\x9a\xe4\x69\x1c\x75\x8d\xf8\x2a\x23\x8d\x62\x42\x3a\x5f\xa0\x2d\x89\x65\x62\x8b\x2c\x75\x80\xd5\x96\x6a\xfe\xff\xb9\x1a\xe4\xfc\xf9\x4e\xc1\xb7\xc5\x99\xf6\xc2\xec\xa1\x96\x47\x03\xea\x31\xed\xa6\x1b\x16\x25\x24\xe8\x89\x72\x18\x70\x98\x53\x58\xe3\x7c\xb1\xf3\x6d\x9f\x7a\xaa\xca\x65\xf7\x78\x94\x0e\x4b\x62\x70\x47\x30\xf0\xb5\xee\x95\xb1\x6f\x6d\xbe\x4f\xeb\x8d\x7f\x41\x4d\x6f\x0b\xf6\x2b\x10\xb9\xc5\xba\xbe\xc8\x0e\xe5\x44\x64\x01\x7f\xa5\x7b\x14\x7c\x9a\x20\xf3\x78\x37\xf0\xe9\x6a\x99\x43\x87\x13\x81\x8a\x5b\xbe\x7c\x11\x78\x64\x26\x7e\xc8\xf9\x03\x79\x31\xba\xa6\x51\x4a\x6c\x8a\xc2\x66\x3b\xf0\x11\xce\xcc\xfe\xd1\x8e\xff\x7b\xd3\xeb\x74\x42\x4b\x7e\xbc\xb3\xd2\x7a\x61\x71\xa6\x6d\x86\x36\x8b\x42\x83\xa2\x9a\x71\xc6\xba\xec\xb9\xa0\x04\x34\x72\x6a\x96\xfb\x82\x17\x7c\x34\x11\x33\x6c\xd0\x86\xcb\x4c\x94\x4b\x68\x41\x5b\xea\x13\xa5\xcb\xfa\x89\x17\xf4\x4e\x93\xbc\xa8\xd2\xba\xea\xd3\x4a\xc8\xf0\xb7\xfd\x6a\xa0\x12\xe6\x8f\x1a\x60\x29\x0b\xed\x51\x66\x8b\x62\x8d\xb6\x14\xf2\xb2\x37\xc6\x75\xf7\x00\x2f\xb7\xa3\xce\xe0\xfc\x6b\xa5\xc9\xaa\x48\xbd\x38\x23\x4c\x6a\x8a\xf6\xae\x15\xec\x4c\x34\x6e\xa9\x05\xa5\xd1\x34\x45\x16\x55\x5f\x50\x1b\x0a\x68\x73\x82\x06\x6d\xf6\x7e\xd4\xd3\x9d\x98\xad\x40\x83\x25\x1e\x53\xbe\x54\xbd\xcc\xe6\x61\xda\xf2\xbd\x92\x53\xca\xb2\xf3\xd4\xf8\x01\x4f\x54\xea\x3d\x4a\x6b\x01\xd9\xd3\x07\x41\xeb\xcb\xbf\xc2\x67\xf0\x0d\xad\x5e\x7a\x46\x41\x4e\xb0\xa8\xd9\xec\x1d\xa3\x66\x0c\xdb\x3e\x50\x9a\x94\x27\x02\x0d\x95\xf8\x00\x81\x94\x0e\xfa\xff\xe2\xf1\x75\x45\x00\xd2\xd9\xce\xa7\xa8\x15\xd0\xe0\x7e\x82\xf2\x35\x56\x6e\xa5\x24\x04\xc5\xd0\x14\x12\x3c\x1c\x87\xdb\xd4\xa8\xc4\x2f\xdc\xa8\x15\x43\xf9\x28\x4d\xba\x0c\xe8\x12\xd9\x4b\x9f\x91\xff\x86\x6a\xfa\x1b\x32\xe4\x47\x23\x7f\xc1\xd3\xee\x3d\xf1\xed\x82\x86\x37\x17\x99\x89\x78\xfa\x8b\xb6\x31\x40\x55\xfc\x7a\x62\x1d\x57\x9b\x24\x8e\x6d\x95\xd8\xbb\x34\xf0\x24\x55\x3e\x42\x46\x69\x62\x65\x87\x65\x94\x53\x3c\xd3\x26\x67\xf3\xca\xc4\xba\x81\xf5\x30\x4a\x0b\x9b\x14\x91\x93\x31\x64\x79\x24\xfa\x74\x22\x95\xa4\x73\x31\x93\xc5\xf7\xe9\x71\x42\xf5\x73\x4e\x1f\xbd\xfa\xf2\x58\xbb\x9f\x82\xa7\x28\x62\xe9\x4a\x5b\x71\x4b\x4f\x88\x18\x0c\xa5\x7e\x4c\x59\x10\x3f\x37\xef\xb4\xc4\x7c\x03\x68\xd5\xc4\x85\xcd\x5a\xda\x10\x74\x6a\x5d\x25\x26\x53\x9d\x9d\x11\xe7\xab\xb3\xed\x55\xd3\xef\x47\xf9\x80\x87\xa7\x1a\x6d\x29\xd0\x49\x3f\xa0\x11\x8f\x3a\x04\x1d\x04\xa4\x53\x88\xbb\x7c\xd1\xc4\x5b\x88\x92\x9e\x10\x7a\x18\xc6\x41\x1b\x47\x20\x1d\x3b\x5b\x22\x07\x66\xdb\x69\xaf\x37\xa5\xbe\x22\x25\x1f\xce\x04\xf2\x17\x5f\xe0\x72\xf9\x2d\x07\xa5\x4f\x0a\x8c\xe5\xc4\xa8\x9e\xbe\xb3\x68\xc2\x6a\xa1\x51\x93\x14\x39\x21\x2b\x94\x03\xaf\xa8\xe3\xdd\xd6\xac\x8d\xdb\x0a\x44\xf7\x40\xc7\x7f\x96\x1b\xb4\x6d\x04\x07\xa8\x04\x83\xd2\x74\xc4\xa8\x19\x31\x56\xf7\xd4\x98\xdb\x3e\xb5\x1b\xa4\x09\x06\x6e\xd8\x79\xfb\x3a\xbe\x25\xb1\x6f\x5d\x91\x90\xd3\x32\x09\x6d\x4b\xa9\x59\x1c\xd7\x04\x93\xe3\x8e\x04\x9a\xa4\x2b\x51\x01\xd2\xb9\x9b\xf7\x6f\xa8\x1c\x70\x43\x65\x8b\x69\xaf\x67\x33\xea\xc2\x4a\xdb\x05\x9a\x2d\xe2\x6e\xeb\xa9\x66\x1f\xd1\x12\x67\x4f\x24\x2a\x05\xb7\xa1\xce\xb7\xbd\x19\x28\x9d\xf2\x33\x34\x3b\x60\x0e\x1e\x02\x0d\x9e\xd2\xc7\x4d\x55\xcd\x28\x8a\x63\x06\x9f\xb8\xa6\x66\xb5\x72\x90\x41\xe3\x7e\x49\xe7\xf8\x21\xa5\xf2\x6b\x97\x69\x53\x21\xad\xdc\xd4\x85\x25\x73\x7f\xc4\x5a\xb9\x5a\x25\xca\x62\x6a\xd6\x9b\xd5\x57\xc5\xa4\x93\xde\xf3\xba\x7f\xff\x96\x52\x34\x24\x09\x7f\x46\x5f\x59\xc6\x10\x1e\x70\x12\xa6\x49\x3f\xb3\x79\x3e\x34\x6c\x46\x8f\xcd\xcd\xbe\x25\x7c\x31\xd9\x8a\x9c\x6d\x17\x99\xe9\x4a\x15\x27\xb3\x46\xf5\x3b\xc7\xc6\x9e\x1a\xd1\xb5\xbd\x28\x89\x0a\xcb\x7b\x50\xdc\x39\xaa\x15\xc8\xaf\x27\xb6\xd5\xc2\xf3\x07\x61\x60\x82\xc9\x3d\x32\x8a\xed\xb1\x4f\x1b\xb7\x15\x86\x33\xb3\x7d\x43\xf2\xec\x54\xbd\x88\x48\x9a\x3a\xa3\xc0\x51\x92\xfe\xd0\xa4\xba\xc0\x42\xbb\x67\xc8\x22\xaf\xa5\xe8\x8c\x68\x27\xf3\x6b\x07\xfb\xce\xcb\x7e\xdf\xe6\x3c\xc7\x9f\x50\x53\x17\x2d\x4e\x7f\x60\xa7\x61\x58\x66\xe8\x0b\x36\x81\x84\x55\x6e\x50\x58\x93\x25\xec\xbb\x22\x9e\x64\xd5\xc6\xe4\xd7\xaa\xdb\x58\x64\xd5\xed\x5c\x9b\xf2\xe0\x33\x16\x87\xc5\xdd\x3c\xa7\xbc\x8b\x36\x83\x87\x14\xbb\xd3\x24\xe8\xe0\x09\x6f\xa7\xe5\x44\x00\xd0\x42\xc1\x91\xb4\x17\x8c\x79\x86\xa2\xa0\x53\x82\x26\xc6\x5d\x3a\xeb\x51\x7b\x6f\x8f\x15\xf1\xf1\x1a\xad\x34\xdc\xf9\xb3\x63\xaf\x01\x7a\x91\xc2\x09\x7b\xd4\xd1\x8c\x0a\x45\x07\x0c\x26\x51\x5a\xef\x42\xd2\x88\xcf\xfb\xb9\x8e\x4a\xa3\xde\x54\xd2\xf7\x97\x71\x8e\x80\x0f\x7c\x65\xac\xc0\x74\x0f\xac\x7b\x89\xc7\x24\x2f\xb2\x32\x2c\xea\xea\x7a\xe7\x15\xbf\xf2\x7c\xd3\xcc\x64\x18\xe5\xdc\xdd\x6a\x29\x19\x8a\x2d\x55\x65\x68\x05\xda\xa1\x2d\xb2\x28\x84\x72\x09\x2a\xa8\x9b\xba\xab\x7c\xb3\x29\x36\x84\x65\xb6\xb2\xa6\xf0\x5f\x40\x70\x08\xde\xa8\x49\xe4\x3a\x8e\x96\x01\x15\xc2\x63\x78\x7d\xec\xe7\xc1\x57\xe8\x66\x0b\x3f\xd2\x01\x5d\xd2\x8c\x74\x1d\x54\xda\xa8\x9a\x2a\x57\x55\x24\xfc\x03\xc4\x08\xf4\x51\x5b\x9d\xc7\x14\xe4\xb0\x6b\x97\xa8\x3a\x3b\x3c\x53\xd3\x0c\x97\xf4\xbb\xe1\x9b\x95\x49\x54\x37\x1a\xde\xd4\x38\xc4\x4d\x75\xb8\x0e\x4d\x9e\x9b\x90\xbd\xcc\x1d\xac\xd3\x2b\xdf\x57\xa5\xe2\xcf\xed\x68\x92\xd3\x9c\xbe\xe6\x26\x38\x3f\xef\x44\xcf\x3d\xc4\x7d\xc5\x0e\xec\xd0\x26\x45\x15\x60\x9c\x07\xea\x16\x74\x90\x24\x19\xfa\x19\x47\x80\xeb\x46\x39\xb4\x3e\xa2\x34\x89\xf2\x21\x9d\x2c\x0e\xf0\x52\x2d\x32\x69\xbe\xe8\xee\x77\x51\xb2\x2c\x05\x16\x36\x73\xca\xf9\x62\xfc\xd9\x07\xd9\xce\xea\x74\xa1\xca\xd6\xa6\x3d\xf6\xea\x04\x9a\xe5\x78\x23\x58\x0f\x08\x1e\x83\x36\x1e\xff\x83\x5e\x7f\x40\xb0\x3e\x50\x7d\x53\xe1\xb7\xee\xd0\x6a\x24\x9d\x44\xd2\x24\xd9\xbb\x5e\x6d\x46\xd1\x3a\x55\xd4\x4a\xa8\xbf\x08\xab\x9d\x3e\xb2\xcb\xd1\xaa\xec\x4d\x24\x51\x5b\x5e\x51\x49\xbb\x95\xbd\xa9\xad\x7d\x4a\x1b\xc7\x98\x32\xc9\xfe\x66\x9e\x09\x5f\x74\x3c\xac\xc0\x26\x2b\x51\x96\x26\x6e\x3c\x2c\x3a\xb4\x2d\x27\xd5\x75\xbb\x61\x12\xdb\x8e\xa3\x61\xe4\x76\xb5\x8c\xcf\x3d\x93\xe7\x5f\x29\x35\xc8\x15\x9b\x25\xce\x40\xc9\x1d\x8a\xd5\x27\x97\xb3\xd3\x37\xfc\x7e\xe1\x88\x99\xf2\x62\x7f\xff\x69\xac\x8a\xea\x0b\x7f\xab\xb4\xde\x73\x55\xd6\xb7\xe4\xc4\xc0\x50\x23\xa1\x09\xc0\xaf\x1b\x37\x75\x62\xe5\x3b\x88\xe9\xa6\x47\xda\x9d\x73\x5c\x42\x7b\x24\x1c\x98\xa4\x6f\x1d\x13\x4e\x0c\x9a\x5a\x4a\x78\x74\xe7\xc8\x62\xf6\x50\xdb\x8c\x46\x59\x3a\xca\x22\xaf\x17\x2a\x82\x44\xd5\x2f\x4a\x65\xba\xf3\x17\x0f\xcf\xcc\x57\x25\x8a\x4d\xfa\xc5\xc0\x3a\x81\x06\xf4\x81\xdf\x54\x72\x1b\x6f\x2a\x81\x86\xc4\xae\xd8\x6c\x7f\x6b\x6e\x6e\x1b\x02\xf8\xdc\xfa\x46\xc1\x81\x53\xe0\x26\x05\x0e\x74\x95\xde\x55\xb0\xab\x8f\xb0\x3d\x50\x52\xdd\xd6\x7c\x88\xdb\x74\xb8\x48\xbc\x55\x69\x5d\x59\xf4\x22\xe8\x1e\xe1\x71\xbc\xab\xed\x6f\x7e\x9f\x6e\x21\xb2\xf3\x0f\x03\xdf\x3b\x88\x6d\x52\xd0\xa4\x82\x55\x51\x94\xc8\x3d\x84\xa1\x24\xbb\x7f\x4c\x29\xe3\x10\x4d\x26\xdb\xa3\x48\x77\x17\xd5\x19\x79\x53\xe1\x25\x8e\x69\x35\xf6\x73\x74\x9a\x09\x0c\xdc\x63\xb1\xfa\x99\x01\xdc\xdd\x49\xc6\xcc\xcd\xc9\x6b\x9d\xb6\x67\xb6\xc7\x14\x09\xb4\x8b\xdf\x1f\x2b\xda\xdd\xfb\xea\x04\x1f\x99\x78\xa8\x7e\x0e\xa2\x99\xfc\x5a\x31\x18\xc2\x81\x0d\x97\x5b\x5e\xe5\x77\x43\xcb\x80\x6a\xe5\xe9\x22\xb3\xa6\x58\xc3\x20\xde\x75\x6c\x1d\x3e\x82\xe7\x03\xb2\x87\x1e\xd7\xa4\x8e\xc2\x86\x85\x80\x12\x11\xbf\x19\xd0\xcb\x17\x5a\xa8\x97\x49\x9d\x68\x1e\x0a\xad\xad\xba\x63\x1c\x4a\x68\xa5\x60\x20\x76\x59\x49\x3a\xfd\xaf\x4e\x3b\x24\x1f\x45\x59\xb5\xfd\xa7\x6b\x29\x78\xf5\x93\x35\xb4\x19\xb0\xc9\x2c\x40\x83\xa2\x7d\x6b\xfc\x79\xdd\x7f\x74\x61\x3f\xa7\x08\x0c\xf4\xc2\x16\xc6\x4a\x7c\x81\xdf\x66\xbb\x9d\x40\x69\xf3\xff\xa4\x11\x65\x9c\xc6\x11\x0b\x62\xa1\x37\x71\x9b\x1e\x09\xbf\x56\xda\x5f\x90\x56\xc6\x2a\x96\x56\xad\xdf\xda\x1f\xe0\x81\xa3\xb1\x7a\xd9\x31\xc7\x96\x4c\xc2\x05\x05\x77\x16\x71\xe8\x88\x28\x59\xcb\x09\x31\x9c\x1a\x2b\x7b\x8e\x7e\x66\xe9\x30\xcc\xa9\xc3\x88\x94\xee\xaa\x5a\x29\x28\x1e\xb6\x4f\x6a\x74\xeb\x8d\xb1\x5f\x55\x5b\x5a\xe7\xfd\xc3\x26\x10\x1e\xf7\xf0\x04\xbc\x80\x0f\xc7\x0e\x66\x7c\xd1\x80\x51\x5f\x68\xe7\xcb\x76\xe4\x99\x1d\x38\x7b\x3e\xa6\x1c\x97\x5f\x37\xc9\xf4\x8d\x4c\xb8\x6c\x9c\x2e\x80\x08\xf2\xd2\x8d\x40\x60\xba\x11\x78\xdf\x96\xda\xf0\x60\x64\x6d\x37\xa7\x18\xe0\x0e\x33\x87\x95\x00\x65\x5f\x06\x70\x3e\x6c\xac\xd8\x22\x9d\x52\x2c\xc3\xdf\xa8\xf9\xb7\xd1\x42\x91\xf4\xe3\xb1\xba\x4b\x6f\x66\xbb\x24\xed\x20\xff\xac\x32\x15\xfc\x1e\xb2\xd5\xbb\xf4\x86\xe2\x6c\x48\x7f\x49\x42\x9e\x4f\x95\x7a\x51\x52\x86\x86\xbb\x39\xac\xc5\xa8\x30\x01\x67\xdd\x0a\xc9\xac\x41\xe0\x70\x76\xa6\xae\xad\x7b\xdc\x0d\x8a\x33\x13\xc5\x59\x6a\xba\x7b\x3c\x2a\x05\x62\x11\x35\x25\x2e\x4c\x06\x44\x46\x8e\xdd\xc4\xc7\x4a\xe5\x7e\x4b\x29\x83\x54\x7b\x29\x4a\x4a\x58\x0d\xcf\x7b\x11\x70\x57\x9e\xb1\x24\x36\x6e\xf6\x5f\xe0\x2f\x60\x2e\x76\x19\xd1\x1b\xfd\xa5\x93\x0a\x5f\xb7\xaf\xa3\xe4\x97\x4e\x07\x1a\xa4\x14\xdb\x23\x50\x5f\xe7\xf3\x7e\x53\x4f\xb1\x36\x03\xaf\x73\x33\xfa\x07\xfd\xea\x58\x72\xe6\x57\xde\x16\x69\xba\x53\x45\x9c\x5a\xd3\x48\x38\x12\xf8\xc6\xc2\x92\xa0\x4f\xe7\x88\x29\x8b\x02\x7d\xfd\x81\x52\x8c\x7d\x23\xf0\xf4\x81\xd5\x34\xed\xae\xf1\x46\x70\x03\x95\xea\xdd\xf9\xc2\xe9\x18\xf6\xa2\xa5\xea\x68\xa9\xee\x8a\xd0\xac\x5a\xce\xdc\x14\x32\x4f\x58\xc3\x7c\xb4\x20\x08\xfe\x11\x8a\x7b\xc1\xf9\xbb\x88\x18\xa6\x45\x38\x90\xf2\x1b\x15\xe2\x1f\xea\xc9\xf7\x1f\xaa\xf2\x98\x74\x6a\xaa\x7a\x02\x83\x34\xcd\x6a\xe3\xd7\x1a\x05\x5f\x1e\x29\x99\xa4\xe5\xca\x08\x35\xc3\x0a\xee\x77\x6f\xbb\xbc\x87\x02\x08\xa2\xe3\x2b\xf8\x9c\x4e\x12\x64\x7e\x5e\x8b\x9b\xcd\x3a\xc7\x0b\x85\xc4\xda\x50\xa7\xf5\xc8\x44\xdd\xfb\xaa\xa5\xb4\x7d\x49\xcb\x81\x06\x3b\x6d\xb9\xb6\x2f\x29\x05\xb8\x5b\xf0\xef\xc6\xcf\x5e\xa7\xc5\xe7\xe8\x29\xfe\xff\xd3\xd9\x8c\x30\x79\xd9\xb1\x53\xaa\xa7\x66\x93\xcf\x2c\xc8\x1a\x30\xe8\x51\x12\xc6\x65\x57\x64\xef\x14\xca\xd7\x23\xb2\x75\xab\x74\x18\xaf\x81\x53\x02\x9e\xef\x5d\x9c\x24\xc8\x93\xd0\xbf\x16\x08\xa5\x5f\x4a\xf9\x2a\xed\xe6\x45\xd1\xc8\x38\x4b\xcb\x57\xa4\xe9\x1b\x06\x7b\xbd\x34\x5b\x35\x59\x77\xaa\xfa\x15\x87\x53\x73\xe0\x14\x8c\x10\xb0\x47\x4e\xaa\xe4\x6d\x98\xae\xd8\x9c\x08\xc9\xb5\x27\x24\x96\xf0\xf4\x84\x84\x91\xab\x99\x71\x63\xd5\x19\x3b\x51\xb3\x62\x68\xed\xe4\xda\x3b\xa3\x81\xc5\x19\xb7\x70\x94\xa3\x5b\xb9\x34\x34\x59\x94\xd8\x69\x6d\xe0\x19\xa8\x6e\x30\xcc\x40\x9d\xb3\xa7\x2f\x4e\x36\x9a\xbc\xe4\xec\x70\x60\x32\x34\x48\x9d\xa5\xa2\xa7\xe2\xfc\xc1\xc4\x48\x74\x71\x46\xec\xcf\x68\x10\x83\xbb\x70\x5c\x77\x47\x37\xd5\x66\x3f\x89\x02\x0d\xb1\x72\x97\xd2\xd4\xca\x6d\x78\x7f\xeb\xf0\x4c\xb5\x62\x17\x67\xb6\x2f\x21\x96\x63\x01\x72\x4b\x83\x2f\x3a\xad\xe7\xe6\x21\x11\xc9\xe2\x1c\x7f\x14\xa8\x54\x88\xd0\x23\x0b\xb0\x95\x10\xfc\xe7\x25\x5a\x21\xfc\xc3\x5a\xb7\x75\x29\xc7\xcc\x4a\x77\xe0\x91\xd8\xb3\x93\x06\xfa\x23\x37\x9a\x98\x8f\x85\xc9\x73\xa7\x57\xe5\x1c\x35\xbc\x5c\x86\x6b\xe2\x52\x67\xef\x41\x85\x9a\xbb\x31\x56\xf3\xe6\xdb\x81\xea\xfb\x00\x9a\x8e\xfe\x0e\x7a\xbd\x94\xc7\xfd\x97\x5f\xec\x78\xbe\x66\x2d\xa5\x9a\x5a\x77\xdf\xec\x6b\x4f\xae\x57\xeb\x5b\xb0\xfa\x0a\x16\xb8\x31\xd6\x40\xe0\x4d\x85\x20\x3b\xad\xb0\xab\x79\x61\xba\x51\x39\x54\x62\x79\x68\x68\x39\x48\x89\x47\x6f\x6c\x36\x98\x15\xb5\xb3\x74\xa9\xcc\xb1\x6c\xd0\xd1\x42\xee\xc6\xaf\x27\x62\x00\x40\xd4\xdd\x51\x6c\x40\x4a\x43\x07\x0f\x5e\x98\x22\x5a\x56\xd3\x89\x79\x58\x05\xe0\xa8\xb0\x84\x55\x44\x67\xe1\x2f\x03\x25\x69\xf3\xab\xd4\x2e\x73\x74\xc5\x2a\xa2\xe1\x1f\x4e\x62\x45\x88\x73\xbc\x87\xc1\x9d\x0e\xb4\x69\xc8\xf8\xff\x37\xc9\xae\x64\xe4\xcb\xdf\x6d\x39\xfd\x26\x7e\x08\x58\x37\x7f\x41\x41\x14\x31\xf1\xb7\x98\xab\x29\x90\x8a\xd6\x0b\x5e\xa0\xa8\x75\x60\x96\xd7\xf0\x29\x35\xd3\xff\x34\x50\xf8\x88\xb3\x14\x5e\x9d\x7c\xee\x61\x89\xcd\xd7\x34\xd5\x98\x25\x62\x90\xbc\x5c\x25\xd8\x85\x98\x20\xd0\xa6\xc1\x7c\xe0\x13\x85\xc0\x9c\x26\x07\x24\x84\xc8\x1f\xa2\x25\x2e\xd4\x52\xea\x8f\x0a\x7e\x55\xa3\x67\x6f\xe1\x7e\x89\x3a\x58\xeb\xa9\xa7\x5c\xbd\x47\x03\x47\x91\x6e\x57\xfc\x8b\x93\x24\x9b\xcd\xfa\xc8\x41\xeb\xab\xf2\xf0\xc6\xda\x67\xf3\x3b\x63\xef\x18\x7c\x0e\xcd\x11\xd1\x15\x54\x16\xa7\x99\x81\xc8\x01\x32\x59\x48\x78\x88\xec\x94\xb2\x1b\xd9\xd0\xdc\xfb\xb4\x6b\x73\x48\x78\x49\x71\x4e\x9f\x4d\x70\x42\xbe\xf2\xbc\x1e\x3c\xa1\x9a\xdd\xae\xcd\x49\xeb\x90\xc1\x7a\xda\xe1\x15\x46\x16\xac\xab\xa1\x86\xc7\xab\x66\xc5\xe6\x94\x05\x22\xff\x3c\x89\x3b\xeb\x9a\xad\x4e\x8a\xe2\xce\xd8\x8b\x5a\xfc\x0e\x3d\x16\xae\xad\x82\xfb\x64\x99\x3d\xc3\xbe\x2b\x0e\xfc\xe7\x40\xc0\x6f\xd3\x2f\xe0\x76\xb1\x26\x91\xc8\xcf\x78\x1e\xcb\x2d\xba\xa9\x02\xca\xa0\xb5\x09\xf4\xc8\x14\x1a\xc0\xb8\x8d\x2d\x8a\x16\x2c\x59\x8a\x65\x87\x1a\xe5\x32\x2d\x22\x7c\xf0\xbf\xc0\x13\x45\xcd\x7a\x17\xa7\x14\xba\x8f\x27\x7d\xf2\x95\x66\xc5\x5a\xab\x5a\xcf\x22\x31\xdc\x72\x4a\x8b\x27\xea\x33\xce\x34\x47\x07\x04\x8b\x0a\x86\x26\xfc\xba\x66\x16\x68\x6c\xd2\xa2\xc5\xe0\xd0\x59\x0a\xb6\xe5\xe7\x2b\x65\x92\x97\xa3\xaa\x04\x06\x64\xfe\x45\x6e\xd2\x5d\xa8\xf9\x9b\x51\x10\x41\xa8\xda\x9e\x08\x55\x87\x67\xda\xab\x51\xb8\x6c\xb3\x96\x2a\x23\x40\x1b\x13\x0e\xa1\x2f\xfd\x89\x69\xbc\xc7\xc7\xb1\xbb\x78\xc4\xac\xd1\xa7\xc8\xac\xf0\xca\x45\xbc\x65\xd9\x48\x51\x87\x70\x1e\x01\x71\x39\xac\xa9\x21\x6f\x28\x35\x64\xdd\x46\xf8\x5a\x99\x16\x36\x07\x4d\x08\x07\xd0\xa9\xb1\x4f\xa7\x36\x51\xfe\xf0\x3f\x04\x3e\xe7\xda\xd4\x4c\x2b\x93\x74\x63\x3b\x5d\x05\x13\x1c\x47\x57\xc6\xde\xeb\x72\x83\x56\x14\x8a\xb8\xb7\xe8\xc9\x23\xc8\xdc\x99\xa0\x0f\x1d\x9e\x79\xb1\x9d\xd9\xd8\x1c\x71\xcc\x57\x81\x5b\x55\x7f\x96\x5d\xe8\xe9\x9c\x42\x4d\x33\x49\x68\x23\x9d\xed\x95\xd4\x8b\x0d\x21\x52\x0d\x54\x32\x35\x68\x12\x60\x5b\xcd\xa2\x82\x07\xa4\x58\xa2\x40\xaa\xf1\x6b\x5d\x96\x16\x36\xb3\xe9\x1e\xdf\xf0\x7c\x1d\x47\x9f\x33\x80\x74\x5f\xef\x43\x9c\x06\xa2\xe8\xe2\xdb\xa5\xaf\x07\xba\x17\x43\x6a\x09\xae\x51\x8e\x64\x0d\xa5\x18\xbf\x56\xbd\x34\x7c\x4a\xdc\x19\x2c\x6a\x40\x55\x70\x48\xb4\x3a\xbe\xde\xbc\xab\xa4\x08\x40\x83\x5b\xb1\x79\x81\x16\xb8\xc3\x17\x78\xf6\x20\x83\xdb\x70\x28\x20\x92\xf3\x6b\x85\xdb\x5f\x32\xb1\x49\xf0\x51\xab\xa5\xd2\x54\x29\xab\x71\x41\x94\x44\x79\x91\xad\xed\xf5\x5d\xcf\xbb\xd8\x34\x62\x12\xaf\x0e\x15\x20\x2a\x90\x88\xbf\x85\x70\x82\x84\xf8\x04\xd2\x4a\xbe\x50\x33\x34\xb1\x04\x56\x8a\x7c\x1b\xda\x89\x75\x4b\x49\xc0\x70\x86\x8c\x0d\x8a\x5e\x35\xb2\x96\xd6\x84\x51\xfb\xdc\x5c\xbb\x1c\x71\x52\x3e\xe3\xd8\x37\x1e\x10\x06\xc1\x39\xf1\x11\x7c\x42\xf5\x00\xd3\x7c\x64\xc3\x22\x5a\xe1\x3e\x19\x52\x0a\x3e\x3b\xb0\x4d\x11\x64\x71\xa8\x9c\x57\xef\x79\xc3\x97\x85\x85\x56\xbe\xc1\x72\xbf\x11\x28\x42\xce\x0d\xd5\xb5\x78\xb9\xec\xf7\x63\x11\xca\x94\x1a\x46\xb3\x2f\xfe\xf3\x26\x6e\x1e\x64\x29\xa2\xbe\x51\x54\x66\x54\xcb\x18\xaa\xf3\x6b\xd5\x52\xe9\x99\xd0\xee\xf7\xd8\xf0\x93\x0a\x36\x72\x06\x23\x1a\xe9\xb8\xd3\x7a\x72\xb6\x5c\x2e\x35\x67\x81\x72\x11\x21\x6a\xf9\xdf\x40\xb0\x97\xb3\xbc\x49\xbe\xaf\x9f\xa6\x68\xd1\x63\x9d\x7c\xa0\x74\x65\x3f\x18\x3f\xa8\x98\x15\xd9\x17\xe8\xbd\x9c\x73\xe4\xa2\xf2\xa7\x70\xeb\xf3\x3c\x90\x2d\x32\xdb\xc4\x09\x28\x66\xd3\x6a\x12\x7e\x0e\x0b\x15\x59\x29\x33\x5e\x10\x88\x76\x75\x68\xe9\xb3\x78\x1c\xed\x13\x74\x41\xf7\xaf\x57\x09\x0b\xbf\x73\xe0\x1b\xd7\xbb\xd6\x09\xb6\xee\x44\x36\xbe\xfc\x2b\xae\x53\x51\xa5\x48\x62\x59\x52\xdd\x14\xa0\x39\xa6\xa0\xc4\x85\x73\xf9\x56\xa0\x8a\xd0\xab\xd8\xa3\x62\x32\xe4\x8d\xdf\x99\xe9\x8c\x93\x09\xad\x40\xfc\xfa\x65\x4a\x01\xf1\xff\xf7\x77\x7c\x33\xe4\x63\x54\xfb\x22\x2e\xaf\x74\x96\x4e\x22\x66\xe1\x64\xde\x3d\x61\x98\x5d\x3d\x92\x61\x94\x14\x53\x3a\x79\x40\x0e\x2d\xde\x62\x74\xb3\xa4\x26\xac\xa9\xba\xd9\x44\xe3\x72\x2e\x68\x5c\xce\x85\x89\x93\xc0\x09\xcf\x44\xf1\xb2\x52\x69\x38\x1a\xa8\xd2\xf0\xa8\xa2\x1f\x95\x49\x9e\x96\x09\x94\x6e\x91\x7f\xeb\x22\xf0\x47\x63\x4f\x51\xbf\xac\x8c\xe1\xbb\x36\x8c\xf2\x6a\x23\x90\x56\x20\x1a\xb3\x1f\x6a\x55\xae\x0b\x35\x38\xf0\xd8\x83\xd0\x21\xa0\x89\x5d\xa9\xbb\xe5\x55\xd8\x5b\x31\x0c\x17\xe3\xde\x4a\xa0\x0a\xa8\x57\xc6\x4f\xaa\xdc\x82\xc7\xa4\x9e\x48\x86\x94\xf5\x3a\xee\x22\x5f\xa8\x51\xdd\x70\xad\x3a\x7e\xd6\xa6\x15\xe1\x01\x7a\x36\x98\xac\x70\x4c\xe5\x0b\x5a\x9d\xa2\xe9\xfd\xb0\x92\x28\x29\x78\xce\x8c\xcd\xb2\x9b\x94\x5f\x58\xa8\x5b\x29\x20\x5e\xc4\x57\xc7\x66\xbb\x3d\x41\x6d\xff\x52\x3b\x0f\x07\x69\x6c\xb2\x7c\x10\x8d\xe8\x09\xb1\x48\x85\xea\xcc\x9e\xf3\x62\xf0\x45\x96\x86\x51\x5a\xe2\xbe\xc8\x09\x50\x7d\x40\x7e\xad\x90\x7c\x45\x16\xf5\xfb\x36\x63\xd9\x62\x24\xa5\xf7\x6a\xde\x6e\xde\x17\xf6\x42\x43\xcb\x79\xbe\x1d\x9a\x51\x54\x30\x01\x59\x47\x7d\x7e\xdd\xa0\x5d\xb9\xd0\x8e\xcd\x92\x77\xa9\x63\x22\x1a\xc0\x96\xfc\xba\x69\xae\xd9\x4d\x13\xcf\xec\x17\x88\x99\x9e\x4e\x35\xb4\x3b\x48\x65\x34\x53\xc2\x9a\x18\x0c\x8a\xb4\xf5\x43\x8e\x68\x96\xd1\x81\x5d\x6d\x12\x24\xe3\xdf\xc7\xae\xc5\xa6\xfb\xb6\xea\xd1\x5d\x55\x0a\x41\x5e\xb1\xdd\xac\xa4\x51\x77\x07\x51\xfe\xb2\xea\x53\x5e\xf6\x06\xb7\x65\x41\xdc\xe2\x21\x4d\x38\x1c\xd5\xe9\x8a\x92\xf4\xe3\xfa\x5e\x90\x20\x92\x62\x92\x4a\xcc\xb4\x9f\x53\xa0\xe8\xa1\xa5\xf4\xd0\xdf\xa1\x6c\x04\x55\x01\x13\x93\xd0\xd8\x22\xb5\xce\x9d\x46\x1c\xcc\x12\x60\x79\xcc\x9a\x54\xe6\xc3\x4a\x1d\x73\x25\xea\xee\xf5\x3b\xeb\xcf\xc6\x3e\xab\x63\x8b\x5f\x9c\x5f\xa7\x95\x6b\xf9\xdb\xf5\xa6\xa5\xe2\x75\x9d\x57\x65\x99\x2d\xb3\xb4\x9b\xc6\xd5\x7a\xae\x99\xf9\xe0\x7b\x0b\x37\xa0\x29\x5f\x0d\xd3\xe1\x28\xb6\x05\xa3\xe1\x5c\xf6\xe1\x64\xbf\xb7\x82\x27\x77\x2a\x72\xd3\xe1\xcb\x44\x58\xd4\x56\x6c\x96\xeb\x34\xba\x9d\xdf\xeb\x27\x6a\xc4\x7c\x41\x5b\x0f\xbc\xa5\xfa\x4a\x3f\xfb\x73\x30\xad\xc5\x9e\xf8\x14\x3f\x26\x42\x46\x0a\xd4\x35\xdd\x69\xda\x2d\x79\x91\x45\xcb\xe2\x9b\xc2\xe4\x2e\x6a\x0b\x08\xd1\x4b\xf5\x79\xcb\xe1\x08\xa0\x59\x71\x7c\xf4\x71\x64\x73\x22\x44\x2c\x3c\x7f\xb0\x6d\x8f\x8c\x62\x18\x07\x78\x36\x0a\x53\x16\xf8\x42\xb1\x51\xf2\x6a\x3b\x01\xdb\x8e\xec\x93\x49\x98\x7c\x31\xa1\x43\x31\x37\xd7\xce\x6c\x51\x66\x5e\xc2\x05\x28\xa1\x4b\xca\xd6\xeb\x52\xad\x3c\xec\xdb\xfc\xef\x54\x67\xb0\xc3\x91\x3e\xe7\xbd\xf4\xe8\x7b\x31\x7c\x5b\x95\xb7\xbf\x47\x0d\x1e\xd6\x4a\xa5\x93\x1d\x2d\xdd\x6d\x2c\x38\x6e\xb5\x06\x4a\x94\xe1\xaa\x92\x52\xc4\xb1\x8b\x73\x62\x1f\xf4\x2f\xa5\x39\x5b\x9d\xcd\x58\xbb\xbf\xcd\x33\x0c\xf4\x02\x4e\x62\x9f\xab\x8f\x35\xeb\x27\xba\x55\x06\x20\xc0\xc7\xea\x19\x21\xb1\x38\x41\x65\x07\x42\xe5\x65\xad\x4d\x75\x5d\xcf\xf4\x37\x91\x6f\x21\xe2\xee\xa1\xda\x5c\x5c\xe7\x69\x8b\x20\x31\xf9\x60\xfc\x98\x87\x8a\x0f\x47\x65\x12\x15\x6b\x78\xe6\x2e\xbb\x71\x99\xf5\x45\x55\x02\x8e\x7a\xd1\xd7\x41\x83\x91\x7f\x9d\xc6\x44\x88\x2f\xd6\xfd\x7a\xcd\xc2\xc1\x3e\xcf\x60\x79\x54\x9b\xbb\xfe\xdf\x38\x7d\x71\x84\x3d\xa8\x34\xd1\xd9\x69\x14\x79\xf5\x23\xeb\x8a\xeb\xf1\xbf\x04\xda\x42\xf6\xbe\x75\x19\xae\x85\x26\x2b\x5a\x2a\x7e\xa2\x52\x11\x1a\x75\x03\x24\x32\x2b\x93\xb4\xd7\x6b\xf9\x06\xcb\x51\x25\x31\x78\x74\x22\xfe\xcf\x1e\x6a\xa7\x4b\x79\x58\x32\x24\x0a\xe1\xea\xd3\xc0\x07\xd0\x4f\x1b\xa8\x07\xcf\xb6\x97\xec\x20\xe2\x44\xc5\x99\xae\x2e\xce\x70\x69\x78\x9a\x56\x24\xe2\xe4\x8d\x06\x15\x90\x76\x94\x44\x0a\xf1\x2d\xa2\x77\x2d\xa5\x86\xa7\xb4\x3b\xa2\x95\x28\x7e\xc0\x83\xd0\x40\xf7\x44\xce\xb8\x6b\x5d\x99\xd8\xff\x14\x37\x1d\x65\xd4\x1d\xe5\x9f\x79\x3b\xd0\x50\x32\xd5\xe1\xde\xd3\x51\x4a\x16\x5b\x63\xef\x64\xc7\x2e\x60\x22\x5d\x4b\x8f\x09\x1d\x8b\x5d\x1d\x39\x99\x12\x1b\xf5\x07\x4b\x29\x4c\xef\x91\xf5\x7e\xc2\xc9\xb8\x63\x08\x38\x20\x28\xd4\x21\x19\x39\xd7\x24\x58\x91\x99\x51\xd4\xb5\x40\x24\xfd\xe2\x0b\x4e\xab\xdb\x1f\x3e\x9b\x2e\x0b\xb1\x47\x42\x6b\xbb\xae\xb7\x80\x3c\x11\x83\x7c\xa4\x7b\x68\x17\x09\x91\xef\x11\xf7\x6b\xa3\x34\x2f\x33\x4b\xa0\x03\x36\xbf\x52\x1e\xe6\xff\x17\x7d\x5a\x76\xd9\x41\x1c\x17\x30\xc2\x63\x8e\xb1\x93\x47\x7d\x95\x2a\x88\x42\x3d\x3d\x03\x91\xae\x97\x93\x7f\x94\x8a\x07\xce\x2c\xe7\x1e\x5c\x05\xf3\x45\x13\x04\x72\x54\x15\x75\x61\xd4\x95\x30\x8e\x07\x03\x7c\x1e\xbf\xf6\x3a\x7b\x36\x4b\x5f\xae\x09\x45\xfd\xb1\x16\x75\xf9\xe3\xa6\x66\x7b\x2f\x33\xa1\x48\x04\x39\x63\x5e\x05\x0a\x52\x52\xdd\xdd\x95\x28\xe7\x69\xaf\x10\x49\x14\xb2\xe4\x4c\x83\x46\xd2\x7c\xbb\x17\x25\x24\xe6\xcf\xb7\x07\x0b\x11\x4d\x3e\x7e\x5d\x03\xf3\x0d\x92\x9a\x63\x1b\x3b\xdb\x4b\x1f\x74\xe7\x19\xf7\x74\x75\x48\xb0\x68\x90\xdf\x9c\x4c\xf4\x13\x9b\xf1\x86\x85\xd5\x8d\x72\x33\x1a\x59\x93\xf1\x1f\x43\x53\x92\xe7\x27\x7c\xa1\xba\x2c\x5f\x2b\xd3\xc2\x30\x38\xe5\xf0\x0c\x47\xa3\xa9\x8e\xea\x13\x6e\x28\x96\xf4\x69\x25\xf7\xb3\x31\xfe\x2c\xd9\x4d\x96\xce\x5e\x8a\xb1\xf6\x10\x22\xa7\x3a\x1e\x82\x70\x93\xde\x06\x09\xdd\xf7\xf4\xe0\xfa\xac\x06\x46\x55\x1f\x2c\xb5\x0c\x80\x74\x60\xc2\xea\x83\x69\x64\x05\x92\x8c\x63\xb4\xfd\xf9\xb5\xea\x70\x00\x32\xd0\xb7\x49\x88\xd0\x83\x5c\xe3\x9c\xca\xc5\xcf\x35\x19\xb1\xe6\x69\x49\x3e\x17\x4e\x14\x9f\x6d\x77\x90\xc5\xf2\xc1\x23\xb0\xfa\xbf\x45\x67\x8a\x57\x86\x83\x3c\x54\xef\x21\x02\x73\xb2\xbd\xd3\x62\x60\xb3\xd5\x28\x87\x97\x12\xca\xff\xc7\x30\xca\x13\xf5\x6f\x8a\x73\xdc\x0c\x50\x78\xbc\xe9\x75\x8d\x52\xc5\x7d\x74\xd4\xec\xc3\x33\xae\x2b\xe2\xac\xcc\x37\xbf\xd8\x79\x44\x8b\x09\xe6\x45\xdd\x70\x9b\xd5\x3c\xf9\xa2\x09\xed\x47\xed\x22\x32\x99\xcb\x58\x4d\x0d\x35\xc3\x35\xfa\x23\xfc\x7a\x62\x2d\xcf\xcd\x2d\xb6\x57\x4c\x16\x59\xd6\xd1\x43\x57\x82\xb5\xa3\xb9\xed\x38\x56\x9b\x5e\xc1\x30\xe2\x74\xd5\x15\x55\xac\xdc\xae\xd2\x24\x44\xf7\xed\x49\x49\xed\xea\x19\x98\x6c\xc8\x82\x08\x38\x71\x2f\xe8\xb6\xc4\x71\xe4\xd7\x68\x77\xbc\xa9\x06\x7c\xd1\x70\x94\xe6\x2c\xda\x8f\x15\x72\x05\xd9\x08\x5f\x34\x8a\xd3\xd8\xa2\xa8\x16\xbb\x43\xa3\xb3\x29\x11\x6e\xe4\x31\xc5\xc3\xbe\xa8\x44\xda\xce\x2a\xbd\xcb\xb8\x0c\x33\x38\x47\x53\xb2\x85\x66\x18\xcd\x78\xe5\xb5\xea\x68\xa6\x23\x9b\x91\x30\x3d\xe9\x05\xb3\x21\x02\xbd\x31\x72\xa1\xfd\x1d\xa5\x33\xf0\x06\x12\x3e\xbe\x50\x8a\xb6\x60\xca\xc9\x6c\xae\x66\x97\xbc\x73\x45\x57\xb1\x28\x4f\xe3\xd2\x41\x3c\x5d\x5b\x49\xf5\x98\xd6\xfd\xf8\xc1\xf4\xfa\x03\x93\x44\x79\x61\x58\xac\x5b\x24\x47\x7d\x7f\xfe\x64\x3d\xc1\x8d\xed\x1e\x5f\x2a\xb3\x12\xa3\xdb\xab\x73\x73\xcc\x31\xf8\xc9\x58\x75\xd7\xd9\x48\x0f\xc8\xd7\xcb\x0d\x59\xc7\x42\xfb\x6b\xa5\xc9\x0a\x5b\x40\x9a\x4e\x9c\x42\x14\x9a\xed\x54\x0d\x3d\x31\x60\x82\xaa\x78\xd8\xd2\x87\xe0\x8b\x40\x97\x73\x85\x70\x92\x1d\xf5\x60\x51\x10\x29\xef\x22\xdd\xe0\x7f\xa0\x56\x01\xff\xc3\xc4\x07\x7c\x61\xf6\x90\xd8\xcc\x73\xa8\x96\x4c\x55\xa7\xad\x4d\xb5\x78\x68\xca\x5c\x8e\x4c\x16\x61\xa1\x3b\x2b\x82\x2c\x4f\x28\x70\xa9\xed\x46\xa1\x19\xb2\x3f\xc8\xac\x53\x6a\xf3\xea\xc9\x1a\x60\x15\xc5\xb1\xed\x57\x69\x1a\xcd\xf8\x04\xe2\xa9\xf8\x44\x9b\x81\x5f\x33\xe7\x94\xcf\xc0\x6a\x9a\x15\x83\xb5\x29\xea\xc2\xb9\x6a\xd0\x67\x7a\x63\x3f\x7c\xfd\xa6\x8a\xf0\x4e\x2b\x51\x99\x8b\xbf\xa2\x10\xd0\xaf\x34\x8d\x3c\x86\x26\xeb\x47\x89\x92\x99\xba\xa8\x35\x2e\x26\xd5\xf7\x0e\x1c\x68\x57\xe7\x61\x1c\x93\xc5\x9d\x43\x6b\x7c\xa2\xb2\xcf\xef\x20\x30\x0b\x01\x43\x55\xa8\x3f\xff\xf3\x2d\x9f\x5a\x41\x20\x9d\x5f\x2b\x02\xc3\x88\x98\xca\x00\x4d\x3e\xcb\xe5\xe7\x9f\xd2\xdb\x23\xd4\xdc\x54\xc4\xbc\xdb\xaa\x2c\x8d\xcd\x6a\xbe\x57\xd9\x18\x6f\x28\xd5\x7b\x56\xc8\x13\x99\x34\xe5\x5c\x0c\x62\xb9\xe8\x2a\x78\xd9\x9c\x23\x4a\x9c\xa1\xca\x01\xd0\xae\xf1\x94\x0d\xc2\x2b\x7a\xfa\xc6\xcf\x3a\x43\xc2\x70\x50\xf7\x1e\xad\x59\xd3\x7a\xeb\x93\x2a\xab\x48\xa3\xc4\x39\xf2\x20\x18\xef\x5d\xf7\xf3\xe2\xcf\x77\xd4\x44\x75\xcf\xba\xe7\xd4\xd7\x20\xe2\xf4\x95\x17\x78\xdb\xde\x18\xab\x85\xff\x2a\x56\x9a\xa0\x4e\x55\x5f\x3f\x50\xa5\xd6\xd5\x40\x11\xad\xaf\x6a\x71\x5c\x93\x2f\xdb\x02\x3d\x51\xa4\xe7\x2c\xe4\xce\x17\xba\x61\xfc\x09\x05\x15\xe1\x32\x2b\x4b\xaf\xdf\xd1\xda\x38\x5d\x7b\x7f\x75\xd3\x94\x9e\x62\xcd\x85\x6f\x81\x2f\xde\x57\xaa\x39\x50\xad\x43\x22\xcd\x82\x50\x28\x5c\x21\x2b\x8d\x83\xe8\x18\xbe\x35\x2b\x57\x20\xce\xb8\x8d\x79\x78\xc6\x45\x4b\xff\xdd\x5e\x4e\x07\x49\x9e\x26\xd3\xbe\xc6\x41\x91\x27\x6a\xac\xd5\x7b\x23\x95\xdf\x44\xb1\xcd\x17\x6a\xf4\xc4\xaa\x1f\xc0\x02\x8a\xc4\x9e\x12\xec\x78\x15\xb1\x55\x8b\xec\x8b\x3a\x42\xf5\x97\x64\xf1\xed\xe4\x7a\xcf\xcd\xb5\xe3\x7f\xfc\xf3\x3f\x4f\x3a\xf2\xd8\xf9\xb7\x02\xa5\xb7\xf4\x81\x32\xd5\xf8\x64\xa2\xb0\x3c\x70\x80\x55\xb5\x38\x98\xe1\x28\xfb\x4d\x9d\x11\xfe\xe6\x04\xa8\xe8\x69\x56\xa4\x92\xe4\x0a\x6d\x96\x5f\x1f\x2b\xf5\xad\x5f\x57\x06\x97\x44\x84\xee\x0f\x0a\x9b\xb4\x7c\xe7\x01\x01\x50\x90\x42\x0d\x05\x6b\x98\xae\xd8\xcc\xf4\x05\xeb\x88\xc9\x00\x9f\x1d\x7c\x31\xf1\xc1\x0e\x1c\x68\x8f\x32\xf2\x47\xa4\xe8\xc4\x78\x1a\xa5\xeb\x78\x72\x82\x9e\xf1\x74\xf5\x1b\x5f\xaf\x8b\x07\x7c\xa0\x57\xfb\x07\x8d\xb6\xb6\x5d\x1b\x53\xd5\x88\x66\x0d\x06\xa8\xfc\x7a\x02\x02\x5d\xc5\xbf\x7e\x3f\xb3\x7d\x53\xc8\xb7\x91\x4e\x3b\x7d\x1b\xe9\xc1\x4b\xff\xe1\xa9\xff\xee\xbf\xce\xb5\xc3\xc6\x2e\x8a\x7a\xfc\xba\x33\xd9\x1a\x98\x6d\xc7\x51\x95\xfd\x90\x48\x05\x82\xd7\x7b\x81\x36\x5c\xd6\x84\x36\xda\x29\x00\xde\xdc\xa5\x29\x8f\x48\x99\x34\xc9\xd5\x0d\xcb\x24\x0a\xa3\x91\x89\xa7\x15\x34\xf5\x3d\x0c\xc3\x04\xbf\xd5\x72\x2e\xab\x28\x88\x85\x4d\xb4\xf3\x91\x2e\xce\xb4\xad\xc9\x86\x26\x5b\xe6\x5c\x52\xfc\xef\xe8\x5e\x4b\x5b\x90\x9e\x02\x4a\xa0\x6b\x4d\x6d\x8c\x95\x34\x2e\x93\xc2\x64\xc8\x62\xd1\x92\xb8\x12\xb8\xf4\xfa\xf7\x4e\x2a\x23\xb7\xe3\xe3\x9f\xa9\x43\xa4\x7e\xe9\xa0\x14\x48\x2d\xc5\x84\x3b\x8b\x4f\xc0\x17\x13\xdb\x6b\xf6\x50\x3b\xb6\x79\xbe\x57\xe1\x5c\x19\xd9\x80\x89\xe5\xa7\xb0\xdb\x40\xde\x0c\x7c\x35\xce\x8c\x7b\x4a\xe2\xe0\x8e\xf2\xbc\xde\x5d\x53\x57\xcb\x42\xfb\xa0\xf6\xdb\x6a\x2d\x2e\x6c\x6f\xea\xb9\xdc\x05\x4c\xef\x9c\x12\x86\xd3\x06\x60\x0d\x44\x87\x35\xaf\x9e\x90\xc3\x50\xb8\xde\xcd\x7b\x8a\xff\x7b\x5d\x8b\x19\x5f\x09\x14\xcc\xec\x27\x2a\x13\x25\x0f\x19\x47\x1d\xcd\xac\x29\x40\x0f\xf2\xf8\xc3\x0f\x01\xdf\xe2\x8b\x26\x6d\xe0\x97\x6d\x3a\x32\x59\x17\x54\x55\x64\x8e\xd7\x82\x1d\x3d\x39\x69\xcf\x9e\x54\xf9\x48\x6e\x92\xee\x6a\xc4\x4a\xe4\xe2\x1a\xe9\xa7\x39\x1b\x6a\xa4\x95\x45\x2b\x91\xcd\x0c\x11\xff\xf0\x17\xbe\x1d\x78\x66\xf1\xb7\xab\x8d\x2e\xb9\x70\x97\x31\x05\x48\xef\x5b\xca\x99\xcc\x0f\x50\xce\x36\x69\x68\xd8\x15\x36\x4d\xc3\xe6\x81\x38\x1b\xbf\x0e\x3e\xaf\x51\xf1\xbd\xa8\x5f\x66\x20\x60\xa9\x3c\x1e\x78\x56\x7e\x5d\xed\x6f\xe1\x9f\xad\x42\x59\x0e\xe7\xe2\x6d\x9a\xe8\x32\xbb\x96\xc2\x22\x12\xa4\xd7\x94\x72\x52\xb8\xcc\x85\x94\xa4\xe4\x14\x46\x84\x7b\x42\xcb\x45\x7c\x0b\xfc\xf1\x59\xc4\xf6\x51\xf2\x77\x17\x18\x84\x3a\x7f\x69\xbe\xbc\x08\xf8\xa9\xa0\x88\x59\xbe\x5d\x5c\x5d\xab\xbb\x09\x20\xe8\x83\x1d\x9f\xad\x6e\x68\x31\xbf\x7f\xad\xbd\xac\xc0\x25\xc6\x38\xe9\x0a\x01\x0a\xb1\xa7\xde\xa0\xdb\x86\xa3\xe9\x51\xf4\xff\x70\x54\xbf\x33\xd6\x01\xc8\x53\xc4\x99\x11\x20\x7a\x5a\x9e\xe3\x92\x97\xc3\xa1\xcd\x7a\x69\xbc\x5c\xd7\xf9\x99\x9f\x77\x90\xb2\xcf\x6b\xb6\x52\x1c\xf5\xb8\x4e\x9b\x52\xec\xbb\x37\xe9\xf3\xa0\x7c\x65\x73\x01\x11\x45\x56\xfc\xfc\x32\x2a\x1e\xac\x22\x3c\x52\x94\x1f\x68\x52\x2d\xd3\xd7\x70\xc3\xef\x51\x3b\x1d\x25\xe2\x71\xfa\x28\x18\xec\x9f\xc3\xbe\x75\xa2\x60\x8b\xe2\x1a\x8e\xf1\x25\x9b\x37\x05\x93\x5c\x72\xdc\x8f\x6f\x63\x43\xe3\xc1\x4c\x75\xfc\xc2\xbb\x33\x71\x86\xcf\xcd\xb5\xd3\xb2\xc8\xa3\x2e\xb2\x6b\xbc\xf3\x9f\x29\xc4\x03\x49\xe4\xf2\x0c\xee\x54\x63\x99\xd6\x8d\xf2\x51\x6c\xd6\xf8\x74\x12\x49\x0a\x35\xcf\x3a\xa1\xd8\x93\xf3\x07\xbe\xdc\xf2\x63\x71\x2e\x41\xc5\x67\xcc\x37\xf4\x7a\x71\x75\xe8\xe7\xb4\x41\x95\xc8\x81\xa4\x0b\x9b\xb5\xce\x5c\x59\xac\x4d\xfb\x69\xfd\x1f\xe8\x04\xe6\x5f\x2b\xbd\x63\xdd\x09\x3b\x3f\xf1\x4d\x5e\x7a\xa9\xbd\x66\xb2\x6e\x5e\x44\xe1\xf2\x94\xb7\xaf\xfe\x6b\xc5\xae\xc5\x20\x53\x18\xcb\x0d\xba\xa9\x71\x0a\xc9\xc4\x05\x2f\xcb\x24\xf2\x59\xb3\x8f\x75\xfc\x10\x7a\x8a\x40\xcc\x62\x10\xf1\x39\x95\xec\x98\x22\xaa\x3e\x01\xdd\x22\xd4\xc9\x18\x88\xf2\x6b\xd5\xf9\xeb\xa5\x59\xcf\x46\x45\x99\x59\x9a\x6a\x08\x19\x8a\x6e\x12\x3e\x3a\xeb\xeb\x61\x70\x73\x49\x21\x43\xcf\xd3\x22\x42\xa5\x73\x9d\x8a\x3b\x9c\xc7\x53\x1d\x4f\xef\xfd\x58\xc1\xc5\x78\xd8\xe8\x5c\x4c\x58\xb2\xab\x7a\xc7\x6d\x64\x2f\x00\x7e\x9c\x6e\xa2\xbc\x16\x36\xf7\xb8\x38\x14\x30\xd7\x15\xb5\xf3\xba\x8b\x53\xc3\xb4\xb0\x7a\x7a\x7e\x52\x4d\xcf\x4f\x2a\xd0\x45\x6e\x49\x7e\xf4\x01\xda\x53\x6c\x4b\x84\x47\xee\xac\xc4\x0f\xcf\x78\xe7\xbe\x5f\x7c\xc1\xdb\x46\xbb\xa4\xf8\xb8\x26\x0e\xc0\xab\x0e\x61\xe8\x8a\x1a\xce\xf1\xb1\xc8\x1c\x07\xea\x12\x68\x17\x24\x8e\xb3\xaa\x6e\x2b\x4c\xd6\xb7\x05\x53\xba\x18\x03\x8d\x7d\xe0\xc8\xd0\x1e\x8c\x89\x9b\x80\x52\xe3\xc4\x58\x71\xba\x26\xe9\x0a\xf3\xf3\x6d\x1b\x77\x3d\x5e\x03\x53\x1b\x16\x9c\xe2\x8b\xb1\x3f\x20\x66\x23\x2a\x1c\x5d\xa9\x53\xfd\x14\x5f\x4c\xb4\xf6\x60\x80\x4b\x92\xc4\x38\x7b\x9c\xba\xcc\xbc\x16\xd3\x71\x38\xe2\x28\x8f\x92\xfe\x7e\xfa\x49\x61\x8c\xd1\xfb\x63\x82\x09\xdd\x56\x41\x28\xfa\x69\x38\x70\x71\x98\x24\xdc\x09\xd4\x8c\x61\x4b\xa9\x36\x5f\x41\x38\x43\xc8\xdc\xbd\xae\x30\xfb\x65\xb6\x42\x67\xaf\x2b\xc3\x79\xc0\xc8\x17\x13\x62\x39\xc4\xfd\xb6\xb4\x89\xb1\xf8\x77\x01\xde\x84\xa8\xfd\x91\x1a\x1f\xdf\xae\xe9\x2a\xae\x98\xe1\x28\x4a\x60\x36\x02\x08\xcf\x74\x47\xa9\x20\xbf\x35\xf6\x1f\x16\x7e\x1d\x52\xbf\xd5\x82\x51\x7e\x04\x2d\x6f\x04\x1d\xe8\x2e\x30\x1e\x1f\xc9\x2f\x02\xc8\x5d\x65\x94\xfc\x1f\x54\xcf\x67\x68\xc2\x70\x10\x99\x2c\x8d\x0d\x06\xa0\x0e\xaf\xe1\xb1\x1b\x0d\x62\x4e\xd5\x89\x35\xb2\x59\xbc\xd6\xd2\x5b\x61\xec\xf1\xba\x5b\xc1\xe7\xea\x09\xed\x4b\x2f\xb5\xbf\xf4\x84\x3f\x5c\xef\xd5\xcd\xd1\x9c\x99\xe4\x25\x82\xbb\xe3\x0e\x9c\xc6\x3a\x15\xf8\x24\xdd\x54\xbe\xa0\x30\x82\x6f\x76\x94\x25\xb9\x1c\x7e\xf8\xf0\x8c\x90\x1d\xc6\x94\x51\xb8\x62\xf9\x17\x5f\xe0\x6d\x87\xf1\x9f\xa8\x27\x52\xa8\xa8\x2d\x2f\x1c\xb1\x8f\xac\x53\x40\x13\x2b\xc7\x2a\xf1\xe1\x94\x10\xfb\x1f\x39\xf5\x99\x71\xeb\xab\xb3\xce\x93\x13\x3b\x46\x24\x69\xe8\x86\x22\x1b\x3e\x3e\x51\xb4\xbc\xf4\x52\x7b\xb4\x96\x99\xa1\x02\xb0\x38\x97\x0b\xe5\x66\xf1\x44\x43\x63\xc4\x4e\xab\x76\x34\xef\x79\xbe\x50\xdd\x63\x80\x1d\xf9\xb5\x9b\x8c\x41\x25\x49\xf6\x36\x4f\x97\xc7\xb5\x51\xf3\xa4\x77\xc1\xfc\xfc\xe7\xe8\x03\xe2\x19\xbd\x86\x85\x25\x11\x89\x1e\x12\x06\x53\x53\xeb\xf4\x95\x45\x23\x9d\x9e\x18\x7e\x67\x17\xdb\x6a\xa2\x4d\x78\x3f\x9d\x4e\xce\xd6\xcb\xfb\x25\xaf\xe3\x01\xe0\x59\xde\x53\xd6\x15\xf7\x00\x18\x10\xc3\x04\x02\x1c\x8a\x31\x42\xf5\x30\xd1\x3c\x3b\x3d\xf6\xfd\x9c\x0f\x34\xab\x0f\x12\x74\x6c\x26\x1e\x28\x3b\x0f\xae\x4c\x10\xf7\x27\xb5\xe4\x0f\xcf\xbc\xd8\x2e\xe0\x62\xee\x04\x1a\xd1\xa1\xd3\xc8\x60\x7c\xc4\x63\x0d\x98\xab\x67\x5d\x94\xd6\x53\x3f\x6e\x9b\x49\x98\xfe\x2c\x5c\x60\x58\x2e\x19\xd5\xba\xe4\x1e\x33\x5f\x4c\x84\xed\xe7\xe6\x21\x41\xc1\xf5\xb8\x0c\x8e\x14\x33\x6c\xcb\x0d\x89\xfb\xd1\x70\x18\x85\xcb\x4c\xa2\x14\x9d\x6e\x5f\xf4\x6c\xa9\x4e\x59\x2f\xca\x07\xe4\x89\x37\x37\xc7\xfb\x8a\x25\x1b\xf9\x42\xc1\xee\x96\xd2\xa4\x9b\x3f\x8c\x07\x0d\xb0\x1d\x3b\x89\x8a\xe0\x04\xdd\x78\xfc\x89\x3b\x14\xbc\x9d\xb1\xd2\xe2\x0c\x57\x15\x7b\x3a\x4a\x7c\xe1\x2d\x05\x1b\x03\xfd\x11\x19\xe7\x03\x08\x94\x58\xf3\x0f\x75\xbc\xbe\xc3\xae\x75\x85\xa0\xf8\x7e\xe0\x6d\x8a\x77\xaf\x7b\x25\x55\xe6\x12\xa0\x75\xf8\xbf\x05\x9a\x24\x9d\xae\x44\xe2\xc1\x2c\x04\x9a\x96\x33\x1a\x3d\xde\x28\x9b\x93\xa5\x23\x26\x7e\x0b\x53\x55\x49\xb0\xde\xae\xb1\xd7\x76\xea\xdb\x91\xe1\x96\xc9\x6c\x52\x0c\x08\x03\xec\x52\xbf\xb7\xc7\x4a\x17\xef\x6d\x35\x79\x8e\xab\xd5\x04\xde\xe6\xbc\x63\x47\xf9\x91\x07\x37\x11\x71\xbb\x27\xa1\x19\xd5\xdf\x1b\x98\x2c\x8b\xf2\x96\x02\xa6\xb3\x6f\x1d\x5f\xa8\x9a\x2c\x0a\x97\x1f\xa1\xfb\x2c\x92\x80\xf4\x4b\x6e\x40\x7b\xd8\x13\x27\xf1\xc8\xb1\x9e\x6f\x29\xd1\xac\x53\x3a\x68\x1f\xc5\xe3\x07\x00\x08\x11\x1c\xd3\x0e\xbe\x63\x08\xb4\x9f\x6a\x2a\xde\x15\xec\x7a\xde\xb7\x94\x2c\xb1\x48\xae\x66\x3f\x22\xbb\x12\xff\x49\x9f\x75\xdf\xdf\x51\xc4\x55\x13\xa7\xb0\x94\xc7\x2f\x69\xe4\xec\xe4\x01\xb7\x38\xd3\x1e\x9a\xc2\x66\x51\xcd\xe1\x71\x4b\x49\x01\x4d\x1a\xba\xcd\xcf\x1f\x6c\x8f\xa2\x82\x1b\x02\xdc\x72\xc2\xad\x95\xfe\x93\x47\x81\xf5\xd3\xb8\x6b\x93\xbd\xca\x2d\xf4\x9b\x63\xbf\x07\xd6\xf1\x18\x1d\x3c\x4f\x45\x0e\xe5\x1d\xb9\x3e\x56\x4c\x87\x5d\x13\x38\xe6\xa7\xab\x47\xdd\x65\x10\x8d\x53\x30\xf4\xd9\xd9\x56\xa3\xfc\x4b\x5e\xd6\xd4\x8f\xce\xa8\xaf\xac\x19\x22\xdd\x28\xb3\x61\xb1\x8f\x9e\x2e\x1a\xd0\x50\x6f\x12\x73\xb4\xea\x49\xa1\x0f\xc2\x0d\x73\xbe\xd0\x68\x78\xda\x1b\xdb\xec\x7c\xcc\x6f\xa2\x26\x67\x26\x8e\x8a\xb4\xa5\xa0\x89\xda\x60\xe5\x8c\x76\x0a\x0c\x07\xab\x76\x34\xb2\x70\xba\x13\x4e\x94\xd2\x6b\xdd\x41\x8a\x8a\x7b\xfb\x3d\x6f\xa7\x45\xb5\x91\x2c\xd0\x6a\x4d\xe2\xbc\xba\xa9\xd0\x81\x60\xaa\xa0\x9b\x31\x45\x05\x88\x08\x11\x28\x7f\xaf\x5f\x0b\x94\x70\xfc\xaf\x35\xf9\xc7\x74\x33\xc3\xa3\x28\x57\x39\xf8\x74\x49\x01\xd2\xba\x36\x8c\x4d\x56\x45\xa1\x5f\xfe\x4a\xcd\xc4\x89\x5f\xd7\xbe\x4d\x91\xe6\x7b\x68\x19\xb0\x33\x7b\xdd\x0e\x8d\xd6\x97\xf3\x6c\x5f\x94\x81\x33\xd1\x7d\xb9\x8d\x77\x79\xfc\xff\x6f\x4a\xd2\x47\x69\x56\xf4\xd2\x38\x4a\xf9\x38\xc1\x37\x7e\x2d\xf0\xdf\xfe\xb5\x49\xfb\x7e\xfa\xc5\x41\xb4\x94\xa5\x9c\x5e\x70\xbe\x80\x87\x21\xc9\xc3\xce\x28\x38\x37\x57\x55\x97\x7d\x5b\xc0\x57\x5f\x8f\x97\x94\xff\xeb\x56\x53\x16\xda\x8d\xf2\x51\xe9\x3a\xd5\xac\xaa\x37\x56\x5c\xbb\xa3\xce\x99\x2f\x8c\xad\xc9\x60\x93\x70\xd0\x69\x27\xd0\xfa\x45\x82\xb6\xa7\xe3\x83\xfe\xb6\x12\xaa\xc9\xa3\xae\xc5\x98\x88\xc1\xc7\xca\x78\x73\x0b\xcf\x1c\x47\x1d\x72\x74\x41\x28\xd3\xca\x60\xdb\xc4\xe0\x09\xa9\x39\x4d\x52\xf6\x4c\x58\x55\xd1\x99\x38\x09\xe1\x40\xfb\x54\x4b\x01\xfe\x08\xf7\x8b\xe1\x23\xca\x23\x21\xb7\xd9\xda\xb4\x47\x41\xfe\x07\xfa\x8b\x48\xf6\x91\xd2\x22\x16\x70\x6f\x4c\xf0\xe9\x0d\xac\x7c\x9b\x14\x59\x24\xb7\x0d\xcb\x8a\x3b\x3a\x7c\xe1\x74\x98\x7b\x4b\xd1\x94\x67\x04\xd4\x7c\x68\x6f\x72\xd8\xe7\x50\xaf\xa6\x47\x3c\xfa\xa3\xbb\xe6\x5c\x28\xe6\xfd\xd0\xc9\x0b\x9c\xef\xee\xb4\x5c\xc3\x78\xf7\x3a\x05\x07\x51\x93\x7d\x44\x6b\xbe\x45\x26\xc1\xc0\x14\xc9\x3c\x83\xc5\xb4\x08\x3c\x52\xc6\x9f\xd6\x66\xf4\x4b\x09\xc2\xb7\x3c\x39\xfa\xf0\xf2\x84\x1a\x6e\x4b\x66\x57\x4d\xd6\xe5\xdb\xe2\xa4\x37\xbd\xbe\xc3\xf1\x86\xe1\xcf\xc1\xfa\x49\x51\x13\xbf\x94\x8a\xd6\xc3\x15\x7b\x26\x8e\xf3\xbd\x9e\xc5\xba\x6b\xdd\xe7\x77\xef\xd1\x8c\x43\x68\x1f\xde\x82\x92\x9b\x5b\x98\x70\x6d\xe3\x4b\xa0\x6c\xdd\x70\xe4\xd1\xa5\xd8\xb0\x9b\x12\x8e\xe4\x3b\x4a\xdd\xf9\xce\xc4\x9c\xe0\xb9\xf9\xf6\x92\xcd\x8b\x69\xef\x45\x44\x03\xc7\xed\x77\x70\xdc\xa2\xa2\xde\x0d\x56\x0f\x92\xf4\xcb\x4e\xa9\x65\xa9\xcc\xa3\xc4\xe6\xf9\x34\x1e\x3e\x77\xea\xd4\x4a\x04\xa0\x55\x16\x9f\xaa\xa7\x76\xab\x86\x5b\xda\xeb\x45\x21\xef\x2b\xf7\x2d\xab\x54\x43\xb8\xc9\x4a\xad\x1f\xd2\x5c\xae\x17\xe2\x25\xbb\xdc\xce\x58\x2a\x87\x23\xe1\x9e\xa2\x37\x84\x80\xc9\xaf\x27\x22\x87\xa8\x22\x91\x44\xa2\x03\xc2\xb0\xf7\xab\x48\xae\x78\xd4\x6f\x2f\xb3\x49\x38\xb8\xaf\xe5\x9c\x73\x77\x75\xd4\x40\x97\xed\xc6\xf0\xb7\xbe\xa3\x98\x11\xac\x0a\xe1\x42\xd9\xe2\x8c\x6f\xcc\x54\x0b\x4c\x54\x33\x94\xd9\xca\xa9\xc0\x2b\x62\xd5\xa5\x6d\x47\x11\x70\xc7\xcf\xfa\x3f\xe4\xbe\xe0\x77\x94\x37\x6a\x6c\xf2\xe2\x71\xfa\x39\x74\x84\xa0\xbf\x80\x23\x60\x3b\x50\x1a\xd3\x1f\x29\x32\xf0\x35\x3a\xec\x70\x1e\x70\x06\xcd\xf9\xb7\xca\xa0\xdf\x67\xf8\x2a\x1e\xe6\x25\xad\x3f\x7e\x5d\xd3\x0f\xae\x21\x5f\xc1\xbb\x3d\xdc\xa1\x1a\x1a\xf7\x74\x9b\xea\xf1\xed\xb3\x38\xf1\x5d\x82\xe1\x68\xdc\xff\x07\xe2\xb1\x73\x4f\x9f\x3d\xc4\xd3\xd3\xfd\x1d\x3f\x33\xe7\x12\x53\x96\x43\x43\x46\xfe\x72\x1a\x09\x76\x12\x8b\xf7\x46\xa0\x26\x94\x37\x6a\x9e\x9a\x99\x1d\xa4\x65\xce\xbc\x06\xc0\x7c\xae\x28\xc3\xec\x2b\x63\x3f\x39\x49\x43\x6b\x92\xb4\x9f\x99\xd1\x20\x0a\x71\x4a\x09\x73\xb6\xa5\x18\xb5\x4a\x40\xd8\x66\x51\xda\xdd\x87\xee\x04\xba\x1e\x60\x0c\x03\xca\xf8\xe6\x58\x67\x93\xd5\x59\x8f\xfe\xfb\x86\xe2\x27\xdd\x4f\x07\x35\x1a\xa0\x9f\x40\x93\x9c\xdf\x28\xf0\x6b\x3f\x73\xc8\x41\x81\x3d\xfa\x39\xe7\xc5\x09\x47\xd4\xc3\x33\xed\x62\x45\xf9\xf1\x9c\x0a\x14\x9b\xed\x94\x12\x7b\x35\x59\x11\x85\xb1\xdd\xeb\x1b\x41\x6f\x60\x41\x33\x9f\x2f\x50\x7f\xf2\x23\x2c\x00\x51\xb2\x50\x25\xf5\xa6\xce\xf8\xb4\x28\x51\x62\x92\x50\x44\x89\x98\xee\xad\x91\xd4\xef\x29\x46\xc9\xd7\x4a\xa8\xd9\x56\xe9\x01\x09\xc9\xa0\xbe\xf9\x13\x85\xe2\xfc\x90\xbe\x33\x0e\xe2\x63\x35\xb0\x58\x66\xc1\xdc\x72\xe0\x98\xea\x6f\x88\xb9\xa0\xaf\x75\xca\xd8\xd0\x39\x87\x24\x85\xf9\x82\xe2\xda\xe2\x69\x70\xe7\x34\x4b\xda\x0c\x47\x31\xeb\x70\xa3\xb0\x3c\xa1\x54\x73\x4e\x34\x45\x9d\xbc\xcc\x56\xec\x9a\x85\xcc\x95\x3c\x21\x15\x3e\xfe\x0d\xf6\x0e\x8e\xa8\x29\x45\xbf\x3b\x86\xad\x21\x60\xef\x27\x14\xbb\x8f\xb4\xeb\xaa\xdb\x83\x03\x12\xf1\xfc\x9e\x82\xac\x9c\xa0\x6c\x1c\x0b\x6a\x4a\x41\x3a\x4d\xb7\xeb\xa6\x4d\x72\xbc\xb7\x9c\x17\x0a\xb8\xe1\xdc\x30\x54\x15\x68\xd7\xf6\x6c\x92\x5b\x52\x42\xf2\x12\x5c\xd5\x96\x44\x90\x79\x1d\x4f\x5f\x28\xc0\x4a\xc5\x0a\x34\x1f\x4c\x9f\xc8\xfd\xe5\x59\x57\x80\x6a\xd4\x03\xdd\x4f\xce\x30\x38\xe4\x20\xa9\xfe\x77\x0d\x44\xf8\x76\x94\xf4\xd2\x30\xcd\x46\x1a\xf5\x3c\x56\x53\x9e\xc9\xb4\xf1\xf0\xcc\x82\x9f\x41\x39\xab\x0c\x80\x7c\xb1\x33\xd9\x22\x40\x8e\x36\x3f\x04\xb1\x47\xaa\x3d\x0d\x18\xfe\xdc\x5c\x23\x0c\x5f\x99\x76\x5b\x93\x17\x8f\xd0\xcd\x10\x38\x34\xdd\x33\xe4\x37\xef\x50\xf8\x45\x9f\xe2\x4f\xa9\x21\xb5\x8d\x99\x09\x36\x22\xdb\x01\x20\xa9\xb9\x3c\xf6\xc7\x24\x08\xd6\x78\xc3\x7d\x30\x5b\x12\x61\xc9\x6a\x67\xc8\x8a\xa5\x2f\x20\x5e\x8a\xd5\xb7\x14\x5f\x69\xba\xed\x18\x56\xfd\x5e\xb0\xfb\x8b\xc2\x09\xa0\xd4\x03\x8f\xe9\x47\x41\x1d\x10\x9d\x99\x15\x0c\xd5\x7d\x25\x7b\xbc\x36\xdb\x68\xf4\x47\xcd\x2c\xed\x5a\x35\x91\xde\x52\x7a\x16\x55\xf6\xe5\x85\x74\x49\x2c\x24\x2a\x4a\xf8\x1b\xb6\xbc\xb9\xd5\x86\x32\x8e\xd8\x50\xcf\x21\x1d\x15\xd1\x90\x26\x57\x64\x43\x85\x1f\xb8\xa1\xf0\xa2\x9b\xc4\x67\xc2\x46\xfc\x73\x1c\x37\xc8\x85\xa6\x3b\x0a\xdf\x7a\x53\x6d\x92\x1b\x4e\xaf\x0e\x0e\x7f\x5e\x58\x55\x7b\x0e\x3b\xba\xc4\xc0\x9a\x95\xa8\xfa\x7e\x94\x30\xe1\x91\xde\x54\xfc\xcd\x9b\x4d\x6b\xb5\xba\x27\xd1\x0e\x5f\xca\x5b\xca\xc0\x82\x67\x15\x88\x95\xf7\xaf\x7b\x68\x43\x95\x00\x87\x85\xe0\x32\x25\x48\x9d\x0d\x6a\x6a\x95\x3e\x5f\xc9\xd2\x70\xd9\x32\x2d\x48\x3c\x12\x5a\xde\x2f\x61\x02\xfe\x7c\x78\xe6\xc5\xf6\x92\x2c\x6a\xcc\xc9\x6e\xab\x99\xd9\xed\x89\xd6\xf5\xec\x21\xd2\xb1\x2e\xe3\xc2\xf1\x4c\xb0\x08\xf7\x76\x3c\x82\x63\x37\x81\xfd\x90\xfe\x9f\x6a\x72\xb4\x1c\x99\xcc\x10\x82\x14\x9f\x94\xc7\x51\x0a\x00\xb4\xa1\x64\x45\xbb\x69\x3f\x9f\x56\x0a\x94\x67\xb0\x47\x05\x22\xd7\x72\xc6\x15\xbb\xe8\x23\xa0\x32\x98\xd4\x3e\x38\x3c\xf3\x6c\x7b\xd5\xe4\xac\xd5\x2f\x0b\x93\x0e\x56\xbf\x32\x27\xef\x0e\xac\x54\x5a\x3e\xba\x63\x88\xc7\xaf\x5d\x1e\xba\x1c\x25\xd2\x70\x61\x01\xcc\xc0\x13\xd0\x26\xdb\xc3\x4f\xb7\xf3\x70\x60\xbb\xe5\x84\xd5\xb3\x22\x3c\x5c\x70\x07\x7d\x37\x0d\x8b\x14\x20\x4d\x9c\x1c\xff\x42\x9d\xf3\xff\xa2\x36\x14\x8a\x12\xfb\x44\xeb\xa9\xa7\xbc\x9d\xca\xe1\x19\x07\x64\x47\x44\x45\xc7\x9a\x27\x44\x18\x4e\x71\x5a\x26\x53\x2e\x5a\x68\xbc\x14\x3b\xde\x1b\x96\x1b\x0c\x28\xc3\xde\xa6\x61\x0d\x06\x8c\x9c\x3d\x8b\x15\x0b\x45\x26\xe7\x6f\xe3\x86\x57\x0c\xeb\xc1\x1f\xd9\x45\xac\x6c\x2e\x92\x11\xb2\x70\x20\x9c\xa4\x58\xc6\x3a\x61\x38\x10\xc4\xb5\x5c\xc5\xaf\x1f\x8d\x3d\xb0\xe2\x47\x18\x3e\xa3\xae\xbf\xee\xf6\x72\x91\x72\x8b\x5b\x4e\x20\x7d\x1c\x4d\xec\x83\x17\x66\x0f\xb5\x13\x7b\x04\x4c\x0e\x44\x7f\x16\x27\x50\xfc\x01\xef\x7f\x35\xd9\x00\x5c\x68\xe7\xa1\xc9\x34\x6c\x87\x7d\x11\x45\xfe\x61\x12\x9e\x77\xb0\x9d\xae\x26\x53\x8a\x9a\x76\x4b\x35\x9c\xcf\x23\xe1\x12\x0a\x5d\x43\x42\xc1\x07\x19\xd7\x3e\x4e\x84\xd9\x0b\x32\x6b\xfb\x34\x93\x65\xe4\xc5\xe8\x02\xce\x87\x4a\x0d\xfa\xc3\x26\x5b\x2d\x9b\x14\x54\xfb\x30\xb5\x55\xa8\x78\xb4\x36\x04\xad\xed\xdb\xe7\x2b\x69\x6c\x8a\x28\xb6\xfb\x15\x8d\x05\x29\x11\xc6\x6e\x3f\xa6\x33\x16\x29\xc5\x1d\xe5\x3b\x88\xd6\x8b\x44\x2a\xfa\xca\xdc\xc8\x40\xfb\xd8\x61\xdf\xaa\xf5\x29\xd8\x37\x25\x93\x92\x66\x89\xcd\x20\x6d\x85\x35\x03\x80\x0e\xcb\xf5\x8e\x3d\x02\x7a\x7b\x82\x98\x25\xa3\x96\x25\x9b\xf1\x4a\x41\x44\x39\xa7\x27\x62\x3a\x4f\x7c\x6e\xf1\xab\x2d\x3f\x49\xbf\xa1\xc7\x55\xfe\x08\x19\xac\x8d\xec\x94\x3a\xf9\x31\x25\x02\x28\x1e\x6e\x4f\x48\x40\xff\xc6\x0d\x64\xc8\xf9\x30\x5a\xc1\x83\x3c\xe8\x11\x24\x0e\xaa\xb9\xd1\xd4\xfe\x4a\xd2\x55\xd3\x35\x6b\x0c\xb7\x42\xfe\x75\x95\xbe\x2f\x30\xd2\x88\x85\xe8\x28\x9c\x75\x7f\x2b\x1f\xa5\x05\xe1\x5d\x5a\x3a\xcc\x78\xd2\xfc\x05\x55\x78\xfe\xec\x97\xe7\x67\x7f\xee\x67\x3f\x47\x61\x02\x07\x25\xb7\xa3\x85\xb8\xee\xbb\xed\x17\x55\x7b\xfe\x58\xa0\x4c\x74\xe0\x70\x89\x58\x74\x2b\x98\x3a\xf8\x4f\xbe\xca\x6b\xe7\x6a\x50\x05\x29\xb6\x0e\x0b\x94\x7e\xdf\x51\xa2\xfa\x3a\x9a\xf9\xa2\x02\x3c\xbb\x73\x99\x59\x67\x08\x05\x32\x5d\x44\x3e\x8a\xb5\x85\xa1\xc1\x1f\x62\x03\x0b\xe7\x5e\xb1\xc3\xb6\x09\xd1\x25\xdf\xe3\x21\x15\x3e\x57\x22\xa5\xf5\xf0\xee\xd8\xb7\x33\xde\x0d\x7c\x97\xd6\x94\xdd\xc8\x26\xa1\xdd\x4f\x81\x07\xdd\xc6\x56\x67\x27\x61\x86\xff\x3f\x3a\x5b\xe8\x17\x00\xd6\xe3\xba\x02\xae\x65\x73\x42\x6b\x5c\x5e\xc2\x1e\xe3\x0b\xe7\xec\x31\x4c\xcb\xa4\x30\x51\x52\xa4\x48\x78\xc5\x05\xb5\x7a\x47\x11\x59\x6b\x60\x4e\xe6\x23\x1b\x46\x26\x8e\x20\x25\xb8\x7d\x96\x1a\xef\x67\x15\x0a\x80\xec\x06\x4c\xe8\x31\x37\x72\xef\xe9\x53\xb0\xc9\xbb\x9a\x33\x5d\x51\x43\xbf\x51\x14\xa7\xc5\xb4\xee\x5b\x50\xec\xe7\x0b\x7c\x29\x25\xf0\xf7\xa2\xfb\x97\x07\x5c\xe0\x78\x2a\xff\xc2\xa4\xcd\xa7\xbb\x43\x07\xc4\x65\x70\x93\xaa\x64\xae\x2c\xf0\x5e\x88\xd2\xf7\x34\xce\xef\x2c\xa6\xfe\x8c\xb1\x0d\xfc\x50\xed\xa1\x0e\x9d\xf3\x38\xae\xee\xeb\x28\xa7\x80\xdd\xa8\x46\x50\x04\x7d\x87\x8e\x4b\xe4\xcb\x14\xb1\xee\xfd\xea\xa3\x20\xd8\xf1\xd8\x62\xec\xb5\x9c\xbf\x87\x55\x8b\x03\x05\x4f\x1f\x92\x76\xfb\xc9\xd3\x80\x61\xad\x84\x2f\xc4\x9f\x6d\x51\xbf\x13\xdd\xc4\x6d\x80\xef\xdd\x08\x74\x6e\xee\xde\xaf\x3e\xb1\x8e\x85\x8c\xbe\xca\x2e\xed\x72\x72\x11\xe6\xb0\x22\xe1\x4e\xc1\x10\xd9\xd5\xb9\x71\xeb\xcb\xbf\xc2\xa0\x83\x47\x3b\x0d\x2c\xcf\xbe\x89\x57\x4c\x02\xe8\x78\x75\xa3\x64\x27\xfb\xf4\x77\x4b\x9d\x13\x00\xd2\x72\x07\x05\x7b\xe5\x55\x95\x6a\xbc\xaa\x46\x15\x19\x71\x7e\x2d\xe4\x5d\xb1\x2f\xd1\xe2\xc0\xc3\xbb\x4c\x7b\x00\xcd\xba\x56\xc7\x27\xa8\xa1\xc9\x04\x7c\x85\xac\x42\x0f\x80\xcf\x36\xe0\xde\xcb\x64\x64\x22\xa6\x0b\x8b\xdb\x4d\xcb\xc9\xee\x4d\x02\xa1\x0f\xcf\xcc\xb6\x0b\x6b\x5a\xbe\x7b\x85\x26\x8d\xa8\x1d\xed\x84\xf0\x7c\xa9\xdd\xb5\xe1\x33\x94\xb8\x41\xb6\xe9\x9c\xf6\x59\x38\xd7\xe0\x58\xb9\xd0\x2e\xa2\xa1\x05\xab\x11\x8a\xbf\xdb\x97\x26\x90\x41\x4f\xb7\x47\x69\x0e\xca\xb6\xab\x32\x55\x61\xb1\xf3\x7b\xbe\xf4\x52\x3b\x8c\xd3\x1c\xd0\x48\x04\xd5\x6f\xd1\x49\x86\xe6\x00\xa4\x9e\x05\x69\xd2\xc0\x43\x95\x2c\x55\x39\xaf\x78\x9f\xd3\x8b\x4a\xca\x18\x5f\xf6\xc0\x2c\x83\x43\x6e\x2a\xd0\xc8\x4d\x57\xe2\x2c\x9b\x2c\x2f\x4c\x17\xa7\x04\xfe\x91\x11\x08\x7c\xa1\x66\x75\x2f\x5b\x93\xe4\xfb\xaa\x3f\xe6\x6c\xcb\xab\x75\x26\xc1\x15\x6b\x1a\x69\xcc\x2d\xa5\x37\x83\x89\x1e\x62\xfb\x19\xed\x4d\xc7\xc4\x38\xbe\x68\x84\x81\x2e\x95\x51\xec\x91\x33\x42\x13\x54\x94\xc1\x06\x12\xf6\x2c\xf9\x8c\xae\x0e\x6c\x86\xd2\xdf\xe5\xf2\x75\x37\xb2\x79\xd7\x38\xd1\x06\xa8\xc3\x51\x81\xd4\x5e\x1f\x77\xfc\x3a\xd0\xbe\x30\x61\x6c\xf2\x3c\xea\x45\xd8\x6d\xd2\xb1\x83\x98\x35\xbf\x6e\x58\xe2\xa4\x68\xcb\x7d\x3c\x34\xc1\xaf\xe1\x8e\xf0\x45\x93\x44\x70\xdf\x66\x43\x23\x0a\x67\x1c\x25\x70\xf2\x4a\xc8\x98\xe0\x77\xcc\xb6\x87\x65\x1e\xa6\x2b\x51\x61\x05\x03\xc4\xb5\x00\x1e\x99\x14\x06\x32\x36\x5b\x35\xb1\x37\x9d\x12\xa4\xb8\x92\x62\xdc\x08\x1e\x54\x65\x6a\x82\xa7\xe1\x1a\x99\xf3\x22\xcf\xbb\x11\xf8\xea\x5d\x45\x23\x1d\x80\xaa\x1f\x96\xc0\xe4\x0c\x83\x6c\x1c\xa7\xab\x53\xca\x15\x8d\xb6\x3d\xfb\x65\xa8\x79\xf0\x8f\x27\xd2\x23\xc9\xec\x06\x86\x07\xa4\x38\x96\x81\x5b\xc0\x96\x78\x15\x27\x95\xb3\x7b\x78\xce\xfb\xfc\x28\xab\xaa\x63\x4d\x27\xea\x92\x8d\xd3\xa4\x1f\x25\x7d\x0e\x93\x22\x38\x59\x53\xa2\x94\xb1\x9f\xed\xf5\x20\x9b\x97\xd8\x3c\x57\xca\x2f\x80\x9c\x0a\xb3\x60\xe7\x58\x74\xe1\xf9\x83\xed\x51\xb9\x14\x47\xa1\xbb\x55\x6e\xbc\x57\x2d\x12\x49\x91\x55\x6b\xce\x24\x7d\xf6\x22\x5e\xf0\x80\x28\x0f\x8e\x9a\x98\xbc\xce\xcf\xb7\x47\x65\x1c\x0e\xb2\xa8\x28\xbb\xec\xd8\x2b\x3e\xc2\x7e\x4e\xfd\xc3\x26\x9e\x49\xcf\xe4\x4b\x2d\xdf\x30\xdd\xd4\x23\xde\x4d\x45\xa8\x5a\x2b\xfb\x69\x1e\x9b\x95\xc8\x68\x55\x08\x26\x2c\xca\x92\x6d\xda\xa9\x24\xec\x11\xb9\xd5\xcd\x35\x10\x3d\x72\xa9\x87\xee\xe3\x1f\x2f\x47\x8f\xd0\x4a\x86\xcc\x35\x96\xf0\xcd\x9f\xe9\xb8\xec\xf6\xef\x3f\xba\xae\xb4\x25\xee\x51\x48\x45\x56\xbd\x77\xbd\x3a\xb8\xa8\xe5\xf6\x3f\x3c\x85\xd6\x10\x32\x82\x0b\x63\x3f\x7c\xc7\xf8\x1f\xf7\xf0\xc9\x75\x7a\xdc\x68\x7d\x5d\xd7\xc2\x49\x2c\x36\x82\x65\x7a\x49\x19\x64\x7f\x9e\x1c\x3f\x51\x22\xbc\x8f\x05\x02\x70\xcb\xa7\x0a\x0f\x92\x8e\x8a\x28\x4d\x80\xa7\xc0\x74\xeb\x18\x25\x3e\x62\x53\xeb\x73\xd0\x57\xe8\xad\x9d\x6a\x70\xf5\x01\x70\xc0\xbe\x15\x28\xcc\x33\x55\x1c\xdb\x9f\x34\x09\xb5\x22\xcd\xc3\x46\x65\xd0\x79\xe0\xc1\xda\x7f\xed\xf6\x5e\x98\x26\x49\x64\x39\x46\x38\xff\x50\x4f\xe1\xf6\x9d\x89\xbc\xc8\xd2\x2a\x71\xac\xd2\x13\x11\xe4\x6f\x39\x6d\xa8\x3d\x1d\x15\x05\xef\x8c\x9f\xf0\x1c\x51\x62\xbf\xd9\xdc\x81\xe3\x18\xe7\x55\xc3\x7c\x49\x1c\xca\x6d\x58\x66\xb6\xbb\xd7\x87\x94\xb7\xb1\x86\xd0\x2f\xbd\x83\xfe\xb8\x12\x63\x94\xee\xce\x23\xd4\x45\x47\x21\xf7\x87\x63\x15\x1c\xcf\x3b\x28\x78\x68\xb2\x34\x56\xe6\xeb\x97\xb4\xf9\xfa\x25\x85\xb8\x8e\xd3\xa5\xa5\xb5\x28\x2f\xf6\x78\x5f\x64\x98\xff\x23\xd9\x3c\x8a\xa4\x1d\xa7\xca\xfb\x5e\x48\xe1\xf7\x8e\xe2\x0d\x99\x2d\xe1\xee\xb0\xe9\xa6\x23\xc9\xb3\x90\x36\xb2\xe8\x00\x5f\xa8\x8e\x27\x75\xdd\xbb\x26\x29\xf2\x7d\xaa\x9e\x56\x82\xaf\x47\xc6\xfe\xf4\x3d\x4f\x4b\x44\xf4\xbf\x14\xe8\xea\xa6\x9e\xf5\x9c\x43\x2f\x05\x50\x82\xcf\x06\x21\x16\x69\xfd\x80\x39\x1f\x34\xde\xc3\xdc\x76\x4d\x32\xa5\xd8\xf2\xff\x52\xb1\xdb\xe0\x88\x20\x4b\x43\xea\x50\xa7\x81\xb7\x47\xcb\x2e\x8c\xd5\x64\xff\x8e\xca\x15\xae\xe0\x71\xf3\xce\xc3\xb7\x12\x5c\x5d\x83\x6a\x51\x96\x1e\x59\x4a\xb3\xb4\xe5\xb9\x6c\x17\xf5\x78\xe9\xa2\x9a\xd3\x21\x85\x6d\xf9\x0c\xf7\x23\x7c\x45\x19\x6d\xf9\xbc\x35\xb7\x61\x9a\x74\xf7\x7b\x93\xf2\x93\x4a\x9c\x6d\x80\xfc\xdc\xd9\x19\x55\x99\xbb\xd8\x19\x79\x12\xcf\xab\xc1\xa4\x59\x8e\x18\x56\x2b\x54\xe2\x5f\xaa\x7c\x1c\xba\x04\xd9\x3e\x7f\x58\x7c\xa1\xe3\xa3\xf3\xc3\xeb\x1e\x8f\xf2\xb1\x22\xcf\xdc\x51\x34\xfa\x4d\xad\xe7\xc2\x03\x67\x69\x69\x39\xbb\x09\x6b\x96\x6d\x46\x33\x30\x84\xa7\x27\x50\xf4\x60\xd4\xf6\xf7\x68\x17\xa1\xb7\xbd\x7b\xdd\x71\xbd\xe2\x74\x2d\x47\xf3\xca\x15\x8c\x1e\x5e\x73\x5b\xab\xdf\x4e\xb6\xcb\x0e\xcc\xb6\xc9\x6b\xaf\xab\xbc\x58\x4f\x62\xfd\xf3\x85\x1a\x6b\x8f\xca\x78\xb4\x57\xe1\x79\x39\x4f\x43\x80\x7e\x6f\xac\x6c\x82\x30\x66\x40\xef\xe7\xb7\xb4\x97\xef\x3f\x1f\x7b\xc2\xd3\x87\x0d\x15\xc0\xc0\xac\x58\xe5\x2c\xcd\xe8\x6d\xbe\x08\x3c\x57\xcb\x1b\x91\x91\x9b\xa7\xbb\x2d\x28\x35\xd9\x6b\x52\x13\x63\x4e\x37\x79\x12\xae\x66\xe4\x7f\xf5\xc2\x82\x83\xdf\x78\x84\xd7\x45\x45\x86\xa9\x2a\xf3\x32\x5b\x72\x83\x3a\xec\xfc\x5b\x2a\x62\xff\xae\x72\x6a\xbe\x3d\x6e\x37\x74\x18\xbd\xab\x3d\x07\x7e\x89\x6d\x6c\xea\xce\x17\x4d\x28\x48\x7b\x64\x64\x43\xc7\xe2\x47\x7a\x86\xc9\x20\xfa\x8b\x57\xb1\x2b\x45\xba\xe4\x61\xdd\xce\xca\x92\x3d\xfe\x53\x9e\xd6\x80\xbc\x2b\x84\x99\x47\xc1\xca\x79\xa7\xa8\xff\xf9\xa0\xf1\x60\xa3\x32\x6b\xcf\xf9\x4d\x09\x51\xb0\xee\xc3\x40\x6f\x86\x6d\x77\x43\xed\xf1\x81\x19\x8d\x6c\xb2\x97\x0a\x6e\x59\x5d\x1e\xe5\x78\x82\x2a\x74\x59\x82\xd5\x47\x40\xf9\xcf\x47\x0c\xd6\xc0\xf7\xf0\x4c\x85\x71\xf8\xb0\xc2\xb2\x14\x36\x79\x58\xfb\x44\x54\xab\x08\x3b\xf5\xea\x58\xd9\xaa\xde\x19\xab\x6e\xc1\x76\xa0\xd8\xd5\xf0\xa5\x40\x46\x77\x03\xa5\xbd\xa3\xd6\x79\xfa\xca\x19\x9c\x2f\x4c\x8e\x08\x3c\x6f\xe4\x47\x81\xd7\x14\x81\x02\x8a\x18\x32\xd1\x16\x76\xf6\x37\xd5\xc3\x96\x14\xdb\xd3\xc0\xe0\xfc\xb5\x83\x84\x70\x45\x11\xd1\xae\x38\xf0\x4f\x61\xa2\x78\xc9\x54\x0b\x77\x51\x50\xfe\xaf\x8d\x3d\x2e\xe6\xb5\x26\x59\xad\xdc\x86\x99\x45\x4f\xdd\x89\x28\x7b\xf0\xc4\x35\x65\x11\xf6\x6e\x23\x50\x27\x4b\x49\x62\x67\x0f\x39\x82\x5d\x52\xed\xe4\x0d\xa0\x95\xdc\x85\xd7\x93\x7e\xd0\xe7\x7e\xbf\x75\x6e\x22\xb1\x96\x93\x6d\xd5\x78\x4d\x45\xf4\xde\xaf\x28\x2b\xc9\x2b\x0e\x5b\x95\x95\x99\x89\xe9\xc8\x47\x27\x75\x53\x55\x99\x77\x95\xfd\xd2\x96\x0e\xac\xdf\x52\x2a\x6b\x0f\x77\x26\x1b\x03\xb9\x8d\x63\xb0\x38\xf0\x31\x3f\xa4\x45\x83\xc5\xb5\x0f\xf0\x22\x94\x62\x37\xc6\x4a\xc4\x6e\x4b\xf3\x8f\xd3\xa1\x5d\x4a\xbb\x6b\x7b\xbc\x51\x06\x60\x58\xb8\xcb\xef\xd2\x59\x80\x5c\xf2\x16\xda\x54\xfc\x0f\x68\x3b\x09\xaf\x50\x49\x68\x55\x65\x2b\x7b\x06\x8b\xc8\xe7\x35\xed\x54\x77\x2d\x78\x42\xd1\x97\x20\xee\xb4\x14\x5b\x1c\xdf\xec\xeb\x0b\xe0\x16\x76\x33\x64\x9e\xb0\xcd\xc1\x74\x63\xd3\x9d\x40\xe5\xcd\x1b\x13\xd9\xff\xdc\x5c\x3b\xcc\xa2\x22\x0a\xa3\x5c\xa4\x1e\x9c\xbf\x98\xe2\x89\x7e\x5e\xe1\x03\xab\x23\x3c\xea\x45\xa1\xe1\x21\x26\xfe\xfe\x0d\x05\x10\xb9\xe1\x08\x30\x45\x56\xe6\x2e\xa2\xe1\x1f\x2f\x2b\xe7\x12\x9e\xb9\xe0\x29\x6e\x37\xcc\x4a\x67\xdb\xdd\x74\x35\xd9\xef\x3a\x5e\x5f\x7a\x94\x4e\x60\xdc\xcf\x27\x3b\x4a\x26\xf7\xde\x58\xa9\x85\x23\x25\x66\x89\xcd\xb1\x47\x40\x4e\x77\x94\x0e\x32\x54\xb5\xa5\xab\xe7\x2b\xbb\x51\xbe\x16\x3a\xd4\x11\xa0\x06\x27\x15\xec\xe0\xe4\x04\x3b\xf4\xd0\xf3\xed\xd8\x9a\x2e\x55\xce\x32\x3a\xf3\xe8\x82\xcb\xca\x01\xd0\x67\x00\x4b\xd1\xb2\xdb\x0f\x4d\xba\xf7\x1e\xc5\x68\x22\x12\xef\xab\x96\x91\xd3\x8b\x79\x6e\xde\x95\x1e\x9f\x31\x2e\x8e\x14\x33\xd3\x01\x3f\xdc\x03\xdd\x9c\x70\xfd\x9c\x3d\x44\x6b\x3c\xcb\x8d\x1e\x34\x63\x87\x03\xf3\x89\xe8\x77\x53\xf1\x9c\x8e\xab\x71\x54\xbe\x36\x1c\x15\xe9\x30\x87\x57\xa6\x40\xcc\x3c\x0e\x75\x3b\xf0\x0d\xed\x7b\xca\x10\xe4\xa3\x40\xf9\xb7\x7c\xd4\x40\xda\x38\xd8\x36\x71\x91\xf6\x6d\x31\xa8\x12\xa6\xd9\x43\x5a\xd4\x7f\x81\x8b\x50\xfc\xb9\x6b\xae\x46\xca\x6c\xd7\xda\x61\x4b\xb3\xf3\x3c\x64\xf2\xd4\x44\x06\xfb\x34\xd9\xa7\xc5\x26\x01\x2b\x44\x5a\x4e\xca\xa9\xe4\xa2\xb2\x94\x5b\x31\xa0\x36\x28\x83\xab\x05\xe7\x82\xe5\x29\xe9\xb6\xd7\x8b\xc2\x08\xea\x76\xae\xa3\xc2\x02\x52\xa2\x83\xdb\x20\xad\x71\xb0\x3d\x34\x7d\xf3\xf5\x28\x91\x62\x10\x39\xd4\x29\xed\xb5\x7b\x2a\xf8\x2c\x79\xbf\xaa\x72\x09\x9d\x10\xbf\x8c\x42\x3f\x18\x2b\x8b\x9b\x0f\xdc\xf9\xd2\x5f\xcb\x8c\x5f\x24\xac\xfa\xa3\x86\x94\x37\x9a\x94\x0f\xfa\x26\x11\x2f\xdd\x46\xf6\x8c\x62\x0a\x94\x4b\x79\xd4\x8d\x2c\x8b\x2f\x39\xc6\xf9\xdc\x9c\xcc\x66\x94\x55\xd2\xb6\x6a\x98\xae\x8a\xae\xa2\xa0\xf5\x6b\x04\xe0\x9d\x0f\xef\x4b\x3b\x34\x67\x18\xa4\x10\xf8\x93\xee\x98\x62\xd9\x94\x36\x7f\xb8\x5a\x31\xf8\xab\xfc\x8c\x71\x06\xed\x5b\xf7\x68\xb7\xef\x8d\xfd\x90\xe7\x21\x00\x7f\x44\xbd\x4f\xb3\x6f\xae\x10\xcd\x51\x6a\x42\x3a\x60\x68\xfb\xff\xd3\x2f\x50\xe3\x0b\x81\xe9\x4f\xfc\xe1\xfe\xcc\xdf\x07\x9e\x52\x8e\x36\x6f\xfe\xf7\x97\xff\xb0\x53\x17\xe6\xf7\x4d\xa7\xad\x46\x87\xde\xcc\xc2\x78\xc1\xe1\xa3\xf0\x9e\xa8\x91\xf8\xb5\xb2\xfc\x0b\xab\x6a\xda\x66\x6c\xe5\x8d\x20\x75\x12\x4b\x97\x2f\xd4\xd8\x75\x14\xf1\x60\x0a\x87\x22\xf2\x44\x1c\x6e\x60\xac\xe3\x6c\xfb\x89\x86\x5a\x67\x26\x09\x15\xa4\xe5\xad\xa0\xa6\x2c\xbd\x73\x5b\x1f\x9e\x59\x68\xaf\x46\x5d\x9b\x8f\x32\x0a\x9c\x4e\x2f\x09\xe1\x45\xb9\x39\xf8\xa8\xab\x39\x1b\xa3\xaa\x48\xe3\x07\xee\x46\x57\xde\x6e\xa7\x41\xe5\xb0\x5d\x64\x69\xb9\x14\x8b\x36\x9b\x13\x8c\x9f\xf7\x82\xf1\x4d\x42\x37\x64\x88\x3b\x14\xa3\x56\x07\x0f\xf4\xa9\x87\xe0\xf2\xe5\xdc\x69\x98\xeb\x47\x49\x01\x23\x61\xfe\xc0\x42\xa8\xa7\x07\xce\x17\xaa\x63\xfb\x72\x5a\x66\x89\x89\xa3\x7c\x38\xe5\x61\xe5\x67\x14\xdc\xe9\xb5\x40\xad\x5a\xaf\x03\x96\x18\x40\xba\x5c\x03\x53\xad\x4b\xaf\x44\xf6\xc5\xc9\x2d\xbd\x14\x01\x68\x6b\xb3\xff\xfe\xbf\x42\x2e\x50\xe7\xcd\xcc\xcd\xb9\x9d\xe8\xad\x8c\x93\x34\xe1\x5c\x44\x89\x93\xc9\x81\x81\x3c\x53\xd3\x4a\x90\x79\xef\xe9\xa8\x41\xeb\x75\x25\xaa\x31\x30\x86\xc2\xd0\x8b\xdb\x68\x07\x6d\x5f\x52\x0a\x5b\x4c\x14\x7c\x50\xf5\x89\x20\xaa\x27\xec\x69\x3a\x41\x90\xb5\x6f\x20\x85\x17\x3d\x0f\xfa\x73\x6a\x36\x2d\x90\xf7\xb7\x29\x59\x41\xdf\x63\xba\xe3\x7b\x7c\x97\xa9\x8e\xe7\xb7\x42\x0a\x8f\x7a\x16\xe8\x35\x66\x3a\x6a\x16\xeb\x37\x27\x8a\x5b\x2a\x9c\x86\x1c\x23\xc5\xd9\x53\x09\xd6\xfe\xd0\x15\x6e\x89\x59\x8a\xf2\x30\xad\x05\xfa\x0b\x3a\xd0\x5f\x50\x26\x89\xbd\x32\x4b\x48\x12\x62\x4f\x15\xa6\x38\x01\xac\x13\x3d\xdc\x40\x14\x8a\x66\xce\x79\xc9\xe5\xba\x9b\xca\xe1\x24\xb1\xc5\xfd\x54\xb0\x20\xca\xad\x8f\xfd\xf8\x4e\xd3\xfa\x6e\x2a\xb2\xc1\xb4\xc6\x49\xfe\x31\xa2\x07\x5b\x3b\x28\xd7\xef\xab\x28\xa9\xf8\x6d\xb5\xcf\xe5\xed\xc0\xcf\xfc\x8e\x05\xde\xb6\x62\x68\xa9\x38\xe8\x95\xa4\x42\xed\x2c\x79\x01\x93\xe0\xd7\xe3\x07\x7d\x63\x30\xc2\x98\x0c\x8f\x0c\x90\x41\x7e\xad\xf9\x94\x66\x88\xad\x2e\x9e\xbe\x8a\xa6\x73\xaa\xa1\x09\xfe\x6c\x7b\x29\x0a\xd7\x42\x0f\x0f\xc3\x3c\x0d\xa3\x4c\x7e\xad\x94\xe5\x43\x93\xac\x18\x98\x09\x2b\x25\x40\x69\x19\x00\x0b\x82\x3d\x77\xb5\x89\xfc\x12\xa7\x6b\x26\x86\x0c\xfa\x8b\x35\x83\x21\x91\xf8\x6f\xe8\xb2\x41\xaa\xe3\xc8\x94\x07\xf6\x42\xff\x0d\xf3\xfa\xef\xd6\x95\x6f\x65\x8d\x0d\x0c\x4d\x4e\xf0\x95\xc4\x6a\xbc\xa5\x2c\xc8\x9d\xc9\xa3\xc9\x59\x02\x16\xc7\x0e\xb0\xaf\x42\xb6\xae\xa9\x7e\x7a\x35\x51\x52\xed\x82\xd7\x83\xd2\xa5\xb8\xa6\x25\xf8\xae\xa9\x9d\x5c\x3e\x93\x3f\x93\x3f\xc3\x92\xee\x00\xc2\x71\x13\x8a\x2f\x94\x04\xe3\x72\xba\x04\x6c\x17\x0e\x1e\x9e\x11\xf3\x45\x20\x18\x8d\x91\xcd\xbc\x4d\x92\xb7\x1b\x80\x00\x03\x26\xff\x8f\x52\x37\x0d\x4f\xf0\x3e\x90\x91\x59\xe4\x35\x78\xa2\xce\xbd\x3f\xf4\x7c\x55\x71\x3c\xec\x33\x4a\x30\x44\x58\xea\x17\xc5\x16\x82\xda\x4f\x55\xed\xfa\x3e\x2a\x6c\x51\x1e\xa0\x3d\xc5\x3f\x05\xac\xa3\x64\x70\xfe\x80\xda\x45\xc0\x04\x64\x27\xd7\x10\x66\x84\xdf\xdd\x9a\x9f\xdf\xde\xbd\x0e\x1a\x83\xe3\x0c\xf8\xa0\xc9\x6c\x35\xc0\x18\x7e\xa4\x85\xf5\x93\xbc\x30\x49\x08\x72\xc5\x36\x1d\xed\xb3\xdb\x27\x9d\x74\xdc\x52\x9a\x74\xa7\xab\x0f\x20\xde\x23\x6e\xad\x3d\x04\xf1\x1a\x60\xe0\x1e\xc5\xfd\x11\x9c\x80\x6f\xe9\xd8\x23\x85\x4d\xba\x7b\x3d\xa1\x02\x68\x36\x29\xa7\xe9\x19\x22\x26\xf1\xa9\x2d\xa2\xd1\x2d\x27\x83\x0b\xc9\x55\xfe\x21\x45\xf8\x09\xab\x25\x6a\x1f\xf0\xf9\xda\x15\x42\x58\x70\x5d\xa6\xf0\x3b\x60\x95\x23\x8f\xfc\x46\xa0\x34\xce\xae\xab\x22\xe0\x18\xd6\x93\xb8\x00\xb5\x0e\x1c\x70\x8a\x54\x5a\x1f\x55\xed\x3b\xb6\x63\xc2\xd1\x7e\x51\x81\x8e\xba\x69\xbe\x9c\x86\x51\xcc\xdc\x41\x50\x7c\xbe\x57\x77\xa2\xad\x7e\x13\x47\xff\x65\x75\xb7\x40\x6d\xc3\xe6\x66\x19\x7e\xdd\x7c\x3e\xdd\x98\x6a\x98\x38\x4d\xfa\x79\x84\xd1\xa0\xf7\xab\xaf\x3e\xb5\x04\x05\x9f\x6f\x0d\xd3\x23\x11\xdb\x37\xa3\xc3\x75\x55\x89\x0c\x5f\x75\xdd\x94\x74\x64\x13\x56\xe9\xc6\xb4\x10\x13\x59\x77\x70\x56\x9f\x09\x54\x80\x4b\xe3\x96\xa2\xda\xee\xcc\x38\x9f\x9b\x6f\x97\x49\xcf\x0c\xa3\x38\x32\x59\x54\x20\x4a\x63\x11\x9e\x0c\xd4\x8a\xd4\x44\x42\x13\x86\x36\xcf\x1f\xf2\x70\xd4\x5d\xeb\x4a\xc4\x8f\x2d\x64\xd1\x96\xb8\xa1\xc0\x31\x0f\x76\x14\x2f\xe9\x9b\x78\x73\xb4\xfa\xde\xa3\x23\x8a\x9b\x08\x9c\x76\xf1\xbf\x04\x0a\xac\xb2\xa9\x3d\x44\xbf\x39\x56\xaa\xe4\xec\x58\xcc\xcd\x42\x3a\x8c\x44\x4a\xae\x41\x51\xd0\x24\x49\x5a\x26\xa1\xed\x4e\x53\x7e\xe1\x58\xbe\x1e\x4e\x0e\xb8\xa5\x80\xe0\xe9\x23\x20\x0b\x9c\xea\xc8\xbe\x5b\x8d\x32\xc8\x27\x23\x48\x43\x8a\x43\x9b\x7d\x09\x1e\xa3\xfa\x6a\xea\xa4\x12\xb1\x9e\x5b\x4d\xcd\x86\x74\x10\xa5\x14\x6e\x1d\x52\x56\xcd\x18\x5c\x68\x8c\x92\xc2\xf6\x33\x47\x56\x59\xe0\xa3\x61\x43\xf5\xbe\xef\x2a\x8b\xcf\x49\xe3\xa3\x43\xcf\xbb\x2a\x83\xb4\xba\x5c\x6b\xe5\xb0\x67\x38\x28\x13\xe7\x62\x2d\x8e\xf2\x01\x9f\xe0\x62\xd1\x4d\x9f\x8c\x2f\x34\x8a\xd4\xe4\x51\x92\xe6\xd3\x1e\x2d\xfa\x0e\xdd\x0d\x40\x0a\x37\xd4\x34\xe5\x1d\xa4\x6d\xfc\x0f\x6a\x3c\xc8\x59\x61\xd6\x52\xeb\x08\xdf\x4d\x5a\x5d\x3b\xdb\xa3\x0b\xcf\x1f\x6c\x2f\x65\x91\x81\xcd\xb7\x43\xb6\xf9\xa1\xc5\xf9\x06\xfa\xca\x8b\xed\x30\x2d\x93\xc2\x66\x84\x61\x61\x89\x5a\x85\x73\x3b\x83\x6c\x07\x44\xa0\x77\x1b\xa0\x26\xe1\xc0\x5a\x66\x8b\x3a\xe6\x82\x1b\x63\xdc\x9c\xc8\x0d\x16\x16\x17\xda\x2b\x26\x2e\xd1\x33\x5b\x70\x7d\x23\x5a\x76\xce\xfe\xa0\x5a\x6a\xac\x51\x3b\x81\xd7\x39\x30\x4b\x6c\xb2\x38\xb6\x0c\xb2\x05\x36\x18\xfd\x39\x7e\xdd\x80\xbb\x6f\xaf\x9a\x6c\x28\x95\x37\xcb\xf0\x04\x7e\xb0\xfc\xf1\xc4\x42\x7c\xba\x5d\xa4\x05\x13\x71\x71\xf8\x7d\x9f\xee\x0b\xbf\x56\x0a\xea\x66\x68\xb3\x28\x34\x49\xfe\x00\x7d\x25\xec\xa4\x7f\x3b\x56\x82\x7f\xd7\xc7\x35\x5e\x9c\x9e\x32\x30\x88\x1d\xfb\x67\xf7\xba\x1a\x0b\xdc\x0d\xbc\x1f\xd9\x0f\xeb\x80\x9a\x6a\x89\x62\x70\xfe\xed\xb1\x1e\x78\x55\xb7\x00\x6f\xfb\x9a\x4a\x4b\x42\x13\xf7\x4d\xc6\xea\x4a\x0c\xac\x53\xe0\xd7\x46\x5d\xf9\x41\x9a\x74\x8d\x80\x7a\x70\xc2\xb0\x64\x07\x5f\xf8\x61\xed\x20\x4a\xa0\x77\x29\x3a\xd3\xea\xc7\x80\x26\xfd\x4c\x05\xaf\xe7\x0f\xb6\xf3\x51\xe4\x4c\x64\xc4\x59\x50\x5b\x21\xfa\x8c\xe9\xeb\x51\x55\x82\x3b\xfb\xed\x77\x69\x33\xf0\x6b\xf5\x6d\xa3\x64\x25\x8d\x57\xec\xde\xea\x27\x5d\xe7\xd1\xf1\x7c\xf7\x80\x43\x8a\xb8\xb8\xab\xe3\xb9\x62\xbf\x49\x1b\x14\x69\xc2\xed\xb1\xe7\xc5\xef\x5a\x9f\x5c\xf3\xdd\x2c\x5a\x81\x39\x9f\xd7\xe6\xa8\xfe\x84\x8c\x6c\x1a\x6c\x97\x72\x6b\xab\xd5\x17\x0b\x4b\x51\x8b\xec\x89\xba\x8e\xcf\x19\xca\x51\x75\x50\xee\x69\x29\x13\x88\x5a\xc5\xe3\xd2\x81\xdd\x9d\x9d\xd5\x92\xd0\x39\x76\x7e\xea\xe7\xe6\xdb\x4b\x71\x34\x62\x78\x37\x9e\xce\x4d\xa4\x5e\x02\x6a\xa4\x05\x2b\xef\x25\xbd\xc6\x41\xd4\xed\xda\x84\x34\x0a\xb1\xca\xf6\xad\x7b\x09\x91\x17\x3e\x47\x77\x10\x01\xf0\x2a\x38\xa5\x02\xba\xfb\x2c\x0c\x40\x3a\xb2\xe1\xb4\xd2\xdb\xdc\x0e\xfc\xf9\x71\x52\x0d\xb7\x71\x7e\xc8\xe9\xe3\x1b\x8f\xa3\xc1\x5a\x1e\x85\x91\x58\x06\xe2\x07\xce\x6a\x4f\xd9\xb3\x4a\x85\xa7\x9f\xae\xd8\xcc\x31\xce\x9a\xe0\x9b\x9f\x85\xe2\xef\x45\x59\x5e\xec\xf1\xbb\x7f\x2f\x21\xcf\x9d\x9a\xf0\x2f\xc9\x11\xb6\x87\x90\xba\x6e\x0e\x57\x7d\x0c\xf1\x16\x9f\x04\xcc\xcc\xb6\xa3\x3c\x2f\xad\x26\x8a\xd3\x0e\x11\xd2\xb8\xf4\x2e\x87\x51\x12\x0d\xa3\x38\x56\xdc\x31\x76\x45\x14\x7d\xfa\x9d\x54\xdc\xa7\xdb\x6b\x36\x27\xd3\x13\x29\x91\xe8\x1b\x3b\x50\xef\x2f\x7f\x85\x53\x6c\x7c\x5e\x31\x1a\xde\x39\xe2\x95\x6f\x1f\x97\x47\xca\xcc\xf9\x0f\x62\xf4\x74\x02\xdf\x8e\x2f\x5c\x00\x58\xb2\xb9\x05\x66\x1b\xdb\xed\x2a\x81\xec\x85\xf0\xa8\x88\xbd\xdf\x52\x5d\xc7\x5d\x9d\x9d\x37\xe7\xe9\xf6\x28\xb6\xdd\xbe\x0c\x53\x1c\x39\x50\x11\xe6\xe8\x06\x60\x8b\x5e\x57\xa6\x14\xbd\xcc\x76\xab\x08\x0c\xdf\x4b\xd1\x49\xa0\xcf\x2a\x0a\x0a\x4a\x58\xbf\x9b\xb6\x3c\x04\xeb\x75\x25\x96\xff\xba\x12\x9d\x30\x49\x18\x49\xe7\x11\x1f\x98\x75\xfb\xf8\x42\x51\x33\x97\x9e\x31\xcf\x14\xbc\xab\x31\x9e\xfe\x8f\xf8\xdb\x7c\x11\x68\x36\x40\xf2\x4c\x4b\xe5\xd4\x27\x02\xcf\xa6\x3c\xa1\x64\x22\xbb\x76\x05\x82\x06\x0e\x9f\x74\x47\x57\x51\x1f\x05\xca\x6b\x77\xac\x19\x38\x94\x5a\x32\x08\x47\x99\xb5\x27\x26\x67\xb2\x5f\x8d\x0a\xc4\x17\xca\x83\x98\x86\x2a\x54\x4e\x57\x41\x52\xcb\xb6\xf2\xeb\xb1\xef\xed\x64\x59\xba\x5a\x63\xc6\x6f\x68\x66\xfc\x46\x03\x99\x7e\xa1\x9d\xa7\x31\x3d\xde\x59\xa7\xba\x40\x9f\x4a\x96\x44\xcb\x69\x72\xdd\x51\x68\xd9\xd5\xa8\x18\x44\xc9\x1e\xaf\xca\xfb\x31\x1e\x05\x1a\xa7\x67\xd5\x0a\x79\x25\xf0\xce\x8a\xdb\xb4\xc9\x45\xc9\x6a\xa7\x2c\x8d\x2c\x73\x33\x1a\xc5\x0e\x5b\xcb\xfa\xb5\xd8\x67\x22\x66\xdb\x00\xae\x1d\x64\x11\xa3\x3b\x54\xf6\xb2\xf0\x99\x46\x69\xf3\xf3\xda\x39\x42\x28\x47\x35\x10\xcd\xce\x3f\x52\x65\x49\x43\x13\x43\x07\x52\x7c\xab\x29\x11\x73\xa2\x94\x4e\x35\xee\xa6\x5a\xdc\xb1\x29\xf6\x7a\x12\xc8\x35\xad\x7b\x7c\x93\x4e\x0d\x4c\xef\x59\x96\x41\x7c\x2b\xaa\x3f\x22\xb0\x21\x1f\x7f\xbf\x30\xe1\x7d\xb8\x38\x43\x92\xf6\x49\x5f\x28\x62\x0e\xec\x3a\xef\x69\xa4\x8e\x84\x34\xb0\xe1\xf2\x52\x9a\x2e\xb7\x6a\x12\x0b\x2d\xaf\xbe\xd1\x34\xa0\x2f\x32\x13\x25\x6e\x3c\xe7\x4c\x07\xdd\xb6\x06\x8d\x1d\xe4\xa7\xeb\x4d\x50\x2d\xc7\x37\xf0\xa7\xdc\xa6\x76\x11\x68\x12\x11\x8e\xad\x15\xe4\xf3\x82\x17\xe3\xa9\xde\x40\xee\xf6\x84\x51\xe3\xe2\x42\xbb\x6b\x47\x36\xe9\x52\xeb\x5c\xa3\xea\xe7\xe6\xb8\xe6\x41\x8a\x85\x33\xf3\x1d\x25\x81\x17\xa6\xc3\xa5\x28\xb1\x88\x72\xc8\x08\xaf\x8d\xfd\x27\xfc\x1f\xb1\x37\xd1\xc2\xb9\xee\x6e\x27\x99\x93\xa2\x01\x52\x7d\x30\x84\x72\x4c\x43\xf8\xb5\xc2\xf9\xd8\xd8\x86\x45\x95\x92\xc6\xad\xba\x1c\x62\xf5\xce\x7c\x31\xb1\xe6\x9e\x9b\x6f\x5b\x58\x2b\x2d\xce\xf0\xd3\x84\x67\x2f\xbf\x5e\x7f\xd2\x4f\x90\x31\xdc\x37\x05\x73\x16\xf8\x41\xb5\x3a\xaa\x45\xd8\x9a\x30\x9f\x3c\xf4\x7c\x3b\x1f\xc5\x51\x41\xe3\xd7\x1d\x5a\x2d\xcf\x7e\xba\xee\x1b\xa3\xd3\x1d\xad\xb9\x90\x0e\x92\xbd\x7e\x8b\x1f\xd3\x69\xf5\x49\x3c\x25\xbe\xd0\xc3\x2e\xd0\x54\xd9\x11\x52\xe1\xea\xde\x69\x82\x1f\x17\x26\x5f\xc6\x6d\x45\x99\x83\x81\x10\xbf\x76\xbd\x86\x70\x60\x11\x45\xc5\xf7\xf1\xa4\x6a\x49\x4c\x9a\x71\x1f\x9e\x59\x68\x17\x03\x53\x90\xc4\x12\x93\xb2\xd0\xc9\x47\x53\xe9\xd8\xd8\xb3\xcd\x91\xdd\x01\xa9\xb4\xad\xc0\x7a\x23\x9b\x55\x7f\x95\x6e\x31\x6e\xd6\xfb\x63\x95\x60\xbc\xaf\x7e\xb4\x2c\xa2\x38\x2a\xd6\xf6\xe1\x1c\x42\x0b\xe0\xac\xf6\xd5\x80\xa6\x13\x1a\xdd\x5a\x04\xe7\x13\x04\x2f\x7c\x5b\x70\x9f\xf1\x43\x57\xea\x4e\x98\x3b\x5b\x26\x12\x41\x47\x36\xcb\xd3\xc4\xc4\xd3\x1e\x2d\x78\x41\x69\x0c\xdf\x4f\x41\x5d\x24\xda\xe9\x1d\xf1\x43\x37\x9a\x48\xed\x2c\xc1\xc5\x83\x24\x34\xfb\xf9\xd8\xe7\x8b\x46\x83\x2f\x9b\xf4\x8d\x4b\x1c\x10\x53\xc1\x8c\xc4\xd1\xfa\xb1\xee\xdf\x4d\x5a\x0c\x3f\x07\x47\xd7\x90\x8f\x48\x1c\x2b\x20\xa8\xf1\xeb\x89\x87\x5b\xed\x7f\x4b\x22\x49\x87\x67\x9a\xd1\xb6\x9e\xd2\xd6\xb5\xa6\x18\x40\x59\x9b\x85\xcc\x95\x5b\x2d\xda\x52\xd8\x92\x0b\xe8\xad\xa2\x7b\x72\x5a\xb5\xfa\x17\x7f\x61\x46\xf1\x70\xee\x6a\x53\xdb\xbb\xaa\x67\x96\x9a\x65\x2b\x42\x60\x88\xf3\xf7\x82\x9a\x99\x9e\xea\x0d\x5f\x6a\xe2\xff\x8e\xb2\x34\xb4\xb6\x5b\xf3\xf3\xdd\x50\xbc\x08\xef\x88\x38\x32\x49\x14\x2e\xa3\x9d\x0e\x7c\x26\x1c\x64\xd1\x09\xc5\xac\x45\x94\x77\x6a\x02\x10\x61\x8a\xf1\xfd\x54\xb5\x5a\x80\xb8\x40\xba\x28\xde\xfd\xd5\x22\x45\x50\x7c\x65\xfc\x64\xbd\x7d\x5d\x65\xcf\x2f\x2c\xce\x28\x73\x73\x44\x76\x99\x36\xab\x5e\x0d\xf4\x22\x6a\xa6\xd1\x1f\x28\xcf\x83\x0f\x94\x12\x8f\x4d\x56\xa2\x2c\x4d\x86\x36\x29\x4c\xcc\x16\xc3\xae\xbb\xe3\x1d\x72\xa1\xbc\x4c\x13\x82\x10\x1d\x77\x14\xe6\x1b\xba\xda\xdd\xfe\xcc\xa2\x27\x31\xb9\x69\x29\x91\xa3\x7a\x2b\x41\x6e\x6b\x55\xab\xe4\x66\xb5\x3e\x35\xd1\xdd\x52\xa5\x61\x30\x32\xb1\xd5\xad\xa8\xc0\x17\x62\xe7\x55\x76\x9a\xd9\x28\x1c\x4c\x29\xd3\x84\x4b\x63\xe5\x90\xb2\xab\x53\x53\x95\x7a\xc8\x25\x77\xc3\x1d\xa8\x7e\xe4\xc9\xfc\x7a\xa2\x55\xf2\xc2\xec\xa1\x76\x5a\x1d\x69\x55\xfd\xc7\x50\x4a\x25\xee\x07\xbf\x15\x74\xff\xa6\xd6\x7d\x62\x47\x7d\x20\x6e\xdf\x72\xd1\x12\xa8\x4e\x1e\x92\x1c\x4c\x4e\xa0\xd7\xca\xaf\x15\x96\x69\xc9\xda\x1e\x35\x75\x16\x65\xf6\x05\x53\x14\x7e\xdd\xa8\x4a\xd9\x8b\xb2\xa1\xe2\xad\x9f\x53\x90\x90\x73\xe3\xfb\xdd\x22\x7a\x99\x3a\x62\x4e\x02\xc4\x35\x70\xff\xbd\xee\xe5\x5c\x50\x4f\x24\xb3\x26\x6b\x79\x14\x10\x82\x2c\xbf\x6e\xb2\x13\x1b\x54\xd5\x4e\x6d\x5e\xcf\x62\xc2\x7c\xe1\xb0\xed\x6b\x69\x3e\x88\x06\x51\x0e\xfd\x5e\x86\x6f\xe2\x53\x08\x96\x53\x9e\x5c\xb1\x36\x4c\x2c\xc6\x87\x78\xdc\x1c\x2d\xf8\xa2\xc1\xea\x53\xf5\x35\x17\x67\x1a\x17\x93\xf4\x7a\xbb\xe9\xc8\x4e\x29\xdb\xa6\x8f\x54\x03\xe6\x9a\x9a\x63\x6c\xd4\x25\x93\xaa\xb3\xb5\x3a\xf6\x10\x85\x7e\xac\xba\xc2\x3f\x9e\x34\xc0\x5e\x5c\xf8\x22\x69\xb8\x0c\x97\x78\xc8\x2f\xc2\x3b\x2d\xa5\xc8\xe3\x0c\xdb\xc3\x2c\x1a\xa6\xc9\x5a\x4b\x0f\x16\x7d\x4b\x6f\xab\xe1\x84\x59\x68\x67\x76\xc5\x9a\x98\x93\x3d\x67\x47\xa4\xbc\x89\x26\x1a\x8e\x87\x9e\xaf\xd2\xd2\x24\xef\xa5\x19\x30\x57\x4e\x62\x5f\x27\xb6\x3b\xc7\xe4\xb3\x87\xda\x49\xfa\xcc\x74\xb5\xf2\x31\xd2\xf9\x2e\x9e\x04\x3e\x5b\x6b\xdd\x3f\xa2\xdb\xaa\x4b\x3d\xc9\xe3\x9c\x9f\x6f\x1b\xb2\xa9\x6d\x69\x41\xc8\x6a\xcd\x88\x10\xa1\xbe\xdb\x45\xf4\xff\x71\xf6\xa7\x31\x92\x9c\xe9\x7d\x20\xde\x9d\x59\xdd\x4d\x36\xbb\x79\x0c\x39\x63\x59\xc6\xdf\x4e\x49\x83\x3f\xb5\x5e\x2e\x61\xef\x02\x0b\x43\x58\x6c\xa4\xaa\x6a\xc4\x61\xed\xa8\x59\xa8\xee\x69\xca\xc4\x7e\xe0\x9b\x91\x6f\x65\x06\x2b\x32\x22\x19\x47\x15\x8b\xdf\xf6\x80\xb1\x30\x16\x0b\xaf\x0d\xaf\x85\x35\x60\xc8\x80\xac\xb5\xe5\x4b\xc7\xda\xf2\x21\x39\x4b\x9a\x11\x47\x23\x69\x66\x78\x0c\xc9\xe1\xdd\xf7\x51\x7d\xdf\x27\xab\x17\xf1\xfc\x9e\xe7\x7d\x9f\xac\x88\xde\x0f\x0b\x0c\x30\x91\xec\xca\x23\xde\x78\x8f\xe7\xf8\x1d\xc9\x23\x0a\x44\xcd\x46\x85\x62\xb1\x59\x7d\x8f\x93\x19\x73\x8a\x41\x1f\x68\x05\xf2\x4b\xba\xe7\x03\x79\x4a\xfe\xab\x29\x61\xb2\x87\xe5\x53\x05\xe5\x6a\xbc\x75\xa0\x5c\x85\x68\x8a\xaf\x6b\xe1\xd7\x73\x9d\x71\x19\xe7\xb6\xed\x6b\x40\x37\x15\xe6\x1e\xda\x0b\x48\x68\x8f\xbb\x89\xd8\x33\x5c\xc6\x45\x8e\x76\x4b\x43\x0a\x6e\xa9\x4a\x60\x31\x24\x2f\xd5\xdd\xbe\x5c\x76\x4b\x61\x25\xd9\xbf\x03\xad\x8e\x1d\xdd\x29\x48\xae\xc3\xf9\x5c\x55\x3a\x9c\xc7\x27\x3e\x51\x2e\xb2\xa8\x57\x92\xbe\x90\x02\x82\x4c\xc1\x45\x1e\x56\x58\xc9\xd7\xa2\x55\xeb\xbb\xf0\xe0\xb7\x7c\xa6\x64\xe2\x3e\xab\x6d\x5a\xaf\xbe\xda\x21\x9a\x69\x6b\x9a\x8b\xfe\x8d\x5f\x71\xde\x4f\xdb\xa7\xec\x8b\x07\x3a\xaf\x95\x6f\x14\x66\x4c\x04\x60\x27\xd8\xf2\x1f\x74\xac\x77\x45\x69\xf6\xa9\xad\x3f\xcd\x46\x26\xa1\xc7\x21\x05\x66\x1a\x26\xee\xa2\x05\x3e\x2a\xaa\xa7\x52\x07\x0e\x74\xf2\x11\xd1\x4b\x5a\x4a\xfd\x05\x69\xbd\x88\xb4\x68\x65\x99\xb4\x48\x5b\x4a\xeb\xfa\x0a\xe6\x21\xbf\x68\xf8\xf4\x83\x9d\xb4\x2c\x62\x5b\x20\xa3\x04\xc2\xf6\xaa\x92\xfe\xbf\xea\x90\x27\x59\xd9\x8b\x42\x33\xa2\x2d\xad\xb1\x1e\xe4\xcb\x89\x51\xdf\x92\x98\x41\x04\x78\x17\xe6\xc9\x15\x65\x71\x7d\x65\xaa\x14\x11\xe7\x69\xb2\xcb\xf7\x72\xdf\xd1\x4e\xca\x7f\x10\xe8\xda\x2e\x97\x43\x30\x2d\xff\x40\xad\xbd\xe3\x4d\x87\x41\x94\x40\x43\x8c\x44\x8c\xab\x07\x83\x10\xfe\xd7\x03\x6f\x9b\xbd\xe9\x76\xf9\x32\x11\x68\xf5\x22\x87\x8b\xbf\x81\xc9\xc7\x2f\x9a\xd0\x15\x79\x99\x8d\xe3\x12\xdb\x08\x40\x2d\x3f\x54\xda\x80\x3f\x0c\x3c\xf4\xc9\xc6\xd2\x7a\x15\x06\x66\x4b\x51\x33\x7d\x03\xf4\xb5\x72\xd4\x13\x45\x5f\x11\x4a\x6e\x39\xc1\xca\xb3\xb5\x7d\x94\xac\x2d\x0a\x9b\x91\x19\x3b\xfd\x76\x57\xb7\x76\x1a\xdf\x67\x6b\xb4\xd2\x2a\x8f\x22\xc0\x6f\xdf\x66\xdb\x85\xef\x3d\x48\xe1\x92\x5a\x9b\x3d\x13\x92\x86\x2a\x3d\x4f\xe5\xd7\x2f\x0b\xec\x5e\x6d\xb9\x1c\x7a\xa9\x33\xb6\x89\x2d\x32\x53\x20\xa4\xe7\xfe\xe7\x94\xcd\xc9\x57\x7d\xe8\x35\x4c\x8b\x14\x2a\x9a\xc8\xcd\x70\x1e\x32\x45\x89\x5f\x28\x14\x89\xcd\x0b\xd3\xab\x0e\x59\xdb\xdf\x4d\x21\xbe\x6c\xe3\x7e\xa3\xbb\x41\xcf\x1c\xed\x9d\x2b\x24\x58\xc2\xd7\x98\x5f\x78\xae\x58\x49\x5c\x1d\x57\xfb\xdc\x9a\x29\x42\xfa\x6c\x9f\xff\x0a\x4d\x9e\x36\xb4\xbf\xf6\x24\xc2\x3c\xe6\x6f\xe9\x92\x2c\x34\xf1\xf1\xf1\xff\x16\x13\x16\x95\xbe\x29\x43\xa3\xcc\x52\x80\x40\xef\xe3\x80\x28\xd0\xad\xe1\x86\x5c\xa2\x9f\x59\xd3\x5f\x2e\xd1\x3e\x13\x0f\x05\xbf\xc9\x7f\xaa\x88\x70\xb6\x4f\x68\x02\x0f\xfb\x61\x66\x21\xbf\x98\x32\x92\xec\x97\xe1\xb6\x88\x71\xa2\x0a\xfb\x97\x54\x5e\x7b\x8a\x7e\x21\x5f\xab\x88\x71\x90\x95\xa3\x91\x49\xb0\xf1\x60\x85\x33\x3b\x8b\x5f\x4c\x9d\xa7\xa1\xc9\xf6\x55\x4f\x03\x69\xdd\xb5\xe9\x0e\x58\x35\x53\x00\xcc\xba\xa3\xc4\x75\x18\x45\xe6\x50\x90\x0b\x0b\x07\x9d\x30\x9e\xd2\x2f\xc5\x2a\x17\x90\x50\x6b\x6e\xce\x79\xe0\x2b\x7a\xf1\x39\xe2\xed\x4a\xed\xb5\xe5\x2c\x5c\xbe\x54\x92\x29\x20\x7f\x29\xc5\x2a\xe0\xe7\xf9\xba\xb6\x8d\x56\x73\x3d\xb3\xab\x26\x8a\x95\x80\x3d\xf0\xff\x7c\xdd\xd0\x3c\x3d\xd0\x79\xd3\x8c\x97\x2d\x8b\xab\x89\xcc\xa8\x02\xfd\xe9\xcc\xa4\x5f\xa2\x7e\xf7\x8a\x57\xe4\xf7\x6d\x51\xb4\xb0\x11\xf8\xdc\x56\x78\xb3\x91\x2d\x4c\x1c\xb7\x15\xdb\x1c\x65\x1b\x69\xee\xaa\x81\xaf\x7b\x59\x12\xe0\x6c\xcd\x66\xbb\x34\xe1\xc1\x37\xe4\x36\x51\x3a\xc5\x5c\x78\xa6\xeb\xc3\xfd\x1b\xc8\xb8\xf1\x0c\x77\x6e\x34\x61\xd2\xcc\xb8\x28\x59\x84\xcb\x41\x98\x94\x77\x45\xad\x07\xbf\xb4\xd8\x49\xc7\x5c\xc1\x98\x17\x48\x42\x30\x85\x4f\x68\xf8\x9a\xe5\xa8\x70\x74\x7e\x11\xa5\xf6\x95\xc4\xe3\x0d\x81\xec\xc1\x4e\x68\x93\xc2\x7b\xaf\x88\x4f\x14\x3d\x20\x7e\xd1\xe4\x23\x69\x92\xa4\x8c\x8a\x48\xf2\x0e\xb4\xe9\xcf\x2b\xf4\x6d\x95\x47\x4f\xa5\xdd\xaf\xbe\xda\x79\xee\x2f\xd2\xdd\x20\x6e\x62\x35\x21\x04\x04\x5b\x44\x76\x93\x60\xb3\xca\xc2\xd8\xaf\x51\x05\x6e\xad\x2e\xc5\x2d\xd2\xe1\x23\xb4\xb9\x30\x7e\x89\xe5\x2a\x53\x95\x96\x8a\xcc\x61\x1a\x32\x94\x36\x77\x53\xbe\xcd\xdd\xc2\x89\xd7\xf8\x06\xde\xd2\xe5\x15\x73\x73\x82\xd6\x9c\xc2\x2c\x7f\x88\x34\x9e\x79\xb5\xc8\xb0\x98\x00\x15\x78\x27\xd3\x6b\x98\xcd\x28\x5a\x7c\x65\xa3\xf5\xcb\xf3\x6e\x73\x68\x7d\xfb\x9b\xae\x43\x41\xcb\x0c\xef\xc6\x4c\x46\x98\xb8\xaf\xab\x22\x72\xd0\x3f\xb8\xab\xac\xab\x79\xb1\x49\x12\xdb\x7f\xa4\xba\x19\x2e\xb7\xe3\xd7\x60\x62\x72\xef\x10\x33\xf3\x1a\xdf\x02\xbf\xa2\x12\x09\x7b\x2f\x05\x9e\x20\x04\x18\xa0\x63\xfc\x2e\xbe\x74\x50\x3e\x4b\x15\x43\x0a\x1b\x0e\x93\xe8\xf5\xd2\xee\x9e\x2a\x69\xd3\xa0\xa0\x55\x82\xda\x0d\xcb\xc0\x6b\x8e\x20\x5b\x65\x22\x65\x81\x04\xe3\xc3\xc0\x27\xd5\x1e\x31\x5c\x1f\xdb\x6c\xc6\xd3\xa4\x8e\x6a\xb1\x4c\x80\x89\x30\x42\x0f\x94\xdd\xf4\xa6\x6a\xed\x7a\xb3\xb6\x19\xef\x2f\x80\x12\x99\x58\xc9\xd0\x3d\x68\x8f\x19\xfe\xa3\x29\x1f\x83\xc8\x3e\x3f\x53\x3d\x5a\x04\xaa\x1b\xca\xae\xe7\x1d\x15\xa1\xfc\x1b\x3c\x72\x0c\xe5\x9f\x07\xdb\xaa\x4d\x55\xae\x78\x78\x76\x71\x8f\xf2\xe0\xc3\xf9\x38\x75\x14\xb0\xd2\x2e\x3f\x2d\x7c\x2e\x08\x60\x52\x08\x6c\x39\x25\x00\x92\x64\xdf\x3a\xe2\x42\xed\x2c\x0a\x87\x12\x09\x21\x2e\x3d\x37\xf1\x01\xeb\xb9\xc0\x47\x5a\xb2\xf9\x7a\x8c\xcc\xb6\xcd\xd7\x1f\x91\x71\xd4\x5b\x37\x49\x3e\xe3\xc7\xec\x5c\xa0\x64\x60\xf0\x0d\x72\xad\x24\x61\xce\x29\xa8\x53\xcf\x24\x6f\xbc\x5e\xa6\x05\xcb\xce\x49\x94\x46\xdf\x88\x12\xe6\x1d\xbe\x61\xd1\x8f\xf2\xb5\xca\x41\x19\xb7\x7d\xca\x74\x0f\x58\x35\xad\xef\x26\x07\x9b\x52\x19\x4f\x57\xed\x6e\x2f\xf7\xf6\xfd\xa0\x5a\x7c\xac\x5b\x11\xa8\x66\xe1\x51\xec\x16\x80\x38\x1e\xc5\x06\xc1\x2f\x26\xbe\xe6\xf3\xfd\x26\x23\xbf\x35\x13\x7b\x3a\x5a\x13\x96\xaa\x4e\x99\x22\x83\xac\xd5\x69\x12\xc6\x7b\xda\xa1\xfc\x3d\xc5\x0e\x5b\x4f\xcb\x2c\xb7\xf1\x32\x1d\xa9\x90\x6c\xb8\xa4\x44\x3d\x3d\x5c\xb9\x8a\x04\x7b\xf0\xf0\x17\xf3\x9b\x33\x13\x25\x0f\xfd\xa1\x2a\x5b\x33\x61\x98\xff\x4a\x9d\xf8\x99\x19\x5b\xb0\xf1\x90\xf7\x7c\x4c\xb7\x82\xc3\x96\x75\xe2\xb1\x29\x7a\xc6\x18\xf0\xad\x2d\x65\xef\xff\x43\x5a\x83\x62\x7f\xde\xa0\xa8\x1a\x47\x23\xeb\x95\xfd\x9a\xf4\x6b\x1b\xf2\xbf\x9e\xc9\xb6\x93\x7f\x4f\x4f\xa1\xc9\x94\xaf\x83\x19\xdb\xa2\x88\x14\xf0\x87\x77\x40\x7e\xa1\x04\x4d\xa2\x41\x92\x66\x76\x57\x35\x47\x44\x35\xb2\x3a\x05\x44\x34\x52\x95\x69\xe1\xa8\x82\xd8\xf9\xac\x52\xf5\xba\x3b\xf1\xdd\xb1\x51\x94\xc7\xd6\x90\xdc\x53\xf5\x07\xd2\xf5\x6d\x29\x07\x53\xc5\xdc\xb0\x36\x6f\xab\xfa\x02\x04\xf7\x10\xe3\x1f\xc3\x58\xcb\x1c\x74\xcf\x38\x8e\x46\x23\x9b\xcd\xd0\x63\x75\xc1\x9e\x8a\xaf\x94\x8b\xd6\x8e\xae\xc7\x3a\x1d\x6b\xc0\x74\x94\x9c\xbf\xe3\x34\x39\x8f\x49\x8f\xd6\xc1\xff\xa9\xa0\xb3\xda\xfc\x76\x34\xd6\xb2\x1e\xe7\xb4\x98\xfa\x0e\x1c\x53\xf4\x3b\xfe\x97\xbf\xdc\x55\xea\xe5\x17\x14\xd9\xf7\xff\x07\xf1\x19\x7c\xcb\xbb\x9a\x76\xfa\x23\x15\xb5\x8f\xcc\x8a\xcd\xf2\xc7\x94\x3e\x02\xb5\xdc\xf0\x11\xdf\xa7\x05\x89\x72\x0a\x03\xdc\x70\xbc\x3c\xc0\x66\x24\x4d\x08\x9f\xf4\x7c\x84\xed\x85\xc5\x1e\x14\x8f\xfb\x02\x0e\x11\x96\x95\x05\xc2\xc1\x69\xcc\x7a\x7f\xb8\x33\xc1\xf6\x06\x15\x59\xa9\x67\xe3\xb4\x4a\xea\xd6\xa2\xbe\x9d\xf1\x9e\x8a\x6c\xf7\xaf\x1d\x31\xb1\x60\xe0\x08\x8a\x4d\xe1\x8a\x2a\x87\x93\xbf\x71\xf5\x4f\x38\x6d\xee\xea\xd6\x58\x5d\xd1\x78\x61\xa1\x93\x17\x59\x19\x16\x65\xc6\xf8\x41\x84\x15\x47\x54\x47\xf8\x88\xb6\x4e\x5d\x8b\x8a\x90\xca\x66\xde\x4c\xff\x0c\x1d\xf9\x22\x49\xf7\x84\x4f\xfc\x09\x96\xd4\xaa\x11\xc5\xf9\x45\x03\xc2\xb3\x63\x8a\xc2\x90\xea\xaa\x52\x59\x47\x78\xc9\xd7\x2a\xa7\xcf\x4c\x94\xdb\x7c\xb7\x52\x57\xc2\xb1\x8f\xd3\xf3\x9e\x0a\xde\x3f\x0f\x94\xea\xd2\xce\x2e\x3d\x24\x6c\xfa\xec\x58\x09\x74\xc2\xa6\xe2\x54\xc5\x69\x91\xab\xa4\xe3\xbe\x4a\x3a\xee\x37\xf5\xe5\x87\x65\xd2\x77\x39\x3f\xa6\xcc\x7d\x4a\x88\xf8\x5a\xa5\xc0\xf6\x8d\x71\x9a\x15\x9c\x19\xa2\xde\x7a\x5b\x3b\x91\x81\xdf\xc4\x26\x8b\x81\x2a\x71\x9e\x6e\x0a\xc7\xfb\xd1\x20\x2a\x44\x4a\xda\x85\x81\xae\x3a\x74\xa1\x36\xca\x2f\x1e\xa0\x1a\x45\x61\xa6\xc8\x8a\x3b\x95\x62\xea\xce\x0d\x0f\xbc\x0f\x6d\x1c\x97\xb1\xc9\x5a\x53\x3a\xa3\xf8\x55\x22\x3a\xda\xd4\x4e\x1e\x47\x03\x0e\xdb\x1d\x35\xc8\xd3\x84\x9a\x20\xaf\xb9\xcd\x56\xa3\x10\x3b\x88\xa8\x60\xb7\x9c\x3a\xee\xaf\x2b\x41\xbf\x7a\x26\xb3\x34\xdb\x29\xc8\x0d\x02\x5d\x55\x2c\xcc\xeb\x4a\x82\xfa\xef\x4f\x94\x1a\xe7\xb5\xa6\x53\xf7\x4d\x1b\xc7\x24\x21\x56\xfd\x64\xf1\x09\xa3\xbb\x14\x07\x31\xc5\xa6\x5d\xb3\x16\x7e\xeb\x0f\x93\x59\xdc\xfe\x03\xab\xec\x2c\x33\x7d\xee\x82\x61\xb7\xc3\xb4\xe6\xeb\x26\x84\xc3\xd0\x8c\xc7\xeb\x48\x4e\x51\x5e\xc0\xea\xc7\x31\x08\x9d\x72\x04\x71\xda\x81\xa8\x17\xc5\x71\x94\x26\x4f\x6b\x9c\x0c\xcd\x77\x29\xa8\x54\xe3\xe8\x92\xa3\x6a\xee\x0b\x77\xae\x0a\x42\x71\x2e\x5f\x09\x94\x91\xc9\x3b\x00\x02\xb0\x63\x38\x9d\x65\xe2\x1e\x4e\xc3\x83\xda\xdf\x4d\x25\x8d\x72\x59\x31\xe1\x2e\x63\xe5\xb1\xba\x1c\x8e\x04\xd7\xa4\xfc\xf6\x37\xf9\x66\x2e\x2a\x37\xe0\xdb\x38\x04\x90\xe0\xfd\x09\x98\x8c\xf8\x89\x57\xa9\x35\x27\xd9\x84\x52\x19\xbe\xdc\xa4\xbe\x61\x93\x42\xc8\x11\xa8\x78\x82\xc2\xc6\xd7\x4e\x58\x36\x5f\x1f\x8d\x4d\x31\xb4\x52\x53\x75\x40\x47\xe5\x8e\xe3\xa9\xbb\x85\x8d\xed\x20\x33\x66\xb9\xed\xf7\xde\x07\x8a\xf4\x76\x43\x49\xa4\xd6\x9b\xf7\x07\x0e\x74\xd6\xd2\x5e\x8f\x71\x28\x18\xeb\x76\xd7\x43\x9d\xda\x35\xf8\xee\xc2\x42\x27\xb3\xb9\x48\x65\x61\x37\x66\x38\x16\xbf\x50\x5b\xd6\x6b\x69\x0c\xb7\x4e\x31\x73\x68\x39\x3d\x14\xd6\xff\xc6\xf4\x7c\xaf\xb1\x5c\x1d\xa7\xe1\x8a\xec\x5f\xbc\x1d\x06\xca\x4e\xbd\xbe\xe8\xaa\x2c\x6a\x14\xbd\x21\xef\x41\xdc\xfb\x25\x7d\x29\x5f\x7b\xe1\x65\x02\x28\x46\x79\xd1\x56\x16\x19\x17\x55\xcd\x64\x46\xf1\x9e\xee\x4e\x9e\x12\x60\xa9\x49\x88\x4a\xb5\xce\xcb\x92\x75\x73\xe8\xd9\x88\x86\x8e\x2f\xa5\x02\x6b\x2b\x3b\xa1\xa8\x7b\xf9\x6c\xb1\xf1\xbc\x19\x5a\x93\x41\xcc\xd0\xe3\xcd\x4f\x22\x11\xe0\x17\x13\x65\xcc\xf7\x66\x21\x70\x60\x66\x60\x63\x16\x3a\xe5\x39\xb7\xeb\xce\x74\x7d\x0f\xf0\x93\x46\xc4\x5c\x26\x22\x15\x40\xbc\x31\xb5\x02\xa3\x71\x6f\xa2\xa4\x9b\x6f\x54\xc9\x1e\xbe\xbe\x3f\x8a\x12\xd2\x2b\x26\x8a\x9d\x8b\x66\x56\x9e\x81\x6c\x0a\x8e\xf8\x33\x35\x3f\x68\x30\xc8\xf6\x6e\x34\x40\xe4\xc2\x61\x14\xfb\xfe\x8e\x33\x22\x70\x76\x15\xe7\x6a\x3d\xb0\x6a\x65\xad\x4b\x45\x86\xc3\xf8\x40\x87\xf4\xf5\xb8\x70\x2d\xa2\x62\xd1\xd6\x06\xe8\xc4\x1b\xb5\xb6\x61\x15\x83\xa4\x7d\xc3\x1f\x8a\x85\x7f\x59\x69\x5b\x90\xbe\xac\x83\x40\x14\xc3\x32\x8f\x4c\x2e\xd4\x68\xad\xbb\x27\xb2\xff\x4d\x25\x28\x9b\xf4\xd3\x2c\x67\xad\x47\x65\xa6\x36\xef\x0a\x57\xdb\xfb\x84\x2f\x1e\xe8\xe4\x65\x2f\xcd\xfa\x51\x62\x9c\x6e\x0a\xb6\x38\xf0\x46\x1c\xcd\xb0\xfa\x14\x1c\x34\x17\x5c\xe3\xcf\x0c\xa2\x31\xa6\x3b\xb3\xd9\x14\x42\xe0\xbc\x6e\x5c\x7e\x59\xdb\xbd\x5e\x7d\xb5\xd3\x33\xbd\xc8\xe9\x94\x22\xeb\x3d\xae\xeb\x09\xc7\x5d\xb6\x14\xc6\xa6\xec\x43\xdb\x5e\x1c\x8f\x55\x66\xf2\xb9\xca\xcc\x87\x26\x5e\xad\x9e\x5c\xb5\x9d\x3b\x21\x51\x47\xb7\xfe\xc1\x64\x9b\xfb\xf1\xcb\xf3\x87\x3a\xbf\xb0\xa7\x9a\xa2\x0e\x5d\xe3\x54\x78\x37\x95\x8e\xca\x29\x84\xb6\x42\x90\x6c\x39\xc3\xaa\x33\x13\xb5\x6b\xfd\xc9\x44\x31\x33\x4f\xd5\x50\x19\x73\x73\x9d\x41\x66\xd6\xdb\xde\x52\xfe\x94\xea\x42\xdd\x0b\x7c\xc9\xda\xb7\xd4\xc3\x34\x2f\xe2\x48\xf0\x9d\x20\x9b\xa2\xe2\xc9\xd7\x0d\xdc\x86\xa5\xce\x38\x4b\x07\x99\xd4\x2f\x5d\xa0\xe1\x67\xbc\xca\x4e\xbe\xf1\x8b\x87\xda\x1e\x4b\x81\x74\x0d\xad\x25\xf6\x84\xc7\xb1\xb6\x7f\x43\x31\x9d\x97\x97\xe1\xda\x8e\x64\x7a\x17\x38\x9c\xa8\xc0\x42\x32\xc9\x95\x00\x5d\x15\xf3\xb1\xae\x4a\xaa\x51\x45\x77\x78\x9d\x45\x51\xe9\xbc\x87\x6a\x10\xaa\x33\x8f\xd6\x00\xe9\xd5\x0c\xef\xa5\x69\xb5\xc3\x56\x0f\x03\xbf\xf2\x6a\xa0\x8c\xec\xde\xd3\xa2\xb4\x0e\x0f\x3f\x8a\x62\x93\x30\x0e\x0b\x15\x28\xa8\x50\x0a\xe5\x43\x25\x3a\xb7\x3d\x70\x83\x05\xa0\x97\x66\x71\x9c\x5e\xfe\xca\x86\x3b\x5a\x2f\x7f\xa5\xdb\xb0\x8e\xa2\x84\xc6\xc7\xe3\xd4\x45\x9e\xcf\xa3\x1d\xcf\x37\xe9\xe4\xf5\xec\x30\x4a\xfa\x6d\x9f\xa0\x21\xec\xc1\xee\x7b\x61\xe2\x49\xb4\xa7\x6b\x65\x67\xb8\x97\x94\x7d\xe7\x1d\x23\x32\xf1\x1e\x26\x5f\xb7\xbf\x9d\x9b\xeb\x8c\xca\xb8\x88\xc8\xde\xaa\x3a\x04\x64\xce\xb5\x9c\x6b\xb7\x16\x0c\x1f\x59\xd3\x4f\xd7\xc0\x64\x90\x70\xbb\xfa\x7d\x1c\x80\x6a\x38\xcb\xe7\x38\xb5\xd1\x37\xf9\xce\x64\xaf\x0b\xb0\xbf\x4e\xe5\x2f\x27\xee\xe7\x95\x10\x21\x00\x8f\x1c\xf5\x81\x32\x8a\x7a\x55\x81\xef\xc3\x38\x1a\xf5\x6c\xff\x11\x7a\xe8\x4a\xc8\xf9\x95\xe9\x1a\x24\x02\x41\x76\xae\x13\x2c\x3e\x1e\x3a\x22\xa8\x7f\x85\xba\x84\x03\x56\x3b\x99\xaf\xab\xd8\x22\xf9\xa3\x9b\x88\x3a\x61\x6a\xe0\x06\xb4\xc4\xa1\xe0\xa7\xf4\x76\xbe\xae\x81\x2f\x08\x35\x13\x25\x45\x15\x0f\x38\x81\x4d\x11\xc4\x68\x29\x55\xcf\xfd\x8a\xc1\x9b\x60\x7f\x43\x4b\x05\xad\x39\xbe\x56\xe9\xe0\x6a\x5a\xd8\x0c\x16\x93\x88\xf3\x81\x1b\x91\x0a\x17\xdd\x3b\xff\x03\x65\xff\x12\x79\xd3\x4f\x97\x90\x9c\x36\x47\x29\x84\xc9\xc1\xdb\x8f\xf2\x30\x8b\x46\xd5\x31\x20\xb6\x2a\x58\xc5\x0f\x54\x3a\xfe\x40\x71\x18\x46\x51\x82\x4a\x14\x80\x32\x7f\xa8\x40\x33\x7f\x38\xd1\xee\x46\x61\x35\x0c\xab\x16\xe4\x4b\xac\x73\xa6\x19\x38\x4b\xd7\x6a\xf8\xc5\xd2\x95\xa6\x24\xff\x99\x42\xd2\xaf\x30\xf3\xc5\x4d\x00\xaf\x52\xdd\x68\x1e\x9b\xdb\x6a\xfc\x43\x00\x59\xb0\xdb\xa2\x52\xef\x0c\x51\xb5\x33\x9a\x2a\x46\xad\xe7\x85\x05\xd1\x66\x8a\x86\xab\x70\x25\x6a\x10\xd2\xb5\x04\xac\x10\x6d\x69\x25\xf5\x4c\x9a\xa3\xc8\xac\xce\x05\x9a\xb8\xc7\x93\x54\x1a\x28\xfe\x26\xe7\x17\x0f\xb5\x14\x01\xf9\x4f\x69\x16\xf0\xb5\xe2\xde\x03\x53\x6f\xb9\x67\x2a\xa0\x6a\x55\x42\xd9\x7c\x28\xda\x65\x6c\x32\x43\x3e\x13\x2d\x5f\xfa\xb8\xaf\x5b\x2d\xf7\x83\x29\xdd\x9b\x12\xad\xa9\x6a\x24\x98\xc4\x4d\xb7\x28\x84\xee\xc7\x7c\xf9\xe9\x79\x3e\xc8\xa7\xbc\x64\x45\xa6\x76\x7b\x30\x3e\x37\xd7\x89\xa3\x65\x2f\x06\x05\x8c\xc9\x3b\x81\x87\xb9\xbc\x53\x37\x20\x7e\xe9\x60\x67\x39\x1a\x94\x99\x44\x66\xcd\xa8\x03\x07\xc0\x96\xd2\x8c\x82\xbe\x5c\xa5\xd3\x89\xaf\x1b\x5a\x26\x8b\x9d\x34\x5b\xb1\x23\x32\x3c\xc0\x96\x76\x4c\xd7\xf5\xc1\x9a\xc6\xc6\x7c\x43\xf5\x4a\xc7\xb1\x59\xb7\xfd\x47\xab\xcf\x46\xb3\xf3\x0f\x26\x3a\x23\xa4\x25\x8a\x93\xaf\x0d\x2f\x0a\x04\xf6\xef\x07\x5e\xc2\xe2\x92\x32\xe7\xc3\x4e\xcc\x2c\x11\x4a\x46\x25\x3d\xaf\x7e\x17\x0a\x4b\xad\x5a\xa4\x4b\x64\x8d\x68\xec\x23\x5d\x14\x72\xb6\x54\x51\x67\x6b\xf2\xb3\x0f\x99\x16\x61\x3a\x1a\xdb\x22\x72\x65\x35\xc9\x10\xe9\xe6\x25\x45\xdc\x1e\x69\x1c\x9e\x7d\xa1\x63\x7a\x04\x50\x8a\x5b\xfa\x78\x3d\xaf\xb0\xda\x75\x43\xb2\xf9\x43\x9d\xb5\x61\x1a\x23\xb8\x77\x40\xfc\xea\x81\xa2\xf4\x79\x05\x7d\x47\x54\x06\x3f\x50\xd1\xfd\x8e\xae\x1c\xce\xaf\xd9\xb5\x28\x1f\xb2\x49\x2d\x92\x65\x30\x15\x11\x94\xa1\xce\x83\x1d\xee\x3d\x8d\x07\xbe\xae\x05\xe4\xc6\x06\x16\x03\x3e\xcb\x85\xf6\xa9\x78\x90\x4f\x6d\x75\xb0\x6d\xc0\xcc\x39\x36\x45\x90\xa4\x8f\xc7\xb2\xfb\x9d\x29\xa8\x42\x64\xb3\xc7\x95\xdd\xe1\x31\xcd\xed\x9c\x41\x36\xe3\x2c\x44\x96\x66\x39\x0a\x7c\xa4\xab\xe5\xf7\xf9\xfc\x12\xad\x20\x05\x50\xbb\x85\x33\x4b\x4a\xb2\x2d\x27\x23\xb7\x39\x25\xb2\x10\x78\x7f\x95\x13\x8a\x8b\x75\x51\xc9\x05\xee\xdd\x98\xf2\x65\xf5\x22\x90\xe3\x2c\x2d\x2c\x95\xd0\xb0\xf3\x22\xc3\xfc\x42\x3b\xbe\x7f\xa1\xca\x06\x23\x13\x47\x83\xc4\x24\xc5\x6e\xfa\x99\x22\x94\xe0\x01\xdf\x47\x34\xaa\xe3\x9f\xd1\x50\xe3\x11\xb1\xb0\x3e\x32\x63\x88\x24\xf2\x1f\x29\xdc\x74\x99\xf4\x6d\xb6\xbf\xf5\x4b\x2f\x8b\x91\xe1\xc4\x5b\x5c\xfc\x5b\x6c\xe6\x1a\xa1\x25\x32\xbf\xd5\xea\xc1\xc3\xb9\xce\x5b\x30\x8a\xe3\x47\x27\x4a\x3e\x0a\x5d\x14\x6d\xbd\xeb\x18\x17\xd5\xd0\xe0\x0b\x2f\x07\xad\x6f\x7f\x93\xa3\x87\x4d\x6d\xda\xfc\x13\x4c\x01\x61\x75\xf9\x69\xb3\x2e\x88\x70\x34\xc2\x58\xcf\x9d\x5f\x34\xe1\x40\x7e\xe6\x9b\x7f\x73\xf1\x9b\xdf\x38\xb0\xc7\x57\x2c\xd9\x07\x09\x05\x9d\x1f\x04\x4a\x15\xe7\x02\xed\x45\xe8\x81\x3c\xae\xac\xd6\x50\xaa\x47\x31\xe9\x29\x12\xa7\x17\x90\x76\x93\x06\x48\x15\xb3\x66\xc4\x62\xf2\xab\xfe\xbc\xf6\x51\x3b\xaf\x90\x79\x7d\xbb\x6a\xe3\x74\x1c\x25\x83\x19\xf5\xab\x8e\x62\x5e\xf3\x0b\xdd\x4b\xb9\x84\xa2\x9c\xb0\xa9\x1f\xc6\xeb\x5d\xb3\x71\xcc\xee\x7f\x18\xf6\xbd\x5d\xc5\x94\xbd\x35\x21\x4f\x29\x77\xd3\x2f\x1e\x70\xd7\x7e\x2d\x87\xc3\x6c\x3d\x8f\xd1\xe2\x79\xc5\x49\x1f\x56\x7f\x2b\xca\x87\x9e\xd7\xf9\x23\x5d\x6d\xfe\x91\x02\x22\x0d\xd3\x32\x8f\x92\xc1\x6e\x4c\x13\xf1\xa5\xf4\x58\x59\xa4\x7d\x0a\x14\x24\x66\x47\x1f\x62\x36\x60\xfa\xed\xc6\x02\xc6\xf7\x5e\x57\xbe\x93\x2b\xf6\x71\x55\x86\xbf\x48\xed\x04\x17\x04\x0b\x34\x7f\xfe\x2f\xa1\xd7\x83\x0d\x6f\xf7\x46\xf5\xfc\x9c\x20\x63\xb5\x7a\x50\xf3\x68\x75\x7d\x9c\xf1\x1c\xbe\x50\x54\x2d\xa6\x15\x4a\xab\xf1\xc7\xbc\xc6\x92\xc7\xf4\xbd\x1a\x28\x1b\xa8\x3b\x13\x1f\x28\x82\x8a\x8c\x07\xb6\xaf\x76\xc2\xbc\xfa\x6a\x15\xcd\x0d\xd7\x08\x76\xed\x44\x69\xe0\x82\xc8\xd7\x0f\x95\xe3\x15\x18\xab\x42\xab\x3e\x14\xd2\xda\x80\xdc\x4e\x0d\x03\xc4\x71\x03\x37\x79\x2d\xf3\x2b\x65\xfa\x3c\x2a\xf3\x61\x96\xa6\x23\x6c\x59\xf8\xc4\x23\xfa\xe3\x8f\x28\x49\x0f\x9b\x87\x66\xec\x54\xb3\x5d\xee\xa4\xac\xb7\x5c\x1a\x1e\xdb\x55\x9b\x71\x51\x53\x7b\x7e\x4b\x48\xe8\x88\x38\xe9\xaa\xcd\x8a\xf5\x5d\xfe\xd4\x82\xbd\x35\xce\x00\x56\x4e\x01\x14\xe1\xa8\x92\x97\x61\x0d\x16\x01\x68\x37\x54\x0e\xc6\x69\x99\xb5\x7d\x43\x8f\x21\x72\x20\x5e\xde\xa6\x6d\x1e\x6b\xfe\xc4\x54\xf3\x28\xe9\xa7\x50\xf5\x93\x82\xba\x12\x04\x04\x9e\x4b\xac\xdc\x7d\x10\xfa\xf2\xc1\x85\x96\x9a\x52\x90\x51\xe2\x6b\xd7\x53\x35\xc9\x3a\xe4\x89\x1d\x16\x0f\x00\x2f\xe4\x78\x58\x36\x74\x9c\x2f\x3d\xd9\xf5\x1b\xd5\x3d\x45\x67\x3d\xe5\x71\x17\x76\x64\x22\x80\x78\xb1\x87\x3d\xb2\xe1\x19\xfc\x9f\x2a\xe0\xd2\x69\xdc\x34\x26\x0d\xc4\x78\xb7\x2e\xab\xbe\x40\x9e\x96\xc5\xd0\x8c\x50\x1e\xc0\xf6\x01\x55\x31\x00\xf6\x58\x36\x4a\x06\xb0\xde\x9f\x79\xa1\x0a\x8f\xb7\x89\x97\x5d\x52\xe2\x65\x97\x26\x53\xf8\x38\x42\x9b\x2e\xcd\x7a\xac\xa3\xe2\xfa\x3f\xa1\xe0\x3e\x62\x24\x2d\x27\x14\x4b\xf7\xf0\x8b\x1a\x28\x6c\x61\xa1\x33\x8e\xc6\xf9\xeb\xa5\x35\xcc\x82\xd4\xdb\x84\x94\xff\x7c\xab\x2d\x2f\x98\xf7\xe9\x34\xca\x4f\x29\xac\xdd\xa9\x5a\xec\xfd\xcb\x30\x4a\xea\x1b\x08\xc5\xe2\xc9\xb4\x69\xc8\xf9\xba\xeb\x8f\xdd\xa1\x35\xab\xeb\x8f\x78\x8e\xef\xbf\xc3\xc6\x07\xc4\xfa\x4e\xd0\x96\xb1\x5f\x3c\xc0\xbe\x8a\x30\x06\x1a\xf0\xe2\x92\x89\xc5\x8a\xd2\xc2\x0e\x44\xc0\x2e\xa0\x3e\x20\x62\x7d\xf5\x24\x61\xfe\x50\x27\x1c\x9a\xcc\x71\x72\x9a\xa8\x27\x0d\x38\x89\x30\x4d\x06\x69\x4c\x1a\x38\x0b\x0b\xde\x0b\xb5\xfa\x71\x62\x86\x54\x77\x14\x7b\xa5\x13\x5b\xae\x2b\x89\x14\x00\x3d\x31\xb1\x72\xf0\xd6\x01\x5f\xea\xe2\xd9\xdc\xa1\x96\xa7\xdc\x9d\x0a\x54\x25\xa9\x5e\xfe\x5b\x58\x58\xea\xa4\x25\x12\x2f\x1c\x1c\x5f\x28\xcb\xcc\x2f\x94\x20\x6d\x96\x56\x81\xc3\xd2\xac\xcb\x6f\x5b\xca\xc2\xaa\x81\x2f\x9b\x58\xe9\x9e\xa0\x5b\xc9\x0a\x71\xfc\xa2\x89\xd7\x59\x26\xcb\x26\x12\x6e\x31\x4b\xcb\x07\xbe\x61\x73\x56\xe1\x0a\xd6\xb2\xa8\xb0\x39\x71\x36\xb0\x3d\xed\xd8\xf0\xb9\x30\xaf\x48\xd4\xf8\xc0\xfc\xe7\x7f\x50\x8a\x90\x4c\xec\xe0\x3f\x6a\xaa\xaf\xd8\x51\x68\x99\x48\x8d\xb0\xff\x94\xd2\xd3\x3b\xe5\xed\xaa\xac\x89\x8b\x21\xb7\x0b\xc5\xe7\xa4\x7a\x32\xd8\x75\xbe\xa7\xab\x7a\xb5\xaf\x99\x9b\xef\x84\x26\xcb\xd6\xf1\x90\xd1\x3f\xbf\xa5\x80\x76\xc7\xb1\x2a\x3d\x63\xcf\xad\xaf\xb1\x8d\xe3\x96\x82\x80\xa3\x80\x22\x78\x70\x45\x0b\x3d\xf4\x37\xe9\xe1\x02\xbd\xcd\xfa\x14\xfc\xa2\xd6\x1f\x59\x58\xe8\x0c\x62\xc3\x25\x5a\xb1\x15\xf1\x75\x9d\x73\x4a\x01\xbd\x9f\x99\x91\x29\xa2\x37\x19\xf5\xe0\x04\xee\x7e\x0b\xdf\xc0\x2f\x54\xc5\x8c\x7d\x63\xf7\x57\xa7\x02\x8a\xa1\xff\x3a\x50\x7a\xde\x20\xc5\xa3\xdd\x7a\x8c\xa6\x20\xd6\xfd\x8d\x40\xf5\x61\x6f\x4e\x3c\x01\x07\xc0\x00\x87\xb3\xf3\xba\x15\xef\x52\x7c\x8d\xf4\xe4\x28\x8e\x30\x7e\x37\x7a\x9a\x52\xe5\x56\xea\x16\xef\x06\x4a\x91\xf8\x3e\x50\x67\x92\x30\xe5\x7f\x99\x7e\x25\x0a\xbb\xc8\x7c\x11\xc9\xdc\x0b\xbc\x05\xe1\x15\x05\xed\x7e\x1c\x55\x65\xc8\xbd\x9d\x50\x3a\x57\xbb\x36\xaa\x4c\xc1\x3d\x64\x17\x05\xff\x98\x92\x03\x94\x53\x6f\x4c\x5a\xcf\x3e\xcb\xa7\x01\x9b\xc2\x83\x4f\xc9\xfe\x55\x28\xe3\xb7\xb5\x82\xe3\x65\x14\x9b\x99\xf9\x4e\x8c\x1f\xec\x77\xfb\xbb\x4a\x1a\x6f\xdf\x06\x21\x3f\xf9\x93\x61\x58\x89\x7b\xfa\x49\x30\x25\xd3\x40\xc3\x2d\xb8\xf4\x6a\xb8\xf1\x28\x6f\x6a\x89\xaf\x77\x68\x21\xd1\xd6\x33\xf9\x1a\xfb\x47\x22\x92\x69\xc1\x3f\x12\x29\xe0\x2d\xc2\xfd\xe2\x57\xee\x84\x15\x26\xb6\xae\x5b\xd8\x0b\x58\x4d\x3a\xf0\xce\xe9\x97\x02\x88\x3e\x4a\x38\xf6\x94\x52\xdc\xef\x97\x79\x91\xad\xef\xa5\x61\xc0\x04\x3a\x4e\x83\x28\xf0\x46\x1f\x31\x32\x6e\xd5\xb1\xc3\x5c\xde\xbd\x0b\x41\x3c\x56\x66\xbb\xeb\x2b\x93\x07\x9e\xe2\xbb\x40\xae\x7e\x59\xfb\x0d\xff\x91\x62\x0b\xde\x53\xb9\x65\x66\x0b\x13\xc5\x36\xcb\x77\x79\x0a\xe2\x27\xe8\xd9\x03\x71\xc7\x8e\xd6\xc8\x74\xcf\x28\xf2\xd6\xfb\x34\xbf\xf9\x8f\x54\x39\x31\x4c\x45\x22\xa6\x31\xe9\xf1\xa7\x6b\x9a\x11\xcf\xa5\xad\x32\xec\xc0\x63\x61\xb1\xe5\xe1\xab\xfe\x49\x6d\x8d\xcf\xcd\x75\x8a\x61\x94\xf5\x67\x3c\xac\x6d\xa6\xeb\x9f\xf3\x79\x95\xaa\x01\xb3\x20\x91\x94\xe2\xfe\x0c\x52\x69\x5d\xe0\x03\xde\x0f\x54\xee\xf5\xbe\x8e\x6c\xc7\x53\x5b\xd1\x41\x8d\x27\xdf\xad\x77\xe0\xdd\x1b\xba\x4a\x91\xbc\x69\xda\xbe\x0c\x75\x9a\x00\x0b\x9c\x89\x4f\x34\x00\xa6\x96\xbe\x51\x67\xd5\xc4\xb1\x4d\x1c\xd3\xdf\x95\xa4\x1d\xb0\xf8\x7b\x58\x4a\x22\xdd\xe0\x37\xd5\x95\xf5\x38\x7a\x63\xc6\x1b\x88\x1e\xc3\x06\xc5\x2f\xd4\x06\xc5\xb0\x26\x7e\xa1\xce\xa5\xd8\x9a\x41\x09\x28\x8d\x98\xc5\xb4\x94\x0d\xbe\x6f\x66\xbc\xf7\x50\x12\xf8\x28\x1a\x73\x68\x21\xed\x51\xba\x63\x69\x9c\xfa\x03\x79\x9c\x82\x0a\xf1\x8a\xf7\x61\xac\xee\x57\xdc\xa6\x7c\x10\x53\x27\x9c\x2f\x2c\x74\xd2\x30\x2c\xc7\x86\x84\xf9\x9d\x21\xc2\x77\x15\x70\xe1\xbb\xb5\xac\xe9\xc5\x03\x1d\x93\x14\x51\x18\x8d\x8d\x13\x5f\x90\xba\x85\x07\xf8\x1d\x55\x5a\x03\x99\xe9\x47\x69\xdb\x0f\xdb\x5b\x81\xe2\xc1\x9d\xe4\x74\x49\x70\xf2\x5f\x73\x37\xb6\x92\xa4\x6b\x24\xf2\x64\x7a\x5c\xab\x68\xb2\x84\x6d\x6a\x3b\xd9\x70\x65\x28\x2c\x21\x9c\x99\xc7\xb4\xf8\xe2\xb1\x5a\x34\xf7\xe2\x01\x89\xcf\x5b\x1e\x45\xb4\xb3\xab\x30\x1b\x3b\x37\x1a\x32\x3f\x9b\x90\x83\xd8\xe2\x34\xa9\x13\xc7\xc2\x03\x55\x95\x7f\xba\xeb\x19\xe4\x57\xa8\x36\x24\x5c\x62\x49\xc1\x07\x69\x06\xcc\x21\xf6\x9a\x53\x81\x36\xbf\xfb\x48\x55\x86\x4f\x69\x23\xbc\x8f\xa6\x80\xec\xf9\x4a\xbe\x9f\x26\xaa\x68\x57\x54\xef\xc2\x1f\x9e\xa5\xb3\x90\x8d\x93\x68\x87\x44\x09\xe1\x0b\x65\x30\x08\xb5\x79\x87\xbc\xf2\x00\x88\xef\x4c\x94\x8a\xcc\xbf\x40\x11\x45\xd0\x90\x6d\xef\xb7\xfe\x9e\x46\x6d\xdc\xc3\x99\x85\x70\xf3\x2d\xda\xe7\xe4\x4c\xf7\xeb\x6c\x90\x59\x53\xec\xd1\x8a\xdc\x3e\x1b\x45\x69\x58\x8c\xb5\xe8\xd7\x88\x47\x38\x71\x42\x50\xc3\xe0\xad\x55\xb2\x4b\x05\xa2\x76\x5a\x38\xc3\x28\xe9\x2b\x8f\x21\xac\x91\x77\x15\xa7\xe0\x5d\xb5\xa3\xe5\x85\x59\x47\x89\x10\x12\xae\x77\x27\x7e\x4f\xff\x5d\x95\xad\x3d\x08\x7c\x04\xfc\xa1\xf2\x3a\x98\xb9\x1b\x28\x6a\xe5\xdd\xda\xe4\x7c\xf5\xd5\x4e\x5e\xf6\xfb\x36\xe1\xe8\x56\xb2\x06\x7a\xa6\x92\x36\xd4\x45\xa4\x86\x26\x71\x0e\xad\x6c\xd5\x14\x28\xb3\x7a\xe5\x30\x33\xb4\x99\x8d\x12\x9a\x49\xd8\xe4\x80\xe1\x47\x19\x1a\x0d\x74\x5c\x5f\xc6\x73\xc4\xe1\x73\xac\x09\x9d\x3d\x4a\x93\x62\x18\xaf\xb7\x7d\x75\xea\x92\x6a\xfc\xdd\x54\x78\x8f\x4f\x5c\x63\x7a\x64\x92\xc4\x66\xd8\x70\xd9\x38\x7d\xe2\xc1\x42\x77\x10\x61\x48\xf3\xc2\x6f\x10\x49\x9a\x8d\x08\x8e\x29\x82\x43\x27\x34\x6d\xe8\x84\x2a\x08\x7f\xa4\x7d\x04\x3f\x52\x73\xc9\x9a\xac\x18\x92\xb2\x03\x26\x03\x14\xac\xf8\x5a\xb5\x43\xec\xf2\x72\x9a\x15\xbb\xbd\x2f\x3c\x99\x38\x6c\x5d\x56\xb4\xd5\x99\x0d\x7f\xdc\x7d\x36\x51\x5b\x30\xcb\x28\xa0\x4c\x7d\x5b\x19\xd5\x66\x99\x49\x30\x91\x75\x13\x1a\xc1\xd3\x6e\x00\x5c\x1d\x61\xbe\x5a\x16\xa8\x0c\x43\x30\x09\x85\xb2\x3d\x1b\xd5\x12\xc1\xf7\x1f\xc1\x84\x42\x25\xe2\xae\x12\x87\xe9\x59\x53\xa0\x53\xc9\xad\x3a\xaa\xd3\x49\xdb\xce\x97\x28\xc0\x66\x94\xf8\xb6\x01\x0a\x19\x47\xaf\x97\x69\xd6\x56\x38\xad\xd3\xca\x2a\xe3\xba\x82\x90\x1c\x69\x82\x6a\x86\x26\x2b\xd2\x34\x41\x21\x06\x7d\xee\x2f\x02\x8d\x94\xf9\x42\x31\x8a\x48\x31\x36\x8b\x6c\xbe\xc7\x07\x14\x3b\x11\x1a\x63\x56\xec\x82\x0d\x88\x13\x06\x77\x55\xb8\xcb\x81\xd6\x74\xac\x46\xd7\xd1\x49\x97\x66\x1d\x5d\xa7\xc6\xc4\x39\xd8\x39\x3c\x7b\x00\x1b\x21\xe2\xea\xcb\xca\x8f\x0a\x4f\x46\xba\x32\x4a\xb4\x1f\xde\x39\xe2\xcb\x42\x53\x51\x75\xc5\x44\xdc\xfb\x1a\xa2\x5f\x3c\xbf\x4d\x8a\xb1\x9d\x3d\xec\xc2\xc2\xd6\x09\xfa\x95\xf8\xd7\xeb\x81\x62\x1a\x5c\xd4\x50\xcd\xc2\x01\x68\xa2\x3c\x8d\xab\x43\x74\x46\x95\x4f\x2f\xe9\xe6\xef\x65\xb5\xca\xae\x05\x2a\xf2\xdf\x54\x95\xc2\x70\x98\x66\x45\x2c\x2c\x42\x8e\xfd\x02\xd5\xc4\x3e\xa3\xe6\xd0\x20\x2e\x91\x8f\xbf\xe0\x10\x0a\xd5\x57\x08\x49\xaa\x49\xce\xc2\x44\x6b\x26\xb1\xcc\x2d\xe0\x10\x66\xe2\x51\x86\xd7\x34\xaa\xe1\x5d\x77\x6f\x6b\x43\x53\xd8\x55\x9b\xed\xf5\x30\x1f\x2d\x44\xb7\x6b\xc3\xc3\xd7\xdb\x64\x36\x23\x9e\x32\xf4\xe4\x68\x26\x1e\x79\x16\x27\x30\x1e\xe3\x16\x95\x6d\x90\x1e\x1d\xa7\x81\x76\x42\xd6\x2f\x6b\x03\xd2\x97\x17\x1d\xe1\x72\xfb\xdd\x3c\xd7\x59\x1b\x46\xf9\xb8\x76\x1c\x1c\x53\xc7\xc1\xb1\x86\x56\x22\x5a\x90\x31\x8f\xf1\x81\x2d\x00\x77\xb7\x2e\x4f\x69\x97\x14\x26\xdb\x43\xbf\x1d\x07\xd8\xbb\x34\xa1\x50\x04\xfe\x78\xe2\xd9\x28\xef\x62\xb8\x1c\x9c\xd7\xe1\x17\x4e\x2b\xb7\x97\x93\xfa\xfc\x3d\xa7\xba\xeb\x63\x13\xae\xac\xa5\x69\x9f\x4e\x0f\x94\xfb\x6f\xd0\xd9\xce\xd7\x81\x77\x86\xe8\xa7\x45\xab\x0a\x98\x65\x30\x5a\x8a\x95\xea\xfb\x40\x26\x5f\xc9\x15\x26\x7a\xa2\x30\xd1\x13\x85\x94\x30\x61\x11\xad\x12\x15\x74\x97\x37\x0b\xb9\x82\x43\x5e\x9a\x06\xca\xd6\x0c\x76\x76\x4e\xe0\xd2\xbb\x90\x5c\x0b\x3c\xd3\x3d\x4a\x9c\x3d\x35\x8a\xdc\xee\x18\x3f\x2c\x3b\xf7\x09\xef\xeb\x68\x32\xbb\x5c\xc6\x14\x45\xa2\x72\xf3\x65\xdd\x1d\x47\x1c\xba\x1c\x4e\xca\x8e\x9c\xcd\x2d\x5a\x60\x00\x3c\xf1\xb5\x0a\xd8\x33\xbb\x9c\x66\x23\xb4\x68\x30\x29\x99\x11\xc0\x2f\xf0\xf9\x8a\x88\x39\xef\xb0\x3a\x0d\xf5\xf0\xe5\x28\x66\x3a\x9c\xcb\xc4\x1c\x5f\x1d\xa2\x84\xec\x01\xa2\xd2\xc8\x7c\x18\x8d\x47\x36\x29\xf2\x3d\xf4\x46\xf1\xd8\xa6\xc9\x82\x1a\x02\x38\xe4\xce\x03\x7e\x49\xb4\x65\xc0\xf4\x47\x60\x02\xcc\x31\xc2\x8f\xab\x34\xeb\x84\x66\xd8\x60\xe2\xbe\x1c\x25\x68\xaf\x1d\x6e\xae\xe6\x35\x81\xba\x8b\x61\x14\x0a\x2c\x52\xa6\xa7\x76\xdc\x0f\x7c\x69\x68\x64\x92\x72\xd9\x84\x45\x59\x2d\xb7\x47\x54\xe7\xf7\xef\xe0\xae\xa4\xec\x50\x7d\xbd\x48\x86\xe3\x83\xc5\xe0\xdd\xd3\x4e\xe0\x94\xef\x34\xe1\xfd\x8e\x7c\x81\x06\x42\x9a\x06\x9e\x26\x13\xa6\xc9\xaa\x25\x5f\xa4\x6a\x6f\x71\xe2\x95\x4e\x0a\xf5\xa2\xca\xb7\x13\xcb\x02\x8b\xd8\x5c\x3e\x51\xb9\xda\x55\x2a\xf4\x20\x18\x3c\xa3\x1c\x0b\xcb\x64\x39\xc2\x7e\xe0\xb5\x31\xef\xab\x82\xf1\x7d\x05\xfb\xac\x52\xac\x8c\x71\x2a\xc8\x42\xa1\xa6\xc2\xd7\xb5\xde\xe7\xe1\xd9\xf9\x8e\x4d\x5e\x4b\xd7\x29\xef\x99\xb6\x75\xf2\x1d\x1e\xd7\xfe\xe9\x65\x65\x94\xbb\x0d\xcd\xd9\x31\x3a\xeb\xe9\x93\x0d\x08\xa4\xc5\x4e\x34\x22\x0e\x0c\x16\x9e\x72\x15\x39\xe8\x5c\x45\x1a\xf8\xe0\x61\x9a\x14\x51\x52\xe2\xc0\x12\xa6\xe5\x83\x40\xf1\xf0\x79\x17\x40\x72\xfb\x1d\xd5\xd6\xdb\x54\x1c\xce\xa1\xcd\x7a\x5a\x6b\x92\xcf\x5b\x7e\xa1\x2c\x3f\xf5\x4e\x8d\x60\xe1\x0f\x68\x4e\xf0\xb5\x66\xde\x95\x49\x41\x38\x3e\xb1\xd4\xf0\xfb\xcf\x6f\xe2\xec\x55\x86\x1c\x2f\x38\xff\x5a\x25\x14\x9d\x66\x2b\x66\x9c\xc6\x11\xd4\xe6\x70\x16\xb3\xb8\x3c\xfb\xcb\xe0\xd6\x90\x92\xdc\x51\xaa\xd1\x23\x93\xe5\x43\x13\xc7\x2d\x8f\x2e\xfd\x42\x27\xeb\x5f\xd4\xd8\x66\x0e\xf0\x94\xd9\x30\x4a\xcb\x7c\x66\xca\x8c\xb9\xe5\xcc\xb5\xb0\xc5\xc9\x19\xa2\xda\x73\x9f\xf9\x10\x62\x44\xcc\x53\xde\xe4\x90\xfc\xdc\x0b\x14\x02\xf6\x5e\x63\x86\xbc\x1a\x25\x85\x19\xa0\x0b\x81\x5d\xe4\xef\x2a\x39\x8c\xbf\xbb\x5d\x4d\x6f\x69\xf6\x60\x15\x59\x69\x72\x02\xa3\xae\xa5\x42\xb2\x5f\xb9\xab\x71\xe5\x43\xdc\x55\x14\x13\xf9\x0e\xb6\x4e\xfc\xb2\xe3\x0d\x33\xff\x95\x0e\x35\x33\xcd\x40\xd2\x1d\xfc\x69\x7b\xc3\x23\x32\xda\x5d\x49\xed\x62\xfb\x46\x94\x0c\x0a\x86\x05\xe1\x54\x60\x52\x0c\xbf\xa8\x25\xfa\xd5\xd4\x1f\xa7\x79\x61\x70\x92\x20\x82\xf8\x47\xb4\x70\x9d\xd1\x95\x2f\xa9\x9e\xd7\xa6\x71\xe9\x68\x5c\x16\x36\xcb\xf7\x79\xcc\xd2\x75\x78\x6d\xe3\xec\x3d\x8d\x1b\x65\x3f\x6c\x8a\x51\x31\xcd\xa8\xab\xf4\x8a\x73\x56\xa3\x09\x88\x5b\x39\x4d\xa5\x63\xb0\x31\xae\x4f\x3c\x46\x91\x8f\x7f\x36\x71\x01\x93\x99\xbf\x24\x50\x5a\xb5\xff\x62\x32\x95\x37\x6e\x3f\x88\x5e\x3c\xd0\xc9\xed\x1b\x68\x0b\x3b\xa9\x36\x65\x47\xa1\xe9\x99\x85\xe8\x1f\xe2\xa8\x39\x43\x47\x07\x5f\xd7\x06\x71\x61\xa1\x33\xb0\x99\xa8\xe0\x8a\x3d\x3b\xc7\xb8\x52\x84\x7a\xdc\x63\x37\xab\x71\xa3\x8c\x8b\xdb\x22\x0a\xa2\xb4\x0b\x58\x23\xd1\xb4\xf4\xa0\xfe\xdb\x14\xd5\x08\x10\x54\xb1\xc9\x2f\x4d\xb4\x44\x76\x28\xc8\xbe\x46\x41\xb2\x06\xe9\x8f\xa1\x35\x19\x57\x04\x81\x2a\xba\xac\xe6\xfd\xef\x60\xdc\x85\xe5\x2a\x6b\x2c\x2f\x45\xf8\x79\xaa\x8e\xeb\xb4\x6a\x54\xe7\x39\x0c\x63\x13\x8d\x54\x40\xc5\x94\x2b\xc1\x4c\xd5\x63\xcb\xc5\x6a\x17\x28\x0a\x07\xa3\xc7\xa3\xfd\xf3\xc0\xa7\x79\x7f\xde\x44\x77\x1c\xa7\x51\x52\x38\x05\x4f\xd4\xa8\x98\x0d\xe3\x74\x4c\x7c\xca\xb1\xa3\xab\xdc\x09\x09\xb2\xdf\x72\x6a\x08\x80\xf3\xf2\xb5\x02\x35\x85\xc3\xc8\x2e\x3f\xe6\x15\xa5\xfe\xd1\x44\x3d\xec\xab\x1a\x25\xfa\x27\xb8\x47\xb4\xe1\xb7\xf8\x0c\x17\x99\x74\x9a\xee\x18\x27\x90\x36\xb0\x74\x40\x6f\xc5\xc1\xba\x45\xc7\x21\x42\x80\x3b\x13\xa5\xb9\xf1\xc9\x44\x83\x10\x1b\x7c\x0c\xf3\x74\x64\x8b\x68\x84\xea\xa0\x54\x39\xfd\x21\xbf\x35\x55\x1f\xb3\x89\xa1\x12\x3d\x03\xf6\xb8\xd2\x8f\x0d\x0c\xf2\x84\x2c\xaa\x1c\xf8\x7e\x22\x17\xb1\x91\x1e\xed\xe9\x7a\x71\xaf\x5e\x9c\x86\x2b\xc4\x7d\x15\xd0\xd3\x2d\x0a\x64\xf8\x1a\xb7\x2d\x1e\x61\x2d\x51\x03\x3d\xce\x7a\xe1\x22\xa6\x3e\x25\xb3\xee\x8b\x14\x6b\x51\xdf\xc6\xeb\x7b\xaa\x51\x91\x0a\x4f\xb5\x1a\xf0\x1c\xfe\xd5\xc4\x07\x4c\x47\x03\xcf\x26\xbc\xad\xc0\x00\xe7\x50\x69\x41\x6d\xe1\x92\x2a\xab\x7d\x5c\x17\xa1\x79\xe9\x60\x27\x33\xe3\xa8\xaf\x3a\xd2\x1f\x29\xbb\xb3\xba\x37\x43\xf5\x8e\x71\x99\x84\x5e\xbb\x4f\xfc\x8b\x5b\x4e\x5d\x6d\xb3\x91\x81\x69\x92\xc4\x71\x6a\xb0\xb9\xb0\xd7\x09\xbf\x70\x47\x7f\x1e\xf5\xed\x9a\x59\x47\xb1\x03\xa9\x00\x03\xaf\xd0\x9d\xd8\x52\x22\x06\xf0\x4b\x62\xb0\x8e\x6a\x8e\xb0\x75\x24\x09\x01\xe0\x08\x3d\x86\xb9\x85\x53\x99\x55\x82\x50\x07\x3d\xae\x18\xbf\xf7\x54\xe5\x71\x87\x66\x96\x14\xf6\xc9\xb6\xf7\xd6\x47\x02\x2b\x26\x1e\x6a\xeb\xbb\x8e\x47\x8c\xf9\xb3\x07\x7e\xa9\x88\x4f\xf7\xa2\x29\x86\x9f\xfd\xef\xc1\x2d\x11\x33\x6c\x7f\xbe\x3d\xde\xc5\x00\xa1\x76\xfa\xf9\xc4\xc3\x4d\x9e\xea\x6a\x7a\x3d\x1a\xa2\x38\x57\x61\x37\x81\x81\xba\xab\xb4\x1a\xae\x43\xe7\xc5\xb1\xfb\xbd\x7a\x68\x13\x69\xb8\x63\x7a\x25\xbb\xf3\x48\x1d\x6b\x8a\xd4\xdc\x48\x33\x36\x11\xef\x8b\xd8\x9e\x3f\x51\x54\x9e\x4f\xea\x86\x3e\xd5\x64\xb3\x61\x9a\xc1\xe6\x14\xb1\xfd\x2e\x54\xc8\xa4\xb7\x5c\x7d\x3d\x96\xc4\xfd\x5a\x80\xf0\xe2\x81\x4e\x14\xc7\x25\x31\x01\xf0\x43\xc5\x3e\xb3\xba\x7f\xbe\xd6\x51\x5d\x96\x0e\xa3\x5e\xc4\x25\x96\x57\x78\x81\x9f\x99\x6c\x0b\x4f\x44\x1a\x55\x17\x38\xcf\x4c\xe1\x65\xcd\xba\x51\xb1\xd2\xef\x4c\x03\x6b\x9f\x54\xaa\xae\x23\x13\x25\x39\xea\x00\x1c\x43\x06\x1e\x56\x04\xf7\x6d\x17\x5b\x7a\x27\xdf\x4f\xe8\x8b\x51\x4a\xda\x07\x49\x30\xb1\x2a\x69\xcd\xcd\xf3\x24\x7d\xa0\xd0\x53\xa3\x28\xb1\x19\x8b\x04\x0b\x44\xc0\xe3\x60\x8f\x37\x38\x9b\x2f\x91\x6e\x75\x32\x60\x02\xd0\x16\xa9\x78\x6d\x9d\x50\x29\x93\x29\x86\xb1\x2d\xaa\xf4\xce\xdb\xe2\x7e\xaa\x05\xe6\x3f\xf5\x48\x32\x9b\x55\x99\xfb\x2e\xa5\xa9\x80\x2a\x2d\x50\x35\xc0\x38\x63\x6a\xce\x6c\x68\x3e\x41\xe0\x01\x53\xe7\x26\x8f\xb9\xb5\x75\x30\x7d\x14\x0d\x5f\xe7\x74\xe3\x1e\xed\x75\xd2\x6a\xc2\x74\xde\x0c\x5a\xdf\x3a\xc8\x23\x73\x44\x2d\xd9\x4b\xca\xaf\xf3\x3d\xd5\x2c\x79\x8a\xa0\x88\x48\x83\x98\x32\x8f\x7f\xe0\x36\xa3\x54\x55\xb9\xbd\x84\xf5\xc3\xee\x30\xfc\x42\x31\x0e\x46\x69\x56\x0c\xcc\xc0\xee\x51\x36\x16\x97\xb4\x6e\xe3\xfb\xf8\x0a\x31\xe0\xae\xb7\x70\x74\xb8\x89\x1a\xc4\x1e\x25\x98\x70\xd2\x6d\x7f\xcb\xd6\x14\x65\x26\xda\x75\xe8\xe0\xfe\x31\xbe\x09\x69\xe9\x7d\xec\xef\x82\xfc\xaa\x9e\xe4\x65\xd5\x61\xcd\x56\x51\xb6\x77\xd2\xc8\x8e\x4e\x74\x44\x39\x40\xdd\x56\x8c\x7a\x33\x46\x40\x01\xaa\x97\xd4\x10\xab\x43\x07\xef\xbb\x3b\x51\x56\x79\x41\x9d\x62\x3a\x4a\x11\xf4\x60\xdb\xbc\xa5\xbd\x5f\x6e\x35\x80\x7b\x0f\x76\x62\x9b\x0c\x8a\xa1\x4d\x38\x71\xc1\x06\x79\x19\xf7\xc8\x2f\x54\x11\x39\xed\x91\x3a\x01\xce\x1b\x59\x28\xef\x2b\x3e\xf9\xfb\x2e\x04\x23\xda\x39\x9b\x61\xa0\x38\x04\x09\x75\x51\x95\xf7\x12\x2a\x9b\xca\x00\xb6\x17\x15\xbb\x5b\xbf\xf4\xb2\x10\x18\xb0\x23\x09\xe3\x41\xe1\xdc\xd8\xa0\x12\x0f\xf2\x62\xb0\xf3\xeb\xfc\xe8\xff\x25\x8d\x31\x60\x68\xe7\x27\x3a\xea\x78\x3e\x64\x17\x17\x4c\xe1\x53\x6a\x77\x3e\xe5\x48\xf0\xa3\x32\x8e\x8a\x68\xec\x22\x33\x14\x73\x4e\xaa\x8e\xd3\xc9\x89\x97\xf5\xc8\xa3\x41\x22\xd1\xa8\xeb\xd0\x2f\x2c\xc8\x75\x2d\xdf\x77\x7a\xbb\xe9\x78\xc6\x37\x22\x67\x08\x80\x0d\x3c\xc3\x3f\x98\x28\x35\xca\x2d\xda\xa5\x70\xf3\xc7\x1d\x85\x3c\x49\x8b\x68\x79\xdd\x1d\xf9\xec\xb8\x43\x43\x2b\xee\x3b\x0d\xa8\x71\x93\xac\x23\x3e\x3b\x3c\xeb\x53\x8b\x25\x77\xad\xdc\x64\x56\xcd\xc0\x64\x11\xfb\x17\x88\x5b\x0b\xfd\x2a\x7e\xe1\xec\x3b\x07\x23\xc3\x24\x70\xd4\x7c\x6f\x4e\xd9\x9b\x7b\x72\xe3\xaf\xd2\x7d\xe0\xb9\x9d\xab\x91\x8b\xe1\x1b\x9e\xa7\x71\xa9\x78\x70\x2c\x3b\x18\xf8\xd6\xad\xa6\xa3\x96\xfd\x1c\x2e\xcf\xe8\x00\x3d\xd2\xf5\x25\xd5\x47\x36\x3c\x05\xf1\x06\xf6\x4c\x9e\x23\x88\x39\x50\xb1\x68\x39\x92\x48\xcf\x0e\x4d\xbc\xdc\xf6\x47\x03\xab\xcc\x60\xb7\x00\x67\x42\xa8\x40\x4e\x2a\xa8\xcc\x0b\x13\xc1\x6f\x1f\x27\x27\x4a\xc6\x7c\xad\x42\x77\xd3\x2f\x63\x76\x9f\x10\x49\x71\x25\xce\xf5\x51\x63\x56\xdc\x23\x55\x2a\x0e\xce\xb0\x02\xf9\x98\xe3\x17\xaa\xe2\x91\xd9\x71\xd9\x8b\xa3\xb0\xa5\x4a\xd9\x60\x48\xf2\xb5\x1a\xb4\xc4\x64\x2d\x65\x92\x48\x77\x26\xf9\x99\x5f\x7f\x76\x04\xf5\x07\xec\x30\x50\xd6\xe1\xeb\x8d\x86\xbc\xd6\xae\x5a\x78\xfc\xa0\x35\x00\xf5\x02\x84\xc4\x7f\x38\x25\x68\x49\x63\x20\xae\x68\x53\x5d\x96\x06\x5e\x7d\x11\x8e\xc6\xf4\x2b\x1a\x55\x80\xbd\x35\x01\x09\x7c\xc7\x65\x68\x99\xa9\xc6\xe5\xd6\xa9\xd2\xeb\x76\xb4\xc0\xe2\xd2\x62\xe7\xd9\xfe\x2e\xa5\x02\x4e\xd6\x68\xaf\xf8\x86\x7b\x15\xa8\x39\x9f\x4e\xdf\xef\xfe\x8c\x14\xce\x30\x49\xf6\x75\xbf\x3a\xdd\x57\xb3\x19\x6d\xdb\x78\xd4\x52\x18\xd4\x4a\xcd\x0d\x10\xd4\xe5\xac\xac\x36\xc8\x1c\x2b\x0d\x03\x78\x55\x29\xe6\x5f\x55\x85\x01\x53\x0e\xca\xbc\xa0\x44\x44\x54\x8b\xa7\x6a\x84\x4a\xb9\xeb\x9c\xca\x19\xee\x04\xd3\x65\xc5\x2a\x1a\xe2\xf7\xab\x14\xbf\x5d\x7b\xb2\x24\xfa\xbb\x0a\x3a\x93\xe0\x7c\x3c\x24\xe9\xb7\x34\x3a\xef\xbc\x32\x89\x37\x03\x22\x94\x93\xcf\x92\xb3\x12\x3e\x3b\xf1\x67\xff\x59\x8f\x95\x8f\x12\x0b\xdf\x68\xa7\xbd\x76\x5a\x59\x4d\x73\xf5\x47\xee\xc2\xf3\x8d\x0a\x13\x0e\xd7\x43\x93\xf5\x23\xad\xab\x7f\x49\x89\xd4\x5d\x0a\xf6\xba\xbf\x7e\x75\xf7\x94\x4e\x3f\xd6\x94\xab\x57\xbb\x2a\xcb\x8f\x03\x7a\xe8\x38\x35\x50\x50\x40\x97\xe4\x33\xc4\xf6\xfc\x0f\x4d\xb0\x9d\x5e\xd9\x1f\x58\x78\xe3\x38\x90\x28\xc0\x1c\x80\x96\xbf\x3f\x6d\xe5\xe9\x1a\x22\x26\x8b\x96\x97\x77\xa9\x9c\x76\xf7\x86\xef\xcf\x7f\xa5\x5b\xa3\xbb\x63\x27\x3d\x31\xc5\x89\x97\xb1\x84\x30\x43\x06\x3b\x47\x9c\xf5\x5f\x2a\x78\xd5\xee\xae\x16\xd4\x7e\x5c\x4d\x5c\x93\x17\x88\x90\x71\x10\xfd\xf1\xc4\x1f\x79\x20\xd1\xf0\x7f\x57\xb6\x3c\x57\x95\x56\x09\xab\x46\x00\xfb\xf7\x23\xe4\xd0\xa8\x8e\x5d\x0b\x3c\x63\x26\x4d\x06\xa9\x30\xe8\x10\x07\x40\x1a\x85\xaf\x15\x74\x00\xd5\xc6\x6a\xe6\x08\xbe\x97\x7e\x9c\x00\x7c\x9f\x51\x8a\xc2\x83\x32\x26\xa0\x2b\x58\xce\xdc\x2d\x0e\x3c\x3b\xf2\x1c\x6a\x80\x38\x13\x2e\x63\xbe\x3a\x21\x14\xc7\x30\x3e\x8b\x20\x82\xdf\x52\x2b\xb4\xb3\xbb\x79\x9a\x47\x05\x78\x88\xa8\xe1\xb0\x25\x80\xd8\x51\x2b\xde\xf6\x3f\x55\x36\xcc\x47\x55\x51\x7c\x90\xda\x7c\x77\xeb\x1b\xbf\xc2\xc1\x37\x9c\xa1\xf9\x3a\x50\x9d\xd5\x33\x34\xd0\x4a\x27\xed\x05\xde\xc6\x50\x2f\xe4\x6b\x55\xc0\xcf\x87\x65\xa2\xea\xa7\xc7\x74\x85\x9d\xd9\x22\x08\x6f\xaf\x2b\x54\x5d\x6c\x57\xd9\xd5\x4c\x7a\x14\xf4\x2e\x69\x52\xb8\x82\x76\x92\x97\xbe\xea\x2f\xd0\x22\x0f\x9e\x7e\x4f\x29\xac\xf7\x6c\x36\x00\xd3\xf8\x85\x2d\x5a\x3f\x5b\xbe\x14\xb7\x5a\x45\x13\xc5\xfa\x2e\xc5\x16\x39\xa2\x9a\x7f\x8f\x68\x11\xd6\x5b\x34\x32\x4e\xdc\xce\x0d\xf9\x55\x85\x51\xc9\x0b\xb3\xbc\xcc\x8e\x49\x78\xa4\x1f\x2a\x33\xb9\xc7\xe9\xc4\x72\xd6\x09\x73\xf3\x7e\x37\x76\x6a\xb6\x67\x30\x32\xcc\x76\xc1\xdd\x63\x27\xbc\xae\x96\x47\x6e\xa3\x81\x6d\x57\x39\x0f\xde\x75\x9e\x4a\x3f\x18\xdb\x2f\x55\xfd\xf6\xa2\x96\x3c\x4c\x4c\x18\xa5\x2d\x0f\x84\x6e\x75\x55\xb3\xa0\xb5\xa1\xb6\xca\xa2\xc8\x4c\xe8\xb0\xda\xd8\xe8\xb0\x27\xf1\xb5\x03\x4e\x15\x99\x59\xb5\xb1\x17\x0d\xe6\x6d\x41\x03\x70\xde\xd9\x2e\x59\xb2\xb0\xd0\x39\x3c\xfb\x15\x5f\xab\x82\x92\x01\x6a\x1c\x9f\x06\xaa\x95\xb5\xa3\x5b\xcd\x4b\xec\x28\xd8\x45\x11\x53\xfd\x11\x4e\x6c\x24\x20\x57\x09\xdf\x82\x0d\xe0\x32\x97\x15\x45\xae\xcd\xa7\x53\xc7\x48\xf2\x49\x38\x95\xb4\x74\x01\x0e\xfb\x3f\x26\xaa\x39\xc7\x60\x3e\x69\x49\x57\x13\x1e\xcf\xfb\x07\x81\x72\x8f\xfb\x42\xc3\xaa\x2e\x51\xe6\xe9\xc4\x14\x35\x77\xb0\xee\x8c\x62\xca\x22\x1d\x19\x11\xb1\xc2\x1c\x3b\xa1\xc9\x97\x27\x1a\xdb\x70\x23\x6b\x41\x34\xaf\xfe\x50\x36\xd8\x6a\xcc\xf8\xba\x26\xff\x33\x37\xd7\xc9\x87\xe9\x1a\x89\x57\xe3\x6f\xee\x68\x51\x2f\xf4\x2b\xb5\x2e\xc0\x54\x17\x46\xda\xd1\x4f\x2a\xba\x7e\x3a\xca\xd3\x64\x0f\x59\xe4\x13\x32\xfe\xc0\xd6\x4d\xa5\xf3\x7e\x7b\xa2\xbc\xe5\x3f\xc0\x0d\x21\x30\xfb\xb1\x5e\x34\x4a\x81\xe8\x9a\x42\x7e\x2e\x9b\xa4\x0c\xd1\xf9\x44\x9c\x03\x4f\x0d\xbe\x56\x11\x65\x3e\xb4\x71\x3c\x4e\x0b\x8d\x71\xe3\xee\x9b\x08\x83\x6e\x8f\xa8\xaa\x53\x30\x05\x6c\x15\xe5\x89\x23\x81\xd2\xb3\x3e\x32\x95\x84\x65\x16\xab\x83\x41\xa6\xb4\x9d\x08\xe0\xd4\xef\x97\x2b\x89\x5d\xdb\xad\xea\xb3\x8c\xa4\xc5\x2d\xc2\x2a\x48\x72\xfb\xea\x2e\xf0\x5c\x91\x19\xbb\x68\xc5\xf5\xf6\x2f\x2a\x17\xbf\xcc\xae\x46\xab\x22\x8c\xe5\x84\x76\xfd\x21\x7c\x4e\x65\x59\x59\x31\x5c\xb3\x79\x41\x8c\x33\xb1\x38\xa6\xb2\x21\xb6\xa4\xbb\x0a\x0c\x87\xde\x37\x8e\x3e\x9e\xdf\xa8\x5d\x1d\x51\xa4\xc3\x22\xb3\xa6\x18\xd9\xa4\x98\x51\xdb\xed\x59\xe5\xe8\x0c\x37\x1e\x24\x1e\x40\xea\x23\xad\x3a\x35\xd9\xeb\x6e\xe0\xb9\x9f\xa5\xe9\x8f\x35\x7a\x97\xc1\xf9\x5c\x45\xa0\x45\x8a\xa8\xfa\xa9\x8d\x9d\x5f\xf7\x49\x90\x6f\xf8\x2f\xd2\x8e\x28\xc1\x48\x15\xcf\xa2\x7a\xc2\x28\x46\x07\xf1\x7a\xf6\x59\x47\x21\xab\x7e\x07\xd6\xf4\x2e\x58\x08\x3b\xf5\xda\xc3\xb3\x5c\x71\x3a\x0f\x24\xa8\xf3\xf4\x5d\x9a\x5d\x12\x67\xec\x6e\xeb\xdb\xdf\xe4\x8d\xe3\x5d\xd2\xd5\xc3\x38\x7f\x18\x78\x81\xe6\xd3\x01\xc1\x86\xa4\xc3\x54\x2d\x75\x20\xe6\x8e\x21\x4f\x40\x78\xb1\x63\xa3\xa5\xb4\xb8\x68\x6f\xc2\x8b\xe3\x13\x8f\x5f\xfa\x13\x88\x02\xa0\x99\x71\x04\xfb\x09\xa6\xf8\x9f\xa9\x93\x79\x67\x97\xa2\x3d\x45\xcb\x95\xdc\xe2\x4b\x30\x37\xb0\x52\xff\x0c\x5b\x18\x60\x1b\xb7\x02\x8f\xdb\xdd\x81\xe8\x8c\x15\xeb\xa9\x12\xc6\xde\x91\x13\x0d\xc7\xb8\xd2\xe4\x94\x99\xd9\x70\x25\x16\xcd\x25\x54\x13\x2f\x29\x97\xaa\x4b\x81\x47\xfa\xf4\xd2\x2c\x4b\xd7\xa2\x64\x90\xb7\x3d\xb2\x82\xdb\xfa\xa8\xc8\x81\x71\x83\x48\xf5\xec\xe4\x31\x4f\xcd\x88\x5a\x9a\x4c\xc7\xe9\x93\xd4\xc9\xf6\x2b\x2d\xdf\x10\xf2\xbc\x9a\xba\x8c\x87\x75\x57\x83\xe6\xee\x2a\xbb\xbb\x57\x55\x4f\xe6\xa4\x3a\xf9\x7a\x65\xba\x2e\xa5\x10\x41\x7a\xfb\x7e\xe7\x31\x85\xc2\x88\x92\x3c\xca\xa9\x62\xe9\x32\x25\x1e\x37\x4c\x81\x3b\xc1\x94\x23\x4f\x4b\x49\x15\xd2\x7d\x08\x30\xab\x89\x39\x97\x99\xb5\x96\x67\xe9\x6f\x2a\xf4\xe7\xa6\xd6\x30\xce\x6c\x3f\x0a\x21\xbf\x84\x93\xf9\xc6\xc4\x1f\xd9\x37\x6a\x66\x26\xa4\xd4\x63\xe2\xd8\x0e\x6c\x9f\xf1\xc2\xe2\x1a\x5b\x7d\x84\xd8\xc9\x7a\xb8\xc4\x1b\x63\xb3\x6e\xb3\x5d\x1e\x06\x71\x43\xa9\x16\xb1\x12\x80\x53\xe3\xa9\xe6\xb8\x6a\xaf\x1e\x54\x91\x3a\x07\xd0\xcb\xcb\x51\xc8\x5d\x61\xa5\x2c\x20\x34\xe7\xcd\xa6\x79\x96\x17\x69\x36\x72\xad\x4c\x84\xf4\x67\x55\x15\xeb\xac\xab\x78\x11\x5e\xf7\xf5\x92\x5c\x08\x5b\xce\xe7\xe2\x88\x66\xab\x5f\x55\x56\xac\x27\x9a\xc4\xd1\x7e\x9e\xc2\x24\x81\xd2\xb7\xdc\xc1\x8f\xe8\x00\xf7\x53\xb7\x43\x98\x9b\xa7\x53\xc1\x1b\xc4\x20\x26\x60\x9b\x63\x7e\xd1\xc4\xf3\x2e\xab\xa7\xac\x3c\x5e\x68\x30\xc4\xfc\x65\x3b\xc4\xe3\xf0\xec\x0b\xe4\xd0\x17\x9a\xb1\x09\xa3\x82\xfd\x50\xb0\xaa\x11\x6f\xf1\xb5\x07\xaa\xaf\x8f\xab\x3f\xcf\xfa\x6d\x1d\x6f\x9d\x54\xfd\x10\xc6\xfe\xe3\x27\x6a\xc2\x90\xc9\x62\x02\xbf\x60\x17\x86\x41\x2c\x76\xc2\xbb\x2a\x0f\xfc\x2b\x4f\x76\xa7\xc4\x55\x75\xdb\xc2\x84\x45\x9a\xb5\x7d\xb4\xbf\xa7\xeb\x13\x9c\xdb\x13\xd5\x66\xb8\x51\x5b\x00\x55\x18\xd3\x2f\x53\x1c\x6e\xd8\xa5\x2f\xaa\x4e\xe0\x45\x05\x0d\x49\xd2\xd5\xe7\x1f\xa5\x15\x8e\x65\xf6\xbb\x1a\x08\x76\x93\xde\x84\x5a\x22\x73\xc1\xa5\x1b\xa9\xfc\x7f\x80\x6c\x42\xb6\xc9\x60\x08\x51\xb2\xd1\x69\x36\x54\x3d\x31\x52\xed\x0d\xbf\x06\x5f\x2f\xa3\x70\xc5\xa2\x22\xe5\x6c\x61\xab\xb9\x2a\x4d\x8c\x27\x55\xff\xdb\x64\x64\x6e\xa4\xb6\x85\x89\x66\x7b\x4c\x35\x97\x47\xe5\xe8\x91\x29\xd5\x26\xcf\xf7\xdb\x4b\x5d\x08\xe6\xe3\x20\xbe\x55\x2a\x84\x07\xe5\x45\xe0\x5d\x6e\xcf\x21\x09\x43\xb4\x76\x5b\xa9\xb9\xd6\x09\xd9\xd5\x3c\xcb\xa3\x5e\xec\x35\x34\x5d\x0d\x53\x79\xec\x69\xaf\xf2\x7e\xf6\xa6\x7d\xad\xa5\x08\x43\x9b\x5a\x9c\x79\x53\x3b\x8b\x67\x51\xb2\x62\x33\xd5\xaa\xbb\xa5\xa4\x3f\x3f\xd3\x16\x75\x4d\xf6\x79\x9d\xd5\x08\xf0\x66\xcc\x7d\xce\x02\xb0\xcc\x24\x25\x68\x6a\x10\xf6\x52\x93\x89\xaf\xa8\x10\x66\x7d\xf6\x7f\xc9\xa9\x93\x92\x88\x72\x54\x94\x85\xdd\xe5\x8b\x20\xbf\xa7\xf9\x91\x9b\x14\x2d\xc8\x31\xa3\xd9\xc0\x34\x3a\x02\xb7\x6f\x82\x21\xf5\x62\x3b\x8a\xf2\xa1\xd0\xbb\xa5\xab\xdd\x72\xac\xbe\xcd\x9a\xc9\x2d\x04\xef\xd2\x65\x0b\xbf\x63\x58\x1b\x20\xe8\x39\x36\x51\x2b\x0f\xfa\x9e\x98\xb5\xb7\x02\x5f\x6c\x23\xb3\xff\x7c\x7f\x4b\x29\x46\x55\x13\x07\xf5\xae\x23\xb4\xbf\x71\x08\x85\xd3\x58\x9a\x04\x74\x5f\x4e\x45\xa0\x0a\x1e\x70\xaa\x7f\xa8\x6a\x67\xc0\xcc\x63\x7b\xdc\x9a\xe8\x2e\x27\x0d\x97\x58\xa1\x50\x0c\xc5\xd8\x54\x2c\x2e\x94\x1b\x38\xfd\x91\x0a\xbe\x6c\x59\x7d\xbb\x6c\x13\xa7\x53\x84\x3f\x3d\x81\xb9\xcb\x2f\x9c\x21\xf2\xa0\xcc\x4a\x18\x4d\x70\xb3\x6b\x32\x65\x26\x4a\xd3\x51\xe2\x4e\xfa\x62\x6c\x7f\xad\xae\xf2\x26\xc9\x4c\x9f\x54\xa0\x10\xc9\x02\xdc\xf0\x05\x22\x06\x59\x1e\x2d\x27\xe2\x7f\x5e\x59\x36\x7c\xa1\xf2\xeb\x61\x9a\xa4\x59\x6b\xaa\x00\xa3\xeb\x37\x2a\xe1\x1f\x9a\x18\x28\x31\x0c\x21\x60\xb6\xd8\x27\x78\x4b\x14\x1f\x64\x15\xe9\x47\x29\x1c\x49\x94\x14\x0c\x3d\x2c\x61\x16\x54\x9f\xc7\xff\x80\xa1\x97\x22\x52\x5d\x50\x72\xb1\x93\x95\x0e\x62\x2a\x6c\x1a\x25\x98\x7a\xc9\x97\xf5\xb2\x75\x97\x44\xca\x79\x49\x77\x28\xf6\x7f\x0e\x45\x8d\x3d\x0d\x1e\x05\xce\x22\x46\xcb\x86\x1c\x10\x60\xed\xd9\x29\x70\xbb\xb5\xd9\x1e\x45\xdc\xfd\x7b\x74\x1f\x68\x17\xdd\xc4\xf3\x42\xcc\xb6\xab\xab\x7a\x5d\x18\x31\xc4\xcb\xad\x0d\x55\xa7\x83\xb2\x22\x7f\x54\x2d\xee\xa1\xfa\x57\x3a\xb6\x90\xd9\x6d\x79\x2e\x0b\x74\xad\xf9\xda\xeb\xaf\xa6\x65\x56\x60\x6a\x21\x36\xbe\x87\x87\x03\xd4\xe6\x8e\x0d\x35\xb5\x58\x1a\x89\x96\xc7\xdf\xfe\x4a\x77\x7b\x1b\xb3\xca\xad\xd3\x19\x8f\xb7\xd8\xab\x81\x09\x97\xa6\xec\x73\x7c\x6d\xf9\x46\xa3\x72\x78\x9a\xf4\x8d\xf2\x81\xe2\x7a\x0c\xbf\xa8\x79\x47\x2d\x2c\x54\xef\xb0\x39\xcb\x65\x37\xd9\x67\x7c\xc5\x77\xde\x73\x1b\x96\x5e\x9d\x0e\x47\xe1\x71\x05\x5a\xf1\xde\x97\x85\x19\x73\x7f\x15\x78\xd2\x2b\x38\x6f\xf9\x85\xd3\x20\x1d\x9a\xbc\xb0\xe0\xa0\xa8\xd2\x9c\x24\x24\xff\x5c\xc1\x9a\xd9\xcb\x40\x4a\xd9\x8f\x2b\x21\x4e\x5b\xe4\x2d\x0f\x58\xba\x84\x8d\x48\x8c\x06\x7c\xa3\x67\x6d\xb8\xfe\xa8\x5b\x47\xe5\x93\x5d\x85\xdb\xff\x43\x24\x5e\x7a\x93\x14\xdf\x6b\x35\xa9\x1e\x65\xdc\x96\xec\xc8\xb4\x20\xf8\x03\x68\x7b\x16\x6c\x55\xb5\xf9\x61\x5f\x3b\xa5\x5a\x63\x79\x61\xa3\x44\xab\x79\xdf\x56\x3e\x0b\xb7\xd5\x4a\x7e\x2d\x1a\xd9\xc4\xbe\x49\x0f\x04\x8a\x3b\xdc\x8e\xe4\x17\xae\x60\x99\xd9\xd0\x46\xab\xb6\xbf\xdb\xa3\xac\x2e\x23\x53\x84\xa2\x01\xb6\x5b\xa4\x03\xf7\x27\x0a\x1b\xc4\x3e\x83\x48\xaa\xef\x07\x53\x26\x87\x5a\x62\xb7\x1c\xc9\x11\x2a\xc9\xbb\x92\x57\x3b\x5b\x8b\xc7\x96\x66\x3b\xb1\x5d\x2e\x48\xa8\xcb\xa9\x0c\x3b\x66\xe9\x45\x05\x8f\x00\x39\x18\x55\x34\xd6\x89\xc7\xae\x7b\x03\xfc\x96\x13\x3a\xeb\xdb\xd1\xd4\x87\x1b\x46\x99\xfd\x7f\x93\x81\xe1\x9b\xc8\xca\x51\xcf\x6b\xff\xb1\x49\xbc\x32\x64\x3a\xef\x18\x1b\xcb\x26\x8e\xd3\xb5\x76\x4b\x79\x66\x7a\xa2\xc3\xff\xa8\x6a\x1f\xef\x4c\x45\x5f\xe6\x0d\xd3\x52\xb6\xbc\x67\x03\xa5\x26\x5e\x8d\xd0\x36\x8a\xd8\xe2\xc1\x2a\x7f\x68\xa9\x18\x93\x9d\x70\xa4\x06\xba\x5f\xf5\xfa\xd2\xb1\x02\x1a\x6d\x51\xb1\x91\xaf\x9b\x9c\x1d\xaa\x88\x24\x74\x61\x03\x7b\xcb\x04\xbe\xd6\xaa\xc5\x8c\x0a\xb3\xfe\x68\xf5\x64\x40\x6b\x80\x16\x13\x0a\x6d\x77\xb5\x91\xf7\x2d\x94\x36\xf0\x7e\xb8\x17\x39\x01\x30\x67\x6f\x86\x90\x1b\xc3\x79\x1d\x73\x09\x58\xe2\x07\xd3\x63\xd1\x20\x76\x49\x12\xef\xc2\x21\x77\x91\xc7\xe1\x59\xbe\x7e\xa0\xce\xc7\xa6\x30\xef\x60\x27\x1f\x97\x99\x0b\xf3\x18\x50\xa0\xc4\x12\xfe\x41\xd3\x0e\x49\x36\x91\x6d\xe5\x21\x80\xda\x19\x1e\x34\xfa\xbf\x48\x90\x6e\x4c\xfc\xc3\x18\x59\xc3\x2c\x37\xf1\x64\xd3\x06\x6d\x2a\x72\x65\x79\x40\xfc\x22\x7c\xfe\x07\xea\xc8\xfa\xc0\x2d\xde\x74\x79\x39\x1f\xa6\x99\x25\x72\x22\x9a\xc6\x57\x31\xdc\x52\xdf\xa8\x86\x1b\x05\xcf\xfb\x54\xf5\x13\xcd\xed\xd6\x2f\xcf\xf3\x7e\xfb\xa1\xc2\xc6\xc0\x3a\x04\x10\xd7\xdd\x35\x91\xe8\x85\x05\x0a\x62\x64\x76\xa0\x72\xf5\xa9\xa2\x39\x7e\x3a\x51\xa5\xfa\xf0\xf5\xd2\x30\x26\x47\xbb\x39\x57\x3f\x0e\x9d\x45\x18\xe0\x8b\x8e\x58\x13\xc0\xc1\x84\xd4\x26\x36\x3d\xe1\x23\x09\xb5\xc7\xf7\xcb\xef\x04\x1e\x29\x74\xdc\xad\xc3\xdc\x54\x11\x45\x9b\xd6\x2b\x90\xbc\x3f\x4d\xcf\x04\x5b\xda\x4f\x6d\xf8\xd6\xf1\x89\x9a\x40\xc0\xd2\x6c\xc7\x64\x03\x9b\x14\x51\x12\x19\xf4\x19\x70\x84\xfe\x9e\xd6\x00\xfe\x3d\x15\x45\xc6\x11\xd1\x20\x38\xf1\x95\xde\x4b\xcb\x09\x3b\xed\x01\x86\x0c\x13\xfa\xc9\xae\xa2\xc3\x45\xc5\x30\xa2\x07\x5d\xdd\x9c\xee\xb0\xf2\xb5\x36\x8d\x4c\xf3\x30\x5d\x6b\xf9\xc6\x01\xd4\x1c\xa5\x51\xe1\x97\xe5\x8b\x07\x5e\xd8\xeb\x29\x51\x77\x68\xc5\x63\xf4\xbf\x00\xd5\xd0\x65\x32\xde\x7b\xe0\x03\x9a\x0f\xa8\x14\x03\xef\x4b\x3b\xf9\xc2\x4f\x75\x5b\xdf\x92\x0c\xf5\xb8\x4a\x5d\xf7\x6d\x28\xd1\x8b\x9f\xde\x50\xfb\x62\xa7\xeb\x75\x6b\x9f\x7d\xf6\xab\x34\x83\x51\x8b\xbc\x12\x68\x5e\x70\xa0\xc4\x09\xae\x29\xc7\x80\x6b\xf4\x7b\x71\xa8\x6c\x4e\xa6\xad\x18\xab\x23\x19\x1b\x01\xa6\x0e\x22\xe5\x9f\x50\x34\xc3\x1c\x27\x1a\x13\xdc\xd3\x0f\x83\x6d\x34\xaf\xea\x47\xba\x64\xd5\x05\xd7\x37\xb0\xdb\xa0\xde\xf0\x63\xcd\x21\x3a\x4a\xa5\x5e\xb1\x4e\xa1\x62\xad\x33\xa4\xf3\x4e\x6f\x5f\xd2\x2e\xe6\x86\x6e\x6e\xde\xb1\xad\x3d\xf0\xef\x6a\x03\x1b\x69\xb1\x13\xa6\xa6\x8a\x83\x18\x26\xe7\xf2\x0a\x2f\x41\x72\x52\xc1\x2a\xb9\xdd\x28\x50\x3b\x25\x58\x9c\x8e\xa8\xe4\x89\x03\x44\xbc\xf5\xa8\x56\x2b\x60\x6a\x8f\x91\x8c\x92\x22\x8b\x42\x01\x9f\x3a\x15\x04\x65\x10\xd5\xa4\x14\x66\xdf\x08\xcb\xdc\x81\xf5\xf1\x7b\xb8\xde\xe8\xdc\xee\x5c\xf8\x76\x5a\xe7\x20\x69\xf9\xa6\x99\xf1\xee\xeb\x6c\x7a\x86\x24\xe4\x6d\x7a\xd2\x2e\x62\x5b\x74\x54\x92\xba\x8f\xeb\xfc\xa1\xce\x72\xf9\xe6\x9b\xae\x32\xe7\x3c\x76\xbd\xdf\xae\x22\xb7\x85\xe9\xa8\x17\x25\xb2\x4b\xb9\x90\xd7\x1b\xda\xb8\xd8\x7b\x4c\xfa\x1c\x2d\xa5\x0f\xf8\x99\x12\xa5\xfc\x2c\x90\xa8\x35\xb1\xd9\x6a\x5a\xe6\x89\xcd\x73\xaa\xd9\x09\xb8\xac\xe5\x68\x91\x57\xf5\x9d\x1d\xd9\xce\x3f\x3a\x3c\x3b\x5f\x9d\xd8\xcf\xf8\xd8\x1c\x90\x04\xf1\x13\x52\x20\xf2\xf3\xdc\x9d\x70\x0d\x8d\xb9\x39\x67\x56\xaa\x9a\xf3\x6f\xe9\x43\xf5\xa4\x92\xc6\x3e\x8d\x55\x26\x47\x57\x6b\xc9\x53\x5a\x7c\x80\xf7\x2e\x45\x9a\x8e\xcc\xe7\xec\x13\xef\x4c\x94\x97\xfd\x49\x4c\x79\x87\xe5\x73\xb0\xad\x4b\x78\x58\x58\x71\x9f\x06\x4a\xe2\xf6\x9f\x22\x0a\x43\x7c\xc1\x3d\x7e\x54\xc4\x7c\xbe\x33\x2a\x9d\x73\x54\xb3\xe5\xb6\x43\x40\xbc\xb1\x4e\xdd\xf1\xea\x43\x44\x33\xb2\x1a\x40\xd1\x92\x6c\xd0\xde\xef\xdb\x30\xea\xbb\x8d\x5f\x2c\xe6\x7d\xcd\xe7\x82\x62\x20\xde\x70\x87\xa8\xb7\x6f\x56\x96\xcd\x6a\x6a\x4d\x87\x6a\xe1\xca\xe3\xd5\xa0\x0a\x89\x57\xf9\x1f\x5f\x44\xd2\x80\xbd\xeb\x94\x82\xf5\xdf\x40\x92\x8f\xf2\xc5\xbf\xc5\x80\xb1\x1c\x11\x71\xf0\xf1\x50\x58\xee\xdf\x89\x04\x38\x84\xcf\x2d\x05\x80\x6d\x21\xe3\xc0\xb9\x02\xc9\x6d\xe7\x86\xf3\xa2\x54\x3f\x19\x87\x8a\xd6\xc5\x3d\x95\x14\x0c\xcc\x7a\x9c\x66\x60\x5f\x0b\xa4\xcf\x13\x12\x5b\x1b\x0d\xa4\x87\x32\xe9\xa5\x19\x4e\x41\x24\xbf\xf8\x35\x7c\xdd\x24\x40\xdd\xab\x22\xc8\xd6\x94\x5b\x47\xf5\x0e\xbe\xae\xbd\x63\x69\xb6\xf3\x33\x7f\xf3\x1b\xbf\xb8\xd4\xaa\x16\x04\x73\xa4\x30\xaa\x42\x98\x7a\x66\xfb\x62\xea\x2c\xcd\x2e\xa9\xfe\xff\x59\x05\xdd\xd2\xf1\x69\x6c\x8b\x7d\x5e\x1e\x9c\xe9\x03\x28\x29\xb4\x36\x14\xc0\xe0\x42\xa0\x6d\x85\xcf\x6b\x19\x96\x89\x7a\xbc\x1f\xe3\xa0\xc0\x1a\xf8\x8e\x82\x0b\xee\x21\xf6\x02\xbe\x7e\x0f\x85\x19\x88\x88\x39\x3b\x54\xf2\x07\xaf\xf0\xea\xbf\xaf\x34\x5b\xc6\xcf\x8f\x9e\xa7\xcc\x53\xa4\x3b\xab\xaf\xe7\x6b\x55\x7b\x1e\x99\x88\xd7\x02\x56\x17\x37\xe7\xf9\x45\xf0\x8c\xe7\xcd\x47\xb9\xc9\x46\x66\x24\xe8\x3e\xdd\x11\x92\x32\xc9\x53\x0a\xcd\x34\x1a\xa7\x65\xd2\x57\xde\x55\xb7\x95\x77\xd5\xed\x46\xa5\xf8\x7c\x3d\xb1\xd9\x00\xc9\xbe\xdb\x1e\x3c\xec\xb7\x69\x65\x56\x81\x60\x16\xa5\x99\x72\xae\xfa\x3e\xee\x80\x5f\x34\xc1\x88\xd2\x5e\x8e\x62\x24\x7d\x13\x96\xcf\x29\x65\xd0\x72\xca\xe5\x99\xf6\x8d\x30\x2e\x49\x63\x66\x71\xfe\xd0\xd6\xe5\x09\xcb\x1c\x3c\xad\x6d\x7f\x6c\x36\xce\xa2\xdc\xee\xc6\xfe\x2a\x2e\x16\xd5\xa7\x61\xaf\xbc\xad\xd0\x29\xd7\xb5\x75\xd5\x45\x65\xf0\x78\x5e\xd3\x58\xcf\x36\xea\x3e\x83\x96\x1e\xd9\x6c\x46\x89\x14\x5e\x84\x5e\x0d\x92\xbf\x3b\x4a\xcb\x6d\x6f\x57\x99\x67\x9f\x9e\xec\x53\x52\x09\xeb\x8f\xfb\x3e\xd0\x35\x6d\x33\xc1\xa8\x7d\x86\x9f\x68\x8e\x3d\xc4\x07\x70\x5e\xfc\x84\xd8\x99\x08\x18\xd8\x41\x16\x9b\xd6\x51\x55\x3d\xbe\x4a\xd1\x8b\x50\x97\x7d\x03\xe5\x37\x74\xa6\xff\x3e\x4e\x1e\x6c\xf8\xbf\x1f\x78\x5a\xfe\x97\x74\x8a\xb1\x07\x9b\x6a\x56\xf6\x52\x4b\x55\xc4\xb9\x39\xde\xa9\x6e\xd2\x81\xc3\xd7\xb8\x15\x04\x6f\xec\x49\xc1\x2f\x6a\xb1\x38\xf5\x10\xf3\x32\x0c\x6d\x9e\xa7\x99\xd2\x73\xfc\x50\xe9\x39\x7e\x38\x25\x28\x99\xb2\xa4\x3a\xb6\xc5\x8f\x03\xe5\x18\xf6\xf1\xe4\x69\x29\x7a\x98\x70\xc5\x16\x96\xf8\xd9\x54\x23\xc5\xe1\xc9\xbc\x37\xec\xc7\x4f\x6c\xb8\xf9\xfd\x8f\xbe\xda\x6d\xaa\xf4\xa7\x71\xdf\xc2\xbb\xe4\xa0\xb7\x11\x58\x58\x70\x1d\xaa\x86\x30\xa6\x67\x43\x43\x24\xa5\xa5\x59\x3e\x33\x4f\xd0\xc6\xcd\xd7\xc1\x53\xbe\x4e\x36\xb6\x45\x49\x91\x9a\x63\x02\x1c\x45\x85\x89\x5f\xa8\x2c\x3f\x37\xb1\x7d\xd4\x77\x9b\x17\x27\x2a\x4a\x02\xb6\x1e\x30\xff\x0b\x28\x54\x3b\x4c\x8d\xaf\x92\xf1\x2c\x72\xa0\x6f\x0f\x46\x38\x0f\x94\x27\x33\xc5\x02\x25\x76\x73\xa1\x46\xd3\x39\x3c\xbb\xd8\x29\x6c\x52\x70\xe5\xf3\xf0\xac\x57\x60\x74\xed\xe5\x53\x4d\x2b\x3d\x4a\x56\xa3\x3c\x22\x9d\x34\x87\x9d\x05\xd5\x40\x5a\x87\xdb\x4d\x37\xaa\xf1\x0f\xd3\x38\xcd\x62\x9b\xe7\xce\x4f\x9e\x59\x9b\xf4\x14\x84\xc1\xa9\xdc\x62\x6d\xfe\x14\x4d\x6b\xcc\xd8\xfd\xda\x5c\x69\x1f\x6d\xe2\x98\xe2\x3b\x90\xd0\x20\x86\x3a\x4e\xb2\x7d\x8e\x79\x25\x2e\x85\xbf\xfa\x24\x11\xe8\x90\xd3\xb5\x37\xaa\xa9\xce\x6a\x30\x60\xb9\xc9\xa7\xd2\x18\x53\x24\xf2\x8b\x5f\x87\xa3\xba\x12\x2a\x7e\x05\x01\xc2\xdf\xfa\x4b\x5d\x25\x1c\xf1\xdf\xfe\xa5\xae\xa7\x18\xfc\x45\x6f\xd2\xfa\x57\x7e\x06\x35\x68\xdc\xd7\x16\x2d\x3d\x5c\x1f\x9b\xf8\xe0\x2a\x0f\x63\x3b\xe3\xe1\xf7\xbb\xba\x9e\x56\x75\x49\xef\x21\xcc\xdf\x92\x86\xa7\x24\xb3\xaf\x97\x51\x52\x94\xe3\xea\x33\xdc\xde\xf3\xa5\x62\x49\x9c\xc2\xcf\xc6\x6d\xbf\x43\xbb\x8d\x58\x42\xb9\xdc\x7b\x98\x26\x76\x5d\xdb\x63\x69\xfe\xf3\xb9\xc0\xff\x9d\x59\xb1\xc0\x61\x62\x37\xb9\x83\x6d\x06\xbb\xd7\x8c\xe2\x60\xe9\x03\x2b\x8e\x42\x9b\xe4\x56\x90\xfe\xb2\xb0\x15\x5c\xf8\xe3\x86\x5e\xc4\xc1\x4e\x68\xaa\xa8\xa4\xfa\xbd\x5c\x26\xd1\x0a\x6f\x57\x9b\x4a\x3c\x79\x1c\x8d\xd6\x55\xf9\x1e\xf9\xb6\xf4\x41\x6b\xfb\x41\xb5\x53\x0d\xa2\x7e\x7f\x5d\x41\x29\x8e\x29\x28\xc5\xb1\xda\xb1\x58\x6d\x07\x99\x35\xc5\xb0\x4a\x6b\xbc\x9a\xff\x7b\x0a\x2b\xfc\x9e\x3a\xc2\xfa\x96\xd4\x66\xd2\x24\x07\x0a\x04\x15\x1b\x4e\xe3\x1d\x95\xe4\xdb\xdf\xf4\xb0\x44\x25\x27\xa7\x74\x0b\xb4\x91\x4b\x62\x56\xcc\x9b\xa6\x48\x5b\x2d\x6d\x47\xe7\x91\x9d\xc7\x1a\x12\xd7\x83\xae\x64\x8c\xfa\x94\xd8\xbf\xd1\x57\x48\xc5\x76\xfb\x46\x5e\xed\x0c\xcb\x16\xce\xbf\x0c\x06\xe1\xbe\x44\xa0\xe4\x2d\xeb\xe2\x71\x2f\xcf\x1f\xea\x8c\xc8\x96\x6c\x69\xf6\xa0\xf3\x8e\xa6\x1d\x17\xdb\x20\xc3\x07\x65\xcb\x55\x95\x4f\x42\xa1\x39\x16\xfa\x79\xca\x36\xc5\xc3\x9d\x7e\x2b\x22\xb9\x73\x8a\x84\xc2\x25\x6d\xfe\x87\x46\xf9\xbb\xc2\x24\x7d\xd2\x66\xf4\x88\x5e\xd5\xdd\x7d\x6f\xf2\x55\x05\xeb\xcf\xa2\xb0\x8c\xc9\x18\x79\x86\x36\x14\x4c\xb6\x4d\x65\x75\x7a\x42\x75\xf9\xb8\x3b\xcf\x95\x04\x97\x9d\xc4\xa6\x1c\x0c\xe3\x29\xde\xcc\x39\xad\x1e\x7a\xae\x89\xaa\x3c\xce\x22\x5b\x0d\x5a\x35\x4e\xa2\x82\x5f\x7d\x13\x10\x05\xa7\xa6\xaa\x9b\x72\xe4\x98\xfe\xaa\x21\x55\x0d\xee\xb9\x20\x88\x65\xea\x0d\xbf\x68\x5c\x5a\xcb\x69\x16\x42\xfd\x11\x0d\xac\x3b\x38\xa6\x50\xab\x04\xda\x4a\xf5\xb0\x7d\x99\xc9\x43\xa6\x8b\xcc\xf4\xcd\x7a\x5b\xed\x48\xef\xaa\xf2\xd9\xdb\xf4\xd3\xb1\xe5\x1c\xd5\x16\x03\x6f\x44\x79\x11\x25\x03\x52\xae\xe3\xcd\x9a\x32\x44\x66\xcf\x04\xbe\x81\xfd\xb7\x91\xcb\xba\x1d\xdd\x01\x76\x91\x36\x39\xba\x8d\x57\x59\xbf\xa4\xaa\x26\x7d\x3b\xce\x6c\x9e\x5b\x3c\x75\xb4\x3f\x3f\xa3\x4f\xe7\xeb\xa6\x93\x7e\x14\x25\xd1\xa8\x1c\xa1\x2f\x85\x9b\x3a\xa5\xb0\xd9\x37\x95\x90\xee\xdf\x47\x4a\x88\x6c\xe2\xb4\xaa\x03\xf7\xa2\x7e\x95\xce\x92\xa4\xe3\xd6\x4e\x65\x9f\x8e\x72\x39\xde\x00\x3d\x66\xc7\xca\xad\x3e\x49\x80\x97\x7e\x0c\xaf\x37\xa9\x60\x00\x9c\x85\x93\x13\xbb\x38\x77\xb2\xf9\x85\x56\x69\x15\x81\x18\x51\x19\xab\x86\x4d\xd4\xc7\x7c\x77\xba\x9f\x45\xab\x76\x37\x7d\x06\x98\x9e\x5b\x8a\x04\x01\x2f\x1e\xa4\x43\x50\x9a\x16\x15\x4f\x5a\x75\x4e\x25\xd7\xe1\xcb\xce\x36\x30\xbd\x3a\x71\x9a\x0c\x5c\x2f\x06\x41\xf9\x19\xa5\xfe\x77\x46\x21\xf5\xf2\xb5\x68\xd0\xd2\x1e\x4f\x0a\xc9\x7b\x09\xa1\x36\x47\x06\xff\x7f\x76\x26\x91\x0d\x46\x53\x3f\x7c\x36\x74\x24\xf0\xf4\x43\x16\xab\x00\x4e\xe0\x48\xa0\x52\x99\x7b\x4d\x0b\x32\x23\x8d\x23\x3a\xec\x30\x00\xb0\x17\xc7\xb6\xbd\x85\xb0\x13\x91\xd8\xfe\xee\x3e\xd7\x77\x8a\x46\x63\x5a\xf6\xce\xb8\xd6\xe5\xea\x27\x55\x4f\x70\x98\x96\xb9\xdd\x3f\x55\xdd\x79\xf1\x80\xa7\xa4\x56\x0f\x03\x35\xbb\x5b\xa8\x43\xa0\x3c\x7a\x59\x49\xbc\xa0\xc7\x07\x9c\xc0\xaf\xe1\x69\x20\x64\xf8\x1e\x86\x4c\x20\x09\xbe\xfd\xbc\xf7\xf8\x14\x2d\xe8\x7d\xec\xa8\x58\x47\x3b\x10\x01\x21\x91\x38\xa5\x69\x12\xbb\x95\x31\x78\x51\x66\x49\xba\x6a\x33\x82\x69\x62\xb2\x80\xfa\xef\xac\x67\x17\x16\x78\x86\xd5\xf5\xfe\xab\x6d\x67\x90\x8c\x01\x19\x10\xe5\xbd\xea\xcd\xa2\xc5\xed\x73\x91\x38\x5a\xe5\x8a\x90\xcc\x6b\x96\xed\x16\xb5\x35\x5f\x0c\x39\xda\x68\x0c\x6e\xb2\x81\x2d\x5a\x9e\x62\x72\x84\x86\x57\x9c\x7f\x14\x3a\xcc\xae\x3e\xff\xf0\x4d\xfa\x61\xe6\x2d\x83\x38\xed\x99\x58\xf1\x64\x58\x5c\x12\x64\xd8\x9f\xd0\x4d\x89\x8c\x38\x7d\xa0\x30\x05\x14\xe1\x24\xea\xdb\x0c\x2e\x3f\x5b\x97\x27\x8a\x66\x4d\xc5\x88\xad\xcb\x55\xa4\xb8\x75\xb9\x41\x47\xe9\x40\x47\xf6\xb5\xb6\xf7\xc0\xdf\x06\xa7\x6a\xd8\x36\x7a\xd6\x8e\x05\x34\x23\xe4\x2f\x9a\x58\x42\xf8\xf2\x35\xbc\x71\x99\xe5\xa5\xa5\xac\xdc\x19\x39\xb4\xbc\xa9\x83\x03\x6b\x8e\x4c\xf6\x46\x94\x83\x83\x2d\x0d\x41\x15\x86\x34\x56\xa5\x8b\x61\x44\x6a\xad\x1e\x72\xf0\x91\x92\x03\xe6\x84\x1b\x4b\xf2\x46\x6d\x49\x2e\xcd\x76\x48\x78\x8a\xb5\x74\x1c\xf3\xc5\x55\x27\xfe\xbd\x16\xf5\x3a\xef\x10\x28\xaf\xa5\x43\x93\x24\xa6\xa5\x85\xde\x7e\xa4\x0d\x13\x7f\xd4\xa4\xda\x53\x64\x26\x4a\xe8\x87\x62\xda\x7c\x97\xbe\xc8\x21\xbf\xab\xd5\x22\x0d\x9f\xed\xf1\x16\x05\xa2\xe9\xaa\x75\xbd\x28\xc1\x24\xd0\x77\x0a\x5a\xc1\x1f\x8a\xcb\x26\x4a\x40\xac\x73\xfe\x23\xb7\xa6\x90\x89\x3e\xf7\xff\x93\x26\x12\xe9\xb2\x60\x56\x5c\xd8\x34\x37\x2f\xd7\x8e\xc2\x3c\x2e\x85\xf8\x2e\x52\x8b\xaa\x3b\x37\x51\x98\xb0\xdc\xda\x11\x43\x0b\x10\x95\x22\xac\x97\x8e\x27\x0d\x31\x6a\x39\xc7\xf0\xbc\x94\xdd\xfe\x01\xc7\x73\xf7\x4c\xd9\xef\x3a\x6c\x48\x2f\x32\x79\x5b\xe9\x55\xdf\xd3\xf8\x96\x40\x89\x4c\x9f\x0d\xbc\x24\xb7\x09\xc3\x74\x34\x8e\xa3\x9c\xb4\x5f\x5a\x4e\x14\xfd\x62\xa0\x58\x22\x17\x9b\x58\xa7\xd5\x4e\x95\x47\x83\x21\x0a\xd7\xd8\x47\xae\x29\x47\xdc\x6b\x8a\x0a\x9e\xd9\x38\x1a\x44\x69\x02\x71\x3a\xf1\xb5\xf6\x0c\x93\x0b\xb5\xd9\xf8\x22\x4d\x91\x70\x85\x07\xd5\x99\x2f\xaa\xc6\xf5\xd3\xaa\x64\x97\x84\x71\x99\x0b\x07\x4a\x6c\x8a\xe8\x96\xf9\x85\x5a\x81\x51\xb2\x6a\xf3\xe2\x51\xca\x2f\xb0\xcb\x4d\xe9\xe4\xfd\xb3\x89\xa7\x85\xdc\x42\x18\xc2\x7f\x15\x78\x94\x1f\x80\x7c\x82\x45\x53\x10\x74\xed\xf1\xc1\x5d\x01\x91\x7d\x79\x42\x0d\x87\xc9\xd3\x64\xb7\xdf\x19\xaf\x29\x0d\x81\x19\x94\xbf\x10\x2b\xfe\xa7\x89\x6a\x78\xff\xa7\xc0\x57\x71\x76\x01\x05\x25\x27\xc3\x76\xe4\xe2\x73\x9d\x30\x1d\x8d\xca\x24\x0a\xc1\x6e\x9c\x51\x3a\x39\x3f\xc2\xdd\x62\x60\xb4\xb6\xcc\x94\xcd\xf5\x45\xa5\x51\xda\xb3\x71\x64\x57\x6d\xbe\xdb\x3f\xdd\x1f\x91\x43\x03\x82\x80\xeb\x9a\x5f\xf1\x23\xdc\x34\xff\x8b\x52\x33\xba\x38\x69\x7d\xe3\x57\xdc\xee\xf5\x33\x0f\xd9\xfc\x6d\x98\x26\xe9\x28\x22\x83\x7e\x4f\x45\xe7\xc2\x0c\xbf\x08\x9e\x50\x1a\x9b\x36\x8e\x59\xfd\x56\xa4\x50\x3d\x48\x6b\x73\xf2\x98\xa7\x4e\x12\x1e\x4a\xcc\x47\x98\xe8\x8c\xf5\x70\x54\x91\x7c\x3e\x56\xbc\xa7\x3a\x35\x80\xcc\x79\x57\xd0\x2a\x44\x5e\x77\x16\x63\xc6\x2f\x9a\x0b\x39\x85\xcd\x7a\x26\x59\x51\x90\x4a\x40\x65\xf8\x5a\xd1\x1f\x0b\x9b\x65\x5c\xd4\xc3\xe6\xc0\x52\xbc\xfc\x42\x15\x6e\x0e\x1d\xe6\xb5\x4e\xad\xeb\x6f\x3d\xd9\xf5\x98\xa7\xcb\xba\x20\xfb\xc8\x86\x96\x4e\x8d\xb9\xb3\x87\x94\xfd\x77\x14\xfa\xee\x77\x02\x4f\xfb\x58\x1e\xa9\x1c\x7f\x2b\x50\xef\xd8\x6a\x14\x9b\x1a\x44\xd2\xbe\x02\x8a\xe1\x1f\x2b\x53\xc3\x7f\x5c\x3b\x64\xab\xfc\x35\xb7\x85\xe8\x1b\x4b\x15\xfb\x2d\xbd\xf5\xbd\xa5\x18\x67\x51\x42\x14\x6d\xa7\xda\x3e\x43\x55\x26\xbe\x56\xde\x51\x26\x36\xd9\xa8\x35\x65\x17\x33\x65\x04\xe3\x41\xc6\x71\x6c\xc3\x42\x8e\x6b\x99\x29\x53\x53\xe8\x09\x57\x3c\x62\x3f\x0e\xfa\x58\x3c\x05\x08\xb2\x8a\xe0\x2c\x7d\x85\xc4\xc8\x1e\xea\x61\xd9\x9a\x3b\x5c\x6f\x7b\xe6\xdd\x07\x34\x2e\xc8\xf5\x6e\x68\x9d\xfb\xcb\x35\x52\xe0\x81\x03\x9d\x5e\x9c\xae\xb5\x15\xac\x0d\x82\xd9\x68\xf5\xdd\xa4\x80\x4b\xf0\x43\xf5\x94\xe0\x20\x93\x63\x5a\x4a\x9d\x60\x53\xc9\xe2\x6d\xd6\x8a\x87\xb2\xfe\x58\x19\x2f\xe3\x56\xb1\xe4\x8d\x34\xa3\x24\x27\x54\x87\x59\x95\xfb\xe7\xa4\x26\xc0\xdc\x4b\xdc\x16\xc2\xb3\xeb\x28\x9a\x22\xf2\x42\x70\x2d\x3a\x91\xb4\xad\xf2\x3f\x50\x47\x16\x07\x0d\x0a\x01\xfc\xee\xba\xa7\xd2\x1c\x19\x57\xaf\xb5\x3d\xc4\xea\xe4\x94\x7a\x28\x3d\x0c\xb1\xbb\xfb\x9a\x92\xa2\xe8\x99\x2c\x33\x79\x4e\x1d\x20\xba\x2f\xd1\x6e\xf3\x19\xeb\x59\x55\x03\x1a\x97\xd9\x38\xcd\x6d\x8e\xa6\x29\x10\x7c\x77\x14\x1c\xeb\x8c\xf2\xab\xd8\x54\x62\x51\x09\x36\x5b\x02\xaf\x03\x52\xf2\x63\x2d\x3e\xf9\x5d\xed\x79\x8e\x8a\x8d\x90\x42\x15\x94\xf6\xb8\xe2\xa7\x8f\xa2\x3c\xaf\xfe\x37\x1e\x47\x33\x2d\xb7\xab\x42\xf2\x07\x30\xe3\xf3\x4a\x4d\xec\x88\xc6\x1f\x9f\xaf\xcd\xa9\x2a\xc0\x8b\x0d\xaa\x26\x2c\x52\xa6\xb4\xd3\xeb\xdd\xe3\x5f\xe8\x94\x45\x14\x93\x44\x34\xe6\x21\xf6\x80\x4d\x5d\x5e\x83\xc9\xb5\x34\x7b\x1b\xe2\xbc\xb1\x35\x2b\xdb\x0d\x94\xd5\x19\xfe\xa4\xeb\x56\x15\x59\x29\x7d\x2d\xc7\xfc\x7e\x44\xfe\x75\x57\xeb\x5b\x07\x3d\xc6\x67\x61\xc1\x8b\xac\x39\xfa\x37\x1f\xf7\xc8\xaa\xbe\x84\x8d\x27\x16\xcb\xdb\xb5\x89\x54\xc5\xf9\xc3\x34\xee\x93\xf3\xb2\xd8\xc6\x79\x08\xfd\x55\xba\x29\xb4\xee\x8e\xea\xfa\x59\x38\x1a\xb7\x95\x2a\x2b\x9f\x4a\x48\x05\xef\x2b\x50\xe8\xae\x6e\x03\x02\x7a\x6d\x18\x8d\xf2\x28\x34\x31\x17\xfb\xb8\x58\x49\xb7\x23\x85\x4b\xd9\xa3\x8a\x61\x9a\xa5\xe5\x60\x18\xaf\xcf\xd4\x12\x33\xe4\x73\xbb\xbb\xba\x7b\x49\xeb\x4c\xf4\x16\x1a\xe2\x65\xca\x87\xe9\x8e\x75\x9b\x4c\xd5\x08\x1e\xed\xfa\x2e\xc3\xce\x0d\x89\x28\x43\x13\x8f\xda\x3e\xdb\xfe\x97\x81\xaf\x12\xdd\x55\x1d\xe6\x7b\xaa\x3e\x93\x97\xd9\x2a\x09\x7e\xb8\x89\x05\x29\x17\xc1\x9c\x28\x91\x82\xbb\x5a\xfd\xcc\xac\x44\xc9\x60\x17\xcd\x5f\xc1\xe8\x3c\xec\xb8\xac\x06\x01\x01\xd1\xe7\x14\x85\x61\xbb\xf8\x49\xed\x68\x7a\xae\xd3\x4b\xd7\x8c\xc8\xa0\x8a\x56\xb7\x42\x92\xb7\x37\xb6\x0f\xd5\xdc\x5c\xc7\x54\xfb\x9f\x21\x2b\xf7\xc3\xb3\x9c\x45\x9d\x54\xea\x3d\x77\xa7\xa8\x7a\x0d\x1c\x99\xb1\xc9\x4c\x1c\xdb\x78\xc6\xaf\x33\x4e\x68\xf0\xa6\xcf\x15\xcb\x9a\x85\x64\x05\xfc\xa9\xa1\x6d\x7d\x1b\xe7\xc4\xa9\x14\x1f\xfd\x96\x13\xa9\xbd\x3f\xf1\x5e\x25\xa8\xdc\xe1\xd4\x64\xf5\x49\x94\x05\x2f\x28\x2e\x76\x68\xb2\x34\x8e\x12\x3a\x45\xb7\xe0\xbf\xbe\x75\x3f\xd8\xaf\x47\xdf\xee\xa3\x9e\x16\x1e\xee\xd6\x44\xc9\xdd\xcd\x80\xa5\xea\xcc\xa3\x1d\xc6\xf7\xc4\x44\x89\x99\xb5\x37\xd4\x3c\x51\x5b\xe5\x09\x6a\x73\x2a\x25\x5e\x41\x87\x32\x80\x9e\x9b\xb1\x74\x47\xd0\x74\x78\xa4\xeb\xa5\xf5\xef\x4f\x7e\xae\xf6\x50\x0b\x1b\xdb\xe9\xe0\x16\xdb\x0b\x76\xcf\x73\x0a\x8b\x71\x6e\x4a\xf0\xaf\xca\x51\x3d\x65\xe6\x6f\x61\x26\xf2\x8b\x29\x3c\x4b\xb6\x9e\xb7\x54\xf9\x8d\x9d\xfa\xf8\x45\x53\xd1\x30\x4f\xc3\xc8\x16\x5c\xac\x75\x4b\xd5\xcd\xb9\xcf\x03\x85\x4b\xf8\xd4\x8b\x5e\x45\xcb\x05\xcd\x31\x11\x80\xf6\xdd\xca\x1d\xb4\x64\x50\xa5\xbe\xa3\x98\xdf\x83\x34\xeb\x99\x70\x68\x57\x77\xb5\xe6\xe6\x5c\x55\x16\xdd\xfb\x29\x8a\xae\xdc\x16\xdd\x06\x53\x81\x26\x53\xbc\xa0\x7a\xe9\x63\xbe\xba\xc8\x9c\x28\x2e\x16\xec\x75\x25\xf8\x7d\x3d\xd0\xfa\xc2\x2b\xb6\x1c\xb7\x94\x04\xe3\xa7\x1a\x4c\xf2\x69\x53\x20\x6c\x13\x56\x38\x6a\x6d\xe7\xa7\x08\x20\x43\x03\xd6\xb8\x10\x8b\xaa\x82\x2c\x37\xfa\x0a\xa1\xcc\x3e\xb3\x5d\xd1\xba\x73\x78\xf6\x95\x9f\xaa\xa6\x9b\x78\x92\x78\x06\xc9\x67\xc8\x4a\x24\xa9\xf2\x55\xd7\xef\x04\xca\x51\xee\x2b\x68\x7f\x32\xf0\x91\x62\x2c\x8c\xd7\x93\x1b\x74\x5a\x8b\x1a\x5c\xeb\xdb\xdf\xe4\x32\xe1\xc7\xa8\xa2\xe3\xb1\x5d\x85\xae\xb3\x63\xc5\xff\xd2\xcb\x5a\x44\x46\x98\xa5\xdf\x41\x01\xd1\x41\x07\x1c\x4a\xe4\xa9\x6e\x75\x1c\x09\x17\x57\x2b\x7b\x22\x0b\x15\x5b\xfa\xb6\x33\xd5\x7d\xfd\x2f\x76\x7d\xcb\x74\xf7\xae\x0d\x45\xc4\x7b\x84\xd6\xa3\xab\x2a\x54\xe7\x83\xdc\x70\x95\xb8\xe1\x77\xbd\x57\x7b\x4c\x73\xf3\x64\x05\x56\x1d\xc6\x45\x5b\x25\xc5\xa8\x23\xa1\x25\x05\xad\x04\x01\xbe\xf9\x9e\xc0\x72\x1a\xc7\xc4\x33\xdf\xd3\x9e\xb2\xfd\x75\x95\x0e\xb8\x74\xe2\xc6\xff\x5c\x6f\x1e\xec\xc9\x83\x71\x67\xff\x64\xe4\x69\xd7\x94\x69\xdd\x4c\xb7\x1e\x5f\x2c\x76\x9e\xfd\xaf\xff\x1a\x78\xed\xce\x3b\xa4\xfa\x5c\xd1\x46\x54\x28\xe2\x1b\x6a\x7a\xe5\x61\x56\x16\x51\x02\x4b\x5a\x11\x1c\xa5\x67\x24\x8a\xa3\xdb\xd9\xc2\x4b\xb3\x9d\xd5\xfc\xf9\x96\xc7\x67\xc2\x29\x51\x28\x0d\x0d\x36\xa9\x03\xc1\x94\x72\x31\x40\x3b\xd9\xd7\x9d\x18\xa8\xab\x67\x8d\x14\x91\x9a\x20\x4a\x1e\x45\x1c\xf6\xdb\x8a\x1b\xf1\x8e\x26\x9d\x5e\x9f\x0a\xaf\x1e\x9f\xa6\x22\xee\xf7\x20\xe8\x2f\x26\xdb\x30\x8e\xf3\x9c\xf4\x1e\x85\x74\x01\x7e\xe7\x1d\xec\x20\x5c\x60\x05\x30\x85\x69\xf3\xa8\xa2\xbb\xb6\xca\x92\x4c\xb6\xe3\xd0\xb6\x40\xce\xc2\x07\x9f\x88\xa7\xf8\x5e\xc1\x1d\x3a\xb9\xf1\xee\x53\x98\xeb\xaa\xec\x20\xcc\xd6\x41\x62\xe3\x38\xca\x55\x67\x91\x0d\x20\x85\x44\x5a\xdf\x8c\x0f\x76\x7a\x99\x5d\xb3\x19\xce\x04\x14\x3e\x51\x07\xe7\x6b\xd5\xc4\x2a\x6c\x38\x4c\xa2\xd7\x4b\xa0\x03\xdc\x86\xf4\xe2\x01\x6f\x49\xf8\xb2\xa3\x1f\xe1\x1e\xbd\x55\x83\x32\x8b\x2c\xb3\xe4\x51\x65\x7f\x78\x7e\xfa\xc0\x98\x3e\x4a\xaa\x85\xec\x94\x74\xbc\x5f\xd8\x44\xb1\x77\x21\xc1\x88\xfc\xe6\x81\xf7\xe3\x0c\xae\x69\xb0\xfd\xb9\xda\x0c\xaa\x82\xda\x70\x68\x39\xdc\x61\x5a\x5e\xa0\x8e\xc6\x4b\x0a\x1b\x36\x4e\xb3\x02\x06\xf6\x8b\x3c\x59\x4e\x2b\x3b\x99\xb6\x82\x48\x9c\xa6\x01\xc1\x2e\x7a\x61\xe2\x35\xe0\xcd\x28\x4d\xfa\xb4\x7e\x9a\xec\x68\xfc\x20\x67\x36\x4c\x07\x49\xf4\xa6\xdd\xa5\x60\xab\x00\x96\x39\x49\x62\x2f\x8d\x7f\x61\xda\xa5\x94\x36\x57\x69\x66\x48\x13\xa8\x67\x8a\x70\x38\x33\x15\x9d\x39\x55\x48\x28\xa7\x72\x6c\x81\x14\xe5\x98\x8a\xe0\x87\x65\xc6\x9a\x2d\x0e\x9c\xa4\x1c\xf2\xfc\xf1\x46\x88\x24\x18\x69\x32\x57\x4a\x11\x1f\xdf\xd3\xd0\x8a\xff\x30\x51\x62\x43\x77\xdc\x08\x8f\xa2\x7e\x12\x0d\x86\x70\xb0\xc0\xee\xf7\x55\x65\x19\xb8\x9b\x0c\xc9\xd0\x02\xbd\x3b\xd5\xa0\x9c\x7c\xcd\x95\x29\x46\x23\x9b\x85\x91\x89\xa3\x37\x5d\x73\xaf\x49\x24\xb2\xa1\x21\x38\xc8\x4c\xe2\xe8\x3b\xb8\xbb\xff\x18\xa8\x49\xf9\x1f\x55\xae\x9b\x5b\x93\x11\xbd\xc9\x57\x35\xae\x2b\x55\xad\xeb\x0a\x2b\x3b\xce\xec\xd8\x64\x56\x53\x6d\x3f\x51\xdb\xcd\x27\x35\xc2\x0a\xec\xb1\xf3\x22\x2b\x59\xa0\xca\xed\x86\xa7\xb5\x02\x01\x29\x01\x39\x1b\x16\x3b\x1a\xc7\xe9\x3a\xc0\x9a\xae\x8b\x0d\xf2\x20\x5f\x37\x04\x2f\x2f\x74\x96\x4d\x36\x72\x65\x0b\x51\x65\xa0\x2f\x11\x59\x86\x87\x79\x76\xf4\x6d\x18\x47\x89\x03\xf3\x8b\x57\xb8\xda\x40\x98\x9a\x81\xa8\xea\x62\x93\x86\xb5\xc9\x8b\xb4\x64\xe2\xb4\xab\x60\x90\x20\xb3\x5c\x2b\xc6\xfe\xc8\x0c\x97\xd3\xf2\x4d\x35\x1c\x37\x82\x29\x41\x06\x0f\x5d\x35\xf9\x38\xca\x38\xca\xf5\x45\xb5\xdf\x0e\x7c\xb1\xed\xb7\x1b\x36\x82\x57\x3a\x79\xe9\xe6\x8c\x80\xd2\xab\xb7\xf0\xb5\xda\x63\xc7\x59\xda\x33\xbd\x78\x7d\x3f\xed\xda\x2c\xca\x8c\x78\x01\x67\xdb\x15\x0d\x00\x39\x4e\x68\x1a\x47\x98\x72\x2c\x86\xfb\x13\x0f\x23\xda\x41\x4d\x79\x04\x2b\x33\x8a\xf6\x05\x37\x7e\x2c\xf3\x77\x08\x63\xc9\x9f\x83\x03\x47\xf4\xa0\x69\x31\xb0\x9b\xfe\x44\xc9\x43\x5e\x9d\x7c\x65\x9b\x5e\xc8\x62\xe7\xe7\x51\xdf\x92\xe3\xa9\xfa\x5e\xe9\x05\xfa\xd1\x7e\xcd\xae\xd9\x38\x5b\xc7\x5e\x87\x58\xfb\x7d\x35\x9b\xa0\xe7\x36\x05\x1c\xc5\x7d\xdc\x55\x0d\x86\x2a\x1d\xc3\x63\xc0\x98\x72\x71\x47\x95\x22\x7e\x3c\xf9\xd9\x87\x4c\x2f\xd3\x5f\xb5\x59\x01\x43\x9f\x96\x93\x73\x44\xb8\xcf\xd7\xda\x6b\xc5\x8c\xb1\x14\xb5\xb9\xb0\xa8\xcd\x35\x44\x19\x99\x5d\x7d\xbe\xad\x7b\x84\x9e\x62\x7c\x54\x4b\x00\xdf\x76\x20\xb3\xd7\x6c\x5e\xc5\xe0\xb4\xcf\x3a\x47\x49\x07\x9d\x38\x37\x95\x0a\x85\x36\x45\xa4\x81\x00\xf7\x7a\xa0\x8a\x67\x47\x71\xcc\x61\x85\x9c\x9a\x7c\x55\x29\xf8\xe4\xd5\x72\xca\x63\x93\x30\xd5\x9d\x43\x3e\x65\x10\xf1\xe7\x6a\x07\x0a\xcb\x2c\xb3\x49\xb8\xce\x82\xe1\xce\x44\xca\x71\xf3\xdf\x9e\x28\xef\x3f\x00\x0e\xb1\x39\xed\xee\x7a\x5d\x63\x18\x2a\x20\x06\x61\x4a\x00\xa2\x84\x5b\x08\xfd\xf9\x63\xb5\xe0\xcd\xe5\xda\xde\xf9\xea\xab\x9d\x30\x8e\x6c\x22\x16\x63\xaa\x2f\x22\x33\xf4\x73\x75\xb6\x8d\x33\x9b\xdb\xc4\xd9\xfd\xb9\x30\xa9\x9a\x22\x68\x27\x6c\xaa\xd6\xc2\xa6\xb2\xf5\xbf\xa0\xe2\xe6\x5e\x96\xa6\x2b\xa4\xf6\xe1\x71\x41\x17\xb4\xe9\xcd\x05\x55\x11\xcc\xc7\x16\x67\x82\x58\x36\x39\x40\xf6\xe1\x59\xd7\xba\xd3\x40\xc0\x77\xf5\x69\xf5\x6e\x0d\x9f\xfa\x5c\x27\x2f\x7b\x79\xd4\x57\x87\x8c\x53\xc6\xf0\xde\x0f\xaa\x17\x64\xf3\x22\x1a\x99\xc2\x92\xc6\x0f\x32\xf6\x33\x78\x3e\x4c\x78\xa1\x6d\x41\x56\xb3\xd4\xf7\x18\x01\x9e\x0c\x66\x14\x14\xf4\x22\xce\x4e\x44\x4d\xa8\x9f\xe1\x19\xff\x15\x3a\x2a\x51\x64\x7b\xa6\x89\x5b\xdf\xcb\xd2\x9e\xcd\x06\x53\x47\x39\xee\x53\xce\xf5\x86\x82\x7a\x9c\xe6\xc5\x0c\x6d\x73\x42\xa3\xa0\x59\x82\x14\xe4\xa8\x62\x2f\x5c\xd2\x8a\x26\x37\x83\x87\x2d\xec\xbc\xb0\x36\x46\xe1\xaa\xad\xb4\x19\x20\x6c\x8a\xdf\xf1\x00\x1b\x0a\xb8\x0b\x9b\x4a\x8a\x66\x2d\x2a\x86\x69\x59\xf0\x94\xc7\x28\xdf\xd7\x42\x9d\x08\x38\xb0\x5d\xfd\x00\x71\x90\xb4\x27\x95\xa0\x1e\x8e\x45\x7c\x2f\xd4\xfb\x04\x1e\x42\x73\x9e\x3f\x57\xf3\xd2\xbe\x13\x78\xf9\x8d\x9e\xc9\xed\x08\x93\xbd\xfa\x03\x57\x5f\x75\x14\xf2\x8b\x4d\x86\x71\xe8\xdd\xb4\x54\x60\xcf\x5a\x22\xd2\x12\x69\xf2\xa5\x4b\x33\xbb\x2a\x98\x4e\x17\x2f\x2e\xcd\xaa\x86\xcb\x7f\xee\x8d\xb6\x57\x6d\x3e\x53\xcd\x2e\xf1\xa2\xa5\xd9\xc5\x2f\x94\xb4\xef\x0d\x85\xd9\xbb\x51\xc3\xc9\x57\xb9\xa1\x29\x8a\x2c\xea\x95\x85\xe0\xf7\x64\x1d\x2a\x15\x49\x6d\xd2\x12\xa6\xc9\x9a\x59\xa7\x26\x38\x8e\x2c\x94\xa5\xf8\xba\x49\x40\xaa\x88\xc6\x18\xbb\xa6\x96\xb6\x3a\x64\x6d\x6c\xfa\xd6\x94\x08\xc8\x30\xb6\x9f\x6b\x4d\xf1\xcf\x95\x2d\xd5\xaa\x4d\xec\x9b\xa5\x8d\x0d\xc7\x23\x4a\x59\x48\xe8\xa5\x57\x69\x27\x41\x05\xe2\xdd\x86\x00\x70\x91\xb3\x92\x96\x2f\x2f\xfd\x60\xa2\xce\xbf\x1f\xd4\x22\xa8\xa5\xd9\x4e\x34\x48\xd2\x6c\x9b\xeb\xdc\xff\x4e\x43\xcc\xd7\x9e\xde\x1b\xe5\xa1\xc9\xfa\xb6\x4f\xe5\x2b\x95\xc1\x1c\xf0\x32\xe3\xd5\xbd\xa1\xac\x79\x45\x29\xc6\x8e\xcc\x6b\x69\xf6\x54\xb5\x41\x60\xa3\xde\xd9\x55\x6c\x22\xf6\x65\x45\x54\x70\x1b\x51\x31\x56\xea\x7f\x44\xb2\x89\x6f\x3a\x8e\x35\x85\x6e\xf3\x1d\xda\xf7\xf0\x57\xff\x7c\xe2\x28\x59\xbf\xfb\xf4\x86\xde\x84\x21\x0c\x28\x20\xa4\xea\xf9\xa2\xec\x08\xa2\x9f\xe8\xb5\xd0\x22\xe3\x7f\x40\x04\xc4\xdf\x8e\xa1\x03\x46\xec\xf3\xc0\x3b\xf4\x6a\x5e\xd4\x4c\xf7\x69\xcd\x37\x0a\x4b\x62\xe9\xb4\x95\x66\xc0\xf7\x15\x11\x02\xfd\x7e\x2c\xe8\x5b\x2a\x56\xc9\xad\x0f\x94\x91\x6a\x7e\xa2\x4a\x00\x75\xf7\x15\x12\x1c\x35\x59\x94\xa0\xd2\xc0\x6e\x0e\x5a\xd3\xf3\x7c\x13\xf8\xa6\x97\x99\x01\x2f\x09\x4e\xec\x02\x1f\x8d\x5c\x50\x65\x79\x33\xa8\x0e\xe6\xbd\xfe\xe7\x3c\xa0\xea\x11\x10\x29\x9f\x04\xbe\x11\xcb\xbb\x2f\x2a\x2d\x5f\xe2\x00\xda\x62\xe5\x61\x71\x06\xa0\x2d\x89\xdf\xaa\xa4\x01\xd8\xc3\x47\x7d\xce\x41\x7e\x0a\x37\xdc\x8c\x2b\x93\xd0\x24\x49\xc4\x9d\x13\x59\x60\x1e\x9a\x74\xa1\x99\x26\x63\xfb\x51\x91\x66\x91\x89\x1f\xda\x7a\x57\xc8\x48\x1b\xc7\x4f\xf8\x2e\x33\x17\x1a\x10\xad\x9c\xc7\x74\x70\xb6\xfd\x3e\x22\x62\x5e\x89\x78\xf8\xab\x1f\x7f\x52\x87\xf4\xbf\x47\x0b\x16\x68\xb6\x4f\x95\x5d\xc2\x6e\xda\xe5\x51\xe8\xbd\x42\x07\x27\xc6\xe4\x26\x4b\x9f\x21\x5a\x66\x8f\x3d\x24\xfe\x0f\x10\x8f\xa3\xd2\xce\x11\x32\xca\x38\x57\x6a\xdd\x08\x39\xa9\xd2\xe5\x65\xe2\xd3\xb1\xec\x34\x7e\x99\x68\x50\x37\x7b\x3c\xf4\xd2\xfe\x7a\xdb\xdb\xca\xa3\x4e\x8b\xe4\xfd\xae\xf2\xbf\x39\x35\xf1\x8a\xea\x7d\xdb\xaf\xf2\xbc\x5e\x6c\xa7\x4c\x28\x4f\x2a\x67\xe1\x93\x6a\xa3\x1f\x46\xc8\x51\xab\x21\x43\x89\xe5\x18\x7e\x18\xbf\xa8\x45\xbb\x87\x5e\xaa\x42\x45\x90\x68\xb4\xdc\x89\xc8\xa0\x34\xa9\xf1\x12\xc7\xa1\x3a\x78\xaa\xb9\x87\xc6\x12\x0a\x1d\x7c\x5d\xab\x20\xfd\x02\x40\xdf\xa1\x98\x2f\xe3\x08\xdd\xa2\x7b\xe0\x6b\x6f\x13\x3e\x34\x90\x9e\xf3\x66\x15\xa4\x72\x2a\xc6\x15\x3e\x73\xee\xdb\xb0\x0a\x13\xb8\x9a\x2d\x1c\x4d\xa5\x4c\x7f\x56\x6d\x02\x45\x9a\xa5\x49\x91\x12\xd8\x06\x55\xa0\xef\x03\xd1\xef\xd4\x84\x55\xf7\x97\xe6\x22\x16\xc1\x47\x13\x85\xf1\x12\x8d\x7a\x21\xe5\x3e\x53\x93\x75\x7e\x79\xf1\xeb\x7b\x3c\xec\xfe\x7c\xa0\x28\xef\x7f\x97\x72\x22\x27\xdb\xe3\xfc\x1d\x6e\x68\xd2\x04\x2b\xa3\xf3\x0b\xfa\x85\x5b\x37\x9b\x0e\xff\x81\x4d\x4a\xda\xa1\x1e\x82\x14\xff\x9a\xf2\x60\x25\xb0\x4c\x56\x8e\x0b\x46\x96\x37\x61\x7a\x64\xf8\x07\x26\x4a\x28\xe3\xf7\xd0\xfc\x77\x34\x34\xff\x9d\xa6\x0e\x78\x61\xe3\x98\x66\x90\xa3\x1e\x57\x23\xcb\x2f\xb6\x4b\x52\x1e\x9e\xed\xcc\xcd\xfd\x05\x6f\x5b\x88\xc2\x0b\x1e\xc3\x8d\x60\xca\xff\xe7\x45\x09\x24\xc5\x85\x8e\xb1\xdb\x81\xc2\x6f\x1d\xc3\x97\x39\x96\x87\xa2\x3e\xe9\x99\xcf\x72\x25\xe8\x9f\xdd\xc5\x3e\xe4\xaa\xf0\x4e\x12\x00\x29\x37\xdb\xef\x42\xc5\x02\xdb\xc0\x71\x44\x63\xc8\x77\xf6\x74\x95\x5e\xc4\x75\x65\x1b\xf7\x47\x38\x52\xf1\x59\x5b\xd8\x9b\x01\x89\x3e\x8a\x99\x80\xaf\x3f\x82\xd0\x13\x33\xfa\x1a\x21\xb8\x58\xae\x96\x9a\x20\xa2\x1b\xb8\x3d\xab\x90\x8d\x27\x4a\xfa\xf6\x0d\x68\x93\x61\xf1\x3c\xb2\xe1\x77\xe2\xfd\x94\xbd\x09\xd4\x4a\x1d\x82\xe2\x8a\xe2\xd9\x4e\x53\xc8\x3b\x1f\x4e\xac\x65\x29\x32\x8a\x57\x5c\xba\x4c\x23\x8c\x1e\xdc\x59\x48\x3e\x48\xf2\x5c\x7d\x1c\xff\x43\x03\x88\xfe\x60\x67\x39\x5e\x17\x4c\x90\x58\x92\x2b\x0c\xfa\x71\x97\x3f\x0f\x4c\xd2\x1f\x46\x1c\x9c\x89\x46\x46\x35\x17\x14\x54\x4d\xf0\x2c\xd7\x1b\x25\xc2\xcd\xf2\xb2\x89\x32\xc6\xe4\x89\xf8\x01\x3e\x0f\x83\xbb\xbf\xab\xbc\x00\x98\xd6\x8c\x05\xdf\xde\x68\x62\x1f\xc3\xeb\x9a\xc3\x78\x01\xc9\xb5\x94\xc4\x8c\xc7\x8d\x0d\x62\xfb\x48\xcb\x19\x28\xdc\xd2\xd3\x73\x73\xa2\xca\xc1\x28\x01\x8b\x7f\x37\xfd\x02\xd7\xb1\xfa\xe5\x79\xc7\xf9\xf2\x12\x12\x60\x69\x8b\x25\xea\x53\xaa\xfe\x9b\x17\x06\xae\xcd\x32\x44\x68\x20\xf1\xb5\xd3\x41\xdb\xce\xd2\xc6\x39\x8c\x20\x9f\xaf\x27\x7b\xf9\x6f\x87\x69\xb1\x47\x8d\xca\x6d\xfa\x4d\x22\xff\x5d\xfd\x26\xad\xf0\x46\xeb\x72\xe7\x93\x1b\x4a\xfa\xea\x3c\xf2\x23\x09\xad\xdd\x86\xfa\xdf\xfc\x54\x77\xfb\x9e\xf1\x5c\xa7\x18\xda\x8c\xc5\x76\x24\xd5\xac\xd6\x01\xc5\x3a\x3f\xf3\x8c\xaf\x76\xfd\xdc\x93\xca\x5b\xd0\x16\xe1\x8c\x27\xa1\xb4\x49\xbe\x1a\x11\x24\x12\x1f\x27\x61\xa2\x35\x13\xeb\x95\xbc\x79\xc2\x74\xaf\x4c\xd5\xd9\x55\x06\xbd\xa9\xdc\xe1\x47\x21\xfa\xdb\xa8\x37\xbe\xad\xa0\x11\x6f\xbb\x34\xdc\x15\x2c\x00\x68\xc3\xb0\xde\x51\xa5\x41\xee\x5d\x60\x28\x4f\xd7\xa0\x24\x73\x73\xe4\xb5\xab\xec\x1c\x30\x9e\xbf\x4f\xb3\x8d\xaf\x95\xad\x84\x79\x7e\x20\x76\xae\xd0\x26\x7a\x47\xcb\x2c\xbe\x53\x17\x0b\xad\xa2\xb6\x24\x75\x09\x9b\x0b\xc0\xab\xc1\x97\x5c\x40\x1a\xe8\xf9\x4a\xc4\x18\x48\x76\x34\x0b\x3c\x90\xfa\x0a\x3d\x53\x2e\x5a\x6a\x64\x57\x16\xa5\x59\x54\xac\xb7\x75\x1b\x69\xe2\xe1\x9c\xe8\xbc\x63\x3d\x5c\x76\xe1\xe7\xd0\x9a\x3e\x95\x88\xf9\x5e\x44\xcf\x42\x59\x47\x9d\x6a\x28\x4a\x77\x96\xa3\xc1\xb0\x70\xe5\x01\xac\x8d\x2b\x5a\x08\xf7\xfb\x93\x96\xf2\x6c\xd8\x1e\xa9\x3f\xd7\x09\x4d\x1c\xdb\x3e\x01\x85\x1d\x79\x48\xf1\x41\xe8\x59\x89\xc5\x29\x6d\xd4\x53\xc9\x98\xe8\xb0\x78\x8c\xfc\x15\x05\x8b\x27\xfc\x76\x1a\x73\x97\x00\xe9\x35\x47\x9a\xfc\xa2\x41\x0f\xf5\x85\x4e\x94\xd8\x37\xc6\x71\x14\x9a\x5e\x0c\x4b\x3a\x94\x7a\x6e\xe3\xb6\x30\xc5\x2f\x7a\xbd\xa4\x3f\x3d\xda\xe8\x36\x1a\xda\x38\x2e\x63\x93\xb5\x15\x17\x89\xc6\x02\x15\xbf\x2d\xc5\xbb\xbf\xa8\x7d\xd2\xd2\x78\x95\x23\x03\xf1\xd5\x52\x31\xcf\x05\x8f\xdb\x4c\x8b\x68\xd5\x14\x56\xd7\x87\xdf\xc7\xbd\xf1\x0b\x55\x8b\xc9\x5f\x2f\x6d\x1c\x0e\xe9\x53\x19\x89\x13\x68\x49\xb6\x3a\xc1\xaf\x33\x34\x49\x9f\x55\xbc\x9c\x3a\x62\xf5\xe1\x88\xea\x7f\x1f\x63\xc1\xb0\x4d\xa5\xea\x6c\x57\xd6\xb1\xf0\x70\x00\x6e\xe0\xa0\xd7\x42\xa2\xa2\xed\x2a\x33\x6f\xd5\x84\x66\x35\x8a\x99\x05\xee\x9e\x7b\x75\xcf\xfc\x42\x45\xd4\xa1\xc9\x4c\x91\x43\x0f\x08\x4d\xb3\xcf\xd1\xb2\xe5\x17\x2e\x72\xea\xd9\xa1\x71\x64\x55\x84\x30\xa7\x74\x39\xe2\x54\xb0\x2d\x10\x9a\x3f\xd4\x79\xf6\xd9\x47\xd4\x9a\xd9\xb9\xe1\x03\x62\x94\xaa\xc4\x36\x9c\x3e\x46\xf5\xf8\x17\x7d\xf5\x77\x69\x76\x8b\x1d\x1d\x90\x9b\xb2\xff\x8d\x90\xfc\x7c\xb3\xba\xda\x01\xfa\x8f\x60\xad\x21\xf4\x80\x4c\x8d\x94\xb0\x5a\x5a\x86\xb7\xba\x41\xe1\x35\x54\x8f\x8d\xaf\x69\xff\x83\x74\xc5\x07\x13\x6f\x05\xf4\x41\xa0\x84\xc7\x6e\xa8\xd2\xc4\xd0\x9a\x0c\xed\x3a\xdc\xd5\x1f\x05\x6a\x5d\x20\x0b\xe7\x7f\x98\xa8\x35\xf2\x89\xdb\x23\xc2\x68\x35\x8a\x23\xc3\x7d\x1a\x6c\xef\x67\xb5\x74\xd5\x59\xc5\x1d\xec\x47\x83\xbc\xad\xba\xe9\x4c\x29\x75\x3c\x9f\xea\x09\x62\x8f\xbc\xa1\xe1\xa5\x76\x64\x73\x6e\x87\x23\xbc\x3b\xa1\x84\x82\x4e\x28\x77\xc5\x30\xb3\x76\x4c\x7c\xd7\x2a\x60\x44\xd4\x03\x81\x30\xc8\x6d\x7c\x9f\x46\x87\x2d\xcf\xdd\xa9\x6a\x47\xb9\xa2\x0e\x5d\x50\xf6\xe5\x17\xa6\xd3\xfb\xa7\x54\xf7\xbb\x5f\x86\x51\x32\xd8\xad\x16\x3c\xa6\x00\x92\x5a\xd6\xca\xe5\x17\x88\xce\xc4\x69\x86\x76\x78\x91\xa6\x55\x94\x84\x23\x53\xb0\xad\x3c\x4a\x66\x50\x25\xc5\xcf\xfd\x31\x62\x55\x7e\x41\x1b\x8d\x73\x53\xaa\x86\x4d\x72\xdc\xc7\x55\x9b\x9f\x62\xa3\xea\x47\x61\x77\xf9\x09\x1e\x2d\xbf\xa8\xad\xef\xf9\x43\x9d\xb1\xcd\xa2\x98\xe3\x29\x27\x44\xec\x35\xbb\x15\xc5\xad\x57\x8a\x4a\xb7\xec\xa0\x2d\xa7\x97\x79\x67\xf2\x68\x54\x1d\xb9\xcb\x7f\xbd\xf3\x37\xf6\xb4\xe6\x64\x4c\x7e\x8a\x42\x06\xa9\x61\x2a\x9a\xcd\x0f\x27\x4a\x01\x6e\xdf\x86\xc7\x18\xdf\x56\x5d\xa0\xbd\x1b\x0a\x8b\xfe\xa5\x8a\xec\xac\x19\xed\xd5\x25\x70\xc5\x16\x7c\x77\xe2\xd8\x01\x7f\xe7\x99\xae\x02\x7b\x3c\x50\x26\xa6\x33\x5d\x55\x05\xde\xbb\x41\x83\x29\x4a\x84\xf4\xdc\x84\x4f\x4c\x79\x8b\x18\x91\xd2\x43\x14\xec\xf7\xb6\x5d\xe3\xc5\x03\x9d\x5f\x7a\xb9\xe5\xc9\x6d\x9f\x2b\x2a\xf2\xe7\xaa\x55\x5e\x44\x03\x51\xf5\x70\xda\x28\x8e\x48\x77\x53\x29\x3d\x2f\x9b\x24\x5c\xd7\xe8\xb1\x40\xab\xb7\xd7\xce\xcf\x85\x85\x4e\x3e\x32\x19\xa8\x09\x90\x62\xbb\xa1\x54\x75\x6f\x34\xc4\x5b\x9d\x30\x1d\xb9\xd8\x46\x62\x2c\x25\x32\xb6\x59\xab\x32\xbc\x78\xa0\x13\x25\x2c\xb5\xe3\x9f\xd8\xc5\x29\xc7\x48\xb7\x9d\xf7\x6c\x31\x5c\x4e\x33\x08\xac\x49\x09\xe6\xd7\x03\x3f\x89\x7f\xbd\x76\x5a\xbe\x3c\x7f\xa8\x63\x7a\x26\xe9\xa7\x09\xc3\xb0\xf1\x4b\x6e\x06\x5e\x31\xe0\xdc\x44\x01\xbf\x8f\x38\x42\xd8\x28\x4a\x0a\xc2\x30\x88\xac\x8a\x32\x7a\x12\x85\x27\x09\xcb\x7c\x0d\xe3\x1f\xbb\x2d\x6d\x6c\x8b\x2c\x0d\xd3\x6c\xcc\x61\x0f\x42\x10\xc6\x67\xf1\x8b\x06\xc1\x93\x17\xaa\xe5\x53\x94\x39\x6d\x55\x5e\xc7\x0c\x33\x5d\x89\x9a\x49\x8b\xbb\x6f\xc7\x45\xae\x28\x35\x08\xf9\xf9\xba\xf6\x50\xe7\x0f\x75\xf2\xb2\x1a\x41\x5f\xba\xbd\x1e\xf8\x8a\x88\x36\xde\x0a\xe3\x68\x9c\x53\x39\x1f\xe7\xf2\xa7\xe8\x53\xf1\x0b\x47\x08\xb1\x6f\x0c\x4d\x99\x7b\xfd\x65\x91\x64\xf7\x64\xab\xcd\x5a\xa0\xba\x34\xdb\x19\x64\x66\x34\x32\xd3\x64\x1d\x8f\x75\xbb\xb6\x8d\x9e\x66\xc7\x45\x69\x62\x44\xb5\xce\x19\xc5\x57\x5c\xee\x6a\xaf\xcf\x38\x4e\xd7\xf6\xd2\x13\x15\x63\x30\xfa\x4b\xcc\xda\x29\x59\x9a\xff\x8d\x92\x1d\xc9\x70\xf1\x94\xa4\x6d\x45\x0b\xd8\xa9\xe6\x3b\x96\xc4\x0f\x08\x90\x8b\x45\x78\x5f\x31\xee\xff\x09\xe9\xea\xf1\x7f\x6f\x2a\xe3\x30\xf3\x9e\xf8\x2c\xa8\x34\xfc\x68\xa2\x44\x61\xbe\x47\x53\x08\x28\xd4\x4f\x6a\xe3\x55\xcd\x8a\x30\x4e\x73\x9b\xcd\x28\xac\x3a\xfa\x2b\xc8\x1f\x67\x20\xcd\xed\x60\xc6\x0e\xec\x70\x47\x6b\x19\x51\x61\x80\x9e\x22\xe3\x6c\x29\x95\x14\xcc\xed\xd3\xca\x01\xb0\x17\x25\xe9\x5a\x54\xbc\x89\x21\x77\x9a\xc0\x8b\x2f\x1d\x74\x9a\xc0\x8f\xf2\x8f\x33\x49\xdb\xd7\x78\x76\x52\x06\x20\xb9\xa4\x52\xd7\xf6\xd9\x67\x92\x66\x30\xa1\x63\xb4\xff\x46\xeb\xe5\x45\x87\xf4\xf4\xb8\xdf\xeb\x44\x14\x75\xa4\xc2\xb9\x39\xc4\x9e\x93\xa7\xbb\x75\x2f\xef\xce\xa8\xcc\x87\x59\x9a\x8e\xa4\x22\xaa\xc4\x07\xe6\x9d\xf8\x40\xc3\x06\x37\x36\xb1\x24\xfe\xd8\xd2\xdf\x51\x04\xb6\x77\xd4\xf1\xf0\x57\xff\xfb\xbf\xda\x26\x52\x84\x20\xfb\x7c\x10\xb5\xa9\x34\x00\x4f\xbb\xdd\x63\x55\x6a\x30\x08\x5f\x90\x51\xf1\x75\x93\x0a\x01\x1b\x9f\xb5\x95\x59\xd2\x25\x85\x09\xc3\x22\xc5\x50\xbe\xa3\x0e\xd0\x61\x34\x18\xee\xaf\xa6\x01\x06\xf0\x3b\x14\x99\x20\x02\xa1\xee\xd0\x0b\x9c\x60\x7d\x8c\xa3\x06\x15\x89\x23\xba\xb8\xde\xee\x7a\x02\xd1\x75\xc4\x1b\x38\x9d\x40\x21\xc0\x0e\xf7\xdb\x18\x49\x20\xe1\x48\xba\x7e\xd1\x51\xa4\x29\xa0\xc0\xfb\x6f\x32\x9a\x9a\x5f\xd1\x3d\x23\xc1\xb9\x39\x65\x3f\x96\x2f\xaf\x6b\x13\x0d\xe5\x8e\xb2\xa9\xcf\xa4\x3a\x5c\x7c\x71\x69\xb1\x53\xe6\x76\xb9\x8c\xdb\x1e\xd9\x77\x94\xea\x7a\x52\xac\xa9\x3e\x17\x79\xd4\x6d\x85\xb8\x7e\xcd\x44\x31\x1f\x31\x2c\x7d\x1f\x28\x90\xdb\xa6\x7a\xd2\x7d\xb3\xd2\xa6\xb5\xc4\xa3\x40\x32\x2f\x8e\x64\xe7\x01\xce\x97\x95\x47\x54\x1e\x46\x36\x29\xa2\xbc\xc8\x77\xa9\x91\xe5\xaa\xee\xc6\x14\xa7\xb5\x7a\x56\xae\xc0\xe6\xa5\xda\xcf\x7a\x09\x51\x62\x91\xcf\xf8\xf0\x83\xf9\xf3\x28\x45\xdf\x42\x10\xe8\x9c\x98\xaa\xc7\x25\x06\x63\xce\x8c\x3e\x8b\x12\xe1\x6d\x20\x04\x39\xa1\x7c\x8f\x4e\x68\x3b\xdb\x71\x3a\x70\xca\x47\xd8\x20\xbf\xc0\x3d\xf2\x8b\xa9\x58\xb2\x64\xc2\x38\xa6\xc4\x35\x35\x3d\xae\x35\x58\x86\x1c\xe8\xd8\x37\xc6\x36\xc9\x85\xfe\x2d\x78\xfb\x96\xa2\x6b\x3f\xe1\x7f\x71\x11\xad\x44\x49\x4b\xdb\x49\x6e\x03\xb9\xf9\x0a\x67\x2f\xb3\x6b\x84\x85\xa8\x96\xad\xdb\x2c\x1c\x17\x13\xb5\x37\x44\xd3\x10\x94\xc2\x61\x78\xa1\x16\xb0\xfc\x42\x27\xcd\x4c\x32\x10\x61\x57\xd9\x27\x5a\x4a\xbd\xa4\xbe\x67\x1c\xec\x14\x43\x53\xd0\xb9\x88\x26\x0e\x68\x34\x7c\xed\xba\x1b\x69\x2f\x8e\x06\x3c\xe3\x1c\x28\xa5\x7a\x5a\x02\x4a\xf1\x6b\x78\xcd\xe4\x43\x7a\x58\x38\x3e\xde\x52\x82\x06\x6f\xb9\x87\x9a\x99\x71\xd4\x8f\xd7\x67\x5c\xcf\xf4\xc4\x57\xe8\x3e\x51\x84\xdb\xa2\xfb\x44\x31\xf4\xbc\xa6\x63\x3f\x50\x48\x99\xd8\x46\x79\x99\xd9\x78\x5d\x49\x50\xe3\x6e\xa5\xde\xe7\x0f\xff\x5e\x5c\x2e\x2f\x23\x17\x6e\x72\x54\x7f\x5c\x61\x3d\x49\x4b\xbb\xda\x5c\xd8\x4a\x66\xe2\xa3\x96\xfb\x81\x32\x68\xba\xec\xee\x25\x8e\x12\x0f\xfb\xc0\xf9\xb5\x53\x39\x5c\xdf\x55\xa9\xd3\x51\x55\x0b\x2d\x32\x6b\xaa\x1b\x68\x4d\x55\x7e\x5b\x4e\x4d\xe5\x44\x43\x34\x35\xdf\xc9\xd3\xb8\x4f\xb2\x7c\x3a\xbe\x0c\xb4\x6b\xfd\xe4\xa7\xa7\x03\x6f\x2a\xa3\x71\x0d\x7e\xaf\xe2\x30\xfe\x21\x71\x12\xb8\x46\x03\x9c\x36\xc2\xb8\xf3\x88\x71\x05\x4b\x44\xf7\x8c\x72\xfb\x15\x7a\x96\xa8\x44\xbf\xad\xca\x3a\x3b\x37\x34\xfa\x28\xf0\xe7\x38\x07\x2b\x6c\xa8\xea\x36\x85\x55\x9b\x17\xb6\xbf\x5b\x81\x2a\x81\x7f\x16\x1a\x81\x47\x7b\xfd\x04\xbb\x0a\xa6\x05\x74\x2b\x9d\x03\xa4\x7f\xec\x8f\xd7\x0e\x51\xe9\x39\x84\x69\x2c\x8d\x77\x47\xbb\x74\xd9\xd3\x4d\xfd\x3c\xaf\xab\x4d\x33\x1a\xc3\x73\x08\xf9\xe8\x51\xc5\xf1\x65\x58\x82\x08\x1c\xd3\x07\x63\x16\x71\x6f\x46\x94\x3b\xb6\xa3\x5f\xab\xad\x3e\x4c\x93\x22\x4a\x4a\x22\xfd\x29\x09\x7f\x88\xd0\xf3\x75\xed\xa1\x1f\x38\xb0\x48\xae\x20\x69\x92\xd8\x18\x5d\x02\x6c\xdf\xbf\x81\x44\x0c\xcd\xb8\xd3\x5a\x61\x82\x0b\x77\x02\x34\x9a\x92\xe7\x8d\x0b\x68\x6d\xe1\x7c\x41\xb5\x86\xaf\x37\x14\xde\xf1\x73\x2d\xff\xf6\x79\x63\x37\x75\x99\x94\xd9\x72\x34\x74\x10\x03\x8a\xe5\x1e\x0e\x81\xa3\x9a\xe1\x75\xbb\x76\xf8\x3d\x47\x9a\xad\x88\xe1\xaa\xef\x12\xe1\x0e\x5d\x47\x7b\x18\x31\x19\xb0\x60\x2b\x5b\x9d\xe8\x08\x68\x7d\x81\x06\xce\xd1\xd8\x66\xcb\x69\x36\x62\xcb\x2b\x41\x07\x56\xdf\x87\xa1\xba\x4f\x87\xa3\xb0\x09\x9b\xc4\x1b\xcb\x24\x49\x8b\x28\xe4\x8d\x50\x69\x3e\x8a\x7e\xc8\xc5\x26\xcd\x90\x55\x23\x12\xf6\xce\x1f\xc7\xc9\x05\x4f\xdb\x8c\x95\x59\x41\x42\x45\xdc\xa2\x0b\x54\x37\x93\x4d\x2f\x50\x4c\x40\x5f\x43\xc4\xcc\xab\xdb\x76\x72\x5d\x9e\xc4\x4f\x77\x23\xbe\xfc\xea\x37\xee\xda\x50\x28\x75\x76\xdb\xc6\x99\xf2\x08\x3c\x2c\xd9\x00\x16\x53\x40\xe4\xb8\x94\x1d\x9e\x67\xea\x8e\xa3\x70\xc5\xfa\x64\x09\x47\xf7\x47\x13\x8f\xe7\xff\x48\x79\xc3\x98\x6c\xb4\xab\xb5\xb0\xb0\xc5\xf1\x1a\xd6\xd0\x97\xba\xc7\x70\x47\x73\xe2\x31\xac\xfc\x0f\xdb\x15\xc3\x17\x5f\x3a\x58\x3d\x90\x96\x12\x72\x86\xa9\x85\xf8\x51\xfa\xc5\xfc\xa6\xed\x3f\xa1\x66\xf6\xcd\x89\x2f\x74\xfe\xd4\x5f\x87\x14\x13\xe2\xb3\xc7\x37\xaa\x10\xdd\x0d\x98\x17\x3a\xd8\xbd\x51\x45\x64\xc8\x8c\x80\xea\xa2\xe6\xc6\x3f\xfd\x99\x0d\x5f\x19\xde\xbb\x51\x1d\xa1\x02\x65\xac\x7e\x09\x0a\xd6\x8f\x73\x07\xd8\x21\x33\x5d\x9c\xf8\x14\x6a\x2f\x44\x6d\xfa\x2f\x9f\xed\x52\x26\x24\xd9\x17\x3d\x77\x2c\x82\x67\x6a\xbc\x54\x2a\x4c\xd0\x4e\x22\xad\x1b\x1c\x8e\xff\x5e\x61\x2b\x3e\xc2\xb0\xb2\x73\xbc\x77\x92\x2a\x47\xd5\xf9\x56\xfd\x3c\xce\xa7\x68\xc4\x51\x68\x06\x8b\x18\x09\xf1\x53\x1b\xdb\x35\x39\x16\x16\xaa\x6f\x85\x13\x7f\x9a\x38\xe2\x32\x4a\x6f\xe7\x15\x21\xf5\xbc\x12\xb8\x0f\xd3\x30\x1d\x29\x47\x4c\xa6\x77\xf0\x8b\x26\xc2\xec\x28\xea\xe7\xd1\x9b\x52\x8e\x16\xaa\x68\xcb\xf9\xf0\x9f\x53\xe0\xb8\x5e\x66\xcd\xca\xb2\xc9\x0b\x2a\x54\xa2\xef\x03\x8f\x63\x57\xcd\xf4\x98\x86\xef\x36\x10\xd2\x17\x3b\xa3\x32\x1c\xe2\xb8\x97\xe7\xee\xfb\x0e\x77\x03\xef\xa5\x73\xaa\xf6\x5b\x29\x74\xb2\x71\x2c\x47\x31\x5b\x6c\xd0\x40\x88\xdd\x46\x83\xb3\x3f\x4b\x9a\x48\x4f\x4b\x11\x35\x0f\x2a\x2f\x55\x0f\x00\xcf\xe2\x5d\x5e\xb8\x9c\xc9\xa3\xac\x56\xc6\x9b\x2d\xb8\x71\x6d\x88\xa7\xf2\xdf\x4d\x34\x93\xc5\x2f\x85\x97\xbe\x35\xdf\x52\x4c\xc0\x40\xeb\xf9\xd5\x15\x3b\x5f\x3a\xd8\x79\xad\x4c\x44\x94\x1a\x5b\x24\x40\x36\x7c\xad\x82\xb1\xb5\xa8\x48\x6c\x9e\xdb\x9c\x3e\x5f\xc8\xe7\xca\xba\xee\xc2\xb4\x4a\x7c\x3e\xdc\x57\xad\x29\xc4\xa5\xf7\x14\x6d\xf9\x22\xe5\xc6\x62\xa2\x5c\xed\x60\xf2\x65\x6d\xef\x70\x7d\x1f\x0b\x04\xeb\x68\xc7\x86\x3f\x31\x58\x6f\x9e\xff\x2a\xf0\xe2\xb2\xff\x03\x88\x08\x7c\x24\x52\x9d\x00\x93\xf0\x24\x62\x27\xd4\x8b\x4e\x34\xf5\x38\x57\xd3\xb8\x4c\x0a\x93\x21\xce\x64\x1d\xe9\x69\x51\xe9\xa7\x54\xb9\xa6\x1c\x45\x09\x64\x0d\x5f\x71\xb2\x59\x0a\x09\x76\x36\x50\x52\xa6\xc7\x95\x94\xe9\xf1\xed\xa8\x9c\xb9\xf9\x6a\x86\x3e\x31\x05\x0c\xa5\x01\x15\x05\x10\x55\x32\xbf\xa0\xcb\x47\x3c\x54\xc8\x8f\xc6\x90\x27\x96\x4e\x77\xeb\xd5\x57\xb7\xe0\xb3\x06\x8a\xd1\xe7\x41\xeb\xd9\x67\xe5\x5f\x15\x95\xf3\x1e\x6e\x10\x55\xa2\x47\x59\x7e\x57\xf9\x76\x8b\xb4\xe0\x4d\xa5\x02\xb0\x87\xb6\x43\xac\xa3\x3b\x4d\x6a\x39\x2b\x89\x05\x52\x9c\xcd\x48\x26\x6a\x8d\x03\xcb\x8b\x00\xf4\x6a\xe0\xfd\xb1\x92\xbe\x1d\x49\xad\x13\x47\xd1\xed\x40\x59\x47\x72\xb1\x53\x44\xff\x94\x67\x6a\x3e\x7c\x8c\xfe\xc9\x31\x78\x16\x1d\x23\xe0\x3d\xe5\x5e\x70\x5b\xeb\xa3\xde\x0b\x94\x39\xf3\x85\x69\xf2\x5f\xf5\x9d\x8c\xc0\x9b\xa8\xa2\xdb\xb1\x40\x63\x3f\x4e\xd4\xc2\x58\x14\xed\x76\x76\x95\xec\x7e\x9c\x3f\xee\xe7\xe2\xd6\x44\xcd\x87\x73\x54\x24\x12\x93\x30\xba\x67\xfa\xf9\xff\xd3\xcf\x76\x75\xff\xeb\x31\x9c\x1c\x18\x8e\x7d\x1b\x54\xc8\x11\x37\xc2\xea\xce\xf0\x08\x9e\x21\xd2\x2f\x2a\x02\x97\xb1\x14\x9d\x4a\x88\xeb\xf7\x6c\x69\x79\x20\x20\x60\x29\xa1\xdb\xff\x73\x50\x66\xa6\x8e\xd4\xaf\xfe\x67\x5d\xc1\x65\x68\x0a\x92\x6a\x67\x7d\xa6\x9c\x58\x3e\xab\x3d\xfa\xb9\xb9\x4e\x9c\x1a\x49\x87\x9d\xdf\x4c\xf5\xc5\xfc\x42\x35\x91\xc6\x69\x1c\x85\x91\xcd\xf7\x4c\x29\x93\x38\x47\x89\x99\xae\xce\x2e\x5a\x07\xa6\xfc\x7d\x85\xde\x75\x56\x1d\xb3\xe0\x19\x0b\x7d\x5e\xa9\xd5\x98\x22\x5d\x81\xb0\xaf\xb0\x05\xe9\x17\x89\xbb\x99\x93\x61\x2e\xcc\x98\x3b\xae\xd8\x95\x4e\x2b\xb2\xec\x69\xa5\x9b\x50\x44\x36\xdf\xe5\x25\x90\xd9\xf1\x8d\x5f\x28\x65\xd3\x13\x4a\xdd\xfe\x13\x7c\x27\xce\xec\xba\xb5\x77\x95\xf0\x51\x53\x4d\xce\x43\xd4\x31\xbe\x17\xf8\x1e\xc6\xf7\x54\xf1\xfc\xcd\x34\xa1\x50\xec\x65\xe7\x62\x7a\x91\x6e\x5e\x44\xac\x1b\xb8\x13\x65\x61\x86\x26\x11\x28\x03\x87\x2f\x58\x60\x12\xcb\x34\x29\x1c\x2f\x5b\x93\xe5\xe9\x88\x5b\xea\xa8\x89\x9d\x52\xf5\xb1\x53\x5e\xd8\xa0\x5c\xcf\x67\x54\xec\xbb\x0f\x21\xa6\x14\x24\x3c\x09\xe8\x2e\x61\xc8\x64\x86\x3e\x4c\x0e\x12\x65\x63\x50\x07\x70\xe0\x5f\x0e\x94\x2d\xc8\xe5\x06\x25\xcc\x0e\x22\x04\x17\x08\x9c\x09\x3c\xe1\xff\xef\xd1\x0f\x10\x43\xa2\x87\x7d\x69\x51\x66\x2b\xac\xd8\x8d\xa0\xf9\x9a\x56\x34\xbc\xd6\xa8\x49\x38\x4c\xb3\x22\x2f\xd8\x5c\x0e\xb9\xe3\xdb\xf4\xc5\x7c\xdd\xf4\x30\xb8\x89\xd0\xf6\x35\x80\xab\x4a\xd1\xe8\x07\x13\xe5\xc3\x73\x41\xd1\x77\xa1\xf2\xdb\xf6\x33\x8c\xe5\x26\x51\xb4\x78\x54\x71\x47\x9e\xd8\xd8\xa7\x20\xce\x66\x46\x3f\x0a\x3a\x08\xa6\x54\x6e\x59\xc8\x07\xf3\x58\x54\x7d\x74\x23\xa3\x4c\x72\xeb\xe2\x9f\x29\x1b\x29\x59\xd6\xbe\x09\x9d\xae\x25\x36\xcb\x87\xd1\x78\x4f\x75\xbe\x63\x69\x32\xa1\xdc\x99\x36\x54\xdf\x83\x28\xec\x8e\xc6\xf8\x51\x8f\x82\xdf\xa1\x8a\x0e\x33\x28\x3a\x88\xe5\x99\x10\x82\xa3\xe5\x88\x31\x63\x8d\xea\x93\x4f\x28\x84\xb2\x29\x86\xb9\x0a\x4e\x3f\xd3\xc1\xe9\x67\x4d\xbd\xbd\x30\xb6\x59\x14\x32\x82\x5c\xac\x3f\x3d\x32\xb5\xb5\xa1\xc0\xf2\xcb\x99\x89\xfa\x2d\xed\x33\x35\xd1\x0e\x54\x41\x43\x81\xe0\xeb\x8e\x7e\x25\xeb\x1d\x8f\x10\x68\x10\xbe\xae\x31\x57\xab\x30\x36\x62\xab\xe4\x6a\x5f\x66\x30\xa2\xeb\x6e\x7b\xd1\xe8\x8f\xf5\x0e\xf7\xf7\x54\x09\xb2\x30\x2b\x36\x5d\x5e\x6e\x29\x1c\xd8\x69\x1c\xac\xfc\x42\xf9\xac\x15\x65\x96\xd8\xac\xad\xbd\xf5\x8f\xab\x1d\x91\x83\x4a\x94\x14\x3e\x6c\x9a\xe5\xe3\xcc\x8e\x22\x9b\xcd\x68\x76\x4c\xb5\x30\x5c\x16\xe7\xe4\xe1\x6f\x07\xca\x09\xe3\x76\x6d\x69\xd3\x88\x8d\xcd\x34\xe7\x46\x09\x0d\x5f\x50\x49\xe0\x7f\xf1\xed\x31\x3d\xe9\x46\x2e\x70\x83\x69\x62\x9c\xae\x79\xa9\x37\x2c\x39\x52\x7c\xdc\x62\x4c\x1c\x82\xca\x7f\xa3\x7c\xc6\xec\x1b\x69\x16\x46\xf9\xa8\xad\xe4\x0f\x3f\xa4\x81\x61\xfe\x42\xa0\xc0\xb7\x75\x2e\xd5\xe2\xd2\x62\x67\x98\x8e\xf1\xe0\x5f\xf1\x16\x53\xbe\x56\x7e\x52\x41\x46\x12\x6b\xfb\x8f\xb6\x94\x4c\x3a\x0d\x14\xa3\xf3\x11\x61\x3a\xa8\xfe\x8b\x07\xfc\xd0\xce\x39\x75\xf1\xc0\x07\x07\x9b\xc1\x94\xa5\xb3\x67\xde\xdd\xa5\x68\x46\xaa\x7a\xfe\xe8\x5c\x4e\x73\x11\x6e\x41\xd0\x0e\x8e\x38\x5f\x37\xc5\xd0\xa1\xc9\xa2\x5e\xcf\x9a\xa4\xa5\xf0\xb0\x9b\x81\x4e\x8d\x37\x15\x1a\x6d\x64\x92\xbe\x29\x2c\xda\xb5\x82\x10\xa9\x6e\x44\xcc\x41\x1b\x25\xdd\x6d\x61\xde\xd0\x36\x88\xe7\x94\xb3\xd5\x1d\xa5\x96\x79\x4a\xbb\x0b\x99\x92\xc5\xe7\x51\xf4\x80\x2d\x21\x6e\xff\xb6\xc6\x9d\x61\x5a\x23\x56\xad\xf7\xa1\xe7\xe6\x3b\x26\x5f\xc1\x7c\x11\x9b\xd1\x6b\x08\x6f\x51\x75\xc0\x2e\x0c\x10\xc3\x96\xeb\x1d\x86\xfd\x50\xa1\x5b\x2f\xe9\x90\x88\x4c\x75\xbd\x3f\x33\x26\x39\xa3\xad\x15\x3f\xe7\xac\xc2\xf9\x8c\xb3\x74\x44\xcc\xe2\x99\x9a\xc3\x25\x9a\x5b\x0f\x02\x7f\x73\x08\x02\xd1\x9e\x7e\xaf\xb6\x4c\x5f\x3c\xd0\x31\x59\x56\x1d\xf2\xf8\xe2\xa6\xda\x9c\x0b\x90\x12\x6b\x56\x90\x1c\xb1\x2d\x21\xfd\x99\x58\x14\xee\x57\xde\xc0\xe9\x68\xc6\xf3\x41\x2f\x4e\x54\xf0\xc0\x25\x6c\x2c\x9b\xd3\xf4\x3b\xf9\xba\x36\x9d\x0e\xcf\x52\x53\x3c\x34\x42\x0b\x50\xde\xd9\x07\x9c\x77\xb6\xce\x36\x07\xf1\xfa\xe3\xd5\xf7\x22\x57\xfa\xe3\xc0\xab\x02\x41\x46\xd1\x49\x39\x2e\xcd\x6a\x65\x11\x81\x35\xdc\x57\x22\x5f\x3b\x74\xe8\xfd\x3f\x4f\x14\x7c\xec\x4b\x25\xf9\xf6\xe4\x86\x12\x3f\x7f\x5b\x13\x9f\x7e\x8c\x5f\x89\x45\xd8\xea\x56\x67\xae\xdb\xb9\xaa\x75\x8f\xa0\xee\xce\x54\xa3\x2a\x1b\xa4\x28\xb2\x22\xc6\xff\x32\x98\x0e\xf8\x95\x15\xb9\x3f\x7e\xd6\xb2\x68\x30\x2c\x14\x26\x91\x5d\xb3\xd1\x83\x9b\xe9\x6a\x39\x32\x5f\xae\x29\x32\xcb\xbd\x20\x21\x72\x78\x4e\xdb\xb9\x89\x96\x39\x19\x99\x6c\x65\xc6\xb7\x50\xa0\xfc\xc7\xd7\x10\x3e\x92\x7a\x08\x35\x16\xa4\x20\xd2\x54\x63\x88\xa3\xdc\xc9\x53\x80\xa2\x07\x55\x3f\xbe\x56\x78\x5d\x26\xe3\xb0\x12\x23\x36\xaf\xbb\x4a\xe2\x0b\xf3\x46\x8c\x1a\x9b\xc4\x49\x97\xa3\x8c\x60\x70\x52\xa2\x98\xd9\x50\xf4\xc1\x7f\x4d\x6f\xc7\x24\x69\x77\x9f\x56\xf8\xbc\x3c\xcc\x2c\xf8\xfe\x55\x68\xed\x04\xf3\xdc\x02\xaa\x37\xe3\xab\x43\xb9\x67\xc2\x15\xaa\x91\x39\xc6\xb7\x33\xda\xde\x54\xf2\xe4\xfd\x32\x2f\xb2\x75\x7a\x54\xec\x1a\x85\xbd\x46\xd0\xf3\x9a\xfc\xe5\xc3\xbe\x7c\x7d\x34\x36\xc5\x10\x51\x29\xde\x07\x2d\x52\xbe\x56\x56\xaf\xa3\xd1\x3a\x23\xd6\x59\x73\x6a\xe2\x79\x66\xef\x63\x5a\xb0\x18\x5d\x2d\x92\x5d\x58\x58\xea\xe4\xe5\xd8\x5b\x93\x39\x43\x45\xa7\xf7\x77\x52\xe9\xfd\x8d\xa2\x84\xf8\xb5\xd5\x5f\x62\xed\xfc\x7a\xe0\xe5\xeb\x7f\xbd\x01\xd3\x9c\xdb\xcc\x89\x8c\x6b\xc0\x8f\xd3\x32\xac\x56\x1b\x62\xe1\x1f\x37\x54\xe4\x5f\x21\xa2\xc0\x20\xb3\x52\x4f\xe3\x41\x53\x9a\xb3\x75\x24\xf5\xfc\x21\xb2\x34\xe6\xa2\x82\x88\xf5\x92\x25\xf6\x19\x7c\xa1\x28\xfd\x3f\xe5\x1e\x52\x68\x93\x22\x5a\x95\x6f\x61\xa3\x92\x89\x52\x45\xdd\x54\xe8\xd1\x7e\x35\x4b\x77\xf9\x96\xf7\x4d\x2c\x02\x9c\xc2\xdf\xc1\x0e\x20\xac\xf3\xea\x87\xf2\x5f\x61\xdd\x30\xed\xa7\x09\x41\x3e\x8e\x60\x10\x83\x62\x3b\x83\x25\x83\x96\xf2\xf4\xaf\x23\x6d\x08\xa2\xbf\x0d\xcd\xf4\xa7\xea\x30\xfc\xd3\x5a\x9c\xbb\x34\xbb\xd4\x29\xaa\xdd\x83\x2b\xbc\xac\xe9\xa0\x3c\xa3\xb4\xe1\x3a\x19\xf9\x23\xc1\x43\xc4\x79\x13\x90\x4c\x06\x3f\x2b\x6d\xf2\x23\xd4\x8f\x90\x63\xcb\x55\x78\x86\xd6\x8c\x9d\x17\x0b\x0e\xe1\x96\x12\xc7\xd9\xb9\xe1\xfb\xd7\x93\xc6\x9e\x4c\x98\x8e\x46\x51\xe1\x68\x0c\x58\xfe\x7f\x34\xd1\x35\x4b\x05\x72\x3c\xab\xb6\xbb\xd8\x9a\xbc\xa0\x7b\x14\xe3\x03\x7f\xee\xdc\x6a\x54\x52\xc9\xca\xac\x8a\xfe\x5d\x6e\x72\x5a\x77\x47\x4f\x2b\x08\x45\x99\xf4\x6d\x46\x82\xb8\xd0\x38\x60\x1f\x0c\x95\xfa\x5f\x9b\xd6\xe3\xf3\x78\xef\xb7\x6b\xdc\xf2\x43\x2f\x75\x7a\xe6\xbf\xa2\xa3\x13\xe1\xe3\x5b\x13\x6f\xc6\x75\x53\x83\xde\x77\x10\x4e\x14\x73\x6b\x5f\xb7\x89\x1d\x14\x9a\x71\x54\x70\x06\x83\xc3\xe6\xb8\xaa\x26\x1c\x9f\x3c\x53\x0f\xd8\x8b\xd5\x96\x2f\x53\xde\xc1\xe6\xc4\x2f\x54\x24\x65\x93\x7e\x3e\x83\xbd\x0a\x19\x54\x1b\x10\x52\xe7\xcd\xe1\xe0\x15\x5c\x3f\x13\x4f\xfe\xed\x73\xf6\x97\xe7\x85\x72\xaa\x4c\x25\xce\x28\x41\x88\x33\xb5\xdd\xf6\xd0\x4b\x9d\x22\x2d\x4c\xdc\xf6\xc5\xe7\xcf\x68\x44\xc5\xfe\xd1\xe3\xb0\xde\x6a\xf0\x79\x78\xa1\x93\x2e\x2f\xfb\x70\x1f\xeb\x14\xe4\x0f\xd5\x3e\x9b\xe7\xf0\xed\xf2\xc4\xd3\x6c\xc2\x5e\xfe\x98\xe7\x60\xb0\x3d\x12\x50\xdc\xcc\xc6\xc5\xc3\xfe\xb3\x89\x97\x68\x66\x91\x70\x2c\x84\x1f\x4c\xbc\x52\xe6\x0f\x08\xf8\x83\x78\xe8\x51\xd5\x8b\x81\xb1\x0d\x0b\xdb\x22\x4c\x40\xdb\xfb\x1e\x36\x20\x94\x18\x2f\x4f\x74\xcc\x60\xb2\xfe\x57\xab\x4f\xc6\x91\x0c\xb8\x15\x92\xd4\x53\xca\xed\xe0\x49\xb2\xc6\x71\xbd\xb7\x25\x71\x28\x7a\xac\xab\xfa\xcc\x57\x89\xe5\x8d\x3b\xfc\x1e\xd2\x49\x4c\xb6\x2b\x13\x05\xa3\xde\xb5\x41\xa9\x2e\xbe\xe3\x73\x24\x6e\xa8\xd2\xdd\xd6\x0e\x27\x5c\x6e\xc7\xe1\xf3\x25\xf6\x45\x94\x0d\x67\xba\xaa\xa8\xc3\x10\x04\xc7\x0f\x9f\x3f\xc4\x6d\x8e\x1b\x9c\x33\x60\xf2\xbc\x8d\x9a\x01\xea\x01\xd7\x68\x8c\x91\x4c\xec\x21\x14\x9e\x00\xda\x9e\xd4\x11\x84\xcd\x72\x54\xf3\x9a\xf6\xcf\xaf\xe9\x14\xa4\x5c\x36\x61\x51\x66\x36\xcb\x09\xa6\x82\x61\x86\x28\x35\x52\xba\xdf\x0e\x7c\x7a\xf7\xdb\xb8\x4b\xfe\x23\x45\x60\x0c\xb3\xd4\x59\x23\xa1\x18\x78\x5b\x35\x69\x6f\x2b\x61\x88\x61\x35\x05\xa3\x02\x9a\x13\xce\xe5\xe5\x45\xc7\xf0\xa9\x45\x34\x73\x73\x9d\x62\x68\x23\x09\xd2\x5d\xe8\x5a\xed\xbf\x22\x8a\xf7\xb8\x03\xf0\x95\xa2\x02\x36\xef\x74\x41\xfc\x11\x75\xaa\xf6\xe1\xe4\x2f\xdf\x4b\x57\x2d\x41\xd3\x84\xa1\xe6\x3b\x62\xc8\xf9\x84\x1c\xe9\xb0\x30\xa6\x67\xe3\xd8\xb4\x7c\x59\x8d\xb3\x1a\x89\xcb\x1b\xf8\x33\xa1\x19\x8f\x6d\x9f\xea\x01\xce\xe9\xab\x7a\xfa\xa8\x21\x60\x7b\x12\xb9\x1d\x15\x7d\xff\xdf\x8a\x5a\x66\x07\x03\xf8\x11\x70\x31\x58\x9b\xa6\x9d\xa6\xf9\x8b\xcd\xf2\x84\xa2\x6e\xdf\xd5\xf0\x84\x8b\x5a\x2a\xf5\xae\xa2\x59\x90\xd4\x40\x32\x68\xeb\x47\xe6\x01\x8a\xe7\x26\xde\xe4\xf0\xa4\xa2\x78\xa7\x63\x2a\xc5\xec\xa1\x6f\x90\x5b\x9f\xba\xc1\x2a\xda\xb8\x4c\x99\xfa\xd6\xe5\xea\x47\xc1\x94\x55\x94\x04\xfe\x0e\xe5\x28\xfc\xc7\x81\xf7\x4c\x1b\x64\xa6\x28\xa3\x22\x2d\xf3\x78\xbd\x45\xe1\x82\x94\x3a\x68\x25\x49\x2a\xe1\xfb\x72\x23\x53\x98\x41\x9a\xf5\xc5\x91\x65\x4a\x3f\x44\xcc\xde\xfd\x64\x8d\x92\xbc\x9a\xf0\x2d\x8f\xce\xdc\x09\x86\x01\xbf\xe8\x6e\x0f\x10\x97\x66\xab\xe0\x28\xb3\x26\x97\xdd\x13\x87\x18\xdd\x13\x1f\xa5\x0c\x31\x60\x7a\xb0\xaa\x23\xc0\x85\x0d\x21\x15\xbb\xb0\x61\x7f\x11\x4b\xb6\xfd\xca\xd6\x30\xb1\x8f\xd3\x1f\x22\xe2\xbe\xa7\x15\x50\xae\xd3\x06\xa1\xd4\x55\x05\x33\xba\x8b\x8e\x43\xac\xc9\x63\x93\x29\x75\x11\x6f\xdb\xf2\xbf\x06\x5e\x37\x8a\x5d\xdb\xf1\x0f\xb7\xb1\x57\x31\x1f\x96\x1e\x1f\xca\x2d\xb7\xd1\x26\x72\x52\x89\x5a\x82\xc0\xcb\x42\x4e\x7c\xa3\x9a\xcb\x7a\x92\xb9\x08\xc9\xbe\xe5\xec\x49\xfe\x5d\xe0\xb3\x98\x7a\x27\xf6\xc0\x81\x8e\x35\x99\xa7\x59\x6a\xc5\x6e\x49\x40\x9e\x52\x02\xf7\xc0\xc6\xec\xf2\x5d\xe9\x4f\x28\xf4\x92\xae\xac\x47\x67\x3c\xc0\xed\x62\x6b\xfd\x97\x81\x97\x21\x3c\xd5\x24\x6b\x37\xb6\x59\x5e\xe5\x6a\x5c\x5e\x75\x02\x16\xae\xee\xfc\xa9\xaa\xae\x2e\x9b\xd5\xb4\xda\x98\x5e\x76\x82\xcf\x68\xc4\xf0\xf5\xd4\x61\xd5\x87\xb7\x81\x00\xe6\xce\x4c\x99\xc4\xb6\x9c\x00\xd1\x0f\xa7\xb2\x62\xf3\x26\x7c\x20\x50\x18\x66\x6d\x25\x7e\xa1\xb5\xc4\xcb\xdc\x96\xa3\x36\x80\xbc\x02\x76\x9b\xca\x30\x3c\x04\xec\x37\xb7\x33\xdd\xe6\xe6\x3b\xf3\x87\x9e\x6c\x39\x51\xde\xdd\x1b\x74\x3f\x88\x24\x36\x95\xeb\x0b\x8b\x59\xb3\xd5\x38\x9f\x51\x1c\x70\xa8\x5c\x04\xc5\x18\x36\xe6\xc0\x1e\x05\xbc\xfc\xff\x35\x51\x9a\xfa\xdc\x93\x03\xcc\xee\xfc\x44\x05\xee\xb7\x03\x65\xcf\x7a\x1f\x6b\x1e\x2b\xf3\x24\x74\xf3\xd8\x77\x94\x76\x3c\xa9\x23\xd1\x11\xc9\xda\x5c\xee\x38\x28\x93\xb1\x35\xa1\x55\xd5\xa7\xf7\x02\x55\x7d\x7a\xcf\xc5\xe7\xcb\x26\x2a\x86\xcb\x65\x5c\xd7\x8a\x67\xf1\xca\xae\xa7\x5b\xdc\x6f\xea\xbe\xf4\xca\x18\xd1\x26\x6f\xb4\xc1\xd4\xae\xbb\x3d\x92\x5b\x5c\x5a\xec\x8c\xd2\x55\xd8\x25\xb2\xea\x00\xee\x80\x75\x51\x14\x26\x83\x69\x35\x2c\x41\xab\xb4\x47\xc6\x59\x3a\x8c\x7a\x51\x41\x9a\x3b\xd5\xe8\xb1\xf4\x36\xfd\x6c\xd4\x4a\xee\x28\xb7\xff\xab\x2a\x8a\x7d\xcd\x24\xcf\xef\x72\x08\x9f\x9f\xbf\xaa\x85\x8c\x2e\x2a\xa1\xc5\x1d\x5d\xef\xde\x7b\x51\x47\x7a\x97\x6a\x5d\xa4\xa5\xd9\x4e\x19\x17\x99\x59\x8d\xd2\xd8\x62\xe9\x20\x64\x42\x73\x87\xaf\xbd\x9e\x92\x8d\xab\xe4\x0b\x8a\x6e\xa2\xb5\xb1\x67\xc3\x07\xa3\xfb\xbb\xbe\xb9\xc1\x81\x29\x33\x30\x94\x19\x2a\xe5\xc4\x24\xe7\xf5\x48\x35\x60\x3c\x4b\x03\x5f\x2c\xe0\xea\xa4\x68\x0e\xb6\x9c\xa8\x2e\x84\x7c\xc4\x60\xdd\xe3\x82\xd9\xa8\xce\x4d\xe4\xc3\xb3\x4e\xfb\x58\x19\x2d\xa7\xcb\x68\xb5\x21\x0b\x63\x2f\x20\xe7\x38\x56\x3d\x79\x04\x33\x3b\xbb\x0e\x59\xbc\xbc\xdc\xa3\xaa\x93\x03\xba\xc3\x15\x96\xaf\xa7\xd1\x8b\xa1\x7d\xba\xfa\x75\x4e\x68\x63\x49\x96\xee\x31\x2e\x93\x20\x62\x6e\x6f\xa8\x92\xee\x09\xcd\x35\x3a\x83\x24\x1b\xf5\xb7\xcf\x34\x2a\xee\x5d\x55\x1c\x3d\xa2\x9b\x18\x33\xdd\x6a\xf3\x14\xb2\x9f\xa2\x18\x6a\xb7\xce\x1f\xa0\x02\xcf\x05\xe6\xc0\x8b\xfa\x7c\x0a\x2a\x36\x26\x29\x73\x1e\xa5\xb7\x47\x6b\x1e\x3b\xf1\x3f\x9b\x28\xef\xc5\xe3\x74\x9e\xe1\xd7\x5f\x57\xc7\xc8\x38\x8d\x72\x6e\xf1\x56\x1f\xd3\x48\x2e\xf3\xcf\x22\x8e\x56\xed\xee\x2a\xb2\xb8\x4e\x1b\x15\xf0\x1a\x2c\x82\xed\x2d\x70\xbd\xfc\x5e\xf5\x9b\xb1\x38\x76\x75\x7d\xbe\x74\x51\xb5\x7e\xe2\x34\x19\xd8\xec\x31\x35\x2f\xcf\x01\xbd\x80\x40\xff\xbe\xd2\x60\x42\xb9\x1e\x63\xbe\x83\x80\x08\xe8\x98\x9c\xa4\x56\x3e\xb7\x8d\x68\x98\x70\xe8\xdd\xc2\x30\xe1\xb8\x7a\x4f\xa7\x0f\x90\x02\x44\xd9\x8c\x49\xf6\xfc\xdd\x53\xc7\x41\x2f\x4d\xf6\xd0\x40\x38\xc5\x30\xe5\xfd\xa3\x0a\xb8\x1f\xd0\xf4\x46\x94\xb5\x11\x28\x4d\x4c\xb8\x53\xf1\x3f\x28\xe2\xce\x07\x35\xe2\x3b\x09\x6d\x42\xc7\x96\xb4\x0f\xda\x0a\xf8\x4b\x96\x82\x92\x41\x6e\xf8\x18\xe8\x9c\xe2\x2d\x15\x59\x14\xae\xe0\x11\xe2\xe1\x5f\x53\x02\xc8\xd7\x9a\x1c\x3b\x4c\xff\x35\xe6\xa4\x79\xb4\xde\x5d\x44\x27\xfc\x42\x9d\x78\x51\xb2\x2c\x0e\x4c\x4d\xc2\x48\x3e\x50\xe8\xa7\x6b\xc9\x1a\x79\xf5\x3a\xbb\x85\xbb\x34\x3a\x7c\xdd\x00\x79\xeb\x84\x26\x4b\xa2\x55\xae\x1f\x60\xb6\xff\xa6\xd6\x94\xfc\x4d\x3d\x5d\x4c\x61\xab\x30\xd5\x03\x29\x35\x3c\xf5\x62\x2d\x8b\x7f\xae\x53\xd8\x24\x89\x40\x3b\xc6\x7c\xde\x0a\x14\x2b\xfd\xe2\xb4\x60\xf6\x3e\xa5\x5a\xfc\x06\x9d\x17\x1c\x90\x61\x60\x5c\x6b\xd1\xb7\x19\x27\x3e\x70\x3f\xad\xaa\xd9\xe1\xd0\x24\xa1\xdd\xa3\xe8\x94\x9f\x07\x5a\xcc\x81\xf6\x3a\xf1\x59\xf7\xed\xfc\xbb\x81\x5a\x78\x1f\x4c\x14\x2f\x94\xa5\x7d\xa4\xd7\xa8\x92\x89\x34\x29\xec\x1b\x85\xf2\xfe\xfe\x87\x81\x2f\xd8\xfc\xc3\x26\x9b\xdc\x2c\x2d\x0b\xd1\x4b\xc2\x96\x78\x57\x6d\x8f\x77\x9b\xde\xb2\x9c\x59\x38\xf1\xb9\xc4\xf6\x81\xaa\x6c\x3f\x50\xa7\x5d\x68\xe3\xb8\xad\x2a\x9a\x2c\xbe\x8e\x82\xc0\x9f\x69\x98\x58\x6d\x11\x78\x51\x9f\xc2\x66\x89\x89\xd1\xd8\x63\xee\x0e\x7d\x9d\xf0\x78\x9e\x50\xde\x8b\x65\x5c\xac\xb7\x94\x36\x04\xaa\x8a\x7c\xdd\xa4\x2f\x19\x5b\x33\x28\xed\xb4\xb4\xa7\xc2\x36\xd6\xe6\xd0\x8b\x07\x3a\x39\xc9\x52\x7b\xbc\xce\x17\x81\xef\x4e\x7f\xa1\x2a\x97\x59\x5a\x0e\x84\x2c\x84\xe3\x8a\x8f\x38\x7e\xa1\xd5\xc9\xd2\x38\xb6\x19\x42\x20\x2d\x26\x83\x94\xe6\x9e\xc2\xc0\x9d\x52\x10\xb4\xb8\x9f\xb6\x5b\x73\x73\x2e\x30\xc0\x57\x21\x65\x39\xa1\xdb\x31\x77\x35\xde\xad\xb0\x49\x9f\x95\x4c\x70\x68\x3c\x0d\x9c\x83\x92\x29\x7d\x85\x7d\xde\xfe\x42\xd7\xbb\x00\x8c\x0d\x76\x14\x16\x6b\xd1\x0f\xf2\x74\x13\x53\x68\xd5\x66\xb1\x19\x53\x61\x43\x72\x84\x69\x91\x95\xea\xc3\xa0\x18\x73\x53\x19\x78\x9f\x9b\xd2\x31\x1b\xa7\x79\x54\xec\x9a\x2a\xfe\x56\x43\x21\x49\x6e\xcb\x29\x41\x7c\xa0\x1b\xee\xf7\x78\x24\x10\x57\xdc\x0d\x9e\x9e\x72\x77\x0b\x0d\xd0\x2c\xde\x3f\x79\xd2\x9a\x9b\xdb\x82\xbc\x22\x9a\xda\xb7\x02\xcf\xed\x34\xe3\x71\x96\x1a\xd2\x2c\x57\xea\xc2\xbf\x3f\xf1\x39\xff\xef\xd7\x94\xbf\x16\x16\x3a\xc5\xd0\xac\xb5\x6a\x93\x9d\xaf\x6b\xb5\xf7\x85\x85\x4e\x9a\x45\x83\x28\xe1\x8d\x0f\x1b\xc0\x96\xe2\x85\x6c\x39\xfc\x89\xed\xf7\x23\x8b\x39\x3e\x95\x62\x08\x49\xfd\x71\x85\x40\x63\x47\xcb\x87\x58\xcb\xfa\xbf\x8c\xd3\x32\x92\xe2\x2a\xb2\xd9\xff\x84\x07\x8c\xe6\xf4\x6f\x4c\x7c\xfb\xfd\xa2\x56\x27\xaf\xc3\xa1\xaa\x25\x95\xa6\x7c\xfa\x00\x8a\x82\xf5\xc1\xd7\x4d\xa7\x0f\xec\xec\x5d\xf6\x89\x89\xfe\xae\x9a\xf4\xef\x6a\xae\xad\x65\x0d\xf9\x3e\x64\xf6\x90\x91\x81\x65\xc1\xd7\x4a\x18\xc9\x18\x92\xed\x5d\xdc\x42\x36\xb4\x75\xd9\xb5\xad\x12\x93\x0f\x4b\x33\xe3\xab\x66\x1f\x6b\xfe\x5c\xab\x4b\x61\x9c\x74\x78\x94\x3d\xca\x85\x49\x83\x59\x47\x6c\x38\x64\xd2\x08\x30\xbe\xd6\x0b\x36\x4a\xdb\xbe\xf2\xc1\x75\x5a\xe9\x7e\xaa\x4d\x37\xf0\x26\x3c\x84\x9c\x59\xb5\x19\x6c\xde\x10\x3d\xa2\x7d\x81\x44\x9a\x6d\x58\x54\xc2\x22\xbb\x46\x0b\xe5\x71\xe4\xc3\x97\x54\x2d\x2b\x89\x42\xe6\x84\x89\xce\x1c\x55\x56\xf9\x85\x9b\x67\x66\x3c\x8e\xd7\x95\xb5\x3b\x4c\x1f\xf9\xd8\x9c\xea\x85\x4f\x94\x81\xee\x97\x4a\xe0\x1c\xb6\x1b\xc2\x5b\x51\xab\xf8\xc8\xe4\x31\xaf\xc2\x97\xef\xa3\x61\x10\xee\x38\x26\x21\xbe\xf2\x8e\x2e\xe6\x5e\x50\x35\xe6\x2d\x55\xad\xbf\xad\x15\x13\xde\x42\x98\x8b\x7e\x20\x1e\x03\x3e\x0a\x55\x14\x20\x93\x4e\x07\xca\x2c\xfb\x2d\xfc\x7a\x31\x82\xaf\x7e\x31\x02\xe3\xfb\xb5\x12\xc5\x73\x08\xcb\xa2\xb0\x10\x92\x26\xa2\xb9\x33\xa4\x53\xcf\xd7\x4d\x85\x0d\x3a\xc3\x56\x23\xbb\xc6\xfb\x2e\xf0\x36\xbb\x41\xf5\x12\x69\x21\x5f\x5d\xdc\xaa\x2d\x12\x39\x0c\x97\xad\x65\x3e\x14\x6e\xf7\x36\x46\x15\x1b\x1d\xb8\xe4\x02\xec\x91\x74\xcf\x54\xbf\x16\x0e\xa7\xd5\x23\x97\xe9\xa0\xe7\x46\x03\xbf\x7a\xb1\x93\xdb\x90\x2c\x37\xb4\x9e\x86\xe3\x5c\x7a\x71\x9f\x30\x2b\xc3\xc8\xc4\x68\xd0\x09\x24\x48\xc9\xbc\xdd\x55\xa9\xfc\x49\x25\x0c\xb0\xb7\xeb\x73\xc9\x41\x94\xc5\xcb\x59\x64\xab\xaf\x73\x72\x26\xc7\x69\x87\xe5\x6b\x55\x41\xec\x5b\x3a\xe5\x5b\x55\x98\x2f\x5c\xed\xea\xa1\xf1\x75\xad\xc3\x7c\xe0\x40\x27\x2d\x0b\x52\x6f\x64\x0c\x00\x74\x45\x19\x67\xc5\x2f\x6a\x5b\xf8\x73\xd0\xdb\xa4\x0e\x91\x23\xff\x1f\xf0\xe4\xff\x06\x80\x50\x35\x35\x56\x30\x2f\xb0\x6d\xb6\x37\x3c\xbe\xa7\xdd\xdd\xe7\x91\x5c\x06\x4d\x41\x27\x7d\xfe\xa2\x97\x3e\xdf\xe7\xf8\xab\x71\xbc\xbe\x9b\xa6\xa6\x08\x08\xf8\x0e\xde\x11\x1d\x11\xeb\x4a\xc1\x66\xe0\x42\xed\xf7\x7e\x6e\xc3\xe7\x18\x3f\xdd\xf5\x69\xdb\x6b\x65\x7f\xbd\xa5\x20\x8b\x13\x92\xb3\x13\x1f\xe9\x86\x16\x00\x0c\xce\xe9\x17\xe3\x5e\x6e\x07\xfe\x1e\x6f\x7b\xc6\x6d\x49\x85\xec\x99\x69\xb2\xfb\x76\xf3\x0e\x34\x33\x6e\x29\xb9\x8b\x9b\x4d\xa7\x61\x4e\x9e\xc5\xdc\x0a\xc5\xa3\xbd\xa9\x50\x3f\x37\x6b\xbf\xf3\xd0\x4b\x84\x74\x08\x31\xfe\x4d\x84\x2d\xed\xc4\x93\x98\x30\x4a\xcb\x5c\x59\xf5\xa1\xed\x22\x85\xb7\x87\x49\xdb\x2e\xa7\x80\x15\xa2\xa9\x7a\x8c\xa6\x28\x50\x2e\x97\x55\x23\x65\x06\x86\x30\xec\xf8\xe0\x4e\x9c\xd7\x4b\xdb\xb3\x21\x96\x2f\x06\xef\xaa\x12\x7a\xba\x48\x1f\xc6\xae\xff\x2a\x89\xca\x0b\x41\xc3\x57\xe3\xea\xb0\x55\x6e\xfb\xab\x4b\x2e\x2f\x2e\x2d\x76\x32\x97\xc4\xbb\xba\xb7\xdf\x49\x4f\xd6\x9a\xb0\x04\x2f\x6b\x79\x24\xc5\x11\xba\x1b\x11\x5d\x69\x00\x6f\xf5\x52\x65\xa9\x8b\xc8\xe3\x3d\xa5\xeb\xf0\x5e\x20\x78\xfe\x91\xc9\xf2\xe1\x88\x44\x46\xa6\xcd\x52\x7c\xa5\xe8\x42\x0d\xaa\x5a\x7d\x41\x96\x9a\x7e\x68\x72\x2f\xf2\x80\xa4\x11\x7a\xf7\x68\x26\x63\xc3\x93\x43\xc8\x03\x57\xf2\xc2\x8e\xa2\x90\x26\x02\xda\xe2\xbf\xa5\xdc\x1d\x7f\x4b\x9d\xc7\x73\xbf\x78\xa0\xad\x31\x59\xd5\x3b\xf0\x68\x3f\xd0\xaa\xc5\x27\x94\x01\x53\x6c\xc6\x04\xba\x56\x38\x20\x85\x0a\xa8\x43\xe0\x65\xe6\x94\xe3\xb6\x37\x30\xf9\x60\xe2\xc5\xb1\x58\xb9\x19\x25\xf2\xf7\x1f\x0a\x11\x7f\xcd\xac\x9b\x6c\x45\xa9\x94\x7e\xa2\x91\x01\x75\x09\x94\xa5\xd9\x8e\xc9\xf3\x72\x64\xfb\xd3\xec\x33\xfa\xb1\x78\x13\xd0\x08\x52\xa9\xd2\xb6\x45\x83\x21\xa7\x2d\xa2\xee\x48\x5f\x25\xf2\x8e\x0d\x12\xce\x63\x93\x15\x11\xaf\x56\x66\xd5\x07\x1e\x64\x7e\x5e\x61\x08\xa5\xac\xc1\x80\x21\xb1\xda\xf3\x85\x4f\x10\x06\x85\xf8\xd4\x70\x5b\x63\x13\x25\xcb\x25\xbe\x4b\xb4\xce\x68\x2b\x17\x15\x34\x0d\xac\x5a\x5e\x8e\xc2\x2a\x27\x6c\xfb\x9e\xf4\xed\x49\x4b\x49\x83\x28\xa3\xa3\x2f\x1b\xc5\xcb\x4d\x1e\x85\xca\xe3\x0a\xa9\x27\x5f\x2b\xb0\xfa\xaa\x49\xfa\x36\xe9\xd9\x0c\xc6\xff\x82\xf8\xc7\x30\xa2\x34\xc6\x4d\x31\xe4\x77\x77\x1a\x77\xbd\xb1\x4d\x9c\xea\x0d\x26\xe2\x6d\x5d\x9e\xbf\xab\xb8\xe5\x8f\x76\x75\xe1\x72\x1c\x0d\x66\xd4\x79\xc6\x25\x49\xa7\x43\xe3\x8f\x3d\x90\x43\xe4\x48\xf9\x8a\xe3\xa0\x44\xa3\x32\x36\x0e\xe6\x8f\x82\x6a\xbb\xeb\x73\x96\xf7\xf0\x3b\x10\x26\xed\x54\x11\xf6\x2f\x1a\xb4\x49\x90\x30\xef\xe8\x2a\x51\xb0\x1d\x1b\x0d\x12\x32\x24\xd2\x4b\x03\x8a\x4e\xfc\xf5\x89\xa2\x57\x5c\x57\x8d\xd1\x28\x8e\xed\xc0\x30\x78\x56\xdc\x73\xa8\x23\x21\x1b\x2b\x85\x7a\x82\x16\xad\x56\x97\xa0\x48\x1b\xf0\x2d\xe1\x72\x48\x67\xb9\x2a\x15\xbb\xba\x71\xb0\x7d\x3b\x7c\xbe\xd3\x33\xa3\xb6\x2f\x6a\xfd\x11\xfe\xdc\xd9\x00\x7f\xfb\x9b\xdc\xc1\xbb\xac\xb2\x2d\x78\xc3\x6b\xd8\x3a\x0f\x06\xbf\xa8\x69\xe9\xce\x1f\xea\xd8\x91\xcd\x06\xd2\xfd\xc5\x9c\xdf\xc2\x40\x63\x7e\x3e\xd6\xf5\x75\x95\x5b\xb5\x53\xa9\x8a\x39\xd6\x33\x13\x96\x39\xfa\x2c\x38\x5b\x19\x7b\xce\x2f\x14\x44\xfd\x5b\xf3\x73\x2d\x85\x46\xfc\x42\x09\x77\x7c\xa1\xd5\xfc\x6c\x56\x98\x28\x11\x33\x60\xa7\x7d\x56\xfd\x2a\xa1\xc0\xfa\x24\xfc\x0a\xcd\x27\x51\x7c\x76\x86\x6d\x66\x2d\x71\xf9\x1c\x26\xfc\x17\x4a\x39\xe3\x8b\xc9\x57\x25\x68\xb0\x2c\x12\x6b\x9c\x13\x81\x74\xd8\xab\xef\x10\xea\xd5\x13\x8a\x55\x92\x44\x69\xb6\xa7\xe5\xcc\xc5\xb9\x65\x85\x52\x3a\xcb\x9d\x2a\x28\xcb\x22\x17\xd6\xd1\x98\xc7\x5f\xdd\xc2\xea\x90\xe6\x8a\x6e\xb4\x6c\x0f\x2b\x5e\x3c\xd0\x19\x9a\x35\x13\xb1\x02\xf3\xd6\x4f\x10\x38\x03\x80\x74\x4d\x63\xb6\xcf\x35\xe0\xdc\x1c\xbd\x10\xb1\xb7\x20\x95\xa6\x18\x85\x7e\x0b\x59\xb3\x66\x05\x1c\x57\xcc\x79\x10\xe8\xb0\xe6\xf9\x7a\xaa\xa3\x4b\x5f\xce\x2f\x6a\x5f\xfe\x1c\x97\x7a\x1c\xf2\x55\x7c\xed\xfc\xd6\xb2\x19\xf8\x8e\x16\x3b\xe6\x20\xe8\xac\xd6\x98\x43\x0f\x2d\xcd\xf2\x54\xfa\x88\x10\xfd\x48\xe0\xce\x63\x3a\x20\xb4\x3a\xad\x1c\x04\x77\x6c\x50\xde\xcc\xef\x56\xa6\xc0\x79\xd4\x8b\xc9\x75\x88\xde\x88\x49\x75\x4e\x45\x0c\xe7\xb4\xdd\x6b\xe9\xe0\xff\x8c\xf0\x51\x8a\x1f\xb7\xeb\xd8\xf8\xb9\xea\xff\x05\xe1\xc7\xd8\x0b\xb4\x2b\xc5\xd9\xaf\xe5\x0c\x6e\x2f\xd4\xf2\xb3\x85\x85\xea\xa4\xb4\xec\xd7\xee\xb3\xba\x5f\x53\x16\xb9\xbf\x16\x78\xa4\xc0\x20\x5d\x17\xb0\x03\xa6\xe7\x94\x6a\xcb\xfd\xa9\x7e\x52\x34\xb6\xbb\xbd\x87\x04\xe2\x15\xee\xd4\xd0\x86\x85\x53\xff\x81\xb6\x6d\x3f\xc3\xcd\x5d\xa9\x1e\x78\x66\xe2\x49\x55\xc8\xea\xdb\xe5\x28\x89\x50\xfe\xae\x76\x41\x56\x50\xa2\x0f\x15\x35\xa5\x69\x5d\xcb\x7c\x1f\xcd\x41\x51\x52\x6c\x39\x1f\xd9\x5f\xc3\x94\xc6\xee\xc3\x58\x2a\x6c\xa4\x6d\xc8\x32\x22\x1d\xde\xd5\x55\x1d\x74\xdc\x09\xd2\xce\x7d\x4a\x58\x9d\x88\x36\xcc\xff\x65\xaa\x2d\xd1\xad\xf9\xc3\x41\x1c\x01\x20\x76\xff\xc6\x13\x0a\x0b\x95\x15\x43\x60\x7a\xd0\x20\x7a\x9f\xa6\x14\x5f\xd7\x9e\x18\x11\x04\xc5\xfe\x95\x26\xd4\xd6\xe5\x6a\x77\xd9\x6a\x2c\x47\x85\x69\x86\xed\x11\x2b\x8e\x99\xcc\xfc\x42\x49\xf8\xe4\x69\x6c\x32\xac\x15\x3c\x16\xe2\xe3\xc8\xb5\xa3\x54\x64\x69\xa2\x26\x09\x9f\xe9\xfc\xc2\xab\x19\x65\xe1\xd0\x64\x7d\xa8\x5b\x49\x66\xea\xb7\x68\x70\x4c\x71\x2e\x80\x9b\x2e\x9a\xe8\xd5\x50\x02\x6d\xf6\x51\xa3\x26\x8a\x89\x62\x27\x59\x2e\xe6\xca\xde\xa6\x7d\xca\xce\xb4\xdf\xa7\x06\xf5\x63\xfe\x68\xb9\xaa\xa5\x0b\xae\x4e\xb4\x18\x45\xf5\x19\xd8\xdc\x3f\x9d\xa8\xae\xe1\xc9\x69\xc6\x88\x6f\xb3\xbd\x3f\xed\x8c\xda\x72\xba\x10\xd0\x7a\x45\x7c\xf4\xbb\x9a\xd4\x7c\x52\xf3\x7b\x48\xd9\x65\x3a\x53\x73\x5d\xad\xba\x9b\xd6\xab\xaf\x76\x4c\xcc\xb4\x45\xc1\x95\xa8\xcd\x41\x41\x80\x3f\xdd\x2e\xe3\x71\x78\xf6\x95\xce\xcb\xf3\x87\xbe\x56\xdd\xab\x83\x0f\x57\x93\x9a\x8d\x61\xd1\x48\x41\x09\xe6\x16\xee\x1c\x79\xc6\xaf\x52\x1f\x11\xb1\x0f\xcc\x17\x24\x95\xa0\x7b\x42\x67\xfa\x23\x9a\xdc\xb8\xd9\x4f\xa8\x95\x8d\xff\x7e\x47\x69\x3a\x1d\xc1\x4e\x24\xa7\x1a\x16\xb7\xea\xac\x4a\x87\x8d\x85\x88\x10\x04\xef\xdc\xa0\x95\x02\xb4\xc5\x1f\x52\x81\x00\xc1\xc7\x91\x40\x21\xd9\x8f\xaa\x12\xe9\x4e\xf8\xa6\xe3\xc7\x0f\xb1\x23\x01\x9b\xf9\x76\xe0\x5b\x57\x0f\x26\xb4\x47\xca\xb1\xea\x29\xc8\x65\x18\xa6\x4a\xe3\xf2\xbc\xd2\xb8\x3c\xaf\x2c\xc1\x4d\x92\x26\xeb\x23\x56\x34\x7f\x85\xff\xe0\x32\x06\x51\x55\xf9\xe7\x79\x03\x39\xee\xca\x19\x61\x66\xde\x5c\xdf\xa5\xcb\x19\x98\x1b\x08\x22\x6e\x20\x42\xc5\xe0\x81\x5b\x8d\x0f\x00\x14\x41\x04\x45\xb7\x6f\xfc\x87\x67\x17\x3b\xb9\xb5\x23\x8a\xb8\x31\x56\x8c\x90\x65\x42\xdd\x44\x33\xf2\x9a\x84\xc1\x4d\x48\x26\xe1\x5c\xda\x17\x87\x58\x3f\xcf\x2e\x4c\x63\x5e\x87\xa9\x92\xed\x06\xde\x4e\x4a\x5e\xde\x90\x30\x23\xbf\x78\xcb\xf6\x9c\xce\x28\xa3\x4d\xdb\x24\x5f\x6f\xf8\x1c\xc5\xf5\x17\x60\x6f\x2b\x31\x26\x0d\x95\xb0\xd3\x9f\x6e\x30\xe4\x6b\x7b\x03\x84\x77\x94\x03\xfe\x77\x15\xbf\xec\xd3\x3a\x45\x65\x69\xf1\xeb\x55\x6a\xbd\x46\xcf\x9a\xa5\x06\x15\xfe\xf1\x66\x53\x10\x53\x98\x61\x54\x44\x2c\x66\xe7\xf8\x80\xfe\xc4\xd2\xe9\xf1\xc8\xbe\x11\x85\x28\x72\x8b\x82\x1f\xcd\x14\x41\x9e\xd3\x38\xe3\xfa\x54\xa3\x5a\x21\x09\xfe\xf4\x75\xfb\x80\x21\x28\xfc\xa2\x76\x4b\xcf\xd3\x80\x67\x7d\x09\xbd\x81\xab\x61\xef\x48\x7e\xa1\x5a\x84\xbd\x2c\xea\x31\x58\x16\x3b\x3b\x1e\x37\x5f\x37\x3a\xd0\x45\x03\x69\xcb\x08\x2e\xc0\x63\x65\xce\xa9\x26\x4a\x3f\x33\x23\x33\xa3\x08\x7a\x67\x03\x85\xb8\x64\x55\x09\x7e\x31\x51\xb2\xfc\xda\x8d\x87\xce\x75\x09\xd9\x64\x11\xf9\xf5\x70\x5c\x77\x06\xc8\x1b\x31\x4d\x58\xe4\xdd\xe5\x41\x0b\x0b\x5a\x9e\x64\xd1\x75\x7b\x1a\x3a\x99\x45\x96\x96\x38\x4b\xb0\x03\x4e\x79\xfa\x7c\xd4\x20\xab\xda\x49\xc7\xd6\x07\xf6\x42\x51\x50\x74\x05\xd7\x68\xc4\xa8\xd9\xfe\x2e\x1a\x0f\x69\xc6\xd2\x78\x48\xfa\x56\xad\x07\x14\x08\x3e\x9d\xa8\x5d\xed\x9e\x96\x9c\xbd\x58\x2b\x88\xcc\xcd\x81\xfb\xb0\x96\x66\x2b\xec\x09\xe7\x84\xcc\x3d\x94\x0a\x21\x1f\x7a\xcb\x77\xb5\x68\x7d\xba\x6a\xb3\x62\x46\x5b\x14\x6a\x43\x30\xf6\xe7\x77\x21\x9a\x0f\xd7\x54\x1e\x75\xf0\xbf\xfb\x25\xa5\x15\xb9\x2d\x02\x68\x12\x76\x34\xcb\xcb\x51\x1c\x89\x41\xbb\x04\xdf\x2a\x10\x6f\x10\xfd\x3f\x08\x2b\x0e\xba\x3f\x71\x74\xa3\x45\x81\x7e\xe7\xe7\x81\x8f\x14\x4e\xd6\xb4\xe0\x90\x66\x13\xed\x6b\x8d\x4a\xb7\xce\x18\x18\x4c\x6f\xbe\x56\xe1\x39\x39\x17\x4a\xbd\xd5\xd9\xc1\x2b\x9f\xf2\x26\xb3\x10\xc3\x75\x61\xef\x55\x5c\xed\x49\xd2\x26\xd4\xa6\xcf\x89\x29\xd2\x2c\xdf\x45\x87\x0f\xb2\xd9\x3b\x74\x2a\xb9\xc2\x48\x75\x44\xf2\x3f\xa8\x0c\xe5\x94\x76\xc8\x7d\x2b\xf0\x80\x8c\x51\xf6\xfc\x57\xe9\x69\x23\x11\xdb\xb3\xe1\x21\xe4\xfb\x89\x5a\xb0\xd5\x86\x9a\x2b\x8a\x1e\xbb\xbb\xd5\x39\x2d\x26\x5c\xad\x97\x85\xc0\xfd\x11\x3a\x5f\x8e\x8d\xeb\xd4\xeb\x8f\x52\x70\x24\x01\xb9\x46\x6e\x4f\x7c\x13\xe4\xbe\xaa\x5a\x31\x55\x01\xcd\x6d\x06\xf9\x22\xd9\xbc\x86\xad\x1c\x49\xe2\x2d\x00\x7b\xd1\x37\x86\x9c\x8d\xc0\x3b\xbc\x20\xe5\xa7\xa8\x72\x3c\xc9\x25\xf9\x2a\xac\xc0\x6d\xec\xdc\x68\xfd\xf2\xbc\x2b\x17\xeb\x93\x69\x1c\xaf\x3f\xa5\xac\xe1\x2e\x69\x8c\xf2\x3b\xa8\x93\x38\x24\xd0\x37\x7e\xc5\x89\x11\x55\xf7\xe2\x40\xbb\x4b\xb3\x5c\x8d\xbb\x4a\xed\x2c\x87\x4d\x71\x48\xb1\xef\x62\x71\x60\x51\x1d\x9b\xa8\xea\x32\x7a\x13\xd2\xf0\x69\xbf\xbc\x34\xbb\x75\x86\x46\x53\x64\x96\x68\x70\x40\xce\xb9\x10\x54\xcf\x42\x2c\x19\xaa\xe7\x26\xb8\x24\xaf\x69\x76\xd5\x07\xd2\x65\x11\x9b\x75\x36\x2f\x42\x26\xff\x36\xbe\x59\xb0\xcc\x4a\x35\x1f\x3c\x16\x89\x2f\x1a\xaa\x25\xa3\xea\xb0\x17\xa1\x61\x3c\xe8\xfb\x8a\x76\x76\x5f\x59\x61\x47\x49\x75\xd4\x52\xe5\x1d\x5b\x3a\xeb\x20\xe9\x86\x1b\x4b\x81\x89\x42\x52\xcb\x09\x57\xdd\xac\xed\x5a\xf3\x87\x3a\x7d\x9b\x45\xab\x86\x49\x7e\x1e\x15\x7d\x12\x9b\x22\xbf\xa8\xf7\x5f\xe6\x3b\x7d\x5b\x6d\xa6\x6a\x9b\x46\x62\x22\xce\x13\xdb\x8b\x5d\x0b\x0b\x9d\x61\x54\xec\x52\xca\x17\x5a\x26\xba\x05\x7e\x31\xde\x7c\x14\x5b\x0a\x6b\x34\x4f\x94\x0d\xd4\x4f\x14\x8b\xad\x9f\x45\x0c\xba\xc4\xbe\x71\x55\xdd\x29\x9b\x08\x48\x6e\x5d\x8f\xd0\x3a\x45\x39\x4a\x33\x28\xa3\x62\x09\x7d\xa0\xc0\x04\x1f\xd4\x8e\xf3\x2a\x1b\x57\x1c\x44\x84\x25\x00\x6c\xf2\xb5\xe2\xeb\x8e\x8c\x98\x03\x55\xbf\x1c\xc0\x17\x36\x37\xe3\x17\x0a\x1b\x95\x99\x7e\x64\x92\x02\xac\x06\x27\x77\x56\xad\x34\xd1\x34\x6b\x30\xbc\x1e\xa6\x23\x6c\x9f\xce\xae\xd6\x2d\xd9\x8b\xaa\xa5\xfe\xec\xdf\xf8\x6b\xb9\x6a\xfc\xc1\x74\x89\xaf\xfd\x91\x68\x47\x51\x62\x84\x16\x8a\xc5\xc9\xd2\x5d\x48\xbd\xee\x63\x3e\x49\xd8\xd3\xc4\x46\x8d\x92\xbc\x8c\x3d\xdd\x12\x7f\xfa\x25\x6d\x44\x7c\xad\xfa\x5c\xcb\x26\x29\x4c\x1e\xbd\x89\x3d\x9a\x75\x19\x68\xc9\x89\x46\xc3\xf6\x35\x32\x37\x57\x45\xea\x23\x32\x25\xf0\xac\x83\x8f\x91\xa7\xf0\x8b\xe0\x69\x29\xf2\x45\x39\x0c\x6f\x5d\x8b\x46\xdb\x64\x20\x1e\x47\x8f\x81\xe7\x8d\x16\x8a\x5b\xe2\x5a\x64\x53\x6f\x55\x19\xd2\x27\x45\x14\x46\x63\x92\x6a\xa0\x5d\x4c\xe8\x4f\xde\x6e\x65\xb3\x56\xb5\xa7\xf6\xd7\x2a\x9f\x65\xa8\x8f\x9d\xa7\xe7\xc6\xd7\x0d\x04\xbd\x57\x3c\x23\x70\xfe\x10\x1f\x2a\x67\xe9\x36\xf8\x7a\x8a\xee\x1f\x25\x2b\x24\xa2\x89\x39\x86\x5e\x19\x76\xa0\x1d\xdd\xea\xfd\x42\xf6\xaa\x46\x1d\x09\xce\x71\xa8\x83\xb9\xb0\xb0\x5a\x0d\x8e\xa5\x59\x65\x7a\x28\x98\x9d\xd4\x6e\x17\xe7\xa6\x9a\x07\x3f\x51\x52\x19\x77\x95\x2d\x31\x5c\xf2\xb8\xaa\x83\xa9\xcf\x6f\x70\x36\x10\xa1\xc9\xec\x72\x49\x7a\x8a\x0e\x1c\x79\x99\x3e\x8e\xaf\x95\x84\x66\x68\xb2\x7d\x34\x09\xd1\x9c\x82\x64\x3e\x8e\x8b\x9b\x14\x72\x28\x29\x2b\x09\xe4\x6f\x2a\xdd\xf5\xdb\x2a\x25\x7d\x74\x43\xf9\x37\xde\xc3\x56\x83\xc3\xe3\xa6\x36\x59\xbe\x84\x0d\x10\x2d\x83\x4f\x74\xe6\x7a\x64\xe2\x8d\x87\x55\xb2\x3a\x34\xd9\x0a\x03\x29\x30\xea\x00\x2c\x62\xc2\x21\x7c\x10\x3e\x78\x93\xf3\x5e\x95\x31\x72\x06\x80\x94\x9e\x39\xd9\xfc\x62\xaa\x6c\x56\xf4\x9f\xdf\xad\xee\xf4\x5d\x0d\x51\x17\xcf\x4b\x24\x02\x33\x94\xa9\xa2\x06\x72\x76\xd2\xfa\x96\xe4\xf8\x9b\x93\xa9\xd5\xbe\xd7\x2d\xce\x5f\x78\xa6\x0a\x31\xb0\x41\x5f\xe1\x8f\x92\x62\xbc\x92\x4b\xd9\xa9\x80\xf9\xd7\x94\xdb\x0b\xfb\xa7\x20\x30\x60\x08\x8c\x70\x31\xe9\x47\x22\x14\x79\x30\x51\x50\x97\xab\x13\xe5\x57\x08\xaa\x9d\x43\x68\xb9\xde\xe4\x45\xb8\x3b\xe2\xed\xb0\x2f\xc6\xb7\x5f\x09\xbc\x41\x2b\xc7\x31\x8e\x9b\x52\xcd\x67\xe7\xe3\x33\x37\xc7\x60\xd6\x8f\x27\x60\xc5\xe0\x3d\xa7\x03\xa5\xa9\x78\x49\xe5\x3c\x99\x65\x91\x27\x07\x5a\x05\xc0\x89\xaf\x37\xbe\x36\x5d\xd2\xa9\x46\xaa\x73\x78\xf6\x05\x14\xd7\x9c\xdd\x87\xb7\x80\xbd\x17\x28\x10\xf7\x25\x2f\xa7\xfa\xf3\x62\x7b\x28\x52\xa9\x4d\xd8\x35\xc2\x7c\x38\xca\x3c\x18\x19\x7c\xed\xcd\x97\x32\x9b\x17\xa3\x34\x29\x30\x09\x1d\xe5\xad\x1a\x85\x06\xfe\xdb\x7d\xb5\xbe\xd2\x22\x44\x6e\x8b\xfe\x11\x58\xc7\x7c\x5d\xdb\x8d\x5f\x3c\x40\xf2\xd2\x99\xe9\xa3\xee\x80\x85\x7d\x66\xa2\x56\xf9\x19\xf4\xba\x38\xf7\x2e\xb2\x74\x9c\xc6\x51\xe1\xa4\xf0\x04\x86\x4f\xef\x10\x26\xd7\xc3\xc0\x45\x69\xff\xff\x23\xc1\x7a\x7b\xfa\xf1\xff\x50\xf6\xaf\x31\x92\x5c\x59\x7e\x18\xce\xce\xaa\x7e\xb1\xc9\x61\x37\xc9\x99\xd9\x95\xb4\x52\xea\xff\x1f\x89\x10\x40\x11\x90\x61\x19\xde\x85\x81\x48\x74\xd5\x0e\xb7\x1b\x3b\xc5\x46\x75\x2f\xb9\xa2\x3f\x98\x37\x23\x6f\x65\x06\x2b\x32\x22\x19\x8f\x2a\x16\xfd\xc5\x80\x0d\xd9\x9f\x0c\x08\x16\x20\x0b\xb0\x61\x49\x90\xbc\x5a\x6b\x17\xf6\xae\xb5\x0f\x43\xbb\x9b\x35\x3b\xef\x1d\xce\x0c\x39\x24\x87\x64\x93\xc3\xe9\x77\xb3\xdf\xcf\xea\x77\x57\x1b\x71\x7e\xe7\xdc\x7b\xa2\x22\x68\xd8\x9f\x18\xc1\xae\xcc\x8c\xc7\xbd\xe7\xf9\x3b\xbf\x1f\x49\xe1\xa6\xe3\x71\x3a\x88\x8a\xc8\xc9\xd8\xa1\x56\xc8\xcc\x66\x7c\xd2\xb4\xdd\xfb\xbb\x63\x1b\x17\xb9\x06\x0d\x5f\xa6\xca\x9a\x13\xc1\x76\x8b\xf0\x77\x9c\x49\x00\x5f\xd0\xac\x87\xfa\x6e\x23\x4c\x0c\x57\x20\x60\x6e\x9d\xa0\x80\x83\xd9\x6d\x5b\x97\xcf\xf7\xd3\x24\x89\x80\x1c\xa9\x91\x92\x0b\x33\x51\xcb\x55\xf6\x6d\x6e\x0b\x02\x85\x8b\x14\x44\x65\xed\x65\x50\x53\x81\xca\xff\x82\x0c\x12\xf6\xe9\x63\x0a\xf4\x94\xd9\x61\x19\x57\x69\x11\xab\x03\x0a\x4c\xce\xb7\xc0\x50\x98\x41\x3e\x7b\x54\x05\x32\xf6\x4d\x1a\x3e\x9a\xf1\x39\xe8\x21\xfa\x4b\x87\xcc\xad\x76\x3c\x73\x13\x7a\xdd\xa3\x34\xc9\x23\x5b\x66\x08\x95\x50\x0d\xc4\xc3\xe0\xe3\x66\x35\xe6\xa5\xc3\xd4\x92\xb2\x1c\xbd\xb1\x3d\x53\x82\xfd\xe7\xa7\x7e\xf1\xd9\x37\x27\x36\x8b\x6c\x12\x32\x04\x48\xaa\xb9\x77\x95\xe8\xcb\x39\x6d\x8c\x2e\xab\xe6\xcf\xb7\x1a\x4b\xff\xb9\xe7\xba\x51\x12\x96\x59\x26\xb5\x10\x20\x31\x6e\xea\xf9\xdc\x9b\x6d\xdd\xba\x81\x9d\x94\x05\xc8\x82\x50\x4e\x00\xe7\x24\x1f\xeb\x72\xff\xc4\xda\xc1\x6e\x25\x58\x77\x66\xaa\xa4\xec\xce\xc0\xa0\x38\xa0\xc4\xe2\x7e\x5e\x34\x37\x35\xe1\x3c\x00\x46\x4c\x8e\x4c\x09\x0f\xff\x91\xa2\xb1\xc7\x16\x47\xa8\xf0\xfd\x46\x79\xe0\xe0\xc1\x2e\x08\xbf\x4d\x9f\xd9\x30\x84\xac\x4e\xcf\x60\xb9\x08\x32\x34\xc9\xc0\xc4\xdc\x4e\x64\xfd\xb2\xba\x98\x59\xb3\x66\x33\x0f\x4e\x43\x7e\x8e\x4c\xd4\xa6\x80\x47\x47\x55\x77\x75\xd5\x24\x85\x1d\xa8\x59\x07\xee\xfb\xa2\x6d\xfb\x30\xf0\x79\x13\x26\x5f\x91\x6e\x4e\x5b\x98\x8f\xbb\xfd\x52\x98\x70\xdc\x68\xf7\x01\x41\xfb\xeb\x55\x7e\xaf\x45\xb4\xf6\x70\x37\xb3\x6f\x94\x51\x86\x29\x3d\x05\x5d\x91\x51\x7c\x4c\xc1\xc8\x88\x82\x1a\x93\xfa\xc0\x55\x9c\xf3\xc4\x4c\x38\x6f\x44\xa4\x04\xc9\x04\x87\x06\x5d\xdc\xcf\x5b\x8e\xe7\x76\x45\x7f\xba\x69\xcc\x84\xd6\x9d\xa8\x81\xd8\x98\x21\x7d\xe1\x31\x0e\x3e\xa9\xa1\x5c\xaa\x17\x95\x0d\x72\x8d\x5d\xbf\x1a\x28\x28\x43\x87\xd0\x79\xae\xcb\xea\xd0\x70\x9c\x9f\x21\x32\x3b\xdf\x02\x41\xed\x97\x99\x35\x65\x98\x99\x10\xf1\x1c\x2b\xfe\xa8\x16\xcc\xef\x36\x1c\xdb\xcb\xfb\xbb\x71\xb4\x6c\xb7\x57\x37\x2d\x40\xa5\xea\x6d\x50\x46\x78\xe6\x69\x05\x32\x98\xa5\x51\x2a\x98\x7f\x1e\x39\x13\x8b\xe8\x2b\x8f\xa3\xb5\x89\xcd\x42\x93\x0d\x14\x73\xf4\x3d\x8a\x14\xf8\x98\xc6\x43\x91\xe2\x1f\x53\x73\xda\x37\xb4\xee\xb4\xd6\x72\xcf\x8b\x2c\x4d\x86\xa3\x34\x1e\x70\x6a\x2c\x4a\x54\x1d\x47\x70\x7b\x59\x15\xf1\x88\xa2\x13\xf9\x96\x03\x24\x78\x7e\x6e\xb5\xc7\xc1\x1d\x83\x20\x44\xd8\x0d\xab\xfb\x6b\xa3\x39\xab\x2e\x5f\x46\xf8\x7c\x75\xbe\x5f\x05\x04\x79\x91\x26\x8c\x98\x16\x4a\x2b\xaa\x1b\xf1\x89\x22\xe6\x09\x47\x69\x0e\x65\x87\x36\x29\xe9\xea\x69\x49\xec\x58\xfd\x9c\x9b\xb8\xa8\x02\x2e\x40\xda\x2e\x04\x5e\x35\x33\xb1\x4b\x51\xb1\x5b\xb1\x3e\xdc\xc2\x4a\x75\x10\xde\xea\xed\x08\xcf\x33\x6d\x0e\x54\x60\x66\xe9\x7d\xa2\xc6\xf4\x60\xfa\x05\x04\xf6\xbb\x68\x37\x48\x71\xb3\x8a\xd9\x64\x0a\xb3\xa5\x4e\xbc\x9a\x66\xcb\x6c\x74\x84\x8e\x9d\xbe\x56\xf8\xd8\x1f\x77\x0f\xe0\xb5\xc7\x55\xe7\x0b\x4f\x89\x79\x39\xa6\x9d\xe7\x9e\xe3\xbe\xcc\x6e\x50\x89\xa3\x4a\xfd\xbe\x22\x44\x3f\x45\x6f\x01\x91\xcd\x3b\x74\xb1\xa2\xd6\x49\x3b\x47\xa6\x50\x55\x26\x71\x7e\xda\x79\xe5\x10\x37\x02\x4f\x04\xb2\xf7\x5f\xb7\x76\x22\x34\x95\x8e\xbd\xd7\xf3\xf6\x71\x85\xf9\x8b\x00\x01\x95\xe3\x1b\x97\x99\xa8\xa0\x38\x86\x33\xa6\x1e\xe5\x13\xf7\xa2\xf2\x22\x75\xf4\x12\x6a\xd8\x5a\xea\x5d\x98\x5f\x46\x42\x72\x4f\x0b\x10\x5d\x6b\xe4\xa1\x73\x73\xd0\x4a\x8d\x52\xf4\x3a\x91\xd5\x5d\x53\xa4\x63\x28\x2c\xf0\x58\xac\x6a\xf6\x86\x65\x5c\x94\x99\xd5\x35\x88\xcb\x35\x51\x5b\x1f\x81\xf6\x27\x21\xdb\x30\xec\xc3\x9b\x7a\x53\xde\xac\xa1\x17\xfa\x35\x59\xf4\x2d\x54\x44\x4a\x5f\xc8\xe4\x23\x79\x52\xd8\x83\x6f\x6b\x4c\xd7\xdb\x6a\x64\x34\x5a\x32\xc2\xec\x89\x2b\xbb\x8a\xf7\x82\x47\xf5\x4d\x7c\x8c\x89\x12\x55\x01\x79\xd5\x84\xa3\x22\xb6\x19\x5f\xb8\x63\x7f\xaf\xfe\x5a\xd8\xdf\xf7\xa9\xc8\x6a\x9c\xae\xc8\x05\x01\x96\x82\x52\x3e\x1f\xab\x3f\xad\x1c\x2a\xa9\xfa\x57\x6b\x4d\xc4\xf1\x3b\x8e\x6f\xe0\xa2\xca\x52\x8a\xac\xcc\x0b\x6b\x39\x40\x46\x12\xf6\x1e\x2e\x01\xc1\xdd\x31\xbc\x75\x44\x64\xd7\xb1\x48\xf1\x04\xde\x57\x95\xa2\xcc\x4c\x2c\xc9\xa4\x0a\xeb\xbc\x4f\xeb\x51\xd5\x40\x33\xe3\x41\xc3\x2b\xbe\xf6\x5a\x77\x29\x36\x45\x61\xb3\x35\x5a\x6a\x12\x10\x75\x74\xb2\xe6\x66\xd2\x3e\xc4\xdc\x2c\x82\xe6\xdf\x6b\xa3\x9a\x1d\xc6\x26\x4f\xd2\xbc\x20\xdd\x70\x9e\xf9\x99\xaa\x81\x7f\xae\x74\x3a\x05\x19\x67\x2d\x1e\xb6\xd1\x99\x16\x26\x2f\x22\x8b\x65\x8b\x50\xe4\x14\xae\x40\x70\xed\x64\xac\x84\x07\xb1\xc9\xb8\xf8\x6a\xd7\x4c\x26\x26\xb3\x49\x81\x30\x05\x3b\x1a\x68\x25\x3e\x6e\xc0\x02\x16\x88\x05\x19\x04\xc8\x00\x38\x1c\x53\x73\xd1\xc7\xda\x26\x17\xad\xc9\x62\xa1\x86\x85\x01\xd9\xc4\x95\x91\x61\xfa\xc9\x57\x7b\xaa\x7b\x86\xeb\x47\xe4\xb3\x6d\x7d\x9f\xc6\xcf\x0f\xc7\xee\x42\x51\xb2\xbf\x1a\x28\x1e\xb9\xab\x80\x57\xf3\x5a\xa4\x46\x58\x11\xa5\x09\x62\x11\xee\x78\xc0\x7e\xaa\xf6\xc7\xa2\xbb\x4d\x0f\x75\xaa\x2b\xeb\x0c\xa3\x70\x3b\x16\x1f\xcc\x6e\x8d\x84\xf9\x94\x9a\x1b\x5d\xd7\xaa\xe7\x7f\x30\x55\xa8\xeb\x3f\x6a\x55\x4a\xb4\x59\x3a\x90\xf0\x10\x35\xd6\xeb\xaa\x25\x7c\x5d\x2d\xde\xa5\x32\x19\xec\xa6\xef\x43\x4a\x7c\x55\xdb\xe5\x47\x0a\x2f\xf5\x5a\xdd\x41\x76\x1c\xa3\xd1\xbb\x81\x67\x52\xb9\xc2\x55\x0f\x19\xd7\xad\x3b\x58\x0f\x54\x3c\xdb\xd8\x0b\x8e\x37\xdb\x4c\xa8\x41\x86\xc7\x75\x4b\xe9\xd6\x62\x9a\x0f\x3e\xf0\x98\x1a\x8d\x8e\x0a\x3b\xce\x77\xf9\xa1\xa6\x2b\x4a\xa1\xf5\x7b\xd8\xc0\xa8\x7c\xdd\x46\xd6\x28\xd5\x0a\xe5\x72\x4e\x4c\x75\xfb\xd7\x2b\x1a\x70\xf5\x0d\xee\xf5\x82\x1f\xd7\x4b\xec\x78\x4d\x8f\x5b\x1e\xa7\xe7\x84\xca\x15\x52\x3c\x91\xfe\xfe\xb2\x5a\x36\x51\xb2\x62\xf3\xc2\x61\x7d\xd0\x1e\xb8\xaf\x10\x49\xf7\xa7\x52\x87\x1d\xd9\x71\x9a\x65\x23\x33\x14\xf4\xae\x96\xb5\x15\xce\x5c\x55\xc1\xfd\xcb\xe9\x1e\x6f\xd5\xd2\xbf\xe9\x1b\x4f\x3b\xc1\x90\x25\x72\x55\xf4\x00\x70\xf2\xd3\x40\xf5\x90\x58\xfa\x05\x1e\x63\xdf\xba\xa2\x7c\xbe\x4f\x75\x24\x94\x05\x8e\xe1\x27\xb1\x0a\x4f\x53\xd3\xcd\x21\x3b\xe7\xe6\x38\xec\xda\x98\x6a\xb0\xdb\xb7\x03\x05\x54\x3e\x86\xde\x9c\x73\xbd\x9e\xd4\xe3\x26\x31\x89\x63\x13\xbc\x3d\xf5\x04\x63\x67\x89\x18\x70\xf3\x14\x26\xfd\x71\x15\xb7\xa8\x97\xc5\x32\xd4\xac\xb6\x88\x5d\x82\x92\x30\xbe\xf1\x67\x14\xb0\xe2\x13\x7f\x4a\x79\x1c\x56\xd1\x63\x0a\xb0\x77\x1c\x38\x1e\x56\xad\x45\xe3\x00\x2b\x97\x5b\x61\x14\x34\xef\xdb\x4b\x32\x3d\x58\x5c\x7f\xa2\xe8\x30\xfe\x48\x63\x01\x36\x55\x36\xbf\x62\xb3\x3c\x4a\x93\x1d\xaa\x66\x5e\x93\xad\xa0\x57\x8e\xee\x34\x17\x47\xf9\x2d\xf2\xee\x71\x08\xe5\xea\x69\xc3\x11\x9c\x54\x68\xc5\x91\x89\x63\x76\x9b\xdc\xf3\xd1\x3d\xfe\xe3\x0d\xa8\x74\x15\xfc\x0c\xec\x8c\xae\x8e\x56\x4f\xd8\x71\x1f\x79\x07\x7d\xaf\x56\x13\x7f\xeb\xad\xad\x78\xe1\x6a\xf5\x48\xf7\x58\x75\x92\x61\x29\xe5\x1f\xda\x60\xab\xe3\x49\x6c\x1d\x6c\x55\xfc\x37\x7d\x4a\x1c\x78\x1b\x9b\xf0\x64\x12\x47\x76\x30\xab\xea\x6e\xa7\x02\x5f\xbc\xe4\x8e\x28\xff\x83\xda\xc1\x57\x1a\xc3\x27\xaf\x2c\xee\xef\x46\xd5\x35\x8c\x15\x7a\x56\xa2\x1e\x05\x75\xd0\xba\x90\x34\x11\x48\x5e\x85\xa5\xad\xa6\xba\xcc\xa2\x5b\xfd\xb4\xea\x50\x8e\xbc\x53\x33\xef\x89\x8d\xf7\xd4\x86\xe8\xaa\x0f\xb9\x2a\xbc\x23\xc8\xbb\x8d\x75\xe4\x98\xb8\xab\x95\x27\x08\x8f\xea\xab\x85\x2f\xad\xda\x88\x52\xb7\xa7\x67\x02\x47\xbc\x93\xf2\x3b\x58\x90\x3f\x57\xe2\x08\xb7\xd0\x86\x10\x0e\x3d\xc5\xef\x45\x81\x70\x5a\x72\x62\x06\xdf\xf8\x79\xe0\x01\x47\x9f\xb7\xe8\x37\x74\xdf\x28\x4d\x56\xd8\x8c\xa5\x13\x59\xf0\x4c\x6d\xb8\xcf\x14\x17\xf7\x92\xed\x67\xa5\xc9\xd6\x66\x6b\x34\x6e\x6a\x6a\x19\x45\x58\xd5\xd9\x9e\x77\x15\xd9\xa7\xd5\xac\x78\xe5\x68\xab\x50\x8e\x9e\x0f\x62\x98\x6f\xc2\x0d\xf1\x89\x1a\xea\xb6\x49\x98\x96\x99\x19\x56\x61\xbb\xd3\xb2\x38\x0f\x3f\x8c\x0d\xc5\x30\x41\x3e\x99\xaa\x11\xbd\xe0\x59\x87\x5d\x1f\x46\x79\x51\x13\x2b\x71\x2f\xdc\x11\x7e\x5d\x51\xd8\xa3\x3c\x4e\x57\xe3\x35\xc4\x01\xae\x52\xe8\x83\xac\xd3\x8a\x77\x81\x99\x02\x04\x37\xb3\x35\xf4\x39\xf2\x52\x77\x40\x65\xae\xc5\xfd\xad\x03\x55\x2d\xbd\xef\x41\x5a\x12\x02\xbb\xa3\x3a\x75\x9b\x4a\x55\x6b\x53\x95\x81\x26\x91\xcd\x42\x4c\xfc\xc1\x4e\xa3\x8d\xc7\xc7\x8d\x12\xc9\xfc\x91\xee\xeb\x69\x99\x25\x26\x8e\xf2\x82\x07\xaf\xa4\xd8\xdc\xf1\x14\x62\x2d\x18\x92\x85\xee\x24\xcd\x04\x7e\x27\x02\xe8\xbe\x9b\xd4\x04\x2d\x2d\x2c\x74\xfb\xd6\x64\x39\x71\x95\x4a\x5e\xad\x1a\xe8\x7f\x4e\x59\x23\xfc\xd4\xbb\x78\xb8\x40\x11\x6f\x38\xc1\x90\x81\x91\xe1\x23\x2c\xa9\x5f\x60\x49\x89\x1a\x27\xed\x28\xa6\xc6\x71\x09\x65\x95\x27\xa0\x05\x8e\x12\xcb\xc3\x1a\x63\x01\x7d\x9e\xd9\x6c\x54\x8f\x33\x8d\x93\xed\x5a\x24\x1b\x7d\x51\xa7\x06\xeb\xd8\x06\xae\x28\x00\xd5\x05\xcd\x65\x79\xa9\x55\xab\xd1\x24\xe1\x88\xaa\x51\x4a\x03\x15\x70\x20\xaf\x75\xef\xe4\x8e\x4d\x96\x45\x8c\xb9\x47\x60\xf2\x5e\xe0\x91\xb6\xef\xa9\x12\x8c\x29\x8b\x51\x9a\x51\xbd\x7e\x56\xfd\xf9\x5d\xa5\x2d\x0a\xd9\x3d\x6c\xe0\x1f\x6b\xd1\x8b\x9a\xf8\x50\x1a\xee\xf4\xe5\x24\x26\x1d\xaf\x09\x8b\xa3\x95\xc6\x40\x73\x9c\x5c\x57\xb9\xea\x9e\x9e\x12\x97\x5a\x07\x76\x45\xca\x17\x5b\x9d\xd5\xf3\xdd\xb1\x59\x66\x8d\x18\xa9\xb0\x56\xef\x9f\x8f\x7d\xdd\xd4\x9a\x7e\x96\xa6\xe8\xec\x20\xe8\x7e\xa0\xbb\x28\x0f\x74\x71\x29\x7a\xa3\x8c\x06\x6a\xed\x7f\x40\x9b\x9f\x8f\x1b\x78\x85\xc5\xfd\xdd\x7c\x64\x26\xac\x40\x2c\x3a\x3b\x33\x5e\xc3\x13\x0f\x5c\xf0\xdd\xb4\x54\xb0\x22\x8f\x6b\xa6\x9c\x0c\x12\xaf\x74\x81\x68\xe3\x7d\x84\xf0\x9e\x4f\xda\x94\xde\x98\xcc\x42\x5c\x94\x48\x86\x56\xd7\xc1\xc7\x0d\xdf\xb6\xb0\x70\xb8\x3b\x36\xd9\xb2\x2d\x26\xb1\xb0\xb3\x61\x71\xbe\x1d\xf8\x59\xd6\xb7\x55\xda\x3b\x2a\x93\x41\x56\xdd\xdd\x9c\xcc\x96\x6d\xc3\x0b\xd2\x64\x29\x48\x73\x4f\xe1\xee\x50\xc7\x3c\xd1\x46\xf9\xbf\x1a\x15\x9e\x48\x43\xc4\x2d\x3b\x5e\xe8\x52\x85\x45\xab\x69\xb6\x4c\xe0\x44\xc7\xc0\x87\x42\x3e\x1f\x4f\x7d\xf5\x25\x4b\x97\x2d\x28\x7d\xa4\xa0\x44\xeb\xa1\x26\x7c\x87\x7f\xb9\xd9\xb0\x8b\xa0\x6c\x4f\x4c\xc2\xcf\x02\x9b\xf0\x87\xca\xcd\xff\x50\x21\x7b\xc3\x34\x01\xe0\x21\xe5\xea\x23\x33\xe8\xd1\x9a\x13\x36\xbd\x27\x7d\xd7\x5d\x5e\xa8\x20\xe2\x3a\x4a\x84\xae\xe9\x34\x0f\x11\x57\x79\x14\x5a\xa9\x5c\x49\x0c\x4a\x77\x20\xc9\x98\x2a\xd6\x5c\xd6\x7c\xa0\xfd\x3c\x2c\x33\xab\x7a\x42\xff\x62\xda\xd1\x2a\xd2\xbf\xf5\x1b\xbc\x84\x2f\x69\x86\x1a\xe3\x54\x72\x11\x9b\x5f\xae\x35\xf6\x14\xe1\xc2\xd3\x3d\x5f\x07\x7b\x7c\xbd\x4e\x30\xee\xe6\x5b\x9a\xf4\xe0\x47\x5e\xea\x0e\xb3\x74\x55\x2a\x2c\x8a\x0a\xd5\x31\xf4\x05\x1e\x68\x34\x8c\x56\x6c\xbe\x9d\x76\x3c\x62\xcf\x07\x14\xc1\x49\xad\xdd\x9b\xb8\xce\xba\xaa\x1a\x31\xca\x96\x4f\x5a\xd4\x1c\x5e\x25\xa9\x09\xaf\x01\xc0\xa0\x28\xba\x3b\x01\x48\xf9\x8b\x18\xdb\x38\x4e\x67\xbc\x32\xdb\x1d\x84\x4f\x68\x2f\x1c\xc7\xda\x12\xc0\xa9\x37\x9f\x35\x02\x3e\x45\x1a\xe9\xd5\xda\x1e\x69\xdc\x52\x34\x48\xa2\xe1\xa8\xa0\x88\x11\x31\x1e\x98\x1b\x35\xa2\x16\x3d\xb3\x9f\x57\xd6\xa7\xb7\x75\x1f\x4b\x02\x3c\x2a\x93\xa1\x08\x07\x8a\x78\x18\x5d\xae\xa8\x87\xb5\xb0\xe1\xe2\x61\xa8\xde\x01\xd4\x71\xf8\x58\xf9\xaf\x7f\xf4\x77\x17\x67\xab\x54\x0d\xc1\xd6\x51\x1a\x7b\x44\x62\x03\xd9\x19\x6c\xf4\x9b\x7a\x38\xf8\x31\xc5\x33\x30\xb2\x99\x7d\xa2\x7a\xeb\x4e\x14\x6e\x6b\x14\x87\x05\x79\x1c\xb9\x25\x9e\xd2\x06\x55\x80\xdd\x64\x75\x15\xbd\x09\x58\x91\xf8\x5b\x4e\xe1\x05\xc0\x2a\x6e\xd2\x85\xc3\xd9\xff\xf3\xa9\x67\xee\xf8\x14\x2b\x02\xd7\xcd\xef\x4f\x24\x92\xbe\xe4\xc1\x4b\xc3\x92\x1f\x83\xdb\xc6\x7e\x4b\xb7\x16\x85\xed\x9b\x93\x34\xa7\x32\x2b\x7d\x3f\xb6\x0c\x53\xc6\xf1\x89\x53\x75\x8b\x89\x32\x08\x6d\x6c\x35\xe8\x7a\xd8\xad\x06\x3f\x0d\xc9\x93\xbc\xd8\x02\x65\xdf\x72\x8f\x56\x54\xd8\x95\x88\xc0\xa5\xa0\x05\x0d\x1d\xa6\xe3\x71\x99\x44\x6f\x94\xac\x8d\xc9\xf9\x66\xbd\xee\xe3\x0d\x7a\xb5\x48\x4d\x81\x0c\x4f\x8f\x6a\xe3\x31\xfe\x5f\x81\x8e\xc2\x55\x94\x9e\x97\x61\x68\xed\x80\x6f\x5d\x68\x81\x34\x47\x90\xc3\x85\xe5\x45\x66\xcd\x38\x8e\x12\x87\x0b\xc3\x9b\xc0\x38\x31\x87\x63\x6a\xea\xe9\xaa\x07\x56\xa4\xe3\x89\x49\x22\xcb\xe8\x1e\xa4\x49\xf7\x02\x95\xb0\x8a\x26\xa9\x0c\x1b\xf9\x3d\x15\x8e\x4c\x54\x45\x45\xbb\xab\x35\xe1\xf4\x6e\xaa\xfd\x8e\xda\xfb\x29\x3d\x67\xff\x88\xbf\x46\x46\xdb\x2a\xef\xc6\x90\x60\xd5\x96\x06\x7f\x8d\xa3\x39\xf5\x5a\x9f\xa7\xe9\xed\x21\x21\xdb\x68\xd9\x63\x87\xba\xc3\xcc\xda\x84\x6a\x53\x22\x53\xd3\x71\xb3\xf6\xb7\x03\xbf\xf7\x4e\x2b\x2a\xe5\x32\xc9\x2d\xb1\x2a\x50\xd7\x14\x55\x07\xb4\xcf\x51\x1f\xbe\xaa\xa0\x4d\xc7\xd4\x3e\x1d\xf7\xf3\x9d\x9d\x85\x85\xcd\xc7\x81\xb7\x42\x48\x03\xa1\x48\xa9\xab\x7b\xae\x44\x56\xf5\x64\x1c\x07\x6e\x0a\x25\xf4\x7d\x3d\xc5\x7f\xa4\xb5\xed\x47\xe5\xd8\x24\xb3\x3e\x42\xbb\xa3\x67\x6c\x8e\x4f\x3b\x8a\x0b\x44\xa9\x49\x1d\x77\xc1\x73\x31\xb2\x4b\xc5\x76\xa5\x83\xcc\xd5\x1c\x37\xb1\xe0\xe2\xfd\x7d\x3d\x5f\x0e\x7b\x44\xf6\x46\x3a\x49\x2d\xb5\xdf\x38\xcd\x2d\x2d\x78\xfc\x1e\xcb\x5f\xf1\x49\x1b\xef\xeb\xd7\xba\x89\xd5\xa4\x75\xdb\x54\xdf\x73\xdb\x7a\x5b\xe3\x1c\x09\x5b\x47\x95\x0e\x2e\xaa\x61\xb3\x8b\x4a\x47\x37\x36\xc9\x60\x4f\x75\x31\x40\xf8\xdd\x53\x48\xad\x87\x24\x32\xeb\x88\x5b\xaa\x8b\x54\x1a\x40\x4e\xc4\x5f\x41\x38\xa4\x2a\x26\xea\xae\x3e\x16\x65\xce\x7f\x7c\xfe\x3d\x10\xb1\xa3\xc6\x7f\xaa\xae\x01\xdb\x92\x30\xe6\x23\xb3\xda\xf1\x3e\xef\x8a\x8e\xe0\xb5\x9c\xf5\x7f\xfa\xab\xfb\xb1\xc9\x65\x1c\x4b\x65\x24\xe7\x5a\xc4\xe1\x0e\xb3\x80\xcb\x78\x22\x28\x83\x79\x5f\x42\xac\x6e\x90\x4f\x94\x56\x9f\x53\x57\xdf\x41\x7f\x80\xc5\x78\x5c\x89\xa6\xf2\x10\x22\x3c\x30\xcb\xec\xb2\xf4\x20\x3d\x0d\xcd\x78\x2e\xb6\xea\x59\xc5\xf2\x16\x15\x11\x23\xad\xfd\x18\x08\xea\xa1\x7c\xdc\x26\x21\x9a\xdb\x38\x26\x7d\x4d\x86\x02\xa0\xb8\x02\x62\xd0\x13\x35\x00\xa9\x86\x94\xf9\xe5\xff\xc7\x0e\x71\x19\x8d\xc7\x76\x10\x99\x02\xf8\x05\x4d\x7e\x84\x31\x4d\x44\x53\x58\xaa\x5c\x40\x15\x72\x0d\xad\x1c\x96\x43\x17\x00\xc5\x51\xec\x7e\xe6\x0f\x09\x3c\xf0\xe8\xd6\x54\xc9\x80\x3e\xa6\x32\xb1\x25\x56\xd4\x81\xc3\x99\x55\x04\x69\xb3\xeb\x8f\x0b\x98\xee\xb5\xd7\xba\x9d\xe7\x9e\xe3\x6d\x06\x3d\x32\x04\x7f\xdb\xc8\x26\x22\x71\xbb\x47\x18\x53\xb8\xa0\x1b\x5c\x44\x75\x95\xbd\x57\x24\x5c\x64\x31\x79\x19\x56\xe9\x1c\x79\xc9\xd5\xeb\xa8\x20\x0b\x2b\xf3\x01\x95\x13\xf1\x7b\xdf\x47\xbf\x09\x7f\xb5\x81\x82\x0b\x3c\xfb\x55\xe4\x7d\x82\x6d\x50\x0e\xe0\xb4\x9e\x99\xbc\x8a\x1d\x80\x4a\xde\x2f\x68\x65\x08\x1e\xb0\x32\x1e\x28\x6d\xf1\x78\x22\x60\xa8\xff\x81\xe2\x0b\x7c\xba\xd3\xf3\xb5\x82\xfb\x81\xd2\xc6\xf9\xe9\x54\xe1\xfa\x6f\xa0\x86\x84\x7f\xd9\xb3\xae\x10\x71\x14\x9a\x71\x87\xfa\xca\xb4\xf3\x0d\x29\x89\x5f\xd5\x42\x7c\xdf\x9d\x7a\x23\xf3\x73\x2a\x2d\x23\x8b\xfa\x1c\xc5\x26\x6c\x3f\xd9\xf0\x52\x50\x50\xc4\xee\xa3\x74\x35\x4b\xd3\x31\xe8\xdf\x04\x7c\x5b\x7d\x0d\xfc\xe8\x77\x60\x8b\x9d\x2a\xb7\xa3\xd8\xfd\x0e\x2c\x8d\xe8\xce\xf8\x4c\x61\x25\x0a\x8b\x34\x5b\xa3\x74\x15\x7d\x0f\x9e\x99\x44\x8e\x04\xb1\x6b\x46\x33\xaf\xab\x61\xb6\x99\xde\x53\x8a\x60\xd6\x0c\xaa\x48\xdd\x13\xcb\xf0\x20\xad\x53\x81\x76\x00\x04\x48\xa3\x88\x38\x42\x0d\x9a\xd6\x12\x9b\x8e\x6c\x96\x4a\x7e\xe8\x82\x13\x1f\xa8\xb4\x8a\x1a\x16\x59\x19\x43\xc9\xc5\x89\xf6\x7a\x01\x5f\x07\xbe\x37\x59\x6e\x13\x82\x4e\x29\x25\x0b\x55\xc5\xf1\xfa\x9e\x05\xf1\x78\xd0\xbd\x49\x14\x4d\x9f\x91\xf8\xda\x87\x1c\xfd\xcc\xae\xd8\xa2\x88\x3a\x1e\x47\x72\x5a\x6b\xaf\x9c\x56\x6c\x26\x79\x99\x4d\xe2\x32\x9f\xf5\x61\xdf\x15\x4d\x1c\x74\xc2\x5b\x87\xe4\x04\xd6\x8f\xf0\x80\xb6\x30\x8d\x8d\x6c\xd6\x67\x7c\x3b\xc6\x60\x2e\x28\x7a\xff\x0b\x5a\xe7\xb0\x8c\x8b\x68\x12\x33\xbf\xa9\xcc\x57\xd7\xf2\x63\x6f\x30\x06\x51\xba\xbb\xda\x9c\x02\xfa\xf7\xb3\x39\x97\x68\xd7\xc0\x2c\x9e\x55\x7c\x14\x4f\xa0\x14\xe0\x60\xc0\x9e\xd2\xf3\xa6\x92\xfe\xe0\x39\x44\x89\x4b\xb1\xd4\x25\x19\xf5\xf6\x6e\x90\xa5\x13\x5a\xe5\x32\x2f\x4f\x4f\x01\x27\x97\x6b\x72\xad\x64\x01\x60\x09\x6f\x61\xab\xf2\x5f\x39\x3d\xad\x38\x2a\xa2\x21\x15\x66\x67\x7c\xc9\x87\xb9\x7e\xc5\x5f\x78\x58\xe6\xc5\x5a\x21\xbe\x2c\x46\xbb\x71\x8d\x58\x43\xbb\x7b\x5e\xce\xed\xe7\xb0\x4b\x0e\xe4\x5b\x2d\x12\xfc\xf6\x3d\x4d\xe6\x08\x4d\x29\xec\xd6\x1b\xf4\x43\x30\x06\xdb\x7a\x1e\x42\xbf\x11\x28\xc5\xc5\x26\xc7\x01\x71\xa0\x85\x25\x2a\x72\x33\x1a\x74\x30\xb3\xae\x82\xb6\x9f\xeb\x41\xdc\x9d\xbd\x2d\x0a\xef\x07\x0f\x2e\x76\x8f\xbc\xb4\x5d\x51\x96\x5c\x0a\x7c\xef\xf3\x43\xdd\x33\x42\xab\x4b\x18\xa9\xab\xcb\x67\x22\xcc\x75\xbf\x86\xcb\x24\x5a\x4a\xb3\x31\xc4\x91\xe1\xd5\xee\xeb\x69\xfa\xfb\xaa\xb4\xb0\x92\x16\xe8\xc6\x38\xa1\xd8\xa9\x97\xae\xc0\x8f\x61\x81\xcf\xac\x57\x8e\x46\x94\x54\xa4\x48\xbb\x6a\xe2\x78\xc6\x6f\x2b\x84\x6a\xb8\xe5\x0d\x5d\x33\xbf\x34\xfd\xdb\xcd\xed\x11\x8d\x27\x59\xba\x12\xe5\xb4\x00\xb6\xce\x34\x2a\xfd\x8c\x96\x9d\x35\x36\xaf\xa7\x22\x77\x83\xf5\xfe\x88\xb6\x16\x1f\xbb\x05\x96\x97\xfd\x38\x1a\x13\x5f\x2b\x2d\x2a\xd6\xa6\x55\x08\x8c\x2b\xce\xf4\xf8\xd9\x4a\xd5\x05\xab\x16\x82\x5c\x47\x93\x7b\xd0\xc4\x69\x32\xdc\xae\xe4\x7c\x61\xf3\xe1\xf1\xcf\x4c\x6b\xe4\xaf\x3e\x59\x78\x9a\xc6\x20\x11\x6e\xfd\x4a\xaf\x45\x42\xb4\x88\xc6\x36\xdf\x51\xfd\x11\xee\xe7\xb6\x56\x7c\xde\x4e\xee\x10\xf8\xb4\x3f\x98\xfa\xa9\xb8\xcb\x84\xe8\x17\xf2\x34\x9f\x55\xfc\x41\xa3\x0f\x40\x3a\xac\x85\xc9\x8b\x2c\x9d\x8c\xa2\x70\x46\x95\xdf\xcf\x29\xfa\x9d\x1b\x4a\xb0\xe2\x63\xa5\x75\x95\x8f\xec\xd3\xd5\xd7\x3b\x56\xde\x03\x0b\xae\x21\x85\x0d\x00\xbf\x8d\x7c\x15\xc6\x80\xab\xc5\x8e\x0a\xbf\x8a\x27\x9c\xc6\x74\xb5\x4c\x85\xe7\xab\x32\x60\x42\x7c\xa1\x38\x2d\xf6\x52\x3f\x0c\xa1\xc5\xbb\xe4\x9e\x79\x6e\x42\xd1\x0f\x9d\xc0\x3e\x77\xec\x4a\x95\x59\xe2\x30\x15\x51\x03\xaa\xad\x8f\xf5\xaa\x98\x83\x15\x3a\x60\x27\xe0\x5a\xae\xe1\x29\x33\x3f\x82\x42\x0b\x52\x0d\x68\x87\x67\xd8\xb9\xaf\x94\x11\x66\xa8\x8f\x8c\x0b\xdb\x98\xfa\xa4\xe5\x52\x6d\xe6\x10\x3f\x23\x6c\x53\x8e\xf2\xb3\x1c\x44\x36\x09\x6d\x3e\xeb\x47\x2a\x59\x8c\x08\x43\x1a\x3b\x7a\xb5\x26\xac\x92\xbd\xf9\x61\x1b\xe3\xda\xc8\x4c\x26\x56\x48\x8c\x24\xf7\xa9\x8d\x3e\x68\xfb\x39\x8a\x26\x4f\x91\x61\x81\xf9\x3c\x4a\x17\x0f\xaf\x80\xa9\x23\x74\x42\x37\xb5\xf4\xe2\x75\x2a\xf4\xd5\x4a\xb6\x82\x2d\x54\x39\xd2\xb7\x29\x0e\x75\xed\xfb\x03\x82\x48\xfa\x01\x1c\x8c\xa3\x26\xaa\xde\xbb\xf0\xbb\xd4\xe9\x60\x5d\xfe\xdc\xe9\x55\xef\xba\xf6\x00\x44\x0c\x49\x51\x9b\xfd\xfd\xff\x68\x56\x8d\x7b\x02\x8e\x0a\x1f\xfd\xaf\xe8\xbb\x90\x7a\x5d\x57\xe8\x81\x77\x54\xf3\xa5\x30\xe1\x72\xcc\x4c\xcd\xc2\x64\xef\x81\xbe\xff\x9b\xfe\xa1\x49\x81\x39\x79\x97\x72\x55\x9e\x54\x84\xd8\xf5\xd0\xca\x8f\xa7\x7e\x5d\x32\xcd\xa4\x6c\x97\x66\x73\x64\xc9\x2c\x5b\x4a\x68\x70\xcf\xdf\xd6\x08\x6a\x86\x77\xc1\xba\xfc\x44\x0d\x10\x22\x51\xc0\xb6\xb9\xe1\x30\x26\xe1\x28\x8b\xf2\x22\x32\x09\xc9\x87\x39\x2c\x18\x83\x09\x04\x21\xe1\xc5\x5f\x06\x99\xcd\x73\x55\xfc\x3e\xa3\x8a\xdf\x67\xa6\x9e\xc7\xc8\x14\x45\x66\x42\xa7\x3c\x80\x64\xeb\xa8\x92\x67\x3d\xda\x42\x83\xd3\xcd\x88\xfd\x48\x7a\x99\x42\x6a\xd9\x71\xa2\xa3\xa7\x5d\x26\x56\x8e\xfb\x99\x8d\x63\xc3\x15\x25\x29\x7b\xa8\x28\x6c\xea\xbb\x95\x27\x6b\x33\xd5\x36\x49\xb0\xe2\xdd\xc6\xab\xbe\x41\x36\x9e\xc7\x83\x85\x69\x5c\x8e\xfb\x91\xd9\xee\xeb\xd3\xcc\x91\x2d\x05\x52\x3d\x27\xb6\xab\xa7\xf0\x53\x67\xd4\x34\xca\x63\xeb\x12\x80\xc6\xd6\x64\x09\x8c\x3f\xbc\xdf\x35\x6a\x6a\xa2\xb3\x4f\xfa\xc0\x52\xa0\xe3\xc8\xd4\xd9\x69\xc5\xb4\xdb\x32\xb2\xb2\x64\x92\x70\x8d\xea\x7e\x08\xef\xaf\xd7\x44\x4c\x95\x84\xe5\x0f\x54\x39\xbc\x5f\xae\x59\xd0\xad\x21\x1e\x38\xab\xc9\x7d\x79\x8e\x4f\x3a\x25\xd5\x57\xa3\xa1\x87\xe0\x51\x6a\x31\xd5\xde\xc6\xc4\x08\x17\x63\x65\x2d\x6b\xb3\x61\xc7\xf9\x93\x74\xcf\xd8\x94\xff\x27\x05\x2a\xa8\x8d\x3f\x22\xe7\xa7\xf1\x30\xb0\x69\x0f\x14\xe0\x8b\x79\xb0\x61\x42\x4e\xc2\x48\x62\xdb\xde\x0c\x54\xff\x4e\xd3\xb7\x5d\xc2\x7e\xe0\xea\x43\xa0\xf4\x51\xee\x07\x1e\x66\x7b\x1b\x4b\x5c\x24\xf2\x5a\x94\x21\x09\x3f\xd7\xf1\x82\x99\x9f\xaa\x94\xe7\xd3\x46\x60\x77\xe4\xa5\x6e\x98\x26\xf9\x24\x02\x82\xdf\xd5\xc7\x21\x43\xc2\xc7\xaa\x1f\x19\x0d\x93\x34\xe3\x1e\xa7\x03\x63\x2e\x0a\xdf\xcd\xb9\x06\x16\x66\xfe\x48\xb7\x9c\x0c\x9c\x76\x35\x8c\x6d\x67\x5d\x71\xc0\x75\x7a\x12\x99\x4c\xcc\x5a\x96\xc6\x92\x14\xb5\xb5\xec\xf7\xb8\x35\xb9\x02\xd8\x29\x52\x5c\xb0\x57\x08\x45\x99\xaa\xd5\x9c\xa7\xa5\x2a\xc4\x09\xb2\xa2\x07\x59\x14\x43\x3b\x13\x8d\xbe\x5d\x58\xc4\x82\x38\xef\x38\x9d\xbf\x99\xf5\xad\x05\xee\x83\x07\xbb\x83\x28\xb3\x55\xce\x2a\x04\xa3\xae\x7f\xb3\xe0\x07\xdc\x95\x2e\x58\x5c\x46\x03\xd6\x41\x13\xf0\x58\xf5\x29\xd7\xd3\x72\xf8\xf4\x53\x6a\x13\x2f\x59\x93\xe5\xe9\x98\x9f\xb3\x0b\xad\x54\xe0\x58\x1b\x00\xce\xf2\x27\xfc\xfb\x7e\x1f\xab\x0d\xbb\x90\xc1\x60\x82\x8f\xac\xbe\x41\xe4\x19\xfc\xb0\x04\x47\x14\x35\xc9\x4b\xa1\xfb\xec\x7c\x43\x58\xb9\x3e\x0c\x3c\x80\x99\x65\xc1\x1d\x6b\x95\x47\x3e\x6f\x5b\xef\xb8\x22\x60\xa7\xb7\x35\x94\xfc\xb5\x6e\x6c\xfa\x69\x46\xc6\x95\x95\xd7\x34\x1c\xe8\x8c\xae\xf0\xdb\x41\x19\xb2\x51\x7d\x95\xbd\x04\x8f\xa7\xf3\x89\x9f\x64\x0f\xb3\x68\x3c\x91\x7e\x9a\x68\x6f\xd3\x15\x8a\x2a\xb7\xff\xde\xd5\x28\x49\x6c\xb1\x4c\xf4\x6e\x9b\x84\xf7\x3e\xb4\x79\xd5\xf5\x49\x46\x65\xbe\x8c\x8e\xc7\xa1\xd6\x61\x7f\xef\x24\xa3\x14\x2b\xda\x49\xb8\x3b\xf6\xca\xb6\x52\xc2\x61\xde\x96\x4a\x74\x05\x4c\x8f\x7c\xec\x09\x8a\xab\xcb\x33\x93\x34\x8e\x72\x05\x56\xe2\x46\xa8\xf4\x28\x5b\xba\xef\xc4\xcb\x0c\xb8\x8b\x83\x7d\x81\x4c\x42\xe8\xe3\xb7\x2e\xe5\x97\xf7\xbf\x28\x3d\x7b\x97\x63\xb4\x4d\x7b\x3d\xeb\x71\x38\xa3\x28\x8e\x26\x93\x28\xb1\xa4\xf4\x28\xdd\x8b\x9f\x07\x42\x46\xa9\x11\xee\xf4\xf8\x85\xf5\x93\x5e\x8c\x44\xac\x1a\xfb\x4e\xbf\x8a\x22\xe8\x1f\x37\x62\xbd\x83\x07\xbb\x49\x99\xe5\xe2\x8d\x51\x11\x62\xfc\x18\x9f\xb4\x50\x3c\xcc\x77\xa3\xcc\xf0\xfd\x88\xac\x7b\x4d\xd9\x60\xeb\xd3\x9b\x3f\xd2\xcd\xd3\x15\x9b\x59\xa2\xb5\x38\x78\x90\x13\xdb\xdb\xaa\x68\x7e\xbb\x75\x86\x89\xe0\xea\x8b\x87\xfc\x10\x7a\x43\x6a\x0b\x69\x4a\xa7\xa6\xa8\xe5\x97\xd0\xaf\xfe\xea\x3f\x54\x25\xd1\xb3\x04\xab\xe3\xe3\xc6\x2b\xa6\x86\xc1\x20\x8b\xdc\x24\x81\xc4\x0b\x6a\x20\xee\x4a\xa0\xa8\x0a\xc6\x51\xb1\xb6\x12\xc5\xb1\x9b\x11\x73\xb8\xe6\xea\x59\x88\x3e\x51\x0b\x79\xa5\x35\x59\xbc\x36\xe3\xa5\x83\xb8\x40\xe3\x84\x46\x54\xfd\xab\x65\x36\x27\x2e\x89\x55\xd3\x4b\x93\x1c\x0b\x7c\xf5\xed\x98\x9a\x49\x4b\x27\x93\x34\xb1\x49\xc1\x8a\x20\x78\x9f\x9f\xa2\xca\xc2\x27\x9a\x05\x36\x5a\x89\xe2\x88\x0a\xfa\xaf\x38\x40\xeb\x8d\xa9\x07\xb7\xde\x50\xec\xa1\x61\x3a\x1e\x9b\x64\xe0\xd0\xca\x68\x82\xcc\x50\xd2\xce\xc7\xeb\x1e\x2d\x49\xfd\x20\xe6\x33\xe7\x60\x14\xcf\x48\x22\x53\x05\x44\xb3\x26\x0b\x2d\x08\xae\x10\x3c\xde\x51\xda\x8d\x27\x6b\x6b\x5e\x99\xb2\x55\x6b\x97\x6d\x32\xc8\x3b\x1e\x9d\xfd\x89\xee\x32\x7f\xd2\x58\x5d\x47\x5e\xea\xae\x8e\x4c\x41\xfe\x18\x45\xcc\x4d\x2a\x6d\xf3\xb1\x8a\xd5\xd3\xb4\xd8\xe5\xa7\x1c\x1e\x87\x5d\x46\x32\x79\x81\x16\x14\x3c\xd9\x43\xf8\x01\x37\x10\xb7\xb8\x9f\xc3\xc1\xa3\x30\xa9\x62\x24\xaa\x1f\x84\xb3\x05\x8b\x07\xbe\xe9\x7e\xb0\xc7\x3b\xb4\x17\x60\x1d\x25\x7f\x54\x66\xf6\x93\xc6\xd6\xfa\xb5\xee\xc4\x66\xa1\x4d\x0a\x33\x04\xa2\x45\xa4\x40\x55\x99\xe8\x62\x0b\xf8\xe4\x70\x37\x4c\xcb\x24\x8c\x62\x7e\x2f\x4c\x94\x3b\x55\x44\x46\xb7\x15\xd7\xb1\x59\x49\xa3\xc1\x2e\xda\x09\xb0\x5a\x67\x15\x05\xc3\x69\x58\x1f\x49\x88\x28\x1d\x43\xde\x89\x1e\x08\xd7\xbc\x51\x39\x02\x54\xeb\x9d\xa9\x62\xe4\xbd\xae\x30\x7c\x1f\x37\x4c\xfb\xf3\xdd\xa5\x32\x2b\x46\x3c\xee\xed\xaa\xcf\xd5\x8f\x30\x8f\x13\x85\x47\xd2\x30\xd7\x24\x97\x5f\x84\xa2\xe0\xd1\x9e\x19\x45\xc5\xf2\xbe\xd2\x3e\xbd\x16\xa8\x29\x9f\xcf\xd5\x1c\x64\x66\x89\x4e\xcc\x0e\x14\x9b\xde\x79\x35\x3a\x71\xbe\x0d\x1a\xdb\x2f\xa3\x78\x10\xb9\x3d\xcb\xec\xda\xf8\x09\xa1\xda\xde\xab\x80\xaa\x45\x54\xc4\x78\x95\xb8\x8b\x0b\x28\x7f\xf2\x89\x5a\xf4\x51\x0e\x69\x64\x0a\xd3\x44\xc8\xbc\xe3\xc8\x00\x39\x4c\x93\x7f\x50\xe9\xfb\xe7\x8a\x70\x85\x08\xa9\x6d\x12\xba\x1e\x3c\xde\x22\x5a\x5e\x28\xa3\x62\x07\x0a\xab\xb2\x6f\x13\x9b\x7e\x3f\xb2\xb3\xbe\x84\xf2\x10\xcb\x80\xc9\x85\xd4\x9c\xd2\x43\x55\x5e\xbc\xdb\x48\xef\x0e\xbd\x74\xb8\x5b\xa4\x65\x95\x6e\x76\x7c\xbe\x7d\x54\x0d\xc1\x1d\x55\xaf\x60\x10\xe5\x93\xd8\xac\xd9\xc1\x8c\x26\xac\xbf\xa3\x10\xc3\x27\xe1\xc9\xa5\x5c\xe8\x5b\x2b\x61\x99\x15\x26\x72\x22\x06\x32\x60\x47\xdb\x8b\x4f\x14\x6c\x22\x33\x71\x1c\xd9\x9c\xe0\xc2\x68\x88\x5c\x83\x45\xe1\x13\x9d\x16\x71\x03\x48\xd0\x0d\xcf\x6e\xe5\xaf\x38\xdc\x3d\x78\xf0\xaf\xfb\xfd\x72\x2e\xa0\x01\x50\xb4\xbd\x3f\xa4\x00\x90\xb9\x34\xf0\xaa\xe1\xf4\xff\xe7\x40\x39\xd8\xf7\x02\x8f\xf4\xf8\x80\x28\xbd\xfc\x2c\xe9\xfc\x11\x99\x8d\xa4\xc6\x33\x12\xd6\xef\xa0\x34\x06\x3f\x72\x4a\x8b\x7a\xde\x00\xca\x86\xeb\xf1\xf4\x9a\x00\x72\xf8\x23\x58\x30\xb4\x5d\xff\xa9\x9e\x86\xba\x40\xa6\xd1\xed\x30\xc5\x24\xdc\x99\x9b\xe3\x22\xdd\x3a\xb6\x37\x12\xca\xfb\x34\xfc\x89\x4a\x20\xc2\x11\x35\x7a\xfd\x2a\x87\xe3\xef\x70\x91\x4f\xba\xc1\xaa\xf0\xb3\xa9\x66\x32\x98\x5a\x03\x5f\xfc\x88\x82\x6a\xa1\x71\x97\x90\x8e\x54\xc3\x22\x08\x59\x76\x1c\x5b\xc1\x67\xb4\x28\xf8\x58\x2d\xf9\x95\x6a\x8f\xc5\xe0\x1f\x9f\xf1\xca\x71\xe0\x27\x10\x41\x5f\xd5\xf4\x49\x4b\x50\x7b\xd6\x48\xf5\x6b\xdc\xfb\x7e\xfa\x62\x10\x71\x1a\x86\x4a\xe0\x63\xeb\x8a\xfc\xe2\xb1\x9e\xee\x58\xdb\xa5\xa5\x28\x8c\xac\xf0\x53\xe1\x4f\xce\xe2\xad\xf1\x49\x5b\x4e\x4f\xb1\x03\x81\x55\x51\xfd\xba\xa9\x24\x5f\x6f\xb6\xc4\x50\xaf\x76\x07\x25\xa8\x43\xf1\xd0\xae\x2b\xee\xee\x1f\xe0\x91\x4b\x70\xf5\xb4\x2f\xe6\xd8\x2c\x0f\x53\x87\x7b\xc2\xcb\x3e\x45\xef\x84\x8f\x55\xd5\x2b\x2b\x93\x74\x69\x49\x31\xac\x71\x99\x8a\x4f\x1a\x38\x8b\x43\x8b\x87\xba\x6b\x36\x8e\x85\xf4\xd3\xe1\x8b\xfd\x16\xfa\x71\xf0\xb8\x7b\xa2\xff\x25\xd5\x34\xb1\x3f\x81\x99\x40\x92\xf7\xbd\xe6\x00\x1c\xdc\xd6\x46\x0b\xdd\xd3\x7c\xd7\x24\xc5\x28\x33\x6f\x2a\xaa\x97\xf3\x8a\xea\xe5\x7c\x75\xf3\x7a\xcf\x2e\xee\xef\x3e\xff\x15\x8f\xf2\xfc\xef\x40\xe7\x24\xef\xa5\x5a\x83\x70\xad\xc7\xb0\xf3\x05\x50\x56\xdd\xd0\xe6\x0e\x4a\xd0\x70\x95\x0f\xd1\xb0\xe6\x8c\x90\x17\xbc\x00\xf8\x15\xcf\x45\xa1\xea\xa1\xe0\x2d\x40\x6f\xef\x1a\x1c\x1d\xac\xdc\x29\xac\x0e\xe1\xdd\x51\xe3\xe0\x67\x15\x43\x29\xd3\xee\xc0\x8e\x7f\x14\x78\x40\x1f\x93\x19\x69\x36\x68\xa1\x8d\x25\xb3\x03\x7b\x04\xaa\x6a\xe0\x82\x59\x6d\x4a\x66\x63\x7d\x88\x52\xbd\x3b\x2d\x41\x57\x7d\x97\xe4\xd0\x3e\x68\x98\x90\x1c\x5d\xf5\x30\x18\x3f\x49\xc6\x46\xb0\x94\x5f\x24\x7c\x92\x56\xbe\x5e\x3a\x60\x0e\xa4\xef\xb3\xd2\x6b\xba\xbb\xf8\x41\x0b\xfc\xf3\x50\x77\x92\x55\x5b\x9c\xa5\x81\x50\x61\xe1\x01\x43\x3e\x51\xed\xf1\x22\x8b\x26\xb1\x1d\xcc\xd2\xd3\xc4\xb5\xdd\xd1\xb3\x43\xdf\x56\x2e\xf5\xdb\x30\x8a\xfc\x57\xae\xda\x31\x89\x85\xea\x13\xe6\xf2\x46\xe0\xbb\x5d\x37\x5a\x53\x55\xd3\x4f\x4b\x64\x36\x78\x67\xb7\x95\x90\xe8\x06\x2d\x2f\xd8\xa1\x2f\xa1\x6e\x22\x14\x0e\x6d\xa9\x58\x5e\x30\x1f\x32\x8a\x2b\xd7\x95\x52\xd0\x03\x25\xc2\x7c\xb2\x85\x54\xfd\x50\x77\x64\x69\xaf\x57\x86\xd0\x4f\x90\x5e\xaa\xb1\x37\x3a\x4c\xfd\xc0\x16\x60\x2d\xa6\x87\xc3\x6c\x8c\x35\x95\xf9\xbd\x9a\x41\x70\xc5\x66\xcc\xc6\x81\x6d\xc9\x61\x0c\x96\x25\x36\x32\x1f\xeb\x98\xf3\x82\x6f\xb8\xd9\x89\xc9\x48\xef\x75\x07\x96\x82\xd3\x80\x5c\xdc\xef\xe1\x15\x9e\xb0\x4d\x4f\x6c\x5e\x56\xdd\xac\xf3\x78\xf1\x40\x96\xec\xee\x3d\xa5\xc4\x6a\xcb\x7e\x01\x0d\x24\x99\xd1\xed\x38\xce\xa5\x2a\x89\xf4\xea\x51\xbc\xda\x65\x14\xb0\xfa\x55\x3e\x6e\xd8\x9a\xd7\x5e\xeb\x66\x76\x6c\xc7\xfd\x2a\x5e\x75\xec\xe9\xb3\xaa\xd9\x7a\x5e\x21\xe8\x59\xd7\x4b\x92\x2d\xa7\xac\x45\xea\xa0\x1c\x30\xc2\x56\x9f\x56\xb5\xa1\xd3\x2a\x1e\xc2\xf4\x42\x54\xac\xed\xf0\xc8\xe9\x6d\xaa\xdb\x8a\x38\x1d\x29\x73\x07\xbd\x33\xb8\xe2\x4d\x7a\x90\x78\x5e\xd7\x69\xc9\xf1\x87\xeb\x34\xfd\x2b\x36\xee\x68\xba\x22\xfa\x3a\x41\xef\x3f\xdd\x94\x93\x78\x92\x82\x0b\xc6\x4a\xd1\x7e\x17\x7d\x3a\xa5\xaf\x74\x9d\x2b\xe4\x48\xa9\xde\x51\xe0\xca\xef\x4d\xfd\x3b\x60\xee\x1f\x05\xa4\x93\xbf\x3a\x89\x84\x59\x84\x2b\xab\x8b\xc7\x16\xf9\xc3\xa9\x02\xea\xa2\xfc\x23\x8c\xd9\x8a\xe7\xf7\x76\x03\x55\x2b\xb6\x67\x50\xa5\xcb\x25\x6d\x65\x67\x0a\xbc\x56\xe1\x1d\xdd\xc1\xf9\xf5\xdf\x84\x73\x74\x00\x67\x3d\xcc\xb6\xd5\xe7\xbd\x32\x7f\xa4\xbb\x6a\xa3\xe1\x88\xea\x94\xf3\xdc\x9f\x61\x3c\x81\xa4\x34\x5a\x14\xd8\x6f\xa5\x61\x56\xc5\x1f\xf9\x8c\xcf\xf1\xd1\x0e\x45\xb7\x84\xa7\x5a\x00\xa2\xba\x18\x28\x7e\xf7\x49\x34\x80\x32\x9b\xf0\xdc\xa8\x16\xf7\x15\xd5\x96\xda\xa1\x54\x1e\x2f\xbb\x18\xc0\x64\xc3\x14\xba\x5a\x0c\x69\x96\xd1\x29\x2d\x8a\xce\x44\xb9\xb8\x92\x9f\x2a\x60\xab\x1d\x94\x21\xeb\xbb\xcc\xcd\xb9\xd6\x69\xb5\x40\x05\xed\xb7\x57\x85\x57\xab\x71\x94\x0c\x49\x77\x52\x2b\xa7\xa2\x99\xc8\x58\x2e\x64\xf1\x40\xf0\x73\x54\x18\xf8\x54\xff\xc2\x54\x8d\x48\xfe\x09\x9e\x08\x1a\x09\x77\xd5\x45\x2d\xdb\xb5\xc4\xe6\x91\x49\x66\xd4\x3c\x1e\xd7\x3b\x61\x4f\xee\xd3\x83\x15\xf7\xea\x5d\x44\xdf\x16\xab\xd6\x26\x7b\x15\x89\xf4\xed\xa9\x82\xfa\x06\xbe\x9e\x7d\x1b\x61\x0c\x23\x5a\x11\x12\x73\xe8\x8b\xec\x01\x3b\xf8\x2e\x47\x02\xd8\x7e\x67\x60\x1a\xb1\x1b\x9e\xe8\x79\x4e\xe5\x3b\x0a\x1c\xcf\x6f\x1a\x91\xc6\x13\x28\xef\x8b\xb6\x74\xc7\x69\x9a\xde\x9a\xfa\xd8\xe3\x76\xe0\xd1\x01\x77\xb4\xd4\xc1\x9d\xb6\x71\xc1\xd0\x66\x76\x9c\x26\x68\xf6\xc1\x6a\xdd\x0d\xfc\x58\xc2\xdd\x36\xee\x2d\x53\x14\x42\x9f\x87\x42\x35\xd2\x09\x3e\xd6\xa9\x2a\xf4\x30\xcb\x8e\xea\x06\x9d\x57\x48\xe7\xf3\x6d\xf5\x99\x7c\x92\xa2\x3e\x23\xba\x69\x7e\x78\xe2\x74\xdb\xe0\xc9\xc0\x86\x71\x94\x60\x24\x06\xee\x13\xd5\x16\xac\xcf\x59\x18\x3f\xa1\x1b\xd8\xa7\x80\x2b\x55\x2e\x10\xeb\xea\xc9\x31\xd5\xed\x38\xe6\x27\x8f\x26\x51\x15\xe9\x52\xba\x0d\x20\xdd\xce\x9e\x2f\x2e\x5e\x51\xf6\x94\x75\xc5\xe5\xc4\x0f\x14\x69\x91\xbb\x9d\x8a\xb6\x96\x67\xbf\xf8\x64\xea\x75\xf9\xfe\xb5\x52\x5b\x02\xa4\x9c\xf9\x16\x68\x37\xf1\xdf\xe8\x7e\xc2\x79\xd7\x09\xed\x97\x79\x1e\xd9\x4c\xd0\x75\xac\x17\x89\x55\x24\xe2\x91\x4f\x2a\x72\xf9\x84\x85\xe3\x44\x9e\x54\x4d\x39\xdc\x53\x1a\x68\x67\x1b\x8f\xfe\x79\xd2\x7e\xce\xd2\x81\x9d\x51\xc4\x9e\x67\xb1\x13\xd0\xa7\x40\x4b\x0e\x3e\xf3\xb8\x2a\xf7\xd9\xbc\x30\x85\xdd\xe3\xc5\xf1\x8e\x93\x27\x42\xc1\xe8\x27\xb5\x42\x2a\x99\x47\x24\x81\x1b\x53\xc5\x46\x7f\x41\x31\x2a\xee\x24\xda\x6f\x26\x4c\x57\xba\x08\xc7\x34\x0e\x71\x16\x7b\x47\x50\xb2\x0a\x45\xfd\xb1\x1a\x83\xb3\xc9\x30\x4a\xaa\xf4\xdf\x75\xb1\xff\x31\x5e\xaa\x83\x64\xba\x56\xf7\x3f\x46\x8c\x2e\xe4\xa6\x5b\x57\xf2\xa1\x97\x0e\x77\xe3\x74\x75\xc6\xd7\x46\xaf\xe2\x9b\xa4\xfc\x5f\x7d\x93\x20\x3a\x74\xd3\x29\x2f\x93\x9d\x30\x13\xa8\xbd\xec\x00\xc3\x39\x7c\xeb\x9f\x05\x7e\x3e\x8b\xe9\xb6\x5d\x7a\xef\xf1\x49\x37\xb0\xed\x15\x75\xb6\xc8\x63\xed\x58\xf7\x49\x6b\x6c\x0d\x48\x55\xd0\xcb\x3d\x8f\xc5\xc8\x27\x6a\xa7\x14\x59\x19\x2e\x3b\xf6\x65\x04\xe0\xdf\x51\x63\xc8\xdf\xa9\x51\xa9\x26\x51\x3e\x4b\x0f\xc6\x95\x65\x3c\x5f\xf9\x49\x85\xb1\xfa\x61\xa0\x14\xe4\x9a\x70\x94\x85\x85\xee\x38\x8a\xad\x94\x37\x45\x15\x42\xcd\xf8\x10\xb5\xa8\xa0\x2e\xd3\x32\x0b\x01\x33\x9f\xf7\xfa\x3f\x5e\x23\x99\x5b\xc0\x5a\xec\x0a\xff\xb0\xa1\xab\x2d\xe0\xcd\xe2\x07\xdd\x08\xf1\xa8\x43\x69\xe2\xd4\xc9\xc8\x3b\x89\x25\x47\xe1\x74\x45\xb1\x74\x56\xb6\x2f\xc9\xa3\xa5\x35\x91\x07\x71\x5a\x7b\xae\x92\x31\xb3\xee\xab\x6a\x61\x66\x0d\x54\x68\xa5\xe5\xef\x31\xef\x67\xd5\x9d\xbe\x6e\x42\x9a\x00\xd2\x58\x03\x2e\x7d\xf1\x49\x1b\x7f\x4e\x98\x96\x13\xa4\xdd\x4e\x1e\x4c\x29\x14\x6c\xcd\x2f\x9e\x27\xee\x1b\x28\x4a\x4a\xf1\xea\xb1\x9e\x5f\xaf\x67\xb5\x52\xc7\x86\x1a\x6f\x8d\xd3\x64\x58\x44\x63\xd8\x62\xd7\x8c\xf3\x02\xfa\xb8\x4e\xec\x86\x5b\x6d\xf4\x42\xab\x36\x5e\x32\x2c\xe3\xc4\x08\x2b\x62\x14\x11\xb4\xd5\x3e\x57\xab\x98\x64\x55\xa2\xc0\x69\x49\x95\x7b\x1f\x3c\xb8\xb9\xa3\xd7\xc0\x0d\xbf\x74\xb8\xbb\x12\x0d\x53\x1e\xb5\xc2\x2f\xe3\xe6\xf9\x58\x91\x44\x99\x95\x48\x55\x87\x24\xfb\x55\x44\x94\x17\x1b\x0e\xf4\xd7\xba\x99\x2d\x4c\xe4\xe7\xed\x85\x3f\xa3\xe3\x08\x37\x6b\x82\x67\x69\x56\xa4\xc2\xd9\x8a\xb4\x96\xb9\xb0\xf8\xc4\xe5\x96\x7d\x93\x4b\x19\x46\xd4\x8f\xe8\x0e\x44\x27\xad\x99\xfe\xce\x33\xbb\x1e\xb3\x1e\x61\x1b\xb3\x47\xc2\x3e\xdd\x4e\x21\x86\xfb\x07\xcf\x03\x71\x4e\xbd\xc2\x25\x9b\x0d\x4b\xca\x0c\x0f\x1e\x3c\xec\x8c\x81\xb6\x12\xcd\x76\x27\xfc\xfc\x24\xdb\xca\xe6\xf1\xb1\x2a\x3a\x7d\xac\x07\x8d\xd2\x64\x60\x80\xb8\x72\x1d\xbe\xea\xe1\x09\x0b\x42\x75\x99\x62\x56\x7d\x71\xee\x8c\x6a\xf0\xf5\xa3\xc1\x9e\x8e\xd3\x7a\x3b\xa7\x7b\x82\x18\xf2\x92\xac\x91\x9e\x20\xc2\xff\x73\x9a\x6b\xe8\x3e\x6d\x75\x0e\x9e\x02\x5f\xf4\x66\x5a\x46\x18\x8a\xc7\x7b\x0a\x38\x72\x5b\x69\x67\x31\x9b\x19\xfc\xf6\x4e\x25\x92\xb9\xf0\xe2\x61\x26\x0e\x43\x30\xb4\xa1\xc1\x44\xe0\x21\x14\xd2\x70\xba\x18\xfe\xab\x26\xde\xfd\xa5\xc3\xdd\xd0\x44\x19\xb4\x9a\x50\x42\xdf\x08\xd4\xdc\xd6\x86\x7a\x9c\xaf\x9b\x89\x49\x9e\xa5\xf7\xc5\x03\xfc\xe4\x76\x29\x81\xb2\x7b\xd7\xfd\xe3\x38\x1b\x68\xb6\xe0\x93\xf4\x56\xb1\x33\x67\xa1\x43\x85\x65\xfe\xaf\xf5\x58\xc4\xcf\x11\x89\x03\xef\x34\x43\xb4\xe7\xc8\x02\xfe\x0c\xf5\x26\xa9\x51\x50\x35\x53\xc0\x33\x74\xa1\x4c\xb6\x44\x6f\x13\xc1\xc5\x7d\x78\x18\x54\xd2\x1f\x62\x69\x22\x45\xbd\xa1\x05\x83\xee\x05\x1e\x5b\xf2\x29\x55\x1f\x51\x31\xf8\xb7\xb4\x18\x60\xb7\xff\x7c\xaa\x38\xc7\x7f\xa8\x32\xd2\x32\x21\x38\xb5\x60\x92\x25\x26\xf5\x33\x35\x5f\x26\x43\x86\xfb\x61\x30\x37\x2c\xfe\x8e\xf5\xad\x9b\x6a\x6e\xae\x3b\xb0\x4b\xd6\xcb\xc0\x0b\x4f\xb0\x12\x68\xb9\xac\x48\xa7\xe2\x74\x62\xdf\xea\x50\xe5\x4f\x06\x24\xd4\xf7\x5f\x6c\x91\x5f\xef\xae\x66\x66\xe2\x00\x16\x58\xcd\x3c\xe0\xc6\x27\xca\xf4\x4f\x4c\xb5\xcf\x06\x84\x9d\x47\x24\xc7\xea\x47\xe8\xea\x5e\x44\xcd\x51\x57\xb5\xdd\x44\xef\xdc\xbc\xab\x70\xfb\xc5\x9a\x58\x83\x4a\x8d\xf3\x7e\x6e\x58\x09\x64\x86\x5c\x97\x5c\x57\x56\xfb\x67\x2d\xde\xe5\x50\x77\x60\xd6\x6a\xb3\xec\x60\x29\x43\xa0\xc3\xce\x09\x38\x94\x9b\x2e\x4c\x9d\xd8\x6c\x62\x8b\xd2\x00\x2e\x24\x7d\xb4\x8e\x63\xdb\x7f\xa0\xf8\x2b\xae\xb8\xc1\x51\xfb\x26\x39\xd5\x15\x78\x08\x44\x7f\xb7\xa6\x1e\xa2\x79\x4b\x01\xaa\xfa\x65\x36\xb4\x19\x64\xb8\xf1\xaf\x77\x74\xb1\x08\xe5\x56\x51\xd6\x69\xc2\x91\x16\x5d\x7b\x41\x5e\x0f\x3f\x66\xdd\x49\x6f\x6b\xb1\x1e\xea\x16\x36\xb6\x55\xb4\x3f\xa3\xf4\x5d\x2e\x2b\x6e\xa4\xdb\xd8\x20\xd8\x07\xc7\x1d\xf6\x12\x52\x87\x36\xcb\x47\xd1\x04\xd8\x7b\x04\xc7\xa0\x7c\xe1\xe3\xc0\x47\xd1\x45\x99\x0d\x23\xb4\x1d\x44\x16\x52\x71\x16\x5f\x68\xb8\xf5\xb9\xb9\x6e\x5c\x26\xe1\x88\x9e\x5d\x1b\x09\xa2\x8e\x42\x4d\x54\x50\x10\xcc\x5b\x9a\xe2\x73\x27\x84\xf4\x8a\x6b\x05\x5d\x0c\x54\x7d\x46\x63\x6a\xc7\x51\xb2\x5d\x95\x09\xee\x05\x9a\x0d\x92\x59\x3a\xe1\x7d\x80\x41\x17\xa6\x69\x5f\x64\xfb\x83\xda\x54\x4d\xff\x75\x1b\x16\x2a\x2e\xd8\x0c\x7c\x2d\x63\xb3\xd9\x5c\x5c\x3c\xd4\x5d\x8e\x92\xa5\x34\x5e\xee\x28\xc0\x23\x67\x37\xa2\x61\xe9\xd3\xa0\xa1\x35\xd9\x0e\xba\x5c\xb7\x80\x9d\x86\x30\x26\xa5\x50\xa3\xb8\x1d\xa8\x6c\xf2\xed\x1a\xca\x97\xbe\x59\x06\x7f\x95\x8e\x6d\x91\x66\x36\xff\x92\x47\xb2\x3f\xc4\xfa\xc1\xfd\x6e\x5b\x57\x0c\xe2\xa8\xdf\xa1\x7b\xb6\x9b\xcc\x36\xea\x3b\x3c\x0b\x2f\x1d\xfe\xea\x4d\xa0\xc8\x77\x12\x26\xd8\x35\xeb\x1c\x66\x83\xa1\xd5\x58\xf5\xbb\xf5\xbc\xef\x59\xb2\xad\xf0\x68\x0f\xa9\x68\x20\x12\xd1\x95\x99\xc6\xdf\x9c\x54\x8c\x57\x28\x43\xed\xa2\x37\xee\x94\xa5\x0e\x38\x95\x29\x5c\x00\x6c\xc6\x8f\x02\x45\x50\xcd\x53\xd8\x8c\xfa\xe6\xf2\x91\xc3\x80\xbb\xe9\xc3\x07\x8a\xf1\xea\x82\x5a\x3d\xff\x20\x2f\x66\x14\xdf\xdc\x15\xc5\x4e\x03\xff\x8e\xd8\xf3\xfe\x54\xa3\x4d\xd2\x72\x38\x7a\x9c\xf6\x8d\x88\xec\xa8\xa9\x25\x30\x65\xc1\xe1\x1f\x45\x58\x20\x4c\x3e\xe4\x87\xf0\x1a\xef\xa8\x12\xfe\x97\xc8\x40\xe0\x13\x0f\xc8\xf9\xe3\xa6\xb7\x21\x1f\x73\xb3\xda\x8e\x0e\xfe\xb1\xf5\xad\xb5\xf6\xc5\xfd\xdd\xbc\x14\xb1\x6f\x04\x88\xb8\xa1\x6f\x05\x1e\x0e\xf5\xad\x1a\x1a\x39\x36\xfd\x4e\x43\xd6\x40\x28\xcc\x5a\x06\x59\x96\xa2\x6c\x5c\x59\xb9\xea\x1e\x90\xe2\xdd\x51\xe5\xf1\xe3\x0a\xab\xdb\x14\x3d\xae\x82\xc6\xd7\xd3\x88\xd5\x70\xa5\x5e\xe5\x2b\xbd\x27\xa6\x7b\x7c\xe1\x33\xdf\x59\xad\xaf\x1a\x6d\x3e\x16\xdb\x0e\x1a\xad\x70\xb4\xfd\x8e\x95\xe6\x0a\x75\x89\x11\x05\x80\x87\xdb\x51\xf9\xc9\x4c\xcc\xea\x5f\x53\x85\xf9\xcc\x16\x65\x96\x3c\x3e\xe3\x15\xad\x20\x56\xa5\x69\xc5\x9d\xbe\xac\x9f\x64\x78\x6f\xea\xe5\x14\xef\xa8\x61\x2f\xf0\xb1\x33\x51\xcf\x54\x09\xc7\xf3\x28\x93\x40\xfe\xe8\x61\x63\x6b\x5e\x6b\x08\x84\x2f\x2c\x74\x87\x29\x9c\xa4\x00\xbb\xaa\x5f\xc3\x8b\xfb\x1f\x10\x07\x60\xc3\xf2\xb6\x16\x7d\x41\xdf\x0d\xcb\x8b\xb5\xd8\x6e\x57\xa3\x28\xd0\xe4\x75\x31\xd8\x01\x81\x9f\x9c\xd4\x09\xeb\x6d\x3d\xe5\xfe\xf3\x36\xb9\xc2\x28\x09\xeb\x9a\x45\x9b\x5a\x4f\xaf\x69\x12\xe7\x8f\x74\x07\x51\xb2\x1c\x09\x27\x88\xc3\x46\x57\x3e\x4a\x86\xc6\x9e\xf1\x63\x4f\x69\x36\x88\x12\x53\x30\xe1\x31\xc2\xbc\x9f\xe2\x39\x62\x1f\xc0\xef\xca\x54\x3b\x5d\x3b\xd3\xd0\x36\xb2\x93\xc5\xfd\xc2\xad\x2e\xbe\x54\x24\x1b\x3a\x4a\x40\x72\x9f\x9b\x41\x30\x49\x68\xe3\x38\xcd\x66\x14\x49\xd7\x45\xd8\x34\x67\xec\x16\x16\x36\x1f\xb8\xc2\xf7\xaa\x89\x9d\x9a\x24\x0c\xd0\x03\x5c\x2a\x9f\xa8\x1c\xac\x9f\xe6\x45\x9a\x00\xd3\xe4\x2c\x9a\x43\x64\x7f\x1e\x28\xde\xb9\x07\x53\xc5\x4e\xf7\x40\x29\xde\xb0\xd8\x8b\x78\x76\x3d\x3b\x12\x28\x3e\xb7\x66\x66\x3d\x7f\xa4\x72\x08\xe1\x72\xc7\xbb\xbc\xbf\x98\xaa\xd7\xf6\x17\x8d\x2d\xfe\xf2\xfe\x57\x41\xdf\xa3\xe7\x4b\x6e\x2a\xe7\x77\xb3\xf1\xa6\x8f\xbc\xc4\x93\x71\x2c\x9b\x88\x97\x7b\x17\x37\x03\x2f\x02\xe1\x15\x69\x2b\x79\x3f\x6b\x06\x2b\x51\xce\x2c\x4b\xce\x9a\xb8\x7a\xda\xa9\xa9\xea\xe5\x5d\x54\x35\xf6\x30\x4d\x96\xb2\x34\x29\xf2\x0e\x86\xc6\x79\xbe\x99\x78\x3a\xdd\xb0\x73\x2b\xf0\xb2\x6f\xe2\x38\x45\x1f\x52\x31\x88\x2f\x2c\x28\x86\x42\xfc\x75\x5a\x16\x49\x39\xee\xdb\x0c\x65\x89\x79\xbe\x3c\x96\xd2\xd2\xa2\x87\x62\x7d\xf6\xea\xc9\x8d\x28\x31\x18\x53\x11\x89\xed\xea\x2f\xa5\x45\xd5\x32\xa0\x3c\xb0\xb1\x59\xe3\x12\x2a\xee\xf7\xfb\xca\x6d\x7d\xdf\x35\x4c\x06\x51\x4e\xca\xb2\xa2\xed\x4f\x8b\xe8\xe6\x3e\x15\x3e\xdf\xc7\x43\x43\x22\xb2\x63\xfd\x8b\xb0\x69\xf6\x4d\x13\x16\x31\x74\xa9\x84\x27\xd6\x53\xc7\x5d\x08\x5a\xc0\x45\xcf\x3d\x37\x5b\x93\x7a\x50\xa2\x1b\x20\x32\x74\xcd\xc6\xca\x7b\xc3\x4c\xdd\x56\xf5\x8e\x81\x5d\x8a\xc0\x88\xe5\x69\xe9\xd4\xc8\x5d\x53\xe8\x7e\xfe\x48\xd7\x64\x59\x3a\x34\xec\x31\x50\x56\x40\x27\x89\x8f\x1b\x2e\x50\xee\x8f\x64\x38\xe8\x0d\x20\x1b\xfa\xbd\x40\xa5\x46\xbf\xa7\xd4\xf1\xed\x8a\x89\x4b\x57\x87\x79\x91\x31\x2e\xdf\xa7\x45\xc1\xc7\x8a\x3c\x61\x35\x4a\x72\x82\x69\x6a\xa8\xaf\x13\xea\x3b\x78\xd0\x0b\xea\x1f\x10\x67\x40\xfe\xfb\x55\x69\xaa\x69\xab\x72\x45\x73\xd5\x9d\x57\x73\xac\xbe\x45\x9b\x8f\xd2\x4c\x36\xe3\xe6\x3b\xd5\x7a\xdb\x7c\xa7\xad\xad\x92\xd9\xd8\xae\x98\xa4\x80\x05\x63\x9a\x58\x25\x91\xd0\xe9\xf9\x66\xd7\xb6\xf5\xad\x0b\xf0\x95\xf9\x23\x55\xf8\x2a\x2c\x3c\x35\x49\x42\xb9\xb9\xad\xdb\xe9\xc0\x42\x37\x4a\xf2\x28\xf7\xa2\x71\x08\x5f\x8f\x2a\x31\x8f\xa3\x6d\x10\xed\xbe\x8d\xdf\xea\xdb\x6c\x28\xd8\x0b\x8c\x85\xa3\xde\x57\xa3\x10\x61\x15\x68\x55\x2c\x9a\x54\xe9\x84\xa0\xaf\xa4\x2b\x46\xbf\x2d\x76\xd2\x27\xe6\x79\x1a\x0b\xd3\xbe\x93\x24\xd9\xc4\x9a\xe5\x13\x47\xa9\x36\x29\x33\xcb\x68\x27\xb4\xd7\xd0\x01\xe4\xe3\xb6\xed\x9a\x4f\xd2\x65\xcb\x1d\x3e\x37\xa0\x5f\xed\x0d\x64\xad\x08\x89\x64\x7c\x7d\x6b\x06\xfb\xdc\x73\xdd\x62\x64\x8a\x19\x1f\xd7\x7e\xa4\x64\xf3\x37\xb1\x7d\x80\x38\xea\xf4\x7e\x49\x81\xf6\x4d\x36\x36\xa1\x2d\x8b\x28\x34\x71\xbe\xa3\xe3\x04\xf0\xee\x04\x35\xf6\x08\xc5\x14\x20\x43\x7e\x3c\xd4\xae\x0a\x4f\x0c\x2d\xe3\xc9\xd7\x56\xe4\x2e\x02\x24\xf1\x04\x52\x5e\xa1\x8f\x09\xb1\x75\x9b\xe2\x5d\x66\x43\x4b\x19\xb3\x0b\xfc\xcf\xe9\x81\xa8\x26\x87\xcc\xdc\x5c\x77\x29\x4a\x06\x8a\x73\xe7\x5a\xa0\x06\x15\xaf\x4d\x7d\x0b\x61\x29\x36\x43\xe0\x47\xf1\x70\xf5\xc4\x1d\xc6\x71\x10\xb9\x9e\x6d\x81\xa8\xbd\xd8\x4d\x13\x3b\x43\x2e\x02\x6b\xfa\x03\xfa\x30\x9a\x5b\x8f\x51\xfe\x83\xbe\xe5\x83\xc0\xeb\x74\xf0\xc0\x7f\x9a\x31\x7e\xd9\xcd\x41\x54\x61\xbf\x00\xc4\xdb\xf8\x47\x63\x07\xaf\x75\xb1\xe5\xc1\x83\x0e\x7f\xb9\xc5\xba\xce\x1f\xa9\xbc\xd3\x93\x14\x1a\x01\x48\x70\x1a\xf5\x52\x18\x51\x9e\xcd\x43\xd8\x06\xe0\x94\x44\x5d\xaa\x13\xc6\xbb\x86\xf5\x55\x03\x8f\xee\x39\x4f\x39\x83\xa8\xd4\x77\x9c\xf6\xd3\x55\xb2\x71\x2a\x77\x11\xa4\xe1\x75\x44\xac\xa8\x6f\x32\x22\x02\x91\x70\x13\xfa\x37\x7f\xa4\x5b\xa4\x71\xac\x07\x05\x3e\x57\xfc\xbf\x4d\xf1\xb1\xb9\x39\xd0\x1a\x9b\xc2\xc2\x58\x21\xd9\xd8\xa6\x5c\x98\x6e\x71\xdc\x68\xcc\x9f\x1e\x79\xa9\xdb\x37\x59\x67\x2b\x16\x89\x8f\xdd\x2c\xd1\x98\xe4\x3e\xad\x28\x8f\x21\x60\xbf\x8e\x9d\x02\x9b\xf8\x30\xf0\x49\x02\x57\xce\x90\x75\x7b\x01\xaf\x74\x62\x13\x3b\xd8\xa9\xa8\x9a\xf9\x5d\xb8\x5e\x8c\x9b\xfc\x65\x94\x05\x4c\xec\x99\x69\x8d\x86\xd5\xd5\x3d\x2f\xe8\xbe\xfd\x8c\x1b\xac\xce\xcd\x92\x1d\x96\x26\xc3\x1e\x90\xa9\xd7\x8e\x1a\x87\x6d\x6a\x76\xbe\xd8\x5d\xca\xec\x1b\xa5\x4d\xc2\x35\x3c\x7c\xd8\x51\xd4\x7d\xf8\x38\xf8\xb2\x33\x87\xe9\x8a\xcd\x42\x33\x31\x61\x54\xac\x81\x88\x95\x09\x88\xa6\x7e\x26\x16\xec\x52\xa8\xce\x7c\x5a\x53\x62\xaf\x69\xea\x44\xe3\x32\x26\x16\x24\xe8\x77\x39\x5f\xe6\x81\xbc\x57\x1a\xf4\xdf\xc4\xbf\x0d\x05\x1b\x19\x0c\xed\x38\x56\xbc\xef\xe3\xa9\xc8\xd8\x5f\xf5\x0c\xd0\x2a\xe2\x79\x3e\x69\x32\xfa\x29\x92\x38\xea\xdb\x8c\x34\xe0\xaa\x6f\x41\x49\x01\xb6\x80\x8f\x95\xd3\xe8\x9b\x2c\x8b\x1c\xcc\x09\xf1\xca\x79\x5d\x65\x3e\x3f\x15\xe6\xe5\x28\x59\x49\xe3\x32\x29\x4c\x16\xb1\x3f\x70\x84\x50\x8a\x63\x70\xeb\xbb\xa8\x7c\x5a\x19\xc7\x83\xf4\xad\xea\x57\x5a\xea\x4e\x22\xd8\xda\x9c\xf6\x3a\x8c\x11\x46\x71\x69\x6e\x06\xbe\x7a\x3f\x32\x03\xef\x1b\xa3\x6f\x94\xd6\xe4\x51\xcc\xc2\xec\x32\xc6\x5d\x3d\x2e\x14\x6e\x58\xc1\x18\x7e\x53\xeb\x9c\x4c\xd2\xc2\x14\xa9\x45\x44\xca\xc2\x6f\x35\x11\x38\xd9\x34\x6b\x69\x99\x0c\xad\x54\x12\xa5\xc6\xe9\xeb\x12\xe7\x55\x09\xea\x84\x63\xb6\x19\xa4\x49\x62\x3a\x2a\xe5\xbc\xa0\xc8\xe5\x2f\xa8\x9a\xc9\x24\x4d\xa2\x2a\x49\x38\xb0\xe0\x70\x95\x95\x69\x42\xec\xbd\x41\xdb\x51\x6c\xd9\x56\x3b\xb3\xb8\xbf\x1b\x47\x4b\x05\xac\xb0\xd8\x38\xc5\xe4\x72\x66\xfa\xb8\xd4\x6c\x27\xe9\xac\xaa\x68\xc0\x2d\xe0\x99\xbc\x4f\xe1\x9a\x04\xef\xaa\x3d\xf3\xa8\x91\x07\x55\x21\x51\x18\xa7\x25\x27\x79\xe2\x31\x94\x64\xf3\x07\x6d\x62\xcc\xf9\x28\x9a\xd0\x24\x86\xa8\xdb\xc9\x74\xb3\xef\xab\x9c\x0d\xfc\x1b\xed\x9b\xdc\x56\x29\xc9\x2e\xac\x1a\xc6\x57\x4d\x7d\x78\xb3\xa9\x15\x38\x2f\x4e\xd5\xb5\x5c\x02\xd0\x07\x15\xc0\x4b\x14\x7f\xc3\x7a\xb3\x53\x50\x13\x50\x0e\xf5\x18\x3c\xa3\x47\xab\x26\x26\x8b\xf2\x34\x99\xf1\x6b\x7b\xaa\x26\xe5\x6a\xb3\x76\x57\x14\x4c\x69\x60\x4d\xec\x70\xea\x02\x91\xa7\xcd\x2f\xf3\xe2\x9a\x66\x2a\x9a\xac\x99\x6c\x50\xc3\x3f\xd2\xb5\x0a\x16\xd2\xff\xad\x7d\x33\xb4\x76\xe0\xb8\x1d\x19\x57\xa8\x58\xfc\x40\xd6\x23\xa3\xe4\xbe\x98\xba\x3a\x32\xc5\xd3\x8a\x3f\x87\x27\x52\xf8\xc9\x04\x4a\xe8\xea\x26\x0c\x0d\xbc\x30\xcb\x79\xa2\x48\x33\x83\xc2\x28\x4f\x0c\xd0\x9e\x02\x9a\x61\x8f\x42\x49\xef\x5a\xef\xcc\xcd\x79\x71\x95\x43\x2f\x1d\xe6\x7f\xf8\x84\x6e\x49\xaa\x11\xd5\x92\x46\x52\xf8\x48\x29\x94\xcc\xac\x13\xb6\xdb\xd1\xb0\x57\x6f\x12\x09\xf1\x39\x5a\xf8\x72\xbf\x4a\x9e\x1a\x34\xb5\x48\x59\x3a\x0d\xde\x95\x2a\xd6\xaa\x6e\x7d\x96\x6e\x5d\x74\x17\x3c\xe5\xea\xc7\x53\xbf\xcf\x8e\xd3\x64\x85\x10\x20\x79\xf8\x49\x1e\x15\x48\x25\xbf\xfe\x0a\x27\x0d\xbf\x20\x2e\x0c\x98\x5f\x30\x5e\xe1\x16\x9b\xe2\x3a\xaf\xbd\xd6\x2d\x93\x91\x99\x4c\xc4\x56\x8a\xd2\x98\xea\xc6\x35\x83\xe7\x6a\x5f\x8d\xad\x81\xcc\xcd\xab\x6e\xc4\x9f\xde\x8b\xb0\x24\x37\x29\x13\x17\xba\x61\x99\x17\xe9\x58\xe1\xea\x8f\x06\xba\xe3\xd4\x42\x0a\x1d\x8e\xcc\xa4\xb0\xd9\x76\x8f\x07\xb8\xa2\x40\x24\x33\x3d\x25\x1d\x7e\x59\xb9\xeb\xb3\x1a\x8a\xf9\x5d\xa5\x58\x90\xd9\x49\x46\x0d\xb1\x19\x25\xce\x77\x42\xe9\x2c\x3d\xa6\xf4\xd1\xee\x34\x8c\xc3\x2b\x8b\xfb\xbb\xe9\xd2\xd2\xa4\x2c\x8a\x2d\x6c\xf9\xf7\xa6\x3a\x71\x6c\x33\x7c\x36\x81\x2a\xa7\x60\xa6\x3a\x8a\xc6\x57\x31\x7f\x6f\x04\x1e\x53\x6b\x86\x36\x19\x18\xb4\x75\xf0\x66\xc1\xf6\xc0\xc7\x6a\x96\x64\xd5\xc8\xe5\x60\xaf\x7f\x12\x78\xe4\xc5\x27\xaa\xe8\xc2\xc2\x71\x55\x3e\x50\x7d\x29\x32\xd5\x6b\x5a\x8f\x83\x22\x75\x9f\x7e\xa5\x1d\xcd\x85\xd2\x51\x24\x45\xfb\x54\x96\xb6\x54\x54\x21\x16\x2d\xa0\x76\xf6\x34\x07\x66\x88\xde\xec\xd4\x5b\xc0\xd5\x6b\x10\x4a\xdf\x96\x5e\x67\xce\xdc\xe7\x0d\x2d\x21\x3e\xf6\xe0\x87\x2a\x4d\xdc\x41\x3b\x12\xd6\xe0\x57\x7a\xbe\x4d\x05\x65\x0b\xda\x52\x2f\xff\x5d\x94\xe2\x69\x43\xdc\xf8\xda\xba\x8f\x66\xf6\x82\x25\x42\xa8\x50\x1d\xb8\x3c\x2a\x4a\x2d\xe3\xa0\x3a\xd9\x12\x51\xff\x59\x5b\x44\x3d\x28\xe3\x58\x75\x1c\x8f\xa9\x8e\xe3\xb1\xc6\x02\xa9\xfe\xde\xe6\xcb\xaa\xcb\x76\x4c\x75\xd9\x8e\x29\xe2\xf0\x32\x17\xe6\x60\xb8\xc3\x6d\x3d\x45\x88\x77\x73\xea\xe1\xbe\x8a\xf0\xcc\xd0\x98\x8e\x0b\x9f\xf0\x7c\x8e\xe3\x0e\xf8\x44\xeb\x53\x86\x59\xd4\xef\xc7\xfc\x3e\x9d\x34\x89\x97\x29\x69\x6c\xd4\x97\xf7\x77\x07\x36\x8c\xb6\x08\x45\x31\x89\x0f\x9f\xd4\xf0\x5e\x26\x1b\x43\xd1\x43\x28\xe4\x14\x23\x03\x48\xea\x59\xcc\x3c\xf0\xfd\xd6\x6f\xba\x50\xa5\x1f\xa7\xab\xc9\x0e\x6d\x6d\xa6\xaa\x23\xf6\x04\xe2\x4d\xd6\xc1\x22\xfb\x29\xc5\x62\x45\x68\x05\xd1\x32\x19\x24\x68\x21\xee\x0f\x63\xbb\x62\x33\x94\xf1\x31\x3f\x77\x5b\xd1\x79\x02\x16\xc3\x73\x33\xb8\x4f\x99\x1d\xf1\x55\xfc\x38\x4d\x97\x41\xea\x87\x05\x76\xce\xeb\x6a\x2e\x9d\xa0\xa0\x89\x8f\xe9\xe1\xf2\xdf\xe8\xed\x5f\x0e\xa2\x02\xd1\x31\xfc\xc7\xb1\xc0\xd7\xc2\x8e\xa9\xe8\x38\x1f\x45\x4b\x10\xda\xf7\x08\x93\x8b\x8a\x5b\x12\x75\x19\xac\xd5\xeb\x2a\x94\x5b\x35\xc5\x48\x2a\x20\xe8\xde\x30\x38\x00\xf9\xe4\xf1\xa9\xe2\x1a\x3c\xab\x78\x5f\xc2\x51\x64\x97\x1e\x47\xb8\x83\x47\xf8\xe1\xd4\xa3\x5b\x81\x11\x11\xef\x47\x1e\x96\x79\xbe\x14\xc6\x9f\x01\x0b\x42\x84\x32\xe3\x45\x81\xbf\x15\x68\x7a\x18\xba\x36\x09\x42\x95\x7e\x8f\x86\x85\xaf\x44\x59\x21\x04\xd7\x2e\x3c\xf1\xe3\x19\x0d\xf0\x11\x15\x91\xe1\x8b\x88\x1f\xdd\x69\x33\x22\xcc\xe4\xe3\x1a\xa9\x47\x9a\x65\x58\xda\x92\x1d\xab\xab\xff\xbc\xc5\xd7\x91\x64\x5d\x2c\x68\x2c\x95\x8d\xc9\x84\xd4\xa7\x6d\xdc\x2c\x23\x93\x0c\x96\xca\x58\x69\x77\xec\x22\x23\xc6\xc7\xeb\x6a\x20\xc5\xae\x44\x42\xcd\xa2\x41\xaf\xd2\x70\xf2\xc5\x4e\x54\xc5\xbc\x20\x89\x9a\xf3\x69\x96\xd7\x17\x16\xba\x13\xa2\x5c\x0a\x65\x2b\xe3\xa7\xaf\xea\x3a\xf1\x55\x55\xcb\x19\x64\xe5\x70\x8f\x22\xf2\x65\x98\x0b\x92\x81\x7f\x42\x7e\xd5\xe9\xe8\x7b\x26\x5b\x8c\x1e\x23\x6a\xc7\x6a\x71\x04\x84\x2a\xb4\xf7\xc5\x8f\x33\x9a\x0e\xf1\x47\xe4\x02\xb1\xd7\xff\xfb\xa9\x8a\xe5\x2f\x29\xcf\x15\x17\x83\x17\x70\x03\xa8\xc1\xbd\x83\x3f\xe4\x93\xc0\xf3\xca\x0d\x59\x25\x0e\xb7\xf6\x5d\x8a\xfb\x1c\x6b\xeb\xe2\x7e\xb7\x2b\x3d\x3e\xdd\x16\xa3\xb5\xd8\x26\x56\x49\xd2\xff\x07\xdc\x35\x9f\xf8\x3a\xbf\x5d\x31\xc4\x04\x22\xe1\x30\xc3\x93\xa6\x1e\x36\x0f\xa5\x64\x54\x2c\x76\xab\x99\x4f\xfb\x66\x91\x99\x41\xe4\x2b\xda\x4c\xbe\x18\x74\x14\x11\xa3\x07\x11\x2d\xa5\xc3\x21\xc6\x3e\x10\xf2\x20\xdd\xc3\xd7\x7e\x42\xa4\xba\x92\xe0\xb7\xc8\xda\xf7\xd3\x62\x44\x2d\x04\xc4\xd7\x3f\xa6\xcf\xf2\xb1\xb3\xb9\x61\x9a\xc6\xec\x77\x44\x2f\x43\x49\x4f\x80\x14\x52\x16\xdf\xd3\x2e\x13\xb7\x4b\x82\x84\x52\xcc\xfc\xa0\x45\xe6\xe3\x56\x81\xe7\x30\x4d\x08\x63\xee\x65\x21\xb6\xf5\x14\xed\x05\x91\xf4\x1d\xde\xbc\xda\x3a\xa6\xb6\x9a\x66\xf1\x60\x35\x1a\x58\x60\x01\x30\x88\xfc\x90\x91\x24\x8e\x2f\xd1\xb5\xae\xcf\x2b\xc7\xb7\x9a\x45\xc3\x91\xeb\xca\xc0\x69\xa0\xa4\x85\xba\x14\xeb\xda\x88\x36\xe4\xd3\x6a\x8f\x85\x69\x36\x10\xd9\x61\x3d\xe9\x21\x25\x6d\x29\x4e\x2c\x95\xc9\xc0\x8c\x6d\x52\x98\x98\x79\x69\x51\x3d\xb9\x45\x8b\x8d\x8f\xdb\xca\xf4\x71\xf4\x46\x69\x97\x22\xd9\x96\x6e\x60\xcb\x0f\x6f\xb5\x54\x4b\xe7\xbb\x63\x5b\xcc\xd4\x0a\x4b\xf4\x69\x04\xc9\x77\xd5\xa7\x4f\xaa\xc5\x34\x4a\xfb\xfd\x35\x20\x60\x50\xa0\xdd\x08\x14\x07\xde\x86\x12\x40\x1e\xdb\x62\x94\x0e\xa2\xd0\xc4\x58\xdf\xce\x37\x3a\xb8\x39\xd6\x37\x8a\x6b\xff\xde\x95\xf5\x46\x51\x5e\xa4\x19\x8b\x41\xf1\x6e\x0b\xbc\x3f\xbe\xe2\xd0\x4d\xc3\x94\x02\x91\xb5\xa1\xe8\xf3\x38\x4d\x62\x27\xbd\x77\x69\xfa\xe5\x7a\x1d\xb6\x4a\x34\x5e\xde\xff\xe2\x6e\xdf\x6c\x62\x00\x8e\x9b\x85\xf5\x78\x27\x50\x6d\x32\x5d\x01\xed\x7d\x99\x76\xf0\x7b\xe0\x32\xd5\x1b\xe0\x54\x8f\x4d\x95\x79\x3b\x1d\xf8\xe2\xd2\xb6\xf5\x7d\xbe\xb9\x57\x44\x09\xda\x72\xae\xff\xf0\x43\x25\xbf\xf6\x43\x45\x95\x61\x4d\x56\x8c\x66\xc9\x45\x62\x89\x61\x23\xe1\x22\x88\x61\x59\x1a\xc6\x60\xf5\xe6\x7f\xe8\xb5\x01\xc8\x86\x65\x94\x24\x36\x97\xe2\x15\x96\x3a\x27\x42\x7c\x12\xa8\x6e\x79\x1c\xdb\x64\x68\xf3\x1d\x9e\x4e\x03\x90\x31\x3c\x25\x60\x40\x84\x84\x5f\xe9\x34\xf1\x10\x04\xec\xf2\x89\x40\x2b\x71\x2a\xb7\x50\xd8\x38\xde\xe1\xeb\xbf\x1b\xf4\x98\x61\xf1\xee\xa3\x35\x82\x32\xc3\x55\x35\x8e\x74\x94\xd2\x5b\xfc\xfc\x8d\xa9\x07\xbf\x5f\x56\xe9\x5b\x5e\x65\x6f\xcb\x55\x68\x8a\x9e\xb1\x63\x39\x3f\xe4\x08\x50\x6f\x35\xaa\x40\x07\x0f\x76\x33\x3b\x36\x51\xd2\x51\xd0\x0b\x54\x66\x45\x6c\xc9\x8b\xbf\x4d\xb2\x34\x9f\xb0\xa6\x5d\x75\xd7\xf8\x8b\x0f\xa6\x2a\x8c\xf9\xc0\x11\xd1\xc6\xa9\x19\xcc\xa8\x52\xf2\x59\xac\x2d\x94\x2f\xcf\xa9\xb1\x8f\x3b\x0a\xdc\xd5\xb7\x6b\x69\x32\x40\xf9\x16\xb9\x20\x64\x25\x60\x56\xc0\xb0\x88\xe6\xd6\xad\xa9\x92\x74\xac\xeb\xbd\xda\x24\xea\xd4\x48\x36\x6b\xf4\x9b\x5f\xf5\x91\xe1\xc4\x86\xd1\x52\x84\x09\xbb\xfc\xff\xbd\x29\x10\x7c\xd4\xda\xc4\xe6\x33\x4a\x8e\x3c\x50\xf3\x9d\x47\x15\x40\xf6\x44\x5b\x08\x3d\x49\x73\x61\x9a\x13\xd4\x80\x52\x6a\x3c\xdd\x48\x82\x7e\xad\x5b\xe6\x26\xca\x3a\x0d\xc4\xb3\x40\xa1\xb5\x48\x4e\x1c\x57\x77\xb4\xd3\x8f\x6d\x32\xc4\x0a\x0d\xb4\x73\xaa\x57\xbf\x0d\x79\x9d\x22\xae\x58\xd0\x6c\xd1\x52\xc1\xb9\x36\xf5\x82\x79\xa7\xdb\x34\x25\x06\xce\xfa\x22\x8c\x38\xa5\x63\x8a\x53\x81\x46\x36\x90\xe8\x4a\x5e\x74\x14\x9d\xe3\x79\xad\x3b\x73\x5e\xc1\xd2\x57\x4c\xbc\x5b\x95\x51\x38\x4b\x41\x0b\xec\xa9\x75\xdf\x21\xb9\x37\xdd\xaa\x32\x80\xbd\xb2\xb7\x57\xaf\x24\x3b\x70\xcc\x2f\xd3\xd4\x88\xc0\x41\x95\x76\xd3\xf5\xe9\x1e\x1f\xcd\xc4\xb3\xda\xd4\x11\x01\xdb\x29\xa6\x10\x63\xd9\x08\xd1\xd8\x6f\x01\xaa\x39\x0c\x3f\xef\x16\x44\x03\x67\x74\x68\xd0\xd4\x8c\x5f\x58\xe8\xf6\xa3\x38\x96\xd6\x31\x2e\xf0\xe3\x40\x25\x67\xc7\x03\x3d\x0b\xb2\xd5\xd8\x7d\x63\xde\x93\xd8\x76\x1a\x24\xb6\x42\xaa\xd4\x62\x05\xe2\x68\x1c\xc9\x95\xba\x38\x5e\xb5\xbc\x1a\x0b\xf2\xb5\xd7\xba\x23\xb3\x62\x67\x7c\x75\xfe\x26\x1c\x80\xe0\xfe\xab\x37\x22\x53\x03\xcf\xaa\x70\x60\x52\xf6\xe3\x28\x34\x49\xbe\xdd\x97\x44\x2e\x70\x0c\x22\x0c\x85\xf4\xcb\x22\x61\xe2\x83\xf2\xfb\xf4\x6a\xf9\xff\x37\x52\x97\x03\x0b\x5d\x1b\x16\xe9\x24\x36\xf9\x38\x0a\x6b\xf1\xff\xd4\x9b\xd2\xcb\xc1\x1e\xf1\x86\xaf\x2c\xee\xff\x4a\xe7\xd7\x7f\x9b\x7b\xda\x97\x03\xcd\x17\x7b\x7d\xaa\xb8\x1c\x66\xc8\x53\xe3\x78\x83\x96\x1a\xda\xca\xb7\xc8\xf1\xa0\xad\x7d\x13\xe0\x1c\xa5\xe3\x2e\x92\xae\xf7\x15\x21\xfc\xef\x02\x1e\x06\x8b\xf1\xef\xb0\xc5\x40\x19\xbb\xa1\x29\x41\x1f\x4e\x95\x90\xc8\x36\x1a\x12\xc0\xe2\x66\x4d\x1f\xe4\xd3\xf7\x80\xb4\x44\x60\xf0\x3d\x0a\x65\xb1\xec\x7f\x10\x28\x42\x92\x4f\x94\xfa\x20\xe7\x2a\x98\x8e\xde\xa4\x8c\x42\x92\x85\xce\x37\xbc\xbc\x8a\x43\x81\x45\xc3\x61\xcc\x2c\x62\x22\xc4\xe7\xf5\x02\xb8\xc6\x0b\x77\xd7\x9c\x85\x9d\x9b\xef\x02\xf2\xc6\x32\x5b\x02\x4a\xed\x78\x46\x26\x57\x85\x99\x64\x96\xd8\x64\xa4\x98\xe5\x78\x78\x9c\xf0\xc8\xf9\x46\x40\x2b\x40\x18\x53\xa4\x09\xd8\x7a\x51\xdb\xe9\xf4\x14\xaf\xc5\x69\x0a\x50\x1c\xcb\xd8\x82\xaa\x17\x1f\x70\xf0\x17\x95\x1b\x0d\x6c\xb2\xd6\x51\xec\xf4\x27\xf0\x22\xf9\x44\x29\xb1\x98\xe1\x30\xb3\x43\x53\xd8\x3a\x7d\x9f\xaf\x2c\x5e\x50\x7a\x07\x85\x49\x86\x51\x3f\x66\x52\x45\x84\x3a\x57\xe0\x36\xf9\x44\x49\xac\x86\x69\x99\xe4\xd6\x4f\x40\x09\x3b\xb3\xc7\xeb\xf8\xfa\x1b\xb1\x38\x59\x93\xd7\x19\x25\x3b\xb4\x5c\xf9\xb8\x27\x2f\x73\xcd\xc6\x71\xba\x3a\xeb\x2b\xde\x20\xd8\x07\x8e\x6a\x0f\x42\x17\xa4\xf7\x67\x15\x87\xd7\xed\x2a\x84\xc4\x1d\x2f\xa5\x19\x49\xfb\x2a\x04\x3f\x17\xdc\xa7\x3e\xb4\x3f\x5a\x2b\x0d\x14\x66\xed\x71\x35\xa8\x7f\x8c\xf6\x0e\x16\xcc\x93\x64\x81\xe1\x95\x31\x1d\x81\xdc\xf6\x62\xe0\x39\x6b\x77\x52\x05\x12\x21\xd4\x13\x98\xa8\x41\xcc\x70\x5e\x0b\x54\x1d\x83\xe3\xe5\xa9\x58\xda\x92\xc8\xab\x6b\xec\x3a\xd6\xe4\x69\xb2\x53\x69\x38\x7d\x93\xee\x12\x6d\xf3\x53\x81\x6a\xd0\xbe\x8f\x37\xc3\x7f\x15\x28\x94\xdf\xfb\xd8\xe3\x52\x43\xf4\x31\xec\x7b\xc1\x97\x7d\xfb\x28\xca\xbd\xd8\x21\x4c\x0a\xbc\xc4\x19\xdd\xa9\x39\xd3\x56\x5f\x58\x2a\xb3\x24\xca\x47\x52\x81\x77\x60\x01\x17\x7f\x6c\x68\x9a\x9c\x8f\x5a\x26\x88\x47\x51\x3e\x31\x09\x67\x0f\x88\x11\x6f\x06\x8a\x46\xe8\x66\x33\x23\x98\xef\x1e\x5a\x3c\xf4\xd5\xea\x65\xc0\x5b\xcf\xae\xe3\xa2\xe1\xa2\x1e\x83\x07\xe5\xd1\x0a\x8a\x1c\x84\x68\xc8\xbf\xcb\xf3\x4a\x1c\xe1\x24\x44\x6b\xa4\x1c\x4a\x2f\x4d\xd8\xd8\xc9\x5c\xb9\xa1\xb4\x5f\xff\x6d\x19\xa3\x9a\x2a\x8c\x28\x31\xee\x7a\xda\x60\x05\x4c\x06\x1f\x32\xc2\xbf\xdd\xeb\xbe\xdc\xce\x1b\x1e\xa9\xf7\xb6\x1e\xa2\x5f\xaf\x3a\x75\xc8\x13\x07\x78\x2f\xfa\x23\xb2\x7d\x6e\x96\xdb\xc3\x05\xb6\xf5\xe8\x15\xc3\xc7\xdc\x24\x35\x1c\x81\x7a\xd5\x6a\x5e\xe5\xe4\x29\xba\x35\xfc\xea\x1d\x94\xf2\x70\xd3\x3f\xc3\x92\x41\xd9\x66\x76\xdd\x83\x7a\x41\x0f\x02\xe3\x39\xbb\xae\xb4\xea\x6e\x20\xee\xc7\x5f\xcd\xf4\x94\x7c\xc1\x63\x3d\xc5\xb7\xf1\x83\x40\xb3\xc0\x7b\x60\x21\xab\x02\xc2\xf1\x6e\xef\xa9\xe7\xff\x63\x7a\x64\xd8\x19\x1f\x07\x35\xaa\xa1\x66\xe4\x71\xa8\x6b\x57\x6c\x56\x43\x89\xd1\x27\x04\x26\xf6\x94\x2a\xa9\x64\x43\x5b\xec\x54\x72\x28\x8f\xb0\x33\xb0\x67\x1e\xe1\xad\xe1\x7a\x3e\xd7\xfa\x1e\xc0\x96\xf3\x44\x03\xae\x1a\xce\xf7\x26\xf6\x1c\xe2\xd0\x4b\x35\x00\x7f\x36\x1c\x75\x7c\xdf\xe9\x7d\x7c\x9d\x10\x08\xfb\xb4\xaa\x9f\x0e\xd6\xb0\xbd\x19\xde\x4c\xbd\x45\x0c\x7d\x5d\xd2\xd4\x91\x88\x0f\x59\x21\x8b\x20\xf5\xfc\x47\xd0\x24\xd0\x9b\x0e\xeb\x63\x7b\x83\x1c\xf8\xc0\x42\x37\x11\x5a\x24\xfc\xfd\x05\x35\x5d\x75\xa1\xe1\xaa\x5e\x99\x3f\xd2\x1d\x96\x26\x33\x49\x61\x2d\xaa\x07\x32\x4e\xe0\x15\xf0\xff\xc9\xf1\x46\x14\x49\x38\x2b\x4b\x8d\xae\x6c\x0d\x5d\x29\x34\x7d\x4f\x2b\x55\xbc\xd3\xc1\x97\xd4\x70\x8c\x49\x06\x44\x3a\xae\x15\x92\x5d\x1e\xb4\xe0\x55\xd2\x03\xc5\xee\x01\x88\x05\x1a\x9a\x0f\xc9\xfc\x22\xbe\x38\x46\xeb\x8d\x8f\x1b\x50\xb8\x03\x0b\xdd\xa2\xb2\xaa\x65\xc6\xf8\x1c\xd8\xef\x75\x25\x5b\xb0\xde\x52\xfd\x9d\xef\x9a\x81\x0f\x35\x65\x2a\xb5\x46\xa0\xa6\x9a\x6c\x66\x2d\x7f\x86\xae\x14\x26\xe0\xae\x6e\x86\xec\x5a\xf7\x24\x19\x77\xa7\xd8\xf6\x02\xcf\x50\xf9\xdf\xad\xa9\x9f\xfc\xf9\x28\xf0\x30\x82\x4e\xaf\xd6\x52\xaf\xcc\x11\x0f\x3a\x04\x1e\x50\x71\x11\xed\x3f\x98\x83\x8f\x38\x42\x44\x39\x17\x03\x75\x58\x3b\x4f\xa1\x04\x87\xa6\xf8\xd9\xa9\xa2\xea\x9a\x7a\x3a\xa1\x07\x48\xc5\x5d\x30\xf2\xb2\xd0\x93\xcc\xd4\x85\x81\x3d\x7a\xc2\x0c\x5e\x37\xa1\x95\x56\x32\x1a\x0f\xbf\x3f\x55\x5d\x88\xdf\x0f\x7c\x3d\xd1\x0c\x56\x6c\x56\x58\x86\x12\x33\x53\x77\x8d\xb5\x5b\xd0\x58\x4b\xb1\xc9\x47\x7d\xc3\xa8\x79\xa7\xa3\xe4\xa6\x12\x4e\x04\x1e\xea\xbd\x94\x66\x45\x99\x70\xe4\xe2\xb8\x0e\x9d\xbe\xcc\x25\xd5\x6a\xc8\xd3\xb1\x1d\x55\x11\x86\x33\x4c\x77\x03\x35\xd7\xce\xe5\x16\xf4\x41\x30\xaf\x23\xad\xd3\x96\x48\x5e\xe1\xc0\x3b\x8a\x2e\xf5\x27\x8a\xf0\xf9\x27\xd3\x67\x1a\x64\x73\x8b\x87\x76\x7b\xb8\xd7\x75\x45\xfa\xf1\x5d\x20\x38\xe0\x3d\xd0\xd4\xc6\xae\xfb\x39\x2d\x09\x50\x82\x1f\x0f\x94\x27\xb8\x09\xae\x3a\x8c\x22\x71\x1b\x98\x3f\x1e\xd4\x5a\x32\xbb\xa3\x2a\x7e\x5d\xfa\x07\xdd\xdf\xf8\xeb\x95\xbb\x10\xd5\x56\xfa\x1b\x07\xcb\xf9\xfa\x2b\x6c\x7e\x30\x09\x87\x8b\xda\x05\xc8\x04\xde\xcf\xe7\x53\x3d\x98\x4f\xcc\x96\x58\x9b\x3b\x31\x42\xed\x48\x32\x7c\x9d\x19\x5c\x40\x40\x43\x3c\x52\x32\x0e\xbb\xd7\x5d\x79\x7e\xf9\xcb\x70\x34\xac\x46\xbc\xee\x83\xab\x99\x5e\xe7\x37\x0f\x3b\x1e\x97\x2a\xfc\x87\xff\xbd\xa0\xf4\x63\x76\xaf\x2b\x76\xd0\x99\x67\xe1\x8c\x90\xaf\x6c\x23\xc7\x86\xb8\xe8\x4b\xeb\xdb\xbe\xc6\xb7\xf7\x14\x9c\x31\xe0\xb3\xcf\xb3\x33\xc6\x02\xd8\x45\xae\x75\xb3\x83\xbd\x02\x03\xfc\x57\x30\xba\xa2\x0e\x4a\xc9\x11\xde\xee\x6d\x15\x3f\x4f\x88\x97\x37\x05\xe7\x35\xf3\x94\xc1\x80\x09\x69\x59\x8b\x71\x9a\xc4\x26\xf1\x5a\x17\xe8\x2c\x7d\x7b\xea\x9b\xc8\xdf\xf6\xac\xec\x36\x29\xaa\x8c\x99\xe8\x1d\xf1\xa0\x78\x52\x45\x8f\xeb\x63\x73\xcf\xf6\xb6\xfe\xd4\xf3\x55\xd2\x90\x96\x89\x6b\x0b\xb1\x62\xc3\x54\x8d\x25\xde\x69\x18\xc2\x03\x0b\xdd\xbe\x8d\x5e\x77\xd7\x27\x34\xfe\xca\xe3\xce\xf4\xfc\x36\x2c\x27\x79\x68\x62\xad\xb5\x7d\x56\x29\x7b\x9d\x6d\x04\x93\x92\x1c\x2d\x0b\xb3\x34\xa2\x0e\xa6\xad\xe1\x13\x37\xed\x93\xd9\x38\x92\x69\x1f\xe9\x53\x2a\xa6\x97\x93\x2d\x84\x16\xc8\xe2\xe9\x85\x20\xba\x83\xca\x38\x1f\xeb\xf1\x83\x71\x34\xcc\xa8\xc4\x36\xeb\x41\x47\xef\xc1\xef\xf1\x09\xb6\x93\xb0\x9c\x2a\xbc\xc7\xa5\x46\xd5\xe1\xf9\x6e\x98\x95\x36\x56\x0a\x0d\x97\x61\x63\x04\xd0\xe3\x6b\x47\xc6\xe0\xf2\x1c\xef\x84\xe7\x4d\xbb\x18\x3c\xa3\x5c\x66\x56\x86\x85\x88\x13\xcf\x7b\x52\x4b\x4f\x70\xa9\x79\xb5\x29\xdb\x9a\xd1\x20\xbd\x69\x8d\xfd\x98\x6e\x05\x4d\xa8\xab\x6a\x1e\x16\x68\x11\x07\x08\xe5\xd8\x87\x4f\x3c\xdd\x58\x34\x1c\x15\xdc\xb9\x64\x28\x4c\xa0\x61\x31\x4a\x6c\xdf\x16\x85\xcd\x9a\x62\x0d\x28\xd7\xa1\xcb\x80\x47\xf2\x40\x6b\x92\xa4\x6f\x5a\x56\x78\xc0\x4f\xbf\x49\x2b\x1b\x65\x7a\x7c\x01\x2a\x13\x17\xfc\xde\x98\x60\x17\xe1\x53\x8e\x25\xd3\x4d\x40\x9c\xa1\x4f\x31\xd3\xae\xba\xc0\xd7\x89\x21\x18\x9f\x82\xb1\xfb\x4c\xe9\xf9\xff\x05\x1c\xb4\xac\xb5\x27\xdc\x30\x88\x59\x06\xa1\xbb\xbc\x34\x7f\x4f\xf7\x95\xd7\x69\xee\xf7\xf9\x23\xdd\x49\x96\x16\x69\x98\xa2\x43\x0c\xbb\xfb\xa9\xf2\xe4\x9f\xb6\x0a\x9c\x57\x09\x74\xc9\x33\x79\x9b\x57\xf1\xf6\x58\x93\x5d\x81\xf1\x08\xdf\x3f\xbf\x79\x15\xe3\x8c\x52\x0b\x1f\xa7\x90\x49\x43\xb2\xe6\x98\x7c\x5d\xf1\xf1\x9c\x2a\x5d\xfb\xbd\x56\x64\x51\x1c\xe7\x1d\x7d\x33\xaa\x81\x7b\xae\x65\x5e\x6d\xa1\x1b\x97\xe1\x32\xc7\x7f\x70\x54\xdf\xa1\xaf\xe6\x63\x35\xe6\x9b\xd9\x62\xa7\x07\x62\x70\x52\xcf\xec\xd3\x1a\x3d\x7f\x27\xf0\x9a\x22\x77\x38\xaa\x41\xf6\x77\x6b\xea\x1b\xec\xdb\x91\x8a\x49\x2f\xa9\x85\x5e\x26\xcc\xca\xdc\x51\x59\xba\xe8\xe0\xe0\x41\x17\x1d\x28\x15\x8a\x72\xbc\x4b\xd5\x52\x76\xac\xab\xf6\x08\x18\xdc\xf9\x02\x02\xdf\xe5\xf9\x15\x92\x23\x70\x00\x91\xb9\x39\x0f\x4b\x77\xca\xbe\x97\xb4\x24\xc8\x6d\x37\x57\xd4\x37\xc9\xb2\xcd\xf2\xed\xaa\xd1\x29\x12\xd8\x70\x66\xfb\x7a\x0a\x71\xf0\xef\xe9\x02\xe0\x48\x1f\x2a\x39\xa0\x4b\x0a\x48\x92\xa4\x85\xed\x4b\xaf\x8d\x21\xf1\x70\x42\x82\x8f\xf7\xe0\x91\xd8\x64\x43\x8b\x62\xbd\x20\x53\xab\x07\x2e\x90\x1a\x27\xd6\x67\xf3\xe2\x49\x8d\x8c\x3d\x06\x46\x6b\xde\x84\x53\x1f\xc8\xed\xeb\x91\x9f\x14\xb4\x3a\x3d\x6f\x81\x04\xa9\x21\xcd\x63\x14\x5c\x60\x5d\xdc\x9f\x2a\x51\xb7\x3d\xeb\x14\xec\xe2\x41\x40\x07\x07\x3f\x72\x83\xc2\x1f\xd4\x4b\x3e\x9a\x7a\xdf\xfd\xdf\xfe\x31\xbd\x07\x04\xab\xdb\xbf\x50\x47\x7f\xc9\xaa\x4a\x15\xcc\x1e\x70\x49\x7c\xdc\x4a\xe7\x10\xc6\x26\xcf\xa3\x10\x7a\x0a\x50\x36\x39\xbc\x79\xb5\x0d\xf7\x55\x98\x09\x7c\x1e\x4b\x52\x28\x06\xf5\x8b\xd3\xad\xb3\xc5\xcf\x77\xc3\x71\xae\x68\x45\xce\x4c\x15\x4b\xde\x99\x96\xe4\xea\x45\xcf\x23\x87\x15\xcc\x84\xc2\x81\xaf\x13\x5e\x6a\xea\x1d\xcf\xd3\x88\xb8\x6a\xcf\x9e\x55\x70\xa9\xb3\xaa\x0f\x63\xc3\x34\x49\xc7\x51\xf8\x4c\x8d\x30\xaf\xe3\x46\x07\x59\x53\x09\xb1\xcf\x07\x4a\x1b\x79\x66\x1d\x61\x93\x54\xff\xab\x4d\xe0\x32\xfd\x6a\x19\xb8\x0a\x62\xf5\x82\xa5\x82\x48\x01\xaa\x2b\x9b\x54\x6f\x5b\x54\x0b\xaa\x37\xcc\xc5\x6b\xdd\x94\x3c\x49\x6b\x52\x66\x0b\x54\x94\xf4\xdf\x04\xfe\xe6\x1e\xc1\xbd\x22\x34\xbc\x32\x55\x4c\x98\xd7\x90\xf2\xf3\x45\x2a\x7d\xc3\xea\x99\x79\xa6\x7f\x10\x84\xe7\xa3\x68\x92\x03\xd6\x26\x09\x36\xee\x51\xa4\x55\x7d\x05\xf1\x9e\x02\x07\xdc\x73\xfb\xd9\x84\xa1\x9d\x14\x39\xd5\x79\x11\x85\xff\x25\x7c\xa8\x2b\xc6\x39\x0a\x32\x60\xc5\x51\x70\x38\x09\xeb\x20\x84\xda\x02\xa1\x9f\x98\x17\xea\x94\xe5\x6a\xc8\xb8\x09\xb5\xac\x4c\x70\x5e\x58\x33\xa0\x42\xf6\xe6\xd5\x00\x52\x3c\x2a\xf5\x09\x4d\x32\x88\x42\xca\x92\x5e\xdc\xa4\xfc\x71\xf3\x73\xbf\xcb\xd3\x0c\x83\x21\x78\xec\x10\xc7\x97\x47\x55\xc5\xfc\x52\xaa\xf6\x03\x6b\x76\x6f\x4f\xb5\x06\x2e\x35\xda\x44\x07\x0f\x76\xc7\x66\x2d\xcd\x66\x14\x66\xf1\x06\xad\x20\x69\xf4\xfa\xe0\xf0\x87\x2d\x42\x70\x87\xbb\x99\x1d\x7a\xd8\x66\x4d\x3e\x45\xc6\x7d\x5b\x5a\x5a\x92\x94\x89\xc5\x77\x73\x0d\x07\x0f\xca\x71\x1b\xa1\x64\xe5\x99\x69\x4a\xfe\xe5\xfd\x9c\x62\x03\xac\xc7\xc7\x53\x4d\x22\x6d\xc2\x65\xab\xe5\x8a\x2e\x28\xb9\xa2\x0b\xad\xed\x32\x4b\xa4\x80\x0e\x15\x7e\x49\x79\x5d\x48\x61\xc2\x4f\xdc\x6e\x34\x28\x5e\xde\x7f\xa8\xeb\x74\x28\xea\x0a\xea\x0b\x8e\x6c\xd5\x07\x8a\x26\x0c\x4b\x10\x29\xd3\x5f\x3b\x32\xf7\x85\x05\x47\xe6\xde\xc4\xe8\x1e\xea\x56\xf9\x7b\x66\xb9\x10\x2c\xf9\x84\x1e\x8b\x6d\x5c\x97\x53\xd7\x18\xc0\xd7\xb8\x19\x43\x4f\x2d\x7d\xae\x6d\xea\xac\xba\x95\xdc\x0a\xae\x4e\x50\x63\x64\x16\x84\x9b\x40\xa9\xa3\x25\x79\x34\xb0\x34\x63\x89\xd0\x15\x96\x09\x75\x1b\x14\x7e\xdc\x12\xad\xcf\xa2\xce\xbb\x18\xb1\x72\xc8\xfc\x01\x37\x9c\x12\x47\x18\x4a\xc6\x0b\xc0\xb0\x3b\x1f\x4f\x3d\x19\xc2\xc4\x66\x63\x93\x2d\xbb\xde\x28\xf3\xbe\xc3\x20\x0a\x09\x7c\x73\x1b\xbe\xd8\x9d\x8c\x7c\xb3\x03\x85\xf4\x0e\x3a\xd8\x7c\xd2\x18\x22\x38\xb0\x40\x0a\x14\x6b\xea\x49\x3e\xd6\x53\x4f\xf2\xb1\xf5\x16\xc6\xd4\xa1\xf0\x53\x61\x07\x3d\x22\xaf\xca\xc7\xc1\x56\xdd\x5c\xb0\x01\x26\x85\xcd\xc2\x32\x2e\xca\x6c\x8b\x6e\xae\x2e\xba\xaa\x08\xa1\x6f\x68\x74\x17\xcb\x02\x78\xed\x19\x5c\x17\x9f\xac\xfb\x21\x86\x7e\x99\x2d\xa5\xd9\x80\x30\x6c\x4c\x43\x8b\x94\x49\xf7\xb5\x98\xda\x5e\x41\xb6\xaa\x94\x34\x2b\x18\xdb\xe1\xc9\x86\xfc\xe2\xbd\x18\xf8\x4a\x5b\x95\x02\x77\xb6\x14\x0b\x0f\x39\xd0\x84\x9b\xe3\x9b\xc4\x3c\x50\x51\x59\xba\x47\xeb\x3e\x8a\x9d\x25\x11\x5c\xe1\x48\x77\x1a\x61\x66\x98\x44\x4b\x51\x28\x55\x29\x44\x55\x0f\x03\x1f\x61\x3d\x54\xbd\xe1\xd5\x28\x19\xe4\xa3\xc8\xc6\x03\xe8\xf7\x23\x2f\xf9\x90\x36\x31\x1f\x07\xaa\x6a\xc8\x88\x12\x3e\xd1\x8e\x77\x3c\x89\xd3\x35\x3b\xe8\x68\x71\xf8\x2b\x9a\xe7\xff\x4a\x8b\x31\x58\xe8\xda\xb8\xcc\xe5\xcd\xb7\x95\x75\x5b\x14\x18\xbe\x56\x25\x48\x19\x3e\xc2\xfb\x88\x3e\x22\x7b\x4a\x32\x1b\x3b\x0e\x2d\xb7\x0a\xa5\xff\xe3\xa1\x05\x67\x1a\x41\xff\xf3\xdd\xa5\xcc\x24\xcb\xac\x6e\x85\xca\xec\xed\x40\xe5\x67\x53\xd5\xdd\xd6\x5a\x6f\xa3\x32\xe9\x68\x8b\x44\x6f\x51\x4c\x55\x4b\x91\x24\x4a\x96\x62\x53\x08\x33\x25\xdc\xe4\x1d\xc5\x43\xc2\xf4\x1d\xa2\xb7\xb2\x35\x0c\x5c\x58\xe8\x92\xc0\xc5\xb2\xb5\x13\x17\x06\x4a\x01\xcc\xe7\x61\xcd\xbd\xec\x6c\x5c\x3a\xd3\x39\xf2\x12\x4f\x10\x3d\x0a\x7c\x4b\xe9\x41\x6d\x4a\x45\x13\xca\x12\x6c\x32\x57\xa9\x7d\xa1\xa6\x3a\x0b\x55\x3c\x0e\xd3\x78\xb0\xc3\xe3\x8c\xee\xe1\x56\x9c\x12\x82\xa7\x32\xba\x1f\x68\xf1\x97\xa9\xef\xf5\x33\xde\x04\x25\xa1\xf3\x0a\x06\x38\xb0\x26\xe6\xaa\xac\x10\x2f\x53\xff\x42\x18\x99\xdb\x94\x33\xf2\x14\x5b\x5e\x91\x1d\x61\xe0\x4b\x28\x80\x9e\x56\x18\x72\x03\xfd\xf2\x8e\xd2\x03\x46\x49\x42\xea\x38\xcd\x15\x93\xd9\x49\x9a\x89\x41\xc5\x77\x6e\x22\xcd\xe6\x13\x15\xaf\x4c\x6c\x16\xa5\x03\xd6\xc6\x13\x8d\xb4\x6a\x03\x6b\x0a\x56\x40\x6b\x3a\x3d\xca\x3b\x45\x77\x95\x36\x91\x60\x11\x7c\x5b\xff\x17\x35\x2e\x85\x46\xc4\xf1\x7c\xe5\x3d\x75\xe4\x20\xd6\x4a\xd1\xdf\x9c\x72\x64\x39\x99\xcd\xa3\x61\xc2\x73\x25\xd8\xc3\x4a\xb4\xdd\x9d\x38\xd5\x5c\x1b\x2e\x8f\x68\xb6\xd8\xed\xa8\x13\x53\xd5\x6a\x3d\xe1\xfe\x30\x2f\xec\xaa\xc9\x0a\xc5\xc6\x72\x4c\x6b\x79\x48\x26\x2c\x85\x78\xdd\x85\x4a\x87\x11\x89\xa2\xd5\x18\x19\x85\xcb\xed\x4b\x0e\xf3\x36\x24\xc0\xa7\x7f\xab\x37\x03\xcd\x66\xed\xf3\x8a\x0f\x54\xd0\x93\xa5\x83\xa1\x9b\x3f\xc1\x4e\x00\x47\x37\x1f\xd7\xae\x63\x60\x93\x27\x29\xee\x86\x4b\x39\x4b\x15\x60\x4e\xf8\x02\x84\xd4\xfc\x2f\x9a\xc3\xf6\x36\x85\xfa\x78\xd1\xc7\x28\x9f\xc0\x1d\xf3\x0b\x60\x85\x07\x38\x15\xe4\x88\x1b\x81\xaa\xd0\x21\x13\x15\x9e\x11\x5f\x2f\xbf\xcf\x19\xb5\xfb\x2b\x37\xce\xf1\x50\x75\x0b\x63\x53\x8c\x2c\xd3\x0b\x48\x8c\x46\xeb\x9a\x4f\x14\xaa\xc2\x35\xc9\xe8\x15\x21\x10\xf8\x5c\x51\x7b\x9d\xc5\xfa\xc3\x6f\xfc\x4b\x65\xf7\x06\x91\x25\xfe\x52\xe0\xf7\xb8\x40\xef\x26\xb3\xe6\xe6\xb5\x2a\xb6\xd4\x38\xef\x06\x9d\xdf\x54\xb4\x60\x8b\x02\x21\xbd\xac\x81\x4f\xec\x08\x51\x96\xdf\xd9\xf3\x1a\x3a\x67\xa8\x51\x86\xff\x0f\x63\x8e\x7c\xfc\x43\x55\x2d\xcc\x4c\x66\xe3\xb5\xed\x1d\xad\x88\xbe\x55\x30\xd6\x81\xd2\x17\x25\x89\xff\x9c\xae\x05\x13\x29\x57\x15\x2d\x69\x66\xcd\x00\x76\x4f\x76\xac\xde\xbe\xaa\x0b\x38\x30\x2b\xd1\x60\x3b\x5e\x0d\x32\xfb\xeb\x0a\x75\x73\x45\xb1\xa6\xfc\xef\xb4\x3c\xf9\x18\x5f\x87\x74\xf4\x3b\xda\x58\x64\xe9\x4a\x9a\x17\x33\x1d\xc5\xc7\xe1\x41\xe0\x68\x64\x89\x4c\x5d\x33\x02\x3e\x8c\xb9\x2c\xde\xf7\x78\x3f\x47\xb1\xec\xf8\x44\x71\x49\x2d\xa5\x59\x68\xf3\x5d\x8a\xf1\x9c\xfb\x28\x7c\x82\x36\xbb\x73\xe8\xd5\xbb\x44\x13\xf4\x47\x81\x97\x33\x39\x4d\x2b\x14\xfe\xe0\x14\xf5\xe2\x84\x13\xbb\xe3\x88\x52\x2e\xab\x16\x57\x18\x93\x18\xd4\x2e\xe5\x02\x6f\x4d\x15\x3f\x07\xe4\x18\x5d\xe9\xf3\x80\xd3\xf7\x44\x6e\x09\xef\x7c\x85\x76\x98\x83\x0a\x56\xcb\x5b\xe8\xf6\x95\xd0\xe1\x95\xe9\x1e\x7e\x40\xdd\x43\xf3\x47\x88\x00\x0e\xbd\x91\x5f\x04\x9e\xa9\x1a\x3c\x45\xf8\xf4\x0f\xe8\x49\x0b\x6e\xb3\x86\x8c\xf0\xbd\x90\x4b\x4a\xd2\x7d\x56\x0d\xc2\x2c\x65\x36\x0f\x0d\xc6\xb4\xf1\xfb\x37\x54\x51\xe7\x46\x9b\x8a\x69\xe5\x79\x86\x42\x75\xaf\x70\xad\xf3\x4e\x27\xcd\x71\xca\x98\x7c\x24\xe2\xa5\x8e\x7a\xc3\x41\x94\x6e\x35\x1c\xd4\x6b\xaf\x75\xf3\x28\x19\x46\xc9\xac\xea\x77\x6c\x57\x7a\x2e\x27\x14\x5d\xea\x07\x58\x8b\xe8\x04\xdd\xd7\x5a\x79\x93\x2c\x8a\xb1\x94\x50\xe3\xbc\x8e\xa5\xc4\x27\x8a\xc8\xa8\x30\x39\x0b\x76\x02\xab\xc7\x42\xc0\x7c\xa2\x54\x35\xfb\x76\x18\x25\x5c\x15\x07\x84\x05\x7a\xaa\x00\xec\x9d\x53\x4c\x89\xa7\x5b\x33\xe9\x61\x56\x8e\xfb\xb1\x9d\x55\x02\xc8\xa0\x42\x05\x64\xe7\x1a\x7d\x01\x9e\xca\x47\x53\x1f\x24\x9f\x6d\x24\xd8\x73\x73\x95\x5f\xce\xa3\xdc\x35\x71\xb1\x79\x01\xfd\xe2\x63\x97\x68\x3d\x67\xc7\x3b\xab\x75\x22\xe1\xa4\x92\x5a\x04\x9b\x99\xa4\x6f\x8a\x43\xe0\x32\xa2\x14\x3c\xac\x9f\x91\x5d\xc4\x6b\xdd\x98\xaa\x5a\xce\xce\x9e\xab\xc7\xc7\xd1\x18\x93\x18\x6d\x38\xca\x27\x15\x64\x2d\x23\x02\xb8\x57\xd9\x94\x6c\xc0\xcc\x39\x4e\xa2\xea\xd2\x64\xd4\xc9\xeb\x76\x22\xca\x60\x7d\x41\x58\x6c\x45\x27\x79\xc8\x43\x78\x9c\x66\xc2\x5d\x97\x88\xa4\x65\xe1\x29\x8a\xc4\x67\xfd\x48\xa9\x46\x3f\x52\x45\xbc\xfb\xca\x19\xd9\x37\x27\x36\x2c\xc8\x24\xa3\x03\x79\x19\x0f\xc8\x09\xba\xbc\x2c\xa3\x8b\xcc\x12\xca\x02\x28\x81\x07\x8d\x5c\x6e\x84\xeb\x34\x83\x92\x17\x75\x54\xdc\x1d\x85\x8a\xbb\xd3\xa8\x3e\xce\xcd\x75\xc3\x34\x59\xb1\x99\xef\x70\x23\xf0\xc5\x2e\xe2\xe3\xb6\xce\x78\x66\xc3\x74\x3c\xb6\xc9\x80\xe9\xbf\xd8\xe5\x4d\xb5\xfb\xfb\x8a\x9a\x93\x2c\xd2\x7e\x94\x0e\x33\x33\x19\xad\x71\x30\xe5\xba\xad\xde\xde\x9f\x76\xfd\x89\x15\x13\x0a\x1d\x19\xdc\xa1\x2e\xc8\xdf\x52\x1a\xcb\x39\x15\xbd\x12\xb3\x12\x19\xfa\x6b\x44\xd9\x67\x02\x1f\x71\x9f\x71\x25\xb0\x7e\x99\x8f\xd4\x2c\xe1\x6d\x4d\x77\x79\xbb\x91\x55\x1c\x58\xa0\x5a\x46\xbf\xcc\x06\xd6\x41\x0d\x81\x13\x42\xbb\x89\x8f\xdb\x08\x79\xff\x3f\x28\xa6\x6f\x4d\xfc\x5f\x39\xd4\x1d\x11\xa0\xb3\xfa\x80\x60\x82\xfd\xcf\x5d\x56\xab\x28\x5f\x1b\xf7\xd3\x18\x8c\x20\xa8\xd1\xbd\xcb\xb1\x23\x9f\x35\x48\x7d\x88\x43\x05\x55\x08\xae\xa5\x06\x7e\xba\xed\x8a\xe3\x27\x59\x89\xb2\x61\x94\x44\x66\xc6\x0f\xfe\x6d\xd0\x2d\xcb\x96\x51\xa5\x8b\x66\xb1\xe3\x95\xc5\xfd\xdd\xdc\xc6\xdc\x91\x42\x65\xf7\xb4\x42\x79\xc2\xb0\x49\x13\xc0\xe3\x4c\x56\x47\x51\xe6\x98\xc4\x38\xdb\x51\x30\xf3\xf3\xee\xf2\x26\x59\x14\x42\x82\xb5\xda\xec\x4a\x57\xf2\xb0\x93\x13\xf2\x82\x0d\x79\xd9\xcf\x8b\xa8\x28\xab\x15\x4e\xf9\x3c\xba\x4a\x9f\x51\xdd\x88\x8f\x15\x0b\xdd\x1d\xa5\xc0\x78\xc7\xfd\xe2\x92\x29\x0a\xbf\x08\x5c\xb9\xb6\xda\xb2\x52\xae\xfd\x5b\x4d\x37\x36\x88\xf2\x30\xb3\xd4\x9e\x63\xf4\x31\x2e\xef\x2a\xdd\x15\x1f\x37\x4a\xfb\x87\x16\x0f\x75\x87\xb6\x98\xf5\x8c\xa4\x17\xe0\x72\x01\x85\xbc\x4a\x31\x86\x23\xcf\xf4\x74\xe9\x3e\x01\xb0\x6f\x86\x91\xcb\xa6\x1d\x50\xef\xe0\x41\xb6\x22\x5c\x4c\x87\xfd\xfd\x63\x35\x2c\x56\x65\x6e\x4b\x69\x1c\xa5\x79\x47\x71\x0b\xc2\xaf\x4b\x5f\x5c\x67\x01\xcb\x36\xd9\xeb\xa6\xf6\xbf\x72\x09\x7a\x86\xf8\x3d\x30\x33\x21\x48\xd8\xd9\xd3\xc0\x2c\xba\x77\xe0\x11\x7e\x06\x47\xc0\x39\x3e\xe2\x18\x74\x66\x19\x60\x8e\x65\x8c\x1e\x28\x5c\xe6\xae\x75\x15\x06\x3c\xa4\x66\x1c\xac\x2b\xc4\x02\x36\xaf\x52\x99\x06\x8d\xe0\x3f\xa7\xac\x44\x58\x0f\xa9\x65\x81\x67\x7e\x07\xcf\x13\xff\xb2\x11\x7c\x49\xf1\x64\x9a\x31\x86\x34\x35\x45\x0c\x23\x4a\xa7\x2a\xd9\xba\xad\xa6\x4d\xdf\x28\x4d\x56\xd8\x0c\xe2\x32\xe8\x72\xee\xea\xf9\x22\x38\x8b\x86\xba\xcb\xf0\x92\xb0\xbf\xef\x0c\x53\x9e\x2e\x15\xbb\x54\x37\x0c\x6b\x59\x78\x5e\xe8\xf3\x48\x75\x2e\x29\xca\x94\xbb\x53\x3f\x4d\xfa\x37\x15\xef\xe0\x3d\x82\xf9\x60\xd7\x7e\x50\x2b\x37\xb5\xa9\x97\x17\x65\x96\xf0\x46\x12\x85\x44\x85\x5a\xfb\x76\x23\x3a\x5b\xdc\xdf\x9d\x98\xcc\x26\x05\x8f\x9a\x0a\x49\x91\x9a\x34\xb8\xa0\x68\x4c\x7f\xaa\x2a\x81\xa3\x28\x19\xd8\x71\x54\x8c\x6a\x95\x49\x8f\xa0\xbd\xd2\x88\xd6\x8e\xbc\xd4\x8d\x86\x49\x54\x80\xe5\x0e\xd1\xf7\x29\xfa\x76\x3e\x56\x6c\xa0\x83\xcc\xac\x3a\x35\x1b\xf8\x4e\x30\xa4\xf1\xb1\xc3\xa8\x25\x76\x98\x16\x91\x12\xf1\x17\x32\x2d\xc5\xba\x7d\xa5\xad\x81\xc0\x4c\x27\x98\x5a\x75\x64\x9e\x8e\x49\xec\xa1\x6a\xc0\x6d\xef\xb9\x64\x3f\x5d\xeb\x5b\x93\xcc\xb8\x88\xf7\x3f\x79\x86\xa2\x4d\x4a\x12\xfe\xf6\xde\xf5\x5a\x54\xa2\x07\x11\x20\x3f\x42\x8b\x11\x51\x01\x62\x09\x35\x8e\xff\xa2\x2b\x69\xd7\x18\xde\x4b\xe4\x48\x28\x95\x80\x57\x00\x3b\x0c\xca\xda\xc2\x3f\xe3\x87\xa1\x0a\x9b\x65\x69\x16\xe5\xe3\xce\x56\x31\x46\x3e\xae\x6d\x7a\xfb\x16\xd2\x62\xd8\xf2\xdd\x3d\xff\x36\x38\x13\x84\x99\xea\xb8\x71\x4b\x33\x99\xc4\xa6\xf4\x54\xd9\xf8\xe0\x71\xa5\x2d\x76\x5c\x47\x46\xa4\xd4\x84\x1e\x9d\x50\x7c\xd3\x8b\x41\x50\xc9\x7c\x40\x7c\x42\x4b\x81\xff\x4a\xd1\xca\x4f\xa2\x70\xd9\xa2\xab\x24\x45\x95\xb7\xd9\x31\x0a\x57\xf5\xd6\x95\xf6\xdc\x73\xdd\x91\x8d\x9d\x64\x83\xcc\x6f\x93\xb1\x91\xc1\x6e\x6f\x27\x72\x1b\xbd\x85\x35\x29\x11\x6d\x75\x33\x7c\xac\x0a\x09\x89\x79\x8b\xb0\x19\xe8\x1e\x23\xf9\xbe\x05\xd3\xc6\x27\x5f\xc0\x08\x99\xdb\x2a\x98\xef\x78\x8c\xde\x67\x08\x03\x05\xc3\xf2\x8c\xa2\x19\x18\x94\x21\xd5\xa8\xea\xa2\x0f\x5a\xff\x48\xcb\x69\x2b\xfd\xa1\x93\x5a\xb7\xaf\x8c\xe3\x28\x1f\xcd\xfa\x80\xeb\x0e\x2d\x6d\x51\x43\x53\x05\x8b\x2b\x81\x2f\x52\xdc\x51\xd4\x77\xb9\x29\xa2\x7c\xc9\x84\x45\x9a\xad\x21\xdb\x43\x1c\xdd\xc1\xc8\x04\x9f\x38\x32\xbe\x49\x66\xc3\x28\x8f\x98\x18\x0b\x35\x87\x8f\x70\xd9\x22\x70\xe5\xd3\x97\x8d\x46\xb0\x4b\x3a\xe3\xd1\x70\x84\xc5\xce\x01\x3f\xdd\x9c\xa3\x2c\x5f\xdc\xef\x74\xf6\x5b\x6b\xe6\xa3\xb4\xb0\xc0\xe9\xf0\x54\x91\x9a\x2b\x38\xaf\xb0\x63\x85\xcd\xc6\xe0\xcc\x9e\xf1\xb8\xf1\x07\xf0\x21\xc0\x44\x7d\x53\x69\x1d\xdc\x53\x79\x62\x9e\x96\xc9\xa0\xa3\xf8\xf3\x8f\xd5\x60\x12\x4a\xe0\x31\x8b\x96\xb8\x30\x8f\x5a\xf5\x29\x55\xb7\x3e\xd5\x16\xb6\x57\x61\x0d\xf1\x12\x16\x0a\xfd\x76\x5f\xe1\xb4\xee\x7b\x46\x9a\x2c\x5d\x15\xce\x59\x19\xb7\xf6\xfa\xe3\xb7\xa7\xdd\x86\x89\x3f\xdc\xcd\xd3\xc9\x28\xca\x8b\x28\xf4\x1c\xd5\x1a\x0c\x25\x00\x36\x6f\x44\x26\x26\x33\xf1\xda\x5b\x9c\x0d\x60\x81\x61\xb4\x87\x8f\x03\x55\x58\x4e\xcb\xa4\xc8\x22\x9b\xef\x50\x06\x63\x37\x0d\x52\xc2\x33\xd2\x5c\xf5\x8b\x32\xe8\x1c\xf8\x32\xf0\x9d\x40\xa1\xf5\xaf\xab\x09\xd2\x47\x5e\x81\x24\x8d\xf2\xd4\x23\x2e\x11\x74\xfc\x15\x3d\x4e\x3e\x56\xbe\x9b\x88\xb1\x53\x0e\xce\xe0\xbb\xd7\xb1\x3f\xf9\x44\x15\xf7\x7e\xf5\x1f\xfe\xc3\x4e\x5d\x75\x73\xce\x25\x6c\x4a\x81\x38\x33\x51\xd2\x4f\x57\xa9\x4c\x8b\x8b\xe6\x08\x80\x4f\x7a\xcf\xba\xa9\xa9\xcc\xd2\xce\x8d\x6d\x9e\xab\x3e\xdf\x27\x8a\xac\xf9\x13\xc5\x55\xd3\xb7\x43\x93\x6c\xf7\x61\xf4\x86\x66\x83\x03\xc8\x18\x31\xf5\x57\xd7\x15\x54\x79\x5f\x4f\xab\x85\xb7\xe4\x38\x63\x93\xbf\x51\xda\xcc\x0c\x84\x1d\x11\x65\x25\x26\x05\xe7\x13\x45\x2f\x9d\x59\x13\x02\x47\x79\x60\xc1\xf7\x60\xb7\xc0\x85\x54\x29\xd7\xd5\x75\x1b\x81\xee\xf3\xdd\xc4\x8c\x25\x4c\x95\x29\x6c\xef\xef\x18\xfc\x29\xec\xaf\x0d\xc2\xae\x43\x5d\x7a\x70\x64\x69\x18\xd4\x8c\x27\x22\x08\x67\x5f\x5c\x31\x51\xd6\x2f\x19\x85\x85\xbc\x4b\x34\x93\x64\x4a\xce\x27\x00\x60\x1b\x17\x99\xda\xea\x1d\xc3\xec\x35\x65\x66\x0f\x1e\xec\x86\x69\x3a\xb1\x99\x29\xea\xfd\xba\x2b\x35\x91\x9b\x16\x75\x87\x71\xda\x8f\x62\x3b\xe3\x77\x12\x78\xa3\x01\x3d\xdb\xa4\xf8\x0d\x6d\xf9\x26\xb3\xf3\xcb\xfb\xd9\x72\x5a\x66\xa7\x90\x8a\x98\x7f\x05\x57\x40\xac\x5b\xff\x49\x33\xab\x07\x51\x70\xf3\x52\xcd\xee\x68\x9a\x14\xa5\xab\x13\xe8\xc1\xb5\x95\xc8\xae\xee\xd2\xad\xe1\x9e\x1e\x43\x00\xf9\x2d\x53\x49\xd7\x62\x3a\x7a\x89\x5a\x4f\x54\xf8\xa6\xc9\x1e\x09\xc0\x4d\x8d\xbd\x9f\x98\x7a\xfa\xc4\x71\x3a\xb0\x8c\x76\x50\x8b\xe1\x34\xca\x34\xd2\x98\xf0\x6b\x33\x4c\x13\xc2\xe7\x74\x54\x9d\x59\xb5\x87\xea\x33\x1d\xc9\xf2\x0c\x2d\x17\xd1\x68\xf3\x13\x47\x9f\x20\x6a\x46\x9d\xe5\xa7\xca\x5c\x0c\xd6\x12\x33\x66\xc8\xd8\xbc\x4b\xce\x7c\x63\xe0\x42\x03\x0d\x76\x60\xa1\x6b\x5e\xa0\xcb\x11\xa5\x24\x2d\x9b\xa4\xac\x4b\x56\x32\x1d\x0a\x32\x0f\xe4\x6b\x92\x61\x57\x9f\x47\xe4\xf2\x69\x2b\x7b\x7b\x3f\x2f\x32\x13\xc2\x13\xb0\xf8\xa5\x6a\xdd\x7c\xac\x69\x68\xa2\x6c\x9c\x3f\x55\xbd\x2b\x97\xdc\x39\xd1\xbc\x3d\xb0\x1b\xb8\x36\x60\x33\x91\x2f\xa1\x3e\x0a\x8f\xff\x53\x74\x29\x6b\x6d\x09\x47\xd5\xe8\x45\xd7\x3f\xa3\xc7\xc9\x7c\xa9\x94\x40\xa2\x6f\x73\x93\x72\x32\x7c\xd5\x19\xad\x62\x2b\x53\x2d\x4e\x80\xd9\x4b\xb3\x7f\xa6\x01\x19\xcd\x71\xc3\x83\x07\xbb\xac\x6d\xdc\xf1\x20\x60\xc6\xa9\xf0\x89\xa3\x83\x30\x71\xbc\x36\xe3\xa3\xaa\x13\x4a\x76\xf3\x57\xc8\x50\xd2\x16\xdc\xd6\x6d\x50\xb7\x1f\x79\xa9\x9b\xaf\x46\x45\x38\x52\x8c\x30\x08\x3f\x05\x34\x22\x01\x7f\x61\xe2\xe5\x2d\xcc\x83\x6f\x07\x3a\x12\x6d\x21\x19\x9e\xef\x46\x49\x98\x61\x82\xd6\x03\x67\x99\xff\x81\x4f\x14\x3f\x45\x48\x03\xb0\x8a\x9d\xfd\x9e\xa6\x68\xbd\xf7\x85\x33\xca\x7d\x6b\x59\x26\x0a\x8e\x82\x39\xcc\xf9\x44\x05\xd0\x85\x35\xe1\xc8\x66\x35\xfe\x0a\x7a\x54\x52\x0c\x95\xd2\xec\x30\x32\x49\x41\x0c\x0f\x8e\x03\xdb\x93\xf6\x23\x42\x72\x8a\xc5\xaf\x38\x1d\xa3\x0b\x8a\xf8\x6c\x47\x4f\x4d\x20\x32\x07\x02\x6a\xde\xc7\xdd\x5b\x7b\xfd\x85\xf0\x05\x7a\x6b\xae\x1f\xae\xb4\x46\xa6\x8a\x07\xf3\x91\xc2\xba\x67\xd6\xf0\x00\xab\x34\xab\x3b\x4e\x11\xf8\x41\xad\x34\xdd\x42\x24\xd1\x2f\x63\xd6\xeb\x41\xc9\xe4\x5d\xa5\xd5\xf5\xae\xc2\x78\x44\x09\x89\x14\x33\x57\xa3\x14\xca\x15\xad\xf7\xc5\x16\xb0\xd8\xe1\x6e\x1c\x09\x3e\x4a\x84\xf7\x6b\x71\xaf\x0f\x20\x27\x69\xca\x28\x6d\x6e\xca\x05\x3e\x58\xfe\xbc\x96\x96\xe5\x06\x91\x97\x1b\x1c\x5c\xdc\xef\xbc\x91\x4f\x92\xc7\x26\x7b\x33\x62\xa5\x18\x1e\x8c\xd4\xe1\xce\xe7\x4a\xe4\xd9\x26\x83\x34\xcb\x39\x9e\x53\x75\x28\x67\xf7\x5c\x0f\x60\xc9\x0c\xb6\xd0\x1c\x78\xa6\xa9\x06\xe4\x82\x24\x6e\xf2\x32\x8e\x58\x1c\xc4\x51\xe1\x2d\x2c\xc8\x71\x95\xa9\xeb\x81\xaa\xaf\x75\xe7\x8f\xcc\xf8\x52\x39\x62\x39\xee\x77\x91\x83\x96\xe8\xa6\x05\x8d\x96\xd9\xbc\x8c\xeb\x14\x27\x8f\x34\xc5\x89\x5e\x31\x26\x2d\x31\xdb\x83\xb2\x13\xca\x94\x7c\xdc\x56\x07\xc9\xd3\xb1\x1d\x18\x80\x63\xc4\xf3\xfa\xe6\xd1\xa5\xa9\xea\x25\xfc\xe1\xd4\xf3\x99\x95\xb9\xd9\x5e\x19\x41\xe4\x26\xdf\x9a\x2a\x7e\xe1\xe3\xf8\x0c\x0f\xed\x91\xd9\x44\x52\xc1\x7c\x1d\x32\xcd\xd7\x48\x86\x16\x0f\x75\x97\x93\x74\x35\xa1\x6b\x91\xd7\x40\xdf\x25\xb4\x0e\xd5\x7d\x21\x22\xfc\x50\xbd\xe4\x41\x94\x9b\x2c\x33\x6b\x7a\xad\x5f\x52\xca\xdc\x97\x54\xf9\xc6\xe4\x2c\x43\x01\xd6\x6a\xd8\xf6\x3f\x85\xa1\x46\x8d\xe5\x98\x1a\x57\x39\x3a\xf5\x89\x5e\x5a\xa4\xc5\xda\x04\x65\x03\xdc\x35\x38\x5c\xb1\x83\xb9\xda\xc5\xa4\x1b\x6d\x8a\xc1\x93\x88\x46\x63\x34\xb2\x82\xee\x47\x50\x16\xae\x1d\x93\x0d\x4d\x12\xe5\x63\x66\xd1\xc1\x15\xb2\x94\x0c\x62\x7f\xac\x4d\xe6\x3a\x6c\xb4\x35\xc4\x4e\x8e\x4c\x9e\x9b\xa4\xe3\x85\x41\x79\x7a\x58\xa0\x55\xde\x6b\x4f\xcc\xda\xe3\x4e\x80\xe1\xef\xed\xed\xf9\x22\xeb\xe3\x18\x78\x63\x49\xf8\xa9\xf7\x86\xa7\xe0\xf5\x1c\x89\x93\xd3\x01\xdb\x8e\xd6\x20\x02\x3f\x8c\x04\x3b\x31\xa7\xea\x0e\x5c\xed\xdd\xb7\x5f\xb7\xb9\x6c\xda\x24\x18\xfe\xca\x54\x6d\xe6\x7e\xa0\x8c\x80\x36\x93\x67\x5d\x6a\x38\xa6\x47\x46\x0f\x56\x98\x68\xd5\x9c\xf4\x27\xc1\xb3\x7a\xa5\xc8\x24\xe4\x6c\x8d\xbe\x80\x6e\x53\x58\x0a\xfc\x40\x14\xe6\x6c\xf8\xb8\x4d\xe8\x6a\xb4\xd6\xcf\x58\xe6\x50\x28\xff\x7d\xde\xf3\x98\x93\x06\x28\x46\x51\xb2\x9c\x6f\xa7\x9f\x24\x84\xf1\xd5\xaf\x12\x65\x03\x9c\xf6\x43\xfc\x3c\xd0\xd7\x18\x1a\xa9\xe9\x44\x09\x7c\xde\x0d\x47\xbe\xf2\xb7\x68\xbb\x11\xec\xe6\x0f\x9e\x26\x4a\x13\xb4\xfe\xf6\xac\x7b\x0d\xc1\xff\xfc\x99\x75\x6a\x44\xba\x22\xb0\x73\xf9\x9b\x98\x88\x84\x27\x7f\xba\xa7\x6a\xd1\xf7\x49\xd0\x98\xc2\x87\x6f\x42\x8b\x14\x41\xce\x57\xd6\x95\x13\xbf\x45\x03\x8e\x98\xe6\x79\x1c\xcc\xc8\x32\x22\x44\x6f\x55\xe8\x00\xe9\x6e\xf1\xe2\xae\x61\x83\x89\x2e\x84\x2f\xc5\xef\xee\xcd\x1c\xfe\x47\xdf\xf0\xb5\xc7\xdf\xfa\x0d\x3e\x66\x22\x02\x5a\x46\x27\x9e\xa3\xd9\x15\x14\x25\x7f\x41\x6b\x4a\x3a\x58\x0a\x1c\xb0\x6f\x5d\x03\x68\x3a\x3d\xda\xdf\x58\xa0\x33\x6a\xbe\x92\x47\x51\x65\xf7\x78\x22\xc8\xd9\xf5\xce\x6f\xca\x52\xff\x99\x1a\x8a\x79\x76\x9d\x8a\xee\x78\xc0\x8f\x88\x6a\x41\xea\xb6\xde\x04\x4d\xcc\x72\x94\x17\x26\xf9\xe2\xe9\x9d\xad\x49\xeb\xc1\x83\xdd\x7e\x99\x47\x89\xcd\xf3\x38\x5a\x46\x1a\xa5\x39\xf4\x91\x79\x80\x2c\x5c\xe8\x04\x5d\x39\xd6\x66\x2b\x51\x68\x77\xd3\xb3\x77\x0c\xc7\xd5\xb3\xf7\xa4\xaf\x3e\x98\xa9\xe1\xd6\xaa\x55\xa0\x81\x27\x74\xf8\x5f\x75\x31\x35\xed\xb4\xf1\x1c\x19\xc7\x13\xe8\x54\xc8\x3f\xb4\x0c\xef\x17\x51\xb2\x36\xe3\xc1\x4a\x77\xf1\x73\xa2\xd1\xe7\x8b\xfb\xdb\x7a\x4f\xb9\x92\x01\x84\xca\x61\xdf\x34\x4a\x0e\x55\x2b\x60\x44\x50\x79\x6f\x62\x1f\xe6\xe6\xba\xfd\xcc\xbc\x65\x93\x8e\x9a\x55\xfa\x90\xee\x8b\x8f\x03\x95\x28\xc4\x69\x3a\x98\xad\x23\xd1\xaa\xb4\x41\xf7\xe5\xa4\xf8\xe1\x07\x56\xcf\xfb\x30\xd8\xda\xb1\x1b\xd8\xd3\x3d\x65\x3c\xe7\x33\x8a\x99\xec\x4c\x0b\x4b\xa4\x1f\x88\x1c\xd4\x28\x08\xe9\x99\x0a\x07\xa1\xea\x84\x96\xe3\x71\x54\x28\xdd\x8b\x8f\x03\xaf\x18\x75\x1c\x36\x4d\xb5\x99\x5e\x94\xbf\x52\xfc\x0a\x37\x5b\xf8\xa8\x16\xbb\xf9\x88\x66\x7f\x1c\xae\x16\x75\x39\x3e\x6e\x13\x6e\xcc\x6d\x98\x26\x83\x1d\x5e\x57\x92\xc5\x34\x65\x44\x58\x11\x54\x33\x2e\x96\x25\x4b\x68\xc9\x63\xb5\x60\x70\x12\x1d\x9f\x9d\xeb\xbe\x3f\x97\xd8\x68\x38\xea\xa7\x65\x56\xe3\xf2\x3a\xaf\xb9\xbc\xce\x4f\xff\xce\x17\x38\xb5\xca\xd5\x4f\x26\x69\x94\x14\x2e\x79\x60\x7e\x4d\x44\x80\x42\xb6\xd9\x64\x73\x71\x72\x50\x4a\x30\x80\xdf\x84\x74\x4b\x54\x5e\x5d\x98\xb5\xdd\x35\xb2\x9d\x1a\x47\xce\x17\x31\xef\xd0\x57\x3b\xa4\x9c\xa6\xde\xd1\x94\x3c\xae\xa7\x0f\x71\x4a\xcf\xaf\x23\xc9\x2d\x29\x72\x6a\x3e\x66\x26\x48\xe3\x93\xb6\x68\x74\x62\x8a\xc2\x66\xf0\x81\x78\xaf\xc8\xeb\xf8\xb8\x16\x64\x87\xa1\xe9\xf8\x35\xc6\xf8\x01\x3e\x51\xf8\xb1\x30\x36\xe3\xf1\x9a\xe6\x22\x3f\x85\x45\x20\xef\xbd\x59\x09\x9b\x44\x26\x81\x2a\xb8\xa0\x0a\x14\xc2\xc0\xdd\x20\xe9\xb1\x98\x58\xe0\xa8\xd8\xb5\xdf\xd3\x74\x74\xdf\xd3\x69\x22\xea\xbe\xb5\x9d\xea\xaa\x6b\x57\x1a\x95\xa5\xd7\x5e\xab\x7c\xe4\xd8\x54\x9b\x8e\xfa\x00\x28\x47\xb1\x12\x8f\xd0\xcf\xd4\x20\x77\x2e\xa8\xf9\x5c\xb5\x93\xf2\x32\xcb\x6c\x32\x90\xf4\x51\x82\x7a\x7a\x00\x12\xed\x6f\xc5\x25\x54\x59\x41\x86\x67\x2b\x71\xa0\x82\x5e\x5d\x70\x14\xf2\xd1\xc0\x8c\x52\x4a\x05\x45\xe1\xb9\xe3\x28\x47\x39\xe5\xc7\x46\xbb\x1d\x3c\xee\x2c\xfe\x9b\x3b\x5d\x01\xf9\xd6\xdf\x80\xb9\xc6\x9e\x83\xf6\xbb\x0c\x2e\xd3\xd5\x4a\x09\x8e\xbe\x8a\x7b\xd1\x53\x3f\xa0\x76\x49\x31\x9f\x7f\x56\x6b\xbb\x45\x26\xf9\x52\xf5\x77\x5a\x5a\x09\x11\xdb\x76\x30\xe9\x60\x3b\x9f\xc3\x84\x9b\xaa\x63\xcd\x3b\x6d\x11\x45\x71\xf4\x03\xf8\x24\x99\x18\xed\x38\xa2\xd4\xbb\x5c\xba\x03\x98\x9e\x44\xaa\x30\xba\x28\x24\x94\x1d\x84\x15\x0e\xa0\x5f\x45\x3b\x2a\x04\x3c\xec\xb0\x1e\x9e\xc9\xd8\x14\x54\x3d\xc2\x20\x96\xb2\x55\xb0\x2b\x62\xb8\xfc\xd0\x8e\x89\xab\xfc\x95\xdc\x2e\xf7\xfa\x7a\x1e\x1a\xc6\x50\x66\x18\xb2\xfb\x9a\xa8\x72\x64\xa3\xec\x59\x2d\x7f\x5c\x45\x23\x8e\x76\xfc\xeb\xaf\x78\x3d\xbc\xea\x9a\x99\xdd\x84\xde\x10\x7e\x65\x76\xbd\x32\x18\x88\x32\xbe\x8b\xe5\xc4\x02\xf2\x53\xf5\x18\xef\x6b\x22\xea\xbb\xe8\x16\xa2\x2e\xb2\x0d\xaf\x5e\xf1\x97\x08\x6c\xf3\x21\x02\x1b\xca\x26\x36\xbf\xdc\xab\xcc\x0f\x03\xd2\x68\xc3\x00\x9b\xf4\xf4\xba\x82\xd6\xed\xee\xf9\x86\x34\xac\x75\xad\xf4\x0e\x8f\xd2\xa1\xf0\x12\xaf\xe5\xa7\x2d\x75\x80\x43\xdd\xe5\x91\x49\xd0\xa5\x74\x9a\x0c\x0e\xe3\xd9\x2c\x1c\x13\x87\xff\xd8\x24\x03\x12\x7c\x00\x7c\x12\xc5\x5b\x3e\x0e\x3c\x2c\xea\x75\x5b\x14\xd2\x07\xf1\x5d\x92\xe3\x2a\x3f\x3d\xae\x54\x80\x4d\xfe\x84\x23\x07\xfc\xe5\xbf\x4b\x0f\x40\xf0\x06\xf4\x9c\x05\x4d\x5d\xbd\x0c\x5a\x79\x27\x7e\xb9\xe7\x51\x73\x4f\xaf\x2b\xb2\x84\x1d\xeb\x2a\x8e\x7b\xa4\x0a\x3d\x1b\xb4\x8d\x44\x21\x84\x46\x14\x31\x73\xeb\x40\xa9\x8a\xfb\xf5\x92\xd6\xc7\x47\x33\x9c\x6e\x1a\xd9\x2c\x68\xf3\xf8\xb8\xa1\x81\x35\x37\xd7\xcd\x0d\x6a\xe3\x58\xbb\xa7\x03\x45\x6f\xd4\x06\x0e\x3e\xc4\x59\x06\x56\xbf\xc8\x88\x57\xbf\x21\xfa\xe2\x4a\xf8\x3b\x4e\x57\xe3\xb5\x1d\xb4\xc9\x04\x8f\xe9\x6f\xf2\xb4\x1a\xb0\x46\x0d\x46\x73\x27\xf3\xdf\x20\xa2\xe7\x0f\xb7\x4c\xda\x77\x97\x88\xb5\xa0\xa3\xe4\x2b\x58\x9d\x9e\x4f\xda\x78\x46\xa4\x52\xde\xf1\x73\x23\x28\x60\xf0\xb1\x8a\xb8\x57\x4c\x02\x15\x34\x98\x12\xb4\x3a\x1e\x20\x0a\xe0\x13\x75\xc3\x63\x53\x8c\x6c\x36\xeb\xf1\x25\x50\x84\xe1\xe3\xa9\x1e\xa6\x85\x6d\xfb\xa2\xbe\xc7\xcb\xfb\xbb\x79\x61\x33\x9b\x2a\x56\xb8\xab\x8a\xc3\xe1\x6a\x23\xd0\x3f\xb0\xd0\xed\x9b\x70\x79\x62\x07\xc6\x8f\x77\xa3\x84\xf8\x3b\x81\x47\xe6\xfc\x4e\x23\x91\x3f\xb4\x58\xbd\xd2\xcc\x1a\x07\xda\x3a\xe4\xfd\x4a\xf5\x20\xc5\xaf\xb4\x05\x70\x51\xbc\xc2\x69\x34\xb6\xee\x19\x45\xff\x70\x37\xd0\x02\x4b\x5b\x67\xf0\xa8\xab\x4c\x42\x1e\xc3\xcc\x0c\x4a\x79\x1b\xc2\xca\xdd\x71\x62\x95\x1b\x5a\x49\x9e\x43\x57\x1d\xe4\x56\x06\x50\x16\x11\xad\x02\x06\x71\x2b\x84\x09\x37\x56\xe0\x50\xef\xa9\xc0\x3d\x31\xcb\x16\x43\x7a\x70\x91\xd7\xea\x51\xf7\x9c\xcc\x2a\x1f\x6d\x53\x44\x89\x06\x31\xae\x19\x2b\x0d\x05\x1d\x3e\x6e\x13\xff\x21\xbe\x56\x59\xaa\x8c\xd9\x57\x36\xf3\x3b\x0d\xab\xf7\xf2\xfe\x79\x52\xfb\x23\x1f\x8e\xe8\x11\x38\x26\xd8\xfb\x99\x9e\x67\xd0\xad\x15\x23\xc7\x36\x1b\xf2\x12\x70\xe2\x7f\x80\xe1\x0b\x0b\xa8\x03\x07\x96\x59\x5e\x8a\xd9\x53\x35\x93\x17\xdd\xbc\xc3\x56\xa4\x1e\x49\x25\x0d\xa2\xc2\x66\x99\x49\xac\x49\xd4\x16\xba\x31\x55\x60\x9f\x1b\xaa\x13\x44\xe0\xd7\x2c\xe4\x9e\x0d\x2e\xfe\x28\xfb\x66\x84\x0d\xb7\xe0\x88\x24\x01\xf5\x0d\xe2\x7c\xc2\x23\x14\x8b\xfb\x79\xfc\x07\x42\x0a\x7c\xdc\xc6\xd1\x23\x88\x2b\x7c\xbf\x93\x92\xd4\x35\x57\xba\x0e\x7c\xc5\x3d\x87\x2b\x98\x8c\x32\x93\x5b\x25\xcf\xfb\x76\xe0\x43\xe3\xb7\x6b\xa1\xed\xb0\x5c\xdb\xae\x48\x61\xe1\x89\x50\x2e\xfa\x05\xd8\x91\xa4\xd1\x58\x59\xaf\xcd\xab\x4a\x7c\xf2\x58\xdb\x36\x0a\xe3\xd4\x8d\x5b\x68\xa6\x4a\x3e\x56\x35\xe9\x62\x14\xd9\x2c\x5b\x9b\x51\xc9\xd0\xdd\xc0\xe7\xee\x17\xa8\x1d\x2a\x5c\x0a\x7b\xb5\xbe\x86\xc9\xa2\x94\x64\x11\x84\x05\xdd\x17\x86\xae\x28\x68\x82\x29\x8a\x34\x4b\xec\x5a\xbe\xc3\x77\x7b\xee\x4f\xd5\x74\xc7\xfb\xb5\x7e\x22\xbc\x05\x73\x42\xea\x38\xe3\x62\xa0\xb0\x65\x17\xd5\xa5\x8c\xcc\x64\x62\x93\x9c\x2e\xc5\x49\x0b\x38\x40\x50\xb3\xf1\xbd\xb0\x50\xfd\x17\xef\x45\xa6\xf1\xe9\x72\xf8\xa4\xf1\x3c\x17\x16\xba\x45\x99\x24\x96\xf5\x3f\x85\xb7\xd6\x77\x39\x2f\xf8\xd9\x58\x66\x91\xca\x35\x7f\xec\x65\xcd\x1f\x7b\xb9\x85\x74\xb1\x4a\x9d\xe4\x23\x78\x0c\xef\x4e\xd5\x20\xd8\xbb\x6a\xe5\x0f\xd3\x78\xd0\xb7\x19\xb0\x02\x22\xcf\xac\x38\xd5\xce\xd6\x64\x84\xec\xa0\xa0\x9a\xb4\x06\x32\x4b\xf7\xaf\xb3\xb0\xb0\xf9\xce\x17\x36\xab\x6c\x9e\x9b\xac\xa3\x1a\x54\x90\x1e\x91\x46\x91\xd4\x19\xc6\x51\x3c\xb0\xab\x6b\xaa\x6d\x86\xa6\x1e\x1f\xb7\x48\x2e\xbc\xda\x5d\x15\xa2\x79\xc7\xc3\xe6\xe8\x1c\x4e\x34\x94\x1d\x16\x16\xba\xe3\x32\x8f\xc2\xc8\x48\x78\x0c\xbb\xca\xa9\x3c\x9f\xd4\xf8\x66\x4d\x1f\x0a\x6a\x2e\x3f\xf7\x22\x4b\xe7\x1d\xc6\xaf\x4c\x68\xea\xdf\xf9\x35\x84\x1a\x40\xf0\xf0\xb1\xbb\xc9\xd0\xe4\xd5\x26\x01\xd6\x01\x68\x5b\xf8\x02\x3e\x76\xa3\x85\x45\x99\x8d\xd3\x88\x91\xd7\xe8\xd3\x3c\x54\x73\xd9\xd0\x44\x12\x26\xcd\x56\x52\x94\x34\x09\x6d\x26\x8c\x0c\x28\x7a\x1e\xd3\x7d\xda\x63\x2e\x17\x1b\x99\x64\xb0\x36\xe3\x0a\x4e\x7f\xeb\xd9\x9e\xf7\x99\xfb\xd6\x15\xa8\xe3\x4c\x1b\x67\x4f\x66\x07\x65\x68\x07\x94\x68\xa2\xfe\xbd\xa7\xa7\xa8\xca\x36\x95\xde\xe6\x9f\x4e\xd5\xa0\xfd\xad\x86\x4b\x59\xdc\x4f\x0c\x90\x05\x01\x52\x40\x42\xf1\x73\xfa\x34\x1f\x2b\x6e\x84\x77\x68\xfd\xf1\x71\x3d\xb3\xb7\xf9\x57\xc8\xed\x02\xa5\x73\x42\x29\x34\xee\xa4\x12\xaa\x68\x47\xd1\x82\x14\x4c\x3b\x19\x4c\x91\x1d\x55\x79\xc7\x06\x5a\x80\x9c\x5d\x10\x7d\xab\x6b\x42\x2e\x4a\xf3\xf9\x2a\xe2\x40\xe1\x14\x57\x8b\xe4\xba\x36\x41\x3b\xa0\x31\xe1\x48\x5e\x16\x0f\x39\x18\x7d\xbd\x48\x7d\x60\xc1\x29\x6e\xc3\x4f\xf0\x00\x49\xa0\xd0\x40\x1b\x53\x25\x19\x74\x7d\xea\x91\x0b\xbb\x28\x57\x91\x91\x93\xea\xe9\xf1\x4c\xa1\xf3\x25\x6f\x94\xb6\x94\x91\x2c\xe4\x90\x3f\x54\x12\x36\x3f\x54\x40\x25\x42\xbd\x6d\xf7\xf1\x37\xa3\x3b\xb4\x92\x02\x2e\x1a\x99\x13\xba\xbd\x1d\xca\xee\xa4\x1d\xea\x5b\xd1\xa6\x2c\xca\x71\x92\x2b\x75\x71\xd8\x56\x3e\x6e\x6b\x85\x7d\xad\x5b\xbe\xb0\xfc\x82\xb2\x4f\x57\xb4\x7d\x6a\x72\xce\xbe\xbc\xff\x50\x37\x96\x60\xcd\x95\x2a\x5d\xa1\xea\x96\x0a\x86\x4d\x9e\xdb\x0c\x38\x0b\x99\xfe\xf4\xf5\xa0\x7f\xa9\x7a\x89\x61\x9a\xc6\xd8\xd7\xc2\x03\xab\x6a\x90\xcd\xa6\xf0\xfc\x91\xee\x1b\xa5\x59\xb6\x4a\x58\x81\x15\x35\x25\x29\xde\xfa\x89\xd7\x5e\xeb\xe6\xe5\x50\x2c\xa4\x0c\xb8\x7b\xd0\xe0\x45\xa5\x98\x51\x98\x89\xcd\x09\x70\x47\xdf\x2f\x6f\xd6\xd7\x8a\x9b\x0a\x00\x95\x99\x5c\xb6\x76\x42\x69\x14\xab\x97\x2b\x18\xfe\x45\x17\x6e\x25\x26\xcb\x4c\x91\x6a\x49\x88\x0f\x02\x9f\x10\x7d\xa0\x1a\x88\x2c\x15\x9d\x61\x14\x95\xb5\xd2\xa7\x9a\xd8\x27\xf0\x83\xad\xff\x4a\x8b\xc0\xdc\xae\x0d\x8e\x3e\xa9\x7a\x07\x79\xf1\xa5\xca\x8d\x5c\x0c\xd4\x7c\x26\xf8\xbd\x1d\x15\x9e\x2f\x0a\xfd\x9c\x37\x86\xa3\x14\x71\xd5\xb0\x0b\x7a\x96\xe3\x0e\xb8\xa3\x81\xcc\xfa\xa7\x53\xaf\x1f\x8f\x84\x1e\x99\xc0\xc7\x74\xad\x68\x04\xbd\x4f\x63\xb3\x4c\xc6\x0f\xa3\xc0\x1f\x26\x97\x85\x9a\xd2\xc5\x16\xfd\x8d\xc3\xdd\xb1\x2d\x0c\x30\xa8\x32\x44\xd1\x71\x14\x60\x97\xd4\x68\xc6\xd0\x26\x16\xfc\x85\xa4\x57\x00\x58\x1e\xe2\x46\x35\x6c\x3c\xef\x35\xbe\xbc\x82\xcb\x09\xc5\x5d\xb3\x31\x7d\xb6\x49\x56\xba\xff\xf0\x0e\xef\x00\xff\x50\x0d\x6e\x70\x91\x17\xd1\xef\x9f\xe0\x11\xe3\xed\xfc\x54\xe5\x44\xef\x06\x2a\x28\xb9\xa2\x12\xf7\x70\x44\x38\xec\x8e\x12\x7d\x00\x08\x43\x2c\xe6\x13\x6e\x0d\x25\xe1\x9a\x2a\xac\xde\xd7\x85\xd5\xfb\xb5\x78\x22\xb6\xf9\x2f\xd1\x75\xc8\xe4\x78\xf5\xe4\xd1\x71\xbe\x49\x57\x8e\x05\xbd\x6f\xdd\xab\x8e\xbc\x4b\x49\x0f\xab\xc6\x52\x03\x0e\x76\xf9\x1c\xaf\x06\xec\xc9\x63\x9a\x7e\xfb\x3c\x96\x03\x7c\x01\x23\x7d\xb9\xdb\xa2\xa4\x66\x77\xa0\xb0\xc7\xc1\x7f\xe0\x1b\x8b\xff\x60\x9b\xe6\x02\xbf\x83\xd1\x13\x26\x28\x59\x57\x48\x91\x63\x58\x2b\xac\xc0\x4e\xc8\x28\x3c\xc5\x1b\x4a\x9f\x6f\x57\xad\x83\xa7\xa8\xf4\xae\x62\x99\xca\xa0\x87\x6a\x8a\xc2\xfb\x30\xa3\x57\x23\x98\x9c\x9b\xa3\x59\x6a\x4e\x12\x61\x2d\x6e\xd6\xeb\x0b\xf4\x84\x45\xde\x56\x8d\x7e\x9b\x09\xf3\xea\x38\x72\x36\x37\x71\xf7\xc7\xca\x4a\xf6\x33\xb3\x6c\x73\x4a\xf1\x10\xae\xdd\x0d\x6a\x0c\x16\x1d\xc7\x63\x7a\xb6\x6d\x24\x25\x1f\x5b\x1e\x9e\x83\x3b\x60\x6e\x39\x6c\xa3\x8f\xa6\x0a\xe5\x52\x5b\x1a\x23\x33\x78\xd6\x33\xe4\x6c\x04\x7a\xaf\x33\xb1\x18\x16\xef\xa6\x82\x25\x3f\xa2\x05\x81\x84\x08\xf2\x2d\x70\x47\xff\x1c\x0f\x17\x5e\xf3\x8a\x9e\x04\xbd\x83\x21\x55\x04\xb4\x77\x90\x1f\x60\xd5\x70\x0b\x19\x8b\x63\x7b\xaf\x5a\x75\xc8\x64\xbf\xaf\x9c\xc4\xae\x9e\x62\x49\xbf\x5a\xe3\x4e\xd3\xd3\x50\xb7\x34\x6a\xe1\x2a\xd6\x16\x9e\xc6\x76\xea\x9b\xe0\x17\x99\xa8\x15\xf7\x78\x5a\x0d\x1e\x44\x49\x61\x89\x06\x02\x21\x23\x5c\xef\x69\xbc\x57\x3e\x51\xe0\xce\x25\x22\xbb\xa1\x84\x94\x69\xe1\x7b\x9a\x22\x5e\x60\x58\x13\x6b\x96\x67\x6a\x04\x1b\x1d\x47\xd2\xf8\x5d\x7a\xa6\x58\xc9\xd7\x1a\x30\x63\x89\xe9\x57\x6d\x1c\xa6\x63\x74\x17\x60\x6e\xb8\x80\x84\xe2\x36\xa4\x73\xe1\x0b\x98\x8d\x5a\xb8\x0a\xdb\x62\xd5\xd5\x34\x1d\xac\x46\x5c\x0e\x6d\xd3\xbf\xf5\x1e\xb0\xfa\xd3\x70\x54\x86\xcb\x39\x48\x53\xb1\x37\x78\x59\x3a\x51\x53\x05\x9f\xda\xa7\x3c\x39\x30\xa5\x33\x7a\xec\x9d\xee\x16\x9b\x98\x0b\x67\xa2\x59\xea\xb3\xc2\x89\x21\x19\x63\x88\xa4\x0b\xa7\x5f\x6d\x7e\xb0\xa3\x08\xfe\x6a\xb3\x84\x2d\x25\x00\xa6\x08\xa5\x1c\x53\x66\x3c\x3c\x6c\xe3\x8a\xcb\xff\xca\xa4\xcc\x4b\xc0\x1c\x5d\x95\xed\x81\x7a\x2a\x27\x69\x91\x63\x23\xcc\xf4\x9e\x55\xaa\x5a\xdc\xfa\x61\x62\x31\x84\x85\xdf\x52\x71\xf0\xb7\x34\x59\x88\x5d\x35\xd9\x20\x9f\xf1\xa1\xf5\xc5\xa9\xea\x0e\x3e\x54\xea\x91\x57\x74\x64\x58\x54\x21\x85\xc2\xfa\xa2\x8f\xec\xe5\xb3\xc4\x71\x98\x64\x68\x07\xdb\x7d\x18\xc1\xbd\x71\x60\x63\x18\xd9\x84\x32\xcb\x03\x55\x59\xbd\xa4\xb5\x26\xef\x07\x5b\x34\x26\x16\x16\x28\x38\xfc\x0a\x6d\x39\xac\xda\x13\xe8\x35\x38\xa8\x72\xf5\x22\x81\x7b\x90\x3e\x0b\xc3\xb7\x2a\xdb\xdc\x53\xa0\xa2\xef\x4f\x7d\x0f\xea\x5d\xd8\x00\x07\xb4\x72\x85\x52\x8e\x6d\x9c\x4b\xa8\x76\x37\x6a\x37\x00\x42\x0b\xcf\xbb\x9a\x8a\xfa\x60\xaa\x18\x20\xef\xd3\x2a\x83\x3d\xba\x8d\x64\xc1\x69\x60\xce\xcd\x73\x16\xc1\x5c\x38\x32\xa9\x55\xed\x5b\x18\xee\xbb\x41\x2d\x6d\xa9\x16\x2f\x2c\x35\x14\x34\xd9\x07\xba\x75\xd3\x4f\x63\xaa\xce\xd6\xf4\xb3\x00\x37\xe4\x63\x17\xf2\xf5\xd3\x32\x09\x5d\xde\x8a\x5f\xc3\x7d\xf3\xb1\x72\x19\x65\x52\x44\xf1\x13\x74\xeb\xe2\x5a\xab\x6b\xc7\xad\xbf\x33\xf5\x65\xca\xd3\x53\x65\x49\xcf\xab\x65\x37\x4b\x2c\xe2\xe8\x1f\xdf\x0a\x14\x63\x07\x0b\x99\x22\x2d\xfc\x8c\x2a\x46\x60\xa8\xf8\x7d\xad\xe2\xfa\x00\xce\x10\x0f\xee\x3c\xbf\x55\xd4\xde\xdf\x75\xf3\x97\xaf\x9b\x35\x1e\x67\x44\xe6\xfd\xf1\x54\x8f\x51\x6f\xd4\x23\xf1\xad\xc5\xe6\xf9\x23\xdd\xd0\x14\x36\x9b\x44\x71\x6c\x32\xda\x76\x68\x48\xde\x50\x5c\xe8\x1b\x5a\xe5\x6f\xb6\x45\x1d\xf0\xb0\x8c\x19\x21\x1a\x64\x32\x76\x7a\xfe\x42\xcc\x2e\x57\x3b\x28\x59\x86\x5a\x5a\xf1\x1d\xa7\xcc\x52\x67\x0b\x1a\x0e\xf3\x1d\x75\x2d\xca\x39\x51\xc4\x3d\xa5\x58\x48\x58\x96\x0b\xfb\xe9\xb2\x66\x5f\x05\x09\x26\x23\xfc\x1d\x19\xf3\x38\x4a\xd2\x2c\x2a\x10\xb1\x61\x79\x3e\xd2\xc0\xdd\x47\xb5\x62\x48\x52\x44\x80\xcb\xc3\xb1\x7d\x4a\x2f\x8a\x8f\x1b\xc5\x9f\xea\x59\xa2\xb2\x1a\x31\x81\x91\x5b\x04\xae\x8b\xbd\x03\xc1\x15\x7c\xcd\x7b\x6d\xaa\x76\x99\x19\x0e\x65\x21\xc3\x64\xa0\x86\xcf\xc7\xee\x46\x8a\x34\xf3\x08\x13\xd1\xad\xa4\x4f\x09\xd9\x70\x3b\x57\x99\x19\xa7\x25\x32\x52\xae\xee\x6a\x81\x81\xe6\xe8\xe8\xcb\xfb\xe7\xbb\xf6\xcd\x49\x9a\x81\x7b\x12\xc6\x01\x28\x56\x3e\x6e\x1b\x2d\xa9\x75\x65\x7d\x6b\x1a\x25\x79\x3e\x76\xc5\xa4\x30\x4d\x18\x9c\x89\x4d\x89\x4a\xdf\x13\x3d\x0f\x11\x7f\xa2\x01\x69\xaf\x5c\x68\x6e\xed\x32\xaf\x7c\x44\x6a\x00\x66\x22\x70\xbd\x0a\xfb\x85\x6b\xbc\xac\xe3\x3b\x5b\x79\x71\x56\x97\x76\x60\xd5\xc5\xfd\xbc\xaf\x8e\xc3\x56\x61\xd9\x74\x7a\xce\x88\xfd\x32\x70\x71\xac\x70\xa3\x71\x71\x4f\x51\xf2\x2f\xc2\x9e\x0a\xea\xca\xd6\x8d\xf7\xa1\xe6\x8e\x3e\xd3\xa6\x93\x9b\xa7\x32\x00\x2c\x22\x1e\xde\x8e\x5c\x71\x95\x8c\xea\xe2\x07\x6b\x80\x14\xa2\xb1\xc2\xb5\x3c\x61\x50\xf6\x38\xd5\x3d\x3d\xdf\x45\xd8\xc0\xe3\x10\x92\x62\xd5\xc1\x89\x96\x8a\xff\x27\xf6\x69\xd9\xb7\x76\x30\xb4\xcc\x87\xe4\x48\xde\xdc\xac\xdc\xc3\x40\x53\x3f\x55\x1f\x77\x5c\x51\x5e\xd1\xf6\xbc\x2a\x8c\x2c\x99\x28\x2e\x33\x90\xbd\xd6\xc2\x12\xc9\xdd\xb6\xae\xdd\x5f\x23\xba\x92\x91\x2f\xf4\x72\xea\x4b\x1b\x12\xb5\xa6\xa6\x66\x8c\xaf\x09\x16\x29\x60\xb5\x9b\x17\x55\xeb\xed\x7b\x53\xc5\x4c\x70\x46\xe5\xfa\x93\x34\x5e\xb3\x95\x43\xd1\xe3\x80\x6a\x0e\xf5\xc6\x17\xd6\x7d\x63\xbb\x1a\xa1\x4e\xa1\x78\xb0\x44\xf5\xf5\x72\xa0\xb9\x43\x5d\x77\x9b\x11\x7f\x35\xf4\x9f\x8c\x7b\xe7\x65\x96\xa5\x25\x01\x83\x66\xd4\xd0\x34\xc8\x71\x9c\xb4\xaf\x7b\x5d\xe7\x1c\x36\x16\xc4\x1f\x14\x84\x20\x0a\x00\x10\x44\x9e\x14\xdd\x38\x8c\xfb\xf1\x5a\x79\xdd\x8f\x53\xfd\x9d\xbd\x3d\x3f\x9b\x34\x4a\xf3\x49\x54\x98\x78\x56\x69\x98\xa0\xda\x8b\x60\xf4\xdf\xa8\xbe\xd9\xbf\xc1\x3d\xf3\x1f\xb9\x5b\x29\x93\x55\x93\x11\x33\x19\x0f\xcd\xc1\x75\x42\x68\x0d\x7f\xcc\x45\x54\x04\x92\xd7\x5b\x98\x82\xba\x61\x16\x79\x37\x83\xfc\xe4\x1d\x35\x55\xf0\x8e\xd7\xf0\x37\x59\xca\xe8\x04\x78\xa0\x8b\xb4\x52\xf8\x58\x21\x3b\x72\x98\x36\x47\x7a\x73\x52\x63\x88\x4f\x3a\x45\x5b\xbb\x62\xb3\xb5\xd5\x91\xcd\x2c\x95\x30\x90\xda\xec\x55\xa3\x45\x6c\x6f\x24\x4e\xa5\x07\x0c\xe3\xc3\x3a\x18\x82\x5e\xfe\x22\xdc\xf6\x30\xb3\x36\xe4\x31\x5a\xc7\xce\xa5\xd1\x15\xfb\xb6\x88\xc8\x86\x05\xa5\x99\x78\x74\xa7\xf1\x8b\x88\x14\xee\xa9\xc0\xf4\xb2\x92\xcd\xa5\xba\x5e\x75\xf9\x9c\x32\xaa\xd1\xa6\x7b\x8a\xca\xc4\x9a\xac\x5a\x9c\xf9\x1e\x3f\x67\xfb\x1d\x4e\x48\x61\x5b\x19\x16\x07\x3a\xee\xf7\x11\x86\xba\x22\xd8\x01\x49\xd2\x58\x80\xd1\xa9\x0e\x69\xb6\xbf\x8e\xcc\x94\xfd\xfe\x5e\xbc\x73\x38\xdf\xd3\x3a\x2a\xda\x85\x8c\x14\x11\xe8\x4c\xaf\xe9\x98\xba\x13\x93\xe7\x66\x88\xba\x23\x7a\xc9\x1f\x51\x61\x8b\x8f\x1b\x2d\x79\x72\xd0\x44\xda\x9b\x99\x7e\x95\x2a\x38\xc6\x00\xc8\xe2\xf2\xf1\xfa\x17\x32\xb5\xa7\x99\x8d\x86\x98\xf9\xc6\x63\xdf\xa5\x46\x1f\x6f\x69\x31\xd9\xfb\xd3\xad\x8d\xda\xd7\x5e\xeb\xda\xbc\x30\xfd\x38\xca\x47\x00\x31\x7e\xfd\x95\x4d\x42\x64\x6e\x9e\x0a\x9e\xd1\xfd\x3e\x52\xbe\xb3\x34\x12\xaf\x08\xf8\x0e\x08\x99\xcd\x35\x62\x19\x46\xac\x37\x03\x01\x26\x31\xeb\x9e\xb3\x88\x72\xe8\xd8\x86\x45\x69\xe2\x7c\xd6\x2b\x36\x5d\xc5\x13\x76\x8c\x51\x5e\x9e\x87\xa1\x4b\xfc\x67\x6a\x87\x84\x23\x33\x61\x2f\x2e\x60\x97\xea\x01\xf0\x71\x2b\x25\xf4\xaa\x8d\x97\x4c\xc6\x1a\x1f\xa2\xcd\xeb\xb1\xfd\x77\xd5\xec\xf3\xa5\xc6\x83\x7a\x79\xff\xab\xdd\x30\xcd\x32\x9b\x4f\x52\x30\x34\x29\x7e\x33\xc5\x69\x70\x42\xe1\x06\x26\x59\xf4\xd6\x18\x8e\x81\x19\xdb\x11\xf6\x0a\x7d\xfb\xe3\x7e\x9c\x63\x7b\x95\x59\x20\xbc\x7e\x4a\x73\xbb\x5c\x54\x0d\x05\xd4\xf6\xb1\x63\x99\xe5\x02\xbb\xfc\x5e\x1b\x14\x7a\x10\x4d\x10\x50\xa9\x39\x30\x37\x14\xd6\x22\xbf\x32\x89\x4d\xc2\x71\x0b\xaa\x93\x7b\x7b\x0a\x04\x4b\x24\x31\x0b\x44\x8d\xae\x40\x44\xb9\x4d\x20\x4b\x81\xbd\x05\xc9\x01\x37\xf5\xe0\xa5\xad\x2e\xd1\xe2\x40\xb5\x86\x9b\xec\x2e\x7e\x76\x55\xb9\xab\x78\xd5\x4c\xae\xd6\x88\xdf\x0e\xbd\x74\xb8\x7a\x50\x44\xcd\xc0\xa3\xc1\x18\xa5\x3c\xa5\xa8\x7f\x4e\xb5\x99\xe7\xbc\xb0\x63\x0f\x9c\x46\x48\xb9\xa1\xdc\x04\x38\xe9\x6a\xb4\xef\x4b\x20\x43\x56\x28\x65\xee\x54\x0b\x84\xf5\x2b\xfe\x31\xa4\x71\x14\xae\x8d\xd2\x78\x60\x33\x7e\x7e\x48\xdf\x5f\x23\xdf\xc6\x95\x6a\xfa\x39\xd1\x37\x68\x21\x7d\x4f\xac\x1d\xd4\x38\x63\x2e\x6a\xce\x98\x8b\x6d\xed\xbe\xa1\x4d\xb3\x61\x64\x18\x72\x54\x03\x6c\xf2\x49\xf0\xcc\x56\x49\xc8\xee\xc1\x83\xbb\x3d\x5c\xe1\xf7\x34\x5b\xe7\xef\x22\xab\x73\x34\xab\x1a\xe5\x58\xbd\x56\x37\x87\xfd\xb2\xd0\x9e\x82\xda\x52\x14\xd4\x2a\xb3\xa5\x9b\x58\x30\x77\xb7\xd4\x3c\x6e\x3a\x36\x3b\xd4\xd0\xcf\x63\x04\xf8\xc3\xca\x91\xc2\x31\x00\x11\x27\x6b\xb8\x1e\x3f\xa6\xb6\x89\xa5\x83\x45\xff\x97\xda\x85\x98\x2c\xeb\x28\x45\x9a\xab\x8a\x80\xf3\xaa\x8b\x3e\x56\xa2\x3c\x2a\x78\xee\x05\x97\x70\x0f\x76\xc7\xf5\x1e\xab\x6f\x67\xa8\x3f\x7d\x03\x8c\x04\x83\x92\xb1\xbf\x2f\x6b\xd4\x66\x9e\x97\x63\x08\x25\xa3\xdf\xfa\x0b\x14\x32\x19\xa9\x09\x30\x8d\x94\x9f\xb7\xe6\xa7\xd5\x7a\x8e\xcb\x4c\xc1\xc0\x61\x2f\x6f\x2a\x52\xc0\x9b\xad\x60\x9f\x7e\x9a\xf1\x68\x07\xd3\x44\x07\x7e\x44\x4d\x53\x46\xaf\x0e\xd6\x66\x7d\xba\x7c\x89\xaa\x54\x42\xc5\xa1\xf6\xf9\x9f\x28\xda\xd0\x87\xb5\x3c\x33\x8f\x38\xb4\x82\x83\xbd\x89\x07\xc4\x27\x74\x99\x3c\xdc\x1d\xf8\x19\x8d\x4f\x54\x9d\x2f\x1a\x4f\xb2\x74\x62\xb3\x8e\x72\xcc\x20\xcf\xe3\x63\xe5\x61\xc2\x34\x19\x44\x94\x9a\xed\x50\x63\x46\x3c\x96\xae\x74\x14\xa4\xf1\xf4\x48\x45\x4e\xdc\x4d\x77\x74\xf7\xae\x84\x7a\xa6\x61\xc6\xe9\xa9\xa7\xc9\x90\xf4\x14\x65\x87\x03\x21\x03\x1e\x17\x3e\x6e\x58\xd4\xaf\xbf\xd2\x1d\xa7\x55\x6e\x50\x6d\x12\x27\xab\x50\x25\x65\x32\x8e\xe2\xcb\x94\x2b\x26\x0c\xa3\xc4\xc2\xde\x38\x59\x62\x47\x76\x88\x0a\xa0\x0c\x55\x6c\x5d\x17\x8b\xfb\x49\x82\xd8\xac\x38\xc6\x3a\xc4\x2a\x67\x03\x4f\xb0\x78\xb6\x2d\x8b\x0e\x4d\x62\x06\x11\x63\xad\x84\x8e\x86\x56\xae\xf0\xd4\x3c\xed\xc1\x5f\x21\xa9\x17\x44\x61\x07\xcc\xc2\xd2\xf1\xd6\xed\x6f\x45\xc0\x31\x8e\x92\x68\x5c\x8e\xb1\x4c\xe5\xe6\xfd\x70\x45\x13\xf8\xfe\xf2\xfe\xee\xd8\x24\x03\x03\xe2\x9a\xea\x4b\x1d\x33\xa4\x87\x90\xd5\xd6\xda\xf2\x5a\xba\x8b\xee\x56\x8c\xa4\x77\x2b\xa7\xb5\x29\xe4\xe1\x5a\xf8\x95\x0f\x38\x00\x74\xa3\x42\xae\xac\x85\xa1\x12\xe4\x7b\x0f\xa8\x48\x23\x3a\x2b\x12\x8b\xa7\xcb\xb1\x79\xa1\xd3\x99\x9b\xf3\x60\xd9\xea\x8b\x25\x80\xf0\xf5\xb6\x55\x93\x25\xc8\x9e\xa0\x84\xc1\xf4\x8a\x7c\xa2\x1e\xea\x24\x8b\x56\xa2\xd8\x0e\xe1\x9c\x70\x1f\xdf\x57\x86\xff\xfb\x5a\x3c\xed\xcd\x22\x2b\x73\xc1\x87\xbf\xc8\x96\x13\xd0\x63\x3e\x0e\x9e\x55\xe9\x80\x0d\x23\x13\x47\x6f\xd9\x01\x51\x83\x0a\xb1\x38\xed\x14\x96\x47\x9e\x2a\x96\xdb\x9f\x62\xa7\x60\x97\x41\x67\x1d\x6d\x97\x29\x99\x72\xc7\x51\xfe\xf2\x7e\x2e\x5a\xde\xae\xbd\x8b\x15\xbb\x46\x0c\xb6\xc2\xbd\xaa\xca\xed\xe7\xe8\x0a\x81\x21\xe1\xdf\x07\xac\xf9\x91\x96\x4e\x7c\x44\x3f\xa3\x78\x5c\x5f\xe5\x9d\xfa\x40\x0d\x7a\x2e\xfe\xd6\x8b\x1d\xcf\x8d\x7b\x45\x25\xee\x57\x82\x5f\xaa\x3b\xae\x03\x0b\x12\xed\xfe\xf5\x2a\x4e\x42\x68\xf4\x0e\x7c\x14\x82\x26\xee\x35\xc2\x60\x6f\x5b\xef\xbc\x22\x8a\x70\xc7\x00\xe9\x10\x55\x58\x55\x89\x9b\xed\xd5\x66\xf7\xbc\x9c\xf1\xbb\xea\xea\xef\x29\x92\xc5\xd3\x08\x4c\xd1\x3f\xef\xf4\x3a\xbf\xfe\xdb\x8e\x99\x8f\x1e\x37\x3c\xc7\x5f\xe9\xde\xe4\x46\x8d\x82\xe1\xc3\x40\x91\x5c\x5f\x63\x52\x6f\xb8\xe2\x07\x81\x22\x5e\x3c\xa5\xc6\xbd\xf7\xad\x2b\x54\xdd\xef\x51\x48\x21\x20\x3e\xaa\xba\xc3\x1a\x5f\xa7\x4e\x27\xee\x05\xb2\xa8\xc8\x05\xcf\x04\x0a\x9c\x32\xa3\xa0\x4a\xdb\x10\xdc\x31\xec\xa5\x51\xf1\x5b\x58\x38\xdc\xcd\x6d\xbc\xc2\x16\x68\x2f\xaf\x1e\x45\xba\xf3\x17\x6a\x90\x75\x6c\x72\x2a\xd6\x56\x99\x62\xe7\x1b\xb2\xd5\x58\x64\x58\x58\xfa\xbc\xdb\xec\xdb\xb5\x94\xc5\x6c\xf1\x26\x3f\x0a\xfc\xe8\x32\x44\x21\x1c\x11\x41\xf5\x50\x58\xbb\x3c\x50\x57\x7c\x5a\xcf\x67\xfc\x54\x71\x5d\x9f\x6c\xd8\xd3\x2a\xc3\xa9\xd2\xe4\x7e\x3a\x60\x40\xa4\x30\xd9\xd5\xa0\x87\x3e\x0e\xbd\x17\xf8\xe0\x2e\xb3\x2b\x69\x5c\x32\xdd\xe4\x76\x45\xad\x74\x5d\x4b\x8e\xfd\xd7\x9f\x6b\x3a\xfe\x9f\xd1\xdd\x38\x62\x2f\xc7\x5a\xd8\x3e\x63\x3e\x48\xcb\x3e\x52\x66\x47\xe0\xe8\xc7\x56\x6f\xa0\x0a\x8a\x40\xe6\xbc\x4a\x86\x27\x99\x1d\x47\xe5\x18\x39\x14\x16\x21\xa2\x00\x74\xa1\xae\xd2\x25\x08\x96\x9e\xbe\x03\x8b\x4e\xcb\x9e\x95\x49\x98\x8e\xc7\x29\x87\x12\x48\x0c\x18\x33\xc5\x27\x0e\x4d\x50\x98\x64\x39\xdf\x5e\x2d\x2b\x55\x03\x10\x6e\xc2\x7d\x94\x96\xa0\x4f\x80\x8d\x2f\xda\x95\xf4\xf6\xa4\x13\xd5\x54\x9a\xec\xdb\x51\x94\x0c\x66\x3c\x48\xe9\x76\xa0\x56\xdb\x67\x53\xaf\x90\x71\x45\xcd\xfa\xe7\x36\xdc\x5e\x7d\x04\xab\x90\x89\x37\x25\xb6\xa8\x3e\xbf\xc9\x89\x84\x02\x2a\xbb\xe0\xa3\x91\x17\x12\xb6\xa9\x6f\x47\x26\x5e\xea\xb8\x91\xa6\x95\x1f\xd3\xf3\xe3\xe3\xe9\x13\x0a\x57\x6b\x7f\x89\xec\x8c\x12\x97\x97\xf6\xd6\x3e\xaa\xa7\xe3\xf9\x3f\x09\xad\x71\x07\x84\xa9\xd6\x0d\x12\x81\xed\x14\xf4\xc2\x4c\xcd\x00\xb8\x80\x37\xf3\xcd\x40\xbd\xa6\x67\xd6\x15\x20\xe3\xfd\x40\x51\xcb\x6f\x23\xa3\xe5\x34\x3f\x2b\x4b\x83\xf0\xee\x3e\x39\x39\x06\xfa\x04\xd5\x2e\x94\x7a\x6d\x5d\x1f\xce\x95\x94\x66\x01\xb5\x80\xbb\x7c\x82\x3a\x42\x80\xdb\xbc\xc3\x36\x8b\xfa\x5c\xff\xd9\x5e\xc2\x4a\x60\x97\x30\x3c\xc2\xb5\xaa\x25\x2b\x78\x6f\xef\x3a\xd9\x22\x3c\xb0\xdd\x3d\xd5\x3e\x6b\x02\x6f\x5f\xde\xbf\xd0\xcd\x4c\x61\x99\x51\x00\x65\x35\x96\x75\xc0\x32\xf8\x84\x2f\x40\x04\x85\xbd\x02\xbf\x59\x2a\x6c\x26\x3a\x21\xf4\x22\xe0\xae\x4f\x06\x3e\xf7\x3f\xe9\x9a\x6a\xe9\x8a\xcd\xe2\x34\x5d\x26\x1b\xb6\xf9\x0e\x3d\xe0\xcd\x77\xd4\x2e\x1a\x46\xc9\xd0\x66\x20\x42\x7a\xb1\x75\x52\x71\x6b\xda\x45\xd3\xa8\x71\xec\x92\x49\xd8\xa9\xbb\x53\x5f\xf8\x44\x71\x5e\x26\x89\x5a\x6a\x3d\x11\x09\x0a\xa5\xe3\x89\x49\xd6\x14\xdf\xcc\x65\x25\x94\x76\xb9\xed\x77\xc3\xd8\x9a\x84\xa7\x28\x9c\x94\x4f\xf5\xa0\x61\x90\xee\xa8\x96\xd5\xc9\x3a\xbb\xe4\x70\x6d\x57\xf5\xaa\xb0\x1a\x6f\x50\x2a\xce\xc7\xe8\x93\x22\xe9\xfa\x77\xb4\xdf\xe0\xcc\x75\x59\xe4\x78\xe0\x9d\xe9\x1d\xed\x72\xf1\x8b\xc8\x8a\xbe\xab\xe6\xa4\x40\x6b\x90\x99\x21\xb0\x71\x9b\xeb\xa4\x9a\xb6\xde\xb0\x7e\x07\x16\xba\x6f\x95\x59\xc4\xf4\x39\x30\x78\x1c\xb0\xf2\x49\xa3\x69\x3f\x7f\xa4\x5b\xd8\x37\x8b\x88\x27\x2a\x64\x7f\xf9\x46\x56\x73\xfc\x64\x61\xe1\x10\xf1\xd6\xac\xa9\x19\x8c\x3f\xc3\xaf\xf0\x49\xe3\x23\x47\x5e\x62\xa1\x12\x0a\x4f\x98\xaa\x56\x55\xe8\xbd\xac\x69\x6c\x0a\x9b\x3d\x59\x9f\x38\xac\xb6\x34\xf6\xfa\x13\x3d\x1f\x3b\x3c\x86\xdd\x26\xf3\xe5\x10\x46\xc4\xfb\x83\x0b\xd9\x46\xf0\x2a\x3c\xd9\x4d\xba\x23\x84\xb8\xbf\x82\x19\x39\xa7\x70\x7f\x40\x00\x1c\xdf\x9b\x2a\x42\xcf\xb3\x53\xd7\xfd\x9e\xff\x7b\x3d\x55\xd9\x7d\xa4\x1b\x08\x99\x5d\xb2\x59\x66\x07\xb3\x7e\xca\xf4\x18\x7d\xa3\xd3\xa8\xac\x96\x03\x32\x20\x74\x5a\xf9\x58\xa5\x02\xd1\x98\xc4\x68\xb6\xfb\xa7\xf9\xa9\x66\xd3\x7d\x7c\x5d\x0d\x83\xfe\x04\x96\x0b\x8e\x0d\x18\x53\xfc\x55\x53\x78\xff\xc8\x4b\xdd\x49\xcc\x23\x66\xc8\x51\x37\x15\x75\xe4\xe6\xb4\x8e\x4a\x4a\x9e\x56\xf8\xb1\xbb\x04\x58\xc3\x2d\x3c\xb6\xee\x07\x5f\xb6\xc3\x28\x01\xc9\x76\x0f\xa1\x17\x9e\xef\xd3\x14\x08\xa1\x56\x79\x2d\xf0\x84\x15\x80\xb5\xc1\x0a\x5e\x0f\xd4\x98\x0a\x72\x2f\x41\x08\xc2\x3a\xe1\x85\xdf\x55\x4c\x6f\xef\x11\xff\x35\xb6\xe3\x65\x92\x9d\x47\x16\xcf\x65\x0b\xbc\x36\xa6\x18\x44\x44\xc6\x44\x2a\x40\x55\x7f\x80\x10\x10\x05\xc8\x1b\x8d\xcc\xb5\x5a\xc8\xb1\xe9\xa7\x04\x0d\x8d\xac\x4c\xae\x20\xe8\xdc\xd5\xab\x11\xbe\xd0\xa5\x23\x7e\xdc\xb6\xbe\x05\xb3\x41\x1e\x6f\xf1\x10\x0d\x6e\xa0\xf0\xf1\xf1\x54\x21\xcb\x1f\x90\x8b\xc0\xcd\x5d\x0b\xb4\x89\xd6\x70\xdb\x6f\xd7\xa9\x0c\x15\x6b\x40\x98\x59\x9b\x10\x7c\x08\x01\xf4\x4d\x15\x4c\x37\xf9\x00\x5e\xde\x7f\xa8\x5b\x64\x91\xb4\xfa\x1c\xbf\x9c\x82\xa6\xea\xb1\xae\x6c\xc5\xae\x11\xd2\x49\xb8\x29\xe8\x2a\x50\x6e\xfb\x5c\xeb\x89\x80\xb7\x84\xff\x41\x45\xaa\x36\x29\x46\x65\x1e\x99\x9c\x09\xed\xa4\x71\x4c\xb7\x26\x9d\xe3\xad\x11\xe4\xf3\xdd\x32\x21\xa2\x65\x07\xe5\x90\x61\x75\x0f\x5a\xbe\x1d\x28\x94\x52\x6c\xf2\x22\x0a\xf1\xa7\xac\xfc\x01\xef\x2e\x32\x20\x2d\x7d\x56\xcf\x5f\x25\x04\x90\x4a\xa9\xe3\x42\x0d\x27\x64\xe2\xca\x36\xd1\xdf\xaa\x86\xa6\x10\xf1\x5e\x6c\x35\x81\x7d\x93\x47\x18\xc8\x6f\xcd\x76\xfd\xa0\xfd\xeb\xe5\x78\x62\x07\xd4\x84\x90\xb6\x9c\x6a\x66\x02\x8e\x2d\xfb\xf0\x85\x4e\x47\x91\xe8\xd3\x17\xca\x50\x8a\x67\x2f\x30\xe3\x68\xb0\x4b\xc5\x60\x6f\xc3\xea\x01\x60\xb7\xa1\xda\x84\x3b\x08\x21\x27\x9c\x09\x0a\x95\x79\x31\x50\xc4\x6f\x88\xd4\x79\xde\x4e\x33\x26\x5c\x68\x99\x8e\x9c\xef\x92\x00\xcc\x8c\x1f\xbc\xfa\x10\xdb\x4f\x98\x76\xaa\xdb\xc4\x8a\x79\x7b\xea\x91\xe6\xe5\x0b\xf9\x0b\xcf\x54\x4b\x18\xe1\xd4\x2d\x2a\x35\x71\x2d\x90\x2c\x01\xee\xf2\x33\xec\x5e\x18\x98\xab\xaa\xc0\x73\x0d\xc6\x06\xb9\xf8\x4d\x04\x89\x8a\x3b\x41\x1a\x1d\x77\x29\x64\xc3\xc7\x4f\x4c\x6b\x88\x5f\xba\x61\xe8\xff\xdc\xd4\xd4\xf2\x9b\x20\x84\xc7\xd6\xbe\x8a\x7b\x51\x19\xec\x61\xb6\x57\xf7\xb5\x74\x32\xc8\x44\x64\x7a\xdc\xf5\x73\x57\x9f\x59\xaf\x22\x3b\xe1\x14\xf7\x2b\x20\x33\xc9\xb2\x1d\xec\xf4\x38\xa2\x5d\xbd\x1a\x58\x87\x2e\x54\xe2\xf2\x6d\x5f\x63\xcf\xfb\x09\x3d\x4b\xc4\xa2\x90\xbc\xc5\x37\x5f\xa7\x9b\x64\x2d\xda\x2a\x94\x16\x80\xe4\xc8\x50\x71\x52\xc6\x13\xfc\x70\x00\x70\x47\x7c\x3c\xdd\xc2\xe2\xe6\x36\xf2\x60\x10\x41\xd6\x1f\x99\xfd\x19\xca\x8c\x35\x62\x11\x2e\xe8\xbe\xa2\x59\xed\x97\x51\x3c\x88\x92\xe1\x1e\x58\x4e\xf8\x82\x6f\xd3\x1f\xc3\xaa\x6d\x43\xe4\x2a\xb4\xd8\x95\x05\x77\x93\xa1\xd5\x13\xe0\x19\x0f\xba\x23\x0c\x55\x1f\x57\xaa\x27\x27\x95\x3e\x29\xd7\x13\x84\x53\x5b\x01\x60\xde\xa5\xe7\xc4\x22\xed\x0d\x16\xe2\xc5\xfd\x8b\xdd\x09\x49\x87\x08\x0b\x31\x42\x8e\x7f\xa6\xc2\x8f\x7f\xd6\x68\xd6\x2e\x2c\x74\xa3\x64\xc5\x26\x70\x0c\x1d\xe5\x46\x18\x85\xc1\x27\x5f\x08\x22\xcd\xd3\xb2\x18\x99\x31\xbb\x14\x27\x1b\xe7\x82\x53\xa6\x43\x40\x49\x7f\xb3\xc5\xc0\x1c\xee\x66\xd1\x70\x54\xd0\x84\x8a\x74\x78\xab\xfb\x44\xd1\xa8\x83\x88\x04\x37\xfd\x3f\x2a\xdc\xd0\x09\x5d\x41\x3a\xe7\x02\xf7\xd0\x64\xd9\x1a\x31\xb5\xbb\x1a\xde\x31\x85\x8e\x3f\x8d\xed\x21\xeb\x6b\xaf\x0a\xf7\xc3\x74\x2c\x0f\x40\xe1\xed\x7d\x87\x77\xab\x69\x9f\x3f\xd2\x1d\x66\x66\x62\x57\xa2\x04\x0d\x5b\x86\xbb\x51\xec\x21\xd0\x37\xb5\xea\xb2\x72\x02\x9e\x17\xee\x9b\xab\x91\xce\xb3\x0d\x8f\x2d\x4f\x57\xba\xbb\x3b\xaa\x75\x5d\x53\x20\x90\xa4\xdb\x0b\xf4\xfd\x52\xcf\x35\xa1\xff\xfe\x63\xeb\x0a\x10\x71\x49\x21\x17\x8f\xbb\x96\x46\x99\x4c\x4c\x04\xd4\xb9\x34\x1d\x3a\x0b\x35\x5e\xb3\x79\x37\x10\xdb\x22\xfb\x9b\x97\xf9\x24\x0a\x23\x82\x5e\x2d\x0a\xcc\x1b\xeb\x98\x8f\x6b\x70\xf0\x32\xa1\x1a\xc8\x61\x57\x9e\xf1\x29\x07\x88\x0c\x6a\xc4\x24\xfc\x47\x81\xe2\x3a\xb9\xac\xca\xaa\x4b\xb1\xb5\x05\x32\x2f\xd7\x25\x3f\x78\xd0\x75\xc9\x5b\x64\x56\xe2\x14\x33\xdd\xb8\xb4\xc7\xd7\x7d\x15\xfd\x36\x2c\x21\xac\xcc\x71\xba\x14\x64\xbf\xbb\x29\x7b\x95\xe9\x3c\x3f\xe5\x52\xbe\x90\xbc\x50\x0f\x39\xe8\x51\xf9\x98\xc3\x0d\x25\x93\xc4\xd9\xae\x8e\x53\x86\xc7\xee\x47\x99\x13\x64\xdc\x78\x89\xc7\xc9\x6a\x49\xd5\x87\x1e\x00\x56\x2b\x7a\x9f\x6a\x6a\xea\xb0\x9b\xb1\xf7\x33\x35\x9f\xd6\xea\xaf\x23\x53\xfc\x8d\xea\x43\xec\x99\xd0\x47\xa2\x6f\xfb\x93\x67\x51\x0e\x44\x9d\xf0\xab\x3d\x35\x64\xbb\x97\x8a\x9e\x78\xf3\x3f\xa4\x15\x25\x7c\xf2\x94\xb4\xcb\x20\x27\x3d\x28\x56\x3f\xe0\x48\x16\x81\xdf\x67\x53\x2d\x32\xf8\x09\xdd\x26\x3e\xf4\xbf\x2a\xc6\x8a\xe5\xaf\xf6\x94\x1c\xf9\x6d\x25\x73\xc9\x34\xbc\x78\x32\xdf\xc2\x7c\x33\xe2\x9d\xfb\x68\x2b\xa0\x3a\x70\x53\x6b\xf0\x6d\x07\xb7\x87\x54\x14\x7d\x0d\xee\x67\x28\x6e\x0a\x95\x09\x65\x9d\xb8\xe7\xf7\x89\xe3\x04\x5f\x7c\x96\x4c\xb4\x8c\x5b\xf8\xc1\x9d\x33\x9a\x7e\xac\x43\xc1\x3e\x2c\xe0\x6d\x70\xcd\x89\x58\xf3\x56\x3b\x3a\x37\xd7\x35\xd9\x30\x65\xea\x5b\xf4\x72\xf1\x4b\xbf\xe0\x47\x85\x8c\x87\x7b\x10\x08\x42\x9a\x34\x24\x07\x0f\xd2\x20\x27\xa3\x13\x58\x86\x90\x6e\x4e\x24\x09\xbd\xb3\x2d\xcc\x72\x94\x0c\x77\x57\xaf\x0b\xc1\xce\xff\x81\xf0\x08\x35\x9a\xf7\x68\x89\xe0\xc1\x3f\xbd\xee\x73\xbf\xa7\xd0\xfd\xf7\xa4\x41\x8c\x04\x78\x63\x5f\xcf\xd7\xfa\x35\x54\x91\xdf\xbb\x80\xc6\xb6\x9a\x41\xa2\xdd\x4e\xf2\x34\x2b\x22\xa3\x79\x47\x8f\xaa\x42\xf4\x51\x37\x11\xbb\x54\xbe\xf5\x96\x1b\x9d\x15\x39\xed\x8e\xd2\xd9\xde\xea\x66\x2a\xaf\x86\xaa\x4d\xb4\x62\x19\xe1\xe2\x06\x0f\xfd\x10\x62\x0b\x87\x93\xc9\x97\x25\xe6\x86\x35\xfe\x11\x6c\x1a\x9f\x34\xfc\xe7\xc2\x42\x37\x37\x85\x8d\xe3\xa8\x90\xc1\x4a\x54\x2c\xd1\x93\xe6\x63\x67\x3e\x97\x32\x9b\x84\xa3\x1d\x78\xb7\x9c\x78\x05\xdb\xbe\xe6\x08\x7a\x5c\x1b\xfa\xbf\x78\x66\xdd\xc5\x43\x07\xff\x7f\x88\x87\x60\x97\x77\x2b\xda\xac\x3b\xad\x44\x28\x63\x93\x2d\x2f\x9b\x4e\x65\x88\x1c\xcb\x82\x4f\x37\xce\xa8\xd2\xe6\xc4\x02\xce\xca\x0a\xa6\xaa\x75\x74\xac\x46\x8c\x54\xd8\xf1\x33\x1d\xa7\xcc\x3e\xdb\x53\x65\xc4\xbb\xd8\x2b\xd8\x07\x3c\x4a\x03\xb8\xc9\x31\xae\xaa\xe1\x0b\xdf\x41\xb6\x04\xcf\x0b\xdb\x05\x43\x7e\x7f\xaa\x7a\xd1\x8c\x57\xe1\x02\x3c\xcd\xf5\xa0\x9c\xf1\x1d\x5a\x73\x30\x3c\x1b\x4a\xf6\x89\x89\xff\x5c\x63\x79\x51\x82\xa3\xdb\x64\x91\x18\x18\x01\x63\x0b\x33\x8e\x19\x2d\x06\x6d\x05\x8a\xae\x0f\x45\x10\xc0\x54\x77\xaf\x0b\x5e\xcf\x8e\x27\x23\x93\x47\x6f\x49\xeb\xd6\xa1\xbd\x7c\x55\xf6\xfd\xc6\xaa\x38\xb0\x40\xd4\x25\x76\x9c\x26\xc5\xa8\x53\xef\x66\x39\x1a\xa8\x73\x08\x6b\x38\xc7\x62\x70\x0b\xd1\xd0\xb3\xc2\x29\xf6\xe7\x3b\x53\x35\x6c\xf4\x4e\xa3\x42\xb5\xb0\xd0\xed\x47\x54\x20\xd4\xc9\x56\xa0\x6a\x95\x4d\xc9\xa0\xc5\xfd\x5d\x13\x3a\xb8\xab\x34\xe7\xe8\x67\xa4\x73\xd0\x02\xea\xce\xed\xc4\x88\x6a\xfd\xe2\x7e\x47\x30\xd5\x71\xf2\x62\xe7\x6a\x74\x0a\xe3\xb1\x09\x97\x51\xb4\xc4\xb2\x01\xb3\x28\x77\x5b\x95\x26\xd8\xd5\x36\x3a\xf4\xbe\x09\x97\xf3\x22\x9d\xd0\xac\x0c\x5e\xfb\x37\xe9\xfd\xf0\xb1\xca\x7e\xfb\x26\x09\xd3\x6c\x02\xcf\x2e\xda\x61\x1e\xa1\x73\x51\x53\x0c\xda\x8c\x9e\x6e\xb5\x62\x19\xd1\x47\xc9\xa6\xa0\xfb\x04\xe5\xbb\x3a\xb2\x89\x9f\x8a\xff\x5f\x38\x78\x82\x29\xbc\x06\x93\x0e\x5b\xfc\x58\xef\x19\xf5\x0e\x97\xe2\xca\xe2\x24\xc3\x1d\x7e\xe2\x62\xd7\xba\x4a\x25\x09\x38\xb4\xc9\x59\x94\xd0\xaa\x2a\x5d\x8e\x5b\x48\xe3\x84\x7c\x75\xeb\x3b\x78\x65\xfe\x88\x5f\x28\x88\x39\x61\x96\x2e\x61\x13\xf0\x89\x6a\x10\x9b\xa4\x88\x56\x22\xd2\x91\x5f\x14\x31\xc2\x3f\xa5\xd7\xc0\xc7\x0a\x81\xb4\x1a\x65\xb6\x30\x13\xba\x6d\x07\x92\xab\x6e\xdb\x49\x9e\xce\xcd\x3b\x36\x0c\xdf\x54\x2d\xca\xc9\x4c\x8d\xf8\xbf\xe3\x08\x7e\x6f\xd1\x2f\x09\x35\xdb\x33\x8a\x08\x26\x1a\x62\x0e\x56\xcd\x8b\x02\x6e\x2d\x4d\xa3\x16\x8e\xbf\x55\x4b\x24\x46\x9d\xba\xc0\xf6\xc2\x82\x83\x55\x37\x81\x58\x87\xba\x99\x25\x84\x28\xfd\x0e\xf2\x36\x56\x25\xe3\x93\x16\x79\xe9\xbc\x1c\x0e\x6d\xee\xe0\xb9\x52\xeb\xa9\x15\x73\x3d\xc4\xf5\x42\xc3\xb5\x1d\x79\xc9\xe5\x46\xa8\x2e\x0a\x59\x5b\x47\x09\xf6\xb5\x90\xad\x0c\x6d\x52\x70\x99\xb9\x0d\x1e\xf2\x65\x85\x99\x66\x2d\xbc\x34\xc9\xc9\x8f\x0b\x19\x20\xcc\x2d\x92\x83\x6b\xda\xaa\x62\xde\x12\xd8\x33\xe8\x00\x20\x85\xbf\xa9\x38\x6b\x1e\x04\x9e\xcb\xe6\x41\xf5\xae\x37\xf9\xf5\xcb\xf4\x54\x1b\x5f\x95\x89\x92\xd8\x24\x48\x07\x1c\xa6\x71\x61\xc1\xcf\x78\xf9\x8a\xd2\xc9\x86\x49\x39\x78\x50\x84\x8f\xfa\x7c\xdf\x22\x35\xee\x5b\x98\x9b\xd3\x2d\xc5\xc4\x6a\x0f\xbc\xbc\xff\xd0\x76\x55\x13\xf8\xc5\xd4\xa7\xad\x1f\xaa\xb4\xf5\xc3\xa9\x9a\x89\x38\x8e\xac\x40\xc8\xe6\xb6\xca\xe5\xcc\xcd\x53\x77\x32\xc9\xd3\x38\x1a\x18\xe1\x1a\x47\x86\xc3\xa5\x34\x3e\x51\x73\x51\x85\x79\x93\xe5\x84\xb0\x9a\xce\xab\x94\xe4\xd4\xb4\x0a\x8e\x91\x1f\xdc\x56\xd5\xec\xd7\x4d\x3e\xae\x52\x3f\xda\xe8\x92\x32\x77\x1c\xa1\xdb\x39\x2f\x9e\x69\x8b\x54\x32\x4b\x54\x85\xb8\x44\xc5\x27\x0a\x44\x5f\x98\x70\x99\x39\xde\xf1\x2d\xac\x09\xc0\x27\x8d\x24\x9c\x0a\xb2\xae\xb2\xbb\xa6\xc8\x25\x6f\x2b\x72\xc9\xdb\x5a\x59\xca\x64\x61\x6c\xb8\x9b\x2d\x72\x2b\xf4\x40\x45\x14\x9a\x1e\x11\xa2\x9d\xf7\xda\xa8\x60\x63\x43\x9c\x5a\x4e\x9c\x1c\x15\xe8\xe3\xba\x1c\x7d\xbc\x0d\xd4\x93\x56\x7b\x7e\x35\xca\x6d\xc7\x4b\xe0\x5c\x56\x84\x63\x97\xa7\xf5\xc9\xf2\xb5\x5d\x3e\x4e\x61\xf6\x05\x09\x48\xb1\x3d\x10\xaa\x62\x82\x52\xb7\xe2\xa5\xf7\x44\x37\x22\xa5\x3b\xc5\x6e\x08\x3b\x2d\x64\x26\x6d\x05\x89\x49\x6c\x42\x86\x2f\x30\xa6\xb7\xc6\x24\xaf\xe5\xbe\x26\x36\x19\x58\x9a\x97\x77\x5c\xe3\x1b\x8a\xb1\x7d\xa3\x11\xd0\x12\xaf\x27\x43\x51\x65\x6a\x8b\x67\x20\xd6\xd5\x6c\xc9\x36\x27\x59\x17\x9b\xa2\x88\x42\x94\x18\xe0\x4f\x7e\x4c\x1b\x9c\x8f\xdb\xfa\x7d\xfd\xd8\x8e\xa3\x1c\xc2\x7e\xc8\x1b\x4e\x2a\x66\xf3\x93\x81\xe3\xdf\x1e\xff\x0d\xbf\x4a\x90\xf8\xb1\xc2\x38\x45\x75\xb0\x17\x0f\x28\x53\x92\xd1\x6b\x24\x7a\x6e\xe4\x75\xfe\x88\x6b\xb3\x54\x51\x1d\xfa\x22\xb3\xeb\x94\x75\x0a\xc7\x3b\x65\x70\x28\xe0\xdc\x21\xf2\x15\x47\x4d\xfd\xf5\x57\x38\x18\xba\xa3\x1a\x3c\x77\x91\xff\xd1\xe6\xfb\x8f\x9f\xa6\xb9\x6d\x58\x90\xf3\x14\x44\x72\xc9\x14\xcb\x0d\x57\x7e\x0d\x16\x01\x3f\xf1\x6f\x51\x3e\x43\x49\x64\x3b\xc8\xb3\x11\x9d\xec\x02\xad\x2d\x6a\x69\x3c\x3e\x84\x2a\xe5\x8d\x40\x4d\x8c\xec\xa1\x36\x39\xfc\xde\x8f\x03\x35\x86\xf8\xae\xaf\x8f\x6c\xdf\xd7\x53\x70\x90\xff\xff\xba\xd2\xde\xf9\x9f\xfe\xda\x3a\x59\x04\xc1\x78\x35\x13\x93\x51\xda\x4f\x73\xcc\x21\xa3\x76\x78\x4f\xeb\x1c\x63\xda\x08\x6e\xfb\x14\x9e\x1d\x1c\xd7\xbf\xa8\xde\xb4\x9b\x7b\x28\x93\xc2\x66\x4a\x2a\x70\x6e\xce\x93\x25\xf8\x04\xf3\x7c\xa0\xf4\xdd\x26\xc6\xd3\x1b\x09\x31\x85\x6f\x79\x5d\x56\xdd\xbe\x37\x4a\x13\x47\x4b\xc2\x2a\x0a\xd3\x07\x95\x70\xd4\xf7\x20\xc4\x24\x33\x61\x5a\x96\x68\x18\xa5\xc9\x8c\x2a\x47\x5f\x53\xc3\xfd\x3f\xd1\x5d\xc7\x8d\x40\x49\x69\x91\x92\x8b\x52\xd4\x83\x24\x2f\x1f\xbb\xf9\xc0\x28\xaf\x3c\x14\xcf\x30\xc1\x86\x9f\xd4\xf4\xa6\x27\xd5\x57\x92\xfc\xc2\xac\x1f\x2b\x38\x17\xe8\x8a\x8d\x62\x15\x7f\x30\xf5\xb8\xf3\x47\xb5\x8a\xd5\x60\xfc\x02\xe2\x06\x7e\xfb\x6a\x3a\x96\x29\xac\xa5\x39\xd9\x42\xe9\x50\x44\xe3\xbe\xcd\x66\x7c\x13\xf8\x77\x60\xf2\x51\xae\x38\x5f\xe3\x0a\x53\xe4\x8e\x65\x6e\xcb\xf1\x76\x35\xe4\x73\x8c\x43\x01\xc4\x0e\xbf\xa0\xcf\x01\xc3\x75\x52\xd3\x07\x60\xc2\x1b\x76\xf4\xaf\x54\xad\x2a\x4e\x57\xec\x76\x55\xd2\xdc\x08\x54\x6f\xe4\x98\x66\x3c\x62\x29\x54\x6c\x81\xa3\x7a\xb4\xef\xa8\xf2\x79\xd6\xe4\x91\xcd\x8b\x0e\xed\x2a\x79\xb2\x1d\x47\x91\x75\x4e\x41\xfc\x63\x6b\x26\x94\xca\x2c\xca\xd0\xc2\x29\x7a\xd4\x7c\x5c\xa3\x5c\xec\x13\xe5\xe2\xcb\xfb\xbd\x08\x75\x75\x6b\x4e\xca\xca\x0d\xa4\x68\xd8\x00\x8b\x9b\x8b\x52\xf5\xd6\x6d\x36\x37\xd7\x1d\x98\xc2\x6c\xf7\x82\xa0\xe7\x6a\xfd\x80\xc0\x17\x38\xf0\xad\x22\xb9\x42\xdf\x2a\x51\xcf\xd6\x4a\xe2\x6b\xaf\x75\xf3\x65\xb0\xc4\xa3\x0a\x05\xe9\x1a\xd7\x3b\xf8\xad\xdf\x70\x9d\xde\x2f\xa9\x97\x10\x2e\xe7\x24\x40\x27\x6c\x74\x14\xf8\x4a\x00\x5e\x5b\x73\xb6\xdf\xe9\x28\xfd\x45\x4f\x5a\xf1\x91\x6a\x46\x0c\x33\x93\xb8\x11\x03\x18\x3a\x0c\x43\xf0\xb1\xd6\xb1\x8a\x86\xa8\x45\x39\x94\x6e\x6d\x3e\xc4\xa1\x8e\x1e\x34\xb2\xd1\x43\x2f\x1d\xee\x86\x51\x16\xb2\x5a\x26\xfe\xec\x2f\x03\x15\xb8\xfc\xa5\xea\xaf\x16\x59\x19\x2e\xe7\x7b\x94\xd4\x0e\x6b\x2b\xa2\x90\xf8\x87\xf4\x53\xff\x37\x5f\x7f\x1a\x23\x49\x7a\x9f\x89\xe1\xdd\x59\xd5\xe7\x9c\x9c\x83\x14\xff\xcb\xbf\x9d\x12\x64\x0f\x6c\x8f\x06\x96\x0c\xc3\x00\xbf\x44\xaa\xaa\xc8\x61\x17\x34\x35\x8d\xea\x56\x8f\x76\x60\xc0\x7c\x2b\xf3\xad\xca\x98\x8a\x8c\x48\x46\x44\x56\x4d\xf1\x93\xb1\x58\x7f\x33\x0c\x1b\x5e\x18\xb2\x60\x2c\x76\x8d\x35\x65\x4b\x5a\xad\x24\xca\x2b\x69\x29\x31\x8b\xc7\x88\x97\x48\x0e\x87\x73\xf7\x90\xd3\xf7\x7d\x5f\xd5\x67\xb5\x11\xef\xf3\xfb\xbd\xef\x93\x95\x31\xfa\x32\x88\x98\xae\xcc\x8c\xe3\x7d\x7f\xe7\xf3\x7b\x1e\xd8\xf7\x77\xdc\xee\x23\x51\xa2\x19\x3f\x09\x4f\xbd\xe4\xbf\x27\x85\xe4\x1f\x38\x6f\x84\x1f\x3d\x16\x7d\x32\x91\x5e\x68\xbb\x1d\xab\x1b\x7a\x58\xcc\xad\xed\x64\x3d\x52\x23\x7b\x8f\xd4\xc8\xde\xab\x89\x04\xf6\x37\x97\x4c\xa9\xa1\x1b\x6c\xf5\x5f\x32\x7b\xfd\x5f\x12\x74\x25\x89\xbf\x32\xa8\x02\x4e\xcd\x85\x64\x94\xd5\x39\x36\x1d\x6b\xe5\x42\x4c\x5b\xf4\xbc\xf1\xb4\x24\x42\x57\x85\x30\xf7\xe8\x34\xfc\x1c\x9f\x47\x9a\x71\x63\x83\x5e\x1e\x15\xd6\xeb\x1e\x01\xb4\xee\x8d\xd4\x84\x7b\xd9\xc2\x04\x0b\x90\x52\xfe\x72\x07\x2f\x40\x65\x83\x3f\x45\x29\x70\x95\x12\xd8\xce\xce\xc0\xac\x00\x82\x11\xb4\x11\x84\xb9\x0c\xfb\x64\xfb\x7a\x70\x07\xb7\x68\x12\x4a\xa6\x80\xb4\xa3\xa0\x93\x87\x1d\xdb\xcb\xda\x55\xd6\xd8\x9e\xf0\x50\xb9\x5b\x9f\x6b\x85\x00\xe5\x1e\x99\x9f\x27\x3e\xed\x95\x6b\x5f\xb3\x8b\x8b\x36\x2f\xb2\x54\x09\xd7\x51\xfb\x3b\xc5\x1a\x6e\xa7\x28\x39\x4d\xb3\x74\x35\xcb\x97\x61\x84\xa6\x02\x29\x97\xa7\xd9\xb9\x50\x43\x47\xe8\x4c\xa6\xb3\xdb\xa8\x08\x41\xc3\xc1\x4b\x2e\x78\xc0\xc6\x46\x1d\x8c\xbe\x18\x2c\x0c\xf2\x05\x83\x82\x83\x9f\xb2\xf5\xac\xbf\xe7\xd9\x01\xbe\x57\xc7\xaf\xdb\xcf\xb3\xa5\xdc\xf4\x7a\xc6\x61\x00\x02\x2c\xe3\x32\xe1\xb0\x2f\x93\xe9\x4c\xed\xaa\x33\xc7\xd5\x72\x81\x8b\x00\x9a\x47\x8e\xa3\xe0\x09\x3a\xb6\xfd\xc2\x6e\x6a\xe8\xed\x68\x51\x98\x70\x7f\xc8\x65\x4c\x54\xb6\x94\x64\xb5\xe1\x55\x60\x6e\x46\x24\x82\x7f\x8a\x76\xb1\x60\x6d\x95\x9d\x79\x6b\x8d\xea\xb9\xe7\x9a\x5f\x19\xc4\x3a\x91\xa0\x38\x86\xea\xe3\x0a\x70\xd8\x5a\x4c\x77\xad\xcc\xd1\x79\x2d\x95\x38\xad\x2e\x47\xa5\x4f\x1f\x23\x95\xcf\x14\x1c\x0c\x70\xb6\xf7\xa2\x90\x47\xde\xa3\x34\xcf\x59\x00\xe7\x91\x7c\xfc\xb3\x6f\xce\xc7\x3f\x35\xc6\xde\x93\x37\xfa\x46\x5a\x90\x0e\xc4\xcb\x84\xbd\xd9\xde\xaa\xd1\x84\xed\x0f\xf2\x76\xd7\x14\x3e\xe6\x42\x7b\xe3\x26\x11\xdb\xdc\x1c\xb3\xba\xd5\xde\xee\xb9\x4c\xa9\x11\x12\xfd\xb3\x28\x33\xc9\x49\x5d\x23\xb2\x6d\x4a\x48\x91\x34\x68\x00\xc8\x3d\x04\x1d\x06\x0a\xd3\x8f\x4b\xb9\x91\x67\x8a\x64\x0d\x26\x4a\x8e\x09\xe3\x9b\x2d\x2e\xc6\xed\xd8\x24\x7b\x69\x38\x0a\xc1\x29\x1e\x06\x98\x1c\x61\x52\xb6\xa1\xb5\x84\x8a\xeb\x45\x57\x96\x45\x60\xf2\x10\x97\x2e\x9f\x70\x2f\x5d\xc7\x19\xab\x47\xaf\xf2\x11\xee\x19\xcb\xa7\xb9\xbd\xb9\xbb\xf5\x89\x6d\xe7\x24\x5b\x55\x41\x6e\x58\x8d\x87\x34\xb8\x75\x09\xd1\x0c\x0a\x59\x57\xea\xba\x2c\x34\xb2\x88\x8b\x78\x37\xa2\xfd\x76\x9c\xb8\x14\xc7\x19\x24\x5c\xbd\xa4\x1c\xe4\xea\x19\x54\xce\x82\xb5\x2d\x6a\xbc\x09\xfc\xb6\x7c\x06\x88\x88\x37\x22\x22\x70\x7a\x83\xfc\x69\x6e\xcd\x92\x49\xf7\x12\x4b\x89\x88\xf0\x22\xbc\x78\x64\x9d\x66\x8c\x91\x6f\xe2\x1f\x24\x95\x90\xb9\x8e\x28\x0c\xb5\xa0\x40\x34\x82\x0a\x56\x5e\x26\xce\xa6\xdf\xa3\x56\x71\xa3\xb5\xd5\xc4\xcd\xce\x36\xed\x20\xcf\xfa\xca\xca\xec\xcc\xff\xfe\xa7\x5a\x21\x66\xda\xff\xd4\x7a\x0d\x01\x7c\x2f\x2e\x1b\xcc\xee\xf6\x36\x3b\xd1\xb7\xb7\x8e\x1a\x4e\xcf\x34\xa7\xa7\x9f\xa8\x5c\x0a\x62\x35\xe8\xd9\x6a\x25\xa8\xba\x0d\x04\x74\x32\x74\x87\xa8\xe2\xaa\xf3\xfe\xd8\x9a\xdb\xd7\xc9\xa9\xfd\x11\x2a\xb1\x4a\x27\x40\xc0\x2a\xc9\x47\x90\x6a\x6d\xc2\xe7\xaa\x32\x87\x8b\xd0\x04\x6a\xdd\x0a\x7e\xf5\x47\x34\x87\x7e\xdf\xd5\x14\x84\x74\x68\x18\xa8\x08\xc7\x4b\x9e\x87\xa6\x9a\x8b\x71\x6a\xd2\x36\x4b\x88\x9f\xa2\xe5\x7a\x8a\xde\x7c\xe2\xd8\x52\x26\xc3\x3e\xbe\x85\xae\x1e\xe2\x4d\xb8\x57\xa5\xed\xaf\x9e\x85\x12\xe1\xd5\xb8\xa3\xbe\xed\x74\x12\x8d\x13\x91\x4f\xdc\x45\x3b\x41\x4e\x68\x0c\x72\xc9\xe4\x6b\x30\xd0\x68\x35\x9c\x27\x25\x83\x3a\x64\x6c\xb3\xe8\xba\xb0\xd6\x2d\x66\x3f\x46\x54\xbd\x0f\x5d\x7b\xe3\x25\xa0\x57\x9b\x6d\x33\x28\x1d\x64\xc0\x59\x05\x4f\xf0\x31\x3b\xab\xc7\xc4\xa8\x01\x8e\xc5\xe4\x09\xaf\x03\xfa\xdb\x27\x58\x35\xed\x8e\x7b\xe1\xf0\xa5\x02\x14\xf0\xea\x70\xd5\x3b\xf6\xe8\x6e\x3f\xe5\x20\x90\x3f\x84\x23\x82\x91\x93\xcf\x13\xea\x07\x44\x4d\x98\x08\xf9\x18\x45\x02\xd1\x28\x06\x80\x59\x95\x18\xaa\x17\xae\xbf\x1e\x14\xc9\xde\x24\x50\xda\x9e\xf5\xad\x76\x67\xff\xfc\xfe\x2a\x85\x5a\x9b\x68\xbc\x34\x13\x68\xa3\xfd\xfc\x0a\x9a\x5e\xda\xc4\x19\x53\x58\x9e\x3a\xd0\xec\xc6\x65\x83\x66\xb5\x46\xf9\xfa\x6b\x0a\x41\xb9\x29\x4b\xaf\x5d\xa0\xe5\x2b\x1a\x55\x67\x02\x93\xdc\x42\xbf\x7d\x7e\x4a\xa4\x97\x4f\x30\xef\x23\x3e\x06\x2f\x71\x67\xa4\x65\x53\x2c\xdb\xb2\x70\xa9\xb6\x27\x90\x9f\xf7\x64\xf2\xd8\x7c\x30\xf9\x1f\xb9\xab\x95\xe3\x9a\xa8\xf6\x45\xe8\x7f\xab\x55\xad\x65\xf9\xde\xfa\x44\x3f\xdf\xcc\x6d\xdf\x9a\xa4\x11\xa8\x06\x7f\x34\x0c\x21\xcb\x8f\x2a\xdb\x22\x15\x93\x2d\x34\x09\x68\x01\xed\x72\x61\xa7\x1c\xd7\x70\xf2\x54\xcb\x7c\x50\x8a\x98\x3f\x2e\xa2\x01\x05\x1e\xac\xa9\x4b\xcc\x8b\x8a\xf4\x1c\x05\xaa\x73\x34\xcb\xea\x15\x1e\x42\x28\x79\x9a\x14\xbb\x4e\x8f\x55\x59\x5d\x59\xb7\x5c\xcd\x9c\x3e\x54\x83\x32\xbb\x88\x32\x3e\x92\x8c\xe9\x67\x45\x19\xf7\x4d\xba\xbc\x2c\xe4\x4e\xc8\xe9\x81\xc6\x91\x63\x4f\xfc\x91\xdb\x38\x2d\xca\x20\x24\xef\xa9\x7d\xc2\xb8\xd0\xa9\x31\x6b\x02\x26\xa8\x7e\x56\xd8\x1c\xa5\xe3\x71\x82\xbf\x87\x23\xa9\xf0\xd6\x2f\xf8\xf2\x97\x9b\xed\x64\x50\x94\x5a\x36\xde\xbc\x12\x41\x2c\x87\x68\x19\xf2\x41\x07\x64\x84\xb0\xf5\x0f\x49\x61\x4a\x10\xc4\x04\x14\x7f\x51\xd6\xfd\x29\x9a\x75\x5c\xcc\xf2\x45\x1b\x97\xc6\x75\x21\x66\x0e\x06\x6c\xb5\x97\x04\x1d\x27\xa8\x52\xb1\x0e\x78\x34\x69\x71\x91\x10\xf1\xf9\xb1\xb8\xf0\xf9\xe6\x6a\x0c\x63\xf9\x6a\x18\x23\x08\x23\x05\x63\x31\xdd\xf4\x4c\x33\xb7\x5f\x19\xf8\xba\x89\xb7\x20\x3e\x25\xbe\x48\x30\xe3\x05\xd3\x5e\x5e\x72\x14\x39\x85\x5b\xd4\x5e\x92\xbb\x5a\x74\x2a\xdc\x1d\xf6\x9f\x58\xc9\xc7\xe1\x5e\xe1\x8d\xee\xb1\x5c\x91\xd4\x36\x71\x71\x0f\x9c\xcb\x80\x05\x44\xf7\x1c\x35\x71\xd0\x18\xf8\xe1\xc8\xea\x77\xbd\xa7\xde\x42\xf1\x36\xe7\x91\x3d\xe1\xed\xdc\x06\xcc\x68\x04\x72\xa3\x44\x15\x01\xd8\x78\x8c\x35\xc6\xdf\x19\xeb\x89\x4e\x4f\x37\x4b\x9b\xd8\x7e\x37\x4b\x85\x19\x59\x3d\x11\x31\x75\x9c\x1f\x29\xd1\xe5\x0b\x6b\x0d\xaa\x19\x1c\x23\x02\xd4\x63\x54\x96\xec\x9b\x35\xd1\xc9\xd4\xde\xcf\x61\x77\xef\x42\x7a\xea\x5c\x84\x12\xa0\x92\x7c\xe0\xe1\x1a\x42\x88\x03\xcd\xc5\x78\x69\xe0\xc1\xdc\xf0\xf8\x67\x59\xc2\xf6\x2c\xd5\x04\xaa\xd7\x1e\x17\x31\x6a\x02\x33\x07\x03\x7e\x7a\x7f\x38\x21\xf9\xe2\x4e\x5c\x98\xa5\xdc\x5a\x58\x1b\xa5\x21\xad\x5e\x06\x4a\x5e\xd2\x36\x92\x7f\x70\xab\x5a\xfe\xc1\x4f\xdb\xf5\xac\x49\x8b\xbd\x5c\x33\x84\x23\xf7\xe4\x98\x41\x7b\xe5\x32\xb7\x96\xde\x19\x06\xd5\x68\x99\xcd\xd5\x9c\x97\xf0\xc8\xe7\x86\xbc\xc5\x09\xd9\xf5\x39\xe6\x1d\xd9\xb5\x5e\x3b\x29\x97\x9a\x3c\xcf\x56\xdd\x2e\xd3\xe5\xd4\x20\x52\x1f\x6d\x77\xa4\x66\x69\xc9\xcf\x48\x21\x00\xfc\xba\xfb\x59\x26\x88\x10\x18\x82\x2f\x29\x74\xb3\x5e\x96\x64\x4b\xd9\xa0\x98\x08\x10\xd9\xdb\x44\xd7\x27\xe3\xe9\x5a\x52\xd1\xcf\xf5\xb2\x34\x2e\xb3\xbc\x5a\x1d\xc1\x90\x3d\xe1\x02\x3e\xac\x5f\x89\x54\xf1\xf8\xd6\x91\x55\xc0\x5b\x3c\xba\xbe\x35\x6b\xad\x72\x37\xc4\x79\xb1\xcd\xd1\xe5\x42\xb9\xf7\x12\x0f\xbf\x5e\xf2\xd0\x84\x25\x6b\x20\xe4\x03\xbf\x82\x7c\x4d\xf5\x66\x47\x46\x7a\xdd\x5b\x43\xae\x7d\xbd\x26\x2e\x68\xae\x9a\x64\xd9\x19\x0b\xd1\x18\xc0\x6b\x56\xc1\x81\x9a\x6e\x6d\x3b\x1b\xa4\x85\xf5\x50\x13\x3c\xa3\x5b\x1c\x1b\x8e\xeb\x55\xce\x1c\x6c\xbe\x66\x57\xe3\xa2\x0b\x07\xa0\xe3\xbf\xe1\x59\xdd\xa7\x84\xf0\xe7\x75\x7d\xff\x4e\xd6\x2e\xb3\x5c\xab\x37\xe8\xb0\x7c\x13\x6b\x5a\x4e\x6a\x3a\xff\x07\x2a\xd7\xbd\x18\xe7\x3d\x57\x94\xc1\xbc\xe4\x08\x4a\xe2\x1e\x91\x5e\x04\x56\x46\x5b\xb6\x5f\xc0\x3e\xd2\xee\x22\xc9\x3f\xb9\x2d\x01\xf3\xf8\x63\x17\xee\xc1\x22\xde\x1b\xaf\x22\xcf\x38\x68\xb0\x2b\x19\x20\x9d\x38\xe7\x2c\xa8\x1c\x8f\x18\xa3\xfe\x60\xa1\x41\x60\xf7\x77\x48\x87\xea\x1d\x1a\x5d\x4f\x07\xfd\x1d\xa1\xd4\xf5\x00\xd6\x59\x6b\x9e\x34\xfd\x88\x80\xcb\x07\xbe\xa1\xb9\xfa\x77\xb5\x66\x09\x3a\x49\x50\xbf\xf6\x8d\x51\xdf\x88\x07\x25\x89\xe6\x40\x75\xe2\xa7\xdd\x01\xca\x96\xe8\x35\x49\xe8\x27\x27\x35\x53\x2d\x71\xda\x89\x57\xe2\xce\xa0\x8a\xbc\x66\x67\x37\xd1\x8e\xdb\x1c\xc7\xff\x4c\x4f\x37\x4d\x6a\x92\xb5\xaf\xaa\xc5\x54\x80\xbc\x33\x31\x8a\x71\x27\xa6\x64\x37\x22\x66\xd2\x72\x77\x00\xf4\x6e\xf2\x28\xd1\x25\x04\x02\x2a\x40\x43\xd2\x08\x52\xc3\x92\x7f\x61\xd8\xd4\xd5\x61\xa8\x70\x3c\xe0\xa5\x73\x36\x7a\x9c\x68\x7b\x16\x6c\x3e\xe9\x3e\x25\x8b\x8c\x44\xba\x37\x86\x01\xc8\x00\xb4\x28\xa2\xf7\x71\xc2\xec\xb9\xb9\x66\x99\xf5\xe3\x76\x23\xf0\xd1\x5f\x20\x3e\x89\xf1\x09\x9b\xe7\x9b\xf9\x00\xd4\x79\xb4\xfb\xc0\x4b\x24\xc7\xb5\xbc\x44\xed\x7c\xe0\x04\x6b\x47\x98\x85\xc2\xef\x40\x31\x01\x35\xbc\x8f\xeb\xf6\x22\x4a\xfb\x05\x2b\xd8\x6c\x9d\x9d\xf2\x2d\xee\x24\x5b\xd3\xd7\xa7\x1a\x2a\x0d\xaf\x36\x38\x0e\x85\xad\x22\x79\x87\xd5\x31\x6e\xb7\x13\x72\xe4\x32\x45\x62\x97\x47\xc6\xc9\xe3\x3c\x5b\x33\x09\x97\xb3\x4f\xbb\xe6\x87\x1c\x47\x9f\xf6\xc1\xeb\x08\xba\x4e\xa6\x0e\x44\xbd\x1b\xeb\xc4\x03\x05\xab\x75\xa2\xfd\xba\x11\x3d\x98\x65\xfb\x69\x02\x0b\xca\x88\x8a\x50\x51\xa0\x27\xa6\x0d\x67\x82\x97\x1d\x25\x08\x54\xc3\x69\xf2\xc1\xcb\xec\x6c\xe1\x1a\x90\x0f\xdc\x90\x06\x39\x92\xa6\xb3\x11\x89\x8b\x9f\x25\x96\xb3\x1f\x20\x60\x42\x24\x05\x8d\x66\x54\x62\x77\xac\x07\x0a\x03\x59\xaa\xda\x77\xd8\xfe\xeb\x1e\xb8\x12\xea\xf0\xa2\x3a\x82\x7a\xf6\xfd\x61\x58\x74\xc2\x63\x0c\x83\x77\x1d\xdb\x8d\x18\x6f\x02\xcd\xa1\x33\x39\xb8\xaa\x6d\xad\x30\x63\x63\x8b\x85\xc9\xd0\xf0\x94\x98\x4e\x17\x7d\xf5\xfb\x2a\xbb\x13\xf4\x09\x4e\x47\x4f\x8d\x51\x3c\x7f\x7e\xaf\xfb\x65\x54\x6c\xff\x39\x6e\x08\x7d\x6e\x68\x16\xa8\x09\xa7\xee\x07\xe6\x62\x70\x7b\x17\x59\x1e\xf8\x22\xa1\x3a\x3f\x40\x28\xea\x45\xb0\xaa\xc7\x2c\x1f\x91\x7a\x16\x4a\x8e\x27\x6b\xb1\x64\x8b\x20\xa0\x84\xb9\x56\xfc\x4a\xf5\xe5\x0a\x5f\xa9\x49\xa5\x59\x98\x16\x65\xa6\x9d\xad\x00\x40\xde\xb9\x1e\x46\xc0\xe2\x45\x83\x51\x6b\x16\xda\xc2\x64\xe8\x99\x51\x4a\xec\xba\xce\xce\x4a\x9c\x25\x3a\xc0\x83\x10\xec\x1b\x94\x2b\x7e\x83\x54\xd8\x8a\xb5\xb4\x93\x67\x3d\xd4\x72\x05\x6c\x11\xa4\xb0\xd7\x2f\x11\x54\xbc\x1f\x27\x45\x96\xa2\xdc\x89\x85\x7a\xce\x15\x2d\x94\xcb\xd8\x5d\x15\x1e\xff\x9f\x8f\x99\x1b\x17\xbd\x01\xee\xdc\x08\x03\x9e\x27\x23\x92\xec\x3c\x59\x9b\xce\xf7\xcc\xeb\x8e\xfa\xa7\xfa\x90\x32\x93\x35\x68\x04\x9d\xe9\xbd\xec\x33\x44\xf7\xb8\xdd\x8d\xf3\xa9\xaf\xdf\xfe\xeb\x41\x25\xb4\xca\x9f\xd8\x89\x2b\xc4\x99\x64\x04\xdf\x13\x72\x14\xbf\x82\xaa\xad\x8e\x75\xf6\x99\xf5\x6a\xdf\xe2\x01\xbc\x8b\x6d\xe0\x4a\x1d\x83\xa7\x5a\xbe\x13\xb5\xb2\xc7\x41\x4e\xbc\x0c\xed\xfc\x94\xb2\x86\xbd\x25\x1e\x06\xc1\x27\x86\xb1\x50\xe5\x3e\x8a\x88\x1e\x11\xda\x79\x98\x10\x7c\xd9\xbb\x70\xa4\xf8\xb6\xeb\x30\x07\xd8\x79\x2c\xc0\x39\xd9\x7a\x24\xc4\xef\xa0\x02\x95\x21\xa7\x88\x07\x9e\x9e\xd9\xba\xbd\x0e\x34\x0f\x4d\x3d\xd5\xf0\x1a\x4a\x37\xa2\x10\xa7\x7c\x18\x8d\x28\xb1\xf9\xde\xfa\xae\x56\x88\x10\x7e\x8a\x67\x83\x52\xc9\x4e\x30\x4a\xe0\xb7\x6e\x70\x07\x5e\xe2\x42\xbc\xb5\x8f\xd0\x30\x54\x08\x8f\xbb\x21\x7c\xc1\x03\x62\x09\xdf\xbb\xee\x1e\x88\xb2\xe9\x37\xbe\xf0\x7b\xa1\xa2\x16\xf8\xbf\xa1\x9d\xa0\xa8\x05\xf7\xfe\x01\xa9\xf8\xd3\x21\xa9\x77\xbc\x49\x2d\xbd\xd5\x3c\x4b\x97\x3a\x99\x78\xcb\x39\x1f\xcf\x93\xf8\x62\xad\xaa\x74\xcf\xac\x65\x39\x62\x95\xda\x02\x8c\xa7\x5d\x77\xa3\x68\x3e\x53\x87\xdd\x39\x4a\x78\xd6\xa3\x35\xac\x6a\x73\xae\x19\xd1\x08\x58\xfe\xf7\x49\x8f\xe0\xfd\x68\x2b\x40\x71\xe6\x60\xd3\x74\x7a\x71\x1a\x17\x65\xee\xbc\x18\xca\xae\x5e\x43\xc6\x13\x3e\x9f\x89\x82\x24\xec\x8b\x90\x59\x46\x8a\x79\x8f\x67\x48\x2e\x39\x18\x15\x22\xf0\x33\x81\x66\xb7\x9b\xf5\x93\x78\x31\x50\x50\xab\xa8\x7d\x80\xe9\xde\xa1\x41\xdb\x8e\x35\xc9\x63\xce\x93\x20\x10\x97\x14\xd0\x8b\xf6\x54\xef\x0c\xfd\xd0\x0b\xc8\x2d\xf0\x66\xb7\xad\xbb\xf7\xa4\x9c\xef\x9c\x8a\xbb\xdd\x01\xb4\x90\x90\x40\x61\x77\xdc\x19\x86\x79\x95\xfb\x68\x0e\xc9\x17\x0f\xc3\x10\x94\x6c\x14\x65\x99\x6f\x84\xdf\x18\xb3\xcc\xfb\xe7\xf7\x37\x17\x4d\x9c\xeb\x4c\x89\x0a\x30\x54\x3f\xaf\xed\x6e\x52\x3d\xce\x63\x93\x38\x35\x78\x4c\xf1\x7e\xe0\x7e\x54\x8e\xa3\x11\xaa\xbe\x50\x67\xbf\x4e\x74\x75\xdf\x60\xc9\x88\x77\xc7\x4a\x43\x9f\x27\xa2\x37\x25\x08\x27\x56\x87\x23\x64\xbd\x17\xad\xb4\x90\x42\x01\x12\xa2\xf3\xaa\xb1\x11\xae\xda\x2c\xa5\x76\x55\xb2\x26\xec\xaf\x9f\xc3\xac\xc8\xc9\x78\xc5\x69\x1a\x10\x2e\x81\x17\x0a\xe8\x28\xa2\x2c\x34\xa8\x3b\x14\xfd\xd8\x2e\x59\x69\x73\x22\x20\x3f\x42\xf0\xab\x73\x3c\xec\x7d\x93\xf2\x98\x7d\x2b\x6b\x0d\xf2\x00\xea\x76\x95\xcb\x62\xeb\x36\xd9\x37\x27\xa8\xca\xc6\xa1\xa9\x4d\x17\xa9\x6e\x8e\xc7\xc2\x95\xff\x4b\xb2\x4c\x20\xa2\xb0\x3e\x3f\x24\x8c\xda\x0f\xeb\x52\x97\x38\x5b\x35\x8d\x00\x1f\xbc\xc8\x94\x12\x17\xa9\xba\xd2\x36\xc5\xc0\x24\xe5\x1a\x6b\xe9\x49\x13\x57\x4e\x7c\x15\xa5\xe8\x0f\x3a\xc0\xbe\x29\x0b\x7f\xd8\x36\x27\x99\xfb\xe9\x2e\x15\xd0\x7b\x99\x23\x19\xde\x15\x3a\x41\x1b\x11\x8d\xbe\xbe\xcf\xc5\x03\xb4\xbf\x91\x42\xff\x82\xc1\x60\x70\x24\xaa\x1e\x10\x90\xea\xdb\x5a\x01\x4f\x54\xc6\x3d\x5b\x7c\x8a\x8c\x06\xd4\x03\xd0\x78\xbc\x02\x93\x2c\xae\x88\x3b\x1e\x77\x88\xd7\x60\xa7\x9b\x6d\x54\x5a\x3b\x17\x8b\x2a\xe8\xdf\x2d\x57\x6c\xe2\x91\x7a\x13\xa6\x70\x74\x0a\xaa\xba\x7c\x04\xa6\x13\x2d\x22\x1f\xda\xd1\xe2\xb0\x2c\x0a\x43\xf9\x8d\xf5\xca\x07\x08\x00\x28\xa2\x31\xc0\xcb\xce\x67\xc1\xa5\x6e\xf8\xba\x8c\xe9\xbc\x36\x28\xa4\x8e\xeb\x25\x7b\x91\x9f\x68\xc7\xa6\x8e\x10\xab\x48\xb2\xa5\x02\x15\x70\x95\xb7\x73\x4f\x43\x4e\xfc\x14\x5a\xd1\x76\x50\x48\xd4\x98\x04\x07\x48\xa4\xae\x48\xbd\xd1\x66\x3a\x3f\xfc\xb5\x4f\xe8\x40\xf7\x73\x9b\x38\xee\xee\x1c\xe0\x5f\x84\x18\x12\x16\xc9\x89\x67\x7b\xc9\x6d\x62\x5e\x77\x2e\xa2\x96\xa2\x95\xb8\x2c\xb1\x4a\x63\x9d\x1c\x82\x91\xbf\x1d\x85\x78\x72\x7c\x52\x6c\x76\xb6\x69\xd3\xea\x61\x15\x2c\xc8\x7b\x09\x3f\xa1\x7a\x01\x75\xf8\x2e\xb3\x98\x9b\xb8\x43\xd2\x09\x28\x7c\x2b\x49\xdc\x13\xfe\xe2\x97\xe3\xd4\x49\x11\x1f\x9a\x92\x50\x0c\xa8\x3f\x39\xa6\x4e\x44\x9c\x96\x36\x75\x9c\x67\x49\xc3\x2d\x2b\x54\xf0\x84\xcf\x4b\x4e\x28\xdf\xcf\x6d\xdb\xc6\x2b\xae\xfe\xe6\x61\x39\x52\x73\x93\x13\xd8\x4f\x64\xb2\x52\x8c\x94\x93\x51\x91\xcf\xf6\xda\xee\x6a\x89\xf9\x90\xc3\x4f\x90\x5f\x84\x33\x41\xff\xf4\x4a\x44\x62\x24\xff\xc6\xbd\x67\xdc\x04\xa2\x17\x84\x9c\x12\x0a\x21\x16\x39\x86\xdf\x94\x93\x1a\x93\xf5\x6a\xb3\x72\x3f\x92\x1f\xeb\xf4\x4f\x80\xac\xdc\x22\x0e\xeb\x5e\xd6\x89\x17\xe3\xb6\x03\x89\x15\x3b\xc2\xee\xb8\x11\x11\x5d\x32\xc8\x6e\xb0\xe9\xc4\xce\x6b\xa6\x4d\x49\xd8\xe5\xad\xd1\xe0\x4b\x33\x55\x6a\xb3\x3b\xa4\x24\x97\xf0\xcc\x85\x7e\x2f\x1a\x65\x2b\x3f\xa4\x4d\x3e\x68\x90\x8a\x36\x50\xc4\x18\xac\x40\x48\x73\x0e\x3e\x5f\xad\x52\x9d\x4a\xf7\x60\x41\x27\x5e\x80\xb5\xfe\x25\x4d\x85\xfd\x92\xc6\x0f\x8a\x32\x8f\x97\x6d\x31\x19\x0a\xf5\x23\xd2\x5a\xd7\xa8\x32\xf7\x0b\x2e\x43\xff\xa8\x06\x29\xd3\x5c\xb0\x6e\xc4\xda\xf5\x1e\x95\x56\x32\x10\xbf\x4d\xb8\xd6\x9e\x1f\xd6\xf3\xe3\x31\x27\x86\xa1\xd9\x62\x8a\xc2\xf6\x16\x92\xb5\x9e\x00\x1a\x50\x0c\x7f\xc0\x1a\x52\xe3\xf5\x53\x35\x00\x65\xae\x18\x7b\x00\x10\x37\x19\x35\xbb\x49\xec\xf6\xbd\x41\xd1\x1e\xa8\x18\x8d\x98\x18\xc2\x55\x61\x82\x01\xab\xe5\xed\x91\x4a\xc5\xeb\xca\xf8\x2f\x09\x88\xfb\x90\x26\x23\xe4\x79\x06\x69\xc7\xa4\x68\x9d\x79\x7a\xcf\xb0\x82\x51\x0b\xf2\xb3\x81\x61\x35\x8f\xd7\x78\xa7\xa7\x9b\x8b\x59\xbe\x64\xc1\x2a\x88\xf0\xed\x2e\x33\xd5\x5d\xa4\x16\xf5\x29\x16\x17\xcc\x07\xbd\x85\x04\xac\x1a\xda\x00\xad\x2e\xd6\xf3\xea\xce\xeb\xc8\xf1\x9d\x1a\xbd\xe3\x03\xcd\x7e\x36\xc8\x61\xf0\x60\x8e\x21\x39\x24\xc7\xde\x10\x15\xcb\x71\x8e\xc1\x06\x1f\xd5\x6c\xa7\xcc\x6d\xfb\xba\x67\x81\x48\x6c\x1e\xb7\x25\x95\x02\xda\x03\x7f\x28\xc7\x7e\x26\xb4\x6b\xd2\x4e\xdc\x36\xfd\xbe\xed\xec\x64\x6a\x0f\x84\x40\x78\xd4\x9b\x43\x22\xee\x01\xa0\x5d\xbb\x48\x24\x32\x3b\x89\x32\x92\x32\x87\x86\xe8\x2d\x37\x71\xb5\x46\xa7\xa7\xbd\xfe\x6a\xc3\xb3\x86\x6c\x92\x32\x09\x68\x10\x94\x64\x3d\x04\x5a\xcb\x59\xd6\xf0\x83\x07\xff\xc3\x36\xfc\x8c\x9c\xac\x3f\x13\xda\xdb\x8b\xb6\x23\x9a\x94\x0d\x12\x71\x83\xa1\xd6\x5d\x10\x7a\xc0\x7d\x6b\x4a\xdb\x49\xd6\x1c\x97\x93\x17\x86\xad\x36\x1c\x82\xca\xf3\xb8\x69\x25\x1d\xab\x2e\xd3\xf7\x2d\x0f\x69\x21\x1d\xad\x7e\xf7\xe9\x4f\x3d\xdb\xaa\xb3\x0b\xfd\xe0\x67\x7d\x8d\xca\x53\x65\x80\xef\x4e\xa7\x27\xc7\xcb\x88\xaf\x56\xe6\x62\xb0\xb4\xe4\xfb\x14\x7e\xa2\xa4\xfa\x3e\xad\x78\x8c\x5b\xe4\xca\x20\xfb\xc4\x47\x66\x9c\xa8\x37\x71\x9e\x2a\x8f\xb9\x5d\x32\x79\x47\xad\x37\x96\xd1\x5d\x62\x70\xbc\xeb\x1b\x0a\xc5\x20\x2d\xd0\xf9\xc0\xfa\xde\xb5\xce\x8a\x86\x02\x75\xd5\xa8\x32\xbc\xfd\x24\x2e\x20\x56\xf7\x62\x80\x47\xf8\x12\x08\xfc\x04\xa2\xa5\x1f\xd5\x4d\x12\x3a\xbc\x3d\xa0\x80\xc0\x3c\xdd\x81\x37\x92\x93\xb1\x8f\xcc\xce\x36\x13\xd3\x2f\x33\x19\xe4\x64\x80\x0d\x98\xda\xa1\x03\xa0\xa2\xeb\xa1\xdc\x57\x98\x72\x57\x65\x22\xbd\x75\x9a\xdf\xef\xdb\x05\xd5\xfb\x86\xf7\x94\x59\x69\xbc\xb1\x2b\xee\xe5\xcb\x1f\x8d\x9a\x33\xff\x56\xaf\x44\xbf\x12\xe8\x30\xba\x26\x4f\xb2\xb2\xb4\xc5\x4a\x9c\x24\xb6\x31\xa6\xbd\xa7\x05\xfe\x67\xfd\x22\x2d\xe3\x34\x5b\x48\x4c\x51\x66\x3d\x33\xc9\x8c\xef\x23\x5c\xee\x61\x05\xa3\x22\xa7\x84\xef\x61\x1a\xc4\x76\x96\x6c\x67\x67\x75\x4f\x60\x4f\x6a\xac\x57\xdb\xd1\xeb\x3c\x56\x4f\xd4\x43\x5e\x2a\xbb\xa9\xbc\x6f\x81\x96\xe8\xd1\x56\x10\xf4\xbc\x5e\x97\xdc\xf4\xac\x2d\x05\x4f\xe8\xb5\x48\x3c\xbd\x8f\x70\x77\xe8\x50\x4f\xb8\xb0\xc5\x2c\x59\x2e\x26\xaa\x0b\xc3\x32\x02\xf4\x96\xd9\xcf\xb0\xd1\xb6\xb5\x6a\x24\x8a\xdd\xdc\xdf\x04\xa3\xf7\x50\x13\xc3\x55\x9e\xe6\xc4\xed\x1e\xe5\x29\x45\x3b\xb6\x69\x5b\x9a\xcc\x88\xe7\x51\x0c\x41\x1e\xfe\x11\x91\x49\xde\x62\xbd\x96\x1f\x8d\xf2\xb9\x24\xe5\x13\x55\x0e\xe1\x3b\xe0\xf3\x53\x6a\x3b\x4f\x30\xb5\xd6\x65\x1e\x32\x99\x6c\x51\x04\x39\x0c\x02\xe1\x42\x77\x8f\x07\xf7\x0f\xcc\x06\x06\x2d\x20\x1c\x63\x20\x19\xc1\xdf\xf7\x22\xd2\xf5\x3d\x81\x57\x28\xbf\xc1\x02\xdd\x02\x7e\x50\x31\xb1\xea\x7d\x6a\xfc\x5a\xd3\xb8\x59\xed\x66\x12\xc4\xd4\x11\x6f\x8c\x68\x50\xc6\x45\x59\xd9\xd9\x2a\x1e\x53\xd6\x31\x62\x20\xab\x2d\x3a\x67\x7d\xa8\x87\xe1\x85\x21\xc6\x96\x4a\x8e\x9c\x50\x41\xd4\x64\x4e\x6c\x60\x3f\x73\x16\x1f\xd8\xbc\x32\x0c\x41\xea\x1d\x49\xb8\xfd\x13\x0c\xea\x08\x8c\xeb\x5b\x34\x71\x0e\x56\x7c\x40\x8e\x91\x79\x2a\xa3\x17\x31\xf4\xdf\x8d\x08\x1d\xfe\x80\xbc\xdc\x3d\x52\x9d\xbb\xe2\x53\xe4\xc5\x3c\xfb\x2a\xd0\xc6\xea\xee\xdd\x8f\xc8\x49\x10\xf7\xb2\x50\x86\xf1\x54\x20\xe8\x72\xcb\xb1\x77\xec\xa5\x05\x45\xde\x24\xe9\x57\x89\xae\x24\xb0\x40\x28\xe8\x90\xfd\x0f\x60\xe3\x4f\xfb\xf7\x62\xd3\xd2\xf5\x87\x52\x3b\xc8\x25\x15\x52\x5d\x45\x77\x6f\x2a\x34\x1c\xf6\x5f\xc7\x8d\x77\x34\x02\xaf\x0b\xd5\x5b\x43\xd8\xd1\x4f\x8c\xeb\xd0\xed\x18\x65\x8c\x77\xb6\x10\xe9\xd5\xdd\x61\x18\x82\xda\xed\x8c\x10\x3c\x81\x28\xc2\xe2\x1f\x1e\xfa\x49\xb6\x7e\x9e\xf5\xe2\x42\xe7\xd2\x65\x1a\x87\x84\x10\x84\x7d\x09\xe6\xfb\x2f\x7d\xda\xba\x6a\x8a\xa0\xf8\x00\xaf\x81\x9d\x2b\xc7\x24\x49\x98\x40\xae\x0f\xdf\x00\x4d\x1f\x14\xb6\x6e\xe0\xab\xe1\xd7\x1f\xb0\x20\x45\x6e\x16\x4d\x89\x25\xad\x4d\xe0\x6a\x49\x6b\x0f\x58\x81\x74\x71\xba\x98\x18\x61\xb5\x0e\x20\xe0\x37\xdf\xa2\x69\xf1\xb7\x7c\x71\x29\xb7\xa5\x89\x15\x67\x8d\xfd\xf9\xd0\xd9\x45\x6f\x1c\x78\xc6\x41\xab\xb0\xb6\x33\xa8\x72\x24\x71\xfa\x04\x37\x79\x91\xb4\x64\xb7\x16\xde\x06\xfd\xc9\x90\x85\x43\x7f\x59\x01\x39\x95\x7d\x55\x5c\x45\x18\x3b\xb8\x19\xd1\x2e\x89\x93\x84\x5b\xa9\xd0\x9b\x42\xba\xfa\x73\xf7\x62\x60\x42\x1e\x8e\x36\x12\x13\xeb\x6c\x20\xf2\xf2\x2b\x23\x92\xdf\xcc\x7a\x76\x05\xb7\x89\xb4\xec\xad\x21\x99\x7b\xb7\xaa\xd1\x49\x9b\x18\x19\x9a\x45\xd6\xeb\x29\x30\xf6\xcd\xb1\xba\xa9\xe2\x51\x8e\xb8\x2b\xf3\x8a\xf6\x41\xf6\xf4\x81\x74\x2a\xa4\x53\x42\xf3\xc8\x42\x2f\xa8\x7c\x1a\x81\x5f\x62\xb5\x1b\x97\xb6\x5a\x60\xf0\xcb\xca\xbc\x1d\xd0\x3a\xe7\x82\x72\x58\xb5\xcd\xd2\x76\x57\xa3\x26\xac\xa5\xef\x90\xe4\xf0\x77\x68\xa4\x3d\x31\x0b\x36\x91\x08\x48\xe7\xdf\x1a\x34\x25\x1f\x6a\xeb\x77\xc6\x4a\x2d\xb3\xb3\xcd\x62\xd0\xcf\xcd\x0a\x04\x27\xaa\x1c\xaa\x11\x6a\xb1\x88\x4a\x15\x0d\x55\x83\x7f\xce\xed\x62\x9c\xfa\xf8\x53\x87\xb0\xaa\x2f\xf0\x24\x8a\x3e\x30\x0a\xb1\x71\x15\xa7\x98\x76\xe9\x14\x79\x42\x4c\x27\x7c\x38\xe8\xdc\xa9\xe4\x8c\x2a\x6a\x3c\x4e\x2a\xc3\x69\x09\xa9\x6d\x3c\x62\x70\xcf\xe9\xb4\x47\x23\xa8\xad\xd3\x10\x79\x08\xc6\x77\x54\x99\x2c\xde\xe7\x89\x21\x11\xea\x5e\x26\x9d\xf6\xaf\xb9\x8b\xf6\x10\x05\xaf\xde\x79\x82\xc6\x34\x4d\x9c\xf7\xb3\x1c\x49\x9c\xda\xcc\x6a\xd5\xa9\x86\x78\xf5\x29\xd8\x8c\x9b\x51\xe8\x5b\xf6\x4d\xdc\xd9\x13\x54\xb9\xd0\xda\xf5\x0c\x9d\xd5\xb2\x51\x72\x04\xd2\x34\x93\xa2\x84\xa7\x90\x39\x34\xa5\xff\x40\x18\xca\xab\xd4\x3b\xbf\xcc\xd5\x9d\xbb\xd4\x83\xc8\xe3\x62\x79\x27\x01\x17\xef\xa1\xe7\x2c\x9a\x3a\xc3\x7a\xdc\xfb\xe9\x88\xc8\x31\xfe\x8c\x8c\xe1\x37\xc8\xca\x57\xa9\x20\x1a\xb7\x98\x82\x7c\x1f\x97\x20\x27\xd1\xaf\xd6\x4c\x1f\x41\xab\xab\x88\x17\x62\x5f\x45\x17\x58\x4e\x14\x60\x3d\x17\x6b\x68\x0e\x5e\x6c\xe6\xa6\x6f\x0b\x2b\x2c\x0e\xbe\xc8\x19\x94\x20\x7d\x8f\xa6\x93\xdb\xa2\xe8\x39\x12\x2f\xf7\xa6\x14\xb6\x43\x55\xc9\xdb\x04\x4c\xdf\xde\x52\xa7\xda\x8d\x97\xba\x36\x7f\x34\x68\x07\x81\x4c\x0e\x25\xe9\xc7\x1d\xb7\x1d\x02\xe5\x4f\xa3\x90\xe5\xbc\xed\x7f\xf9\x59\xe6\x56\xff\x2f\x5a\xc4\x12\x7f\x97\xb0\x51\x7b\xd6\x69\xa2\x5a\xfc\x90\x97\xc1\xe4\xa0\x79\xbf\x2f\xdb\x5e\x14\xcc\x83\x0e\xcd\x3e\x49\x0a\xf5\x71\xba\x90\xad\x36\x82\x95\x43\xd4\xa7\xa0\x82\xa0\xed\xd8\x5e\x96\xf2\xa2\x66\xad\x24\xe4\x73\x76\xac\x02\x73\xf0\xe5\xa6\x5d\x31\xc9\x40\xa6\x2d\x3d\xef\xf3\x2f\xdd\xe3\x92\xe3\xda\x52\x9d\xeb\xef\x39\x0e\x6b\xec\xa0\x0d\xa2\x5f\xdf\x24\xc0\xd4\x33\x2d\xe2\xa2\x7e\xc0\xa2\xfb\xd9\xa0\xb4\x6e\xaa\xd8\x4f\x1b\x54\xcf\x4b\x73\x17\xca\x63\x86\x21\x17\x39\x46\x58\x96\x9b\x63\x24\x1e\x55\x70\x68\xd3\xd2\xe6\xfd\xdc\xa1\xdf\x61\x5b\xe0\xae\x6f\x73\x53\xea\x36\x81\x72\xda\x49\x9c\xda\x62\x37\xfe\x56\x45\x13\x1a\x5e\x09\x5f\xc2\x31\xe5\x66\x70\x37\xe3\x73\x84\xf9\x29\x6f\xdf\xa9\x3c\xfe\x0c\x52\x58\x9d\xf6\x27\xb5\x93\x4b\x35\x73\x92\x33\xcd\xb6\x11\xed\x70\xb8\xbf\x53\x44\xae\x7b\x8a\x48\x81\x73\x5b\xd9\xff\x1d\xee\x72\xd0\xcb\xb8\x30\xa4\x79\xc5\xf7\x18\x70\x73\x0c\xde\x49\x4e\x86\x24\x7d\x7d\x23\x1a\xe7\xb4\x3e\xd0\xec\x99\x74\xb0\x68\xda\x4e\x35\x18\xd2\x7c\x8a\x26\x75\x1f\x55\xf6\x4a\xf7\xdb\x08\xa4\xef\xd5\x91\xfc\xb4\xb3\xb4\x28\xab\xb5\xea\x96\x92\x30\x41\xba\x57\xa9\xac\x90\x35\x13\x60\x85\x35\x6e\x14\x35\x50\xe2\x4b\x34\xa3\x23\x44\xe3\xa2\x15\xab\x26\x4f\xf5\x42\x35\xab\x20\x16\x46\x81\x11\x23\xe0\xba\xbf\x55\x2f\xfd\x95\xfd\xd5\x42\x39\x80\x50\x4a\x13\x22\x62\x4c\xbb\x43\x21\xcb\x65\x1a\x8d\x5c\x8d\x97\x84\x26\x0b\xb1\xd3\x69\xb7\x03\xe5\x78\x0c\xf0\x38\xe7\xa4\xed\x51\x60\x13\x7b\x3d\x62\xbb\x43\x86\x12\x67\x85\xe3\xf9\xf5\x6a\xbc\x1e\x66\xf1\xef\x84\xe4\xce\x8b\x09\x1f\x52\x29\xe2\x9b\xe2\x37\xf1\xeb\x4f\xd2\xc8\xef\x67\xd7\x89\x95\xfd\x38\xf1\x29\x9b\x76\x89\x6a\x31\xaa\x87\x88\x1e\x71\x7c\x9a\x10\x18\x50\x1d\x40\xbd\x79\x7c\xf8\xfb\xe0\xcb\x55\xc8\xdd\x56\xa3\x8c\x94\xe2\xfc\x30\xb0\x33\x9c\x1f\x0b\x1f\x66\x67\x75\x5e\x5c\x10\x6c\xd2\x18\x77\x4f\x59\x9b\xe4\x35\x68\xc7\x8e\xed\x99\xb4\x33\xda\x0e\x10\xb4\xa3\x8e\xb0\xd6\x30\x78\x77\x6d\x15\x7a\xd3\xea\x21\x5d\x82\x71\x8a\xa9\xe7\x9b\xbd\xd8\xa1\xfe\x29\x18\xfa\x11\xa5\x0f\x3f\xaa\x61\xf9\x3d\xd0\x2c\xaa\xa8\x6d\xa9\x74\x7c\x68\x7e\x5e\x49\xf6\xa2\x4f\x90\x7d\xe6\xf2\xfb\x54\x5f\xee\x66\x83\x42\x5b\x34\xd8\x60\xdf\xa6\x3e\xd1\xb6\x75\xa2\x42\xb9\x12\x51\xad\xef\xc2\xb8\x10\xe3\xfc\xfe\x5f\x6f\x16\x55\xe8\x38\xf0\x63\x49\xc8\xca\xa0\xd5\x27\xc7\x14\x97\xb6\xb3\xb4\x9d\x0c\x3a\x56\x34\x3b\x60\xd0\xae\x90\x9d\xbf\x42\xc4\x08\x65\x15\x2a\x26\xf2\x96\x45\x61\x20\x6a\x90\xda\x80\x4f\x4b\x93\x6c\x55\x85\xbc\x05\x26\x4f\x14\x5d\xe7\xb9\x61\x61\xcb\x05\xd3\xc6\x70\x31\x38\x55\x3f\x72\x86\x5d\x8e\x83\x78\xb9\x79\x3d\xcc\xfe\x63\x7d\x5c\x83\x6b\x90\x93\xb1\xd7\xfe\xca\xcc\xc1\x66\xdf\x96\x30\x07\x3a\x41\x17\x6a\x2f\xdb\xdc\xee\x40\xdd\xed\x36\xf9\xd4\x7e\xee\x54\x40\xa0\xa5\x0a\xbf\x70\x37\xe2\x56\x35\x09\x8a\xde\xc5\x15\xc8\xbf\x10\x3d\xca\x4a\x9c\x0f\xc4\x2a\x28\x76\x8f\x41\xad\x75\x00\x63\x17\xad\xe8\x3b\x83\x2b\x11\xf6\x06\x39\x09\x49\xdf\xa0\xd7\x4f\x6c\x67\x32\x30\x07\xc8\xd8\x25\x42\xfe\x93\xee\x26\x91\xa8\x08\xfd\x80\x86\x6c\x54\xff\xf8\x8d\xdf\x6a\x04\xfc\xb3\xb0\x23\xc8\x49\x5d\xf9\xcd\x0d\x98\xbb\xee\x03\xe2\xc5\xfb\x04\x78\x16\x44\x80\x32\x9e\xd6\x7c\xda\x74\x06\x09\x10\x77\x88\x63\x37\x88\x0a\x71\x83\x81\x18\x9d\xc4\xae\x51\x4f\xe1\x66\x44\x1a\x79\x37\x29\xa4\x57\x62\x1e\x4c\x8e\xcd\x04\xba\x8a\xea\x5d\x07\xba\x0a\x2d\xf7\xdf\x71\x36\x59\x8e\xeb\x32\x99\x2a\xa0\x4f\x4c\x2a\x62\xca\xda\xe3\x09\x98\xe4\x4b\x84\x73\xc8\xed\x8a\x35\xc9\xe8\x74\xd7\xbb\x3c\xdd\xf5\xae\xcf\xe4\xfa\xb6\x28\xe2\x5e\x75\x99\xa8\x96\x88\x22\x15\x93\x84\x9c\x61\x81\x86\x72\xd0\x8f\x3b\xe4\xf1\xce\xf3\xd0\x2c\x13\xd9\xac\xc5\x36\xe9\x14\x8f\xd0\x20\xe6\x61\x24\xae\xb0\xfc\xf7\xa2\x40\x51\xfc\x36\xe5\xc0\xdb\xd6\xc3\x70\xc7\x0e\x0c\xf1\xca\xa7\x81\xfc\x53\x8e\xe8\x50\xc9\xbd\x49\x33\x1e\xf7\xdd\x1a\x96\x6f\xc5\x3d\x68\x18\x1b\x16\x56\x61\xed\xde\xe0\xe5\x27\x09\xc8\x7b\x97\x46\x19\x76\xaf\x93\xdc\xf5\xd3\x82\xf0\x55\x04\x58\x80\x51\xdc\xc5\xf2\x55\xac\x60\x75\x23\x78\xb9\x52\x84\xc4\x1b\x95\x22\x10\x56\xc9\xc3\xe8\x69\x6a\x96\x2f\x26\x03\x9b\xb6\xab\x77\x35\x3f\x75\x40\x30\xa2\x17\x50\xda\x94\x93\x5a\x65\x02\xa7\x40\xd9\x08\x59\xa6\xe8\x04\xc8\x49\x90\x0c\xcf\xad\x81\x2d\xf4\x13\xfb\x61\x7a\x7f\xe8\x27\x23\x6d\x5e\xa2\x2b\x6d\x0b\xa9\x70\x01\x9e\xb5\x0b\x01\x21\x2a\xe3\x68\x55\xf0\xb8\xac\x28\x96\xb1\x20\xfe\xae\x75\x26\x10\xf9\xca\x20\xce\x6d\xb1\x23\x78\x0a\xa9\x05\x7b\x8e\x78\x5f\x2f\x78\x88\xb8\x4f\xfe\xc1\xcd\x55\x6b\x81\x48\x2d\xb6\x1d\x2c\x28\xc7\x03\xd6\xc7\xbf\x66\x29\xc5\x7f\x3d\x52\x9b\x2e\x0c\xd4\x8b\x3d\xe3\xc7\xdc\x9c\x67\xfc\xa0\x24\x79\xd5\x16\x0e\x3d\xeb\x85\x00\xde\x72\xdb\x50\x8e\x6b\xa5\x30\xfa\xdd\x38\x41\x37\x4e\xb1\xca\x0c\x5c\x26\x4f\xe4\xf4\x62\xb3\x1c\xac\x8e\x58\xaa\xf7\xa2\xd1\x61\xe2\xea\x8e\x91\x59\x89\xd2\x9e\x78\x64\xbc\x4b\x9f\xb6\x7b\x92\x59\xd1\x07\x92\x8f\x0c\x83\x6e\xeb\xa9\x61\x20\x6b\xab\x9d\xdc\xcc\xda\xed\x41\xdf\x48\x19\xd6\xf7\x57\x67\x67\x7d\x7f\x95\x00\x72\x71\xcf\x16\x10\xd3\xc4\x13\xfb\x88\x5c\xd2\x87\x28\xa3\x8a\xae\x0d\x27\xd1\x8f\xbb\xc2\x3e\xca\x9c\x08\xc5\xe0\xc9\x8f\x3a\x70\xa2\xe2\xdf\x47\xb2\x90\x80\x67\xfa\xca\xc0\xc9\x4d\x3f\xf7\x5c\x00\xdd\xee\x7f\xf9\x80\x1f\xc5\x1c\xa7\xc9\x3d\xd0\x2c\x92\x30\xbf\x2a\x64\x00\x78\xba\xca\x0c\x30\x0e\x91\x99\x6f\xae\xba\x01\xe7\x46\x80\x0d\x7f\x9f\x68\x6c\xbf\x3f\xc2\xc3\x54\xb6\xbb\xbb\xa9\x4c\x21\x2a\x22\x08\x35\xd1\xc0\xf3\x5a\x23\x81\xeb\xed\x28\x4a\x21\x98\x82\x44\x2c\x85\x4f\x5c\x75\x86\x49\xfe\x3f\x0b\xfa\xb0\x04\x7e\x7b\xad\x9d\xc4\x6d\x93\x20\x1e\x80\xcb\x96\x14\x48\x71\x2c\x01\x30\xfc\x5e\xd8\x17\x69\xa9\x05\x0a\xfc\xd8\x4d\xfa\xe1\x9b\x94\xb8\xf6\xb2\x41\x5a\x4e\x86\x80\xf1\xa6\x5b\x41\x22\xf3\x49\xc1\xe3\xcd\x28\x90\xdf\x1c\x19\x4b\xfc\xbe\xfc\xe5\x66\x9e\x19\x50\x65\x62\xd5\x9f\x24\x86\xb7\x21\xd6\x84\x54\xd4\xc6\x96\xe2\xf3\xcd\x15\xbb\x64\x03\xac\x0b\x9b\x1f\x46\x5f\x8e\x3d\x10\x7a\x31\x31\x7d\x77\x57\xe8\x4e\x20\x8c\x93\xe3\xfa\x89\xb6\xb4\x34\x71\x98\xa3\x11\x45\x44\xf7\x31\x55\x47\x0c\x6c\xd9\x8b\x1d\xd3\x08\x7d\x88\x73\x58\x3b\x72\x42\xce\xe2\x37\x7e\xf3\xbf\x72\xd7\xc0\x26\x50\x8e\x01\xfd\x44\x78\xbc\xd6\xcf\xca\xae\x2d\xe2\xaf\x4a\xe4\x89\x74\x1c\xcd\x71\x39\x1e\xcb\x06\x67\x67\x9b\x25\x96\xa3\xbf\xaf\x23\xc4\xe3\x71\x84\xf6\xc7\xc2\x0b\xe6\x05\x19\xfb\x87\x99\x05\x6d\x9f\x1c\x0f\xc3\xb8\x69\x3f\x4b\xe2\x32\x6e\xc7\x26\x75\x5b\xf8\x55\x79\x43\x12\xff\x08\x33\x0a\xd1\xb5\xc9\x9e\x91\xbf\x82\x0d\x46\x3e\xf4\x31\x6c\x8d\x9c\x44\x44\xcd\x07\x8b\xa4\x3b\xbd\x86\xe6\xb3\x9f\x67\x49\x96\x2e\x55\x79\x6e\xd0\x2b\x90\x3c\x17\x39\xc2\x9b\xc4\xa4\x77\x9d\x82\xd2\xd2\x2c\xdb\xc2\x75\x69\x11\x79\x1d\x1d\x11\x67\xab\x1e\x26\x42\xe9\x53\xc4\x01\xf2\x01\xca\xb2\x2a\x29\xc3\xfa\x32\x23\x2e\xa1\x5d\xbe\xf0\x48\xb5\x66\x79\x8e\x15\x97\x76\x7d\x48\x8d\xe8\x5d\xae\xcd\x8b\xf5\xf2\x13\xd6\x97\x1f\x6d\x69\xa2\xde\xe5\x41\x53\x1e\x40\xb5\x6d\x9d\x65\x2b\x23\x22\x53\x16\x18\xad\xca\xe5\x3d\xcb\xc2\x54\xfd\x3c\xae\xd2\x2b\xd5\x12\x44\x9b\xe0\x3e\x51\x0d\xdd\x1f\x11\x0a\xce\x7a\x59\x95\x68\x80\xcc\xc9\xcf\x43\x56\xdf\xae\xe1\x2e\x9c\x38\x92\x61\x01\xef\xeb\x34\x4c\x28\x7e\x5f\xe4\x2e\xda\x49\xbc\x62\x39\x21\x4a\x8a\xd3\x9e\x40\xd2\xbe\x6e\xdb\x83\x32\x5e\xb1\xbb\xdc\x9f\x62\xf5\xed\x5e\x0f\x15\xf4\x5f\x59\x27\x76\xab\xbd\xad\x30\xad\xb9\x7d\x3d\xb8\xd8\xcd\x50\x25\xfa\x97\xff\x09\x6a\x6c\x8a\x56\xdb\xda\xd2\x79\xbe\x29\x99\xaa\xd7\xaf\xf3\xc1\xcb\x59\xe7\x56\x60\xa3\xee\x12\xd4\xa6\x93\xc7\x2b\xd6\x51\x76\x6b\xb5\xa7\xe1\xb9\x03\xdf\x47\x4b\x05\x45\xb8\xe3\x64\xfc\xee\x63\xd5\x78\xfd\x91\x50\xce\x3b\xe6\x4b\xb5\x6d\xd3\x8f\x4b\x93\x84\x48\x59\x24\xcf\xf1\xd1\xa0\x7f\x2e\x91\x45\x6f\x10\x58\x9f\xe0\x28\x20\x2e\x27\xc7\xad\x27\x7d\x7b\xac\x8a\x13\x32\x91\x88\xf6\x44\x0c\xd5\x77\x2a\x11\x43\x4d\xdf\xbf\x58\xb5\x06\x6e\x4c\x40\x6f\x64\xe4\xc6\x6b\x12\xae\xea\x69\xc9\x5f\x7a\xe6\x5d\xcf\x18\x79\x89\x6a\xe5\x5d\xd3\xef\x83\x20\x43\x1b\x15\x41\x83\xed\x1c\xb5\x18\x5c\x5b\xa7\xfa\xca\xea\x62\x99\xea\x4c\x8e\x7d\x33\xaf\x1b\x77\xec\x42\x36\x48\x01\x33\x15\x39\x15\x42\xd4\x07\x98\xa9\xce\x34\x82\x11\x1a\x71\x3c\x07\xe5\x67\x86\x3c\xd3\xe8\xee\x05\xe9\xc4\xd7\x49\xf3\x7f\x57\x8b\x88\x25\x63\x9b\xe7\x46\xea\xa9\x18\x07\xfa\x7f\xf0\x7e\xe5\xc4\x37\x4c\x7b\x71\x51\xec\x22\x64\xe8\x3f\xe7\xf9\xd7\xfb\x51\x90\xd8\xfd\xa6\xdb\xed\xaa\x64\x1b\x4a\x84\x3f\x43\x26\x84\xa0\x1d\xa4\x90\xf8\xf0\xc4\x7a\x9d\x8c\xfc\x52\x37\x2b\xca\x05\xd0\x61\x4c\x10\x37\xf7\x25\xd9\xbb\xa2\xc5\x3a\x92\xc4\xf8\xe5\x55\x66\x45\x37\x5e\x30\x8d\xd0\xd4\x95\x6e\xa3\x9c\x10\x01\x41\x61\x13\xaf\x9c\x31\x11\x34\xb6\xaf\x47\xa1\x2b\x75\xdd\xa7\x0b\xdd\x38\xf5\xd5\x67\x91\x80\xc6\xf7\xaa\x1e\x74\x80\xed\xae\xd9\xea\xd2\x3b\x66\xed\x71\x9a\xe8\x13\x45\x16\x58\x83\x8b\x2c\xe9\xf2\x80\x8a\xa9\xe8\x3e\xf9\x4c\xce\x33\x85\x3d\x70\xd5\x6b\x14\xd5\xff\x21\x22\x42\x85\x0f\xdc\x84\x36\x75\xc5\x34\x86\xbc\x4e\x88\x74\x90\x8f\x60\xa7\x5f\x70\xeb\x44\x63\x72\xf7\x08\xb5\x91\x4a\xa4\x9c\xd6\xe6\x6b\x8d\xd1\xa7\x5d\x7d\x85\xaa\xe0\x7e\x12\xef\x98\x69\xb7\xf3\x81\x6e\x25\x60\x2f\xe4\x56\xe5\x84\xa6\xee\x56\xe3\xc2\xf1\x4d\xce\x4f\x79\x9e\x8c\x46\xe0\xcc\x18\xd3\x7c\x72\x30\xee\xc4\x0d\x20\xa5\x3d\x1d\x01\x44\x68\x89\xae\xa5\x1c\xd7\x49\x9b\xae\xc6\x69\x27\x5b\x95\x8a\x96\x82\xff\xab\xcf\xe8\x4c\x5a\x68\xc8\x76\xe3\x7e\x3f\xb6\x8d\x51\xdc\x90\xbb\x03\xe5\x17\x7c\x34\x54\xbf\xe2\x54\x54\xfe\x3d\x73\xd8\xfe\xf9\xfd\x7a\x42\x14\x1b\x26\x4f\xb3\xa4\x33\x89\x2f\xc5\x74\x17\xe0\x3a\x9a\xd3\x06\x8d\xe0\x0b\x2c\x88\x76\x6c\xc4\x4b\xc7\xb6\x47\x3a\x02\x67\x99\x7f\x28\x34\x8b\x4c\xc7\xf6\x4b\xb9\x53\xdf\x06\x9d\x0b\xe3\x82\x35\xb2\x1a\xa2\xbb\x0b\x83\x2c\xf0\x2c\x77\x75\x0a\xd5\x52\x63\xd5\x89\x8b\x32\x4e\x12\x45\x66\x88\xaa\x45\x14\xc0\x30\x52\xf2\x52\x72\xfd\x2d\xcc\x65\xb3\xb3\xcd\xf9\xa9\x4f\xbb\x2d\x81\x20\xe4\x9e\x33\x1d\xc2\x34\xe0\xfa\x67\xf0\x76\xdf\x66\x95\xbf\xb7\xd0\x4c\x53\x24\x1d\x49\x95\x1f\x65\x6c\xf4\x0f\x1d\x0f\xbd\xc8\x74\xba\xb0\x67\xf3\xc8\x30\x34\x8c\xaf\xb8\x7d\x85\x08\x09\x57\xec\xb5\x50\xe6\xb5\x92\xf1\x16\xa1\xf6\xaf\xba\x9e\x94\x1f\xac\xac\x9e\x34\x4c\xee\xff\x88\xd8\x4f\x08\x63\xa3\xc6\x17\x7e\xcf\x2b\x49\xba\xe7\x87\x5c\xfe\x3d\x3c\x08\xe5\x65\x72\x99\x8f\x92\xa2\x06\x76\xe5\x77\x6b\x09\x0e\x17\x6d\xe2\x06\xe6\x7c\xe7\x0d\x03\x2c\x72\x5c\x4b\xa7\xec\xea\x69\x2e\x1a\xd0\x0e\x47\xc8\x65\x45\x07\x02\xe6\xe5\xa4\xaf\x6b\x60\xb4\xc0\xe6\x45\x37\x46\x26\xe1\xb1\x6e\x9e\x14\x89\x99\x72\x6d\xbf\xd8\x1b\xf0\xeb\x28\xae\x39\xbf\xf3\xfb\x4f\xaf\x87\xc8\x51\x0d\xb4\xe7\x26\xf6\x63\x66\xa7\x19\x4c\xf5\x54\x2b\x38\xf1\xa5\x5f\x6d\x51\xfc\xbd\x13\x65\x2d\xe0\x3f\x65\xcc\x52\x6d\x7f\x8d\xca\x5a\x9c\x24\x03\x37\x27\x88\xee\x28\xcc\xe9\x69\x38\x1b\x39\x21\xa7\x5c\xd8\x7c\x25\x6e\xdb\xc7\xab\x3f\xf5\x60\xba\x30\x01\xb4\xe1\xde\x0c\x02\xe7\x46\x8b\x7c\x0b\xa4\x34\x65\x69\x0e\x09\x94\xb4\x03\xa0\x14\x2c\xba\x9b\x11\x0d\x14\xdc\xa4\x21\xf4\xab\xdc\x26\x46\x74\xee\xb9\x67\xe6\xf7\xfb\xf9\xa1\xb0\xc6\x9e\x7f\xaa\x45\xc2\x96\xff\x10\x8d\xd0\xce\xda\xde\x82\xcd\x1b\x41\x5a\x18\x4e\x42\xf9\x8b\x19\x7f\x13\x9b\xd2\x29\xc0\x23\x59\xfe\x53\x01\xc4\x79\xe7\x3c\x3f\xe5\x73\x71\xb5\x1d\x79\x96\x9a\x04\x91\x08\x16\xfb\x19\x5e\xf9\x67\xc6\xa2\xad\x83\x2f\x37\xbb\x66\x90\x42\x5a\x09\x7e\x0a\x2c\xf0\x72\x3c\x0c\xf0\x85\x7e\x96\x09\x7f\x81\x4a\x52\xb9\x87\xa2\x5a\x55\x5b\x3b\x21\xea\x4f\x92\x01\xc8\x3e\x3d\x64\x56\x7c\xae\x9c\x90\xcf\x5d\x89\xed\x2a\x08\xc1\x08\x69\x77\xca\xbd\x39\x39\xae\x0b\x16\x17\x8d\x8a\x13\x30\x52\x57\xa1\xbd\x41\x9e\xbe\xd3\x6f\x37\x58\xa7\xec\x02\xeb\x5c\x8f\xf7\xac\x66\x0e\x36\xcb\xae\x29\xdd\x0c\x0b\x6c\xd5\x4d\x67\x8b\x10\xfd\x6d\xc0\x1e\x00\x42\xbd\xb3\x15\x72\x62\xbc\x95\x20\xe8\x27\xa9\xc5\x52\x56\xc6\x05\x42\x5a\x2c\xa2\x0f\xdd\x26\x95\xe3\xb1\x2c\xd3\x3f\x3b\xbb\x12\x37\x02\x9a\x4c\xc8\xe0\xe5\x64\x5c\x73\x67\x7e\xaa\x69\xd2\x34\x1b\xa0\xe0\x1a\xa2\xa1\xe3\x43\xc2\x47\x8e\x0b\x87\x83\x8c\xcd\x17\x2d\xbc\x1a\xbe\x1f\x54\x39\x4b\x34\xbb\x0b\xd6\xe6\x3b\xdc\x96\xc3\x23\xfe\x31\x95\x4a\x7f\x12\x51\x50\xf9\xdf\xbb\xe0\x05\xe6\xf3\xfb\xac\x68\xf2\x7d\x1a\x4f\x29\x73\x93\x16\x6d\x93\x9a\x8e\x69\x84\x3d\x0d\x72\x10\xe5\x19\xad\xe3\xce\xed\x66\x45\x5f\x68\xd0\x9c\x9f\x51\x14\x72\xe8\xd7\x5e\xa6\x01\x83\xe9\x99\xe9\x4f\x56\xf7\x0d\x25\x4d\x9d\x95\xd9\x19\xba\xb6\x3f\x85\x13\xf0\x54\x5f\x1e\xa2\x39\x49\x7a\xbc\x52\x0b\x57\xda\x57\xf7\xed\xf2\xf1\xb1\x5e\xcc\xf4\x74\x73\x31\x4e\x7a\x82\xbc\x42\xbc\x20\x03\x42\x3a\x2a\xd7\x20\x9a\x06\xaa\x6e\x99\x52\xc4\xe0\x11\xea\x09\x72\x59\x4e\xa2\xad\x73\xba\xb3\xb3\xcd\xf6\xa0\x9c\x18\x4d\xa1\x03\xd7\x3f\x9a\xff\x4a\x27\x50\x07\xe6\x35\x9d\xac\xef\x33\x2a\x84\x9d\xa2\xee\x25\x27\xbe\x31\x68\x5f\x37\xbd\xbe\x67\x5a\xc1\x0c\xc5\x1b\xcc\x66\xf7\x06\x8d\xd1\x74\x72\xc7\xfe\xd9\x08\xad\xa1\x77\x9c\x09\x95\xe3\x28\xfc\x65\x91\xe5\x4b\xdd\x41\x6f\x04\x64\x34\x32\xe2\x35\x9e\x07\x56\xb1\xab\x0d\x57\x0d\xa3\x01\x11\x21\x39\x5e\xdf\xba\x67\x1c\xce\x23\xeb\xf5\x6d\x22\x0d\xa5\x19\xef\xb1\xa9\x64\x7d\x82\x16\x93\x5d\x2d\x1e\x09\xec\xb2\xff\x4d\xb3\xc5\xc5\x08\xfc\x18\x62\xff\xed\xeb\x3e\x68\xfb\xfc\x93\x70\x8a\xa8\xff\xef\x59\x1f\x2d\x37\xcd\x4f\x49\xf4\x72\x8d\x15\x0f\x2e\xba\xf0\x05\x7b\xe9\x7d\xe2\xff\xf8\xec\xb3\xec\x6d\xf7\xac\x3f\x15\x9e\x58\xa2\xb3\xfd\xd5\x0f\xc3\xbf\x1d\x71\x1e\x51\x8e\x87\xac\x48\xb1\xac\x03\x98\xda\x60\xa3\x66\x1b\xd5\xcb\x8b\x5e\x5c\x76\x27\x02\xa8\x00\x0a\x46\x28\x08\x0c\xb9\xe6\x73\x9c\x90\x6e\x65\x6c\x3b\x93\x08\xab\xe1\x1e\x3e\x74\x1d\x2d\xe5\x8a\x72\xd1\xa0\xfc\x83\x73\xa6\x4a\x28\x45\xb4\xfe\x59\x6f\x57\xe3\xa5\x19\x2d\x41\x0d\xb9\x64\x4b\x92\xcf\xd2\x70\x64\xc9\x55\x4f\xa5\xb2\x4f\x6c\xf2\x77\xfe\xa3\x16\x6d\xf8\xbd\xeb\xe1\xde\x5e\x33\x3d\x5b\x3c\x32\xae\xeb\x8b\x31\x86\x33\xd8\xfb\x08\xe3\x45\x8e\x45\x85\x4a\xdc\x02\x20\x50\xcb\x8b\x82\x0d\xfb\xb6\x33\xeb\xf8\x87\xab\x23\x84\xbb\xe4\xad\xdf\x88\xa8\x76\x79\x16\x8b\x5a\x3b\x43\x75\x20\xa0\x62\xb0\xd0\xce\x7a\xbd\xb8\x2c\xad\x75\xc5\x73\x8c\x97\x4b\x3d\xe0\x41\x14\xf8\x2e\x46\xc5\x59\x8b\xbe\x81\xdf\x45\x2d\xfe\x61\x44\xca\x70\x0f\xc7\x2c\xd3\xcc\xc1\x66\x12\x07\x1e\x63\x3f\x17\x35\x17\x18\x78\xb7\xe2\x08\x5f\x9a\x69\x16\x83\x3c\xb7\xfd\x32\x76\xa4\xb7\x09\x44\xc4\x90\xd5\xfe\xc0\xdd\xb1\x1c\x53\xf7\xd6\x81\x4e\x7a\x02\x57\xc4\x6d\x4b\x8c\x22\x27\xa1\xca\x04\x90\xe7\x0e\x86\xa2\x5e\x26\x72\xf1\xab\x51\x90\x50\xbc\x4c\x01\xb6\x7c\x1d\x0a\x1d\x77\x29\x7a\x2c\xf3\x6c\xb0\x80\xc1\x9c\x57\xe5\x3b\x2e\x47\xe4\x27\x03\x72\x31\x4e\x57\x6c\x51\x56\x39\xaa\x30\xa3\x6a\x87\x07\xd7\xe2\x89\x97\x03\x3a\x4c\x2a\x14\xca\x5f\xe1\xef\x21\x29\x6d\xae\xd9\x16\xc2\xb8\x6f\x0e\x03\xa8\x19\xc4\x1e\x9b\x67\xa8\xfe\xd9\xee\x9a\x3c\x0e\xe3\xd1\x4a\x57\x12\x20\xfc\x37\x7c\xb0\x97\x66\xbd\x41\x6e\x26\x19\x7a\x19\x00\x43\x1b\x24\x82\x70\x9c\xdb\xf8\x0f\x22\xbd\x4b\xb3\xe4\x30\xc7\xe5\x20\xb7\x93\x04\xe0\x3e\x47\xe2\xd6\x68\xa3\x01\x65\x2f\x6d\x5e\x2c\xe2\x89\x56\x8d\xcb\x59\xb0\x5c\xb6\xfb\x53\xf7\x7e\x94\xf0\x24\x60\x07\x0c\xda\xb1\xb1\x49\xe0\x32\x7c\x91\x2f\x14\xfc\x6a\xf1\x3d\x60\x02\x0d\x94\x5b\x98\xe3\xbb\x4c\xac\x2c\xd5\x0b\xfc\x0d\xdf\x7b\x8e\xcb\xd8\x24\xc9\xda\x04\xa5\x20\xf7\x87\x01\x48\x22\xf1\x2b\x7c\xf0\xe4\xd8\x70\xdf\xa1\xa9\x66\xcf\xa4\x66\x49\x96\x8b\x87\x24\x1c\x0a\x93\xa6\x4f\x10\x3f\x6d\xb2\xd6\x2f\x48\x5f\x0d\x5d\x04\x74\xf8\x00\xb6\x10\x35\xd1\x31\x46\x8d\x83\x2f\x37\xf3\x01\x80\x79\x28\x7f\xdc\x64\x86\xf3\x9b\xa1\x78\xb8\x6a\x4d\x60\x3b\x41\x92\x08\xd1\x2b\x39\x26\x1f\x75\xf0\x4b\x5f\xd8\xc9\x5d\xe9\xb0\x42\xae\xba\x20\x16\xbe\xe3\xb3\x94\xc3\xfd\xa1\xac\x5f\xac\x80\x89\x75\x18\x6f\xfd\xa7\x10\x45\x17\xcb\x52\x67\x03\x6e\x67\x13\xcf\x50\x4e\x46\xe6\xd5\xad\x29\x1e\x73\xff\xe8\xdb\x82\x41\xa8\x0a\xdc\x4c\xaa\x8a\x1a\x6a\xb1\xef\x42\x19\x4b\xfe\x08\xde\x50\xba\xb4\x11\x01\xa7\xf7\xb6\x5c\xf4\xad\x02\x54\x0d\xcf\x3e\xf5\x67\xae\x0f\x89\x0c\x55\x46\xf9\xd0\x0b\x80\x2f\x46\x50\xf6\xf1\x28\x33\x41\xa8\x66\xa5\xd6\x38\xbe\xd5\x20\x24\x72\xd8\x3d\x5f\x39\xf6\x7b\xda\xd1\x7c\x2c\xa0\x4b\xae\xae\xa2\xe1\x25\xad\xce\x0c\x99\xef\x34\xb7\xed\x32\x59\xdb\xe1\x0a\x0e\xda\x77\x27\x66\xfb\x9f\xe1\x1e\x61\x5d\xb6\xb5\x08\x83\xfe\x16\xc5\xdf\x0f\xc8\x1f\xe7\x59\x92\x14\x54\x59\x10\xb9\x65\xb5\x7c\x21\x7e\x32\xfd\xbe\x35\x39\x48\x3e\x50\xce\xba\x1d\x8d\x92\x92\xfb\x59\xb3\xe3\xa4\x8c\x05\xa8\xe8\xa0\x5d\x02\xb1\xe1\x61\x20\xd5\xcb\x93\x93\x4f\x9c\x17\xef\x99\xb5\x05\x3b\x41\xf1\x2f\x1a\x23\x00\xaf\xec\x71\x11\xb3\x1a\xda\xbd\xda\x05\x35\x28\xf3\x7a\x1c\x61\xb0\xdc\x17\x6a\x08\xd6\xf7\x57\xc1\xda\x42\x9c\x6a\x88\xa7\x93\x01\x6c\x51\xc7\xf9\x8b\x9a\xa6\x88\x3b\xc0\x41\x28\xa4\x2e\x64\xd5\x57\x7c\x21\x3f\xb5\x6d\x5b\x14\xda\x6c\xf6\x5c\xbf\xc1\xe6\x9d\x1d\xdb\xbc\x87\xa6\x9a\x85\x35\x44\x31\x7a\x84\xe0\x3a\xdc\xe2\x2c\xba\x26\xb7\x4f\x56\xab\x5e\xc6\xe0\xb1\x9e\xd1\x6b\x3d\x42\x33\x80\x3b\x89\x1f\xef\xb2\x0b\x01\x45\xcb\x2a\x62\x02\x64\x10\x3e\x2a\xbe\x9f\xa8\xac\xee\x47\x44\x3f\x25\x16\x0e\xfa\x4a\xdf\xa7\x66\xe3\xf6\x96\x63\x61\x91\x42\x02\x66\x13\x45\x2e\x30\x22\x31\xa5\xbf\x46\x9c\xa3\xbc\xa0\xee\x49\x20\x2b\xbb\xc6\xe3\xdb\x42\x2d\xe0\xfe\xea\x0f\x9e\x44\xb0\x25\x27\xeb\x9f\xa2\xbe\x9e\x2d\x30\x96\x59\x5d\xa0\x54\xf9\xb0\xfc\x11\xe4\xbd\x47\x91\xe5\x7b\x58\xaa\x5a\x0b\xf4\xd5\x0d\x5b\x64\x89\xcc\xd0\xa9\x62\xa4\xfb\x06\xa4\x9f\x7f\x15\x05\x62\xf6\xbf\xc2\xbd\xab\xc8\xe4\xd6\x45\xf1\xca\xfe\x5f\x77\x44\xd4\x13\x61\x00\x0b\xe1\x84\xaa\xec\x84\xf6\xfd\x61\x8f\xfb\xcb\x56\x6c\xbe\x10\x77\x1a\x34\xb7\xf8\x90\xb1\xd7\x23\xf3\x6f\x2b\xd9\xb2\xed\x4c\x52\xf7\x48\x5a\xc4\xaa\x82\x5f\xfd\x00\xa9\xcb\xcc\xe8\x5f\x45\xc1\x51\xf6\x6c\x27\x2e\x05\x74\xf9\xc5\x57\x3c\x41\x74\x83\x98\xa3\xeb\xf8\x0d\xf2\xec\xab\x16\xaf\xc4\xd7\xa6\x43\x9d\xba\x6e\x7b\x74\x72\xb3\x9a\x36\x68\x15\x9d\x23\x4a\xa2\x51\xfd\x2e\x53\xd8\x67\xaa\x6f\x43\xc2\xf2\x21\x6e\x09\x8b\x05\x31\x0a\x6c\xc4\xed\x61\xa0\x9c\xde\x70\x6a\xf9\x08\x44\x4e\xbb\x3c\x40\x31\x9f\xee\x39\xea\x18\x7a\x75\x87\xaa\x18\xd6\x98\x9e\xf6\x2a\x3c\x6e\x21\x78\x8f\x5d\xd9\x7d\x64\x33\xeb\x9c\x46\x08\x15\x88\x8a\x2f\xbb\xa7\x8e\x75\x00\x3a\x03\x18\xc0\x47\x5b\x3c\xca\x00\x64\x8b\xd7\xc9\x39\x34\x15\x66\xd6\x7c\xa9\x77\xa2\x05\x47\x88\x2d\xb4\x49\xab\xfe\x37\x7e\xeb\x37\xdd\x23\xc6\xbd\x9c\x71\xf7\x28\xc7\xe4\x52\x96\x63\xc8\x9d\xce\x6b\x05\xee\x84\x5b\x64\x72\x3c\x56\xc9\x9f\x9f\x6a\xae\xc6\xc4\x95\x0a\xdf\x77\x82\x14\x9d\x4e\xd4\xe8\xc0\x67\x8b\x8b\x36\x07\xaa\x86\x45\x47\x11\x12\x7d\xc7\x45\x2c\x3a\x1a\xf6\x04\x91\x39\x15\xed\x6c\x75\x2f\x61\x8e\xcf\x71\xad\x43\x38\x31\x34\x34\x73\xcf\x4d\xfe\x65\x18\x9a\x85\x97\x08\xa6\x7c\xce\x19\x2b\xb8\x5b\x4c\x79\xcb\xb1\xb3\xb5\xf0\xb6\xdb\x5b\xd5\xa3\x95\xe3\xf5\x90\x2f\x2e\xf4\xdb\x06\x60\x5d\xdc\xe5\x77\xdd\x67\xe4\x98\xb0\xca\x90\x8e\x42\x52\xe3\x39\xde\x7d\x0e\x70\xdd\x77\x3b\x17\xe3\xa2\x2b\xad\x1a\x0f\x5d\xf4\x78\xd7\x5d\xad\x10\x9a\xdd\x63\xe2\xea\x77\x99\x7a\x12\xca\xca\x05\x40\x52\x28\xf0\x1e\x46\x44\x01\x9b\xed\x10\xda\x9b\x27\x60\x3b\xbd\x76\x8a\xbf\xae\xf3\xee\x0e\xb0\xd2\x7e\x82\xc5\x29\x7f\xe4\x02\x30\xf9\x07\x6f\x2f\xb2\x05\x27\xf7\xdd\x99\x1c\xed\xfe\xf9\x95\xbb\xc9\x32\x72\xef\xc2\x46\x2b\x54\x31\x70\x13\xf5\xe2\xa2\x63\x7b\xd6\xa4\x59\x4e\x92\x52\x37\x48\x52\xea\x46\x9d\xb6\x52\xc7\x26\x71\xbb\xca\xdf\x64\xd4\x1e\x7d\x86\xb3\xa3\xa1\x72\x98\x99\xba\xe3\xaf\xba\xe8\x66\xfd\xbe\x52\x8b\xa3\x64\xf5\x69\x22\x28\xd8\x89\x7c\x41\xf8\xb2\x01\xd3\x40\x09\x70\x0f\xf9\x85\x76\x65\x55\xcd\x12\x48\x6e\xf0\x6c\x2f\x80\x24\x4c\x4e\x60\xe1\xfd\x6a\x9e\x9d\xd5\xe3\x68\x0b\x41\xd0\xbe\xb9\xe6\xec\xec\xfc\x67\x5c\xa8\x82\x62\xc5\xf7\x98\xda\xe8\xbe\xd0\x66\x7a\x33\xea\x4b\xc6\xbf\x18\x92\x74\xf1\x87\x24\x1a\x78\x09\x36\xc6\xd3\xf4\x57\x11\x91\x8a\x54\x55\xef\x57\xb9\xe0\x68\xc6\xe5\x5b\xd8\x38\x0a\x34\x0e\x69\xdb\xad\xa8\x31\x3d\xbd\x29\xb7\xe6\x71\xdb\x95\x71\xc3\xbe\xfa\x2e\x56\x17\x7c\xce\x86\x6b\x85\x79\x49\xb0\x99\x83\xc1\x61\xce\xcd\xb9\xfc\xff\x10\x35\x80\xab\xa5\x01\x8f\x7d\x1f\xb1\xad\x12\x24\x54\x3b\x12\xb1\xe5\xc3\x1a\x8a\xeb\xa5\x81\xc9\x4d\x5a\x5a\x61\xd5\xda\x3c\x81\x19\xfc\x13\x51\x80\x91\x2d\x2f\xe7\xf0\x0b\x5a\x8c\x6d\x78\x1e\x36\x1e\xc7\x2c\x56\x4d\xaf\xaf\x80\x28\xcf\x83\x19\xa8\x44\xee\x4b\xf0\x82\x75\x71\x83\xf6\x99\x59\xc8\x4d\x11\xaf\x58\x17\xa6\x7a\x3f\x3c\x17\x88\x6f\x43\xa7\xfb\x5b\xb5\x2c\xcf\x08\x07\xe1\x92\x7d\x72\xe1\x27\x65\xce\x51\xad\x99\xc0\x63\x93\x01\xe0\xca\x7c\x3f\xa2\x75\xe2\x89\x84\xc2\x5b\xbd\xe8\x73\xe6\xc4\x2e\xc5\x45\x42\x2c\x34\xea\x57\xb9\x17\xfc\x89\x9a\x5e\xe5\x20\x4d\x6d\x67\x22\xe4\xc5\x3f\x19\x21\x9e\xa1\xcc\xea\xda\x88\xca\x42\x61\x4d\xde\xee\xda\xbc\xd8\xc9\x66\x9e\x5a\x23\x22\x68\xca\x3c\xd7\x34\x42\x35\x23\xb9\xd2\xc3\x51\x91\xd8\x47\x09\x14\xd3\x79\x8a\xd8\xb9\x37\xb1\x4a\x61\xa8\x37\xb1\x89\xb4\x78\x11\xf8\x7d\x7f\x55\xa6\x2f\xb1\x7e\xaf\x38\x17\x0a\x47\xb9\x6d\xbd\xf1\xbb\x5f\x92\xdf\xfc\x60\x18\x00\x25\x0f\xf1\x80\xb1\xc6\xef\xc9\x7e\x54\x08\x7b\x88\xe1\x3f\xc2\x4e\x13\x4d\x41\xe4\x1e\x48\x1c\xbe\x83\x47\x84\x4a\xd1\x7f\xec\x32\x0a\x60\x47\xff\x5f\x67\x8e\xcf\x38\x64\x35\xa2\x2a\xf8\x1a\x69\xdd\x8c\x71\x94\xce\x4f\x35\x8b\x76\x37\xcb\x92\x76\x37\x4e\x3a\xb9\x85\xa6\xef\xe6\x2d\x27\xdf\x8c\xc7\x0b\x43\xa0\x2a\x38\x35\xec\x5c\xce\x72\x69\x26\xa2\x4d\x99\xea\x2e\xb4\x5b\x53\x07\xec\x1d\xf4\xbb\x36\x41\x08\xb9\x29\xd5\x9f\x13\xc4\x5d\xb2\x30\x28\x4b\x85\x4b\xe9\x78\x1a\x41\xf0\xc7\xa5\xda\x1c\xb7\xd4\x20\x2f\x06\xd0\x74\x44\x10\xb9\xad\x45\x65\xd1\xab\x43\x2e\x05\x84\xd8\xa4\x13\x17\x3d\x99\xb0\x42\x10\xf4\xe1\x30\x44\x7d\x1f\x12\x92\x64\x31\x4e\x6c\xb1\x83\x60\x88\x1b\xb0\x32\x8a\x9f\xae\x5c\xe0\xe6\x15\xf7\x61\xe1\x43\xe5\xb7\x74\xad\x8e\xae\xd6\xa6\x4b\x0e\x8b\xf3\x89\x75\x1c\x92\x5c\x8e\x3b\x5b\x18\x96\x90\x2e\xe1\x21\x6f\x77\xbd\x37\x01\xc3\x0d\x9f\x65\x06\x93\xc5\x38\xef\x49\xf0\x4c\x5c\xee\xd5\x43\x52\xd2\x37\x2e\xad\x04\x1a\x27\x55\xdf\x0d\xf9\xf1\xbd\x91\x09\xc1\x30\xa9\x14\xa7\x1d\xfb\xba\x15\xad\x2f\xfc\xe9\x46\x44\x04\x7e\x1b\x3e\xcd\x2d\x4c\x67\xa7\xbb\x57\x84\xc1\xa0\x9a\x54\x42\xb4\xf0\xe5\x8f\xb7\x1a\xc4\x8a\xef\xbe\xc9\xb3\xe6\xce\x07\x3c\xf2\xa7\x48\x8f\x1a\xdd\xe4\x5d\x54\x90\xfe\x16\x73\x8d\x7f\xcb\x7d\xd0\x8f\x6f\x86\xce\xbc\x90\xa4\x7b\x75\xf2\x69\x65\xb8\xdc\x20\xc2\x82\x0d\xe2\x59\x29\xe2\x36\x24\x38\xa4\x90\x85\x65\xa9\x55\xad\xa7\xe9\xa1\xac\x80\x20\x11\xb4\x23\xca\x67\xd1\x20\x5d\x95\x47\x89\x94\x61\x6d\x37\x0d\x0d\x6c\x47\x61\x07\x1b\x18\x52\x3e\x58\x71\x28\x5b\x69\xab\x99\xba\x5a\xdb\x5a\xa1\x6d\x78\x63\x84\x14\xe2\xfc\x70\xe2\x15\x5f\x58\xfa\xda\x70\x94\xda\x27\x79\xcc\x3d\x5c\x9a\x65\x51\xbb\x0b\x20\x0f\xf2\xfd\x5f\x44\x81\x54\x4f\xe8\xe6\xfd\x20\xb2\xd7\x30\x7e\x93\x8c\xed\xa6\xcb\x5c\x10\x4d\x3e\xda\x72\x3b\x46\xb1\x6d\x0d\x4f\xf7\x7c\x66\x74\x72\x87\x0a\x68\x32\xab\x28\xec\x30\x94\x6c\xe4\xe5\x57\x51\x56\xc1\xbb\xbb\x1d\xf1\xb8\xe5\x90\xd1\x63\x0a\x75\x73\xad\xa0\xdd\xd5\xad\xc0\x70\x4e\x38\x05\x5b\x82\x04\xa8\x52\xe1\x99\x61\xe8\xfc\x43\x60\xd7\xdd\x7b\xfb\x99\x56\xc0\x87\x3c\x09\x1c\x2b\xee\x71\x12\x46\x5f\xdf\xe5\xa7\x48\xd7\x29\x5d\xce\x07\xfd\x92\xea\x39\x67\x88\x26\x92\xeb\x62\x5d\xd3\x8b\x93\x52\x76\x26\xee\xfd\x08\x1c\x98\x9c\x44\x81\x2e\x7c\xc9\xec\x6c\xcc\xce\x6e\x3e\xd6\x0a\xcd\xf3\xbb\x4c\x24\x47\x08\xa1\xbf\x1c\x12\xcb\xe4\xbb\xcc\x20\x5c\x67\x8b\xf7\x37\x17\xab\xcb\x00\x16\x14\xb0\xbc\x8f\x86\x44\x32\xf4\x51\x2d\xb4\xc7\x21\x70\x25\x59\x86\x81\x43\x4a\x27\xc7\x35\x85\xeb\xfd\x4e\x4b\xa4\x6d\x48\x19\x06\x56\xfa\x1e\x57\xe5\xef\xd5\x8a\x70\x5a\x5b\x7a\xbb\x24\xaa\xe8\x34\x9f\xfb\xee\x88\xf6\xfc\x13\x34\x14\xb5\x6c\x95\x1f\x08\xf8\x06\x79\xe5\x72\x32\x52\xa7\xed\x98\x1c\xb6\x5d\x87\x70\x70\x89\x4a\x5a\xde\xf0\xc4\x10\x77\xdc\x7d\x7a\x01\xf3\xea\xd2\xe5\x8f\xc6\x1e\x94\x1b\x39\x77\x02\xfe\xce\x62\x88\xcc\xa8\xfb\xfc\x3f\x22\x39\xba\x90\xad\x06\x10\x9b\x40\x86\xdc\xdd\x2a\x7c\x28\x18\xa3\x24\x2b\xac\x83\x66\x68\x09\xab\xe1\x85\x41\x26\x1c\xdf\xa7\x67\x74\xf0\xb0\x93\x5b\xcc\xa1\xc5\x03\x73\x5f\xfc\xed\xf9\x89\x00\xde\xbb\x4b\xf2\xce\x17\xb9\x1c\x79\x86\x3e\xd2\x8d\xd3\x3d\xd5\x47\x44\x64\x05\x7b\x58\xef\x8c\x30\xc8\xc0\x16\xa3\x6d\x2b\xec\x03\x30\x1a\xf7\xa9\xcb\x0f\x71\x69\x8f\xec\xf4\x38\xa5\x5d\xa8\x56\xe0\x81\xff\x82\x94\xab\xdb\xb9\x35\xbd\x58\x30\x35\x3a\x7e\x10\x3a\xb4\x97\xc7\xb0\x2c\xd5\xeb\x18\xe4\x0b\x8d\x80\x26\x3d\x1c\x05\xbc\xd8\x61\x3f\x6a\x53\x9a\x81\x23\x8f\x98\x9d\x95\x3e\xd6\x51\xd6\xfd\x82\xd8\xaa\xe0\xf6\x70\x97\x0a\xe2\xab\x41\x24\x26\xd6\x74\xb2\xc5\x45\x2a\xa5\x1e\xa5\x21\xa1\xa3\x7e\xb5\x2e\x0e\xf2\xc1\xb2\x59\x35\x18\xfb\xd7\x99\xed\xd0\x0a\xfa\x09\x83\x29\xc7\x63\x89\xe9\xe9\x66\x3f\x31\x45\x19\xb7\x1b\x01\x81\xbb\xcd\x25\xa1\x72\xbc\xbe\x35\x18\x3f\x34\xb5\xbf\x69\x5f\x6f\x5b\xdb\xc1\x4c\x42\xa8\x5a\x9d\x20\x58\xf3\x89\x11\x0e\xc5\x15\x47\xe1\x4b\xf8\x9d\x4b\x84\xdf\xb9\x34\x56\x53\x9b\x9f\x6a\x2e\x24\x83\xb4\x9c\x08\x48\xfd\xb3\x11\xd1\x0e\x9d\xa2\xd7\xf5\x57\x63\xe5\x74\xc7\xb8\x9b\xb7\xbb\x71\x69\xdb\x00\x66\xa9\xba\x76\x08\x49\xce\x53\x7c\xd6\x35\x69\x67\x0d\xd8\x05\xa9\x1b\xa3\x40\xa0\x45\x64\x9a\x08\x4c\x96\x62\x07\xc8\xae\x22\x6a\x24\x0e\x97\x88\x2e\x0d\x8d\x2a\xec\xf6\xa3\x63\x85\xa6\x2a\xd2\xec\x9a\x0e\x88\x2e\x94\x2c\x40\x62\x3f\xe7\xb7\xbc\x02\x7f\x75\xa3\xb0\xa1\x9b\x11\x6d\x52\x2a\xb4\x67\xfd\xee\x5a\x69\x85\x36\xcb\xc7\x3b\x81\x85\x55\x08\x10\x81\xb4\xde\x20\xf8\x5c\x51\x5a\xeb\x42\xb5\x11\x6c\xe5\xbc\x8e\xbb\x3e\x70\xaf\x05\xdb\xf2\x3a\x55\xbb\x16\xf3\xb8\x63\xd6\x1e\xa5\x3a\xeb\x3d\x26\x42\xc4\x43\x40\x75\xe5\x1a\x1c\xbd\x17\xaa\xaf\xae\x43\x85\xcd\xdc\x52\xf4\x0d\xbe\x43\x53\x23\xfa\x25\xc4\xd7\x33\xe7\x2d\x7c\x40\x37\xbc\xe1\x70\x2e\x88\x5a\x1f\xba\x6d\x2e\x3a\xeb\x63\x6b\xda\x19\xfe\xbc\x3d\xc8\xd7\xb8\x47\x1e\x85\xf8\xfa\x0c\x19\x83\x5e\x96\x96\xb9\xd5\x56\xaa\x50\xe0\x45\xa1\x49\xce\xc0\xe8\x7e\xbc\x6c\x62\x03\xdf\x25\x50\x58\x44\x12\x8a\x8b\x25\xae\xa2\xac\xbd\xec\x28\x5d\x7d\x05\xb0\x7a\x28\x08\xa6\xfe\x3d\xc6\x17\xb9\x04\x28\xff\x10\x3d\x4e\x4c\x05\xb1\xed\xec\x71\x79\x1c\x41\x70\x49\xa1\xdf\x37\x83\x20\x98\x80\x5d\x37\xe9\x8c\x37\xea\x2d\x82\x44\x46\x00\x78\x13\xed\x43\xf9\x2a\x3c\x63\xf9\x17\xf7\x60\x94\x85\x3b\xdc\x6c\x36\x28\xfb\x83\x72\x57\xf0\xcd\xb7\x68\x9a\xe1\xa8\x83\xdc\x23\xf8\x7d\x13\x8e\x01\xc6\xf8\x17\x68\x3c\xc8\x09\x96\xb2\x27\x58\xf5\x04\x4d\x3f\x65\x3c\x50\x3b\x9b\x0c\x52\x9c\xc7\xc5\x7d\x8a\x00\xce\x30\xbc\x40\x51\x1c\x43\xff\x66\x57\x6b\x2b\xd0\x43\x4b\x04\x9d\xb8\x28\xf3\xb8\x8d\x28\x0a\x71\xed\xdb\xdc\x79\x79\x3b\x7a\x66\xab\x09\x9c\x69\xfe\xb7\xff\xf9\xc4\x68\xa7\xe6\xc0\x3f\x7d\xc9\x77\x6a\x1a\xa4\x59\xa7\xe1\x61\xba\x96\xda\xd7\x51\xbf\x10\xb8\x71\xc4\xd0\xe3\x31\x95\xb8\xe9\xe6\x42\x56\x76\x27\xaa\x05\xa1\x2c\x87\x6e\xeb\x7a\xca\xb1\x99\x83\x32\x30\xf5\x4b\x66\x47\x1a\x14\x45\x6c\xd2\xc9\xd0\x30\xb8\xc4\x48\x44\x19\xb0\xf5\x64\xee\x01\x88\x71\x3a\xe0\x27\x52\x93\xac\x15\xe5\x8e\x06\xc9\xc2\x56\x4b\x07\x58\x20\x61\xd2\xd4\xb7\xd5\xf0\xa4\x18\x8d\x16\x01\x2e\x2e\x05\xe6\x33\xd3\x37\x6d\x37\xb6\x3c\x49\xd4\xf1\x10\xaa\x96\x63\x7c\x23\x92\xe0\xbb\x11\x63\xa1\xef\x0e\xc3\x60\x7b\xd9\xb5\xbd\xc2\x26\x2b\xb6\x78\x2c\x0c\x3c\x88\x2a\xb7\x36\xc3\x99\xc9\x1d\x3b\x46\x9a\xd4\x30\x74\x12\x4d\x23\xe3\xf1\x90\xaf\x79\x55\xcf\x3e\x46\x22\x51\x77\x68\x8a\x44\xc8\xde\x91\x9f\x3d\xa4\x5c\x6d\x07\x34\xe6\x11\xc5\x3d\x1c\x12\x4a\xe0\x70\xdd\x3c\x45\x7b\x50\x94\x59\xaf\xd8\xe1\x6e\x17\x49\xe6\x2d\x59\xbb\x5e\xa9\x21\x88\x8d\x41\x31\x12\xc6\x0b\x6e\x08\x85\xdc\x33\x7e\x45\x15\x26\xed\x08\x56\x46\xa1\xdf\x4c\x37\x5d\x22\x69\x43\x5b\xf8\x3c\x4b\x97\x7d\x50\x37\xd0\x5d\x7d\xdb\x6a\x2c\x72\x4c\xc2\xdd\xe2\x7e\x56\x79\x5c\x88\xb2\x22\xee\xd8\x82\x66\x5d\x6f\x51\xc8\x78\x8b\x7c\xdf\x62\x96\x2f\xc4\x1d\xe1\x04\xc1\xce\xbf\xeb\xcc\xb3\x1c\x53\x65\x64\x31\xce\x7b\xc9\x9a\x5b\x73\xca\xc1\xe9\x5e\x19\x5e\xf3\xd7\x50\x14\xd6\xa0\x34\x54\x8b\x05\xb0\x20\x27\x11\xc7\x0f\x45\xb9\x26\xf8\xc2\x57\xc5\x50\x6c\x6b\x91\x6c\xdc\xb6\x31\x61\xe6\x7d\x73\x20\x2c\x94\x12\x89\x67\xd4\xf0\xa3\xea\xe3\x94\x55\xfb\xe6\x9a\xb9\x11\x28\x34\x3a\x1d\x77\x88\xe5\xe3\x4e\x20\x4d\x48\xe2\xbe\x78\x5e\x4f\x5e\x12\xe6\xd1\x6e\x47\x44\x79\x38\xae\xfe\x77\xf0\xe5\x66\x11\x2e\x4b\x75\x57\xaa\xa5\xaa\xb2\x2b\xa1\x06\xe3\xb8\x04\x8a\xac\xdf\xf5\x33\x60\xda\x46\xaf\x2e\x11\x99\xf4\x79\xa2\x0c\xfc\x1a\x93\xc0\x98\xf6\xb2\x59\xb2\xbb\x9c\x35\xc6\x95\xfd\x09\xec\xb4\x9c\xb8\x60\xd4\xb7\xb9\x49\xda\xc5\x5d\x8c\x9f\x06\x9d\x9d\xf5\x13\x57\xd5\x0f\xc1\x65\x1c\x1f\xc3\x8e\xee\x9b\x73\xf3\xd5\xb9\x29\x4a\x37\x5d\x09\xbb\x86\x25\xe7\x22\x81\xaf\x3d\xd9\x72\x0e\x08\xf0\xd9\x8b\x0c\xdb\xc0\xae\x95\xc5\x3c\x24\xdd\xbd\x4b\xc3\x7f\xe2\xef\xa7\x13\xdb\xb2\xbb\x96\x14\x65\x9c\x2c\xd8\xa2\xcc\xb3\xc4\x95\xeb\xd0\x07\x38\x39\x24\x69\xb0\xbb\x23\xa2\xb1\xc1\x23\x2f\x65\xc9\xe2\xae\xd0\xc2\x97\xc2\x01\xfe\xee\x2e\x07\x97\x77\xd1\xcd\x80\x39\xbe\xc6\xe3\x61\x82\x15\xc1\xd6\xfd\x6b\xd9\x9f\x28\xd7\x9f\xa7\x67\x6f\xd3\xa5\x24\x2e\xba\xbb\x42\x30\x7c\xc6\x6d\x14\x94\xd4\x6f\x38\x63\xaf\x3d\x22\xee\x6f\xb3\x18\xcc\x11\x02\x0e\x5e\x47\xdb\x16\x06\x76\x5b\xeb\x19\x2a\x76\x16\x71\xea\x28\x02\x09\x41\x20\x6a\x44\x72\x3c\xf6\xa6\x66\x67\x0f\x8c\x4e\x3b\xc1\x5c\x42\x28\x5e\x8e\xc7\x3e\xf4\x7c\x73\xd5\x24\x49\xdf\xf4\x6d\x3e\xe1\x16\x91\xd4\x77\xa8\x2b\x78\x93\x6a\x3d\x17\x08\x77\xed\x94\x72\x5c\x8e\xa0\xca\x4d\xa4\xe2\xc4\x80\xd5\x35\x0b\x1f\xcc\xe2\x00\x2a\x2a\x14\x68\xb6\x8f\x0e\xb7\x48\x08\x1e\x9a\x6a\x7e\x7e\x67\x83\x38\xbb\x98\x4e\x27\x0a\x19\x1e\x1a\x8a\xa8\x01\x3c\x70\xaf\x40\x2a\xba\xae\xa3\x0e\xb3\xf8\x37\x23\x55\xae\xae\x59\x05\x38\x5e\x15\xec\x1a\x24\x6d\x17\x70\x42\x6e\x82\x48\x68\x9d\x3c\xe9\x4d\xf5\x22\x75\x2e\x9d\xc8\x84\xd7\xda\x59\xaf\xc1\x78\xd9\x6b\x8c\xdc\xbc\x36\x86\x42\x3f\xf8\x72\xd3\x24\x58\xe9\x70\x2a\x1b\x68\x2c\xa0\x8e\x7b\xdb\xb9\x35\x9d\x54\xa5\x21\x67\x9b\xb4\xb3\x06\x29\xfc\x9e\x66\xde\xfe\xd3\xbe\x36\x64\xdb\xdd\x0c\xa5\x0b\x95\x07\x75\x9f\xc1\x02\xbc\x15\x51\xba\x7d\x84\xa7\x32\xb8\x74\x71\x89\x40\xcb\x49\x56\xa0\x62\x26\xe9\x03\xe9\xa7\x5d\x75\xf5\x51\xf4\xb5\x7e\x3a\xd2\x13\x24\x8b\x7c\x8a\x5a\x82\x77\x86\x34\x2a\xfe\xd3\xe1\x48\xe3\xb1\x4e\x39\xfe\x2b\x83\xb8\x48\x5c\x5a\xe3\x95\x6a\x84\x0f\x18\xab\x13\x2b\x15\xab\x6e\x3c\x61\x70\x03\x1c\xed\x3c\x2b\xd0\x37\x80\x9b\xde\xa0\x56\xc4\x46\x1d\x27\xd4\xb2\xb5\x7d\x29\x12\x89\x63\x8f\xc2\xa7\xcf\x93\xa8\xcb\x6b\x83\x3c\x2e\xfa\xf9\xa0\x63\xd3\xb6\x75\x0c\xae\xc8\xd8\xde\x74\x37\xac\x21\xa0\xdb\xe3\xd8\xb5\x57\x23\x1a\x2e\x7c\x17\x61\xbc\x9c\xd4\x0d\x2f\xae\x66\xb9\xab\x57\x61\x61\xe9\xac\x13\x11\x7b\xfd\xe9\x18\xcc\x65\x76\xb6\x59\xf4\x63\x25\x88\x03\x39\x2a\x2a\x37\x72\x4c\xe6\x6c\xc1\xb4\x97\x93\x0c\x4d\x6a\xd4\xf6\x21\x3a\x28\xc7\xee\x26\x60\xd6\x41\x08\x2b\xc7\x63\x4f\xb9\x4a\xea\x33\x53\xf8\xf1\x02\x64\xb5\xe7\x69\xda\xee\xfc\x98\x4f\x9e\x9d\x6d\xa6\xd6\x76\x58\xe9\xe8\x06\x29\x1d\xdd\xa8\x35\x6f\x5d\x93\xaf\x78\x85\xbe\xba\xf6\x62\x50\xcd\x7b\xb9\x0b\x12\x75\x1a\x69\x3a\x10\x06\xfc\x7e\xf7\x4b\x12\xd9\x3d\xda\xe2\x96\xa8\x7b\xb2\xea\xe1\xb6\xf4\xd0\xa7\xa7\x9b\xf3\x53\xf3\x7b\x42\x58\xf9\xe7\x78\x7d\xca\x2e\xe4\x0c\x0a\x42\xba\x7f\xc1\xf8\x4c\x94\xcd\xb5\xc0\x1d\x94\xba\x8f\x23\xcd\x46\xde\x86\xa1\x19\xe5\x54\x25\x2f\x35\xbe\x2c\x66\x0e\x36\x17\x06\xf9\x92\x2d\x0a\x52\xe4\x94\x09\x3b\x39\x19\x2b\x73\x1d\x9a\x6a\x5a\x53\x94\x82\x62\x40\x86\x70\x0b\x61\xf8\x88\xd4\x1b\xaa\x36\xc7\x86\x7b\xe4\xf3\xcd\xe7\x7f\x8d\x70\x45\xd2\x77\x91\xfc\x3f\x72\x4d\x04\x5c\xfe\xdf\x39\x7b\x85\xf0\xee\x2f\xf0\xa8\x95\x11\xb6\xca\x26\x51\xb5\x3b\x16\x39\x0b\xe7\x7b\x03\x5f\xf8\x3d\x79\x90\x0f\x9c\x01\xd7\x9e\x0f\xae\x51\x86\x56\xd9\xe6\xdf\x8a\xb6\xff\xba\x1f\xde\x6c\x3c\xf7\x5c\xa8\xb4\x54\xef\x59\xa4\x44\xa2\x10\x40\xfd\x08\xcf\x11\xc1\xcf\xb5\x28\x20\x8d\x6e\x31\xef\xe8\x2f\x61\x4c\xb4\xb3\x40\xa3\x2d\xdf\xc7\x6c\x2e\x8a\xe9\x28\xf1\xe1\x9d\xfc\x7d\x14\x4a\xb7\xc7\x9d\xfd\x83\xf9\x39\x3d\x6c\xbc\x34\xe3\xc3\xff\xc6\x2b\x3a\xd7\x7b\x12\x50\x18\x8d\x4e\x03\xc5\xd5\x5f\xa1\x9b\x0b\x34\xd0\x49\xb1\x85\x58\xb0\x47\x98\x85\xe0\x7f\x46\x8a\x8f\x64\xeb\x94\x5b\xbd\xb8\x93\x23\x54\x96\xba\x38\x8e\x78\x9b\x69\x16\x7d\x6b\xdb\x5d\x84\xa4\x1e\xf2\x1c\x7a\x9e\xd1\x23\xde\x94\x7d\xf5\x85\x06\x6b\x7a\x10\xa9\xc8\xd9\x3a\x4e\x4d\x0d\x34\x82\xba\xe8\x3b\x78\x90\x72\x32\x66\x23\x9e\x6f\xb6\xbb\x59\x16\xb8\x31\xa4\xc4\x47\x7e\xfc\xaf\x86\x5b\xa7\x28\xaa\x95\x40\x44\xaf\x5b\x74\x5d\x0e\x53\xfe\x7e\xd8\x27\xb2\x69\x96\x56\x56\x73\x0b\x50\x0c\xd5\x63\xdd\x90\x75\x75\xcf\x38\x2d\xe3\x5e\xdc\x09\x5c\x19\x75\xbc\x69\x8f\xfa\x72\xf0\xeb\x16\xf4\xaf\x3a\x1c\xe3\x9e\xb0\x8e\xaa\x6c\x35\x5d\xf3\x53\x07\x9a\xbf\xfa\xa5\x7f\xba\xff\x4b\x5f\x98\x73\x6e\x0c\xa9\xef\x83\x61\x40\x73\x9c\x77\xcb\x48\x8b\x69\x01\x7d\x60\x3a\x1d\x67\x9d\x71\x01\x1b\x54\xb4\x7f\x37\x0a\x3d\xc4\x9f\xbb\x4f\x4b\xe0\x39\x36\x43\xbd\x6f\xae\x59\xc4\xbd\x7e\x62\x79\xe6\xed\x2c\x11\x1e\x23\xae\xc6\x57\x9d\x1f\x06\x0e\x8d\xb2\x6b\xf3\x5e\xe6\xac\x0c\xae\x0c\xc5\x59\x39\xae\x67\x5d\x4f\xed\xaa\x7f\xf4\x3a\x22\x49\xe3\x92\x41\x7a\xb2\x34\x9d\x78\xd0\xfb\x64\xe2\xd3\x3a\xe1\xf3\x1e\x44\x10\xd0\xf4\x41\x4e\xf0\xee\xa8\x3a\xfb\xec\xac\x54\x7a\xc6\xc9\x50\xe6\xa7\xaa\xdd\xe0\x28\xb7\x01\x93\x85\x19\x3c\xc1\x8a\x42\xb7\x23\xdf\xe6\x3b\x8e\x31\x4f\xec\xf8\x7f\xef\xaf\x7b\x29\x4e\x92\x58\x82\x72\x54\x91\x3f\x66\x8a\xc9\x8f\xa3\xa7\x69\x9e\x39\x31\xe0\xdf\xd8\x11\xd8\x66\x4f\xe3\xe7\x14\xde\x1a\x78\x51\x1e\x69\x05\xca\xa8\xab\x8c\x5b\xde\xb9\x1e\xd2\xe5\x8e\xed\x0f\xdc\x00\x4c\x58\x07\x50\x5b\x53\x21\xa5\xa7\x47\x32\x6b\x93\x97\x36\x07\x85\x2e\xa0\xed\x77\x87\xe4\x9f\x1f\x46\x21\xb8\xfe\xc3\x21\x71\x1b\xbc\x39\x12\x2c\xf7\xb3\xf4\x11\xf7\x8f\x5a\x9f\xa4\xca\xdf\x65\xb7\xf0\x3c\xb4\x72\xdf\x9c\x4f\x2f\x49\xf5\xe1\xaa\x33\x97\xac\x14\xa0\xd2\x08\x61\x35\x5d\x1b\x92\xa6\xe5\x47\x60\x7f\x97\xaf\xa2\xca\xcf\xdf\x8f\xbd\xd4\xff\xcc\x61\x35\xe2\xa2\xd0\x32\xaf\x17\x1d\x0b\x02\x64\x5c\x23\xb7\x05\x38\x77\xdc\x3d\x88\xa3\x87\x1b\x57\xaf\x5f\xd7\xa5\xec\xe7\xb6\x88\x3b\x36\x2d\x8b\x51\xc9\x9d\x88\x40\x51\xd2\x8d\x11\x05\xf6\xba\xbe\x47\x3f\xcf\x06\x9d\x89\x00\x69\xb8\xe3\x1e\x18\x42\xdf\xe3\x78\xaa\x0a\xed\x0a\x7b\xd0\x76\xe2\x2a\x05\xe1\xf1\xec\x33\x3c\x9e\x7d\x86\x10\x32\x26\x2d\x56\xab\x68\x31\x24\x8c\xef\x39\x23\xa1\xbc\x71\xe3\x43\x03\xaf\x36\xdb\x5d\xdb\x83\x5a\x5a\x00\x5d\x13\x79\xc8\xe5\xb1\x1b\x79\xbe\x69\xd2\xb5\x55\xb3\xe6\x94\x8b\xd4\x3d\x55\x1e\x49\x15\xf6\xaa\x5f\xfc\x24\x39\xe6\xca\x14\x41\x82\xa8\x41\x34\xd1\xa7\xa8\xd2\x71\x6a\xa8\xb2\x66\x1d\xdb\x03\x37\x77\x18\x6b\xf2\x2e\x37\x8c\x6f\x8d\xdd\x54\xf5\xbe\xfc\x36\x61\x99\x9c\x77\xf0\xb6\xe4\x84\xf5\xaf\xca\x17\x26\x43\xa9\x52\x5a\x19\x88\x46\x1a\x22\xf4\x85\x98\x54\x12\xa7\x80\x9b\x20\x3a\x82\x2c\xfd\x1c\x91\xfb\x09\x48\x5f\x72\x4f\xf7\x9e\x01\x7e\x6d\x60\x90\x45\x08\xd0\x86\xc4\x19\xf0\x6d\x82\x18\x4d\xae\x87\x2e\xfe\x75\xc4\x59\xaa\x0d\xe7\xac\x87\xc2\xbc\xab\xd8\x4a\x79\x8a\x5c\xac\xc2\xb0\x72\x15\x23\x41\x54\xe1\x05\xbd\xa8\xd4\x83\x7b\xc3\x83\xbc\x83\x10\x03\xd5\x90\x8f\x18\x7a\x71\x04\xf1\x15\x36\x20\x26\xfd\x05\x79\xe2\x42\x2a\x64\xaf\xc7\x51\xc6\xc5\xfa\x15\x0d\x45\x84\xb9\xff\xab\x53\x00\x47\x54\xf0\x06\x36\x36\x7a\x57\x47\x11\x9e\x89\xc8\x91\x83\xa7\xe1\xdd\x5c\x47\x54\x84\xa8\xe6\x17\x2e\x62\xc6\x26\xf9\x7a\x4d\x4e\xd0\x2c\xac\x59\xc8\xb3\x0c\xf4\xa0\x1a\x7b\x51\x31\xe7\x8c\x1f\x91\x58\x8d\xd3\x54\xab\x1c\xd8\xa6\x1f\xd1\xb0\xa8\xb0\xde\xab\x77\x24\x74\x4f\x26\x6c\x84\xb0\x47\x17\x29\x20\xb8\x18\xf8\x93\xb2\x85\x4c\x2a\xe7\x00\x5c\x48\xdd\xc9\x97\x42\xfd\x10\xd4\x09\x44\x95\x3a\x2e\xfb\x34\xe5\xf6\xfd\xac\x88\x4b\x95\xd6\xc1\x33\xfe\x18\x57\x25\x27\xc4\x8d\x5d\x0c\x8a\xbe\x05\xd9\x78\xf5\x48\x91\xb1\xa1\xa9\x2e\xc7\xb5\x33\x42\x1d\x5b\x9a\xd8\x13\x04\x23\x14\xbf\x46\x90\x9d\x6b\xbe\x84\xd0\xce\x4d\x7f\x82\xc8\xfa\x51\xdb\x46\x23\x13\x6e\x52\xc3\xd6\xba\x6e\xe8\xa2\xc1\xdc\x9e\x36\x3e\xc3\x67\x2f\x10\x63\xc2\xe2\xc0\x26\x13\x24\xc8\x40\x7d\xa4\xe3\x24\x95\x77\x81\x38\xe1\x8b\x6c\x90\xa0\xcf\xea\x89\x02\x3d\xee\x76\xa2\xe5\x16\x8e\x2e\x75\xca\xc1\x4e\xd0\xf0\xf2\xfb\x23\x8a\x0e\x7e\x3a\xdf\x13\xc3\xcf\x07\x62\x78\x42\x73\x0f\x92\x8e\x88\xf1\x79\xd8\x92\x27\x06\xba\x4c\xbd\xb5\x55\x93\x3b\xe0\xcc\xec\xac\x94\x6f\x4e\x06\xa0\xc3\xff\x7e\x72\x8c\xa5\xe3\x95\xf9\xa9\x66\x6f\xd0\xee\x4e\x04\x00\x02\x82\x02\x94\xde\x6f\x38\xfb\x0d\xb4\xf7\x9b\xb5\x2a\x89\xae\x36\x1b\x2f\x0c\x84\x24\x46\x6d\x18\xd9\x33\xea\x88\x96\x36\xcf\x63\x47\x66\x31\x37\x27\xf5\xfb\xa3\x88\x5c\xe5\x24\x60\x79\x63\xe3\xe4\x4f\x62\x7d\x3c\x3a\xb1\xe0\x76\x8f\x8e\x32\x84\x6f\x4e\x4c\xba\x34\x30\x4b\x76\x8f\xfb\x63\x81\x88\xbb\x87\xee\xdb\x51\x01\x27\x75\x9b\x18\xa1\x6e\x91\x71\xdc\x05\xb6\x08\xb9\x5d\x98\x3a\x19\xa7\x8f\x78\xb4\xbe\x32\x7b\xda\x2e\xa9\x11\x31\x28\x06\xd2\x1d\x11\xde\x11\xd2\x27\x1c\x55\x72\xeb\xf5\x8d\x13\x61\xdf\xa7\x4b\x03\x05\x5c\x39\x8e\x42\x9d\x64\xd5\xda\x65\x9b\x76\x76\x53\x58\x02\x9d\x68\x34\x7a\x6f\x53\xe4\x23\x4d\x28\x19\xc0\xc4\xc3\xd5\x69\x4c\x82\x6b\x9c\x72\x66\x4d\x5a\xec\xee\x02\x91\xd0\xdd\x27\xc3\xd3\x8e\xcb\xb5\xbd\xe1\xa5\x5e\x1b\x8e\x8a\x44\x11\x27\xe8\x90\x04\x14\x30\xab\xe5\x39\x8a\x66\x67\x3d\x99\x77\xc0\xd5\x3c\x60\xe4\xf3\x03\x78\x35\xac\xd0\x1f\xc0\x74\x6a\x5a\x51\x53\x47\x58\xb1\xb9\xcc\x0d\xe3\xbb\xb8\x61\xff\x80\x76\xcf\xe3\x2d\x9a\xf8\xea\x0c\xda\xaa\x90\xa8\xd0\x3c\x2e\x69\x89\xb0\x29\x1c\xe1\x35\x7a\x47\xcb\x59\x99\x2d\x0c\x96\x63\x18\x39\x05\x58\x05\xb1\xca\x93\x81\x83\xdf\x1a\x87\x02\x9f\x24\xb0\xcc\xef\xcb\x8f\xe0\xcd\xc8\x7d\x6a\x23\x97\xd8\xed\xce\x8d\xf9\x95\x99\x83\xcd\x15\x93\xba\xe5\x8f\xf6\x8c\xa6\x2f\xf8\x42\x94\x41\x45\xf7\x02\x45\xb1\x6d\xad\xd0\x24\x6b\x67\x0b\x83\x3c\x25\xd9\x80\xcd\x88\x98\x86\x36\x6b\x14\x55\x9a\x49\xbc\x62\x27\x03\xf6\x1d\x2c\x82\x1e\x10\x30\x3d\xe3\x27\x21\x02\x24\xf1\xe4\x90\x7f\x31\xcf\x52\x83\x5a\x9a\x22\x96\xa9\x5b\xfb\xa1\x27\x39\xcb\x16\x84\x29\x17\x39\x14\x4c\x32\xe4\x06\x94\x47\xb5\xe1\x89\x6e\xae\xd2\x7c\x51\x6a\x96\x96\x5c\x62\x57\x45\x09\x08\x78\xbf\x47\x65\xd4\xef\xd5\x78\x81\x66\x99\x67\xfd\x89\x80\xc9\x43\x15\xd8\xeb\xdb\x7f\xf1\x15\xb9\xc1\x7b\x75\x0c\x43\xfd\x24\x13\x55\x0c\x00\xce\x40\xa6\x23\xc7\x54\xb6\x28\x57\x26\x43\x53\xf3\xdb\x5c\x34\xb9\x25\x2d\x6a\x3f\x50\x12\x98\x64\xde\x66\xe0\x4f\xba\x64\x13\x2b\xd3\x03\xd8\x42\xe7\x51\xb1\x45\x46\x70\x92\x4a\xb9\x27\x29\x93\x11\x7d\x7d\x25\x80\x08\x3d\x9d\x71\xfa\x95\x83\x2f\x37\x17\x93\x4c\x46\xd4\x43\x64\x72\x61\x48\x73\x3f\xcc\x4f\x68\x7b\xfd\x72\xcd\x4d\xc6\x79\x39\x2d\x4f\xef\x76\x8e\xf0\xdf\xb6\xec\xa6\x71\xbb\x11\x66\x33\x91\x82\xe9\xdc\xdf\xb8\xbb\x68\x96\xb6\xd7\xb7\xb9\x29\x07\x39\x7c\x80\xd6\xa1\x1b\x9e\xfc\xec\xdd\x1a\xcc\xd5\x8b\x4d\xd3\x37\x79\xd9\xb5\x71\x07\x80\x6e\x05\x53\x54\x5f\x21\xc7\xc0\x5e\xe8\x62\xec\x67\x50\x23\xde\xe9\x1e\x3a\xe2\x3d\x69\xe5\x79\x0a\x3e\x0f\x4e\xbe\x8b\x27\x59\x27\x2e\xef\xcc\x94\x7c\x3c\x7a\x96\x82\x9f\x85\x2c\xef\xc4\xa9\x53\x70\x74\xdf\xea\x87\x92\xaa\x0f\xa8\xfb\xa1\x89\xef\x41\xd9\xad\xb2\x88\x80\x1c\xb9\xc2\x57\x73\x65\xbc\x6f\xf0\xf2\x81\xa6\x7d\xbd\x6f\xf3\x92\x34\x41\x8f\x93\x26\xe8\xf1\xd1\xd9\xcf\x25\xfb\x99\x6a\x97\x2a\x6f\xb9\xdb\x25\x08\x9f\xb7\xb7\x08\xbc\x75\x12\x31\xaf\x72\xaf\x07\x68\xe6\x11\x17\xcb\xfb\xe5\x17\xd2\x8c\x5b\xee\x41\x09\x7e\x73\xdd\x79\x5f\x0f\x08\xaf\x9e\x1a\xc2\xe7\xdd\xeb\x34\x91\x03\xa4\x90\x4c\xeb\x82\x36\x40\x9b\x77\xee\xed\xa1\x17\x2a\xfc\x04\x5e\x6f\xf3\x15\x2f\xa4\xfe\x4d\x12\x00\xfd\x94\x1b\x15\x81\xb1\xdd\xe6\x04\x13\x94\x56\xcd\x39\x23\x4f\x28\xef\xe5\x5c\x77\xaf\xb3\xc6\xe9\x65\x76\x27\xdf\x19\x99\x38\x2a\x54\x60\x6d\x97\xab\x0a\x4b\x4d\x1c\x6e\x0d\xaf\x1f\x3d\x6a\x2d\x96\x8f\x30\xcb\xf9\x3e\xf6\x45\x07\x1d\x53\x19\x17\x77\x47\xca\xe0\x3c\x92\x9e\x25\xe5\x1e\xd2\x48\xbc\xc8\xdd\x80\x73\x11\x4d\x5a\xdf\x74\x65\x69\x5f\xc2\xf5\x62\xfc\x87\x31\x5d\x76\xdf\xfd\x1c\x16\xcd\x9f\xb8\xd5\xe0\xb9\x84\xbc\x84\xca\xd5\xb1\x20\xef\xd0\x54\xb3\x30\x7e\x10\x75\xa4\x5f\xe0\x67\x00\x7c\x77\xe5\x6f\x3c\xe6\x74\xc5\xa6\x9d\x2c\x9f\x08\x28\x0a\x28\x86\x7b\x29\xaf\x2f\xbe\xe2\xa7\xa3\x34\x68\x2f\xb3\x32\x83\xd5\xfc\xc7\x69\x34\xf3\xa5\x81\x15\x91\x59\x1a\x61\xd7\xaa\x3b\xd8\x4c\x36\xaf\xb8\x9b\xc5\x02\x7b\x03\x0b\xd7\xbd\xe2\xbf\xfb\x54\x8b\xcc\xa7\x72\x29\xf8\x51\xb1\x2b\x14\x6f\x9d\x27\x94\xfb\x26\xc7\x5e\x0e\x62\x83\x27\x32\xe7\xa3\xf7\x06\xa9\x4c\x90\x1c\xd6\x2d\x0a\xd8\xdb\xd9\xa0\x2f\x3c\x0a\x02\x11\x6e\x05\x58\xf0\x5d\xe7\x29\xb5\x9b\xec\x49\xb8\x7a\x0b\x59\x27\xd6\x94\x47\x27\xf4\xdc\xf7\xeb\xe8\x5e\x4d\x25\x73\x29\x5e\xb1\x66\xd5\x20\x92\x47\x46\x05\xbc\x98\x1c\x0f\x99\x0e\x79\xd1\x24\x6d\x4b\x0d\x46\xb9\x7c\x39\xa9\x13\x7d\x5a\x1a\xa8\x04\x91\x87\x69\xfb\x5e\xd9\xb8\x03\xa9\x32\x2a\x37\xca\xac\x77\xa1\xfc\x0c\x24\xf4\x76\xc5\x67\x6e\xc5\x7f\x9a\xa8\x98\x87\x4e\xef\x86\x8e\xcc\xfe\xa7\x08\x47\x78\x99\x48\x3c\x04\x72\x06\xcf\x3f\x39\x86\xba\x39\xf8\xb2\xc3\xfa\xda\xd5\x09\x12\x06\x41\x5e\x87\xd9\xf0\xab\x6e\x57\xa2\x6a\xb4\xad\x15\x4a\x96\xb6\xd7\xef\x9a\x22\x16\x0d\x27\x65\x2b\x6c\x78\xf1\xe0\x53\x35\x15\xa6\xd2\x24\xcb\x60\x06\xd2\x87\x28\x15\x51\xdf\xf2\xf5\x09\xeb\x09\x5a\x55\x8e\xf0\x38\xcf\x52\xe7\x11\x6b\x69\x33\x9e\x22\x27\xe5\x75\xdf\xe6\xe6\x3c\xf3\x53\x83\x28\xa1\xb6\xbe\xb5\x97\x66\x9a\x6e\x3e\x2d\x80\x53\xee\x21\xa6\x90\x93\xb1\x7c\x7b\xe6\x60\x33\x35\x79\x9e\xad\xda\xa2\x04\xae\x18\x35\xe2\x3b\xc4\xe1\x77\x81\x88\x87\x4f\x0d\x55\xfd\xbc\x5f\xac\xb5\xbb\x99\x03\xf8\x95\x71\xdb\x95\x0c\xe1\x04\xd1\x79\x47\xe5\xef\xed\x61\x28\x1f\xb2\x6a\x55\x27\x4b\x5d\x13\x23\x70\x7a\xdc\x20\x4e\x8f\x1b\x54\x22\x76\xa4\x0d\xd9\xc0\x29\x11\x78\x72\xd0\xeb\xc4\xb0\x7f\xbd\x0e\xbe\xde\x1e\x94\xd9\xa0\x84\x2f\x1d\x91\x38\x57\x76\xc1\x71\x75\xed\xfd\xcd\xc5\x41\xda\xc1\xb6\x85\x2b\x42\xdb\x15\xfe\x6a\xd7\xfa\xc8\x66\x0c\xc0\x91\x85\x0c\xfd\x25\xbc\x91\x8f\xb1\x67\xe5\x84\x26\xa5\x3a\x66\xed\x11\xa2\x9b\xda\xd3\xf2\xc9\xf7\x67\x9f\x6e\x05\x30\xff\x71\xd7\x78\x53\x71\x8d\xea\x26\x91\xa8\x3c\x74\x49\x1f\x7c\xc1\x35\x9e\x18\x3e\x82\x35\x27\x27\xce\x19\xc0\xa5\x0b\x8c\x08\xa6\xea\x1e\xe3\x3c\x26\xd7\x9f\xe2\xda\x42\x26\x43\x70\xc1\x2d\x9d\x22\xbe\xf6\x53\x63\xb5\xcb\x57\x66\x0e\x36\x07\xe9\x8a\x8d\x3d\x22\x8e\x26\x27\xfc\x18\x05\xc9\xb6\x26\x56\x49\xe9\x91\x4d\xcb\x30\x8b\x9c\x44\x4f\x05\x83\x9b\x9b\xc5\xb2\xe8\x61\x3c\x47\x43\xaa\x9f\x45\x14\x9e\xfd\x8c\x08\xa2\xb2\x7c\xc9\xa4\xf1\x57\xad\xbc\x32\x45\xa1\x33\x6a\xf1\x0c\x15\xef\x6f\xd5\xea\xe5\x24\xb1\x30\x4c\xbd\x3a\x42\xc1\xe5\x61\x9f\xac\x8b\x44\x9e\x21\x8f\x7b\x71\x2a\xf5\x68\xb8\x23\xc4\x49\x72\x1c\x7d\x26\xc4\x10\x5d\x93\xf7\x4c\xdb\x0e\xca\xb8\x6d\x12\x84\x9a\xc8\xee\x30\xe5\x20\xad\x9b\x88\x7c\xfd\x6d\xfc\xac\x0a\x73\x04\x2c\xf8\x77\xf0\x84\xe5\xe3\xeb\xe3\x28\xa9\x25\x53\x76\x6d\xe8\x40\xc2\xe6\x81\x7c\x5a\x8e\xc7\xec\xd8\xdc\x5c\x73\xd5\xac\xc8\x08\xb9\x2f\x67\xba\xab\x91\x13\x9e\x6e\xcd\x92\x6c\xa9\x4a\xe1\xaa\xeb\x83\x23\xbd\x45\xbc\x83\xb7\x68\xe6\xa2\x17\xb7\xbb\xf1\x92\x49\xd1\xc5\x12\x1d\xe2\x88\x08\xab\xce\xa1\x06\xa1\x9d\xfd\x6a\x0b\xa9\x5a\xf1\x53\x2c\x40\x95\xe5\x3d\x49\x49\x0e\x8c\xc8\x33\x2b\xd7\xc8\xf8\x5b\x6d\xf6\x4d\x51\x58\xa1\xe8\xc4\x2a\x46\xff\x49\x34\x6d\xb0\x31\x10\x3e\x1d\x89\x9e\xde\xc2\xdc\x66\xb4\xf4\x04\x7b\x77\x03\x59\xb1\x9c\x0c\xf7\xc4\xcd\x7e\x6e\x17\x7f\xb3\xb9\xf8\x39\x07\xd2\x46\x0e\x2f\x65\x20\x6c\xaf\x2b\x4c\x01\xbf\x17\x53\x84\x40\xb5\xdc\x0e\x69\xc3\x6f\x3d\xd5\x72\x15\x56\x01\x37\xba\x5d\x8f\x05\x78\xcf\xed\x7a\x04\x43\x0d\x18\x1d\xd8\xee\xc9\x56\x20\x0d\xd8\xde\x22\x2a\xa8\xbd\xad\x20\xf0\xf1\x38\x98\x81\x7c\x85\x7c\x7e\xea\xc0\xe6\x15\xd9\x13\x18\x51\x7a\x7a\xdd\x59\x79\xac\xae\x1d\x88\xfb\x11\x21\x4f\xb4\x48\x85\xf3\xb2\x8b\xab\x44\x04\x0f\xeb\x01\x69\xfa\xde\x56\x60\x25\xd8\x83\x58\x1f\x8d\x14\x61\xb9\xc6\x47\x7e\xc3\xc9\x49\x60\xd1\xed\x76\xe1\xb9\x66\xb8\x8d\xdf\xfd\x92\xc7\x2c\x56\xd1\x21\x16\xc0\xfd\x61\xe3\x77\x0e\x78\x1d\xa1\x4f\x9a\xbf\x4f\xe2\xb4\x9d\x25\xf0\x86\x9e\x7b\xa7\xfa\x51\xed\x09\x05\x7b\x1b\xe7\x05\x09\x67\x5d\x8b\x82\x70\xd6\x35\x1f\x88\x16\x36\x59\x6c\xb8\xd7\x80\x5a\x09\x84\xa1\xe4\x78\xcc\x53\x3a\x41\x9c\x9e\x0d\x0b\xa4\x8e\xdd\xc5\xc3\xa9\x13\xdb\x2f\x61\x57\x7c\x14\x73\x48\xb5\xff\x7e\x88\x7d\xac\x38\xb5\x9a\xba\x4e\xcf\x94\x36\x8f\x4d\x32\x11\x92\x57\x80\x9e\x70\x0b\x1f\x46\x4c\x81\x5b\x87\xae\xea\x65\x65\x96\x6b\x23\x10\x26\xf9\x6a\x34\x82\x3e\x0d\xdc\x07\x7f\x46\x14\x24\x0b\x71\xb6\x94\x1b\x07\xf9\x6d\x50\x7f\xe4\x3a\xf1\x76\x5c\xaf\xd5\x07\x5e\xc8\x33\xd3\x69\x9b\xa2\x94\x02\x34\xb2\xa3\x77\x5c\xce\x20\xc7\x3e\xd8\x8d\xd3\xd7\x08\x27\xe1\x75\x4b\x67\x67\xbd\x6e\xe9\x33\x5b\x41\x96\x2f\x36\x0f\xbe\xfc\xa8\x5b\x9e\x3a\x13\x10\x6a\x4f\x77\x22\xea\xcf\xff\x1c\xc5\x5f\x24\x04\xbf\x40\x42\x74\xcd\x3d\x7b\x19\x95\x76\xeb\x1a\x45\xc5\xff\x85\x09\xd5\x3e\x72\x4b\x04\x15\xe6\x53\xce\xdb\xb2\xd2\xbe\x32\xdc\x4f\xb0\xdc\x55\x9d\xb8\x76\x3b\x5b\xb1\xa9\x4a\x99\xe1\x0f\x31\xd4\x24\xc7\x63\x95\x0b\x07\x1f\x11\x5e\x74\xed\x05\x22\x82\x94\x21\x4d\x39\xa9\xc5\x6b\x98\x9e\xf9\xaa\x03\xb8\x78\x82\x40\xa9\xf8\xe8\x0c\x40\x0d\x4b\xe8\x6b\xd6\x68\x58\xaf\x13\x4c\x01\xe2\xb1\x51\x57\x22\x5b\x88\x53\xa7\x1b\xb5\xf9\x66\xf5\x8c\x36\xdf\x1c\x7e\x9a\x0c\xf4\x8a\x2d\xca\x78\xc9\xf5\x3f\x5d\x91\x0b\xe8\xae\x7b\xee\xc5\x7b\x12\x10\x12\xc6\xa1\x96\xea\xd7\x68\xbf\x2e\x66\xf9\xe7\xdc\xc3\x45\xb6\xb8\x81\x06\x14\x2a\x5a\x1b\x54\xb1\xbd\x89\x22\x00\x12\xde\xc7\x9d\x2d\x92\x97\xe9\x5a\x78\xe8\x59\x9e\x1c\x12\xd8\xfb\x07\xae\x03\xa8\x9c\x15\x95\x99\xf1\xd2\xc6\x41\xec\xef\x0c\x96\x0d\x6a\x08\xc2\x6c\xb1\x79\xc4\x01\xc6\x60\x8a\xbf\x85\xc2\x36\x3e\x7a\xcf\x35\x02\x61\x0f\xdf\x72\x78\x2a\x05\x84\x54\x0b\x0d\xbb\xea\x7d\x2e\xf3\xbd\x39\x24\xb9\xc6\x2b\x24\x6d\xf7\x4b\x38\x23\x38\xb3\x1b\x11\xe9\x5a\xde\x46\x51\x04\xff\x72\x7b\xc8\xac\xae\x37\x51\x93\x83\x87\x99\x5c\x27\xdc\xc3\xcf\x29\x0a\x39\x16\x85\xf9\xfb\xc9\xb1\x29\xca\xb9\xb9\xca\xb9\x56\xbb\xd0\x42\xca\xc3\x6b\xb9\xbe\x1d\x85\xa9\xee\xb7\xa9\x7b\xb2\x98\x0d\xd2\x4e\x9c\x2e\xed\xc2\xa5\xc8\x25\x0f\xb7\xf8\x8c\xa9\x70\xec\x03\xff\xeb\xee\x39\x62\x61\xfc\x98\x27\x99\x27\x50\x52\x57\xab\x48\xea\xaa\xe5\xda\xce\x10\x54\x23\x03\x44\xd9\x6a\xa2\x45\x15\x21\xb4\x0e\x80\xc7\x00\xfb\x8d\xcf\x4e\x89\x2b\xf7\x72\x34\x32\x6e\x57\x98\xb4\xcc\x1a\xee\x6d\xd6\xf2\x52\x8f\x17\x46\x5e\x0c\xd3\x53\xda\x6d\xae\x6e\x08\x4d\xa3\x8f\xa2\x11\xc9\xd3\xad\xdb\x7b\xdf\x5c\x73\x21\x31\xed\xe5\xa2\xcc\x52\x3b\x11\x4a\x73\x72\x85\x80\x43\xdd\xc3\xf2\x40\x94\xb0\xc3\xcb\xe8\x17\x83\x4e\xc7\x62\xfc\x0a\xbf\xfb\xf4\x3a\x01\xa9\x2f\xf3\x80\x0f\x38\x35\xdc\xca\xb3\x9f\x6d\x11\xfd\x73\x69\x7a\x7d\x94\x8d\x59\x97\x51\xc7\x13\xaa\x67\xac\x52\x52\x0d\xaf\x44\xb5\x1d\xcf\x58\x88\x71\x99\xa1\xef\x7c\x8d\xb2\xdd\x81\xe6\x62\x96\x24\xd9\xaa\xaf\xd7\x63\x29\xc2\xea\xa1\x2b\x84\xe0\x18\x06\xf8\xca\x98\xac\x8c\xa3\x55\x49\xcd\xe2\x62\x9c\xc4\x48\x0a\xfd\xf4\xef\x4d\xa4\x3a\x72\x52\x67\x3b\x9b\x95\xf9\xe9\x69\x8d\x55\x81\x94\x47\x46\x47\x4a\xc6\x89\x00\xe6\x00\xbf\xc0\x84\xa6\x28\x36\x45\x01\xf5\xf6\x71\x1d\x34\xc6\xc4\x3d\x65\x02\x46\xd0\x72\x97\x58\x31\x04\xf8\x8f\x94\xf4\x2c\x75\x3d\xca\xdc\x74\x6c\x67\x32\x44\x53\x60\x69\x80\xd3\x41\xf4\x2c\xc7\xee\xcd\xc8\xdf\x8c\xa8\xce\x0c\xda\xe5\xde\x6a\xc1\x09\x33\x93\xfb\x55\x44\x78\x9b\x54\xde\xbb\x0d\x0b\x85\xbf\x39\x1f\x91\xee\xe3\x06\x5e\x21\x9a\x7a\xbf\xe4\xbc\xf0\xbc\x0b\x3c\x3d\xe3\x53\xb5\x4c\x7c\x1b\xc4\xf7\x74\xc7\x39\xeb\xf6\xcd\x35\xfb\xd6\x2c\x4f\x50\x9a\x70\x91\xfa\xa8\xd0\x21\xc4\x32\xff\x98\xb9\xc8\xe3\x8e\x2d\xdc\x54\xaa\xea\x4f\x57\x77\xa5\xf2\xd3\xe4\xb7\x2e\xd3\x17\x8c\x17\x9a\x66\x67\x9b\xaf\x99\xbe\x49\x6d\x61\xdd\xe4\x05\x16\xf0\x7d\xe7\x71\xb4\xbb\xe1\xae\x0c\x65\xa2\x93\x3c\x0e\x71\x73\x24\x16\x86\xd0\x1f\x5e\xe0\x06\xe5\x77\x89\x59\x2d\x06\x71\x09\xfd\x78\xdc\x1f\x24\x32\x65\xdf\x38\x8f\xa2\xd4\xe6\x34\x81\x77\x86\x0d\xf3\x71\x52\x7c\xbf\x01\x4c\x89\x6e\x3b\xc2\xca\xc5\x85\x59\xca\x2d\x94\x1b\x46\xb0\xbe\x72\x32\x56\xa8\xd8\x37\xd7\x8c\x3b\xd6\x88\x07\xaf\xb5\x60\x0a\x4e\x5a\x88\xb3\xd2\xb6\xbb\x69\x95\xb5\xad\xed\x0a\x9e\x61\x2f\xf6\x37\x2b\xb8\x62\xdd\x6e\x6c\x21\x46\x77\x5c\x65\xd2\xa1\xc2\xb5\x7f\xe8\xc2\x27\xad\x4f\xd4\xc1\xfa\x2b\x2f\x21\x7b\x11\xc9\x51\x17\x06\x52\x4e\x6a\xf2\xb5\xfd\xcd\x76\xe6\x75\xeb\x94\x4c\x88\x99\x85\xe8\x79\x65\x2b\x36\x2f\xac\x0f\x94\xd0\x70\x94\xce\xac\x9c\x10\x37\x5d\xe6\xfa\x48\x82\x44\x04\x0b\x02\xd4\x51\xe4\x98\x20\x1b\xfd\x4c\xba\x28\x78\xad\x52\x68\x94\x13\x22\x30\x5d\x18\x08\x29\x02\xcc\x38\xc4\x7a\xe4\x78\x94\xa4\xa6\x83\x78\x48\xa8\x59\x48\xf4\x14\x19\x9e\xaa\xd4\xb8\x85\xa1\xfa\x35\xfa\x3b\x55\x9a\x91\x14\x3b\x1b\x81\x03\x74\x48\x05\x14\x01\xf2\xe2\x8d\x08\x61\x2b\xcf\x19\x10\xb9\xa7\x1f\xcf\xad\x49\xfc\x0f\x34\x4d\x92\xc0\x02\x2a\xc8\xb0\xda\x42\x8a\x31\xac\x19\x22\x5e\xf4\x22\x0b\x08\x94\xae\xc3\xb0\xc8\x89\x8f\xef\x7b\x71\x1a\x17\x65\xbe\x36\x41\x7d\x95\xeb\x24\x17\xb9\xe9\xfa\x48\x70\x69\x27\xa8\x28\xb8\x60\xf2\x5c\x79\x31\xd0\xc1\x81\x2e\x9b\x1c\x07\x58\xae\xa0\xf3\xc2\xa0\xdd\x5b\xd8\x00\x72\x32\xf2\x1e\x3a\xb1\x45\x0d\x02\x90\xa7\x23\xcc\x89\x7b\x8a\xc6\x72\x30\x8b\x2b\xa2\x92\xc4\xfc\xdb\xcf\xf2\x76\xb7\x11\x56\xfd\xa5\x61\xa8\x53\x5e\x1a\x4b\x85\x2a\xcb\x98\xdb\xa2\x9d\xc7\x7d\x2f\xb6\xaf\xb4\xd5\x61\xa5\x7c\x5c\xd3\xf6\x9c\xa9\x6c\x41\x3f\xb1\xc6\x6b\xd8\xc3\x96\x35\xd6\xc3\xec\x74\xa3\x15\x80\xbb\x9d\xb8\x68\x67\x83\xdc\x2c\x59\x22\x1b\x3b\xee\xde\xa0\x1c\xfb\x3c\x77\x29\x4e\x54\x16\x40\x5b\x4b\x01\x5b\x73\x91\xa0\x4e\x36\x29\xc0\xe3\xa8\x0c\x5b\xd5\xb7\x69\xa8\xe5\xae\x49\xd9\x8f\x43\xc7\xe4\xed\x5a\x6a\x9e\x7e\x9e\xf9\xa2\x12\x89\xd0\x1d\xf0\x22\x74\x5b\x5d\xf9\xf4\x34\x3c\x65\xcf\xe4\xcb\x02\xc2\x40\x73\xef\xf8\x90\x4c\x01\x46\x9c\x94\x96\x73\xeb\x77\xcc\x1c\x74\x78\x99\x3c\xeb\xc5\x05\x2c\x2a\xa2\x41\x60\xd8\xe5\x38\x7a\x82\x2a\x88\x1d\x9b\x17\x3b\x42\x0d\xfa\x56\x44\x2e\x10\xa0\x6d\x54\x82\xaf\x10\x49\xf9\x09\x5a\x00\xb7\x98\x0a\xb1\xf3\xda\xa0\x28\x6d\x67\x17\x95\xaa\x76\xb4\xa8\x82\x08\x39\x40\x54\x4e\x8e\x92\x06\xf5\x8f\xb1\x51\xbd\x5e\xd2\xbe\xd0\xaf\xae\xde\x85\xf6\xbe\xb6\x2e\xb5\xe9\x99\x66\x6f\x90\x94\x71\x3f\xb1\x83\xc2\xe6\x34\x1f\x75\x83\xa9\xc7\x44\x68\x1e\xc8\x19\x00\x82\x50\x40\x9c\x6c\x79\x81\xf5\x2c\x2d\xb2\x04\x63\x05\x93\xd4\xfb\x17\xf5\x78\x14\x1f\x77\xac\x93\x28\xcb\x5e\xb7\x28\x21\x95\xf5\xa9\x31\x25\x81\x2a\xe6\x1d\xac\x4d\x12\xe4\x9b\xcd\xf9\x61\x5c\x9d\x16\x8d\xab\x2f\xd2\x15\xa2\xe6\xaf\x1f\x27\x89\x41\x1d\xa1\x4e\x0c\x94\xeb\x83\x1d\xe8\xc2\xbb\x55\xeb\x35\x7f\xaa\x1f\x53\x51\xd5\xea\x71\xaa\x9a\x8f\x5b\x56\xf2\x0f\x35\x06\x71\x7f\xf3\xb5\xac\x50\xe1\x41\x9d\x87\x26\x82\xd9\x73\xfe\x02\x17\xec\x52\x9c\x0a\x94\x12\x61\xb2\x90\x07\x28\x6f\xa8\xfb\x25\x58\x9c\xc7\x5a\xc4\x17\x30\x5e\x4e\x9f\x39\xd8\x4c\xb3\xbc\xec\xba\xd1\xa7\x80\xb4\x47\xce\x83\x64\x58\x94\x3f\xd0\x40\x66\xdc\x75\x2f\x2b\xca\x64\x6d\x22\x8c\xd7\x5c\x27\x15\x6a\xe9\x2a\x21\x24\x7b\xbb\x86\x77\xb8\x28\x4d\x2e\x55\x52\x2c\xc4\x77\x78\x26\x59\x28\x99\x55\xbf\xbf\x66\xc0\xab\xb2\x57\x0e\xd2\xe7\x27\x77\x01\xb9\x94\xe3\x31\x1b\x37\x73\xd0\x51\xdd\xc4\x6d\xd3\xef\xdb\xce\x0e\x2e\xd4\x8b\x55\xd6\x42\xa7\x5b\x69\xc8\xbb\x51\x93\x43\xee\xb2\xc9\x7d\xb2\x23\x9e\x63\x22\x1f\x14\xa5\x52\xca\x20\xc7\xb8\x86\x10\xca\x13\xa7\x7b\x16\x9f\x9b\xd1\x33\x44\x5c\x8b\xf0\x20\x5e\x81\xad\x50\x24\x6e\x63\x3a\x8c\x47\x85\xd8\xb5\xfa\x4f\x81\xfc\x86\x25\xc9\x51\x5e\xfe\x9f\x22\xc6\x2a\x86\xf7\x93\xc4\x8b\xa5\x05\x9a\x1e\xb9\xdd\x2d\x58\x51\x15\x81\x0f\x4f\x6e\x5b\xeb\x71\xbf\x19\x7b\x7d\xd3\x2e\x27\xdd\x4f\xb1\x30\x8e\xbb\xb5\x7f\xf5\x94\x6b\x16\x21\x2e\x91\x9e\x14\xae\x67\x1c\xcd\x3f\x37\xd7\x4c\xcc\x9a\xcd\x27\x42\x22\xf6\xbf\xe1\xa5\x2a\xeb\x5f\xb0\x41\x47\xc9\x0b\xb4\x5d\x3d\x60\x5e\xc9\x40\x31\x3c\x2e\xc7\x23\x64\xce\xd6\x94\x09\x20\x40\x28\x95\x41\xac\x48\x8e\xa9\xf7\xbc\x6a\x3a\x1d\x0f\x61\xf5\x14\xc1\x01\x45\x79\x21\xda\x22\x53\x39\x3f\xd5\x7c\x65\xff\x1e\x12\x4f\xc5\xfb\x64\xd0\xad\x96\x96\x48\xdc\x43\x34\xb0\x61\x4c\xf6\x62\x11\x21\x73\xbc\xc8\xdc\x44\xdb\x5c\xb9\xdc\xab\x34\xee\xf3\x63\x22\x23\x53\xe3\x26\x4e\x27\x03\x93\xc0\x9d\x11\x21\x72\x7c\x9b\x32\x87\xbb\xdf\x81\x85\xd9\xf0\xf5\xdf\x6a\x4d\xae\x4d\x10\xcd\xe6\x05\x82\x00\xdf\x65\xbe\x21\xcf\xaa\xb4\x68\x16\x72\x67\xcc\xdc\x6a\x84\xcb\x00\x8a\x44\x8e\x6b\x75\xbe\xf2\x6c\xc1\xe6\xa5\x00\x00\x91\xe3\x3c\x88\x58\x22\xf7\x12\x53\x31\xd5\xfa\x5d\x53\x14\x59\xbb\xca\xbc\xb5\x5e\x8c\x27\x78\x32\x22\x3a\xe0\xd3\x2c\x43\xf8\x27\xc4\x71\xbf\x60\xf2\xa5\x20\x6b\x3f\xc7\xe1\xea\xcc\x27\xf2\xe9\xce\xce\x36\x4d\xdb\x2d\xf4\x74\x4d\x79\xb9\xb8\xa2\xa3\xe1\xc7\x78\xae\x70\xa0\x59\xfa\xa0\x15\xf5\xf3\xed\xad\x30\xf3\xbd\x7d\x7d\xab\x2b\x42\x2b\x78\x27\x71\x5d\xde\xe4\x7e\xb8\x40\x9d\x48\x00\xf2\x80\xc0\x98\x40\xd1\x8c\xa7\x86\x81\x04\x34\x18\x9f\x69\x85\x2a\x55\x36\x28\x9f\x75\x0b\xd3\x97\xbc\x0e\x29\x15\xd7\x23\xeb\xae\x0f\x83\xa2\xe7\x3b\x81\xe7\xef\xfe\x53\xeb\xd4\x14\xd8\x01\x1c\xd2\xa6\x60\x24\xf0\x35\xf7\x40\x7c\xe9\x79\x08\x66\x0e\x7a\xbc\x49\x65\x9a\x10\x6c\x6f\x60\x0d\xca\x90\x82\xdb\xa1\x0e\x76\xf8\xc4\x73\x2d\x5f\xdf\x3e\xf3\x6b\xad\xa0\x49\x0f\xbb\x01\xc3\xb3\xbb\x15\xaa\x23\x33\x9f\x85\x5f\xc7\x23\xdf\x8e\xe6\x90\xc7\x45\x85\x09\xd4\x49\xcc\x84\xa0\xda\xb4\x9f\x25\xf8\x9e\x1c\x83\x61\x54\xaf\x69\x21\xc9\xb2\x0e\xa9\xf6\x7d\x1d\x3b\x48\x67\x24\x1e\xa3\x69\x27\x6d\x23\xfb\x36\xd2\xfe\x97\x55\xed\xfc\xee\x58\xd4\xb3\x6f\x0e\xa2\x83\x55\xbe\xe6\x2b\x4e\x8a\xb8\x0c\xa3\xc6\x88\x70\x61\xf4\x4e\xd5\x0d\x1b\xb6\xbb\xd6\x16\xf6\x13\xb9\x2e\x83\x35\xec\xdb\x04\x7d\x5e\x3f\xc8\x5b\xdd\xba\x36\x2a\x6a\x50\x33\x71\x92\x88\xa9\x93\x21\xbf\x88\x8a\x9c\x97\xe8\x9b\x97\xe3\xb4\xb3\xa7\xba\x00\x65\xf2\x74\x2f\xc2\x23\x49\x7d\x27\x5f\xb8\x9a\x88\x10\x44\x0b\xe8\xca\xcb\x3d\x02\xe8\xf1\x0f\x63\x9f\x96\x0d\x6f\x60\x61\xcb\x17\x0c\x03\x2e\x35\x2e\x9b\x61\xa2\xea\x81\x5b\xbe\x88\x20\x27\x40\x12\xea\xe7\xb3\x5e\xd2\xca\xd6\x1d\xd4\x95\xf0\x83\x37\x51\xd5\x80\xdb\xdb\x83\x86\xa6\x50\x29\xb5\x02\x81\xf4\xbd\x88\x74\x46\x6f\xbb\xfb\xd2\xf0\xb2\x31\x3d\xad\x12\xc6\x6e\x6d\xab\x26\x48\x75\xe9\xd8\x86\xdb\x5b\x54\x15\xd8\x70\xf1\x30\x02\xa9\x2b\xa4\x9c\xbf\x3e\x0c\x82\x7e\x1b\x57\x87\x34\x8c\xb2\x67\x9d\x04\x12\x4e\xb9\x7e\xa3\xb0\xb9\x21\xd2\xd7\xf6\x6d\xe3\x77\x0e\x04\x72\xd5\x6a\xf7\x61\x07\xdc\x01\xdd\x85\x2f\x2a\xcd\x4f\x1d\xf0\x90\x18\xd7\xfe\x55\x09\x7a\xf7\xe6\xf0\xe8\x6e\xb9\x99\x6a\xf8\x9d\x0d\x57\x28\x92\xb9\x74\xac\x6b\x38\xb4\x47\x04\x80\x88\x0e\xc5\x49\x40\x31\xd1\xbb\xb8\xb9\x45\x85\xa9\x7c\x12\x7f\x8a\x67\x83\xbe\x0a\x5a\x21\xdb\xd7\xdd\x13\x17\x4a\x1b\x61\xe3\x26\x82\x9b\x19\x5f\x73\x21\xed\xa5\x1f\x53\xb9\x07\xf3\xfc\xf0\x7e\x57\x87\x23\x73\x41\xd5\x75\xa3\x33\xb2\x89\x97\x8c\x8d\xf1\x5d\xd8\x4b\xc5\x76\x13\x61\x4c\x23\xa8\x25\xfe\x07\x48\x1f\xea\x0c\x01\xf1\x14\x1f\x19\xab\x66\x7d\xf9\xcb\x6e\x80\xd7\x36\x1a\x5f\xf8\x3d\xad\x24\xba\x5b\xd4\xaa\x62\xc8\xaf\xe2\xb4\xb4\x79\x6a\x92\x3d\x34\x84\x79\x22\x22\xda\x8a\xe3\x24\xb8\xf0\x0f\x04\xc5\x14\xf5\x34\xbc\x86\x0b\xae\x45\xa3\x2d\x83\x50\xfb\x78\x80\xeb\x94\x4f\x8f\x94\x9f\x46\x15\xc0\xdb\xdd\xc7\xdc\x9a\x42\x27\xf6\x1c\xc1\xed\xb6\xb5\xaa\xf5\x25\xcc\x01\x23\x16\x3d\x22\x18\xef\x99\x61\x28\x46\xed\x86\x33\xc0\xc9\x45\xf2\xf5\x23\x38\x37\xa1\xeb\x06\x57\xc1\x87\x2c\xa7\xf0\x60\x18\x64\x4b\xc0\x9b\x0a\xb7\x76\x93\xda\x36\xab\xdd\xb8\x5c\xcc\x72\xb1\xb1\x58\xd7\xe7\x23\x9a\xb5\x3f\x4f\x71\x8f\x1b\x67\xc4\x5f\xea\x50\x98\xbb\x0f\x65\x73\x1d\x79\x12\x39\x34\x5f\x85\x12\x93\x68\x8f\x4e\x51\x94\x98\xdb\xa5\xb8\x27\x72\x36\xc8\x89\x3f\x24\xf8\xc6\x87\xf4\x97\x6d\xd3\x8f\x4b\x93\x3c\x49\xd3\x28\xe0\x9e\x47\x0a\x22\x09\x16\x76\xff\x39\xb8\x26\x55\xec\x72\x17\x0c\xb0\xc1\x75\x31\x89\x98\xfe\xb9\x88\xc0\x11\xbd\xd7\x37\x68\x56\xfa\xae\x5b\x1f\x28\x94\xdc\x24\x44\xdd\x3d\xd8\x37\x2f\x0b\x36\x73\x50\xff\xc8\xad\x1b\x49\xd8\xb1\xea\x46\xc4\xf5\x55\x8b\x95\x9a\x25\xf7\xa2\xcf\x11\xb6\x24\xc9\xf2\x6c\x31\x19\x64\x79\xd6\x36\xf9\x82\xa3\xd7\x0e\x29\x6d\x44\xa9\xee\x90\x15\x95\x33\x95\x2a\x08\x54\x49\xe8\xda\xc8\x31\x4d\x72\x2f\xc6\xa9\x49\xdb\xb1\x49\xfe\xd1\x2e\x72\x5d\x2b\xa4\x68\xe7\xa6\x3f\x42\xe6\x8e\x3a\x92\xa2\x9a\x9f\x1e\xe3\x18\xf9\xe2\x2b\x4e\xd1\xc8\x53\x1b\x11\xff\xd1\xd6\xfc\x76\x7a\xba\xf9\x95\x81\x9b\xf1\x96\x89\x33\xa5\xc5\x0f\x55\xab\xcb\x9f\xa8\x48\xd6\xb5\xed\xc4\x4c\x10\x35\xe6\x71\xb7\x22\xf0\x7a\x2e\xb0\x44\xc5\xed\xb1\x6e\xbc\x03\x02\x95\x95\xcd\xd0\x82\x1a\xdc\xce\x35\x16\x86\xbf\x46\x93\x0a\x89\x59\x5d\xb3\xf9\x64\xe3\xb9\xe7\x58\xd0\x41\x09\xdf\x44\x66\x4b\xfe\x65\xa4\xbd\x4d\x79\x43\xcf\x0a\xa7\x0d\x2c\xcc\x5d\xee\x0e\xdc\xad\x45\x7a\x64\x69\x11\xdb\x41\xde\x18\x21\x15\xe7\x11\xbe\xad\x21\xed\xcc\x41\xaf\x59\x26\x93\x87\x11\x71\x8b\x5f\xa0\x31\xbf\x62\xb0\xe0\x68\x83\x3d\x38\x58\xd8\x11\xe5\xe4\x13\x61\x36\x4b\x55\x26\x62\x93\x86\xf3\x84\x30\x3b\x52\x07\x91\x13\x02\xf7\x65\xed\xf2\x85\x47\x42\xfc\x2e\x39\x98\x06\x24\xf0\x49\xd2\x29\xc1\xde\x40\xf1\x6e\x97\x73\x3d\x8a\x82\xa7\x72\xf6\x39\xd6\xa4\xfd\xe3\x61\x10\xb6\x47\x66\x80\x55\x76\x7d\x18\x10\x4f\xdb\x60\x43\xe5\xd3\x34\xa0\x92\x15\x66\xd9\xb8\x9b\x47\x0d\x0f\xbd\x36\x39\xae\xe3\xaf\x2e\x62\xdb\xb3\xa9\xee\x1e\x65\x9e\x72\x97\x23\x27\x75\xef\xa2\x9f\x83\x7c\xa2\x8e\x1d\x68\xbc\x5f\x79\xa0\x59\xd8\x15\x9b\x9b\xb4\x8d\x66\xb0\x24\xf2\x2d\xee\x5d\xf9\xd2\xda\x9f\x6c\x0e\x99\x39\xd7\xb8\xf6\xbb\x1b\x69\x47\x78\x01\xf3\xa8\xa5\xe8\xea\x81\x0a\x3b\xaa\xaf\x94\x77\x6c\x95\xc9\x02\x9e\xef\x2a\x20\x43\x69\x17\x20\x70\xd9\xbb\x5e\x3d\x5f\x55\xdc\x7d\xcc\x8f\x09\xaf\x9a\x1c\x1d\x4b\x24\x46\x13\xa3\x00\x55\xee\x54\x85\xa4\xf0\x06\xc9\x91\x94\xb1\x6d\xe0\xd5\x23\x69\x7a\x1f\x83\xdf\x72\x42\xc5\x75\xb3\x64\xd3\x92\x81\x7a\xef\xba\xe7\xe7\xcb\x09\x1e\x6b\x7f\x7e\xc8\xa3\x3b\x69\x19\xa7\x03\xe3\x91\x9b\x9e\x48\xdf\x0b\x96\xdf\x86\xc7\x55\x4e\x57\xc2\xf8\x65\xfd\xb5\x3c\x5e\xea\x96\x02\x78\x05\x34\xe9\x28\x4f\x74\x1c\xa5\x71\xe7\x2d\x83\xab\xa2\x3c\x46\x45\x68\xee\xe5\x49\xe1\xb9\x03\xd6\x36\xac\x81\x6b\x80\x18\xc9\x09\x11\x8b\xd8\x80\x93\xf7\x80\x80\xea\x82\xe4\xa4\x06\x9f\x7c\xc0\xcd\xdf\xb9\xb5\x86\x2c\x4a\x50\x03\x72\x52\x83\x46\x7a\xd5\x2f\x1a\xf8\x0f\x80\x2e\xfe\x96\x78\x56\xff\xb6\xc6\x6a\xee\x6f\x2e\xe6\xf6\x2b\x03\x57\x04\xf2\xc5\xc4\x8f\xa2\x60\xd4\x3e\xa2\x1c\xa6\x88\x3b\x56\x2a\x79\x58\x46\x47\x01\xdc\x41\x2f\xee\x04\x49\x02\xde\x89\x68\xca\xe3\x68\x44\x8f\xb3\xb6\x25\x98\x66\x2b\x16\x96\x14\xcf\xee\x94\xb3\xb8\x72\x5c\x5b\xbb\x5d\x34\x3d\xd1\x11\x52\xb8\x79\xc8\x3e\xcf\x87\x62\x61\x96\x24\x71\x3a\x8e\x47\xde\xef\xf1\xc8\xda\xc5\xea\xc6\x4b\xdd\x55\xb3\x56\x4c\x84\x16\x94\x94\x0b\xb4\x3f\xe0\xd6\x2d\x42\xa3\x2b\x84\xda\x2f\xb2\x9e\x5d\xad\x82\xda\x49\xaa\x1d\x6f\x73\x06\x0f\x7f\xfc\x21\xeb\xdc\x8f\x34\xda\x43\xb4\xbb\x12\x17\x8e\xe8\x76\x82\x3a\x6c\x17\x49\x45\xe4\xcf\x69\xa2\xf5\xb2\xaf\x4b\x27\x4e\x9d\x7d\x92\x75\x95\x49\x7d\x06\x4d\x48\x9f\xcd\x54\x5f\xac\xc2\xff\x5b\x31\x19\xcf\x37\x8b\x41\xdf\xe6\x55\xcc\x9d\x76\x14\x1f\x04\xc0\xd3\x0f\x49\x5c\x90\x31\x3b\x49\x62\x76\x55\x6f\x15\x91\xd0\x69\xc2\xec\x3c\xdb\xe2\xf1\x37\x77\xe1\xa2\x39\x34\x24\x06\x16\x99\x28\xc3\xde\x17\xb6\x65\xe4\x26\xd7\x47\x86\xe1\x07\x00\xa3\xc9\xbd\x1f\x8e\xc2\x73\x38\x4c\x9d\x81\x3c\x1b\x94\x71\x6a\x93\x35\x4c\xe5\x0a\x54\x92\xc8\x4c\x2e\xd7\x92\x72\xf4\xb3\x24\xf1\x18\x46\x2d\x34\x87\x49\x8d\x23\x2c\x0e\x6b\xdb\x49\x9c\x5a\x11\x86\xf1\x4a\x64\xd5\x65\xeb\xbc\x25\x36\x06\xb2\xb0\xf7\xdd\x03\x51\x1e\xfc\x2a\x6e\x47\x49\xf8\x48\x44\x75\xf6\xfb\x34\x31\xb0\x96\x0d\x3e\x5d\xfd\x19\xb6\xcf\xf1\x91\xa9\x5e\xc0\x68\x51\x8c\xf9\xf2\x90\xa6\x6d\x8e\xb9\xa7\x0b\x43\x8b\x41\x71\x04\xcc\xd7\x5c\xdf\x1e\xee\xfb\x89\x16\xe1\xb7\xef\x63\xbf\x7a\xa6\x9c\xf9\x29\x49\xaa\xcf\x30\x18\xed\xc2\x70\x94\xe6\xf8\x15\x0d\x22\x36\xdd\x46\x46\x8f\xf9\x06\x48\x40\x3c\xf7\xa5\x67\x14\xf8\x1b\x04\xd5\x32\x07\x1e\x51\x2c\x7b\x8c\xf9\xa4\x2f\x0f\x49\xcf\xfe\x18\xc9\x09\x09\x09\x1d\x3a\x46\xd7\xc7\x5c\xf7\xf3\xcd\x32\x1b\xe4\xb1\x83\x10\x04\xf5\xb4\xe3\x78\xae\xda\x0b\xdd\xea\xb9\x9f\x77\x8c\x06\x6e\xa7\x20\x8e\xff\xb1\xfb\x41\xaf\x0e\xe7\xa1\x40\xd7\x23\x02\x5a\x1c\xf7\x4e\x72\xd1\xa6\xa9\x4d\x78\xf8\x77\x83\x86\x7f\xc7\x39\x1e\xe7\xe6\x9a\x5d\x33\x48\x3d\x71\x57\x2d\xad\xcf\xaf\x7d\x42\x40\xd6\xb1\x2b\xa6\x28\x49\xb4\x0c\x2f\x02\x3d\x75\x39\x8e\xea\x82\x8d\xca\x7f\x99\x78\x4b\x00\x7c\x86\x03\xe0\x33\x23\xcd\x72\x5b\x80\xa2\x44\x06\x41\xdd\xde\xd2\xa1\xd0\xa7\x28\x13\x97\xae\x5b\x23\xa8\x84\x62\xe9\x68\xfc\x1a\x58\x09\x3a\xd9\x60\x29\x31\x05\xb3\x61\x81\xc8\x1d\x26\x0f\x55\x37\x89\xed\x29\x78\xfb\xca\x20\x6e\x2f\x4b\x39\x5a\x23\x00\x62\x6d\xf8\x67\x70\x26\xca\xaf\x50\x43\xf5\xd8\xce\xcd\xaa\xa7\x10\x01\xc0\xea\x0c\x16\x9b\x9c\x10\x05\x7c\x91\xac\xed\xad\xee\x44\xf4\x78\x87\xd4\xa8\x7e\x10\x24\x75\x8e\x3f\x82\x4a\x29\x2a\x2c\x0f\xb9\xc2\x72\x6b\x38\x2a\xeb\x36\x3f\x85\xb2\x96\xfd\xaf\x5b\xe4\xf4\x90\xe0\xbb\x05\xf9\xc2\x93\xae\x5c\xe2\xee\xec\xbf\xfb\xec\xfa\xd6\x4e\xd9\xec\x6c\x33\xb7\xf6\x75\xd3\x8b\x83\x96\x28\x2e\x0e\xad\x03\x39\xae\x63\x77\xb6\xaf\xc7\x05\x44\x27\x14\xbe\x57\x19\x01\xd5\xb8\xdf\x9a\x80\x1c\x9a\x6a\xae\x76\x4d\x59\x85\xa4\x2e\xde\x43\xbb\x16\xa1\xb6\x67\x02\xdc\x47\x15\xca\xca\x0a\x68\xf1\x48\x5d\xea\x6b\x76\xd5\x26\xf9\xda\xce\x80\x72\x16\xd6\x1c\xd5\x36\x21\xea\x12\x81\x4b\xe9\xb0\x4e\x43\x99\x82\xff\x40\xf8\x99\xf5\xaf\xc2\xcb\xe9\x65\x3d\x04\x88\x5e\xa6\x74\x6e\x4e\xe2\xd2\xab\x51\x20\x21\x79\x33\xf0\x63\x0f\xf2\xb4\xd8\x19\x70\x71\x50\x69\x13\x6b\x2b\xb5\x02\x04\x32\x47\x58\xc9\x69\x3b\x5e\x95\xaf\x08\x1e\x9a\xf2\x4a\x1a\x5b\x1f\xf3\x4b\x33\xc0\x2a\xb8\xc7\x8c\x48\xfa\x12\xb1\x43\x5d\x1a\x29\xa8\x98\xa4\xd8\xed\xcc\x9f\xee\xa3\x86\xa7\x65\xbe\x85\x55\xcc\x42\x4e\xd8\x21\xc7\xc4\xd8\xcb\xbf\xb8\xad\x85\x0b\xbb\x4b\x9c\x61\x6f\xc3\x2c\x62\x92\xe3\x01\x81\x5c\x17\x4c\x52\x25\x18\x45\xa3\x31\x3d\x2d\xdf\xf1\x5d\x92\x59\xfa\x6e\xdd\x24\xd4\x01\xc7\x9f\x3b\x51\x65\xf5\xa8\x54\xff\x11\x8f\x5e\x6f\x46\xa4\x17\xf3\x60\x18\xc6\x9b\x8a\xbe\x6d\xc7\x8b\x95\x35\x00\x63\x59\xb5\x3e\x14\xf8\x17\xa6\x8d\x3f\x8e\x42\x60\xb3\x64\x92\x24\x5b\x35\x6b\x0d\x9a\x16\x01\x2c\x41\xf1\x28\xcf\x50\xf1\x08\xaa\xd3\x25\x70\x97\x2f\x8a\x0b\xb9\x42\xf9\xf1\x1d\x62\x12\x39\x56\x87\x08\x19\xa4\xb6\x33\x68\x07\xc6\x44\x04\x3c\xa7\x49\x83\xee\x74\x14\x3a\xb6\xab\x26\x49\x6c\x39\x11\xe8\x9c\x24\x4e\xd2\x46\x10\x4d\xfc\xde\x8f\x46\x28\x7a\x12\xb1\x71\x3e\x1d\xf3\x89\xe7\x19\x22\xdc\xff\xbe\x77\x20\xc9\x5a\x15\x58\x35\x02\x1e\x43\x68\x9b\xe5\x64\xac\x56\x70\x68\x6a\xa6\xd9\x4e\xac\x49\x07\xfd\xc9\x00\xb5\xbc\x0b\xd7\xea\x31\x98\xb3\xb3\xe2\xbe\x4f\x0c\x89\xfe\xe4\xef\x46\x8d\x7c\x8e\xb4\x58\xd3\x31\xda\x91\xef\x8f\xe5\x03\xfb\xe6\x9a\xcb\x89\x8d\xd3\x55\x87\x8f\x23\x8e\x1a\x9a\x51\xbb\x4c\x2c\x34\x2b\x71\xbb\x8c\x7b\xc5\x04\x07\xe2\x44\x9f\xf9\x87\xee\x59\x48\xed\xb4\x8e\x4c\xb8\xcc\xe2\xc0\x0d\xae\xe4\x4d\xd5\x67\xe4\xb8\x8e\xd0\xb1\x67\xf2\x64\x21\x93\x3c\x5c\x43\x69\x77\x7d\x72\x12\x6d\x35\xb0\xd3\xd3\xcd\xbe\xcd\xab\xc5\x8b\xf6\x3f\x11\x46\x36\x88\x48\xf2\xd9\xad\x63\x28\xaf\x36\x67\x67\x0f\x34\x82\x4a\xb9\xe0\x14\xb5\xdc\x51\x53\xdf\x19\xbc\x50\xbc\x50\xbc\x90\xbf\x30\x41\x03\x98\x77\x23\xd2\x39\x3b\x45\x90\xbd\x71\xf8\xb8\x46\x00\x0b\x36\x4e\x97\x76\xb8\x8f\x21\x6b\x7a\x17\x95\x4d\x78\xce\x46\x2b\xe8\x11\x5e\x40\x03\x43\xc0\xe9\x6e\xac\x0a\x6f\xe9\xf8\x48\xd3\xad\x2c\x76\x04\x14\xe2\xc7\xc3\x40\x92\x76\x93\xc5\x59\xaa\x7f\x98\xda\x94\x6e\xae\x92\x7d\x3d\x43\x83\xee\xbd\x5e\xd6\x01\x01\x53\x98\x7c\x10\x1e\x6f\x6d\xfe\xfa\x88\xc9\x04\xbe\xd3\xba\x44\x3a\xfc\x5d\x15\x80\x3b\xf8\x3f\xc3\x1f\xb0\x96\x26\xd6\xc3\xd6\x7f\x0a\x4d\x2a\x54\xe4\xfe\x09\xfa\x93\xf0\x3f\x3b\x5d\x3d\x05\x25\xcf\x8d\x11\x0a\x3c\xd3\x31\x32\xbf\x80\x6a\xfc\x47\x1c\x80\x5d\x67\x92\x85\xf3\xee\x57\xb5\x0e\x4d\x2c\x70\xbf\x88\x08\x77\x7f\x8b\x59\xdc\x8e\x44\x23\x72\x15\xd6\x47\xa4\x70\x51\x17\xc8\x5d\x5d\x20\x78\x44\x3f\x2e\xdb\xdd\x2a\xe5\x98\x9f\x12\x07\xfc\x13\xf7\x97\x72\xec\x8b\x06\x5d\x93\xf7\x16\x07\x09\xcc\x18\x12\xa8\x33\x94\x4c\x31\xc9\x62\xd1\xcb\xca\xae\xa8\xb7\xc1\x9c\x7f\xe8\xa2\x12\x39\x26\xa8\x73\x37\xeb\xd9\xc4\xa4\x1d\xa9\xd7\xa8\x5c\xae\x4b\x0a\x14\xee\x30\x5e\x59\x68\xb6\xf3\x41\x6f\x21\x6c\x54\x41\x1c\x8d\xa0\x8f\xea\x38\x2a\x75\xf8\x3d\x6e\x4b\x95\xcd\x8b\x59\x86\x0a\xe6\x91\x1a\xf7\xd4\x5c\x30\xc5\xb2\x85\x01\x42\x7e\x20\x75\x42\x39\xa1\x35\x89\x89\xa4\x9e\x4d\xcb\x62\x8f\x5b\x12\x5a\xc0\xac\x96\x3b\x1c\xf4\xee\x16\x0b\x65\x9f\x74\xcd\x2e\xac\x22\x2c\x2f\xb4\x24\x8f\x31\x18\xfa\x67\xee\x41\x23\xf9\xba\x13\x51\xea\x8c\x86\x26\x42\xd4\xf7\x48\xd6\xa4\xec\x66\x85\x7d\x34\xd4\xca\x76\xae\x93\x3a\xfb\x19\x90\x4c\xab\x32\x45\xf5\x0d\x48\xd3\x6e\x39\x37\x8d\x5a\xe6\x9e\xf5\xea\x8a\x11\xdd\x3f\xea\x36\x38\x00\x1d\x6f\x21\x81\x62\xe5\x3c\x6c\xf0\x9d\x88\x4f\xfd\x34\x40\xb5\x09\xd1\x80\x7a\x04\x93\x9d\x40\x51\xdd\x1a\x8b\x67\x66\x67\x9b\x89\x19\x2c\x75\xdd\xe3\x15\xa1\x6a\x62\xf1\x18\xa7\x45\xaf\xec\xb4\x49\x97\x1b\xa4\x14\x76\x81\x02\x93\x0b\xa4\x39\x50\xf4\x4c\x92\xec\x22\x58\xfc\xbf\x73\x7f\xa8\xc4\x98\x34\x4d\x71\x89\x22\xa3\x75\x6c\x38\xe5\x52\xa3\xf6\xae\x60\xbd\x95\xc1\x9e\xc0\x18\x4b\x71\x83\x51\xf0\xee\xc1\x28\x22\xfe\x59\x5a\x1e\xa5\xcd\x7b\xb6\x13\x2b\xd0\x06\x7d\x9f\xef\xb9\x30\x42\x8e\xc7\xac\xb0\x23\xe8\x2f\xbb\x71\x1a\x2c\x98\x68\x99\x12\xaa\xf9\x1c\x4d\xb2\xbb\xba\x9b\xc9\x3b\xc5\x5e\xf7\xa2\x3d\x6b\x55\xa0\xed\x73\x2f\xda\xf7\x4f\x0e\x4d\x89\xe5\x3a\x39\x24\xf5\x32\xc9\x31\xd0\x74\x92\xc9\x39\x84\x70\xac\xd6\x0b\x09\x5d\xa4\x42\x37\x51\xf7\x44\xe8\xbe\x39\xa6\x9a\xac\xde\xc4\x03\x0e\x27\xc3\x58\x27\x48\x05\x59\xfd\xc2\xb3\xee\x84\xea\xd8\x24\x91\xaa\xb4\x4d\x69\x92\x4c\xc8\xb6\x3c\x7b\xe9\xfc\x54\x60\x2f\xfd\x24\x8d\xac\xa2\x6b\x3b\x9d\x2d\x14\xc9\x98\x86\x67\x52\x63\xb8\xb6\xeb\x2c\x25\x6c\x02\xe4\x03\x0f\x05\x24\x1b\xa8\x65\xca\xa4\x36\x16\xf9\x39\x4f\xb5\x9d\xdb\x76\x3e\x88\x3d\x40\x10\xcf\x69\xa7\xfb\x35\xb8\x91\xeb\x78\xe4\xb0\xf4\x77\x78\x45\x2d\x8a\xf9\xd6\x82\x48\x40\x1c\x9c\xa1\x4a\x9d\x63\xab\xac\x52\xec\x86\xa7\x0b\x91\xae\xa9\x32\xe7\x85\x80\xd6\x2e\x2e\xc6\xed\xd8\xa6\x65\xb2\xd6\x60\x9a\x23\x44\x71\xca\x79\x44\xe3\x6a\x26\x6f\x67\x85\x2d\x30\xae\xa6\x3a\x2d\x8d\xe7\x9e\xd3\xe3\xb1\xba\xc6\xbe\xb9\x66\xa2\xb3\xef\x78\xb1\x37\x81\xb7\xf5\xad\xa5\x2f\xbe\x22\x45\x91\x06\x11\xa0\x38\x76\xd2\x64\x0d\x98\x37\xac\xe7\xfb\x9c\x9d\x5c\x10\x78\x81\x9c\x31\x27\xec\x7d\xe6\x6e\x34\x7d\x91\xf7\xf3\xa2\x26\x77\x68\x5d\x4d\xb6\x42\x24\x77\x71\xc8\x9c\xc0\x6b\x0b\x59\x67\x6d\x92\x8a\x14\x17\x88\x6d\xe8\x03\xd2\x78\xf8\x20\x0a\x58\xcd\x0b\x54\x88\x5e\x30\x2a\x0a\xc6\x41\x37\x6e\xf4\x01\x79\xc9\x0b\x6e\xf6\x00\xa6\xe8\x1e\xe1\xd8\x40\xd5\xe5\x69\x31\x3d\x1f\xbf\x67\xe4\xbc\x46\x2b\x63\xdf\x6f\xff\xce\x44\x08\xdc\xbf\x1e\x85\x21\xb2\x9d\xeb\x44\xfb\xb3\xa3\xc5\xa1\x47\x62\xf3\x47\xe0\x77\x60\xd3\x6f\x62\x91\xc8\x90\x12\x7c\x0a\x1c\x0c\x98\x75\x15\x0f\xee\x2c\xa1\x54\x3a\x86\x54\xfd\x81\x70\x9e\xb6\xdd\x42\x03\xb9\xd1\x1a\x9d\xe3\xda\xa7\x50\x43\x99\x93\x56\xe2\x84\xd0\x66\x36\x65\x69\x7b\xfd\x52\x96\xb0\xe7\x57\xf6\x9a\x39\x97\x47\xa9\xb6\x6d\xba\xb7\xfa\x37\xc1\x0c\x47\xc4\xc9\x7d\x02\xeb\x18\xb0\x8b\x8f\x89\x2b\xf8\x3f\xb8\xcb\x50\xdb\xde\xf0\x0a\x5e\x17\x9c\xef\x55\x3a\x6a\xc2\x1c\x7d\xcc\xb4\x26\x7f\x1d\x51\x61\xf0\x12\x75\x82\x16\xe3\x74\xd9\x26\x45\x69\x63\x01\x2d\xe0\x25\x88\xde\x8c\x9c\x8c\x15\xc6\xf6\xcd\x11\xe4\x11\x9f\x53\x36\x3a\xf7\x80\x94\xa6\xae\xae\xa0\xd6\x4f\x06\xbd\x9e\xf5\xc9\xa4\xac\xa9\x21\xf9\xf6\x0b\x14\x04\xe6\x18\x67\xc0\xdf\x7a\x26\x0a\x0f\x1b\x66\x26\xf4\x8e\xcd\xe3\x15\x97\x45\xbb\x95\x05\xff\x28\x37\xa2\x88\x5a\xa2\x45\xbf\x5e\x4b\x60\x63\x73\x34\x0c\x66\x02\xf6\xbf\xba\x3b\xe5\x68\x0e\xb3\x21\x75\x73\x9c\xcd\x65\xbb\x96\xda\x22\x36\xbe\x05\x0a\xef\x79\x87\x0b\xa0\x77\x42\x0b\xcb\x9a\xa5\xca\x87\xba\x15\x29\xfd\x89\x28\x08\x2d\x5c\x1c\x59\x33\x65\x19\xbb\xb5\xe5\x51\x97\x41\xb8\x61\x9c\x68\x61\x7a\xa6\xd9\xee\x66\xed\x2c\x31\x02\x2e\x47\x5f\x0e\x9c\xc6\x72\x1c\x94\x10\x6d\x3c\x32\x01\xb3\x41\x06\x6e\xa3\x96\xf2\x65\xc9\x94\x99\xde\xa1\xa7\x9c\x0b\xa4\x3f\x17\x82\x76\x61\x67\x25\x2e\x14\xb6\xec\xb1\x99\xd5\x03\x55\x58\x0f\x6f\xef\x6c\x90\x3f\x4d\x58\x7a\x70\x45\xe3\x3d\x6f\x46\x84\x1c\x3b\x03\xb0\x97\x82\x81\xdc\x9a\xc7\x2f\x83\xbd\xc7\x13\xb5\x57\x3b\x09\x36\xe0\xdb\xae\x5d\x80\x64\xe8\x2a\xbc\x95\x72\xda\x8c\x6c\xb1\x99\x83\x92\x4c\x49\x9f\x1f\x86\x76\xc7\x7a\xf5\x44\x46\x86\x79\x89\x7c\x58\xb3\x1a\xa8\x78\xfa\xbe\xbd\x7b\x3a\x7a\x29\xc1\x2a\xec\x6e\x05\x92\x84\x73\xe4\xd7\x8a\xae\x59\xb6\x45\xdf\x9a\xdc\xba\x34\x06\xde\x09\x25\x20\x39\x8e\xbc\x96\x7e\x5c\x36\x88\x75\x04\x43\x46\x4a\x36\xe8\x47\x9f\x2b\x87\xbd\x46\x7d\x9e\xeb\xd4\xef\xba\x5e\xd7\xb5\x3c\xd0\x5c\x1c\x94\x83\xdc\x8f\x06\xa2\x2b\xfd\xb7\xdc\xa2\x1e\xef\x76\xbe\x32\x3f\xd5\xb4\xaf\xb7\xe3\x10\x57\xe0\xc1\xfe\xd2\xfd\x9a\xd2\x2d\x85\xba\xfe\x49\xf8\x5b\xe9\x5d\x2f\xe5\xb6\x28\x9c\x76\xc2\xce\xc0\xb7\x75\x14\xe1\xb9\x76\xe6\x1a\x81\x93\x1b\x9b\x59\x27\xa2\xc9\xde\x9f\x8d\x42\x9e\x70\x8c\x1a\xca\x71\xba\x18\xa7\x71\x19\xef\x18\xb1\x6d\xb8\xbd\x91\x19\x70\xc4\xc9\xf7\x48\x17\x62\x63\x18\xc4\x9a\x37\x7c\x0a\x5e\x58\x93\xe8\x08\xb3\x24\x39\x51\x80\x03\xfe\x8c\xe9\x85\x7e\x3e\x86\xbc\x9d\x9d\x1d\x19\x14\x82\x51\x53\x6e\x5a\x26\xaa\xf5\x3f\x97\xba\x46\xfb\x0e\xe6\x5a\xbc\xc3\x58\xb6\x5b\x51\xe3\x77\xbf\xe4\x5b\xab\xd5\x32\x50\xe1\x1c\xf7\x75\x8a\xc1\x24\xb0\xb9\x9f\xa4\x87\xd9\x41\x7b\xe9\x03\xe9\xb3\xc9\x19\x35\x1f\x4c\xbb\x6d\xfb\x65\x31\x11\x82\xe5\x8f\x9c\x89\x52\x69\xdd\xd0\x5e\xfe\x90\x52\xb7\x05\x93\xa7\xa8\x67\xf8\x68\x78\x76\x56\x8f\x6b\xd5\x02\x4a\xb3\xb6\x45\xcf\xee\x36\xe9\xd9\xdd\xa6\xb6\x64\xd1\xee\xda\xce\x20\xb1\x9d\xdd\xee\xf1\x69\x31\x2d\x28\x73\xcb\x03\x42\x41\x4f\xf8\x11\x80\x3e\xd9\xde\x62\x60\xca\xf6\x75\x12\xa8\x41\x85\x04\xe1\x23\x06\xf9\xb1\x16\x37\xc6\xc2\xc3\xd9\xd9\xe6\x52\x0a\xa6\x78\x95\x06\x24\x9a\x8a\x33\x43\xa5\xd6\xae\xb2\xe8\xb4\xcc\xf2\xd8\x0a\x59\x31\xde\xd8\xb6\x75\xd2\x47\xdc\xed\xa2\x39\x2f\x07\x55\x7d\x0d\xfa\xdb\x7f\x31\x96\x61\x4e\x4f\x57\xef\x4e\x1a\x13\x0a\x26\xa4\xf6\xf9\x38\x0f\x2c\x74\xf7\xe3\x32\x36\xbe\x42\x87\xa7\x79\x8a\x66\x8c\x4e\x51\x49\xab\xf3\x5a\x6c\x1a\x61\x14\xe0\xdf\x46\xc4\xb1\xf3\x6f\x47\x9c\x51\xbb\x03\x3a\x5a\xed\x09\x8f\x70\xe9\x6c\xb5\x10\x3e\x67\xc9\x56\xc5\x13\x20\x98\x12\x50\xa9\x9c\xd4\x0d\xcb\xa6\xd6\x76\x26\x1b\x2f\xa9\x60\xce\xdd\x28\x08\x4e\xdf\x44\x72\xae\x94\xdb\x0d\xe2\x41\x7f\x9a\xf2\x8a\xc1\x72\xcf\xbe\x16\x9b\x14\xe6\xd2\x2b\x9b\x84\xc6\xf8\xe5\x1a\x2a\x9e\x03\xc0\xc7\x2f\xda\x3c\xd7\x61\x5d\x44\x7c\xdf\x86\xc9\x91\x93\xc0\x49\x9d\xf5\x4c\x99\xa9\x9b\x53\xa8\x56\xc0\x26\x39\x35\x61\xaf\x32\xd0\xef\xc6\x45\xe9\x9a\x7f\x1d\x27\xcd\x0c\xa7\x04\x20\xb1\x36\x99\xdc\x05\x8a\xed\x84\xb7\x42\xc0\xfa\x01\x51\xb6\x02\x33\x88\x72\xd4\x1f\x44\x23\xf0\x80\xad\x6f\x60\x7e\xaa\x4a\x83\x96\x6d\xb0\xd1\x88\x30\xfe\xaf\x28\x94\x02\x51\xae\xd0\x7a\x55\x98\xf0\x2c\x92\x6c\x55\x58\x06\x55\x0d\x25\xd4\x38\x2e\x8f\x54\x06\xdb\x71\xb2\x07\x1b\x0c\xa5\x20\xa0\x45\xb1\xeb\xef\x0f\x49\x8c\x50\x30\x7d\x88\xc8\xaf\x46\xc4\xd0\x75\x11\x65\x1d\xcf\xe5\x5c\xe5\x6c\xfe\x5f\x02\xeb\xb5\x30\x9f\xa9\x4a\xf6\xe3\x64\xae\x72\x4d\xdd\x94\x2c\x36\x80\x6a\xbf\x1d\x11\x78\x92\x96\x49\x6e\x17\x6d\x6e\xd3\x36\x36\xaa\x0e\x02\x9e\x24\xb5\xa4\xcb\xb8\x46\xf9\x07\xae\x0b\x8d\x2f\xf7\xd9\xd9\x66\x9e\x65\xbd\x1e\x4d\x03\x01\x57\x2b\x14\xfc\xb0\xc9\xb2\xf8\xd1\x85\xfb\xe3\x9a\x32\xfe\x81\xa6\x35\x45\x6c\xf3\x49\x1a\x7d\xbc\x84\x90\x46\x45\x06\x42\x7a\xb1\x81\x20\x08\xfd\xb1\x7b\x14\x7e\xf5\xe2\xea\x79\x84\x65\x26\xd3\x5e\x78\x8a\xa2\x73\xa2\x19\x62\x1d\x17\x93\x69\x7f\x65\x10\x7b\x98\x15\xb6\x1e\x9c\xa4\x1c\xd3\xa8\x5e\x91\xad\xda\x32\x6b\x30\x69\xaf\x7b\x6a\x4a\x98\xbf\xb5\x96\x71\x68\x6a\x54\xf3\x6b\x82\xea\x36\x1b\xc4\xfc\xb0\x9d\x58\xfe\x4e\x11\x71\x52\x61\x53\xe1\x16\x8e\x47\xe4\x8f\x2f\xb9\x58\x4f\xad\x62\x4d\x83\x64\x81\x1b\x24\x75\x5a\x33\x21\xaf\x2b\x06\xed\xb6\xb5\x8e\x7d\xc4\x0b\x9c\x8b\x76\x33\x3d\x50\x3f\x65\xe8\x10\x1b\xf2\x57\x23\x06\xb3\xb0\x66\xa7\xfb\x43\xe5\x22\x6e\xb0\x1a\x61\xf5\x94\xe0\x5c\xdf\x46\x74\x29\x27\x34\x68\xf0\x01\xb6\x8c\x9c\x50\xa7\x32\x37\xed\x18\xf3\x5c\x87\xa6\x3c\x5d\x47\xc3\x73\xbb\x9f\x1c\x6b\xdc\x84\x7e\x48\x3b\xeb\xd9\x89\xd0\x80\x3d\x16\x91\xe2\x13\x88\x90\xa5\xa1\xf8\x2d\x9f\xb2\x2c\x24\x26\x5d\xb6\x25\x7a\x53\xf8\x58\xa3\x15\x26\xc9\xc0\xcb\xa0\x20\x40\xb6\x0d\x2b\x36\x77\xcc\xd9\x1e\x3b\xfe\x85\xdf\xf3\x1e\xa8\x11\x64\x49\x38\xed\xfc\x1e\xf6\x0b\x96\xcf\x55\xac\x70\xa1\x2b\xc3\x0e\xc4\xe7\x37\x59\xd0\xe5\x03\xc7\xc6\x82\x2a\xf8\x47\x84\x0b\x03\xc8\x46\x61\x2a\xce\xc6\x48\xa3\x3e\x62\x84\xc4\x65\x6c\x30\xbc\xcd\xdd\x98\x7f\xc4\x70\xc6\x9b\xb0\x38\xf0\x31\xc7\x22\xa2\xd6\x3a\xeb\x12\x70\x71\xdb\x14\xe8\x5e\x74\xcf\x42\xab\xac\x24\x3e\xb6\xc7\x65\x13\x28\x56\xbe\xe3\xb0\x05\xb8\xdf\x1d\x2d\x4f\xef\x6c\x93\xc4\x01\xc1\xd0\x82\x7a\x02\x64\x23\x7e\x8c\x30\x88\xb5\xec\x6e\x85\xc8\x5f\x54\x35\x74\x5c\x33\x48\x14\x5f\x1c\x01\x79\x07\x8a\x09\xbb\x64\x16\xd6\x4a\x51\x8b\x53\x34\x19\xbd\xcb\x28\x14\xb2\x4e\xf9\xac\x22\x4e\x3b\x83\x36\x56\x0d\x8a\x3a\x3b\x51\x2b\xe1\x3e\x93\x92\x4d\x68\xba\xf2\xda\x0b\x2b\x08\x36\x15\xbe\x14\x86\x08\x2e\x91\xfd\xe8\x9b\xdc\xa6\xe5\x8e\x11\x2a\xf9\x50\x5e\x16\x18\x1e\x12\xa7\xb7\x86\xac\xb4\x18\x8d\x30\x55\x79\x98\xa2\xed\x99\x38\x75\x84\xff\xaf\xe2\x95\xfc\xf4\xd3\x2d\x0a\x9d\xaf\xb9\x7b\xc5\xc4\xd0\x1d\x7c\x39\x01\xfe\xf6\x87\x21\x72\x1f\x2b\x5d\xf2\xdb\xa0\x6f\x72\xd3\xc9\x5e\x9f\x20\x24\x04\x34\x86\x90\x93\xde\x22\x51\x7a\xf6\xa5\xfd\x3c\x6e\xdb\xe2\xb1\x6a\xbd\xa0\xe0\xfa\x78\x8b\x88\xec\xff\x4f\x94\x7e\x94\x57\xc7\xad\x77\x81\xa1\xc1\xf7\x61\x59\x0b\xdc\x4c\x83\xc6\x50\x97\x7b\x9b\x54\x01\x3e\x74\xb9\x28\x3e\xdd\x68\x85\x6e\x2b\x26\x7f\x3d\x77\x5f\xf5\xa8\xe1\xc7\xee\x60\x85\xe2\x9d\x6e\x1f\x23\x46\x9d\x9d\x6d\x2e\x26\x59\x16\x80\xb0\x08\xbb\x0f\x0f\x43\xef\xe4\x70\x0d\x1f\xfa\x8b\x4e\xc6\x1e\xd6\x42\x3b\xd6\x61\xd4\x7e\xc3\x79\x30\x9d\x84\x0a\x35\x9f\xd4\xc6\x65\xd7\xc1\x69\xa6\x7c\x29\x80\x64\x65\x20\x63\x20\xc7\xa4\x38\x3c\xae\x50\xf4\xe5\x2f\x37\x4d\xbe\x80\x1c\x58\x4b\xf4\x44\xc9\x38\x8e\x10\x78\x69\xa6\x69\xd2\x34\x1b\x38\x6a\x94\xf9\x29\x19\x2b\x3a\xeb\x1e\xa6\x1c\x7b\xe9\x1c\x65\xb0\x8d\x85\x02\xcb\x93\x07\x86\x0e\x4a\x6d\xdb\xa7\x9d\x15\x2f\x8c\x08\x96\x09\xe2\x51\x4e\x08\x54\xf5\xc2\x4b\x2f\x34\x02\x54\x47\xc2\x56\x39\xa1\x3f\x7b\xf1\x4b\x07\x27\xc2\xb6\xbd\x89\x0b\x40\x1a\x78\x78\x84\xcb\xf7\x02\xcd\x56\x2f\xc4\x2a\x36\x07\x23\xf1\x33\x26\x53\xfb\x19\x4d\x27\xac\x64\xa5\xdd\xe5\x56\x1c\x23\x24\x34\x12\x70\x1b\x00\x7b\xff\x9e\x9b\xa4\xf2\x74\xd7\xbe\xec\xf0\x0d\x4c\x7d\xc0\x1d\xed\x80\x4d\x55\x1e\x06\x76\x91\x79\x8c\x31\x7f\x3c\xba\xef\x8d\x34\x9f\xdc\x92\x53\xc9\xd2\xa7\x89\x4c\x77\x10\x27\x89\x89\x73\x3b\x49\xcd\x2e\x29\xf9\x8d\x18\x3f\x94\x72\x31\x5e\xa6\xf5\x89\x50\x25\x28\x92\xc1\xd2\x52\x5c\x74\x1d\x2a\x44\x5a\x9a\xf8\x9c\x8c\xc9\x44\xd4\x72\x47\xf6\xa4\x0f\xa3\x66\x1a\x8f\xb8\xa5\xf0\x5d\x3f\x70\x9f\x90\xe3\x1a\xd2\xf7\x66\x51\x5a\xd3\x71\x75\x73\xdf\xdd\xba\x4c\x88\x8f\xf1\xe1\x9e\xcf\x37\x5f\xcb\x06\x79\xb5\xf8\x7c\x83\xdc\x2b\x0c\x84\xa0\x95\xb8\x99\x96\xed\x88\x50\xcd\x19\xae\xe9\x8c\x74\xbd\x93\xb8\xdf\xb7\x9d\x49\x72\x38\x23\x05\x12\x7c\xbf\xea\x97\x06\xa0\xc7\xa5\x21\xf5\x2b\xfb\x49\x5c\xee\x0c\x3c\x06\x08\x10\x80\xce\xdd\xb6\x4e\x33\xcc\x0f\x91\x4e\xc9\x09\x51\x7c\x62\x1a\x5b\x81\xa4\xa1\x7b\x65\x1c\x4d\xc5\x64\xb5\x1b\x89\x5b\xc4\x13\x8d\x38\x73\xe2\xf5\x88\xf7\xcd\xe9\x31\x49\xbd\x17\x71\xb2\x62\xf3\x35\x4a\x67\x8e\x13\x95\xd4\xf1\xe8\x09\x2e\x33\x64\x59\xb2\x33\x60\x05\x77\xac\x07\xbc\x13\x66\x6f\x14\xba\x43\x00\x16\x51\x3d\x57\x96\x4a\xec\x30\x65\x4a\x1a\x07\xd0\x16\xdd\x6c\x75\x82\x52\xd3\x3b\x23\x0a\x89\xee\x51\xe9\xa0\x56\x0d\x30\x06\x4c\x5e\x06\xc5\x19\x3c\xad\xab\x6e\xe3\x01\xa8\xf7\x26\xcf\x01\xdd\x1c\x2b\xe4\x4e\x4f\x37\x4d\x6e\x7a\x71\x87\xa8\x9a\xdf\x72\x2f\x41\x8e\x89\x28\x1c\xbc\xce\xb1\xaa\xb0\xc0\x69\x7e\xcb\xc5\x57\x72\x3c\xf6\xf5\xcf\x3d\xd7\x6c\x9b\xc4\xe3\x47\x95\xbe\x99\x80\x84\xb7\x3d\x6f\x43\x36\x28\x97\x08\x63\xeb\x67\xd3\xe8\xfe\xa9\xcf\xd4\xce\xd2\x15\xeb\x46\xd7\x77\xfa\xa1\x9c\xe8\x1d\x77\x31\x78\x8a\xe7\x87\xa4\x01\xb2\x45\xf8\xcc\x3d\x12\xf9\x08\x89\x2f\x9d\x8f\x1e\x25\x24\x1a\x7b\x8c\x9b\xa4\x4e\x72\xb3\x5e\x35\xd4\xcd\x43\x84\x82\x5e\x1d\x01\x5f\x40\xfe\x26\x36\x2e\x06\xb9\xc5\xe0\xcd\x7e\xd9\xe1\x77\x48\x62\x09\x1c\x08\xb0\xa9\xc7\xeb\xc8\x30\x21\x68\x06\x0e\xe5\xc0\x0f\x49\x25\x90\x71\x54\xd8\xa1\xa9\xe6\xa2\xb5\x89\x76\x70\xf1\xfc\x6f\xb8\x98\x58\xf0\xe5\x5c\x65\xb8\x3e\x36\x4e\x72\x68\xaa\xd9\xb1\x8b\xd6\xa0\xfa\x84\x92\x3c\x3c\xb9\x1c\xf3\xc6\x29\x4d\xda\x29\x76\x54\x96\x56\xf2\x5e\xb7\x2f\x51\x1e\xbb\xe0\x2e\x13\x9d\xab\x13\xc4\x08\x75\x0d\xe1\x8e\xfc\xd1\xd8\xef\xcf\x1c\x6c\x26\x71\xba\xac\x4f\x18\xbb\xf5\x0e\x01\x2c\xee\x78\xd7\xd6\xee\xc6\x42\x2e\x8d\x30\xfc\x28\x76\x81\x9c\xd4\xf1\x18\x74\x07\xc5\xb2\xcd\x11\xa1\xa2\x17\x08\xe4\xbc\x1c\x8f\x6d\x5b\xa7\x7b\xd8\x03\x1a\x0d\x69\xc3\xf1\xe1\xd8\x74\x06\xd2\xd8\x3b\xc4\x09\x63\x06\x65\xf6\xa8\xfb\x90\x8c\x92\x0c\x89\xf8\xe2\xb4\xcb\x59\x11\xa2\x63\x00\x01\xb9\xe8\xcf\x49\xc0\x60\x03\xde\x16\xb3\xca\x17\x86\x41\xb0\xe7\x8d\x88\xab\x2e\x17\x09\xda\xf9\x00\xbe\x57\x3e\x82\x41\x2a\x84\xd6\x7f\x03\x20\x32\x90\xdc\x27\x68\x9e\xcc\x16\x7d\x11\x8d\x42\x56\x22\x34\x98\x72\x42\x5a\x4b\x7d\xe3\x60\xab\x12\x45\xe0\x8b\xbe\x8b\x87\x2d\x27\x14\xa3\xa4\x46\x28\x54\x95\x1a\x9c\x50\x13\xb0\x9f\xc2\x08\x3d\x0c\x40\x8e\x8b\xd1\x48\xdc\x16\x6a\x91\x27\xd9\xd9\x24\xa6\xe8\x4e\x90\x02\xf8\x09\xc2\xc0\xfc\xab\x28\xcc\x2f\x1d\x8f\x9e\xa2\xba\xe0\x8a\x4d\xb2\xbe\xcd\x1d\xbc\x97\x26\xf1\x0e\x78\xce\x48\x1a\x48\x4d\xe2\x1e\x70\xca\x48\x59\xd0\xd8\x90\xe3\x7a\x2c\x65\x6a\x07\x2b\x36\x9f\x20\xf0\x13\x00\x98\x3a\xc6\x55\xed\x07\x4d\x12\x89\x8e\xce\x26\xf1\x0a\xb4\x07\x02\xa5\xc4\x69\x12\xe9\x3d\x4d\xa9\x04\xfa\xa2\xd8\x0e\x4a\x74\xe3\x1e\x91\x32\xdd\x50\x85\x20\xeb\xd8\x3c\x6e\x2f\x3b\xa7\x07\x6c\xc7\x87\x0c\xf4\xf8\xd0\xa7\x35\xb6\xd7\xcf\x56\xab\xad\x50\xbd\x71\x2f\xa0\x57\xbd\x36\x39\xa9\xa3\xd2\x5c\x89\x4b\x91\x71\xc0\x92\x3d\x4c\xa5\x94\xc3\x04\x2f\xc8\xd2\xb6\x7d\xdc\x2d\x3a\xbc\x9c\x13\x2e\x6f\x16\xa2\x45\x42\x09\xbc\xc9\x48\x36\x59\xb3\x4a\x16\xeb\xae\xc5\xe3\x86\x5e\x51\x91\xa5\xb7\x89\xe5\xed\x0f\xf0\x1e\x25\x4f\x94\x9d\x81\x33\x74\x6a\x80\x24\xfa\x9e\x0b\x31\x50\x81\x39\x85\xac\x5f\x7e\xc4\x39\x12\x8c\xe6\xdc\xa6\x46\x48\x9c\x24\xd9\x52\xdc\x46\xb0\xe5\x1d\xa0\xcf\x20\xbf\x15\x29\x5a\xc6\xa9\xbb\xc6\x59\xaa\xc2\x36\x1a\x52\xbb\x57\xc5\x02\xa8\xc8\xda\xee\xd3\xb4\xf1\x62\x6e\xd3\x76\x77\x22\xa0\x27\x6e\x51\x48\x73\x8a\xec\xed\xa9\xb1\xd6\xd2\xa1\xa9\x99\x66\x69\xd3\x52\x94\xc8\x1d\xa5\x94\x4e\x45\x56\xdf\xa1\x43\x91\x21\x3b\x2e\xe3\xdc\x76\x76\x06\x0c\x86\xc0\xc2\xd4\xa0\x87\x49\xdf\x0b\x4c\x60\xf0\x17\x88\xd9\x44\xa6\xd8\x85\xfc\xca\x87\x5f\x47\x2d\x5c\xc4\xb6\x17\xdb\xd4\x68\x4b\x51\x69\xbb\xa8\x98\x75\x32\x0a\x01\x9e\x9b\xef\x01\xac\xd6\x93\x27\x54\xcf\x5b\x6a\xc8\xee\xb1\x61\xd1\xa2\x3b\x24\xc7\x9c\x40\x9d\x1d\x7b\x34\xaf\xcc\x4f\x31\x6b\x1a\xf6\x0c\xec\xe3\x61\xaa\xa7\x1f\xae\x93\xa2\xef\xd8\xbe\xc9\xcb\xd1\xfa\xe7\x06\x9e\x87\x9c\x44\xcc\x3a\x96\xd8\xd7\x77\x93\xd8\x05\xb2\x70\x44\x1b\xc8\x9b\xdc\x13\xfd\xf3\x7f\xd2\x0a\xf3\xa3\x52\xf2\x52\x38\x43\xa0\x1b\x12\x96\x61\x2d\x98\x11\x62\xf6\xfe\x96\xca\x5a\xf2\x58\xb5\xfc\x61\xfd\xa5\x23\xed\x9d\x84\x7f\x92\x5a\xe8\xf2\x93\xbe\x5e\x4f\x6d\xe7\x7a\x68\x7d\xbd\xe5\x16\x19\x76\xd5\x47\xf0\xc9\x78\x3a\x0f\x41\xd8\x80\x22\x0b\x86\xad\x71\xc9\x32\x8c\xe6\x47\x57\xab\xcb\x54\x19\x26\xae\xcb\x90\x10\xf7\x82\x4d\x77\x91\x80\xc8\x6d\x38\x00\xad\x0f\xb8\x0f\xa1\xb4\xf6\x03\x49\x5f\xe5\xcc\x6d\x06\xf8\x06\x10\xee\xcb\xe7\x69\xf4\xe1\x64\x1d\x39\xe0\xa2\x05\x9d\xaa\x64\x4a\x08\x92\xbe\x46\x01\xd3\xd7\x08\x48\xd5\x8b\x93\x24\xce\xd2\x5d\xc4\xfc\x87\xb1\x68\x05\xfd\x34\xe6\xa8\x46\x5a\xd9\x0d\xcf\x1b\x3b\x2d\xc3\xd0\xbf\xf5\xe9\x56\x80\x29\x3f\xe2\x30\xa8\x8a\xe4\x56\x23\x01\xee\xae\x24\x2e\xba\x34\x15\x7d\x97\x58\xed\xef\x8e\x05\xfc\x0e\x41\x99\xc7\x2b\x46\xb9\x91\xb4\xe0\xd5\x20\x5d\x96\xfa\x0f\x0d\x42\xb9\x1b\xee\xf4\x3b\xc3\xe0\x5a\xbf\x33\x42\x49\x92\x1b\xb9\x75\xc5\x7f\xe0\x0d\x28\xfd\x23\x67\x7c\x0d\xcf\xfc\xb2\xbd\x45\x7b\xea\xbc\x7b\x10\x3a\x8f\x57\xbd\x32\x58\xdc\xd3\x75\x84\xe0\x0b\xa6\x23\x69\x2f\x16\xfd\x37\x49\xc3\xe2\x9b\xde\x2f\xb9\x51\x21\xaf\xc5\x81\x02\x99\x30\x32\x29\x5f\x1b\xcd\x52\x1c\xaf\x13\xb4\x59\xc8\xad\x59\x96\xce\x90\x62\x4f\xaa\x1b\x20\xf8\xd1\xab\xfe\x06\x82\x02\x65\xcf\x96\x79\xd6\xcf\x92\xb8\x44\x0f\x51\x8b\x1a\xc7\x91\xc8\xe8\x74\x7c\x4d\xef\x72\xc1\x1a\x0c\xc1\xf8\x82\xdc\xdc\xdc\x28\xb5\x10\x3c\xf5\xcd\x71\xf0\xce\x74\x33\xb7\x6d\x87\xa6\x03\xaf\x9b\xd2\xd6\x54\x8f\x46\x8e\xc7\x22\x7c\x37\xef\x56\x0e\xf2\x54\x98\x5f\x45\xf6\x61\x44\x0b\xdf\xdd\x30\x8c\xee\x03\x9a\x92\x4d\xbf\x1a\xe3\xd6\x90\x0a\x9c\x85\x97\x95\x93\xb1\x1f\x9a\x39\xd8\xec\x0f\xf2\x7e\x56\xc8\xa4\x38\xca\x62\x77\xdc\xed\xc9\x71\x5d\x50\x64\xe2\x3c\x89\x53\xed\x91\x7a\x18\xe6\xdc\x9c\x87\x61\x2a\x95\x6a\xd1\x8d\xfb\x0b\x83\x38\xa9\x6e\x3f\xc8\x61\xcc\x7f\xa6\x15\xaa\x7e\x10\x2e\xd4\x9e\x68\x44\xf8\xf9\xc7\xd6\xbd\x1b\xb6\x79\x31\x30\x9d\x2d\x1a\x29\x50\x31\x52\x03\x5b\x33\xf4\x58\x76\xf3\x6c\xb0\xd4\x9d\x08\x93\xc6\xa7\x08\x7d\xf9\x96\x33\xa8\x1a\x0c\x85\x8a\xe5\x42\x3e\x28\xba\xea\x25\xb0\x0a\x31\x59\x27\xc7\xf5\xfb\xb2\x6d\x73\xe5\x3a\x51\xdc\x7e\xf5\x19\x05\xf4\x7b\xc6\x6c\x87\x01\x99\xc4\xe2\x17\xdd\x3e\x14\xb2\x61\xf2\xa1\x4a\xa3\xd3\x2a\xc4\x4d\xb1\x67\xfd\x49\x5f\xb5\x6f\xdb\xb4\x8a\x0c\x26\x82\xf5\xfa\x15\xf7\x40\x9d\xa9\xbe\xfb\xcc\x3a\xb5\xb4\xce\x73\x4d\x7e\xb0\x90\xc4\xed\x47\x1b\x7e\x94\xbb\xc4\xc2\x17\xae\x1e\x04\x03\x8a\x4b\x09\xcf\x09\xc2\x19\xca\xf2\xe9\xae\x55\xb4\x3e\x87\xfe\x47\xbf\xfa\x6f\x22\xd2\xe2\xbd\x8c\x7c\x04\x15\xf8\xe3\xc3\x20\x0e\xf1\x0f\xb8\x23\x7c\xfc\xc7\x78\xd7\xc8\x2f\xfe\xb2\x6e\x13\x14\x83\x7e\x3f\xcb\x4b\x77\x9f\x98\xf7\xfb\x3e\xa9\x28\x80\xf8\x47\x61\x1b\x4f\x10\x43\x75\x69\xca\x6c\x47\xb8\xb6\x7f\x11\x11\xcd\xcb\x25\x42\xa7\x22\x9a\x82\x53\xfe\x7b\xb7\x1a\xe4\x98\xe6\xf3\x7a\xd9\x8a\x28\x82\x04\xbf\x4a\x6d\xe8\xb7\xc6\xae\x7b\x7a\xba\xb9\x38\xc8\xcb\xae\xcd\x77\x3a\x8f\xe2\xe7\x33\x2a\xff\x0b\xd3\x0e\x70\x37\x96\xc6\x0d\x16\x73\x71\x5f\x8c\x6d\xf1\x4b\xd7\xfc\x82\x83\x3c\xfb\x89\x93\xd0\x84\x4b\x99\x20\x01\x5a\xe9\xa2\x50\x94\xf7\xaa\x47\x3a\x06\x88\x48\x32\xc8\x2d\x7c\x37\xde\xd4\x8f\x58\x12\xf0\x47\x2e\xa2\x17\xde\x8a\x88\x7a\x90\xce\x38\xa0\xba\x81\x9a\xbf\xe7\xb6\xd8\x37\xe7\x07\x66\x3f\xc3\x94\x21\x8b\x79\x96\x96\x3a\x11\x59\xbd\x72\xe1\xf1\xa2\xce\xe6\x46\x8d\x9c\x4f\x33\x4e\x0b\x9b\x8f\x55\x62\xdc\x92\xfd\x24\x71\x92\x2a\x4c\x2d\x6d\x1b\xa3\x1b\x23\xe8\x29\x39\xa1\x34\xf6\xc0\x4b\xbf\x8b\x3a\x01\x1a\xe8\x7f\x24\xde\x51\xce\x28\x3d\xeb\x64\xa9\x49\x44\x56\x0f\x0d\x4c\xf5\xa4\xa8\xdf\x33\x03\xeb\x79\x42\xc4\x25\x66\x21\xcb\x0d\xde\x4e\x83\xa4\x40\x90\x54\x69\xd8\x11\xea\xba\x8b\xf1\x8a\x7d\xc2\xa1\x21\xb1\xa8\xff\xcc\x65\x42\x40\x2d\xde\xc4\xc6\x83\x09\xda\xbe\x4e\x00\xcd\x23\xc3\x20\x37\xcf\x85\xa3\x53\x11\xa9\x1a\xfc\x10\xa9\x97\x97\x1f\x99\xd6\xbe\xac\x68\x61\x60\x2d\x8a\x46\xa2\x97\xc7\x26\x31\x99\xea\x45\xe3\x4a\x8e\xba\x17\x8d\x78\xe8\x7d\x24\x94\x98\xf1\xbc\x16\x79\xb5\x2f\x93\xd8\x62\x07\x35\x67\xae\x72\x1e\x87\x61\x03\x3f\x55\xe6\x03\x9e\xe3\xee\xb2\x44\xc5\xde\x93\xb5\x77\x6d\x51\x34\x18\xa4\x42\xf4\x62\x97\x89\xee\xab\x6d\x06\x65\x9c\x0d\x8a\x64\xcd\x39\x6a\xe5\x85\x20\xb9\x5c\xd8\x7b\x04\xf0\xd7\xc9\xde\xaf\x5a\xd3\xcf\xd2\xc2\x45\x4a\xa0\x1e\x7d\x71\xf3\x0a\xb1\xd3\x23\x3c\x45\x99\x4d\x4a\x5b\xa8\x85\x7d\xcb\x5d\xb0\x54\x8d\xdc\x56\x50\x51\xa7\xc7\x39\xe6\x30\x09\xe6\x80\x11\xdd\xa0\x44\x2d\xc7\x34\x78\x06\xc1\x7d\x40\x44\xe6\x46\xa4\x4d\xd0\x81\x7d\x83\xa8\xff\xdf\x18\x52\x49\xff\x63\x06\xf8\xf5\xfb\xd6\x24\x4e\x24\x98\x78\xab\xab\x47\xaf\x31\x78\xc3\xb3\xee\x0a\xca\x57\x4e\x50\x8e\x52\xcd\xdc\x9a\x4e\x57\x95\xf1\xef\x18\x49\x47\x88\x18\x12\xc3\x32\x2a\xd3\x1b\x52\x5b\xd0\xca\x21\x31\xdf\xd9\xaa\x1b\xe1\x35\xe9\x52\x60\xfe\x81\x5f\xd8\xb6\x1e\x80\xcd\xdb\x5a\x8f\xd2\xf0\x47\xba\x37\xf4\x5e\x30\x04\xa1\xf2\xa5\xee\xc2\x04\xc6\xc8\x0a\x85\xff\x2c\x8c\xd4\xff\xff\x7e\xea\x7a\xad\x9b\x37\xb0\xe2\xb5\x5d\x42\x64\x6a\xe7\x25\x43\xf1\x9a\x70\xd5\x53\x44\x92\x7f\xd3\x97\x24\x4d\x6f\x21\x41\xcb\x1c\xb6\x4e\xc6\x0b\x74\x36\xbe\xe1\xa9\xaf\xee\xd7\xcd\xa2\x14\x0a\xb7\x40\xe1\x0e\x2d\x02\x6c\xbe\x33\xa3\xd3\x4d\x4f\x52\x29\xc9\x11\xab\xec\xa6\xf1\x88\xeb\x2c\x0a\x2e\x24\xda\xc8\x40\x31\x1c\x2f\xff\x10\x85\x6e\xc8\x55\x3c\x22\x8f\xfa\x9a\xd7\x3d\x74\x95\xc8\x0d\x8e\x11\xc1\xf7\x22\x02\xbc\xea\x43\x32\xf2\xe7\xae\x55\xc7\xff\xc8\xdd\x0e\x5c\x63\xa0\xf1\xd2\x4c\x88\xbf\x83\xfc\xc8\x85\xe8\x59\x86\x9f\xc6\x1d\x9b\x82\xb1\xd8\x3d\x05\x0f\xbc\xde\x3f\xef\x4f\xb8\xd0\x18\xbf\x3e\x49\x19\xe4\x43\x7e\x59\xa7\x87\x81\x86\xe6\x0c\xb5\xeb\x8f\x6c\x15\xcb\x9b\x39\x58\x79\x85\xc7\xaa\xad\x0a\x93\xbb\x67\x9d\x94\xb1\x0e\x47\x44\xda\x89\x9a\x04\x02\xb1\x7b\x54\xab\x3b\x3e\x5a\xd0\xa6\x4b\x07\xf1\x1d\xda\x61\x40\xfd\xc1\x34\x7c\x10\x91\xaa\x90\xb4\x3c\xb5\xee\xe7\x2c\x3c\xd6\xd8\xe9\x21\x85\x08\xe3\x34\x4e\x33\x07\xab\x14\x6e\x79\xeb\xd4\xac\x2f\xba\x5f\xa8\x03\x96\x76\xb2\xc1\x82\x48\x2d\xc2\x96\x7e\xdd\x39\x08\xe9\xa0\xb2\xa2\xc3\xb9\xb1\x54\xe7\xd0\xd4\xab\xcd\x6e\x5c\x32\xfc\x28\x22\xb2\xd4\x93\x5e\x4a\x67\x90\x76\x6c\x3e\x28\xe3\x24\xfe\xaa\x6e\x5e\xd8\x0e\x3c\x42\x39\xa6\x55\xb2\x9a\xc7\x25\x8c\xdb\xab\x3e\x10\x73\xdf\xac\x93\x1d\x34\xe5\xe1\xf8\x75\xe5\x8f\xa8\xa0\xd6\xb1\x8b\x56\xf1\x07\x08\x66\xbe\x37\x0c\xc5\xd7\xb3\xd4\x00\x3a\x4e\xb3\x49\x2f\xfc\xe6\x6f\x35\x88\xc2\x1e\x4b\x48\xb9\x5e\x6a\x62\xce\x8e\xed\x5b\xaf\xd8\xe3\x5f\xb2\x87\x10\x5f\x24\xf0\x72\x15\x9b\x2e\x66\x49\x9c\xed\x0c\x33\x2c\xff\x92\x2b\xcf\x3f\x19\x12\x87\xc6\xef\x53\x95\xe3\xff\x66\x68\xd4\x71\x96\x12\xb9\x50\xc7\xdb\x58\x94\x06\xb2\xfb\x58\x08\xda\x18\x0b\x51\xc4\xf9\x28\xa0\x8d\x4c\x6f\x47\x83\xe9\xed\xaa\xfb\xf0\xc2\x1a\xaf\x30\x7d\x6f\x75\x09\x9e\xbd\x85\xda\xc2\x63\x65\x97\x97\x66\x1c\x89\x57\x19\xf7\x64\xb0\x5d\x61\x97\x61\x82\xe6\xf2\x18\x10\xbc\x4a\x9b\x73\x11\xaa\xf6\x99\xf3\xb7\x87\x44\x7e\xfc\xed\x50\x6e\xcb\x4d\xd1\x55\x73\x83\xf1\xa7\xdb\xcc\x3e\x7e\x9b\xe0\xe8\x45\xd7\xe4\x60\xe5\x11\xa5\xb1\x11\xd5\xb1\xe0\x0b\xdb\x71\xd2\xce\xf2\x7e\x83\x74\xaa\x99\x74\xfe\xc2\x58\xf7\x68\xff\xfc\xfe\xe6\xaa\x49\x53\xd0\xb8\xea\xc8\x06\x09\x96\x7c\x4c\xee\xba\x34\xa5\x8d\x8b\x6e\xdc\x08\x3d\x56\x41\xfa\xca\xc9\x58\x40\xbb\xff\xe5\x03\xcd\xa5\xdc\xe9\xc2\x35\x46\x20\x10\xd5\x37\xa8\x21\x24\xae\x53\xe3\x49\x44\x82\xff\xfe\x19\x29\x12\xfd\xac\x0e\x7c\x10\xf7\x58\x69\x06\x8b\xe3\x5e\x44\xab\xe6\x5e\x5d\x0d\xa0\x18\x2c\x14\x71\x47\x56\x97\x96\x1e\x1b\x5e\x6f\xe3\x2c\x15\x9a\xab\x35\x5f\xec\x26\xf2\xcb\x4b\xc4\xf2\xae\x83\x32\x28\xdf\x39\x97\xf3\xe2\x26\x60\x68\x78\x8f\xf7\xb9\x7c\x3d\x64\x06\x5e\xbc\x6d\x84\x37\xcf\xb6\xc6\xc1\x47\xcd\x05\x9b\x64\xab\x6e\x8e\x52\x67\x4a\x03\x28\xe0\x96\x6b\x7e\x2a\x45\xc3\x13\x14\x31\x2c\xa5\x71\x3a\x11\xca\x56\xd2\xdb\xd3\xc9\x08\xc6\x04\x13\x45\xd3\x00\xfd\xd8\x51\x15\x9a\xa0\x7d\x5f\x47\x5b\xea\xc6\xa8\xe3\x0c\x5a\x4d\x88\x02\x05\x3d\x20\x27\xb5\xe2\xa8\x4b\xb9\xe9\x0c\x8c\x90\x29\xfa\xa9\x6f\x0f\xed\xbf\xe4\x67\x84\x16\x6c\xe9\xe4\x1f\x50\x24\x91\x98\xdd\x0f\x56\xf9\xf6\xc3\x09\x97\x6a\xa3\x45\x76\x18\x4f\xd4\x33\x0b\xf9\xf8\x0c\xf3\xd1\xa8\x0a\xdf\xc7\x76\x44\x96\x29\xc3\xd2\x42\x34\xbe\x4e\x38\xec\xb4\x68\x67\x52\xf3\x07\x98\xf5\xda\x90\xe8\x3b\xae\x91\x6c\xe9\x0b\x2f\xbc\xf0\x28\x81\x82\x3e\x76\x9d\x50\xa5\x70\x21\x9c\x27\xea\x30\x88\xc1\xfe\x0f\x17\xa6\x78\x05\xba\x99\x83\x12\x4c\x9d\x1d\x92\x6a\xf7\x76\xc7\x44\x80\xda\xd7\xbd\x91\x26\x23\x5a\x9a\x42\x14\x44\xa0\x70\x01\x65\x23\x42\xbc\x3e\x52\x65\xcf\x5f\xcb\x39\xef\xbd\xcc\xb3\x0b\xdf\x21\xda\x77\x55\x8a\xd6\x21\xbb\x50\xbf\xdb\x44\x2f\x76\x64\x1e\x13\xa8\xd7\x0b\x35\x3c\x7a\x07\x9a\xfd\xc4\xa4\x81\xbb\x8a\xd7\x9f\xce\xec\x04\x48\x44\x6a\x97\x92\x78\x09\x8a\x5e\x9e\x96\x06\x51\xb5\xbe\xcd\x3a\xc5\xe1\x38\xed\x0c\x8a\x32\x8f\x4d\x22\x55\x43\x69\x15\x0c\x09\x26\x79\x1f\x39\x21\x3a\x2d\x81\x62\x24\x31\x5e\xf3\x54\x59\xa3\x1b\x5e\xae\xfa\x3a\x55\x17\xbb\xa6\xf3\x2b\x18\x7c\xf6\xe8\xdb\xea\x7e\x90\x11\xfc\x2d\xdc\x8b\xe2\xf7\x42\x7b\x07\x13\x63\x88\x9e\x80\x5f\xc4\xff\xff\x36\x9e\xbb\x47\x93\x54\x31\x96\x62\xe3\xab\x25\x81\xa0\xec\x88\xe4\xda\x58\x45\xd7\x87\xa4\x8d\x70\xc6\xad\x16\xe9\xae\x21\x1f\x91\x3e\x06\x82\x2c\x25\xc1\x75\x37\x2d\xdc\xf8\xd8\x3b\x78\x90\x17\x22\xda\xe3\x13\xeb\xee\x95\xfa\xe1\x4a\x3f\xef\x34\xd1\x6a\x4c\x4f\x7b\xd9\x12\x37\xba\x48\xdc\xbc\x3a\x09\xfa\x3d\x87\x82\xd6\x95\x42\xac\xd9\x6f\x8e\x81\xb6\x5d\x7b\xaf\x9b\x39\xe7\x28\x05\x73\x0f\xf8\xf2\xae\xec\xb2\x7f\x3b\xed\xcc\xe4\xa2\xdf\x85\x30\x0c\x59\x83\x1c\x8f\xd5\xc7\x3f\xdf\xfc\xd5\x99\x7d\x2f\xee\x3b\x78\xa0\x41\xfd\x3c\x3c\x69\x4d\x6c\xb6\xae\xd0\xca\xf3\x41\xb4\x14\xc1\xdc\xfe\x51\x05\x05\xe5\xf6\x79\x34\x14\x75\x06\x0b\x6e\xb5\x88\x90\x80\xbb\x6c\x15\x15\x08\xf1\xbe\xb2\x3e\x68\x8c\xa8\x0c\x68\xa7\x99\x01\xed\xf4\x48\xc7\xe2\x4b\x5f\x98\xfb\xff\x07\x45\xf4\xe1\x70\xab\x60\x9a\xb6\x34\xef\x13\x94\x62\x5b\x0b\x4b\x12\x4b\xfc\xd8\x90\xa6\xe6\x31\x07\x8e\x95\xd3\x58\x77\x0b\x84\x1b\x78\x3a\xa0\xe7\x5e\xbc\x96\xe6\x5c\x2e\x82\x4a\xc5\x8d\x21\xe9\x15\xe0\xa2\x55\xd8\x26\x94\x2a\x4e\x63\x9a\x15\xfb\xf8\x21\x56\x31\x2a\x25\x77\x64\xe5\xe2\x32\x45\xbc\x1e\xdb\xe3\x8e\x1b\xbb\xd7\x84\x82\x46\xfd\x00\x67\x87\x29\x11\xdd\x32\x5c\xa5\x08\x82\xa2\x2a\x7f\x12\x0d\x3c\xf8\x96\x47\xd6\xc3\x5a\xbd\x84\x69\x5a\xdf\xf3\xab\xde\x25\x3c\xec\x7b\xa4\xe1\x7d\xcb\x0d\xe3\xe2\x85\x7d\x73\xe4\xf9\x17\xd9\xeb\xee\xc5\x8e\xc8\xa2\xeb\x1a\x7a\x9c\xd8\x05\x1c\xdb\xe1\xcc\xc1\x20\x8d\x12\x26\x14\x2f\x8f\x4d\x8a\x3b\x35\x3f\x81\x69\x48\xb6\xe0\x87\xcd\x02\x82\x70\x14\x41\x9a\xa5\xd9\x64\xf5\x8c\x5c\xfe\xfd\xf9\x67\x5b\x61\xf9\xef\x5c\x0f\x40\x10\x81\x00\xc3\x9e\xdc\x1d\x43\x74\x1d\x7c\xb9\xb9\x68\x8d\x0c\x96\x60\xaa\x02\xb9\x1a\x30\xad\x72\x3c\x06\x84\x98\x9d\x6d\x2e\xc6\xb9\xf6\x37\x74\xce\xce\xad\xc5\xf1\x41\xbb\xae\x4d\x3a\x4f\xd2\xeb\x38\xca\x32\x10\xc0\x45\xc0\x2a\xa0\x5a\xea\xd9\xe4\xaa\xaf\x46\x71\xe1\xaa\xf0\x82\x4b\xea\x4f\xf2\xe3\x7f\x0c\xc1\x0d\x4f\xae\x55\xad\x2d\x80\x2c\x98\x68\xf4\x87\xc8\x9f\xd1\xb5\xbd\x43\x36\xf1\x02\xa9\xc2\x7f\x03\x7e\x12\x86\xef\x0c\xf7\x92\xb1\xc9\x14\xf9\xb0\x35\x25\x9c\x9f\x6a\x16\xdd\xac\x4f\x01\xf7\xd7\xc9\x4a\x7d\xbd\x4e\x40\xe9\xff\xe3\xec\x4f\x63\x24\x39\xcf\x3c\x31\xbc\x3b\xab\xaa\xbb\xd9\x14\xc9\x26\x45\x72\x76\xb4\xf8\x63\x73\xfe\xb3\x36\x61\x80\xe6\x78\xc7\xf0\x81\xf9\xe0\xc8\xa9\xae\x11\xd5\x65\xa9\x58\xe8\x6e\x35\x77\xe8\x05\xcc\xb7\x22\xdf\xca\x0c\x56\x64\x44\x2a\x8e\x2a\x16\xe1\x05\x06\x0b\xc3\x30\x0c\xc3\xc7\x62\x6d\xaf\x0d\xcf\x81\x85\xb1\xb3\x0b\x8c\x67\x56\xbb\xd2\x1c\xd2\x8e\xb2\x24\x51\x1a\x9d\x23\xb6\x78\x8b\x67\xdf\x47\x75\xf5\x7d\x1f\xd5\x46\x3c\xbf\xe7\x79\xdf\x27\x2a\xa3\xc7\x80\xbf\x65\x76\x57\x55\x46\x46\xbc\xef\xf3\x3e\xc7\xef\x18\x96\x49\x94\xf7\xe9\x48\xa1\x5b\x81\xdc\x0b\x53\x25\x7e\xad\x70\xbf\x79\x95\x39\xa1\x8e\x6c\x39\x63\x8d\xaf\xd1\x05\xf2\x6b\x85\xbb\x5a\x88\x8a\xbc\xe5\xd1\xa8\x50\x58\x12\xc5\x1d\xa9\x81\x16\x4c\x8f\x8f\x40\x51\x29\x55\x74\xb5\xbb\x4a\x1a\xe2\x72\x83\x76\xaa\x9f\x6d\x55\x7f\xc0\x65\x22\x9e\x84\x7a\x46\xa5\x8a\x0b\x69\x9a\x45\x79\xbf\xa5\xa6\x1a\xdb\x68\x75\x4a\xf7\xea\x11\xaf\xa4\x97\xb2\x86\xb8\xe8\x37\x2b\x88\x3e\x46\x45\x62\xd5\xec\xb9\x83\x27\x95\xac\xca\x57\x4a\x93\x14\xd1\x22\x16\x31\x5b\x59\x05\x3e\x88\x9d\x77\x0d\xaa\x6e\x16\x2d\x5b\xe0\xb3\xd8\xe1\xc9\x3b\x79\xfe\xf8\x69\x1a\x60\xeb\xbe\x80\x73\xf0\x96\x70\xfe\xf5\xcf\x76\x6a\xae\xda\x5b\xbb\x58\x55\x1d\x93\xa4\xf4\xac\x9a\xa4\x85\xb6\xde\x51\x1a\x8e\xf5\xfa\x69\x5e\x4c\x50\x68\x12\xc9\x83\x96\xd3\xcf\xbe\xa8\xd0\xd1\xef\x36\x61\x24\x57\xcb\x5e\x9a\xc7\x66\x39\x32\x2d\x05\x20\x39\xaf\x99\x30\xe7\x03\xcf\x00\xec\xd9\xc4\x42\x1a\xa7\xe5\x31\x85\x17\x68\x5b\x48\xfb\xab\x21\x4e\xd8\x57\xc3\xb8\xcc\x19\x6f\xe3\x6f\x31\xc5\x66\xb9\xdd\xe3\x38\x9d\xf9\x2a\x5b\x4b\x89\x95\x2b\xc9\x9d\x13\x31\x72\x5f\x6a\x5d\x3d\xc6\x7c\x90\xa6\x45\x9f\x3f\x43\xf4\x00\x6b\x2a\xdd\x35\x61\xf7\x65\x9b\xc0\xdb\x55\xcf\x1b\x2e\x69\xba\xe1\x25\xd5\x21\x19\x98\x2c\xef\x1b\x25\x4b\xb8\xae\xe6\x96\xeb\x8e\xcc\x1c\xda\xa4\xc8\x8c\x6a\xdd\x30\xe7\x5b\x35\x2f\x7f\xa1\x16\xb9\xd2\xe9\x7d\x89\x81\x1d\xb7\x35\xca\xe3\xb6\x12\x88\xb7\x65\x96\x46\x79\x5e\x82\x7d\x39\xc3\xe1\xf2\xfb\x78\x54\xa8\xee\x3e\xc2\x01\xed\xa8\x81\x4e\x52\x77\x5b\xe7\x31\x65\xa6\x67\xba\xcc\x03\x64\x85\x27\x5a\x64\xa2\xf6\x24\xa9\xd1\x6a\x5a\x16\x7d\x0e\xd3\x5a\x00\x4c\x5c\xef\x3d\x55\x97\x48\xc0\xcb\x36\x2f\x22\x3a\xb9\x9c\xc4\x20\x72\x17\x7e\x3d\xa6\xd0\xb4\x77\x6f\xf5\x10\x7a\x99\x29\xca\xd8\x63\x82\x95\x89\x9e\x63\x26\x38\x92\x7f\x44\x12\xa7\xf4\x09\x38\x0e\x7f\xa6\x99\xa2\x3f\x1b\x3b\x1b\x69\x7f\x2c\x44\x36\x49\x22\x46\xde\x35\x81\xff\x1f\x8b\xd4\x48\xc9\x2d\x35\xa1\x8f\xb4\x94\x4d\xa6\x02\xa0\xd9\x2a\xa3\xc3\x3c\x01\xbd\x6a\x14\x97\x4e\xa9\xaf\xba\x7c\xfe\x8f\xa0\xa5\x54\x58\x65\xd0\x3c\xcc\xd2\x45\x9b\xe7\x12\x0b\xf1\xf8\xd8\xb7\x96\xdf\x8c\xbc\x7f\xa4\x38\xd8\x45\x7c\x7f\x81\xb8\xbd\xab\x54\x79\xee\x36\x40\x99\xe7\x59\xc4\xa0\xa5\x5b\xbb\xf4\xd5\xa5\xcd\xdb\x80\x01\x32\x71\x6c\x7b\xb6\x0e\x36\xf9\x58\x81\x4d\x3e\x56\x47\x41\x88\xf1\x3f\x32\x84\x9f\x8f\x54\x0e\x79\x55\x53\xa6\x2e\x28\xd4\x50\x3e\x4c\x4b\xf7\xad\x05\xd1\x40\x7b\x54\xa0\x0e\x5b\x3b\x00\xcf\xb6\x57\x68\xb0\xef\x88\xaf\x28\x41\x3f\xa1\xfb\x8d\x08\xcb\x88\x3c\xd4\x37\x37\x15\x41\x6a\x21\x65\x85\xf5\xd9\x59\x4e\x0e\x6e\xab\x44\xe1\x76\x53\x40\x6d\xdb\x24\x25\x7d\x3a\x07\xa2\xb8\x18\x78\xd1\xbc\x8b\x0e\x8a\x5f\x05\xc2\x1e\x4e\x56\x37\xe7\x3e\x8f\xed\x27\xec\xbd\xad\xd1\x7d\xef\xde\x76\xba\x92\x50\x74\x42\x09\x7f\x25\xf0\xce\x51\x57\x54\x5f\xf5\xcb\x07\x7e\xb3\xe5\xe7\xf2\x77\x75\xa7\xf3\x6e\xa3\x8b\x42\xde\x27\x09\xfa\x9a\x7c\xf3\x39\x25\xdf\x7c\xce\xf3\x52\xcb\x38\x8e\x84\xac\x8f\x9c\xef\x9a\x9a\x40\x5f\x73\xdf\x2f\x8e\xbe\x52\xda\xc5\x48\xf6\x25\xaa\xb2\xab\x81\x9f\xd4\x5f\x1d\xf9\x9a\x25\x2a\xf2\x27\xb5\xf1\x35\x52\x68\xa4\x3d\xbb\xd6\xbc\x72\xf7\x0d\x8f\xa4\xff\x65\x3a\x0a\x9f\xe7\x61\xe2\xee\x0e\x25\x63\x78\xb4\x8f\x76\xaa\x0a\x40\x74\x76\xab\x4f\xa4\x36\xf4\xff\xf8\x2b\x6b\x55\x6a\xcd\xea\x89\x40\x52\x01\x62\x75\x93\x0e\x20\xfc\xc2\x5d\x4d\xfd\xde\xb9\xe6\x67\xb6\x57\x35\x05\xe6\x31\x92\xbd\x42\x8c\xdd\xb6\x56\xa5\x0e\xe8\x50\xdc\x0b\x14\x37\xf4\xd1\x8e\x02\x4b\x7d\x80\x3d\x4d\xed\xb7\xbf\xfa\x6c\xa7\xf5\xc5\x03\x4e\x2b\xc9\x23\xea\xed\x32\x24\xbd\x1e\x90\xe2\xfb\xe2\x2d\xcd\x56\x09\x44\x81\x8d\xf8\x01\xad\x03\x94\x1f\x3f\xc4\xce\xe1\xff\xa0\x22\x89\x95\xea\x14\x20\xe0\x62\x13\xf0\x7f\x39\x02\xd5\xc1\xfb\x15\x28\x1d\x9b\x0f\x1c\xa2\x2e\xaa\x0e\xa8\xbc\x30\x05\x30\x2e\x50\x2e\xfd\xa9\xf6\x78\xfc\x0b\x05\x1e\x78\x3b\xf0\x6d\xd3\x32\xc9\x57\xc8\xf4\xa1\xa5\x64\xf1\x60\x38\x29\x02\x5d\x8f\x69\x9d\xb5\x15\xb3\x3a\x49\x69\xb5\x24\x91\xf4\x64\x74\x76\x29\x90\x06\x15\x2e\xcf\x36\xa1\x15\x18\xf1\xcd\x91\xcc\x71\xfc\xab\x47\xc5\x6f\x1e\x68\x30\x94\x97\xd9\xb2\x5d\x65\xd3\x52\x2c\xcf\xe3\xda\xa6\x14\x68\x1c\x19\x40\x34\xcc\x7c\x4c\xd6\x2b\xad\x9a\xda\x5c\xd3\x16\x77\xd7\xd4\xed\x59\x89\xf2\x30\x4d\xf2\x28\x51\xd2\xa1\x1f\x6b\xe9\xd0\x8f\xb7\x7a\xcf\x56\x5b\xf7\x37\x58\x09\x02\xc7\xea\xad\x40\x33\x72\x70\x1c\x30\xaf\x7a\xa4\x64\x68\x0e\xd3\x18\xc7\x11\x45\x1d\x0d\x06\x64\x40\x9c\xb8\x37\x71\x57\x41\x61\x45\x27\x9c\xa7\x39\xe3\xb0\x9a\x19\xf2\xd1\x1f\x94\x03\x45\x7d\x43\xe2\xcc\xaf\xc7\xd6\xdb\xbe\xb9\x76\x66\x73\x13\xdb\x09\x6f\xe3\x80\x92\x48\x06\xc2\xbe\x33\xed\xc1\x0b\x61\x66\xcd\x92\x1a\x01\x9c\x0a\x14\xca\xed\xd4\xe8\x97\x7d\x13\xa4\x1f\x99\xe2\x1f\xfc\x5a\xd7\xac\xfe\x83\x5f\x1b\xa4\xaf\x40\x6e\xd9\xb5\x8f\xbc\x4e\x57\xd3\x58\x6f\x60\x4d\xc2\x4a\x32\x68\x7f\xfd\x2b\x8d\x90\xe0\xc2\xdf\x19\x3d\x39\x35\xaf\xed\x1d\xb5\x43\x6c\x96\xb8\xb6\x1d\x03\x0f\x02\xdf\x7e\x3e\x53\xd7\xb8\x7e\xc5\xb4\x54\x45\xc4\xe6\x5d\x92\xb3\x2b\x7a\x81\x35\x61\x91\x66\xac\x5c\x8e\x0b\xb8\x19\x78\x91\xab\x9b\xea\x04\xf8\x3c\xdc\xd1\x0f\x38\x86\xbe\xea\x4a\x83\x26\x88\x10\x75\x0d\xab\x02\x33\x9f\x71\x4d\xf2\xb9\xb9\xb6\x19\x0e\xd3\xea\x0b\xc9\x99\x8b\x11\xca\x49\xed\x70\x70\x32\x68\x10\x9f\x3e\x34\xfd\x3c\xb1\xc6\xb0\xb0\xb6\x53\x9f\x0e\x8d\xe0\xf3\xa8\x76\x1d\xaa\xb9\xda\xe1\xd2\x1a\xac\x16\x03\xb8\x36\xff\xcb\xc8\xb7\x39\x77\x39\xb0\x21\xdb\x60\xa7\x30\x34\x17\x64\xfb\xb5\x91\x6e\xe6\xfc\x61\xa0\xa4\xf2\xd7\x49\x63\x8d\xa1\x39\x9d\xf1\x1c\xe7\xf9\x36\x38\xd0\xc4\x05\x90\x5e\x47\x75\xad\x35\x8f\x3d\x24\x70\xa7\x14\x1e\x28\x2f\x07\x48\x81\xd9\x0f\x44\xa5\x45\x17\x94\x74\x06\x99\x32\x11\x7d\xb0\xca\x20\xab\x0d\xb5\x79\x9c\x4a\x8a\xcd\xe3\xee\x48\x0d\xfb\x26\xe9\xd9\x7c\x47\x6b\x76\x76\xf3\xa2\x46\xf9\x7c\x10\xa8\xd9\xf2\x67\x3b\xaa\xb0\xf8\x40\xd9\x61\xdf\x43\x3c\x01\x88\x6f\x73\x2c\x25\x7b\x71\xfe\xef\xb6\xcd\xc0\x66\x51\x68\x12\x75\xb6\x1c\xd3\x5d\x47\x2d\xb7\xbd\x90\x26\x29\x49\xeb\x8b\x42\x8d\xcf\xd0\x6e\xe3\x77\xd0\xc0\x3a\xad\xe6\x61\x50\x00\x70\xaa\xdf\x40\x3b\x9c\xab\xb9\xfe\x54\x7f\x05\x43\x81\xaf\x8f\x49\x00\x78\xa8\x88\x67\x0a\xdb\xaf\x94\x8e\x07\xf9\xbc\x08\xa5\x2a\x5a\xc2\x59\x85\x9d\xcc\x6c\x2f\x4a\x11\x35\xb9\x13\x4c\x3f\x28\x5d\x61\x07\xef\xb4\x79\x58\x5a\x7a\xd0\x08\x18\xef\x52\xe4\x73\x22\x64\xee\x0a\xef\x29\x4d\xe0\x05\x9b\x65\xab\x58\xf9\x48\xc1\xaf\x6a\x11\xaa\xab\x23\x2f\xe6\xbc\x98\x95\x79\x91\xb1\x2c\xa2\x4b\xd1\x2e\xd4\x14\x5b\x95\xa2\xcf\x31\xaf\x71\x90\x45\xcb\x26\x5c\x45\x9e\xe4\x88\xf0\x0e\xe5\x7b\x46\xc1\x27\x57\x4c\x5c\xa5\xa3\x58\xed\x9c\xc7\x06\x0a\x45\xfe\xc9\xd8\x0e\xae\xb6\xa2\xc9\xf3\x28\x2f\x0c\x87\x23\x7e\x3a\x41\xed\x51\xc9\x30\xab\x6b\x56\x27\x54\x44\xb8\xca\x5d\x52\x34\xe3\xe0\x81\x21\x97\xdf\xd0\x0c\x28\xe3\x22\x1a\x98\xc2\x72\xf2\xef\xf0\xff\x0e\x16\xfa\xcf\x9b\x8c\xdf\x97\x92\x2a\xab\xad\x29\x5b\xd5\xda\x90\x0d\xde\xfc\x43\x9b\x0d\xa2\x3c\x8f\x84\x9a\xd9\x5c\x96\xf9\x54\xa2\x67\x63\xe8\xe5\x34\x09\x1b\xf8\xa8\x69\xa2\xc1\x43\x0a\x55\x83\xb5\x8f\x93\xe2\x31\x24\x98\x22\xfa\xab\x3c\x54\x6e\xaa\xef\xc7\x61\x11\xb1\x63\x8a\x7a\xbf\x42\x8d\xae\x6e\x48\x4d\x91\x56\xe4\xec\x3f\xab\x11\x62\x71\xc4\x6e\x18\x2e\x09\xbb\xa7\x4c\xa3\xee\x8d\x8d\x95\x67\x67\xdb\xc3\x7e\x66\x72\x41\xb0\x2b\x15\xa5\xe7\x1b\xaa\xa7\x15\x13\x81\xce\xbb\x7f\x9a\x63\xf7\x59\xe5\x7d\x04\x2d\x13\x9c\x79\xc7\x69\x7d\x6c\x42\xf4\x54\xac\xfa\x5a\x7b\xf7\x6e\x9e\xd3\xf8\x8d\x83\xcf\xa9\xd1\xc7\x86\x36\x82\xdd\x18\x7b\x6c\x55\x6d\x14\x25\xdd\x68\x39\xea\x96\x88\x85\xe2\xc0\x7c\x54\x19\x60\x1f\x6d\x34\x52\x37\x43\x93\x31\x38\x4b\x20\xa0\x8a\x1e\x06\xf2\x83\xb0\x34\x1e\x57\x49\x80\x0d\x97\xd2\xb2\x50\x06\x59\xc7\x95\x73\xf6\xf1\x46\x21\x26\x19\x8c\x50\x9c\xe0\xbf\x5f\xc3\x0f\xd6\x40\x86\xfe\x74\x1e\xc6\xa6\x3a\xf6\x85\x7f\x85\x0d\xcf\x74\x09\x7e\x53\xef\xa1\x2f\xe4\x3b\x94\x3a\xf7\x79\x25\x54\x74\x11\x4d\x27\x6d\xc8\x8e\xed\xcd\x63\x6b\xf6\xe0\xe5\xbd\x29\xd5\x7e\x83\x31\x8f\x4d\xba\x69\x96\x5b\x97\x89\x60\xd8\xf2\xdd\xc0\x73\xd1\xbe\xab\xc2\x28\x11\x65\x56\x51\x23\x33\x0a\x7c\xe4\x79\x32\x68\xf2\x60\x42\x73\xa6\x61\x1b\x1f\xa0\xc5\x85\xc7\xca\xde\x5b\x41\xeb\x45\xf7\xba\x71\xe5\x66\x76\xd9\x26\x05\x27\x16\x4e\x01\xc2\xf9\xbd\xbf\x7e\xee\x81\x1e\x13\x66\xd9\x66\xab\x13\xbe\xae\x46\xf7\x04\x48\x39\x56\x14\x45\xf8\xbf\xad\xce\x94\xcc\x76\x6d\x1e\xf5\xd8\xa1\xd6\x39\x38\x3b\x99\x94\x0d\xf4\xf7\xea\x22\x13\x83\xd5\x49\x4c\x00\x00\x80\xda\xd1\xd1\x23\x98\x96\x53\xf4\x3e\x57\x73\x44\x19\x3d\x51\x4f\x88\x5e\x9c\x6f\xff\x06\x6e\x0d\x32\x11\x00\xe4\xf8\xb5\x13\x3a\xe9\x46\x68\x82\x95\x19\xa2\x9a\x98\x49\xb5\xc4\x7e\xe9\x93\xf5\x26\xbf\x01\x34\x1c\xa6\x34\x3c\x58\x11\xb5\x1e\xeb\x78\x23\xbe\x3b\xf4\xa7\x90\x25\x41\xf0\x14\x8d\xe4\x53\x5b\x71\x79\xff\x1e\xb5\xbe\x26\xab\x8c\x84\x1f\x08\xaa\xae\xd3\xec\xb1\xd1\x72\xfa\xf9\xa7\x83\xcf\xba\xac\x97\xae\xbe\x67\x8a\x14\x96\x74\xc2\xf6\x53\xcc\x3f\x2d\x77\x97\xc6\x84\x85\x99\x77\x21\x07\xb3\x36\x7e\xdd\x14\xf5\xf3\x41\x54\xf4\xf3\x34\x89\x0c\x84\x87\x85\x25\xd8\x72\x8c\x5f\x86\x04\x89\xd0\x85\xa2\xfc\x46\x79\x18\xa7\x08\x93\xfb\xe6\xfc\xb8\xc1\xcd\xf3\xee\x8e\xcd\xed\xab\x0f\x54\x0c\x99\x09\x0f\xe5\x38\x87\x33\x9d\x8d\x34\x94\xfe\xfc\xf5\x31\xa0\xd5\xcc\x41\x5a\xaa\xa6\x67\x09\xf8\x85\x3c\xe7\x4d\x35\x19\xb9\xab\x15\x8b\xb9\x93\x85\x4e\xcd\x9f\xe3\x53\x04\xbd\xd3\x14\xab\x6c\x99\xa5\x43\xcb\x77\x03\xe7\xc9\x0d\xdc\x01\x2c\xd6\x09\x6a\x84\xe0\xcf\x55\x79\x90\x47\x31\xd8\xee\x23\xde\xa8\xe9\xae\x02\x4f\xec\x5c\xa3\x49\x00\x96\xe6\x0d\xd4\x3a\x35\x6b\x76\x24\x3e\xdc\xa1\x61\x1d\x18\x85\x48\xf8\xea\xc8\x0b\x17\x3c\xd5\x51\x84\x94\x5b\x34\x96\x45\x2c\x39\x8a\xa4\x9f\x25\xc9\x69\x21\x3a\x45\x99\xfd\xd3\xee\xd3\xc7\xe6\x5d\x87\xa6\xdb\x3d\x13\xa1\x03\x86\x6f\x78\x47\x71\xa0\xef\x34\xc5\x18\x46\x5e\x40\x68\x42\x18\x1b\x74\x8b\xf8\x8d\x32\x54\x7a\xad\xcc\xa2\xb0\x0f\x52\x36\x4e\x93\x5b\x81\x62\x86\x8c\x8f\xf3\xc9\xca\xb3\x4c\xba\xc2\x19\x72\x8e\x19\xd5\xd7\x46\xe7\x0c\x32\xf2\x18\x52\x70\x23\x0e\xcf\xfa\x46\x53\x49\x3c\x34\x89\x19\x98\x09\xed\xfa\xf2\xd6\x48\x63\x4a\xe9\x0f\x48\xf3\xaf\x89\x60\x51\xa5\xef\xe4\x77\x5d\x4b\xd9\x65\x06\xdb\x80\x8e\xea\x5a\xd3\x8d\xa3\x04\x7d\x1f\xb4\x50\x8e\xaa\xde\xca\xd1\x91\x66\xf3\x87\x31\xa5\xf9\x93\xb4\x32\x5d\x52\xe8\x80\x30\x30\xdf\x15\x6b\x39\xe5\x13\x70\xb6\x21\x2f\xa5\x06\x40\x14\x47\x72\x38\xb9\xa1\x8e\x9f\x9b\x05\x0f\xa2\xd6\x24\x69\x62\x8b\xbe\x8d\x6d\x9e\x4f\xfa\x26\x14\x17\xb3\xdc\x97\x51\xf8\xd3\xc7\x60\xb8\x23\x51\x5b\x15\x3b\x26\x41\xff\x55\x80\x81\x2d\xa7\xd0\xa2\xbd\xcd\xcd\x82\x29\xe8\x14\x9d\xf0\x68\x93\xaf\xd1\x73\x61\x5c\x11\xdd\x30\x69\xa7\xa8\xdf\x2b\x49\xb1\x54\x1c\xc1\x84\xcf\xa9\x84\x72\xdf\xe0\x43\x5c\xe0\x6b\x0d\x0d\xf5\xdc\x86\x69\x95\x91\xa0\x33\x88\x93\xea\xbe\x3a\xb5\xee\x8f\xbc\xb6\x75\x34\x60\xbb\x90\x78\x75\x87\xe2\x03\x7c\x88\x6c\x89\xdf\x68\x73\xdb\x0d\x64\x8a\x32\xc4\xf6\xf4\xa1\x0b\xd8\x89\x22\xad\xf6\x20\x77\x8e\xa5\x28\xcb\xc3\x7e\x22\xaa\x1e\xf8\x1a\x10\x19\xe0\xd7\x63\x73\x9b\xea\xc9\x17\x36\xec\x27\x69\x9c\xf6\x22\xa7\x81\x2d\x52\xfe\xf4\x77\x44\xcb\xbf\x71\x60\xb9\xe0\xb8\xfb\xc8\x2d\x0e\xe3\xdb\x89\xc3\xb9\x0f\xc7\x57\xc7\x4e\xcb\x99\x83\xed\xc5\x28\x0f\x79\x98\x23\xec\x2f\xdf\x6e\x3b\xab\xb0\xac\x59\x99\x71\xc9\xee\x20\xb5\x8a\xab\xa5\xf3\xcc\x7c\xc5\xda\xa1\x8c\x34\xd1\xb2\xba\x8d\x22\x97\xdf\xa8\x7a\x72\x90\x26\x76\xf5\x11\x35\x9d\xba\x37\xf2\x08\xbb\xd3\x5a\xd3\xec\x5d\x6e\x6a\x48\x70\xab\x96\xa9\xf8\x15\x29\x3d\xeb\xab\x88\xc4\x22\x4a\x5e\xe7\x05\xcd\x33\x86\xf8\x0c\x42\x12\xc6\x16\x67\x35\xfe\xfd\x13\xbd\x00\x6e\x29\x93\xab\x8f\x9b\x52\x0d\xb3\x50\x3a\x95\x79\xa6\x69\x07\x3e\xf1\x3a\x3b\x76\x48\xa1\xcb\x17\xf5\x3c\xbc\x0e\x9b\xeb\x3b\x6a\xa3\x7d\xa7\xb1\x66\xcd\xec\x72\x64\x3d\x1e\x17\x07\x27\x0e\x1a\x7e\xdd\x94\xf0\x46\x71\x5c\xe6\x51\x9a\x90\xaf\xa4\xd3\xdf\x43\xeb\x8d\x5f\x8f\xad\x47\xd2\x63\x8f\x12\x4a\xbc\x0a\xe9\x23\x88\x68\x88\x92\xb4\xd9\x08\x1e\x51\xf8\xe5\x05\xc3\xeb\x16\x08\x0e\x1e\xfb\xf2\x9b\xa6\xae\x62\x91\x95\xf1\xea\x84\x42\xfb\xbe\x39\xf2\x58\x89\xab\x8a\x75\x56\x8b\x4f\x51\x97\x87\xb5\xa8\xe5\xae\x04\xca\x9d\xe8\x82\x9e\x91\x31\xeb\x44\x06\xea\x4e\xc0\xde\x16\x0f\x7b\xd3\x27\x36\xe9\xc1\x0a\xde\x85\x8a\xd6\x89\xb3\x7b\xe2\x04\x60\xab\xa8\x7d\x5a\x20\x64\x08\x59\xc2\xcb\x2c\x80\x0c\x0b\xb8\xf3\x09\x0d\x7a\x7d\x14\xb0\x76\x6c\xa8\x6d\x6b\x35\x38\xf2\xd6\x27\xfd\x6c\xbb\x6b\x33\xdb\xc3\x00\x77\x42\x59\x42\x7d\xaa\x94\xb3\xbf\xaf\x81\xb0\x6f\xab\xf2\xf3\x0b\xbf\x79\x60\x42\xe1\x94\xef\x05\x5a\x13\x01\x8f\x0e\x31\xb9\xc9\xb6\xbb\x5d\x64\xc6\x99\x6b\x33\x5a\x4c\x9b\x37\x9d\x52\x1b\xdc\x24\x45\xd4\x4d\x0b\x4b\x61\x7c\xf3\x9c\x32\x0b\xb9\xab\x46\xdf\x4a\xf5\xcf\x46\x09\x46\xfd\x72\x46\xd2\xc5\xf0\x9b\x26\x18\x8f\x35\xf9\xea\xa4\x6e\x02\x57\x77\x7a\x13\x96\x69\xa0\x8d\x7e\x3f\xf0\x3a\x89\xb7\x9a\xcc\xfd\x97\xec\xea\x94\xfa\xce\x9b\x8a\x07\xcf\xb2\x01\xae\xca\x77\x97\x7f\x9d\xa0\x6e\x38\x3d\xcf\xa8\x3b\x5b\x94\xf9\x0e\x4f\x98\xd9\xd0\x32\xd9\xe7\x95\x94\xf5\x44\x47\x9b\x97\x50\x82\xc7\x3f\x34\xf2\x13\xd3\xb3\x23\x5d\x81\x2d\x46\x49\x55\xb9\xd1\xf5\xe0\x1a\x7e\x4e\x3f\xcb\x98\x55\x7c\x92\xe0\x5e\xfc\x49\xea\x5c\xa0\x68\xea\x85\x0f\xb9\x8b\x35\x8b\x3c\xe5\x1d\xc4\x44\x51\xbe\xf7\xc9\xcc\x3b\xd8\x99\xa2\xa4\xa7\x70\x92\xdd\x1c\x40\xe3\x9a\xa2\x06\x8f\x51\x70\x1d\xc8\x64\x7e\x34\xf2\xa7\xfb\x75\x05\x97\xe5\x49\x21\xb2\xb1\x49\x2a\xb3\xd8\xdf\x75\xec\x09\x93\x3e\xe6\x20\x9f\xa8\xea\x0d\xe4\xc6\x7f\xac\x59\x1d\x9f\xe8\xe8\xf1\xc1\x58\x25\x22\x87\x6d\x98\x59\x2a\xae\x54\x4f\x01\xc4\x2f\x7e\xed\x90\x08\x8b\x99\xcd\xfb\x03\x83\x50\x86\xa7\xcb\x01\x8a\xdf\x8c\x7e\xe5\x01\x1f\xb1\x10\x65\x83\x28\xe9\xf5\xcd\xa0\xe5\xbd\x4a\x59\x2a\x44\x14\xc1\x1b\x66\x5c\x8b\x69\x58\xe6\x53\x5e\xba\x69\x1b\x88\x77\x08\x9c\x4c\x8f\x15\xdf\x1a\xdf\x88\xb8\xe0\x95\x5a\xfe\xde\xcd\x26\xae\x36\xc1\xa5\x32\xd0\x5a\x30\x47\xf8\x04\xb7\x8d\xdf\xa8\x02\x2f\xb3\x03\x3b\x58\x00\x5d\xb1\x4a\x5c\x84\x90\x45\xd5\x8c\x64\xcf\xe3\xd4\xc9\xf9\x76\x66\xbb\x13\xda\xf5\x01\x5e\x8a\x98\x99\x5d\x0e\x14\x5b\xee\x2d\x85\x14\x5a\x89\xb2\xa2\x1f\xf3\xa4\xae\xc9\x7a\xbd\x61\x7f\x2e\x98\x02\x07\x27\xa2\x05\xf2\x7a\x7e\xdd\xe0\xa0\x5a\xe5\x72\x65\x22\x9a\xa7\xb2\xb0\x5a\xca\x44\x78\x6b\x4c\x23\xd3\x8b\x32\xe1\xdf\x70\x6d\x25\xa7\x2d\x7c\x7e\xec\x58\x7a\xe6\x99\x76\xd1\xb7\x03\xab\xcc\x48\x7f\xa0\x0c\xaf\x7f\xa0\x6a\xa3\x85\x48\xf0\x01\x2f\x31\x24\xe8\x30\xa4\x81\xf9\xcd\xb8\xea\xe1\x4c\xbb\x1f\xf5\xfa\x36\x9b\xa2\x83\x49\xfe\xa2\x86\x03\x33\xdc\x41\x54\x18\xab\x0f\xe6\xc1\x07\x76\x16\x56\xc6\xa6\x7a\xca\x24\x10\x12\x85\x91\x49\x26\x7d\x14\xba\x84\xf3\x01\xdb\xf8\xb0\xae\x9a\x2f\xe1\x5c\xe2\xff\x71\x4c\x99\x81\xcd\x22\x69\x52\x20\x53\xe4\x15\xce\x6f\xd4\xd7\xce\x6d\x98\xb1\x97\xa3\xe3\x55\x79\x69\x7b\x07\x2c\xea\xc5\x69\x9e\xaf\x4e\x79\xfc\xde\x05\x4d\xd7\xbf\xe0\x09\x74\xff\x68\x0f\x95\x48\x28\x28\xb9\x5e\xc1\x1d\x3c\xd3\x54\x9c\x0d\xcd\x60\xe8\x29\xb8\xc8\xb2\xae\x2a\x52\xe8\x55\x4f\xeb\xee\xdb\x78\x71\x87\xab\xdb\x7e\xe9\xf1\x35\x2f\xc7\xfc\xc2\x4f\x47\x0e\x78\xf5\xf9\x5f\x46\xcc\x46\x13\xe8\x7f\x43\x08\x15\xdc\x35\x41\x55\x65\xb3\x8c\xcf\xca\x5e\x6a\x0f\x4c\x16\xf1\x18\x49\xba\x1f\xf4\x15\xc4\x53\x74\xeb\x06\x3b\xf8\x02\xd1\xaa\x94\xe1\x2a\xfa\xca\xf2\x46\x3b\xd8\x95\xaf\xb5\x34\x59\x8c\xfe\xae\xb0\xc8\x7c\x9b\x35\xb6\x0b\x26\xb1\x39\x9b\xaa\x88\x2d\xb0\x2f\x41\xc7\x5d\x81\xe7\x5f\x38\x00\xa7\x71\x97\x4c\x62\xa3\x83\xc0\xcd\xaf\x15\x37\x0d\x06\xfd\x83\x96\x72\x9e\xf9\xbe\xb2\xd8\xf9\xbe\xc2\x28\xc4\xe5\xc2\x52\xc4\xa3\x0b\xb4\xbd\x8f\x04\x5a\x3d\xe4\xc8\x58\xc4\xf9\xd2\x4c\xbb\x6f\xe3\x21\xdd\x10\xc7\xf7\x55\x40\xc8\x06\xb4\x33\x81\x97\x68\xb9\xb3\xf2\x28\x05\x1a\xdc\x71\x04\x04\x9c\x40\xef\x6a\xb1\x9b\x71\x81\xa2\x43\xd3\xcf\xb7\x17\x4d\xd1\xf7\xf2\x3e\xe2\x2e\xad\x22\x2a\x97\x5f\x48\x03\x7f\xaa\x3a\x46\x59\xc9\x02\x4a\x32\xc2\xad\x3e\x97\x5f\x8f\x65\xfd\x55\xe4\xb6\xa1\x1d\x92\x1b\x4a\x5d\x49\xce\x05\xa3\x71\x73\x1a\x52\x7b\x4c\xb3\x50\x56\x3b\x0f\x60\xf1\xad\x64\x1a\xfb\x98\x6b\x95\x9a\x78\x35\x8f\x30\x28\x11\x94\x80\x2f\xbf\x2e\xab\x9c\x63\x10\x0e\xc8\xa5\x77\xa2\xa5\xc4\xab\x28\x26\x21\x3f\xe1\x46\x85\x18\x88\x3d\xa8\xd2\xed\xa7\x43\xbb\x58\xc6\x3c\xda\x02\x89\xe0\x86\xf6\xae\xba\xa1\xe2\x54\x91\x45\xbd\x1e\x2b\x0c\xee\x17\xcb\xb1\xaf\xd3\xd7\xe7\xd7\x2e\x18\x2d\x9a\x38\x4e\x4b\x3e\x1a\xa4\x97\xdf\x72\x72\x02\x1b\x6e\x87\x67\x91\xc3\xbd\x21\x47\xe6\xce\x2c\xbf\x19\x79\x32\x7e\x6e\x59\x30\x1d\x9d\xb7\xb7\x03\x05\xb1\xfe\x54\x5b\xc8\xac\x8f\xad\xb7\x67\xab\x8f\x71\x1b\xc5\xd9\xeb\x39\x95\xc4\x0b\x8a\x85\xde\x8b\x6d\x92\x68\x28\xf6\x86\xf6\x03\xda\x78\x60\x1a\x53\xd8\xa4\xeb\xb0\x38\x68\x4c\x73\x76\xc2\x6f\x9a\x54\x55\xf3\x34\x5e\x76\xd7\x05\x06\xd8\x49\x45\x67\x3e\x39\x2e\xfc\xf3\xc2\x81\x76\x61\xb2\x9e\x95\xf9\x42\xcd\x85\x8a\xdf\x04\xbe\xd4\x5a\x4c\xb3\xc1\x04\xad\x04\x19\xaf\xf8\xf3\xf9\x6b\x58\x2f\x82\xc9\x1f\xe7\x76\xce\x1f\xa8\x41\x25\x6b\x75\xf6\x78\x16\x0c\x10\x74\x6c\x27\x6a\x6e\x03\x9e\xaa\xb9\x8e\xa8\x2c\x44\x95\x71\x42\x59\xbb\x6b\x07\x69\x42\xd3\x66\x59\x12\xee\xc0\xf3\xd0\x87\xf1\x32\x74\x6e\xae\x1d\x5b\xd3\xad\x73\xd6\xd1\xd5\x90\x7c\xa9\x49\x5a\x7e\xa1\x8c\x63\x05\x5c\x3e\x05\x62\x88\x4c\x32\x04\xf0\x47\xfa\x16\x1e\xff\x8a\x84\x7e\x5b\xc7\x53\x03\xb7\xad\x79\x6f\x83\x9e\xcd\x21\xda\xa5\x60\x4b\xf3\xde\x8d\xa6\xfa\xfb\x6c\xbe\xd2\xe8\xd8\x92\xf7\xa3\xac\xf8\x9b\xfc\x10\xd5\xb9\x92\xe5\x8f\x54\x1f\x84\x16\x28\xc9\x62\x0b\x19\xe6\xde\xa8\x35\x73\x70\xf3\x22\x7e\x93\x32\xe3\xc3\xbf\x0e\x94\x05\xf6\xd4\xdf\x5a\x43\xa0\x44\xa3\xe5\x99\x8e\xe7\xaa\x02\x17\x48\xc5\xc6\x17\x7f\x75\x4d\x59\x0b\x7c\x86\x20\x86\x62\xbc\x4a\x71\x4c\x1b\x36\xa0\x75\xf8\xf4\x9a\x32\xb3\x7b\xac\xb3\xf5\xf9\xee\x9b\x6b\x17\x76\x40\x40\x97\xd2\x11\x5d\xb4\x05\x9a\x78\x3e\x7b\x19\x8a\xd0\x64\x55\x70\x6a\xf9\xf6\xeb\x49\x8d\x59\x3a\xd9\x44\x00\xff\x95\x2f\xfc\xf6\xfc\x17\x7e\x6b\x6e\x4f\xf5\x3b\xd0\x79\xba\x88\x6c\x59\xca\x41\x3f\xca\x3e\xb7\xa7\xa3\x54\x9a\x3e\x56\x4b\xf5\x4a\xe0\x89\x6c\x68\x68\xb8\xd8\xe4\x6d\x26\x6f\x8e\x5a\xfb\xe6\x04\xda\x22\x2e\x04\xb4\xd5\x54\xf3\x41\x20\xd9\x57\x68\x28\x23\xd9\x05\x1e\x00\xa2\x3f\x9b\xdf\xe2\x03\x2e\x8f\x34\xaf\x5f\x8e\x85\x61\x3a\x2c\x63\x6a\xfe\x38\xc5\x82\x1b\x6a\x42\x30\xde\x73\x7f\xb6\xbd\x98\x45\x36\xe9\xca\x99\x88\x94\x73\x02\x83\x0b\x3c\x2d\xa4\x38\x9b\x9b\x5e\xbc\xf5\xd5\xa2\xaa\x36\xa8\x12\xad\x01\x3d\x59\xdf\x89\xa2\x37\xbe\xc0\x0f\xe8\x96\x08\xfb\x4e\x35\x49\xee\xbb\x0e\x4d\x61\x86\x13\x9e\x2e\x84\xfa\xd2\xf1\xa0\xf6\x3b\x0e\x88\x6a\x0a\x55\x65\xf0\x4e\xff\xd4\x5e\xc7\xde\x91\x49\x9e\x22\x15\x20\xfe\x00\x76\x7d\x5e\x53\xf6\x77\xe1\x7a\x71\x18\x9e\xe1\x9b\x2c\x50\x58\xdd\x1d\x0f\xfb\x93\x1a\x5e\xa1\x72\x32\x6e\x86\x8a\xb0\x2d\x95\x02\x22\x79\xdb\x10\x1f\xdb\x44\x3c\x70\xd3\x71\xe4\xff\xdf\xd1\xf4\xd7\xef\x34\xfc\xda\x01\xc2\x4f\x55\xa1\x82\xbe\x22\x9a\x19\x3f\x04\x7f\x14\xfc\x66\x40\x52\x50\x74\x8e\xa7\x14\x87\xa6\xe7\xdb\xcb\x26\x2e\x25\x48\xe2\x02\x79\x6b\xf0\x9b\xe0\x61\x6f\x95\x0b\x17\x08\x4c\x94\x27\x35\x26\x7c\x72\xed\x41\x83\xe8\x85\xb2\x08\x99\x63\xe4\x10\x06\x1e\x6d\xa0\xa0\xe4\x45\x99\x2d\x44\x89\x45\xe7\x03\x85\x06\x60\xf1\xe2\xd4\xdf\x9a\xf3\xfd\x96\xdd\xee\x19\x04\x34\x37\x14\xd4\x97\x92\x96\x3a\x37\x6a\x3d\xf3\x8c\x63\xf5\xb5\xbe\xfc\x05\xc1\x27\x02\x3e\x28\xdc\xbf\x46\x34\x45\xd2\xcb\x56\x29\x1d\x42\x1a\x7e\x1b\x9b\x15\xab\xee\xf4\x48\xc9\x47\x6f\x34\xfe\x7e\x5e\x98\xac\x00\x77\x41\x6d\x60\xcf\x4a\xf2\x02\x3c\xd7\x47\xca\xbf\xe8\xe1\xce\x1e\xd5\x08\x22\xbb\x2b\x1a\x24\x6d\xb2\x65\x99\xd6\x80\x13\xbd\x47\xdf\x46\xba\xae\x58\xd8\xaf\xd9\xc5\xc5\x28\xb3\x71\xcc\x7a\x8a\x00\x39\x5e\xc7\xd7\xe0\x37\xca\x76\x4c\xb1\xd8\x14\x47\xe4\x88\x32\x8b\x38\xf2\x00\xe5\x05\x28\x52\xbb\xeb\xb9\x50\x83\xb4\x35\xd4\xec\x5d\x33\x30\x3d\x77\x04\x62\x59\x22\x66\xf3\xeb\x91\xe2\x6f\x2c\xa7\xde\xa2\x5d\xb0\x6a\x0a\xb7\x56\xe3\x7e\xda\x28\x7b\xb2\x3a\x59\x04\xca\xad\x8c\xd1\x1e\x82\x61\xbe\xa0\xd7\xab\x9b\x0f\xd0\xed\x54\xa7\xca\x3d\xc5\x95\xc0\xe7\x9e\x4f\xd0\xe1\x85\x0a\xe5\x97\x34\xf1\xf5\x0e\x55\x16\x58\x9b\x93\x6b\x4a\x38\xf6\x5f\xe0\x01\xe1\x78\xbe\x45\x88\x4a\x49\xf2\x94\x36\xd4\xff\x4d\x0d\x40\x8c\x3d\xb9\xe3\xe9\x10\x8a\xf3\x33\x07\x11\xe1\x36\x9f\xea\x28\x47\xa1\xed\x1d\x2d\xec\xa7\xa0\x7e\xad\x4e\x75\x0a\x88\x8c\x9f\xa0\x3f\x57\x4c\x61\xb3\x95\x34\x5b\xca\xa7\x14\x22\xef\x0f\x46\x9a\x84\xce\x6a\x15\x14\xcc\xfe\xb3\x3d\x6b\x7e\xea\xfe\x4b\xf5\x20\xed\x1d\x86\x8a\x42\x3c\x3b\x50\x2d\x3f\xd2\xf1\x58\xe7\x47\x9c\xb2\x63\x91\x59\x93\x97\xd9\xaa\x84\x30\x6c\x5b\x8e\xfc\xfc\x66\xcd\xcf\x4a\xb9\x02\xb0\x5d\xc2\x5a\x61\x9f\xdd\x54\xa2\x16\x97\x30\xb6\x41\xda\x85\xd2\x05\xfb\xf7\xe2\xc8\x63\xf9\x0f\xeb\x2a\xf8\x98\x92\x45\xcb\x53\x03\xeb\xf2\x43\xd3\x1c\x08\x59\xb2\x1b\xbd\x84\x0d\xe5\xce\x3b\xee\x86\xf1\xf2\xcb\xed\xa1\x59\x9d\x54\x89\xd0\x05\xa5\x78\x7d\x97\x16\x81\x3c\x45\x8f\x93\xfb\x7e\x63\xf7\x6c\x55\xf2\x13\xf4\x2e\x7f\x3c\xaa\x02\x11\xbf\x76\xb8\x96\xdc\x26\x39\xe1\x22\x79\xee\x06\x9e\xf6\xbb\xb4\xd1\xf9\x75\x93\x5e\x4a\x37\x8b\x86\x43\xb7\x43\x64\xd2\xa0\xa6\x0e\x4d\x13\x74\x6a\x19\xd6\x14\x82\xce\x68\xdb\xc3\x33\x5a\x80\xb8\xcc\xba\xa9\x04\x6f\xf4\xa7\xde\x0b\x7c\xf7\xeb\x3d\x2f\x2b\x16\x85\xfd\x68\x42\xe1\x65\x39\x8b\xc4\x52\xfd\xd7\x58\x70\x38\xbf\xb7\xab\x18\x17\xa6\x83\x01\x69\xc4\x54\x0f\xda\x0d\x50\xf6\x09\x96\xe7\x42\xb0\x05\x74\x43\xc3\xcd\x67\x1f\xa6\xd3\x0d\x1d\xdd\xaf\x62\x7b\xa1\x29\xb6\x9d\xf2\x4f\x2c\xdf\xb3\x41\x4d\x0e\x86\x6e\x10\xa0\xd0\x1b\x4a\xc9\x68\xd7\x1a\xb5\x42\xf9\x6f\xe9\xc2\xef\xbb\x8a\x01\x79\x8b\x08\xe7\x82\xa4\xa3\xb4\x8c\xed\xbe\x9a\xee\x6f\x1c\x2d\x09\xbc\x53\xbe\x86\x87\x2a\x5d\x50\x45\x68\x91\xa6\xbb\x15\x9a\xe5\xd3\x91\x23\xc2\xfd\xb3\x3d\xb4\xeb\xf1\xe4\xef\x50\xc0\x72\x92\x11\xfb\xa7\x79\xb7\x6e\x47\x9b\x0a\x3b\xfc\x26\xee\x03\x12\x53\x9e\x81\xe1\x84\xfd\x50\x3d\xb0\x89\x35\xad\xd6\xac\x1e\x34\x69\x39\xf3\xfc\xdc\x5d\xb4\xc3\x54\x8d\xb7\x4a\xe6\xe6\xe0\xa7\x9d\x66\x3c\xb0\x73\xe8\x74\x67\xc9\x53\x63\xb4\x3d\xb0\x67\xc0\x85\x1e\xdf\x2f\xce\x92\x35\xf0\xfa\xcd\x26\xc8\x4a\xdf\x66\x51\x61\xd8\x29\x5c\x65\x4a\xf3\x2e\x53\xf2\x64\xff\x6e\x1a\x25\xbd\x87\xbc\xce\xd9\x4d\x35\x0f\x38\x82\xac\x4c\xa6\x8d\xb4\x0c\x19\x47\x18\xa8\x31\x0b\x97\x29\x92\xf9\xfa\x26\xca\xd4\x9a\x12\x2a\x7a\x93\xd2\x72\x81\x21\x36\x8c\xd3\x42\x9b\x14\x36\x23\x73\x69\x44\xfd\x8f\x14\x40\xe2\x3d\xe0\x68\x5c\x1a\x53\x2d\x32\x1c\x58\x27\x47\x2a\xb5\xdb\xd6\x69\x29\x15\x88\x86\xc7\x62\x93\x22\x2a\x62\xd9\xdf\xb8\xe4\xd3\xda\xd5\xff\xb4\x2b\x05\xc2\xd4\x84\x7d\xc7\xf9\x73\xbd\x7d\xe7\x23\x00\x6b\x00\x21\xf4\x34\xe0\x2e\x6c\x9e\x57\x1f\xc7\x31\x0b\x4b\xe0\x5b\x4a\x3f\xf1\x5b\x4a\x4d\x74\x68\xc3\xd0\x74\xa3\x38\x4e\x6d\x8e\x0f\xc4\x5a\x3d\xa2\x66\xbc\x48\xed\x85\x75\xbc\x35\x98\xee\x9b\x6b\x2f\x94\x19\xda\xda\xd8\x31\x6f\x8c\x7c\x74\xbf\x8a\xbb\x84\xef\xc8\x9a\xc4\x82\x66\xf1\xb4\xb0\xa1\x35\xa1\xa5\x29\x0c\x2b\x14\xd0\x74\x0f\x47\x0c\x16\x06\x1e\xec\x45\x8d\x11\xfb\x00\xb7\x4f\x66\xcf\x0a\xd0\x9a\xa5\x0b\xb1\x1d\xe4\xbb\xfd\xcc\xe1\xbd\x40\xb5\x18\x8f\x69\xb5\x96\x4f\xb1\xbc\x70\x6c\x40\xdb\xd0\xb9\x98\x1d\x12\x7e\x0f\x10\x09\xbc\x08\xd4\x88\x6e\x07\xc2\x29\xb6\x23\x24\xef\x05\xb3\xe6\xd9\xcb\xac\x17\x9d\x96\xc5\x0e\x65\x03\x05\x42\xa0\x1c\x3e\x38\x99\x85\xb2\xe8\x81\x09\x0c\xa8\x55\x36\xa0\x22\x48\x79\x6c\x2b\xf2\xb1\xca\x6f\xe7\xe6\xfe\x7f\x3e\x88\xfe\x39\x65\x35\x22\x91\xdc\xfa\x92\x48\xae\xac\x07\x4a\x2b\x10\x39\x2f\x9e\xf9\x89\x60\xe2\xc0\x6f\x7f\x49\x98\x8c\x5a\x6f\x11\xfa\xa5\xa2\xd6\x8c\x6d\x27\x02\xa2\x4a\x39\xef\x9e\xee\x1b\xfd\x02\xa7\x0b\x32\xa1\x8b\x2c\x46\x21\xfa\x7b\xd4\xaf\x47\xdc\xff\x0b\xec\x30\x31\x3e\x51\x26\x2e\x7f\x49\xf1\xdd\x69\xe7\x3b\x03\x03\x48\x5e\x38\x81\xfd\xea\xa4\xc0\x3d\x79\x93\xd4\x72\x70\x9e\x9d\xd5\xde\xfe\xd7\xf1\x90\xb9\x3b\x4c\xfb\x07\x47\xd3\x9b\xb5\x9a\x23\xd0\x08\xe8\x0d\x7a\xe6\x48\x4b\x76\x10\xeb\x11\xd3\xe2\x3f\xd4\x52\xab\x2e\x19\x1b\x44\xdd\x15\x6b\x97\x5a\xbe\x33\x0f\x5b\x61\xd9\xbe\x52\x34\x47\x71\x4c\xe4\x43\xfc\x2d\x40\xbd\xd8\xc9\x92\x2e\x0b\x95\xf1\x39\x65\x19\x91\x14\xf6\xd5\x62\x42\xd9\x12\x00\xf6\x83\x2c\xf8\x9e\xfa\x2e\x17\xd4\x4c\xe2\x3f\x78\xe9\xef\x83\x66\x84\x40\xff\x4b\x1d\x35\xbb\xb8\xa8\x9a\xd9\xb7\x69\x8d\xe0\x0b\xef\x5e\x7b\x42\xd9\xe6\x0d\x16\x4c\xd6\xad\xea\x8e\xea\x17\x9d\x83\xbe\xf3\x10\x3c\x33\x16\x49\xf7\xee\x6d\xe7\x7d\x33\x64\x2f\x61\x25\x07\xf8\x12\xdf\x2c\xd6\x0e\x13\xdb\x92\x2d\x40\xe3\xdf\x68\xef\x9f\x9f\x54\xe2\x81\xef\xe3\x91\x21\xa4\x9e\x50\x10\x6e\x68\x40\xf1\x0f\x05\x4f\x2a\x1f\xff\xc2\xf6\x84\xc5\xe2\xc0\x07\xac\x03\x2f\xb8\xcc\xea\xcf\xa0\x3b\xb9\xa1\x00\x53\xa1\xc9\xd2\x78\xc2\xf7\x8a\x8f\x29\xed\x09\x1e\x75\x61\xe9\x9f\x1e\x1b\x16\xce\xce\x8a\x25\x8b\x9a\x3f\x3c\x46\x5a\xb3\x98\x5a\x3d\xd5\xf1\x63\xe3\x6b\x6a\x58\xb3\x50\x66\x0b\x26\x59\xe2\xee\x8d\x68\x25\xd0\x1d\xc2\x1b\xa6\x76\x63\x54\x71\x7b\x2c\xec\xce\x1c\xa4\xc6\xaf\xe6\x85\x62\x61\xf0\x6b\x35\x79\x0a\xd3\xb8\xbb\x62\xe3\xb8\x55\x97\x97\x56\xac\xac\x63\x0a\x21\xb4\x62\x93\x82\x22\x27\xf2\x85\xeb\xe8\x20\xa3\x42\x7e\x13\xa4\x32\x11\x42\xf0\xb9\xfa\x45\x6d\xca\x44\x97\x81\x74\xed\x4e\xa0\x58\x52\xd7\x94\xa1\xce\x9f\xd2\xc2\x73\x52\x49\x73\x73\x07\x36\xc7\x25\xad\x24\x1b\x19\x2e\x46\xaf\x89\x59\x12\x62\xff\x05\x45\xe8\xf9\x7d\xb4\xb9\x2e\x8e\x75\x80\xab\x4a\x38\xa6\xf1\x8f\x9b\x43\x5f\x54\x73\xe8\x8b\x8a\xc0\x92\x97\xd9\x10\xf3\x83\x29\xd5\x2f\x3c\xcb\x71\x99\x3d\xcf\x28\xec\xa0\x23\x7c\x24\xf0\x0c\xc1\x77\x29\x20\xf0\xbf\x6b\x47\xbc\x34\x1f\xd8\x22\x0a\xf3\x89\x1a\x63\x44\x59\x4a\xdf\x52\x08\xd9\xed\x9d\x86\x93\x3c\x36\x49\x37\x8f\xa3\x2e\x08\xcb\x28\x56\xc1\x86\xc6\x57\x47\xd3\x0c\xa1\xf3\x4f\x1a\x86\x0f\xcf\xb7\xbb\x76\x40\x48\xd1\x43\x22\x90\x88\x4c\x82\x5f\xbb\xa9\x54\x66\x63\xbb\x6c\x92\x62\x52\x39\xce\xfd\x59\xf5\xc7\x37\x77\xd1\xfa\xe5\x1a\x61\xcd\xd3\xc3\x4e\xa9\x24\x22\x4c\x93\x3c\x8d\xa3\xae\x29\x6c\x97\x01\xc5\x58\xb6\x97\x95\x11\xd6\x49\xe5\xe9\xcb\x44\x07\xfe\xa1\xc0\xdf\xb3\x15\x6b\x96\x6c\x22\x9c\x20\x36\xa4\x55\xce\x77\xc7\x94\xf8\x46\x4a\x32\xfe\x65\x42\x5e\xf9\x28\xb5\xd0\x3e\xc0\x01\xca\xaf\x55\x43\xfd\xa0\x65\xb9\x75\x84\x86\xeb\x94\x18\x0a\xfd\xc9\x77\x19\x4e\xa8\x67\x98\xa7\x65\xd1\x5f\xb1\x79\xc1\xfb\x14\x4f\xfc\x94\x02\xb1\xbe\x3d\xd2\x55\x98\xca\x69\x06\x69\xd7\xc6\x0f\xd1\x7f\x8a\x19\x01\xed\x05\xc0\x71\x6e\xe2\xdc\x44\xee\xfb\x61\xe0\x99\xe4\xd7\x34\x16\xec\x62\xe0\xc5\xa5\x3e\x54\xcc\xc9\x6b\x68\x5b\xf1\x9f\x52\xf8\xf4\xf3\x2a\xc2\xe4\x85\x25\xa4\x87\xe2\xf5\xb3\xee\xae\xf8\x97\x36\xa0\xd4\xfb\xe9\xc0\x92\x7b\xa6\x03\xba\x38\xff\x8d\x53\x81\x2f\xe3\x50\xf7\x4b\xbe\xf2\x64\x03\xcc\x21\xdf\xd5\x72\xea\xcb\x27\x28\x52\xf0\x71\xaf\x82\xd4\x5d\xad\xdb\x7a\x15\xb7\x07\x07\xd6\x76\xc0\x70\xd0\x31\xdf\xac\x19\x9d\x56\x9b\x4d\xd0\x7e\xbe\xaf\x10\xc6\xd6\x64\xf1\xea\x54\x95\xe6\x38\xc5\xee\xea\x4f\x88\x08\x77\x1d\xd5\x30\x27\x3e\x5b\xf7\x6b\x1e\x8c\xbe\x08\xec\x47\xf9\x13\x9e\xad\x7d\x0f\x17\x8a\xef\xfb\x29\xda\xb8\xc2\x33\xa4\xfc\x03\xc7\x1d\x27\x96\x58\xaa\xef\xd2\x92\x42\x07\xfd\x1d\x0e\x24\x62\xf5\xad\x24\xbb\xea\x35\xac\xbf\x62\x7c\x51\xf6\x0f\x1d\x79\x36\x44\x1f\xeb\x43\x0e\x31\x5a\xf6\x78\xc3\x7d\x5f\x64\xca\xe7\x94\x8b\xf3\x67\x3a\x14\xc2\xc1\x4f\x39\x8d\x23\x19\x41\x78\x7c\x60\xf9\x6c\xdb\x14\x85\x1d\x0c\x65\x46\xa5\xf5\xbf\xf9\xb5\xe2\x12\x5b\x93\x17\x04\xdd\x90\xf9\x97\x1f\xf6\x73\x83\x8d\x47\x92\xf4\x8d\x25\x70\x78\xe9\x8f\x53\x81\x92\xf2\xda\xd1\x51\x7c\xc6\xa5\xb2\xa5\x7d\xd9\x7e\x54\x83\xb5\x29\xb7\xd6\xa4\xcc\x72\xf1\xac\x14\x62\x98\x27\xca\x9d\xae\xc3\x60\x25\xda\x19\x48\x5a\x02\x0e\x22\x5a\x35\xf4\x93\xa2\x68\xf3\xd9\x1a\x45\x37\x2f\x6c\x66\xbb\x53\xbe\x36\x80\xf1\x39\x9a\x39\x77\xd0\x0f\xe3\xff\xc0\xb7\x76\x07\xa4\x73\x48\x3b\xfd\xc0\xa1\xf2\x2b\x76\xc5\xc6\x55\xbd\x5e\x2d\x2a\xb7\xc8\xe7\xe6\x36\x99\x01\x21\xea\x9c\x4d\x43\x86\xa1\x2d\x7b\x36\x2d\x5a\x7a\x0e\xc2\x88\x20\x31\xbc\xdd\x9a\xb0\xbc\x48\xc0\xfc\x4c\xf0\x0d\x82\x07\x52\xd8\xa0\xb1\x4f\xda\xbb\xb7\x5d\x26\xe8\x09\xb5\x94\x4f\xf7\x79\x85\x2e\x3c\xef\xee\xed\xa2\xcd\xb2\xf2\xb5\xd7\x22\xe5\x95\xf1\xa6\xf6\xca\x78\x73\xec\x94\xc7\xb4\x64\x30\xb0\x49\x61\x98\xee\x82\x7a\x64\x83\xae\x8a\x5f\x8f\x31\xdc\x0e\xbe\xd0\x2e\x31\x80\x72\x2d\xee\xfd\xd3\x1c\x6a\xb7\x51\x9f\x06\x34\x94\xcb\x2e\x47\xa7\x33\x2a\x5e\x9d\xd4\x3a\xb7\xf4\x4b\x28\x65\x70\xd2\xc9\xd0\xa9\xe5\x34\xee\x6e\x8c\x76\xbb\x30\xf3\x0f\x77\x79\xf1\xfb\x4f\x6a\x08\x22\x4a\x80\x30\x4a\xbd\xcd\x75\x84\xdb\xc8\xce\xd7\xe5\x26\xd5\xb5\x62\xc5\x42\xb9\x14\xaa\x2d\xe0\x65\x45\x05\xa0\xc1\x42\x31\x8c\xd3\xdc\x92\xdd\x39\xea\xea\xdd\x1d\x8f\x01\xbb\xac\x9a\x9d\x57\x11\xa9\xb0\xa3\xd6\x9b\xa0\x89\x0b\x51\x17\x20\x06\x0f\x2d\x58\xd7\xd0\x82\x75\x0f\xf0\x00\xa4\x12\x47\x2b\x0e\xb8\x4f\x55\xd7\xea\xd3\x26\xdc\xd7\xa2\x89\xb2\x44\xcc\x35\xf0\x30\x4e\x6b\xc7\xcf\xd3\xca\x04\x47\xe4\x8d\x27\x3d\xc3\x09\xcf\x03\x89\xfe\xd7\x95\xb3\xc6\xd7\x11\xcc\xf9\x87\x02\xef\xbe\xa5\x52\x0f\x48\x47\x0a\xc9\xde\x0b\xc2\x9e\x0d\x3c\x8f\x3e\xb4\x49\x41\xc7\x9b\x33\x42\x75\x10\x26\x3c\x7e\x3c\x72\x76\x77\x41\x62\x75\x43\x8d\xab\x4d\x66\x16\xaa\xc0\xa1\x71\x97\xdc\x93\xe2\x37\x4a\xd7\x36\x2e\x96\x91\xb3\x62\x21\xfe\x11\x5d\x13\x9f\xd3\x81\x6f\x97\x9c\x73\x53\x82\x9e\x4d\xaa\x84\x51\x38\x00\xb2\xb5\xd4\x36\x53\x25\xde\xbf\x5f\x0e\xa9\x67\xe5\x30\xcc\xb3\xb3\x72\x2a\xd4\xdb\x7d\xfb\xa7\x5d\xb1\x48\x57\xe3\xea\x2b\xaf\x41\xfe\xb3\xb1\x6a\x6e\x7e\xff\x7c\x3b\xec\xb3\x85\xd7\x0c\x3f\xbc\xbb\x78\x0a\xfc\x46\x9d\x03\x61\xba\x92\xd3\xbc\x15\xb7\x95\xa7\xb4\x48\x32\x4f\x8d\x34\x68\x8b\x27\xe6\x22\x4c\xa4\xf5\x93\x13\x33\xd8\xa1\x1a\xd2\x9c\x23\x0a\x98\x0a\x7f\x04\x4d\x39\x1e\x19\x38\x03\x39\x67\xd9\xc9\xf5\x26\x0e\x9d\xa9\x8e\x6f\xa4\xa6\x59\xb7\x0a\xe1\x9c\x9c\x02\x01\x70\x6a\xec\x79\x48\x0e\x45\x1f\xcc\x3f\xa4\x18\x30\x2b\x69\x96\x43\x31\x5b\xac\x97\x15\x0e\x13\x8d\x0b\x37\x5c\xaa\x82\xb9\x50\xad\x69\xff\xb0\xaf\x1b\xae\x1c\xfd\x4b\xa8\x98\xe1\x24\xbe\xa7\x8f\x65\xde\x8f\x22\xe4\xe7\xbf\xc6\x30\x36\xab\x36\x63\x13\x1c\x67\x44\x7c\x68\xda\x49\x52\x56\x39\x97\x8c\xb9\x7d\x13\x16\xbd\x51\x34\xff\xae\x2b\x1b\x99\x30\x4e\xcb\xa2\x46\xbf\x45\x6b\x48\x73\x71\xb1\x46\xaf\xd6\xba\xb3\xde\xe7\xe3\x94\x92\xc2\xb2\xdd\x42\xf3\x9a\x95\xe4\x05\x21\x64\x37\xdf\x50\x30\x64\xa7\x5c\xdd\x72\xe2\x80\x70\x54\xe6\xd7\xaa\x07\x1e\x96\x71\x51\x66\x76\x52\x67\x50\xb7\xbd\xde\xce\xff\x01\x5c\xaa\xa0\xe7\x14\x0d\xe9\x5a\xe3\x91\xc9\xf6\xf5\x13\x6a\x88\xb4\xae\x0f\xed\x53\x08\xa0\x38\x75\x6e\x05\xda\x30\x65\x31\x0a\xa3\x62\x52\x51\xb6\x3e\x18\x29\xcf\xcf\x6f\x6a\xcf\xcf\x6f\xa2\x13\x26\x0a\x54\xe3\x59\x56\xb7\x4c\xbb\x56\xc6\x4a\xb8\xc7\xc7\x55\x4c\x38\xae\x36\x57\x46\x05\xdc\xec\xac\xb3\x9a\x54\x0d\x89\x73\x5a\xdc\x8a\xda\x1f\xc2\x46\xc1\x4e\xb9\xae\xec\x96\xde\x0a\x14\xb3\xeb\xae\x13\x17\x59\x34\x49\x62\xf1\x01\x4e\x8d\xba\xfa\x39\x19\xe6\x7a\x99\xd4\xdc\x0c\xec\xc3\x34\x10\x45\x9b\x84\xf5\xa0\x90\x08\x6f\x06\x4a\xc9\x11\xf2\xfd\xc8\x7c\x6e\x6b\xea\xce\xbb\xe8\xea\x08\x39\xcf\x1f\xb2\xc8\x0a\x51\x16\xff\x98\x0a\x33\xfe\x0c\x65\x85\xb2\xa3\xa3\x86\x4a\x6f\x36\x51\xb6\x6c\x0e\x19\x0f\x1e\xed\x35\x29\x89\xfa\x00\xfa\x45\xb9\x55\x48\xb2\xef\x2b\x09\x57\xee\x33\x0b\x97\x7f\xeb\x1c\x72\x76\xb6\x3d\x4c\x87\x13\x5a\x6f\x7a\xa4\xc8\x9c\xaa\x27\xe7\x1b\x84\x2b\x51\xbc\x98\x41\xdb\x48\x16\xe8\x24\xbe\x0f\x23\xf6\xe9\x66\xe0\x08\xde\xbe\xa6\xba\xd5\xa7\x54\x95\x93\x2e\xdb\x2c\x36\x43\x0c\xfe\x44\xf2\x55\x77\x90\x4e\x36\x9d\xf8\x45\x9f\x0c\x33\x26\xd4\xb4\xe1\x36\x45\x0d\xd4\x33\x3f\xa8\x4b\x67\x7a\xcd\x96\xc5\x28\x21\x19\xda\xea\x21\x63\x12\xf0\x96\xe2\xcf\xbf\xa5\xe0\xc4\x0b\xd5\x1a\xcd\x1f\xae\xaa\x14\x1e\xe6\xa9\x74\x88\xed\x5f\x91\x5a\xa3\x0b\x80\x66\x09\x57\x55\x28\x84\x7e\x14\xa8\x4e\xe3\x86\x12\x60\xfe\xca\xdf\x56\x93\x9d\x9d\x84\x52\x13\x47\x11\xba\x6e\xfe\x75\x25\x77\xad\x79\x68\x7d\x13\x65\x48\x60\x84\x35\xdd\x52\x74\x6a\xff\x5d\xe3\xa8\x28\x62\xfb\x68\x15\xd9\x00\xc3\x98\xe8\x78\x65\xbd\xa3\x81\x4e\x07\x02\xe5\xe4\xbe\x49\x1d\x67\x3c\xf7\xdd\x74\x9d\x0e\xe4\xa5\xbc\xa3\xab\x7b\x81\xfd\x0a\x45\x45\x1e\x6c\x8c\x7c\x53\xf3\x7e\xcd\xa6\x29\x50\x95\x30\xdb\xfa\xe2\xf8\x38\xcc\x0f\x5b\x49\x5b\x3b\x21\xdf\xa8\xb0\x93\xaa\x00\x3c\x4e\xcd\x36\xc6\x50\xf0\xe9\xc9\xff\x43\xb7\x4a\xd0\x15\x4f\x2a\x6a\x48\x1c\x47\x49\x0f\xd9\xdb\xcc\x41\xd1\x97\xa6\x6f\x22\x5a\xd3\x0f\xa2\x35\x0f\xb3\x34\x1f\xda\x90\x70\xd3\xbe\xec\x3d\xef\xf5\x7f\xff\xa3\xf3\xca\xe2\xc6\x74\xfb\x36\xa7\x69\x77\xcb\x69\xb0\xdc\x57\xf2\xf3\xf7\x11\xfd\x78\x9f\x3e\x93\xff\x6d\x0a\x2d\x48\x6e\xee\xd1\x1d\xc7\x32\xd9\x03\x21\x45\x19\x2e\x52\x25\x8e\xea\x93\xc5\x4e\x64\x74\x5e\x7d\x61\x3c\xa4\x5d\x18\xb5\xb2\x4f\x57\xf5\xdd\xee\xfd\xce\x9e\x35\x95\x89\xdf\xa6\x41\x03\xee\xfd\x66\xa0\x24\x98\xb7\x77\x70\x13\x41\xed\xdb\xd6\xa9\xc9\x7c\xb6\x66\x67\xef\xfd\xce\x93\x6b\x9e\x6d\xf1\x08\xa6\xc0\x0e\x16\xed\xfa\x6f\x3f\x83\xa3\x00\x2e\xe0\x38\x55\xff\xc2\x37\xa6\x75\x85\xf4\xbe\xd5\xa1\x83\xd8\x69\x12\xcf\xef\x9f\xe7\x51\x14\x83\x66\x78\x02\x4a\x20\x46\x07\xba\x73\xe8\x96\xef\x11\xac\x4a\xf0\xbb\xad\x17\xe5\x97\x5b\x9d\x2d\x3a\x7c\xcf\x55\x89\x5e\x4b\xe3\xb1\x6a\x18\xac\x06\xa5\x24\x11\x30\x62\xba\xa9\xcc\x2b\xd4\xec\x62\xac\x52\x7b\xb6\xbd\x18\xbd\xaa\x1d\x7e\x82\x1a\x37\xd9\x87\x91\x7e\xd9\xb3\x31\x6b\x56\x61\x56\xf1\x07\x98\x04\xf3\x9b\x26\xd7\x58\x09\xf9\x2d\x4f\x1a\xe4\xd4\x56\x46\x04\x8f\x38\xbc\x4c\x66\xba\xd0\x33\x44\xc8\x7d\x4f\x6b\xaa\xbf\xa7\x8e\xfa\x22\x4b\x8b\x82\xf4\x4d\xe7\xbd\x39\xe7\x3e\x6f\xce\xe9\x0c\x54\x16\x92\x9a\x81\xc9\x39\x6d\x60\x72\x4e\x0d\xbb\x09\xf5\x8b\xf3\x02\x50\xec\x5f\xa8\xdc\xea\xa2\x22\xaf\x1f\x1b\x6b\x13\x54\xb7\x3c\x8d\x57\xc3\x34\x49\x07\x51\x28\x18\x1e\x54\x60\xa7\x75\xef\xf1\xf4\x18\xdc\x1a\x0e\xb2\x69\x92\x97\xb1\xd7\x90\xc5\xce\xd9\x49\x49\x13\xf2\xe4\xed\x34\xad\x90\x9c\xd8\xe7\x73\xbd\x74\xa8\x05\x81\xd7\x3d\x0e\xe2\xff\xef\x9d\xa1\xb2\x34\x5c\x02\xfd\x13\x5f\x80\x69\x6e\x32\x94\x6d\x39\xcf\xfe\x56\xc7\x97\x5a\xeb\x2a\xbb\x59\x28\xf3\xd5\x29\x25\x33\x8b\x05\xc8\xc0\xa1\x91\x6f\xce\x41\xf5\x05\xcf\xf4\xc8\x48\x71\x5f\x8f\xa9\x49\x47\x5e\x86\xa1\xb5\x5d\x02\x59\x79\x94\x84\xc7\x2a\x9e\xa0\x3f\x82\xe8\xc9\x35\x1e\xe6\xac\x10\xc7\xe5\xff\x18\x17\x80\x7a\xe1\x40\x3b\x4a\x92\x74\xd9\xb8\x00\x87\xaa\xeb\x13\x65\xfb\xfa\x49\x53\x3b\x35\x4c\x07\x58\x71\xce\x89\xdb\xeb\x3d\x35\x5a\xba\xa4\x8b\x55\x96\xc9\x96\xbf\x62\x09\xee\x01\x8f\x5e\xce\xd6\x64\x4a\x4e\xd8\x29\x12\x6a\xcc\xc7\x38\xfc\x7c\xbe\x1d\x47\xb9\x13\x9c\x16\x1b\x32\x05\x32\xda\x50\x27\x67\x95\xed\xed\xae\x6e\x17\x3a\xbe\x2c\xce\x8d\x88\xb4\xa9\xe6\x96\x0c\x7a\x47\x2f\xff\x63\x9d\x4b\x5c\x51\x5e\xc5\xd7\x47\xaa\x41\x0f\xec\x2b\xca\xa3\x4b\x81\x42\x24\x9d\xd4\xbc\xb2\x6d\x9d\x3d\x8e\xa4\x66\x06\x69\xf5\x7d\x27\x54\xbb\xf0\xda\xc8\x73\xe3\x01\xd6\xe7\xe6\xfc\xe8\x61\xe5\x31\xf4\xb4\x5f\x5a\x57\xb5\x67\xe5\x11\x9c\x16\x78\x73\x8f\x8f\x55\xe7\x41\x59\xc5\x5e\x84\x85\x8b\x88\xca\x68\x1c\x43\x85\x1f\x57\xc7\xc0\x72\x2c\xee\x35\x22\x3d\x6f\xe2\xd0\xc1\x25\x9d\xc0\xa8\x4c\xd1\xcc\x67\xdc\x94\x9a\x22\xb8\x60\x82\xaa\x20\x83\x7c\xe8\x04\x45\x70\x88\x67\x6d\xa8\x2e\xe9\x7d\xdc\x54\x97\x69\xba\x2e\xc7\x51\xec\x03\x84\x11\x8c\x72\xf1\x4c\x76\xe2\x60\xc4\x93\xfb\xd3\xc0\xd3\x94\xef\xab\x74\x3e\x33\x99\x85\xec\x21\x3a\xc3\xdb\x69\x87\x22\x35\x3a\xa2\xd2\x24\xb6\x9e\x40\x8f\xfa\x16\xa7\x12\x72\x01\x4d\xae\x55\x5d\x6b\x62\xe9\x61\x34\xb9\xa9\xf9\x71\x41\x37\xca\xb3\x72\x08\x43\x32\xaf\xf7\x0b\x2f\x58\x7e\xdd\x34\x71\x25\x61\x5a\x5e\xfa\x8a\xb1\x32\xef\x4e\xbc\x06\x9e\xba\x59\x31\x55\x9c\x99\x77\xcd\x3b\x2f\x5e\xbd\x93\xba\x85\xae\x77\x72\x68\x9a\x1f\xf1\x91\x91\x12\x30\xb8\xa0\x04\x13\xbb\x51\x1e\xa6\x45\xdf\x7e\xa5\xd4\xd9\xce\x59\x64\x0b\xfc\xa6\x91\x10\x57\xc6\x52\x9a\x68\x57\x0e\x31\xe7\xf4\x2c\x2c\x28\x52\x0d\x6c\x52\xec\xd6\xcd\x13\xa0\x8c\xc4\xd3\xa0\xfa\x55\x7c\xe1\x1d\x48\x36\xf0\x84\x4e\x8c\xb4\x9c\x3c\xdd\x78\xe4\xe4\x57\x34\x97\xff\xd1\x35\x65\x93\xcd\x4c\x1a\x7c\xc8\x95\x40\x69\x04\xff\x85\xd3\x3c\x8f\x9f\x1b\x02\x64\x8e\xfb\xc4\xd3\x69\x7e\xb3\xa6\x7c\xce\x2c\xba\xcb\x7e\x06\xfc\x6f\x02\xef\x4a\xf0\x6f\xc6\x85\x51\x5e\x38\xd0\x5e\x34\x51\x2c\x51\x49\x04\x74\x94\xcd\xf0\x79\x05\x46\x7f\x25\x8d\x92\x22\x46\x97\x18\xc7\xd7\x11\x2d\x2d\x77\x24\xf0\x3a\x5d\xe0\x50\x4d\xd1\xf7\xc4\xa9\x7b\x1e\xad\x7a\x24\x7a\xaf\x2b\x49\x4b\xc4\x12\x31\xcd\xaa\x56\x03\xff\xcc\xd8\x53\x9c\xdf\x3f\xdf\xce\xad\x65\x27\x10\xec\x55\x4c\x03\xd4\x78\x65\x86\x7b\x33\xe3\x04\xc3\x43\xd3\xcf\x93\x91\x89\x3b\x47\xf8\x07\x03\xdf\x49\x3a\xef\x6c\xee\xc9\x0e\xb3\x17\x91\xcb\x3f\x0e\x6f\x29\x2a\x3d\x85\x18\x9d\x7b\x61\x93\xca\x6f\x8a\x0f\xd4\xa2\xc9\xec\x44\x95\x2f\xcb\x91\x53\xfd\x22\x6a\xcc\x5b\xf4\x54\xc4\x4c\xdd\xe7\x3e\x79\x34\x88\x62\x93\x4d\x61\xdd\x39\x53\x3d\x1f\x39\xaf\xd0\xb5\x8a\x16\xa7\x27\x6d\xbc\x49\xf1\x47\x86\xcc\x8f\xa9\x05\x31\x30\x49\x97\xfc\xe1\x51\xf6\x7f\x06\xd5\xad\x93\xc6\xf6\x54\xa3\x4f\xb0\x8b\x01\x29\xc0\xae\x94\x38\x53\x5d\x2c\x4e\x95\xaf\x2a\x54\xfa\x67\x10\xe7\x50\x4f\x3d\xbc\xa6\x44\xbb\xee\x07\xb5\x1c\xb0\xda\xf8\xe8\x39\xc2\x2a\x0c\x61\x7b\xf7\x5a\x43\xf8\xfa\x7f\x1f\x0e\x35\x20\x1f\x17\x4c\x58\xd8\x2c\x32\x13\x8a\x17\x82\x19\xa9\x58\xb2\xfa\x3b\xff\x81\x2a\xdb\x32\x1b\x71\xe8\xc3\xd5\x3d\x44\x5f\x9a\x5f\x8f\x51\x37\xaa\x04\xa1\x1b\xe5\x43\x9b\xe5\xb2\x5d\x5c\x85\x50\xdd\x52\x71\x2d\x51\x02\xa2\xd4\x74\xd0\x7e\x1c\x47\xb1\xb3\xa4\xcf\xd6\x00\x3a\x58\xb4\x5d\x85\xfd\x6c\x3a\x0f\x24\xa3\x5e\x8e\x92\x2d\x06\x25\x2c\xfc\xce\x6f\x1c\x03\x74\x31\x33\x03\xe8\xd7\xba\x73\xbe\xba\x08\x3c\x68\xa0\x53\xd1\x78\xb9\xdd\x40\xae\x9d\xaf\xb2\x28\xf7\x39\xf8\x03\x37\x95\x11\xdc\xcd\x60\xab\x30\xce\xcb\x2f\xb7\xed\x60\xc1\x64\x99\xc9\x73\x27\x21\xe9\x92\x6d\x9f\x78\x3b\xef\x12\xb6\xd6\x1f\xa4\x99\xdd\xd1\xda\x37\xb7\x79\x5c\x7f\x8d\x1b\x6a\x94\x7a\x18\x47\x3c\xf8\x47\x87\x31\xc1\x11\x4c\x5b\x75\xb7\x90\x34\x7c\xa6\xb3\xf5\xc9\xcd\x1c\xa4\x11\xda\xb2\xf5\x34\x43\x2c\x4d\xc8\xc0\xf1\xeb\x9a\x26\xaf\x49\xc2\x7e\x94\x93\x88\x84\xab\xad\x90\x80\xc8\x8c\x6b\x2c\x36\xbd\x70\xa0\xbd\x60\x0b\x43\xc3\x50\xb1\xdd\x68\x89\x4b\xcf\x7f\xce\x09\xaf\x0c\xff\x1b\x64\x0a\xa3\x2a\x30\x51\x8e\xcb\xa7\x14\x2b\x01\xd3\x35\x8a\x2a\x70\x03\xc5\x35\xb6\xa6\xeb\xbe\x17\x4b\xca\x28\x90\x2a\x19\x0a\x8b\x3a\x72\x6c\xc3\x22\x4b\x07\xa6\x97\xd8\x22\x9f\xf0\x29\xdc\x91\x91\x9e\xf0\x28\x49\x85\x2b\xce\x39\x24\x4c\x93\x6e\x19\x52\xe4\x3c\xe4\x8d\x27\x7c\x34\x38\xaf\x3a\xe5\x19\xe5\x20\x03\xba\x77\x88\x55\xc7\x55\xdc\x3a\xae\x03\x9e\x89\x97\x05\xb3\x8c\x08\xc7\x32\x7b\xfc\x46\x7b\xd6\xa4\x79\x11\xc5\x76\xa7\x82\xc2\x8f\x54\x9f\x77\x3d\x50\xbd\xe1\x75\x0a\x59\x98\x28\x9c\x54\x8a\x36\xbb\x3a\xaa\x0b\xcb\xea\xe6\xd2\xcf\xf2\x08\xe0\x38\x1d\x2c\x44\x10\xe2\x11\x85\x79\xba\x26\x7e\xe3\x6e\xc9\xa0\xcc\x81\xb6\x68\x29\xbb\xad\x33\x5a\x62\xf6\xcc\x58\x02\xb5\x8f\x14\x84\x96\x2d\x80\x88\x48\x57\xfe\x38\x50\x44\x30\xa6\x67\xcb\xba\x76\x52\x11\x2c\x3b\xe4\x3b\xab\xbb\x3b\xaa\x9b\xb9\x7b\xad\xa9\x9e\xc9\x6c\x98\x66\x5d\x74\x5a\x67\x74\xda\x3a\x57\x13\x21\x16\x59\x8d\xcf\x2a\xb9\x84\x5e\x84\xca\x5e\x1f\x7d\x88\xa3\xdc\x19\x0b\xfc\xf0\x60\x3c\x28\x57\x91\x3c\xca\xc2\xcc\x2c\x82\x53\xa9\x29\x8e\xfc\xfa\x81\xdd\xac\x30\x1d\x70\x8f\x83\xbf\x2e\x00\x60\xdf\xc6\x4d\xe2\x37\x5b\xf1\xb7\x7b\x67\xda\x87\xa6\x19\xc2\xc8\xf4\xf5\x91\x9f\x42\xe3\x6b\xb2\x74\x1e\x5d\x84\xc8\xcb\xd6\x9c\x99\x72\x1b\x96\xd5\xfe\x9b\xf0\xf0\x1a\xd0\x5a\x70\x60\x9d\x1e\x29\x96\xf4\x85\xb1\x2d\x2c\xd7\xbf\x18\x47\xd4\xef\xad\xae\x96\xed\x11\x46\xbe\x37\x8b\x78\x86\x95\x74\x5b\x49\x74\x27\x26\xef\x9a\xaf\x4c\x7a\xbf\x87\x23\xda\xef\xe1\x88\x96\x5b\xbb\x32\xf2\x2d\x8b\x2b\x6a\xd7\xb1\x85\x0e\x35\x94\x9c\xc5\x4d\x55\xcf\x8b\xc5\xcd\x1e\x55\x9a\x25\x25\x69\xc4\x38\x25\x7a\x8e\x4f\xe2\xd6\xd3\x94\x79\x55\x49\x3c\x9d\x96\xf8\x26\x67\x14\xae\xe8\x4c\xe0\x49\x2f\x99\x74\xf6\x79\xb6\x10\x78\x32\xde\x6d\x6d\x50\x3d\x2e\xf5\x3c\x73\xb0\x1d\xda\xac\x88\x16\xa3\x50\x7a\x4a\xe2\x49\xda\x52\x5a\x4f\x4d\xd7\x36\x8c\xcd\x2a\xc1\x11\xd0\x25\x3a\xa9\x27\x7d\x1f\x2a\x24\xc8\x1b\x63\xbf\xfd\xf2\xcb\xed\x3c\x8e\x06\x00\xf9\xe1\x0c\xbf\xaa\x84\xcc\x00\x9e\x41\xda\xfe\xd6\xd8\x33\x67\xae\x29\x44\xe0\xac\x1e\x6b\x1d\x53\xa9\x21\xb4\x5e\xb1\x16\xfe\x6c\xe4\x47\x9a\x24\x2f\xa2\xce\x79\x94\x9d\xe2\x81\xeb\xe1\x50\xd1\xc0\x4c\x91\xf8\xff\x39\xac\x40\x66\x68\x05\x24\xaa\x1b\xa8\xfa\xf0\x08\xd7\x87\x92\x3f\x7b\x28\x9d\x45\x0b\x0b\x75\x9b\x18\x92\x68\x15\xb2\xbb\xa3\xa7\x15\x34\xc0\x4b\xf2\xe6\xc4\x57\xc6\x96\xba\x14\xd4\x9a\x0d\xad\xbd\x7b\xb9\xb1\x7e\x5c\x7b\x09\x1c\x47\x03\x5d\xa8\x60\x7e\x87\x95\x89\x59\x36\x51\x0c\xb7\x98\xfd\xd3\x5e\x1e\x7c\x9f\xe7\x56\x7a\xf6\xa5\x7d\x75\x18\xc3\x1d\x80\xbb\x6e\x92\x2d\xd3\xf7\xe5\x37\xae\x13\x36\x88\xe2\xae\x12\x67\x84\x3d\x2d\xbf\x1e\x2b\x48\x5f\x7e\xb9\xbd\x18\x25\x5d\x5a\x60\x0e\x26\x72\x68\xda\x79\x32\x78\x85\xfd\x74\x31\x2a\xb8\xef\xc1\xf4\x8f\x91\x12\xcf\xb8\xad\xf2\xb2\xef\xa9\x4e\x6a\x98\x0e\x6c\x17\x4c\x59\xd4\xb2\x80\x3e\xa3\x46\xe1\xbe\xa7\x28\x6a\xf9\x08\x90\x97\xc3\x61\xbc\xba\x93\x6e\x31\x7e\x94\xdd\xac\xc0\x02\x78\x9d\xba\xcd\x1a\x39\x81\xde\xce\xeb\x18\xfd\xa1\x0d\x79\x11\x87\x07\xbf\xa1\x65\x27\x63\x10\x07\x36\x8d\x7a\x51\xd7\xf9\xce\x3b\xee\xad\x4b\x90\x6b\x5f\x7f\x39\xea\xa5\x3c\xfb\xc5\x30\xe6\x47\xda\xe7\xf5\x98\x8a\x65\xdc\x0d\x15\x2f\x48\x77\x44\x12\xfb\x71\x5c\x42\xc7\x81\xf3\xb5\x84\x4e\x9e\x56\x45\x57\x57\x6d\xfc\x13\x6a\xe3\x9f\x50\xed\xb1\xc5\xd8\xac\x80\x20\x27\xe6\x75\xd5\x22\x12\xef\x3a\x6f\x6d\x6e\xb6\x7e\x34\x00\xb8\xc2\x11\xf0\x8d\xd0\x22\x4d\xe3\x49\xa5\xb6\x7a\x54\x69\x13\x7f\x3b\xf0\xed\xc0\xf7\xb0\xdd\xb8\x7b\xe6\xa8\x7e\xab\xc6\x2c\x98\x89\xd6\x97\xbf\xc0\xfd\xbf\x8f\x47\xfe\x3b\x70\x42\x83\x03\xfd\x6a\xb3\x59\xdc\xaa\x35\x59\x9c\x32\xf0\x56\x94\x59\xfc\x40\xeb\x9c\x6b\xa3\xe7\x51\x5e\xc6\x82\xce\xab\xc9\xec\xf1\x1b\xb5\x83\x56\xfa\x51\x16\xaf\x44\x49\x17\x4a\x68\xce\x71\xc4\xbb\x8f\xb8\xeb\x8f\xad\xcd\x56\x09\x43\x82\xea\xe7\xb1\x8e\x52\x1d\xbf\xa0\x46\x65\xd0\x13\x45\x2c\xbd\x3a\xaa\x65\x7c\x61\xc1\xa6\x64\xf8\x13\x0c\xe4\xe0\x37\x6a\xd2\xd5\x8d\x16\x17\x6d\x66\x93\xd0\x32\x36\xdb\x39\x33\xb9\x8e\xc0\x15\xe5\xb0\xf1\x76\xf0\x84\xc2\x1b\x0d\x16\xa0\x24\xac\x39\x79\x54\x14\xa8\x8c\x70\x46\x33\xfe\x1c\xfd\x4f\xcd\x9e\x6d\x8c\x2c\x9d\xb9\x80\x0a\xad\xf4\x73\x2d\x04\x7e\x4a\xa1\x97\x4d\x36\xd8\xa9\xd4\xec\x2e\xaa\x0b\x3c\xe1\x65\xba\x5a\x90\x6d\x46\xd2\xf1\x04\xa6\x48\x1a\x1f\x87\x74\x69\x73\xa4\x4a\xe5\x09\xa7\x6e\x92\xdb\xaf\x94\x16\xad\x67\xc1\x83\xd4\xe9\x25\x6e\xaa\x9a\x32\x0e\x02\x9f\x09\xaa\x0b\x2a\xdd\x1f\x07\x5e\x0b\x7d\x0d\xd9\x31\xfa\x5b\x1b\x8a\xd7\x6e\xe2\xc8\x26\xe4\x6e\x39\x59\xed\x1a\x99\xc6\xd1\x9f\x74\x6a\x65\x0e\x90\xc3\xbd\x26\x9c\x8c\x3f\x57\x47\x4a\x37\x0d\xcb\xaa\xbe\xcb\xe9\xaf\x20\x2b\x3c\x8b\x1e\x0f\xbf\x19\xd5\xe8\x07\xca\xbe\xe5\x9a\x52\x87\x2e\x93\xdc\x16\x05\x75\xa0\xaa\x5f\x95\x8e\x62\xf5\x37\xa5\xa1\xa8\x19\xed\x8b\xb6\xbb\x43\x6b\x84\x04\x75\x2d\x38\xad\xd5\xe4\xcf\x89\x1f\x8f\x6a\xa8\x7d\x85\xe6\x7f\xc4\xc5\xa9\x38\x4e\x57\x5a\x3e\x64\xa3\xd1\xc2\xaf\xeb\x2a\x1a\xc8\x0f\x31\x82\xfe\xc7\xac\x51\x52\xfd\x30\x26\x4f\x17\x75\x03\x20\x02\xdd\x7a\x9f\xf0\x0c\xc0\x8c\xc6\x89\x71\xab\x26\xde\x2a\x53\xad\x30\x12\x1d\x6f\xe7\x2a\xe4\x4c\x2e\x6e\x6b\x21\x87\xa9\xce\xd6\xc2\x5b\x12\x50\x5b\xf4\x09\xc6\x36\xe1\xf9\x0d\xd7\x55\x9e\xff\x0b\xed\x0d\x76\x5e\x0d\x83\x96\x8d\xe8\xa3\xa1\x17\x86\x32\x9f\x5f\x3f\xa0\x35\x50\x92\x9e\x8e\x6f\xbb\x70\x1b\x96\xdf\x28\xd5\x27\x98\x2f\xb7\x9c\x46\x22\x0a\x42\x7e\xdd\x90\x57\xd5\xbc\x27\x69\x21\xf3\xf4\x2a\xf0\x3c\xfd\x6f\xad\x8f\xcd\x48\x29\x9a\xa6\xd5\x19\x27\xf0\x1e\xa6\x6d\x05\xfe\x36\x8e\x77\x87\x0f\x4d\xbf\x44\xd8\xc9\x96\x6f\x25\x9e\x53\x47\xf6\xb9\xb1\xb9\xe0\xde\x99\xf6\xc0\x16\x59\x4a\x88\x7b\x53\x1b\xc6\x8e\x34\x91\x6c\x6b\xe6\xf1\x2c\xe9\x1a\x27\x13\xbe\x25\x72\xbd\xe6\xf4\x59\xab\x4e\x9b\xb4\x25\x4c\xaf\xe7\xfa\x91\x8c\xb2\xa6\x0b\x45\xa6\xfb\x93\x5a\xc4\xd8\x0a\x9c\x99\x9b\x6b\xa7\x8b\x8b\x24\xd0\x8a\x03\x70\x82\x94\x1e\xb0\x9c\x74\x8e\xfa\x09\xae\x43\xa4\xbb\xaa\xbc\x43\xa2\x48\xb5\x8f\xd0\x89\xfb\x58\x35\x7b\x17\x52\xb2\x14\xad\xfe\x1a\x2b\xa9\x52\x52\x27\xaa\xaa\x0d\x8c\xdc\x45\x6b\xb2\x3c\x1d\xd8\x96\x92\xce\xc5\xac\x50\x44\x63\x1a\x4a\xca\xd8\x86\x45\x99\xd9\x0c\x52\xfb\x18\x9a\x5d\xa3\xeb\xe6\xd7\x35\xed\x8b\x68\x90\x3f\x44\xf7\x09\x00\xf4\x5b\x74\x6f\xf0\x65\x2f\x6a\xfb\xb2\xdb\x14\xcb\x11\x9a\x41\xe2\x42\x68\x99\x44\xfc\x66\xf5\xae\x40\x8d\xd6\xbe\x0a\x48\x80\x08\xaa\xd0\x57\xc0\xe6\xff\x54\xb5\x36\xfa\x26\xeb\x92\x06\xcd\x8b\xfb\xa7\xf9\x5e\xae\x6b\x62\x3e\x54\xef\x01\x19\xb8\xd5\xa8\xbb\x37\xcc\xec\x20\x2a\x07\xad\x2a\xd1\xd6\xa8\x40\x39\x1e\x1e\xad\x21\xfa\xf2\xc7\x94\xfb\xe5\x61\x05\x7b\x11\xec\x04\x90\x9d\x47\xd1\x37\x73\x87\x74\x75\x41\xe8\xcb\x5c\x55\x5d\xa3\xa9\xb5\xd6\xe7\x5f\xe4\x2f\xf5\x93\x91\xb7\x64\x65\x30\x8e\xdb\x23\x33\x07\x9d\x6b\x0b\xdd\x06\x74\xf1\xcf\x10\x48\x11\x57\x82\x40\x8a\x01\x01\xab\xf2\x21\xa9\x79\x83\xd6\x08\x5f\x6e\xd3\xe3\x5e\xb1\x76\xc9\x25\x45\x42\xf8\xf0\xec\xc9\xab\x2a\xe3\x1e\xa6\xb1\x49\xba\x53\xea\xa4\x62\x73\x47\xa4\x05\xe0\xbe\x09\x37\xcf\x0f\x25\xa1\x2c\x88\xb3\xe0\x48\x93\xfa\xf6\x72\x64\x57\x38\xbe\x09\xa3\x49\xb1\x9b\x34\xa1\xd0\xc4\x71\x9a\x26\xd4\x9c\x12\xac\xad\xaf\xd2\x19\x73\xa1\xde\x48\x2c\xe2\x42\xd5\xc1\x73\x5f\x54\xd6\xf0\xd5\xb5\x01\x30\x30\x6e\x51\xf1\x6c\x7b\x60\xb2\x25\x0b\x64\xc1\xdc\xdc\x81\x4d\x26\x09\x53\xe3\xf1\xe8\xe3\x6b\xae\x09\x79\xf4\xa9\x31\xf7\xba\xfd\xd3\xc4\xde\x72\xf3\x6b\xdc\x8b\x93\xea\x1e\x69\x2f\xfc\x3c\x45\x06\x2d\x4b\xf5\x84\xc6\xda\x9e\x18\x3d\x19\x6d\xad\x19\xb7\x68\xb6\x43\x6e\x4f\xec\xff\x1e\x57\x04\x29\x53\xe5\x81\x39\x4e\x73\x94\xed\xbf\x08\x94\xe9\x2b\x50\x1a\xe8\x5d\x5c\x0b\x94\xaf\x22\xef\x38\xb7\x06\x1d\x51\xe8\x9a\x3a\xcc\x96\x1c\x9b\x10\xb1\xf5\x7e\xe0\x25\xb5\xce\x2b\x29\xeb\x1f\x29\xdc\x27\x56\x24\x3e\x5d\x73\xb9\x16\xa3\xbc\x6f\x59\x08\x02\xd9\x24\xbc\x10\xf9\xf5\xda\x63\x0a\xa1\x5e\x54\x25\x3d\x7d\x7d\x3c\xe0\x8f\x75\x1a\xfc\xf1\x58\x5f\x65\x76\xb6\xdd\xb5\x0b\x72\x86\x72\x3b\x4d\x61\x71\xcf\xab\x45\x4e\xd3\xb7\x9c\xba\x1c\xd8\x73\x77\xd4\x01\x8d\x8a\x57\xc6\xb6\xe3\xcd\xc0\x76\xde\x8f\x06\x03\x2f\x0a\x2b\xe2\xc4\x2a\x97\x7a\x4b\xf1\x50\x17\xcb\x57\x22\xaa\x1a\x30\x63\x84\x20\x01\xbf\x1e\x2b\x61\x0e\x4d\xcf\x90\xb1\x79\x94\x84\xd2\xfb\x11\x55\x5d\x1f\x51\x8e\x63\xdd\xe0\x46\xbc\xd3\x44\x60\x5e\x31\x71\x6c\x8b\x96\x1f\x01\x9f\x51\x54\xb1\x33\xae\xa4\x5c\x30\xe1\x12\x79\x39\xb4\x3c\x6d\x06\x9c\x40\x7e\xad\x16\x6f\x91\x95\x96\xd2\x53\x34\x62\xb6\x91\xfd\x2e\xe2\xe0\x6d\x95\x11\xbc\xa3\xe6\x12\xff\x62\xec\xd0\xae\x8e\xab\x2a\x33\xa7\x47\xe4\x4e\x79\x05\xbf\x92\x24\xb2\x5f\x0e\x4c\x62\x26\x3c\xbf\x6c\x53\x8d\x89\xcf\x6b\x51\x9e\x1d\x9d\xa7\x55\x5b\x64\x91\x98\x94\x64\xbf\x01\x34\x8f\xf8\x9e\xd3\xad\xd4\x7e\x5e\x28\xff\x6f\x8d\x14\x4f\x7f\x43\x41\xa7\x06\x26\x8a\x6d\xc6\x65\x95\x00\x87\xe8\x8f\xb0\xc8\x51\xa0\xd4\x51\x5e\x1e\x7f\x06\x33\xed\xbc\xac\x16\x09\xd7\x97\x38\x16\x98\x09\xc5\x6f\x5c\xc9\xb8\x98\x66\x3d\x90\x15\xc5\x81\xab\xba\x40\x01\xed\xb6\x9c\x78\xde\x07\x75\xd5\x08\xcd\x39\x88\xed\xca\x44\x6b\xff\xfc\xe6\xd4\x9a\x87\x08\x02\x24\x84\x62\x79\xf7\xd8\x90\xa5\x4a\x3a\x0b\x1b\xb3\x0d\x9c\x4c\xd9\x15\xc7\x72\x43\x7b\x6d\x5a\xcb\x9c\x06\x76\x0c\xa2\x27\x8e\x9f\x63\x1d\x25\x41\x8b\xf8\x53\x05\xd8\x51\xfe\xf7\x91\x4a\x3c\x7f\x5f\xf9\xa2\xdb\x64\x39\xca\x52\xb2\x6a\x9d\x20\x48\x36\x0a\xe5\x2b\xea\xef\xc0\x9c\x4e\x9a\x60\x8f\xab\xa7\x1d\x2d\x46\x19\x62\xc4\x9c\x76\x08\x71\x90\x3c\xc5\x79\x08\xfb\x26\x4a\x76\xd0\x95\x8a\x9b\x73\xf5\x09\x0e\xc0\xbd\x4f\x59\x8a\x39\x5e\x27\x8f\x23\x31\xbd\x67\xd4\xb6\xc4\xbd\xf1\xf0\xb3\xbf\x9d\xaf\x98\x21\x6d\x25\x01\xe0\xf8\x7c\xf2\x5c\xa3\xb8\x5e\xd7\x2e\xdb\x38\x1d\x62\xa8\x80\x8c\x71\xbd\x26\xd7\x41\x0f\x07\x6b\xf8\x46\x43\xdd\x40\xde\x47\x2e\x8b\x75\x33\x66\x05\x81\xf7\x13\xf6\x1b\x5a\x79\xdf\x0c\x27\x3d\x4c\xfb\x8e\x82\xb7\x7e\x6b\xa4\xc6\xaa\x27\xc7\xe0\xe3\x7e\x16\x2e\xea\xa7\x5d\xa5\x37\xf0\x5d\x6c\x33\x21\x4e\xb6\x9c\x1d\xe8\xe9\x40\xd3\xc9\x93\x45\xb2\x08\x69\x29\x10\xc3\xb9\x91\x07\x2b\x9c\x53\xbd\xfc\xcc\x24\x3d\x09\x84\x08\xad\x77\x47\x7e\x9e\xdd\xea\xa8\xe4\xf3\xe8\x48\x0b\x3f\x95\xc3\x98\x8b\x24\xd4\xad\x20\xbd\xf3\x6b\x6d\x38\x99\x15\x8f\x79\x69\xa0\xc7\xe9\x30\x92\x8e\x28\xdd\x09\x34\x1d\xae\x50\x1a\x86\xbb\x72\x17\xbb\x98\x2d\x10\x02\x3f\xc3\x9b\xe2\xec\x10\xef\x6e\x23\x8d\x70\x6e\x12\x9f\x7f\xd1\xa3\x17\x9c\xfb\xdf\xa9\x40\x2d\xaa\x29\xa8\xb0\x60\x4d\xde\xa2\x24\x42\x69\x7c\xb3\xa8\xed\xdf\x79\x6a\x4d\xc9\xc5\xbe\xd7\x48\x96\x0f\xfb\x76\x45\x4e\x27\x74\x50\x2e\xe2\xb1\xf2\x1b\x0d\x11\x85\xa8\xcb\x67\xfc\xe9\x72\x11\x61\x0e\x31\x0f\x48\x1d\x14\xb8\x7f\x5d\x3b\xd3\xe9\x8a\x80\x21\xbe\x8a\x91\x8a\x53\x3e\x73\x59\xc0\x7b\xf8\x54\x91\xe4\x27\xa4\x1a\x3a\x79\x6f\x03\x9b\xc6\x6f\x02\x2f\x35\x77\x5e\x87\xc8\x9f\xa8\x47\xda\x8d\xc2\x25\x9b\xe4\x1a\x8c\x55\x57\x28\xf7\x8b\x06\x29\xec\x64\x55\x6c\x89\x58\x97\x57\xfb\x5e\x57\xfb\x1b\x93\x37\x64\xb9\xb7\xc7\x2a\xe7\x17\x61\x73\x3a\xb4\x45\x69\x0a\xa6\x99\x62\x46\x73\x84\xfe\x1e\xbf\x56\x8e\x7a\x65\x12\x47\x4b\x76\x87\xef\x3c\xbe\x81\xef\xec\x6a\xd2\xea\x3b\xf3\x1b\xad\xb7\x7c\x02\xc3\x86\xcd\xdb\x35\x86\xc1\xd8\xa1\x52\xd5\xd6\x05\xb0\xbf\x0f\xc8\x87\x75\x67\xce\xc4\x8f\x56\x57\x89\xa2\xeb\x31\x5e\x9a\x4e\xd2\xa6\xfa\x25\x9c\xde\xfc\x28\xf1\xf4\x1e\x5d\xf3\x20\xd3\x47\x51\xb5\xc9\x69\x50\x83\xa2\xd2\x12\x14\xfd\x30\x55\xc7\xa0\x7d\x83\x65\xd1\x82\xbd\x8d\xc3\xa3\x39\x97\xf1\x4f\x03\x1d\x6e\x15\x7d\xf7\x4a\xd3\x8c\x37\xcc\x6c\x37\xc2\xec\x53\x84\x7c\xd5\x40\xd0\x63\x33\xaa\x34\xbc\x3b\xa9\x22\xe9\xb6\xba\x17\x5a\x75\xf9\x38\x3a\x4f\xa9\x10\xf2\x4e\xb3\xc3\x55\x3f\x5d\x58\x58\x6d\xa9\xe8\xf7\x9e\x82\x00\xbf\xd7\x94\x7b\x26\x66\xe0\x9c\xb4\x10\x27\xbe\xa1\x55\x50\xbe\x31\x36\xa2\xab\x52\xbd\x32\x21\xff\x4d\x12\x0e\x76\xd8\x65\x80\x6b\x65\x36\xfa\x58\x4d\x1a\x20\x81\xc7\x87\x54\x4d\x14\x41\xc5\xa5\xd7\xd7\xdb\x57\xe9\x2f\x00\xce\xfb\xae\x82\x0a\x5f\x18\x3d\xec\x9b\x85\xc3\xa7\xe9\x96\x60\x15\xff\x90\xd0\x98\x68\xd8\x7f\x8b\xc6\x23\x88\x2f\xa7\x51\x54\xa1\x44\x61\x6e\x1f\xf0\x04\x3f\x54\x20\xdd\xff\xf4\x71\x04\x62\x94\xac\x8f\xc0\xc0\x10\x15\x33\x4b\x23\x20\xcb\xbe\x15\xb4\x9e\x79\xc6\xb3\x5e\xaa\x8b\xc7\x35\x4e\x76\xbc\x47\x38\xfa\xbb\x0e\x0f\x7b\x48\x04\x78\xef\x42\xc3\x12\x97\x38\xa2\x6f\x85\xac\x71\x13\x81\x96\x7b\x3d\x0a\x64\xfc\xd4\x5a\xeb\xc5\xf9\x4d\x80\x74\x29\xf5\xfb\x74\x0f\xa4\x2f\xf9\x0a\x18\x2d\x2b\xa8\x51\xdf\x03\x18\xa4\xcb\x11\x60\x6d\x22\x01\xef\x2b\x82\x46\x9b\xd7\x61\x96\xd2\xc4\x3b\x15\x51\x75\x27\x8c\xe6\xbb\x8c\xa7\x9b\x5a\x73\x44\x1d\xae\x4a\x63\x9b\x69\xa6\x71\xe0\x29\xe0\xa7\xd5\x0a\xe8\xd9\x6c\x60\x92\x1d\xca\x81\x6a\x5d\x79\x7b\x42\x12\x1b\xcf\xf3\x7d\xb5\x86\x88\xe8\xf3\xd2\x26\x0f\xb4\xc4\x3b\x7c\x6b\x5d\x33\x3b\xdb\x8e\xed\xab\x51\xd2\x2b\x98\x11\x21\x96\xfe\x8a\x5e\xab\xdb\xf8\x5f\x30\x8c\x85\xc0\x3e\xbe\x15\x50\x73\x06\x9f\x8e\xcc\x53\xcc\xf6\x3c\x5f\x26\xcc\x4c\xb8\xd4\x4d\x57\x80\x49\x43\xf0\xbf\xa1\x88\x54\x37\xc6\xae\x8a\x06\xd2\x59\xda\xcb\x6c\x8e\x72\xcd\x1d\xc1\x3e\x6b\x7d\x9f\x58\x99\xd7\x35\x14\x66\x18\x9b\xbc\x0f\x70\x25\x82\x14\x66\xc8\xfc\x5a\x81\xfa\x4c\x16\xf6\x99\x34\xc8\xb1\x41\x89\x55\x9f\x52\xa1\x3d\x4a\x0a\x13\xd6\xa2\x90\x52\xce\xb9\xe0\x44\x65\xfb\x36\x5b\x88\xc2\xa8\x8b\x43\x80\xf2\xa0\xa7\xf6\x20\x71\x74\xf0\xff\xbd\x33\x0e\x5a\x43\xdf\xc2\x65\xeb\x4a\x1c\x44\xe1\x51\xc6\x15\x84\xbf\x34\xd3\xb6\x03\x9b\xf5\xac\x72\x08\x02\x53\x91\x5f\x8f\x01\xc9\xb0\x44\x17\xa3\xc2\x2c\x44\xb1\x38\xda\xe0\x73\xdf\x56\xe2\x04\x6f\x37\x62\xed\x49\x38\x9a\x81\xa2\x4c\xdf\x42\x64\xc3\xed\x3f\x8c\x45\x8e\x13\xff\xd5\xb1\x7a\x79\xdf\x5c\xdb\x0e\xa3\xc4\xc4\x5e\x7b\x1a\x10\x00\x06\xe2\xf3\x1b\x05\x8d\x0d\xab\x84\x04\xe9\x8b\xdc\x03\x4c\x1a\xf8\xb5\xca\x25\xa3\x24\xcc\xac\xc9\x59\xd3\x42\xc4\xa9\x7c\xa4\x46\x25\x85\xac\xe7\x27\xb4\x25\xf8\x67\x70\xcd\xd8\xd1\x97\xdc\xd3\xeb\x46\xb9\x51\x52\x01\xb8\x9b\xdf\x08\xfc\x9d\xfd\xc6\xe8\xf1\xad\x6a\x5f\xbf\x41\x96\x52\x42\x95\xf1\x1b\x87\x1d\xa5\x58\xa2\x67\xac\xeb\xb4\x6f\xae\x6d\x62\x78\x8d\xb7\xfc\xa0\xeb\x2d\x75\xbd\xe4\x76\xa4\x38\xbb\xf8\x51\x97\xd0\x42\xbe\x8f\x5f\x37\x01\xc5\x07\x66\xc9\xe2\x38\x74\x7a\xf4\xd5\x13\xc4\xa8\xfb\x53\xc5\xe4\x02\x11\x70\xf3\x8d\x06\x17\xc0\x99\xf6\xb0\x5c\x88\xa3\x5c\xf6\x08\x1f\x0a\x38\x4c\xe5\x84\x68\xf0\x38\x58\x88\x86\x3c\x7c\x56\x72\xc9\x33\xce\xbb\xdd\x97\x65\xa6\x9b\x2e\x58\x5e\x16\x62\x70\x4c\xf7\x4d\xbc\x8d\x9d\x8d\xde\x22\x3b\x6a\xb8\x56\xba\xeb\xf8\xf2\x7c\x0a\x33\xb6\xdb\x0d\xe7\xec\x7c\xdb\xbe\x3a\xb4\x49\xd7\x88\x59\x3d\xaa\x76\x86\x87\xf1\x9b\xb1\x6f\x7f\xf0\x85\x76\x99\x2c\xc4\x51\xb2\xe4\x0a\x2c\x20\x88\xb0\x53\x91\x2f\x61\xf2\x24\x08\xb3\x26\xff\x20\x9b\x95\xcb\x82\xc2\xc5\x2e\xbb\xaf\x8d\xc0\xee\xab\xf0\x58\xf4\x33\x6b\x0a\x2b\x82\xb5\xae\xab\xb6\x6f\xce\x41\x06\xbc\x9e\x4b\x62\x96\xa9\x45\xc8\xd1\x9a\x67\xea\xb8\x15\x32\x60\x57\x0b\x28\x0a\x0b\xd8\x42\xbb\xb9\x00\x4f\x23\xf9\xcd\x18\xe8\x6d\xdf\x5c\x7b\xa5\x1f\x15\x85\x59\x12\x6b\x51\x84\xde\x9f\xab\x96\xda\xcf\x9b\x96\xf5\x2b\xb6\x88\xa3\x84\xcf\x33\xdc\x99\xa3\xca\x27\xe4\xe8\xd8\x30\xa5\x5a\x66\x26\xa7\x58\x06\x5c\xd9\xd5\x91\x77\x88\xbe\xaa\x66\x23\xc3\x34\x2f\x60\x08\xfa\x92\x83\xcc\x2a\x21\xf9\x9b\x0a\x8f\xbc\x64\x16\xca\xf8\xc1\x9a\x7f\x0e\xd6\x60\xca\x30\x2d\x51\x27\x36\x09\x28\xb8\x0e\x4d\x1c\x85\x4b\x13\x7e\xaa\x7e\xab\x26\x1b\xa5\xe0\x1a\xa7\x6a\x4a\x10\x71\x9c\x3f\xa9\x10\x3c\xe7\x02\xe5\xdf\xfc\x46\x40\x93\x0f\x39\x92\x7c\x3f\x85\x51\x8f\xc8\xde\xd6\x81\xd3\xc5\xa2\xbf\x15\x78\xff\x8b\x77\xa9\x66\x42\x0e\x7b\x56\x83\x37\xf9\xb1\x22\xfb\xda\xb6\xe6\x95\x35\xee\x53\x09\x8b\x31\x21\x0b\xb5\xa3\x70\xfe\x0e\x32\x31\x04\x62\x34\x6d\x04\x16\xa5\x9b\xcf\x18\x76\xb0\xa1\x1c\xa3\xa3\x44\x87\xd4\x1f\x8b\xf7\xd9\x5f\x4c\x8e\xdd\x06\x5c\xb6\x59\x30\x49\x37\x15\xae\x3e\x3e\x96\x45\xb3\xf8\x4d\xc3\xb0\x2f\x8e\x06\x11\x9b\x10\xa8\xaf\x20\x48\x1b\x10\xec\x04\xf5\xea\x8f\x92\xa1\x59\x1d\x58\xa8\xc1\x3d\xef\xdc\x81\xe9\xf7\xb4\x57\x2d\xff\x87\xae\xf7\x7d\x59\x31\x28\xb3\x25\x76\x4b\xc4\xe1\x87\xed\xcf\xf2\x3a\x94\x2a\xe3\x36\xfe\x5c\xf5\x97\x4d\xd7\x0e\x8b\x5c\xcd\xc0\x37\x02\x45\x08\xdb\xa8\xd1\x82\x6d\x38\xa5\x98\x34\x47\x40\xb7\xc2\x9b\x6d\xc4\x64\xe2\xff\xc0\x43\x16\xb6\x81\xcb\x69\x5f\xbe\xd2\x84\x7d\x8f\xa3\xd0\x26\xb9\x0b\x5c\x8e\x59\xeb\xc8\x2c\xd0\x0b\x43\x43\xe2\xd2\x58\xec\xdb\x3f\xdd\xce\x6c\x6e\x93\xc2\xa1\xce\x51\xcf\x62\xc4\xca\xaf\x9b\x5c\x78\xda\x26\x0c\x4b\x06\xf5\xcf\x70\x23\xe8\x88\xee\x0a\x1d\x69\xa0\x92\x20\x3e\x87\x85\xed\x52\x53\x0a\xb7\xf9\x0a\x1e\x87\x13\x7e\x3e\x34\xbd\x79\xb1\x56\xc4\x05\xda\xd4\x32\xb4\xd1\x72\x15\x72\x5c\xc1\x7b\x1e\x7b\x8d\xdf\xa8\xe9\xf9\x72\xd4\x8b\x50\x6d\x09\xe5\xc0\xa3\x15\xcf\x37\xf8\x57\xcc\xb4\x73\x93\x74\x33\xd3\xf2\x3d\xd9\xd3\xba\x2d\x76\x5a\xb9\x22\x90\xdb\x74\x0a\x4e\x8c\x93\x17\x02\x52\x5f\x70\x64\x3e\x81\xfe\xf2\x81\xdf\xda\xa1\xf8\xe0\x7c\x8a\xc9\x74\x13\xfb\x0b\x87\xf5\xb9\xd1\xf6\xbf\xeb\x54\x3d\x7c\xb0\x7f\xa8\xe3\x21\xe3\x7f\xea\x42\x55\x3e\x8c\xa3\xe2\x21\xfa\xc3\xc8\x23\x18\x8e\x82\x13\x04\xd6\x75\x28\x95\x26\xb5\xf3\x00\x23\x7c\xf0\x81\x9b\x14\x68\xd0\xe8\x3f\x47\x99\x82\x78\x66\x55\x9f\x8e\x7f\xdf\xd9\x51\x92\xc1\xa7\x1e\x68\x4f\x5d\x98\x57\x87\xa4\xf5\xa2\x19\x25\xb7\xb1\xc8\x85\x9d\xad\xda\x69\x27\x55\x6e\x40\x34\x83\x9d\x7e\x46\x73\x82\x02\x18\x9e\xe8\xbf\xa6\x2b\xc4\xa5\xc3\x5b\x0f\x38\xac\x3b\xb4\x21\x19\xe6\x37\xaa\x3d\x65\x87\x6a\xfb\x91\x02\xfa\xda\xb8\x6b\xb3\x78\x15\x63\x70\xe7\xc5\xe1\xcf\xd0\xdb\xa3\x47\x94\xae\x40\x0e\xc4\x7e\x63\x65\xe4\x57\x58\xde\x37\x19\x24\x8d\xb0\xd5\xde\xa4\x6b\xe5\xe2\x96\xee\xa0\x08\x4f\x50\x31\xaa\x8d\x2d\xe4\x7c\xa2\xc7\x27\xc2\xc4\x0f\x32\x3e\x29\x6c\x9c\x42\xa4\x16\x25\xd8\xba\xa6\x81\x73\xb5\xc7\xce\xb5\x2a\x95\x24\x39\x47\x82\x82\x52\x9c\x76\x42\x3d\xd5\x61\x24\x42\x3d\x32\x85\x31\x8b\x8b\x36\x2c\xa8\xe3\x80\x7d\xc8\x82\x45\x8c\xc5\x25\x36\x92\x96\xe9\x13\x52\x82\x22\x2b\x80\xc4\x5a\xa5\xca\x2f\xce\x1c\xfc\x5c\xcb\x79\x27\x6d\xd2\xc3\x44\x0a\xb9\x86\x43\x4e\x8c\xb2\xb1\xf4\x81\x3d\xba\x45\x02\x00\x2a\x72\xcf\x88\x44\x10\x6e\x9e\x9b\xf6\xfa\xc5\xf5\x73\x4d\x01\x78\x8b\xa0\xb5\x38\x00\x6f\xa8\xb4\xe2\x53\xac\x40\x81\x4f\x57\x67\xa9\x70\xf3\x29\x60\x2a\x8b\x1d\x21\xac\xfe\x15\x9e\x0a\xb2\x18\x20\x0e\xc4\xb4\xd8\xfb\xd7\xff\xe3\x80\x9a\x14\x8e\x92\x3c\x3b\x7b\xc0\x59\xb8\xe2\x86\x63\x2d\xdf\xc0\x0d\x77\xb2\x99\x8e\x62\xb1\x89\x8e\xa1\x38\xbd\x56\xab\x19\x03\xff\x1f\xe2\xd6\x23\x93\xd8\xd6\xf9\x6c\xed\x11\x45\x69\xc2\x04\x03\x07\x09\x47\x6d\xe9\x94\x32\x14\xcb\xc8\xb9\x28\x7d\xa5\x34\x71\x0c\xac\x37\x8e\x75\xcc\x26\xd1\x7f\xe6\x3c\x02\xf5\xd2\x2d\x85\x4f\x5c\xc8\xd2\x05\x9b\x41\xf1\xc8\xf5\xf0\xbc\xa0\xfe\x85\xc0\x2b\x86\x0f\x6d\x36\xb0\x3c\xc6\x56\x83\xff\x9a\xac\xa9\x13\x69\x4b\xd3\x78\x0b\xf7\xe6\xb8\x32\x68\x3d\xee\x16\x65\xd7\x56\xb9\x3c\x8a\x01\x70\x79\xb8\x8e\xc6\xea\x45\x46\x8e\xdb\x74\x5a\xe5\xcb\x9a\xf7\xbe\x7f\xda\x21\x74\x15\x5a\x77\xec\x64\x7a\x71\xe6\x20\xe9\x56\x67\x69\xcc\xf3\x7d\x44\xf1\x73\x1a\x1a\x3c\xee\x69\x7b\x68\xba\x3d\x28\xc3\xfe\xa4\xd7\xb3\x7a\x77\xe4\xe3\xe9\x65\xac\x3c\xb1\x9b\xf4\xbc\xc3\x1f\xd7\x06\x7a\xb6\xd7\x9b\xd4\x52\xad\x57\x46\x1e\xe7\xbd\xa1\xa6\x6f\x1b\xba\x19\x7a\xc5\xdd\xcd\xd8\xda\x81\x49\xc4\x53\x8b\xa9\xe2\x23\x2d\x26\x34\x52\xb2\xda\x37\x15\x7c\xb7\x5f\x66\xc5\x24\x25\x84\x50\x14\x60\x20\x01\x32\x97\xf7\xe9\x2a\xf8\x35\x15\x26\xfc\x43\xcd\xaa\x8e\x59\xfa\x8a\x0d\x39\x6b\x13\xfd\xf4\x96\x63\xcc\x5f\x53\x88\xe4\xb7\x47\x5a\xa0\xca\x0e\x2d\xd3\xae\xf9\x00\xc4\xa6\x94\xd3\xb0\x01\xcd\x15\x9a\xc2\xc4\x69\x4f\x41\x3e\x6f\x28\x00\xd7\xb8\xeb\x58\x75\x79\x49\xf4\xaa\x74\x19\x1c\xd0\xb1\xda\x40\xfc\x46\xf5\xba\xca\x7c\x75\x87\x72\x56\x53\xd3\x98\xdf\x3f\xe9\xb1\xc5\x13\x9f\xeb\xf8\xd1\x79\x6b\x4d\xa5\x8c\x77\x46\x4a\x39\xf9\xec\xd8\xc5\x10\x1a\x6d\xd5\x2d\x7e\x9c\x58\x27\x55\x5e\x72\xd2\x3d\x57\x66\x25\x4f\xf9\x33\xf9\x5e\xa0\x0c\x64\xbf\x8e\x4b\x63\x9d\xac\x9a\x21\xf7\xc8\x37\x0a\x8f\x8d\x9e\xaa\x77\x31\x66\x67\x0f\xb4\x0f\x4d\xbf\x84\x81\x11\x8a\x5c\x0c\xc9\xf9\xb5\x52\x71\x5f\x26\x05\x51\x85\xb4\xe1\xa9\x38\x3e\xf2\x53\xc5\xff\x3d\x8a\xbb\x89\x2c\xe9\xb8\x82\x05\xbc\x11\x3c\xa1\xea\xd2\xbc\xc8\xa2\x90\x73\x65\xa0\x39\xef\x2b\x2e\xc0\xfd\xa6\xb2\x9c\x44\x36\x33\xa8\x4b\x1c\x52\x79\x8a\x63\x89\x9c\x6b\x9a\x23\x64\x55\xd5\x31\x50\x24\xc4\xd7\xb5\x9e\xe3\xeb\x9e\x76\x13\xc7\x55\xb9\xbe\x7f\x5a\xe8\x27\x23\x25\x8b\x78\x4c\x9d\xf3\x0b\x29\x69\x45\xb9\x6a\xf8\x72\xa0\x48\x70\xe4\x6c\xe8\xb5\xfd\xbd\xc0\xe6\x6d\xd4\x51\xf8\xa9\x75\x45\xad\xdd\xd9\x51\xcf\xee\x9c\xb2\xf0\x7a\x07\xfd\x6d\x4c\xa1\xef\x22\x2d\x46\x7b\x9c\xd5\x81\xf8\x6f\x29\xc9\x93\xe5\xfc\xb9\xc9\xd6\xdc\xdc\xe6\x7b\x0a\x31\x74\x56\xf5\xd5\x0f\xd7\x6a\xd6\x07\xea\x95\x77\xed\x82\xb0\x87\x00\x97\x38\x82\xb3\x95\xdf\x34\x36\xb5\x42\xd3\xb5\x03\xa6\xfc\x61\x27\x7d\x3b\xf0\x58\xe2\x6f\xab\xfc\xae\x40\x0d\xb8\x7f\xde\xe7\x46\x4a\x29\x58\x7a\x72\x71\xb4\x60\x95\x1c\x1c\x52\xa7\x9f\x28\xd6\x06\xbb\x8f\x08\x89\xbe\x49\x73\x34\xcd\x0b\x0c\x0e\xd9\xec\x7d\x54\x73\x7e\x6f\x18\xab\xf7\x4d\x56\x94\x35\x0e\x01\x33\x69\xf9\x8d\x02\x26\xdb\x57\x0b\x9b\x14\x13\xbe\x6f\x77\x0e\x0f\x18\xd4\x1e\x98\x7e\x08\x62\xd9\x67\x61\x51\x2f\x49\xd9\x9c\xd6\x69\x78\x06\x1e\x96\xb2\xa1\x50\xdd\x89\x0d\x6d\x9e\x9b\x6c\x75\x87\x92\x86\x80\x2a\xa1\x88\x32\xb7\x1c\x7b\x03\x42\xdb\x02\x93\xa9\xfe\x38\xff\xfb\xc8\x8f\xf8\xdf\x09\xfc\x20\x7f\x60\xe2\xc5\x32\x09\x59\xb9\xc2\xa1\x3a\xaf\xea\xc1\xc5\x55\xd5\x2f\xe7\xd1\xaa\x5a\xcf\xc7\x31\xd5\x74\x83\x56\xa7\x61\x09\xf3\x01\x31\x48\xaa\x73\xeb\xb2\xde\x2a\x89\xa5\x22\x3d\x41\x99\xcb\x22\x6b\x9a\xdc\x7b\x86\x76\x81\x8c\x52\x3d\xa7\x32\xb7\x43\x93\x71\x5e\x51\xa5\x51\x0e\xe9\x3e\xe7\x91\xee\x0d\x4f\x35\xb3\xb1\xb7\x6b\x15\x1b\x65\x5a\x0a\xe2\xa3\xec\x12\x5f\x12\x01\x03\x35\xc0\xb9\x68\xb8\x61\xe2\x55\xe5\x1a\xf8\x36\x42\x3b\xdb\xbd\x34\x39\xc2\xf7\x4c\xd6\xb5\x68\xd2\x49\xf3\xd9\xcf\xff\xaf\x39\xa9\x83\x30\x1d\x0c\xc5\xa5\x6b\xc2\x47\x9f\x0b\xfa\xb0\x39\xaf\xb0\x52\x9b\x4e\xa9\x98\xc0\x68\x8e\x48\xcf\x94\x32\x65\x0f\xfd\xb1\x52\xb8\x2f\x93\xcc\x86\x69\x2f\x21\x2b\x3e\x0f\x64\x47\x53\x8f\x5f\x8f\x41\xb4\x0f\xbe\xd0\xae\xee\x36\x71\x09\xa5\xdf\xe8\x6c\x0f\x0f\xf9\x2b\x6d\x68\x7f\xe6\xd6\x2c\xa4\x59\x62\x75\xf5\x1c\xf8\xfe\xfc\xe9\x86\x66\x60\x7b\x58\xc2\x98\x16\x49\xf4\x5f\x06\x4a\xa0\x6c\xbd\x66\xd5\xbd\xf5\xf3\xf6\x4f\xef\x6f\x2f\x9b\x2c\xb2\x3c\xe0\x60\xa4\xb5\x2a\x15\xc7\x87\x77\xfb\xe6\x44\x8c\xd0\x1b\x9d\x21\xab\x3c\xa6\xd8\xe2\xc7\x6a\x6d\xbd\x28\x5c\xdd\xad\x04\x6b\xd8\x9b\x4f\x30\x6f\x7a\x4e\x4c\x91\x09\xfb\xe4\x32\x16\x8a\x18\x73\xd0\x97\xe2\xff\x51\x36\x88\xd7\x68\xc5\xf3\x0f\x8d\x94\xd0\xd5\x5f\x82\x9b\x23\x4a\xc0\xa2\x96\x19\xc6\x26\xcf\xb3\x34\x1d\x20\xbe\xa1\x4a\xfb\xe3\x91\xd2\x4f\xfa\xe3\x26\xe1\x19\x0c\x12\x27\xb5\xfa\xef\x3a\xc2\x96\x10\x98\xfd\x12\x5d\x0f\x54\xa6\x78\xde\xd3\xa7\x86\x69\xba\x84\x69\xb4\x0c\x97\x95\x81\xf6\x43\x94\x0a\xb9\xd1\x94\xc3\x56\xbe\x83\xed\x2d\x6d\x99\x26\x84\x03\x01\xb0\x91\xde\x4b\x3e\xa0\x94\x03\xaf\x8c\x94\x34\xfd\x29\xa7\x38\x4c\xa0\xa2\xc2\x14\x51\x3e\xd1\xfa\xfc\x8b\x7c\x4a\x00\x00\x80\xc8\x74\x54\x9f\xc1\x37\xf5\xac\xb0\xb0\xa4\xa3\x5a\x9d\x43\xe8\x1b\xdc\x56\x2c\xa6\xef\xd0\x99\x24\xd4\x43\x1f\xc4\xf2\xf2\x35\x93\x24\x16\xa1\x44\xe8\x77\x7e\x5f\x7c\xd2\xe0\xe2\x3c\x4f\x98\x42\xea\x34\x80\xe5\xb2\x79\x51\x89\x9e\xbe\x52\xe6\x45\x14\x5a\xf0\xcb\x14\x7d\xff\x80\xa3\xef\x6f\xad\x4e\x9e\x79\xa6\x6d\xbb\x51\x91\x66\xa2\xb2\x85\x59\xd0\xa5\xc0\xcf\x88\xc6\xfd\xa7\xf7\xee\x6d\x0f\xd2\x65\x89\x15\xe8\x44\x1f\xd7\x50\xc6\xe3\xaa\x43\xf5\x9b\xcf\xbf\x30\xa1\x9c\x94\x5e\xaf\x6b\x62\xb4\x9c\x9d\xc6\xd9\xba\xfc\x71\x64\x76\xfa\x31\xd8\xb1\x40\x65\xff\x38\xb5\xa4\xe1\xa1\xfc\x21\xfe\x09\xfe\x34\xea\x74\x04\x15\xc1\x19\x61\x8d\xe2\x14\x3b\xaa\x5a\xbb\x36\x61\x9a\x9c\xeb\x18\xfe\x50\x49\x50\xfc\xb0\xc9\x20\x2d\xb7\x26\x0b\xfb\x88\xea\xda\x76\x51\x47\x75\xe9\xe5\x2a\xb5\xe8\xff\x4b\xdd\x92\x2c\x2f\x1e\x57\x80\xf0\xb5\x6a\x75\x30\x2a\x5a\x6b\xe6\x4d\x75\x6a\x76\xac\x74\x42\xe2\x26\x3e\xd1\xa1\xfa\x1e\xa5\xc0\x66\xa0\x20\x5a\x48\x60\x51\x54\x6e\xd2\x2d\x10\xb7\x2c\x5d\x07\xbe\xeb\x2d\x89\xcf\x3e\x85\x8c\x91\xd2\x98\xff\x72\x0f\xd1\x0c\x50\x7c\xf0\x5e\x16\xa5\x0b\x7a\x02\xe8\xc7\x6c\x5f\x6b\x7d\x51\xd4\xa7\xa9\x83\xf7\x92\xd3\x65\x68\xc0\xec\x87\x71\x5a\x76\xa1\xab\xcc\x04\xb9\x91\x37\xfb\x3a\xa6\x6d\x6a\x6f\x28\xf3\xdc\x33\x8a\xf0\x79\xc6\xe5\x71\x65\x12\x5b\x93\xf7\x79\x85\x8b\x05\x43\xcd\x9b\xc1\x83\xbd\x06\x65\x1c\x47\x0c\xf6\x42\xe2\x08\x51\x2f\x7e\xbd\xe6\x19\x7c\x99\x61\x8c\xb8\xb4\x7d\xab\x5f\x91\xf0\xa2\x60\x7e\x5d\x62\xb0\xcc\xf3\x57\xbf\xab\x5a\x83\x8f\xaf\x69\xd2\xe7\xc8\x8f\xb9\xff\x8b\xbf\x8d\xfb\x4b\x99\xe5\x8d\x5f\x25\x28\x8a\xe4\x3c\x0e\xf0\xbc\xf3\x69\x74\x51\xd1\xbd\xd9\x09\x05\x4e\x51\x35\xf4\x9f\x3f\x30\xf9\x0e\xdf\x7c\xbf\xa0\xc0\xdc\x6c\xbd\x5b\x53\x66\x40\x37\xe6\x44\xcd\x7b\x7b\x37\x31\x8c\x10\xd3\xff\x07\x05\xc5\xcc\x8b\xcc\x26\xbd\xa2\x6f\x65\xa0\x82\x6f\x88\x51\x34\xbf\x56\x8c\xc5\xcc\xa2\xe0\x12\xe5\x68\xec\xbf\x89\x8e\x9a\x07\x01\x4a\x80\xe4\xf8\xc6\x58\x77\xe3\xe0\x0b\xed\x9e\x89\x92\x09\x2f\x3f\xa9\x35\xb5\xaf\x28\xd3\x8a\xaf\x35\x08\x03\xb6\x87\x99\xcd\x73\x98\xaa\x57\x37\x5a\x54\x66\x15\x15\xfc\x72\x23\xc9\xc9\xc4\x85\x47\xdc\xa3\x77\xf4\x29\x36\x29\xbf\x19\x4b\xe3\xab\xac\xc5\x16\x99\x35\xc0\xc1\x63\xdc\xfa\xd3\xc0\x23\x1f\xc6\xe5\x0f\xf6\xee\x6d\x27\x55\x79\x3d\xa1\x54\xee\x10\x22\xf0\x44\x91\xa8\x62\x5b\x5e\x56\x48\xe4\xbc\xa8\x6a\xcb\xc5\x45\x2a\x66\x30\x3b\x3b\xab\xe6\x68\x67\x95\xf2\x71\x99\x2c\xc6\x66\x69\x15\x13\x5e\x84\xd2\x2b\x94\xbf\xf3\x6b\x57\x6a\x27\x69\xb6\x92\xa6\x6c\xf4\x83\xbf\xb3\x8d\xdc\xdb\x30\xf5\xf9\x48\xf1\x4a\x6f\xd7\x74\x82\x0d\x65\x31\x8c\xf7\x99\xdf\xbc\xa8\xf0\x43\xdd\x34\x2c\xd2\x8c\xce\x6c\x16\xa0\x0c\x94\xf7\xe3\x91\x91\x87\x4e\xbd\xa7\x10\x64\x9f\x04\xad\x2f\x49\xdb\x75\xdc\x36\x71\xef\x4c\xdb\x3c\x37\x78\x6e\xd2\xf7\x72\xa6\xd6\x6a\x74\x80\xfd\xd3\xbc\xd1\x1e\xee\x28\xc9\x85\x8b\xea\xf6\x15\x99\x49\xf2\x45\x9e\x18\x83\x42\xf4\xbb\x81\xa7\x13\xfd\xae\xaa\x9b\xaa\xed\x44\xeb\xa0\xb5\x57\xb8\xc9\x1f\xe9\x71\xfa\x47\x63\xcf\x74\x6e\x6e\xbe\x9d\xc7\xe5\xa0\xa6\xe2\xa7\xa8\x72\xeb\xde\x56\x63\x45\x35\x61\x78\x28\x43\x97\x21\x03\x1a\x51\x48\xf0\x46\x76\x1a\xe7\x8d\x62\x7d\xaa\xe3\xa7\x83\x77\xd5\x85\x2f\xc4\x65\x06\x06\xeb\xec\x2c\x1f\x12\x97\x15\x24\xb2\x05\x6b\x1b\x84\x84\xcb\xa3\x2d\x9e\x72\x7b\xf7\xb6\x9f\x53\x14\x8d\xbf\xc2\x37\xe6\x37\x4e\x8e\xa0\x88\x0a\x93\x10\xc9\x6d\x76\x96\x8f\xcf\xed\xf4\x28\xf8\x75\x47\x8f\x56\x6c\x89\xdb\xed\xe0\x91\x73\xce\x96\xe6\xbc\x02\xd8\x58\x92\xf1\x74\x23\x54\x27\xb9\xe6\xeb\x35\xd5\x41\xbd\x85\xbf\x22\x85\xdc\xe3\xea\xac\x2e\xa2\x82\xd9\xa7\x1e\x5b\xdf\x72\x66\x1f\xe7\x1d\x23\x65\xc9\x14\x7d\x9b\x45\x5c\x30\x08\x77\x45\xcd\x4e\xc7\x65\x80\x48\x38\x24\x36\xd1\x60\x42\xa1\xa9\x60\xd5\xeb\xb0\xe5\x4e\xa6\xe6\x5a\xc3\xf8\x71\xa6\x9d\x97\xd9\xa2\x09\x25\xba\xb0\x33\x5b\xe0\x41\x61\x17\x1a\x56\x55\x7b\x31\x36\xc3\x5c\x25\x5e\x17\x6a\xd6\x4c\x0d\xee\x30\xf3\xed\x85\x28\x0d\xfb\x76\x10\xe5\xe2\x74\xa3\x2d\x0e\x84\xad\xd9\xf0\x51\x61\xea\x3a\xd0\x9c\x46\x63\x05\x4b\x4e\xbd\x35\xf4\x3d\xf3\x0c\x95\x93\xb1\x65\xcc\x8c\xe6\x74\x8b\x3f\xa5\x9f\xe4\x9d\x6b\x92\xd0\x12\xc7\x76\xb7\x21\x58\xc3\xa5\xa6\xe7\xe2\xc3\x9a\xc9\xf3\x72\x60\xf5\xed\xf8\x40\xe5\xa1\x1f\xa8\x29\xda\x42\x9c\xae\xec\xa2\xab\x72\x8a\x4d\xd5\x9f\xc7\x36\x80\xfb\x33\xbf\x46\x78\xe7\x9f\xc2\x58\x04\x27\xc4\xa7\x98\xab\xf0\x9b\x91\x2a\xa5\x80\xf7\xe2\xd7\x63\xb7\xe5\xe0\x0b\xa4\x1b\xeb\xa6\xe2\x68\x6f\xdc\x55\x8a\x1d\x10\xf7\x15\x21\xaf\xad\x75\x70\x55\x9d\x84\x66\x18\x15\x86\xac\xec\x11\x02\x44\xbe\x8b\xae\x02\x91\x02\x3a\x8a\xd8\xe4\xa7\x1b\x21\x75\xc3\xd8\x2f\x37\xb1\xb0\xa3\x6f\x2b\xb2\x83\x4d\x4f\x64\x68\x6d\x37\x1d\xd8\x82\x03\xa5\x4c\x30\x68\x73\x48\xa6\xe9\x33\x8e\xdc\x24\x3b\x5b\xce\xc4\xf3\x71\xd2\xe3\xab\xe1\xe6\x91\xf0\x4c\x74\xbc\x3f\xee\x69\x65\x42\xfe\xd0\x9a\x52\x03\xe0\xda\x55\x06\x59\x0d\xfd\xf7\xbe\xc9\x8b\x28\x5e\x55\x84\xad\xeb\x81\x86\x64\x54\x7f\x18\x9d\xbd\x63\xa3\xa7\x35\x15\xa4\xc8\xaa\xf2\x3b\x8f\x4c\x3c\xa5\xb5\x6b\x8f\x63\x33\xa1\xe7\x79\x52\xc9\x32\x7c\x53\x35\xbe\xd8\x21\x8a\x7f\xc3\x15\x53\xdd\x68\x40\x82\xff\x82\x06\xc7\x6a\xfd\xb6\x5a\xfd\xcc\xba\x10\x17\xae\x96\x33\xfb\x3a\x33\x7a\x42\x83\x0a\x56\xc3\x58\x2c\xfc\x90\xb8\x1d\x53\x4e\x27\xc7\xc6\x4a\x8c\x97\x5f\x6e\x17\x7d\x3b\x90\x56\x25\xee\xfc\xb5\xc0\x37\x1e\xd7\xb1\xa4\xd9\xb4\xba\xc9\x16\x7e\x60\xc2\x56\x6b\xab\xf2\x82\x0c\x24\xb6\x86\xae\x97\x5f\x6e\xdb\x6e\xa9\x9a\x32\x38\x11\x3e\x51\x26\x58\x9f\xd4\xe6\x2a\xb9\xcd\x6c\x81\x38\xe2\xa0\x68\xf3\x2f\x1c\x70\x50\xb4\x87\x1d\x94\x3e\x4e\x5b\x7e\x8c\xc6\x08\x27\x01\x31\x79\x19\xa2\x28\x8e\x4b\xb0\x80\x18\xb2\x86\x3f\x74\x86\x94\xda\xf9\xb5\xca\x7d\x56\x18\x5c\xa9\x70\x54\xf8\xcb\x02\xaa\x6a\xc2\x8e\x26\xbd\x28\xb1\x1e\x3b\x8a\xe1\x24\xe3\x37\xf9\x4d\xe3\x99\x9f\xae\x08\x66\x55\x8c\xe5\x95\x51\xe1\x5b\x4a\x0a\xf1\xab\x0d\x84\xf1\x39\x5a\x9a\x04\xf8\x75\x16\xc6\x60\xdf\xf2\x6b\x45\x4c\x19\x66\xe9\x20\xca\x2d\x89\x3b\x49\x2d\xd5\x52\x22\x99\xea\xe0\xfc\x00\xb3\x3f\x54\xda\xd0\x43\x63\xa5\x3a\x05\x50\x19\x9a\xc4\xc6\x13\x8a\x6e\x0f\xc0\x91\x33\xde\x72\xa8\x63\x6f\xc6\xbb\xd2\x4f\xa7\xaa\x5b\x4e\xd1\x76\x0a\x63\x28\x67\xc7\x53\x7d\xa2\x14\x44\xd5\x1f\x02\xe5\x84\x0f\x55\x9c\x90\x3b\xd7\x1e\xab\x51\xa7\xd2\x64\xca\x6b\xa0\x5e\xd0\xca\xa6\x37\x94\x96\xc7\x8d\x91\x22\x5b\xdc\x18\xf9\x0e\xdf\x44\xc7\x63\xf6\x62\x43\x3a\x44\xf4\x27\x50\xc8\x00\xab\xc5\xaf\xfd\x30\x3a\x0f\xd3\xac\xc8\x6b\xf6\x94\xc7\xf4\x58\xff\x66\x0d\x98\xe7\xb2\xe4\x28\xec\x57\x67\xa3\x37\xcd\xd8\x62\xd2\xe6\x2d\xcf\xfe\xee\xe7\x94\x2e\xef\x59\x60\xde\x30\x6c\x39\x4e\xf3\x7f\xbc\x7e\x9d\xf0\xd9\xac\x10\x3b\x6a\x7d\xf9\x0b\x4e\xcd\x96\x9e\x08\x56\x1c\x10\xf5\x9c\xf1\x5d\x27\x18\x04\x25\x0a\xff\x68\xcf\x1a\xed\x27\xa9\x83\xb5\x58\xc0\xc9\x40\x99\x33\xec\xea\x78\x50\xe7\xcf\xe9\x7e\xe0\x87\xe0\xfe\x81\x4e\x22\x17\x45\x6e\x6a\xe4\x49\x36\xc7\xa9\x3b\x80\xa8\x70\x06\x80\x03\x71\x7b\xa3\x2c\x12\x47\xd2\x93\xa0\x61\x28\x01\x1f\x61\xfc\x3c\x0a\xe8\x8e\x78\xe7\xb7\x9c\x7e\xcf\xeb\x64\xeb\x86\xb6\xc1\x3d\xb2\x74\xc0\x82\xbe\x38\xa2\x36\x10\xc3\x1d\x14\xb7\x79\x10\xc5\x4b\x54\xd7\x82\x55\xf0\x21\x3e\x45\xe8\x15\xf4\x29\xc2\xf6\xf0\x79\xc3\x04\x90\x05\x6c\x1f\x4e\xc5\x26\x9a\x6d\xd7\x5d\xb3\xa0\xb0\x61\x3f\x89\xbe\x52\xda\x1d\x8a\x3d\xf2\x6d\x3c\x33\x47\xa8\x73\xc3\x8d\xf3\x28\xda\x31\x4c\x38\x3d\xf2\x73\xf7\x0b\xca\x23\xf6\xd1\x8e\x56\xb4\x28\x0b\xfb\x28\xdd\x1e\x59\x50\xd5\x0a\x90\x0c\xcc\x8f\x4a\x1e\x59\x53\xb3\x82\xb3\xb8\xbb\x58\x02\x77\x94\xf9\xf4\x65\x42\xa7\xf1\x90\x9a\xc5\xe4\x03\x85\x5e\x87\xe4\x3f\x72\x83\xdd\x1d\x25\xee\xf0\x2f\x11\xc6\xd0\xff\x11\xb7\x3d\x34\x9d\x8e\x53\x74\xc0\x59\xfc\xce\x58\x6d\x3b\x73\xb0\xfd\x4a\x54\x14\xc2\xa4\x47\x1d\x0e\x4c\x0a\xbf\x5e\x6b\x90\x2a\x30\x71\x98\xf6\x53\x86\xc5\x62\x8d\x1e\xd6\xb9\xc0\x61\x77\x84\x66\x36\x4f\xe3\x92\x46\x11\x74\x03\x9c\xcd\x88\xeb\xa7\x7e\x8c\x4b\x67\xc9\x64\x25\x95\x55\x26\x51\x92\x0f\xa3\x8c\xbb\x11\x98\x38\xaf\xe3\xc0\xe5\x37\x35\x15\x22\x93\x98\x56\xb5\xea\x10\x96\x36\x34\x2d\x6e\xc3\x6d\xf3\x74\x21\x0f\xcb\xcc\x4e\x3a\xf0\xf6\xd1\x27\xa8\x1d\xe3\x9c\x84\x5d\x94\x7e\x72\xcd\xef\xa0\xf7\x9a\xa8\xf1\x89\x21\x66\x28\xee\x35\x4b\x1c\xe2\x26\x88\xde\xa1\x3f\x31\x97\xac\x1d\x46\x49\x6f\x67\xb5\x38\xa4\xfc\xa0\x1f\xe5\x39\xba\x77\x0b\xf9\x87\x70\xef\xc2\x3a\x9e\x24\x73\x1f\x57\xbc\x54\x0b\x01\xcb\xe9\xe8\xc8\x0b\x66\xdc\x6c\xa2\x03\x31\xda\xc4\x03\x61\xf0\x05\x4f\xa8\x6a\xf8\x84\xca\xf1\xca\x57\xa9\x4e\xda\x24\xe7\x8d\x4d\x0d\x2e\x9c\x7b\xee\x0b\x2d\x5f\xfa\x9d\xd5\x5f\xf0\xac\x8b\xb9\xe0\x1d\x31\x63\xc9\xd1\x12\xab\x28\x25\x84\xc5\x66\x1e\x09\x53\x9d\x22\x96\x05\x62\x14\x9e\x92\x80\xff\x69\x63\xf7\x35\x49\x8b\x62\x75\x42\x01\x81\xfe\x68\xe4\x7f\x1d\xce\xe8\x02\x57\xf2\x93\xec\x64\xb5\x24\x82\x05\xba\x1e\x67\x46\x4a\xd9\x8a\x30\x7d\x9b\x77\xc7\xc0\xc2\x04\x7f\x4d\x96\x26\xe8\x9b\x38\xfc\xa8\x9b\xca\x5c\x47\xf5\x00\xee\xc0\x47\x0d\x57\x3a\xdf\xee\x47\x71\x2c\x4b\x04\x9f\x75\x13\xcf\x9d\xdf\xb8\x38\xb5\xd2\x8f\x06\x79\x14\xf2\x8d\x40\x16\x7d\x5b\x41\xfc\x6e\xab\x39\x6e\x66\x87\xc0\xd4\xb6\x7c\x9b\xe5\x0d\x05\xe7\x7c\x43\x01\x4e\x5e\xe8\x76\x81\xb9\xc7\x31\xb9\x4e\x38\x30\x7e\xdd\x04\xf7\x4d\x87\x16\xf3\x50\xe4\x0d\x38\x3e\xef\xd1\x1f\xc7\x30\xf6\x33\x54\xd8\x88\xd6\x85\xb7\x76\x5c\x8e\x72\xda\x7d\xdc\x6a\x56\xc6\xe6\x67\x95\xc0\xc8\x4a\xdf\x5a\x97\x09\x23\x62\xbe\x83\x68\xc7\x6f\x9a\xea\xe3\x7c\x98\x59\x48\x81\x32\xfa\x58\x29\xc7\xfe\xf9\x48\xe1\x83\xcf\xb8\x0e\x46\x1e\x66\xd6\x0c\x24\x5d\x90\x49\xae\x32\xd7\x3a\x3b\x06\x86\xa4\xea\xdf\x24\xa1\xcd\xd2\x92\x15\x39\x91\xf9\xc0\x3e\x97\x5f\x2b\xac\x70\x94\x2c\xc6\xa6\x60\x76\x0a\xca\xd3\x53\x8a\x1b\x7e\xaa\x01\xc9\xe4\x1c\xd0\x5b\x9e\x74\x72\x84\xbe\x0d\xbf\x1e\xab\x14\x67\x0e\xb6\x4d\x62\xf3\xa2\x6f\x0b\x37\x69\x45\xfc\x67\x26\x0c\xbf\x69\xe0\xed\x1c\x68\xcb\x54\x43\x5c\xbc\x69\x21\xf0\x9b\xb1\xee\xc7\xb3\x6d\x9b\xbc\x92\xae\x0a\xe2\x9a\x91\xa0\x0a\x56\xb2\xae\xa2\xc2\x74\xf4\x9a\x32\x1c\x38\xa3\x0d\x07\xce\x34\xde\x59\x9b\x84\x69\x99\x91\xaa\xf4\xa1\x69\xd7\xd9\x54\xe2\xf6\x67\xb5\x79\x9a\xc9\x97\x6c\x41\x73\x7d\x4c\x08\x80\x31\xc7\x18\x77\xfb\x9a\xaa\xd5\xae\x52\x9e\x21\xd8\x4d\xdf\x96\x5a\x48\xd3\x44\xd8\x40\x8d\xdf\xde\x87\xe6\xc5\xcc\x76\xbb\x91\xfc\xb0\x2b\xc2\xab\x1f\x16\x11\x6d\xd5\x9f\x1d\x9a\x2c\x67\x47\x26\x49\xbb\x2e\x2b\xe5\x9a\xcb\x35\x2c\xf9\x6a\x92\xc6\xdd\xbf\xd1\xa0\xa8\xe1\x6c\x05\xb6\x80\x2b\x3f\xec\x54\xc8\xf5\x0a\x30\x42\xa1\xd9\x6f\x36\xad\xb1\x7e\x1a\x77\xa3\xa4\x57\xff\xdc\x2d\x48\xc3\x06\x54\xd3\xa2\xc9\x06\xdc\x10\x70\xdd\x5a\x6f\xeb\xd3\x28\xcf\xf6\x8a\x49\x9e\x6b\xf9\xb9\xed\x77\xb5\x50\xe3\x77\xc7\x6a\xb0\xbd\x7b\x3d\x99\x40\xad\xff\x33\xd8\xff\xfc\x46\x35\x3a\x97\xd3\x41\xe4\xb4\x94\x38\xd0\xff\x57\x9a\xbb\x70\x5a\x03\x59\x4f\x37\x6f\xb7\xc1\x30\xb6\xc0\xb3\xbe\xe4\x00\x82\xd5\x15\x63\x20\xfc\x51\xa0\xb4\xaf\xd6\x5c\xf4\x30\x64\xdb\x16\xf3\x11\xe3\x60\x1b\xce\xa8\xe8\x56\x4d\x01\xf5\x61\xe5\x0f\xf5\x88\x9f\xb6\x9d\xe4\xa1\x8b\xeb\x27\x39\xb5\xc3\x1b\x14\x84\x95\xd3\xe6\x4b\xbc\xcc\xd9\xe5\x14\xa7\xcb\x55\x3d\x2d\x47\x6e\x2d\x86\x81\x74\xd1\xc8\x1c\xae\xa0\xee\x16\xfa\x85\x12\x3b\xfe\xa4\x5a\x96\x9b\x60\x40\xc9\x67\x8d\xf9\x58\xcf\xb4\xed\x57\x4a\xb2\xff\xd4\xcc\x25\xd4\x69\x42\x63\xd2\x39\xd6\x20\x0a\x9f\xa4\xd3\x50\x8c\x24\x09\x35\x83\x22\xe7\x7d\x5c\x3d\x76\x18\xee\x32\xa0\x08\xb7\x02\x05\xb7\xbe\x53\x17\x32\xa8\x4e\x64\xd6\x14\x1d\x29\x01\xbd\xff\x9a\xce\x0f\xac\x3d\xd6\x99\xd2\x38\x57\xee\x8a\x33\x43\x88\x3f\x9e\x6e\x11\x32\xe0\x89\x35\xcd\x02\xaf\x8b\x25\x54\xc7\x3e\xc6\xf3\xe7\x94\xa7\xe2\x25\x0d\x6a\x3b\x11\xa8\xa1\xf6\x3c\x56\x19\x2e\x72\x5b\xe7\x09\xad\x28\x3c\x34\x09\x65\xb6\x5e\x4b\xf6\xa6\x82\x50\x01\xc3\x24\x9a\x62\x92\x11\x97\xc3\xaa\xce\x44\xc6\xed\xeb\xd0\x40\xdf\x7e\x41\x46\x84\x7d\x2b\x89\xb9\x84\x17\x0f\x86\xb8\x3c\xda\xed\xdb\x27\xbb\x5b\x5f\x9a\x71\xbc\x45\x9f\xef\x7f\x0b\xd7\x8e\xba\xe5\xb3\x54\x2a\xe2\x4b\x6d\x62\xd9\x39\xef\xaa\x43\x22\x50\x0a\x3f\x05\x87\xec\xad\x9e\x1b\x6e\x23\x1a\x9a\xd8\x28\x97\x6b\xea\xb6\xd5\xd1\xa3\x67\x82\x65\x58\x90\xba\x30\x22\x18\x52\x92\x4f\x55\x2c\xe1\xde\x15\xba\x9a\x6f\x69\xba\x43\x4c\x18\x41\x6f\x11\xa2\xba\x75\xe3\xa7\xe9\xa1\xe9\xe7\xdb\xdd\xcc\x2c\x3a\xf7\x2e\xc0\xa8\xce\x28\x48\x95\xcf\x07\xba\x51\x3e\x2c\x0b\xe9\xe3\xe0\xab\x7e\xaa\x96\xe8\x06\xd6\x2e\x50\xaa\xe3\xfa\x38\x55\xb0\x33\xdd\x41\x54\x70\xef\xdc\x81\x10\x94\x8c\x89\x4a\xa6\x93\xe2\x31\x3f\x9a\x9e\xec\x54\xbb\x1d\xf7\xea\xab\x5a\xad\x7e\x1b\x1a\xa3\x18\x72\xb0\x62\x0b\xf2\xaa\xed\x1d\x6f\xf7\xc4\xb0\x6c\xe4\xb3\x8f\x77\x5c\x87\xa0\xc5\x84\x3e\x2c\xaf\xef\xd3\xea\x15\x47\x50\x8d\xc6\xc1\x86\x41\x2d\x89\x21\x0e\xd5\xf1\x8f\x7f\x0e\x9a\x1c\x6a\xb2\xff\x12\xdf\xea\x3b\x35\xf9\xd1\x6c\x15\x63\x7b\x2c\x89\x4b\xf8\x02\x62\xbe\x54\x27\xdf\x54\x3b\x8b\xeb\xbb\x40\x8b\xd8\xca\x72\x5e\xb0\x8b\x69\x66\x1f\xad\xae\x01\xf5\xfb\xd3\x6b\xf4\x15\xd8\x6d\x56\xa1\x16\x20\xe2\x43\xa5\xed\xea\xdf\x43\x9d\x8b\x36\xcc\x3d\xdc\x0d\x26\x17\xa1\x25\x85\x32\x7a\x92\xca\x35\xfa\x95\x5f\x7e\xaa\x53\x95\x4d\x0e\x63\xed\xad\xdd\xee\xd3\xee\x74\xb3\x36\x57\xde\xa3\x01\xb5\x79\x1b\xf1\x53\x54\x87\x3c\xd8\x6d\xd8\x8f\x62\xd3\xb5\xf1\xb0\x1f\x19\x6d\xf7\x50\x67\x93\x37\x39\xc7\x98\xbc\xb0\x89\x6f\x3a\xe2\xc6\xbd\xab\xef\xe2\xbb\xaa\xe4\x85\x9f\x07\xc1\x11\x3d\x5a\x08\x6c\x25\x7e\x3d\x46\xc8\x27\x54\x6a\x92\xdb\x0c\x94\x04\xe9\x7b\x21\x46\x6c\xeb\x28\xfb\x70\xd6\x98\x45\x30\xb8\x55\x43\xda\x0c\xf2\xe7\x26\x55\x15\xfe\x48\xa7\xf5\xa2\x77\xcd\xd6\x04\xcd\x75\x52\x1f\x12\x41\x8e\x66\x6c\x74\x4f\xb0\xf0\x22\x89\x45\xdb\x9d\xdf\x04\x9a\x9d\x3f\x18\x9a\x8c\x05\xfa\x9d\x4c\xd6\xec\xec\xfe\x4d\x84\x30\xac\xd9\x13\x8d\x75\x55\x16\x39\x4b\x63\xb4\x54\x4e\x06\xaa\xbf\x72\x52\x4d\x0c\xf3\xd5\xcc\x84\x65\x6e\x79\x28\x80\xe3\xe5\x22\x1e\x80\x6c\xdd\xea\x5e\xb3\xea\x0c\x0e\x5d\x24\x23\xf7\xa9\x9b\x27\x72\x34\x4d\x32\x5d\xf0\x04\x72\xd4\x12\x78\xd9\x8a\xf8\x91\xf4\xc0\xad\xc9\x8b\x47\xaa\x02\xf3\x53\x3c\x00\xf4\xb1\x26\x3b\x3e\xa5\x9d\xa0\xf5\x2a\xde\xf7\x8a\x25\xf1\x43\x2d\xb6\x74\x1c\xcb\x1d\x92\x38\x38\xae\xf0\xa7\x46\xf8\xee\x0e\xab\x5f\x7d\x35\xf4\x93\x76\x53\x6f\x03\xa7\xd1\xf5\x91\x6e\x22\x5e\x56\xf5\xe2\xc4\x9a\x4f\xbd\xe3\x28\xb1\xe5\x50\xa9\x6a\x5c\x52\xaa\x1a\x97\x1a\x34\xa2\xe6\xdb\x79\x49\xdc\x8c\x96\xf8\x8f\x7f\xee\xbe\x06\x5a\xde\x50\x06\xc9\x1f\xd6\xfa\x35\x71\x6c\x48\xf7\xd6\x81\xaf\xe7\x9c\xf9\xe4\xe5\xda\x50\x51\x41\x9b\x3e\x44\x94\xe1\x5f\x51\xc2\xcd\xdf\x1b\x9b\x76\xee\xdd\xdb\xee\x66\x29\x5b\xe3\x28\x6b\x2d\xe7\xb3\x15\x6c\x65\x1a\x56\x0b\xeb\x95\x32\x8b\xf2\x61\x56\x76\x6d\x12\xb2\xf0\x32\x62\xf2\x19\x35\xfb\x3d\xa3\xa8\xe4\xa1\x19\xd8\xcc\xb4\xd4\x74\xf4\xb6\x26\xcc\xdd\xd6\x60\x63\x93\x44\x05\x66\x2c\xf4\x13\x4d\x96\xc0\x0a\x8f\xc4\xd2\xd7\xc0\x4e\x1e\x1b\x79\x5d\x8a\x63\x0d\x15\xd6\x3c\x71\xda\x87\x04\x84\xa7\xfb\x85\xb3\x96\xbd\xdb\xf9\x8d\x3a\x6b\x17\x8d\x50\x25\xf0\xcc\x6e\x29\x8c\xea\x2d\x3d\x8e\x4d\x12\x13\x5b\x96\x04\x16\xdd\x2b\x35\x6a\x59\x6f\x98\x32\x1f\x68\xe7\x69\xcc\xa8\x20\x2c\xca\xbb\x23\x25\x56\xba\x1d\x10\x21\xf6\x96\x1b\x2b\x5c\xab\x82\x3f\x4a\x96\x94\xd0\x25\xc9\xb2\xc8\xeb\xb1\xcf\xdb\x37\xd7\xce\xfb\x46\x54\x8b\xb9\x48\x52\xfd\xc5\xb3\x63\x95\xee\xcc\xc1\xf6\x30\xea\xe5\x6c\xb5\x22\x80\xc0\x96\xe3\x6f\x1f\x55\xf8\xb1\x38\x4a\xc2\x34\x86\x38\x34\xfe\x77\x33\xf0\xc4\x57\xae\x45\x91\x6c\xfd\x75\xe0\x67\x1f\x59\x39\x20\x05\x9f\xea\x16\xa0\xe1\xc4\xf5\x27\xbf\x51\x0b\x28\xb3\x83\x54\x44\xc1\xd0\xd3\x40\x77\x94\x5f\x3b\x70\x36\xe1\x9d\x5c\x3b\x0f\x03\x1d\x0c\xd1\xf9\x75\xa3\xfd\xce\xcc\x23\x74\x5b\x30\xa0\x64\x21\x70\xf4\x85\xaf\xab\x29\xd4\x45\x35\x67\x7a\x13\xd9\x3a\x8a\x98\xeb\x88\x39\x48\xa7\x2e\x21\xce\x20\xf9\x7e\x87\x4e\x25\x01\xf0\x21\x11\x17\xc8\x2f\x02\x0d\x53\xea\x50\xde\x21\xd2\x1c\x47\xce\x82\x5c\xfc\x9b\x14\xc2\xf8\x2f\xa8\x5b\xde\x33\x71\x9c\x32\x64\x4f\xb6\xaa\x52\xf2\x18\x07\x19\x38\x93\x9f\x34\x8e\xd3\x15\xc2\x93\x01\x4b\x08\xd8\x2e\x4e\x9e\x4b\xb4\x81\xc4\x33\xb6\xa9\x9a\xed\xa5\x29\x41\x14\x67\x6a\x5e\xbb\xa2\x64\xa5\x1a\x42\x1f\x60\x35\x3b\x95\x47\x27\xc4\xbc\xa9\x1a\x6f\x69\x12\x4d\x28\x1e\x36\x94\x11\x71\x29\x67\x68\x32\x24\x4a\xd5\xe3\x53\xfd\x03\xb0\xf3\xe4\xa1\x33\x32\xa2\x5d\x90\xfe\xd1\xc1\x5b\x0a\x22\xf5\x29\xe3\x0a\x3f\xfb\xa7\xdb\xd1\x60\x50\x26\x50\x05\x45\x0b\xef\x82\x76\x31\xfa\xa9\x6a\x9d\xde\xa1\xf3\x0b\x0f\xfb\x88\x46\xa5\x0d\xad\xed\x4a\xd5\x8e\x58\x72\x4b\xc1\xba\x6e\x39\xca\xf8\x82\x35\x59\x8e\x7c\x11\x53\xe3\x09\x3a\x80\xb0\xd5\x0f\x6b\x0d\xca\x4b\x1a\xea\xfe\xe7\x23\xcd\xd7\xf1\x08\x8f\x38\xcd\x8b\xdd\x55\xc2\x21\x7f\xa0\xfa\x4c\x99\x9b\xd2\xef\xb3\x0c\x9c\xae\x47\xbe\x4d\x33\x2d\xdc\xdd\x4d\x9e\x84\x48\x67\xca\x3f\x50\xd4\x39\x02\x11\xa3\x55\x29\x42\x97\x4a\xd5\xe1\x96\xdb\x7d\x64\x01\x18\x85\xa9\x92\x3d\xb9\xa0\x55\x03\xb5\xf0\x77\xdf\x64\x5d\xa4\x05\xdc\x27\xd6\x65\xfd\xf5\xa6\x11\x0c\x8c\x39\x39\xa1\xd1\x2a\x6c\xde\xd6\xde\x8d\x88\x7b\x99\x19\x4c\x2a\x9a\xec\x25\x22\x26\x23\x36\xfd\x42\x9f\xea\x94\x60\x20\x5b\x38\xaf\x7c\xf4\x88\x1e\x52\x44\x45\x9a\x11\x90\x55\x14\x16\xfb\xea\xe6\x9c\x0f\x6a\xee\x25\xbe\xd1\xf7\x3e\xc2\x01\xfa\x62\xef\x60\x4f\x88\xec\x8b\x9f\xbe\xdd\x0c\xb6\x58\xa1\xf8\x51\xe2\x3b\xaa\x8d\xdd\xb5\xa6\x5b\xa5\x1b\x39\xf4\x75\x41\x7d\xfb\x11\x0e\x78\xf1\x20\xa8\xd6\x85\x78\x13\x28\x0d\xbc\x1f\xe9\xfe\x1d\xe9\x19\x81\x5b\x86\xec\xee\xa6\x82\x8e\xde\x74\x80\xb0\xbc\x1c\xda\x2c\xb4\x5d\x0e\xb5\x82\x17\xa3\x3d\x26\xd9\x67\x43\x0b\x89\x7e\x2d\x62\xbd\x1b\x04\xab\x2b\xca\x24\xe2\x8a\x2a\x96\xfa\x26\x5e\x04\x9d\x03\x1d\xe0\x5b\x94\x3f\xba\x01\xe2\x21\xe1\x8e\x5c\x53\x3d\x19\xb6\xe0\xe0\xff\x08\xfc\x81\x7c\x2c\x50\xa9\xfb\x55\xad\xc6\x73\x9c\xb6\x81\xf3\xf1\xf4\x80\xaf\x06\xfe\xf0\x7c\xfb\x19\x3b\x00\xb5\x09\x21\x8a\x0c\xaa\xe4\x75\x63\x18\x5c\x4e\xd1\x2f\x9b\xf3\xf8\x53\x47\xb2\xfe\x3f\x47\x4a\xfe\x52\x05\xbb\x9e\xed\x3e\x36\xe1\x1c\x35\x7f\xef\x39\x2a\x79\xf1\xc4\x4f\x8e\xbc\xee\xdf\xaf\x3c\xbe\x56\x1d\x1a\xd8\xc1\x67\x15\x72\xfa\x3a\xb5\x71\x79\xbc\x3d\x52\xb4\xe6\x1a\x65\x72\x07\xec\x4c\xe1\x39\xba\x67\xcd\x8b\xe9\x3f\x4c\x9b\x99\xb6\xfc\x57\xff\xce\x9a\xae\xd0\x47\x9e\x37\xf3\xc6\xaf\x11\x40\x09\x5f\xe4\x61\xc2\xdb\xe3\xd1\x4c\x2a\xaf\xde\x61\x59\x50\xcb\xd1\x7f\xe5\xb7\xd0\x96\x12\x64\x5e\xcb\x09\x12\x5c\x75\x1d\x9d\x34\x33\xc9\x2b\x76\x50\x26\xdd\x29\xef\xbe\x76\x44\xc7\xa4\x16\x25\xf8\x0e\xd3\x32\xe7\x47\x23\xad\x2f\x7f\x41\x4b\x2b\x78\x77\xfc\xe1\xaa\xc9\xba\x93\x4a\x8f\xf0\x2e\x1d\xb8\xee\xf0\x75\x33\xae\xbb\x81\xb7\x7a\x79\x27\x78\xd2\xa3\x3f\x32\xdb\x8d\xc0\xc7\x9b\x6c\x3d\xf3\x0c\xff\xf4\x4f\x94\x64\xf5\x25\xc5\xab\xbb\x04\x57\x3a\xfe\x21\x27\x96\xb5\xd8\x37\x93\xba\x8d\xf9\x9e\xa2\xf3\x68\x31\xfd\x4b\xba\xf5\x3b\xd1\xf1\x63\xa1\xac\x78\xad\xa5\xa4\xf5\xdf\x19\xf9\x96\xd8\x3b\xce\x28\x6c\x31\x36\xbd\x49\x05\x22\x67\xa1\x11\x89\x1f\x2d\xe7\x74\x84\x98\x86\x34\xe3\x64\x03\x28\x7c\xbe\x1d\x9a\x2c\x8b\x78\x14\x29\xad\xbd\xa3\x41\xdd\xa1\x5b\x1d\x6c\xfd\x14\x6c\x2d\xfc\x00\xb2\xfb\xf7\xb5\xa9\xe1\xfb\x9a\xe0\x93\x86\x11\x35\x93\xbd\x38\xc6\x0f\xa8\x1e\x46\x70\xdc\x50\xd6\xf7\xa7\x5c\xc4\x8e\x4d\xb8\xe4\xb2\x36\x64\x30\x68\x86\xf1\x6b\x85\x13\x03\x3f\x93\x6c\xc0\xf6\x4f\x1f\xf0\x82\x67\xb3\xb3\xee\x4d\x13\x33\xae\xb0\x26\xec\xdb\x4c\x2a\x7f\x64\x98\xf7\x02\x71\x20\xa8\x2e\x56\xa0\x2a\x4d\xbc\xba\x30\x33\x03\x92\x33\x73\x77\xf9\x7b\xaa\x85\xf6\x3d\xd7\xbd\x29\x9f\xcb\x9f\x33\xcf\xd1\xce\x60\x8f\xa5\x40\x9d\x42\x6f\x06\xba\xc1\x71\x41\x69\x91\xb1\x74\x83\x78\x09\x31\x85\x98\x16\xad\xd0\x89\x75\x2b\xc2\x88\xa7\xbd\x88\x3e\xe2\xef\x22\xc5\xbe\x8b\xa0\x28\x56\x46\xaa\x17\x6b\xf2\xc2\x24\xb6\x6b\x5a\x9a\x12\x58\x13\xd7\x71\xfd\xd7\x84\x84\x5a\xdc\x88\x13\x3b\xfb\xbe\xd2\xe1\xfa\xc1\xc8\x9f\x25\x77\xd5\x6a\xe1\xc3\x37\xdf\x49\x4b\x15\x3d\xe4\x0f\x03\x35\x47\x86\xe3\x99\x18\xb6\xe2\xc2\x35\xe9\x13\xec\xdd\x9b\x23\xe5\xfc\xc9\xe2\x53\x50\x17\xf8\x40\x15\x5e\x5d\x5b\x05\xe2\x5c\x4d\xd9\x30\xbb\xe7\xd7\x1e\xab\xbd\x92\x0e\xd3\x88\xb5\x95\xd8\x12\x54\x09\x16\x9c\x52\xe7\x53\x91\x45\x83\x09\x7d\x34\x1f\xd1\xc0\x20\x9e\x37\x48\x10\xf6\x70\xa7\x7f\x77\x8f\x6e\x1c\x5c\x55\x85\xe2\xcf\x90\x01\xa0\x9e\xb8\x8a\x93\x1b\xfd\xe5\xcb\x9e\x5c\xf4\x0a\xab\x1c\x20\x8f\x3d\x8e\xf4\x4a\x2c\xd4\x5a\x5f\xf4\xde\x9d\xd5\x61\x89\x32\xf8\xee\xa8\xa6\x35\xa5\x66\x34\xe7\x10\xa6\x98\xce\x4e\xb7\x1b\x3f\xc5\x50\x20\x2c\xc6\xcf\x51\x98\x40\xaa\xb0\x6b\x4d\x21\xac\xde\x69\x1a\x79\x0f\x89\xc2\x28\xe3\x74\x6e\x89\xd3\xb7\x94\xf6\xb8\xc4\xa9\xc4\x64\xab\x93\xd5\x65\x22\x7a\xdf\x04\x62\x0a\x0b\xe1\xa2\x12\xb4\xba\xad\x94\x72\xd7\x6b\x61\x3d\xb3\x5d\x32\xd3\x73\xd4\xcc\x0b\x35\x5b\x9f\x9a\x70\x87\x09\x8b\xc7\x7c\x03\xbc\xb5\xe6\xf9\xd8\x37\x29\xb1\x40\x35\xcd\x1e\x2f\xc8\x64\x59\x2b\x82\x6b\x37\xc5\x82\x9f\xe8\xd4\xd5\x29\x3c\xa0\xe1\x2c\x8a\x3a\xfc\xfe\x5f\x52\x78\xc6\x24\xe3\xba\x9e\xda\xdc\x40\x12\x27\xd3\x53\x7a\xd2\x48\x80\x5a\xd4\x77\x05\xcc\xe6\xdb\x23\xa5\x3a\xfd\xd7\x6a\x14\x0a\xc7\x41\xcb\x74\x6f\x25\x64\x26\xed\x3b\xe8\xfa\x69\xdd\x6f\xfe\x77\x75\xf7\xba\xe9\x20\x4a\xb8\x79\x22\xd5\xcb\x47\xb4\xce\xf8\x75\x63\x2b\xa2\x6f\x96\x81\xf6\x51\x42\x3c\x33\xae\xed\xed\x39\x92\xef\x07\xaa\x28\xba\xd5\x30\x1d\x8f\x06\xc3\x2c\x5d\xb6\x54\x5e\xa2\x1d\x76\x2d\x50\xe3\xb6\x77\xe9\xaa\xe5\x64\x7c\x7c\x4b\xba\x6d\xf9\x40\xc2\x88\xe6\xaf\x15\x02\xf1\xaf\x1d\x04\x04\xc6\xc0\xc2\xec\x40\xe2\x7e\x79\xa4\x9c\xb1\x7f\xa8\x0c\x34\xcf\x57\x4b\x45\xea\x0d\x6b\xb2\x02\xb7\x16\x17\xc6\x0a\x6f\x62\x4f\x44\xdf\x18\x3b\xfe\x8e\x8a\x21\x3f\x54\x50\xd1\x30\x0d\x53\xc4\x4e\x3c\xc9\xc3\x0a\xe0\x79\x58\x69\xba\x54\x47\x00\x68\x8f\x12\xb1\x5a\x4e\xb3\x1f\xf9\x00\x33\x2f\xb5\x28\x4c\xab\xf3\xb4\xba\x1d\x49\x9e\xc6\x51\x57\x59\xd2\xc8\x21\xed\x61\x4f\x47\xdd\x8e\xcb\x97\x22\x2e\x83\x39\xae\xe0\x96\xe3\x3c\xfb\xf9\x48\xb9\x3a\xa3\x49\x24\xab\xa2\x69\x58\xb4\x90\x96\x49\xf8\x37\xba\xc4\x2b\x55\x85\xaa\x66\x26\x79\x5b\x2f\x0b\xa2\xcc\x63\x9b\x89\x0e\x43\x1b\x16\x26\x2c\x63\x83\x29\x3a\x4b\x1f\xd2\x1d\x12\x19\xc4\xad\xd7\x35\xff\xc2\x81\x76\xd8\xaf\x0a\x18\x2e\xfe\x9c\xda\xac\x57\x9e\x6d\xd2\x15\x6f\xa7\x43\xd0\xf4\x5c\x11\x7e\x41\x77\xfa\xb6\x04\x92\x64\xf5\x6f\x21\x84\xcb\x58\x8c\xee\xbb\xa8\x7a\xd3\xfd\xc0\x18\xec\xc6\x48\xb1\xb8\x2e\x51\x94\x71\xd3\xd1\x2f\x29\xaf\xa4\x2a\x16\x20\xb8\xef\x5e\xab\x52\x7d\x24\xeb\x3f\x0b\x54\x5c\x39\x8a\xb8\xe2\xd0\x49\x9f\x7f\x51\x30\x76\x10\xac\x52\x7a\x5b\x22\x0f\xf1\x46\xa0\x65\xde\xa9\x8c\x17\x12\x2b\x7d\x37\x11\x48\xdb\x2a\x16\x86\x86\xfb\xa7\x14\x0a\x40\xb5\x9b\xe8\xd4\xbb\x03\xde\xac\x03\x76\x20\x3c\x00\xc4\xec\x1c\xe7\xf5\x04\xcd\xdc\x70\xb5\x53\x6b\xe3\x95\xd4\x4b\xed\x55\x5b\x10\xb7\x1b\x1f\xb7\x1d\x0d\x19\x1e\x57\xd3\x67\x23\x64\x6d\x5f\x6b\x1a\x58\x2c\x44\x71\xcc\x85\xae\x60\xce\xf0\x48\x6a\xd5\x2d\xda\x56\xdb\x71\x96\x21\x73\xb8\xd7\x28\xf2\x53\x64\xe9\x92\xd5\x5e\xb9\x5b\x1c\x44\x1d\x68\x3a\x2d\x76\x28\x82\x20\x9a\x55\x38\x05\xe0\xf1\xab\x39\xd8\xd8\xc6\xbb\x31\x94\x13\x96\x8e\xb2\x75\xdb\xd1\x19\x8f\x8a\xb9\x2d\x64\x27\xbf\xc4\xbb\x6f\x63\xa4\x24\x6e\x37\x5c\xfd\x6d\xba\xcb\x69\x68\x0a\x29\xf7\xe5\xc6\xd1\xf7\xc6\x15\xc1\xa8\x53\x70\xec\x1a\xd0\x3a\x7a\xd8\x7d\xa3\xe5\xa8\xe5\x43\xd8\xfb\xb5\xde\xc4\xd6\xae\xf8\xec\x2c\x29\x32\x64\x11\x7a\x57\xee\xb7\xb4\xfb\xd9\x15\x6d\x87\x68\xca\xb8\x20\x63\x48\x84\xd1\x3b\x8a\x7e\xbc\xa1\x12\xfd\x33\x4a\xc6\x64\x29\xea\x26\x6c\xd5\x82\x42\xea\x84\x16\xb6\x39\xa1\x00\x72\x43\x93\x4e\x56\xcb\xc7\xb9\xfb\xba\x51\xd1\x87\xca\xe3\xed\x43\x7a\x2a\xc2\xc8\xf1\xc7\xc8\x42\xc6\x2d\x38\x5a\x75\xee\xe1\x78\x56\x0a\x99\x89\x3a\xe0\x7f\x91\x45\x26\x0b\xfb\xe8\x70\xa3\x97\x85\x6a\x8f\x5f\x37\x75\x3a\x56\xaa\xd2\xc9\xe9\xce\x8b\x36\xb9\x82\xec\xeb\x85\x95\x47\xd8\x0c\x88\x28\x37\xa8\xab\x20\x63\xaa\xea\x1b\xe0\x70\x3b\xeb\xc5\x24\xa3\x57\x8b\xd5\x89\xd6\xcc\xc1\xcd\x8b\xd4\xfd\x44\xcf\xfa\x0e\x6e\x16\xce\xba\xf1\x76\x44\xb5\x71\xe2\x32\xe9\x72\x79\xe6\x34\x6a\xab\xdf\xe1\x37\x0e\x82\x6a\xba\xcb\x55\x18\x9d\xf4\x25\x2d\xd8\x0e\xd8\x6d\xad\x8e\x17\x3d\x3b\x41\x17\x20\xfe\x13\x0d\xdd\x38\x56\x1e\xe5\xc2\xd7\x05\x91\xea\x46\x60\x87\xad\xd3\x5f\x76\x12\xd6\x9e\x40\xb2\xad\x23\xd5\x52\x2f\x4e\xd3\x01\xec\xa6\x61\x6c\xb0\x07\xc3\x72\x1c\x9b\xeb\x6a\x28\xf6\xd0\x9a\x7f\xca\xbd\x98\xb1\xd8\x14\x86\xd1\x98\x3b\xad\x6c\x50\x4e\x6b\x6d\xa9\x74\x65\x57\x75\xa7\x45\xbb\x55\x69\x5a\xdf\x1b\xf9\x16\xe8\x1e\xfa\xe6\x58\xb8\x98\xc5\x39\x27\x18\x6f\x19\xc7\x1a\x7f\x28\x7f\x76\x74\xea\xcc\x3c\x79\xe4\xbf\xf2\x85\xdf\x9e\xff\xc2\x6f\xcd\xfd\x12\x05\x69\x67\x31\xe4\xa8\x8d\x68\x1e\xb3\x33\xa3\xb6\x33\xbd\x1e\xf8\x41\xfb\x3d\xba\xf7\x62\x8c\xa9\x27\xcb\x57\xb4\x92\xe7\x15\xed\x52\x7b\x0c\x5f\x0d\xf3\x90\xf7\x10\x30\xb0\xec\xb6\x83\xeb\x2a\x5a\x97\xd5\x7a\xd4\xe5\x16\xd2\xe0\x56\x87\xc2\x91\x50\x74\x34\xb8\x11\x07\x83\x00\x49\xab\xd3\x8e\xef\x1f\x6a\x6e\x20\x54\x8e\x6b\x5f\x91\x75\xd4\x1f\x02\x39\x6b\xed\xdd\xeb\x2a\xf3\xea\x59\xe0\x8b\x9d\xae\x49\x78\xa6\x3c\x67\x63\x69\x6f\xba\x4b\x22\xf3\xad\xcc\xff\xbb\x03\x98\xb1\x1e\x9a\x76\xbb\xcd\x13\x74\x1a\xb9\x9c\x31\x39\x8b\xf8\xc0\x7d\x2a\x50\xa5\xc4\x29\x57\xb7\x67\x51\xbe\x24\x59\x0f\xee\xc8\x9f\x8e\xd4\x84\xe7\x4f\x1b\x54\xab\x0e\xb4\x17\xa3\x6c\x20\x48\x50\x35\xfc\x91\x0e\xc1\x25\x15\x01\xf3\xc2\x0c\x86\x4c\xc8\xc5\xb4\xef\x34\xfe\x3e\xbf\x69\xa0\xd9\xb6\x5f\xb1\x79\x61\x33\x1c\x1a\x02\x46\xae\xbe\x88\x80\x94\x9b\x98\x8e\x5d\x3b\x2c\x8b\xd5\x9d\x4a\xde\xe3\xcf\x78\x01\xb1\x8e\xa7\x12\x6f\xdd\x4d\x23\xc6\xcd\x73\x78\x74\xce\xe8\xc3\x75\x5d\xce\x61\x49\x49\x85\xf6\xa4\xca\x83\x93\x22\xaa\x6a\x41\x13\xef\xf0\x3f\x8e\x90\x86\xe2\xe7\x9a\x9e\x45\x81\x3f\xc3\x61\x45\x69\x29\x9e\xc0\xca\xe2\xdf\x50\x7d\x8a\x85\x34\xcb\x52\x82\xca\xfb\x6c\x75\x43\x09\xe4\x6d\x80\x13\x57\xa7\x9a\xe6\x29\xe5\x79\x62\xf5\x58\x5d\x8b\xe8\xd5\xef\x51\x5e\xbe\x49\x6c\x12\x7e\xce\x0a\x4a\x30\x23\x6f\x9a\x38\x71\x03\x13\x25\x8b\x99\x19\xc0\x3d\x19\x7b\xf7\x24\x6d\x51\x19\xec\xf9\x94\xfe\x9a\x2a\x03\xb2\x28\x34\x13\x2a\x74\x63\xcc\x83\x86\x29\x84\x81\x91\x61\x5d\x56\xa8\xa8\xe7\x7e\xfd\x3f\x6c\x79\xf2\x01\x66\x60\xc2\xba\x68\x82\x6e\x96\xf1\x30\x23\xa3\x7f\x2f\x1a\xf2\x81\xce\x16\x4e\xe8\x46\x44\x83\xfe\xcf\x4c\x3b\xae\xee\x34\x5a\xd9\x32\x99\xa4\x78\x21\xca\x68\x14\x70\x50\x16\xde\x1b\xbb\x84\x2a\xe3\xab\x2a\xb2\x65\x9b\x11\x17\x15\xe4\xad\xb3\x23\xdd\xe3\xab\xbe\x34\x9a\xd9\x37\x95\x76\x33\x15\x8a\x43\x12\x03\xf6\x96\x57\xe0\xfc\x49\x49\xf0\xb8\x8b\xe2\xe2\xfa\x8d\x52\x08\x8f\xea\x9f\x2a\xfb\xcb\x7f\xaa\xa4\xe8\x7b\x59\xba\x92\x40\x51\xd3\xc9\x0f\x54\xd1\x08\x29\x24\x9a\x0e\x8e\x98\x5b\xdd\x35\xfe\x8f\xa6\x01\xb8\xe9\xd9\x84\xbb\x65\xec\x25\xa6\x64\xbc\x2f\xd4\x3a\x72\xe9\x4a\x3c\x51\xd3\xa5\xad\xee\xa1\x88\x1a\xb7\x9c\xf0\xfa\xed\xc0\x97\xea\xe9\xe2\xa2\xcd\xa2\xa4\xa7\x18\x5d\x5f\x0b\x14\xc7\x8f\x55\xab\x9c\x40\xe4\x6f\xfd\x7d\x3e\xc6\xbe\xa7\xc8\x50\xdf\x41\x1e\x89\x0c\xf5\x0f\x1b\x75\x41\x17\xa3\xa2\xd8\xd2\x5c\x3d\x37\xd2\x73\xe3\x3d\x6a\xcc\x6e\x42\xb2\x2d\x70\xc6\x93\x2c\xcf\xcc\x6f\x94\xc0\x6b\x58\x0e\xca\x98\xd0\x54\x13\x4a\x73\xff\x53\x25\x3c\x39\xb5\xa6\x48\x70\xdb\x3b\x4d\x8d\x68\x56\x12\xef\xb6\x54\x19\xc4\x1b\x92\xdf\x04\xda\x90\xa9\x2c\xc2\x3e\x4e\x7d\x24\x36\x47\x29\xdf\xe4\xd7\x63\xa0\xaf\x99\x83\xa4\x77\x19\x25\xbd\xd2\x5b\x6a\xe0\x1c\xdd\x8e\x16\x10\xbf\x19\xcb\xd8\x67\x0e\xb6\x33\x5b\x98\x28\x9e\x74\x50\xc0\xff\xf9\xa1\x35\x55\xac\x9f\xf5\xdb\xf7\x57\x9f\xec\xd4\x06\xdd\xb5\x2a\x9e\x06\xa2\x4c\x18\x76\xfc\x05\x86\xe7\xf1\x1b\x75\xf7\x7b\x51\x3c\x48\x33\x56\xb9\xc2\xe9\xc7\xba\xd2\xfc\x66\x2c\x0f\xdb\xbb\x97\xa6\x20\x43\x3e\xba\x40\x8a\xab\x42\xba\xb4\x06\xc2\x74\x60\x1f\xf2\x98\x6c\x2d\xc0\xff\x14\x79\x8f\xa1\x2f\x37\xb5\xa6\xd4\x0e\x8e\x8e\xd4\x50\x0d\xb0\x57\x24\xc4\x38\x30\x9c\x94\xb0\x9f\x58\xec\x7c\x0a\x9d\x33\xc4\xb3\x4d\xd5\x22\xc8\x6d\x58\x66\x51\xb1\x0a\x13\x25\xad\xa5\x82\x38\xca\x6b\x44\x20\x25\xf4\x27\x1d\xd6\xc4\xf5\xd7\x6f\x68\xd6\xfd\x9d\x60\x2b\xfd\x43\xa0\x0d\x26\x29\xfa\x69\x82\x74\x1e\xe8\x09\x16\x0d\xe7\x37\x8d\xe1\xcb\x14\x85\x1d\x0c\xd1\x19\x46\x37\x1d\xd3\x3f\x7e\x3d\xd2\x54\x96\x30\x2e\xbb\x36\x9f\xf4\x5d\x9f\x2b\xd8\x7d\x35\xe8\x19\x7a\x01\xe7\x95\x5f\xcc\xba\x6a\x43\x15\x36\x8e\xf3\xa9\x2a\x8b\x12\x68\x83\x17\xae\xb9\x48\x45\xbb\x0c\xba\x3c\x27\x85\x49\x2c\x42\xdf\xf1\xa7\x45\xd8\xb7\x0f\xf9\x2f\xfb\x59\xc2\x73\xb3\x4f\x78\xa0\x4c\x90\x8e\x8d\xb4\xbe\xbc\x22\xf9\x32\x83\x03\x59\xdf\xc3\xec\x59\x87\xb9\x13\xa0\x3e\x38\x38\xf6\x74\xaa\x92\xe4\xb8\x62\x8e\x0c\x4d\xb6\x94\x2b\x8d\x45\x46\x3b\x89\x82\x9d\xca\x7b\xac\xc9\xd3\x64\x77\xcb\xf5\x32\xa0\xe9\x23\xdd\x40\x85\xdd\x38\x8d\xd4\x56\x86\xc2\x74\xf9\xc2\x06\xf1\xde\xd4\x40\x24\x30\x4e\x18\x41\x96\x7f\x83\xbe\x23\xbe\x3c\xab\x19\x48\xeb\xd7\x1f\xff\xb1\x35\x8e\x57\x81\xbe\xd1\x45\x3d\xfe\xb8\xa8\x4a\xc9\xa2\x5f\x66\x79\xd7\xac\x4e\xb5\x9c\x8f\xc9\x06\x2e\x4a\x9c\x47\x5a\x4e\x40\x9e\xc1\x9b\x58\xb7\x70\xa8\xc4\x89\x7f\xb1\xc9\xe9\x61\x98\xe6\x51\x15\x11\x38\x20\x49\x8d\xa0\x3d\x49\x6b\x8d\xa9\x67\xe2\x98\xda\xa9\xfc\xc8\xb4\xd1\xc2\xf5\x91\xd7\x33\x1d\x6f\xec\xee\x9b\x6b\xe7\x43\xd1\x76\xc1\x38\xf6\x43\xa5\x1b\xff\x61\xe0\x31\x24\x89\x79\x25\x6a\xe9\x42\xe3\x82\xb2\xb0\x1e\x77\xb4\x27\xcf\xbe\x61\x15\x22\x5f\x6d\xf9\x21\xc2\x6e\xea\x4c\xf0\xeb\xb5\xad\xbf\x33\x3b\xeb\xcc\x09\x10\xc2\x91\x3c\x71\x6f\x8b\xdf\xb8\xca\xed\x95\x34\x4a\xe0\x40\xa6\x08\xd9\x07\x38\x71\xbd\x31\x52\xdd\xf8\x5d\x1d\xc9\x13\xc4\xcf\x07\x82\xc9\x32\x38\xfb\x4e\xe0\xe9\xfc\xbf\x08\x14\xb9\x0d\x15\x17\x16\xc9\x25\x9d\x03\xaf\xeb\x8a\x23\xec\x47\x76\xd9\x4e\xaa\x88\x78\x5e\x25\x1e\x3f\x18\xf9\xed\xf7\x4d\x94\x63\xcc\x27\x1e\x2b\xd3\xf7\x4f\xb7\x17\x4d\x2c\xba\x32\xc0\xf7\xac\x63\x05\xf3\x1b\xcf\xac\x89\xb2\x61\x9a\x09\xd2\x85\xcb\x28\x35\x7a\x3b\x3d\x7a\xca\x13\x87\x87\x69\x92\x47\xca\x66\x4c\x56\xbd\x3f\x6f\x36\xc6\x20\x0f\x33\x07\xdb\x79\xe9\xe4\xca\xd1\xda\x63\x14\x74\x4d\x62\x1e\x27\xdf\x25\xaf\xd3\x0a\x93\x70\x0f\x83\x43\xa3\x90\x5f\xbb\x1e\x7d\x5a\x16\x79\x3f\x4a\x44\x74\xcc\x91\xe4\xf6\x89\xa1\xe5\xba\x9a\x17\x86\x7d\x93\xf5\xa2\xa4\xb7\x93\x52\x36\xa7\x7b\xe7\x14\x8f\x28\x63\xdb\x9c\x58\xab\x42\x26\x5b\x87\x06\x1e\xda\x01\x12\xb6\xb0\x4e\xe9\x01\xe0\xa2\xef\x78\x6d\x76\x33\x58\xb0\x59\x51\x27\x7a\x69\x82\xd9\x39\x87\x5f\xca\xfb\x51\x6e\xa3\x6e\x3a\xe1\x51\xac\x80\x70\xd5\x7e\x4b\x6c\xa9\xb6\x20\x09\xab\x54\xeb\xe5\x97\x77\x55\x8b\x0a\x6b\x00\x12\x0a\xf8\x16\x37\xb1\xf2\xbc\xfd\xc3\x0b\x42\x3d\xb8\x31\x6a\x3d\xf3\x8c\xbc\xc6\xe6\x16\x6a\x94\x67\xa2\x9c\xd3\x42\x75\x13\x6b\xbe\xc6\xe8\x96\x39\x26\x72\x8c\x04\x09\x3c\xe6\xed\x98\xea\x75\x55\x2b\xcf\x84\x11\x79\x2f\x29\x05\xe4\x5a\xa2\xaf\x55\x6b\xf3\x30\x2b\x87\x65\x4c\x1c\xcf\x6a\x55\x08\x4a\xd1\x9f\x09\xeb\x63\x24\x4c\xea\xd2\xa7\x65\x52\x64\xab\x79\xc4\xa6\xa9\xe2\x33\xda\x72\x0a\x29\x57\xd4\xa3\x1f\x98\x2c\x8b\x4c\x8f\x41\xa9\x5a\x3d\x4a\x9c\x89\xc7\x73\xc6\x03\xed\xcc\x26\x5d\xaf\x4d\x87\x05\xc5\xe6\xc1\xfc\xa6\xca\x7e\x38\x78\xfe\xc7\xbf\x3e\x51\x95\x50\x9c\xcb\xd4\x36\x85\xc2\xcc\x34\x69\xdb\xb6\x5f\x49\x97\xa2\xa4\x17\x73\x9b\x49\xc6\x44\xd5\xed\xe3\xd7\x2a\x35\xed\xc5\xe9\x82\x89\x1f\x52\x3e\xf1\x1f\x8f\x1c\x79\x7e\xe1\x72\xa0\xf4\xf6\xd6\x6a\xda\x5f\x5a\xa9\xfe\xe3\x1a\x0e\xef\x04\x52\x0b\xd1\x08\x6b\x39\xaf\xc9\x33\x78\x6c\x32\x42\xfe\x8c\x9f\x70\x99\x42\xe1\x17\x79\x64\x81\xa7\x35\xa1\x34\x4a\xae\x8c\x6a\x92\xe6\x0d\xea\xc3\x03\xd3\x4b\x6c\x11\x85\x00\xee\x1f\x9a\xe6\x7a\xe9\xbb\xf4\xe5\xf9\x75\xe0\x11\x19\xf0\xa6\xa6\xb5\x52\x6d\x61\x1e\xbd\xa9\xbc\xe6\xbc\xe2\x33\x64\x69\x59\x54\x67\x12\x1d\xf6\x58\x7a\x57\xf4\x3a\xbc\x32\x26\xd3\x33\x73\xb0\x1d\x9b\x15\xaa\xbd\x45\x21\xa5\xe5\x04\xef\xbe\x8f\x8d\x21\xa2\xad\x5b\x7f\xf7\xd9\xf6\x30\x36\xf8\x0e\x22\x6e\x47\x37\x5c\x20\x8d\xbe\xf1\x3c\x18\xf6\x81\x23\x12\x5b\x8d\x31\xf4\x2a\xf2\xba\x7f\x46\xdf\x8b\x5f\x8f\xd5\x8c\x87\xa6\xdb\x99\x1d\x9a\x88\x17\x27\xfa\x9d\x87\x03\x6f\xf3\x71\x58\x79\x5c\x2e\x64\x69\x12\xe6\x1a\x01\xfe\xe1\x48\x99\xbe\xe3\x6b\xe2\xd4\xbf\xae\xd8\xb5\x5d\x1b\x9b\x15\x93\x31\xee\x1e\xa1\xef\xf7\x02\x0d\x00\xf9\x3d\x87\xab\x59\x8c\xd3\x15\x87\xe1\x40\x62\x09\x74\x10\xee\xde\xff\xaa\xfc\xca\x5b\x6b\xfe\xca\xba\x65\xb2\x14\x25\xad\x2a\x30\x89\xae\x3a\x45\x2c\x7e\x33\xb6\x5b\x66\x67\xdb\x49\xba\x6c\x63\x39\x1c\x44\x75\xd9\x8f\x3d\x8f\x29\x70\xa6\x1d\x44\x36\x9b\xf4\x7d\xa8\x4b\x6a\x26\x75\xa1\x66\x9d\x42\x8b\x04\x15\xca\xa7\x63\xe5\x9d\x64\xfd\x64\x55\x16\x25\xbd\x6d\x0d\x34\xe1\xb0\xaf\x0c\xcd\x71\xce\x81\xa2\x87\x05\xf0\x11\xb6\x02\x3e\x61\x53\x19\x8a\x11\xe4\x49\xbb\x4a\x6d\x39\x30\x24\xe5\x58\xb1\x24\xa0\x37\x30\x89\x52\xf7\xfb\x39\x7d\x6f\x7e\xdd\x94\x07\x64\x66\xc8\x3e\xee\xa8\xe1\xd9\x1f\x1a\xd9\xd6\xb5\x40\x39\x59\x6c\xb8\x9c\x60\x31\x0d\x4b\x6f\x30\x86\x48\x70\x4d\x29\xb0\x9f\x57\xdd\xf6\xf7\xdc\x49\x1c\x56\xc9\x41\xd7\x66\xf9\xa4\x12\xb0\x3b\x89\x8f\x43\x4f\x86\xc5\x5c\x90\xc2\x4c\x72\x09\x20\x9d\xdf\x06\x1c\x48\x91\x99\x65\xeb\x05\x33\x84\x9d\xec\x03\xeb\x19\xed\x0b\x9f\xa5\x10\x7b\x9e\x39\xc8\xf1\xe6\x1a\x50\x11\x02\x34\xa9\xf6\x92\x24\x9c\x0d\x9e\x9a\x0b\x65\xb8\x44\x21\x4d\xb4\x66\x68\xaf\xe0\x21\xf0\x68\x51\xa9\xd2\xcd\xb8\x9e\xf0\x18\xa9\x7a\xa6\x3d\x28\xe3\x22\x5a\xb5\x26\xa3\xfb\x8e\x9e\x0f\x0e\x68\xa4\x86\x5c\xf4\x0a\xe4\x41\xe1\x94\xc3\xc5\x10\xbd\x69\xe6\x84\xd1\x2f\x79\x7e\x98\xab\x2c\x96\xdd\xd3\xa1\x34\xe5\xbf\xdf\xa3\x34\xb9\x1f\xa2\x01\xb0\x80\x5c\x7d\x41\x92\xa4\x83\x28\xb1\x0f\xa6\x73\xca\x73\x4c\xd2\x64\x39\x75\x98\x4b\x27\x80\x58\x7d\x18\x92\x47\xec\x1b\x94\xe9\xf7\x5d\x3e\x13\x9a\x61\x51\xba\xa3\x12\x2b\xf2\x1b\x81\x32\x29\xfd\x86\x1a\xbd\xf5\xa3\x62\x57\x55\xa7\x39\x4f\x61\x47\x27\x39\x42\x6d\x48\x74\xa8\x6e\x6a\x3c\xf3\x07\x78\x9a\x5c\xd6\x2b\x17\x65\xd8\x1a\xe2\x91\xbf\x1f\xf8\x23\xe4\x03\x25\x9d\x1a\x66\x86\x15\x02\x9c\xbb\x86\x3a\x97\xc6\xaa\x99\x6a\xed\x45\x83\xaa\xfa\xf6\x3e\x35\xba\x76\xd8\xdd\xd1\x82\x76\x0c\x8e\x44\xdf\xe4\xb6\x0a\xba\x83\x28\x5e\xb2\xc9\x14\xfd\x22\xd2\xc9\x5f\x8c\xd4\xa8\x95\xbb\xf2\x4e\x47\xcf\x9d\xe1\x10\xee\x63\x38\x9b\x9a\xf7\x0c\xb3\xb4\x5b\x86\x76\xa7\x6f\x56\x80\x4f\x81\x00\xfb\xdf\x68\x66\xc8\x3d\x9c\x73\xfc\x46\x19\x0c\x4d\xae\xf9\xb3\xf2\x9d\x91\xb6\x6e\x1a\x3b\xd0\xaa\x03\x26\xea\x2a\xad\x99\xbb\x4a\xad\xec\xae\x2b\x9f\xc2\x34\x4e\x93\x29\xdf\xb7\xdc\xdd\xf1\x24\x1e\x2e\xfa\x9d\x41\xdd\xa1\x69\xfd\x1f\x07\x9c\x9b\x5b\x03\x0c\xd2\x74\xd3\xa1\x97\x3d\x71\xfe\x02\x0e\x88\x73\x52\x21\xeb\xff\x55\x8d\xc6\x96\xc7\xab\x7b\xe8\x59\xb3\xf9\x12\xee\x39\x26\xe6\xbb\xe8\xd6\x62\xa9\x4d\x82\x70\xeb\x4c\xb5\xaa\xe5\x85\xa0\x06\xd8\x20\xae\x94\x7b\x71\x42\x58\x50\x21\xf1\x87\x68\x80\xed\x84\xec\xb7\xf8\x8d\xd1\xe1\x25\xa4\x77\x7a\x22\x0e\x03\x3f\xe7\x2d\xd9\xe9\xe9\x08\x20\xbe\xe5\xd4\x14\x1f\x5f\x53\x87\xf2\xa9\xb1\x7c\x69\xdf\x1c\xf9\x18\x53\x05\x16\x39\x66\x29\x0a\xb5\xeb\x0a\x47\x81\xc5\xba\xf9\xa9\xb6\xad\x5c\xb6\x19\x3b\xa5\x38\x46\xd6\xe7\x5f\x74\x8c\x2c\xbf\x55\xf2\xc2\x0e\xc8\x72\x99\x8d\xce\x70\x5f\x9c\xeb\x59\xf5\xf5\xf9\x43\x54\xfb\xf5\xbf\xa5\x2f\xc7\x4e\xc9\xae\x99\x0e\xfc\x8d\x77\x4e\x17\xff\xcd\xea\x11\x88\x52\xfc\x53\xee\x0a\xcb\x24\x2f\xc3\xd0\xe6\x39\x59\xe6\x3b\x4b\x26\x3c\x0b\x81\xf1\x35\x0c\x87\x07\x51\x9e\x4b\xd3\x13\xb7\x77\x43\xdd\xea\x0d\x35\x24\x19\x1a\xb6\x59\x46\x77\xeb\x96\x52\x87\xbc\xe5\x85\x6a\x0a\xc3\x6a\xbe\x2e\x69\x78\x13\xd1\xcf\x35\xce\x66\x67\x37\x4f\x8f\x9e\x76\x7f\x36\xcd\x7a\x26\x89\x5e\xa3\xd6\x6b\xbe\xc3\x33\x1d\x8e\xab\x01\xe6\x9b\xc8\x1d\xc5\x07\xaf\xda\x08\xd8\x2d\xb0\x16\x60\xe9\x42\xd2\x65\xe3\x5f\x18\x23\x8f\xed\x6d\xcf\xce\xee\x7f\xb8\xfa\x4d\xac\xae\x3f\x42\xca\xc2\x02\xb0\x74\x97\x10\x9d\x2e\x61\x75\xe1\x04\x98\xea\x28\x74\xd5\x2f\x68\x03\x8b\x1a\x9e\xf2\x74\xd8\xd0\x72\x9b\xe7\xd4\x7c\xfb\x55\x68\x35\x88\x43\x25\xad\x74\x7e\xa3\xe4\x61\xf2\xaf\x94\xd1\xc2\x42\xab\x26\x68\xb2\x25\x87\x71\x82\xd0\xfd\x34\x4b\xcb\x5e\xbf\xa5\x8c\x1f\xa0\x66\xc4\xaf\xc7\xd4\x75\x67\x67\xdb\x59\xd4\xeb\x17\x7d\x53\xd5\x62\x2d\x7f\x64\x61\x21\x49\xda\xdc\x40\x7d\xee\xda\x81\x49\xba\xca\xec\xff\xed\x91\x07\x4b\xbf\x1d\x6c\xb9\xc1\xcf\x3c\x53\x95\x7c\xbb\xfd\x38\x89\xbd\xe7\x58\xf9\xba\x43\xfb\xc0\xf9\xf9\xec\x9b\xf3\xf8\x10\xff\xef\x23\xc5\x17\x5a\x57\x06\x2a\xf7\x18\x5b\xe4\x6a\xf2\x2a\xf0\x63\x81\xde\x41\xed\x84\x2d\xbf\xbd\xd3\x44\x00\x59\x30\x19\xd4\x96\x70\xe0\x7d\x6d\xe4\x7b\x79\x9f\x60\x11\xc8\xe3\x55\xf6\xb8\x65\x96\x97\x11\xf4\xd1\x95\x94\xde\xbc\xbc\xd1\x36\x47\x71\xf4\x6a\x94\xb5\x14\x26\x0b\xd0\x5f\xb9\xcb\xda\xab\x3c\x24\x7e\xd0\x94\xef\x0f\x6d\xc7\x30\x1f\x89\xe1\x8f\x02\xa5\x30\xa1\xa5\xb3\x41\x23\x17\x73\xc9\x26\xed\x36\x86\xcf\x29\x15\x69\x36\x19\xe3\x37\x6a\x96\xb5\x6c\x58\x17\x55\xd1\x90\xff\xad\xe6\x65\xff\x5b\x45\x84\xf9\xe2\x6f\xbe\xa8\x0c\x63\x1e\x06\x90\x8b\xdf\xac\xf9\x7a\xd6\x24\xab\x8f\x28\x7b\xc2\xc7\xd7\x3c\xb9\x88\xc9\xd3\x78\xc2\x6c\x58\x82\x2d\xf0\x19\xb8\x2c\x08\x91\xaa\xba\xd5\x52\x6a\xb7\x9c\x5f\x48\xab\xa3\x1a\xb6\x13\x10\x6e\xac\x51\xa7\xd1\x21\x85\x85\x3d\x9a\x0a\xa0\x23\xb1\x33\x2a\x61\xfe\x70\x13\xce\xaa\x02\x3c\x4e\xf3\x5d\x8a\x02\xfc\x27\xd8\x6f\xd2\xd1\xc6\x6a\xc3\x16\x3e\x8e\xe8\x25\x61\xa5\xfa\x62\xd8\xe7\xe0\x98\x22\xfe\xb1\x72\x84\x80\x45\xaa\x6b\xc1\xba\xd7\x23\x80\xa5\x08\x73\x6f\xe7\x0e\xe7\xb5\x1e\xbd\xb1\x68\x2f\x8b\xf2\x18\x38\x1b\x1c\xa6\xc8\x51\x84\xb4\xef\x49\xf2\x34\xd3\x94\x4a\xdd\x14\x36\x7f\xb4\xfa\x3f\xa0\x5c\x0e\xe3\x71\xb2\xd8\xd2\x48\x8d\xd0\xdf\x18\x29\xbc\xe9\x6d\x15\x3c\x5f\xa7\x9b\x86\xc4\x71\x1b\xa9\x72\xe0\x06\x5e\xa1\xe7\x22\xd6\x9e\x74\x2b\x10\xd5\x77\xad\x29\x0f\x96\x3b\x88\x99\x02\x84\xf6\x45\xd5\xe5\x40\x69\x8e\xde\x0a\xb4\x61\x46\x83\x56\xd4\xfe\xaa\x0c\x59\xe9\x02\x35\xe2\x1c\xc9\xaa\xdf\x11\x47\xb2\x71\xa2\x38\x11\x52\xe2\x32\x2f\x78\xae\x8d\x93\xf1\x54\xa0\xc4\x44\x3e\x56\x1a\x77\x6f\x8c\x55\x1c\xd4\x21\x5f\x30\x85\x53\xb0\x41\xa5\x07\x5b\x0d\x7e\x3d\xe6\x01\x5f\xc5\x15\x62\xd2\x2d\xc4\xab\x2d\xa5\x99\x7f\x41\x35\x5e\x2e\x8c\x5d\x2d\x7d\x54\x55\xe8\x15\x86\x09\x0e\x72\xe6\xb7\x9c\x2c\xb6\x8e\xf6\x99\xed\x45\x02\x2c\x91\x0c\xff\xdb\x23\x25\x93\xf6\x6d\x65\x18\x68\xba\x36\x49\x43\x93\x01\x8d\x2f\x76\x18\xf4\x9b\xfc\x46\x4d\x11\xf2\x38\x5d\xd9\xe1\xa9\x4f\x6f\xd2\x59\xae\x06\xae\xe2\x33\x86\x86\x08\x96\x0b\xe4\x61\x44\xf7\x5d\xa9\x86\xdc\x52\x83\xd1\xc4\x14\x65\x66\x62\xce\xad\xb0\x39\x59\xc2\x01\x51\xf6\x3b\x58\xf7\xc8\x88\x3e\x1a\x9b\x57\x90\x60\xd8\x30\xcd\xc8\xf2\xfa\x90\xcc\xf6\xd8\x9a\x1c\x9b\xed\x23\xa5\x5f\x77\x09\x25\x12\xfa\x68\x7f\xe5\x93\x6a\x13\x47\x8b\x2d\xbf\x3f\xb7\x88\xa5\x6d\x7d\x2e\x24\x5f\x9e\x26\xa1\xcd\x5c\x10\x45\xac\xbd\xab\x30\xd2\x77\x55\xdb\xd5\x26\x05\x89\x16\x26\x62\x16\xe0\xb4\x5c\xf7\xb9\xd7\x8a\x40\x1b\xaf\x26\x61\x7f\x87\x52\xfa\x62\xde\x8f\xf4\x59\xb5\x08\x8e\x1f\xcc\xfc\x22\xf0\x9a\x98\xe8\xd1\x3d\x68\xe7\x1c\x9a\x6e\xe7\x54\xd4\x72\xa6\xc8\xb4\x68\x65\x39\x77\xc1\x8d\x99\xbb\x65\xb1\xaa\x92\xb3\x29\xca\xe8\xd1\x6f\x01\x70\x07\x7b\xf5\x4e\x83\x34\xc6\x4c\x7b\x21\x33\xaf\x45\xf0\x54\xe2\x09\xcb\x48\x91\x6c\xce\x07\x4f\x28\x31\x94\x38\x4d\xa2\x5c\x04\x86\xc4\x6e\x85\x2e\x4f\x7c\x58\x9c\x61\x96\x4d\xa2\x34\x9b\x50\xa9\xc9\xc8\x53\xf9\x37\x11\x41\x64\x7c\x27\x44\xbe\x81\x4d\x26\x54\x2f\x1a\x02\x1b\x98\xf4\xb2\x3f\x2f\xca\x97\x87\xc6\xd0\xcb\xcf\x56\x85\xe0\x72\xd4\xb5\x93\xd5\x2d\x45\x09\xf5\x96\xd2\xda\xbd\x88\xb2\x19\x0d\xfc\x8f\x14\x83\xfc\x8a\xe2\x6e\xc4\xa6\x4c\xc2\xbe\xed\xee\xd0\x83\x58\x40\x0d\x24\xf1\xaf\x2e\x48\xf2\x7e\x7f\x20\xbc\x1d\x78\x3c\xee\xdb\xb8\x1d\xfc\xcb\x63\x4f\xf5\xd9\x76\x94\x2c\xa6\xc0\xad\x79\x96\xd8\x49\x6c\x05\x61\xbf\x36\x39\xcd\xa7\xcf\x74\x57\x56\x39\xd7\x43\x48\x3e\xac\x8d\x22\x0e\x37\xc2\xd1\x88\xa2\xcf\xe8\x24\xfc\x1c\x83\xce\x31\x32\xba\x31\x62\xcf\x94\x06\xf7\xc0\x7c\x90\x2e\x6d\xb1\x88\xbb\xa0\x66\xd2\x17\x6a\xae\xa6\x99\x0d\xab\x92\x66\x87\x92\xe3\xfc\x33\xfa\x61\x70\xe2\x37\x46\xaa\x01\x82\x06\x28\x1e\xd1\x4d\xda\x01\x2c\x7b\x8f\xaf\x23\x3a\x45\x8f\x3a\xb6\x7e\xbc\x68\xf2\x82\x16\x12\x9b\x59\x8f\x14\x1a\x01\x6c\x64\xc1\x3d\x79\xa9\x66\x6b\xf2\x62\x37\x3d\x73\x5c\xef\xbb\x0a\xd2\xc8\xb4\x7c\xd6\xa8\x09\x14\xf9\xf0\xf6\x48\xb9\x1b\xe1\xb0\xd0\xb4\x11\x7c\xb3\x5b\x5a\x78\xed\x0f\x70\xfc\x39\xbd\x1b\x67\xbd\x33\x2e\x76\x39\x37\x47\x66\x64\x2d\x6f\x37\xc4\x5d\x6e\x41\xf9\xca\x57\xce\xcc\xea\x42\x99\xc1\x73\x48\xcc\xd7\xb1\x24\x91\x3d\x9c\xd3\x59\xc6\xad\x07\xda\x99\xd2\x6e\x45\x58\x40\xd2\x80\x7b\xc5\xfd\xdc\x3a\xe7\xd2\x21\xa0\xe3\x74\xc8\xf3\x20\x3c\xad\x93\xca\x32\xec\xa4\x83\xc9\x2f\x98\x70\x29\x2f\x48\x28\x73\xff\xb4\x38\x82\xd1\x6e\x15\x77\x30\x9f\xc7\xe4\x2b\xd6\x80\x98\x8e\x8d\x03\x60\x3b\xbf\x56\xd9\x5b\x66\x87\x10\x65\xc0\x61\xff\x4d\x24\x35\x28\x72\xaf\x2b\x1f\x23\x48\x51\xb3\x58\x60\xe0\xe7\x41\x1f\xb8\x72\x75\x60\x5e\x8d\x42\x93\xa1\x7f\x8c\x24\xeb\xba\x16\x14\xbf\x3e\xd6\xcb\xae\xce\x8a\x28\x09\xd3\x64\xd9\x26\x91\x90\xec\x10\x33\x7f\x4c\x1f\xcd\xaf\x95\xb9\x50\x1e\xf6\xcb\xf8\xb5\x96\xaf\x67\x3e\x09\x7c\x82\xfb\x89\x52\x10\xb0\xaf\x0e\x6d\x92\x47\xcb\x76\xa7\x77\x1e\xdf\x46\x7c\x34\xb7\xcc\xe6\xe6\x78\x65\xb2\x5b\xb6\x08\xaa\x53\xba\x23\xce\x62\x3e\xff\x3a\x3a\xaa\xd9\x9c\x6c\x3d\xf8\x66\x0e\xb6\x57\x4c\x61\xb3\x95\x34\x5b\xe2\xbd\xcf\x6b\x15\xeb\xde\x1d\x3e\x5e\x43\x2f\x78\x58\x11\xd8\x9e\xf4\x5b\x0d\xb4\x6d\x94\xee\x1f\x82\x12\x23\x10\x89\xea\xcb\xa0\x6a\x84\x05\x9f\x13\x90\xa9\x36\x10\xbe\x25\x4f\xf5\x91\xbe\x82\x82\x87\xf2\x41\x78\xb8\x6c\x96\x3c\x52\x24\x95\x7f\x12\x28\x5f\x46\x96\xad\x67\x98\x66\xd0\x7a\x51\xe6\x2d\xe7\xb5\x22\x3d\x66\xd3\x40\xc0\xaf\x05\x35\x52\xbf\xa7\xab\xdc\x0b\x26\x5e\xdc\x3f\xbd\x79\x9a\xda\x09\x82\x70\x54\xf5\xc1\x05\xc7\xf3\x5e\xb2\x36\x99\xf2\x47\x15\xf0\x24\xf8\x23\x4c\x50\xc4\x7f\x5c\xc5\x65\x6b\x45\x42\x24\x96\x67\xd5\xe0\xd7\x2c\xe4\x69\x36\x04\x00\x6d\xef\x5e\xde\x87\xef\x2a\x4b\x80\x77\x95\xc8\xce\x42\x9a\x39\x25\x51\x9c\x99\x98\x27\x73\x17\x38\x70\x38\xfd\x3f\xbf\xdc\x24\xa1\xd2\x4d\xcb\x85\x18\xab\x0c\x85\xd9\xdb\x23\xc7\xbc\xfa\xef\x9e\xee\x68\xad\xfa\x91\x8a\x8c\x38\x97\xb1\x16\x5b\x6b\x5e\xa8\xff\x1b\x58\x65\x32\x4e\xdc\x1a\xcd\xe6\x5f\x38\xd0\x1e\x96\x28\xa6\xb9\x77\x8b\xb4\x4d\x1a\xb9\x0d\x49\x60\x51\x1b\x1d\xbb\x04\xd4\x27\xa3\x0f\x54\xcd\xe9\xa6\xaf\xd9\x84\x13\x21\x56\xcd\xae\x29\x68\x6f\xbd\x1d\xc8\xff\xd3\x57\x35\xf4\xfc\x8e\xa2\x01\xde\x09\xb4\x52\x75\xaf\x8c\x4d\x16\xb3\x4b\x19\xf2\x37\xb8\x33\xf3\xeb\x1a\xe3\x39\x8c\xba\xb6\x3b\xa5\x68\xc4\xdb\xd7\x3c\x20\xed\xab\x0a\x34\xc0\x0c\x29\xcc\x3a\x2e\xf2\x92\x97\x07\xd0\x78\xc1\x79\x61\xb8\xf0\x10\x35\x75\x7f\xda\x9f\x19\x3b\xe0\xe5\xde\xa4\xec\xf1\x08\xd8\xc2\x79\x52\x6b\xc0\x2c\x68\xaa\xd3\x52\x2a\x0e\x6a\x52\xbb\xa1\x08\xfd\xc3\xcc\x0e\x0d\xcc\x99\x0f\x4d\x8b\x87\xa9\x92\xf0\x3c\x3f\x96\x1d\xec\x9f\x6e\x47\x71\x6c\x7b\xac\x03\xee\xac\xe6\xf6\x3b\xdb\xb9\x06\x6a\xe3\x4c\x3b\xb6\xc6\x71\x9c\xd0\x6d\x60\x35\x55\x7e\x33\x36\x72\x98\x9d\x6d\x2f\x94\x51\x5c\x60\xb9\xb0\x92\x10\x3d\x17\x51\x15\x7a\x54\x29\x7b\x77\x6d\xca\x05\x0a\xc2\xd2\x47\x23\xd5\x60\x3d\xa6\xce\xef\x4b\x6e\xab\xf7\xd3\xbc\xd8\xe5\xa5\x81\xd7\x47\xaa\x6f\x83\xf8\x48\xbf\xfd\xef\x3c\x8e\x76\xb6\x2b\x3b\x3c\xde\x16\xcf\x9e\x99\x81\xd4\x21\x72\x90\xb4\xea\x6e\xa3\x0c\xbf\x19\xf8\x8e\xee\x20\xed\x36\x39\x0b\x83\x0d\xcf\xaf\x47\x4f\xf0\xf5\x91\xe1\x4c\x44\x29\x37\xfd\x2c\x62\xdc\x6d\xfa\x59\x7e\xad\x98\xf3\x5d\x6b\x92\xba\x46\xc4\x48\x6b\x44\x34\x4d\x74\xc2\xac\xb4\x78\x88\x52\xa7\xea\xfa\x75\x8f\x1b\x19\xa7\x43\x1b\xc7\xb2\x6f\xd1\x4f\xe0\x54\x89\xdf\x34\xfd\xf1\xbc\xb0\x66\xa9\xe5\xbb\x11\x30\xfe\xe5\xd7\xea\x80\x1c\x66\x36\x8f\xba\x36\x29\x1e\x53\x24\xf1\xdf\x55\x5a\xb3\xbb\x3a\x34\x40\x40\x9a\xf4\xb3\x40\x29\x37\xad\xd3\x76\x03\xd4\xfe\xb0\x02\xfe\x71\x69\x89\x32\x62\x47\xc7\xcf\xff\x8f\x50\x59\xe6\x9e\xdd\xcc\x41\x37\x39\x51\x4c\xbe\x8b\xda\x26\x50\x6c\x4d\x24\x2b\xf1\xfc\xb4\x6b\xb8\x03\x82\x7f\xf4\x74\x1a\x93\x47\x26\xa1\x6e\x0f\xcb\x38\x75\x9c\xea\xe7\xff\xce\xcf\x04\xe5\xc1\x6d\xa5\x78\x24\x49\x74\x64\x62\xc4\x21\x9c\xfb\xef\xd3\x7a\xe7\xd7\x63\xc3\x0f\xef\x5c\x0f\xaf\xa3\x96\x53\xc0\x67\x04\x99\x14\x8d\x7e\x95\x2c\x44\x71\xbc\x9b\xce\x58\x34\x03\x2e\x05\xca\x0f\xe1\x92\x62\x0b\x9c\x55\xd3\x37\x78\xec\x20\x71\xd8\x49\x07\x39\xf6\xc2\x3d\xba\xff\x48\x8e\x8e\xd1\xf2\x47\x7c\xfb\x93\x40\x49\x93\x7f\x1f\x13\x12\x00\xb1\x8e\x36\x9d\x5c\x43\x53\x58\xee\x9d\xe0\xf4\xc0\x12\xe7\xd7\x6e\x3b\xd0\x54\x23\xcf\xa3\xe1\x30\x6a\x79\xcc\x3e\x67\xc3\xfc\x46\xb5\x43\xfa\x69\x6c\xa7\x54\x39\x79\x1b\x3a\xd0\x92\x0b\x6d\x99\xe4\xce\xd5\x5c\x83\x58\x1f\x7a\x6c\xfe\xb7\x6f\xae\xdd\xb3\x30\x57\x44\xcd\x71\x53\xd5\x1f\x37\x5d\x3d\x3e\x88\x12\xbb\x8b\x3e\x0d\x05\x39\x40\x0f\xf8\x80\x8b\xba\x5d\xca\x8f\x09\xd9\x1f\x5a\x5a\x4e\xb2\xa3\x5a\x5c\xce\x18\x7e\xef\x5e\x8e\xe3\x47\x31\x7d\x10\x6a\xb8\x4b\xdc\x87\xe9\x12\xc3\x24\xb1\x1d\x36\x94\xcf\xce\x79\x05\xea\xba\x8e\x55\x0b\x10\xdd\xee\x8e\x2b\xb3\x4c\x96\xa5\xe9\x40\xc1\x28\xce\xaa\x8e\xdf\xd9\xad\x93\x97\xf9\xfd\xf3\xed\xd9\xd9\x87\x3c\x99\xe8\x0c\x30\x75\xce\xbd\xbb\xda\xa3\xfc\x66\xe4\x45\x12\x37\x14\x2d\xfa\xba\xf6\x61\xfe\x1d\x6c\x39\xe9\x86\x79\x17\x4d\xf4\x48\x90\x0d\x7d\x30\x8e\xbf\x9f\x69\x9b\x2c\x8b\x96\x05\xea\xe8\x06\x8e\x7e\x90\xb2\xd1\x6c\x8d\x1c\xa6\x3c\x05\x11\xe4\x6b\xcb\xa9\x65\x35\xce\x4d\x86\x59\xf4\x9a\xd0\xdf\x1d\xc4\xd3\xc3\x3d\xc7\x0e\x3c\xd9\x99\x03\x83\x0a\x0c\x31\x15\xc4\x59\x07\x97\x9c\x73\xf6\x91\xd7\x35\x44\x3d\x33\x11\xcc\xec\xf0\xc7\x31\xa1\xc1\xc8\x9d\x95\x5c\xc4\xc9\xda\x1f\xb9\xb7\x02\x9f\x78\x1c\xa7\x3b\x2e\x20\x92\xea\x8e\x0b\x29\xf5\x49\x6d\xe3\x55\x58\x08\x2f\x3d\xf0\x36\x6c\x4d\xf9\x66\x67\xdb\x8b\x52\x56\x89\xfc\x7b\xcb\xd9\x60\x5d\xad\xf1\x71\xca\x64\xb5\x46\xd1\xad\xf1\x04\xb7\x86\x31\xc0\x0a\xc9\x25\x70\x20\x81\x00\x63\x32\x4c\x70\xf9\xb5\x17\x5c\x88\xa3\xe1\xa4\x12\x45\x60\xf9\x2e\x7e\x13\xa8\x2a\x07\x54\x28\x7e\x3d\x96\x41\xed\xdd\xdb\xce\x6c\x37\x15\x48\xba\xa2\x52\x3e\x2f\x6f\x6a\xc2\xf2\x76\x11\xfd\x47\x54\x34\x67\x94\x39\xe4\x19\x05\xce\xef\x95\x36\x07\xce\x13\xc2\x5f\xb8\x49\xfc\x7a\x6c\x09\x3f\xdb\x36\xdd\x57\xca\xdc\x09\x84\x0b\x4f\x4f\x6d\xff\x13\x0d\xe9\xd4\x4b\xed\xa1\xc9\x8b\x32\xd3\x20\xa9\xd3\x0a\x2b\x7b\xda\x75\x13\x16\x52\xe3\xff\xba\xe0\x9e\x7d\x7d\x3b\x6e\xbe\x08\x62\xd0\x20\xed\x2a\x9c\x91\x18\xfa\xf9\xb6\xa8\x56\x56\xdb\xb7\xf7\x85\x29\x45\x30\xde\xd3\xa9\x99\x0a\xa8\xae\xd1\x25\x25\xa7\x76\x93\x76\xb9\xe8\xd6\x6e\x5d\x6b\x2f\xbf\x4c\x16\x11\x93\x7e\x68\xc0\x36\x5e\xec\xc7\x44\x59\xae\x1c\x00\x1e\x8e\x31\xb1\xe6\x1b\xed\x26\xcb\x2c\xbe\x79\x75\xda\x89\x78\x0d\xd5\xd4\xd2\xd4\xf1\x48\xa0\x05\x9b\xd8\xc5\xa8\xd8\xe1\x6b\xf4\x23\x74\x7d\xfc\x5a\x89\x9a\x5c\x25\x90\x80\x8b\x54\x4e\xb7\xfc\x5f\x8e\x94\x57\xd2\x0d\x35\x21\x34\x59\x11\x2d\x92\xb9\xde\xec\x2c\x6f\xe3\xd7\x03\xbf\xa5\x5f\x57\xcc\x4b\xf8\xfd\x3a\x06\x3d\xf2\x94\xe3\x88\xd8\xfc\x66\xeb\x88\xf6\xe0\x0b\xed\x43\xd3\xf3\x64\xe9\x80\x12\x44\xbb\x27\xdd\x50\x12\xb3\xff\x9c\xea\x67\xa7\x26\xed\x8a\xf1\x53\x14\x93\x90\xf9\x5c\xa6\x33\x5c\x1a\xbf\xf4\x7d\x10\x52\xfe\x27\x9c\x3a\x82\x47\xa2\x74\x18\x35\xdb\xcd\x40\x2d\xac\x63\x54\x7e\x3b\xe3\x0b\x67\x27\xfe\x9f\x1c\x6e\xe0\x06\xcf\xb7\x97\xec\xb0\x00\x7d\x57\x8a\x2e\xfa\x48\xa9\xba\x94\x0f\x7d\x16\x21\x9a\x20\xd3\xfe\x94\xbe\x16\xbf\x0e\x7e\xf5\x41\x75\x51\x59\xb8\x90\x32\xa1\xf0\xb7\x0a\x30\xc3\x31\x18\x5f\xeb\x70\x93\x88\x45\x91\x99\xae\xc4\x7d\x31\x2e\x6b\x39\x0b\x87\xdb\x75\x6f\xaf\xc1\x70\x17\x7d\x1b\xb4\xfa\xcf\xe3\xce\xb8\xc9\x60\xb5\x7a\xd1\x8d\x3e\x49\xb7\xdf\xa9\xff\x79\x2c\xd4\x49\x8a\xdc\xc8\x7a\x8f\x72\xcf\x4f\xa2\x9a\x2f\x00\xb6\x77\xfc\xba\x4d\xc9\xb1\x38\xa5\x6c\xd3\x6d\x8d\xcf\xbf\xc8\xa1\xf6\x9a\xea\x8f\x35\x7a\x59\xc7\x36\x67\xa5\x30\xed\x33\xe7\x7c\x1d\x9d\x6e\x2f\x2a\x51\x64\x16\xdf\xa6\x6c\x04\x0b\xec\x0e\xda\x35\x38\xa8\xb6\x81\xe9\x8e\x6d\x3f\xde\x54\x9e\x39\x48\xd2\xab\x51\xde\x6f\xf9\x86\x11\x04\x1f\xf8\x75\xd3\x51\xdd\xb3\xc6\x75\x0c\xb8\x2b\x84\xd8\x28\x2d\xa2\x06\x91\x9b\x15\xb3\x6c\x63\xb2\x89\xcf\x35\xb6\xfd\x74\xe0\xd3\xa0\xd3\x63\x6d\xb3\x6a\x41\x46\x49\x98\x59\x93\x0b\x62\x15\xdf\xfd\x06\xa1\x5b\x2e\x8e\x14\xcf\xfc\x23\x6f\x8e\x9d\xa5\xc3\x09\xcf\x8f\xba\x40\x37\x1f\x8b\x03\xf2\x5c\x22\x09\xe6\x1f\xd9\xc0\x66\x59\x14\xc7\x24\x2b\x8e\x93\x69\x7b\xe7\xff\xdb\x18\x09\xa0\x82\xd6\xda\x1e\x2d\x31\x17\x25\xbd\x7c\xc2\x8f\x8d\x91\x07\x6a\xa6\x34\x92\x81\x9b\x4d\x0e\xf2\x61\x3a\xc0\x01\x7c\x48\x96\x27\x48\x45\xfc\x7a\xed\x11\xcf\x7b\x29\xe3\x62\xca\x5f\xcf\x37\x68\x53\x39\xfd\x96\x43\x22\x77\x75\x06\x79\x1d\x7a\xf5\x97\x50\x08\xa8\xe2\xdd\x9b\x94\x44\xe1\xa4\x26\xe7\x07\x1e\x92\x76\x4b\x99\x92\xdf\xaa\x91\xf6\x15\xde\x88\xe6\xaf\x59\x29\x4a\x92\x9f\x7f\xd1\xb9\x4d\xd2\x9d\x95\x31\x44\x75\xcb\x91\x2f\x9d\xd0\x28\xbc\xcd\x06\x66\x22\xd9\x84\x98\xa2\x6e\xe6\x79\x4d\xf1\x8f\xaf\x29\x17\x20\x33\x1c\x66\xe9\xb2\x89\x77\x69\xdd\xae\xa0\xde\x64\xdb\x3f\xed\x80\xe5\x0a\xd0\x76\x89\xaa\x56\x1c\x64\xd7\x91\x79\x60\x8e\x84\x81\xbb\xd0\xfb\x7c\x18\xbf\x3a\x36\xe8\xdc\x3f\xbd\xdf\x1b\x97\xb7\x7c\x93\xf0\x2c\xad\x3f\x7e\xad\x8a\x79\xd3\x1b\x98\x22\x0a\x27\x7c\x81\x7d\x51\x69\xcd\x70\x7b\x03\x0b\xf3\x9d\xf1\x98\xb1\xb7\x3d\x48\x33\xae\x34\x1c\x59\xa9\x8a\x01\x38\xcd\xd0\xcd\x76\x0d\xd6\x2a\x1e\x08\xeb\xd4\x37\xd1\x06\x61\x6f\x25\xe2\xd4\x85\xe9\x8e\xca\x85\xe6\xa8\xea\x9f\xf6\xb2\xa8\x1b\xa7\xe1\x12\x93\xf5\x70\xe4\x1c\x0d\x94\x5b\xf2\xd1\xc6\xfc\x25\xb7\x45\x11\x73\x32\xf9\x20\x36\xea\x63\xaa\x29\x93\x17\xf1\x2a\xf1\x4a\x71\x13\xb6\xaf\x29\x96\xd8\x8f\x75\xc1\xf6\xe3\x91\x57\x2a\x19\x27\x2e\xef\x9b\x63\xc8\x3b\xc2\x8e\x24\xd2\x2a\xa9\x6e\x30\x4a\x27\x43\x0d\xa2\x24\x72\x43\x4d\x1c\x9e\xab\x5f\x13\x7f\x68\xcd\x3f\xc8\xa3\x9e\xc8\x6a\xb9\xec\x7a\x9f\xcf\xae\xd5\xe8\x21\x31\x61\x51\xdd\x84\x9d\x4a\xe9\xe4\x63\x8d\xdc\xfb\x58\x51\x8a\xae\xe0\xbc\x12\xa1\x22\xdf\xb3\x38\x83\x4d\x24\xa8\x16\x65\x0b\x32\x6e\xd6\x54\xdd\x7c\xaa\xd3\x63\x8c\x62\x45\x23\x59\xd1\xaf\xb8\xe6\x75\x12\x0b\x6e\x11\x4c\xfc\x3f\x8c\xfd\x69\x90\x24\x67\x7a\x1f\x86\xcf\x54\x77\xcf\x81\xc1\x00\x18\x1c\x7b\xe8\x08\xd6\xf2\xbf\x41\x48\x22\xfe\x90\xc5\x50\x30\x1c\xf2\x87\x2c\xce\xf4\x12\x3b\x1d\xda\x46\x47\xcf\x2c\xb0\x44\x30\xc2\x78\x2b\xeb\xed\xaa\x44\x67\x65\x16\x32\xb3\xba\xd1\xb0\xfd\xc5\x61\x3b\xfc\xc1\xa1\x08\x2b\x1c\x92\xe9\x83\xa6\x24\x9a\xa4\xc4\x90\xb5\x64\xec\xf2\x92\x97\xd9\xdc\x03\x7b\x11\xbb\x38\x16\xe7\x2c\x80\xb9\xef\xa3\xe7\x9e\xe9\x99\xe9\x71\xe4\xf3\x7b\x9e\xf7\x7d\xaa\x2b\xc1\xd0\x27\x64\x62\xba\xaa\xf2\x78\xdf\xe7\xfc\x3d\xbf\x5f\xeb\x31\xd5\x0d\xea\x0e\x63\xc2\x49\x6e\x57\x31\xc1\x29\x8d\x12\x0c\x3c\x42\xee\x83\x60\x84\x57\x8c\xee\x03\xbf\x0c\x44\x26\x4a\x47\xf7\x4a\xed\xc6\xeb\xa6\x28\x30\x75\x6e\xb3\xc6\x08\x19\xa4\x8f\xb0\x8f\xab\x09\x55\xfb\x4a\x41\x9c\xcb\x93\xde\x31\xaf\x2a\x42\xba\x0b\x04\xda\x96\xae\x04\x5d\x91\x68\x7e\x6e\xc6\x9d\x50\x05\x24\x33\xf1\xca\xab\x62\x6d\x5c\xd1\xd2\x81\xca\x8f\xa9\x70\xbb\x6d\x20\x3b\x87\x71\x90\x47\x5a\xaa\xcd\x81\x59\x0e\xdd\x70\x87\x35\xb9\x5f\xd7\x25\xea\x44\xa4\x45\xbe\x60\x3b\x14\x1e\xc1\x7a\xdf\xd6\x54\x6b\xe8\xd5\xa2\x8c\x73\x56\x4f\x35\x24\x66\xd8\xed\x15\x0d\x4d\xf8\x1c\x78\xec\xf1\x71\xd5\x54\x1f\xc4\x66\x25\x5d\x58\xc8\x1b\x55\x64\x09\xb0\xde\xef\x2a\xa4\xfa\xef\x2a\x5e\x93\xcc\x92\x92\x79\x48\xbb\x76\x7e\xaf\xd4\xf8\xd4\xf4\x5a\xdd\x7a\x23\x2d\xba\x57\xa4\xb0\xcc\x62\x23\xa5\xca\x5a\xca\xb1\x31\xa1\x27\x9f\x6c\xe6\x85\x49\x3a\x5c\x35\x40\x44\xf0\x8d\x40\x85\x0a\xdf\x18\x7b\x5e\x07\x9f\x6d\x76\xec\x92\x8d\xd3\x81\x94\xca\x99\x60\x16\x3f\x25\x6c\xb3\x9b\x7f\x6a\x66\xa6\x99\x17\x69\xe6\x24\x58\x79\x54\x5d\x2b\xe1\x1e\x77\xa9\x5a\x18\x9b\xbc\x67\x59\x94\x02\x8d\xa5\xd3\xa5\x22\xa1\xe0\x41\x67\x6c\xdd\xf5\xe0\x33\x0a\xc5\x9b\xc5\x91\xa9\x76\xba\xc9\x46\x40\xfd\xb7\x69\x0d\xf0\xf1\x48\x2e\xdb\x4e\x79\x28\x05\x30\x91\x33\x30\xe2\x88\xdd\x50\xa9\xe5\x7f\x08\x54\x50\x77\x45\x51\xea\xf4\xa3\x4e\x0c\x14\xd3\x33\x22\x1a\x1d\xf8\xba\xd8\xc5\x1a\xb2\x93\x2a\x6f\xa7\x55\xe3\x81\xe8\x57\xe9\xfa\xf8\x58\x8d\x83\x2d\xf0\x50\x86\xd0\x79\x34\xdc\x24\xe7\x3f\x77\x4f\xab\xca\xef\x8c\xe0\xa8\x5d\xd7\x66\xd6\x77\x6d\xc6\x71\xa3\xd3\xd5\x72\x4c\x14\x8b\xf0\x37\x15\x8b\xf0\x37\xc7\x3e\xf0\xfc\xf4\xc1\x66\x4a\x12\x2b\xd5\x0b\x41\x26\xb4\x4a\x3b\x8c\x8f\x6b\xe0\x1d\x48\xe1\x84\x52\x43\x48\x06\xe8\xbd\xf1\x49\xe0\x7b\xde\x49\x3b\x52\x72\x05\x97\x02\x45\x79\x78\xc9\x95\xf6\xc2\x2c\x45\x90\x3e\xab\x85\x4a\x24\x2a\x3c\xa6\xea\x7c\xec\x18\x85\xc0\x41\x91\x79\x9e\x24\xc3\x89\x6f\x3e\xa6\x9a\xe9\x97\x95\x59\x59\xb4\xd9\xc3\xb4\x08\xc8\x03\xfc\xe9\x2f\xb4\xbc\x90\xc1\x51\xca\x0b\x9d\x56\x97\xb0\x02\xfd\xb3\xbf\x8d\xae\x22\x9c\xd4\x3a\xe9\xe0\x63\xad\x1d\xd1\x08\xbf\x4b\x88\x03\x70\xb2\x15\x69\xbc\xd4\x15\x15\x3f\x0f\x44\x5b\xf1\x2e\xfe\xce\xaa\x02\x98\x32\x84\x18\xef\xff\x01\xa2\x98\x85\x5d\xbd\xc6\x29\x12\x82\x43\x52\x08\xfa\x15\x55\x82\x97\x3d\x27\x84\x57\xf4\x2d\x32\x9f\xf2\xe8\x68\x1a\xfd\xf7\x9b\xb3\xb3\xbb\x7c\xb7\xed\x3a\x71\xbd\x8b\x0a\x2b\xdd\x8b\x14\xea\x54\x1e\x8a\x8e\x0f\x4a\x18\x17\x28\xea\x65\x11\xab\x40\x11\x75\x30\x15\x84\xf0\xa3\xd3\xdd\x23\x04\xb9\x8e\xf6\x36\x7f\x5e\x85\xb9\x77\x3c\xf2\xde\xc4\x36\x97\xf1\x36\x37\x1a\xe9\x49\x84\x2f\x29\x4b\xcb\xdc\xaf\x34\x7d\x2f\x44\x29\x3f\x29\xb7\x7e\x91\x8d\x32\x28\xda\x38\xef\xc5\x77\x20\x76\xc7\x20\x3e\xa2\xb4\xeb\xaa\xa5\x96\x5b\xdb\xcf\x09\xfb\x0d\x57\x8a\x22\xb6\xab\x20\xed\x9f\xf5\x63\x61\x1e\x0e\x7a\xa8\x54\x74\xa9\xa3\xbc\xd8\xef\x92\xd9\x47\x5d\x6d\x9d\x20\xbc\xb8\xb0\xbb\x5a\x68\x8c\x92\x87\x8d\x37\xca\x47\xfd\xf0\x05\x01\xc9\x22\xd1\x52\x96\x21\x09\x7a\xa8\xf0\x4c\x37\xb4\xd6\xe4\x21\xd5\x11\xcb\xd3\xa4\x3b\xa5\x98\x31\x2e\xe3\xe2\xe0\x2a\x6f\xaa\x92\xe4\x23\x74\x6b\x8a\x96\x68\xda\x91\x57\xf9\xe7\x61\xfa\x69\xd2\x65\x9a\x69\xa7\x6e\xe7\xe9\x47\xa6\xa8\x15\x88\xb8\xb9\xd1\xf2\xc0\xdb\xbb\x48\x91\xe1\xfc\x6f\xd2\xb3\xc6\x95\x5e\xd7\x0a\x2d\x5b\x81\xa5\x77\xc5\x74\xff\x7a\xc0\x04\x82\xca\xda\x76\xd0\xb5\x00\xbb\xb8\x81\x32\x0c\x4b\xf3\xb5\x94\xde\x02\x8a\x35\x70\x20\xab\xb0\xdf\x22\x73\xa7\x34\x9d\xd6\xc7\xac\xd7\xfe\xd9\x66\x24\x38\x56\x37\x06\xfa\x16\xfd\x3e\x1f\x2b\xc8\x79\x2f\xaa\x16\xa6\x89\x81\x30\x11\xd1\x18\xe5\x52\xae\x2a\xc4\xf7\x96\x96\x7f\x2b\x26\x8e\x41\xeb\xe1\x08\xee\x3c\xe6\x98\xf9\xae\x9c\xba\x88\xbb\x8a\xbb\xb8\x0d\x89\x20\x55\xc6\x3b\xcc\x72\x57\x30\x73\x5d\x41\x1f\x31\x6c\xae\x97\x3d\xb7\xf7\x99\xe6\xf4\xc1\x87\xaa\xe0\x8c\x53\x69\x55\x8c\x79\x4b\x31\xbe\xff\xb7\x58\x07\xd8\x17\x8c\x71\x77\x62\xd0\xd5\xeb\x91\x39\x21\xac\x08\xb4\x92\x26\x56\xbd\x0c\x1e\xbf\x52\xbc\x93\x23\x81\xca\xed\xee\xc1\x20\xb2\x3d\x85\x7d\xc0\xc6\xdc\x4d\x8b\x88\x1b\x9a\xa5\x8f\x2c\x6f\x39\x5c\xe5\xc0\xa6\x83\xd8\x6e\xaf\xae\x79\x04\xb5\x8b\x27\xf3\xff\x6b\x79\xaa\xda\x3f\xfa\x2c\x6b\x2c\xc2\x58\x61\xfb\xa2\x1f\x75\xbf\xf4\x68\xcf\x06\xcd\x46\xc2\x5c\x8c\xf7\xfa\x41\x35\x12\x57\xc6\x94\xde\xb3\x50\xda\x2a\x24\xc6\xf9\x31\x38\xd5\xc1\x67\x9b\x83\x2c\x5d\x88\x0a\xa3\x88\x31\xb0\x68\x4f\x07\x9e\xac\xf8\xb4\xaa\xf0\x25\x29\x6a\x74\xa2\x8f\x49\xcf\x04\xc0\x80\x0b\x8a\x8d\xe2\xdb\x2a\xbb\x89\x92\x22\x8b\x42\x03\x21\x90\xe9\x51\x92\x18\xbc\xb5\x77\xb4\x6f\x2c\x1f\x8f\x94\x54\x50\x18\x99\x38\x7a\x55\xc8\xbe\xb1\xf8\xae\xe3\xb5\x38\x6e\x1e\x0f\x44\x42\x64\xc3\x7f\x55\xcb\x45\xb8\x44\xa5\x66\xaa\xbb\x8c\x70\xa6\x3b\x5f\xec\xdf\xf1\x2d\x87\x3f\x18\xc4\xd6\x4c\x29\x97\xbd\x41\x4b\xd1\x55\x51\x36\x55\x54\x60\x2d\xdf\xf7\x13\x0a\x5b\xf7\xb4\xfc\x03\x8c\xa3\x64\xbb\xaf\xc7\xa0\xe7\xc0\x29\x10\x5e\x96\x3a\x11\xf2\x2b\x28\xef\xe1\x7a\xcf\x8d\x8c\xe3\x5c\x2a\x35\x69\xb3\xeb\xbb\x84\x29\xc7\xfc\x02\x17\xc0\x67\x04\x30\xb0\xb9\x58\xb0\x7f\xb6\x69\x8a\x5f\x82\x31\x81\x91\x1c\x61\xcc\x3d\x5f\xa7\x2c\xdd\xb6\x3d\xb3\x24\x79\x10\x1c\x07\x0f\x4c\xf3\x49\xa0\x75\x00\x17\x0a\xdb\xd9\xe6\x73\x85\xef\x97\x3e\xb4\xb9\x10\x28\x00\x21\x22\x5a\x45\xe7\x7c\x80\x2d\xd6\x1f\xd1\x7a\x94\x22\x8d\x23\x2e\x1d\x0c\x62\xbb\xcd\x23\x46\x5f\x53\x4b\x70\x43\x8f\xb6\x5e\x54\x18\xb2\xa9\x47\xb9\xef\x81\xbf\x3b\xa9\x5d\xaf\x6a\x34\x10\xc1\x77\x4e\x33\xd9\xf0\x03\xe7\xf4\x98\xe5\x1b\x8a\x20\xef\xf2\x58\x59\x6a\xdf\x3e\x19\x78\x1d\xe1\x76\xb9\x1a\xa8\x72\xcc\x55\xd7\x2f\x1f\x98\xac\x88\xc2\x68\xc0\x5b\x44\xca\x70\x5a\x28\x1f\xd1\x14\xb6\xe3\xe3\x2d\x9d\x1f\xa4\xc3\xec\x33\x6a\xd8\xe8\x2c\x86\x38\x61\x26\x6e\x94\x8e\x65\xe5\xbf\xd9\xd3\x22\xaa\x55\xf8\x97\x2b\x81\x0e\xc8\x4e\x50\x10\x85\x1f\xba\x89\x20\x0a\x15\xd5\xeb\xe4\xfd\xb1\x6a\xae\x91\xc9\xc5\x1e\xdd\x0d\x8b\x29\x55\x87\x86\x23\x36\x6e\x80\xee\xd9\xa9\x93\x57\xee\x4d\xca\x64\x74\x67\x30\x6b\xdf\x09\x3c\x93\xc1\x24\xd2\x62\x38\x41\x68\xca\x62\xc2\xe8\xb3\x18\x5e\x45\x3b\x65\x3b\xc6\x51\xc5\x44\x28\x71\x67\x96\xd8\x42\xc4\xbd\x85\xcc\x3a\x0a\xaa\xb7\x03\xdf\xea\x5b\x32\xc3\x18\xed\x4a\x91\x7c\x52\xf5\xff\x1f\xd5\xa0\xed\x9f\x69\xb6\x2d\xd8\x59\x9c\x22\x35\x34\xdf\xf8\x58\xd5\x17\x5e\x32\x03\x93\xd8\xdc\x3e\xe6\xa1\x10\x0f\xb4\xaa\x07\xea\x64\xf2\xaa\x47\x22\x79\x3a\x9e\x3b\xcc\xc8\x95\x40\x09\x18\xe9\xf1\xb3\xc6\x2a\x3d\x5f\xe0\x10\xd6\xe1\x91\x98\x7d\x68\xd5\x0b\x5b\x30\xb2\x07\x65\xe2\x8f\xf1\xde\xb8\x6f\xa1\xa4\x43\xb6\xaf\x2a\x20\xcb\xc7\xb4\x20\xb0\xee\x2f\x2a\x8a\xd3\x89\x55\xc5\xae\xb1\xab\xe5\xb9\x77\x3f\x44\x50\x84\xb5\xb1\x15\x53\x47\xc2\xc2\xee\xf7\x77\x94\xe7\x43\x9b\x29\x30\xee\xb1\x40\xa9\xb3\x1d\x53\xd3\xff\x0b\x20\x46\x72\xc8\xb2\x07\xa9\x0c\xc9\xc7\xab\x52\xb8\x88\x92\x85\x2c\x4a\xba\xb2\x79\xdc\x13\xaa\x7e\x5d\x40\x2f\xe2\x67\x17\x6c\xdf\xc4\x56\xd5\x04\x6f\x07\x2a\x71\x39\xa9\x47\x65\x90\x11\x89\xb0\x9b\xcf\x90\x07\xb6\xb0\x59\x4e\x75\x56\xec\x9b\x5b\x4a\xb3\xe5\x38\xb5\xca\x58\xd8\xb9\x8e\x7e\x36\xef\xa5\x9d\x0e\xc8\xf4\x10\x9c\x9c\x54\x74\x09\x27\xc7\x68\x5a\x66\x66\x9a\x21\x73\xfa\x0b\xeb\x8f\x2a\x9c\x5d\x1d\x4b\xc7\x67\x66\xe6\xd1\xdc\x6a\x78\x1a\xae\x13\x0a\xd2\x70\x42\xf1\x48\xd8\xce\xb2\xc9\x3a\x39\xab\xd3\x62\xa9\x9e\x28\x95\xe3\x62\xea\x27\x54\xd3\x27\x28\x86\xe1\xe3\x96\x2a\xb3\x8f\x07\x9c\xf3\x7b\x9b\x26\x59\x21\xd2\x45\xcf\xf9\xf7\x97\x74\x15\x7c\x5c\x07\x23\x1d\x26\x36\xe9\xb8\xd6\xb4\x8c\x23\x35\x1c\xcb\xda\xcf\x46\x0b\x1d\x06\x03\xc8\x3a\xf9\xe5\x63\x6a\xd6\x88\xc2\xc5\xe6\x71\x0e\x18\xcb\x43\xa5\x9a\x54\x79\x47\x81\x75\xa3\xa4\x32\xc3\x0d\x8f\xf2\x7a\x57\x5d\xf6\xbb\xce\x06\x87\x69\xbf\x6f\x92\x8e\x83\x35\x20\xdf\xb8\x8f\x77\xc3\x27\xae\xb0\xb6\x30\x4c\x12\xd5\x74\x67\xc4\x94\x2a\x7e\x1c\x55\x79\xd1\x4b\xd6\xc4\xe9\x30\x8f\x57\x26\x3d\x82\xf1\x9e\xae\x0c\x30\x93\x09\x0a\xcf\x87\x34\xf5\xf6\xa5\xa0\xc6\x53\x2f\xc4\xe6\x69\xba\x44\x24\xdd\x9c\x83\xf0\xc9\xc8\x10\x10\xcb\x4e\x4c\xf9\xde\x37\xcf\x83\x8a\xc6\xa7\x22\xb3\x7c\x57\x4f\x51\xaf\x01\x24\xc4\xff\xe2\x58\x5c\x3a\x51\x5e\x64\x26\x2c\x84\xcb\x19\x26\xe2\x8f\x03\x85\xca\xfa\x63\x4f\xa9\x93\xe6\x79\x14\x73\xd5\x07\xdf\xf4\xb1\xaa\x3b\x7d\xec\xfe\x70\x39\xb3\x46\xfa\x06\xae\x8e\x50\x7d\xbd\xcc\x2b\xfb\xb6\x7b\x94\x84\x66\x60\x48\x5f\xca\xcd\xf8\x1e\x53\x93\xd4\xc7\x14\xef\xea\x42\x36\xac\xae\xb6\xe0\x6f\xe6\x5e\xad\xd2\x4a\x39\xaa\x6a\x64\xf6\x95\x70\x98\x43\x8d\x85\xdb\x4e\xc1\x58\x63\x00\x09\xed\xdb\x6e\xe0\x85\x49\x43\x1a\x0a\xba\x4b\xc1\x8b\xc0\x78\x6b\x36\x44\x1e\x75\x13\x13\x8f\x8a\xea\x9e\xd3\x52\x1b\xe7\xc6\x9a\x46\xa4\xc8\xdd\x1f\x98\x2c\xca\x53\x1e\xba\x92\x49\x64\x6f\x03\xd0\x2a\x17\x25\x33\xdd\xaf\x1b\x76\x99\xae\x09\x57\xbf\x9d\xb6\x3c\x76\xec\xa3\x64\x7a\xb1\x7b\x4e\x29\x24\xd2\xa5\xb1\x92\xea\x73\x7b\xa7\x9b\xf9\x30\x1b\x64\x11\x77\x5c\xa7\x1d\xc3\x14\xdd\x08\x43\x29\x94\xf6\xe7\x44\xcb\x11\xab\x9a\x0c\x23\x6b\xf8\xc0\x75\x3d\x3c\x74\x5d\xbd\xda\xb4\x1d\x47\x5d\x53\x14\x29\xfd\x31\xca\x76\x5f\x0f\x3c\xb2\xf1\xeb\xe3\x45\xbf\xb9\xe6\x82\xb5\x42\x14\xc8\xf3\xc2\x81\x22\xa9\x3e\x5e\x57\x4b\xef\x9b\x84\x52\xe7\x15\x5e\x99\x30\x18\x30\xa8\x7c\x5c\xd3\x70\x98\x6f\xb6\xa3\x8e\x13\x2d\x75\x44\x7d\x8e\x8d\xe6\x5c\x5d\x47\x3c\x8e\x92\x45\xa9\x2f\x8a\x2c\x95\x2a\x80\x5c\xaa\x61\x6d\x6b\xb6\xab\xcd\xd0\x49\x97\xa1\x11\x0c\x4f\x0b\x21\x70\x18\x8e\x63\xe5\x84\xd6\xaf\x56\xbb\xdd\x66\x45\xb4\x10\x59\x70\x9e\x30\x18\x20\xd0\xc0\x80\x9a\x2b\xec\x90\xe3\xd3\x4e\xf6\xa2\x76\xb2\x17\x15\x58\x2a\xac\x1c\x0b\x6d\x10\x04\x4d\x98\xb3\x76\x0a\x52\xaa\x97\xe8\x43\x68\x9b\xbc\x94\xae\x88\x7e\xbb\x14\xf7\x7c\xb3\xec\xb4\x56\xb3\xb6\x03\x53\x6d\x56\xee\xee\x21\xb2\xbc\xac\x66\x9a\xf0\x7b\x58\x76\xa7\x34\x7b\xfc\x55\x55\x19\xed\x59\xd3\xd0\x90\xa6\x75\xac\x36\x3e\x71\xa9\xb9\x7d\xc5\xf6\x07\xc5\x76\x9f\x2a\x80\x82\x08\xaf\xe5\x7e\xa9\x46\x50\x99\x49\x09\x8b\xfa\x0c\x5d\xc2\x48\xae\x06\xb0\x18\xe1\xf8\x36\xd6\xc6\x8c\xf5\xf4\xc1\x66\x3b\x95\x85\xe6\x78\x1f\xd4\xa0\xe5\x6e\xb7\x49\xfa\x83\x61\x3e\xe1\xfb\x64\x10\x0b\x71\xec\x3d\x5e\xcb\xe0\x9c\xfb\x4c\xdb\x64\xb1\x45\xc6\x0e\xe4\x89\x14\x38\xf8\x4c\xe5\xec\xf9\x30\x9e\x18\x81\xa9\xe9\xe1\x77\x7a\xc6\x88\xbe\x6f\x8d\xe5\x31\x33\x33\xcd\xd8\x9a\x2c\x91\x95\x8f\x28\xe2\x16\xbe\x80\x4f\x94\xd8\x72\x66\x97\x2a\x13\xa1\x1b\x1b\x17\x34\x5b\xd1\x05\x15\x36\x87\xc3\x98\x86\x95\x21\xd5\x28\xfd\x51\xba\x55\x44\x07\xb7\x14\x2c\xe3\x86\xca\xeb\xce\x8e\x44\x0d\x4b\x76\x65\x24\xdc\xb9\xa0\x08\x40\x0e\x97\x23\x00\x83\xea\x9a\xd1\x92\x44\xd9\x4f\x58\x9c\x7d\x1c\xdb\xce\x00\xca\x98\x3e\xc8\x04\x17\xb7\x91\xf2\x61\x01\x6d\x50\xb8\x21\x7c\x65\xe3\xfd\xe1\x03\x80\x17\x98\xb0\x27\xb8\x14\x66\x1b\xa7\x97\xe9\x4a\x7e\x3e\x57\x7b\x37\x78\x54\xed\xaf\xdc\xc6\xa9\xe1\xf1\x7b\x20\x81\xee\x07\x8a\x52\xf1\xbe\xa3\xa6\x09\xd3\x38\xb6\xdd\xc8\x14\x9a\x10\xe6\x8c\x22\x84\x39\x53\x63\xc1\xe7\xaa\x40\x88\xaa\x30\xfc\x7a\x44\x22\x40\xa1\x8c\x2f\xf8\x81\x86\x24\x4c\xb3\xcc\x86\x05\xd3\xce\xb3\x0a\x21\xae\x47\x24\x09\x9f\x18\x2d\xd8\xcd\xef\x3d\xd0\x9c\x7b\xf6\xc0\x94\xb7\xdf\x73\xb4\x61\x24\xf6\xd6\xc5\x9f\xd2\xc3\xac\x2f\x52\x7c\x2d\x52\xc1\x6a\x2f\x0f\xdb\x0d\x8d\x09\xf5\xe3\xd8\x1a\x1e\x9b\x0f\xdb\xe4\x1e\xc3\x82\x45\x23\xe0\xdb\x99\xa2\x89\x4f\xea\x36\x66\x16\xe5\x8b\x13\x0a\xd3\x8d\x6c\x08\xbb\x7e\x8b\xa2\xbe\x1b\xc7\x3a\x1d\x7c\xb6\x99\xd9\xbe\x89\x30\xf7\x89\xde\x2e\xe5\x68\xb3\x1b\x6b\xa5\x86\xa7\xaa\x61\xa4\x28\x6f\x9b\x04\x54\x76\xcc\xd6\x4a\xaf\x0b\x73\x68\x17\x35\xac\x7d\x7c\x4c\xf0\xb9\xbd\x2f\x34\x5f\x1a\xe6\x6c\xdd\x55\xa8\x38\xa9\x88\x3e\x26\xc7\x20\x0e\x73\xf3\x73\x4d\x33\x30\x59\x81\x92\x82\x97\x6c\x72\x41\x72\xe9\x8b\x60\xd7\x15\x47\x67\x66\x17\xd2\xac\x3f\xa5\xb9\x87\x83\x31\xa5\x04\x07\x64\x75\xd0\xf3\x8b\x5a\x92\xfe\xa6\x33\x53\xf9\xc0\xba\xfe\x2d\xfe\xed\x08\xbe\x8d\x4f\xca\xcf\xa8\xf9\x92\x34\x8e\x16\x1c\x0f\xfc\xbc\x70\x1a\xc3\x67\xf0\xb1\xab\x71\x55\xb9\xe4\x6e\xdf\x77\xff\xc3\xd2\xfb\xa0\x47\x56\x15\x5d\xe1\xdf\x05\x89\x10\x32\x86\xcf\x6a\xf2\xde\x1f\x6b\xef\x70\x9a\x22\x20\xd8\xc1\xa9\x55\xb5\xef\x6e\x63\x9c\x92\x5b\x4c\x8a\x21\xfc\x07\xaa\x02\x74\xa9\x54\xaa\xd3\xa8\x48\x6e\x1c\x1f\x23\xbb\xa8\x76\xa1\x54\x0b\xd8\x4f\x89\x4c\xb9\xef\xae\x8e\xc7\xfc\xd3\x07\x9b\x26\x6b\xaf\xf0\x27\x46\xc2\x75\x89\xd0\x37\x17\x76\xe7\x9e\x3d\xd0\xec\xaf\xe4\x04\x7c\xa8\x52\x8f\x86\x17\xd0\x1c\xf5\xc0\x9a\x3b\xa2\xdb\xe5\x8c\x66\x8e\x0b\x0c\x98\x73\xe0\xe3\x1a\xde\x83\xd9\xe6\x60\xd8\x8e\xa3\x50\x49\xfd\x41\xf9\x94\x8f\x35\x3f\xf4\x60\x60\x4d\x06\x52\x3a\xfc\xf6\xcf\x14\x70\xe5\xdf\xd2\xa3\x94\x14\xa6\xe1\x84\x96\x3e\x54\x08\xa3\x34\x8b\xba\x51\x82\x78\xde\x8d\x2a\xdd\x0a\xf4\xf8\xd6\x58\x88\x38\x33\xd3\x2c\xb2\xa1\x50\xd3\xfa\xc9\x22\x37\x65\xe4\x59\x10\xc2\xcc\xda\x64\x9b\x9f\x98\x01\xaf\x1f\x05\x5d\xbf\xfa\x78\xcb\xc7\x24\x9c\x34\x09\x67\x83\x36\x33\xb4\x82\x10\x94\xdc\xae\x15\xc3\x8e\xd3\x21\x6f\x60\x5d\x30\xe7\xe3\xb1\xd7\x3e\x33\xd3\x6c\x1b\x21\x95\x60\x44\x1a\xbd\x3b\x41\xa7\xd5\x88\xbb\xb4\x7f\x65\xc2\xf7\xad\xd0\x5e\x41\x0c\xc9\xb4\x0c\xc0\xd7\x5c\x55\x71\xdd\x30\x1f\x9a\x78\x62\xf3\xd4\xb7\x9a\x4b\x3b\xe0\x34\x75\xc6\x0d\xd3\x2c\x2b\x96\x0d\x98\xef\x80\x79\x33\xa9\x9c\x28\x1c\x9a\x8a\xfc\xd7\x76\x86\x31\xde\x1e\x62\x8f\x63\x3a\x10\x39\xa6\xea\xc5\x0b\x84\x3f\xd8\xe5\xc1\x74\xaf\x05\xa3\x4a\x4b\x7e\x0e\xf9\x3c\x3d\x75\xee\x96\x70\x04\x84\xd2\xcb\x46\xa9\x74\xaf\x8e\xd3\xb3\x40\x1f\xa4\xd1\x9a\x9c\x9b\x9f\xfb\x22\x7f\x41\x81\x8b\xc0\x7b\x3b\x82\x00\x04\xc6\xf2\xba\x96\x26\x3c\x3f\x82\x20\xee\x44\xe9\x83\xca\x9f\x9d\x28\x47\xf8\xc9\x55\x71\xf4\x02\x75\x9e\x1d\x8b\x6a\xf5\x4b\x62\x89\x71\xad\x78\xea\xf0\xde\x78\x6d\x5b\x5a\x9e\xa0\xeb\x46\xa0\x38\x17\x6f\xc1\x70\xe2\x89\x6c\x5b\xa5\xb4\x4e\x3a\x94\xbe\x7f\xb2\xb5\xb5\xb9\xe2\x34\x3b\xdb\xec\x0d\xfb\x0d\xba\x44\x16\x97\x2e\x3d\x8e\xf0\x82\xf2\xb9\x2b\xb6\xb3\x9b\x1e\x80\xd3\xc7\xad\x7e\x10\x91\xe7\x1d\x5c\xbd\xa0\x79\x1b\xfb\xf6\x71\x77\x9c\x93\x40\xf2\xe0\xbf\xfa\xf7\xfd\x24\xeb\xf7\x3e\x0f\x33\x4c\x5b\xed\x97\x7f\xb1\xa5\x38\x49\xb7\xad\x7a\xa2\xe0\xa9\x55\x2f\x95\x78\x03\x9b\x8b\xeb\x9e\xf4\x66\xb1\xb5\x77\xae\x7a\x74\xe0\xe5\x11\xd6\xff\x34\xc9\x1f\xd7\x92\x00\xf4\xbc\x71\x67\x47\xf0\x88\x37\xd6\x68\x3d\xc2\xcc\x1f\x47\xea\x80\x4e\xdb\x04\xca\xac\xe8\x57\xdc\xd2\xd4\xe1\x08\xf5\x45\xe0\xb2\xe1\xc4\x90\xdf\xd6\x08\x87\xa3\x41\xe3\x4b\x5f\x73\x7d\x6e\x0f\xec\xde\x28\xb5\xca\x50\xe0\x25\x5e\x3f\x42\x25\x17\x05\xc8\xab\xa5\x17\xd4\xbd\x1e\xf8\x6e\xe4\x0f\x03\x35\x06\xc1\x4c\x4a\xdc\xe8\x44\xf8\x85\x4a\xc1\xf6\xd6\xe6\x58\x7d\xff\x6c\x95\xd8\x64\x61\x94\x5b\xc5\xa4\x04\x91\x0e\x3e\x56\x40\xdc\xc4\x46\xdd\x5e\x3b\xcd\x7a\x69\xda\xc9\x27\xa8\x50\xcf\x9c\xf3\x81\xef\x02\x4d\xac\xfa\x60\x6e\x1c\x87\x5c\xa5\x37\x26\xeb\x9a\x08\xfc\x85\xfc\x67\xa5\xfe\x48\x4d\x5f\x64\x21\x4a\x58\xa1\xd4\x03\x4f\x8e\x61\x65\xf3\x49\x8d\xdf\x7c\x06\x71\x84\xab\xb8\x21\x3a\xff\x40\x71\x25\x7e\x30\x56\x9a\xad\x02\xa0\xbe\x75\x0d\x51\xc5\x57\x3d\xfd\xa9\x95\x0e\x19\x49\x20\x4e\x2f\xad\x28\xf6\x9e\x36\x85\xef\x8d\x64\x20\xc3\x18\x81\xaa\x63\x96\xf7\x2c\xf3\xaa\xc2\xf4\xf2\x30\xe5\xd0\xfb\x19\xaf\xab\xe0\x58\x89\x6f\x28\x8c\x72\xde\xb3\x31\xea\xd1\x6e\x68\xef\x5e\xe0\x21\x0b\x1c\x67\x49\x7f\x77\x8f\x92\x10\xe9\xf6\x6d\x52\xc5\xc1\xd5\xfa\x41\x5d\xe7\x6d\xac\x1f\x3e\x51\x88\x0b\x93\x59\x33\xe1\x11\xfd\x0d\x92\x44\xc1\x52\x86\xdb\x40\xb0\xb7\xb3\x6e\x95\xe5\xe9\xb0\xe8\xd9\x0c\x6f\x1d\x2b\xeb\x8f\xb1\x79\xf8\xc4\xd5\x49\xf3\x22\x4b\xfb\x56\xd8\x70\xe4\x2a\x14\x2b\xcc\xdb\xca\xf8\x7c\xe5\x97\x7e\x6d\xa2\xf1\xfc\x9c\x13\xaa\xad\x3e\x82\xaa\x25\x0b\x3b\xe2\x52\xcf\x94\x0f\x6a\xd5\x9c\x49\x56\xa6\x27\x31\x48\xdd\xbb\x07\x04\x9c\x8f\x55\x32\x3c\x28\x56\xa0\x19\xea\xe0\x40\x6e\x2e\x14\xcd\x08\x61\xbb\xab\xf6\x8d\x50\x9e\xee\x76\x41\xa7\x59\x94\xea\x27\x80\x04\xd7\xb5\xb8\xe0\xf5\xc0\x57\x34\x7a\x69\xdf\xa6\xcb\x09\xd5\x57\x2a\x2b\x03\x0b\x07\x5d\x2d\x3e\x1e\x5b\xb2\xfb\x67\x9b\xbd\xa8\xdb\xb3\xd9\x04\xbd\x43\xe0\x52\x76\x51\xf4\x81\xca\xc7\xb6\x55\x45\xbe\x7a\xbc\xf4\x33\xb4\x6d\x6b\x93\xc7\x3c\xf1\x68\x63\x55\x61\x8b\x3e\xa6\xbc\x15\x8f\x75\x9d\xd0\xae\xb0\xc2\x6b\x64\xbf\x90\x6c\x9f\xd7\x72\x7f\xf7\x30\xbc\x08\xbf\xfc\x10\x78\xe7\x90\xe7\xdc\x2d\xa9\x89\x28\x93\x01\x74\x95\x4e\x71\xdd\x51\x0c\x7c\x84\xf7\x85\x4b\x79\x03\x7b\x1b\x51\xd5\x55\xb2\x86\x58\x5b\x37\xd9\x03\xe2\x33\xac\x34\x25\xcf\x91\x62\x6e\xe6\x0a\xa5\x95\x80\x36\xe0\x1a\xb4\x14\x95\xb0\x98\xa7\x14\x84\xde\xe1\x06\x44\x9d\x37\xae\x28\xc6\x66\xd3\xc9\x77\x68\x4a\x34\x3d\xe9\xf6\x53\xe4\xa5\x40\x6f\x6c\xd0\x4d\xc0\x53\xb0\xeb\xc5\x13\x61\xd1\x0f\x8e\xfa\x02\xc5\x47\x32\x41\x8d\x59\x4c\x84\x5c\x09\x3c\xaf\x51\x3b\x4a\x68\xa0\x4d\x24\x3f\x19\x7c\xc5\x27\x8e\xa0\xa7\x63\xfb\x69\x98\x99\x10\xcd\x01\x7c\x25\xfa\xbe\x28\x67\xec\xa0\x97\x8f\x68\x95\xb9\x0a\xe0\x64\xde\x55\xd3\x68\xa0\xd4\xa2\x1a\x8d\xa3\xe8\x80\x5e\x3b\x1f\xeb\x9a\xdc\x2b\x45\x66\xfb\x16\xd1\x00\x1c\xed\x56\xcd\x9f\xb8\x75\xb5\xc6\xcc\xdb\xa4\x1b\x47\x79\x8f\xc2\x44\xbc\xee\xef\x28\xac\xfc\x21\x0d\x0e\x3c\x3a\x36\x40\xf6\xe2\x8b\xc4\x28\xc1\x81\xac\x04\x1d\xbe\x5f\x37\x3e\xf8\x3b\x33\xd3\xb4\x45\x2f\xa9\x12\x8b\x99\x19\x61\xe1\x0c\x1a\x8a\x91\xd3\xa3\xec\x17\xd2\xb4\x68\x9b\x38\x06\xd5\xb2\x14\xc9\x1a\x6e\xf8\xf3\xa6\x92\xc3\x3d\x5e\x87\x4a\x0e\xd3\x24\x1f\xf6\xa5\x62\x83\x25\x47\xa6\x79\xe3\xbc\x9e\xe7\x3b\xac\xeb\x69\x26\x9e\xf2\x63\x10\x4c\x4c\xc5\x01\x02\x2d\x70\x98\xad\x0b\x9a\xc6\x07\xae\x14\x6b\xae\xd1\xf2\x60\xb5\xc2\x10\xcd\x76\xb5\x5b\x91\xff\x1c\x51\x45\xcf\xbb\x0a\xf5\x7a\xa1\xf4\xf0\x09\xae\xa2\x0b\xd3\xe1\xc3\xbe\xae\x19\x0e\x5d\x81\x07\xbd\xfd\xab\x0a\xae\x38\xde\x5c\x9c\x3e\xd8\xec\xa7\x95\x31\x6f\x28\xa6\x01\xa4\x3e\x32\xdf\x2a\x5f\x9e\xd8\x2e\x54\xec\x7c\x6b\x14\xe2\x8c\xbc\x75\xa8\x8c\x83\xd8\xf6\x58\x4d\xad\x79\xae\x99\x10\xa6\xd8\x3f\x05\x9e\xf2\xe0\x13\xa5\x93\x61\xc2\x97\x87\x11\x86\x2b\x3d\x17\x14\xd2\x56\xc1\x5a\x3b\x06\x2e\x3b\x88\x6d\x61\x27\x46\xc8\xe4\x5c\x02\x7a\x93\x3e\x03\xbc\xc6\x95\x1a\x76\x94\xf9\x66\x1c\x2d\xda\x18\xbd\x5b\x38\x24\xc8\xd8\xf0\xb1\x43\x77\x2e\xd9\xa4\x63\x8b\xc2\xa8\xae\xed\x25\x85\x76\xbf\xa4\xfc\xbc\xe9\xa7\xc3\xa4\x78\x60\xf4\xca\xdd\xcc\x27\xeb\xa0\xc9\x6d\xf8\x02\x0c\x2e\x15\xf5\x83\x35\x0d\xaa\xba\xa3\x18\x16\x40\x13\x8a\x84\x6e\x15\x8b\x93\xff\xa8\x54\xf1\xd3\xb8\x48\xcb\x73\x7b\xe7\x9a\xf6\x95\x41\xea\x4a\xb3\x80\xf4\x43\x83\x90\x8f\x55\x2d\x3a\x59\x32\xbc\x59\xf1\x1c\x30\x8d\xc6\xc7\x81\x57\x6d\x36\x39\x44\x07\x9c\x40\x55\x65\xb3\x91\x6e\x6d\x04\x7e\xb0\xed\x0e\x5d\x35\x97\xd0\x35\x65\x66\xbf\x3d\x8c\xab\x50\x90\x9a\x79\xf8\xf7\x8f\x02\xff\xb7\x1f\xd5\x8c\x60\x67\x36\x4c\xb3\x0e\x74\x38\x5f\xe0\xcc\xec\xff\x45\x9e\x07\x7b\x79\x44\xd1\xf1\x9f\x50\x5d\xe0\xd8\x16\x85\xcd\xb6\x2b\x59\xab\x0f\xe1\xb8\xf9\x04\x1e\xcf\xd5\xe6\xf6\xcf\xea\x56\xe4\x0b\xec\xbd\x6e\x12\x1c\x06\x8d\x98\x53\xa5\x72\x6b\x37\x35\x59\x79\xbc\x6c\x56\x10\xbc\x49\x37\xdd\xf7\x89\x2e\x91\xfb\x95\x71\x61\x9d\xc7\xf4\x6d\xe7\x11\x9f\xdc\x1f\x42\xdc\x86\x20\xef\xb0\x1a\xfc\xdd\xd2\xaa\x2e\x01\xee\x66\x12\x98\x18\x20\x7a\xfe\x27\x5c\x8f\x68\x9c\x4d\x78\xd9\xc6\xf7\x90\x8f\x4a\x62\x03\x47\x88\x5d\x77\x3d\x50\xbe\x1d\x84\x1a\x32\x12\xa9\x74\x82\x7e\x4a\xd9\x89\x60\x39\xc8\xa7\x89\x3d\xad\xde\x32\xa2\x94\x9f\xc1\x0a\xe2\x27\x7f\x3a\xf6\xea\xc0\xfe\x4e\x22\x33\xaa\x21\x7c\xa5\xf4\x55\x83\x2b\x75\x28\xd7\xd0\x0c\xa2\x82\xeb\x13\x42\xa3\xd7\x70\x8a\x9c\x0d\x0d\x6d\x39\xa9\xde\x76\x98\x45\x7d\xd0\x29\x4a\x29\xe3\xbe\x0a\x6a\x8f\x68\x42\x8b\x1b\x23\xb1\x7c\x5c\x80\x25\x18\x71\x1f\x13\x37\xf2\xc9\x58\x81\x66\x7e\x6f\xb3\x6f\x3a\x8c\x6a\x44\x56\xb6\x4d\xeb\xf8\x43\x72\x40\xaa\x35\x75\x60\x44\x8c\x67\x52\xc9\x46\x29\x9c\xc8\x6c\xfa\xf5\x11\x97\xe7\xa6\x29\x8a\xd8\x24\x85\x99\x54\x0c\x17\x1f\xa9\xf7\x70\x5e\xa1\x7a\xde\xd6\xe4\x46\xeb\xba\xf7\x12\x15\x51\x98\x66\x03\xd2\x2f\x65\x92\x57\x5a\xdb\x42\xf8\xfa\x98\x04\xf0\xc3\x6c\xc9\x46\x31\x6f\xd3\xd9\x59\x07\xc5\x69\x38\xde\xb5\xb3\x75\xee\x7b\x60\xf2\x9c\x1b\xef\x2e\x71\xae\x9e\x92\x38\xc9\x1a\x71\x80\x28\x29\x6c\xb6\x14\xd9\x65\x97\xe4\x81\xda\xee\x0d\xfa\x2d\x3e\x56\x35\xf5\x70\x25\x8c\xa3\xa4\x8b\xf6\x91\xd3\x52\x72\xb4\x07\xf7\x94\x44\x2e\xb8\x49\xd0\x80\xf9\xf3\xb1\xa0\x1b\xcc\xc7\x51\x7f\xd0\xf0\x04\x72\x98\xcd\x97\xe2\x4e\xdd\xb8\x49\xcf\xc4\x0b\x64\xb8\xb0\x61\xd0\x8d\xe7\xe3\xb1\x10\xe8\xe0\xb3\xcd\x6e\x6c\x4d\xa2\x7e\xe1\x5b\xea\x17\xbe\x35\x52\x5b\x2a\x6c\xb2\xa7\xfa\x3b\x87\x75\xad\x36\x9c\x93\xdf\xf3\x59\x28\x13\x42\xc3\x7e\x7f\x97\x30\xe6\x1b\xcc\xf8\x8c\x64\xe1\x58\xe0\xe5\x32\x1e\x82\xad\x80\xaf\xde\xb9\xea\xfb\x32\x0f\x51\xce\x23\xc3\x54\xa3\xc4\x3b\x33\x33\x5c\xfc\xe5\xba\x0c\x13\x2d\x8d\xb2\xf0\x90\xa1\x92\xfc\x89\x5e\x06\x9a\xa2\xcc\x80\x22\x18\x4f\xc5\x9d\x90\x12\xa6\x77\x04\x06\x76\x26\x50\xdc\xe6\x67\x54\x55\x7a\x39\x8a\x17\x32\x01\x1d\x08\x23\xbf\x47\x8a\xdc\xc6\x0a\x97\xce\x84\xaa\x37\x77\x4d\x94\xe4\xc5\x23\x5e\x72\xe0\xb4\x62\x0f\xdf\x8e\x88\x17\xcf\x91\x1f\x2a\x7c\x2f\xf3\x4b\xc1\xc6\xdf\x84\xb7\x76\x8c\x71\xce\x43\x83\x8c\x59\xa4\x8e\xe9\xa6\xf9\x47\xb8\x02\x09\xaf\xb2\x16\x10\xf0\xdf\xb5\x08\xe6\x9e\x3d\x20\x34\x0d\x81\xe2\xbd\x42\x25\x5c\x30\x59\xf4\x3c\x31\x2f\xf1\x27\x48\x41\xb0\x7f\xd7\x82\xcf\x2a\xd6\x7b\x1b\x56\xa9\x35\xe9\x8f\x81\x17\x86\xc7\x79\xc8\x64\xc8\x68\xcf\x1e\xc5\x9a\xd1\x33\x4b\x51\x0a\x88\x1e\x5e\x3c\x0a\xbd\x7c\xac\x25\x15\x89\x25\x7f\x9b\x4a\x91\x39\xba\x40\xa0\xd2\x40\x21\x19\x16\xae\xc1\xc0\x75\x84\x41\xbb\x68\x29\x69\x5d\x4c\x84\x83\xa7\xc6\x2a\xd5\x4f\x35\x8b\x74\xd0\xf0\x0d\x1b\x40\xde\xf9\x78\xd5\x07\xda\xff\xf8\xff\xff\x9f\x29\xf9\xa7\xbb\x8a\xd0\xe1\x3c\x39\x52\x39\x76\xb8\xe7\x61\xd8\x7b\x90\xae\x1c\xc1\x20\x8f\x51\xa0\xc6\x7a\x5f\xd5\xe7\xc1\xeb\x09\x9f\xfc\x30\x45\xe6\x94\x19\xf6\x1f\x5b\x75\xb3\x89\x77\xfe\x1e\xd5\x61\xc5\x37\x2a\x34\x36\x0f\xb7\xf3\x3c\xc8\x2a\x65\xc4\x64\x9f\x0e\x36\x5b\x13\x07\x7e\xe3\x2b\x32\x49\x50\xaa\x72\xdd\x9d\xb1\x7e\x71\x15\x94\x2d\x90\x38\x84\x17\x0f\x40\x01\xe6\x8e\x1a\x27\xbd\x33\x06\x08\xfa\xca\x74\x15\xf5\x0e\xb3\xb0\x67\x72\x60\x02\x85\x12\x52\x51\xe2\x36\xc6\xea\x36\x95\xbb\xe9\xa6\x9d\x8e\xcd\x73\x74\x43\xb4\x12\x0d\x1f\x2b\x6e\x23\x93\x59\x93\x6f\xa7\x5d\x22\x62\xb5\xb4\x30\x9d\x8c\x6d\x75\xb9\x70\x4d\xc8\x02\xc4\x36\xf8\x6a\xe3\x59\x35\x0c\xbf\x1e\x28\xa8\xea\x35\xa5\x34\x3b\xc8\xd2\x97\x6c\x58\x90\x3a\x2f\x32\x8e\x06\x40\xa6\x48\xa1\x2e\x73\xb8\x82\x02\xfa\xeb\xd8\x8f\x02\x8b\xf0\x45\xce\x29\x2c\x4a\xf4\xe5\x26\x31\xeb\xc6\xd5\x07\x2d\x36\xfa\xbb\x30\x63\x28\xf0\x7c\x38\x66\xd6\x89\x45\x24\xe5\x85\x89\xac\xed\x35\x55\x78\x7b\x4d\x65\xd1\xf9\x20\xca\xa2\x22\x9f\xaa\x1e\xbf\x33\x84\xd5\x0f\x09\x6f\xbe\x97\x0a\x78\x4f\xcf\x14\x22\x24\x40\x8c\xfc\xa0\x13\x64\x8d\x92\x70\xd8\x6f\xa3\x76\x57\x5d\xa0\x03\x86\x55\x0f\x42\x80\x61\xfe\xdd\x74\xd3\xb4\x93\xef\xf4\x24\x7a\x5b\x09\xf4\x8c\x85\x7d\x42\x01\xeb\x1b\x2d\x45\xdf\x79\x56\x91\x84\xdc\xc1\xdb\x10\xb5\x42\x25\xad\x88\xfe\x26\xca\x10\x3b\x68\xfd\xc3\x01\x90\x94\xa6\x2b\x35\xc5\xf1\x76\x2f\x5b\x75\x81\x5a\xca\x82\xef\xa8\x3c\x22\x37\x0f\x02\x25\x8d\xca\xda\x43\xb8\x71\xa4\x72\x80\x1c\xdc\x46\x41\x49\xfa\x0d\x0f\x2b\x92\x44\x3b\x20\xa6\x4f\x90\xc1\x92\x6c\x4d\x4d\x65\x82\x54\xf2\x86\xfd\x86\xbf\x39\x10\x1b\xf0\xf1\x58\x31\x63\x66\xa6\xd9\xb6\xa1\x19\xe6\x76\xca\xf3\x53\x5e\x56\x79\xe2\x71\xd5\x1e\xbc\x89\x52\xbc\x56\x0e\x93\xca\x53\xcd\xf7\xda\x41\x94\xa7\xac\xe7\xe9\x4a\xe9\xbf\xfe\xbc\x93\x72\xfd\xb4\x5a\x73\x98\x86\xa9\x69\xa8\x6c\xe2\x8c\xd2\xb6\x38\xa3\x4a\x4a\x7d\xcb\x18\x76\x04\x43\xef\xab\xc0\xe8\x7d\x9f\xbe\xa5\xc8\x68\xe7\x05\xa8\xf5\x96\x9e\x51\x7b\x4b\xf5\xf9\x07\xf1\x30\xe9\xda\x49\x05\x8b\x41\xdd\x04\x2d\x09\x5d\x75\x3c\x47\xc6\x16\xfd\x8c\x71\x43\xe6\x55\xc5\x93\x21\x13\x23\x20\xbf\x7d\x3f\x50\x59\xf0\xfb\x9e\x01\xaf\x48\xb3\x3e\xc2\x36\x27\xed\x3d\x2b\x8d\xf4\xfb\xaa\x5c\xc1\xd0\x21\x78\xfd\x1f\xa8\x62\x67\x96\xc6\xf1\x0e\x8f\x20\x39\x89\xd7\x84\x2f\xbb\x02\x9f\xe9\x58\x4d\xaa\xc7\x8a\x65\xf7\xbe\xae\x22\xf3\x77\x4b\x9f\x9b\x6c\x1b\x7f\x01\x36\x32\x10\xef\x9f\xb8\xe7\x3a\x88\xf2\x82\x99\x40\xf9\x61\x05\x23\xcd\xd1\x9a\xb5\xc9\x7c\xb5\x4a\x13\xef\x94\xd2\xc4\x3b\xa5\xaa\xf1\x7d\x9b\xe7\x28\xf9\xa2\xc2\x78\x5d\x51\x54\xbf\xa7\xe9\xaa\x2e\xe9\x7a\xbf\x89\x4d\x16\xd9\x1c\xd5\x6c\xd5\x1c\x70\xcc\xd1\x81\x6f\x9a\x5d\x52\xa4\xdf\xe3\x84\x71\xfb\xa6\x9b\x61\x3a\x58\x19\x99\xd0\x2e\x75\xad\x43\x9e\x42\x3a\x2c\xc2\x6c\x65\x4a\x31\xe2\x5f\x54\xd5\xd9\x87\x5a\xbe\x09\x86\x98\xdb\x29\x34\x69\x74\xc4\x38\x90\x60\xae\x99\x17\x66\xd1\x8e\x80\x85\xc1\x37\x2c\x43\xea\x6a\x96\xc8\x0c\x28\x78\x70\xc1\x29\xe8\x7b\xf8\xd8\x65\x2e\x45\x66\x92\xdc\xc9\x6b\x39\xfd\xa1\x9f\xe1\x69\xf2\x49\x0d\x9d\xcc\x9c\xd8\x07\xda\x42\x68\xa9\x82\xfd\x9e\x8f\x83\x47\xdd\x58\x7b\x3b\x2a\x32\x93\x45\xf1\xca\x84\x0f\xe0\x20\xb1\x75\x5e\x09\xbc\xad\xaa\x32\x75\x98\xe6\x92\xba\xb1\x60\xb1\x7a\x7c\xef\x97\x6a\xe0\xe5\xfd\x40\x11\x82\x9f\xaf\x65\xe5\xca\xac\x01\xb4\xd6\x81\x4b\xd5\x42\xa9\xd5\xf0\x6f\x1b\x9f\xc9\x49\x2d\x5b\x2b\x50\x6c\x6e\xbc\xbd\xf8\x62\x33\xef\x99\x0e\x69\xa3\x2a\x41\x83\x0b\xf0\xc3\x22\x38\xf3\xb8\xc2\xff\x39\x7e\x1f\x04\x34\xb0\xfe\x47\xb0\xd9\xf8\xa4\x2e\x3b\xca\x7b\x69\x06\x36\x23\xc4\x6a\xaf\x07\x1e\x91\xf0\xba\x43\xa5\x15\x51\xbf\x6d\xb3\x18\x84\x10\xbe\x33\xcd\x83\x99\x32\xf5\x5e\x37\xcc\xb3\x30\x4c\x3a\xa3\x0a\x4d\x8d\x91\x29\xe0\xdd\x8a\xdb\xc2\xc4\x0f\x51\xa4\x0e\xbb\xd5\x40\xaa\x80\x48\xf8\x48\xa0\xea\xae\xdf\x09\x94\xe8\xd2\x69\x25\x5b\x70\x65\x84\xbe\x8a\x4c\x0b\x7f\xbc\xf4\x24\xdc\xdf\xd5\x17\xfd\x53\x55\xb4\x7c\x93\x53\x08\xec\xd5\x63\xf0\xce\x42\xf4\x45\x6b\x82\x2f\x6c\x55\xcd\xae\xff\xd7\x63\x35\x3f\xa2\x4c\x2c\x86\x5e\x53\x05\x51\xd3\x35\xb8\x7e\x3e\x51\xe9\xf4\x42\xd4\x1d\x66\x36\xdf\x59\x39\x73\x11\xd9\xae\x56\xbd\xf0\xda\x54\x8e\x5d\xcf\x10\xe1\x22\x8e\xc3\x7d\xe3\xf6\x58\x69\x14\xe9\xdf\x95\xd2\x67\x69\xf7\x46\xf9\xa4\x3c\x9a\xf9\xa6\xda\x1a\xdd\xcc\x9a\x62\x47\xe5\x68\x9c\x60\x9b\x2f\x0f\xdf\x09\xb4\xe0\xaa\x62\x36\x78\xe8\x75\x34\xa1\xe0\x31\x98\x03\x83\x4f\x28\x9b\xdd\xc0\xdc\x9a\xe0\xac\x1e\x55\x76\x64\xb9\x6f\x16\x6d\x96\x13\x60\x11\x3d\xf9\xc9\x55\x95\xdc\xac\x2b\x7a\xac\xd7\xf1\xd8\x78\x2e\x51\xd9\xd5\x1d\x63\xb8\xbb\xe7\xf6\x56\x1e\x2e\xb6\x2c\xf1\xe5\x60\xbf\xaa\x06\x58\x83\xf1\x8f\x92\x25\x9b\x17\x8e\x07\x69\x64\x06\x54\x08\x72\xfc\xcb\xaa\x52\x68\x5b\xb0\xb2\x31\x9e\xd0\x27\x8a\x20\xe8\x93\x3a\x21\xfb\x28\x33\xe8\xd8\x3a\x65\xad\xea\xc3\x02\x9b\xf7\x54\x17\x5d\x33\x68\x8c\xbb\x50\x3e\x71\xee\xd0\x26\xa6\x1d\x63\x60\x02\xd1\x22\x63\x55\xb9\x99\xd7\xf2\x23\x81\x8f\x8c\x69\xc0\x3c\xf9\x24\xc3\xc1\x68\xc3\x0b\xbf\x08\x7d\x5c\x08\x46\xc6\x91\xf1\x73\x07\x9a\x2f\x45\x2c\x13\xe5\x0a\xe2\xa0\xc1\x16\x20\x90\x9f\x7b\xe8\xa5\x59\x6e\x27\xfc\x23\xbf\x89\xcd\xa6\xc9\xda\x05\x9e\xf4\x98\xea\x8c\x11\x78\x82\x4c\x9d\x33\xf7\x47\x03\x4f\xb4\x78\xb4\x2e\xea\x0b\x4d\x5e\x38\x31\x80\x11\x7a\x72\xcc\x81\xbc\x46\x97\x88\x2c\xf2\xa4\xf3\x1d\x79\x95\xf7\xe5\xd6\xba\x5a\x17\x72\xfc\xe3\x4a\x13\xec\xb8\x62\xa6\x4c\xdb\xb9\xcd\x96\xb8\x8d\x0e\x3f\xf3\x23\x8a\xc9\xf8\x18\x12\x98\x9c\x34\x3f\xf9\xe4\x13\x3a\x4d\x0a\x7c\x3c\x0a\xb2\x0c\x29\xdb\xd1\x03\x67\xf1\xc6\xd2\x6f\xf5\xd3\xd4\xc8\x11\x39\x13\x9f\x5f\xfe\x84\x2c\x1c\x62\xa4\xf7\x4b\x5f\xb2\x3f\xa3\xb2\xd5\xab\x30\x07\xb2\xd9\x68\xcf\x20\x47\x59\xd3\xb4\x00\xf7\x74\xae\x74\x19\x75\x22\xbc\x1b\x9e\x3e\x45\x19\x72\x3d\x50\x99\xe0\x91\xa0\xf1\x95\x69\x8f\xd5\xdd\xb7\xcf\x95\x8d\x55\xf7\xed\xea\x26\xa9\x42\xa9\x6a\x0c\xb2\xb4\x6d\xda\x1c\x16\x8b\x22\x09\x7d\x4e\x1a\x86\x9b\xd7\xe8\xf3\xd3\x07\x89\xd3\x9e\x87\x17\x60\xf9\x50\xf6\xe1\xe3\xcd\xc4\x24\x4f\x37\xbf\xfa\x65\xa5\x37\xfb\x6d\x22\x3e\xe5\xe3\xc0\x43\x16\x8a\x94\xb8\x27\x5f\x10\xd1\x5f\x0a\xd8\x36\x78\x37\x4a\x19\xae\xba\x55\x94\x90\xfe\x37\x54\x8d\xa4\x31\x54\xbd\x1a\xe4\x26\x57\xd1\x22\x97\xb2\xb1\x47\x02\x9f\x52\x53\x15\x68\x08\x46\x4b\x36\xdf\x41\xb7\xe1\x84\x77\x35\x1e\xdd\x8f\xcd\x1d\xa1\x4e\x15\x7a\xe4\xd7\xc8\x4c\x73\xf5\x83\xd6\x10\x4a\x2a\xe7\xf5\xb8\x12\x83\x1f\x98\x89\x4c\x4d\x54\xf6\x88\x7d\x89\xba\x43\xe8\x1b\x5d\xa2\x7d\xe4\xd2\x09\xd7\x4f\x02\x23\x1a\xff\xff\x1a\x3d\x25\xf2\xc7\x91\xe3\xdb\xc2\x43\x39\x19\xa8\x3e\xce\xc9\xd2\xab\x38\x67\x36\x26\x4a\x5f\x57\x7a\xba\x47\x57\xce\xc7\x9a\xc4\xdd\x0e\x4c\x56\xf4\x25\xe5\x9e\x96\x92\x05\xec\x84\xd4\x2f\x7c\x4b\x92\x62\x8e\xd0\x0c\x50\x70\xe1\xf9\x59\x58\x3c\x19\xa6\xdd\x9c\x16\xbd\xf8\x62\x73\x98\x2c\xa4\x59\x31\x4c\x04\xa9\xef\x28\xf4\x3c\x9d\x9e\x2b\xeb\xf7\x86\x49\x27\xb3\x9d\x6d\xca\x3d\x37\x56\x55\xbc\xb2\x9d\xd8\x1f\x50\xba\xf8\xbb\x2d\x8f\xb5\xb8\x8f\x17\x08\xfb\x0c\x6c\xb6\xc8\x34\xf9\x26\xb3\x5d\xaa\x1c\x0b\xed\x40\x97\xbc\xf8\x02\xe8\x39\xd5\xbe\x1c\x44\x71\x5a\xe4\x0f\xd0\x0a\x45\x52\x7e\x1a\xd6\x4c\xc0\xb9\x6a\x4a\xf9\xb8\x1a\x2f\xfa\x28\xf0\x81\x03\xcf\xed\xf3\xc7\x03\x1f\xf3\x9c\x57\x9c\x7c\x6f\x2a\x54\x1d\x98\x6d\x25\x98\xf3\x16\x19\xf3\x7b\x5d\x29\x15\x8b\x14\x37\xdd\xb0\x88\x74\xd7\xa4\x32\x79\x0f\xec\x07\xa3\x29\x0a\x1f\xbb\x54\x06\x7d\xef\x49\x25\x9d\x0f\xa2\x63\xa0\x3f\x6e\x21\x6e\xd3\x09\x39\xaa\x4b\x0f\x8d\xa9\x9c\xce\xef\x6d\x16\xbd\x28\x59\xa4\x96\x1f\xec\x23\xc0\xe4\x70\x8c\x4c\x28\x8b\xed\x76\x7b\x8c\x04\xf7\xb9\xbd\x52\xcd\xed\x9a\x78\xc9\x24\x7e\xad\xc3\x7f\xbc\x5b\xfa\x99\xc2\x77\xc7\x48\x09\x29\xca\x23\x02\x3e\x22\x08\x87\xf5\xc3\x6e\x62\xc4\x2f\x9f\xac\x2a\x12\x45\x93\xd1\x04\xa5\x22\xb0\xd5\x03\x92\x5f\xfc\xd4\x32\x45\x52\x39\x21\xc2\x00\x70\x9d\x4a\x49\x68\x1c\x70\xb4\x1e\xfe\x87\x32\x93\x74\x41\xdc\x71\xc0\x89\x82\xd0\xb3\x70\xf0\xa1\xca\xf0\x33\xb6\x85\x4c\xab\xe0\x5c\xe4\x1d\x15\x26\x2f\x9c\x54\x34\x16\xeb\x6d\xfc\x9a\x68\x65\x2a\x04\xff\x61\xad\x65\x55\xac\xc4\x76\xaa\x7a\x9d\xf8\x2d\x9e\x09\x17\x26\x2e\x55\x7c\x3f\x4c\x37\x8f\x04\xe8\x8e\x66\x14\xba\x1a\x3c\xa1\x30\x3a\x09\xad\x45\x7a\xc8\x7a\x30\x74\x84\x86\x7d\x73\xd0\x32\x7d\xb0\xb9\x10\x65\x39\x89\xff\x4e\xf8\x01\xcd\x35\xc5\x10\x8c\x1d\x81\x55\xf6\xbd\xcd\x03\x35\x44\xe9\x32\x33\x03\x5e\x45\xc7\x45\x5f\x6d\x46\x46\xc2\x29\xcc\x00\xf1\x55\x4d\x6f\xac\xa1\x5b\x24\xe2\x4b\xde\x10\x5e\xd2\x6c\x90\xe3\xc9\x21\x51\x2a\xbe\x3c\x8c\xa8\xd5\x32\xc6\xde\x04\xe3\xc2\x55\x43\xf8\xe6\x93\x75\xaa\x69\x26\x5f\xe4\x95\x21\xe3\xf2\xd5\x4b\xe5\xe3\x1a\x9e\xb9\x67\x9a\x05\x86\x79\x9d\x00\x1d\xfa\x6e\x7c\xac\xfa\x17\x4b\x51\x15\x51\x87\x76\xca\x67\x56\x3f\xc3\xcb\x82\xf9\xfd\xd7\xf4\x16\x79\xc3\xe9\xbc\xec\x67\x30\x58\x32\xb3\x58\xc3\x41\x9c\x59\x48\x7d\xd3\x85\xcc\xcc\xf0\xca\xfa\x39\x3d\x5b\x3e\x1e\x7b\xb3\x55\xc6\x3a\xb0\x61\xb5\xef\xb0\x91\x5c\xab\xd2\x55\xe7\xde\xa8\x23\x59\xe9\xd8\xf0\xe9\x49\xac\x66\x47\x3e\xa9\x8a\x8a\x3e\x2d\xbf\xaa\x15\x61\x76\xb6\x3c\x5c\xbf\x5a\x4c\x8b\x98\xe8\x71\x7a\xb7\x0e\xc5\xc9\x12\xaf\x9b\x27\x65\xda\x26\xcf\xa7\x14\x9f\xd4\x49\x35\xce\x0c\x99\x1e\x17\x56\x3d\xb7\xd7\xf5\x6c\xe8\x02\x60\x77\x6e\x28\x70\x4e\xdb\x16\xbd\x85\x34\xeb\xe2\xad\x71\x11\x97\xde\x9a\x14\x74\x7d\x8a\x65\xfb\x83\x38\x5d\xb1\x36\x7f\x88\xac\x2c\x8a\x2e\x5b\xc0\x1d\x22\x49\x9e\x47\x0e\xbf\x8f\x17\x8a\xd6\xfe\x5f\xeb\x12\x03\xdc\x1a\xd6\x11\x8f\x67\xb2\xd7\xd1\xb6\xf5\xcf\x29\xc4\x60\xfc\x04\x45\xc7\x1c\x10\x69\x6c\x2a\x94\xff\xd0\xd1\x3f\x43\xf7\x8e\xc7\x78\x85\xc2\x4b\xf4\x27\x8e\x96\x4f\xb8\xdb\x65\xae\x36\x44\x0a\x1e\x8c\x85\xad\x27\xf8\xf0\x1a\xb9\x02\x42\xa9\x30\xb2\x08\x15\x99\x3b\x14\x3f\xf3\x71\xf9\x85\xba\x04\xa7\x6f\x8a\x9e\x25\xce\xdf\x88\x99\xe4\x1c\xdd\x83\x13\x99\x18\x9f\x4e\x9e\x3e\xe8\xc0\xd1\x00\xc1\xe1\x45\x5c\x57\x44\x0b\x18\xa5\x14\xa6\x39\x65\xa1\xd3\x58\x2a\x3b\x23\x43\x5c\x7c\x32\x96\x86\x11\xf3\x74\x36\x48\x33\x59\xf7\x8e\x82\xc5\xa7\xcd\xe7\xeb\xe6\x97\x3a\xe9\x32\xb4\xda\x04\x74\x51\x45\x0b\x4e\x39\x62\x56\x69\xba\x38\x61\x84\x1b\x8a\xa1\xfb\xe7\xaa\x56\xba\x92\x76\x23\x4a\xd0\x44\x12\x4f\x0d\x94\x8f\xdb\xe0\xfd\xb3\xcd\x3c\x24\x79\x61\x71\xab\x0e\x12\xe0\xe1\x01\x1e\x40\x97\xc4\x26\xeb\xca\x5f\xba\xd2\x87\xa2\xfa\x55\x6d\x90\x61\x0c\xa9\xff\x11\xb2\x5c\x21\x44\xab\x41\xf6\x9a\x76\x3e\xcc\xd8\xbc\x62\xf7\x9f\x51\x56\x0b\xaa\x8c\x18\x89\xb8\xa2\x61\x0e\x69\x52\x64\x69\xfc\x50\x75\xc7\xa8\x87\x31\x31\xa3\x13\x39\x70\xd3\x52\xeb\x9a\xba\xe7\x44\x30\xc2\xff\xd4\x98\x57\x3b\x60\x7e\xaf\x1b\xea\x52\x15\x9b\xe3\x7a\x88\xe5\x14\xca\x2a\x88\x52\xaf\x04\x8a\x66\x57\x0f\xca\xad\x2b\x92\x8e\x6d\xa8\x47\xa1\x15\x7f\x47\x4d\x18\xc5\xe9\xb2\x05\xf9\x2e\xe0\x4c\x48\x3f\xf8\x18\x05\x17\x38\xc0\x0b\x1a\x29\x3c\xee\x2f\xf6\xcf\x36\x0b\x22\x9a\x99\x18\x21\x34\xf1\x1e\x61\x23\xf0\x45\xe1\x8b\x8a\x6f\xb1\x13\xe5\x61\x9c\xe6\x76\x9b\x56\xd6\x0b\x5c\xa3\xf7\xbf\xe0\xe1\x3d\x55\x17\x39\xa0\xe9\x04\x9e\x71\x6c\x72\x0d\xc7\x1d\xf1\x6e\x4d\x95\x71\x96\x19\x9f\x69\x3b\x39\x99\x05\x4f\x89\x53\xee\x8c\x9a\x83\xcc\x2e\xfc\xa3\xe6\xec\xe7\x1b\xff\xf4\x80\xa3\xdb\xae\x0c\x0f\x6e\xe6\x2c\x1e\x3a\x16\xc4\x1d\x32\x61\x00\xf2\xc0\x4a\x63\x2f\xaf\x95\x6a\x02\x62\x0f\x70\xde\x48\xd3\xa6\x88\x1b\x08\x2e\xfe\xbe\x02\x54\x3c\xfa\x14\x64\xd1\x1c\x8a\xd8\x3f\x86\x7b\xb8\x75\x82\x9a\xfc\x57\x7b\x68\x08\xc0\x65\xf5\xfb\xf6\xb1\xc9\xdd\xdd\xaa\x52\x59\x04\x92\x10\x2a\xc0\x37\x35\x00\x8a\x96\x99\x4b\xdf\x90\xdc\x86\xb9\x1a\x69\x7c\x79\x80\xfd\x1a\x31\x8f\xca\x74\xda\xd6\x2f\xba\xe9\x53\x5f\x91\x11\xaa\x50\xf0\x96\x3e\xd1\xa2\x78\x06\xb9\xf2\x65\x2d\xdd\xd5\x35\x51\xb2\xa7\x5a\xd5\xc0\xb5\xaf\xc1\x13\x00\x37\xb1\xa6\xc0\x07\x7b\xb4\x52\xfa\x09\x54\x21\xf0\xb4\x7f\x84\xa7\xcd\x27\x94\xa6\xc0\xdf\x8a\x2c\x0a\x66\x07\x98\x67\x1d\x1b\x1b\xc4\x55\xf8\xc8\x43\x2d\xff\xec\xee\xf0\x4c\x3d\x9c\xea\x65\x45\xb1\xbc\xa3\xa5\x18\xb5\xaf\x03\x60\x83\xdb\x39\xa3\xe6\x47\x77\xac\xaa\x97\x3a\x8e\x34\xdb\x37\xdd\xec\x59\x17\x08\xc3\x4b\xfd\xa4\x54\xea\xaf\x1f\x8e\x66\x81\xbe\x02\x90\xd8\x6e\x1c\x75\x23\x89\xb2\x10\x5d\x7c\xa4\x68\x83\x3f\x1a\x33\x99\xb3\x60\x1c\xc9\xa2\x5c\x1a\x32\x12\xf2\xa9\xda\xcc\xc9\x3a\xa2\x92\xcc\xe6\x45\x16\x85\x85\xe0\x75\xe0\x10\x0e\xe3\x01\x62\x35\xbc\x47\x3f\xcd\x62\xe4\x2e\x17\xeb\x90\x34\xd4\xa4\xaa\x6e\xb3\xf8\x96\x0c\x4a\xf8\x32\xdf\x06\x96\x2f\x8f\xcd\x29\x9a\x1d\xb3\x64\xa2\x98\xa2\xb8\xbf\x81\x6e\xc1\xdb\xa4\x74\x71\xb7\x2f\x0d\xec\x02\x88\x43\x84\xa8\x68\x5d\xe0\xed\x1f\x81\x51\x14\x5c\x73\xf5\xf6\x61\x1a\x30\x77\x88\x32\xd9\x31\x6a\x81\x4b\x57\xa0\xba\x41\xf4\x70\xb6\xb5\xaa\xe5\x2e\xba\xa6\x1e\x6b\xb7\xb3\x35\xc2\xca\xdf\xf0\x3f\xad\xe9\x86\xce\xa9\x04\xfe\xd5\xd4\x16\x32\x32\x3c\x02\xba\xe7\x93\xe0\x71\x25\x4d\xd3\xce\xc3\x2c\x6a\xdb\x8c\x01\x90\xd8\xe9\xa7\xd4\xc0\x39\xc4\x9a\x78\x30\x74\xd5\xff\xca\x72\x2f\x0a\x7b\x8f\xa9\x1b\xfe\x44\x73\x23\xde\x00\x8d\x29\x97\x8a\xfc\x16\xdb\xfd\x19\xd4\x29\x50\x10\x3f\xa7\x94\xb3\x6e\x05\x6a\x9a\xf2\x93\xc0\xf3\x01\xaf\x97\x9a\x80\xef\x11\x00\xd9\xb0\x28\x6e\x90\x41\x47\xc9\x7b\x0a\xbb\x5f\xa0\x55\x0a\xe0\xca\x28\x24\xfa\xab\x2f\x3f\x42\x7c\x65\xf4\x57\x7f\xf0\x08\xd9\x30\xc7\xd7\x57\x2d\x28\x44\x69\xf7\x54\xc9\xf2\x48\xe0\x6b\x29\x5b\x5b\xde\xa8\x10\x16\x7f\x17\x19\x12\x98\xf9\x2b\x4a\x11\x8a\xa7\xfa\xb4\x42\x89\xe3\x8d\x55\x62\x12\x48\xc0\xb0\x45\x4f\xa2\x78\x27\x9d\xa0\xea\xfe\xb9\x28\x8c\x47\xa9\x66\x98\xa5\x5c\xb2\x8a\x15\x20\xd3\xe6\x7b\x54\xd6\x9e\x74\x30\xfc\x3c\xbf\xd7\xf1\x79\x7a\xa7\x7a\x5e\x8d\x27\x44\xfd\x7c\x37\x9e\x2f\x22\xbe\x09\xf4\x65\xa4\x6e\x49\xf7\x27\xbd\x58\xdd\x63\xad\x1e\x8a\x53\x8a\xa8\xae\x42\xa0\x4b\xd5\x85\xa3\xcf\x74\x5c\x59\xd6\xc9\x55\xdf\x52\xfe\x5b\x70\xfe\xf8\xbd\xbb\xba\x9d\xce\x3d\x2b\x7c\xef\xdf\xa6\x85\xbf\xf1\x85\xd6\x66\xfc\x27\xa5\xba\x66\x61\x21\xea\x98\xa5\xa8\x60\xb3\xc3\xa0\x1f\x25\x93\xf4\xba\x8a\xcc\xc5\xd8\x54\x39\xf9\x83\x13\x5a\x33\x8b\x16\x1d\x56\xfd\xf5\x72\x34\x72\x71\x72\x36\x13\x60\x43\x04\xe1\xdd\x61\xcd\x7b\x0d\x0f\xc7\xe2\x96\xb8\x78\xdc\xd6\xbb\xda\xc4\x43\xe0\x00\x85\xee\x1f\xd3\x92\x75\x33\xbe\x9e\xcc\x72\x5d\xed\xe0\xc5\x24\x2d\xf2\xff\xb4\xe0\xaf\x2e\x51\xce\xec\x52\x08\x68\x32\xd6\xf6\x31\xdd\xec\x3d\x36\xe6\x30\x9e\xa2\x29\xc2\x85\x29\x55\xf5\xbd\x00\xdf\x23\xca\xe4\x1e\x29\xbb\xa5\xa5\x38\x93\x5e\x29\x55\x0c\xf9\x7a\x39\x4a\x34\xf9\xaa\x9a\xf3\x7c\x31\xf0\x73\x9e\x2f\xba\xae\x3b\x45\xab\x51\x7b\x58\xb8\x64\x04\x3b\xf9\x0d\x05\x68\x00\xd5\x3d\xcc\xc8\x75\xc5\xd1\xd8\x4e\x33\x9b\x50\x82\x8f\xb5\x86\xda\x08\x02\x58\x6e\xdb\x3b\x59\xf5\xea\x1a\xf1\x2f\xa7\xc9\xae\x22\x4c\xba\xae\x47\xc8\xd3\xac\x6f\xb3\x5d\x74\x6b\x30\xae\x97\x03\x65\x0e\xaf\xe2\x69\x48\xa3\xc0\x83\x49\xce\x96\x5e\x59\xf9\xdf\x91\xcd\x80\xcd\xdc\xd2\x52\x53\x1c\xea\x6e\xce\x95\x18\x26\xe7\x6f\x42\x9d\xc9\x81\xb9\xab\x30\x48\xb4\x2b\x1f\x8d\xc6\x9b\xe4\x9e\x75\xeb\x98\xf2\x54\xc7\x1c\x56\x26\x4e\x57\x18\xfd\x0e\x6f\x8d\x31\x11\x94\xb1\x38\x45\x97\x2a\x6d\x9d\x4c\x52\x15\x6e\xda\x2c\x93\xe1\x26\x06\xbe\x69\x40\x35\x6c\x17\xcf\x4b\xd4\xf4\xb7\x0e\x34\x33\xdb\x8d\xfa\xec\x54\xa5\x08\xd5\x70\x7a\x35\xe3\x39\xe2\xf4\xc1\x66\xd8\xb3\x4b\x59\x1a\xdb\x82\x03\x16\xe9\x1c\x78\x87\xfb\xfb\xa5\x02\x87\x5d\x18\x8b\x25\xe8\xda\x87\xed\x38\xca\x7b\x7f\xe3\xa0\xb0\x8f\x73\x20\xaf\x65\x62\x66\xd9\x73\xae\x75\x5e\xa4\x55\x27\x5a\x7e\xf3\xbc\x5d\x7a\xf8\xda\x65\xd5\x01\xac\xde\x4b\x94\x17\x22\x6b\x21\x38\xb6\xea\x71\x09\x40\x4d\xb1\xae\xf7\xac\xcd\x08\x01\x8e\xc2\xf0\x15\x5a\x88\x7c\xac\x78\xe8\x08\x88\x42\xaa\x31\x84\x16\xe4\x08\x80\x6c\x27\x0b\x18\xc3\x60\xc1\xcb\xa0\x73\xca\x91\x27\x7c\x81\x84\xa1\xe3\x00\xd2\x17\x9a\xfd\x34\x89\x8a\x34\x93\x24\x9e\x47\xa0\xe8\x8a\x65\x1c\xca\xdf\x5e\x95\x07\xa5\xc3\xcc\x74\x91\xbb\x03\xdb\x73\x4c\x8d\x95\x1d\x0b\x3c\xf0\xba\x93\x32\xd7\xc6\xfc\x9c\x53\x62\x52\xaa\x4c\xc1\xe3\x91\xfb\x52\x34\x73\x1d\xb0\x84\xe3\x00\xd5\x24\x3f\x57\xea\xfa\xd1\x72\x54\x84\x3d\x19\xa2\x15\x59\x4e\x5a\x9f\xa2\xd7\xe9\x8d\xfc\x30\x21\xc1\x61\xa2\xbe\x99\x50\xb0\x4e\x56\xdb\x90\x10\xd6\x7b\x08\xcd\x06\x96\x99\x64\x97\xc7\x7f\x4f\x12\xe4\xd7\x4d\xeb\x3b\x44\x50\xa3\xe5\x71\x14\x4f\xfd\xad\x96\x92\xa1\xba\xad\x69\xae\x8e\x52\xef\x94\xad\x96\x62\x3c\x58\x62\x87\x2a\x19\x5c\xc3\xc9\x4c\x73\xc0\x82\x16\x60\x15\x66\xc9\x4d\xad\xa4\xc3\xa4\xfb\x80\x52\x93\xbb\x55\x6a\xcd\xf1\xed\xb4\x04\x90\x49\x4d\x21\xd7\x87\x39\xba\x01\x67\x86\xd8\x62\xa3\xf4\xb2\x64\x6b\x81\x57\x04\x47\x39\x05\xcd\xb5\xab\xe5\x68\x1e\x36\x2f\x09\xda\x95\xd2\x4f\x71\x65\x51\x3a\x51\xdd\x9a\x68\x04\x78\x62\xf5\x6b\x58\x7f\xb0\x14\x87\x1d\xfd\x54\x62\xbb\x69\x11\x99\x42\xac\x0a\x2c\xdf\x6d\x15\x2a\x9d\x2e\x55\x7f\xee\xac\x17\xb8\x34\x79\x9e\xa6\x9a\xd9\xee\x16\x5d\xb8\xc3\xc7\x57\x77\xc7\x11\x9a\x4a\xf5\xf2\x5e\xd4\x37\x6a\x94\x84\x83\x13\x3e\x41\x6b\x95\xdf\xf8\x3f\xf9\x8c\xe2\x3a\xe2\xf0\x0f\x10\xb4\x9b\x1a\xb9\xb3\x9b\x28\x27\xf0\x62\x58\xa4\x0e\xc6\xe0\x8f\x28\x06\x42\x06\x7d\x0a\x91\x9c\x63\xc2\xf9\xf5\xe7\x7d\xcd\xd6\x41\xa6\xf7\xb4\x3c\x64\xee\xe9\x3d\x2d\xdf\x3e\xfd\x59\xd9\xf8\xd2\xd7\x5c\xbd\x15\xaf\xd7\x51\x3a\xf8\x60\xe5\xa6\x62\x0b\x38\x55\x8e\x18\x93\x79\xe9\x6b\x80\x6c\x5c\x24\x66\x29\x70\x74\xd5\x9b\x2a\x6c\xc1\x1a\x7a\x0b\x59\x8b\xa3\x9a\xaf\x7c\x2f\xf6\xea\xb6\x55\x29\x6f\x2d\xc4\xf6\x95\x88\x60\x1b\xae\xe8\x7c\x6f\x44\x0a\x86\x9e\x11\xde\xa1\x16\xc2\xeb\xd8\xa5\x28\xe6\x8f\x21\x45\x3e\xa1\xa2\xf4\x1f\x94\x4a\xb9\xe1\xdc\x18\xba\xeb\x29\x82\x6b\xda\x11\xe2\x9b\xdb\x7a\x78\xf1\x76\x5d\xb1\xac\xc8\x22\x61\xf6\xc6\x9d\x37\x5a\xde\xb6\xfc\x98\x8a\x13\xf8\xff\x40\xf9\xc8\x04\x88\x9a\x59\xf9\x4b\x5a\xc9\xc8\x88\x8f\x94\x1a\x20\xd1\x31\x13\x6a\x61\xdf\xdd\x8c\x98\x9e\xe6\xb8\xdc\xaf\x78\x66\x4e\x4b\xb3\x9c\x8b\xf7\x48\xfb\xee\x04\x23\xad\xad\xc6\xac\xd7\xbb\x57\xb3\x70\x77\x4a\x3f\x97\xd6\x1d\xda\x5c\x88\xca\x1c\x6d\x6d\xf5\x8b\x7c\xa2\x3a\xe8\xed\xa8\xdb\xb5\xd9\x14\x6d\x60\x66\xd8\x45\x6c\xe1\x58\xef\xab\x37\xec\x58\xef\x9d\xba\x37\xb3\x09\x33\x8e\xb4\x96\x4a\x23\x1d\x16\x34\x77\x30\xe1\x03\xdd\x13\x4a\xbe\xf7\x78\xa9\xb8\xeb\xfe\xa5\x2a\xe7\xf7\xd3\xac\xe8\x9a\x2e\x06\xeb\x9e\x71\x14\xa0\x1e\xfe\x31\xa5\x06\x40\xee\x28\x57\x19\x9b\xc2\x66\xbb\x35\x29\x10\xfd\x02\xaa\x56\xbb\xb8\xda\xc2\xa2\x1e\x81\xe7\x17\xde\xa9\x24\x0d\xb9\xe5\xcf\x1f\xc1\x90\x0c\xe2\xe5\xc9\x96\x1f\xa9\xdc\x49\xa6\x13\x91\xc9\xc3\x8a\x57\xa6\x41\xc5\x29\xfc\xcd\xba\x9e\x9d\x3e\x87\x5d\x83\x78\x6d\xad\x7c\x42\x2f\x79\x1b\xa7\x03\x45\xa8\x21\x41\x57\xf5\x0b\x7c\x5c\x27\x10\x96\xd9\x65\x93\x79\xa2\x12\xa9\xb9\x35\xfc\x14\xff\xd8\x9c\x23\x25\x3f\x24\xe3\x3b\xa1\x0a\x6a\x3f\xa1\x75\x89\xce\x0c\xe6\xed\x10\xa0\x1e\x55\xd3\x51\x06\xe9\xcf\x14\x3d\x1b\x14\x8f\x2e\x90\x49\xe5\xc8\x02\xae\x89\x25\xe0\x61\x77\xf8\xaf\x94\x38\xd2\xf9\xba\x41\x88\x76\x6c\x72\x80\xcd\x91\xfc\xe0\x0a\xf8\x58\x5d\x41\x66\x97\x6c\x96\xdb\x86\xaa\x16\xbf\xab\x94\xe2\xde\x0d\x7c\xcd\xa5\x18\x26\x56\x2f\xfd\x4b\x81\x86\x81\xa8\xe1\x44\x22\xc3\x1c\x05\x03\xff\x44\xa9\xb7\xff\xa4\x66\x92\x9b\x14\x1a\x1c\xc2\x13\x56\xe2\x26\xb6\x16\x9f\xb8\x1a\xbf\xac\x7e\xf4\xa5\x25\x38\xf7\xf2\xab\x70\xbf\x48\x7d\xef\x8f\x6e\x85\xcd\x11\x18\xbd\xb8\x74\x58\x90\xa6\x3b\xc0\x75\x48\x35\x4e\x28\xc9\xbb\x13\x6a\x07\xa5\x0b\x0b\x36\xc9\xa3\x25\x74\x1a\x85\x79\xc3\x8d\x1f\x5d\x38\x5f\xad\x40\x41\x62\x90\x28\xc0\x30\x36\x59\xbc\xf2\x80\x1f\x24\xdd\xdd\xf2\xdd\xd2\xc6\x6a\x65\x07\x91\xde\x5d\xc7\xbb\x46\x80\xc2\x84\x29\x8e\x8e\xeb\xb9\xbd\xa3\xc8\x5d\x04\x28\x1b\xb8\x3b\xb8\x25\xf0\x9d\xf0\x77\x05\x8a\xed\xe2\xe6\xc8\x80\x6c\xd6\x5f\x99\xf0\xd8\xbe\x3b\xaa\x0c\xf2\x5d\xec\x2b\xa0\xb5\x6e\xbb\x6c\xa7\x13\x91\xcc\x16\x49\x29\x28\x3e\x1d\x1e\x6e\xc1\x7d\xa0\x36\x26\xa2\x0f\x92\xfb\xb4\x33\x62\x3f\xab\x3e\x83\x6a\x1f\x84\xdc\xf9\x58\x99\x97\x41\x4c\x03\xd7\xcf\x7b\x42\x04\xdf\xc7\xfd\x2e\x9e\x04\x5e\xe0\x95\x31\x73\x38\xbf\xb7\x59\x6d\xf1\x28\x4d\x24\x20\x65\xbd\xe8\x40\x51\x28\xfc\x55\x3d\xb9\xef\x22\x91\xd5\xba\x89\xb4\xe3\xa5\x9f\xb6\x44\x77\x09\x57\xfa\x2d\x25\xe1\x7c\x47\xcd\x28\xe7\xd5\xce\xb1\xdb\x54\x0d\xf9\x8c\x86\x36\x7c\x57\x71\xef\xed\x24\x39\x01\x87\xcb\xdf\x27\xd4\xd8\x1f\x8d\xc0\xbe\xfc\x57\x43\x0b\x79\xb2\xb1\x7f\x96\x29\x71\x20\x8a\x2b\x28\xd7\x9b\xb0\xa5\x7c\xe2\x47\xff\xda\xc3\xa4\x23\x92\x42\x88\xcf\xd6\x55\x21\x7b\x7d\x64\x5c\xdd\x64\x51\xc3\x17\x40\x19\xe3\xc2\x27\x75\x83\xdc\x40\xac\x82\xae\x96\x07\x95\xd5\x5b\x3a\xaf\x98\x02\xdb\xb1\xed\x93\xf4\xb0\x33\x22\x1f\x97\x5a\xc1\xa0\x8e\x86\x8a\xc9\x4a\x27\x46\x38\x2b\xfd\x54\xe4\xbf\x52\xc2\xe3\x75\xe3\x07\x62\xed\xe9\x8e\x5c\xc7\x6c\x66\xc6\xe9\xa5\x3c\xac\x78\x66\x92\x4e\x4a\x35\xc2\xd9\x51\xb8\x81\x30\x80\xd3\xa5\x22\x50\xfc\x80\xe3\x3e\x6e\xaf\xd1\x37\xb2\xa6\x2f\x5d\x10\x3e\x32\xb1\xaa\x26\xa3\x0f\x05\xde\x2e\x23\x14\x67\x6d\xf6\x40\xe5\xdf\x8d\x96\x0f\x0e\xcf\xab\xd4\x2a\x5f\xb6\x96\x86\x09\xe1\x46\x04\x5b\xa5\x26\x0b\x2f\x29\xce\xf0\x3b\x41\xb3\x0e\xcd\x9a\x75\xa2\x74\xc9\xe4\xa1\x9b\x5c\x91\xf9\x33\xdf\xe9\x3b\xe7\xb6\x68\x91\x0e\xbb\xbd\x6d\x28\x80\x88\x96\x46\xc3\xcd\xd9\x63\xb4\x18\x5e\x0f\x32\xa5\xae\xf8\xb4\x7f\x76\x54\x58\x4e\x18\x81\x6a\x5a\xc7\x3d\xb3\x64\x61\x39\x90\xc7\x40\x63\x07\x95\x37\x5e\x77\x08\xde\xee\x8d\xad\x8c\x7d\xfb\x64\x50\x0f\x66\x04\xce\xf4\xa4\xd6\x85\x39\x59\x43\x6b\x39\x0d\x3d\x0b\x76\x26\x30\xbb\xc7\x94\xca\xef\xb1\x9a\x59\xfe\xb9\x66\xbe\x92\x17\xb6\xcf\x15\x0f\x44\x90\xa8\x78\x30\x25\x02\x56\x06\xd6\xfb\xf1\xb1\x28\x79\xee\xd9\x03\xcd\xbc\xe0\x47\xae\xa5\xbc\x85\xc9\x5b\x31\x0b\xa5\x99\x05\xb3\x90\x93\x2c\x76\xc8\xef\x71\x64\xcf\xf4\xc1\xe6\x42\x9a\xd9\xd0\xe4\xd0\x6d\x42\x61\xfb\xda\xe6\x31\x2b\x31\x35\xef\xaa\xcc\xd0\xe6\x6d\xba\x1c\xd0\x78\x9c\x81\x3b\xe5\x13\xa7\x09\x30\x4c\x18\xe5\xd1\x69\xa8\xc0\xf3\x9b\x81\xef\x36\x7d\xb3\xee\xad\x2e\x58\x93\x61\xbb\x22\xe1\x39\xaf\xca\x89\x5f\xa7\x35\xc4\x91\x8f\xe2\x8f\x24\xb3\x96\x4d\x78\x8c\xcd\x0f\x82\x51\x94\xdf\xcc\x0c\x77\x03\x4f\x6b\xae\x03\x43\x28\x07\x33\xe5\xeb\x7a\x7f\x51\xaa\xbb\xc7\x7b\xe1\x64\xb0\xf4\x7e\xfb\xcf\xd5\x54\xf6\x5f\xe8\xc9\xf2\x25\x9b\x99\xae\x7d\x40\x69\x0d\xde\x25\x0f\x8b\x28\xfd\x9e\x22\x20\xb9\x4f\x04\x5b\x9a\x1f\x8b\xe2\xc6\x3f\xe4\xac\x11\x56\x62\xdb\xaa\x62\xe6\xe4\xc4\x0d\xb9\xf8\xf1\xc0\x6b\x51\xdf\x23\xb3\x8f\xf0\x77\xbc\xf9\x3c\x3b\xdb\xcc\x07\x26\x73\xd4\x64\x22\x71\xa2\x8c\xfe\x5f\x79\x52\xb6\x95\x24\x1d\x14\x51\x28\xed\x44\x98\x86\xad\xb8\x26\x56\x7d\x29\x55\x17\xe2\xae\x42\x23\x70\x31\x0b\x3b\x03\xd9\xdf\xc7\xb4\x94\xf8\xd8\x21\xf7\xfa\x51\x3f\x0a\x79\xdb\xb1\xf3\x45\xfa\x22\x9e\xb8\xc6\xa5\x16\x36\xe9\x30\xc6\x9d\x9f\x86\xd2\x04\x1e\x87\x76\x54\x9b\x8e\xd1\x11\xfc\x43\x78\x3c\xcc\xd5\xc5\x27\x6a\x9a\x3c\x8d\x9f\x6e\x28\x15\xb1\x0b\xc1\x28\x6f\xf8\xf8\x88\x55\x73\xb9\x17\xc5\x20\x17\x42\x4b\x6e\x1b\xca\x31\xb2\x6f\x1a\x4e\xba\xe6\x9e\x52\xc7\x0d\x7b\x26\xe9\xd8\x38\x62\x66\xfd\x67\x9c\x94\xa3\x2f\x1b\x5c\xac\xa9\xd6\x6a\xd5\xda\x11\x8f\xd2\x50\x9a\x12\xda\x05\xc7\x26\xdf\x8e\x3b\xc0\x16\x7a\x83\xae\x07\xf0\xa9\xc3\x70\xf1\xb0\x36\xdf\xa0\x74\x19\xfb\xe9\x9a\x96\x5d\xbb\xa0\x19\x8c\xb1\x0f\x30\x1c\x70\xab\x56\x2e\x3a\x2f\xec\x92\x75\x28\x53\x19\x18\x56\xbe\xf9\xec\x18\xaf\x07\x15\x72\x4d\x56\x24\x36\xcb\x7b\xd1\x80\x57\x1c\x2e\x0b\x94\x19\x82\xd7\xa2\xaf\x11\xbe\xee\xf1\x0e\xc8\x5c\xb3\x9b\xa5\xcb\x3c\x53\xe3\xc2\x41\x17\x64\x5d\x18\xbb\xe0\x83\xcf\x36\x43\x9b\x2d\x45\xa1\x89\x95\x70\x0e\x46\xeb\xc5\x01\x3a\x25\x8f\x1e\xa1\x7e\x50\xce\xc2\xae\xc4\x28\x23\xcc\x38\xb7\x9c\x65\x76\x41\x97\x12\x4c\xe7\x01\xdc\x92\x90\x9f\xf9\x61\x8f\xed\x58\x2b\x48\x92\x2f\x6b\xb9\x80\xd3\x81\x42\x74\x9e\x2c\x7d\x55\x98\xc9\x34\x1c\x18\xc4\xab\x12\xfe\x50\x31\x98\xfc\x10\x30\x1f\xf6\x24\x63\xdb\x62\x66\x86\x29\x36\x23\x91\xc7\xc6\xde\x44\xd5\x9e\x8f\x95\x7d\x64\x4a\xa5\x0e\xa9\x80\x8b\x9e\xf5\xc8\xd0\x99\x82\xab\x06\xbe\x86\x7a\x4c\xb5\x6e\xc2\x38\x5a\x58\x68\xf8\xb6\xce\x05\x3d\x55\x70\x61\x44\xa0\x61\x79\xca\xc3\xa4\x8f\x97\x1a\x87\xe0\x91\xf5\x7f\x5c\x2a\xf5\x28\x56\x74\x84\x7b\x3a\xeb\x40\x8d\xd9\x30\xc9\xb7\x35\x1c\xef\x34\xa3\x8f\x50\x0f\x5d\xc7\xe7\x81\xa2\xdf\xf0\x86\xf7\x97\xef\x97\x7e\x56\x36\xfa\x0c\xec\x04\x92\xbb\xa9\x3a\xfe\xf4\x2f\x36\xd3\x7e\x12\x35\x1a\x9a\xfc\xb9\xba\x2f\x3e\x51\x9c\x26\x85\xcd\xb2\xa8\x48\xb3\x15\x24\xc2\x88\x93\x7e\xbf\xf4\xf1\xd3\xef\xbb\xc5\xb6\x68\x57\xdc\x90\x02\x93\x98\xd0\xaa\x11\x42\x13\xf9\xbb\x7c\x60\xcd\xa2\xcd\xb6\x55\x8f\x45\xca\xaa\x58\x6b\x9a\xc3\x17\x1e\x93\xb7\xbb\x0b\xaf\x1c\xc9\xc7\x27\xb8\x60\x3c\xd6\x5a\x8e\xf8\x2f\x36\x33\xcb\x72\x54\x70\x60\xe7\x54\x49\x72\x7c\xac\x79\x76\x56\xab\x7a\xcc\x7a\x76\xd4\xea\xf7\x85\x1d\xd5\xb3\xf3\x2d\xda\x95\xb0\x47\x04\xb1\xfb\x67\x1d\x36\x6e\x44\x62\x7e\x73\x6c\x50\x05\x42\x03\x9e\x54\x73\x52\xa3\xda\x68\xcb\xf3\xe9\x9b\xcc\xb7\x11\x64\x4e\x99\xaa\xa3\x92\x28\x3d\x36\x0a\xa7\x9e\x3e\xd8\x9c\x9f\xdb\x39\xba\x5d\xc9\xd0\x62\x23\x1e\xd5\xf3\x4d\x4a\x22\xea\xa2\x66\x5d\xfe\x93\x40\xe1\xd5\xee\xa3\x42\xec\xe8\xcf\xaa\xe7\x81\x58\xe4\xda\x08\x12\x4d\xf1\x52\xa5\x29\x4b\x71\xbf\xe0\x66\x61\xe8\xdb\x65\x00\x66\xbc\xc7\x33\xdb\x8c\xfa\x83\x58\x0b\x37\x60\xa1\xbc\xa3\x58\x70\xde\x51\x41\x92\x35\x59\xc2\x52\x8b\x88\x69\x18\xbc\x07\xbf\xcb\xf9\x89\x33\x2a\xae\xaa\xf4\x96\xca\x0c\xde\x81\x19\xe2\x8f\xd7\x01\xbd\x97\x4d\xbc\xd8\xd0\xa4\x8f\xa5\xa2\x14\x39\x5a\x33\xc6\x33\xd7\x4c\x80\x9e\x47\xe5\x95\xd5\x97\x4b\xcd\x1e\xc3\x6e\x1b\x28\x88\x75\x17\x48\x74\x6c\xbb\x48\xb1\x3e\x99\x55\x91\x6e\x5c\x18\x16\x37\xaf\x68\x62\x47\xe9\xd3\x8a\x73\x21\xd9\x7b\x7a\xea\xe0\xbd\x3a\xd7\x1b\xc5\x31\x8b\x45\x35\x94\xfe\x22\x76\x02\x1f\xd7\x8e\x54\x56\x01\xbf\x12\xc0\x57\x2c\xdc\x50\x82\x60\x0b\x14\x48\xbe\x94\x98\xbe\xed\x90\xfa\x27\xda\x58\x2c\x13\xcc\xc8\xa6\xc0\x73\x87\xad\xff\x42\xcb\x5b\xd3\x47\x56\x47\x35\xec\x5c\xef\x0e\x65\x2b\x54\x70\xc7\xe3\x97\xa7\x9a\x9d\x61\x11\x49\x1d\x4d\x97\x46\xa4\xe1\xb2\x5b\x15\x76\x96\xed\x1e\x42\x44\x30\x59\x58\xe9\x90\xfb\xb7\x1e\xa7\xce\x29\x0a\x1b\x67\x61\x40\x19\xa1\x48\x30\x1a\x9e\x23\x0b\x14\x7d\x01\x17\x32\x04\xc7\x48\xaf\x5c\x8a\x08\x8d\xaf\x4c\xbb\x02\x00\xdd\x2f\x5a\xf7\x4c\x2f\xe3\xa4\xec\x9f\x77\x2a\x87\x1b\xd4\x16\x41\x16\xf9\xaf\x4a\x4f\x95\x06\x2a\x15\xc7\x27\xee\xe6\x30\x18\x1e\x8b\xd8\xf5\xca\xd8\x5a\x24\x98\x5a\x67\x18\xba\x30\x0b\xa9\x27\x56\x15\x1f\x97\x5a\x71\x6c\x09\xf5\xa1\x86\xfa\xf7\x40\xe5\xac\x17\xea\x86\x42\x4d\x18\x66\x43\xe9\x5c\x3b\xc0\x88\x03\xdd\x9f\x52\x65\xbe\x2a\x2c\xa2\x41\x43\xe2\x32\x9b\x7b\xf6\x80\x58\x71\x32\x47\xae\x73\xee\xf8\x2d\xcf\xc3\xfb\x8b\xa9\xff\x9c\x77\x41\x55\x76\xd4\x89\xf2\x22\xcd\x0a\xba\xb9\xca\x36\x21\xc9\x5e\x87\x5d\xe4\x93\x1a\x69\x82\x67\xaa\x90\x81\x47\x1d\xeb\xc4\xad\x6a\x87\xcb\x43\x1b\x39\xfd\x57\x35\x7f\x20\x4a\xcc\xb7\xd5\x38\xce\x20\x5d\x64\xd9\x06\x2c\xa3\xa3\x8a\x9c\xed\xa8\x4b\x4c\x48\xcc\x75\xc5\x64\x9d\x86\x9f\x43\xb8\x34\xc2\x99\xaf\xfa\xd3\x79\xcf\xc6\x31\x09\xf9\x8a\xb4\xd4\x8d\xc0\x93\x9e\x7c\x58\xfa\x68\xe6\x92\x7a\xda\x55\xa4\x67\xc2\xc2\x66\xd1\xab\x3c\x3d\x8d\xec\x08\x78\x7e\x3e\xae\xab\x87\x87\x71\x1a\x2e\x36\xb4\x57\x68\x38\x41\x41\xcf\xcd\x47\xe9\x88\x91\x2e\x11\xca\x12\x3b\x5a\x8a\x27\xe4\xfb\x6a\x72\xfd\x8c\x86\xf0\x6c\x59\x75\xea\x3e\x36\x8e\x87\x71\x1a\x09\xc7\x81\x63\x1c\xf3\xec\x63\xe5\xe6\x30\x7b\x66\xa6\x39\xac\x72\xa7\xe5\x2c\xa2\x77\xdf\xd0\xd4\x77\xee\xa9\x5f\x0c\x1e\x73\xb0\x92\xa4\x9b\x17\x46\xcd\x0c\xa0\xd2\x05\x79\x38\x88\xe4\x7e\xb6\xe5\x63\x82\x6d\xab\x7e\x3e\xbc\x93\x3d\x8d\xa2\x25\xba\x7f\xa7\x95\xfa\x2b\xd8\xc7\xa4\x7b\xa6\x5b\x69\x10\xa5\xe5\x4f\xd0\x7b\xe2\x4f\x8c\x6c\x35\x2a\xd6\x54\x4b\xd7\x47\xc1\x47\x03\x05\xd2\x3d\xea\x6a\x95\x9d\x28\x59\x8c\x6c\x5e\x60\x95\x0b\x8c\xc4\x37\xf2\x2e\x28\x68\xc8\xc0\x66\x8c\xea\xd0\x00\x53\xd6\x36\xe0\x13\x7a\x9b\xb0\x2b\x47\xf5\xb8\x88\x6e\xb6\x10\x41\x01\xe3\x4b\xa4\xad\x48\x3b\x86\x4f\x02\x35\xb5\x07\xbd\x02\x3e\x6e\xf9\x00\x60\xd0\xb3\xb1\x49\x60\x17\x50\xf2\xff\x39\x30\x82\x7c\x32\x22\x6d\xf0\xa5\x5f\x9b\xdf\xa3\x60\x4f\x1c\xe4\xc9\x94\x05\xdd\xb9\xcc\x58\xaa\x31\xdc\x49\x40\xc2\x11\xd4\xfc\x3f\x70\xfe\xa8\x96\xdd\x2f\xd5\xab\x66\x6e\x3a\x81\x53\xf8\xfe\xc7\x21\xd5\x03\xbf\x5e\xfa\xe9\xa0\x6b\x34\x5e\x83\xc8\xe7\x23\xf6\xdc\xa8\xb6\xac\x2a\xf5\x9a\x1f\xab\xa4\xf8\x76\x40\x6c\x68\x28\x8f\x5f\x09\x94\xa4\xed\x51\x15\x3a\x33\x4b\x4e\xbc\xb2\xcd\xd7\x83\x51\x1f\x1d\x21\xd6\x1a\x21\xdb\x03\x6c\x0f\xf5\x11\x35\x18\xf7\x02\xa7\xe9\xf7\x54\xd7\xa9\x6f\x92\x95\x87\xbd\x76\xf2\xfb\x88\x6d\x10\xe8\x30\xe7\x38\x2e\xf0\x5a\xa0\x66\x1a\x99\x5c\x43\xa8\x9f\x3d\x5c\xe0\x2d\xad\xf8\xb2\x0d\xc0\x55\x41\x44\xfb\xc2\xd4\x36\xbc\x03\xe4\xe2\x0f\xb7\x7c\x2c\xfb\x43\x7e\x70\xe8\xb3\xbc\xa3\xc4\xbb\xbf\x8f\x4e\x24\xf6\x0b\x23\x2f\x10\x3e\x9c\x56\x58\x08\xd2\x33\xa0\xb4\x07\x7d\x3c\x10\xe7\x21\xa9\xbb\x46\x97\x89\xeb\x87\x4c\x30\x1f\xb7\x14\x52\xf8\xed\x52\x31\xbe\x9e\x54\x1d\xee\xc2\x24\x1e\x26\x2e\x59\xa2\xff\xf2\x8b\xea\x22\x08\x8c\x4c\xd3\x3c\x8e\xc7\x58\x61\x6e\xab\x8b\x10\x7a\x1d\x95\x05\xa2\x7f\x2f\x5f\xf6\xd8\x08\x8c\xd3\x0c\x33\x83\xdd\x39\xcd\xb6\x7c\x23\x18\xad\x14\xa8\x79\x9c\x8d\x52\x15\x52\x0f\x8f\xc0\x3f\x20\x44\xe4\x70\xa7\xb3\xb3\x8e\x61\x6a\xac\xca\xfb\xfc\xf4\xc1\x66\x51\x65\xfd\x45\x43\x8d\x90\x9d\x08\x14\x5e\xf0\xc4\x58\x70\x59\xe5\x26\x61\x2a\x8d\x51\x1e\x94\x53\x43\x96\xa7\x1c\x0e\x32\x5d\xb2\x59\x68\x06\x26\x8c\x8a\x15\x14\xaf\x15\xfa\xd6\x71\xef\x94\xbe\x5a\xb0\x11\x3c\xae\xe8\xea\x97\x6c\x56\x10\x13\xc5\x94\x42\x3a\x1e\x0e\x14\xe0\xff\x2d\xa5\x87\x76\x71\x5c\x1d\x02\x31\xe1\x99\x91\x7a\x51\x2a\x5a\x94\xa8\xf1\x70\x19\x9c\x4f\x94\x67\xed\x59\x13\x17\x3d\x8c\xae\xe9\x21\x1b\x3e\x1e\x03\xeb\xcd\xcc\x1c\x68\xda\x44\x23\xcb\x10\x94\x6d\x28\x4c\xc1\x46\x0d\x27\xf5\x33\xcd\x5e\x9a\x17\x11\x8f\x5d\x22\x41\xc7\xa0\x0b\x1f\xbb\x36\x43\x94\xd8\x01\x37\x77\x04\x98\xaa\x4a\xf3\xe7\x94\xf9\xb9\xac\xa6\xc7\xfb\x26\xec\x45\x49\x94\xf3\xe0\x1e\x76\xd6\xcf\x95\x8b\xfa\xb9\xc6\x4c\x2f\x2e\x36\x46\x4b\xf7\x8a\x3a\xf7\xbc\xa2\xe2\xc8\xfb\x69\x5a\xf4\xe2\x15\xa2\x3e\x91\xf4\x4b\x5d\xda\xd5\xc0\x0f\x91\xd7\x76\xd6\x93\x28\xec\x61\x97\xb9\xca\xb7\x93\x14\x3b\x3f\xe6\xd9\xab\x04\x30\x1f\x76\xbb\x36\xe7\xe1\xe3\xea\x05\x3a\xd9\xb8\xea\x05\xf2\xc9\x18\x16\xe1\xb9\xbd\x73\x4d\x93\xe7\xb6\x4f\xbc\x17\x8e\xd7\x0d\x19\x80\x30\x74\x3c\xe8\x91\x41\xb6\x98\x50\x38\x74\xd0\xf7\x30\x03\x59\xe0\x0d\xce\x99\xb1\xce\xc5\xfe\xd9\x66\x5e\x98\x2e\x2b\xd7\x6b\x86\x3f\x4c\x0f\xbd\x49\xdf\x84\x84\xe5\x93\x4f\x25\xc1\x6b\x9b\x5c\x72\x79\xd1\x5b\x52\x7b\xfe\xfc\x58\x62\xfc\xe2\x8b\x20\x0c\xb6\xb9\x0b\x78\x64\x1e\xb0\xe1\x68\x4d\x2f\x95\x8f\x6f\x9e\xa3\x8b\xa3\xa4\xbb\xbd\x7a\xe0\xb0\xcd\xe7\x61\x0e\x99\x90\x5b\x93\xd0\x6e\x23\xc8\x08\xde\x69\x83\x21\x2a\x70\xbd\xc0\x66\x61\xbb\x1d\x2d\x7d\x32\xf7\x46\xa0\xdb\x84\x69\x6e\x13\x04\x70\xf2\x4b\xd5\x35\xf2\xb1\xaa\x3c\xda\xfe\x28\xbd\xc1\x45\x45\xff\x7f\x31\xf8\x9c\x8a\x8e\x0a\x9b\x21\x89\x36\x71\xbc\x82\x18\x49\x20\x1f\xe4\x3a\x04\xd9\x51\xa3\x3b\x6c\x5f\x09\x23\x0f\xc9\x46\x53\xf4\xf6\x08\x41\x93\x4f\x24\x5f\xf7\x0a\xce\x26\x0f\xe5\xe2\x60\x12\x77\xb4\x7c\x7f\x64\xc7\xea\xa3\x1a\x59\x4a\x03\xaf\xa0\x3d\xc7\x96\xc7\x98\x1f\x42\xa0\x2b\x08\x06\x79\x98\xad\x7c\x7c\xb4\x30\xb3\x7f\xb6\xb2\x06\x9f\xf5\x20\xce\x7f\x1f\x34\x9e\x97\xe9\x83\xdb\xa5\xa7\x94\xbc\x0b\xac\x17\xf2\x8b\x13\x8a\x31\xe0\xaf\x02\x25\x91\xfa\x1e\xde\xa9\x1b\xf5\x70\x32\xb5\x8c\xfc\x41\xc1\x70\x07\x81\xf5\x00\x0e\x3c\xa1\x58\xd9\x4f\xa3\xec\xca\x3f\x0e\x7f\x80\x10\xe3\xb7\x11\x65\xa1\xf2\x70\x26\x50\xd0\x9a\x9b\x08\x3e\xe0\xae\x61\x61\x00\xaa\xf8\x4e\xa9\x3a\xb1\xdf\xa1\x32\xbc\xf8\x74\x34\x4d\xf9\x56\x10\x94\xb0\xe0\x24\x35\x8d\x44\xf5\x92\x72\x72\x86\x07\xa8\x21\x9f\x97\x86\x9d\x28\x64\x69\x3f\xfa\xac\x44\xf8\xf4\x1c\x24\xf4\xff\x34\xa6\xc6\xde\xb0\x6f\x12\xc8\xff\x08\x50\xc8\x3f\xa5\x8b\xba\xf7\xb3\x11\x48\xbd\xb5\x43\xdc\x8e\xf3\x73\xde\x25\x78\xf7\xa0\x2a\xc1\x79\x68\x12\x03\x2b\x85\x8a\xd9\xef\x95\xaa\x7c\xf6\x7b\xc1\x66\x6d\xb2\x83\xcf\x36\xbb\x09\x1a\xef\xa8\x10\xbc\xa1\xcb\x05\x6f\xd4\x74\x02\x5e\x68\xe6\x66\x69\x89\x34\x7c\x04\xf3\xf6\x36\x5d\xbe\x03\x96\x54\xcf\x03\x1b\x0d\xc9\x09\x70\x62\x1b\x6a\x76\x77\x18\xc6\xcc\xb8\x89\xd8\x1d\xe2\x1c\x7c\xdc\xf2\x93\xa3\xb9\x35\xed\x2c\x4d\x17\x1b\x9e\xc8\x86\x5b\xce\x52\x21\xd2\x25\x94\xb6\x7d\xd0\x0f\x47\x3e\xd8\xaa\xde\xb6\xf3\x6a\x5f\xfa\x9a\x47\x76\x4e\x1f\xe4\x60\x72\x5d\x69\xd7\xed\x58\x9d\x78\x7e\x7e\xaf\x47\xde\x56\x37\x21\x03\x9f\x1e\x90\xf1\x3b\x58\x69\xc2\x48\xaa\x8a\x91\x93\xab\x8d\xaf\x4c\x7b\x49\x55\x97\xcd\x5e\x77\x52\x33\x2f\xd9\x85\x05\x9b\xe5\x4c\x87\x88\x3a\xdb\x51\x7c\x05\x9f\x8c\xd9\xf6\xe7\xf6\x56\xff\x15\x78\x97\x14\x29\x75\xc5\x72\x6c\x90\x5d\xd6\x58\x61\x63\xbb\x14\x09\xfb\xe2\xc6\x06\xd9\xd6\x8d\x0d\x4f\x63\x1f\x86\x00\x79\x55\xf7\x83\x70\xfa\x64\xa0\x62\xeb\x93\x5a\x96\xd7\x2e\x98\x38\x86\x8c\x92\xe3\xb9\xde\xef\x79\xae\x6b\x4a\x73\xb9\x59\x80\x52\x09\x1c\x12\x34\x18\x30\x57\xc2\xa4\xd0\x32\xba\x5e\xd3\x30\x1f\x98\xcc\x24\x69\xd4\x51\x96\xef\x88\x42\x74\x1d\x51\x71\xc3\xb3\xbf\x76\x80\xe3\x06\xd4\xfd\x6e\x94\xaa\xc0\x79\x63\xcc\x29\x3f\x45\x7e\xc8\x44\x89\x2b\x3f\x61\xa1\x1e\x57\xaa\x06\xc7\xcb\x07\x9c\x1f\x79\xea\x17\xe9\xf9\x70\xec\x4e\x10\x74\xc4\xdc\x6f\x50\xed\x8d\xd9\x03\x55\x1e\xf4\xcf\x02\x5a\x46\x8e\x4e\xcc\x11\x99\xfd\x28\x68\x7c\xf5\xcb\x1e\x2f\xfe\xbc\x88\x43\x5d\xa1\x8a\x1c\x8c\xe5\xeb\xb4\x4e\x11\xbc\xff\x1c\xf9\x08\x12\xaa\x3f\x2d\x47\x32\x39\xd8\x2e\x2e\xe2\x06\x1e\xa6\xf8\x9a\x06\x73\xfc\x15\x2d\x6e\x7c\xd9\x69\xf0\x82\xe9\xca\x35\x02\x82\xf7\x4a\x6f\x52\xde\x42\x46\x2a\xb4\x2c\xb4\x03\x78\xd5\x07\x6a\x26\xf8\xa1\xeb\x1a\xfa\xfa\x6d\x6c\x47\x11\x2f\x6f\x38\xb1\xe6\xc3\xa5\xca\x7c\xdf\x26\xd3\x8b\x37\xfe\x0d\x64\xce\x48\xda\x8e\x82\x45\x8b\x53\x30\x58\x7b\x20\x9c\xaf\xc2\xda\xfb\xa7\x3a\x7d\x90\xeb\x17\xd7\xca\xad\x5f\x14\x54\x2a\x92\x77\x58\xf1\xcb\x63\x91\x31\x85\x60\x59\x3f\x2f\xb2\x94\x07\x34\x58\x50\xa3\x54\x2d\xff\x9f\xd6\x45\x54\xd4\x78\xa6\x8e\x1c\x1a\x3c\x0f\xb4\x18\xc6\xd5\x70\x3c\x91\xd7\x69\x96\x5a\x26\xd8\x75\x99\x82\xe8\x3a\x77\x7a\x50\xc8\x7d\x6d\x12\xef\xc2\x45\xc0\x30\x7d\x5f\x95\x62\x3e\x08\x14\xa2\x81\x93\x03\x29\xa2\x6a\x5e\x21\x00\x19\x78\x44\x4b\x77\x93\xcf\x38\xcc\x5f\xd8\x33\x71\x6c\x93\xae\x8b\x38\xe0\x0d\x2f\xab\x8a\x2d\xb0\x41\x30\xd9\xdb\x56\xeb\x36\x70\x91\x0e\x68\x03\x3b\xd2\x1c\x85\xc7\xa2\xfb\xc1\xaf\x7e\x6f\x14\x96\x96\x3c\xdd\xa8\x36\x86\x32\x28\x73\xce\xa0\x28\xb1\xfc\xb4\x4f\xba\x41\x44\xb7\xf5\x0c\xfb\xcb\x5b\x8a\x49\x65\xb2\xe5\xc7\x20\x3e\xa4\x55\xc5\xc7\xa5\x1a\xd0\x9d\x62\xf6\x7b\x96\xab\x1c\xf3\x55\x82\xca\x60\x23\x87\x6d\x71\x46\x17\x8f\xcf\xd4\x09\x52\xa5\x0b\x0b\x79\x2f\xcd\x80\x3b\x60\xa1\x70\x72\x70\x00\xfa\xaf\x29\x21\xa4\xe3\x0a\x36\x4b\xe5\x29\xcb\xb9\x29\x4f\x98\x2b\x0c\x9c\x96\xcd\x33\x49\xe7\xef\xfa\x61\xda\xdf\x7e\x84\x5c\x95\x13\xd3\xa9\x76\x07\x6a\xcd\xdf\x2d\x1b\x4f\x3e\xc9\x3f\x75\x18\x4b\x1d\x6d\x3b\x28\x4b\x60\x3d\x6c\x27\xc7\x23\xfd\x51\x9d\x43\x3d\xc0\x3a\xab\x4e\x8b\xbf\xda\x6a\x70\xc6\x17\x03\x1f\x7d\x5d\x0d\x54\x59\x8e\x79\xb7\xf0\x75\x3c\x99\xc8\x03\x78\xc4\x72\x8e\xfd\xbc\x07\xce\x52\xec\x25\x3d\x51\xd4\xaa\x2f\xa3\xa5\x87\xd4\xe3\xe1\x55\xc5\x94\xb1\xc5\xd7\x36\xff\xfb\xa9\x55\x5f\x5c\xbf\x41\x96\x94\x3b\x38\xd8\x1c\x88\xbe\x59\x86\x09\x17\xfc\x16\x3d\x75\x34\x4e\x3e\x43\x70\x4c\x79\x12\x64\x19\x64\xe2\xc4\x33\xd0\x5c\x52\xe2\xa0\xff\xbb\x82\x37\xf6\x86\x49\xd7\x64\x2b\xdb\xab\xbf\x74\x9a\x50\xde\x8d\x5f\x26\xab\x29\x1d\x76\xdd\xef\x3d\x41\x6b\x60\x7c\x00\x11\x88\x74\x5c\xd9\x3d\xd7\x69\xaa\x76\x20\x17\x90\x85\x81\xdd\x57\x47\xc7\x2b\xdc\x55\x0e\xbf\x30\x4c\x50\xa3\x77\x82\x6b\x5e\x7c\xad\x8e\x57\xa5\x6d\xe2\x22\xea\xa7\x99\x55\xa4\xd8\xdf\xd7\x2a\xfb\xdf\x1f\x1b\x4b\x3d\xf8\x6c\x73\xd9\x44\x18\x7b\x74\xe2\x58\xaa\x8e\x24\x8c\x5b\x79\x18\x61\xea\x2b\xa4\x5c\xc7\x57\xc9\x2e\x29\x18\xe2\x25\x3d\xda\x66\xc3\xcc\x9a\x9c\x0d\x8e\xd0\x9e\x30\x81\xa4\x94\x73\x7c\xd8\x73\xb1\xdc\x2c\x98\x3d\xcb\xec\x05\xc3\xb0\x18\x66\xce\x39\xc3\x31\x5d\x51\xe5\x8f\x2b\x4a\xb2\xbf\x63\xc3\xa8\x63\x3b\xf1\xca\xd4\x48\x8d\xda\xcf\x41\x1d\xd7\xa3\x3e\x87\x4a\x8f\x9d\xf8\x71\x39\x52\xe2\x56\x59\xaa\x19\x14\xd1\x92\xa1\x5c\xcd\x17\x18\xb8\xce\xac\x95\xc2\x44\xbc\xb2\x86\x5b\xb5\x17\xe5\xb9\x80\x59\x5c\x96\xea\x6a\x54\xdf\x47\x2a\x26\x48\x14\x1d\x64\x15\x85\xcd\x68\x60\x0e\x17\xfc\x00\xc1\x4c\xa5\x66\xaf\x00\x06\xc7\x91\xfb\xc0\x08\xbe\x47\xb7\x85\xea\xd6\x06\x9e\x37\x02\x60\xcc\xe2\xc0\x7f\x3e\xb4\xea\xeb\x01\x67\x60\x61\x04\xed\x4d\x97\x29\xd4\xfb\x64\x08\x50\x42\x3d\xae\x44\x22\xc2\x34\x4b\xe8\x89\xcc\x4b\x40\x01\x50\x0a\x62\xbb\x3f\x2b\xd5\x28\xdd\x9a\x42\xea\xf5\x4c\xdb\x66\x31\xcf\x1c\x88\x46\xb7\x12\xc9\xb8\x58\x8b\xfd\x6c\xd3\x38\xe5\xa4\xf2\xfe\x3c\x6b\xc3\xa3\x55\x6a\x12\x01\x82\x24\x78\x8b\x77\x15\xf4\x2d\x19\x16\x08\x3e\x9d\xa2\xf9\xaf\x3f\xef\xf4\xc4\x1a\x33\x33\x1b\xab\x8e\xf9\x82\xd0\x11\x8c\x8c\xc7\x2e\xd8\x82\x6e\x2f\x8c\x26\xe4\x1f\xa5\xc3\xbb\x47\xe7\x7f\x5d\x47\x16\xec\x48\x3d\x3c\xc1\x87\xeb\xa9\xb5\x87\xd5\x5b\x5d\x30\xc5\x84\x0e\x80\x1b\x8e\x46\xf6\xae\xa6\x68\xb8\xe4\xea\xc1\xed\x28\xed\xdb\x0e\xc0\x53\x33\x33\x42\x48\x11\x78\x24\xdc\xb9\x6a\xf3\xf9\x7a\xa5\x49\x0a\xd3\xb5\x79\xc3\x8b\x2f\x7f\x40\xb1\xa7\x30\x83\x8e\xd7\x0c\x9b\xa6\xdb\xcd\x6c\x17\x3a\xbb\x7e\xda\xff\x5b\x74\x17\x7c\xec\x2e\xc7\xeb\xa4\x4c\x4c\x6c\xd6\x49\x71\x35\x10\x45\x0b\xa2\xe0\x4d\xf9\xc0\x86\x95\x21\xd9\x5e\x2d\x6c\x3c\x9d\x23\xa5\x92\x97\xda\xaa\x3a\x35\xbb\x55\x79\x83\xea\x78\x1b\x3c\x6a\xee\xa4\x42\x75\x1f\xfe\x41\xc5\x76\xba\xfc\xf0\xc8\xba\xa2\x0f\xa1\x7d\xbd\x1e\x28\x25\xd6\xbb\xf0\x16\x70\x62\xf7\xb0\x6e\xe1\xc4\x7e\x46\x76\x1f\x7f\x75\x12\x3e\x0c\x83\x2b\xb8\x49\x29\xf2\xf9\x36\xf7\x04\x11\x5d\x08\x9f\x9f\x92\x2c\xb8\xa4\x9b\xef\xd0\xb9\xe1\x89\x3e\x7a\x7d\x28\x5f\x5c\x25\x4f\x85\xd8\x72\x72\x4c\x2b\x86\x60\x41\x0b\xc3\x62\x98\x59\x05\xea\x6a\xd0\x26\x96\x6a\xbe\x2c\xb0\xd0\x24\xa1\xcd\xd2\x21\xab\xca\x30\x4d\x0e\x5d\xb4\x50\xe6\x28\x76\xd1\x61\x36\x90\x0d\x29\xfc\x73\xf4\xe0\xa4\x53\xeb\x45\x08\x87\xdd\x5e\x81\xb9\x26\x84\x57\x1b\x4a\x0c\x0d\x44\x9d\x68\x38\x5c\x85\x05\xa1\x80\xe1\xf3\x7b\x68\xbb\xe0\x2d\xec\x5a\xad\x21\xb6\x89\x12\xf2\x13\x16\x85\x2a\xa5\x5f\xfe\x02\xdb\x8f\x8b\x23\x33\xb6\x35\xf9\x5b\xc7\x0e\x32\x9b\xe7\x2e\xb4\xc5\xc7\x4e\xd2\x0d\x23\xc3\x07\xd9\x9a\xc0\xdb\xe5\x8e\xf2\x5e\xba\x2c\xf4\xae\x14\x52\xbc\xfc\x44\x4b\x0d\x43\xb1\x60\xaf\x34\xd1\xe8\x8a\xb0\xd0\x18\x21\x24\xd7\xda\x50\x7c\xff\x7a\x30\xa7\x97\xbe\x32\xa9\xf4\xcb\x54\x2f\xe8\x04\x56\x07\x9c\xe6\x31\x4d\xdf\x7b\x4c\x8d\xa3\x14\x3d\xdb\xe7\xc7\x22\xa3\x71\x9b\x76\x8c\x04\x52\xa3\x8a\x79\x0b\x69\xf6\xb9\x2a\x80\x72\x41\x8a\xa3\x8d\xba\x43\x23\xb0\x8a\x6d\x7a\xda\x83\x3d\xab\x6f\x83\x85\x7b\x1f\x5b\x02\xd1\xdb\x7d\x4a\x07\xb1\x71\x7e\x42\x8f\x11\x63\x4b\xbb\x5a\x4a\x67\x32\x50\xd2\xb5\xdf\x0e\x34\x91\xcc\xb7\xb1\x71\x98\x28\x94\xac\xae\x70\xb8\x51\xf0\x2a\x0a\x26\x14\x88\xe2\x23\xff\x9c\x32\x20\xa7\xaf\xee\xc1\x7b\xe7\x74\x1b\xf8\x2d\xf8\x2c\x64\xa3\x5f\x2f\x3d\x4e\xe7\xd5\x2b\x0a\x9e\x4b\x5d\xbf\x17\x1c\xf8\xba\x31\x7d\x70\x63\x15\x2f\x8f\xa9\x76\x5a\xde\x64\x0c\xe2\x74\xa2\xda\x82\x42\x4c\x49\x0f\x81\x57\x77\xe0\x07\x17\x4f\x2a\x64\x57\x1c\xf5\xa3\x22\x27\x64\x97\x98\xeb\x86\xa6\x03\xff\xd2\xd7\x1c\x4c\xa2\xba\x26\xa1\x06\x57\xbd\x66\x9e\x48\xe7\x93\x5a\x45\xc2\x65\x6b\x16\x6d\x42\xb1\x07\x9c\x1f\xf3\x84\xe3\xd9\xdf\xc6\x52\x12\x82\xc9\xf1\x28\xb2\xd9\xc9\xd2\x01\x1b\x74\x99\xaf\xf6\xb3\x37\x67\xc7\xc2\xc8\xbf\xdf\x8c\x92\x22\x4b\x3b\xc3\x90\xd5\x02\x61\x94\x79\x80\x9c\x4f\x82\x47\x35\x95\x1b\x91\xbe\xe4\x93\x7e\xa8\xea\x66\xa0\x66\xe4\x01\x97\xe6\x7f\x50\xcf\xe7\xac\x4b\x4e\xf3\x61\xbb\x4a\xff\x4c\x28\x53\x21\xd8\x80\xac\xe7\xc9\x27\x63\xfd\x86\xd9\xd9\xb9\xe6\xb2\x29\x6c\x16\xa6\x31\xc3\xd1\x94\xb1\x77\x96\x7f\x2c\x9f\x7b\xf2\x49\x52\xeb\x6a\xc7\x51\x88\x5f\x73\x99\x82\xeb\x20\x9e\x1b\x2b\x8a\x3e\xd5\x5c\x88\xb2\x3e\xed\x45\x54\x43\x26\x54\x9b\x97\x2b\x4c\x52\x4b\xf7\x20\x9b\x8e\xc9\xda\x2b\x9f\x1a\xc0\x4b\x62\x90\x45\xdd\xa8\xb3\xcd\x43\x3b\x6e\x63\x35\xa3\x98\x73\x51\x65\xe8\x8f\xb7\xd4\x3c\x3e\x63\x30\xa5\x6d\x5c\x2d\x0f\x18\x83\x35\xd5\xca\x0d\xd3\x61\x52\x64\x2b\x7d\x0b\xf0\x1d\x02\x85\x4b\x9a\xd2\xea\xd2\x26\x4a\x57\xf2\xfe\x3e\x95\xc1\xc2\x15\x12\x69\x3f\x88\xf2\x92\xe5\x89\x03\x14\xc2\xdf\xc4\xea\xe0\x13\x85\x2e\x36\x9d\x95\x07\x1b\x8e\xd8\xe1\xbb\x81\x72\x1f\x17\x35\xa4\xf8\x18\xdd\x26\x3d\x98\xa7\x7f\x51\x31\x49\xfd\x00\xc4\x00\xae\x55\xeb\xe7\x4f\x8f\x96\xbe\x1b\x84\xd9\x59\x84\x1d\x0f\x83\xa1\x4a\x88\x01\xe8\x22\x71\xab\x0f\xae\x92\x95\x11\xc7\xe6\x2b\xe4\xfd\x28\xb6\xf9\x03\x7e\x00\x05\x34\x70\xf8\xcd\x3f\x81\xe1\x47\x32\x7a\x3b\xa8\x6c\xa9\xb0\x8d\xd1\xef\x38\x1f\x55\x59\x33\xfe\xab\x52\x71\xfc\x1c\xa1\x4b\xc3\x90\xc9\xdf\xa1\x60\x06\x11\xdf\xee\x55\xa5\x7f\xf0\xc3\xda\xbe\x76\x3f\x2d\xd2\xac\x41\x15\x38\x59\x5a\x0d\x27\x24\x7a\x69\xcc\x11\xce\xcc\x34\xab\x9d\xd0\x6f\x47\x26\x61\x54\xbf\xd0\x26\xf8\x5b\x43\xaa\x02\x9f\x76\xca\xc3\xbc\x5e\x8a\x92\xb4\xfa\x39\xc5\x27\x00\xd9\x5e\xac\xc8\xff\x80\xb5\x86\x58\xe8\x68\x4d\x8c\x2e\x1a\xe6\x13\xbe\xb8\xbf\x0e\xc3\xa4\x61\x91\xc2\xbd\x50\x27\x07\xd3\x37\x49\x64\xc2\x86\x9e\x81\xf6\x60\xea\xf3\x35\xf8\xd5\x03\x8c\x2a\xe5\x48\x1d\xce\x8e\x7b\x40\x2e\x8a\xf0\xe2\x49\xdf\x57\x32\x5b\x2b\x91\x8d\x3b\xf9\x4e\x2a\xa0\xc2\x4f\x5c\xa4\x8a\x03\xd6\xcc\x89\x52\x09\xbe\x5e\x22\x67\x24\xa3\x6d\x78\xaa\x6e\x7a\xc8\x35\x28\xee\x6b\x99\x20\x68\x38\x63\x91\x30\x40\x40\x86\x3c\x5d\x6f\x37\xcd\xba\xe9\x64\xc3\x8b\x66\xe8\x10\x00\x5e\x1e\x8e\x91\x79\xc2\xd0\x6b\x3b\xae\xf4\xb6\x16\xd3\x2c\x6a\xa8\x11\xbc\x73\x6a\x2e\xe7\x9c\x0b\xd2\xfb\x51\x12\x81\x79\x6e\x02\x75\x1f\x8d\x40\x43\x81\x98\xdb\x0d\x5c\xea\x19\x5b\x54\xd2\x3b\xf8\xcd\x7f\xf0\x9b\xff\xa0\x41\x0f\x0c\xa1\xc8\x29\x85\x5a\x3d\x35\x96\xba\x3f\xb7\xf7\x85\xa6\x4d\x0a\x9b\x49\x5d\xdd\x27\xe0\xdc\xde\x95\xf8\xd7\x63\x8a\x17\xac\xc1\x38\x1c\xca\x7d\x24\xcc\xb3\x71\x1c\xcf\x0f\xd6\xe3\x1b\x6e\xbd\x0e\x62\x33\xcc\x23\xa1\x87\xc6\x16\x84\x57\xe3\xe3\x1a\xc2\xae\xe9\x66\x92\x3a\xc0\x36\xfb\x78\xba\x09\xf1\xf7\x35\xb8\xfa\xd0\xf4\x6d\x66\x98\x23\x0c\x6f\x94\x4b\x50\x32\x9a\xe7\x7f\xf3\xa4\x22\x3e\xec\x0e\x4d\x46\x65\x08\x74\x02\x85\x75\xa5\xe1\x78\x61\xcf\x6a\x6c\x49\xb7\x9b\x19\x29\x30\x38\x0d\xdf\x8b\x8a\xbc\xe2\xa7\x78\x66\x22\xae\xb0\x4b\x65\xe1\x34\xba\xc1\xd4\x7e\xa5\x9f\x8a\xe0\x02\x16\x1e\x25\x57\xf3\x64\xa9\x61\x11\xa3\x01\x3a\xd1\x52\xba\x8f\xa6\x88\x48\x93\xc0\xa7\x57\xdc\x58\xe2\x93\x9a\x71\xac\xb9\x66\xcf\x86\x8b\x8d\xc6\x57\xbf\xec\x24\x8d\x3d\x98\x63\x1c\xd6\x7a\xf0\xd9\x66\x3b\x4b\x0d\xd0\xa4\x52\x9c\x19\x61\xf4\xf1\x7a\x10\x04\xf2\x05\x8b\x3e\x3d\x16\x0c\xe0\x01\xb3\x84\xe0\x0d\xe8\xaa\x4f\x73\xf3\x4f\x35\xab\x97\x17\x85\x46\xf8\xe1\x61\xd6\xae\x73\x78\xca\x67\x75\xf2\xfb\x79\x0c\x59\x7c\x67\xca\xa0\x7b\xc6\xc7\x5e\x7e\xce\x26\x89\x85\x77\x87\x13\x7e\x2d\x50\x1e\xf9\xb5\x52\xb3\x1e\xf5\x27\x2b\xc7\x21\x2a\x97\x74\x39\x32\x3f\x56\x7d\x1e\xd1\x1b\xb3\xb6\xc0\x3b\xde\x50\xb0\x19\x13\x92\x1f\x8f\x92\x2e\x41\xbc\x60\x86\xb7\xb4\x9c\x63\xf9\xe5\xdb\xba\x67\x78\x43\x55\x22\x79\xc8\x49\xe4\x39\x6b\xda\x1a\xc3\xc1\xc0\x66\x68\x26\xc2\x7c\x01\x15\xc1\xc7\xb5\x73\x03\x4b\x51\x58\x44\xfd\xbc\xa1\x82\x9e\x43\xf8\x1d\x3e\x09\x3e\xad\x03\xb9\x64\x92\x8e\x4d\xda\x36\x43\xeb\x45\x14\x6d\x14\x35\xcb\xa9\x31\xe7\xf2\x54\xb3\x3f\xcc\x3a\xd6\x31\xa6\x21\x8b\x06\x4b\x8f\xd2\xe0\x9a\xe6\x78\xc1\x63\x97\x47\x58\x04\xa4\xa0\xf5\x75\x5d\x35\xfb\xfa\x66\xd8\xc3\xdc\xfc\x5c\xf3\xab\x5f\x6e\xa8\xae\xcb\x59\x35\x03\x75\x36\xf0\x94\xd7\x71\x64\xf3\xed\xb4\x2b\xdd\xe4\xa1\x7b\x1b\x10\xdd\x75\x00\x16\xcf\x66\x82\xa2\x1f\xaa\xca\xdb\x51\x53\x42\xc1\xfb\x1a\xd5\xde\xff\x06\xdd\xc2\x9e\xe9\x9b\xc5\xa1\x69\x78\x2c\xc7\x56\x04\x49\x7c\xb2\xea\x71\x08\x0b\xb1\xc9\x7b\xb4\x82\x01\xb2\x42\x0c\xc0\xb9\x13\x9f\xb8\x67\x14\xf5\x47\x68\xca\x61\x48\xde\x0d\xfc\x88\x31\xf6\x1b\xb0\x99\x53\xab\x35\x8d\xd9\x34\x09\xd3\xae\x4d\x50\x71\x16\xf0\x41\x95\xe6\x09\x28\xa1\x6e\x30\xdb\x64\xe9\x30\xe9\x50\x37\xc5\x6d\xeb\xf9\xbd\x5c\xe6\xb9\x8e\xf5\x20\x51\x80\x62\x23\xb4\x19\xa2\x4e\xa5\xfa\x35\xbf\xd7\x95\x2d\x5d\xf9\x23\x8d\x63\x0b\xc6\x5b\x2f\x00\xc5\x55\x4d\x18\x8e\x2b\x81\xd2\x7f\xfd\xc1\x48\xb7\x2a\xcf\xed\x76\xaf\x7c\xc2\x3c\xf5\x2c\x98\x5b\xfa\xa1\x8b\x8f\xd5\x04\xde\xd6\xd6\xc8\xf4\x54\x75\xef\xa8\xd0\x62\x96\x4e\x60\x09\x8f\xbb\xfb\x88\x92\xbc\x88\x8a\x21\xf1\xcf\x51\x92\x89\x48\xff\x64\xa0\x26\x29\xdf\xd1\xc5\xb3\x77\xa8\x34\xe4\x7a\xb8\xfb\x67\xdd\x7a\xf2\xc5\x02\xdb\x19\x12\x4c\xdf\x81\xd8\x18\x5a\xc3\x27\x75\x84\x4e\x79\xe1\x4b\x7d\x42\xb7\xa3\xc0\x6c\x6b\x4a\xdd\x6c\x58\x64\x36\xec\x15\xdc\x57\x07\xd6\x97\xf1\x78\x7c\xe2\x50\x29\xcb\x69\xda\x99\xa2\x3b\x81\x23\xfb\x50\x3d\xaa\x87\x5b\xa3\x72\x96\x2e\x2f\x44\x51\x4c\xda\xdc\x75\xfc\x85\xa9\x29\x0a\x13\xc5\x23\x97\x7b\x56\x11\xe8\xfa\x6c\xb2\x9d\x26\x9d\x5e\x1a\x77\x6c\xc6\xf4\xc5\xb8\xc2\x75\x9d\x4d\x02\x35\x25\x59\x45\xf5\xdb\x08\x19\x0f\xd5\xc4\xa6\x2f\x34\xe3\x28\x59\xdc\x1c\x39\xd0\xeb\x91\xd0\xc1\x97\xd3\x56\x68\x04\x82\xfc\x9b\xac\xcb\xea\x97\x64\xbd\x4a\x60\x66\x93\x8e\x49\xba\x64\xd4\xaa\x3f\x75\x2c\xc7\xbe\x2a\xb4\x9b\xf2\x4b\x78\xe9\xa9\xd5\x4d\xc2\x56\xcf\xcf\x35\x9f\xd6\x8a\x70\x17\x14\xb1\xd6\x38\x99\xd1\xbe\xe9\x66\xd1\xcb\xd2\x61\xb7\xd7\xf0\x03\xf7\x88\x78\xf9\xb8\x66\xf4\x7b\xae\x69\x3a\x1d\xc1\xff\x09\xa8\x9c\xae\x8f\x4f\x82\x27\x34\x90\xaf\x43\x74\x8a\xdc\xa5\x99\xf3\x0c\x15\x9e\xad\x62\x0c\x67\x58\x45\xfd\x4e\x0d\xab\xe1\x07\x87\x5f\x57\x9c\x32\xaf\xab\xa1\x01\x93\x24\xe9\x30\x09\x49\xc4\x6a\xfa\xa0\x27\xf7\xf5\xb9\xf2\x8f\xd4\xb4\xd7\x8f\xa8\x64\x23\x14\x0c\x3e\xc7\x05\x33\xa2\xed\x6c\xa7\xc7\xc7\xfa\x6a\x9a\x7e\xe2\x5d\xb2\xc5\xa2\x5c\x5b\x2d\x0d\xb0\x3d\x62\x96\x01\x69\xc6\xf5\x40\x69\xe5\x02\x97\x09\xd7\x77\xcf\x59\x21\x24\x27\xce\xb2\x62\x99\x3f\xd8\xf2\x21\xe0\x86\x82\xaf\x3c\x31\x26\x8a\x3c\x3b\xdb\xec\xd0\x2b\x43\x4c\x0c\x37\xb1\x4e\x97\x03\x67\x7e\x1c\x4e\x4f\x72\x91\xf1\x08\xfc\x99\xa6\xcd\x0b\x43\x84\x9d\xae\x79\x56\x97\x2b\x6c\x7e\x2d\xfb\xf6\x51\xda\xd0\x8f\x5e\x75\x17\x0f\x53\xac\x01\x3b\x48\xce\x44\xd1\xdd\x47\x3a\xbf\xf9\x0f\x7f\xa5\xa1\x09\x02\xaa\x35\x26\xc4\x01\x8f\x29\xe9\xae\x76\x9a\x19\xcc\xe6\xfa\x15\x7f\x39\x50\x49\xd0\x65\x45\xa2\xe2\xb3\xda\xea\xcd\x28\xbe\x32\x21\x12\xbd\x4d\xef\x5a\x82\x01\x5f\x7e\xe9\x87\xa1\x59\x46\xdb\x48\x86\x72\x1b\x8e\x2d\xf7\x30\xcc\x17\x3a\x78\x77\x46\xf8\x00\xef\x04\x4f\x28\x09\x42\xf2\x90\xc5\x30\xe3\xba\x08\xe3\xc4\xe8\x9b\x04\x33\xb6\x29\x8c\x98\x99\x99\x6f\xee\x9f\xdd\x85\xaf\x44\xee\x76\x4d\x01\xf2\xb9\x37\xa0\x24\x56\x04\x2d\xf3\xed\x40\x69\x05\x9f\xd5\xfc\x88\x87\x90\x02\xa0\x5a\x0b\x6b\xa9\x67\xc8\xe9\x19\xff\x97\x7b\x94\x66\xff\x4f\xc8\x24\xf8\xb2\xb4\x77\x71\xb6\xcf\x0a\xd3\x7a\xcc\x0e\xc1\xed\xbf\x26\x53\xe8\xa6\x1a\x5d\x6a\xf1\x97\xaa\x7b\x43\x7c\x13\x0b\x36\x9b\x68\xcc\xef\xdd\xc0\x22\x16\xda\x56\xba\x2d\x54\xb8\x09\xdb\x20\x09\x4e\x3b\x9c\x50\xa4\xf5\x17\x01\x63\x82\xe3\xbf\xa1\x35\xec\x0f\xd5\x81\xb3\x4d\x96\x19\x20\xdf\x51\xb8\x39\xa4\xa4\x72\x0e\x8d\x0e\xcd\x2f\xc6\x36\x47\xbd\xdc\xa9\xea\xb8\x24\xf5\x66\xa0\x00\x9d\x67\x46\xea\xf4\x99\xed\x7c\xce\x8b\x20\x10\x19\xe4\x0b\x1b\x57\xc8\xe7\x32\x19\x16\xd5\xc0\x85\x17\xc9\xd7\x73\x3e\x83\xb9\x46\xa7\xbb\x5a\xf9\x72\x84\x4a\x3b\x5b\x23\xc0\x54\x9f\xa5\xee\x00\xb5\x08\xea\xbd\x93\xab\x1e\x32\x77\x0f\x4f\x05\xdb\xeb\x06\xde\x36\x8c\xcd\xc3\xba\xad\x84\x2e\x35\xd7\x03\x02\x2d\xad\xf8\x36\x40\x54\x4e\x78\xb8\xda\x4b\x88\x95\xaf\x53\x0c\x8b\xb0\xf3\x08\x56\x18\x5e\xf7\x83\x10\xa1\x70\x95\x8e\x7d\x4e\x13\x9f\x5e\x2b\xd6\xc7\xee\x16\x55\xcd\x90\xb0\x5f\xab\x0b\x4e\x3b\xa6\x6f\xba\xb6\x33\xa9\x22\xc0\xd2\x87\xea\x53\x58\x95\xc8\xb7\xa6\x56\x15\xcb\xe4\x09\x05\x91\x6a\x67\x51\x11\xe5\xbd\xdd\x4a\x39\xf6\x42\x30\xaa\xf3\xe8\x20\xbc\xbc\x17\x60\x07\xef\x2a\x66\x9a\x35\x0a\x3c\x61\xae\x5f\x2f\x15\x77\xd8\x05\x2d\x42\x8b\x50\xdd\x8d\x9c\x55\x6e\x00\x5b\xe9\xa4\x7a\x4e\x2c\x1e\x81\xc4\xec\x0f\x4a\x85\xda\xb8\x57\x47\xaf\xfc\xf2\xd0\x64\x85\xcd\x62\x30\xb1\x21\x28\x9f\x68\xf9\xd9\x44\xc4\x8e\xbc\xaf\x9d\x8f\xe8\x66\xa6\x33\xac\x62\xb0\x09\x45\x8b\x7a\x55\x73\xd4\x62\x06\x5c\x50\xc0\x0f\xb8\xc7\xf5\x05\x88\xb5\xbb\xb6\xd0\x57\xbf\xcc\xa1\xed\x61\x85\xb5\x67\xde\x49\xa9\xbb\xa8\xbc\x35\x8c\x98\xd7\xd0\xe9\xd1\xeb\x66\xa5\x0f\xaa\xae\xa9\xa9\x2d\x12\xf9\xc1\x82\x73\xf0\x23\x5f\x39\x3a\x5c\xa7\x5f\x96\x0f\xac\x0d\x1d\x5d\x34\xd3\x5a\x96\xaa\xb5\x7c\x62\x0c\x68\x37\x33\xd3\x0c\x33\x13\x2e\xc2\x31\x38\x55\x0e\x85\x9f\x1a\xe1\x3f\x37\x09\x93\x7d\xe0\xda\x51\xc3\xc7\xba\x6d\xe8\xd2\xd9\x3a\xed\x66\xd7\xdf\xac\xae\x00\x6e\xe9\xb6\x12\x1d\x5a\x87\x03\x42\x15\xf0\x8f\x02\xcd\x4d\x4c\x37\xe0\x48\x97\xaa\xdb\x46\x14\x34\xae\xac\x34\x3b\xdb\x1c\x98\xbc\x20\x6a\x23\xa4\xb4\xac\xc1\x8c\xee\xd1\x59\x65\x55\x3f\xc6\x12\xc5\x02\xff\x1f\x94\xec\xd8\xf8\x74\xef\xf4\xc1\x66\x3b\xb3\x66\xd1\x79\x72\xcd\xf9\xca\xc7\x63\x3d\x8b\x7d\xfb\x9a\xb6\x9b\x4e\x78\x15\x15\xae\x6c\xea\x56\x95\xa0\x72\xbc\x0b\x1f\x26\x96\x1a\xf3\x6e\x35\x38\x0e\xc2\x91\x8a\x30\x7c\x98\xe3\x09\xf6\x43\x97\xaf\xd3\x8d\x38\x8d\x66\x4f\xf5\x37\xd1\x72\xa3\x6d\x6e\xb6\x7f\xd2\x93\x0d\xff\x1b\x7c\x09\x0a\xe2\x18\xa2\x43\x3d\xe3\x96\xe2\x29\x3b\x5d\x8e\x54\x45\xec\xa0\x30\x49\x68\x27\xb4\xf3\xbe\x3d\xa2\x2f\xa2\x24\xd3\x8e\x8e\x4d\xf2\x48\x59\xc2\x9a\xbc\xb0\x59\x32\xd5\xd8\xb7\x6f\x54\x2f\x93\x69\x28\xe8\xbe\xe1\xa1\x21\xee\x84\xcd\xc9\xd2\xd4\x78\x9c\x4f\x8c\xb5\xec\x67\x67\x9b\xb9\x25\x46\x0c\xde\x00\x30\x05\xef\x06\xca\x17\xbe\xab\x52\x07\x1a\x39\xcf\xff\xd3\x18\x7d\x1f\x73\x90\xed\xc5\x24\x5d\x8e\x6d\xa7\x2b\x89\x9c\x2a\x28\xbb\x92\x5f\xa0\x54\x18\x63\x33\x60\xf6\x54\xb4\x84\xf1\x23\x7c\xac\x99\xba\xed\x32\x64\x37\xe0\x2a\xee\xe2\x0b\xdd\x40\x86\xe2\xc7\x0a\x7c\x67\xe9\x3d\x05\x86\x65\x42\x61\x7c\xf3\x2f\x62\x0f\x08\xd5\x92\x1f\xaf\x5a\xd7\xa6\x55\xb0\x8a\x2e\x7a\x74\x80\x80\xab\x8e\x64\x66\xc1\x0e\x35\x24\x6e\x4d\xaf\xb0\xb5\x4d\xe2\x08\x9d\x49\x3f\x72\x79\x13\xee\x99\x4f\x82\x4f\xab\x1b\xef\x76\x49\x64\x51\xa4\xfd\x49\xc5\x37\x7d\x51\x2f\x89\x93\x8a\xb4\x68\xab\xa2\xff\x3c\x32\x96\x49\x91\x14\xa9\x8d\xb2\x9c\x96\x3a\xec\xed\x5f\xc0\xde\x8a\xc6\x57\xf5\x55\xb0\xfd\x97\x81\x7d\x16\x06\x17\x15\xc9\x46\x61\xef\x69\x60\x2f\x60\x54\xca\xc0\xcf\x3f\x9c\x52\x30\x3a\x26\x93\xe2\x3f\x52\x18\xd5\xa3\x63\xa3\x27\x20\xeb\xea\x0f\x6c\x11\x09\x9d\x87\x53\xd2\xf3\xaa\x7a\xa5\x67\xb9\xcb\xd3\x28\x9e\xf4\x25\xa5\x4b\xba\x5e\x81\xc1\x49\x61\x81\xd2\x35\x1a\x37\x20\xbe\x6c\xed\x62\x9c\x72\x33\x80\xfd\xcb\x88\xaf\xa9\x9b\x41\x9a\xfd\x3c\x99\x3b\x69\x00\xa8\x8e\xe1\x25\x02\x5b\xc3\x2b\xfc\xcf\x81\x92\x0b\x3b\x4d\xe0\x60\x60\xbb\xbe\x87\xe5\xe1\x38\x99\xbf\xf4\x35\xf6\x93\xe0\x6f\xc0\xe2\xfa\x43\x45\x0d\xfa\x0e\xc5\xe9\x32\x5d\x54\x45\x44\xf8\xfb\xd3\x8c\xb0\x07\xb8\xfb\x3d\x2c\x26\x97\xe1\xcf\xcf\x39\x44\xa1\x6e\x31\x06\x8a\x3b\x98\x99\xc1\xd1\x3f\x5f\x2f\x55\x01\xea\x06\x56\x03\x52\x71\x20\x7a\x10\xb7\x61\x04\x0c\xf9\xce\x0d\xea\x3c\x22\xb0\x38\x8f\x11\x24\x01\xfb\x63\xcf\x60\x9b\x1e\x45\x14\x89\xed\x74\x5d\x69\x5c\x87\x43\xc0\xc6\x5c\x44\xea\xc8\x5b\xce\xa8\xc2\x99\x89\xa3\x82\xc7\x43\x1c\xcc\x99\x1e\x20\x9f\xd4\xa9\x41\x4b\x42\xdd\xf0\x58\xde\x53\x3a\xfa\x3c\x55\xdb\xbb\x33\x0b\x0b\x26\xca\x50\xa1\xe4\x59\xfa\x72\x64\xb0\xfe\x89\xf1\x94\xea\xb9\xbd\x73\x3b\xaa\xb7\x06\x3f\x7c\x41\x93\xd3\x7f\x44\xef\x40\xc6\x04\xbc\x04\xe0\x21\xe5\x0c\xde\xc6\x55\xb9\xe2\x55\xf5\xd0\xa5\x78\xe5\x31\x7b\xdf\x54\x45\xde\x9e\x35\x9d\x49\x3f\x23\x78\x97\xd7\x00\xcb\x9b\x61\xaf\x8a\xd6\x99\x1f\x16\xb9\x3b\x36\xfc\x72\xf0\x59\xa2\xcc\x6c\x78\x1c\x31\x4b\xf3\xf3\x49\x1d\xcf\x9d\x19\x98\xac\x98\xac\xee\x4a\x88\xdc\xe8\x82\x25\xe5\xf6\x1a\xb5\x17\x80\xb0\x91\xa4\x4d\x67\x7a\x51\xb2\xb2\x5d\x85\x18\xaf\xe1\x9e\x65\xcc\xa8\xe1\x34\x14\x4f\x8f\x2a\xd1\x2a\x16\xa1\x2d\xab\x9a\x9c\x09\x2d\x07\x59\xf5\x23\xa2\xd0\x04\xd2\x35\xf1\x94\xbf\xae\x23\x8a\x49\xec\xa6\xb2\xb1\x1f\xea\xbe\xf9\x87\xd8\x15\x28\xb0\x5e\x54\x85\x04\x1b\xf6\x98\x49\x4f\xd4\x49\xaa\x6f\xc0\x37\xdf\xa1\x30\x1f\x90\xd6\x33\xd8\x89\xb0\xbe\x67\x94\x55\x66\xee\x22\xe5\xce\x3d\xd1\xa1\x0c\x3c\xd9\x57\x06\x71\x9a\x21\x08\xc1\xf5\x6c\x6d\xe9\x3e\x35\xed\x25\xed\x8c\x00\xfd\x18\x2f\x50\x92\x29\x35\xfd\x81\x89\xba\x09\xc7\xc8\x22\xb3\x41\x3f\x2c\xfa\x1b\xb2\xd3\x16\x86\x71\x6c\xb3\x82\x77\x9a\x50\x3f\x69\x1e\xa8\xe0\x73\xa3\xeb\xff\x2b\xd3\x12\xad\x4c\x29\x05\x12\xad\x79\x7a\x41\x91\x65\xfd\x80\xac\x1b\x1f\x07\x5e\x5e\xf5\x8e\x56\xaf\x22\x30\x69\xc6\x83\x64\xb0\x4b\xe7\x95\x0e\x8d\x26\x00\x4e\x4c\xb1\x6c\x73\x29\xff\x22\x20\xe1\xc9\x22\x3e\x51\x18\xdf\xca\xc6\x4b\xcf\x57\x90\xa9\xd5\x65\x0a\x62\x75\x9c\x14\x29\x34\xc3\x5c\xea\xab\xa8\x0d\xb3\x05\xe1\x93\x9a\x29\x9e\xe9\x66\x3e\xcc\x0b\x13\xb9\xf6\x8e\x00\x29\xe8\x73\x7c\x52\xc7\x7d\x78\xa0\xf2\x79\x7d\x9b\x85\x91\x89\x15\x85\xd5\x75\x45\x61\x75\xbd\x66\x3f\x1e\xa0\x71\xe8\x86\x0f\xc8\xce\xd3\x63\xe5\xe3\xda\x2e\xe2\xc0\xda\xce\x8a\x12\x99\xff\x3d\x25\x32\xff\x7b\x6a\xa9\x17\xd6\x50\x8c\xee\xc8\x81\x3d\x05\xde\x29\xa5\xc8\x7e\x53\x05\x67\xdd\x88\xa3\x3d\x61\x7c\xf4\xdf\x7c\x36\xd8\xc9\xd7\x10\xdb\x06\x8d\x64\x38\xc4\xb4\x67\x38\xbc\x38\xf6\x12\x2a\x8b\xd3\x8f\xf2\x1c\x14\xec\xa2\x2f\xd2\x70\xaa\x27\x77\x15\x57\xd2\x25\xcd\x5c\xfd\xe6\xd8\x66\x90\xa8\xba\x6f\x58\x9f\x02\x4b\x1a\x82\x5a\x8e\x4d\xb0\xba\x18\x3c\xbd\x0d\x5d\xe3\x2d\x8a\xcc\x84\x20\x4b\xf2\x42\x0e\xff\x21\xd0\x50\x14\x1f\x31\x17\xd1\xc0\xe4\x46\x49\x70\xbd\x1d\xf8\xa2\xd7\xdb\xea\x6b\x33\xdb\x37\xd9\xa2\x57\x22\xc4\x55\xbc\xa5\xae\xe8\x2d\x15\x6c\x99\xbe\xe9\x01\x37\x8d\xbd\x7f\x13\xa3\x72\x7c\x52\xa7\xa5\x5b\x7d\xfb\x84\x6f\x73\x30\xf4\xc5\x09\xe8\xce\xcc\xb8\x8a\x47\x4d\xf9\x64\x21\x4d\x63\x62\xd7\x76\xdd\x7b\x88\x55\xf2\xf1\xd8\xda\xda\xb7\xaf\xd9\x55\x0b\x5f\x7c\x3d\x2d\x7c\x3e\xa9\xeb\xa0\xb4\x4d\x1c\xa7\x85\xc8\x12\x31\xdb\x28\xad\x7a\x61\x1e\xad\x59\xc4\xdd\x38\x2a\x5e\x5d\xf9\xd4\x4f\x28\x92\xa5\x25\x82\xbe\x3b\x82\x35\x0c\x91\xc8\x64\xb5\xd2\x00\x33\xfd\x28\x5e\x99\xf2\x9d\x9f\x73\xe0\x21\x12\xa2\x9f\xea\x1b\x10\xd8\xac\x6b\x62\xc7\x33\x81\x6a\x4c\x1d\x55\x23\x56\x0b\x99\x7d\x79\x48\x3f\xfd\xe4\x93\x6c\xe4\xae\xe2\x1b\xf9\xc4\x85\x9f\xc3\xbc\x67\xfd\x18\x89\x26\x15\xe4\x63\xcf\x8f\x9f\x86\xc3\xbe\x4d\x0a\x93\xe1\xce\xb1\x42\x30\x3c\xcf\xc7\x63\xf5\xfa\xe9\x83\xcd\x65\x93\x9b\x22\x04\x4b\xba\x00\xee\xe9\x16\x04\x71\xbf\x79\xe1\xcc\xcc\x34\x07\x26\x1a\xb1\x7b\x18\xa6\x91\xfe\x98\x87\xfb\xe4\x83\xb4\xa0\x64\x46\x8c\xe8\x68\xc1\x46\x91\x75\x8c\xa8\x55\x8e\x9b\xda\x6a\x11\x2c\xe7\xba\xc3\x7d\x51\xcd\xd2\x5d\xac\x2b\xc0\xd2\x68\x7a\xc3\x8f\xad\xdd\x56\x35\xdf\xdb\xda\x8e\x0d\xb1\x00\x46\xe0\x89\x7c\x32\xd6\x7e\xac\x0c\xe4\x62\x14\xc7\x39\x86\x83\xa4\xb6\xaa\x8a\x93\x77\x03\x9f\x4b\x5e\x50\xbe\x88\x70\x45\xb6\x33\xa5\x99\x92\xef\x28\xaa\xb8\xbf\x0a\x7c\xa4\xf0\x4e\xe0\x29\x9a\x3f\xd6\x5a\x81\x77\xc6\x2a\x2c\x73\xf3\x73\xcd\xb6\x8d\x23\xbb\x64\xc9\x1a\x23\x32\xfc\x19\x32\x0e\x59\xfb\x1e\x2a\x7e\xf9\x68\x9d\xc4\xf8\x42\x94\x24\xb2\x95\x19\x18\x18\xa8\x49\x98\x8b\x8a\xb6\x79\x40\x0a\xd8\x10\xd7\x73\x92\x87\xd5\x9f\xc2\x9b\x7f\x44\x05\x2b\xd4\xc8\xaf\x29\xcd\x7e\x84\x38\xfc\x01\x35\x8f\xd3\x49\xe3\xd8\x64\xe0\x21\x12\xd5\x4e\x5a\x23\x22\x89\x57\x3d\x08\x16\x82\x0e\x3c\x22\x9f\xc7\x31\x59\x23\x17\x75\x55\xd1\x3d\xdd\xfc\xca\x0e\x3e\x5b\x3d\xfb\x28\x44\x1c\x8b\x7e\x17\x24\xf2\xf8\x58\x8f\xd4\x99\x6c\x39\x4d\x91\x13\xc8\xc5\xea\x3b\x55\x81\x5e\xd4\x6f\x28\x76\xc0\xb3\x9a\xea\xe0\x6c\x5d\x51\xb1\x9f\x26\xd6\x6d\x4d\xd4\x43\xde\xd6\xc5\x91\xb7\x1d\x93\x47\xda\x4f\xa2\xf6\x10\x5d\x1b\x56\x23\x54\xad\xba\xeb\x75\xa5\xbb\xb6\x15\xa5\x4b\x71\x94\xbe\x5c\x77\x71\x73\x9b\x67\x7e\x6f\xf3\xf9\xe9\x83\x0f\x56\x5f\xc9\x98\x60\x22\x28\x41\x22\x39\x45\x42\x20\xc2\x83\x4e\x0e\xc4\x29\x11\x55\xef\x05\x49\xcc\x1d\xac\x2f\xf0\xde\x3f\xde\x52\xe6\xe2\x87\x14\xce\x39\xd1\xbc\xcd\x62\xbb\x94\xde\xfc\xea\x13\x2d\x45\xb1\x35\xd9\x52\x22\xdc\xb7\x80\x46\x53\x77\xf7\xf7\x9a\x86\x7c\x9a\xa3\x57\x73\x23\xab\xe7\x95\x94\x7b\xd7\xe4\xed\x86\xe2\xed\x65\x90\xae\xb0\x1a\xd5\x10\x2b\xf6\x0c\xf5\x5d\xf0\x12\x47\xaa\x67\x82\x20\xf6\xc0\xcb\xbe\x29\x86\x19\x82\x02\x74\x66\xb1\x7e\x90\x28\x32\xec\x59\x38\x63\x7e\xf1\x53\xc2\x0a\x9a\x1e\x32\x71\xf4\xaa\x00\x82\x9c\x86\xba\x03\xb9\x32\x36\x06\x68\xe4\xeb\xb5\x32\x8c\x79\x91\xa5\x7d\xbb\xc2\xdc\xe6\xa8\xa3\xf0\x32\xe2\x13\xa7\x4e\x53\x64\x66\x30\x88\x98\xab\x5f\xd4\x29\x55\x8e\x84\xfe\x2f\x3c\xff\x96\x31\x3e\xdf\xe9\x83\xcd\x6c\xd8\x16\x16\x2f\xbe\xd3\xc0\xe7\xca\xb7\x75\x1e\xb5\x64\xb3\x4e\x9c\x2e\xe5\x8b\xf4\xa6\xb0\xa8\x20\x62\xc8\xc7\x75\x0a\xec\xf9\xb0\xd3\x61\xa9\x1b\x17\x9a\xfa\x30\x75\x2c\x19\x9d\xdf\xdb\x5c\xee\x19\x28\x4d\xe9\x4a\x0a\xcf\xcc\xe9\xb1\xfa\xd3\xaa\x09\x3b\x88\x4d\x68\xdd\x7c\x9b\x68\x9a\x55\x97\x26\x43\x78\x35\x12\x23\x59\xda\x6e\x3b\x97\xeb\xd4\xa4\x5c\x4f\x6e\xbc\xce\x3d\x33\x53\x59\xb2\x4e\x36\xec\xf3\x36\x44\xbe\x8b\x01\x6b\x3e\x2e\x1f\xaf\xa1\x87\x00\xcf\x18\x0a\xbd\x6c\xd4\xf8\x44\xeb\x43\x16\x69\x66\x1f\xf0\xe3\x53\xa8\xdc\x49\xb2\x50\x3d\x72\x66\x4c\x53\xdc\x3b\xdc\xaf\xc0\xeb\x65\x9a\x70\x06\x9a\xaf\x6e\x96\xb5\x44\x79\xe6\x16\xca\x33\x0a\x9b\x36\x2b\x09\x6e\xa0\x9e\x27\x46\x2c\xb2\x9c\x62\x21\xa4\x73\x57\xa9\x01\x05\xff\x72\x12\xc6\x58\x66\x6c\x15\x91\x21\x50\x00\x48\xac\x4f\x8c\x30\x19\x0f\x93\x62\x65\xb4\xb5\x4b\x9b\x52\x58\x51\x1b\x4e\x3a\xea\xe3\x40\x69\x03\x7f\xac\x56\xe0\x30\x2e\xa2\xbe\x29\x6c\xbc\x02\xe8\x0c\x6a\x57\x77\xe9\xd9\x60\xbd\x1e\x03\xd2\x9d\xff\x81\x16\x00\xff\x83\x4a\x01\x8b\x2a\x86\x0f\xf3\x49\x3f\xed\x80\x46\xb1\x53\xd1\x98\x17\x46\xb2\x1f\xa8\x59\xb1\xdf\xba\xe0\xc8\xda\xf2\xe1\x60\x10\xd3\x72\xe3\x71\x47\xb9\x6e\x75\x0f\x75\x2c\xc8\xbd\x61\x56\x4c\xf9\x99\xab\xd7\x4b\x95\xce\xb0\x40\x25\x0b\x0f\xab\xd9\xb5\x2d\x68\x4a\xa2\x1f\xdf\x68\x39\x56\xf0\xa8\xc8\x43\x26\x5d\x13\x00\xa0\x0f\x07\xcf\xaa\x2a\x82\x09\x8b\x78\x85\x66\x87\x1c\x82\xdb\x35\x4d\xee\x29\xc6\xe2\x4b\xee\x33\xdd\x2c\xf2\x02\x7c\x22\x64\xda\xf0\xa2\xa6\x0e\x17\xfd\xf2\xd0\xac\x54\x69\xd4\xfc\x5e\x37\x36\xe2\x67\x08\x7e\x0e\x33\x84\x56\xc2\x0d\x07\x2e\xaa\xb6\x77\x9e\xda\x25\x9b\x4d\x2a\xbe\xfb\x73\xa8\x94\x08\xe2\xc7\x27\x4d\xe8\x53\xe2\xd5\x9c\xf0\xe3\x7e\xe9\xb0\xdb\x1b\x21\x2a\x3e\xa7\xe6\xed\xcf\xd5\x62\xb4\x4c\x16\xb5\xdb\xd6\x4d\x1f\x88\xdc\xa9\xdf\xbb\xe7\xb5\x20\xd5\x55\xd5\xbc\xef\x44\x39\x75\x72\x1a\xa8\xb0\xc1\x2e\x9d\x42\x85\x8d\x4f\x94\xf8\xa1\x7d\x65\x60\xb3\x82\x73\x55\xc7\xab\xe2\xa0\x91\xd0\x52\x47\x19\xe8\xba\xc6\xe4\x6e\x5d\xf5\xb8\x8e\x81\x4d\x92\x7c\x25\x5e\x32\x49\x04\x25\x4b\xc7\x57\x5e\xfd\xbd\x44\xe0\x0f\x29\x8c\x53\x9c\x3e\xcd\x05\x10\x51\x8d\xa3\x3f\x15\x39\xb9\x87\x35\xed\xef\x92\x8d\x89\xed\x03\x4f\x9b\x2b\x49\xb8\xed\x09\x80\x06\xb8\x88\xa9\x28\xc3\xef\xa0\xc5\xc2\xbc\x2f\xba\xff\x7c\x98\x6a\x0d\xaa\xb3\xf3\x8c\xe3\xd9\x51\x35\xd0\xd7\xc7\x22\xb6\xa7\xaa\x57\x92\x45\xb2\xce\x50\x53\x60\x0d\x36\x3e\x51\xd5\xce\x6c\x58\xf4\x1a\x55\xd0\x82\x12\xec\x1b\xba\x1e\xfb\x46\x9d\xc4\x93\x35\x3c\x03\x3e\x3b\xcb\x06\x0c\x43\x51\xc2\x9a\x46\x17\x8a\x7f\xb8\x59\x3b\xe0\x62\xe3\x8e\x60\x8f\x71\x3f\x57\x55\x6a\x71\x55\x25\xfa\x26\x36\xf9\x22\x4b\x44\x32\x96\x59\x0d\x59\xfc\xaf\x8a\xac\xff\x82\xcb\xf7\xf2\x81\x89\xbd\xe8\x5f\xad\x6c\x55\x0d\xea\xed\x80\xaf\xd4\x0a\xc4\x9f\x5e\x17\x9f\x8c\xc5\x8c\xcf\xcf\x35\x17\x13\xbb\x8c\xe8\xc7\xd1\xc7\x56\x0f\x58\xe8\x63\x6b\x1a\x42\x71\x94\x74\xab\xc8\xc3\x89\x26\xbd\x8d\xa5\x24\xcc\x38\x23\x60\x1b\x86\x6f\x55\xef\x59\x68\xed\x1b\x6e\xe4\xf8\x92\x7a\x7f\xfd\x74\xc9\x4e\xfa\xa1\x34\x58\x5c\x04\x6e\x3c\xa0\xc6\x28\x32\x2d\x2e\x74\x45\x59\xed\x24\xb2\x31\x51\xe4\x79\x9a\x82\x8f\x15\x8f\xe5\xc7\xaa\x44\x12\xf6\x86\x49\xb7\xe1\x69\xb3\x3e\x44\xd8\xc0\x27\x6a\x2f\xe4\x51\x7f\xc0\x3c\xb2\xb0\x5f\x3b\x56\x7d\x8a\xcf\xc1\x06\x4c\xca\x55\xea\xce\x88\x84\x46\x65\x9e\xd0\xcf\xbd\x1f\x78\x45\x94\xab\x2e\x47\x37\x03\x30\xf0\x4b\xb7\x02\xc4\x27\x98\x4a\xe1\x63\x95\x64\x3c\xfd\x9f\xff\x63\xd5\x75\x5a\xa3\x64\x48\x40\xae\x9b\xdf\xe8\xbe\x7d\xcd\x76\x9a\xf6\xd5\x12\x40\x12\x20\x5d\xc0\xcf\x78\xb2\x89\x28\x0f\x33\x3b\x20\x5d\x8f\x91\xf8\xf7\x1c\xed\x57\xc9\xbc\x3c\x77\x59\xcf\x24\x49\xba\x64\xb5\xb4\x03\x57\xa6\x45\xb0\x54\xa9\x38\xd2\x40\x48\x3e\xe5\x61\x2f\xdb\xa9\x36\xcd\x91\xcb\xaa\xe2\x65\x3c\x4d\x61\x03\xde\x3a\xcf\x86\x22\xa1\x3b\x17\x68\xf5\xcc\x85\x28\x89\x8a\x68\xc9\xc6\x2b\x6c\xc6\x44\xe0\x50\x21\x92\xce\x6b\x42\xbb\x74\x98\x25\x26\x26\xb6\x4e\x2a\xd9\x23\x50\x7a\x13\x9c\x50\x7c\xe2\xc9\xc3\x96\x4d\x54\x8c\x62\xed\x19\x97\x2f\xe4\xe9\xbb\xbc\x2d\xfd\xe2\x76\x55\xf3\xb8\x8c\x4b\x66\xd8\x05\xbd\x79\xe9\x1c\xf9\xe8\x02\x33\x6c\x9c\x4e\xd1\xfb\x70\xea\x0f\xd5\x6f\xb0\xbe\xac\xc2\x79\x66\x16\x39\x42\xc3\x3b\xad\x3b\x2a\xf4\xbc\x53\xe7\xc0\x8c\xcd\xd2\x7c\x60\x2a\x37\xa4\xd8\xc2\xb9\x92\x21\x8c\xd6\x35\x52\xa1\xcd\x7c\x18\x39\x24\xb5\x44\xac\x64\xcc\x25\x64\x55\x72\x2b\x85\x99\x50\xc8\xdd\x13\xc4\xf5\x85\x80\x92\xa9\x0d\x45\x7f\x7b\x73\x29\x66\xdf\x3e\x10\xca\xd3\x1d\xb1\x3c\xfc\xa8\x56\xbc\x8f\x2e\xa3\x64\xc9\x56\xd1\x6e\xbe\x87\xac\x2b\xd6\x09\xcb\x4e\x30\xfd\x5a\xa9\x3a\xa3\xbc\x6a\x84\x1d\xc0\xb7\xbc\x26\x5a\xe3\x99\x2b\xc2\x8d\xbb\xdc\xab\x17\xf6\x69\x8f\xa9\xba\xa6\x45\xf2\xa8\x8c\x21\x08\x24\x0f\xdf\xdc\xd2\xf2\xd9\xd0\xd5\x52\x31\xeb\xdd\x2a\x3d\xa5\xd0\x04\xb8\x9c\x61\x2b\x26\x81\xb2\xc7\x56\x38\x17\x3c\xe0\xaa\x7a\xe8\x21\xd6\x8e\x92\x78\x3e\x0c\x02\xcf\x74\xd2\xe5\x84\x95\x7e\xdd\x08\x67\xf5\x9d\x7c\xe2\x12\xbe\xb6\xed\x99\xa5\x28\xcd\x08\xd0\x86\xd7\x0e\x15\x5b\x06\x98\x94\x3e\x75\x3a\x87\x6f\x90\x3a\x67\x0d\x6c\xa7\x9f\x26\x45\xb5\x16\x27\x54\x69\xeb\xac\x9a\xbf\x3b\x89\x4b\x46\x40\x77\xcb\xa1\xe8\x8b\x61\x02\xbe\x12\xec\xb3\xfb\xa3\x70\x1b\x1d\x52\x8e\x67\xb7\x07\x9a\x61\x66\x3b\xa0\x9d\x57\xe0\xe3\x53\x8a\xaa\xe2\x94\x8a\x6c\x12\x6b\x3b\x39\x97\xd3\x5c\x8b\xce\x93\xc6\x1c\x09\x7c\xcb\xff\xaa\xa2\x02\x61\x86\x4c\x24\x02\x27\x15\xdc\x33\x89\x7a\x30\x86\xdc\x82\xa7\xe5\x20\xed\xf8\x9a\xf4\x38\x31\x79\xc7\xbc\xdc\xd0\x55\x72\x55\x3a\x3c\xa1\x1c\x54\x68\x88\x2c\x76\x4a\x05\xa5\x37\x03\xa5\xe9\xfb\x81\x6a\x12\x7e\x4f\x91\xc2\x6c\x20\xfe\xe2\x49\x63\xf7\x9e\xf3\x38\x1a\x0c\x1c\xc8\x59\xc8\xaa\xfc\xab\x41\x49\x01\x3b\xe4\xad\x52\x9b\x96\xd8\x13\x56\x48\x98\xe9\x17\x61\x59\xaa\x10\xf2\xaa\x17\x0f\x5a\xe9\xb7\x53\x99\x5f\x70\xa5\x57\x97\x4f\x5c\x1c\xe9\xdc\x0e\x93\x45\x24\x60\xcc\xa1\xac\x07\x00\xff\x5d\xa0\x88\xe0\x7e\xa4\x30\x59\x57\xf5\x82\x8f\xb2\x7e\x94\x74\x7b\xa6\x8f\x6a\x8e\x44\xc6\x2a\x05\xba\x51\x83\xc8\x77\xad\x5c\xb1\xe4\x5c\x21\xa0\x0b\x95\x6a\x41\x4d\x45\x21\x4e\x73\x94\x75\xd0\x24\x39\x55\x7a\x46\xfe\x3b\x94\xae\x0a\x2e\xf4\x11\x05\xdf\x82\x50\xb2\x8f\x1e\x8f\x94\x8a\xac\xe1\x84\xb2\x16\x3f\x09\x54\x4f\xec\x5f\x06\x2a\xc6\x1c\xeb\xf0\xa1\xae\x5c\x14\x51\xde\x4b\x48\xd2\xc9\xc5\x93\xe8\x8f\xf2\x71\x9d\x36\x59\x9c\x4a\x3c\xe1\x3c\xff\x9a\x52\x7c\x5d\x53\x9c\x07\x0b\xd6\x80\x93\x8a\xe2\x2d\x06\x65\xb7\x94\x26\xf5\x39\x8f\xca\xfe\xe4\xa7\x30\x9b\x52\x16\xff\xb4\xd9\xb8\x81\xcd\x42\x4b\x9c\x3d\x0d\x5f\xed\x63\xbe\x76\x3e\x51\x01\x58\x6e\x16\x6c\x36\xa1\x48\x73\xae\x29\xe8\x23\x5a\x15\x02\x0e\xda\xec\xe8\x5e\x7c\x51\xe8\xab\xe5\x25\x8b\x8e\x93\x9a\xe1\xbf\x50\x8a\x85\x5d\xb1\xc9\x0e\x18\x07\x87\x86\x73\x74\x17\xef\x29\x71\xc6\x07\x88\x82\x0d\xbd\xca\x4b\xd8\x70\xa2\x2c\xdf\x70\x5c\xdf\x37\x4a\xcf\x52\xc7\x55\x42\xc4\x2d\x93\xad\xcd\x8b\x71\xff\xec\x48\x37\xd0\xaf\x7f\x40\xef\x85\x3f\x58\x31\x1e\xdb\xce\x30\x74\xba\x30\x78\x2a\x7f\xa6\x14\x00\xfe\x4c\xcb\x9f\xd3\x0a\xf7\x1d\x5c\x46\xe1\xf3\x89\x1a\x7c\x82\xd6\x51\x4e\x3d\x46\x78\x28\x30\x78\xf2\xb1\xcb\xb9\x07\x99\xcd\xa3\x8e\x4d\x42\x09\xae\x78\x1e\x5d\x77\x80\xce\x28\x6a\xaf\x05\x1e\xd0\x73\x6a\xac\x27\x94\x1e\xf9\x09\x97\xfe\x27\xa6\x8a\xd8\x14\x06\xe5\xb4\x1a\xa9\xf8\x29\x3d\x7d\x84\x99\xc0\x0a\x89\x22\x9b\x17\x06\x20\x50\xe1\x84\x67\x4a\x60\x62\x74\xa7\x43\xa5\x18\x9a\x54\x90\xb2\xf7\xd9\x79\x94\x0e\x78\x3a\x1e\x2b\xd8\x09\xfa\x3b\xcc\x16\x57\xda\x64\x83\xd5\x09\x9d\x9a\x28\xa6\xd1\x09\x7a\xd7\x6e\xe2\xc0\x2d\xd5\x0b\x5e\x5b\x3a\xcd\x44\x8c\x1c\x46\xef\x90\xa2\x45\x3f\xa4\xdb\xb3\x9d\x7e\xc4\xba\x21\x58\x54\xe8\x35\x3a\x86\x89\xb9\x67\xa5\x28\x00\x98\x0c\xff\xc3\x18\xfa\x13\xd2\x01\x09\x11\xfb\xcb\x28\x39\xfc\xf3\x15\xba\x40\x3e\x1e\x2b\x37\xfe\xbd\x66\xfe\x4b\x31\xd9\x7e\xa0\xf9\x6e\x05\x0d\x45\x9a\x40\x0f\x44\x66\x01\xfd\x45\x2f\x98\xa5\x14\x4a\xb2\x82\xda\xf1\xae\xea\xc2\xc8\xc8\xaa\x89\x23\x16\x65\xe6\xe2\x01\x9e\xb1\x54\x12\xea\xc0\x54\x61\xcf\x24\x5d\xd9\xcc\x0c\x4c\x2e\xd5\xe0\x56\x15\x7b\x4b\x5e\xf1\x9b\xff\xa0\xa1\x00\x24\xaf\xc3\xe4\xf2\x89\x5b\x76\x79\x91\x45\x8b\x16\xd8\x21\xc1\xe6\x54\xeb\x61\x03\x68\x7b\xc4\x6d\x3b\x57\x3d\x95\x2d\xa3\x0b\xd0\xa3\xba\x5f\x7a\xa8\xe3\x45\xe5\x4f\x7f\xa1\xf5\x69\xec\xd7\xb9\x49\x3a\x19\xa6\x5b\x95\x14\xcc\x9c\xeb\x55\xf8\x46\xe8\x42\x66\xed\x83\x2a\xf7\xf9\x39\x3c\x9a\x54\xf8\xfc\xcc\x1c\xe3\x28\xb0\x53\xee\x50\x42\x86\xb7\x72\x59\x15\x77\x41\x47\x23\x05\xa6\xea\x76\x50\x28\xba\x85\xa8\x82\xbf\x89\xc8\xe5\x79\xc2\x00\x41\x8f\x80\xad\x68\x8f\xe0\x42\xfe\xba\x86\x17\x7b\xba\x39\xc8\x52\xee\x27\xe2\x07\x79\x70\x4c\xe6\x06\xab\x5f\x94\x85\xa3\x54\xf9\xd3\x74\x71\xb7\x56\x70\xbe\x48\x57\x80\x6e\xc3\x54\xcb\x27\x31\xac\x55\x26\x14\xac\x7e\x48\x9d\x69\x9b\x11\xeb\x1d\x0b\x34\x3b\xcd\x88\xc2\x2a\xf6\x32\xc2\xda\x5d\x98\xf3\x70\x02\x0e\xfb\x05\xa0\xba\x6b\x55\x8d\xca\x21\xa0\x07\xeb\xf0\xcf\x5d\x14\xbe\x14\xe5\x93\x7e\x48\xe5\xfe\x88\x3e\x6a\xf5\x0b\x70\xe3\xef\xd2\x97\xca\xff\xdf\x6c\xef\x89\xe1\xac\x1f\xc5\x11\x9a\x7b\x33\x33\x7e\xe8\xcd\x0f\xc0\xa9\x64\x3a\x4c\xe3\x98\x08\xee\x26\xbc\x44\xe8\x09\x85\x3f\x3e\xe1\x62\xe9\x95\x74\x98\xed\xa0\x67\x00\xc7\x73\x9b\x99\xde\x11\x9f\x7c\x86\x1e\xa8\xcc\xfe\xe8\x38\xa7\xb1\x6f\xdf\xa8\xe0\x8d\x54\xe0\x2a\x13\x2c\x59\x5a\xf5\xd0\xa5\x80\xbb\x39\x35\xa4\x8e\xe9\x42\x9a\x71\xcb\x94\xeb\xb0\x6a\x42\xe3\x5c\xa9\x45\x77\xc2\x22\x5a\x88\x2c\xac\x04\xd0\xd1\xa7\xf5\x0c\xef\xe9\xb1\xc1\x93\xfd\xb3\xcd\x7e\xd4\xc9\x87\xfd\x3e\x6b\x30\x63\xaf\xae\x61\xe6\x1c\x6f\xf2\x3b\xb8\x74\xe0\x56\xbd\x4c\x78\x27\x33\x7d\x11\xc5\xc2\x1e\x79\x4f\xcf\x9d\x6c\x57\x34\x0b\xc7\x75\x29\x72\xaa\x0e\xf9\xd0\xb5\x89\xcd\x0c\x6c\x22\x5e\xef\x0d\xe2\x54\xbc\xa1\xd1\x6f\xdb\x5a\x3b\xa3\xca\x4d\x2e\xfc\xa3\xe6\x57\x3f\xef\x7b\xc1\x5b\x69\x96\x0d\x4f\x93\x01\xf5\xb4\x36\xff\xe3\x2f\xb5\x3c\xdb\xe6\x9d\x92\x90\x4c\x6e\x5e\xf7\xab\x5f\xe6\x00\xf0\x1a\x43\x32\x45\x9f\xb5\x5a\x84\x6e\x26\xa1\xba\x1d\x67\x91\xf6\x4b\x97\xef\xf1\x96\x8a\x9a\x76\x12\x83\x2d\x7a\xe1\x77\x83\xad\x5f\x74\x3c\x5a\xb4\x17\x84\xf0\x91\xf6\xbc\x63\x7b\xfb\xd2\xd7\x3c\x43\x8d\xef\xb9\xc1\x90\x4a\xf4\xa7\x2c\xe7\x5d\x5a\x47\x6e\xf4\x68\xdf\xb4\x43\xbe\xeb\x22\xc3\x76\x44\x8f\xd8\xa4\x23\x02\xf1\xff\xb1\x54\xca\xaf\xb7\xc6\xa2\xb9\x7d\x64\x64\xc2\xd8\x10\x23\x83\xe7\xa8\xfb\x44\x2d\xb3\x4f\xd4\xa0\xd5\xcb\xc3\x28\x5c\x8c\x57\x76\x34\x1c\xad\xd3\x55\x25\x65\xf7\x73\x32\x94\x80\x1d\x4c\x10\xd9\x28\x6b\x09\x96\xbe\x03\xb1\xae\x58\x88\xce\x69\x12\xb9\x4d\x83\x2e\x0f\xb9\x16\x46\x64\x5d\xa8\x29\xe9\x27\x7d\x4c\xf2\x52\xef\x26\x89\xaf\x03\xb1\x02\x76\xe4\x65\x3c\x57\x3e\x09\x54\x60\x93\x99\xce\xca\x84\x1a\x79\xf8\xef\xd4\xf0\xef\xc5\x72\x04\xf6\xed\x03\x9b\xc1\xd3\xe0\xf0\x62\xf9\x86\x52\x75\xcc\xaf\xd0\x2d\x62\x9f\xdc\x77\x03\x16\x83\x2c\x0a\x6d\x38\x2c\x7c\x10\x2a\x1c\x6c\x1e\x18\x70\x76\xac\x26\x44\xb4\x6d\x26\xeb\x33\x51\x2e\xde\xc2\x29\x54\x3b\xf9\x44\x35\xdd\x7a\x36\x8e\xc2\x74\x50\x54\x9b\xd8\x99\xbd\xef\x96\xde\x6b\x7c\xa4\xb2\x89\x63\x63\x51\xd6\x73\x7b\x9b\x61\xba\x6c\xb2\x4e\x0c\xb3\x29\x95\x61\x4f\xc7\x76\x69\x0c\xfb\xff\x7c\x95\x27\x0d\x07\xc4\x9b\xc8\xd0\x6d\x6c\xae\x7f\xa1\x67\x92\xfe\xc5\x18\xe7\xda\xfc\xde\x79\x56\x07\xf3\xda\x25\x80\x4f\x81\xc1\x94\x99\x12\x02\x6f\x52\x3d\xd7\x44\xcf\x2c\x17\xbd\x2a\xc8\xa3\x37\xc0\xf3\x80\x2d\x1f\x75\x7d\x5b\x8b\xef\x4d\xac\x6a\x19\x87\xe1\x60\x0f\x3d\x3b\x99\xf9\xc6\xce\x51\xca\xc2\xcf\x38\x6a\x4f\xd7\x4f\xf9\xed\x3d\x84\xc0\x18\x11\xb6\x44\x07\x66\x0b\x59\x16\x1c\xef\x40\x37\x06\x27\x8d\x96\xef\x73\x5e\xc7\xc2\x43\x08\xb0\x13\x80\x02\xe6\x8e\xd5\x55\xa3\x07\x5a\x5e\xb9\x66\xcb\xaa\x8f\x8c\xd7\xb4\xcc\xc8\x16\x8a\x94\x60\xb1\x6e\x50\x81\x0b\x61\x86\xe7\x2a\x19\x90\x0a\x44\x62\xe3\x1d\xae\xc1\xb9\xf2\x18\xbc\x3b\xac\x16\x03\x45\xa4\xb4\x5d\x59\x40\x96\x5f\x53\x44\xc2\x7f\x1a\x28\x5d\x2b\x56\xf9\xc0\xa5\x7d\x81\x6e\x19\x7e\xea\x70\xa9\x9a\x8b\x59\xb6\x32\x31\x12\xb2\xfa\x18\x0c\x6d\x34\xe1\x45\xd8\x1c\xdd\xbc\xf8\x62\xb3\x1b\xa7\x6d\x96\xf2\xc6\xef\x7f\xa2\xae\xe5\x93\x31\x6f\xb5\x6f\x1f\x29\x2d\x44\xc9\xd0\x76\x08\x72\x8d\x4d\xf8\x81\x66\xe6\x00\xe4\x14\x11\xfb\x06\xb2\x13\x26\x11\x56\x60\xb8\x62\x98\x2d\x50\x4c\x25\x84\x35\xf4\x68\x60\x7a\xaf\x07\xca\xcc\x1c\x52\x54\x8d\x9d\x34\xed\x8b\x11\xd2\x65\x34\x11\x61\xdd\x9c\x96\xcf\xce\xce\x35\x33\x22\x16\xad\x62\xf2\x2a\x0b\x03\x52\x0d\x7e\xe3\x86\x5a\xed\x0d\x05\x0c\x3c\xeb\xe5\x9b\x32\x93\x2c\x4e\xe8\x7e\x7e\xc3\x91\x18\xad\x8f\x34\xac\x3e\x15\xe8\xc2\xfb\x53\x5a\x1c\x52\x0f\xd3\xc5\x31\x85\x71\xed\xdb\x2a\x0d\x70\x25\x6f\x19\x0a\xd4\xe3\x64\x9b\x07\x04\xe7\xf7\x36\xc3\x21\x51\xba\x8a\x7f\x39\x8e\x97\x81\xa5\x05\x4e\x3e\x8c\x0b\x30\x5b\x28\x2a\x47\x57\xc8\x4b\x88\x70\xd2\xa7\x4d\xd5\x15\xbd\xc8\x2e\xc9\x6c\xab\x40\xc4\x68\x4d\x22\xa8\xe2\xf9\x76\x49\x44\xea\x26\x41\x7b\x26\x65\x80\x20\x9a\xe9\x27\x34\x38\xfa\x4f\x4b\x0f\xde\x3c\xed\xa0\xf5\x84\xe9\x8f\x0a\xdb\x99\xf0\xf8\xf3\xef\x93\x69\x1f\x29\x62\xa3\xea\x70\xc5\x7d\xac\x9f\x2e\x45\x36\x2f\x58\x76\x1b\x70\x84\xdf\x0a\x14\x02\xf5\xb7\x14\xbd\x57\x3f\x5d\x22\x6c\x42\xde\xf0\x7c\xac\x3c\xd1\xc1\x27\x0a\xe8\x17\xf6\x4c\xbf\x2d\xad\x78\x25\xec\x7f\xc0\x2f\xc3\xf9\xbd\x5e\x0b\x78\xd6\x2f\x4f\xcf\xb6\xb8\x14\x19\x42\xf6\x21\x38\xbb\x45\xa6\x1d\xbd\x10\xc6\xcb\x71\xdc\xc1\xc1\xfd\x08\xd3\x9a\x88\xa7\x79\x78\xf1\x9b\x41\x1d\x5b\xc4\xcb\x43\x08\x9a\x19\xc9\x85\x11\xa6\x40\x06\x85\x8f\x4b\xdd\x6d\xcc\x8b\x27\x68\x4d\x88\x22\x45\xe3\xc9\x27\x1d\xa7\xa4\xd7\x19\xf9\x06\x9e\x0b\xea\xdb\xeb\xba\x4d\x78\xb7\x54\xa5\xf8\xff\x31\xf0\x8e\xf2\x3d\x82\x9b\x48\x4b\x4c\x71\x77\xbd\x19\x34\xbe\x32\xcd\xf7\xfa\x76\x95\x13\x6d\x5c\x53\x00\xde\xb5\xd2\x5b\xd9\x6b\x28\x03\x20\xfa\x9b\x5c\xad\xa2\x2e\x89\xe4\x11\x30\xc2\x74\xac\x97\x0d\x45\x4e\x4c\x31\x1f\xff\x03\xc9\xb1\x28\xa2\xf5\x17\xf8\xcd\x4e\xb6\x14\x48\xf3\x9b\x23\xf3\x86\x51\xb2\xb8\xab\xba\x3e\x11\x1b\x50\x31\xe0\x35\xa4\x8d\xc8\xe6\xd6\x03\x25\x87\x01\xdb\x05\x74\x17\xa4\x44\x5c\x0c\xef\x29\xa3\x0f\xe9\x0c\xee\x36\x3d\x5c\x44\xa0\x6b\xb4\x76\x34\x19\x8e\xc0\x3a\x75\xb5\x7a\x90\x66\x85\xed\xec\xac\x3e\x86\x7f\x3e\xcb\x0e\xd4\xa9\x63\xcd\x0b\x6a\xf1\x5b\x1a\x3f\xfc\x89\x92\x04\x3e\x59\xfa\xb0\xe9\x1e\x86\x76\xa4\xe5\x52\x3d\x75\xa4\x5c\x6f\x6a\x01\xd7\xf7\xc7\x5c\xc6\xcc\x4c\x73\x21\x36\x8b\x36\x57\x0c\xd6\xdc\x5c\xe3\x13\xb7\x1d\x07\x26\x33\xb1\xed\x9a\x18\xb1\x20\xb7\x33\x15\xf3\xc3\x39\xd5\xf8\xee\xa4\x69\x46\x25\x32\xd4\x48\x00\xeb\x77\xb4\x1b\xfb\xa5\x24\xf2\x3e\xee\x0d\x2e\xf9\x98\x17\x00\x07\xd9\x9b\x93\x66\xe1\x1e\x12\x9f\x28\xe1\xfc\xc4\x64\x59\xba\x1c\x33\x67\x09\x6e\xb2\x41\x54\xe5\x7c\xdc\x6a\x7e\x8a\x25\x5c\x48\xd3\xa2\x17\xb1\xfa\xc3\x1c\x67\xcf\x4c\x6d\xc8\x27\x2a\x1c\x74\x9c\x38\xf9\x83\x7e\xa4\xe0\x16\x36\x8b\xd0\xb2\xd1\x8a\x54\xaa\x9a\x07\x9c\xaa\x66\xb5\x02\x9d\x4e\x73\xb5\xff\x05\xbd\x5e\x2d\xc7\x8d\x35\xac\x37\x44\xb9\x65\xe0\x4d\xe4\x56\x0a\x7d\x9c\x34\x90\xd2\xc2\xe1\xb5\x22\xf5\xa7\xcd\x3e\x64\xfa\x60\x33\x33\xcb\xf4\x46\xb9\xc2\xa8\x90\x5e\xef\x8c\xf5\x0a\x9e\xa2\x59\x09\x18\x4e\x19\xdd\x53\xb0\x97\x8f\xc6\xda\xf1\xcf\xed\x6d\x2e\x47\x5d\x7c\x60\x84\x05\x56\x78\x21\x36\x87\xa8\x54\x47\xa0\x46\x69\xf5\x4b\xaa\xfd\x3b\x2a\xb4\x5e\xa7\xf2\x12\x86\xc3\xcc\x75\x3e\x70\x41\x8c\x96\xe1\x13\xd5\x9f\x5f\x8a\xec\x32\x33\x4c\x4d\xb3\x2b\xbc\x05\x84\x15\xd2\x91\xdf\xc5\x0b\xe3\x7f\xa1\x4e\x36\xff\x43\x9d\xb8\x50\xdf\xbc\xc4\xe5\x41\xe4\xcf\x8c\x60\xe5\x93\xd5\x9a\xc9\xfe\xe5\x34\x41\x1f\x0c\x40\xa2\x37\x4b\x55\x07\xbb\xab\x68\x6e\x6e\x69\xb8\xcf\xb1\xc0\x07\x6b\xc7\x74\x70\x64\x07\x36\xe9\xe8\x6c\xea\x30\xed\x35\x7c\x37\x9a\x5b\x42\x02\xe9\x53\x30\x33\xec\x44\xe9\x36\x3f\xe7\xf1\x33\x85\x54\xbd\x41\x36\x5c\xd2\x17\xfa\x62\xc1\xf8\x35\x9c\x34\x09\x2b\xb5\xc8\x3f\x48\x5f\xce\xc6\x76\xc9\xb8\x8c\x11\x93\xd1\xdf\xc3\x6d\xf0\x89\xea\x09\x2e\x26\xc3\x4e\x9e\x26\x84\xa2\xc4\xa5\xaf\xd1\x4f\x3b\x4d\x3c\x67\xdb\x4e\xa8\x98\x0d\xa5\x28\xa1\xab\xf3\x23\xce\xcb\x84\xde\x9f\x3e\xe8\xa7\x5f\xe7\xfc\x49\xa0\xe8\x8f\xd3\xf6\x36\xba\x76\x61\xfc\xf5\x69\xcc\x8d\x40\x0d\xfb\x5f\xa4\x72\x99\x90\x07\x6b\x12\x1c\x55\x62\xbe\xa1\x74\x0b\x16\x73\x21\xd9\x18\x21\xc3\xe3\x93\xb1\x1a\xe3\x3f\x69\x2e\xa4\x99\x8d\xba\x98\x23\xe0\x42\x0e\x3e\x02\xbf\xfa\x03\x3d\x8a\x7b\x88\xf7\xb2\x48\x1c\xaa\x3e\x8a\x1a\x25\x18\x64\x36\x8c\x44\x60\x8e\x39\x49\xe0\xbf\x84\xa0\xa4\xc6\xb0\x47\x79\x6c\x58\xab\xc6\x91\x4c\xb9\x46\xc5\x39\x85\x4c\x48\x87\x45\x1e\x75\x6c\x86\x1d\x0d\x5f\x09\x14\x38\x1f\xd7\x61\x82\x7b\x26\xe9\xf4\x6c\x8c\x44\x15\x6f\xf0\x86\x02\x81\xdc\x70\x19\x4d\x66\x92\x4e\xda\xa7\x87\x81\x0e\xcd\x16\x94\x94\x14\xfd\xb4\x48\xb7\x1d\xd3\xf3\xfc\x68\xf5\x22\x2b\xdb\xd5\x7a\x74\x13\xd9\x51\x9a\xf5\xe9\x97\x65\x14\x9c\xbe\x92\x4f\xc6\x0c\xe2\xfe\xd9\x66\x3b\xea\x34\x34\x6a\x58\x31\xe0\x9d\x56\x8c\x2a\x79\x2f\x5d\x7e\xa4\xe1\xe8\x52\xd7\x4a\x35\x35\xf6\x6d\x58\x45\xc4\x19\x0c\x84\x40\xbd\xf2\x1d\x5a\xba\x58\x10\x4c\x6a\x24\xe0\x34\x5a\x91\x52\x69\xa2\xd7\x87\xfb\xbe\x46\x39\x27\xc2\x84\x29\xc5\x5b\xfe\x9a\x16\x82\x5c\x87\x6b\x40\x8d\xe7\x2c\xe2\x27\x54\x42\x01\x78\x40\xf0\xf2\x23\x5a\xd0\x78\x68\x6b\x23\x0c\xe4\x35\xe3\x14\x73\xcd\x3c\x8d\x79\x39\x4b\xb6\xa3\x12\xe9\x0b\x4a\xa4\xb2\x30\xc9\x22\x63\xa8\x5c\xf9\xd5\x03\xd4\x55\xeb\x35\x1f\xf6\xfb\x20\x9a\xab\xfe\x1d\xd9\xfd\x77\xb1\xb3\xf8\xa4\x86\xc2\x6f\xba\xd9\x8b\x3a\x1d\x9b\x60\x60\x40\x58\xe2\x3d\xe2\xe0\x08\xea\x7d\x88\x32\x3f\xa8\x6b\x70\xe7\xd6\x22\x9b\xc3\x13\xbd\x3b\x42\x8b\xee\x95\x3a\xcf\x8e\x44\x84\x85\x1d\x4c\x7a\x42\xeb\xdf\xa1\xe2\x1f\xf6\x10\x04\xf7\x90\x73\x3f\xd0\xf2\x31\xec\xee\xd5\x1a\x55\x5d\xfb\x4a\x18\x0f\xf3\x68\x29\x2a\x56\xa8\x74\x02\xa4\x02\xcf\x80\x39\x16\x8f\x99\x19\x37\x03\xbb\x79\x49\x3e\xb7\xb7\x99\x0d\xc1\x9e\x06\x93\xb7\xa6\xbd\xc5\xc6\xc8\xa0\x95\xaf\x95\xfd\xd3\x83\xbf\xa1\xf4\x48\xd7\x15\x8b\xff\x25\x6d\x94\x4e\x38\x4c\x5e\xdf\xbe\xfa\x6a\xda\x8d\xd2\x2c\x49\x1b\x3e\xae\xe6\x0c\x85\x4f\x1c\xf8\xc2\x86\xb1\x0d\x8b\x28\x54\x44\xb0\x37\x4b\x0f\xa2\xb8\x19\x68\x60\x7b\xb2\xc0\xb5\x31\x11\x1e\xd1\x93\x22\xa5\x47\x10\x5c\xf8\x54\x8a\x97\x30\x4d\x42\x19\xb7\x42\x45\x01\x5c\x7c\x0e\xa0\x5b\x5d\x23\x42\xfc\xab\x04\xc9\x12\xd1\x0e\x5a\x59\x32\xef\x58\xb7\xb2\x98\x2d\x78\xc2\x0b\x93\x9d\x55\xde\xe0\xac\x92\x5a\xe9\xad\xb4\xb3\xa8\x33\xa9\x15\x6b\x70\x23\xb2\x8a\x35\xf9\x1a\x99\x6d\x59\xd1\x9b\x17\xc5\xcc\x0c\xc6\xe0\x06\x59\x94\x4b\x86\x2d\x8a\x7f\xca\xd7\xfe\x56\xa9\x04\x33\xce\x06\x8f\xcb\x7b\x8a\xf2\x61\x52\x99\xe0\x22\x4d\xd9\xc9\x22\x4c\xb9\xa6\x90\x5f\xd7\x14\x12\xbc\xcf\xea\x4b\xa2\xe3\x81\x47\x47\x2f\xea\xee\xe7\x5a\x0e\x22\x71\xfd\x0b\xab\x6a\x4c\x61\x9c\x50\x7b\xff\x2c\xec\x69\x54\x28\x45\xfb\x8f\x95\xa2\xfd\xc7\x2e\x04\xe8\x66\x66\x30\x70\x00\x79\x19\x47\x56\x0a\x14\x87\x95\xed\x58\xc8\x6c\xde\xdb\xee\x0d\xf4\x6a\xa9\xb4\x9b\x8e\xe3\x81\x88\x00\x89\xd2\xa9\xbc\xa8\xa6\xaa\x6e\x8d\xca\x82\x29\xc8\xef\xc5\xba\x31\x83\xbe\x59\x44\x57\x0f\x46\xf1\xae\x26\xfc\xc7\x50\x09\x12\xe6\xf7\x55\xbf\x8a\x24\x99\x42\xdb\xd9\xa6\x87\xe8\xcf\x62\x9a\x02\xb1\xd5\x3d\x1d\x3f\x5e\x29\x7d\xc8\x78\x25\x50\x9c\xdc\xf7\x02\x35\x77\x3f\x5e\x7a\x7e\x5e\xa8\xa2\x78\x59\xc0\xab\xde\xd1\x84\x95\x2c\xe5\x21\xf7\xf7\x39\xef\x90\xd2\x61\xd2\xf9\xcd\x7f\x58\x3d\xfc\x5e\x14\x72\xe5\x45\xe0\x49\xd5\xf3\xc5\x7a\xdc\xa2\x83\x53\xcf\xa6\x90\x17\x76\xd0\x13\x1b\xeb\x88\x40\x3c\x74\xf2\x8e\x56\xa9\xbd\x54\x7a\x38\xe8\x93\xf9\xe7\x91\x94\xa3\x3a\x76\x37\x50\x48\xbf\x9d\xa8\xcf\xc2\xca\x6d\x23\x88\x89\x6c\x46\x32\xd9\x4e\x31\x6a\x7e\x2f\x87\x59\x0f\xae\xaa\x9f\xd9\x49\x33\x3a\x9c\x52\x6b\x7e\xc2\x2d\xab\xf4\xac\xe1\x79\x1f\x5f\xf5\x55\xb2\xab\x58\x3c\x30\x34\x0d\x6a\x81\xc0\x47\x08\x71\x38\x6d\x8f\x5d\x8f\xb6\x7c\x91\xed\x8e\x1e\x89\xb9\x88\x56\x15\x5e\xdc\xff\x42\x41\x10\x2c\xc1\x2d\x7a\xa1\x40\x7a\x6e\x6d\x35\xbe\xfa\x65\xbe\x92\x8f\x90\xa6\x21\xd4\xfe\x80\xdc\x2b\x5c\xf8\xee\x96\x22\xa8\x64\xaa\x3e\x7c\xfc\x3e\xa8\xfe\xd0\x55\xdd\xbe\x5a\x87\x00\x1c\x64\x69\xe8\x6b\xfb\xb5\x70\x47\xc5\x89\x9a\xe5\x36\x31\x71\xae\xe8\xf7\x2f\x68\x2a\x55\xda\x42\x1b\x57\x82\x5d\xce\x94\xbd\xf8\x62\xb3\x32\x92\xec\x4d\x02\x45\x1f\xce\x19\x26\x80\x2c\xb7\xa9\x71\x8d\xf4\x1b\xc8\x15\x6e\x6e\x04\x8a\x26\xe7\x90\x56\xdb\xc7\x9d\x39\x96\xd5\xea\x1d\xa1\x36\xff\x6f\xd5\x50\xc7\x47\x14\xe1\x63\xb3\x37\x5a\x8d\x2f\x7d\x8d\x43\xa3\xab\xfc\x8a\x14\x36\xf3\x19\xfe\xb3\x35\x9a\x71\x43\x43\x0f\x6c\xdb\x70\xca\x2f\xea\x29\x87\x35\xee\x26\x2a\x56\xb3\x69\x6e\xbb\xbf\xa6\xea\x1f\xd7\x47\xa4\x73\x11\x1a\xa3\x5a\xc5\x4d\x03\x5c\xcd\x65\xa2\x29\xc1\x7d\xfd\xa0\x6c\x1c\x7c\x96\x6f\xeb\x02\xa5\x49\x52\xbd\xa7\x35\x89\xdb\xba\x4a\xda\x9e\x28\xde\xdd\x2d\xe9\x7d\xb3\x0c\x2f\x16\x18\x9e\xe9\x3d\x18\x34\x59\x3c\xd5\x42\x42\x6b\x7e\x2d\xd0\x08\xc2\xa4\x9b\xa2\x1d\x08\x74\xc0\x15\x58\x0d\x3e\x51\xba\xab\x45\x66\x4d\x3e\xcc\x18\x94\xee\x46\xa8\xfd\x38\xb5\x32\x61\x0b\x02\x98\xf4\xb9\xe1\x89\x11\xf8\x2a\xde\x3d\x4c\xd3\xd6\x3a\x44\x57\x3e\x6c\xe7\x51\x07\x45\x6a\xc5\x32\xdf\x70\x7c\xe9\x9a\xef\xdb\x0c\x8a\x78\x65\x82\x5e\x02\xf3\x76\x53\xe9\x8b\x89\xfb\x60\xd1\x10\x0b\x8d\xb7\x27\xa8\x0a\x10\x9a\x18\x1c\x1f\x78\xbe\x27\xd4\x12\x1a\x67\x62\x20\xb9\xc9\x97\x87\x11\x8b\x67\x32\x3d\x69\xe9\xfb\xa1\x37\xea\xc0\x86\x99\x0d\xd3\x6e\x12\xbd\xea\xaa\xa6\xfc\x58\x02\xfd\x88\x6a\x68\x48\x9a\x26\x7c\x79\x18\xe5\xa0\x5b\xfa\x1b\xe0\xf8\xfe\xe1\xf7\xc3\x6e\x66\xbb\x69\x46\x35\xa4\x0d\x9a\x88\xdc\x58\xab\x43\x1c\x77\xd2\xe5\xa4\x48\x97\x13\x35\x20\x8d\xa1\x4b\x81\x76\xf8\x10\x6f\xff\xb4\x48\x65\x73\x49\x5e\x2b\x10\x9c\x55\x74\x35\x59\x12\xe5\x3d\x0b\x32\x24\xd8\xe2\x7b\xba\x3b\x73\x56\xd3\xff\xf3\x9a\xe6\x6d\xab\xc4\x88\xda\x99\x89\x92\xb0\x17\x71\x1e\x27\x8c\x7e\x6a\x03\x9e\xae\x45\xd7\xdb\xe4\xa5\x74\x25\xd7\x5a\x4d\x5c\x5c\x95\x3a\x97\x22\x46\xb1\xc5\xee\xea\x8d\xd1\x8e\x38\xfb\x0b\x2d\x3d\xaf\x85\xf0\x12\x5e\xeb\x21\xea\xc8\xe1\x47\x6f\xe1\xe2\x11\x77\xb2\xf9\x67\xd8\x90\x1e\xce\xb8\xae\x38\xb3\x76\x01\x8c\x8e\x1a\xe3\xe4\xea\x08\xdb\x07\x2d\x4b\xf4\x49\x76\xb5\xc8\x80\xa1\x85\x76\xac\xf4\xba\x7f\x8d\xd5\xcd\xeb\xb5\x72\xdb\x0b\xd6\xc6\x7c\x9b\x32\x7d\x4e\x5f\x26\xe3\xe7\x2a\x89\x5e\x58\x20\x2e\x0b\x86\xd5\x71\x89\x3f\x50\x98\xb8\xf3\xaa\x03\xd1\x36\x45\xd4\x4e\x0b\x0a\x58\x50\x6e\xdc\x0a\xaf\x8a\x28\xf1\x87\xa5\xef\x46\xdd\xf7\x51\x5f\x94\x85\x43\x4c\x70\x8a\x7a\x84\x72\x47\x2c\x0c\xe2\x78\xee\x9d\x6d\x3c\xa1\x8a\x29\x59\xda\xd1\x53\xcf\x37\x61\x82\xf8\xe4\x53\x71\xb0\x79\x1a\x47\x1d\x93\x09\x08\x0e\xbe\x9b\x17\x26\x9f\xd4\xcd\xec\xe4\xa2\xe7\x0d\xc7\x7f\xac\x54\x80\x9f\x63\x9f\x2a\x6b\xf3\xd2\xb0\x83\x9f\x19\x21\x36\xe4\x13\x95\x82\x0c\xd2\x34\x63\x64\x0e\xd7\xea\x69\x35\x48\xdd\xbe\x96\x34\x3e\x35\x1d\x09\x60\xb9\x3c\xae\x12\xad\x37\x15\x9e\x3c\x2f\xb2\xa8\x43\xca\x2b\x1e\x02\x82\x62\xa5\x6c\x28\x17\x16\x53\xc7\x15\x25\x68\x91\xa9\x3c\x5c\xfa\x0e\xf4\x61\x87\x79\xb2\xc9\xd2\x0a\xcd\x2f\x20\x5f\x6d\xb4\x94\x62\x21\xc6\x53\x45\x05\xd0\x6f\x8a\x93\x5e\x2f\xd5\x44\x49\xbc\x32\xa9\xd4\xb6\x4e\x96\x1e\xa6\x03\x05\x54\x01\xfa\xd0\x4e\x10\x92\xac\xcd\x89\xca\x73\x7b\x9b\xc3\xc4\xbe\x32\x88\x15\x61\x8d\x63\xa4\x70\x19\xf4\xb9\x9a\xc9\xc5\x2a\x55\xea\x0a\x73\xa6\x38\x51\xba\x20\x3e\x51\x95\xf9\x4e\x94\x33\x20\xff\xb9\xbd\x22\xa6\x80\x7d\x88\xac\xf3\x96\xd6\xec\x51\xf4\xbb\x66\x18\xa7\x94\x40\xc1\x4c\x00\x78\xce\xc4\x61\xf0\xcf\x97\x35\x26\x61\x9c\x65\x7d\x66\xa6\xfa\x6d\x33\x18\xa4\x51\xe2\xa8\x75\xf4\xf0\x00\x1f\x3b\x4b\xda\x36\x59\xda\xb7\x05\x7b\x5b\xdc\xc9\x61\x15\xff\x1c\xae\x23\x08\xea\x0f\x17\x16\x62\xfe\x88\xe0\xde\xf5\x9c\x65\x0d\x29\xc3\x92\x09\xc3\x88\x45\x39\x10\x22\xbf\xaf\xa8\xbd\xde\x2f\x3d\x1e\xd4\x3e\xad\x92\xb1\x5b\x1a\x92\x7d\xab\x9e\x3e\xcb\xd3\xae\xb2\xeb\x60\xfa\x31\xcd\x5e\x72\xa1\x8e\x24\x29\x49\x0b\xad\x12\x82\xb2\x03\x1f\x8f\xc1\x9a\xaa\xcc\xda\xb4\x3b\xc3\xb0\x60\xaf\x83\x3f\x3c\xa9\x7a\x86\x8f\x3d\xb2\xea\x77\xee\xe3\x84\xc3\x10\xe2\x4c\x95\x73\x47\x59\x1e\xf6\x54\x65\xfd\x64\xe0\x51\x6a\x27\xc7\x72\xbb\xe7\xf6\x12\x6d\x15\xfd\x22\xe2\xbe\xfb\x08\xc4\x94\x52\xf3\x68\xe1\x01\x11\xf9\xce\xd6\xe6\x6f\xda\x3f\xdb\xec\x58\x3b\xa0\x5f\x16\x7c\x7d\x75\x89\x02\xaf\xaf\x79\x69\x9d\x74\xd8\x76\x39\x2f\x17\x79\xb0\xbd\xa4\xe2\xe3\x87\xf3\xa2\x2a\xfd\x8f\xd3\x81\xa8\x52\xf3\x50\x96\x02\x16\x9c\x19\x15\x08\x78\x7c\x64\xd6\x3a\x8b\xda\xc3\x22\x45\x4d\x85\xd5\x6e\x15\x5e\xec\x3d\x8d\xdb\xfb\xc3\x5a\x74\xd3\x30\x89\x53\xb0\x34\x0b\xcc\xea\x64\xe0\xa7\x65\xc6\x25\xde\x28\x69\xce\xc2\x5e\x75\x7b\xd5\xf3\x94\x01\x6b\x45\xf3\x76\x49\xdd\x5e\x6c\xbb\x51\x1e\x1b\x27\x77\x8b\xaa\x19\x63\x1f\xf8\xc4\xed\xe3\x4e\x9a\xf5\x23\x52\x13\x68\x38\x2e\x0f\x8e\x10\x64\x48\xaa\x66\x57\xe5\xfd\x74\xd1\x61\x98\xa4\x78\xe2\x2d\xe6\x86\x22\xf8\xbf\xe2\x4a\x5c\x99\x0d\x0b\x93\x74\x87\xb1\xc9\x14\x9d\xe6\x0f\x55\x68\xf0\xc3\xf2\xb1\xcd\xcc\x95\xcd\xe9\x83\x9f\xa7\x00\x1e\x1c\x4d\xa7\x02\x17\xa1\xbc\x74\x18\xab\x0b\xa1\xf6\x11\x54\x73\xdd\xcc\xf7\x3e\x89\x70\xde\xe3\xbc\x06\x50\x8c\x35\xe4\x48\x8e\x9b\xac\xba\x7e\x21\xfa\xa5\x78\x03\x41\xfe\xe1\x40\x91\x56\x5f\x57\xee\x8a\x1b\x8f\x88\x77\x7e\x8a\x57\x8d\x35\xb0\x16\x78\x24\xe0\x5d\x0d\xcb\xb9\x41\x69\x29\xda\x28\x37\x29\xad\x11\x17\x49\x79\x9c\xb4\x88\x29\xf3\x75\xb4\x5e\xbe\xef\x70\x1f\xc6\x18\x3d\x41\xf0\x42\x22\xbe\xfd\x6b\x2a\x4c\x8b\x84\x54\xb5\x3d\x78\x52\x11\xd5\x6b\x19\x44\x97\xa7\xef\x04\x2d\x6c\x67\x5b\xf5\x0c\xf1\x25\x87\x35\x34\x85\xf5\xdd\xc9\xad\x3c\xfc\x59\x72\x54\xd8\x1a\x0f\xaf\xaa\x72\xc8\x25\x3d\x27\xe8\xdd\x6b\x95\x0b\x79\xa0\x1f\x6c\xe5\x1b\xca\x6e\xbe\x51\x3e\xe0\xdf\xea\x17\x94\x5a\xc5\xef\x53\x76\x29\x5c\x54\xf4\x4c\xb0\x8a\xae\x8c\x12\xc5\xd0\x03\xc2\x47\xde\xd3\x5c\xdc\xef\xe1\xc5\x21\x6f\xbc\x4e\x49\x33\xc2\xc9\x3f\xa6\x37\x82\x9a\xfc\xbb\xa5\x22\x3a\xfc\x00\x6b\xc5\x71\x95\xef\x9b\xe6\x12\xa8\x16\xa7\xbe\x42\xaf\x0a\x99\xe2\xb7\x50\xd1\x87\x6d\xd8\xda\xd2\x1c\xf3\x41\x95\x43\xe2\xf7\xd6\x29\xdf\x41\xbf\xeb\x1a\xd6\x26\x82\xe7\xc6\x6a\x95\x66\x23\xda\x5f\x0f\xb4\x84\x1c\xeb\x0e\x70\x60\xdb\x42\x06\xad\xc0\x58\xcf\xe8\xaa\xda\x0b\x92\x35\x07\x6a\xea\xff\x36\xad\x2e\x04\x96\x97\x90\x5b\x3b\x21\x2a\x27\xb7\x79\x98\xaa\xb2\x08\x38\xd7\x08\x6b\x22\x0d\xb2\x86\x63\xd9\x7f\x37\xf0\xc4\x22\x6f\xa8\x69\x9f\xb6\x49\x16\x73\xb0\x59\x4b\x2c\x5b\x3d\x56\xc4\xf5\xff\x17\xf6\x09\xc2\x86\xa3\x81\x9a\x63\x40\x73\x5f\x80\xae\x0d\x47\x93\xbd\x07\xd1\xbf\x28\x47\xaa\x81\xbe\x2b\xdc\x60\x83\x33\x7f\xa3\x54\xd2\xe2\x97\xd4\xf2\x3e\xac\x6a\x2f\x0b\x99\xb5\x9d\xb4\x9f\x8f\x08\xa2\xa9\x89\x56\xc5\xe1\x3b\x48\x0b\xc5\x72\x73\x4b\xa1\xec\x6f\x95\x23\x7a\xbc\x61\x9c\xe6\xb6\x03\xa2\x50\x99\x7d\xf2\xb3\x4e\x87\x35\x29\xca\x9f\x29\x55\x9b\x6d\xb4\x5d\xb0\x3c\x1b\x75\x8a\x34\xc3\x24\x8c\x2d\x5b\x3e\xd6\x24\x08\x1a\x4a\x9f\x60\x8f\xab\x04\x9a\x6e\x97\x12\x14\x58\x57\xc1\xfb\xf8\x24\x14\xb2\xee\xb0\x34\x1b\x2a\x55\x59\x36\x71\x65\x94\x1f\xa8\xfe\xd5\xd1\x27\xee\x17\x27\xff\x03\x0d\x1f\xbb\x18\xf8\x06\x22\xfb\x11\x16\x83\x85\x09\x10\x65\x58\xda\x27\x02\x49\xa9\xde\x01\x1e\xd9\x9f\xc0\xc4\xc0\x24\xdf\xa4\x2d\xc7\x3f\xa2\x9e\x78\xd4\xee\xa3\xc1\x0f\xfb\xfc\x21\xbe\x99\x4f\x14\xe1\xd4\x07\x58\x36\x7c\x32\x06\x65\x9b\xdf\x4b\x90\xb1\xce\x04\x5d\x8b\x52\xe8\x10\xee\x56\x9e\xe3\x96\xbd\xa1\xd4\xd9\xb3\x28\xb4\xf9\x63\xb4\x11\x1d\xb4\xb9\xba\x6e\x98\xf2\x6b\xb4\x73\x30\x45\xf4\x7f\x97\x8a\x6d\x1a\x75\x0b\x21\xd9\xa6\x2f\x47\x2a\xf4\x53\xec\x2f\x94\xe4\x98\x09\x42\x77\xef\x11\xe1\xa3\x6e\x37\x82\x06\x41\xe2\x08\xdc\xa3\x93\xd2\xab\x36\x3e\x5f\x16\xec\x11\x4f\xfc\x05\xca\x29\x4d\x51\x64\x26\x40\x3c\xda\x84\xb8\xe0\xad\x6a\x4a\xf1\x10\x36\xa1\x48\x1b\x79\x98\xc5\xb2\x09\x7b\x85\x8d\x91\x06\x28\x9b\x2a\x9a\xa0\x57\x6a\x48\x3c\x0e\x34\x4d\x1c\x2d\xda\x49\x25\xe3\x7a\x8a\xde\x3c\x1c\xe3\x64\xcb\x7b\xf6\xb3\x9a\xc1\x4a\x33\xcc\x24\x5d\xd3\x45\xac\x32\xcf\xa6\xed\x0a\x4c\x16\x9f\xd4\xb0\xa9\x1f\xa0\xad\x97\x2e\x59\x07\x21\x91\xbe\x9f\xa2\x17\xfa\x1d\xd5\x68\x37\x59\xf4\x6a\x9a\x18\x78\x1b\x21\xe3\x56\x04\x39\xa3\x5a\x17\x0b\x21\x67\xfb\x12\xf6\xeb\x31\xd8\x9a\x8e\x7c\xdb\xf6\xa2\xa4\x33\xe1\x31\xfc\xb7\x15\x99\x2c\x98\xbb\x10\xac\x4d\xb6\x3c\x10\x24\x49\xb3\xbe\x89\x77\x78\x35\x31\x66\x98\x11\x91\xcd\x6a\x55\xc1\x01\x9d\x28\xbd\x3e\xc6\xc3\xb4\x9b\xe1\x8b\x26\x08\x75\x8d\x65\x74\x06\x35\x7a\x37\x37\xe8\xf8\x8d\xb6\xb4\xfc\x96\xef\xa7\xc4\x22\xb3\xcb\x03\x94\x8f\x2b\x6a\x6a\x6e\x06\x38\x1a\x13\xdd\x98\x51\xda\x54\xac\xe0\xe5\xf8\x3a\xe6\x45\x0c\x13\x06\xca\x71\xea\x54\x6f\x85\x31\xd9\x2d\x3f\x1b\x78\x9a\x9e\x06\x7f\xa0\xdc\xa3\x9a\xd2\x85\x8d\xf2\x9e\x20\x32\x44\xd8\x53\x75\xbd\x5f\x53\xe5\x8e\x41\x94\xe4\x8a\x01\xf5\x96\x62\x40\xbd\x55\x57\x9f\x6c\xe6\x89\x19\x8c\xc0\x63\x6f\x92\xff\x12\x7e\x6e\x1d\xf9\x2b\x16\xfe\x61\x6e\x3b\xbb\xfc\xe0\x09\xc0\xec\xbc\xb9\xb1\xef\x90\xc7\x7e\xa0\xe6\xdc\x20\xa9\x86\x70\xe9\x0a\xbe\x18\xeb\x9f\xf5\x85\x11\x22\xb0\x6e\x35\x56\xc5\x35\x85\x90\x39\x5b\x7a\x44\xcd\xd9\x40\x95\x9f\xaf\xd7\xb5\x9a\x4d\x0c\x1a\x70\x6c\xf9\x3b\x6a\xf4\xe6\x52\xe9\xa1\x35\x53\x60\x96\x40\x8e\x01\xde\x16\x74\x97\x4e\x2b\x84\xd1\x42\x14\xdb\xce\xce\xea\x43\xf0\xbc\x9c\x64\x02\x4a\xf1\xbe\x1a\x78\xbb\xb8\x89\x20\xcd\x4b\xb7\x96\x0a\xd4\xb4\x11\x8c\xaa\x20\xe3\xb5\x72\x3c\x16\x28\xa7\xbe\x3e\x56\x57\xdd\x3f\xdb\xb4\xc3\x2c\x1d\x58\x93\x4c\x8c\xa2\x99\x1c\x34\x8a\xe5\x76\xe0\x4b\xdf\x54\x42\x70\x5d\x93\x75\xa4\x6a\x8e\x38\xe1\xae\xae\x4e\x31\x4e\x0f\xc6\x7f\x5b\xcb\xe3\x43\x06\xc3\xbc\xb7\x9d\x8c\x8e\x2b\x07\x56\xe6\x48\xca\x81\x7e\x9c\xbd\xd1\xaa\x9e\x31\xd6\xf2\x6e\x00\x5e\x5c\xd7\x6e\x7e\xce\xfb\x38\x4f\x36\x50\x67\x30\x32\xcf\xb6\xa6\x99\x54\xa5\x0d\xb0\xcb\x15\x59\xf3\xf4\xc1\xea\xf7\xf0\x14\xbf\x00\x0a\x4a\x01\x57\x57\x8b\x11\x46\x69\xdb\xaa\xaa\x84\x5e\x53\xf4\x2d\x0f\x90\x85\x90\x2b\xa7\x5b\x82\x43\x39\x0e\xd7\xe6\x94\xae\x3c\x41\xff\x76\xea\xef\x51\x20\x78\xa0\x49\xc6\x86\x5a\xf5\x7b\x1f\x5d\x55\xd6\x61\x5d\x6d\x92\xd8\xb4\x31\xb3\x8d\x88\x15\xf8\x3b\x3e\x1e\x9b\x3c\x9c\x3e\xd8\x8c\x4d\xb8\x18\x0f\x73\x19\xc1\x81\x77\x5d\x57\xb2\xbf\x67\x11\x47\xc0\x73\x9d\xd9\xcc\x04\xfa\xfc\x5c\x65\xff\x77\xd0\x0d\xc3\xd6\xa0\x46\x26\x1c\x9a\x8d\xfd\xb3\x1b\x6b\x7a\xd4\x16\xe2\x05\x1b\xc0\xef\xc2\x20\x7d\x47\x71\xdb\x31\xda\x1e\x7d\xd3\x9b\x6a\x6c\xbc\x3d\x2c\x0a\x9b\x21\xed\x76\xd5\x23\x87\xd5\x3e\xac\xf0\xd9\x6d\x93\x00\x67\x8b\xe6\x05\x7a\x2c\x7c\xac\xfc\x6b\xd1\xb3\x99\x8d\x12\xf8\x57\x56\x1f\x0a\x54\x01\xec\x9c\x22\x18\xcc\xac\x89\xe3\x15\xc2\x11\x23\x58\x7f\x08\xb8\x24\x34\xc1\x8f\xaa\xd9\xc9\xfb\xb8\x7e\x94\x18\xaf\xe0\x4d\xc2\x12\xfd\x9f\x8a\x3f\x7a\x52\xcb\xa7\xed\x54\x0a\xa0\xc7\xf1\xa8\xe0\x05\xff\x5c\x99\xd8\x15\x6b\xb2\x27\xaa\xd5\x83\xf8\xe5\x06\x22\x10\x3c\xa6\xcb\xd4\x14\x74\xb8\x8a\x6a\x25\x31\xae\x2a\xf0\xf4\x48\xaf\xe1\x35\xa2\x5d\xf5\x7f\xa8\x01\x10\x2e\xf5\x23\x42\xd8\x8d\x35\x8d\xcb\x5f\xc3\xf6\x44\xf2\x8b\xab\xc4\x0a\xe5\xba\x3f\x5c\xe3\x14\x56\x3b\x3e\xbf\x95\xda\xc6\x92\x5e\x38\xbd\xd6\x7f\xff\x48\xab\xca\xd3\x64\xa2\x4e\xeb\x04\x6c\x5d\xf5\xf0\xfe\xa3\xc1\x48\xcd\x47\xc3\x45\x90\x50\x48\x55\x78\xd3\x22\x7c\x6e\xef\x5c\x73\xdf\xf4\x76\x15\xfc\x5e\x45\x5a\xc9\x99\x15\x3d\x79\x84\x3a\x3f\x26\xa3\xec\x32\x2e\xcf\x0a\xf4\x07\x7a\xee\x7a\x72\x55\x43\x7f\xd7\x15\xbb\x08\xad\x42\x93\x84\x36\x27\x52\x6a\x6c\x91\x2d\xab\x3e\x6d\x81\x21\xe0\x63\xf0\x61\xf2\x1f\xb5\x6a\x68\x93\xf3\xc2\x64\x0e\xef\x29\x96\x8b\x1e\x82\x98\x2b\xc9\x2c\xda\x51\x1a\xf6\x6c\x3f\xca\x8b\x11\x60\x2f\xae\xf3\xd3\xa0\xbd\x44\x4d\x18\xdb\xa4\xc3\xd3\x1d\x42\x70\xdc\x70\xdc\xf4\xe3\x64\x4b\x95\x7f\x5e\xa0\xf6\xa1\x57\xcf\x0a\xd4\x5c\x4d\xed\x8f\xf4\x0c\x94\x0f\x68\xc1\x30\xa0\x2a\xf0\xa1\xd1\x85\x31\xcb\x23\x6d\x08\x93\x2f\xda\xce\x94\x0a\x13\x19\xb6\xc8\x83\xa9\x64\x25\x46\x9a\x6b\xb4\x33\x7e\xe3\x31\x35\x0b\xfe\x6f\x9c\xc3\x31\x0b\x85\xcd\x96\x4d\xd6\x21\xec\x19\x5a\x26\xd0\xbb\x45\x35\xfa\xae\x2a\xc0\x70\x70\x0f\xcf\xfb\xf3\xfa\x9e\xa8\xe9\x44\x3c\xc7\xc8\x81\x9c\x72\x0b\x1e\xfc\x65\x97\x6c\x16\x9b\xdc\x97\x4f\xb0\x64\xd1\x74\xe3\x63\x25\x69\x3e\xc8\xd2\x5e\xd4\x06\x63\x58\xb5\x46\xb1\x23\x4f\xd3\x66\xe1\x63\x85\x4f\x1e\x98\x70\xd1\x66\x93\xd5\x3f\xca\x74\xab\x2a\x54\x03\xc8\xc3\xc7\x70\xc2\x32\xf7\xea\xc7\xa3\xd2\x76\x1c\x75\x49\x73\x74\x42\x4d\xa9\x62\x2a\x8b\x2b\x27\xd8\x77\xb0\x91\xe3\x3d\x9d\xf9\xbd\xcd\x41\x6c\xba\x43\xac\xd3\x17\x74\xbf\xcf\x0d\x97\x8c\x95\xbd\x9f\x6a\x2e\x0c\x93\x6e\xd4\x50\xd2\xc3\xa0\x4f\xe7\x63\x95\xb7\x47\x49\x68\x13\x92\xc2\xa5\x3f\x86\x7f\x44\x35\x87\x8f\x55\xea\x10\x25\xf9\x30\x8e\x20\x8c\xcf\x83\xd9\x40\x8b\x20\x82\x3e\xad\x1a\xe5\xf7\xea\x00\x4c\x85\xad\x76\xd0\x73\x7b\xfd\x18\xbb\xeb\x92\x8f\xd3\x78\x90\x54\x74\x16\xf9\x6a\x29\xc6\x07\xae\x96\x7e\x7c\x00\x37\x25\x71\x59\x1d\xe1\xb2\xe4\x46\xdc\xd1\x71\x04\xb5\x8a\x16\x44\xb5\xc4\x5e\xb2\x26\x4e\x87\xf9\x0a\x96\x92\x53\xde\x74\x41\xe2\x79\x37\xbe\xb1\x80\xb9\x0a\xaf\xe2\x08\xb1\x7e\x59\x19\x1e\x4d\x50\xdd\xc2\x00\xdf\xa7\xc5\x02\xf9\x58\x31\xe5\x89\x7e\x34\xfa\xab\x7e\x10\x1b\x30\x78\x3e\x56\x2d\x86\x2c\x8d\x63\xdb\x99\x54\x46\xfb\x18\xbc\x0c\x62\xc9\x8f\xe1\x8b\xf8\xa4\x54\xc5\xfd\x63\xea\x85\x2e\x45\x4b\x11\x0d\xf0\x7e\x65\xda\x6b\xd7\x79\x80\xc3\x25\x47\x6a\xde\xb1\x79\x91\xfd\x7f\x8c\xfd\x7b\x8c\x24\xd9\x75\x26\x86\x77\x67\x55\x75\xf7\x0c\x67\x86\x3d\x2f\x92\x92\x7e\xd8\x4d\xed\xf2\x67\xda\xd8\x59\x1a\xfe\x67\x61\xf3\x9f\xc8\xad\x2a\x8a\xec\xb2\x58\x6c\xf4\xb4\x7a\xa4\x81\xbd\x98\x5b\x91\x37\x33\x63\x2a\x32\x22\x19\x8f\xaa\xa9\x81\x0d\x18\x32\x6c\x18\x82\x60\x40\x30\xbc\x02\xd6\xeb\x85\x2c\xaf\x29\x79\xd7\xf6\xae\x1e\xab\xdd\x95\xa8\xcd\x14\x49\x71\x28\x3e\xe7\x41\xce\x70\x5e\x3d\xfd\x7e\x77\x57\xbf\xdf\x5d\x6d\xc4\xf9\xce\xb9\xf7\x64\x45\x8c\x57\xff\x0c\x22\xa6\x2b\x33\x23\xee\xe3\xdc\xf3\xf8\xce\xf7\xa5\x1b\x78\x63\xa7\x13\xa7\x8c\x94\xa2\x3b\x06\x47\x50\x35\xc2\x88\x56\xce\x69\x07\x0b\xfe\x20\x96\xfe\xc9\x69\xe1\xb4\x5e\xef\x49\x55\xb6\xbc\x45\x2f\xb0\x75\x37\x50\x30\x43\x1c\xb6\xf0\xaa\xbf\x0d\xb7\x14\x86\x6b\x0b\x21\x9f\xf0\xb7\xc3\xdf\x9e\xa2\x76\x17\x7a\x2e\x25\x63\x78\x8d\x0c\x1c\xce\xac\x0f\x95\x2c\xe1\x9e\x09\x9d\x1c\xa2\x8f\x53\xbd\x25\x9c\xf5\x99\x8e\x22\xae\x79\xb4\xa3\x78\xf7\x8e\xe8\x10\xf1\xb0\x72\x36\x3e\x51\x83\x49\xbd\xf4\x52\x7b\x90\xa6\xdd\x75\x12\xf7\x9e\x51\x13\x0d\x72\x3a\x25\x10\x2a\x4c\xc9\x57\x95\x13\x3c\xff\x45\xcc\xb8\x8b\x90\x0e\xcd\x3b\xf6\x25\x85\x06\xfc\x50\x47\x2c\x67\x9a\x76\xc6\xf3\xed\xae\x1d\x95\x45\x64\x73\x0e\x33\x31\x90\x23\x18\x32\xbe\x69\x54\xa4\xe9\xc5\xa2\xcf\xcd\x82\x45\x81\x7a\xf7\x53\xe3\xff\xa0\xa1\xa1\x32\x2d\x93\xc2\x66\x99\x5d\x4b\x63\xd2\x9f\x17\x1e\x7d\x8c\x3d\x78\xc9\xf9\xba\xb1\x75\x67\x63\x05\x6a\x49\x32\xa3\x5e\x11\x1f\x59\x15\xcd\x51\x2c\xbc\xec\xf5\x7e\xf5\xe5\x76\x1c\xad\xd8\xcc\xc4\xad\x69\x7e\x6a\x17\x79\x5c\xd4\xb8\x17\xe4\x07\x72\x25\x4a\x76\x5b\xb1\x92\xde\x56\xe8\x8f\xaf\xfc\xfd\x65\x15\x64\x5d\xc7\x08\xb2\x62\x9b\xaa\x36\xde\x55\xad\x9c\xf6\x15\xee\x81\xdf\xad\xe8\x22\x2e\xea\x94\xd7\x09\x9a\x5a\xf8\xb5\x60\x59\x72\x14\xca\xee\xa7\x2e\x07\x0a\xb9\xfe\x40\x29\x79\xde\x72\x78\x67\xb3\x92\x13\x99\xd5\x8c\xf7\x07\xde\x55\xfd\x7e\x50\x1a\x17\xca\x2e\x77\xa8\xbe\x62\xb3\x30\xca\xcd\x4a\xcc\xdd\xc7\x48\x27\xdc\x54\x1f\xc4\x62\x45\x1d\xfd\xb8\xcb\xc0\x66\xb6\x88\x32\xea\x51\x9d\xf1\xdb\xe9\xba\x02\x89\x33\x6e\x0b\x0f\xf2\x30\xf8\xb4\x16\xdb\x8e\x4d\xe5\xdd\x11\x7b\x26\x33\x84\x08\x30\x5e\x03\x38\x03\x0f\xb6\xe0\x72\x0a\xff\x95\xb2\x40\xc4\x7a\x84\x3c\x34\x7e\x16\x07\x0d\xc7\xdf\x81\xaa\x30\xc1\xb8\x63\x34\x7f\x77\xac\x30\x5f\x17\x6a\xed\x52\x8b\x07\xdb\x83\x34\x63\xbe\x39\xfc\xfe\x1d\x18\x36\xfc\xc6\x59\xc5\xae\x38\x53\x03\xa1\x89\xcb\xb5\x66\xe2\xd2\xaa\xae\x0e\xa6\x3b\xe6\x9b\xe0\xd3\xee\x1d\xbe\x56\x46\x49\x51\x2d\x91\xa4\x20\xc9\x28\x57\xc1\xd9\x49\x51\x37\x5f\x4f\x1e\x57\x29\xcb\x78\x95\xd2\x6e\xf0\x78\x67\x27\x9e\x57\xe2\x01\xf9\x37\xcc\x82\xee\x38\x26\x8a\x41\x4a\x52\xef\x2b\x99\xed\xce\x29\x88\x5a\xa0\x40\xe9\x77\x30\x58\x08\x61\x77\x4f\x94\x37\x17\xa8\x04\xf5\xd5\x26\x59\x93\xcf\xb6\x4d\x12\x0d\x39\xb2\xc7\xf1\x09\xca\x6f\xbe\x9e\xf8\x5c\x5c\x6c\x57\x4c\x92\x26\xb4\x66\x60\xa7\xaf\x05\xbe\xdb\xe4\xdd\xb1\x82\x9d\x9e\x53\xbe\xd5\xc0\x9a\xb8\x18\x74\x37\xc0\xdf\xa5\x64\xe6\x7d\x37\x50\x53\x9b\x4c\x3a\x5c\xd1\xed\x9d\xa7\xb5\x40\xcb\x69\xd5\x6a\x67\x42\xb2\x5b\x44\xa8\x8d\x7c\x00\x37\xb5\x39\xa7\xf1\xc0\x3c\x07\x81\x47\xe9\x71\x91\x87\xbf\x83\xef\xc3\x2c\xfc\x21\xed\x62\x38\x52\x6f\x28\x39\xef\xcb\x81\x87\x69\x70\x5b\x81\xb8\x9f\x02\xa5\x89\xd3\xc4\xce\xfa\x52\x3f\x12\x9f\x2c\xbe\x38\x9e\x42\x9d\x57\x3f\x87\x7d\x7f\xad\xb6\x6a\x0f\x7e\xb5\x9d\xc7\x51\x17\x4c\x40\xa2\xc5\xad\xd5\xf2\x7c\x4b\xdb\xc8\x14\x59\x9a\x70\x37\x8c\x2b\x94\x57\x03\x25\x85\x72\xef\x19\xf7\x2b\x9f\x2a\x51\xe4\x3f\x87\xc7\xbe\xad\x01\xf6\x19\x91\xdd\x75\xc5\x82\xf2\x39\x3b\x9c\xad\x22\x51\xf1\x65\xaa\x4f\x20\x69\xc8\xa8\x6a\x80\x14\x40\x38\x8c\xa3\xef\x94\x72\xce\x06\x69\x3e\x8a\x0a\x13\xef\xd6\x08\x17\x3f\xd7\x0f\xe0\xe3\xc0\x96\x7d\x6b\xac\xe4\xed\x91\x50\xc1\x52\xe5\x96\x0b\xd8\xfb\x07\xf0\x06\xd8\x97\x6c\x08\x43\x9e\x27\x70\x84\x68\xb3\xb8\xda\xd3\x3e\xad\x8d\xcd\x7e\xbe\x59\x25\xf4\x86\x6a\x8e\x15\xf2\xae\x53\x94\x08\x10\xda\x55\xdf\x74\x73\x41\x39\x7f\xd4\xa0\xc0\xd4\x94\xbb\x54\xde\xe2\x0e\xa1\x97\x75\xcb\x02\x9c\x8f\x1f\xd2\x93\x03\x8e\xc9\xf9\x06\xe6\x66\x16\xac\x7c\x93\xca\x4c\x9c\x86\x78\x13\xd7\x2f\xef\xf4\xf1\x36\xa7\x92\xfe\x89\xed\x7e\x9a\x86\x06\xd1\x1f\x7f\xb5\xf4\xf9\xb4\x5e\x10\x6a\xc8\x02\xce\x19\x52\xc2\x9f\x24\x8b\x83\x65\xfc\x78\x47\xd9\xec\x67\x91\x6d\x43\x76\x6b\x17\x83\x23\x11\x63\x32\x86\x1b\xa3\xf9\x04\x92\x19\x58\x50\xdf\x21\x57\x0f\x49\xe9\x37\x03\xcf\xce\x0b\x92\x6b\x6c\xbb\x3b\x28\x15\xc3\x4c\xdc\x43\xd6\x01\xcb\x0e\x2c\xe4\xf0\x62\x9e\xed\x28\x6d\x9f\x63\x63\xd5\x71\xf1\x7d\x15\x4a\xec\x9e\x50\xa1\xda\x51\x01\x2c\x2c\xfa\x95\x2d\x59\xc7\x5f\x7b\x76\x42\xa6\x48\x9a\xb0\xbd\xad\xb0\x49\x2f\xb2\x31\x87\x68\x30\x16\xd8\xe2\x7c\x5d\x83\x70\x01\xcc\x42\xf8\xbb\xa8\x17\x31\x2e\x19\x7e\x02\x27\x62\xf8\x46\x67\x17\x23\xa6\xf6\x90\x82\xaa\xc7\x3f\xfe\x55\xa0\xfb\x61\xbd\x89\x8c\x92\x35\x93\x45\x66\x45\xb0\x7b\xac\x23\xa3\xda\xc0\xce\x2b\x50\x96\x19\x3e\xa2\xfc\xd1\x2b\x88\x92\x1c\xb3\xa8\x4b\xb1\xbe\x49\xfb\x1b\x05\x7a\xc8\xeb\xc1\xd7\xbd\x31\x56\x42\xe6\xf7\x54\xdd\x05\x5a\x32\x52\xe8\xa0\x85\xc5\xc2\x0c\x35\x84\xe4\xd2\x52\xbb\x6f\x62\x20\x8c\x60\xd5\x81\x11\x01\x1f\x04\x5f\xab\x44\xe2\xd0\x64\xab\xb6\xa0\x2a\xbb\x30\xae\xee\x9c\xd0\x72\x13\xf1\xd1\x6a\xe9\x20\xb8\x3e\xa3\x1e\xe9\x75\xa5\xd0\xca\x42\x1c\xfc\xe9\x8e\x6a\x3f\xf9\xc3\xc0\x47\x08\x77\xe8\x25\x38\x8c\xd0\xf8\x8a\xb7\x61\x45\x10\xeb\xd4\x63\xf1\x43\xf3\x95\x2f\x69\x67\x3d\x46\x80\x79\x81\xb1\x9e\xc1\x5a\x07\x9f\xef\x2e\x02\x38\xae\x9b\x35\xe9\x04\xb4\xf3\x22\x65\x7c\x1d\x7e\xfc\xa6\x7e\x92\x9b\x0a\x9c\xb8\x66\x07\x51\x18\xdb\x7c\x4e\x2d\xa6\xdb\x1a\xfc\x71\x1a\xc7\x0e\x12\x81\x20\x93\x71\xea\x8f\xbf\xf4\x82\x63\x24\x7b\x46\x91\x7b\x17\xd5\x6a\x4d\x13\x38\xd0\x8e\xa7\x50\xd5\xf7\x4e\xd7\xb0\x7b\x87\xe6\xf7\xb7\xcd\x68\x94\xa5\xa3\x2c\x32\x05\x3c\x1f\x7c\xf5\xef\xd3\x0c\xf0\x75\x13\x0d\xcb\x20\x1d\x8a\x4c\x83\x8e\xd1\xf8\xba\x96\x2e\x38\x30\x7f\x40\xba\xe3\x5b\x0a\x75\xca\x39\x59\xa1\x51\x53\xbb\xc9\xf6\x8a\x3d\xea\x0f\xdf\x0f\x7c\x62\xe2\x4a\xa0\x8a\x7c\xfb\x15\x7e\xf6\xdd\xc0\x7b\x30\xe0\xf3\x67\x0a\xc8\xc0\x97\x9e\x5a\x04\xf2\xe6\x9a\xb2\x6a\x21\x2d\x06\x36\x0d\x33\x13\x6e\x68\x8a\x63\xe0\x51\xf9\xba\x46\x2a\xb0\xbc\xdc\xce\xcb\x91\xcd\xd6\xa2\xdc\xed\x87\x26\xa4\xbf\x44\xe9\x65\x12\x5b\x93\x0f\x66\x55\x52\x78\x0b\x69\x50\x66\x2f\x19\x7b\x54\xd1\x09\xdd\x8b\xae\x68\x20\x6d\x1c\xd9\x56\xb5\x02\xb8\x7f\x26\xf0\x54\x16\x67\x54\xa9\x3a\x4b\xf3\x3c\x4a\x22\xe2\x5f\x84\xcd\x45\x73\xaa\xe8\xe3\x56\x9f\xe2\xff\x4f\xa6\x83\xff\x7f\xa0\xd7\x53\xdf\x26\x51\x5a\xe6\x95\x71\xf2\x5c\x12\x47\xd4\x11\x79\x64\xea\x54\x4a\xb9\xc5\x1a\x11\xde\x2e\x98\x75\x27\x84\xe4\x1c\xd8\xb3\x98\x3c\x61\x01\x56\xbc\x3b\x97\x54\x6e\x0f\x32\x80\xa4\xbd\x2f\xfb\xc1\x13\x0c\x9f\x86\xcb\xe9\xba\x13\xaa\xaf\x80\xb9\x84\x84\xbb\x00\xd0\xbd\x1d\xaa\xbe\x8d\xb3\x4c\x3e\x14\x9e\x0a\x92\xeb\x60\xed\x76\x6e\xa3\x57\x4b\x6e\xfc\x70\xa3\xbd\xb4\xe4\x46\xbb\x41\x2d\x75\x98\x26\x16\xb1\x33\x10\x01\x3f\x80\xb7\xce\x37\x4d\x54\x90\x5d\x1b\x47\x6b\x36\x9b\xf1\xc2\xed\xa0\xc6\x86\x0b\x84\x89\x92\x74\x5c\x43\xf2\x31\x36\x65\x7f\xc0\xa4\xc5\xaa\x44\xe6\x74\xd6\x6b\xef\xb5\xb0\xd0\xe6\x84\x2c\xb2\x76\x38\xaa\x1f\x2a\xdc\xf5\x23\xaa\x6e\x7f\x6d\x8a\x5a\x73\x38\x32\x99\x45\xc8\x8d\x80\xe8\xb2\x42\x77\x5e\x56\xc3\x1d\xdb\xa2\x60\x1a\x8c\xfd\x5b\x97\x61\xc9\xe0\x7c\x5e\xa7\xb4\x10\xca\x5e\x8b\xf2\xff\x1c\xc2\xbc\x6b\x93\x48\xd0\xdd\x30\x59\x7b\x3a\x8a\x31\x6d\xcf\xc4\x7b\xab\x69\x6e\xf7\x56\xab\xc3\xe5\x16\x16\x16\x1d\xa6\x8a\x66\x19\x03\xf0\x09\x0a\xc7\xb8\xac\x3d\x51\x30\xae\x77\xe9\xe4\x71\x4c\xf0\xd5\xd3\xe0\x3d\x1e\x41\x99\x07\xde\xd4\x0c\x17\x3b\x80\x24\xe3\xa5\x46\x47\xd4\xcc\xde\x09\x8d\x9f\xc8\x94\x57\x13\x00\xaf\xe5\xe9\x8e\x5b\xa9\x8f\x3f\xa3\xe2\xf0\x59\xb4\x20\xd2\x5a\xf8\xe5\x27\x27\xfe\xb0\x7b\xaa\xf3\x98\x12\x03\xc9\x3f\x53\xbd\x8a\x88\x37\xd0\x83\x49\x43\x61\xe5\xd9\xa1\x7a\x82\x28\x0a\x51\xe6\x53\x18\x22\x1c\x7d\xff\x8a\xab\x1e\x88\x4a\x5a\x13\xa4\xda\xf0\x6d\x57\x90\x8f\x80\xd9\xbc\x89\x6a\x1a\x06\xe0\x2e\x2d\x33\x9c\xb0\xbb\x27\xbe\x87\x8f\x5f\x18\xbf\xb3\x1b\x7d\x2b\xf0\x13\x5a\x13\x8f\xaa\xdf\x81\x13\xdd\xa9\xb7\x78\xf5\xa9\x9d\x9d\x6a\x8a\x5c\x2d\xad\xb2\x74\xf0\x39\x5b\x20\xb6\x84\x19\xd9\x85\x91\x04\x68\xab\xa5\x4a\xa4\x87\xc9\xc9\x14\xb6\x03\x9f\x55\x3a\x4c\xfd\x6d\x42\x68\xf7\xb8\xca\x52\x8c\x36\x66\xbd\x01\x78\x1d\xe7\xb5\x00\x08\x7c\x2c\xb2\x43\xe3\x1b\xae\x6c\xaf\x98\x2d\x2f\xb7\x97\x96\x9e\x57\x02\x8e\x1f\x20\xcc\xe2\xc2\x23\x1c\x24\xa7\x67\xeb\x62\x21\xce\xf9\x23\xb0\xe4\x35\x8f\xcd\xf5\xe1\x58\xe9\x00\x7d\x63\xec\x6b\x7a\x40\xd6\x22\xf4\xf8\x4e\xa0\x9c\x53\xf0\xe9\x8a\x4d\xa6\x01\x85\x6f\x77\x6e\x4a\x0f\xa0\x6f\xbb\x4f\xd0\x38\xc2\x5b\x67\xe7\x59\xf4\x82\x94\xc2\x11\x08\x47\x60\x5e\xd0\xbd\x8a\x45\x30\x33\xf1\x6d\xd6\x97\x88\x91\x54\x0e\x62\x32\xb0\x0e\xdf\xe3\xda\x68\xaf\x68\x95\x81\x19\x02\x99\x00\xcc\x8b\x60\x85\xa5\x9b\x91\xfa\x45\x88\x04\xa1\x1e\x0c\xd7\x5d\x4d\x26\x6e\x60\xf3\x1c\x51\xb9\xdb\x27\x9c\x37\x92\x86\x10\x7f\xa6\xad\x5b\xd0\xa3\xab\x09\x40\x01\x5b\xe0\x9b\x0d\xa2\x4a\x2b\x51\x21\xe5\x7b\x4c\x13\x68\xd2\x34\x7c\x13\x2f\x73\xca\xa5\xd7\xa2\x24\x1f\x59\xc4\x7a\x2d\x25\xa4\xf5\xa1\xc2\x0c\x7d\x38\x95\x19\xef\x1a\x94\x5c\x60\x0a\xee\xab\x4a\x0e\xdb\x62\x98\xff\x33\x4a\xc1\xa9\x8a\x25\x49\x73\xc7\x43\xcb\x6f\x2a\x92\xc3\x9b\x2a\xcf\x31\xca\xa2\xb5\xca\x2b\xa9\xfe\x95\xbb\x73\xe8\x17\xa4\x53\x67\xaf\xd2\x6e\xcf\xf3\xc8\xa0\xad\x01\xe6\x8b\xa9\x73\xf9\xa6\xf3\xac\xee\x8d\x49\x57\x6c\x37\xb2\x49\x68\x67\x69\x5b\x33\x2f\x90\xa6\x88\xde\x54\xd2\x20\x80\x86\x09\x79\x50\x03\x4d\x52\x5e\x18\x35\x64\xae\x21\xc5\x37\xa7\x4c\xcb\x3d\xa7\x65\x0e\xc8\x3f\xd2\x24\x24\x93\xe0\x6e\x26\x7b\x95\x17\x42\xbc\x30\x2d\xc4\xd3\x80\x4c\x34\x31\xca\x17\x51\x61\x92\xa8\x1c\x2a\x69\xe6\x63\x81\x4f\x1e\x1e\x53\xb8\x5f\xbb\x66\xba\x9c\x92\x62\x34\x5b\xe0\x75\x29\x8e\xd6\x0e\xd9\xe7\xda\x79\x6c\xad\x0f\x78\x04\xa8\x59\xfd\x10\x5f\x07\x0d\xf4\x57\xb6\xdf\x6f\xa9\xfe\xa2\x4b\x4a\x33\xe2\x92\x92\xb8\x1b\x99\x0d\xe2\x0c\x44\x84\x84\x38\x03\x59\x4f\x80\x37\x80\x51\x61\xac\x0e\xed\x62\xec\xb1\xd9\x89\x67\xef\xbf\xa1\x40\x3f\x5c\x03\xe1\x2f\x82\xe9\x80\x61\xc6\xaa\x41\x97\x04\x6b\x97\xf3\x57\xe1\xfc\xe0\xfe\x80\x1a\x84\x71\xdf\x72\x3b\x5d\xb3\x59\x2f\x4e\xd7\xdd\x18\x88\x12\x9f\x77\x8e\x4f\x4f\x19\x26\x33\xcc\x09\x2d\x88\x5f\x3b\xcb\xa0\x06\x51\xd9\xf0\x98\xe9\x19\x84\x76\xc2\x98\x4f\x63\x00\xd3\x78\x7d\xac\x3a\xfc\xf7\xe0\xe4\x81\xbf\x77\x5f\xe5\xec\x2f\xb9\x4d\x4b\xd4\x15\xfd\x2c\x2d\x93\xee\xac\x37\xb0\x57\x55\x7f\xda\x49\x44\x1a\x1a\x27\x09\x8b\x7c\x53\x25\xce\x56\xd2\x24\x89\xec\x8c\xea\x77\x65\xca\x3d\x47\x1c\xe5\x5a\x3a\xfe\xed\xd4\x1b\xc7\xb6\x78\x82\x1e\xd2\x19\xed\xfd\x5f\x75\xbd\x63\x48\x9c\x20\x0f\x04\x04\x9d\x34\xd1\x28\x6a\x66\x4e\x4c\xe2\x40\x7e\x04\xc4\x6c\x5c\x37\xc3\xcb\x3c\x82\x79\xc2\x99\x74\x46\x81\x96\xef\x8f\x3d\x8e\xef\x08\x39\x42\x92\xb6\x6b\x39\xa6\xbe\xc3\xe4\xa0\x20\xfb\xb3\xb7\xa3\x2a\xee\x65\x16\x0e\x0c\x85\x2f\xde\xfc\x30\x97\x91\xc0\x20\xa5\x58\x11\x9a\xc2\xf6\xd3\x8c\xf9\x95\xf5\x3e\x40\x46\xe2\xd6\x94\x2c\xdc\x33\xdb\x98\x5a\x2a\x53\xc3\x0e\x38\x1f\x19\x08\x04\xe4\xfc\x68\xe8\x0d\x5b\x37\x6b\x16\x3f\x06\x77\xe6\x2c\x22\x73\x4d\xd4\x81\xe1\xba\xaf\x50\x28\xa1\x4d\xf2\x34\xcb\x07\xd1\xe8\x63\x59\xde\xf4\xc4\xd9\x6c\x88\x9f\x90\xb5\x5a\x7d\x08\xa7\xe6\x9f\x60\x46\x44\x3e\xb7\x21\x06\x1e\x99\x62\xc0\xef\xe4\x58\x67\xab\xef\x92\x0e\xf6\x67\x14\x4a\x8a\xea\xdc\x54\xb3\xa9\xce\x59\xe6\x0a\xa7\x3d\xe9\x62\xb2\x03\xa2\x46\xf0\x47\x4d\xad\x49\xa9\x59\x75\x6c\x5a\xae\xb7\xa6\x7a\x40\xbe\x09\x9e\x56\x8e\x10\x31\xea\x56\x46\xb6\x9a\x76\xb8\x7f\x47\x15\x34\xfd\xa8\x13\x75\xe8\x19\xea\x2e\x6b\x39\x1a\x9f\x7b\x9a\x2b\xf7\xde\xf8\x19\xe5\xff\x27\x6b\x95\x7f\x9e\x84\xbc\x41\x44\x95\xd4\xbf\xc3\x3d\xa5\xa4\x7d\xbe\x49\x1c\x72\xc5\x46\x2f\x4b\x47\x24\x5e\xf5\xb8\xd6\xc6\x38\xee\x0a\xda\xa3\xd8\x6c\xa4\xbd\xde\x8c\x0f\x36\xaf\x2a\xa5\x9e\x93\x63\x45\x02\xf7\x61\x43\x2d\x71\xb1\x3d\xb4\xc3\x15\xce\x35\x48\xb5\x8f\xc5\x1f\xf8\x46\xb1\x86\x0f\xa3\x98\xc9\x07\xa5\x77\xdc\xa7\x5b\x36\x55\x57\xc6\xc0\x9a\x6e\x4c\x0d\x94\x4e\xee\x82\x35\x9f\xf9\xa6\xe9\x95\x4d\x92\x94\xdc\xb6\xbc\x45\xc6\x64\xff\xd6\xe5\xb1\x47\x2e\x39\x41\x26\x5f\x43\xe4\x92\x38\xdf\xd4\xd6\xdd\xc2\x42\x3b\xcd\xcd\xaa\x69\xa9\xca\xc2\xf1\xc0\x57\x17\x8f\xd7\xfc\xa0\xc5\x83\xed\x5e\x96\xbe\xca\x72\xd0\x70\x4a\x01\xfe\xe5\x6b\xc7\x4f\x3c\xb0\x49\xc6\xb9\x48\x41\x5d\xab\xa9\x3e\x51\xcb\x80\x54\x7b\xc0\x66\xf0\x97\x64\xaf\x72\xab\x97\xe2\x83\xbf\xa3\x28\x25\x4f\xd7\x9e\x6e\x79\xb9\x3d\xb2\x66\x75\x5a\x5b\x8a\x5b\x1c\x25\xf3\xe2\xa9\xf0\xc2\x5e\xb8\x0d\xf0\xae\xfa\x5f\x9b\x64\x50\x72\x33\x1c\xb9\x92\x38\x3c\xb1\x23\x58\x3e\x7c\xa3\x74\x7d\x06\x69\xaf\x37\x34\x09\xd8\x25\x98\x16\x77\xac\x30\x15\xdc\x44\x82\x05\x79\x42\xc1\x48\xd6\xd3\x32\xee\x3e\xe6\x55\xdb\x7b\x97\x00\xca\x83\x91\x7c\x9f\x0e\x6e\xd7\x95\xe5\xb8\x23\xe0\x8b\xc2\x84\xdd\x84\x80\x22\xbe\xfa\x67\xf0\xa0\x85\xdf\x42\xf5\xa4\x60\x69\xc2\x8e\x9f\x20\xdf\x00\x61\x13\xa5\xf9\x24\xac\x86\xc5\xba\xee\x79\x53\x6d\x62\x8b\x8c\xf2\x7b\x7f\x4d\x76\xbd\x83\x5f\x6d\x87\xa9\xcd\x42\x11\xbe\x72\x19\x5a\x07\x17\x3d\x33\x5d\x91\x48\x3f\xbf\x5b\x51\xc4\x7f\x5d\x0f\x30\xdc\x19\xb8\x17\xad\x8e\x12\x44\xf8\xfe\xd8\x07\xc4\x3f\xe0\x9a\x0c\x26\xfc\x8a\xf2\xa1\x6f\x8c\xb5\x10\x80\x08\xac\xb1\x04\x0a\x26\x47\x14\xb6\x35\x8d\x65\x03\x9d\xe6\xa0\x1c\xb2\xa7\x8e\x33\xf4\xdb\xf4\x3a\x30\x07\x3f\x0e\x14\x95\xc0\x9f\xb8\xfd\x90\x66\x2b\x51\x81\x65\x0d\xff\x10\xe7\x03\x0c\xcf\x3d\x2a\x43\x48\xde\x5c\x0c\xea\x68\x90\x16\x29\xbb\xc1\x30\x0b\x33\x4a\xd6\x70\xa6\xd6\x41\xf5\x42\xe5\x2c\xbe\x12\x5a\x2c\x51\x2f\x16\x4a\xc3\x29\x41\x50\x13\xd0\xa3\x6f\xa2\x84\x7c\x1d\x26\x49\x0f\x7c\xc7\xef\x8f\xc6\x4a\x83\xe6\x27\x4a\x85\xee\xb8\xca\x45\x52\xf3\x11\xf6\x9c\xf8\x29\xbe\xe4\xa7\x7b\x31\xec\x2b\x45\x66\x87\x56\x21\xa7\xb7\x14\x72\x7a\x4b\xe1\x26\x7a\xb6\x6b\x33\x13\xc7\x8c\xa6\x03\xe8\xfd\x5d\xc5\x1b\xf3\x2e\x5e\x4b\x92\x5b\x75\xc3\xbd\x9f\x55\x0b\x78\x00\x71\xee\x03\x94\xc9\xd7\xb5\xa6\xf0\xe7\xda\x2b\xf6\x6b\xa5\x35\xc5\x40\x5e\x07\x91\xe7\x51\x6c\x06\xbe\x69\x48\x48\xb7\xbb\xe9\x30\x4a\xaa\x6d\x41\xa3\x25\xd4\x6c\xb4\xa4\x04\xdf\xdd\x68\x51\xd6\xad\x97\xe9\x16\xd9\x71\x2d\x9d\xde\x84\xa3\xef\x99\x8c\xf2\xe5\xd5\x5b\x09\x3d\x4a\xcb\xd1\xce\x9d\x73\xc8\xb5\x3c\x4c\x47\x76\x56\x75\x34\x63\xc5\x21\xee\x84\x56\xa9\x13\x20\xf5\xbc\x4d\xaf\x34\x85\x64\x26\xcf\xa3\xbe\x23\x58\x00\xf0\xf8\x38\x26\x80\x6f\x54\xf0\x98\x8f\xd2\x94\x6c\xb0\x8f\xef\x4f\x05\x3a\x3c\x56\xfd\x17\xa5\x8d\xf3\x19\x8f\x93\x7d\x23\xf0\x1e\xfd\x27\x26\x64\xac\xe0\x2e\x3f\xd2\x79\x42\xa5\xd7\xa3\xa4\xbf\xcb\x83\x33\x5e\x1b\x2b\xdf\x77\x33\xf0\xc4\xfd\xdf\x1d\x7b\x30\x35\x60\x2c\x48\xfe\x31\x9f\x96\x60\x9e\x15\xd1\x5b\xf9\xb5\xd2\x30\x4a\x8a\xf5\x45\x03\xa5\x4d\x73\x41\x25\x1d\xd6\x8b\xc1\x8c\x37\x61\x4f\x2a\x8a\x7e\xe6\x07\x83\xf9\x3a\xa5\xbe\x3d\x1c\x98\x08\x00\x61\xcc\x14\x1a\xda\xf9\x5a\xe1\xfd\xba\x36\x59\xe3\x38\x55\xfa\x54\x95\x18\xc8\xdb\xce\x16\xc7\xb6\x72\x03\xfb\xb6\xbb\xc7\x8b\xb4\x3e\xf2\xa9\x89\x22\xd8\xd7\x45\xe5\x53\x4a\x4c\xe6\x33\x94\xca\x94\x64\x0d\x0d\xb3\x4c\xa3\x37\xd1\x17\x94\xfa\xdb\xde\x4e\x83\x23\x60\xc2\x30\xcd\xba\x58\x60\x92\x65\x53\x94\xd3\x30\xf1\xec\x65\xa9\x6d\xf7\xae\xe6\xae\x87\x3c\x1a\xda\xe0\x44\x42\x88\x9e\x87\x6f\x6a\x65\xc3\xe5\xe5\xfd\x14\x44\x0e\x4c\x29\xcc\x9f\x48\x57\x9e\x54\xda\x9c\x27\x6b\xde\xd3\x4b\x2f\xb5\xd3\x91\xca\x2a\x00\xf4\x72\x96\xcc\x2e\x5f\x3b\x3c\x46\x37\x02\xda\x52\xf8\x33\x60\xcc\x44\xe8\x87\x5e\x57\x52\xc5\x5e\x28\xec\xdc\xd3\x1d\xdf\x1b\x51\x39\xd7\x8f\x7a\xf0\xe7\xf1\x40\x85\xe4\x3f\x81\x41\x15\x0d\x72\x0f\xa6\xb8\xaa\x72\x07\x3f\xd5\xdd\xed\x9b\x48\x3e\xe2\x3c\x7b\x4b\x4b\x8d\xbe\x15\xa8\x94\x36\x27\xbb\x90\x61\xbd\x15\x6c\xc7\x25\x2d\x2d\xb5\xf3\xc2\xda\x78\x68\x56\x99\xea\x43\xb1\xcf\xcb\x41\x7f\x46\x25\x37\x56\x93\x74\x1d\xb4\xc7\x48\x75\x22\x99\x2f\x2a\x93\x5e\x5b\x9c\x25\xc7\xf8\x66\xac\xd4\xe3\x5b\x93\xa9\xae\xe1\x22\x82\xad\xab\x1e\xd9\x71\xb0\x7a\x39\xac\x9a\x77\x7a\x68\x7e\xb9\x6d\x4d\x0e\x57\x03\xdb\x04\x69\x20\xbe\x76\xe7\x64\x5e\xc6\xbd\x92\x0d\x22\x5a\xa5\x8e\xd3\x17\xf3\x75\xc3\x17\x03\x38\x46\x1b\x58\xa0\xe3\xbe\xab\xfd\x14\x95\x45\x61\xec\xcf\x7a\x41\xf0\xa4\x88\xc2\x68\x64\x0a\xc1\x72\x8a\x42\xa3\xaf\xe3\xb4\x10\x6a\xeb\xda\x82\x09\xed\xe3\x9a\x13\x16\xb3\xa7\x6a\x00\x2f\x72\xc4\xbb\x49\x5b\x55\xaa\x3b\xaa\x49\x02\xdd\x25\xe2\x0c\xf9\x96\x6c\xe8\x71\xd2\x0a\xbd\xfa\x0b\x48\xd5\x60\xed\xb4\x26\x4a\x09\xe2\x09\xca\x75\x63\x77\xb2\x64\x0c\xa0\xa2\x8f\x70\x39\x82\xd1\x81\x1f\xdb\x39\x90\x99\x6e\x94\xce\x7a\x07\xbc\x85\x84\xb7\xa0\xae\x7c\xcb\xc7\x79\x8d\x84\x39\xa6\xab\xc9\x80\x3e\x6c\x50\xca\x67\x69\x49\x30\x29\xc7\x95\x27\x7f\xbc\x51\x3b\x31\x2f\xd2\x70\x75\x90\x92\x86\xbf\x3f\x3e\xce\x29\x75\x4e\xaf\x01\x65\xba\xc3\x28\x13\xbf\x87\x3d\x6c\x5d\xf1\x68\x24\x8c\xc9\x0b\x3b\x9a\xf1\xb5\xe9\x2d\x85\xbf\x46\x37\xbd\xe8\xb1\x7d\x52\x9d\x3d\xc4\x23\xec\x93\xc0\xe7\xa6\xba\xaa\x7c\xb6\xd1\x26\xfd\xca\x0a\xec\xa6\x07\x62\xf6\x22\xfa\x7e\x18\xb6\x1b\x81\xa2\x01\xe3\x9d\xcb\xf2\xa7\x81\x6f\xd9\x7a\x9f\xe6\x18\x2e\x3a\x03\x85\x45\x23\x75\xfb\x21\xfd\xd2\x4b\xed\xd0\x64\x49\xb4\x06\x49\x03\xe1\xd1\xba\xa7\x04\xf8\xee\x39\x39\x3d\x3b\x0c\x5b\xbe\xdc\xb6\x4d\xcc\xca\x43\x3c\xd3\xac\x4f\x82\x2f\x2d\x4f\xec\x7b\x49\x43\x56\x2e\xb9\xe1\xef\x46\x79\x1c\xad\xb2\xf7\x23\x88\xf2\xea\x8c\x91\xa2\x6d\xbd\x26\xfa\xa5\x76\x5e\x76\xbb\x1c\x48\x32\x78\x93\xc6\x52\x80\x9c\x4f\xb9\xdd\xfd\xd7\x90\xa9\xd1\x11\xc4\xc8\x16\xb3\xad\xcf\x7d\xce\x75\x5d\x53\xf8\x84\x33\x8d\x65\x3b\xf8\x5f\xe8\x09\xf9\x1f\x1a\x7c\xc1\x28\x29\xb2\xb4\x5b\x86\x16\xfa\xa6\x92\x25\x57\x18\xbe\xdf\xc4\x9c\x88\x38\x4a\xdd\x57\x3b\x40\x2c\x30\x1c\xcd\x02\xc0\xf3\xc6\xd8\x07\x1d\xf0\x00\xe0\xf6\xbf\xe7\x10\x66\x85\x01\xf7\xb4\x34\xab\xfb\xba\x84\x97\x83\xad\x0e\xce\x28\x09\x5d\x1a\x15\xb1\xca\x23\x13\x9f\x6d\x78\x44\xa5\xe6\x4c\xbf\x9f\xd9\xbe\x29\xaa\x88\x67\x61\xc1\x43\x65\x17\x0f\xb2\x61\x41\xf8\x28\x20\x5f\x5f\x31\xc8\x2d\x09\x62\x3f\xd6\x3a\x20\x82\x15\x20\x7a\xc1\x4f\xfc\x1e\x6a\x3b\x92\x05\xa9\xbe\x4e\x14\x21\x95\xe2\xdb\x78\x4a\x8b\x86\x66\x8d\xb5\xb4\xc6\x1a\x9e\x48\x31\xab\xcb\xae\xec\xf7\xdf\xa5\xeb\xfa\xd8\xfc\x88\x6c\x6f\x3b\x47\xd7\x66\xeb\x11\x82\x4b\xee\x74\x1c\x2b\x21\x8e\x6f\xa9\xa0\x3c\x2f\x57\x86\x51\x81\xc6\x4d\xe1\x5f\xae\x9e\x94\xaf\x15\x82\xf1\xcb\x51\x81\xc5\x2c\x3d\x35\xf4\x8d\xd2\x54\xd3\x34\xd1\x95\x37\x06\x32\x48\x66\xde\x54\x79\x94\xcd\x86\x4c\xc5\xf3\x6d\x6b\x32\x84\x37\xfb\xbd\xf6\xa5\xa3\xf0\x00\x8d\x3a\xcc\xdc\xfd\x9a\x44\xec\xd2\x52\x3b\x31\xad\x29\xca\x4f\xc7\xb2\x71\x51\xb9\x9c\xd6\x64\x09\x5e\x17\x68\x42\x40\x9b\xf8\xba\x29\x33\xb8\x62\xe3\x7e\x64\xb0\x29\x71\x1a\xde\x0d\x14\xc7\xf3\x5d\xe5\xbb\xe5\x45\x66\x92\x3e\xaf\x6d\x47\x75\x52\x6d\x2f\xd5\x8a\x22\xf4\xa0\x1f\x68\x0d\x84\x81\x4d\x9e\x6e\x7d\x65\xd1\x39\x01\x38\x89\x44\x0a\xd8\x63\xdd\xee\x8d\x7d\x87\xf9\x9d\xc0\xb7\x36\x3e\xc0\xb6\x83\xc7\xc1\xc0\x65\x38\x71\x27\x03\xad\x05\xef\x71\xf5\x4c\xd5\xca\x11\x8e\x9a\x99\x16\x82\x0c\xdc\x30\x7b\x04\xc3\x04\x89\xf7\x95\x1b\x6c\xc9\x5a\x6f\xfd\x6c\xac\xca\x1b\xac\x9c\x0d\x3c\xd6\xfd\xc0\x13\x07\x9f\xc5\xae\xc0\x39\xf2\xcf\x15\xa7\x6d\x37\x7d\x92\xfe\x05\x58\x9e\xa3\xaa\xfd\xa6\xff\xec\x44\x95\x06\xc0\xec\x46\x93\x94\x7f\x7a\xe2\x09\x38\xee\xf1\x40\xc1\xe6\x3d\xc4\xbe\x40\xa5\x70\x8e\x10\x99\xf0\x36\x5f\xa3\x31\x60\x72\x6a\x55\x69\xbc\x02\xd3\x2d\x3d\x54\xb4\xdf\xf8\x51\x50\xcf\xc0\x14\xef\x24\x22\x1e\xc9\xed\x2a\xa9\x09\x56\x26\x42\x43\xcf\x4e\x2f\x9e\xf9\x0f\xfe\x4e\x47\x8e\x81\x30\x33\xeb\x2e\x9c\x75\xec\x1e\xd5\xaf\x4a\x35\xc0\xbb\x05\x6b\x06\x6a\xe8\x96\xc5\xaf\x71\x4e\xdf\x52\x7a\x62\xb7\xc6\xcf\x46\xca\x7e\xe5\x79\xb4\x66\xa1\xb9\xae\xcc\x86\x77\xfa\x8f\x2a\xd1\x8e\x75\xbb\x92\x17\xcc\xa7\xc8\xf1\xae\xd6\xfc\xbf\x17\x78\xaa\xcb\xc4\x86\x36\xcf\x4d\xb6\x31\xa7\xfa\xf3\x4f\x8d\xbd\x35\xc1\x9e\x11\x01\xa1\xea\xf7\x44\x59\xc8\x17\x7e\xea\xd2\xac\x0b\x8b\xed\x38\x1a\x46\xae\xeb\x54\xe3\xb9\xf9\xda\x67\xa8\x07\x1b\x39\xd1\x61\xfb\xe0\xe9\xb2\x4a\x46\xde\x0d\x54\x01\xab\xde\x18\xba\xbc\xdc\xee\xda\x51\x9a\x47\x05\x73\x3d\x30\x7c\x63\xac\x00\xc0\x57\x14\x7c\x7a\x53\x03\x71\x06\x42\xb8\xeb\xa2\xe9\x4d\xbd\x7c\x1f\x4e\x15\xd3\x7d\x88\xba\x6a\x6d\x52\x59\x09\x87\xc2\x98\xeb\x78\xdd\xf5\xb9\xc9\x54\xd3\x61\x56\xf9\xf0\xdd\x3d\x4a\x46\xec\x34\x23\x4b\x90\x95\x38\x4a\xf0\x19\xc7\xdd\xe5\x70\xf0\xb7\x34\xd3\xe9\x05\x95\xac\x7c\xa2\xe3\x9b\x1c\x8e\x06\x8a\x43\xf2\xee\x54\x39\x26\x4d\xb8\xeb\x9c\x2b\x3e\xc1\x54\xf9\xc7\xab\xfd\xc5\x91\x4d\x5a\x4a\xea\x00\xc5\x0d\xbe\xae\xc5\x9f\xcf\x01\xe4\x68\xc2\x81\xe5\x09\xc3\x8a\x79\x5b\x11\xbd\x9c\x87\xe5\x83\xd7\x75\xcd\xb5\x61\x60\xa5\x45\x85\x97\x9e\xc1\xbb\x9d\xd1\xfc\x62\x67\x14\xb2\x33\x0d\x43\x03\xb7\x67\xf1\xa0\xef\x11\x76\x7b\xa5\x4e\x31\xbc\x78\xb0\x3d\xca\xa2\xa1\xc9\x36\x66\x3c\x24\xf9\xaa\xaa\xbd\xbf\x35\x9e\x4a\x67\x3c\xea\x26\xf4\x0b\x9f\x52\x2e\xca\xc5\x80\x78\xc4\xa4\xbb\xda\xab\x9e\xbd\x07\x43\xc1\x55\x60\x4d\x3b\xf3\xdf\xc0\x52\xb0\xc8\x23\x59\x43\xf1\x11\xe9\x2c\x77\x9c\x48\x55\x24\xcb\xde\x03\x49\x49\x49\x63\x2b\xcd\x35\x12\x86\x6f\x04\xbe\xa1\xe5\x23\xcd\x90\xfb\x63\x02\xeb\x88\x70\x96\xc2\x48\x3e\x54\x35\xb9\x16\x07\x36\x38\xab\x1f\xa5\x4e\x16\x18\xc9\x09\x6d\x6a\x24\x69\x6e\x72\xe7\xa0\xd0\x17\xd3\x74\xa0\xac\x7a\x9f\xfc\x22\xf6\x85\x94\xf3\xd0\x33\x49\xcf\x64\xc8\x5d\x4a\x41\xa7\x1a\x1a\x29\xf4\x3c\xad\x04\xe4\xbb\x64\xae\xb8\x12\x8a\xa2\x1a\xab\x11\xf2\x8d\x8a\x14\x86\x51\x1c\x47\x69\xf2\x69\x95\x35\x62\x89\x1f\x64\xae\x8e\xd3\xf3\x88\x8e\x44\xb5\x57\xb0\xc1\x77\x41\x4f\x0e\x7b\xee\x06\x52\x5a\x4c\x18\xdc\xf1\x47\xd3\xe7\x9e\xec\x78\x4e\x9d\xa3\x04\xcc\x81\xef\x79\x13\xef\x0c\xf7\xf7\x07\x63\xa5\x52\x7a\x45\xf5\x6b\x20\xe1\x8c\x3f\xfa\x09\x4a\x09\xf0\x83\x77\x13\xf6\x15\x87\xc9\x0e\x1c\xa2\xa8\x72\x70\x97\x33\x9c\xbf\x9d\x13\x25\xab\xfa\x80\x96\x05\xd3\xa7\x62\xfa\x98\xef\x8d\xce\x79\x57\x8b\x5d\x58\x74\x55\x18\xdd\x77\x7f\x5c\xfb\x1e\x65\x3e\xb2\x09\xef\x22\x89\xda\xe9\x77\xf9\xc6\xd9\xd6\xd0\x50\x1f\x22\xdc\x2c\x38\x06\x4f\xd0\x3b\x31\x0a\x49\x77\x89\xcc\x4d\x7c\x81\x6e\x25\x4e\xc3\x55\x76\xaf\x5f\xe4\x3c\x29\x6b\x5f\xf0\x4d\x2d\x0d\x5c\x79\x81\xbf\xf8\xe5\x5f\xdb\xff\xe5\x2f\x2e\xcf\xf9\x2d\x37\xdb\x51\xc2\x16\x08\x2b\x45\x00\x56\xe1\xcb\x02\x9d\x45\x53\xf1\xe6\x9a\xcd\xa2\xde\x46\x4b\xc5\x1f\x53\x88\x1d\x6d\xef\xa2\x61\xfe\x68\xcb\x11\x84\x83\x16\x07\x87\x35\x9a\x69\xf1\xc2\xaf\x8d\xd5\x29\x7e\x12\x6b\x00\x80\xf6\xeb\x68\xab\x10\x7b\xab\x20\xad\x57\xb1\x3a\xb0\x57\x18\x31\x8d\x71\x06\x27\x07\x40\x05\xa7\x6a\x4e\xee\x17\xda\x2b\xb1\x49\x56\x6d\x31\xa3\xda\x3d\x5a\x1d\x7f\x84\xe2\x21\x25\xc7\xae\x63\xb8\x57\x73\xd3\xf2\x24\x4b\xa7\x14\x6f\xd1\x29\x25\x66\xf5\xf9\xcf\x7f\x9e\x98\x80\x14\xee\xed\x4b\x02\x6b\x54\x68\x82\x2b\xaa\x6c\x74\x81\xbc\x42\x69\xfd\xf3\x7b\xb6\x4c\x7a\x84\x34\x85\x69\xfe\xd2\x94\x5c\xad\x58\x35\x41\x2f\xa4\x65\xd1\x25\x23\xae\x52\xe8\x81\x22\x54\xa9\x17\x16\x16\x16\x28\x01\x46\x3a\x89\x2d\x9f\xf5\x3d\xa7\x9b\xee\xce\xb9\x7c\x56\x61\x13\xc7\xec\x2c\xc9\x4d\xfa\x7a\xc9\x6e\xfa\x04\xfa\x9a\xc9\x19\x46\x8b\x57\x3d\xae\x72\x18\xbe\x42\x53\xd8\x24\xb1\x61\x4a\xe7\x88\xfc\x9b\xea\x85\xab\xd3\x57\x57\xe1\x49\x61\x46\x36\x2f\xb2\x0d\x00\xf3\x9d\x96\xa8\x02\x42\xd4\x6b\x2e\x2f\xb6\xf3\xb2\xdf\x97\xde\x7f\x9c\x3f\x1f\x80\x44\x85\x6f\x9a\xb8\xeb\xf2\x41\x9a\xae\xd2\x27\xa4\x32\x49\x6f\xcb\x37\x8e\x72\x7a\x68\x33\x3b\x47\xdf\x25\xe7\x57\xcb\x75\xec\x02\x59\xe8\x58\xe7\x3c\xea\xef\x8a\xa2\x49\x7e\xaa\xd3\xc4\x66\x9f\x45\x14\xe3\xaa\x41\x3c\xad\x06\xf1\xb4\xce\x56\x97\xd9\x0a\x9b\x04\x29\x25\x20\x03\xc6\xd7\x0d\x44\xb6\xfb\x9f\x6f\xa7\xa4\x48\x09\x4b\x86\x6d\xf7\xa1\xde\x83\x1f\xd6\x06\x9f\xd8\xfc\x8a\x68\xcd\xa7\x1a\x61\xb1\x11\x17\x08\x3e\x40\xd1\x97\xfc\x6e\x43\x7a\x45\x74\xd0\xa8\x51\xd4\xf1\x09\xbb\xae\xde\xaf\x8f\x7d\x90\x70\x59\xf1\xe2\x96\x49\xb4\x66\xb3\x1c\x1c\xe0\xd5\x43\x32\xa5\x2c\x2c\x9f\xf0\xcb\x36\x0c\xe3\xd0\x24\xa6\x2f\x9e\x24\x6b\xde\x8c\x55\x6a\xe2\xb1\x8e\xb7\x14\x3b\x54\x82\x74\x7d\x35\x9f\xf5\xd3\x78\x98\xd5\x53\x45\x0e\x56\xc9\x87\xed\xe8\xd0\x71\x27\xb8\xb6\x06\xc4\xfc\x28\x36\x1b\xec\x02\x0b\xeb\x61\xb5\x28\xb0\x58\x58\xa7\x0e\xa1\xcc\x61\x9d\xa8\x33\x55\xa4\x90\xcc\xd1\xd9\x26\x05\x69\x85\x7c\x43\x97\x02\x1c\x10\xf6\x13\x30\x0c\xef\xd0\x92\x93\x72\xf6\xf6\xfc\xe9\xc2\x42\xdb\x0e\xa3\x7e\x46\x31\x4e\xcb\xe3\x5a\x2e\xaa\xde\x09\x1d\xa9\xaf\x98\xc2\xe6\xb3\x6a\xe1\x6e\x6a\xbd\x5f\xc1\xbd\x39\x58\x6b\xf5\x7c\x52\xc3\x68\x20\x55\xc9\x23\x25\x28\x2f\x4e\x77\xf5\x10\x7c\xed\x2c\x83\x4d\xba\x69\x96\x73\xe2\x8e\x0b\xbb\x78\x7b\xa9\xf2\x7a\x47\x79\x14\x9b\xe4\x49\xfa\x46\xe9\x8b\x55\xd5\xec\x7b\xe8\x3e\x51\x88\x61\x49\xfe\x9d\x0e\x7c\x68\x80\xdd\x88\x13\xaa\x35\x51\x8d\xc5\xe7\x2a\xb3\xcc\x5d\x8e\x98\xfc\xcb\x48\x95\x63\xe9\xb3\x47\x03\xe7\xe9\x11\x30\xed\x02\x8c\x7d\x82\x47\x06\x8e\xd3\x7d\x9a\x71\x6c\xac\x9f\x2a\x51\xba\x63\x74\x02\x0a\xc8\xa7\xf2\x30\x30\x87\x1f\x29\x11\xaa\x5e\xcf\x5a\xd6\x4e\x42\x9e\xe0\x04\x4d\xb0\xc0\x98\x7d\xd6\xee\x71\x4a\xcd\x20\x55\x7f\x59\x47\x59\x8c\xbb\x13\xcc\xe8\x33\x4a\xfe\xb2\xb0\xd9\x30\x4a\x9c\xf1\x70\x82\x91\xae\xcf\xf3\x64\x53\x95\x82\x7a\x52\x5b\xaa\xa9\x94\xc6\x47\x1a\x4c\xb7\x67\xb4\x5f\x7a\x89\x74\xa3\xe8\xef\x31\x86\x2c\xb9\xc7\x37\xb5\x5f\x58\x5e\x6e\xaf\x67\x29\xda\x37\x04\x54\x88\xd6\x39\x8e\xa7\x54\xa3\xcc\x79\xe5\x94\x64\xf6\x65\x1b\x16\x2d\x9f\xac\x02\x2e\x80\xaf\x15\xa1\xd7\x28\xb3\x85\x79\x05\xdd\x21\x48\xe0\x5d\x1f\xab\xaa\xf0\x6f\x28\x5f\xe6\xba\x4a\x10\xbd\x6a\x33\x08\xbc\xb1\x8a\x3d\xfd\x99\x28\xda\xfb\xfe\xa5\x4c\xcc\x1b\x1c\x93\x07\x63\x8f\x2a\x80\xe4\x9d\x70\x4b\x7b\x6b\xf3\xfc\xc2\x3e\x98\x35\xf8\xaa\xa8\xff\xf1\xb5\xe3\x37\x92\x98\x95\x6d\x09\xdc\x8e\xab\x81\xe2\x6f\x38\x4b\x4f\x84\x1d\xf2\x50\x81\x4a\xd6\xa2\x82\xf5\xea\xa5\x9c\xaa\x6b\xab\x53\xf2\x39\xe9\x70\x84\xa5\x20\xdd\xee\xb4\x19\xf8\x46\x09\x43\x0c\xa3\xc4\x66\x39\x71\x62\x20\xd5\x84\xfe\x6b\x2e\x40\xd2\x73\xb0\x4d\xa3\x6d\x26\x1c\xae\xdb\x5d\xb1\x7d\xcb\xd5\x29\x9b\x15\x28\x5d\xe0\x81\xd8\xa8\xf3\x4d\x23\xcf\x69\x5e\xa4\x31\x1b\x07\x91\x67\xa5\xe7\xe4\x1b\xc5\xc4\x30\xb4\x26\xc9\xf7\x78\x81\x39\x4e\xac\x39\x78\x8c\x13\x64\xfe\x73\xa5\xa2\xcd\x5c\x8f\x30\x1a\x0f\xa6\x19\x23\xb4\xea\x3f\x76\x25\xfc\xe9\x9d\x9d\x8f\xd3\xda\x58\x29\xf3\x41\xcb\x67\xa7\x6f\xe1\xfb\xf8\xc6\xa3\x22\x0a\xcb\x3d\x52\x30\x5c\xac\x9a\x2a\x9a\x72\x1e\x8b\xad\x58\x32\x62\x1b\x16\x59\x9a\x44\x61\xbe\xbb\xfa\x20\x96\xe2\xdb\xfc\x58\xae\x97\xd2\x89\x42\x6f\x05\xbe\xaf\xf2\x84\xa2\xcb\xe6\xb6\x1d\x4c\xf2\xdb\x81\xf2\xc0\x1e\x2a\xa6\x9e\x70\x60\x0a\x6b\xca\x96\x82\x99\xe2\x4f\xc5\x05\xfb\x38\x09\xc2\x41\x5a\xe6\xae\x19\x0b\x15\xd8\x5b\xaa\x0e\x3a\xa5\xeb\xf6\x76\xed\x00\x7d\x61\xff\x67\xdb\x83\xa8\x3f\x50\xf8\xcd\x3f\xc3\x08\xf2\x4d\xf0\xac\x2f\xf6\x84\x59\x44\x78\x17\x01\x75\x49\xa9\xc5\x1f\x31\xf5\x76\xb1\xe7\xda\x61\x19\x17\x65\xc6\x44\x11\x28\x64\xfd\x28\xf0\xc8\x86\x1f\x29\x60\x48\x62\xd7\xe3\x0d\xe2\x7e\x13\x60\x3c\xc5\xb7\x4e\x0d\x77\xdf\xb2\xa6\x39\x7e\xd1\x29\xe0\x6e\x5f\x1b\x44\x4f\x31\xb0\x66\x2d\x92\x0e\x53\x67\x53\xbc\x7d\x71\xb0\xe4\xea\x84\x2b\x6c\x26\x7a\x1d\x08\x4c\x40\xa5\xa8\xa5\xca\x84\x9c\xf5\x6a\xf0\x94\xea\xa8\xb6\x59\x14\x9a\xc4\x90\x59\x44\x26\xf8\x43\x7a\x4e\xbe\xae\x21\xfb\x2b\xc7\x57\xaa\x0c\x22\x5e\x59\x7d\x56\x54\x2d\xbd\xd5\xca\x8b\x8d\x3d\xaa\xdf\x0c\x2e\x04\xc5\xb2\xff\xe4\x69\x15\xcb\x7e\x44\x75\x6b\xe6\xe0\x1f\x2b\xf5\xa4\x4b\x48\xe9\x09\xd5\x6b\xf5\x23\x70\x90\xae\xe0\xd5\x10\xf2\xdd\x9f\xce\x9e\x95\xf9\x63\x2a\xd0\xdb\x43\x75\x64\x57\x51\xf3\xcd\x41\xdf\xa7\xd3\x14\xa7\xef\x7f\x8f\xe3\x06\xa9\x0a\x88\xcd\xc3\xb8\x1f\x1b\x7b\xbc\xc9\xb1\xc0\xb7\x1b\x5c\x54\x14\x37\xbf\x8e\x9c\x87\x93\xad\xf7\x5c\xd3\xdc\xff\xc9\xdc\x49\x13\x47\xcc\x95\xa6\xdd\x9c\xf9\x63\x90\x29\xd9\xdd\x51\x24\x16\xaf\x29\xd4\x28\xd7\xa6\x59\x78\x41\x1d\x50\x3d\x13\xc7\x36\x99\xf3\xc8\xe6\xb3\xe4\x34\x20\x1d\x80\x66\x08\xdd\xe3\x8f\x2c\xca\x1b\x8a\x03\xe4\x6c\x13\x7b\x4c\x61\x93\x02\x96\x48\x50\x2c\xbe\xf0\x7b\xde\x25\xb5\xc3\x74\x38\x2c\x93\x08\x59\xf0\x7c\x97\x7e\x11\x64\x5d\xb0\x2b\xc0\x7b\xe4\xd4\x1c\xaa\x31\x72\x4a\x52\xd5\xdb\xc2\x17\x7b\x74\xa2\xd8\x9c\x5e\x52\x19\x5e\xbb\x61\x57\xb2\x74\x9d\x89\xc6\x1c\xe5\xb9\x93\x3a\xbd\xe4\xa2\xda\x0d\x6b\xb2\xd8\xd9\x0f\xcc\x2e\xd8\xf5\x60\xc9\x10\xb8\x0b\x05\x8e\x4f\xf1\x8e\xd2\x62\x94\x96\x59\x16\xd1\xca\x77\x20\x79\x1f\x27\xd6\xa2\x61\x2a\xee\x8f\xa2\xcc\x67\xc7\x91\xeb\xfb\x68\xec\xd1\x26\x1f\x35\x50\xdd\x11\x22\x85\xfa\x90\x1d\x99\x88\x6b\xa2\xfc\x6f\xb7\xa6\x5a\x06\x54\xe3\xea\x47\xda\x85\x8d\xe2\x58\x29\xa6\x00\x6e\x26\x75\x59\xef\xe0\xac\xa6\x55\xa0\xa7\x88\xab\x98\xb0\x49\xf8\xdf\xeb\x8f\xb6\x92\xa6\x39\x04\xb0\x58\xa5\x50\x11\x21\x9c\xd2\x00\xe4\xb7\x14\x50\x6e\xcd\xe6\xb9\x8d\x73\x0c\x38\x4e\xf7\x63\xaa\x2d\x04\x58\x67\xc1\x00\x39\x5c\xb5\xc9\x86\xdc\xd7\xea\x7a\xab\x9c\x2a\x46\x9d\x9b\x92\x34\xf1\x46\xa3\x38\x62\x10\x85\xe8\xa0\x29\xfd\x8b\x33\xb5\x0f\x2d\x2c\xc8\x87\xf8\x97\x84\xa3\x85\x56\x1c\xdf\xd4\x0c\xda\x73\xed\x6e\x19\x33\x71\x1c\xf6\xfd\x25\x25\x04\x75\xc9\xf5\x09\x14\x59\x14\xae\x72\xeb\x87\x6e\xea\x46\xf9\x12\x3d\xcb\x82\x9e\x93\x23\x38\xed\xf5\xa2\x30\x32\x71\x37\x45\x5f\x96\x24\xaa\xb1\x6b\x44\xf3\xe6\x09\x75\x88\x5a\x33\x6a\x69\x8c\x71\xcb\x51\xd5\x9e\x51\x0d\x25\x38\xda\xab\xaf\xe6\x62\x81\x53\xc7\x3a\xe4\x19\x31\x1b\x74\x66\x75\x07\x05\xa2\x68\xee\x56\xe5\x9b\x86\xde\xaf\x30\xcd\x8b\x72\x28\x2b\x1e\xe7\xf3\xd9\x40\x11\x52\x9c\x55\x86\xc9\xf4\x33\x5b\x0d\xfe\x0b\x8b\x07\x3d\x87\xcb\x3e\xcf\xe1\xf2\x94\xc3\x00\x3a\x1d\x1b\x70\x01\xb8\x1e\x3b\x47\x7a\xf1\x67\x34\xb8\x00\x10\x5c\xd5\x24\x54\x3b\x6b\xa0\xbe\x85\x85\x76\x31\x10\x6b\x21\xaa\x58\x1c\x0d\xf3\x8d\x62\x00\x8e\xd3\x14\x54\x38\x5c\x38\x54\xa9\xe2\x9b\x34\xf1\x8e\x31\xcf\x93\x77\xbd\xd1\x50\x3b\x6f\xaf\x94\x19\x31\x5f\xb9\x04\xcc\xf7\x55\x02\xe6\xfb\x35\xf3\x51\x39\xa6\x2c\xb7\x3c\xd5\x86\xff\x23\xcd\xd1\xfe\xa3\x9a\x3f\xbb\x78\x90\x95\x86\x29\x45\xe1\xd4\xc6\x5d\x57\xc8\x27\xd1\x3b\x4c\xa1\xf9\xea\xde\x8e\xcf\x10\x98\xd8\x64\x61\xca\x35\x22\x66\xcb\xc0\x98\x08\x75\xc6\xf6\x5e\x06\xe7\x91\x12\xad\x68\xcb\xd7\x13\xa6\x1a\x52\xb7\x31\xf1\x14\x1b\x9f\xa4\x97\x11\x5e\x64\xda\xa1\xc2\x9e\xd2\x7a\x41\x3c\xe3\xb3\xd3\x41\x26\x3d\xb3\xc3\x2c\x39\x71\xa6\x19\x34\x52\xf3\xc7\x51\x1c\x10\x0e\x67\x35\xb7\x47\x28\x2e\x76\x74\x95\x4b\x4b\x6c\x33\x77\x02\xe5\x85\x83\xe6\x1e\xec\x17\x56\xf6\x96\xea\x22\x64\xee\x60\xdc\xec\x50\x23\xd6\x8f\x56\x56\xd2\x84\xe3\x27\x6e\x56\x0b\x54\x03\xec\x4f\x35\x45\xfc\xa5\x86\x09\x6e\x17\xd1\xd0\x16\xd0\xbc\xf4\xd2\x9d\xb4\x2a\xa4\x3b\xca\x37\x3e\xae\x47\x71\x1c\x99\x61\x3e\xe7\xcb\x64\x17\xb5\xc9\x3d\x0d\x04\x10\xe7\x03\x15\x8b\x34\x32\x13\x42\xdc\xdc\x70\x90\x87\x99\x09\x57\xe9\x58\x93\x5f\xd5\x4f\xb3\x9d\xe9\x87\x7c\xcd\x6e\x14\x9b\x51\xd4\xf5\x35\x3e\x01\xf5\x7b\xa4\xcf\xa5\x86\x50\xff\xc5\x76\x31\x30\xc5\xae\xea\xa7\x50\x37\x9b\x9b\x38\xba\x86\x5f\x7c\xaa\xd3\x72\x08\xa6\xcb\x5a\x36\x89\x5b\x1b\x31\xa8\x67\x91\xbf\x87\x4d\xff\x59\xd3\xeb\xac\xa7\x59\x5e\xcc\x90\x2f\x08\xe2\x81\xa7\xc8\xb7\xc0\x69\x33\x37\x69\x29\x86\x2d\x1f\x8c\xe7\x69\xdc\x7d\x5c\xb3\xc9\x63\xc9\x21\x80\x9b\x51\x74\xd5\x20\x12\x60\x94\x20\x30\x88\x8e\xe0\xd0\xbd\xfb\x9b\x6a\xc1\x01\x43\x00\x9f\xf6\x0e\x36\x14\xaa\xe9\x5b\x54\xa6\xc2\x3f\xdc\x1b\xab\x1e\xb2\xc7\x34\x9b\xfb\x91\x40\x37\xc8\xd5\xf6\xe0\xe2\x41\x50\xc2\x96\x89\xcf\x84\x39\x66\x7b\xe7\x5d\x5d\x52\x32\xdf\xa3\x28\x4e\x8b\x59\x5a\xb3\x62\x72\x35\x87\x56\xe0\x5f\x15\xb6\x58\x78\x31\xfc\x58\xa5\xdd\xae\x38\x72\x98\xa0\xbb\x18\x2c\xf1\x15\x7d\xd7\xdc\x59\xec\x42\xe4\x01\x4f\xea\xba\x12\x27\x87\xb1\x8d\x8f\x7e\xac\x8a\xa5\x8f\x49\xc9\x9f\x71\x7c\xa4\xae\x35\xf8\xb0\x02\xe7\xf5\x3d\x6b\x34\xdc\x89\x2b\x63\xdf\x47\x72\xa5\xb6\x1c\x9f\x6b\x87\x83\xb2\x6f\x44\x96\x02\x67\xf1\x3f\xc4\x73\xf1\x4d\x43\x7f\x94\xd0\xe8\x31\xc2\x5a\x8a\x97\xba\x92\xe9\x5c\x80\x2a\x54\x9d\x16\xa2\x43\xe1\x42\xe8\x6d\x9b\x50\xdf\xe2\x31\xce\xa8\xf1\x61\x0d\x3a\xdd\x6b\xc7\x94\xd6\xc1\xe3\xca\xb6\x86\x7c\x4e\x08\xdc\xc5\x27\x21\xeb\x4d\xda\x07\xe6\xdb\x83\x34\x2f\xa2\x18\x89\x34\x6e\xec\x9d\x6a\xf2\xf5\x4b\xa6\x9b\x45\xc9\x2a\xe2\x4a\xac\xd0\x6b\xa8\x91\xf2\xcd\xf8\x53\x9a\xf2\x64\x18\x11\x88\x91\x00\x2f\x8b\x07\x5d\x26\x9b\xf2\xa6\xd2\x65\x5d\x97\x29\x7c\xb1\xdd\xb5\x61\xec\xd5\x2d\x39\x71\x49\xef\x20\x49\xcc\x26\x0a\x38\x93\x4d\xc1\x41\xfe\x67\xac\x31\x6e\x76\xa2\x75\x22\xe1\x6d\x1d\xe2\xd0\x8d\xc2\xc2\x8c\x06\x69\x22\x12\x8c\xa2\x04\xaa\xb4\xdc\x8e\xb8\x12\x6b\xf5\x1f\xb7\xbe\x74\xcb\x9e\x28\xb5\x79\xb7\x6c\x25\x33\xeb\xb1\xd2\x99\x3c\xa7\x74\x26\xcf\xd5\x4c\xd6\x73\xd4\x98\x24\x2f\xce\x4d\xd4\x9a\x0f\xfb\x72\x83\x27\x4e\xb5\xb3\x19\x05\xd2\xfc\xaf\xc8\x17\x51\xd9\x02\x09\x8b\x2f\x37\x35\xdb\xf7\x2c\x8e\x1c\x87\xab\x73\x8e\xe9\x45\xb7\xa1\xc2\x34\x29\xb2\x34\x7e\x04\x63\xe3\x2a\x85\x07\xe6\xf9\x44\x6b\x21\x41\x8d\x74\xf3\x35\x0c\x9a\x00\x38\x69\x16\x38\xa0\x9a\x38\xa6\x97\xff\xfc\x31\x45\x98\xd9\xea\x28\xd6\x19\xc0\x08\x71\x76\x9d\x56\xa9\xc6\xf5\x01\x1d\x4d\x8e\x14\xf8\xa2\x22\x4d\xbf\x58\x23\xc3\x5c\x3c\xd8\xce\x8a\x50\xb1\x89\x7d\x47\xb3\x89\x7d\x47\x71\x57\x01\xf3\x9b\x0f\xd1\xc4\xea\x34\x6e\xfc\xe1\xe5\xd2\xa4\x43\x13\x46\x49\x91\x72\xce\x4d\x52\x10\xf4\xb5\x7c\x53\x33\x12\x62\xbc\x12\xbb\x4e\xb9\x1d\xc7\xe5\xaf\x28\x9d\xfc\x30\x5e\xd2\x60\x95\xab\x2a\xd7\x38\x30\x59\xb6\xa1\x64\x1b\xd9\x25\xe2\x9b\xe0\x59\x9f\xa8\x36\x45\xd4\xe3\x08\x7b\x46\x25\x5a\xd0\x0b\x83\xc8\xfe\xae\x6e\x8f\xab\x03\x35\x9f\x23\x71\xb7\x6a\xcf\x6a\x94\xe2\xdb\xf8\x45\xbe\x71\x3b\xa1\xc8\x52\x07\x69\xc6\xa2\x39\xa9\x80\x99\x27\x15\xb0\x36\x1c\x98\xac\x6f\xf3\x47\xaa\xbf\x14\x06\x4e\x4f\x9c\x73\x74\xec\x79\x9b\xde\xd0\x42\x93\x7c\x1a\x62\x48\xee\xa3\x42\x84\x70\x0c\x6d\x02\x48\xb1\x9e\x45\xe1\x4d\xc8\x3c\x7d\x03\xe4\xff\x3e\xf6\xcd\xed\x6c\xad\xa9\x95\xca\xe5\x34\xcf\x29\x16\x1a\xb0\x50\x4a\x53\x5a\xf5\x70\x28\xeb\x41\xab\x91\xaf\x03\x95\x0e\x3b\xa7\x01\x1a\x54\x4f\xe9\xfe\xb5\x85\x6f\xb7\xdb\xa0\xc5\x83\xed\xb4\x18\xd8\x6c\x3d\xca\xed\x4c\xf5\x4c\x70\x4c\x90\x0c\xc1\x8e\x7b\x30\xf6\xd0\xfd\x29\x4d\x9f\x92\x8a\x97\x95\x19\x96\xe6\x33\x45\x3d\xe9\x35\x88\x7b\x59\x5a\x0c\xb0\x8c\xb8\x6f\x94\x46\x4a\x7a\x48\x1b\x9e\x88\x32\xe8\xc6\x89\x06\x63\xf3\xb0\x00\x10\xdf\x04\xbe\x3c\x91\x97\x3d\xe6\xe5\x47\x1e\xe4\xbc\xca\x89\x9c\x1f\xb7\x3f\x66\x6b\x6c\x98\xbc\x1c\x46\xe1\x80\x3f\x2a\x70\x44\xb5\xdc\x4e\x4d\xd1\xf4\x17\x36\xe9\xa2\x8f\x95\xf9\xe9\xc6\xfe\x85\x7e\xa0\x45\xad\x2f\x2b\xcc\x63\x2f\x8d\xc1\xc1\xb1\x8b\x16\x0a\x76\xf6\x9c\xaa\x99\xec\x45\x17\x19\xdc\x93\x3f\x50\x45\xbb\x1b\x81\x6a\x7c\xff\x17\x63\xa5\x4a\xf7\x86\x82\x4a\x91\xdf\x6c\xbb\xbc\x65\x30\x34\x3b\x14\x28\xe9\xf7\x74\x05\xf8\xef\x67\x43\x12\x5e\x40\xda\xf0\x98\x22\xd2\x41\xfd\xc9\xb1\xd5\xfb\x4e\xf6\x3f\xad\x1d\x15\x04\x3d\x30\x0c\xb8\x92\x56\x57\xdd\xf7\xaa\x88\x52\x86\x51\x1c\x15\x26\xdb\x78\x5c\x4d\xce\xf1\xc0\xfb\xa2\x6f\x70\x56\x41\x38\x30\x15\x91\x3c\x12\x73\x30\x9a\x7b\x51\xbf\xc4\xb8\xdc\x0a\xbc\x6c\xc6\xbb\x87\x03\x4f\xe2\xcc\xa4\xc3\xfc\x5d\x81\xf7\x50\x58\x6b\x0c\x7f\x05\x24\x19\x7f\x02\x89\x50\x01\x3d\x79\xc4\x6c\x66\xc3\xb4\x9f\x40\xd1\x9f\x7e\x1a\x49\xdc\x3b\x84\xa3\xe3\x6b\xd7\x44\xf0\xb2\x19\xce\x68\xa2\x0a\x25\x6c\xf8\x4d\x15\xc5\x5c\x9d\x96\x80\x8b\xc2\xbd\x8a\x70\x69\x47\x67\x4a\x88\x42\xd3\x81\x9d\x05\x7e\x98\xb9\xab\x10\xab\xf2\x87\xb0\x74\x1c\x42\xce\x45\x34\x6c\xce\x71\xac\x5d\x03\x28\xc4\x71\x5f\x39\xd0\xc0\x55\x5d\x08\x3b\x46\x74\xb0\xaa\xf3\xe4\x4b\x9a\x4f\x68\xeb\x32\x22\x1e\xa7\xde\x70\xc8\xa9\x75\x29\xa8\xaa\xc9\x73\xa6\x0d\x65\xe9\x8d\xff\xe1\xc9\x89\x62\x25\xd0\xf2\x46\xb7\x15\x03\xe2\xcf\x34\x3d\x3e\x23\x19\x10\x66\xdf\x19\x7b\x7e\x85\xab\x34\x94\x2e\x7b\x7f\x68\x9e\x0b\x73\xf7\xb1\x1c\x00\x39\x9a\xeb\xa8\xb2\x4f\x9d\x59\x80\x1a\xe4\x89\x64\x83\x95\x39\x04\x44\xe4\xe9\x6f\x2f\x06\xdb\x1b\x00\xaa\x63\x09\x55\x2c\x84\xe5\x40\x29\x60\x27\xde\x52\x6c\x45\xf5\xe0\xfa\xe0\x57\xdb\x65\x51\xed\x80\xc8\xe2\x8c\x17\x00\x0d\xfd\xb6\xe0\xdd\x3f\xe5\x6b\x9a\x65\x9c\xd8\xcc\xac\x54\x1f\x01\xc9\x94\x43\xa3\x2c\x08\xdf\xce\x39\xed\xe2\x59\x93\xe4\xb3\xba\x43\x4e\x31\x79\x00\x4f\xcc\x6c\x1f\x5a\x81\xe7\xbd\x26\xbd\xea\xa2\x1c\xae\xc4\x52\x86\xc5\xd6\xba\x0f\xfb\x83\xd3\x00\x51\x8c\xd4\xd2\x1b\xc0\xb0\xeb\x96\xb0\x1d\x2d\x8f\x7b\x39\xac\x9b\xf3\x0f\x7f\x4c\x07\x44\x64\x7b\x1c\xc4\xc0\x00\xbe\xab\x78\x49\xde\x75\xf9\xfb\x3c\x1c\xa4\x69\x1c\x0e\xa2\xb8\x9b\xd9\x64\xa6\xf5\x2b\x5f\xf6\xc2\x9d\xcb\xcb\xbe\x45\x74\x79\xf9\xf9\xad\x9b\x4d\x9a\x27\xc3\x28\x2f\xb2\x92\x95\x86\x50\xa3\x83\xb7\xc7\xd7\x2a\xc7\xfe\xb5\xd2\x64\x85\xcd\xe2\x8d\x39\x4f\x5d\x07\xae\x5d\xbe\xae\xc6\x58\x38\x1b\x70\xa6\x3e\xc4\x12\x14\xe7\x62\xaf\x2a\x9b\x57\xce\x47\x17\x75\xf0\xa6\x17\xac\xdb\xd6\xfd\x95\xbb\x59\x20\x1b\xe9\x36\xf6\x0b\xfb\x5d\xdc\xe5\xbf\x9c\x9b\x6c\x77\xb3\xfa\x18\x73\x94\xa8\xe6\x8b\xdb\x34\x38\x7c\x8d\x60\x49\x65\x00\xf6\x6f\x5d\x56\x9a\x68\xc7\x54\x0d\xac\x88\x37\x1e\x27\x00\x90\xa2\xc8\x7b\x91\x57\x18\x83\x30\x80\x87\x61\xa2\x32\x8c\xe1\x8f\x15\x99\xf1\xcc\x44\x01\xea\x1e\xa7\x6c\x07\xd2\x2b\x3f\x37\xa9\x3d\x06\x67\xfa\xd1\x56\x01\x8e\xa6\xbf\x47\x49\x18\x98\xe8\xf3\x6c\x0b\x9d\x28\x9d\x83\x71\xcc\xb8\xf2\x54\x61\xa2\xa4\x50\x39\xcd\xcd\xa9\xee\xc2\xc7\x5d\x93\xdd\xc8\x44\x99\x42\x40\xdd\x54\x47\x04\xf8\x54\x85\x00\x5d\xe5\xda\xea\x11\xdf\xe2\xc1\x76\x12\x1a\xe9\x5d\x67\x51\x46\x18\x5c\x51\x68\xfc\xb8\x4c\x42\x6e\x47\x26\x33\x85\x8d\x37\xd8\x5b\x93\x36\x01\x6f\xe6\x76\x62\x4c\x91\x28\x7a\xa4\x26\x79\xb0\xb0\x50\x59\xb0\xbc\x8c\x7d\xa6\x05\x56\x09\x2d\xe0\x7c\x5d\x8b\xb6\x96\x96\xda\x1b\xe5\x6a\x4b\xb5\x30\x1f\x57\x0c\xc3\xc7\x9b\x70\x4d\xa3\xd8\x6c\xb8\x12\x15\x5c\x95\x13\x4a\xc1\x08\xf5\x44\xe4\x49\xef\xd4\x6c\xe6\xf2\xf2\xfe\xb6\x99\x69\xb9\x13\xe3\x88\x92\xac\xbb\x0d\xbb\x00\x24\xc9\x8e\x9a\x94\x4b\xb5\x5b\xd3\xae\xc5\x30\xb5\x3c\xc9\xfc\x74\xfc\xba\xfd\x81\xbf\xb2\xd8\x1e\xa6\x49\x54\xa4\x19\x19\x5a\x81\x91\x2a\x92\x59\xbd\x75\x58\x87\x64\x4f\xcb\x29\x30\xb3\x8a\x36\x1e\xea\x7d\xf8\x0b\x4e\x4f\xe9\x80\xa8\x99\x5e\x25\xdf\x1c\x3e\xc9\x8e\x8e\xa7\x22\xe5\x2d\x82\xd1\x38\xaa\xfb\xb2\xdf\x50\x12\xa4\x5d\xdb\x8b\xc2\xa8\xe0\x52\x03\xbc\x08\x50\xc5\xf2\x75\x2d\xc4\x3e\x30\xdf\x5e\x31\x95\x57\x7e\x68\xde\x9d\xff\xbe\xb2\x74\x7f\xaa\xed\xf3\xe3\xbc\xdc\xcc\xc6\x65\x58\x98\xa4\x50\x02\x53\x67\x14\xf8\xeb\xf5\xa9\x38\x52\xd5\x1c\x4c\x6c\x5f\xa1\xdd\x02\x8c\xd7\x9f\x07\x53\xd4\xc0\x34\x5c\xfc\x2f\x63\x9f\x4f\xda\xac\xd5\x02\x0e\xcc\xb7\xa1\x61\x3d\xa3\xb0\x9c\x0f\x02\xdf\x05\xc3\xce\x23\xfc\xdc\x4d\xc5\x4b\xf2\x72\x99\x2b\x1e\x77\x87\xea\xde\xe7\xdb\xfe\x3c\x27\x7b\x98\x66\x19\xe8\x8c\x5a\x53\xea\x0a\x3e\x5e\x9e\x26\x10\x33\xeb\xf9\x1e\xdd\xdf\x4e\x8f\xc0\xc9\x5d\xcc\x3e\xb7\x02\xc3\xef\x71\x5a\x35\x4e\x83\xe1\x15\x7a\x10\xd7\x9b\xbd\x78\x50\xda\xe2\xc6\x5a\x96\xaa\x11\xb8\xde\x4b\x43\x9f\x92\x03\x14\x1f\x78\x53\xbe\x56\x82\x39\x7d\x3b\xaa\x0e\x90\x82\x8d\x8d\xd3\x7d\xf6\x39\xe2\x1f\x3b\x8e\x0a\xfb\xca\x28\xcd\xbc\x59\x70\x51\xa6\x03\x5f\xd4\x77\x0d\xac\x09\xd1\x42\x54\x4b\x0c\x0e\xec\x5b\x81\x6a\x6a\x7f\x4b\xe5\x41\x72\x13\xdb\x1c\x4e\x2b\x6c\xd5\x7b\x63\x05\x36\x7f\x3b\x50\x04\xc0\x0c\x30\xc2\xb0\xed\x98\x78\xbd\x8e\xdf\x0a\x74\x6c\xcf\xc2\xb8\x68\x35\xdc\x83\x42\x08\x76\x1d\x63\x9a\x00\x23\xb8\x4e\xbe\x29\x8c\x2b\x8f\x2f\x66\xe7\x1b\x4a\x73\xf3\x9a\xae\x7a\x9c\x54\x5d\xb1\x67\x14\x15\xcb\x0f\x03\x5f\x90\xda\x52\xc1\xdd\xa8\x3a\x41\xb8\x89\x0d\x8b\xeb\x61\xa0\x88\xba\x1e\xd6\xb2\x3c\xcf\xb5\x63\x5b\x9d\x39\xae\x53\xea\x37\xb5\x8c\xc9\x6f\x06\xba\xe7\x24\x29\x0b\x2b\xe8\x09\x6e\xef\xc0\x4b\xe0\xed\xfe\x29\x2d\x52\xbe\xc6\xb8\x49\x13\x48\x03\xc8\xb9\xbd\x66\x8b\xd4\xa2\x1a\x8a\xae\x27\xde\x3f\x7c\xa3\x70\x32\x23\x5b\x64\x69\x6c\x53\xa6\x53\x43\x71\xe8\x2a\x21\x57\xf8\xda\xf5\x38\xdb\x18\x20\x23\xd9\xa5\xf0\xa6\xaf\x2a\xb5\x85\xbb\x5a\x87\xe0\xa8\x43\x32\x64\xa6\xfb\xea\xc6\x30\x4a\x5a\x9a\xe2\xe0\x9c\x0e\x86\xcf\xa9\x70\xb0\x9f\x95\x5d\x9f\x1f\x77\xd9\x34\xaf\x15\x55\xcb\x09\x1d\x9a\xff\x52\xdb\x84\x99\xe4\x01\x1c\xc1\xb1\x6a\xe1\x0c\x9e\x52\x94\x70\x49\x94\x83\xc3\xda\x67\x4f\x99\xdd\x0f\xeb\x0a\xed\x4b\x7c\x4d\x0b\x83\xff\xa8\x96\x0e\xde\xb7\xdc\x0e\xb3\x68\x34\x8a\xa5\x8c\x89\x5c\x3f\x44\x30\xe4\x48\x51\x6b\xb1\x11\x27\x9d\x58\x23\x2a\x79\x1c\xd1\x04\x4a\x25\xe7\x8e\x4b\xf0\x51\x9a\xd3\xe4\x45\x3e\x5d\x19\xa7\xbf\x95\xd2\xf8\x27\x1d\x8e\xb8\x40\x44\xa1\xc4\x7a\x6f\x68\x7c\xe1\x8d\x5a\xb9\x8c\x72\xfa\xe5\x0a\x25\xc6\x8b\xc2\x32\xcc\x50\x77\x01\xf3\xb5\x6a\x7a\x1f\xae\x54\xe6\x97\x01\xd5\x0e\x39\xe9\xc9\x2e\xcf\xd5\x68\x4f\x88\x2f\x66\x54\x9d\xdc\x6e\x8a\x91\x82\x80\x62\x25\x5f\x4f\x9e\x51\x8d\x20\x5d\x9b\x15\x06\xbd\x3f\xd5\xf3\xb3\x1a\x17\x92\x48\x22\xcd\xe5\xa8\x47\xa2\xcc\x26\xfc\xd6\x22\x75\xa7\x4e\x21\xdd\xaa\x11\xe5\xb1\x19\xb6\x54\xf1\xec\x98\xe2\xb4\x3d\xe6\xd8\x67\xc2\x34\x2f\x3e\xe1\xf1\x42\xad\x89\xe7\x2a\xbc\x42\xe6\xdd\x91\xc2\x54\xbf\x29\x99\x45\x72\xb4\x2f\x28\xf6\x9e\x1f\xd0\x97\x23\xb9\xcc\xf4\x20\x98\xdf\x6b\x48\x21\xa2\x7e\x72\x31\x50\x49\x08\x66\x64\x66\xad\x22\x34\x07\x16\xa6\xdf\x5e\x58\x6c\x03\x95\x8f\x2f\xf8\x5f\x28\xf0\x43\xb2\xf5\x0a\x19\x41\xf8\x1e\x3f\x47\x4f\x8a\xeb\xf7\xc7\xad\x2f\xfe\x2a\xa7\xfd\xae\x50\xd7\x9e\x30\x64\xd3\x53\x0b\xa8\x9d\x1e\xcb\xc5\xe1\x2f\x48\xeb\xf5\xf9\xf1\xce\xcf\xb2\x3b\xf1\x3a\x4a\xd7\xc8\x67\xdd\xc5\x03\xe2\x03\x37\x11\x3c\x88\xe6\xb8\xd2\x35\x24\xf4\xa5\x93\xba\x5d\x76\x32\xa7\x3f\x42\xa9\x45\x48\x0b\x29\x81\x81\xed\x7a\x95\x0f\x00\x34\x63\xdd\xc5\xf1\x8a\xd5\x37\x43\x6e\xbf\x48\xe6\xf9\xb2\xc9\xc9\x80\xa2\x11\xec\x83\xf7\x83\xd6\xc2\x82\x57\xa3\xad\xa6\x18\xb0\xf1\xe3\x53\x30\x56\xdf\x47\x7c\x05\x88\x3c\xe0\x56\xb8\x93\x1b\x2b\x98\xc5\xfd\x1c\x61\x97\x0b\x07\x3f\x42\x92\x45\x9a\x09\xb7\x5b\x61\xf1\xac\xca\xc1\x0c\x26\x4b\xf7\x92\xe3\x2c\x3b\xaa\xed\xf8\xcd\x1a\x01\x23\xba\x77\x08\x67\x53\x9d\x22\xaa\xb5\xee\xb6\xc2\xb0\xde\x76\xbb\xb1\x4c\xd2\x95\xdc\x66\x6b\xec\x0a\xe1\x5d\x18\xd0\xc2\x37\x8d\x42\x4b\xa3\xea\x90\xda\x98\xf1\x41\xef\x47\xaa\xf4\xf7\xfe\xd8\x23\xb2\xff\x4f\xb7\x27\x86\x51\xc8\x2e\x14\xb7\xbb\x77\xbc\xc3\x39\x37\x69\xa0\x63\xab\xde\xc3\x66\x72\x70\x20\x14\x3f\xac\x14\xe0\x7e\x5d\x77\x18\x7d\x54\x8b\x14\x5e\x7a\xa9\xdd\x4f\xc9\xc1\x15\x4c\x12\x8d\x9c\x30\x05\x56\xeb\x4b\x8e\xf1\x06\x6c\x10\x62\x3a\xce\x20\x34\xf1\x5f\x4b\x43\xf0\x4a\x96\x9a\x6e\x48\xfd\x27\x02\x39\x95\xea\xa5\xca\x3e\xfc\x05\xa6\x0d\x3f\x78\x57\xa1\xd4\xca\x64\xcd\x46\x31\x7e\x46\x53\x76\x89\x20\xf7\x54\x73\x60\x9a\x53\x9a\x1f\x46\x85\x39\x35\xf8\x26\x50\x5a\x31\x9b\x58\xfb\x58\x7e\x17\x83\xa9\xbe\x4c\x25\x86\xa5\xd1\x7f\x31\x94\x1e\x67\x55\x72\x9f\x39\x57\x90\x33\x05\xeb\x9c\x53\x7c\xdf\x27\x39\xfb\xbb\x8a\x0c\xc0\x56\x8e\xce\x88\x38\x19\x5b\x1e\xee\x08\x7b\xc6\xd7\x6e\xdd\x0d\xa2\xfe\x20\x66\xfa\x76\xdf\x32\xcb\x89\x1d\xbe\xd1\x10\x4f\xca\x75\xcf\x79\xd5\x96\x7f\x1d\x28\x7a\xc8\xb7\x08\xef\xc9\x25\x94\xb1\xa2\xa6\x7a\x4b\xc9\x22\x6c\x06\x5a\xa3\x7c\x98\xae\xd9\x19\x9f\xf6\x3b\xa5\x13\xee\x81\xca\xd3\x1f\xd6\x49\x31\x93\x5b\xb0\x49\x4b\x78\xd1\x52\x52\xd6\x4a\x81\x9b\x3b\x8c\xc4\x94\x34\x88\xbc\x85\xb1\x65\x7e\x0e\x11\xcd\xab\x06\x89\xaf\x6b\xc1\xda\xf2\x72\x7b\x3d\x42\x3e\x4e\xd4\xbb\x5a\x1d\x85\x6a\x78\x67\xac\x1b\xfc\xb5\xdc\x47\x0d\x14\xf8\x5c\xdb\xc4\xb1\xed\xdb\x2e\x47\xc0\x2e\x11\xe4\x09\x6e\x15\x28\x27\x4a\xd6\x22\x92\x06\xa9\x9e\x4e\xea\x79\x9e\x96\x98\xbb\x84\xa5\x8a\x5f\xef\x24\xfc\x52\x7b\x94\x95\x5d\xcb\x11\x22\x0e\x8c\x2b\xdb\xf9\xf0\x85\x46\x7e\xa2\x12\x45\x2b\x69\x31\x57\x6d\x50\x1c\xc0\xdc\x92\x83\x97\x65\xda\x6b\x17\x1f\x39\x82\xb6\x8f\x54\x67\xdd\xf7\x95\x10\x5d\x61\x63\x0b\xb2\x53\xa7\x20\xfd\xc1\xd8\x2b\x48\x7f\xa0\x08\x63\x8a\x74\x9d\x84\x9f\xb0\x73\x1e\x68\x2f\xe9\xb8\x6e\x3f\x55\xb9\xf7\x9f\x39\xee\xde\x35\x93\x74\x6d\xb2\x62\x33\x74\x21\xc2\xfc\x71\x85\x8c\x6f\x82\x4f\x49\x77\xca\x70\x94\xa5\x6b\x51\x6e\x58\xa0\x49\xb7\x09\x28\x00\xae\xf3\x50\x5e\x4e\x63\xe7\x41\xc3\xf9\xc5\x8a\x85\xe7\xc8\x7d\x27\x30\x2e\xb7\x03\x0d\xee\xcb\xf3\x47\xe8\x24\xc3\xe2\x60\x40\x99\xea\x02\x91\x1c\xff\x6f\x63\xb3\x0b\x74\xa3\xe5\x08\xed\x9e\x22\x2b\x2d\x2a\xad\x74\x7a\x21\xc7\x7f\x5d\xb1\xd0\xfc\x74\xac\xe8\x4d\x4f\x37\xa9\x9e\x67\x36\x2f\x36\x62\x79\x05\x99\xfd\xea\x67\x30\x34\x37\x74\xbf\xda\x3b\x8d\x95\xa1\x75\x93\x70\x0f\x32\x92\xfb\x13\x9a\x05\x18\x96\xeb\xb4\x7f\xc4\xa7\xf0\xe9\x98\x97\x0d\xf5\x7f\xcf\x54\x8f\x2a\x84\x36\x95\xad\x60\x7c\x7d\xe0\x19\x9a\xbe\xad\xea\x9e\x94\x1e\x08\x2d\xa4\x7b\x9d\xb4\xa2\xef\x50\xc0\x41\xe0\xa8\x2a\x15\xeb\x86\x78\xd2\xb9\x4d\x4c\x91\x66\x4c\x2e\xa1\x98\xdb\xf6\xbb\xc6\x38\x1c\x15\xf8\xc2\xba\xde\xfd\xbe\xe5\xf6\x28\xb3\x43\x52\x30\xd8\x26\x25\xc1\xd7\x0e\xc8\x10\x85\x96\x16\x9d\x62\x83\x07\xdd\x94\xbc\xa4\x2e\x0e\xe5\x29\x77\xff\xb9\xca\xf6\xd2\x12\xfb\xcf\x57\x51\x0d\xc2\xe9\x70\x7d\xec\xab\x76\x77\xf8\x59\x31\x53\xd7\x02\x15\x8e\xfe\x40\xb9\x91\xb7\x08\x15\xe6\x46\xc5\xf5\x34\xdd\xc4\x3a\x83\x51\x9f\xe2\xbe\x3f\xa1\xb9\xbe\x77\x10\x90\xcc\xb5\x37\x2c\x2c\x70\x51\xee\x22\xbc\x2c\x7e\x2c\x25\x8d\xfa\x10\xec\x0f\x5b\x47\xa6\xce\xc8\xae\xcd\x9e\xf5\x54\x83\x60\x60\x81\x0b\x7b\x0b\xdd\x27\x58\xca\x6f\x06\x95\x3f\x2b\x1c\x18\x78\x3f\x3c\xd4\x94\x6a\xe8\x09\x58\x72\xf8\x1b\x80\xbd\x31\x6e\x1f\x87\x04\xb3\x7e\x21\x41\x01\x9f\xfb\x6d\xc4\x18\xb0\x14\x97\xe1\x47\x3a\xf9\xcb\x5f\x7a\x81\xff\xe1\x07\x63\xd5\x89\x06\xc1\x60\xbc\xe1\x8e\x49\xb5\x3e\x1d\xf2\xda\x31\x7f\xfe\x09\x6d\x16\xe9\x69\x54\x14\x47\x77\xc6\x4a\x86\x07\x6a\x97\x22\x1c\xec\xb3\x3d\x65\x5c\x44\x43\x53\x58\x34\xc8\x02\x35\x77\x0a\x62\x02\xd8\xcd\x8c\x25\x77\xd9\xa8\x43\xf3\xce\x4a\xc0\x13\xe5\x3f\xd3\xfd\x75\xe5\x70\x45\x32\x15\x38\xb9\x76\x91\xad\xe0\xeb\x89\x3f\x46\xd2\x78\x63\x38\x8a\x42\x6e\x5f\x40\x26\xf9\x75\x5a\x79\x7c\x3d\x95\x40\xcb\x4a\xa8\xef\x61\x72\xee\xd2\x4a\xc2\xe2\x79\x3b\xf0\x63\xf0\xfb\xf4\xa6\xc2\xed\xb9\xdd\x0d\x5e\x58\xf8\xf7\xf4\x7b\xc1\x0b\x7c\x73\xac\x01\x3b\xdb\xfb\xbd\x84\x60\x58\xe9\x2a\x5e\x99\x96\x00\xd8\xa6\x14\x54\x1d\x78\x4b\x4b\x8f\xe1\x17\xf0\x6a\x3f\x0b\x14\xcb\xd5\xe9\xf1\x34\x61\x4c\x35\x6f\xd8\x54\x70\xd2\xa4\x7b\x40\x51\x80\x9e\x57\x75\xb7\x5b\x8a\x59\x6f\x16\x20\x4a\x27\xde\xa8\x4d\x71\xb5\x16\x15\xf1\xad\x90\x88\x5f\x57\xe7\xab\x35\xe5\x23\xba\xae\xcf\x27\x88\xab\x33\x57\xcb\x0b\x79\xa3\x9f\xe0\xf5\x99\x16\x04\x8f\x86\xbc\xcd\xa3\xb4\x61\x85\x34\xd1\x0f\x18\xa3\x22\x61\xa4\x71\x54\x62\xcf\xec\xa9\xa9\x9c\x56\x4e\x7e\x5a\x66\x58\x17\xac\x13\x3f\xf6\x65\xe4\x6f\xd7\x02\xa4\x7d\xcb\xed\xd8\x46\xb9\xa8\xb0\xe1\xc4\x03\x7b\x27\x5f\x2b\xaf\x76\x98\x26\xe4\x96\x83\x47\x07\x05\x70\x1e\x5c\xac\xed\x3b\x81\x07\x50\x6e\x2a\xf0\xc9\x7a\xd4\xb5\x28\xe7\x08\x6a\x94\x36\x87\xc3\x93\x7a\x36\x78\xe6\x2d\xe3\x1b\x35\xc0\xa3\xc8\xfe\x7f\xc8\x4d\x48\x92\xa0\x1c\xc5\x96\x1d\x60\x78\x13\xa8\x66\xf0\xb5\xa2\x71\x1d\x95\x71\xcc\xc9\x36\x51\xa3\xad\x4c\x83\xc8\xd7\x6e\xcf\xca\x1c\x9a\x5f\x04\xb8\x3e\x21\x9a\x77\xc4\x76\x42\x9d\x41\x8f\x2f\x8e\x4c\x03\xc1\x6c\x62\xfb\x71\xd4\xb7\x49\x48\x6f\xb0\x75\xa1\x5a\x9a\x5b\x17\x5c\x18\x97\x8f\xca\x6c\xd6\x4b\x04\xa2\xa1\x48\x00\x83\x0a\xe6\x7b\x5e\xc1\xb3\x4e\x4c\xb5\x13\xa7\x6b\xb6\xbb\xab\x32\xa5\xd8\x92\xa7\x02\x55\x30\x3f\xa9\x1a\x63\x6f\x06\x3e\xb9\x33\x37\x99\xc6\x61\xbb\xc3\x69\x67\xa7\x0e\x38\x2c\xd2\xa4\x5f\xb2\x16\x3a\x92\x97\xdf\x52\x0c\x9a\x57\x02\xdf\xdc\x77\x51\x55\x25\xf2\x92\xf9\x23\xd8\x3b\xa1\x39\x13\x4f\xa5\x81\x9b\xa1\xc8\xcc\x68\x24\x1e\x0d\x6b\x0f\x2a\xb9\xf3\xe3\xb4\x29\xc5\xda\x7b\xb1\xa3\x7c\x3d\x4a\xfa\xe8\x05\xc6\x2b\xff\x74\xac\x74\x02\xbe\xa3\xb8\xd0\x6e\x4c\x91\xa4\x7a\xad\x71\x6a\x38\x8b\x46\x26\x76\xc9\xba\x2f\x6d\x11\x3f\xd4\xd6\x55\x3f\x4b\x65\xd6\x6b\xd5\x7a\x62\xf9\xba\x16\x60\xfc\x47\xed\x7c\x94\x96\x85\xc6\xd7\x9e\xc5\x99\xc6\x37\xba\xdf\xc9\x64\x51\x5a\xe6\x73\x0a\x89\x7a\x8a\xe6\x03\xb6\xe8\xc1\xd8\x9f\x5f\xcc\x9d\xee\x68\x32\xf7\x69\x16\x16\xdf\x56\x1f\x0a\x97\x31\x5e\x9b\xb1\xd3\x7c\xd3\x24\x39\xeb\xf8\xc8\x68\x5d\xc3\xd0\x9c\xc0\xda\xe3\x1b\x47\x37\x62\xf2\x55\x52\x68\x16\x0d\x9c\x87\x34\x2b\x4e\xc0\xbf\x7a\x3c\xf8\x7f\x9f\x41\x58\xe1\xd0\x71\x1e\x93\x49\x23\xc7\xe8\x78\x25\x0a\x56\xd8\x8c\xf4\x4b\x79\x01\xe0\xe4\x7c\x7b\xaa\x3e\x4c\xbf\xcb\xe2\x10\x4d\x7d\xfb\x43\x6b\xb8\xba\xcc\x04\x84\xf8\x84\xb0\x11\xd6\x9d\xe0\xc5\x76\x2f\x36\xec\xe9\x39\x4d\x1f\xe7\xe0\x5c\x6c\x60\x80\x69\xe7\x25\xf1\xae\xa6\x19\xb6\x83\xd6\x2d\x82\x23\x89\x54\xbc\xf0\x6b\x78\x0b\xb6\x94\x42\x3b\xdf\x25\xa4\xab\x49\xc1\xd9\xcb\x1a\x48\x38\xa1\x7e\x4f\x69\x2e\x99\x61\x9a\x15\xd1\xab\x53\x06\xe7\x8c\x36\x38\x67\xc6\x8f\xf9\xc2\x5a\x64\xf0\x4c\x22\xcf\xe9\xcb\xcc\xd0\x45\x71\x7e\x8c\x27\xf8\x59\x37\xf9\x20\x4a\xfa\x45\x9a\x3c\xe1\x31\x62\x1f\xa9\x82\xd9\xf1\x29\x24\xf6\x58\xa5\xf6\x8f\xe9\x18\x65\x73\xec\x61\x3e\x97\x34\xc3\xc9\x2d\x5d\xf2\xb8\x35\x56\x5d\x5e\x33\x80\xbe\xe1\x28\x86\xc7\x06\x87\x11\x79\x7b\xd5\x0a\x26\xf5\x89\x53\xe4\x2f\xe2\x47\x7e\xa4\xce\x25\x52\x0f\xef\xa5\xd9\x90\xf2\x19\x4e\x0f\xcc\x75\xe0\x72\xe3\x23\x93\x4d\x2b\x09\x5b\x66\xfb\x12\x16\x6a\x09\x3c\x8b\x81\xcd\xac\xe9\x15\x36\xdb\xe5\xbb\x72\xcf\x7a\x41\xa8\xff\xee\x6f\x77\x7c\x41\xf2\xe7\xe1\x80\x0b\xb6\xd0\x17\x07\xf9\x64\xc4\x97\xdf\x1d\x7b\x09\x4a\x93\x15\xb3\x3a\xce\x57\x52\xcc\x9c\xe8\x90\x04\x80\xcf\x00\x9e\x6f\xe6\x0a\x4e\xd3\xc4\x66\x33\xe4\xb9\xe0\x8c\xbb\xad\xa2\xa7\xe3\x4a\x32\xf0\x82\x2a\xa9\x0f\x4c\x1e\x75\xa3\x70\x46\xf7\xd6\x4e\x89\x5d\xbf\x35\xa5\x8f\x53\x8b\x3e\xa9\xa3\xc7\x74\xd7\x22\x1c\x68\x9e\xa6\xd8\x53\x16\xd7\x8a\x43\x0b\x8b\x24\x55\x0d\x51\x1d\x49\x36\xfc\x98\xfc\x77\xbe\x76\x8e\xf0\xc8\x14\x85\xcd\x1c\xc0\x5d\x80\xce\xaa\xb5\xec\xea\xd8\xd7\x91\xc2\x74\x38\x22\xb5\x08\xe0\xa1\xd8\x9f\x9f\x72\x0f\xe8\x93\xdc\xe0\xef\x40\xc9\xb9\x29\xa2\x9c\x39\xc4\x70\x74\x21\x74\xe3\xeb\x5a\xc0\x4c\x4a\xb2\x54\x77\x74\x41\xd5\x74\x73\x86\xf7\xce\x37\xd2\xd5\x74\x60\x86\xe8\x79\x97\x6e\x3f\x5f\xe4\x3c\xd2\xa4\x94\xd1\xcb\x22\x9b\x50\x0e\xc9\xe5\x94\x77\x50\x73\x39\x5f\x4f\xb6\x0f\x28\xe5\xbc\xd2\x7c\x5a\xd4\xe7\xfb\xba\xc1\xeb\xfb\x53\xd8\xf0\xbc\x90\xae\x05\xc1\x4a\xa8\x52\xdb\xc5\xc0\x97\x8e\x57\x32\x6b\x56\x3f\x51\xbd\x25\x4c\xf7\x11\xb0\x13\xc2\xc7\x7e\x1d\x09\x0b\xbe\xa1\x3d\xeb\xf0\x26\xfb\x04\x6c\x3b\xd3\x51\x56\xe2\x94\x12\xbe\x85\x08\x25\xe7\x27\x10\x85\x4a\x61\x4b\xd5\xf1\xd9\x41\x66\xa5\xf1\x26\x7d\xdd\x62\x90\xa5\x65\x7f\x30\xe3\x2b\xca\xe7\xd5\x29\x0f\x9c\x06\x6a\x85\x77\x55\xc5\x31\x5d\xb3\x59\x98\x0e\x99\x18\x4c\xc2\x6a\x95\x65\xdc\xac\x4d\xfa\xfe\xaf\x3e\xdf\x2e\x4c\x2c\x23\x87\x40\x8c\xbb\x9e\xf9\xa6\x99\xee\x6b\xdd\x6c\xb8\xc2\x1a\x2b\xcd\xaa\x36\xa7\x93\x0a\x69\x12\x9a\xc2\xc4\x1b\xb9\xc0\x06\x60\x01\xd9\x34\xf2\xcd\xc4\xd7\x89\xbb\x51\x0e\x24\x1e\x80\x29\x30\x85\xa7\xe8\x85\xf9\x5a\xe1\x8d\xbf\x56\x9a\x38\xea\xc1\x59\xc7\x2c\xbd\x0e\xf3\x22\x8d\x96\xde\xee\x5c\x6b\x54\x8a\xe9\x67\x4a\x92\x50\xd2\x5a\x2d\x47\x25\xf2\xdb\xb5\x03\xb5\x1a\xaf\x30\xe5\xa6\x55\x57\x77\xf2\x88\x13\xcd\xa1\x5d\x66\x7d\x9b\x21\x67\xea\x5a\xc9\x1c\xf5\xfd\xe6\xf8\x6f\x7d\x4c\x25\x27\x4a\xba\xd1\x5a\xd4\x2d\x4d\xcc\x7e\xbe\x3b\x14\xab\x11\x93\x43\xb1\x41\x07\x3a\xb3\xfd\x32\x36\xd8\xbf\x0e\x2e\xe4\x0a\xcc\x17\x5d\x22\x7d\x25\x36\xe1\x2a\xc9\xcc\xcf\x78\xdf\x93\x4f\x6b\xd5\x7c\x27\x3d\xcd\x73\x4d\xec\x69\x59\x3a\x24\x61\x04\x05\x3a\x40\xe5\x51\x92\x3c\xf5\x06\x9d\xbe\x59\x5f\xdd\x50\x34\x61\x97\xa7\x3c\x5f\xda\xd6\x70\x5c\xdf\x53\x1e\x76\x3f\x33\x1b\xb3\x4a\x86\xf6\xf0\xf8\x63\xf9\x0c\x74\x1d\xa0\xa9\x80\x9e\xa7\x65\x31\xb0\x26\x2f\x14\x3b\xf0\x87\x9a\x1d\xb8\x4e\xd5\xb1\xb4\xd4\x1e\x1a\x14\x9d\xa7\x12\x72\x7c\xa3\x1a\xc2\xfa\x66\x08\x25\x7e\x21\x5d\xfb\x08\x7b\x1c\x9b\xf4\xcc\x58\xb5\x70\x81\xa7\x19\xb6\xe3\x7a\xa0\xea\x51\xaf\x8d\x3d\x84\xc8\x2f\x02\x0e\xba\x91\x09\xbf\x81\xe4\x10\x4e\xdc\x1d\x13\x5f\x0d\xbf\x3d\xf6\xcd\x12\x3b\x50\xf6\x15\x8c\x01\xfd\x34\xbc\x81\xbb\x63\x95\x54\xc7\x03\x62\x8e\x27\x5a\xee\xe6\xcc\x94\xab\x9d\x47\x7d\x28\x5e\x69\xad\x3e\x04\xfa\x7f\x3c\x56\x1a\x7a\x67\x9b\x20\x07\xb9\xed\xf2\xf8\xb9\x08\xe9\xc0\xbc\x8b\x90\x9e\x99\x7a\x5d\x26\xc4\x20\xa0\x1e\x52\x8d\x47\x91\xef\x10\x92\x91\x6a\xd8\x10\xff\x1c\x55\xd6\x9c\xca\x05\x94\xa8\xc7\xd3\xe3\x20\xe2\xeb\x1a\x2c\xe0\xc0\x7c\xdb\x26\x5d\x93\xf4\x85\xf1\x51\x30\xa9\xaf\xab\x44\xd1\xeb\x0d\xb6\xa2\x6d\x93\x97\x53\xdf\x94\x86\x00\xe5\x98\x42\xf0\x1c\x6b\x06\x15\x27\xb6\x17\x71\x0e\x1a\xbc\x43\xac\x95\x2a\x40\x0a\x8f\x7d\xbb\xad\x3c\xe9\xc4\xbe\xa2\x84\xd6\x78\x6f\xf2\x4d\x15\xa8\xf0\x9f\xfd\xbd\xff\x84\xd6\x32\xf3\x9e\x93\x3f\x28\x1c\xe8\x92\x56\xee\x95\x49\x62\x1d\x37\x37\x8e\xaf\x7f\x83\x55\xc7\x37\x4d\x2f\x3b\x28\x93\x6e\x66\xbb\x38\x48\x94\x81\x78\xde\x35\x03\x6f\xdf\xdf\x5f\x59\x6c\xf7\x4c\x14\xd3\x89\xe5\x04\xd5\x5d\x44\xf4\x90\x41\xbe\xb5\x6e\xdd\x03\xf3\xcf\x8b\x83\xe3\xec\xb0\x20\x89\xaa\x57\x13\x20\x51\x03\x63\x41\x2f\xf6\x27\x10\x2b\x97\x06\xbe\x5b\xf3\x88\x4a\x65\x0a\x47\xcf\x5e\x6c\x25\x3c\x1e\xb7\xd0\xe3\xf9\xae\x00\x54\x20\xe5\x6b\x3a\xdd\x31\x5d\x3f\x0c\x14\x9f\x15\x92\x7c\x2c\xb0\x49\x1b\x81\xc9\x70\x02\xa5\xfe\xce\x02\xc8\x18\x5d\xd6\x09\x94\x42\xbc\x66\x97\xa8\x46\x0a\x53\xba\x8b\xd0\x9b\x78\x55\x56\x1c\x00\x78\x66\xe7\x84\xf2\xcf\x70\xf3\x4e\x2b\x6a\x91\x3d\x13\xf1\xf2\x06\xb6\x57\x44\xe2\x21\x4f\x51\x08\x48\xfb\x4f\xcb\x51\xed\x7c\x53\xb5\x81\x55\x06\xab\x48\xc3\xa8\x6b\x67\x94\x48\xd1\x5d\x5d\xa6\xd0\x3c\xcf\x27\x54\x3a\xa2\xda\x3d\xb1\x14\xae\x61\x4c\xd8\xd7\x72\xa4\xc2\x5e\x11\xe6\xaa\x12\x5e\x4c\xa3\xf8\x29\x7c\x8a\xb3\xdb\x14\xf8\xa3\x60\x77\xab\x1a\x8f\xad\xd9\x8e\x0a\x35\xae\x2b\x0a\xcf\x3d\x13\xcf\xd5\xf3\x40\xc1\x31\x9e\xec\x78\xba\xdb\x5b\xa8\x61\x8b\x94\x37\x0d\x02\x30\xf1\xb7\x30\xd7\xd2\x09\x46\xd3\xeb\xf8\xf0\xfd\xc1\xc3\xf2\xc1\x58\x05\x8f\x4e\xb6\x09\xf3\x48\xa4\xff\x13\xb8\x8b\xc0\xb8\xdc\xd6\xef\x7a\x4e\xb9\x26\x23\x43\xbc\xf5\x5a\x18\x62\xac\x2b\xe5\x0d\xc1\xfd\xf3\xe0\x02\x50\x41\xf7\x39\x32\x80\x5b\x3f\xd7\xf1\xca\xd9\x57\x09\xde\x89\x14\xea\xcc\x44\xf7\xfe\x61\x64\x65\xee\x9a\xb0\x6b\xa3\xd8\x84\x38\xf3\xb1\x06\x6f\x04\x8a\xa6\x85\x06\x9b\xb5\x23\x1b\xb8\xe6\xf7\xb7\x87\x26\x1c\x44\xec\x33\xc0\xbf\x62\x78\x04\x96\xfd\x29\x7e\x00\x71\x84\xbc\x5b\x4a\x5d\xc5\x04\x15\xd0\x5d\x8f\x34\xee\x70\xda\x7e\x87\x8a\x07\x52\x28\x53\x3c\x07\xbf\x33\x7e\xd6\xab\x28\x64\x66\x68\x8a\x28\x14\x8a\xd2\xe7\x3d\x97\x8f\xe7\xf5\xa9\x47\x65\x0b\xed\x15\x0b\xfd\x76\xdd\xac\x5a\x4d\x20\xf3\x57\xea\x02\xe5\xce\x4e\x1d\x5a\x99\x26\x5c\xf7\x46\x02\x78\x67\xc7\x43\x73\x76\x2a\x95\xf1\x55\x93\x99\x74\xd5\xce\x7d\x5c\x3b\x8e\x2a\xc4\x1f\x19\xeb\xfe\x1d\x7a\x15\xfe\x87\x5a\x28\x50\xb9\x9b\xe9\xab\x26\x5b\x95\xed\x86\x04\x0a\x03\xf7\xa6\xbc\x75\xb1\x50\x4f\xb8\x0e\x03\xd3\x25\xf0\xe1\x14\x54\xb1\x5a\x5b\x80\x28\x9d\xd7\xa8\x07\x06\x98\x0a\x93\x63\x13\x25\x60\x38\x10\xfe\x3c\x04\x9a\x97\x61\xd2\xd1\xd7\x21\x8c\xbf\xcf\x6a\x1c\x80\xcd\x8b\x88\xc4\x67\xa6\xba\x21\x14\xa7\xd7\xa6\xa6\x9b\x58\x8d\xba\x34\xcc\x98\x49\xe8\xb3\xf0\x75\x6d\x58\x96\x96\xda\xf9\xc6\x70\x25\x15\x0f\x99\x07\x59\x99\xba\x4b\x8a\xe9\x35\xcc\xa2\x70\xd5\x82\xa5\x49\x64\x43\xab\xbf\x44\xb5\x08\x0c\x5f\x92\xf2\x6c\xf8\xa5\x38\x4d\xfa\xae\xf7\x40\xab\xfe\x23\x6b\x72\x4f\x39\xf5\xe7\x1b\x45\x1a\x36\xf2\x22\x1d\x45\xa6\xe5\x2b\x5d\xac\xaf\x21\xa7\x82\xdf\x2a\x66\xcd\x44\xb1\x59\x89\xed\x23\xad\x85\x05\xdf\x00\x50\xc5\x91\xc8\x42\x3d\xa0\x43\x1e\xbf\xbc\x63\xe2\xbb\x85\x4f\xe2\x1b\xf9\x13\x81\xea\xfa\xfb\xc3\x60\xaa\xe1\xb6\x7a\x08\xc4\x10\xb7\x81\x84\x83\x29\x99\x75\x5a\x1e\xf9\xc0\x66\x2b\xb6\x98\x42\xae\x8f\x15\x72\x3d\x78\x7a\x7b\x05\xeb\xc5\xf6\x17\x88\x49\x4d\x30\xe7\xd5\x1f\x03\x02\x04\x26\x35\x38\x73\x67\x71\x12\xc2\xda\xdc\x56\xe9\x8b\x6b\x81\x06\x5e\x50\x66\x8a\xbd\x15\x2c\xc7\x1f\x28\xb5\xbd\x97\x7f\xa0\x1b\x6d\x6d\xb4\xa2\x85\x29\xd9\xa6\xf0\x4d\xa3\xac\xdc\x8a\xe1\x84\xbd\x30\x82\x28\x01\xae\x26\xed\xdf\xfd\x6d\x13\x65\xeb\x66\x43\xba\xc0\x11\x8b\xbf\x15\x28\x9d\x21\x4d\xec\x95\x96\x45\x66\xfa\x10\x77\x86\x45\xf9\x63\x5a\x93\x7c\xdd\xb4\xba\x4c\x9e\xdb\x4c\xa0\xb6\x4e\xb0\xc5\x83\xc7\xaf\x34\xba\xd5\xeb\x42\x5c\xcd\x55\x42\x1a\x4e\xa9\x18\xfa\x7e\xdf\xa1\x49\x06\xa6\x28\x4c\xb2\xcb\x4f\xe0\x6b\x81\x3a\xf1\x7e\x83\xac\xbe\xd0\x63\x29\x8c\xe6\x49\x3c\x03\x16\xda\x49\x9d\x2d\x3b\x56\xf3\xa9\x09\xab\x31\x2a\x57\xe2\xca\xc7\x6a\xf9\xec\xdc\x3b\x18\x26\xbe\x71\xc0\x94\x72\xb4\x6e\xb2\xee\x9c\x67\x91\x7d\x9c\xdc\x1f\x64\x43\xa1\x5b\x86\x45\x72\x53\x01\xf7\x7e\x97\x9c\x1f\xc4\x5d\xc7\x6a\xbd\x8d\x07\xe6\x5d\x2b\x25\x2f\x1d\xc4\x0c\xdf\x19\x2b\x45\xe1\xef\x38\x16\x12\x53\x45\xaf\x39\x51\xc8\x62\xea\xff\xc7\xb1\xaf\xdc\x31\x7a\x19\x36\xfc\xc6\xc7\x76\x4f\xd9\x57\x46\x36\x8b\xa4\xe4\xe5\x7c\x73\xed\xa8\xbb\x37\x5e\x31\xf1\xab\x26\x54\xc5\x3d\xe6\x25\x94\xfe\x70\xf9\xbb\x21\xf1\x79\xed\xae\x46\x06\x2d\x57\xff\x96\x9e\x0b\x67\x21\x77\xaf\x22\xf7\xbb\xa7\xe3\x8f\xd2\xd7\xc6\xca\x06\xfe\xfa\x58\x11\x26\x03\x1f\x01\x87\xe3\x1d\x57\xe7\xe9\xd9\x95\xcf\xcf\xa1\x6d\x50\x41\xdd\x50\xd9\xc7\xcf\xa2\xcb\x48\x00\xca\x0a\xb5\xf0\x89\x8e\x3c\x6a\xd7\x0c\x4d\xdf\xce\x91\x4d\x74\xdc\x38\xae\xb6\x7b\x29\x50\x08\xf0\x7f\x31\xf6\x29\x54\x9c\x89\x80\x85\xdd\x6c\xf4\x32\xb8\x44\xa6\x55\x78\x1f\x04\x4a\x85\xf7\x81\xaa\x0b\x86\x26\x2f\x4d\x4c\xc1\x29\x1e\x9c\xbb\x65\xb8\xdc\xaf\x3a\xca\xeb\x12\xe8\x95\x35\xe8\xa7\x71\xaf\xe5\xf7\xe7\x05\xd5\x8e\x5c\xe7\x01\x38\x30\xdf\xa6\x35\x9e\x0f\xa4\x7e\x83\xd7\xd0\xec\xec\x6c\x81\xb0\x4c\xef\xab\x30\x3a\x4b\x57\x4a\x26\xc7\x77\xa2\x9d\xd5\x5f\xf2\x4d\xa3\xea\x38\x61\x23\x65\x24\xa6\x84\x47\x85\x04\xd8\xe3\x28\x49\x72\xc8\xb0\xce\x69\x35\x27\x80\x78\x22\x43\xc0\xd7\x1d\x95\x9a\x0a\x4d\xd2\x35\xf1\x1c\x6d\x78\x44\xe3\x20\xde\x95\x16\x5f\x9a\x3e\xfe\x07\x25\xc6\x75\x4d\xc9\x70\xd6\x3b\x77\xc1\x34\xb5\x2a\x19\x13\xcc\xfe\x98\x06\x95\xaf\x55\x56\x30\x1a\x56\xfb\x87\x13\x69\x0e\x5d\xe6\x0b\xed\x7e\x57\x0c\x36\x56\xb2\xa8\x3b\xa7\x6c\xc9\xe6\x36\x5f\x77\x2a\xc3\x59\xfd\x9c\xd3\x26\x5a\x5e\x76\xfc\x53\x3e\x63\x90\x66\xab\x76\x38\xa3\x74\x48\x20\xf4\x0a\x28\x02\xa3\x74\x38\xd1\xaa\x5a\x67\x4c\x99\x17\x59\x64\x34\xb9\x17\x77\x0c\xf1\x4d\xa3\x98\x42\xda\xeb\xe5\x83\x34\xb3\xb3\xe4\x72\x8a\x50\x58\x35\xa2\xd8\x10\x68\x01\x91\x90\xc5\xc3\xfc\xdf\x52\xd9\x76\x76\xbc\xf3\xdd\x2d\x27\x91\x05\x26\x5c\xc4\xfa\x73\x13\x85\x17\x04\x2a\x84\xff\xa1\xe3\x2d\xce\x1f\xe1\xf4\xe5\x4f\x07\x53\xcc\xce\xbe\xe7\x3b\x5a\x09\xff\x8b\xff\xb8\x9b\x26\x69\x7f\x50\x4a\x4a\xd8\xa5\xc5\xab\x1f\x91\xb4\xb8\xd7\x8a\x84\x9f\x27\xcb\x14\xe5\xb7\x6b\xf4\x52\x7c\xdd\x10\x89\x2c\x56\xd1\x51\x01\x87\x88\x1d\xaa\xc0\x63\x56\xce\xab\x57\xcf\x6d\xb6\x16\x85\x36\x7f\xa2\x5a\x9c\x0c\x4e\xa6\x6d\x8d\x3c\xe5\x2c\x08\x77\x64\xc5\x28\x21\xd8\xf3\x48\x1d\x49\x9b\xba\xc7\xad\x9e\xa6\xf8\xc9\xad\xf3\xca\xf7\x17\x3d\x06\x05\x95\xfc\x3a\x42\x04\x85\x4e\xf9\x92\x44\xba\xaa\x86\xf2\x10\x86\x89\x3f\x42\xbd\x00\x38\x4f\xee\x2a\x80\x68\xfa\xf9\x15\x45\x59\x73\x34\xf0\x60\xd1\xa3\x5a\x06\x20\x36\xe1\xea\xac\xaa\xbe\xff\xc9\x58\x65\x3d\xff\x84\xf6\x9d\x13\x37\x70\x2d\x4a\x27\xdd\x11\xf3\x6a\x9a\x48\x6b\x90\xd0\xc4\xd3\xe7\xf1\x99\x0f\x03\xbf\xcb\x7e\xac\x8a\x26\xfd\xcc\xac\x59\xd0\x58\xb9\x44\xfb\xb2\x4f\xb4\x6f\xcf\xf1\x7c\xa1\xfa\x00\x1f\x78\x0e\x1a\xe2\x93\xd2\x75\x9b\x79\x68\x7e\x3f\xe3\xb0\x65\x81\x60\x65\x9e\xd4\x28\xe0\x93\xae\x2e\xd6\x8d\x5e\x7d\xb5\x5a\xe8\x39\xb9\xea\x30\x39\x60\xb2\xc6\x16\xbb\xab\x38\x1b\xbe\xab\xaa\xa3\xeb\x26\x8e\x47\x66\x34\x15\xe4\x9d\x56\x03\xfd\xa1\xce\x6d\xbf\xb1\x4d\x33\x94\x83\x49\x07\x4b\x50\x22\x9d\x2a\x1f\xd7\x47\xdd\x8a\x5b\x69\x02\x1f\xd0\x5c\x1b\x3f\xab\x2a\x75\x71\x9a\x44\x26\x8e\x72\xe6\x5b\x17\xf0\x84\x42\x87\x9f\x53\x3d\x8c\xbd\xd8\xac\x33\x65\x02\x2b\x63\x06\x5e\xcd\x64\x4a\x89\xe7\x2e\x1d\xae\xfc\x0f\xc1\xd3\xfa\x17\x63\x6b\xfa\xa5\xcd\x67\x55\x9f\xef\x0d\x25\xa6\x77\x8f\x9e\x15\xc7\x23\x33\xa3\x63\x55\xdf\x71\x91\xe2\x2a\x84\x50\x68\xf0\xa4\x59\x9f\xbe\x0d\x5e\xc4\x0c\xf9\x1a\x5e\xf9\xd5\x0f\x5e\x66\x8a\xb9\x2a\x1c\x41\x24\x0d\xe2\x0a\x97\xa6\x5f\x76\x5a\xb4\x28\x7b\xc0\x29\x82\x8c\x28\x37\x21\x35\x12\x04\x87\x26\x31\x5d\x91\xa2\x14\xee\x0c\xd5\xea\x75\xc9\x23\x66\x07\x26\x1b\xd9\xbc\xa0\x07\x17\x02\x10\x8f\xeb\x3a\xa3\xe3\xa6\x7b\x81\x4f\x36\x0f\x6d\x16\x0e\x4c\xd2\x25\x8a\x21\x57\x0a\xe0\x14\x96\x0e\xf0\x30\x18\xf7\xa7\xba\x18\xb3\x9e\x0d\x8b\x78\x63\x56\x09\x87\xa1\x16\xeb\x68\xbb\x1c\xf4\x83\xcf\x78\x01\xae\x3e\x23\xd5\xdf\x34\xcf\xa3\x15\x61\xe2\x50\xbe\xdb\x9b\x2a\x7e\x7d\xb3\x89\x1c\xd3\x94\x45\x3a\x74\xe0\x2c\x47\x90\x5e\x3d\x89\x84\x77\x1e\x2b\xd1\x4f\xb9\x60\xcc\xbc\xfc\x48\x3b\xe3\xef\x8e\xa3\xbb\x0a\xf0\xbf\x7b\x35\x2c\x98\x63\x08\x28\x87\x51\x91\x0e\xd3\x99\xd6\x2f\x3f\xef\x03\x48\x17\xb8\xb1\x96\x10\x23\x7e\x55\x60\xd6\x13\xbd\x7b\xa4\x62\x3f\xa0\x22\x38\x5f\x6b\x2e\x2c\x10\xe3\xb6\x14\xa2\x2e\xf0\x32\x59\xcd\xda\xa9\xeb\x69\x56\x0c\x76\x79\x8f\x0b\x82\x0f\xc8\xb5\x72\x57\xa8\x68\xac\xd0\x19\x07\x53\x76\x6e\xec\x11\xf2\xc7\x55\x7d\xe0\x8c\x4b\x93\x87\xa6\x1b\xc5\xb1\x09\x69\x2d\x21\xed\xa0\x25\x29\x39\x02\xc2\x22\x3b\xa7\xea\x53\x23\x92\x95\x75\x4e\x3a\x5c\x48\xbe\xae\x2f\xef\x03\xfb\x3f\xdb\xee\xdb\xa4\x8c\x12\xc4\x88\x8c\xb2\xa4\x79\x17\xc4\xe5\x76\x47\x95\x28\x08\xd6\x64\xa5\x68\x40\x85\x60\x28\xfc\x88\x76\x33\xf0\xe6\x55\x91\x8d\x80\x1b\x7d\x89\xfe\x84\x6a\x7e\x35\xa1\xe9\xda\x61\x14\xce\x2a\x92\xba\x0b\x70\x0b\xe0\x13\xf1\xf9\xc1\x37\xdc\x27\x27\x7e\x4a\x7d\x66\xda\x51\x9e\x97\xf2\x90\x12\xaa\xab\x9c\xd2\x0f\xc6\xcf\x4e\xa7\x0d\x2a\x5f\xff\x85\xfd\x9f\xd5\x47\xde\x25\x85\x06\x39\xae\x4a\xb7\xc7\x35\x0b\xd6\xa5\x5a\x3f\xa9\xac\x56\x52\x22\xb2\xc2\x7e\x28\xd0\x08\x3c\xf8\x54\x1a\x57\x5a\xb4\xb7\x93\x14\x00\xf5\x91\x14\xa6\x9f\x26\x51\x2e\xc5\x4d\xd7\xdd\x57\x7d\x54\x3a\x77\xbc\x45\xb0\xc3\x15\x53\x14\x31\x37\x41\xa3\xe6\x76\x03\x6f\xce\x37\x0d\x0e\xd0\xfe\x76\x5e\x10\x8b\xf4\xa1\x79\x07\x97\x9b\x02\xd2\x6d\x4f\x43\x2e\x2f\xb7\xc3\x12\xbc\xd6\x38\xde\x41\xd2\xc6\xd7\x0d\xc8\x99\xc5\xb6\xc9\x37\xe2\x72\x88\x6e\x02\x29\x89\xb4\x1c\x6d\xce\x2d\x45\xf2\x76\xa9\x56\x95\x39\x34\xcf\x5c\x87\x6b\x36\xcb\xf9\x80\x44\xfa\x19\xe0\x5c\xbe\x56\x5d\x13\xdd\x28\x59\x8d\x84\xf9\x17\xa9\xc8\x0b\x70\x39\x85\xb9\x4b\x35\x6b\xe8\xbe\xaa\xb0\xf2\x8e\xf3\x56\xeb\x8b\xbf\xca\xbb\xb8\x45\xa0\x10\xbe\x9e\x7c\x1c\x91\x44\xbf\x34\x99\x49\x0a\xcb\xd5\x0b\xd8\xd8\x0b\x2a\xa0\x65\x80\x01\xd2\x9b\xb7\x54\x6f\x4f\xcf\x84\x36\x8e\x7a\xdc\xe8\x88\x11\x78\x5b\x8d\xc6\xdb\x4d\x1c\x2b\x61\x1a\x77\xe9\xac\x80\x3f\xf5\x50\xe1\xb7\x18\xf1\x25\xb8\xb2\xc7\x14\xf0\x2c\xdb\xe5\x53\xd3\x7f\x45\x1f\xe1\x00\x20\x50\xaa\x6e\xd7\x60\xc0\x9d\x9a\xa8\x2b\xe3\x72\x38\x24\xac\x2c\x0d\x15\xed\x28\x59\x4b\x23\xaf\x05\xee\x44\xef\xbc\x00\x5e\x53\x4a\xeb\xf9\x76\x38\x28\xb3\x70\xa0\x68\xe1\x27\xf8\x29\xbe\x69\x66\xd0\x2e\x47\x31\x8e\x4b\xc7\xdd\xa5\x89\x0c\x7e\xe9\x05\x77\xe8\x09\x13\xd9\x28\xe2\x24\x22\x42\xf0\x37\x55\x38\xfe\x66\x13\xb4\x31\x25\x89\x6e\x5a\x40\x4e\x8e\x54\x69\x93\x36\xa5\x56\x4d\xaf\x3a\x8d\xa7\x38\x39\x18\x49\xc0\x37\xaa\x20\x63\xfa\x26\x4a\xf2\xe2\x49\x8a\x0b\x78\xbd\x60\xe8\xe1\x17\xb6\x26\xbe\x4f\xe4\xa4\x6e\x15\xbc\x31\xf6\xbd\xbc\x9b\x8a\xc1\xe2\x3a\xa8\xcc\x9c\x94\x7f\xe5\x45\xcb\x5c\xeb\xee\x97\x8b\x0a\x39\x09\x73\x8c\xc0\xfa\x7f\xd2\x29\xdb\xd3\x81\xe2\x30\x67\xe2\x24\xd8\x8f\xd9\x8e\x2a\xd6\xce\x76\x2a\x7f\xcb\xd1\xde\x1e\x10\x4e\x88\x7b\x4d\x68\x63\xe4\x68\xa6\x22\x33\x68\x4f\xf2\xb5\xca\xbb\x86\x69\x42\x4a\xcb\x90\xfe\x70\x61\xea\xb2\xe0\x14\x76\x40\xcf\x53\x60\x84\xd5\x4b\xc0\x54\x5d\xa3\x70\x0a\xb5\xb4\xeb\xba\x42\x7c\x5a\xf3\x3c\x7e\x8b\x86\x0d\x75\x87\xb7\xb0\xf8\x91\x14\x9e\xe2\x1b\x3f\x4f\x27\x33\xa2\x94\xa7\x80\xb0\xe2\xef\xd2\x49\xdf\x28\x5c\x05\x90\x18\xf1\xc1\x43\x45\x61\x35\xad\xb1\xa6\x1a\x85\x36\x55\x07\xe2\x94\x0c\x72\x54\x44\x61\x9a\xb1\x22\x93\x9c\xc0\x0a\x83\x7b\xdd\x89\xf8\x56\x9e\x5f\x9a\x0d\x4d\x12\x3a\x51\x3f\x60\x11\xae\x69\x2c\xfa\x35\x18\x0f\x19\x53\x46\xd3\x53\xb2\x76\xf1\xa0\x08\x0f\x01\x6f\x2a\x2a\x44\x4f\x78\xb7\xd0\x53\x15\xc0\xd1\x40\x69\x82\xaf\x55\xb3\x41\x99\xf5\xb9\xa8\x32\xa5\xed\x29\xf9\x5d\x1f\xb6\xfc\xa7\x7f\xf7\x3f\x6b\x55\x0b\x06\xf0\x7a\xb0\xeb\xf3\xb5\x02\x1b\xf4\x4c\xa6\x60\xa5\xcc\x5a\x27\x38\x49\xbf\xde\x2f\xa9\xc0\xfb\x9a\x6e\x4b\xf9\x6e\x93\x4c\x7d\x9e\x52\x07\x1d\x66\x16\x40\x3f\xe4\xa7\x61\x9f\xa4\x24\xba\x3d\x97\x7c\x68\x7e\x79\x7b\x2a\x17\x65\x9a\x63\x4a\x41\xfb\x58\xa0\x89\xc7\x2c\xc9\xab\x55\x7b\xc1\x21\x54\x1c\x47\xd2\x05\x45\x08\x98\x17\x19\x89\x88\x2f\x8b\x68\x3c\x74\x36\xf8\x5a\x51\x36\x77\x6d\x92\x8a\xca\x51\x8e\xc2\x3a\x0e\x4d\x24\x57\xe0\x3e\x7c\x0b\x1b\x1e\xb3\x78\x56\xd5\x29\x4d\xb8\x9a\xa4\xeb\xb1\xed\xf6\x85\xc1\x0e\x4b\x9d\xf1\x36\x2e\x2a\x73\xf2\x91\xc7\xd5\x54\xc4\x51\xf8\x28\x16\x97\x8b\x67\x9c\x57\x71\x72\x1a\x42\xe8\x41\x87\x7f\x8b\xd2\xbc\x4e\xee\xbc\xfa\x49\xd1\x6e\x53\xed\x75\xf8\x79\xec\xda\xc7\x90\x32\x02\x28\x08\x93\x83\x5a\x94\xe6\xe7\x1c\xd9\xfc\xd1\xea\x8b\x85\x51\x44\x53\xce\xd3\xaf\xc3\x37\xdc\x83\x1c\x0c\xb9\x98\xbf\xda\xee\x78\xb6\xb2\x7f\xfe\xff\xef\xd4\xb6\xa0\x24\x3f\x5d\x67\xc1\xdc\x2f\x4e\x94\xd3\xbe\x6b\xa2\x82\x61\xcf\x38\x1c\x9b\xa4\x9b\xc7\xa4\xfa\xe6\xf8\x31\x90\x55\x86\x0d\x00\x79\xb0\x88\x9b\x6d\x97\xc9\x5a\x5a\x6a\xf7\x2b\x47\x26\x19\xda\xa4\xe0\xc6\x59\x71\x78\xab\xef\x10\xa7\xd6\x47\xd5\xd6\x64\xc5\xe0\x6b\xa5\x59\xb5\xe0\x49\x05\x88\x0b\x6e\x3a\xd0\xaa\x5b\x63\x95\x01\xfe\xa6\x42\x85\x5c\x23\x00\x37\xab\x98\xe0\x14\xc1\x12\xb9\xa6\x66\xf9\x97\x16\x72\xa4\x33\x29\x07\xf8\x85\x4f\x23\xb3\xcf\xda\xc7\xec\xb1\xa2\x11\x92\xd5\x13\xe8\x1b\xfe\xef\x9f\xa7\x58\x07\xd5\xf6\xab\x53\xfd\x6f\x71\xf1\xf9\xd6\xb4\x22\x0a\x7d\xbd\x1c\xa3\x3e\xcd\x14\xc6\xe5\xca\x94\x3c\xc3\x09\x3d\xad\xb7\x54\xef\xfb\xf9\xda\x38\xc2\x29\x0c\xe3\x32\x8f\xd6\x2c\xe3\x78\xa5\x19\xaf\x1a\x7f\x69\xd2\xf3\xaa\x3b\x59\x14\xda\x5d\xaa\x1e\x71\x9d\xdf\x8d\xef\x82\x29\x89\x52\xd7\xc4\x74\x42\xc9\x3d\x9c\x98\xca\xed\xaa\x6d\x6f\xba\x6b\x95\x29\x46\xa7\xb2\xcb\xe6\xf9\x6c\xec\x29\x00\x7a\x30\x73\x5b\xaa\x55\x0e\x7c\x06\x5a\xad\x48\x72\x84\xb4\x9f\x5d\xb9\xbe\x3a\xee\x14\xbc\xfa\x45\xa7\xe9\xe3\x33\xc2\x2b\x71\x99\x14\xa2\x1b\x0c\x7b\x79\x4b\x29\xa1\xdd\x6a\x00\xce\x2e\xb7\x8b\x2c\x5a\x93\xb4\xb7\xdb\xa5\xae\x93\xfe\x7c\xf0\xa9\xed\xd5\xd5\x45\xf2\xd9\x1e\xab\x76\xa2\x48\x91\x61\x14\x85\xfa\x8e\x1e\x15\xae\x0a\x73\x00\x61\x8d\x5e\xd5\x2c\xbd\x37\x68\x5d\x62\x97\xdd\xa3\x81\x87\x27\xfb\x97\x34\x75\xc8\xd3\x20\xe6\xc2\x90\xb1\xdc\x84\x6e\xbc\x14\xaf\x47\x85\xcf\xae\xa6\xf4\x72\x1a\x25\xbb\x15\x19\xce\x59\xad\x20\x77\x9e\x1c\x28\x00\x8c\x76\x77\xa6\x34\x91\x68\xf1\xc1\x0c\x11\x19\xec\xd6\x05\x45\x37\x71\x4e\xa5\xf8\x9c\x3e\x2d\x5c\x4a\x37\x72\x7e\x14\x9d\xd0\x5f\x98\x96\x59\x31\xa3\xd5\x18\x7e\xa6\x54\x0f\x38\x2e\x40\x54\xba\x63\xa2\xb6\xc6\xab\x36\x1c\x68\xc0\xed\x07\xaa\x56\xfe\x81\xfb\xf6\x81\x8d\x92\x57\x75\x9f\x9e\x2e\xe5\x6d\x06\x8f\xf9\xa6\x2d\xce\x81\x00\x2d\xc1\x34\x42\x7c\xd3\x2c\xe1\x99\x6c\x50\xbc\x20\x4c\x55\xbe\x13\x64\x8a\xb9\x81\xa3\x61\xa9\xea\xb5\x9c\xa8\xf6\x0d\x82\x06\x48\x73\xa5\x6f\xc6\xc8\xad\x7d\xbc\x9a\x64\xfc\xd5\x35\x1a\x60\xac\xd0\x9d\x54\xf7\xc0\x91\xb0\xb3\xa3\xb0\x3c\xf7\xc7\x8a\x34\xfd\x6d\x62\xe8\xc1\x9e\x3d\x06\x9f\x55\xe8\xe8\xbc\xd8\xf3\x91\x40\xf7\x86\x6e\x01\x6f\x05\x9f\x77\xe7\xc4\x87\xf2\x57\xe0\x71\x8b\x10\xba\xaa\x12\x6e\xd6\xca\xca\x87\xe6\x5f\x6c\x0f\x4d\x94\xf4\x32\x33\xe4\x24\xb5\x1c\x84\xea\x50\x6c\xa2\x29\x5c\x4f\xb3\xd5\x19\xcf\xbc\xc8\xcb\x0c\x37\x58\x33\x98\x87\xab\x0d\x32\x02\x45\x49\xea\x42\x9e\xd2\xeb\x92\xee\x08\xba\x54\x83\xa2\x1c\xfc\x2a\x8a\x6f\x16\xd1\xbc\xae\x42\x89\xd5\x9a\x6a\x2f\xcd\x8b\x2c\x2d\xf3\x16\xb9\x80\x28\x16\x00\x44\xca\xd7\xb5\x50\xbc\x72\xa5\x46\x36\x8c\x4c\xec\x9a\xa4\x70\xba\x5c\xd6\xba\x1c\x97\xa7\x3a\xf6\xd3\xdc\x3e\xab\x38\x4f\x8f\x8e\x55\xea\xef\x21\x16\x22\x06\xe3\x7d\xda\xfd\xc8\x07\xdf\x0a\x3c\xaf\xaf\x60\xb9\xe0\x8b\x3f\xda\xa1\x6c\xa1\x2b\x93\x54\xf6\x06\xee\xc9\x9b\xf0\xe5\xf1\xa1\xab\x88\x87\x60\x7c\x2e\x63\xcc\x55\x01\xf7\x45\x4e\xc2\xdc\x1c\x4f\x73\xea\x1c\x9a\x67\x5f\xfb\x26\x8c\x17\xeb\xd0\xd3\xa0\xd0\x98\xff\xc6\x93\x14\x99\x39\x7e\xba\xc5\x83\x1c\xa0\xec\x9d\x78\xf0\xec\x77\xe1\x54\x53\x64\xf3\xf5\xbd\x90\x8c\x16\xd1\x6d\xa7\x3f\x36\xc8\xca\xbc\x98\xf3\xb4\x29\x17\x75\x52\x82\x19\xce\x11\x71\x9c\x57\x7b\xff\x08\x8e\x71\xac\xf9\xff\xab\x89\xf8\xa7\x17\x65\x76\x68\x12\x34\xdb\xc2\xc1\x9b\x9d\x78\x14\xcc\x6c\x47\xc3\xa2\xf2\xc2\xc4\x31\x14\x34\xe9\x07\x85\x77\xbe\xe5\x39\xe8\xa7\xf0\xd7\x3d\x9b\x74\x1f\x69\xb9\x86\x59\x56\x69\xc6\xd6\xe2\x88\x4b\xa4\x8a\x15\x73\xf5\x85\xb1\xe7\xa9\xd8\x81\x20\x0b\x25\xa3\xb9\x8e\xef\xdd\x9b\xa1\x81\x15\xb6\x1e\x9a\x23\xfe\xaa\xda\x32\x5f\x3c\xd8\x1e\xa4\x45\x61\xf3\xa2\x45\xb3\x8c\x13\x03\x85\x3e\xbe\x6e\x90\x50\xa0\x86\x7a\x9c\x90\x8b\x6c\x28\x7e\x82\x83\x85\x6f\x9c\x59\x1d\x5a\x5b\x30\x56\x0d\x5f\x87\x7a\xb4\x2a\xab\xef\xf7\xbb\xb9\x7a\x67\x69\xe1\x6c\x52\x8c\x71\x45\x57\xdf\x71\x87\xf1\x85\xeb\xf8\x11\x91\x86\x39\x31\x6f\x17\x32\xde\x53\x1c\x8c\x59\xb4\x66\xdd\xd9\xae\x3b\x20\xc5\x0e\x48\x96\xa3\x17\x86\xe4\x95\x4e\x35\xe2\x23\xa6\xdf\xd9\xc1\x2e\x92\xb0\xcf\x7f\x7b\x31\x48\xcb\xfe\xa0\xd8\xd3\x72\x3c\x1d\xcc\x0b\x28\xb2\xca\x8a\xb2\xf0\x3a\x0d\x84\xf0\x7c\xe2\x1b\x05\x68\xdc\x72\x3c\x72\xef\x69\xc5\xe1\x4d\xdd\x1e\x7c\x6e\xaa\x64\x53\xc4\xf6\xe9\xea\xfb\x70\xfa\x33\x0d\x1c\xdf\x50\xb4\x80\x20\xf2\x06\x19\x03\xf7\x6d\xd5\x57\x23\x41\xc5\x5c\x49\x58\x8b\xb7\x50\x25\xe5\x7f\x21\xc7\x00\xa9\xbf\x27\x20\xa9\x86\x8d\x75\x4b\x67\x64\xe6\x28\xd8\xc0\x92\x63\xb3\x20\x31\x3e\xd9\x95\x29\xca\x78\x6c\x39\x39\x5a\xdc\xc2\x5e\x5a\x62\x27\x05\xe4\x26\x9c\x46\x43\x49\x43\x3a\xcc\x69\x91\x49\x67\x9a\x17\xe4\xce\xcb\xbc\x30\x51\x02\x81\xb1\xc5\x83\xde\x39\x3a\x20\xe0\xe2\x7a\xba\x96\x52\x66\x89\x7d\xa5\x50\x15\xc0\xf3\xf4\xb2\x7c\xad\xbe\x3f\x8b\xfa\x83\x62\x60\x92\x2e\xb7\x27\xe3\xa5\x4f\x8f\x7d\x7e\xea\xb4\x0b\xf8\x87\x5c\x76\xa3\xa1\x42\x06\x05\xec\xa0\x78\x6d\x14\x3b\x05\x90\xd3\xd0\x23\x36\xca\x54\xee\x0f\x0b\xe7\x8c\xe2\xb7\x39\x53\xc3\x23\x7c\xa1\x5d\xd8\x70\x90\xa4\x71\xda\x07\xa1\x3b\x7b\xfa\xc1\x14\x79\x44\x43\x66\xce\xc4\xd1\x1a\x62\x2f\x91\x62\x6e\xb9\xd6\x78\x00\x12\xe1\x1d\xbc\xed\xfa\x4b\xed\x9a\x4d\x8a\x92\xa0\xba\xd5\xd0\x36\x62\x3f\xf7\x2a\xe7\x2e\xac\x02\x34\xcd\x21\xf9\x8e\xf6\x0d\xde\x51\x25\xeb\x38\x4a\x6c\xbe\xcb\x1b\xcb\x0f\x68\x98\xa4\x4a\xaa\xf6\xcd\x29\xda\x37\x2e\xf1\xef\xe3\x38\xe4\xe0\x70\x02\xdc\x50\xf4\xb6\xbd\x28\x21\x70\xcf\xac\x13\x60\xe3\xfe\x29\x47\xf9\xbc\xe0\x54\xeb\xc7\xaa\xc7\xaa\x96\xcb\x5c\x5a\x6a\xc7\xd4\x67\x44\x96\x12\x60\x20\xb4\xf9\xf3\xb5\x82\x30\xe5\x69\x2c\xb1\x14\xbb\xf0\x4a\xa7\xce\x93\x03\x75\xd3\xb0\x48\x45\x41\x59\x4c\x90\x32\x47\x4d\x58\x1c\x34\x5c\x4a\xb2\x4a\x08\x90\x94\xf1\x9c\xb8\xa5\x38\xa8\x86\x5f\xec\x34\xe6\xf2\xa6\x16\xb6\xb8\x39\xd6\x1a\x1f\x65\xe5\x8d\xb4\x74\xa6\x3f\x50\x44\x42\x17\xd4\xdf\x66\xd5\x3a\x28\x2d\x72\xae\xd8\xa7\x17\x03\xc5\xea\x7f\x89\x4e\x73\x84\x7a\xbb\xe0\x65\x60\xcf\x7e\x7b\xec\xc9\x8d\x39\x06\x14\x6a\x74\xdd\xa8\xc8\xed\x50\xc0\x2f\x6e\x05\xe4\x02\xc0\xf6\xbe\x85\x63\x06\x5e\x15\x17\xe0\x85\x6c\xa7\x9a\x3b\xac\x11\x50\x27\xb0\xe8\x3d\xcc\x14\xd3\xb9\xa3\x0f\x01\x5e\xce\x1f\x92\xcb\x8c\xa5\xff\x28\xb9\xcc\xd8\x61\x8f\xa9\xb6\xc5\x51\x66\xc2\x22\x0a\x51\x87\x77\x49\x7b\xd8\x34\x6c\xfc\x1b\x4a\xe4\x56\x13\x47\xdf\xf0\x0d\xbb\xc5\x46\x65\x10\x66\x15\xf8\x6a\x53\x37\x9a\xff\x76\xd0\xda\x46\x35\x21\x1d\x8b\x0d\x5d\x4e\xd1\x90\x9a\xf8\xa9\x05\xc1\x61\x73\xaf\xe8\xfe\xaf\x1a\x11\xe4\xd2\x52\x3b\x33\xf9\x6a\x1a\x27\xd1\x6a\xba\xf6\xf1\x70\x45\x9f\x52\xeb\x99\x6c\x68\x99\x8b\x05\x2e\x35\xd6\x39\x5f\xd7\x9e\x0b\x95\x94\xd8\x8c\xbc\x5e\x39\x5e\xe1\xde\x14\x05\x77\xcb\x11\xb4\x9d\x57\x71\x4c\x92\x0d\x5b\xaa\xb3\x86\xfb\x21\x45\xfd\xe6\xe3\xa4\x38\xd7\xc9\x24\xb7\x3c\xde\xfb\x4d\xbc\x0c\xdf\x04\xcf\xf8\x52\x6e\x5a\xd9\x63\xd6\x36\xdf\x27\x6a\x15\xe0\x61\xe5\xeb\x1a\x1b\xcd\xf2\x72\x7b\x60\xe3\x11\x11\xbf\x48\x5b\x90\x5a\x46\x67\xc9\x4e\x60\x8f\x32\x3f\x35\x52\x46\xf5\xc8\xa3\xda\xb0\x69\x8a\x2a\x22\x67\x1b\xf1\xa0\x92\x7a\x94\x55\xb2\x92\x96\x94\x83\x9e\x92\xc8\xa9\xb6\x94\x74\xa3\x6e\x37\x47\x0b\x0b\xed\xae\x1d\x15\x1c\xdb\x36\x49\x21\x36\x95\x0f\x21\x99\x8a\xc3\x05\xcf\xfc\xa6\xc2\x6e\xd6\xe1\x09\xa4\xed\x3c\x88\x46\x23\x41\x26\x63\xbf\x1e\x56\xb2\x06\x87\x55\x32\x36\x4c\x87\x23\xf3\xb5\x59\x0f\x9c\x38\x0f\x5f\x82\xd9\x40\x95\x00\xd0\xfb\x9a\x9d\xf0\xbc\xee\x76\x4e\xc2\xb4\x6f\x13\x9b\x93\xa4\x18\xb6\x05\x57\x7f\x54\xe4\xe6\x3d\xb6\x6a\x4e\xf9\xaf\x94\xa3\xd7\xb5\x50\xdc\xf5\xcb\x16\xc5\x40\x91\xcb\x7f\x5a\x91\xbd\x84\xa1\xcd\xf3\x5e\x19\x3f\xa2\xf6\xe1\xd8\x4b\xfe\xb4\x3a\x8a\x10\xeb\x14\xde\x87\x6f\x02\xd5\x28\x79\x8d\x9e\x04\xf1\x0f\x17\x1b\x9c\x62\xdc\x81\x79\xa9\x31\xdf\x41\x34\xc5\x37\xa0\xfc\xe6\x65\x5a\xf6\x07\xab\xd6\x8e\xf2\xc8\x22\xe2\x10\xf6\x06\x58\x46\xbe\x53\xb5\xfe\x9c\x18\x7d\xfa\x1b\x8f\xd2\x6f\xc1\xcd\xb9\x33\xf6\x76\xec\x0c\x59\x23\x26\x9f\x0f\x94\xe7\xf6\x0e\x6d\x66\x84\x87\xef\xe2\x15\xf8\xd3\x81\x66\xa5\x1f\x7b\xed\x81\xdb\xe3\xe9\xfc\x80\x53\x92\x38\xa6\x0e\x5a\xb3\x62\x0b\x5f\xea\x70\xf1\xde\xb2\xd4\x13\x2e\x34\xb1\x01\x3a\x42\x30\xbc\x25\xcb\x64\x06\x0a\x14\x71\xf4\x63\x71\x2c\xa3\x32\x09\x07\xdb\xda\xbc\xd9\xeb\x91\x44\x92\xcf\xea\x21\xe2\xca\x35\xed\xec\x05\x55\xc1\xbb\xd0\x90\xd5\xfb\x52\x3b\x8c\xa3\xe1\x8a\x1c\xa0\x30\x2d\x10\xcf\xe3\x6b\x25\x45\xbe\x66\x8b\x74\x17\x7d\xb9\xa3\xa7\x3d\x24\x31\xf8\xcc\xa4\xa5\x9a\xf5\x68\x8c\xf9\x1f\x3a\x1e\x0a\xff\x4d\x9c\xa0\xfc\xe9\xc0\xf7\xe5\x15\x99\xe9\xda\xee\x9c\xee\x46\xa7\xdf\x41\xe6\xed\x49\x25\xf3\x05\xaa\x3e\x4e\x20\x62\x20\x10\x03\xec\x76\x7d\x85\x79\x99\x65\x96\x1d\x0e\x34\x92\x20\xdc\xe0\x6b\x4d\x0c\x56\x48\xb6\xcd\x89\x7a\xff\xb2\x84\xb5\x67\xb4\x08\xe2\xfd\x26\xf1\xd0\x61\xda\x8d\x7a\x8e\x40\xdc\x71\x84\x54\x1b\x49\x78\x41\xe4\x91\x1c\xd2\x6d\xd9\xc9\x8c\xfe\x6b\xf5\x4c\x1c\x34\x88\x86\x3f\x1e\x09\x2e\xc4\xce\x1a\x59\xe2\x81\xf9\x76\x68\xb2\x2c\x92\x22\x93\x28\x17\x2a\xfe\xc6\x8f\x14\x3c\x73\x2d\xb2\xeb\x39\xa0\x06\x48\x95\xa3\x76\xa4\x4a\x23\x8b\x4e\x2b\xdd\x6f\xbc\x22\x8b\x86\x43\xc7\x27\x8e\x3f\xfe\xc7\xca\xc5\xff\xc7\x35\x17\x7d\xf1\x60\x7b\x94\xd9\xd0\x76\x2d\xb3\xfc\xb0\xfe\x7f\xe0\x77\xeb\x11\xfd\x03\xe6\x15\x34\xd6\xd1\xe0\x61\x81\xde\x54\x40\xee\xdb\x58\x43\x7c\x13\xa8\x25\x7d\xb3\x96\xde\xaf\x0c\x78\xd7\xae\x99\xbc\x50\x94\xe9\x70\x57\x90\x27\xe4\xeb\xce\x36\x06\xbb\xea\x73\x2f\xec\xc7\x9f\x0b\x63\x44\xcb\xf1\xfb\x5d\x74\xd9\x97\x8d\xc8\xc6\xdd\x7c\x97\x82\x18\xdd\x57\x60\x07\x3e\xc3\x44\x0e\x95\x9e\x94\x4c\xf0\x97\x9f\xea\x4c\xc1\x20\x5a\x8e\x53\xf8\x5e\x93\xfc\xa9\xd7\xb2\x40\xb6\x74\x2f\xf2\xcd\x7c\x33\x69\xe2\x47\x5a\x8f\x72\xab\xc0\x86\xc0\x60\x8a\x4f\x58\xc7\xee\x2c\x23\xc8\x9b\xf1\x85\x7c\x60\x1a\x9d\x7a\x97\xdb\x30\xef\x35\x50\xa5\x3d\xdf\xce\x6c\xdf\x40\x37\xb5\xa5\x59\x52\x7d\xde\xfe\x9c\x72\xb0\xba\xd6\x14\x83\x5c\xcb\x83\x7d\xa8\x7e\xec\xc3\xda\x08\x7c\x65\xb1\x0d\xa6\x3b\x17\x9e\x40\xa9\x99\xaf\x3b\xca\x08\x47\xf1\xd0\x26\x45\x3e\xcd\xd3\xeb\xc8\x55\x01\x1b\x85\xb5\xa8\x3b\x57\xd4\x0f\x18\x65\x61\x19\x7b\xbd\x6b\xe0\xd9\x19\xda\xc2\x37\xea\xc0\x5f\x4d\xd2\x75\x49\xac\x3a\xde\x8c\x05\xc7\xdd\x0e\xd6\x79\xfa\xcb\xff\xfa\x31\xfa\x3e\x64\xa2\x1e\x9d\x28\xbd\x64\x4e\x64\xc2\x77\xbf\x4f\xeb\x9c\x31\x05\xbc\xdb\x45\xc6\x86\xf8\xcd\xd0\xf9\x8c\x94\x0f\xb3\x10\x8a\xb4\x8d\x47\x7d\xee\x44\xd4\x01\xe7\xfe\x2d\x5a\x90\xd8\x9b\xd0\xb3\xc1\x96\x3b\xd1\x94\xf4\xa3\x9e\x3e\x96\x23\x45\xcc\x01\xa1\x47\xbe\x76\xeb\x1e\xc0\xb8\x59\xd5\xf0\xf7\x06\x5e\x83\xe1\xdc\xb4\xa2\x91\x9b\x65\xcc\x04\x32\x9d\x77\x1d\x21\x59\x6c\xd7\x22\x9a\x51\x27\xad\xec\xf5\xf4\x8e\x37\x69\xd9\xae\x8f\x46\x2d\x5f\x5f\xfe\xd6\x58\x75\xab\x7d\x4b\xa9\x41\x86\x83\x2c\xca\x8b\xc8\x24\xb3\x5e\xe9\xfc\x67\x9a\x4f\xec\x9c\xa2\x7a\x3d\xa7\x09\x8c\xa7\x44\x96\x6d\xa2\x9c\xa7\xc3\xca\x79\x3a\xac\xd8\x08\x8b\xcc\x84\x18\x2b\x46\x4d\xe1\xd4\x11\x08\x95\x47\xa2\x88\xda\x33\x15\xf4\x15\x2b\xba\xbb\x51\x74\xa2\xc4\x19\x21\x55\x76\x2c\xf1\x27\x50\x2a\x41\x78\xb9\x6b\xe2\x61\x27\x9b\xdb\x90\xcb\x1b\xbb\xa7\x58\x45\x5a\x8e\xd4\xe2\x48\x50\x63\x18\x11\xe6\xfc\x6a\x45\xe0\x0c\xbe\x4d\x81\x2b\x5f\x63\x7c\x45\x7d\xfb\x93\x4a\xf4\x38\x5d\xb5\xc9\x2e\x5f\x1b\x3d\x41\x0b\xc4\x81\x65\x3c\xcc\x04\x49\x2d\xfe\x23\x58\x42\xc7\xd9\x78\x68\x5e\x3e\xa1\xec\x42\x68\x2a\x43\x37\x47\x4f\x2a\xc2\xef\xd5\x77\x63\x23\xbf\xa7\xfb\x13\xd1\x1b\xc8\xe2\xab\x81\xea\x64\x78\xa0\xfa\xd3\xb2\xcc\xc6\x33\xba\x48\xe6\xb3\x36\xf0\x14\x25\xa2\xf3\x20\x14\xaa\x7a\xb4\x34\x25\xf1\x3b\x1a\x86\xf2\x4e\x2d\x0e\x39\x30\xdf\xee\x46\x09\x9a\xa7\xf6\xbb\xc3\x9d\x5e\x01\x2f\x78\x1b\xb6\x43\x86\xe1\x09\xdd\xe7\x55\xb0\x92\xb7\x86\x54\x49\xc7\x4b\x53\xd7\x41\x3f\x4a\xfa\x36\xe3\xf4\x93\xa8\xaa\xf8\xcc\xe1\xc7\x60\x73\xc3\x38\x2d\x06\x96\x29\x98\x91\x2e\xb8\x1e\x68\x88\xb8\x8f\xce\x7e\xda\xd0\xec\xb0\x38\x1d\x01\x61\xb7\x9f\x54\xa7\xe1\xc9\xc6\x74\xb5\x34\x4f\xb6\x14\xb7\xcc\x39\x4e\x7a\x4a\xc6\x68\xfb\xe7\xbc\x6c\x6c\xcc\x02\x2a\x58\xc9\x97\x74\x55\xe8\x92\x0a\x02\x28\xc3\x16\xb1\x50\x6a\x63\x58\xff\x71\x9d\x8e\x7f\x2d\xde\x7d\xc5\x3b\x1a\xc5\x29\x83\x2b\x31\x41\x6f\x68\xf6\xd3\x37\x6a\x65\x3e\x0a\x1c\xd3\x10\x6d\x13\xad\x29\xa9\x1c\x35\x5f\x0e\x87\x95\x97\x2b\xb9\xfd\x5a\x69\x93\x22\xde\x98\x51\xed\x0c\x20\x15\x15\x0c\x85\x87\x1b\xdd\x68\x82\x73\x5a\x9b\x86\x8a\x95\x86\x2d\x24\xdf\x28\xfa\xfe\x61\x14\xdb\x7c\x66\x3b\xba\x1f\xa8\x9b\x2b\x1a\xe4\xbb\xa3\x26\x46\xe1\xfa\x44\x87\x3c\xaf\x2c\xa7\x40\xab\x41\xa4\x15\x1a\x8e\x95\xf5\x28\x49\xb6\x21\x3a\xef\xa9\x76\x93\x7b\xaa\x7d\xc4\x44\x43\x76\xf7\x51\xe9\xc2\xf2\xe4\xaa\x01\x5e\x09\x35\xfb\xbb\x08\xd7\xa6\x30\x02\x68\x73\xbc\xdd\x10\xcd\x54\x1e\x28\xe9\x7b\xb4\x14\x5b\x89\xea\xcf\xda\x74\x55\xff\xc2\x84\x2c\xe3\xc7\xb4\xac\xf4\x00\x42\xd1\xba\x1d\xba\x4b\x1a\x20\x26\x2b\x88\x88\x54\x5c\x4c\xa9\x97\xbd\x3b\x56\x6a\xbb\xef\x06\x5a\xe7\x2b\x29\xcc\xee\xca\xf2\xa2\x90\x73\x3f\x50\x00\xa7\xe3\x81\x42\x03\x1c\x67\x27\x80\x9b\x4e\xc6\xca\x23\x3d\xaa\xba\x8a\xdf\xa3\x57\x11\xea\xd8\xa6\x16\xd4\x7c\x54\x12\x39\x9f\x2f\x8e\xb3\x62\x8d\xa0\xb3\xeb\x55\xe3\x2e\xe5\xaf\x7d\xa7\xd2\xf7\x74\xd7\xec\xf7\x6a\x80\xda\xa5\xa5\xf6\x4a\xe6\xd5\x46\x61\x9c\xd1\x55\xc4\xd7\xea\x44\x94\x4e\x49\x40\xf5\x61\xa0\x59\x76\x98\x4b\x82\xaa\x03\x95\x8b\x2d\x52\x2b\xd4\xbd\x49\x49\x61\x87\xa3\x34\x33\xd9\xc6\xac\xe7\x52\xb9\x86\x08\x01\xee\xee\x29\x38\x26\x02\x6c\x68\x39\x42\xce\xdd\x4d\x14\x60\x2b\x65\x14\x77\x5d\x1e\x0f\xcf\x8d\x5a\x3f\xc2\xbd\xdd\x4a\xb3\xfb\xb4\xef\x3e\x8e\xcd\xe7\x67\x74\xf7\x82\x47\x66\xbe\x8f\x41\x13\xb6\x74\xe5\xa8\x44\x7d\x93\xd9\xa2\xc0\x8a\x74\xd5\x4e\xcf\x65\xb1\x19\x78\x62\x9b\x6e\x44\x12\x30\x09\xc8\xf8\x05\x56\xf5\x3d\x0c\x98\x50\x45\xd2\x20\x09\x25\xb7\x97\x0a\xfd\x9e\x26\xa4\xb0\x49\x77\x97\xef\x00\xb9\x35\x56\x5e\xc6\x87\x9a\x5a\xf0\x43\x18\x02\x06\x5e\xb0\xdd\xd6\xa2\xd6\x88\xd4\xaf\xaa\xaa\x6e\x98\x0e\x57\x4c\x31\x25\x14\x33\xf6\x25\xde\x4d\x57\x15\x2d\x52\x47\x71\x81\x90\xe9\xb6\x6a\xc0\xbd\xed\xf1\x71\x69\x9a\x5b\x6f\x35\xa4\xbf\xcb\x27\x6f\xee\xd4\x72\xbd\xfb\x96\xdb\xa6\xfb\x72\x5a\x02\x15\xa7\x05\xdc\x02\xd5\xb9\xe5\xc9\x6b\x8b\x2c\x2d\x57\x62\x9b\xa7\x43\x3b\xeb\x5d\x4b\x74\xdf\xc0\x94\x20\x9a\xc3\x2a\x3c\xae\x59\x8f\x2e\xd6\x2c\xf0\xc2\x42\xdb\x64\xc3\xa9\xc5\xbf\xa9\xbc\x14\xcd\xab\x5d\xd8\x6c\x98\xef\xa1\xd7\x42\xfd\x6f\x3f\xbd\x16\x32\xc5\xac\x00\x21\x9e\x2d\x25\xcc\x84\x1e\x73\xc6\xeb\x3b\x7e\x4b\x69\x53\xfc\xa9\x06\x26\x5d\x53\x3a\xab\xa7\xb4\x0f\xba\x6e\x95\x81\x72\xcb\x44\x51\x8d\x6e\x77\xba\xf7\x2d\xb7\xbb\xa6\x50\xbc\x0f\x3f\xc1\xef\xf0\x8d\xeb\x65\x2e\xf3\x32\x37\x31\xc5\x5c\xae\xd5\xde\xf5\x01\x81\xbc\x5a\xb2\x42\xae\xd3\x9e\x42\x40\xda\xb2\xe0\xec\x7d\x77\xac\x60\xf1\x8f\xd1\x0c\xc0\x30\xc3\xdd\xc5\x39\xf1\xbe\xca\x18\x96\x89\x29\x8b\x41\x9a\x11\x80\x44\x6d\xd6\x4d\x8d\xc4\xd5\xc8\x25\xb3\x4e\x29\x55\x1c\xa0\xc7\x01\x30\xe3\x1b\x7a\x44\xb8\xba\xd7\x55\xe5\xed\x7a\x53\xaa\x3f\xb3\x5d\x6b\x87\xa8\xb5\x3a\x8a\x94\x8f\x94\x3e\xd9\x47\x4d\x8d\x44\x99\x89\x5c\x0c\xcf\xd0\x49\x4c\xb3\xe0\x28\x3d\x08\x30\x4a\xa2\x22\x32\xf1\x2e\x45\xb8\xca\x35\x46\xb8\xab\xc7\x34\xed\xd3\x9f\xd2\xdb\xa2\xd8\x3c\x03\x41\x47\x78\xaa\xe7\x15\x7f\xe3\x9f\x05\x9f\xf2\x28\xd0\xa4\xb0\x59\x61\x22\xda\x21\x88\xdf\x44\x38\x49\xeb\x0b\x7e\x5d\x2b\xe3\x1f\xd7\x15\xc8\xaf\x7b\xba\xdd\xf4\x95\x28\xf4\x75\x57\xe1\x50\xd3\x84\x6a\x0a\x95\x0e\x19\x82\x28\xdc\x5d\xc5\xc7\x58\x71\xcc\xfc\x2f\x7d\x93\xfe\x81\x6f\xa9\x46\x70\xce\xe4\x09\xb3\x73\xcb\xf1\xf2\xfc\x04\x15\x7c\x38\xd6\x77\x83\xed\x99\x9f\xc5\x83\xcc\x15\x6b\xc2\x22\xe5\x88\x16\x81\x1e\x0a\xbd\x7c\x3d\x51\x92\xb5\xe6\x95\x75\x1b\xc7\x9c\xf6\x63\x56\xae\xb1\xea\x60\x60\x37\x14\xb9\xe8\x5d\x1d\x9f\x6e\xef\xa1\xe8\xdd\xf2\x39\x4f\x80\xaa\x45\x38\xe1\xe3\xca\x38\xa1\x49\x42\x9b\xb5\xf4\xe4\x2a\x20\xd7\xb1\x5a\x53\x58\xe5\x55\xae\x44\x69\x3f\x33\xa3\x41\x14\x72\x1e\x53\xf1\x70\xed\x77\xeb\x7e\x0a\x38\x65\x0a\xf8\x94\xa8\xf7\xfc\x8c\x06\x1a\x33\xf0\x33\xaa\x73\xc3\x07\x39\xa3\x68\x01\x46\x59\x5a\xd8\xb0\x40\x4b\x02\x0e\x3e\x12\xe5\xe6\x35\x70\x37\xd0\x85\x05\x05\x9a\x3f\x81\xb5\xc9\xfc\x64\xcd\xe1\x88\x09\xc3\xb4\x64\xeb\x2c\x24\xc1\x1e\xbd\x73\xb5\xb1\xdd\x7a\x2d\x4a\x63\xc7\x4a\x82\x34\xcc\xbb\x8a\xb7\xf8\xdd\xa9\xea\x6c\x68\xa3\x35\xbb\x9b\xde\x58\x18\xf4\x68\xab\xe1\x80\xb9\x0b\x2b\xce\x37\x14\xfd\x62\x6d\x31\xd1\xbb\xeb\xa7\x5c\x3c\x28\xff\x30\x56\xc2\x04\xff\x26\xf0\x87\x69\x5c\x66\x0c\xe1\x73\x28\x5c\x47\x61\x7e\x49\x35\x2c\x64\x29\xa8\x6a\xf0\x2f\x77\xa9\xaf\x08\x47\xf3\x9f\x8e\x7d\x2c\xff\xf4\xc4\x0b\x79\x5c\xd0\x3e\xcb\x03\xdd\xa6\xf9\xe9\x8e\xc2\x7d\x8c\x6c\x58\x98\x90\xe8\x51\xe9\xd9\xa7\xf8\x3a\xa4\xf9\xd4\x47\x9c\xc5\x20\xb3\xf6\x93\x74\xa0\x08\xbf\xd2\xb6\x7a\x9b\x20\x7e\xef\x60\xc4\xb8\xf8\x87\x11\xdb\xcb\x74\x17\xd5\x53\x3a\x42\x14\x6f\x3f\x4e\x63\x3b\x3a\xad\x35\x07\x2b\xb8\xa4\x39\x43\x3f\xd0\x5b\xe8\xa7\xf4\xf6\xc8\x8e\x7e\x43\x31\x01\xff\x1f\x63\x2f\xab\xf0\x07\xb0\x11\x70\x9f\x7e\xec\xce\x8f\x30\xca\xc2\xd8\xce\xa8\x3e\xe3\x6f\x8e\x7d\xe6\xf1\x0f\xc7\xca\xab\xfc\xbe\xc7\xa6\x94\x49\xd7\x24\xc0\x7c\x00\xc3\x07\xd9\x4c\x1c\x3a\x3b\x26\x0a\xd4\x7d\x49\x35\x43\x16\x36\x49\x6c\x9e\xa3\x2b\xef\x4b\x0e\x1a\xda\x52\x6c\x20\xaa\x68\x7b\x42\x01\x67\xd2\x95\x97\x49\x31\x39\x2a\x36\x60\x6a\x31\xba\x80\x0e\x8b\x9b\xab\x3a\x7a\xef\x07\x8a\xe3\xf4\xa7\xb5\x73\x64\xf1\x60\xfb\xe5\x32\x89\x52\x88\xe8\xc2\x0d\x47\x3e\x90\xaf\xd5\x69\x9f\xd9\xc2\x64\x5d\x0b\xf6\x31\x64\x22\x2e\xa8\x44\xcd\x05\xe7\x66\x25\x69\xb6\x6e\xfb\xd2\x9a\xce\x0c\x8d\x9d\x29\xba\xc6\x26\xaa\xe4\x28\xc9\x4b\xc7\xe3\xe2\xd2\x3a\xee\xd4\xbf\xa0\x1b\x7b\x92\x28\x4d\x48\x0a\x1a\x4b\xf8\xee\x58\xb9\xb0\x20\x9a\x21\xf3\xfa\x4f\xfe\x36\xed\x00\x44\x5a\xdf\x81\x67\x2a\x99\x02\x9a\x68\x00\x24\x3f\xd1\xf1\x30\xaa\xe7\xfe\x06\xa3\xd1\xb0\x9d\x67\x3a\xdb\x87\xec\x85\xfd\xed\xd8\x84\xab\x78\x50\x91\x0f\x67\x84\x24\xdf\x28\x7a\xb7\x6e\x94\x17\x51\x12\x82\x71\xc6\x83\x28\x10\xde\x4a\xa3\xbe\x37\xfb\xf6\x15\x1b\x96\x05\xb4\xc3\x99\x96\x0c\xf5\x51\x46\xde\x8d\x3d\xe7\xd1\x83\x46\xce\xe5\xbe\xa4\x5a\x5d\x74\xa7\xf9\x05\xf6\x4e\xe5\x19\x45\x77\xdd\xd9\x27\xdf\xfb\x5d\x8b\xc4\x9e\xab\x02\xb1\x22\xca\x07\xf4\xe5\x00\x1d\x70\x1a\x96\x6f\x54\x81\xad\x1c\x0d\xa2\x38\x6e\x79\x1e\x39\x24\x1d\xf8\xfa\x63\x53\x00\xfd\x74\x34\xe3\x57\xcc\x79\x9d\x6b\xd4\x58\xd8\x9b\x2a\xe2\x19\x65\x76\xcd\xc4\xa4\x82\x77\x60\xde\xb5\x9d\x7b\xf0\xcf\x7b\x63\x1f\x07\x5c\x57\x76\x2b\x4e\x43\xf8\x43\x62\xd0\xcf\xe0\x98\x01\xe0\x07\x87\x11\xec\xce\x49\x52\xb3\xe4\x76\x9e\x60\xca\x5d\x6f\x39\xe6\x8a\xbb\x53\x5d\x26\xbd\x1e\xdc\x97\x29\x99\x22\xbe\x51\xe6\xc6\x57\x8f\x10\x2f\x1f\xc5\x9e\xe7\x9b\xa9\xfe\x89\x14\xe5\x03\x25\xb2\x30\x25\xaf\xe3\xf7\xe8\x28\x4b\x7b\x69\x99\x74\xb5\x9a\xf8\xa9\x40\x65\x1b\x54\x51\x2c\xb3\xbd\x28\x71\x71\xa9\xf4\x58\x79\x48\xc2\x4d\x05\xac\xab\x2b\x95\xee\x5b\x16\x2d\xb7\x19\x0f\xc4\x02\x4b\x8f\x92\x6d\x14\x35\xd5\xcb\xaa\x0e\x9a\xdb\xe4\x51\x05\x7a\xfe\x5f\xc7\x1e\xf9\xb0\x03\x55\x0c\xa7\x21\xe2\xcb\x39\xa0\x84\x95\x2e\x49\xec\x50\x78\xb2\x80\xf6\xe3\x5c\x99\x85\xbf\xca\x8a\x31\xba\x2f\xf8\x1d\x4c\x1d\x0e\x96\x5f\xe8\x7c\x5c\x0e\x2f\x36\xb9\xcd\xf2\x30\x1d\x59\x95\x83\xe7\x26\x0d\x91\xa1\xa8\x93\xd3\x3d\xdf\x36\x59\x35\xea\xd4\xc9\x87\xc3\xe7\x08\xed\x26\x64\x05\x76\x74\x3c\xaa\xe6\x76\x63\x66\x93\x38\x23\xa3\x54\x8a\xf6\xd8\x28\xdc\x1d\xcf\x37\xba\x90\x1c\x47\x14\x5b\xe2\xd8\xd8\xdb\xf1\xc7\xdc\x43\x3c\x29\x56\xf1\xcd\x29\x3d\xae\xba\x78\xc3\xf2\x72\x3b\x2d\x8b\x5e\x9c\xae\xe7\x33\xad\xaf\x2c\x3a\x62\x4c\xd5\x34\x7a\x45\xab\xaf\x1d\x6e\x8a\xe6\x32\xb3\xde\xf2\xfd\xde\x67\x15\xff\xce\xd9\x29\x02\xb2\x64\xcd\xe4\x2d\x8d\x15\xf7\x49\x93\x23\xb5\xb5\xf5\x05\xc7\x44\xdc\xf2\xce\x0c\x5b\x1b\xbe\x99\xde\xcb\xab\x80\xf9\xc0\x03\xbd\x4c\x38\x0b\xbe\x56\x1d\xb1\xfd\x34\xb1\x7b\x1c\xd6\x60\x6b\x2f\x91\xc5\xa2\x0a\x75\x4f\x3b\x47\xe7\xe9\xf3\xac\xab\x45\x55\x41\x44\x54\x8f\xd3\x40\x23\x16\x7a\x08\xab\x2c\x60\x1a\xaf\xd4\xf7\xd3\xc0\x2b\xaa\xf4\x6c\x5e\xa4\x69\x22\x69\x6e\xa6\xff\xa6\x37\x17\x2a\xf0\x06\x2d\x87\x2c\x4d\x57\x23\x9c\x00\x98\x91\xeb\xb4\xc0\xe1\x1f\x81\x55\x55\x20\x35\x82\x7a\x1c\x65\x76\x64\x32\xce\x71\xc2\x7f\x7d\x86\x7a\x1d\xe1\xfa\x1d\xd1\x50\x72\x64\x9e\x30\x45\x77\x34\xe2\xf8\x7c\x6d\x65\x2e\x2d\xb5\x8b\x74\x3d\xc9\x07\xd1\x88\x73\x10\x88\x3e\xae\x28\xb8\xcb\x15\xb5\x2e\xcd\xd0\xcc\xe9\x7e\x88\x6b\x63\x55\xc5\x04\xac\x0f\xbd\x35\xb7\x14\xad\xe8\xd5\x40\xf9\x48\x55\x04\xc4\x39\x5b\x5e\x00\xf9\x5c\x6b\x61\x81\xfd\x20\x92\xbb\xdd\x7a\x9d\x97\x35\x6c\x01\x4b\x96\x2a\x30\xac\xe8\xc8\xdc\x53\x66\x71\x18\xe5\x5d\x6b\xbb\xf9\x8c\x4f\xc3\xa0\x81\x0a\xb3\x0c\xdc\x31\x7c\xb6\x3b\xcd\x54\xe8\x22\xbf\x4b\xe7\x8c\x08\xe6\x57\x43\xac\xc5\x52\xd9\x19\x51\x8d\x2c\x79\xd4\x4f\x8c\x23\x0d\xc2\x56\xc6\xaf\xc1\x69\x7a\x5d\x1f\xa1\x9b\x2e\xfd\x11\x25\xe1\x40\x3c\x21\x18\x43\x9e\x2a\xbe\x69\x60\xe9\xdb\xdf\xee\xc5\x9c\x59\x61\xe9\xc5\xc0\x2b\xfd\x4d\x63\xdb\xb3\xc8\x20\x47\x8a\x74\xf8\x4e\xf2\x91\x74\x11\x0c\x96\xee\xb7\xe8\xe4\x83\x87\x74\xcb\xa5\xda\xe2\xb4\x9f\xf2\x6a\xc0\x40\x7e\xa0\x98\x3b\x3f\xa8\xa1\xa2\x29\xbd\xb1\x62\x41\x3e\x88\xef\x02\x2d\x35\x96\x26\x3b\x6e\x58\x81\xaf\x4d\x1f\x64\x23\xaa\x4b\x7d\xec\xa1\x57\x97\xce\xae\xa2\x27\x1a\x37\xed\x34\xea\xea\xa1\x2e\xf3\x98\xb2\x88\xd2\x32\x47\xe3\x2a\xea\xf7\x68\x7f\x44\x50\x76\x41\xd5\xf5\xb7\x34\xfd\x19\x5a\x7a\xf9\x9a\x62\x3d\xfe\x80\x82\x2e\xd9\x70\x90\x2a\x0a\x08\xe4\xab\xdc\x42\x71\xea\x28\x47\xc6\x2e\x7f\x99\x59\xa9\xa6\x21\x7b\x87\x23\x03\xd8\xa0\x23\x63\x25\xf5\x75\x7b\xca\xd3\xf8\xfc\xe0\xf3\x64\x5a\x50\x27\xe1\x03\x8f\x6f\x5c\x8c\x62\xe2\x7e\x64\x45\x6e\x7b\xea\x68\x14\x65\xb5\x29\x91\xcf\xbe\x7d\x52\xa1\x80\x31\x26\xa8\xea\x3c\xd0\x72\x53\x3f\x01\x2b\xae\x62\xa9\x16\xac\xde\x7b\xd4\x36\xe9\xba\xc8\x1c\x8b\xdc\x7b\x9a\xc7\x81\xb9\xd7\x85\x1f\x5a\x03\x21\x29\x3a\xe3\x36\xba\xb1\x46\xb1\x5d\x1c\x2b\x08\x3f\x13\x42\x23\x8b\xf7\x67\x63\x25\xbe\x0b\x1b\x89\xcc\xd9\x69\x1a\x6e\x44\xc9\xdf\x09\x3c\xab\x62\x3f\xb3\x86\x9a\x74\xaa\x1f\xc6\x71\x89\x23\x89\xaf\xc7\xcf\x6c\x67\xe1\x79\xbe\xbd\xb0\xf8\x2c\x2d\x56\x07\x4e\x78\xc1\xc5\xf3\xd7\x48\xce\x9f\xfd\x72\x5a\x20\x94\x18\x99\x61\x76\x06\xb8\xdf\x3b\x00\x7b\x94\x60\x04\x6f\x86\x10\xe0\x1c\xba\x70\x11\xbf\x3d\x86\x68\x04\xc5\xe7\xbf\x1c\xab\x96\xc6\x39\x1a\x27\xec\xce\x2b\x18\x72\x66\x2d\x24\x4e\x3d\xfc\xfe\xbb\x74\x7c\x31\x6b\x22\x0d\xbf\x16\x0b\x47\x98\x7c\x94\xbc\x13\x24\xd4\x1e\x20\x1f\xcc\xb0\x46\x1a\x2f\x14\x80\x4e\xc1\x25\x86\xb1\x63\x46\x4d\x9c\x3c\xef\xd7\xb2\x98\xe2\x3f\xad\x64\x91\x81\x0a\x86\x08\xd4\xfa\x2c\xe6\x6b\x3a\xa5\x7c\xa7\x49\x79\xc4\x8c\x46\x69\x94\x38\xa4\x0c\xc2\x39\xa4\x4f\xf9\x5a\x65\xff\xa2\xae\x4d\x8a\xa8\xb7\x41\x7d\x6a\x98\x60\x14\x00\x05\xe9\x4c\x03\xe7\x54\x0d\x97\x96\x44\x1c\x94\x56\xb4\x08\x85\x3e\xe6\x30\xe5\xe9\x88\x01\x12\xd8\xcf\x57\x03\x45\x43\xc0\xe1\x1d\xde\xe9\x47\xb5\x3c\xfd\xa1\xf9\xc5\xf6\x20\xca\x5b\x90\x73\xc5\xf1\xc3\x65\x4f\xbe\x71\x64\x2f\xfd\x34\x01\xb4\x4b\xe3\x26\xb0\xa3\xee\xe2\x89\x25\x9b\x5c\xbd\xd6\x54\x6c\x82\x8d\xf3\x48\xc7\x83\x67\x4e\x37\x91\xdd\x98\xa4\x88\x8a\xac\x64\xba\x37\x18\x83\xcb\x34\xdf\x88\x21\xdf\x18\xfb\xed\x71\x43\x1d\x55\x99\x8d\x92\x5e\x9a\x85\xb6\xa5\x44\xf7\xee\x06\x8a\xa8\xf5\xae\xca\x89\xc5\xd6\x8c\x84\x4e\x42\xf7\x48\xf2\xb5\x22\x2e\x5a\xa9\x1c\x1a\xdb\x9a\xe2\xaf\x9a\xe2\xa9\xda\xee\x97\xbe\xf4\x52\x3b\xb3\x5f\x2b\x23\x97\x0b\xc0\xb1\x7a\x4a\x91\x7c\xe8\x22\x04\x15\xec\x99\x63\x77\xd1\x8d\xf7\x94\x41\xa9\xbe\x04\xb6\x14\x7c\xda\x18\x7b\xee\xfb\x86\x4b\xf2\xc3\xe0\xa9\xed\x0d\xe5\xed\xff\xb0\xa5\x0e\x87\xd7\x69\xd8\x44\x3c\x49\x65\xe2\x72\xfb\x94\xe7\xf3\xbb\x1a\x4c\x2b\x6b\xb5\x3c\xc5\xb7\x56\xe1\xe6\xba\xcf\x94\xf2\x2b\xbe\xe0\x13\x93\x99\x17\x0e\xcc\xbb\x62\x17\x59\x0c\xec\xe5\x4f\x77\x54\xac\xf8\xee\xb8\xf5\x2b\x5f\x9e\x6a\x61\x44\x26\x76\x6b\xec\x2b\x71\x77\x28\x2b\x88\xff\x7f\x1b\x06\x06\xb1\xd4\x27\x3b\xca\x8e\x5d\x21\x14\xaa\xa0\xb8\x5b\x2f\x08\xe2\xff\x3d\xac\x46\x1c\xd3\x73\x4a\x71\xb8\x5f\x02\x96\x37\xe3\x71\x34\xc8\x66\xa0\x70\xf4\xcf\x82\x29\x02\xda\x6d\xa3\xfa\x85\xf6\xc2\xe2\x27\x55\x5f\x9d\x6e\xdb\xb8\x32\x56\x14\x22\x1f\x92\xe5\x62\x72\x95\x40\xb9\x1b\x7f\x8c\xd1\x42\x38\xfd\x2f\x31\xa8\x68\x8c\x3f\x02\x34\x2c\x7f\x1e\xc7\x88\x53\xb1\xab\x36\xb6\x66\x1a\x47\xfa\xfd\xff\x51\x24\xa5\x57\xa6\x7a\xfc\x94\x90\xe9\x5f\xd2\x79\xc6\x0c\x1a\x5a\xb7\xca\xc6\x31\xd3\xa8\xed\x67\xee\x92\x5b\x0a\x13\xc9\x34\x0b\x70\x01\x4e\x4c\x1d\xdb\x76\x94\x3f\x52\xd9\x59\x69\xb3\x9c\xf1\x42\xd8\xdf\x1c\xab\xf6\xbe\x37\x15\xdd\xd6\x55\x42\x52\xb1\xa3\x88\x31\xf0\x72\xe2\xfb\x1d\xd7\x70\xf5\xfb\x98\xe5\x16\x10\x9d\xc2\xb7\x55\xef\x5d\x78\xb1\x4d\xdb\x9d\x37\x99\x68\xeb\xb4\x1c\x73\xe8\xed\x9a\x97\x79\xf0\xab\x6d\xd3\x4d\x47\x50\x08\xc0\x0c\xc3\xe4\x3a\x32\x48\x27\xb7\x76\x41\xe5\x2f\xb2\x92\xa0\x1a\xbb\x7c\xe6\xe8\x1d\xd5\x56\x71\x33\xf0\x2c\x49\x3b\x26\x3e\x79\xce\xec\xee\x53\x70\x1d\x21\xae\xf1\xf9\xb5\xc1\xc6\xc8\x66\x85\x4d\x72\xea\x13\xf6\x84\x49\x27\x31\xa8\x22\xc5\xfe\xb8\x0a\xca\x6c\xbc\xdb\x97\x46\x4f\x6b\xb2\x98\x6f\x90\x72\x39\xf6\xde\x3d\x05\x25\xbe\x4a\x2f\xc6\x1f\x08\x3c\xd7\xcb\x37\xc6\x5e\x88\x41\xab\x13\xac\xd8\x62\x10\xdb\x81\x1d\xb6\x34\xfa\x40\xb1\x0a\x1d\x77\x15\xaf\x7c\x75\x23\x0f\x33\x33\x92\xae\x3e\x78\x5a\xaf\x29\x61\xd4\xd7\x9c\xeb\xbd\x92\x66\xec\xdc\x22\x2b\xc6\xc5\x5b\xbe\x19\xfb\xb2\x79\x2f\xb6\xb6\xc8\x21\x0c\xc7\xec\xe4\xe4\xa9\x0a\x53\xf9\xd3\x1a\x37\x5b\xad\xe1\x41\xc4\xd4\x4e\x18\xe0\x23\x58\xba\x7c\x53\xab\x19\x1d\x9a\x6f\x77\x6d\x5e\x98\x95\x28\x8e\x5e\x15\x4b\x80\x5c\xce\x0d\x4d\x88\xaa\x19\xbf\x77\xd6\xf2\xa8\xcb\xcb\xed\x7c\x60\x49\x7b\xb9\x7a\x71\x61\x7d\x55\xe7\x44\x9d\x8c\xfc\xb9\x76\x9e\x96\xd4\x74\xe0\x3f\x72\x37\x50\x1f\xb9\xab\x39\x82\xba\x1b\xb3\xd4\xdf\xae\xa9\x4a\x61\x32\x7f\x47\x2f\xa7\x13\x8a\x3e\xff\xb6\x6a\xbf\x28\x4c\x14\x63\xc4\x9d\x8f\x78\x46\xf9\x88\x75\x69\xb9\x85\x85\x76\x5e\x10\xaa\x62\xc6\x57\xa1\x6f\x61\x81\xc1\x05\x3d\x0c\x83\x8e\x07\x7a\x58\x2b\x30\x2e\x2d\xb5\x43\x33\x8a\x0a\x82\x78\x31\xad\x22\x36\xf6\x39\x85\x67\x38\xa7\x56\x5a\x5e\x64\x65\x58\x94\x99\x9d\x53\x56\xf1\x8c\x2a\x7c\x3c\xd1\x51\x7d\x2a\x8c\x22\xc4\x69\x7e\x5d\x41\x36\x2f\x4c\x29\xaa\x91\x02\x70\x94\xf4\x89\x47\x1b\x95\xbc\x0f\x14\xe5\xea\x6d\xda\xb0\xa8\xad\x01\xfd\xeb\x18\x88\x5d\xa7\x30\x43\x77\x05\x2f\x4d\x0f\x87\x4f\x5f\x76\x2e\x57\x18\xad\x45\xf1\xcc\xd4\x71\xd7\xf2\x74\xd8\xba\x07\xf6\xfb\x0e\x15\x13\xa7\x6b\x76\x37\x2d\x4e\xa6\xc9\xc5\xe8\xc2\xaa\xc0\xf1\x47\x68\xb6\x67\xa2\xd0\x20\xd7\x15\x7b\x02\x58\x9c\x24\x66\xf3\x45\xc7\x56\xa7\x81\xc8\xbe\xc8\xa2\x3e\x14\xd0\x7c\x34\xc7\x1a\x75\xc2\xee\x57\x87\x7c\xef\x7f\xbe\xdd\x8b\x12\x93\x50\xf7\xa7\xee\x65\xd4\xf8\xfc\xe0\x33\x1e\xb7\x94\x58\xa2\xe7\x8b\xd6\x6c\x42\xc4\x5b\x3e\x7a\x55\x84\xa7\x17\x94\xeb\x9b\xd9\x9e\xcd\xe4\xa9\x60\x8a\xce\xe8\x4e\xf0\x33\xba\xf5\x90\xd4\xbf\x28\x8b\x22\xcf\xdf\x72\xe2\x4f\x67\xb0\x77\x30\x97\xc8\x7a\x8b\x4e\x95\xab\xa1\xfc\x83\x53\xaa\xf0\xb2\x92\xa5\xeb\x09\x27\x79\xb4\x4a\x32\xfc\x9d\xb3\x94\x31\xc0\x64\x72\xba\x0e\x66\x61\x17\xce\x22\x9c\xf3\xef\xb8\x15\x30\x8c\x42\x0e\x60\x61\x30\x4e\x69\x51\x86\x3a\xad\xf6\xa1\xf9\x7f\x0f\x92\x4e\x71\x98\x0d\xd2\xac\xe0\xa3\x19\x05\x3c\x54\x52\x91\x77\x63\x5f\x4c\x64\x63\x14\x07\x79\x66\x9f\xa5\x1d\x8a\x23\xfc\x33\x9d\xca\x1f\x72\x72\x2d\xfb\x96\xb7\x3e\x43\xbc\x82\x70\x1e\xf8\x69\x29\x91\xf3\x17\xcf\x4c\x34\x57\x02\x06\x48\x96\x68\x35\x28\xd8\x22\x47\xc7\xd5\x3c\x08\xe5\x9a\x22\x45\x7f\xa4\x43\xbe\x0f\xb6\xc8\x2f\x76\xfc\xda\xfd\xcd\xff\xdf\xc4\x69\x2a\xfd\xa3\xbf\xd9\xf1\xae\xcb\xb9\x40\xe5\xd0\x99\x1b\x13\x33\xf2\xd4\x64\x7b\xd0\x87\x53\xf0\xaf\xc8\xd3\xc3\x5c\x5f\xf0\x75\xd2\xdf\xff\x79\x24\xdd\x71\xd0\x3e\x3e\xf1\x65\x9c\xfe\xc0\xbc\x6a\xb1\x84\x5d\xef\xa1\x47\xd4\x9f\xd7\x22\x5e\x51\xb8\x6a\xb3\x9c\xda\x41\x9d\x9a\x4e\x75\xfa\x48\x0d\x4b\x8e\xbb\x68\x08\x56\xe7\xd8\x12\x50\x07\x47\xd7\x55\x18\x0b\x78\x71\x17\xd4\xa1\xb1\xab\xe3\x61\xa4\xa7\x9b\xba\x58\xc2\xb2\x40\x4e\x0f\xdd\xd0\x5b\xf0\xf3\x84\xc5\x55\x71\x14\xcd\x74\x9e\x50\xcd\x40\xc9\x2a\x27\x5b\x90\x60\xbd\x4f\x4b\x03\x83\xd4\xea\xe8\x0e\xa2\x7a\x8e\x69\x7f\x7b\xdd\x14\x79\xca\x1c\x26\xac\x09\xa2\xe8\xc0\x36\x55\x1a\x28\x4e\xd3\xd5\xc7\x5b\x8e\x11\xea\x6d\x2d\x65\x71\x1e\xd3\x87\x47\xfd\x49\x50\x2d\x1e\xd1\x46\xc3\xe2\xd1\x48\x6a\x51\x5b\xa4\x35\x82\xdf\xb9\x02\x67\x97\x6f\xc8\x0f\x41\x34\xf1\x10\x63\x20\xf4\x0b\xf4\x9a\x2c\xdf\x1c\xf8\x12\xca\x15\xcc\x24\xff\x88\xcb\x3b\xf6\x32\x9b\xbc\x8a\xe2\x15\x13\x42\x07\x5e\xa7\xf0\x9c\x63\xe6\x1e\xda\x6e\x54\xd8\x2c\x33\x89\xe5\x14\x3d\x9e\xe3\xda\x58\x8d\xca\xb5\x5a\xa1\xa4\x3a\xf1\x8b\xcc\x16\xe1\x80\x4a\x83\x8e\x65\xc0\x91\x69\x9d\x08\xb6\xa5\x5d\x16\x16\xdb\xfb\xbf\xfa\x3c\x15\x7a\x85\x50\x4f\x39\xfc\xb7\x69\x37\x61\x07\x7c\x88\x2c\x06\xec\xfa\x19\x34\x88\xf2\x8d\x82\x2d\xcd\xaa\x9d\xf5\xd8\x7b\x08\xab\xb1\x74\xae\x7a\xf6\x1b\x88\x60\xd1\x1f\x62\x43\x9d\x54\xcd\x54\x37\x14\x71\x75\x9d\x54\xe5\xa5\x97\xda\x85\xc9\x0b\x1b\x8b\x1d\x87\x29\x83\x65\xe5\xeb\x5a\x8a\xf4\xd0\xfc\xfe\xf6\xc0\x64\xa8\xab\xc3\xa7\xff\x67\xf4\x2b\x7c\x8d\x0f\xa0\xfa\xbf\x66\xb3\xf5\x81\x8d\x87\x51\xd2\x67\x36\x04\x39\x29\x68\xe4\xe5\xa8\x78\xdc\x17\x06\x7a\x36\x43\xfb\x03\xbe\x0d\x66\x10\x09\xa9\xdd\x24\x8b\xc7\xff\x1f\xeb\x11\xe9\x24\x6e\x0e\x11\x12\x42\x39\x7c\x57\x07\x26\x99\x51\x84\xaf\xa8\xf6\x09\x5a\xba\xb2\x72\x72\xad\xa0\x67\x71\x6c\xfb\xc2\x46\x26\xf0\xab\x96\xa2\xb6\x57\xfc\x5b\x51\x36\xe7\x2b\xb7\xc7\x02\xd5\xbe\xc8\xd5\x3b\x1c\xed\x7f\xae\x12\x38\xaf\x6b\xa6\xfe\xb3\x4a\x36\x65\x94\xc6\x51\x11\x85\x30\x49\x8e\x17\xb2\x32\x49\xc2\x87\xd5\x80\xd4\xb5\x61\x9a\xa4\x43\x76\xbc\x84\xc7\x5d\xd1\xb3\x6e\x06\x5a\x6d\x3c\xe9\x45\xd9\xd0\x76\x49\x87\x55\xda\x3e\xaa\x27\x83\x03\xf3\x17\x81\x6a\x9f\x3f\x55\x5b\xd8\x0b\xed\xa5\xa5\xe7\x67\x69\x99\x22\xe2\x9c\xed\xd0\x02\x16\x56\x39\x1f\x97\xc2\x04\xc0\x3a\x1f\x53\x4c\x6f\x03\x9b\xad\x44\xa1\x90\x3d\x22\x96\x02\x0e\x0d\x4e\xc0\x6d\x15\x0b\x7a\xfd\x8b\xd8\xf6\x6d\x02\x97\x16\x83\x76\x94\x26\x91\xaf\x9b\x1a\x8a\xe3\xa8\x67\x8b\x88\xe9\xe7\x5d\x72\xdc\x41\xdf\x2e\x28\x92\xf7\x35\x9b\x6d\x3c\xe2\xdd\x81\xd9\x89\xd2\x19\x3b\x4e\xb3\x86\xd7\xf8\x87\xe4\x35\xc2\xae\xef\xa4\xd3\x4a\xb7\x64\x22\x7f\x77\x9f\xa2\x6e\xb8\xda\xaf\xc3\xcb\x63\x96\x2e\x6c\x5b\xf6\xdd\x6b\x6d\x5d\x0b\x0b\xed\x61\x3a\x6a\x79\x2a\xe2\xd3\xb4\xdc\x44\xd4\xa4\x41\xc1\x9e\x14\x6b\x37\x98\x97\x6c\x8a\xf0\x4a\xda\x34\x7d\xad\x31\x1f\xd8\xcc\xce\xaa\xe6\x57\x06\x27\xca\x8d\xaf\x10\x6e\xea\x26\x9f\xcd\xed\xf9\xe4\x2a\xfa\x5e\x5a\xfa\x24\xbd\x16\x53\xc9\xe1\x8b\xe0\x6c\xfc\x14\x61\x14\xec\xf6\x9b\xaa\x40\xae\x75\x37\xbe\x47\x51\xa9\xe3\x29\x38\x20\x18\xa8\x8b\x38\x01\x10\xe9\x4c\xe0\xea\x20\x33\x0e\xd9\x00\x18\xcc\x1f\x52\x3e\x01\xd5\xd4\xef\x63\xad\xba\x9e\x67\x77\x32\xff\x53\x02\x5d\xc1\x8b\x3f\x45\x27\xfa\xd6\x09\x77\x58\xa4\x65\xd1\x8d\xb8\x4b\x09\xeb\xe7\x01\xb8\x85\xf0\x3d\xff\x52\xcb\xd1\x6d\x79\xd6\xc1\x38\x62\xa4\x9e\x44\x5f\x3a\x14\x53\x40\xfc\x61\x94\x44\x61\x3a\x1c\x95\x24\xb5\xef\x4b\xcc\x63\x55\x62\x6e\xca\x1d\x0e\xcd\xcb\xd6\x45\x4f\x18\x91\x5b\x1a\x22\x76\x2b\xf8\x04\x7f\xa8\xfd\xfc\xaf\x7d\x05\x20\x2a\xbc\xed\xe5\x40\xd1\xd9\x9d\x53\xb4\x31\xe7\x74\xbf\xe1\xe5\x5a\xd1\x76\xdf\x32\x41\x9e\x0c\x0e\x4e\x8c\xfb\x11\x4d\x32\x56\xd7\xab\xa4\xf6\x09\x33\x2c\x2d\x08\x2e\x11\x14\x9c\xd6\x11\xc2\xe9\xda\xca\xfe\x42\x7b\x7d\x60\x0a\x44\xf5\x8e\xeb\xd7\xe5\xeb\x8e\x29\x4c\x5a\x1e\x85\x2c\xf7\x85\x2d\x83\x24\xcd\x14\x2c\x03\x0e\x96\xd6\xc0\xa3\x6e\x16\x9f\x7c\xc7\x51\x72\x44\xc1\xae\x8f\x34\xea\xfe\x65\xd6\xc4\x51\xb1\xa1\xb0\x4d\xe7\xb4\x0a\x89\xe6\xf0\x21\xe9\x99\x1c\xbb\x87\x1b\x98\xc7\xfa\x6d\x60\xe4\xa5\xb5\xb9\x5a\xdc\xf2\x9a\x4f\x2b\x10\x5a\x2f\xb6\x21\x58\xe1\x2a\x07\xc8\xc1\x56\x3c\x4d\x70\x43\xdc\xb0\xbf\xfd\x72\x34\x6c\xb5\xa6\x1b\xfe\xf7\xbb\xfe\x5a\x7f\x6c\xd8\xe1\x28\x4e\x37\x6c\x46\xf1\x92\x10\x64\x57\x9b\x46\xd8\x45\xc8\x05\x83\x0f\x7d\x59\x75\xb9\x5d\x44\x60\x8f\xc4\xeb\x43\x4d\xb1\xd9\x1f\x90\xa7\x8b\x1c\xee\x5f\x61\x85\xf1\xcd\xd8\x77\x56\xa1\xee\xca\xd7\x0d\xd4\x52\xfb\xdb\x2b\x69\x31\x68\x55\x4f\x25\x2a\xda\xbe\xb0\x76\x4c\xa5\xa3\x6d\x3f\xa5\xe4\x83\x93\xe3\xa8\x76\xa7\xe3\x41\x77\xf8\x8b\xbb\x6e\x17\x87\x03\x13\x65\x54\x06\x7d\x91\xfd\xd4\xc3\x81\xe7\x26\xfe\x3b\x4f\x74\x7c\xe8\x8c\x70\x19\xc9\x8b\x07\xf8\x66\x11\x82\xae\x9e\x5e\xf8\x3c\xbc\x03\x3c\xb4\x39\x57\x9a\x11\xe5\x70\xfa\x43\x18\x75\xab\x71\x85\x27\x77\x02\xae\x2d\xa6\xfe\xfe\x34\xd4\xd8\xe6\x7b\x15\x47\xe3\xbf\x1a\xab\xac\x16\x62\x79\x1c\x93\x3b\x90\xe8\xc0\x03\x3d\x1c\x2b\xf7\xfe\xea\x14\x9b\x2e\x1c\x20\xf2\x2a\xd6\x3f\xd5\xa9\x06\x14\xcf\xf6\x36\x5e\xc8\xb1\x95\x2c\x1e\x64\xf3\xff\x50\x57\x55\xbf\x39\xf6\x4d\x30\x6f\x8e\x29\x77\x21\xe4\xc1\x1e\x0d\xb6\x05\xcb\x07\x7f\x1e\x7c\x2a\xf0\x09\x1e\x34\xd1\x4f\x99\x38\x4c\x07\x29\xec\xc0\x54\xbe\x44\x72\xeb\x4f\x29\xe6\x9d\x3c\x22\x24\xa1\xe2\xae\x60\x60\x00\x42\x84\x9f\x8d\x55\x8b\xf9\x49\x1c\x94\xb0\x5a\xa8\x41\x23\xdc\xf8\x46\x93\x66\x5f\x59\x28\xa5\x9d\xfd\x2e\xed\xa4\xb1\x90\x8d\x10\xa2\x95\x34\xce\x0b\x2a\x2f\x57\x2b\x08\x65\x25\x3e\x14\xf9\xa6\x11\x13\x10\xf5\xa3\xee\xac\x4f\xd7\x30\x99\xba\x53\x18\xf2\x7c\xe6\x98\x2f\xa9\xbd\x6f\x27\x50\xaf\xfc\x13\x53\x6d\xec\xad\xbb\x95\x03\xba\x75\xb7\x66\xa3\x98\xe2\x29\x5d\x13\x35\x42\x8c\xd4\x96\xa2\xc0\xe7\x21\x14\xf9\x85\x06\x5e\xa0\xaf\x95\xae\xe7\x12\xe7\xed\xe1\xc0\x27\xb0\x0f\x6b\x09\xdd\xb4\x72\xff\xb3\x19\xfa\x42\x44\x0c\x67\xc7\x53\xf5\x34\xd5\xab\xe9\x08\x3b\x46\x9c\xbf\xae\xc1\x8d\xf9\x26\x50\x64\x23\x7d\x62\xbe\xaa\x26\x16\x1e\xf4\x4f\xe9\x1b\x51\xdd\xba\xab\x90\x15\xb7\xb5\x04\x62\x5d\xf9\xe4\xb9\xf6\x28\x4b\x87\xbe\x83\x04\x51\xd0\x4d\x7c\x88\x6f\x02\x0f\x3b\x06\x41\xbf\xa7\x56\x15\x50\x9d\x3f\xbc\xde\x69\x02\x64\xbc\x9c\xae\xb8\x50\x08\xb1\xc1\x69\x45\xdb\x76\x5a\x65\x5e\x0e\xa6\xc3\x39\x0f\x91\xe1\x0e\x37\x04\xb1\x7b\x3a\xd5\x66\x94\x9e\x4a\xda\x73\xe2\xf4\xa0\xe0\x2a\xb0\x1a\xa9\xb1\xe6\x9f\x1f\xb5\x54\x98\xb2\xc9\x8b\x58\x82\x93\x26\xf9\xc1\x9e\x25\x49\x51\x1e\x0c\xe4\x30\x4f\x8e\x15\x0f\xd0\x49\x15\x23\x97\xc3\xd1\xc6\x8c\xe7\x1b\xff\xbb\xe7\x54\xd1\xe4\xb2\xe2\x9a\xfc\x5e\x6d\xbf\x1c\x98\x6f\xa7\x61\x58\x66\xee\x97\x84\xc8\x87\x7e\x49\x18\x7e\x7c\x22\x7f\x25\xb3\xa6\x18\x90\x41\x47\xed\xf9\x2a\xac\x14\xfe\x72\x47\x47\x15\x67\xbd\xdc\x97\x80\xfa\xe0\xda\x30\x4f\xe5\x58\x89\xb7\xed\xa6\x28\xc1\x9d\x6e\x0a\xfa\xb7\xfd\xe4\xdc\xb7\xdc\x0e\xd3\x5c\x38\xd3\xe1\xb0\x73\xe7\x10\xdf\x68\x8a\x3e\xb3\x11\x25\xfd\x4f\x90\x7d\x76\x64\x9d\xbe\xff\xe1\x5e\xa0\x30\x76\xf7\x54\x7e\xf1\x3d\xf2\x63\x71\xdc\x3c\x20\xaf\x54\x7a\x63\x7c\xa1\x10\x54\xdc\xc2\x1c\xe3\x25\x71\x71\x06\x3b\x80\x60\x75\x88\x60\x2b\x5c\x55\x25\x9f\xf5\x28\x47\x96\x11\x16\xf3\xb4\x6a\x51\x38\xad\x02\xaa\xca\xfb\x89\x86\x36\x29\x60\x27\x00\xb3\x00\x73\x2b\x6c\xc6\x19\x4c\x93\x40\x9d\xb6\x0f\xd6\xc1\xaf\xb6\x73\x6b\x57\x29\x8c\x10\x20\xb8\x4f\x68\x5f\x74\xf3\x93\x95\xb6\x57\x0a\xe3\x23\x23\xf4\xd4\xc6\x3d\xe2\xcc\xc2\xc0\x9a\x6e\xe5\x55\x2a\xd3\x88\x54\x04\x5f\x6b\x9e\x03\x3a\xc5\x5b\x0a\xb8\x73\x49\x09\x1f\x5d\xaa\xc3\x59\xda\x87\xe6\x97\x9f\xa2\xd3\x58\xb4\x8d\x68\x61\x21\x70\xbb\x33\xf6\xe2\x98\x0f\x30\x87\x53\x2b\x4e\xc4\x1c\x14\x5d\xe1\xc3\xc0\x0b\x77\x00\xab\x2b\x38\x66\xac\x1d\x9c\x42\x3f\x41\x5c\x83\x04\xd1\x13\x1d\x8f\x66\xd9\x49\x60\x4c\xf8\x52\x57\x74\x97\xf9\x1f\x51\x60\x23\x4e\x56\xcb\x31\x2c\x30\x58\x02\x1b\xf0\x18\x66\x1e\x00\xc7\x6f\x07\xaa\x25\xee\xac\xde\x4c\x65\x1c\xdb\x82\x3a\xf6\x50\xf5\x38\x12\x78\xc4\x3b\x38\x49\x1c\x00\xf4\x57\xbe\x2c\x7f\x53\xdb\xc3\x2f\x2c\x1e\xac\x86\x9b\xa4\x45\x68\x68\xd4\x53\x8b\x54\xdc\x95\x5a\x69\x87\x24\xb2\xbb\x6b\x36\x2b\x22\xcf\xe9\x87\x9d\x7b\x53\xd1\xc9\x73\x33\x8b\x38\x6c\x8a\x2d\x20\x8d\x4d\xa6\x14\xb9\x7f\x34\x56\xa7\xd1\x8f\x1c\x05\x4a\xcf\x24\xf9\x2e\x8c\xb8\x2e\x71\x88\xeb\xef\xcb\xf4\x9c\x2a\xc5\x3e\xbd\xac\x25\x37\x3e\xdd\xd1\xbe\xb1\xaa\x3a\x74\x6d\x6c\xfb\xa6\xb0\x2a\xe1\xf7\x91\x4e\xf8\x7d\xe4\x4c\x64\xb1\x6e\x93\x62\x63\x46\xe3\x92\xf5\x46\xa8\x62\x4a\x8c\xee\xee\x8e\x9f\x9e\x34\xee\x0a\x20\xcb\xf1\xde\x28\x87\x5d\x11\x6b\x9a\x92\x86\xd0\x73\xd0\xa0\xbd\x00\x6b\xfd\xfe\xd8\xe3\x6b\x8f\x36\x09\x89\xe7\x45\x96\xae\x8a\x02\x9b\xd0\x2b\xb7\x54\x0f\xa0\x17\x40\x0c\x89\x86\xdc\x44\x49\x91\xd3\xae\xc6\xe4\xde\xc1\x56\xe1\x1b\x55\x30\xcc\xd2\xae\xcd\xa2\x70\x95\x96\x98\x90\x0a\x2b\x81\x84\xf3\x8a\xc7\xe9\x23\x32\x7a\xc8\xce\xd4\x6b\xa3\x87\xe6\xbf\xd4\x36\x23\x93\x15\x2d\xbf\xfa\x4f\xaa\x38\xa4\xae\xf4\xbf\x78\xb0\x3d\xb4\x59\xdf\xe1\xfc\x9a\x54\x16\x9d\x17\x11\x0e\x4c\xcf\x66\x6c\xd5\x05\x8b\xa8\x1a\x8e\x8e\x34\xe0\x4b\x5f\x6c\x8f\xe2\x2a\xc2\x3d\x34\xef\xa7\x47\x75\x7a\xd5\x49\xe9\x17\xdb\xc3\x32\x21\x0e\x83\x58\xa5\x7b\x8f\x28\xb2\x8a\x23\x0d\x4a\xc0\xfb\x1d\x57\x57\xcb\xe7\xfe\x39\x5c\x93\xf3\xc7\x43\xba\x07\x29\x10\xa2\x62\xb8\x8e\x06\x3e\xfb\x54\x4f\x66\x7d\xee\x73\xed\x7e\x94\xae\x99\x24\x89\xf0\x21\xc5\xb4\x2a\x2a\x63\x75\x06\xe1\xa5\xa5\x03\xed\x22\x33\x6b\x36\x6e\x29\xe0\x16\xba\x2a\xf9\x5a\xa1\xa8\x56\x6c\x31\xe8\xa5\x59\x1f\x2d\xf8\x48\x1b\xb6\x08\xb6\xc7\xd7\x35\x86\xb5\x7d\xcb\x04\x3e\x1b\x59\xf8\xc3\x4c\x6a\x04\xa7\xd1\xe5\x59\x5d\x06\xeb\xf7\x34\xa0\xf5\xf5\xc6\x74\xd6\x28\x36\x89\xa3\x8f\x71\xfa\xfd\xde\x26\x1e\xd5\x5c\x8a\xb7\x74\x72\xab\x28\xbb\xd8\xb5\xd2\x38\x4f\x7f\x28\xda\x20\xf4\x15\x88\x76\xde\x75\xf9\xc4\xdc\xbe\x52\x72\x99\xd3\x45\xb2\x3e\xaa\x55\x98\x84\x62\x90\x0e\x4d\xae\x62\xf0\x29\x55\xcc\xe3\x4d\x75\x54\xe9\xeb\xac\x3c\x5e\xac\x55\x81\x6b\x93\xf5\x84\x67\x83\x8e\x15\x98\x96\x77\x75\x02\xe5\x9e\x52\x41\x09\xcd\x70\x64\x4d\xa9\x93\x3d\x47\xe0\x8e\xb8\xfe\xa2\x29\x19\x00\xbf\x1e\x8e\x3a\x42\x95\x32\x41\x72\x80\x3c\x04\x8f\x6a\x44\xc1\x48\x54\x81\xe9\xf7\xf1\x0f\x77\xc6\x9f\x70\x81\xdb\xe7\x3e\xf7\x0b\xfe\x29\x1f\xa5\x90\xda\x79\xef\x0b\x8b\x5a\x3e\x59\x34\x82\x5b\x13\x82\x2e\x20\x51\x7f\x87\xea\x43\x98\xbd\x1f\xa2\xd0\x21\xcd\x28\x0e\x6b\x2a\x89\x34\xf8\x51\x8c\x0e\x75\xf5\xa9\x03\xf3\x0e\x08\xa4\x45\x51\x1e\x04\xad\x2f\xfe\xaa\x97\x15\xa8\xdc\x01\x0e\x5a\x02\x9f\xd5\xbe\x8b\xd3\x15\xd0\xf3\x2b\x63\xa5\xbb\xc5\xb2\x06\xa2\x07\x56\xd9\x2a\x69\xaa\x56\x35\xda\x1d\x9d\xea\x38\x45\x3a\x68\x2b\x80\xcb\xee\xa8\x33\x3e\xf7\x39\x3e\x0a\xae\x02\x1d\x0c\xe8\xe9\xce\x49\xeb\x97\x5e\x70\x4c\xb9\x94\x54\xc4\xcf\x03\x20\x24\xfd\x41\x3e\x6f\xd3\xcb\xc0\x75\x83\xf2\x04\x77\xc5\xe2\x54\x73\xed\xa3\x9e\x66\x5c\xf5\x68\x24\xe9\x9a\x19\xda\x22\x8b\x5e\x61\x73\x08\x08\x05\x6b\x19\xf0\xcd\x14\x78\x6b\x64\x13\x02\x46\x20\x95\xbd\x4b\x41\x72\x7f\x8b\xc6\x19\x89\x02\x38\xb5\x48\x7d\xff\x58\xf9\x30\xd0\x97\xc1\x19\x7c\x17\x01\xba\xf0\xd5\x49\xeb\xc3\x8a\x05\xa0\x91\x2a\x9b\x5b\x97\x71\x50\x63\x8e\x99\x96\x1a\xdb\xf3\x6a\xa3\xf9\x1c\x86\xfd\xcc\xf6\x53\xf2\x15\xb6\xa0\x7d\xb1\x75\x59\x79\x41\xf6\x95\x51\x9a\x15\x7b\x94\xf7\x20\x4a\x4a\xae\x93\xd4\x2d\xa9\xcb\x0a\xa6\x75\x0e\x05\x5d\x1c\x92\x80\x1c\x72\x59\x99\x12\x1c\xfc\xff\x03\x75\xaa\xde\x57\xdd\xdf\x71\x9a\x16\x42\xaa\xd4\x44\xe4\xe1\xa4\x8a\xad\xc9\xd3\xc4\xc4\x33\x8a\x16\xe6\x92\xa2\xc6\xbd\xae\x4e\xea\x9d\x13\x4f\xff\x51\x86\x83\x5d\x4a\xbc\xe1\x2f\xc6\xae\x3f\xea\xbf\x7c\x72\x32\x45\x1f\xe0\x93\x71\x20\xef\x12\x99\x28\x87\xb4\xf8\x83\xbd\x1d\x6f\x38\x46\x36\x8b\xd2\x6e\x3e\x43\xef\xce\x2d\x12\xe3\x29\xde\x73\x27\x3e\xa3\xdb\x3e\x46\x59\xfa\xb2\x17\x5c\x84\x8d\xf9\x36\x3d\x3a\x5f\xd7\x93\x0c\x8b\x20\xc0\x6b\x4d\x3f\xac\x22\x41\x50\x78\x3a\x33\x8a\xba\xf1\xc6\x6e\x15\x8d\xdc\x85\x75\xe6\x1b\x7a\x7b\xc4\x74\x5b\xf4\xb4\xec\x68\x6a\x7d\x93\x4d\x8a\xa8\xb4\x07\x8a\xc5\x5e\xe7\x6d\xdd\xb7\xdc\x1e\x56\xd1\xb1\x73\x5b\xe1\x59\xde\x9f\xaa\x7a\xb7\x1c\x23\xe2\xd9\x5a\x80\x7d\xf0\xab\x02\x88\x61\x64\x94\x90\x93\x91\xc1\x81\x4d\xff\x48\x35\xba\xdf\x6c\xaa\x1c\x5b\x93\xf9\x66\x45\x27\x8c\xb5\x8d\xd3\x49\xe8\x08\x9e\xd2\x64\xf5\xf8\x61\x2a\x04\xa2\xe9\x66\x12\xf8\x06\x9c\x49\x03\xac\xe0\xf9\xb6\x11\x0a\x6d\x27\xe4\xe8\xe0\xc4\x97\x6a\x27\xd5\xa1\xf9\xe5\xb6\x4d\x8a\x41\x99\x47\x26\x1f\x2a\x95\xe6\xf7\x95\x4a\xf3\xfb\x9a\xd3\xd9\xc4\xb1\xed\x3e\xa6\xda\xd9\xae\x05\xbe\x7d\xfb\x3c\x8e\x1f\xc9\x8b\x79\x0e\xe4\x63\x34\x63\x3a\xfd\x8b\xf3\xe4\x0d\xdd\xca\x7c\x92\x93\x1d\xa2\x87\x4f\xc3\x05\xab\x07\xd2\x5c\x9c\x9a\xbb\x3b\x8a\x8b\x1c\x2e\x33\x8e\x6c\x62\xaf\x10\xdb\x58\x86\xb1\x35\xd9\x9c\x27\x11\x60\x38\x38\x42\xbb\x8b\x1a\x3f\x7d\x92\x8d\x88\x12\xd6\x58\x96\xbf\x6b\x48\xc8\xbf\xd8\xb6\x7d\x58\x03\xc9\x0c\xb7\x1c\x25\xd7\xe1\x26\xe7\xb6\x6b\x7b\x65\x12\x16\x2a\xa6\x40\xab\x3f\x8e\xce\x1b\x40\x43\x08\xe8\xd8\xbb\x34\x44\xfd\x45\x81\x36\x6c\xc9\x31\xd5\xdb\x7e\xac\x56\xc8\x59\x58\x68\xe7\xd1\x70\x14\xdb\x19\x3a\x63\x71\x16\x81\xd0\x11\x16\xfb\xba\xa2\xf7\x7a\xbf\xc6\x0c\x5b\xf9\xe0\x69\x52\xf4\xd3\xb8\x17\xd9\xcc\xaa\x68\x6d\x96\xce\x33\xbe\xee\x3c\xa6\x58\x3e\x5e\xa1\x32\x0d\xf2\xb2\xb7\xa7\xc0\x16\xd5\xa7\xd1\x0b\x70\x5a\xd5\xd3\xcd\x88\x72\x99\x2d\xef\x7d\x9e\x53\x90\xf6\x73\xae\x07\xdf\xbe\x12\x0e\xaa\x23\x11\x52\xff\x0c\x7b\xc2\x84\x61\xa1\x3c\x0c\x94\x7c\xa5\x96\x56\x8c\x5e\x8e\x68\x62\xa6\x84\x5a\xf8\xa6\x36\x93\xfb\x96\xdb\xfd\x8c\x4b\x2b\xce\x5a\x2f\x2c\xba\xb6\x0b\x7d\x70\xa6\x69\x77\xaf\xea\x00\xd9\xa4\x38\x50\xd8\x50\xab\xe5\xcc\x02\x88\x81\xea\xab\xbf\x43\xf6\x1a\xf9\x20\xf2\xb4\xb6\x4e\xd0\x20\xa1\x94\xf7\x43\xc5\x10\xce\xc8\x51\x3c\xe8\x1c\xf7\xf0\x4b\x11\x4b\x11\x68\xbf\x0e\xb5\x7b\xa1\x9e\x20\x97\x0b\xb9\xa4\xdb\x88\xd5\xe0\xb4\x5c\x9d\x62\x4e\x54\x59\xd1\xbb\x4d\xb0\xcf\x28\x09\xe3\xb2\x8b\xa6\x4d\xb8\x6c\x3b\xa1\x55\x88\x4a\x11\x38\x21\x24\x08\x94\x29\x2a\x06\x36\xb3\xbd\x34\x23\xf1\xc4\x45\xc7\xb0\x4d\xce\x96\x3b\x00\x34\x62\x4b\x5a\x38\x56\x9f\xe9\x28\x74\xca\x45\xa5\xd8\x73\x6b\xaa\xcf\xcf\xc6\x1b\x9f\xa1\x57\xc2\xa0\xb4\xd0\x8c\xc4\xf5\x1b\xed\x55\x7d\x12\xce\xa6\x4a\x41\x48\x63\xd2\x65\x25\x76\xf5\x1e\x86\x51\x22\x4b\xda\xe1\x28\xdf\x7c\xa0\x5a\xe1\xf7\x4e\x2a\x2b\xa5\x19\xdc\xb1\xab\x77\x61\x40\x9c\xd0\xe0\xe2\x41\x0e\x36\x6f\x02\xac\x23\x26\x9d\x5e\x9f\x0e\xf1\xff\xad\x0d\x48\x04\x1c\xa7\x6b\x9c\xec\xe5\x87\x0c\x54\x43\xce\xdb\x0a\x5e\x73\x38\x50\x8d\xc0\x81\x5a\x6e\x37\xc8\xc4\x62\xd6\xef\x05\xba\x33\x7a\x4b\x39\xbe\xaf\xfd\x8d\xc9\xd3\x8a\xb9\xb3\x88\xfa\xa6\x48\x33\x84\x2d\x58\x85\xff\x4e\xb5\x0f\xfc\xbb\xc6\x5c\x72\x5e\x66\x6b\x76\x43\x32\xbc\x78\x2c\x16\x27\xe6\x9b\x49\x43\x23\xf5\x30\x8c\x54\x2b\xdf\xa5\xf1\x14\x17\x62\x1d\xbc\xbf\xdc\x1e\x44\xdd\xae\x05\xfa\xaa\x09\x7d\xd0\x70\x8a\x17\x51\x61\x92\xa8\xc4\x11\x05\x2b\x70\x47\x35\x40\xdc\x51\x4d\x35\xdd\xc8\x0c\xd3\xa4\x9b\xa3\xd2\x80\xf5\x73\x15\x4b\x06\x3b\x16\x12\x98\xfc\x0f\x70\x51\xf9\x1f\xb4\xcc\x7e\x94\x67\xe5\xa8\xa0\x02\xa8\x4b\x33\xee\x5f\x3c\x38\x9d\x32\x13\xe6\x97\x96\xff\x07\xed\x39\x46\x09\x34\xc3\xaa\x9f\xc0\x79\x75\x4a\xd1\x5e\x7f\xf7\x94\xb2\xf6\x3d\xea\x19\xaa\xd6\x1f\x42\xc0\xdd\x1d\x9f\x70\xd9\x3d\xd9\x9e\xa2\x58\x58\x68\x9b\xa1\x29\x6c\x99\x09\xad\x05\x8b\x9d\x04\xfe\x2c\xfa\x4e\x93\x5e\x74\x3f\x4b\xd7\x9d\x2b\x82\x38\xae\xa5\x08\xa0\x2e\x2b\xa9\xac\x6b\x8a\xe6\xd6\x0c\x4d\x99\x21\xbe\x86\x8d\xb8\x12\xb4\x14\x59\x0d\xbd\x93\x80\xb4\x1c\x80\xcb\x64\x8e\x25\x42\xd2\x1f\x3a\x2f\xe2\x8f\x92\x41\x39\x98\x51\x84\x0b\x37\x39\xd0\x12\x00\x43\xcb\x71\xab\x1e\xad\xf9\x9e\x4b\x4b\xed\x9e\x13\xff\x70\xe5\x77\xf7\x68\x75\x0e\xd8\x43\xf3\x44\x59\x30\x04\x61\x94\x1b\x2c\x08\x42\x48\x39\xd5\x83\x86\xc9\xb1\xdd\x5d\x2d\x02\xc4\x49\x6f\xc0\x90\xb8\xb6\xb1\x6d\x72\xf1\x4c\x5b\x3d\x56\xcd\xa6\x67\x14\x0f\xff\x1b\xd3\x88\x1b\x1f\x03\xe6\x89\x19\xb9\x9e\x34\xa7\xe4\x7f\x60\xde\x51\x36\x6d\x2f\x1e\x1e\x9a\x6f\x97\xa3\xdd\x5e\xd3\x01\x0a\x62\x82\xd6\x26\x13\xb1\x05\x32\x01\x9c\x03\x4f\xa8\x72\xf3\x5f\x8e\xa7\x6a\x28\x6e\x13\x3e\x1c\x7b\xa1\x14\xca\x03\x15\x05\x88\xdd\x5c\xa6\x19\x69\x4d\x09\x80\x1b\x6a\xa3\x23\x93\x44\x60\x5d\xc5\xf1\xbf\x09\x68\x1e\xdf\x28\xb2\x18\x72\x34\x98\x23\xcc\xe5\xfb\x3c\x07\xeb\xf8\x19\xef\x71\xc6\xd5\x3a\xb2\x05\x55\x31\xb5\x62\xab\xd6\x78\xad\xeb\xd8\xbe\xc8\xd4\xd7\xe9\x68\x50\x39\xd0\x0e\xf5\x7f\x01\xd6\x89\x6f\x54\xaf\x1f\xc1\xe5\xbb\xaa\x29\x10\xa9\x07\x51\x36\xae\x5b\xcb\x76\x98\x0e\x87\x36\x09\x45\x12\x62\x8a\x67\x45\x20\x9f\xae\xf2\x96\x66\xfd\xb4\x98\x51\x49\x77\xae\xad\x32\x45\x66\xa0\xca\xb8\xff\x28\x10\x46\xc6\xc4\x46\xfd\xc1\x4a\x4a\xe1\x8b\x37\x76\xb7\x02\xd5\x79\x86\x3a\x26\x06\xf8\x81\xa2\x69\xa2\x14\x2c\xf1\x3e\xaa\x5e\xe3\x4d\xc5\x32\xab\x72\xaa\x83\x68\x34\x12\x9b\x0f\xef\x84\x6d\x3e\xdf\xd4\x28\xf5\x0f\x7e\x15\xad\x8b\x34\x7d\xb0\x1c\xdf\x0d\xbc\x15\xf9\xae\x9a\xe8\x61\x94\x44\xc3\x12\x5e\x16\x0e\xfd\x37\xe8\x2f\xf9\x7a\xca\xcb\xca\x6d\x3c\xa7\x52\xfb\xaf\x6b\x31\x03\xe8\x0f\x23\x8e\xf9\x51\xe0\x73\xe6\xe8\xfa\xc5\x61\x73\x4a\xe9\x12\x87\xe9\x68\x03\xe2\x5c\x1a\x41\x22\x0a\xff\xdb\x5f\xe8\xa5\x97\xda\xc5\x20\x4a\x56\x95\x17\xc4\xac\xa9\xc8\x16\x01\xad\x21\x81\xb3\x0c\x5c\xd4\x4f\xd2\xcc\x76\x67\x55\xdd\x83\x23\x20\x05\x60\x13\x48\xc3\xac\xa2\x4a\x7d\xa0\x38\x48\x7b\xa6\x7c\x85\xd6\xa7\x3c\x5b\xcb\x89\x3e\x6d\x36\xf1\x1a\xe7\x83\x14\xa1\x84\x50\x14\xeb\x56\x18\xfa\x3d\xa1\xa7\xf5\x7d\x8f\xc4\xab\xc3\x40\x07\x89\x87\x80\x2d\xe6\x6b\x55\xa2\xe0\x36\x66\x82\x86\x22\xf8\xda\xd1\xa1\x7d\x07\x73\x06\xee\x09\x69\x1d\x17\x6c\x7c\x68\x63\xbb\x92\x99\x42\xea\x4a\x9c\x8f\xd1\x7e\xfa\x79\xcd\x9a\x9e\x96\x59\x6e\x31\x6e\xa8\x4f\x5e\x08\xb4\x96\x07\x7e\x04\x7b\xf4\x04\xa1\x73\xf9\x5a\xd1\x27\xe5\xa1\x4d\x0c\x11\xcf\xd4\x52\x65\x7c\x3d\x7e\x7a\xba\x72\xb8\x6f\xb9\xbd\xbc\xfc\x37\xe9\x5d\x18\xb7\x3a\x69\x2d\x2c\xf0\x70\xbd\x89\x30\x4c\x20\x12\x4a\x19\xa3\x45\x35\x7c\x81\xde\x7a\x93\x7a\x74\x4c\x9e\x27\xdc\x48\x01\xea\xe0\x23\x3f\x46\xa2\x53\x51\x98\x08\x53\x3b\x4b\x18\xa2\xbd\x62\x53\x23\x25\x00\xcf\xc1\x58\x6d\xc2\xaf\x74\x9a\x94\x5f\xfc\xd5\xad\xc7\x26\xad\x17\xf6\xb3\xab\x7c\x07\x61\x06\x32\xec\x77\x02\x8f\xdc\x1b\x8d\xbd\x62\xc5\xce\x09\xb9\x2b\xac\xf2\xc3\x1e\xa8\xe0\x7b\x5b\xbf\xf2\x65\xc7\x85\xe0\xbb\xb8\x6f\x92\xc7\x8c\xd0\xf1\x32\x9c\x79\xac\x5d\x94\x38\xb9\xd7\x94\xe6\x03\x43\xbc\x13\xa1\x38\x50\x99\x27\xc7\x3b\x3f\xcb\xf8\x28\x66\x79\xc7\xe1\xc5\xe8\x50\xe1\xc1\xf0\xe9\xbc\xf5\x6a\xa1\x65\x33\x9a\x8f\xc3\x03\x9c\x6e\xc1\xbd\x83\xd7\x79\xd5\x8b\xe4\x65\xff\x2f\x65\x6f\x1a\x23\x47\x9a\xa6\x87\x91\x59\x55\x64\x37\xd9\xf7\x31\x23\x09\xb2\x95\x92\x06\x1e\x09\x6e\xb4\x56\x30\x64\x18\xeb\x1f\x91\x2a\xd6\xa2\x87\x04\xa6\xa6\x40\x72\x39\xab\x86\x60\xf0\xcb\xc8\x2f\x33\xa3\x2b\x32\x22\x27\x22\xb2\x8a\xd5\xf6\x0f\xdb\xf0\x2f\xff\x90\xe1\x6b\xd7\x0b\x19\xf0\xae\x57\x96\x25\x8d\xf7\x3e\xb4\x33\xeb\x75\xe6\x1c\x3b\xbb\x33\xd3\xab\x99\x69\xf6\x7d\xf3\x26\xab\xc8\xe2\x7d\x93\x45\x23\xde\xe7\x7d\xbf\xef\x8d\xca\xe8\x85\xfd\xab\x23\x9a\x95\x99\x71\x7c\xc7\x7b\x3c\x07\xc4\x25\x67\x15\x9b\xe3\x14\xf6\x64\x3c\x9b\xc7\x27\xbe\x09\xf0\x1c\x4d\x39\x2c\x77\xe7\xd4\xf0\x1b\x44\xe0\x74\x1e\x9c\x67\x90\xae\x36\xff\x81\x0d\x0f\x6a\x5d\x3b\x50\x7f\x43\xda\x71\x4a\xf7\x76\x77\x50\x21\x5c\x88\x7f\x1e\x46\x9c\xa7\x5d\xa3\x43\x9e\x0d\x15\xf2\x6c\xd4\xd9\x4e\x36\x73\x6b\x0a\x11\x4f\x72\x86\x70\xca\x1d\xae\xa6\x52\xda\xcc\xec\x30\xcd\x0a\x17\xc7\xe1\xd1\x6e\x28\xc6\x36\x1e\x1e\x5b\xd4\x6b\x76\x65\x16\x75\xcc\xda\x93\xe5\xb5\xb3\xaf\xc9\x58\x59\x24\x9c\x55\x1e\xea\x68\xfc\xe0\xd9\xfd\x73\x8c\x05\x0c\xc7\x1f\x61\x91\x91\xe2\x85\xaf\xb8\xce\x20\x47\x03\x3b\xeb\x23\x2d\x08\x7f\x26\xf0\x1e\xb4\xd7\x11\x11\x40\xef\x61\x6e\xa2\x76\xf4\x0f\x31\x03\xf9\x57\xd4\x4c\x6f\x9b\x6c\x39\xef\x98\xd8\x36\xb6\xc7\x9f\x7c\x5c\x97\x30\x44\x49\x27\xca\x6c\x08\x55\x19\xa1\xeb\x97\x9f\x17\x1e\xff\x74\xd7\x6f\xb1\x7c\x17\x19\x5c\xa4\x7c\xe7\xf9\xdd\x71\xc5\x2d\xeb\x09\x01\xe0\x96\x2f\xec\x05\xba\x49\x6c\xe1\x7b\x5a\x8d\x2f\x7f\xd9\x59\xda\x95\x0f\x12\xe3\xe9\xb4\x32\x53\x07\xa5\x09\x35\xa0\x8f\x29\xf2\x42\x99\x69\xef\x84\x56\x05\x96\x1e\xa2\x35\x46\x76\x03\xdd\x3c\x9a\x69\x95\x53\x4f\xa8\x15\x0d\x87\x25\x7c\x53\x17\x47\x77\xc0\x97\x95\x1d\x57\xb5\xe5\x30\x5e\x1c\xa0\x79\x8f\x4d\x14\xb5\x73\xae\xa5\x80\x89\x6f\x06\xca\xe3\xfd\x61\xc5\x10\x93\xc6\x3f\x56\x84\x9f\x55\x84\x57\x92\xa8\x3f\xab\x30\x74\x1b\x63\x45\x10\xba\xa5\x01\x75\x1b\x0a\xca\x77\x6b\x6a\x77\x3b\x38\xdf\xec\x8f\xb2\x82\x7a\x89\x0e\x9b\x7a\x64\x7e\x61\xeb\x34\x45\xb7\x5c\xd8\xc7\xa6\x8a\x57\x7f\x6e\x6a\x4a\x91\xa8\x6a\xec\x54\x9f\xf0\x4c\xf0\xb3\x7c\x5c\x97\x43\x84\x59\x2a\x9f\x10\x47\xef\x86\x77\xf7\xd6\x2c\x3b\xd4\xf7\x0f\x55\xbc\xd9\xf1\x48\x1e\x6f\x79\x34\xdb\xae\xa9\x8c\xed\xe0\x7c\xd3\x0c\xda\x11\x14\xff\xd0\x8d\xd5\x92\x4a\x7c\xac\x44\xf1\xdb\xb6\x37\x4a\x76\x79\x1f\xcb\x75\x25\x4d\x03\x82\x37\xf6\x8d\x3b\x74\x09\x28\x0e\xfc\xf6\xd8\x13\x15\x7e\x30\xf6\xed\xa6\x0b\x8e\x07\xd3\x36\xaf\x19\x15\x9f\xef\x00\x60\x82\x4f\x26\xd3\x09\xe3\x52\xb3\x97\x16\x85\x4d\x10\x39\x60\x97\xf9\x1d\xfa\x75\x3e\xae\xab\x98\x9b\x6c\x90\x17\x59\xca\xe1\xbd\x2b\xab\x7a\x11\xcd\xcb\x35\x6a\xf9\x07\x9b\xab\xc4\xa8\xf6\x0b\x0a\xcb\xbe\x0a\x71\xde\xc7\x94\x26\x89\x06\x26\xce\xe7\xf4\xbe\xa2\x00\xc2\x57\xd4\xf5\xfd\x1a\xf1\xac\xc4\xaa\xa8\x9c\x32\x52\xb5\xd3\xe3\xb7\x3d\xca\x1f\xf3\x65\xc0\x2b\xf4\xe4\xb0\xe8\x63\x32\xf2\xb1\x16\x7e\xde\xe4\x99\xa9\x0a\xdf\xaf\x70\xd2\xf9\x7f\xa9\x6e\xc9\x67\x54\x29\xc4\x60\xbd\xad\xb2\x0d\x93\x17\xa3\xc2\x2a\xd0\xfd\x3d\x75\xd1\xf7\x34\xf0\xdc\x66\xcb\x65\x5a\xb2\x7f\xd1\xfb\xa2\xb8\x10\xe4\x92\x76\x00\x4c\xbb\x05\x71\x70\x69\xad\x16\x5d\x34\xdf\x39\xdc\x98\xaa\xc4\x2c\x7d\xed\x50\xd3\x0e\x86\x11\x97\x7b\xb1\x62\x80\xea\xcf\xc7\x0a\x62\x1f\x25\x21\xa9\xd6\xe4\x73\xca\x99\x8e\xed\xc6\xf8\x44\x95\xe2\xef\x2a\x66\xdc\x79\x6d\x20\xbf\x5e\xe3\xe4\xb2\xd0\x24\xa0\x8a\x2c\xbb\x02\x4a\x56\x98\xe8\x4b\x9e\x44\x5d\x06\xe9\x14\x5c\x39\x95\x7e\x1f\xb6\xa1\xd7\xc1\x0a\x82\x75\xde\x34\x7d\x6b\x84\x80\x8f\x8c\x81\x99\x5a\x7c\x52\x23\x8e\x43\xe3\x7f\x46\x81\x29\xa9\x16\x28\xf3\x6d\x57\xcb\x93\x17\x7f\xb5\xc6\x47\xec\x55\xe0\x12\x68\x1a\xb0\xc8\x77\xa0\xf4\xe6\xcf\xeb\xd2\x75\x9a\x3c\x43\x3f\x83\x1d\xe4\x11\x8a\x4d\xe2\xfb\x43\x37\xe9\xec\xd1\x0e\xce\xf3\xf2\xcc\x22\xbd\xf4\xb2\xd2\x17\x29\x24\x71\xa6\x04\xfb\xf6\x69\x42\x8e\xa0\x64\xe7\x26\x8a\x57\x8c\x0e\x0d\xda\x60\x60\xc0\x2b\xba\x37\x57\xa0\x7f\xf7\x8b\x13\x0c\x74\x8c\xed\x3d\xbe\x67\x7c\xfe\x3f\x6c\x29\x88\xe4\xec\xc4\xb7\x34\xae\x4f\xe9\xd0\x1d\x38\xd0\xcc\xd7\xd8\xcb\xa9\x43\xa9\xac\x48\x63\x2a\x2b\x0b\xa6\xf8\x23\x14\xbc\x35\x35\x50\x68\x65\x27\x1c\x57\x52\x28\x1c\xd7\x7d\xd5\xcb\xbb\x5f\xeb\xdc\x6f\xda\x96\x40\x2d\xae\x3e\x73\x4d\x4f\xe4\x6b\xda\x6e\x34\xeb\x50\xcf\x8d\xb5\x8d\x31\xf8\x50\x1f\x63\x75\xd5\xb1\x47\x26\x9e\xd5\xd8\x69\x80\xea\xf6\x7a\x35\x9b\x7b\x63\x1f\x6c\xec\x42\x28\x2e\x34\x28\x9a\xa0\x08\x94\xbf\x4f\xdf\x87\x2d\xf9\xbb\x9a\x61\xf0\x7d\x8a\x1a\x00\x11\x83\x7c\x0a\x42\x31\x76\x77\x12\xb8\x2d\x3d\x30\x84\x0a\x6c\x67\x2c\x6a\xc9\xdb\x43\xa2\x7d\xfb\x9a\xc6\x66\x69\x3b\x0a\x79\x9f\x63\xa4\xc9\xd8\xc3\xa0\xef\x2b\x2e\xc6\xcf\xfd\xdc\xcf\xcd\xf9\x7a\xcc\x17\x27\xe5\x2a\x46\xb3\x64\xe9\x6f\xb5\x94\xfe\x5a\x63\xa2\xc4\xc0\x4f\x2b\xed\x86\xab\xca\xce\xbb\x93\x59\x33\x98\xad\xb8\xc2\x55\x60\x7a\xe5\x7a\x26\xf5\x92\xf2\xae\xa5\x90\x22\x2d\x72\x93\x53\x09\xc7\x01\xd3\x18\xaa\xc2\x27\xea\xa2\xdb\xe9\x32\x65\xc6\x88\xa3\x1e\x6a\xe9\xd3\xf7\x31\xd1\x65\x6d\xa8\x80\x22\xa2\x70\xd6\xd7\x92\x7e\x43\x7b\x86\xfe\x0a\x2f\xf2\xe2\xc1\xac\xa2\xd5\xdf\x50\x4a\x16\x76\x94\xa5\xed\x34\xe9\xc0\x46\x08\x1d\x19\xd0\x19\x91\xa2\xf1\xc6\x81\xa9\xe9\x0b\xa4\x3d\x63\x63\xe6\x7a\x61\x68\xdc\xd1\x26\x68\x77\xea\xb8\x5a\x36\x2e\xd3\xf8\x19\xcd\x6c\xb8\x11\x28\x78\x34\xb7\xbc\x84\xf6\xef\xb7\xcc\x22\x8d\x62\x01\x31\x48\x49\x5c\x57\xc1\xd5\xcd\x1c\x23\x49\x9a\x15\xdb\xf0\x89\x3e\xb4\x81\x44\x14\xc4\x77\xa8\x07\x26\xeb\x51\x75\x0e\x29\x0f\x82\xdc\x9f\xd2\x17\xf3\xb1\xd3\x4b\xe8\xdb\x38\x3a\x86\x91\xe7\xfa\xee\xbe\x07\xaf\x0a\x37\x51\x66\xbe\x81\xaf\xc3\x0b\xfe\x81\x2a\xf6\xfc\x40\x5f\x67\x52\xa4\xa3\xcc\xf4\xf8\xb7\x91\x36\x80\x63\xc8\xc7\x0a\x44\xd5\xb1\x79\xd4\x4b\xf2\x86\xc7\xec\x9c\x46\x47\x80\x4f\x3c\x00\x7d\x68\x33\x23\x0c\xbc\x3a\x60\x9e\x12\x07\xb3\x71\x64\xbb\x33\x0a\x5a\xf2\x80\x86\x2f\x42\xb9\x1f\xd3\xa4\x15\x9f\x5f\x0f\x39\x2b\x8a\xd8\xee\xa6\x89\x2e\xd2\xe3\x34\x6d\x05\x86\xea\x8b\x39\x0c\x01\x72\x22\xf6\x5a\x90\xb8\x5c\xe8\x01\xa9\x7a\x9e\x86\x19\xd6\xf6\xf3\x4a\x09\x45\xc0\x28\xf1\x5a\x43\x69\xed\x1d\x57\xf5\xdb\xe3\x0a\xe3\x55\xac\xd2\xf4\x72\x2e\x80\x4e\x77\x70\xbd\x8e\x6a\x3c\x30\x59\x98\xe6\x56\x86\xa1\x78\x29\x2a\xda\x12\x17\x59\x05\x34\xeb\xdf\x43\x9a\x85\xa0\x8b\xbb\x9e\x14\x7e\x4d\x74\x21\xa4\xbf\x98\xd9\x7c\x94\xf5\xc4\xb5\xc6\x81\x48\x5d\x5e\x70\x46\x09\x38\xe4\x05\x61\x12\xe8\x3b\x85\x2b\x4a\x3f\xcf\x27\x6a\x16\x64\x96\x4d\x5e\xcb\xe7\x8f\x69\xb6\xae\x14\x4d\xef\x60\x3d\xc5\xe6\x78\xb6\x86\x77\x12\xa6\x49\x68\x3b\x52\xe4\x92\xe4\x96\x6e\x9c\x4f\xc6\xcf\x2b\xb9\xfb\x38\xea\x11\x1c\x74\xc6\x21\x7a\x3e\xbe\xa3\xbc\x22\x60\x61\x86\x02\xe3\xc9\xb1\x60\xf5\x86\x51\xaf\xb7\xd6\x36\xe1\xb2\x6b\x9e\x38\x12\xb2\x8b\xf3\x4f\x4d\x2d\xef\x65\x14\xc5\x2a\xe7\x33\x1a\x25\x87\xfa\xbe\x74\xfd\xe9\xb1\x20\x8e\xb9\xa9\x2c\xd0\xc2\xcc\xf2\xf3\x13\x05\x7f\xff\x53\xe3\xa9\x74\xe9\xa5\x66\x94\xf4\x6c\x0e\x25\x2d\xa9\x41\x29\x58\xf1\xa5\x4a\xea\x3f\xf5\x14\x69\x1b\x8f\x56\xc8\x84\xc4\x75\x23\xaf\x29\x9f\x99\x6b\xaa\xf8\x9f\x87\xfd\xd8\xe6\xe4\xf3\x87\x71\xec\xc4\x80\x16\x9d\x8b\xd4\xc6\x54\x67\x7f\xdf\xbe\x66\xbe\x2c\xf4\x5e\x2e\xef\xe9\x48\x58\xd7\x68\xaf\x05\x7f\x37\xaa\xd7\x83\xcc\xfb\xd1\xb0\xea\x7f\xa5\x9d\xa2\x11\xd2\xb3\xce\x35\xe6\xe5\x47\x95\x0e\x76\xc7\x46\x8d\x4a\x3f\x5c\x69\xca\x5c\x9e\x9a\x56\xd4\x88\xcf\xcb\x58\x1c\xe1\x11\x46\x05\x73\x9a\x30\xa9\x88\x80\xb0\xb8\xf5\x40\xc5\xfc\xcb\xe9\xeb\x51\x92\x2f\x47\x0d\x4f\x47\x7c\x8b\xe6\x13\x1f\x2b\x22\x49\x61\x86\xf6\xb1\xf2\xcf\x10\x6c\x9c\x44\xdf\x13\x05\x7e\x66\xd8\x20\xf2\x00\x91\x1d\x55\x1c\x84\x27\xf8\xb2\x3f\x40\x4d\x12\x0b\xd5\x39\x20\x11\x04\x59\x42\x0f\x1a\x2d\xf1\xbf\x70\x78\xfe\x55\xdb\x86\xc0\x89\xa0\x9c\xe8\x47\x84\xc8\x4c\x53\x10\xf8\x9b\x13\xea\x85\x77\xa2\xbc\xc8\xa2\xf6\x48\xf0\x67\x3c\x53\x68\xff\x91\x59\xf3\x84\xee\x52\xfd\x35\x5a\xc6\xb1\xe6\xb2\x14\x36\x38\xdc\x3b\x88\x20\x89\xfc\xf7\x3e\x65\x61\x4e\x5d\xcd\xab\x8f\x6c\x28\xea\x23\xe0\x90\x48\x0f\xd9\x55\x01\x2b\xc1\x9b\xa4\x90\x2a\x88\x1a\x15\xa3\x52\x60\xb6\x35\xa1\x00\x06\x63\xf7\xdf\x91\x6e\xa1\x38\xca\x52\x7d\x18\xba\x38\xff\x03\xdd\x01\x8e\xff\xeb\x40\x19\x34\xdd\xad\xea\xf9\x60\xee\x3a\x13\xf0\xf2\x21\x0b\x25\xdd\xc3\xac\x2e\x03\x69\x80\x10\x8c\xad\xc2\xb1\x39\x7f\x27\x50\xd0\x8d\xf7\x00\x7b\x44\x98\xf5\xa8\xc6\xe0\xb7\xcc\xbb\x92\x7c\x98\x66\x8e\x39\x8d\xf2\xc2\x75\xed\x77\x72\x5d\x35\x95\x44\x64\x82\x92\x40\xc5\xd9\x2f\x7f\x46\xc3\x2e\xf9\x1f\xca\x18\x76\xeb\x1e\x6d\x84\x68\x94\x9f\x54\x45\xd8\xe5\x2c\x4d\xd8\xbb\x03\xe5\xd1\x53\xaa\x54\x7a\xaa\x0e\xdf\x94\xa5\xb4\xce\xd3\x85\xe2\x11\x7f\xa4\x79\xfa\x1f\x29\x70\x7d\x98\x66\x09\xc5\xaf\x18\x61\x0c\xf7\xc2\x43\xfe\xfd\x40\x73\x6a\x6f\x68\xad\xd4\x13\x81\xd7\x96\xbd\x3c\xde\x6e\x6e\x28\x0b\xc3\xb2\x29\xfa\x16\x51\x8f\x2f\x88\x5d\x50\x06\x3c\xd3\x30\xc2\x7d\xfb\x9a\x61\x9a\x0f\x6c\x11\x85\xb2\x6d\x62\xd0\x71\x75\x0c\x97\xf9\x31\x2e\x53\x96\x51\xcf\xce\x88\x4d\xd2\xeb\xa6\x59\x67\xa6\x1c\xd2\xce\xf2\xc2\xed\x86\x77\x15\x01\x48\x0b\x98\x14\x69\xb9\x35\xae\xcd\xa8\x8c\xb5\x41\x69\x1a\xf6\x86\x27\xd1\xe4\xe3\x4a\xae\xa3\x20\x0e\x0d\xd3\x45\xa5\xc1\x58\xd1\xbf\x9a\x2e\x61\x1f\x6a\x76\x63\x93\xf7\x1b\xaa\xd3\x7b\x0e\x9f\x11\x08\xd8\xe7\x79\xf6\x77\xa2\x1c\x94\xd3\x86\x13\xef\xba\x1d\xcc\x1c\xfa\x27\x5f\xad\x6a\x17\x88\x89\xb2\x6b\xbb\x25\x9d\x51\x28\x96\xc0\xaa\xc6\xb0\xe4\x25\x74\x16\x9d\x17\xfb\x7f\x51\xd7\xb9\xed\x98\xac\x68\xa7\x14\x88\x78\x46\x67\xa0\x78\x97\xe7\x54\x43\xac\x13\x11\xf7\xbf\xa1\x90\x8a\x68\x33\x89\xc6\xc9\x76\x44\xcc\xc1\xf9\xa6\xe9\x40\x92\x83\xf5\xbb\x54\xb9\x6e\x53\x35\x0b\xfa\x66\x75\x79\xc7\x8b\xde\xae\x1b\x12\xc2\x64\xd9\xfd\xf9\x5d\x5b\xdf\xa3\x2f\x32\xd3\x21\x4e\xb5\x89\x67\x7d\x0d\x91\xf1\x84\x58\x1c\xc0\x37\x14\x1b\x06\xb5\x6a\x9c\x55\xdc\x9f\x4e\xb4\x12\x51\xc0\x4f\x59\x2a\xeb\x06\x05\xbe\x61\x7b\x66\xea\x0e\x17\x0e\x37\xbb\x05\xfa\xfc\x88\x8b\xff\x6c\xac\x98\x2c\x7f\xa6\x6a\xf7\x66\xd5\x64\x90\x86\x53\xb8\x97\x4f\x68\x8b\x11\x03\x69\x65\x16\x62\x13\xdb\x8d\x8a\xbd\xb4\x3c\x8a\xac\x52\xc3\xb9\x28\x70\x59\x19\xc1\xcc\xf7\xc6\xaa\x07\x76\x9f\x11\x23\x78\xc4\x0c\xbf\x70\xaa\x4b\xe5\x22\x2a\xaa\x8e\xb4\x24\xf3\x9f\x05\xda\x0c\x88\xae\x1f\x95\xfc\xbb\x4a\xb5\x66\x73\xaa\x8c\xb4\x70\xb8\xf9\x8d\x51\x64\x0b\xe5\x36\xf6\xae\x02\xe8\xbf\xab\xcc\x5b\xf3\xd5\x34\x63\x65\x4f\xc4\xa2\x2c\x97\xca\x27\x55\xd0\x75\x68\x73\xb6\x7b\x16\x05\xac\x6f\x62\x1c\x23\xd7\xff\x8b\xb1\x07\xeb\x5f\x50\x12\x4b\xec\x03\x2d\xa0\xc5\xe7\xa6\x44\xa8\xfe\xde\x8c\x2f\x4b\x03\x53\x22\x22\xd1\xbe\x26\x7e\x6a\xaa\xf2\xf5\xf7\xa8\x81\x62\xb8\x2f\x85\x68\x80\x79\x56\x7c\xa2\x18\xd6\x71\xf4\x8d\x51\xd4\x71\x76\x8a\x8b\x9f\x83\x01\x97\x14\xa0\x67\x92\xe8\x75\xdb\x79\xac\x0c\x54\x58\x44\x0c\xd4\x68\x99\x21\x55\xf7\x2e\x9f\x49\x7c\x87\x76\x5a\x21\x3b\x55\x6c\xbd\xe8\x67\xe9\x66\xbe\x8e\xae\x1f\xe2\xb3\xc6\xc4\x97\x21\xac\xe9\xd9\x8c\x17\x5f\xb1\x97\x53\x6a\x11\x37\x55\xe3\xfd\x9c\xea\x9d\xb7\xb3\xb4\x5c\xee\xf3\xdd\x7e\x7d\xd7\xd6\xd4\xff\x1a\xe1\x04\x9e\xef\x5b\x63\xa5\xb1\x01\x91\x08\x94\xcd\x6e\x05\x6a\xab\xb8\xa4\xba\x19\xef\x4d\x3d\xf9\xaf\x1f\x9c\x6f\x0e\xd8\x6f\x9d\xc7\x63\x75\x70\xd6\xec\x2d\xdd\x28\x2f\x77\x24\x49\x4c\xa4\x1f\xa8\x12\xc8\x0d\x57\x4d\xe9\xd8\x30\xcd\x30\x1b\xc5\x00\xb4\xa1\x9c\x41\xa7\x13\x8b\xa5\xa6\x89\x4d\x36\xa8\x2a\x5a\xa3\xd8\xcb\xc7\x53\xd5\xfc\x85\xc3\x65\x56\xe6\xa2\x0a\x61\x27\xfa\x34\xe8\xad\x3a\x7d\xde\x8c\xd2\xd5\xf2\xd9\xb0\x19\x52\xa0\x8d\x91\x6a\xf4\x1b\x4c\xd1\x8f\xad\xc3\x1c\x60\x5c\x72\xd3\x80\x4f\xdc\x5d\x77\xa3\xd8\x76\x76\x7b\x75\x11\xb8\x05\x3b\xb3\x9e\x72\x28\x61\x2a\x3c\x8d\x96\x36\xf5\x27\x7f\xf9\x19\xd4\xd4\xb0\x46\xa0\xf6\x87\xf8\xe4\x19\xe8\x0e\xca\x80\x55\x66\x26\x1d\x0f\x82\x60\xca\x1a\x76\x78\xe1\xaf\xd5\x14\x75\xfa\x66\x38\x64\x34\xa4\xcb\x30\x8e\x48\xfb\xf0\xa2\x03\x03\xa9\xed\x81\x06\x07\xbe\x11\xad\x20\x3e\x9e\xca\xd5\x8e\x1e\x6d\xc6\x86\x76\xd8\x83\xf3\xfc\xe8\xaf\x54\xb8\x0f\x8a\x4b\xf8\x87\x75\x68\x93\xae\x09\x21\xd2\x25\x6a\x7d\xaa\x7c\x7c\x4f\xc9\x0c\x9d\x54\xb5\x87\xc2\xc6\xb6\xdc\x51\xd2\x64\xaf\xdf\x96\x76\x4f\xbc\xc0\xe2\x56\xa0\x7c\xde\x7f\x48\xd3\x04\xdd\x92\xf3\x9a\x88\x7c\x81\xa6\x09\xe6\xcf\xce\x96\x32\xb4\xfe\x03\xc5\x5f\x64\xa5\x68\xfc\xc3\x0d\x2c\xaf\x28\xd6\x71\x6d\x5c\x84\xb3\xfd\xae\xdb\x1d\x01\x66\x24\x0a\x47\xbf\x86\x70\x9c\x65\x40\xd5\xd3\xf9\xb7\x98\x77\xce\xa9\xfc\xc8\xbc\x6b\x2a\xa9\x8e\x3a\x05\x83\x73\x8a\xa3\x78\x57\x6d\x9d\x3c\xb4\xf8\x1f\x94\x53\xf0\x56\x05\x14\x51\xdb\x8c\x2e\x57\x55\xdb\x8d\x64\x12\xf1\x0a\x1e\xe8\xd5\xdc\x6f\x20\xbd\x74\xc5\x66\x49\x2a\x5a\x26\xd8\x30\x4f\xe1\x71\xf2\x89\x63\x03\x76\xec\x00\xe4\xe0\x6d\x61\x3f\xfb\x4a\xf3\xc9\x54\xfd\x7d\xe1\x30\xf4\xf0\xa3\xa4\x27\x31\xac\x4b\x00\x54\x9f\x6e\xac\xf4\xb8\x1e\x4c\x35\x02\x16\x0e\x37\xc9\x08\x3f\xef\xbb\xf2\x06\xd2\xb2\xf7\x95\x90\xe5\xfb\xde\x1c\xd9\x0c\x2d\x8b\x41\x38\x37\x83\xf2\xb7\xb0\x6d\xa0\x32\xef\xda\x62\x6e\x1e\x4c\xcf\xb2\xc5\xc5\xa6\x3d\x66\x07\xc3\x82\xc6\x32\x86\xec\xbd\xed\x8a\x67\x87\xf8\xb9\x6a\x39\xea\xce\xa8\x88\x6c\x3e\x5b\xee\x3b\xe2\xf3\xeb\x01\xdb\x9b\x0a\xa2\x02\x1c\x9a\x18\x03\x4f\x93\x80\x0e\x11\x0b\x88\xb3\x5a\x6c\xdd\x3f\xd2\xda\x2d\x3f\x52\x8a\x08\xb6\x13\x15\x69\x06\x48\xac\x68\x90\x69\x54\x58\xc3\x49\x3a\x5e\x52\xd3\x2e\xb3\xbd\x51\x6c\xc8\xdd\x55\xc1\xae\x7e\x4c\x7f\x2d\x35\x49\x5f\x9d\xb2\x79\x68\x62\x06\x88\xfb\xf9\xa7\x89\xa5\xd3\x22\xd1\xc4\x40\x5f\x73\xee\x88\xec\x86\x12\xa8\xdc\xaa\xd6\x88\x29\x34\x83\xa1\xa1\xf2\xab\xa2\x77\x3f\x54\xf4\xee\x87\x9f\x9b\x6a\x75\x6d\xc7\x66\x62\x20\xb7\xe4\xba\xf9\x7e\xb7\x7f\x77\xa3\x52\xe4\x5e\x35\x59\x87\x3b\xa0\xa2\x22\xea\x63\xe7\x0d\x07\x57\x1b\x66\x36\x0f\xb3\xa8\x6d\x3b\xb3\x0d\x27\xa7\x7e\x1f\xab\x07\xa2\x7a\xe8\x31\xb3\x77\x53\xa0\xc4\xd9\x6f\xd6\xed\xbf\xc3\xcc\x0e\x47\x71\x1e\x21\x9f\xc0\xc3\x9e\x41\x09\x81\x4f\x26\xdb\x47\xe4\xc1\xf9\x66\xd7\xc4\xb1\x74\xd6\x1d\x7c\xed\xe0\xbc\x83\xaf\x3d\xa3\x3c\x23\x61\x14\x46\x89\x36\x3b\x27\x50\x83\x48\x5c\x14\x74\x3f\x23\x0a\xfb\xcf\x6b\xc0\x72\x99\x33\xf2\x0a\x4f\xa9\xb8\x00\x9e\x95\xc7\xc7\x29\xe2\xd2\xb2\x68\x51\xa0\x1c\x83\xee\x22\x16\x03\x76\x6d\x57\x4b\xe1\x31\xef\x71\xa9\x02\x65\x91\x37\xc7\x5e\xe3\xe4\x13\x40\xdc\xb0\x8c\x9c\xc2\x52\x8f\x60\x7a\x8e\xe6\xab\x94\x96\xe8\xa1\x02\x07\xb4\x97\x1a\x91\x20\xf1\xdd\x1a\xfb\x1a\xf5\x23\xbc\x12\x7c\x2f\xcc\xc7\x19\x59\x49\x05\x1d\xac\x9e\xd3\xbb\xde\x91\xf9\xa6\x3d\x56\x64\x86\xc0\xbc\x8e\x63\xe7\xf9\x76\x53\xc1\xc7\xe2\x62\xf9\xdf\xa2\x3f\xe3\xfb\xf1\x40\xc2\x73\x55\x85\xe6\xb6\x58\xbc\xd7\x10\xfc\x06\x51\x9e\xbb\xf5\x8c\x5d\x07\x69\xe0\x89\x03\xa1\xf2\x12\xb6\x59\xdf\x0c\xf3\x27\x15\xed\xe0\xd2\xd8\x4b\x47\xb2\xe3\x22\x7b\x28\x20\xb6\xc4\x0f\x6f\xa2\xe8\xc3\x27\xda\x27\xf5\x0e\x0d\x05\xd4\xf5\xde\x54\x2c\x2f\x5d\x50\x79\x17\x69\x90\x48\xce\x51\x29\x4f\x34\xe7\xfc\x63\xdd\x89\x3d\x53\x3a\xf0\x35\x63\x16\xa2\xfb\x15\x84\x77\xf9\x83\x02\xf0\x7e\x5a\xa9\xf3\xe7\x51\x06\x7f\x45\xc0\x20\x11\x0e\x8b\xfb\xa6\xc7\x7d\xdf\xac\x53\xca\x0f\x8d\x33\x73\xc1\x23\x84\xf3\x0b\x1f\x2b\x94\x4c\x5e\x58\xc6\xf1\x23\x50\x78\x43\x81\xff\xdf\xa8\xe9\xc8\xbf\xd2\x2c\x97\x2f\x04\x50\x0c\x6b\x52\x1e\x3d\xeb\x6a\x39\x0d\xd3\xc1\x30\x26\xfd\x0c\x82\xc2\xba\x7d\xa2\x9c\x82\xd8\x27\xce\xd3\xb0\xc0\xab\xaa\x0a\xbf\x25\x36\x7f\x51\x0d\x6f\x66\xb4\xe3\x2f\x77\x60\x16\x71\xe2\x4a\x5d\x77\xe7\xa1\xeb\x84\x3f\xff\x6d\xa0\x6d\xb7\xcf\xa8\xc8\xf3\x11\x8a\x82\x82\x23\xa6\x31\x81\xd8\xfd\x11\x46\x0b\x80\x56\xbb\x48\xec\x1b\x7b\xe6\x05\x4c\x75\x11\x17\xa2\x2c\x1f\x7f\x75\x8a\xd4\x62\x1c\x52\xc5\x01\xa9\xaf\x60\xd6\x62\x13\x7f\x8f\x06\x08\x8a\xc3\x4c\x97\xc1\x96\x77\x87\x90\xa0\x88\x01\xce\x00\x00\x83\xf9\xf2\xbb\x5a\x8d\x7d\x6a\x14\x91\x94\xb2\x5d\x95\xd8\x43\x1e\xac\x26\x03\x6d\x8f\x1a\x08\xf2\x48\xbb\x5b\x04\xf9\xea\x43\x9e\x1e\x5e\xc3\x64\xcc\xac\xc9\x73\x9b\xe7\x2e\x54\x76\x4b\xa6\x83\xd8\x78\x9d\xe1\xb5\xd1\x70\x18\x01\x1d\x50\x47\x72\xd0\x92\xd8\x09\x94\xbf\xf1\x58\x26\xf4\x58\xb0\xed\x5d\x55\x8e\x6b\x13\x5d\x6b\xbc\xea\x81\x57\x23\x16\x88\x41\xec\xfc\x81\x2a\x09\x7d\xa0\x84\x84\x7b\x23\xde\x10\x18\xd1\x8d\xe5\x40\xe0\xdd\xca\xd0\x38\x4d\x07\xb6\x60\x41\x1b\xad\xaf\xca\xc7\x81\xff\xd3\xbe\x25\x22\x4e\xae\x84\x48\x4f\xe8\xc2\xda\x89\x5a\x60\x50\x2f\xb3\x36\x91\x38\x8f\x8b\x6c\x5a\x6a\xe7\x7e\xa0\x65\x48\x5c\x06\x64\xd8\xe0\x99\x6e\x15\x65\x6c\xb6\x4f\xe6\x13\xe5\xc6\xc3\xcc\xc3\xce\x6e\x25\x90\x7c\x81\x00\x87\xe8\x67\x5e\x54\x6b\xd9\xec\xc4\x43\x52\xfe\x21\x93\xe3\x04\xb4\x5c\xbd\xc6\x86\xa3\x83\x9f\xaf\xdd\xaa\xd3\xc2\x26\x45\xc4\x8b\x06\xf7\x3f\xe8\x87\xa4\x17\xb2\x3d\x0b\x7a\xa9\xd9\x35\xc7\x44\x74\x07\x6d\xf6\xcd\x40\x79\xc6\x6d\x4e\x2d\x33\x2f\x35\x13\x1b\x95\x69\xc1\x6c\xb9\xf7\x22\xbe\xdb\x52\x34\xd1\xef\x05\x3e\x7c\xba\x8a\x7d\x50\x04\xde\x7c\x09\x3b\x5d\x4d\xf2\x39\x6f\xfc\x8f\xd2\x34\xde\xd8\xc7\xd8\xa2\x05\xd8\xdc\x50\x4a\xd6\x2a\xf4\x39\x57\xe3\xf6\xda\x5c\xb5\x8a\x95\xc5\x06\x74\x2a\x44\xfa\x93\xa9\xbd\xf4\xeb\x24\xca\xb2\xc6\x79\x05\x07\xe1\x18\x95\x12\x91\xfb\xa0\x32\x4a\x68\xd5\xb4\x05\xaf\xdd\x08\xc7\x2b\x49\xd0\xf4\xe6\x7b\xe0\x00\x71\x2f\x7a\x6a\x15\xbf\x81\x17\xcc\x27\x53\x64\xe5\x45\xb2\x5b\xcb\x6c\x18\x79\xb5\x1d\xf4\x5f\x3e\x51\x7d\xc4\x4f\x54\x11\x47\x86\xe5\x93\xbe\x04\x71\x83\xd6\x3b\xe4\x46\x97\x95\x34\xf1\x03\xac\x7d\x20\x22\xdc\x40\x0b\x45\xf1\x46\x17\x1c\x00\x56\xb1\xd0\x37\x29\x7e\x72\xb6\x68\x4e\x9c\x98\x1b\xd1\xec\x8b\x38\xf1\x26\x76\x00\xf1\x89\x34\x5b\xf9\x66\x41\x07\x3d\x1b\xec\x75\x68\x96\x7f\xfc\xd5\xb9\xaa\xb8\x85\x22\x2e\xbd\x47\x3f\x82\x21\xff\x16\x62\x01\x90\x5e\x67\x94\x5b\xf5\x86\xca\x0f\x87\x26\x5c\x36\x3d\xf7\xe6\x91\xa7\xfc\x0b\xba\x6d\x3e\x56\x30\xa8\x6c\x94\x17\x31\x96\x8c\x83\xf3\x9e\x4a\x7e\x70\x49\x8e\x15\x16\x33\x36\xab\x6b\x36\xcb\x9f\x50\x64\xfd\xcb\xca\xae\x62\x37\xf2\x73\x29\x5e\xfb\xe6\xc3\x4e\x54\x50\x78\xa6\x8f\x55\xdc\x71\x7b\xec\x9d\x2b\x4e\x60\xb7\x93\x3a\x38\x3d\x72\x71\xb9\xa2\x28\x53\x78\x5c\xe5\xbb\xe4\x8f\xd0\xa3\x41\xcf\xf2\xbc\x8a\x14\xd2\x4e\x87\x75\xeb\x5c\xac\xbd\xdf\x53\x45\x6a\xca\x51\x6b\x91\x8d\x3b\x33\xfe\x9d\x3d\xa7\x7c\x2d\x9f\x98\x28\xb5\x9c\x69\x9a\xce\x81\x03\xcd\xbe\x89\xbb\x73\xde\xf6\x0a\x79\x48\x45\x09\xc5\xf1\xd8\xb4\x53\x8e\xb3\x48\x3f\xa1\x46\xef\x9a\xc9\x3a\xab\x69\xb6\xac\xed\x46\x54\xea\x79\xb6\x02\x3a\x80\xc7\xbe\x85\x7a\x3c\x7e\x63\x66\xe2\x29\x7c\x33\xad\x27\x3c\xb6\xf4\x1f\xfd\x47\x68\xa2\x20\x01\xfa\x14\xd7\x85\xdf\xbf\xad\xb8\xc2\x55\x2e\xfc\xc0\xa0\xf2\x8f\x0c\xf4\x0c\x5e\x1d\x9f\xa8\x81\x91\x76\xd6\xf2\xdc\x42\xe8\x9f\x15\x9b\x83\x8a\x7c\xb3\xb3\x91\x1a\xb5\xf3\x22\x2a\xc4\x3a\xde\x3d\x16\x07\x22\x7a\xa0\x62\xba\xf3\xe3\x2f\x4c\xab\x91\x97\xb3\x84\xde\x2c\x1a\xe5\x88\x64\xf8\x78\x2a\x96\x90\xd4\xf2\x98\xcd\xd2\x63\xb3\xca\x68\x11\xb2\x05\x15\x7b\x78\xfc\xfe\x0c\x11\x80\x04\x2e\x52\x63\x7c\xd4\xb7\xa6\xf3\x8d\x91\xc9\x0a\xb6\x54\x7b\x95\x19\x31\x5c\xac\xc0\xb7\x80\x50\x01\xc8\xc2\xe3\xad\x67\xb5\x0d\x92\x89\x7a\xfd\xe2\x31\x5a\xba\x1d\x00\xb3\x9c\xd2\x4e\x76\xd4\xf5\xa8\xe1\x83\x21\x3d\xaa\x72\x46\x72\x88\x37\xf6\xde\xbe\xff\x92\xc2\x32\x21\x52\xd2\x4e\x01\xae\xe7\x23\x35\x1b\xba\x99\xcd\xfb\xc0\xb5\x3a\x5b\xd5\x72\x72\x89\xc5\x8f\x5f\x27\xbf\x5f\xb3\xbd\xbd\x66\x57\x6d\x9c\xad\x61\x4f\xa8\xe3\xd7\xd5\xc0\x30\x57\xa2\xac\x17\x25\x7f\x85\xc4\x5b\xcd\x67\xa2\x24\x8f\x3a\x36\x83\x5c\xb6\x18\xc5\x36\xbc\x69\x6c\xad\xf2\xd6\x30\x5f\x0b\xfb\x69\x9c\xf6\xd6\x1a\xe5\x83\x70\xab\xb2\xab\x19\x6e\x06\x3a\x06\xe9\xa6\xd9\x80\x55\xc0\xc4\xeb\xb4\x1c\x3e\x7c\x3c\xf9\x82\x62\x14\xc6\xb1\x69\xa7\x19\x20\x3d\xca\xd6\x72\x43\xb5\x62\x6f\xd2\x2d\x01\xde\xfb\x99\xa2\x77\x87\xb1\x89\x06\xe4\xb1\xee\x42\x8e\x85\xc3\x3c\x6b\x4e\x20\xa9\x10\x25\xad\xa7\x95\xc0\x53\x56\xa4\xc9\xac\xb7\x8c\xb8\xa5\xe8\x6d\xd7\x95\x19\xf7\x75\xec\xfb\xfc\x47\xae\x51\x4a\x70\xa5\x8c\xfd\x40\x30\xc8\x3f\x50\xcf\xe1\x56\x25\xd0\x7d\x56\xf5\x15\xd3\x51\x3b\xb6\x39\xa1\x22\x1d\x9e\x78\x51\x6c\x38\xee\x55\xc4\xf3\x14\xb2\xf1\xdb\x9e\xfa\xdd\x8d\x5e\xe7\xb6\x2e\xda\xce\xff\x9b\x44\xeb\xaa\x32\x55\x6b\x83\xdc\xb5\x59\x11\xc5\x08\x6b\xd9\xff\x21\xa8\x7a\x41\x38\x1b\x5c\x5b\xe4\x7b\xcb\x6d\x57\x9a\x83\xe5\x6c\x10\xe0\xa3\xb2\x27\x5a\xd7\x46\x94\x17\x02\x25\x4d\x76\x1c\x17\xcf\xd5\x40\x95\xef\x9f\x51\x88\x3f\x16\x74\xc6\x0e\xb4\xb3\xe5\x7d\xa9\x67\x68\x98\x08\xca\xca\xb7\x8b\x8b\xc8\x66\x89\x05\x57\x1e\x31\xef\xef\xa9\x76\xdd\xba\xee\xa1\x9d\x57\x66\x80\x83\x28\xcf\x2c\xeb\xd8\xd3\xdd\x8b\x91\x6d\xf9\x3d\x7c\xac\xca\x08\xfd\x74\xd5\xae\xd8\xec\x29\x8f\xcf\xf9\xfe\x36\x71\xb5\x83\xf3\x42\xfe\xa0\x8d\x0e\x63\xe3\x1e\x9c\x8f\xf9\x8f\xb4\xd2\xcd\x09\x84\x3d\x58\x29\xf6\xb4\x54\x6f\xfd\x8d\xc0\xfb\xb9\x9f\xc7\x50\xc5\xbd\xcc\x4e\x3c\xc4\xf1\x1c\x96\x3a\x71\x50\xf3\xa0\xc4\x6b\x78\x17\xc8\x31\x6f\xe0\xfd\xf1\x46\x52\xa4\xff\x5e\x39\x41\x39\x8a\x41\x5e\x2a\xdc\x54\x7a\x67\x02\xc2\x2d\x7f\x06\xc8\x17\x36\xfc\x15\xf1\xea\x32\x50\xc0\x86\xfc\x51\xa0\x10\x61\x3b\x5b\x68\x07\x23\x9e\x38\xa3\xeb\xfb\x7f\x16\xa8\x0e\xd9\xa3\xf1\xce\x2f\xf1\x9e\xfc\x53\xa5\xed\x7c\x53\xd7\xb3\xcf\xe3\x89\xe1\xb9\xfc\x3a\xd6\x65\xa0\x35\x9e\x9c\x78\x31\xad\x0b\x5c\x0d\xc3\x7e\x79\x23\x50\x86\x84\x13\x3c\x32\x0c\x39\x68\x07\x23\x3d\x61\xe1\x78\x6c\xfd\x6f\x12\x25\xd3\xb5\x36\x97\x9c\x6b\x27\xa4\x33\xc5\x6d\xd3\xab\x51\xbc\x88\xc0\x0a\x55\x9f\x7b\xca\xf6\xff\x32\x15\xfc\x90\x4d\xbd\x4d\x65\x32\xc1\x05\xb8\xa2\xfa\x9a\x94\x70\xc4\xbb\x9c\x9e\x1d\x9f\x28\x5c\x60\x3f\xcd\x8b\x7c\xb6\xf1\xd5\x05\x87\x05\xf4\x45\x98\x9b\xaa\xbe\x75\x53\x73\x7b\xc6\x35\x56\x0b\xcd\x61\x96\x12\x66\x03\x3b\x46\x8d\xe0\xda\xc5\xa9\x5d\xe6\xe8\xd1\x66\xde\x37\x43\xf9\x0c\x03\x79\x34\x5c\x66\x1a\x79\x71\xf4\x68\xb3\x18\x9a\x86\x72\xaf\x59\xa7\x7c\x52\x9c\xe4\xeb\xea\x7e\xc6\xd9\x38\x3a\x77\xef\xf2\x27\xa4\xb8\x3d\xad\x98\xd5\x1c\x25\x1e\xd5\xd0\x70\x26\x77\xe0\x53\xf3\xf1\xd4\x95\x1d\xfe\x5a\xb3\xc7\xd6\x2e\x4e\x5f\xba\xbc\x4a\x69\xf2\xd5\x3c\xb3\x3c\x1e\xf5\x7a\x51\xde\x6f\x54\xe4\xe5\xcb\x1f\x11\xeb\x2b\xbf\x9d\x9b\x41\x9a\xf4\x1e\xc7\x18\xc4\xde\x78\xaf\xa2\x0b\x40\x63\x58\x10\x99\x0a\xaf\x7a\x57\x3b\xde\xb2\x36\x25\x0b\x6a\x63\xa6\x21\xd8\xbe\x8d\x01\xcd\x94\x9b\xc0\x2f\xce\xb3\x93\x6d\xea\xcc\x5f\x5d\x68\x1e\x99\x7f\xa5\xe1\x4d\x56\x37\x14\x91\x6e\xc3\xfb\x27\xa6\x2b\x36\xdb\xe5\xf1\x76\xdc\x57\x64\x9f\xf9\xc0\x07\x33\x80\x07\xe3\xf8\xac\xd6\x80\x42\x13\x5d\xfc\x4e\x74\x7c\x1a\xa6\x39\xc2\x3a\xac\x12\x27\x51\x8e\x66\x98\x2d\xa6\x7f\x45\x9c\x42\xa6\xcd\xf3\x6a\x09\x1f\xb4\x6d\x16\x9b\xa4\xd3\xf8\x5c\x87\x9c\xe9\x9a\xf3\x42\xd3\x66\x0c\x1c\x17\xb4\xba\xe2\x29\xfc\x40\x11\x22\x86\xd1\xd0\xe6\x33\x0d\xb7\x11\xcd\xb6\x68\xc2\x8b\x81\xa9\xcf\x51\x1e\x29\x30\x49\x67\x54\x84\xc4\xb2\x5c\x72\xfa\x2e\xf4\x52\x70\x2f\xc7\x95\x08\xd9\x0f\x34\xfa\xea\xb8\xd3\x27\xa4\xaa\xd8\x28\xb3\x9a\x94\x17\x28\x97\xa3\xcb\x0a\x9c\x97\xd8\xbc\x88\x2d\xa6\x05\xba\xdf\x2c\xc6\xc0\x27\x53\xb3\x95\x94\xa5\xcb\xe5\xa2\x42\xa2\x1c\xab\xec\xe2\xf2\x94\x17\xeb\x81\x03\x04\xe5\xca\x8b\x2c\x22\xd7\x50\x20\xc8\x64\x2c\xfa\xc6\xcc\xb9\xca\xeb\x8d\xcd\xb1\x86\x2a\x39\xab\x61\x7e\x59\x9b\x3d\xa6\xa3\x04\xe2\x69\xd8\x83\x51\xe5\xe5\x63\xd5\x59\x61\xe0\x0d\x21\x63\x11\x15\xbd\xa9\xe0\x10\xdf\x0b\x14\x31\x16\xfe\xdb\xcc\x96\xa2\x3d\x15\x6c\x92\x2d\x4a\x38\x1d\x58\x4e\x01\x93\x31\x9f\x04\x1c\xec\xc5\x58\xf3\x51\x58\xfe\x68\x77\x84\xb0\x93\x3d\x5e\x2b\x6e\xc4\x02\xc6\x93\xbb\x45\x6d\xf1\xa2\xaa\x33\x5e\xac\x5b\xcd\x46\x49\x27\xea\xcc\xf8\x29\xb3\x8e\x37\x00\x30\xff\x59\x6c\xc5\xc2\x35\xd9\x1e\x7d\x49\x62\x64\xda\x44\x06\x70\x58\x69\xbf\x37\x6c\xa8\x2e\x7a\x9c\xe6\xc5\x9c\x96\xad\xc0\xe2\x23\xc4\x24\x5f\x86\x81\xf1\x3f\x96\x9b\xc7\x5b\xca\x30\x69\x66\x8a\x6e\x7a\xf4\x68\x33\xb1\xa3\x22\xe3\x70\x1c\x73\xe0\x42\xe0\xf5\x06\x2e\x8c\xbf\xa8\xb0\xfc\xf9\x30\x4d\xf2\xa8\x1d\x47\x71\xb1\x46\xad\x1e\x61\x66\x36\x9c\x94\xcf\xa6\x8a\xa6\x0b\x88\x54\x7a\xcc\x02\xfe\x50\x44\x16\x6a\xe8\x82\x59\x3a\xea\xf5\xe9\x9b\x5d\x61\xc3\xab\x7a\x6b\xf1\x6c\xd3\x89\x42\xc3\xdc\x55\x26\xb3\x2b\x79\x9a\x0f\x15\x59\x61\x94\x24\x46\x64\xfd\x10\xac\x5e\x57\xb5\x8b\xeb\x6e\x81\x24\x80\x3c\x35\xab\x31\xc8\xee\xe8\x58\xf5\x83\x40\x23\xe7\xa7\x87\xc1\x21\xe5\xb6\x24\x25\xb8\x32\x54\x92\x0a\x9c\xd4\xa4\x7b\xa3\x82\xcd\x24\x11\x60\x22\xd1\x76\xb5\x9a\x45\x4f\x1f\xf6\x13\x26\x5f\xcb\x0b\x3b\xc8\xf7\xe2\x75\x63\x82\xee\x02\x3a\x03\x61\xcd\x63\x2d\x8a\xdd\xd0\xa1\xff\x88\xbe\xd1\x35\x16\x7d\xe3\x83\xb9\x08\x4e\xb0\xee\x88\x28\xed\x40\xe9\x11\xe3\xad\x01\xae\x25\xd6\xf1\x7f\x86\x2d\x42\x74\x23\xcb\x87\x26\xa1\xa7\x6e\xbd\xac\x1a\x21\x40\x20\x30\x7c\xa3\x22\x22\x4f\x3f\x2a\x24\x45\x0f\x8e\xcf\x6d\x91\xef\x56\xae\xbf\x27\x83\x8a\x20\x8b\xb3\xb1\x3c\x1d\x28\x5f\xf2\xbb\x58\x7f\xf9\x24\xa8\xba\x15\xb9\x66\xe3\xf5\xed\x90\xbc\x85\xc3\xcd\xbf\xdf\xa8\x22\x1a\xca\x4f\x4a\x65\xf5\xc5\xea\x5f\x2f\x1d\x5c\x6a\x1e\x38\x70\x90\xd6\x6c\xc9\x5e\x95\x94\xf7\xe6\x54\x89\x5b\x66\x71\x98\x76\x40\xf4\x46\xe4\xca\xf2\xd2\x7c\x52\xab\xbe\x6b\xf2\xdc\x0e\xda\xf1\xda\xac\x0f\xec\xbe\x35\xf6\x8c\x01\xde\x7d\x59\xc6\xa4\xc2\x7e\xfe\x70\xea\x2a\xca\xed\xa0\x93\x0e\xa2\x84\x34\xf7\x8f\xcc\x3b\x2e\x0e\x5d\xbb\xb0\x74\x3c\x73\x2f\x09\xd7\x1e\xa7\x7f\xc2\x0a\x2d\xb2\xbe\x68\xb9\xa3\xb8\x21\xff\xa2\xdc\xed\x7e\x38\xf6\x5c\xe5\x3d\x13\x95\x5a\x3e\x89\xf2\x1c\x3e\xfe\x28\xf0\xa3\xeb\xba\xa7\x28\xfe\xe3\xbf\xd3\xfa\x82\xef\xca\x9a\xac\x20\xbd\x77\x8f\x61\x74\x62\x76\xe5\xef\x89\x98\x9d\x24\xb8\x59\x14\x52\x79\xdf\x15\x04\x9f\x9c\x28\x42\xc3\x8b\x2d\x4f\xb3\xdb\x44\x30\x2f\x84\x6a\x55\x81\x89\x32\xc4\xb6\xaf\x78\x7f\x0c\x17\xdb\x4d\x5b\x3c\x1e\x99\x5f\x6c\x0e\x4d\x94\xc8\xa6\xc1\x2d\x48\x1a\xa8\xd2\x8e\xac\xc9\xa7\xfb\x26\xe9\x38\xd0\xbc\x54\x6f\xe9\x96\xa4\xac\x5b\x07\x55\xe9\xa7\x71\xcc\xea\x4e\xaa\xf4\xbd\xe4\x4a\x35\x35\x40\xb1\xb6\x69\x63\xbd\x92\x1d\x4c\x11\xab\xbf\xab\x82\x93\x2b\x75\x90\xa0\xcc\x0e\x4c\xb6\x6c\xda\x15\x63\x91\xf3\xca\x58\x64\xba\x95\x53\xc6\x5b\xd1\x60\x60\x33\x67\x03\x24\x0e\x60\x0d\xe7\x5a\xfb\x89\x2b\x48\x0c\xa2\x5e\xbf\x58\x9b\xf3\x2e\x04\xf7\x75\x5a\x77\x41\x59\x3c\x20\x77\x45\x94\xf7\xee\xb8\x52\x2d\xa8\x31\x57\x32\x71\x9c\xae\xce\x78\x66\xc6\x8e\x96\xb2\x14\x84\x15\x09\x56\xf6\x8f\x5d\x23\x30\x8a\xe3\x97\x1b\x5c\x0d\x69\xec\x5f\xdc\xba\x52\xc3\xe5\x7a\xa5\xd9\xb7\x66\x25\xb2\xd9\x0c\xa5\x88\xc8\x90\x21\x5a\x8c\x91\xff\xad\xb1\x5a\x64\xef\xa9\xd0\xb5\x63\x7b\x36\x21\xc8\x0c\x0a\x91\xda\x9d\x1c\x09\xe5\xdd\xc0\xef\x4c\xd3\x34\x8b\x23\xf3\xcd\xdc\x1a\xa1\xd3\xa1\x35\xc0\xab\x1e\x9f\xd4\xea\x46\x76\xd2\xd5\x64\xd5\x64\x1d\xc2\x19\x62\xad\x64\x59\x67\x64\xae\x97\x95\xb3\xc5\x19\x55\x6a\x22\x1f\x75\xc2\x13\x1d\x9c\xf7\x45\x70\x5f\x10\x57\x64\x86\x61\x4c\x5c\x81\x86\x6f\x43\xf0\xdc\xe4\x13\x25\x2c\xd4\xb3\x49\x51\xb5\x98\xf5\x12\xd9\xff\xf0\x62\xa0\x0a\xe0\xab\x06\x4b\xb1\x2a\x22\xc8\xc6\xf1\x91\xea\x9e\xd8\xa4\x9b\x66\xa1\xf0\x67\xeb\x63\x31\xd9\xdf\xc9\x78\x23\x2a\x46\x00\xe6\xd3\x07\x10\x14\x9d\x46\x6c\xc8\x27\x75\x76\xa5\xf2\x14\x67\x3d\xf6\x08\x90\x19\x2c\x64\xb0\x4a\x96\xf2\xb9\xce\x85\x94\x9a\x7c\x3e\xb4\x61\xd4\x8d\xc2\xdd\xb4\xb2\xb0\x48\xb2\x72\xee\x3a\x4d\x97\x8d\x18\xe6\x36\x76\x30\x57\x21\x75\x6b\x3d\x43\xb0\x71\x72\x0d\x4f\x05\x5b\xdb\x9f\xbb\xe2\x62\x7b\xd4\x8b\x6d\x0e\xca\xb3\x17\xae\x99\x77\xbd\x6a\x0f\xf5\x79\x6b\x0a\xde\x78\xe0\x40\xd3\xc6\x36\x2c\x32\xa8\x30\x3a\x0f\xd8\x93\xca\x9a\xec\x64\x0d\xe2\xf7\x50\x79\x90\x45\x62\x87\x06\x20\x3b\x84\x8d\xc5\xe0\x52\x43\xea\xa6\x46\xf7\x81\x03\xcd\x30\x1d\x0d\xb9\xbe\x28\xc6\x0b\x0d\x6f\xc2\x50\x0f\x56\xc8\x46\xe1\xf2\x8c\x92\x74\x64\xf0\x26\x0a\x8f\x40\x75\x02\x1e\xf1\x56\x4d\xab\xf2\x50\xd3\xd5\xf5\x64\xa5\x62\x63\x5d\x5c\xab\xb8\xec\xd6\xd9\x96\x64\x2f\x67\x2f\x37\x3c\x01\xe2\x9b\x63\xa5\xbb\xfd\x4d\x05\xe6\xcb\xac\xc9\x32\x93\xf4\x6c\xae\x70\x0c\x1b\xda\xb4\xca\xa7\xde\xed\x6c\x14\x22\x0a\x56\x12\xdc\x2e\xae\x9a\x7a\x00\xe5\x65\x0c\xac\x81\x66\x8d\x0b\xa4\xe8\x91\x4b\x50\x35\xbd\x34\xbf\xda\x1c\x25\x71\xb4\x6c\x79\x12\x62\xe4\xdd\xa2\xe1\xc1\xc7\x53\x6c\x34\x22\x40\x52\x2d\xbe\x20\xee\xf9\x81\x03\x02\x27\xa3\x31\x21\xd0\xb2\x67\xdd\x82\x9e\x17\x66\xd9\x26\x31\xbb\x99\x49\xc2\xe9\x1b\x5d\x24\xc8\xb9\x75\x65\xbb\x08\xdc\xbe\x7d\xcd\x85\xc3\x4f\x78\x27\xc4\x1f\x61\x67\xc3\x86\xb1\xa9\x0d\xc8\xbf\x49\x75\x47\x89\x80\x15\x1f\xe7\x9b\xc8\xeb\x9c\xdd\xa2\x1b\x7d\xec\x85\x86\xaa\x3e\xfb\xda\x8b\x2c\x3c\x05\xe3\xae\x20\xeb\x48\x39\x3f\xae\x50\xc6\x9d\x32\x40\xb4\x62\x93\x0a\x8a\xfc\x02\xde\x92\x38\x43\xd5\xc9\xa0\x66\x26\x41\x63\x0e\x63\x11\x39\x18\x1f\x7b\x84\xfa\x28\x0b\xfb\x26\xb7\xbb\x7c\xe1\x18\x8a\x69\x00\x05\xbe\xd0\x52\x3e\xef\x78\x9a\xac\xcd\x3e\xae\xd8\x6a\x97\xcf\x8f\xc1\xb2\x15\xe0\x93\xed\x22\x09\xaa\xf0\xd9\xf8\xa4\x0e\x38\xd7\x36\x79\xee\x32\x7f\xd7\xbd\x5b\xf4\xdd\x3b\x9f\x78\x84\x23\x1b\xc7\x86\x51\xb1\x62\xd0\xea\x31\x90\xb7\x02\xdf\xec\x99\x16\x72\xc1\xd2\xc1\x5c\x1c\x94\x65\xb9\xcf\xcf\x27\x15\xe0\x57\xd2\x8d\x3a\x36\x09\x2d\x32\x28\xd9\x8a\xbc\xd8\xea\x7a\xe5\x9e\xbb\x36\x7b\x4e\xd9\x97\xbc\x4b\x7f\xe8\x12\x98\xaf\xfb\x8d\x0d\x85\x28\xce\x3e\xc6\x0a\x81\xbe\x84\x12\x31\x56\xcb\x7b\x98\xb6\xd8\x37\xaf\x07\x53\xba\x42\xd8\xee\xee\x68\xda\xe8\x06\xa2\x01\xec\xbb\xff\x0b\x19\x93\x48\x8e\x83\x38\x1a\xe1\xcc\x46\x65\xa1\xac\xa8\xdf\x39\x2f\xb4\xdb\x64\xd7\x22\xbe\xea\xe5\x6b\xe6\x01\xac\x84\x0f\x5e\x2b\x83\xae\xb5\xdd\x15\xea\x9c\xf7\xb8\x46\x18\xcb\x7c\xab\x40\xed\x23\xcc\xb6\x91\x0c\x4b\x35\x58\xff\x38\x50\xf2\x11\x57\xc6\x7f\x5d\xad\x6b\x9c\xe3\x3b\x7f\x4f\xcf\x2e\x62\x16\x37\x9f\x4c\x63\x98\x0e\x2e\x7d\xa9\x99\xa5\xe1\x32\x3a\x31\x4a\xc2\x4c\x9e\xed\x6f\x8f\x7d\x1c\x7d\x51\x55\x36\xd2\x55\x0b\x1c\x2f\xd6\x84\x7b\x2a\xa0\xbc\xa7\x74\x3b\x57\x5f\x36\x2f\x57\x8d\x43\x1b\xce\x58\xe7\xb2\x46\xe6\xdb\xa4\x5c\xfa\xc3\xbe\xc2\x1c\x02\x5d\xcc\xc7\x93\xa7\x55\xbb\x2e\x1e\x75\x6c\x43\xe9\x45\xb2\x1d\xa9\xcc\xbb\x3a\x03\x26\x52\xfd\x47\xb3\x4d\x5a\xa4\x34\x1c\x50\xd5\x03\xb6\x49\x1a\x92\xca\x15\xd3\x64\x9d\x7e\x1a\x43\x15\xb4\x1c\x7d\x4e\xf7\xcc\x1f\xab\xe8\xab\x0d\xd9\x45\x54\xf7\x44\x13\xb7\xfc\x49\xd1\xca\x75\x02\x4d\x26\xea\xcc\xd2\x6b\xc2\xa8\x9f\x6d\x79\x68\xcd\x07\x58\x5e\x05\xba\xee\x7b\xcc\xd7\xbc\x27\x53\x91\x26\x96\x8b\x12\xc8\x36\x30\x6a\x9d\xc1\x8b\xab\x25\xfd\xea\x54\x54\xb1\x70\xb8\xd9\x1b\x99\xcc\x24\x85\xb5\x1d\x7a\x1e\x98\x1e\xb3\x28\x23\xe0\x63\x37\x15\x81\xe2\xda\x54\x75\x7f\xff\x62\x73\x58\x8e\xee\x70\x54\x38\xac\x0c\xa6\x35\xc0\xb4\x7c\xec\xfd\x10\x6d\x1c\xd9\x15\x51\x00\x96\x24\xcf\x67\xa5\xa7\x94\x45\x55\x98\x45\x03\x3b\xa3\xfc\x99\x78\x4d\xc7\xa6\xf0\x48\x59\x35\xec\x6a\x3d\xad\xe8\x67\x6b\x82\x57\x55\xfd\x09\x87\xb7\xaf\xcb\xa6\xa2\x24\x2a\x22\xbf\x8d\xb2\x47\x11\x7d\xbf\xf8\x15\xd5\xc9\x24\x95\x29\x12\xf7\x85\xb0\x2e\x40\x47\x8d\x8f\x55\x21\x6d\xc5\xc4\x23\xdb\x99\x6b\xec\x5b\x70\x04\x28\x5f\xc2\x82\x52\x2e\xea\x54\xa0\x18\x62\xb6\xdd\x57\x3e\xcb\xd3\xee\x15\x65\xc8\x40\x4d\x95\x19\xbf\x78\xa0\xd9\x8a\x37\x75\x8b\xae\x1e\x9d\xca\x0b\x75\x85\xcf\x30\x1e\xb5\xb9\xf6\x8c\xb1\xbe\xa5\x1a\xf1\x5b\xaa\xb2\x4d\xed\x7b\xfe\x4b\x5c\x31\xae\x8c\x8f\x55\x50\x65\x8a\x22\x23\xdc\x98\xa5\x46\x05\xf6\xc1\x8f\xb5\xd5\x32\x64\x71\xb8\x06\x82\xa5\x4e\x54\xb5\x95\x10\xc1\x69\xda\x2d\x31\x83\xbf\x57\xd7\xe8\xe9\x9a\xbc\x68\x9b\x98\x3d\xda\x34\x86\x4a\x4a\x8d\xaa\x0b\x10\x15\x61\x1f\xcb\xa0\x43\x78\x94\x23\x4a\xd2\xf4\xa7\x95\xa8\x7a\x46\x69\x9c\xeb\xc4\xf0\x96\xc3\x27\x6a\x60\x9a\x4e\x3a\x2c\x40\x9a\x70\xd9\x7e\xb9\x80\xc8\x0f\xd4\x10\x81\xba\x26\xcc\xa3\x81\x34\xea\xb1\x0b\x6c\xa8\x16\xea\x86\x9b\x21\x61\xdf\x0c\xda\x36\xcb\x67\x2b\x6e\xcc\x58\xd5\x44\x0e\x61\x1b\x0f\x47\xd2\x9a\x3f\x73\xde\xc1\x2c\x87\x02\xd0\x05\x8b\x64\x2b\xc8\x1e\x52\x46\xf4\x9e\x2f\xd4\xc8\xb6\xac\x44\x69\x6c\x8b\xc2\x34\x94\x55\xed\xf9\xb1\xca\xc6\xce\xd7\x44\xdf\xcd\xdc\x26\x39\x8a\x57\x22\x19\xda\xf0\xf2\xa1\xb5\xc8\x93\xcc\x16\x51\x66\x9d\xc9\x9a\xec\x53\x9e\x38\x7a\x46\x3b\x92\xdc\xa9\x81\x39\x1f\x6a\x76\x6c\x5e\x64\xe9\x9a\xa4\x38\x88\x7b\x61\x1d\x25\xc5\x36\xc5\x49\xbc\xa8\x52\xff\x9e\x4d\x7b\x99\x19\xf6\xb9\x07\x25\xc6\xf7\x3e\xf3\xfd\xcc\x47\x81\x66\x30\xb4\x59\xb5\x2c\x74\x63\xec\x51\x07\x37\x02\x5f\x1a\x33\x9d\x41\x94\x44\x44\x17\x4b\x59\x84\x45\xf1\x74\xdd\x12\xa0\xe8\x4b\xc3\xcc\xf4\x46\x2c\x8e\xe0\x24\x85\x5c\x41\x6c\xdd\x6d\x15\x69\x6c\x7b\x94\xf8\x3b\xf0\xaa\x36\x3e\x7e\x5a\x05\x64\x65\xca\x36\x53\xae\x37\xe8\x5d\xdc\xd2\xba\xda\xef\x57\x26\x80\x42\xcd\x51\x22\x6e\x12\x86\xbf\x40\x0d\x00\x69\x29\xa2\xc7\x06\x9a\x11\x28\xb8\xdd\x1c\x7b\x1e\x7e\x3e\xcc\xac\xe9\xe4\x7d\x6b\x8b\x7c\xb7\x2f\x68\xfc\xb1\xf2\xaf\xbd\x3b\xd6\xe2\x22\x34\x75\x80\xeb\x79\x5b\x09\xba\xad\x8f\x3d\xfe\x6f\x27\x50\xff\xa2\xe3\xfa\x05\xdf\xa8\x22\xce\x7b\x18\x99\xcc\xc5\x37\xc2\xb6\x2e\xbf\x49\xc8\xd6\x9f\x47\x90\x22\x99\xf7\xbe\x65\xe6\x91\x94\x03\x2a\x7d\x52\x8f\x60\x6f\x9b\xdc\xee\x56\x96\xeb\xac\x08\x8b\x3d\x78\xb6\xa5\xeb\xca\x98\xa0\xce\x22\xff\xab\x0b\xbe\x4a\x70\x64\xde\x91\x2a\x2b\x79\x50\x4d\x29\x89\xd7\x20\xa5\x52\x57\x95\x37\x7f\x4a\x79\x5d\x65\x79\xf1\x34\x7d\x1f\x5a\xce\x9c\x3e\x61\xc9\xaf\xd0\x6d\x6f\x28\x2b\x5d\x52\x63\x5c\xe0\x85\xe4\x7f\x0f\x94\xef\x15\x8b\xd2\x68\x91\x78\xee\x82\x91\xa2\xa7\xb0\xaf\xb5\xbd\xf6\xf5\xb1\x27\x3a\xa0\xf8\x88\x19\xfc\x90\xe2\x60\x36\x5c\x09\x94\x2b\x0d\xeb\xb5\x49\x2b\x7d\xfb\x03\xf8\xc5\xaf\x94\x39\x47\x87\x0b\xa9\x98\xb0\xa7\x03\x35\x7b\x6b\x8b\x40\xe5\x36\xd8\x11\x38\x34\x87\x4a\x78\xd0\x12\x37\xd5\x54\x35\xd6\x4c\xb2\x6c\xed\x8c\x8a\xa9\xa1\xc7\x8f\xae\xc2\x19\xd5\xb9\xdc\xf0\xe8\xb0\xcc\x84\xcb\xb2\xce\xe8\x16\x27\xc8\x5a\xff\x52\x4f\xef\x3b\x15\x04\x68\xc7\xbe\xde\xf0\x5e\x68\x27\x54\x50\x76\x22\xa8\x91\x8a\x28\x22\x40\xb4\x81\xe6\xd9\xa9\x4c\x27\x77\x4e\x9e\xdf\xee\x76\x66\x62\x11\xc3\x16\xc0\x9a\xd2\x37\xf8\xc0\x65\xc8\x7d\x93\xc5\x76\xd0\x00\xce\xa7\x22\x3a\xc6\x27\x35\x3a\xa3\xaf\x36\x07\x51\xd2\x71\xa6\xee\x58\x31\xae\x2a\x0c\xe2\x55\xed\xbe\xd5\x4e\x47\xc5\x8b\xe5\xb0\xc1\x63\x7f\x48\x1d\x34\xb7\x3f\x96\x03\x4d\x94\x34\x70\x11\xd8\xf9\x7f\x17\x25\x63\x3e\x51\x72\x6e\x1f\x61\x3c\x4b\xf9\xb6\x5c\x19\x70\xdc\x20\xa6\x0e\x36\xb5\x93\x81\x17\x0d\xd9\x72\x2e\x1e\x4a\x3c\xf2\x4e\x05\x8f\xae\xa0\x90\x77\xc0\x0e\x63\xf2\xe2\xa4\x22\x05\x49\x9b\xb9\x58\xab\x28\x4d\xc4\x5f\xc7\xb0\x42\xb9\xed\x1d\x25\x46\xf6\x7b\x81\xca\x93\x37\xeb\xaa\xfd\xd6\xe4\x05\x40\x16\x02\x59\x6a\x28\xcd\x66\x9f\x08\x71\x99\x12\x4f\x6a\xb6\xa5\x34\x47\xd2\xd5\xa4\x18\x65\xc9\xac\x5f\x4e\x3e\xc2\xd4\xc0\x48\xbc\x12\x94\x8f\x1b\xd3\xe4\xb3\xf1\x36\x94\x02\xbe\xe2\x1b\x23\x93\x14\x51\x17\x8a\x01\xda\x6e\xf1\xaf\xb8\xee\xff\xef\x1d\xcf\xe9\x18\x73\xa9\x19\x15\x16\x06\x44\x02\x08\xa1\xeb\x92\xc8\x45\xeb\x61\x14\x7d\xec\xc5\xac\xbe\xc7\x4e\x79\xb8\x0f\xb1\xcd\xfb\x82\x92\x51\x4c\x46\x5d\x13\xc2\xa7\x70\xaf\xb7\x01\x38\x4e\x63\xb3\xf2\x61\xa7\x67\x54\xbe\x53\x47\xcb\x29\xc7\x84\xdb\x73\xbc\xea\x51\xe0\x59\x95\xf7\x02\x05\x04\xd0\xef\x7a\x7d\xac\x5a\x0c\xcc\xff\x15\x61\xc9\xa7\x2a\x66\xfe\xcb\x8f\x37\x9c\x37\xd0\xef\x6a\xa5\x3c\xc0\xd6\x71\xbc\x93\x44\x68\xb1\xc1\xc2\x18\x0f\x04\xe6\x8b\x28\x7e\xe0\x1f\x4e\xe2\xf2\xf9\x13\x13\x45\x5f\xf8\x04\x97\xc9\x7f\xa6\x0c\x72\xcc\x08\x52\x37\x0d\xdf\xc2\xb9\x40\xa4\x0b\x31\x53\xf1\xbd\xc4\xe5\xb5\xb4\xe1\x33\x30\x46\x64\xf0\x89\xd2\x8f\x4c\xd2\xac\xe8\x97\x6b\x6d\x43\x11\x39\x00\xab\x17\x77\xa6\x1a\x91\xb6\xae\x89\x12\x9f\x1a\x32\xb5\x47\x81\x63\xb7\x82\x17\x15\x8d\xa2\xdc\xdc\xf3\x6f\x8c\x6c\x8c\x22\x84\xc8\x97\x6a\x5f\xb2\x86\x13\x81\xbf\x3a\xa5\x63\x77\x70\xbe\xd9\xcd\xac\xad\xec\x9f\x63\xb5\x7f\xa2\x68\xc1\xb7\x6d\x5e\x86\x8b\xa8\xf4\x07\xb6\x05\x56\x87\xb4\xb6\xaf\x50\xbf\xae\xd2\x5e\x88\x01\x06\xe6\x08\xfe\xe8\x5c\x8d\x20\xc1\x2b\xa4\x1b\x10\x66\xde\xad\x00\x23\xeb\x3d\x8c\x19\x3e\x51\xf1\x68\x1e\x66\x66\xd0\x8e\x39\x6e\x97\x32\xe0\x55\xe5\x8c\xbe\xa1\xd4\xd3\x7f\xa8\x4a\x26\x85\x4d\x4c\x18\xa5\x23\xac\xd3\xe8\xa3\x03\x93\xcb\xc7\x53\x97\x87\xc8\x59\xf4\x85\x15\x4d\xe4\xc4\xd8\x77\x6c\xae\x04\xca\x13\x7a\xda\x1c\xbf\x9c\xe1\xbd\x28\xa6\x76\x94\x62\x77\x40\x93\x93\x8f\xa7\xf6\xde\x83\x65\x9e\x10\x0a\xaa\x0a\x4b\x01\x00\xfb\x7c\xac\xc0\xd8\xa3\x2c\xb2\x19\xf2\x2c\x67\xc1\xea\x71\xc6\x35\x92\xe8\xcd\x81\xc9\x96\x2d\xab\x71\x21\xc6\x01\x10\x9b\x8f\x7d\xbd\x38\xb3\x36\x64\xff\xd5\xda\x60\x5a\x34\x44\xd6\x4c\x5e\x64\xaf\xdb\x41\xbe\xcc\x36\xe2\xce\x0f\x7d\xbf\xcb\x36\x15\x1b\x71\x60\x2c\xc4\x17\xa4\xa4\xac\x74\x02\x2f\x62\xd9\x41\xfd\x07\xc6\xb2\x7c\x5c\x63\xf9\xb6\xd0\x0c\x4d\xd6\x66\xaa\x16\x57\x1d\x55\x75\xe1\x62\xa5\x2f\x1e\xdb\xce\x2e\x3f\x7a\x41\x44\xc1\xe0\xd9\xd3\x52\xb4\x32\xe4\xed\x48\x8a\x8e\x8f\x55\x8f\x8a\xef\x1d\x9d\xe3\x07\x0a\x34\x5d\xa4\xa3\x5e\x9f\x4b\x1c\x8e\xab\x5e\xce\x63\xe9\x34\x4c\x97\x8d\x9b\x59\x94\x2f\x53\x51\x02\x04\xad\xcd\xf1\x94\xc9\x2d\xe2\xaa\x47\x53\x29\xe4\xbe\x7d\x4d\xd3\xe9\x58\xaa\x86\x2d\x70\xde\xf8\x03\xda\xe0\x5d\x0b\x4f\xe9\xe9\x04\x1e\xef\xa6\x71\x6c\x61\x3f\x8a\x63\xb5\x9c\xfd\x44\xc5\xa5\x3f\xa9\x8a\x3f\x44\x79\x51\xe6\x74\x98\x6c\x02\x1e\x56\x95\x02\xcc\x36\x6c\x8e\x77\x6a\xf0\x05\xaf\x36\x07\xd6\xfa\xb5\x8d\x01\x3c\xf4\x21\x01\xf3\xf8\xf5\x38\x4a\x56\x4c\xc7\x15\x04\x99\xbb\xae\x7d\xf8\xdf\xf3\x9a\xb7\x24\xdf\x39\x47\x4f\x41\xc8\x06\xca\xa6\x71\x13\x9b\x81\x08\xfa\x79\xce\x00\x7b\x13\xb0\xc0\x40\x0d\x64\xe5\x50\xd3\x7e\x63\xa4\xac\xab\x84\x8b\xab\x2a\xe3\x57\x5d\xb4\x90\x0f\xad\x0d\xfb\x82\x26\x76\x8f\xa7\xbc\x0e\x3e\x09\x2a\xb4\x89\x61\x31\xeb\x8b\x57\x8f\xb5\x3c\x5b\x97\x5b\x8c\xbc\x80\x56\xef\xc4\xe3\xbc\xda\x23\xb2\xfc\xd5\xb6\x09\x13\x45\x3f\x9e\xd4\xa8\xaa\xc6\x26\xef\x33\x32\x4c\xc1\x27\x17\x5c\x61\x56\x05\x4f\x99\xe9\x7a\xa0\x8a\x8a\x2f\x17\x1c\xd8\x70\x7b\x18\xfe\xf3\xcd\x76\x9a\x74\x94\x9a\x2e\x93\xc2\x65\xfb\xf4\xae\xe2\x59\xd4\x89\xc2\x51\x5c\xae\xbe\x34\x92\x1c\x29\x5a\x49\x0c\xfa\xdc\x7c\xcd\xc6\x71\xba\x4a\xdf\xeb\x4a\x3b\xe5\xa7\xa4\xe5\x51\x07\x4e\x1b\xa4\x2b\x76\xc6\xb7\xbd\xce\xa9\x6e\xd2\x0d\x0d\xf2\xda\xd1\x9a\xbe\x8b\x41\x9a\x17\xb0\xf5\x92\xc7\x42\x38\x0e\x79\x60\x7e\x0f\x49\xbb\x94\x55\xc7\x39\x69\x10\x81\x8b\xb0\x87\x28\x1b\xc2\xa4\x52\x62\x0d\x37\x71\xd1\x82\x8f\x2b\x17\xb6\xad\x2b\xb4\x4d\xa3\x6c\xc0\xee\xd3\x08\x4d\x6f\x60\x98\x63\xd4\xfc\x29\x4d\x68\x04\x45\x37\x39\x9b\x44\xef\x07\x8b\x03\xbb\x7c\x3a\x3c\x67\x61\x50\x99\x16\x4b\x16\xcf\x8e\xbb\xac\xe4\xc2\xb6\x02\xcd\xa9\x25\xc2\x72\x9a\xe4\x04\x7d\x10\x97\xc5\xf2\x4e\xa4\x4d\xb3\x7d\x2e\x1f\x38\xd0\xec\x44\xf9\x70\xe4\x94\xa8\x98\x32\x89\xbb\x10\xfe\x64\x0d\xab\x96\x5c\xc2\x56\xb3\xa8\x28\x6c\x42\x97\xe9\xec\xa8\x3c\x9f\x01\x55\x61\xe0\xd6\x7f\x47\x15\x56\x87\xb1\x59\xb3\x19\xf5\x15\x31\x1d\xa0\x80\x8f\x85\xfb\x36\xd0\xe4\x6e\xb7\x71\x78\xae\x07\xca\x85\x9c\xb9\x31\xa2\x27\xed\x65\x47\x87\x36\x2b\x46\x79\x1e\x71\xd9\x16\x0b\x3b\x4a\x39\x7c\xac\xc8\xab\xc3\xbe\x4d\xd2\x81\x4d\x4c\x43\x11\xda\x3e\xa5\x07\xcd\xc7\xaa\xa9\x68\x25\xaa\xfc\x9c\x2a\x66\x8d\x5a\x57\x94\x60\x19\x29\xaf\x04\x5d\x21\xa0\x16\xf8\x58\x59\x66\x0c\x6d\x36\x28\x1f\x25\x1b\xc4\xb9\xf6\x98\x2b\x06\x5c\xe4\x01\xc3\xff\xa2\xac\xbd\xa7\xd3\xd7\x32\x3a\xe9\xd8\x30\x22\x35\xe2\x86\x33\xd7\xc0\x08\x72\xa9\xb2\xf7\x06\xb8\xe1\x7d\xe9\x0b\x9b\x45\xb1\xfd\x2b\xec\x6d\xfc\xe6\x9b\xa5\xa6\xc3\x09\x12\xea\x59\x80\x46\x61\x31\xbd\xaf\xe8\xa9\x97\x90\x5d\xe1\x21\x26\x85\xcd\x0a\x13\x25\x03\x9b\x14\xc0\x9d\xe0\x2e\x50\xff\xc7\x44\xe1\xc2\x39\x86\xec\xb7\xb5\x92\xfe\x65\xe5\x91\xcf\xb2\xc4\x15\xad\x27\x56\xc4\x98\x8a\xd7\x9c\x8a\x68\xfc\x5a\x63\x8a\x60\xc5\x27\x2a\x85\xc9\x0b\xb3\x96\xcf\x54\x0a\x29\xbe\x64\xf6\x28\xf0\xfd\xf0\x2b\x8a\x64\xd6\x36\x09\xcb\x4f\x39\xaa\x5e\x79\x49\x7c\x82\x24\x08\x45\xb2\xf7\xb1\xfe\xf2\x49\xbd\xea\x75\x99\x45\x75\x34\x28\x33\xf0\x19\xd5\xfb\x75\x4e\x46\xcd\x74\xe8\x70\x00\xec\xea\x83\x10\x4c\x2c\x7e\x6a\x51\x71\x49\x37\xf6\xd2\x5e\x00\xaf\x5d\x56\x76\x59\xda\x5c\x73\x94\x74\xd3\xac\x17\xad\x08\xb4\x49\x16\x8a\xf2\x1a\x65\x9d\x70\x45\x78\xdb\xc9\xd2\x70\x59\x01\xa8\xd7\x15\x80\x7a\x5d\xc5\x59\xa4\x8f\x19\x03\x93\xed\xc8\x31\xfb\x1d\x51\x46\x25\x61\x04\xbf\xef\x50\xf8\xec\xa0\xd3\x1b\x6a\xab\xd9\x98\xc2\x89\x1c\x99\x5f\x6a\xda\x24\x84\xf4\x7f\x47\xe1\xe7\x39\x1b\xe7\x13\x35\x0d\xd3\x41\x94\xa4\xa3\x3c\x86\x26\x05\x17\x04\x03\x4f\xd3\xd8\x74\x21\x7a\x39\xfa\x57\x0d\x72\x35\xe4\x33\x77\x34\xf7\x56\x69\xa9\x9e\x73\x68\xfe\x74\xc5\x66\x99\x35\x61\x21\x8f\x90\x75\x2c\x30\x17\x45\xd4\xa2\xa6\xdf\xd6\xb1\xc3\x34\x8f\x8a\x19\xc5\x07\x3c\xad\x84\x47\xef\xa8\xbe\xed\x45\x2d\x30\x98\x43\x1e\xd6\xa7\xc9\xac\xbc\xcf\x27\x4a\xb0\x64\x68\xed\x32\xa5\x25\x08\xa1\xee\x61\x06\xf2\x49\x05\xc2\x30\x1c\x02\x11\xc4\xe8\x7d\xdd\x1a\xd1\x16\xa9\xa4\x86\x0e\x88\x11\xe2\x8c\x3b\x98\x0e\x7c\xa2\xed\x8d\x8a\xc2\x84\x30\x26\x96\x2a\x59\xc3\xf1\x4e\xeb\x94\xf5\x45\x0b\x44\x77\x24\x3e\x50\x78\x87\x0f\x94\x6c\x6e\x62\x8a\x94\xb8\xa9\x4e\x0d\xa3\xc2\x83\x71\xc3\xf8\xe3\x71\x85\x07\x53\x67\xbe\x37\xca\x7a\xb2\x47\xb2\x61\x5a\xa0\xe2\xfb\x73\x0a\x57\xc7\xe6\xf5\x9d\xc7\x7c\x7d\x1f\xf7\x24\x88\xb9\xc6\xd7\x97\xb8\x70\x00\xce\x19\x62\xe6\xd3\x58\xe9\xf8\x1f\xc6\x5e\x4f\xe1\x0e\xed\xe0\x0e\xcc\xe1\x35\xf3\x2e\x2a\x20\x23\x39\xa7\xf0\xf5\x49\x03\x43\x77\x33\x94\x5a\xc4\xe1\x23\xbb\xe9\x4b\x68\xdc\xfe\xdd\x67\xd9\xb4\x07\x1b\xee\x87\x63\xdf\xa7\xbc\xac\xe0\x6e\x7f\x87\x4a\x8f\x78\x58\x58\xe8\xb1\xe8\x3f\xc4\x2a\x8c\x42\xf2\xf9\x3a\x77\xbd\x6e\xac\x53\x05\xcc\x89\xb9\x89\x6f\xd4\xcf\xb5\x7c\x1f\x26\xb3\xc3\xd8\x84\x8c\xa9\xc0\xf4\x3c\xa7\x5c\x09\xce\x29\xc2\x61\xdb\x24\xcb\xf9\x53\xf4\xc4\x50\x93\x3b\x1e\x78\x31\x8d\xfb\x98\x52\x6c\x2a\xa1\x3c\xb6\xce\x8f\x2b\x31\xa0\xaf\xe0\xcc\xb6\xbc\x10\x00\x0b\x6d\x23\xb5\x38\xc7\x1b\x2f\x16\x80\x4f\xc6\x95\x80\xb2\x7c\x26\xe8\xc3\x73\xb5\x14\x69\xed\x2c\xc9\x77\x48\xec\x41\x23\x4b\x40\x8b\xdb\xc3\xd4\x97\x88\x7f\x31\x53\x8e\x08\xdc\x06\x2c\x44\x05\xc4\x41\xf7\x87\x4e\xd0\x4d\x07\xcb\x1b\x46\x45\xd8\xd7\x4c\xed\x4d\x65\x65\xf2\xa0\x22\x2e\x5e\x27\x16\x49\x1a\xb5\xab\x51\x0e\xb7\x66\x59\xba\xd5\x32\xae\xb2\xfa\x76\xda\x9e\x51\x05\xe2\x33\x0a\x19\xf0\xc6\xd8\x0f\xa2\xdf\xb8\x38\x35\x65\x5e\x6a\xae\x46\x45\x3f\x2b\x03\xfe\x03\x07\x1c\xb8\x9b\x3e\xc2\x27\x2e\xeb\x33\x59\x6f\x54\xe6\xf1\x2e\x9d\xe3\x6c\x06\xbf\xf3\xb7\x90\xc8\x23\x3a\x7e\x6a\xa2\xd4\x0e\x2e\x57\xe5\x6c\xca\xaf\x96\x6d\x4b\xd9\xb9\xac\x25\x66\x10\x85\x33\x8a\xe6\x87\xc2\x27\x80\xb2\x4f\x51\x29\x0b\xfd\xe0\xdd\x13\x79\xc2\x79\x3f\x4a\xb0\xcc\x61\x55\xfd\x29\xbd\x69\x3e\x56\xad\xa8\xc2\x1e\x33\xf9\x9e\xf2\x31\x62\xa8\x3d\xa4\x5e\x1f\xf2\x53\xb6\x3a\x77\x16\x65\xbe\xc6\x32\x43\x85\x4f\xc0\xae\x4e\xa8\xba\x0e\x2f\x42\xa8\x06\x35\x5a\x4a\xf2\xaa\x81\xdb\x46\x6c\x75\x4e\xd9\x90\xfc\xd4\x95\x6b\x42\x42\xef\xc7\xce\xe0\x1c\x59\xd5\xa6\x42\x48\x6f\x4e\x21\x4e\x5d\x58\x64\x43\xd3\x91\xa8\xaf\x36\xe7\x73\x7a\xea\x83\x01\x5a\xdd\xae\x14\x89\x9a\x0b\x1f\xd7\xe9\x9b\xb7\x47\x28\xbb\x8b\x25\x2c\xdd\x09\x9f\x28\x61\xe8\xbc\x6f\x96\x6d\x3e\xb4\x26\xb3\x5c\x33\x44\xb1\x84\x69\xa7\x7c\xa2\x6a\xb7\x07\xa3\x94\xff\x10\x3d\x81\xef\x8f\x95\x88\xeb\xf7\x55\x34\x57\xf4\x6d\x94\xbd\x40\xf3\x16\x81\xf0\x35\xe4\x28\x9c\x97\xa0\x4d\x82\x25\xf8\x9a\x92\x5a\xb8\x1a\x28\x4a\xe3\x03\x54\x1e\xd8\x39\x29\x50\xc0\xc2\x3b\xd4\xf1\xc4\xe6\xfd\x48\x95\x68\x61\x11\x21\x94\x04\x7a\xb1\x62\xff\x4b\x65\x3d\x34\x87\x1b\x2d\x9f\xdf\x6c\x55\x1c\xa4\x2e\x63\x09\xc3\x97\x3d\x8e\x86\x2b\x67\x98\x94\x47\x02\x0b\x4c\xbc\x00\xa7\x8e\x57\x06\x51\xf0\x2d\x78\x66\xa2\x98\xc9\x3b\x5b\xdb\x8b\x55\x65\x4c\x91\xa6\xa8\x6e\x39\x22\xad\xcb\x7a\x36\xea\x42\xd2\xa6\x3d\x36\x24\x8f\xd4\x23\xf3\x0c\x6d\xbe\x83\x4c\x98\x4f\x74\x59\x40\x40\xcc\x4c\xae\x95\xa0\xcb\x4f\xf0\xeb\x2a\x55\x60\xdd\x11\x0c\xf4\xeb\x2a\x95\xcb\xa3\xa4\x67\x86\x69\x66\x67\xf4\x6b\x2e\x82\x4a\xe9\xb2\xa1\x64\xc3\x7d\x39\x3d\xb6\x3d\x13\x47\xaf\x1b\x97\xb0\x09\xf4\xaf\x02\x0a\xf4\x63\x69\xa5\x63\x66\xb5\x74\x04\xbd\x5f\x64\x9a\xb3\x2d\xaf\x5c\x50\x95\x53\xfd\x3c\xab\x82\x22\x1d\xa4\x59\xc6\x95\x0e\x09\x69\x54\x6f\xeb\xac\x22\x35\x0c\xa2\x24\x0a\x4d\x96\x2b\x0f\xa9\xfb\x4a\x51\xe2\xbe\x0a\xd1\xf2\xc2\x0e\x77\xd3\x13\x17\xba\x51\x79\xc5\x92\xc9\xf8\x1c\x9f\x81\x94\x22\x0a\x57\x8e\x09\x65\xf9\xbd\xc0\x0b\x29\xfb\x17\x89\x64\x47\x9d\x47\xd0\x4a\x14\x92\x42\x6c\xc3\xb9\xc9\xeb\x34\xe8\x92\xca\xa3\x4d\x92\x8c\x08\x74\x39\xa3\xda\x0a\x1f\x8e\x3d\x9f\x01\x62\x24\x98\x30\x57\xc6\xcf\xb8\x6c\xd3\xf4\x7a\x52\x87\xf4\xd6\xd0\xe5\xc7\x18\x9f\x1a\x28\x14\xce\xe9\x3a\xfc\x5a\xd7\x64\x83\x28\xe9\x15\x5c\x2e\x16\x89\x2e\x85\x7d\x9f\x16\x98\x29\xd3\x82\xa8\xe3\x2c\xce\x70\xb5\x6c\x0c\xcd\x27\x15\x16\xf1\x97\x33\xfb\x04\x8d\x39\x54\x86\x3e\x1a\x2b\xc3\xef\x53\x2a\xe8\xbf\x81\xbe\x2a\x32\x97\x6b\x81\x62\xa9\xff\x84\x5e\x15\x36\x99\x19\x92\x82\x70\x4a\x12\x47\xc4\x83\x15\x7b\x38\xeb\x73\x60\x4a\x28\x53\xe1\x45\xe7\x01\x52\xbe\x4f\x01\xa5\x6e\x4f\xe9\xf6\x2f\x36\x6d\x5e\x44\x03\x9f\xd2\xe1\x2b\x50\x93\xe4\xe3\x89\xe0\xe2\x3b\x34\x4d\x73\x51\x45\xc3\x0f\x34\x40\x87\xe3\x93\xd6\x5e\x37\x1b\xd3\x7e\xa3\xf1\x8b\x5f\xe1\xc8\xf0\xc7\x98\x84\x7c\xa2\x34\x90\xa3\x04\xde\x9c\x0b\x87\xf9\x2b\x74\x56\x74\x47\x71\x43\xfb\xe9\x70\x39\x4a\xa4\x3d\x84\x1d\x93\x4d\x03\xf8\xa4\xce\x4e\xac\x1f\xf5\xfa\xab\xa4\x30\xb7\xe8\x7c\xdc\xcf\x28\xa1\x9b\x33\x15\xec\x41\x9a\x0e\x76\xab\xe8\x74\x8b\x9e\x1d\xeb\x44\xa9\x40\xe6\x8e\x96\x07\xdb\xc2\xd3\xd6\xc6\x29\xa2\x3b\xe6\xbd\x99\x1f\x28\xbb\xb8\xb0\x6f\xcd\x10\x96\x53\x4b\x4e\x22\xcc\x5f\xd1\x25\xc5\x5c\x34\x45\x34\xa3\x5c\xed\x20\x49\x8d\x67\x78\x9b\xa3\x4c\xcc\xad\x0b\x75\xed\xc4\x8e\x2d\x4c\x14\xcb\x64\x41\x5b\xfe\xa1\x42\xa8\x5e\xd4\x4a\x36\x9b\xf5\x3e\xd7\x85\xcd\xa2\x94\xaf\x55\xcf\x52\x3e\x9e\xaa\x24\xed\x5f\x24\x6d\x53\x13\xba\x01\xe5\x4a\xfd\x07\x0e\xb8\x52\xbf\x82\x1c\xa6\xaf\xdb\x84\x94\x08\x19\x8c\x86\xb9\x22\xce\x11\x1e\xa4\x89\x1e\x86\xe0\xa0\x54\x54\x78\x56\x7d\xdb\x30\x36\x89\xdd\xed\x5f\x1a\xd4\xef\x10\xcc\x20\xe1\x93\x2e\x12\x5d\x9a\x0e\x0a\xd9\xb4\x41\xf9\x69\x9f\x47\x11\x57\x7a\x50\x75\xde\x34\xed\x4c\xe4\xaa\xc1\x97\x66\x1a\x2b\x9f\xb8\x48\x8b\x1e\x63\x39\xcf\x04\x65\x08\x1c\xc0\x1e\xca\x69\xb0\x83\xfc\x35\x7a\xb5\x50\x08\xda\xb5\x5d\xf7\xa2\x5c\x5b\x7f\xe1\x97\x76\x2b\x78\x39\xaa\x9c\x88\xd9\x4f\xa8\x4e\x38\x0b\xb0\x22\x84\xbc\x3e\x9e\x22\xc9\x61\x27\xfa\xd9\xd8\x93\x4f\x2e\x29\xa6\xf2\x90\x68\xf7\xae\x7f\x75\x2b\x50\xf2\x7a\xc7\x55\x2d\xf0\x86\x96\x2d\x3a\x0e\x3c\x27\xc2\x8e\xef\xa8\x2e\x45\x77\x14\x77\xa9\xbf\xe4\xc4\x82\x2e\xd1\x7c\x12\x5f\x84\xa7\x1d\x1f\x25\x5d\x31\x49\xc2\x3d\x43\x86\x7c\x04\x0a\xca\x7c\xe9\x73\xc3\xd0\x61\x16\x85\xf4\x50\xcb\x4f\xba\xce\x61\xf9\x84\x85\xfb\xa0\x29\x2b\xd3\x14\x91\xa5\x43\x80\xe2\x34\xbc\x35\xfd\xd9\x40\xa1\xb9\x54\x1d\x12\x18\xc5\x7c\xd8\x87\x0e\x87\x43\xdb\x6f\xd2\xdf\xf3\xb1\xc2\x31\xe7\x36\x5b\xb1\x9d\x39\x1f\x4c\x9f\xc4\x62\x8f\x18\xf2\xbc\x82\xb7\x7f\x0f\x4b\x23\x9e\xf9\x59\x2c\xe4\xfc\x57\x53\xd3\xeb\xe0\x7c\x19\x55\xc5\x69\xe4\x3a\xd1\x18\xb7\xd7\x54\x1f\xf9\xcf\x69\xd0\x7b\x40\x8b\xbb\xa2\xc4\x0c\x87\x8c\x19\x11\xfb\xff\xf2\x2a\x04\x62\x37\xdd\x9f\x5c\x6a\xa6\x06\xb9\x41\xc5\x2f\x45\x6c\x51\x6a\x3a\x03\x70\xe6\x16\x51\xb5\xba\x72\xf0\xf6\x9e\xcd\xfe\xc5\x66\xd1\x8f\xd8\xb5\x51\xa4\x55\x55\x9e\x78\x3e\x78\x41\x61\x3f\x53\x12\x20\x4c\x93\x7c\x97\xa2\xc2\x3e\x1c\xfb\xd7\xb7\xae\x5e\xdf\xfa\xd8\xb7\xcd\xe1\x64\xc1\x79\x56\xa0\x2c\xfa\xfe\x4b\xd5\x65\xe8\xbe\x6c\x5e\x4e\x5f\x6e\x78\xaa\x22\xb8\xc5\x7c\xec\x4c\x66\xcc\x70\x58\xe6\x4d\xcb\xe8\x33\x61\xf7\x3e\xad\xa0\x31\x48\x70\x18\xbe\xa2\xf5\xd2\xf2\x28\x2f\x08\x93\x24\xb9\x83\x22\xac\xcf\xb4\x54\xb3\xf3\x8f\x15\x22\x7d\xef\xa4\x06\x22\x6d\x42\xd2\x7c\xe3\x1a\xa5\x78\xda\x96\x17\x2e\xc6\x44\x35\xb6\x85\xae\x6e\xf0\x0c\x8b\x29\x51\x1e\x83\x0a\xd6\x55\x7a\x6e\xe2\x74\xed\xab\xad\x51\x2f\x49\x33\x6e\x1c\xba\x06\x8b\x07\x8f\x4f\x6d\x1a\x84\x2b\x28\x37\x0d\x1b\xeb\xee\x2d\xc6\x3b\x1f\x07\x3e\x9e\xe8\x46\x61\x64\x93\xb0\x02\xb3\x52\x9d\xe4\xcd\xcf\x15\x58\xec\xda\x55\x19\x65\x7c\xd1\x08\x98\xd5\x1d\xb8\x06\x42\x14\xf6\xed\x80\xe3\x06\x14\x75\xb8\xf6\xc2\x27\x75\x18\xf4\xfe\xda\xd0\x66\xa1\xc9\x3a\xfc\x39\x56\xfb\xd2\x52\xa2\xbe\xa7\x9b\xae\xd8\x6c\x94\x23\xfd\x17\x13\xbd\xf2\x71\x4a\x51\xac\x06\xbc\x9a\x45\x2b\x26\xe6\xa8\x44\x94\x45\x68\x66\xca\x6e\x3c\xed\x16\xde\xec\xa5\x29\xd8\xbb\x28\x2b\xec\x6a\x95\xab\xa9\x2e\xaa\xa3\x40\x01\xa4\x29\x62\xd9\x73\x53\x2f\xe8\xe0\x3c\x11\xe2\xa3\x44\x78\x25\x48\x25\xcf\xe2\xd7\xf9\xa4\xee\x53\x79\x68\x0a\xef\xab\x21\x4d\x94\xf2\x72\x44\x5d\xa2\x12\x49\x75\x8b\x19\x85\xb8\x63\x64\x03\x16\x01\x80\x34\xf1\x53\x37\x14\xa6\x7a\x98\x0e\xd1\x1a\xf6\xcc\xb0\x4d\x35\xb5\x37\x03\x05\xb6\x30\x59\xcf\x16\xa8\x16\xcb\xfa\x45\xaf\x46\x16\x36\xe5\xdb\x6c\xf3\x5d\x3e\x3f\x7a\x01\x98\x5e\xd7\xe5\x73\xce\x35\x9f\xa1\x2c\x89\x46\x1b\x4f\x46\x6c\xcd\x2f\xb4\x2a\x26\x58\x4a\x69\xc9\x8c\xe2\xb4\xa1\x8a\xd4\xc0\xf5\xf2\xb1\x5a\x79\xbb\x51\x36\x40\xc0\xb7\xe0\xe5\x4a\x3c\x57\xb7\xf6\x65\xa7\x09\xeb\x15\x38\x19\x7f\xef\x10\x35\xb5\x2d\x1c\x3d\xca\x26\xc4\x2e\xc2\xc0\xa2\x72\x5b\xd1\xe5\xde\xd1\x41\x93\x8e\x47\xc9\xe1\x16\x34\xc9\x57\x5c\xc5\x4a\x57\xb2\xea\xdc\x12\x4d\x94\x4b\x6d\xdb\xf1\xf9\x1c\x4e\x6d\xd3\x7b\x61\x94\xaf\xd4\xe9\x5e\x2c\x39\x92\x8d\xaa\x54\x5c\xd0\xc2\xa1\x71\x9a\x99\x86\x6a\x87\xe3\x5b\x65\x0c\xd5\x9a\xb6\x77\xd3\xa4\x63\xa5\x6f\x8f\x35\xfd\xb4\x02\x43\x9c\x56\xb9\x33\x35\x0e\x96\x6d\xc6\xc8\x5e\x40\x64\x61\x8b\xc1\xc7\xd5\x3f\x8e\x8a\x51\x07\x95\x2b\x94\x71\x1e\x57\x74\xb3\xc7\x27\xbe\xb2\x6c\x8e\x45\xe9\x40\xb9\x5f\x9f\x55\xee\xd7\xd3\x73\xe9\xc0\x81\xe6\xaa\x29\x42\x3f\x97\x50\x43\xfe\x3e\x7d\x88\x8f\x55\x18\x15\xa6\xa3\x24\x8c\xc8\x54\xe8\x15\xce\xbe\xd7\x2b\xaa\xe4\x1f\x8d\x15\xae\xf2\xbb\xf4\xc6\xf9\xcf\xf0\xc6\x25\xb2\xad\x43\x97\xf5\x8d\x23\x6a\x70\xa5\x4b\xc3\xd8\xae\xd5\xed\xd6\xaf\x8d\x06\xed\x54\x6d\x3b\x6f\x07\x9e\xb9\xf0\x76\x85\x21\x11\xc7\xa6\x67\xf3\x59\x5f\x72\xfd\x70\xec\xfd\xb7\x58\xcc\x02\x0f\x13\x84\x51\x54\x44\xcf\x78\x76\x4f\x66\x3b\x51\x9b\x69\x40\x4e\xf0\xcd\x21\x99\xa6\x8b\x4e\x65\x9e\xde\xb6\xfd\x28\x81\xb2\x32\xc2\xf0\xdf\x1a\x2b\x2a\x2e\xa0\x0d\xa0\xf6\x5f\x99\x9a\x46\x65\x00\x13\xf6\x6d\x67\x14\xb3\x51\x2e\xcb\x23\x55\xc8\x97\xca\x6d\x41\x3b\x8e\xf6\xe2\xb4\x6d\x8f\xe1\x51\x22\x8c\xbf\x89\xf4\x8a\x4f\x94\x1f\x5f\x6e\x62\x93\xad\x0d\xd8\x95\x4b\x5c\xfe\x94\x14\xd6\xbb\xca\x9d\x73\x98\xa5\x83\x61\xc1\x5e\x32\xa8\x6b\x5c\x41\xc4\x2d\x2b\x89\x2f\x9a\xc0\xbb\x5b\x16\x15\xbd\x1c\x2f\x47\xc9\x2e\xbd\x75\x8d\x2b\xbb\x5a\xe0\x77\xdc\x2d\xa4\xb6\xa8\x64\xcd\x4c\x1a\x5f\xfe\xb2\x1c\xb7\x7c\xfc\xbf\xa5\x02\x84\x6e\x3a\x4a\x3a\xdc\x7f\xa9\x8d\x12\x6b\xa2\xee\xe6\x68\xd8\x31\xac\xc8\x0c\x44\x34\x13\x2a\xb4\x97\x9b\x6c\x9e\x2a\x80\x0d\x0d\x42\x91\x25\xef\x57\xb5\xdf\x79\x57\xd5\xe9\x40\xb8\x0e\x30\xef\xb4\x0c\x6b\x08\x34\xc4\x41\x79\x7d\xa7\x45\xdf\xb6\xd7\xc8\x8f\xc9\x91\x9a\xdd\x56\xfa\x48\xe1\xa5\x1f\xd1\x30\xe2\xbf\xa9\x9b\xe0\xc3\x0c\x48\xde\x19\xb5\x59\xa2\x15\x82\x2f\x00\x51\x54\xbc\x47\xb7\x3f\xa2\xaf\x2f\x35\x0b\x6b\x3c\xa0\x0c\xfb\xd0\x05\x4c\x4d\x3e\x19\x57\x04\x1a\xf2\x34\x31\xed\xd8\xee\xd6\xc5\x91\x5b\x8a\x91\xbd\xb7\xe5\xe3\xaf\xdd\x13\xdf\x28\xbc\x45\x9d\x45\xd4\x49\x19\x80\x89\xc9\xf1\x99\xae\x8d\x5f\xd4\xfc\xa5\x7e\x9a\x15\x61\x3a\x80\x82\xbb\x93\xc7\x63\x37\x30\x3e\x09\xfe\xba\x6b\x29\x47\x49\x68\x8b\x34\xf9\xa7\xff\x20\xb1\xab\xc3\x34\x2b\x94\x13\xf8\x55\xad\xec\x79\xd5\x45\x85\x83\xb4\x48\xb3\x70\x2d\x8c\xa5\xac\x8f\x7d\x82\x89\x47\x7c\x52\x43\x75\x5c\x6a\x0e\xa3\x70\xd9\xba\x12\x91\x40\x62\x34\x3e\xc6\xd1\xc3\x0a\x6b\xb2\xff\xff\x2b\xd3\xf4\x82\xd3\x6c\xa7\x45\xe1\x68\x48\xe2\x8d\xe8\x2b\x24\x1b\x75\x6a\x0a\xf9\x68\x68\x33\x5a\x60\x40\x6c\x69\xb4\x94\xe5\xc2\x86\x2a\x99\xde\xae\x95\xfc\xe8\x58\x54\x65\x4c\xc1\x6c\x6e\xa1\x03\xfb\xba\xf5\x29\x5d\x06\x4e\xb3\x62\xce\x93\x8c\x4e\x8e\xd5\xed\xfd\x08\xfc\x0f\x11\xc0\xf3\xdb\x16\xda\xcc\x2c\x8b\xae\x5a\x23\xab\x26\xef\xbf\xac\x6c\x4f\x96\xc6\xca\x84\x60\xc9\x35\xe8\x56\x23\x1b\x77\x78\xf4\xa2\xd3\xc1\x4e\x85\x7c\xa2\xc5\xab\xfb\x36\x5c\x9e\xf5\x66\x37\xeb\x68\xaf\x38\x93\xde\xf2\xb9\x4a\x1d\x98\x26\x00\x9f\xa8\x08\x66\x60\x8b\x2c\x0a\x73\x25\x5d\x05\x21\x1a\x71\x5c\xdb\xfe\xda\x48\x14\x6a\x25\xca\x2d\x93\xc9\x11\xb5\x3c\x50\xba\x23\x63\x9a\xf8\xa2\xfc\x48\x3f\x2b\xe4\x5b\xd5\x6e\x18\x65\xc3\xac\xfc\x16\xaa\x5e\xe2\xb9\x7d\xa2\xc8\x60\x9f\xa0\x77\x8b\x10\x21\x5c\x4e\xd2\xd5\xd8\x76\x48\x46\x65\xe1\xb0\xfb\xba\xf2\xcf\xf9\xb8\x0e\xc8\x91\xa4\xab\x7d\x9b\xd9\x19\x6f\x51\x0e\xc9\x00\x0c\xd5\xb3\x9a\xf2\xb9\x59\x91\xaa\x4b\xbb\xc5\xae\xf2\x77\xb0\x31\x3f\xac\xfa\xa8\x21\xfe\xc1\x0a\x0b\x87\x0e\x34\x8a\xae\x29\xef\x10\x88\x0c\xf2\xc7\xc7\x1a\x2f\x57\x64\x69\x6c\x47\x20\xab\xb0\x70\x7d\xa0\xc4\x1f\xd7\x15\xc2\xb8\x0c\xa2\x42\x0e\xb7\xb0\xd2\x9f\x85\x48\x36\x9f\xa8\xfa\xae\x89\x4d\xbe\x6c\x12\xc5\x89\x7d\x27\xf0\x55\xe6\x77\xea\x4c\x14\xf2\xc2\x64\xa8\xdd\x20\xdc\xdd\x18\x7b\x35\xb8\x8d\xcf\x65\x35\xae\xf6\xd3\xd8\xe6\x26\xb6\x0d\xba\x12\xac\x77\x80\xba\xf1\x71\x55\x75\x24\x4b\x1b\x9e\x1d\xc0\x7e\x33\x7c\x32\xf1\xb3\xec\x35\xdb\xed\xa2\x56\xab\x59\xa9\x15\x15\x1c\x4c\xcd\xab\x95\x6f\x37\x45\x1f\x10\x30\xd1\x8f\xf2\x6d\x1d\x26\x29\xa2\x21\x70\x5b\x0d\xe8\x27\x26\x0a\x0a\x6c\xa2\x38\x1d\x15\xb3\x2a\x7b\x7b\x53\x61\xdf\xc1\xd0\xe5\xe3\xb1\xca\xf7\xde\x54\xf0\xee\xf6\x28\x8f\x12\x9b\xe7\x36\x87\x59\x0e\xb6\x89\x5b\x63\xe5\x7a\xfd\xc7\x74\x37\xec\x35\x80\xe4\x48\x20\xeb\x1e\xa2\x8a\x48\x9a\xa5\xea\xf1\x63\x4c\x52\xaf\x15\x12\x18\xa0\x99\xc0\x42\x02\xe2\x26\xe5\x89\x85\x17\x54\x74\x15\x7f\x39\xb5\x51\x3c\x83\x81\x84\x61\xb6\x49\x4e\x04\x18\x47\x5b\x5a\x19\xf5\xb2\x6b\x17\x0d\x33\xbb\xa2\x94\x91\xf0\x18\xde\xc3\x95\xf1\xc9\xd4\x95\xed\x5f\x6c\x16\x6b\x43\xbb\x9a\x45\xa2\x57\xc0\xda\x80\x4a\xe3\x75\x73\x6a\x45\x39\xfc\xb5\x66\x98\x8d\x06\x14\xac\x1e\x99\xe7\x0d\xf8\x0d\x55\x73\x7a\xc3\x5d\xd4\x6b\xa3\x24\x2c\x28\x24\xf1\xed\x1b\x06\xde\xf0\x49\x0d\x5f\x7c\xa1\xdc\x67\xfa\xe4\xf8\x23\xf4\xba\x72\x72\x63\xa8\xef\x6c\xd1\x22\x8e\x38\xed\x96\x8a\x70\xcf\x4f\x25\x96\xfb\x17\x9b\x5d\x33\x3a\x86\x81\x8a\xcd\x9d\xa8\xc0\x5b\x88\x71\xa5\x91\xec\xc4\xbc\xfb\x91\xed\xd2\x75\xe2\xd1\x3e\xd4\xcf\xf9\xa1\x22\xcb\xd9\xbc\x88\xd2\x64\xb7\x07\x6e\x30\xb3\x52\x2b\xa4\xe1\xad\x32\x82\x5e\x52\xba\xf2\x8e\xa0\x8e\xf0\x36\xb6\x22\x54\x3e\xdf\x1b\xab\xf6\xf5\x96\xc2\xd4\x32\x94\x6b\x0f\xb6\x78\x11\x32\x56\xc2\x99\x9f\xa2\xaa\x05\x5f\xa3\x33\x81\xf7\x38\x3a\xa3\xf5\x39\x77\xb5\x7c\x82\x7b\x31\x50\x52\x9b\x9f\xaa\x15\x90\x91\x4a\x02\xd7\x52\xea\x24\xd3\x8a\x30\x18\xd0\x23\x37\xd6\xc4\x6f\xa1\xfc\x36\x3e\x9e\x1a\x6a\x94\xbe\x0e\xd2\x81\x4d\x8a\xd1\x00\x01\xaa\xdb\x15\x16\xfd\xae\xf0\x84\x8a\xe3\xff\x73\xf2\x18\x42\xdf\xf3\x84\xf2\xd8\xbe\x1c\xf8\xc9\xf0\x09\x4a\xc8\x00\x04\xdd\x07\x65\xd4\x6d\xf0\xce\xe2\xf1\xd7\x02\x05\x07\x02\x35\x14\x99\xca\x6d\xfd\x38\x36\xc6\xde\x87\xec\x7b\x34\xb2\x98\x26\xad\x2d\xa7\xd9\x65\x0a\x2f\xeb\x0d\x57\x15\xcb\xc3\x7e\x1a\x9b\x0c\x1d\x7d\xe4\x62\xf0\xd7\x40\xab\xec\x19\x4a\x28\xf0\xa1\x19\x54\x65\xc4\xec\xb4\x86\x29\x33\x34\xf1\x40\x4d\x98\xf3\x74\xbf\x7c\xac\xd0\x47\x69\xb7\xfb\x8c\xe7\xb0\xdd\xe5\x34\x47\x04\xce\x1a\x4e\xff\x8d\x7f\x90\x3d\x81\x02\x0f\xa6\xfa\x13\x8d\x62\xf9\x53\x9a\x64\x62\x05\x3a\xe3\x2d\xfa\x1b\x2d\xaf\x95\x7f\x16\x19\x93\x30\xd8\x67\xbc\xcd\xe7\x0e\x28\x6f\xe3\x5a\x3e\xc5\x60\xc2\x24\xfd\x77\x4a\xc0\xf7\x6a\xa0\x94\x39\x36\x30\x7a\xd1\xee\x7b\x57\xe5\x26\x03\x9b\xe7\xa6\x67\x77\x53\x0f\x01\x59\xe2\x55\xa4\x81\x7c\xa2\x7d\x9a\xce\xe2\x2a\xf0\x2d\xa8\x7c\xbb\xee\x42\x79\x11\xa2\x97\xea\xd9\x94\x67\x5d\x60\xdc\x37\x06\xd4\x0f\x6f\x82\xe7\x1b\x44\xd9\x28\xc9\xe7\x14\x2e\x69\x27\x23\x01\xb1\x63\xdc\x41\xc3\x4c\x36\xd1\x86\x93\xcd\xf8\x8e\x7a\xed\xbf\x5f\xc9\x4b\x5f\x8f\x2c\xdc\x92\x95\x84\xc5\x21\xa7\x97\xd6\x70\x06\x52\x1f\xa9\xd8\xec\x11\xbd\xfb\xcf\xeb\x7b\x96\x01\x72\x98\x66\x99\x0d\x59\xf8\x4b\x9a\x71\xba\x4b\xf7\x94\x2a\x24\xc6\xcb\xf9\x5e\xba\x6e\x66\x56\x04\x7e\xa7\xfb\x6c\xac\x91\x4a\xca\x6a\xe2\xfb\x41\x45\xf2\xd4\xf3\x1c\xbf\x19\x54\xd1\x66\x2e\x7b\xfc\x26\xbd\x71\x67\x80\xb3\x70\xb8\xca\x98\x44\xc1\xe6\x4a\xb0\xc7\xbd\xf0\xff\xf4\x39\xbf\xe1\x7f\x86\x9f\x43\x77\xe1\xba\x92\x00\xbb\x4f\x3f\x2d\xa0\xf9\x32\x62\x97\x5f\xa0\x6f\x45\x80\x37\xd7\x6a\x7c\x75\xc1\xc5\xb2\xe5\x3b\xe7\x18\x57\x83\xc7\x78\x78\x8b\xe9\x17\x5e\xab\x13\x72\x28\x07\x1d\x16\xcb\x5b\x58\x5c\x44\xf3\xa3\xbc\x41\xe5\xc5\xfa\xaa\x57\x07\x2c\x9f\x28\x6b\x75\x8e\x3d\x04\xbf\xd1\x2a\xdf\x9d\xb4\x46\x64\x4b\xec\x8f\xb2\x2c\x0a\x0d\x3b\x20\xca\xed\xd0\x05\xb1\x05\x9a\x62\x7b\xcc\xd2\xba\x81\x4a\xc1\x74\x68\x5f\x46\x85\xd6\xf4\x44\x19\xd8\x79\x5e\xe8\xd6\xa2\xaf\x0d\xa7\x22\xd6\x23\x46\xfa\x0d\xe7\x12\x77\xab\xd6\xdf\x33\xef\xdb\x18\x1b\x22\x86\x3c\x2a\x8d\x7c\x5c\xd7\x73\x49\xd2\x82\x59\x8e\x98\x74\xe0\x23\x21\xe1\xf8\x6f\x31\x67\x11\x2f\x82\xce\x20\x2d\x76\xb7\x01\x67\x26\x4a\x66\x15\x9e\xf2\x92\x66\x6d\xd3\x8f\x57\xca\xdf\x28\x1f\x5e\x1b\x57\x00\xb2\x26\x72\x45\x3e\x64\x7d\x67\xb1\x07\xf3\x89\x0e\xd7\xe3\xb4\x5b\x70\x94\xe5\x7c\xa0\x1c\x80\x69\xa7\x5a\xb1\xa7\x9b\x26\x2e\xbc\x26\x26\x84\x2f\x06\x3c\xc4\x95\x61\x64\x09\x62\x0d\x2b\xf7\x1f\xd4\x2a\xc4\xc6\x29\xb5\x76\xca\x6f\x70\x3e\x40\xe5\x98\x93\xf6\x93\xc7\x8e\xbc\x3e\xca\xa2\xb0\x3f\x47\xff\xca\x29\x3a\x9a\xac\x92\xaf\xd3\x97\xf0\x0e\x89\x35\x11\x08\x62\xc0\x34\x30\x87\xee\xd6\x79\x91\xb3\xd0\x29\x97\x01\xd1\x89\xfc\x0c\xdf\x80\x25\xed\x92\x02\x31\xbe\xaf\xcb\x61\x51\x62\xe2\x78\x8d\x30\x08\xac\x0a\x4d\x51\xb1\xe4\xbd\xe5\xa7\x30\xa6\x6f\x04\x95\x37\xd2\x70\x2e\x64\xd7\x68\x82\x63\x07\x3a\xa3\x33\x87\x0d\x2f\x64\x96\x1a\x07\x82\x42\xc3\x08\x42\xf8\x8e\x01\x59\xbe\x5e\x56\xab\x6e\x3d\xed\x50\x08\x1d\xdb\x76\x01\x0a\x3a\x20\x0d\x82\x20\xf0\x71\xab\x4e\xad\x39\xb3\xc3\x34\xe3\x5e\x0e\x42\xd9\xc6\xa4\xe2\xb3\xd4\x70\xca\x65\x7b\x5a\x4f\x28\x05\xb8\xe4\x79\x7a\x15\xd8\x6f\xaf\x68\x57\x6d\x64\x96\x08\x62\xb8\xb9\x82\x15\xff\x31\x28\xb1\x60\x9e\xfe\x1f\x63\x92\x37\x74\x7d\x00\x87\x93\x64\x32\x0c\x40\x50\x57\xc6\x7e\x99\xbc\x83\xcd\x13\x01\x32\xfc\x83\x24\x40\x2e\x27\x9d\xf8\xd9\x29\x51\x6b\xac\xd6\xd2\x92\x57\xb5\xba\xf7\x2b\xf6\x31\xe0\x97\x61\xe0\xff\xaf\xc0\x83\x8b\xb1\x8c\xf7\x6e\x9f\x56\x91\x2e\x1f\x9f\x49\x0a\x1b\xa7\x43\x2e\xd4\x70\x58\x31\x56\xb0\xd9\x3f\xd5\xfd\x6d\x53\x64\x69\x12\xbd\x4e\x80\x28\xdf\x94\x08\x94\x2a\xf9\x25\x95\x14\xe5\x85\x35\x9d\xb5\x72\xcd\xdc\xc2\xf3\xdd\xba\xa2\x3c\x04\x58\xc2\x90\x4f\x02\xe1\x08\xb6\x47\x39\x5e\x26\xbe\x0f\x9a\xe5\xd8\x17\xb7\x14\x2b\xe4\xb4\xa2\x44\x14\xe2\x74\x0b\x44\x3b\x7e\x84\x8f\xd5\x62\x1a\xc7\xd1\x8c\x56\xbc\xb9\xac\xe2\xad\x4d\x2d\x0c\x30\xcd\x66\x7e\xa9\x49\xc0\xbe\x8e\x16\xb4\xd8\x08\x94\xa0\x85\x97\xfc\x62\x15\x2a\x31\x8f\xc5\x0b\x7e\x37\x50\x41\xe6\xa6\x2e\x8a\x9c\x0c\x5e\x90\xb2\xe2\x28\x2e\xa2\xc4\x28\xe5\x64\xa9\x6e\xf9\x45\xff\xbc\x36\xef\x80\x97\x36\xf4\x0b\x05\x95\x5b\x0e\x5c\x11\x10\xf7\x77\xbe\x96\x66\x73\x0a\x63\xba\x63\xe2\x67\xf9\x93\xb4\x66\x62\xf1\xbb\xa2\x6b\x65\xbf\x13\x28\x65\xfe\xe9\xca\xe2\x81\x03\xcd\xcc\x86\xde\x3e\x88\x75\x54\x02\x05\x4a\x7f\x47\x15\x65\x42\xab\x90\x5a\xaf\x8a\x0b\x3b\x64\x31\xc4\x92\xdd\x17\xd2\x43\x93\xad\x94\xc9\xed\xc2\x61\xde\x53\xff\x94\x6e\x8c\x8f\x15\xa0\x36\x36\xc7\x0c\xfb\x3d\xba\x72\xd8\x71\xfa\x5b\xe1\xbd\xd4\x18\x16\xe6\xfd\x68\x48\x64\x1e\xd1\x19\x12\x1b\x22\x4f\xed\xbc\x38\x05\xfb\xfe\xfa\xc1\xf9\x66\x92\xd2\x25\xb1\xfc\x2a\x2d\x9b\x22\xc5\xaa\x30\x1a\x16\xaa\x92\x5e\x84\xea\xe3\xa0\xa1\x14\xf4\x6a\x34\x96\x7b\x36\x1b\x30\x4c\x4b\x5c\xb9\xe9\xe3\x22\xdb\xb9\x9d\x05\xb6\xf4\xb5\x43\x4d\xd3\x59\xb1\x59\x11\xe5\xbc\x03\xa0\xe3\x84\x22\x0c\xb2\x2c\x8e\xf4\xd1\x78\xf9\xac\x4e\x0e\xa6\xdc\x9b\xe8\x47\xb1\x52\xc1\x33\x89\x8f\xb5\xa5\x5b\xdf\x9a\xc2\x66\x73\xbe\xfb\xf7\x11\xc6\x09\x1a\x7a\x73\x2d\x5a\x7c\x9c\x76\x4e\xb9\xf8\xf0\x89\x2a\x33\xef\x9c\xa8\xb7\x3b\x0a\x97\xd3\x74\xc6\x87\x13\x3b\x5a\xbe\xe6\xce\x71\x02\x16\xec\xab\x35\x14\xbf\xa5\xa6\x29\x0a\x9b\x38\xb6\x94\xc3\x50\x7b\x95\xf6\x42\x71\xec\x4c\xd6\x1b\x95\x09\x6c\x8e\xfe\x24\xb2\xa0\xef\x06\xaa\x42\x74\x43\xbd\xf7\xcf\x14\x3f\x68\x6e\xa2\xda\x19\xf7\xa7\xd4\x11\x0e\x7f\xad\x19\xda\x38\x56\x12\x83\x97\x95\x6b\xcf\x65\x9f\x65\x16\x59\x34\xb4\x95\x30\xee\x7c\xc5\xd2\xb3\x0e\xa8\x5c\x98\xa4\x17\x0b\x00\x42\xe4\xfc\x2b\x3a\xff\xdb\xc7\x04\xe1\x5a\xe2\x21\x69\x36\x42\xe1\x7a\x8b\x28\xf7\x5b\x13\x05\x0a\x4f\x46\xf9\xe3\x3e\x38\x9d\x9b\xf8\x24\x6f\x07\xed\x40\x48\x72\x76\x4f\x1a\xfb\xf6\xf1\x03\x79\x0a\x95\x7f\x3c\x84\xb7\x11\x0f\xaa\x72\x85\x10\x65\x41\x8e\x05\x04\x18\xcc\x67\x60\xe8\xcf\x57\xbd\xa9\xe2\xb5\x3d\x65\x26\x8b\x15\xfc\x3c\x02\x72\x87\xf4\x72\xcf\xf1\x1c\x0d\x44\xec\x3e\x6f\x63\x93\x00\x42\xae\x31\xa1\xb5\x8e\x3f\x3e\xf6\xc5\xbc\xdb\x4a\x77\xee\x03\x9a\xfe\x20\xb3\x73\xa9\x00\xa3\xe2\x56\xf0\xbc\x1b\x15\xaf\xa5\xa3\x2c\x81\xed\x52\xc3\x51\xb6\xaf\x69\x12\xc4\x35\xd5\xd7\xeb\xa5\xe5\x88\xc3\xca\x25\x66\x84\x4a\x46\xe9\xac\xeb\x0c\x15\x7d\x32\xcd\x49\x47\x05\x21\xaf\x10\x44\xde\xa0\x1c\x48\xcc\x97\xca\x1c\x48\x04\x82\x9e\x56\x2d\x90\xd8\xc6\xb4\x53\xba\x3e\xb2\xd2\x88\xdc\x0c\xbc\x2c\x02\x0b\xa0\x4a\x9d\xef\x29\x6d\xa1\x28\x51\x29\xaa\x06\xf0\x72\xe0\xe3\x5a\x81\xf5\x15\xc3\xf7\x8f\x5a\x0a\x30\x9b\x7c\xec\x22\xfc\xee\xc8\xca\x1a\x0f\x9e\x26\xd7\x02\xf9\x64\x6a\x5e\xbc\xd4\xcc\x07\x36\x8e\x95\x9b\xed\xc6\x58\xa1\x73\xaf\x2b\xba\xf8\x3b\x53\xd3\x9b\x76\x95\x15\x33\x18\x3a\xec\x81\x26\xbc\xf1\xf1\xd4\x5e\xb4\x6f\x5f\xb3\x13\xe5\xce\x3b\x52\x77\x33\x45\x02\xce\xf5\xee\x4c\xd6\x2b\x23\xe0\x88\x51\x1c\x40\x42\x63\x8b\xe5\x63\xb7\x93\x93\x4a\x57\x34\xb0\x33\x3e\x82\xdc\xa1\x76\xcb\x3b\x54\xdf\xc5\xff\xff\x54\xe1\xb9\xd2\xac\xb0\x3d\x93\x2b\xbb\x0d\x6e\xd8\x89\x43\xbe\x8f\x68\xcf\xab\x6b\xfc\x19\x95\x1a\x51\x7e\xd9\x74\x4f\xbf\x5c\x7a\xd9\x13\xdf\xc9\x5a\x79\x89\x2b\x1d\x0d\x8c\x0a\xea\xe7\x96\x63\x0d\xd7\xf4\x28\xf0\x82\x7e\x30\x05\xc6\xb4\xbf\x35\xb5\x17\x1c\x9c\x6f\xc6\xa6\xc7\x2f\x59\x14\x2d\x29\x38\x16\xad\x4b\x0d\x9a\x7d\x2d\x2a\xf2\x51\x43\x21\x5a\xcf\x57\x94\x03\xf5\x84\xcf\xcd\x00\xd0\x57\x0c\x84\xfb\x9c\x5c\x39\x17\x70\x07\xc8\x59\xd7\xed\x40\xb3\x96\xbf\xd0\xf8\xc5\xaf\x54\xa9\x2b\x22\xe9\xed\xe3\xd9\x62\xac\xd4\xe0\xb8\x17\xc1\x55\x3c\x2a\xc0\xa0\xac\x75\x73\xac\xd0\xbf\x67\x82\xc6\x97\xbf\xec\x2c\x33\xe8\xa5\x00\x7c\xfc\x13\x65\x79\x04\x4d\x3c\xd9\xcf\xca\x97\x82\x81\x71\x6f\xac\x1a\x84\x73\x2d\x0a\x5d\x94\x15\xc7\xab\xae\xbe\x4d\x2b\x96\x80\x88\xcb\xe7\x8e\x48\xf6\x51\xe0\x05\x31\xe7\x26\xfa\x49\xdc\x55\x76\xd6\xbb\x27\x35\xdd\x7a\x3b\x1a\xf6\xd3\x4c\xc6\x2c\x07\x8e\xaa\x19\x7a\x52\x29\xdf\x0e\x33\x5b\xb0\x23\x98\x4b\x4d\x7c\x9a\xa2\xd1\x04\xa3\x30\xb4\x8c\xdb\x40\xc0\xf6\x5b\xca\x40\x80\xd7\x19\x84\x03\xbf\x4c\x43\x9d\xc7\x66\xf0\xbc\xc2\xbb\xda\x95\x88\xd8\xe5\x73\x9e\x1d\x7e\x53\xf1\xff\xe0\xbe\x8a\xfb\x7f\x38\xf6\xa0\xa7\xcf\x02\x2f\x01\xf8\x50\x55\xcf\x57\xa2\x3c\xa2\x0c\xb0\x7c\xb3\x22\xdf\x54\x7e\x85\x44\xec\x35\x32\x51\xdd\xd8\x0c\x64\x7f\xe5\xa2\x30\xbd\x41\x29\x10\x4b\xe1\x70\x94\x44\x05\xb5\x71\xb1\xf8\xa0\xd4\xcb\x00\xdd\x0a\xda\x41\x51\xa5\xde\x51\x6b\xf4\x6a\x99\x2a\x75\x58\xc9\xd7\xf9\x90\x1f\x14\xfa\xfa\x1d\xba\x4e\x3e\xc6\x77\x48\x42\xe7\x99\xe1\x2b\x69\x3c\x1a\x58\xac\x6c\xe8\x2a\xa0\xa1\xc4\xc7\x6a\x39\x7f\xdd\x20\xaa\x95\x57\x00\x53\x2e\x3e\xae\x72\x42\x62\xa8\x12\x20\x9b\x3f\x4e\xb7\xc2\xc7\x9a\xd7\x69\x8e\xd9\x7c\xce\x13\x09\xa0\xc5\x24\xcb\x1f\x5d\x10\xb6\x8a\x1f\x6a\xe9\xd1\x4b\x6a\x0f\xf9\x61\x1d\x39\xc7\x0c\x87\xd6\x64\x6e\xb5\x66\x29\x20\xc5\x8d\x9a\x6e\x45\x2d\x2e\x36\x3b\x59\x94\x2c\x73\xf7\x4a\xfc\x11\xb4\x59\x42\x15\x1a\x64\x3b\x2f\x96\xbb\x26\x66\xd4\x5d\xcc\x67\xa9\x81\x95\xd3\x13\xd3\x96\x65\xf8\xf1\xd6\xd9\xcc\x13\x19\xf1\xce\x89\xc2\x9f\x09\x34\x0d\xf7\x77\x5d\x55\xab\x36\x14\xb5\x62\x57\x8b\xe2\x58\xe0\x55\x4f\xa0\x45\x21\xda\x0a\x3b\xbf\xe4\x89\xe5\x47\xe6\x1d\x4d\xa7\x7c\x55\xa8\x92\x72\x44\xcc\x1f\xc6\x8d\x61\xa2\xef\x9c\x78\x04\xf4\xdb\x34\x05\xd0\xb9\xb8\xae\x0c\x82\x6e\x63\xe5\x95\x82\x1f\xbd\x0c\xd9\xfa\x9f\x54\x68\xff\x74\x08\xb1\x11\x3f\x12\xe7\xdd\x25\xfa\xae\xe0\x2e\xac\x53\xce\x5c\x62\xdf\x82\x6f\x9c\x38\xc6\xfb\xec\x44\x21\x57\x6e\xd6\x08\x33\x13\x36\x9c\xd2\xd3\x0a\x3f\x04\xa6\xee\x88\x72\x40\xc8\x12\xbb\x0e\x8f\x9e\x78\x2d\xed\x27\x15\x9c\x05\x73\x63\xf8\xa4\x52\xeb\x5c\xde\xeb\x41\x2e\x4f\xb4\x3c\x86\xe3\xb1\x96\xda\xab\xaf\x8c\x2b\x92\x86\x6e\xb4\xff\xc7\xcf\x21\x5e\x47\xf6\xb3\xa3\xa5\x1a\xce\xeb\x08\x40\x00\x6a\xdf\xa2\x27\xc5\x7e\x0f\x0a\x42\x70\x09\x8b\x38\x3e\x7e\x67\x6a\xa1\x59\x38\xdc\x5c\x35\xd1\x8a\xcd\x66\xa8\xea\x83\xd4\xe1\xec\xd8\x37\xde\x2f\x29\x63\xf0\x1f\xd7\x18\xa4\xbe\x42\x28\x6c\x5a\x80\x50\x76\xfe\x29\x0d\x19\x8c\x12\xc0\xad\xd0\x98\x38\xad\x8a\xd6\x1f\x4e\xed\xd5\x47\x8f\x36\x49\x47\x85\x1e\x82\x74\x7e\xca\xc7\xc6\xc7\x35\x6f\x6f\xa9\x59\x64\x26\xc9\x87\x69\x06\x70\xbf\x48\xd2\x60\x22\x08\xce\xa6\xe1\xc5\x6a\x30\x64\xf9\x1f\xa6\x02\xbc\x7d\x0b\xcd\x8c\xb4\xea\x9d\xae\xbb\x36\xd8\x7a\xa8\x14\x65\x37\xea\xb4\xea\xc9\x40\x51\xeb\xea\xcd\xb5\x2a\x2a\x62\xbe\x18\x89\xc5\x07\x2f\x64\x5d\x2b\x0b\x99\xd5\x38\x5d\xcd\x97\xa3\x46\x65\xa3\x76\xa0\x93\xdf\x9b\xfa\x59\xd2\x3e\x8d\x3a\x76\xd6\x67\xbb\x77\x54\x77\x9e\xad\x6a\xd1\x8d\x40\xf6\x21\xbd\x16\xd5\x88\xb1\x49\xf2\xf2\xec\x14\xa0\x18\xf3\x14\x39\xa4\x88\x75\xd0\x38\x44\xcd\xfd\x41\x1d\xb6\x07\x62\xbf\x88\x2b\x39\x69\xa1\x54\xed\x33\x8d\x87\xfd\x23\x05\xce\x39\x16\xff\xd3\x7f\xd0\x31\x85\x09\xd3\xc1\xb0\xa1\x00\x47\xeb\x1a\x70\xb4\x5e\x23\xe0\x77\xa8\x39\x0c\x79\x6b\x64\x93\x1e\x4d\x2c\xb8\x38\x75\x71\x47\x8f\x36\xcd\xc0\xbc\x1e\x25\xbd\x59\x9a\xe7\x52\xaf\x2d\xef\x0e\x91\xd2\x8e\x96\xda\xdd\xc7\x6a\x6d\xfb\x4b\xed\xb2\x53\x8e\x35\x9e\xf5\xe2\xac\xa2\xf4\x72\x6f\xd7\xe4\xbc\xaf\x36\x3b\x36\xcc\x6c\x45\xb3\x9f\x35\x02\x25\x2b\x54\x78\xf5\x51\x92\x08\x7f\x03\x13\x08\x61\x31\x1f\x2b\x74\x6a\x37\x8b\x6c\xd2\x89\xd7\x68\xb4\x22\x3f\xbd\x85\x8d\xc2\x05\xc6\x6e\x99\xb9\x38\x75\x59\x2f\x35\x47\x85\x33\x5f\xf1\xed\xa7\xd3\x01\xad\x01\x7c\xa2\x8a\x0d\xc4\xa3\x5b\x89\xec\xea\x2e\x5f\x4a\xf9\x04\xef\x48\x04\x0b\x66\xbc\xbb\x22\xc3\x64\x51\xa8\x5c\x57\x23\xe8\x86\xce\xf1\xd6\x5d\x25\xc1\x24\xbd\x51\x94\xf7\x1b\x1a\x19\xd0\x50\x32\x39\xdb\x67\xfe\xc1\xf9\xe6\x28\x01\xc7\x5d\x8a\x25\x0e\x13\xe3\x25\x1d\x15\x69\x01\x3e\xe5\xc5\xe3\xf4\xea\x91\xc0\x5f\x54\xe2\x29\x57\x95\xe0\xd1\x93\x2d\x0f\x23\x7b\x67\xec\x5d\x53\xde\xa5\xb5\x08\xd8\x15\x08\xfa\x88\x23\x62\xb9\x53\x23\xf8\x3d\xa7\x85\xd7\x2f\x2a\x53\x99\x34\x89\xd7\xbe\x40\xb7\x2e\x12\x53\xe5\x97\xa1\xdc\xf0\xf1\xd8\xf7\x24\x1f\x2a\x67\x0d\x90\x49\xb0\x35\x3c\x08\x94\x13\xd0\x95\x71\xc5\x53\xde\xf7\x46\x99\x27\x8e\x6d\x6b\x07\x89\xc0\xc8\x72\x05\xcd\xe9\x3b\x28\xa7\x3b\xdc\x73\x19\x8b\x02\x5c\xbd\x7b\x42\x61\x81\x80\xa0\x69\xa3\xc6\xbd\x5e\x43\x8c\xe0\xba\xd8\xe5\x60\x11\xe1\x43\x82\x8d\x88\xb2\x59\xf9\xd8\x9c\x4c\x83\x57\x9a\xbc\xa5\xfc\x07\xde\xc4\x4e\xc4\x14\xd3\x1a\x87\xdb\x66\xc7\xb6\x47\xa8\x78\x73\x8e\x14\x28\x18\xee\x19\x55\xf0\xe9\xf4\xd6\x68\xcd\xc3\xcd\x02\x15\xe0\xb6\xbb\xf2\x59\x49\x40\xd9\x70\x5a\x43\xeb\x75\xa5\xc2\xd1\xcb\xcb\x2f\x23\x93\x63\x6f\x13\xfa\x00\x12\x5a\xc0\x78\xb1\x26\xbe\xa9\x74\xa0\xfb\x86\x0c\x2a\x0b\x1b\x25\x5c\x0b\x97\xfd\x4d\x59\xba\x5f\xd0\x22\x27\xb7\xdd\x50\x77\x79\x80\xe7\x02\x7e\x88\x77\xc8\x27\x53\x6b\xdd\xd7\x17\x0e\x37\x19\x6f\xba\xe0\xb0\x5a\xf4\xdd\x02\xd6\xaa\x49\x1d\x86\x69\x5e\x70\xad\x1d\x51\xd1\x55\x95\x39\x5c\xad\xc0\x15\xb3\x15\xbb\x97\xae\x1b\x8b\xc8\x79\x1a\x9a\x02\xb9\xc7\xed\xc9\x59\xc3\xc9\xab\x9f\x1b\x6b\x55\x2e\xbc\x24\xfe\xbc\x9e\xe2\xf7\x54\x6b\xf5\x14\x26\x87\x44\x72\xb4\x54\x21\x3b\x38\x43\x01\x86\xd8\x2d\xd5\xb4\x72\xbb\xe5\xea\xa9\x4c\x60\xce\x2b\x92\x8c\xe7\xb4\xd9\x63\xe4\xef\x93\x26\xbc\xa4\xd5\x29\x5c\xd6\x4b\x2a\x16\x26\x11\x99\x5d\x47\x26\x77\x1f\x3a\x55\x67\x70\x16\xa6\xc3\x35\x97\x1b\x60\xee\xa2\x0f\xc8\xc7\x53\x12\x97\x2f\x35\x6d\xef\x3f\xe8\xd1\x16\x20\x22\xb3\x2a\xda\xab\x13\x3e\x78\xb5\x19\xc6\xa9\x73\x41\x65\x1d\x3d\x8d\xf6\x3c\x59\x29\x65\xaf\xe5\x36\xee\x36\x94\x71\xc1\x4d\x5a\x3f\xc4\x1d\xe9\x79\x4d\xa7\x1d\x11\x0c\x0e\xcc\x01\x8d\xbd\x10\x85\x4b\x2f\x3f\xb5\xff\x50\x95\x69\xa4\xc4\xfe\xa6\x49\x41\x47\xe6\x9b\xab\xd6\xc4\x45\x3f\x2a\x33\xa0\xaf\x2f\xf9\xc2\xb7\xf7\xad\xba\xec\xb9\x9c\x9d\xd7\x46\x79\xc1\x1d\x85\x43\xba\x76\xe1\xbc\x3f\x55\xed\x29\x5f\x8e\x48\x74\x57\x55\x19\x95\xb8\xf1\x6d\xad\x95\xf6\xc9\xd8\xc7\xab\xb7\xc7\x9a\x63\x9d\xc6\xb3\x8a\x6a\x05\xb9\x03\x6d\x65\x8b\x3c\xe1\x04\xde\x8c\x84\x67\x3e\x58\xc9\xfb\x76\xc5\x64\x9d\xc4\x74\x5e\x07\x72\x12\x51\xd9\x49\xcc\x05\x3e\x09\xfe\xf6\x74\xe4\x51\xf4\xa3\xac\x58\xcb\xd3\x81\x25\x1e\x1f\x32\x0d\xac\xfe\xf7\xc7\x8d\xaa\x8d\x99\x88\xb4\xcc\xb6\x6a\x74\x05\x86\x69\x9e\x47\xed\x78\x0d\x26\xb0\x22\xa0\xe4\x7d\x6a\x81\x7b\xc1\xfe\xf1\xa8\x22\x23\xfe\x5a\xa6\x74\x80\xee\x6a\x40\xff\xb4\xc1\x05\xc6\xb7\x1b\xde\x75\x3e\xf6\x7a\x01\x19\x98\xb5\xe7\x54\x75\x76\x77\xcb\xd3\x62\xb6\xc6\x8d\x5f\xf8\x25\x5e\x59\xdf\xa4\xb8\x14\x2b\xf9\x5f\xe2\x35\x4b\xd9\x53\x8d\xf0\x4d\x2c\x0c\x1c\x61\x04\x1e\x51\xf9\xfc\xc4\x7b\x65\xbf\xe9\xfb\x11\xe9\x33\xa4\xf9\x82\xe4\xf6\x5f\x61\x21\xc2\xab\x3f\xce\x8b\x17\xea\x1d\x6c\xf0\x81\x42\xce\x0c\xf1\x37\xb1\x4e\xf3\xdb\x46\x80\xf5\x43\x5d\x2f\xb8\x4f\x0f\x13\xbb\xd8\x67\x75\x6d\x42\x93\x11\x97\x14\xe3\x57\x9a\xc4\x0d\x67\xe6\x7b\x49\xc5\x75\xb1\x29\x6c\x5e\x3c\xe6\x8b\xb8\xb7\xb1\x15\x4a\xa9\x44\xf9\x56\x6d\xb3\x84\xa4\x0b\xc2\x1b\x05\x3f\xc1\xa9\xd9\x96\x4f\x50\xca\x6c\xf4\xd0\x64\xfa\xea\x97\x13\x75\x0c\x40\x2c\x22\x74\x59\xa1\x13\x7b\xdb\xfb\x71\x25\x3a\xd9\xbe\x33\x53\x5f\x2e\x1b\xac\x35\x54\xac\xfb\xb6\xf7\xdc\xfe\xaf\xde\xae\x23\x74\x95\xa1\x72\x66\x22\xe6\x8a\xa2\x1e\xf5\x3e\xb6\x48\x3e\xf1\x5a\xd2\x66\x40\xee\xad\x4e\x93\x1a\x50\x7b\xf1\x41\x9e\x0e\xaa\x9b\x6b\xe9\x28\x2b\x57\x3c\xe5\x02\x78\x07\x91\x0a\x4e\x66\x5a\xde\xa4\xf9\x92\xaa\x75\x15\x51\x11\x5b\xee\xc3\x4b\x83\x5b\xa9\x4c\x6f\x68\x82\xfa\x51\x85\xcf\x21\x7b\xff\x5d\xbe\x16\x78\x5f\x15\xef\xb8\xa2\x28\xbd\x06\x0c\x3b\xe9\x36\x78\x6e\x22\x36\x08\xe0\xb7\xb6\x82\xe7\x94\x5e\x41\x52\xd8\x24\xb4\xc4\xac\x17\x5d\x68\x08\x70\x08\x7f\xb4\xfc\x2d\x3e\xc6\x10\x17\xb6\xb0\xea\xa5\x9c\x55\x8d\xa6\x53\x0e\x74\xb0\x6c\xd7\xf6\xf8\x79\x77\x01\x91\x9d\xb3\xca\xf2\xfe\x79\x97\x7c\xf1\xfe\xda\xbf\xdf\xaa\xc8\x22\x37\xbc\xd6\x1b\xc6\x99\xac\x35\xe5\x95\x30\x56\x91\xdf\xe8\xdc\xc4\xab\xa5\xfd\x6c\x8a\x41\x73\x64\x7e\xa1\x69\xbb\x5d\x4b\xe6\x6b\xcc\xb1\x65\x8f\x8e\x8a\x5f\x87\x53\xb8\x35\x49\x54\x18\x56\x35\xc2\xda\x0e\x37\x03\x3e\x9e\xd4\x60\x98\xda\x59\xba\x2c\x7d\x05\xad\x80\xc8\xc7\x15\x06\x40\x7f\xd4\x99\xf3\xa5\x2a\x16\xf1\xe2\xf8\x46\x61\x11\x2f\x2a\xe6\xe3\x5d\x7a\x15\xfc\x01\x27\xc5\x0b\x3d\x7f\x61\xc5\x33\x2a\x4f\xe9\x4c\x9c\x52\xc8\x29\x3b\xe8\x13\x75\xc2\x75\x7d\x2e\x04\x9e\xae\xa0\xeb\x4b\x1d\x6b\x8a\xfe\x2e\xba\x26\x3c\xd0\x1f\x8e\x7d\x80\xb1\x03\x86\xae\xd2\x54\xf1\xb4\x32\xae\xd8\xbb\x13\xbd\xb5\x7a\x74\x81\xc9\x7a\x36\x29\x22\x11\x53\x96\x0d\x5d\x99\x2c\x6f\x56\xbd\x50\xa3\x63\x33\x7e\x42\xde\xa1\x78\x4d\xc4\x9d\x3d\x13\xed\x5c\x1d\x9b\xba\x18\xb1\x3a\x9f\x84\x63\x4a\xb3\xe7\xb2\xba\xdd\xae\xc9\x06\x39\x25\xb3\x22\x6c\x46\x63\x0d\xbb\xea\x3d\xfa\x45\xc0\x29\xd6\x95\xce\x6d\x98\x0e\x86\xb6\x20\xad\x67\xd4\x0c\xb9\x02\x8e\xf8\x18\x70\xc6\xf7\xa9\x94\xed\xb4\xda\x0f\xce\xf3\xa2\x79\x53\x2d\xd5\x65\xb2\xb4\x8f\xef\xe2\xba\x32\x4b\xda\x33\xd9\xbe\x12\xfe\x7c\xd3\xc4\x6d\x1b\x31\x2c\x0b\x55\xa2\x0d\xa5\x40\xf1\x31\x0d\x10\x91\x1f\xf7\x19\x68\x1b\xac\xc2\x19\xa5\xfb\x43\xaa\x81\xce\x14\x85\x76\x71\xe4\x71\xf7\x74\xff\x74\x60\x63\xb6\x5b\xc6\xa7\xa0\x4a\xcd\xc7\x35\x18\xdc\x32\xae\x32\xa1\xe0\x86\x50\xba\xba\xaf\xca\x58\xf7\xd5\x30\xe8\xa5\x59\xbb\xbc\xac\x15\x20\x8b\x01\xcd\x22\x5b\xcd\x57\x18\xa9\x7a\x8e\x7c\x63\x19\x70\x86\xb5\x11\x20\xaf\x4b\x81\x52\x2f\xfe\x65\xdf\x59\x8c\xf2\x22\xb3\x39\xc7\x74\xa8\x5f\xff\xca\xd8\x13\x1c\x7e\x45\x9b\xcf\x98\x2c\x5b\xab\x88\x3c\xdc\x0c\x14\x53\xf6\xa6\xa3\xb2\xaf\x46\x71\xc7\x66\x09\x19\x3c\x39\x67\xa4\x5b\x2a\x7a\x9b\x46\x8c\x92\xc3\x43\xd8\x97\x29\x29\x50\x6b\xbf\x78\x9c\x9d\x2a\xa5\x95\x7b\x5c\x5f\x84\x9c\x45\x4c\xbe\xa1\x64\x82\xa7\xad\x01\x0f\x41\x59\x3d\x0f\x53\x76\xb8\x14\x8b\xf9\x72\x0c\x38\x1b\x84\x72\xa0\x20\x04\xba\xa5\x2a\x5f\xda\x45\xa6\xe1\x61\x5d\x0c\x10\x15\x4b\x19\x2d\x10\x1c\x39\x64\x88\x88\x9f\xd3\x9f\x8a\xfa\xb9\x34\x56\x09\xc4\xb9\x77\x5b\x6b\x51\x5a\x80\x3b\x27\x6e\xf4\xfc\x37\x7f\x73\xa2\x1c\xf6\x36\x68\x67\xd8\xfa\x02\x1a\xba\x58\xee\x7f\x9b\xc6\x24\x2e\xe5\x0e\x2a\x10\xb4\x8a\xfe\xe1\xdf\x68\x29\xde\xfa\xd6\xd8\x63\x3e\x1e\x54\x6d\x34\x9e\x74\x2c\x95\xd4\x69\xd6\xe3\xab\x4f\x69\xd9\xd6\x53\x75\xc1\x55\xd8\xb7\x03\x42\x31\x68\xbd\x1f\x87\x23\xf2\xe2\xce\x3d\x9b\xd8\xcc\xc4\x8f\xa9\x1d\xfd\x9c\x52\x85\xdf\x8d\xbd\x0c\xcb\xc8\x16\xf6\x2a\x84\xff\x7b\xa8\x66\xe0\x6c\x39\x9d\x31\xc9\x71\xe5\x73\x75\x1f\x5b\xa4\x18\x7e\xd6\xd4\xa1\xe2\xa8\x88\x7a\xd0\x2e\x54\x22\x6e\x68\x54\x88\xa9\xfa\xf3\xae\x7c\xd8\x8e\xa3\xd0\xf8\x14\x75\xeb\x34\x80\xfe\xa7\x6b\x5d\x30\x06\x26\x4a\x0a\x13\x25\x33\xf4\x66\x98\x82\xa9\x4a\x6f\x02\x4c\xbe\xad\x6a\xb9\x03\x93\xe7\x2f\x53\x98\x82\xe5\xe8\xcc\x58\x79\xdd\x5e\x56\x0d\xfa\x5b\x4a\x5f\xe7\x31\x6c\x26\x6c\xd5\x81\x05\x5a\x7c\x3b\x6a\x16\x98\x22\xed\xd9\x82\xfc\x56\xb4\xbc\x94\xf3\xd8\x22\x49\x5a\x51\x8e\x33\xf9\x17\x28\xee\xa6\x91\xf8\xde\x73\x58\xf1\x30\x14\xff\x4f\xea\x65\x63\x04\x7c\x4a\x9c\x57\x54\x12\xaf\xe1\x46\x2b\x12\x6f\x0e\xc6\x21\x4a\x1c\x3f\xff\xec\x84\x82\x3d\xbc\x99\x27\x5b\xaa\xd6\xf2\x90\x03\x30\xe7\x9f\xe1\x15\x2b\x37\xf0\x34\xf0\x21\xf4\x78\xf0\x3c\x5f\x68\x29\x9b\x54\xf4\x4e\x30\x18\x9e\x9e\x28\x8f\xa3\xbb\x34\x4a\x50\x71\x3a\x8d\x01\xcc\xa6\xa5\x14\x7a\xb9\x1e\xd5\xbe\x7d\x3c\xc4\xae\x50\xfa\x23\x36\xd9\x0d\xc7\xb1\xda\x39\x95\xdb\x95\x8b\x8f\x35\x59\x1c\xd9\x8c\xc4\x2d\x9d\x0a\x64\x79\xf1\x18\xd5\xe8\x43\x21\x42\x3f\x83\x38\x0e\xf3\xec\xf6\xd4\xb6\xfb\xf3\x65\xf0\x10\x57\x44\x42\xd8\xa5\x5b\xfc\xe8\xf4\x88\x79\xbd\x63\x66\x14\x0e\x03\x48\x10\x95\x8d\x79\xd3\x95\xed\xab\xec\xe1\xaf\x35\x87\xf1\x28\xe9\x01\xf1\x8f\xe0\x00\x88\x13\x3e\x56\x43\xa1\x1b\x41\xe0\x4c\x1c\x1a\x55\x7d\x9f\x63\x16\xf7\x79\xe7\x72\x7a\x3a\x50\x72\x8a\x7f\x54\x6b\x58\x0b\x77\x41\x49\x55\xb1\x83\x7f\xa8\x62\x92\x0f\x7d\xbd\xa1\x9d\x99\x9c\x10\x95\x2a\x68\x3e\xa9\xb8\x85\x27\x2b\x89\xd3\xaa\x19\xce\x2a\x07\x9b\x8b\xca\xd6\xfa\x33\x5d\xe6\x05\xcf\x93\xff\x68\xaa\x8c\xb3\x6f\x5f\xd3\x0e\x86\x71\xba\x56\x51\x23\x07\x26\x4c\x56\x49\x45\xc4\xed\xac\x44\xb9\xcd\xf0\x36\xd0\x2a\xfa\x53\xfa\x7a\x41\x43\x97\xd7\x80\xf2\xc0\x95\xba\xf6\xcb\x20\xea\xac\xda\xbc\x98\xa1\x2a\x2f\xbe\x1e\x88\x58\xf6\x3a\xd4\x9e\x69\x3f\xa9\xd3\x6c\x34\x9d\xbe\x05\x2f\x74\x71\xd1\x1b\x4e\xba\x48\xf8\x2f\xaa\xa4\xe1\x2c\x4c\x13\xde\xbf\xc1\x98\xbb\x8e\x1f\xe0\x13\x85\x0e\xe8\x99\x38\x96\x15\x12\x75\x0f\x24\xca\x7c\xac\xf0\x6b\xce\xe9\x3b\x27\x4a\xa3\x73\xa2\x73\x80\x9a\x1b\x04\x5c\x11\x00\x02\x2d\x2e\xcc\x60\xa2\x6d\x0e\xb5\x65\xf8\x56\x61\x9e\xff\x4e\xa0\xaa\x2a\xb7\x14\x70\x20\x86\x12\x53\xf9\x0d\x2e\x3b\xf2\xda\x43\x17\x94\xec\x7d\x9a\x0d\xfb\x06\xca\x9b\xf5\x9c\x26\xe7\xd5\x6b\x06\x96\x38\x4d\xc2\x3d\xdb\x40\x98\x84\x28\xf3\x7d\x65\x0f\xf9\x43\x5c\x95\x70\x7c\xd5\xda\xce\x14\x32\x84\x59\xb7\xc7\xba\x65\x81\x82\x3b\x7f\x41\x45\xd6\xb1\x1c\x4f\xfc\x8b\x5c\xf6\xc0\x2b\xbf\x39\x95\xca\xef\x5f\x6c\x0e\xac\x49\x2a\xbb\x31\xe7\x75\x52\xae\xdb\xbe\xcd\x1d\xfe\x1a\x02\x6d\xb6\x8a\x2f\x2f\x08\x4b\xc5\x4d\x15\xf8\xde\x54\x48\x9d\x3c\xea\x25\x60\xf8\x2f\x79\x4f\xcb\x83\xd2\x78\x45\xba\x22\x96\x9b\x0d\xa7\xf1\x33\x2d\x39\x76\x64\xfe\x15\x92\x32\x26\x38\x30\x46\x4f\x9d\x52\x99\x53\x02\x4f\x47\x45\x7f\x37\x81\xf2\xc7\xdb\xe0\xf0\x4e\xed\x71\xaf\xea\xf2\x3d\x3d\x51\x28\x54\x5c\x15\xa2\x8b\xc7\x5b\xca\x6c\xe4\x47\x2e\xcd\x4b\x57\x6c\x56\x46\x88\x04\x36\x41\x25\x6a\x5d\x73\x39\x3f\xa0\xaf\xc0\xcd\xbc\xa9\xb8\xfd\x6f\x04\x4a\x9b\xe6\xd2\x58\x57\x85\x7a\x69\x39\x2d\xca\x65\x06\x8b\xdc\x49\x2c\xec\x7c\xe2\x1b\x64\x79\x3e\x1a\xd8\xce\x9c\x02\xe9\x43\x73\x02\xb8\x8c\x6f\x07\xaa\x0b\x74\x2d\xd0\x2b\x0d\x02\x05\x51\x1d\x55\x26\x86\x96\x7b\x62\xd1\x8a\x9d\x53\xe8\x5e\x9a\x38\x68\x3a\x7d\x9f\x0a\x76\x7c\x8c\x11\x82\xd8\xe1\xbd\xb1\x4f\xc8\x6f\xb9\xa7\x63\x12\x13\xaf\xe5\x51\x3e\xa7\xf1\x9d\x2a\xca\x78\x8a\xf6\x15\x27\x96\x5f\x3e\x60\x71\x89\xa3\xef\x96\x4f\x6c\xdf\xcc\x0e\x1c\x68\x0e\x46\x09\xab\xb1\xa2\xd9\x84\xea\x90\xa0\xeb\x1b\xce\xd8\xe7\x91\x36\x76\x88\xe3\x9e\xed\x94\xb1\xf5\x2f\xfc\x92\x00\xc7\x69\x85\x10\x10\xb9\xef\x25\x1d\xf9\xc7\xbf\xa4\xb4\x51\xde\xd5\xda\x28\xef\xd6\xf8\xcd\x2e\x50\x9a\x10\xa7\x62\xd4\xe5\x00\xb0\x4e\x1d\x7c\xbd\xb6\x9c\x8f\x59\x81\xcf\xf0\x0b\xc1\x7b\x93\xb7\x53\x73\xe7\x71\xd4\xc5\x62\x0c\x46\xe9\x55\x2d\xb0\x7e\x55\x41\x0b\x5f\xb7\x59\x3a\xe3\x31\x26\xb8\x18\xc4\x9f\x3f\x51\x2e\xc1\xba\x10\x11\x93\x7f\x1b\x7d\x88\xa9\xc0\x88\xfd\xf1\xa9\xbb\xac\x54\xc1\xac\x6b\xf5\x60\xbb\x51\x1c\x0d\xa3\x24\x7d\xcc\x83\xcb\xcf\x2b\xa8\xd7\xdb\x48\x24\x4e\x6b\x09\x05\xce\xe5\x51\x83\x81\xff\xbf\x6b\x03\x1d\x38\x70\x70\x0b\x56\xfa\x08\xdf\xce\x29\xc6\x41\x3f\x8a\x0b\xb7\xc5\x00\xe9\x73\x5e\xb3\xed\xce\x2b\x5d\xeb\xcc\x16\xf0\x66\x43\x6d\x1c\x0b\x2b\x46\x2a\xfe\xf8\xde\x58\xd5\x9c\x77\xb4\x44\x21\x96\x14\x61\x56\xa2\xdc\x2d\x6d\x0e\x50\xe9\x1a\x02\x67\xea\xa2\xe0\x7e\x9a\x0f\x23\xea\xb1\x39\x28\xc7\x27\xf4\xa4\x85\x0a\xee\x73\xff\x3c\x4a\xd6\x4c\xd6\x99\x51\x15\x8a\x6b\x63\x9f\xbd\x6e\xaa\xa7\xf7\x67\x53\xc5\xf8\x23\xf3\xcd\xcc\x86\x69\x86\xbc\x94\xcb\xd4\xf4\xbc\xa4\x64\x3d\x15\x4b\x1e\x5c\x6a\xf6\x47\x49\x27\xb3\x1d\x32\x57\x77\xad\x7d\x5f\x56\x3e\xa3\x07\xde\x8d\x0a\x28\x6d\x14\x77\x67\x68\x41\xd2\xfb\x34\x76\x52\x46\x71\xa0\x1a\x70\xbb\x82\x87\x35\x03\xfb\xbc\x87\xe7\x3d\x0c\x94\xa1\xd7\xee\x89\x42\x25\xdc\xa3\xde\x35\x0a\xd5\xe7\x10\xf6\x09\x1a\x87\x7e\x94\xe5\xc3\xb5\x39\x34\x9b\x43\xe2\x23\xe7\xb0\x3e\xe2\x33\xb7\xb4\x37\xde\x5b\xe8\x6d\xa3\x4f\xfd\x00\xd5\x7e\x0c\xb2\x87\x94\x5c\x48\x50\x52\x3e\x39\x2e\x61\x68\x28\xdd\x69\x5a\xf8\x50\xcd\xfe\x9f\x69\xb3\xc2\x7b\xbc\xa2\xb6\x05\x74\x33\xf1\xd8\x1f\xaa\xd2\x55\x3f\x1d\x65\xf9\xac\x47\x98\xfe\x06\x8a\xf6\xa2\x2b\x42\x57\xcc\xff\x32\xf6\x25\xe0\x8b\xce\x3c\x2e\x5c\x35\x3c\xc6\xf9\xed\x8c\x2b\xaf\x6a\x9b\x24\xf1\x81\x03\x87\x9a\xfb\xf6\xed\xf5\x20\x47\x26\x7f\xa3\x7a\xfa\x63\x45\xfe\x66\xc1\x07\xc7\xb2\xf0\x29\xce\x65\x6d\x07\xf0\x99\xee\x09\x20\x04\x72\xca\xaa\x8b\xa2\x35\xfc\xe3\x71\x95\x93\x52\xbe\x2c\xd9\xda\x75\xd8\x1c\x47\x05\x56\x38\x11\x94\xf5\x2c\xce\x69\x4d\x5d\xcf\x72\x64\xb2\x8f\x93\xac\x2c\xaf\x1b\x49\x2b\xa7\xe0\xd8\x43\xe6\x5a\xce\xd3\xc9\x42\xa7\xaa\x7c\x0c\x52\xba\x2f\xaf\x56\x74\x76\x7c\xf0\xb6\x9a\x66\xcb\xb6\xb3\xdb\xc3\xd3\x4e\x53\x18\x86\x3c\x04\x9a\xfb\xd8\x55\xe0\xef\x80\xe1\x70\x47\xa5\x10\xd7\xc7\x15\xa8\x62\xc3\x99\x41\x5d\x0d\x5e\xf4\x20\xaa\xcc\x24\xb9\x81\x42\xee\x9c\xd2\x72\xc1\x56\x85\x2f\x65\x6b\x09\xe7\xc6\xf4\xb9\xd9\xd9\x0b\x9e\x06\x16\x7d\x63\x14\x75\x8c\xb3\x48\x46\x0c\xf1\x3e\x0d\x56\x3e\x9e\xda\x6b\x0e\x1c\x38\xd8\x8c\xa3\x65\xa9\x2b\x61\x16\x81\xd4\xc5\xc7\x75\x82\xe3\xb6\x33\x0a\xbd\x16\xbd\x8c\x3d\x0f\x7d\xf4\xe2\x80\x2b\x26\x34\xce\x16\xcb\x79\xb4\x7b\x39\xc5\x8b\x2e\x6c\xb1\x71\x64\x92\x22\x6a\xa8\x46\xc1\xd6\x15\xcf\x1f\x22\xfc\x0e\x57\xe8\x50\xaa\xba\xa4\xa0\xcb\xd3\xa2\x4c\xfb\xf6\x35\xdb\x69\xc7\xf6\x4c\x3e\x53\xbe\x41\xe5\xbd\xb1\xa4\x21\xf5\x87\x9c\x17\xd6\xb3\x8e\x7f\x5b\xc6\xaf\xb1\x2d\x74\xdb\xf6\x9a\x42\xc3\x5f\x73\xe5\x24\x38\xfb\xe7\xd8\x44\x58\x8e\x07\xab\x99\x10\xb7\xe8\x1d\x0a\x3e\x68\xba\x26\xb8\xd4\x5c\xed\x47\xf9\xd0\x7a\xe8\xb0\x83\x41\x39\x1e\xe7\x7a\x9d\x62\x9e\x09\xc3\x74\x44\xd2\x75\x68\x52\xa3\x4a\x7d\x42\x71\x09\xb0\x69\x48\x88\x41\x6b\x84\x10\xfc\xfc\x3e\xb8\x9c\xad\x8d\xc2\xfe\x72\xba\x42\xfb\x85\xd2\xa9\x14\x22\xf8\x47\x2a\xb1\x21\x31\xd1\xce\xe3\x1e\x28\x70\x61\xec\x75\xfd\x78\x5d\xd1\x31\xb4\x76\x82\x67\xb5\x19\x2c\x6f\x58\x89\x4e\xa3\x5e\xc1\x27\x41\x63\xe1\xf0\xd6\x79\xad\x2b\x71\x67\xea\x95\x92\x10\x4b\x96\xa6\x05\x67\xe5\x8e\xe6\xe0\x52\xad\x75\xc7\x18\xc9\x0b\x13\x8b\xc2\x9c\x53\x1c\x57\xf2\xe3\x35\x4e\xcb\x07\xc9\xdb\x8c\x57\x24\x2c\xee\x68\xb7\xf0\xf1\x58\x0b\xfe\xf7\xf7\x78\x30\xe0\xa7\x4a\xd9\xfd\xd9\x96\xea\x26\xdd\x56\x12\xdf\x3f\xa1\x87\x85\x44\xe0\x09\x2d\xcd\xf4\xd4\x44\x05\x29\x1f\xd1\x96\x23\xbd\x8b\x6d\x4e\x13\x4b\x5c\x38\xfd\xa8\xc6\xfa\xba\x39\x48\x93\x74\x98\xc6\x0e\xa3\x87\x5d\xf8\x06\xe2\x7b\x3e\xf1\x7a\x05\xe5\x26\xd4\x50\xfc\xf0\x9b\xf4\x10\x85\xb9\xa0\x54\x4d\xe3\x51\x41\x02\x4b\x07\x97\x1c\xda\xb1\xbc\x0f\xe1\x35\xb8\x92\xb3\x29\x48\xc1\x69\x46\xd5\x7a\x2f\xaa\x84\xef\x2e\x76\x17\x09\x91\x2a\x0a\x68\x2b\x2f\xef\xf5\xea\x35\x9a\x8d\x5c\x29\x6f\x33\x06\x9c\xf7\x6f\x3c\x1a\xa4\x04\x30\x23\x05\xc3\xf8\xd3\xb1\xf7\x56\x3e\x3e\xae\x0c\x49\x45\xeb\xf9\x3d\x8c\x33\x31\xed\xd7\x5d\x3a\xed\xff\x10\x85\xa6\x97\xce\x29\x94\xcc\x85\xb1\x36\x30\xba\x4a\xbc\xdd\xad\x2b\xf4\xe8\x38\xb7\xd2\xe8\x8e\x4d\xb7\xa4\x80\xaa\x69\x88\x7e\xe9\x15\x9d\x1e\xd0\x2a\x2b\xd2\x8d\xf4\x33\xa2\xc2\x4d\xd7\x2a\xff\xa2\xb5\x5b\x3c\x80\x89\x80\xcc\xf9\xaa\x35\x19\xba\x4b\xd8\xae\xfe\x95\x66\x13\xd1\x73\x41\x77\x69\x5a\x80\xa5\x4c\x97\xff\xf6\x57\xfe\xc9\xd2\x57\x7e\x61\x71\x4f\x19\xf2\x48\x35\x8c\x2e\x50\x44\x15\xb5\xc7\xfb\x79\x1a\x81\x98\x0b\x7f\xa8\xb0\xf5\xdf\xa5\x9f\x41\x94\xf4\x1d\x2d\x8f\x7a\x15\x41\x96\xc8\x25\x2a\x99\x81\x7f\x86\x4d\x12\xe0\x86\x87\xc1\x5e\xdf\xf8\x5a\xfb\x1b\x14\x8b\x81\x03\xf0\x36\x06\x2f\xae\x6c\x8f\x16\x0a\x40\x3d\xd7\x95\xb7\x97\x16\x0e\xf3\x06\x77\x1d\xcc\x5b\x36\xd3\x27\xa0\xbf\x00\x27\xe9\x62\x9c\xe7\xba\xeb\x20\xc3\xfe\x5e\x5b\x34\xa0\xb2\x7c\x43\xc3\x2c\x76\xb5\x68\x28\xa1\x29\x76\x09\x23\x51\xc2\x3c\xc5\x0f\x7f\x66\xa2\x32\xae\xfb\x81\x2a\xbb\x7e\x4a\x83\xcc\x41\xff\xcb\x41\xc2\x96\xe1\xe3\xc6\x97\xbf\xec\xc2\x67\x62\x29\x88\x2a\xa1\xcf\x7c\xce\x51\xc9\x06\x4f\xf5\xcf\xa9\x64\x8c\xe5\xee\x9d\x8a\x00\x0c\xe3\x3e\x31\x29\x1e\xf3\x39\x4b\x1a\x46\x69\x9c\xf6\xa2\xbc\x98\xf1\xd5\xd2\x9f\x6a\x36\x22\x26\x9d\x50\xc8\xdc\x22\x11\xf5\xfa\xc5\xac\x1f\x43\xa8\x86\x60\x67\x83\x38\x29\xbe\xea\x3d\x0a\x99\x05\xdd\x30\x5d\x96\x59\x6a\x46\x59\x16\x15\x3e\x5e\xc0\xf4\x80\xa6\x05\x1f\xb7\xa6\x99\x02\x8b\xcd\xa8\xc3\xa2\xc2\x62\xcb\x58\xfe\xa6\xc8\x7c\xd5\xec\xf7\xdd\xcc\xda\xd7\xc5\xb1\x45\xe0\xfd\x1a\xd0\x5f\xd3\xf8\x6b\xc7\x5e\x5a\x59\xa0\x47\xf4\x7a\xf8\x64\xaa\x24\x76\x70\xbe\x49\xa2\x73\x14\x4c\xe2\xc1\x7f\x46\x33\x80\x8f\xc7\x2f\x46\x2a\xc8\x2b\x27\x29\x07\x64\x8e\x41\xb4\x63\xa2\x1a\x97\x3b\xa6\xaa\xfb\x8b\x8b\xcd\x7c\x2d\xe9\x64\xe9\x00\xc9\xbc\x78\x9f\x6b\x64\xec\x17\xbc\xcf\x94\x49\x46\x5d\x43\x10\xbd\x0c\x55\x50\xf6\x0f\xa3\xb8\x55\x66\x28\x0d\x65\x94\x65\x39\xb5\x43\x8a\x01\x94\x3f\x06\xfc\x9b\xd4\x62\xe1\x3f\xc2\x9c\xe2\x8f\xbb\x78\xc7\x84\xe1\x28\xb7\x1d\x40\x4f\xc4\x2f\x9f\x1e\x1d\xe6\xcf\x7d\x15\xbf\xee\x22\x5a\x75\x85\xcd\x8e\xac\x6a\x47\x0b\x83\x16\x71\xf4\x67\x53\xad\xd5\x72\x23\x1e\x9a\xa8\xf2\x4e\xd6\xf5\x3b\x59\x57\x7e\x60\x26\x49\xd2\x51\x12\xda\x81\x4d\x8a\x39\x5f\xe3\x3c\xaf\x0d\x5e\xd6\x89\xee\x28\xc6\x89\x0d\x27\x56\xf5\x2f\x30\xdd\xf8\x1f\x02\xff\x4c\xed\xb1\x22\x33\x69\xd6\x89\x12\x93\xad\xa1\xae\xef\xd0\x73\x07\x0e\x70\x78\xf2\x03\x9a\xd1\xce\x59\xf7\xe0\xbc\xfc\x7f\x27\xd1\x35\x1c\xe5\x7d\x12\x74\x75\xc1\x8f\xb7\x52\x67\x1d\x5e\xa7\x87\xe9\x92\x91\xdb\x2a\x25\x7b\x5f\x45\x1c\x69\x6e\x88\xa2\x88\x30\xe1\x0f\x70\x7f\x58\x19\xef\x06\x7a\x87\xf8\x6c\xac\x02\xd0\xcb\x95\x6c\xbd\x6d\xe0\x43\x81\x5f\xfa\x7d\x95\x02\xfd\xbe\x52\x22\xea\xa4\x83\x28\x31\x0c\x09\x40\x56\x7e\x9a\xee\x8f\x8f\x55\x59\xbf\x18\xd9\xbc\x63\xd6\xf6\xf8\x7d\x1e\x6f\x1d\xa1\x10\xaf\xa0\x98\xe1\xdf\x0d\x94\xda\x34\xe4\xea\x50\x9a\xbe\xaa\x94\x61\x1e\x57\x40\x95\x2f\x72\x24\x85\xc8\x96\x7d\x12\x45\x23\xa8\x1c\xdb\xd2\x6a\x79\xce\x75\xbd\xd3\xbc\x88\x8a\xd1\xb6\xe6\x31\x2b\x66\xf1\x49\xa5\x0e\x61\x57\x3b\x9a\x2f\x89\x55\x50\xba\x87\xb5\x9c\xec\x72\x3a\xbb\x50\x9d\x2b\x66\xaa\x7b\xfb\x93\xc0\xeb\xd2\x87\x69\xd2\x19\x09\x9e\xcd\xa9\xce\x79\xb3\xb8\xcd\x3a\x3d\x23\x93\x1c\x8b\xac\xe7\x59\x38\x52\xdb\xe2\xa2\x6b\x62\x6c\xc7\x0a\x97\xeb\x6b\x92\x92\x85\x97\x34\x48\xca\x87\x2b\x3b\x8a\x2f\x2c\xf5\xec\x20\x6f\xa7\xcb\xb3\xaa\x0c\xf2\x46\x45\xe1\x86\x06\x37\x32\xdd\x6b\x4a\xd2\x75\xbd\x32\x86\xb2\xa8\x40\x0e\x26\x22\x80\xb4\xc9\xf1\x49\x9d\x7e\x28\x25\x53\x8c\x31\x71\x54\xbb\x0b\xca\x25\xea\x42\x25\x1a\x4c\xa2\x63\xb3\xfe\xef\xae\x06\x6a\x0c\x5c\xd5\xbc\x5c\xbd\x8a\x6d\x4c\x35\xfb\xc8\x3d\x83\xe4\x2e\x65\x6d\x47\xee\x73\x5a\x89\x5c\x9c\xae\x51\xb5\x5a\x6c\x26\x69\x56\xf4\x2b\x56\xf0\x4a\x47\x6f\x5a\x43\xfc\xe0\xbc\x40\x93\xf9\x77\x64\x9c\xf9\x12\xf1\x34\xfd\xeb\xef\x35\xed\xb1\xd0\x0e\x0b\x45\xfc\xbc\xa4\x94\x5d\x2e\x05\x3e\xfe\xee\x44\xb9\x35\x39\x89\xef\x79\x93\x5e\x0d\x55\xe5\x54\x02\x28\xbb\x9d\x13\x0d\x65\xc3\x95\x73\xf4\x5c\x07\x8b\xcc\xac\xe9\x76\xa3\x6c\xd0\xf0\xe5\x21\xee\x1a\x89\x33\xda\xe7\x39\x21\xe6\x90\x32\x8f\x55\xcd\x60\x53\x97\xe1\xa6\x07\xb7\x73\x24\x8d\xc2\x65\x94\x0c\xd1\x1a\x27\x59\x53\xae\x1a\xbc\xad\x57\xb5\x69\xed\xce\xf2\xf5\xc4\x51\x51\xc4\x56\x69\x72\xff\x6b\x84\x92\x8e\x81\x77\x50\x36\xe5\x2b\xc1\x13\xba\x75\x32\x5b\x2e\x19\x82\x20\xc1\x03\x14\x14\x1d\x3d\x40\x07\xaf\x73\x9b\xd6\xa9\xe0\x59\xa5\x9e\x9f\x0d\x4c\x1c\xaf\x35\x68\xb4\x23\xd6\x47\x0f\x88\x8f\x6b\xf8\x86\x87\x50\x2d\x0e\x6d\x87\xe9\x18\x4a\x90\x66\xc9\x35\x19\xfc\x0a\xff\x9f\xfc\xa3\x9f\x53\xd8\xc5\x4d\x25\x91\xb1\x59\x53\xe7\x7d\xb5\x09\x5f\x21\xba\x7b\xe9\xf8\xf9\x8e\xaf\x77\x0b\x6f\x9b\x70\xb9\x93\xa5\xc3\x86\x8f\x51\xa0\xf3\xca\xc7\x0a\x63\x15\xc6\x23\x96\x10\x42\x65\x16\x99\x11\x1f\xd7\x49\xa9\xae\x44\xe4\x1d\xc1\x69\xb6\x64\xad\x1e\x72\xb6\xee\xfa\xe9\x71\x9a\x0e\x49\xcf\xb9\xa1\x48\x3d\x1b\x5a\xf8\x6d\x43\x95\x25\x5c\xa3\x7e\x8f\x1a\xc2\x3f\x18\xfb\x4d\xe8\x2f\x94\xc2\xd3\x5f\x28\x5b\xcd\x4b\x5a\xce\xf8\x5a\xa0\x3a\xef\x5b\x78\xec\x88\xa7\x8f\xe3\x87\x5d\x01\xb5\x5c\xcd\xc1\xa8\x81\x7d\x02\x8b\xdb\x4e\xa1\xf3\x17\x17\x97\xca\xf5\x6c\x30\x4a\x04\x99\xc3\x94\x1e\xa0\xc3\x6f\x6b\x07\xd3\xdb\x18\xcc\x78\xca\xfd\xf1\x13\x9e\x18\x30\x4a\x58\xff\x1f\xe1\x33\xe7\x16\x48\xed\xff\x6f\xba\x19\x71\x35\xa0\x9b\x41\x8c\xc0\xca\x0e\x7c\x82\x04\xd1\x41\x51\xbd\x84\xef\xae\x89\x72\xf6\xe8\x9b\x28\x1b\x98\x84\x45\x78\x91\x3e\xc0\xc9\x16\x69\xf0\x1d\xcc\x1d\x5c\xfc\x19\x7a\xbc\x48\xf5\xde\x43\x31\x07\x59\x18\xa0\x8f\x80\xeb\x9c\x19\xab\xd0\xef\x64\xa0\x89\x05\xb8\x77\x89\x93\x3c\x75\xf6\x93\x17\xa6\x62\xfb\xc3\x5f\x6b\x46\x1d\xd3\x4f\x69\xdd\x91\x92\x80\x22\x19\x9c\x71\x62\x60\xe9\x8a\xcd\xf2\xbe\xe9\xa4\xab\x6e\xd7\x65\x43\x04\x15\x0e\x4f\x2b\x79\xec\x5f\x6c\x8e\xba\x29\x9b\xd4\xb2\x92\x2c\x14\x7c\xb4\xf5\x38\xc2\x51\x16\xfd\x06\x84\x6b\x1a\x1d\xf3\xf5\x25\x82\x5c\x37\x54\x9b\x9e\x75\xfb\xf8\x44\x91\x65\x32\xcb\xa0\xad\x64\x0e\x8f\x9c\x7b\xc2\xba\x5e\xfb\x23\x7a\xc1\x2c\xfa\x1b\x78\x52\xda\x45\x2a\x5c\x48\x77\xf0\xf3\xd6\xdd\x61\x96\xb6\x4d\x9b\xd1\xd0\xa2\xf2\xa0\xf0\xe4\xb5\x1b\x54\x94\xe4\x43\x2f\x2d\x89\x5c\x0e\x66\xac\x7c\x5c\xe7\x0e\xd9\x5f\x1b\xa6\x61\x16\xe5\x6b\x68\xa5\x62\xb1\xfd\xa1\x2a\x74\xbd\xa5\x50\x0d\xff\x4f\x65\x0b\x5f\x89\xcc\x2e\x0f\xde\xb9\x48\x10\x0c\x4c\xe1\x4d\xca\x14\xa5\xd9\xdc\x70\x9a\xcb\x67\x48\x04\x80\xff\x66\xac\x08\x76\x27\x5d\xc5\x6a\x90\xf6\x46\x31\x96\x5f\xe9\x32\x7a\xc8\xf4\x86\x2b\x13\xb7\x23\xc2\x1d\x78\x55\xad\x39\xe8\x17\x8b\x45\xab\xb2\xaa\xbf\x3b\x55\x8f\x5d\x38\xdc\x1c\x25\x9d\x28\x67\x2a\x95\x22\x3c\x04\x4a\xa3\x4f\x7b\x90\x93\xc9\x5f\x66\x67\x69\xd3\x14\x26\xa7\xaa\x4d\x9e\xc5\x14\x11\xec\x47\xc3\xff\x95\xf2\x99\x31\x83\x61\x4c\x22\x96\x80\x97\xa0\x48\x70\x3d\xf0\x05\x83\xeb\x0e\x1b\x99\x66\x26\xe9\x59\x1e\x5d\xd8\xe6\x4f\x28\xf2\xfd\x75\x95\x3c\x9c\xd1\x52\x7e\xa0\x90\x8a\x31\xf9\xf6\xfb\x26\xfa\xd8\x36\xcc\x06\x22\x80\x6b\xca\x27\xf5\x5a\xf0\x79\xa3\xd2\x0c\x87\x26\x8e\xc5\xa5\x01\xc3\x03\x7d\x13\x01\xe9\xfb\xc1\x06\xaa\x05\xcb\x62\xd5\xb5\x16\x48\x2d\x31\xe2\x76\x84\xf4\xde\xca\xcf\x08\x94\xd8\xb3\x9a\xc3\x51\x5e\xa4\x03\x9b\x3d\x4e\x35\x1f\x17\x18\x96\x0f\x11\xab\xe9\x45\x45\x87\xbe\x4a\x5b\x06\xff\x7f\xb5\x47\xed\x80\x4c\x85\xd2\x68\x52\x2c\x87\x7d\x0b\xae\x5b\xab\xec\x10\x3e\xa9\x11\xf3\x28\x37\x86\x78\x34\x60\x79\x2c\x71\x58\x68\x28\xeb\x05\xc5\xbf\x1b\x65\x83\x34\x8a\x31\x1f\x99\x74\xad\xa9\x24\x17\x15\x48\xa8\x6b\xb2\xd0\x52\x74\xaf\x53\x27\x31\x2d\x79\x4e\x05\x8a\x19\x2c\x17\x69\x51\x85\xfe\x0a\xea\x12\x7c\x0c\xd5\x0c\x67\xb6\xf6\x45\x1a\xb2\xd8\x9d\x8e\x05\xde\xd6\xe3\x24\x39\xcd\x88\x7a\x1b\x0d\x65\xae\x93\x69\xbe\xd9\x0e\xaa\xdd\xa0\x6d\x3e\xd7\xf2\x93\x7d\x0f\x51\x3a\x10\x13\x81\xce\x85\x0f\xff\x73\x54\xdf\x44\xc9\xbe\xea\xeb\xa5\x88\xe1\xcf\x4c\xbc\x60\xf3\xd3\x4d\x22\x5e\xa1\x9a\x30\x47\xf5\x26\x94\x0c\x00\xea\x42\x8d\x19\x9a\x2d\x5b\xbb\x5a\xf4\xd6\x9d\x33\x8b\x93\x03\x7f\x84\x26\x83\xd2\x67\xa6\xde\x52\x39\x5e\x58\x73\x44\x7b\x3b\x5f\x54\x1a\x3c\xab\x66\xd9\x0e\x4c\x02\x92\x24\x57\x8a\xe9\x79\x4a\xd5\x58\xeb\xff\xa4\x04\x3b\xb2\xac\xae\xa7\xfb\x12\xce\x06\xc0\xf9\x7e\xe2\x0d\xca\x08\xa1\x7d\x45\x86\x48\xcd\xe2\x0d\xf3\x05\x99\x95\x2c\x19\x15\xf8\x0c\xe9\xd2\xf8\x85\x1a\xbe\xfb\x90\x04\xb0\x5c\x6a\xe1\x3a\x36\x0f\x15\x62\x67\xd7\x54\xe5\x89\xd4\x39\x46\x45\x1e\x75\x10\x61\xa3\x8d\x0a\x3a\x85\x68\x76\x96\x9f\x17\x3e\x51\x0d\x25\xbb\x1b\xf5\xfa\x05\x9a\x00\x4e\xfa\x69\x51\xc4\x78\xaf\x07\x0a\x20\x7a\x5c\xa1\x44\x48\x86\xd2\x66\x88\x3d\x5d\x74\xbd\x7f\xd1\x45\xd7\x35\xa9\x72\x6f\x64\xb3\xac\x8c\x3f\x67\xb4\x24\xc1\xd8\xa3\x23\xee\x2a\x41\x75\xef\x74\xd7\x89\x86\x71\x3a\x30\x45\x14\xd2\x02\x83\x31\xf8\xb3\xc0\xb3\x3b\x7e\x56\x55\x15\x1a\x0a\xe9\x80\x91\xbc\xda\x01\xe2\xb4\x9a\x7f\x99\xed\xc6\xa4\x30\x40\x55\x28\xa8\x5c\x3e\x42\x72\x2c\x8d\x4e\x5f\x5d\xd8\xd1\x52\xd4\xb8\x3f\xc4\x9a\x23\xbd\x51\x8f\x14\x18\x92\x50\xa8\xae\x49\x94\x93\x4b\x6a\x15\xce\x6b\xbd\x6f\x62\x96\x62\xf6\xd6\xe2\x68\x6f\xf3\xb1\xdb\x3d\x56\x8d\x67\x93\x63\x3c\xb0\xbe\x3e\x9f\x4c\x0d\x88\xfd\x8b\xcd\xd0\x14\xb6\x97\x66\x4c\xe6\x73\xf5\x17\xe5\x68\xe0\x75\x8b\xbb\x51\x12\x89\x13\xb6\xc8\x5d\xab\x68\x07\x0b\x08\xe6\xe8\x5c\x4b\x79\x15\xf5\xa3\x21\x5e\x3d\x8a\x77\x40\x57\xf0\xf1\x54\xea\xf3\x52\x33\x4c\x93\x22\x4b\x63\xd5\xcd\x3f\xae\x0a\x68\xc7\x6b\x9d\xcc\xf2\xc2\x14\x96\xf5\x56\x50\xee\xb8\xca\x59\x20\x16\x9e\x27\xf1\x46\xf0\x12\xde\x0a\x54\xcf\x67\xd7\xe4\xf3\x0c\xcb\x68\x5e\x02\xa7\x03\xad\x92\x75\x25\x3a\xa5\x9f\xd1\xf7\xa6\x26\xf6\x91\xf9\x25\xd7\x7c\xa1\x1f\x96\xbb\xf5\x18\x8a\x9b\x14\x2b\x39\x7b\x18\xa7\x8c\xb6\x3e\xf6\x3a\x8a\x9b\x5a\x81\xf4\x1e\x0d\x0f\xa5\x9d\xf0\x0a\x7f\xfa\x86\x12\xaf\x60\xd1\x09\xcc\xab\x7f\x33\x15\xed\x1e\xfe\x5a\x33\x24\x07\x87\x23\xc2\x09\xf8\x4d\x25\xb4\xf7\x9b\x0a\x28\x31\x4a\x62\x9b\xe7\xbb\xca\x25\xde\x49\x8f\x1c\x9c\x77\xd2\x23\x1e\xbd\x87\x77\xe3\xa0\x3a\x3e\x3d\x3b\xaf\xb3\x8f\xfb\xb5\x70\x8f\x4e\x94\x9b\x5e\x66\x59\x95\xb9\xce\xd7\xb6\xc6\x8a\xa9\x97\x8d\x06\x03\x06\xe0\x32\xbc\x52\xa5\x23\xff\xd9\x9b\x35\xbf\xd4\x2c\x32\xb3\x62\x7d\xf0\xc3\x4c\x50\x05\xb5\xba\xe4\x26\x11\x8c\xfe\x30\xc8\x5d\xcb\xd2\x81\x9e\xe1\xcf\x22\x6a\xb3\x35\xf3\xc9\xd8\x2c\xed\xc6\x69\xa1\x00\x5a\x15\x52\xf1\x09\xdd\x81\x5c\x2b\xf3\xcc\x78\xd7\xf6\xee\x28\xd6\x62\xf6\xe2\xc3\xfe\x08\x2f\x3e\xec\xaf\xdf\xaf\x34\x34\xe9\x42\x85\xc3\xa9\x64\xef\xfa\x36\xcb\x2c\xa2\x05\xa9\x4e\xfa\x06\xf5\xf4\x8a\x4b\x26\xdc\x50\xe8\x95\xa4\x17\x21\xd3\x87\xf8\x05\xe7\x97\xea\x83\xf7\x5b\x5a\x2f\x31\x4b\xa9\x46\xa6\xe9\xae\xa7\x74\xe6\x72\x6a\xec\x61\xdd\x36\x09\xd3\x51\x66\x7a\x5c\x8c\xc0\x62\x7a\x22\xf0\x0b\xeb\x89\xb1\x16\xe3\xce\x8a\x28\x8c\x86\x86\xf1\x1a\x28\x5a\x7e\xa2\x0a\x98\x9f\xb8\x77\x47\x81\x7d\xa1\x81\x98\xb7\x54\x23\xf3\x56\xe0\x09\x08\x9d\xb4\x68\x28\xf5\x12\x60\x16\xf9\x58\x5b\x1d\x16\xb8\x4a\xc7\x0d\x39\xab\xf8\x80\x67\x55\xd2\x9f\xd8\xd5\x27\xe9\x67\x01\x3d\xb9\x1d\x28\xb3\xcb\x07\x0a\x25\xf0\x29\xc5\x9c\xec\xa6\x10\x68\x9c\x17\x03\xd0\x10\x81\x3e\xa0\xeb\x41\x64\xf7\x91\xe6\xb1\xcf\x4d\x54\x5f\x81\x11\xf6\x02\x1f\xf5\x19\xf3\x35\xdd\x58\x7f\xa0\x43\xa4\x37\x9c\x4e\x60\x6e\x58\xf2\x13\x63\x87\xb5\xfc\xd0\x65\x3d\x41\xa3\x0d\xd3\x78\x47\xcb\x6f\x82\xdd\xb4\xdc\x8a\xa2\xa4\xb7\x5b\x31\xa1\x76\x22\x36\x43\xc5\xf9\xb4\x32\x08\x81\xa4\xa1\x18\xd2\x7b\x55\xc8\x4f\x95\x80\x70\x63\xa2\xa4\x43\x36\xb4\xa4\x4b\xb6\xb6\xab\x22\xe3\xe6\x08\xdc\x67\xc6\x0a\xf2\x00\x0c\x02\x96\xe1\x27\x5b\x3e\x63\xbc\x3e\x56\x9e\xd4\xbf\x55\xab\xaf\x3c\x4c\x0b\xae\x58\x95\x4f\x14\xaf\xf4\x8f\x34\x91\xf1\x8f\x6a\x02\xa0\xa5\x66\xcf\xc4\x86\x06\x04\xaa\x27\x1f\xe3\x51\xf3\x49\x05\xce\xdd\x36\x05\x96\x01\xee\x84\xd1\xa3\x91\xae\x98\xb7\x8d\xd4\x06\x5c\x8a\x5c\xdd\x50\x5a\xd1\x53\xec\xc4\x83\x4b\x5f\x6a\xf6\x47\xd0\x48\x72\x1d\x34\x3f\x33\xa7\x21\xc7\x8b\x8b\x0c\x1b\x67\x30\x93\x0c\x33\xba\x77\x89\x23\xca\xd7\x25\x54\x9f\xba\xe5\xba\x30\x51\x9c\xba\x42\x03\xc2\xa9\x6f\x69\x55\xfc\x6f\xb9\xd1\xb5\xfa\xf2\x6b\x2f\x53\x8c\xe9\x74\x91\x5c\x94\xc8\x89\x2b\x8a\x7b\x77\x82\xe7\x5c\x78\x61\xbb\xb0\x21\x47\x23\xa1\xce\xce\xb8\x86\xa4\x92\xdb\xc4\x14\x69\x26\x50\x20\xac\x08\x37\x10\xc5\xf1\x49\x6d\xa1\x59\xb2\xb9\xf2\xef\x9c\x91\x99\xcb\xe6\x36\x9d\x18\xc1\x4a\x14\x16\xd1\x60\xd6\x63\x9c\x76\x28\x45\x0b\x68\xd8\x89\xd5\x63\x39\x5c\x99\x08\x50\xb7\x33\x0c\xd2\x11\x31\xf8\xd4\xc6\xf5\x81\x22\x3c\x7c\x50\xa7\xdc\xd3\x1e\xad\x49\xb5\x03\xf3\xf7\x79\xfa\x75\xcc\x9d\x87\x58\x31\x50\x19\x7d\x6c\xf2\xa4\xc7\xd9\x1d\x8b\x10\x57\xba\x1d\x55\x41\x3a\xbd\xb8\x62\x37\x4d\x3a\x18\x0d\x80\x39\x9d\x52\xb2\x27\xef\x8f\x95\x48\xf4\x15\xc5\xe6\xe8\xa6\xd9\x80\xf1\x99\xae\xde\xed\x2d\x42\x3e\x54\xb8\xf7\x5b\xc1\xf6\xcc\xe5\xe8\xd1\xa6\x59\x9d\x51\x28\x2d\x00\x80\x51\x93\xdc\x52\x9a\x51\x3f\xad\x69\xdd\xbc\xda\x34\x71\xb4\x6c\x69\xc7\x40\xf0\x09\x25\x4b\x3e\x1e\x7b\x98\xa4\xc9\x73\x3b\x68\x93\xe9\x31\x2a\x2e\x75\x5e\xf0\x5f\x74\x7f\x1e\x25\x85\x8d\xcb\xd8\x7e\x64\x62\x56\x50\x73\xc8\xd3\x32\xa9\x15\x4c\x96\xdf\x80\x6f\x05\xca\x36\x33\x5a\x89\x42\xc4\x2f\x28\x3b\x61\xa8\xf3\x71\xe0\x73\xa0\x4e\x64\x06\x69\xd2\xc9\x77\x95\xe1\x9d\x74\xde\xbc\x31\xd1\x6c\x4b\x15\x08\xb8\x70\x8b\x07\x03\x3f\x4c\xa7\x9e\xbc\x5f\xa4\x02\xee\xd7\x74\xd6\x9b\xe1\x28\x6b\xe7\xca\x2e\x6f\x5d\x8b\x42\xac\xab\x0d\x30\xec\x84\xba\x13\x80\x9d\x44\x42\x5b\xef\x39\x31\xca\x2d\xb4\x62\xb8\x64\x42\xd3\x51\xca\x27\x35\x6c\xa2\x6e\x94\xe5\xc0\x94\xe0\x4d\xa2\x1c\x84\xf5\x79\x17\xb1\xcf\x90\x14\x31\xfb\x0c\x41\xd5\xad\xa9\xa6\xe7\xd1\xa3\xe5\xd0\x2f\xc7\xfd\xd6\x7b\x6a\x47\x01\x60\x1b\x29\xdf\xfa\x94\x36\xfc\x7e\x28\x31\x65\x65\x8a\x5a\x4d\x83\x90\x50\xcb\x65\x57\x5c\x25\xa3\x01\x2a\x3a\xa2\xa0\x4d\x8f\x4b\xa4\xb5\xb7\x6b\x56\x48\x41\x2c\x34\x83\xa1\x35\xa3\x59\x75\x35\x9c\x6d\x38\xd3\x49\xb7\xdc\x71\x9f\x00\x15\xf9\xc7\x5b\x35\xaa\x63\xed\xd1\xeb\xaf\x37\x74\xdc\xe7\x0b\xaf\xda\x96\x3f\xb6\xab\x9d\xc4\xe6\xbc\x80\x4b\x95\x42\xb5\xcd\x6f\x2b\xdb\xfb\x69\x89\x9a\xc5\xc5\xe6\xd0\x66\x83\xa8\xe0\x2f\x40\x03\xf9\x91\xf2\x9c\x66\xa4\xb5\x90\x96\xbf\xe0\x83\x9b\x34\xe9\xd8\x41\x1a\x66\x48\xab\x95\x08\xaf\x1a\x35\xc7\x95\xb8\xd2\x6b\xa3\x64\xf9\x71\xfa\x15\x80\x60\x50\x9e\xc4\x55\x5e\x0f\xb6\xe1\xc8\x25\x3d\x7d\x1f\x83\x9e\x3f\x31\x56\x14\xee\x1f\x8f\x3d\xc3\xe7\xca\x58\xa9\x0b\x9d\xc0\x0a\x88\x8a\xe4\xb5\x1a\x2f\x62\x14\x70\x3b\x82\x5b\x44\xfc\x81\x86\x87\x14\x0e\x54\xfc\xd1\xa8\x4b\x90\x87\x71\x5a\x78\x4c\x00\xca\x60\xd8\xca\xf9\xb8\x4e\x46\xac\x97\x99\xce\x48\x22\x56\x54\x84\xaf\x29\xee\xe6\x35\xd5\xb6\xef\x58\x23\x89\x89\x22\x8c\xab\x20\x6a\xfb\xdc\x40\x7a\x3a\x4b\xd6\x07\x63\x1f\x25\x7c\x4a\xf0\x1e\xb6\x48\x0a\x94\x86\xdb\xc5\x9a\x30\xe6\x50\x73\x18\x9b\x64\xd6\x07\x99\x6c\x24\xa8\xd0\xe8\x0b\x4e\x41\x88\xde\x04\xc6\xdb\x29\xb7\x2f\x66\xca\xd0\x93\x05\x02\x54\xc8\xf2\xdb\x4a\xb4\xa2\x1d\xf5\x7a\x36\x7b\xac\x1c\x01\xc2\x6d\xa2\xaf\x17\x89\x37\xfa\x0a\xe5\xea\xbe\xe4\x78\x42\xe5\x5a\x87\x50\x6c\x1d\x31\x1f\x82\x27\xae\xd1\x60\x25\xbf\x8d\x0b\xc7\xb6\xfd\x40\xf5\x18\x9d\x3f\x2e\xed\x9e\x8e\xd6\xe7\xe2\xda\x07\x98\x97\x18\x06\x73\x53\x3d\xac\x85\xc3\xcd\x4e\x66\xcd\xa0\xe1\x4b\xac\x10\x9a\xe3\xe3\x9a\x96\xed\x42\xb3\x58\x8d\x58\xef\x54\x04\x8e\x3c\xb9\xf1\x66\xa0\xb0\x71\xd3\xa1\x4c\x39\x3d\xb3\x34\xb4\x56\xec\x9a\x31\xf4\x99\x82\xc1\x27\x53\x5d\xe8\xa3\x47\xcb\x4f\x91\xf7\x3b\x37\x8d\x84\x64\xe8\x81\x5a\x6f\xa8\x7e\xc6\x6a\x9f\xc8\xfa\x8f\x51\xb1\x1b\xb1\x22\x9e\x09\x76\xbc\x0f\x02\x55\xfd\xfa\x2c\xd0\x86\x61\xbc\xbe\x71\x4a\x82\x79\x27\x3a\xd0\x9e\x54\x7c\x9b\x8a\x1a\x9c\xf2\x2b\xc1\xa4\xb6\xed\x45\x09\x0d\x01\x34\x32\x2e\x10\xc8\x11\x9f\x41\x19\xde\x31\x4e\xca\x0d\x5b\x33\xf4\x9c\x57\xfc\xfe\xc5\x6a\xc4\x81\x4b\xfe\xb6\x4e\x32\xef\x07\x5e\xac\x2e\x31\xb3\x8d\xc3\x5f\xe3\x51\xb2\x8b\x4a\xcd\x2e\x0f\x76\xde\xbe\xa8\x5e\x4a\x51\xc3\x3f\xa7\xa1\x4d\x3a\x51\xd2\x43\xb9\x17\x71\xdf\xc9\xb1\x8f\x4a\xef\x8c\xbd\x88\x06\x90\x9f\x7c\xac\xe4\x58\x76\xb6\x7c\x01\xb9\x1d\x65\x83\x28\xe9\xf5\x0d\xbc\x33\x11\xb2\x9c\xc3\x00\xe4\x93\x1a\xec\xe2\x21\xa9\x10\x3a\x2c\x15\xe0\xea\x7c\xac\x8a\x35\xaf\x8d\x92\x28\x65\xa6\x38\x56\x56\xb4\x1e\xd9\x5e\x0b\xf3\x4d\x44\x51\x6b\x30\x3c\xbd\x38\x2a\x0a\x5b\x2e\xef\xa8\x7b\x00\xba\xda\xa0\x17\xcb\xd3\x8c\xdf\xbf\xd8\x3d\x56\xfa\x81\xb6\xf3\x2c\xdd\x0a\x7e\xe1\x13\x94\xdf\xf1\xa4\xfe\x0d\x30\xd4\xf7\xc6\x0a\xb8\x72\x15\x93\x19\x3f\x82\x00\x01\x5f\xfb\x78\xf9\x83\x5b\xdc\x2a\x41\xc5\xfe\x1a\x06\x04\x42\xe4\xf5\xc0\xbb\x26\xde\xa7\xc7\x8e\x5d\x72\x27\x41\x87\x11\xc4\xde\xc4\x10\xc6\x9c\x13\x27\x06\x54\xd6\x3e\x01\x5e\x99\x2f\x0c\x19\x3a\xd6\x4b\xf8\x6d\xe3\x0b\x9e\xaa\x73\x26\x18\x66\xe9\x30\xcd\x65\x1b\x41\xc2\xfe\x97\xe5\xcb\x16\x25\x0e\xb1\x43\xad\x89\x49\xc4\x95\xd7\xed\x21\x18\xb8\x90\xee\xe1\x63\x35\xf4\xda\x26\xcb\x84\x4f\xc3\x20\x3f\x1a\xfb\x02\xf8\x7b\xc1\xcb\xf0\x76\x2c\xe1\x7e\x43\x13\xcf\xea\x8a\x0d\x6b\x57\x89\xe5\x84\xaf\xef\xcd\x6a\x93\xb7\xb3\x95\x3a\xb8\x5d\x86\x65\x8e\xe3\x35\xb9\x3d\xfa\x21\x1a\x6e\x58\x60\xdf\xa1\x81\xcf\x3e\xe7\x78\xd2\x58\xb9\x1b\x13\xca\xb7\xd1\x13\xe0\x9e\x8b\xe6\xd2\x89\x51\xa5\x5e\xc6\x6b\xaa\xa6\x2c\xdb\x29\x1b\x8b\x93\xdc\xf2\xf2\x5b\x75\xea\xfc\x79\x3f\x5d\xcd\xd2\x74\xc0\xa9\xbc\xb3\xda\x71\x53\x4d\x47\xb4\x45\x34\xb0\xcf\x2a\xf8\xc3\x43\x14\xf1\xb1\x57\xc2\x2b\x88\xd5\xcd\x09\x38\xee\xc4\xae\xcb\xdb\xc3\xfa\xb3\x0b\x8f\x11\xe1\xdd\xc3\x71\xa5\x4c\x7d\x70\x9e\xbb\x2a\xba\xf0\xc4\x3c\x07\x4c\x8f\x93\xaa\x88\xfc\x42\x4b\x09\xda\xee\x98\x28\x3f\xb8\x9f\x8d\x15\xec\xf6\x04\x15\x4f\xd0\x69\x62\x75\x40\xbc\x8e\xb3\x40\xb8\xe2\xda\x1f\xd4\x96\x58\xa3\x24\x1c\x65\x99\xf0\xef\xb1\x34\xb1\x3c\x33\x9f\xd0\xf5\xa8\xd2\xca\x82\x13\x62\xad\x89\x55\xcb\xfc\x42\xe9\x91\x6f\x2a\x3d\xf2\x69\xb2\xf6\xe1\xaf\x35\x07\x51\x02\xa9\x6b\x1e\x74\xca\x16\xe7\xec\x58\x75\x37\x09\x93\x5a\xb0\x0a\x29\x36\x26\x24\xda\x7c\x3c\x55\xa4\x5f\x38\xdc\xb4\xc7\xd2\xac\x1d\x15\x86\x0b\x06\x22\x99\xe4\x99\x55\x67\xa7\x82\xe0\x23\xf3\xaf\x34\xc3\x74\xd4\xeb\x57\x54\x61\x37\x94\x2a\xec\xc6\xf8\xf3\xfc\xea\x61\x79\xed\x5a\x02\x88\x99\xef\x29\xc2\x39\xa3\x62\xc4\x42\xd7\x09\xd7\x8d\xb2\x61\x16\xe5\x96\xa2\x2d\x64\x45\x2c\x89\x8d\x15\xf0\xd3\xb1\x4f\x4e\x38\x59\x10\xcd\xea\x9a\x04\xaf\x63\xa2\x6c\x8d\x9e\x12\x8a\xff\xe7\x95\xcb\xfc\x79\xa5\x1e\x9f\x93\x93\x5f\xc6\x30\x07\xf7\xb6\xfc\x9b\x53\xa5\xaa\x6e\x99\xff\xf2\x94\x93\xf6\x93\xc6\xcd\xba\x16\x10\x05\x1a\x44\x88\xf3\xf5\xf6\x93\xbc\x33\x60\xb6\x5f\xd3\x90\xaf\xfb\x4a\x59\xa6\x9d\x99\xa4\xa3\xb4\x1f\x4f\x68\xa5\xc0\x13\x4a\x86\xac\x6f\x06\xc3\xbc\x1f\x65\x8c\x89\x64\x60\x0a\x16\x21\xd1\x21\xf2\x4d\xe4\xff\xee\x8a\x1a\xbe\xb0\xe4\x15\xe5\xa2\xed\x68\x86\x85\xc3\x4d\x93\xe7\x26\xcf\xd9\x7d\xb0\xe1\x53\xd9\x6f\xa9\xfc\xf0\x5b\x6a\x85\xb5\x26\x2b\xfa\x83\x74\x85\x68\x78\xe5\x7d\x71\x9f\x59\xc5\xe7\xd0\x20\xc4\x3c\xbf\x46\xad\x1b\xc1\x3e\xd4\xb8\x67\x5b\x93\x17\xc0\xe7\xa2\xa8\x70\x5a\xf9\x44\x42\x71\xde\xb5\xd5\xf6\x2f\x6e\x7d\xa6\x28\xfd\xab\xe9\x32\xca\x83\xec\x19\x8d\xa8\x47\x0c\xa4\xeb\x04\x06\x06\x65\x1a\xbc\x36\x53\xae\x48\xa0\x47\x5c\x57\xc1\xc3\x25\xa8\x63\x02\xcd\x75\x5c\xd5\x84\x62\xd3\xed\x62\x20\xc8\x24\x55\xac\xe1\xb3\x8e\x3a\x62\xa2\x0e\x6b\xb2\xe0\xfb\x4e\x68\xc0\x1a\x73\x8c\x68\x3b\xfd\x93\x17\x98\x0d\x20\xa5\x4c\xed\x26\xe8\xc3\x0b\xb6\x8e\x17\xdb\x5d\x1f\xc5\xe7\x76\xc5\x66\x10\x64\xf6\xc9\x21\xc2\x20\x3e\xf6\x8d\x9b\xd8\x24\x85\xf4\x2e\xa4\xa6\xa6\xd8\x4e\x3b\xf4\xee\x77\xaf\xa6\x24\xfc\x4a\x19\x6f\x25\x85\x14\xdc\x9c\x25\x97\x73\x16\xfe\x29\x36\x56\xe9\x14\xfb\x09\x14\xe5\x71\x39\xba\xf1\xd3\x15\xc7\x58\x3e\xa9\x61\x23\x36\x89\xe0\x99\x6b\xa3\x48\xd6\x0f\x11\x9c\xe5\x73\x1a\x24\x57\x98\x6e\x97\xeb\x6e\xe2\x0f\xef\xd5\x7d\xd9\x54\x57\xdc\xb2\xeb\xbc\x31\x4c\xdb\x24\x9d\xd4\x49\x4e\x60\x93\xfa\x2e\x1e\x3b\x9f\x28\xac\x6a\x94\x2f\x3f\x46\xd7\x82\xd8\xf7\x9a\x6e\xb0\xdd\x19\x7b\x69\x89\x5b\x63\x2f\xfe\xf8\xc9\xd8\x17\x36\x1f\x60\xc7\x43\x58\x77\x06\x59\x1d\x0f\x36\x7a\x9e\x88\x20\x1e\x6f\x3d\xab\x28\xd3\xa3\xc1\xd0\x0a\xf3\x53\xf2\x9d\x86\xb3\xad\xb9\xac\x5c\x36\xcd\xa8\x90\x16\xbf\xeb\x3e\xa3\x60\x2e\x30\x61\xc5\xe4\x1c\x44\x33\x55\x14\xa4\xa3\x1f\xde\xa3\x8c\x59\xd0\x6a\x3e\x61\x35\x54\x0a\xdc\xab\x9d\x21\xe8\xcb\x91\xba\xdc\x0f\x54\x6d\x0e\x1e\xc1\x78\x16\x57\x08\xe4\xc6\x3e\xab\x81\xc2\xf7\x33\x22\x98\xbd\x96\xb1\x92\x89\x1d\xab\xcf\x23\xce\xa1\xf5\x20\x8e\xcc\xaa\xf1\x3b\x33\xa9\x13\x1b\x74\x26\x0c\xfc\xc8\x5c\x91\xf3\xc0\x01\x57\xe4\x54\xbe\x48\x51\xdb\x82\x1e\xa6\x64\x56\x5e\x75\x27\x7e\x3f\x79\x30\xb5\xeb\x1f\x3d\xda\x7c\x6d\x94\x17\x33\x1e\x65\x72\x57\x09\xbc\x5d\xd0\x9b\xde\x05\x07\xe7\x6b\x67\x69\xfe\x72\x43\xef\x0c\x5b\x58\xb2\xf8\x44\xd5\xb5\x44\x48\x67\xc6\x5b\x2a\xa0\x04\x86\xb0\xe8\x92\x12\x3a\x7d\x57\xdd\x51\x66\xbb\x5c\x9a\xac\x83\x44\x7c\x1e\x3c\xbd\x5c\x81\xe9\x4e\x10\x57\xdc\x53\x24\xea\xb3\x81\xf2\x4f\xda\x0c\xf4\x2f\x19\x09\x2d\x5d\xc6\x7a\x70\x5e\x8e\x83\xe7\xd5\x22\x5d\xee\x8e\x03\xea\x60\x1c\x11\x6d\xe0\x0f\xc7\xaa\x38\xfc\xa1\x92\x5c\x31\x49\x34\x30\xf1\xac\xcf\x18\xef\x28\x21\x9b\x3b\x94\x20\xa3\x46\x37\x43\xa2\xd6\x7c\x3c\x11\x24\x64\x1c\xb5\x6d\x56\xac\xcd\x69\x08\x18\x3d\x61\x87\x0d\x73\x25\xc8\x47\x81\x9e\x54\xe3\x8a\xe6\xea\x93\x0a\x46\x0e\x4d\xa1\x05\x9e\xf4\x4f\x40\x01\x46\x55\x66\x44\x03\xe1\xee\xd8\x63\xf7\x7e\x17\xaf\x15\xb3\xeb\x6a\x9d\xa9\x42\xe7\xe5\xf0\x65\x45\x3f\x7f\x43\xd3\xcf\xdf\xf0\xa2\xcf\x61\xba\x1a\x73\x69\x12\xd5\xb8\xbb\x5a\x37\x04\xb5\x17\x31\xac\xaf\xc9\x01\x46\xc9\x6a\xa4\xea\x74\xce\xd6\xc3\x23\xe6\x15\xf6\xab\x6f\xb2\x76\x2a\xee\xb5\x4e\x6c\xc0\xc1\x55\x2f\x39\xb8\x69\x98\x66\x99\x0d\x8b\xdd\x0d\xa7\x59\xfa\x10\x0f\x42\x58\x8a\x4a\x50\x09\xe2\x0e\x58\x17\xee\xe8\xdc\xe8\xcf\x95\x72\xe6\x27\x40\x5e\xb3\x79\xf9\x54\xdd\x9b\xaa\xc1\xb9\xb2\x3e\x39\x5d\xf1\x82\x56\x8e\xc0\xe5\xee\x2e\x29\xe5\xab\xde\x53\xdb\x13\x89\x02\x5f\x8e\x2d\xfa\x76\xed\xaf\xd1\xb2\x23\x4a\xc0\x0d\x87\x0d\x84\xd7\xbe\xa4\xaf\x9e\xb0\x3c\x07\x12\x23\x2f\xf3\x41\xe3\x17\x7e\x89\xe1\x80\xf7\xc6\xda\xdb\x89\xc6\x0b\x66\x42\x83\x6a\x2c\x6c\x06\x4a\xb7\xcc\x32\xbb\xe0\x1a\xb2\x95\x54\xa0\xd8\x3a\x13\xc5\x0d\x79\x88\x05\x89\x49\x87\x63\xfd\xea\x91\x4d\x0a\x98\xbf\xb1\x4f\x7e\x90\x3d\xd2\x98\xe9\x88\xbd\x99\xed\x36\x90\xdc\xd3\x8d\xfc\x4f\x2f\xb6\x28\xd6\x71\x42\xcc\xfb\xf6\xf9\x3a\xd2\xc1\xf9\x43\x8e\xe4\x8a\xc5\x8a\x09\xcc\xae\x2d\xe9\xe0\x07\x4c\x98\xc3\x08\x41\x04\xc2\xc7\x63\x6f\xb7\x9e\xa4\xd9\x5e\x7a\x24\xd8\xec\xee\x8e\x95\xf8\x07\x06\xa3\x14\xc4\x95\x59\x11\x2f\xf6\xec\xe1\x42\x35\x0e\x99\xaa\xb8\x26\x71\x77\x29\x2f\xdd\x45\xa0\x0b\x87\x19\x21\x88\x40\x00\xb5\x38\x68\xe1\x03\xab\xd1\x68\x49\x33\xb6\x6b\x6d\x3e\xa3\x14\x09\x76\xb6\x3c\xbe\x90\xe3\x14\x34\xa4\xee\xd4\xcd\xac\x22\xb3\x26\x1f\x65\xe2\xba\x2a\x1e\xf8\xe5\x0f\xf1\xb1\x82\xc8\x17\x99\xe9\x76\xa3\x70\x19\x2c\x5d\xe9\xf6\xcc\xa0\xb9\xc5\x27\x13\x81\xb6\x8d\x12\x13\x17\x65\x8e\x32\xeb\xa1\x1f\xec\x68\x86\x07\xf0\xa1\x66\xec\x61\xac\x89\x6a\x8b\x47\x93\x98\xbc\x28\xd3\x12\x31\x6b\x47\x32\x7c\x9a\x6a\x26\x7c\xac\xad\x81\x0b\xcb\xb5\x12\xac\x25\x6f\x56\x5c\x5e\xb5\x90\xe6\x65\x4d\x56\xda\xd9\x52\x11\x45\xbc\xa6\x94\x87\x4f\x2a\xed\xa6\x93\x0a\xbb\x6c\xf3\xd0\xc4\xa6\x10\xee\x0c\x22\x75\x2e\xf9\xf1\x49\xe0\x8b\x12\xaf\xdb\x2c\x6d\x78\x9c\xf7\xce\x96\x32\x8f\xdb\x39\xf1\xe3\x6b\x68\xd6\x9e\xf4\xe5\xc6\x0d\xad\x45\xf2\xee\xb8\xf1\x55\x21\x9d\x63\x48\x88\xa0\x93\xea\x70\x1c\x27\x68\xad\x72\x82\x93\x86\xf7\x3d\xa5\xe2\xb6\x4e\x85\x0f\x54\x7f\xce\x61\x79\x67\x8e\xbd\x32\x2a\x3a\x81\x85\x8c\xab\xc3\x6a\xb3\xd9\x35\x55\x3f\xdb\xbf\xd8\xec\x98\xc2\xb4\x4d\x6e\x15\xe7\x14\x0c\x0f\xd1\x9f\x7d\x41\xd1\x67\xda\x79\xd4\x21\xf3\x7d\x8c\x59\x59\xf4\xcb\x8f\x62\x75\xfd\x9d\xb1\x47\x52\x5c\x74\x39\x49\x6a\x96\xad\xc0\x00\xf0\xe4\x3e\xd6\x1e\x7c\x1f\x07\x3e\xcb\x49\x87\x36\xd9\x5d\xce\x20\xcc\x9a\x7b\xb8\x17\xc4\x1b\x1f\xd3\x75\xe1\xbe\x20\x77\x8f\x8d\xee\xbf\x57\xf8\xb7\x47\x63\x4f\x23\x83\x70\x07\xe2\xfc\x9b\x2e\x53\x6e\xa7\x59\xe6\x41\x9b\x28\x36\x6b\xc7\xd0\x9b\x3a\x35\xb6\x3d\x93\xec\xf1\xb0\xf9\x2b\x34\x76\x31\x1d\x2e\xa9\xe2\xc0\xfb\xf4\x94\x9d\xf6\xdb\x81\x03\x87\x5c\x51\x8c\xc6\xad\x18\x96\x94\x2f\x09\x49\xf0\x1b\x81\x6a\x5a\x9d\xa6\xd7\x8a\xaa\xe0\xb7\xf5\x02\x7b\x71\xfc\x78\xd4\x1c\x66\xb6\xfb\x0f\x9b\xf9\xdf\x6c\x38\x86\xf9\x1e\x14\xa7\x98\x9f\x4b\x9a\xe8\x58\xd0\x4f\x53\x91\x1f\xfb\xd9\xd3\x93\x72\x67\x50\xe4\xa1\x57\x5c\x47\xa5\xe1\xfc\xa4\x9e\xd1\xce\x94\x4f\xb4\x94\x9e\xd5\xdf\x27\x3c\x39\x7a\x4b\x8f\xb7\x68\x9f\x40\x24\xd9\x80\x33\x25\x2a\xf6\x30\xb1\x13\xab\xed\xf2\x2e\xf0\x7a\x76\x4f\xfc\x22\xf4\x05\xaa\x23\xb3\xf1\x00\x22\x17\xfc\xc4\x2c\x96\x7f\xe4\xc0\xbf\xc9\x2b\x2a\xd0\x2a\x5f\x9a\x34\xbe\x2e\x4b\xdf\x3b\x68\xf6\xb3\x5b\x01\xea\x33\x80\x69\xed\xc2\x8a\x84\xc4\xe6\x09\x80\x9d\x04\x3a\x5a\xbe\x28\x2c\x4f\x4f\x4e\x94\x1e\xfa\xb3\x50\x10\xc6\x2e\xf7\x20\x68\xfc\xe2\x57\x5c\xa1\xa3\x4e\xd5\xb2\x13\xad\x44\xb9\xd7\x81\xbe\xc2\x85\xe5\x67\x55\xf1\x24\x4a\x7a\x94\x97\xba\x1d\xe4\x67\xd8\xe2\x90\x48\xfd\x40\xf9\xc6\x7c\xdb\xb1\xf9\xfb\xd6\x78\x2b\x4b\xc4\xbb\x0f\x54\xbf\xe3\xa1\x2a\x7a\xff\x76\x8d\x3d\xc3\xab\x4d\x33\x1c\x66\xe9\x30\x8b\xa8\x91\xe9\xf6\x18\x54\x94\xf9\x78\x2a\x5b\x38\x70\xa0\xd9\x33\x51\x32\xe3\xf1\x74\x8c\x63\xc4\x34\x66\x6d\x2b\x64\x8c\x1a\x40\x97\xa7\xc9\x2e\xc5\xe0\xbb\x8f\x70\x80\xeb\x9f\x58\xe7\xb4\x86\x07\xb6\x92\x13\x48\x33\x1d\xe8\x5a\x71\x25\x75\x45\xdd\x66\x89\xc9\x3a\x5c\x19\xc0\x4b\xb9\x87\xa5\x01\x3f\xb6\x03\x23\x1d\xb7\xf4\x81\xaa\xff\xac\xa6\xd9\x72\x0e\x7d\x07\xc8\x30\x61\xac\x00\x9d\x27\x9d\x49\xbf\xfe\x7f\x80\x15\x55\x2c\xf7\xea\xec\x19\x33\x6b\x18\x5b\xea\xb4\xc6\x0f\x1c\xc0\x72\xfe\xe4\xb3\x2d\xb5\xd6\xee\x99\xf8\x1d\x27\xef\x9b\x46\x43\xb9\x69\x2b\xfc\xd4\xf9\x3a\xda\x66\x66\x92\x65\xf7\xe2\xf1\x3b\x7b\x89\xd0\x81\x24\xe4\x59\xaa\x34\x21\xcc\x3b\xef\x32\xb6\x30\x33\x79\x7f\x4e\x6b\xde\x8e\x7d\xc1\x72\xae\xe5\x09\x75\xbf\x8e\x96\x8c\xe0\x66\xe9\xa5\xc9\x3a\xb4\xfd\x62\x5e\x6a\xe6\xfd\x74\x38\x24\x5f\xa7\xf2\x11\x63\x44\xbc\xa7\x8d\xe3\xde\x2b\x87\x90\xeb\x85\x87\x69\x02\x4b\x2a\xf1\xf8\x52\x01\xdd\xab\xce\x4c\x4d\xb4\xf2\xba\xd1\xb1\x86\x5f\x40\x98\xc5\x25\xc8\x88\x1a\xd0\x5c\xb3\x1d\x49\x7b\x55\x6f\x75\x52\x8f\xda\x5e\x31\x24\xcc\x9b\x0d\xfb\x09\xb5\x59\x04\x3a\x87\xc5\x8e\x01\x0a\x88\xcc\xdf\xd3\x5e\x6f\x97\x02\xbf\x5f\xbf\xf6\x32\x94\xb7\x18\xf0\xa9\x8d\x2f\x37\x95\xce\x31\x11\x89\x87\xe5\x7e\xa1\x1b\x4c\x40\x61\x62\xe2\xde\x09\x2a\x2d\x79\x3f\xb8\x33\x13\xc7\x51\x19\x41\x2d\x1c\xe6\x8a\xd5\x55\x50\xbc\xf9\x84\x52\x55\x50\xb3\xbe\xa5\xf4\x82\xbe\xa5\x6a\x7e\x2b\x36\x5b\xdb\x5b\x3e\x07\xd5\x3e\x92\xa2\xd0\xa6\xa2\x08\x9f\x1a\x2b\x4e\x3e\x2a\x79\x70\x00\x78\xbe\xe5\xea\xe7\xab\x2f\x4e\x68\x1d\xc5\xbb\x7d\xa0\xed\xca\x77\x4e\x5c\xf9\x61\xe1\x8b\x2d\x45\x77\xf9\x18\x4f\x4f\x44\x40\xeb\xba\x18\x65\xda\xbe\x6a\xb2\x0e\x80\x56\xbc\x0d\xd1\x15\xc8\x96\x54\x17\x74\xd8\x30\xea\xb8\x8c\x50\x90\x91\x1a\x32\x29\x34\xd4\x55\x6b\x8a\xbe\xcd\xda\xb0\xa1\xf7\x8b\x2c\x74\x3f\xf9\x78\x8a\x88\xb3\x70\xb8\xf9\x65\xa6\x1c\x60\xe9\xe5\x0a\xa3\x10\x63\xa8\x37\xc3\xcc\x01\x4a\x5b\xb0\x62\xbc\xa3\x60\xd3\x26\x2e\x93\x78\x43\x95\x54\x2c\x6f\xb7\x95\x62\xfa\x9d\x71\xa5\x56\x3c\x75\xef\x48\x63\x6e\x04\x28\x16\xab\xc5\xe3\x84\x4b\x5f\x32\xdb\x1b\xc5\xa0\x32\x73\xdc\xcb\x4a\xe0\xe0\x43\x88\xa8\x92\x2f\x85\xff\x2a\xbe\x07\xc1\xd5\x9e\x89\x53\xa3\x32\x85\x8d\xe3\xa8\x60\x30\x34\x76\x9d\x1f\x8f\x15\x1f\xfa\xc7\x15\xe9\x8d\xb5\xc4\x6a\x3b\x3c\x14\x67\x04\xd7\xe1\x65\x1b\xf3\x22\xcd\xd0\x18\x41\xc2\x74\x6a\xec\x97\x29\x58\x99\xe1\x33\x3b\xc1\xee\xc5\xee\x7a\x46\x45\x8b\xa3\x64\xd5\x64\xa4\x11\x4e\xcd\x85\xad\x09\x39\xcc\x4e\xea\x24\xf5\xc2\x34\x29\xa2\x64\xe4\x16\x46\xa6\x5b\x28\x40\xff\x3d\xed\xd2\xb8\xa1\x6d\x7a\x8e\x15\x99\x01\x58\x1d\xd0\xb0\x13\x14\xa2\xf1\xb1\x4a\x2f\xfa\x06\xcf\x07\xdf\x77\x6b\xac\xc0\xf9\xb7\xa6\x86\xe8\x4b\xcd\x28\x09\xcb\xe4\x4a\x30\xc8\xc2\xb8\x51\xec\x9b\x3a\xe5\x8b\x30\x4d\x56\x22\x6f\x76\xca\xf8\x44\x9a\xdc\x82\x55\xac\x69\x43\xdb\xd8\xb4\xd3\xcc\xf8\x12\x09\x56\xf3\xef\xd0\xaf\xf1\xf1\x14\xec\xf2\x25\xd2\x65\x8c\x0c\x71\x19\x97\xb6\xae\x94\xaf\x67\xeb\xca\x54\x5f\xea\xc8\xfc\x42\x33\x1f\x8e\x58\xd3\xdd\x41\xe9\xca\x57\x26\x50\x3a\x5f\x8d\x48\x5e\x7e\xed\xe5\x5d\x8a\xa7\x7b\x5d\x91\x8e\xc1\x45\xab\x38\x55\x8b\x0a\x0b\x3d\x21\x91\xd1\xd4\xeb\xa8\xc3\x1c\xdb\x63\x51\x31\xa7\x38\x48\x8f\x4f\x7c\xad\xf7\xb9\xd6\xce\x2f\x55\x8a\x42\xe0\xc8\xc1\x2a\x5c\x2c\x05\x5e\xf4\x79\x56\x96\xf6\x32\x33\xa0\x22\x33\xd5\x25\x31\x39\x7e\x36\xf6\xac\x83\x1b\x58\x91\xa5\xaf\xe1\x7b\x99\xe4\x55\x12\x9a\x38\xdf\xe5\xcd\x78\xdf\xab\xe8\xb0\xdf\xa6\x2c\x0c\x8d\x88\x07\x98\xd6\xfc\x67\x54\x42\xe6\x7f\x08\x94\x09\xdb\x6d\x55\x9e\xee\x98\x38\xe6\x61\xe6\x8c\x21\xca\xbf\xe4\x13\xc5\x43\xcd\x47\x64\x4d\xda\xd0\xf1\x46\x85\x5d\xa3\x62\x24\x72\x50\xab\xd8\xff\xbe\xa5\x0b\x75\x6f\xa9\x7a\x68\x27\xca\x97\xf3\x39\x2f\x9b\xfa\x53\x84\x67\x18\x43\x97\x94\x02\x0b\x60\x32\xfc\x47\xf4\xa4\xc5\xb8\xd2\x49\x90\x65\x26\x5c\xa6\xe7\x84\x3d\xf8\x5a\xe0\x6d\x44\x60\x56\x80\x0c\xe0\x24\x62\x48\xf1\x28\xf4\x5d\x90\x9f\x8d\xb5\x0a\x95\x7a\x48\x96\x78\x45\x9e\x46\x8f\xc2\xb8\x94\x12\x94\x14\x85\x59\x49\x33\xd3\x8e\xed\x2c\x85\xec\xa8\x77\xdd\xd0\xca\x12\x6f\xa1\xcc\xc4\xff\x82\x25\x99\xff\xc5\x89\xf5\x0d\xfb\x36\x49\x07\x36\x49\x93\x19\xc5\xcf\xd0\xb2\x6b\x88\xb6\x45\xf2\xef\x69\x85\x3e\x0e\xfb\xe5\xf6\xed\xf0\x58\x3f\x42\x32\x87\x5f\xf8\x28\xf0\xb5\x6a\x16\x45\xe6\x7f\xa8\xac\x81\x61\xb9\x89\x44\x49\xb1\x36\xab\x4c\x7c\x98\x0a\xe6\x2c\xcc\x0e\xce\x7b\x37\xb9\xfd\x8b\xce\x1b\xee\x19\x05\xd2\x2a\x56\xad\x4d\x9e\xf6\xc8\x93\xc7\x26\x4a\x54\xef\x63\x6d\x45\xc0\x15\x36\xc6\xe2\xe8\xfa\x72\xa3\xa5\xb0\x61\xeb\xca\xc2\xf8\xe9\x96\x72\x43\x3f\xad\x15\x9e\xcf\x8f\x3d\x48\xf8\x2e\x8d\x13\x51\x24\x54\x08\xa9\xab\xb4\x1d\x20\xaa\x79\x1f\x6f\x41\xcc\x2f\xca\xdb\x11\xf9\x61\xb7\x61\x11\x93\x20\xea\x32\x0f\x94\xd5\xf0\xf1\x85\x22\x8d\x2f\xb5\xe7\x41\x94\xc7\xe5\xfe\xe1\x1c\x96\x2f\xe2\x56\x45\x32\x47\x92\xfa\xc4\x94\x49\x3d\x03\xed\x58\x59\x8f\x5e\xab\xa8\xec\xd5\x24\x43\xaf\xd9\x55\x29\x4a\x60\xb9\x3b\x1e\x28\x59\xce\xe3\x8a\xb7\x9a\xa7\x59\xc7\x66\x4c\x8c\xaf\xd3\xe5\xaa\xc8\x34\xc5\x6b\x2f\x96\x63\x46\xfa\x7f\x5e\x5f\xa1\x81\xdc\x13\x15\x22\xf6\x82\xc4\x13\xfc\x1f\x69\xd3\xc2\x7a\xb8\x45\x8f\xd9\xad\xad\xe5\xbb\xc0\xa2\x70\x6a\xac\xdd\x23\x28\x92\xe4\x62\x2d\x5d\x0b\xc6\x05\xa3\xb7\x31\x2e\x76\x4d\xb4\xfe\xc8\x06\x88\xf4\x08\x66\x2e\x69\x8d\xe3\xf3\x81\x5a\x87\xfe\x44\xf7\xf0\x1f\x43\x52\x2d\xa6\x03\x34\x7e\x10\x7e\x5e\xd1\x66\x30\x20\xa5\x6b\xfb\x7a\x8c\x86\x9b\x75\xc0\xdf\xb6\xed\x9b\x95\x28\xcd\x66\x3c\x5c\xf9\x26\xdd\x01\x6b\xdf\xe3\xca\x04\xd8\xb9\x7d\xdf\x5b\xf8\x7f\x19\x7b\xb3\xe0\x4a\xb2\xf4\x3c\xac\xea\x02\xa8\xaa\xae\xde\x97\xe1\x8c\x48\x85\x78\xc7\x1a\xc7\x48\xa1\x66\x5b\x16\xed\xb0\x83\x2f\x79\x09\x60\xd8\x53\x88\x19\x34\x02\x55\x53\x2d\x76\xf8\xa1\x0f\xf2\x1e\xdc\x9b\x8d\xbc\x99\x77\x32\xf3\x02\x8d\xb6\x1f\xfc\xe0\x50\xd8\x11\xf6\x83\x83\x94\x15\x21\x3b\x42\x32\x69\xd1\x62\xd0\x34\x29\x2e\xc3\x6d\x86\x17\xcd\xe1\x70\x36\xce\xb0\xf7\x7d\xa9\x7d\x47\xed\xfb\x82\x72\xe4\xff\xfd\xff\x39\x7f\x22\xb3\x1d\x7a\xbb\xd9\x5d\xb8\x4b\xe6\x39\xff\xf9\x97\x6f\x39\xd0\x2e\xd2\x2c\x92\xb6\xa9\x50\xb1\xe9\x57\x8b\x07\x28\x7e\x35\x12\xae\x1b\xb5\x23\x71\x66\xb6\xbd\x1c\x5b\xcb\x2c\x33\x56\xdd\xa2\x78\x20\x0a\x5c\xb2\xfa\x7a\xac\xc0\xaa\x74\x61\x3c\x0d\xfd\xac\xab\xcf\xd6\xd2\x2c\x67\x6f\x66\xfc\x84\x7b\xf4\x6e\x68\x3c\xed\xdd\xf0\x88\xab\xa7\x1f\xeb\xb4\x9e\x5f\xe0\x26\xce\x07\xe3\xd6\xd7\x24\x09\x7d\x87\x0e\x3e\x84\x26\x6e\xef\x23\x23\x9d\xd8\x68\x7d\xe3\xab\x4e\x9b\x80\x4c\xdf\x9d\xab\x63\xb9\x32\x10\x6a\xff\x21\xba\x2a\x42\x54\x74\x83\x9b\x41\xe4\x64\x7f\xb0\x61\xf8\x41\xf3\x85\x82\x3a\x0f\xd0\x48\x9e\xf2\x33\x37\xf6\x8b\x14\xf5\xad\xf2\xf9\x80\xa2\xcb\x51\x04\x10\xad\xfb\xca\x75\xf2\x56\x13\xb5\x69\xcd\x9a\x15\x9b\x70\x7d\x86\xdd\xcd\x09\x2e\x23\xe3\xb5\xb6\xc1\x31\xe5\x9b\x5f\x16\xf8\x51\xd2\xcb\x5b\x14\xe7\xe4\x74\xa6\xd6\x93\x1c\xbc\x52\x6b\x9a\x2c\x6c\x29\x05\xac\x23\x3c\x2f\xe0\x2b\x2d\x9a\x67\x0d\x00\x7c\x33\x33\xde\x97\xdd\xd3\xc1\x37\x9b\xac\x76\xa2\xa4\xb0\x89\x73\x74\x93\x71\x9e\x1a\xed\xd5\x00\x04\xb3\x07\xda\x79\x04\x9f\x54\xdf\x46\x0d\x54\x7b\xb5\x16\x8c\x16\xa7\xdb\xcb\xb1\x61\x76\xa4\x13\x3f\x77\xa2\x51\xc7\xdc\xa1\xbc\x6a\xb3\x9e\x96\xa6\xe4\x61\xb6\xcc\x8e\x1a\x44\x36\xd7\x23\x1b\x77\xf9\xf6\x8b\x95\x12\x2d\x16\xb1\xaa\x55\x1a\x33\xaf\x2b\x52\x3d\x9f\x5b\xf1\xfa\x54\xf9\xe4\x91\xea\xe3\xd0\xc4\x29\xc7\x39\x10\x2e\x2e\x2a\x23\x37\x50\xe5\x91\xf1\x9c\x52\xa7\x39\x09\xf1\x96\xd5\xce\x83\xca\xb5\xe0\x30\x65\x55\x88\x01\x20\x28\x09\x27\x59\x9d\xf2\x37\x71\xec\xf2\x5f\x8c\xab\x6e\x35\x4a\x08\xc7\xa3\xfd\xbe\x3b\x56\x7a\x45\x6c\x55\xcd\xef\x15\x54\x0a\xe5\x86\xe7\x4d\x29\x3c\xa3\x5a\x64\xc6\x80\xd4\x8c\x5f\xbb\xed\xb5\x92\x66\xd6\xa0\x26\x45\x44\xf8\x42\x47\x29\x56\x7c\x61\x63\xfb\x53\x7e\xba\x3d\x4c\x33\x9b\x4f\xb4\xbe\xf2\xcf\x7d\x8b\xc9\xed\x1e\x76\x59\x90\xdf\xef\x47\xd7\x79\x1a\x47\x5d\x93\x45\xc5\x3a\xd6\x07\x7a\xb5\x2c\xcb\xc9\x17\xb5\x9d\xb7\x6f\xbe\x9d\xa7\xeb\x4b\x96\xc9\xd8\xc8\xba\xdf\x54\xee\xad\x6f\x36\xfa\x2a\x16\xf6\xe5\x42\xa5\xaf\x40\x70\xf1\x6b\x8d\xf2\x28\xca\xec\x90\xca\x9c\xf2\x59\x3a\xba\x40\xf9\x98\x64\x28\xed\x84\x4b\x93\xf5\x41\x9a\xd9\x5d\x6a\xcc\xf4\xef\xf4\xa9\x76\x61\xac\x84\xdd\x8e\xd0\x1a\xa0\x90\x78\xfd\xc9\x8e\x9f\x66\xde\x55\x33\xad\x5b\x2e\xee\xc6\x26\x5c\x61\xa7\x4e\x65\x0d\x2b\x96\x3a\xb7\x2a\xd2\xab\xda\xa2\x7c\x34\x1c\xa6\x59\x31\x59\xbe\xbd\x8b\xac\x5e\xe4\xef\x56\xa0\x00\xd1\xb7\x54\x27\xa3\x2e\x5c\x0e\xe6\x65\xbc\xc2\xc9\xb9\xb3\x4a\x9a\xf7\x49\x8f\xef\xe5\x84\xe9\x1a\x7c\x53\xd1\x61\x6d\x75\x94\x35\x20\xfa\x49\x0c\xd0\xf9\x4c\x09\x2a\x13\x16\xd1\x6a\xb9\x0e\x3c\xaa\xff\x8e\x2e\x45\xee\x54\x7c\x83\xf2\xa8\x97\xb0\x87\x61\xf9\xef\x25\x63\xf2\x15\xd6\xb9\x06\x41\xcb\xf6\xc0\x60\xe4\x87\xc5\x7e\x87\x36\xb3\x70\x10\xe9\x41\x39\x42\xe2\xe2\xb4\x43\x35\xf9\xba\x26\x36\x59\xcf\xc6\xeb\x2c\x93\x24\x49\x2d\xdd\x1d\x84\xf8\xbf\xa5\x27\x89\xf6\xc8\x96\x9a\xe7\xbc\x85\x47\xc0\xd2\x32\xaa\x6e\x1f\xc5\x4b\x2d\xc5\x2b\x42\x9d\x27\x8d\xf6\x26\x16\xb0\x08\xd8\xce\x3a\xf8\x51\x45\xa6\xb0\x41\xcf\x04\x7a\xb3\xb4\xe7\xbd\x77\x11\x90\x37\x32\xc9\x6a\xe0\xe4\xa3\x07\xbf\x6a\xf9\xc3\x50\x7a\x9e\xa7\x44\x8e\x5f\x37\x1a\x05\x99\x02\x0a\x2f\x08\x41\x6f\xaa\x9f\x73\x9a\xee\x29\x5e\x5f\xfa\x4c\x15\xc7\x7e\x9a\x17\x9a\xa8\x79\x93\x1e\x91\x08\x73\xd1\xf9\x88\x5d\x76\xbc\x6a\x17\x93\x47\x08\x1f\xc2\xa8\x50\xc2\x07\x9b\x0a\x90\xd0\x33\x03\xfb\x80\xe2\x9b\x6f\x52\x1b\xd6\xd1\x49\x3c\xf2\x1d\xad\x66\x64\x29\x47\x28\x8c\x23\x55\x80\x5d\xa3\x78\x68\x29\x6e\x17\xb8\xae\x62\xf9\xe0\x65\x8f\x26\x37\xfc\xa1\xcf\xc6\x7a\x39\xdd\x21\xec\xc0\xef\x29\x77\xf7\x8f\xc6\xaa\xb0\x3f\xaa\x18\x9c\x79\x3f\x1a\xae\x73\x13\xf2\x59\x1e\xa5\x5f\xa4\x5b\xcb\xaf\x1d\x6c\xa4\x1b\xe5\xd9\x68\x58\x4c\x78\xfd\x3b\x40\xa6\x58\x44\x01\x01\x44\x84\xda\x94\xde\x55\x66\x06\x03\xcc\xb1\x9d\xe3\x8c\xe2\xbd\x5c\x54\xa9\xd4\x30\x4b\x97\xa3\x82\x4c\xc2\xe5\xcc\xb8\x86\xd0\x28\x58\x91\x96\x13\xc7\xf9\x29\x3d\x3c\x87\xa6\x5a\x9c\xe6\xa5\xc3\xb0\x74\x64\xda\x27\x74\x06\x03\x2c\x5e\x4b\xf1\xfa\xa9\xc9\x28\xaf\x6b\x9d\xd0\xf9\xf9\x76\x37\xc5\xf1\xef\x48\xb0\x07\xa7\x9d\x4c\xbd\x32\xf1\xff\x17\x4d\x87\x48\x98\x0e\xd7\x5d\x5b\x8a\xe7\x44\xb4\x6b\x65\x66\xe4\x72\x60\x1b\xc7\xf9\x94\xe7\xde\x9d\xa3\xd2\x0f\x49\xe2\xa6\xd6\xa0\xde\xab\x55\x53\x8f\x8e\x27\xf6\xff\xea\xd7\xdd\x3f\xf3\x8d\x8c\x41\x9a\x14\xfd\x27\xca\x55\xe5\xd6\x6b\x79\x64\x88\x8f\xb3\xb2\xa9\x9a\xda\x50\x3d\xe4\xcb\x95\x03\x80\xc6\xbf\xac\x08\x3f\x56\x1c\xde\x05\x44\x04\xf4\x2f\x4e\xe0\xd9\xa0\xb3\x83\x7b\x29\x04\x4f\xa5\x07\xe1\xcb\xe0\xe7\x31\xa3\x71\xd6\xec\x3e\xff\x7a\x90\xb6\x07\x0a\x9f\xfb\x81\x52\x86\x3c\x15\xf8\xfa\x58\xd8\x3a\x82\xcf\xf0\x03\x89\x25\xcb\x00\x64\x14\x75\x6c\x5e\xc9\x17\xea\xe4\xfe\x71\xa0\x1a\x69\x3f\x6e\xe2\x0c\xb1\x4a\x8f\x03\x8e\xe3\x74\x00\x30\x86\x5f\xfb\x46\xef\x28\xcf\x23\x93\x4c\xaa\x76\x31\xb2\x2a\xf4\x63\x50\xcc\x89\x74\xa3\x32\x5c\xbb\x50\x03\x71\x1f\x9c\x7e\x01\x36\xcb\xe1\x48\xa1\xbd\x64\x3d\xb7\x9c\x3e\xc8\x89\xc6\x31\x82\x19\x0e\xad\x89\xab\x18\xd8\xf3\x95\x71\x87\xeb\xe8\xc4\x36\x1d\x44\x49\x2e\x95\x19\x9e\xd0\x09\x3d\xc0\x39\xe1\x84\xc0\xd7\xcc\x8a\x45\xa1\x28\x02\x92\xdb\xb0\x77\x5e\x87\x7f\x7b\x63\x76\x71\xba\x3d\x4a\x48\x55\x32\xef\xcb\xf7\xc2\x42\xc5\x69\xcd\xaf\x95\x54\x6d\xd1\x8f\x12\x02\x7e\xf9\x7b\x86\x7b\xc9\xaf\x1b\x3d\xea\xf2\x22\x8b\x86\x43\xf9\x00\x07\x15\x55\x85\x9e\xee\x1a\x66\xc3\x78\xc4\x15\x9d\x64\x18\x34\xcb\x90\xd4\xe3\x67\xfc\x0e\x8a\xc2\xbe\x8d\x4d\xd2\xb3\x71\x2a\x6d\x0e\x67\x4f\xe9\x4b\xae\x73\x55\xce\x75\xd2\x05\x01\x07\xa1\xea\x2a\xc1\x70\x1d\xcb\x7e\x66\x56\xb8\x79\xb4\xa0\x05\xa8\x8c\xf7\x46\x84\x7e\xab\x62\xe3\x4b\xbb\x09\x30\xf4\xe3\x7e\x9a\xfa\xbf\xdc\x09\x3c\xc8\x8d\x35\x1b\x45\x55\x4f\x11\x5a\xbf\x8f\x13\x06\xfb\xff\x96\xe6\xa2\xbe\x8b\x91\x23\xfe\xcf\x15\x2d\x22\x8a\x3a\x55\xbb\x62\x21\x5d\xd9\xbd\xe1\x4f\xb8\x65\xd3\x45\x46\xc4\xf2\x3d\x8a\x8f\xf9\x56\xed\xc4\x9e\x99\x69\xaf\x45\x19\x1c\x07\xf0\x79\xc7\xd5\x9c\xfe\xb8\x3a\x38\xd7\x4c\x8f\x79\x11\x82\x10\x53\x08\x69\x7a\x9e\x28\xef\xd1\x22\x75\x4a\xc3\x4e\x58\xe1\x98\xd6\x0b\x87\x8e\xd2\x84\x7f\x87\xfb\xaa\x99\x75\x6b\xac\xa4\x79\xdf\x69\x32\xfb\x5d\xce\x6c\x12\xf6\x89\x03\xcf\xa0\xc7\xf1\xce\x2f\xf9\xd9\xb1\x9b\x17\xb3\x4e\xb5\xe8\x7d\xe8\x95\xb0\x9e\x66\x14\xcd\x31\x71\x61\x39\x1b\x97\xe3\xb8\xe6\x3d\x74\x12\xb0\xbe\x09\x4e\x3b\xbb\x75\xae\x89\x40\xdb\xb5\xcb\x36\x73\xfa\x24\xd8\xa5\xdc\xa6\xe7\x8b\x06\x98\xc3\xb3\x98\xee\x74\x23\xc7\x09\x41\xd0\x3b\xaa\xa2\xe1\xd1\x4a\x96\x63\x72\xfb\x44\x19\xf4\x45\x5a\x9f\xd6\x09\xd2\x8f\xa3\x81\xca\x0d\x18\xc5\x88\x1c\xec\xbe\x56\xc3\x7a\x1b\xab\x4e\x32\xdb\xf2\xd7\x61\x2f\xbc\x46\x8b\x96\xf1\xf4\xb4\xfe\xd1\xdf\xc1\x93\x41\xa6\xfb\xa9\xf2\xa3\x79\x43\xd7\x14\x1f\xd3\x4e\x40\x5a\x31\xb9\xa1\xa4\xe9\x0e\x61\xc5\x63\x69\xdc\x27\xd9\x46\x6c\xfb\x0f\x03\x65\x29\xcd\x9c\x12\xc9\x9a\x1b\xca\xfc\xe5\xcc\x9a\x15\x6e\x89\xb1\xa3\x38\x7d\x17\x00\xcd\xe0\xdb\x88\x0d\xf7\x3f\xd6\x0a\xbf\x99\x19\x62\xde\x71\x58\x41\xc6\xc2\x32\xcd\x7c\xa1\x2d\x63\x8b\xa8\x37\x30\xad\x96\x53\x4b\xfd\x09\x61\x68\xf8\xb5\x93\xc6\x1b\xd8\x2c\xec\x1b\x47\xa2\x40\x86\xc1\xec\x60\xbe\x50\x84\xf0\x30\x75\x3a\xb9\x2a\x54\x07\x1e\xda\xab\xf1\xf2\xc3\x34\x2f\x30\xf0\x73\x43\xb9\x99\x59\x37\x94\xf3\xf5\xd6\x20\x4a\xba\x18\x66\x09\x8a\xbf\xfc\x1b\x24\x3e\x27\x94\x0c\xf7\x45\xd4\x35\x22\x5d\xee\xc3\x14\xcc\x89\xf9\x0f\x14\x28\x6c\xd5\x66\xdd\x48\x03\xe0\xd8\xdf\x10\xeb\xe1\xb4\x76\x49\x3d\xa2\x88\xd6\xfd\x28\x29\x90\xd8\x62\x41\xa1\x25\x84\x05\xc5\xf0\x03\xe9\xe6\x6f\x3f\x27\xf6\xff\xea\xd7\x99\xe3\x26\x4f\x09\x9d\xb4\x8b\x81\x6a\x9a\x5f\xac\xed\xbb\x17\x5f\x6c\xe7\xc5\x28\x49\xdc\x5c\x55\x4c\xf7\x5a\xce\x22\x0c\xe6\x53\xf8\x42\x8d\xc2\x14\x00\x31\xe0\x53\xb7\x5a\x94\xbb\x6d\xb5\x36\xb6\x17\x8e\xa4\xe3\x96\xf2\x29\xe3\xb0\x48\x6e\x2f\x9c\x51\x78\xca\x65\x6b\x8b\xdd\x74\xf3\x04\xe7\x0f\x49\x52\xa0\xc0\x8e\x2b\xe5\xce\x57\x69\x16\x87\xf0\xf0\x49\x65\x46\xa5\x60\x63\xc7\x55\x9f\xec\x7a\x2d\x83\x25\x47\x64\x2f\x59\x28\xdd\xee\x96\x93\x09\xf2\x20\x9b\x7c\x38\x12\x3b\x39\x60\x3c\x4e\xd3\x0e\xdc\x3a\xa5\x85\xf3\xfe\xad\x1a\x0f\xa5\xab\x36\x8b\x01\xf2\xc7\xbd\xe4\x8e\xbe\xd8\xa1\xd1\x6f\x54\xda\xe8\xf3\xee\x88\xf4\x65\xde\x0f\xc7\xdb\x4c\x23\x9f\x9f\x3d\xd0\x3e\x38\xbd\xcb\x73\x5a\x58\x6f\x1c\xfb\xf8\x32\xed\x63\xbc\x27\x6c\xb4\x59\x76\x35\xf0\xf3\xb8\xdd\x9d\xf2\x4e\x31\xea\xa1\x06\xf8\x5c\x9c\x66\x47\x2c\x09\xc5\xc8\xd6\xd9\x73\x95\x2f\x14\x56\xd6\x94\xfb\x52\x52\x1a\x07\xaf\x29\x7f\x19\x5f\xd4\x34\x30\x66\x66\xda\x26\xca\x26\x3c\x6c\xf8\x34\x7d\x69\x19\xaf\x79\x08\xc5\x6d\x0f\xe4\xce\x6c\x37\x0a\x0b\xb3\xc4\x2d\x53\x2c\x8c\x13\x0a\x0f\x72\x42\x21\xee\xf2\x22\x4a\x12\x5b\x70\xfb\x1e\x29\xeb\x1d\x0a\xd4\xfc\xba\xd6\xc5\x9d\x9b\x2b\x83\x81\xcd\xc8\x6a\xdf\xab\x4f\xbd\xa3\x84\xea\xde\x71\xcd\xe4\x62\x15\xd3\x61\x7c\xc9\x6f\xd3\x17\xc6\x69\x70\x71\xdc\x3a\xf0\x9c\x2c\x0e\xfa\x40\xf6\xca\x1a\x7b\x02\xe2\xd7\x1e\xeb\x28\xf4\xda\xbd\xda\x8e\x5a\x58\x5c\x68\x77\xd3\xd1\x92\x48\xbd\xe0\xf9\xdd\x08\x5a\x5f\x9f\xe5\x60\xc2\x49\x2f\xaa\x85\xc3\x2a\xee\xad\x44\x71\x9c\xb7\x7c\x25\x71\x5c\x09\x0e\x1d\x0f\xf6\xba\x0d\xf6\xa5\xa7\xe8\x0d\xb0\x0c\xb7\xd0\x04\xc3\xc9\x33\x85\x93\xc7\x19\x03\x95\x89\x23\x36\xe8\x75\x3a\x9f\x9c\xbe\xfb\xa2\xc8\xbb\x30\xfc\x8e\x87\x14\x9e\x50\xfb\x2b\x8f\x6d\x54\x06\x02\x73\x73\xfb\x75\x6e\xb6\xe0\x71\xad\x33\xea\x77\x79\x2f\x52\x14\xa1\x48\xba\x38\x88\xa1\x9b\x7e\x8c\x90\xf4\xd2\x62\x28\xb3\x4f\x71\x2a\x51\x34\xba\xeb\x63\xcf\xd3\x3e\x8b\x63\x1d\xd9\x88\x2f\xf3\x07\x26\x8b\x12\x2b\x94\x43\xa5\xc9\x27\x7d\xa4\x4d\x0d\xd5\x7b\x4d\x69\xbe\x51\x77\x30\xb7\xdd\x98\xe5\xd7\x85\x13\xdb\x72\x0e\x40\x80\x47\xe3\x06\xd5\x55\xdf\xcb\x9c\x7e\x39\x25\xb3\xa6\x96\x92\xe2\x03\x5b\x84\x5f\x57\x72\x96\x95\x95\xb4\x02\x8d\xfe\x4e\xa0\xa0\xd1\xdf\x71\xf1\xc9\x0c\xa2\x3c\x9f\xf4\x0c\xbd\xbb\x4a\xac\x87\x29\x40\x32\x77\x57\x78\x8c\x43\xb5\x8c\xb6\x3c\x14\xfa\x23\x10\xce\xd0\x34\xb8\x8e\xbf\x16\x90\xbf\xc7\xba\x1f\x57\xf4\x89\x55\x03\xa6\x10\xde\xf6\x98\xf6\xcc\x3b\xd6\xd4\x38\x78\x29\x5d\x8a\x2d\x7f\x61\x9c\x4f\x4f\x02\x04\xea\x6a\x4c\x67\x68\xb6\x07\x03\x2f\x11\xd8\xf9\x4c\xe3\x93\xbe\xcd\x4c\xc1\x89\xa0\x80\x6b\xe9\x2f\xf9\xa2\xf6\x35\x7e\xa9\x4c\x8b\xf2\xbe\x28\x92\x22\xff\x65\x6b\x6e\xbe\xa8\x6d\x50\xf2\x1a\x5a\xb5\x19\x03\xe2\xb1\xae\xde\xa1\x87\xc7\xaf\x5d\x8e\x63\x5f\x2e\x53\x9c\x9e\x48\x4f\xf0\x18\x22\xf0\xbc\x61\x86\xeb\x89\xf7\xe7\xe3\xaa\x15\xcc\x33\x06\xbf\x26\x20\x73\x29\xf2\xac\x75\xd6\x70\xbb\xe8\x67\xe9\xa8\xd7\xdf\xe5\x2b\xaf\xf3\xd4\xdf\x90\x60\xea\xa5\x48\x70\xa6\xe3\xde\xe2\xac\xe7\x04\x9f\x02\x06\x6a\xdf\xd7\x15\x68\xc4\x14\xd9\x28\xa1\xf5\x80\xc8\x70\x29\xf0\x20\xd4\x63\xb4\x07\x41\x7c\xfb\xa4\x51\xfa\xed\x9b\xa3\xa8\x60\x15\x7e\xed\x60\x8b\xb8\x7d\x51\xd1\x81\x37\xb5\xd0\xc8\xe6\xf6\x83\xaf\xdc\x36\x5f\x9f\xa5\xbc\xd2\x59\x1f\x2f\xf8\x0b\x2d\x48\x10\xc5\x51\xcf\xca\xdd\xc3\x61\x78\x45\x19\x91\x5c\x69\x32\x62\xe0\xf9\x26\x6f\x49\x06\x4d\x2a\xb9\x87\xa3\xb5\x3e\xca\xd3\xed\x25\x93\xac\x98\x81\xcd\xa2\xd0\x60\xbc\x28\xf9\x26\x76\xab\x64\x9c\x0d\x44\xb1\xe5\xbe\x41\x8b\x16\xdf\xfe\x06\xff\x05\xa2\xd7\x7b\x0a\x7a\x72\x49\x05\x9e\x61\x96\x16\xd0\x91\x7f\xc0\xef\xcd\xbb\x63\x25\xec\x0f\xd0\x0e\x4f\xcc\x15\x8d\xeb\x45\x8c\xbb\x58\xb8\x4f\x3b\x37\x9e\x1d\x7b\x0a\xe0\x22\xb0\xa0\xb8\xff\x93\xc0\xc4\xf3\xfb\x06\x0f\x6b\x46\x65\xbc\xd7\xaf\x13\x46\xf7\x32\x0c\x2b\x50\xa7\xe7\xb7\x14\x47\xfc\x28\x8a\x26\xfe\x13\x5a\x72\x48\x58\xb6\x34\x53\xe7\x46\xe0\xcd\x8e\xde\x52\x6b\x17\x88\x49\x41\x8a\x6f\x7f\x0e\x33\xb3\xed\x9e\xc9\x7a\x26\x29\x46\x86\x21\x3c\x9a\xea\x8f\xc3\xe5\xb2\xaa\x15\x8e\xd6\x7a\xa0\x73\x73\xed\x61\x38\xa1\x2a\xd8\x4f\x54\xea\xfd\x09\x92\x77\x51\x75\x7e\x54\x83\xc5\x6c\xce\x50\x49\x47\xf3\x72\xf8\xf6\xcd\x46\xdb\x21\x06\x32\x22\x24\x2c\x54\x29\xe0\x58\x2f\x6f\xe2\xe3\x98\xe1\xa5\x5b\xd8\xa6\x18\x65\x5d\xb3\x4e\x84\x46\xe1\x24\x95\xa5\x15\x92\x0c\x78\xc4\xb8\xa2\xdb\x15\x26\x8c\xda\xe7\x7f\x14\x54\x48\x4c\x5e\xc3\xff\x7a\x2d\x4d\x23\xdb\x04\xa8\x3e\xa0\x15\xcd\xc7\x30\x5f\xa8\x71\xd9\xf2\x28\x2b\xfa\x36\x7b\xc8\xcb\xcb\xec\xa0\x14\x53\x3c\xaa\xcb\xef\x22\x1d\x6c\xa5\xbe\xf2\xbe\xa2\xc7\x90\x94\xec\x0b\xce\x14\x9b\xbe\x31\x3a\x20\x57\x69\x4d\x60\x8a\xb9\xb3\xa3\x34\x78\x6e\x2a\x37\xd5\x3f\xc7\x0d\x74\x31\xbf\xbc\xb5\xd2\xfb\xf6\x83\xa2\xac\x58\xdf\x5d\x7e\x2f\xdd\x23\x60\x01\xdd\x40\xf9\x82\x6c\x69\xd1\xbf\xf3\xb4\x8b\x84\x0b\xef\xa1\xb6\xad\xce\x36\x26\xae\x67\xb4\xad\x98\x4a\x0c\x41\x88\x97\x80\xf2\x84\x07\xcf\x25\x79\x68\x12\xd3\x35\x93\xca\x8b\xa8\xd5\x29\x3f\x8e\x5b\x02\x63\xed\x5f\x84\xa5\x25\xaf\xbd\x7c\x41\x61\xa8\x37\xa8\xd3\x98\xb3\x0a\x2b\x72\x56\xfd\xfe\xe7\x7e\x79\xbe\xe5\xc7\x26\x9b\xda\x83\x64\xb3\x36\x28\x9b\x3d\xd0\xce\xd7\xa2\x65\xc8\xb3\xb0\x0d\x8e\xa2\x9b\x9e\xab\x75\x63\xe6\xe7\x89\x6f\x99\xd8\x2c\x27\xcd\x78\xba\xa3\x8d\x03\x36\xe7\xbc\xbb\xbc\x1c\xc5\x11\x94\x63\x9c\xce\xd1\x3d\xfc\x5b\xbe\x50\xd5\xd4\xc0\x16\x26\x66\x8f\x5e\x2d\x68\xc9\x8e\x4e\x9a\xa1\x7e\x0c\x25\x91\x68\x46\xd2\x72\xc0\xa2\x39\xa3\x8c\x0d\xf2\xb0\x9f\xc6\x26\xc3\xc8\x15\x5d\x9f\x9f\x8e\x55\xb3\xe5\xac\x12\xaf\x3c\xda\x64\x63\x64\x4d\x5e\xf0\x1c\x53\xc4\x37\x95\xdc\x36\x74\xa9\x1c\x8a\xc1\xb5\x5a\x18\x18\x27\x3e\x8f\xfe\x49\xf6\x22\x69\x87\x48\x53\xf2\x53\xc5\xf2\xf9\x54\xcd\x78\xc2\x34\xcb\x46\xc3\xa2\x45\xb3\x3c\x44\xf8\xdf\x0f\x14\x74\xff\xf7\x3f\x33\x45\x8a\x12\xd8\x30\xb6\xf4\x62\x52\x24\xf0\x4d\xd5\xc8\xc9\x6c\x1e\xf1\x68\x98\x6f\x1e\x7d\x1d\xb9\x91\x0d\xde\xab\xb6\xdb\xb3\x0c\xf3\x57\x7c\x75\xd7\xef\x54\xbf\x35\x1b\x25\x2b\x36\x6e\xb5\xbe\xf2\xcf\xf9\xce\x03\x3c\xca\xaf\x9b\xcc\x2b\xfa\x26\x96\x5e\x91\x9a\x19\x49\x5c\xdb\x54\x86\x72\x51\x12\xaa\xbe\xe8\xb5\x40\xe5\x8e\x67\x55\x79\xfc\xf1\xf8\x73\xd5\x04\x63\x71\x7a\xb1\x7d\x70\xfa\xd9\x96\x9f\xd1\xdc\x50\x40\xb5\xba\xfb\xd4\xec\x81\xf6\xd0\xda\x15\xba\x41\xa0\x57\xbf\x46\x37\x88\x5f\xd7\x7a\x34\x07\x9e\x13\xf1\x0b\xc9\x32\x44\xd5\xad\xa2\x1b\xa4\x71\xbd\x94\xd0\x4d\x78\x74\x19\x86\x05\x22\xc5\x5c\xc6\x55\x1c\x51\xb7\x9b\x50\x74\xa2\x7b\x86\xcf\xc2\x9c\xfa\x3d\x1c\x2e\x7c\x31\xf6\x8e\x98\xa6\xcb\x4d\x54\xba\xc3\x72\x8a\x50\x01\xc8\x17\x4d\x32\x28\x79\x91\xb1\xa8\xa9\xa8\xf8\x9d\xac\xd8\x4f\xf8\x08\xfb\x5a\xd5\xec\x34\x32\xbb\x14\xad\x90\x47\x33\x88\xe5\x57\x2b\xf3\xaf\x3d\x94\x92\xa0\x93\xbd\x5b\xf9\xcc\x40\x53\x90\x95\x21\x15\x0e\x36\x4a\xba\xa3\xd0\xe6\x93\x94\x6e\x70\x08\xa7\xa5\x85\xa3\xe5\xb8\x82\x1f\xe3\x06\x4a\x98\x6f\x54\x9b\x32\xd9\xd0\x16\x55\x65\x6f\xa7\x06\xef\x5d\x3e\x86\x59\xfa\x12\xd9\x8b\x50\x8a\xcc\x19\x9d\x96\x96\xbb\x88\xe3\x09\xa9\xc5\x64\xa3\xa9\x70\xdf\xc6\x85\x83\x7b\x33\x36\x4a\x49\xc2\x9e\x6a\xd4\x85\xa9\x24\x13\xb3\x5c\x45\xfd\x75\xa0\x5c\x24\x20\x52\x8d\x6a\xe0\x88\x52\x85\x8d\x92\x30\x4d\x7a\xd9\x28\x2a\xb8\x75\xb7\xe0\x21\xe0\xfb\x84\x52\xb0\xa9\x24\xa9\x86\x29\x81\xb3\x4c\xbc\xdb\xe7\xd4\xc7\x95\x33\x0b\x4b\x89\x8b\x37\xb9\x3a\x1c\x6f\xd1\x3d\x63\xd7\x59\x3c\x68\x76\xcd\x0f\xbc\xb4\xc2\x3b\x15\xca\x5f\x1c\xd9\x55\xc2\x18\x08\x40\xe4\x12\x60\x0b\xb8\xf8\x3e\xd8\x9e\x7c\x01\x49\x16\x0c\x31\xce\x51\x7b\xdc\x95\x4b\x8b\x0a\xf5\x50\xae\x6a\x7e\x2f\x65\x23\x09\xa2\x2b\xd8\x70\x77\xc6\x8f\x28\xb9\x5e\x93\x17\x0f\xd3\xea\x17\x6f\x1d\x35\x03\xbe\x88\x53\x02\xa0\xf2\xdf\xd0\x2e\x62\xe7\xd5\xdd\x13\x2b\x50\x90\x28\x78\x3d\xf0\xdf\xd0\x36\x66\xef\x43\xb4\xf1\xf9\x9d\xb5\x84\xf1\x0d\x9a\x27\xa0\x32\xdb\xd5\xf1\xc0\xba\x2d\x20\x7b\xf1\x6b\xee\x57\xa7\x73\xdd\xf5\xdd\xaa\x41\xce\xd0\x49\x01\x62\x6a\xc7\x82\x5b\x6a\x44\xf3\x09\xbe\x02\x8e\xcb\x3b\x4a\x96\xb6\xd5\x51\x59\xd9\x69\x75\x34\x0c\x47\xaf\xbc\xc2\xad\x38\x2c\x3a\xac\x55\x7e\xad\x5a\xec\x45\x9a\x59\x42\x44\x60\xc5\xdc\xa2\xfb\xc3\xaf\xc7\x4f\x56\xe3\xef\xd3\x65\x89\xf7\xa8\xaa\x3a\xa6\x3a\xca\x3c\x9e\x8d\xdd\xf1\x70\x5f\x1b\x7b\x82\xf2\x9d\xc0\x77\xf6\xa6\x36\x68\x35\x20\xfc\x4c\x10\xc3\x17\x1d\x88\x3f\xad\xf8\xb2\xa2\x33\x82\xbe\xcd\x25\x3c\x4c\x19\xd7\x29\xf0\x1f\xab\x52\xf0\x74\x92\x86\x18\x62\xf9\x59\xfe\x70\x11\x9e\xa7\xfb\x8d\xca\xaa\xde\x60\x2f\x53\xfe\x25\x6b\xb2\x28\xef\x13\x9a\x0c\x08\x0b\x96\x1e\x11\x10\x50\xcb\xd9\x3e\xa3\xb7\x82\xf4\xe3\xdd\x06\xb0\xe6\x42\x7b\x60\x8a\xb0\x8f\x0d\x2b\x82\xba\x1e\x85\x74\x4c\xf1\x47\x56\x4d\x6f\x64\x63\x20\x02\xb7\x2e\x12\x84\x61\xeb\x62\xed\x4c\x22\x33\x82\x22\x83\x47\xae\xef\x29\x7f\x07\x1b\x58\xda\x4d\xdb\x8f\xe3\xa7\xdb\x99\x1d\x9a\x28\xa3\x5e\xa3\xf3\xfd\x72\x5f\xe3\xaa\xaa\x59\xfb\x36\x8f\xd8\x64\xbd\x32\x61\xd6\xa0\xde\x73\xca\x99\x79\xb8\x9e\x99\x41\xd4\xcd\x5b\x8a\x26\x12\x28\xb4\xd1\xeb\x4d\xec\x30\x33\xca\x8b\xcc\xc4\x11\x63\x2d\x85\x10\xa5\x30\x25\xaf\x6a\xf3\xe7\xcc\x96\x95\x14\x96\x2f\xda\x90\xac\xa0\xcc\x17\x6a\x9e\x1e\xa6\x49\x1e\xe5\x85\xf6\x94\x3e\xa9\x3c\xa5\xeb\xca\xaf\x65\x25\x99\x8e\x92\x2e\x47\x72\xae\xef\x14\x93\xe2\x82\x6a\x54\x97\x19\x56\x77\x64\x39\xe7\x13\x6c\x72\xcb\xd9\xf6\x1e\x51\x88\xca\x30\x1d\x0c\xa2\xa2\xb0\xf6\x21\xe5\x6e\x73\x12\xd1\xcf\x8d\xc3\x94\x10\x1e\xed\x5c\x36\x38\x1b\xfb\x62\x96\xfb\xf8\xa2\x7f\x41\x1f\xcc\xe0\x8d\x40\x71\x14\x17\x54\x90\xbc\x12\xf8\x46\xc2\xc2\xb8\xea\xc1\xe3\x8c\x3d\x76\x6e\x3c\xa2\xe6\x6a\x79\x91\x4f\xf8\x80\xf0\x7f\x8d\x15\xb3\x05\xcc\x40\xd1\xff\x7b\xd2\xb1\x38\xc2\x2c\xcd\xd7\xf3\xc2\x0e\x04\x8a\xe0\x0c\x58\xe7\x95\x81\xaa\x3e\xe8\x97\x49\xa2\x83\xee\x06\xfb\x94\xd0\x6d\x16\xcf\x12\x45\xec\x4b\x7b\xd8\x31\x02\x8c\x6d\x39\x5f\xfd\x33\x5a\x74\x3a\x4b\xf3\xa1\x0d\x8b\x7c\x97\x47\x43\xb2\x84\x2d\x8a\xf1\x6b\x63\x4f\x8f\x42\xfe\xc1\xff\x1d\x47\x00\x4e\x59\x36\x56\x17\x7a\x8b\xd0\x4f\x56\xa3\x5e\x99\xcd\xf1\xb2\xc0\xb3\x80\xfc\x08\xbf\x0e\x7c\xa5\x53\x44\x71\x61\xbb\x93\x55\x8c\xfa\x67\xaa\xa3\x56\x70\xed\xf5\x5e\xf3\x0b\xed\x9c\xad\x23\xfd\xb4\xed\xcf\xb5\x04\xf4\x9f\x37\x60\x24\xcb\xf2\xb4\x6b\x3f\x53\xa1\xcd\x49\x4e\x64\x3f\x4f\xb7\x47\x4a\x42\x92\x0b\x06\xa5\x07\xc3\x9f\x16\x38\x48\x48\x01\x1f\x20\xa5\x5f\x67\x30\xba\xb8\x50\xc1\x38\x13\xec\xe8\xfb\x3f\x8b\x0a\x1f\x71\xf6\x91\x4e\xeb\x6b\xfb\x35\x46\x5b\x60\x3f\x53\x9d\xd6\x8b\x2f\x96\x1f\x24\x78\xee\x3f\xfc\x7c\xa7\xf5\x2b\xcf\xbb\xf5\x4a\x28\x83\xdd\x1d\x55\x81\x3e\x82\xa3\x04\x1f\xc8\xaa\xb1\x0a\x81\x28\x8d\xea\xc7\x3a\x3b\xbf\xe4\x30\x75\x74\x63\xa9\xc9\x79\xfb\x9f\x6c\xd0\x40\x51\xcc\x42\xe8\xb8\x74\x8e\x22\xdf\xf8\x2a\x6f\x6d\x96\x41\x42\x7a\xfe\x48\xc7\xa3\x12\xd1\xe4\x44\xec\xbf\x4f\x33\x4b\x1c\x5d\xb0\x1d\x41\x8e\xb2\x67\xa3\xf5\x75\xaf\xa4\xad\xcb\xf9\xcf\x6f\x10\x04\x0e\x15\xf1\x4f\x1a\x7d\x6d\xba\x36\x47\x1d\xe2\x74\x54\x17\xa7\x9d\x8e\xea\x13\x0e\xd8\x68\x7a\x49\x9a\x17\x51\x28\x53\x0f\x54\x2a\xef\x61\xc5\xca\x18\x9b\x7e\x36\xba\x76\x97\xdc\xdf\x26\x76\x94\x11\x91\x3e\x67\x05\x04\x01\x71\x7b\xd4\xf5\x8d\xc0\x43\xfc\x3f\x6d\xb2\x97\xe8\xda\xb8\x80\xfb\x8e\x23\x0b\x95\x1f\x25\x76\x96\x8f\x57\x40\x4c\x59\x94\xb3\x6c\x24\xdb\x6d\x04\x1e\xfb\x78\xc6\xed\xaa\x6e\x1a\x8e\x06\x36\x29\x26\x7c\xd1\xc1\x96\xbb\xac\x44\x11\xf8\x6c\x75\x72\xe3\x11\xe5\x1f\x59\xd8\xec\x01\x25\x7e\x87\xb4\x97\x93\x54\xdc\x0f\x76\x5b\xc6\x56\xe1\xa4\xc9\x03\x33\xd7\xd1\x2b\x15\xfb\x2b\xfa\xa6\xd8\x06\xbb\x20\x05\xec\x5a\x46\xae\x64\xd9\xd9\x24\xae\x33\x1c\x25\x61\xdf\x61\xe1\x84\xad\xee\x21\xbf\xc7\x6b\xbb\xf3\x97\xda\xf9\xfa\x60\x29\x8d\x27\xb4\x8d\x31\x62\x1a\xbe\xe5\x44\x47\x39\x4b\xdd\xac\x15\x36\x24\x8e\x1f\xad\xba\xcf\x44\xb7\x12\x3d\x59\x7e\x5d\x9b\x93\xcc\xcc\xb4\x6d\xd2\x8b\xa3\xbc\x3f\x51\xee\x61\x51\x0f\xf4\x38\x25\x5e\x36\x22\xeb\xbe\xfd\x87\x3a\x7c\x7a\x17\x82\xc2\xc8\x96\xff\x5f\xfc\x11\x5f\x34\x51\x2d\x06\x51\x37\x89\x7a\x7d\x34\xa1\xb0\xcc\xee\xa9\x25\x77\x2f\xa8\x37\xa1\x16\xda\xcb\x69\x66\x43\x93\x7b\x84\xa1\xd6\xc5\xe6\xd7\x2a\x97\x2d\xa2\x81\x65\xf3\xf8\x2d\xb4\x38\xb7\x2e\xba\x99\x5a\x37\x5d\x65\x10\x21\x22\xec\x8f\x74\xb8\xfd\x11\x40\x0b\x4e\xb3\x5e\x4d\x85\x61\x7d\xca\xa7\x34\x49\xa3\xcb\x89\x8d\x70\xa3\xd5\xec\x71\x54\xdc\xd6\x78\x9a\xa3\xd5\xac\xde\x76\x1f\xf7\xc2\x62\x27\x39\x38\x70\xc9\x83\x0c\x00\x31\x64\xa2\xa3\xfa\x23\x77\x28\x47\x76\xda\x55\xe5\xd7\x91\x5e\x9f\xd2\xf7\xc4\xc2\xc7\xae\xbd\xa3\x55\x0a\x30\x2f\x42\x75\x7c\x42\xb3\x57\x99\xc0\xcd\x8c\x43\x95\x0a\x6f\xd1\x0d\xc6\x49\xcd\x83\x64\xfe\x0b\xa4\x19\x48\x14\xee\xe3\x77\x22\xb5\xdc\x5b\xb3\x54\xf9\xa5\x76\x91\x59\xc1\xb0\x08\x1a\x45\x65\x3c\x67\x83\x27\xaa\x55\xc3\xcc\x4c\xfb\xe9\x9f\xa3\x5f\x87\x12\xea\x48\xa0\x94\xb1\x1e\xdd\xa8\x9a\x52\x7f\xe3\xab\x15\x3a\x9d\xdb\x6e\xb3\x07\x9c\xa0\x36\xdd\x02\x04\x46\xc6\xee\xa2\x1a\xdb\x49\x22\x4a\x78\x6e\x57\x35\x86\x91\x51\x88\xe8\xdf\xfe\xe9\x58\x6b\x71\x94\x0f\x0d\x7b\xf2\x12\x6a\x36\x67\xb8\xeb\xd1\x89\xd7\xbc\xdc\xd7\xd7\x1e\xc3\x9c\x1c\xdb\x6b\x57\xa7\x3c\x10\x58\x86\x4f\x7b\x5c\xff\x05\xd6\x20\x9e\xdf\xc7\x20\xbc\x01\x84\x77\x8d\xce\x13\xc1\x33\x7b\xf0\xf9\xdd\x40\x0b\xeb\xde\x56\x5e\x59\x3b\x3a\x65\xc5\xcc\x85\x14\xb9\x0b\xe3\x2e\xea\x74\xae\xa0\x1d\x48\xb7\x02\x30\x96\xc3\x8a\xbc\x78\x58\x35\xf5\x96\xb3\xc8\xb2\x62\xb8\x0c\x15\x3c\x8a\xb2\xee\x13\x34\x37\xd7\x4e\x97\x97\x89\x3d\x8d\xaa\xee\x72\x25\xaf\x29\x6f\x0b\xab\x39\xd0\x4f\x11\x4d\x45\xa7\xa1\x69\x06\xc3\x94\x87\xbd\xca\xff\x75\xc1\xf9\xbf\x3e\xaa\x35\x14\x07\xb6\xaa\x4e\x5b\xc1\x5e\x3e\xac\xe4\xbc\x6c\xf2\x24\x3d\x04\xc6\xf4\xe1\xac\x77\x89\xa3\x32\x61\x2c\x17\x8d\x34\x87\x55\x99\xcd\xbb\x0b\xb7\x77\x62\xa3\x0a\xf8\xf1\x3e\xc8\xff\xbb\x16\x46\x3c\xad\x32\xf7\x7b\x4a\xb6\xe4\x30\x56\x0d\x42\xec\x6d\xf4\x40\xd8\x3a\x0f\xab\x1c\x33\x29\x1e\x8b\x08\x7a\x94\x7e\x26\xee\xdc\x7d\x5a\x82\x02\x13\x2e\xef\xb4\xf4\x26\xfc\xb1\x74\xdb\x91\x59\x87\x66\xdd\xb5\xa0\x00\xe9\xfd\x7f\x78\xe1\xf0\x95\xca\xa9\x17\x0f\xcc\x7c\xf6\x98\xbd\xe1\x49\x17\xd6\x68\xe8\x1e\x8a\x28\x81\xdd\x3d\xee\xe6\xe5\x43\x9b\x74\x09\xe5\xa3\x44\x86\xa0\xf9\x20\x0c\x2b\xff\x15\x6c\x32\x52\x28\xdd\xcb\x0a\xa5\x7b\xd9\xc9\x4a\x0c\x63\xf1\x8a\xc4\xd1\x76\x49\x0d\xe8\x2e\x05\x5e\xcb\xc4\x84\x7d\xdb\xdd\xa5\x44\x0a\x27\x30\xdf\xc1\xd8\x6a\x67\xa7\x42\x88\xf4\xf5\xfa\x35\x44\x08\x04\x82\x93\x4a\x22\xee\x8e\xa2\xf8\xc7\xd1\x80\x4b\x60\xa6\xa2\x39\xd2\x93\x17\x59\x44\xa7\x59\x96\xbb\xef\x65\x27\xe9\xda\x53\x2d\xa7\x01\xbf\x03\xe9\xb4\x68\x0d\x78\xbb\xe7\x33\xb4\x1a\x71\xfa\x5e\x56\xd0\xd3\x9f\xe0\x33\x80\x4a\xb9\xa8\x1a\x25\x18\xfd\x01\x2d\xcc\xe2\xc5\x02\x20\xa3\x05\x8f\xe5\x7b\x11\x2b\x16\x47\xda\x39\x3e\x77\x80\x14\x3a\xad\xb8\x33\x0c\xd3\x65\x13\x49\x2c\x53\xcc\x3d\x8e\x23\xd3\xe6\x77\x43\x6c\x95\xe9\x9b\xc6\x0b\x8f\x15\xd1\x9a\x8f\x4e\x31\x46\xfa\xac\x49\x46\x3f\xcd\x87\x51\x61\xe2\x09\x1f\x8b\xee\x54\xf8\x0b\x65\x30\x13\xef\xc1\x47\x34\x69\xb8\xe8\xef\xf2\x15\xfc\x0d\x14\x0b\xa7\xd0\x53\x14\xb0\x1c\xfd\x04\x67\x58\xee\xf4\x0a\x5f\xc3\x9d\xc2\x63\xba\xa0\xdc\xa0\x4d\xbe\x42\x3a\x10\xd3\xbe\xbc\x71\x64\xde\x53\xca\xec\xe4\x2f\xb1\x39\x59\xc6\xac\x01\xa6\xbb\xd0\x0e\xb3\x51\xd7\x4e\x68\xe7\x71\x7a\x2f\xdd\x79\x12\x3a\x6b\xa3\x8b\x51\x5a\x98\x98\x3a\x6e\x48\xff\x21\x71\xc6\xaf\xb5\x7d\xad\xc9\x2c\x6d\x76\xd5\x57\x45\x4c\x91\x26\xab\xdf\x68\x45\xc1\x33\x4a\x84\x66\xb4\x0e\xb5\xeb\x3a\x4a\xa1\xbb\x15\xc1\x80\xf1\x53\x4a\xcf\xa3\xb0\x59\x94\x66\xa6\xb0\x93\xe5\x01\x85\x10\xc6\x3e\x8f\x7c\x81\xcf\x16\xe9\x1d\x3f\x37\xb8\xae\xcf\x97\x34\xb3\x79\xd1\xf2\x4d\x87\x4d\xe5\x1f\xb0\xa9\xf4\xe8\x46\xf9\xcb\x93\x1e\x42\xf1\x27\x63\x25\x4c\x8c\x66\x06\xa2\xe0\xf1\x80\x3a\xbc\x58\xf8\x77\x2b\x29\x97\x49\x56\x1e\x57\x88\x8e\xbd\x74\x4c\xe2\x67\xe2\x79\x60\x17\x5c\x42\x5e\x85\xb8\xf7\x0e\xe5\x17\x4e\xaa\xdc\x71\xdf\xfe\x37\xac\x2d\xfe\x4c\xe4\x58\xa8\x3d\xef\x8f\xfd\xac\xe9\x3f\x50\x22\x86\xd1\xe1\x89\x40\xcb\xdd\xed\xd1\xa1\x88\x61\x19\x5c\x51\x40\x7b\x01\x71\xe9\xdd\x40\xc1\x1d\x2f\x29\xfe\xc5\x16\x05\x7e\x01\xc3\x36\x21\x78\x6d\xec\x67\x52\x48\x7d\x7e\xa0\x26\x59\x3f\xf0\x16\xbd\xa3\x6c\x09\xff\xee\x05\x6e\xb3\x9c\xc6\x33\xe7\x0b\x7f\x92\xc4\xe9\x9a\xd0\x1e\x25\xfb\x56\x8b\xeb\x6c\x43\x9f\x62\xb6\x9d\xd9\x65\xdf\x38\x93\x62\xae\x2c\xeb\xf9\xb5\x6a\x86\x8d\x92\x51\xce\x8e\x8f\x73\x73\x9c\xd2\x4d\x52\x96\x8d\x93\x8a\x41\x31\xf2\xc0\x1a\x26\x77\x6b\x36\x46\xe8\xc0\x2e\xbf\x1f\x78\x05\xca\xfb\x5a\xb9\xe4\xd7\x34\xae\x74\xb4\xf4\x92\x0d\x8b\x5c\x53\xa1\xce\x2a\x4e\xfa\x69\xda\xe9\x15\xd1\x3b\xfe\x47\x81\xb2\x44\xb6\xe5\x22\xce\xd2\x95\xc8\xb4\x3c\xd7\x17\x33\x2a\x81\x7a\x37\x54\x42\x45\x3f\x1d\xe5\xe2\xc2\x81\xb8\xbd\x73\xa3\xdc\x4c\xfc\xba\xb3\x3d\x18\x2c\x2c\x2e\xb4\x7b\x23\x9b\x63\xbc\xad\x1a\x55\x0b\xdc\x49\xb8\x42\xdf\x1c\xdb\x6f\xc3\x55\xd4\x22\xaa\x30\xa1\xbb\xb5\x9c\x08\xe3\x76\x22\xa9\x93\xf2\x56\x89\xd9\xd9\xb5\x2c\x2a\xe0\xa0\x86\x08\x75\x57\xb1\x30\xb8\x02\xc1\x29\x7e\x51\xcb\x34\x46\xd4\x9d\x4a\x6c\x9e\xb7\x94\xed\xef\x4f\x91\x1f\xf1\x85\x0a\x46\x2b\x11\x23\xa7\x90\x3a\xdd\xc1\x7d\x96\x3b\xa7\xb2\x8a\x26\x0f\x8f\xa5\x68\xc5\x4e\x78\xc2\xf2\xa7\xe3\x8a\xd2\xbf\x6f\xd2\xde\xa8\x79\x41\x51\x5f\x77\x20\x96\x4d\x54\x8f\xb2\xd9\xaa\x6a\x3a\xbe\xef\xea\xc6\xb4\x6b\x5d\xc7\xdb\xe9\xb1\x94\xdf\x5a\xc4\x7f\xe5\x7e\xbf\x64\x8b\x38\x4a\xb8\xc6\x44\x98\x46\x07\x98\x5f\x37\x41\xd5\xf2\x22\x8b\x56\x5c\x75\x8b\x84\xfd\x13\x0a\x25\xfc\xba\x49\x70\xa2\x6b\x92\x28\xef\xb7\x14\xa1\x0d\x27\x9b\xf0\xaa\x1a\x60\x8e\xb9\xcd\x56\xc9\x13\xcf\xa5\x5f\xc7\xf4\x0d\xdb\x52\x8a\x28\x93\xb5\x42\x6e\x66\xa6\x5d\xa4\x59\x42\x77\x5b\x44\x35\x3d\xd3\xed\x9a\x32\x5b\x3b\x53\x25\xe8\x2c\xa3\xef\xc8\x07\x69\xa0\x74\xab\x2f\xd4\x4e\xbc\x99\x99\x76\x16\xad\x12\x6a\xbb\x5c\x05\x58\xa0\x6f\xe8\xd5\xfa\x86\x53\xc6\x58\x32\x6e\x16\x8e\x3e\x0f\x7b\x95\xf1\x85\x12\x39\xeb\xdb\x70\x85\xce\x0f\xd6\x1c\xc1\x77\xc0\x03\xb9\x4c\x73\x20\x69\x78\x7a\x91\x8f\xba\x51\x23\x8d\x56\xb2\x74\x4d\x59\x06\xff\x48\x5b\x71\xfc\x28\xd0\xb2\x60\x03\xd3\xb3\xbb\x95\x63\xdd\x1b\x81\xe7\xa9\x9d\x53\xba\x5f\x6f\x8e\x55\x50\xfd\xbe\xf2\x37\x61\xb5\x1d\x1c\x26\x6c\x34\xc5\x17\x0d\xc4\xa9\xd9\xf6\x28\x49\x6c\x68\xf3\xdc\x64\xeb\xb8\x79\xae\xee\x9a\x9b\x73\x7d\xe6\x87\x2b\xcc\xa9\xcf\x55\x49\xc2\x4e\xf0\x62\x57\x47\x95\x3c\x9c\xa3\x2a\x85\x51\xc9\x15\x78\x54\xeb\xa4\x57\xbf\xf1\x55\xfe\x7b\xd0\x68\x90\x8f\x8d\xa9\x62\xc1\x5f\x9f\xd6\x22\x1d\x97\x51\x0b\xb9\x56\xb3\xd7\xf8\x60\xf5\x00\xe9\x42\xd2\x2d\xc6\xc5\xbb\x7c\x8e\x22\xa5\x07\xab\x03\x15\x71\x8b\xfa\xc5\x38\x13\x3f\x46\xca\x8b\x38\x05\x8d\x11\x27\x57\xec\xbf\x2f\x01\xd5\xf1\xbd\xde\x0e\x7c\x27\x71\x39\x8a\x59\xf5\x49\xce\x40\x1f\x0e\x4e\x37\x61\x87\xc3\x74\x30\x34\xa1\xee\x68\xed\xec\xf8\xf5\xbe\x73\xa3\x01\x87\x65\x86\x43\x0c\xf2\x44\xaa\x1a\xc0\x27\x7e\x5d\xd1\xe1\x7d\xb9\xa5\xfc\xe6\x19\xc0\x2f\xe2\x71\x8d\x52\x26\x83\xa5\x28\x81\xc1\x98\x74\xa8\x3e\xa4\xdb\xa4\x25\xc0\x20\x0e\x75\xbf\xaa\x7f\x5e\x97\x11\x7c\xa1\x3d\x14\x83\x0e\xcc\x9d\x20\x55\x8f\x77\xba\xa8\x6a\xe7\xcb\x63\xef\xae\x18\x9a\x61\x94\x17\x99\x49\x20\xa1\x2e\xc2\x04\x4a\x54\xff\xb8\x2a\xf9\xfe\xab\xa2\xdf\xf2\x29\xdf\x93\x1d\xff\x4c\x9e\x74\x6a\x97\xa3\x24\x62\xae\x98\x42\x2c\xdf\xc2\x5e\x17\x7c\x1c\xfd\x5c\x84\xb4\x53\xe3\x8a\x41\x56\x94\xf4\x26\xfd\x39\xf0\x7b\x63\xd5\xa1\xbc\x89\xe5\x28\xb5\x70\xcb\xf9\xda\xdd\x0e\x9e\x54\x23\xbd\xd5\x34\x1e\x95\xc5\xde\x44\xa5\xbb\xed\x63\xe8\xef\x57\x78\xef\x0e\x0b\xd7\x1d\x44\x49\x04\xca\xb2\x12\xc5\xd5\xd0\x1f\xe7\x49\x66\x56\x57\xa3\x32\x11\xa6\x8d\x86\xda\x0e\xe4\x01\x7e\xdd\xc4\xdf\xcb\x0b\x93\xc0\xa5\x45\x70\xed\xb4\x9e\x30\xa0\xbb\x49\x9f\x23\xbb\xa1\xc1\xd9\xef\x25\x33\x34\x09\x61\x5d\xcb\xdf\x84\xb4\x10\x2a\x05\xfc\xba\x49\x4a\xda\x44\x5d\x99\xe5\x89\xb3\x3a\xfd\x39\x5f\xd4\x56\xd0\x81\xe7\xda\x26\x8e\xcb\x80\xe9\x94\x17\x90\xe0\xf3\x6b\x95\x04\x3c\x9b\x76\x27\x54\x17\xf2\x46\xc5\x03\xae\xfc\x13\xa4\x8c\x47\x6b\x94\x6d\x0a\xca\x76\x18\x85\x36\x29\x44\xe0\xdd\xf9\x6a\x28\xd1\xa4\x86\x4e\x7d\x9e\x0e\xec\x52\xda\x85\xb6\x8a\x13\xac\x50\x72\x17\xf2\x7c\xc8\xf2\x29\x8d\xbb\xa4\x8b\x84\x9a\xfc\x36\xa5\xe0\x68\xb3\x9d\x54\xb4\x37\xc8\xea\x22\x4c\xef\xed\xa8\x96\xce\x55\x35\xaf\x4e\x43\xb8\x00\xd2\x7d\xc1\x71\x7d\x07\x89\x1c\x5f\xa8\x1b\x93\xf5\x44\x2a\x16\xb9\x3f\x2b\x69\x39\x52\xb6\x23\x81\x6d\xe9\x5e\xd9\xc5\x26\x8d\x00\xfb\xcd\x51\x79\xb4\x5a\xf6\xce\x40\x0b\x0c\xb9\x09\xbf\x76\x75\x41\xd7\x2e\x47\x09\x8e\x6d\xd4\xfd\x60\x74\xf1\x6b\x55\x75\xf2\xe0\x61\x52\x0d\x0b\xc0\x51\x60\x30\xba\xb2\xd5\x04\x94\x46\x40\xea\xdb\x9f\xc7\x81\xe7\xca\xdb\x62\x72\xa2\xfd\x1e\x9c\x76\x4d\x39\xb5\xc0\xce\x2b\xf4\xd2\x37\x47\x26\x2b\x6c\x16\xaf\xef\xd6\x35\x3a\x85\x4a\xa1\x8f\xd1\x7d\xe2\x59\x76\x47\x6f\x5d\x6e\x7b\xa0\x95\x7d\x48\xb9\x9e\x5c\x51\x9d\xba\x1f\xaa\x16\xc3\x52\x9a\xe6\xe4\x3a\xb3\x75\x11\x51\x07\x45\xdd\x1b\x88\x3a\x88\x47\x3b\x30\x50\x64\xa7\x82\xc0\xbf\xe9\x44\x07\x64\x47\xe7\x61\x70\x70\xba\x01\xb6\x51\x06\xdb\xcc\x6a\x13\x32\xa7\x10\xaa\xb8\x25\x5e\xa3\x7a\xc9\x64\x3d\x13\x25\x62\x4d\x8a\x34\xf1\xba\xf2\x73\xbc\xee\x25\xe1\x0a\x32\xe7\xa2\xdb\x21\xa8\x56\xcf\x82\xf0\x76\x82\xbd\x6c\x64\x63\x79\x43\xe9\x10\x51\x80\xe4\x8b\x0a\x59\x3c\x8e\xba\x7b\x29\xa1\xc7\x4a\xbc\x84\x72\xdf\x35\x23\x1d\xd6\x03\x6a\x4a\x58\x01\xcc\x8f\x76\x44\x74\x6f\xc6\xc0\x26\xb4\x12\x55\x7c\xef\xeb\x0d\xcc\x6f\x6e\xaa\xec\xf2\xbc\xda\x49\xfd\xf5\x41\xba\x16\x15\xaf\x4c\x78\xab\x4f\x6c\x7b\xa9\x82\xca\x25\xc7\x3e\xb7\xca\x8d\xd8\xbe\x4c\x7f\x20\xd2\x22\x2d\x67\xf4\xf4\x09\x71\x5f\xb0\xad\xaf\x05\x1a\xf4\x62\xe2\xa2\x1f\x9a\x8c\xfb\x98\xba\x57\x22\xd1\xbc\x69\xda\x65\xb2\x5e\x94\x70\x75\xd1\x74\xd2\xfb\xb4\x23\xef\xa7\x43\xd9\xe9\x72\xf3\x3d\x56\x78\xac\x36\x3a\xa3\x4b\x81\x62\xba\xa3\xd1\xf0\xe9\x2f\xa8\x62\xf2\x82\x2a\x06\x2e\x34\x55\x3f\x61\xda\x4b\xd2\xbc\x8c\x9b\x11\x7e\x94\x30\x43\x5a\xf3\x9e\x7d\xd2\x58\xac\x44\x45\xd8\xaf\x0a\x8d\xa0\xe9\xe6\x54\xfa\x1a\x6e\x45\x37\x0d\x8b\x4c\x62\x8a\x94\x28\xaa\x5c\xa9\x55\x02\x73\x73\xd4\x66\x0a\xe1\xde\xc5\x9e\xf8\xc8\x82\xc5\x20\xff\x11\x6d\x21\x95\xf7\x27\x34\xd5\x91\xde\x5b\x0e\x40\x5f\x17\x1f\x1a\x3f\xe4\xe1\xd0\x06\x6b\x1d\xa5\x34\x9a\x60\xfc\x5a\x75\x26\x96\x09\x5b\xe4\x8a\x33\x94\x7b\xff\x4a\x71\xc6\xff\x95\x17\x25\xec\x19\xae\xb2\x71\xfb\x60\x93\x55\xb1\x23\x45\xd7\xaf\x6e\xeb\x76\x70\xba\xbd\x4c\xf8\x2b\xbf\xf7\x94\xf4\xf8\x39\xc5\x51\x59\x89\xe2\xb8\xcc\x84\x1c\x5f\x8b\xe5\x51\x91\xc5\xc0\xf6\x0a\x87\xe5\xc9\x86\xd6\xd0\xfe\x76\xdf\xc6\x43\x21\xab\x08\x9f\xc9\x37\xda\xff\x8f\xb1\x46\x7d\xd6\xca\xce\xf2\xd4\xb4\x26\x8b\xf1\x18\x1d\xcb\x53\xb1\x2b\x14\x72\xb7\x17\x0d\x06\x51\xb8\x42\xbf\x09\x87\xe0\x1b\xf4\x9b\xf8\xf5\x76\xb4\x36\x9d\xe4\x07\x9e\x7b\x90\x22\x81\xd2\x52\x16\x75\xae\x0d\xad\x85\xbe\xa5\xdc\x57\x40\x1a\x95\x1c\x86\x72\x28\xc5\xab\x95\xaf\x09\xe5\x31\xfc\x05\x3c\xc0\x04\xfc\xa2\xfa\x18\x2f\xa2\xd7\x2d\xbf\x45\xc6\x09\xb9\x2d\x0a\x27\xab\x89\x29\x1f\x17\x64\x7c\xa1\xf2\xdf\x6e\x94\xe7\x69\xbc\xea\x08\xf8\x68\x41\x5d\xab\x3c\x97\x96\x33\x06\x3b\xa2\xbd\x90\xfb\x76\xf0\xb0\x9f\x38\x3f\x44\xc9\x36\x46\x3d\x0f\x61\xec\x24\x2e\xb7\x4a\xde\x73\x67\xc7\xcf\xef\x01\xa0\xdf\xba\x8e\x5f\x84\xcd\x08\x3f\x78\xaa\x40\x7f\xe3\xf1\x0d\xc5\x5c\x99\xea\xa8\x4a\xee\x53\xda\x22\xd2\x6a\xf3\xe9\x2c\x17\x5f\x38\xef\xee\xd6\xca\x4e\x69\xdd\x0f\xfb\xa9\x4d\x22\x04\x55\x71\xb2\xa8\x64\x73\xca\x52\xa0\xde\xc6\x59\x9c\x6e\xf7\x32\xb3\x44\xfb\x1c\x25\xe7\x5d\xfc\x35\x5f\x68\xc5\x95\x34\x5b\x79\x48\x81\x07\x6f\xd1\x83\x04\xe2\x03\x2a\x2b\xb8\xad\x34\x78\xdc\x9a\xda\x68\xcd\xcc\xc8\x2f\x19\x2b\x9d\x19\xa6\x75\x88\x84\x80\x92\xa1\x3b\x86\xa2\x14\x2d\xbf\x9f\xc0\x97\x15\xdf\xbb\xd5\x51\xf0\x63\xaa\x23\xf9\x1f\xd5\x1a\x2d\xe5\x59\xde\x35\xd9\x4a\xbc\x3e\x51\xa1\x6e\x2f\xca\x3c\x0d\xd2\x52\xb8\x37\xb7\xd4\x86\x19\x98\xc4\xf4\x58\xd3\x1f\xa9\xd6\xa6\xa2\x9c\x6c\xaa\x29\x52\x37\xea\x3e\xa8\xfc\xa9\xf7\x6c\xf8\x81\x37\xa6\x45\xd4\x68\xfe\xb7\xff\x09\xe6\x88\xc8\xee\xd0\xdd\xa1\x26\xfc\xe8\x73\x1d\xe5\x6c\xb1\x03\x64\x5c\xa6\xc3\xa9\xc2\xe6\xc9\x0d\x65\x40\x7d\x47\xd9\x69\xef\xd9\xf0\xdc\xf1\xbf\x6a\x6a\xc6\x26\xd6\x64\x93\x8a\x07\x88\x10\x83\x6a\xe6\xc1\x8e\x0f\xb4\x98\x69\x63\x53\x9e\x54\x9b\x28\xb1\x6b\x39\xd9\xbf\xe6\x88\xba\xe2\xe2\x5c\xfe\x25\xbf\x56\x49\xe8\x9a\xb5\x2b\x36\xe9\xa2\xdb\x82\x87\x7a\x55\x19\x09\x5c\xa7\x0f\x11\x58\x10\xb5\x2c\xb0\x29\xef\xd1\x48\xc9\x85\x5b\xe7\x3d\x72\x04\xcb\x4f\xac\xfb\x9c\x83\x8f\x49\xba\x11\xf7\x06\x10\x9f\xc0\xce\xe4\xd7\x5a\xf0\xc2\x64\x83\x09\x9d\x86\xd0\x37\xc3\x56\xfe\x71\xe0\x41\xd6\x7f\xa4\x7d\x4e\xcb\x4a\x29\xc7\x4d\x13\xa4\x10\x0e\x13\x8d\x21\xc2\x3d\x87\xb6\x16\xbf\x56\xb7\x2d\xca\xd2\x24\x0a\x4d\x1c\xaf\xb7\x14\x6b\xf2\xa3\xb1\x82\x0f\x7d\xf4\x99\x50\x9e\xdc\x9a\x09\x6d\x62\xeb\x2b\xc8\x3b\x7a\x18\x3c\xd5\xf1\xdf\x39\x1e\x2d\xad\x44\x49\x4b\x29\xca\xf1\x61\x20\x7a\x2f\x35\x66\xe7\x8c\xb8\x2c\x6c\x53\x0b\xab\x0a\x33\x3c\xae\x3c\x68\x86\x69\x1e\x15\x10\x41\x10\x83\x2c\xcf\x6f\x3e\xd7\xa0\x3f\xbc\xd0\x5e\x2e\x8b\x69\x26\xf0\x3a\x66\xb1\x06\xac\xba\x94\x37\x4e\xd3\x41\x64\xb3\xa9\xf2\x00\x71\x2b\xd5\xd5\x46\xe7\xf5\xb0\x13\xbd\x0f\x74\x30\xfe\x25\x1a\x4c\xa2\x80\xf3\x59\xba\x8d\xab\x51\x68\xf1\x40\xb1\xf2\x77\x76\x94\x18\x0e\xcc\xfb\x75\xa9\x2a\xc3\x62\x37\x9c\xc9\x6c\x37\x2a\xa6\xe8\x44\xc2\xe0\xe8\x94\xea\xd1\xc1\x90\xdd\xf9\x81\x7a\x73\x80\x43\x41\xc5\xa8\x6d\x7b\xcc\x9e\x9b\x6b\x27\x29\x49\xb1\x7b\xdf\x6d\x67\x07\xef\x4a\x89\x13\xb5\x5d\xbd\xb0\xb8\x50\xae\xd1\x49\x8f\x3f\xf8\x8b\x71\xc5\xea\x70\xf6\x00\x1f\x49\x7f\x0d\x1a\x37\x0f\xac\x1b\x9e\xd0\xfe\x76\xba\xbc\x9c\xdb\x02\x0b\x47\xda\xb5\x95\x46\x6e\x43\x5f\xb8\xc8\x4c\x58\x66\x9d\xde\x3e\xf2\x82\x66\x62\x5e\x50\xba\x7a\x6b\xc3\x21\xfd\x2e\x56\xc7\xc7\xdd\x11\xa9\xfc\x7a\xef\x14\xa0\xf0\xae\xcd\xcc\x12\xbb\x09\xe2\x91\xe3\x11\xf1\xeb\xe6\x0e\x02\xe9\xed\x72\x62\x20\x86\x2a\x74\xfb\xc5\x69\xa5\xde\x7b\x79\x16\x76\xa1\x36\x9b\xa0\x45\x24\x1d\x27\x4f\x3a\x3b\x86\x65\x27\x79\x63\xfd\x1d\x16\xda\xab\x51\x52\x18\x96\x85\x96\xcc\xc5\xc7\xed\x17\x1b\xb4\x4b\xf7\xb7\x33\xdb\x33\x99\x13\x81\x91\x1d\x4a\x77\x50\xf6\xae\xf0\x9f\xe2\xa8\xb0\x19\xc2\x88\x37\x7a\x00\xc4\x44\x9a\xa2\x15\xa1\xd1\x81\xdd\xa3\x44\xf8\x95\x53\x15\x7b\xe6\x54\x40\x95\xda\x21\x45\xc4\xf4\xbd\x6f\xf3\x1f\x04\x7e\x21\x5d\x44\xdc\x04\x2e\x6e\x4f\xc7\xbb\xe8\x14\x59\x4a\xc2\xb8\x98\x4d\xe1\xae\x5d\xd4\x94\x20\xd4\x74\x3c\x2d\x6d\xc6\x50\x8f\x5e\x31\x49\x02\xca\x00\x88\x6e\x9f\x62\x99\xf0\x85\xf2\x83\x1a\xa4\x49\x3a\x4c\x49\x12\xa9\xe5\x9c\xc6\x18\x1f\xc9\x17\x8d\xcc\x8e\xa2\x1f\x25\x2b\x2a\xab\xb9\x19\x28\x10\xc0\x4d\x15\xe4\x48\xaf\x88\x3a\xad\x2e\xe1\x3b\xaa\x74\xb7\xaf\x22\x75\x41\xa8\xd8\xaa\x10\xf7\x87\xcf\x50\x6f\x13\x13\x86\xf3\x15\x52\x6e\xe0\x51\x26\x7f\xa5\xa5\x3b\xee\xaa\x0f\xb6\x49\xcf\xc6\x2b\x36\x99\xf2\x2d\xd8\x8f\xe9\x83\x59\xe5\x86\x5a\xe4\x08\x31\x9f\xd2\x06\xc7\xad\x3e\xa7\x7c\x41\x5e\x57\xb6\xf8\xdd\x51\x19\x1f\x5c\xf2\x78\x9c\x32\x11\xe1\xb2\x2b\x0f\xbe\x73\x28\xfd\xf9\xa2\x59\x4e\xc5\x10\x03\x9d\x40\x9c\xe2\x67\x16\x78\xfd\xe1\xfa\x70\x66\x71\xba\x6d\x7a\x99\xb5\x53\x4a\xe5\x8d\x8c\xfb\xf5\xe0\xe2\x05\xaf\xb4\x7e\xd0\xa3\xa5\xe8\xee\x0a\xfe\x40\xdd\xdd\x28\x05\x34\x41\x30\x7e\xe5\x9b\x09\xd6\xab\x49\x16\x63\x20\xca\xc0\x4e\xa0\x32\xf0\xc3\xec\x13\x4d\x45\xf1\xb2\x45\x8f\x78\xc2\xb7\x8b\x6e\xd0\xfd\xc7\xb7\xf9\x63\x3c\x37\xa9\xcb\xf7\xf2\x1b\xb4\x0f\x4e\x7f\x11\x99\x81\x23\x52\xf9\xae\xe7\xee\xce\xce\x2f\xc9\x63\x22\xf1\x22\xd4\x75\xff\xb3\x92\x8e\xfa\x1d\x02\x15\x02\xe9\x73\x93\xbc\x84\x71\xcc\xff\x44\x2b\x92\x01\x1d\x89\xb1\xd1\x49\x8c\x1d\x70\x3e\x7d\x17\xc7\x8b\xe4\xa7\x14\xea\xb1\xf1\xdf\xa4\x3a\x0c\xa9\xd5\x9f\x61\xda\x2b\xca\x23\x54\x94\xa1\x56\x7a\x3f\x40\x3f\x0c\xe0\x38\xe8\x6a\xe2\x20\xbd\x15\x90\xd9\x01\x5a\xfa\x47\xa9\x5b\x88\x26\xd0\x09\x1a\xd1\xb9\x41\x98\x6f\x73\x3f\xbc\xa1\xe0\x12\x47\xf1\x84\x91\xf3\xed\xdc\xf0\x0c\x99\x23\x40\xff\x60\xdc\xf7\x37\x3a\xa6\xb0\x08\x38\x95\x37\x5b\x8f\x91\xff\x24\x92\xe8\xdf\xa2\x28\xe4\x84\x46\x16\xe5\x21\x30\x88\x0c\x69\xdd\xef\xa3\x3c\xc0\xfc\xe9\x1d\x5a\xec\xe8\x3d\xee\xa9\xe9\xc0\xcf\x1e\x68\xaf\xba\x06\x3f\x76\xc4\x35\xb5\xd1\xae\xd5\xfa\x33\xf3\xf3\x6d\x13\x86\x36\xb6\x99\x07\x72\xe0\xa4\xfd\x11\x42\x36\x5f\xb8\xf9\xb4\x8d\xbb\xd2\xfe\xc6\x41\x77\x45\xc9\xaa\x5d\xf1\xd2\xec\x51\x3c\x90\x06\x70\x13\x50\xc1\xb7\x54\x4c\x1c\xad\x58\x3d\x48\x3c\xab\x19\x2b\x67\x1b\x84\x4d\x9f\x6d\x53\xff\xd2\x55\xbe\xd8\x6b\xb0\xd9\x70\xdc\x0a\x25\x84\xe9\x64\xd8\xac\x29\x58\xc7\x10\x25\xd5\x43\x1d\xdf\x87\xbd\x35\xd6\x4b\xfd\xbe\x22\x38\xbf\x34\xea\x46\x30\xc3\xf2\xe4\x8d\x33\x58\x76\x02\x13\xa9\x93\xf7\x16\xda\x43\x13\xae\xc8\xd1\x89\x6c\xee\xed\xc0\x67\x76\x6f\xd7\x02\xcb\x3f\x6a\xe7\x45\x9a\x58\xf0\xd7\x64\x54\xaa\x4c\x63\xce\xaa\xf2\x34\x37\xab\x56\x39\x8e\xbd\x56\xa1\x4b\x37\xcc\x70\x96\xac\x11\x2f\x46\x51\x23\xa5\x77\x16\x99\xd2\x86\x3f\xe9\x66\xa3\x64\x05\x42\x62\x68\xd2\x7c\x30\xf6\x23\x8b\x6b\x8a\xde\xbe\xd9\xc4\xb9\x1f\xc6\x26\x02\xa5\x8e\x2d\x3b\x2b\xf6\x9d\x4d\xb9\xb4\xc9\x73\x5b\xc8\xd4\x07\x67\xd3\x0d\xcd\x28\xb9\xe1\xb9\x43\xff\x94\xb0\x60\xf8\xee\x93\x1d\xa5\xc4\x7f\x6a\xdc\x52\x16\x2a\xf4\xc7\x38\x98\xea\xf6\x15\xb3\x07\xda\xb9\x5d\xb5\x19\x30\x0a\xae\xa7\x35\xef\xc3\xb8\x5f\xad\x27\x6a\x00\xe4\xf9\xf9\xf6\x6a\x94\xb7\xca\x30\xe4\x48\x26\x4e\x9b\xfd\x8c\xd2\xfd\x23\x0f\x55\x87\x15\x3a\x59\x81\xb5\x3c\xea\x06\x78\x5d\xe5\xeb\x26\x38\xa7\x96\x53\xfe\x3c\xeb\x30\xa9\x83\xb4\xc8\x35\x6d\xed\x34\x05\x42\xc9\x94\x9e\x72\x69\xcb\xd0\x66\xe1\x28\xf7\xde\xb2\x9c\x3d\xfc\x96\x32\x30\xfd\x2d\xa5\xe7\x1f\xa6\x49\x2f\x4e\x07\x14\x02\x60\x78\xca\xf6\x5b\x4a\x4d\x7c\x4b\xe5\x8d\xef\x69\xc3\xbc\x0b\x0d\xfc\xf7\xf9\x76\x6e\x60\x52\xa2\x14\xf9\x7c\xc7\xf1\x76\x03\x13\x73\x3f\x19\x3f\x44\x4b\x23\xbe\x61\x68\x79\x7e\x4a\x31\x83\x5f\x8f\x1f\x74\xdf\xd8\x86\x53\xb4\x19\xb1\x8d\xb1\xdb\xf1\xfa\x30\x82\x33\x2a\x14\x48\x02\x22\x29\xbc\xa2\xcd\x3a\x0f\xd7\xfa\xa2\x8b\xd3\xed\x25\x31\x25\x43\x3d\x7e\x93\x1a\x29\x5e\xa9\x5e\xda\x3f\xa7\x95\x96\xc9\x75\x9d\x09\x21\x17\xc4\x88\xe8\xa4\x82\x37\xad\x46\x59\x31\x82\x8d\xa8\xc4\x61\xf4\x80\x25\x2f\x51\xfe\xa5\x27\xb5\xca\x88\x0d\x47\x59\x54\xac\xef\x51\xb0\xec\x4b\xca\x34\x61\x3c\x56\x7d\xbf\x3f\x53\xc2\x5a\xec\xbb\x2e\xdd\x8e\x96\x73\x20\x03\xa0\x54\xb1\xd7\x04\x91\x7a\xa9\xb6\x3f\xf6\xcd\xb7\x07\x26\x5b\xe1\x51\x38\xa2\xfb\xeb\x38\x11\x50\x63\xfe\x11\xea\x28\xe4\x7a\x3f\x50\x02\xc3\xf9\x30\xb2\x3d\x1b\x4f\x94\x7b\x14\x77\xe9\x14\xfe\x29\xea\xb4\x8f\xe9\xfb\xa0\x9d\x74\xa5\x16\xdc\x17\xa7\xf7\xb7\x97\xa2\xa2\x80\x23\x96\xdb\x81\xd0\x0f\xe1\xd7\x4d\x01\xae\x6b\x2d\xd3\x72\x31\x84\x39\xad\x25\x6a\x4e\x37\x64\x51\xb3\xed\x81\x35\x09\xdb\xe2\x68\x1a\x1a\xbf\xae\x78\xc5\x85\x70\x85\xda\x5d\xde\x7b\xd1\xb4\xa0\x7b\x8f\x7f\x7c\x27\xf0\xb8\x4e\x16\x93\x77\x7c\x42\x3f\x29\xb8\xa2\xf0\x31\x27\xb5\x45\xf9\x66\xc3\x0e\x7a\xa1\x1d\xa6\xab\x36\xe3\xca\x55\x16\x8a\x26\x91\x4a\xf4\x18\x66\x69\x3f\x5a\x8a\x8a\x96\x52\x8d\x60\x90\x8b\x68\xef\x34\xd8\x42\x96\x6f\xbe\x94\x59\xd3\x2d\xfa\x88\x10\xc0\x22\xe1\x0c\xe5\xd7\x8a\x57\xd7\x4b\xd3\xee\xba\x35\x40\x18\xc8\xde\xa2\xcf\xe0\x8b\xc0\x4f\x3b\x4c\x92\xa8\x23\x8c\x19\x0e\x7c\xd1\x18\xf9\xfb\xc6\x4b\x86\x62\x64\xf7\xba\x9e\xdf\xbd\x1e\xf8\x70\x2a\x73\x1d\xb6\x6c\x50\x31\xe5\x23\x25\x6c\x94\x17\xd6\x74\x31\xb0\x45\x0b\xe3\xca\xd8\x8b\x07\x60\x44\xbb\x75\x51\x29\xa5\x71\x79\xef\x32\xcd\xf2\x8b\x48\x2b\xb4\xcc\x5a\xa5\xb5\x23\x01\x76\x25\x49\xd7\x62\xdb\xed\x59\xa7\x2a\x8a\x16\x38\x08\x18\xfc\x5a\xcd\x90\x4d\x18\x92\x0d\x48\x6f\x17\x4e\x37\x51\xf9\x6a\x39\x6b\xfb\xcf\xa9\x9e\x0f\x37\x6f\x90\x1f\x5e\xd4\xe6\xbb\xbf\xa9\x36\xff\x3f\xd8\xa8\x9b\x76\xc6\xe9\x9a\xcd\x44\xd2\x03\x2c\x94\xbb\xf4\x27\x15\x25\x47\x41\x48\x3d\xa5\xe4\xc5\x57\x6d\x6c\x93\x5e\xd1\x47\xf2\xc1\x0c\x90\xc0\xf3\x68\xee\xbb\x8a\xbd\x30\x59\xcf\x7a\x82\x1c\xb6\x24\x70\x48\xfc\xba\x86\x43\x5a\x9c\x6e\x0f\xa2\x97\xe5\x09\x23\x8b\x05\xb8\x9c\x5f\xab\x5a\xa8\x9f\xc6\xeb\x13\x94\xbc\x6a\xe1\x2c\xe4\xa0\x27\x2a\xb3\x30\x75\x7b\x87\x54\xc3\x45\xdd\x49\xe5\x03\xb4\x83\xe4\xb0\xc4\xaa\x95\x96\xaa\xe3\xe0\x7a\x0e\xd4\x66\x05\xba\x1d\xdb\xee\xe7\x68\xc3\xa2\x43\xfd\x1b\x81\x67\x61\x5d\xe3\x16\x29\x72\x2c\x58\x26\xe0\xa1\xfc\x3d\xa0\xd6\xf0\x1c\xaf\x83\xf6\x80\x55\x07\x6f\x7a\xfc\xfd\x2e\x9a\x9e\x88\x1a\xbb\xe7\xee\xde\x42\x0c\x77\xa1\xd1\x9d\xb1\x8c\xe9\x00\xcf\x88\x67\x0a\x58\x93\x57\x58\xd4\x58\xb0\xa7\x34\x8a\x99\xea\x50\xe5\x84\x68\xfc\x9a\x16\x71\x3f\x13\x28\x33\xa7\xf3\x18\x3b\xe1\xe3\x76\x92\x09\x12\x4a\xaa\x87\x37\x94\xf4\xf3\x1f\xb9\x04\xa6\x1f\xf5\xfa\xd0\x95\xc6\xa3\x42\xff\x10\x68\xaf\x87\x37\xbc\xcd\xed\xe8\x89\x8e\x7f\x86\xf9\x33\xe1\x33\x2d\x35\x95\x81\x88\xb6\x40\x0b\x1a\x3c\x72\x06\x26\x8c\x92\x22\xcd\xfb\xca\x0d\x8f\x9b\x24\x7c\xe1\x42\xc0\x2b\x26\x2a\x0c\xb2\x52\x3e\x81\xa9\xc2\x16\x5a\xa9\x42\xa6\xec\xec\xc8\xb4\x34\x33\x6b\x93\x74\xff\x70\x8a\x81\x8b\x4f\x8f\xe8\xbb\x4f\x75\xfc\xb8\x7f\x37\x86\x10\xd2\x95\xae\x0f\x0d\xdb\xcf\x2f\x4e\xef\xf1\x4b\xe2\x27\xbc\x24\x9c\x66\x44\xf9\xd7\x38\x04\xae\x05\x6a\x64\xfd\x2a\x1e\x9e\xe0\xa1\x3d\x37\xf2\x0f\x30\x5e\xc3\xa7\x9f\xa0\xb6\x07\xf7\x3b\x03\x2f\x83\x92\xa4\xab\xcf\xd0\x51\xaa\xfd\x4c\x31\xd3\x78\x1b\x3f\x57\x9c\x5f\xb6\x47\xf9\xf2\x8c\xeb\x46\x39\x9d\x23\xb2\xf9\xa4\x35\xe9\xcf\xf4\xd3\x15\xa1\x88\x24\xb7\x49\x3e\xca\x77\x6b\x12\xc1\x75\x65\x4c\xfc\x5d\xfc\x16\x71\x48\x2d\x7f\x0b\x6b\x68\xe3\xb7\x70\x12\xa3\x31\xa4\xb7\x74\xb1\x7f\xb8\x09\x2e\xd4\xb7\x83\x28\x1f\xf6\x29\x17\x77\xf6\x3e\xef\xd3\x77\x04\x7e\xf0\xdd\xb1\x47\x06\xfe\x9f\x0e\xf7\x16\xa6\x65\x8a\x59\x58\x9e\x7e\x91\xc3\xf8\x5f\x43\xef\x11\x95\xfd\xde\x8e\x5f\xb8\x93\xb5\xa8\x44\xec\x05\x23\xbe\xf0\xca\xbd\xc2\x0b\x8d\x34\x14\xd7\x03\x13\xc5\x0a\x96\xfb\x01\xfe\x40\x0a\xa4\x47\xd4\xfc\x70\x60\x93\x3d\x74\xb3\x04\x98\xa8\x21\x85\xe5\xc6\x63\x58\x10\x05\x19\x07\x59\xf6\x53\xb4\x0f\x54\x23\xe5\x86\x9a\x15\x7c\x30\x56\x32\x6f\x4d\x4d\xdb\x17\x40\xbb\x94\x22\x1d\x8f\xe4\x9a\xc2\x03\x5e\xab\x04\xbd\x34\x89\x60\x66\x8e\x1a\x88\x0d\x3c\xf4\x11\xc5\xff\x63\xac\xa2\xeb\xa6\xab\xf3\x07\x69\xd7\x3a\x6b\x15\xac\x6b\x26\x75\xf1\x85\x4a\x84\xd7\xb2\x32\xb3\x4b\xa6\xbc\xb6\x34\xeb\x7d\x23\x52\x9d\xd7\x91\xf9\x1a\x35\x43\xf8\x5f\xd1\x5a\x10\x56\xbd\x4f\x90\xcb\xcf\xa6\x9a\x05\xcb\x55\x44\xac\x7c\x6c\x06\xe3\x1b\x11\xee\xc3\x40\x69\xa5\x5d\x0d\xfe\xd3\xcf\x18\xa5\x84\x69\x1c\x1b\x6a\x4a\x47\xaf\xc0\x33\x40\x40\x9c\x27\x14\x83\xea\x84\x06\x6d\x8d\xb2\x84\x1d\x99\x30\xc0\x05\xe9\xd4\xe1\xd2\xdc\x79\xc0\x15\xa9\xab\x28\x64\x7a\xda\xbe\xea\x07\xa6\xd7\x2e\xd7\x9a\xc8\x8b\xd3\xed\x7c\xd4\xeb\xd9\x5c\x00\x5b\x4e\x19\xb1\x3c\x77\x04\x5b\xe0\x97\x9e\x21\x01\x04\x7f\x13\x6e\x29\x88\xe3\x2d\xf5\xef\x46\xd9\x92\x49\x1e\x52\x0d\x14\xf4\x3d\x05\x65\x4f\x07\x21\xce\xa2\x43\xd8\xf5\x6c\x87\x8a\x9d\x8e\xf7\x3b\x3a\xae\xb9\xad\xf0\xff\x08\x3c\x77\x64\x53\x19\x22\x9c\xab\x1a\xaf\x78\x0a\x38\x18\xb2\xe2\xe7\xe2\xb1\x46\x66\xd9\x3e\xe0\x67\x56\xcc\x61\x92\xfb\xe9\x62\xe1\xdf\xfd\x3d\x24\x4d\x4e\x09\xde\xe9\x99\xde\xa5\x12\x19\xc1\x81\xeb\x10\x55\x94\x48\x58\x7e\x2b\x50\x38\x80\x33\x81\x2f\x34\x57\x47\x13\x8a\xe7\x76\x41\xb5\xd2\x30\xa6\x43\x6a\x78\xa5\x96\xc1\x3f\xdd\xce\xec\xc0\x0e\x96\x18\x94\xab\x84\xa8\x5e\x70\xf5\x97\xde\x85\x45\xbc\xfe\x05\xfa\x69\xf8\xd6\xdc\x89\x67\xda\xa8\x8e\xad\x13\x94\xd7\x48\x0d\x8f\x85\x8f\x10\x7c\x9d\x86\xcc\x1c\x06\x69\xf7\xb0\x1c\x09\x3d\x7f\x27\x9c\xb1\xb0\xb8\xe0\xba\xeb\x5e\xa7\xe4\x95\x43\xc8\x0c\x44\xfa\x94\x42\x07\xfd\x8f\x5f\x7f\x6c\x43\xcd\x71\x2e\x06\x4a\x26\xab\x45\x49\x8d\xeb\x08\x2d\x4e\x73\xb7\x65\x17\x1e\x06\xca\xe5\x1b\x74\xfa\x3b\x65\xee\x7d\x1c\x85\x9e\xf9\xc2\x86\x02\x21\xbf\xc5\x39\x8d\xf4\x93\x15\x37\x0e\xa5\x1f\x56\xcf\xe7\x41\xca\x47\xca\xf1\xf9\x8e\xbe\x81\xb9\x89\x1f\xa1\xff\x09\x90\xf2\xe1\x0a\xf1\x9b\x72\x23\x66\x74\xea\x1f\xbd\x13\x6d\x5d\xe7\x9d\x36\x2f\x2e\xf6\x97\x10\xc2\x04\xd3\xeb\x2d\xa2\xdf\xa2\x05\x8f\x15\xf4\x91\xca\x47\x99\x92\x8b\x77\xba\x8c\x07\x26\x14\x52\xba\x97\xfc\xb5\x02\xc5\x5c\x3c\xa4\x98\xbe\x79\xd4\x4b\x68\x54\x9a\x14\xe8\x69\x6a\x13\x52\x34\x28\x5b\x94\xab\x88\x4a\xbd\x9a\x5c\x67\xe0\x41\x21\x8a\xbb\x8e\xfc\xdc\x1c\x83\x19\x51\x71\xfe\x26\xed\x09\x71\x0e\x71\x5a\xb2\x7d\x53\x84\x7d\x9b\x45\xf9\x40\x39\xbf\x32\xda\x9a\x2f\x14\xd9\x24\x4f\xc3\x15\x0b\x02\x02\x1a\xe6\x57\x15\xec\xf6\xaa\xaa\xc0\x96\x63\xb3\x9a\x66\x28\x49\x71\x47\x5f\xc5\x0d\xe2\x8b\x5a\x1d\xb8\xf0\xdc\xfe\xb6\xc9\xc2\x82\x7d\xbb\x65\x45\x2b\xdf\xad\xeb\x4a\xa1\x2c\xb3\xcb\xb1\x0d\x8b\x49\x85\x8a\xac\xe0\xdd\xcb\x2d\x82\x15\x77\x0f\x5d\x7c\xbe\xa8\xba\x16\x9a\x6c\x97\x9f\xb4\x7c\xa8\x5b\xad\x47\xf5\x3c\x04\xd1\x04\x0d\xf7\xf3\x63\x65\x8e\x77\x5d\x41\xff\x6e\x28\x0f\x97\xa2\x3c\x10\xa6\xb4\xab\x1d\x7d\x21\x76\x16\xac\xc4\xfa\xf2\xf3\xb1\xb1\xae\x2a\xc6\xc8\xd5\x5a\x2e\xe7\x54\x50\x06\x5d\xd3\x8f\xd5\x74\xf0\x88\x86\x41\x1c\x09\x1e\x53\x6c\x82\x81\x89\xe4\x5c\x72\x7e\x13\xce\x56\x9c\x95\x6a\xa4\x76\x6e\x39\x3d\xb3\x8d\xb1\xce\xc1\x68\x8b\xca\xb4\xb5\x9e\x41\xed\x6f\xe7\xd6\xae\xa0\x47\x21\x46\xad\xe5\x4f\x15\xb0\xc0\xf6\xa7\xfc\xe2\x8b\xed\xa1\xcd\x96\xe5\xd1\x89\x96\xa8\xd2\xe9\xda\x52\x7f\xcf\x56\x7c\xb8\x57\xc7\x9a\x3a\x54\x45\x34\x70\x95\xa8\xcc\x0e\xfc\x92\xaf\x8f\x0e\x88\xb7\x92\x25\xcb\x91\x8d\x41\x87\x74\x7e\xeb\x6a\x44\xac\x18\x26\x7d\x93\xc5\xa6\x30\x2c\x65\xeb\xe4\xfc\x5c\xff\x4a\xbb\x38\x76\xa3\x7c\x18\x9b\x75\xfc\x53\x86\xe3\x28\x5f\x86\x0d\xaf\xf9\x69\xb3\x7c\x64\xba\x96\x5d\x3a\x64\x38\x42\xcf\x03\x15\xc3\xeb\x14\xbc\x50\xa4\x1d\xaf\xdd\xf6\xb9\xb9\xfd\xed\x35\x6e\x5d\x89\x05\xe1\x59\x85\x39\x3c\x5b\xfb\x8b\xa7\xdb\x4b\xa3\x70\x25\x86\xd3\x18\x97\xff\x81\x42\x5c\x9d\x76\x39\xf5\x6a\x1a\x9b\x22\x8a\xc5\x07\x96\xdd\x83\x11\x32\xc5\x4a\xd8\xe7\x73\x43\xc2\x17\xe4\xad\xf2\xdb\x22\x3b\x3f\x8c\xfd\xc1\x17\xae\x47\x15\xc6\x11\xc1\x85\xa8\x92\x44\xb2\x3c\xd9\x51\xa6\x6b\x17\x14\x31\xfa\x56\x0d\x48\x42\x78\x4d\x93\x97\x21\xd2\x8d\x94\x44\xd2\xa5\xe5\x04\x15\xce\xaa\xa4\x21\x89\xd7\x1f\x9e\xf0\x0e\x87\xad\x0d\x57\x74\xfd\xee\x7f\xd1\xf1\xa3\x5a\x96\x0e\x17\x69\xaf\xf2\xee\x60\xcb\x3f\xb0\x51\x1e\x9f\xca\x5a\x60\xd6\xb9\x54\xd3\x18\x52\x6e\x34\x3d\x01\x51\xd3\xa4\x07\x88\x33\xeb\x21\x00\xdd\x18\x18\x49\x4c\x0d\x44\xa0\xc7\x3a\x8e\x1c\xf8\xc3\xc7\x6a\x1d\x9c\xd9\x03\xed\x3c\xcc\xa2\x21\x0b\x65\x89\xf0\x69\xcb\xd9\xe3\x20\xe7\x40\x0c\xdd\xac\x04\xb3\x7e\x5a\xec\xf2\x30\x9f\xcb\x8a\x01\x51\xf1\x7e\xde\xac\x0e\x94\xca\x5f\x89\xf2\xf3\xc8\xd8\x13\x05\x7f\x5c\x17\x71\x9a\x25\xc5\x6a\x9b\xa1\xb3\x87\x83\x6d\xb2\xa3\xa4\x77\x27\x6b\xb6\x4d\x07\x9e\x6b\x8f\x72\x50\x66\xb1\x03\x20\x44\x8a\xef\x71\xaf\x22\xe0\xa5\xa9\xc0\x26\x59\x89\x92\x1e\x6b\x63\xbb\xae\xb5\x4b\x00\xb5\x2b\xf7\x55\x8a\x67\xe8\x90\xb0\x28\x04\x96\xc2\x44\xa7\x61\xe3\xe7\xa1\x4d\x4c\x16\xa5\xac\x59\x8b\xbc\x99\x09\x80\x7c\xa1\x20\xee\xaf\xd8\x6c\x17\xfd\x3b\x87\xec\x9e\x9b\xe3\x84\xe6\x3e\xed\x4e\x89\x96\x2a\xe7\xe5\x4a\x17\x6f\x76\x4d\xe9\x76\xef\xea\x28\xe4\xdc\x60\x58\xd6\x2c\xd1\x2a\x76\x23\x46\x94\x3f\x55\xbe\x7d\x9a\xb1\x9c\xd9\xec\x21\x65\x6c\x71\x1a\x8f\x12\xc0\x29\x3e\xa4\x59\xa8\x80\x7b\x11\x2e\x31\xfe\x95\xe7\xbd\x04\x8a\x9b\x69\xed\xe9\x50\x2a\x42\x4f\xfc\x7f\xf8\x22\x94\x49\x24\xff\x72\x3d\x91\x99\xbd\x1b\xca\x35\x71\xef\x86\x77\x74\x3d\x31\xd6\xce\x91\x0e\xb2\x3c\xca\x96\x4d\x68\x27\xfd\x11\xf7\x7b\x38\x73\x99\x54\x15\xe8\xc1\x9f\xaf\x81\x6f\x34\x19\xca\x17\x99\xb8\x6e\xbf\xc0\x89\xec\x6b\xd8\x63\xf2\x05\xd4\xea\xbd\xe0\xe1\x92\x69\xdc\xe5\xfc\x87\x27\x57\xff\xf4\xf1\x8e\xef\xca\x3e\xb2\xe1\x79\x95\xcc\x44\x04\x24\xe0\x86\x22\x63\x16\xd9\x28\x5c\x99\xa4\x04\xd2\x49\x94\x39\x53\x9e\xc9\x0d\xba\x6f\xfc\x3f\x14\x5f\x6e\xb2\xa3\x95\x82\xd2\x51\xaf\xff\x88\x22\x94\x02\x33\x8c\x85\xf2\x9a\xba\x0d\xdf\x1b\x2b\x49\xa6\xb3\xda\xef\x73\xec\x4d\x69\xef\x61\x41\x63\xaf\x1f\x1f\xab\xd6\xe9\xdf\xe0\xf6\x62\x3f\xdc\x81\x5f\x19\x66\x40\xb7\x02\x65\xde\xf9\x7d\x7a\x5a\x18\xe4\xbd\x41\xf1\x40\xd8\x0c\xad\x6f\x7c\x95\x81\xd6\x67\xb4\x37\x11\x41\xcf\xcb\x00\xbb\xdb\xa3\xf4\xdf\x0a\xca\x9a\x82\xd1\xe4\xba\x46\xda\x42\x8a\xae\x45\x4a\x19\xb5\x81\x1f\x87\x38\xb8\xb3\xa3\xcc\x15\x76\x6e\x38\xd1\x1c\x13\xe5\xe5\x26\xf7\x69\xda\x1d\xbc\x1d\x16\xe0\xc3\x1d\x1f\x64\xee\xaa\x09\x1e\xcb\xcd\xb3\x8a\x8c\x4a\x07\x97\x6c\xdc\x8b\x46\x83\x49\x65\x32\x31\xd1\x51\xb1\xf9\x82\xf6\x06\x3c\x31\xd6\x86\x48\x75\xa2\xed\xc1\xe9\x85\xb6\xe9\x8e\x62\x99\xb4\x0a\xcd\x43\x51\xb0\x2e\x34\x59\x79\x96\x9b\x80\xb6\xb4\x68\xa2\xb6\x94\xb9\x6d\x53\xea\xb4\x62\xed\xb0\xe5\x77\xd7\xe5\x40\xad\xf4\xcb\x63\x27\x6f\x6a\x92\xd1\xb2\x09\x8b\x51\x66\xb9\xbf\x8d\x58\xc0\x3c\x3e\x65\x66\x2b\x72\x46\x17\x15\x24\xed\x0d\x95\xbc\xc7\x69\xd2\xb3\xd9\x1e\x5a\x22\x38\xc0\x58\xf7\x03\x55\xfa\xce\x8d\x8a\x67\x04\xd5\x3c\xd8\x27\x3f\x54\x67\xc3\x59\xdc\x07\x06\x80\x6a\xe3\x64\x4c\xcf\x90\xd2\x9d\x1a\x6b\x79\xbb\x51\xfe\x90\x47\x90\xf2\xe4\x0b\xbd\x2c\x8c\x58\x11\xc1\x41\x9f\xc6\xba\x9c\xa4\x2d\x8b\xf7\xbd\xa7\x3d\xcb\x26\x08\x2c\x24\x0b\x99\xbe\x0a\x86\x55\x68\x03\xe3\x09\xef\xe8\x28\x5d\xe6\xc9\x8e\x77\x03\x3f\x83\xfd\x81\xdc\xed\x56\x13\xab\xd9\x64\x45\x94\x57\x8b\x90\x23\xf4\x20\xf9\x75\x03\x79\x68\xb1\xbd\x1c\x5b\x96\x7a\x47\xfb\xfd\x9c\xe2\xd6\xd7\xf1\x63\xfb\xe6\x31\xa7\x99\xa8\xc8\x13\x28\x1e\xf9\x1d\xb4\x5e\x64\x1e\xfc\x59\x98\xdf\xb5\xbe\x4d\x26\x08\xc7\x84\x84\x6a\x87\xda\x35\xdc\x49\x43\xf7\xf4\x52\xed\x2d\x16\xa7\xdb\x4b\x36\x09\xfb\x03\x93\x41\xfb\x93\x67\x2d\xf4\xbd\xeb\xf2\x1c\x71\x94\x74\x73\x8b\x8c\x50\xb9\x55\x38\x70\x6c\xf0\x39\x6f\x0c\xec\x57\x6b\x36\xe9\x93\x3d\x48\x70\x8a\x8f\x9a\x62\xd8\x55\x0c\x24\x6a\xb7\xea\xe0\xf4\x7c\x3b\x25\x33\xa6\xc5\x69\x71\x1e\xa5\xc3\x57\x5c\x48\x05\x17\xb1\x4c\xc6\xf7\xde\xb5\x53\x99\x50\xde\x50\xda\x8d\x13\x2a\x5c\xf7\x62\x93\x84\x68\x38\x63\x9d\x71\xac\x72\x73\x0e\x47\x5c\xbc\xa2\x3a\xe4\x39\x13\xbd\x59\x77\x19\x67\xd4\x21\xac\x50\xbe\x50\xc3\xac\xe1\xfa\x60\xd0\x52\x7a\xf6\x67\xf1\x0f\xe5\x60\xac\xff\xdc\xd9\xf6\xc0\x74\x99\xf9\x27\x94\x23\xfa\x7b\xbe\x50\xbb\x79\x69\xb4\x6e\x33\x4c\xa4\x45\xc7\x53\x61\xff\xcf\x2a\x3f\x52\x30\xf1\xf9\xbf\xe3\xed\xd0\xa6\xf9\x00\x21\x04\xbb\x01\x03\x39\x1c\xad\x1f\x2a\xeb\xa0\x6e\x94\x53\xe6\x87\x7a\x56\x94\xcb\x11\x2a\x10\x89\x8e\xeb\x53\x19\x32\xe4\xcc\xa3\x0a\x34\x58\x5c\x75\x1e\xbb\x99\x59\x63\x1c\x96\x96\x84\xc0\xca\xbb\xa7\x9c\xb3\xea\xb2\x1d\x0b\x8b\x0b\xed\x97\x46\x83\x21\x44\xa2\xc5\x75\x98\x6e\x2b\x7e\xed\x1b\xc8\x91\x10\xdd\x2f\xb9\xb9\x51\x91\xae\xac\x8f\xa6\xca\xe3\x55\x94\xe6\xe9\xbb\x21\x46\xdc\x47\x50\x43\x1c\xfc\xc9\xd8\xa5\xe8\xfb\xfe\x96\x26\x75\xa2\xbc\xfe\xb0\x2b\x92\xd6\x5c\xd5\xe9\x30\xc6\xae\x4f\xfe\x91\xc7\xf5\x2c\x2f\xc7\x51\x28\x5d\x5b\xe4\xac\xb7\xb5\x5d\xd0\x6d\x0d\xf6\x60\x33\xd5\x96\xd2\xf2\xd4\x4a\x19\x67\x83\xa7\xb4\x0c\x79\x17\x96\x0a\xa8\x36\x1d\x95\xdd\x31\x78\x6f\x34\x32\xf2\x56\xa2\x6e\x62\x86\x2d\xc5\x57\xde\x54\x9a\x19\x9b\x35\x94\xc4\xd3\xed\xae\x0d\xa3\xae\x4c\x94\xb1\x4d\xd9\x2d\x1b\x33\xb0\xe3\xe3\x2a\xa6\xcf\x7b\x3e\xc4\x71\xae\x27\xfa\x37\x94\x33\xf4\x0d\x05\x16\x18\x8e\x96\x5a\x6a\x3e\xf4\x36\xfd\x33\x7e\x5d\xc3\x2d\x1c\x9c\x7e\xa1\xdd\xb7\xd9\x52\x54\x7e\x29\x3e\x9e\x9d\xee\x5a\x99\x06\x89\xee\x9a\xdf\xb0\xe2\xb1\x9e\x93\xb0\x19\xba\x88\x3f\xa0\x18\xc2\xaf\x1b\xcc\xab\xda\xa9\x41\x58\x74\x1a\x2a\x73\x73\xf2\x5a\x09\xbc\x67\xe9\x52\xea\xf8\xce\x58\x48\x87\x95\x7f\xf7\x61\xa5\x11\x38\x1c\x39\x78\x17\x82\x0d\x40\x39\xfc\x3a\xf0\x5f\xd7\x24\x49\x3a\x4a\x42\xdb\x25\x98\xbb\xab\xed\x9d\x38\xe0\x69\xca\xc7\x30\x39\xba\x39\xf6\xcd\xd0\x6b\xec\xb3\x88\xbd\x76\x0a\x55\x38\x1e\xeb\x61\x7d\x1a\x51\x1e\xc8\xce\x68\x81\x9f\xa0\xa7\x4b\x79\x61\xc2\xd8\x82\xfd\x82\x10\x78\x53\x4d\xe8\x6f\x06\x7e\xe8\x96\x94\x49\x7a\x21\xc6\x84\x62\xdb\xda\x72\x76\x69\x67\xc6\x6a\xb1\x5c\x53\x0e\xf6\xc3\x2c\x5d\x8d\xba\x15\xbd\xa2\xdb\x4a\xaf\xe8\x76\x23\x11\x24\x1f\xae\xa3\x8b\xc8\x27\xf8\xd8\x83\x5f\xcf\x28\x7c\x0a\xe9\x90\xb1\x07\x8d\x84\x9f\x73\x4a\x7e\xef\x5c\x85\x46\x90\x66\xa1\xb6\x8e\xfe\x2d\xa0\x8e\x05\x23\xd7\x74\x0a\x15\x51\x8c\xe6\x85\xfc\x46\x8f\x19\xbe\x48\x55\x34\x02\xe3\x4f\x6b\xbf\xe1\xe0\x74\x7b\xd9\x96\x37\xab\xa2\x05\x3a\x2f\x72\xe4\x17\xb1\x99\x44\x96\xd1\x1f\x1d\x89\x35\xf1\x84\x8a\x64\x62\x09\x82\xda\xef\xa6\x3e\xdf\x5b\x1d\x59\x68\xa3\x24\x1f\x52\x83\xc4\xd1\xb9\x59\xd2\x5a\xe4\x27\x9b\x60\xaa\x39\x7c\x01\x5b\x7e\x48\x74\x49\x5b\x59\x5c\x52\x22\x31\x76\x15\x73\x25\x39\x05\x3c\x81\xe5\xbc\xd2\x31\xc9\xed\xd0\x64\xa6\xb0\xf1\xfa\xa4\xe7\x14\x7e\x6f\xac\xc4\x75\x2e\xe8\x99\xe7\xd8\x93\x10\xbf\xe7\xb6\xcc\x9a\x51\x32\xd3\xce\xb2\xd7\xdb\xf7\xaa\xf6\xf7\x52\x94\x75\x43\xd3\xb3\x5a\x7c\xf4\xba\x8a\xc7\xd7\x15\x92\xb7\x6b\x46\x34\x19\x9d\xf4\x23\x85\xf7\x18\x25\xce\x2e\x4f\x88\x23\xce\xf2\xc9\xcd\xad\xde\xdb\x6e\x39\xf2\x8f\xdb\x0b\xcf\xed\xc7\x13\x92\x82\x96\xbe\x00\x1a\x30\x47\x34\xa7\x5a\xe9\x10\xc6\xd6\x74\x6d\xb6\xc7\x8f\xfe\x76\x80\x38\x29\x2e\xdb\xba\x0d\x46\xcb\x1e\x0d\x0d\x3e\xa0\xf0\xbc\x2f\xd0\xa1\x84\xca\x02\x70\x00\x40\x03\xde\xc5\x17\xc0\x71\x7e\x5e\x13\xcb\xcd\x28\x2e\x62\x52\x49\x2b\x3f\x0b\x3d\x09\xb4\x95\xf8\x75\x20\xbd\xc9\xbc\x9f\x66\x45\x5e\xa4\x60\x35\x89\x74\xa5\x57\x7c\x7d\xad\x49\x47\x2b\x4c\xfb\x36\x11\xe4\xae\xf8\xc8\xd3\xe3\xe6\x0b\x65\xc5\xd6\x8d\x32\x1b\x16\x53\x8a\xe1\xce\xc5\x19\xa6\x48\xef\x2a\xee\xe1\x4e\x45\x4b\xfe\x0b\x8d\x06\xf1\xc8\xd9\x62\x94\x2d\x45\x89\xd5\xa7\x20\xbf\x9d\x20\x4f\x1e\x57\xde\x5e\x79\x51\xa6\x7c\x0f\x68\xcd\x65\x8a\x87\x40\x0b\x5c\x1a\x2b\xb1\xd7\x3b\x81\x02\x37\xbe\x87\x47\x81\x1b\x0b\xb5\x34\x55\x0c\x09\x1d\x8b\x0b\x1b\x2c\x86\xbf\x0b\x7c\xfb\xf4\xef\xd4\x29\xbf\x9c\x99\x64\x25\x8e\x92\x09\x4d\xb8\xfc\x61\xe0\x27\x89\xdf\xd7\x14\xb2\xff\x75\xfc\x0f\xb7\xdd\xed\xe7\x17\xc4\xd0\xfa\xbf\xf9\xcf\x4c\x77\x35\x0d\x09\x5f\xec\x28\xe6\x6f\x8e\x55\x6f\xeb\x4d\x45\x5c\x8d\xed\x2a\x4d\xe9\xcb\x50\xc5\x7d\x65\x7a\xaa\xd2\x63\x76\x08\xbb\xd8\xda\xe1\x14\xbd\x09\x56\x1e\xa0\x8d\x28\xb8\x3e\x50\xfe\x22\x1f\x8c\x55\x60\x81\xe2\x32\x9e\xa0\x4f\x93\x5e\x4a\xa3\x44\x52\x07\x34\xe4\x77\x76\xaa\x46\x3c\x73\x73\x4e\x52\x46\xf9\xde\xc6\xa3\xae\x13\x7a\x71\x62\x7b\xde\xbc\x11\x0e\x3c\x8e\xa7\x3b\x37\xc7\x7d\xd2\x63\x15\x7b\xcd\x34\x67\xb2\x11\x82\xc0\x44\x47\xe1\x9e\x4e\xeb\x31\x30\xa6\x7e\xc8\xdd\xf9\x41\xcb\x04\xb1\x3e\xd3\x0d\xd3\xc1\x30\x72\xfc\x7c\x94\xdb\xdf\x0e\x14\x92\xfe\xdb\xb5\x10\xbb\xf0\xdc\xfe\xf6\x30\x36\x49\xc2\x48\x5a\x96\x45\xc7\xed\xab\xe4\xf8\x62\xb1\x2a\xb7\x22\xec\xdb\xd5\x2c\x8d\x6d\xc1\x8b\x05\x03\xc8\x73\x4a\xa8\xf0\xff\xc6\xbb\xb0\x41\xa6\xcf\x37\xd2\x25\x9b\x81\xe8\x20\x10\xac\x7b\x81\xb6\x04\x61\xd1\x5c\x01\xac\xd6\x7f\xa7\x89\xb2\xa5\x34\x4b\xec\xa4\xaf\xa3\x18\x95\xe8\xc6\x92\xdf\xf8\x2a\x6f\x88\x13\x6a\x6c\x7a\xb8\x91\x9e\x36\x1c\xc5\x31\x37\xf5\x58\x70\x0e\xb7\x8c\x79\x78\x4a\xdb\xef\x82\xea\x7d\xfe\x72\x0f\x75\x9f\x30\xac\xd4\x99\xa4\x1d\x1f\xba\x11\x9c\xe4\x94\xa4\x34\x8b\xf0\x48\xd7\xe9\xc9\x3a\x90\xeb\x1f\xe3\x01\x22\xb6\xbc\x89\xf1\x30\x5f\xa8\x21\x66\x86\x69\xa7\x82\x83\x1e\x0e\x14\x50\xf4\xb0\x56\x54\x30\xe0\x4a\x08\x1a\xeb\xd0\x78\xbb\xea\x2b\x92\xb1\x6b\x15\x69\x9b\x5e\xda\x9d\xa2\x68\xe4\xee\xea\xec\x01\x6e\x54\x62\x04\x84\xde\xc6\x55\xc0\x82\xd0\x90\x65\x0e\x3d\x5f\x74\x54\x7a\x15\x25\xc3\x34\xe2\xf1\x88\xc8\x79\xf9\x56\xe5\xb1\x5a\x5e\xb3\x38\x0d\xdd\x32\x28\xb8\x09\xb7\x9c\x7e\xa0\x6b\xf8\x95\x77\xc9\xc9\x9e\x3b\x2b\x9f\xab\x4d\x83\xbd\x3c\x8d\x57\x25\xf9\x10\x8f\x1e\x1f\xcc\x2f\xba\x7e\xf1\x9a\x8d\xc3\x74\x60\x77\xd3\xcf\xc0\x5d\xb9\x44\xef\xcd\x54\xf9\xc0\x23\x90\x8f\x61\x63\xa0\x83\x7a\x17\xb1\x4d\xd2\x21\x1f\x3c\x1e\xc4\xca\x44\x14\x6f\x66\xb1\xc6\xd1\x92\xcd\x58\x1d\x07\x4d\xe1\xcd\x40\x4d\x68\xaa\x50\x8c\xb5\x2e\x2f\x56\x77\xa0\x94\x69\x36\xce\x3f\x78\x4d\x62\x8a\xfe\x57\x4d\xee\xcc\x4b\xc3\xb0\xa5\x54\x4a\xde\xe0\x7d\xc7\x57\x63\x41\x10\x93\x86\x58\x61\x22\x1a\x68\xf1\xfe\x96\x09\x93\x47\x05\x9f\xd2\x42\x24\x77\x55\xc3\x33\x4e\x43\xaf\xe2\xc9\xd5\x40\xe0\x79\x9c\x37\xab\x82\xc4\xf1\xf2\xde\xf2\xfe\x72\x46\x3e\xf6\x89\xde\x85\x6a\xaa\x5e\xae\x38\xa4\x12\xd7\x68\x18\xed\x30\x2f\xce\xfd\x1b\xa0\x3c\xe1\xcd\xd1\x4d\xc2\x42\x64\xe9\x78\x74\xef\xd8\xaa\x4f\xfc\xe8\x3f\x4b\x86\x9b\x24\xdb\x73\xcb\x89\xc3\x16\x04\x42\xb7\xea\xeb\x74\x66\xa6\xdd\xb7\x6b\x52\x70\x60\x35\xfe\x0e\xfd\x0a\x56\x30\x1f\x57\x9c\xd0\x1d\x4f\xed\xe5\x97\x53\x39\x67\xd9\x11\x79\xec\x2b\x8f\x77\xf4\xad\xbd\xd8\x24\x28\xb7\x1c\x5b\x83\x7a\x88\x31\xbf\x63\x0f\x77\xbd\x76\xa8\x41\x8b\x63\xbe\xfc\x45\x69\x86\x0d\x88\x7e\xe1\x19\xc5\xcb\x3c\xa3\x64\x42\x0b\x9b\x17\x0f\x28\x97\xaf\x93\x3a\x4d\x3f\xa9\xa4\x46\x60\x74\x8c\x74\xf4\x0e\x7d\x7d\x1c\x19\x97\xb4\x55\xc0\x27\x63\xe5\x5b\xf1\x09\x9a\x3a\xfc\xe7\x81\x17\x24\x3a\xd6\xa0\x19\xde\xce\x46\xb1\x5b\x47\x68\xd5\x21\xab\xe7\xd7\x0d\x0e\x32\x61\x36\x4a\xc2\xfe\x54\xcb\x89\x3b\x7e\xbf\xa2\x61\x31\xf6\x99\xf5\x29\xd5\x5b\x98\xc4\xe4\x89\xa5\x31\x1a\xe4\xc7\xdb\xcb\x69\x16\xb2\x91\x9c\xc2\x1b\x3a\xf0\x61\x13\x29\x7e\xdd\x0c\x4c\x61\x98\x5a\x8d\xd2\xff\xc7\xf8\x32\x7c\xd1\x44\xf2\x89\xd3\x9c\x43\xba\xc3\x3d\x95\x77\x92\x2f\x94\xb8\xae\x49\x6c\xc1\x5c\x24\x44\xa6\xd7\xf1\xde\x7c\x51\x09\xe4\x69\x91\x3f\x54\xee\x18\xfc\xbe\x1f\x72\xad\x86\xdd\x70\x04\xc9\x0b\x4e\xef\x89\x8e\xaf\x49\xa7\x3a\x5e\x2d\xe4\x87\xa4\x56\xed\x14\xce\x3c\xa6\x94\x3b\xa4\x28\xb3\xdf\xa7\xba\xc9\xcd\x8d\x9c\x51\x93\x56\x75\x98\x00\x42\x0e\x99\x65\x7d\xba\x51\xa6\x23\x61\x6c\xf2\x1c\xea\x22\x38\x78\xd0\x61\xe0\xd7\xaa\x08\xcd\xfb\xe9\xda\xc3\xf4\xed\x5d\xf7\x61\x71\x5a\xcb\xdc\xcc\xf2\xcf\xba\x19\xa8\x61\xfe\xa5\xb1\x67\xfe\xfc\x35\x1d\x63\x38\x5a\x99\xa9\x87\x6e\xda\x8f\x35\x2d\x64\xcf\x86\xae\x1d\x10\xc9\x9c\x89\x86\xcf\x45\x3f\xac\xc0\x96\x29\xfa\xa0\x03\xf9\xbd\xda\x83\x9e\x9f\x6f\xc7\x91\xcd\x27\x95\x3d\x01\x27\x30\xd8\x0c\xf0\xc9\x17\x83\xce\xf2\x57\x09\xa9\xa5\xde\x73\x7a\x96\x1a\x38\x4b\x71\x14\x1a\x54\xc9\x32\x89\xd6\x24\x38\x35\x4a\x0c\x47\x4b\x51\xa8\xa4\x1e\x6f\xd0\xfd\xe0\xd7\xd5\xce\xea\x30\x4b\xcb\x92\x7a\x9f\x7b\x4f\x8a\xbb\xf2\xfe\xbe\x6e\xed\xd9\xa4\x6b\xb2\x01\x56\x3a\x72\xe9\x3b\x0a\xdb\x75\x47\x91\x95\x4c\x48\xdc\x58\xdb\x25\x94\x2d\x43\xe8\xd0\x0f\x12\x3c\x5d\xd5\x3e\xa1\x7c\xbc\x48\x11\x0e\x55\x64\xac\x1b\x64\xd2\xb2\x28\xec\x0b\xac\x98\x79\x95\xf4\x2d\x84\x63\xf9\x98\x1a\x26\xae\x96\x07\xee\x43\x1e\xc3\x0b\x9e\x34\x92\x01\xa8\xd9\xf0\x7f\x87\xf1\x90\x28\x30\xd1\xd7\x51\x2e\xcd\x7e\xc8\xe0\x47\x48\x47\xab\xa6\x80\xb4\xf4\x70\x71\x89\xb0\x86\x78\xaf\xeb\x81\x72\x67\xbb\xaa\x33\xde\x3f\x53\x4a\x48\xe9\x30\x4a\xa2\x34\xd9\xa5\x22\x20\x3a\xe1\xe8\x26\xc3\x43\x98\xed\xf9\xe8\x5b\x0b\x8f\xa2\xbc\xbb\xfc\x3a\x50\xf3\xf2\x0b\xba\xd8\x1b\x25\xdc\x5a\x59\x9c\xde\x3a\x57\xfe\xc5\x56\x3d\x8e\xcd\xcf\x8b\x53\x24\x57\x15\x38\xd4\xd8\x82\x8e\x2f\x6a\x34\xef\x32\xa9\x09\x47\xc5\xa4\xb3\xb1\xfb\x45\xee\xec\xf3\xbe\x57\xfa\x92\xa7\x75\x23\xe1\xac\x2b\x12\x06\x11\xf1\x43\x27\x7c\x79\xf7\x23\xba\xc5\x08\x6f\x9b\x5a\x88\xe7\x84\x72\x3a\x1c\xd8\x6c\x25\x37\x03\x9b\xb5\xd4\xc0\x16\x30\x1c\xe9\x59\xfb\x14\xfe\xc0\x57\xf6\x33\x90\x03\x4f\x61\x2b\x50\x3e\x2e\x3f\x47\xa1\x50\x27\x3d\x48\x2e\x77\x6e\x78\xfd\xba\x5f\xff\x99\x0d\xcf\x84\x18\x58\x53\x30\x81\x4a\xec\x4a\x14\xb3\xe5\x0c\x42\x90\xb4\xd8\x34\xc6\x43\x19\x10\x32\xb0\x8f\xff\xde\xfb\xdb\xd9\x9e\x4d\x34\x03\x1e\xf9\x1a\x3b\x5e\xf2\x85\xca\xbf\xf2\xc2\x64\x64\x7b\xaa\xe6\xa2\x5e\x69\xeb\x6c\xad\x0b\x38\x37\xd7\x36\x24\x3c\xe6\xf5\x65\x03\xe5\x11\x71\x54\x35\x48\x42\x13\xe5\xb9\x9d\x28\x8f\x03\x07\x4b\x75\x79\x19\xe7\x09\x88\x7a\x7f\xac\x22\x75\x9c\xae\x81\xa6\xe3\x30\x6a\xae\xb8\xff\x0e\xfd\x3d\x18\x54\x47\xd4\xc3\xe9\x99\x21\xd9\x8e\xe0\xe1\x9f\x51\x9d\xeb\x07\xb0\xf6\x5c\xb7\xc9\xad\x8a\x6b\x15\x19\x49\x1b\x2f\x53\x81\x26\xae\x1d\x2d\x47\x41\x3f\xa5\x16\x4c\x98\x66\x43\xf2\xef\xd8\xeb\x81\x3b\x3b\x90\x0d\xe0\x29\x6c\x61\x9f\xca\x9e\xd7\x5e\x7d\xb4\xc4\x44\x67\x4d\x25\x98\x10\x7e\x15\x61\xa6\xf2\x8b\xa3\x2a\xd8\x03\x78\xb0\x1c\x64\x5e\xf4\xf6\x68\x4d\x1f\x6a\x7e\x7e\x7f\xbb\x6b\x57\x6d\x9c\x0e\xc5\x77\xde\x29\x1c\x95\xcf\x5c\xd0\x8c\x0a\x8b\x63\xf2\x07\xca\xa7\x82\x3d\xb1\x03\xad\x0c\xfc\x9e\x77\x80\xaa\xd6\x28\x4b\x14\x30\x87\x14\x3c\x68\xed\x67\x3a\x8a\xcd\xfe\x18\x1f\x79\xa8\xdd\xf7\x54\x70\x5d\x2d\xa7\x78\xf8\x64\x8d\xb5\x72\x70\xba\x3d\x8c\x0d\x8f\x44\x9d\x15\x9c\x97\xec\x2c\xef\xbc\x6b\x78\x95\xf5\x58\x9a\xad\x4f\xfa\xa5\xc9\xc4\x24\xa6\xb5\x2b\x52\xed\x09\x5a\x25\xfc\x8f\x54\x77\x75\x2d\x8b\x0a\x3f\xef\x44\xc8\x66\x1a\x30\x5f\xa8\xfe\x70\xdf\xe4\x4f\x29\x61\xfc\x47\x36\xd4\x84\xe6\x28\xa6\xda\xf8\xa3\x7b\x38\x90\x1c\xad\xf5\xe0\x34\x0f\x84\xdf\x09\x94\x99\x21\x46\xb7\x48\x0a\x2e\xd2\xe0\x03\xe4\x8d\xbf\x1c\x2b\xb1\x88\xdf\x0c\x3c\xc9\xee\x4a\xa0\x08\x37\xb7\x68\x91\x88\x75\x0b\xdd\x7a\x88\x84\x4c\x00\xcd\x83\x42\xa2\x05\x77\x4f\x61\x16\x2b\x9e\xf2\x17\xe9\x99\x48\x21\xea\x01\x99\xbb\x37\xbc\xb7\xf6\x0f\xe8\xbc\xc1\x13\x3d\x19\x78\x8f\xf4\x61\xbe\x1e\xf6\x9d\xe3\x83\x62\x0a\xef\xa0\x53\x90\x5f\x77\x7c\x7f\xee\xa5\x51\x5e\x44\xa1\xe5\x1e\xaa\x08\xde\xa8\xd4\xef\x75\x75\x66\x2d\x65\x51\xb7\x67\x31\x01\x95\x6c\xc8\xc3\x3f\xb9\x59\x26\x3c\x17\xcf\xe4\x23\xf7\xe7\x4a\x0f\xc7\x13\x60\x6b\xa3\xb6\xc5\xe9\xf6\xd0\x14\x59\x9a\x44\xaf\xb8\x02\x01\x75\x38\xc0\xb2\xfc\xba\x89\xce\x95\x7f\x73\x64\x96\x96\x7c\x5d\xa1\xa9\xf8\xc2\x16\xf6\x4a\x77\x79\xd4\x65\xb8\x05\xe2\x0d\x6b\x3e\xf0\xc5\xf8\x8b\x9f\x51\x3c\x0e\x6c\xd8\x37\x49\xf4\x4a\x45\xaa\xfd\x12\xad\x05\x07\x99\x2a\xdf\x47\x00\xce\x4f\xba\x11\x49\xd7\x66\x24\x8a\xcd\x9d\x12\x20\x9d\x5f\x55\xe6\xfe\xaf\xba\x56\x45\x37\x5a\x2d\xab\x12\x8d\x8c\x57\x7a\x78\x67\xc6\x15\x03\x60\x9a\x6d\x81\x3f\x8b\x36\x35\xff\x12\xbe\x50\xce\xe6\x4b\xe9\x7a\xde\x6a\x7d\xf9\xcb\xfc\xf0\x8e\x63\xfc\xc4\x17\x4d\x6e\x1a\x61\xdf\x9a\xa1\x68\x14\x09\xb6\xd6\x3f\xfd\xc3\x0a\xab\x11\x8e\x8a\x72\xbf\x12\x2e\x00\x79\xef\x5b\x58\x0f\xe2\x35\x51\xde\x21\xe4\xe6\x87\xd4\xf6\x82\x18\x23\x4b\xd2\x28\x50\xce\x59\xdd\xa9\xfb\x8d\xda\xd3\x2e\x93\xe3\xc2\x86\xfd\x24\xfa\xe6\x08\xb7\x89\x61\xf2\x81\x86\xcc\xd7\x9d\x36\xdb\x51\xe2\xce\x05\x3e\x71\x25\x71\xa9\x54\x2f\xdb\x73\xd0\xb2\x2c\x1f\x39\x03\x6e\x96\xaa\x53\x44\xaa\x53\x9a\x82\x10\xc5\x84\x31\x9b\x9b\x73\x12\x64\x1e\x79\xff\x9e\xee\xbf\xbe\x3b\x56\xcc\x1b\x8e\x01\x18\xf7\x1e\x0b\xbc\x51\xd7\x30\xcd\xb8\x81\x2e\x76\x1a\x3e\x62\xbe\xe9\xb6\xd9\x5a\x66\xc3\x15\xb5\x60\xce\x53\xdc\x12\xf1\x3d\x0f\xcf\x37\x49\x34\xa0\xf1\xbd\xb7\x1d\x53\xe4\x71\x92\x79\x95\x32\x21\x5d\x4b\x72\xda\x85\x13\x8a\x3d\x74\x0d\x0f\x06\xe7\x32\xba\x04\x22\xf9\xa9\x54\x62\xe2\x74\x6d\x52\x65\xd4\x57\x82\xed\x2b\x19\x8d\x91\x4b\x95\x4c\x5b\xa5\xf1\xcb\x51\x92\x90\x73\xab\x6a\x5c\x97\xbf\xda\x05\x6e\x27\x02\x73\x2b\xf0\x84\xb8\xf0\x15\x1b\xf6\x5b\xca\x32\x90\x3a\x4b\xa2\xd8\xed\xef\xc1\x28\x59\x4e\xe3\x2e\x3a\xb7\x8e\x3d\xa0\xa4\x06\x9f\x52\x84\xfe\x72\xa5\xf4\xca\x24\x79\x4a\x75\xdb\x21\xa5\xe9\x6c\xb3\x1c\x5d\x12\x3d\x2e\xfe\x37\x63\x2f\xcc\xb2\xa3\xf3\xb0\x4a\xfc\x2d\xc2\x8e\x8b\x9a\x7e\x41\x7c\xea\xe7\x61\x43\x1b\x46\xcb\x91\xed\x4e\xb6\xe6\xe6\xb6\x98\x3f\x86\xe5\x04\x38\xb3\xb8\xf7\xd0\x0a\xe2\x0e\x7e\x93\xee\x6c\xdf\xc6\x00\xfb\x09\xdf\xcc\x83\x4c\xde\xaa\xd5\x9c\xfb\xe6\xdb\xa1\x29\x6c\x36\x8c\xe2\xd8\x64\x9f\xad\x6a\xd1\x60\xc8\xb5\x96\x66\x59\x24\x03\x0a\xa7\x3d\xe5\x4d\x89\xcf\x05\x3f\x23\xb3\xb3\xcc\x74\x6d\x37\xca\x8b\x34\x2b\x44\x8c\x1d\xc1\x00\x84\x31\x7e\x5d\x41\x99\x27\xb6\x78\xc0\x4f\xbe\x79\x8c\xe0\x2c\x02\x1d\x77\x9d\x93\x23\x6e\xd5\x06\xbe\x1d\xf0\x16\xbe\x3f\x76\x1a\x43\x48\xd9\xd8\x83\x9e\xbc\x34\x77\xe9\xdb\xf3\xfb\x36\x22\x59\x72\x1b\x77\xd3\x01\x25\x41\x22\xa3\x47\x47\xbf\x08\xec\x69\xf8\xa1\x7d\x66\x8a\xbe\x0e\x7a\x0d\x37\x14\x9a\x63\xab\x3a\xef\x51\xf7\xf6\x3e\x2d\x59\xc1\xb5\xd4\x85\x1c\x17\xda\xa1\x35\xb9\x8d\x6d\x9e\x8b\x76\xa1\xf3\x90\x70\x33\x8b\xb3\x15\xd0\x81\x49\x8a\x27\x95\x6d\x00\x13\x70\x90\x97\x7f\xa0\xac\xe5\x5e\x1d\xfb\x76\xd6\x49\x15\xe5\x79\x24\x89\x5b\xc4\x99\x0e\x6a\xf5\x5b\xc8\xa6\xf0\xc0\x6e\x83\xba\x87\xe3\xff\xa7\x81\x3a\x81\xff\x96\xbe\x1a\x26\xcd\x4f\x6d\xd0\x99\xe3\x24\xcc\x67\x66\x39\xcf\xb8\xc7\xbd\x2b\xe4\x05\x27\xc7\xca\xd7\x72\x07\xb1\xfd\x5c\x94\xf4\xed\xd3\x63\x48\x7f\xf9\x23\xc7\xde\x8c\xee\xb2\x12\xd0\xb7\x61\x6c\x89\xde\xa5\x24\x27\xcf\xe2\xbb\x8a\x1d\x9a\x3f\x4e\xbb\x36\x8f\x7a\x89\xb5\xe2\x25\xe6\x9a\x8b\xae\x35\xfe\x9e\x1e\x7d\x5d\x6a\x72\xad\xea\x65\xe9\x9a\x34\x2b\xf0\x03\x5e\x53\xf3\xfc\xd7\x9a\xfa\x1b\x2b\x70\x8c\xa6\xfb\x8c\x4e\xfa\x31\xa5\x8e\x78\x2c\x78\x90\xff\xa4\xbd\x38\xbd\xf8\x98\xcf\x82\xb8\x9c\x41\xaa\x79\x5f\x89\x57\xee\x46\x6f\x43\x3a\x86\x7e\x80\xb2\x80\x40\xe2\x4c\x12\xf6\x09\x42\xf1\x5a\xa0\x36\xc8\x3b\xf4\xe1\xee\xf5\xaf\x3c\xaf\x69\xe2\xc2\xab\xbb\x37\x56\x60\xd7\xf7\xe9\x49\x4a\x45\x47\x0b\x4c\x4c\x26\x70\x23\x19\x1f\x89\x65\x81\xcd\x32\x59\xf3\x16\x27\xd5\x4a\xe2\xa1\x30\xc6\x4a\x00\x43\x1e\xd3\x70\x4c\x15\x92\x23\x1b\x43\xa1\x08\x4b\xeb\x9c\x76\xe0\x39\x4d\x3f\x1a\x3d\xdc\xbf\x55\x85\xd1\x39\xa5\x74\xb1\x1b\x6a\x45\xb2\xd9\xe8\xe7\xb8\x7f\xe5\x40\x63\xaf\x06\xbe\xce\x28\xcc\x12\xa1\x3d\x91\xcf\xc3\xc2\xc5\x75\xaf\xe7\xe6\xdc\x0c\xae\x5e\xf4\x95\x27\x89\x2d\x94\x6d\xba\x73\xd1\x75\x1e\xe8\xa7\x55\x0e\x31\x8c\x6c\x68\x73\x52\xbe\xc4\x9d\x63\x96\x20\xee\xdc\x2d\xc5\x34\xc7\x94\x04\x4b\xe0\xbb\x8a\x42\x36\x4c\xb3\x62\x39\x8d\x99\x76\x32\xeb\x5b\x5b\xaa\xe6\x6d\x62\x7c\x47\x49\x18\x47\x89\x24\x47\x58\xe6\x10\xae\xe0\xd7\x4d\xc1\x3f\xb3\xe5\xc7\x71\xd7\x53\x9c\x25\xf1\xe0\x9d\x41\xaa\xa7\xdb\x1f\x09\xb4\xa3\x49\x13\x42\x7d\x39\xcd\x06\x4a\x0f\x99\x9b\xb1\x7c\x51\x9b\x0d\x94\x7f\x11\x2e\x87\xcc\xaf\xa9\x1c\x11\xe2\xcb\xb2\xd7\x8d\xbf\xa2\x56\x4b\x19\xa0\xd1\x8a\xe1\x8b\xe0\xc9\x9a\x4b\xf7\xc1\xe9\x47\x95\x1b\xca\xf9\x40\xf1\x7c\xa7\xc8\xc9\x90\x61\x6f\x08\x27\x68\x2f\xdd\xd0\xa4\x35\x5e\xf0\x08\x57\x87\xb4\x80\xc2\x7d\xfc\x26\x64\xbe\x2d\xea\xc8\x63\xb5\x1e\x0a\x3c\x2e\x60\x17\x91\x60\xe8\x3e\x7d\xf9\xf3\x24\xea\x82\xf0\x88\x07\x82\x1e\xdd\x23\xe0\x92\x21\x9e\x33\xca\x13\x83\xb2\x2b\x4e\xbe\xad\x30\xc9\x0a\xc0\x15\x15\xdb\x00\x5d\x20\xa1\x4d\xf7\x48\xc7\x63\x9d\x6e\xea\xfe\xdd\x87\x95\xe3\xd8\x8e\x58\xa0\x00\x31\xf1\x72\xc5\xde\xfd\x72\xed\x01\xcd\xcd\xb5\xfb\x69\x96\x6b\x2d\xdb\xbb\xb8\x65\x1a\xf4\xcc\x22\x67\x63\xc9\x13\x86\x7d\x93\x0d\x4c\x68\x47\x45\x59\xcc\x4a\x44\xc6\xad\xbc\xaa\xbb\x32\x97\xf1\x18\x71\xfb\xbe\x3d\xf6\xf5\x2a\x30\x3f\x5a\xd3\xf6\x5b\x81\x4f\xcb\xbf\xd5\xc0\xc0\x98\x6d\xaf\x45\x71\x97\x15\xc0\x9a\x2a\xb4\xed\x93\xd7\xe7\x17\xda\x03\x5b\x4c\x28\x50\x1f\x07\x12\x51\xdc\xa1\x7b\x88\xed\x79\x4b\xd9\xad\x74\xed\x32\xe0\x6f\xdc\xe0\x10\x72\x13\xfd\x73\xbe\x50\xf0\xcc\x3c\xec\xdb\xee\x08\x40\x1a\xef\xd7\xef\xc3\xe2\xa9\xc6\xdf\x62\x96\x52\x93\xc1\x48\x43\xb7\xf4\x90\x87\xdf\x55\xaa\x12\x97\x55\x54\xed\xdb\xfc\xe1\x8a\xd0\x07\x9d\xb1\xce\x41\x6c\x71\xda\xbb\xee\xed\x9b\xf7\x72\x91\xe5\x0d\xa0\xb0\xf8\xc0\xcf\xd3\x71\x5d\xc1\x64\xd2\xef\x7f\xf3\x31\xe2\x23\xe2\xb4\x7e\x98\xfa\x11\x20\xe4\xff\x83\x0d\x45\x99\xd9\x81\xde\x0d\x25\x05\xff\xf5\x3f\xe9\x68\x27\x04\x65\x12\xad\xfd\xa3\xbe\xf2\xfc\x7e\x25\xf6\xf9\x53\x2c\x06\xbe\x50\x1a\xc7\x66\xc9\x66\x19\x0b\x82\x3b\x17\x05\xc0\xe5\xc4\xa8\xa2\x09\x43\x32\x30\xd9\x4a\x3e\xa1\xd5\xd3\xe9\xfb\xe1\xfd\x6f\x62\xaf\x0b\x89\xaa\xe1\x64\x2f\x22\x10\xd7\x5d\xc1\x7f\x1c\x2b\x97\x2f\xd4\xcf\xf8\x67\xbf\xf0\x8b\x8a\xfc\x71\x93\x66\x37\xfc\xba\x32\xbb\x29\xcb\xfd\x04\x46\x5d\x28\x29\x59\x1f\x05\x87\x08\x70\xcc\x7c\x20\x6a\xc0\xf4\xdb\x81\xef\x74\x2f\x38\x3f\x97\x7c\x34\x00\x42\xd4\x31\xce\x9d\x64\xdf\xaf\x8f\xfd\xd1\xb4\x89\x2d\xcd\x7f\x32\xb4\x59\x98\x26\xdd\x51\x58\xa4\x59\xb5\x86\x5a\xfc\x6c\x06\x76\x79\x2f\x33\x33\xf4\xfe\x6a\x08\xcd\x3f\xd2\x7d\xf1\x1f\xd5\xce\x96\x7f\xe4\xd4\x2c\x26\x14\x61\x83\xa5\x16\xdd\x0c\xf2\xa0\x68\xb4\xdf\x6c\x0a\x3d\x2b\x26\x79\x29\x52\xd8\xdf\xf3\x94\xd1\xf0\xeb\x4a\xa6\x1c\x16\xf9\x13\xad\x99\x19\x66\x79\x6c\x02\x7f\x21\xde\xd2\x94\xea\x72\xd9\x1a\x28\x2f\xa7\x37\x34\xff\x96\x64\x42\x64\xac\xf5\xd7\xaa\x33\xcd\x1a\xcc\xe8\x67\x9c\xa0\xda\x5c\xac\x00\xc8\xcc\xfb\x35\xf0\x7b\x79\x8d\xe1\xc1\x61\x12\x34\x41\xdb\x09\xb9\x08\x9c\xa0\x91\x72\xa1\x49\x09\xa2\x14\x9c\x2b\xf0\x6f\x0e\x53\x05\x51\x11\x71\x43\xd1\xf1\x03\x77\x0a\x0e\x4d\xb6\xdb\x17\xe4\x77\x29\x77\x73\xa0\x58\xa7\x44\x08\xb1\x20\xcc\x49\x18\x66\xe1\x86\x26\x8e\x2a\x3f\xb1\xe1\xa9\x99\x47\x95\x34\x5a\x6e\x4d\xc6\xd9\x8e\xe6\xb2\xf9\x96\xd9\x05\xb7\x06\x97\xe0\xf4\x21\x09\xf6\x54\xc7\x4f\x45\x59\xf1\x1c\x79\x2c\x0c\xda\x70\xd3\xa1\x80\x80\xa0\xb4\xa5\x52\xe5\xbd\x1d\x45\x02\xbc\x4e\x3f\xcc\xf1\xa7\xcb\xfb\x8f\xa7\xfe\x09\x7e\x0d\x62\xe2\xee\x0d\x05\x81\xd0\x71\x25\x8a\x57\x76\x79\x42\xe2\x4d\x05\x10\x7d\x94\x9c\x38\x11\xe1\x5f\xa3\x5b\x0f\xb2\xee\xef\x8e\xd5\x98\x89\xc7\xb4\x38\xd5\x2e\x8d\x7d\x7b\xbc\x37\x32\x99\x49\x0a\x0b\xfc\xa4\xc8\x1a\xa9\x06\xf2\xa6\x1a\xf8\x0c\x47\xe1\x4a\xc4\xfa\x64\xb8\x27\xb7\xe9\x11\xf1\x6b\x25\xfe\x30\x30\x2f\xa5\xd9\x43\xe5\x5b\xf2\xcc\x1c\x55\x2e\x76\xcc\x24\xee\x8b\x68\x7b\xd3\x87\xb9\xc6\x97\xd7\xaf\xd9\xd2\xae\x34\x9f\x04\xad\xaf\xcf\x7a\x7d\x5b\x17\x0c\xd8\xa0\x5f\x3a\x1b\xde\x11\xe7\x5c\xa0\x84\x40\x4e\x29\xd1\xde\x89\xa6\x69\xc2\x52\x3a\x4a\x38\xcb\x74\xc2\x5b\x5e\x00\xa2\xa9\x35\x31\xb4\x79\x1e\x0d\x98\x26\xe7\x72\x24\x7c\x10\xbf\x0e\xda\x0d\x61\x67\xc9\x26\x76\x39\x0a\x23\x83\x06\x45\xf9\x73\x1d\x2b\xc1\x73\xe7\xd4\x93\x4f\x07\x91\xc2\xd2\x9c\xd7\x62\x20\xe7\x9b\x5c\x23\x7b\x69\x8c\x6e\x30\x6a\xf8\x1b\xba\x44\x3c\x5c\x01\x64\xd7\x3b\x92\x0b\xed\xcc\xe6\x11\xb3\x6a\x74\xc7\x5e\x6f\xc5\x0b\x4d\x82\x12\x89\xc9\x32\x45\x08\xc2\x32\x45\x93\x9c\x5f\x37\x69\x0f\xc7\xd1\x60\x18\x01\xee\x82\x47\x8b\xea\x8a\x5f\xab\x16\xdc\xd0\x66\x79\x94\xe3\xe8\x42\x78\x46\xe7\x8e\x5f\x7b\x55\x09\x26\xba\x74\xa7\x3c\xfa\x9f\xb1\x20\x08\x83\x5b\x58\x2f\xd4\x14\xfe\xda\xdf\xef\xf8\x95\xbc\xa5\xa1\x95\x67\x9b\x7d\x2f\x07\x66\x30\x30\x71\x64\x70\x68\x8b\xcb\x82\x27\x6d\xd5\x0f\xdd\x03\xcf\xb5\x8b\x74\x38\x8c\xa1\x00\x80\x74\xe1\x4a\x65\xc2\xec\x71\xff\x6f\xd7\x40\x7b\x33\x33\xed\xcc\xa2\x0b\x40\xdb\x13\xf1\xf5\xb7\x03\x1f\x6b\x7f\x7b\xfc\xa8\x37\x65\x23\xc1\x58\x2a\xd3\x9c\x3d\xbf\xb7\xfc\xdb\x1c\xfb\xf3\xfc\x1d\xdd\x44\xf9\xce\x76\x8d\xbf\xb2\xf0\x9d\x9f\xdf\xff\x78\x6b\x51\x3a\x49\x17\x14\xc0\xf8\x36\x81\x33\x18\x91\x1c\x54\xa4\x77\x55\xa5\x7d\x38\x50\x2a\xe1\x13\x14\xa1\x9c\x74\x4c\xf9\xd1\x20\x70\xb4\x90\x6b\xa1\xc9\x0e\x13\x63\xdc\x8a\x89\x8e\xef\x9c\x1f\x19\x97\xa7\x20\xa3\xed\x10\x82\xf9\x33\xd4\x59\x7b\x46\xf5\x3a\xff\x3b\x8d\xc9\x79\x0b\xe7\x26\x0e\xd1\xef\x28\xc4\xec\x90\x5c\xf5\x32\xde\x82\xf2\x04\xd4\xd3\x50\x43\xcf\x5e\x04\x40\x27\x96\xff\x3d\xa5\x24\x75\x4f\xcd\xfd\x4c\x56\x4c\x2a\xd5\x65\x9e\x7a\x8a\x49\xcc\x67\x0d\xc9\x1b\x88\x57\xa3\x1c\x53\x04\x54\xab\xe7\x10\x20\xf9\xc2\x1d\x54\xdd\x51\x8a\xaf\x8e\xb3\x46\x9f\x3b\x5b\xb5\xcc\x65\xf6\x40\x7b\xc9\xf4\xcd\xc0\x48\xe1\x82\x6f\xff\x68\xc7\xff\x12\x96\x65\xc3\x12\xdd\x53\xeb\x86\xcc\xcf\x8b\x07\x26\xdf\x31\xdc\xde\x43\xda\x1b\xed\x90\x82\x02\x87\x36\x8e\x95\x25\xd3\x31\x25\xd7\x7f\x5e\xa1\x56\xdf\x08\x9e\xaa\xc1\xae\x97\x22\xb4\x61\xb9\x4e\xc1\xf7\x92\xa2\xa5\x82\x37\x4b\x57\x1e\x2d\xd7\x0c\x26\x3c\x87\x54\xda\xff\x3f\xdd\x20\x10\xb1\x3c\x49\x55\x1d\xde\x45\xea\x84\x24\xfb\x3a\x19\x1d\x38\xfa\x53\xf9\xb3\x00\x72\xb9\x1d\xa8\x5e\xde\x65\xac\x65\xc7\xd1\x74\x83\xd6\x3b\x2c\xd7\xc5\x8a\x7b\x63\x8f\xcb\x82\x62\x20\x7a\x56\x9f\x60\xb0\x85\xba\xfe\x54\xa0\x18\xb3\xa7\x82\x47\xd5\x5c\x25\x96\x93\x15\x5f\xf4\xd0\x58\x7d\xeb\x43\x4d\x86\x05\x65\x68\x18\x0c\x0b\x2f\x6f\xde\xa4\x01\xe5\xbb\x89\x34\xf3\x5b\x23\xf5\x62\x87\xde\x7a\x93\x42\x11\xbf\x76\x7c\x92\xb0\x6f\x4d\xf1\xff\x3b\xb8\x6c\xa0\x52\xdb\xd8\x2c\xd1\x24\x6b\xc2\xbb\x0f\xdf\xa3\x5b\x22\x23\xe6\x96\x13\x0f\x7a\xbf\x49\x2b\xbf\x1b\xe5\x2b\xdc\xb1\x47\xf8\x62\x95\x16\xbe\x08\xb4\x91\x24\xb6\xa3\x13\x1f\xf7\x72\xa7\xd7\x1b\x52\xfd\xb6\x09\xc3\x6c\x24\x4d\x24\x55\x8d\xcc\xba\x5e\x5d\xc3\xd7\xc9\xfb\xe9\x1a\x23\xa0\xa1\x48\xf2\x89\xde\xcf\xa0\x56\x09\x0a\xaa\x8e\x29\x5f\x6c\x87\xe9\x70\xbd\x3a\x0b\x74\xbd\x8c\xf3\x6a\x0a\xfa\x92\x09\x57\x5a\xea\x8d\xcf\x69\x6b\xa9\x73\x6e\x02\x23\xce\x25\xcc\x17\x46\xba\xfb\x6e\x45\xc8\xde\x6b\x52\xbf\xa5\x28\xa8\x4b\xe9\xcb\x96\x55\xb8\xb8\x90\x00\x16\x7b\x8b\x68\xc9\xfb\xb7\x36\xc6\xdb\x01\x90\x62\x3e\xa8\xa4\xcc\x6d\xb1\x44\x5f\xb3\xdc\x06\x88\xdc\x9f\xa0\xfb\xc4\x17\x4a\x06\x72\x10\x86\x66\x4d\x4d\xca\xd8\xb4\x17\xb7\x10\x1c\x6c\xdc\xf4\x43\x4d\x92\x00\xbd\xc8\x09\x4e\x88\x7f\x9c\xa7\xb9\x68\xff\xea\x95\x15\x33\x59\x1e\x2a\x0c\x8a\xc7\xd1\xa3\x75\x1a\x9c\xa8\xfc\xbc\xf3\x53\x64\x8f\x2d\x19\xa5\x91\xd2\xb3\x85\xa5\xef\xe2\xb4\x93\xac\x2d\x03\x0a\xbf\x56\xb2\x20\x83\x34\x29\x6c\x37\xca\xd3\x64\xc2\xef\x98\x93\x2a\xa8\x1f\xc5\x82\xc2\xf8\xe0\xda\xd8\xb3\x94\x97\x63\xfb\x72\xb4\x44\x62\x52\xa4\xaa\x8f\xe9\xd8\xa9\xb1\xf2\x8c\xbc\xa4\xaa\xe1\x53\x63\x05\xde\xf9\x14\x82\x08\x7c\x41\x2b\x08\x11\xfe\xa3\x2a\x99\xae\x37\xb2\x53\xa4\x51\x26\x7c\x2f\x6d\x1a\xfe\x07\x1a\x40\x04\xfb\x69\xf4\x4c\x38\x33\x14\x12\x8d\x87\x51\xd9\x75\x2c\x19\xe1\xf6\x60\xb6\x8c\x02\x65\x12\x47\x36\x83\x74\x34\xe9\xe7\x94\x32\x02\xbe\xad\x27\xc6\x66\x68\xb3\xdd\xf4\x57\x08\xd4\xa7\x10\xa8\xf1\x4b\x58\x6b\x16\x71\x01\x7d\x72\x0d\xc5\x42\x34\xbf\x34\x56\x2e\xa9\x9c\x41\x20\xaa\xdc\x6f\xca\x45\xa3\xc1\xc0\x76\x23\xe2\x84\xcd\xcd\xf1\x78\x71\x97\x97\x9c\xda\xb7\x6b\x43\xe6\xd4\x49\xb4\xb2\x02\xdf\x7c\x25\x91\xe2\x3d\xe7\xbd\x83\xf1\x20\x55\xa1\x79\x43\x09\xb1\x6e\x54\x5a\x91\x45\x64\x5a\xaa\xe6\x43\x8e\x2a\xe8\x53\x61\x84\x99\xe1\xd0\x9a\x8c\xe4\x3c\x71\xaa\x1d\x1d\xfb\x12\xe8\xbf\x7d\x9c\xba\xaf\x88\x66\x5b\x63\x45\xd0\x21\x40\xfc\xbd\xff\xfe\x89\x8e\x97\x61\xbc\xad\x07\x53\xe7\xb0\x72\xf4\x04\x40\x74\xbf\x1a\x62\x62\x18\x5b\x93\x8c\x86\xda\x17\xe3\x6f\xc6\x3e\x9c\xfc\x4d\x63\x5f\x7b\x40\x0a\x1f\x07\x85\xea\x4e\xae\x9f\xf2\x5a\x25\xa2\xc3\x78\x94\xf4\xc0\x9a\x42\x80\x80\x05\x65\x05\xcf\xea\x94\x4f\x66\xfc\xcc\x43\x25\x67\x59\x3a\x4c\x73\xdb\xdd\x4b\x31\xea\x22\x22\x3c\x33\x70\x68\xda\x5d\x19\x01\x39\x74\x53\xb9\x05\x84\xa7\xa3\x04\x23\xfe\x64\xec\x19\x7b\x67\x70\x4b\x59\x3c\x69\x4c\x26\xe3\xb8\xfd\xe8\x76\xbc\xa9\x72\x98\xbe\xc9\xba\x7b\xe9\x13\x50\x07\xbe\x8e\xc3\xdb\x55\x2a\x0e\xa3\x07\x75\x15\x11\x6d\x51\xe2\xc9\x7f\x4b\x51\x19\x49\x37\x0c\x71\x91\x11\xbf\xa1\x55\x6e\xb0\xd2\x91\x44\x5f\x21\xf5\x52\xf9\xef\xdb\x66\x00\xf3\xf3\xed\xaf\xcf\x92\x5c\x90\x80\x3d\x5b\x8e\x04\xf7\x27\x94\x97\x08\xfb\xc3\x73\xdd\x8f\x21\x84\x48\xb3\x69\x7b\x7d\xf2\xe2\x8b\xed\x25\x8b\xb2\x61\x51\xc6\x72\xac\x67\x23\xc3\x49\xcf\x71\x60\x0e\x90\xfc\x7e\x75\x40\xc4\x51\xc8\xf9\xc2\xbc\xf7\x79\x9f\xf7\xe2\xce\xea\x3c\xca\xa2\x70\x85\x6a\x14\xfc\xc8\x3f\x57\xd2\x09\x18\x9a\x22\x84\x5e\x52\x53\xa5\x93\x0a\xcc\x31\x30\xd9\xca\x84\xaf\x4c\x90\x8e\xe1\x31\x5f\x53\x10\xd1\x9d\x1d\xd5\x92\x5d\xdc\xbf\xdb\xb7\x42\xbe\xfe\xc5\x8e\x77\xc4\xf9\xe6\xdf\x67\x00\x22\x42\xd8\xc3\x1d\xbf\xc9\x6f\xe3\x2e\xe8\x02\x08\xc7\x02\x5c\x4c\xd9\x1d\x6b\xac\xc7\x71\xbd\x96\xc6\x92\x55\xd0\xd9\x8f\x28\xf1\xd0\xd8\x80\x79\x8d\x36\x0d\xd3\x30\xf9\x42\x99\x0d\x7c\x38\xf6\x88\xf8\x0f\xd5\xcd\x8e\xed\x72\x41\xa5\xf0\xc1\x69\xc7\x72\x2e\x3f\x97\x5f\x2b\xe1\x15\xb3\xf2\x4a\xba\x9b\x96\x3b\x0b\x70\x22\xd6\xa2\x2f\x30\xb9\xe1\xbb\x33\x87\xe9\x2e\xa2\xbe\xfb\x36\xbd\x19\xda\x62\xf7\x68\x7b\xa2\x2b\x3f\xd9\xf1\x55\xeb\xfd\xc0\x6f\xf6\x35\x93\x65\x16\x8c\x80\x8a\xb3\x00\x5f\xa8\x2a\x6a\x29\x4a\xd0\x37\x15\x5d\xca\x6d\x30\x3f\x8f\x3e\x3a\xd2\xe0\xd7\x3f\xdb\x4e\xc3\x70\x34\x8c\x44\x30\xb2\x91\x71\x55\x7e\x45\xa9\xfb\x7c\x9b\xba\xe8\x73\x6b\xa2\x5c\x37\xec\x83\xa6\x84\x9d\x0e\x3b\xdd\x47\x31\x11\x91\x5c\x91\x5b\xda\xca\x56\xea\xdc\xf8\x41\xf7\xb6\x69\xf2\xb3\xe5\x9b\x60\x9f\x30\x21\x51\xcc\x21\xb5\x37\x01\xdb\x2a\x8a\xad\x9d\x02\x53\x6f\x8d\xd5\x18\x8c\x23\x13\x96\xfc\xb5\xb1\xaf\xb2\x4f\xc2\xf4\x8d\x15\x5b\xa8\x64\xc1\x9e\x7f\x97\x2a\x63\x74\x71\x2f\xab\x99\xf7\x09\x2c\x5d\x71\x18\xf7\x35\xed\x3d\xe2\xd7\xb8\xcd\x5c\x96\x38\xa2\xde\x40\x3b\x1b\xd1\xec\x5b\xb4\xf0\x44\xdc\x15\x0f\x09\xff\xe7\x22\x42\x2c\x32\x01\x6e\xe8\xe3\x74\xe3\xb2\x0a\x6d\x10\x2c\x15\x74\xa7\x3f\xa6\xee\x32\x36\xe8\x2d\x64\xd0\xa8\xaa\xb6\xa8\xa1\x27\x63\x0c\xef\xc2\x94\x87\x66\x68\x7b\x29\x0a\x10\x4f\x1f\x81\x1e\x0e\xbf\xae\xa5\x8e\xb3\x07\xda\x45\x54\xb0\xd3\x12\x3a\x02\x57\xe9\x0f\xf8\xb5\xeb\x0f\xad\x9a\x24\x4c\x47\xab\x36\xe3\xbe\xbf\x33\xa9\xf3\x4e\x11\x7f\x53\xa9\x31\x47\xb1\x05\x2b\x02\xb7\x99\x1a\xaf\x5b\x77\xb1\xb9\xa5\x4d\x45\xf7\x01\xdd\xd2\x7f\xa7\xcc\x72\xaf\x06\x4a\xd2\xe5\xb4\xca\xc9\xfb\x51\x1c\xe7\xe0\x9b\x4a\x66\xeb\x03\xf6\x7b\xf8\xab\x0a\xe7\x5e\x72\xe1\xfa\x99\xbc\xd0\xce\xa2\x50\x5c\xf0\x85\xc9\xdc\x72\xce\xa4\xe7\xb4\x15\xc4\x5d\x35\xc2\xeb\x5a\x1a\xac\x67\x3c\xa6\x46\x3d\xba\x41\xdb\x9d\x5f\xab\x88\xc3\xde\x09\x53\xf4\x5d\x04\x84\x42\x8b\x55\x2c\x9b\xd5\x73\x7d\x47\x65\x1e\xe0\x30\x21\x47\xbf\xdc\xe4\x57\x94\xdb\x6c\x15\x05\x23\xfa\x49\xec\xf0\x51\xf1\x6f\x92\x21\xf1\xcf\x78\xd4\x60\x5c\xd8\x2c\x21\xf5\xc8\x78\xbd\xe5\xfd\x4b\x59\xf0\x85\x2f\x02\x01\xbb\xa6\x59\xcf\x24\xd1\x2b\xac\x8c\x52\xde\x0f\x2e\xdf\x15\xdc\xe1\x8e\x8a\xd0\x5d\x9b\x24\xeb\x4a\x92\xee\x8c\x1e\x80\xd4\x0d\x7e\x9f\x9f\x3d\x50\xa6\x74\x99\x0d\x23\x8f\xe3\x14\x1a\x2e\xfd\x02\xbe\xa8\xa1\xef\x09\x40\x95\x26\xcb\x23\xef\xce\x2c\x88\xa1\xf2\x1e\xca\x3c\xd9\x0d\x4a\xfe\xcb\x5f\x24\x33\x1f\xc7\xd7\x72\xf7\xb6\xa5\x91\x66\x6f\xd3\x53\x14\xc5\x8c\xf2\x8d\x24\x89\xf6\x12\x70\x0c\x48\x90\x77\x52\xe3\x80\xcc\xe6\x39\x18\x7f\x8e\xfd\xf3\x23\x0a\x2d\xfc\xda\xed\xa4\x30\xb3\xb6\x8c\xc6\x6c\xb2\x28\x13\x2c\x3d\xd9\xda\xfe\xc0\x9f\x5f\x68\xdb\xe4\xa5\x74\x1d\x01\x1c\x31\x8c\xd5\x63\x5d\xdb\xc5\x0f\x0f\x4f\xbb\x8f\xea\xa6\xe4\x3c\x25\xf7\x48\xa3\x1b\xf9\x75\xc3\xce\xa0\x0c\x37\xa3\x6a\x0d\xc9\x1e\x60\x9f\xa2\x7d\xe0\xb3\xa5\xf7\xb4\x65\x52\xd4\x8d\x59\xe2\x0d\x6c\xd3\x0b\x88\xdd\x7c\xd1\xd0\xac\x5a\x2f\x33\xe2\x99\x19\xde\xfe\x0f\x50\x72\xce\xaf\x37\x94\x54\x55\x3a\x18\xc6\x51\x58\xae\x0f\x38\xb6\xa1\x7e\x62\x20\x23\xc2\xc5\x7b\x8c\x5b\x40\xe0\xe5\xba\x08\xa7\xe8\xa7\x48\xbc\xf8\x8f\x02\x57\x48\xc4\x4b\x36\x2b\x14\x8e\x81\xb7\x3b\xaa\x40\x46\xca\x89\x88\x4b\x13\xa0\xda\xd8\xdc\x64\x32\x02\x45\x83\xea\x2d\x8d\x42\x79\xcb\x23\x40\xa3\x5e\x62\x8a\x51\x86\xcd\x8a\x55\xf7\x9e\x32\x25\xba\x5e\x01\x01\x39\x47\xed\x7e\xb4\x6a\x72\x26\x3f\x31\x94\xba\x3a\x95\xd2\xe4\x02\xc5\x59\x7d\x90\xc6\x8c\xf2\x8f\x9a\x14\x91\xd2\xb5\x44\xd9\xf7\x9e\x0c\x54\x18\x7b\x6d\xec\x05\x7d\x3f\x69\x1a\x83\x87\x26\x2f\xcf\x0a\x55\x78\x82\x13\x2d\xac\x21\x0f\xd7\xeb\xa7\x71\x1c\xf5\x58\xac\xa9\x51\x82\x41\xd9\x16\x9b\x28\xc9\x8b\xcc\x9a\x01\xc0\x7d\x68\x79\x9c\x50\x1e\x02\x4f\x9d\x50\x1d\x8c\x6f\xac\x59\x04\x23\xe1\x34\xb5\x9c\x84\x4d\x5d\xed\xf0\x79\x92\xec\xd6\xfc\x38\x7c\x57\xb4\x47\xf8\xb5\x1a\x97\x2c\x91\x7c\x56\x0e\x2d\x06\x1c\xca\x50\x72\x05\x7e\xeb\x2c\x75\x39\xf0\x13\xfe\xb0\x01\x98\xbe\xd0\x36\xa1\x73\xf7\x6a\x29\x37\xe4\xf3\x15\x43\x80\xda\x9a\x9a\x99\x21\x69\x1f\xb7\x53\x85\x82\xd8\x72\x6a\x49\xd7\x6b\x33\x8e\x7d\xf3\xed\xdc\x9a\x3c\x4d\x58\x98\x00\x91\x00\xa5\x0d\xbf\x56\xf1\x69\xc9\x0e\x52\x93\x48\x6a\x00\xf8\xcd\x0e\xc5\x26\xde\xb1\xe1\xd3\x3e\xfb\xcd\x51\x54\x30\x0a\x58\xec\x4f\x18\xca\xc9\x17\xb5\x09\xd8\xec\x81\x76\x94\x14\x36\xb3\x80\x5a\xd3\x87\x30\x91\x22\xf0\xdc\xa4\xe3\x4d\xf2\x3f\xc3\x2c\x5d\x8e\x90\x95\xbb\x81\x8b\x13\x2c\xdb\x54\x83\x07\x98\x7d\x67\x8c\x97\x95\x3a\xc2\x63\xc8\x4f\xd7\x7a\xbd\x33\x33\xed\x30\x36\x49\xd7\xe6\x45\x94\x60\x07\x6a\x8e\x26\x7e\x0c\x0a\x35\xb6\xec\x6a\x70\x96\x6c\xaf\x46\x5d\x9b\x16\x66\xc8\x3a\x41\xee\x84\x52\xaa\x11\x0d\x27\xd4\xb3\xa4\x75\x16\x25\x23\x89\x5c\x22\x1c\xa8\x48\x49\xb8\xa7\x38\x65\x34\x08\xff\xa6\x96\xf5\x3a\x51\x83\x9a\x1e\x78\xae\x3d\x4a\x56\x6d\x14\x2b\x3b\xbd\xb7\x02\x3f\x4f\xae\x23\xc2\x85\xf6\xb2\x94\x5a\xe7\x7a\x8b\xf8\x06\x3f\x01\x1c\x80\x3f\xd1\x54\xfc\x33\xaa\xc7\x4e\x0b\x62\x1d\xcd\x50\x46\x62\xc3\xc7\x03\xd9\x2d\xc4\xbf\xd9\x83\x4c\xcd\xe8\x4e\x2b\xec\xfc\x11\x55\xcf\xfc\xf2\xec\x57\x38\xf1\x72\x6e\x13\x6e\xf4\x76\x27\x50\xfa\x24\xf5\x69\x62\xb9\x51\xa2\x41\x54\x50\x4e\x22\x33\x19\x44\xac\x33\x9a\xd2\xf0\x67\x55\x55\x81\xc7\x95\x5b\x70\x6c\xb3\x5e\xc4\x02\x6e\xc2\x01\xa4\xbf\xe4\x8b\xa6\xc0\xc7\xa5\x3e\x3d\x47\x8d\xef\x43\xda\x7f\x16\xa7\x0c\x5f\x50\x81\xc4\xff\x48\x45\x96\x30\x8e\x06\x22\x33\xca\xa2\xe0\x28\x4f\xd0\xd8\x00\x99\x8e\xc9\x8a\x63\x1f\x1c\x87\x7d\x9b\xa4\x03\x9b\x30\xd5\x16\x51\x1e\xd9\x09\x4e\xfb\x8f\xc7\xaa\x7e\xba\xa9\x8e\xe4\x41\x54\x6e\xf7\x5d\xda\xa0\x47\x1b\xe9\x04\x2a\x41\x3e\x3c\x56\x39\xf5\x61\x3d\x65\x0d\x94\x66\xc1\x66\x6d\x73\x2c\x3c\xb7\x9f\x68\x82\x79\x91\x66\x39\xbb\x28\xa1\xc3\xce\xe5\xa5\x18\x07\xb6\x9c\x46\x35\x9f\xdc\xa8\xfd\x7e\xac\x16\x85\x79\x19\x9d\x42\xb6\x88\xc7\x3f\x13\xbf\x78\x0f\x06\x0c\xfb\x26\x29\x60\xac\xb4\xdf\x21\xec\xaa\xba\xe2\xbe\x06\x89\xb2\xa2\x85\x82\x92\x73\x61\x4c\xa7\x24\x31\xae\xfb\x1c\xc4\x66\x28\xe2\x65\xe8\x30\x5f\x0b\x3c\xc3\xe6\x9a\xea\xb3\x45\x83\xe1\x28\xce\xa1\x10\x20\x32\x34\xc7\x03\x65\xe2\x84\xdf\xcc\xff\x43\xc3\x07\x2f\x34\x31\xb4\x44\xe1\x49\xa9\xab\x9e\x50\x38\x7e\x56\x3b\x90\xa3\xeb\x11\x55\x60\x64\xc3\x67\x9e\xa4\x47\x8c\x87\x07\x4b\x1d\x94\xdc\x77\xb5\x6f\x5e\xe0\x3d\xce\xa0\x9a\x8c\xce\xd1\x6d\x64\x91\x68\xd3\xed\xd8\x28\xf7\x2b\x4e\xdc\xdb\xa8\x53\x9c\xa6\xa9\xeb\xc0\x9d\x40\xc5\x2b\xc3\x19\x65\xe7\x73\x94\x72\x43\x84\xb6\x96\xf6\x53\x2a\xc6\x0a\x5f\x77\x9a\x0b\x63\xa1\x1b\x95\xf7\x1a\xcd\x4e\x4e\x62\xf1\x5d\xee\x50\x89\x8e\xb2\x95\x7b\x92\x52\x72\x3e\xa4\x64\x93\x5e\x7e\x48\xc1\xb0\x7f\x12\x78\x3c\xc4\x29\x25\xbb\xfc\x2d\xa4\x12\x5c\x7d\xd3\xb7\x74\xf6\xfa\x4e\x30\x9d\x39\x38\xe8\x6c\x1c\xa7\x52\xc0\x39\x9a\x38\x2e\xc7\x45\x4c\x6d\xc5\x4b\x4f\x8d\x9f\xee\x06\x8a\x00\xb4\x73\x43\xd2\xbf\xcc\xae\x9a\xc1\xd0\xc5\x5c\x49\x7e\x7c\xa7\xe8\xdf\x28\xdd\x5c\x2d\xd9\xd0\xb5\xc3\x34\x8f\x18\xf5\x8a\x0f\x9f\xea\x78\xbe\xed\x94\x3a\xae\x5f\x8a\x7a\xbd\xb8\xfc\x88\x96\x43\x78\x7e\xa4\xf4\x05\xae\x06\x9e\x1f\xab\x45\x64\x96\x46\xbd\x1c\x68\x62\xf4\x8e\xae\xab\x6e\x0d\x7a\xb4\xe2\x9c\x42\xbf\x59\xb8\x82\xe5\x9b\x71\xa6\xad\xc6\x3c\x61\x9a\x84\x36\x43\x7e\x31\x7b\xc0\x8f\x28\x16\xfc\x45\x13\x9c\x3e\xb4\x71\x3c\x8a\xd3\xa8\xcb\xb3\x2b\xd1\x8d\xd1\x88\x7c\xdf\x31\xcb\xa2\x5e\xca\x14\x49\xe9\xcb\xb5\x1c\xd7\xf9\x88\x42\x0c\xc7\x69\x4a\x2e\x10\xf4\x9e\x18\xe6\xf0\xb2\xc5\x4f\xda\x0a\x3c\xf3\xe7\x28\x7a\x3e\xb2\xc5\xfd\x84\xfd\x44\x2d\x99\x9c\x9b\x6b\x9b\x24\x91\xdc\xa8\x7c\x6f\x2c\xdc\x23\x78\xf6\x7c\x51\x4b\xee\x66\x0f\xb4\xb3\x51\x62\xd6\x0c\x34\x53\xb0\x5e\xf6\x28\x04\x4d\x1d\x34\x30\x7b\xa0\x3d\xcc\xa2\xc4\xcf\x92\x05\x18\xe9\x0b\x87\x9b\x8a\x65\x6d\xa2\x2c\x8e\x12\x9b\xd3\x9c\x0c\xe7\xfa\xbb\x41\x55\x78\xc5\x89\x7d\xb0\x05\x23\x76\xc9\x21\x85\xba\xe2\xe7\xcc\xa6\x93\x95\x5e\xce\x33\xf9\x33\x4f\x7a\x65\xd7\x4f\x02\x2f\x95\x7d\xc7\xcb\x41\xad\x3d\xb9\x41\x22\x79\xd8\x02\x77\x70\x26\x0a\x0b\x4c\xf1\xa7\x6f\x29\xd3\x95\x4b\x81\x62\xf2\x5f\xa5\x78\x85\x45\x7b\x04\xe9\x95\x1b\x2e\x95\x5b\x13\x4b\x78\x4b\x0b\x35\x5c\x24\x10\xa8\x28\x37\x97\xeb\x1f\x79\xdc\x75\xec\x53\x19\x47\xd1\xad\xc0\x60\xe1\x2a\x3a\x71\x78\xc4\x17\x51\xfd\x60\xcf\x00\x55\xcd\xa8\x4c\x45\x47\x34\xdd\x18\x72\x15\x6a\xd2\x58\x7e\x1d\xbe\x80\x00\xb0\xeb\x0d\x19\x80\x93\x61\x6a\xc3\x5e\xde\x08\x92\xde\xd8\x5b\xfe\xb5\x1d\xd2\x14\x95\x0e\x76\x94\xbe\xff\x12\x55\x33\x5b\x3d\x29\x8c\xc1\x51\xf7\x67\xa3\xc4\x0c\xac\x37\x3c\x76\xf4\x11\x5f\x45\xaa\x11\xe2\x92\x35\x61\x9f\xcb\x48\x39\x08\xb4\xbe\xa5\x12\xa3\xbc\xa0\x84\x10\xde\xc6\x9e\x10\xc9\xf4\x47\xd5\xe9\x4b\x82\x82\xaa\xd1\x76\x93\x2a\x22\x74\x46\x4f\x8e\x3d\x5c\xe9\x8c\xaa\xd8\x06\xc3\x11\x85\x31\x61\xd7\xa9\xea\xed\xd3\xe0\x01\xfe\x5d\xd1\xf2\x84\x37\x99\xb8\xad\xdc\xc8\xb9\x36\x97\xc2\xbf\xa1\x19\x16\x5b\x93\x25\x13\x6a\xee\x0a\x49\x00\x69\x71\xd0\x33\xc6\x6f\xf9\x58\xc5\xbf\xd1\x33\x2b\xcf\x4c\x95\x87\x0c\x92\x2e\x18\x68\xf1\xeb\xb1\xaf\x29\x77\x92\x61\x9e\x73\x8f\x99\x17\xf5\xf8\xba\x67\xdf\xc1\xe9\x76\x3e\x5a\x8a\x23\xd6\xd9\x69\x72\xa0\x17\xa0\xc8\x5a\x3f\x1d\xfa\x53\x81\xbb\x76\x1b\x1e\xb5\x4d\x43\xd7\xad\xf7\xaa\xc9\x4c\x9c\x3f\xec\x47\x9f\xad\x8e\xaa\xc7\xde\xc4\x36\x12\x67\xa4\xf2\x3e\x22\xa6\x43\xe9\x82\x5f\x2b\xd4\xf1\x69\x6c\x09\x71\x82\xf1\xad\xd7\x07\x41\x43\xc1\x4f\xfc\x5d\x8d\x80\xfc\x18\x1b\xda\x21\x4c\x7c\x69\xf8\xa6\xe2\x2c\xfe\xa1\xeb\xb1\x84\xb1\x19\x0c\xd6\x81\xeb\x12\xd2\x97\x32\x7f\xfd\x48\x29\x7d\xc1\x05\x0e\x67\xfd\xf7\xb5\x7d\xcd\xaa\xdd\x5b\x57\x65\x01\x40\xe7\xb1\x8e\x77\xd1\xe1\x0d\x89\xa5\xb3\x35\xd6\x37\x5c\x79\xd4\x5f\xd0\x08\xef\xab\x63\x2f\x85\xf5\x58\xc7\x4f\x3f\x1e\x27\x42\x03\x52\xa0\x9d\x4a\x60\xa1\xc8\xa2\xd5\xc8\xc4\x15\xef\x28\x6c\x2b\x91\xcf\x79\x54\xb7\x41\x8b\x7c\x44\xab\x59\x8c\xfa\xca\x0f\xc0\x0c\x1f\x27\xab\x18\xf0\x6f\x3f\x61\x66\x66\xb7\xcd\xe0\xdd\x78\xdf\x75\x2b\xea\x3b\x60\xdf\x7c\x7b\xe8\x24\x2c\xd1\x61\xe0\xe6\x09\x5f\xb8\xb6\x52\x37\x33\x03\xc3\x47\x17\xce\xf3\x2b\xb4\xa2\xf9\xb5\xf3\x43\x58\xb7\xa6\x3f\xd1\xfa\xc6\x57\xf9\x7f\x4c\x55\xe4\x45\x68\x4d\xa0\xc1\x70\xb7\xe1\x4c\x2f\x2b\x82\x7c\x94\x99\x24\xa4\x06\xc8\x0b\x5b\x40\xaf\x6f\x5d\x74\xb8\xf5\x70\x90\x2b\xee\xc6\x89\x4a\xa5\xd6\x64\xaa\x11\x8f\x56\xec\x9a\xc9\x06\x2d\xcf\x3b\x41\x86\xc0\xaf\x9b\x7c\x76\xbb\x91\x2d\xb8\x20\x01\xa2\xea\xb8\x22\xbf\x9d\xd6\xb6\xae\xf8\x78\xdc\xa9\xad\x26\x21\xb0\xe5\x28\xb6\x58\xc6\x4e\x55\xdf\x11\x31\x5f\x54\xed\xaf\x1b\x81\x9f\x04\x1f\xab\x3d\xa4\x17\x5f\x6c\x9b\x6c\x20\x51\x5b\x98\xdb\x1e\x66\xf1\x56\xad\x79\x31\x7b\xa0\x5d\x64\x26\xc9\xe3\x51\x28\x62\x13\xb2\x8f\x5a\xce\xb6\xfe\x58\xad\x9a\xd8\x37\xdf\x0e\xd3\xd1\x30\x96\x14\x85\x2d\x58\x15\xbd\xfa\x90\xb6\x6e\x8f\x8a\x7e\x37\x33\x6b\xa4\x25\xb0\x38\xed\x78\xe2\xe5\xe2\x15\x9a\xb8\xc6\x69\x44\x8c\x82\x53\xb4\x0f\xc7\x01\x51\xfc\x96\xbc\x6f\xe3\xc2\x66\xac\x21\x8b\x93\xef\xac\x02\x6b\xdc\x79\x7f\xac\xee\xc3\x55\x0d\xca\x49\x73\x9b\xf1\x8c\x07\xbb\xe7\x94\x02\xd0\xdd\x0d\xfc\xd0\xfb\xba\xf2\xb6\x7c\x3f\x10\x29\x26\x93\x24\xd1\xaa\xcd\x72\x93\x21\xdb\x42\xce\x71\x47\x61\x62\xee\x04\x0f\xab\xfa\xc9\xc4\x93\x3e\xc3\x3e\x3f\x56\xce\x4a\x3f\x56\xf2\x36\xe7\x91\x74\xf0\xff\x50\x75\x60\xcf\x2c\x65\x91\x8d\x0d\x51\x8b\x44\xa2\xc0\xcf\x71\xb8\x2a\x10\x97\x9d\xa6\xfa\x79\x60\xb2\x15\x65\x88\xef\x4c\x96\x9c\xae\xd6\xf9\x86\xe6\x52\x3b\x23\x35\x03\x6f\xcc\x8d\xdc\xee\xd7\x14\x48\xe9\xd7\x6a\x00\xd9\xc5\xe9\x76\x6e\x80\x19\x47\xc3\x0c\x32\x4f\xfc\xba\x71\xca\x94\xc6\x3c\x65\x92\x84\xbe\xfc\x63\x00\xb1\x0e\x55\xd4\xcd\xb5\xcc\x56\x9e\xb7\x94\x38\x2b\xc0\x05\x22\x5f\xdb\xa4\x20\x1f\xf6\x4d\xd6\x13\xcd\x01\x0e\x2c\x81\xc2\x94\xde\xf5\x29\x53\xb4\xbc\x6c\x33\x77\x6e\x62\x07\x5f\x52\x60\x32\x0d\x37\xf8\xb3\xca\xe9\xb9\xca\xe2\x7b\x8a\xed\xb3\xe0\xa0\xb4\x7e\xf2\xbf\x64\xc2\x95\xbd\x1e\x06\x7a\x4f\xe9\xb5\x4c\x6e\x54\xf4\x1b\x7d\x0e\xdc\xda\x50\xf2\xd2\x47\xb0\x84\xd0\x9a\x67\x93\x42\xae\x29\x91\x88\x70\xe0\x40\x82\x8a\xe9\xf2\x71\x3a\x99\x91\x43\x7d\xaa\x60\x34\x36\x1f\xf2\x98\x91\x5b\x72\x14\x79\xa4\x3d\xe7\xcf\xc9\xe7\x6c\x97\x3b\x61\x78\xf4\x70\x87\xa0\x6a\xf9\xc4\x63\x1d\x05\xcc\x7a\xd0\xd5\xa5\x4b\x99\x49\x8a\xe5\x34\xeb\xaa\x49\x31\x37\xe8\xf9\xc2\x49\x92\x2c\x65\xd1\x12\x1a\xba\x18\x35\xb2\xf4\x18\x5f\x34\x4d\x94\xb3\x51\x2c\xb2\xac\x7c\xf6\xb2\x0e\x0c\x5f\xa8\xfd\x93\x0e\x8b\x68\x10\xe5\x6c\x73\x03\x86\x13\x9c\x23\xf8\x75\xf0\xb0\xc2\xe1\x46\x2f\xb7\x94\xd3\xca\x25\xef\xdf\xfc\x5c\x23\x85\x3f\x1b\x0d\x52\xc1\xa9\xa3\xc6\x39\xa7\x58\xb9\xe7\xc6\x15\x57\xbd\x34\xcf\xa3\x25\xf6\xb8\x14\x91\x56\xad\xd8\xaa\x00\xc1\xbd\x2c\xb2\xab\x74\xc0\xb5\x9c\x56\xf2\x55\x65\xeb\x76\x55\x15\xc6\xe5\x61\xc8\xde\x12\xad\x79\xe5\x9c\xe3\x90\x34\x97\xb4\xed\x7b\x3f\x2d\x6c\x8c\x96\x1d\xe0\x64\xff\x22\xf0\xc1\x04\xd0\x59\xe5\xca\x28\xd9\xff\x87\x4a\x61\x9f\xb3\x65\x41\x51\xf9\x0c\x66\x60\x12\xd3\xb3\xf9\xa4\xb7\x8c\xbd\x89\x92\x18\x3d\x12\x86\x3e\xf0\x05\xbd\x21\xff\xab\x5a\x92\x32\x3f\xdf\xb6\xab\x26\x1e\x99\x42\xce\x18\x24\x95\x9b\xc8\xb6\xf8\x42\xb1\x64\xa1\x97\x14\x52\xd5\xec\x31\x55\x67\xd4\xc8\x53\xf7\x25\x4c\x6c\x92\x29\xa5\x62\xff\xfa\x58\x9b\x39\x5e\x44\xe6\x8a\x50\x8e\x89\x3d\xbf\x0e\xfc\xc3\x38\xa5\x09\x30\xd9\x28\xcf\x23\x43\x77\x5f\x29\xf1\x2e\xb8\x87\x2c\xd3\xee\xd8\xe4\x61\xb4\x1a\xa5\xa3\x9c\x89\xc3\xa8\xc2\xce\xaa\x66\xcd\x59\x27\xed\x34\xb4\xd9\xf2\x68\x00\x2a\xb4\x78\x05\xf9\xef\xf2\x2a\x15\x42\x22\x36\xd7\x10\x58\x97\x46\x19\x4b\x5d\xeb\x11\x2b\xbf\x56\xf7\x22\x4b\x63\x5e\x0e\x68\x9e\x7d\xac\xc4\xdd\xfe\x0a\xdd\x15\x11\x01\x50\xd3\x51\xdc\x16\xa6\xdb\x8e\x95\x10\xe4\x96\xf2\x6c\x59\x8e\x12\x53\x3e\x93\xac\xa5\xa8\x17\xc7\x34\x88\xfa\x58\x65\xf6\x92\xc3\x02\xa2\xe5\x64\x5e\x78\xba\xcf\x17\x8d\xac\xdb\xa5\xd8\x0c\x2c\x9d\xaf\xc0\x2a\x41\x9e\x4f\x48\xb3\xe5\x4e\x43\xcf\xfc\x43\xa4\x06\xa8\x1c\x77\x74\xb6\xa1\xf7\xbe\x3e\xdb\x7e\x7e\x81\xd0\x7b\xdc\xb5\xa3\x9b\x85\xec\x64\x13\x05\x33\x8e\x24\xb4\xf3\x10\x6d\xaf\xe9\xce\xe4\x87\x4e\xbf\xcb\x24\x85\xe9\xa5\x09\xd8\x67\x74\x67\x64\x5c\xdd\x72\x42\xc9\x17\xd4\x79\x50\x26\x08\x6a\xba\x76\x42\x67\xbf\xf5\x64\x95\xd4\xea\x4d\x56\x24\xe5\x5d\xf5\x42\x1c\xd7\x15\xa9\xe1\x7a\xc3\x76\x5a\x68\xf7\x4c\xd1\xf7\x87\x39\x36\xde\x19\xb4\x43\xf9\xc2\x9d\x81\xf9\x5a\xb4\x6a\xbd\x3a\x1a\xfa\x06\x1f\x2b\x7b\xc8\x8f\x15\x7f\x33\xb3\xc3\x2c\xed\x8e\x42\x3b\xa1\x70\xde\x9a\x3a\x75\x4b\x21\x72\x8f\x35\x96\x23\x49\x98\x59\x93\xcb\x57\x43\xdf\x7e\x27\x88\x61\x7c\xd1\xa9\x17\x01\x0b\xed\x3c\x1d\xd8\x22\x1a\xc8\xb1\xee\xd4\x9f\xc4\x48\xf7\x17\x4e\xd4\x72\xed\xd9\x03\xed\xe5\xd8\xe8\x4c\xf7\x50\xe0\x33\x5d\x3d\x4b\x19\x8e\xb2\x61\xca\x5c\x1f\xd4\xb0\x27\x74\x0b\xee\x44\x93\xb2\x7a\x59\x51\x21\x90\x28\x35\x8a\x59\xa7\x46\xe1\x36\x76\x66\x73\x9b\x68\x65\x54\xd0\x5d\x29\x4b\xfa\xad\x2f\x74\x3c\x38\xf3\xf3\x1b\xca\x06\x42\x8f\x6c\xec\xcb\x7d\x33\xca\x1d\x45\x1d\x58\x91\xbf\xc4\x17\xe4\x0b\x17\x47\xc2\x6c\x94\xf7\x59\x84\x4e\x2b\xb3\x09\x0b\x45\x39\x3b\x7c\x54\x43\x6c\xcf\xcd\x2d\xb6\xf3\x22\x23\xda\x61\xcb\xef\x09\x24\xa0\x3e\x7b\xf7\x92\x9b\x66\x65\xbd\xa5\x9a\xb9\xaf\x06\xaa\x12\x7c\xb5\x69\x28\x9d\x9b\x28\x29\xe2\x75\x1a\x5a\xb1\xb5\xbf\xea\x57\xef\xec\xf8\xe9\x7e\x1d\x27\x71\x70\xfa\xd9\xb6\xc9\xc8\x21\xa0\x3c\x73\xb0\x58\xae\x51\x43\x02\x67\xf6\x7d\x2d\x3c\x49\x2b\x83\x7e\xe8\xcf\x3d\xde\xf1\x07\xe2\x5a\x9a\xad\xf0\x90\x05\x79\xea\x35\x35\x81\xe7\xbe\xa0\x74\xa3\xcb\x47\x86\xc9\xda\x61\x07\xbf\x18\x66\x69\x68\x2d\x77\xcb\x94\xa2\x55\xf9\x77\xa2\x68\xd5\xa0\x26\x1e\xe5\xb9\xe3\xbd\xa0\xbb\xf8\xaf\x03\x8f\xeb\xf9\xd7\xea\x58\x5d\x36\x61\x91\x66\x0c\x18\x40\x59\xff\x7b\x38\xa2\x9c\x97\xe0\x3e\x87\xe0\xae\x94\x52\x79\x94\xc0\x5d\x5d\x5a\x2a\xbe\x2d\x7a\xbf\x72\x92\x8e\xf5\x19\xab\x7d\x8a\xef\x23\x42\x08\xcf\xa7\x41\x9f\x9d\x84\x66\x59\xd0\xc5\x99\x33\x95\xdf\x54\xec\x08\x94\x02\x17\x88\x70\xe8\x0b\xbf\xd7\x84\x7a\xb1\x83\xd4\xe5\x31\x0c\x79\x0d\x3c\xbd\xf1\xdb\x0d\xd2\xd7\xb3\xed\x34\x8b\x7a\x51\x62\x62\xa8\x5c\xcd\x3b\xd8\x62\xf9\xb4\x85\x25\xef\x91\xc0\x59\xca\xff\x0c\x6f\xc9\x7d\x1d\xbe\x50\x63\xaf\x2c\xca\x57\x72\xf8\x2b\xb3\x8f\x1c\x25\x2c\xd8\x97\x17\x75\x87\xf3\x4e\x45\xc6\x85\x16\x1f\x06\x85\x77\xc6\x3b\xbf\xe4\x58\xd1\x0d\x91\x68\x35\x2d\x38\x68\xb2\x5f\xec\xd8\x87\x25\x00\xd2\x91\xc8\x5f\x76\x3d\x3d\x91\x6b\x9e\xf4\x9d\xa5\xbf\x08\x54\xaf\xfd\x9c\x62\xe8\x62\x08\xc5\xff\xa8\x52\xa7\x24\x36\x26\xff\x5c\x94\xea\x93\xb4\xc3\xd0\x69\xfd\xc1\x58\x41\x6b\x5f\xc3\x3b\xbb\x21\x9a\x6b\x79\x1d\xd5\xc2\x19\x17\xf5\x10\x60\x47\x03\x35\x71\xa1\x6d\x13\x72\x63\xd3\xc6\x67\x0c\xd2\xe4\x8b\xa6\x71\x46\xcf\x26\x45\x2c\x16\xa4\x6e\x2f\x96\x09\x88\xc3\xb1\xba\x34\xfb\x66\x03\x47\x6c\xa1\x6d\xf2\x72\x5b\xfb\x11\xe1\x75\x65\x5d\xf5\xdb\x78\xec\x8e\x7f\x5f\x2e\x5e\x34\xfa\x26\x3a\xce\x68\x28\x35\x43\x4e\x3e\xd9\xdc\x57\xb1\x89\x37\x5d\xc3\x6b\x29\x03\xef\xb2\xa2\xcf\xeb\x79\x60\x17\x9a\xf6\x7e\x1c\xad\x58\xce\x00\x71\x46\xb6\xa8\xfd\xc5\xaf\x6b\xa6\xeb\xfb\xe6\xdb\x99\x09\xcb\x12\x46\xe1\xfd\x69\x81\x08\x5c\xb8\xfe\x19\xb3\xed\x61\x16\xa5\x19\xbe\xbf\x13\x43\x54\x34\x04\x1f\x5f\x7a\x36\x1b\x98\x24\x07\x84\x14\x13\xd8\xdd\xd4\x91\x46\xaa\xf7\x2a\x32\x27\xfc\x8f\x23\x81\xb2\x3c\xb8\x8b\x85\xc0\xfd\x74\x55\xbd\x0c\xd2\x84\x1c\x39\xd7\x79\x2e\xc0\xc2\xe3\x55\x15\x72\x05\x0c\xea\x54\x80\x0e\x5e\xd6\xfb\xb2\xd3\x25\xca\xad\x5d\xd9\xe5\x15\xe8\xee\x28\x27\x5f\x06\x6a\x23\x30\x42\x65\x40\xd9\x8d\xbe\xe0\x60\xbc\xf4\xbe\x00\xe2\xff\x65\x6d\xc1\x1c\x78\xae\x2c\x38\xba\xa8\xcd\x30\xfd\x3a\xaf\x40\xca\x9a\xff\x52\x64\x51\x5e\x94\x47\xbd\x0a\x79\xdc\x78\x12\x51\xbd\xc7\x54\xa3\x96\x04\x9c\x1f\x56\xfb\xea\xa6\x46\x55\x9e\x09\x5a\x5f\x13\x89\x65\x06\x34\xb0\xb1\x4a\xe0\xe7\x0b\x27\x91\x81\xe2\xe0\x41\x10\x47\xb1\x7d\x05\xcb\x98\xdf\x17\xf5\xbe\x93\x58\x99\x77\x4e\x24\x34\xf4\xe2\xcf\xa0\x35\xc0\xce\xd9\x74\x6e\x88\x02\xb9\x92\x25\x35\x59\x62\xb1\x3a\x71\x8a\x62\x68\xcf\xaf\x3b\xf5\xfe\xe5\xfe\xf6\x92\x2d\x26\x34\xe1\x5b\x81\x5d\x58\xd8\x08\x33\xbf\x1b\xb5\x7c\xf6\xe0\x74\x7b\x60\x58\xee\xcc\xb7\x4c\x8f\x8e\x55\xf7\x45\xf3\x14\xbe\xc6\x04\x46\xb9\x95\x9e\x5c\xc1\x44\x24\xdc\x98\x4f\x6b\xa0\xd3\x2f\x7f\xb9\xfd\x52\x1a\xae\xf0\x86\x66\x04\xb6\xe2\xf6\xd5\x31\x39\x65\x0c\x89\xa3\x55\xb1\x68\x40\x6e\xbd\xa3\x83\x15\x2d\x22\xa8\x4a\xec\xe4\xdd\xb1\x92\x20\xf2\xf1\x61\x79\x94\x74\xab\xb0\x8b\xdb\x8a\xed\xcf\x38\xea\xba\xa6\x2a\x9b\x24\x44\x49\x8f\x05\xe5\xf1\x9c\x26\x3a\x1e\xff\xfa\x2e\xbd\x0f\xc2\x16\x13\xac\xf1\x25\xef\xe2\x6b\xf1\x85\x76\x69\xbf\xd5\x70\x82\x92\xc8\x69\x56\x8c\x12\x19\x08\x30\x31\x2b\xf0\xec\x9d\x3f\x69\xbc\x39\xe4\x87\xc2\x5d\x21\xf4\xaf\xde\x50\xcf\x83\xf5\x17\x11\x6e\x2e\xd7\x12\x4b\x81\x8b\x2d\x5b\x93\x4d\x6a\x86\xb4\xb2\x6c\xdc\xd1\x51\x74\xb4\x37\x68\xb5\x0a\x9d\xb1\x21\x91\x1c\x58\xd5\xe3\x44\x73\x0c\x77\x8b\x5f\x6f\x48\x2c\x49\x9e\x59\x7d\x66\xa2\xe2\xbd\xee\x71\x1c\x67\xf4\xe4\xf0\x5e\x45\x5b\x77\x94\xa1\x7f\xcd\x46\x27\x8a\x0f\xf5\xbe\xf2\xf0\x83\x92\x58\xf9\xc0\xfd\x19\x00\x8e\x1b\x46\x67\x5a\x47\xea\x93\x06\x72\x72\xfb\x9b\xa3\x28\x5c\x69\x69\x15\x82\x96\x72\xf3\x6b\x50\x2d\xd9\x0f\x7d\x63\xd2\xf2\x76\x3d\x31\xd6\xb2\xd1\x7d\xb4\x0b\xaa\x7e\x08\x4d\x61\x7b\x29\xa9\x9c\xb8\x3e\xde\x36\x80\xf8\xf6\x6d\x4e\x8a\xaf\x19\x93\x12\x65\x22\xa5\x67\x55\x92\xa4\xe4\x45\x79\x22\xca\x92\x17\xb8\x99\x27\x9b\xdf\xc1\xd9\x2f\x42\x0c\xb2\x4f\xd2\x51\x91\xdb\x02\x6f\x2f\xb9\x99\x4f\x03\x4f\xd5\x16\x10\xb5\x75\xd3\x55\xeb\xb1\xe7\x40\x07\x6e\x6a\xad\x84\xcd\xe0\x29\xd5\x77\x4d\x56\xcc\xc0\x66\x51\x68\xf0\x29\x2e\x7b\xf6\xae\xdc\xaa\x15\xb8\x3c\x7a\x29\x02\xba\xc3\x19\xaa\xba\x11\x26\x94\x64\x2b\xba\x54\x2c\x75\x46\x51\x5b\x64\xcf\x3e\x73\xcd\x8f\x2c\xc6\x7c\x42\xb6\xd2\xcc\xab\xda\x56\xdb\x47\x92\x90\xd1\x0a\x6a\x51\xc7\x2e\x9c\x9b\x73\x33\x4b\x0f\xe9\x59\xb3\x59\xd1\xb7\xd1\x00\x67\x93\xa0\x63\xe9\x57\x08\x3c\xd6\x2f\xe9\xe5\xc8\xc6\x6c\xd8\x8f\xf4\xef\x50\x50\x41\x10\x4d\x78\x7f\xc9\x43\x7a\xf8\x5f\x03\x25\x7b\xc5\xf3\x2e\xd4\xe4\xbd\x34\x10\xb8\xae\xe2\xc0\xda\xd0\x40\x05\xec\x71\x97\xea\xe6\xff\x31\x05\x1e\x84\xbb\x2b\x4a\x4f\xf5\x11\x58\x27\x88\x40\x0e\xe5\x82\x74\x31\xf8\xd9\x8e\xff\x90\xc9\x0d\x0f\x48\x4e\xd7\x12\x9b\xe5\xfd\x68\xa8\x5b\xbf\xcc\xcb\xe5\x8b\x86\x82\xb7\xdd\x4d\x57\x6d\x61\xa2\x98\xfb\x0a\x58\xb5\x57\x70\x17\xf9\xc2\xbb\x51\xf6\x59\x23\x40\x88\xa1\x1f\x04\x9e\x3f\xa9\xdb\xae\xbd\x68\xd5\x02\x5f\xa9\xa0\x30\xcf\x0a\x11\x54\x65\xfb\x2f\xd6\x01\xcc\xb3\x9c\xa2\x4d\xf8\xce\xd8\x84\xa2\x4c\xdf\xac\xd8\xfc\x34\x84\xea\xb6\xe9\x65\xd6\x76\x27\x95\x1f\x11\xcb\x48\xe1\x88\x80\x6a\x2d\x46\x9d\xac\xc3\x87\x79\x5a\x99\x0c\x3b\xe7\x84\x74\xed\x21\x6f\xe3\xf9\x5d\x95\x4b\xb6\x3a\x1a\x47\xe7\x31\x89\x0f\xd2\xfc\x1c\x25\xd8\x25\xea\x9b\xf1\x6b\x1e\x6b\xb3\x37\x9a\x16\xbe\xdc\xbd\xe1\x37\xd6\x11\x7c\x45\x61\x5b\xfb\x59\x31\x57\xab\x18\xdd\xd5\xf5\x2e\x64\x35\x8e\x9e\x59\x79\x06\x27\x0b\x0a\xa2\x3f\xad\xc0\xe0\x7c\xc7\x90\x4d\x0c\x90\xd7\x5f\x6b\x48\xd7\x17\x44\x81\xca\x4b\xab\xb0\xcc\xb6\xb0\x99\x1a\xc2\x38\xf1\xa0\x5a\xbe\xe3\x87\x91\xae\x58\xf8\x36\xfc\x41\x66\xa2\x1c\xe9\xa7\xb8\x46\xd0\xcf\xe7\x8b\xc6\x03\x38\x33\x49\xcf\x4e\xa8\x03\x4b\xee\x2c\x06\x48\x3f\xd4\x20\xa2\xba\x8e\x06\xa9\x26\xa5\xa3\x82\x98\x97\x02\xad\x50\x30\x0b\x2d\x73\x95\x66\x7b\xfc\x7a\x3b\x15\x68\xbb\x1e\xba\xab\xe8\x4f\xef\xea\xa8\x74\xe8\x0e\x6e\x2b\x60\x1e\xd7\xf8\x8b\x39\xfd\x5d\x8f\x49\x39\xa6\xa0\x1d\x27\xd5\x67\xce\x2e\xcc\x4c\x68\x55\x70\x35\x76\xbb\x82\xb7\x06\xd8\x72\x47\xe7\x71\x65\xd5\x9e\xf7\xcb\x23\x81\x00\x82\x6e\x04\xe0\x0e\xb8\x33\xb5\xec\xa7\xac\xc2\x4d\x48\xb3\x13\x41\x49\x89\x63\x9f\x07\x6c\xf0\x56\xc5\xe2\xad\xbb\x4e\xed\x9b\x6f\x0f\xa2\x22\x1f\x45\x2d\x65\x44\xc0\xd3\x3f\xbe\x68\xb2\x54\x1a\x58\x93\x8f\x32\x69\x5e\x0a\x24\x8e\xde\x82\x2f\x1a\xc1\x81\xcb\xcb\x51\xd7\xac\x46\x68\xc6\x71\xfd\x1a\x78\x2c\x50\xdd\x5c\xf2\xe9\xf6\x70\x94\x85\x7d\xdf\x5f\xc5\x1a\x64\xd9\x06\xbe\xa8\x0e\xe0\xe3\xf5\x47\xbd\x0e\xfc\x14\x67\xbc\x68\xae\x71\x3f\x0c\xbb\xe8\x43\x4c\x77\x9c\x8e\x6e\xb9\x5e\xc5\xef\xcf\xcf\x91\x26\xc8\x8d\x04\xd9\xcf\x55\xdc\x4a\xb4\x0e\xa0\x77\x81\x10\x34\x85\x4e\x27\xd6\xd4\x0d\x35\x1b\xfa\x16\x14\x7a\x9c\x93\x8e\x63\x91\xbf\x8b\x72\x47\x54\xac\x94\x1c\xcd\x7f\x70\x00\x21\x3a\xe1\xf2\xdd\x7e\xbe\x75\x0e\x69\xb2\xe0\xa7\xfd\xdc\xe2\x3c\x0f\x31\x85\x0c\x5b\xfe\x7e\xdc\xd1\x93\x3c\x1b\xe2\xff\x43\xe1\x1d\x53\x84\xdb\x6a\xb5\xfe\xc2\x7f\xfe\xcf\xa6\x94\xee\xe4\xbd\xb1\x6a\x10\x1d\x55\x5d\x2f\x00\x81\x9c\x02\xcf\xcc\x2c\x97\x55\x6f\xab\x44\x25\xb3\x26\x16\x4a\xa4\x27\xd6\xbe\xab\x10\x4c\xef\xd6\x36\x73\x19\xa5\xd2\xa4\x48\xd5\x20\x01\x06\x60\xfc\xba\xd1\x59\xd1\x86\x26\x8e\xd5\x80\xf1\x1c\x1e\x21\x5f\x80\x50\x87\x53\x6e\x7d\x30\x34\x45\xdf\x8a\x9e\x1e\x52\x75\x78\x6a\xf1\x6b\x35\x53\x5e\x8b\x62\x1e\xb6\xa2\xf1\x7a\x04\xf1\x82\x2f\x1a\x23\x59\x91\x16\xd0\xb4\x93\x4e\x16\x9c\xb5\xf9\xf5\x86\xee\x5e\x65\xd1\x90\x2b\x22\x1c\xa4\x3b\x61\x4f\xae\x5b\x68\x4a\xc7\x41\xb8\x34\x08\x53\x48\xc7\xaf\x68\x05\xf3\x1d\x1b\xf5\xc4\x72\x7f\x3b\x5f\x23\x05\x32\xde\x31\x08\x34\xdc\x2a\xe4\x0b\x55\x1a\xf4\xb2\x74\x2d\x9f\xf4\x4d\xe7\xc3\xea\x6c\x44\x85\xea\xd4\xe8\xf6\xcd\x3b\x3b\x42\x97\x41\x14\x66\x30\x24\x45\x3c\x67\x0a\xb5\x38\xed\x1f\xa1\x73\x9d\xbd\x85\x59\x9c\x80\x7f\x5a\xde\x0e\xb1\x56\x14\x1c\x78\xae\x1d\x25\xcb\x99\xc9\x8b\x6c\x14\xc2\x8b\xc4\x9d\x3d\x10\x03\xe5\xd7\xb5\x73\x68\xdf\x7c\x7b\xcd\x38\x5c\x8f\x13\xc4\x54\x45\x44\xe3\x42\x8a\xf2\x15\xdc\xab\x59\xa1\xa9\x07\x4a\xf9\xf1\x5b\x8a\x23\x96\xd9\xb2\x1e\x16\x33\x87\x26\xe8\x59\x45\x66\x35\xb6\x7b\x75\xae\x80\x25\xed\x90\xdf\x9e\x5e\xf3\x03\x4d\xaf\xf9\xc1\x58\x49\xab\xbe\xa5\x66\xb6\x6f\x8d\x95\x99\xec\xdb\x38\xc2\xf9\x02\xa3\x3c\x81\x91\xd3\x0f\xe6\x8f\x6c\x02\x4d\x85\x69\x52\x64\x69\x1c\x3b\x98\x08\x9a\xbf\x27\x15\xd1\x12\x3d\x2d\x04\x80\x5d\x1b\xdb\xb9\xa9\xf3\xf3\x6d\xc1\xa3\x0b\x10\x57\x35\x91\x8f\x2a\xd8\x40\xf9\x51\x36\x71\xb1\x40\x98\x4e\xea\x5e\x1f\x51\x96\x67\x85\x35\x03\x8d\xe7\x87\x15\x3c\xbf\x6e\xe4\x38\x3b\xf6\x00\x6a\x28\x64\x97\xef\x28\x7b\x8d\x77\x14\x36\xb7\x67\x93\x08\xf9\xfd\xfe\x8a\xa8\xbc\x54\x0c\x0a\xf9\x6f\xe2\x18\xa5\x85\x90\xec\x14\xe1\x8e\xbe\x94\xbc\x56\x3c\xfc\x4d\xd5\xa7\x1f\x2d\xa7\x34\xd5\x45\x2a\xc9\x33\x09\x77\x51\x3e\x2c\xbe\x50\x09\xe7\xa6\xfa\xaa\xab\x26\x1c\x8d\x06\xff\x71\xce\x4b\xfe\x53\xbf\xbc\x6a\x77\xf9\xf1\xf7\x79\xcd\xd7\xb8\x85\xf5\x02\xe5\xea\x2f\x50\x9b\x51\xcc\xb3\x95\xce\xf3\x79\x25\x67\x73\xbb\x02\xe2\xc2\xf4\x75\xd2\x37\x58\x38\x41\x62\x38\x01\x27\x48\x38\x73\x59\x9c\x5d\xb2\x73\xbf\x7d\x62\x93\x74\x49\x84\x81\x78\xcd\xa2\xf0\x55\x7e\x17\x91\xfe\xf2\x28\xa9\xd5\xb4\xb0\x93\xe5\xd1\x8b\x85\x7c\x93\xf6\x0e\xbf\x56\xf5\x2b\x3b\x8c\x88\xd3\x5d\xa3\xd3\x42\x31\xea\x3a\x34\x38\x72\xf0\xf7\x95\xd1\xe9\xfb\x4d\xc3\x8d\x25\x5b\x48\x2f\x42\xfc\x90\x55\x01\xf5\x3b\xb5\xc8\x43\xbb\x6a\x95\xd9\xbc\xd2\x63\x57\x89\xf9\xa6\xeb\x2f\xd8\x97\x87\xb1\x97\x3a\xc4\x03\xbd\x34\x56\x05\xef\x25\x3f\x9a\x33\x99\xe9\x65\x66\xd8\x57\xef\x0a\xb2\x28\xbf\x56\x0b\x66\xad\x1f\x25\x9c\xb1\xe3\x78\x46\x58\xe2\xd7\x63\xcf\xb6\xc9\x87\x69\x92\x4b\x57\x50\x7c\x45\x95\x84\xd6\x39\x5d\x9e\x40\xda\x4a\x94\x66\xb6\x87\x81\xd9\x03\xed\x3c\x55\x0a\xf2\xaf\xd3\x09\xc1\xaf\x55\x76\xf1\x75\x9b\x4c\xa8\x31\x1a\xb4\x9d\x30\xac\xe4\x1e\x19\x52\xad\x07\x36\x1a\xb8\xa5\x66\xb0\x14\xad\x9a\x58\x8c\xcf\xd9\xb9\x90\xde\x42\x5c\x0c\xeb\xde\x9d\xcf\xb6\x07\xd2\x8c\x11\x95\x1d\x7a\xfa\x42\x4b\x7a\x5c\x81\x3c\xf2\xfe\x52\xba\x16\x7f\x76\x63\x68\xfb\x89\xb1\xf0\xdc\xfe\x76\x3e\x24\x87\x40\xad\xb4\x53\xfe\x0c\x51\xda\x69\x32\xd4\xe9\x5a\xc3\x2c\x09\xcf\xdd\xf4\x1d\xe3\xaa\x93\x4d\xba\x92\x2a\x23\xda\x0b\xd5\x16\x8d\xc7\x90\xae\x59\xb3\x92\x10\xe4\xc4\xb9\x4c\x42\xde\x81\x5f\x6b\xaf\xae\xcc\x26\x61\x1f\x52\x69\xc0\x88\xa0\xa7\x25\x0a\x6d\xf4\x09\x5c\x42\x2b\xac\xdd\xa3\x9c\x3d\x4b\x71\xed\xa3\xe0\x9d\x71\x45\x84\xc8\x33\x8b\xf2\x35\x1b\x93\x7e\xbf\xb2\xd8\xae\x18\x66\x2b\xa6\x69\xd6\x1b\x0d\x6c\x22\x9e\xa3\x8e\x78\xec\x94\x02\x6f\xa2\x4d\x22\x24\x15\x4f\x34\xbc\x43\xd1\x00\xc9\xc4\x45\xaa\xcd\xf9\x75\x2d\x00\xbc\xf8\x62\x7b\xad\x6f\x0a\x5b\xee\x4d\x8a\xbb\x68\xc8\xdd\x55\x73\xd9\xbb\x9f\xd9\x11\xea\xa7\x71\xd7\xe9\xb8\xa2\xd7\x71\x4a\x6b\xa8\x9c\x1a\xeb\x0e\xeb\x0a\x58\xf1\xb3\x6a\x60\x2f\x8f\x1a\x6e\x47\x08\xcb\x75\xbf\xa5\x7d\xf3\xed\x61\x6c\xd6\x25\xad\x40\x10\xe5\x2a\x93\x2f\xd4\x7c\x03\xaa\x48\x34\xaf\x10\x60\x6a\xf9\x41\x7a\xd0\x89\x73\xfb\x56\xf0\x39\x35\xf5\x31\x49\x3e\x84\x11\xd5\x94\x57\xfa\x98\xd2\x8e\xd1\x6f\xd2\x8a\x40\x24\x3e\xaf\x3a\x0c\x57\xf4\x58\xf5\x07\xb5\x04\xf8\xf9\x32\xff\x4d\x7a\x23\x9e\x28\x21\xd1\xc2\xda\xe6\xd7\x0e\x3a\x92\x99\x28\x5e\x33\xeb\xe4\x6d\x8e\xfa\xe8\x91\x8e\xea\x92\xb0\x91\x1e\x2b\x20\x8e\xfd\xe1\x77\x6d\xac\x41\xcd\x0d\x0a\xa1\x61\x1a\xc7\x66\xe8\x6a\x44\x71\x34\xa6\xa7\xe1\x4d\xd7\x74\xc6\x6b\xb3\x7c\xc2\x57\x49\x97\xb0\x44\x45\x58\x5e\xb9\x6f\x7a\xa0\xc4\x5a\x6a\x97\x6c\x2f\x65\x37\x74\x74\x98\x80\x4a\xe3\xd7\x5a\x81\x61\xf1\x57\x27\x3c\x84\xe8\x7b\x6a\x58\xc8\xe6\xbb\xd8\x83\xad\x4e\x85\xbe\x12\xe6\x20\xaa\x62\x02\x71\x19\xe5\xa9\xb8\x87\x2a\x19\x96\xc3\x98\x24\xb3\x55\x67\xa0\x4c\x8d\xaf\x6a\xd5\x8f\x07\x59\x80\x0c\x4f\x74\x57\x47\x79\xf9\x12\x96\x51\x3c\x46\x36\x68\x71\x22\x1b\x78\xa4\xa3\x4c\xb3\xee\xa2\x78\xe5\xb7\xa6\xb0\x80\x07\x75\x4a\x29\x8e\x5e\x0d\x88\xd3\xe6\x5c\x8d\xcb\xfb\x88\xf8\x73\x5d\x41\xae\x18\x6c\x06\x82\xda\x6d\x7a\x9c\xd8\xe2\x0f\x6c\xc8\xc1\xb8\x6e\x06\x26\x0a\xfb\xf0\xad\x91\x35\xa0\x5a\x83\x27\x55\x7e\x56\xa4\x49\xbe\x9b\xfe\x9f\xe3\x2e\x38\xda\x11\x33\xe6\x50\x82\x7c\x80\x9b\xc8\x17\xf4\xb9\xd8\x51\xd7\xe9\x47\xf3\x6b\x1c\x79\x78\xe0\xef\xbb\x96\xfe\x30\x8d\xa3\x70\x7d\x52\xdb\xfb\xbc\xa6\x96\x35\x9c\xe6\x05\x5a\x43\x5f\x86\x81\x75\x63\x2f\x86\x34\xcc\x4c\x58\x48\x57\x79\xbf\xeb\x00\x7a\x4a\xc9\x66\xb0\x1d\x89\x75\x70\x7a\xb6\x3d\x1a\x4e\x79\x2b\xb1\x1d\x9d\x72\x7f\x4b\xcd\x43\xeb\x00\x6d\x0a\x74\x79\x70\x2e\x40\x82\x07\xe3\x8a\xdb\x4d\x11\xa6\xe8\xa7\xa3\x5e\xbf\x98\xf4\xcf\x04\x1c\x79\x7c\x67\x96\x8a\x03\xa6\xe2\x07\xb8\x1f\xd2\x66\xa8\x77\x7f\xf6\xc3\x30\x53\x8c\xd9\xb0\x74\xe0\xde\xcd\xaf\xdd\xae\x89\xca\xfc\x3f\x8f\x56\xed\x94\xaa\x5a\x8f\xb0\x88\x99\x32\x83\x11\xfd\x90\x93\x4a\xb7\xe5\x01\x35\x2d\x3c\xab\xca\x84\xe5\xcc\xe6\xfd\x49\x95\xf7\xdd\x04\xf3\x0a\x09\xcc\x16\x9e\x3f\x5f\xe0\xbd\xf9\x9f\x35\x1c\xcc\x0b\xed\x75\xea\xb2\x4c\x28\xc9\x96\xfb\xb4\x70\x65\xbe\x52\x99\x41\x3d\xac\x1a\xca\xc3\x9c\x7a\x8f\x58\xc7\xb7\x95\x2b\x5b\xbd\x2d\xbf\x8f\x44\x7f\xb3\xa2\xb0\x4c\xd2\x61\xd6\x3a\xbe\xaa\x50\xd8\x9b\x60\x20\x45\xdf\x24\xc4\x94\xe4\x47\x1e\xa8\xe9\xc4\x19\x75\xec\xf2\xf8\x70\xaf\x07\x2f\x73\x4f\x4a\x10\x00\xca\x96\xe3\x37\x70\x76\x7b\xb1\xb6\xe7\xf6\x3b\xf7\xfc\x96\x53\x0b\x9b\xec\x28\x66\xda\x47\x74\xc8\x72\x9b\x13\x2d\x6f\x07\xe4\x70\x69\xe6\x71\xa7\x76\x37\x48\xbb\x36\x23\xf3\xd8\x96\xd2\xb5\xfc\xf7\x63\xdf\x15\xf9\xf7\x4a\x3c\x23\xb3\x71\x64\x97\xa7\xb4\x25\xd0\x58\x0d\xd2\x6e\x42\x93\x40\x26\x32\xda\x46\x28\x50\x7e\x44\x47\x14\xc1\x0c\xa2\x7c\x13\x15\x9a\xdf\xcc\x0c\x47\xac\xeb\x54\x4a\x09\xb9\xa9\x2e\x07\xb8\xd0\x0e\x4d\x66\x1d\x96\xd7\x89\x56\x28\x90\x87\x52\xea\x98\x9e\x6e\x79\x67\x88\x53\x58\x2d\x7c\xa1\x91\x85\x65\x69\xab\xac\x13\x3e\x56\x1e\x10\x9b\x5a\xc7\xf8\x93\x86\x0e\xc5\x42\x3b\x4b\x4d\x97\x5b\xad\x38\xb8\xcf\x68\x95\xad\x33\xb5\xf5\xf6\xb4\x1a\xc0\xb7\x94\x5b\xf1\x99\x40\x8f\x4a\xfc\x89\xb8\x1a\x25\x85\xe9\xe1\x64\x73\x90\x10\xe5\x59\xe0\xb6\x73\x9c\xa6\xb9\x8d\xad\x59\x9e\x50\xab\x06\x1d\x42\xe9\x30\xd2\xdf\x89\xdf\xd5\xe3\x5a\xfe\xcb\x14\xa4\xe9\xe5\x25\xed\x38\x89\xe4\x8b\x5a\xee\x36\x37\xc7\xf4\x77\xb6\xe8\x6c\xb2\xcf\xf0\x7d\xbb\x22\x5a\x5e\x6e\x79\x52\xd0\x11\x95\x09\x1f\x69\x88\x61\x0b\xed\x74\x79\xd9\x6b\xcf\xf1\xfc\x7c\x3b\x76\x52\xf4\x44\x80\x02\x66\x35\x78\xfc\x44\x9c\xc5\xf7\x9b\x06\x56\xdf\x1c\xa5\x0e\xf9\x8f\x65\xfb\x53\xac\x54\xbe\x50\x77\x7e\x98\xd9\xc2\x26\xdd\x09\x15\x1d\xd9\x96\x5d\xd6\x5a\xcb\xd9\xc6\xd7\xef\xd0\xc1\xe9\xf9\xf6\x52\x9a\x95\x91\x7d\xc2\x9f\x80\xd8\xc5\xac\x14\xa8\xc8\x45\xdf\x53\xac\x8b\x61\x96\xe6\x43\x9b\x45\x05\x90\x32\x62\xc8\x52\xfe\x63\x71\x6a\xf1\x75\x7b\xb9\xd6\x79\x52\xbd\x30\x7b\xc0\x59\xf7\xb6\xfc\x6b\xd5\x84\x88\xbb\x43\x3a\x64\x54\x69\x3b\xeb\xe1\x4d\x07\xc5\xd5\xeb\xad\xb1\xc2\x31\x1e\xab\x20\xfc\xfa\x4b\x29\x56\x89\xe3\xe6\xbb\x86\xcb\x69\x05\xd3\x4a\x6c\x68\xf3\xdc\x64\xeb\x53\x4a\xea\xe4\x24\x42\x2a\xf3\x41\x54\x2b\x73\xa2\x43\x67\x84\x63\x28\xee\xf3\xd0\x19\x0f\x35\xa6\x25\x3a\xa1\x84\x8b\xcf\xa3\x32\x67\xe2\x2c\xa5\x40\x32\x82\xdb\xde\xb6\x74\xe3\x71\xd0\x06\x4c\x3c\xe1\xd9\xca\xc0\x01\xbb\x46\x6c\xf9\xac\x01\x59\xbe\x3e\xfe\xf9\xcf\x7c\x9b\x38\x1a\x46\x49\xda\x52\xe7\x0f\x94\x73\x24\xc3\x16\x42\x9f\x90\xea\x53\x26\xf4\xe1\x61\x23\xc2\xf0\xeb\x06\x84\xdd\xb3\xed\xa5\x51\xb7\xbb\xde\x52\x7e\x85\x28\xbd\x64\xf0\xd4\x80\x6f\xcd\xd2\x70\xc5\x29\x3b\x88\x5a\x0d\xf2\x23\x91\x2e\xa9\xaf\xd0\x85\xb6\xc9\xfb\x66\x60\xc1\xab\x73\x4c\xeb\xc5\x69\x17\x9a\x1f\x53\x27\xc1\x37\x47\x36\xd7\x50\xed\xe3\x8a\x68\x79\x5c\xa1\xfe\x06\xe1\x8a\x4d\x12\xa3\x63\x22\x6b\x45\xf2\x85\xd2\x49\x4f\x87\x43\x9b\xf4\x6d\x34\x80\x5b\xe9\x7e\xce\xbe\xf9\x41\xf0\x85\xd2\x9d\xed\xaf\x2f\x65\x11\x10\xe7\x6c\x8a\xa5\x6c\x39\x58\xb6\x8f\xc5\xfe\x14\x11\x62\x2d\x8a\xe3\x2f\xa8\x48\xfe\x08\x59\x93\x08\xa6\xb2\xfc\xbd\x48\xa4\x61\xa8\x88\x93\xf8\x2a\x76\x87\xcc\xdb\x95\x1c\xda\x75\xda\x5d\x68\x98\x3c\x81\x26\x09\x46\x01\xf7\x95\x58\x49\x6b\x43\xc3\xb9\x5e\x0d\x90\x55\xb9\x96\xe5\xf3\xa2\xc1\x7a\x77\xec\x47\x83\x3b\x3a\x14\xb9\xc5\xed\xb0\x3c\x16\xf1\x1d\x4f\x22\x55\x56\x5e\x36\x42\x7f\xdf\x42\xf2\x4e\xab\xf7\xab\x4f\x10\x09\x1f\x63\x74\x3e\x7f\xb1\xa7\xae\x8d\x95\x67\xc8\xce\x0d\x8a\x14\x6e\xaa\xee\x72\xd3\x33\xa8\x5d\x70\xfa\xee\xed\xb8\xca\xd0\xf6\x4c\x26\x47\x1c\x12\xf1\x4d\x5d\x86\x6d\xea\x7d\x4f\xb3\x25\x13\xe3\xb8\xc2\xd0\x82\x5b\xa2\x7c\x51\x5b\x85\xfb\xe6\xdb\x6b\x99\x19\xfa\x46\xb1\x13\xfc\x76\x30\xc3\xba\x41\xe7\xcc\x0c\x50\xee\xd4\xca\x40\x29\x8c\xcc\x90\x5f\xd7\x0e\x15\x1a\x49\x2f\x9b\x28\x16\xf4\x10\x42\xf8\x95\x8a\x56\x82\x12\xea\x38\xef\xf0\xa1\xcb\xd6\xc6\x7b\xca\x8f\x41\x38\x7c\xbc\xe3\x33\x85\x7b\x63\x85\xc8\xd0\xa2\xe4\xec\xf4\x05\x2c\x2b\x80\xa3\x9c\xbe\x22\x66\x09\xdf\x93\x9e\x8a\xf4\x69\x94\x5d\x70\x9c\x7e\x73\x64\x93\xa2\x45\xe5\x9b\xd3\x2c\x2b\xb7\x87\x54\xe3\x5e\xe1\x63\x98\x46\x49\xf1\x60\xf9\xa5\x1c\x32\xcb\xcf\xe6\xef\x62\xb4\x23\x3b\x82\x7e\xb9\x38\x4a\x79\x10\xde\x51\x3a\x5b\xd0\xb8\xdc\xb5\x51\x26\xce\x9c\x59\xaa\x94\xe4\x2f\x69\xa4\x28\xe3\xb9\x0a\x8d\xad\x42\x5e\x79\x42\x9b\x37\x2d\xa7\xc4\x1a\xf7\x7d\x6f\xc8\xf4\xf0\xeb\x5a\x73\x70\x7e\xbe\x4d\x91\x92\xde\x10\x1f\x75\x52\x11\x4a\x4e\x36\x19\x76\x24\xa9\x3b\x16\x80\xe0\x63\xbc\x22\x82\xfb\x6d\x0e\x81\x28\xe8\x76\x76\xea\x21\x70\xb6\xfd\xc5\xaf\xfe\xea\xc2\x57\xbf\x32\xbf\x57\x89\xb9\xb0\x0f\xbe\xa2\x4d\x39\xf0\xec\xd8\x63\xf5\xe1\x6d\x82\x30\xfe\x36\x21\x61\x91\x6b\xe3\x8c\x47\x48\xd8\xb3\xa1\xba\x8f\xc7\xb1\x73\xc5\x38\x86\x1e\xa8\x68\xa2\x35\x94\x25\x3d\x9b\xd8\xcc\x8b\xcb\x72\xcf\x3e\x50\x8a\xd9\x27\xb6\xa1\xef\x0d\x6e\x9d\x0b\x6c\xde\x4f\xbe\xc9\x49\x66\x68\xb2\x22\x0a\xa3\xa1\x61\x02\x0e\xeb\xde\x55\x34\xf0\xea\x83\x9d\x17\xda\x45\x16\x8d\x06\x43\x37\xc3\x74\xd2\x68\xde\xe2\xb7\xde\x66\x9d\x3d\x40\x4c\x69\xca\x69\x5c\x42\x8a\xa9\x16\xbf\xae\x6d\x59\xc2\xef\x86\x7d\x5b\x88\xf6\x37\xaa\xe9\x37\xc7\xca\x28\x84\x3a\xe9\x5b\x87\x54\xaf\x6f\x90\xa6\xe5\xc9\x59\xc6\x51\x94\x57\x3f\x0a\x94\x37\xed\x8f\xc6\xbe\xef\xb6\x46\xc2\x8a\xbd\x7e\x3a\xca\x59\x22\x41\x46\x18\x0a\x34\x7a\x52\x69\x24\xdc\xa7\x2d\x80\x80\x7e\xa5\x09\x71\x66\x93\xa8\x37\x30\x6a\x8e\x7d\x4d\xcd\xb1\xaf\x29\x69\xf2\xa5\xd8\x1a\x1a\x02\x7b\x42\xd6\x39\x45\x02\x39\x37\xf6\x05\x98\x49\xf2\x35\x9b\x4d\x2a\x28\xc7\x26\x1d\x3f\x48\x21\x2f\x6b\x58\xc7\x26\xc5\x72\xfe\x1f\x4d\x9e\x64\xa6\xfb\xd2\x88\x25\xe4\x91\xe2\x5c\x55\x94\xf8\xab\xdb\x7d\x07\x9e\x5f\x68\x7f\xf9\xcb\xb8\xf3\x22\x97\x44\x51\x0d\x5d\x2f\x8e\x96\x2c\xf7\x5d\x5b\x27\xcf\x93\x08\x54\x99\xc7\x86\xa2\x5d\x2a\xd2\xfd\xaa\xf5\x7f\x56\xf1\x57\xc9\x46\x88\x80\xa3\xdc\xd6\x41\x5c\xdd\xd3\x51\x33\xc1\x3f\x54\x18\x89\xf3\x9a\x05\xbf\xb3\xc9\xec\xa2\x58\x1f\x52\x7b\xc7\xe7\x36\x57\x15\x97\xf1\xaa\x02\xad\xc6\x51\x11\xf5\xe8\xe8\x9a\xf0\x4c\xdb\xdb\xda\x71\xe4\x9e\x9a\x4a\xd5\xe1\x33\xe5\xae\xe8\x46\xaf\xbc\xb2\xee\xc6\xb6\x0e\xed\xe1\xe1\x83\x14\x2d\x64\x6b\x56\x9c\x8c\x6d\xfe\x04\xdd\x21\xc9\xee\xbd\xd4\xe7\x79\xb2\xbd\xc0\x9d\xe0\x99\x21\xee\xf8\x26\x8e\x03\x41\x9b\xab\xce\xd3\x89\x40\x59\xb5\x3c\xd8\xd1\xf4\xe3\x53\xe8\x07\x3a\x91\xf0\xe7\xdd\x08\x6f\x0b\x4f\x45\x4a\x0d\xba\xb3\xa8\xa8\x90\xa7\xb3\x79\x40\xc7\x63\x6f\x26\x37\x94\x38\xf1\x1e\xa5\xfe\xf3\x96\xf2\xfe\xbc\x89\x83\x02\x27\xdc\x95\x5a\x3e\xbd\x4d\x72\x96\xd7\x89\x33\x72\xf4\x04\x9b\x73\x0d\x47\xc5\x42\x3b\x33\x7c\x54\x70\x03\x30\xa8\xb6\x03\x1b\x98\xdf\xa6\xdb\x25\xa5\x6b\xfe\x24\x11\xb1\x53\xd3\xf2\x7f\x13\x7c\xde\x75\x32\xd3\x57\xd2\xc4\x76\xed\x30\xb6\xc2\x1c\xdb\x3a\x16\xb4\x7e\xe5\xf9\xad\x63\xb5\x71\xdb\xbe\xf9\xb6\xf9\x52\x6b\xe7\x97\x9c\x18\x18\x7d\x2f\xbe\xd0\x53\x74\x33\x64\xff\x64\xb4\xa3\xce\x28\xef\xa5\x33\x75\xe5\xec\xd9\x03\xed\xd4\x86\x4c\xff\xab\xb0\x4d\x3e\x4b\x1b\xbe\x5c\x89\x6b\x36\x8e\xe9\x33\x90\xe3\xbc\xa9\xda\x23\x6f\x8e\x3f\x27\xb3\xce\x6c\xbd\xe8\x67\xe9\x30\x8d\x6c\x11\x25\x88\xe4\x22\x75\xe2\x1b\xe7\x67\xd5\x48\x68\x10\x25\x69\x19\xc0\x09\x51\xc2\x16\xc8\x78\xbe\x4e\x8e\xcd\x29\x59\xc2\x96\x9e\x45\x83\xf4\x8c\x6c\x47\x8d\x82\xf4\x74\x7b\xc9\xc6\xbd\x68\x34\x50\xc2\x95\x3c\x7a\xe4\x8b\x8d\x06\xbb\xcb\xee\x68\xb0\x44\x1b\x9b\x27\x66\xf4\x79\x32\x3d\xab\x31\x81\x67\xda\x79\x6c\xca\xaa\x44\xb2\x3f\x14\x22\xef\x6c\x37\xc7\x9d\xe5\x1d\x7e\x4d\x4d\x6f\x61\xfd\xbb\x47\x79\x97\xb6\x36\xd4\xd0\x45\x8b\xb6\xc3\x42\x1d\x59\xfa\x47\x63\x95\x7f\x33\x3f\x49\xb9\x37\xcb\x44\xef\xf6\x58\x43\x11\x1a\xc0\x7c\x51\x12\xc6\x23\x37\x22\x07\x16\x69\x17\x18\xcc\x7c\xd1\xd9\x1e\xfa\xc8\x41\x7f\x35\x8d\x57\x2d\xb8\xa7\x0c\xa9\xa3\xd3\x01\xa0\x94\xe3\x1a\xa2\x07\xfc\x28\x7e\xf8\x7d\xa7\xa2\xd4\xff\xff\x18\xfb\xd7\x20\x49\xae\xeb\x4e\x0c\x9f\xa9\xee\x1e\x00\x33\x83\xd7\x00\x24\xb5\xfa\xeb\xbf\x5b\xab\xa5\x17\xde\x10\x16\xd6\xca\x8e\x70\x84\x3e\x38\x6b\x7b\x9a\x04\x67\xd6\x6c\x4c\xf4\x8c\x30\x14\xc3\x1f\x70\x2b\xeb\x76\x55\xa2\xb3\x32\x8b\xf9\xe8\x9e\x46\xf8\x83\xc3\xde\x0f\x1b\x0e\x87\xed\xb0\xbd\xde\x70\x30\x56\x1b\x5e\xc9\xd6\x6a\x1d\x92\x97\x7a\x58\x0f\x4a\x5b\x25\x82\xa4\x48\x8a\x24\xde\x6f\x02\x98\xc1\xbc\xdf\xef\xf7\x4c\xc3\x91\xe7\x77\xce\xbd\x27\xbb\x12\x0a\x7f\x41\x64\x62\xba\xaa\x32\xef\xe3\xdc\xf3\xf8\x9d\xdf\x2f\x1d\x71\x21\x1a\x41\x27\xe3\xe0\xb4\x17\x84\xa8\x81\xcd\x12\xce\xd7\x13\x8a\xd7\x2f\x1f\x65\x51\xb2\xc2\xa1\x00\x7a\x84\x7e\x42\x87\x1c\x5f\xab\x0c\x69\x75\x2c\x45\xa1\x9d\xf3\xf4\xdf\xb7\xe1\x2a\x89\xee\x95\xf7\xb9\x21\xe1\xe1\x3a\x3a\xf6\x08\x54\xf1\xf6\x54\x47\xf6\xee\xdd\x6d\x9b\xf4\xe4\x34\x11\x85\x2a\x7a\x0b\x47\x0a\x56\x4d\x04\x0a\x41\xac\xe7\xcc\x12\x9a\x9f\x59\x76\x4c\xcb\x22\x8f\x7a\x76\xce\x27\x8a\x1f\xe8\x78\xe6\xa4\x57\xb5\xa2\x04\x08\x4f\x24\x57\xb1\x29\x7b\x23\xb9\x47\x2a\x4d\x0e\x6d\xd2\x52\xfc\xe8\x5b\x3a\x95\x9f\xc1\xd7\x4d\x2d\x7b\xdd\xf4\xa5\x6a\x8b\xe3\xc5\x10\x11\x1c\xd6\x92\x0f\x87\x15\x3f\x39\x55\x16\x73\x12\x00\x54\xa8\x24\x60\x5b\xf8\x5a\x15\x30\xed\xa1\x91\x49\x7a\x28\xdf\xb0\xca\xbd\x8e\x36\x2f\x28\x95\x98\xab\x81\x8f\x95\x3f\x41\x1a\x98\x6f\x54\x49\x8d\x35\xf2\x85\xb7\x46\x69\x33\x97\xd9\x6a\xb4\x9a\x42\x89\xe2\x59\xd7\xfe\xa9\x5a\x41\x9b\xc8\xb4\xf2\xf5\xe1\xa8\x48\x87\x9c\xe5\xc0\xb7\x9e\x41\x56\x89\x6f\x5c\x43\x6b\x92\x26\xb9\x4d\x72\x3b\xeb\x57\xea\x09\xf8\x2f\xd2\x44\xe4\xdb\xbf\xd1\xf3\x07\xeb\xf1\x03\x17\xf8\x75\x4d\xbc\x82\x22\x0a\x1b\x85\xc0\x97\x86\xb4\x33\x67\x42\xd3\xb3\xc3\x28\xa4\x75\x2e\xa4\x65\x8a\x97\xeb\x84\xb2\xa1\x6b\x83\x34\x45\xa4\x5b\x3d\xb3\x83\x9e\xba\x94\xe0\x39\x0d\x1b\xb1\x26\x2e\x06\x98\x35\xc4\xf4\x28\xc0\xf0\x75\xe0\x53\xea\x83\xa8\x3f\x88\xd7\x67\x14\xc3\x35\x28\x08\xe1\xd8\xcd\x4e\x94\x4e\xfb\x94\x63\x7e\xe0\xb9\xf6\x28\x5d\xb5\x59\x01\xed\x0b\x41\xaf\x68\x54\xcb\x2e\xc5\xeb\x9a\x8f\xac\xa3\x48\xc7\xfa\x7f\x83\x36\x24\x5f\x6b\x06\x67\x9b\xf5\xa5\x59\x09\x91\xe9\x49\xc5\xee\x7e\x45\x95\x29\x37\x5c\xcf\x43\xe5\x0a\x24\xdb\x7d\x25\xe2\x12\xb9\x3f\xcc\x66\x34\xf6\xe7\xc3\x75\xb8\x66\xf0\x5d\x7e\x11\x75\x6a\x95\x7c\x17\x7a\x94\x8d\xb1\x57\x2d\x43\xbc\x8b\x51\xde\xd0\x00\x89\x8f\x89\xee\x44\xd2\xfd\x4d\xf0\x90\xc2\x24\x2b\x42\xa2\x09\x63\xa1\x49\x28\xa6\xad\xf6\xde\xbd\xed\xcc\x2e\x13\x81\xb5\x6e\x19\x03\x81\x35\x5f\x4f\x1d\xdc\x07\x9e\x6b\x67\x36\x36\x87\xb0\xb4\xdd\x27\x9e\x9f\x77\x9f\xf0\xe6\xd2\xe4\x95\xa3\x6c\x14\x0e\xe5\x37\xf5\x19\xfb\x9b\x53\xb1\xc9\xc1\xa5\xf9\x36\xa1\xc4\x5a\xad\x2f\x7d\x8d\x73\x14\x27\x69\xde\xf8\xda\xe5\x59\x81\x4e\x45\x75\x45\xd8\xbc\xe8\x89\x84\xce\x6b\x9a\x28\x61\xb1\x6d\x13\x64\xb9\xdd\xf1\x7f\x52\xc9\x80\xdd\x52\x3a\x00\x67\xa6\x82\xbc\xaf\x2e\xb4\x47\x69\x5e\x8c\xa8\x76\xef\x14\x44\xcf\xd3\xb3\xf1\xb5\xd7\x69\x8a\x12\x4a\x76\xc8\x61\x88\x8d\xf0\x81\xda\x14\x1f\x34\xf6\x72\x8d\x62\x53\x44\x49\x39\x6c\x29\xd1\xa8\x0b\x0a\xca\x72\x41\xb1\xfd\x80\xa6\x1f\x92\x17\x0e\x71\x81\xa6\x2c\xbc\xda\xb7\x31\xd2\x12\xa8\x4d\xe5\x99\x9e\xdb\x4f\x6d\x6a\x09\x57\x6c\xe4\x64\x57\xa7\xbc\x5b\xed\xdf\x28\xc9\x51\x73\xed\x56\xc0\xe4\xf2\xb5\x9a\xee\xcc\x8e\x4c\x94\x31\x80\x45\x40\xd1\xd5\x08\x6c\x20\x9d\x22\xc4\x78\x8f\x68\x33\x93\xdb\x07\xf5\x41\xa9\x08\xbb\xbe\x87\x09\xc5\xef\x5c\x09\x94\xfe\xc6\x75\xce\x96\x08\xf7\x68\xf5\xe5\xd8\x63\xff\x93\x22\xda\x3f\x1f\xe8\x8e\x64\x6f\x2e\x6d\x5e\x50\x89\x13\x91\xcb\xfb\x3a\x83\x7b\x6f\xec\x51\xff\x3f\xd3\xb5\x1b\x24\x5f\xc9\xa9\xf8\x7b\x9f\xeb\x50\x74\x02\x59\x90\x5f\xe8\xa8\xb6\xf7\xd6\xc4\xbb\x10\x5b\xa9\x8f\x07\xc7\xf4\xdf\x9a\x50\x10\x84\xbc\xcf\x96\x29\x3f\xa8\x72\x13\xb3\xf5\x44\x8a\x85\xf8\x79\xe0\x9b\xf9\xfa\x33\x3b\x7c\xd6\x84\x81\x8f\x8b\x65\xf5\xca\xd9\x66\x4f\xe3\x57\xdb\xa6\x8b\x76\x17\xc1\x55\x6d\x25\x4f\x90\xaf\xa7\xfc\xd7\x3d\x8b\xed\x81\x89\x97\x77\xd0\x2b\x4a\xf7\x43\xe5\xfb\x48\xa4\x48\x56\x03\xf0\x05\x30\x82\x8a\xcb\x54\x3d\x3b\x72\x49\xb3\xf0\x01\x5d\x3d\x6c\xdf\xc2\x01\xfe\x97\x87\xa9\x92\x23\x34\x72\xaa\xa4\x77\x5e\x51\xab\xb0\x3b\x27\xe0\xe7\xcf\x79\x02\xab\x10\xaa\x35\xf9\x80\xab\x02\x4e\x0d\xcd\x1f\x22\x0d\xa1\xd5\xfe\xb6\x29\x0a\xca\x69\xcc\xa8\x76\x8b\xa3\xaa\x45\xe6\x23\xdd\xdb\x73\x59\x55\x1f\x43\x93\x98\x5e\x64\x92\x07\x15\x39\xc8\x55\x32\xfc\x98\x7d\x24\x76\xd9\x01\x09\x14\x71\x2c\x36\x81\x77\x4d\x1c\x5c\xf8\x26\x85\xa0\x70\x53\x58\x98\x91\xbf\xd6\x15\x66\xa8\xb1\x35\x0a\x89\xdb\xa3\xfa\x20\x67\x7d\x31\xcf\x92\x02\x9e\x52\x48\x5f\x68\x2f\xcd\xef\x6f\xf9\x6a\xde\x79\x7a\x3f\xbe\x6e\x42\x76\x64\x69\xaf\x6f\xb3\xbc\x26\x18\x71\x0c\xfb\x0f\xce\xd7\x69\x0d\xa3\xb9\x39\xa5\x4c\x22\xeb\xb1\x9a\x13\x93\xac\xcf\xba\x5a\x47\xfa\xb8\xa2\x35\xbd\xaf\xb5\xf7\x6e\x8f\x55\xdd\xe5\x82\x16\x8f\xc8\x32\x9b\x57\xc6\xb3\xf5\x55\x11\x0f\x7d\x35\x50\x4a\xa2\xaf\x4e\x0b\xd1\x2f\xb4\xd3\x51\x65\x9a\x39\x41\x88\x65\x84\x7a\x2b\x5f\x3b\x44\x4e\x31\xc8\xa2\x55\xd8\x70\xd9\x26\xb4\xbc\x65\x03\xf9\x62\xcc\x8b\x69\x94\x3c\x50\x4f\x65\x54\xd3\x88\x25\x7e\x17\xc6\x85\xff\x45\x69\x6b\x73\x43\x3c\xe7\x78\x31\x4f\x92\xf0\xf5\x78\xc6\xf3\xca\x2f\x4b\xe1\xaa\x00\xb4\xee\xc4\x16\x9c\x78\xd0\x74\x51\x61\x69\xbe\x1d\x5b\x9b\xad\xcf\xf8\x94\xdf\x0f\xe9\x09\x10\xaa\x11\xaf\xdc\xc6\xe1\xa6\xac\xf5\xca\xc0\xb0\xc6\x18\xef\x66\x52\xdc\x93\x9d\xbd\xf9\x34\x5e\x9a\x6f\xaf\x19\x7f\x8c\xc1\x4b\xbc\x37\x56\x1a\x3b\xf7\x1a\x8e\xd9\x7d\x55\x40\x65\x0d\x6a\x5f\x28\xde\xf0\x06\x70\x7a\x3b\xae\x58\x7c\xa4\xa1\xf2\xbd\xbf\x3d\x4a\x89\xc9\xc6\x17\xc8\x71\xcc\xf2\xb5\xe7\xe8\x8a\x86\x65\x6c\x0a\xd9\xc9\x18\xfe\x9b\x2a\x93\xc5\xa9\x3f\x44\x36\x27\xa6\x56\xcd\xc2\x81\x76\x37\x4e\xc3\x15\xd3\xb3\xf8\x06\xe4\x92\x8f\x2b\xf6\xb7\x3b\x34\x0f\x22\x63\xf9\x50\xd4\x1e\x65\x76\xf9\x1f\xb5\xd3\x5f\xa8\x76\x3d\xfd\xf9\xbb\x9f\xef\x28\x79\x99\xd7\x02\x4a\xe8\xa2\x2a\x71\x09\x12\x86\x18\x82\x9d\x14\x7d\xa1\xe3\x7b\x7b\x47\xd1\x75\x5c\x0d\xb4\xa2\xc7\x2f\x4c\x5a\xbf\xf6\x15\x07\x80\xf2\x89\xc3\xd1\x3f\x98\x78\x31\xc5\x0b\x94\xdf\xc5\x6b\x5d\xc3\xd0\xc2\x05\x39\x12\x28\x46\xa3\xd3\xc8\xbc\x31\x09\xb2\xe2\xa6\x67\x92\x0d\xa7\x7c\xff\xe5\x83\xbc\x09\x7f\x0f\x35\x3a\xc9\xe2\x55\xab\x15\xf5\xca\x93\xe3\x99\x83\x8e\xca\xff\x2c\x6c\x38\x86\xfb\x3e\x50\x53\xe0\x87\xbd\x3d\xae\x76\x2c\x1e\x7e\x07\x6d\x7b\xd8\xbf\xeb\x94\x08\x06\xb8\x74\x83\x02\x4c\x8c\xf4\x13\x38\x3f\xb0\xcc\x19\x72\x87\xd1\xba\x3a\xd5\xa8\x51\xad\x8b\xc4\xa6\xa3\xc1\x7a\x61\x99\x6a\x86\x33\xeb\xf5\x34\xbb\x82\x2b\xa7\x65\x56\x0c\x30\xb3\x4e\x88\xd4\x65\xb9\x2f\x6a\xb5\x90\x4f\xa7\xec\xd9\xd2\x7c\xbb\x67\x87\x69\x02\xa1\xa5\xbc\x55\x43\x81\xd2\x20\x0b\x3e\xd4\x4b\xa0\xf7\x6c\x56\x99\x69\x72\x2f\x11\xe5\xc1\xa5\x64\x31\x60\x95\x40\x39\xd2\xc8\x02\x66\xa9\x9b\x66\xd6\x87\x7b\x5c\xbe\x62\x02\x56\x78\x52\x97\x14\x19\xe3\x55\x07\x8a\x2d\xca\x61\x37\xb6\x39\x19\x04\x64\xbc\x8e\xe3\x29\xf1\xb2\xac\x13\x02\x87\xe7\x8e\xa3\xe9\xcb\x0b\x93\xf4\x4c\xd6\x8b\x5e\x62\x6e\x34\x9c\xcb\xac\xcc\x26\x82\x68\x2d\xa7\x64\x75\x4e\x55\xd9\x8b\xb4\x44\x61\x60\x49\x90\xf7\x28\xce\xf1\x75\x53\x56\x9f\xb0\x90\x88\xc8\x30\x5b\x37\x03\x35\x75\x37\x9d\xfb\xdc\x8b\x4c\x3f\x49\x89\x3b\xd0\xa7\xac\x5e\x57\x09\xc8\xd7\x6b\x59\xe9\xac\xcf\x74\x6b\x38\x3a\x99\x8a\x91\x6f\x54\x48\x3b\x8a\x46\x36\x8e\x12\x0b\x35\x0e\x71\x3b\x7c\xb3\xc3\xa7\x2a\x14\xbd\xc2\x0e\xa6\x24\x21\x68\x23\xe2\xc7\x7f\xe4\x06\xbd\x0f\x84\xd8\xac\xef\xfe\xbd\x8d\x3f\x64\xa4\xcd\xd8\x7b\x47\xff\x0c\x94\x76\x38\xe9\xb7\x4d\xfc\x22\x45\x57\xfb\x43\xd5\x56\xc3\xee\xba\x8d\x93\x0e\xd1\xf1\x39\x6c\x6e\xa7\x25\xe4\xcf\x92\x6b\x0a\xcf\xf2\xd6\xd8\xf7\x59\x31\x17\x16\xeb\xa8\x91\xab\x21\x90\x78\x85\x24\xba\xe0\xb2\x0f\x4c\x1a\xba\xae\x6a\x41\xef\x04\xaa\xac\xf9\xce\x54\xc1\x64\x69\xbe\x3d\x1a\x44\x71\x34\x1a\x45\x0c\x63\x46\xda\xee\x26\x3e\xc6\x37\x6e\x32\xc9\x49\x33\x8e\x5b\x1b\xe7\xe5\x69\xc5\x29\x7b\x3a\xd8\xa5\x44\x20\x28\xc1\xc6\x3c\x38\x8e\x4f\x42\x75\x31\x34\x1d\x85\xe9\xaa\x9c\x50\x48\xfa\xbd\xab\xd8\x16\xdf\x55\x7c\x86\x43\x53\x14\x03\xbb\xd6\xf2\x30\x9a\x63\xba\x8b\xfa\x98\xdf\xca\x71\xba\x16\x0e\x4c\x86\x47\xd6\x8a\x5b\x7c\xdd\xc4\xd6\x55\x79\x87\xae\xb0\xe9\x7a\xc8\x9c\x67\xfe\xb6\x73\x40\xf2\xf5\x61\x37\x8d\x6b\xb5\xa3\x33\xde\x5f\xfe\x15\xb4\xc7\x62\x96\xef\x8c\x55\x81\x63\x9a\x22\xf6\x69\x6e\xc5\xf1\x8a\x76\x30\x4a\x27\x55\x22\xfd\xa4\x22\x60\xa0\x86\x7c\xfe\x61\x94\xfc\xdf\x1c\xfb\x3a\x13\xf8\xd6\xf8\xff\xeb\xfe\xd0\x8d\xa6\x72\xf6\x72\x94\xe5\xc5\x9c\x6f\x80\x40\x97\xa7\x02\x9a\x2f\xb8\x39\xab\x16\x21\xce\xca\xc7\x3a\xb5\xa6\xca\xcd\xef\x43\xd8\x07\x13\xc7\xb6\x2f\x13\x8a\x33\xe3\x6d\xa5\x53\xff\xb6\x72\x14\xd3\xb2\xc8\xa2\xfe\xa0\x68\x29\x33\x09\x38\x86\x10\x6c\xf9\x77\xa7\xf2\xfb\x4e\xfa\x79\x40\x6b\xae\x68\x1e\xe6\x8f\x79\xbf\x63\xdf\xdc\x0e\xbc\x74\xd3\xdb\xf4\x5e\x98\x8e\x39\x1c\xf5\x8e\x06\xd5\x1d\xe8\x68\x2c\x13\x39\x56\x9f\xa3\xbb\xa1\x99\x25\x8f\x61\x6b\xa2\xe1\xe8\xc2\xb8\xf5\xa5\xaf\x89\x67\xd2\x24\x0f\x4a\xe2\x23\xb3\x8a\x7c\x85\x41\xab\xf4\x24\x4f\x63\x91\xd4\x4e\x32\xd4\x70\xb6\x4c\x7c\xbc\x92\x94\xc3\x2e\xd1\x9d\x56\x6f\x80\xbc\xc3\x59\x95\x83\x38\x3b\x95\x0f\xda\xbd\x1b\xdb\xd5\x16\xa0\xdc\x75\x6c\xdf\xcf\xcf\x73\x6c\x04\xb9\x2c\xc0\x69\xee\x2a\x9a\xdb\x30\x8b\x86\x51\x62\x62\xf4\x43\xb0\x84\x15\x8d\x1c\xd0\x05\x77\x6b\xfe\xec\x93\x0a\xab\x55\x97\x31\x60\x47\xe2\x38\x8c\x15\xdf\x34\xfa\x02\xf9\x7a\xbc\x5a\x45\x09\x19\xd4\x2c\x99\x59\x08\x73\x2a\x34\x43\x8f\x6a\xe8\x6c\x56\xbc\x44\x2f\x85\xaa\xdb\x1d\x2c\x70\x69\x7e\xa1\x11\x94\x65\xd9\xc0\xe8\xde\x8d\xd0\x56\x03\x83\xfb\xa1\xee\xd8\xfc\xd0\x99\x0d\x22\xf9\x1b\xda\x04\x92\xa7\xf0\x2c\x6e\x93\xe7\x2a\x62\x86\xbe\x5b\xea\xa8\x02\x9d\xc6\xd6\xf4\xe6\xbc\xfb\xbe\x9d\xc2\x62\x21\x91\xa5\xa5\x0d\x07\xfd\x03\x1a\x50\x80\x32\xb6\x4d\xbc\x40\xf8\x79\x54\x14\x38\x5d\xdd\xad\x4e\xf5\x22\xaa\x3c\x91\x87\x68\x48\x81\x34\x3a\x1d\xb4\x9e\x9f\xdf\xb8\x14\x78\xa8\xc5\xd6\x89\x5a\x9c\xdf\x05\x70\x4b\xb4\x00\xc8\x15\x13\xbc\x25\xcd\x05\x7f\x0b\x8d\xd4\xc6\x29\x42\xeb\x6c\x5c\x52\x1c\xca\xb1\x65\xea\x77\xa7\x73\xe3\x7a\x88\x2e\xba\xa4\x5d\x3e\xb2\x6b\xce\x56\x71\x57\x7a\xe0\x57\xc9\xd9\xa9\xc3\xc6\x11\x99\x24\xe2\x39\x60\xc3\x9d\xd3\x0c\xca\xe7\x54\x23\x3a\x25\x0f\x77\xd2\x46\x63\xe5\xc5\x40\xe9\x91\x32\x3b\x87\xee\xf7\xa8\x69\x1f\x39\xb8\x53\xe5\xc4\xe3\x08\x9e\xc5\x28\x39\x9a\xac\xa5\x79\xaf\xf5\xb0\x47\xe4\x99\x8f\x04\x9e\x2b\xf0\xbd\x80\x7c\x65\x07\xb6\x74\x0e\xe0\xc7\xca\x37\x2d\xac\xe9\x9b\x84\xca\x48\x4e\x24\xe0\xf9\x79\x1e\xfe\xc9\x58\x0b\x06\xa8\xcd\xcd\x40\x52\x6e\x37\xd2\x9d\x59\x03\xe0\x77\xbb\x44\x6e\x5c\xf9\xf0\xb2\x75\xaa\x67\x94\x3d\xa5\x21\x38\x2f\xf5\x0c\x39\x9a\x42\x4b\x44\xbf\xa2\xd0\xf1\x5f\x67\x2b\xf9\x76\xa0\x4c\x66\x75\x86\xfd\x92\x7f\x03\xe6\xb4\x56\xf9\x01\x97\x2c\x50\x72\x4d\x9a\x99\x8b\xb4\xd3\x80\xf9\x47\x09\x05\x71\xc7\x27\x64\x3e\xd1\x31\x70\xc5\x6d\xa7\xae\x89\x4d\x12\x3a\xa0\x02\xe6\x1a\x62\xaa\x08\xc1\x91\x68\xc7\x81\xf5\x63\x75\x2c\xe4\x45\x96\x26\xa4\x8a\xbb\x34\xcf\xe6\x16\xda\x2a\x7c\x3d\xd5\x8a\xfe\x1f\xb6\x47\xd5\x5f\xef\x59\xf4\xd2\x5b\x5f\x3e\x28\xd7\x1a\x0d\x63\xb3\x15\x1b\xdb\xf5\x19\xd5\x76\x0b\xa8\x01\xa0\x6a\x2c\xb2\x2f\xda\x1b\x0d\xfd\xbd\x79\x61\xb2\x15\x95\x97\xd9\x36\xf1\x79\x99\x6d\x1d\xef\xaa\xc4\xd6\xac\xba\x37\xe7\xa0\x2f\xf0\x7e\x0b\x44\x39\x60\x09\x7e\x16\x6c\x82\xc3\x2c\xcd\xb7\x0f\x3c\xb7\x9d\xb6\x33\x52\x68\xd7\x91\xe0\x00\xe2\xe9\x2e\xf6\x36\xaa\xa0\x00\x23\xd3\x12\xfe\xdd\xbf\xdd\xf1\x29\x5a\xb0\x02\xd6\xc8\x0b\x35\xcf\x2e\xce\x4c\xae\x6d\xe0\x6b\x77\x4e\x7c\x50\x7f\x5a\x63\xeb\xe2\x72\x38\xb4\x05\x1f\x42\xf2\xef\x34\x4c\x7c\xa3\xca\x43\xa3\x2c\xca\xd3\x04\xc5\x5c\xec\xd1\xf7\xc6\x6a\xc3\xbe\x17\x28\x59\x02\x6e\xb0\x13\xba\x89\xa9\x78\x6a\xa1\xbd\x1c\x57\xbe\x41\x4e\x99\x1e\x4c\xc9\x79\x7d\xac\x9c\x57\x40\xe0\x9e\x5d\x8d\x42\x4b\x5c\xb7\xa2\x47\x78\x0a\x91\x3c\xd3\x9c\xe8\x88\xe8\xaf\x83\xd6\x53\x4f\xd5\x30\xb9\x8e\xf3\xd4\x8b\x3a\x1d\x9f\xe2\xd9\x59\x9a\x6f\xdb\x43\xa6\xdf\xd7\x48\x39\xcd\x03\x2a\xee\x4b\xa3\x16\x6b\x7f\x50\xac\xd9\xea\xbf\xb3\xaa\xa3\x02\x9f\x83\x71\x01\xc4\x0f\xf9\xc0\x13\x9a\x73\xfb\xd8\xf8\x0b\x5a\x3e\x30\x2f\xa2\xa2\x04\xf4\x15\x9e\xaa\x23\x66\xf7\x9a\xe2\x0d\xdd\x23\xfb\xdb\xa6\x97\x8e\x40\x70\x09\x77\xe4\x8a\xaa\xa6\x1d\xd5\xb4\x20\x87\x9b\x62\xdb\x9e\x1d\xd9\x44\xa0\xb9\x62\xb5\x95\xae\xe3\xb9\x29\xc8\x0d\xf9\x82\x3d\x12\x99\x89\x96\x23\x19\x30\x1c\x49\x28\x2f\xf2\xb5\x6f\x0c\xb5\xa1\x8d\x56\xed\xac\x67\xe8\xfa\x14\x1e\x17\xdc\x8e\xed\x8a\x5f\xf6\x71\xe8\x6f\x49\xde\x6b\xb3\x1f\xba\x70\xa0\x5d\x26\x99\x8d\xfd\x44\x69\x85\x55\xbe\x0e\x7e\xf1\x33\xce\xaa\xea\x08\x0e\xb3\xa8\xeb\x0e\x3a\x26\x86\x0c\x54\xa9\xf5\x75\x57\x8d\x30\x19\xab\x26\x88\x52\x9b\xc7\xf9\x7e\x5c\x13\xaa\x5c\x86\x1c\x9d\x8f\xe8\xd8\x68\x8b\x80\xa3\x84\x17\x71\x54\x14\xb1\xdd\xe9\x05\x36\x66\x08\x00\xb5\x71\x09\x56\x00\xd6\xf7\xba\xcf\x22\xec\xf9\x22\x7a\xb4\xf0\xc7\xef\x2a\xe8\x20\x9b\x74\xe4\x1a\xd8\xb6\x89\xe2\x45\xf5\x18\x74\xf6\xfd\xf7\x3f\x4f\x2b\x0f\x43\xf9\x79\x1c\x96\xd8\x02\x9f\x6a\xad\x8b\x33\x63\x3f\x4d\x45\x66\x0d\x96\x92\x80\x2d\xea\xa4\xb8\x8b\x9e\x55\x4c\xc7\xf9\x43\x9b\x30\x13\x0a\x66\xfe\x3a\xb2\x23\xf8\x53\x70\x8d\xe0\x51\x67\x26\xaa\x17\xf0\xa2\x62\xa3\xe0\x1e\x4d\x07\x2b\xf3\x1e\xe0\x65\xf2\x71\x39\x30\x08\x54\xd1\xf5\x2a\x96\x10\x0c\xd0\xe5\xcf\x4c\x7b\x0f\xd2\xa1\x5d\x86\xbf\x2e\xf6\x9f\xa1\xec\x28\x8a\xfe\x4c\x33\xad\x60\xaf\x62\x90\x8e\xd4\xe5\x73\x40\x38\x20\x0c\xaa\xdf\x52\x5d\x4a\xdf\x02\x31\xea\x26\x7c\x85\x4a\x19\x73\xd3\x14\xdf\xa8\x53\x8b\xbb\xfa\x70\xf8\x62\x20\xd0\xf4\x89\xa5\x78\x89\x4c\x3a\x02\xdb\xfb\x95\x4f\xe1\x3d\xc9\x34\xeb\x45\x89\x11\xe3\x8d\x38\xef\xb1\x89\x8f\xf9\x1e\xeb\xa8\x5f\x31\x87\xa2\x61\xf4\x12\xcb\xd6\x33\x11\x1f\x3d\xbf\x90\xf2\x3d\x52\x7b\x22\x86\x46\x38\x7c\x8c\x2f\x01\x06\xba\xb1\x29\xed\xc6\x76\x48\x14\x1e\x8e\x66\xe2\xa0\xbf\x51\x75\x7a\x24\x44\xf8\xba\xb1\xdd\x34\xb3\xae\xec\x23\xb9\x57\xce\x4b\x0b\x48\x9e\xe6\x9d\x1b\x2c\xa6\xe4\x16\x28\x38\x8a\x53\xaa\xb9\x1a\x25\x7a\x75\x55\x89\x5e\x5d\x0d\xb4\x24\x4d\x2f\x42\x38\xd0\x52\x99\x38\x06\xbd\xcb\x6b\xab\x4a\x68\x66\xc3\x15\x45\xff\x0b\x5d\x2c\xbe\x6e\x64\xfd\x27\xb6\xbc\x1a\xb4\x99\xbb\x1d\xf8\x46\x0d\x78\x98\x86\xa9\xd1\xf5\x2e\xf4\x9c\x23\x07\x76\x44\xb3\x13\x37\x9e\x5b\xae\xff\x96\x6b\x50\x2c\xf1\x4b\x4f\x28\x72\xbf\x1e\xe7\x3f\x8c\x0e\x15\xf6\xa1\xca\x83\x62\x65\x5f\x72\x42\x9d\x52\x97\xf7\x2d\x2f\x50\x5a\x18\x14\x56\xef\x8e\x15\x1f\xe9\x59\x9d\xf6\xf8\xb1\x66\xe4\x44\x76\x1f\x5e\xe3\x47\xc8\x56\x23\x7e\x39\x55\xe7\x0b\x5a\x05\x5f\x10\xe7\x3a\x60\x22\xb8\x92\x28\x14\xd2\xaa\x3a\x7e\xaf\xee\xf1\x6e\x1e\x01\x82\x49\x0c\xa3\x24\xca\x43\x61\x10\x71\xec\x5f\x9e\x09\x4c\x15\x0a\xcb\x24\x4c\x87\x43\xa6\x2b\x42\x76\xf3\x7e\xe0\xd3\x9e\xf7\x9b\xd2\x47\x1a\x03\x8c\xb1\x82\xb6\x32\x5f\x2b\xa0\x75\xbf\x4c\x12\x4e\xbc\x0a\xf6\xb1\x9a\x14\xc1\x44\x4e\xa1\xcb\x16\xda\x89\x29\xa0\xfa\xed\x08\xec\x74\x05\xc8\x47\xc9\xdd\xb4\x27\x74\xb8\x42\x31\xda\x72\x74\xfc\xd3\xec\x89\xcf\xcf\x2f\xb4\x8b\x81\x60\x32\xa5\x21\xa1\xfa\x34\x5f\x07\x9f\xd5\x97\xd6\xb3\x71\x75\xb2\xaf\xb7\xaa\xc3\xc6\xd5\x95\xfd\x03\x2a\xde\x35\x93\xe7\xe5\x70\x04\xb1\xd7\x19\x2f\xdb\x72\x4b\xcb\xb6\xdc\x9a\xda\xef\x7b\x16\x49\x6c\x2a\x73\x07\xb8\x83\x6b\xb8\x74\xef\xf9\xe9\xf4\xd3\x73\xfb\xdb\xf6\xd0\x28\xcd\xcb\xcc\x6a\x2a\x97\x8b\x8a\xca\xe5\x62\xb0\x4b\x79\x8d\x74\x26\x67\x5c\x8e\x40\xf0\xf8\x81\x22\xcf\xf8\x60\xca\x93\x7a\xba\x9d\xa7\xeb\x5d\x09\x95\x05\xd5\xe1\xb3\xdc\x8d\x32\x46\x6b\x83\x28\x66\x95\x04\x29\x81\xf9\x2e\x9a\x93\x64\xbe\x91\x1b\xbb\xa3\xc4\x1b\xf2\x32\x2a\x72\x92\xf3\x61\x26\x11\x9a\xca\x1a\x5d\x93\x50\x8c\x28\x22\x88\xeb\x6a\x4f\x4f\x3b\x72\xfb\x96\xf6\x09\x63\x9e\x2a\xc0\x9c\xd7\x1a\xf7\xe7\x15\x58\x92\xba\x36\x62\x3b\xa7\xd1\xce\xcc\x0c\x24\x85\x28\x9f\x4d\x3a\xaf\x2c\xd2\xe5\x40\xb1\x8f\xcd\x4d\x1e\xf3\x3b\xdb\x0c\x6d\x66\x72\x74\x90\x22\x5a\xbd\xa6\xea\x7d\xd7\x14\x27\x4f\x65\xb3\xb2\xc4\xc4\x88\x26\x44\xb0\x8a\x7e\x1c\xed\xa6\x1b\x81\x87\xfe\xbc\x49\xd0\x2a\xa1\xe1\xf9\x7b\x9f\x59\xdb\x4e\x72\x4b\xfd\x4e\xb1\x6e\x78\xe5\x83\x57\xea\xcc\xd3\x53\x3e\x34\x49\xcf\x14\x50\xf8\xe3\x96\x3d\xea\x06\x01\x9f\xa7\xe4\x76\x7c\x18\xb4\xc6\x12\x96\x9e\x1a\xeb\x98\x62\x70\x3b\xe6\x5b\x4d\xd3\xbc\x28\x87\x96\xea\x0f\x48\xf6\xde\x55\x6d\x03\xbf\x07\x7f\xcf\x55\x83\xb4\x8b\x35\xa5\x90\xb8\xb4\xaf\x5a\xf9\x04\x39\xef\xb5\x54\x4b\x18\xd3\xc5\x49\x52\xb8\xa9\xad\xbc\xcc\xfa\xd2\xff\xcc\xbf\xc5\x05\x4d\xe0\x76\xbe\x83\x23\x16\xe9\x43\x44\xef\xf0\xbf\x98\xb2\x17\x31\xd5\xe5\xe9\x75\xbf\xd0\x36\xdd\x74\x95\x37\xa2\x4b\xa0\xed\x91\x5c\xd1\x45\xb5\xd6\x7b\x26\x8a\xd7\xc9\x49\xc0\xf9\xf1\x32\xb2\x66\x88\xdd\x3e\x19\xfb\x56\x8c\x4f\xe8\x28\xe2\x3f\x52\xa5\xa1\xbe\xc9\xd3\x58\xca\x19\xcc\x47\x3c\x56\x1c\x3d\xc7\xa6\xde\xfc\x85\x17\xda\x5d\xbb\x9c\x66\x96\xd2\x06\x7c\x06\x05\x4e\x5d\xe7\x9b\xa7\xc6\x4f\xd6\xa3\xf2\xca\xb8\x7c\xe9\x6b\xad\x9a\x4b\xdc\x72\x1c\xf8\x67\x02\x81\xbb\x0f\xac\xc9\x8a\x6a\x05\x44\x49\x9f\x97\x19\xf7\xdd\xd1\x66\xf1\x34\x5a\xbf\xa4\x58\xf2\x87\x23\x93\x50\x4f\x6d\x75\x20\xa2\xb6\x0a\x60\x0f\x5f\x37\x10\x3c\xee\x6b\x77\xcb\x08\xcc\x44\x98\x2e\x64\x33\x8f\x04\x2a\xb5\x79\xa4\xc1\x8f\x6a\x47\x09\x9a\xe5\xe0\x4e\x08\x7f\x4b\xcb\xb1\x80\xfc\xa9\x6e\x47\xbd\x32\xf6\x9b\x37\x21\xcf\x29\x26\xc5\x5b\x31\x06\xd5\xeb\xb9\xcc\xb2\x2a\x50\x3f\xaa\xf2\x4c\x04\x05\xa1\xa7\xc2\x39\x7e\x58\x71\x48\x1e\x6e\x7a\xc2\xdc\x8e\x4c\x26\x4c\xfe\xc2\x1a\xef\x53\x93\x67\x55\x49\x28\x8c\xa3\x61\x17\xb4\xd0\xcf\xd6\xd4\xa7\xa5\x69\xd5\x07\x0f\x2d\x04\x40\x48\xd1\xdd\x98\xc2\x3d\xbc\xf0\x42\x7b\xc5\xae\x3b\xc2\x07\xa7\xfb\xe5\x35\xc0\x1c\x9c\x6e\xcd\x9a\x8c\x3b\xc5\x90\xf1\xbd\x11\x28\x3b\x8d\x6d\x8b\xb0\xf8\x67\xaa\xf5\xc7\x14\x05\xf1\xc0\x30\x3d\x1f\xce\x8b\x13\x68\x94\x11\x54\x0e\x15\xfc\xf9\x06\x85\x79\x66\xd9\x0f\x3c\xb8\xf8\x23\x5d\xcc\x3c\x31\x65\xae\x16\x0e\xb4\x87\xb6\xc8\xb8\xf6\x2a\x28\x73\xfa\x08\xdf\x4c\xbd\xfa\xee\xdd\x6d\x93\x85\xa6\x27\x4d\xdd\xc2\xc9\x49\x6f\x28\x8c\x9e\x4e\x93\xdb\xda\x15\x9b\xf4\xf8\xfd\xf1\xac\x1f\x68\xb1\x06\xac\x25\x99\x2a\x45\xc0\x6c\x88\x22\x7d\xbf\x23\x38\xa8\xc6\x0c\xcb\xef\xb1\x8e\x57\x7b\x06\xa2\x13\x69\xac\x2b\x75\x64\x8f\x8f\x79\x5a\x53\x5d\x58\x7b\x16\xdb\xf9\xc8\x86\x11\x7b\x60\xf8\xf9\x93\x6a\xd5\x9c\x6c\x10\x61\x6e\xe7\xe5\xc8\x66\xab\x51\x9e\x82\xb3\x0f\xa1\xf8\x8f\x74\x5c\xfe\x23\xb0\xbd\xf0\x3b\x74\x9f\xe1\xcd\x86\x2a\x29\xfb\xb9\x7c\xe3\x12\x19\x20\xe7\x12\x2c\x96\x43\x60\x54\xef\x8e\xf5\x32\xd3\x51\xd8\xe1\x3b\x0e\x2a\x56\xb3\x04\xbe\x6d\x88\x55\x41\x45\x5b\xd1\x47\x57\xb9\x35\x79\x9a\xe4\x74\x7e\xa0\x5a\x71\x13\x55\x00\x09\xff\x3d\x0e\xe6\x7d\xb2\xbc\x02\xbf\xf2\x12\x1d\x03\x9b\x75\xa3\x30\xea\x59\x86\xc7\x63\x6e\xde\x56\xac\xc6\x6f\x8f\x95\xfc\x40\x9a\xf4\x84\x0e\xcd\xbb\xc3\xb3\x1d\xef\x26\xcf\x3a\x26\xa7\x2c\x0d\x57\x90\x37\xdc\xbb\xd7\x15\x94\x94\x3c\xcf\x09\x25\x9b\x18\x25\xab\x36\x2f\xd2\xec\xa1\x6a\xba\x37\x2e\xd1\x62\x57\xee\x86\x70\x2a\x9d\xe6\xde\x76\xfe\x27\x9a\x5c\x01\xb4\x72\x8a\xa4\xf2\x47\x85\xcc\xc8\x7b\xe2\xd7\x02\x45\x33\xf1\x66\x43\x53\xdd\xb3\xed\x1e\xd1\xe5\xf3\xe3\x8a\xe4\x99\xd6\x3f\x1b\x6f\x77\x2b\x39\x9e\xa1\x53\xc0\x91\xca\x38\xd4\xc1\x3d\xb2\x03\x9f\xd5\x64\x55\x05\x09\x83\xc8\x82\x9f\x04\xa9\xba\xfb\x81\xca\xe1\xdd\x77\x29\xa0\x30\x1d\xd8\x44\xec\x3a\x56\xff\x86\x06\x86\x6e\xa8\x6d\x15\x15\xf9\xa3\xf4\x9c\x00\xb2\x3f\x42\x79\x5c\x49\x0a\xaa\x80\xe9\xe9\x8e\x52\xf2\xaa\x4c\xb8\x3c\x26\xad\x34\x94\xae\xff\x7e\x87\x5e\x4c\xd1\x64\x4b\xdb\xe3\x1d\x4d\xc4\x4c\x08\x52\x91\xaa\x54\xd4\xed\x8f\x4e\xaa\xd7\x87\xc1\xb8\x3b\xf6\xab\xf2\xa2\xef\x80\x58\xfb\xb9\x89\xe2\x30\xbb\x5f\x1d\xb2\x1c\x71\x2d\x9b\x61\x14\x47\xbe\x71\x97\x39\x41\xf0\xda\x42\x10\xe2\x0b\x30\x09\xc9\xd5\xa1\xed\x08\x09\x96\x23\x8a\x42\x9c\x5d\x3a\xe9\xf0\xa9\x1e\x8b\xff\x48\x95\xed\xd2\x35\xcb\x21\x09\xf2\xe1\x27\x75\x41\xf9\xa4\xa2\x26\x4a\xac\xc9\xe2\xf5\x1d\xbe\xf1\xeb\x9f\x69\x34\xe3\x39\x74\xbe\x63\xa5\x4d\xe8\x21\xf0\x5b\x5b\x3b\x9e\xc2\x9d\x01\x3c\x40\x0f\xdd\xa5\x07\x92\x0c\x46\x35\x5f\x88\xf8\x1f\xec\x28\x3a\x60\xae\xee\x09\xad\x9c\x87\xe6\xcc\x4d\x36\x2f\xac\xbd\x7b\xdb\x79\x61\x59\x8f\x43\x98\x3b\x6a\xfd\x41\x0d\x3d\xab\x79\x61\x3c\x31\x90\x6b\xd2\x75\x4b\xf9\x9a\x3a\x64\xf3\x6f\x94\xd6\xbe\x64\xe1\xb5\x73\x84\x4f\xef\x29\xd1\xbe\x37\x49\x10\xa9\xee\x11\xe9\x12\x60\xc5\xa0\x4e\x47\x8c\x8d\x62\x2a\x12\x06\xa7\x82\xed\xfc\x50\xed\x2f\x7d\x6d\x47\x15\x0c\xd7\x8a\x77\x30\x12\x37\x54\xa7\xdf\x07\xe4\x36\x48\x75\x52\x9d\x3e\x77\x03\x2f\xaa\x05\x79\x59\x04\x08\xaf\x6e\x26\xec\x50\xf5\xc1\x5a\x7d\x51\x97\x14\x77\xf8\x00\xe4\x99\x19\x8f\xe4\x42\x39\x54\x98\x8e\xe8\xe3\x30\x33\xef\xa9\x1c\x6f\x98\x96\x59\x61\xf3\x75\xdd\xd3\x40\xcf\x20\xfd\x0d\x5e\xa0\x3b\x27\xa2\x58\x36\xf3\xf0\x2f\xee\xe2\x41\xf8\x46\x65\x96\x06\x66\x35\x0d\xe1\xad\x49\xb2\xdd\x7b\x28\xe7\xc7\x4a\xfc\xe4\x5e\x63\x2b\x53\x5c\xf6\xfb\x51\x3e\xd0\xfe\x40\xe0\xa1\xed\xc7\x55\x93\xd8\x28\x25\x9e\x66\x13\x3f\xe8\xe1\xb0\xc8\x61\x2a\x93\x20\x02\xbc\x47\x15\xc9\xf7\xad\xc0\xb3\x93\x7d\x12\x28\x30\x17\xf7\x23\x0a\x1a\xaa\x9a\x66\xe9\xd5\x14\x6f\xaa\x67\x92\x10\x70\x05\xc4\x72\xa7\xc6\x5e\x35\xec\x22\xb2\xb7\x5c\xb7\xa9\xa5\x5a\x8b\x41\xbe\xad\x7a\x4a\x14\x70\x77\x76\x3c\x10\x9b\xc9\x59\x84\xd1\xc3\x43\x69\xb8\x9b\x51\x7a\xf2\xaa\xb3\x42\xb2\x5a\x9b\xb7\xd4\xd3\xed\xae\xed\xb3\x26\xde\xd7\xb5\xa2\xf7\x7e\xa7\xe8\xdd\xb0\xa7\x4c\xb2\x3e\x4c\x33\x3b\xe3\xfb\xf4\x6e\x29\x24\xcf\x4d\x4d\x74\xf5\x7f\x4c\x9d\x42\x2f\xbc\xd0\x0e\xd3\xd1\x3a\x01\x62\x66\x5a\x5f\x5d\xa8\xc9\xd0\x8a\x6f\xa4\xac\xe1\x1d\xd5\x2e\xe5\xe0\x1b\xc0\xc6\x61\xf0\x78\x41\xc1\x63\x02\x74\x52\x8e\xde\xd6\x66\x22\x22\x39\xa0\x1f\x12\x3c\x62\x3a\xd3\x3a\xf0\x1c\x87\xf6\x9f\xd2\xe2\xc7\xec\xde\xd3\xda\x76\xdf\x57\x24\x87\xdd\xd4\x64\xbd\x2c\x4d\x87\x34\x95\xd8\xfb\x80\x4f\xc2\xd3\x67\x28\x1c\xb6\xd3\x51\x95\x65\x60\x79\xb9\x59\xdf\xb8\xc1\x39\x86\x26\x65\x08\xcf\xdd\x78\x4e\xc5\x8f\x61\x1a\xa7\x09\xc2\x5e\x0c\xf5\xcb\x63\x1f\x53\xbf\xac\x92\x0a\x03\xaa\xc1\x59\x90\xe9\xb9\x1d\xea\x88\x73\x2f\x78\xa0\x43\x94\xac\x10\x79\xdc\xde\xbd\x1e\xb1\x50\xad\x2a\xb4\xaa\xdd\xa5\x49\x41\x35\x60\xb6\xa3\x1b\x68\xba\x82\x36\xf5\xb4\xcb\x2d\x45\xc7\x2c\x8b\x9e\x6a\x88\x73\x0a\x8d\x04\x3a\x4c\x29\x53\x29\xb4\xf5\x13\xe4\x5d\x21\x1a\xbb\xa6\x59\xa3\x3c\x65\xd5\xd0\x94\x99\xb5\x48\x49\x89\x4a\xaa\x72\xf8\xcf\xab\x01\x08\x07\x51\xb8\x52\xf9\x16\xd5\xaf\xb1\x02\x62\xe0\xab\xf0\xf7\x94\x63\xf1\x2b\xbf\xfc\xcb\x73\xd5\x16\x81\x2b\xfe\x10\xfa\xfb\x2b\x17\xcb\xf1\x16\x9c\xa2\x57\x43\x40\xc5\x6d\xa1\x30\xd5\x67\x1b\x59\x0c\xc3\x34\x7f\x86\x7d\x62\xd8\x2e\xb0\x53\xa9\xd2\xee\x3e\x17\xee\x34\x6c\xae\xa1\x29\x0a\xc7\xc3\xcb\x31\xa7\x3e\xe5\x4e\x4c\xed\xa8\x3d\x8b\xed\xac\x72\xeb\x12\x01\x24\x8a\x12\x9c\x22\x4e\xf8\x63\xc5\xd7\x1e\x71\x5a\x4f\xad\xc2\x7d\x6e\xb5\x29\x58\x96\xed\x9b\x82\xc8\x2c\xab\xaf\x11\x2e\x55\xdf\x5a\xa9\x99\xc9\x11\xe5\x60\x1e\xa8\xac\x25\x93\x32\xd3\xa9\xe5\xbb\xf3\x32\x06\x6c\x52\x71\x8b\x79\x68\xa6\xe6\x7b\x0e\xd3\xa4\x57\x32\xd5\xc5\x3e\xc7\xb8\xda\x72\x4c\x2a\xe7\x15\x98\x66\x60\xb3\x34\x61\x37\x12\x08\xb8\xd9\x8e\xc2\xa0\xce\x4e\xfc\x6c\x7f\xe9\x1f\x2f\xcd\xf8\xe2\x05\xb4\x3c\x95\x17\x29\x2d\x32\xd7\xa7\xe2\xf5\xbd\x7b\xdb\x26\x2e\xa2\xa2\xec\x01\xdf\xd3\x94\xec\xf0\x39\x84\x51\x16\x0d\x4d\xb6\xae\x65\x03\x2e\xaa\x56\x5f\x8f\xc6\x5e\x8d\xb2\x32\xb6\x09\x83\x86\xb0\xfc\xff\x0c\xd3\xcd\x37\x4d\xe8\xc3\xea\x64\x35\xdd\x98\xd1\xd0\x48\x34\xdd\xae\xbb\xf1\xaa\x05\xe4\xb8\x2b\xe2\xc6\x51\x5e\x10\xd9\xaa\x30\x7e\x78\x78\xc6\x0d\x85\x1f\x7c\x12\xb8\x7f\xf8\x64\xac\x8f\x22\x1b\x6e\x9a\xf6\x66\xbf\x44\xa4\x11\x08\x0f\xf7\x79\x49\x77\x57\x15\x3c\xae\x66\x36\x0f\x4d\x16\xda\x78\x9d\x9c\xda\x8d\x1b\x48\x06\x48\x56\x56\xa7\x98\xab\x45\x82\x5c\xe2\x61\xb5\x2c\x47\x59\xba\x5a\x05\x72\xdb\xc8\x87\xc7\x46\xe2\xe6\x02\xc7\x45\xed\xbe\xe4\x41\xac\x03\x2c\x99\xf7\xc6\x5a\x72\x09\xd4\x8a\x12\x44\x4d\xc7\x4a\x0b\xed\x32\xe9\xd9\x2c\x2c\x8b\x5a\xdd\x20\x50\x75\x83\x9a\x4f\x14\x97\xc3\x6e\x64\xd0\x73\x85\xe1\xbd\x12\x78\x96\x2b\x00\x58\x61\xf7\x3e\xc0\xd3\x8a\xcc\x26\x0d\x99\xf4\x7e\xb4\x5c\x13\xef\x15\xf2\x85\x19\x39\x4d\x15\x28\x41\x51\x6f\x2e\xee\xee\xdd\xbb\xdf\x13\xf1\x71\x2e\x0e\x29\xce\x9f\x28\x30\xf0\x4f\xa6\xf0\x82\x7b\xf7\xb6\xbb\x86\x1b\xe5\x45\xf3\xbd\xe5\x34\xdc\x8e\x05\xfa\xed\x58\xbc\x4f\xd5\x49\xe9\xab\x25\x15\xe5\xec\x7d\xd9\x8d\xed\xac\x3a\x8f\x91\x2e\xc3\x9f\x3d\xe6\x31\x51\x8f\x3f\x39\x69\x7d\xf9\x20\x17\x34\xef\x2a\xd1\xd0\x78\xd5\x3e\xe4\x78\x13\x87\x8f\x51\x05\x9a\xe5\xbe\x94\xe9\x79\x78\xf2\xd9\xd4\x0b\xae\xd3\x9f\x9d\x2a\x10\x9e\x6c\xef\x68\xc5\xd5\xb1\x52\xf0\x38\xdb\xc0\x93\xf4\xf5\x76\x99\x50\xeb\x74\x4b\xd1\x56\x61\x5d\x89\x48\xcf\x93\x8a\x30\x52\x92\x2b\x12\xca\x3a\x1a\x7e\xc5\xc9\xdf\x20\x56\xf6\x6c\xdb\x78\x31\x16\x60\xf1\x89\x22\x5c\x28\x30\x1f\x99\xf8\x2a\xad\x89\xe3\x34\x34\x0e\x72\x2e\xa9\xab\x96\xd2\xa2\x91\x18\xd3\x94\xc5\x20\xcd\x9c\x2a\x91\xa3\x1f\x3f\x41\x7f\x2d\x0b\x4d\x0d\x79\xc4\x22\x8b\xd8\x6b\x00\x8a\xf1\xf5\x44\x83\xca\xc2\x74\x18\x25\xfd\x6d\x5e\x9b\xe3\x2f\x6b\xfe\x35\xa5\x64\xb0\x05\xaf\xe8\x1e\x99\x2d\x13\xbd\x52\x54\x26\x49\xe9\x37\x97\x59\x9f\x2b\x47\x70\x1b\xff\x88\x96\x0d\x0a\x9d\xe8\xc9\x85\x6b\x7d\xcd\xab\x0c\x0f\xd2\xb5\x1d\xd5\x4a\xc1\xfc\xee\xe8\x78\x24\x18\x03\x23\x00\x1d\x43\xdd\x05\xe6\xe5\xb6\xa6\x10\xe1\xfe\x0b\x18\x80\xcb\x63\x75\x5e\xdc\x22\x57\x09\x09\xa5\x6d\x08\x4f\xc5\x65\xa7\x15\x85\x44\xc3\xa3\x1d\xcf\x12\x7c\x71\x0a\x16\x74\xe0\xb9\x76\x99\x8c\x32\x1b\xda\x9e\x4d\x24\x3d\x84\x85\xfc\x21\xb2\x34\x7c\xa3\x0a\xa6\x83\xc8\xed\x31\xfc\xf8\xeb\x8a\xdc\xed\xf5\xe6\xe0\xd6\x0e\x5d\x8a\x1b\xe5\xcf\xc3\x63\x8f\x35\xa8\x89\xa2\xdc\x54\xfd\x0b\xd4\xbb\x90\x99\x75\xf6\x32\x70\x02\xfc\x56\xe0\x4f\x83\xdf\xaa\xc5\x20\xc6\xc6\xdb\x7d\x8d\xf7\x06\x26\x57\xe9\xf4\x48\x7a\xea\x9e\x72\xbe\xdf\xa7\xec\x89\xa8\xab\xf8\xf0\xf6\x6a\xa0\xa8\xd9\xef\x05\xad\xdd\xbb\xe5\x1f\xc8\xde\xe1\x59\xb7\x77\x54\x00\xd0\x9a\x3c\xaa\x78\x6f\x8b\xd8\xe6\xa4\x19\x87\xb3\xed\x2d\x64\x25\xf8\x46\xad\xea\x15\x5b\x3c\xec\xb1\xdc\x80\x60\xe2\x69\x7e\x81\xd8\x40\x6a\x1c\xee\x8c\x8e\xa7\xe8\x0e\xb3\x7b\x44\x53\x61\xcf\x10\xd2\x59\xfa\x14\x34\xd1\xfc\xf7\x31\xc2\x4e\xb8\xea\xcb\x07\x9d\x33\xa0\xca\x49\x17\x14\x50\x96\x8f\x53\x34\x7a\xb5\x6a\x72\x59\xbd\xec\x19\x64\x9b\xc5\x96\xd1\xb3\x21\xc4\x38\x8c\x1f\x92\xea\xa7\xe3\x52\x2c\x93\xde\x8e\xea\xa9\x39\x56\xa2\x05\xbe\x71\x69\xac\x14\x6d\x3f\x1d\xab\xee\x65\x85\xda\x7a\x64\xe2\xa2\xa3\xff\xe4\xff\x8f\x86\x01\x64\x6d\x99\x8d\xc7\x6d\xd8\xea\x21\x70\xcc\xa2\x23\x52\x44\x75\xd5\x4e\xde\xde\x51\x9a\xdb\xe6\x90\x27\xfe\xc2\x23\xc0\x02\x88\x02\x0d\x7d\x0e\x5f\x32\x33\xd5\x62\xfe\xfc\x7c\x75\xc0\x7b\x09\x1b\x3c\x12\x43\xc8\xf8\x66\x1a\x3a\xb0\xbb\x3d\x4a\xb3\x95\x4d\x52\xb1\x9e\xd6\xfc\x33\xeb\xfb\x43\x13\x9b\xf5\x3c\x32\xad\xd6\xaf\x7d\xc5\x2b\x91\x7b\xe7\xeb\x4c\x03\xa4\x7f\x5f\xdb\x86\x69\x92\x0e\xa3\x30\x6f\x29\x5f\xfe\x1a\x57\x13\xc5\x21\xf1\x38\x93\x24\x3a\x94\x26\x73\xaa\x5c\x05\x0d\x0b\xac\x99\xa3\xe3\x3a\x51\x94\x63\x8f\xc3\x62\xe4\x3f\x6a\x12\xa6\x5f\x35\x71\x29\x95\x8c\x26\x18\x53\x93\x22\x61\x6f\xb5\x3a\x44\xe4\x53\xc2\x0b\x56\x7d\x4a\x68\xc1\xa6\x35\xa7\x17\xdb\x6b\xb6\x97\xd8\xbc\xe7\xcc\x05\x16\xf2\x75\xdd\x99\x70\xdd\x05\x69\xb6\xb7\x06\x72\x53\x2f\xaa\x37\x8b\x8a\x14\xdf\x74\x9a\x0e\xc2\x81\x35\x59\x8f\xf2\x09\x70\x1b\x98\x2f\xd2\xa5\xd3\x16\x17\x9d\x0a\x49\x43\x56\x30\xb3\xc3\x28\x9c\xd1\x54\x0b\x27\xd5\x48\x72\x80\x03\xe3\x75\x47\xa1\xb6\xf2\x92\xd8\xf4\x28\x48\x46\x79\xf3\x1a\xf9\x59\x7c\xdd\x14\x67\x25\x51\x68\x32\xd3\x2f\x01\x85\x14\x1e\x28\xb5\x13\x3e\x50\x34\x13\xf9\xc8\x9a\x15\x86\x77\x4b\x02\x46\x41\x8c\x9c\xd3\x34\x4a\xd3\x38\xd7\xf5\xe3\x7a\xaf\x81\x72\x02\x46\x23\x93\x51\x59\x9f\x01\x43\x82\x85\xa4\xc1\x72\xf8\x04\x8f\x55\xd0\xdc\x2d\xef\x2a\xbd\xa9\xe5\x32\x8e\x67\x94\xee\x01\x48\xcd\x91\x9d\xbd\xac\xd8\x73\x0e\x37\x2a\x00\x52\x3b\x26\x85\x70\xe2\x0c\xd1\xee\x94\x33\xc7\x0b\xa0\xf4\x1c\x52\x08\xeb\xfb\x1d\xa5\x20\x32\xad\x8b\xb8\xb8\x08\xc6\x75\xd2\xcb\xd2\x1c\x33\x7c\xad\x19\xe6\x49\xca\xb7\xa5\xd4\x7b\xd5\xa6\x7d\x3f\xd8\xee\xe2\xb0\xff\xe0\x0b\x4a\x41\xb8\x35\x99\xd9\xff\xeb\x5f\x95\x90\x02\x00\x3d\x11\x50\xac\xe6\x1d\x36\xf2\x3a\x9c\x04\x1c\x44\xbf\x43\xfe\x24\x85\xfe\x76\x17\x75\x01\x6f\xe0\x90\x43\x34\x7f\x3f\x50\x2c\xc6\xf7\x94\xa2\xfa\xad\xa0\xf5\x9f\x8b\x0e\xe5\x6f\x2b\xad\x08\xa6\x6d\x86\xcb\x74\x1d\x4f\x8d\x61\xbf\x4e\x58\x7e\x29\x27\x2a\x1e\x86\x5b\x81\xa2\xa2\xf8\x5d\x5a\x40\x38\xd3\x8e\x02\x10\x03\x90\xd9\x1d\xd5\xd9\x71\x9a\x88\x8e\x91\x56\xb9\x83\x4a\x19\xf7\x3a\x33\x85\x32\x86\xe3\x92\xaa\x8f\x65\x36\x2f\xb2\xc8\x8b\xa1\x3b\xde\x42\xcf\x25\x75\x56\x25\xe8\xfe\x6f\x85\x02\x79\xb1\xda\x0e\xd9\x4e\xad\x29\x83\xe3\x07\xbd\xb8\x73\x38\xca\xb9\x0b\x3b\xd0\x94\x48\x34\x35\x8e\xc0\xde\xc9\x2d\x73\x33\x1a\x32\x35\x97\x14\x4c\xe9\xdb\xc8\xb8\x62\x54\xaf\x92\x7f\x21\x0c\xbd\x78\x2f\x11\xf5\xf2\x95\xd1\x0f\x54\x4c\x1e\x5b\xd3\xb3\x59\xbe\x93\xbe\x04\x2d\x16\xcc\x5e\xc6\x37\x74\x50\x62\x75\x9e\x54\xd4\x54\x57\x35\x4d\xe4\x4f\x74\x8f\x02\xa8\xd3\x90\x38\xda\xca\xc4\x90\x70\xdd\xef\x63\xe4\xe0\x96\x1c\x51\xcd\x68\x0f\xe1\x70\xc5\xf2\xa9\xe1\x87\x9a\xc1\xa0\xe0\x3b\xb7\x2d\x4d\xe2\x40\xcf\x26\x84\x0e\x3e\x3b\x58\x8e\x72\x5b\x90\x6b\x84\x01\x3e\x3d\xf6\x24\xc4\xa7\x15\x7a\x8e\x72\x83\x4c\x83\x05\x1b\xf3\xca\xd8\xa7\x11\x5e\x51\xc1\x58\x66\xed\xc3\xf4\xee\x72\x3a\x28\xc6\xa6\xbb\x9a\x3e\xe2\x91\x89\xca\x96\x5e\xa3\x71\x44\x09\xe8\x66\x4d\x3f\xfa\x9e\x3a\x94\x41\xa2\x85\x76\xa7\xf7\x02\xcf\xdb\x7f\x1e\xdb\x0f\x5b\x19\xfd\x23\x94\x61\xff\x83\x5d\xe4\xb6\xe1\xff\x3f\xae\x95\x94\x76\x74\x1e\x73\xf5\xc4\x32\x29\xb2\x48\xe8\x8b\x05\xbe\x42\xcf\x26\x18\x52\x5d\xac\xbe\xde\xc4\xaa\x6b\xb2\x2c\x5a\x15\x0d\x1b\x61\x12\xf0\xc0\xf7\xb3\x53\xce\xc4\x9e\xc5\xf6\xd0\x24\xe5\xb2\x09\x8b\x32\x93\x3e\x6b\x91\xeb\x52\x14\x2c\x1f\x60\x4d\x48\x6b\xb8\x2f\xfe\x9d\x73\xd9\x20\xc7\x5e\x37\xa3\xfa\xb3\xcf\x6b\x2a\xd1\x9b\x81\xd2\xc5\x3c\xa2\x1a\x58\x4c\x37\x8d\x23\xf8\x5d\xae\x2b\xef\x35\x7c\x52\xd1\x04\x89\x0a\xde\x89\x29\x25\x9e\xa5\xf9\x76\xba\x96\x6c\xa3\xbf\x11\x2e\x26\x87\xf6\xf8\xe5\xc7\x48\x96\x47\xb9\x84\x22\x28\xc0\xd0\x05\x6e\x2b\x0f\x3c\x24\x73\x76\xe2\x7b\xee\xd6\x9e\x79\x51\x00\x05\xc2\xff\xa4\x28\xae\x2f\x29\x63\x12\x66\x51\x1e\x31\x4d\x22\x0c\x00\xb7\xf5\x88\x40\x95\x3a\xe9\x8e\xa0\x82\xc6\x7f\xa6\x9a\x3c\x97\xd3\xb4\xc8\x0b\x3b\xca\x5b\xa8\xa3\xc3\x10\xbd\x0a\x4a\x3d\xbe\x51\xb4\x8a\xe9\x68\x94\xe6\x51\x01\xaa\x15\x91\x91\xf6\xe0\xfe\x63\x53\x3c\x88\x95\xc7\x61\xa2\xe4\xb3\x5b\xd1\xfd\x0e\xda\x6f\xd1\xe7\x01\xab\xf2\x18\xdb\x08\x6d\x50\xdd\x30\x7a\x67\x6a\xeb\xe4\x09\x95\x06\x1d\x0e\xcb\x24\xca\x0b\x20\x11\x10\x36\xb1\xf0\x3b\xdf\x4c\x81\xfd\x77\xef\x86\x00\x4f\x4e\x45\x00\x76\xa4\xb1\x22\x8e\x8f\x3d\x00\xea\xb8\xb2\x09\xc3\x32\x0f\x63\xe4\x20\xe1\xb2\x1f\x55\x5c\xd7\x47\xbd\x48\x63\x1a\xaf\xa3\x99\x55\xa5\x7e\x6b\x19\xb1\x06\x41\xfc\x7c\x60\x32\x0e\x80\xb1\x61\xaf\x8c\x15\x75\xc0\x95\x46\x01\x41\xe2\x3e\x5a\xa9\x27\x5a\x3d\xc2\xcc\x81\x74\x46\x19\xc1\x27\xd9\x79\x12\xa6\x0b\x5f\x8a\xba\x58\x93\x5b\x58\x2e\x29\x10\x57\x02\x7a\x5a\x58\xef\x31\x95\xed\x1a\x45\x24\x99\xa6\x68\xd6\xb4\xe3\x42\x53\x85\x7a\xdc\xd5\xe0\x09\x05\xb3\x1d\x99\x8c\x80\xf4\x8f\x68\x57\xf4\xdb\x34\x3e\x68\x67\x39\x39\x56\x1a\x3e\x6f\x63\xd1\x48\x8e\x96\x8c\x83\xab\x26\x56\x2b\x1b\xd9\xb1\xd3\xf4\xe6\x2c\x98\x43\x5b\x12\x87\x0f\x5b\x02\x16\x28\x55\x4e\xfc\x61\x1c\xf9\x22\xb1\x43\xfb\x53\x34\xce\xaa\x17\x96\xc6\x6e\xa5\x86\x77\xbf\x49\x16\x74\xc5\xda\x64\xc6\x97\xbf\x99\x6d\xc3\x31\x5f\xb9\x2c\xc5\x19\x57\x4d\x5b\x7b\x06\x8d\x25\xdc\x39\x49\x7c\x96\xae\x05\xcc\x39\x98\xd7\x03\xa5\x92\x72\xd1\x25\x74\x92\x34\xe7\x14\x10\x9e\xfc\x8c\xc2\xb7\x21\xf0\x94\x26\xcc\x26\x8a\xde\x72\x94\x26\x2d\xef\x02\x41\x49\x83\xaf\x55\xe2\xc3\x26\xfd\x28\xb1\x16\xb0\x36\x81\x67\xa0\xe9\xdb\x41\x6f\xab\x87\x13\x81\xc1\x1a\x7f\x47\x3a\xda\x41\x9f\x42\xec\x7a\x7b\xac\x60\xfd\xc7\xf0\x4e\xf8\x8e\x19\x32\x96\x42\x5b\x43\xde\x9b\x74\xb2\xfb\x33\xef\x4f\xe9\x09\x61\x8d\x8e\x91\x2f\x83\xd7\xbe\xa5\x9a\xec\x66\x26\x1e\xe9\xf0\x7d\x4a\x2e\xc0\xd8\x6d\xd4\xfa\x8d\x4c\x62\xb7\xb7\xbe\xba\xe0\xd8\x63\x55\x96\x12\x2f\x83\x94\xce\x9b\x98\x3f\xbe\xa9\xdc\xaa\x8d\x4b\x81\x8a\x01\x3e\xe5\xa3\xda\x11\x8e\x2c\x7a\x29\x2b\x9f\x55\x70\x84\x24\x2a\x9a\x18\x98\x55\xfb\x39\xcf\xb6\x76\x03\xeb\x0f\x75\xe9\x6f\x8f\x15\x27\xdb\xa7\x75\x1c\x59\x35\x00\xf4\x0b\xff\xe3\x13\x13\xd5\x22\x75\x4c\x05\x20\xcc\xa7\x85\x53\xff\x16\xf9\xb5\xf0\x31\x41\xe9\x8a\x5d\xfe\x07\xf0\x0b\x95\xda\xdf\x92\xa3\xe3\xaa\x96\x04\xc0\x9a\x0f\x40\xa5\xc3\xad\xfe\x6a\x30\x08\x61\xf5\x72\xbb\x43\x27\x83\xe0\x69\x75\xbf\x60\xeb\xd7\xbe\xc2\x58\xa4\x13\x14\xb4\x3b\x6d\x6b\xb7\x9a\x99\xfc\x0f\xf6\x6f\x6b\x67\x97\x2e\x60\x31\xd1\x70\x35\x34\x0e\xa1\xbf\xc7\x23\xf4\xa7\x03\xa0\xfd\xed\x2c\x35\x43\x38\x7b\x42\x56\x43\x03\xf0\x59\x6c\x35\x0b\x07\xda\xf6\x50\x28\x60\x4e\xec\x35\x24\x70\xf9\xba\x09\x44\x13\x9b\x82\xa3\x52\x5e\xe6\x64\x3c\x64\xc9\x37\xb5\xf0\x2c\x97\x90\x26\x77\x38\x13\xf0\xb0\xf3\x75\xe3\x8b\x54\x3f\x32\x47\x0b\xc1\x71\x31\xba\x71\xfd\x36\x45\x55\x42\x63\xe0\xdd\xa5\x9d\x1d\x25\x2b\x3f\xdd\x2c\x41\x7d\xc9\xd6\xf4\x22\xae\x71\x60\x25\xbc\x16\x78\xc0\xc7\x6b\x2a\xed\xd2\x4d\xd3\x95\x7c\x9b\xaf\xc0\xcc\x92\x0e\x07\xd0\x8e\xb7\xc8\x34\x71\xe1\x0b\x16\x52\xcb\x04\x3a\xaf\xcf\x91\x2f\xde\x52\x08\x00\x9b\x17\xa6\x1b\x47\xf9\x60\x1b\x2d\x1b\x64\xbc\xb7\x28\x11\xfc\x3f\x61\xfc\x9e\x94\x01\xfc\xa9\xfa\x0e\xf6\xa0\xab\x8f\xed\x5e\x70\xc4\xa4\x9f\xc5\x28\x30\xb0\x59\xf1\xd2\x26\x8c\xfd\x97\x0f\x3a\x8c\x7d\x23\x71\x7e\x15\x33\xe4\xb9\xc5\xc1\xef\x34\x4a\x5d\x2b\xc6\xd9\x40\x00\x78\x90\xba\x26\x4e\x07\x47\x10\xb7\x70\x80\x57\xf6\x5b\x74\xd8\x30\xe9\x1f\x21\x57\x65\x27\xd0\x0e\xc3\x59\x7c\xb4\x4e\xbc\x1f\x2f\xab\xa4\xeb\x75\x75\x28\xfd\xd6\x58\xe5\x08\x00\x77\x82\x2d\x3b\x47\x66\x00\x26\xf5\x32\x3c\x64\xf8\xed\x6f\x53\x4c\x0e\x63\x79\x93\x36\x1f\x02\x84\x3f\x82\xd1\x12\x8e\x40\x7a\x47\x45\x9e\xbe\xcf\xcb\x69\x56\xe6\xd9\x09\xf7\x3d\x2f\x80\xac\x0d\x0f\xf1\xad\xa2\xde\x58\x48\xb3\x94\x6b\xf5\x75\xe7\x5a\x79\x1f\xf6\x45\x13\xc5\x9a\x64\xf8\x12\xac\x1c\xdf\x34\x6d\xcc\x65\x53\x79\x4a\xb3\xde\xef\x39\x87\x81\x43\x79\xed\x96\xca\x85\x1c\x45\xed\x04\x21\xfe\xbf\x6c\x4a\x8c\x0c\xcb\x62\x53\x27\x62\x8d\xb5\x7b\x7a\x15\x2c\xb6\xf3\x22\x5a\x8e\x45\x66\xd7\x29\xa4\x28\xb9\x14\x95\xa9\x2a\x4c\xd2\xa7\x6a\xb2\xa7\xf4\x52\x41\xdc\x91\x7a\x0e\xb8\x81\x7c\x33\x4c\x63\x38\x78\x0c\xb6\xa9\x01\x6f\x36\xaf\x6c\xda\xc6\x59\xd9\xef\x7b\x4d\x7e\xf8\xbd\x73\x9d\x96\xd2\x73\x77\x91\xdf\x7f\x7c\x77\x33\x6f\x64\x65\x5f\x9e\x9f\x7f\xf6\xf1\x6a\x51\x60\x45\x5d\x1a\x7b\x89\xe0\x23\x78\x4b\xa7\x95\x54\x4d\x2e\xa6\x9e\x3d\x23\xb8\x62\x97\xd1\x96\x87\x9b\x37\x88\xe6\xc6\xe9\x60\xf8\xe6\x87\xef\x07\xfe\x1c\x7c\x35\x50\x49\x4d\xce\xce\x63\x47\xa1\x76\x51\xf3\xf1\xe0\xd6\xb1\xf2\x83\x10\xbd\xb4\x9c\xdc\xe7\xcf\x02\x55\x57\x7a\x93\x26\x13\x3b\xed\x53\x55\xea\x66\x85\xb0\x9c\x12\xa3\x42\x8e\xec\xdb\x5a\xff\x7c\xac\x1c\xc8\x26\x65\x99\xb6\x8d\x09\x2f\xe5\x82\x00\x47\x54\xec\x30\xab\x27\x1d\xc9\x5a\x94\xf4\x22\x12\x09\x14\x30\x82\xf4\xb8\xd1\x00\x0a\x30\x4e\x35\xc7\x46\x87\xd0\xef\x20\xc8\xdb\x23\x34\x54\x52\x3e\x69\x50\x37\x67\x04\x94\xf3\xd7\x71\x46\x1f\x56\x4a\x03\x5a\x77\x26\x2f\xa2\x38\x7e\xd4\xeb\xf0\xde\xc2\xee\xc6\x7c\xdf\x09\x7c\x91\xfb\x34\x06\x1c\xab\xfa\x8a\x2a\x62\xbd\x19\xf8\x8e\xd7\xeb\xe4\x3e\xb9\xb6\xcd\x6a\x19\xc0\xfe\xdc\x82\x05\x41\x8e\xf1\x12\xd6\x84\x93\x22\xaf\xd6\x01\x96\xf1\x25\xac\x23\x54\x8d\x7e\x48\x36\x0b\x8f\x75\x4c\x0b\xb1\x5d\xc0\xd2\x13\x32\xc8\x46\xcd\xac\x3c\xea\x27\x06\x18\x56\x27\x11\xef\xdc\xcf\x2b\x8a\xb9\x24\x4e\x0d\x13\x2b\x89\xc8\x99\x7a\x1e\x24\xb9\xa4\xc1\x95\x46\x86\xff\x4a\x15\x14\xf3\x38\x5d\x63\x9d\x7c\x24\x00\x3f\x51\xcd\x75\x9f\x4c\x9d\xf4\x7b\xf7\x72\x07\x2d\x3a\x52\xe0\xe8\xfd\x8e\xea\x77\xfb\x1d\xc5\x88\xd4\xb3\x85\xcd\xa2\x94\xfa\x57\x68\x38\x1d\x43\x4b\xf5\x90\xc2\xd0\xb2\x39\xcb\xf0\x34\x29\x08\x50\x86\x57\xe4\xd2\x68\xf2\xf8\xa6\x49\x03\x68\xbd\x1c\x8d\x22\xac\x48\x87\x51\x75\xbe\xce\x34\xd1\xda\xf3\xf3\xa0\x0f\xa3\x60\x40\xb4\xf2\x7c\x33\x6e\x5d\xe0\x69\x98\xae\xd0\xdf\x61\x75\xdf\xc6\x9e\xe4\x1b\x05\xc2\xce\x4d\x92\x97\xd1\x36\x9a\x5b\xec\x52\xf0\xf0\x32\x7b\x83\xe2\xe7\x69\x75\xd4\x58\xbc\xad\x48\x37\xb8\xf4\x2c\x2b\xa3\xa9\xa5\x73\x68\xb2\x2c\x22\x61\x52\xb7\x34\xce\xa9\xa5\xd1\x40\x8d\x4d\x12\x6c\x51\x2c\x00\x3e\x27\xf7\xb8\x28\x4a\xb8\x97\xc6\xea\x99\xef\x07\xde\x39\x2a\xd2\x43\x11\xe2\x25\x1c\xd5\xad\x89\x62\xa0\x68\xb9\xba\x7c\x9a\x9b\x15\xa3\xc8\x34\x4e\x28\x26\x8f\x9b\xb0\x3e\x30\x67\x5b\x3b\x6a\xb4\xa2\x22\x4c\x87\xad\x6a\xbf\x09\x79\xb9\xc2\xcc\x9d\x6c\x3a\x3f\x52\x23\xa7\x1b\xd2\x95\x30\x25\x7c\xad\x0a\x20\xdd\x32\x8f\x12\xd2\x9b\x79\x98\x36\xaa\x80\x92\xaa\xed\x28\x20\x40\x3f\xef\x77\x54\x28\x04\x7d\x6e\x27\xf7\x5a\xed\x65\xa4\xc5\x0e\x63\xd2\x51\x65\xbd\x82\x2d\x8f\x59\xe2\x90\xdc\x35\x8f\x56\x13\xcb\xff\x82\x0d\x27\x1c\x42\xba\x6c\x55\x1d\x49\x7c\x5d\x23\x8c\xb1\x85\x39\x44\xc8\x09\x57\x65\xd4\x9c\xc2\x95\xa7\x23\x7a\x32\x2d\xc7\x9d\xb5\x81\xd8\xb1\x86\xaf\x90\xba\x64\x03\x15\x48\x68\xb2\x34\x8e\x12\x23\x0d\x39\x88\x27\x01\xa1\xc1\xea\x7c\x47\x23\xff\x1f\x9e\xec\x70\x9b\xf9\xa9\xde\x76\x0d\x89\x27\x44\x96\x43\x07\x2e\xcd\xbb\x1b\x8c\x15\xd9\x99\xef\x3d\xd1\xd1\x80\xd2\x6a\x06\xf0\xde\x48\xa3\xc3\x34\xcf\xa2\xae\xec\x38\x84\x1c\x33\xec\xbf\xc6\xe9\x89\xe4\xc5\x59\xb5\xd5\x4c\x58\x44\x69\xb2\x9d\x3c\x6b\xc7\x47\xea\x02\x84\xff\x0a\x0e\x22\x36\xc4\x0d\x25\x6e\x71\x39\xf0\xf1\xdc\x7f\x73\x85\x1c\x6b\xfe\x74\xa0\x49\xca\x5a\x4e\x19\xf2\x5a\xa0\x38\x74\xae\x04\x4a\x95\xe2\x5b\x9f\x01\xea\x8c\x25\x85\x59\x03\x72\x0a\x47\x8f\xf4\x36\x85\x03\x33\xec\xda\x2c\x36\x11\xf3\x17\xc3\x41\x7c\x57\xc5\xb4\xef\xba\x0a\x59\x37\x35\x85\x93\x2a\x81\xa7\xcb\x9c\x43\x7c\xa3\x68\x1a\x86\x69\x91\x66\xe1\x7a\x18\x73\xa7\x29\x16\xec\x8f\xf1\xe7\x7c\xe3\x60\xb7\x69\xaf\xc7\x31\x12\x4a\xe6\xf7\xe8\xe7\xf9\x5a\xa5\x3e\x6d\xcf\xc6\x43\x93\x20\x95\x29\x7c\x57\xb5\x14\x8e\x82\x5e\x64\xe9\x68\xb0\xae\x24\x12\x4e\x2a\xaa\xde\x93\x2a\x87\x3b\x8c\xb2\x2c\xcd\x54\xd9\xaf\xde\xf7\xbf\x79\x74\xf7\x2c\xb6\x97\x63\x33\xfc\x9b\x50\x95\x0e\xb6\x12\x46\xce\x3b\x91\xb3\xa0\xc6\x33\xa4\x74\x41\xd2\x6c\x65\xcd\xda\x15\xea\xdc\xc7\x46\x45\x61\x93\xaf\x6b\x61\x4b\x2f\x83\x06\x13\x16\x33\x1b\x4d\x24\xe9\x3e\xa2\x97\x84\x8b\x75\x53\x35\x47\xbc\x43\x2b\x5e\x58\x9d\xd4\xa1\x1d\xe5\xa0\xd5\x63\xff\x0f\xde\x05\x02\xa7\x1b\xca\x9a\x1f\xd6\x02\xde\xd1\xaa\x89\x73\xca\x13\x8b\xe2\x58\xcb\x51\x9e\x9d\xa0\x55\x8e\x09\x86\x6c\x0f\x5f\xab\xce\x09\x2a\x1b\xcc\xd2\x9e\xc1\x7a\x84\x42\xa6\xe3\x25\x75\xc4\xb8\x5b\x49\x8e\x55\x98\x78\x94\xa3\x50\x7d\x41\x42\x54\x0d\xd2\x90\x50\xbd\x9e\xc0\xb4\xfd\x2a\x2c\xe3\x22\x1a\x9a\xc2\xc6\xeb\x73\x3e\x3b\x77\x46\x65\x35\xce\xd2\x7e\xc3\x20\x7f\x88\x10\x8c\xff\x01\xa6\x95\xc9\xa0\x03\x89\xc1\x06\x69\x1c\x79\x64\x01\x9e\xfe\x35\x1a\x67\xbe\x6e\xe2\xa0\x18\x99\x22\x8b\x52\xad\x9c\x7b\x44\x0b\x1a\xa9\x9a\x58\x96\x0a\x5b\x09\x6a\x83\x6f\x92\x31\xe1\x6b\x45\xa1\x3e\x4c\xf3\xe2\xb1\x96\x8b\x17\xef\x52\x7e\x40\x28\x37\xc9\x52\xb8\x1a\xe1\x9e\x45\x9f\xcd\xaa\x2c\xb2\x74\xd4\x28\xb6\x5e\x68\xdb\xe1\x05\x78\x43\x0b\x03\xbe\x26\x35\xbd\xa4\x10\xc1\x33\x13\x25\xc4\x7c\x42\x87\x10\xc7\xb1\x84\x60\x37\x7f\xae\x43\x43\x8a\x93\xfe\xe4\xd8\x6b\x92\x5d\x87\xdf\x85\xb8\xf5\x92\xda\xb6\xb1\x29\x7b\x36\x43\x5e\x16\xf9\xd0\x99\x8e\xa7\xf3\x03\x6a\x1f\x07\x2d\xcc\xa3\xd4\x09\x36\x7b\x62\xe4\x6c\xd8\x98\x7d\x43\xbd\xb4\xc4\x5b\xf6\x6d\x1a\xf6\x90\x0d\xcb\x22\x5a\xb5\x0f\xb6\x1c\xd9\xd7\x19\x18\x5c\xd4\x0b\x67\x68\x1d\x22\x50\x7f\x99\x06\x0b\x4b\x8d\x65\xca\x30\xbe\x4f\x10\xea\x4a\xb5\x32\x3d\xeb\xe9\xbb\x97\xe6\x79\x45\x3f\x30\x11\x63\x3a\x28\x7b\x3d\x89\x61\x11\x1f\x9d\xd2\x74\x99\x5b\x81\xac\x44\x34\x70\x53\xd1\x0e\xe5\xe9\xd0\x16\x11\xd3\x13\x30\x40\x27\xf0\xd0\xdb\xe3\xe3\x69\x9e\x63\xbe\x51\xeb\x27\x4c\xe3\x68\x46\x35\x0d\xdd\xac\x49\x10\xa9\x76\x9c\x23\x53\xf6\xef\xcb\x07\xdb\xb1\xc9\xb9\xa4\xc2\x78\x31\xa5\xf2\x70\x61\x6a\x26\xf6\xee\x25\xcd\x75\xc3\xf0\x23\x21\x4c\xa5\xf5\x23\x79\x66\x4d\x19\xd7\x4d\x33\x33\xe0\xb3\x8b\xa9\x1f\xc7\x6a\x39\xbc\xe7\xb2\x41\xc4\x12\xcd\xb5\x53\x18\xdf\xeb\x94\x00\x85\xc1\x61\xa2\x01\x6c\xed\x4f\xa7\x3c\x75\xf0\xa0\xd9\x9c\x51\x58\x58\x14\x67\x55\xb3\xbc\xd7\xd5\x67\xac\xb2\xcd\x1e\xac\x9d\xcd\x9e\x2a\x6d\xec\xa2\x94\xc7\xda\xf0\x20\x44\xae\x89\x16\x39\x56\x01\x98\x45\x5d\x30\xee\x0b\xbe\x17\xea\x3b\xae\xc1\xdd\xcc\xd3\xe5\x62\xa6\xd6\x02\xea\x67\x8b\x1b\x50\xa5\xeb\xcc\x97\xf2\xac\x1d\x3e\xe4\xab\x82\x33\x13\xfa\xbc\x52\x66\x10\x9f\x1d\x60\x47\xd5\x9f\xb2\xdf\xff\x8a\x73\x4d\xd1\x78\xa0\x2a\xde\x42\xb5\xc4\x4d\x77\xb4\xb8\xff\xf2\xe7\x3a\x7e\x1f\xf7\xb3\x68\xc4\xd2\x0b\x0c\xaa\xeb\xf8\x0a\xdd\x96\x89\x2a\x71\x48\x7a\xf2\x41\x7a\x42\xc5\xb8\x24\xad\x80\x80\x0d\x0b\xfb\x12\x99\x1a\x4c\x31\xf3\x8e\xe0\xaf\xd8\x6b\x97\x18\x15\xeb\x07\xaf\xf5\x9e\x02\xb3\x7f\x5b\x9d\x0e\x69\x09\xf6\x3f\x26\xe2\x82\xbf\xf1\x53\xe5\x7b\xfc\x54\x55\xd9\x56\x12\x5a\x6f\x2d\xa5\xc8\x44\x23\x27\xea\x4c\xbb\x14\x4e\x2b\x1b\x65\x51\x2e\x65\x7d\x47\x71\xba\x28\x3b\x11\x9d\xd4\x48\x21\xfc\x9b\x06\x2d\x95\x7d\xed\x2c\x0a\x07\xc3\x34\xe9\xb5\xb4\x7a\x27\x03\xc3\x04\x06\xb7\x53\xd1\x94\xda\x5f\x24\x72\x54\x44\x3d\xd7\x40\x5e\x00\xdb\x0e\xdb\x00\x27\xf2\xbf\x86\x70\x82\x70\xab\xd2\x34\xe2\x48\xfc\x64\xdc\x3a\x28\x55\xf1\xbf\x20\xf7\x9e\xe1\x23\x58\x5d\xf0\xef\xcf\xe1\x00\xc1\x1a\xba\x13\xb4\xbe\xba\xe0\xd9\x6b\x2b\x0f\x5c\x40\xad\xc8\x26\x23\xcf\xfc\x18\x65\xb1\x81\x21\x98\xa1\x1d\xa0\xd4\xc9\x9f\xf5\x9f\xaf\x02\x07\x64\x07\xee\x8c\x15\xd8\xef\xbb\x63\x4f\xee\xc2\x8c\x27\x58\xcf\x6f\x62\x81\x60\x9a\x2e\x51\xb2\x04\x81\xcf\x5d\xca\x8c\x31\x93\x26\xaf\x02\x04\x97\xff\x16\x4b\x07\xa5\xaa\x0f\x14\x83\xc4\x71\x42\xf5\x22\xbf\x74\x9d\x80\x50\x80\xc8\x9c\xc2\x19\x05\xf8\xdb\xe1\x71\xeb\xa9\xa7\xf8\x38\xf8\xef\x02\xc5\x05\xfb\x73\x1d\x9f\x82\xbf\x8a\x12\xbf\xf0\x78\x7a\x35\x89\xff\x33\xa8\x0c\x13\x27\x87\x15\x62\x65\xaf\x01\x99\x95\xeb\x86\xad\x46\x9b\x6f\x1a\xa5\x3d\x13\x6b\x90\x2a\xd0\x02\x88\x92\x62\x7d\x52\x07\x70\xbd\x28\xac\x36\x96\x55\xa1\x36\xaa\xae\x35\x85\x3a\xf1\x44\x25\x1e\x50\x72\xfc\x74\x32\x61\xcb\x5f\x55\x3a\x99\x6c\x57\x59\xb9\x4d\x75\x35\xf5\x6c\x5c\x98\x39\x45\xd9\x74\x57\x57\x0f\x2e\x8f\x7d\x69\x96\x79\x2d\x19\x38\xaa\xa4\xa1\x6e\x35\x35\xca\xda\x9c\x08\x74\xc0\xb4\x25\x25\xe3\x96\x93\x9b\x3d\xec\x9b\x39\x4c\xd2\xb7\x0f\xd0\x03\x60\x08\x2f\x07\x5a\x51\x42\xb7\xc4\x5f\x56\x85\xb6\x97\x6b\x6d\x36\x3f\x1c\xfb\x0e\x84\xff\x55\x2b\xa9\xfb\xbe\xbe\x82\x70\x0a\xd9\xac\x87\x43\xec\x98\x78\x6d\x0a\x64\x82\xe1\x2b\x5c\xc7\x01\x40\x46\xef\xaf\x3f\xdf\xd1\x9a\xa2\x09\x49\x7f\x79\xed\xd7\x40\xb1\x87\xe8\x46\x1d\x02\x0c\xd8\xbc\x78\xc2\xab\xd7\xcd\xd1\x9e\x92\x7d\x50\x6d\x56\x00\x6f\x7e\xa8\x0a\x20\x2c\x71\x01\x9b\xf7\x7f\x61\xe3\x62\x22\x1e\x9c\x28\xba\xaf\x56\xa7\x5a\xfa\x4c\x8f\x1c\x78\x31\xcd\x7f\x81\x15\x8e\x59\xe1\x5e\x54\xf0\x2a\x3c\x4c\xae\x90\x23\x31\xae\xc6\x57\x74\x13\xfd\xfc\x7c\x17\x13\xcc\xe2\x9d\x9a\xee\xf2\x34\x46\x04\x53\xb2\xd5\x53\x87\xfe\xc6\x2e\xd4\xd2\x60\x1d\xae\x4e\xad\x83\xa5\xf9\x36\xd1\x5b\x4a\x81\x00\xc5\xcf\x57\xe1\x66\xf1\x8d\x16\xbd\x24\xaa\xe2\x81\xa4\xf9\x25\x34\xa1\xf7\x90\x98\x45\x09\x50\xc5\x69\x5e\xb9\x12\x2d\xaf\xcc\xc2\x38\x67\xbe\x71\x81\xea\xaa\xe9\x97\x24\xaa\x2a\x4d\x8b\x84\xbe\x7c\x76\xe3\x94\xda\x20\x9f\xeb\x78\xcf\x68\x47\x03\x43\xd0\xfe\x76\x39\xca\xab\x97\x19\x52\x9e\x1c\xc3\x0a\xb2\x0e\x94\x5a\xd8\x02\x4a\x7e\x54\x14\x1f\xfa\x59\xd9\xeb\x13\x7b\x11\xce\x15\xd7\x96\xbd\x24\x09\x41\xec\x6f\x59\x86\x0d\x43\x38\x28\x93\x5e\x66\x05\xed\x8c\xbd\x7d\x1a\x8b\x9c\x6f\xc6\x5f\x50\x5e\x71\x98\x95\x45\x44\x63\x1e\x43\x1c\x52\x64\xc6\x69\xaa\x44\x8c\x5c\x9e\x6f\x98\x26\x85\xed\x45\x39\x37\xf1\xe0\x30\xe1\x70\x82\x6f\xa6\xd2\x40\x07\x9e\x6b\xe7\x65\x18\x56\xdb\x1b\x66\xcd\x29\xa7\x2a\xca\x04\xd5\x64\x59\xc6\xc4\x75\x34\xab\x7c\xb6\x8b\x81\xdf\x63\xff\xe4\xa2\xa2\xae\x3e\xa6\x2d\xdc\x51\xd5\x6c\xbb\x9c\x12\x7c\x94\xd5\x4d\x9c\x94\x98\x27\xf2\x3a\xeb\xe6\x7b\x18\xc5\x71\x0e\x2c\x3c\x02\xaa\xad\x60\xb8\x15\xf7\x1a\x96\x83\xff\x09\x5c\x12\x38\x3b\x6e\x29\x8a\x9b\xa3\x35\xae\x9a\x3c\x7d\xd2\x57\x9b\x36\xc6\xaa\xf1\x08\x72\x3e\x48\x3b\x3e\x38\xf1\x55\x53\x6e\x39\x94\x1a\x9f\x4b\x12\xfe\xe4\x89\x8e\xe2\xf6\xe7\x32\x92\xe8\x58\x2a\x2a\xed\xd6\x84\xfc\x01\x55\x30\x14\xc5\xec\x9d\x93\xea\xb0\x84\xef\x7c\x92\xb6\x3f\x50\x10\x37\x83\xca\x1d\x70\x05\x15\x55\x98\x1c\xfb\x02\xf5\xb5\x40\xb3\x43\x78\x3a\xfe\x47\x3a\xaa\xb1\xf3\x54\xbd\x5f\xe0\xb3\x1a\x1b\xec\xd0\x66\x7d\x57\x5e\x83\x09\xbb\xab\xc4\x4c\xb6\x22\xd0\xe2\xb3\xdb\xd5\x80\x1c\x73\x5c\x28\x3d\x02\x2c\xc5\x43\xa3\x2f\xb2\x3c\x0e\x0d\x96\xa5\xc3\x94\x20\x87\x98\x36\x94\x7e\x38\x2f\x8c\x58\xbc\x85\x11\xc5\xd6\x3b\xed\x2c\x7e\x15\x27\x14\xe9\x88\xd6\x35\x6c\x2d\x4c\x17\x5f\x4f\x7c\x99\xa1\x1b\xa7\x69\x4f\xed\x6e\x81\x1c\x78\xc0\x2a\x62\x0c\x26\xdb\x50\xc9\xa2\xbe\x4d\x6c\x11\x85\x28\x7c\x39\xc4\x74\x35\x92\x7c\xa3\x8a\xbb\xe1\x20\x1d\x6d\xe2\x79\x5d\x5c\xd4\x3c\xaf\x4e\x81\x39\x36\xf9\x00\xc4\x2d\x5c\xba\x45\xf9\x47\xea\xb8\x0d\x6c\x5b\xf9\x20\x0d\x57\x6c\x6f\xd6\xb7\xb7\xff\xd9\x58\xf3\x77\xab\xce\xa4\x0b\xba\x31\xf4\x7e\x03\x8b\x5d\x3b\xb3\x71\x64\x97\xc9\x93\x40\x39\x76\x03\x3e\x81\x83\x1a\x28\xec\x8f\x00\xab\x46\x26\x17\x44\x9a\x40\x2e\x68\x55\x38\x3f\xda\xad\xff\x2f\x74\x1c\x49\xdc\xff\xef\x6f\x77\x14\x72\xfe\x14\x1c\x52\x38\x1e\x2c\xe3\x8f\xb5\xc3\xb3\x8d\xe1\x67\x42\x03\x1c\x66\xb3\x13\x5f\xbb\x83\x67\x8f\x23\x12\xda\x9f\xcc\x29\x30\xa9\xf1\x38\xd1\x4e\x82\x37\x7d\xbe\x49\x41\x27\x8b\xf2\x15\x48\xf6\xa9\x4a\xaf\x2b\xb5\xd2\x56\x12\x45\x40\x1f\x5e\x6d\xe9\x4c\xfb\x7d\xfb\x58\xd2\xdd\x4d\xe3\xc7\x63\x9f\xa2\xfc\x38\x78\x58\x97\x88\xd6\x89\xa2\x1a\xae\xe6\x6c\x87\xfc\x51\x38\xd9\x5b\x70\xc2\xe2\x6d\x7f\x3a\xf6\x5d\x58\x1b\x38\xc6\xf9\xaf\x00\x8d\xd6\x42\x47\xfc\x57\x4a\xb0\xea\x94\xa6\x6d\x39\xab\x73\x86\x9f\x50\x04\xee\x58\x4e\x1d\x45\xc4\x5f\x69\xb9\x9c\x35\x93\xd9\x5a\xa5\x50\x1f\xe3\x58\x60\xf0\x03\xb6\x75\x94\x43\x7c\x59\x91\xb6\x11\xe3\xba\x21\xc2\x48\xc5\x8f\xf5\x1b\x8a\xa6\xf1\x37\x14\xd6\x38\x8c\xb2\xb0\x8c\x99\x1c\x4e\x34\xc5\x0f\x2b\x7e\xe1\x9b\xaa\x71\xf1\x42\x8d\x70\x36\xca\xd2\x75\xae\x7e\x3a\xba\xb3\x25\xaf\x70\xb8\xb9\x6a\x5c\xed\x9f\x35\x6b\x0b\x62\x1b\x9c\x99\xea\xa6\x77\x6e\xb8\xe2\xde\x6a\x40\xeb\xf6\xcb\x75\x44\xce\x0c\x7e\xc6\x32\x15\x24\x74\x93\xb8\x7d\x39\xd2\xa4\xac\x2c\x75\x8e\x49\x12\xdd\xf3\xcd\xa8\x5b\xaa\x12\x0c\xb2\x28\xa7\x0a\xaa\xd0\x11\x60\xc7\xbd\xa3\xbb\x09\xdf\x99\xfa\xe8\xf3\xf3\x8b\x20\x47\x18\x0e\x7d\xad\x1e\x27\xc7\x07\xf4\x6e\x7c\xad\x52\xbe\x86\x84\x23\x68\xf8\x1d\x75\xde\xde\xbd\x8e\x3a\xcf\x83\xa1\x49\xca\x9a\xc4\x87\x5a\x4e\x23\xea\xb4\x6a\x0b\x3f\xad\xa6\x67\x18\x25\x69\x16\x15\xeb\xd4\x81\x2d\x6a\x6e\x95\x43\x8b\x9d\x04\xab\x2b\xb4\x46\xd5\xd9\x2a\x7b\xd5\xbb\x49\xdf\xa1\xd0\x51\xac\x31\x1d\xc6\x2c\xf6\x88\xdd\xcd\xdf\xaa\x14\x03\xff\xdd\x77\x82\xcd\x3a\x17\x84\x6a\x9b\xf1\xc1\x2d\xc0\x4b\x48\xe8\x7c\x44\x3f\xc0\x2c\x0d\x53\x26\x72\xcf\x62\xdb\xc4\x5d\xe9\x7b\x46\x98\xcd\xee\x36\xdf\x04\x9e\x18\x6b\x98\xd6\xa8\x8f\xb9\xe5\x93\x6f\xa6\xd8\x95\xf7\x2c\xb6\x97\xd3\x32\xe9\x19\xc7\xf1\xfb\x75\x0e\x65\xff\x1d\xd6\x13\xdf\x4c\xe1\x99\xe9\x83\x59\xe8\x48\xa8\xa4\x67\xc5\x03\xb2\x2e\x4e\xf9\x96\x4f\x93\x53\x15\x9a\x5c\xea\xa2\x08\xb9\xb9\x6c\xc8\x37\x4d\xde\x5f\x6c\x57\x6d\x66\xfa\x16\xfd\x59\x48\xeb\x00\x2b\xc0\xd7\xcd\x43\x16\xd9\x84\xb3\x2b\x48\xc7\x71\xa8\xe9\x22\x30\x27\x68\x73\xaa\x09\xe9\x94\xd9\x3c\x65\x11\x32\xad\x2d\x25\xa5\xce\x86\x01\x19\x46\x49\x34\xe4\xde\x30\x07\x8e\x71\x2e\xc6\x27\x4d\x39\x4f\x6b\xf2\xa8\x5a\xf2\xde\xbf\x43\xfa\x59\x70\x04\xd3\xf0\x97\x85\xf6\xda\x20\x1a\xe5\x66\xcd\xf6\x14\x8b\x3f\x97\x64\x58\xfa\x52\x75\xcb\xfd\x65\x13\xe0\xb0\x32\x03\x31\xb5\xbb\x39\x4b\x78\x46\x87\x6f\x67\x1a\xb3\x0a\x3d\x53\x18\xf0\xb7\xb3\xc4\x25\x56\x08\xc3\xe2\xaa\xe1\xdc\xd8\xda\xd9\xa5\x62\xd2\xe5\x98\x9c\x2e\xe2\x41\x16\x49\x2e\x9f\xd3\xba\x81\xe0\x13\x37\x38\xdb\xe0\xcb\xdf\x52\x7c\xbb\xe7\x5c\xce\x81\x78\x2b\x0a\xe3\x88\x7d\x70\x0e\x3c\x30\xf1\x98\xfd\x07\x3a\xea\x0b\x0f\x35\x92\x5f\xa4\xab\x36\x1b\x90\x3a\xaa\x43\x5e\x5f\xd3\xf9\x07\x6c\x7a\xa0\x26\xdf\x6a\x22\xea\xfd\x62\xbb\x67\x87\xd6\x24\x69\xa6\x19\x26\x4e\x29\x86\x89\x53\x1a\x90\x20\xdc\x8c\x22\x1b\xf4\x71\xa0\xc8\x91\x3e\xae\xa1\x36\x32\x9b\xec\xf0\x34\x58\xaf\x8c\x6b\x40\x3a\xcf\x32\x7f\x13\x16\x47\xda\xd1\x15\x58\x13\x8c\xb6\x78\xf6\xad\xf0\x50\xb1\x04\xae\xe2\x47\x91\x86\x7e\x47\x3b\xb2\xdf\xa3\x04\x07\x52\x3d\xef\xd7\x32\x72\x67\x5c\xfe\xbc\x9b\x66\x3d\x18\xe5\x7d\xbe\x16\xee\x12\x44\x77\x14\x59\x78\x98\x0e\x47\xb6\x88\x8a\x68\x15\xe9\x24\xf7\x1b\x5f\x3e\xc8\xc5\xa9\x53\x4a\xe8\xe4\xa8\x52\x3b\x30\xa3\x51\x66\xc3\x88\x8c\x10\x79\x42\x42\x4c\xa6\xcb\xc6\x38\xfe\x35\x67\x8e\x30\x7e\xea\xae\x17\x9b\x99\x82\xeb\xb4\x2e\xb6\xa8\xbe\x44\x26\x67\xf3\xb6\x5d\x9a\xaf\xee\x4c\x9c\xf6\x51\x78\x10\x16\x65\x7f\x96\x1c\x57\xdd\x76\x6b\x69\xb6\x62\xb3\x7c\xa7\x47\x92\x5d\x46\xd6\x04\x51\xe6\x51\x5d\xd5\xba\xa2\xfa\x86\x7e\x86\x43\x83\xff\x2a\xd0\xfd\x12\xe4\xe0\x89\xd2\x5e\x4d\x08\xca\x53\x8b\x33\x2d\xad\x03\x23\x79\xc3\xfc\x6e\xa0\x11\xcf\x0d\x6a\x91\xd1\x70\x94\xe6\x79\xd4\x8d\xd1\x09\xa4\xf9\xc4\xf8\xda\xb7\xdd\x9b\xf2\xd0\x8c\x4a\xab\x1e\xae\xfe\x6a\x03\xbb\x51\x28\xbc\x36\xfb\x21\x07\x9e\x6b\xf7\xd3\x54\xf7\xc1\x9c\x0b\xb4\x87\xec\x23\x97\x51\x54\x90\x64\x29\xbd\xbb\xc3\xb8\x55\xbf\x26\xc7\xb7\x4f\x78\x0e\x6d\xf1\xa0\x82\x8b\x6f\x9d\xf8\x8e\xc4\x73\x38\x2c\xb0\x98\xb7\x4d\x54\x59\x07\x6a\x4e\x4e\xa9\xc0\xf5\x15\x6d\xe8\x4a\xc4\xcf\x77\x94\x9b\xff\xb9\x4e\x03\x73\x7d\xcf\x0c\x4d\xdf\x1d\x6b\x8c\xa0\xa3\xf1\x12\x34\x9d\x50\x92\x74\x6d\x62\x97\xa3\x30\x32\x59\x24\x81\x25\xce\x99\xfb\x8a\x84\xe7\xbe\x4b\x3c\x2e\x5b\xe9\x1b\x76\x31\xba\xea\x7d\x6a\x02\xa8\x9b\x30\x4b\xf3\xbc\x55\xc3\x8f\xee\x71\xd7\x8e\xb1\x36\x36\x65\x7f\x20\x8c\x2b\x0e\x6b\xf0\xbc\x6f\x2c\x6a\x60\xf7\x26\xa2\xba\x59\xcf\x5e\xd9\x52\x28\x55\xf4\x02\xc3\x8c\xfe\x09\x56\xb4\x64\xb7\x77\x2a\x8d\xac\xde\x0e\x25\xb1\xc2\xbb\x4c\xa2\x3f\x4d\x3a\x7f\x0a\x76\x1e\x2d\xc4\x57\x54\x37\x3f\xa0\x0b\xcc\x3b\xa8\x1a\x11\x98\x69\x56\x4c\x06\x3d\x00\x73\x96\x01\xaf\x24\xf1\x80\xaf\x59\x9c\x98\xc2\x5f\x91\xec\x51\xd2\xaf\x39\xac\x27\xb5\xc3\x7a\x52\xad\xb7\x28\x8e\x1f\xc3\x1f\xc2\xfa\x7e\x8c\xfd\x26\x62\x52\xd5\xa3\xe1\x31\x7f\x4a\x1a\xcb\x38\x38\x40\xce\x22\xb9\x20\x1a\x0b\x66\x02\x45\xf6\x87\x4b\x18\x34\x98\x4e\x3e\xc5\x57\x6b\x8f\x8c\x55\xd1\xfb\xac\x97\xe9\xfc\x1a\xb7\x40\x61\xf9\x3c\x38\xa1\x92\x8d\xa4\xd4\xaa\x37\xc6\x49\xf5\x1a\x6c\x23\x36\x05\xa8\x3c\x30\xdc\x3b\xa6\xd8\x27\xf6\x2c\xb6\x0b\xb3\x62\xd3\xe5\x65\x02\xcf\xc0\xed\xfd\x50\x09\x22\x7f\xa8\x2a\xeb\x61\x5a\x8e\xd2\x64\xa6\xb5\xdb\xc9\xde\xd1\x8c\xa1\x08\xf9\x11\xbd\x0c\x66\xf2\xa3\xf1\x4e\x67\x16\x87\x65\x8f\x80\x1e\x18\x30\x28\xe2\x62\xfd\x0c\xc6\x0a\xa2\x7b\x56\xb1\xa2\x5d\x9d\x72\x31\xf6\xee\x6d\xe7\x6b\x51\x2e\x40\x2f\x6e\x95\x51\x8a\x16\x5c\xc4\x84\x1b\x7e\x67\x0a\x85\xf9\xd5\x85\x76\xba\x06\xf8\x9f\xec\x10\x1d\xaf\xf9\x73\xaa\x6f\xb2\x9e\x4d\x6c\xe1\xa4\xac\x05\xe2\x5c\x8d\x0e\x5f\x2b\xb5\x40\x22\x06\xc8\xe7\x7c\x63\xd3\xb9\xc0\x57\xea\xb9\x76\xae\x85\xe8\x65\x07\xaa\xde\xa9\x3f\x6c\xc2\x07\xe5\x69\x6c\x32\xc5\x3d\xf5\x81\x2a\x09\x7c\x50\x53\xd2\xce\xf3\x28\x26\x82\x33\x9c\xa8\x50\x5b\x42\x72\xfc\xb6\xf6\x0d\x80\x7b\x90\x62\x8d\x2a\xdc\xdd\x68\x90\xc2\x00\xb9\x5e\x8d\xab\xfa\x62\x50\x8b\x45\xd5\xfe\x48\xf2\x47\xe8\xeb\xf0\x74\x3b\x27\xea\x38\x9a\x9b\x78\x6b\xf1\xc4\x44\xe7\xcc\x1e\xea\xb4\x0e\x2a\xb5\xb4\xe7\xe7\x79\x15\xed\x44\x95\x19\x01\xf6\x31\x5d\x90\x9d\x9b\xb8\x98\x6b\xf4\x8b\xd8\x45\x94\x62\xf8\xc2\x2f\x75\x94\x16\xeb\xd3\x1d\x78\x2a\xee\x45\xab\x7d\xe4\xf2\x3e\x7b\x04\xd7\xab\xcf\xed\x30\x36\x65\x2f\x4a\x67\xbc\xf5\xe5\x7c\x8f\xd4\x41\xaa\xdf\x65\x4b\x36\x55\x55\x20\x76\x88\xb2\xfb\xa2\x0d\x8b\x19\x0f\xa7\x38\xaf\xb0\x97\x7f\x00\x7b\x21\xa9\xbb\x1d\x2e\xf1\xb8\x62\x15\x9c\xe7\x2d\xed\x7a\xbd\xa5\x12\xd6\xdd\xcc\xda\x9e\xd4\x2c\xa4\xae\xa7\x8b\x7c\x8d\x62\x86\x03\xcb\xd5\x37\x06\x08\xa8\xec\xe1\x2b\xba\x25\xed\xa4\xee\xdc\x4d\x59\x78\x4e\x70\xf7\x9a\xd1\xf1\xbc\xcb\x64\x96\x09\x53\x97\xec\x5e\x70\xcf\xde\x72\xfa\x84\x68\xc5\x62\x9a\xe4\x89\x2f\xed\x91\xc8\xef\x0e\xc5\x9c\xf4\x1d\x24\x85\xb9\x1f\x5c\x49\x4e\x6e\x9d\xd4\xe8\x68\xaa\xa5\xa1\x3a\xd8\x64\x99\x5d\xd7\x6a\xda\x1f\x8c\xbd\x98\xe6\x23\x0a\xeb\x83\x9e\x2d\x56\x0a\x57\x8a\x5d\x97\xa7\xe2\x9e\xdd\xbb\xdb\x76\xd5\xc4\xa5\xe1\xa6\x68\x81\xc2\x29\xa6\xba\x8f\x74\x43\x54\x62\xb3\xbe\x2d\xa2\x70\xc6\x23\x1f\xbe\x85\x71\x45\x72\xec\x44\xa0\x6b\x95\x9b\xcf\x9f\x6a\xd1\x98\x84\x39\xae\x6b\x21\x3b\x37\x4d\x51\x0a\x02\x30\xab\x2d\xf4\x3e\x78\x04\x9d\x58\xea\x65\xa6\xdf\x17\x51\x7a\xc4\x46\x97\x14\xfb\xde\xcf\x02\x4d\xf8\x8f\xf5\x0c\xbf\xe8\x68\x13\x5d\xbe\x09\xbf\x51\x9a\x28\x71\xa9\x18\xd7\x44\xe4\x1a\x79\x2f\x36\xc1\xd2\x4c\x18\xc6\x26\xe2\xf6\x3d\x21\x97\xf3\x10\xaf\xb3\x81\x42\x32\x1a\x53\x84\x83\xa8\xa5\xfa\x71\xce\x29\xe4\xef\xb9\x26\xa5\x65\x13\x39\xaa\x2f\x9c\x78\xb0\x6e\x08\x00\xd8\x13\x40\x90\x7f\xc3\xf3\xbb\x16\xd4\xd3\x81\x58\x14\xbe\xef\x47\x70\xb0\xa5\xe9\xd3\x73\x86\xdf\x74\xfe\xd7\xd0\x64\x49\xd4\xd2\xb0\x0d\x9a\x0e\xc1\x73\x34\x14\xc2\x20\x22\x26\xe3\x25\x5a\x16\xb5\xa4\x66\xfb\x33\x4a\x15\x6b\x36\xca\x97\x23\x1b\xf7\xc0\x79\x80\x23\xff\x36\xf6\x83\x98\xa7\x96\xe2\x4f\xd5\x91\xe0\x7f\xf1\x1f\xc1\xe7\x03\x72\x97\x6b\x63\x7c\xa3\x88\xcd\x87\xe9\x6a\x94\xf4\xe7\x3c\x63\xfc\xc3\x1d\x55\xdc\x40\x34\x88\xc1\x39\xa3\x98\x1e\x2e\x93\x37\x23\x10\xed\x86\xb4\x47\x3e\x4c\xd3\x62\xa0\x32\x48\x5b\x69\x42\xf8\x7a\xa2\x34\xd3\x06\x51\x38\xc0\x76\x47\x5c\x73\x9f\xa0\x0c\x58\x9b\x2c\x92\x80\xd2\xd2\xf9\x71\x8d\x9d\xd3\x29\x95\xdf\x0b\x94\xd8\xcd\x29\xd5\x22\x3c\x0b\xdb\x5f\x63\x8a\xc0\x8a\xb8\x12\x28\x71\x19\x46\xdf\xc1\x06\xdf\x0d\xb4\xd6\x7c\xd2\xb3\xb1\xc1\x42\x14\x5c\xa4\xc6\x4b\x36\x55\x34\x84\xd7\xc8\x9d\xad\x2c\x10\xc1\x37\xaa\xb1\x2c\x2d\x8b\xd8\xac\xa3\x3b\x55\x70\xa0\xad\x45\x0f\x16\x6d\x18\xd5\x9e\x4d\x22\xce\x10\xc3\xd8\x02\xdb\xc9\xd7\x0a\xb8\xb7\x6e\x86\xa6\x30\x89\x6d\xd5\xfb\x96\x6b\x4d\xca\x0a\x16\x75\x88\xb5\xe1\x66\x37\x81\x9f\x84\x1c\xfb\x18\x40\x33\x0a\x2f\x25\xce\xbc\x17\xdc\x1f\x99\xcc\xc4\xb1\x8d\x59\x15\x04\x86\xe6\x4a\xa0\xb0\xab\x3f\x1c\xd7\xb8\x90\x14\x23\x6c\x14\xae\xc4\x16\xba\xe3\x92\xd4\xa8\xde\x11\xe9\x64\x88\x89\x30\x52\x72\x8a\xe0\x73\x71\x91\x48\x2a\xb2\x82\x99\x20\xe8\xc7\x9d\x08\x72\xf5\xe3\x12\xef\x36\x7c\x52\xc8\x59\x5f\x72\x91\x9a\xdb\xfa\x4e\xfd\xfb\xd3\xa6\xac\x79\x11\x31\x23\x84\x43\xf6\x7a\x94\xaf\x92\x17\x58\xb6\x71\xfc\x80\xf7\x07\xef\x2b\x8b\xf7\x38\x6a\x48\x88\x48\xce\x29\x97\xef\x61\xac\x5a\x04\xcf\x77\x34\xea\xec\x2a\x4e\x73\x78\xdb\x33\x9d\x46\x89\xbb\xd0\x46\xab\xa6\x1b\x33\x1a\x0e\xde\x2f\x0b\x0f\xf0\xcd\xa4\x89\xd2\xb3\x6b\x88\xeb\x1a\x63\x20\xd0\x4c\xff\x0d\xe7\x34\x3f\xe2\x28\x2d\x38\x69\xfe\xbc\xc8\x98\xce\xa0\xdc\xc3\x37\x13\x3f\x00\xb9\x8d\x97\x15\x8a\x8d\x72\x01\x72\x1d\xe8\x33\x3f\x2b\x06\x73\x8a\xd8\x1a\x3c\x39\x08\xff\x0f\x8f\x15\xa1\x0d\xd0\x38\xe8\x39\x14\x5a\x21\xe9\x94\x78\x4c\xfb\x10\xa6\x1b\xaf\x2b\xd1\x7c\xb8\x74\x82\x07\x6b\xa2\x59\x23\xd5\x71\x0a\x6d\x60\xf2\x4f\x07\xad\x2f\x7d\x4d\xae\xa7\x2c\x74\x35\x68\x90\x2c\x89\xfa\x4a\x44\x41\xe2\xc8\xea\x21\x25\x0c\x55\x82\x15\x69\x41\xb6\xf6\x4b\x5f\xe3\xa2\xce\x19\xd5\xdc\xf8\xaf\x94\x08\x1a\x4c\xad\x12\x0c\x7f\x96\x23\xbc\x26\xa0\xd6\xb3\xed\x30\x4d\x63\x1c\x63\x4e\x8b\xdb\x15\xc3\xd0\x68\x2c\x9a\xf0\x3b\x9c\x0f\xf7\x54\x6f\x1b\x7d\x02\x4f\xf9\x00\x16\x1d\xf2\x81\xb7\x28\x3c\xc5\x89\xb6\xb3\xa3\x92\x49\x77\xc0\xbd\xc1\x9d\xdc\x8a\x3c\xdf\x33\xf9\x87\x29\xf5\x37\xb9\x88\x89\x71\x30\x7c\xd3\x20\x73\xfd\xfc\xfc\x93\x14\x8d\x4b\x63\x33\x9d\x6d\xd2\x1e\xeb\x03\xd5\xab\xb0\x40\xb0\xa2\x47\x15\x08\xfe\x6a\x5d\xaa\x9d\x5e\x43\x3a\xf2\xe8\x30\x87\xe1\x00\xcd\xa2\x40\xb5\x3c\x02\xf3\x8e\xd6\x46\x67\x72\x54\x00\x99\x1e\x06\x76\x09\x28\xbc\x2b\x5a\x1f\xee\x38\x4e\x0f\xee\x71\x54\x42\x1e\x0f\x10\x58\x8a\x29\x15\xb0\x25\x30\xb5\xaf\x13\xe4\xd1\x35\x00\x2f\x1c\xe0\x32\xc5\x05\x4d\xef\x33\xb0\xe1\x0a\x84\x7c\x44\x46\x9a\xd2\xb2\x5a\x52\x17\x23\xff\x03\x3c\x0c\xdf\xb8\x38\xa1\xcc\x2d\xe4\x10\x70\xe0\xdd\x1d\xab\x63\xed\x62\x8d\x5a\x5e\xf7\x2f\xd0\x80\xe1\x80\x7f\x1c\x76\x42\x10\x4e\x8f\x6a\x33\x96\x26\x38\xa8\x70\xca\xfe\x4c\xd3\x90\xfd\x6c\xaa\xd6\xe2\xfa\xf3\xcb\x3e\x20\xf1\xc0\x76\x71\xe4\xcd\x37\x4d\x3d\xb9\xc3\x28\x8f\xad\x71\x41\x0c\x6c\xc1\x15\x25\x49\x72\x45\x45\x21\x2f\x46\xf9\x1c\xcd\xb0\xeb\xbf\x5b\xf4\x1d\xfd\x9e\xc4\xf8\x3f\x7b\x7c\xe2\x83\xf9\x33\x1a\x45\xf3\xbd\x9f\xef\x78\x98\xc3\xc8\x64\xc5\xae\x96\xa3\x16\xbc\x8b\x95\x84\x8c\xc9\x5d\x9a\x32\x51\xa0\xf0\x50\x0b\x0e\xaf\x10\x20\xbd\x01\x37\x44\xa4\x63\xaa\x31\x46\x59\xe8\x4d\xf2\x23\x9d\xbe\x8c\xf7\x6a\x4f\x05\x4a\xb7\xe3\x1c\x16\xb8\xe4\x06\x54\x99\xf3\x62\x9d\x8c\xb7\xe5\x48\x8a\xfe\x37\x72\xfe\x01\x6b\x3d\x0e\x34\x28\x92\xa0\x37\x11\xcc\xf2\xcf\xd3\x3e\x15\x15\x1e\xef\xdd\x64\x69\xd9\x1f\x30\xd3\xb8\x8f\xb4\xaa\xa7\x13\xf6\x19\xef\x59\x82\xfa\x41\xa6\x60\x97\xeb\x2a\x08\x57\xf2\x02\xe4\xd7\xf4\x41\x6c\xa9\x2b\x6a\x7b\x5d\x51\x3f\x58\x0c\xb2\x68\xb9\x00\x75\x90\x24\xba\xab\xb1\xc4\x6f\xb3\xb4\xb6\x34\x7d\xfb\x89\x29\x06\xa6\xf8\x3b\xf4\xf5\xa2\xce\x58\xbd\x35\xaa\xab\x77\xb9\xda\x20\xbc\xa6\xb4\x61\xe0\x25\xbf\xc6\x41\x29\xf2\x3c\xb7\xa8\x7c\x80\xc5\xf1\x0a\x6d\x46\x61\xf1\xf3\x4f\xc0\xac\x05\xb0\x17\x33\x93\xca\x06\xe2\xed\xef\xc2\x28\x21\xb6\xfc\x7f\x08\xf3\xcb\x5d\x21\x00\x4b\x21\x84\x7c\x70\xa2\x76\xcf\x0d\xb4\x06\x62\xf9\xb4\x08\x3a\x22\x25\x5a\x85\x7f\xb8\x47\xeb\x0a\x16\x78\x67\xc7\xb7\x7d\x6c\x99\x28\x8e\xc3\x7b\xe4\x6a\x23\x5b\x80\x74\x1b\x00\x6e\x5b\x26\x34\xe3\xf8\xbd\xb9\x89\x92\x52\x85\x4a\xba\xd8\x3d\x95\xe0\x7b\x75\xec\xf3\xb9\x3b\x3a\xb4\xde\xf0\x1b\xcc\x49\x0d\x1b\x7c\x83\xf0\xc3\x0a\x7c\x21\x7c\x3d\x87\x1b\x18\x5f\x89\x84\x2b\x2a\x0a\x2b\x15\x2a\x69\x59\x50\x6b\xf6\xbc\xab\x02\x8d\x4a\x9b\x15\x69\x4b\xb3\x01\x72\xaf\x20\xdf\x04\x9a\xdd\x4b\x94\x3a\x5b\x8a\xcb\x11\xe9\x6e\xbe\x76\xa1\xdc\x8a\xb5\x23\xb7\x0a\xa5\x3d\x58\x65\x84\xce\xf9\xf4\x79\x9a\x85\x76\x87\x22\x3d\x15\xf4\xbe\x68\xba\xb7\x1c\x77\xe9\xa3\x38\xfa\x78\x0d\x68\x43\x09\xbe\x16\x98\xf3\x57\x75\x81\x1b\xb4\x70\xf0\xd6\x3e\xae\xb5\x41\xd3\x84\x72\x57\xed\x58\xe1\x96\x2f\x6b\xac\x60\x6c\x0f\x51\x89\x85\x7e\x4a\x8e\x6c\xfa\x7a\xbe\x69\x8a\x09\x4c\xe4\xb9\x22\x10\x5e\xbd\xa7\x34\x39\x8e\x69\x8e\x06\x05\x6a\x19\x65\x69\xaf\xa4\x7e\x52\x02\x34\x20\xd5\x76\x35\xd0\x0e\xd5\xc7\x4a\xf5\xe7\x7e\xa0\x08\x29\xdf\xc7\xdb\x60\x2c\x4e\x60\x0f\xe0\x38\x01\xc5\x3c\x23\x4f\x54\xae\xe7\xd5\x40\xb1\x01\x4f\x93\xd7\x1c\x5c\x38\xd0\x8e\xc0\x08\x54\x4b\x24\x8e\x55\xb6\xe0\xa2\x96\xba\x89\x4d\x9e\x67\x29\x3b\x1a\x28\xec\x21\x6b\xc3\xd7\x8d\x6d\xaa\x45\x96\x72\x1d\x9f\xb5\x78\x14\x57\x24\xab\x23\x0a\x92\x60\xb3\xc7\xff\xfc\xfc\xbe\x76\x6c\xfa\x2d\x95\x49\xe2\x2c\xa7\x58\x9e\xa6\xcc\xe8\x72\x75\x22\xe3\x85\x9c\x94\x51\xf5\x19\x39\x7a\x1b\x88\x8b\x73\x6b\xdd\x64\xba\x76\x3b\xe7\xcb\x9d\xa4\xe5\x25\xe8\x53\xef\xee\x2e\x67\xd6\xae\x99\xf5\x7a\xaf\xac\x1f\x8e\xd3\xc1\xdf\x9d\x1e\x8e\xfd\xed\x17\xcb\x2c\xca\x47\x59\xd9\x73\x7d\xa3\x8e\x57\xca\x37\xe7\xbe\xaa\x82\x4a\xbb\x1a\xd1\xdf\x3e\xa4\xb6\xd9\x31\xd8\x46\x94\x7b\x37\xb0\x49\x5c\x88\xee\x3c\x39\x70\x06\x0a\x2f\x0f\x2d\x25\xfe\x07\x1c\x74\xee\xaf\x5c\xd3\xf2\xcd\xc0\x8b\xcd\x6d\xe9\xc8\x89\x93\xd9\x51\x9a\xe7\x50\xb8\xf5\x3e\xe6\x15\x7c\x09\xdf\xe8\xf6\xb5\x2a\x18\x8f\x92\xfe\x36\x55\xb0\x39\xab\xa4\x6e\x58\x19\x97\x7b\xd5\x51\x82\x75\x0e\x84\xd7\xfa\x3f\x8d\x69\x13\x01\xdd\x06\xf5\x93\xbc\x30\xa3\x78\x53\xfc\x74\x4c\xc5\x4f\xd3\xda\xb3\x8b\x8b\x44\x6a\x10\x0e\xb0\xa6\x98\x4c\x26\xf0\xd5\x94\x23\x9e\x2b\xd8\x9a\x38\xea\x27\x2a\xdb\x78\x41\xa9\x15\x4c\x93\x52\x55\x5f\xdd\x35\x84\xab\x54\x14\xc7\x3f\xc0\xbb\x2a\x15\x80\x7d\x5e\xf1\xa1\x7a\x57\x04\x9c\xff\x8b\xab\x07\x86\x51\x1c\xa6\xd9\x48\xe5\x90\x58\x51\x8f\x6f\x54\xbb\x52\x91\x16\x24\xae\xa1\xd4\x9d\xe0\x70\x4a\x23\xb2\xb7\x71\xab\x51\x1a\x13\xcb\xb6\x8a\x90\xe8\xad\x25\x5a\x9a\x7e\x9b\x7d\xed\x51\x1a\x47\xe1\xfa\x8c\x2e\x07\xbe\xaa\x23\x24\xad\x09\x73\x42\xf7\x5a\x72\xa2\xb6\xee\x73\x28\x60\x3e\xaa\xd2\x72\x10\x3d\xa2\x9a\xa9\x0d\x57\xba\x1d\xb2\xdc\x33\x79\x9e\x0e\x76\x48\xfc\xf2\xfc\xfc\xbe\xbf\x43\xc7\x28\x87\x70\xe4\x65\xe0\xeb\xde\x0b\x14\xe8\xf0\x38\xf5\xcc\xe2\x78\xfd\x84\x19\xb0\x60\x84\x3e\xa8\xa9\xd8\x8d\x3d\x68\xe7\xaf\xc8\xcf\xc0\x21\x0e\xb9\x13\x96\xc0\x1b\x6f\xaa\x45\x56\x67\x23\xdc\xbe\x0f\x11\x9e\x21\xbc\x7e\x13\xce\x10\x80\x03\x7f\x8e\x2e\x2d\x1c\x46\xf7\xe1\xe7\x08\xa5\x6d\x75\xd8\x23\xc8\x39\x1c\x28\x51\xa4\xbb\x8a\xa0\xe3\x8f\xc9\xee\x30\x27\x15\xe0\xae\x78\xc8\xb3\x9a\x44\xef\x0e\xbc\x4e\x1c\x25\x7f\x41\xa8\x6e\x27\xc2\xe7\xe4\x0e\x7e\x34\xde\xfa\x45\x2f\x9a\x58\xcd\x04\x0e\xde\x6b\xd4\xe2\xe5\xaa\xc0\xbe\xe9\xe1\xb7\xb1\x54\x51\x3f\xb8\xa9\x50\x76\x97\x08\x12\xce\x38\x97\x29\xcf\x64\xef\x5e\x40\x4e\x0a\x1b\xc7\x46\xa1\xaf\x4e\xd4\xd7\x8a\x4e\x98\xf6\xa3\x58\xf1\x88\x62\x8f\x09\x3f\x5b\x03\x1d\x4c\x98\x95\x24\x35\x4b\xd3\x8c\x67\x45\x95\x96\xaf\xa7\x30\x22\x4f\x13\xc6\x61\xdd\x1a\x86\xc1\x88\xb6\xaa\x42\x4c\xbd\x3d\x55\x80\x5e\x5c\x6c\x77\x4d\x9f\x71\x01\xd2\x21\x42\x4b\x46\x7a\x47\x9a\x8e\xba\xb5\x28\xb1\xfa\xc1\x7e\x9b\x16\x96\x0c\xe8\xe6\xdf\x78\xba\x5d\x44\xc2\x42\xda\x98\x9e\xf6\x3b\x7d\x10\x0d\x73\x1b\x2f\xef\xa4\x7f\x46\x5a\x76\x4b\xc7\x8b\xf8\x5e\x1b\xfb\x7c\x06\xe2\x07\x44\x27\xb3\x60\x11\x74\x90\x14\x07\xbc\x9a\x21\xb1\x1a\x0e\x38\x02\xd5\xee\x70\x0f\xf3\x84\xe0\xff\x2e\xaf\xf9\x1a\x06\x98\x2b\xc3\xb4\xb3\x24\xc5\xa7\xd0\xe8\xe5\x28\xb3\x43\x3e\xaa\x18\xf3\x41\x9b\x1d\x31\x15\xf3\x56\xd7\x58\xd3\xe0\x24\x01\x78\xc2\x10\x32\x6c\x7b\xac\x62\xa0\xf0\x91\xfa\x3d\x8c\x83\x0e\x9b\xeb\xc7\x81\x22\x32\xd6\x3c\x0b\x26\x59\x2f\x06\x51\xd2\x27\x0f\x0b\x55\xf9\x23\x8a\x10\x96\xeb\xf8\x9c\xf8\x50\x5c\xde\x47\xc7\x5e\xe5\x92\x31\xf4\xc2\x59\xdc\x72\xf4\x35\xef\xeb\xad\x77\x25\x50\xbe\xf7\x6b\xaa\x37\xa9\x17\xe5\xa3\xd8\x9a\x9c\x75\x41\x04\x7b\x52\x7d\xbf\x60\x52\x7c\x45\x3b\xb3\x95\x33\x6f\x93\x9e\xed\xcd\xd1\xaf\x0a\x4f\xd7\x26\x80\xe0\xb3\xae\x58\xe4\xe1\xf9\x3f\x52\x89\xe8\xe3\x53\xbb\x71\xdf\x73\xfb\xdb\xdd\x2c\x8a\xe3\xc8\x24\x45\xcb\xf7\x30\xbe\x12\xf8\x92\xc2\x2b\x2e\xae\x2c\x4c\x38\x58\x0f\x4d\xd6\x13\xf1\x1d\x2d\xe3\xc8\xd7\xc1\x93\x1e\xe2\x1d\xc7\xa4\xc6\x96\x26\xf9\x43\xbe\x0e\xbe\x55\x47\x44\x2c\x99\xc0\x37\x0a\x12\xfd\x89\xf6\xfb\x2e\x90\x45\xc1\xc2\xdc\xda\x51\x04\x06\x77\x75\x87\xfd\x0f\x03\x2f\xd8\x72\xb9\x49\xa4\x0e\xfa\xa7\xbc\x65\x11\x83\x5f\xc2\xfc\xf0\x4d\x83\xb3\x48\xec\xdc\x36\x9b\xf1\xb2\x97\x27\xc7\x75\x19\x47\x9f\x98\x9a\x46\xc4\x12\x39\xa6\x5d\x8e\x6d\x58\xcc\x28\x15\x9e\xeb\xf4\xa2\xae\xf1\xdb\x2b\x29\xbd\xa7\x8f\xba\x22\x0d\x57\x1e\x57\xa2\xcc\xaf\x63\xac\x30\xdf\xdb\x27\x8a\x50\x85\xcf\x07\xcc\xc0\x1b\x0a\xde\xf3\x6f\x30\x8a\x88\x7b\xc6\x8a\xa0\xe3\x8e\xae\xbd\xbe\x4c\xcb\x0e\xb1\x15\x7a\x22\x99\xa7\x10\xc1\xa7\x4c\x6c\x35\xba\x2e\xf1\xe1\x19\xb7\x67\x3b\x9e\x08\xe8\xb2\x52\xb2\xfa\x17\x63\xc5\xa8\xca\x55\x7c\xa9\x4b\x49\xd0\x57\xed\xc2\x95\x1d\xaa\x4e\xf7\x09\x1d\x68\xd8\xf0\x0f\x52\xe0\x2d\x45\x6e\x7a\x5e\x1c\x87\x5f\xe8\x54\x27\x30\x06\x05\x34\x1e\x42\x67\xe1\x0d\x1b\x27\xd9\x60\x21\x0e\x63\xe4\x1c\x9d\xe9\xd2\x3c\xe3\x05\x37\x10\xc4\x89\x67\xe4\xb7\xe7\x72\x6c\xf2\x41\xe5\xab\xc1\x1f\x72\x42\xfc\x8b\x4e\x94\xdf\x35\x14\x0d\xd3\xd8\x52\x63\x01\xfd\xa5\xeb\x69\x74\x65\xa6\xad\x93\x06\x7a\x69\x7b\xa8\xc8\x0c\x07\x3d\xb0\xd6\x38\x41\x5d\x41\x6d\x51\x88\x80\x8f\x68\x9c\x86\x89\x1f\xf6\xed\xf8\x48\x6a\x0a\x08\xac\x7a\x29\x24\x42\x18\x10\xe7\xf4\xbc\xaa\x57\x47\x01\x60\x07\xe5\x5a\x11\x38\x3e\x8d\x9c\x22\x7a\x4d\x9f\x98\x78\x5c\x2c\x3a\x44\x36\x2e\x8d\xa7\x44\x5b\x85\xda\x88\x26\x9f\x91\x27\x58\x60\x18\xff\x07\x3a\xbe\x82\x9b\x59\x5b\x88\xb2\x18\x03\xb2\x35\x7c\x7e\x9a\x64\x8d\x74\xdd\x50\x9e\xe3\xbc\x5b\xe0\x4f\x23\xd5\x76\x9b\x46\xde\x9f\x47\x42\xe9\xb8\xea\xe1\x38\xae\x50\xa7\xbd\x68\x79\x39\x0a\xcb\xb8\x88\x2c\x93\xb3\x3b\x18\xc1\x92\xb0\xbd\x9c\xd7\x24\x08\x75\xe2\x32\xad\xcb\x59\x66\xe1\xc0\x82\xec\x86\xd5\x31\xf1\x39\x98\xa7\x13\xaa\xb4\xc9\xb8\x1c\xb8\x27\x5b\x55\xb3\x6f\x18\xa7\xb9\xed\x6d\xf3\xe5\xf2\x1b\x81\x12\x26\xf8\x50\x71\x94\x7d\x3a\x56\x8d\x99\x1f\xea\x4c\xa6\xb8\x98\x4c\xe8\x1b\x7c\x41\x9f\xaa\x36\x0b\xd3\xe1\xa8\x24\x66\xf1\x6a\x47\x72\xae\x80\xa6\x51\xf2\x06\xde\x03\xef\xda\x38\x4d\x04\x07\xf9\x75\x5f\xf8\x5f\xf2\xbd\xc3\x9e\x28\x24\x33\xa1\xdd\xe6\x9b\x93\xfe\x28\xf0\xe5\x9b\x97\x03\xdd\x06\x4a\x9f\x87\x8d\x3b\x0e\xcb\x8a\x4f\x1c\x0f\xd4\x2b\x1d\x57\x6e\xcb\x28\x0a\x8b\x32\x63\xce\x5d\x98\xa6\xad\xd0\x39\x87\x49\xbd\x3a\xf6\xa9\x8e\xeb\xf4\xed\xb0\x0d\xef\xd2\x78\x71\x37\xf1\x54\xe0\x77\xe0\xb9\x76\xb7\x8c\xe2\x9e\x8b\xd8\x59\x63\xa3\xa6\x25\xd7\x72\x0c\x81\x3f\x74\xe4\xaa\x3d\x3b\x24\x8d\x65\x6c\x4c\xd8\x0b\xc8\xcc\xc0\x01\x06\xa5\x37\xf6\xc9\x69\xa5\x08\xbf\xbc\x1c\x25\x33\xea\x58\x61\x83\xe3\xd2\xfa\x8e\x81\xe3\x56\x8d\x04\x3b\xcb\x9f\xa9\xe9\xc8\x33\x09\x88\xf4\x18\x3d\xac\xa4\x6b\xe3\x75\x9a\x54\xb1\x0f\x64\x4d\xf9\x46\x63\xc9\xe2\x32\xcb\x50\x5d\x83\x0b\xc4\xf5\x74\xbe\x19\x3f\x59\xf3\x3f\x4c\x16\x55\x7b\xa3\xa5\xc1\xc2\x1e\xfa\x7d\x61\xac\x3b\xca\xc2\x2f\xb6\x7c\x37\xdc\x27\x74\x60\xf0\xb5\x1b\x86\xfc\x1b\xa5\xc9\x2c\x71\x52\x89\x08\x8c\xd2\xfe\x1e\xfb\xee\xa9\x87\x26\xbe\x4b\x80\x4b\x0f\xe2\xda\x4f\x2b\x39\x2d\xb8\xce\x00\x9b\x68\xf9\x8f\x93\x0a\x0f\x75\xd2\x1d\x28\x6b\x03\x13\xae\xcc\xf8\x7d\xba\x8d\x0c\x31\xca\xe3\x9f\xd2\xfa\x81\x17\x7b\x4a\xd5\x77\x46\xb1\xe9\x97\x16\x18\x15\x38\x80\xef\x2b\x31\xce\x33\xba\x5a\x73\xd5\x81\xa9\x07\xe9\x1a\x82\x92\xa6\xc6\x98\x27\x14\xc5\xce\x70\x18\x11\xbd\x7e\xab\xf5\xd4\x53\xbe\x82\x5f\x85\x83\x52\xb4\x9f\x2e\xfb\x2e\xb4\x07\x26\xeb\xd9\xbc\x68\x51\x74\xc8\xd4\xf2\x8a\x52\xff\x8c\x6a\xa4\x0b\x33\x93\x0f\xc0\x66\x29\x8e\x32\x6d\x20\xbe\x69\xa8\xe6\x2c\xfa\x86\x9b\x19\xbf\x54\xa6\xf4\xa0\x17\xdc\x7e\x7d\x42\xe5\xfc\xd3\xb2\x3f\x28\x96\x4b\x20\x9d\x25\x8d\xec\xf1\xd0\xe7\x15\x19\xaa\xc9\xaa\x71\xad\x96\x2d\xd3\xc7\x62\xd9\xea\xba\x2f\x72\xa1\x37\x1a\x24\xbe\xc9\x35\xc8\x67\xfc\xde\x3b\x47\x1f\x10\x26\x7f\x25\x0b\x72\x2f\xf8\xe2\x67\x94\xb9\xa2\x24\x2f\xa2\xa2\xac\x3c\x50\x86\x66\x23\x0f\xcb\x2a\x60\x7c\x33\xde\x2e\x80\x6f\x93\xcd\x29\xe5\x18\x14\x10\x51\x5b\xf9\x6e\xa0\x78\x23\xe0\x5e\x63\x79\x3c\xd4\xf1\x90\xc1\xfb\x0d\xc2\x53\x18\x04\x4e\x36\xba\x8e\x89\x25\xd7\xa1\xa1\x6c\x61\xd7\x9a\x2c\xca\x07\x73\x0a\x03\x8d\x06\x0e\xa9\x74\x56\x1f\x93\xb8\x97\x56\x2b\x6a\x2d\x3f\x41\xaa\x81\x3f\xd1\x24\x5d\xbe\x9c\xa6\xc5\x20\x8a\x63\x76\x38\xe0\x41\xde\xa5\xf5\x84\x9d\x7a\xa1\xd6\x6d\xa6\x00\x20\x43\x33\x1a\x09\xdf\x8d\x6b\xae\x77\x0c\x3e\x17\x1d\x23\x5a\x5e\xd8\x2c\x8d\x84\x53\x80\xb3\xd1\x4a\x5e\xff\xfd\xa9\xc7\x72\xa5\x48\xa2\x67\x70\xe4\x8b\xa7\x03\xc5\x8d\x7d\xda\xc9\x83\x2e\x67\xd0\x06\x67\x16\x02\x87\xd6\x3f\xa3\xb4\xb6\x34\x77\x65\x1c\xe5\x24\x9b\xe1\x5c\xd6\xab\xaa\x25\xf1\xea\x54\x07\xfa\xf3\xf3\xfb\x88\x63\x23\x8e\xa3\xbe\x4b\xba\x8a\x64\x73\xcb\xcb\x37\x6b\xc2\x40\x10\x65\xd7\xb8\x5a\xe8\xd1\x5d\x1b\xbf\xaf\x46\x62\x37\x09\x21\x4c\x43\x9b\xd8\x8b\x65\xaf\x0a\x4c\x70\x16\x08\xdf\x91\x72\xdd\xcf\x36\xad\xac\xea\xf7\x2d\x08\x51\x34\x62\x91\xaf\xb5\x44\x67\x8a\x39\x5c\x38\xc0\x3b\xe6\x7d\xda\x4a\x7c\x3d\x55\x24\xde\xbb\xb7\x6d\x7b\x65\xe8\x95\x58\x1b\x59\x0b\x35\x96\xa6\xfb\xcc\xac\x88\x2d\x54\xce\x80\x02\xac\x6e\x5c\x52\xf0\x72\x2a\xaa\x3b\xf9\x85\x6c\x64\xb3\x96\x22\x82\x44\x41\x44\x68\xbb\x76\x29\xef\xcb\x24\x3d\x34\x4a\x6c\x2a\x9e\xf0\xb5\xf3\xc4\xe3\x28\xb4\x49\xee\x0e\x7d\xfc\xe8\x86\xef\xb9\x7d\xf9\x71\xda\xac\xa8\x08\xcd\x4e\xbc\x09\x25\xd4\xcc\x2c\x19\x27\xf5\xae\x3e\x2e\xf0\xf8\x8f\x3b\x4a\x6d\xff\x8e\xce\xc0\x1f\x1a\xd9\xb0\xb0\xbd\x07\x31\x85\x8e\x6e\x71\xef\x5e\x76\xca\xaf\x29\x5a\xf9\x37\x75\x4b\xda\x4d\x55\xb2\xda\x4e\xf5\x48\xe0\xef\x37\x28\x4b\x8f\xa3\x98\x83\x61\x61\x69\x52\x90\x9f\xb2\x4b\x35\xbe\xde\x9c\x8f\x52\x4e\x50\x0c\x86\x04\xfd\x3d\xfc\x92\x04\x64\x3e\x89\xfd\x47\x35\x4f\x63\x5c\xeb\xea\xb3\x54\x7d\x6a\xa9\x5e\x4a\x80\x0d\xa5\x73\xac\x41\x75\xa5\x9f\xa5\x6b\x33\x9e\x93\xf8\x72\xa0\xf4\xcf\x5f\x53\x09\xe1\x33\xaa\x36\x92\x9b\x38\x1d\xa6\xc9\xac\x2a\xf9\xcd\x32\x6e\x48\x66\xc8\xf7\x3e\x7d\x5f\x75\x4b\x7d\x5f\x41\xab\x29\x01\x1d\x09\xd0\x1f\xa1\xdf\x6b\x81\x0f\x03\x5f\xab\x51\x66\xe6\xf6\x10\x30\x70\x70\x51\xdf\x0a\x54\x61\xf8\x70\xa0\xd1\x80\x53\xfb\x6d\x69\xbe\x6d\x86\x69\x99\x00\x5c\x85\xe9\xda\x0a\x24\x09\xdf\x4c\x7c\xe4\x31\x28\x87\x26\x89\x0a\x93\x91\x68\xfd\xd2\xbc\xaf\xdb\xb9\x2c\xe4\xc7\xb5\x07\x4b\x57\x9f\x99\xad\x66\x4d\x64\x97\x55\x5f\xdc\x6b\x8a\x00\xe3\x2d\x18\x12\x4c\xa7\x56\x6c\xfa\x95\xff\xf4\x97\x69\xa7\x4a\x0f\x55\xf5\x5d\x92\x5b\xdb\xfc\x26\x07\x17\x0e\xb4\x87\x14\x9d\xd1\xd3\x0b\x83\xaf\x22\x49\x7a\x43\xb9\xfe\x5d\x6a\x23\x75\x6d\x1d\x47\x35\xf2\xfc\x68\xe0\xfd\xe6\x30\xb3\x26\xb7\x33\x9e\x9c\xf9\x03\x9a\x76\x27\xc1\x5a\x99\x02\xd5\x5e\x94\x96\xd9\xae\xd6\x97\x0f\xd6\x97\xa9\xf8\xa0\x94\x92\x74\xbe\xb3\xeb\x61\xba\x8d\x88\x02\xa7\x21\xc4\x0f\x99\x8b\x0e\x49\x98\x1a\xe8\xd4\xd5\x14\xaa\xa3\x11\xd3\xcd\x29\x32\xc1\x1a\x60\xa9\x39\xdf\xc2\x79\x33\x77\xb5\xae\xc1\x79\xca\x62\xc2\x08\xbf\x12\xa8\x1a\xf2\x58\xe5\x7d\xb9\xef\x08\xf6\xe6\x21\x0a\xa5\xa5\x4d\xbf\x46\x77\x5a\xe4\x73\x8a\x69\x1d\x02\xa1\x38\xb5\x6f\x2b\x87\xf3\x4e\xa0\x64\xe9\xd8\xfb\x14\x56\xce\xcd\x49\xad\x03\xcf\xb5\x97\xcb\xac\x18\x54\x07\x51\xf5\xd0\x0e\x0b\xeb\xce\x3d\x68\x8a\x0a\x7d\xb0\x17\x0b\x3b\xe7\xd0\x49\xa9\x59\x91\x93\x07\x0e\x11\x63\x7b\xf9\x66\xe2\xf1\xea\x26\xef\xda\xbc\x48\xf3\x96\xea\x01\x38\x13\xd4\x74\x28\x7c\xd0\x9c\x0f\x6c\x8c\x58\xd4\x15\x9b\x39\x59\xc0\x37\x6a\x91\x2d\x9b\x82\x5d\x13\xe6\x3e\xa2\x17\x00\xab\x16\xa3\xea\x61\xeb\xcf\x39\xd2\x97\x38\xea\xda\x4c\x00\xa2\xd5\x4f\x48\x57\x3f\x8d\x30\xdf\x04\x5a\x2b\x12\x85\x75\x66\xf9\xc3\x7e\xfa\x30\xf0\x7b\xeb\xc3\x26\xd0\xb0\xe9\x96\x79\xb4\x6a\x95\x4e\x0d\xd2\x60\xfe\x10\xfc\x87\x8e\x68\x38\x1a\x92\xb3\x8a\x48\xf8\xaa\x8a\x07\x4e\x06\x0a\x48\xf1\x69\x23\xd3\x1f\xd5\xe9\x5c\x5a\xc3\x75\xeb\x54\x53\x2a\x19\x98\x86\x7c\xa6\x81\x13\x4f\x2f\x24\x99\x7a\x95\xb5\x9f\xfa\x25\xea\x6f\x2e\x32\x86\x71\x39\xc0\x2b\xcc\x92\x74\xc6\xf9\x2c\xb9\x8d\x71\x12\x60\x66\xb4\xf0\x0d\xd6\x26\xd8\xc9\xc5\xa3\xd8\x9c\xcf\x59\x5c\x6c\x0f\xa3\x43\x2d\xa5\xd5\x04\xb7\x99\xaf\xa7\xcc\xd2\xde\xbd\xed\xca\x60\x2e\x2f\xd3\x93\x39\xbe\x86\xdd\x0b\x8a\x25\xc7\x4d\x66\x5a\x16\x51\x62\x91\xd4\x71\x2c\x34\xba\x5b\xd1\x1f\xb6\x70\xd0\x51\x1a\xbd\x59\x33\xba\x2b\xd0\xec\x13\x21\xed\x3b\x81\xef\xcf\x42\xcc\x8f\xd4\xda\x5f\x61\x0b\x4a\x38\xe5\x13\xb4\x2f\xda\xa2\x40\x54\x2e\x70\x75\x7f\x08\x9f\x19\xff\x62\x43\x2a\xb8\x4c\xc2\x34\xe9\x45\x88\x47\x50\x96\xdd\xe7\x3b\xd3\x1d\xc0\xf5\xbc\xb3\xab\x23\x93\x15\x51\xce\xf4\x80\x78\x82\x4b\x0a\x37\x72\x49\x39\x79\xcb\x99\x4d\x5e\x5a\x6f\x91\x13\xe3\x7c\x63\x57\x4d\x38\x53\xcb\x3b\x94\xf9\xfa\x8c\xf7\x84\xce\x29\x2e\xa2\x1b\xd8\x3f\xac\x61\xde\xf9\x2c\xa6\xa6\xe5\xd8\x16\xe1\xc0\x66\x33\xaa\x64\xfb\x36\xed\x0c\x24\x5c\x7f\x40\xcb\x44\x68\xe0\x5c\xbd\x1c\xc0\x36\x3a\x11\x25\x5d\xa7\xda\x27\x8e\xfb\x24\x9f\xc9\x8b\x88\xbb\x9f\x44\xe0\x8a\x36\x83\x60\x05\xc9\xaa\x33\x97\x4f\x63\x4d\xa3\x67\xed\x88\xa2\x85\x19\x9f\xd8\xfc\xe7\xe3\x29\x2d\x04\x99\xed\xe9\x10\xfc\xd9\x76\x6c\x4d\x96\x48\x73\x08\x92\x18\xcc\x92\xc6\x37\xea\x38\x1b\x66\xcf\xfc\x42\x15\xdf\xbb\xf3\xdb\xd3\x93\xce\xa2\x23\x19\xe3\x02\x67\x54\x7a\x4a\x5b\xbb\x77\x4b\xc1\x26\x50\xaf\x77\x2b\x50\x4c\x47\xb7\xa9\x5c\x8b\xc9\x39\x46\x23\x8c\x67\xde\xde\x21\x74\xad\x30\xb9\xab\x2e\x80\xd3\x04\x12\xe6\x6b\x02\x81\x6c\x9c\x53\x1e\xec\x56\x14\x0e\xe0\xcc\xbd\x4f\x1b\x0c\xa9\x92\x59\xaa\xf8\x89\x9a\x7a\xeb\xd7\xbe\xa2\x95\x4a\x24\x93\xfe\xae\x4e\xd7\xf0\x3c\x90\xa7\x75\x6b\x17\x71\x95\xc9\x1b\xe0\x3c\xc1\x08\x5c\x53\x1c\x47\x97\x50\x09\x57\xb9\x69\xa1\x32\x3d\x46\xe1\xad\x30\xe6\x57\xbb\x4a\x1a\x49\x1f\x51\xd2\x32\xa6\x07\xfc\x3c\x7c\xe4\x7f\x1f\xf8\x7e\xd5\x7f\xdf\x24\xd9\x93\xd9\x30\x2b\xa3\xc2\x85\x04\x82\x90\x68\x39\xf2\x85\x6d\x1d\xdf\xe5\x75\xd5\xd7\x25\x0c\x51\x5f\xba\x04\xd3\x4d\xcd\xe1\x7b\x57\x11\x48\xbf\xd1\xd8\x18\x96\x9b\x35\xed\x67\xfe\x04\x08\x52\x0c\x27\xb7\x6f\x60\xfc\xaf\x38\x50\xc7\x9a\x35\x2b\x8e\xce\x04\x8f\xc3\x2c\x55\xc0\xa6\x1d\x1b\x2b\xbd\x98\x2d\x9d\x5a\x99\x28\xc5\x99\x86\x4c\xc5\x29\x85\x08\x3d\x35\xde\x04\xeb\xfe\xf2\xc1\xf6\xd2\x3c\x50\x7b\x0e\x2c\x55\x2d\x3c\x01\x4b\xe9\xaa\xfb\x4b\x26\xa2\xcd\xe3\x7a\x8c\x9c\x1c\xc9\xef\xe1\xc1\x60\x36\xcf\x35\xb1\x12\x48\xfb\x46\x0e\x7e\x15\x8e\x62\x02\x9f\x68\xfc\x44\x05\x78\xa8\x08\x9b\x10\x79\x4b\x07\x7f\xae\x0c\x99\xa0\xb3\x7c\x42\x22\x4a\x48\x4d\x6d\x76\x8a\xd4\x03\x6e\xf5\xe5\xb1\x86\x27\x2b\x76\xf2\x33\xaa\x1d\xbc\x6b\x40\xf2\x58\xeb\x50\xe5\x9b\xa6\x3a\x7f\x98\x0e\xed\x36\xcf\x7c\xc8\x56\xa0\x56\x94\x43\xb4\x71\x04\xbe\x27\x4c\xee\x47\x0a\x66\x78\x14\xa7\x93\xf8\x28\x9f\xa9\xec\x9f\x96\x59\xb2\x89\x9b\x00\x20\x1c\xbe\x76\xa1\x6e\x5e\xa4\x71\xf1\xd2\xd0\xd4\x02\xf4\x1a\x99\x6b\xcd\xe0\x17\x66\x84\x0c\x94\x13\xaa\xaf\x1e\x47\x24\x3f\x1a\x5c\x8b\x9e\x0d\x8d\xe3\x36\x81\xbd\xba\xaa\xc9\x11\xaf\xba\x23\xea\xc5\x74\x05\x49\x19\xc5\xdc\x09\xaf\x5d\x7a\x3a\x84\x1a\x32\x2e\xbb\x59\x14\x9a\xa4\x80\x4f\xc8\x58\x93\xb1\x52\x55\x3a\xa7\xe8\x38\x47\xa6\xf2\x1e\x39\x03\x01\x10\xc6\x47\x1a\x91\xf1\xd1\x54\xce\x70\x69\xbe\xbd\x1c\xc5\xd2\x6d\xc8\xfd\xab\xb4\xbd\xb9\xea\x3a\x56\xaa\x84\xd3\x92\x0e\xa4\xff\x97\xa6\x2b\xb3\x3e\x69\x7d\x3a\x50\x74\x38\x48\x04\x39\x6a\x1c\x7f\x10\x9c\x57\xf9\xb2\xcc\x8e\xe2\x48\xf4\xc8\x9d\x50\xca\xaf\x7d\x45\x2c\x38\x0d\x0c\x4b\x71\x7a\x40\x57\x59\x74\x4d\xb8\x82\xc1\x16\x06\xf0\x96\x23\xa1\x27\x06\x0f\x9e\xc8\x85\x74\x9b\x06\x29\xb1\x9e\x17\x02\x42\x78\x3a\x38\x4b\x19\xbc\x0b\x67\x6b\x86\x70\xf6\xc8\x0b\xdd\x0b\xbc\x67\x73\xb2\xc1\x78\x11\xc7\xdc\x9c\x37\x27\x2d\xdd\x0d\x05\x14\x89\x3b\xba\xab\x9f\x16\x42\xd7\xea\x1d\x01\x00\x3b\x37\xe5\xaa\xee\x5b\xda\xd7\xee\x95\x71\x5c\xf9\x0b\x95\xb5\x81\xc7\xd6\xea\x28\xf2\xff\x2d\x13\x8f\xa5\x7e\x4b\x45\x11\xc3\x32\x2e\xa2\x51\x6c\x67\x94\xf2\x0c\x4a\x37\x38\x8f\x38\x58\x12\x12\x00\x89\x0e\x4c\x18\xa6\xc3\x51\x1c\xe5\x03\xdb\x9b\xa9\xbe\x59\x35\xcd\x0b\xa2\xed\xf7\x69\x3e\xc5\xe3\x52\x45\xd6\x22\x9a\xd1\xcc\xa2\x8a\x89\xee\x2e\x46\x15\x56\x69\xae\xe3\x15\x51\xd6\x4c\x51\xe3\xc2\xe7\x10\x8a\x6f\xa6\xe4\x2c\x7f\xb5\x6d\x7b\xa5\xc9\x7a\x2a\x37\xc0\x31\x24\xdf\x34\x92\x27\x44\xf1\x2a\x00\x53\x42\x07\xa3\xe2\xc4\x0b\x63\xcd\x3c\x9e\x23\x19\x45\xdb\x0c\x18\x78\xa4\xe8\xf9\xba\x91\x3a\x29\x2f\x6c\x56\x85\x20\xb3\x64\x7b\x04\x52\xd6\x72\x34\x39\x00\xe5\xc2\x02\xf2\xc9\xc4\x15\x78\x9d\x8e\xc9\x4c\x58\x44\xa1\x6d\x29\x45\xb2\x3f\xa0\x98\x84\xaf\xc7\x3a\x9a\x0c\xb3\xa8\xcb\x4f\xe9\x38\xde\x1d\x7f\xd0\x59\x77\x18\x77\x3d\x5a\x57\x2a\x53\xca\x7c\x5d\x50\xe5\xaf\x35\x73\x68\xc8\xce\x32\x96\x15\x47\x9c\x7c\x33\x35\xaa\x0b\x07\xda\xc3\xb4\x67\x63\xd5\xc4\x0f\x8e\x07\xbe\x9e\xfa\x00\xe5\x4e\xcc\x0a\x2b\xdb\x73\x4f\x7b\xad\xbf\xdd\x49\xea\xa4\x49\x3f\xb3\x79\x3e\xb4\xc9\x9c\x3a\xd3\xe7\x68\x8f\x2a\x46\xbf\x7d\x1b\x0f\x52\x43\x03\x30\xc5\x67\x39\x2b\x01\x23\x7b\x5f\xf5\xa4\x86\x83\x14\x7d\x80\x3e\x2f\x89\x78\x8a\xaf\xbd\x31\x31\x79\x94\xa4\xf9\xac\xd2\xb8\xdb\xde\xf1\xfb\x99\xdb\x0e\x5c\x1f\xd7\xf3\xf3\xec\x8c\x7d\xac\xd2\x49\x71\x94\x3f\xd0\x72\x9a\x6b\xac\x7c\x8d\xe1\xbe\xa7\xfc\x80\x0b\xfa\x54\x9b\xc3\x92\x17\xf4\x85\x27\x51\x3e\xc9\xef\x84\x08\xfe\xe1\xce\x34\x84\x9b\x84\x4c\x5a\x84\x5e\x74\x10\xcd\xa5\x79\x77\xa3\x96\xf6\x28\x4a\x56\x6c\x56\xa4\x49\x8b\xdc\x48\x17\xf4\xfa\x00\xb8\x16\xe1\x45\xa1\xfd\xbc\xa2\xe9\xb8\xa7\x76\xfc\xfd\xda\x48\xdf\x0c\x14\xf9\xd4\x71\x64\xa3\x14\x4b\xb9\x38\xe0\xd7\xe0\x95\x08\xa8\xa4\xe5\x48\xc1\xde\xa5\xf7\x45\x8e\xf3\x16\xe1\x43\x25\xe5\x54\x39\xb2\x22\xc4\x58\x19\x22\x54\x9c\xdf\xd3\x64\x8e\x4c\x83\x85\x6f\x62\xe9\x2a\x66\x45\x0f\x14\xf9\xd4\x59\xf2\xd5\x5d\xa8\xb9\x47\xb6\xf3\x71\xe0\x3e\xc5\x43\x50\xdc\x34\x57\x15\xd2\xe5\x81\x8e\x62\xa8\x3a\xab\xe6\xba\x4c\x56\xb6\xa9\xf6\x7c\xc8\xd8\x38\x25\xfe\xea\xcb\x80\x1d\x79\x1f\x8f\x2c\x9e\xbf\xdf\x63\x57\xc6\x3e\x4c\x6b\x75\x9a\xa0\xf3\x85\x21\x4a\x5b\xa5\x76\x3e\xf6\x50\x99\xe9\x9e\x4f\x02\x16\xc7\x26\x29\x18\x57\x8c\x57\xfe\x64\xec\x67\x79\xac\xc1\x61\x27\x54\x63\x78\x66\xf3\x34\x5e\x65\x0d\x59\xa6\x70\x84\xb7\x26\x7c\x8e\xb2\x3f\x47\x36\xcf\xa3\x61\x94\x57\x4f\xd6\xd2\x04\x91\x8a\x96\xd7\x17\x7b\xd6\xa2\xb8\x17\xaf\x53\x76\x53\xe4\xb0\x94\xa7\x87\xa6\x50\xa4\x3d\xaf\x2a\xf5\xab\xe5\xcc\x24\xe1\x20\x72\xd6\x0b\xce\xfb\x0c\x80\x37\x7c\x33\xf1\x25\x91\x35\x13\x4b\x83\xba\x2b\x3d\x2b\x3a\xf8\x26\x0a\xa4\xca\x33\x9d\x9b\xf1\x0a\xe7\xb7\xf1\xb2\x22\x31\x40\xbf\x8a\x73\x1f\xc0\x2a\x44\x1d\x33\x13\xd5\x92\xfa\x7b\x53\xa7\xc1\x9e\xc5\x76\xd7\x24\x87\xbe\x51\xa6\x85\x6d\x29\x6b\xf1\xaa\x12\x48\x7d\x75\xec\xb3\xdd\x5d\x93\xac\x64\xe5\xa8\x90\x3c\xbc\x3c\xfe\x27\xb0\x1b\x7c\xe3\x2a\xe7\xeb\x26\x06\x98\x04\x87\x36\x1b\x24\x3c\xcc\xae\x8e\xce\xae\xb5\x1c\xdb\xc7\xb7\xc6\x8a\xc5\x03\x0e\x95\x28\x52\x09\xfa\x60\x10\xe5\xb9\xf8\x7e\x8e\x85\x56\x31\xcf\x6a\xce\x29\x25\xd3\x41\x24\xe0\x51\x58\x20\xac\x64\xaa\x82\xc0\x37\x54\x9e\xf2\x28\x0f\x9b\xad\x46\x4c\xa0\x06\x94\xf2\x7f\xab\x30\x24\xef\x29\xd2\xa0\x77\x1d\x9e\x24\xb3\x3d\xbb\x1c\x25\x40\xac\x0b\xff\x23\x7d\x83\x10\x40\xfa\x35\xd6\x8b\xf2\xa1\x89\x5b\xaa\xb0\xcb\x81\x06\xdf\x34\x95\x00\xbb\x76\x10\x25\xbd\x39\x9a\x67\x58\x9f\xd7\xc7\x1e\xbf\x07\x3d\x79\x24\xee\x3e\x55\x35\xfa\xdf\xc1\x60\x08\x60\x49\xf1\x5b\x13\xda\x58\xe5\x2b\xa0\x6a\xce\xd7\xaa\xe4\x17\x77\xd3\xbc\xa5\x50\x06\x57\x02\x85\x3f\xb8\x32\xde\x4c\x8d\xfa\x74\x3b\x7b\x26\xe2\x1c\x33\xd2\x17\x1c\xab\xf0\x8d\x92\x65\x0f\xcb\x22\x7f\x80\x8c\xb1\xd3\x77\x5a\x92\x50\x13\xa2\xab\x8e\x1c\xc5\x0b\x5c\x71\x39\x1c\x09\x0e\x66\x7c\x71\x87\xf3\xd2\xbc\x03\xe5\x48\xa1\x3f\x79\xe9\x8b\x33\xfe\x80\xba\x38\xde\xfa\x45\xb6\x65\x0c\x6e\x96\xa9\xdf\xdc\x9d\x23\x71\x5a\x66\xfb\x26\xeb\xc5\x96\xc9\xdb\xa4\x85\xb3\xfa\x29\xbe\x76\xab\xdd\xac\x99\xf5\x9d\xbe\xd0\xde\xee\xb8\xa4\xff\xdf\xfd\xdc\xa4\xde\x07\xac\xca\xcc\xd5\xbc\x21\x20\xbd\x07\x1b\xec\x38\x76\x1c\x0c\x15\xea\xd2\xc8\x9d\xfc\x7c\x47\xb7\xa8\x62\x30\x10\x25\x5d\xd0\x40\xe9\x63\x63\x05\xda\x3d\x3b\xb5\xef\xff\x01\xe8\x5b\x09\xa7\x36\x43\x8f\x06\x00\xd4\x07\x63\xd5\x3e\x72\x35\xd0\xcd\xf0\x9b\x03\xd9\x17\x5e\x68\x68\x5e\xc2\x4e\x65\x95\x2c\xbe\x51\xd2\x3f\xbd\x72\x14\x47\x21\xb1\xf6\x2c\x49\x27\xda\xdb\x74\xbe\xf1\xf5\x78\x87\x52\x00\x6d\xd3\xfb\x60\x6c\xbe\x8b\xb1\x81\x3b\x7f\x8b\x72\x46\xae\xcf\x6e\xf7\x6e\x76\x1f\x8e\xf0\x41\x8f\x8f\xb0\x9a\xb5\x74\x0c\x55\x86\x04\x36\xf1\x06\xda\xa5\xf0\x57\x8f\x10\xb3\x15\x8e\x8c\x0b\x81\xd2\xbb\xb9\xa4\x13\x80\x4c\xb7\x01\x40\xd1\x9b\x34\xfb\x28\x67\x3d\xd0\x51\xc5\xd5\x3b\x44\xfd\x2b\xf9\x67\xd5\x92\x78\x18\x4e\x0e\x70\x88\x5b\x98\xf3\x0a\x36\xb1\xd5\xa9\x86\x02\x0f\xf9\xf0\xc4\x83\x5d\xef\x8c\x15\x97\xc1\x46\xb0\xf5\x8b\x1b\x10\xe0\xc1\xd1\xf3\x06\x1c\x01\xa4\xc3\xee\x8d\x3d\x72\xe4\x58\xe0\x09\x01\xa0\x05\x47\x71\xc9\x89\xc7\x27\xad\xa7\x9e\x72\x9d\x79\x1e\x1a\x0a\x39\x4f\xd8\xca\x1f\x23\x61\xc7\x21\xdb\x44\x75\x0b\xbc\xad\x1c\xef\xcc\xae\x5a\x83\xb0\x11\xdb\x96\x65\x10\x5c\xb8\x50\x0d\x21\xeb\xbf\x05\x35\x0f\xb8\x9a\x0d\x11\x86\xf3\x56\x20\x36\x79\xb1\x53\xe9\x1d\x33\x9e\x0e\xc8\xfb\xab\x63\x25\xfb\x7a\xb1\xa6\xdb\x02\x8d\x27\x6c\xfd\x2b\xba\x55\xe2\x2a\x35\x00\x09\x0f\x96\x4b\x3f\x3c\xf1\x18\x61\x8c\x9d\xa8\xaa\x47\xc4\x32\x22\x86\x29\x48\xc7\xaa\xcd\xf9\xae\x4b\xc2\xd8\x43\x23\x93\xf4\x24\xc9\x0c\x3f\xeb\xa1\x89\x4e\xac\x7b\x46\xf3\x03\x8f\x75\x9a\xb8\xb7\x29\xc1\x1f\x46\x23\x53\xa0\x76\x8a\x9c\xe7\x43\x1d\xd5\x7b\x76\x5d\x51\xae\xdf\x73\x27\xcb\x28\x4e\x0b\xcf\x6e\x81\xc8\x1b\x14\x1c\x7c\xdd\x48\x11\x55\x14\x14\xa0\xc9\xc7\x30\x84\x88\xba\xf8\x7a\x2a\x78\x7f\xba\x1d\x66\xa4\xc7\x1d\x2b\x9c\xe0\xfb\x0a\x27\xf8\xbe\x3b\x40\xec\xf2\xb2\x0d\x1d\xea\x57\xe8\x9e\x68\x1c\xf9\x66\xe2\x70\x7a\x66\x3d\xb1\x33\x2a\x9a\x3e\xaa\x68\x48\x3f\x56\xb2\x6a\xe3\x06\x5e\x99\xfd\xed\xc2\xc6\xb6\x9f\x99\x11\xd3\x62\x4a\xeb\x1b\xe7\x56\xf9\x46\x33\xfa\xa0\x18\xf0\x80\xef\x96\xba\xa2\xa4\x39\x2e\x8f\x95\xb5\x7b\x79\xac\x16\x3c\x4a\x3a\xd2\xfa\x4e\xd6\x06\xd6\xf3\xfe\x58\x09\xff\x9e\x6e\x0a\x2c\x5f\x4c\x57\xa4\xd5\xa0\x49\x5f\x5e\xd6\x50\x2f\xca\xa9\xc5\x80\xff\x14\x41\xd2\xab\x81\x87\xba\xbc\x3a\xf6\x45\xcc\xa2\xcc\x12\x93\xa5\x25\x97\xe4\xb9\xd5\x41\xf5\xa0\x5d\x0e\xb6\xfb\x54\xef\xa3\xaa\x49\x17\x2c\xe8\xf8\xa3\xad\x94\xa9\x67\x4e\x27\x58\x37\xc1\x0c\xd1\xaa\xc0\xf6\x41\xde\x11\xbe\xc7\x5b\x30\xb4\x78\xf6\xc3\x14\xd3\x20\x40\x39\xa7\xce\xbc\x93\x64\x74\xa5\x7b\xd4\x69\x32\x7c\xf3\x1c\xb6\x15\x2c\xf3\x0f\xeb\x05\x1f\xaf\x95\x28\x91\xaf\xa4\xa5\xe5\xfc\x5c\x8b\xf2\x67\x5a\xba\xa9\x92\x3e\x2f\xdd\x96\x3e\x8c\xf9\xc7\xbf\xf2\x8f\x66\x7c\x8a\xe3\x38\x3d\x17\xeb\xe7\x13\x1a\x42\x38\x7b\x6b\xa8\x8b\x65\x81\xdf\x02\xce\x76\x56\x13\xb8\x9d\x55\xcc\x3a\x69\x12\xa6\x7d\x9b\xc8\x7c\xc2\x8c\x9c\x1e\xfb\xda\xc9\x69\x95\x03\x29\x4c\x14\xa7\x19\xd7\x99\x05\x71\x4e\x03\x2b\x90\x73\xf1\x28\xb3\x28\x17\xf6\x37\x94\x19\xa0\xb0\xe5\xd4\xf9\x1d\xda\xe0\x1d\x6d\xf7\xb7\x75\x3c\xea\x42\xf3\xfd\x0b\x3b\x21\xad\x65\xbe\x99\x5a\x98\x2f\xbc\xd0\xee\x65\xd6\x0c\x5b\x3e\xa9\x8c\x35\x2e\x91\x8c\xec\xe5\x28\xcf\x4b\x9b\x09\x59\x27\x56\xe2\x77\xc6\xaa\xdd\x16\x1b\x48\x5a\x02\x1a\x30\x64\xdf\x28\x4d\x56\xd8\xac\x0a\x9b\xdc\xce\x7e\xac\xe3\xa1\x24\x73\x13\x4f\x18\x78\xcb\xe9\x1b\x65\x26\xb4\x83\x34\x73\x31\x13\x0a\xba\xc7\x74\x75\xf7\x98\x42\x0e\xf4\x4c\xb6\x32\xab\x5a\xc9\x2e\x05\x4a\x7e\xe7\x94\xea\x2b\xbb\x8d\xb9\x95\x5e\x47\x9f\x61\x34\x45\x91\x66\x89\x6d\x6a\x62\xc5\x78\x6f\xef\xa8\x93\xe0\xc1\xa9\x66\x0e\xd2\xa4\x8a\x46\xb1\x9d\xf5\xb9\x14\x2e\x6c\x09\xb0\xa0\xe5\xb4\xd7\x58\x59\x06\x03\x70\x76\xbc\x19\xed\x0c\x35\x06\x13\xc7\x36\xe9\xcb\x00\xb0\xba\x24\xf6\x8d\x48\x4d\x2a\x31\xa4\x74\x60\x33\x9b\x14\xbc\x90\x11\xf8\xa3\x05\x88\xaf\x35\x06\xa5\x28\x7b\xeb\x44\x64\x03\xc3\x75\x5b\xef\x6b\x26\x34\x60\x26\x68\x1a\x3a\x4c\xee\x75\xb5\xcd\x06\xe9\xea\x8c\x07\x1c\x72\x42\x1e\xb5\x46\x78\x86\x02\xaf\xf6\x28\xe0\x61\xba\x1a\x91\x20\xdb\x02\x7b\x44\xd7\xb4\x54\xc8\xb5\x40\xd1\xe4\x82\x04\x92\xaf\x61\x6e\x79\x0f\x63\x03\x81\xe3\x19\x79\x2f\x6c\xa6\xb7\x14\x61\x5e\x5e\x19\xc6\x9c\x08\xf3\x30\x59\x68\x61\xe1\x5c\x15\x3d\x1d\x90\x37\x0f\x90\x7b\xa5\xaa\x9b\x02\x9c\xda\x32\xd1\x05\xb0\x35\x26\x74\x83\xf3\x7c\x49\x85\x42\x97\xa6\x4e\xc9\xdd\xbb\xdb\xcb\x59\x4a\x98\xd3\xbf\x41\xb3\x74\xf3\x6e\xdc\xf7\xdc\xfe\xf6\x6a\x64\xd7\xc8\xc0\x49\xec\xe8\x4f\xfb\x77\xa7\x98\xd1\xf6\x2c\x82\xae\xd6\x64\xbd\xe8\x25\x46\x6f\x8b\xd7\xef\x0b\x1d\x77\x35\x49\x4d\x53\xa1\x63\x1f\xa1\x6e\x95\xc3\x71\x31\x50\xed\x55\x3f\xc3\x5a\xc3\xcd\x0d\x05\x08\xc9\x47\xd6\x86\x03\x6e\x18\xe0\x2e\x0f\x0c\x9f\xb4\x7c\x34\xa9\xe4\xaf\xda\x6c\x5b\x35\x0f\x18\xfb\x6d\x34\xf6\xb0\xc6\xaf\xd7\x94\x7f\x3c\x98\xe4\x02\x59\x56\x47\x89\xed\x1a\x9b\xde\xae\x91\xd1\x27\xab\x36\x2b\xa2\x6e\x4c\x1d\x07\x1b\x77\xb0\x42\xf0\xa1\xdf\xc7\x53\x71\xd3\x4c\xe0\x4b\x29\x97\x34\x12\xf7\xe2\xd4\xfe\xdb\xbd\xd0\x36\x49\x12\xad\xda\x2c\x37\xdc\x46\xc1\x5b\x35\xf0\x76\x4b\x0b\xbf\x77\xb3\x34\x5d\x61\x6a\x0c\x09\x38\x69\x17\x49\x5c\xaa\x02\xdb\xa8\x58\x7f\xa4\x72\xd6\x85\xca\xc2\xcb\xf4\xdd\xa7\xd3\x12\x7e\xf8\xdc\x44\xa5\xb6\x5e\x0f\x3c\x74\x72\x4b\x47\x39\x29\x77\xc7\x0a\xac\xca\xdc\x5a\x48\x4c\xdd\xab\x4b\x98\xd1\xa0\xe0\xcf\x98\x4a\x18\xef\x7e\x3b\xf0\x5a\xdb\x97\xe1\xe2\x8b\x3e\x07\xad\x04\x79\xc8\x69\xda\xf2\x76\x6e\x63\x0f\x55\x42\xbd\x02\xce\x1b\x5f\xab\x6a\x98\xe9\xa6\x71\x94\x83\x6c\x12\xa6\xeb\xaa\xca\xe2\x5d\x6d\x5a\x2e\x2b\x82\x4d\x42\xc5\xe9\xf0\x58\x31\x25\x1c\x0e\x3c\x25\x75\xf2\xcc\x6a\x6b\x53\x60\xe7\xab\xb8\xe7\xb4\x94\x74\xd4\x1f\x70\xc5\x91\x89\xb9\x03\xdf\x2e\xe6\xb9\x1c\x7a\xa6\xdb\x8d\xc5\x9b\x14\x20\x2d\x8d\x38\xdf\x28\xe2\xa3\x95\x28\xe9\x3d\xa8\xaa\x84\x63\xd5\x7d\x09\x96\x69\x41\xd5\xfb\x7e\xc1\x07\x3b\xaa\x51\xf4\x26\x41\x3f\x74\x2a\x55\xe4\x0b\xe8\x25\x58\xad\xb8\x81\x86\x64\xb1\x9d\x8f\xa2\x58\xf3\x4c\x9e\x57\xed\xbd\xe7\x1b\xe8\x51\x16\xdb\x26\x8e\xa9\x07\x83\x85\x7e\x01\x15\xc1\xd1\xf6\xaf\x69\x15\x20\xd0\xbb\x33\x65\x27\xf6\xee\x6d\xf7\x6c\x28\x4a\x18\x48\xd5\xc0\xf6\xf2\xb5\x72\xb0\xbb\x65\x1c\xdb\x22\x9f\x51\xfc\x33\xc0\x53\x49\xa9\x82\xde\x1e\x41\x5a\x63\x26\x2b\x36\xfd\x7e\xdd\x93\xb9\xa8\x3d\x99\x8b\xc1\xe3\x8a\xc2\x1c\x6d\x6e\x8f\xd2\x1f\x23\x8b\x7c\x1f\x3d\x2f\x38\xc9\xae\x50\xbc\x8b\xa4\xcf\xcf\x18\x8a\x82\x4d\x74\x02\xee\x2e\xff\x99\xd6\x39\xfe\x74\xac\x78\x93\x6f\x07\x5b\xbf\xe8\x69\x7e\xaa\xcd\x85\xff\x7f\x35\xf0\xe7\xc1\xad\xb1\x9a\xd0\x6f\x22\x6b\xaf\x95\x6b\x98\x04\x0f\x6b\x03\x1d\x17\x3f\x41\x80\x2e\x9a\x36\x9b\x8d\x3b\xc1\xf3\x42\x9b\x14\x36\x71\x64\xa2\xf8\x20\x84\x97\xf9\x7a\xd2\x44\xc4\x91\x99\x64\x45\x86\x0f\x79\x8b\x8f\xc6\x2a\xef\xfd\x91\x8a\xd5\x57\x4d\x5c\x32\xf1\x06\x42\x5d\x28\xba\xb3\xca\x5b\xa0\x31\x69\x53\xad\x01\x7b\x16\xff\xbf\x04\x2c\x9b\xa1\x80\x07\x97\xe6\xdb\xbd\x74\xc6\x37\x79\xb0\xb0\x33\x13\x52\x8c\x35\x6c\xce\x03\x5b\xaa\xff\xe4\x2d\x9f\x0f\x3e\x4b\xa7\xb9\x98\xbc\xcd\x29\xc6\x7f\xd0\xee\x5b\x60\xb3\x11\x8d\x1c\xc5\x4f\xf0\x8d\x4a\x5d\x96\xcf\xac\x3c\x33\xa7\xd4\x53\x8e\x4f\x53\x18\x3c\xcb\x4f\x76\x5a\x9d\xa9\xa7\x03\x25\x80\x70\x4b\x0d\xe7\x28\x4b\x57\x19\x7f\x2f\xb2\x07\xf4\x15\x5c\x24\xc2\xba\xd4\xa8\x42\x36\xc0\xc8\x89\xf0\x3f\x4c\xf5\x80\x1d\x24\x4e\xd9\x91\x4d\x7a\xec\x06\x22\x9d\x77\x02\xa7\x0b\xdf\x4c\x03\x3c\x9f\xdb\xdf\x1e\x99\x28\x29\x24\x27\xc1\x5c\xfa\x34\x3b\x38\x39\x98\xe7\x4e\x08\x1f\x36\x4f\xd5\xaf\xb6\x93\x34\xb1\x2d\xb2\x11\xc2\x0a\xe4\x73\x78\xc7\xa6\xb0\x3e\xd5\x73\x8e\x6c\xb6\x9c\x66\x43\x31\x9e\x0c\x0b\xc2\xf2\x13\x8c\x90\xf7\xd2\xfa\x65\x14\x17\x2c\x5e\xca\xea\xe1\x81\xc7\xa2\xbe\x13\x78\xa6\xa1\x8b\x0d\x79\x64\x3b\x4a\x5b\x5a\x89\x82\x76\xba\xa8\x52\x34\x75\xba\x41\x31\xc6\x01\xc0\x9c\x2f\xe7\x9a\x52\xd0\xbc\x8b\xc1\x79\x43\x9d\x5d\x79\x14\xaf\x5a\x76\x02\x18\x32\x38\xf6\x38\xd9\xa3\xc1\xe7\x7d\x0f\x2b\x09\xb0\x44\x31\x37\x53\x3a\x84\xc4\x6d\x5a\xb0\x42\x0d\xdd\x84\x52\x34\x79\x1e\x91\x82\x1d\xfd\x0a\x5e\xe3\x98\x4a\xe2\x1c\xf3\x88\xc8\xc1\x3a\x31\xb6\x52\xfe\x0d\x08\x6e\xce\xac\xf0\xcd\x64\xf3\xf7\xef\xde\xdd\x8e\x12\x13\x86\x65\x66\x42\x26\xa0\x42\x97\xf6\x5f\xd2\x84\xf2\x75\xf0\x39\xdf\xad\x17\x86\x51\xcf\x26\x20\x0c\xd2\x0d\x59\x2d\x25\xbb\xb6\xc3\xfb\x33\x18\x1a\x16\x59\x1a\xab\x22\xce\x35\xd5\x87\x95\x97\xf1\x72\x89\xce\x78\x91\x48\x57\x72\xe9\xea\xeb\x86\x87\xea\xac\xbd\x8a\x7a\xd9\x47\x1f\xcf\x3c\xfb\x4c\x4b\x51\x76\xe0\x47\x85\xbf\xa3\xc1\x99\x58\xa6\xbe\x65\xd7\x00\xca\x84\xf3\xf0\xc6\x8f\x2b\x2b\xfd\xc3\x40\x73\x81\xe1\x58\x70\x70\x00\x97\x71\xbf\xd8\xa8\x1c\x60\xfa\x49\xe5\x10\xb1\x33\x22\xa2\xf9\xf4\x64\x22\x9d\x3a\x0d\x05\xde\xd7\x1e\x0d\x4c\x36\x34\xa1\x2d\x8b\x28\x34\xb1\xe4\xcc\x70\x2c\x73\xdd\x8f\x6f\x54\x71\x24\xb7\xa6\x68\x29\x5a\xaf\xf7\xc9\x71\xe4\xeb\xa9\x44\x99\x54\x2b\xf2\x74\xbd\x6b\x4d\x32\xe3\xa7\x1d\xa8\x28\xc4\x59\x37\x6b\xfa\x49\x8d\xd8\x9d\xbc\x28\x47\x11\xef\x6e\x31\x93\x2d\x45\x49\x23\xf9\x8c\xa2\x0c\xdd\x21\xc4\x5a\xf3\xc8\xc1\x8a\xf0\xbc\x92\x26\x4f\x2b\x27\xd2\x48\xa3\xd1\xd7\x7d\x0b\x5d\xe5\x8a\x4a\x5d\xc6\x47\xae\x36\xcb\x58\x1d\x0e\xfe\xc0\x3b\x5a\x91\xe1\x9d\x29\x04\x5b\xb5\xf3\x57\x53\x9f\xe8\x84\x41\x81\xf3\xc2\xd7\x81\xea\x44\x8a\xa3\xd1\xa8\xb2\xe1\x4b\xf3\x1c\xb3\xdf\x85\xd9\x16\xb5\xd4\x6a\x94\xe1\x40\xfc\x68\xec\x43\x47\x4e\x6b\x8b\x88\xd7\x67\x81\xfa\xba\x26\x8a\xa3\xe5\xe5\x1c\x7b\x57\xa4\x5a\xb5\x6e\xab\x63\xea\xce\xc3\x41\x96\xf6\x6c\x26\xcb\xc1\x35\xe3\xfa\x8d\xde\xdc\xcf\x43\xd4\x30\x35\xa4\xb2\x06\xa8\x9d\x56\x7e\x73\xaf\x17\xb5\x34\x9b\xb7\xc2\x8f\x7d\x5c\x19\x03\xc9\x78\x85\xa1\xc9\x15\x4c\xdd\x2b\x0f\x78\x5f\xfe\xe8\x94\x07\xe3\x70\x8c\xd1\xca\xc0\x44\x71\x0b\x35\x0d\x29\x8f\x29\x44\xda\xc5\x06\x35\x49\xf4\x79\xf7\xa3\xcc\xb7\xed\x0b\x78\xb2\x9a\x36\x49\x0c\x56\xbf\x2f\x35\xf8\x26\x8d\xd4\x5e\xc9\x01\x84\x78\x0a\xda\x0b\xf5\xcc\x6d\xa1\x89\x63\x66\x85\xc0\xcc\x6e\x23\xb6\x24\x21\x74\xa0\xe9\x41\x1e\x99\x61\x83\x92\x20\x9b\xaa\xc2\x2f\xb4\x4d\x2f\x63\xe0\x2e\x8e\xd5\x99\x8e\x4f\xe9\x5d\xd4\x7e\xe5\xcd\x29\xa0\x79\xe5\x50\xd9\xc2\x78\xd8\x22\x23\xdc\x03\x4f\x07\xf1\xca\x58\x55\x3a\x3f\x51\xfd\xc2\x26\x0e\xd3\x41\x1a\xb7\x3c\x55\xe9\xeb\x64\x5c\xf9\x5a\xe5\x8d\x7b\x96\xb0\x56\xd2\x04\x8a\xe8\xe4\x0c\x32\x2f\x7c\x33\xd6\x24\x8e\x36\xeb\xaf\x0b\x90\x8a\x41\x3c\x2a\x1f\x74\xd2\x15\x21\x96\xd3\xac\x1f\xad\xda\x64\x46\xd7\x04\x15\xdf\xc8\x19\xd5\xc7\xb3\x4f\x85\xcd\xa1\xc9\x46\x95\xb7\xb6\x7b\x41\x2b\xd3\xec\xfb\x1b\x7a\x5d\xf6\xb5\xbb\xe5\xba\x84\x86\xe2\x66\xd3\x1a\xf9\x2c\x85\x48\x62\xdb\x42\xaa\xfc\xf9\x79\xce\x3e\xb3\xf4\x12\xdf\x28\xce\xed\xe7\xfe\xc9\x9c\x07\xd6\x7d\x34\x56\x00\xd2\xbb\x8a\x00\xfe\xd1\x8e\xca\x0f\xef\x24\x88\x3c\x2a\x47\xf7\x54\x1f\x74\xd9\xed\xa6\x59\x02\xbc\xa2\x70\x9d\xd0\xf7\xe1\x57\x51\x7c\xe2\x6e\x00\x07\xda\xb2\x49\xdf\xf4\xeb\x52\x82\x77\xb5\x94\xe0\x5d\x75\x08\xee\xfe\xd2\xfe\x39\xda\xb5\xd2\x91\xa3\x5b\x4e\x4f\xe2\x53\xf4\xfd\xdf\x7a\x92\xd6\xa1\xca\xa0\x32\xa7\xdb\xa3\x8f\x4f\x76\x4d\x41\xf6\x7a\x94\x87\x76\x0d\x0c\x95\x65\x73\x2d\x78\x8e\x16\xaa\xc6\x50\xad\x50\xd9\xfd\xcc\xf4\xca\x2a\x64\x71\xe1\xe4\x0d\x32\x9a\x7c\xad\xd2\x20\xd6\x84\x83\x1d\xfa\x89\x99\x5b\xc6\x89\xcb\xb9\xd1\x86\xf4\x23\xce\x98\x07\x3b\x4a\xcd\xe7\x36\xa5\x87\x80\x35\x60\xec\x94\x83\x56\x54\xd3\x8b\x93\x9b\xf1\xa9\xa8\xd9\x7d\x8f\x16\xa2\x50\xfa\xd3\x10\x09\xe0\xce\xaf\x4a\x12\x5b\xe8\xcd\xd6\xd8\x9e\xab\x47\xc0\x7c\x7f\x3c\xd6\x5d\x52\xde\x56\xfc\x99\xea\x4f\x18\xc5\xe9\xba\xd8\x6e\x21\x21\xa7\x1f\xe3\x1b\x45\xb7\x18\xda\xcc\x0e\xd3\x64\x1d\xc9\x6b\xd9\x84\x2d\xa7\xf2\x70\x9a\x7e\x5a\x9d\x16\xbe\xcb\xdc\x27\x7f\xe3\x34\xe9\x17\xd1\xd0\x6e\xf3\xac\xeb\x00\xc3\xe3\x3b\xee\x2a\x06\x1d\x96\xac\x77\x10\x81\xea\xa9\x1c\xa5\xf5\xa2\x93\xdd\x9a\x56\x92\x82\x03\x90\xa6\xbd\x56\xdd\x47\x52\xb4\x57\x81\xef\xdb\xa9\x96\x52\xbe\x19\x93\xee\x1a\xa9\x15\xff\x4c\x66\xd9\xf5\x9d\xf5\x61\xee\x71\x9c\xba\xc0\x82\x43\x19\x8c\xff\x01\x27\x2d\xff\x43\xb0\x99\xf2\x9f\xd2\xe6\x55\xdc\x9c\x91\x24\x8b\xcd\x5a\x3a\xa4\x03\x8e\x88\xaf\x15\x3b\x59\x94\xf4\xca\xbc\xc8\x22\x13\x23\x18\x76\xb9\x47\x47\xce\x00\xc2\x19\xac\xfc\x56\xc7\x2f\x94\x81\x35\x3d\xe1\xf0\xd4\xe9\x34\x41\xed\xf8\xc2\x19\x22\x48\x89\xf8\xe4\x98\x4f\x57\x6d\x96\x47\xfd\x41\x41\xf3\x26\x29\x4b\x9f\xd3\x61\x05\x0a\xf8\xa9\x9c\xa0\x46\x18\x71\x7d\xac\x53\x69\x35\x7e\x63\xd7\x48\x32\x88\x5e\x7a\xc9\xe6\x34\xac\x8e\x81\xbc\x9a\x39\x55\xca\xdb\xe7\x1c\x70\x25\xbb\xb5\xd1\xc4\x61\x4c\x7b\x02\xb2\x58\xcc\x51\xa9\x49\xc8\x8e\xd0\x43\x03\x6c\x34\x33\x05\xfd\x5b\x9a\x6f\x8f\x62\xb3\x6e\xb9\x59\x03\x11\xfe\x1d\xec\x51\x24\x97\xff\x4b\x82\xce\xe2\xe0\xa0\xaa\xc0\xbe\x8d\x77\x1b\x39\x34\xe2\x38\x5d\x63\xf9\x12\x4c\xe4\xcd\x40\xa9\x0e\xc0\x42\xc1\x3f\x3a\xac\x10\x55\x59\xd9\x8d\xab\x91\xd8\x23\xec\x3b\x4c\x6a\xeb\xf8\x06\x96\xa4\x1b\x96\xa9\x6f\x85\x7c\xa0\x69\x0f\x74\x6d\x3f\x02\xd5\x2b\x00\x5f\x57\x61\x5f\xf8\x46\xd9\xe7\xb4\x1c\x6d\x57\x6d\xd0\x81\xea\x4c\xe7\x76\x37\x69\x8c\xd0\x25\x9b\x8b\xea\x9c\x41\x92\x14\x9b\x8b\x11\x7d\x4e\xf4\xe7\xcb\x07\x79\xa3\xdf\x0c\xbc\x68\x26\x97\x6e\x60\x12\x6f\xe8\xda\x8b\x79\x31\xcd\xb6\xe3\x77\x58\xca\x2c\xf0\x61\xc0\x79\xfd\xdd\x1b\x63\x85\x7a\x45\x2d\x47\x88\x67\x55\x21\x66\x03\xa6\x08\xcf\xf9\x29\x4c\x37\x50\xfb\x0c\x30\x55\x44\x46\xfb\x85\x56\x7a\x2a\x34\xdb\xbb\x97\xf0\x0b\x2d\xe5\x04\xc3\x37\xe7\x6b\xb5\x4b\x49\xe3\x3d\x2a\xca\x82\x85\x53\x44\x68\xc1\x37\x44\xfe\x40\x61\xca\xf3\xa1\x8d\x0b\x86\x49\xef\x73\x4d\x25\x2d\x27\x57\x78\x4e\x51\xbc\x65\xb6\x5f\xc6\x26\x8b\x8a\xf5\x56\xad\x74\x52\x7d\x92\x6f\x1a\x1d\x91\xa1\x29\x0a\x08\xe6\x7e\xdd\x81\x26\x14\x80\x42\x15\xcb\x4c\x58\x3c\x52\xad\x04\x0c\xd0\xe3\x1d\xc5\x09\xc5\xe5\x48\xfc\xce\xbf\x24\x9b\xa3\x51\xc5\xd8\x52\x0f\x75\x6a\x42\x99\xd5\x7c\x23\x63\xb7\x45\x2b\x50\xce\xa1\xa1\x0f\x1f\xd9\x36\x21\x4b\x89\x81\x67\xf0\x17\x0e\x80\x1f\x20\x2d\xe5\x48\x5c\x16\x0e\xb8\xae\x2f\x9f\x1b\xff\xfc\x94\x62\x6a\xf5\xc6\x71\x54\x94\x59\x7f\x9d\xad\xaa\x63\x5a\x57\x9d\x08\x4a\x91\x82\x68\x51\x08\x3d\x8e\xcd\xc9\x04\x61\xcc\x2a\xda\xf1\x27\xd2\x15\xc5\xe7\xf3\xcf\x35\x3d\x3b\x8d\x86\xf0\xf8\x7b\x45\xcb\xfb\x53\xee\xfe\xd2\x7c\x3b\x76\xac\x03\x5c\xd1\x0c\x54\x40\x73\x56\xe3\x3a\x4e\x2a\xca\x24\x9b\xbc\x98\xae\x83\x90\x51\x93\x22\x23\x36\x79\x43\x11\x5c\x9f\x68\x70\x2b\x29\x0a\x97\x68\x4b\x25\x1b\x17\x5c\xb2\xb1\x81\x20\x63\x94\xa5\xcb\x58\xee\x8c\x31\xa7\xe1\x13\xbc\xf9\x74\x1c\xd3\x5e\xce\x6c\x3e\x20\x7f\x4a\xb7\x62\xf0\x75\xbd\x16\xd1\x57\xb2\x87\xdf\x21\x99\xee\x77\xb5\x5a\xeb\x61\x95\x3a\x37\xdf\x28\x4d\x16\x95\xc3\x96\x82\x9f\xbf\xae\x2a\x6f\xaf\x4f\xa5\xa9\xaa\x67\x1f\x44\x55\x80\x4c\x30\x56\x57\xaf\xdb\x06\x5f\x98\x6f\x26\x4f\xd6\xfb\x0c\x17\x17\xdb\xfb\x16\x0e\x28\x39\xd2\xd3\x8a\x40\xfb\xb4\x02\xf4\x2f\x47\x89\x49\x42\x42\x41\xb8\x2c\x13\x97\x2f\x5d\x66\xd9\x05\x7f\x3c\x9f\x70\x5b\xae\xa8\x1a\xfe\x28\x4b\xbb\xb1\x1d\xe6\x3b\x69\x4a\xf1\x2d\xd7\x81\x2d\x73\x7c\x31\x0b\x07\x6a\x6c\x55\xa8\x07\x3e\x00\x08\x26\x4e\xb3\xeb\x81\xda\xa0\xd0\x09\xc1\xf5\x75\xb8\x1f\x42\x37\xe3\x3b\x0c\x6f\xd1\xb2\xc5\xc1\xba\x05\xea\xe4\x48\xcd\x5e\xa2\x75\x8b\x73\xfa\xb2\xb2\x08\xfb\x96\x9e\x83\x69\xc2\x70\x03\x1b\xc8\xd7\xc1\x2e\x87\x8d\x5a\xb5\xb1\x4d\xfa\xc5\x80\x73\xec\x48\xbe\x9e\x52\xb2\xe9\xa7\x5c\x73\xcc\xc0\x64\xbd\xf5\x39\x3f\xd0\xe7\x15\x02\xee\x8c\x3e\xd5\x7e\xac\x92\xd9\x5b\x3a\x4a\x98\xf9\x2f\x94\x4d\xb4\xc3\xca\x85\x1d\xda\xa4\x98\xa3\x44\x0c\xf7\x24\x04\xad\xa7\x9e\xf2\xfd\x09\x3e\x32\x3f\xab\x48\x95\x10\xf4\xc2\x67\xd9\x3e\x51\x5e\x75\x31\xa8\x5c\x42\xa5\x23\xf7\x9b\xaa\x7f\xf6\x37\x55\x68\xd0\x8f\x96\x0b\x45\x5d\x77\x98\xc6\x90\xaf\x6b\x6d\x1d\xcb\x45\x48\x4b\x0b\x09\xfc\xd7\x54\x6b\xd3\x6b\x8a\x27\x32\xf5\x55\x4a\x1c\x57\x37\x55\x53\xff\x4d\x15\xbc\x84\x36\x2b\x4c\x94\xec\x50\xfa\xd9\x0a\x2c\xfd\x5e\x50\xc7\x43\xef\x59\x74\x1a\xb2\x4a\x13\xf8\x7b\x63\x0f\x2f\xf8\x89\x6e\x98\xe6\xc6\x75\x04\x7f\x9c\x56\x62\xfa\x46\xb2\x39\x98\xcf\x5b\xe3\x5a\x7b\x53\x13\xd7\x43\xd7\x24\xbd\x34\x99\xd5\x55\xe3\x5a\xa5\xb6\x7a\x62\x44\xda\x97\xc6\xbe\xb6\xfb\x3f\x37\xf6\x7a\x75\xa3\x38\x8e\x52\x11\x87\xc5\x80\xbc\xa1\x3d\xf5\x37\x54\x69\x2f\xab\xbc\xdd\x0c\x02\xb9\xae\xfb\xc4\x93\x1e\x8c\x55\x8b\xe4\x65\x45\xa2\xcc\x9c\x45\xc8\x82\x7c\xac\x92\x11\x86\x74\x02\x88\x12\x4f\x75\xa2\x73\xe3\x0a\xdf\xa8\x84\x95\x89\xe3\xc7\x29\x51\x81\x66\xba\x8f\x74\xe6\x71\xac\x42\x92\xb3\x74\xa4\xc1\x1d\xbb\x3d\x56\x0e\x34\xc3\x74\xe1\xd2\xb3\x97\x82\x25\xfb\x81\x06\xd5\x3c\xa8\x34\x96\x5f\x65\xd7\x0c\xf3\x39\x3b\x51\xd5\xaa\x0f\xc7\x9e\x64\xf8\x3e\xf6\x02\xcb\x6d\xd0\x71\xe6\xb4\xd0\x1c\x03\x3a\x89\x85\x6f\xb0\x06\x0d\x8e\xef\x19\x87\xe0\x5a\xae\xa2\x00\x97\xee\x92\xe4\xac\xea\x28\xfe\xa1\xaa\x4e\x6c\x99\x34\xb1\x23\x46\x49\x21\xc4\x26\x2a\x50\x38\xaf\x8a\xdc\xe7\x95\xbd\xfd\x46\x19\x85\x2b\xab\x91\x5d\x9b\x55\xd5\xc1\x33\x81\xe6\x69\xfd\x4e\xa0\xaa\x88\x9c\x8a\xe6\x7f\x19\x6b\xfd\xb8\x51\xd1\x52\x76\xfa\x18\x8e\x40\xb1\x91\x1a\x47\x13\x85\xc5\x36\x9f\x83\x81\xec\x19\x7c\xce\x5b\xf0\x39\x31\x4f\x7f\x49\xb5\x1c\x5c\xdf\x56\x7c\x3c\xec\x34\x63\x2e\xce\x4f\x1d\xc8\x7b\x16\xdb\xcb\xd1\xa1\x4d\x4a\x47\x3f\x55\x4a\x47\x3f\xd5\x9c\xca\x51\x3f\xc9\xc1\xf1\x27\x4b\xa0\x5a\x35\x0e\xf9\xe9\x65\x8f\x3f\x52\x9d\x40\x60\x1e\xe4\x3f\x6a\x20\x69\x1f\x46\x49\x99\xcf\xb6\x76\xef\x66\x1b\xd9\xa2\xa5\xa4\xd4\x1a\x25\xff\x77\x5c\xe9\x68\x9c\x6c\x24\x82\xa9\x4b\x92\x4a\x9b\x09\x3d\x30\xdf\x34\xd1\x6f\xf5\x4c\xb6\x42\x96\x13\xcb\xef\x0f\xc7\x1e\x89\xf5\x87\x5a\x51\xb4\xcc\x6d\x09\x69\x16\xf4\x13\x6c\x25\xca\x07\xbe\xee\xf8\xc9\xed\x95\x2b\xdc\x43\x85\x7f\xfb\xf3\xb1\xff\xcc\x9f\x37\xf0\x55\x7e\x1d\x54\xdf\xf2\xd8\xd8\x1d\xdf\xc6\x8a\xe0\x9b\x26\xa2\xfe\x28\xc9\x09\x2f\xac\xa8\x94\x90\xdf\x95\xfc\xbf\xe7\x08\xa8\xac\xdf\x9a\xe9\xa7\x09\x88\x2e\x5d\x19\xd9\x6b\x2c\x68\x6e\xbe\xe5\x28\x1f\x08\xb9\x9c\x20\xbb\x5a\x8e\x1e\x6b\x4b\x43\x93\xda\xd7\x51\x97\x9c\x55\x0d\x12\xdf\x1e\xfb\x94\x27\x32\x29\xd8\xbd\x27\x34\x25\xd3\xf9\xda\xc1\x54\x2e\x2f\x3f\xe8\xd9\xe2\x51\xb0\x56\x22\xf9\x42\xb3\x3b\x0e\xbc\x15\x1f\x93\xb7\x2b\x15\x4c\x9f\xa9\x60\xa2\x7f\x3c\xca\x51\x0d\xe8\x3a\x5a\x6f\x71\x4c\x92\x96\xd2\x06\x3b\xab\xf0\x35\x3a\x14\x09\xa3\x74\xce\xbb\x3d\x8c\xdb\x43\x86\xf3\x08\x1e\x8d\x6f\xc8\x23\x41\x90\x70\x1d\xc3\xcb\x47\xbd\x8a\x2a\xcb\x24\x4a\x93\x07\xfc\x81\xc3\x31\x3d\xd2\x08\x6c\x3e\xe0\xa9\xfe\xf9\x58\x81\x38\x39\xdb\xe0\x84\x3b\x3c\x91\xd8\x45\x1a\x10\x34\x2e\x5c\x50\xfd\x48\x61\xd4\xb3\x1c\xf6\x63\x27\xb2\xe3\x02\xdb\x08\xb4\xac\xe4\x3f\x54\x0f\xbe\x89\x3c\x09\xa0\x6b\x74\x75\x4e\x1b\x68\x8b\xa4\xc0\xda\xe0\xdf\xa7\x65\x5e\xd4\xda\x92\x39\xdb\xc5\x37\x6a\x54\xd7\xd2\x74\xd6\x07\xca\xff\x94\xe4\xcb\x1c\x9c\xed\x79\x89\xd6\xee\x61\x1c\x25\x3f\x2e\xb6\x3f\xb1\xe1\x4a\x11\x49\xd2\xd7\xd1\x51\x57\xef\x27\xa8\x61\x8f\x73\xed\x67\xe9\x1a\x36\x17\x8a\x8a\x47\xf1\x48\x7c\xd3\xe4\xb5\x47\x49\x5e\x64\x25\x98\x67\x85\x00\x71\x37\x0e\x68\xbe\xae\x33\xd0\xf5\xa5\x84\x09\x1b\x76\x58\x97\x05\x0f\x6b\x5e\x06\x9b\x14\xd5\x46\xdc\xe6\x75\x40\xd9\x27\x94\x7e\x4b\x6f\x7a\x4f\x28\xc6\xdd\x73\x58\x66\x0a\x17\xe9\x40\x92\x2e\x7f\x38\x2c\xe3\xe5\x34\x03\x72\x5a\xd2\xe5\x8a\x8b\x4c\xf1\x22\x65\x96\x32\x77\x2d\x9f\xe0\xbe\xa6\x14\x4c\xaf\xb9\x8a\x9a\xb1\x59\x9a\x8f\x4c\x68\x55\x44\xca\x7e\xbe\x93\xa2\xad\xec\xb3\x9c\x76\x2d\x27\x96\xcd\xe5\x75\x21\xde\xab\xde\x96\x29\x70\x38\xe1\x2e\xba\x0b\x4a\x47\x2f\xcd\xf2\x02\x22\x22\x8b\xbe\xdb\xc5\x0d\x7e\x23\xdd\x42\x31\x30\x49\x4b\x71\x18\xdc\x20\xa3\xc1\xd7\xaa\x3a\x1f\xa6\x49\x1e\xe5\x85\x4d\x8a\x78\x7d\x4e\xe9\xf8\xde\x08\x14\x3b\x17\x0b\x70\xe0\xa4\x00\xea\x03\x79\x8f\x53\xba\xfd\xf1\x86\x6b\x82\x8d\x92\xe5\x34\x1b\x9a\x42\x28\xce\xb0\x03\x71\xf4\xf1\xb5\xb2\xc1\x65\x62\x86\xaa\xd0\xe8\xf8\xd0\x3c\x37\xda\x94\x91\x5f\x9a\x6f\x77\x53\xc0\x62\xe9\x33\x2e\x9f\x5d\x3d\x8d\x54\x3f\x55\x71\xd2\xac\xef\x54\x0c\x79\xc7\x29\x02\x80\x79\x07\xf4\x0a\x63\xfe\x21\x26\x10\xe5\xb9\xf7\x14\xab\xcc\x2d\x2c\x2b\x41\x49\xfb\x0e\x28\x56\x10\x04\xc4\xf2\x08\x22\x43\x18\x39\xc6\x09\x31\x25\x04\x0d\x3e\x3a\x73\xdf\x84\xe9\xc2\xd4\x5d\x6d\x6a\x92\x2d\x32\x6b\xf2\x32\x73\x19\x7f\xe9\x34\xa2\xd9\x94\x56\xa5\xcd\xb5\xff\xa5\x79\xa2\xde\xce\xd2\x51\x9a\x11\x0f\x18\xab\xd5\x23\x88\x04\x28\x81\xaf\x1b\xe1\xc2\xcb\xd4\x29\xe4\x78\x75\x6f\xd1\x10\xe9\x44\x8e\xd8\x71\xbd\xb9\x63\xbb\x4e\xeb\x5f\xd0\x91\x8a\xe4\xf8\x0f\x31\x96\x9a\xdd\x8d\x51\x39\x63\x45\x62\x75\x4e\xef\xd7\xd9\x4e\x8d\x08\x76\xda\x8d\xa9\xb6\xa7\x76\x63\x58\x21\x57\xd3\xaf\x5c\x54\x55\x93\x22\x33\x65\xb7\x36\x86\x27\xf1\x73\x7c\x33\x85\x42\x7b\xe1\x05\xe2\x5b\x4d\x40\xcd\xe7\x12\x6c\x00\xda\xf3\x75\xb5\xaa\xdc\xfb\x7f\x91\xc8\x35\x91\x6d\x81\x62\x26\x0e\xae\x17\x14\x20\x8b\x8b\x2c\x42\xfa\xe1\x91\xc6\xb9\x89\x6d\x3e\x02\x17\x0d\x0d\x09\xec\xc3\xed\x40\x95\x91\x6e\xab\xe4\x52\xd7\x64\x69\x32\x53\x1d\xa3\xa8\xea\x6c\x21\x52\x57\xe9\x29\xaf\x2d\x0e\xd7\x24\x9a\x96\x49\x4b\xe3\x14\x5f\xc7\xdf\xf1\x4d\xf0\xa4\x42\xf0\x5b\x1b\x0f\xcd\x8a\xcd\x72\xf0\xd5\x0a\x4b\x81\xc7\xdf\x4d\x14\x37\xee\x84\x16\x34\xff\x8d\xaa\xbe\x8c\x62\x13\x12\xd5\xfd\x5c\xe5\xb5\x3a\x3e\xca\x2f\x1f\xdc\x00\xb3\xae\xc3\x5e\xef\xdd\xeb\x24\xe0\x88\xac\xe2\xd8\x67\xf2\x38\x2f\x9b\x08\x84\x6d\x28\xce\xc3\xfa\xe0\xa0\x66\x23\xce\x61\xb3\xe2\xf1\x1b\x95\x04\x25\x9e\xad\x5c\x20\x98\xb3\xd9\x8e\x67\x0e\xa2\x34\xf8\xc6\xab\x63\x4f\x69\x78\x59\x05\x20\x95\x47\x88\x23\x1e\x31\x1f\x5c\x34\xa9\xb8\xb6\x1c\x8f\xc8\xc9\x29\xa3\xb4\x67\xb1\xfd\x77\xbf\xf2\xeb\xfb\xbe\xf2\xa5\xc5\x87\xbd\xb3\x76\x15\xd3\x89\xd5\x79\x54\xb7\x01\x3f\x82\xc4\x0e\x52\xaa\x3f\x4f\xed\x7d\xd2\x15\xd8\x72\xd4\x44\x6f\x13\x00\x74\xe3\x12\x95\x26\x11\x92\xb7\x3a\x0a\xcc\x7a\x7f\xec\x41\x17\x52\xb1\x45\x80\x30\xdb\x21\x50\x28\xbe\x9e\x19\xd5\x90\xf9\xba\x51\x6b\x56\x8a\x87\x9c\x44\x81\xdd\x3a\x89\xdd\xc4\x37\x6a\x37\xd9\x2c\xed\xd9\x99\x3a\x89\x8b\x83\xec\x42\x80\x14\x7b\x7a\x66\xe2\x53\x2f\x03\x52\x09\xad\x4c\x24\x6b\x80\x4c\xbc\xce\xc1\x96\x8e\x42\xca\x14\x26\x89\x2d\x12\xe6\xce\x4c\x54\x43\x25\x48\x3e\xcf\xc3\x1f\xc5\x76\x47\xf5\x14\x1b\x97\xd4\x26\xe3\x4e\x3b\xa7\x63\x7b\x70\x9f\xbb\x56\x6c\x42\xe7\xc7\xc4\x6d\x27\x44\x4d\xd5\xc8\x39\x0b\xb7\x34\xcf\x43\x05\x22\x12\xec\x90\xcf\x51\x1c\x43\xa9\x94\xdb\xff\xb0\xa3\xbc\xcc\xf3\x2a\xbd\x14\x99\xc2\xf0\x26\x73\x24\xf2\xd5\x5f\x8a\xde\xac\xef\xaa\xca\x6d\xb6\x2a\x7e\x19\x0c\x05\xf7\xb0\xf1\xcd\xd4\x1e\xa0\x42\x19\xf7\x82\xc2\x1b\x67\xaf\x34\xa8\x7b\xa8\x4e\x15\xc0\xd0\xba\x9f\xf1\x15\xf7\xfb\x63\xc5\x9e\x72\x3c\xf0\x90\xf0\x2b\x0d\x92\xe8\x0b\xed\xd5\xd4\x19\x57\xa9\xc1\x56\x1f\x91\xe2\xec\x66\x54\xe7\x81\xe7\xda\xa3\xb2\x98\x51\xa2\xc6\x87\x69\x54\xd1\x25\xc0\xfe\x90\x48\xb7\x3e\xaa\x8e\xe3\x78\x25\x4d\xb6\x29\x2c\x0c\x1f\x6e\xac\x5d\xc7\xeb\x58\x94\xec\x5a\x8e\x31\xe6\x06\xcd\x8d\xac\x62\x1a\x47\xfe\xbc\xef\x9d\xcd\x8b\x68\x68\x0a\x9b\xc3\x99\x11\xd1\x3c\x7c\x23\x90\x99\xcc\x52\x46\x6b\xe2\xa1\x5d\x94\x5e\x84\x2f\xf0\x29\x56\x91\x50\xac\x28\x64\xb8\x29\x8b\x28\xad\x62\x71\xc7\x7b\xf2\x2e\x4e\x7e\xec\xbc\x2d\x1d\x3f\xb0\xef\x62\xab\xf1\x3f\x4c\x1a\xa6\x34\x8f\x86\x51\x6c\xa8\x81\x6d\x49\xa8\x33\x36\x94\xf4\x09\x4e\x4b\x2e\xa5\xa9\xf8\x23\x34\x59\x3f\x8a\xe3\x59\x95\x5c\x3a\xca\x2f\x26\xc0\x29\x4f\x6a\xfc\x3d\x32\x6f\x7c\xad\x5a\xb5\x7a\x66\x4d\xf2\x73\x70\x3b\xd1\x6a\xc9\xd7\xaa\xe0\x92\x8f\xa2\xc4\xc4\x18\x45\x87\xb4\xf2\x8d\x9f\x1f\xa3\x9d\x55\x60\x57\xd5\x13\xa3\x44\xf7\x11\xde\x5f\xfe\x41\x81\x73\xe2\x28\x89\xc2\xd6\x66\x1d\xca\x05\xc7\xf9\x3f\xbd\x20\xf7\xb5\xf3\x34\xcb\xd6\x01\x4b\x91\xfa\x10\x4d\x1e\x3b\x59\x4a\xb2\x10\xe7\x2f\x6c\xf6\x91\xa0\x86\x8c\xd9\xa5\x00\x4b\xc4\x42\xbe\xca\x5a\x79\xe8\x36\x43\x56\x96\xaf\x1b\x28\x3b\xbf\x4e\x9d\x01\x26\x59\x57\x94\xf8\x6f\x63\xc1\xf2\x8d\x5a\xdb\x44\xac\x5a\x28\x5e\xd5\x2b\x8a\x57\xf5\xca\x54\xa9\xa9\x5a\x0e\x03\x1b\xc7\xb4\x65\xa5\x53\xa6\xe5\x44\xbc\xbe\x4f\x76\x1f\x09\x92\x63\x8a\x94\xb5\x0a\xdb\x8a\xc1\x4e\xff\x2b\x7f\xa2\x01\x91\xaf\xe3\xf5\x51\xcf\xb8\x41\x5f\x81\x2c\x25\x17\xe9\xe1\xbb\xc3\x7f\xc0\x31\xc2\xdc\x31\xb0\x80\x27\x68\x0f\xc3\xa7\x15\x14\xbb\xb4\xdf\xf9\x82\x24\x40\x0c\xf0\x16\x5f\xc7\x5e\x44\x1a\xe4\x4f\x1a\x32\x59\x99\xaf\x6c\x09\xe7\xb5\x0a\x7d\x5f\x99\x1a\x74\x6a\x7e\x4c\xcb\xae\x83\xaf\x21\x72\xdd\x39\x71\xee\x88\xdd\xd5\xf1\x4d\xbe\x1a\xd1\x99\x16\x03\x9b\x7d\x9e\x3e\xe4\xb2\x6c\x4b\x42\x7a\xfe\x1e\x56\x1c\xac\xc2\xd1\xc0\x07\x5f\x87\x29\x49\xe8\xb8\x3d\x74\xb7\xac\xd3\xb4\xbd\xa6\xba\x91\xce\x62\x19\x22\xcd\x70\x1b\x3c\x9c\xc2\x81\x54\xb9\x68\x58\xac\x57\x00\x85\xe3\x64\x04\x1c\x5f\x84\x1a\x9f\xd2\x56\x05\x8c\x92\x55\x56\x25\xc9\x4e\x1d\x1f\x70\xd5\x2f\x23\xc2\x97\x43\xb0\x7e\x94\x55\xe6\x47\xce\x4a\x9f\x22\xbe\x05\x75\x66\xfe\xfc\x78\x66\xff\xaf\x7f\xd5\x35\x8d\x35\xa4\x38\x6d\x31\xa8\x36\x65\xf5\x92\xe2\x53\x29\xff\x6a\x0a\xff\xfa\xd5\x85\xb6\x35\x7d\x9b\x31\x92\x5b\xea\x0a\xd5\xbb\x48\x85\xc3\x6f\x36\xca\x39\x92\xf4\xab\x4a\xf9\xbd\x89\x89\xe7\x9b\x29\x1f\x8a\x1a\xdc\xcb\x2c\xe1\x10\x1c\x5f\x7a\x43\x85\x62\x37\x6a\x22\x38\x4c\x7a\x8c\x22\x02\x2a\xb5\xf7\x03\x9f\xc8\x67\xbd\x00\x1c\xe6\x37\xd4\x36\xdf\x18\x7b\x86\xbc\xd9\x89\x9c\xd0\x80\xcd\xcb\x92\xc3\xa7\xae\x29\xac\x13\x47\xbb\x52\x3a\x6a\x28\x1b\x7f\xa3\x8c\x0a\x3b\xab\xd9\x74\x7d\xe8\x70\x9d\x66\x49\x58\xa5\xab\xe1\x93\x94\x8e\x3f\xc0\x07\x26\xe9\xb9\x6e\x31\x60\x00\xe1\x66\xf1\xb5\xaa\x2e\xf5\x6c\x16\xb9\x98\x19\x01\xf8\x2d\x9a\x3b\xbe\x9e\x8a\x6e\xa8\x0d\x68\x6d\x90\x7a\xf5\x7e\x84\xe2\x20\xc0\xe2\x6b\x85\x24\xd3\xac\xec\x0b\x1e\xed\x57\xfd\x9c\xf4\x4b\xfb\xd4\x5d\x1e\xc5\xf1\x3a\x65\x02\x51\xb1\x79\x84\x5e\x1c\x45\xa8\x1b\xf8\x10\xa2\x96\x8f\x94\x22\x3d\x43\xf4\x64\x45\x37\x30\x77\x67\xa5\x2f\xb6\xc1\x55\x3b\xa9\x40\xbb\xd3\x11\x1c\x31\x42\x46\x39\x24\x54\x5a\x8e\x06\xff\x6e\xd0\x5a\xaa\x62\x0c\xaf\xb1\x71\x41\x31\x85\xbd\xec\x1a\xe7\xbb\xb1\x09\x57\xf2\x6d\x5a\x6f\x17\x8a\x7b\x8e\x89\xc0\x65\xb9\xb8\x46\x84\xc3\x70\x66\x52\x43\xe9\xd6\x0e\x68\xbf\x5c\x87\x51\x5c\x26\xe9\x6a\x14\x0e\x66\xaa\xe8\x88\xf9\x29\xe8\xa1\xe0\x39\x03\xb9\x00\x4b\x75\x77\xea\xdd\x16\x17\xf7\xb7\x97\xa3\x84\xb8\x27\x75\x3f\xdb\x51\xdd\xcf\x76\x74\xea\x63\xd5\x09\x13\x46\x36\x71\xc7\x12\xe2\xf3\x5b\x8a\xca\x7c\x7a\xad\x1c\x04\xb4\xa0\x40\x1a\xdd\x37\x35\xb1\x30\x36\xdf\xa8\x02\x6f\x98\x26\xa1\x1d\x15\x25\xb3\x79\x30\xd7\x09\xed\x38\xe1\x3d\x99\xe6\x0d\xd9\xdf\x36\xbd\xd5\x34\xf4\x67\x03\x33\x06\x06\x4a\x67\xf0\x63\x2f\xf9\x6f\x32\x93\xae\xa0\x1d\x5e\xe5\x12\xf7\x3b\x4a\xc6\x96\x93\xc0\xfb\x2e\xb1\xb2\x60\x6e\xee\x6a\x9f\xc6\x9a\x3c\x4d\x40\x03\x85\x14\x27\xf2\xf7\x38\x86\x76\x76\x54\xed\x0a\xbd\xc2\x88\x2e\x66\x40\x9b\x82\x34\xef\x31\x05\x5b\x6d\x4d\x14\xbc\xf8\x5f\x4d\x59\xcb\xdd\xbb\xdb\x99\x2d\xca\x4c\x1c\x2e\x07\x9b\xf3\xb9\xe6\xe3\x81\x27\xfb\x8e\xa2\xa8\xe5\xfb\x72\x3f\xd1\xa1\xfa\x27\x0a\x99\xb1\x9c\x96\xd9\x8e\xea\x48\xc3\x61\x0f\x36\x32\xb8\x0e\x33\x13\x9f\x3c\xbf\xa2\x15\x44\xaf\x8f\x15\x46\xe4\x4f\x03\xa5\x57\x71\x12\xbe\x82\x10\xea\x54\x8b\x51\xf2\x94\xd5\x62\x84\xad\x63\x92\x68\x47\x7c\x57\x3d\x18\x4c\xe2\x1d\x15\xfc\xf7\x52\x34\x5e\xe4\xd8\xaf\x6c\xdd\x68\x0d\x88\xa5\x6b\xda\xaf\xf6\x90\xcd\xc2\x28\xb7\x5a\x23\x19\xf4\x5a\x42\x35\xb5\xc3\xbd\xfb\x53\xc3\x87\x7c\xf1\x64\x6b\xc7\xb7\xe4\x7f\xa2\x60\x15\x6f\x50\x95\x14\xe1\x17\xbf\x38\xac\x1b\x7a\xa3\x91\xac\x3a\x35\x56\x15\xfc\x8b\x4a\xa2\xec\xbb\x63\x45\xef\x33\x9d\x85\xa2\x90\x2c\xb4\x71\x6c\x59\xd7\x16\xaf\x76\x45\xbd\xe6\x95\x29\x77\x86\xfa\xe7\x52\xd5\xde\x8c\xd3\xe1\x03\x15\x41\x7f\xa0\x2c\xef\x9a\xc9\xb2\x28\xcd\xf2\x56\xf5\x4e\x0e\x58\xe5\x3c\xdd\x5a\xcf\x6a\x94\x85\x65\x24\x0d\xb2\xfc\x6a\xf4\x36\xc2\x8b\xd2\x52\x44\x62\xd3\x78\xa0\x67\xdb\x69\x14\x73\xa5\x4c\xe0\xfb\xd5\xc2\x17\xe0\xb0\xc7\x04\x47\xc3\x51\x19\x13\x7d\x46\xe5\xd2\x38\xbf\x7f\x8f\xff\xf6\xcd\x1b\x5c\x32\x38\xa3\x2c\x0a\xed\xac\x0a\xf0\xde\x64\xa7\xd2\xf9\x45\xd5\xaf\x63\x13\x01\x4b\x01\x6f\x75\xdb\x14\x68\xec\xf9\xf9\x45\xea\x8b\x8c\x7a\xc8\x55\xe2\x97\xc1\xee\xa0\x9a\x7b\xc5\x97\xba\xe1\x3a\x88\x56\xd3\xc8\x15\xb2\x19\x62\x1a\x78\x18\xf0\x91\xa6\x59\xae\x2c\x75\x11\x51\x1a\xd5\x29\x45\x02\x97\xc2\xd7\x8d\xb3\x3c\xac\x7c\x08\xce\x7a\x0b\xc5\x84\x2f\xf8\x1e\x56\x25\xe3\x2c\x2d\xf9\xbb\xe1\xea\x7f\xa4\xdc\xfe\x8f\x1c\xe1\x70\xe5\x43\x99\xc4\x8c\xd2\x38\x12\xce\x14\xa7\xca\xee\xd9\x1e\xdf\xd4\x1d\x6b\x57\xa7\x0a\xa9\xbb\x77\xb7\x73\x9b\xad\x46\xa1\x93\x02\xc3\x16\xe7\xee\x08\xbe\x69\x12\x81\xe9\xd9\xa1\x49\x7a\x60\x35\x57\xfc\x55\x8e\xcc\x2a\xd0\xf5\xf8\x51\x54\xa8\x5e\x3b\xac\x0d\x91\xc6\xf5\x69\xcf\xc2\xac\x98\x7c\x10\x0d\xcd\xba\x69\x79\x0c\xc2\xcb\x81\xff\xe4\xcb\x0d\x72\xc7\xed\x9c\x04\x99\xe4\x34\xe2\x33\x58\xe7\xd6\xa6\x19\xa6\x96\xf6\x55\x47\xae\x25\x25\x13\x47\xb2\x0e\x80\x1c\x5f\x07\x9a\x60\x9b\x18\x3e\x67\x3c\x42\xf6\x9b\x4a\x3b\x87\xdf\x5a\xba\x18\x34\xc7\x7c\x5e\x98\x28\x01\x16\x59\x62\x54\x98\x64\x96\x0d\x52\xb8\xcb\xeb\x81\xf7\xd3\x2f\x4d\xcd\xd2\x9e\xc5\x76\x3f\x33\x49\x12\x59\x99\x69\x06\x33\x68\x62\x47\xa6\x12\x62\x04\x43\xd3\xba\x0d\xd3\x64\x55\xe5\xc8\x51\x67\xba\xa9\x04\x69\x6e\x2a\x9d\x2f\x43\xcc\x5a\x51\xd2\x9f\x41\x4b\x55\x4d\xdb\x17\x19\x7f\x94\x0e\x50\xd6\xbc\x33\xed\x70\x55\x6b\x9e\xb9\xb4\x69\x3a\x99\x4a\x3b\xf0\x3d\x9c\xd3\xed\xc4\x7b\xf7\xb6\x73\x9b\xe4\x91\xab\x0f\x39\xad\x4b\xaf\x7b\xa9\x1e\x12\x1c\x00\x51\x02\xb2\x05\x51\x7e\x6f\x2d\xfa\x52\xdb\xe6\xa1\xdc\xbb\xb7\x32\x13\xa1\xb5\x22\x1c\xd8\x44\x48\xb6\x83\x3f\xd4\xde\xbb\x77\x69\x97\xdf\xa3\x4c\xa8\x80\x19\xfb\x0b\x04\x10\x30\x5b\xd7\xc6\x4a\x60\xff\x3a\x05\x8f\x12\x62\x2b\xeb\xfb\xdd\xc0\x83\x6e\xdf\xd5\xe7\xe6\x47\x5a\x76\xe1\x14\x9b\x40\x44\x96\x3f\x18\x2b\xda\xb4\xab\x14\x40\xe2\x40\xff\x84\x08\x1d\x9c\xbe\xf4\x1e\x01\x8f\xfd\x90\xe6\x13\x35\xa8\xc3\xc8\x44\x21\xcf\x7d\x07\x11\xa3\x43\xbf\x2e\xcd\x0b\xcb\x7c\x03\x5d\x4b\xbb\x9b\x59\xc3\xf4\xf0\x8e\x08\xd2\x31\x61\x9e\x0b\x76\xd5\xc1\x97\x4f\x3d\xd5\x7e\xfa\xb1\xd6\x57\x17\xf8\xa7\x2e\x28\x2d\x96\x7f\x1a\x28\x4a\xd6\x7b\x53\x32\x25\x22\x14\x7b\x8d\xce\x16\x8c\x13\xc7\xc6\x02\xa0\xaf\x9e\x14\xdf\x85\x14\x22\x5c\xcc\xcb\xc4\xfd\x05\x44\xd8\x8f\xb4\x82\xe3\x7d\xd8\x79\xc6\x6e\xc1\x8e\x61\xf8\xa0\xcc\x8a\xdf\x03\x0e\x85\xb5\x7b\x68\x1b\x6d\x3c\x39\x69\xc0\xb9\xe4\x29\xf7\x12\xe3\x57\xef\x2a\xe4\xdf\x5d\x55\x1a\xe8\x45\x36\xff\xcc\x16\xc0\x5d\x1a\x0c\x44\xe0\xab\x5c\x2b\xdb\x8e\x95\xb2\xed\x54\x82\x64\x69\xbe\x3d\x32\x11\xf3\xad\x6a\x81\x32\xa4\x14\x3e\x1d\x2b\xa8\xe0\x0f\xd4\x09\x79\x5e\xa7\xbd\x1f\xeb\xc8\x69\x37\x4a\xe3\xf5\x51\xae\x1c\x65\xc6\xf1\x63\x50\x1e\xd6\x38\xb0\x23\x2a\xa3\x33\x33\x69\xb0\xbb\x19\xba\x08\x41\x1f\x2c\xaa\x30\xd5\x37\x0b\x4e\xc5\xfb\x22\xc2\x10\x30\xab\xc2\x35\xe4\x32\x5d\x8f\xa5\x33\xbd\xb7\x69\x91\xf3\x75\xa0\x14\x13\xd3\xd0\xc4\x0f\xb4\x94\x5c\xb6\x2a\x03\xbc\x43\x3f\x8c\xb4\xf7\x44\xa9\x27\x1f\x0e\x6a\xba\xb7\x35\x41\xdc\x6a\x95\xf0\x27\x82\x06\x29\xa9\x51\x15\x27\x3a\x47\xe0\xf4\xd8\x97\xd7\x6e\x91\xb1\x96\x34\xbd\x6f\xf0\xbd\xed\xaa\x6b\xb9\x59\xb6\x0f\x2a\xaa\x4e\x20\xe9\xe1\xb4\x32\x5d\x0e\x56\x34\xbf\x04\x03\x35\xbc\x29\x7e\xe5\x6f\x75\x3c\x9a\x0e\xec\x79\xae\x9c\xa7\x15\x25\x14\x3a\x2e\x2e\x87\x8a\xaa\x1f\xdf\x25\x42\x2a\x9b\xfd\xaf\x17\x5e\xa8\x0e\x83\xe5\xb2\x30\x45\x94\x53\xe1\x10\xac\x09\x5b\x3a\x1e\xb1\xc3\x51\x06\x37\xbd\xa9\xa2\xbc\x73\x72\x67\x5b\x5a\x5a\xf7\xa0\xef\x32\xa1\xed\x2b\xf9\x75\x4f\x08\x7c\x52\xe1\x58\xf6\xff\xfd\x7d\xb3\xba\x26\x75\xde\x6b\x66\xee\x86\x50\x12\xd6\xf1\x4d\xd5\x44\xf8\x3f\xdc\x53\x1d\xd4\x03\xcb\x2c\x3b\x0e\x1d\x0b\x9d\x34\x71\x59\x1a\x16\x2c\xc4\x3a\xa5\xcc\x52\xe3\x18\xe7\x1b\x75\xea\x77\xa3\x7e\x5a\x64\xeb\x2d\x45\x83\xf7\x3e\x3d\x17\x5f\xab\x16\x90\x74\x34\x4a\xf3\xa8\xa8\xe1\xd7\xce\xe1\x78\x10\xdb\xd9\x50\xb1\xb6\x5d\x9b\xe4\xdd\x32\xeb\x93\x2d\xa8\xb5\xdd\x09\x4c\x41\x4b\xf9\x45\x31\x13\x35\x3b\x46\x51\x45\xc8\xd3\x70\xd8\x77\xa9\x67\xc4\x81\x92\x50\x9c\x7a\x4b\x79\x9c\xaf\x2a\x85\xcd\xdf\xd7\xc5\x64\xdb\x8f\x92\x87\x5a\x4e\x52\xfb\xfb\xc8\x27\x22\x90\xfd\xb7\x48\xe1\xf3\xcd\x26\xf4\xfa\xd2\x3c\x6f\x96\x47\x48\x5a\x03\x27\xe0\x03\x1d\x6a\x42\x17\x8a\xd0\x6a\xba\x38\xe9\x15\xf8\x22\x5d\x4d\x09\xc0\xae\x6d\xf3\xd9\xd7\x73\x0a\x5c\xbe\x31\xf6\x12\xd1\xf3\x7f\x0b\x91\xb7\xab\xbe\xaa\xfc\x0d\x4d\x2f\xea\xc9\x77\x9a\x68\xd3\xa2\x64\x35\x2a\x64\x19\x70\x53\x66\x50\xeb\xd0\xdc\x6c\x85\x5f\x78\xa1\x9d\x17\xe9\x68\xd6\x37\x59\x31\xdb\xac\x46\x08\xe3\x7d\xef\xd0\x03\xa3\x50\xf4\xbb\x3a\x23\x59\x85\x63\xb1\x29\x6c\x6f\xc6\x67\x21\x6f\xaa\xc4\xe3\x09\x8d\x3b\x3a\xed\x4c\x49\x37\x4e\x31\x1e\xd2\x2d\xd9\x12\xe6\x9c\xbf\xf3\x18\xcc\x35\x4e\xa3\x23\x0a\x30\x39\x37\xf1\x35\xf8\xeb\x18\x0e\xd1\x92\x6b\xa8\x4c\x67\x76\x39\xcd\x86\x79\x4b\x07\x23\xf4\x72\x12\xa5\x68\xf2\x31\x13\x25\xf9\x6c\xad\x35\xb2\xde\x40\xf9\xfc\xbc\xc3\xaf\xd0\xfc\xf0\x4d\x43\x03\x25\x09\x95\x97\x49\x14\x4a\x66\xc0\xe3\x68\x78\x1b\x88\xd6\xc2\x63\x0a\x8b\x60\x0a\x1b\xb3\xe4\x1c\xbc\xad\x3f\xa6\x34\x3c\x5f\x07\x3e\xed\x34\xac\x8e\x1c\xf2\xbf\xe7\x7c\x42\xf7\x62\xa0\x34\xb9\xfe\x77\x9c\x9d\xfc\x2f\xea\xb4\xfb\xeb\xb1\xca\xdd\xbc\x32\xc5\x1b\xb0\x70\x00\xbc\x01\x6b\x19\xc9\x7c\x29\x09\xa9\x6f\xaa\x92\xe8\x37\x1b\x2c\xd0\xfe\x76\xcf\x86\xff\x2f\x65\x7f\x1a\x23\x49\xb6\x9e\x87\xc1\xd3\x59\x55\xbd\x4d\xcf\x3e\x73\x45\x8a\x9f\x84\xa4\x74\xf1\x8d\x61\x8c\x68\xca\xa0\xfd\x43\x7f\x32\x55\x5d\xe4\xbd\x5d\x10\x6b\x1a\xdd\x7d\x7b\xe8\x81\x01\xcf\xa9\xcc\x53\x99\x71\x2b\x32\x22\x19\x11\x59\xd5\x35\x80\x01\x59\xbf\x04\xc1\x30\x6c\x1a\x12\xbc\x08\x10\x2c\x02\x96\x6d\xc9\xa2\x48\x5d\x49\x57\x92\xc9\xcc\xbb\x90\x97\xba\xcb\x70\x96\x3b\x6b\xcf\xd2\x7b\xf7\xf4\xbe\xef\x5d\x6d\xc4\xfb\xbc\xe7\x9c\x27\x2a\x63\x64\xfb\xd7\x44\x4c\x57\x66\xc6\x72\xce\xbb\x3e\xef\xf3\xc4\x51\x82\x4a\x15\x96\xeb\x99\x31\x31\xe3\xc3\xfe\x12\xcf\x9d\x03\x50\x9d\x62\x15\xdb\xa1\x5d\x77\xbf\xeb\x48\x37\x1b\x5e\x37\xec\x02\x0d\xa9\x14\xfd\x74\x94\x9b\xa4\x52\x09\x3e\xd6\xa2\xaf\x3d\xc6\xd2\xe9\x71\x64\x13\xbc\x05\xd2\x38\x7d\xdd\x0f\x79\xb8\x62\xdb\x8a\xe9\x14\x69\xb6\x21\xa5\x6c\xf4\xd4\x2e\x31\xe5\xe0\x35\xaa\xc2\xbe\xd0\x0e\xd3\xc5\x3b\xa6\x24\x69\x16\x0e\x35\xcb\xfd\x90\x41\x7d\x1c\x6d\x1c\x55\xe8\x41\xe1\x03\x35\x27\xaf\xcc\x1b\x50\xa6\xc4\x5f\x36\xd3\xae\x31\xad\x2b\xd6\x14\xa3\x50\xcc\x76\xd8\xc6\x46\x60\x47\xf5\xc3\x2c\x71\xfe\x6b\xbf\x0a\x21\x5b\xf8\xf3\x46\x9b\x3a\x2e\x8d\xc9\x0b\x3c\x15\xa8\x1d\x85\xdd\xf2\x8c\x60\xc4\x4e\x8f\xab\x63\x7f\x87\xe7\xf5\xf8\xc8\x38\x34\x26\x6e\x12\x69\xff\x35\x3c\x7e\x18\x1a\x8d\xde\x50\x6b\xd6\x8e\x04\xc6\xf3\xa0\xd4\xe7\x94\x08\x82\x4e\xe3\xef\xd7\xd4\x7e\xf7\x0b\xbf\x96\x59\xd6\x34\x0b\xb6\xf9\x7f\xc2\x85\xe9\x09\x39\xde\x61\xaa\x3d\x04\x1e\xde\x71\x2f\xbc\x26\x1d\xcb\xac\x59\x59\x89\xb2\x81\x9a\x4b\xd7\x17\xe5\x26\x69\xad\x8d\x8d\x63\xdb\x33\xf1\x4c\x85\xdf\x3a\xb4\x61\x1f\x57\x66\xcd\x69\x7e\x31\xee\xce\x51\x80\x73\x92\xfa\x8d\xba\xca\x10\x9c\x3c\x49\xf4\x64\x58\x71\x28\xbd\x4c\x43\xdc\x4b\x03\x07\xed\xce\xd2\x6e\x2c\x2e\x92\x20\xc8\x81\x79\x2f\x08\xe2\x16\x37\x04\x97\x95\xa5\x03\x89\xde\x8d\xca\xd0\xac\x76\xf7\x14\x5c\x4f\x8c\xce\x57\x2a\xf3\xb8\x47\xa8\xcc\xa3\x31\x9e\x9e\xd4\xf1\xe3\x2e\x9b\x2c\xdb\xa0\x92\xa1\x52\x0e\xbb\x32\x69\xcd\x2d\x0d\xd3\x38\x1e\x79\xb5\x74\x54\xcb\x7e\x42\x8c\x91\x3f\x21\x72\x0d\x23\x22\x4b\xa2\x60\x13\xca\xc6\x97\x89\xe7\xf1\xf2\x78\x4f\xb0\x02\xdd\x1c\xc4\xa9\x5e\x72\xab\xdc\x9c\x9a\xbd\xf1\x5c\xf8\x69\xa6\xc3\xc1\x64\xb0\x23\x5f\x2e\xdf\x19\x36\xd0\x47\x34\xf8\x76\xd9\xbb\xb4\xbe\x19\xc5\x33\x44\x5d\x8b\x85\xef\x85\x22\xf6\x07\x95\xe5\xba\xee\xef\x7a\x9a\x65\x9e\x97\xc3\xcd\xd8\x06\xdc\xe9\xc5\xa9\x58\xfe\xf0\x7c\x73\x43\xa8\x3f\xf6\xfa\x4a\x60\x79\xb5\x8e\xe5\x8f\xb8\x8e\xfa\xa9\x6a\xd6\xe1\xcd\xdf\x69\xd1\x98\xeb\x9d\x31\x2b\x23\x99\xac\x67\xf3\x27\x43\xd2\xf2\x4c\x9b\x64\xb2\x15\x86\x85\x94\xee\x36\x78\x33\x51\x97\x6e\x4c\xc2\x44\x5c\x43\x9c\xb4\xfe\xff\x36\x71\xc0\xcd\x08\x12\xaa\xc2\x0c\xa5\xa4\xfa\xd2\x78\xf0\xe8\x1b\xff\xad\x27\x6b\x61\x9b\xb1\x14\x28\x17\x17\x5d\x29\xb4\x15\xe6\x4d\x8f\x7a\x4c\xcc\x6a\x6c\xa3\x64\x3d\xcd\x18\xb1\xad\xde\xd7\xa1\x26\x03\x22\xbc\xbf\x31\x54\xe2\x51\x7c\x8d\xe2\x11\xf5\x64\xfc\x14\xe9\xe7\x5b\x68\xea\xba\xad\x26\x5f\xf8\x55\xe2\x3b\x07\xe6\x9b\xa6\xd3\xb1\x5d\xd4\xe2\x10\x51\x9d\x91\xab\xd5\xe3\x29\x70\xd1\x2b\xcd\x4e\x06\x79\xc1\xfd\xde\xeb\xb1\x37\xac\x8c\x69\x0e\x6d\x56\x6c\xec\x24\x91\x9a\x2f\xb9\x40\x70\x02\xaf\x07\x41\x3d\xa0\x80\x9e\x84\x6e\x9f\xe3\x94\x9a\x15\xbd\x2c\x04\x0a\xa8\x97\x61\x6b\x7e\xbf\x15\x7c\xff\x51\xcf\x1f\x5e\x8c\xb2\x64\xe7\x56\x7a\x0c\xbc\xc1\x7f\xc2\xb2\xe1\x27\xb0\x9d\xdc\x5f\x11\x49\xc2\x2c\x49\x08\x3e\x1a\x13\x27\xf3\x15\xc2\xf8\xcf\xb5\x43\x05\xbe\x6f\x86\x43\x5b\x86\x3a\xe2\x3d\xdd\xb8\x43\xc3\x13\x6e\x7f\xc0\x23\x81\x8f\x5b\x41\xeb\xe3\x87\xe3\x80\xba\x3b\x3d\xf5\x9c\x25\x38\xec\xce\x05\x13\xa3\x78\x04\x44\xba\x93\x56\x70\x37\x27\xc6\xc4\x12\xf8\xdf\xe0\xc6\xf0\xad\xd7\xbe\xb2\xf8\xdf\xb7\xd1\xba\x69\x04\x81\x23\xe5\x8b\xd1\x13\xe2\x1c\xc9\x6c\x77\x24\x03\xbb\xf2\xef\x18\x49\xc1\xc6\xd8\xbc\x1e\xc2\xe1\x7f\x00\x28\x3d\xee\xf1\x34\x8d\x0f\x44\x09\x70\x5f\xb2\x19\x74\x4c\x5d\x3e\xe6\x46\xd6\xa7\x7b\x09\xcd\x4e\x6c\x4d\xb6\x05\x5a\x87\x72\xbd\x1e\x7b\xf6\xf0\x32\xce\x5c\xc9\xcc\xc0\xaa\xd3\x50\xed\x4f\x5c\x1e\x26\x54\xe1\x26\xaf\xb3\x47\xfe\x84\xac\x49\x1e\x25\x3d\x51\x2d\x0f\x50\x23\x79\xb2\xce\xbb\xba\x82\x7f\x66\x3b\xab\xb1\xcd\xf3\xc4\x89\xc0\xf8\x56\x2a\x95\xe0\x89\x98\x60\x68\x3b\xd1\x4a\xd4\xd9\xd9\xf0\x8c\xb0\x33\x30\x4c\x30\x94\xc7\xe4\x71\x81\xa0\xe6\x23\x59\xec\x4e\x56\x48\xee\x43\x3f\x31\x09\x23\x8e\x1f\xcb\xe2\xf3\x6c\xfb\x07\xe6\xbd\x48\xd3\x34\x0b\xe2\x02\xda\xbe\x41\xcd\x18\xdf\x00\xfb\xa7\xc7\xed\xb0\x4d\x45\xf7\x3b\x03\x04\xec\x75\x3f\x77\x57\x41\x55\x4e\x0f\xa8\x1e\x6c\x42\x98\x40\x10\x1e\x98\x68\x6e\xb4\x29\xe9\xb8\x22\xe8\x1e\xc4\x4d\x37\xc8\x9e\x5c\x65\x2d\xa2\x7b\x61\xf6\x27\xca\x0b\x31\x84\x87\x43\x58\xc0\x36\x8c\x82\x94\x6e\xaa\x65\x78\xa0\x74\x3e\xa6\xa9\xa0\x73\x2c\x54\x1b\xb4\x76\xd7\x6c\x61\x33\x93\xcc\x05\x08\xa4\xb6\xa3\xdc\x48\x6b\xc3\x6b\x46\xdf\x20\x48\xcb\xa6\x74\xab\xb5\x45\x30\xde\x15\x35\x87\x99\x5d\xf9\xab\xcd\x5f\xdb\x49\xdd\x99\x5d\x13\xb9\x16\x05\xbd\x22\xa4\x9a\x9b\x10\x0a\xfe\x86\xb8\x0d\xa9\x2d\xff\xd7\xbf\x20\x96\x05\xe1\xf5\xb3\x6d\x62\x37\xb9\xc2\xc2\x7a\xd7\xfc\x43\xc9\x8b\xcc\x24\x3d\x30\x1a\xe2\x49\xfe\xe2\xa4\x52\xd7\x22\xe1\x23\x64\xc1\x08\xb0\x7f\x99\x01\xfb\xbf\x2b\x2b\x14\x0b\xff\x26\x6b\xaa\x5b\x19\x22\x9d\x0d\x98\xe6\x3f\x12\x73\x84\x9a\xc0\x87\x95\xfa\x20\x69\x84\x1f\xab\x9b\xf9\x28\xb2\xb4\xf0\x9d\x0d\x18\xbd\xcb\x6c\x6c\x2f\xd3\x86\x1b\x0a\x85\x43\x57\xa0\x4d\xe8\xf2\x7e\x01\x2f\xa0\x27\x53\xdd\xfa\x57\x30\x0b\xd3\xb5\x99\x84\x2d\x78\xb9\xdb\xb0\xd6\x60\xfd\xc1\x9f\xe2\xc2\xa9\x90\x54\x75\xfa\x59\xe4\x3a\x6b\x4e\xbf\x42\x9e\x8c\x8b\x95\xea\xf8\xe4\x0a\x93\x60\xb6\x52\xd5\x2f\x5a\x01\x13\x7f\xac\x8e\xe9\xc1\x0a\x1f\xda\x81\x79\x97\x81\x55\xe6\x63\x1a\x5e\x27\xe6\x9f\x51\x4c\x38\x4a\x46\xf9\xc8\x31\xed\x39\x85\x11\x0d\xc4\x9c\x81\x9d\x96\x0a\x68\x76\xa3\x95\x15\x9b\xd9\xa4\xb3\xa5\x7a\x52\xe1\xb7\x9a\x22\xca\x7d\x6d\x7f\xf3\x65\xfd\x7b\xcc\x08\xcc\xb4\xa5\x2a\xab\x27\x53\xfa\x06\x42\xae\x84\x90\xd8\x6f\x17\x15\x45\xd4\x13\x82\x16\xf4\xad\xc9\x8a\x58\x92\xdc\x00\xbb\x84\x2b\xd0\xe3\x5a\x82\x89\x51\xd6\xe9\x9b\xdc\xb1\x40\xb8\x19\x62\xf9\x0a\x9a\x2e\xfe\x86\x6e\x88\xe3\x44\xb0\x74\x7c\x1c\x50\x23\x51\xb6\xa6\x4e\xc2\x05\x82\x5a\x77\xd7\x93\x16\x75\x08\xbc\x84\x34\xba\x2e\xf7\xa8\xef\xf6\x00\x1f\x42\xc1\xe1\x2c\x4f\xc5\x5f\xa8\xab\x3e\x14\x99\x1d\xd8\xa4\x9b\x8e\x72\x55\xb6\xf7\xe6\x2a\x48\x1c\x4e\xbd\xbd\x85\x43\xcd\x2c\x2d\xfa\x79\xa7\x1f\xc5\xdd\x5c\x6b\xaf\x62\x59\x7e\xef\xa5\x36\xd1\x0a\xdc\xa0\x5a\x96\x4e\xe4\x21\x4c\x7f\x6a\xf2\x52\x85\x22\xc7\x66\x6b\x32\xc6\x35\x13\x3a\x9a\x97\x2b\x94\x7d\xe4\xee\x7e\x4c\xc2\xf5\xdf\x8e\x06\x68\x03\x38\xc5\x81\xd0\x0a\xc1\x18\x98\x57\x25\xf0\x6d\x91\xcf\xc7\x21\x0f\x37\x49\x50\x2f\x5a\x5c\xf4\x03\xf7\xe5\x07\x3d\x0f\x65\x19\x04\x01\x84\xf2\x5d\xfa\x64\x91\x59\x53\x0c\xac\x13\x83\x76\x04\x60\x61\xc8\xeb\x34\xc1\x68\xbb\x02\x31\xdd\x49\x85\x20\xb4\x18\xd0\x1b\x41\xed\x12\x01\xda\xfb\xb0\x1d\x4e\x89\x38\x00\xb4\x3f\x0e\xba\x57\x2b\x1f\x48\x95\x0a\xf1\xa7\xce\x7d\xb8\xba\xd3\x74\xf4\xf1\x0d\x29\xe6\x0f\x61\xcd\x16\x34\x7d\x3a\x83\x62\xab\x9e\xd0\x1a\xec\xdb\x6c\x39\x42\x36\x44\x48\xac\xfd\x1e\x89\x55\x19\xb9\x1c\x2c\xcf\x10\x6f\x8c\x26\x2a\xb0\xb7\xb7\x08\xec\xc7\xc0\xc3\x6e\x9a\x0d\x84\x2f\xf8\x80\x13\xc1\x01\xfe\x47\x8f\x27\x14\x6c\xa7\x71\x54\x44\x9d\x7c\x26\x94\x3b\x30\x22\x83\x5e\xd5\xb6\x49\x00\xaa\x7c\x41\xb5\xed\x15\x93\x0d\xc0\x87\x86\x20\xf7\x1e\x25\x8d\xca\xed\x88\x98\x90\x25\x3e\xba\x76\xb9\x40\x17\xcd\x4d\xc3\x94\xd7\xa4\xc7\x54\x31\x8c\xed\x91\xa8\xa3\x69\x32\xe2\x0e\x4c\x0a\xe8\xf1\x94\xfd\xdd\xbb\xb7\xb9\x9c\x45\x9d\x55\x16\x86\xaf\x0c\x3a\x10\x6a\x3d\x8d\xe3\x34\x43\x4d\x01\xcd\x8a\xcf\x64\x2d\xeb\xf1\x14\x3b\xab\xf4\x94\x8a\x2c\xed\xf4\xed\x20\xea\x28\x8c\x75\x5a\xe8\xfb\x12\x99\xe9\xf5\xbe\xb5\x71\x1c\xad\x22\x76\x55\x8a\x95\x56\x83\xe8\x56\x9e\x63\x99\xfa\xd2\x43\xe5\x4f\x4a\xe4\x79\x75\x1c\xcc\xcb\x6c\x19\x85\x6e\x5e\x05\xdb\xd9\x55\x89\xfe\x35\x06\x91\x24\x12\x66\x4d\x79\x69\x94\xd3\x11\x7b\x08\x59\xce\x09\xd4\x00\xf4\x04\x2f\xc4\x9b\x59\xcf\xac\xbc\xd9\xfa\x85\x10\xd1\x8e\x86\x36\xeb\xa4\x49\x77\xd4\x29\x52\x8d\x6c\x55\xb7\x4a\x2e\xcb\x69\x58\x71\x75\x2d\x4b\x46\x9d\x74\x18\x01\xf9\x81\x20\xe2\x67\x54\xb1\xfb\xd9\x38\xa8\x0d\xcb\xac\xc3\x4c\xc0\xc7\x9c\x27\x22\xb3\x2f\x18\xef\x72\xab\x8e\x5f\xae\xe8\x67\xa3\x1c\xf9\xae\x4f\xca\x82\xf8\xc8\x3f\xf1\x81\xfd\x9a\x4d\xec\x9b\x23\x1b\x2b\x29\x29\x62\x29\x1d\xd1\xd5\x13\xe6\xb4\x2c\xdd\xa2\xe7\xd0\x77\xfd\xae\x80\x60\x98\x9e\x09\xdb\xbb\xb7\x19\x0d\x86\x69\x56\xe8\xb8\x39\x5c\xc6\x0d\xae\x39\x00\x60\x81\x6a\xf5\xf1\x32\x0f\xe0\x9e\xfb\x6b\xfb\xbf\xde\x7c\x45\x02\xb3\xca\x58\xa9\x87\x06\x7b\x82\xa6\xf3\x2d\x62\x7a\x51\x9e\x59\x98\x4a\xe5\xb9\xc0\xee\x3a\xc6\xdc\xc7\x47\x3a\x16\x70\x4d\x55\x74\x21\x59\xa3\x69\x15\xc7\xd2\x5f\x77\x37\x12\x33\x10\xd6\x9d\x10\xdd\xcc\xb4\x39\xf0\x99\x99\x04\x9b\x92\x66\x89\x2d\x0a\xcb\xd2\xd2\x5a\x24\x70\x23\xbe\x35\x43\xf2\x85\x59\xdd\x92\x91\x01\xd8\xa9\xc7\x04\xe6\xec\xf4\xa3\x35\xa3\xd8\x72\x27\x2e\x44\xf5\x99\xaa\x62\x73\x61\x60\x3c\x1d\xde\x4f\xfe\xd0\xa1\x90\xa9\x2d\x96\x9a\xac\xfb\x4c\x60\x18\xbd\x8a\xf8\xc0\x0f\xfb\x96\x3e\x00\x3d\xdd\x82\xf9\x77\x9f\x68\x07\x06\xe9\x1b\xad\xd0\xaa\x50\x62\x29\xb8\xd6\x6b\x52\xed\x25\x5e\x40\x17\x5f\xef\x92\x82\x04\x16\xc0\xef\x63\x65\x20\xf8\xfc\xa9\x82\x44\x70\xef\xac\x87\x3c\x37\x09\x35\x9f\xe7\x40\xda\xa6\x1f\xa9\x98\xdc\xa4\x83\xd0\x01\x75\xba\x73\x34\xa1\x3a\x4d\xc8\x2d\x55\xe0\xa2\x1f\x95\x51\xe9\xe1\x79\xaf\x52\xd1\xf0\x33\x9f\xe7\x58\x96\x23\x4b\x4d\x37\xde\x00\x92\xd6\x5b\x37\x1f\x1c\xdf\xc6\x7d\xbb\x39\x13\xb1\x2c\x28\xb8\x7c\x07\x9d\x24\x3d\x19\x53\xa6\xaa\x71\x99\x33\x8f\x9e\x51\x39\x2a\xb3\x2a\x0d\xf9\x1d\x74\x99\xe6\x8c\xef\x52\xf4\x95\xa5\xe5\x96\x0f\xe8\xc4\x2a\x33\x74\xcd\x90\x7c\x1c\xc5\x4a\x36\x83\x9f\x05\x38\x4c\x8f\x3d\x78\x50\x06\x74\xf0\x20\xd1\xc0\xb9\xcf\xac\xf4\xf7\x2b\x18\xb8\x2c\x8d\x21\x8f\x87\x61\xa8\x33\xb8\x43\xa0\xf4\xae\xb7\xa4\x49\xea\x5e\x40\x88\xf7\x1f\x8e\x03\xd4\x00\xb2\x08\x5e\x16\xbc\x7c\x72\xc8\xdd\x4e\x52\x08\x75\x57\x02\x0d\xc5\x23\x60\xc5\xa0\xd2\x73\x5f\xc2\x17\xfc\xf6\x75\x50\x59\xfa\x99\xc4\xc0\x10\x75\xbe\x05\xb4\x97\x5b\x16\xc4\x67\xf2\xa7\x55\x86\x9d\xe4\x4d\xe2\x4c\xb8\x46\xb8\xd2\x6b\x75\x5c\x52\xe9\xa8\x00\xdb\x70\x18\x8d\x39\xdb\x22\x61\xb2\xb3\x1e\x68\x9f\xa7\x9d\x48\xa1\xe2\xa8\xb8\x3f\x33\x21\x06\xcb\x67\x68\x32\xb4\x63\xb2\xb8\x48\xdd\x14\x33\xa2\xce\x3b\xcc\x5b\x7b\x87\xd0\x78\x1d\x93\xd9\x95\x51\x1c\xa3\x6f\x85\x5a\xf3\x97\x82\xc7\xd2\x63\x94\xd9\x7c\xeb\x2d\x48\xd9\x9f\xa6\x72\xe2\xc0\x14\x9d\xbe\xaf\x44\x61\xc3\xde\x97\xf4\x1a\xe1\x0e\xc8\x06\x11\xe6\x5d\xa3\x60\xf8\x51\x1d\x0e\x6d\xbd\x6f\x13\xbb\xa6\xf8\x19\x07\x3d\x93\x31\x54\x87\x49\x0b\x81\xc0\xb7\x47\xdd\x5e\x08\x5d\xbd\x3a\xbb\x27\x35\xbb\x30\x35\x22\xb1\x70\xa8\x99\x58\x93\x2d\xa3\xaf\x80\xcb\x43\xb0\xab\xc7\x14\xc9\x0c\x4d\x62\x06\x06\x96\x15\x9e\x1d\xc5\x04\x3d\xa6\x61\xf0\x61\x96\xf6\x32\x33\x18\xd8\x0c\x74\xaf\x28\x1f\x3d\xac\xf2\x37\x35\x3c\xb5\xed\xbb\x58\x5b\x28\x71\x9e\xae\xe9\x88\xee\x6f\xda\x38\x2a\x43\x7a\xf1\x1b\x9b\x62\x54\x5f\xdf\xbc\x5a\x2b\x20\x36\x30\xab\x8a\x04\x57\xec\x0c\x56\xa7\x03\xd2\xd4\x64\x79\x99\xcd\x0b\x33\xca\x9c\xda\x85\xb2\xf8\xb5\x42\x82\x73\x7d\xbc\xdb\x2f\xa7\x37\x9e\x94\xef\x46\x60\x78\x62\x1c\x6a\xf0\xaa\xad\x2b\xf1\xe8\x07\xcf\x4d\x42\x30\x08\x99\x2f\x45\x20\xe0\x11\xc0\xd5\xfd\x50\x54\x7e\xf1\x9c\xff\x1d\x36\x21\xd2\x03\x78\x03\xa7\x83\xc9\xc3\x24\xf7\x78\x54\xe3\xb1\x6f\x4f\x0a\x5b\xd7\x76\xa2\xb3\xbc\x4b\x9a\x70\x73\x93\xc0\x0d\x8b\x86\x1a\xdc\x56\x03\xcd\x08\x74\x28\x1f\x71\x31\xf6\x16\xa1\x8c\xd3\xf5\xc4\x76\x77\xcb\xaa\x47\x34\x78\x54\xea\x65\xc8\x5d\x8e\x8b\x49\xd1\x63\xe2\x77\x9e\x99\x88\xa3\x73\xd4\xc6\xf2\x60\x00\x32\x7a\x06\xb9\x84\x0b\x19\x1b\x9e\x4c\x0b\x62\xa1\x95\x2a\x13\xac\xcb\x31\x2a\x56\xae\xd9\x7e\xd4\x89\x6d\xbe\xa3\xfc\x59\x27\x7f\x15\x90\x55\x27\xd1\x15\xc2\xab\xc6\x0b\x04\xbe\xe3\x7a\x2b\x70\xc4\x9d\x11\xd3\xa7\x7f\x83\x1f\x72\x5d\x6e\x8e\x3c\xba\x98\x51\xf3\xd1\x31\x78\x22\xf5\x98\x1c\xfe\x7a\x94\xdb\x0c\x8a\xe3\xda\xcc\x82\xcd\x75\x9d\xad\xad\x8b\xf9\xd0\xab\xcd\xbc\x1f\x0d\x87\x52\xca\xf5\x5a\x26\xc7\xc7\xc4\x7b\x78\xbc\x42\x11\xb1\xcc\xd3\xd1\x17\x61\x7f\x9c\xa0\x59\x30\x1d\x77\xc8\xb7\xae\x40\x59\x6c\x7b\x00\x90\x68\x41\x1e\x8b\x76\x06\x95\xc0\x8a\x9e\xa2\xa3\x7c\x92\xfb\x50\x8c\x3d\xe2\x79\x07\xb8\x0f\x51\xc1\xb2\x8d\x11\x8c\x92\x60\x89\x1f\x94\x42\xdf\xc3\x95\x2b\xa7\x2b\x64\x5d\x9b\x47\x3d\x5f\xee\x45\xa8\xf8\x80\x19\xa5\xa6\xa9\x6d\x0f\xcf\xbf\xde\xcc\xe3\x30\xe3\xa3\x74\xd8\xa4\xd6\x7c\x99\xe6\x88\x86\x66\x68\x33\x89\xc2\x1a\x84\xa9\x45\xa0\xeb\x58\x46\xd8\x43\x15\x46\x8b\x5b\x2a\x31\xc8\x9d\xb4\x4f\xeb\x28\xcd\xd6\x23\x6d\xc2\xa2\x8e\x05\x6c\x8e\x1e\x4f\x95\x53\x0e\xcf\x2f\x34\x6d\x52\xf4\x47\x79\x64\x72\xd6\x36\xbd\x4c\xda\xa6\x97\xa7\xec\xd8\xfe\x03\xfb\x65\x12\x50\x00\x20\xb0\x1c\x4f\xb4\x89\xeb\xef\x67\x95\x8e\xb2\x3c\x3d\xc4\x91\xb7\x7c\xf7\x34\x49\x13\xbb\xab\x8c\x17\x11\xd6\x9d\x1a\x57\x95\x93\x7e\xfd\xb7\x3c\x97\x59\x08\x04\xb7\x89\xa5\x70\xd0\xb8\xd0\x08\xbc\x16\x02\xe8\x37\xfe\x72\x9b\x14\x7b\xb4\xd9\x8e\xe5\xd8\x98\x42\x7f\xee\x5b\x6a\x0e\xa2\x38\x2a\x4c\xa5\x6d\x7d\x9e\x26\x5d\xa6\x31\x87\x4b\x4b\x07\x1d\x01\x32\xca\x8e\xfb\x83\x3a\x90\xb7\x35\xdf\x6b\xed\xf1\x2f\xbc\x50\xb3\x0d\xe8\xd2\x29\xe2\x5f\x3e\x55\x37\x1c\x3a\x88\xba\x1b\xd6\x80\x10\x04\x59\x04\xda\x68\x08\xa4\x34\x30\x73\x13\x5c\x5b\xbd\xe5\xde\xbd\xcd\xae\xb5\x43\x9b\x49\x1d\x02\xa1\xea\x79\x6c\x49\xe4\x98\x1f\x8c\x89\xc5\xf1\x46\x5d\x7a\x32\x34\x79\x5e\x25\x2a\x52\x9b\xae\x27\x75\xb9\xe8\xc0\x66\x3d\xd5\xd4\x24\xde\x2f\xb7\x6b\x6f\xd1\x2d\x7f\xe4\x03\xa4\x81\xc9\x56\x6d\xd1\xa0\x0e\xc0\xce\x49\x58\xa9\x3b\xa7\x26\x63\x0e\xcc\x1f\x70\xe4\x23\x22\x19\xe6\xc0\x85\xe5\x43\x47\x6e\xfd\x19\x9e\x0d\x1c\xc9\xbf\x16\x20\xb6\x6a\x51\xcb\xf2\x80\x77\xf8\x49\x4d\x94\x7c\xb0\x69\x55\xec\xc2\x09\x5b\xc9\x6b\xd5\x93\xf2\x03\xa1\x5e\x58\xd8\xc1\x30\x36\x00\x4c\x05\x62\x3b\x1a\x03\x3c\xe3\x33\xef\x51\xd2\xe9\x9b\xa4\xe7\xb1\x8b\x28\x30\xdc\x25\xc2\x19\xf4\xd5\x02\x7a\x41\x7f\x25\xcb\xfc\x80\x84\x9f\xb8\xf6\xdc\x09\x5a\x90\xd4\xb6\x0f\x93\x01\x95\x01\x48\xa3\xd2\x0b\x09\x06\x96\x59\x83\x56\xd2\x51\x22\x35\xdc\x6f\x6c\xde\x87\x35\x71\x4a\x20\x0d\xcf\x2f\x79\x9b\xf4\x0d\x4f\x8d\xbf\xe6\x83\xda\x51\xd2\xfd\xcf\xff\x23\xd1\x0f\xd7\x24\xd9\x71\x5f\x6e\x12\x0c\x73\xd3\x13\xf2\x76\x6d\x16\xa1\xbc\xaa\x85\x73\xf4\x41\x74\x9a\x54\x4f\xda\x75\x3d\xb1\x61\x1a\xfb\xd1\x78\x47\x01\x1b\xea\x17\x6a\x53\x30\x28\x74\x6e\xfc\x97\x6b\x60\xa9\xc9\x5a\x94\xa5\xc9\x40\x64\xb9\xa2\xdc\x8d\xd5\x60\xe3\x28\x76\x59\x4f\x58\xed\x3c\x29\x4c\x16\xa5\x8d\xf0\x8a\x2e\x72\x31\xfd\xa2\x6f\x84\xf5\x4d\xb6\x9c\x66\xfa\xa5\x8e\xb2\xa4\xa2\x2a\x50\x23\x22\x1f\x25\x85\x2d\x63\x39\xa5\xc8\x53\x6a\x66\x44\x5c\x8e\xa7\x39\x94\x6e\xa3\x3c\x33\x36\xde\x4e\xc0\xea\x87\x2c\x39\xae\x84\x37\xae\x39\x40\x04\x9c\x0f\x51\xc9\xc5\xda\xff\x84\x66\xb2\x3f\xa9\xa5\x93\x37\x45\xbf\x41\x82\x29\x3f\x22\xa9\xa7\x1f\x31\x0f\xe2\x6a\xbe\x27\x70\xc8\x5c\x26\xde\xfc\xfd\xff\xa1\x16\x48\x64\x81\x7f\xf2\x9c\x98\x2b\xd4\x6f\x5e\x90\x2d\x8d\x18\xe7\x2f\x4f\xa8\x54\xb0\x1d\xcc\xb0\x30\xf7\xbb\x27\x81\xe2\xe7\x47\x50\x7a\x74\x8e\x27\x08\xb4\x2b\xb9\x80\xe4\x59\x7f\xeb\x2f\xb6\x09\x03\x74\x7f\x2a\x20\xdf\xbb\xd0\xcc\x6d\x62\xa4\x68\x87\x4b\x53\x49\x1a\xbc\x22\xa7\x4f\xe3\x29\x77\xb2\xa8\xb0\x3b\x02\xf6\xe6\x18\x7e\x0a\x21\xd8\x39\x86\x04\x60\xaa\x1d\x1b\x51\xca\x91\xba\x0f\x95\x9d\x87\xc8\xd3\x1d\xc2\xeb\x3e\xa5\x5d\x5d\x6b\xba\xb1\x90\x81\x1f\x98\xd7\x91\x17\xe8\x53\xea\x31\xd5\xe1\x56\xec\x20\x4a\xca\x65\x8b\x38\xa6\x52\xf4\x82\xc3\xfc\x39\x4c\xac\xf6\x82\x49\x46\x27\x5a\x59\xb1\x39\xbb\x9c\x73\x78\xa4\x7a\x32\xd5\x15\x2c\x7d\xf9\x4a\x94\x0d\x62\xe5\x75\x87\x19\xbb\x3d\x0e\x70\xee\x6d\x6d\x12\xff\xf9\x92\x3b\x90\xa6\xb3\x6a\x7a\x5a\xff\xaa\x9b\xd0\x77\xdb\x65\xd9\x14\x45\xec\x6c\x80\x6b\xf3\xc8\xa7\x5c\x9f\x27\xd4\x38\xd6\x4d\x52\xec\x64\xf1\xf4\x87\x72\x29\x58\x50\x9f\xb6\xc2\x50\xc4\x39\xa2\x16\xdd\x1c\x13\xac\xef\xf3\x31\xcd\x93\xdd\x60\x65\xd8\x1d\x92\xb8\x38\x15\x90\x3a\x3e\xd8\xd1\x60\x59\x36\xa7\x83\x12\x12\xac\x90\xa5\xcf\x87\x10\xaf\xdc\xb1\x05\xe7\xba\xa4\x2f\xe7\x26\x15\xc2\xb7\x4d\x68\x86\xfb\x32\xa3\xff\x3e\xd7\xea\x97\xcb\x23\xc4\x4b\xe0\x29\x3f\xd9\xde\x6a\x3f\x84\xf5\xb5\x1b\xad\x45\x90\x0b\xf2\x7b\x14\xd5\x59\xc7\x8c\x5b\x13\xe1\x74\x62\x93\x45\x89\x2d\x66\x2a\x55\xca\x86\x17\x39\xd9\xd5\xa6\xfc\x73\x1b\x86\x87\x5c\x31\x3b\xb3\xf9\x30\x4d\xba\x16\x8e\xe5\x1b\x4e\x0d\x90\x32\xa9\x5b\x34\xda\x92\x63\x1c\xad\x7c\x0c\x5e\x94\xae\x5c\x38\x41\x94\xce\xb9\xfe\x8d\x34\x33\x31\x69\xc7\xdc\xa5\x78\x51\x1d\x1c\x92\x6d\xce\x64\x56\x32\x3b\x42\xb7\x1b\x1f\xfa\x87\xe3\x80\x98\xf8\x87\xc4\xca\x21\x88\x11\x68\x31\x2e\x2e\x3a\xeb\xc1\x94\xba\x57\xc6\x2f\x12\xbe\x3a\xb6\x80\x02\xe7\xf4\xe7\x67\x69\x8e\xee\x6c\xed\x50\x71\x6c\x4d\x97\xe6\x66\x8f\xd2\xdc\xec\x51\x82\x90\x15\x26\x5e\xdd\x51\x5e\xa6\x93\x4c\x2d\x73\x53\x57\xbe\x2d\x6f\x05\x05\xd2\xeb\xe3\x20\xce\xa8\xda\x20\xa8\x66\x6f\x17\x03\x8a\x3a\xdc\xd3\xed\x30\x30\xf5\x74\xfb\x39\x3f\x3f\x5b\xd8\xac\x97\xa5\xa3\x61\xa3\xaa\x8a\x52\x11\x4c\x21\xd8\x75\x3a\xb0\xfd\x74\x5d\x10\x00\x9e\xf1\xda\x97\xe7\xb5\x94\x8e\x95\x71\x8f\x70\xff\xbd\x74\xcd\x66\xe2\x4e\x5f\xa4\x9d\x86\xeb\x76\xb7\x4d\x8a\x00\x9f\xc1\xe6\x60\x51\x7d\xda\x22\xc0\xa5\x92\x47\xc0\xe4\x1d\x85\x11\x40\x65\xee\x6d\x94\xa2\xb5\xfe\x5b\x1a\xc6\x4d\x68\xba\xeb\x08\xa1\x94\xb9\x94\x2e\x5d\x5e\x3d\x1e\xc5\x6c\xbb\xcc\x22\x2a\xaa\x7c\xf8\xa3\xc7\x0c\x59\x44\xba\x00\x04\xc1\xdc\x44\x18\x68\x3c\xb1\x5a\x99\x78\xa0\x14\xf1\x44\xbb\x8c\x1a\x91\xe5\xfe\x4c\xca\xdc\x08\x47\x4f\x92\x00\x63\x66\x13\x13\xe5\xb9\x49\x3a\x76\x36\xd8\xba\x73\x14\x30\x9d\x23\x2f\xf1\x88\x68\xaf\x1e\xd5\x70\xe6\x1e\x14\x96\x78\x4d\x24\x1c\x43\x6d\x58\x4b\xd3\xfa\xb6\xaf\x34\x6d\x27\x4d\xd2\xd0\xa4\xc0\x53\x78\xaf\xc5\x01\xe3\x7b\xe3\x2d\xb2\x12\xfb\x96\xca\xdf\xfa\x0b\x12\x32\xa0\xe7\xf6\x2f\xf1\xb4\xf1\x44\x26\xe3\x6d\x5f\xdf\x9c\xb4\xca\xac\x0b\xe1\xf3\x3b\x58\x07\x3a\x90\xd7\x92\xe7\xe5\xb0\x59\x28\xad\xc2\x55\xfe\x0f\x78\xe9\xa8\x9f\xfd\x69\x8b\x5a\xc8\x18\x5f\xf3\x50\x3d\x8f\xa5\xfd\x9b\x08\x55\xf0\x44\x6e\x49\xc7\xc0\x73\xcf\x94\xd1\x8d\xcb\xd5\x70\x3b\x58\xf9\xd7\x65\xab\x20\xe7\xdd\xde\x6e\xfc\xc6\x6b\xbe\xd6\x1e\x58\x72\xaf\x8f\x49\x9e\xfb\x77\x5a\x04\x91\x56\x02\x08\x45\xa4\xf3\xc0\xea\x5d\xa9\x79\xe2\x52\xde\x43\xed\x5a\x6f\xab\x45\xf0\xe8\xe3\xe3\x00\x34\xbc\x4a\x33\xec\x0f\x5b\x8d\xd7\x5c\xf1\xfd\xc2\x38\xf0\x55\x9c\xa9\x4a\x2e\x98\xec\x85\xf2\xb9\x7a\x6a\x89\xf2\xa9\x7b\xc9\xb9\xf2\x5a\x70\x2f\x57\xd1\x37\x80\x0d\x98\x91\xd6\x34\x82\xa0\xeb\x95\x08\x54\x5d\x06\xfa\xdb\x9b\xf2\xab\x7a\xfd\x32\x48\x0a\xa3\xac\x70\x67\xe7\x8b\xe4\xf6\xf5\x5f\x64\x6d\x61\x81\x5f\x93\xb7\xe2\x46\xbb\x88\x36\x4a\x29\x25\x10\x26\x7d\x8f\xa5\x70\xde\x96\x5d\xa4\x18\x01\x59\xd9\xae\xa8\xde\xd8\xbb\xb0\x79\xd5\x27\x77\x5d\x1b\xbb\x8a\xb0\x03\x47\x07\x41\xb0\x69\xca\x09\x0f\xa5\x1c\xf5\xd2\x06\x21\xaa\x19\xb7\x71\xc5\x87\x38\xa6\x28\x84\x4c\x77\x86\xa0\x34\x9a\x70\xe2\x05\xdc\xc7\xcd\xa0\xae\x3d\xd7\x76\x15\x87\x8d\xb4\x07\xfa\x11\x67\x11\x2a\xda\x70\x35\xdc\x00\xcb\x36\xb1\x2b\x11\xa0\x74\x2e\xfb\x0d\x69\x79\x50\x25\x2b\xd3\x42\x13\x25\x36\xa3\x56\x23\x3c\xac\x03\x24\xd5\xe4\xf9\xc3\x28\x2f\x3c\x31\x85\xa7\x70\xa7\xab\xab\xf9\x4c\x3f\xcd\xa2\x37\x53\x9d\x6e\x71\x92\x8f\xa1\x3c\x36\x2d\xb3\x7b\xe8\xd5\xa6\xe9\x98\xe1\x28\xee\xa4\x3c\x5a\xce\xd3\x9a\x97\x89\xe3\x28\xed\x14\x36\x6e\xf0\x3c\xa3\x0e\x86\xb8\x65\x15\x8a\x6c\x66\x39\x5d\xb3\xbb\x48\x64\x65\x93\xf4\x45\xe7\x26\xe4\x6d\x6f\x8c\xa9\x81\xb9\xad\xdd\xf8\xd6\x37\xd5\x19\xa2\x60\xa2\x01\x74\x8b\x28\x6b\x2e\x90\x42\xd2\x19\xec\x11\x37\x62\xe1\x16\x98\x59\x1e\xe5\x4e\x1e\xcd\xe9\xa1\x34\x3c\x73\xe2\x26\xbc\xbd\xe7\xd8\x26\xc5\xd8\xba\xc9\xb1\xae\xed\x98\xae\xeb\xea\x38\x41\xc4\x06\xf1\xdb\x6e\x0d\x14\xf7\xbf\x7a\xb0\xd9\x4d\x7b\x9c\xff\x82\x38\xd5\x15\xd1\x99\x22\x2c\x2f\x5f\x74\xd2\x6b\x10\x34\x0f\x83\xee\xae\x53\xcb\xd5\x3e\x9b\xd9\x5f\x2a\xad\x05\xd2\xdc\x99\x36\xcd\x79\x7d\x2c\x9b\x1d\x9b\x61\xe7\x24\x78\x18\xcc\xd8\xc0\xa8\x5f\xd5\xbe\x97\xbb\x0e\xbc\x4a\x58\xe7\xed\x6d\xb9\x02\x78\xe1\x9d\xa8\xd6\xe1\x71\xbd\xdb\x22\x8e\xe2\x27\xda\x04\x03\x53\x10\x2d\x2c\xaf\xda\x08\x64\xaa\xb3\x13\x69\xf1\x28\x7b\xb6\x14\x5b\x10\x89\x9d\x61\xa5\x96\xdf\x11\xe0\x27\x1e\xa3\xf6\xb4\xf0\x57\x68\xfc\x29\x8a\x43\x7d\x10\x6c\x36\x0c\x30\x48\x70\x91\x6b\xfe\xff\x04\xbc\x8b\x78\x70\xf7\x24\xb4\xca\xb7\x4b\x3c\x04\x83\xa9\xaa\x76\x08\xc5\x8f\x83\x61\x4e\xbf\xa9\x8e\x16\xa0\x63\x8a\x4e\x5f\x8a\x97\x88\xc4\xff\x04\x46\x0e\x0f\x0a\xd3\x6b\xae\xca\x28\xf7\xec\xb4\xd9\xea\x24\x61\x86\x59\x5a\xa4\x9d\x34\xc6\x6a\x80\xef\x03\xe3\x98\x1e\x4f\x55\xcc\xf6\xee\x6d\x76\xfa\x26\xca\x94\xc1\x13\xa9\x09\x13\xa5\xeb\x92\x75\x7a\x51\x8d\x20\xef\x2d\x8b\xdc\x75\x5e\x9f\xa1\x86\x5e\xb6\x6a\x8b\xe7\xe5\x05\x23\x51\xda\x21\xb3\xab\xc8\x5c\x6e\x10\x70\xf5\xc7\xe2\xe4\x51\xa5\x3c\x2d\xcb\x10\x05\x9f\x87\x63\x6a\x49\x69\xc0\x06\x97\x77\x4c\xb6\x29\xd2\x17\x75\x5f\x08\xfe\x76\xb4\xc3\x74\xed\x09\x26\x26\xff\x11\x37\x0b\xde\x87\xc3\x75\x32\xf1\x04\x6b\x39\x4e\x03\xee\x33\x50\x5f\x73\xfa\x82\xb2\x84\xb4\x1b\xd0\x2e\xdf\xbe\x66\xfa\x2d\x17\xf5\x0a\x34\xc7\xf4\x1c\x47\xbf\x4a\x0c\xb7\x2a\x7a\xc3\xa1\x76\x91\xa5\x47\xe6\xe4\x87\xf1\x4f\x7b\xe4\x2b\xbd\xea\x6e\x78\x6d\xe8\xf9\xb9\x7f\x08\xe5\xcc\x00\x24\xd6\x61\x49\x20\xff\x14\xaf\x4f\x78\xfa\x73\x44\x13\x7a\x9b\xc7\x45\x7e\x40\x1d\xab\x4e\xda\x49\x0d\x11\xb6\x7c\x29\xbe\x51\x8f\x29\xbb\x5e\xb6\x71\x9a\xf4\x94\x8e\x08\xb6\xec\x3e\xf1\xab\xdc\x0f\x50\xa2\x38\xcd\xb7\x4c\x48\x3f\x90\xab\xc7\x85\xfc\xc5\xb6\xcf\x10\x9f\xfa\x85\x09\x8d\x77\x25\xf6\xc5\xf2\x97\xe1\x70\x9e\x14\xcb\xec\xd4\xea\x59\xc5\xe7\x12\x8d\x42\xbe\x84\xc1\x46\x4f\x7a\x7e\x38\x4c\xf4\xc9\xfa\xf1\xa1\xc1\x3e\x87\x53\x53\xc5\x3d\x44\x5f\x8f\x34\x78\x74\x5c\xe1\x12\x72\x69\x9a\xdc\xfe\xca\x06\x80\x2c\x46\xbc\xa1\x1f\xb3\xeb\x52\x69\x20\x2c\xe0\x17\x64\xc1\xe3\x7d\x5d\x18\x73\x63\xa1\xb4\x4d\xf2\x70\x4d\xb3\x1d\x22\xeb\x5b\xde\x97\xac\x44\xbd\x51\x86\x58\x1e\x2b\x7e\x73\x1c\x04\x8d\x26\xd8\x17\x8c\xa4\x07\xec\xfc\xda\x14\xe6\x4e\x88\x6f\xe3\x78\x63\x26\x8c\xd7\x83\x5b\x0f\xf9\xcb\x26\x65\x20\x6f\xd7\x58\x92\xfd\xcd\xb5\x74\x10\x05\xe5\x75\x15\xa8\xa4\x28\xeb\x5c\x2d\x21\x53\xde\x4f\xd7\xfd\x87\x9c\xe1\x6f\x10\xa3\x37\xbd\xf1\xf5\x2e\xa6\x3b\xe0\x45\xfe\x6c\x4c\x40\x69\x45\x6c\xb9\xd1\x97\x86\xe7\x0c\xbe\x34\x66\x8d\xc2\x32\x53\x96\x47\xe5\x09\x7f\x96\x9c\x64\xc9\x4d\x79\xd2\x5e\x7a\xa8\xbc\x1c\x9d\xa9\x27\xbd\xe8\x6f\x7d\x73\x46\xde\x20\x76\xfa\x6d\xf5\x57\x7e\x7c\xc0\xc3\x0e\x8e\xd3\x65\x8f\x92\x7c\x27\x8d\x15\x6d\x92\xec\xe2\x0e\xac\x2e\x49\x33\xfe\xda\x0b\x68\xfd\x48\x44\x7b\xfe\x6b\xc8\x33\x61\xb7\x76\x4c\xb8\x0c\xf8\x6c\x78\x2b\xbf\xf6\xd2\x84\x0c\xfc\xfd\x1a\x4c\xd8\xc1\x66\x77\x3d\xf2\x9c\x95\x4b\x2c\xa0\xb5\xe0\x15\x67\x5e\x9a\xe2\x91\x29\x7f\x0e\x56\xc2\x59\xee\xaf\xa6\x75\x22\xfb\x4e\x9a\x43\x5d\xdb\xcb\x2c\xd0\xc1\xb0\xca\x00\xce\x38\x75\xb2\x30\xb7\x7c\x9a\x26\xdb\x85\x9e\x3e\x6f\x50\x8a\x75\x12\x06\x4e\x4f\x88\x58\x6d\x05\xd2\x84\x3d\xee\x0d\xbf\x4d\x62\x68\x6f\xb7\x5e\x0a\xc4\x8e\xb6\x30\xc3\x32\xfa\xec\x98\x78\x4e\xf6\x29\xee\xfc\xdf\xe2\xcb\xbd\x73\xf2\x6c\x75\xf0\xa1\x28\x5b\x7e\x52\x61\xe8\xae\xc0\x6f\x46\x83\x64\xae\xf1\xf2\xcb\x9e\xfc\x33\x2c\xac\x07\x55\xa9\x91\x86\x17\x2f\x3f\x07\x5a\x66\x87\x0f\x7c\x9a\x22\xad\xae\x3d\xb2\x2b\xa8\x61\xce\xb6\x4b\x83\xa0\x7a\x18\xa4\x0f\xa4\x6c\x92\xc8\x7b\xb6\xb7\x89\x63\xfb\xbf\xc3\x6f\x62\x7f\x3f\x0d\x8f\x04\x2b\x00\xb8\x82\x6b\x35\xcb\x03\xd3\x7f\x60\x86\x48\x33\x34\xcb\x51\x1c\x15\x1b\xb3\x01\x86\x36\x19\x13\xf3\x86\xea\x99\xc3\x00\x21\x72\x77\x08\xb2\x97\xe8\x3e\x8a\x2c\xea\x8d\xa2\xa4\x87\xfe\xa2\x07\x84\xcb\x35\x38\x70\xf8\x0b\xbe\x96\x56\xd8\x2c\x32\x71\xf4\xa6\x5b\xa0\x48\x99\xff\x29\xee\x52\x4f\xa6\x12\x83\xa5\xa5\x66\xde\x31\x49\xd7\xc4\x5a\x94\x75\xe4\xe6\xf2\x3e\xf5\xa4\xe6\x53\x07\x9b\x66\x18\xdb\xa4\x00\xfe\xc8\x39\xbd\xaa\xca\x9b\x57\xc9\xfd\x92\x88\xb5\x8e\xb5\x5e\xf0\xb5\xe0\xac\x63\xe2\x74\x94\xf4\x34\x43\x84\x9d\xfa\x84\xf5\xd2\x3e\x21\x36\xc8\x41\xd4\x01\x8b\x1c\x56\xfe\x3d\x5c\xa2\x9e\x54\x66\x24\xed\x1a\x28\xcc\x97\x1c\xc5\xe8\x3b\x63\x9a\x82\xdf\x8f\x58\xd6\x0f\x2d\x96\xdf\x82\xe4\xe3\xc2\xd4\x68\x45\x69\x57\x33\x1b\x75\xfa\x03\x93\x24\x04\x70\x3e\xcd\x10\xbe\xd3\x15\xe0\x6f\x52\x64\x06\xad\x1d\x8f\x35\xc0\x1b\xd3\xe3\x71\xb5\xa9\x8f\x2a\xb3\x36\x0c\x08\x22\x72\x61\xfc\xf5\xaf\x48\x8e\xbb\x51\xde\xc9\xec\xd0\x24\x9d\xc8\xe5\x2a\x30\xe3\x17\xc4\xdb\xea\xf1\xf8\x6b\x01\x23\xb2\x66\xb3\xbc\x6f\xba\xea\x1e\xf6\xfb\xe0\x1f\x05\x3f\x47\x4a\xfb\x9c\x77\x83\x22\x28\x5a\xae\x08\x96\xe9\xd1\x5b\x76\x63\x06\x5b\x53\xa1\x32\x02\x7e\xd9\x0e\x1a\xa5\xe9\x77\x97\x20\x5e\xdd\x5d\x9b\x6f\x01\xd8\x62\xdd\xda\x64\x26\xe8\xa6\xdd\x24\x99\x1d\xc5\x46\x02\xce\x74\xaa\x6e\xea\x23\x8e\x7e\x7b\x14\x75\x4d\xd0\xfc\x83\x71\x79\x57\xd6\x18\x8a\x2b\x57\x69\x8e\xf5\x2c\x79\xad\x64\xd4\xeb\xa1\xfe\xed\xba\xc3\xf7\xc8\x91\x23\xa6\x06\x62\xe9\x2c\x61\x79\x3a\x7d\x6b\x86\x36\x2f\x80\x8c\xd7\x0d\x2c\x9f\x73\x9b\xd9\x8f\xdc\x65\xd1\x4a\xe1\xc6\x1c\xf0\x45\x4f\xb0\x84\xc5\x13\x93\xad\x13\xa9\x0b\x87\x9a\x83\x62\x40\xa3\x92\xca\x52\xa4\x27\xcc\x98\xe3\x74\xf7\xbe\xa1\x10\x43\xb0\x49\xb8\x59\xf4\x86\x67\x02\x53\x9d\x34\x4f\x34\xe7\xe7\x10\x4e\x4e\x55\x1f\x16\x17\xb5\xb9\x18\xcd\x84\x3e\x24\x1e\x89\x6f\xdf\x87\xea\xdf\x29\x1a\xab\x1f\xfe\xff\x7b\xa2\xd6\xa7\x94\xa4\x52\x96\x73\xf4\xa4\x72\xc3\x2a\x3e\x0c\xe3\xe3\x94\x88\x5d\x9f\x6d\x39\x3d\x62\xf3\x19\x12\xa8\xd9\x23\x5e\x02\x6e\x70\x87\x20\xd2\x80\xfe\x3c\x53\x53\x72\x6f\x16\xe9\xd0\xbc\x39\x53\xda\x74\xa4\x82\x1f\xcb\xcd\xc3\x72\x03\x62\x40\xa4\x18\xba\xcf\xd6\x6c\xf7\xd9\x50\xe4\xda\x33\x09\x14\xf2\x4f\xff\x55\xc9\x1e\x91\xd9\x3e\x3b\x21\xd4\xd2\x53\x00\x6a\x7a\x56\x52\x4f\x8e\xbd\x5b\xae\x56\x10\x68\x7f\xfd\x2f\x4d\x02\x4c\xec\xaf\xfc\x55\x24\xd3\x68\xb0\x7d\x6d\x12\x94\x90\xb6\x4f\x64\xed\x38\x46\x6c\xf1\x1b\xae\xf5\x53\xde\x08\xa2\x8e\x13\x28\x7c\x62\xc3\x3c\x96\x20\x0a\x5d\xbd\x3f\x19\x53\x8b\x6c\xcf\x24\xa8\x3d\x95\x16\xb1\x52\xd4\x28\x7f\xd2\x01\x22\x82\x5e\xe8\x28\x31\xdd\x6f\x8f\xbc\x51\xc2\xed\xa1\x5f\xa4\xc7\xe4\x3e\x57\x4c\x1c\xe7\x3b\xa8\x36\x7f\x52\xab\x07\x7a\x26\xcb\x0e\xeb\xf3\xad\x71\x18\x0e\xb8\x30\x26\xa9\xbb\x3b\xb8\x13\xa4\x77\x0f\x68\x6c\xe0\x42\xe0\x29\x8d\xb2\x5e\x94\x60\x07\x3b\x69\x76\xf9\x06\x5c\xd1\x3f\xa2\x19\x88\x0b\x53\x6c\x3b\x9e\x6f\x75\xb4\x1c\x13\x4b\xb4\x9b\x31\x23\xe4\xfd\x85\xba\xac\x3f\x49\xa3\x1c\xae\xc4\x53\x2c\xee\x0b\x21\x06\xdb\xe7\x38\x4f\x9f\x6d\x78\xb2\xe5\x3d\xa8\x9c\x78\x90\xfb\xc2\x21\xcd\xd6\x14\xc7\x80\x12\xf0\x6e\x4c\x03\xa2\x66\xbc\x6b\x52\xbe\x46\x84\x9b\x0a\x42\x42\x34\xbd\xbd\x1d\x50\x7f\xcf\x60\x3d\xa2\x74\xf3\x27\x92\xf2\xf8\xb6\x48\xb9\x1e\x01\xe6\xbb\x21\x57\xe9\xd4\x12\xf0\x4e\x50\x0c\xbe\x8d\x26\x8b\xd7\xfc\x90\xb9\x98\x71\x50\xc8\xb8\xc3\x3c\x63\x1b\xa3\xa4\x6b\x9c\x52\x1d\xbc\xec\x75\x76\xb9\xd7\x09\x06\xb1\x1e\x15\xfd\x74\x54\x3c\x1b\x88\xc8\x76\xb6\x03\x8c\xe0\x8c\x94\x13\x40\xdf\xf8\x6f\x74\x91\x60\xdf\xfe\x4b\x12\xac\x99\x6d\x13\xc6\xe2\x3a\xac\x03\x16\xc6\xa5\x56\x90\xfa\xd9\x26\x41\x9a\x67\x94\x2b\x1f\x33\x96\xfb\x03\xb1\x2d\x30\x47\x1f\xb2\xae\xc0\x35\x04\x54\x9e\xfd\xc4\x53\x55\xef\x9e\x10\x91\xc2\x2d\xdc\x9a\x5e\x56\x2d\xfb\x77\x5e\x18\x88\xe3\xd3\x58\x89\x56\x03\xf4\x64\x3a\x2c\x38\xb0\xff\xeb\xcd\x95\x34\x2d\xfa\x69\xdc\x25\xe2\xa2\x3f\x43\x3c\xaf\x27\x95\xf2\xbf\x1d\xf6\xe1\x78\x50\x5b\xba\xdb\xa2\x21\x99\xd3\x44\xa9\x70\x71\x6a\xc1\x1e\x7a\xb5\x99\x58\xdb\xdd\x98\x0d\xb3\x31\x1f\x8e\x43\x29\x5a\xe3\x7a\xac\xa4\xf3\x04\x2a\x7a\xe8\xed\x6d\x1c\x25\xab\xf9\x76\xd9\x5d\x84\x19\x70\xd2\x91\x47\xe5\x33\x28\xc5\x5e\x22\x70\x45\x43\x9b\x72\x3a\x4e\x23\x6e\xc1\x41\xdd\x83\x65\xb5\xc5\xc6\xee\x72\x79\xa0\x30\xb3\x29\x77\x22\xa8\xe1\x5f\xfa\xe5\x36\x89\xae\xea\x9c\x15\x21\x01\xf7\x7b\xb2\x4f\x82\x1e\xcd\xc0\xe6\x22\x04\x7a\xd0\x22\x38\xc9\xeb\x40\x46\x62\x23\x3e\x2f\xbb\x0a\xa3\x03\xdb\xda\x84\x86\x4d\xec\x86\x35\x28\xbf\x3b\xe2\x04\x62\x21\x3b\x4d\xe8\x82\x4e\x3f\x1a\xce\x95\xdf\x82\x44\xfc\x26\xf2\x54\xe0\x9d\x1f\x92\xc5\x7a\x44\x1d\x72\x55\xdc\x44\xff\xeb\x93\xa9\x17\xf5\x4a\xd3\xc4\x45\xdf\x9a\x46\x95\x08\x90\x0a\xe7\x41\x22\xc9\xc1\x0d\xb7\xcb\xce\xa5\x5c\xd2\x4f\x71\x84\xc9\xb2\x63\x5f\x6b\x13\xb5\xab\xea\x1c\x61\x21\x60\x4e\x1b\x5e\xe2\xfc\x54\x57\xf1\x95\x66\x5e\x8c\xba\xae\x36\xa6\x2b\x84\xd0\xc6\xd3\xa0\x46\x80\xcc\x53\xe2\xe2\xa9\xa5\x3c\x71\x9d\x94\xa1\xe9\xac\xce\x86\x72\xe5\x55\x24\x00\x1e\x75\xb6\xe4\x9a\x6d\x7f\x46\x23\xdf\x6f\xd7\x4d\x8e\x0d\x05\x1e\x06\x1e\x31\xd4\x38\x8e\x91\x6c\x33\x58\x4a\xd1\x53\xfd\x29\x93\xc5\x87\xd0\xab\x6f\xd7\x63\x5b\x28\x8c\xd0\x77\x62\xff\xc6\x41\xdf\x89\xdd\x1a\x79\x2d\x2e\x36\xd7\x23\xad\xdc\xa3\xea\xf0\x89\x5c\xb0\x1e\xb7\xb6\x4c\xa7\xbd\xf1\x46\x73\xe1\xd0\x8b\x62\x97\xdc\x60\x74\x10\x22\xde\x86\x12\x83\x97\x51\xf8\x8d\xd7\x58\x1a\xd0\xa1\x76\xbe\x3f\x6e\x7c\xeb\x9b\x9e\xf2\x8b\x5a\x06\xef\x8a\x61\x47\x97\xea\xa1\x98\x3b\x37\x1f\x5a\xae\x4f\x98\x85\xbf\x3f\xa6\x19\xe3\x39\x84\x13\x08\x79\x38\xb9\x00\x14\x09\x7e\x60\x7b\x9b\x66\x87\xb4\xa9\x88\x9d\xf4\xc3\x16\x0d\xa1\xaa\x6e\xba\xf3\x96\xe5\x0b\x70\x53\xa7\x0c\x4a\xd9\x39\xa9\xe9\x97\x0c\x4c\xb2\x1a\x25\x30\x80\x6e\xb8\xa4\xe1\x99\x5e\x4e\x4f\xa3\x85\x85\x1c\x5e\xc9\x79\x90\xc0\x5e\xa2\x64\xf6\x52\x45\xdf\x4b\x96\xe0\x5c\x00\x63\x5e\xc6\x4e\x46\x99\x79\x66\x42\x0c\xb9\x5f\xd2\xe8\xd6\x6d\x94\x7e\xf5\x1f\xea\x60\xd1\x1d\x47\x67\xef\xf6\x34\xed\x6f\x6f\x31\x25\xe6\x87\x6c\x97\x43\x3b\x95\x57\x82\xad\x89\x91\x72\xf8\xc0\x5d\xf2\xc4\x61\x43\x76\x4e\x68\x34\x01\xeb\x43\x41\x6e\xed\xdd\x3e\xe7\x4d\x76\x92\xf6\xb1\x0e\x33\x54\x08\xdd\x11\x85\x3f\x20\x55\xca\xb3\x63\x82\x4c\xea\x38\x3d\x7e\xf1\x14\x29\xbb\x9d\xa5\x96\xe4\x34\x94\xf2\xf0\xfc\xeb\x4d\x1b\x15\x7d\x9b\x6d\x2f\xbf\xd8\x6f\xcb\x85\x43\x2e\xfb\x21\x9b\x77\x45\xca\xa6\x9a\x5a\xa0\x85\xec\x44\x5c\x65\x19\x39\x69\xda\x67\x48\xcd\x65\x30\xb4\x19\xf4\xef\xb0\xc2\x55\xfa\x58\x4f\xc6\x84\x52\x51\xad\xf5\x9d\x24\xc1\x0a\x38\x9d\x73\xbd\x61\x09\xdd\x93\x97\xe3\x75\x80\x02\x03\xf0\x1c\xa7\x55\x7b\x24\x82\xf7\xa4\x6c\x3e\xea\xbe\x48\x98\xa1\xbe\x35\x99\xd6\x3c\xf1\x87\xb3\x13\x26\xa1\x94\x67\x0a\xcf\x8c\xd2\xba\xe3\x0c\x76\xd7\x9d\x2e\xc7\x51\x4f\x98\x1d\x05\xdd\x8c\xaa\xd3\x55\x62\x0c\xfa\x3f\x60\x97\x5c\x83\xa8\x4e\x63\xdd\x8c\xe2\x62\x43\x3e\xae\x35\x27\x19\x20\x47\xcb\xf6\xf7\xa8\xa1\xb3\xbd\x1d\xe6\xbc\xba\xd1\x9b\x6f\x46\xc2\x90\x43\xfb\xff\xd8\x38\x8c\xff\x1c\x23\x62\xa1\x4e\x6c\x86\x85\x30\x49\x95\x76\xca\xab\xcb\xee\xf3\x4a\xb3\x3c\xa1\x62\x3a\x40\x2f\x13\x25\xc0\xef\xd1\x88\xc5\xef\x05\xce\x94\xd8\x94\x21\xf6\x0c\x61\xff\xf4\xf1\x63\x0b\x3c\xa4\xa9\xde\x4b\xd4\x8b\x12\x26\x0b\x57\x43\x40\x39\xff\x87\xd8\xc3\x7a\x52\x27\x83\xf3\xed\xd1\x60\x39\xd5\xdc\x10\xf1\x30\x2a\x88\x78\xc8\x57\xf1\x90\x1d\xe1\xf2\xf4\x10\xda\x81\x66\xc7\x0c\xa3\x42\x07\xee\xbc\x2a\xe7\xd2\x92\x3b\xa6\x9c\x70\x69\xdf\x37\xe5\xaf\xe0\x49\x2f\xb0\x5b\xbd\x40\xb0\xfd\xe5\xa8\xfb\x24\x65\x29\x97\x69\x30\xe9\x1e\xb3\xc7\x7f\x0c\x6a\x66\x34\x3b\x3e\x20\x48\xe2\x8f\xc7\x41\x3a\xf5\x63\xac\xb4\x4a\x55\x4a\x29\xad\x24\x98\x76\x2d\xab\x72\x61\x50\x2f\xeb\x75\xf7\xb5\x44\xff\xd0\xc9\xac\x29\xa2\xb5\xa8\xd8\x10\x2a\x03\xdf\x80\xdd\x17\x32\xb2\x9a\xd4\x67\x18\x75\x56\x73\x9e\x23\x39\x05\x17\xe5\x18\xd9\xea\x06\x3c\x06\x69\x66\x67\x1a\x87\xe7\x37\xaf\x22\xad\x83\x15\xdc\x8e\x0e\x10\x3e\xf8\x90\x22\xab\x95\x38\x5d\xa7\x26\xca\x29\x86\x62\x7d\x09\xeb\x85\x3e\xc1\xa7\xb2\x8c\xe1\xf7\x36\xa9\xd0\xd7\x31\x71\xbc\x9b\x94\x63\x2e\xc1\xf7\xa1\x82\x7f\xbf\x55\x91\x36\xf2\x71\x0d\x46\x15\x55\xd6\xad\xc5\xe8\x3a\x0a\x09\x2e\x8e\x03\x51\xe9\x07\x63\xd6\xcb\x3d\x8a\xbe\xb1\xe3\x62\xaf\x89\x8b\x3a\x69\x94\x74\xa2\xae\xf3\x1e\x5e\x87\xd0\xd3\x78\x9e\xf4\x38\x90\x6e\x34\x8c\xd3\x81\x71\xba\xfc\x8a\xf8\x94\x3f\x75\xe8\xcf\x3a\x9e\x9c\x7e\x3a\x80\x2a\x83\x67\x63\xf4\xa5\xfd\x8f\xc7\x34\xbb\xfb\x8e\xef\x58\xf5\xad\xf5\xc2\x58\x44\x06\xe7\x99\xe1\xa8\x30\xb9\x92\x66\x03\xe1\xeb\xd5\xb7\xef\x06\x92\xe4\x0a\xdd\xa4\x92\xdb\xf2\xbd\x98\x5a\x49\x9a\x7d\x12\x01\xc3\x8d\x8a\xac\x6a\x36\x4a\x9e\x0c\xce\xea\x49\x49\x10\x5d\xc5\x88\x10\x9c\xa7\xe5\xd9\xbb\x09\xb6\x60\x38\xef\x52\xf9\x1b\xe2\xaf\x5e\x95\xfa\xc0\x7e\xcf\x4e\x5c\xc6\x54\x70\x3b\x6f\xa1\xac\xe8\xb0\x10\x0c\x9b\xa9\x2b\x17\x2a\x89\x87\x71\x73\xcd\x5c\x17\x73\xde\x2e\xf4\x5a\x96\xed\x4a\x9a\xd9\x5d\x58\x19\x8e\x71\x84\x05\x7a\xca\x9b\xab\x08\x65\x28\xd2\x18\xe9\x03\xca\xdd\x8f\x69\x90\x95\x93\xab\xe3\x12\xdb\x39\x96\x33\xaa\xac\xbd\xcd\x5a\x64\x49\x61\xe3\x74\xb8\x85\x21\xe3\xc0\xbc\x67\xc8\xa8\x81\x6d\x7f\xbd\xb4\xb5\x4e\x00\x02\xb5\xf8\x9b\xd4\x8c\xbe\x39\x85\x5b\x11\x16\x7e\xc5\x86\xeb\x64\xab\xfc\x86\x9b\x72\xad\x31\xcc\x90\xa6\xa0\xb9\xd3\x8b\x34\x77\x3a\x9d\xb4\xbe\xfc\x72\x33\xb6\x6b\x36\x16\x9a\x4a\x44\x18\x27\x49\x03\xe8\xa4\xaf\x03\xd9\x32\x43\x61\xad\x81\x2d\xc4\x09\x5b\xbf\x78\xdf\x52\xf3\xdb\x69\xa4\x9b\x10\xcf\xe4\x3a\x31\x88\x5c\xaf\xf3\xbc\x18\xfe\x68\x84\x48\xf3\x1d\xe2\xd7\x79\x67\x6a\xb3\x1f\x9e\x5f\x28\xb3\xa0\xa8\x97\xf8\x3d\xe0\x67\xb6\xc2\xfc\x56\x90\x52\xcb\xa2\xa4\xa7\x6c\x79\x88\xfd\x7e\x01\x75\x40\x62\x13\x76\x5b\xec\xd9\x49\xc0\x13\xd7\x51\xe5\x2c\x34\xad\xc9\x92\xa8\x57\x99\x2c\xbf\x82\x10\xcc\x69\x08\x71\x7d\xca\xe4\x43\x7a\x10\x57\xe9\x41\x5c\x1d\x33\x3d\xc2\x5a\x9a\xcd\x12\xad\x5e\x8b\x34\xb2\x50\x9e\x43\x20\x34\x8b\xf4\xdb\xf1\x6b\x55\xea\x17\xb9\x81\xe1\x70\x3d\x0f\xf9\x0a\xd7\x0d\x79\xd2\x23\xe0\x32\xd0\x8b\xa0\x79\xa7\xc9\xaf\x9e\xf8\x69\xa0\x4e\x9a\xe4\xc3\xa8\x33\x4a\x47\xc0\x5a\xfb\xae\x5b\xf9\xc7\x7a\x32\xf5\x70\x16\x0e\x35\xbb\x91\x59\xb6\x85\x2b\x1d\xe3\x89\xde\x27\xa2\xeb\x47\xc4\xce\xf3\x03\x1f\xbf\xac\x19\x19\xc9\x96\x5f\xd2\x46\x64\x8b\x9b\x92\xd3\x9d\x0c\x19\x83\x98\x09\x23\xfb\xbb\x68\xc2\xa3\x81\x20\xdf\xad\xfb\x50\x58\x33\xcb\x26\xe9\xa6\xc9\x1c\x8f\x36\xc8\xe6\x87\xe9\x38\x5f\x19\x73\x90\xdd\xa6\x22\xa8\x95\x6e\xae\x5b\x54\x45\x1a\xa6\xef\x1c\x29\x2c\x31\x4d\x5c\xa4\x76\x4a\x1e\x75\x6d\xbe\x3d\x40\xc2\xaf\x04\xa6\xcf\xcb\xcd\x76\x85\x94\x40\x2e\x01\x7c\x3e\xbb\x27\xd4\x12\x9b\x45\xc9\xcc\x55\x2c\xb8\x9d\x15\xa7\x99\x29\x46\x99\x99\x09\xb1\xea\xc9\x0a\xe3\x50\x00\x08\x7c\x49\x83\x11\xb1\x19\xf5\xfa\x71\x84\xc5\x80\x4e\x8c\xd2\x90\xeb\x09\xf9\xfb\xd5\x34\xe9\xed\x22\x8a\xd9\xeb\xe3\x10\xcf\xdf\x16\x2f\xe0\x05\x15\x7d\xa5\xed\x31\xa0\x5d\xf8\x87\x4d\xa4\x25\x88\xc3\x90\x0f\xc3\xcf\xce\x22\x07\x46\x4e\x7f\x1d\x55\x52\xfd\x08\x95\xb0\x96\x5e\xff\xfa\xcc\xb6\xaf\xeb\x47\x1e\xb2\x70\x39\x00\xdc\x61\x6c\xc1\x47\xe5\xe9\x68\xb9\x98\x95\x88\xa1\x22\x8f\xe0\xc6\x73\x82\x3b\xbc\x43\xbb\xeb\xfe\xf8\x19\xda\x00\xa3\x81\xcd\x66\x88\x59\x05\x28\x28\xec\x49\xa8\x2c\xc3\x7a\xdf\xa5\x90\xf5\xaf\xfc\xea\xaf\xcd\x10\x35\xdd\x59\x42\x97\x5d\x26\xda\x86\x07\x74\x73\x89\x2d\x76\xf9\xba\xc6\x1f\x3e\x2f\xa9\x92\x7f\x6a\xa1\x87\xa9\x38\x40\xdf\x47\xf0\x48\xf8\x63\xd4\x20\x9d\x7b\x7e\x12\x12\xe7\x1b\x02\xe9\x43\x6e\xf6\x3d\x84\x27\x48\xa0\x2e\x92\xb6\x86\x89\xcb\xbd\xd7\xb1\xe0\xc3\xf2\x41\x18\x91\x88\x86\x01\xf9\x27\xda\xac\x77\x3a\x18\x44\x45\xe1\xc9\xe8\xb0\xbf\x67\x27\x61\x32\x63\xb6\x5d\x03\xbb\xe9\xc4\x06\x6c\x6c\xae\xcc\x7a\xbd\xa2\x66\x45\x60\x16\x94\xdf\x5d\x97\xa9\x0e\x8e\xdf\x49\xd7\x6c\x36\x13\x7a\x6c\x90\xd4\x83\x29\xfb\x3f\x11\xd3\xba\x98\xfb\x49\x92\x5d\x6c\x6c\xd5\x55\xd1\x63\x7a\x28\xb9\xcd\x22\x25\xbb\x5b\x38\xa4\x85\x4f\x28\x49\xe8\x71\x1d\x4c\x38\x8d\x37\x06\xc3\xa8\xd3\x08\xd3\xd8\xe7\x39\x7d\x38\x5f\x0b\x2d\xce\x46\x3e\x5e\x45\xc6\x7f\xa3\x15\x8a\x72\x37\x98\x83\xbf\x48\x87\x43\xe4\x78\xdf\xd0\x88\x7c\x37\xc1\x0d\x67\x26\xc1\x18\xb2\x48\x4b\x19\x4f\xee\x26\x89\x7a\x15\xa9\x10\x20\xaa\x63\xde\x0a\xed\xed\xe7\xa4\x23\x06\x94\xd1\x3d\x59\x62\x8e\x4f\x87\xca\x67\x6c\x1a\x6f\xa3\x50\x85\xfa\x8f\xf6\x11\x54\xba\x70\x0a\x92\xb0\xb8\xe8\x05\xd1\x67\x08\x75\x78\x89\x0a\xa4\x9b\x84\x25\xbd\x3c\x26\x14\xb9\xc8\x2a\xb0\xad\xfd\xa8\x45\xb6\xf6\xa3\x3a\xb2\x13\x71\xa9\x91\xca\xda\x21\x90\xbd\x4c\xd5\x80\xcb\x53\x6c\x69\xd4\xbd\x37\xcb\x71\x95\xd9\xf3\x3a\xa9\xa8\x5d\x6f\xbd\x44\x66\x66\x50\xde\x93\x04\xaf\x33\xdc\xb0\xb9\x09\x67\xe2\x1c\x08\xb5\x38\x3e\xf7\xf7\x35\x30\x59\xde\x37\xb1\x83\x71\xc3\xec\x5e\x60\x1b\x7c\xa1\x15\x1a\xba\xb9\xd9\x78\x2e\xc4\xb9\x6f\x51\x3f\xf9\xe7\x32\xdd\x00\x63\x00\xd9\x56\xbc\x4d\xf4\xbf\x14\x5b\x3f\x11\x5b\xe8\x8a\x3d\x61\xbd\x7d\x58\xc9\x6a\xe5\xa1\xe2\x1f\x4e\x8e\x69\x16\xe3\x24\xe6\x45\x94\x6a\x18\x09\x2f\x0c\xe1\x35\x5c\x2f\xa6\x1c\x74\xec\x51\xff\x05\x16\xd7\xab\x5a\xfe\xfa\x6f\x85\xb4\xe9\x5b\xdf\xd4\x4a\xca\x6c\x7b\x6b\xd9\x77\xef\xde\xa6\x8d\xa3\x06\x6d\x5f\x8d\x37\xdd\xea\x0b\x25\xc8\xd5\xa8\xe8\xf4\x6d\xd2\x00\x32\x0d\x0e\xff\x6d\x0c\x87\xe8\x09\x73\xe8\x16\x6f\xce\x84\x06\xc9\x51\x51\x57\xf2\x18\x6f\xaf\x5c\x74\x7b\x6a\x97\x2e\x2d\xed\x17\x7b\x80\xa0\x66\xbf\x9f\xea\xe2\x0c\x04\x58\x67\xec\x95\xe3\x95\xf0\x2f\xb1\xc5\xd3\xe5\x2f\x21\x92\x9d\x69\x93\x90\xc9\x47\x68\xa2\x79\x1d\x9e\xf2\x99\x22\xf6\x46\x7c\xe0\xb5\x06\x5c\xb1\xed\x3f\x7e\x0e\x09\xbd\x13\x9f\x2e\xdf\x2e\x32\xae\xfb\xbc\x0d\x6f\xb6\x68\xba\x0b\x3c\xa2\xf0\x01\x37\xc6\x61\xe3\x5e\xe5\x67\xba\x6d\x22\x56\xc5\xf5\xd1\xa7\xc9\xcf\x57\xcc\x40\xea\x0b\xfa\x66\x4f\x93\x74\x12\x9a\xd4\x58\x94\xff\x34\x00\x35\xd3\x75\x93\xa1\xec\xec\xd8\x72\x02\x3a\xee\xe2\x14\xcc\x7a\xff\xab\x07\x9b\x45\xea\x32\x00\xd8\x1f\x58\x37\x3d\xae\x51\x03\xdb\xdf\xec\x99\xac\x6b\x13\x8d\xeb\xb1\x4e\xcf\x6a\xc9\x00\xeb\xf9\xa9\x76\x15\xdd\x1c\x7a\xbb\xb3\x93\x67\x68\x4a\xac\xeb\xc8\xfd\x75\x84\x4c\x6e\x29\x8c\x93\xb9\x1d\x68\xbb\x23\x48\xc7\x98\x18\x78\x41\xbc\x54\x25\x5c\xc1\xd6\xfa\x90\xf2\x96\xe3\x2d\x12\x95\xf9\xd0\x3f\x9b\xc4\x8c\x72\x6b\x66\x48\xcd\x07\x55\x92\x8a\x00\xbb\xce\xf8\xb1\x62\x73\x9a\xd8\xc2\x64\xa2\x9c\x7c\x38\x30\xa8\x7b\xa0\xc3\x7f\x75\xba\x8e\xef\x61\xc5\x0c\x5c\x0c\xef\xc6\x34\x79\x66\x93\x26\x4a\x8a\xbe\x1d\x58\xe2\xb7\xfc\x23\xf9\x6a\x3d\x6e\xf9\x01\x9a\x8d\x84\x52\x75\xa7\xae\x29\x0b\xce\x35\x0b\x6b\x24\x3d\xd2\xa1\xcd\x08\x0f\x84\xf1\x05\xb4\x42\xdc\x38\x6c\xc8\x91\x1e\x4e\xa5\xaa\xfb\x96\x9a\x6b\xa9\xaf\x8b\xa8\x18\x5b\x8b\x26\x5a\x2e\x52\x5f\xa2\x48\x47\xf2\x90\x64\x47\x38\xa2\x07\x52\x04\x3c\x43\x06\x64\x65\x54\x8c\x32\x9b\x3f\x8d\x45\x83\xd5\x79\x5f\xac\xa6\x93\xb3\x0e\x68\x46\xa5\xdf\x83\x99\x40\x45\xb5\x22\xec\xe6\x15\x0a\x82\xca\xfe\x7b\xb2\xe1\x80\xec\xff\x17\x02\x23\xf1\xb1\x68\xf9\x0e\xb0\xd9\xef\x49\xd4\xe2\xba\xf2\x84\x98\xfb\x01\xcc\xac\x72\x49\x48\xa4\xe2\x48\x72\xa8\xfa\x6c\x92\x9e\xcd\xd2\x51\x3e\x2b\x9f\x84\x05\x50\x0d\x48\xd8\xe4\xeb\xb8\x79\x3d\x69\x11\xc3\xc8\xed\xa9\x05\xb3\xb8\xd8\x84\x6c\x32\xed\x86\x2d\xc2\xac\x41\xaf\x2c\x1f\xa4\xab\x36\x43\xdc\xe8\xd8\xc7\x03\x48\xf0\x04\x8f\x79\x9d\xd8\x3a\xe4\xf8\x8a\xa0\x6e\x9f\x29\x1f\x8f\xdb\x9d\xe5\xfd\x69\xef\x5b\xde\x00\x20\x42\x77\xc6\x01\x7d\xff\x3d\xee\x50\x5f\xc0\x9d\xf8\x39\xfe\xf2\xee\x2b\x1c\xc2\x6e\xea\x31\x00\xe8\xbe\xc7\xcb\x00\x20\x0c\xfd\xf5\xd3\x30\xc5\xc8\x57\xcf\x6b\x5b\x0d\x33\x1d\x28\xd3\x20\xfe\xbd\xdd\x22\x76\x90\x9f\xb3\x4a\x95\x90\x3c\xcd\x92\x49\x7d\x8c\x2b\xd2\x93\x0a\xbf\x6c\x99\x05\xe8\xf1\x94\xb3\x39\x30\xdf\x34\xa5\xe5\x74\xd1\x87\xa7\x05\x28\x2f\xdc\xd1\x02\x84\x1a\xe0\x28\x30\x90\x63\xc1\x5e\x23\x84\xdc\x35\xca\x31\xb2\xd1\x60\x26\xd4\x76\xee\x91\x6e\x8b\xa6\x9c\x8e\x69\x33\xec\x8d\xbc\x30\xd9\x9a\xed\x2a\x6f\x33\xec\xc0\x55\x46\x9e\x83\xf0\x15\xcb\xf3\x28\xcd\xce\x1e\xa5\xe5\x99\xd9\x61\x9a\xc9\xc6\x2f\xff\x16\xee\xff\xfd\x16\x31\x35\xa2\xb9\x87\xa2\xe5\x67\x95\xf9\xaa\x74\xdd\x30\x8c\xfb\x1a\xc3\xb8\xaf\x11\x38\x7a\x23\xb2\x31\x0c\xf8\xc2\x21\x6d\x60\x5f\x94\xf0\x56\x8f\xeb\xaa\x07\xd0\xd8\xe4\x6a\x7e\x88\xd9\xa7\x36\xc5\xe1\xf9\xfd\xcd\x7c\xa8\x83\xf5\x6e\xa4\x03\xb5\x35\x37\xb6\xe6\xc5\x2e\x63\xb3\x61\xbb\x3b\x1b\x44\xe3\x24\x57\x0d\x6b\xfe\x5c\x9b\x38\x52\x1e\x4b\x74\xb4\xf9\xd1\x38\xa4\x7b\xa8\x5d\x3a\x29\x7e\x59\xde\xd8\x4b\xf7\xa9\x28\x7e\xb3\x0e\xd4\xd0\x4d\x87\x8e\x36\x05\x6e\xff\x12\xc7\x00\xd3\xa2\x36\xfb\x96\x9a\xcb\x99\x49\x3a\x7d\x07\x4f\xf5\xec\xbc\xbe\x8a\x72\x85\xc6\x5b\xec\x91\x4e\x3c\xea\x5a\x52\xec\xff\xe1\x98\x24\x25\x7f\x38\x25\x80\xf3\xd7\x9a\x45\xdf\x14\x02\x3c\xe6\x31\x3a\x87\x9c\x2f\xdf\x14\xc2\x90\x1f\x63\xe3\xc1\xf0\x7f\xe0\xbd\x4c\x3e\x4c\x93\x3c\xcd\xdc\xda\x76\x1b\xae\xfc\x7d\x3d\xae\x36\x0e\xd7\x36\x76\x05\xf9\x93\x8f\xd1\x8c\x80\x3d\x86\x2f\x07\x16\x01\xe3\x59\xc8\x80\xe6\x26\xe5\x12\x71\x4c\x8c\xe5\xe3\x75\xe3\x2c\x12\xa1\xe9\x37\xb5\xc8\x86\xfd\xce\x98\x78\x50\x4e\x55\x78\xd6\xbf\xad\x85\x37\x4f\xa5\xb0\xff\xd5\x83\x5c\x93\xf0\x6b\xba\x67\xad\x06\xfb\x4e\x85\x50\x4c\x86\x9e\x90\x82\x88\x29\x6c\x1c\x39\x89\x0e\xcf\x1b\x1e\x38\xc4\x09\x32\xfb\x66\x34\xcc\x75\x9e\x55\xc9\x81\xc6\x34\xb6\x71\x91\xbc\xdd\xd0\xe4\xa5\xbb\x23\xf2\xd0\xf3\x24\x8d\x7c\x7e\xbc\x95\xf8\xdd\x25\x44\x36\x8e\xa3\xb4\x40\x92\xea\xc4\xe2\xc9\x81\x05\x1d\x9a\x2c\x1a\xda\x39\xc2\x6b\x9c\x27\x66\x77\x1d\x90\xc4\x4a\x57\x2a\x52\x14\x60\xe0\x64\xf1\x2a\xde\x99\x5a\xdd\x07\xe6\x9b\xeb\xc6\x93\x12\x79\xc9\xa6\xf2\x47\xf4\x64\xca\x88\x1e\x9e\x5f\x6a\x0e\xa2\xdc\xa7\x70\xc8\x80\x2e\x4a\xda\xaa\xc7\xe4\xc6\x0a\x93\x94\x6e\x0c\x55\x64\x05\xe8\xb5\x1a\x44\xf5\xfc\x0c\x09\x6c\x0f\x06\x36\xdb\x11\x00\xac\xef\xc3\x09\x39\xb7\x4c\xb3\x99\x3a\x55\xa3\x31\x1d\x75\x0b\x3f\x27\x69\x36\x4d\x07\x5c\x2b\xe6\x97\xc2\x35\xd9\xd8\x56\xc5\x0a\xff\xfd\x3a\xb6\xae\x36\x49\x09\xca\x7f\xcf\xee\xc9\xf6\xa2\x24\xdf\x1e\x10\x69\xff\x5c\x82\x11\xee\xf1\x39\x16\xf6\xf2\x9b\xf5\x58\x22\x0e\x94\xdc\x34\x9b\x05\xc6\xef\xac\x4f\x60\x63\x29\x85\x27\x3d\x80\x9e\xb1\xa3\xd1\x2c\x72\xc1\x73\xf9\x75\x0a\x25\x1c\x13\x38\xe4\x49\x19\xeb\x73\x81\x71\x1d\x69\x47\x9e\xc6\xfa\xf6\xe0\x42\x4f\xf2\xd4\xfb\xc9\x29\x94\xa0\x87\x9b\xc6\x65\xb0\xbb\x77\xaf\x96\x50\x6f\x21\x76\xd1\x93\xa9\x1f\xda\xbb\xb7\x99\xc7\xe9\xba\xae\x2d\xd4\xbe\xee\xb7\x88\x22\xe7\x7e\x5d\x5f\xa6\x34\x6d\xa2\xb6\xe4\x91\xd1\xbe\x9d\x76\xac\x55\x25\xf5\x5a\x38\xe4\x68\x11\x5a\x1e\x2b\xf6\xc6\x71\x26\x62\xae\x20\xca\x8e\x8e\x89\xd4\x79\x5a\x01\x79\xff\x81\xfd\x4d\xd3\x1d\x44\x6a\x17\x1d\x67\xa2\xc2\x2e\x9c\x2e\x41\xdd\xd3\x1c\xf9\x4a\xb5\xaa\xa8\x90\xf7\x3a\x47\x20\x91\x4e\x3a\xca\x72\xfb\x64\xc0\x78\xdd\x27\xb5\xa6\x7b\xb0\x86\xfa\x0f\x84\x17\x03\x1e\x03\xa1\xed\x39\x59\x59\x5e\x1e\x29\xb0\x5c\x33\xed\xd2\x1d\x10\x40\xa8\x2d\x40\x99\x40\xff\x05\x2f\x0c\xcd\xd1\x5b\xbc\x4b\x33\x3b\x70\xc4\x2f\xa8\xd0\x83\x83\x58\x8f\xfd\x90\x8d\x49\x92\x74\x94\x74\xec\xc0\x56\x28\x58\x27\x15\x19\xa9\xa9\x0c\xb7\x74\xf1\x5d\xdb\xa0\xd6\xca\x31\x1a\x77\x3e\x36\xe5\x3f\xdf\x78\xa3\x39\x30\x47\xa2\x41\xf4\x26\xd2\x62\x80\x4d\x2a\x7a\xe7\xa7\xa9\x97\x76\xa5\x4c\x22\x03\x1f\x91\xc9\x22\x15\x20\x0d\x09\x05\x7a\xcf\x7a\x3c\x7e\x29\xd0\x48\xdb\xae\x5d\x89\x12\xf9\x00\xae\x0f\xbe\xf2\x26\x25\x4c\x37\x6b\x24\x1a\x0f\x36\x57\xd2\x38\x4e\xd7\xdd\x7b\x47\xb0\xa7\xb2\x1f\x7a\x52\x1d\x67\xef\x82\x77\x40\xd7\xa8\x3c\x5c\xb7\x5e\x03\x7e\xa5\x9b\xa5\x32\x89\x36\xe3\xc7\xf2\xbe\x73\x11\x1e\x13\xcb\x02\xd3\x57\x2a\x12\x47\x0b\xab\x6b\x8d\xd3\xed\x76\xcc\x67\x61\x7e\xf7\x21\x01\x64\xba\xe9\x20\x4a\x22\xcf\xb1\xec\x04\x61\xe5\xce\x9d\x54\x6c\x4d\x9a\xbb\x6e\xcd\xaa\xe3\x4e\xc5\xd6\x7d\x48\x88\xc4\x87\x5f\xe9\xda\xfe\x3f\x8d\xba\xf0\xe3\x5a\x5e\xde\xd0\x1e\xb4\xaf\x5c\x7b\x57\x87\xaa\x32\x1e\xc8\x45\x09\x76\xf4\x98\x39\xc0\xaf\xe9\x7c\xad\xa3\xe9\x95\x4b\xc7\x25\x7c\x3a\xae\x68\x5d\x06\xe8\xdc\xa4\xc6\x54\x2e\x08\x28\xa1\x11\x5c\xe8\xdc\x24\xf0\x4d\xcf\xb5\x9f\x0c\xde\xbf\xb3\x5d\x76\x9d\x76\xbd\x05\xd9\xed\xd4\xfc\xca\x4f\x40\x94\xe1\x33\x31\x5a\x6e\x6c\x26\x0c\x79\x7e\xdc\x0a\xbf\xf0\xbf\x4f\x59\x45\x21\xb3\x34\x5d\xe2\xb8\x7d\x40\x1c\xb7\xd3\x3c\xac\xfb\x84\x9f\x3b\x8f\xba\x76\x8e\x28\x90\x2f\x13\xda\x64\xa6\x5d\xd1\xb3\xf3\xc8\xab\xcf\xe5\xd9\x86\x46\xab\xde\x5b\x66\x43\x33\x0e\xf9\xdd\xdd\x16\x25\x7b\x77\xeb\x8a\x12\xa2\x94\x54\x44\x06\x78\x31\x17\xf5\x86\x4a\xc9\xbf\xc3\xeb\xc2\x6f\xd5\x12\x70\x76\xed\x8a\x35\x05\x71\xa7\x20\x5b\xd5\xe3\xa9\x4f\xbc\xe2\x64\x1c\x1b\x34\x33\xa0\x6d\x5a\x3d\xa1\x96\xb5\x35\xb9\x12\x81\xa1\xc6\xf7\x01\x31\x4b\x3e\x26\xc1\xa5\x7b\xe3\x5f\xae\x59\x14\xa3\x24\x5a\xd1\xd8\x21\xca\x07\x0d\xa2\x32\xfb\x80\x92\xd1\x0f\x98\x92\x3b\x33\x6b\x5d\x83\x1a\xa7\x13\x13\x6a\x78\xb9\xc9\x47\xe3\x30\xf9\x7e\x89\xb2\xaf\x4e\x6c\xf2\x3c\xea\x08\xf9\xdd\xd2\x26\xe0\x76\xe8\xf2\x69\x21\x0b\x03\x39\xb3\x75\x72\xfe\xaa\xd7\xa1\x6a\x14\x08\xec\x1f\x72\xe3\xfb\x52\xd5\x53\xee\xf1\x98\x1a\x93\x75\x21\x76\x8f\x02\xf8\x9f\x6b\x57\x9a\xa3\x21\x3a\xda\x2d\xfd\x0c\x24\x5c\x0a\x9c\xf7\xa4\xf5\x9e\xa8\x0e\xfd\x69\x2c\xc1\x87\xf8\x45\xd0\x23\x3e\x3b\xc5\xec\x06\x12\x28\x10\xad\xe9\x10\x19\x5e\xdc\xcf\xe0\x1b\xf5\x84\x55\x7d\x6c\x67\xd5\x66\xb3\x34\xf0\x75\x01\x53\xb1\x1e\x0d\x16\x26\x6f\x38\xc4\x61\x2a\xf6\xc2\x66\x59\x9a\x45\xf9\x40\xb8\xaa\x9d\x76\x46\x79\x67\x1e\xf8\x1f\x84\x5c\x5b\x61\x06\xe1\x5f\x49\x8d\xdb\x51\xf9\xcb\x05\xfa\x39\x9e\xf2\x79\xe1\xb9\x9e\xac\x2b\x1b\xa6\x47\x36\x7a\x36\x21\x81\xee\x8b\xd4\x25\xbd\x48\x0e\xc1\xac\x14\x36\x2b\xcc\x11\x2c\x69\x04\x3b\x7f\x04\xfb\xa5\x27\x3e\xa9\x8b\x47\x47\x46\xd2\x56\xa3\xa9\xfb\xbb\x2d\x4a\x80\xa0\xbd\x0b\x5c\xe9\x25\x62\x66\xcb\x87\xa3\x44\x9b\x2b\xde\xd1\x86\x32\x84\xaa\x98\x3b\xc9\x5e\x9a\x32\x8d\x86\x36\x8e\x12\x2b\xf2\x34\x41\x92\xf9\xf0\xbc\x7a\x65\x94\xd4\x10\xb5\xe2\xb1\x21\xf0\x9a\x9d\x90\x5e\xf5\x5d\x78\x37\x3f\x82\x50\x5a\x69\x3d\xc1\x13\x45\x4c\x8c\x34\x13\xe5\xab\xfb\x63\x22\x05\xd8\x14\xdb\xaa\x03\xd5\x2d\x96\x12\x10\x10\xe4\xd3\xe5\x25\xc0\xb8\xbf\x8d\x9b\x42\xf0\xfd\x16\xd2\x07\x3c\x42\x05\xf5\xe9\x43\x12\x87\xe2\x38\x48\xc9\xc6\x9d\xc0\xfa\x86\xf9\x04\x7c\xcb\x49\xb0\xcb\x55\xbb\x67\xcc\xac\xc4\x5a\xe9\xf2\xad\x23\x7f\xa9\x8c\xc8\xfc\xac\x45\x37\x7a\x67\x2a\xd6\x28\xe3\xcb\x81\x35\xf9\x28\x73\x86\xcd\xf1\x47\x13\x31\xd7\xad\x16\x93\x6a\xf4\x6d\x22\xb3\x89\x6e\x39\x85\x91\x37\x70\xbf\xe1\xb6\xdf\x62\x28\xe9\x13\x53\x78\xe9\xbd\x0b\xcd\x65\x41\xb7\xf7\x88\x29\xea\x2c\xc5\x1f\xd3\xca\xcc\x8b\x8b\xcd\x65\xbb\x26\x6c\x24\x92\x59\x6f\x4a\x17\xe4\xe0\xe6\xd5\xa9\x9b\xda\xbb\xd7\xf7\x2a\xf5\xa6\x10\xac\xea\xca\xd3\x93\x71\x50\xf2\x5d\xb7\x99\xfd\x5a\x19\xfa\x8a\x45\x1a\x3c\x3f\x61\xf6\x2d\x1a\x39\x7a\x0c\x14\x23\xee\xf0\x73\x71\xc2\xb0\x61\xd7\xa9\xc0\xfb\x04\xfa\x31\x28\x47\xee\xd0\x4e\x93\x43\x00\x0a\x44\x02\xce\x5a\xe9\x9e\xe1\xae\x1a\x13\xca\x75\xde\x07\xf8\x02\x27\xf7\x80\x4e\xc2\xc6\xba\x86\xd5\xe0\x27\x13\xf6\xee\x55\x80\xe8\x7d\x99\x6a\xf3\xa8\xa0\xf2\x95\x63\x64\x01\x0a\x8e\x30\xcf\x4f\xb6\x2b\xd0\xc4\x72\x29\x7a\x40\xba\x47\x4d\x83\x24\xd6\xb1\xcd\xbc\x30\x6d\xf8\x5f\x16\xf0\xa9\xab\x00\x35\x5e\x7e\x59\xaf\x0d\x40\x62\xfc\xea\x25\x98\x49\xd7\xac\xfd\x0a\xfa\xec\x18\x8a\x7d\x2e\x6e\x2e\x1f\xba\x8b\xa7\xb7\xc6\x28\xfb\x96\x9a\xd9\x28\xd1\xb7\xe9\x67\x84\xbd\x25\x9a\x06\x7c\x2e\x1c\x6a\x16\x26\xd2\x34\xa2\x4e\x98\xab\x06\xcb\x68\x3a\x1d\x3b\x2c\x04\x4f\x41\xe5\x12\x1d\xa0\xd2\x13\x3f\x61\xd4\xcb\x4c\x77\x64\x0a\xbb\x9d\x34\x4f\x80\x67\xf1\xf7\xe3\xe3\xa1\x3d\xed\x8a\x84\x70\x18\x75\xfd\x08\xdf\xed\x0a\x99\xa1\x2e\x54\x64\xa6\x63\xe1\x97\xd5\x62\x9d\x23\x76\xef\xef\x62\xe9\x28\x05\x08\x51\x23\x8c\x92\xd8\xac\x8b\x6e\x49\xa3\x42\xeb\x20\x7f\xee\x86\x31\x7d\x94\x12\x65\x45\x3f\xe7\x11\x9d\xcb\xad\x00\x17\xb9\x3c\x7e\x9e\xbb\x4b\x69\x26\xcc\x07\xe5\x9a\x71\xff\x1e\xa4\x14\x2e\x93\x6d\x1c\x9a\x8d\x32\x7d\x9b\x2d\xff\x15\x56\x4b\x55\x4a\xf4\xa4\xa6\xd9\xa9\x27\xe3\xaf\x55\xdb\x0c\x8b\x8b\x07\x05\x7d\x39\x17\xf8\xa3\xd4\xf7\xe1\xa5\xff\xad\x2d\x8c\xc1\xa1\x86\x4d\x72\x12\xb7\xa8\x49\xa6\x0c\x90\xe5\xfb\x72\xea\xab\x2c\x8b\x74\x8e\xf5\x5f\xd2\xa4\x88\x92\x91\xab\xb0\x3a\x4e\xc3\x80\xee\xb8\x50\xb7\x44\xdf\xb4\x85\x21\x9d\xf1\xbf\xcd\xbd\x8c\xbf\x3d\x95\xdb\xbf\xfc\x32\x28\xc2\x67\x88\x27\xe3\x7e\x8b\x2a\x65\xba\x91\x51\x69\x39\x4b\xef\x63\x3d\xcd\x72\x9b\x38\x6e\x74\x1f\x8c\xd0\xb0\x30\xa9\x34\xc4\xa6\xb3\xfa\x94\x98\x0d\x6c\x47\x75\xb9\x88\x3e\x2e\xb6\xc8\x58\x7d\x42\x50\xb9\xdf\xc5\x6f\xc3\x01\xa8\x04\xb6\x1f\x9b\x3a\x30\x1f\xf8\xb7\xf6\x05\xfe\x2d\xd2\x06\xfd\xc7\xfa\x64\xf5\x57\xc6\x61\x16\x7a\x0e\x98\x31\x4f\xe6\x5b\xda\x09\x05\x5a\x10\x29\xcb\x72\x1c\x24\x92\xdd\xb8\xb9\x18\x45\x98\xb8\xf7\x81\x35\xd3\x93\x56\x25\x46\xd8\x9a\x2d\x1e\x9e\x2f\xa3\x3e\xc8\x4f\x6a\xde\x1e\x80\x58\x3c\xdd\xdd\x7a\x91\x3b\x1f\xb1\xd1\x3a\x04\x31\xec\xff\x83\x16\x09\x6f\xfe\x03\xa2\x9a\x1a\xa6\x69\x9c\xcf\x04\xbd\xe3\x73\xd4\x61\xac\x72\x20\x84\x96\xf0\x30\x4b\x3b\x36\xcf\x23\x07\xce\x73\x5a\x03\xa1\xe4\xfd\x63\xf6\xfd\x5f\x30\x1c\x09\xbd\x3a\xc4\xd9\xea\x47\x5c\x19\xba\xf4\x09\xc8\x2d\x6e\xc8\xcb\x41\x41\x63\x9b\x10\xae\x62\xfc\xf2\x14\x55\x95\x73\xdb\xc9\x6c\xa1\xc5\x0c\xc7\x6e\x18\xa6\x54\xa6\xcd\xa4\xcb\xbd\x07\x91\x88\x29\x05\x1c\x8b\xe6\xc7\x7a\xe2\xcd\xe4\xb2\xc9\xed\xb2\x89\xe3\xd9\xd2\x72\x00\xbf\xfd\x0e\x0a\x48\xce\x53\x94\x5f\x81\xd8\x6b\x0e\x73\x7e\xa8\x39\xdd\xa9\xe5\x08\xb2\x47\x86\xb6\xe3\xdb\x66\xd8\x33\x77\x99\x68\xe6\x2e\x71\x3a\xc4\x56\x24\x59\xca\xef\xd4\x92\x36\xb5\x03\xcf\x8f\x3d\x5c\xb6\x6f\xa2\x6c\x68\xb3\x5c\xef\x87\x0a\xc2\x5e\xd9\x84\x02\xfa\x32\x5d\x95\x39\x85\xe7\xe4\xa1\x61\x0d\x3e\xc6\x1a\x44\x7e\xf2\x01\xb6\x0b\xf2\xad\x5b\xe3\x40\x6f\x7b\x05\x2f\x94\x49\xd7\xb1\x94\x66\x85\x2f\x1b\xce\xe2\x26\x69\xf1\x3d\x24\x3e\x9d\xa3\x58\x7c\x15\xe1\x07\x6c\xa9\x7f\x85\x4b\x45\xde\xf3\x82\x46\x1c\x58\x70\xb7\x5a\x61\x1c\x6d\x9b\x30\x77\xf9\xde\xf8\x5e\x27\x5b\xa7\x94\x49\xca\xa3\x53\x47\x61\xd3\x8d\x32\xdb\x29\xd2\x6c\x9a\xda\xda\x97\x3e\xc3\x10\xc8\x6d\xef\x60\x44\x41\x75\x63\xbb\x5c\x36\x0b\xed\xfa\xc1\x95\xf2\xdb\x1c\x49\x0f\xf7\xa9\x5b\x15\xf9\x11\x2f\x53\x3d\xd3\x0e\x69\xc5\x8a\xb5\xc5\xce\x60\xfd\x4e\xca\xc3\xc4\x92\x52\x26\x3c\x2f\x94\x13\x98\x76\x2e\xca\x17\xfb\xa6\xd6\x81\x79\xf7\x09\xb2\x9d\x27\x11\xa3\x39\xe0\x53\xdd\x20\x89\x57\xd8\xc4\x0d\x7f\x3a\x0e\x32\x7f\x9f\xb6\x02\x81\xb1\xc9\x44\x0c\x1b\x46\x64\xbf\x1f\x3b\x05\x73\xbb\x1e\x53\x9d\x3f\x37\x83\x61\x6c\xb9\x0a\x02\xdc\x9a\x1e\xb7\x48\xda\x26\xcd\xa5\xa4\x68\xbb\x73\x2c\xa0\x01\x03\xe9\x04\xa9\x24\x6a\x84\x65\xc6\x4c\x0f\x56\xf2\x71\x64\x41\x4e\x0d\x87\xb8\x08\x4c\x21\x1d\xc5\xf2\x49\xc0\x14\xa1\x98\xa6\xc7\xb5\xba\xb3\x9a\x07\x49\x09\x06\x21\xe6\xb6\x49\xa8\x4d\xef\x04\x80\xc7\x8d\x17\x12\x61\x4e\xd6\x33\x49\xf4\x26\xec\x31\x26\xb4\xb1\xf8\xfe\xd9\x38\x20\x88\x8e\x8e\xbf\xb2\x0e\x57\x6e\x3b\xfd\x23\x30\x26\xeb\xa7\x5b\xcc\xb2\x31\x50\x36\x0e\x54\xf5\xee\xd3\x34\xc5\x7d\x12\x8f\x1b\xc5\x2a\x12\x81\x80\x57\x99\x0d\xf5\xc4\xc3\xee\x07\x51\x11\x91\xc2\xf6\xdb\x58\xac\x4e\xce\x9e\x54\x3d\xd3\xc2\x26\x45\x04\x84\x91\x03\x6a\xe8\x20\x8b\x0e\x91\xcb\x4a\x83\x1d\x7c\x00\xdf\x0b\x5f\x7f\x2f\x98\x23\x53\xd8\x6c\x18\xc5\xb1\x8a\xd3\xa0\x8e\xab\x44\x0b\x88\xf6\x77\xb7\x43\x05\xe9\xf1\x38\xd4\x73\x96\x4d\xd6\x33\x51\xa2\x41\x8b\xa3\x1c\x68\x78\xa9\xdf\x4b\x53\x9b\x1b\xd2\xfb\x03\x5f\x70\x87\x41\xf9\x82\xb8\x4b\xbe\xa8\x12\x89\xc5\xa3\x06\x27\x69\x44\xed\x7b\xb6\x32\xb5\x94\x1e\xd9\x90\x2f\x44\xcd\x02\xd0\x50\x3d\xa6\x30\x77\x68\x32\xd3\xb5\xe0\x8c\x74\xce\x89\x45\x40\x4f\x8d\x89\x98\xf5\xf7\xc7\x01\xd9\x05\x27\xe5\x24\x1e\x03\x54\xe2\x3f\xf9\xd5\x7c\xa6\xb4\x6c\xfa\x84\xf1\xe8\x91\x09\xcf\xb6\xa9\x87\x75\x9e\x54\x73\x33\xbb\x2c\x4d\x52\x80\xe9\x3d\xd4\x26\x00\x23\xaf\x53\x49\x68\x68\xb3\x41\x54\xcc\xc8\x26\x42\xe6\x8d\x5a\xb5\x47\x13\x95\xdb\xce\x81\x54\xf8\xc9\x6d\xc4\x96\xc9\xf5\x2e\x62\xcc\x0a\xd9\xc8\x2d\x22\xf0\x7a\xc8\xf2\xb2\xe7\x94\xb7\x4f\xff\x4c\x9f\x8d\xfe\xdb\x16\x82\x0e\x3f\x3a\xf3\xdd\x9a\xb7\xbc\x24\x7c\xf4\x5d\x03\xe4\x97\xc3\xa2\x84\x8c\xe2\x1c\x3d\xc3\x6f\xdb\x42\xb8\x30\x10\x65\xef\x24\x24\xf7\x6d\x56\x55\x38\xcf\x33\xf6\xe7\xc7\x95\x0c\xc0\x2c\xc7\x9a\x18\xe1\x09\xca\xf4\xa0\x82\x98\xd1\x83\x3f\xc6\x44\xa6\xb0\xc5\x70\x7f\xb0\xa6\x7a\x3c\x75\x27\x32\x8d\x95\x17\xa6\xb0\x5d\x29\x44\x39\xa7\xcf\xb1\xef\x4c\x10\xca\x3c\x45\x7c\xf2\x9d\x74\x94\x14\x36\x1b\xa4\x6b\x16\xe6\x98\xc1\x6b\x4e\xe3\x21\x00\x03\xfa\xe9\x28\xdb\x21\xb6\x49\xd9\x39\xe5\x69\xa1\xd0\xfc\xb8\x45\x81\xca\x15\xbc\x07\x94\x43\xce\x11\xc9\xc1\xc3\x31\x91\xf2\xa2\x72\x00\x34\xd9\x97\xd4\x5b\xb1\x47\x86\x26\xe9\x42\x38\x1c\xff\x3a\xab\x1c\x8a\x7a\xd6\xde\xda\x2e\x76\x35\x2f\x6a\xc2\x5f\x21\x6c\xe8\x65\x78\x3f\x38\x36\x05\x32\xe9\x09\x95\x71\x46\x49\x54\xe4\xbb\xe4\x15\x00\x52\xa1\x5c\xd5\x58\x0d\x7f\x2a\x7e\x12\x41\x19\xee\xc8\xe9\x88\xcb\x03\xf1\x1c\x2e\xe5\x15\x78\x89\xd0\x72\x6d\xe3\x6d\x9f\x27\x29\x31\x95\x82\xf9\x2a\xe2\xec\xa5\xa5\xfd\xcd\x34\x8b\xad\x49\x72\x00\xb0\x50\x5b\x79\xae\x4d\x64\xb6\x57\x34\x97\x80\x39\x9d\x63\x2e\xa0\x93\x01\x66\x9e\x07\x3d\x39\xc7\x93\x7f\x97\xc7\x26\xee\x92\xe0\x6f\x54\xe4\x36\x5e\xd9\x5d\xde\x24\x70\xb0\xb7\x60\x8a\x71\x2f\x30\x56\x4a\x9c\x29\x77\x8f\x12\xdf\xec\x84\xe2\xf4\xeb\xf0\x14\x58\x1b\x8f\x70\xf7\xfa\x5d\xe3\x50\xe8\xbd\x58\x51\xb8\xc1\xa3\x70\xb4\xb7\x94\x6c\xc6\x69\x6e\x65\x08\x9d\x62\xff\x16\xf1\x70\xfc\xb8\x46\x4f\xae\x69\x3a\xbf\x3d\x8a\x10\x08\x50\x6b\xee\x03\x26\x6e\xfd\x80\x65\xab\x24\x45\x91\xdb\xc4\x84\xc7\x4f\x88\x43\xf7\x32\xff\xda\xf5\x1a\xe5\xbd\xa6\x89\x4d\xbe\xaa\xda\xd6\x0a\x78\x62\xc2\x88\xa0\xaa\xb5\x92\xd9\xbc\x2f\xe3\x52\x40\x28\x5c\xe4\x7a\x32\xb2\x1b\x59\xd9\xf3\x7f\x4e\xea\x45\x58\xe5\xb7\xf0\xa6\x5c\x2d\x4b\xac\x2b\x1e\xfa\x65\x3f\xf5\x3b\x88\x3a\x59\xba\x6e\xd6\xd0\x2e\xd3\xfa\x49\x8b\x6b\x29\x35\xc4\x27\x79\x3f\x1d\x79\xca\x38\x17\x4c\x50\x27\xfc\x62\x4d\x96\xd1\x34\x1d\xd8\x0a\xcd\x32\x60\xe1\x54\x89\x58\x4f\x48\xe3\x34\x1f\x5a\xdb\x4d\x07\xb6\x28\x73\x8d\xc3\xf3\x4b\x9b\x92\xfc\x6d\x9e\xa3\x2c\x6b\x2d\xb2\x45\x62\x06\xb3\x15\xe1\xaa\x30\x6b\x73\x85\x74\xa9\x2f\x56\x04\x54\xea\xc6\x33\xf3\xc2\xac\xac\x90\x1e\xf9\x45\x8e\x0c\xaa\x9a\x86\x1b\xb6\x78\xb2\xb4\xa6\x70\x4e\x4f\x4c\x88\x55\xe0\x2e\x96\xac\xce\x0b\x4b\x80\xa8\x92\x5f\xad\x50\xc6\x7b\x84\x8b\xc1\x9b\x38\x23\xe0\x00\x18\x9c\x1f\xb4\x68\x7e\x12\xac\x26\xe8\xd3\x1c\x87\x31\xf4\x1c\x95\x8b\x8b\xba\xf5\x3f\x9c\x6a\xdb\xef\x5b\x6a\x9a\x38\x96\x95\xa2\xe4\xa1\x64\xc5\x9f\xc6\xc4\x03\x5a\x32\x98\x3d\x07\xd8\x13\x2d\x4e\x67\xa6\x48\xb1\xe1\xea\xd4\xb3\x5a\x5c\x6c\xf6\x07\x69\xd2\xd3\x6e\x34\x5c\xcd\x59\x7c\x46\x4f\x18\x10\x5b\xc6\x00\x49\x4f\x9e\x17\x42\xae\x6b\x34\xe3\x7b\x9d\x2b\x6e\xff\x5a\x62\xe8\x4d\xa5\xe3\xf1\xed\x56\x3f\x54\xa7\xa4\x97\xc8\xb4\xbe\x50\xa7\xad\x8f\x04\x86\xc6\xc9\x9c\x85\x7e\xe5\xb6\x09\xcb\x93\x4d\x95\xb4\x65\x3a\x33\xcf\xc3\x7c\xbc\xaf\x98\x87\xea\x79\xb5\x1d\xb8\xa1\x1d\x7b\x24\x92\x9f\xd0\xd4\xde\x27\x53\x6b\xfe\xd0\xab\xcd\x8e\x8d\xed\x72\x66\x0a\x2b\x25\x59\xad\x43\xcb\xb7\xbb\x9a\x74\x08\xae\x63\x4c\x43\x07\x4e\xe3\xb3\x72\xf3\x7a\x4c\xc3\xd6\x99\x2d\xa2\xcc\xba\x22\xbc\xab\x8b\xca\x07\x5d\xa1\x97\xe1\xdc\x59\xd1\xb7\xd9\x9e\x32\x7c\xc3\x82\x7d\x9f\x82\xf6\x9b\x78\x01\x88\x91\x50\x82\x42\x20\xa5\xd6\xc2\x0f\x9b\x94\x4f\x11\x91\xf9\x75\x5e\xe2\xf7\x25\xac\x80\x81\x7b\x57\xd6\x10\xde\xc1\xb1\x71\xc0\xcb\x3c\x27\x24\x69\xda\x65\x93\x7b\x47\xc7\xea\x18\x15\xa6\xf2\x32\x32\xcf\x85\x1e\x11\xbf\x02\x05\x3f\x44\xa5\x17\xe4\x47\xf0\x42\x8f\x7b\xd7\xd4\x8b\x92\x9e\x17\x91\x85\x53\xbd\x28\x37\xa0\xc7\x75\xcd\xe9\x81\x01\xac\xad\x5c\x47\xc8\xa6\x4e\x61\xe1\xea\x09\x85\x5b\x83\x28\xb1\x99\x89\xa5\x34\xeb\x36\x24\xc1\xd8\x2f\x90\xdf\xcb\x3b\x59\x34\x2c\xa8\xc8\x81\x76\xab\x03\x1f\x3d\x43\x2f\xae\xcc\x23\xf0\xf3\x8e\x3c\xa8\x41\xa4\x42\xcf\x50\x4d\xf5\xdb\xb6\x53\x34\xc8\x27\x63\x4d\xea\x71\xe0\x6c\x18\x15\x11\x0a\xd3\x41\x29\xf9\x0a\xf1\x88\x5e\xa1\xa9\x58\x02\xcd\x84\xe6\xee\xe5\xca\x74\x59\x1d\xba\x2a\x2f\x46\x2b\x2b\x30\xda\xaf\x33\x1b\xf4\x82\x87\xae\xf2\x80\xb4\xed\x8c\x8a\x68\xcd\x92\x04\x21\x46\x1a\xf4\x78\x42\xd6\xdb\xe6\xb9\x8d\xe1\x9c\x55\x46\x18\x26\xd7\x69\x0a\x3f\x4f\x35\x3d\xdb\x8d\x3a\x4e\x78\x10\x39\x8c\xda\x67\x3d\xe1\xa5\x94\x8e\x7a\x7d\xe0\x6c\x9d\x96\x54\x90\x99\xc1\xb3\xd1\xda\x36\x4d\xe9\x5c\xa6\xe7\x24\xd2\x75\x9d\x2c\x5a\x06\xa9\x3a\x7c\xc6\x7b\x24\xa9\xf5\xde\x38\xf0\xc3\x6b\x5c\xe8\x1e\x66\x8d\x0c\x4b\xc7\x64\xa6\x63\x72\x66\xcc\x1f\x13\xa0\xe0\xcb\x4a\x0d\x2c\x5a\x8b\x62\xdb\xb3\x73\xe5\xaa\x43\x79\x69\x0e\x18\x51\x47\xf0\x1a\xda\x4e\x28\x56\x2a\xe3\xa2\x5c\x91\x7e\x60\x12\x28\x34\xed\x91\xa1\xcd\x22\x2b\x5a\x4f\x07\xe6\x35\x8e\x04\x14\x47\x8f\x71\xf9\x08\xeb\x35\x92\xd2\x13\x7a\x22\xe9\x72\xb9\x1a\x45\x06\xb3\xbc\x8b\x3a\x4a\xb6\x9a\x39\x4e\x91\x0f\xb5\x8a\x64\x80\x2f\xd2\x9a\xb2\xf2\x07\xb6\xd0\x6e\x0c\x51\xbb\x13\x32\xf3\xac\x4a\xb7\xc7\x34\xa0\x7c\xbb\xf5\xb5\x80\x2f\xae\xb0\x09\x87\x72\x29\x7a\xbc\x7a\xdc\x7a\x71\x1a\xa2\x36\x1a\xce\x04\xd9\xb5\x87\x32\xa6\xcd\x8d\x32\xc7\x73\xb6\x15\xe4\xf0\x4a\x33\xb7\x49\xae\x83\x4e\x8d\xca\xa4\xa0\xef\x5d\x7c\xc8\x6e\x6f\xd4\xe9\xd8\x3c\xdf\x25\x16\x83\x32\xa8\x6f\xa8\x49\xbb\xc6\x3e\x16\xb2\x44\x4e\xc7\x29\x54\x97\xff\x58\xea\x33\x6e\x9a\xa3\xbc\x54\x3c\xed\x33\x84\x6d\xc0\x24\x3b\xc2\xe2\xfb\x53\x97\x2d\x1d\xc1\x41\xda\xc9\x4c\xa1\x43\xb8\xf0\x55\x9a\x71\xea\x49\x8d\xa6\x6c\x73\x68\x62\xcb\xbe\x08\x7d\x10\x37\x11\x51\x83\x5d\xea\xf4\xa3\xce\xaa\x4d\x88\x65\x06\x22\x0e\x7a\x1c\x28\x04\x6d\x9e\x1b\xbf\x2c\x90\x00\xab\x67\x77\x59\xa7\xa4\xf0\xae\xc7\x56\xfb\x53\x66\xb0\x6c\xb3\x19\xa2\x80\x53\x16\x32\x47\x72\x11\x72\xab\xfb\xb5\x0a\xe1\xa3\xe1\x30\xcd\x6d\x97\xc4\x9a\x34\xbf\x75\xb4\xcf\x5b\xe7\x60\x45\xa9\x60\xb4\x9c\x66\xdd\x28\x09\x52\xd9\x88\xbe\x81\xef\xd3\x63\xef\x9e\xec\x11\x3b\x18\xfa\xbf\xf4\x04\x0a\x1e\xaa\x79\xa5\x8e\xe7\x28\x2f\x4c\x0f\x64\x3a\x88\x14\x6f\x20\x52\x74\xf9\x6d\x79\xb9\x6e\x54\x33\xd4\xe3\x87\x51\x9c\x16\x62\xaa\x00\x71\xf9\x42\x8c\x81\x0e\x2e\x8a\x1b\xf5\x64\xc0\x1e\x06\xf3\x85\xaf\x26\x67\xb6\x18\x65\x09\x72\x56\x6f\xd2\x4a\xd7\x0f\xa7\xf4\xbf\xe0\xb9\x38\xf0\xaa\x3c\x65\x47\x7c\xd1\xf0\x6a\x14\x3f\x69\x11\x7f\xc4\x51\x6a\xd7\xde\xa7\xe9\x89\x6d\x6d\x22\xdf\x78\x54\x77\xfb\x85\xcd\x1d\xf2\x09\xcb\x66\xdc\x0a\xfc\x75\xda\x55\xd2\x90\xa0\x4e\x95\x06\xf8\x30\xb1\x06\x5e\x06\x69\x71\xd1\xcb\x20\xd5\x2c\x84\xcc\xe6\x76\xb0\x1c\x5b\xea\x31\x3d\xa4\x91\x02\x35\xd4\xae\x20\x51\x37\xba\x9f\x99\xbc\xdf\x08\xf3\x45\xf0\x2f\x8e\x19\x2f\xb0\x06\xdb\x24\x31\xf0\xe6\xbe\xba\x41\xdf\x3c\x35\x2b\xb2\xb8\xd8\x1c\x8e\x0a\x50\x02\x38\x06\x1d\x79\x0f\x48\x26\xe0\x8c\xf4\x78\x4c\x2c\xbc\xe7\xa9\xd9\xb6\x9e\x66\xab\x79\xa1\x93\x6b\xbe\xd6\xf4\x2f\xe5\xa3\x6e\xb2\xce\xf7\xac\x6d\x12\xf5\x92\x39\xcf\xc0\x91\xa0\x9b\x8e\x4a\xdc\xb3\xd2\x45\xf1\xed\x69\x5f\x7d\x6c\x08\x9e\x43\x15\xd3\xa7\x82\xdf\x32\xa5\x32\x49\x47\x9b\x83\xe5\x9d\xa3\xa5\xf3\x25\xa9\x24\x7c\x39\x95\x80\x2f\x2e\xaa\x3a\xb9\x7c\x6e\x26\xe0\x2b\xff\x47\xf6\x99\x37\xc6\xa4\xf0\x76\xa3\x92\x9b\x45\x45\xff\x17\x03\x61\xd2\x17\xb0\x25\x1e\xb3\x73\x60\xfe\x80\x27\x44\x93\xef\x83\xe5\x9e\x99\x50\x9d\x02\x2c\x16\x30\xcc\x37\xc7\x8d\xbf\x71\x90\x08\xd1\xf6\x56\xa6\x92\xb0\x0f\xee\x68\x31\x51\x99\x45\x10\x24\xfa\xe6\x6a\x18\x78\xbf\x4f\x2a\x82\x6f\x08\xc8\x05\xd6\x54\x68\x31\x0f\x68\x03\xea\x1e\xa3\xd0\x3e\x6c\x31\x71\xb0\xf8\x2a\xac\xfe\x5b\xc4\xdf\xd5\x40\xe3\xd7\x91\xa8\x20\x2b\xc2\x3d\x7e\x82\xba\x12\xa2\xed\x53\x52\x36\x53\x65\x83\x16\x11\x4f\x3f\x16\x2f\x83\x67\x79\xa7\x46\xf7\x79\xbf\x4c\x70\xf5\xd3\x51\x8e\x29\x99\xca\xd6\xd0\x93\x16\x79\xbe\x28\xe9\x58\x1d\xa8\x71\xe9\x36\xe7\xe4\x5b\x97\xfa\xd2\x52\xb3\x6f\x74\xd3\x23\x98\x51\x29\x17\x37\x23\x4d\x80\xa7\xf7\x88\x09\x30\xef\x47\x92\x59\x56\xd8\xfe\x2f\xf1\x55\x4d\xc3\xfe\x17\x0e\x35\x13\xbb\x1e\x6f\x90\xc6\xc2\x23\x9a\x35\xdb\xdd\x26\x72\xf7\xa3\x04\xb0\xad\x0d\x8c\xbf\xde\x34\x51\xec\xc7\x77\xb1\x90\x80\xf0\x75\x0c\x4a\xd4\x00\xf1\x6e\xa1\x4c\x01\xb2\xae\x93\x06\x47\xa8\x85\x86\x14\x30\x01\x2a\x56\x8c\x0d\x7a\x99\x7a\xe1\xeb\xa6\xb0\x19\x60\x7b\x30\xe1\x3f\x6a\x11\x81\xc2\x9f\xc8\xe2\xd2\x9c\x8e\xc8\x6d\x3e\x1b\x07\x26\xab\x0b\x98\xae\x7b\x1b\xab\x4a\xbf\x04\x41\x89\x7f\xa7\x87\xe7\x17\x36\xdf\x96\x26\x26\xab\x0b\xe8\x6f\xd4\x34\xab\x96\x9a\x9d\x51\xb6\xec\x09\xa7\x94\x99\x84\x6c\xcc\x19\x6a\x4b\x74\xd3\xae\x88\x66\x78\xa1\xa3\x5b\xb2\x8d\xf4\xb8\x55\x07\x1d\xea\xae\xd9\xac\x88\x82\x3c\x14\xab\xd5\xa9\x74\x32\x03\x3d\xeb\x64\xcb\xd7\xfb\xa6\xc8\x53\xbb\x06\xc4\xa9\x6b\xab\x68\x32\xe7\x8a\xbb\x81\xfa\x06\xa2\xf6\x0e\x7a\xec\xfb\xed\xe9\x68\xa3\xe7\x71\x2b\x28\xc1\xdd\x67\xce\x9d\xfb\xd4\xcc\x58\xcd\xcc\x5a\xe4\x28\x24\x11\x9a\x9d\x62\x74\xc8\xa9\x1a\x3e\x85\x66\x6c\x7b\x7e\x84\x5c\x11\x4d\xf2\x18\x1d\xba\xa9\xd2\x2e\x42\x4d\xac\x5e\x71\xb5\x86\x49\x2c\x4a\xba\x91\x16\x19\x55\x16\x0a\x97\xee\x34\xa2\x6a\x7a\xd3\xd1\x00\x12\xd1\x08\x5f\x50\xad\x69\x00\x04\xaa\x27\xed\xad\x3f\xf4\xda\x81\xf9\xa6\x8d\x97\xd3\x75\xca\xc8\x3f\x25\x1c\xc2\xa7\x5e\xfe\xac\xe8\x4b\x8e\xb6\x32\x42\x28\xad\xb0\x1c\x42\xd3\x5f\x22\x29\xce\x42\xe6\x52\x7d\x7b\x0f\x73\xba\x7a\x4c\xed\x95\x8e\x59\x6e\xd0\x78\x68\x55\xd0\xb0\xae\xf9\x9e\xa9\xfd\x90\x75\x85\x6c\x08\x3b\x47\x8f\x29\x9a\x1f\x25\x9d\xd8\x9a\x6c\x36\x60\x41\x51\x3b\xd3\x63\x21\xba\x40\xad\x43\xdf\xb3\x9e\x50\xea\xdf\xe9\x47\x5d\xdb\xd5\x35\xa1\xea\x5a\x28\xb9\x3b\xa9\xad\xa7\x49\x0e\xef\x4d\xab\xd8\x11\x05\x7a\xca\x2f\x38\xd0\x67\xf8\xc3\xcc\x2c\x47\xfa\x86\x5c\xdd\x35\x5c\xca\xc5\x9a\x55\x76\x50\x93\xb2\x99\x50\x5a\x7c\x07\xe5\x1c\xa5\xaa\x97\x07\xe0\x58\x7a\xeb\x42\xef\x34\x0b\xf4\x72\xe8\x1c\x68\x69\x5c\x4f\x3c\xb2\xd9\x1e\xe9\x1b\x88\x37\x54\x48\x96\xa8\x8f\x10\xd0\x2c\x43\x9b\xe5\x51\x5e\x54\xe6\x19\xef\xb5\x68\x9e\xf1\x5e\x5d\xec\xd5\xcb\x46\x5a\xb1\x85\x25\xb8\x4a\x7d\xfd\xab\x54\xa2\xdf\x30\x59\x37\x6f\x04\xe5\x8d\x6d\x34\x46\xb1\x6d\x52\x03\xf4\xce\x8b\x51\xa7\x93\xca\x37\xd7\x0d\x36\x87\xe7\x6f\x20\x71\xe5\x8b\x74\x47\xa5\x02\x06\x1c\xca\x6d\xb1\xc8\x70\x0b\x57\xa8\x2d\xba\x62\xbb\x36\x43\x0a\x51\x1a\x20\xc4\x03\xdb\x04\x93\xaf\xc7\xed\xb0\xf0\xba\xa3\xc1\x50\x1f\xf7\xeb\x61\x60\x3f\xb4\xff\xbf\x57\x57\xe4\x2a\x32\xd3\xad\x4e\xc0\x2b\x19\x85\x0b\x4b\xe9\xfb\xb3\x68\xcd\x17\xc4\x5c\x29\x45\xfe\xd6\x15\x59\x42\x17\xfc\x4d\x13\x8f\x96\x45\xba\x23\x28\xe5\x7d\x24\x06\x5c\x8f\x5b\x4f\x85\xae\x88\x89\x57\xe1\xab\x5c\x19\xaa\x7c\xfc\x30\xaa\x4f\x4c\xc2\x06\x7e\x34\xa6\xc5\x37\x26\x66\x88\x9d\xe8\x54\x29\x2a\x07\xd6\xca\x47\xa6\x5e\x23\x6b\x8c\x38\x46\x2d\x3a\x46\x8c\x11\x36\x14\x92\x46\xbb\x3a\x23\xab\x31\xad\xda\xd9\xaf\xaa\x7e\xc9\x4f\xe2\x33\xca\xad\xac\x27\xbe\x0b\x93\xd8\x6c\xcd\xce\xca\x03\xf2\x49\x49\x79\x03\xb8\xe8\xd3\x44\x6c\x06\x2c\x01\x4c\xc9\x7d\x70\x4f\xa9\xa1\x1a\x9a\x06\x09\x4e\x01\x4d\xa6\xc7\xdc\x57\xea\xdb\xcc\xbe\x48\x98\x3e\x90\x41\xb8\xde\x04\xec\x88\xe7\xba\x2e\x77\xa3\x9f\x5b\xf2\x75\xaa\x7f\xcb\x93\x9e\xca\x00\x88\xb4\xec\xf3\xd6\xcc\xc1\xff\xec\x37\x7d\xfa\x21\xd7\x83\xd5\x77\x91\x4a\x22\x57\xc1\xdb\x81\x9b\xd3\x58\x16\xa5\xde\x87\xf2\x12\x70\x31\x10\x06\x44\x92\x25\xec\xba\x2e\x82\xba\x22\x81\xa5\x7f\x39\x65\x90\xeb\x79\x6f\xfe\x86\x63\xc9\xbd\x45\xe8\x83\x93\x88\x4c\x70\xbd\xff\x82\x06\x6a\x14\xf2\x93\x37\xc2\x02\x81\x64\x8e\x6b\x73\xb9\xf7\x93\x47\xab\x36\x9f\x61\x21\xf9\x1f\x8c\x09\xc5\xa8\xe0\x33\x47\x6d\x58\xc7\x9f\x36\xb0\xc6\xe5\x2b\x3e\xa4\x64\x0a\x81\xe9\xbe\xd6\xfe\xa6\x49\x8a\x28\x8e\xad\xf3\xf8\x58\xe6\xc7\x79\x86\xe9\xf8\x38\xec\x8d\x28\x5d\x37\xb2\x04\x5d\x91\x87\x3b\x92\xda\xd5\xf0\x40\xc5\xf2\xc5\xea\xdf\x7d\xe5\xbc\xde\xc0\x74\xfa\x51\x82\xb2\x01\x7a\x76\xdb\x64\xf1\x61\x75\x68\x51\x15\xf1\xfd\xb5\x29\xcc\xf8\xcb\x2f\x2b\x3e\x5b\x5c\x02\xac\xed\x23\xee\xc0\x7c\x42\xd4\xe4\xb7\x2b\x51\x48\x64\x92\xa7\xa8\x09\x79\x46\x17\x25\x2a\x17\xa7\x65\x55\x20\x88\x04\x7d\x1b\x3a\xf9\x77\x99\xa3\xec\xe2\x98\x14\xeb\xee\xc9\x4a\xc0\xc6\x7e\x2c\xdb\x17\xe1\xec\x55\x3c\x05\x7c\xe2\x76\x8b\x24\x40\xce\x8a\x34\x01\x30\x57\x3f\x1c\x07\x2c\xd3\x77\x79\x80\xe6\x0b\xa2\xef\x58\x33\xbd\x48\xea\x77\x87\x1d\x44\xed\x81\xfc\xa8\x1e\x53\xf7\x71\x90\x0a\xfb\x6a\x16\xc5\x1b\xd0\xe9\xc6\xae\x7e\x97\x06\xb9\xb5\x08\x8e\x6d\x73\x9d\x5c\x7d\x91\x99\x5e\xd4\xc1\x26\xf7\x59\xf3\xe2\x22\x83\xba\x5d\x0e\xd3\xe9\xa7\x69\x9c\x6f\x97\x3f\xc5\x0d\x02\x3d\x02\x08\xea\xbf\xc3\x7d\x20\x15\xfd\x3e\x31\x78\x2b\xef\x87\x13\xa1\x97\x87\xa8\x27\x53\x8e\xb2\xcc\xa8\xa3\x5e\x04\xd4\x16\xb2\xe2\x0f\xc7\x01\xe1\xf7\x21\xf5\x95\xd6\xd3\x54\xc4\x22\x71\xe9\x9e\x88\xdd\x63\xa2\xae\x6c\x65\xac\x39\x30\x7f\xa0\xb9\xb8\xb8\x3d\x80\x0f\x8f\xb5\x98\x66\x82\x04\xb2\x51\x17\x21\x62\x6c\x22\xbe\xd8\xbb\xe0\xf5\x6b\xc3\x8c\x6f\x5e\x64\x36\xe9\x15\x7d\x9b\x68\xd5\xbf\x56\x66\xef\x49\x1f\x73\x47\xf9\x2f\x85\xc9\xf8\xff\xe2\x45\xb8\x0f\xfc\xde\x03\x5d\x98\xe8\x58\x9d\x1a\x07\x0d\xda\xef\x8c\x49\x0f\xf8\x85\x36\x85\xd4\xbb\x27\x8d\xd7\xf6\x7b\x72\xde\xf2\x3e\xf0\xe9\x9b\x00\x9c\xe0\xe4\xaa\x70\x49\x7a\x3c\xd8\xde\xbd\xfa\xe1\xb3\x3a\xc6\x8a\x9f\x7f\x87\xd0\xb1\xb3\x13\x01\xd6\xa1\x3e\x7d\x55\x22\x04\xec\xd8\xdb\x40\x38\x61\x84\x65\x56\x50\xc5\x4e\x9c\xa4\xf1\xeb\xbf\xe5\xc5\x27\xe5\xb5\xa3\x76\xf2\xe2\x84\x58\x38\x4f\xb7\x48\x84\xea\x43\x98\x6d\xfc\xc8\x7d\xf1\xbc\xb0\x5e\xf7\x08\x02\xfb\x4c\xbb\xb1\x70\x68\x53\x47\x77\x50\xc8\x78\x30\xa6\x31\x9a\xf7\x6b\x64\x59\x86\xb1\x95\xc8\xa2\xe1\x09\x03\x95\x44\x4a\x4f\xa6\x02\xce\xfd\x07\xf6\xab\x7c\xc3\x4c\x18\x61\xfa\x23\x71\x0b\xe8\x05\x7f\x89\xed\x8c\x9b\xb8\x54\x17\x70\x42\xd6\xcf\x92\x7c\xc1\xa9\x16\x93\xc6\xca\x43\x40\x8e\xf4\x41\x8b\x7b\x5d\x83\x74\x39\x8a\xa3\x37\xad\x7a\x03\x34\xe3\xb4\xb4\x80\x97\xf1\x6e\x05\x5a\x3d\x76\x62\x17\x3d\xe3\x0c\xb9\x13\xa8\xa1\xdf\x38\xdf\x62\x80\xdb\x5a\x94\x4b\x79\x2b\x54\x0a\x4e\x88\xe1\x72\xc2\x68\x6e\x14\x37\x95\x72\xb3\x86\xb7\x2a\x7f\x4d\x7f\x78\x66\xaa\x0c\xf6\x8a\xcc\x81\x4a\xaf\xce\x47\xdb\x9e\x36\x83\x68\xd1\x88\x54\x28\x1d\x15\x51\x62\x63\xc0\x03\xeb\x8a\xbf\xc1\xec\x2c\x9b\x2c\x0b\x95\x13\x14\x0a\xee\x30\x13\xdc\x1d\xea\x1f\xdb\xd8\x23\xc3\x17\x02\xc6\x37\x70\x18\xd0\x35\xe4\xa3\x2c\xb3\x49\x57\x3b\xe4\x2e\x1f\xa5\xdc\xd4\xa7\xd3\x2b\x56\x9a\x6c\x85\x80\xcd\x10\x6c\x9c\x20\x98\xc2\x13\x58\xdb\xae\x1f\xe0\x99\x84\x6c\xbc\xa6\x6d\x0c\x6c\xd9\x4d\xf9\x8c\x1e\xd7\x31\xa4\xa5\x2b\x2b\x2e\x55\x86\x17\xbd\x43\xdc\x70\xd3\xc3\xc8\x7b\x17\xa4\x86\xdc\xe9\x37\x48\x74\xf6\x68\x65\x04\x86\x04\x68\xb3\xc8\x26\x5d\xa5\x43\xf5\x93\x7a\xfb\xfc\xd4\x5e\x4d\xa8\xf0\xff\x86\xc3\xe7\x19\x9a\x7e\x88\xf2\x34\x99\x23\x38\x37\x82\x3b\xec\x96\x3f\x26\xa6\xa9\x2b\x0c\xaa\x3f\x8e\x80\x05\xdb\xf8\x5a\x6b\x8b\xc9\x3e\x3c\xbf\xd0\x3c\x30\xff\xe7\x68\x46\xee\x4b\xc2\x65\x01\x11\x0c\x97\xb6\x09\x9b\xe2\xc6\x6c\x48\xdc\xec\xca\xb8\xd2\x0b\x2e\x0d\x0c\xe2\x83\x27\x26\x34\x3a\x74\x82\x4a\x52\x6f\xcb\x83\xf1\x42\xb0\xdf\xfa\xa6\x7e\xd3\x35\x8d\x77\x1c\xd7\x3e\xec\x26\xaa\x97\xf7\xc7\x24\x10\x70\x89\x26\x33\x8e\x03\xe3\x89\x97\x08\xf5\x71\x07\xfe\x91\xc7\x80\x20\xf3\x18\xaa\xbd\x68\x1d\xde\x85\xa1\x47\xc5\xfc\x0e\xd5\xc4\x54\xb6\x5b\x81\x23\xe3\x60\x77\x6f\x53\x7f\x7f\x79\xb4\x11\x25\xbd\xdd\x0d\x2f\x9f\x03\x1a\x46\xad\x2a\xc3\x04\x22\x62\x3b\x2f\xcf\x0f\x2f\xeb\x42\x55\xf5\xa3\xfc\x4d\xc7\x73\x5c\x01\x62\xc9\x5d\x7a\x45\xb5\x03\xf3\x3e\xa0\x21\x81\xb4\x87\x54\xe8\xc8\xad\x63\x55\x05\x9a\x13\x48\xc2\x0a\x29\x04\x3c\xc4\xcf\x5a\x41\x66\x2a\x1e\x8c\x8a\x7e\x23\x04\xed\x9f\x32\xba\xe9\x53\xc6\x32\x14\xa6\x18\xe5\xb3\x15\x40\xbf\x6f\x47\x3d\xa6\x5a\xdb\x19\xfc\x14\x2e\xf6\x7e\x2d\x45\x51\x9a\x15\x7d\xe9\x4b\x61\xa5\xdc\xa3\x79\xe2\x8b\x15\x2f\x1c\xda\x70\x27\x6b\x98\xc9\xbe\xd1\x2c\x1d\x08\x96\x86\xf6\x67\x51\xd6\xd7\x2c\x07\xed\x2a\x5c\xed\x59\x26\xab\xee\x65\x02\xfe\xf3\xb5\xc8\xcf\x5b\xa1\x98\xf9\xf9\x38\xe8\x51\x76\x46\x31\x46\x30\xf0\x7e\x40\xbf\x86\xd4\xe2\x9e\xb8\x78\x44\xc2\x01\xb8\x5e\xa4\xb1\xa8\xab\xa8\x82\xe6\xcf\x9e\x6f\x13\x79\xf3\xae\x49\xf0\x4f\xe8\xcb\x3b\x66\x86\xf2\x36\xbd\xbe\x5f\x20\x17\xfd\x10\x2b\x08\x6b\xf0\xeb\xed\x2d\x13\xa7\x9e\x04\x60\x1c\x3a\xab\xb3\x52\x0f\xc2\x92\xdb\x33\xf1\x80\x98\x34\x8e\x8c\x1f\x3d\xc4\xbe\x39\xcd\xdc\x31\xcc\x91\xe8\xb8\xbc\xf3\x3d\x61\x36\x00\xa2\x71\x28\x89\xbe\x8b\x8b\x42\xf4\xf6\x1e\x1e\xb1\x23\xcb\x2c\xef\xcf\xf7\xe7\xc3\xe8\xca\xef\x62\x4d\xe9\xe4\x09\xa9\x2c\xbe\x2b\x39\x25\x7a\xb3\x4a\xef\xe4\x4c\x0f\x0d\xc0\x29\x0d\xa3\xab\x7c\x4f\x4f\x88\xbc\xde\xec\x65\xe9\xba\x2c\x62\x54\x3f\x4e\x23\xf9\xd6\x93\x29\xb9\xc3\xc5\xc5\x66\x2f\x8b\xec\x9a\x4e\x9e\x7a\x42\x8a\x2b\x15\x76\xed\x3a\xb1\xad\x81\x89\xed\x0c\x2d\xef\x9f\xb7\x78\x82\x2f\xcc\xc7\xbe\x4b\xdb\xf2\xd5\x85\x5f\x6f\x10\xa3\xc1\x2d\x26\x2e\xb8\xd5\xda\xe3\xad\xfa\xb2\x19\xcc\x4a\xf2\xed\x69\xc5\xbf\xf5\x4d\x7d\xdf\x8f\x08\x7d\xff\x31\x1e\x26\x96\xd4\xb1\x2a\xcd\x8a\xcd\x95\x80\xd0\xcd\xf7\xcb\xfd\x78\xbe\x00\xdf\xfe\x3c\xc9\x2f\xff\x52\xeb\x29\x9a\x23\x58\x1b\xcd\x34\x02\x77\x71\x55\x8e\x24\xe0\x20\x1e\x4d\x45\x74\xaf\x34\xd3\xe5\xdc\x66\x6b\x1a\x05\xc2\xee\x3e\xd1\xa6\xba\xf0\x13\x93\xa7\x48\x0e\x2d\xb3\xbb\x83\xcb\x7a\x24\xb6\xda\x15\x0a\xc3\x94\xbf\x62\x59\xdd\xd8\x41\xf9\x82\xe1\x43\xaf\x31\x50\xf2\x3c\xf2\x1c\x3d\x19\x53\xcd\x42\xa5\xb1\x1d\x2d\x77\xe8\xb1\x37\x26\xfc\xdc\xfa\x26\xae\x04\x76\xda\x02\x74\x74\xb3\x5b\x17\x9c\x88\x6c\x46\x5d\xad\x77\x21\xb3\xfc\x88\xea\xab\x1f\x11\xaa\xbd\x93\x0e\xec\x6e\xe2\xa5\xff\x72\xdc\xf8\x4d\xc7\xd1\xf1\x05\xbb\x2e\x5c\x29\x42\xf0\x13\x3c\x01\x7d\xa7\x45\xf3\x6c\xb2\x77\x9c\x48\x2a\x2e\x59\xbf\xb7\x45\xe4\x1f\x5f\x8c\x79\x9a\x3a\x68\xb5\x75\x67\x82\xa1\x41\xff\x06\x81\xd4\xa9\x6a\xa5\x21\x04\x1a\xcb\x59\xba\x6a\xb3\x1d\xe5\xa7\xb0\xae\xaf\x23\x8d\x73\xf1\x36\x55\x03\xd0\xaa\xf2\x1d\x45\x4f\x4f\x7a\x0a\xc3\xc8\x48\x98\x54\x25\xd4\x89\xf3\x3d\x47\x0d\xa0\xf5\x64\xdd\x64\xdd\x1d\xe1\xfe\x74\x52\xd6\x83\x64\x3d\x60\xb6\x41\x12\x75\xf7\xe1\xcb\x1d\xb0\x4f\x8c\x91\x23\xb1\xf1\x58\xc6\xef\xbd\xe8\x2d\xe1\x7a\xd4\x95\x39\x5e\xf4\x8c\x5c\xaa\x12\x50\x97\x77\x88\x61\xe4\xec\xf8\x79\x62\x64\x5a\xb1\x49\xd7\xb8\xe9\x54\x37\x87\x46\xd4\x17\x9f\xd6\x11\xd6\x0f\xcc\x4a\x94\xe6\x51\x83\x48\xd2\xaa\x4c\x4b\x5b\x4d\x8c\xc0\xea\xac\xf6\xf7\xb1\xd4\x1f\xf1\xe0\xc1\xd9\x31\xa1\x95\x15\x5b\x81\x9b\xbf\x49\x08\xc5\x4e\x6a\x3a\x7d\x2b\xea\xda\x4b\x61\x88\x78\xc9\xd5\x91\xb5\xd6\xae\xff\xd0\x0a\x92\x10\x67\xb1\x77\x5c\x13\x6b\x6b\x6f\xa4\xf4\xdc\xd6\xac\x5a\x4f\x2e\xaf\x80\x73\x79\x66\x0e\x7c\x1e\xa6\xe6\x7a\x1b\x83\xc4\xe4\x45\xd4\xc9\x2b\x20\xf6\xf2\x3a\x5c\xaf\x3c\xf4\x3e\x1d\x6e\x35\xb4\x59\x51\x18\x70\xe4\x70\xf5\x73\x29\x9e\x68\xfc\xa0\xcf\xac\xc2\x08\xda\xdb\x4c\xbb\x78\x81\xe2\xf3\x61\x96\xae\x45\x49\xc7\x92\x52\xfd\x8f\xf0\xb7\x7a\x52\x07\x21\x59\xb3\x59\xb4\xb2\x41\x08\x34\x15\x40\x71\xb3\x19\xd3\xa0\x95\xfd\xcd\x7c\x94\xb8\x9a\x23\xf2\xec\x27\xd0\x47\xc6\x0a\x7d\x97\x79\xee\x1f\xd6\xcc\x00\xec\x57\xa8\x10\xec\x0c\x0a\x95\x5f\xca\xb2\xd6\xe3\x3a\x01\xf4\xae\x5d\xb3\x71\x3a\x6c\x10\x4d\x1c\x24\xf3\x9c\x7c\xd8\x33\x34\xb3\x97\x24\x3a\xb4\x87\x54\xf7\xa7\xad\x80\x91\xfb\x29\xee\x08\x25\x94\xa4\xb0\x59\xa2\x18\x37\x9d\x1e\x83\xd3\xde\x84\xd9\xf1\x93\x30\xa1\xb0\x7f\x94\xb0\x46\x1f\x0a\xc2\x00\xd1\xe1\xf7\x7d\xac\x94\xfd\x4a\xf6\x2b\xc4\x60\xfe\x8f\xf1\x38\xf4\x64\x2a\x47\x92\x17\xde\x49\x07\x83\x81\xa2\x56\xe0\xc9\x50\x41\xd4\x63\xda\x02\xfd\xa8\xd7\xb7\x79\x31\x17\x66\xf1\xbe\x87\xf7\xa5\xa0\x39\x6c\x2a\x3c\xc7\x5b\xf4\x4c\x95\x03\xd1\xc5\xe6\x54\x91\x2b\x32\x33\xca\x95\xd5\xde\x4f\xe4\xfa\xa0\xfc\x89\x76\xe0\x4e\xba\xc6\xa9\x5a\x16\xbd\xa9\x31\x86\x57\x4b\x2f\xbf\x41\x4f\xa6\x94\xc0\x0f\xcf\x37\x07\x51\x2e\x0f\x7c\x98\xd9\xa2\xaa\xab\x80\xa6\x84\x9b\x66\x76\x9b\x27\xb7\x66\x39\x75\xfc\xf1\xca\xbe\x26\xc1\xa9\x63\x62\x9b\x0e\x9c\x5f\x6f\xf6\x8d\x7e\x33\x16\xe6\x8d\x31\x31\xe0\xde\x68\x85\xa1\xf9\xd8\x8c\xca\xbc\xdd\x2a\x99\x20\x32\x9b\x2f\x25\xb3\xd3\xe3\x9a\x48\x20\xef\xd8\xc4\x64\x51\x2a\xb5\x19\xc7\x3c\x51\x7e\xdc\x01\x28\x08\x61\x73\xa1\x06\x3b\xf0\x7a\x69\x67\x8a\xbe\x96\x0b\x3c\x76\xff\x80\x77\x0d\x53\x98\xa2\x32\x79\x05\xbf\x98\x7b\x62\x6e\x93\x36\xbc\x4a\xd2\xf9\x40\x3c\x1c\x75\x56\x55\xfb\xcb\x3b\xfc\xf2\x33\xce\xe1\xbf\x44\x58\x12\xbb\x66\xb2\x6e\x62\xba\x6f\x5a\x61\xca\x84\x83\x06\x57\xa3\x1e\x93\x65\xc9\x87\x26\x49\xaa\x1c\x3b\x57\x78\x64\xf3\x0a\x15\x83\xa3\x81\x10\xeb\xf0\x84\x37\x29\x9e\x4e\x13\xc3\x2f\x1c\x02\x81\x48\xd7\x6c\xe8\xa7\x3c\x7a\xc8\xc7\xe6\xf7\xc7\x7b\x88\xd1\xc4\x65\x83\xf0\x23\xca\xfa\xed\xa0\x49\x14\x91\x9f\x24\x24\x46\xde\x8f\x56\x1c\x3d\x81\xc7\x97\x7a\x33\x79\xa1\xce\xc9\xc5\x26\x05\x2f\x9c\x9f\xa5\xba\x49\xd2\x80\xe7\x79\xd0\xfc\x8b\x29\x2b\xb7\xb4\xd4\x1c\xa6\xeb\xd6\x17\x3e\x9c\xed\x27\xfa\xea\x2b\x15\x04\x76\x2f\x31\x89\x8d\xe3\x48\x96\xa3\x6b\x16\x34\x3c\x05\xc8\xc5\xaf\x24\x3b\x5d\x89\xd6\x54\x49\xc5\x4d\xc0\x87\x04\xf4\x91\xe4\xf7\x70\xa4\xdb\xdb\xcf\x6c\xe9\x82\xe2\x69\x28\xdb\x60\x2b\x84\x4d\x9f\xfa\x05\x15\x5b\xd3\x1b\xa9\x61\x84\x99\x73\xb4\xe8\x15\xb8\x17\x0b\x49\xa3\xba\x0b\x48\x99\xfb\xff\x81\x20\x69\xd9\x2c\x6f\xcc\x91\xf2\xef\xad\xca\x50\xcb\x25\x1a\x7a\xbc\x4c\xb3\x7f\xba\xb1\xf4\x8f\x08\xf9\xbe\x12\xe5\x1d\x13\x4b\x39\x1e\x83\x38\xe0\x58\xc7\x4b\x99\x01\xcc\x0c\x35\xd8\x13\x54\xe9\x98\x6d\x07\x0d\x3d\x70\x3f\xf9\x1a\x41\x00\x13\xf6\x4d\xd2\x8d\x3a\x66\x38\x54\xb2\x1a\xc7\xea\x15\xe6\x2d\xee\x53\xf3\xb2\x6b\x0b\x9b\xcd\x06\xb8\xc9\xb6\x36\x61\xa4\x60\x4f\xf5\x1f\x26\x01\x3e\x7d\xc5\xc3\x43\x72\x3b\x88\x4c\x92\x8c\x2a\x48\xeb\x2b\x44\xb9\xf0\xd5\xfc\x19\xeb\x26\x2e\x6c\x36\x43\x8a\xbe\x58\x00\x28\x8f\xdc\x64\x61\xb7\x46\x7b\x0f\x4f\x98\x63\x61\xfa\x91\xc2\x20\x42\x7d\x6e\x6a\x35\x1f\x98\x2f\xa3\xb7\xc2\x73\x29\x23\x25\xb9\xca\xc9\xca\x55\x7a\xcb\x79\x62\x86\xb3\xa5\x29\x75\x37\x42\xab\xe4\x42\xe5\xae\x4a\x73\xee\x44\xd5\xbd\xb8\x44\x3a\x4a\x8a\xd8\x4d\x31\x62\xea\xeb\x0e\x71\x89\xdc\x61\xf9\xe9\x34\x29\x64\xc0\xe4\xc0\xbc\x23\x26\x9e\x41\x47\x56\x4f\xa6\xd0\x0e\x7b\xf7\x36\x97\x6d\x5f\xd4\xb0\x3d\x0c\x6e\xa6\x1d\x04\xa0\x66\x26\x01\x71\xb7\x3c\xca\x45\xd3\xf7\x05\x79\x99\x58\xf2\xd7\xc6\x24\x20\xf8\x77\x5b\x04\x45\x7d\x7a\x42\xe4\x7a\xbb\x51\x20\x41\x15\xe9\x0e\xa9\x67\xdd\x95\xb8\x54\xd9\xbe\x24\x96\xc0\x8e\xd1\x85\x08\xe3\xb2\x13\x53\x6b\xa8\x45\x1c\x45\x9b\xdf\x0f\x47\x94\x2f\x14\x85\xc5\x9d\x32\x67\x84\x63\x38\x7b\xbc\x0b\x30\x68\x79\xcd\xa2\xbd\x7b\x35\xb0\xbe\xd3\x62\xc5\xfb\x3f\x46\x8e\x81\xd8\x79\x28\xdd\x44\x44\x14\xa7\x3d\x85\xc0\x28\x2e\x32\xb3\x16\xa5\xb1\x55\x12\x4a\xdc\xf6\x67\xb2\x4f\x55\x5d\x9a\x00\x05\x6f\x11\x7a\x6f\x25\x4b\x5d\x56\x81\x5d\xa7\x30\x0b\x3d\xa1\x78\x3a\x4f\xe3\xa8\x6b\xb2\xa8\xd8\x90\x21\x10\xf8\xea\x07\x28\xbf\xea\x89\x3c\x3f\xe7\x96\x42\x67\xf1\x0c\xd3\xd8\xfd\x11\x71\x05\x2e\x9b\xdc\xee\x22\x86\xb3\xe3\xe3\x50\x99\x3d\x26\xb5\x19\x87\x99\x22\xc5\x46\x50\x9c\x28\x49\xd6\xb8\xf1\xda\xfe\xa0\x24\x51\x5e\x38\x02\x38\x00\xf8\x1c\xca\x4a\x6e\x4f\xff\xc1\x6b\x92\xf7\xd3\xa1\x95\x0e\xa7\x4b\xd0\x7f\x11\xd1\xb1\x2a\x9d\xc9\x4a\xc6\xea\x9c\x03\xbc\x0c\x2f\x70\xfb\x84\x10\xf6\x97\x09\xe0\x76\x85\x8a\x58\x32\xce\x64\xe2\x78\x43\xea\x95\x2a\x7c\x8a\x74\xd5\xab\xa0\x06\x91\x67\xf9\x29\x27\xf8\xec\xf5\x22\xec\x20\x5f\x4e\x57\xe1\x6a\x9d\xae\x76\x28\xa8\xde\xa6\xc6\x7d\x37\xca\x57\xe7\xca\xef\x43\xb1\x7b\x3b\x8c\x9a\x8e\xb1\x73\x4f\x13\x02\x77\x2a\xec\x80\xc7\xe5\x58\xfd\x6a\xe4\x21\xa3\x64\x25\xcd\x06\x6a\xeb\x98\x86\xc1\x31\xb5\x30\xff\x43\x7f\x94\x80\xd0\x17\xeb\xf4\x6d\xca\xf7\xde\x0e\x73\x58\x99\xed\x46\x85\x30\x8f\x34\xc2\x95\xdc\x18\x53\xc3\xf0\x06\xb9\x8d\x4e\x3a\xca\x8a\x7c\x27\xc5\x53\x0d\x6c\x57\xf8\x84\x13\xe3\x30\x5a\x76\x92\xa3\xf7\x6b\xe3\x30\x0c\x74\x5d\xf7\x12\x56\xe5\xf7\xc7\x01\xf5\x5f\xc9\x65\xdf\x0b\x69\x81\x49\x50\xa7\x80\x23\x38\xc6\xac\x07\xcf\x90\x08\xce\x93\x93\x70\xa1\xa3\xac\x17\x25\xbd\xd9\x50\xd0\xfd\x7b\xb2\xfa\xc1\x7c\xf0\x29\x0d\xd1\x5c\x40\xdc\x83\x32\xc5\xa7\x75\x8d\x21\xb3\x9c\x8e\x8a\xb9\x0a\x55\xdf\xbe\x25\xcf\xd1\x1c\x60\x26\x4f\xb5\x83\x83\x82\xaa\xd7\xe6\x55\xaf\xae\x3e\x34\x59\x1c\x19\xa1\x65\x93\xdf\x83\x21\xd9\xa6\x4c\x41\xcc\x01\xa8\x5a\x1e\xe3\xb0\x7a\x78\xbc\x0a\x9d\xa4\xbc\x1f\x0d\xc1\xaa\x84\x82\xc5\x27\xfa\x48\xf5\x8c\xb2\x8d\x6c\x34\x48\xb3\x1c\x81\x03\x4a\xe8\xca\xbb\x89\xe0\x68\x1b\x78\x93\xf1\x28\x30\x6d\xeb\x49\x7b\xca\xfd\xad\xff\x50\x83\x95\x3d\xd8\x34\x2b\x2b\xb6\x53\xf8\x9e\x23\x36\xe9\x47\x92\x59\xea\xf1\x38\x80\x24\x6c\xd2\x37\x9e\x56\xfc\xf0\x7c\x60\xdd\xf0\xe3\x87\xb7\x30\xd9\xe0\xb6\x8f\x19\x0e\xd3\x48\x26\xc0\xa9\xf9\x29\x85\x2f\xd7\x08\xad\xbb\xa6\x4e\x9a\xac\x44\xd9\xc0\x76\x67\x4a\xdb\xed\x4b\x86\x81\x88\xef\x36\x2f\xb1\x46\x3b\x4c\xb6\xc7\xeb\x66\xb4\x6a\x2d\x8d\x3b\x7e\x8e\x05\xac\x27\xd4\xcc\x5d\x89\x32\x21\xd4\xd2\x01\xdc\xda\x00\x75\x6b\x1c\xf0\xf2\xcb\xa5\x69\x5d\xb5\x4e\x31\x1b\x2d\xb7\x2f\xe5\x89\xeb\xf1\x14\x68\x67\x69\x69\x7f\xd3\x8e\xb2\xb4\x9b\xc6\xb1\xc9\xf2\x8a\xf2\xc5\x05\xc6\xad\x5c\xa8\x91\x77\xdc\xdf\xec\x97\x1e\xb8\x41\xb9\xe5\x19\x5d\x25\x7a\x46\x00\xf9\xc4\x16\x32\x02\x02\x9c\xa1\x17\x75\xd9\xb7\xf4\x95\xa2\x2e\xe5\xc3\xce\xfb\x69\x56\xcc\x84\x88\xf0\x0f\x5a\x5b\xc7\x5a\x95\x99\x64\x0a\x5c\xbf\x77\xa1\x99\x0b\xef\x5e\xf9\x96\xdc\x3c\x6d\xf9\x61\xd4\xfa\xa1\x72\xeb\x34\x1c\x5d\x48\xdd\xe9\x5b\x9b\x29\x47\x05\x2c\xe9\x83\x16\xab\x95\x69\x69\x1a\xed\xb1\x8f\x25\x40\x72\x43\x4e\x7f\xa9\xe6\xf1\x48\x46\xdd\x49\xe3\xd8\xf6\x22\x19\xba\x5e\x5c\x0c\xb8\x36\xaa\x8c\x6d\xcd\x95\x0f\xbd\x2a\x4a\xe3\x8d\x29\xb1\x61\x27\x9a\xed\xb2\xf0\x74\x54\xc4\x78\x05\x3c\xf5\xc9\xe3\xa0\x9e\x7e\xdb\x1a\xcf\xc3\xea\x4a\xfd\xb2\xa7\xf4\xa4\x15\xa6\x34\xcb\x2f\x2d\xe3\xeb\xbc\x2f\xd9\x15\x82\x87\x2f\xf0\xd7\x2e\xa9\x0d\x03\x1f\xb7\xa6\x2a\x76\x0b\x87\xca\x88\xdb\x44\x3e\x20\x75\x95\xd7\x00\xdd\xb9\x40\x18\xc8\x6f\xa7\x71\x31\x17\x78\x24\x51\x9f\xc6\xdb\x6e\xb4\x03\x84\xf6\x89\x49\xc0\xf5\x29\x4b\x9e\x8e\x28\x8e\x99\x33\x4b\x74\xca\x05\x5d\x4e\xf8\xab\xf2\x93\x7a\x3c\x66\x92\xdb\xbc\x30\x15\xda\x67\x3c\x64\xf7\x56\x42\xa3\x51\xe7\xf9\x1d\x86\xdc\x3d\xd3\x7c\x98\xba\x9b\xdc\xef\x0b\xdc\x04\x6d\xbd\x40\x39\xc8\x72\x94\xf4\x2c\x5e\x13\x5c\xd4\xbb\x20\x45\xd4\x13\x6a\x79\x9a\x35\x9b\x8c\x80\x30\x61\xa2\x15\x0d\x0b\x71\xe7\xf0\x31\x57\x89\x05\xaf\x0c\x86\x7b\x3b\xb7\x88\x07\x1e\x0c\x7d\x74\xcf\xf1\x75\x9b\xd3\x38\x18\x14\xa7\x04\x22\xa1\xb9\x4b\xf0\xe4\xcd\x21\x6f\xbb\x87\x18\x06\x79\xca\xf1\xa9\xc6\xd6\xd2\x92\xab\x9c\x0c\x0c\x66\xb9\x75\x00\x9f\x74\x7d\xde\xf5\x51\x6b\x66\xf2\xd5\x34\x4e\xa2\xd5\x74\x8d\xf4\xca\xb5\x3b\xed\x56\x47\xcd\x92\xca\x6c\xb9\x25\xb4\x3a\x83\xce\x28\xa0\xbb\x7a\x3c\x45\x04\x2e\xe3\x70\xb2\x1a\xf2\x41\x85\xff\xb4\xca\x0f\xb8\xcb\x0d\xc5\x8d\xb8\x7e\x22\x4b\xc6\xd5\x52\xb6\x26\xf7\x07\xf6\x37\x97\x6d\x1c\xd9\x35\xef\x98\x54\x0a\x90\x42\x3a\x96\xff\xc9\x87\xe9\xaa\x96\xe3\x1c\xcb\x74\x80\xeb\x9f\xae\x04\x54\xb9\x2d\x76\x31\x50\x19\x59\x00\x16\xc9\x27\x12\x1b\xc3\xfa\xef\x68\xd3\xba\x55\x6e\x22\xa4\x40\xb3\x93\x20\x07\x72\x4d\xde\xb5\x52\x47\xb7\x2a\x53\x77\x9e\xff\x82\x79\xb5\xec\x60\x63\x86\xb8\xdd\x21\xa6\x8c\x88\x08\x1f\xc7\x7a\x38\x49\xcd\xea\x81\x48\x9e\xba\xc5\x71\x8d\x9a\x4b\xb7\x80\x4d\x53\xca\xac\x16\xc9\xe8\x6c\x9f\x50\x5a\x0f\xb6\x3e\x18\xe8\x1d\x92\xfb\x63\x11\xcc\x20\xfc\x56\x08\x1b\xc1\x76\xb6\xa1\x72\x80\xd8\x76\x07\xa2\x5e\x94\x43\x67\xdb\xa5\xad\x77\xb0\x72\x59\xb3\x1e\xe3\xe1\x7d\xce\xd5\x31\xf1\xa3\x3c\x31\x09\x39\x9e\x66\xe3\x2e\x61\x0b\xc5\x06\x6b\xb2\xa2\x3f\x48\xf1\xb6\x4b\xe7\x85\x8c\xe6\x9a\x3c\x44\x3d\xe6\xac\xb7\x6f\xb2\xc2\xf1\xc9\xbb\xa0\x82\x47\xc8\x64\x6d\x31\xee\xc0\x45\x1b\x81\x7b\x23\x1d\xd8\x9e\xa9\x30\x9a\x68\x45\xcf\x91\x98\xd6\x08\xa6\xf5\x4d\xd6\x9d\x25\xec\x05\x15\x43\xae\xa3\x47\xe5\x1b\xff\x5e\x43\xe4\x7d\xd2\x9f\xeb\x2a\xc5\x1f\x4a\x49\x0f\x61\x3f\x30\x84\xfa\x11\x35\xfb\xb7\xb5\xb7\x6e\xce\xd7\x16\x0e\x09\xcd\xb7\xcd\x5c\xdf\x01\xe8\xde\x4b\x2c\xba\x79\x85\x27\x8e\x36\xeb\x26\x8e\xf2\xdf\x1e\x59\xfb\xa6\x25\x6a\xc2\xcb\x52\x50\x76\x8c\xa9\xcf\xd3\xb4\xfd\xca\x8a\xcd\x6c\x52\x88\xa2\x18\xb2\xea\x9d\x6d\x79\x35\xac\x2f\x80\x68\xec\x7e\x25\x2d\x68\x78\xad\xae\x27\xb0\xbe\x70\x83\xc7\xa4\x00\xc5\x8d\x0b\xbf\x6c\x43\x87\xe6\x4a\xa5\xed\x9d\x8e\x56\x67\x1a\xbf\xb9\xa0\xb7\x87\x31\x20\x24\x22\xaa\x0b\xe7\x10\xf9\x5b\x6b\x43\x87\x5e\x6d\x9a\xe1\x30\x4b\x8f\x08\x75\x79\x23\xe0\x12\x6e\xcb\x55\x3b\xd1\xe6\xc0\xdf\x6f\x63\x89\x69\x73\x38\x53\x6d\xfb\xb7\x68\xcc\xf2\x77\x59\x42\xb7\x1f\x13\xc4\xe4\x04\x77\x7b\x4e\x50\x8f\x75\xdd\x64\x83\x58\x59\x92\xeb\x68\xd9\xa7\x99\xa8\x16\x9a\x26\xcf\xd3\x4e\x24\x74\xeb\xdc\xef\xff\x98\xc9\xfd\x3f\x26\x47\x56\xa0\xe0\x2d\xfb\x90\x65\xc4\xf4\xd8\xc3\x81\x06\x26\x4f\x93\x0c\x48\x41\x54\x11\x1f\xc8\xb5\xe8\xf1\x98\xea\x62\x36\x9b\x0b\xa3\x71\x17\xc6\x15\x95\x70\x5f\x72\x57\xd8\x17\x1e\xe4\x09\x92\x2b\x7f\x4c\x2d\xf2\x81\x89\xf1\xa0\x60\x4f\xcf\x52\xa7\xe0\x2c\xf1\x65\x66\xa6\x1b\x75\x4c\x3c\x2b\x25\x2c\x0c\xa1\xfc\x10\xd4\xa1\x7a\x82\x1c\x06\xb9\xe5\x4f\xb0\xcd\xf4\xc4\x7b\x96\xb4\xbf\xbd\xd2\x01\xf7\x29\xf0\x03\xd8\x28\x87\xf8\x6c\x7c\xeb\x9b\x58\xcc\xfb\x5f\x42\x4d\x02\x95\xab\xcb\xac\x06\x7b\x89\x74\xc3\x21\x6c\xb2\x70\xc8\xa9\x79\xb6\x42\xf1\xe3\x84\x4f\x0a\x4d\xb6\x1c\x15\x99\x71\x83\x8e\xca\xc1\x34\x0e\x80\xb1\xd3\x53\xe4\x02\xae\x78\xd9\x49\x93\x22\x33\x19\x18\x6d\x5c\x18\x1a\xe6\x9b\xa6\x09\xdf\xf7\x2d\x35\x87\x91\xed\xfc\xfb\xfa\x0b\xd4\x0f\xb5\x36\x8b\x6d\x9e\x0b\x65\x30\x93\xb5\x02\xb7\x81\x39\x4a\xb8\xb1\xe3\xe3\xb0\x23\xdf\x9f\xca\xc9\x0e\xcf\xbf\xee\x85\x00\x74\x8e\x15\x7b\x12\x43\x71\xf0\x13\x2a\xf2\xe8\xd0\x3c\x75\x04\x75\x9d\x74\x30\x34\x1d\x60\x40\x71\x0d\x0f\x09\x67\x73\x85\xdb\xee\xe7\x38\x8a\xcc\x46\x5d\x3b\x13\xe2\xab\x27\xda\x41\xdb\xe7\x63\xde\x7e\xf7\xb9\x04\x66\x6d\xb6\x8b\xc1\x1f\x58\xbf\xc8\x25\x6e\x60\x59\x60\x5e\xa2\xd1\x0e\x03\x39\x0a\xa5\x74\xf3\x22\x0d\xcf\x59\xf7\xae\x3c\x38\xe2\xd8\x75\xa0\x47\xed\x83\x20\x15\x0d\x34\x3d\x99\xed\xa4\xbd\xc4\x29\x63\x39\xaa\x12\x1a\x1d\xba\x05\xf3\xe2\x92\x1e\x57\x25\xe9\xc4\xa3\xe5\x59\x6a\x68\xa2\x9a\x00\xc0\xd3\x03\x62\x13\xd5\x68\x0e\xdd\xf9\xff\xcb\x17\xd2\xbb\xb6\x70\xbc\x2d\x72\x23\x9e\xbf\x2f\x14\xe0\xee\xd6\xb0\x5a\x36\x73\x3b\x34\x9e\xb4\x0a\x0e\xf7\x0b\x22\x1d\xfb\xc2\xff\x40\x34\x80\x88\xf1\x1a\x86\xaa\xe0\xe3\xaf\xb6\x2a\x1a\x97\xfe\x31\xff\x48\x02\x0f\xa0\x75\xdf\xa2\x1c\xa2\xd3\xcf\xd2\x41\x9a\x8b\x62\xd3\x81\xaf\x1a\x99\x08\xe5\xd1\x81\x4d\x13\xbb\x5d\x9c\x0f\xea\x86\x17\x68\x7c\xfa\x92\x54\x2a\xf5\xff\x4b\x10\xe2\x84\x37\x82\x15\xb8\x24\xfb\xd6\x69\x70\x84\xf1\x07\xd7\xfa\x7e\x32\x00\x1d\xa0\x78\xe6\x9a\x02\x81\x8b\xe2\x24\x61\x2e\x15\x67\xa1\xda\x2d\xcc\x54\xfa\x10\x91\x8f\x52\xb8\x31\x8f\xbb\x4e\xb4\x39\xd2\x69\xee\xfa\x3c\x96\xa7\x07\x4b\xc4\xf9\xc6\xea\x46\x1c\x1d\x69\x84\x5e\xc6\x6d\xd6\xff\xba\x4d\x20\x16\x7b\x44\xf8\xcf\xd7\x40\xf9\xe3\x1b\xe1\xd4\x15\x27\x09\x05\x8c\x9b\x38\x20\xa9\xab\xd9\xda\x3c\x37\x1b\xcc\x85\x27\x7f\xe5\x66\xcf\x9e\xa6\xc2\x95\x49\x3a\x54\x5d\x79\xab\x52\xfd\x0e\xa6\x27\xcd\x22\x1d\xbc\xf1\xe4\x18\xb0\x15\x7a\x3c\xf1\x09\x5e\x7f\x54\x14\x31\xf2\x76\xac\x4f\x94\x10\xf4\xd8\x0f\x97\x76\xa3\x5c\x66\x2f\xf3\x39\x66\x96\x18\x13\xe7\x00\xf3\x6a\x61\x17\x63\xe2\x70\xb7\x90\x59\xb8\x09\xd7\xe0\xc6\x87\x45\x7f\x66\x4a\xf7\x00\x89\xe9\x47\x14\xc8\x9f\xa8\x03\x63\x0c\x63\x01\xc0\xc8\x55\x7b\x89\xc0\xa5\xa0\x0a\x58\xc7\xa9\xa0\x41\x6b\x99\xcc\x2e\x79\x81\x3d\x6d\x0a\xe8\xc9\xd6\x69\x9b\xf2\x63\x07\xf6\xcf\xc9\xcd\xf8\x41\x13\x59\x39\x1e\x28\x14\x58\x31\xde\x69\x85\x06\xc8\xf7\x61\x1d\xd4\x44\x4e\x95\x7d\x0e\xbd\xda\xcc\x64\xc4\xbe\x11\x26\x2b\x3f\x44\x86\xe3\xa6\x82\x6b\xd0\xbd\xc2\x3a\xf3\x95\xc3\x06\x35\x6c\x20\x66\x25\x36\x45\x7a\x24\x4a\xc4\x54\x20\x4e\x56\x4a\x18\x27\x58\xd8\xd8\xc2\xe4\x06\x0f\x14\x04\xc0\x44\x58\x0b\xee\x51\x39\xd6\x69\x28\xea\xc2\x54\x0c\x05\xc1\x1a\xb3\x1c\x47\x79\x5f\xc9\x7e\xc8\xf4\x2e\x78\x9a\xa8\xad\xb1\xfd\xe2\x62\x33\x4e\xd7\x95\x93\x02\x79\xa1\x2a\x42\x23\x92\x65\x8a\x80\x07\x54\x71\x73\x98\x5a\xd1\x3a\x46\x00\xac\x52\x1c\x8e\x68\x56\xc2\x15\x47\x99\x15\xac\xe4\x03\xbc\x20\x27\x9b\xc5\xf3\x8b\x37\x98\xa0\xe1\x38\xe3\xd6\x2a\xbc\xd0\xfd\xa8\xd8\x49\xa2\xc5\xaa\x33\xa6\x84\x7d\xe3\x30\x65\x81\x80\x9c\x14\xaf\x96\xfc\x6a\x0b\x45\xef\x6b\xa4\x5d\xb9\x39\x0e\xd3\x3a\x97\x7c\x04\x99\xd9\x74\x68\x9d\x6e\x8c\xe3\x5c\x97\xdf\x77\x64\xec\x2f\xd0\x98\x4c\x5e\x98\x51\x66\xb4\x48\xec\x6a\xec\x34\xb9\x3b\x2d\x5d\x2a\xb0\xaa\x3e\x64\x15\x91\xf0\xc3\x06\x7f\x87\x11\xfe\xdf\x99\xa2\xcd\x79\xf9\xe5\x66\x62\x0b\xd2\xc3\x84\x04\xb7\xa3\x25\xda\xba\xf0\x0f\xcc\x2b\xe7\x71\x83\x3a\xb7\xca\x6e\xab\x27\xa4\xc0\xb2\x12\x1b\x99\x9a\x29\x7d\x14\x4c\x1c\x04\xd3\xf4\x98\x05\x51\x4c\x94\xdb\xdd\xf2\xae\x51\xad\x3e\x25\xf2\x11\xa4\x42\xed\xa1\xc8\x8c\xe7\x44\x0f\x02\x7e\xe4\x0f\x90\xbe\xeb\xc7\x11\x29\xb8\x10\xa7\xfc\x51\xfd\x2b\x79\xb3\x1e\xf7\xba\x14\xe6\x34\x19\x25\x18\xc7\x91\xce\x28\x11\x57\xd6\x82\x8f\x16\x39\xc7\x8a\x47\xf6\xa9\xf2\x25\xc1\x91\xff\x98\x00\xa6\x3f\x18\x87\x42\x83\x4a\xd0\xa1\x0e\xf4\x0e\x9e\x17\x4c\xe5\x7f\x8b\xe6\xac\xcb\x7b\x29\xa8\xbe\x3e\x26\x78\x85\xb2\xa4\x3a\x45\x88\xf2\x86\x90\x04\xdf\x1d\x07\x7c\xd5\x0c\x2a\x2e\xfa\x5d\xd8\x3a\x80\x86\x4e\x93\x3f\x2d\x2e\x36\xd7\x6c\x2e\xe1\x68\x18\x52\x46\x08\x81\x04\x1e\x8c\x39\xae\x85\x11\xa0\x1f\xa3\x61\xdf\xc6\x5d\x16\x97\x21\xa9\xcb\xbf\xed\x15\x54\x8b\xcc\x24\x39\xab\xb6\x3b\xc0\x47\xc8\xfc\xce\xa0\x64\xe9\xf6\x70\xc8\x26\x07\x26\x0b\xce\x0f\x4e\x48\xc3\x54\x3d\xf1\x34\x08\x71\xd4\xeb\x17\x1e\xb6\x8a\x32\xd0\xdb\xc4\xef\x76\x93\xc9\x25\xae\x52\x72\x19\xdb\x41\xaa\x4c\xf3\x78\xda\x9f\xb7\xe8\xd1\x7f\x5e\x67\x18\x05\xef\x15\x56\xbf\x0b\x72\xae\x8e\x09\xf9\x70\x95\x26\xfa\xb3\x28\xb7\x3b\x03\xa8\x53\x59\x87\x48\xbc\x3e\xb0\x2a\xca\xbb\x75\x7a\x70\xe5\xbb\x45\x5d\xe0\x2d\x79\xb7\x8e\x2e\xb6\xdc\x45\x08\xfa\x8f\x11\x4f\x4e\x63\xb2\x75\x4b\x2f\x1c\x6a\xe6\xab\x88\x45\xb4\x9f\x48\x84\xe1\xd3\x69\xf3\xa1\x57\x81\xfb\xcc\x03\x51\x1f\xbe\xf9\x03\x42\xa4\x7e\x40\x3d\x2c\x8d\xcc\xcb\xc8\x4f\x8a\x31\x6e\x85\x85\x7c\xf8\x38\x86\x1f\x10\xb8\xbd\x57\x93\x0d\x2d\x35\xed\x11\xa5\xbd\x9c\x09\xef\x18\xb0\x1a\x5f\x75\xf2\x43\xbd\x0f\xa6\x5a\x42\x7b\xf7\xca\xb4\xab\x19\xc4\x91\x17\x1f\x42\xda\xf3\x53\xee\x18\xfc\x94\x4a\x47\x07\x7f\xe5\xaf\xcf\x70\xd0\xf8\x87\x63\x06\x18\xd1\xe2\xba\xc6\x1a\x73\xf1\x68\x39\x6f\x70\xdd\xa5\x52\x6b\x09\x26\x23\xef\xcb\x85\xcc\x06\x83\xb2\xab\x4d\x20\x63\xbc\x30\x9d\xc7\x66\x44\xcd\x2d\xda\x58\xbd\x2c\x5d\x2f\xfa\x7b\x48\xbb\xf9\x1c\x25\x98\xc0\x0d\xc0\xab\x9c\xa6\x79\x50\xb4\x94\xd1\xf4\x9f\x6d\x13\x01\xfc\x5d\xc1\x6d\xa8\xb6\x0d\x0f\x02\x40\x13\x15\xd1\x7a\x63\x12\x40\xae\x8a\xda\x86\x7f\xbd\x37\xae\x08\x9c\x6d\x8d\x66\xfe\x5a\x33\x36\xcb\x36\xce\x2b\xc4\xac\x72\xb5\x2e\x80\xac\x51\xbc\xee\xa7\x8e\x20\xb1\x02\x7f\x70\x48\x8a\x00\x29\x5d\x8d\xe2\xd8\x01\x2b\x51\x2f\x51\x04\xad\x9e\x4c\x85\x87\x6f\xbc\xa1\x2c\x51\x40\xfd\x1c\x70\x39\xd3\x5d\x9a\x76\xbc\xeb\x63\xf5\xe5\x51\x16\x6b\x11\x19\xb6\xe7\x4b\x42\xbc\x3d\x90\xa0\xcc\xf1\x51\xd5\xe0\x98\xec\x11\x21\x42\x44\x16\xef\xa7\x75\x42\xf4\xdd\xa2\x41\xc1\x4b\xc4\xfa\x1f\x25\x49\xea\x94\x9f\x82\x78\xd9\x79\x48\x10\xb9\xaa\x7f\xe8\x70\x99\xc4\xc4\x1b\x45\xd4\xf1\x13\x18\x7e\x9a\x7f\xc9\x2b\x79\xdd\xa6\x68\xbc\xe8\xfc\xca\x6c\xe0\xff\x45\x30\x8f\x8e\xea\xcf\xa4\x44\x89\xed\xff\x00\x29\x95\xb3\xf6\x94\x97\x58\x53\x70\xf9\xff\x1e\x95\xff\xef\xd5\x29\x20\x42\xa6\x28\xb1\x31\x96\x00\x53\x76\xeb\x71\xa8\xef\x08\xb1\x67\xb4\xac\x59\x8a\x57\x91\x23\xb0\xcc\xd6\xe7\xfc\xc6\x1b\xaa\xcd\x82\x14\x01\x76\xf2\x03\x62\xa2\xfd\xa0\x8e\x63\x7d\x98\xa5\x83\x28\xd7\x35\x86\x3a\x3e\x40\xa0\x7a\x4c\xaa\x9e\x4e\xd6\x7a\x56\x5e\x23\x1b\x3c\xb8\xe5\x63\x44\x53\x7d\x9e\xc5\x26\xfe\xd7\x10\x5a\xa7\x45\x91\x26\xdb\x99\x6e\xd1\x67\xf4\xed\xbf\xd0\x0e\x71\xa7\xa0\x74\xdc\x43\xff\x04\x2b\xd9\x73\x6d\x07\xc3\x73\xa9\x0e\x75\xd1\x1f\x0d\x22\x0c\x0e\x01\x4b\x04\xa4\x8d\x1e\xd3\x96\x19\x9a\xa2\xb0\x59\x32\x1b\x26\x2e\x75\xcb\x38\x3c\xf5\x96\x26\x8d\x2b\x37\x7f\x42\x4b\xe8\x3f\xfd\xd5\xbf\x4e\x88\x39\x2d\x90\xe8\x09\x59\x52\xbb\x9a\xef\x62\x2d\x49\x8c\x14\xab\x18\x01\x6c\x08\x66\x46\x54\xf3\x01\x68\x8c\x3d\xc0\x9d\x21\xcd\x9f\x11\x69\x47\x2f\xe5\x51\xbe\x2e\x47\x1f\x16\xd0\x47\xb3\x78\x6c\xf8\xf8\xf3\xc4\xe1\x24\x48\x94\xaf\xc9\x0f\xa1\xc9\xf8\x73\x60\xbd\x48\x0a\xe6\xa0\x8e\x00\xee\x92\xdc\x15\xde\xf4\xae\xf0\x26\xc0\xc1\x9f\x80\x9b\x40\x40\x77\x92\x85\x3a\xa0\x1b\xe4\x8a\x09\x72\x05\x70\xba\x57\xa9\xa1\xac\x52\x98\x7e\xda\xd9\x0f\x66\x9e\x1b\x13\x90\xe4\xa8\xb8\x6c\xc7\x87\x27\x61\x1e\xde\xf4\xf1\x71\xb0\x31\xff\x1a\x8f\x19\xb7\xfc\x8e\xd8\x6c\x94\x6d\x3f\x85\xa2\x10\xfa\xf8\x77\x24\xa7\xc0\x6e\xf9\x48\x53\x58\xdc\xe1\x29\x94\x7a\x11\x0c\x5e\xad\x64\x38\x51\x3e\xd8\x43\xbc\xdd\x17\xc5\x53\xa0\x5e\x76\x86\xa5\x1f\xe5\xfd\x21\xca\xd8\x36\x21\x6c\xed\x67\x63\x9a\x05\xb8\xd7\x0a\x2a\x55\x9f\x11\x55\xd0\xb9\x16\xd1\xd8\xdd\x44\x24\x83\x87\xf4\x21\xcf\x3c\x83\xd9\xc6\x91\x56\x4c\x2b\xe3\x7d\xa3\xd9\x4d\x3b\x23\x30\x88\x20\x76\xe1\xb0\x42\x8f\xa9\xa7\x67\x37\xec\x5c\x88\x1c\xe0\x1c\x1d\xd3\x47\x79\x9b\xce\x80\xcb\xc2\xd0\x7f\x20\x6a\xd3\x46\x9b\xd6\x73\x94\xec\xa8\x0e\x07\x86\x70\x02\x9d\x68\xdf\x33\x09\xb9\xe8\x09\x62\xb8\x98\x69\x13\x35\xdc\x26\x49\x86\x5d\xf0\x20\x88\x22\x33\x6b\xd6\x83\x0d\x9c\x73\x60\x4f\xc1\x1b\x2c\x4b\x77\xcb\x3f\xa1\x65\xf8\xa9\x34\x7e\xe4\x5d\x1d\x7a\x1e\xd9\x3f\x16\xc2\x5d\x22\x25\xb9\xc7\x28\x9d\xb7\x5a\xa1\x98\x7f\x4f\x57\x8b\x2b\xba\x87\xb9\x8f\xed\xed\x99\x8a\x32\x67\xb9\xa2\xf1\x4e\x2f\x52\x19\x78\xdd\xe6\xda\xee\x45\x8c\x71\x5e\xbc\x89\x33\xf1\x41\xce\xeb\x0e\xde\xb6\xdb\x83\xa1\xf0\xab\x82\xb2\x28\x51\xdf\x90\x2b\x43\xce\xfc\xd9\x98\x14\x1f\x51\x5c\x76\x85\xae\x1a\x8a\xae\xcc\x96\xc9\xc4\x6c\xf8\xf8\x3d\xaa\xc9\x61\x88\x02\x61\x99\x02\xee\xd4\xc5\x51\xb1\xb2\x93\xa5\xa3\x4e\xbf\x22\xc6\xf5\xb6\x2c\x6a\x37\x15\x45\xce\xb7\x97\x59\x34\xb4\x66\xb7\x28\x4a\xec\xe7\xda\x64\x85\x9e\x65\xc1\x9d\xd4\x72\x7a\x2c\xdb\x95\x54\x29\x3e\x5d\x8c\x4c\x45\xf3\xba\x5e\xe3\xc0\x14\xf9\xa8\x0b\x15\x4f\xd7\x27\x92\x3b\xd3\x93\x3a\x86\xbe\x74\xcd\x66\xb9\x35\xf9\x6c\x40\x23\xed\x69\x53\xa7\x09\x36\xcc\xa9\x81\x35\xbc\x12\xd6\x7d\x1f\x1b\xc5\x51\x0c\xfe\x9e\xd7\x2b\xc3\xad\x58\xdb\xb3\x13\xb2\xe1\x7b\x88\x74\x2d\x1d\x15\x71\x9a\xae\xce\x85\x49\x94\x7f\x26\xb7\xe7\xe4\x4c\x03\x8e\xe9\x02\x31\x34\x9e\x97\x76\x12\x96\xd2\xd9\xa9\x52\xc3\xe2\x62\x33\x5d\xf7\x33\x23\xc8\x04\x1a\x08\x70\xf5\x64\xf2\x2c\xe9\x8d\xe5\xb9\x90\x63\x1c\x9e\xaf\xa8\x02\x62\x41\x3d\x20\x35\xd9\x33\x75\x9a\x32\x2b\x26\x1b\x78\x52\x37\xd8\xbb\xe3\x78\xd8\x7a\x52\x27\x6e\xde\x31\x99\x55\xac\x47\xdd\x14\xd2\x8b\x01\x84\x99\x98\x41\x99\x08\xbf\xa9\x6b\xcf\x19\xce\x30\x17\x7a\xae\x2e\xc2\xca\x35\xb7\xcd\x69\xc1\x2a\xe8\xd3\x01\x91\xb7\xb6\xc5\x0e\xcc\x97\xaf\x22\x2f\x4c\xd2\x8d\x92\x5e\x85\x1a\x13\x17\xe7\x06\x79\xfc\x7c\x86\x44\xf1\x33\x1c\xb8\x93\xc7\x80\x67\x0f\xd9\x8e\xef\x9a\xa6\xa3\xcc\x51\x91\x28\x41\x03\x6d\xc6\x8b\x08\x51\x55\x67\x91\x8a\x3c\xf9\xd0\x26\xdd\xdd\x62\x91\xe1\xee\x10\x64\x2a\xc7\x9d\x54\x08\xe1\xed\x8e\xb3\xb8\x34\x5e\x1e\xea\xb5\x8f\x64\x55\xa1\x5c\xfb\x80\x00\xe7\xef\xc8\xdc\x15\x22\xc3\xcf\x81\xe9\xd0\x7f\x80\xa3\x76\x6c\x3d\x5b\xb7\xcc\xe2\x62\xf9\xdf\x55\x79\xc8\xac\x0c\x7f\x6e\x4c\x5c\x76\xe7\xea\xf4\x5c\x3a\x66\xd9\xc4\x8d\x29\x15\xca\x4a\x85\x48\x9f\x55\xe2\x94\x20\x9c\xd1\x24\x89\xa6\x2b\x0c\xbf\xca\xa2\x7c\x95\xb4\xf2\x11\x82\x3a\xa4\x44\xcd\x02\x89\x92\xc2\xc6\xb1\xed\xa0\x7c\x87\x54\xed\x77\xe4\x32\xf4\xb8\xc6\xac\xec\x6f\x16\x69\x61\x62\xad\x43\x22\xf1\xfb\x39\xee\x56\x4f\xea\xa6\xfb\x3b\xe9\xaa\x25\x11\x3d\xa5\x94\xd2\x93\xaa\xda\x5e\x91\xef\x6c\xbc\xfc\xb2\x9f\xbd\x95\x7b\x85\x5f\xbd\x41\x32\x4f\xe7\xc7\x61\x5e\x14\x34\x36\x9e\x68\x20\x70\x28\x5c\x81\x8d\xd5\x13\x04\x50\xfa\xbd\xad\x30\x2b\xd2\xb7\xa6\xbb\x2b\xac\xbe\xeb\x4c\x50\x05\x42\x15\x15\xf8\x97\x68\x4c\x31\x25\x54\x49\x3e\xd9\x0a\xf2\xd1\x3a\xba\x8a\xa8\xf2\x9c\xf4\xee\x1d\x8e\x52\xd6\x11\x02\xa6\xef\xd6\x0c\x6b\x1d\x6c\xc6\x91\x59\xae\xe6\xb7\x7f\x40\xe0\xcf\x3f\xa0\xb2\xe8\x6f\x8f\x4c\x56\x00\x75\xe0\xc9\xf8\x5b\x5c\x60\x9c\x4a\x04\x0e\xbd\xda\xcc\xd3\x51\xd1\x2f\xed\xdb\xe6\x55\x8a\xdd\x6e\xb6\xa8\x79\xfa\x5e\x40\x52\xc6\x26\xa0\x5e\x81\xaf\xfb\x54\x6b\xe4\x7a\x16\xb2\x18\xbb\x12\x65\x29\x35\x62\xbe\xcb\x25\xb3\xef\xb6\x58\x22\xb1\xb0\x49\xb1\x53\xc2\x4d\x34\x2d\x4e\x22\x44\xd5\x13\xbc\x6b\x44\xd1\x3f\xa7\xf0\x68\x93\x54\x49\x11\x1d\xe9\xdf\xc8\x7a\xf0\x11\x65\x40\x32\x56\xc6\xbd\x2a\x10\x08\x90\x62\x3a\xa4\xf1\xb3\xac\xde\x18\x2d\x9b\x7c\x3b\x55\x56\xde\xa7\x5e\x2f\x48\x80\xf4\x58\xde\xaa\xaf\xaf\x79\xcd\xa7\xf7\x65\x19\x38\x0e\x92\xb0\x2b\xfb\x69\xae\x89\xb1\x53\x56\xa7\xc7\x73\x6e\x6a\xb3\xbc\xd2\x04\x90\x4e\xde\x2d\xbe\x4d\x69\x59\xf5\x64\xbc\xd5\x66\x1f\x9e\x7f\xbd\x34\xda\x43\x9b\x09\x78\xb0\x4b\x18\x88\x3f\x44\x00\xae\x27\x35\x6d\xe7\xd7\x9b\x79\x54\x04\xec\xb9\x0a\x3a\x12\x39\xd2\xc5\xf1\xd6\x39\x5a\x87\x9c\x88\xcd\x3a\x4b\xfb\x20\xd3\x55\x7e\x07\x3d\x09\xbd\xf8\xb4\xb3\x6a\xc3\xcf\x20\x43\xfe\x9b\x94\x2d\xff\xcd\xba\x04\x3e\x33\x34\xf0\x05\x87\xf2\x90\x58\x61\x1f\x4e\x3d\x09\x21\x86\xec\xac\x26\xe9\x7a\x6c\xbb\x3d\x94\x58\xf6\xfb\xed\x1f\xda\x56\x6a\x24\xd0\x66\x7a\x5c\x35\x3f\x03\x33\x5b\x65\x11\xf4\x7d\xa5\x77\xc7\xc1\x3b\xbf\x85\xfb\x74\x12\x13\x7b\xc2\xb6\x49\x2c\x49\xd8\x3d\xd5\x0e\x18\xad\xa7\x26\x35\x42\x35\x83\x34\x89\x8a\x34\x6b\x04\x9a\xfa\xb7\xe9\xa9\xbc\x3d\x0e\x1c\x26\x45\x96\x36\xa8\x62\x74\x9e\x70\x54\xe7\xa7\x84\xc2\xdd\x3b\xb2\x26\x2f\x06\xca\x42\xed\x49\x3c\x02\xbf\x61\x0d\xa0\x7c\x6f\x73\x39\x4e\x3b\xab\x8d\x20\x27\xf1\x27\xf2\x08\xf4\xb8\x2e\xce\x1c\x8e\xe2\x38\x1d\xa1\x14\xee\x00\x52\xe5\x56\x70\xc8\x29\x4f\x14\x1a\x8f\x54\xb7\x81\xf3\x61\x3d\x6e\xbd\xe8\x80\x44\xc3\x32\x4c\x1f\x25\x11\xda\xbb\x87\xe7\x7d\xfd\xbe\xe1\x29\x6c\x3f\xa6\xa0\xbc\x6f\xd6\x4d\x14\x99\x04\x1b\xc6\x25\xaa\x9c\xb5\xb6\x5e\xaa\xf6\x74\x7f\x73\xa1\x5c\x28\x07\x05\x33\xef\xf4\x3f\xcb\xdf\x41\xa5\xf5\x23\xd9\xd2\x6e\x62\xa7\x86\x1d\x2f\xb7\x26\xac\x64\x95\xa0\xa6\xdc\xe3\x64\x95\x35\x7c\x90\xcf\x85\x02\xc2\x79\x64\xb7\x68\xea\xff\xfd\x71\x08\x64\x67\x49\x05\x57\x4b\x3a\x6e\x62\x24\x44\x3f\xcb\x99\x45\xeb\xba\x7e\xea\xe1\x69\x62\x49\x33\x03\x4b\x02\x8c\x58\xc4\x2e\x9f\xa9\x29\x7b\xf5\xd3\x51\xe2\x48\x06\xfd\x6c\x50\xd0\x28\x3b\x46\x0a\x17\x89\x29\x46\x99\x89\x11\x8a\x7a\xd1\x49\xb4\xd1\x5c\x44\x52\x53\x5c\x0d\x13\x76\xc4\x53\xf7\x88\xc9\x8b\x1e\x51\xe9\xb2\x93\x0e\x86\x69\x02\x38\x60\xc0\xa2\x5e\x21\x2c\xea\x15\x66\xe9\x8f\x92\x2e\x18\x43\x55\x96\x15\x2d\xd8\xab\xcc\xd5\x1f\x8a\x6e\x51\xb6\xe6\xdb\x3d\x78\xc6\x60\xfa\xd6\x7e\x3e\x2e\x09\x0e\xa9\x31\x85\x02\x5d\x5c\x6c\x0e\x6c\xd6\xe9\x9b\x44\xa7\x11\x3d\x97\xbd\x0f\x3d\xe7\xda\xa1\x57\xf2\x60\xcc\x02\x72\x83\xd2\xa5\x02\xbd\x8a\xb6\xe4\x67\xdc\x67\xfe\x4c\xa2\x54\xe7\x6a\x1b\x9e\x1e\xee\xd3\xa9\x42\xf8\xc2\xa1\x66\x61\x8e\x44\x34\xe5\x00\x7a\x46\xc7\xb5\xe9\x81\x1d\x03\x60\x74\xcb\xd7\x04\xdf\x01\x08\x0d\x82\xd2\xc6\x44\x02\x12\xe4\x68\xb0\x53\x4e\x69\xa8\x06\x77\xbb\x6a\x87\x3a\x4a\xa9\xf3\x97\xb2\xf4\xdc\x2c\x66\x4d\x77\x65\x94\xa8\x1c\x93\x23\x9c\x47\x85\xf3\x02\x29\xaa\x5d\xa0\xa9\xc2\xcc\xae\x58\x21\x48\xdc\x1e\x8a\x44\xa7\x5b\x41\x08\xfd\xf4\x38\x00\xa8\x67\xa4\xc0\x86\xf6\xbe\x62\xb8\xf0\xa8\xce\xc1\xdb\xc1\xac\x57\xd7\x53\x1c\x9b\x42\xa4\xe5\xc4\x4a\xa0\xd6\xa5\x44\x9c\x7a\x32\x95\x3e\x0a\x2d\xc6\x9a\x55\x68\xa0\xa3\x95\x09\x0f\xfa\x61\x0d\x86\xe1\x40\x73\x65\xa4\x5a\x73\x0e\x45\x1e\x4a\x63\x27\xa7\xfc\xef\xbe\x25\xcf\x68\x88\xe5\xa4\x48\xa5\x71\x40\x43\xdd\x95\x57\xab\x53\x09\x84\x7b\xb0\x49\x2f\x4a\x24\x7b\xf4\x90\x2d\x25\x6b\x72\x6d\x81\xd0\xaa\x5c\xc1\x54\x8c\xfc\x2b\x12\x3f\x05\xbd\xe8\x09\xcd\x3d\x27\x65\x84\x56\xa5\xc6\x38\x4f\x6e\xef\x3c\x49\xb7\xaf\x9b\xbc\x1f\x25\xbd\x22\x4d\xe6\x48\xb3\xea\x01\xe9\x50\xfc\x3d\xf9\x24\x8a\x05\xf7\x69\x0a\xea\x32\x21\xd5\xa7\x01\x96\x0b\x87\x9a\xeb\xd6\xae\xc6\x1b\x52\x8a\x46\x16\xb6\xad\x4d\x16\x4c\xde\x01\x32\xf8\x77\x98\x84\xf1\x12\x3d\x9e\xe5\xcc\x24\x9d\xbe\x27\xed\x42\xa2\xa1\x04\xe3\x2c\x15\xe2\xb5\x6d\x03\x5f\xf3\xc7\xad\x17\xaa\xfe\xe2\xb5\xfd\xcd\x03\xf3\x0d\x89\x5a\x91\xc9\x7e\x88\xa8\x55\x4f\x78\x32\xc7\x69\xc9\x41\x45\xc7\xc9\xd8\x96\x4b\xd7\x55\x8d\x1b\x9e\xea\x23\x20\x3b\x7a\x36\xcd\x7a\x91\x83\xc2\xe3\xce\x54\xeb\x45\x4f\xea\x66\x45\xfe\x1f\xc9\xf6\x42\x10\x1c\x25\x9d\x5f\xd9\x53\x5e\x05\x75\xab\xd4\x56\x3a\xa4\x81\x18\x03\x3c\xec\x07\x63\x6a\x69\x7c\x8e\xa0\x1c\xa5\x3b\x08\x44\xea\x5f\x11\x99\xd8\x04\x25\x5c\xf8\xb5\x7f\xc2\x5b\x72\xae\x4d\x12\xce\x7f\xcc\xcc\xb7\x8f\xc9\x61\x59\x93\x25\xf9\x8e\xa0\x78\x74\x9e\xec\xd4\xc5\xf2\x77\x36\x15\x8e\xe1\xaa\x8b\xe5\x65\xc0\xca\x9f\x12\xf0\x21\x0a\x67\xa0\xde\xd8\x3c\x55\x09\xe8\x8a\x34\x79\x86\x58\x1d\xff\xa0\x15\x34\x01\x4f\x6b\x65\x53\x05\x89\xda\x92\x1f\x2a\x92\x1f\x7b\x09\x49\xe0\x6d\xb9\x55\x25\x36\x26\xd3\xfc\x14\x6a\xdd\x0e\xc9\x47\x5c\x42\x97\xc6\xa1\x11\x7d\x9f\x85\xdf\xc1\x73\xe8\x81\xb3\x21\xa9\x7f\xa2\x4d\xe5\x57\xcc\x04\x00\xb7\x71\xce\x7b\xae\x5e\x56\xba\x69\xcc\x0c\x3b\x7e\xf8\xf2\x62\x7c\x71\x31\x74\x96\xa1\x63\x0b\x57\xe9\xa8\x98\x19\x7e\xcc\x7a\xd8\xa0\x1b\xfa\x25\x80\x0b\xb4\xdb\x5b\x2b\x4a\xb9\x9c\x9a\x80\x94\x00\x4c\x0c\x11\x08\xcb\x00\x22\xe8\x7b\x87\x4c\x7b\x37\xca\xac\x68\x0c\xce\x51\xb5\xf8\xf3\x56\x70\xd4\xa7\xb8\xe5\xf3\x3e\x85\x52\x8f\xc5\x66\x20\xc7\x7f\x38\x55\x40\x13\x92\xca\x91\x8b\x6e\x7d\xb1\x3f\x14\xfe\xc7\x8c\xa4\xe8\xf4\x77\x84\xf2\x0a\x54\x79\xc2\x44\xc2\xbe\xa5\xe0\x9e\x16\x0e\x79\xf7\x44\x95\x72\x65\x74\x47\x2b\xe9\x5d\xe2\x59\xbc\xdd\x0a\x46\x67\x18\x5b\x93\x2b\x93\xd9\xeb\x5e\x02\x8d\x88\x02\xaf\x10\x0f\xb9\x89\xb2\x75\xb3\xe1\xaa\x46\x58\x2a\x3f\x64\xa8\xd5\x0f\x69\x52\x36\xef\x64\x66\xb0\x1c\x6b\xf9\x8f\x24\x04\x02\x3d\xb0\x8f\xb2\x57\xa3\x4c\xe7\x11\x9c\x1c\x7a\x48\x61\x2e\x53\x93\xc0\x1c\x89\x66\x1b\x7b\x17\xdc\xcc\x29\x2f\x9f\xb3\x04\x3c\xba\x53\x89\x2d\xb6\xc0\x23\xcb\x65\xf1\xf2\xcb\x3b\xe4\x16\x49\x5d\x62\x21\x28\x14\x97\xaf\xdc\x51\x79\x92\x25\x41\xe2\x8c\x6d\xa8\x48\x01\xa7\x66\x40\x50\xf9\xa9\x48\xf2\xf0\xfc\xfe\xa6\x19\x0e\xad\xf1\x2a\x32\x9b\x57\x55\xd1\xb2\xa6\xfa\x9b\x17\x36\xb3\xd0\x14\xf1\xaf\x37\x44\x22\x75\xad\xf9\x68\x60\x4a\xb7\xda\x08\x55\x45\x04\x1e\x7a\xec\x31\xd8\x9d\x28\xeb\x8c\x06\x6b\x6e\x08\x1b\xd1\x15\xbe\x5d\x8f\x29\x73\x4b\xec\xfa\x4b\x0d\x4f\x67\x7c\x4f\x3a\x74\xb0\x32\x7f\x56\x4d\xcf\x03\xbe\xfd\xb1\x94\x9a\x10\x7d\xab\xfd\xc0\x8e\x77\xfc\x19\xb0\x20\xe0\x86\x85\xdb\xda\x31\xa1\xe5\xf0\xaf\xa4\xe3\x03\x8b\x75\x0d\x2d\x2c\x25\xd3\x92\xbe\x29\xde\xe6\xb6\x36\x41\xf0\x4f\x08\xe7\xb9\xcb\x11\xca\x1d\x81\xf5\x7d\x57\x8a\xa4\xee\xa5\xc9\x8b\x42\xe4\x75\x74\x0b\xa3\x6e\xc0\x56\x3f\xd1\xae\xce\x58\x96\x8b\x03\xb7\x78\x2f\x80\xd8\x13\xd3\xb5\xbf\x3d\x32\x85\x9d\xf3\x28\x9a\xde\xf3\xd2\x6b\x65\xc0\x34\xf2\xeb\x6d\x32\xed\xe7\xb0\xc9\xf2\x4b\x4e\xde\xd3\x4b\xb5\x9b\x51\x5c\xcc\xc8\xef\x32\x18\x19\xe6\x74\xb3\x45\xf4\x41\x97\xa7\xc2\xdb\xbd\x0b\xcd\xc4\x9a\x4c\x8a\xd1\x3e\x1f\xe4\x01\xec\x7d\x4b\x1e\xfc\x50\x03\x95\x5a\x31\x47\x64\x89\xa1\x2e\x79\x9d\x6a\x94\xd7\x6b\x08\x55\xbf\xd1\x5c\xb1\xb1\x86\xd2\x7e\x0c\x93\x28\xad\x68\x7f\xc6\xf6\x69\x2a\x0f\x3f\x06\x03\xb3\xd3\x1c\x22\x22\x82\x53\x63\x0a\x47\x7e\x34\xa6\xb0\x1e\xf4\xb7\xd8\x8b\x77\x78\xee\x64\xbc\x85\xcb\xb4\x5c\x07\x15\xed\x37\xac\x96\x87\x01\xc3\x71\xf7\xcf\xb7\x43\x7e\xaf\x8d\x3f\xff\x23\xdf\xfa\xa6\x56\x3c\x8f\x51\x08\x66\x92\xbe\x1d\xe5\x36\x9b\xa3\x21\xae\xa3\x04\x7d\x7f\x48\x70\xf1\x99\x36\x8d\x7d\x1d\x95\x2b\xc5\x5a\x0a\xe3\x1c\xfd\x74\x68\x83\xea\x32\xc6\x31\x94\x40\x5d\x4f\x88\x15\xbd\x9f\xe6\xc3\xa8\x30\x71\x8e\x01\x45\xe2\x6a\x71\xeb\xf2\x0c\x89\xc8\x5e\xe0\xf6\x12\xbd\x81\xd7\xfa\xe9\x1c\xa5\x83\x17\x24\xd4\x80\x83\x7f\xae\x1d\x96\xe7\x23\x34\x1b\xbc\x06\x96\x8f\x5a\xbf\xac\x1d\xc1\x81\xf4\x87\x22\x9d\x11\x3f\xa9\x40\x87\xaa\x24\xca\x82\xc3\x2a\x3e\x49\x00\x0d\x3b\x8c\xf2\xb4\x6b\x05\xfa\x83\xf6\xfa\xcf\x00\xfd\xd1\x13\x52\x17\xcd\x85\x4f\x60\xcb\x38\x16\xda\xe8\xa8\x34\x60\x5f\xdc\xa7\x10\xb1\x6f\xe2\x18\x0f\x8b\x27\x56\xb1\xe7\x66\x98\x6a\x79\xa6\x32\xd7\x4a\x9c\x87\xdf\x36\x6e\x12\xce\x99\xba\x93\x2d\x92\xcc\x38\x39\xd5\x80\x10\xee\x8b\xee\x5a\x94\xa7\x9a\x63\x79\xc9\xef\xf2\x99\x3b\xc9\xef\x1a\x00\xf1\x4a\x24\x73\x7d\x01\x93\x0b\x46\x1e\xe7\x66\x42\x5c\x39\x18\x15\x05\x40\x60\x7e\x00\xc9\x97\x5c\xee\xd2\xec\x72\x3a\x2a\x4c\x0f\x75\x3b\x18\xb7\x1f\xb4\x42\x8a\xf9\x83\x3a\x1d\xac\xe5\x34\x71\xf4\x98\x8e\x2d\xa8\xbc\x1c\xd4\x62\x2e\x31\x87\xdd\x94\x63\x2a\x7d\x58\x5e\x98\xac\x40\x75\x12\x7b\xf8\x3a\x3c\x25\xfc\xcc\x25\x12\x72\x7f\xbb\x2a\xff\x32\xcc\x9f\x0c\x48\xfe\x5d\x13\xf9\x06\xc7\x5d\x51\x5e\x00\xa2\xcc\xdf\x67\x8f\xaa\x0c\x17\x0e\x61\x04\x4e\x6f\x3d\x6b\x11\xe1\x0f\x14\x30\xb4\xbc\x39\xae\x50\xcf\x97\x0b\x92\xd5\x74\x5d\x34\xc3\x71\xb6\xb5\x83\x9d\xb2\x0f\x10\x4f\x9c\xc1\x57\x3b\x62\x6a\x9a\x53\x46\x6c\x8c\xd5\xf8\x58\x56\x99\x7e\x82\xe6\x6f\xff\x4c\x5e\x94\xe7\x91\x2f\x2d\x9a\xfb\xa3\xe9\x7a\x79\xe9\x47\x62\xa9\x72\xe0\x1a\x7f\x00\x7b\x06\x73\x7f\x93\x5a\x28\xc8\x22\x1d\x5b\x70\x10\xb6\xee\xa7\x59\x11\x75\x46\xb1\x54\xb6\x1a\xa1\xcc\x78\x9a\x51\x9d\xa7\x59\x74\x61\x63\xb0\x9c\xc6\x51\x3e\x20\xd2\x52\x84\x59\x0e\x5f\xe8\xac\x56\x19\x82\x88\x24\x46\x83\x67\xed\x03\x26\xff\x8a\x4f\x02\x3b\xa6\xbb\x3c\x52\xe4\x8a\xd3\x1e\x96\x9f\xd7\x13\x6e\x83\x96\xab\x67\x47\xb8\x4e\xb8\x28\x3f\x12\x50\x46\x0b\xc8\x71\x8f\xd3\x42\x9a\x11\xa6\x2e\x37\x2a\x10\xf6\x0e\x00\x1d\xb8\x9a\x0f\xeb\x48\x04\xe3\xb4\x13\x10\xcb\xfa\x83\xd8\xd8\xee\xd7\x6b\x02\xa9\x4e\x36\x1a\x08\x5c\xcf\xdf\xe9\x17\x34\x7a\xfb\x45\xa8\x51\x15\x69\x66\x7a\x76\x36\x34\x75\x2e\xe2\xed\x01\x22\x70\x86\x86\xf3\x61\xb9\xdc\xc3\xfe\xc5\x6a\x20\xba\xb8\x78\xd0\x15\xbd\x77\x96\xdf\x85\x3d\xfe\x27\xea\xe7\x78\x90\xcf\x21\x9a\xe5\x57\xf4\xcf\x5a\x01\xc8\xf0\x63\xe6\x51\x3e\x09\x8f\x81\x3c\x4a\xe7\x3b\x5c\xc5\xaf\x66\x80\xa5\x30\x43\x18\x91\x3a\x86\xcc\x40\xfc\x99\x0f\x6d\x27\x32\x71\xa4\xb2\xc9\xa8\x8f\x9c\xa7\x5a\xc9\x79\x9a\xf9\xc8\xd3\x78\xcd\x56\x38\x52\x1a\x34\x9c\x5a\xd3\x57\x5e\x4e\x47\x8e\x1b\xc7\x8d\x77\x97\x9f\x70\x33\xe3\xc4\x80\xb2\x66\xb3\x75\x1b\xf5\xfa\x9a\x2d\xd4\xf1\x6f\x06\x13\x09\x49\x99\x27\xcb\x85\xe6\x66\x9a\xe4\x41\x39\x68\x6c\x79\xf5\x2e\x60\x92\xc5\xe1\x88\xa0\x08\xe5\x72\x1a\x0f\x1d\x84\x1f\x27\xc4\x60\x22\xc7\x3d\x26\x41\x26\x8d\x93\x1e\x0c\xfd\x7d\x3f\x39\xf6\x90\x1a\xd3\x8d\x76\xc0\xfa\x0f\xa3\x4e\x31\xca\xfc\xbc\xb6\x67\x8b\x08\x61\x22\x77\xd3\xfb\xe9\xc0\xe6\x3b\xe4\x0a\x9d\x8c\xbf\x5c\x21\x6c\x13\x44\xbc\xfc\x60\x2c\x95\x9b\x09\x12\x74\x9b\x7a\xbf\x1f\x8e\x43\x02\x7c\x6e\x6a\x4d\x2c\x2d\x35\x97\xa3\xae\xbe\x0d\xc7\x1f\x4b\x95\xb7\x69\xb9\xc7\xa5\x25\xe9\x21\x25\x0e\x1e\xac\x90\x7e\x59\x49\x9e\x24\xa7\xfc\x02\x98\xc3\x6d\x13\x67\x68\x56\xa3\x6e\x52\x66\x46\x80\x93\xe0\xad\x9c\x91\x32\x82\x1e\x4f\x81\xe8\x17\x0e\x35\xe3\x74\x14\xe5\x6b\x51\x1c\x63\xd9\x7a\x46\xba\x20\xf7\x74\x79\xca\xff\xfe\x07\xcd\x5e\x56\x7e\x42\x0d\x02\xf6\x26\xc0\xf6\x7a\x5c\xc7\xf1\x6c\xe2\x78\x94\xd9\x46\x95\xf3\x9e\x98\x48\xea\xea\x0d\x79\x32\x5a\x5e\x76\xcc\x33\x08\x62\x2f\x70\x76\x79\xa1\xf5\xe2\x74\xef\xb4\xa3\x5e\x19\xeb\x5d\xab\x2a\x0e\x8a\x27\xdf\x84\x70\xa9\xca\x48\x32\xc8\x7e\x65\x67\xf9\xac\x90\xf2\xca\xd2\x5e\xd8\xbc\x2a\x66\x15\x40\xbc\xb3\xf0\xa8\x88\x72\xbf\x33\xae\xc0\x36\xe4\x27\xc4\x78\xfd\x97\x7f\xbe\xcd\x5a\x72\x10\x29\x45\xf8\xf3\x80\xb8\x36\x46\x49\xc7\x66\x85\x89\x92\x02\x71\x0f\xaa\x49\x18\x13\xd3\xe3\xa9\xc8\xf1\xc0\x7c\x73\x94\x44\x2b\x51\x56\x5a\x8d\x03\xf3\xf5\x84\x19\xd3\xc0\xa4\xd7\x9b\xcb\xb6\x93\x0e\x30\x97\xea\x99\x76\x0e\xcf\x6b\x77\xf7\x3a\x22\x48\xa7\x3b\x4c\x68\xfa\xed\xed\x97\x08\x78\x5e\xd8\xac\x4c\x76\x45\xd6\xdc\x0f\x17\x7c\x67\x1c\x06\x75\xbf\xe3\x33\xbb\x41\x9a\xd8\xc2\x64\xce\xba\xa1\xee\x09\x8a\x46\x3d\xf6\x93\xd6\x79\xda\x35\x33\x54\x3b\xb8\x46\x88\x2b\x20\x7b\x50\x13\xfa\x8c\xa2\x4c\x9b\xa4\xa3\x5e\x7f\x97\x38\x39\x44\x5b\x77\x68\x96\x05\xf4\xb8\x9e\xa6\x65\x9f\x8b\xa8\x76\xb6\x49\x9f\xe3\x38\x01\x2c\xcf\xe2\x9e\xbd\x0d\xf6\xfa\x79\x8f\xc5\x24\xb9\xd1\xca\xe9\x20\xf4\x00\x40\xc4\xc4\x97\x0d\x08\xa9\x1e\xb7\x02\xd8\xb8\x6b\x92\x0e\x46\xb5\x55\xd3\x1c\x42\x2a\x5e\xa4\xd3\x57\x24\x7e\x80\x35\xe6\xa4\x23\x9e\x21\x65\xcf\xce\x6a\xb9\xb1\xf7\xee\xf5\x48\x89\x86\x9f\x01\x3d\x49\x05\xa8\xdc\x76\xcc\xa8\x33\x72\xa6\x10\xd5\xaa\xbf\xd3\xa2\xd2\xd5\xdf\x99\xb2\x51\x6f\xbc\xd1\xec\x98\x2c\x66\x96\x8c\x5b\x94\x91\xde\x22\x04\x6a\x24\xb3\x4b\x24\x6c\xff\x01\x15\xfb\xa7\xf1\xf4\x4b\x4b\xa2\xd2\xf8\xdb\x23\x58\x17\x94\x29\xc1\x0a\xa4\xc7\x81\x2f\xc9\x9a\x3c\x1f\x65\x50\x1d\xf3\xac\x76\x17\xe8\x36\xaf\x90\x84\xfd\x1f\x52\x6f\xc3\x1e\x19\xda\xac\xf8\x4a\x0c\x5d\x80\xa1\xe6\x26\x59\x95\x9d\xe3\xe4\xb6\xca\x3f\x73\x3a\x5c\xbf\x3c\xdd\x98\xc9\xec\x30\xb3\xb9\x4d\x0a\x19\xb5\x77\xa4\x2f\x1e\xbb\x19\x54\x24\x2e\xb0\xbd\x7c\x77\xaa\xa3\xbe\xb4\xd4\xcc\x3b\x26\xc6\x98\x92\x43\x85\x87\x7c\xf3\xc3\x6a\x26\x5f\x87\xb7\xea\x98\x6c\xa8\x9c\xda\xae\x11\x4a\xc0\xfa\x2b\x35\x74\x77\x07\x9b\xa3\x64\x5d\x04\x3c\x3d\x5b\x04\x7c\xf3\x97\xd4\x44\x7f\xd0\xaa\xb0\x45\xd4\xe4\x59\x45\x3a\xf2\x81\x5f\x45\x7f\x51\x4f\x6a\x4b\xb2\x26\x8f\xba\xd0\xe7\xc5\xa6\x02\x7f\x15\x02\x8a\x77\x05\x7d\x03\x18\xcd\x4c\xbb\x02\xbb\xc8\x36\x50\xa5\xc7\x3e\xd6\xde\x2d\x22\x82\x6b\x95\x9a\x17\x8c\x04\x02\x8a\xe3\x3c\xd3\xf8\x00\x39\x0b\xbe\xfd\x1f\x11\xf1\xfc\x13\x28\x2e\xc0\x23\x3c\x6e\x11\x79\xee\x35\xb9\x1e\x5f\xe7\xf9\x8d\xd7\xd4\xdf\x82\x82\x00\x26\xf2\x87\x62\x2e\x9d\xac\x02\xc1\x74\x51\x50\x71\x0d\x90\xe7\xc3\x24\xaa\x1d\x66\x69\x77\x04\xd1\x5e\x97\x50\xbe\x47\x09\xe5\x7b\x34\xf6\xd5\xcb\x8c\xe8\x99\x7d\xf5\x33\x0e\x9c\x4b\x51\x2f\x11\x19\xb3\xd2\x30\xc1\x94\xa3\x30\xa6\xc7\xed\xd0\x6b\x1e\x66\x76\x10\x8d\x06\xe8\x42\xf9\x41\x57\x8f\xe4\xfc\xa0\x15\x98\xa8\x4f\x55\x34\xb7\x32\x6b\x46\xdb\xc3\x30\x86\xca\x91\xf9\x97\xe7\x85\xa8\x66\x51\x04\x50\x15\x39\x06\x34\xfd\xe9\x98\x99\xd1\x1f\xd4\x61\x01\x6d\x9c\x63\x81\x38\x09\xd0\x86\x9f\x1d\xc6\x8e\x77\x15\xc0\xad\x05\x03\x19\xd2\x92\xc0\x59\xa7\x7a\x5c\x35\x9f\x2a\xfb\x34\x2f\xb5\x62\xb3\x42\x72\x2f\x07\x51\xc2\x26\x3b\x46\x10\xa2\x69\x54\xe4\xc2\xa1\xe6\x30\x4b\x3b\x36\xcf\x53\x84\x52\x30\x11\x97\xc8\x5c\x5c\x22\xe2\x87\xcc\xe6\xa3\xb8\xf0\xdd\x55\x5c\xf9\x2d\x02\x93\xdf\x9a\xda\x9e\xaf\x34\x87\xb6\xc8\xd2\x4e\xdf\x0e\x64\x38\xab\x02\x26\xf7\x63\x3a\x6f\x73\x53\xb6\x33\xca\x3c\x8d\x3b\x76\xfd\x49\x2c\x12\x3d\xa1\xaa\x7e\xd2\x31\x33\x5b\xa7\xb8\x1c\xa2\x8e\xd4\x8d\x6e\x4e\x41\x86\xb4\x34\x95\x8e\x92\xc2\x24\xc5\x56\x76\x9b\x7d\x81\xdd\xe6\x29\xd2\x3f\x8c\xed\x93\xc1\xb4\xcf\x4c\x28\x92\xfe\x18\xc1\x16\x02\xa1\x7f\x83\xda\x25\xfa\x32\x8f\xb1\xb7\x11\xc0\x7e\xbf\x45\x40\x0c\xd0\x19\xc0\x90\xea\x50\xac\xcf\x1d\x7f\xe3\x35\x3d\xe6\x06\x1c\x70\xa7\x9b\x57\x09\x24\x53\x98\x55\x9b\xec\x0c\x74\xe9\xc7\x60\xaa\x9d\x1a\x7e\xb9\xdf\x11\xad\xa3\x97\xa9\xac\x35\xad\xd0\x0a\xd5\x9e\x05\xfe\x08\x02\x60\xf8\xb1\x9f\x8a\x7f\xc7\x66\x9b\x9b\xbc\xc8\x60\x95\x81\xcd\xde\x5c\x16\xff\xb2\x70\x48\x9b\x5a\x9b\xd4\xa3\xdc\xa4\xb6\xcf\x7a\x24\xc8\xea\x06\xca\x30\x9e\x97\xba\x7c\x3c\xc4\x4b\xed\x39\xf9\x93\x34\x8b\x8a\xc8\x2a\x5b\x27\xee\x62\xb3\x45\xda\x94\x58\x6b\x78\x66\x73\x93\xd0\xe9\x39\x31\xde\xd2\xc5\xde\xb7\xd4\x3c\x30\xff\x0b\x8d\xd7\x5c\xc1\xff\x4c\x8b\x88\x04\x40\xd1\x8d\xe1\x9a\xdb\x80\x3f\xe3\x9d\x7e\xcc\x72\xc8\x7f\x97\xd4\x82\xbf\x90\x95\xe5\x85\xed\xca\xeb\x77\xf4\xd4\x95\x2a\x2b\xc5\xdf\x3f\x95\xb8\x0b\x9d\x80\x19\x29\x36\x39\xfd\x38\x3c\x0c\xa7\x58\x47\x83\xee\x97\xc6\x44\x83\xf7\xcf\xd5\x0f\x28\x19\x29\xc6\x96\x9c\x21\xdf\xf6\xf5\x4a\x73\x18\xe9\xe3\xc7\x88\xee\x10\x77\xcd\x49\x67\x09\xb5\x62\x50\xe2\x21\x24\xd2\xb4\xc0\x8b\xa3\x1e\x98\x3f\xe8\xb1\xdf\x35\x72\x92\xe5\x76\xb4\x99\x4f\xd0\x94\x7c\x59\xde\x82\x52\x97\x60\xe5\x02\xfd\xfa\x16\x55\x8d\x30\xc2\xe3\xe6\x11\x10\x98\xbe\x2f\xab\x50\x8f\xa7\xbc\xff\xe2\x62\x73\x68\x36\x8c\x9b\x7b\x64\x4e\x24\x47\x7d\xf4\x2c\x45\xc6\xe0\x36\x09\x48\x55\xec\x27\x27\x93\xb9\xb5\x75\xb1\x6f\xa9\x99\x77\x23\x2a\x7a\x1e\x65\xf1\xc4\xa3\x75\x90\x03\x13\x65\xc2\xc4\x8a\xda\x35\x72\xf7\x8b\x3c\x8e\x78\x8f\x2c\xdf\xf4\x40\xc6\x2b\xcd\x6e\xb4\x16\x79\x9d\x7c\x74\x82\xaf\xe3\x7d\xeb\x49\xa5\xda\x59\xac\xa7\x2f\x94\xcb\x04\x08\xf6\x6d\x6d\x59\x65\x70\x14\x77\x5a\x5c\xe1\xc0\x85\x23\xde\xd8\x36\x61\xca\xa9\x0f\x68\x34\xed\x02\xe5\x73\x6a\x3f\x11\x78\xdf\xc3\x4b\x47\x40\xa6\xb3\x7c\xc8\x0e\x7e\xd2\x0a\x8a\x6d\x10\xc1\x87\xcf\x7a\x1f\x5b\xd0\x37\x35\x0e\xcc\x3b\xe2\x51\xac\x4a\x07\x25\x94\x95\xe5\x30\x8b\x21\x4d\xf9\x1c\x91\xbe\x1b\xd9\xc3\xf2\xd7\x1b\xa3\x8a\x7f\x3f\xea\xf5\xd7\xcd\x46\x23\x78\xeb\x8b\x34\x8c\x7a\xd1\x37\xbf\xcc\xa8\x1b\x15\xb3\xc1\x59\x01\x82\xe6\x54\x22\x03\x12\xe0\xcf\x70\x3d\xb8\x86\xf3\x54\xff\x5e\x4d\x87\x43\x8b\xca\x27\xf6\x93\x56\x3e\xf5\xa4\x4e\x9a\x24\x4a\xf2\x42\xe8\x45\xfc\x08\xca\xb1\x56\x00\x6d\x1c\x23\x8b\x2c\x39\xeb\xb3\xf2\xbc\xd0\x2c\x44\xc5\x11\x61\xc9\x59\x69\x54\x62\xc9\xdd\xc1\xe5\xa1\x3e\x7b\x47\x5e\x96\x6b\xd9\xe1\x95\xaa\x72\x1e\x0b\x23\xbd\x8b\xe7\xed\xf4\xa0\xe5\xd5\x79\xa5\x94\x85\x43\x1a\x70\x3f\xc4\x6a\x41\x4b\xe1\x91\x3c\x11\xf4\x57\x74\x9a\xd9\x23\x5a\x3c\xb3\xf9\x55\xae\x4e\xb5\x08\x64\x74\xc3\x97\x2e\x8b\x34\x89\x7a\xfd\x62\x7b\x69\x39\xbd\x4a\xe3\xaf\xff\x96\x1a\x92\x3f\x1e\x87\x10\x58\x2b\x2a\x0a\x3a\xa1\xe4\xea\x11\x6e\x05\xd7\x35\xdd\x20\x59\x5c\x6c\x16\xe5\x4f\xd8\x44\xcb\x3a\x2e\x26\x6c\x78\xd6\xfa\x0b\x34\x54\xb3\xde\x8f\xde\x7c\x13\x9b\x73\x7f\x50\xaf\x2e\x6f\x1c\x50\xb2\xab\x04\x03\xbd\x4f\xf3\x0f\x2b\x51\xb2\xaa\x19\xa3\x8b\x43\xe4\x7a\x5d\x20\x12\x38\xa5\xd6\xa2\x3c\x2a\xd2\x4c\x4b\x2c\x8c\x41\xc1\x46\x7a\x80\x0f\x22\x26\x3e\x37\x0e\x31\x71\x19\x90\x9a\x62\xa4\xf3\x6b\x4e\x7a\x43\xbe\xc5\x09\x74\xec\xf1\xa9\xa0\x5d\xd1\xe8\xc3\x53\x98\xf9\x2c\xf0\x47\x53\x55\xac\x7d\x4b\xcd\x24\xcd\xd6\x6d\x2f\x32\x89\xcb\x7b\x5d\x17\x9b\xc7\xf8\xc6\x2f\x51\x80\x9e\x17\x59\xd4\x91\x41\xfa\x39\x52\xb2\xa5\x66\xfa\x3b\xe3\x30\xd2\x71\x06\xcb\xd2\xcf\x28\xbc\xe6\xa7\xed\xcf\x4c\xe1\x13\xf6\x2d\x35\x63\xdb\x8b\x0a\x65\xbd\x5c\x5c\xf4\xac\x1e\x8d\xa5\x40\xf7\x11\xa2\xb5\xdf\x5c\xda\xdb\xa8\x88\x56\x31\xb1\xf8\x65\xa2\x76\x88\x92\xae\xb5\xdd\xdd\xd2\x09\xc1\x3a\xd2\xc9\x54\xef\x8d\xbd\xec\xbb\x52\x52\xf9\xd0\xed\xb5\x30\x41\xdc\xf0\xa3\x9b\xbf\x0f\xc7\xaa\x5f\x25\xf1\x9d\xab\x8b\x95\xdb\x06\x26\x02\xd5\x50\x57\x29\x7a\x29\x74\x22\x07\xcb\x65\x72\x99\xe7\x8e\x39\x03\x06\xe9\x2e\x19\xa7\xbb\xb5\x13\x2e\x80\x02\x49\x86\x4f\x10\xa8\xfd\xbe\x7e\x1a\xcc\xd6\x75\x2a\xa0\x0c\x4c\x94\xa8\xcb\xf1\x20\x2a\x5f\x23\xf8\x9f\x99\xf0\xe6\xbc\xef\xbb\x0c\x4c\x2f\x49\xe3\xc8\xe4\x2c\x1a\x72\x03\x2b\x02\x5b\xe3\x86\x1a\x15\x38\xed\x37\x98\xc9\xd8\x5a\x27\xb9\x03\x6c\xd4\xff\x86\xe9\x70\x3d\xa9\x69\xea\x37\x43\x5d\x0e\x66\x0d\x5b\x54\x8f\x7d\x05\x65\xd9\xe4\x4a\xdc\xbf\x44\xa4\x2c\x9e\x2f\xe7\x2c\xbd\xef\xc4\x0c\x63\xab\x62\x51\x4a\xc7\x48\xea\x86\x81\x35\x4e\x44\xd0\x84\xd9\xdf\xeb\x87\x79\xd2\xcb\x2f\x5b\x2f\x11\x06\x25\xea\xf5\x97\xd3\xac\x9f\xa6\xdd\x19\x89\xef\x3c\x4c\xe2\xf0\xbc\x3a\x3b\x65\xc0\x56\xe1\xca\xda\x9a\x57\x37\x5d\xef\xa2\x66\xe9\x67\x79\xbd\xc6\xfc\x79\x32\x14\x79\x3c\xea\xf5\xa2\xbc\x3f\x3b\xcd\xc4\xe5\x88\xc3\x42\x3e\x7c\x05\x0d\x3e\xc7\x2e\xf6\x0c\xe9\xe5\xc6\x69\x02\x61\x40\x47\x98\xf5\x7f\x73\xf6\xa7\x31\x92\x9c\xe9\x7d\x20\xde\x9d\x55\xd5\xd5\x64\xb3\xc9\x66\x93\x9c\x19\xdb\x32\x9c\xb0\xc7\x7f\xca\x06\x45\xc9\x63\xc8\x7f\x69\xbe\x44\xaa\xba\x3c\x34\x1b\x9a\x62\xa3\xba\xd5\x5c\x11\x36\xc0\xc8\xc8\xb7\x32\x83\x15\x19\x91\x8c\xa3\x8a\xc5\x4f\x8b\xfd\x60\x2c\x8c\xfd\xb4\xde\x85\x01\x2f\x60\x2c\xec\x5d\xdb\xa3\x95\xa5\xd5\xe8\xb2\xce\x4c\x8e\xe6\xd0\xcc\x48\x33\xbc\x86\xc7\xf0\xea\xfb\xaa\xee\xea\xfb\xee\xae\x5e\xc4\xf3\x7b\x9e\xf7\x7d\xa2\x22\xb8\x30\xf6\x13\x23\xd8\x95\x99\x11\xef\xf1\xbc\xcf\xf1\x7b\x7e\x3f\xc5\x73\x73\x5e\x67\xc8\x92\x30\xaa\xa4\x48\x30\xae\x7c\xdd\x98\x55\x89\x42\xd3\x35\x69\x4b\xf3\x7e\xad\x6b\xc6\xf5\x7a\x76\x63\x61\xa1\x1d\xf9\x45\x7f\x90\xa9\x1a\x1d\xf3\xdc\xf1\x4d\xa5\x20\x3a\xf2\xe3\xdd\xe5\x1f\x22\xd2\x7c\x17\x67\x13\x12\x58\x57\xd1\x8a\xc6\x8c\x85\xbc\xe9\x61\x85\x50\x49\xe1\x96\xe6\xb1\xc2\x17\x5e\xc2\xec\xe0\x0c\xdc\xd5\x71\xfc\xd7\xbf\xaf\xf8\x12\x6f\xe1\x71\x10\x97\x6f\x68\x42\xa2\xcd\x31\x75\x7e\x79\xaa\xd1\xfc\xcd\xcf\x55\x74\x0a\xfc\xb8\x17\xf6\xa6\x5c\x96\x0a\xe2\x47\x16\x7b\x52\x7e\x87\xa8\x42\x36\x98\xc0\xac\x18\x99\x94\xb4\xc7\xa0\x9b\x02\x9b\x0a\x3a\x48\xbe\xae\x01\x69\x16\xe7\xda\x49\x6c\x66\x2b\x5c\x18\x8b\x73\xe2\x95\x2b\x66\x40\xc6\x9e\xc8\xf1\x57\xba\x0f\xd8\x3e\x9f\x21\x0a\x61\x10\x85\xaa\x36\x1e\x6f\x54\x90\x4c\x93\x1e\x53\xd5\x57\x1a\x07\x85\x23\xcc\x99\x9f\x6e\xd2\x2f\xd8\x8c\xd8\x7a\xb8\x6d\xbd\xb9\xa3\x0c\x7b\x7d\xcb\x94\xbf\x43\x7a\x10\x33\xae\x39\xed\x24\x7e\x07\xc1\x26\xb3\x28\x8b\x58\x1c\x0d\x2c\x72\xde\x17\x3c\xcd\x2b\xed\xe4\xf8\xfd\x55\xdb\x7b\x62\xfb\x06\x54\x43\x81\xa4\xd6\xbb\xc9\x6b\x6b\x80\x73\x58\x40\xaa\x4d\xde\x3c\xda\x71\x18\x54\x26\x88\x16\x7d\x14\xb1\x54\xaf\x24\x03\x3f\xce\x92\xb8\x5a\xb0\xa9\xc8\xed\x39\x07\xcf\x1f\x8d\x22\x83\x92\x1a\x88\x27\x4e\x20\x84\xe6\x9b\xb1\x6a\xc2\xfa\xe1\xd8\x71\xb6\x9c\xc7\xbb\x5b\x59\x69\xa7\x45\xf3\xad\x0a\x76\xcb\xbe\x52\x94\x04\xb3\x64\x88\xed\x02\xb1\xdd\x7f\xbc\x0d\x11\x9c\x33\xe4\xcc\x52\xcb\xb9\x7e\x27\x94\x58\x10\xff\xee\xea\x28\x0e\xb5\x89\x83\x4f\xae\xfa\xa3\x6c\xda\x6d\xf0\x4f\x2a\x2c\xdb\xca\x8d\xdc\xd9\x51\x14\x5e\xe7\xed\xc0\x0f\x8c\x9f\xcf\xaa\x60\x7d\x1b\x95\xdd\xe5\xc1\x1c\xac\xf2\x2e\xc6\xc8\xe6\x31\xca\x31\x12\x6e\x53\x87\x83\x38\x5e\x55\xb7\x73\x49\x87\x7c\x90\x1a\x3f\x37\xb6\xbb\x5d\xb4\x18\xca\xe1\x15\xd0\x8f\x73\x33\x7e\x25\x5e\x23\x06\x62\x5a\x5a\xe3\x2f\x74\x94\x83\x80\x52\x02\x4c\xde\xf5\xb1\x6a\x6a\xdb\xad\x9a\xe3\xc3\x38\x2b\x52\x93\x4e\xeb\xc8\xea\x14\x32\x03\x3a\x6f\xc7\xd7\xaa\x4f\xfc\x94\x6a\xb1\x1c\x9a\x7c\x90\xf4\x00\xc7\xb1\x38\xda\x05\x89\xc2\xdf\xb6\xf9\xae\xcc\xcf\x4d\x14\x85\xb9\x41\x5b\x01\xc7\xfe\x63\x25\xf4\x0b\xd5\x0a\x9c\x53\xbb\x3a\xae\x3b\x03\xb1\x0e\x1c\x08\xb7\x96\xa3\xa4\xdb\x5d\x93\x72\x14\xaa\xf1\x9c\x96\xe0\x1b\x85\x13\x5e\x0e\x83\x65\x6c\x75\xf1\x9f\x5b\xfb\xf7\x6f\xde\x51\x65\x8e\x8d\x26\x9a\xcd\x30\x7e\xb5\x08\x53\xbb\x31\x85\x94\xcd\xc5\xe9\xda\x95\x4b\xcd\x2b\x49\x08\xd0\xb2\xf0\xb4\x94\x7f\xc8\xd7\x6a\x21\x45\xc3\x96\x73\xd8\xd8\x1e\x48\xa0\xe3\xe6\xf6\xd7\x9e\x7b\xa1\xe5\xb4\xfc\x79\x93\x8a\x15\xdb\x6d\xdd\xa1\x34\x1f\xf8\x53\xee\x4c\x54\x4c\x43\x13\xd6\x30\xc3\x8a\xab\x67\x6c\xf7\xef\x27\x6d\x76\x7a\x16\x04\x12\x57\x54\x7f\xca\x15\x25\xb3\xde\x1b\x05\xd3\xe5\x59\xa4\x4a\xf0\x07\x2b\xb0\x05\x29\xc7\x2b\x12\x88\x8d\x5a\x5e\x62\xfe\x50\xbb\x18\xae\x2a\xed\x5c\xa6\xe0\xe3\x1b\xd5\xef\xde\x37\x66\x59\x0a\x33\x88\x1a\xaf\x7b\x2a\xde\xf9\x18\x9f\x93\x3e\x56\x97\xb7\xf4\x23\xff\x59\x85\x0a\x66\xbb\xcb\x37\x4a\x3d\x49\x3b\x4d\x68\x44\x83\x4d\xf8\x0e\x45\x07\x7c\xdd\xc0\x8b\x78\x10\xbd\xd6\x5a\x58\x0a\xf0\x0e\xbe\x56\xe8\xa0\xd4\xc4\xfd\x7c\xc0\xf1\x0e\x8e\x65\x38\x7a\x7c\x3d\x76\x38\x87\x9e\x19\xfa\x71\xcf\xf4\xa6\xdc\x93\xbf\xe3\x94\xb8\x7f\xe5\x0e\x3c\x7a\x46\xce\x7b\x5b\x8f\xf6\xe7\x17\x2c\xb5\x3d\x55\x71\x6d\xd6\xe7\xa2\xa7\x3d\x31\x85\x9d\x4b\x56\x4c\xb6\xcb\xb5\x34\xf3\x74\x22\xc9\x77\x9b\x76\x1a\x8b\x0c\xb1\x23\x2d\x32\xd5\x0a\x4c\x7a\x04\x31\x0a\x7f\x81\xa7\xf8\xb2\x59\x82\x1c\xde\xc0\x65\x05\xcb\xbb\x44\xb5\x09\xab\x53\xad\xb4\x8f\x1a\xd8\x4a\xba\xa9\xe1\x0e\x64\xc7\x45\x70\x46\x73\x11\x9c\x51\xe7\x78\x66\x46\xf9\xb3\x84\x36\xc6\x5a\xe1\xa3\x0f\xa7\xc1\xa7\x9e\x2a\xa4\x9f\xf6\xb4\x28\x05\xc0\xf0\x42\x32\xb3\xd5\xdd\x59\x9c\x6b\x0f\x4d\x30\xf0\xe3\xf0\x75\x49\x09\xe2\x00\x3f\xa9\x98\x30\x19\xaa\x0f\xcb\xf4\x6e\xcd\xed\x2a\xdd\x84\x5e\x98\x05\xc9\x8a\x49\xf1\x25\x2f\x39\x2c\xc6\x96\xd2\xd5\x3c\x5b\xad\x4b\xb5\xe6\xe7\xfd\xfb\x17\x4b\xdb\x19\x66\x4b\x7e\x90\x0b\xa4\x52\xc8\xb7\x9c\x67\xbc\xae\x97\x54\x98\x8d\x8a\x1c\x71\xc6\x81\x4d\x12\xc0\xd8\xfc\x40\x49\x14\x87\x71\x96\x87\x39\xfd\x85\x43\x8d\xf2\x50\x89\xb6\xd7\xe7\x11\xeb\x87\x51\x14\xc6\x49\x98\xa1\x5d\x84\x3d\x52\x45\x3c\x70\x42\xb3\x83\xdd\xf6\xb6\xe2\x58\x20\x8e\x69\xc9\x34\xca\x51\x10\x32\x8d\x5a\x60\x72\xa0\xa2\xf8\xdb\x64\x7d\x1b\x12\xab\x91\xa1\x44\x3c\x1e\xcf\x0a\x6b\x5b\x88\xf3\x75\x25\x61\x7a\xaf\xb6\x9b\xe4\x25\xd7\x8c\x9f\x46\x6b\xe4\x2e\x58\x11\x71\x2b\xdc\xf7\x0e\xde\x10\xab\xed\xe8\xd8\x41\x54\xef\xa8\xf6\xe5\xdc\x7f\x6d\xe4\xaf\x95\x9e\x72\xf9\xec\x4c\x75\xa5\xf0\xba\xda\x13\x0d\x52\x7f\x09\x19\x37\x89\x37\x74\x20\xe2\xb2\x2d\x45\x1c\xae\x98\x34\xe3\xda\x92\x90\x3b\x2b\xa7\xe4\xbc\x02\x44\x45\x45\x1a\x0c\x30\x0a\xf8\x45\xb4\xc3\xe2\x2c\x87\x36\x95\x38\x29\x4a\x9c\x04\x52\xe8\x26\x9d\xd2\xc2\x61\xa7\x94\x47\x76\x55\x47\x09\x9b\x4d\xfc\xd7\x7d\x52\x53\x9a\x6a\x59\x41\x93\x9f\x8c\x5d\xdb\xc5\x05\x55\x75\xbd\xd6\x24\x7b\x46\xd0\x25\x65\x0a\x4f\xeb\x6e\x1d\x34\x4d\x22\xa1\x71\xb6\x19\x63\x55\xc4\x7d\x70\xf7\x49\xea\x99\xab\xc4\xb2\xe2\x1c\x5e\xe3\x6d\x45\x0d\x76\x11\xca\x14\x7c\xf4\xf6\x93\xdd\x14\xc7\x21\x16\xb9\x4c\xb1\x88\xc4\xfc\xf4\xf6\x70\xfb\x3e\xf5\x5c\x03\xe0\x29\x36\x96\xc8\x25\x40\x25\x47\xf4\x65\x55\xac\x7c\x15\x79\x49\xc4\xe8\xdc\x88\xc4\x72\xba\x9e\x83\x3a\x9c\x42\x48\x88\x9f\x24\xb1\x80\xcd\x6b\xf4\xb0\xf2\x10\x92\xaa\xec\x25\xb1\xd3\x8d\x40\xd4\x88\x3e\x2b\xac\x1d\x0e\x49\x00\x14\x7b\x4f\xe1\x49\xfc\xc0\xef\x99\x61\xe8\xb7\x14\xd0\xf9\xac\x8a\x37\xce\x2a\x20\x46\xcf\xc4\x71\x98\x11\x48\x05\x71\xe2\x09\xcf\xa9\x93\x9d\xb0\xde\xdd\x28\xc9\x4d\x9c\x87\x0c\xd8\x15\xb2\xf1\xaa\x78\xb4\x55\x27\x1d\x7b\x2e\x23\x74\xab\xa9\x18\x23\xa9\x3c\x8e\xcf\x30\x93\xa7\xf0\x3a\x4a\x36\xea\x25\x4b\xe3\xb4\x47\xf1\x37\xa6\x81\x30\x0b\x4b\x03\x8e\x8a\x08\xce\xa8\x4e\xf2\x13\x4d\x09\x70\x3f\xcf\xcd\x70\x04\xaf\x12\x3f\x75\x5f\x31\x85\xdf\x6f\xe4\xac\xfd\xff\x40\x83\xb1\x7f\x7f\x3b\x2b\xd2\x15\xb3\xc6\xaf\x68\xf9\xa8\xec\x4f\xc1\xf7\x66\x82\x81\x86\x9a\x4b\x96\x87\x4b\x91\xd4\x6c\xb0\xa3\xb8\xf3\x19\xee\x08\x8c\x32\x4e\xe2\x93\x5b\x1b\xbc\xe6\x0f\xb5\x0f\xcf\xbd\xf4\xa4\x93\x5c\x6b\xa1\xb9\x07\x7f\x7e\x14\x6b\x16\x21\xdc\x59\xa4\x71\x58\xe8\x05\x4b\x93\x65\x71\x3d\x05\x6c\xfa\x50\x43\xd6\x24\x09\x87\x05\x7b\x57\x77\x4a\xbe\x41\x35\x5f\xe1\x5d\x2e\x57\x35\x3c\x07\xa6\xaf\xc7\xd6\xfa\x73\xe4\x94\x84\x01\xaf\x65\xe3\x7f\x80\xdc\x70\xea\x40\x18\x80\xe5\x41\x50\xea\xc1\x57\x9d\xc0\xb9\xc2\xca\xc4\x34\x0c\x08\x53\xd7\xc9\x09\x11\xc5\x55\x41\xb6\xe5\x04\x69\xee\x25\xab\x70\xde\xb9\x55\x48\x85\x94\xe7\xd4\xd1\x1a\x0e\x47\x49\x26\xeb\x0b\x11\x23\x03\x6e\x30\x40\xac\xd0\x25\x0f\xd2\xd0\xbd\x96\x06\xff\xe4\x2b\xbf\xf4\x0b\xaa\xbb\x77\x43\x13\x1a\x6c\x58\xec\x14\x6b\xd9\x5a\xb7\x0e\x29\x13\x46\x2b\xf3\x4d\xd3\xb2\x1a\xfa\xe9\x6b\x04\x61\xb7\xec\x1e\x5c\xa7\x90\xec\xd1\x23\x16\xf8\x65\xe2\x1e\x27\xca\x6c\x0e\xa3\xfc\x43\x69\xd3\xaf\xe1\x3d\xe7\x2d\x5b\x9d\xd5\x30\x3d\xaf\x18\x6e\xcf\xdb\x21\x4d\xcd\x28\xc9\x32\x93\x49\x49\x50\x7a\x98\x5c\x15\xf1\x7b\xf6\x31\xb2\xbc\x58\x5a\xc2\x26\x10\x99\xdf\xd6\x82\xd3\x3e\x2e\x97\xa8\xe4\x67\x76\xdb\x19\x4b\xfb\x61\x4f\x09\x26\xac\x2b\x69\x94\x75\xcf\x31\x52\x07\xc9\xb0\x1b\x42\x8b\x04\x8d\xde\x96\xc1\xd4\x41\x2e\xd6\x6d\x34\x05\x65\x54\x3c\x31\xd3\x66\xc2\xe4\x08\x87\xa6\x3b\x28\x57\x93\xb8\x67\x10\x19\x3a\x92\xf4\xb7\x69\xa1\x8a\x66\x60\x3d\x9d\xbc\xd0\xee\xf9\xb9\xaf\x71\xac\xc8\x9d\x89\x46\x2d\x0d\xbe\xa8\x87\xd5\x67\xf6\x60\x3b\x0d\x57\x2c\x43\x97\xb0\x48\x28\xa5\xc4\x8f\x1b\x80\x5b\x07\xda\x81\x28\xb1\xbe\x64\xd1\xc9\x15\xdc\xb2\x58\xf0\xa4\x9b\x99\x74\xc5\x82\x6a\xb0\x43\xaf\xd1\x2b\xf1\x75\x0d\xbc\xba\x6f\xbe\x3d\xf4\x63\xbf\x6f\x2d\x5f\x93\x5b\xea\x06\x8d\x39\x46\xa2\x35\xaa\x14\x30\x07\xf1\x58\xb1\x61\x5f\xf1\x74\xea\xc7\xc5\xc2\x03\xd3\xdb\x53\x3e\x87\x45\xe6\x96\x53\x29\xb0\x00\x85\xd2\xdb\x3e\x71\x4d\x9d\x37\x11\x37\x59\x1e\x6f\xc7\xfd\xf3\x08\xa1\xab\xb0\x77\x67\x08\x30\x00\x50\x02\x60\xbd\x94\x7e\xf8\x8d\xbf\x37\x71\xfd\x4e\x4f\xfd\x7c\x47\xf1\x34\x3d\x50\x66\x75\xa6\xe3\x18\xde\xbf\xfa\x73\x1d\x32\x41\x16\xc0\xeb\x14\xf4\x1e\x9b\xb4\x2c\x09\x6d\x5d\xce\x83\x00\x3a\x79\xe4\xc7\x79\x18\x28\xcd\x52\x8e\xf8\x91\xa7\xbd\xcf\x91\x8b\x34\xa1\xba\xac\x43\xe4\x07\xcb\xc2\x1e\xd3\xd4\x49\xf0\x98\xc5\xe4\x2e\xe5\xb1\xb0\x0a\x70\xb9\x85\x46\x5b\x4a\x2f\xce\x1d\x1d\x85\x51\x94\xcd\x50\x84\xc7\xf8\x9d\xb1\x6a\xfe\x42\xf0\x26\xff\x50\x8e\x1e\x72\x70\x37\xa8\xc0\x84\xb1\x9f\xea\x38\x3f\x74\xd5\x84\x29\x62\x5b\xd1\xd8\x6f\x3d\xfd\x34\x1f\x3a\x3f\xf0\x5c\x29\xad\x8e\x5c\x12\x67\x7c\xa9\xa0\x3e\x00\xce\x52\xc1\x16\xb0\x5b\x08\x9c\x4a\xab\xe3\x8a\xba\xe7\xb5\x6a\x15\x75\x15\x59\x62\x8d\x20\x29\x52\xbf\x8f\x4a\x0d\xad\x0d\xec\xbb\x63\x60\x02\xe4\x1b\x95\x4e\x08\x92\x55\x50\x86\x63\x2c\xa7\x49\xcc\x8a\xaf\x27\x0d\x1d\x80\x07\xdb\x41\x94\x64\xa2\x80\x21\x2d\x1f\x15\x1c\xb2\x25\xd3\x2c\xbd\x5c\xaa\x51\x22\xbc\xb8\xbb\xc5\xcb\x55\xee\xaf\xdb\x11\x27\x35\x9b\xc5\x6d\x85\x0d\xfb\xe5\x5f\xfe\x0a\x8c\x0a\x22\xd4\xef\x8c\x5d\xde\xe9\x84\x42\xcd\x7e\x5a\x4b\xc9\xec\xdb\xd7\x4e\x43\xf0\xfd\xc0\x7b\xe4\x06\x20\xbe\x69\xea\x7b\xf0\xd3\x21\x1b\x13\x1c\x27\x2c\x2a\xcc\x37\x56\x7e\x21\x2b\xba\x79\x18\xb1\x27\xcf\x49\xda\xb1\x0a\x73\xef\xe9\xbc\xf0\x6c\xe7\x71\x0d\x8d\x0a\xb3\x3c\x5d\x9b\x52\xcd\xff\x4a\x04\xfb\xff\x52\xa8\xfc\xfb\xe7\x9b\xea\xb4\x7e\xef\x95\x22\xcb\x6d\x39\xce\x62\x18\x1c\x9e\xa1\x66\xc6\x64\xa1\xbd\xba\x02\x01\x26\x61\x6b\xa1\x9f\x12\x91\x29\x87\xd7\x64\x7f\x61\xda\x51\xb6\xfe\x99\xa2\x6c\xfd\x33\x4f\x15\x7e\x4f\xe9\x74\x5c\x2d\x03\xf7\xf2\xcb\xed\xa1\x8f\x6a\xc5\xc2\x26\xe0\x45\x9b\x1f\x34\x11\x8a\x2e\x71\x48\x65\xd3\xfb\xe8\x4a\xd4\xf9\x72\x16\xb2\x69\xe0\x30\x7d\xa9\x3d\xf2\xd3\x65\x39\xd7\xa4\x03\xa8\xa5\x48\xcc\xb7\xfe\xe2\xd3\x4f\xb7\x93\xa5\x25\x9b\x7f\x81\xe1\xba\xea\xa9\x9a\xc1\xd5\x4a\x97\xc5\x5a\x6e\x80\x63\x83\xb3\x0a\x32\x14\x44\x42\x60\xdd\x92\x0e\x30\x57\x1f\xbd\xaf\xf0\x53\x96\x15\x4a\xc7\xec\x78\x2b\x64\x6b\xbf\x4f\x1b\x02\x8b\xfb\x6c\x2d\x5c\x20\x01\xcf\x20\x37\x69\xc8\x4d\x7e\xcc\xfd\xa2\xc4\x3e\xce\x37\xa6\x66\xfc\xa5\xa5\x30\x82\x24\x24\xbd\x27\xf2\x17\xac\xe8\xc6\x37\x0d\xad\x17\x0b\xed\x2c\x59\x09\x59\x1a\x07\x0f\xf8\x96\x2e\x40\xbf\xa5\xac\x73\xd7\xef\x86\x92\xbf\xb0\x32\xe8\xe5\xe1\x25\xc7\x92\x4b\xb2\x3e\x1d\x45\x3b\x55\x1b\xd5\x23\x1d\x67\x66\xaf\x8e\x35\xa4\x0f\xf3\x00\xf4\x17\x67\xf6\xe1\x33\x1c\x53\x35\xdf\x1d\x13\xb7\x40\xd0\x1e\x29\x90\x15\x89\x1d\xbb\x45\xb2\xe6\xf3\x26\x11\x02\xc3\x96\xe5\x7a\x3c\xa3\x58\x29\xd3\x22\xcb\x42\x3f\x86\x89\x11\x90\x82\xda\x27\x4a\xdf\xe3\xbf\xd4\xd6\xd2\xd7\x49\x7a\x93\x10\x22\xb6\x15\x10\x30\x6c\xbe\x56\x88\xa2\x51\x38\x32\x2c\x14\x0a\x2b\x7f\x19\xe6\x88\x6f\x1a\xcb\x70\x41\x12\x25\xe9\x74\x45\xde\x10\xe7\x04\x42\xe0\xdf\x1f\xab\xea\xba\xa7\xfa\x2e\x7f\xdf\x7b\xc4\x95\x41\x56\x98\xa6\x49\x6a\x6a\xf4\x08\x38\x5b\xee\x54\x24\x52\xd4\x21\x09\x4b\xef\x20\x72\x8c\x91\xe1\x1b\xa5\x56\xb8\x14\x99\x20\x37\xbd\x69\x25\x28\xf6\x3b\xf8\x05\x20\x3a\xbf\xa5\x24\x40\xce\x68\xf8\x5a\x55\x4e\x28\x37\xd1\x4c\x19\xbd\xc0\xd2\x72\x6e\xdf\x82\x98\x2d\xce\x03\x05\x41\xcc\xc6\x4e\x9a\x78\xe0\x9b\xa6\x26\x8f\x59\xdc\x71\x54\x0c\xbb\x45\xa6\x5a\x94\x98\xba\x92\x6f\xac\x67\xee\xaf\xf8\x21\x72\x4d\x36\x83\x6d\xbb\xc1\xea\xca\x0c\xcf\x2f\xb4\x03\x7f\xd8\x4d\x43\xbf\x55\xd9\xc7\xf4\xd5\xa2\x08\xbd\x57\xa1\x3f\xb2\x9c\x94\x22\x14\xbf\xe0\x55\x4f\xb3\xc2\x36\x74\xd9\x1f\x6c\x8f\x92\xd0\x11\x59\xc1\x2f\x3f\xa7\x9d\x74\xdd\xdb\x98\xf9\xc3\xc2\x44\x8a\x9e\xf6\x98\x6a\x08\x3d\xa6\x17\x5e\xe4\xe7\x5c\x34\x16\x72\x22\x45\xf3\x7b\xbe\x16\xf3\xcb\x81\xd1\x33\x51\xee\x53\xc2\x03\x49\x1c\x24\x17\x2c\x91\xad\xf5\xe5\xfe\x50\x6b\x92\xdd\xad\xa5\xbd\x0e\xcf\xb5\xf3\x22\x96\x97\x92\x3d\xa2\x0a\xb8\x47\xac\x1b\xd7\x37\xb1\x49\xfd\x1c\x9a\x9d\x38\xd6\xaf\x8d\x5d\xdb\xd3\x71\x4f\xe9\x60\xd6\xf1\x7d\x8b\x73\xed\xa5\x24\x5d\x32\x21\x53\xd9\xc0\xd4\x80\xc8\x8a\xaf\x15\xbb\xda\xaa\x9f\x9b\x94\xca\xdc\x2d\x27\xf2\xf8\x89\xa7\xc4\x8a\x5c\x5d\xba\x2f\xcc\x84\xb6\x6e\xeb\x02\xc9\x3a\xef\xf9\xe1\xb9\xf9\x76\xe0\x17\xfd\x41\x3e\xe5\xc2\x3b\x0e\xca\xd0\x68\x75\x59\x39\xb1\x3f\xa8\xb5\xf1\x38\x91\xd7\x72\x21\xdb\x08\x59\xc4\xcb\x95\x6e\xc2\xc9\x06\x6e\xd4\x05\x68\xdf\x85\x01\x0a\x39\xd8\xdb\xad\x89\xdb\xe7\xad\x8e\xa3\x5c\x18\x26\xa9\x3f\xe5\xf2\x0c\x5c\x2d\xb1\x62\x0f\xe5\x42\x17\xfa\xd8\x06\x6f\x69\x2d\x29\xd2\x56\xa5\x9e\xec\x1c\xde\xf3\x8e\x75\x26\x89\x63\x13\x20\x48\x75\xf5\xcb\x73\xaa\xf1\xbc\x5e\x25\x79\x7e\xa1\x9d\x27\xa3\x7e\x5a\xfa\x0f\xae\x25\x06\x20\x44\xbe\xfe\xdc\x65\xbb\x6c\x84\x6e\x03\x07\xc7\x35\x7d\x8a\x5c\xab\xd2\xa6\xa6\xf9\x5e\xd8\x53\x05\x3c\x94\xfe\xea\x4f\x55\xef\xc9\x39\x95\xa0\x3c\x4e\xa1\x00\x70\xec\x15\xd8\xf7\x2c\x74\xae\x2d\x63\x69\x39\x30\x92\x3a\xa8\x52\xfe\xef\x9b\x77\x1d\xba\xa5\xab\x0e\xb7\xe7\x24\x45\xa3\x70\x1a\xaf\x28\xcf\x78\x1b\x38\x0f\xf9\x8f\x34\xf6\xec\xaf\x70\x74\x22\x0b\x77\x45\x81\x3a\xbe\x8d\x89\x84\x5d\xba\xeb\x3d\x14\xb6\x47\xa9\x59\xfa\x47\xed\x67\x67\xca\x67\x47\xde\xe7\xbb\x63\xd7\x2e\x74\x1e\x25\x2f\x3c\xe0\xa5\x0a\x6c\xa6\x7c\x58\xbe\xf6\xb6\xae\xd4\x72\xa5\x13\xf7\x7e\xd1\xcd\x82\x34\xec\x1a\xa0\x6f\x84\x4f\x42\x1d\x03\xe8\x5b\x10\x4f\xdd\x95\xd7\xfd\xf8\xb5\x30\x29\xb2\x16\x05\x97\xc2\x57\x44\x3e\x84\x10\x19\x6d\x8d\x9b\xf6\xef\x2f\xdf\x25\x4d\xfa\x3e\xcb\xd5\xaa\x9e\x36\xd5\x10\xb1\xde\xcc\x8c\xb8\x4a\x45\x51\xc7\x74\x78\x51\x79\x6d\x9a\x94\x3c\x19\xe5\x5c\xcc\x41\xb4\x80\xe2\x29\x5f\x7f\xae\x2c\xf3\x2b\xc6\x8f\x4d\x9e\x1b\x45\xdd\xff\x96\x66\xc4\x7b\x4b\x55\xa9\xd6\x92\x22\xee\xd3\x21\x31\x45\x6b\x40\x6b\xf3\xd9\x86\xdd\x72\xde\xb9\x92\x58\x0b\x6f\x08\xd8\xb5\x36\xa5\x54\x64\x37\x94\x02\x2a\x53\xa1\xa2\x1f\xe2\xa6\xa3\xfa\x1d\xf8\x19\x9a\xfa\xb0\x36\x2e\x2b\xf5\xfe\x77\xb4\x69\x39\xab\xb2\x82\xaf\xf8\x41\xd2\xcd\x92\x78\x5a\x61\xb9\xce\x29\xbd\xf0\x75\x55\x8c\x5d\x1f\x3b\xec\x79\x7d\x5f\x1f\x78\xe1\x60\x3b\xcc\x86\x7e\x18\x85\xb4\xaf\x05\x8e\xa5\xb1\x59\x95\xa6\x34\x46\x28\x3c\xe2\xda\x03\xde\xd7\xe7\xe1\x06\x75\x80\xe0\x74\x00\xb5\x1f\x3c\x5b\x76\x86\xe0\xe4\xa0\x4f\x9f\x95\x5f\x71\xf4\xe1\xe0\xd9\xd6\x21\x4c\xa1\x68\xc2\x2a\xf1\x36\x6e\xb0\xe5\x1f\x01\x90\x92\xbf\x59\xc5\x23\xdb\x27\x0e\xd0\x98\x24\x4b\x33\xaa\xe0\x71\x5e\xa9\x08\xb7\x14\xb7\x2a\x23\xf8\xe1\xb2\xbd\x8b\xed\x2b\x72\x3a\x75\x61\xf7\x97\x08\xa5\x14\x06\xc2\xb0\xae\xc8\x8b\x2c\x4e\xec\xa2\xf6\x65\x93\x60\x39\x14\x27\x13\x99\xc8\xab\xb0\x50\x7c\xd3\xa4\x1e\xd5\x4d\xa2\x72\x19\x52\xd6\x0a\x39\xf1\xeb\x9e\xa2\x56\xd8\x18\xab\x64\xf5\x87\xd6\xf3\x5b\x35\x7e\x94\x0f\x42\x93\x4e\xbb\xe2\xe8\x79\xad\x02\x34\x43\x69\x0b\xac\xbf\xb3\xc4\x41\x24\x26\x6f\xeb\xee\xa1\x45\x11\xf7\xcc\xc8\xc4\x3d\x13\x07\xb0\xf8\x9a\x93\x86\xaf\x2b\xa6\x3b\x16\x98\x97\x78\x93\x2e\xab\xa0\x59\x76\x03\xe3\x67\x70\xce\x45\x1d\xb2\xfc\x3b\x51\x9d\x54\x42\xfe\xf1\xc0\x8f\x03\xae\x29\xf3\x69\x70\x56\xf5\x6c\x9e\xf5\x1e\x57\x2a\xd4\x7e\x1c\x5b\x11\x38\x21\x66\x69\x39\x92\x16\x05\xf1\x84\x3e\x07\xa7\xa1\x05\x6f\xaf\x5c\xe9\xb3\x5a\xf7\xfe\xd9\x57\x9e\x85\xe7\x22\x2f\x8c\x8f\xc9\x50\xb8\xec\xc3\x70\x48\xea\x0a\xae\x54\xbe\xa5\xb1\xae\x81\x34\x61\x94\x26\x99\x09\x8a\x9c\xfb\x03\x99\x3e\xcf\x73\xb0\xcd\x6f\x36\xa4\xee\xda\x7e\x1a\x0c\xc2\xdc\x04\x4c\xb6\x21\xfd\x49\xce\x1d\xf9\x50\xd5\xa6\xd0\x55\x98\xed\xa6\x57\xc0\x71\xdb\x42\x6e\x91\x6f\x26\xb4\x3c\x84\xbf\x5c\x95\xf5\x66\x26\x4e\x52\xf6\x24\x59\x5a\x04\x0c\x0c\xcb\xe0\x64\x11\x55\xe6\xf8\x1f\x3c\x85\x79\xdd\xd6\x71\x45\x39\xf4\xed\x22\x8c\xdb\xd3\x71\x45\x47\x3e\x43\x11\x26\xd6\x53\xbd\x87\xe7\x9e\x6b\x67\x83\x64\xc5\xce\x2a\x72\xb1\xa7\x55\x8f\xe6\x69\x95\xb1\x8d\x97\xd7\x66\x14\xdf\xc7\x5b\x4a\x36\xf7\x53\x25\xf4\x79\x89\x9a\x73\x71\x88\xb3\xb6\x87\xa4\xf4\x9e\x70\x00\x8f\x20\x34\x71\x1e\x66\x79\x36\xeb\x12\x96\x0f\xb4\x0a\x0b\xb0\x92\xdc\x0b\x88\x89\xc6\x7e\x63\x50\x29\xaa\x31\xac\x39\x01\x3c\xee\x09\xea\xe9\x90\x1e\xf4\x06\x66\x8b\x28\x89\xfb\x02\x74\x95\xfc\x3f\x8d\x90\x54\x06\x9c\xe4\xd4\x5a\x52\x3c\x41\xee\x0b\xf2\xcb\x9b\x4a\x48\xf9\xb1\x49\xe9\xb1\xc0\x18\x7e\x36\x56\x7a\x47\x3b\x26\x84\x6a\xc5\x5f\x7d\xe6\x55\x16\xaa\x4b\xbf\xb3\xce\x98\x75\x1e\x6d\x7c\xff\x48\xc7\x35\x29\xdf\xa2\x8c\xaa\xd0\x2b\xa8\xd2\xd7\x03\x5a\x0f\x22\x42\x5d\xba\x29\xc0\x4d\x5c\x82\xc5\x83\x55\x9f\xc1\x9a\x83\x87\x34\xdb\x51\x8e\xd4\xcc\x44\x9d\x66\xb7\x14\x1a\x39\xaf\x04\xa6\xa6\x4f\x20\x51\xe1\x4c\x3f\x4d\x4e\xa1\xc4\x58\xce\xe1\xba\xa6\x30\x4d\x67\xe8\xcb\xb0\x6b\xa1\xd6\x82\x34\xf7\x4c\x47\x4d\xea\x59\x5b\x97\xf1\xbb\x59\x92\x76\xa7\xdc\xf7\x9e\x53\xb8\xe1\x33\x63\x87\x92\xbb\xed\x42\xd7\xbe\x1f\xc6\x3b\xe8\xf9\x2d\xd1\xf4\xa2\x60\x08\x79\xcf\x59\xa4\xb7\xf3\xb9\x8f\xb1\x41\xb1\x62\xf8\x0b\xc2\xa2\xf5\xa9\x4d\x9c\x2c\x19\xd2\x2e\x9e\x52\x90\x40\x68\x54\x49\xb9\xb4\x65\x55\x29\xea\xad\x72\x0b\x0b\xed\x34\x01\x34\xc7\x55\x3b\x37\xbc\x0a\xca\xd5\xc5\xc8\xe6\xb5\x91\x1f\x67\x61\x12\xcf\x96\x0f\x0f\xa7\xf4\x0f\xe8\xfb\xb1\x97\x21\x9c\x82\x71\x84\x6c\x14\x56\xc4\x79\xad\xd6\x70\x8a\x60\x0a\x28\xec\x4b\x5d\x56\x4a\xf2\x0d\x8c\xee\xfd\xd4\x98\x78\x90\x14\x99\xa1\x73\x0b\x4b\xfa\x8a\xa2\xe9\xfe\x36\xb6\x91\xee\xf9\x92\x75\xff\x98\x02\x85\x46\x11\x47\x65\x88\xee\xde\xd1\x18\xd4\x77\x54\xf2\xc5\xa4\x7e\xcb\x9d\xfe\x9c\x2e\x10\x99\x17\x77\x4c\x2d\x25\x69\x1f\xc7\x94\x75\x1f\x16\xed\x75\xcd\x8b\xda\xb7\xaf\x3c\x2f\xc3\x80\xc3\x7a\x87\x8f\x29\xbf\x40\x80\x33\x8d\x72\x36\xd9\x16\x1d\x76\x5b\x56\xbc\xd8\x24\x5c\x3a\x8a\x7c\xf4\x31\x08\xee\x83\x7e\x8c\x6f\x54\x1e\xb0\x67\xfc\xc8\xa4\x2d\x05\x4b\x61\x89\x53\xd1\x58\x73\xe7\x61\x16\x24\x29\xfa\x82\x95\x80\x90\x4d\x5e\xcf\x76\x9c\x13\x72\x15\x13\x21\x3c\x40\xb2\x3e\xa3\xb0\x34\x5c\x9c\xd3\xc4\xcc\x5c\xf3\x54\xef\xee\xb5\x46\x2c\x42\x9e\x0c\xfd\x60\x80\x55\x69\x5d\x12\xdb\x02\x7e\x56\x81\x47\x96\x22\xf3\x1a\x24\x3b\x6d\x62\xe8\x84\xa7\x54\x96\x4f\xd8\xa4\xc0\xaa\x1f\xe7\x0f\x97\xab\x52\xbc\x89\xf2\xd9\x69\x73\x2f\xee\xe9\x58\x72\x80\x7f\xf2\xf8\xa4\x74\x51\xad\xce\x75\x19\xda\x20\x7f\x75\x12\x3e\xa6\x1d\x85\xc5\x39\x0b\xfe\x28\x7f\x1b\xa3\x30\x3d\x51\x8a\x06\x6c\xb2\x68\x44\x9e\xfd\x72\xe7\x11\xc5\x18\xc8\xd9\x95\x26\xc2\x58\x77\x6c\xcd\x3f\xf7\xeb\xb4\x18\x11\x8c\x70\x47\x3b\xdf\xa8\xca\x50\x3e\xf0\xe3\x2f\xd2\x50\x01\xf8\x85\x36\x6b\xec\x3d\xee\xe2\x86\x0d\x63\x35\x67\x04\x5c\x00\x77\xe0\x3d\x67\xc1\x9f\xcd\x6c\xcb\x8a\x3e\xe3\x3f\x79\x8e\x06\xf3\x51\x98\x66\xc9\x27\xa9\xf2\xc9\x39\x25\x71\xf5\xc6\x58\xf5\x62\x4b\xf6\xd3\xb2\x0f\x96\x87\x8c\x6d\x9a\x2e\x6d\xbb\x55\x0c\x78\x7e\xc1\xaa\x5c\xd0\x98\x63\x29\xde\xc0\x12\xd6\x20\x72\x1b\xb6\xd8\x34\xd3\xc3\x08\x0b\x60\x80\x4f\xd0\xc9\x02\x8b\x32\x35\x69\x7d\x7d\x5e\x1a\x6e\x15\xc2\x6d\xe4\xa7\xf9\xda\x43\xca\x1c\x5f\xa7\xd9\x14\x74\x6a\x39\x2e\x80\xe4\xcc\xe0\x00\x12\xa6\x08\x7a\x7f\x61\x85\x52\xcd\x07\xd7\x68\x23\x63\x60\xde\xa3\x87\x14\x95\x71\xd5\xae\x70\xad\xa9\xa3\xeb\xd5\x22\xcc\xc1\x52\x21\xb8\x68\x07\x14\xe2\x78\x5c\x28\x55\x1a\x00\xd3\xab\x26\x8a\x28\xe6\xc5\x4f\x7f\xaa\xf2\x7d\x9f\x36\x09\xa9\x13\x0d\xdb\x40\x65\x5a\x4f\x50\x6a\x83\xaf\x55\xf6\x7f\xc9\x7f\x0d\x7b\xcf\xb6\xb9\xd8\xa4\xe5\x86\x5a\x9f\xbf\xf4\xec\x2f\xe2\xcf\xb0\x40\xde\xa0\xa1\xe7\x6b\x55\x10\xec\x86\x84\x32\x10\xae\x44\xe9\x44\x92\x4c\x46\xcb\x32\x53\x9c\x57\xdf\x3d\xfa\xc5\x7f\x3c\x5b\x7e\x9d\x65\x70\xb4\x47\xda\x65\xd5\x35\xc9\x4d\x18\x38\x14\x41\xd9\x6f\xaf\xad\x3d\x68\x75\x14\xff\xf1\x4f\x9a\xb8\x38\xfc\x38\x0f\xf3\xb4\xc8\xa8\x8a\xb2\x49\xd0\xe8\xcd\x33\x63\xe7\xf3\x0d\xc3\x2c\x48\xe2\x5e\xc1\x5d\x85\xf0\x88\x4f\xc3\xe0\x49\xce\x46\x69\xfd\x5c\x54\x6d\x7e\x81\x9f\x0d\x58\xc4\x04\x2b\xe7\x7b\x63\xc5\x34\xe6\x70\x27\x71\x38\x60\x9d\x72\xa9\x64\xba\xfe\xb7\xdf\xda\x8a\xaa\xb4\xa4\x10\x03\xb3\x84\x74\xa8\xad\xf3\x97\x91\xaf\xa4\x47\x76\x2b\x3e\xba\xa8\xf7\x30\x86\x1d\x7e\xdd\xfb\x4a\x08\xef\x1e\x3c\x49\x4b\x5e\x6a\x35\x53\xef\x20\xde\x45\x54\x7c\x12\xe6\x07\x9b\x74\x27\xed\x2c\x1b\xa2\x59\xb1\xcb\xb3\x78\x00\xfe\xb8\x22\x06\x68\xea\x8e\x6b\x07\x91\x1f\x5a\x88\x0b\x62\x0e\xb6\x2b\x7c\xa3\x4e\xdc\xd5\x41\x12\x99\x87\xcb\x31\xb1\xa9\x4f\xe7\x28\x72\xca\xd0\x36\x27\xda\x0a\xf2\x65\x5a\x12\xd8\x8d\xd7\x30\x45\xe2\x70\xd3\x8f\xc2\xb2\xb3\x4c\x2e\x8c\xe4\x75\x52\x02\xd8\x0e\x8b\xc8\xff\xde\x18\x7f\x2c\xfb\xa9\x9f\x2c\x83\x49\x8a\x09\x7d\xb0\x1a\x71\x2a\xc0\x5a\x01\x8f\x79\xa5\xd6\x88\xf6\xf2\xcb\x6d\x3f\x35\x04\x4b\x85\x73\xb6\xae\x9b\x0e\x21\x05\x00\x54\xd5\xd1\x26\xce\xa4\xcc\xac\x98\x14\x81\x37\x6a\x38\x17\x68\xac\xf9\xba\x02\xe7\x0f\x88\x4b\x61\x5a\x89\xf9\xad\xc3\xf4\x62\x84\x50\xbb\x15\x5e\x7b\x1a\x53\xfe\x07\xe5\x05\xbc\x62\x56\x49\x7e\xf1\xf0\x9c\x33\xbf\x8b\xd2\xb8\x0f\x06\x34\x91\xb5\xaf\x90\xb5\x16\x43\xea\xd4\x00\x16\x02\x7d\xbe\x7c\x3d\x51\x68\x42\x4d\xcd\xa0\xc1\x6d\x23\x7f\x0d\xda\xa6\x4a\x42\x79\x86\x60\x0f\xb2\x3c\x68\x0e\xe1\x1d\xdf\xa5\x99\x46\x5b\xf0\x3d\xd7\xe5\x43\x80\x94\x98\xf3\x9c\xc8\xb4\xdd\xf1\x54\x48\xc6\xa0\x6f\x2c\xf1\xba\x20\xc1\xfe\xfd\x82\x4e\x0d\xb4\x33\xf2\x96\x52\x44\x78\xab\x51\xbd\x30\x18\x84\x66\x49\xba\x46\x6c\xdb\x94\xe5\x32\x61\x5c\x08\xf2\xd0\xdf\xa8\x15\x91\x5f\x7e\xb9\x4d\x5d\xff\xe5\xd4\x4d\xb9\x72\xe9\x31\xdd\xba\x77\xb3\x42\x68\xd4\xa8\xdc\x11\x25\x71\xe8\x47\x53\xaa\xef\x66\x5d\x61\xb9\xaf\xaa\xa6\xe0\x6d\x13\x8b\x95\x2b\xb2\x3c\x54\x54\xac\x36\x5d\x63\x3d\x14\xad\xb0\xd9\x03\x49\x23\x8d\xae\x38\xb2\xae\x3c\xf1\x4e\x45\xe4\xca\x2d\xa7\x60\xb0\x96\x26\x71\x4b\x75\x76\x1d\x57\x9d\x5d\xc7\x2b\xd0\xe0\xa0\x48\xfd\x00\x5e\x2d\x3c\x9f\xa3\x9e\x4b\xd6\x6a\xa9\x9a\xb0\x57\x86\xe5\xcc\x75\x68\xd1\x37\xe5\x4c\xf3\x8d\x56\x2e\x36\xf1\x23\xb4\x21\xe0\xbf\x5c\x1b\xbb\xc4\xf1\xc9\x4a\xab\x2d\x06\x5c\x14\x1b\x5d\x47\xf9\x37\xaa\x70\xae\xf2\xa0\x42\x90\xf0\x8e\xe7\x16\x3c\xfb\xb9\xe2\x54\x5b\x4f\xee\x83\xbf\xa9\x5a\x23\xbf\x3f\x56\x0c\x9c\xdb\x26\x2e\xdf\x1c\x24\xc3\x91\x89\x40\xe4\x22\x8e\xea\xdb\x9f\x78\x4a\xfe\xe3\x93\x3a\x02\x6e\x5f\x3b\x30\x71\x96\x58\x1a\x27\xa0\xff\x8e\x61\xc5\xf3\x8d\xc5\x2d\x9a\xe1\x28\x4a\xd6\x08\x4b\x6d\x5b\x1a\x5d\xc9\x7f\x43\x65\xd0\x06\x7e\xdc\x1b\x98\xa8\x07\xd4\xa2\x75\xfa\x1c\xef\xac\xeb\x35\x2a\xba\xaf\x50\x81\xb9\xa5\xc8\x4f\xb7\x03\xbe\xc6\x37\x9d\xcf\x2b\x04\x75\xfd\x78\x19\x46\x46\x69\x8d\x88\x0f\x72\xcf\x53\xdc\xff\x57\x15\x37\xd6\x28\x35\xfd\xd8\x8f\x79\x8d\x08\x28\x9c\x5e\x44\x50\xe1\x96\x06\x38\x8c\x03\x93\xa2\x5a\x29\x3d\x12\x4e\xb4\xf5\x22\xe5\x60\xa4\xb0\x64\x3f\x13\xa4\xe1\x48\x88\xaa\x50\xc5\x39\xa1\xe4\x48\xb4\xd7\x14\x09\x0f\x00\xf6\xc9\xb6\x89\x3b\x7b\xee\xa8\x12\xcd\x07\x95\xbc\xe8\x6b\x61\x8c\xa6\x2f\x1c\xf5\x57\xc8\xb9\xe1\x6b\xef\x29\x85\x4a\x89\xf3\x34\xec\x16\x79\x98\xc4\xd3\x54\x7c\x41\x41\x4b\x53\xed\x41\xfa\x1c\x63\x77\x01\xc3\x85\xf3\xeb\x6e\x13\xf0\xb7\x6b\xcc\x08\x0d\x21\x07\x5c\xc7\xf1\x82\x63\xe0\x96\xec\xe5\xc0\x64\x21\x08\x19\xad\x0b\xf3\xbe\xa2\xbb\x79\xbf\xb1\x2e\x9e\x9a\x5e\x11\x08\x92\x45\x90\x7a\x34\x27\x02\xd5\xb3\x6c\x05\x69\x18\xf7\x6d\x02\x03\xa6\xed\xaa\xea\x84\x04\x7c\x47\x02\x00\x9d\xe9\x89\xfc\xb5\xdd\xa5\x17\x22\x48\x16\xd8\x5a\xc1\x48\x2b\x8c\x37\x8a\xa9\xd8\xc4\x37\xe8\xab\x51\xe3\xfa\x29\xcc\x83\x2d\xa6\x38\x5c\xf9\x15\x1a\x49\xbe\xc6\x2a\x14\x1c\x36\xad\x64\xe4\x2b\x39\xed\xce\xd2\x2d\xc8\x9a\x58\x80\xe7\x82\x95\x3b\x5d\xb7\x1b\x2e\x0b\x7c\xee\xbc\x9a\xb7\x0c\x20\xaa\xea\x88\x1a\x22\x4e\xfd\x9b\x9e\x66\x7f\x0b\x0c\xb5\xda\xb4\x2a\x75\x11\x5d\x0a\xd1\xe3\x12\x27\xf9\x53\xf4\x60\x96\xe8\xdf\x26\x3b\xef\xd0\xb1\x8d\xc7\x62\x65\x0d\x4b\x2b\x6e\x19\x4a\xae\x20\x00\xc3\x06\xf9\xa6\x57\xed\x85\xb6\x6e\x09\x14\x54\x60\xe8\x5a\x13\x95\xc1\xbb\xee\x51\xb7\x0a\x12\x32\x4f\x4e\x68\x54\x90\xf1\x9c\xea\xd4\x12\x30\x00\x5e\xfe\x14\xb3\x25\xb6\x84\x96\x37\x0c\xfc\x05\x0d\x58\x3c\x86\xd6\x7b\x66\x30\xf0\x54\x1b\xd6\x9f\x7b\xe5\x42\xc0\x3f\xec\xec\xb8\x60\xec\x8a\x02\xbe\xe4\x7e\x18\x51\xf1\xae\x7c\x20\x0c\xb8\x84\xa7\x98\xc1\x89\x3e\x93\xb5\xce\x7d\x38\x84\x6d\xd1\xd2\x0b\xc2\x5b\xec\x0e\xb5\xae\xe9\x33\x81\xc8\x81\x6a\x75\x1e\x8f\xf8\x5b\x9e\x2b\x4e\xd4\x21\x08\xe5\x71\x1d\x25\xfd\x3e\x1f\xa5\x98\x2d\x14\x88\x05\x48\xa3\x62\x98\xbf\x6e\x3a\xee\x93\x6e\x4e\xca\x7f\x30\xfc\x52\x91\x50\xe5\x18\x65\x33\xbb\xe5\xb1\x1d\x12\xde\xca\xf6\x45\x6d\x43\x35\x5c\xd2\xf2\xee\xf5\x7f\xee\x97\x7e\x79\xaa\x3c\xe0\x90\x78\x82\x17\xc7\x56\x4d\x03\x75\x8e\x28\xb7\xa0\x9b\x84\x96\x81\x0c\x5f\xf8\x1d\x72\x20\xf8\x5a\xe9\x15\x66\x45\xbf\x6f\xb2\x9c\xfb\xf7\xf0\x13\x7f\x38\x76\x00\xbb\xcb\x15\x7c\xaf\x36\x9c\x81\xc9\x9e\x72\xad\x3f\xbc\x4b\xe1\x6b\x70\x36\x1e\x2b\xf8\x6d\x55\x69\xfa\x0b\xac\x4d\xf8\x60\x27\xb0\xb4\xb1\xb6\x4e\x29\x1e\x08\x14\x26\x01\x93\x9c\x42\xd2\x03\x37\xdb\x3a\x8a\x45\xf5\xbc\xe7\x9a\x90\x2a\x99\x8d\x0b\x94\x00\x97\x34\x1d\xad\x07\xa1\x5e\xa6\xb5\x87\x6d\x72\x92\xb6\x22\xda\x1b\x77\xd0\x98\xc2\xa9\xfd\x73\xac\x78\xe6\xfd\xf6\x5c\xb8\xf9\x27\x30\x50\x78\xc4\xcb\xd8\x31\xd8\x57\x37\x1a\x98\x27\x0e\xb6\xb3\xdc\x0c\x91\x6d\x44\xd8\x7c\xdb\x73\x59\xaa\xdb\x63\x17\x1a\xfa\xbd\x5e\x36\xab\x38\x1b\xcf\xb0\x21\x95\x2d\x52\x7e\x0a\xe7\xcb\x1b\xb0\x39\xdc\x6d\x83\x48\x4f\xaa\x62\xee\x14\x7a\x63\xec\x20\x0b\xa7\x9a\xc0\x9c\xf9\x20\x4d\x56\x63\x8d\x2e\x82\x51\xe6\xeb\xcf\x55\x02\x36\x19\x08\x8f\x2a\x24\x3d\x17\x78\x0b\x0b\xa4\x59\xc9\x65\xde\x53\x5b\xf8\x85\xaf\xcf\xb5\x14\xf2\xeb\xb4\xa7\xe0\x16\xa7\xc7\x95\x63\x36\x33\xaf\x16\x26\xce\x23\xec\x79\x24\xaa\xd1\x33\xc8\xd7\x4d\x6a\xb6\xb9\xf1\xa5\x53\xa1\xa9\xbe\xd9\x14\x21\xc4\xe5\xca\xcf\xa7\x74\x82\xec\x84\x62\x3b\xfc\x2b\xac\x61\x0e\x0e\x6b\xbf\xf9\xd5\xf6\x52\x12\x45\xc9\x2a\x3d\x24\xb3\x38\xd0\x4f\x0a\xa3\x83\x82\x93\xf9\xb9\x61\x45\xca\xc6\xb7\x6f\xc0\xf2\xa4\x66\xa9\xc8\x6c\x1b\x05\x86\x13\x52\x36\x7c\xad\x08\x01\x47\x69\x32\x4c\x58\x60\x89\x15\x10\xb4\x90\x34\x9c\x0a\xac\xed\x7b\x74\xac\x4a\xb1\x96\x36\x96\x68\x26\x28\x90\x6a\x91\xe5\xcc\x8b\x64\xc9\x4f\xac\x4e\xd4\x9d\x06\xe8\xec\xc1\x76\x90\x86\x79\x18\x90\x58\xac\xaa\xa9\xbd\x39\x56\xf1\xfe\x9b\x0a\x31\x9d\x26\x59\x16\xc6\x21\x16\x04\x2c\xd9\x3d\xaa\xfc\xf1\x75\x13\x27\x61\x9f\x88\x30\xb2\x9c\xcc\xb3\xa0\x37\x94\x00\xd5\x3d\x9c\x5a\x52\x31\x56\xa1\x46\x9e\x50\x9d\x10\x89\x80\x1b\x63\x95\xa7\xbd\x81\x29\x86\xff\xf1\x43\xda\xea\x12\x10\x62\x55\x48\x4c\xdd\xb2\x5a\xb6\xbb\x91\xca\x92\xec\xf4\xd6\x55\xf1\x4c\x7b\xd5\x8f\x96\x65\x18\x54\xb3\x89\xf3\x92\xdc\xba\x78\xb5\xf0\x97\xa1\xf3\x83\x53\xe5\x24\x76\x34\xdf\xa8\xcd\xf3\x2b\x0b\x07\x67\x68\xf9\x60\x03\x30\x81\x13\xa6\x97\x3b\x1f\x30\xbf\x7b\x3b\xba\xd7\x83\x5e\x8e\x72\x9f\x7f\x6b\xaf\x8a\x6b\xcc\x8a\x49\xd7\xf2\x41\x18\xf7\x77\x3a\xd3\x7e\x5a\x09\xf5\x4d\x4f\xc8\x48\xa3\x36\xdf\xea\xa8\xaa\xdf\x1f\x90\x91\x46\xf9\x7b\x63\xac\x00\x92\xef\x7a\x0a\xbf\x0f\x7e\x0e\xb8\x19\x0f\x6a\x28\xf7\xc5\xb9\xf6\x8a\x8f\x44\x1f\xef\x80\xe3\x9e\x6b\xa6\x3e\x6e\x7b\xc6\x8a\x67\xb3\x67\xbb\xd4\xcd\x82\x7e\x56\xd8\xdd\x0b\x8a\x37\x69\x53\xf3\xd7\x5d\xaa\xb8\x60\xe9\x1a\xf4\xe0\x90\x52\x83\xc7\xc0\xd7\x9e\xcb\x6f\x30\x0f\x6e\x36\x55\xae\x6f\xa4\x37\x4e\x8c\x15\x07\xd8\x1d\xaf\x02\x21\x51\xc2\x30\x45\x77\x18\xe6\x36\x44\xc7\xa3\x81\xa2\x95\xaf\x1b\xb9\x88\x48\x08\x50\x25\xca\x2e\xb3\xed\xe4\x3b\x2d\x31\x98\x26\xdd\xc8\x0c\xb3\x87\x9d\xe2\xcb\x5f\xe2\xe8\x14\x8e\x55\xd5\x82\xd3\xa2\x38\x87\xff\x4a\xeb\x52\xd1\x9c\x8a\x5c\xb5\x26\x00\x82\xe7\x29\x6c\x40\x4a\x51\xfb\x0c\xaa\x15\xc8\xe2\x5c\x69\x4a\x61\x67\x79\x1a\x2e\x19\x4d\xb4\x0c\xa3\xc9\xd7\xb5\x4c\x4a\x19\x11\xfb\xb1\xdf\x53\xbc\x7d\x82\x81\x52\x34\xa4\xeb\x4d\x12\x27\x2b\x61\x8f\x65\xfd\xa4\x4c\xe8\x12\x2e\xef\x28\x83\x35\x34\x43\xe1\x41\xb0\x1e\x87\xd5\xbd\x79\xbb\xa1\x43\x77\xbe\x1d\x0e\x47\xa9\xc9\x32\x86\x84\xc0\xef\xdd\x8e\xad\xcd\x37\x13\xd7\xb2\x54\xc4\x3d\x93\xee\x76\x65\xc0\xfb\x1a\x21\x74\x1b\x7e\x21\xaa\x6e\x8f\x77\x14\x32\x1f\xd3\x82\xc3\xfa\x2a\xdc\x05\x5b\x2e\x51\xa4\x7c\x34\x61\x58\x7c\x0f\x4f\x5c\x1d\x1c\xc2\x04\x4c\x94\x84\xdd\x85\xdf\x38\xa7\x91\x1c\xef\x90\xd1\x42\x5c\x7f\xbc\x31\x0f\x96\x0f\xcc\x92\x44\xcf\x2c\xf5\xa7\x05\x6e\x6e\x35\x9d\x3e\xfd\x24\xe9\xad\x19\x3f\xd5\x80\xd8\x8f\x34\xbf\xd3\x47\x2a\x2f\xec\xa7\xc6\xcf\x76\xb8\x96\xfe\x4f\xc8\xaf\xc2\x06\x3a\x43\x13\xc1\xd7\x63\x77\x3a\x32\xf7\xb9\x08\xd7\xa0\xe1\x45\x71\x08\x75\x4b\xef\x38\x89\xa7\x1c\xeb\xd7\x83\x8a\x7a\x5e\xcb\x0a\x30\x6a\x48\x12\x01\x04\x4d\x96\xb7\x74\x67\x02\x7d\x4e\x86\xba\xa9\x3d\x36\x8c\xc3\x61\x31\xa4\x75\x00\xe7\x15\x51\x12\x5f\x2b\x02\xe8\xa5\x22\xee\xf9\x43\x13\xe7\x4c\xb8\x00\x63\x7c\x01\xc6\x98\x6f\x9a\x20\x41\x79\x58\xe9\x06\x87\xb9\x42\x68\xc1\xd7\x35\x27\xed\xd0\x0b\xed\xa5\xd4\x98\xd7\x8d\x4a\xbb\xfd\x91\x4a\xbb\xfd\x91\xad\xa9\x06\x7e\x66\xd8\x85\xd1\xdd\x51\x48\x3b\x70\x0e\x42\xa8\x95\x74\x40\x2b\xf4\xea\xb4\x5e\x51\xa0\x3b\x0d\xb6\x3a\xbe\xa9\x60\x3a\x7e\xe9\x17\xd0\xf9\x66\x7b\xa1\x95\x84\xe2\x13\xda\x11\x59\x0a\x73\xbf\xcb\x9e\x9b\x82\x71\x5b\xfe\x28\xd5\x8b\x9b\x1a\xa2\x9b\xf2\xe3\xc0\x68\xef\x17\xa8\x16\xb8\x28\xcc\x4a\x6d\x3b\x8b\x2d\xba\x18\xc5\x25\xd4\xaf\x6e\x61\x02\xe0\xc8\x5f\x53\x1d\xa3\x37\xab\x24\xc3\x21\x70\x05\xd2\x99\xa6\x0b\x3d\x0e\x78\x2d\xfa\xe1\x53\xb6\xf5\xf3\xdc\x97\x3a\x6e\x6d\x3f\x85\x60\x44\xc0\x7b\x3a\x57\x18\x67\x45\x94\x4b\x40\xc7\xba\xd8\x15\x8d\x6c\xf7\xc7\xbd\xd0\xef\xc7\x89\x0c\xff\x82\x25\x05\xa5\x3d\x21\x9c\xa0\x9f\xd7\xfd\x18\x24\x71\x90\xa4\x68\x76\xc6\x1a\x65\x78\x1c\xdf\xa8\xb4\xc5\xc0\xf8\x3d\x3f\x18\x98\x0c\xce\x43\x25\x20\x42\xae\x18\x2c\x13\x9c\x38\xe5\xc3\x88\x5f\x8e\x82\x2b\x79\xd1\xa6\x1e\x55\x2a\x49\x98\xb4\x4a\xc6\x7a\xc3\xab\x08\x28\x6d\x2d\xba\x3c\xd3\x8e\xc2\x65\x43\xca\x03\x80\x6a\x1c\xd1\x25\x3c\xec\x6b\x38\xa7\x37\x14\xa8\x6d\x47\xc7\x25\x16\xb1\x0a\x04\xea\xe3\x82\xa8\xa5\x30\x1a\xee\xa0\xd1\x44\xd9\x1d\x1c\xfb\xa8\x77\x7e\x4b\x37\xd4\xdf\x60\xd7\x8e\xd9\xe1\xb1\xc2\x70\x78\x81\x11\x45\x42\xd0\x3d\xca\xfe\x17\x59\xe1\x47\xc4\x36\x8f\x62\x30\x97\xe2\x10\xcb\x5d\x50\x02\xdb\xec\xeb\xf1\x3f\xa0\xaa\x25\x42\x2f\xb4\x74\x44\x8a\xd3\xb5\xc1\x9d\xa0\x37\x15\x26\xef\xbd\x8a\xeb\x32\x32\x29\x34\x65\x14\x2b\xbf\xaa\x80\xdf\x1c\x3b\xac\xdd\x45\xfc\x14\xff\x43\x53\x1f\x64\x18\x13\x29\x77\x81\x72\x44\x15\x4b\x62\x51\x4b\x56\xeb\xff\xa8\x42\x84\x2e\xa5\xfe\xd0\x60\x09\xb1\x84\x06\x1d\x3a\x56\x05\xcc\xf9\xe0\x90\xff\xc1\xe9\x77\x46\x77\xa7\xfe\x8e\x4d\x66\x96\x81\x4d\xdf\x48\x62\x12\xd8\xe1\x75\x4d\x39\xb5\x5e\xf3\x20\x08\xbf\x9e\x64\x23\x13\xc8\x39\x06\x4b\x77\x51\x89\x40\x5f\x6c\x4c\x82\xb2\xea\x5c\xab\xa6\x34\xc7\xd7\xb5\xa0\xee\xe9\xa7\xdb\x71\x62\x1b\x00\x2d\x6b\xb8\x8b\x2a\x6f\x2b\xf2\xd3\x55\x3f\x4d\xc3\x24\x45\x4f\x2b\xde\xf3\xee\xd8\xb5\xa9\xfe\x90\x22\x1a\x56\x19\x52\x4c\x40\x08\x6f\x19\xb4\x6b\x45\x38\x55\x61\xca\x89\x20\x65\x83\x30\xcd\x19\x9c\xcc\x39\x08\x5d\xe5\xfe\x13\xcb\x0d\x51\xc4\x23\x93\x2e\x25\x8e\xae\x40\xd8\xcf\x5b\x96\x41\xfa\xb8\xf7\xa4\x54\x1d\xfc\x15\x93\xf5\xd2\x64\x34\xb2\x59\x5f\xec\xad\x1d\x13\x07\xa3\x9b\xed\x28\x32\xec\x37\x6a\x07\xe7\xa1\x17\xa8\x8d\xc1\x8f\x22\x32\xf5\x02\x3e\x75\x99\xa9\xf3\x4d\x41\xfa\xb0\xf4\xb6\xa9\xbe\x00\x5c\x00\x83\x4b\x00\xcf\x38\xa2\x40\x7c\xe7\x95\xd8\x3e\x79\x5f\xd1\x9a\x64\xb3\x70\xb2\xa1\xc4\xcc\xd7\x95\xa3\x2a\x0b\x06\x8a\x29\xf1\xc7\xba\x66\xfe\x63\xcd\x5c\x5b\xa4\x2b\xe1\x8a\xe1\x82\x0a\x9a\xbd\x7f\x03\x21\x24\xdf\x34\xae\x28\xbf\x9b\x14\x71\x2f\xd3\xc7\xe6\x45\xa5\x30\x7b\x51\x29\xad\x8e\xfc\x48\x4e\x66\x1b\xa1\xba\xd0\xf3\x9b\x3a\xd7\x79\x77\xec\x62\xe3\xae\x1f\x2f\x9b\x54\xba\xdb\x61\xb3\xfe\xa3\xa7\xba\xef\xd7\x29\x1a\xaf\x30\xd9\xf2\x5f\x35\x72\x31\xa7\xa6\xef\xa7\x1c\x8f\xa2\x6a\xf5\xd7\x9e\x6b\x34\xaf\x27\x32\x0f\xcf\x91\xcf\x98\x9a\xee\xda\x54\xa5\x5e\x50\x7e\x88\xa5\xad\x15\xfb\x7f\x9d\x74\xb5\x8c\x11\x56\x0d\xf7\xc3\xe2\xd8\xdf\xa6\xf2\xce\xdb\x26\x4a\xe4\xab\x17\x66\x79\xd2\x52\x20\xcf\xa3\x6c\x9d\xf9\x4e\x0d\xe7\x92\x9f\xa1\x3b\x0c\x56\xf3\xdb\x8a\xb7\xeb\x4d\xb2\xa0\xd8\x75\x1f\xd5\xe2\xcd\x7d\xfb\xda\x99\x89\x39\xe9\x2f\x06\xc7\x61\x44\xb9\xec\x8f\x4f\xdf\xad\x45\x3c\xcf\x2f\xb4\xb3\x57\x0b\x3f\xd5\x5d\x55\x68\xa0\xe5\xeb\x89\x5e\x7c\xc9\xd0\x3c\xd5\xb2\xea\xf8\x27\xb1\x59\xf1\xd5\x3b\x80\x64\x02\x34\xe1\x3a\xc2\x37\xa9\x65\xab\x13\xf9\x04\xd9\x56\x24\x1f\xbf\xc7\x83\x01\xf3\xfc\xef\xc8\xaf\xc6\xe2\xfc\xb7\xb4\xe6\x58\xf3\x6c\x42\x8b\x03\x8c\x3f\x8f\x52\xba\x7f\xf3\xa1\x4e\xeb\xeb\xc2\x51\xf5\x19\x92\x86\x28\x14\x9c\x51\x2d\x4c\xef\x52\x84\x21\x2d\x6e\x8a\x31\x62\x56\xc9\x0d\x31\xf3\x0e\xa2\x98\xeb\x38\x2d\x91\x18\xb8\xab\x09\x7e\xbe\x47\x88\x37\xb8\x20\x33\x1d\x95\xb9\xf7\x53\xea\x87\xc4\x16\x67\xfe\x53\x1d\xa9\xe2\x4d\xc1\x3b\x2c\xac\x68\x2e\xf2\x22\x7c\xca\x94\x6b\xac\xe6\x71\x93\x1c\x6a\x4b\x49\xea\x6c\x3d\x35\x0e\xbd\xd0\xee\x85\x99\x9f\x0e\xa5\x7e\x8b\x78\xe7\x8f\xc7\x2a\xa3\xf6\xc7\x8e\x74\x36\x49\x72\x45\xaf\x79\x59\x49\x17\x5c\x56\x65\x58\x6a\xf5\x17\x4b\x04\x4f\x0d\xce\x30\x5f\xab\x86\xe0\x60\x10\x8e\x32\x62\x63\xb5\xd5\x1e\x97\xa7\x39\xa7\x60\xb2\xec\x32\x49\x05\xd0\x61\x14\x9f\x2e\x8d\xeb\xfc\x21\x27\x07\xf2\xbc\x93\x03\xd9\xea\x58\xfd\x6c\x3b\x1f\xf8\xf0\x3d\x45\xdf\xba\xfc\x73\xd1\xbd\xde\x9a\xb3\xdb\xbf\x7f\xb1\x3d\xa2\x6e\x5b\x3f\x8a\xd6\x5a\x55\x87\x60\x71\xce\x3a\x15\xaa\x3d\x37\xec\xf5\x22\x33\xf4\xe3\x29\x57\x0b\xbf\x09\xf3\x8d\x8c\xc4\x11\x9a\x4e\x91\x89\xdf\x65\xf7\x6d\xec\x4f\xa9\xd2\x0d\xdc\x14\xee\xdc\x52\x22\x50\xff\x69\xfc\x88\x3b\xf5\x4c\x3e\x4b\x7f\xc6\x45\x42\xc5\xd7\x7f\x95\xde\x0a\x1f\xb9\x8f\xbc\x85\x45\x80\x2e\x4a\xbe\x6d\xb6\xa3\x58\xe1\x3c\xd7\x79\xf1\x46\x63\x96\x7e\xd5\x64\x2c\x28\x2f\xdd\x3b\x0e\x89\x88\x65\x29\xed\x08\x0d\x7d\x75\xe6\xb5\x41\x18\xf9\xa9\xef\xa2\x3b\x8b\xe0\xb4\xc5\x96\xb3\x2a\xf1\xf9\x4a\xd2\x8d\x4c\xc6\x27\x3a\x36\x1b\x83\x6f\xf8\x46\xc1\x29\x92\xa5\xa5\x30\x30\x69\x36\x53\xbe\xb2\xad\x91\x58\x6c\xf1\x9b\x5a\x3f\x17\x5d\xe9\x88\x88\xff\xb5\xa7\x54\x52\x4e\x39\xac\x01\x09\xbb\xee\x2e\xbf\x00\x29\x3b\x88\x03\x23\x8a\xdb\x8e\x8c\x04\xe5\xa1\x2e\xed\x9d\x28\x21\xe6\xed\x40\xd0\x22\x52\xba\xa6\xa9\x9c\x2f\x38\x31\xd7\x5f\xff\x7b\x1d\x1d\xa8\x8d\x5d\xa9\xfd\x11\xc2\xf2\x52\xe2\xe2\x7f\xf9\x3b\x10\x76\xd1\x29\x39\xdb\x72\x50\x2e\x40\x69\x50\x6b\x70\x5e\xa1\xbd\x14\x84\x65\x60\x66\x73\x6c\x57\x55\x25\x99\x84\xca\x04\x38\x71\xcd\x76\x0a\x64\x83\x90\x40\x13\x8e\x13\x09\xb9\x5c\xbe\x56\x09\x37\xfa\x05\x4a\x05\xfe\xea\x41\xd7\x64\x57\x4e\x13\x07\x93\x18\x55\x71\x4f\xb6\x3e\x23\xd1\xbd\x24\xd1\xda\x70\x14\x06\x12\x11\xe1\xac\x79\x47\xd3\x86\xbc\xa3\x92\xba\xbf\x3a\xff\x2b\x84\xfc\xb0\x9a\x26\xe5\x9f\x09\x09\x70\xc5\xa3\x09\x7d\x04\xc8\xa2\xa5\x50\xce\x21\x12\x46\x67\xc6\x0e\xb9\xfa\xdb\xaa\xa1\xea\x2a\xc1\x4a\xad\x60\xb8\x96\x6e\x78\x5e\x1c\xcd\x13\xb5\xa8\x6e\xdf\x7c\x69\x32\xbb\x45\x6a\x79\xba\x2c\xa4\x46\x45\x89\x0d\x30\xc2\xd4\x50\x98\xd9\x52\x24\xe7\x4c\x0f\xc2\x37\x2a\x50\xcb\x92\xa1\x79\x9c\xd6\x94\x14\x17\xaa\xc7\x57\xf9\xa2\x92\x86\x76\x62\x17\xc7\x75\x26\x96\xa9\x9c\x24\xe5\x52\xee\x7c\x0b\x5b\x10\x62\xe8\x7f\xf1\xc5\x8e\xc3\x57\xde\xa8\x9c\x4e\xae\xdf\xe9\x49\xca\xb7\x61\x41\x4e\x53\x39\x1d\xf3\xdb\x9a\x28\xc2\xf8\xd3\x48\x89\xa2\x7c\xc0\x0c\x4f\x38\x79\x39\x32\x40\xf0\xb8\x39\x7e\x98\x07\x64\x99\xa9\xc8\x78\xad\x28\xc9\xa8\xf3\x4d\xe2\x4c\xcb\x06\xa9\x4b\xb8\xda\xbb\x14\x47\xc3\xae\x89\x2a\xf2\x14\x69\x56\x98\x4c\x71\xf3\xfc\x9f\x34\xaf\x7c\x6d\xe1\x3f\x83\xb5\x51\x12\xa4\x61\xc6\x0c\x16\x02\x71\xb2\xe9\x8c\x57\xde\xf5\x1c\xac\xf5\xcf\x75\x5f\xf1\xaa\x9f\xf6\xb8\x83\x57\xd8\x19\x2a\x88\xda\x27\xb7\x2a\x71\x97\xe6\x73\x37\xfd\x89\x15\x6e\x2a\xa7\x55\x78\xc4\xca\xa1\x65\x2d\x1d\xaf\xce\xdb\x0b\xa7\xe8\x3e\x56\xbd\xd5\x30\x39\x2c\xa1\xfd\xff\x8d\x41\x97\xbd\x51\x3e\x32\x5e\x05\x45\x54\x84\x34\xbb\x26\x8a\xca\xf3\x06\x12\xf7\xc8\x3c\xfc\xd4\x73\xda\x78\x57\x1d\x34\xca\xc4\x61\x92\x0a\x42\x0d\x69\xd6\xcb\xaa\x5f\xf2\xb2\xda\x9d\x49\x18\xcf\xd2\x53\x0b\xa4\x55\x81\x9f\x7e\x4c\x3b\x10\xa5\xdf\xd9\x4e\x15\xc2\xe2\xa4\xfe\xcf\x28\xe6\x4d\xa8\x1c\x09\x45\xf4\x13\x36\xdd\x54\xc4\xb9\x49\x47\x7e\x2a\x81\x2d\xb7\x33\x29\xb4\xf7\x39\x6b\xc0\xd3\xa4\x5b\x64\xf9\x0e\x97\xf8\x62\x1d\x3e\xd1\x36\xa5\x3d\x81\xb8\x6a\x32\x76\x34\x55\x00\xcd\xe1\x2d\x40\x4e\x0b\x23\xf9\x85\xce\x5e\xdd\x87\x38\x4a\x62\x16\xec\x7a\xce\xa6\x32\x54\x5a\xc3\xd3\x7f\xdc\x35\x94\x9d\x05\x6a\x0a\xe0\xba\xf7\x68\xba\xf9\xda\xf5\x5d\x8e\x8c\xbf\x1c\xc6\xfd\x19\xe5\x27\x9c\x18\x2b\x92\x84\x9b\x8a\x89\x77\x67\x47\x9d\x99\x63\x45\x9a\xf4\x83\xb1\x53\x7b\x09\x63\x64\x23\x4a\xf3\x06\xbf\xea\x38\x5e\x5c\x89\x2e\x1c\xb0\xa5\x9c\x96\xe5\x5e\x3f\xa2\x8a\xa0\x53\x9d\x06\x00\x7a\x9e\x26\x05\xb9\x76\x08\x88\xb1\x56\x8f\x28\x3e\x32\xf4\xf8\x8b\x60\x87\x80\xc6\x4d\x14\x19\xae\xa4\x73\xeb\x1e\x9e\x5c\xfa\xf8\x1a\x0a\x99\xc3\x30\xee\x95\x4e\xc0\x54\x4b\x71\x9d\xb9\xa4\x16\x4e\x4f\xc4\x85\x1f\x2a\x04\xbc\x89\x4c\x90\xa7\x49\x1c\x06\xb3\xf4\x73\x56\x6c\xc3\x0a\x13\x7f\xa6\xa1\xf8\x5c\x25\x40\xb0\x79\x0e\x81\xc4\xe6\xa4\xd2\x6a\xa9\x50\x50\xd7\x55\x3e\x3f\xcb\xfd\xb4\xaa\x2c\xcc\xe4\x32\x7c\xe3\x3d\xa9\xd5\x8a\x38\xa7\x94\xcd\xd0\x2c\x48\x76\xcc\x05\xe0\xad\x8e\x2a\x28\x7d\x00\xf7\x8f\xff\x8a\x1e\x1d\xc5\xe1\x99\xc9\xa3\x76\x8a\xa3\xdc\x64\x88\xb6\x80\x0a\xe2\xce\x74\xbe\x19\x57\xd9\x28\x96\x9f\xa4\xaf\xc7\x68\x1d\x83\x3d\xb6\xd8\xb2\x17\x45\x0a\xc1\xbb\x4f\xcb\x13\x4e\x1d\x1a\x5e\xf1\xbb\x77\xf0\x40\xc8\x23\x70\x73\x8e\x75\x67\xad\x1f\xbc\x83\xb4\x1d\x70\xb2\x7e\x48\x40\x27\xde\x66\xf4\x9e\xc2\x5b\xde\xfa\xda\x8b\x56\xcf\x58\x61\x90\xfe\x84\x9a\x2e\x25\xcf\x43\x26\x05\x9f\x9e\x9a\x28\xba\xfb\x77\xc9\xf6\x89\x3e\x88\xce\xe7\x5f\xc6\x3c\xd9\x7e\x96\x72\x98\x61\x1a\x36\x95\x84\x5c\xcf\x44\xa2\xf0\xff\x9c\x25\x63\x71\x29\xe2\x4f\xbc\x2f\xa9\xbc\x7b\x45\xf0\x78\x87\xee\x00\x04\x80\x51\x44\x70\x35\x61\x4d\x39\x7e\xfc\xff\x31\xca\x42\x05\xad\x78\x87\xce\xda\xaa\x44\xb2\x6a\x7a\x3b\xca\x8f\x08\xb8\x8d\xde\x5b\x13\x48\x60\x61\x5e\xc3\xcb\x61\x68\x19\x8a\x07\x41\x89\xc7\xc9\x1a\xc0\xde\x5e\xd4\x79\xde\x24\x89\xa6\x2a\xd8\x52\xfa\x90\xfa\xea\xcd\x3b\xaa\xef\x30\xec\x19\x3f\x42\xed\xa2\x22\xe3\x2e\x27\x8e\x42\x8f\x45\x7e\xb0\xcc\x99\x72\x3c\xcf\x49\xb2\x9c\xf0\x3f\x1e\x78\xaa\x75\xfd\xa4\x3a\x42\xaf\x8c\x2b\xec\xff\x5b\x03\xad\xc5\xb9\xb6\xc9\x72\xbf\x1b\x85\xd4\x84\xa2\x90\xc6\x38\x1e\x64\x55\xcb\xc0\xf5\x42\x16\xb9\xe6\x7e\x1c\xa5\x14\x5b\x77\x1e\x9e\x69\xc7\xa6\x3c\xb1\xbf\x3e\x6f\x4b\x6c\xaa\xdf\xf0\x8c\xe7\x24\x72\x23\xd3\x0f\xb3\x88\x78\x4f\x67\x5d\x3d\x0c\xfa\xf7\x96\x4d\x41\xad\xfe\x8f\xe9\x77\x71\xcc\x1c\xc1\xa2\xb5\x4c\x55\x2e\x87\xf5\xad\xb1\x52\xfb\x3b\xa5\x88\xc9\xfd\xa1\x89\x7b\xa5\x3b\x3d\x53\x3e\x1b\x3c\xa7\x63\x1e\xe6\x86\x7e\x05\x0b\xf8\x07\x0a\xfb\x7b\x15\x2b\x01\xc7\xc2\xd5\x86\x82\xc3\x41\x70\xd0\x49\xa0\xb5\x49\xec\x9c\x9b\x53\x9d\xad\x60\xa5\x85\x85\x03\x10\x26\x0a\x92\xe1\xa8\xc8\x59\x51\xaf\x91\xce\x70\xb7\x65\x66\x28\xf7\xce\x6c\x45\x78\x43\x49\x45\xac\x7b\xee\xb8\x87\xa5\x96\xfe\xf1\x96\x65\xb0\x9e\x02\x5d\x32\x57\x68\xc7\xce\x9f\xbb\x5d\x6b\x1b\x3b\x3c\xb7\x50\xbe\xca\x8c\x6b\x17\xb9\x49\x34\x36\x38\xa2\xa7\x5d\x23\x24\xc3\x81\x25\xc1\x5d\x6e\x27\x98\xee\x6d\x93\x3d\x4a\xb5\x28\xf6\xe3\xd7\x99\x62\x8b\xfb\x5e\x94\x06\xc7\xf1\x4a\x5c\x1d\x3c\xe4\x72\xaf\xb7\x34\xa1\xd4\xbb\x5a\x7f\x80\x21\xee\x56\x79\xc9\xca\x59\x22\x77\xce\x79\x21\x6c\x69\x9c\xae\x97\x34\xde\xe8\x3f\xd0\xd8\x6d\x5e\xb2\xa7\x76\x6c\x56\x83\x64\x68\x5b\x50\x45\xb6\x46\xd1\x5c\xd7\x13\x14\x52\xed\x1a\x25\x51\x18\x18\x74\xbf\x62\x27\x22\xea\x83\x29\x3f\x4e\x46\x1a\x89\x33\x86\x6b\x09\xcd\xe0\x17\x14\xe7\x6f\xbc\x14\xf6\x8b\x94\x56\xff\x94\xcb\xd5\x4e\x75\x5c\x93\xfd\xba\x96\x53\xb9\xad\xb2\xb1\xac\x9c\x30\xab\xbc\xe2\xb1\x4b\xfe\xb1\xb8\x8f\xae\x5e\x59\xd7\xd9\x91\xec\x5c\xd5\x94\xb4\xb7\x2a\x1d\xd7\x0f\x54\x4f\x64\xaf\x88\x45\x09\x0e\xc3\x0d\x4d\x53\xbe\x56\x9a\x40\x7e\x14\x99\x3e\xbd\x4d\x06\x57\x00\x40\x74\x6e\xff\x45\xf9\xeb\x03\x44\x55\x42\x46\xaf\x9d\x7a\x07\xad\x7c\x9b\x0c\x1c\x7f\x00\xfb\x8f\xbf\xaa\x89\xea\x59\xb1\x1c\x56\xfa\xd1\xf8\xa6\x8a\x0c\x5f\x01\x49\x96\x90\x17\xbb\xc2\x2b\xa3\x92\x70\x9c\xbd\xd6\x40\x7d\xf6\x5c\x1b\x19\x92\xf2\x9c\x63\xf3\x8f\x43\x5a\xce\x82\x4a\x7f\x53\xda\x9f\x51\x28\xbd\x8b\x3c\xb8\x56\x56\xc4\xe6\x7e\x6e\x6a\xe6\xc0\xe3\x54\x99\x91\x75\xd8\xa0\xa0\x12\xa4\xa6\x17\x76\xc3\x88\x42\x85\x7d\xfb\x2c\x31\x66\xf9\x7d\x42\x98\xd9\x20\x0f\x14\x13\x85\x59\x28\x2c\x11\xac\xbe\x46\x16\x43\x94\xd8\x54\x9e\x3f\xec\x27\x79\xba\x46\xd6\x09\x99\x8f\x53\xaa\x64\x79\xaa\x66\x01\x0f\xcf\xbd\x64\x2d\xe0\x94\xe2\x57\x78\xa0\x14\xd0\xd6\x15\x0d\xe3\x65\x95\x8b\xec\x25\x49\x0a\xa6\x5f\xa1\x46\x6a\x29\xc1\x95\xba\xc0\x08\xf8\xf6\x8b\x20\x2f\xdc\xaf\x49\xe8\xed\x22\x49\x00\x91\x85\x83\xe4\x71\x25\x1a\xb1\x64\xe2\xcc\x64\x28\xad\xd8\xfc\x9c\x25\x01\xba\x58\x63\xf6\x25\xc0\x23\x43\xec\x07\xe1\xa8\xe5\xe0\x76\xa7\x15\xdb\xd2\x69\x45\x1d\xdd\x35\x4b\x61\x9e\xd3\xc3\xb9\x5c\xd5\x15\xd5\x15\xc1\x95\x52\x14\xb0\xff\xd2\xda\xa2\x22\x8e\xc2\x61\x68\x81\x5b\xb0\x16\xb7\x14\x41\x69\x5d\x7e\x60\x71\xae\xdd\x4b\x56\xe3\x54\xfc\x2b\xa1\xa4\xbb\x4d\xbb\x8a\xaf\x95\x53\xdc\x37\xb1\xc9\xc3\x80\x12\xab\xee\x24\xbf\xa4\x4e\xf2\x4b\x2a\xc9\x3b\xf4\xe3\x9d\xb4\x82\x19\x47\x87\x23\x55\x77\xfd\x0a\x95\x05\x8d\xa6\xb0\x22\x94\x5f\x06\xeb\xf2\x17\xb4\xa1\x61\xb9\x8f\x52\x4a\xce\x76\x71\x3b\x44\xde\x0d\x2d\x1f\x6b\xfc\x51\x12\x53\x4f\xdf\x73\x9c\xfe\x7b\xcf\x73\x03\x70\xa7\xce\xae\x8b\x93\xe0\x7a\x95\x4d\x28\x1f\x3c\xe6\x82\xc9\xf7\xe8\x04\xb3\x5c\x7f\xe5\x94\x88\xbc\x5d\xf9\x74\x96\xc3\x6f\xfe\x90\x4d\xd1\x29\x8a\xb9\xf7\xc6\xae\xd9\x63\x53\x81\xa4\x8f\x8e\x15\xce\x6a\xbb\xd6\x61\xe3\x44\x24\xff\x06\x99\x31\xab\x77\x5a\xbe\x16\xdc\x3b\x86\x2c\xf1\xbf\xc0\x22\xc2\xf6\x3f\x3c\xd9\xba\xe8\xa9\x5d\x2f\x5e\x32\x3d\x93\x3a\x8a\x7d\xdb\x52\xeb\x78\x42\xab\xc5\xc6\x41\x81\x0e\x52\x4c\xcb\x6d\xfc\x84\xa8\x9d\x97\x6f\x2e\x70\xa7\xc7\xac\x7f\xb7\x12\x66\xf2\xf5\x38\xb8\xce\xe8\xde\xe2\x33\x8d\x11\xa3\x89\x72\xc8\x11\xd8\xe5\x74\x4b\x2d\xa7\x5b\xd6\x7b\x8c\x92\x60\x99\xca\x2d\x7a\xfd\xa8\xd2\xcb\x42\xa5\x23\x85\xff\x01\xa8\x31\xce\xd5\x67\x3d\xff\xd5\x7f\xfe\xf3\x60\xc8\x67\x98\x93\x48\x33\x2a\x9d\x81\xb3\x9f\xcb\xe7\x46\xdc\x76\xc6\x07\x99\x28\x37\x48\x91\x01\x94\x66\xa9\x0a\x99\x89\x89\xb3\x70\xc5\xec\x2c\x9f\x58\x44\xc2\xdd\xe1\xfa\x93\xaa\x68\xb2\x8a\x2f\xb9\x15\x03\xe5\x22\x50\x37\x30\x65\x3e\x96\x05\xbc\x5b\x64\x20\x37\xef\x34\x74\xfd\x1f\x70\x3c\xcb\xbc\x36\x39\x2c\xe0\x1b\xcf\x95\x28\x21\xc8\xbb\xc3\x01\x50\x60\x2c\x10\xf0\x5c\xc7\x23\x32\x89\xcd\x58\x85\x25\x50\xa6\xc1\x53\x5d\xa2\x5d\x09\xab\xfc\x51\x95\x4d\x31\xf7\xa7\x75\x6a\x8c\x1c\x4d\x2b\x92\x6b\x69\x63\x8e\xd3\x2b\xf2\x75\xed\x75\x08\x60\x99\xa6\x6b\x9a\xb6\x1b\x8f\x22\x4e\xaf\x0d\x2e\x4c\x17\xf0\x69\x0b\xa3\xb3\xdd\x2d\x90\x91\xd8\x6c\x14\xa8\x88\xfc\xa2\x67\x15\x54\x05\x85\xab\x56\xc3\x85\x26\xb1\x2c\x50\x6a\x2e\x85\x8c\xb0\x44\x4a\xec\x06\xfc\x25\xbe\x51\xe6\x3c\x1c\x0e\x4d\x2f\x24\x1e\xd3\xf9\x43\x0e\x4d\x6f\xe1\x93\x0f\x54\xa7\xec\xf4\xe4\x29\x6d\x3d\xc3\x51\x11\xb9\x1d\x8b\x90\xe5\x86\x0a\x5f\x6e\xd4\xea\x36\xa8\x27\x50\x6c\x10\xf9\x71\x0f\x89\x52\x18\xbf\x23\x1a\x28\xac\xe5\xf2\x6e\x96\xfb\x52\xf5\x85\xa6\x66\x80\xc5\x1b\x9b\x2c\x43\x69\x19\xc6\x88\xe1\xa0\x70\x85\xa1\x14\x83\x33\xe8\xcd\xf1\x2e\x55\xda\xf9\x3b\x04\xb5\xb3\x2c\x31\x0e\xd4\x73\x17\xce\x37\x7e\xf5\x34\x42\x2f\x4c\xd1\x27\x40\x27\x70\x1a\x62\xec\xa8\x19\x2e\x7a\xad\xa7\x9f\xb6\xe5\x0d\x32\x41\xb8\x79\x08\x19\x06\x8c\xc3\xa6\xee\x57\xfb\x2f\xd4\x69\x29\xd9\x8a\xd2\x76\x23\xd4\x61\x16\x2a\xfc\xc3\x75\xc5\xd6\x74\x6f\xec\x44\x8f\x6f\x52\x36\xdd\x56\xcf\x1d\xf5\xe4\x55\x0f\x0a\xf7\x30\x80\xf7\xbd\xed\x5f\xb6\x8c\xb9\xa5\xc3\x85\x7c\x3d\xa2\x6a\x18\xfe\x5b\xb0\xd6\xc0\x34\x6e\xeb\xb4\x5e\xb4\x25\xbc\x89\x43\x79\xdf\xc3\x26\x43\x76\xec\x06\x4e\x35\x14\x68\x6e\xe1\xa4\xc1\x77\x6d\xd2\x49\x83\xd7\xbb\xcc\x85\x73\xfc\xfa\x25\x4f\x49\x4a\x9c\xa7\xcd\x88\x6a\xf2\x54\xe7\x11\x9b\xaf\x88\x4d\x0f\xb1\x3f\x0c\x15\x27\x12\x2b\xbc\x9c\x2c\x83\xe7\xb9\x72\x0a\xe7\xd0\x70\x3e\x9e\xd6\x3a\xc5\x7e\xb8\xea\x43\x3e\x86\xa9\x95\x68\x31\x0b\xcd\x52\xdd\x22\xbd\xd4\xce\x93\x88\x81\xee\x20\xa5\xfa\xf6\x58\x79\x86\xf8\x1d\x11\xad\x69\xc0\x98\x96\x76\x97\x54\x11\x5a\x95\x0a\x9d\xe2\x06\xb9\x50\xf3\xb5\xf7\xef\x6f\x2f\x99\x95\x32\x40\x5e\x14\xd9\xaa\x63\x8a\x32\xe1\x98\xad\xa2\xad\x98\x34\x16\x2e\x5a\xa4\x7d\x36\x68\xb0\xf9\x5a\x71\x6d\x0c\xfd\xd7\xc2\x21\x70\x96\xc8\xc1\x7e\xac\xd8\x39\x3f\xd6\x7c\x1e\x44\xa4\x1b\xf7\x0a\xd2\xa5\xd9\xfc\x00\x31\xe3\x07\x4a\x14\xda\xc4\x7d\xbf\x8f\x3c\x20\x12\x14\x37\x95\x82\xe9\xcd\xda\xcb\x3c\xd3\x0e\xfc\x2c\x8c\x13\x45\x24\xca\xaa\x45\xd2\xa8\xde\xc0\xa3\x1f\x19\xdf\x96\xba\x60\x13\xc1\x3c\xc9\xd7\x93\xad\x96\x63\xdf\x3e\x52\x6c\x19\xa5\x49\xaf\x08\x72\x49\x92\x62\x87\xb0\x0a\x25\xdf\x34\x50\x1c\x1f\x68\xf7\x4d\xd8\x37\xcc\xff\x8b\x63\x8d\xe3\x4e\xbe\x51\x5a\xfd\xab\x61\xcf\x54\x45\x79\x15\xfc\x59\x01\x12\x4c\xdc\x2f\xa2\x25\x16\x8b\x14\x38\x94\xb3\x9b\xa7\x95\xc6\xec\x6f\x7f\x3e\xa4\xd4\x4f\xfb\x61\x84\xd3\x5e\xb5\x71\x1d\xb0\x9a\x15\x0d\xcd\x92\x2c\xc2\xc1\x00\x27\x2d\x44\xbd\x09\x18\x18\xcc\xe1\xef\x7f\x2e\xe9\x70\x90\xfa\xb1\xc1\x82\xd7\x27\x9e\x5a\xb9\x52\xd5\xbb\xeb\x39\xe1\xd6\xa4\x90\x34\x02\x13\xb4\x61\x89\x0b\x5b\x5b\x5d\x15\x2b\x4d\xba\x09\x03\x6d\x9f\xab\xf0\x0b\x89\x2a\x66\xa3\xb4\x7f\x32\x0c\xe3\x4c\x72\x47\x52\x49\xd7\x65\xf5\x1a\xca\xe8\x99\x76\x91\x4a\xf3\x28\xa6\xe9\x34\x36\x2d\xf7\xfd\x7a\x95\x1e\x96\xa6\x1e\xaa\xad\xf2\x03\xc8\x69\x33\xbf\x0e\xdf\x34\xa8\x00\xb5\x5f\x2d\xfc\x32\x50\xd5\xa2\xaf\xb4\xe9\x10\x62\x0f\x2a\x7c\xeb\x1a\xac\x5d\x74\x23\xd7\xb2\xf5\x12\x9f\x25\xdc\x4d\xc4\x37\x2a\x83\x68\xca\xb8\x29\xb6\x40\x87\x79\xce\x4b\x70\x3b\x36\xdf\xa8\x9e\x0c\x3f\xcf\xfd\x60\x79\xd6\xf5\x64\x80\x10\x5a\x75\x44\xbd\xb4\xf9\x26\xd9\x62\xd6\xf4\xf5\x14\x01\x1e\x12\x4d\xc0\xba\xdc\x83\x53\x2d\x0c\x60\x4f\xd6\x11\xc5\xb2\x83\x01\xa7\x61\xaa\x05\xbe\x69\x20\x6d\x3a\xd8\x4e\x62\x90\x95\x59\x79\x8a\x7d\x42\x7e\x72\x4c\x21\x02\x56\xc3\x7c\xd0\x4b\xfd\xd5\x96\x52\x57\x47\x26\x83\xaf\xc7\x4f\x2a\xd9\xfd\x22\x4d\xa2\xa4\x1f\x66\xcc\xa4\x2e\x7c\x71\xf4\x59\x01\x5e\xd7\x43\xfa\xf9\xf6\x92\x1f\xe6\x83\xa5\x82\x41\xb9\x36\xbc\xb3\x34\x9c\x9b\x0a\xfd\x72\x41\x81\x72\x5f\xf7\x57\x0c\xf2\xda\x22\x3a\xe6\x88\xd5\xee\x8e\x77\xf2\x2f\x2c\x4d\x3b\x4e\x96\x13\xaa\xd6\x76\x74\x3c\x75\xf0\xd7\xbf\xce\x4b\xe4\x4d\xaf\xf5\xab\x96\xfd\x50\xf1\x48\x04\x81\xc9\xb2\x04\xf8\x2d\x4b\xea\x6d\x7d\xac\xed\xc0\xb3\x21\xd8\xbc\xa8\x6a\x05\xef\x37\x11\xe3\xf5\xfc\xe1\xa8\xe5\x58\x8a\x4e\x56\x54\x09\x1b\x2c\x73\x19\x3e\x4b\xe3\x17\x6a\x27\xbf\xa9\xd4\x28\x98\x56\x04\x00\x82\x0d\x8b\x2d\x1e\x25\x59\x16\x76\xa3\x35\x7a\x62\x2c\x80\x3b\x63\x67\x0c\x1f\xe9\xb8\xd2\x31\xeb\x31\x49\xa5\xb3\x81\xaa\x5d\xce\xe3\x79\xce\xf8\xdc\x83\x2f\x06\x9f\xfa\x2c\xdc\x03\x39\x00\x95\x76\x89\x3f\xec\x26\xbd\xd0\xe7\xd3\xd2\xb6\xa2\x3e\xef\x5a\x51\x1b\x10\x86\x91\x82\x4f\x30\x30\x7f\xec\x02\xc4\x6b\x0d\x9c\xf5\x07\xda\x99\x1f\x25\xc3\x8a\xd7\x3b\xd5\x51\xee\xde\x54\x83\x22\xd1\x96\xfc\x91\x65\x58\x74\x0d\xfe\xe8\xab\x40\xc0\xfc\xa0\xb1\x9d\x28\xcb\x93\x5e\x7f\xed\xf3\x49\xf1\x94\x0f\x34\x00\x9f\x97\x62\x7b\x28\xe7\x42\x40\x5d\x0e\xe4\x87\xec\x14\xbd\x3c\x1c\x05\xd0\x32\xf2\x75\x45\x89\xd3\xcf\x7e\x86\x7c\x65\xf8\xb7\xe7\xc7\xf0\x37\xb1\x8c\xa7\x27\x0a\x5c\xf8\x01\x66\x4b\xdc\xe8\xf2\x87\x71\x98\xcc\x74\x94\xc6\xe5\x55\xf6\x13\xf1\xf0\x37\x61\x69\x90\x1b\xdd\x3e\xd1\xd5\x7b\x85\x5a\xbb\x4e\xbe\x2c\x26\xf3\x3e\x19\x30\xa4\xd0\x67\x88\xd9\x15\xa6\x7f\xaa\x43\xee\xbd\xe5\xb6\x2a\x1d\x6f\x58\xe0\x19\x10\x35\xc0\x95\x64\x34\x23\xec\xe3\xb6\x4e\xe9\x55\xc3\x97\x9d\xe9\x38\xf7\x1c\x89\x7f\xce\xf5\xc0\x5f\xc6\x2b\xde\x22\x47\x1a\x4b\xfb\xb7\xd1\xfe\x0e\x33\x8c\x66\x6e\xe9\xde\x2c\x8d\x9b\x10\x1b\x92\xaf\x8e\x7c\xed\xec\x44\x31\x88\x7f\x77\x4c\xa1\x05\x7c\xab\x46\x4d\xe9\x2c\x0f\x87\x14\x67\xc5\x7d\x72\x35\x60\x68\xde\xc1\xf3\x60\x4f\x60\xc4\x80\xbf\x98\xea\x38\xe4\x4a\x96\x14\xd1\x52\x11\xc1\x8c\x4a\x2f\x84\x33\x45\x17\x14\xdc\xf3\xd5\x22\x34\x79\x4b\xe1\xe1\x98\x15\x53\x1a\x5a\xf5\x52\x18\x98\x2f\xea\x1e\xdd\x13\xc8\x8f\x59\xd6\xa0\xf2\x3b\x90\xfa\xbd\x8f\x69\x85\x11\x9c\x02\xd4\x0c\x4f\xfc\x89\xe7\x68\x90\xaf\x52\xbf\x0b\x16\xe7\x14\x4c\x1b\x33\x9a\x12\x94\x0a\x51\xc1\xf4\xa4\x9c\x17\x81\x85\x5a\x58\xea\xad\x3d\x13\xd5\x9d\xbb\x9d\x80\x44\x48\xf8\x3e\x4e\xa3\xfc\x80\x60\x46\xa8\x73\x3d\xde\x69\xfd\xda\x3f\x73\x47\xe2\x8b\x0a\xfc\x62\xf9\x4b\x6f\x51\x8d\xd9\x62\x2c\xcb\x05\x8f\xdf\xbf\x3b\x56\x48\x83\xbb\x63\xd5\x78\x76\x54\x65\xed\xa6\x3b\x4d\x5a\x81\x45\x9c\x52\x6b\x9c\x53\xf5\x7c\x63\xec\x1a\x17\xde\x50\x9c\xe8\xe1\x70\x94\x26\x2b\x86\x72\x1e\x2a\xb5\xf1\x1c\x87\xab\x37\x14\x58\xe1\x1e\x7d\x05\x8a\x98\x77\x14\xd0\xe9\x1a\xdc\x08\x6e\xd3\x51\x34\x78\x7d\x13\x1b\x14\xda\xe0\x0a\xfd\x64\xac\x70\x3e\xbf\xa3\xd4\x0f\xff\x15\x12\x3e\x4c\x59\x8b\xf7\x86\x39\xe4\xa6\x01\xa1\x1f\x74\x28\x8a\x13\x35\xa7\xec\xd0\x0b\xed\x81\xf1\x53\x3a\x78\x6c\x9f\x8c\x2a\xff\x36\xb1\x78\xe4\xa9\x3f\x1a\x85\xdc\x67\x8e\xd7\xd7\xf0\xf5\x75\xad\x9d\x79\x65\xfc\x25\x9b\x57\xee\x99\x34\xcb\xfd\xb8\xf7\xcf\x7f\xde\xef\x25\xa3\x5c\xb1\xc0\x82\xdd\x58\x2a\xb4\xae\x5d\x71\xd9\xc4\x79\x11\x2c\xaf\xd1\x86\x42\x92\x80\xb1\xc0\x1c\xf0\x93\xa5\x11\xce\x93\x7a\x8e\x65\xb1\xdd\x4f\xfd\x5e\xe1\x8b\x78\x07\x83\xe1\x3d\xd7\x5d\xf5\xe6\x58\x17\x0a\xd3\xa4\xe8\x0f\xa6\x54\x14\x07\xee\x25\x5d\x95\x87\xf7\x7d\xb2\x52\x63\x89\x97\x59\x17\xd8\xe2\x63\x6d\x15\x64\xa3\x96\xc9\x3f\xb0\x48\x12\xe7\x7e\x96\x99\x21\x71\xc2\x5a\x30\x3b\x16\xb8\x68\x19\x6a\xd6\x96\x81\x1f\x2d\x4d\x3b\xbf\x8a\x13\xbd\x2c\xca\x4c\x6f\x23\xca\xad\x2a\x0a\xae\x9f\xa3\xc4\x43\xe0\x52\xfb\x15\xf5\x00\x01\x11\x6a\x2d\xa0\x22\x30\xcc\x16\x05\xff\x0c\xfa\xef\x82\xec\x6b\x29\x3e\xd8\xc7\x15\x76\x82\xaa\x14\xbd\x29\x2d\x85\x7f\x43\x49\xc3\xea\xa6\xfb\xff\xed\x63\x9b\xf6\x35\xaf\x95\xbe\x14\x13\x67\x6c\xbe\xa9\x59\x0a\x2f\x57\xc4\x31\x9b\xe4\xda\xfc\x7e\x6a\xe4\xad\x2c\x99\xbb\xc3\x84\x9c\xaf\x54\xde\x8a\x74\xa9\xe5\xc6\x12\x48\x32\xbe\xb6\xa0\xa5\xcc\x98\x61\x86\xc4\x23\x52\xf6\x7c\x28\x8a\x5f\xbb\xb5\x02\x2d\x79\x6a\x2b\xb7\x4a\xfc\x21\x34\x65\xba\x03\x4e\xe8\x43\xca\x79\xb6\xd1\x84\x03\x67\xec\x54\x22\x90\xb9\xff\x9a\xc9\x76\x91\x95\x65\x42\x1e\x05\xf1\x03\xc3\xa0\x34\x7d\x92\x7d\x90\x94\x7a\xa5\x63\xdc\xad\xc3\x63\x54\x7e\x90\x16\x1c\x55\x58\x87\x11\x11\xce\x1f\x7a\x49\x9c\x5c\x97\xc7\xae\x6f\x5a\x37\xdd\x85\xc3\x51\x04\x45\xc8\xf2\xdf\x51\xce\xff\x11\x3d\x1b\x5f\x7b\x3a\x81\x9d\xa7\x66\x68\xa2\x35\x4c\x0d\x92\x3b\xeb\x8a\x2b\x62\xbd\x46\x3a\x79\xe0\x85\x83\xed\x22\x6b\xd1\x61\x0d\x47\x94\x71\xc5\x7c\xe3\x88\xaa\xca\x68\x92\x79\x56\xf8\x78\xc5\x1c\x61\x2b\x5c\xc7\xb2\x96\xea\x82\xdb\xe5\xcb\x71\x42\xfa\x9f\x2d\x47\x86\x43\xfb\x4e\xb8\x5a\x1a\x14\xa0\x56\x93\x34\x0d\x39\x83\xa0\xc2\x33\xc9\xfc\xfd\x9e\x4a\x21\x5c\x56\x4d\x91\x02\x65\x2f\xff\x55\xe4\x17\xdd\x2a\x38\xaf\xc9\x12\xc2\xbc\x60\xe8\xc9\xf3\x56\x0d\xcb\x53\xe0\xfd\x1f\x8f\x15\x1d\xf5\x4f\x69\x66\x2c\x9f\x9a\xad\x78\x4c\xa3\xcd\xc5\x8a\x69\x59\xce\x4c\x5d\x7b\xa3\x06\xde\x6e\x92\xfa\xac\x28\xc3\xb2\x30\x9e\x4b\x48\xfd\x9e\xdd\x93\x43\x3f\xf5\xf3\x41\x12\x4f\xbb\xa7\xbe\xa4\x18\x99\x6f\xea\x7c\xce\x19\x78\x17\x52\x2a\x77\xcc\xcf\x61\x6e\xd0\x2b\x0c\xaf\x11\x2e\x2e\x3c\x0a\xd0\x43\x62\x89\x5d\x56\x91\x71\x3f\x4a\x92\x21\x8c\xbe\x34\x1d\x95\x1f\xb2\x64\x2d\xb6\xb2\x77\x5a\xcd\xeb\xd0\x4f\xc3\xdc\x8f\x10\x10\xc1\xb8\x43\x1c\x57\xaa\xe2\xb4\x1e\xe0\xe3\xfc\x65\x93\x90\x4f\xb9\xe9\x97\x01\x1f\x06\xba\xfa\x08\x22\x20\xbe\x71\x9a\xc7\x91\xbf\x92\xa4\x5a\x93\xf8\x82\x22\x7d\xbe\xa9\xe2\xb6\xa3\x76\xb1\xf6\x4c\x9c\x67\x85\x12\x98\xbe\xa5\x0f\xc9\x5b\xb5\x5c\xdd\xa1\x17\xda\x41\x79\x16\xb5\x1c\xd3\xe0\xf7\x3d\x45\xee\xf9\x7d\x75\x3c\x98\xb8\xfc\xcb\x87\x4b\xbf\x0b\xa3\x7f\x06\x2b\xc7\x2a\x0b\xdb\x06\xc7\xfb\x1a\xae\xcc\x9e\x12\x2a\x41\x6f\xc0\x7f\x57\x9c\xec\xcf\x71\x51\xf1\xdf\x78\x4e\x36\xe1\x0c\x8c\x85\x90\xb5\xd3\xf3\x88\x59\xae\x0b\xcd\xcc\x53\xcb\x77\xd8\x33\x69\x55\xa7\xed\x9e\xe7\x36\xc4\x3d\x7d\xfc\xfa\x99\x19\xfa\x71\xab\x02\x50\xd0\x0c\x43\x17\x55\xea\xa1\x17\xa6\x26\xc8\xa3\xb5\xd9\x9a\x0b\x66\xf5\x12\x6c\x82\x67\x13\x2e\xb2\xfd\xc6\x17\x2d\x41\x14\xc2\x4e\x2b\x9b\x55\xfe\x94\xf0\x20\xb8\xee\xca\xd1\x20\x8c\xc2\xd1\x28\x8c\x91\x6a\x45\x95\xea\x87\xb4\x8c\xf9\xba\x36\x7d\x8b\x73\xed\x51\x1a\x26\x9c\xc8\xb4\xe2\xf2\xb6\xde\xb5\x51\x8b\x57\x9f\x29\x7d\x82\x3c\x74\x21\x3d\xcc\xc9\x67\xe5\x62\xdf\x6c\x75\xd4\xda\xbd\x57\x4b\x92\x48\xbe\x30\x4f\xd0\x29\xe8\x78\x17\xe9\x8d\xa4\xc6\xe8\xf6\x57\x9e\xfa\x3d\x93\xee\xa4\x81\x10\x16\x52\xd7\x95\x8b\x70\x0a\x27\xd2\x6d\x2a\x48\xa3\xca\x70\x0a\x13\x8e\x84\x3f\x1b\x65\x24\xdf\xaf\x70\x90\xc8\x77\x63\x57\x18\xfe\xa4\x96\x37\xf8\x6a\x9b\x1a\x55\xa9\xe3\xc9\xf2\xcc\x96\xf3\x86\x93\xed\x3e\xcd\x9b\x60\x22\x6b\xbb\xf4\x85\x83\xed\xa5\x34\x89\x81\xb1\xe1\x8c\x0b\x7d\x42\xb2\x2f\x8e\x3c\xc1\xbc\x16\x44\x45\x16\xae\x08\x98\x9d\xbf\xb3\xf2\xfd\x5b\x17\xed\xfc\xa1\xf6\xd0\xef\xc7\xe1\x52\x18\x18\xfe\x11\x8b\x8e\xb5\x74\x6f\xf7\xd5\x8f\x64\x45\x16\x98\x51\x1e\xb2\x96\xd2\x01\x57\xc1\xb1\xec\x17\x27\x55\x8a\xb0\x5b\x64\x61\x6c\xb2\x6c\x68\x62\x6a\x44\x83\x0b\x01\x16\x14\xbe\xae\xa1\xf5\x2c\xce\x2b\x4d\x96\x28\xdb\xa4\xd4\x16\xb6\x21\x44\xe5\x9b\x8e\xeb\xa0\x0e\x0c\x91\xdb\xc1\x9a\xa9\xfa\xed\x41\x5b\xbf\xad\x23\x25\x47\x42\x39\x04\x83\x79\x9a\xf6\x06\x5f\x2b\xe3\x9c\x27\x71\xbf\x00\xa3\x34\x16\xf3\x0f\x60\x98\x10\x72\x1f\x51\x25\x88\x77\x54\x4b\xb7\x40\xba\x91\x65\x66\x84\x83\xc2\xda\x5f\xab\xa5\x52\xca\xb9\xf6\x53\x17\x91\x89\x04\x5e\xcb\xca\x23\x9f\xab\x65\xa6\x29\x5d\x48\x9c\x63\xb6\xdb\x0c\xa1\xe8\xfb\x64\x73\xf8\xba\xb1\xc9\xcd\xef\xcb\xce\x83\x63\x34\x4b\x65\x0e\xd8\x7e\x2e\x62\xe1\x75\x37\x6b\xe4\x6f\x8b\x73\xe5\xe6\x0d\x52\x4e\xff\x72\xc6\x49\x13\x8f\x0b\x17\x96\xb4\x35\xf8\xfd\x34\x09\x06\x66\x18\x06\xbe\x56\x0b\x05\x5c\x88\xaf\x27\x5b\x9f\x72\xfe\x90\xa2\xfb\x61\x32\x68\xcf\x61\xcd\xea\xda\xd3\x2f\xbf\xdc\xce\x07\x05\x52\xa0\xb6\x60\xfc\xbc\xa3\x5f\x6b\xfc\x7b\x3f\xdf\x41\x76\x01\x15\xe8\xdf\x23\xeb\x8f\xd4\xfa\x15\xaf\x8c\xc5\x05\x68\xe4\xd2\x3a\x0f\x23\xa9\x66\x7b\x8d\x9e\x97\xae\xdd\xd9\x89\x0e\x92\x8a\x38\x7b\xd4\x71\xdf\x5f\xc2\x19\x23\x88\x37\xdd\x71\xa6\x3a\x82\x4f\xc3\x72\x8b\xa6\x31\xfd\x0e\xfc\x9e\x93\x5c\x48\xb5\x5c\x4f\xa5\xbf\x68\xb9\xc8\x16\x5d\xb3\xb4\x02\x3f\x6d\x6c\x21\x44\x7e\xbe\xda\x0b\xc6\x5f\x8c\x43\x5f\xea\x20\x0d\x89\xd7\x2c\xec\xc7\x7e\x44\xbe\x3d\x4e\xc8\x2b\x9a\xc2\xf9\xaf\x90\x73\xe0\x1b\xcf\xa5\xa9\xaf\xd4\x6c\xfe\xe2\x5c\x3b\x8c\x57\x92\x68\xc5\xf4\x40\x1f\x8e\x4c\xf1\x67\x78\x66\xa4\x89\x36\xc6\xea\xe4\x04\x2e\x1f\x6f\x36\xdd\xf9\xbc\x5a\x95\x79\x6d\x10\x76\xc3\x7c\xca\x75\x18\x5c\xc5\xc8\x09\xdf\x61\xb9\x22\x71\x96\x1c\xa9\xeb\xa6\x2d\x1e\xf8\x72\x79\x6e\xaf\x98\x14\x56\xad\xe5\x54\xaf\x3d\x05\xee\xb3\x9e\x4d\x3f\x4a\xba\x7e\x34\xe3\x16\xf1\x79\x5d\x98\xba\xa0\xe8\x15\x66\x88\xa3\x04\x5e\xc5\x67\x78\x2d\x26\x1b\x6e\x48\x2e\x1f\x68\xaf\x0e\x92\x56\xb9\xe0\xa4\xa1\x5e\x51\x3a\xdd\xb6\x1e\x6a\xf2\x5a\xd8\x0b\x5f\x67\xa1\x6f\x58\xf5\x4b\xca\xbd\x38\x4f\x93\x2c\x1d\x3f\x5b\x4d\xde\xe2\x5c\x7b\x68\x72\xb0\xce\xab\x6a\xbb\x44\xb8\x8f\x52\x93\xac\x4e\xa7\x6f\xde\xa8\x84\xfd\xcb\x26\xde\xe5\x82\x3f\xe0\x8d\x2c\xef\xf9\xfc\x21\xfe\xff\x47\xb4\xb2\xd0\x4f\x69\x6d\xc2\x6d\xd8\xd9\x51\x89\xce\xb3\x63\x55\xe7\xbb\x37\x76\x9c\x66\xbb\x90\x38\x83\xef\xfb\x17\x63\x15\xe1\x5c\x54\x2e\xc8\xe5\x0a\x0d\x73\x3a\x4a\x00\xd1\xca\x76\x38\x4b\xc4\xc5\x36\x4e\xe4\xe2\xe7\x24\xab\xab\x94\x45\x54\x1b\x08\x9f\x18\xfc\x71\x25\x33\xd9\x33\xc3\x24\x28\x7f\x21\x40\x9a\x1c\x16\x13\x8d\xc4\xc8\x74\x01\x95\x8f\xb3\xe6\x6e\x25\xfa\x1e\x86\xf9\x2c\xbc\x05\x8c\x08\x08\x85\x31\xaf\xa0\x95\xc2\x69\x06\x08\x05\x82\xb2\xdb\x2a\x40\xbb\x8d\x87\xb2\x35\x8a\x72\x6c\x25\x4d\xf0\xa4\x62\x96\xc8\xd3\xd0\x4f\x83\x81\xcf\x59\x55\xdb\xef\x64\x43\x9e\x13\xde\x17\xaa\xed\x7a\xe5\xe1\x51\x2e\xff\x69\x15\xd5\x80\x4b\x47\xc4\xc4\x94\x24\x01\xa4\x7e\xf8\x5a\x25\x4d\xf2\x41\xe9\x8c\x53\x4d\x89\x1b\x94\x14\x18\x02\xd4\x02\xb0\x33\x4c\xcc\x2c\xb5\x6b\xd7\x56\xf7\x8b\xcf\xfe\xa3\x56\xe5\x23\xfb\xc4\xf3\x3b\x53\x41\x46\xe5\x7e\xb4\x87\x72\xe8\xe2\x52\x4e\x39\xdd\xb6\x4d\x32\xcf\x92\x05\x50\x45\xf2\xf7\xe1\x6b\x59\xaa\x64\x5b\xbb\xdd\xc4\xe3\x20\x3d\x3e\x35\x51\xd0\x2c\x4f\x41\xd2\x2f\xc3\x82\x62\x5e\x8f\x2b\x81\x81\xcb\x1a\x48\xd0\xea\x60\x82\xf1\xa2\x1f\xc2\x9c\xf1\x67\x68\x79\x59\xb2\x58\x07\x47\xff\xcf\xaa\xad\x3b\xcb\xd3\x70\x59\x28\x04\xb0\x3d\x4e\xd2\x0b\xf1\x75\xcd\x55\xd8\x37\xdf\x5e\x31\x69\x2f\x0c\x72\x9c\xe0\x9a\xaf\xdf\xfa\xb1\x0a\x9e\xde\x40\xd5\x62\x04\x21\x75\x78\xae\x22\xd8\x2e\x14\x69\x0e\x77\xb0\x1c\xae\x86\x9f\xaf\xf6\x2a\x1d\xae\x49\x6c\x1e\x6d\x59\x9a\xc1\xa7\x26\x55\xfe\x80\xc3\x73\x6c\xac\xa8\x45\x83\xa3\xab\x2b\x74\x0a\xa1\xeb\xf4\x2b\x1d\x35\x1d\x7c\x6e\xb9\x36\x7e\x8e\x9f\x83\x27\x26\xca\xd4\x3e\x34\x29\x87\x48\xd6\x93\x3a\x37\xef\x83\x92\x1a\xad\x56\x8f\x77\x5c\x11\xf4\xc1\x58\x33\x16\x35\x89\x7b\xad\x86\x11\xaa\xe6\x78\x5a\x64\x43\x85\x1b\xb8\x82\x2a\x6f\xe0\x72\x2c\xdd\xb7\xbc\xa5\xc8\x65\x3e\xf3\xb4\xd4\xc4\x67\x0a\x14\xe3\x47\x61\xb6\xbc\x86\xa4\x8f\xb5\x56\x0e\xf6\x71\x5a\xf1\x03\x64\xc5\x68\x94\xa4\xf9\x1e\x7a\x74\xc4\x7a\x13\xa5\xef\x76\x9b\x8a\x14\xf6\x90\x29\xf7\x07\x6b\xee\x63\x48\xd0\x3d\x73\x1f\x87\xb4\x10\x72\x95\x43\x82\x8c\x01\x54\x92\xe0\x20\xbd\x0f\x17\x85\x9b\x54\xf8\xd9\x11\x4c\x31\xaa\x11\x89\xe7\x4b\x8a\xd2\x09\xa9\x3d\xe6\xd7\xa2\x35\x8b\x2e\xba\x0f\xc6\x4a\x2d\xff\x28\xde\x0d\x2e\xc2\x8c\xc2\xea\x0d\x8c\xdf\x7b\xb5\xf0\xd3\x9c\x38\x0d\x16\x84\x4a\x9b\x3b\xf7\xb1\xb9\xee\x12\x94\x0d\xe1\xce\x29\x95\x0a\x59\x07\xf7\x25\xff\x83\xb7\xa7\x8a\x62\xc8\x06\x24\xd2\x8c\xac\xf9\x9f\xc1\x61\xe7\xbc\x0d\x7d\x07\x9e\x18\xf3\x8b\xd3\x0f\x8e\x1c\x7f\x40\x4d\x95\x3a\xef\xf1\x87\x90\x56\xb1\xc2\x79\xf3\x87\x5c\x45\x62\xc1\xca\xe5\x6e\x8e\x95\xf6\x5f\x23\x5a\x66\x94\x26\x23\x9f\x43\x6c\x80\xd2\x10\x47\xf2\x75\x05\x53\xbc\x92\x04\x53\xaa\xdc\x81\xe0\x55\xbc\x60\x25\x9c\x72\xaf\x62\x30\xc3\x38\x68\x39\x29\xb8\x0f\x55\x36\xff\x43\x5b\xd2\x1f\x99\x74\x89\xf2\x0a\x2d\x95\x8a\xf7\x5c\xe5\xbe\x5e\x07\x3f\x3c\x77\xa0\xdd\x2b\xf0\xdc\x5a\x8f\x8c\xaf\x6b\xf5\x93\x97\x5f\x2e\x3d\x61\x72\xfa\x54\x4f\x3b\xa3\x79\x84\x3c\x4c\xd2\xd0\xd4\xf0\x32\xe3\x22\xaa\xbf\xc0\x9f\x89\x1a\x35\xed\x01\x49\x5d\x63\x7d\x62\xb8\x19\x03\x28\x06\xd8\xf1\xe9\xbe\x52\xf4\xfa\x86\xfb\x19\x2b\x03\xc6\x1a\x63\x00\x50\xda\xfe\x00\xa7\x25\x07\x63\x2f\x65\x00\x7a\x0a\x2c\xb5\x4d\xcd\x80\xe2\xa7\xcb\xa6\x5c\xbc\x3b\xe9\x6b\x60\x8b\xbe\x87\x9a\x2a\xdf\xe8\x0a\x98\x5e\x86\x47\xc6\x8e\xc6\xf1\x82\xa7\x5a\xb5\xd6\x69\x47\xf1\x3f\x28\xee\xe9\x3f\x55\x10\xaf\x62\x94\xe5\x7e\x98\x72\x70\x29\x20\x97\x96\xe5\x8f\x39\xa6\x70\xb4\x43\xbf\xef\xbf\x5e\x06\xe1\x64\xd7\x90\x10\xbf\xa9\xa8\x0e\x8f\xe9\xee\x1b\x2d\xf6\xb5\xff\xd9\xc3\x0a\xeb\xb4\xa1\xb1\x4e\x9a\x30\x37\xa5\x93\x64\x85\xa1\x69\x9a\x5f\x9a\xaf\x6b\x25\xb8\xf9\x43\x6d\x3f\xf5\xbb\x2a\x49\xc1\x11\x15\xdf\x4c\x1e\x57\x3d\xac\xac\x94\x54\x8e\x09\x4c\x2f\xc0\x96\xf0\x35\xc0\x7f\xc9\xd7\x0a\x4c\x74\xbf\xc1\x3c\x13\x7e\x8e\xdb\x70\x10\xa0\x1c\x53\xc1\xca\x31\x55\x72\xee\x86\x51\x94\xed\x6a\x29\x95\x7c\x9a\x5d\x09\x04\x14\x31\x0c\x88\x7e\xb8\xa9\x1e\xb3\x8b\xc3\x02\x74\x78\x58\x49\xff\x61\xac\x38\x64\xcf\xc1\xed\xb0\xbd\xf7\x16\x7e\xcb\x1b\x02\xf3\xf7\xf6\x58\x61\xd3\x3e\x6a\x00\x09\x59\x24\x52\xac\xa1\x83\xc7\x55\xae\xfa\x78\x03\x2c\xaa\x9f\xe4\xe8\x93\x85\x59\xd2\xdd\xbc\x9c\x2d\x46\x14\xfa\x40\x55\x3f\x46\xc6\x0f\x4c\x1e\x0e\x19\x97\x87\x95\x7c\x49\x09\x00\x30\x6f\xab\x20\x54\xa5\x69\xbb\x9b\x26\x71\x90\x30\x87\x01\xfc\xf7\xe9\x8e\x12\xe0\x98\xae\x85\xfb\xfb\xe6\xdb\xd9\x28\x59\x46\x96\x5e\x9a\x12\xe8\xbb\xa5\x75\x41\x42\x30\xc2\xac\x48\x97\xb2\x55\x52\xdf\xbf\x7f\x13\x8a\x9f\x56\x9b\xd2\xfa\x9e\x17\x60\x39\x50\x28\xf8\x12\xaa\x26\x30\xe6\x3b\xf4\x62\x4b\xfd\x61\xe9\xe3\xcf\x28\xc6\x06\x16\x60\x90\xaa\x8a\x43\x0b\x5d\x55\x69\x66\x50\x10\x01\xbb\x70\xb5\x31\xb6\xcb\x0d\xa3\x7f\x70\xea\x6e\x9b\x94\x9e\x0f\x5f\x77\xea\x99\xa9\xbe\x1f\xf2\xc4\x8a\xa0\x4d\xcb\x89\xdb\x34\xb1\x99\x2d\x11\x33\x6f\xf9\xd8\xf0\xdf\xce\x2a\x5f\xee\xac\x05\x43\xf5\x92\x55\xca\x4f\xb7\x5c\x13\x21\xd0\x6b\xe2\x76\x39\x71\x6c\x30\xe1\xed\x50\xfd\xa0\xf7\xe0\x6f\x4b\x95\x57\x05\x91\x50\x83\xa9\x48\x13\x0b\xbc\x4c\xf1\x3d\xd6\xfd\xad\xaf\xb6\x7b\x7e\x8e\x54\xc0\x82\x3b\x84\x2d\x4f\x10\x53\xc5\x63\x58\x3f\x54\xdc\x40\xb7\x55\xc9\x29\x8b\x8d\xbf\x6c\x52\x95\xc6\xfb\x8c\x76\x35\x5f\x5b\x02\x96\x28\x34\x04\x3c\x44\x32\x97\x13\xc5\xac\x8d\x42\x96\x18\xa9\x5c\xd4\x6d\x15\x45\xc9\x3c\x8f\xfa\x9f\xc2\x25\xc5\x0b\x7f\x0a\x6f\x8a\xff\x45\xf5\x6b\x66\x03\x3f\x62\x69\x2f\xbc\xf4\x51\xfa\x6e\xc4\x45\xa7\x14\x90\xfa\x9a\x02\x86\x67\xfe\x92\xc9\xd7\x28\xbf\x68\xe3\xae\xf2\xeb\xf1\x0a\x70\xe4\x85\xa8\xb2\x21\x3b\xd3\xf7\x4d\x14\x06\x34\x00\x00\x2c\x32\x97\x33\xdf\xd4\x10\xbe\x0b\x0b\x65\xcc\x46\x85\xff\xae\x2d\x54\x34\xc9\xb9\x36\xb1\x95\xa7\xc6\xef\xa1\x02\x29\xe4\x54\xe5\x63\xc3\x1f\x3f\xa9\x09\x9c\x6f\xaa\x7e\x19\x3f\x08\xcc\x28\x9f\x26\xc8\x13\x2f\x0c\x20\x58\x6c\x2e\xab\x8c\x97\x6c\x2e\xcb\xfd\x95\x0a\x91\xfa\x7e\xda\x0b\x63\x46\xdf\x4a\x58\xa3\x61\xac\xde\xe7\xa5\x91\x83\x64\x38\xf2\xe3\xd0\xe2\x92\x61\x4c\x38\xb7\x8f\xe8\xf1\x8e\x86\x58\x5c\xa8\x0d\xf2\x33\xed\x30\xcb\x0a\x23\x5a\x12\x4d\x14\x8f\x0d\x47\x5c\x6e\x49\xc4\xe0\x1c\x4f\x53\xe4\x83\xf5\xb7\xb7\xe3\x9a\xad\x36\x75\x20\x58\x8c\x46\x51\x28\xca\xcf\xd6\xa8\xdb\x94\xc6\x71\xd5\xb3\x97\x15\xdd\x34\xc9\x13\x9a\xf8\x46\x38\xb2\x45\x6d\x52\xfa\xce\xe6\x87\x2d\x9a\xc1\x21\x1b\x1a\x25\xcb\xfc\x1c\x9d\xf5\xe5\xdf\x21\x96\x3d\x8d\x53\x89\x6f\x6a\xd9\xbd\xe7\x17\xda\xa5\x71\x21\x42\x7b\xe7\xe8\xbd\xa1\x76\xd4\x1b\xca\xad\x5e\x8e\x93\x3c\x5f\xc3\x71\x0c\x67\xfc\x04\xd6\x01\xdf\x58\x64\x42\x6a\x96\x4c\x3a\xe5\x3a\xd8\xce\x61\x77\x60\xe4\xd1\xf9\x8d\x15\xfb\xa1\x3d\x7b\x72\x63\x62\x69\x14\xc0\x36\xb8\xe7\x39\x70\xef\xbd\x4a\x4e\x2b\xcc\x7d\x3e\x48\xb8\x1e\x33\x76\xae\xd1\x26\x42\x0c\x84\x40\xbf\x83\xbc\x00\x26\xf0\x7a\xb5\x04\xa0\xb2\x8d\x1b\xe3\xbf\xb1\x35\xcb\xb2\x20\x6b\x71\x27\x3d\xb9\x54\xdf\x5a\x56\x54\x76\x07\x4e\x24\xd5\x38\x2f\xb6\xe9\xc1\x58\xf3\x86\xa1\xfd\x09\x06\xf1\xac\xc2\x57\xdc\xc2\xce\x13\x0e\xfd\x47\x95\xc2\x68\xdc\xf3\xd5\x0a\xf9\xae\x5e\x21\xdf\xf5\xbe\xe0\x30\x0e\xb1\xcd\xe6\x03\x0a\x2a\x51\x32\xcb\xbd\x49\x87\xe1\x94\xd3\x76\xd4\xf2\x20\x41\x32\x1c\x26\xf1\x6e\x3c\xab\xf4\x35\x13\x25\x03\x42\x15\x64\x56\x1e\x51\xd9\xae\xf7\xc7\xae\xd8\x32\xa6\x20\x4a\xe2\x07\x7a\x42\x64\xac\x8e\x70\xce\xdb\xb2\x25\x97\x6f\x09\xf7\x81\x89\x8e\xe0\xee\xfd\x10\x01\xbf\xe6\x51\x86\x3b\xf2\x31\xe6\x0c\x8e\xfb\xa7\x0a\xb4\x33\x4a\xc2\x98\x70\xeb\x1a\x80\x44\x5f\x2f\x21\x50\x53\x9f\x47\x98\xb1\xdc\x1b\x23\x1e\x11\x4c\xa1\x00\x0e\x98\xe0\x06\xb6\x08\x7e\xfd\x88\xc3\x15\x14\x51\x9a\xc4\x06\xcd\xbf\x22\x16\x4f\x2f\xca\x37\x76\xb3\x76\xa3\xc2\x8c\xd2\x30\xce\x15\x61\x2d\x2a\xda\xd2\x9b\xee\x80\x06\xab\xc6\x5f\xde\xa1\x1a\x55\xd0\x5e\x6a\x65\xc9\xe7\x0f\x69\x7a\xef\x79\xf9\x23\xc0\x16\x6c\xe0\xa1\x64\xbd\x9c\x2e\x97\x1f\x98\x41\x92\x66\x70\x14\xa4\xaf\x51\xf5\x38\x6e\x69\xb8\x0f\x66\x5c\x48\xcd\x38\x6c\x2b\x32\x5f\x8e\x3f\xc6\xe6\x1a\x76\x13\x6c\xce\xf6\x89\xcb\x1b\x9c\xaf\x44\xad\xab\x83\xe4\x71\xc5\x20\xb6\x1b\x89\x21\xa0\x23\xf7\x02\x07\xc6\xdd\x5d\x98\x75\xab\x1c\x51\x5a\x12\x69\x05\x2e\xdd\x2b\xab\x29\x5b\x8e\xb3\x3d\xae\xac\x03\x07\x5a\x54\xfe\xab\x47\x08\xa0\x29\x2d\x2b\x2d\xcb\x06\xf7\x40\xf7\x3e\x80\x03\x95\x9b\xc1\x28\x09\x60\x15\x66\x4b\xc3\x85\xcc\xd7\x4d\xbc\x25\x8c\xc9\xdd\xb1\xd3\xa1\x7d\xb3\x16\x93\x7c\xb5\xdd\x4d\x8c\xb5\xcb\xcc\x10\x86\xc7\x15\xba\x30\x9d\x04\x18\x85\xbd\x16\xfd\x90\xe4\x8e\xe9\x8d\xf9\x66\xd2\xd4\x5c\x14\x25\x71\xdf\xa4\xd3\x2e\xa3\xfb\x6d\x5d\x69\x41\x79\x03\x19\x85\x77\xe1\xde\xc0\x90\x9e\xb4\xb5\x8e\x81\xf1\xd3\x9c\x21\x47\x2c\xb1\xcd\x06\x09\x2f\x7b\xd7\xab\x30\xdd\x3c\xae\x09\x36\xb2\x30\xcb\xc1\x83\x0d\xe3\x85\x6d\x82\xe1\x7e\x78\xa2\x68\x22\xee\x7b\x4f\x54\x2d\xe6\xe2\x5c\x7b\xdf\xbe\x2f\x96\x7f\x6d\xa5\xe9\xcb\x89\x66\x0d\xc5\xb1\x2b\xc4\x4e\x13\x70\x96\xe9\xdd\xc6\x8a\x6b\x73\x7a\xa2\xda\x65\x4e\x8d\x5d\xe5\xf9\x38\x51\x32\x21\xb1\xfe\x96\xa7\xf8\x6d\xb7\x13\x28\xda\x32\x8d\x95\x5b\x44\x48\x8e\x1d\x99\xdb\xd7\xf6\x60\xfd\xe1\x5f\x38\xa7\x86\xf8\x83\x19\x77\x99\x88\x98\x16\x07\x86\xe8\x3a\xe1\xd0\xec\xb3\x5b\xfa\xb4\x75\xcf\xc9\x9b\x9e\x1d\x93\x6f\x64\xdb\x0c\xcb\x39\x92\x34\x30\x86\x9b\xeb\x79\x58\xe4\x88\x77\xbf\xef\x3d\x61\x1b\xc8\xcb\x78\xc8\xc4\x79\xc8\xc5\x55\x61\x4d\x77\xe8\x8d\xf5\xcf\xc7\x50\xf8\x59\xa6\x7a\xba\xef\xea\x2e\xde\xbb\xea\x28\x19\x26\x2b\x22\x61\x24\xed\x8b\x8a\xcd\xf1\xa2\x62\x96\x58\x4e\x52\xe3\xcf\x94\xb3\x84\xb3\x92\x4e\xd4\xcd\x69\xb0\xe1\x48\xf3\xa7\xea\x9e\x84\x4e\x19\x0b\xc2\xd7\x52\xd5\xf3\x87\xda\xc1\x20\x09\x03\x71\x8a\xac\xdc\x84\xc5\x57\x9e\xab\xbd\xdb\xf3\x0b\x10\x34\xea\x26\x3d\x98\x5c\xc9\x44\xb4\x94\x46\x88\xac\xf1\x20\x19\x8d\x4c\x3a\xab\x6a\x06\xa7\xf5\x79\x0e\xe1\x22\x4c\xb2\x6e\x85\xf8\xdb\x1d\x45\x82\x7c\x93\x4e\x39\xf8\x27\xb7\x14\x2b\xcf\xc6\x96\x2d\x51\x0c\x4d\xfa\x30\xbd\x3a\x73\x6f\xd2\xd2\xd4\x80\x49\xc6\x33\x8f\x1d\xf7\xea\xe8\xac\xa7\x3a\xb7\xc1\x90\x86\x41\xdf\x43\xa9\x6d\xab\x2b\xe0\x52\x54\xb3\x93\xf2\x99\xc5\x4f\x55\x5e\xdf\xd1\x9a\xd3\xf6\xf2\xcb\xa0\x44\x4e\xfd\x35\x74\xb6\x48\xff\x4a\xcb\x52\xe2\xa3\xce\x87\x6f\x3e\xd6\x34\xd6\xb1\x9f\x17\xa9\x85\x1c\x4b\x43\x22\x3d\x8f\x64\xe7\x1b\x1c\xcc\xcc\x8c\x7c\x80\xf2\x2c\x95\xf3\x59\x25\xc7\x78\x76\xac\x8b\x5b\x69\x1e\x06\xe1\x88\xfe\xda\xb6\xcd\x60\x07\x39\x40\xae\xe0\x2e\x7a\xab\x26\xcb\x4d\x1a\x4f\x29\xb6\xbb\x63\x8a\x5c\x79\x5b\xc7\x41\x7f\x6e\xea\x75\x6b\xcc\x28\x9b\x6e\x55\xd4\xbb\x0f\x54\x9c\x70\x09\x64\x5d\x8b\xd5\xf1\x06\xc8\xf1\x81\x76\x1e\x0e\x6d\xb8\x81\x59\x60\x2e\x6d\x11\x6a\xa3\x27\xe3\xd8\xa3\xe1\x1b\xda\x79\x6a\x2c\xa3\x3c\x86\xf0\x33\x5d\xd4\xfa\xac\x09\x63\xfd\xe5\x76\x6a\xd0\xc0\xc7\x5d\xc6\x82\x0b\x9b\x72\x82\x58\x67\x1a\x7a\xdf\xda\xa6\xdf\x97\x87\xd5\x81\xaa\x48\xf6\x2b\x36\xf9\x3b\xde\x5e\xbb\x69\xe2\x3c\xf5\x83\xbc\x60\x8b\x83\x14\xe5\xff\x44\x8b\x93\xaf\x55\x12\x16\x2d\xc5\xb4\xee\xe1\x82\xff\x48\xab\x8b\xff\x68\xfc\x54\xd5\xfe\x3f\xbf\x40\xd5\x94\x59\x07\xff\xfd\x06\x19\x54\x51\xf8\xa0\x91\x80\x0f\xfb\x07\x9a\x28\xe3\x1a\x1b\x4b\xec\xf0\x6d\x1d\xa7\x33\x04\xa5\x5f\x66\x0b\x55\x29\xce\x41\x31\xa4\x13\x4a\xb8\x62\xaa\x4c\xd4\x36\x0d\xfb\x96\x22\x9b\x5b\xf5\x53\xc8\x21\x8b\x17\x5c\x7e\x1e\xce\x3a\x32\x93\x7c\xb8\xaa\x8f\xbc\x62\x72\x98\x58\x01\x5c\xb4\xac\x2e\xe3\x49\xd5\xc7\xba\x14\xa6\xc3\xdd\x74\x10\xc0\x48\x5e\xd3\x90\x01\x56\xb4\xc1\xd9\xf1\x0e\x99\x18\x76\x32\x3d\x45\x4f\x07\xfe\x65\xbc\xff\x76\x64\xdb\x60\xa0\xde\x1f\x3b\x74\xe0\x19\x9d\x6d\x26\xbc\x9d\xcb\x71\x94\xb3\xc2\xbf\xe1\x39\x37\xfa\x08\x0f\x2c\xdc\xb5\x6b\x56\x62\xc2\xcf\xf2\x24\x0e\xb3\x81\xf5\x61\xc4\x37\x2f\xbf\x93\xaf\x3b\x8f\xa9\xec\x48\x68\x22\x6e\xa9\x67\x35\x66\x38\x77\x2c\xc9\x82\x89\xc5\xe1\x7c\x75\x5c\x1e\xed\xda\x6b\x13\xdd\x16\x0d\x89\x7c\xfd\x75\x82\xd6\xd1\xd1\x0b\x67\xe2\x28\xb1\x18\x88\xdf\xeb\xd6\xf1\x2d\x4f\x93\x11\x89\x28\xab\x4b\x01\xb0\x6e\x9c\x54\x93\x5d\x4f\x6c\x19\x92\xa7\x80\xa1\x29\x66\xdf\x6b\x9e\x12\x48\xbb\x66\x1d\xe7\xa0\x48\x53\x96\xa9\xb4\x10\xa4\xf7\x35\x67\xc4\xfb\x4d\xdd\xba\x1a\x36\xcd\x84\xd7\x9e\x7b\xe3\x8d\x86\x06\x80\x03\xed\x6e\x52\x58\xee\x21\xac\x10\xc6\x6c\xf1\x8d\xb7\x35\xfb\xfb\xb5\x17\xdb\x4f\xb3\x45\xb1\x62\xbf\xa5\xa3\x2a\x32\x6a\x0d\x25\x62\x2e\xa4\xb5\x5c\x66\xea\x8c\x22\x3f\x3d\xe3\x4c\xae\x09\x06\x7e\x1c\xbe\x6e\x7a\x33\x6e\x65\x6f\xeb\x28\x2a\xcb\x8f\xb1\x94\x25\x4f\x54\x0e\x8e\x10\x7e\xaa\xe4\xf1\xbb\x8a\x2e\x30\x29\xf2\x28\x8c\x79\x61\xbd\xc4\x93\x7b\x5d\xeb\xc9\x5e\xb7\x45\xa3\xae\x89\x92\xd5\x87\xcb\x2f\x85\xc3\x81\x66\x01\xfa\x81\xef\xfe\xc3\x8e\x42\x93\xe8\x86\x96\xcb\x70\xf2\x14\xba\x5d\xb2\xf2\xbb\xa8\xa3\x4b\xba\xe0\xca\x97\x47\xba\xfc\x51\xea\xe6\xb3\x1d\x2f\xfb\xf7\xf3\xa6\xdb\x3b\x69\x20\x5f\xf0\xbb\x89\xe6\x77\x94\xe6\x2e\x7a\x5b\x21\x60\xdd\x0a\xe6\x9b\x3f\xd4\x76\x64\x43\x64\x97\x30\x2e\x88\xa1\x2b\x65\x18\x14\x26\xee\xd7\xbe\x62\x61\xa1\xfd\x4a\x91\xe5\xe1\xd2\x9a\xdd\x93\xb6\x97\xcc\x09\x03\x69\xca\xb1\x34\x59\x36\x69\xb6\xd3\x35\x65\xdf\x53\x61\xc1\x09\xdd\x2a\xf3\x43\xad\x6a\xb7\x49\x93\x08\x07\xee\x68\x69\x9d\x37\xcf\x6b\xed\xe7\x0d\x4f\x71\xaf\xdf\x18\xef\xb2\x16\xf7\xc0\xbe\x19\xe7\xbf\xf3\x41\x48\xbe\xc9\x8f\xf7\x4c\x1c\xe2\xf4\x6f\x75\xdc\xf3\x6c\xe8\x41\xdb\x70\x2c\xbb\x69\xd2\x63\x05\x22\xdb\xa3\x62\x5b\x7c\x6f\x68\xac\x09\xa0\xac\x88\xeb\x1f\x8c\x55\x4e\xf7\xdd\x5a\x03\xd5\xbe\x7d\x6d\x26\x42\xb5\xd4\x84\x8a\x22\xd4\xe2\x19\x6a\x6c\x1b\x87\xe7\x5e\x6a\x2f\x99\xd2\x0d\x92\x09\x17\xf9\xe5\xf2\x3d\xf8\xba\x86\x40\x3d\x3c\x47\x15\x99\xf2\xb1\x65\x7d\xaa\x86\x9e\x4b\x9e\xc2\x60\xfe\x46\x03\xbb\x7c\xdb\x0f\x5e\x2d\x42\x93\x05\x5c\x58\x15\x5b\xad\x76\xd4\x11\x4f\x4b\x36\x99\x6c\xb0\xa3\x5c\xc2\x72\xb2\x3b\x70\xe2\xc6\x56\x51\xeb\x79\x2b\x93\x4e\x4f\xc4\x37\x2a\x05\xe0\x9a\xc2\x5f\x2d\x92\xdc\x87\x02\x7e\x39\xe6\x08\x62\x8e\x2a\xfd\xc7\x1b\xaa\x04\x7a\x00\x33\xce\xac\x25\x6a\x1d\x9a\xd7\x58\xcb\xc9\xc9\x5d\x83\x20\x5b\xd2\xc9\x7b\x14\x91\x4a\x96\x19\x22\x70\xb5\xfe\xa5\xa7\x1c\xcf\xa6\x06\x3e\xb2\xe0\x45\x6a\x68\x53\x21\x4d\x84\x70\xd4\x72\x5f\x7d\xed\x45\x4b\x0a\xa2\x50\x1a\x69\xbf\xb0\x8d\x5d\xd2\x07\xa7\xf0\xe6\xb7\xc7\x0a\xa7\xd0\x52\x12\x27\xc5\xb0\x0b\x7e\x4a\x6e\x36\x56\xe5\xd0\x75\x25\xf3\x85\x8d\x8d\xef\x2a\x0f\x4a\x3e\x44\x22\xe3\xc7\x76\xfb\x22\xda\x00\x6c\x86\xaf\x3b\x92\xe7\xcc\x06\xe1\x52\x2e\x28\x5e\x4d\x64\x01\xe7\xf4\x87\x98\x49\x1c\x86\x57\x95\xcc\x5e\xb2\x62\xd2\xd7\x8d\x1f\x25\x85\x96\xf0\xdb\x50\x12\x7e\x1b\x4d\x12\x90\xc3\xb0\x17\x87\xfd\x41\x4e\xdd\x31\x00\x73\xec\xe8\x38\xe0\xd7\x05\xe5\xd7\x5c\x40\x00\x23\x36\xab\xc1\xeb\xcc\x8b\x34\x46\x38\x09\xe7\x4b\x73\x69\x5f\x52\x61\x93\x94\xaf\x19\x43\xc7\x3a\xf3\x6a\x40\xf7\xa0\xc7\x1b\x71\x2e\xaa\x72\x38\x5b\x2e\x8f\x15\x63\xff\x8f\xb5\xd7\xf8\xa9\x86\x87\x3e\xd5\x79\x42\x09\xb4\x24\xaf\xc4\xc9\x6a\xb6\x1c\x62\xf0\xb9\x5a\xa4\x04\xdb\xcf\x36\xf1\x02\xf8\x61\x0f\x03\x69\x9b\xaa\x9d\x3a\xd8\xba\xc2\x84\xfb\xf9\x20\x32\x39\x73\x34\x60\xe9\x1d\xa3\x45\xce\xd7\xf6\x44\x1b\x15\x51\x66\x88\xb2\x00\x93\xc7\x55\x35\x64\xc4\x40\x8a\x82\x45\x07\xe5\x02\x51\xe2\x50\xad\x25\x61\xb0\x16\x44\x00\xad\xf3\x21\xe2\xb5\xb6\x30\x9f\xc3\xcc\x7c\x50\x27\x0f\x9b\x6f\x2f\x85\x96\x41\x83\x11\x47\x9a\xd5\x6c\x62\xf3\x9a\x7e\xb7\x57\x04\xb9\xe9\x4d\xbb\xaa\xdd\x93\x1d\x47\xb3\xff\xfe\xd8\x25\x71\x4e\x29\xdb\xf6\xc4\x9e\x89\xf0\x8f\x0d\xfc\xb8\xcf\x0d\x30\xc0\x53\x73\x69\x8e\x6f\x2a\x09\xb0\x3c\x31\x2d\x24\x84\x2d\x02\xf0\x80\x95\x3f\xaa\x77\xc3\x1e\x9e\x9b\x6f\x0f\xfc\x61\x96\xa7\x05\x36\x93\x30\x19\xb7\xc8\x3f\xe5\xeb\x1a\xf1\xfb\x33\x60\x2c\x0a\x5f\xb7\x5b\x10\x50\x91\x9f\x28\x19\xc9\x9f\x58\xdf\x87\xaa\x13\x26\x0e\x84\xaa\x01\xeb\xf3\x12\xe6\x8b\x6f\x94\x11\x0e\x06\xa1\x59\xda\xed\xc4\xfb\x2e\x7b\x5a\xbc\xae\x92\xec\xdf\x4e\x32\x29\xc2\x50\x45\x79\xda\x4a\x5b\xbb\x50\xe7\xbb\x05\x70\x4e\x13\x6f\xef\x24\xf0\x31\xcc\xfb\x6f\x8d\x9d\x4c\xe6\x77\x15\x83\x17\xf7\x8c\x8a\xfc\xa5\xea\xf0\x3b\xdf\x94\x87\x49\x96\x96\xba\xc6\xcf\x55\x59\xe5\x98\x2a\xab\x1c\xdb\xaa\x06\x51\x1e\x8a\x2f\xbf\x4c\x1a\xb9\x70\x0a\x6e\x80\xf5\x80\x01\xb3\x58\x0f\x68\xe9\x3c\x01\xff\x0b\x29\xc6\xab\x04\xbb\x97\x05\x40\xa3\x6a\x4f\x2c\xcb\xde\x7e\x53\xa1\x4c\x6f\x78\x4a\xbf\xe9\x1a\x5a\xfb\x65\x31\x95\x2f\x8e\x48\xed\xa6\xae\xf9\xde\x27\x67\x41\x74\x35\x9b\x7a\xe3\x73\x3f\x32\x9c\x85\x67\x10\x90\xa7\x01\x41\x7a\x5d\xfa\xa3\x1c\x54\xf7\xd2\x29\xa5\xd4\x5d\x24\x5f\x8a\x82\x06\xcb\xbd\x49\xad\x9b\xc2\x4d\x69\xa9\xaa\xb4\x0e\x84\xf9\xc3\x34\x22\x02\x43\xd4\x5a\xbf\xf8\x7a\xa1\x3a\x77\xd0\xca\x3b\x30\xf7\xc2\x5a\xa7\xd0\x7f\x9f\x8d\x15\x93\xc6\x0e\xb0\xef\xc3\x96\x5c\x52\xc4\xeb\xdf\xa4\x17\xe4\xef\xd5\x78\x3a\x93\x06\x32\x14\x00\x00\xbe\x0d\xf7\x8a\x6f\x9a\xd8\x07\xb3\xa4\xc8\x07\xb4\x50\xf0\x3b\x1f\x78\x0a\xfd\x50\x87\xbf\xef\xdf\xdf\x0e\x92\x55\xde\x42\x38\x1b\xff\x0f\x6c\x21\xbe\xf1\x1e\x76\x35\xad\x96\x83\x87\x9d\xd6\x20\xf9\xd3\x4d\x3e\xd2\x28\x4d\xfa\xa4\xea\xcc\x5f\x8e\x3f\xe5\xf2\x1d\xdf\x28\x59\xfe\xa1\x9f\x86\xa6\xa5\x52\x69\x60\x35\x13\xf6\x3f\xc5\x64\x92\xfa\xc1\x32\xd2\xdb\xc8\x57\x3d\x50\x45\x9a\x8b\xba\x1e\x57\x47\xdf\xce\x1f\x6a\xf7\x4c\x16\xa6\xec\xb7\x59\xac\x84\xcb\x0b\xd6\x31\x1e\x0b\x0b\x04\x96\x9c\x52\x71\xca\x55\xa5\xfd\xff\x53\xfc\x22\x0e\xdf\xb3\x8a\x13\x28\x1b\x19\xd3\xdb\x45\x5b\xc2\x0a\x14\xa8\x0e\x81\x96\x25\x31\x60\x40\xb3\xb0\xaf\xd2\xc3\x48\x4e\xd6\x85\xf3\x3f\xc4\x4a\xc2\x1a\xfb\xaf\x9e\x42\xa6\x33\x09\x02\xa7\xdb\x3c\xb7\xbd\xa4\x57\x4e\x16\x7d\x85\x13\xba\x37\x6a\x29\x52\xea\x73\xb4\xf3\x05\xdf\xf7\x98\xca\x8c\x44\x61\xdc\x27\x3d\x69\x44\x1c\x57\xc7\x5a\x1d\x4a\x2f\x82\x75\x45\x75\xf0\x01\x5e\x09\x26\xe6\x0c\xcc\x1b\xec\xf7\x5d\x65\xbf\x83\xd4\x70\xc0\x65\xa5\x46\xae\x6a\x70\xe2\x6d\xe5\x6b\xec\xe8\x34\xe0\xca\x96\xa2\x44\x60\x58\xfc\x8e\xaa\xb6\x7e\x41\xb9\x93\x81\x1f\xf7\x12\x46\xa0\x09\xcc\x9a\x4c\x80\xe0\xaf\x5d\x2e\xb2\x5b\xac\x31\xa8\x05\xee\xcb\x45\x45\xfb\xdb\x44\x73\x70\xa0\x9d\xfa\xbd\x30\x99\x2e\xfd\x58\x8c\xca\x4f\xb5\xb9\xfb\x44\xeb\x21\xbf\xa7\x68\x44\xdf\xa9\x2d\xb4\x97\x5f\x6e\x0f\x92\x21\x3c\x07\x89\x01\x5a\x96\xb6\x9b\xc1\x82\xac\xc7\xab\x60\x62\x66\x69\xc9\x04\x79\xb8\x62\x76\xd2\x40\x08\xab\xb3\x32\xeb\xef\x93\x2d\x16\x69\xb7\x32\x62\xbc\x44\x0b\x0b\x2e\xdf\x37\x55\xa3\xc2\x11\x84\xe6\xb6\x7e\x57\x1e\x7d\x92\xc7\x7b\x44\x55\x3f\x71\x12\x61\x29\x73\x0d\x9e\x6f\xbc\xbd\x5b\xd1\xc0\xa5\x8f\xe2\xb8\xa2\x70\x82\xc2\x96\xaf\x7b\x2a\x89\x02\xa5\x15\xfe\x87\x26\x19\xcb\x6e\x91\xc6\x5c\x89\xc0\x6f\x9d\xf0\x5c\x27\xd0\x89\xcf\xa5\xd3\xeb\xfa\x29\x61\xba\xca\x67\x60\x02\x74\x35\xaa\x1b\x4d\xcc\xe1\xc3\xa4\x67\xd2\x38\xe4\x16\x45\x16\xf2\x56\xf2\xb6\xeb\xb5\x1f\x2b\x0f\x5c\x22\x22\x4d\x86\x61\xc6\x78\x4f\xf1\x2c\x68\xdb\x2a\xa4\xb9\x78\x19\x77\xab\xdc\xc5\xcb\x5f\x86\xcb\x23\x9c\x12\xce\x4f\x3c\xaf\xf7\x63\x92\x06\x06\x39\x03\x38\x5f\x6f\x8f\x5d\x39\xe6\xe1\x8e\xae\xa3\x53\x53\x8b\x24\x3c\x9c\x02\x3f\x98\xdf\x3e\x17\x43\xcd\x26\xb5\x49\x8d\x6c\x94\x86\x71\x10\x8e\x58\xf5\x4d\xc5\xbc\x55\xbe\x2a\x61\xca\xd9\xfa\x0d\x2f\x82\xd4\x79\x25\x8c\x03\x6e\x60\x15\xc4\xbd\x6e\x1c\x72\xa5\x87\x72\xcf\x46\x26\xcb\xc3\x60\x99\xdd\x54\x29\x02\x68\x68\x9b\x82\xc3\x0a\x4f\xf2\x23\xad\xaf\x8b\x3d\xde\xde\xd1\x79\xe9\x69\x9c\xbf\x02\xd2\x77\xf1\xca\x7d\x55\x73\xb9\xa4\x59\x7d\xb0\x73\x84\xe5\x80\x66\x12\x34\x52\x77\x61\xf5\x2d\xb5\xfd\xf3\x0b\x96\xdd\x5f\xc5\x0b\x97\x74\xca\x68\xa6\x53\xd1\xb7\x23\xc6\xdb\x47\x69\x37\xc0\x5a\xf3\x27\x05\xb7\x8e\x07\x67\x72\x29\xcf\xc5\xa0\xb7\x01\x1c\xe0\xcf\xc0\x8a\x21\x38\x00\x6d\x27\x3f\xc7\xa5\xb1\xeb\x2e\xb8\x4d\x9d\x60\xcc\x21\x82\x42\x26\x7f\x42\xe9\x67\xcc\x52\xea\x0e\xd3\x4f\x8a\x6b\xd2\xde\x0e\x3f\x17\x86\xb2\x55\x2b\x76\xcf\x1f\x6a\x67\xc3\xd0\x61\x9c\xd8\x6b\xa6\x07\x16\x0f\xba\x41\xaa\xf1\xbf\x4d\x6c\xcb\x85\xf5\x26\xca\x76\x61\x44\x70\x02\x3f\xdc\x71\x35\x82\x16\x58\xbc\xf0\x0f\xb7\xe1\xcf\x02\xf7\x80\x26\x46\xe1\xab\xa2\xe9\xc3\xae\x9c\x46\x51\x88\x7c\xb4\x7f\xf5\xb3\x1d\x0b\xf8\xf8\xb7\x7f\x17\x92\xf2\x56\x6d\xc3\xd6\x3e\x26\x5a\x03\x4b\x17\x17\xb3\xdc\xa4\x61\x64\x32\x55\xf8\xb9\xa4\xa4\x50\x2f\x79\x0e\x0f\x1e\x0c\xc2\xa8\x37\x48\x12\x4d\xc2\xcc\xa0\x0d\xbe\x69\x12\xbc\x7d\x3d\x4a\xf2\x35\xe6\xc6\x11\x91\x3e\xc7\x5a\xf5\x3f\x8f\x5d\x8a\xed\xb6\x0a\x43\xb3\xbc\xe8\x85\x09\xc3\xd4\x99\x7e\x54\x71\xdb\x9c\x6e\x4c\x0c\x50\x03\x74\xf9\x3b\xd6\x84\xd8\xef\xbe\x58\xed\x6f\xe8\x65\xbb\xd4\x37\xb3\x26\x84\x25\x37\x28\x37\x90\x92\xa5\x3d\xc8\xc2\x7f\x47\xb4\xfc\xf3\xf5\xb1\xaa\x46\xac\x2b\x77\x68\xa6\x53\x1e\xa5\x56\xe8\xcd\x55\x46\xa7\x3b\x0a\xc4\xf5\x63\x5a\x95\x22\xb4\xe0\x02\x7d\xb0\xc1\x9a\xde\x74\x39\x8f\x7c\xce\xf1\x0c\x7a\xaa\xbe\xfe\x89\xe7\xbc\xef\x9f\x36\xe4\x72\x0f\xb4\x83\x30\x0d\x8a\xc8\x97\x64\x24\xac\x2d\x13\x9c\xf2\x4d\x53\xe6\x3e\x2f\xbd\x01\x51\xc5\xa1\x33\x6d\xf3\x7c\x43\xd2\x72\xa1\x4d\xf4\x54\x7e\xda\x53\xf8\x59\x94\x55\xf9\xba\xda\xfe\xf9\x7a\xd2\x52\x64\xea\x37\xe1\xfe\xf1\x8d\x7a\xfb\x5e\x12\xe4\x29\xb1\x47\x58\xad\x24\x96\xbf\x12\xb6\x62\xd7\x5c\x96\x26\x99\xd9\x49\xf3\x06\x8b\xf1\x5d\xb2\x75\x02\x5c\x76\xba\x24\x77\xb4\x60\xca\x25\xb6\x4b\x7c\x37\xfe\xdc\xbe\x77\xda\x46\x30\x9c\x97\xbc\x27\xd4\x6e\x49\xfd\xdc\xf4\x43\xc3\x8a\x07\xd8\xe9\x7f\x3c\x76\x50\x47\x94\xf2\xe0\x39\xb2\x2d\x46\x92\xeb\xa4\x25\xd6\x0f\x92\xc8\xa7\x50\xc4\xa2\x69\x54\xf1\xaf\x42\x96\x15\x2e\x4f\x2b\x44\xdd\x5d\x0c\x1b\xac\xc6\xed\x6a\x11\xc6\x1d\x00\x3f\xd5\xb2\xc1\x51\x12\x2c\x53\xba\x13\x31\x3f\x7a\x34\xf9\x5a\x99\xa7\xa4\xcb\xaa\x38\x56\x78\xde\x7a\x18\xbb\x3a\xee\x7d\x18\x7c\x23\x0c\x6d\xbb\x1d\xe8\x2b\xcc\x88\x7a\x59\x7a\x4d\x15\xc2\xfd\xa2\x7d\xed\xbc\xe8\x1a\x15\x0a\x22\x69\x28\x84\x64\x5f\xac\x30\xf9\xa7\xe1\xd0\xc4\xb9\x1f\x45\x6b\x53\xe5\xc3\x0b\xa2\xd1\x4d\xf0\x36\xb2\xf6\x70\x1b\xfe\xa0\x4a\x59\xb5\x94\xd0\xf9\x2e\x0c\xa4\x4e\x82\x4c\xc3\x2b\x8e\x29\x7c\x4a\x14\xd2\xef\xcc\x1f\x62\x0a\x03\x06\x51\x4b\x0f\xa1\x3a\x94\x36\x6b\x3b\xad\x74\x0a\x7a\x09\xc1\x1f\x39\x26\x93\x79\xa4\x8d\x2f\x13\xec\xcc\x6d\x18\x67\x45\x6a\xd2\x6c\x9a\x82\x17\x2b\x71\xbb\x7f\x3f\xdb\x18\x28\x56\xf0\xf5\x58\x53\x57\x49\xea\x96\xa2\x0e\xd4\x14\x0f\x58\x3c\x52\xcb\x6a\xd3\xbc\x55\x4d\x30\xbc\xfe\x3a\x79\xaf\xc8\xb9\xe2\xcb\xe1\x48\x9f\x56\xf8\xeb\xef\xd0\x01\x2b\xf5\x0a\xd5\xc0\x96\x26\xab\x1c\x4c\xe0\x0f\x8f\x52\xdf\x25\x5f\xd7\x82\xe6\xfd\xfb\xc5\x67\xb6\xc7\xa9\x25\x8e\x76\x96\xbb\x16\x37\x50\x09\xa4\x40\xd9\x4a\xf4\x03\x5a\x8a\x34\x4c\x47\xb7\x0d\x52\x5e\x07\x4a\x9b\xf9\x8a\x71\x0c\xda\x48\xb7\xb7\x50\x45\xe4\x1b\xd5\xab\x91\x9a\x3c\x4c\x05\xc0\x29\xe0\x56\xa7\x8a\xfc\xdd\x0a\x97\x68\x14\x21\x52\x57\x0d\xbe\x0b\x36\x56\x2e\x1f\x12\xee\xd4\x5f\x37\x34\xcc\x1f\xa4\xaa\x69\xb9\x47\xa5\xf5\xb9\x65\x15\x56\xcf\xd6\x22\xfb\x67\xda\xfe\xd0\xa4\x16\x81\x81\x78\x6b\x37\xf6\x1b\xdf\x74\x2c\xee\xc8\xc4\x79\x6a\xf8\x6d\x85\xeb\x83\xfe\x52\xc8\x3e\x1a\x4a\xc5\x7e\x8f\xc4\x34\x54\xf3\xdd\x5d\x5a\x0d\x7c\xad\x98\x04\xfd\xd1\xc8\x4f\x4d\xcc\x47\xa9\xa6\x9d\x10\x94\xa3\xb6\x51\x7e\x6e\xbe\xe0\x5e\xec\x3b\x84\x92\xe3\xc0\x4c\x35\x12\xcf\x12\x69\x25\x47\x82\x48\xba\xc1\x55\x7b\x04\x39\x78\x04\xd7\xdb\x14\xd0\xfd\x2e\xd0\x90\x56\x8f\xd4\x1e\xeb\x0b\x7b\x29\x3f\x69\xe5\x61\x4a\x43\x0d\x77\x69\x13\x7c\x45\x28\x1d\xde\xd2\xa0\xeb\x9f\x50\xa0\x80\x71\xfc\x91\xa7\x7a\x89\xfe\x84\xa2\x0c\xa4\x8a\x4e\x20\xab\x66\x49\x45\xf7\xcd\x73\x54\x79\x85\x33\x71\x78\x45\x16\x7f\xe2\xca\x05\x56\x04\x4e\xfb\xfb\x04\xfb\x01\xc2\xea\x23\xab\x93\x91\x9a\x95\x67\xa7\xd4\xe8\xa9\x56\xf0\xa3\x1a\xc9\x7b\xab\x26\x83\x72\xe0\x85\x83\x65\xc4\x11\x10\x91\x77\x92\x6a\x6e\x9e\x2b\x8a\x9b\xe7\x8a\x82\xf6\x0f\x7d\x10\xa9\xab\x4c\xe6\x4d\x3a\x0b\xe1\x24\x9f\x18\x3b\xd1\x9c\x73\x16\xf4\x1e\x27\xf9\x80\xc0\x10\xce\xbb\xb9\x8d\x93\x11\x49\xff\x47\x69\x5a\x20\xbb\xfd\x54\x67\xcf\x96\x1e\xc6\xec\x31\x1a\xb6\x8a\x66\x2d\xec\xd7\x35\x45\xb9\x82\x13\x19\x3e\xe5\x15\x4c\x0d\xb2\xfb\x2d\xc2\xcf\x4a\x8d\xb6\x9c\x59\xfe\xb0\x6e\x19\x58\xc7\xc9\x87\x78\xf2\x1a\x46\x0d\xb6\x95\x09\x45\xf0\xd4\xdb\x80\x14\x54\xa8\x6c\x99\x9a\x9f\xd0\xd9\xc1\x25\x5e\x2d\x86\x32\xd6\x64\x10\x71\x96\x87\x79\x41\xcd\xed\x0a\x7d\x7c\x49\x0b\x81\x5e\x6a\x62\x5c\xce\xfd\xb4\x6f\x90\xe6\x64\x25\x62\xcf\x45\xd0\xf7\xff\x5f\x98\xf2\x47\x44\xc3\xe6\xb2\x44\x8f\x75\x1c\xa0\xf1\xbe\x6e\x52\xd9\x36\xd1\x74\x87\xdd\x04\xcd\x1b\x42\x50\xe4\xbc\x8f\x3a\x2d\xf8\x3f\x68\xf7\x4c\x6e\xd2\x21\x60\x2b\x8e\x2e\x0b\x67\x34\x5f\x37\x09\xb5\x74\x53\xff\xf5\x30\x42\xce\xa9\xa2\xb6\x26\x56\xc0\xd5\x55\x09\x65\x67\xb2\xd9\x72\xf9\x63\xc3\x02\xa9\xa1\xc9\x05\x60\x13\x8e\x01\xaf\x8a\x38\xe0\x9c\xca\xe2\x1c\xf3\x5c\x0f\xf5\x49\xda\xad\x92\x29\x6a\x00\xb9\x65\x61\xdc\xe7\x86\x1e\x4b\xc4\x5a\xae\x02\x39\xc1\x14\x60\x27\x0d\x63\xe2\x47\xa0\xd7\xc0\xc9\x87\xc8\x99\xaf\x6b\x78\xb8\x85\x85\x83\x9a\xaa\x0a\x69\x53\x1c\xff\x9f\x8e\x5d\xe2\xe0\x86\x57\xc1\x3c\x3e\xb9\x85\xd4\xd3\xef\x46\x9c\x46\xb1\xe2\x22\x8e\x7d\x0a\x13\x26\x8e\x88\xe4\x13\x47\x49\x14\xb1\x1f\xa1\x2a\x4e\x28\x81\xf3\xf5\x78\xb7\x4e\x37\xe7\xf0\x0d\x65\x87\x94\x5b\x07\x53\xf3\x5d\x65\xac\xbf\x8b\xe7\x14\xf1\x76\x37\x67\x69\x42\x44\x7b\x1a\x41\x7e\x5e\x95\xde\xcf\xab\x2e\xac\xa5\x34\xec\xf9\x6b\x3b\x14\x41\x1b\xd3\xb5\xc3\x13\x65\x75\x13\x29\xe5\xd2\x48\xf3\xbf\x60\xa3\x2b\x53\x29\xa8\x84\xed\x93\xbd\x2a\x51\x92\x9a\xa5\x22\x8a\xd6\xa6\x15\xcb\x1e\xe8\x9a\x60\x8b\x5b\x04\x4a\x05\x06\x6f\x5b\x45\x16\x7c\xbc\xb7\x86\xff\xfe\xea\xa3\x8a\xcf\x01\xec\x1c\x56\x1d\xfa\xf0\x1c\x7b\x53\x47\x08\xeb\x85\xf2\xf9\x05\x4f\x91\xb7\x1f\xf7\x14\x9a\x9d\xcd\x33\xb2\x89\x5c\xf1\x82\x3f\xc1\xc0\x5a\x1c\x2e\x7f\x4d\xcb\x15\x08\xb7\x09\x2d\x11\x5a\x86\xef\xec\x99\xd0\x20\xf1\x77\xd1\xfa\xc6\x09\xb2\xa3\xe3\x56\xee\x94\xae\xfd\x87\xf9\x2e\xfa\x5e\xd1\xc5\x72\x35\x50\x16\xdf\x81\xcd\xbb\xc3\x41\x8c\xb4\xff\x96\xef\x68\x95\xc1\x2d\xaf\xcc\xdf\xec\x28\xc8\x16\x1f\xa0\xb0\x2c\xbb\x27\x0e\x62\xfd\x00\xaf\x85\xa3\xf1\x9a\xa7\x0a\xb7\x77\x54\x1c\xd1\x4f\xfd\x6c\xd4\x72\xfe\x3a\x98\x29\xf9\xda\x7a\xa6\x03\xbf\x70\x89\x14\x4c\xfa\x37\x54\x9b\xf5\x37\xc6\x6e\x49\x65\x79\x9a\xc4\xfd\x5d\x4a\xb0\xe7\x2e\x21\x29\x2c\x15\xd2\x3e\xc9\x03\xfe\xa1\xa2\xdb\xe4\xe2\xa8\xa5\xf3\xb4\x80\xc7\x3b\x8a\xef\xfa\x9a\xe7\x40\x06\x97\x88\xe2\x42\xe4\xaf\xd5\xa1\x08\xca\x06\x49\xda\xb9\xfc\x64\x98\x67\x26\x5a\x7a\x44\x11\xd8\x9e\x1b\x6f\xd5\x6b\xb5\xbd\x92\x4e\x29\xfc\x93\xb1\xa2\x43\x43\x6f\xb6\x74\x36\xd0\x24\xc0\x7b\x3d\xaf\xf4\xc8\x38\xd7\xc9\xab\xc6\x53\xbd\xd5\xef\x29\x96\x89\xc7\xc8\x6d\x12\x82\x6d\xa7\xf3\xf7\x4a\xfa\x6c\x4b\x33\x89\xd1\x18\xc9\x9b\xd5\x89\xf6\xcb\xff\x2e\xf7\x7c\x20\xda\x45\xfc\x43\xcd\xfb\x46\xad\xe3\x7b\xdf\xbe\x76\x31\xa2\xb2\x89\x64\x8c\xca\x07\x61\x48\xed\xb8\x02\xdf\x77\x04\xab\x67\x95\xf6\xd3\x7d\x5a\x21\x48\xf1\xec\xed\xec\x55\xe6\xb1\x57\x04\x84\xf9\x71\x6e\xd0\x83\xb1\xab\x05\xbf\x87\x3d\x87\x82\xe5\x7b\x9e\xca\xe6\x3c\x50\x8d\xaf\x7e\xdf\xc4\xc1\xda\xee\x72\x9c\x61\x8e\x19\x33\x28\xbd\x49\xba\x75\x96\xd6\x98\xe4\x8b\xe9\xf4\xc1\x5f\x6d\x87\xe7\x29\x92\xb5\x0e\x10\xff\xd6\xd8\xf5\x5d\x7c\xc8\xae\x9f\x26\x11\x61\x26\x77\xa5\x7e\xfe\x2f\x3d\x97\x66\xbd\xa1\xd5\x6b\xff\xb5\xca\x57\x44\x26\xcb\x1e\x29\xcd\x8e\x95\xe5\x78\x5e\x62\xb1\xcf\x3c\x47\xbe\x0f\xd2\x1a\x54\x05\x00\x3e\x46\x1c\xbd\x0b\x6d\x6b\x92\x5e\x55\xe5\x11\x6e\xae\x84\x99\x7a\x13\xf3\x8a\xb6\xa3\xeb\x30\xc6\x5a\xe6\x11\x6e\xcf\x17\x3b\x8a\xe9\xe9\x8c\x4a\xbb\xa5\x61\xb7\x9b\xc4\xd9\x74\x39\x02\x5c\xfc\xf6\x2a\x1a\x2e\xba\x2a\xde\xb2\x8c\xb4\x7a\x0b\x8d\x4c\x32\x8a\xcc\x13\xe5\x9b\x62\x29\x9c\xa6\x8d\x8a\x4d\xc8\x14\x5d\xf0\x40\x37\xe9\xdb\x98\xb1\x4e\xe7\x3d\xaf\xd0\x0c\x48\x05\xba\xb4\x05\x70\x44\x21\x69\x87\xfc\x77\xab\xe3\x62\xb6\xf7\xc6\x4a\x33\xed\x3b\x98\x64\x98\xda\xdb\xb0\x68\x08\x8d\xaf\x23\xf0\x10\x59\x13\xd5\xa1\x36\x76\x31\x17\x37\x47\xe1\xc7\x5b\x93\x4a\x41\x5e\x0d\x1a\x33\x5c\xf1\x38\xd7\x30\xb3\xff\xa0\xdd\x2d\x32\x54\x09\xa4\xb9\xdf\x01\xc8\xae\x5a\x04\x5c\x6a\xb2\x51\x12\xf7\x4c\x0f\xd9\x97\x0a\x61\x32\x9e\x60\x76\xe2\xc2\x4f\xc6\x33\x62\xa3\x3c\x51\xe3\xe5\x9f\x3f\xd4\x36\x71\x56\x58\x45\x0e\x6b\xb3\x2c\xe7\x39\x96\x00\x1e\x82\x90\xe9\x2e\xe9\x08\x64\x11\x22\x11\x70\x2b\xf2\xf5\xc4\x9d\x4f\xfe\x72\xf6\x90\x92\xf9\x7f\x18\x1b\x48\xc8\xb7\xd4\x06\x04\x8c\x1b\xa1\xf1\xcd\xb1\x3a\x86\x1e\xc6\xba\x03\xe5\xcc\xcf\x50\x1c\x27\x52\xf4\x5a\x3b\x03\xe4\x66\xf4\xf8\x1f\x3f\x31\xd9\x1a\x5a\x97\x21\xbf\x8f\x90\x8a\xde\x64\xed\x67\x3a\x8a\xed\xf0\x89\x89\x6e\xd6\xa6\xc7\xc7\x11\xe6\xe7\x89\x64\x08\xd8\x1c\xe3\x91\xc5\x36\xcb\x29\xd6\x33\x0a\x02\x6b\xfb\x39\x2a\xb2\x39\x52\x20\xf7\x57\xad\x53\x8d\x57\xfa\x40\x53\xea\x7c\xa0\x0c\xd6\x28\xf2\xd7\x4c\x0a\x6d\x56\x3c\xd9\x4f\x95\x3b\xf2\x26\x2d\x0e\x7c\x6a\x6f\x87\xea\x23\x78\x19\x86\x1a\xdb\x58\xb7\x3c\xc0\x2c\x27\xa3\x1d\xe2\xcb\x64\x4a\x70\xe2\xfd\x69\x93\x96\x59\x52\x8c\x4a\x4f\xd6\x29\xb8\x6e\x28\x1a\xa8\xbb\x8a\x15\xe5\x6c\x2d\x56\x99\x3f\xd4\x1e\x86\x41\x9a\x74\xc3\x24\x4a\xfa\x6b\x4a\x20\xe6\xdb\x63\x25\x10\xf3\xed\xaa\xd6\x5a\x18\x9b\x69\xc5\xed\x78\xa5\xaa\x57\xe5\xce\x67\x8e\xde\x44\xf9\x51\xe9\x49\xa5\xc9\x52\x98\xfb\xc4\xaa\xb8\x38\xc7\x38\x58\xe8\xc8\xf3\xb5\x72\x65\xa1\x25\x4d\x6b\x73\x81\x73\x78\x67\x74\xd9\xf2\x87\xba\x5d\x0f\x31\x26\x6c\xf5\xa7\xf4\x28\x7c\xad\x39\x1b\xfe\x0a\x61\x0a\xd2\xf3\xc8\x3b\x02\x92\x71\xd7\x73\xcc\x61\x0f\x3c\x67\x37\x73\xe3\xa7\x42\xd5\x2b\xaa\x99\xae\x6f\x03\x90\x23\x9c\x69\xc7\xc6\x0e\x1f\xd3\x35\xfd\x7e\x18\xf7\xa7\xab\x6a\x4d\x8b\x73\x6c\xee\xee\xa8\x54\x32\x83\x3c\x98\x68\x5a\x79\x52\xe1\x70\xe4\x07\x39\xa5\x2f\x2d\xe4\xe7\x45\x4b\xa6\xf5\xa6\xca\x79\xde\xb0\x08\xe8\xa0\x48\x86\xe0\x46\xc5\xe9\x7e\x4c\x17\x87\x8e\x29\x81\x8d\xe5\x81\x1f\x33\x88\x15\x13\x76\x46\x11\xd2\x5f\xd4\x47\xf5\xbd\x06\x82\xd9\xe7\xda\xa9\xe9\x26\x45\x69\xdf\x5a\x0a\x22\xc2\xf4\x7b\x52\xcc\x6e\xa0\x17\xff\x72\x3b\x5b\x0e\xb9\x64\x04\x38\xf9\x1d\x55\x64\xbd\xac\xa8\xbc\x8e\xab\x58\xaf\x88\xa3\x30\xa3\x34\xec\xe2\x5c\x15\x4e\xc3\x37\xb5\x50\x72\x71\x0e\x05\x69\xc6\xc1\xc2\x98\x7f\xe4\xb9\xa8\xf4\xdf\x57\xf6\xb3\x02\xc7\x44\x49\xc6\x25\x33\xac\x37\xb0\x7f\xf0\xb5\x6d\x10\x1c\x25\xb9\x9f\x27\x0a\x3e\x70\x82\x9c\x5c\x61\x66\x51\x5e\xe6\x29\x45\x04\xfd\xc0\x26\xd6\xb3\xb0\x17\x71\xeb\x37\xfc\xc1\xff\x1d\x43\xce\x37\x35\x69\x9d\xfd\xfb\x17\x99\x55\x31\x5f\x2a\xa2\x96\xeb\x82\xba\xa0\xba\x98\xea\x0e\xe2\xbe\xf9\x76\xe2\x2f\x47\x7e\xdc\x6b\xe9\xd6\xbb\x0a\x34\x7a\xeb\x67\x9e\x5f\x68\x27\x23\xe3\xc0\xc6\x48\xb3\x60\xd1\xf3\xb5\x32\x09\x61\xbc\x62\xb2\x7c\xa6\xb4\x6c\x9b\xec\xc4\x63\x25\x1f\xd7\x0c\xa4\x0a\x0f\xf1\x01\x9d\xfa\x42\xb8\xbe\xd7\xb6\xab\x66\xd4\x3b\x46\x3b\xcd\x42\x7a\xde\xf2\x14\x51\xf2\xa9\x4a\xb7\x42\x25\x15\xbe\xea\xab\x16\xd7\xd3\x1a\x6a\x77\xda\x72\x11\x16\x50\x68\x3b\xc0\x6b\x01\xcd\x7b\x7c\xad\xd8\x36\x52\x03\xe1\xe5\x1d\xaa\xb6\x86\xc4\x9e\x25\x8e\xb5\x9f\xbb\x08\x4f\x01\xfb\x87\xe1\x8a\x56\x6a\xd5\xea\x0e\xb4\x3a\x2e\x20\xce\x02\x52\x8d\x61\x06\x0d\x81\x55\x97\x03\x22\x70\x6b\xf7\xb7\x56\x4c\x9c\x06\x04\x36\xe4\x7e\x55\x02\xc0\xa6\xfc\xd7\xed\x40\x06\x51\x69\xae\x4c\x1e\x66\xf9\x54\x95\x6e\xd1\xd2\x48\x02\x95\xe6\x6a\x02\x3f\x67\x55\x95\x92\x5c\x48\x78\x59\xb5\x95\x7e\x0e\x59\xbb\x6f\xab\xcd\x83\x98\x41\xc8\x19\x1a\x10\x31\xd9\x20\x64\xed\x3c\x6c\x9c\x37\x29\xe7\xca\xd7\x6a\xb4\x45\xda\x86\xd9\x36\x90\x2b\xfc\xf7\x4a\xde\x67\x43\x73\x0c\x72\xa1\x5c\x8a\x4c\xf4\x7a\x42\xd8\xaa\xf2\x57\x9b\x48\xd9\xc3\x7a\xa7\x66\x68\xe2\x5e\x52\x64\x50\x59\xdf\xbc\x41\x9c\x50\x37\x1a\xa5\xd2\xf2\x41\x18\xdb\x63\x5f\x8a\xcb\x15\xe0\x8a\x4e\x8f\x0f\x92\xa8\x8a\x04\x5d\x9c\xb3\x48\xd0\xad\xa9\xba\xfd\xfb\xdb\xc1\xc0\x8f\x22\x13\xf7\x59\x4e\x1a\x2e\x29\xba\xd8\xf8\xda\x22\xbd\xb3\x22\x1b\x84\xe4\x05\x09\x31\x10\xbd\xaa\x90\x92\xd1\xe7\x25\x19\xd7\x80\xb3\x24\x18\x22\xd5\x59\xe1\xd7\xbc\xa5\x7c\x9c\xb7\xc6\xbb\xdc\x19\x95\xb3\xd3\x84\x63\xf2\x8a\x86\x71\xd5\x79\x9a\xe7\x0f\xb5\x47\x7e\x5a\xbe\x03\xcc\x0f\xb2\x17\x9b\x8a\x60\x6e\x73\xbc\xa5\x67\xff\x9f\xfe\x77\xed\x7d\xfb\x66\x69\xce\xb8\x9a\xaa\xa2\x21\x54\x82\xe0\xbd\x7e\xa4\x55\x4b\x51\xfd\xc4\x24\x33\xaf\x0b\x42\xa3\x3f\xa7\x21\xe6\x4f\xd4\x2c\xe4\x33\xed\xd8\x04\x26\xcb\xc2\xdc\x25\xda\x18\xe5\x37\xae\x40\xfe\x1a\x12\xa2\xb9\xbf\x6c\xcd\x9d\x00\xc0\x1c\xb0\x77\x5d\xe5\x00\xfd\x20\x28\x32\xb0\x0a\x4f\xa9\x8a\x11\xf8\x6d\x25\x09\xa9\x96\x2c\xc1\xf7\x79\xc1\x04\x83\xb5\x69\xd7\xc0\xf5\xae\xa7\x85\xce\x54\xeb\xd8\x55\x4f\xb7\x12\x37\xcc\x6f\x17\x28\x53\x4b\x23\xfd\xbd\xb1\xca\x62\x73\x5a\x02\xae\xd4\x25\x75\xe0\x0f\x8c\x9f\xcf\xa8\xdc\xf7\x29\x4f\xc5\x3c\xe8\x9d\x40\x2d\x1a\x31\x02\x5f\x4f\x68\x32\x04\x89\x59\xa9\x60\x5b\x91\x0a\x38\x27\x8c\xd2\xe2\x9b\x46\xa2\xa8\x25\x3f\x44\x4a\xdc\x82\xb2\x6c\xb5\xe7\x27\x98\x68\x64\x43\xaf\x29\x70\xfc\x5a\x52\xe4\x83\x69\x25\xe5\x71\x51\xe5\xf8\x61\x66\xe1\x47\x68\xba\xe8\x7b\x35\x5c\x43\xe9\xec\x26\x71\x96\xa7\xd4\xde\x62\x43\x42\xf4\x38\x49\xaa\xc4\xf5\x7c\xe4\x03\x33\xcc\x4c\xb4\x62\xb2\x87\x1c\x4a\x7e\x03\x58\x12\x54\x3d\x4e\x22\x49\xc4\x37\x63\x97\xca\xbd\xe7\x29\x45\x2f\xc4\xef\x30\x94\xc7\x55\x5a\x61\xc7\x44\x75\x30\x7e\x07\xf3\xc7\xba\xe0\x0d\x69\xeb\x03\x65\x34\x99\xfb\x45\xea\xc7\x39\xeb\x31\x49\x82\x50\x73\xc9\x5e\xad\x92\x0d\xaa\x9a\xcf\xd5\xaa\x38\x22\xd7\x83\xb0\xf4\x2e\xe3\x8c\x15\x17\xd6\xf5\x33\x1c\x55\x47\xc3\xaa\x09\xfb\x83\x0c\xa9\x76\x39\xd2\x69\x30\xa4\x67\xa9\x81\x8d\x70\xa9\x48\xe3\x30\x2f\x52\x9c\x03\x36\x4f\x66\x75\x46\xcf\x57\xac\xa9\xdf\x43\xc3\x08\x02\x06\x64\x20\x60\xf0\xde\xa3\xcf\xe0\xb8\x7a\x87\xce\x11\x21\x06\x90\xfc\x7a\x6c\xfa\x49\x4e\x85\x34\xb0\x92\x60\xbc\x35\x31\xdf\xfd\x8a\xac\xb6\x2b\xb8\xac\xd0\x89\x87\x41\x14\x11\x36\xa5\xa3\x0b\xf3\x8c\x50\xec\xcf\xb0\xbe\x71\x84\x7e\xdf\x73\x19\xbb\xae\xdf\x9b\x55\x34\xbd\xe8\xe5\xe2\x24\x43\x47\xf5\xfd\x5d\xd2\x74\xbb\x1b\xd4\xca\x8c\xf3\xea\x94\xa2\x43\xfa\x0d\xa5\xe2\x78\xbd\x89\x4d\x6b\xe4\x07\xcb\xbe\x95\x7c\x42\x9c\xc7\xc8\x75\x58\x03\x22\xb7\x5e\xd8\xbc\xa4\x30\x20\x99\xbf\xf6\xa8\xa2\x61\x9b\xc2\xe2\xd3\x7c\x8f\x28\x22\x80\x8d\x8c\x13\x54\x54\x3e\x95\x7e\x12\x7a\x72\x80\x95\x7e\x86\xf8\x55\xe0\x8e\x4c\x77\x1c\x91\x35\x77\x43\x22\x1d\xb7\x39\xb6\xe1\xd2\xf6\x3d\x1d\xd5\x53\x38\xd6\x9c\x02\x1b\x55\x5e\x1b\x45\xdd\x7d\x43\x3d\xfd\x57\xfe\xf1\x57\x5a\x8e\x19\xf1\xbc\x6e\x1a\xa8\x2e\xa1\x24\x83\x43\x2d\x62\xad\xf4\x3c\x7c\x53\x33\x08\x8b\x73\xed\x51\x91\x06\x03\x27\xec\xcd\x3c\x2f\x9e\x83\x7c\x9f\x55\x3b\x20\x18\x84\x2b\x7e\xa6\x82\xe4\x13\x3a\x48\x3e\x51\x3b\x55\x48\xb8\xa3\x6f\x4f\x15\x6c\x4a\x34\x8d\xf1\x75\x83\xba\xfb\x73\xc4\x12\x41\x3f\x82\x54\xe4\x3d\x4f\x15\xff\xef\xd5\xfa\xef\x9e\x69\xf7\xcc\xc8\xc4\x16\xd6\x65\xf5\x1e\x5c\x36\xda\xa9\x2f\xf9\xa9\xdf\x0d\x7d\xb6\xd9\x78\xec\xf3\xfa\x1d\xce\x57\x51\xbf\x66\x65\xa6\x5c\x01\x22\xe0\x81\x1e\x2b\xa1\x4c\x57\xfc\x0f\xff\x12\xf3\x26\xe5\x32\x5d\x3b\xb3\x85\xf2\x67\xbf\xf2\xff\xff\x05\x9a\x43\x81\x5a\xbb\xd6\xb0\xf3\x8a\xbb\x6a\x64\x82\x65\x40\x13\x10\xaf\xfe\xc0\x73\x81\xec\x0f\x9a\xaa\xb3\xab\xe0\x79\x24\xb3\xd4\xa4\x83\x23\xbe\x7f\x37\xe9\x93\x3f\x04\x63\xf0\x99\xa7\xd4\xf8\x3f\x43\xe5\x8d\xdf\xfa\xe9\xe1\x4e\x57\x3b\x7d\xb4\xa3\xe9\x88\xc7\x2a\x14\xb9\x47\xe6\xc4\x6e\x20\x5b\xaf\x7f\x1b\x02\x09\x2d\x24\x74\xe5\xc1\x69\xf3\x48\x11\x57\x66\x63\xb8\x96\x86\x7e\x8f\x4e\x71\x1b\xcf\xdb\xe2\x00\x30\x00\xa2\x51\xea\xb6\x42\x94\xbf\xde\x52\x4e\xda\x86\xa7\xfd\xb7\x8d\xca\x66\x78\x7a\xc5\x80\xa8\x53\x08\x2e\xe8\x91\x28\x0d\xfe\xd0\x97\x68\x47\x2a\x78\xc9\x41\xc7\xf0\x62\xeb\x02\x77\xe8\xbd\x84\xc1\xcc\x99\xbb\x38\x59\x7d\x5c\x15\x9b\x6f\x7b\x4a\xb7\xe8\x24\x65\x77\x25\x38\x2a\x03\x62\x4d\x88\x81\xd2\x30\x88\xc6\xe1\x1d\x6d\xe7\x8c\x1e\x52\x88\x70\x7c\x88\x29\xe4\x99\x3d\x1d\x97\xba\xba\x39\x76\x58\xf0\x6f\xe9\x9c\xe3\x45\xcd\x52\xbc\x7d\xe2\x32\x34\xdf\x41\x3e\xcd\x16\x10\x1c\x55\xce\xff\x0a\x53\x09\x3a\x92\x77\x3d\xd5\x16\x7d\x5e\xe5\xca\xc3\xdc\x8f\x42\xc6\xeb\x58\x6e\x53\xa7\x5f\x51\x0e\x87\xf5\x14\x56\x93\xbd\x2a\x93\x30\xdd\xa1\xf6\x43\xf1\x5e\xcb\x47\x12\x6d\x29\xfa\x61\xd1\x51\xc4\x76\xe2\x3f\xf3\xb4\x40\x2d\x84\x5b\xb0\xed\x18\xab\xa1\x98\xa8\x5f\x62\xcb\xfb\x11\xf2\xff\x0c\x75\x51\x14\x80\xdf\xd7\x5d\x3a\x97\x15\xfd\xf1\xc3\x1d\x57\xe2\x3e\xa1\x36\xf0\xac\xee\xb1\xbf\x8e\x88\x96\x3b\x42\x75\xed\x6a\x5b\xa7\x81\x66\x34\x1f\x98\x74\x08\xc0\x02\xec\xf6\x6f\x6a\x16\x9b\xdf\xd4\x78\xab\xb4\x48\xd7\xb0\x76\x6d\x15\xf8\x6b\x2f\xda\x26\x97\x7a\x61\xeb\x60\x3b\xf7\x89\xcd\xc2\x39\xc6\x47\x61\x5c\xf8\xc6\xa5\x52\x48\x69\x9a\x50\xb5\x52\x79\x1f\xbb\x26\xb3\x5d\xba\x7c\xf4\x80\x26\x04\x86\xf1\x42\xcd\x9a\x2e\x94\x06\x25\xcb\x57\x09\xfa\xba\x28\x28\x55\x94\xf4\x25\x85\xe7\x12\x1f\x91\xc9\x32\x96\x5c\x11\xf1\x88\xf2\x60\x94\x78\xdc\x25\x3f\x2e\x69\x10\x4f\x42\xa1\x03\x59\x78\x61\xae\x71\x38\xe0\x7a\x6c\x72\xe8\x85\x76\x11\x9b\x2c\x48\xc8\x7c\x61\xc7\x5e\xd1\x80\xb0\x2b\x9e\x56\x8c\x28\x7a\x6b\x02\x7f\xc3\x21\x83\x0c\x30\x5f\xd7\x90\x6c\x87\xe7\x16\xda\x3d\x7c\x35\xbc\x12\xee\xe1\xe3\x1b\x95\x80\x8b\x4d\xbe\x9a\xa4\xcb\xc0\x3d\x48\x12\x88\x16\x34\x36\xfe\x1f\x29\x2a\xa5\x73\xe3\xbf\x5b\xb7\xd4\x61\x9c\x9b\x34\x48\xe2\x3c\x8c\x09\xfe\xd9\xd2\x69\xf7\x4a\xd7\x84\x35\x90\xd4\xea\x32\xe5\xda\xc7\xa7\xa9\x74\x00\x67\x7f\xd7\x44\x7b\x5c\xd6\x11\x7c\xa5\xe8\xf5\x87\xfc\xfd\x87\xe7\x1c\x4f\xb2\x65\xb3\x39\x61\xff\xd4\xa4\x61\x3e\x20\x66\xe7\x29\xd7\x7f\xf3\x23\x4d\x85\xb9\xa9\xda\x7e\xb6\x77\xdc\x29\x65\x56\x4c\xbc\x17\x3b\x16\x16\xed\x8f\x3d\x55\x27\x38\x32\x56\x4e\xf2\x2d\xcf\xd5\x56\xbf\x4f\x56\xcc\xa2\xd2\x5d\x20\xf6\x36\x06\x52\xd5\x8b\x9f\xab\xe4\x9d\x60\x04\xef\x2b\x99\x92\x63\xe4\x62\x5a\xba\x70\x55\x60\xac\x76\x04\xbb\xdd\x76\x53\x83\x56\x6f\x55\x7b\x85\x69\xca\x2d\x7c\x7f\x51\x98\x77\xce\x29\x6c\x74\x6a\xfa\x45\x44\x40\xb5\x69\x57\x13\x3e\x8a\x4f\xc2\x87\xfd\x14\xaf\x0d\xff\x00\x09\x26\x61\x30\x73\xa0\xd3\x6e\x12\xf5\x4c\xda\x72\x87\x0f\x28\xc3\xf9\xda\x12\xe6\x08\xfe\x5c\x08\xa8\x90\x7f\x9a\xed\xb8\xfe\x0b\x8e\x35\x45\x4f\xbc\xa9\xf3\x63\x60\xac\xb8\x00\x77\xd5\x60\x96\xa4\xc5\xc6\x3d\xd5\xaa\x31\xcb\x11\x10\x78\x38\x71\x51\xa3\xe2\xeb\x89\x53\x21\xc8\x58\x43\xcf\x6a\x80\x3a\x3d\x50\xeb\x69\xf4\x4c\x48\xfd\x76\xa8\x31\xdf\x57\x2c\x76\x17\x35\x65\xc9\x37\x61\xcb\x19\x72\xa2\x68\xe7\xa2\x62\x18\x23\xc2\x43\x2d\x90\x13\x20\x08\xe3\xde\xc7\x19\x82\x7f\x81\xdf\x01\xa8\xc7\xf6\x4e\xdd\x96\x1d\x2c\x67\x2d\x4d\x8a\x11\x6d\x05\x18\xc3\x23\xf8\x36\xbe\xb1\x14\xe0\xe1\x70\x94\x64\x5b\xf2\xbd\x47\x3d\xb7\xd5\x8f\xd6\x4c\x25\x65\xf2\xbb\xe1\x72\x18\x87\xca\xe5\x7e\xc7\x73\xe9\xfb\x77\x9a\xe8\x8f\x03\x13\x21\x67\xc6\xa2\xdc\x0a\x06\x53\xaf\x16\x2c\xce\xb5\x7b\xfe\x90\x28\x7b\xed\x8b\x9e\x1c\x3b\x7c\xcb\x49\xd5\x8e\x9c\xe5\x6b\x11\xa5\x8e\x17\x0f\x54\x04\x52\xb1\x74\x2e\x79\xae\xcb\xf0\xdf\x54\x32\xc7\x4b\x45\xf4\x58\xf9\x8d\x32\x2b\x4e\x92\xf8\x21\xe2\x7e\x94\x94\x54\xcb\x72\x04\x82\x4f\x15\x7f\x0f\x6d\xfc\xcd\x4d\x2d\x6c\x80\x03\x14\x21\xe3\xee\x8e\x62\xb4\x9e\x99\xa8\x28\x83\x69\xc4\x6d\x67\xe9\xfe\xfd\x07\x37\xef\xe9\xdd\xfb\x30\x61\x27\x81\xfb\xb8\xcb\xce\x37\xa6\x6d\xa2\x92\xef\x4b\x26\x2a\x4f\x13\x45\xa2\x86\x21\x95\x15\xb2\x5b\xc9\x58\x87\xbd\x27\x69\xf2\x61\x67\xc1\x4e\x0f\x98\xd4\xf6\x89\x4a\x65\x5c\x70\x48\xb8\x7f\xf1\xb7\x27\xba\xf8\xae\xd4\x1c\x77\x80\x00\x9f\x89\x55\x3d\xb5\x96\x41\x6e\x8a\xd7\x9f\x46\xaf\x16\xc6\xea\x9a\x66\x77\x6c\x75\x5c\x38\x0e\xd9\x39\x34\xc6\xfe\x44\x4b\x2f\xb3\xfb\x8d\xe8\xf0\xa1\x0e\x25\xa2\x60\x2a\xbe\x85\x41\x46\xca\x02\x4c\x9e\x00\x0b\x9d\x61\x4f\x0a\x89\xf7\x47\xe0\x8b\x09\xda\xdf\xb9\x77\x4b\x54\xb9\x4a\xa7\x74\x61\x1a\xef\x2d\xdc\x62\xf4\xcb\xf0\x9b\xee\xaa\x65\x36\x34\x69\x1a\x46\x51\x4b\x35\x0e\x70\x82\x5a\xe8\x86\xea\x20\xf6\x83\xed\x30\x1e\x18\xa0\xae\x1d\xb2\x0c\x19\x23\x59\xc8\x5b\xe1\xc1\xf3\x87\xda\xa9\x01\xb3\x70\x90\xdb\xaa\x3f\xc6\xe8\xa4\xe2\x63\x47\xf5\x51\x20\x97\x4f\x29\x93\xb6\x66\xd2\x81\x6f\x8a\xd2\x43\x51\xa4\xfc\x9f\xd2\x02\x97\x50\xa4\x5c\x01\x58\xec\x37\x6b\xe9\xba\xd2\x35\x58\x22\x29\x4c\xab\x7c\x88\xa5\x25\x91\xbb\x84\x76\x3d\x7f\x15\xca\xc8\x88\xb9\xa6\x3a\x4a\x0f\xf7\xf8\x58\x33\x29\x3b\x67\xfa\x5c\xa5\x1b\x2c\x19\x8d\x98\x2c\x04\x13\x3a\x43\x10\x03\x78\x72\x7f\xa0\x89\x0a\x4f\xe8\xb3\x71\xb3\x86\x84\x17\xec\xad\xff\xe5\xa9\xed\x5f\x96\x66\x48\xa5\xe5\xc3\x24\x22\x18\xad\x0d\x45\x2b\x26\xad\x9f\x3d\x2a\xb5\x5a\x3e\x15\x4b\xd6\xf6\x19\x8d\x14\x92\x56\xd7\x14\x63\x4e\x36\x32\x01\x8e\x45\xee\xc4\x92\x83\x46\x1d\x3a\xb6\xa7\xfc\xbf\x85\x97\xa9\xce\xe9\xd6\x1e\x26\x71\x98\x27\xa9\x8a\x5e\xd7\x15\x72\x68\xbd\x66\x64\x9f\x69\x67\xab\xc2\x44\x2d\x71\x8d\x82\xdf\x70\x9f\x29\xcc\xda\xed\xf1\x2e\xd7\xbc\xb2\xf4\x84\xda\xac\xff\x03\x8a\xe4\x02\xe0\xd0\xdd\x0d\xe5\x10\x55\xb8\x33\xb0\x4b\xa6\x27\x4e\x16\x93\x1b\x39\x31\x4f\x7f\xac\xca\xbb\x77\xb1\x57\x90\xbe\x9b\x86\x3d\xc4\x74\xfc\x00\x8e\x27\xe2\x8e\x2b\x28\x73\x63\xec\x21\x0b\x6b\xd5\x26\xca\x7d\x8f\xb5\x7c\x87\x66\x45\x84\x69\x69\xd5\x21\xcf\x76\x9e\x12\xb0\x68\x0c\xda\xd6\xd1\x4c\x1b\xd7\xc8\xbd\x11\x87\xe5\x71\x0d\x49\x18\x8e\xf2\x68\x6d\x46\xd1\xc2\xfd\x2e\x7d\x8b\xe5\x1f\x2f\x9f\x1b\x53\xfa\x27\x84\x13\x50\xa2\xbd\x0b\xd6\xf8\xd8\x76\xa8\x24\x62\xc1\x3d\x5d\x5a\xe7\xeb\x5a\x7e\x57\xd6\xed\x30\xec\x19\x3f\xcb\xa7\x55\xd2\xe1\x2d\x80\x44\xb4\x7c\x07\x02\x48\xc8\x4d\xc9\xd3\xa9\x12\x83\xe9\xed\x69\x59\x91\x8f\xbf\x3f\x29\x5d\x11\x2b\x12\x58\x8e\x30\x19\xf9\x7f\xf7\x38\x81\x0f\x71\xb8\xcf\x4c\x74\xfa\x93\x65\x88\x31\x5f\x1f\xe1\xf5\x28\xb0\xfc\x5b\xcf\xc2\x9a\x56\x22\x6f\x0c\x38\x13\x98\xc0\x33\x7f\x88\xc2\x70\x54\xa7\x30\x77\xb4\xa9\x9f\xdd\x33\x71\x45\x98\x5f\xfc\x05\x9c\x1f\x96\x46\xcd\x51\x32\x3d\x45\x9b\x1f\xab\xf0\xb1\x8e\xe2\x66\xe7\xb4\xe7\x4e\x57\xe7\xbd\x48\x08\x50\x2c\x86\x53\x78\x3b\xc4\x9d\x7f\x8a\xe8\x1f\x5f\x08\x5f\x14\x2e\xed\x76\x7a\x6d\xfe\xff\xf0\xa5\xb0\xc8\x6e\x7b\x0e\xaf\xf4\x41\xcd\x16\xee\xdb\xd7\xf6\x03\x5b\x53\x12\x12\x5f\x7a\x1d\xbe\xd9\x4a\x56\x5d\x5a\xfd\x67\x1e\xa7\xa7\x10\x82\x2f\xfa\x2c\xeb\xb8\xd3\xca\xb5\x9a\x40\x2f\x56\x52\x4c\x4c\x7d\xf5\xea\x1e\x72\x00\xc4\xb4\x2b\x75\xaa\x59\x00\xb4\xad\xba\x43\x39\x5d\x18\xfa\x72\xb8\x0f\x6c\xc2\xd9\xc1\x04\xa0\xeb\x06\xb1\xeb\x55\xcd\x17\xc3\x50\x38\x78\xd3\x6f\xab\x14\xf0\xe9\x71\x45\xf8\xd5\xe9\x8a\x5f\xd9\x5a\xdc\x7b\xf1\x40\xfb\x6b\x2f\xb6\xaa\x07\xf1\xe2\x9c\x5c\x37\x60\xfb\x0f\xb4\x57\x42\xb3\x9a\xa1\xbe\x0c\xef\xfa\xec\x58\x9d\x16\xef\x7b\x15\x6e\x52\x7a\x0e\xfe\x33\xef\x29\xd5\x9f\x9e\x8c\x88\x0d\x71\xc5\x64\xdb\xdc\x16\xee\xfb\xf9\x80\x24\xd6\xcb\x17\x46\x86\xe0\x24\x0d\x04\x5f\x37\xa1\x9f\x4c\x9c\x0f\x8a\x2c\xf4\xb3\x9c\xa5\x52\x9a\x02\x7e\xe7\x42\xa5\x7e\x6e\x48\xbb\x17\xe9\xd2\x1b\x63\xc5\xed\x34\xf1\x5a\x5f\x9f\xb7\x10\x67\x85\xbf\xbd\x82\xb5\xc8\xd4\x57\x98\x02\xa4\xc2\x91\x5f\xc3\x81\x78\x8f\x7c\x20\xe1\xc7\x50\x60\x03\x4f\x91\xf7\x63\x09\xc1\xbb\xbe\x0b\x7b\x89\xf4\xcf\x3b\xba\xd7\xe8\x94\x4e\x19\xdd\x54\x9a\x9c\x7e\x3f\x35\xa6\xb7\xd3\x35\x86\x9d\xc6\x72\x93\xe6\x7b\x57\xdd\xdf\xc4\x9b\xd9\x7c\x52\xf9\xcc\xb0\xd9\x8c\xc5\x15\x5a\x35\x18\x0e\x9c\xb4\x9f\xe0\x77\x05\xa9\xbc\x47\x95\x8e\x88\x78\x79\xa7\x6a\xbd\x7e\x8b\x16\x1c\x0c\xce\x35\xdd\x6c\xcd\x39\x7b\x24\x20\x67\xf1\x63\x08\x0f\x6e\x29\xed\x2c\xa1\x4f\x12\x38\x81\x0b\x40\xd6\x2d\x82\xcf\xcf\x06\xfe\x90\x01\x43\xba\xd0\x21\x4c\x94\x5b\xcf\xcd\x03\x8b\x07\xda\xdd\x62\x8d\xce\x59\x25\x61\xe5\x18\x64\x1a\x78\x39\xc3\xf8\x95\x22\x0e\xa4\xa7\x48\xfa\x79\xd0\x11\xc9\xd7\x4d\x2d\x2e\xbd\xb4\x5c\xbb\x5b\xba\xe6\x6d\xcb\x30\x63\x1c\x50\x06\x3b\xd9\x44\x2c\x97\x45\x61\x0f\x21\xa2\x15\xa0\xb2\x28\x24\x34\x40\x09\x8b\x2f\xad\x43\x58\x82\x99\x8e\xc4\xb1\xaf\x18\x3f\x46\xe7\x23\x9e\xf1\xe6\x58\xe7\x60\xd7\xf5\x0c\xb4\x3a\x7b\x14\x53\xb9\x9f\x0b\x6e\x45\xba\xda\x1c\x96\xf4\x96\x02\x50\xe5\xc9\xf2\x5a\x41\xb5\x03\xd0\x42\x6c\x07\x1e\x1e\xae\x3b\x23\xc4\xf8\x66\xec\x1c\xc7\x6b\xe3\xd2\x10\x8a\x58\xeb\x13\xb5\x96\xc5\x68\x6d\xa7\xca\x4d\xa1\xbf\x08\x49\xf7\x1d\x1d\xd5\x73\xf6\x53\x6c\x31\xbe\x21\xfb\xa5\x65\x5e\xe1\x05\x4d\xe1\x2c\x62\xfe\x7d\x4f\xc5\x65\x9f\x68\x60\xa7\x1f\xf9\x01\xba\x2a\x11\x46\x9e\x57\x0d\xbc\xe7\x1b\xaa\x37\x07\x88\x43\x91\x62\x50\xe1\xee\x73\x6c\xd3\xff\x59\xd3\x33\x8f\x9d\x3d\x2b\xe2\xac\x08\x02\x93\x65\x4b\x45\x34\xa3\x04\x0a\xee\x29\x82\x75\x16\xc9\xe0\x7f\xa0\x17\xb1\xa4\x82\xe5\xb3\x8b\xd8\x81\x4c\x71\x64\xfc\x15\xb3\xc3\xb9\x8c\x50\xf6\x63\xe2\x53\xaa\xeb\x09\xf4\x9f\x86\x14\x53\x38\x45\x31\x99\x6a\x07\x13\x64\xf8\xef\xd6\x22\xf3\x7d\xfb\xda\xb9\x9f\xe6\x7e\xac\x7a\xbe\xaf\xa8\x9e\xef\x2b\xaa\xc2\x9a\x0d\x12\x93\xcd\xb8\x6c\x1f\xf2\x55\x42\x39\x48\x36\x03\xbf\xff\x23\xbc\x0b\x2f\x43\x7a\x62\xf8\x55\x1f\xdb\x94\x60\xb4\x96\x86\x01\xef\x1c\x44\x6a\x37\x5c\xc9\xe0\x37\x3f\xae\xf4\xb0\x55\x8b\xcb\xab\xc0\xc3\x88\xa9\x72\x55\xdd\x4f\x9a\x84\xd3\x86\x7e\x18\x29\xf2\x03\x2c\x1d\xbe\xb6\x60\xe2\x55\x7f\x6d\x55\x48\x12\x30\xb4\x57\xd5\x30\x5f\xad\x0d\xda\xe1\xb9\x97\xda\xc3\x22\x5d\x5e\x9b\x72\x4e\xd5\x47\x27\x95\xf8\xff\x06\x1d\x02\x9c\x13\x74\xec\xd1\x83\x34\xcc\xf2\xa1\x2f\xc9\x30\xa1\xc4\x71\x80\x03\xc6\x67\xc3\x9b\xbb\xa9\xc9\x90\xfc\xec\x6f\x20\x73\x20\x84\xe9\x8a\xd4\xe8\xbf\xe2\x04\x81\x5d\x87\x7e\x06\x1e\xe3\x61\xf4\x36\x31\xe3\xc5\xc4\xb2\x26\xef\x38\xea\xa9\x08\xe1\x94\x3e\xe4\x3e\x25\x97\x18\xf9\x83\x4f\xc8\xc7\x16\x45\x40\x9a\x2a\xdc\x4c\x4d\x28\xa6\x90\x33\x96\x1c\x5b\x6e\xc2\x45\xbc\x80\x38\x71\x67\xc7\xd9\xc2\x63\xc8\x88\xc0\x23\x18\xe3\x24\x45\x78\x76\x42\x91\x48\xce\x76\x4a\xcb\xc1\xff\x9f\xaa\x0a\xa2\x4a\xa2\x15\x42\x68\xa1\xe0\xf7\x98\xd6\x1b\x19\x61\x48\x4b\x63\xa5\x6d\x9b\xb4\x7e\xed\x9f\xb1\x07\xb3\xa1\x8a\x17\x79\x98\x1a\x00\x6e\xec\x97\xd9\x5e\x2c\xb4\x85\x61\x80\xcf\x6e\xf5\x91\x9e\x69\xef\xdf\xbf\xb8\x9b\xde\x0e\x8b\xfc\x0a\xd8\x29\x35\x39\x8f\x90\x38\x29\x56\xc9\xb3\xf4\x4c\xb6\x65\xc0\x61\x49\x37\xbc\xa9\x17\x2d\xae\x70\x5d\x47\x25\x77\x35\x7b\x27\xc2\x24\xd8\xa0\x4d\xa5\xdb\x3a\x4b\xb0\x7c\xe4\x12\x6f\x8e\x9d\x77\xb4\xab\x26\xbb\xf8\xfc\x42\xbb\x9b\x1a\x7f\x99\x5e\x5a\x0e\x29\x9a\x3f\xdb\x64\x65\x19\x26\x4f\xd5\x4c\xe1\x81\x17\x0e\xb6\xfb\x49\xd2\x9b\x52\xad\x0f\x3f\x54\xe9\xa3\xbf\xa6\x67\x12\x79\x80\x86\xec\xad\xbf\x6a\xb2\x64\x08\xdb\x2b\x9a\xd2\x2d\xa7\x2f\xdd\xd4\xd3\x9a\x16\xb1\x28\xc1\xb1\x80\x14\xb6\x85\xa8\x49\x6d\x3d\xbf\x17\xe7\x48\xe3\x82\x11\x41\x53\x4e\x56\xf1\x63\x55\x2e\xf8\xb8\x86\x32\x9b\x3f\xd4\x8e\x93\x78\x25\x4c\x0b\x30\x41\xda\xe6\x2c\xd4\xdc\xf9\x5a\xc5\x96\xfd\xd4\x8f\xad\x36\x94\x96\xd2\xb5\x05\xb3\x72\x12\xa5\xae\x68\x77\x7d\x5a\xc4\xc1\x20\x34\xe9\x14\x2d\x1e\xec\xb9\x4b\x8a\xef\x6d\x1d\x29\x30\x9c\x5a\xdf\x19\x6b\x5d\xbd\xf2\xd7\x66\x5d\xd5\x6c\xc7\xc4\x9d\x5a\x9b\x58\x19\x70\x09\x7e\x82\x6d\xc7\x37\xb4\x1c\xe0\xc0\xfe\x3e\xad\x4b\x64\xad\xd7\x75\x95\xe7\x1b\x36\x51\x9d\x0d\x92\x1e\xcb\xa8\x20\xb4\x82\x41\xe2\x6b\x65\x83\xfc\xff\x1f\xe3\x1d\x59\xef\x08\x19\x00\x11\x3f\x52\x2c\x4a\xf1\xeb\x3b\x68\xbe\x80\xd2\xdb\x5b\xd1\xc0\xa7\xcf\xb0\x91\xa4\xad\x81\xd8\xe9\x28\xfd\xa6\x65\xe5\x70\xe8\x93\x3a\xb7\xf0\xfc\xa1\xf6\xc0\x44\xd1\xb4\xf2\x78\x81\x39\xc4\x41\x08\x59\x08\xa9\xb7\xd3\x16\xc5\x30\x9f\xb6\x0e\x65\x3f\x4d\xb2\x8c\x39\xfc\x39\x53\xaa\x7a\xe0\x2f\xa8\xc2\x60\xb7\x48\x7b\x26\x46\xca\x8e\x1b\x06\x3c\x45\x35\x74\x86\x66\x11\xa6\xfb\x4e\x85\x08\x30\xcd\xb9\x38\x02\x7b\xfb\xa1\x26\x1c\xfc\xb0\x06\x60\xd9\xbf\x1f\x7c\x21\x45\x2a\x34\x96\xf6\xf9\xcb\x1f\x13\x92\x94\x06\x26\x8f\xd5\x34\x89\x7b\xfd\xc4\x26\xfc\x59\x16\x6d\xec\x72\x46\x1f\xab\x7e\x8d\x15\x33\x30\x43\x72\xc0\xa6\x95\xe4\x13\x0b\xfd\x28\xf1\xf7\x4d\x68\x0d\x6c\x5e\x52\x86\x33\x48\x8a\x60\xd0\xd2\x68\xa3\x0a\x1f\x7c\x8d\x66\x64\x71\x0e\x22\x51\x3d\x63\x39\xd3\x31\x59\xa7\xb1\x6e\xf8\xa6\x02\xd9\xe8\xae\xed\x9d\x72\x52\xba\x9b\x54\x3d\x47\x29\x0e\xe4\x2b\x36\x77\x78\xc0\x52\x4a\xf2\xb9\x62\xdb\xbd\xca\x6d\x80\xf1\x3a\xa9\xfa\xb7\x11\x48\xa3\x68\x70\x83\x96\x1d\x72\x4a\x57\x34\xca\xfd\x34\x1d\x38\xd8\x69\x67\xb1\x27\x61\x2e\xef\x61\xf6\x60\xaa\x3f\x52\x24\x15\x42\x7d\xc9\xbd\x5a\xb0\xfb\x38\x7f\xf6\x80\xe4\x00\x5f\x00\x24\x18\x76\xe1\xfb\x6a\x4c\xa1\xf1\xa0\x93\x6a\x2d\x4b\xee\x7d\x57\x35\xf6\xe6\x61\xd7\xe4\xe4\xf5\xc0\xa5\xb8\xa1\xf3\x80\x37\x1a\x7b\x3a\x80\xe5\xb7\xeb\x82\x5f\x5d\x09\x22\xdf\xb0\x30\xf3\xd2\x6a\xe6\x7e\x37\x29\x2c\x37\x0b\x52\x74\xac\x9a\xc9\x37\x6a\x83\xe7\xc1\x1a\xe3\xec\xc4\xa9\x52\xf2\x86\x90\xb2\xe5\xca\x84\xa7\xd8\xfe\x3e\xac\x65\xcb\x4a\x37\x8a\xb2\xf7\x4b\xb6\xfb\x44\xec\xea\x71\x75\xd4\xd5\x35\xa3\x0e\xcf\x2d\xb4\xfd\xa0\xdc\xc5\xe4\xa1\x73\xe7\xb0\x0a\xb0\x8f\xd3\x24\x49\xe6\xc3\xc5\x01\xc3\x24\xed\xfb\xf1\xac\xa2\xb0\xbc\x0c\xdf\x49\xd3\xf9\xf3\x3f\xd0\x9c\xc1\xb3\x3c\x8a\xb2\x88\x70\x66\x95\xbf\xc9\xff\x00\x7b\x06\xaf\xe6\xba\x92\xad\x0d\x03\xd3\x35\x69\x7f\x4a\xaf\x0f\x1c\xb4\xa8\x81\x00\x15\x24\x95\x6a\xd5\x7e\xea\xc7\xdc\x65\x28\x60\x37\x7a\x56\xc9\x99\x56\x20\x71\x4a\xba\xd7\xb1\x37\x25\xa9\xd1\x1c\xb2\x97\x15\x0f\x23\xa7\x9e\x58\x5c\xaf\x01\xd5\x7b\xb0\x9d\x9b\xb8\x37\xe5\x9e\x0c\xd0\x3f\x21\x92\xa4\xaf\x85\xaf\xfe\x83\x66\xcd\xef\x10\xbd\x1b\xb0\xb7\x9f\x29\xa6\xae\xcf\xd4\xea\x89\xe3\x67\x5b\x95\x22\x5b\xb9\x44\x44\xc0\xab\xde\x16\x97\xa7\xfe\x8a\x89\xa6\x14\xf0\x0a\xa0\x66\xe4\x37\xce\x29\x4b\x77\xad\x52\x0e\x0c\xd3\xe1\xc3\xb4\xf4\x61\x40\xa0\xbd\x8f\x22\xd9\x1b\x9e\x92\x61\xf8\x1f\x55\x5f\x04\xa5\x9b\x37\x2f\x91\x81\x50\x5d\xbb\x32\xf3\xcc\x31\x8f\x4c\x0d\x53\x13\x23\x22\xfc\x80\xa6\x16\x59\xe1\x7b\x8d\xf9\x32\xbf\xef\x87\xf1\x94\x62\xd1\x41\xed\x07\xeb\xee\xaf\xc6\x8a\xb1\xeb\x7c\x6d\x6c\xf7\xef\x6f\xe7\x56\x34\x56\xce\xf2\x96\x55\xa7\x5d\x57\x83\xdb\x37\xd9\xa3\xe5\x9c\xe1\x45\x1f\x9a\x30\x7e\xd4\x91\x12\x4e\xfd\x7d\x4e\xa3\xe3\x7c\x7f\xb2\xa3\xf0\x73\xf7\x35\x70\x9b\xd5\x17\x6d\x81\xba\x1a\x50\x8a\x0e\xc4\xcc\xc4\x86\xfd\xff\xf1\xef\x51\x8a\x5a\xba\x20\xcb\x75\x27\x85\x13\x75\x64\xfe\xc3\x8e\xad\x08\xcd\x3e\xde\x54\xed\x1f\x98\xa5\xdc\x3a\x4b\x48\x9d\x5d\x52\x34\x7a\x5c\x2f\x94\x9a\xc9\x56\xd3\x57\xba\xab\xa9\xf1\x7b\x61\x6c\x58\xf6\x8e\xfb\x09\x95\x90\x7b\xdd\xa5\x28\x97\xbe\x3f\xe2\xa2\x9e\x15\xaa\xde\xbf\xdf\xf2\xfd\xaa\x18\xd8\xa4\x2b\xe8\x76\xb4\x2c\x21\x96\xc5\xff\xa2\xe2\xc8\xa3\xc6\x8d\x30\xee\x53\xb8\x2c\x13\xeb\x12\x3a\x53\x00\xbd\xe0\x35\xee\xf2\x31\x02\x0f\x90\xd1\x89\x02\x61\xdd\x5a\x4f\x94\x12\x43\xcf\xc4\xe1\xeb\x46\xb8\x6a\x61\x07\xae\x68\x8b\xad\x09\x87\x92\xee\x4a\x48\xbe\x71\x39\x76\x2c\xa8\xee\x29\x94\xd5\x39\xeb\xad\xfa\x79\x1e\xe6\x45\xcf\x64\x3b\x54\x68\x0b\xf2\x0a\x5b\x42\x7a\xde\xfd\xff\x72\x61\x6d\x9e\xd0\xfb\x82\x41\x5a\xd2\x69\x56\xc7\xea\x2e\xb6\xc3\x78\x29\x49\x87\x5c\x3d\xc3\x69\xb4\xad\xa3\x90\xa7\xdb\x26\x8f\xab\x82\xde\x8a\xc9\xe9\xd1\x15\x63\xa4\x12\x7c\xb9\xa8\xb3\x55\x7e\x36\x08\x2b\x7c\x33\xba\x39\x4a\xbd\x21\x89\xbc\x9a\x69\xa5\x3d\xcf\xd8\x0c\x4d\x0f\x6a\x9b\xfe\x2d\xde\xe0\xb3\x5a\x74\xf4\xfc\x42\x7b\x14\xfa\x71\xa2\x44\x94\x39\x31\xcc\x37\x0d\x1c\xbe\xa5\xc3\x9d\xe5\xfe\x72\xb2\x12\x06\xa0\x50\x57\x12\x34\x96\xdf\x4d\x61\xc1\x86\x7e\xe0\xa7\x49\x1c\xb6\xdc\x91\xc8\x64\xdc\x7c\xa3\xfa\x52\x0e\xfd\xd3\xf9\x19\x27\x3e\xf1\x03\xb2\x64\x88\xd9\x5f\x1e\xab\x46\x01\x30\x90\xa8\x96\x1a\x81\x3c\x4d\x75\x9a\x5a\x16\xe0\x4c\x94\x9e\x23\x63\xd5\x45\x4e\x1c\xeb\x16\x25\x0b\xe6\xdd\xe4\x3a\x44\x53\x6b\x4e\x54\x0c\xbb\x86\x65\xec\x2d\x21\xb8\xed\x8c\x3a\x57\x43\xa6\x1c\x9e\x83\x7b\x10\x14\x2c\x84\x85\x1a\xfb\x27\xaa\xde\xfe\x49\xd3\xef\x8c\xfc\x94\xa0\xc4\xba\x65\x6e\xcb\xd8\xca\x36\x4d\x8a\x3c\xf2\x57\x79\x29\x32\xed\xba\xce\xc1\x5c\xad\xf6\xc9\xac\x19\x8d\xd9\x3d\x57\xc1\xec\x9e\x6b\xca\xad\x95\xdb\x29\xe0\xc5\x2b\x6e\x73\xcb\x0a\x26\x6c\xd8\x90\xc4\x64\x99\x89\x72\x18\x16\x38\x90\x4c\x78\xcd\x37\x55\xf5\x80\x51\x4e\xb9\x7f\xa1\xea\x23\x77\x18\xb1\xdf\x65\x25\xd5\x7f\x9a\x0a\xbc\xfc\xff\xb1\x2a\x25\x3b\x55\xa1\xe6\x72\xf9\x22\x81\xf4\xf3\xbf\x34\xb1\x56\x27\xf9\xc0\xa4\xab\x21\xab\x97\xc0\x8b\xfe\x54\x49\xe9\x81\xae\x8e\x85\x3f\xe1\x8e\xb3\xdf\x3c\xde\xab\x99\x0c\x48\xba\xb6\x5a\x86\xf3\x74\x19\xce\x8e\x4c\x18\xaf\x84\xb6\x60\x07\x86\x08\xe0\xfa\xf9\x7a\xab\x2a\xc5\x02\x89\x0b\x7e\xa9\x65\x85\x43\x4e\x8d\xb7\x7f\xd9\x26\xa3\x29\xf9\x8a\xd5\xfb\x96\x57\x01\xcc\x93\xbb\x6e\x4b\x59\x0e\x07\xbd\xb3\xa3\xb0\x5e\x2c\x72\x22\x3c\x0d\x34\xa6\x48\x2f\xdc\xf1\x74\x53\x39\xa5\xb7\xf0\x26\x60\xbf\xc6\x16\x41\xfc\x8e\xc3\xe2\x2e\x18\x96\xa5\x2a\x56\x61\x58\x76\x44\x01\x77\x78\x46\x38\x7c\x86\xcd\xc6\xa8\x7f\xd7\x53\x95\x0a\x40\x32\x44\xa8\x83\x4e\x6e\xc5\x34\x22\xdd\x49\x9f\xd0\x44\x71\xa2\x81\x52\x94\x48\xeb\x9f\x44\x8c\xa8\x66\xfa\x67\xdb\x01\xb7\x19\x5b\x22\x5c\xbb\xe0\x7e\x6c\xf3\xa6\x59\x6e\x56\xca\x23\x08\xcf\x28\x47\x89\x6a\x28\x38\x57\xdb\x9e\x2f\xbf\xdc\x4e\x4d\x69\xfe\x5b\xba\x5b\xd2\xa1\x51\xea\x62\xaf\xa5\xc5\x2c\xba\xc3\x30\xb7\xab\xa0\xe9\x53\x5b\x93\x3b\x87\xe7\xda\x7e\x91\x27\xfd\xd4\x1f\x0d\xb8\x73\x7c\xf3\x9a\x52\x28\x7e\x13\x6b\x53\x12\x73\x5f\xfe\x9c\x53\x96\xe8\xd6\xcd\xc0\xc4\x59\xb8\x62\x08\x5d\x8a\x95\x74\x55\x75\xd8\x73\x93\x32\xb3\xe4\xd4\x36\xcd\xc2\x42\x9b\x04\xc7\x9c\x86\x0c\xc2\x5b\x4e\xcc\xf3\x4d\xed\x9c\x7f\x71\x71\xae\xdd\x4b\x7d\x82\xb5\x42\x7b\xf5\x73\x78\x9d\x9c\xa8\x77\x18\xa5\x89\xdf\x63\x6b\x03\xff\x0c\x5b\x85\xaf\xc7\x8e\xe0\x67\x44\x0d\xda\x81\xc9\xa6\x5d\x06\x83\x95\x44\xc5\x15\xa7\x3d\x00\xc7\x77\x9b\x12\x7c\x7c\xc7\xce\x3e\x55\x69\xbb\x6b\x3b\x1c\xda\xf2\xb6\x0e\xa7\xd7\xc9\xb0\x58\x1a\x17\x4b\x97\xf3\xa5\x8e\xd2\x1f\xbb\xa8\x2b\x73\x17\xc7\xed\x86\x40\xaf\x88\x47\xa9\x09\x4c\xaf\x1c\x43\x5e\x00\x22\x94\xe2\xf8\x1a\xce\x79\x5a\x36\x3d\x35\x5f\xa0\xd9\xc5\x01\xb7\xe9\xe9\x56\xe3\xb1\xc5\x31\xfc\xd6\xfb\x9e\xf2\x87\x36\x2a\x0c\x36\xb4\x81\x31\xd5\x0f\x94\x90\x18\xd3\x95\x4a\x1b\x80\x03\xdb\x5f\x1e\x3b\x78\xc6\xfb\xe3\xca\x04\xd0\x36\x47\xa2\x16\x50\x0f\xa6\x62\x18\xab\xc0\xfc\x9e\x86\x1d\x3f\xd2\x51\xa9\xad\xdf\xad\xa4\x18\xbe\xef\x39\x9a\xab\x8f\x01\x28\x11\x79\x05\x1a\x54\x6c\xf3\xc7\x27\x8e\x99\xef\xd4\xd8\x51\xf3\xee\x9a\xd4\x23\x93\x83\xed\x6c\xd5\x44\x11\x16\xa6\x48\xd0\x2b\x9c\xea\x7a\xad\x71\xed\x99\x76\x9c\xa4\xf9\xc0\x10\xa2\xcc\x86\xfa\x6f\x69\xe4\xf7\x5b\xca\x61\x5e\x1d\x88\xa4\x10\xa6\x5f\xf3\x07\x9c\x1f\x3f\xa1\x58\x5c\x57\xe3\x8c\x44\x99\x14\x30\x1d\xa7\x49\x25\xee\x10\xa1\xdb\x86\xae\xd0\x6c\x94\xfa\xab\x91\xc5\xd8\x59\x65\x54\xdb\xfd\x7b\x5f\x65\x5d\x6f\x6e\x65\xa5\x7b\xa6\xfd\xf5\x79\xca\x91\xa3\xa8\x72\x47\x07\x1a\x60\xe8\x47\x9e\x61\x5b\x47\x31\x37\xa7\xc9\x88\x33\xce\x22\x9b\xd7\x72\x12\x7a\x2a\xae\x4f\xfd\xdc\xec\x52\x0c\x76\xef\xd0\xe6\xc0\xc9\x78\x5b\x95\x59\x90\xa1\x81\x5d\x61\xf6\x7f\x61\xd7\x57\xfa\xe3\xb7\xc6\x2e\x5d\xf9\x1d\x72\x50\xb1\xd2\xb7\x01\x87\x85\x67\xbe\x4a\x8b\xcd\xf2\x88\x39\xf2\x92\x07\x8a\x34\x70\x68\xd2\xbe\x49\xa7\x15\xea\x13\xf5\x23\x1c\xe6\x0c\x18\x10\x05\xea\x96\x95\x25\xfb\x7e\x2d\x99\x2e\x06\x33\xf6\x8b\xcc\xf8\xa8\x16\x88\xaa\x8e\x8b\xbc\x6f\x7b\x8a\x0f\xf9\x64\x13\x5d\xc5\x52\x6a\x4c\x2f\xc1\xe9\x60\x19\x2e\x6c\x59\xae\x4e\x9c\xb9\x6f\x5f\x7b\x10\x66\x23\x3f\x0e\x03\x29\xab\xe1\x40\x66\x86\x2f\x40\xfd\xae\x68\x32\xd2\xb7\x55\x49\x33\x2d\xb2\x0c\x4d\x2f\xc8\xd4\xbd\xad\x34\x77\xde\xfe\x5c\x4d\x75\xb3\xda\xeb\x12\x03\x01\xea\x75\x9b\x67\x6a\x79\x8b\xf9\x43\xed\x28\xec\x9a\x48\x15\x31\xd0\x86\x2e\x39\xa4\xdd\x16\x64\x1e\x87\xa6\xb7\x43\x07\x34\x2e\x2c\xf9\x94\xf5\xe8\xb1\xf0\xde\xf2\x54\x8c\xb2\xa1\xba\x52\x00\x9f\x93\x62\x82\x23\xf2\x4e\x97\x66\x34\x53\xc8\x58\xa5\x79\x81\x6c\x10\x1c\x64\xcb\x4a\x8e\x1f\xa7\x45\x23\x7a\xbd\x0e\xb3\xd5\x4d\xfd\x38\xb0\x6a\xa7\x82\x71\x72\x09\x6e\x1d\x22\x8f\x22\x3f\x46\xbd\x07\x85\xb2\xf7\x3c\x07\x34\x78\x4f\x69\x31\xa5\x45\x64\x32\x7a\xf3\x8a\x56\xac\x74\xc0\xd1\xcb\x5a\x49\x8d\x72\xf1\x63\x13\x7f\x8f\x1e\x17\xa7\xed\x65\xa5\x9d\xf0\xdf\xd7\x7a\x62\x7e\xb6\x1d\x3e\x6b\x9e\xa5\xbc\x29\xde\xe8\xc6\xd8\xe9\xe7\xdc\xa8\x2d\xe1\xc5\x39\x4b\xec\x40\xe8\x88\xfd\xfb\x2d\xf4\x43\xc1\x40\x1a\xc4\x79\x0e\xb6\x47\x51\xb2\x96\x21\xbb\x63\x89\x03\xca\xc1\x86\xa7\xc6\x89\x54\x64\xfe\x4e\xd4\x56\xfd\xe2\x81\x76\xd7\xf8\x29\x29\xf1\xaa\x26\x35\x07\x29\xd2\x42\x10\xfe\xb0\x5b\x64\x03\x2b\x5a\x09\x17\xf7\x0e\x7e\x0d\x4f\xc8\xf2\x64\x52\x25\x72\xfc\x19\x95\xb8\x93\x3e\xc0\x92\xf3\x64\x41\x44\x7e\x7e\x6b\x6e\xe4\xd0\x0b\xed\x51\x92\x21\xfb\x6c\xe9\xc5\xed\xb9\xd7\xd0\x4e\xf0\xc2\xc1\x76\x92\xe6\xa6\x6f\xcb\xdc\x68\x31\x79\xa0\x72\xcf\x6c\xca\x45\x0a\xc5\x56\xca\x22\x3f\xcb\x4a\x6f\x47\x51\xb4\xcf\xa8\x1a\xf2\xcc\xff\xc3\xd9\xbf\xc6\x48\x92\x5d\x77\x62\x78\x77\x56\x55\x77\xcf\xb3\xe7\x49\xae\xb0\xfb\x5f\x24\xff\xa0\x31\x2b\x60\x96\xc0\xae\xb1\xf0\x9a\x5f\x22\xdd\x5d\xe4\x70\x7a\xc5\x9a\x42\x77\xb3\x87\x9a\x0f\xc6\xdc\x8c\xbc\x99\x19\xac\xc8\x88\x9c\x88\xc8\xaa\xae\x01\x16\x10\x0c\x41\x30\xf4\x49\xde\x5d\x2f\x0c\xaf\x6c\x4b\x36\xbc\x86\xbc\x4b\x58\xde\x25\x45\x51\xd2\x2a\x8b\xa4\x38\x12\xc9\xa1\x34\x0f\x0e\x39\xef\xe9\xf7\xbb\xab\xdf\xef\xee\x6a\x23\xce\xef\x9c\x7b\x4f\x54\xc4\xd0\x82\x3f\x4d\xc4\x74\x65\x66\xc4\x7d\x9c\x7b\x1e\xbf\xf3\xfb\xd5\xf2\x45\x28\x32\xf4\xa3\x6c\x84\xa8\x92\x8b\x49\xaa\x53\xea\xb0\x82\x2f\x0d\xd3\xa2\xb0\x79\x41\x4c\x3f\x88\x50\xde\x9b\x56\xda\xa7\x6b\x61\x1a\xff\x95\x82\x5e\xc5\xd4\x5d\x31\xe7\x19\x90\xb7\xac\x55\x5b\xc1\x5d\x53\x30\x9a\xf4\x90\xa3\xbf\xaa\x7b\x76\xd6\x6b\xe0\xe0\x97\x5f\x86\x10\x44\x54\xa8\x44\x02\xec\x85\x50\xc2\x3e\xe8\xcb\x70\x7f\x4f\xf1\x9d\x5e\x46\x15\x19\xc1\x30\x00\x88\xe2\x5d\x96\x87\x0a\x4c\x0a\x43\x6a\x71\xe6\xee\x58\x53\x84\xcb\x57\x94\x7b\x38\x4b\x28\x45\xe4\xb5\xff\x27\x78\x46\x82\x14\x03\xf2\xc0\xf5\xd1\x1f\xd8\x25\xd9\x82\xb5\xd2\x67\x82\xa3\x72\x2b\x68\x7d\xe9\xeb\x9c\x37\xfe\x73\xb8\x26\x4e\xd1\x78\xdf\xaf\x7f\x55\x98\x36\xe1\x56\x4a\x07\x97\x4a\x26\xdc\x50\x47\xec\x9b\x1c\xf5\x00\x14\x70\x17\x47\x1f\x3d\x57\xfa\x58\xc7\xa3\xde\x1e\x42\x23\x01\x36\x19\xe7\xb3\xf0\xfc\xa7\x03\xa5\x74\xfe\x77\x30\x43\x78\xe4\xa7\x29\x49\x89\x6e\x87\x02\xbe\x19\x6e\xfe\x95\x32\x25\xd7\x83\xa7\x5c\x17\x4f\xb2\x6c\x33\x66\x09\xc1\xa6\xc1\x2f\x7c\x33\xf0\xc0\x93\x6f\x56\x00\x2a\x99\x1d\xcf\x94\xaf\x22\x12\x8c\xe5\xdf\x61\x73\x7d\x7b\xaa\x18\xf0\x4e\xd7\x42\x16\x39\x5d\xf2\x30\xcd\x24\xdb\x8b\xe7\x61\x75\x3d\xbe\xf1\x7d\xc7\x26\x5b\x5a\x32\xd4\xa3\x84\xb9\xbd\xab\x2b\xbc\x3f\xa2\xb5\xc8\xb4\xb8\x7a\xc3\x9d\xa8\x27\x2a\xe6\xdb\xb9\xcd\x22\x9b\xcf\x6a\x0a\xf5\xd3\x9a\xc7\xf5\xbc\x3a\x30\x1e\xd2\xdd\x1c\xb7\x9d\x58\x68\x2f\x32\x5d\x5b\xd8\x7c\x0e\x5f\x22\x4f\x41\x5f\x02\x2f\x15\x38\x49\x78\xfe\xe8\xa7\x82\x7d\xff\x01\x1e\x8f\x3f\x11\x3c\xe1\x3b\x0a\x42\x53\x14\xbe\x80\x88\x45\xfb\xd3\xa9\x52\xe2\xf9\x69\x8d\xd4\xf1\x8b\x6d\x2a\x62\x1c\x90\x40\xf7\x3c\x8e\x4d\xd4\x08\x4e\x11\x64\x8a\x59\x90\xd4\x59\x34\xc8\xd2\x95\x84\x32\x67\xdc\x53\x10\x28\xa8\xe4\xa5\x4a\xb7\x84\xcf\x9c\xfd\x15\xb2\x01\x82\x64\x6c\x42\x09\xad\x0c\xa3\x18\x4d\x4f\x4e\xe6\xc8\x11\xac\x1f\x73\xab\x8c\x98\xb9\xc3\x68\x6c\x1c\xba\x00\xee\xfe\x2c\x56\xae\xab\x21\x97\x5b\x07\x26\x69\x7b\x2d\x4f\x47\x72\x47\x49\x6e\xb3\x65\x02\xd4\xb6\x7c\xd0\xf2\xe3\xa9\x4a\xcc\xfd\xf8\x53\x3d\xb7\x38\x4d\x7a\x69\x42\x03\x27\x1d\x30\x0a\x56\xcd\x19\x34\xec\xcf\xfb\x2e\xe8\x0c\xd3\xd1\x28\xed\x45\xc5\xaa\x32\x5c\x77\xf0\xa7\x7c\xa3\x94\x89\x7a\x36\x34\xbd\x32\x0e\x6e\x79\x77\xe7\x13\xd8\x00\xbe\x69\x14\x8e\x18\x4d\xe2\x2c\x4d\x98\x61\x0d\x6e\xc4\xc7\x1a\x26\xfb\x71\xcd\x9e\x3e\xbf\x50\x3a\x85\x45\x9a\xad\xce\xf8\x6c\xf0\x9d\x0a\x1b\x44\xa5\x05\x5c\x5c\xa6\x38\x1d\x20\x95\x2b\xe4\xeb\x4a\xe3\xb9\x8e\x54\x99\xdf\x4f\x59\x7e\x46\xaa\x48\xa1\x84\xbe\x58\x1a\xb8\x54\xbb\x7f\x44\xca\x79\x42\x5d\xf8\x67\x48\x3f\x48\x2b\x0f\x4d\x33\xff\x0b\x60\x45\x88\xf1\x50\xf6\x46\xe4\x7a\x57\x5b\x8f\x87\x3a\xca\xab\x51\x26\xe6\x8e\x3a\xee\xfa\x51\x8c\x46\xba\xf9\xfd\xc2\x03\x80\xb8\xd6\x75\x49\x39\xc5\x81\x53\x4d\x98\xea\x28\x31\x3d\xfb\xca\xc4\x14\x96\xb1\x12\xc2\x54\xd0\x72\x84\xe9\xeb\x6e\xf3\x8f\xa3\x22\x1c\x8e\x6c\x02\xb3\x85\x83\xee\xc7\x0a\x0b\xfb\xe3\x7a\xa9\x86\x18\x04\x87\xd1\x78\x95\xa0\x77\x8e\xe9\xf2\x1d\x35\x4f\xef\xd4\x32\xee\x0b\x0b\xed\xe5\x48\x9a\x8e\x39\xb3\x4d\x3f\x23\x59\x6e\x25\x7f\x36\x34\xe4\xc9\xd1\x79\xcf\xe0\x38\xc4\xd9\xce\x07\xde\xbb\x4b\x6c\xa2\xd6\x3f\x3e\xe7\xd0\x97\xa3\x74\x92\x14\x74\xd8\xe3\x28\xf9\x00\xb6\x04\x45\x3f\x94\xa5\xd0\x9e\x31\xc3\x9d\x17\xa2\xe0\xa8\xaa\x3b\xf7\x03\xdf\x37\x14\x4e\xf2\x22\x1d\x09\x93\x21\xc2\xbf\xb7\x69\x8e\x71\x88\x31\xbe\x16\x0f\x7b\xaf\x51\xf1\xd8\x24\x49\x3a\x49\x98\x0d\x71\xde\x69\xd3\x28\x80\x05\xb4\x80\xb0\xb4\x66\xd7\x14\x6b\xb0\xcd\xc7\x36\x2c\x28\x71\xeb\x48\xef\x5e\x74\x8a\xbb\xc7\x95\xfa\xee\x71\x9a\x03\xe1\xbf\xdb\xa9\x5a\xff\xed\x41\xe6\x0c\xfb\xa5\x7d\xfc\x99\x89\x72\xdb\xa3\x81\xd3\x74\xa2\x6e\x74\xbc\x9a\x1f\x04\xae\x31\x88\x8f\xae\x29\xb6\xad\xed\x1d\x45\xcb\x93\x1e\xa4\xdf\x74\x5c\xdf\xbe\x68\xe0\xa9\x03\xc6\xc6\x9d\x9a\xd2\xbb\xd4\x52\x2c\x98\x4f\x46\xae\x30\x97\xe4\xf1\x24\x0f\x05\xf3\xe5\x3a\x0c\x7c\xb7\x41\xe5\x3c\xb7\x71\xc4\xc7\xa2\xd4\x5e\x3c\x29\x10\x4f\x34\xdc\x00\x06\x2f\x4b\xb4\x55\x97\xfb\xda\xd7\xce\x63\x13\x2e\x59\xc7\x4b\x07\x5b\xce\x63\xc8\x37\xb5\x8c\xe9\x81\x5d\xed\x65\x5b\xa4\xf2\x19\xd7\x6b\xe2\x88\x01\xce\x57\xdd\x8f\x32\xf6\xda\xbb\xc8\x0b\x6a\x5d\x29\x2b\xad\x2b\x28\x5b\x66\x4d\x1c\xbd\x6a\xf3\xd9\xd2\x06\x00\xc1\x7d\x9b\xe6\x9f\xaf\x69\x34\x70\xc0\x1f\x0a\x3c\x6c\xe1\x50\xb5\xc4\x1e\xae\x82\xc6\x1f\xae\xce\xcf\xb0\x9a\x04\x8a\x53\x7e\x33\x0a\x9f\xa7\xe8\x9b\x61\x07\x88\x5b\x78\x71\x63\xdb\x9a\x92\x74\xc6\x84\x22\xf5\xf6\x78\xa7\x3c\xa0\x51\xf5\x80\xf8\x31\xd2\x65\x7f\x4d\xbb\x04\xe5\x72\xd6\xd5\x53\x24\x69\xb2\x73\xaf\x2a\x24\xe4\x69\xf8\xf6\xd2\xb1\xdd\xc0\x81\x17\x8d\xc6\x59\xba\x5c\x0e\xac\xd7\x47\xd4\xb4\x29\xeb\xc1\x83\x7e\xc0\x5a\xad\x67\x9e\x71\x75\x1f\xf2\x3b\xa5\xec\xf3\xb8\x3f\x0b\x59\x9a\x93\xb6\x18\x9e\x82\x89\xb9\xd1\xdf\x00\xff\x07\x89\x35\x2c\x7c\xec\x88\x99\xb5\xcd\x4f\x47\x1c\xa1\x29\xa9\xf1\x93\x69\x64\x57\x3a\xf0\x6a\x48\xeb\xca\xd2\x2d\x47\x69\x5c\x9e\xab\x73\x1e\xec\x71\x9b\xc6\xce\x41\x82\x05\x2c\xf0\xff\x7b\xbc\xa3\x2c\xe0\x59\x95\x0c\xad\xab\xa1\xee\xde\xdd\xee\x4e\xf2\x5f\x9a\xb4\x7e\x54\x21\x6b\x8a\x34\xdb\x56\x86\x03\x4e\xd5\xd0\x89\x8b\x9d\xc5\x19\x2f\x6c\xf1\x2d\x97\xc7\xfa\x50\xf7\x31\xfd\x5c\x89\xfc\x7c\xa8\x7b\x75\xa2\x7c\xe9\x21\x55\x39\x87\x89\x94\x04\x22\xc5\x29\xf0\xed\x6e\xa2\xba\xa3\xf2\xd7\x92\x7a\xb9\x45\xe3\x26\x70\x6c\xd5\x19\x78\x41\xa5\xe1\xae\x4c\x7d\x92\x72\x03\xc7\x33\x7f\x2f\x62\x16\xe1\x31\xda\xec\x6f\xfe\x83\x76\x91\xc1\x6b\xe0\xd5\x1c\xa8\xde\xd4\x7a\x51\x93\xf4\x49\x47\xa3\x34\x01\x89\xa5\x63\x2d\x2f\x9f\x90\xaf\x9b\xf4\x19\xcb\x18\x97\x29\x4a\x10\x15\xdd\x9e\xaa\x14\xf7\x96\x8e\x6f\x88\xf9\x58\x71\x2e\xf7\x6c\x1c\x4f\x46\x9c\xa1\xe4\xae\x30\x2d\x35\x72\xb2\x09\xb1\xdb\x4d\xd3\x91\x4b\xa2\xba\x58\xc2\xc9\x3b\x80\xbb\x03\x30\x8f\x56\x2d\xa3\xbc\x67\x0f\x98\x9c\x92\x96\x4f\x23\x1e\xc6\xa9\xc9\x37\xce\xdb\xfa\x86\x19\xb1\xbd\x16\xed\x0e\x1d\xb0\xec\x54\x5c\x28\xd6\xf4\x18\xb1\x88\x3a\xda\x39\xdd\xa5\x78\x0e\x66\x07\x36\xf8\x78\xe0\x51\x5b\x75\x42\xcd\xf2\xe5\xb2\x49\x52\x60\xc3\x0b\xf9\xb0\xdf\x93\x17\xd4\x82\xce\xa3\x24\xb4\x8f\x29\x40\xcc\xb9\xa9\xa6\xdb\xba\x0d\x6f\x5c\xb2\xb9\xf4\x85\x48\xaf\xde\x51\x32\x0f\x60\x15\x10\xea\x02\x58\x2a\x6e\x6c\x44\x84\xcd\x85\xd2\x40\x43\xbe\xca\xa5\xb0\x71\x5d\x49\x94\xde\x46\x9c\x2a\x55\x1c\x9a\x77\x57\x61\x2d\x67\x16\x30\x19\xb0\x31\x61\xfb\x5f\xd7\x72\x29\xfa\x04\x2f\xd2\x91\xc9\x87\xaa\x37\x8a\x63\x2f\xbe\xf1\xfd\x19\xe9\xb2\x05\x4c\xd4\x0b\xf6\xf8\xbc\xdb\xce\x8e\x57\x18\xb8\x5f\xa9\xad\xab\x5e\xec\xc4\x84\xaf\xda\xf8\xff\xa3\x3a\xe2\xe6\xd3\x73\xff\x0b\xed\x28\x8e\x27\x50\x76\x6c\xf9\x73\xe1\x84\x22\xed\x3e\xa1\xa5\x4b\xc6\xd6\xf6\xf2\x96\x96\xa4\x2d\x47\x47\x5a\x5e\x1b\x9d\xd1\xc2\x1e\x2c\x48\x64\x55\xc9\x58\xa1\x33\x8a\xaf\x6b\x21\x3b\xc0\x11\xd0\xa3\x72\xd1\x33\xb6\xe1\x36\x1c\x52\xa2\x4e\xeb\xe1\x5a\x17\x34\xe7\xcf\xba\x82\xaf\xa4\x03\xc6\x1a\x4b\xd6\x1e\x67\x9e\x14\xa8\x4b\xdb\x8a\xf3\xb4\x9e\x42\x9c\xdf\xdf\xee\xad\x26\x26\xe7\x38\x0c\x1b\x15\x0d\x14\x7c\xad\xce\xfe\x38\x2a\x6c\x66\x32\xfc\x29\x0a\xa0\x20\x70\xe5\x6b\x55\x94\x89\x12\x7b\x30\xcd\x4c\x37\x5e\xc5\x21\x20\x60\x2a\x05\x05\xfc\x14\x6a\xf0\xd8\x0e\x78\x1c\x61\x69\x6e\x29\xf9\xab\x5b\xaa\x10\x69\x7a\xcb\x26\x09\x6d\xc6\x36\x0a\xe6\x97\x59\x5e\xf9\xa6\xce\xc7\xb7\x77\xb1\xbd\x92\x4e\x12\x56\xcb\xaf\x7c\x46\xb0\xd2\xf4\xb8\x38\x4c\xfe\x42\xd1\xd2\x95\x87\xc9\x8e\x96\xeb\xe5\xbd\x30\xad\xc0\x8a\x14\xcd\x26\x37\x71\x60\xc6\x8e\x2a\x26\xba\xcb\x34\x29\xe2\xf1\x94\x6b\x4a\x1d\x38\x2f\xb9\x24\xfe\xe6\x53\xe2\xc5\xc5\xf6\xaa\x01\x78\xc6\x01\xd9\x3c\xc7\xf4\x49\x94\xec\x19\xa5\x10\x28\x8f\x62\x64\x88\x12\xb0\x22\x4d\x47\x4f\xc6\x4d\xf1\x6b\xba\x25\xa4\xe1\xac\xe9\x45\xcb\x36\x77\x85\x53\x64\xd0\x3f\x51\x25\xb1\x4f\x1c\x53\xf1\x8a\xa1\xb4\xc1\x81\x5d\x6c\x4e\x7e\xae\x9a\x57\x7f\x3e\xdd\x5c\x9e\x5e\x58\xf8\xdb\xe6\xc6\x24\x42\xec\xa6\x59\x96\xae\x48\xec\x83\x95\xb0\xad\xa3\x5a\xae\x30\x81\x18\xe5\x9b\xce\xab\xca\x27\xdd\xdc\xbe\x32\xb1\x49\xa1\x1a\x1d\x1f\x5d\x53\x75\x24\x92\x78\xbc\xf7\x1b\x4f\x74\xe4\x97\x88\xe1\xb4\x90\x5f\xe2\xee\x32\x7a\x67\xc0\x1d\x40\x0a\x24\xbb\xd1\x13\x27\xa4\x4b\x73\x2a\xfc\xba\xa2\x30\xe3\xeb\xd5\xe4\xb5\x67\x65\x3b\xa9\x9a\x67\x3e\x6e\xdc\x96\x36\xb7\x99\x15\x76\x66\xa1\xeb\x50\x09\x92\x3a\xe6\xf5\xe5\x97\x09\xd6\x3f\x50\xbc\x5a\xd8\x3d\x7c\xed\x3b\x37\xa2\x41\x62\x62\xd4\x78\x40\x84\xc6\x8a\x57\xa8\x4f\xbf\x4e\x1f\x02\x84\xf1\x01\x1a\x68\x34\x56\xed\x44\x98\xc5\x7f\xa4\x04\x46\x72\x9b\x10\xfd\xe9\x3e\xe7\x94\xe0\xa9\x9d\xb0\xca\x8b\x0e\x4f\x74\x3a\xd0\xfe\x4a\xb9\x0b\x84\xfa\x47\xb1\x67\x9c\x25\x57\x8f\xe9\xe1\x6b\xbb\xf8\xd9\x76\xd7\x9a\x70\x28\xe6\xd6\x49\xc4\xe9\xc3\xa4\x81\x8e\x7c\x18\xc5\x31\xbb\xa4\xd2\x58\x4b\x1f\xe1\x1b\xa5\x77\x57\x64\x51\xb8\x14\x73\xcf\x0a\x36\xec\x6f\x4e\x7d\x66\xf6\x37\x15\x3f\x7b\x3a\xec\x9a\x55\x42\x0f\xd2\x1f\x63\x91\x71\x53\x16\xdf\xd4\x92\x4c\x7b\x77\xb5\x4d\x51\xd8\xd1\xb8\x50\xa4\xb8\xa7\x14\x29\xee\x29\xe7\xe9\x24\x36\x5c\x9a\xf5\x01\xf0\x0e\xf8\xe0\xae\xb1\xd5\x25\x17\xd9\xa7\x93\x7d\xfe\xb0\xcb\xad\xc4\x31\x03\xef\x94\x8a\xbe\x08\xb4\x40\x7f\x42\x10\x14\xb2\x07\x4c\x0c\x1c\xa7\x02\x0d\x56\x85\xb6\x15\x41\xb9\xe1\xa6\x67\xc7\x50\xa0\xfc\xd7\x5a\xf9\x7f\xcf\x9e\x76\x6e\x4d\x37\xcd\x12\xab\xd8\xfd\x6f\xa8\xaa\x3e\x33\xa1\x08\x57\xc5\xe6\x82\xd2\xf3\x0b\x44\x1e\xd0\xf2\xb2\xa3\x17\x54\x9b\xf5\x85\x1a\xfa\x79\x61\xa1\x6d\x56\x0c\x32\x79\xf8\x81\xad\x6b\xe5\xb1\x0e\x17\xe2\xda\xd4\x07\xc2\x0f\x77\x74\x20\x5c\x98\x1e\xc5\x43\xee\xe5\xbf\xfc\x22\xfb\x5e\x1b\x8a\xf2\xf3\xa6\x2a\x66\xdd\xa9\x70\x43\x6d\xae\x26\x3e\xdb\x0e\x87\x76\x85\x42\x3b\xc9\xa3\xd3\xa8\x21\xc1\x70\x5f\xf3\x01\x00\x99\x82\xa3\xe8\x23\x15\xa7\xe5\x36\x9c\x64\x51\xb1\xba\x43\x79\x00\xd7\x2b\x20\x4a\x38\x0a\xe0\x8f\xe3\x71\x44\xe1\xe4\xc7\x9a\xb7\x17\x0d\xc5\x70\x2d\x2e\x06\x9b\x59\x34\xf7\x39\x62\xaa\xcd\xd9\xd4\x17\xa9\x2c\x1d\xda\x84\xa3\xba\x79\xd7\x22\xa1\x99\x22\x9a\x08\xb7\xa3\x24\x9c\x8c\xba\x92\x32\x61\x46\x4b\x45\x07\x73\x4b\x61\xd0\x33\xd3\xa5\xcc\x8f\x24\x80\xe9\xc1\x31\x18\x97\x54\x07\x03\xb2\xea\x78\xd5\x3f\xc4\xb6\x87\x03\xbd\x73\xad\x29\x0b\x1c\x0e\xed\x28\x0a\x59\x87\x93\x25\xb1\x82\xaa\xb8\xae\xcf\x53\x7c\x4b\x65\x5e\x9f\xfb\x87\xff\xc5\x8c\x6f\xfc\xbe\xaa\x54\x17\x6f\x6a\xcb\xb1\xad\xe3\x2d\x47\x94\xf4\xec\x41\xcb\x1c\xd9\x4e\x0e\xa5\x1c\x59\x91\x43\xf1\xd0\xea\x22\x33\x3d\x9b\xe5\x3b\x7c\xa2\x96\x49\x00\x1d\xb2\xcf\x77\x7e\xcd\x20\xeb\x01\xfb\x83\x46\x19\xe6\x40\x44\x50\x8b\x4e\xf0\x3b\x3a\x99\x77\x81\xfc\x3e\xc1\x25\x7a\x3f\x3e\x1d\x97\xc7\xee\x76\x85\x40\xe4\x9e\x69\xa7\xec\x79\x40\xf8\xf5\x7f\x82\x1a\x21\x50\x1c\xdf\x53\xbd\xf3\x3b\x61\x87\xf8\xe8\xa0\xe1\x43\xae\x7b\xcb\x9a\x58\xae\x25\x6b\xc7\xdb\x7d\x3c\xc3\xa9\x7d\x04\x44\x37\x15\x52\xe4\x29\xee\x2a\xd0\xbc\xee\xae\x8a\xe4\xdb\xbd\xae\x4d\x15\xc4\xfe\x9a\xd3\xf3\x18\x76\xbf\xd1\xf2\x69\x40\x4e\xce\x8b\x46\xbc\x94\x1a\xba\x59\x14\xc7\x91\x49\x58\x0b\xc3\x45\x6f\x8e\x60\x0a\xfa\x05\x2c\x17\x59\x33\x3b\xbb\x77\x53\x77\x0b\x39\x38\xa8\xae\xf0\xc3\xf0\x4d\x53\x77\x5d\x3f\xcd\xba\x51\xcf\x53\x32\x33\xd0\x40\xe5\x9b\x7f\xa3\x09\xb4\xbc\x1c\xa5\xb1\x17\x2e\xd0\x19\x55\xc9\xb4\xee\x54\x89\xb8\x91\x89\x92\xed\x14\x0c\x4a\x42\x89\x3e\x86\xd1\x83\x34\x26\x36\xcc\x7d\x3a\x67\x85\xef\x89\xd2\x68\x17\xe1\xfa\xfc\x4a\xc7\x57\x20\x66\xd6\xa4\xaf\x6b\x9c\x8e\xd2\x38\x1d\xb8\x82\xba\x93\x37\x70\x8a\x47\xef\xe9\xe6\xfe\xc4\x0c\x58\x0b\x0d\xab\xed\x87\xda\xa1\xfe\x61\xf0\xf4\x26\xca\x98\xf9\xfd\xed\x03\xbb\x16\x68\xa3\xab\x26\x16\xa7\x82\x55\xbe\xee\x06\x32\xe4\xfc\xcf\xb0\x53\xd2\x5c\xe2\xbd\x8e\x5e\x64\x7b\xb3\xbe\x5a\x75\x04\x3f\xcb\x4a\x3c\x30\x1e\x4e\x96\xc7\x85\xc4\x47\x14\x86\xbb\x67\xc7\x69\x26\x8a\x42\x48\x66\x61\xa8\xf8\xba\x16\xec\x49\xc5\xab\x18\xda\x28\x9b\x43\x71\x1b\x3b\xe2\xb3\x1d\xbf\x6d\xb0\x88\x61\xea\x2f\xeb\x84\xfe\x1c\xc1\xeb\x84\x8a\xc2\x1b\x9a\xff\x6a\xe1\x9f\x6d\xdb\xdc\x38\xc0\xbd\x42\x0d\x95\x34\x24\x9d\x7e\x12\x68\xc7\x10\x49\x33\xac\xe0\x7b\xc1\x67\x54\xef\x65\x26\x1a\x74\x89\xb8\x92\x8e\x67\x48\xf1\x5a\x37\xf9\x28\x61\x6c\x72\x07\xdc\x51\x64\xc0\xf3\x8e\xb8\xc1\x4f\x85\x09\x0b\xf0\x3b\x48\x36\x00\x63\xc3\xe3\x11\x6c\x1e\x1b\x64\xc4\xde\x47\xa6\x4d\xda\x31\x1b\xe0\xaf\x84\x17\x5c\xb1\x79\x31\x43\x69\x12\x44\x2e\x47\x14\x41\xe3\x56\x5a\xbf\x18\xd1\x5b\x8a\x50\x6e\x90\x19\xdb\x43\xf3\x97\xe7\x54\xf1\x50\xd4\x5b\x78\x0f\xd1\x88\xf6\x6b\x39\xb6\xcb\x36\x7e\x70\xc6\x2b\xe1\xfe\x8f\x53\x4f\x6e\xff\x6f\xa6\x2a\xfe\x83\x75\x06\x92\x0e\x7d\xd3\x8e\x3d\xdb\x09\x18\xb0\x70\x06\x2c\xe0\x69\xc0\x0c\x5c\x16\xde\x29\xf5\xdd\xc2\xfa\xe6\xbf\xda\x94\x9c\x25\x6b\xd0\x72\x98\xf0\xf5\xc0\xeb\x7d\xad\xd7\xa2\x86\xaf\xce\xb7\xed\xc1\x71\x6c\x22\xe4\xd0\x44\x22\xc7\x63\x7e\xeb\xd4\x84\x07\x76\xb5\xed\x41\x9b\x85\x91\x63\xc0\x47\x90\xf9\x3e\x3d\x20\x5f\xab\xbe\x66\x13\x77\x27\x92\x7c\xd3\xaa\xa7\xa2\xe6\xf0\x98\x6a\x3e\x29\x0a\x9b\xe5\xaa\x9e\x7e\x03\x7b\x12\xa1\xd4\x79\xa5\xef\x73\x44\x5b\x93\xc2\x2c\x59\x5a\x4a\xa8\x18\xff\x08\xe1\xb4\x4b\x4c\x38\x76\xa9\x75\x75\x0a\xde\xd4\xc5\xd3\xdb\x4d\x55\xdd\x74\xd9\x66\xbd\xc9\x26\x32\x01\xb7\xeb\x2f\xe8\xbc\x42\xbf\xb0\x99\xa3\x7f\x16\xaa\x5e\xdf\x1c\x71\xc1\x35\x18\x40\x16\x3c\x07\x61\x8b\x08\x8a\x95\xf3\x23\xec\x82\x34\x4a\xb0\xcd\x58\xa8\xce\xd7\x2a\x57\x1f\x8e\xa9\x37\x1b\x38\x64\xe6\xdb\xe3\x09\xa7\xda\x74\x0f\x22\x5f\x6f\x02\xcc\xb1\x2e\x1e\x96\xa5\x56\xa2\xfb\x98\xfd\x43\xa7\x71\xe8\xc8\x54\xce\xe1\x01\x50\x04\xbe\x58\xc9\x3a\x63\xb4\xe1\xe5\x5c\x9c\x56\x98\xe3\x7c\x45\xfb\xac\xa6\x6e\x8c\x7a\xc3\xf1\x04\x95\xec\x26\x24\x6b\x93\x47\x56\xa4\x93\x2c\xca\x0b\x0e\xc6\x10\xb7\xbf\x36\x55\xc8\xcf\xd7\x02\x39\x8a\xba\x26\x8e\xd3\x34\xf1\x7f\xed\xb0\x8e\x3a\xfd\xb2\xf9\x28\x15\x3b\x3d\xc9\x23\xf4\xc4\xa2\xa4\x02\xdc\x21\xf7\x6c\x4f\x3d\xff\xc2\xeb\x9a\xc4\xf0\x5e\xa0\x55\xb8\x97\xec\x4e\x0a\x5e\xc1\x53\xf1\xbb\x53\x9f\x0a\xbc\x32\x85\x8d\xd3\x70\x79\x64\x46\x66\xc0\xaf\x28\x32\x8a\x1e\xc8\xc9\x5c\xa4\xf0\x34\xef\x92\x35\x11\x11\x4f\x7a\x00\xf8\xe5\xdb\xd6\x54\x92\xec\xe2\xd4\x53\x96\xdc\x54\xf2\xf9\x1f\x12\xf4\x17\xd6\xec\x28\x32\xc2\x30\x20\x37\xa6\x4a\x08\xa1\x0e\x18\x5b\x58\x20\x59\x2e\xe7\x98\x88\x4c\xba\x3f\x7e\xea\xb1\xf3\xee\xf9\x76\xd7\xc6\xe9\xca\x4c\xb5\xfe\xe1\x44\x13\x2f\x28\x1b\x59\xef\x62\xf0\x67\xa6\x29\xb6\xd1\x58\x6a\x89\x14\x18\xcd\x33\xaa\x65\xfa\x9b\x14\xfb\xc3\xf2\x3c\x0d\xbc\x10\xf6\x16\x28\x41\x7d\x53\x9e\xe7\x60\x2f\x0a\xd1\x66\x64\xc6\x7b\x18\x1a\x6d\x90\x61\xff\xbe\xaf\x92\xcc\x68\x0f\xb6\x19\xed\x5f\x39\x85\xc0\x45\xad\xc8\xfa\x1d\x64\x1f\x27\x06\x43\xb3\xa6\x4a\xa4\x7c\x4d\x25\x48\x47\x11\x99\xaf\x7c\xce\xf7\xbc\xf0\x66\x77\xd2\xc3\x8e\x4a\x65\x5d\x73\x6e\xaf\x6b\x65\xee\xab\xc1\xc3\xee\x1b\xa9\x80\xfd\xbc\xe2\x4a\xde\xbb\xcb\x25\x4c\x36\xaf\xfa\xbd\x8b\xed\xbc\x22\x04\x22\xe0\x31\x05\x24\xab\x4d\x4f\xe9\xdd\x0e\x2d\x75\xd6\x70\x5f\xa3\x34\x61\xd0\xc6\x11\x76\xf6\xf2\x77\x71\xec\x20\x07\x86\xe8\xeb\x58\x53\xa1\x84\x98\xbb\x55\x66\xe3\xea\x54\xe9\xc8\x5e\xd5\x8c\x3a\xe9\xc1\x88\x61\x1f\x3a\xd9\xcd\xd7\x8d\x5c\x17\xe9\x68\x3c\x01\x17\x6e\xf9\x29\x65\x4e\x9f\x63\xf7\x0e\x51\x39\x73\x15\x29\x06\xb1\x91\x29\x48\x50\xad\x10\xed\x13\xc7\xa7\xb7\xa0\x74\xfb\x9b\x08\xb4\x57\x4c\x96\x51\xec\xe0\xab\x48\xa7\xa6\x2a\x7d\x7c\x35\xf0\x92\x53\x87\x54\xf5\xb1\xc8\xa2\x31\x03\xda\x90\x3d\xdb\xda\x51\xc2\xe9\x08\x9a\xf0\xa9\x77\x15\x3e\x9e\x7b\xcb\x58\x6e\xa1\x06\x5b\x2d\xad\x67\x5e\x44\xe1\x12\x67\x75\xf0\x21\xc6\xdb\xb9\x7c\xff\xc2\x02\x03\x4d\xfe\x58\x85\x9b\xa1\xc9\x6c\xb9\xda\xfd\x31\xf0\x33\x2c\x4d\xc4\xce\x27\x95\xf6\xf5\xfb\x18\x51\xc9\xf3\x55\x28\x07\xc5\x30\x17\x36\x1c\x26\x51\x18\x99\x84\xb9\xb8\x98\xcc\x24\xf0\x45\xe7\x33\x7c\x00\xc9\x9d\x07\xcd\x8d\xd2\xa4\x60\x54\x93\x23\xdd\xfe\x74\xbe\x74\x4f\x91\x4e\x3f\xa4\x94\x07\x16\x1d\x56\x12\xbf\xa4\x55\x2a\x65\xab\xfa\x88\x69\x29\xea\xf5\x6c\xf6\x00\xf9\x64\x8e\x75\x7f\x33\x30\x1e\xd3\x73\x7c\xaa\xb9\xf9\x31\x1c\xc8\x19\x7f\x4f\xb3\xf5\xde\x25\x5b\x05\xef\xe6\xb0\xa2\xaf\xb8\x86\xed\x2c\xc0\xfa\x4d\x84\x50\xfb\x5f\x68\xef\x5d\x7c\x70\xeb\xe7\x9d\xcb\xe7\xcb\x29\xf7\xe1\x24\x3a\xfc\x84\x43\xe7\xff\x82\x4e\x0b\xc4\x01\x47\xb1\x68\x99\x97\x98\x9c\x6b\x0c\x3e\x0e\x0b\xfe\x00\x0e\x05\x41\x5f\xf8\x5a\xd4\x7f\xeb\xfc\x97\xc4\x2e\xa5\x69\x6e\xb8\xf8\xe4\x94\x0b\x7c\xe9\x05\xce\x3a\x0e\x9f\x6f\xe9\xe0\xe3\x96\x92\x94\xeb\xa5\x93\x01\x55\xcb\xb4\xd6\x31\x5f\x37\xb1\xa8\x92\xb5\x99\xad\xb4\x17\xb4\xbe\xf4\x75\xae\xb8\x80\x83\x47\x48\xb5\x68\xa4\x25\xf6\xf1\x4d\xa0\xfd\x28\xcb\x8b\x21\xc9\x99\x96\x93\xc4\xe8\x78\x40\x2b\x04\x2a\xdf\x90\x89\xea\xd9\x51\x1a\x66\xa6\x10\x98\x29\x8e\xde\xad\x1d\xc5\xd1\xcb\xa2\xff\x2e\x17\xe1\x9c\x3e\x6e\x9b\x16\xd2\x0c\x7f\xf8\x8c\xcd\x6a\x96\x0a\x19\xb8\xe8\xa0\x95\x33\x22\x02\x69\x4e\x2b\x36\x36\xae\x8d\xcf\x69\x02\x69\x95\xa3\xa7\x05\x01\x65\xc7\x99\xcd\x6d\x52\x10\x1a\x73\x46\x21\x90\xc1\xeb\x88\x9c\x0d\xea\xf6\x52\xbd\xd4\xad\x11\x99\x89\xe7\xb4\x67\xeb\x3b\x17\xcf\xe9\x29\xd4\x5a\xa0\x3c\x06\x48\x8c\x1c\x55\xb2\xc7\xbd\xb4\x37\xb0\x59\xde\xf2\x1d\xbb\xe8\x82\x13\x88\x90\x4b\x18\x64\xb6\x17\x85\x05\x95\xfb\xfc\xbf\xa3\x47\x9b\xaf\xd5\x3e\xec\xc6\x46\x7a\xf8\x85\xa4\xd2\xa3\x34\x3e\x09\x7c\x54\xb9\x6a\x4d\xf6\x34\x0d\x00\xb2\x0e\xf7\xe8\xc7\x31\x55\xd7\x79\xcb\xc3\x84\x42\x91\x1c\x5b\xfe\x33\x6b\x8a\x43\xea\x32\x36\x32\x76\xf5\x2d\xf8\x46\xb2\xa2\xca\xb7\x82\x6d\xba\xae\x7a\xdd\x98\x5a\x17\x91\xc9\x13\x04\x6d\x67\x59\x3c\x4a\xa8\x21\x8f\xfe\x08\x46\x0c\x1e\xf4\x83\x74\x22\x22\x20\x9d\x85\xbc\x37\x5e\x7a\x03\x86\x43\xe4\x21\xc8\xf9\xc1\xf7\x5e\x27\x87\x07\x86\xe3\x38\x5c\x0b\xd4\xcb\x5a\x6b\x2a\xd2\xdd\xd0\xba\xda\x3f\xd4\x10\x83\x61\x3a\xce\xe7\xca\xc7\x11\x29\x72\x5f\x4c\x7a\x8d\xbe\x9a\x95\xb1\xa7\xde\x29\x3a\x0a\x5b\xc7\x37\x9b\x9b\x9f\x77\xef\x6e\x2f\xee\x5d\xa4\xb4\xb7\x3b\xff\xcb\x81\x93\x82\x84\x5f\x01\xdb\x3b\xca\xf9\xd9\xb2\xa6\x22\xc1\x53\x81\x6e\x8f\x8a\x6d\xd6\xf2\xed\x41\x67\x15\xa4\xee\xac\xab\x35\x84\x36\x71\x20\x6d\x91\x9d\xe7\x4a\x14\xdf\xa8\x03\x75\x1c\xb1\x6e\x04\x57\x2c\x2a\xd5\x8b\xcd\x27\xf7\xee\xdd\x6d\x86\x54\xf1\x9e\xc3\xc9\xcd\xe2\xc4\x7c\xd3\xd0\x71\xbb\xd8\x9e\x64\x03\x22\xba\xaa\x50\x75\x68\x2f\xa1\x02\x9a\x9b\x74\x8b\x07\x68\x5e\x45\xff\xb2\x1c\x41\x11\xea\xf6\x0f\x7b\x14\xb6\x0c\xc7\xfa\x5f\x63\x5a\xf9\x66\xea\xb1\xe3\xdb\x88\x36\x1b\x79\xb3\x7b\x18\x06\x4e\x0c\x93\x89\x14\x51\xd2\xa7\xdc\xfe\x24\x92\x03\xf2\xb7\xc0\xd0\xb1\x71\x8c\x0c\xd8\xc6\xb1\x5a\xe6\x6a\xcf\x9e\x76\x2f\xca\xc3\x32\x0c\xb6\x6c\x37\x2b\x8a\x24\x7c\xa3\x64\x25\x0a\x33\x62\x47\x52\x02\x3b\x1c\x54\x52\xc6\xf3\xbd\x8c\xf9\xd8\x64\x4b\x73\x3e\xa1\xf1\x26\xb0\x55\xd2\xe3\x5c\xbe\x13\x62\xdd\x6b\x53\x8f\x50\x7f\x13\xa6\x16\xc3\xb3\xa5\x23\x09\x5d\x3b\x18\x78\x0f\xe5\x47\x4f\x21\xcf\x2c\xb2\x81\x3e\xcf\x8c\xec\x26\x16\xff\x29\x5d\x14\xbd\xd4\xd4\xe7\x67\xc2\x30\x9d\x24\xae\xae\x8b\x75\xfc\x73\xc5\xad\xca\x44\xde\xc8\x23\x1d\x55\x83\x60\xf2\xdc\xe6\xbc\x82\x5c\x53\x4a\xb9\x82\x04\x56\xd7\xe4\xff\xc6\x51\x0f\x15\x2e\xae\x0f\xac\x69\x69\x0e\x75\x3c\x3e\xd2\x79\x48\x89\x35\x80\x29\x1c\xaf\xba\x41\xa7\x3d\x22\xcb\xdf\xd7\xd4\x64\xa7\xa7\x9e\xcb\xeb\x2e\xf8\xf9\x59\x4b\x1e\x63\x2e\xa5\x83\xd2\x34\x60\x9c\xdf\x23\x52\x6a\x1c\x8b\xe7\xb0\xf0\x98\x36\x96\xbc\x0b\xaa\x58\xdf\x7c\xaa\xa3\x54\xc5\xee\x60\xb5\xc3\xc3\xd7\x8d\x17\x5b\xb1\xf3\x61\xc1\x2e\x07\x5e\x14\x02\x05\x14\xbc\xd4\xb6\x35\xd5\x30\x7a\xa7\xa9\x51\xd3\xc4\x61\x5a\x93\x4d\xfe\xf2\x8b\x4e\x36\x59\xd5\x83\xec\xab\xec\xad\xe3\x00\x63\x66\x0b\xbe\xa9\x8d\xfd\xe2\x0b\xfb\xc8\x32\x22\xa4\x80\x07\x7c\x68\xea\xbd\xe1\xfa\x27\x0e\xec\x9a\x6f\x8f\xd2\xbc\x98\x25\xa3\x8b\x72\xc6\xb5\xc0\x3f\xd8\x59\x45\x7b\x70\x1a\x7c\x71\x22\x72\xe3\x9f\xf2\xd7\xf6\x7f\x85\xde\x05\x1f\xbf\x11\xa8\xaa\xfa\x8d\x06\x79\xb1\xc5\x76\xda\xef\x47\x02\xfe\xaf\x68\x8d\xf0\x4d\xa0\x75\xe8\x07\xa9\xb0\x24\x08\xb3\x5f\xcb\xab\x02\xd6\x4a\x0f\x0b\x0b\xe5\x62\xb7\x79\x1e\x75\x63\x24\xbb\x18\x48\x1b\x78\xbf\xea\xd4\xd4\xb3\x30\x44\xa3\x49\x1c\xc1\x7f\xc7\xf9\xb3\x45\xe5\xa9\x50\xd5\x94\x34\x55\x4d\x55\x7e\x77\xbb\x67\xe3\x88\xc8\x8e\x5d\xcd\x0e\xbe\x7b\x45\x57\x12\x2e\x46\xbd\xac\x72\x60\xd7\x42\x7b\xfc\x4f\xfe\xf3\x59\xdf\x35\xf1\x7f\x4d\xb5\x46\xa8\x86\x06\x94\xcb\x19\xe7\xeb\x7d\x47\x22\xf0\xca\x84\xb8\x12\x67\x3d\x7d\x05\x8f\x22\x52\x35\x97\x95\x7f\xd3\xc2\x91\xce\xc4\xa8\xb5\x98\xf5\xc5\xf9\xfd\xd4\xc6\x83\x6d\xee\x48\xb6\x9c\x2c\xf1\x71\x65\xeb\x86\x36\x8e\xa5\x3d\x11\x06\xee\x5e\x65\x42\x54\xa7\xc5\xf9\x26\xf5\xec\x7e\x66\x92\x25\x87\x91\x84\xc7\x75\x52\xed\x31\xf4\xd5\x89\x2a\xa5\xca\xf4\xd9\x22\x2a\x5a\x54\x8e\x53\x3d\x87\x8b\xae\xe7\x50\x6a\x5d\x36\xe9\xa5\x99\x97\x71\xc2\x41\x07\x48\x20\x5f\xd7\xca\xd3\x0b\x0b\xed\xdc\x14\x4a\x84\x12\xe5\x12\x98\x8c\xeb\x1a\x5b\xb3\xa5\xd3\x00\xab\x08\x87\xd6\x42\x9a\x44\x13\xda\x0a\x3d\x46\x03\x11\x0c\xc0\xd3\x6e\x0c\xf0\x06\x97\x2b\x0c\x75\x2d\xc7\xa6\xfb\xa3\x26\x45\x28\xd3\xef\xa7\x59\x4f\xf3\xad\x1f\xa5\xe9\xe2\x6b\x75\x40\x86\xe9\xa8\x1b\x25\x04\x34\xda\xe6\x17\xca\x3a\x32\xee\x02\xa3\xa9\x44\x3c\x95\x8d\x58\xd9\xa1\xda\x88\xab\xca\x7c\xcc\x5a\xfe\xaa\xc7\xea\xb8\x5a\x7b\xc7\x91\xcc\x61\x5b\xf1\xcf\x1f\x51\x9a\x49\xc8\x66\x23\xac\xe4\x72\x8c\x94\xa7\xf5\x00\x94\xdf\x25\x8a\xfb\x2a\x3c\xb9\x15\x28\x02\x8c\x1f\xd0\xa0\x73\xa4\x86\xb7\x43\x42\xeb\x35\xbc\x9d\xf3\x3a\x0f\x48\x1a\xe7\x5f\x63\x62\x31\xe3\x7f\x88\x83\x01\x9e\xdf\xff\x51\x03\x52\xec\x7f\xa1\x9d\x91\x04\x97\x73\x26\x2f\x04\x1a\x08\xb5\xd9\x34\xec\xd9\xb3\xb7\x3d\xb2\xa3\x94\x91\x82\xd8\x0e\xa8\x63\xf2\x75\x03\xbb\x57\x19\x44\xe4\x61\x16\x75\x2d\x26\x56\x92\xc9\x8a\xbf\xfe\xfc\x54\x57\xda\xa3\x22\xe2\xfa\xa4\xa0\xb9\x34\xb4\xab\x41\xdb\xff\x25\xe2\x44\x77\x73\xd5\xd4\xb7\xff\x40\x54\x3e\x46\xff\x1f\xb5\x8b\xbf\xaf\xe5\x38\x7f\x65\xcd\x07\xc2\x4f\x75\xe8\xd8\x75\x4c\xb4\x5f\xfa\x3a\xa6\xf3\xf6\xe3\x9d\xf2\xa4\xc5\xd4\xde\xc4\xe8\xba\x2e\x6e\xcf\x4d\x7a\x46\xcb\xd7\x3c\x8a\x54\x2f\xa7\xd8\x31\x6f\xb0\x52\x17\xe9\x08\x47\xd8\xc2\x31\x01\x0a\x09\x88\x74\x60\xa0\xef\x51\x12\x18\xae\xc8\x03\x48\x95\x52\xbb\x40\xf1\xcc\x1a\x25\x9a\x31\xd3\x1f\xc3\xd3\x62\xf9\x7c\xb2\xab\x48\x3c\x3c\x40\xc1\x0d\xca\xd1\x8b\xb4\x4e\x36\x1e\xec\xf8\x14\xf3\x6c\xa7\x3c\x95\x59\x5b\x87\x94\xaa\x91\x36\xda\xe0\xc4\x37\xce\xfb\x9b\x88\x71\xb0\xda\xb6\x74\x54\x8c\xb3\xad\xd3\xda\xbd\x7b\xe3\x14\xb5\x16\xbb\xd6\xfc\x32\x46\x17\x72\x3f\xef\x60\xcf\x74\x1e\x77\x08\xbc\x5e\x62\xf3\x9e\x59\xe5\x1a\x13\x8a\x45\xd7\x60\x57\xf9\x46\x69\x5c\xd9\x83\xa5\x97\xca\x40\x42\x5f\x69\x3a\xae\x99\xf0\x8e\xab\x80\x36\x99\xc4\x71\xd4\x07\x25\x0e\x8e\xe8\x4b\x4a\x26\xf9\x92\x3b\x19\xc3\x38\x1d\x0c\x6c\x6f\xc6\x87\x55\x30\x50\xb2\x0e\x2b\x4d\xa5\x3e\xfa\x0e\xd3\x49\xdc\x7b\x80\x26\xd8\xf1\xfc\x1e\xd8\xc5\x3d\x1c\xdb\x3b\xaa\xb6\xa2\xe3\xe8\x9b\x81\x86\x6d\x4c\x75\x2c\x44\x9d\x0d\x98\x8d\x33\x53\x5d\x83\x2a\x67\x4e\xc8\x30\x7c\xc0\x3c\xb2\x03\xd3\x52\x9e\x31\x6d\x39\xf1\x92\x55\x7f\xdf\x84\x08\x83\x1f\xf6\xcd\x33\xbc\x44\xb1\x16\xde\xa0\xb5\x27\x42\xb4\xaa\x18\x71\x02\x31\x21\x0c\x13\xeb\x8d\xe3\xcf\x3e\x9c\x7a\x74\x04\x57\xec\x9c\x5e\x91\x9b\x65\xa6\x3b\x02\x86\xe3\x52\xa0\x75\x1d\x3f\x9c\x6a\xfc\x64\xa3\x6a\x60\x9a\xd9\x96\x92\x94\x3a\xa1\xea\x87\x27\x54\x4d\xdf\x26\xf9\x24\x8b\x92\xc1\x9c\x12\x66\xf9\x43\xf8\xec\x95\x3a\xac\x63\xad\x70\x85\x8f\x93\x3a\x6c\x39\x5a\x89\xf2\x56\x4d\x3c\xa3\xe1\x89\x9c\xd8\x14\x61\x27\xd5\x3a\x76\xab\x56\x71\x21\x7a\x99\xd8\xe4\x43\xac\x3a\x8c\xf7\xd5\xc0\x8f\xfd\xd5\x06\x62\x88\xc5\x76\xdf\xae\x80\x89\x4e\x72\x9c\xa7\x60\xfc\xf9\xa6\xf6\x33\xcf\xb6\x63\x33\x51\x4c\x1b\xae\xdd\xb5\x1c\x57\x69\x77\xd5\xef\x34\x2c\xf2\x87\xe8\x2f\x91\xc4\xb8\x8a\x0e\x4f\xa4\x63\x21\x59\xea\xb4\x45\xdd\x89\xc5\xba\xeb\x98\xf3\x43\x2a\x5f\x7a\x4d\xdb\xbb\x33\x1a\x1e\x73\x98\x16\x80\x92\x9f\x12\xed\xb6\x9b\x8a\x08\x6b\xb6\xf3\x64\x2d\xa6\x2d\xac\x16\x4d\x7f\x47\xf1\x23\xbc\xa3\x21\x1c\xa6\xdb\x8d\x85\x74\x03\x13\xcc\xc6\x82\x6f\xa6\x9f\x71\xbb\x83\x92\x0d\x85\x89\x92\x91\x4d\x8a\x1d\x1e\xfe\x03\x16\x14\x05\x8b\xd8\x84\x91\x10\xdf\xae\x34\xb6\x82\x97\xf0\x99\xad\xdb\x81\x52\x3b\x3f\xa3\x2b\x4f\x67\x1a\xa8\xad\xf7\xb6\x33\x1b\x4f\xc2\xc2\x30\x20\xae\x49\x6d\xa8\x71\x39\xa4\xa9\x93\x42\x45\x6e\xa7\xd5\x51\xe4\xa8\x3f\xd3\xf9\xc9\x8d\x9a\x87\xfb\x6c\xbb\x18\x66\xd1\x98\x33\xf5\x70\x04\xaf\xaa\xf1\xbf\x4f\x01\x98\x6c\xf2\x9d\x2e\x13\xd9\xa7\x4a\x21\xfc\x34\x94\x50\x77\xd0\x49\x08\xd8\xc3\x93\x1d\xcf\x3a\x72\x57\x85\x6d\xff\xf0\x9f\xfc\xe3\x96\x06\x54\x79\x68\xca\x79\xe5\x9a\xf5\xd3\xac\x6f\x23\x32\x44\x33\x1e\x32\x71\x1a\x6b\x07\x85\x45\x34\xb8\xc2\xab\xbb\xd4\x28\xae\x1f\x47\xc9\x52\xae\x55\xd6\x00\x5d\x96\xca\x85\x77\x17\x86\xa9\x0d\x87\x39\x57\x71\x60\xe6\xc6\x15\x51\x85\xa9\xca\x06\x04\x9b\x92\x63\x7b\x17\x4b\x97\x86\xe6\x0b\xc6\xeb\x23\x6d\xc9\x3e\xd2\x49\x93\xc9\xa8\xcb\x6d\xfb\xb0\xda\xff\x56\x61\xe1\xff\xed\xf4\x09\x05\x3d\xea\x5b\x5a\xe8\x2d\x9f\xbe\xff\x50\xb3\xe8\x7e\x18\x3c\xe9\x13\xde\xc4\xb9\x96\x32\x64\xdb\x55\xb3\x61\xb3\x11\xa7\x9f\x52\x34\xe7\x6f\x28\x22\xa0\xff\x1a\xd4\xcf\xc8\x92\xde\x56\xe5\xa0\x9e\x1d\xa7\x79\x54\x6c\xc3\x59\xee\x52\xa2\x3a\x61\xf7\xbc\xf8\xbb\xdb\xe0\x5b\x48\x1d\xa7\x7c\x62\x9c\x3d\x6f\x2a\x12\xe5\x9b\x53\xbf\x87\xc9\xc1\xcf\xcb\x43\x79\x9b\x52\x5a\x67\x9e\x4f\xbe\x81\x2d\xc0\x8f\xbd\x1d\x28\x75\xa0\x8b\x53\xa5\x0e\x74\x51\x51\x0c\xbd\xad\x1e\x7f\x68\x92\x5e\x5c\xae\x9c\xf9\xfd\x3e\x87\xf3\xa2\x93\x2b\xbc\x4b\x4f\x8f\xd4\xfa\x99\x5a\x4b\xc5\xde\xc5\xb6\xc9\x5b\x1e\x45\x74\x2b\xf0\x2a\x98\xb7\xd4\x24\x85\xe9\x68\x34\x49\xa2\x62\xf5\x81\x8a\xe7\xeb\x84\x10\xff\x7b\xf8\x72\x70\x05\x91\xc8\xc3\xde\x64\x57\x0e\xce\xee\x25\xad\x6f\xc6\x85\x04\x45\x99\xef\xb9\xf4\x4b\xf3\xce\xdf\xa5\x2c\xdc\x24\xe1\x92\x6e\xcb\xb5\xc4\x83\xc0\x50\x34\x0f\x1e\xf6\x3e\x4b\x6e\x1f\xf2\xb0\xba\x73\x14\x36\x4b\xb6\x9f\x96\x16\x7a\x8f\xb7\xad\xb9\xb8\xe3\x1f\x7c\x1e\x56\x04\xfe\xcf\x3d\x4a\x83\x8b\xad\x6e\x39\xce\xc2\x87\x29\x29\x80\x29\x7f\x4f\x07\x84\xb7\x31\x55\xd8\x6e\x8f\x00\xa3\x2a\xa9\x9a\x26\x45\x8f\x91\x79\xd5\xd9\x13\x1c\xa5\x1f\xd0\xcf\xe0\x00\x86\x74\x8e\xd4\xfa\xea\x74\xb2\xa4\xb5\x19\xf5\x85\xd5\xd0\x8b\x98\xaa\x0e\x21\x8f\x63\x2f\x6c\x1c\x17\x26\x26\xde\xd5\x7d\xc0\x3b\x6e\x5c\x0c\x3e\xab\x3a\x1c\xc7\x59\x3a\xc8\xcc\x68\x14\x25\x83\x5c\x75\x3f\x7d\xa8\x62\xa9\x0f\x95\x1e\x75\x36\x19\x0c\xca\x25\x47\x53\x2b\x1d\x8d\x2a\x75\x72\x5b\x57\x06\xcf\xa9\x7a\xd5\xc8\xc6\xdd\x74\x22\xed\xd5\x5c\xf3\x9d\xfa\xaa\xf1\xbb\xc1\xc3\xba\xef\x72\x56\x1f\x98\x1e\xf7\xf3\xc7\x58\x39\x28\x3a\xbf\xab\xc0\x6c\x37\x2a\xc7\xfa\x60\x62\x1f\xf0\x14\xa6\x48\x37\xc2\x6f\x46\xab\x16\x92\x7f\x6f\xd3\xcf\x23\xfd\x30\x83\xe4\x1f\x7f\x19\x9d\xf6\x48\xe0\x7c\xa8\x94\xb3\x8e\xea\xda\xeb\x69\xf8\x0a\x92\x7b\x7f\xd0\xe1\xa1\xba\x33\x3e\xd1\x00\xe7\x53\x50\x74\x8a\x11\xf4\x64\x53\x71\x0e\xe5\xe4\x57\x26\x08\x32\x5d\x61\x50\x71\xb9\x3d\xa1\xc6\x08\x71\x62\xaf\xa5\x90\xd5\x1f\x2b\x5e\xfc\x8f\x1b\x16\xcf\x62\x3b\xb3\x79\x91\x66\x14\x2b\xb4\x7c\xc1\x86\x37\x24\xdf\xb8\xe6\x86\x7e\x6c\x06\x3c\xd5\x4a\xa0\x7e\x1f\xa7\xd0\xb6\x75\xbc\x51\xdd\x50\x76\xcf\x14\x05\x99\xea\x65\x3b\xa7\x38\xde\x6f\x4f\x3d\xad\xc2\x46\xe0\xa1\xcf\x5b\xd7\x7c\x77\x3b\xc2\x0b\xd8\xbc\x13\x81\xa6\x5e\xe8\x4d\x42\xdb\x23\x1d\x2f\xfc\xf6\xbb\x30\x9c\x30\xfb\x17\x95\x0e\x18\x73\xbc\xf2\x5f\x29\xfd\xd9\x3f\xd5\x4c\x3a\x6f\x69\x7b\x31\xc1\x17\x63\x7d\xbc\xa7\x5a\x85\x98\x06\x09\xf9\xaf\x77\xa6\xca\xa9\x41\x07\x81\x84\x27\x34\x40\x42\x3a\xa1\x82\xf3\x3c\x9f\x90\xc9\x72\x08\xb6\x73\x53\x1f\x96\x9c\x53\x72\x07\xc8\xe2\xa1\x43\x0b\xbe\x3a\x2a\x9b\x4a\x15\xf4\x39\x5e\x9a\x3e\x3a\x1b\x9b\x6c\x69\xc5\x20\xb9\x80\xa8\xfa\xfb\xf4\x54\x7c\x5d\x6b\x39\xa3\xbe\x42\xf4\xb3\x91\xc3\xd1\xf2\xe5\x46\x70\x65\xf1\xf5\xd4\xe3\x6e\x56\xd2\xa4\xda\xc2\x5a\x69\x35\xf2\x7a\xc2\x38\x3a\xf8\x5a\xa1\x8b\x32\x3b\x8e\x4d\x48\xb9\x06\x1f\x7c\xc3\x6e\xf3\x75\xcd\x39\x7c\x7e\xa1\x3d\xb4\x26\x2e\x86\xe5\x73\xa2\xd1\x58\x28\x2b\x35\x7f\x65\x93\x80\xc2\x52\x82\xec\xa5\x84\xc8\xdf\xc3\xf4\xf1\x8d\x0a\x10\x0b\x9b\x00\x32\xcd\x14\x08\x08\xd5\xe0\xc2\x5d\x86\x31\x17\x72\x84\x96\x63\x91\xbb\xec\xb2\x8b\xaf\x4c\x4c\x1c\xf5\x9d\xa2\x80\x84\x6b\x6a\x15\x5c\xa9\xe5\xd8\x5f\x5c\x2c\xff\x2b\x80\x95\x8a\x02\x0c\x86\xf3\x7f\x0b\x2a\x03\xdd\xd0\xc2\x3e\x8c\x3c\xa6\x09\x5b\xe7\xd2\xd4\x43\x66\x2e\xb9\x1a\x7b\x77\x92\x51\x4a\xc8\xf5\x04\xfd\x24\xf0\x0e\xe4\x4f\x5c\x63\x60\xaf\xdc\x53\x85\xcb\x90\xa3\x86\x81\x1e\x00\xbe\xd6\xbd\xb5\xfd\xbe\xcd\x1e\x25\x22\x32\x1d\xd0\x20\xa4\xbf\x4e\xbb\x59\x94\x2a\x7c\x3d\xf2\xed\x40\xe1\x93\x2e\x81\x21\x1a\x71\xff\xf5\xa9\x22\x70\xe1\x0e\x17\x70\xb0\x31\x39\x15\x67\x00\x51\x6c\xe0\xcf\xc0\x9b\xc0\x21\xc9\x02\xa9\x30\xc4\xa0\x85\x46\x00\x77\x06\x6c\xde\x42\x6f\xa0\x55\x73\x8b\x22\xca\x4b\xa3\xe7\x77\x20\x56\x94\x6c\xc7\x3a\x55\xce\x62\x3b\x4f\xd9\xe5\x80\x65\xbc\x14\x28\x33\x79\xa9\x56\xd6\xd8\xb3\xa7\x9d\x2f\xd9\x62\x73\x53\x1e\xaa\xbe\x42\x73\xe5\x7d\x9a\x95\xa8\x18\xf6\x32\xbb\x42\x3f\x00\x8c\xfe\x21\x0c\x19\xdf\x68\x3c\xee\xc8\x66\x51\x68\x92\xfc\x91\x96\xd3\x0b\xdd\xd2\x29\x77\x9d\x64\x08\x11\x15\x61\xac\x36\x2a\x24\xe9\x34\xa2\x8e\x7f\xa2\x1c\x51\x4e\x3e\x4c\x95\x68\xc0\x65\xdd\x9e\x78\x7e\x13\xaf\x5f\xb9\xe4\xdc\xbf\x94\xd3\x28\xd9\x0b\xb5\xad\xb9\xab\x19\xce\xd5\x77\x54\x65\x28\x32\x90\x2a\xc6\x3a\x65\x91\x0c\x18\xee\xdf\xa3\x55\x24\xa8\x40\xfa\x4d\xa1\x10\xa2\x71\x40\xf6\x9d\x59\x83\x91\x16\xff\x01\xbf\xa8\xf0\x15\xb5\x1c\x93\xeb\xe1\xe0\x71\xd5\x78\x9d\x4f\x62\x0a\x9e\xbd\xe4\x2c\x7c\x79\xa1\xd7\x68\xe8\x1a\xa5\xaa\x04\x55\x00\x70\x48\x9c\x50\x9c\x29\x28\x63\x8b\xc2\xd5\x93\x4a\xb3\xb2\x67\xb3\x78\xd5\x6d\x4c\x49\x3e\x7b\xbe\x87\x6f\xd5\x7e\x6a\xff\x0b\x74\x34\xe0\x90\x77\xcc\x24\x9e\xa5\x64\xea\x77\x72\x1e\xc5\xab\xc4\x86\x27\x19\x09\x95\x23\x43\xb7\x03\x92\x01\xc7\x2b\xc4\x32\x07\xa3\x82\x88\x69\x18\xe7\x1c\x78\x56\x7c\x26\x3a\xc2\xbe\xbd\x4a\x5f\xc0\xd7\x4a\x30\x21\x36\x2b\xf9\x24\x2a\xc0\x2d\xca\x1d\x4d\x10\x49\xae\x20\x6d\xf9\x06\xdf\xd8\x84\x46\xa0\x01\x91\x8e\x28\xe1\x0f\x8a\x92\x7e\x6c\x46\x23\x53\xa4\x19\x73\x52\x38\x1f\xcd\xb5\x9f\xdd\x54\xea\xa2\x87\x34\x45\xc3\x1f\x35\xb0\x02\x2d\xb6\xc7\x69\x1c\x11\xcb\xf7\x8c\xa2\xfc\x17\x46\x29\x29\x1f\xfb\x93\x71\xa6\xa3\xc1\x97\x4b\xab\x93\x96\x17\x3b\xfa\x01\x79\x84\x7c\x1d\x88\x13\x4d\x59\xfc\x48\x84\x6a\x9d\x64\x70\xf9\x63\x08\xb4\x66\xf9\xc7\xb0\xc4\x1f\xec\xb8\x0e\x63\x9b\x2d\x0b\xf4\xe2\x6f\x53\x32\x98\xdf\xdf\x1e\x59\x93\x4f\x32\x4b\xae\x00\xcc\x1b\xaa\x89\xd2\xaf\x45\xbf\x2a\x08\x12\x6f\xa0\xcd\x8a\xc9\x6c\x85\xd4\xf4\xb7\xe9\x70\x40\x24\x76\x54\xf7\xdf\x1c\xf5\x34\x53\x76\xd2\xb5\x09\x99\x7f\x9c\x5b\xdc\x0b\xcc\x37\x0d\xc5\x83\xb6\x3d\x18\x46\x5e\x16\x0b\x81\xf1\x09\x45\x9e\x7f\xa2\x66\x46\xf7\xec\x69\x93\x9a\x3b\x06\x0f\x19\x34\x90\xf7\x60\xb9\x43\xc4\x15\x16\xef\x9c\xca\x9f\xc4\xcb\x29\x8c\xa8\x03\x4a\xbb\xd7\x39\xab\xa4\x69\x29\xd3\x89\xf0\xc6\xa5\x82\x7d\x9c\x76\x3c\x78\xca\x2f\xeb\xa8\x6b\x33\xa2\x6d\x02\x2e\x57\x36\xb3\x6a\x61\xa9\x77\x00\x51\xef\xe6\x2b\x93\x28\x5b\x05\x06\x4d\xc3\xc6\x60\x04\x19\x28\x20\x22\x79\x9b\x5f\xff\x8b\xed\x6f\xa4\xf9\x70\x62\x28\x89\x2e\x6f\xe9\xd3\xad\x3c\x33\x58\x0f\x37\x94\xd6\x5c\x94\xf4\xa2\x10\x3a\xc3\x8a\x01\x09\x1f\xe5\x6b\xe7\x90\x8c\x4c\x94\x14\x26\x4a\xd8\xbb\xc0\x49\x7a\x2b\x50\x94\x02\xdc\x45\x28\xa9\xda\xcd\xc5\x4f\x12\xfd\x58\x6d\x29\x4c\x07\x12\xcb\x7c\xad\x3a\xbd\x0d\xf5\x10\x86\x96\xb4\xcb\x17\x9c\x0d\xf0\xdd\xf1\xdc\x75\x8b\x9a\xf5\x96\x4e\x85\x00\xe6\x31\xe5\x18\x12\x08\x67\xd6\xa3\x27\x8e\x4c\x3d\xdd\xf6\x11\x92\xb3\x77\xe1\x97\x0f\xc5\x6a\x50\xa5\x03\xbb\x16\xda\x7d\x13\xda\x38\xea\x17\x2d\x45\x02\x73\x56\x2b\x61\xab\xb3\x28\x8d\xf3\xed\xbe\x46\x7a\x52\xb5\x61\xfd\xff\xd1\xd5\x0f\xbf\x8f\x51\xe9\x68\xac\xb8\xa4\x32\xbc\xf7\xa6\xaa\x3a\xfe\x99\x8e\x02\x87\xb7\x3b\x5e\xc8\x38\x9f\x64\xcb\x36\x8a\xe3\x72\xa0\x66\x7d\xf4\x76\x03\xa6\xcc\x29\xef\x3a\x6d\xcd\xd7\x29\xc4\x44\x77\xc4\x56\x47\xc3\xf0\xb7\x50\x28\xda\xec\xe2\x13\xee\x3c\xb3\xc9\xa0\x18\x5a\xdf\xdd\xe0\xdc\x6e\xe7\x13\x9c\x51\x35\xf5\x5e\x66\xcd\x68\xce\x7b\x88\xf7\xb9\x6b\x0d\x71\xdd\x29\xb8\x6d\x80\xb6\x5d\xa7\xb9\xe0\x7f\x50\x15\xd9\x23\xba\x13\x26\x34\x99\x64\xa2\x19\xfb\xa4\x40\x6f\x27\x9b\xda\xd9\xbb\xc6\xfc\xe3\x19\x0d\x98\x56\x7d\x28\xdb\xa8\xd0\x07\x17\xe5\x91\x1a\x41\xc7\xc2\xc2\xbe\x76\xd7\xd0\x38\xcf\x78\x50\x24\x22\x76\x1c\x25\xe8\x38\xe2\x24\xa0\xea\xe0\x1a\xdb\x22\x8b\xec\x6c\xcb\xf9\x8a\x87\x68\xfd\xf1\xb5\xaa\x18\xbd\x3b\xd5\x00\x43\xbf\x92\x4c\x6c\x14\xe9\xe2\x47\xf0\xde\xf9\xa6\xa9\x5a\xdf\xcd\x08\x9f\xa6\x31\x13\x0c\xa8\x13\x86\xbd\x7a\xe3\xfe\x62\x7b\x55\x18\x21\x59\xb3\x64\xea\x33\xee\xaf\xd5\x36\xc3\xcb\x2f\x53\x6b\x40\x6c\x0b\xf1\x3f\x85\x7a\x53\x49\xa4\x5f\xa8\xa1\x65\x9e\x5f\xa0\xa2\x73\xd4\xb3\x89\x53\x30\xc4\x19\xc7\xdd\x0f\x7c\xd3\xd0\x45\xb3\xd8\xee\xa6\xa3\xae\xcd\x60\x1b\x61\x72\xff\xbb\xa9\xf7\x76\xb9\x08\x81\x15\x7f\x4d\x71\x52\xd9\x3c\x64\xa8\xc9\x82\xa3\x1c\x6e\x39\xd2\x93\xd3\x4d\x80\xa9\x38\x22\xc8\x08\x96\x34\x5c\x46\x10\x55\xf3\x75\x13\xbf\x68\xd7\x64\x5d\x66\xfd\x12\xee\x68\x0f\xd0\x63\xcb\x2f\x9e\xa8\xb4\x6c\x8f\x6d\x61\x67\xb5\x8e\xcf\x11\x8c\x02\x3c\xeb\x33\x4a\x6d\xf9\x2a\xbe\x00\x59\xd0\x39\x77\xe8\x8f\x6d\x36\xc9\xed\x8c\xc2\x92\x01\x97\x81\x84\xd0\xe5\x8a\x38\xee\xa3\x2a\x9d\xd3\x2d\x72\xc5\x3a\xbb\xae\xfb\x39\xd6\x55\x72\x3d\x4b\x89\x2b\x69\xe6\xd3\x64\x7a\x15\x59\xd4\x69\x5d\xc6\x39\x5d\x49\x90\x59\x33\x81\xf7\x25\x45\x31\x95\xd7\xb9\xae\x3b\xa8\x99\x5d\x91\x75\xaf\x82\xbf\x53\xad\x09\x3c\xf3\x8c\x74\x36\xcd\x94\xdb\x44\x62\x04\xdf\x6a\x73\x5c\xc3\xe8\xde\x08\x36\x69\x46\xfc\x6a\xfb\xf9\x05\xf2\x82\x91\x7a\x38\xa9\x91\xc9\x27\x83\x87\xdc\xf1\x16\xc2\x09\x76\x7c\x35\x0b\xa2\x65\x75\x49\xd7\xa6\xee\x35\x69\xc7\x64\x76\x39\x8d\x97\x25\x73\x8c\x5a\xe3\x39\x8c\x2d\xdf\x38\x77\x28\x49\xbd\x67\x83\x3c\x2a\xba\x7c\xf8\x7a\x4d\xe1\xcb\xad\x09\x87\x50\xd0\x65\x4c\x21\xe5\x8c\xa5\x93\x81\xde\x42\x67\x49\xc4\x37\x52\x7d\x28\x71\x94\x44\x61\xae\x2b\x44\x8a\x4b\xfc\x3c\x92\xf5\x70\x51\x33\xd3\x8b\xa4\xee\x51\x4e\x45\xa5\xf7\x0f\x36\xfb\xdf\xd1\x90\xe0\x88\xfa\x6e\xe0\x0b\xac\x5b\xc1\x16\x79\x55\x43\xa8\x52\xce\xde\x3e\xc7\x75\xbf\x23\x8a\xd1\xe0\xba\x42\xa7\x9c\x56\xb4\x4f\x4b\x49\xba\x02\xae\x04\x84\x1b\xdf\xa4\xbf\x43\xcd\x08\x0b\x1a\xd3\xb1\x75\x8d\xe2\x2d\x34\xc7\xfd\x47\x0a\xee\x50\xd0\x3a\x4c\xd6\x55\xaa\xcd\xb4\xf0\x78\x13\x2a\x93\xfa\xe5\xfd\xbb\xd9\x83\xc5\x72\x81\xb3\x83\xb3\xf6\x87\x53\x85\x7d\xb8\xe4\x3c\x9f\x22\x32\x89\x49\x46\x36\x99\xd1\x95\x3f\x25\x3e\x7f\x61\xea\xe1\xea\x75\xaa\x2d\x62\x61\x4a\x63\x46\x21\x0a\x2b\xa3\x42\x32\x7f\x8a\x7c\xb2\xe9\xcd\xf9\xc4\x10\x38\xa4\x50\xcf\xb9\x49\xa0\x01\x24\x39\x8f\xe8\x46\x83\x2d\x1d\xcd\xac\x5a\xcb\x1c\x3c\xbf\xd0\xb6\x07\x23\x25\x38\x0b\xac\xc0\x15\xc5\x34\x75\xc5\x61\xfe\xc6\x65\x64\x6b\x26\x08\x2b\xe0\x75\x61\xa8\xf8\xba\xe6\xb7\x53\x8d\x10\xf5\x13\xcc\x3c\x1e\x16\xf2\xcb\x70\x7f\x8e\x28\x55\x88\x6b\x8d\xcd\xb8\x5d\x13\x2e\xcd\x96\xab\x1c\xb3\xbb\x83\x7a\x54\x10\x1c\xa3\x8e\x8f\xe8\xe2\x86\xe2\x6e\xd9\xb6\xa6\x88\xf3\x86\x76\x84\x50\xe8\x39\xb1\x8a\xaa\xdc\x7b\x54\x51\x73\xc4\xd1\x92\x8d\x57\x1f\x2e\x17\x0c\xbe\xfe\xba\x6e\x43\x62\xe4\x31\xdf\x28\x0a\xe1\xfb\x00\x2e\xa0\x4b\x61\x3b\x20\x38\xfc\x79\x2d\xf6\x7f\x4a\xab\x35\xa8\x1e\xab\x5b\x53\xc5\x62\xfa\x16\xd2\x24\xd8\x20\x57\x91\xe5\xc0\x77\xdd\x55\x5b\xa9\x18\x46\x59\x6f\x9b\x47\x2a\x22\x0b\xca\x04\x22\x54\x27\x77\x64\x22\xca\x55\xa2\x3d\xac\xaa\x7f\x3e\x5d\xaf\x1a\xf0\xd3\x74\x04\x6d\x5e\x16\x41\x9b\x7a\xb6\x1f\xd4\x87\xc4\xd9\xfe\x34\x6e\x86\x70\x18\xd9\x3e\xc5\x1c\xa2\x2e\xe8\x23\x16\x3e\xf8\x70\x6e\xbe\x57\x5b\x2d\xfb\x5f\x28\x9d\xc8\x34\x19\xc4\xab\x64\x9b\x51\x99\x3b\xaa\xb8\x4e\x8f\xaa\xc6\xa7\x61\x9a\x2e\x29\x52\x1b\x26\x27\x96\x02\x60\x43\x11\x7f\x5f\x3b\xf9\xc2\xf2\x17\x90\xa7\x55\xca\x2a\xee\xc6\x2d\xf3\xe5\x34\x0e\xab\xda\x90\x27\x95\xa4\x43\xbd\x7e\x22\xaf\x3e\x9a\x24\xd1\x0c\x61\x44\xa5\x08\xd5\x72\x7a\xec\x2c\x25\x22\x25\x98\x27\x95\x45\xa7\x6c\x28\x31\xb1\x95\x2b\x07\x27\x21\x0a\xa8\x7c\xdd\xb0\x2b\xda\xa6\x37\x89\x91\xb6\x47\xd2\xa3\xd5\xf1\x89\xf4\x1b\x64\xf3\x04\x04\xd1\x20\xe4\x36\x48\xe3\x1e\x87\xdf\x70\x28\x36\xf0\x74\x7c\x33\xd5\xf5\x8f\x57\x26\xa4\xbc\x71\xc0\x29\xae\xd3\x9a\x42\x12\xec\x1c\x0d\x0b\x5f\x4f\x5b\x2f\xfa\x68\x56\x03\x05\x0b\x9b\xf4\x72\x9c\xf9\x4e\xdd\x72\x7e\xbf\xa3\xb5\xff\xd4\xb7\x76\x98\xda\x57\x26\x51\x61\x24\x5d\x2c\xe4\x0b\x4a\xac\x6e\xbd\x01\x87\xbd\xd8\x36\xe3\xb1\x8d\x29\x15\xd7\x72\x1c\x2b\x17\x55\xc2\xe0\xa2\x9b\xef\x38\x5d\xb1\x99\xed\xcd\xfa\xf8\x8c\x17\x13\x52\x82\x87\x14\xa8\x9a\xf1\xb8\xb0\xbf\x75\x29\xe6\xe7\x17\xda\xc3\x34\xcb\xf1\x93\x18\x4d\x9c\x6c\x7c\xed\xde\x69\x9c\x66\x45\x3f\x8d\x23\x2c\x32\xd8\x11\xf6\x58\xf8\x66\x73\xd7\xe2\x57\xe7\xdb\xf3\xfb\x29\x47\x88\x30\x08\xf8\x1d\x61\xc3\x28\xb7\x08\xe3\x85\x54\x17\xd0\x30\xed\x76\x57\x67\x10\x55\x21\xc0\xd8\xd2\x69\xa0\x3b\x47\xfd\xea\x92\x06\xb2\x99\xd8\x52\xb8\x0a\x5f\xe2\x03\xb2\x29\x70\xe3\x2f\xd1\x6f\xe1\xfa\x17\xea\x04\xe7\xc8\x15\x36\xed\x6f\x68\x9c\xdd\x41\xe8\x56\xe3\x45\x95\x29\x1d\x45\x89\xcd\x4c\x0c\xd7\x93\x89\x89\x82\x0a\x4b\x51\x43\x4a\xa4\x0c\xdf\xb3\x1e\x2b\xf6\x54\xa8\x11\x60\x58\xef\x57\x3a\xe9\x1b\x71\x6c\x93\xf1\x8c\x4f\xe8\xa0\xda\x05\x8f\xe0\x0a\x19\x1a\x36\xd6\x1e\xa4\xbf\x62\x46\x63\x41\x75\xb9\x9e\x4f\xd7\x09\xf3\x89\x2b\x6b\x8c\x6c\x19\x90\xe4\xc3\x68\xdc\x52\xd9\xfd\x43\xaa\x84\x7c\x28\xd8\x2c\x93\xe7\x74\xa9\x0e\x8e\x4d\x92\x4b\x65\x94\x19\x3a\x34\xe8\xf2\xbc\xaa\x6d\xe5\xc3\x34\xb3\x71\x94\xd8\x4a\x32\xa9\x1c\x64\xd9\x7d\xf5\x64\xc5\x73\x6d\x12\x50\x8f\x5e\x45\xee\x57\x9c\xfb\xf2\x43\xe2\xf5\xd7\x41\x4b\x99\x09\x97\xe4\xcd\x85\x0b\xc8\x27\xa6\x5f\xf7\x40\xa5\xd4\xf4\x56\xcc\x2a\xb8\x46\x84\xab\x45\x81\x7b\xce\xc0\xef\x12\x27\xba\x91\x24\x2c\x4d\x72\x4f\x32\xc1\x89\xce\xa0\x92\xf5\xf4\x4e\x70\x6a\x96\x2c\xd3\x8e\xc2\xd0\x5e\xd4\xa5\xff\x8b\x4d\x4d\x41\xd6\x64\xf1\x2a\x9d\x4a\xe4\xd5\x7d\xee\x49\x72\x22\x90\xaf\x7c\x94\xaa\x38\x62\x57\x7c\x35\x79\x68\x32\x93\xe7\x23\x9b\x70\x82\xa7\x49\xdf\x69\xa7\xa6\x1d\x1e\x44\xcc\x02\x8b\xc4\xcc\xa5\xa9\x62\xeb\xb9\x89\xed\x81\x8a\xf0\x5c\xe7\x49\xb5\xd5\x12\x33\xb0\xe5\xaf\x90\xfe\x37\xbe\xf8\x81\x8e\xe2\xc0\xf9\x6d\xda\x71\xb0\x3f\x77\x31\xae\x2c\x68\x07\xc4\x07\xfc\x3c\xd4\x7a\xdc\x4a\x76\x6d\x70\x47\x14\xa8\x68\x76\x4d\x75\x9c\xdf\xc7\xac\xa0\xa2\xc3\x12\x92\x38\xab\x44\x4d\x56\x84\xf6\x3d\x2b\x3d\xb7\x20\x31\x94\x5a\xe1\x81\x26\x49\x18\x5b\x93\xb5\xd4\x63\x63\xa0\x24\xc7\xae\xc4\x9c\x48\xe5\x7b\x40\x4e\x06\xf2\x64\xd0\x73\x70\x94\xe7\xcf\x0b\x1b\xc4\x6d\x17\x20\x85\x26\x8f\x92\x74\x4e\x55\x63\x38\x43\x20\xe5\xba\x96\xeb\x19\xda\xde\xf1\xbe\x07\x53\xcb\x0a\x7f\xb5\xcf\xc8\x86\xe9\x88\x3a\x3a\xa2\x34\x79\x98\xbe\x54\x38\xdf\xbd\xe7\xf3\xaf\x03\x8f\x78\xfc\x08\x25\x2a\x00\x6f\x41\x1d\x80\x50\xe5\x7b\x74\xe8\x39\x26\x70\x07\xe7\xfe\x1d\x2c\x5d\x67\x00\x1d\x57\x79\x8b\x2a\x67\x42\x56\x43\xa3\xc5\xdf\x14\xa8\xb6\xce\x63\x53\x5f\xb4\x08\xd3\x6c\x9c\x66\xc6\x65\x56\x5c\x3a\xde\xeb\x3e\x5e\x08\x1e\xaf\x9e\x15\x5f\x6c\x3f\x3b\xeb\xe1\x18\x7f\x0e\x8e\x5a\x64\x38\x10\xec\x09\xd1\x7e\x19\x33\x30\x96\xaa\xa9\x2e\x95\xd8\x65\x9b\xcd\xa8\x82\xe7\x35\x55\x70\xd5\x72\x0a\x9f\xa8\x8d\x30\xce\x6c\xbf\x8c\x6b\x5c\xe7\xd6\x47\xaa\xd9\xf6\x23\x15\x75\x59\xd3\x9f\x21\x40\x3a\xfc\xaa\xa3\x34\x89\xf8\x3e\x96\x1b\x14\xd8\xfa\x66\x17\x66\xff\x0b\xed\xb4\xdf\xcf\x2d\xc4\xcd\xb8\x39\x83\x5e\x4c\x1a\x35\x04\x13\x13\x32\xe7\x10\x82\xe5\x53\xaa\xb3\xe6\x94\x22\xeb\x4d\x8a\xcc\x78\xae\x5d\x46\x42\x22\xb1\x26\xb0\x48\x57\x58\x09\xcb\x5f\x9e\x53\xac\x19\xb0\xf0\x00\x8e\xfd\x39\x16\x9c\x13\xe9\x28\xe7\x08\x06\xfc\x1e\x8d\x1c\x56\xca\x4f\xa6\x1e\x86\x69\x0f\x9a\xc1\xc0\x66\xe0\x99\xd2\x02\xe8\xcf\x2f\x54\xc9\x54\xe9\xaf\x07\x36\xcb\x56\x47\x26\xe9\xd9\xcc\x35\x87\x3a\x15\x2d\x8d\x00\xde\xec\x5a\x93\x7a\xaf\x89\x61\x62\x3d\xd3\x24\x63\x18\x45\xbf\x7e\xa7\xc2\x6b\x66\xb9\x05\x0b\x37\x02\x6c\xee\xee\xe0\x1b\x2f\x24\x3c\xe9\xf6\x26\x32\x70\x00\xa5\x9d\x51\x8d\x9d\x67\x1a\x85\xd7\xc1\x90\xe5\x1a\x47\x10\x57\xf0\x75\xed\xcc\xfe\xea\x7c\xb9\x5b\x71\x6c\x49\x36\x43\xf5\x02\x9d\xa8\xe4\xf6\x47\xa4\x0a\xd1\x52\x72\xeb\x2d\xc7\x9c\x7a\x36\xf0\x44\x31\xe3\xe1\x2a\xe9\xd5\x29\x11\x5d\xe6\x61\x82\xf3\xf9\x87\x5a\x45\xea\x47\xd8\xa7\xf0\xcb\xce\x4f\x35\x25\x7b\x21\xe9\x1d\xde\x68\x8a\xa7\x6a\x3a\x7d\xc2\x15\xbb\x90\xe2\x8c\x4c\xbc\x8d\x0c\xb6\x14\xe1\x7c\xe7\x03\x5a\xfd\xd0\xb1\xc4\xfc\xe3\xae\x96\xe9\x23\xa6\x5b\xb4\x86\xa4\x25\xfc\x71\x07\xb4\xcb\x8b\xa8\xbf\xca\xac\x2c\xc2\xd6\x73\x46\xf7\x85\x5c\x54\x34\xd8\xaf\xa9\x68\xaf\x6b\xb3\xcc\x68\xc5\xce\x6a\x3c\x24\x48\xa5\x6f\xd8\x15\x16\xc4\x74\xe2\xef\x4a\xd3\xa5\x09\xbd\x30\x4e\xf3\x62\xce\xe3\x40\x3e\x20\x7c\xb3\x13\xa9\x2d\x7f\x03\x65\xe5\x59\xd0\x67\xc2\x4e\x5d\xe6\x63\x47\x70\xd8\xce\xf8\xa7\x71\x9a\xf1\xb2\x45\xf8\xca\xb9\x46\xbe\x51\x04\x40\x05\x89\x23\x9b\x98\xba\xb1\x3d\x65\x82\x4b\x5d\xaf\x37\x29\x34\x98\xcc\x8c\x22\xec\x3e\xe6\x43\x53\xd0\x39\xcd\x8d\xd6\x8d\x27\x49\x41\x86\x0d\xc9\xb2\x6b\xb4\x4b\xf9\xba\xe6\xad\x1e\xd8\x35\xdf\xee\x93\x2a\x65\xcb\x63\xc1\x4e\x62\x2d\xf1\x4d\x2d\x6e\x99\xdf\xdf\xce\xd3\x30\xc2\x46\xe5\x94\x14\xd2\x50\x33\x58\x15\x70\x71\x98\xd5\x10\x13\x7a\xd5\x21\xca\x32\xd3\x8d\x7a\xaa\xa8\x8a\xde\x1a\xbe\x6e\xa4\xc0\x2f\xdd\xe9\x41\xe9\x15\xb2\xe3\xc5\x54\x2a\x81\x32\x11\x87\x2b\x32\x29\xb1\xf5\x99\x22\x39\x7c\x74\x91\xf8\x31\x7d\x0c\x8c\xa2\xc9\x68\xc6\x23\xf5\x00\x9a\xc4\xa4\x31\x02\x06\xff\x70\x55\x81\x0b\xfb\x26\x2c\xa8\xe4\x3d\xe7\x73\x78\x5b\xd7\x7c\xbe\xe6\xac\x16\xd3\x3a\x3e\xf5\x6d\xde\x4c\xa2\xc1\x04\xb1\x8e\x1a\x83\x54\x26\xf3\xd0\xb8\xee\x73\x14\xbb\x40\x7b\xac\xe8\xa4\xe6\x19\x7e\x7f\xa4\x81\x17\xf4\xb9\x76\x85\x4c\x14\x13\xf2\x11\x79\x65\x7c\xdd\x2c\x16\x92\x84\x36\x93\x2a\x9a\x83\x29\x78\x02\x05\x5d\xbb\x1a\x9b\x24\xca\x87\x2d\xcd\xa1\x1d\x68\x1c\x9e\x5f\xe2\x83\xcc\x24\x93\x58\x5c\x2d\xc4\x95\x6f\xa9\x18\xf3\xad\xcd\x81\xe3\xee\xdd\xed\xdd\xf3\x8f\x29\x3c\x24\x0b\xec\x72\xe3\xd9\xb4\xa5\xb4\xb0\x14\x2f\x1d\x03\x2f\x90\x3e\xdf\x06\xbf\x0f\x4f\xf3\x83\x40\x01\xc4\x1f\x5c\xf3\x89\x42\xe6\xbc\xc1\xcd\xe3\x6b\x9e\xab\xf9\x32\x25\x27\xb1\x51\xde\x54\x2e\xc4\x2d\xb5\x81\x18\xc6\xc6\x00\x98\x60\xeb\xe7\xa5\x0b\x17\x18\x39\x1c\xa9\x6f\xab\x72\xc4\x20\x4e\xbb\x26\xde\xee\x4b\x61\xc7\x35\x2d\x14\x72\x2f\xf0\x73\xf0\x33\x42\x43\xa9\xc0\x5c\x9f\x60\x24\xf8\x46\x4b\x0d\xaf\x37\x70\x51\x2d\xee\x6b\xc7\x51\x51\x70\x1e\x42\x32\x20\xf4\x21\x49\x81\x48\x44\x64\x93\xde\xc4\x15\x23\x11\xa3\xff\xcb\xc0\xc7\xeb\xff\xb2\x31\x1f\x5c\xda\x0a\x5e\xa4\x08\xe4\x1e\xe9\xf8\x5e\x43\xee\x4b\x83\x3f\x3a\xb7\xd6\x10\xe2\x14\xe9\x8a\x8d\x67\x94\x8e\xe4\x9b\xca\x2b\x06\xce\x52\x96\xb8\xc3\x68\x47\xe1\x92\x75\x7e\x0f\x90\x2e\x27\x34\x1d\x4a\x5d\x71\x72\xef\xae\x76\x66\x0b\x13\xe1\x3c\x70\x1c\x13\xaa\xe6\xfa\x84\x06\x97\x02\xae\x48\x6d\x02\x58\x9e\x67\xe0\x4a\xc3\x1b\x86\x01\x05\x6c\xe6\x90\x16\x7b\x30\xa1\xdd\xde\x12\xe9\xd0\x0b\x97\x2a\x8a\xd0\xb4\x7e\x90\x4f\x3c\xac\xa2\xfd\x4b\x28\x7e\xc8\x29\xed\x0d\xc3\x3b\x8a\x7d\xf7\x92\x7b\xf5\x61\x1a\x97\x3b\x3a\x9f\x51\x1b\xe3\x09\x06\xd3\x90\x89\x7a\xf6\xb1\x8e\x0a\x61\x3f\x6e\x58\x0f\xed\x5e\x3a\x8a\x12\xe9\x24\x82\x31\x3e\xa2\x4e\xda\x23\xbe\x9d\x31\xe3\xbe\x94\x3d\x7b\x7c\xc8\xe3\xb4\xe9\x4e\xaa\xfe\xf6\x2c\x5a\x36\x31\x17\x01\x61\x9d\x2e\x23\xd0\x69\xe2\x76\x54\xdd\x69\x97\x3f\x35\xb5\x10\x46\xcb\x11\x41\x4f\x66\xd4\xae\x05\x77\x3d\x8a\x1d\x97\xf5\x12\x3e\x35\xfd\x4c\xd5\x7a\x94\xa7\xc4\xe2\xde\xc5\xcf\xef\x70\xce\xf9\x6f\x3f\x06\x63\xc0\x21\x93\x96\x67\x58\xa3\xbd\x55\x29\x5e\x0a\x86\x46\x45\x59\xc7\x03\x2d\xb7\x72\x1d\xfb\x1b\xeb\x6d\x5d\xc1\xf6\x33\x62\x07\xa6\x56\xc2\xd2\xaa\x38\x45\x9d\x72\x96\x51\x72\xe4\xf0\xce\xb9\x7a\x07\x76\xf1\x22\xfc\x40\x13\xbc\x7f\xa0\x40\x24\xe3\x8c\xf0\xa4\xec\x6b\x3b\x52\xc9\xdd\x92\x17\xff\xdd\x26\xd6\x7c\x22\xa0\x1b\xc8\x2e\x71\xd6\xd9\x3b\xeb\x4d\xb2\xac\xd4\x0d\xc2\x1f\x11\xe9\x70\x7a\x5a\xd1\x14\xf7\xf2\xce\x93\xa4\x7c\x2c\x95\xe2\x64\xb0\x4e\xa0\xe1\x49\x3b\x2b\xef\x10\x15\x0f\xd0\xa8\xa1\x6c\x72\x85\x36\x3a\x06\xf7\x5e\xa0\x2a\x99\xb7\x68\x72\x10\x9a\x1c\x81\xe1\x93\xd6\x77\x85\x89\x3a\x86\x07\xe3\x46\xa6\x6a\x57\x13\x0d\x3d\x7f\x59\x93\xfa\x71\x92\x16\x43\x77\x30\x0a\xe9\x40\xcb\xf1\xa9\x5d\x50\xc9\xc8\xd5\xc8\xc6\xa4\x52\x21\x4c\x4f\x3f\xa5\x17\x74\xb8\x5c\x4f\xbc\x76\x4c\x73\xa7\x1d\xa3\x77\x80\x5b\xbe\x1d\xad\x12\x02\x42\x53\x0d\xb0\xe7\x6a\xee\x57\xb9\x70\x7b\x93\x22\x12\xd7\x46\x4c\x95\xaa\x86\x9d\x74\x1e\x6e\x94\x24\x36\x43\xcb\xaa\x54\x4e\x6a\x02\x4a\x64\x93\xff\xe7\xcf\x76\x7c\x11\xe4\x81\x35\xe6\xf2\xf6\x31\x6d\xd7\xc6\x04\x5e\x44\x71\x7b\x2b\x88\x2f\x94\x05\x97\xa4\xe5\x5f\x2a\x95\xb5\xbf\x9c\x2a\x31\x35\x16\x0b\x15\x1d\x3b\x1f\x91\x99\x81\x4d\x8a\x7c\x87\xcf\xde\x01\x22\x2e\x14\x64\xf4\xb8\xc2\xf1\xac\x38\xbb\x60\x31\x18\xb7\xd9\xc0\xbb\xe0\x04\x9d\x15\x71\x86\x8a\x03\x7b\x36\x8f\x40\x4c\xf9\x92\x2b\x7f\xa8\x98\xfd\x24\x39\x41\x6c\x22\x55\xe6\xe6\x63\xc5\x22\x16\x9b\x70\x69\xce\xf7\x6e\xde\x57\xa0\x50\x68\xbb\xc0\x41\x3d\xac\xc8\x89\x58\xf9\x57\xd0\x12\x0d\x21\x61\x2e\xed\x0d\xc8\xae\x1d\x0b\x54\x5d\xbd\xce\x8a\xb9\x7b\x77\x7b\xd5\x64\x3d\x5e\x09\x0a\x83\xbd\xef\x53\x31\xd8\xa5\x27\x3e\x8c\x12\x34\x0d\x4b\x09\xc7\xa3\xbd\x6f\x2b\x4f\x37\x8c\xcd\xa4\x17\xa5\x04\x29\x93\xe6\x3d\x9a\x0e\x59\xa7\x48\xc0\xbb\x7f\x5a\xdc\xeb\x71\x94\xbe\xd9\x2d\x4a\x86\x36\x8b\xdc\x61\x8c\xb8\x90\xb9\xc9\xf8\x66\xfa\x90\x07\xe9\x15\x9f\x2d\xdf\x5e\x24\x5a\x09\x7a\x2e\x71\x67\x39\x0d\xc2\x9b\x4c\xeb\x0f\x41\xfb\x7d\x62\x22\xc2\x39\xc8\x92\x30\x30\xdb\x37\x02\x95\xa7\x78\xb8\x53\x4e\x95\xe3\xc0\x2a\xa7\x1a\x3b\x74\x0e\x9c\x06\xce\x9d\xd8\xbb\x4b\xc4\x94\xc9\xb9\x03\x32\xf0\x0d\xd4\x32\x11\xdc\xfd\xaf\x3a\x19\x32\x87\x8c\x26\x8c\xd4\x23\xd4\x79\x83\xec\x0e\x90\x45\x00\xbe\x5e\xd2\x25\x56\x96\x0a\xc2\x81\x7e\x07\x66\xcd\xc5\x27\x1e\x00\xb1\x9d\x1c\x50\x66\xd4\x0c\x34\xf4\xf6\x7b\xaa\xf7\x78\x9c\xaf\x86\x43\x21\xd5\xa7\x1d\x5a\xd1\x35\x80\x1b\x7f\x5a\xed\x15\xb8\x26\x52\x4d\xf4\x64\x34\xa7\x75\x9b\xa1\x0a\x8d\xe2\xd8\x86\x4e\xbe\x19\xff\x7c\x52\xc9\x6c\xd4\xf5\xfa\xca\xb0\xa2\x6f\xf2\xc2\x66\x33\xbe\x26\xc5\x0c\x23\xa2\x07\x48\xb3\xc7\xe4\x83\x41\x5d\xd6\x64\xc5\x24\xc5\x9c\xf2\x79\x21\x5c\xef\x44\x61\x9d\xf0\xd1\xc7\x44\x63\x20\xcf\x5c\xbe\x0b\xfe\xe6\x8a\x83\x1e\x15\xa9\xc1\x91\x28\x2d\xb5\xba\xd7\x76\xf3\x0f\xff\x6a\x7b\x68\x96\x99\x25\x04\xa5\x00\xe8\x7d\xf2\xb5\xcb\x0d\xad\x44\xc5\x30\x4b\x57\x68\x44\xe0\x76\x7c\x5f\x2b\xa8\x7d\xdf\xa9\x48\x8c\x22\xe1\xc6\x47\x3a\xf7\x67\x9a\x8c\xe5\x67\x81\x47\xa4\xc4\x76\x10\xe5\x31\x64\xb2\x69\xa5\x80\x37\x04\x90\x51\xbe\x76\x3f\x9f\x2e\xdb\x2c\x36\xe3\xd9\x96\x22\xbe\x2b\xe7\x0e\xd1\xd7\x07\x38\x0e\x91\x9f\xf8\x53\x1d\x39\x5c\xaf\xb3\x66\xce\xb7\x4d\x96\xe6\xfc\x9b\x9c\x6e\xc7\xe2\x96\xdc\xfb\xa7\x55\xc3\xfb\xe5\xa1\x37\xe3\x01\x40\xd7\x95\x26\xeb\xb7\x74\x17\xf3\x35\x5f\x70\x32\x51\xec\x8e\x54\xe6\x33\xad\x70\x9b\x2a\x2c\xa1\xc9\x8b\x6c\x15\x4b\x00\x05\xf2\xad\x80\x1f\x38\x8a\x75\xb7\x06\x50\xc8\x77\x19\x4b\x47\xf7\x5c\x17\x59\xa0\x72\xcc\x6a\xa2\xda\x3c\x45\x4e\xb8\x92\xdb\xf4\xc1\x6b\x37\xb3\xa6\x57\x0c\x31\x3a\xd2\xb9\xa1\xda\x40\x6a\x1d\x53\x07\x76\xb5\x63\x53\x00\x38\x89\x90\xe4\xae\x82\xff\xc0\x9b\x11\xf2\x03\x7f\xb4\x16\xab\x8c\xe4\xc6\x44\xdf\x0e\x5a\x5f\xfb\x0a\x5b\x9a\x7f\xa1\xd2\x7c\xb7\x94\x65\xee\x5b\x1b\x4b\x86\x8e\x9b\xce\x51\x6e\x96\x0e\xf4\xcd\x4f\xf6\xf2\xcb\xed\x15\x33\x60\xa2\x0b\xc7\x93\xe2\xc4\x3e\xeb\x10\xc6\xf9\xfd\xed\x78\xd2\xa5\x06\x99\xa2\x22\x3f\x78\x4e\xc9\x0f\x9e\x6b\x4a\xc7\x4a\x5f\x0d\x6d\x0f\x82\x8f\x9e\x79\x7a\xcd\x33\x5e\x9f\x79\xba\x23\xb5\x62\x53\x14\x36\xe9\x49\x9c\xe1\x04\x60\x5d\xeb\xf2\x59\xa5\x12\x99\x4f\xe2\xc2\x24\x2d\xa5\x2d\x81\x1c\x09\x5f\x7b\x5e\x77\x1b\x5b\x33\x98\x78\x85\x7e\x20\xc8\x10\x37\xf1\xb5\x5a\x68\xdd\x49\x6f\x60\x8b\xed\x34\x76\xdc\x2e\x15\xf8\x2c\xeb\x5f\x92\xad\x54\x6d\x54\x2f\xb9\xbc\x9f\x82\x8a\x7d\x40\x46\x02\x86\xfa\xf5\xa9\x87\x9f\xfd\xbe\xdb\xb1\xe1\x44\x51\x67\x61\x79\xc2\x2b\xe0\xeb\xda\xe8\x1f\x80\x4a\x46\x5e\x06\x99\xfc\x1e\x72\x0e\xf9\x06\x93\x37\x80\x19\x91\x9e\xa0\xfe\x93\xbe\x81\xfc\x34\x95\x6c\x38\x23\x34\xd5\x26\xe8\x2a\x8e\x18\x6c\xda\xcb\x58\x34\x70\x83\x5b\x6b\xad\x17\x17\x35\x8e\x76\x9f\xf4\x7b\x07\x8a\x1e\xe5\x4f\x34\xcd\x10\xb7\x69\x63\xdd\xfe\x98\x06\x8b\x69\x7d\xe8\x18\x65\x56\xdb\x40\x51\xb0\xcc\xae\xd1\x89\x2e\x8c\xc1\xe5\x91\x2c\x52\x75\x0a\xa2\x3c\xbb\xe6\x69\x41\xb7\x80\xdd\x06\xfb\xe1\xbf\x51\x2d\x0b\x77\x36\x0b\xc0\xec\xdd\xb5\xb7\xdc\xe3\xdb\x55\xa9\xee\xae\x56\x6b\x39\x44\x0f\x05\x4c\xc0\x07\x74\xf2\x49\x53\x98\x6a\x06\x05\xf0\xde\x81\x27\x95\xdc\x9a\x4a\x55\xe5\x85\x62\x06\xc2\x96\xfb\x3d\xad\x86\xf5\x7b\x0d\x1c\xe3\xfb\xda\x23\xdb\x8b\x42\xa9\x6e\xe3\x7d\x8e\x04\x2a\x67\xec\xc3\xea\x71\x66\x97\x2d\x8e\xc0\x79\xde\xa1\x00\xbc\xa2\x56\x3a\x83\x38\x15\x1e\xf2\xc3\xaa\xd0\xbf\x73\xcd\x67\xe1\xae\xb9\x8c\xc0\x24\xe9\x9b\x28\x63\x93\x47\x9f\xf9\xc2\x13\x1d\xb7\xe3\xbe\xf0\xc4\x9a\x2a\x71\xa5\x79\xc2\xe8\x5e\x9c\x19\x97\xb5\xb8\xc8\x71\xc5\x14\xf4\x49\x2d\xed\x5a\x5a\x0c\x3e\xc6\xa4\xdb\x06\xe8\x73\xe8\x53\xf2\x22\x99\x56\xf2\x75\x3e\xf8\xeb\x5b\x93\xd9\xde\xac\xe2\x21\x3b\xa9\xe1\x98\x6f\x2b\xba\xe1\x0d\x15\x5e\x9d\x71\x63\x16\x8d\xcc\x80\x06\xd7\x1d\xf0\xa0\xda\xe3\x6b\x2f\x23\x6b\x0d\xe5\x2e\x95\x44\x59\x45\x87\xd5\xdb\xe5\x7f\xf6\xa5\xfd\x34\x55\xc0\x43\xdc\x0b\x14\x39\xf6\x3d\x37\xb8\xe3\x2c\x1d\x97\x01\x31\xa5\xeb\x70\xfe\xdf\x9d\x2a\xe4\xfa\x71\xa0\xfd\x1d\x49\x83\x63\x43\x3a\xf2\x74\x47\x81\x1c\x55\x88\xb1\x5e\x3e\xf6\xc6\x45\x05\x0b\xe8\xda\x6e\x3a\xd6\x45\xb4\x8a\xbe\x6d\x2d\xb2\xa7\x4c\x56\x1e\xe5\x2e\x33\x8c\x3f\x44\x32\x4b\x98\xf0\x94\x78\xc0\x1d\x37\x36\xa3\x74\x52\x0c\xd9\xda\x8b\xba\x07\x3d\xbe\xb4\xaa\x37\x2d\xeb\xcc\x26\xe9\x8a\x13\x90\x87\xb1\x7c\x87\x7e\x8b\xaf\x95\x9f\x93\xd8\x41\x5a\x44\xa6\x70\xb0\x49\xe1\x04\x2e\x5f\x4e\xcb\xdb\x22\xd1\x77\x5c\xd5\x28\x56\xd2\x2c\xee\xed\x80\x29\x43\x16\x91\x51\x02\xa2\x03\xd6\x52\xdc\x28\xf4\x76\x0a\xa3\xb1\x50\x39\xbc\x50\x8b\x66\x9e\x1b\xe6\x30\xc0\x90\x62\x7f\x5d\x0d\x1e\x72\x8b\x60\xff\xae\x59\xef\x6b\x6c\xe9\x54\x59\x6b\xf7\xee\xe2\xa8\xe9\x7d\x0d\x4c\xd5\xed\xde\xdd\x68\xf0\x50\x19\x45\x60\x03\x71\x5f\xae\x1c\x9e\x64\x7c\x25\xcc\xf7\x55\x81\xe3\xb4\x18\xf8\xff\x6b\x3d\xf2\x6d\x8c\x71\x12\x30\x83\xc2\xed\xdf\x50\x88\xbc\x13\xaa\xfe\x36\x83\x46\x4f\xe1\x7b\xab\xbb\xda\xfd\xcc\xc2\x5f\xc1\x4b\x5d\xa3\x3d\x83\x00\xe6\x76\xa0\x92\x4d\x6f\xab\x8d\x31\xe9\x42\x5c\x4e\x52\x92\xb4\x97\xc4\xae\xd2\xf3\xe2\x00\xdc\x89\x1f\x17\x09\x1f\x2f\xff\xfe\x26\x1f\x49\x5a\xe8\x07\x8d\x26\xdb\xd6\x14\x61\xee\x07\xae\x00\xd4\x37\xcb\x69\xb6\x43\xd5\x41\x6e\x2b\x92\x21\xd6\x5f\x47\x73\xe3\x31\x22\xfc\x57\x2d\x5a\x0b\x4e\x15\x58\x75\xc9\x42\xe5\x15\xe1\x18\x93\x8f\xe1\x9d\x8f\x28\xa9\x61\xd3\xef\x47\x71\x44\x00\x05\xbf\x04\xd0\xad\x20\xa4\x4c\x9b\xcf\xed\x67\xdb\xf9\xea\x68\x6c\x8a\xa1\x2d\xa2\xb0\xe5\xcf\xe3\x6f\x07\x1e\xbf\xff\x6d\x45\xfd\x91\x86\x4b\xe3\x28\x46\x0d\x18\x4b\x1e\x99\x5f\xbe\x56\x25\x60\xd3\x27\xa7\x6a\x4e\xf5\x77\x32\x1d\x96\xab\xc9\x7b\x3e\xc6\x33\xba\xc4\x12\xf8\xbd\xf5\x3f\x68\xb2\x74\x9b\x44\x83\x64\xc6\xf3\x3f\x30\xdd\x18\x06\xe8\xaa\x6a\xce\x3d\x5c\x63\xbd\xd8\xbb\x8b\x8a\x40\x34\x3a\x44\xc6\xe8\x30\xbf\x67\x55\x33\xe6\xd9\xda\xe7\xa8\x58\xdf\x4f\xb3\xd1\x44\xa9\xd1\x21\x7d\xce\xd9\x79\xbe\x51\xae\x6e\x79\x74\x45\x89\xdd\x5e\xee\x09\xac\x97\x9b\x78\x50\x6c\x96\x2b\x30\xcb\xf0\x15\xc0\x43\x89\xbd\x76\x83\x9c\x0b\xd6\x00\x0b\x14\x8c\xea\x32\x0d\x0e\x7f\xa0\x16\x7c\x3e\xf3\x4c\x7b\x68\x7a\x55\x63\xab\x12\x66\x81\x57\xf4\xcd\x8a\xa1\x8d\x46\x2d\x45\x5d\xcc\x6d\x56\x32\x07\x35\xc2\xe8\x79\x92\x01\xcb\xcc\xa0\x3c\xe8\xbc\x46\xc5\x06\xed\x77\xc7\x02\x5d\x8e\x09\x66\x64\x46\xad\xd2\xf7\x03\xbf\x6a\xca\x25\x39\x92\x36\x26\x56\x7d\x0b\xd4\xbe\xf1\xcc\x29\xfd\xa8\xd8\x41\x0f\x28\x2a\xf5\xe5\x17\x62\x18\x5a\x48\x39\x4a\x6a\x93\xbe\x4b\xf4\xd7\xca\x51\x84\x3d\x00\x1f\x02\x6c\xcc\x15\x3c\x9b\x43\x34\x7a\x6c\xf8\xba\xa2\xf6\xa2\xc7\xeb\x69\xed\xec\xab\xf4\xab\x7c\xdd\xd4\x87\x34\x32\x79\x9a\x30\xa7\xa7\xf0\xa5\x94\x1f\x11\x22\x15\xb1\x02\x24\x47\x4e\x8b\x0d\x60\x1a\x6e\x55\xe1\x9b\x60\x33\x1b\xd3\xb3\xed\x6e\xc4\x0f\x02\xb3\x03\x0e\x62\xbe\xae\x49\x7a\x1e\xd8\xf5\x5c\x3b\x1a\x8d\xa2\x44\x34\x45\xb9\xae\x13\x78\xc8\x6b\x1d\x73\x5c\xc6\x94\x4b\x49\x1a\xa2\xc9\x9d\x35\xe4\x31\x34\x32\x17\x2d\xa7\xb2\x7b\xb4\x16\x92\xbe\x88\x72\x6a\x11\x25\x13\x61\x4f\x87\x1d\xda\xc0\xaa\xe3\x9b\x40\xb7\xa2\xc7\xcb\x2c\x7d\x0e\x23\xf4\x73\xa4\x2d\xf9\xa6\x16\x92\xee\xde\xdd\xee\xa6\x07\x57\xd1\x3b\x85\x33\xe1\xbc\x0a\x9c\xae\x29\x95\xdc\x77\x2b\xd4\x84\x66\xd9\x7e\x06\xf9\x3d\x47\x13\xe8\x59\xf3\xae\x61\x29\x60\xf1\x7c\x8e\x32\x6b\x4c\x82\x0c\xfb\x8f\xf4\x1d\x67\x89\x85\x2c\xa6\x3c\x07\xe1\x65\xfd\xc7\x40\x79\xb6\xd7\x54\xc9\xe6\xd0\xb4\xaa\x29\xbc\xe8\xd4\x13\xfe\x13\xf6\x39\xb2\xba\x77\xc9\x7b\x47\xc9\x71\x3b\x22\x0a\xe7\x3b\xb9\x26\xd5\xa3\xd4\xf2\x8a\x93\x88\x6b\xbe\x78\xc6\x37\x28\xc0\xc6\xd0\x56\x15\x73\x29\x6a\x42\xc2\xea\xba\x52\x71\xbb\x43\x1b\x94\x7c\xd6\xdf\x79\x72\x4d\x56\x63\x6c\x56\xd1\xa6\xf7\x92\xb3\x93\xfe\xdc\x45\x1f\x9d\x30\xe2\x3e\xaa\x24\x46\x62\xdb\x83\xd8\xae\x10\x79\x6a\xba\x4a\xb0\xad\x21\xf8\xfc\x0e\x7d\x1d\x0a\x21\x9c\x2e\x45\x58\x72\x0f\x83\xcf\x7d\x15\xf4\x9c\x88\xba\xb8\x39\x0d\xb9\x90\xbb\xc1\x66\xeb\x4b\x1a\x29\x69\x96\x4e\x06\xc3\xbe\x29\x3d\xf4\x2f\x7d\xbd\x42\x07\x85\xf1\x04\x16\x47\x7a\x48\x6a\x54\xe8\x7b\x17\xdb\x43\x1b\x33\x47\x32\xe6\xe9\x7d\x0d\x1d\x7f\xbf\x49\x5e\xc9\x4e\xb2\x74\x6c\x4d\x22\xbd\x90\x22\x77\xad\xea\x7c\xbf\xd9\x00\xb7\x69\x77\x53\x12\x20\x50\x1a\x22\xd8\xf1\x22\x28\x22\x59\xca\x34\x0c\x4d\x4e\xfd\x5c\xb4\x71\x61\x4a\x5f\x53\x04\x10\xaf\xa9\xac\x0e\xd2\x67\xab\x0a\x4c\xf5\x49\xe0\xb3\x2c\x9f\xd4\x52\x27\x5f\xa4\x02\x36\x47\x0c\x38\xc2\xcf\x07\x0a\x99\x7d\xbe\x46\x03\xf7\x6c\x3b\x49\xbf\x30\xa3\xa8\xed\x6e\x2b\x7d\x56\x86\xf4\xa2\xd0\x72\xac\xf6\x6b\xfb\x5f\x68\x4f\xbe\x90\x7c\x41\xe9\x2c\x72\xd3\x13\xdf\xd4\xac\xdc\x9e\x3d\xed\x5e\x4a\xd6\x87\x01\x28\xf0\xda\xb0\xf4\x7e\x4b\xa9\x56\x69\x8e\x8d\xb4\x1b\x47\x03\x3e\xbb\xb5\x18\xa1\x52\x17\x7b\xa4\x12\x9a\x51\xa1\xdb\xe1\x07\x4b\xbf\x15\x79\xac\xad\x6b\xfe\x5c\xbe\x1e\x68\xb5\x45\xbb\x6c\x67\xca\x0d\xe8\x78\xb4\x5d\x6f\xd3\x65\xda\x4e\x88\x58\xef\x28\x42\xba\x71\x3c\x19\x75\x5d\x9a\xc4\xc9\x59\xb9\x36\xbc\xd3\xaa\x02\x1f\x91\xbe\x47\x5e\xe4\xdb\x94\x20\x12\xda\xc6\x18\x0e\x3a\x55\x86\x48\x23\xa5\x58\xd8\xd8\x29\x14\x97\xe1\x0d\xb3\x14\xba\x23\x56\xb8\x4e\xf8\xf4\xc0\x01\xf3\x97\x81\x3f\x79\xfe\xb2\x09\xc2\x3f\xb0\x89\xcd\xd8\xed\x13\x40\x9f\xef\xd0\x38\x51\x0b\x98\x0f\xec\xc2\x6b\x2c\x47\x76\x45\x7e\x4a\x24\xc7\x5b\xae\x79\xfc\x82\x02\xc8\x3b\x82\xb2\x99\x96\x12\xc0\x29\x47\x13\xb9\xf4\x63\x34\xca\x02\x04\xf2\x5c\x06\xb1\x59\xcd\x23\xce\xc8\x31\x95\x63\xa0\xa8\x9f\xde\x68\xe0\xd0\x5f\x04\x7d\x41\xb9\x94\x84\x4a\x94\x1e\x50\x30\x6c\x4d\xa0\xab\x30\x4d\x12\x1b\x3a\x1e\x34\xc7\x4b\x5d\xfe\x92\x20\xab\x15\x22\xc0\x46\xe1\x10\xad\x41\x0c\x2b\xa7\x38\x5c\x20\xe6\x9b\x1f\xe9\xd9\x36\xc1\x6f\x67\x74\x9d\x50\x35\x66\x00\x6b\x09\x6b\xf9\x5e\x53\xe3\xf2\x38\x8d\xa3\x7c\xa8\x74\xb7\x19\x1e\x80\xb9\x07\x12\x4b\x18\x41\xb5\xf0\x5e\x1c\x15\x26\x5b\xdd\xa1\x68\xcb\x2e\x61\x24\xf8\x66\xea\xd1\xb9\x47\x2a\xe0\x56\x5a\x7f\x98\x8b\x4f\x2a\x94\x14\x1c\xfc\xf0\x3f\x29\x1a\xcd\x8d\x06\xf2\xdd\x28\xe9\x4d\xe2\x81\xd4\x7a\x39\x8d\x10\x54\x88\x1f\x9f\xf2\xe2\x38\xb6\x67\x47\x63\xee\xb9\x2a\x9f\x11\x52\x54\xe7\x94\x24\xe5\x39\xc5\x54\xc8\x30\x96\x50\x92\x59\x4e\x24\x01\x64\xde\x7c\xad\x76\x5d\x1e\x46\x36\x29\xa2\xbc\x50\x79\x91\x6a\xcf\x88\x22\xd2\xb4\xcc\x5a\xe0\xa8\xfe\xce\xc2\x32\xf1\x8d\xaa\x10\xe6\xe3\x34\xc9\xd3\x8c\x01\xae\xf0\x77\xd9\xea\xf1\x8d\xe2\x2c\x1d\x67\x51\x9a\x45\x85\xe3\x0a\x73\x64\xb0\xaa\xed\x77\x33\x50\x6c\xbe\x7d\x60\xd7\xc3\xda\xaa\xd0\x33\x23\x87\xf9\xd7\xca\x41\x3b\x4b\xf5\x24\xc7\xb8\xeb\x5b\x88\xae\x69\xb7\xe6\xc7\xe4\x1f\x8b\xfc\x04\xb9\x38\x5c\x6f\x44\x91\x0b\xd6\xf0\x10\x56\x89\xb0\x56\x96\x83\x8b\x1a\x21\xb3\x32\x61\x11\xd6\x7b\x3a\x16\x5f\xd8\x47\x9d\xeb\x2d\xdd\x68\x54\x41\xaf\xca\xa9\x67\xba\x79\x51\x7a\xab\x21\x32\x8a\x22\xc5\x52\xfe\x92\xb4\x50\x3f\xe9\xb2\xe2\xc3\x72\x32\x56\x6c\xb6\x84\x0c\x19\x4e\xd0\x4f\xf4\x71\xfa\x89\x42\xeb\x8c\xd3\xac\xa0\xce\xb6\xe7\x78\xd9\x5c\xd7\xae\xc5\x5f\xd1\x9a\xe5\x7f\x40\x8d\x95\xff\x41\xc5\x97\x79\x3a\x89\x19\x8e\xe2\x48\x2b\x76\xcf\x3b\xb4\x82\x2f\xa3\xaf\x98\xd5\x7c\xbb\x87\x42\x20\xfa\x10\x38\x76\xcb\x35\x42\x33\xdf\x0a\x03\xfc\x91\x96\x72\x02\x54\x7b\x77\xb9\x1b\x38\x47\x98\x90\x37\x1d\xd4\x36\x36\xab\x23\x93\xa8\xee\xb5\x13\x0a\x59\x78\xa2\x09\xe5\xd8\x8b\x72\xd3\x95\x37\xc0\x5e\x05\x5c\x82\xaf\x9b\x0a\xeb\xfd\x88\x98\x1b\xd4\xa3\x4d\x55\x65\xed\x27\x53\x9f\xf8\x3d\x13\xf8\xf4\x5e\x6e\x8d\x88\x85\xc2\x87\x02\xf9\xa2\x68\x8f\x94\x5b\x11\x1f\x3a\xa1\x87\xe0\x9e\xe6\xd5\x3e\x51\x61\x22\x08\x97\xa2\x59\xa5\x61\x01\xef\xce\x5d\xbb\xb6\x57\x08\xf9\xcb\xf5\xa3\x95\xfe\xb5\x5c\x33\x3c\xd0\x6b\xbb\x53\xc0\xfb\x6c\xff\xca\x45\x66\xa3\x49\xd2\x4b\x15\xe9\xda\xbb\x58\x58\x7c\xa3\xce\xf8\xbe\xa5\xec\xf0\xa6\x96\x00\x85\x07\x6d\x18\xd5\x61\xea\xb2\x8b\x52\x2b\x68\x39\xfa\xfc\x8f\x95\xb1\x36\xbd\xe5\x28\x2f\x7d\x1a\x18\x58\x94\x1f\x0e\x69\x7e\x97\x43\x95\x10\xa7\xf7\xaa\x85\x40\x98\x33\xdf\xde\x94\x2b\x52\xb9\x68\x90\xa4\xbe\x2b\xc1\xcd\xe5\x9e\x3d\x4e\x31\xbd\x89\x92\x16\x8c\x9d\x2d\x0f\x6c\x3f\x44\x3d\x38\x7c\xad\xe0\x60\xa6\x28\xd2\x2c\xb1\xab\x39\xf1\x27\x0a\x13\xb9\xef\xd1\x79\x47\xb5\xa3\x7c\x27\x50\x11\xef\x77\xa6\x9f\xfb\x94\xe2\x6c\xd7\x24\x4b\xd9\x64\x5c\x84\xab\x33\x2a\xae\x3f\xa6\x10\xb1\x9c\xcd\x06\x82\xea\x72\x23\xc4\xbb\x3b\x59\x75\x69\x5a\x80\x23\xbe\xa3\x12\x75\xc7\x68\xb0\x84\xa2\xc9\x3b\x8b\x48\x67\xb9\x78\x10\xe6\x48\x12\x9e\x7a\xf0\xc7\x36\x26\xae\x18\xf9\x3a\xda\x35\x4e\x67\xf3\x79\xf7\x3b\xe8\x1b\x17\x6d\xce\x4d\x04\xda\x2f\xbf\x0c\x02\xed\x03\x1e\xb0\xec\x5a\xe1\x7e\xff\xa3\xda\xbc\x94\xe1\xf6\x4a\x9a\x52\xf9\xd7\xa5\xac\x8e\xd2\x23\xca\x7e\xdd\x1c\x34\xb9\x16\x68\x9b\x45\x76\x72\x90\xd6\xad\x50\x0c\xa9\x88\xf4\xf5\xc0\x83\x3c\xed\xb2\xcd\x40\x26\x22\x85\x7e\x5f\x6b\x7e\x5b\x93\x31\xfe\x8c\x4c\x9d\x00\x80\x1b\x08\x0c\xf2\x61\x44\x1a\x30\x98\x04\x44\x00\x68\x79\x80\x11\x3a\xaa\xf0\xa9\x1f\x34\x4c\xe2\x02\x77\xfe\xb7\xbc\xf0\xff\x7d\x9a\x37\xbe\x6e\xc0\x96\xed\x6b\x8f\x55\x73\x24\x16\x0b\x53\x33\xf3\x4d\xf0\xb4\x3a\x8b\x53\x82\x32\x22\xf2\x72\x72\x6c\x5c\x9f\x12\xec\xb5\x92\x17\x2c\x4c\xbf\xbf\xcd\x1b\xb7\xab\xc8\x5d\x68\x3b\x20\x94\x3a\x74\xaa\x54\xca\x1d\x30\x46\x57\xd9\x7b\x42\x86\xf4\x56\x13\x7a\x35\x1c\x9a\x24\xb1\x71\xae\xf3\x63\xc8\x4b\x8a\xeb\xe1\xb3\x55\xff\xaf\x9d\x43\x7a\xc9\xf6\xa3\x62\x67\x05\x37\x58\xe5\x49\x77\x71\xf8\x0c\x55\x52\x2b\x32\xcd\x0e\x83\xe8\x89\xa7\x8e\x91\x3d\x80\x13\xf2\x73\x4d\x70\x72\x74\xfa\xa9\x10\x48\x8f\xc1\xb9\x47\xbe\x26\x7f\x1a\x9b\x59\xd8\xa2\x31\x40\x7c\x87\x81\xe4\x5f\xac\x21\x5e\xf6\x2e\xb6\x4d\x1c\xb7\x7c\xb1\xf8\x6f\x40\xf6\xc9\x37\x0d\x2a\x63\x4a\xfd\xb0\x7c\x15\xe9\x7b\xd7\x4d\xf0\xce\x41\x49\xa2\xc1\xb0\x08\xe3\x49\x97\xff\x98\x89\x28\x69\x2a\x84\x94\xd2\x3b\x0c\x2b\x69\xd2\xb3\x19\x29\x45\xa2\x8e\xc1\xd5\x69\x41\x0c\xb6\xfc\x35\xa5\x76\xc5\xd7\xf7\x01\x6c\x9d\x0a\xab\x3c\x3d\xa2\xc1\x50\x89\xe6\xed\xa0\x1c\x20\x8c\xfc\x56\x42\xf2\x8b\x00\x9e\x5f\xa6\xdd\x6c\x22\xba\xcc\xaa\x29\x71\xd1\x71\x61\x29\xbe\x89\xeb\xae\x76\x96\x0f\xcd\xd8\xf6\xe6\x14\xd5\xed\x45\xcc\xb6\xd8\xc8\xf2\x19\xa4\x22\xee\x91\x94\x67\x34\xed\x79\x3d\x3b\x7a\x60\xd7\x4b\xed\x30\x9e\x8c\xf2\x55\xe5\x0f\x5e\x53\x6c\x2c\xd7\x94\xcb\x6d\x0f\x8e\x33\x52\x15\x74\xbd\xe6\xbf\xf6\xd9\x8e\x6b\x42\xff\xb5\xcf\xae\xf9\xc1\x4e\x4c\x96\xa5\x2b\xb3\x4a\x7b\x84\xc9\x9c\xf9\x46\x81\x20\xce\xaa\xec\xc8\x59\xad\x7c\x60\x46\x23\x5b\x14\x8a\x6f\x87\x79\xfb\xf8\x46\x55\xc1\x96\xec\xea\xac\x6e\xc6\x2a\xe7\x58\x3a\x0b\x74\x3f\xa9\xc6\xb0\x9c\x6b\x60\xba\xd8\xd7\xce\x8b\x49\x6f\x75\xc6\x97\xc2\x2f\x22\xa6\xd0\x88\x3b\x9c\x69\xbe\x30\x6c\x5f\xb5\x4b\x11\xb7\x79\x61\x9d\x1c\xd5\xac\xe1\x47\x55\xe3\xe6\x60\x62\x1f\x29\xf7\xde\x06\xf2\x70\x0a\x43\x30\xaf\x95\x46\x24\x23\x70\x6d\xea\xf9\x9a\xef\xd1\x4b\x49\x2b\x4f\xf9\x80\x0c\x60\xe5\xfc\x9e\x4b\xbd\xba\x0c\xf4\xce\x8e\x0a\x87\x38\x1b\x2f\x7c\xd1\x2a\xbe\xbb\x3f\x55\x0d\xcc\x67\x5c\xfd\xc1\x1e\x1c\xc7\x51\x18\x15\xd5\x56\x79\xc7\xdc\x7a\x5e\x51\x7d\x77\x4d\x51\x30\x43\x91\x44\x9a\x6f\x28\x1e\x56\x08\x2e\x02\xa7\x78\x56\xe5\xc9\xec\x41\x1b\x4e\x0a\xc6\x86\xa1\x7e\x00\x06\x7b\xbe\xae\xf0\xa3\xf6\xe3\x55\x42\xf0\x22\xad\x75\x71\xaa\x7b\x28\x68\xf8\x44\x08\x8b\xde\x19\x6f\xc6\x90\x2e\x58\x82\xeb\x15\x81\xbf\xf2\x67\xf8\xff\x57\x71\xcd\x8f\x55\xce\x1e\xc3\xd4\xf7\xae\xf4\xf7\xbc\x70\x9c\x1e\x53\x25\xdc\xdd\xab\x2d\x25\xdc\xf2\x8e\x62\x0b\x7b\x47\x01\x29\xa3\x2c\xb3\x14\x88\x46\xdd\xd8\xe2\xf8\x76\xf2\xbc\xae\xa3\xf3\x7c\x85\x85\xa1\xf5\xe5\x17\x9d\xd0\xb0\x0f\x92\xc7\x59\x1a\xa7\x02\xab\x7f\x8e\x33\xde\x47\x15\x02\xf3\x68\x83\x6e\xf7\x81\x5d\x3b\xcb\xe1\x83\x9f\x85\x8c\x38\xd2\x3b\x17\x15\x58\xfe\x3a\x82\x4d\xe9\xb2\xf2\xb4\xcb\xb7\x69\x5e\x30\x78\xa7\x74\xef\x33\x2c\x10\x4e\x7b\xee\xd0\xc3\x27\xfe\x4a\x43\xf4\x7e\x3a\xd5\x92\xc7\xe7\x28\x08\x46\x3e\xfd\x04\x00\xb8\x58\xb0\x2d\x92\xf5\x42\x64\x75\x25\xa8\x30\x72\x3d\xa6\xa0\x89\xb9\xeb\xc9\xe0\x6d\x04\xa3\xcd\x72\x36\x92\x33\xdd\x6c\xe8\xf6\xee\x6a\xf7\xec\xb2\x8d\xd3\x31\x39\x12\x92\x67\xf5\x25\xd4\xf3\xca\x40\x0f\x6c\x36\xaa\xf0\x24\x1c\xd2\x3c\x09\x87\xd4\x2a\xe9\xc7\x26\x59\xb2\x19\xd2\x4c\xd8\x43\x6f\x4d\xfd\x11\xf3\xd6\x26\x06\xb7\xf8\x29\xaf\x56\x78\x17\xd0\x6b\x3c\xfd\xfb\x18\x3c\x80\xc3\xaf\x05\xbe\x21\xfe\x3a\xad\x02\x41\x3d\xd0\xea\x06\xe3\xe6\xf6\x35\x1a\x21\x29\xe3\xa3\x94\x82\x05\x80\x62\x3d\x73\xb5\xea\xba\xe7\x03\x6b\x34\xc1\x02\x09\x50\x47\x37\xb7\xb6\x21\xae\xdf\xd0\x1c\x80\x2d\xee\xed\xc1\xdd\x7f\x52\xee\xc2\x9b\x00\x18\xf0\x6f\x02\x9e\xcd\x38\x49\x05\x55\xbf\x1c\x78\x58\xf5\xa5\x9a\xc7\xbc\xf8\xc2\xbe\xf6\x8a\xf1\xc4\x97\xd8\x37\x3f\x55\x7b\xe8\xa7\x2e\x08\x1c\x4c\x22\x96\xa8\x71\x82\x8d\x7b\xf6\xb8\x02\xe3\x66\x62\xcd\xd2\x9a\x87\x29\x6f\xba\x9e\x38\x9c\x4e\x12\xd5\x23\x68\x4e\xd7\x0e\x82\x17\x17\xdb\xc5\x10\x02\x3d\xe5\x08\x39\x89\xcc\xf2\x33\x22\x66\xba\x39\x3f\x29\x7e\x7c\x5c\xfa\x24\xec\x8f\xc0\x87\xfc\x2e\x0d\x06\x5f\x37\x55\x21\xc6\x59\x34\xb2\x5a\x0f\x50\xb5\x75\xd7\x49\x3f\xca\x13\x3b\x9f\x8c\xc7\xb1\x43\xee\x21\xfa\x3a\xa5\x48\xe4\x4e\xa9\xe4\x57\x3f\x4a\x06\x68\x7a\xf7\x00\x16\x08\x3b\x88\x07\xe7\x0a\xbf\x93\x30\xb4\xd6\x0d\x95\xf8\x02\xf4\xda\xe2\x0c\x3c\x24\x36\x65\xdf\xaf\x7f\x75\xbb\xdf\x7c\x97\x35\xff\xcc\xb9\x69\xeb\xab\xc2\x95\x71\x52\x51\x4b\x7e\x80\x51\x57\xab\xcf\xa3\x50\x5a\x5f\xfb\x8a\xbb\xde\xfc\xc6\x28\x62\xc6\xb1\x75\x69\x4a\xa5\xd3\xba\x4f\x6e\x7c\x67\xfd\x4a\xf9\xb7\xc9\x8c\x4f\xc1\x31\xac\xc6\xd1\x41\x3a\x00\xc4\x95\xca\x71\x64\x46\xe3\x98\xce\x67\x51\xc1\x45\x64\xcc\xd6\x98\xca\x56\x70\xd7\xae\x28\xca\xfd\x23\x78\x0f\xd7\xa2\xb9\x7b\x5e\xd8\x62\x03\xa5\x43\x7e\x9b\x76\xb4\x7b\xf3\xf2\xb1\xa5\x40\x43\xcb\x9e\xb9\x44\x14\xf8\xf2\xb6\x6e\x4c\xf9\x20\xf0\x15\xfc\x3f\xf2\x78\xe7\x61\x3a\x71\x35\x04\x69\x77\xa2\x4f\x49\x1f\x94\xcc\x6c\x9f\x84\xf9\xa3\x09\x80\x26\x58\x59\x5b\xd6\x94\xea\xe4\x96\xce\xe6\xed\x53\x2e\xb3\xa1\x35\x3d\x56\xab\x65\x04\x31\x80\xc6\xef\x69\x2d\x80\xb7\x69\x3c\x99\xf4\xcc\xb9\x0f\x79\x9a\xd9\xa4\xf4\x15\x5b\xae\xe1\xfd\x8f\xe8\x0f\xf9\x5a\xd3\xb2\x2e\x1b\x95\x37\x63\xa4\x13\xdf\x04\xbe\xeb\x30\xe9\x4d\x32\xc3\x1b\x0b\x87\xe2\x7d\x9d\x60\xbf\xef\x86\x25\x1d\x45\x49\x3a\xe1\x95\x82\xc1\x7c\x57\x0d\xec\xbb\x0a\xf4\x3b\x36\x59\x11\xaf\x42\xb2\xc2\xb5\xa5\xee\xdd\xe5\x6e\x9a\xba\x4d\x4d\x37\x4f\xb3\xee\x4c\xa5\x17\x77\x6f\xb5\xb5\x48\x3a\x02\xeb\x26\x09\x94\x19\x38\xc5\x64\x31\x3b\xc6\x57\x45\xff\x5a\xe9\xbc\x8b\x46\x11\x1a\x24\x36\x35\xa5\x8a\xd4\x73\x93\x4f\x3f\x52\x42\xb5\x38\x84\xef\x57\xaa\x6f\x2d\xa7\xc3\xb4\x3e\x7d\x62\x73\xe3\x62\xfb\x57\xb7\xf9\xf6\xe2\xe3\x81\xe2\x42\x67\xcf\x51\x63\x71\xb0\xc5\x4e\xe0\x2c\xe0\x8f\x28\xdd\x98\x13\x8a\xa5\xde\xe4\xf9\x64\x14\x25\x03\x78\x3f\x4e\x72\xd6\x11\xc4\x71\x2c\xcb\x1b\x40\xd5\x34\x7f\xa3\x29\x81\x6a\xfa\xfd\x78\x22\x58\x0a\x20\xe6\x1f\xec\x78\xf4\xfc\x83\x6b\x0d\x45\x9a\x38\x4a\xac\x81\xbc\xbf\xc6\x86\x09\x82\x4c\x21\x70\x27\x49\xcf\x24\xa1\xe5\x54\x1f\x7c\xfe\x13\x3a\xa9\x75\xa2\xc1\x32\xcf\x6f\xea\x5d\x77\xa1\xa5\x33\x94\xeb\x95\xc6\x25\x7a\x81\xd0\x12\x21\x21\xfc\xa6\x59\x74\x82\x3a\x14\xa5\x3f\x94\xcf\xa9\xc6\xd7\x0b\xec\xf4\xbb\x94\xbc\x63\xca\x9a\xed\xf8\xe1\x0e\x27\x71\x31\xc9\x4c\x8c\x93\x15\xee\xde\x09\x25\x00\x58\xef\x51\x26\x06\x8a\x32\xc4\x63\x06\x05\x29\xec\x7a\xc8\xfc\x8d\xa9\xc2\x16\xcc\x74\x9e\x54\x03\x36\x18\x58\x62\xc3\xa4\x52\x2e\xf2\x69\x97\xc8\x80\x22\x92\x85\xf7\x8c\xe3\xf3\x8e\x82\x6c\x8e\x27\xdd\x98\x4b\x44\xb3\x0a\x2d\x8e\x83\x03\xce\x09\xfc\x75\xe1\x98\x55\xe9\xd6\x73\x4d\x70\x94\x94\x0a\x16\xae\x85\xfe\x04\xd9\x4e\xbe\x6e\xd8\x92\x8b\xed\xc2\xc6\x76\x1c\x85\xa4\xe8\xc7\xf3\x0d\xdb\xce\xd4\x83\x7c\x53\xfb\xac\x6b\x14\x36\x45\xe8\x7b\x39\x85\x83\xac\xe5\xf9\xc8\xa6\x9f\xd6\x62\x3c\x49\x56\xa2\x38\xe6\x1d\x21\x53\x84\xec\x33\x7c\x93\x1b\x15\x70\x9d\xae\xd2\x4c\x7d\x1b\x6c\x1e\x9a\xa4\x17\x25\x66\x39\x32\x49\x4b\x4b\x6d\x30\xdb\x05\xdf\x04\x9e\xa0\x2b\xea\x21\x31\x15\x85\xfc\xf7\x52\xa7\x50\xb6\xf7\x44\x43\xf7\xc9\x42\xdb\x08\xe2\xa9\x89\x26\xa6\xa1\xe5\x3d\x8e\x5e\x99\x30\x45\x08\x00\x5f\xef\xa8\x46\xec\x77\x1a\x04\x98\xf7\x91\xf3\xcd\xb5\x64\x04\x75\xeb\x98\x06\xbe\xd1\x7c\x6e\x76\x5c\x10\x77\xdc\x03\x5e\x6f\xe3\x5f\x28\x6d\x02\xb4\xeb\x88\x49\x6d\x39\x92\xd3\xd3\x30\x69\x30\xdf\xbf\xd0\xc1\xf0\x05\x8e\x54\x60\x32\xdf\x99\x2a\xd9\xcf\x3f\xa1\xb3\x9d\xff\xa1\xaa\x5c\x66\x92\x07\xe9\x0f\xf1\x1d\x8f\x77\xbc\xf5\x63\xd1\x64\x96\xca\xa2\xdd\xa0\x28\x0b\x85\x40\xe1\x8e\xd6\x7f\xbf\x3e\x75\xc9\x9b\x6f\x3f\x06\xb4\xaa\x90\xe2\x57\x92\x99\x2a\xb5\x72\xd2\x1d\x93\x51\xd2\x37\xa3\xf2\xf0\xf3\xc9\x73\x46\xee\x09\x6f\x61\x83\x84\x59\x94\x84\x36\x29\x4f\x98\x19\x5f\xe6\x03\x34\x10\x6e\x10\x63\x97\xe5\xb8\xd9\xbc\x98\xf7\xec\x69\x60\x57\x12\x05\xf7\x9f\xd1\xdb\xf0\x75\xe0\x33\x36\x61\x17\xac\xfe\x72\xce\x63\xd8\xb1\xe8\x5b\x1d\xef\x28\xfc\x1c\xf9\x17\x89\x88\x95\x84\xdd\xb7\x30\x6f\x30\x4b\x57\xf0\x88\x72\x08\x6f\x5e\x56\xfb\x5f\x68\x73\x1c\x40\xc1\x1f\xb2\x2b\x80\xa3\xf0\x75\x23\xb7\x9e\x3d\x38\xb6\x61\xb1\xd9\xcd\x56\xdc\x74\xa7\x6a\x16\x74\xcf\x9e\xf6\xd0\x64\xdd\x94\xaa\x74\x7b\x1d\x7b\xab\xcf\x61\x1d\xd7\xa0\x82\x5b\x35\x5f\x17\x8a\x5f\x76\x94\x26\x0c\xf4\x40\x26\x11\xf2\x2a\x7c\xad\x6a\x9b\x39\x49\xd8\xbb\x4a\x11\xf8\x79\xf9\x7a\xea\xb5\x50\x7c\x5f\xc8\x06\x1a\x96\x37\x8e\x35\xb9\x36\x79\x38\xb4\x23\xf8\x19\xee\xb4\x70\x89\x82\x13\xaa\xcf\x2e\x11\x19\xfb\x4d\xfc\xb4\x7c\xa3\x3c\xac\x70\x68\xa2\x44\xbb\x9d\x77\x54\xb6\xe3\xce\xf4\x33\x15\x57\x2c\x0a\xa3\x31\x0e\x02\x68\x1e\x96\x73\x25\x12\xe3\xad\xbd\xbb\x36\x90\xf6\x91\x44\x99\x4e\x0f\x99\x70\x95\x05\x41\xa5\x8c\xa8\x59\xa9\x59\x79\x4e\x5a\x5d\xfd\xb4\x9f\x54\x55\xb6\x0f\x60\x65\x60\xcb\x8e\xfa\x56\x19\x9b\x41\x1c\xaa\x5c\x79\xae\xd7\xb4\xfc\x4b\x91\xe4\xdf\x8c\xb9\xdc\xb3\x67\xaf\x6f\x6d\x6b\x79\xfb\x5d\x6d\x6c\x6b\x20\x8d\x1b\xc7\x86\x59\x88\x38\xcb\xa5\x68\x83\x2f\x36\x4a\xf2\x12\x45\x6c\x2e\x05\x18\x47\xc5\xe7\xf8\x5b\x6e\x54\x68\x85\xd2\x6f\xd8\xb0\xd8\x4e\xcb\x0f\x0d\xc8\x20\x75\x45\x6e\xb3\x92\xe3\x5f\x0f\x7c\xaf\xeb\xb7\x31\x78\x22\xee\xda\x72\xd4\xbe\x5c\x9e\x40\x66\x79\x6b\x0d\xee\xba\xb8\xb7\xf4\x25\x52\x52\x01\x6c\x29\x63\xc7\x4e\x9e\x44\x55\xbe\x4c\xfd\xca\x24\xb2\x20\x89\xc2\x0f\xff\x70\xea\xfb\xbd\x7e\x58\x03\x1b\x2e\xbe\xb0\xaf\xdd\x2f\x9d\xb4\x91\x4d\x0a\xc6\xe5\x89\xac\x5a\xcb\x4b\xac\x35\xd5\x7b\xfb\x93\x2c\xcd\x14\x2b\xd7\x75\xc5\xca\x75\x5d\xf3\x45\x90\xe0\x04\x10\xf1\xa8\xc2\x9d\xe3\xe3\xc1\xe9\x16\x7a\xf5\x95\xeb\x28\x35\xf1\xdf\xe9\x44\xf5\xef\xbb\x8d\x38\x88\x4d\x9e\xa4\x79\xb1\xdd\x17\xf9\x66\xd6\x5a\x5f\x7e\x91\x7d\xc3\xbf\xdf\xa1\x40\x44\x13\xb1\x54\xb0\x3e\x22\x30\x4a\xdf\xcd\x50\xe0\xa9\x56\x2a\xdc\x5c\x7d\x21\xe6\x9d\x67\x5a\xad\x67\x9e\xe1\x29\x3b\xab\x29\x08\xea\xe7\x75\x19\x38\x14\xe9\x44\x28\xc3\x5c\x96\xc5\x67\x5c\xb4\xd8\x4f\x3a\x06\xf4\x1b\xe9\x33\x88\x74\x62\xbf\xdd\xa5\x99\x73\xd3\x5d\x7e\x17\x0e\x0f\xae\xb4\x21\xb1\xf3\x11\x3d\x3b\x39\x57\xbf\xfe\x64\xc7\xc3\xc0\x59\x92\x5b\x8e\x9b\xcd\x5e\xc8\x9e\x3d\xed\x6f\x98\x57\x5f\xa5\xb3\x0a\x30\x81\xeb\x41\x6d\xa8\x30\xf2\xef\x29\xca\xb9\x57\x26\x76\x22\x45\x25\x80\x74\x8e\xa3\x26\xc6\x37\x15\x08\xf4\x7f\xf9\x4f\xff\x69\xcb\x67\x48\xc0\xc7\x29\x3c\x2b\x3b\x75\xb5\x31\xe9\xe5\x0f\x96\xef\x2a\xfc\x11\xbe\x49\x8b\x55\xed\x98\xba\x0d\x5b\x05\x3b\xed\x63\x9c\x00\x8e\xf3\xc3\x11\x10\xdc\xa1\x01\xc1\x3b\xfd\x45\xa0\xf0\xd9\x1f\xa3\x6e\xc1\x3f\x42\xe1\xa6\x44\xab\x9e\x15\x38\x4f\x27\xc5\xd0\x66\x89\xe2\x92\xdd\xde\x51\xf9\x0b\x05\xb2\xb8\xef\xda\xef\xfb\x26\x8e\x4d\x18\x51\xb8\x5c\x8e\x8c\xf8\x81\x0a\xbb\xa2\x79\x27\x33\x43\xaa\x33\x00\xf2\xce\xad\xf9\x4e\x98\xc3\x58\xf0\x48\xf2\xdf\xe1\x5d\xa2\x75\x7d\x90\x39\x7d\xa2\xe3\x8f\x2e\xbb\x6c\xb3\x87\xbc\x43\x84\x9a\xbc\x24\x2e\x74\xff\x19\x8d\x8a\xa3\x2d\x73\x2d\xc5\x8f\x00\x72\x8d\x65\xf2\x30\xf1\x22\xb8\x1c\x48\xf9\x2a\xc8\x48\xbc\x36\xf5\x1d\x09\x5b\x91\xfd\xc4\xce\x79\x1a\x05\x11\x94\x28\x3e\x54\x00\x03\x93\x59\x33\xe7\x53\x96\x47\xc9\x14\x22\xdb\x7d\x05\x33\x27\x45\xd1\xf2\xe1\x25\x5b\xed\xcf\xc9\x75\x15\x45\x86\x51\x01\x3d\xa0\xf2\xb1\xd9\xce\x4e\x15\x41\xe7\xcf\x9b\xc8\xb2\xc4\x52\x73\x0c\xe6\x22\x76\x47\xb8\xc8\x14\x70\x30\x58\x1b\xc1\xe3\x9b\x63\xb0\x7c\xae\x1c\x0c\x38\x0b\xdf\xc7\xd2\x61\xf2\x7c\x55\x1d\xc2\x7e\xe5\x6b\x1a\x7b\xe6\xa7\xf7\xe9\x40\x3b\x36\x44\xaf\x49\x05\x75\x9c\x18\xa7\xa6\xca\xe6\x9f\x20\x8f\xd8\xa9\xfa\xb9\x24\x08\xf7\x60\xb2\xfe\x88\xca\x05\xdc\x55\x69\x0d\xe9\x4a\x00\x2c\x50\xf8\xe4\xca\xe7\x10\xc5\xfe\x9d\x4a\x06\x6c\x39\x4a\x06\xdb\xbd\xd8\xfd\x7b\x81\x6a\x09\x63\x8a\x24\x11\xba\x2b\xa7\xcb\xb5\xda\x3a\xf2\x94\xf7\xe8\xd5\x91\x01\x5c\x57\x2c\x85\x7f\xa2\x2c\xda\xc8\xc6\x1c\x0e\x89\xed\xd1\x7e\x6f\x2d\x1c\x7a\x71\xb1\xbd\x12\x49\xa7\x27\x16\xd5\x9b\x38\x11\xf8\xa6\x29\xd7\x3b\xf2\x5c\xcd\x70\x01\x4f\xea\x8c\xca\x49\xf5\xd2\x23\x1b\xc7\xe9\xca\x8c\x2f\xc2\x40\x3b\xd2\x6d\x0a\x47\x56\x70\xa9\x82\x21\x48\x73\xb3\x4d\xf9\xc2\xb7\xd9\x11\xe2\x3b\x98\x56\x00\x3d\xde\x87\x51\xe2\x9b\xcd\x69\x18\xcf\x76\xb3\xd3\x7b\x42\xcb\x96\x28\xda\xdd\x84\xae\xab\x0c\xd0\x7a\x0d\xa6\xbe\xb0\xd0\x66\xa1\x01\x20\x1e\x39\x8e\xe3\x1b\xd5\x7b\x36\x8a\x62\x6b\x06\x70\x3c\x61\x34\xb6\x68\xfd\xc8\x2d\xb5\x4c\xce\xcb\x2f\xb7\x87\xe5\x5a\x47\x60\x09\xbf\x8e\xc9\x98\xf8\xa6\x49\x32\x89\x46\x88\x10\xa6\xf4\x50\xd2\x21\xed\x41\x73\x47\x6a\x27\xe8\xee\xf9\xf6\x38\x64\xdb\x88\x1a\xcc\x1d\x05\x19\xbc\x53\xf1\x41\x87\x36\x79\x5c\x81\x62\xff\x3d\x2a\x58\xae\x01\x75\x7e\xbf\xeb\x07\x2c\x97\xa8\x1c\x3b\x0a\xae\xc3\x35\x18\x78\x88\xd7\x35\xf5\xf7\xef\x4f\xbd\xb4\xf6\x15\x6a\x3b\x71\xef\x5c\xee\x6e\xd4\x11\xb7\xac\x79\xf4\xd4\x4d\x84\x4d\x98\xdb\xef\x6b\x19\x67\xda\x62\xc8\xb0\xfd\x15\x0a\x50\xb0\xf3\x3f\xc6\xe4\xa0\x34\x35\xbb\x56\xee\x1c\x3c\xee\xd6\x4e\x43\x8e\x25\x34\x99\xa1\x41\x04\x48\x82\x7d\x12\xbe\x09\x36\xd7\x46\xf6\xee\x6a\xf7\xd3\x6c\x60\x0b\xcf\xd4\x85\x31\x7a\x5d\x01\x3d\x5f\x6f\x08\xc1\xda\xbd\x28\x27\xd5\x39\xde\x32\x6c\x84\x30\x4e\x62\x91\x9e\x52\x36\x65\x90\xa4\x39\x05\xb3\x2d\x35\xae\x55\x5d\x74\x0f\x42\xed\x99\x28\x5b\x45\x14\x03\x5b\xf5\xdd\x40\x09\x27\x7d\xd7\xcb\x28\x00\xf6\x00\xf0\xc5\x22\x3f\xee\xcf\xa6\xaa\xf4\xc9\x55\x7b\xdc\x40\x50\xc2\x1d\x39\xe5\x37\xe2\x90\xbc\xa2\x90\x4d\x51\x1c\x4f\xf2\x42\x44\xbd\x37\x37\x57\x08\xd5\x67\x43\xab\x0b\x17\x31\x39\xec\x13\xa7\x44\x39\x28\x4d\x44\x6c\x5d\x93\x65\x91\x15\xbf\x4e\xc0\x10\x1a\x31\xa1\x31\x54\x93\x7e\xbf\xe2\x00\x4e\x55\x99\xad\x41\x60\xf2\xa5\xf6\x24\xe9\xa7\xb1\x90\x44\xc1\xb9\xe3\xfc\x06\xdf\x38\x46\xdf\x49\xc2\x18\x7e\x69\x1d\xc7\x7a\xbb\xa8\xe2\xb0\x3b\xba\xb9\xfa\xc4\x74\x13\x07\xc3\x81\x5d\x8b\xe5\x4f\x6e\xf7\x59\x5b\xe6\x5d\x63\x89\x25\x1c\x77\x2c\xa1\xa9\xec\x3c\x1a\xe0\xb1\xb5\x4e\x51\x31\x06\x1e\xc5\x35\x8d\x4a\xf9\x49\x45\x14\x2f\x8b\xc6\x05\x18\x18\x24\x0d\xaa\xa4\xb9\x2a\x1c\x1f\x0e\xbd\x39\xcf\x79\xc9\x53\x0a\x8c\x73\x4a\x21\xf7\x86\x36\x4a\x2a\xf4\x8f\x4a\x4d\xee\xa4\x0a\x85\xba\xe5\x17\x92\xab\x85\x45\xfe\xae\x42\xf6\xbe\x15\x38\x22\xf4\x57\x9e\x5a\xf3\x64\xfc\x37\x09\xee\x85\x25\xf8\x48\xa7\x61\x0b\x66\x76\x4c\x65\x20\x37\xf6\x70\x97\x36\x02\x9f\x69\x3b\xa3\xb9\x79\x2e\x35\x32\xc3\x99\x9e\x1d\x4b\x7d\x13\xfb\xfd\xbc\xea\x8c\x38\xef\x8a\xb5\x43\x6b\x96\x57\x1f\xf0\x84\x18\xac\x5c\x0c\xc3\x79\x1e\xae\x37\xd3\x2d\x4c\x5b\x5f\xfb\x8a\x57\xcd\x71\x8e\xd4\xdf\x85\x87\x06\x1b\xc6\x1a\x42\xa8\x93\x01\x68\x8a\x00\x8a\x15\xdd\x44\xc2\xa7\xe9\x91\x33\x2a\xc9\xb2\x3b\x85\x83\x96\x93\x7e\x2c\x7a\x8d\xaf\x60\x4a\x80\x9a\xf5\x2a\xbf\xc2\xa5\xea\x7b\x2d\xc5\x2f\x71\x8e\x0f\x57\xbe\xab\x85\x2a\x2f\x2e\x82\xf0\xc9\x6b\xc0\x5c\xc1\xfe\xe6\x1b\xe5\x29\x66\xf6\x95\x49\x94\x59\x88\x54\x61\x90\xae\x90\x83\x29\xc4\x00\xe5\xa4\x63\xa2\x99\x96\x00\xab\xe1\x36\x5e\x04\x89\xba\x8f\x02\x45\xf0\x91\x1b\x2e\x96\x8b\x00\xab\xc7\xf6\x69\x45\xeb\x7c\x98\x66\x85\x1c\xbe\xf8\x4e\xe0\xb1\xf9\xba\x12\x17\x4d\xe2\xde\x67\xe8\x05\xc8\x65\x37\x4f\x81\xd9\x0c\xbe\xc5\x4d\xe5\xfb\xbc\xfb\x44\xc7\xb3\x8e\xff\x9c\xdc\x44\x49\x63\x60\xc4\x98\x54\x00\x5b\x1d\x4b\x87\x85\xc8\x68\xd3\xfc\xf3\x27\x3b\x65\x6c\xe1\xe4\x5e\xcb\x75\x00\x78\xdd\x76\x72\xf4\x59\x3e\x4a\xf5\x96\x42\x96\x02\xc9\x82\xfb\x01\x49\x09\xe1\x84\x9d\xe9\x38\x9f\xf2\x8b\x9f\xc3\xc8\x09\x54\x5b\x41\xe9\x20\xc3\x4f\x63\xfd\xd9\xcf\x10\xba\x12\xdb\x9c\xd5\xc3\xb1\x53\xee\x22\x99\xcb\xad\xce\xd3\xd6\x97\xbe\xee\xba\x27\x1f\x72\xab\x3e\x4b\x67\x7d\x0e\xae\xd5\x51\xb0\x91\x0f\x81\xae\xa9\xa8\x3a\x4b\x42\x49\x7b\x70\x91\x5d\x79\x10\xa3\xc4\xc7\x77\xa0\xa8\xbe\x99\x6d\x82\x6f\x30\x32\x0c\xdd\xd2\x6d\x7c\xdf\xa7\x1d\x22\xaa\x70\x34\x65\xb0\x0c\x33\xc0\x44\x21\xa8\x80\xdc\x11\x53\xed\x60\xfa\x44\x38\xc0\xe7\x8d\x46\x93\x24\xb7\x31\xe0\xb7\x8e\xf4\xab\xfc\x25\xbe\x69\x10\x61\x6f\x27\x69\x56\x00\x14\x89\xef\x43\xb3\x2b\x9a\x0f\x8e\x28\x5d\xb9\xba\xa6\xf7\xb3\xed\xb8\x3c\x6a\x33\x10\x49\x49\xf4\xec\x3b\x4a\xce\x4e\x9f\x8a\xe4\xb0\x77\xd8\x0e\x4e\xb3\x21\xb8\xbd\x14\xf8\x40\xb7\xae\xf7\xbe\xb0\xb0\xaf\x9d\x58\xeb\x39\xa9\x9b\xe0\x53\x3b\x5d\xd9\xdc\x24\x4b\x31\x9b\x6c\xce\x12\x6a\x22\x8e\x0f\x7e\x89\x2c\x4d\x18\x4f\x36\x8b\xb7\x5d\x56\x86\x92\x65\x9b\xa5\xad\xe9\x49\x55\xee\x85\x8d\x86\xcb\xe3\x49\x58\x68\x76\xc4\xf9\x17\x23\x6b\xe2\x38\x5d\x9d\xf1\x75\xd2\xab\xc1\x26\x9f\x4c\x60\xba\x1f\x2b\x1d\xd5\x30\x1d\x95\xd1\x14\xad\x03\x81\x2a\xb4\x1c\x27\xd1\x2d\x45\x71\xf6\x91\xee\x71\xe4\xf5\x05\x0b\x72\x8d\x26\x54\xce\x5c\xef\xb7\xff\x40\xc9\xfc\x8d\x2c\xbb\x7b\x4e\xfe\xf8\x81\x8e\x2f\xc3\x3f\xa0\xc0\xa2\xac\x00\xd3\x7a\xe6\x19\x76\x97\x99\x58\x51\x0a\x9f\x94\xb4\x12\x6a\xe0\xa6\xaa\x2b\x8d\x98\xf4\x29\xa1\xae\x7c\x9a\x9e\x90\xaf\x95\xa1\x1d\x9b\x22\x8b\xc2\xb4\x5f\xe9\x14\xbe\xa8\xbb\x4e\x2e\x36\xb1\xd2\x76\xd3\xc9\x60\x58\xe0\xdc\x84\xf1\x42\x52\x1f\x3d\x45\x1c\x7b\xc0\xe2\xdc\xaa\xf6\xca\x8c\xc6\x33\x8a\x84\xf9\xae\x12\x96\x9b\xc3\x01\x27\x2e\x64\x5d\x4c\x76\x5f\xdb\xe6\x5d\x2c\x03\x98\x90\x63\x98\x03\xbe\x69\x4c\x1e\xc4\x2c\x12\x53\xad\x5c\xa9\xd2\x57\xcb\xf5\xbb\xd6\xf9\x41\x77\xef\xa6\xb6\xba\x96\x17\xb0\x3a\x3b\x55\xab\xf0\x6c\xf0\x77\xaa\x0d\xb2\x40\xe5\x44\xa4\xda\x5f\xfe\x1e\x0e\xab\x23\x3a\xce\xab\xd3\xc2\x53\x65\x25\xe9\x4d\x1c\x83\x9a\x28\xdd\xd0\x18\x8a\x04\x8e\x17\xfa\x28\x32\x93\xe4\xa1\x49\x4c\xcf\x50\x69\x59\x98\x4e\xbd\xdb\x72\x75\xea\x7b\xd2\x7e\x56\x2b\xa9\x3c\xbf\xd0\x7e\x65\x12\x85\x4b\xcb\x91\x5d\x69\xf9\x78\x95\xd7\xb3\x98\x55\xf1\x50\xf3\x51\x54\x0c\xf3\x34\x89\x0c\x10\x44\xf0\x7b\x6f\x4c\x55\x43\x22\x3e\x08\x63\x71\x5f\xf5\x1e\x95\xb1\xbd\x59\x62\x02\x7e\xf8\x04\x6f\xd0\x6e\x92\x2a\x84\xef\x8c\xb8\x02\x3f\x95\xff\x21\x50\xfd\xf6\xeb\xea\x6c\x0e\xcd\x38\x2a\x4c\x8c\x5e\x29\xfc\x38\x82\x0b\xf9\x72\x1a\x74\x04\x36\x5b\xd6\xea\x05\x82\xb6\x09\x43\x3b\xf6\x41\x17\x1b\xf7\xc0\x67\xa3\xd6\x1d\x91\xe5\x8a\xc9\x58\x6a\x4e\xd8\x2b\x69\xd5\x32\x57\xbd\x02\xb5\x33\x73\x84\xd0\x15\xd6\x99\xe5\x9e\x6b\x9b\xae\x49\x7a\xd4\x54\x55\xba\xa4\x8a\x4d\x48\x60\x91\x8d\x24\xf1\xae\x05\x46\x89\x80\x09\x7b\x01\xdf\x39\xcb\x1c\xa6\x49\x3f\x8e\xc2\x62\x46\xd5\x00\x91\x22\x43\x42\x6e\x9b\xaa\xc1\xde\xad\xf9\xb1\xbb\x77\x43\x8d\x86\x95\xeb\x2a\xea\xac\x38\x38\xde\x9e\xd6\x1a\x03\xd1\x37\xbc\xa5\xd3\xa8\xda\x11\x9b\x04\xca\x6a\xae\xc1\xc8\x0d\xf1\xd5\x40\xbd\xcf\xbb\x8d\xf8\x3f\x53\x86\x73\x8a\xf0\xa2\x4a\x04\xad\x1a\xc5\xb8\x29\xfd\x89\xf2\xa9\xf1\x4b\xf7\x94\x30\xcf\x0e\xe4\x37\xb1\x27\xfe\xcf\xa9\x62\xf2\x41\x43\x03\x3c\x28\x66\x33\x02\x6a\xee\x90\x2e\x7e\x5f\xc2\x5e\x87\x49\xbb\x88\xd4\x82\x4c\x03\xbd\x03\xba\x36\x50\xc1\xc3\x09\x01\x0f\x82\x53\x8d\x53\xd5\xb6\xbc\xad\x53\xba\x47\x0e\x36\xef\x32\xd6\xdb\x90\xb5\x95\xb4\x06\x15\x3c\x1c\x45\x4c\xb9\x9a\xf1\xeb\x75\x70\xfe\xf3\x0b\xed\xa1\x4d\x62\xcb\x58\x6b\x78\x64\x48\x79\xf0\x75\x47\xb6\x30\x19\x8c\xbe\xcd\x32\x04\x3a\xf3\x22\x4d\x33\x55\xfc\xc0\x68\x53\x82\x53\xba\xa1\x6b\x3e\x51\xf9\x39\x45\x72\x7e\x4c\xd7\xe6\x8f\x39\x33\x31\xa6\x89\xc8\xd2\x68\xc9\xcc\xa8\x2a\x50\x8b\x1e\x88\xb2\xad\x5b\x1f\xa3\xfc\x38\x8e\xad\x5f\xe9\x7c\x1a\xcf\xe9\x4a\xe9\x2a\x29\xa6\x57\x28\x39\x0a\xd1\x9b\xac\x77\x13\x86\x91\xf3\x73\x70\xbe\xdf\x53\x67\xfd\xbd\x26\x5c\xcb\xa6\xfa\x98\xe3\x58\xbe\xa0\x9a\xba\xea\xbc\x9c\x0b\x0b\xed\x28\x31\x3d\xfb\xca\x84\x04\x20\x1d\x1f\xdf\x15\x05\x1f\xbb\x52\xc9\x7b\x65\x36\xa5\x50\x15\x34\x58\x6f\x61\xbc\xa4\xe2\x5f\x1a\x6c\x09\x4e\xa8\x20\x82\x9e\x43\xd0\x2e\xf0\x27\x6a\x73\x4d\x45\xf0\x24\xcd\xed\x8c\x22\x27\x3b\xa3\x38\x16\xe0\x4f\xa2\xc1\xe5\x88\xeb\xc1\xed\x47\x26\x0f\x53\x64\x21\x10\x5a\x42\x63\x97\xaf\x11\xd8\x49\x1a\x62\x68\x32\x13\x16\x36\x23\x14\x8c\x23\x6c\x75\xd0\xf7\x3d\x7b\x9c\xf0\x88\xdf\x7f\xbd\x68\x39\xca\xa3\x34\x79\x48\xf1\x91\x5c\x0c\x1c\x77\xcb\x63\x7f\xac\xa5\xd5\x98\xa4\x16\xa1\xca\xa5\x40\x01\x44\x2e\x28\x9a\x43\x54\x47\x98\x59\x97\x41\xdc\x92\x4f\x55\x16\xe1\x4f\xa7\x1e\x50\xfd\xfa\x54\x91\x2a\xab\x9e\x6a\x6b\x88\x37\xff\x45\x47\x10\xbd\x4e\x9b\x53\x8c\xbe\x77\x31\x6d\x6c\xc3\x22\x4b\x93\x28\x64\xbd\x04\xd6\xa4\x0c\xfc\xaa\xff\xf7\xb4\xb8\xf8\x5a\xbb\xaa\xbf\x50\xf5\xaf\xf2\xc8\x30\xdc\xe3\xe3\x28\x53\x5d\xba\x44\xc4\x0a\x44\xef\x4d\xf1\xa4\x7f\x4f\x3d\x75\x3f\x4e\x53\xe0\x77\x5c\xb1\x6d\x7e\x3f\xbf\xe9\x87\xf4\x75\xd8\x59\x27\x38\x72\x14\xb5\x08\x9a\x02\xc7\x21\xe9\x19\xb2\x0f\xc3\x88\x31\xc5\x8d\xc2\x9e\x7f\xa2\xa5\x7f\x8e\xd4\xec\x70\x79\x5a\xc6\x71\xba\x42\xbe\x8f\x83\xfc\xaa\xf2\xd9\xa3\x8a\xc4\x32\x8e\xf3\x56\xf9\xcd\x4e\xd8\xd0\x45\x37\x1a\x9e\x14\x25\xe1\x64\xd4\x25\x15\xc4\x72\x88\x5c\x8f\x75\xb9\x46\xa4\xad\xda\x5b\x9e\x90\xbc\xfe\x6d\xbe\xf2\xf6\x16\x9c\x60\x06\xb8\x68\xb5\xf7\x0a\x74\xf7\x0a\x0f\x0c\x2a\x59\x1b\xaa\xf8\xfd\xdd\x9a\x23\xfb\xfc\x02\xf9\xda\x90\xa6\xdb\xe7\xc8\xb5\xc8\x24\x4b\xf3\x99\xde\x65\xe2\x1c\x84\x66\x34\xde\x7c\x54\x2e\x7a\x8e\xef\x05\x95\x7e\x2b\xa7\x45\x08\xb3\x7d\xcf\x4a\x77\x92\xe7\x51\x69\x32\x59\x53\x55\xa4\xb6\x74\x8f\x2f\x7d\x27\x12\x71\x55\x17\x3a\xcf\xd3\x96\xe6\x65\x64\x0c\x22\xdf\x28\x09\x24\x9b\x97\x07\xb1\xe9\xc1\x6e\x61\xc1\xfe\x4d\xe0\x9d\xa7\xbf\x69\x3a\x7d\xc3\x34\x12\xb8\xa6\x13\xe9\xf2\x82\x5d\xce\xb8\xa4\x2b\x89\x4b\xa0\x36\x26\xbd\x1d\x17\x6f\x3a\x49\xc2\x28\x9e\x6b\x7d\x75\xde\x67\xd5\x3c\xc1\xf3\x9f\x4f\x7d\x35\x0d\x54\x94\x82\x71\xa4\x6f\xc3\x2a\x7a\xab\x96\xc7\xfa\x55\x85\x2c\x2d\x57\x85\x48\x54\xd2\x37\xf3\x8d\x2a\x06\x17\x43\x4b\x5a\x50\xdb\x94\x87\x78\x4c\xe9\x5c\x7e\x17\xc6\x05\xf9\x92\xf3\x4a\xb2\x1c\xf2\xf3\xec\xef\x5f\xa1\xfd\x27\xe9\x92\x8a\xc6\x5d\x91\xa2\xd0\xac\xa5\x8d\x61\xaa\x58\x81\x10\x79\x88\x13\x8a\x65\xd4\xf6\x56\x22\xc1\x27\x8a\x79\x56\x35\x87\x3a\xee\x9f\x98\xdb\xe2\x68\xe0\x94\x62\x04\x01\x5a\xfe\x98\xa0\x44\x1b\x96\xf8\xca\xd0\xba\xee\x5c\xd4\x4c\xce\xa2\x16\xc3\x37\x6e\x4e\x07\x71\x54\xbc\x0a\x5a\x38\x24\xff\xfe\x40\x71\x83\xfe\x41\x13\x01\xed\xd0\xc4\xfd\x32\x42\x72\xa0\x30\x54\x64\x91\xef\xe5\x6b\x17\x02\x8f\x33\xbb\x6c\x62\x29\x37\x61\x66\xaf\x2a\x11\xd4\xab\xce\xf9\x1e\xa6\x23\xb0\x1b\xc0\xab\xe2\xea\x17\xdf\xac\x35\xa8\x87\xd8\x64\x60\x9c\xb0\x0a\x72\x9f\x77\xe0\xa6\xf2\x8d\xaf\xda\x31\xe9\x11\xc5\x10\x48\x76\x21\x86\x40\x49\xf8\x7f\x87\xd7\x85\xc2\xfd\xd6\x35\x45\x67\x91\x4e\xe0\x6d\x60\x76\x18\xf6\xc6\x37\x35\xaf\x7f\xf1\x85\x7d\xed\x30\x33\xe1\x52\x2f\x5d\x41\x3d\xc3\x31\x5a\x78\x76\x0b\x27\x1a\xf2\xca\x24\x1a\x73\xb0\xc1\x3f\xdc\xf1\x7c\x30\xbc\x5b\x60\xcd\xaf\xe8\xd6\xec\x1f\xab\xda\xcd\x38\x1a\x4b\x03\x1c\xce\x8d\x33\xaa\x06\x72\x46\x9d\xd9\x71\x14\xda\x24\xb7\xf9\xac\x57\xb2\xba\x09\xd7\x96\x6f\x68\x42\x90\xc2\x7c\x5f\xa3\x08\xdf\x6f\x2a\x21\x8e\x33\xdb\x8b\xbc\x5c\x01\x80\x10\x6f\x2b\x81\xaa\xb7\x5d\xd5\xc8\x74\x89\x10\x48\x92\xed\xf0\x10\xde\x55\x3d\xe8\x57\xa6\x8a\xa3\xf1\x4c\x2d\xed\xbc\x7b\x37\xb4\x17\x22\x4a\x58\xd0\xcf\x21\x9b\x81\xee\x5c\xbe\xae\x45\xd7\xbb\x77\xb7\xd3\x30\x9c\x64\xc2\x76\x23\xe4\xd2\x9a\x69\xba\x66\x5d\xf6\xbf\xd0\x2e\x1d\xa2\x81\x45\xbd\x03\x8f\x74\x5d\x9f\x54\xd7\x1b\x01\x58\x23\x3b\x4a\x33\xd3\x8d\xe2\xc8\x60\xbb\xe1\x74\xbd\xab\xb4\x9c\xea\xd1\xd7\xc2\x42\xbb\x58\x21\xf6\x60\x7a\x40\xc4\x31\x2c\x1a\xca\x37\x35\x3b\xbd\x67\x0f\xd7\xa5\x5a\x4e\x80\x02\xa7\xb3\xb0\x2a\x7b\xe3\x84\x4c\xcd\x36\x9d\xed\x07\x8a\x1a\x09\xc4\xbf\xa1\x6c\xb4\x6b\x3b\x72\xdb\xf6\x9c\xae\xc3\xdf\xd0\xbc\x35\x4d\x5d\xea\x8b\xed\xcc\xe6\x93\x91\x4c\xae\x64\x14\xbc\x1d\x3d\x8a\x01\xc7\x1a\xbb\xae\xd6\x23\x39\xd6\x51\x9a\xcc\x54\x60\x65\x95\xde\x0f\xbf\x53\xff\xc3\xe6\x4e\xce\x67\xdb\x07\x76\x2d\x3c\xae\xb2\x26\xdc\x19\x0f\x8e\x87\x16\x65\xdd\x31\x24\x77\xe0\x71\x62\x4f\xfd\x35\xd5\x8c\xa5\xd2\xaf\x21\xce\xe7\x15\x15\xcc\x75\x4d\xda\x7c\x5a\xf3\x8d\xdf\x0e\xca\x68\x8e\xe5\xca\xc9\x41\x13\xd8\x4f\xb9\xab\x84\xcb\x5e\xc5\x41\x7f\xa4\x79\xc7\x37\xa6\x5e\xeb\xe6\x0c\x1a\x3e\x59\xf4\x55\xb1\x70\x5e\xab\xe4\xc0\x73\xc3\x4a\xe5\xc8\x54\x7d\xb7\x42\xf7\xdc\x52\xbd\x81\x8f\xe8\x4e\xcc\x62\xbb\xef\xb4\xfb\x83\xc0\xb7\x82\xfc\x75\xa0\x78\x6d\xae\x28\x7d\x3b\xf6\xaa\x9c\x4f\x59\x3e\x33\x7f\x04\xa3\xb4\x71\x4c\x33\x44\x5b\xbb\x94\xcf\x78\xd8\xcc\x1c\x98\xe3\x85\xdb\x91\xbe\x4a\xb8\xd8\x6a\x7d\x8e\x7b\x17\xdb\x26\xcc\xd2\x9c\xcf\x6f\xa7\xf6\xf0\xbc\x57\x7b\x68\xc0\x12\x8f\x26\x79\x18\xeb\xce\x9f\x0b\xaa\xf3\xe7\xc2\xd4\xf7\x7a\x8c\x6d\x06\x19\xf0\x96\xeb\x50\x07\x2c\x8e\xaf\x1b\xe0\xa3\xed\x7c\xd2\xcd\xa3\x9e\xd7\xb0\xc4\x30\xac\x2b\x15\xda\xf5\x4a\x47\x4c\x1c\x47\xcb\x26\xd1\x60\x88\xc3\x58\x7d\x7c\x53\xe3\xba\xdd\xb3\xa7\xbd\x2a\x34\xb2\x08\xb5\xdf\x55\x90\xd6\x77\x2b\x51\xe4\xc8\xd8\x19\x25\x71\x75\x5f\x91\x2b\xae\x53\xc7\xb1\x68\xbf\x3e\xa9\xd8\xc8\xfa\x36\xb3\x49\x58\x3e\x7f\x69\xd0\x51\x98\x07\xfb\x1f\x5f\x07\x1e\xd7\xd5\x35\xb9\xdd\x4e\x13\x86\x75\x0c\x09\x25\x64\x75\xfe\x6f\x05\x6b\xdd\xd2\xf1\xb8\x2e\x2e\x3d\x61\x82\xf8\x60\x42\xdb\xf8\x45\x9d\x3d\x6c\x4a\x0a\xb5\xfb\x86\x3b\x29\xa5\x27\xf9\x38\xc2\x14\x81\x62\xf9\xf7\x18\xc7\x66\x75\x85\x8a\x94\x33\xbe\x37\xe2\x16\x3d\x92\xc0\xcc\x2b\xec\xdf\x3e\x95\x6f\x96\x6d\x32\xb1\xb3\x15\x99\xb7\x96\x52\x60\xf5\x3c\xbb\x68\x65\x14\x29\xd5\x86\x26\x80\xcc\x96\x87\x86\x2b\x8b\x38\xd8\xb5\x02\x5c\xfb\x58\x25\x9b\x8c\xd2\x2c\x9f\xa1\x51\x47\x32\x7a\xcb\x9a\x57\xc4\xdf\x41\x7d\xdc\xc2\x5f\xf6\x98\x5a\x41\x61\x68\xf3\x7c\x9b\x76\x7a\x7d\x55\xfe\x0d\x8c\x35\x9a\x6d\xd6\xb1\x31\x91\x20\xf8\xf1\xd4\xf3\xdb\xfc\x80\x2c\x99\xf0\xac\x7a\x95\xf3\xac\xb0\x80\xf4\x32\xf8\x06\x23\x26\x48\x1c\xc7\xa1\x41\xdc\xc1\xb3\x7e\x94\x7f\x3a\x55\x14\xd1\x73\x1d\xef\x58\xf2\x81\x89\x3c\xcc\x4d\x35\xe4\x39\xf1\x36\x92\xef\xab\x33\xea\x52\x3c\x6e\x39\xa1\x91\x1b\x0d\xa4\x87\x2f\xb5\xc3\x49\x51\x91\xd5\xa6\x9f\x17\x5d\xed\x7a\x2e\x75\x1e\xed\x58\x93\xac\x7c\x6a\xf7\x76\x2c\xfe\xcb\x94\x01\x9a\xa6\xfd\x4d\x7c\x21\x4e\x92\x6b\xce\x17\x59\x19\x46\xe1\xd0\x2e\x4b\x9f\xba\x48\xbd\x7a\x48\xdc\x4d\x05\x80\xcc\x27\xe1\x70\x27\xce\x08\x49\x18\xd1\x2f\x48\xef\xa7\xc7\xf2\x5f\x02\x81\xae\x38\x85\xf4\x50\x70\x83\x40\xc1\x81\xfc\xc1\x55\xac\x7b\x1c\x4b\x57\xe8\xf8\x55\xfc\xe2\x2f\x55\xf5\x9a\x59\x49\x48\xa1\xd1\x1e\x07\x8d\x85\x63\x39\x71\x47\xc9\x09\x5d\xc3\x9f\x43\x5e\x51\x74\xf9\xb4\x70\xc9\xe8\x20\x6d\x2b\x04\xbb\xf0\xbf\x91\x6a\x3f\x43\xad\xf5\xa2\xeb\xd8\x94\x24\x66\x71\x59\xdf\x2e\xc8\xd9\x40\xbe\x69\xe2\xe5\x8a\xa3\x24\x4c\xe3\x44\x35\x65\x9c\xad\xec\x5e\x05\xa7\x9d\xc4\x4b\xdb\xbc\xf3\xc9\xc2\x29\xf0\x60\x7f\xae\xe8\xf6\x2f\x07\x9e\x16\xe1\x7b\x78\x67\xa6\x6e\x98\xfa\x55\xa8\xd9\x0b\x8c\x2d\x12\x43\x68\x49\xfc\xdd\x91\x40\xd1\x06\x9e\x23\x98\x08\xff\x03\xcd\x25\x73\xfb\xa2\xb8\x2d\x9d\x90\x34\x65\x48\x7d\x7c\x27\x50\xed\x92\xb5\x45\xbd\x77\x57\x7b\x29\x89\x0a\x24\x5a\xd9\x43\xd0\x4c\xf8\xc7\xa6\xaa\x66\x76\xcb\x65\x14\xba\x93\x2c\x99\xf5\x42\x6c\xef\xe3\x23\xf8\x91\xd9\x4e\x15\x7d\xe4\xe2\xa2\x4b\x6e\x41\x67\x36\x4c\x47\x23\xcb\xfd\x3c\xc2\xd4\x46\xdf\x21\x14\x6e\x0d\xc0\xff\x41\x94\xc5\xdc\xc8\x8c\xd9\x00\x61\x37\x6b\x29\x2b\x12\x4b\xdd\x3f\x9f\xaf\x26\xc5\xd0\xe6\x11\x8e\x56\xe6\xfa\x57\xa2\xb0\xeb\x4d\x55\xb4\x3c\x8d\x7b\x73\xe5\xa3\xa1\x08\x86\xaa\x9f\x12\xb7\x17\x83\xf1\x1e\x7d\x11\x4b\x09\x4e\x55\x88\xb5\xa3\xe3\x5d\xc6\xa5\x34\x4b\x8b\x28\x1c\x2a\xe7\xb7\x5a\xaf\x56\x25\x28\x93\x85\x69\x6e\x99\xbb\xc2\x65\x40\x7c\x36\xa4\xa1\xe0\x3e\x8e\xad\xc9\xe1\x63\x48\xc1\x43\x33\x24\xfa\xf4\x4a\x94\x2c\xa7\xf1\xb2\xeb\x56\xc4\x94\x82\x9f\x14\xbb\xfe\x07\x2a\x73\xf2\x47\x5a\x1b\xe1\x62\xd3\x4e\xe9\x9b\x70\x12\x17\xab\x2d\x25\x46\x79\x4a\xa1\x9c\x4f\xd5\x00\xb7\xcf\xb6\x0b\x93\x17\x78\x52\xac\x34\xe8\x10\xf0\x75\x43\x72\x67\x5f\x3b\xb3\x31\xb3\xcc\x8a\x3e\x72\x69\x40\xf8\xba\x32\x70\xcb\x36\x8b\xc2\x25\xa5\x48\x7b\x3d\x50\x09\xc3\xeb\x9f\x4a\xdc\x16\xdb\xae\x49\x98\x91\x56\xbc\x3f\xd5\x1f\x74\x22\x78\xd8\x0b\x79\xda\x7c\x8e\xfe\x49\xce\x46\x0f\xfc\x3b\x56\x49\x3a\xb5\xbe\xf6\x15\x47\x12\xe2\x13\xb1\xc7\xd4\x1e\x9f\xe4\x36\xcb\x89\xdf\x4e\x68\xa5\xc9\xb2\x0b\xdf\x34\x6d\x78\xa1\xc3\xa2\x8d\x2d\x7c\x58\x0d\x8c\x5b\x76\x34\x8e\xd3\x55\xc9\x26\x48\x61\xc0\xc3\xd4\x2e\x4c\x3d\xd7\xcd\xaa\x99\x51\xc9\xcc\xef\x6b\x85\x88\x93\x38\x0d\x98\xe8\xc7\x6b\xbe\x44\x71\xcf\xae\x60\x96\x25\xc2\x6f\x79\x7a\xaa\x26\x3a\x6f\x88\x66\x19\x66\xec\x67\x2b\x58\xb1\x88\x0a\x26\x6d\xf2\x9c\x23\x49\xc9\xc0\xaa\x44\xda\x7a\xe0\xd9\xab\x46\x26\x99\x48\x31\x15\x07\xc0\x45\x95\x7f\x63\xcb\x2e\x68\x71\x8f\x7f\x29\xca\xb8\xb8\xc0\xc7\x9c\x6a\x9e\x13\x27\x79\x13\x67\xa3\xb8\xf0\x8f\x3b\xfb\x94\x8f\x95\xac\x21\xda\x51\xe0\x65\xf2\xb5\xf2\xa6\x46\x69\x31\x64\x3c\x27\xec\xf2\x86\x6a\xd2\xde\x50\x8e\x22\xc9\x42\xe5\x45\x14\xd2\x32\x92\x42\xc3\x5f\x28\xcd\x99\x53\x88\xfa\x1c\xb1\x96\xa3\x8f\x3a\xaf\x1b\x75\x15\xcc\x31\xcc\xac\x29\x6c\x8e\x6e\x45\xd4\x04\x19\xa7\x24\x24\xc6\x3e\xad\x52\xef\x17\x27\x29\xc6\xe8\x20\xf3\x45\x4b\x4c\xa3\x64\xd1\x50\x2b\x14\x3e\x04\xff\xca\xac\xd4\x57\x7e\xca\x55\xff\xbd\xb4\x45\x3d\x14\x7a\x96\x64\x81\x9d\x77\x8a\xb8\x60\xb6\xe3\x63\x84\xd9\x1a\x46\xbc\xb4\xc2\x23\x2b\x85\x1d\x64\x69\x41\xe0\xcd\xd7\x9d\x26\xac\xe0\x20\x8b\xc6\xa0\xb2\x12\xa5\x84\x2d\x1d\xc5\xe5\x72\x6b\xea\x0f\x8c\x43\x35\xb4\xf8\xb3\xed\x62\x68\x8a\x6d\xe5\xae\x84\xa7\xfd\xef\x02\xcf\x18\xf5\x17\xb4\x57\x36\xb8\xae\x8a\x2d\xb3\xa3\xe3\x21\x7e\xeb\xd3\xd6\x8b\x8b\xae\x72\x53\xb7\x7d\x43\x1b\x4b\x52\x13\xa9\x7e\xe6\x87\xe4\x1b\xc5\x49\x44\x99\xe2\x9e\x9d\xf3\x0d\x59\xe7\xb4\x0b\x72\x14\x6e\x17\x4c\x36\x13\x3a\xf0\x0d\x4d\x36\x32\x55\x37\x6b\xb8\xae\xbd\xbb\xf6\xb6\xc3\x34\x87\xff\xea\x48\x09\x17\x1c\x41\x61\xf0\x98\xaa\x7c\xf4\x26\x21\x86\xf1\x39\xce\x25\x6f\xed\xf8\x1c\xcc\x2d\x15\x7a\x1d\x57\x5b\xad\x67\xfb\xb1\x0d\xb9\x5c\xc2\x64\xf0\x5a\x8b\xa5\x8e\x2c\x27\x1e\xf1\x34\x8f\x8a\xc8\x73\xb8\x4a\xbd\x88\x4e\x53\xbe\x51\x05\xa7\x57\x26\x51\xc1\xfc\x5b\x92\xe7\xf2\xc9\x85\xf3\x60\x31\x82\x7b\x0b\x19\x78\x56\xa7\xa8\xe5\xbf\xf6\xec\x01\x3a\x9d\xc5\x35\x90\x08\x12\xdc\x94\xaf\x1f\xa2\x1b\x11\x3b\xeb\x98\x8a\x23\xc6\x43\xe3\xce\x69\x84\xb6\xdc\xf7\xc6\x37\xca\xc4\x0d\x86\x69\x5e\xe4\xb3\x34\x10\x8c\x86\xd5\xad\x1b\x80\x6b\x3a\x98\xac\x6f\xf0\x58\x0f\x9e\xd0\x18\xe5\x2c\x5d\xb1\x19\xda\x6d\x10\x3f\xa1\x74\xc9\xd7\x1a\x76\x92\xf6\xc6\x91\x0d\xed\x2f\xa1\x04\x6f\xa2\xce\x5b\x89\x8a\xd2\x47\x39\x20\xc1\xf3\x69\x85\xc7\x38\xad\x0a\x5d\xf9\x24\xa3\xd4\x75\x69\x64\x44\x87\x86\xcc\x0f\xdf\xac\xf9\x8c\x4b\x19\x6b\x65\x0f\x7b\x34\xea\x43\x14\x65\xe2\x44\x3e\x43\x6e\x31\x32\x21\xdb\xd6\x54\x16\x1b\xc4\x65\x18\xc6\x9d\x60\xfe\xc1\x63\xff\x2f\x00\xdd\xf0\xc7\xa7\x0a\xa0\xce\xed\x6b\x82\xc6\x6c\x39\x2a\xcf\xc7\x10\x69\xf1\xe7\x71\xda\x61\x6b\x7f\x50\xcb\xa8\x08\x4b\xd1\x2f\x57\xb3\x6d\xc8\x14\xe4\x91\x10\xc6\x32\x0c\x3d\xf0\xb1\xfa\x4f\x1a\x41\xd8\x63\x9b\x24\x16\xa7\xa3\x93\xb1\x2e\x5f\x40\x28\x01\x9f\x52\xd4\xe7\x36\x9c\x88\xf0\xab\x47\x9c\x72\x46\x8c\x6f\xa6\xaa\x2f\x61\x34\x8e\x3d\x61\xbb\xab\xd7\x1f\x9e\xaa\xe2\xfd\x61\x45\xe9\x92\xd9\x3c\x8d\x97\xb9\x11\x07\xa6\x08\x29\x08\xbe\x6e\xf0\x37\xf3\xb4\x5f\x40\xd8\x64\xd1\xb1\xa0\xd2\xfc\xb3\xae\xa0\xca\x60\xd4\xa3\xb2\x97\x5f\x6e\x17\xf9\x24\x31\xa3\x48\x1d\x39\xb7\x83\x32\x90\x93\x04\x91\x56\x81\xae\xb6\x46\x99\x18\x9b\xc8\xb5\x23\x95\x63\x20\xd6\x97\xd6\x06\x1e\xe1\x2c\x6d\x0c\xbe\x56\xf6\x69\x90\x52\x81\x51\x13\x60\x7c\x12\x28\x25\xfd\x4f\x9a\x90\x83\x63\x38\x28\xf4\x19\x61\x19\x56\xb9\xee\xf3\x6a\xe3\x8d\x6d\x52\x98\x01\xda\xdf\x19\xd5\x72\x55\xf3\x1f\x7c\x47\x8b\x37\x9d\x52\xda\xbd\xef\xab\x32\x5b\x98\x99\x7c\x88\x9f\x83\x8b\xc5\x80\x2d\xbe\xa9\x4a\xfd\xe4\x96\xdb\xe6\x5d\xd8\xee\xbc\xbe\xad\x1d\xc5\x1b\xc1\x0d\xac\x9e\xc5\x5e\x8d\x9b\xe7\xe6\x78\xcb\xf5\x79\xd8\x3c\xb7\x49\x11\x39\x5c\x05\x8b\x67\xd3\xb8\x8a\x90\x76\x05\x58\x3e\x40\x62\xd5\x21\xe5\x5c\x16\xf3\xe3\x40\xf5\x2a\xfc\x71\x53\xb9\x6f\x68\xf2\xdc\x24\x2d\xdf\x1c\xc7\x01\xb7\x60\x16\x1b\x98\x00\xcb\x59\x2c\xaa\x3c\x67\x17\x34\xcf\xd9\x85\xca\xba\xb1\x71\x8a\x62\x15\xab\x54\xc2\x14\x3a\xc9\xca\x4f\x13\x2f\x97\x82\x70\xdf\xc6\x71\x94\x44\x5a\xa8\x60\xaa\xa8\xff\x9b\xdb\xb0\x97\xd3\x28\x64\x6a\x4c\x66\xa4\x57\xc4\x7b\xa7\x6b\xa1\x51\x69\x7b\x24\x88\x63\x7d\x12\xcd\xe1\x77\x5e\x91\xb8\xf6\x4d\x4c\xe8\x62\xed\x1d\xf8\x53\x5c\xb7\x5d\x12\x4b\x0c\xfe\x10\x3e\xc1\x6d\xe5\x1f\xdc\x56\x89\xf1\x91\xc9\xf2\x61\xcb\x37\x32\x9f\x55\x4a\xea\x67\x83\x47\x95\x63\x62\x38\x8a\x85\x9b\x7d\x5a\xfb\xdc\xa7\x95\x55\xb1\x07\xc3\xa8\x10\x71\x07\x11\xd8\x6c\x29\xe1\xcd\xba\x7f\x38\x34\xc9\x40\x5c\x4a\x2c\xd3\x4f\xe0\x9a\xf3\x4d\x13\xc8\xa8\x1d\xe5\xf9\xc4\x2a\x62\xe9\xf7\xa6\x8a\x58\xfa\xbd\xa0\xa2\x20\x51\x10\xb3\x1f\x78\x27\xef\x2a\x26\xf7\xeb\x55\xc6\xed\x2a\x71\x97\xc9\xa2\x78\x75\x4e\x01\x26\x6f\x62\x0b\xc3\x5b\x9f\xe9\x78\xd1\x1a\xd0\x23\x89\x12\xb8\xf7\x1f\xce\x22\x97\x05\xaf\x39\x1b\xad\x22\x49\xce\x48\x63\xe5\x47\xa1\x2f\x11\x99\xc4\xbf\xd0\xda\x9e\xe9\x4a\x8c\x43\x9f\xe1\xf7\xaa\x00\x7d\x44\x25\x67\x33\xdb\x9f\x50\x20\xe5\x76\x2b\x4a\x0d\xb2\x21\x1a\xd2\x63\x2b\x06\x93\x44\xc3\x8c\xc4\xdd\x39\xd5\x92\x71\xae\x41\xc3\xa5\xf4\x4d\x97\x6d\x56\x44\x02\x49\xc5\xfa\xbc\xa5\x92\x3c\x75\xca\xed\x32\x22\xcc\xd2\x74\x29\x5e\x45\x94\x8d\xe0\x8d\xbb\x8c\xf9\xc6\xc1\x2f\x06\x36\x33\x71\x2f\x25\x69\x20\x41\x56\x23\x99\x09\xdc\xf9\x31\x1d\x1e\xde\x56\xd9\xb8\xa2\x48\x67\xd5\xd8\xde\x53\x04\x4e\xc7\x95\x1e\xc0\x19\x32\x7e\x8c\x35\x56\xe5\x11\x7b\x70\x4c\x75\xe6\x39\x5d\x9c\x53\xc0\xeb\xc3\x58\x26\xc8\x8d\x9c\x55\xfa\x27\x5b\x3b\x2a\xef\xa7\xbb\x62\xbb\x69\xba\x24\x74\x5a\xc8\x85\x9d\xa5\xe7\x40\x86\x1c\x89\x4c\x91\x64\xaf\x1c\x73\x71\x82\x63\x4e\x94\x35\xca\x3f\x84\x6b\xd4\xea\x28\x0a\xa9\x93\x3c\x2e\x00\xfe\xbc\x5e\x9b\xad\x3d\x7b\xda\xcb\x69\x3c\x49\x0a\x5a\xc4\x74\xdc\xba\x6e\x47\x1f\xcc\x43\x1e\x1d\x29\x9b\xdb\x8d\x94\xca\x2b\x51\x32\xc8\x5b\xad\xaf\xce\x4b\x6e\x1f\x1f\x97\x44\x7f\x13\x6f\x48\x61\x93\x9e\x28\x6c\xcf\x0b\x4c\x29\x50\xa2\xc4\x9a\x86\x21\x4b\x07\x16\xd8\x65\x71\x9e\x99\xef\x51\xa4\x53\x2b\x9d\xcd\xfe\xb4\xaa\xab\x72\x94\x4f\x1b\x8d\x48\x6e\x77\x46\x51\xfe\x5c\x57\x3c\xa3\xcc\x36\x2c\x76\xc8\x2f\x9f\xfd\xd1\xb8\x55\x69\x17\x2f\x97\x89\xf4\x91\x2b\x46\x00\x33\x36\x61\x54\xac\xce\xf9\x9c\xdc\x2d\x4a\x43\xe3\x00\xe6\xd8\x0c\xcd\x14\x37\x02\x4f\x5f\x75\x2b\x50\x18\xa2\x33\xea\x77\xc7\xe9\x78\x4e\x21\x8f\xaf\x68\x5e\xa9\x93\x2a\x9d\x06\x55\x4a\xc0\x32\x4f\x29\xad\xe7\x73\xee\x9c\xe2\x2e\xec\x99\x4a\xe7\xb5\xb7\x8d\x20\x0f\x80\xf3\x3c\xd7\x11\x28\x47\x61\xf2\x61\x44\x46\xa3\x51\x3a\xd8\xc7\x3b\x83\xcc\x12\x11\x82\x7f\x08\x5a\xc0\xf2\x40\x2a\x3c\x08\xd3\xcc\xe6\xea\x38\xaf\xea\x77\x3c\x51\x2f\x88\x3f\x4e\x06\x08\x49\xd4\x3f\x9b\x2a\xf5\xad\x3f\x0b\x14\xa0\xf9\x14\x3c\x3c\x4d\xa6\x87\xe9\x79\x04\x2a\x82\x2e\x6c\x2c\xc7\x4f\xea\xd3\xe4\xf5\xc2\x97\xfc\xa9\x5a\x47\xb3\xe0\xde\x95\xe0\xd2\xf7\xe6\xb1\xa8\x8f\x88\x58\x79\x13\x72\x98\x5c\x54\xd9\x26\xad\xaf\x7d\x85\xb1\x18\xff\x86\x7c\x7d\xe9\x6d\x2a\xb7\x3a\x7e\xe1\x68\xe9\x93\x4b\x34\xad\x7b\x85\xe9\x5d\x75\x0b\x04\x5f\x37\x64\x0c\x4c\xcf\x71\xb9\x22\x88\xe5\xf6\x7f\xbe\x51\x93\x93\x47\xc9\x20\xb6\xdb\x14\xe3\xe8\x4f\x90\x35\x74\xc1\x9f\x97\xcd\x66\x8d\x69\x47\x07\xec\x49\x67\x15\x20\xa3\xde\xd8\xb5\xff\x85\x76\x61\xcd\x08\x00\x13\xa1\x3b\x55\x3d\x9d\xa7\x82\x07\xf8\x2f\x7b\x66\xb6\x42\x60\xe0\x1b\x56\xde\x0c\xbc\x1d\x46\xe9\x5c\x92\x47\x9b\x33\x31\xf3\xfb\xdb\x99\x29\x14\xed\x06\x98\xac\x44\x93\xf1\x51\xdd\x5c\x12\x15\x15\x3f\x70\xea\x7d\xd4\x0b\x8a\xe4\x7c\x9c\x45\xcb\xa6\xb0\x0f\x79\x01\xd8\x6f\xd2\x40\x6c\x00\x44\x22\xa6\xcd\x73\x54\x7c\x6f\xaa\xea\x56\xf7\x02\xc5\x6e\x7c\x18\xef\xed\x8e\x82\xbd\x8b\xbe\x20\xe5\x74\x34\x6e\x28\x26\x70\x2e\x46\x32\xc8\x78\xb3\x2c\xfd\x8b\x7b\x77\xb5\x0f\xec\x5a\x68\x95\x27\x9e\x98\x39\x65\xf2\x94\xff\x65\xc6\xe3\xd8\xee\x28\x1f\x11\x69\xf9\x13\x40\x98\xc2\x81\x60\xee\x0a\xbe\x99\x2a\x84\xe9\x7b\x4a\x5f\x55\xd3\x85\x1f\x42\x50\x28\x65\xc8\xf2\xd9\xf9\x7b\x6b\x05\x66\x40\xa7\x42\x42\x4f\xc3\xab\x95\x62\x88\x2a\x8c\xf8\x32\x6d\x68\x13\xe1\xea\x91\xa6\x67\x95\x75\x7e\x4b\xb9\x37\x84\x75\x6a\x79\x03\x81\x93\x55\x5c\xff\x06\xee\xa0\x71\x34\xb6\x1a\xab\x74\x46\x99\xb5\x33\x8d\x82\x2e\x45\x66\x7a\x02\x91\xc0\x59\xc9\x5d\xfa\x7c\xd3\x10\xd2\x7b\x0d\x4b\x29\xf4\xdc\xc0\x14\xf2\x8d\xda\x7a\xe1\xd0\x24\xa1\x9d\xab\x90\x24\x95\x6b\x4c\xa4\xd3\xe9\x97\x84\xb9\x56\x49\x8c\xdd\x53\xcc\x90\xdb\x6b\xbd\x3f\xac\x96\xd7\xb7\x99\x95\x81\xc4\xa1\x07\xf7\x8f\xaf\x9b\x6a\x64\x45\xe9\xe5\xb6\xbc\x5f\x89\xee\x6e\xd1\x67\x7f\x4c\x69\x58\x44\xb6\x1f\x23\x07\x01\x13\x74\x4f\x99\xa3\x7b\x1a\x9a\x92\xd9\xdc\x66\xcb\x76\xae\x5c\xe8\x8a\x54\xda\x33\xe2\xb4\xf6\xee\xda\x38\xa7\x05\x69\x7f\x5e\xc1\x6d\x37\xa0\x15\xc6\x26\x31\x79\x9a\x44\xe1\x8c\x6a\xdc\xbb\xad\xa8\x3c\x90\x14\x93\xa6\xf2\x47\xdc\x69\xb5\x6c\xb3\x44\x45\x49\xdf\x54\xbd\x2c\xdf\xd4\xe5\xa0\x34\xc9\x23\x3b\x61\x9c\x34\xb6\xed\x69\x75\x9a\x5e\x24\x5b\x87\x12\xcd\x1b\x4a\xf7\xb2\x17\xe5\x69\xd6\xb3\x59\xcc\xbc\x12\xd2\x8d\xab\xb2\x72\xdf\xaf\x39\x49\x5f\x84\xb0\x94\xd8\x6a\xd8\x85\x1f\xa8\x0a\xdf\x0f\x7c\xc3\xe7\x68\x60\x93\x19\xdf\xf4\x7f\x46\x31\x4e\xb1\xa2\x1d\x5c\x84\xeb\x15\x04\x75\x5c\xac\x3e\x00\x67\x4f\xd0\x27\xb4\x92\x70\xc8\x63\x25\xe1\xc4\x23\x32\x80\x8d\x35\xec\x36\xe6\x7f\x0b\x14\xda\xba\xb5\xa6\x21\xf1\x74\x44\x08\xb1\x39\x8d\x14\x46\xe4\x0f\xab\xf4\x98\x49\xbe\x8d\x3a\x38\x5d\xa0\xf3\xcc\x33\x2e\xd0\x51\xea\xb8\x47\x75\x66\x1c\x66\x58\x0c\x83\xcf\x4a\x1c\x55\x05\x9d\x9e\xed\xdb\xb0\xc8\x69\x38\x04\xaf\xe4\x87\x63\x4b\xc7\xe7\x0d\x2f\x4f\x9f\x54\x49\x96\x6c\x1c\xdb\x83\x14\x2b\xce\xef\x77\xdd\x4e\xe5\xcf\xf1\x75\xcd\x0a\x94\x66\x23\x4b\xbd\x74\x28\x72\x79\x97\x54\x5e\xef\x52\x25\x9b\xb1\xb4\x64\x66\x7c\xd9\x87\x23\x71\x31\x8d\x6a\x45\xfd\xb4\x89\x05\xb0\x6b\x63\x8e\x8d\x04\x6c\x5f\x7a\x0e\x82\xaf\x7f\xdc\x21\x59\xa8\xcf\x93\xd4\x58\xca\xb3\x19\x35\xd0\xb7\xa6\xbe\x36\xfa\x56\xcd\xb3\xa6\xcc\xa1\x29\x83\x7f\x2e\x57\x82\x04\x91\xb3\x11\x7c\x53\xfb\xd4\xfc\xfe\x76\x77\x52\x14\x36\xeb\x9b\x42\x15\xc1\xee\x6a\x7a\x1b\x1c\x38\xa8\x52\x9e\x72\xe2\xe0\x45\x3a\x9a\xf3\x43\xf4\x81\xee\x1a\x07\x44\x48\x14\xac\xa9\x5d\x5f\xaa\x47\xc8\x47\x49\xba\x54\x33\x24\x8c\x63\x13\x96\x9e\x79\xb9\xea\x60\x66\xde\x53\xaa\xaf\x87\xc8\x7b\x12\x5e\x60\xff\xb9\x9e\x29\x4c\xd7\xe4\x56\x1f\x27\xeb\x8a\x4f\x63\x5d\xb1\x55\x92\x37\x00\x27\x15\xc6\x1d\x42\x06\x7c\xad\x22\xf1\x6e\x9c\x86\x04\x5f\xc0\x44\x9e\xf7\x82\x0b\x5f\x79\x9c\x0a\x1d\x58\x4a\x37\x75\xab\xe8\xbd\xe9\x7f\xf6\x29\x25\x64\xd3\x1b\x45\x49\xe4\xe9\x60\x5c\x82\x84\xc5\xe7\xf9\xa6\x29\x06\x1f\xd8\x51\xde\x4d\x97\x34\xc6\xee\xba\xc2\xd8\x5d\x6f\xec\x2a\x8e\x0d\xe0\xe0\xe8\x42\xd8\xda\xd1\x0c\x5c\xf4\x83\x40\x30\x5d\x73\xa1\xc1\x8a\x49\x7c\xa4\xcf\x54\x6c\xf4\x2b\x42\xcb\x56\xcf\xc7\xf4\xec\xc8\x24\xbd\x0a\x5f\x3f\xf3\xf6\x88\x8c\xc8\xe3\xbe\x95\x2e\x27\x25\x98\x9e\x46\x2d\x54\x65\x3f\x37\x2f\xca\xbd\xbb\xf6\xb6\x4d\xbf\xaf\xd8\x59\x81\xe7\x82\x3f\xca\xd7\x2e\x27\x60\xa8\x18\x9b\xab\xe6\x39\x46\x6b\xf2\x4d\x25\x27\xba\x9a\x2e\xcd\x96\xc1\x2a\xd3\xd2\x81\x4b\x42\x73\x32\xca\x3f\xb4\x9c\xd8\xdd\x79\x7f\xc0\x0c\xed\xc8\x32\xb4\x5d\xda\xc4\x55\x2c\xbe\x8d\xd6\x06\x32\xfb\x28\x53\x88\xd7\x22\x8f\x9a\xa4\xd9\x48\xfa\xfc\x60\x59\xcf\x6b\x76\x92\xf3\xbe\xb9\x20\x8d\xa3\xa2\x3b\xc9\xd2\x19\x85\x94\xd3\xeb\xfa\x2d\xcd\xc2\x76\x45\xc1\x38\xcc\xd8\x64\xc5\xd0\x46\xc0\xc1\x09\x21\x4b\x69\x64\xe4\x94\x2f\x1f\xcc\xd5\xc3\xca\xc1\x15\x57\x40\x9a\x0a\xba\x99\x2d\x86\x99\x40\x3b\x05\x04\xd9\x72\xbd\xd5\x5b\xd6\x36\x27\x13\x9e\x5f\x68\x9b\x41\x16\x81\x92\xdc\x92\x75\x74\x60\x07\x97\x8f\xe2\x2a\x06\xec\xd7\x4d\xe5\x7c\x73\x23\xf4\x43\x3e\x68\x3b\xcb\xc9\x0b\x98\x93\x9f\x04\x4a\x32\x8b\x09\x81\xc4\x1a\x95\x2f\x23\xbd\x0e\xa5\x91\xe7\x6b\x5a\x5e\x40\x36\x1e\x9d\x7a\x57\xea\x8f\x71\x22\xa1\xc2\x7b\x13\x73\x87\xa3\x8f\xfb\x5a\xb0\x97\x2f\x29\x0f\xae\x9f\x66\xa1\x54\xf2\x2a\x6d\x50\x62\xbf\x9d\xa0\x7b\xd4\x2f\xf2\x39\xd5\xf6\xc0\x7a\x56\x0e\x17\xe4\x4f\xd0\x37\x02\xdf\x7a\xf1\x06\xbc\x07\x3c\xd2\xa9\x5a\x9a\xe6\xf9\x85\x76\xcf\x52\x70\x12\x2d\x8b\x9b\x2a\x42\x3b\x4a\x53\xf5\x5c\x55\x89\x26\xca\x1e\xf6\x1e\xcc\xdc\x1a\xf5\xe1\xc2\x1c\xb0\x02\x82\x20\xd3\x7d\x0f\xc1\xc9\x8a\x92\xfc\x6d\x1d\xd1\x3c\xb8\xe6\x81\x64\x3b\x50\x37\x90\x7c\x16\x0d\x8b\x28\xbf\xab\x32\xcf\xdb\x9a\x20\xea\x8e\x26\x7c\xdc\xb2\xf6\x69\xac\x1a\x03\x9b\xd8\xa4\xb0\xe1\x10\x44\xf1\xd8\x12\xa7\xa7\x3e\x3a\xb9\x3c\xf5\x88\x00\x26\xb4\x15\xa2\xe5\x87\x3d\x02\x7f\x6c\xc8\x74\xb3\x88\x0d\x59\x78\xa7\x8a\xe9\x15\x32\x2b\x42\x37\x4d\xa8\x99\x83\x63\x85\x48\x68\x62\xd7\x6f\x0a\x26\xd0\xb8\x43\xdb\xdb\xd5\xbe\x54\x21\x4c\xa5\x9c\x43\x33\xe1\xaa\x76\xeb\x4b\x5f\x67\xf3\xfc\xad\xc0\x9b\xea\x6f\xd5\x9c\x87\x03\xbb\x5e\x6a\xaf\x44\xa2\x9d\x0f\x8f\x08\xfc\x97\x7c\xdd\x80\xa8\x2a\x43\xc2\x55\xd5\xf4\xf1\x7d\xac\x7f\x81\xf7\x34\xb4\x40\x99\xf1\x38\x4b\x0f\x46\x23\x69\x0f\x46\x76\x04\xed\xc1\x7c\x3d\x55\x8c\x57\x51\xc1\x48\x7e\xd5\xe5\x2d\xef\x7e\x58\x6b\x17\xde\x54\x0a\xb1\xe5\x79\x9d\x6f\x53\x60\xb2\x40\xc9\x63\x9f\xc7\x57\x70\xef\x36\x4d\x19\x30\xc8\x1b\x53\xa5\x7e\xc8\x6d\xf7\xdc\x7b\x5c\x9b\x40\x04\xa4\xa3\x68\x32\xe2\xf0\x08\xa1\x02\x42\x08\xbe\x56\x20\xc0\xc2\xa6\xbd\x34\x33\x49\xa4\xd8\xbb\x2e\x28\xbd\xe1\x2a\x1b\x75\xcf\x66\x4f\x2b\x99\x84\xab\x14\xd0\xc1\x86\x7e\x4f\xb5\x1b\xbd\x05\x43\x85\x5e\xd7\xdb\x28\x4e\x3b\x13\x56\xee\x14\x06\xa7\x53\x86\x00\x27\xcd\x61\x2a\x7a\x23\x69\xf6\x3a\xef\x47\x55\x1b\x9c\x67\x2b\x36\xa4\xf8\x09\x15\xba\x8f\xe1\xcc\x4b\xdf\x5f\xb9\x80\x04\xcb\xda\x7a\x71\x91\x5b\x19\x0e\x53\x56\x1b\xc3\x78\x0e\x3b\x1b\x01\x01\x2a\x1d\xc2\x7d\x40\x23\x25\x82\xbe\xe4\x87\xe1\x5f\xee\x63\x11\xc3\x00\x3c\xb1\xd6\xfa\xda\x57\xb8\xc2\x71\x6c\xfa\x19\x85\xd8\x4c\xf2\xa8\x67\x95\x93\x83\x34\xd9\x51\x9d\x33\x3b\xea\x4a\x88\x99\x4d\xb3\x81\x49\x7c\x7b\x82\x34\x40\x28\x76\xe0\x0b\xaa\x08\x95\xdb\x1e\x53\x76\x38\xe4\x9c\xeb\xca\xba\xa0\x95\x87\x4e\xa9\xec\xe9\x97\xed\x0a\x01\x65\x05\x42\xa8\xb4\xe0\xd8\x2d\x46\xd2\x65\x76\xcd\x43\x88\x7f\xa5\xe3\xcb\x65\x6f\x00\xf3\x26\xe4\xfa\xe5\xe0\x4a\x99\xc0\x37\x63\x66\x26\xe9\xa5\xa3\x78\x15\x39\x65\x27\x14\xe3\xc8\x40\x2e\xe8\x5e\xa1\xbb\xb5\xf2\x47\x19\xee\x66\xe9\x80\x94\x17\x5b\x8e\xea\xe7\x9c\x42\x56\x9d\x53\x6f\xb4\x5a\x70\x32\x81\xf5\xbf\xe9\x99\x9c\xce\xb2\x13\xfd\xbd\x53\x91\xd1\x50\x75\x85\xcb\x0d\xe5\xc8\xe7\xda\x23\x02\x79\x29\xc2\xac\x13\x28\xd9\x3b\x0d\x69\x87\x40\xbb\xa9\xe4\xdc\x43\x33\x1a\x9b\x68\x90\x40\x79\x58\xa8\x3f\x68\x75\x61\x8b\xfd\x56\x85\x14\x44\x09\x09\xfd\x96\xf3\xdd\xba\x36\xb1\xa6\x18\x92\xc5\x76\x9d\x7e\xcf\x0b\x92\xe8\x0e\xa1\x99\xe1\x5c\x7d\x88\x09\x13\x9e\xc7\x27\x3c\xf6\x7d\x94\xab\x16\x7f\xc7\x09\xb9\x67\x8f\xfb\x5b\x71\x45\xc3\x74\x34\xa6\x6a\xed\xc0\xcb\x4f\xfc\xee\x63\x68\xf3\xe1\x9b\x5a\x37\xe6\xb3\x14\x0c\x2c\xb9\x93\xc0\xb1\x34\xab\x7a\x49\x43\xb3\x79\x6c\x8d\x78\xc7\xbc\x46\x83\x0a\x7e\xbe\xce\xb3\x38\xdf\x36\x71\x6c\x1c\x4e\x53\x78\x08\xcb\x77\x12\x82\xc2\x86\x56\xbb\xd8\x1a\x7f\x4a\x61\x01\x7f\x1c\x78\xe0\xc8\xc7\xce\x75\xcd\xd2\x49\x21\xc8\x37\xec\xfd\x75\xdd\x00\x38\x43\xab\x1e\x38\xac\x1b\x2a\x2c\xeb\x66\x26\x21\x82\xfc\xf2\x39\x10\x1a\xfe\x09\x59\x1f\xbe\x6e\x00\xc9\xf5\x63\xf3\x85\x96\xcf\x15\x7f\xa0\x83\xa4\x0f\x6a\x4d\x44\x07\x76\xb5\xd3\x28\x56\x4c\x76\x6f\xeb\xee\xf3\xb7\xfd\x42\xc9\xa2\x7c\x29\x5e\x9d\xf1\xf8\x26\xd4\x6d\x70\xd4\x7c\xa4\x2a\x6e\xeb\x68\x76\x90\x72\xd9\xb0\xa5\x98\x3c\x7f\x42\xd8\x5b\xc9\x81\x3f\xe5\x97\x72\xb9\x32\x0a\xc2\x99\xed\xf0\xd0\x9e\x6b\xba\xff\xe9\x74\xe0\xbb\xef\xae\xe8\xb6\xda\x93\x2a\x2f\xf5\x56\xa0\x8e\xbc\xdf\x9b\x2a\xe2\x9f\x33\xb0\xf9\x28\x2a\xff\x87\x5a\x44\x35\xbf\xbf\xdd\x33\xbe\x75\xdf\x59\x8e\xd2\x08\x23\x1d\x0b\x40\x08\xec\xfc\x9d\x40\x94\xf9\xbd\xd7\x6d\x62\xea\x5a\x11\xf8\x12\x7d\x8d\x43\x4c\x39\x5e\xae\xeb\x1a\x3c\x34\x19\xdb\x2c\x4a\xb3\xa8\x58\x25\x26\x1f\xd0\x0a\x9c\x26\x93\xc2\xd7\x7a\x88\x4c\x5e\x44\x03\x83\xba\xbd\x03\x02\xa3\x88\xc5\xd7\xae\xe1\x79\x29\x49\x57\x48\xff\x43\x92\xd4\x2d\xc7\x45\x3a\x0b\xca\x54\xd7\xef\xe0\x39\x65\xd8\x55\x02\x25\xcd\xe3\x20\xcf\x42\x6b\x31\xa3\x18\xf1\x06\xe7\x14\x23\x6c\x3e\x34\x99\x1d\xa6\x71\xcf\x66\x68\x85\xe7\x66\x87\x6a\xe3\x43\xf9\x7b\xcc\xa1\x1f\x28\x0d\xcb\x73\xb5\xfe\x94\x7d\x8e\x14\xc4\xc7\x26\x49\x5a\x0c\xa3\x64\xb0\x43\xa9\x61\x9c\x26\xcf\x40\x12\xbf\x2d\xcd\x53\xa5\x38\xce\x5b\xae\x07\xf9\x4f\x68\xe5\x60\xe6\x0e\x2b\x17\xf2\x3a\xea\x4f\x42\x6f\xe4\xf8\x68\xc7\x11\xc8\x22\x68\x53\xa0\xf9\x7f\x1d\xab\x87\x6f\xdc\x38\x27\xa1\x31\x48\x91\x62\x1b\x5c\x0a\xb4\x98\xe3\x4f\x69\x26\xa5\x0e\xf8\xa4\x4a\xac\x31\xc7\x6c\x3e\xa7\xfa\xb2\xe9\xc1\x10\x5a\xef\x80\x49\x44\xe6\xff\xc6\xd4\x93\xb1\xe0\x24\x40\x30\x7a\x5b\x37\x0f\xda\xe8\x55\x92\x57\x52\xb8\xa4\xdb\x1a\x97\x74\x5b\x67\x61\xca\xf1\xcc\x1f\xa0\x9f\x80\xfb\x0e\xef\x12\x83\x3b\x03\x9e\x48\x51\xe8\xf1\xfc\x5a\xbf\xa7\x32\x06\x47\xe1\x9d\x38\x4d\x5d\xdf\xfd\x7f\x81\x5a\x59\x11\x13\x1d\x9b\xfa\xd4\xa1\x76\x3f\xf3\xb1\x4d\x48\x28\xe3\x25\xce\x10\x1c\xd6\xe9\x82\x37\x75\x8e\x44\xc0\x05\xf0\x53\xaf\x06\x4a\xc8\x7c\x6b\x47\xa5\x33\x2e\x90\x83\x05\xcf\x44\xe3\xf8\x57\x4c\x11\x0e\xb7\x95\xdb\x05\x6b\x0e\xba\x3b\xf0\x02\x81\x6f\x46\x46\xfc\x2e\x3d\x2a\x5e\x14\xb2\x46\x48\x2e\x5e\x9a\x2a\x2d\xef\x5b\x4d\xc2\x37\xa6\xd7\x83\xeb\x70\x40\x20\x20\x1b\x0a\x02\xb2\x51\x33\x34\xff\xa0\x1d\x47\x49\xcf\x26\x39\x93\xc3\x20\x93\xb5\x15\xbe\x1f\xc2\xac\x35\xa5\xee\x7b\x53\x37\x3b\x1c\x71\xec\x8c\xcb\x51\xcf\xa6\xa1\xc9\x73\x5b\x14\x0c\x24\x75\xda\xda\x0e\xc2\xb1\xae\xe0\x17\x2f\xec\xdd\xaf\xfd\x0b\xe4\xef\xe1\x9c\xbe\x87\x9f\x40\x81\xfb\x5a\xf0\x2b\xd5\xf2\xd7\xe2\xde\x45\x09\x10\x1f\xa3\xed\x82\xb2\xc1\x74\xaa\x98\x94\xc1\x2f\xe0\x0a\x7c\x7b\x77\xb1\xab\x8b\x11\x96\xfa\xae\x42\x10\x7c\x32\xf5\xc4\x45\xc7\x69\xea\xe0\x73\x1f\xa3\x9d\x8a\xd8\xf8\x22\x78\x09\xf1\xe6\x97\xb5\x2f\xff\x21\x0c\x07\x23\x87\x75\x5c\xbf\x46\xd2\x98\x72\x74\xd3\x1a\xd5\x20\x5e\x9c\xc9\xb7\x15\x1d\xa4\xc9\xf3\x34\x8c\x4c\x21\x5b\x07\x46\xe2\x47\x53\x45\x54\xfd\x23\x77\x04\xf6\xa3\xd0\xf9\xd6\xf0\xa9\x50\xf6\xe4\x6b\x55\xbd\x09\xe3\x34\xb7\xf1\xea\x9c\x6f\xc4\xb8\x4b\x8e\x04\x5b\xd0\x40\x69\x27\xa2\x54\x8e\xd5\x36\x07\x9c\xad\x34\xaa\x37\x16\xbe\xd2\x11\x74\xa4\xb8\x73\x3b\x50\x20\x75\x61\x73\x13\x31\x12\x2f\x07\x65\xb8\xad\xa7\xc2\xba\xca\x37\xaa\x5b\xe1\x73\x5f\xf9\xf5\xc5\xaf\x7c\x69\xe1\xef\x96\x8f\x8a\xac\xcc\x1d\xad\x68\x72\x81\xbc\x41\x24\xb2\xbf\x13\xb4\x9e\x79\x86\xed\xe1\x19\x9a\x4d\x24\x7e\xae\x4d\xbd\xc4\xf4\xa9\xa0\x9c\x0d\x26\x82\x86\x01\xe5\x5d\x05\x27\x15\x21\xe6\x39\xf8\xf8\x78\xe9\x0a\x74\xef\x6d\x6a\x46\x45\x60\x7b\x14\x27\x15\xd6\x15\x93\x83\xe3\xd8\x3a\x8c\x79\x66\x98\x4d\xa0\x5a\x37\xd1\x8a\x2e\x64\x3d\x2a\x53\x0a\x8d\x22\xb8\x12\x6f\x13\x72\x40\x7e\x90\xb2\x91\x78\xc3\x5f\x60\x85\xe3\xe6\xde\x54\x69\x5d\xbf\x4b\x2b\x16\x56\x78\xb6\x83\x31\x67\x96\xc0\x8e\x5f\xbf\x3f\x0b\x28\xeb\x23\xc5\x2d\x9f\xd0\x4a\x57\x92\x4d\x4d\x5e\x3c\x38\x98\x90\xc3\xb4\xa6\x9c\x56\x4b\xf9\x6e\xfc\x0f\x53\x0d\xf5\x5b\x36\x08\x57\xa4\x5c\x4f\xe3\x26\x02\x0c\x75\xc9\xca\xf9\xb6\x8d\x8a\xa1\xcd\x66\xcb\x21\x15\x1d\xa9\x96\x83\x6b\x33\x49\x11\x90\x06\x87\x68\x0b\x0b\x05\xc1\xd3\x9a\x65\x88\x4a\x22\x71\xb4\x04\x05\x40\xd1\xd0\xf7\x36\xf5\x7a\x93\x62\x57\x19\x9b\x4e\xc6\x8a\xa6\x19\x89\x20\xbe\xd6\x69\xff\x34\xe9\x3d\xea\x41\x1d\x6f\xd2\x38\xf3\x00\x62\x6a\x38\x84\xa6\x89\x75\x08\xd9\x72\x61\xe0\x44\x9f\x05\xd2\x9d\x19\x55\x03\xef\x8f\x61\xe9\xb2\x4a\x3f\x32\x70\x02\x56\x28\x5f\x44\x16\x5f\x4b\xa5\xbd\x68\x21\x89\x7a\x74\xb9\xa8\x9d\x4c\x9c\xa7\x25\x6a\xad\x3d\xa1\x41\x95\x43\x43\xba\xe1\x2d\xa7\x84\x7e\x08\xd3\xc2\x37\x9a\x81\x3c\xcd\x58\xfb\x9c\x55\x4d\xc8\x3c\x88\xc2\x49\x83\x76\x58\xdf\x44\xb1\x84\x88\xbc\xdb\x95\x0a\xf5\x6b\x58\xf6\x88\x7d\x8f\x34\x15\xd8\x56\xd2\x6c\xc9\xf1\x96\x62\xdb\x5e\x56\xf4\x50\xd0\x84\xc3\xef\x5f\x56\x8e\xc5\xc8\x9a\xbc\x74\x2c\xb6\x6b\xdd\xc6\x13\x81\xea\xfd\xf8\x78\xaa\xba\x42\x58\x49\x07\x0e\xfb\xfd\xa9\x2f\xee\x5c\x25\x37\x55\x69\xf3\x89\xec\xe3\x89\xa9\x62\xd2\x01\xc4\x54\xc1\x4a\x41\xdf\x26\x18\xe9\xcd\x24\x7c\xc4\x63\x97\x8f\x6d\x18\x99\x38\x7a\x55\x02\x37\x9c\x04\xc0\x63\xf1\xb5\xaf\x85\x10\xad\x88\xe9\xa2\x7e\xfc\x92\xe3\xeb\x2e\x1f\x54\x78\xbc\x2b\x79\x5c\x57\xd8\x95\x62\xb9\x77\x09\xbf\x8f\xb9\xe5\x7f\x08\x7c\xaf\xe1\xeb\x53\xd5\x75\xf2\x8b\x40\xe9\xd1\xfd\x02\xc3\xe3\xc4\xe4\xf6\xec\x71\x7c\xe9\x2d\xff\xff\xeb\xec\x3f\xf4\x9e\x85\x89\x57\x4c\x06\xec\x00\x46\xfb\xaa\x22\x71\xb8\xea\x55\xb0\x6c\x5e\x88\x2f\xf8\x12\x7b\x14\xef\x4e\x95\x7b\xf1\xae\x57\x11\xb6\xe1\xa4\x8c\x3e\x66\x55\x5d\xe0\x2a\x0e\x27\x21\x7e\xf1\xb5\xae\x37\xe8\x79\xc5\x14\x35\x64\x2e\xc7\x99\xed\xd9\xd0\xe6\x79\x0a\xc4\x08\x0e\x0d\x80\xe4\xf8\x3a\xd0\x91\xa1\xed\xfd\x32\x75\x4c\x07\x9b\xb3\xb1\x49\x22\x14\xe5\x61\x9e\x38\xef\x2e\x37\xe5\xd7\x73\x1b\x70\xad\xb8\xfa\xc5\xf6\x60\x62\x32\x93\x14\xd6\xf6\x80\x60\x84\x85\x7c\x6d\xaa\x9c\xf6\x8f\x30\x5f\xb0\x39\x88\x27\xa4\x85\x4d\x91\x2b\xd8\x3c\x8f\xd2\x84\xc8\x15\x24\xaa\xa3\x2f\xe4\x1b\xda\xbf\x08\xdf\xb7\x75\x3c\x69\x27\x33\x88\x89\x2a\x5d\xb9\xe1\x39\x7f\xfa\xa9\x0a\xe7\x26\x4b\xd2\x18\x46\x04\xfb\xe5\x8a\x66\x3a\xbc\x52\xcb\x5f\xbd\xb8\xf8\x79\x39\xb8\xe9\x43\xae\xf7\xd2\xf7\x61\x2a\xf8\x5f\x62\x8a\x28\x5c\x02\x94\x12\x6f\xfc\x9e\x42\xe2\xbe\xd7\xa4\xeb\x5f\x06\xfe\x6e\x5f\x22\x23\xf6\x3b\x2a\x3b\xf6\x3b\x0d\x6d\x8b\xed\x61\x34\x18\xda\x0c\x4d\x48\xf0\xba\x6e\xe2\x8c\xe3\x1b\x65\xf4\xc7\x61\x17\x25\x61\xf8\x43\x87\xe8\x71\xf8\xda\x13\x74\x82\xf2\x96\xf3\x27\x4e\x57\xce\x91\x64\x33\x84\x0b\xe8\xc3\x43\x53\x1f\x35\x53\x8c\xbd\xcc\xc0\xa8\x72\x9a\xb1\x07\xde\x50\x55\x8d\x37\x02\xff\x30\x45\x3a\xe6\x7c\xba\xf3\x93\x5d\x29\x81\xa5\xda\x51\x4e\xfa\xa0\x56\xf9\x7d\x7e\xa1\x1d\xa7\xc9\x60\x4e\x73\xbd\x80\x80\xd5\x01\x0d\x5c\x3a\x1f\x31\x3e\x02\xe4\x07\x69\xb9\xc0\x67\x38\xe4\x8a\xfb\x23\x93\xb0\xa2\x82\x50\x53\xfb\x10\x6d\x7b\x47\x65\xbf\x5b\x6b\x9b\x3b\xe7\xe6\xf7\xb7\xd3\x65\x9b\x09\x14\x16\x76\x00\x79\x3f\x9d\x03\xd4\xd1\x41\x12\x2d\xcd\xf8\xaa\xfc\xd6\x35\x9f\xc0\xda\xa0\xca\x25\xed\x87\x2f\x3e\x06\xa9\x1a\xfa\x91\x28\x29\x0d\x52\x8c\x4e\x26\x8c\x98\xb4\x40\xd3\x30\x23\xc5\x75\x55\xa5\xe9\x3e\xa8\xad\x93\xfd\x2f\xb4\x7b\x26\x5e\x62\x85\x16\xf8\x53\x4c\x1b\xcd\x37\xea\xc4\x0c\x4d\x1c\x33\xdf\x1e\xd6\xdd\x21\x55\x56\xdc\x80\x61\x15\x57\xb1\x1c\x50\xbe\x86\x35\x13\x16\x04\xdf\x23\x72\xa1\x49\x9c\x79\x5f\x3b\x4f\xcc\x18\xf5\x1d\xd7\x8c\x52\xce\xb9\x34\xa3\x78\x16\x8f\x51\x94\xd8\x6d\x9a\xd5\x10\xcf\x2d\xa1\x00\xa6\xce\x05\x09\xbe\xf7\x1c\x22\xb3\xca\x59\x7d\xc9\x01\xc4\x7d\x55\x67\xc5\xc6\xf1\x4e\x45\x5e\xfe\x01\xad\x74\xd6\x6f\x99\x2a\x25\xb9\xab\xe4\xc2\x01\xab\x74\x11\x4e\xb5\x90\x9d\x50\xac\x06\xbb\xc8\xa2\x06\x02\x2c\x69\x7d\xed\x2b\x4e\x63\xbb\xf5\xe2\xa2\x6f\x47\x70\x10\x9d\xdb\x34\xb4\x02\xac\x6f\x39\x46\xa4\xd6\x1a\x0d\x8d\xd0\xa9\xd2\x98\x3b\x06\xa9\x03\xbb\x5c\x70\xd7\x44\xb4\x52\x64\x70\x25\x32\xd5\xb1\xad\x85\x5b\xcf\x37\x51\x12\xa7\x07\x57\x07\x55\x86\xa3\x73\xea\x44\x3a\x17\x3c\x10\x95\xa7\x4e\xff\x1f\xb5\xff\xf1\x03\xf4\x64\x42\x95\xe2\x39\x13\xfe\x1e\x02\x6b\xc9\x38\xb9\x0f\xcf\x7f\x76\x8d\x06\x05\x69\x86\x3b\xe4\x69\xc2\x94\x7f\xae\xa3\xb8\x6d\x1e\x23\x84\xb6\x2b\xa5\xef\x15\xe0\xe0\xfd\xc6\xbe\xc1\x3c\x1a\x24\x42\x8a\x0c\x9b\xc1\x00\x43\x29\x60\xd0\x4f\x62\xbe\x4f\xe9\x56\x04\x1b\x9a\x49\x6e\x1f\x05\x36\x47\x78\xc0\xe8\x8f\xa5\xb3\x55\x61\x0c\x67\x10\x25\xe2\xc9\x8f\xc2\xc4\x20\x14\xfa\x08\xed\xb5\x15\x9a\x10\x78\xd9\x87\x55\xcb\xec\x3d\x45\x0e\x7c\x19\xbe\x30\x7f\x9c\x34\x37\x58\xf9\x12\xe6\x1a\xf8\x10\x9c\x6e\x2c\xfa\x18\x28\xe3\xb3\xa1\x44\xaf\xbb\x51\x3a\xc8\xcc\xb8\x34\xfb\x58\xfd\xa8\x38\x71\x44\xc7\x37\x4d\xae\x69\x3e\x49\xba\x51\x86\x16\x47\x2e\x7e\x69\x2c\xd3\x05\x97\x6b\x0d\xd3\xa4\xb0\xa3\x71\x9a\x99\x6c\x75\x56\xab\x37\x94\x2f\xb7\x01\x12\x75\x9c\xef\x27\x14\xf5\xc3\xcd\xe9\x13\x9a\xcd\x40\xf0\x59\x7b\xf6\x34\x77\x8b\x3d\xa2\x2c\x4e\x3e\x7c\xb0\xb4\x7e\x42\x18\x5c\x6e\x10\x91\x5f\x72\x98\xca\x97\x1c\x96\x9f\xa6\x08\x51\x30\xc0\x71\x8e\xed\xd8\x97\x6e\x03\x45\x58\xf5\xed\x69\x19\x8b\x55\x14\x2c\xf9\x1f\x6a\x67\xfc\xde\x5d\xed\xc9\xb8\xc7\xb9\x5f\x25\x85\xa8\x6a\xe3\xeb\x4d\x5a\xed\x85\xcd\x0b\x45\x6c\xb4\x81\x90\x54\xad\x9c\xbd\xae\xc4\xe5\xcf\xc3\x77\xab\xf5\x9a\x22\x2a\x58\xce\x55\x12\xba\xe5\x9f\x4a\xa2\x57\xb5\x5e\xa4\x09\x15\xd1\x48\x74\x52\x9a\xcf\x69\x80\x34\xb1\x1d\xc6\xe4\x68\xa5\x8d\x61\xea\xbb\x20\xee\x6b\x7c\xc8\xd5\x40\x35\x8d\x1e\x25\xfb\x84\xc5\x79\x3e\x50\x85\x44\x8c\x2f\x5e\xf0\xc1\xaa\xa0\xb7\x7a\xb8\xcc\xda\xb1\x64\xce\x99\xa2\x9c\xb6\xb3\xd0\x95\xfb\x5c\x49\x96\xca\xc9\xeb\x86\xc6\x9d\x99\xaf\xe9\xda\x88\x06\xa9\x30\x56\xc1\x37\x19\x73\x98\xc8\x37\x95\x06\xa2\x01\x0b\xb6\xbb\xc8\xd4\x7d\xe8\xc2\xa7\xb2\xa0\xac\x0c\x6d\x69\x3f\x67\x35\xd3\x5f\xcb\xe9\x57\xa1\xb9\xcd\xe9\x7b\x79\x02\xb9\x9f\x36\x11\xe5\x7d\xbe\x9d\xa7\x83\x81\xee\x88\x46\x05\x45\xd8\xcb\x1a\x9a\x1f\x7b\xa6\x30\x9f\x4e\x31\x22\x00\x9c\xcc\xc4\xe3\xe1\xac\x0f\xcd\x4f\x50\xb1\x07\x27\x15\x3c\x0f\xf8\xec\x5c\x49\x44\xe0\xb2\xa5\xf3\x94\x6a\x02\x40\x1d\x96\x02\xd5\x72\x71\xba\x42\x59\xe9\x47\xe2\x4b\x81\x48\x90\x2f\xad\x03\xe3\x32\x3b\x32\x4e\x36\x52\xd4\xaa\x69\x55\x48\xd7\x88\x2f\x5f\xf4\xd3\xcc\x66\x93\x24\xf9\x7f\x48\xfb\xd7\x18\x49\xae\x33\x3d\x10\xee\xce\xaa\xea\x6e\x36\x2f\x62\x4b\x94\x34\x63\x7f\xf6\xe4\xcc\x08\xa6\x0c\xc8\xfc\xc6\x9f\xfd\xe3\x83\xb1\xd8\xc8\xad\x2a\x89\xd3\x85\x51\xb1\x51\xdd\x43\x8e\x89\x5d\x80\xa7\x32\x4f\x65\x06\x2b\x32\x22\x15\x11\x59\xc5\x22\xfc\xc3\x30\x16\x8b\xfd\xb1\xf0\xae\xe1\x5d\xd8\x58\xc3\xc0\x8e\xc7\x0b\xc3\x6b\xc3\xf6\xec\x78\x76\xbc\x9e\xb1\xb2\x28\xcd\x8c\x24\xcb\x23\x51\x12\x45\x89\xe2\x45\x7d\x6f\xf6\xfd\x7e\xbf\x2d\xe2\x3c\xef\x7b\xce\x13\x95\xc1\xc5\x02\xfb\x8b\x11\xec\xca\xcc\xb8\x9c\xcb\x7b\x79\x2e\xe2\x06\xb3\xcc\xc6\x0f\xca\x07\x78\xbb\x86\x5e\x4b\x45\xcf\x16\x7d\x11\x70\xa9\xe5\x78\x6a\xd7\xfb\x92\x5b\xb0\xf2\x78\x75\xec\x2d\xc1\x98\x67\xe6\x6d\x5f\x02\x2b\xe4\xfe\x54\xc9\x6f\x61\xa1\xfd\x7a\x16\xa7\x65\xdd\x3a\xa2\x9a\x2f\xaa\x70\x16\x5a\xcb\x7b\xab\x05\xf0\xd1\x03\x32\xfd\x36\x6b\x6b\x59\xde\x73\x02\xa2\xe5\xd6\x0c\x39\xda\x8b\xed\x08\xf2\x95\x3f\xc1\x25\xe0\x91\x36\x4a\x09\xad\x9a\xee\xfa\x20\x03\x1e\xc5\x17\x1f\x3c\x21\xfd\x63\xd2\x3e\x4f\x5d\x40\xb8\x19\x8b\x46\x34\x02\xa0\x3b\x93\x50\x31\xbd\x13\x71\x0c\x95\xac\xe3\xb9\x60\x76\xa1\x07\xaa\x05\x7d\x22\x71\x37\x69\xbd\x2d\xb6\xd7\x62\x24\xc3\x9e\xbf\x16\x92\x8d\x4b\x53\xe3\x7e\xf1\x48\x3b\x8f\x37\x62\x9b\x9b\x56\xdd\x3d\x97\xe8\x58\xd3\x54\xe1\x2a\xab\x8d\xbb\xeb\xe3\x51\x2b\x34\xd0\xce\x13\x6f\x73\x9a\x87\xe3\x98\x01\x26\x2f\x6a\xa9\xad\xf0\x02\xe5\x64\xfb\x19\xb2\x34\x49\x8c\x6a\x36\x63\xf1\x3d\xca\x3a\x6d\x47\x1b\x0a\x79\xcb\xed\x55\x5b\x8d\xdb\xb9\x10\x3a\x9d\x45\x5c\xe1\x57\x53\xbf\x4d\x1d\x73\xfb\x36\x0a\xb0\xbb\x41\xc3\x52\x22\x4d\xcd\x59\xb3\x14\x42\xbb\x0a\xb2\xb6\xbc\x1f\xd4\xf7\xa3\xa0\x00\xba\x6a\xd2\x75\x11\xae\x43\x3c\x7c\xd7\x2d\xc9\x58\x0c\x1f\xbb\x02\x88\x4c\x4b\xc4\x0e\xda\x0f\x20\xb5\xb2\xa3\x28\xa3\x22\x8e\x91\xed\x4b\x9f\x64\x00\x52\x21\xff\x40\x34\x26\xbe\x76\x88\x3f\xf7\x6e\x53\x2f\xf1\xd6\x24\x94\x32\x1f\xba\x1b\x45\xc0\xda\xc2\x46\x8c\xbb\x9e\xeb\x10\x04\xf0\xc0\x94\x4b\xc4\xd2\x52\x35\x47\xe2\x9e\xd9\x88\xd5\x74\x0f\x4b\xce\xf1\x88\x1a\xf5\x8d\x1e\x3b\x87\xdb\xb9\x1d\x65\x79\xd9\x22\x55\xb4\x77\xb9\x0a\xfb\x6e\x6d\xe1\x88\x6d\xf9\xa4\xbb\x77\x51\xae\x71\x9b\x8f\x8f\xb6\x0f\x2e\xd7\xcc\x3f\x88\xd2\xaa\x82\x89\xdf\x8f\xa8\x7d\x02\x91\x5d\x62\xad\x28\x8e\x46\x50\x59\xf2\x2f\x6e\x9d\x40\x09\xe0\x87\xe4\x12\x7d\x81\xd2\x63\x58\x7c\x15\xf1\x6a\x62\xf7\x05\x5c\xb5\xa8\x51\xa3\xf4\x2d\x4d\x70\x11\xe5\xc1\xab\x05\xd2\xe7\xa8\x8b\x9a\xbd\x5c\xc2\xca\xbc\x47\x97\xb8\x87\x27\x7e\x36\x11\x19\xdd\x30\xff\x36\xb1\x06\xfc\xdb\xa5\x25\x6f\x35\xe1\x6e\x18\x91\x18\x7a\x92\xda\x48\x6c\xc2\xda\x17\x03\xdb\xeb\x29\x27\x9d\x56\xd3\x17\x7d\xfd\x77\x67\xc1\x50\x77\xd3\x2a\xae\x49\xac\x36\xce\x54\xd8\x22\x94\xe3\x2e\x47\xac\x4f\xd5\x2d\xe3\x6e\x41\x1c\x28\x44\xc3\x3a\xdb\xc2\x72\x96\xc7\x5d\x83\x6f\x54\x08\x91\xbb\x73\x8d\x22\xc2\x9d\x67\xc9\xd6\x70\x14\x77\x5b\x8c\x2f\xfb\x07\x18\x3a\x72\x32\xb5\x0f\x2c\x1e\x69\x77\xf3\x71\x31\x70\xad\x1f\x4c\x06\x0c\x15\x5f\x59\x5a\x50\xc7\x8c\xa0\xa9\x0f\xda\x0b\xed\x57\x88\xb4\x54\x2e\x5c\x2b\x6c\x36\xb5\xc3\xd8\xea\x8a\xa5\xb4\x63\xe6\x20\x4f\xd7\x9c\x00\x9a\xea\x5a\xd5\xdb\x85\xe2\xda\x77\x30\xd7\xe5\x84\x3a\x07\xe3\x14\x22\x68\x43\x9b\x96\x8e\x70\xed\xaf\xc7\x6f\x12\xa8\x40\x0b\xf9\x9a\xca\x43\x5d\x93\xdb\x27\x78\xf0\x92\x35\xb5\xa0\xac\x50\x3b\x99\x73\xbd\x17\x5f\x9f\x5a\x99\x67\x31\x9f\x43\x41\xa7\xcb\xe3\x92\xd1\xaa\xf2\xa9\x59\x50\x2e\xb9\xe1\xc1\x4d\xa3\x41\x56\x22\xab\x91\xd5\x41\xdc\x05\xdd\xc2\xa7\x4e\x83\x3b\x37\x8d\x95\x79\x57\x08\xb2\xf9\x9e\xd0\x65\x7a\x1f\x93\x08\x33\x4a\x4c\x7a\x54\xc0\x31\x5c\x51\x6b\x3b\x18\x02\xa0\x23\x8d\x75\x7c\xa6\x43\x7e\x81\xce\x6b\xb6\xe7\x54\xb0\xbc\xb2\x6b\xc0\x11\x1d\x47\xe2\xaf\x0a\xae\xee\x87\xd4\x7d\xb9\xfa\x42\x6c\x2c\x1f\xbb\x1b\x90\x63\x0f\x7c\xe8\x66\x69\x37\x19\xf7\x34\x58\xc1\x3f\xdf\x61\xf9\xa6\x09\x05\x52\x33\x9d\x06\x24\xdd\x96\x35\x79\xe2\xfb\x0c\x88\x48\x51\x52\xc5\x02\x85\xb7\xac\x06\x0f\x8d\x6d\x2a\x53\xc4\x36\x9f\xad\xcd\xe9\xea\xd1\x89\x66\x14\xe1\xb1\x1e\xf2\x36\x73\x9d\x86\xcc\x30\xcb\xed\x73\xd5\xdf\xb9\xd5\xe3\xda\xa7\x3b\x0c\x3a\xad\x12\x00\x40\x44\xee\x21\x01\x22\xa9\xd8\x17\x25\xbf\x38\xe5\x7a\x82\xbe\xcc\x5b\x3d\x5d\x7c\xe4\x1a\x1e\x00\xd6\xd7\x16\xbc\x1e\x49\x96\x4d\x1d\x94\xf7\xba\xa1\x88\x85\x71\x0e\x30\x05\xbc\xd4\x3b\x98\x20\xb8\x17\x6c\x9f\x98\xcc\x8f\xa3\x9a\x7f\xcb\x0e\x09\xf1\x85\x45\xb9\xfc\x77\x23\xea\x95\xde\x0c\x32\x16\x3f\x6e\x6f\x87\x59\x75\x86\xd9\xde\x36\xe9\x65\xc3\x99\xc0\x78\x3c\xc5\x82\x37\xff\xcc\xed\x23\xca\x05\x6a\x40\xbe\x57\xa1\x74\x69\x53\xe3\xbc\xff\x5e\xae\xb3\xe2\x94\x91\x1d\xd6\x35\x93\x3a\xa5\xbd\x27\x88\x2c\xf0\xb7\x90\xd7\xe2\x81\xbd\x8d\x7d\x01\xcd\xe1\x07\xee\x8e\x1f\x3d\xc0\x73\xd7\x42\x75\x08\x02\x8e\x93\xe7\xc5\x6c\x87\xb8\x1c\x58\x55\xb1\x00\xec\x9e\x62\x66\x2e\x2c\x68\x57\x23\x2c\x69\x78\xaa\xd7\xd9\x22\xe7\x7a\x93\x1a\x78\x2f\xb7\x66\x28\x25\x66\x44\x0c\x8f\x23\x92\x4a\x45\x33\x4a\xcd\x7b\x35\x47\x16\xf7\x6a\x5f\x20\xc7\x0a\xf6\x11\xb1\x96\x3f\xf2\x55\xec\xe2\x6b\x63\xb3\xaa\x9e\x8d\x02\x46\x88\x18\x98\xd0\xd8\xf9\x79\xdd\x8c\x4c\x6a\xc5\x18\x5e\x04\x89\x22\x12\x5a\xf8\x59\x03\x98\xf1\x50\xbb\x58\xdf\xda\x34\x39\x04\x47\x44\xbc\xd8\xed\xa8\x2a\x64\x1c\xe0\x38\x50\xfd\x74\x73\xc1\x8b\x08\xfb\x85\xeb\xfa\x27\xa6\xa4\x90\x55\x2c\xd0\x4a\x50\x4b\xfe\xe0\x51\xfb\x5b\x3f\xf0\x7c\x63\x08\xb3\x3f\x5d\xcd\x3c\xac\x79\x58\x05\x30\x80\x04\x8f\xa6\xfd\x26\x37\x3a\xd1\x4c\x87\xd2\xb8\x8b\x85\xfe\xce\xaf\x38\x42\x9b\x87\xd3\xbd\xac\xed\xe9\xb3\x53\x73\xd8\xa3\xbf\xa9\x08\x78\x79\x52\x13\x85\xaf\x89\x54\x04\x4c\xf1\x2d\xbf\xec\xa7\x59\xba\x11\xe7\x63\xef\x2d\xe2\xa3\x69\xaf\x8c\x7f\x8c\xf6\xfd\x37\x6d\x69\x90\x9f\x79\x70\x54\xb0\x1b\xa8\xe1\x16\x2e\x44\xe4\x57\x7b\xa1\xb9\x84\x58\xe6\xe3\xee\xba\x1b\x20\xea\x75\xcd\xc6\xd7\x24\xe2\x53\xda\xc4\xe6\xa6\x04\x1a\x44\x19\x20\xd5\xd5\x7a\xcf\xcc\xea\x36\x51\x2c\xb8\x44\x08\xe6\xdf\xfc\x8d\xc5\x99\xd6\x57\x17\xe5\xfa\xae\x62\x3d\x50\xc0\x1a\x26\x8c\x12\x17\x77\x5e\xe0\xc1\x65\x95\xeb\x64\x43\x1f\x59\xfa\xe4\x24\x7a\x6e\xaa\x07\x97\x67\x9b\x6e\x05\x42\x21\xe7\x9b\x2c\x6a\x0a\x6e\x10\x8a\x89\x1f\x47\x04\x2c\x54\x5d\xb5\x2c\xdd\xe3\x56\x59\x2f\x5c\xed\x9d\x87\xdf\xa3\xed\xfb\x49\x37\x3c\xb0\x13\xdc\xc5\x03\x03\x08\x7f\x37\xaa\xbc\x72\xd2\x09\x55\x9e\xc1\x78\xe8\xa6\x86\x12\x43\xaa\xef\x52\xc6\x48\x78\x56\xaf\xfc\xfa\xdf\x9c\x75\xb8\x03\x8c\xbc\x39\xac\xf8\xfa\x78\x42\x4d\xec\xc3\x09\xb5\xb4\x6f\xd5\x3d\xbc\x52\xdb\x13\xa8\x17\x06\xbf\x5c\x12\x5b\x34\xc9\x31\x26\xb5\xfc\x55\x83\x7c\x66\xbb\x37\xce\xbd\xe5\x2b\x2a\x06\xe7\x09\xe7\x7e\xbe\xc1\xf5\xf1\x70\xbb\x28\xc9\x4e\x07\x6d\xd8\x9f\xe3\x09\xc9\x49\x53\xc2\xbf\x6e\xd3\xd4\xf6\x50\x22\xc2\xce\x27\xc3\x49\x4e\xbc\xce\x74\x12\xab\x24\x8f\x9a\x0e\xb8\xb1\xe0\x5a\x41\x6f\x7d\xbe\x43\xa2\x2a\x4f\x6f\x87\x92\xd1\x25\xf7\x1a\xd5\xe8\x79\x1a\xf1\xed\xe6\x80\x5f\x51\xf1\x88\xef\xd3\xe3\xbe\xdf\xa4\x3c\xb0\x6a\xba\xeb\xae\x3e\x86\x54\x63\x8e\xd6\x18\x51\x85\x42\xd6\x7a\xd1\x85\x00\x8a\x35\xdc\x99\x22\x2c\x2d\xb5\x6d\x5a\x3a\x2f\xf7\xd4\x8e\xd5\x91\x4a\x7d\x6f\x5a\xc1\x03\x87\xd1\x5e\x03\x93\x27\xfa\x1c\x82\xec\x84\x17\xeb\x70\xd8\x13\x0f\x35\xf0\x38\x8b\x8f\xc8\x16\xf8\x27\xd4\x83\x7c\xdd\x6c\xe9\xce\xe5\x81\xb9\xd5\xb3\x97\x93\xa9\xf7\xf5\xa5\x76\x37\x1b\x77\x07\x5a\x7f\x14\xfc\x2b\xf6\x55\x05\xc3\x7a\xe9\x87\x41\x3e\xee\x4b\xcc\x8e\x64\xfd\x5c\x44\xd5\x9f\x73\xb5\xba\xc0\x46\x2c\x26\xc9\x98\x7c\x27\xb9\x34\x71\xd2\x83\x08\xb2\x0d\x9b\x0f\xcc\x38\x99\x0b\xa9\xc9\xb3\x1d\x1a\x95\x35\xe3\xb1\xc9\x0e\x9a\x3c\x4b\x55\x4c\x59\xed\x2c\xb6\xcb\x41\x36\x2e\x4c\x8a\x7a\x29\xfe\x0e\xea\x78\x72\xec\xef\x6b\x33\x2e\x4b\xed\x37\xab\x0b\x20\xc1\x33\x9a\xb0\x74\xed\xa2\xcc\x72\xcb\x36\x49\x78\x39\xd8\x8b\x51\xc1\xf7\x1a\xe9\x2b\xf3\x92\xa6\x7c\x83\xf2\xb8\x37\xad\x49\x4c\x0a\xe7\x00\xe4\x1d\x77\xd0\x83\xd3\x22\xf7\x4e\xe0\xae\xb8\xe6\xd5\x1e\x72\x5c\xd8\xe7\x5c\x0f\xc6\x3f\xe4\xd0\xd8\xb8\xea\x96\x25\x34\xb5\xae\x4c\x82\x50\x95\xc4\xa4\xa2\x99\x1b\x85\xf2\x39\xc8\x7a\x18\xf4\xd7\x1c\x7a\x4e\x09\xd4\x24\xe6\x25\x18\x79\x4c\xa5\xab\xe8\x1f\xa1\xcd\x74\x07\x05\x77\xf9\x41\x44\x6b\x28\x31\xdd\x06\x0e\xd0\xab\x20\x57\x9b\xae\xd6\x8b\x09\x38\x09\xfe\x93\x62\xa1\xdd\xb3\x40\xc9\xf7\x1a\x19\xbe\x5e\x44\x40\x8f\xbf\xba\x5e\x17\x52\x18\xdb\x27\x69\xb9\x6f\xb9\x65\x5d\x66\x8b\x0c\x1d\xdc\xe8\x4d\xa2\x07\x0b\x54\x8b\x44\x44\xf5\x5f\x90\x22\x7b\x72\xf1\x41\x2d\x40\x3f\xc0\x2a\x25\xf0\x0f\x6c\xd7\x52\x48\xc2\x83\xd2\x3a\xc6\xce\x51\xe3\xc4\xb3\x4c\xb2\x3e\xc3\x02\x4f\xa4\x2f\xf6\x28\x22\x1f\xa8\xcb\x24\x78\x91\xdb\x6c\x64\x9d\x84\x6e\x48\x26\x8e\x46\x61\xba\x3a\xfb\x37\x2f\x43\xd7\x1f\x5b\xe8\x35\x72\xbc\x8d\xf7\xf5\x27\x13\x92\x18\xbb\xec\xd7\xe1\xd7\x5f\xe8\xbd\xd0\xaa\x35\xda\xea\x3d\xb8\x67\x03\xac\xa0\x67\xca\x2c\xdf\x72\x84\x1f\x44\xda\x50\x6d\x76\x21\xd0\x57\x7e\xa1\x13\x7a\xd5\xfb\xb6\x5d\xb2\xa1\x65\x73\xad\xf2\x6f\xe6\xa6\x14\x4e\x87\x47\xfc\x2e\x07\x49\x9f\x4f\x93\x76\xe9\x6a\x36\x4e\xab\x74\xb2\x1a\x14\x02\x2f\x9e\x10\xa5\xf9\x12\xe1\x33\x5b\x1d\x12\xec\x36\x71\xaa\x74\x2e\x6f\xe4\xe3\xd5\x09\x3f\x64\xb5\x8f\x5b\x4d\xbb\x97\xe9\x6d\x20\x63\xf1\x4f\x90\x03\xce\xd6\x76\x78\xd4\x55\x00\x2b\xda\xb0\x35\x82\xbe\x9c\x10\x66\xbd\x9b\x8d\x93\xde\x01\x37\x36\x75\xc5\xae\xc6\x13\x5e\xbb\x24\x31\xc2\x85\xe5\x05\xef\x7d\xc0\x16\xbd\xa0\x94\xc7\x6b\x3d\xdd\xa1\x12\x9b\x08\x8f\x22\x0c\xba\x10\x05\xfb\xe1\xbb\x35\x93\xcf\xdb\x13\xe2\xa2\x3f\x03\x82\x86\x0a\x50\x06\xce\xc8\xb1\x88\xf8\xa9\x07\xb6\x43\x3d\xf1\x09\x97\x23\x22\x0f\xbf\xe5\x32\x3f\x14\x4e\xfe\x53\x28\x00\x24\xd9\xea\xaa\xcd\xc5\xc2\x45\x5a\x9d\x1c\x7f\x5e\x8b\x48\x5b\xee\x7b\xb8\x6a\x15\x73\x6e\xaa\x84\x0f\xb3\x0d\xeb\x46\x1a\x16\xd8\xf7\x31\x57\x04\xa6\x38\x09\x84\x07\x81\xd6\xa8\x07\x6a\x08\xc0\xcc\xa6\x08\xe2\xfb\x3a\x57\x70\x9d\xc2\x73\x16\xcc\x22\x81\x59\x0e\x1f\x2a\xe6\x78\x9b\xd9\xd3\x21\xc4\xc4\x39\x57\x40\x50\xb1\xb9\x80\x1d\x3b\xce\x20\xf8\x69\x4c\x8d\x26\x3d\xab\xb6\x88\x7b\xb6\x00\x60\x0e\x6b\xfe\xac\x13\x4d\x46\xf8\x23\x11\x0f\x2a\x43\x33\x4e\xcc\x45\x33\x90\xa6\x0a\xa6\x9a\xe7\xb5\xb8\x9d\x89\x65\x97\xac\x01\xb0\x71\x9b\xad\x62\x0f\x09\x89\xdc\x94\xe5\xd0\xeb\x0b\x2c\x2c\x06\xbb\xc9\x95\xf9\xd0\x48\xaf\xbe\x4c\x89\x95\x64\x6e\xb2\x7b\x7b\xfa\x82\x5c\xbb\x38\x5e\x8b\x15\x3b\x28\xa5\x31\xbc\x73\xad\x93\x35\x99\xb5\xf5\xac\x49\xac\xef\x79\xa0\xdc\x74\x8f\x2d\xca\xee\xf9\xd5\x63\x90\xad\xae\x6e\xf1\x4a\x05\xeb\x77\x39\x9e\x12\x20\x5f\x5a\x72\xae\xdc\x7d\x62\xb5\x8a\xee\x03\xa1\xa4\x59\xe3\x77\x90\xe5\xf1\x9b\x4e\x5c\xd9\xa3\x09\xfe\x30\x0a\x24\xfb\x3f\xa4\xbc\x6d\xcb\x9a\xfc\xb9\xd0\xb5\xb8\x81\x6d\x49\x1e\x4f\xa7\x7a\xa0\x4a\x69\x21\xc4\xc3\xae\x6d\x1e\x5a\xc7\x26\x64\x51\x26\xc9\xab\xc6\x47\x6e\x72\x78\xb0\xfc\xc1\x60\xb2\x52\x45\x83\x5e\x4e\xc3\x23\x64\x3f\xef\x96\x28\xb0\x1d\xde\xc5\x74\xc0\x28\x7d\xe8\xf6\x71\xcf\xee\x58\x5a\x92\xa2\xf8\xcc\x36\x11\x1f\x1e\x60\x7f\x46\xa7\xfd\x1a\xb6\x71\xd4\xa2\xbe\x3d\x21\x11\xb2\xdf\x45\xba\xac\x74\x96\x86\x28\xba\x28\xed\x08\x14\x38\x2c\x0e\x68\xf4\x79\x4d\x8e\xa5\x25\x99\xef\x6f\x11\x6d\x60\xc3\x54\x1b\x56\xd9\xaa\x45\x9c\x2d\xaf\x63\x76\x81\x90\x4d\xa6\x1f\x8f\x5c\x0f\x5e\x70\x2d\xee\xc1\x28\xc6\xa5\xa1\x9e\x58\x94\x79\x1c\x70\xcb\x18\x25\x67\x88\xbb\x82\x85\x5d\xda\x51\x4d\xd8\xf3\xd5\x71\x6e\xcd\x78\x86\xfc\x1c\xb8\x9f\xff\x7f\x70\xfb\xef\x72\x14\x28\x5a\xc6\x59\x69\xc5\xab\x09\xd2\x6b\xac\xbf\x88\x09\xd5\xdc\x84\xaa\x08\xb7\xa6\x2e\x7d\x69\x69\x45\x09\xf0\x6e\x24\x2a\xe4\xa2\xe5\xfd\xab\x4e\x90\x12\xb0\xc9\xab\x8d\xf2\x80\x7b\x51\xb2\xbb\xb8\x1a\x87\x70\x99\x59\x3a\xf9\x04\x00\x64\xb8\xa0\x63\x44\x14\x82\xde\x23\x2a\x80\x27\x22\x36\x69\xc6\x32\x8d\x6c\x0b\x5e\x81\x5e\x5b\x3b\x54\xcf\x9f\x90\x71\x8d\x1b\x12\x2a\x3a\x76\x9a\x9f\x21\x44\xf4\xf6\x75\x9e\x11\xfc\x47\x8e\x6d\xa3\x02\xc0\xee\x0d\xa9\x12\x0d\xe9\xc8\x13\x53\x7b\x2d\xcb\x6d\xd7\x14\xe5\x3e\xd2\x9c\x3e\x89\x60\x12\x30\xa5\xb3\x11\x67\x9c\xd5\x97\x28\x2e\x35\x78\x34\x09\x00\x49\x95\x49\xc2\x62\xf7\x5d\xf7\x62\xe5\x8b\x1a\xb7\xa3\x22\x89\x05\xdd\x27\x82\x28\x11\x39\x8d\x07\x24\x7a\x9a\x95\x71\x37\x36\xb2\x2c\x23\xd0\x90\xfd\x41\x4e\xa6\xfb\xf4\x8b\xed\xac\x5b\xda\x64\x26\xa4\x77\xe2\x32\x2b\xc1\xb0\x6b\x56\xaa\x15\xa6\xb7\x81\xcd\x4c\x0f\xc0\xe4\xe5\xc0\x03\x58\x5a\x92\x1b\x45\x8c\xeb\x3d\x6f\xaa\x2b\xc5\x6a\x7f\x97\x16\xb1\xcd\xb8\x1c\xfc\x22\x15\x54\x2e\xbb\x27\x85\x05\x09\x7e\x95\x0a\x2d\x71\x7d\x01\x3c\xda\x07\x6e\xf7\x47\x90\xf3\x5f\xe3\xf9\x4b\x4d\x05\x4d\x74\xd4\xc3\xee\xb9\xb7\x88\xbd\x63\xef\x36\xb0\x69\x0a\xd5\x0e\x72\x36\xbf\x8b\xc5\x46\x09\xb3\xd5\xe5\x63\x3a\xed\xee\xb8\xf0\x51\xf1\xdc\xd5\xfd\x7b\x36\x69\x95\xef\x68\xab\x11\xe3\x0e\xa3\xe8\x27\x51\xdd\x41\xd0\xab\x8d\x09\xf3\x0f\xc9\x14\x54\xd2\xb0\xb3\x88\x86\x0c\x42\xc3\xdb\x11\x41\xf7\x9c\x65\xd9\xe1\xa0\x4e\xca\x46\xa2\xc4\x6d\xbd\x5d\xcb\xc6\x4c\xb9\x35\x13\xf8\xc7\xb3\xdb\xad\xe5\xe5\x47\xd7\xf0\xad\x08\xf5\x6e\x45\x3b\xd5\x53\x80\xa8\x19\xc4\xa3\xd5\x71\x9c\xf4\xea\x1a\xd9\x27\x22\x22\x33\x9c\x20\x37\xcd\x24\x4e\xe1\x85\x24\xa5\x65\x8a\x4a\xce\x4f\x85\x0a\x0b\x0b\xd5\x0e\xdb\x4b\xe2\xd4\x8a\xbd\x16\x62\xc8\x07\x51\x3d\x34\xf2\xbd\x23\x16\x2c\x18\xd8\x35\x44\x50\x3e\x0d\xf2\xe0\xbf\x47\xa4\x81\x77\x39\x0c\xca\x78\x75\xcb\xa4\x14\x13\x3f\x8a\x28\x26\x7e\x34\x75\x75\x2f\xcf\xbf\xe8\xd4\x99\xbb\x1e\xe5\xe2\xd5\x36\x3d\xca\x45\x5e\x1f\x1e\xe1\x47\xa4\x96\xee\xda\x0b\xd2\xa3\xc4\x10\x84\x47\xb4\x1c\x53\x95\xda\x55\xd9\x67\x03\xfc\xfe\x89\x4e\x00\x14\x3d\x9a\x90\x86\xde\xa9\x5a\x64\x74\x6a\x12\xec\xa2\xb3\x61\x5c\xa8\x55\xb3\x00\xc9\x18\x82\xb0\x7f\x3b\x20\xa2\x0e\x4c\x95\xdf\x0e\x2e\xb7\xcb\x3c\x1e\x79\x12\x8e\xce\xcb\x96\x97\x4c\xbd\x33\xa1\x5d\x7b\xf7\x54\x77\xac\x5a\x80\x36\x07\xa6\xbb\x2e\xc4\x62\xec\xa3\xc7\xa2\xd6\x2b\xda\x10\x3a\xd6\xd0\x10\xf3\x86\x77\x14\xfb\xa1\x01\xad\xdd\xf9\x30\xa8\x6c\x2a\x9a\x31\x92\x99\x46\x44\x3e\xba\x40\x09\x26\xec\x2d\x5c\x0e\xeb\x5b\xfc\x01\x64\x21\x85\x13\x54\x07\x1f\x4f\x45\x64\xcb\xcb\x87\xab\x47\xb9\x16\x97\xa0\xd1\xd4\xd2\xb9\x95\x79\x3d\x8e\x58\xa8\x3d\x2b\xa1\x24\xc6\x79\x62\x8b\xc4\xcf\x1b\xf8\x4e\xe5\x38\x5f\x35\x29\x09\x72\x7c\x5c\xb3\x3a\xaa\x91\x74\xb2\xa2\x55\xad\x47\x52\x69\xc0\x5d\x6b\xd9\x21\x54\xe9\x36\x09\x2d\x80\x05\xe6\x67\x64\x6f\xf6\x33\x9a\x32\x76\xad\x7c\x26\x8c\x11\x81\x80\x23\xfc\xfb\x0b\x9d\xd6\x6f\xfe\xba\x37\x28\x22\x05\x93\x8f\x27\x24\xb5\xe8\x10\xba\xaf\xca\xf6\x2d\x32\x0f\x28\x1f\x3d\x00\xd9\xd1\xe7\xf5\xa1\x4d\xb8\x1d\x52\xc0\x7f\x78\xa0\xe3\xbb\x97\xf9\xb7\x49\x71\xf5\x32\xf5\x62\x8f\xb9\x50\xee\xd1\x49\x9a\x4c\x49\xd6\x35\x89\x75\x8a\x85\x87\x95\x68\x00\x7c\xaf\xb2\x0e\xf8\xb1\xe5\x7d\x88\x4a\x68\x8d\xb1\xfa\x19\x2d\x31\x4e\xf3\x68\x8a\x41\x66\x87\x66\x7d\x87\x1e\xfd\x1d\xd2\xa3\xbf\xd3\x00\xfb\x7e\xb5\x3d\x30\xf9\x86\x2d\x7c\x01\x1a\x3b\xf5\xfb\x14\x91\xbf\xef\xb5\xd9\xfa\x89\xe9\xc6\x26\x71\x23\x58\x01\xde\x04\xf6\xa6\x20\xbf\x97\xa5\xaa\x83\xa0\xa0\x73\x78\x5f\xc8\x31\xbd\xcb\x6c\x35\x26\xeb\xb8\x4b\xcc\xa6\xbe\x34\xe5\x39\xf4\xf2\x7c\x7b\x9c\xf6\x6c\xbe\x99\x8b\x3d\x42\xe8\x55\x47\x81\x16\x74\x96\xe2\xd9\xd7\xc7\xa9\xa0\x48\xf0\x1a\x11\x5c\xca\xb1\x17\x93\xfb\xda\xd8\x19\xa8\x26\x5b\x7b\xaa\x17\x8e\xf5\x1a\xec\x3b\x37\x59\xfe\xf3\x3f\xd7\x09\xa9\xb0\x43\xc0\x2e\x3e\xba\xe2\x32\x3a\x25\xc1\x7b\x2d\xb1\xff\xe5\xb3\xdb\x0d\x2e\xc0\x79\xdc\x6f\x11\xc1\x0b\x17\xa1\x8e\x01\x3b\xfb\x31\x5f\x6a\x67\xa9\xdd\x1b\xf0\x52\xd7\x49\x21\x0e\x56\xc0\x18\x6c\xb7\x11\x44\x62\x51\xf8\x16\xc6\x2d\x12\xa2\x59\x17\x07\xab\x6f\x86\xbb\x7b\x55\x48\xd1\x3b\x8e\xd3\x81\xcd\x63\xff\xda\xa5\xec\xcf\x9b\x78\x1d\x82\x56\x14\x76\x4f\x70\xfa\x90\x25\x08\x0f\xe4\xa1\xab\x87\xf8\xd8\x7d\x87\x39\x96\x67\x81\x91\xfc\x37\xcd\xe4\x5e\xf1\x54\x10\x4b\x91\x46\x15\x7e\xff\x97\x50\x80\x11\x93\xd9\x49\x4d\xa2\xda\x39\x89\x49\x3e\xa8\x1f\x0d\x80\x12\xd1\xc1\x42\xcf\xf1\x8b\x2c\xf9\xff\x10\xdb\x89\x16\xa0\x5b\x5e\xb5\x67\xd7\xb6\x5f\x4f\x7e\xda\xde\xd6\x01\x9f\x0d\xe3\x52\x6d\xda\x11\x33\xdd\xc7\x75\xc8\x09\xb5\xd6\x47\xd9\x68\x9c\x18\x20\x4a\x58\x5c\x42\xd5\xcc\x49\xd9\x9c\xd9\x95\xe7\x22\xd2\xa5\xe1\x22\xda\x8f\x1b\x20\xe6\x2b\xca\x43\x68\x05\xc9\x36\x54\xa0\xe5\xb8\xb6\x7c\x98\xf5\x4c\xf2\x7d\xa5\xc9\x93\x1e\xe2\x77\x48\x66\x6a\x2d\xb1\x6f\xc4\x1b\x56\x64\xd0\x7c\x9d\xda\xab\x3e\x3a\x63\x12\x25\x42\xc4\x4e\x1d\x08\x68\x2b\xa1\xf9\x44\x61\x0f\x38\x5a\xbb\x82\xf5\x64\x6b\x3f\x35\x98\xfe\xae\x1b\x27\x48\x86\x66\x3a\x55\x96\xe2\x45\x4c\xbd\x34\xf9\x93\xee\x3d\x20\x83\xbb\xc7\x74\x2e\x11\x93\x40\xb0\x09\xa2\x07\xf2\x22\x80\xf3\xb0\xf8\x7f\x80\x5b\xc4\x2b\x7d\x9b\x16\x99\x78\x5d\x72\x05\x24\xa5\x30\xd7\x96\xe3\xda\x25\x3f\x9f\x3e\xdf\x0a\x40\xfb\x1d\x58\xcf\x9d\x81\xa5\x2b\xa0\xc5\x69\xdc\xcd\x86\xa3\x71\x19\xea\x2b\xa4\x5b\x79\x98\x74\x2b\x59\xf1\xba\x6f\x8b\xfd\x6e\xf4\x02\xe1\x7b\x91\xfb\x5f\x77\x27\xa4\xbc\x21\xe2\xb9\x28\x52\x5d\x75\x33\x0a\x4f\x6a\xa6\x43\x28\x0e\xc9\xd1\xe4\xcb\xdc\x73\x16\x03\xfd\x28\x80\x94\x00\xad\x42\x01\xed\x58\x43\x94\xb8\xb8\x43\x51\x14\xe9\xc3\x8c\x0b\xba\xe4\xb8\x13\x8a\xc7\xaf\x67\x85\x1d\x0d\x8a\x2c\x75\xd1\x1a\x8a\x1c\x20\x9a\xab\xa1\x30\x0d\xf3\x4b\x53\xd9\xde\xd2\x52\x7b\xcd\x24\x89\x80\x39\x14\xb8\xeb\x9e\x98\x00\x2d\xeb\xaa\xbc\x3b\xb7\xae\x57\x16\x8f\x28\xe7\x50\xaf\x57\x61\x32\xee\xb9\xa8\xf5\x58\xd8\x09\xf2\x71\x21\x3c\x38\x5c\xd3\xbb\xee\x61\x7a\x21\x84\xaf\xbc\xe2\xfd\x32\x1a\x78\x1a\x6b\x46\x5b\xea\x6a\x13\xd4\x22\xfb\xa0\x9d\x2b\xf8\xcb\xf3\xed\x51\xd7\x6d\x4e\x2a\xb1\x4b\xa5\x36\x6e\xf5\xff\xda\xaf\xfd\xd5\x56\xdd\xeb\x77\x41\xe3\xd3\xcb\x53\x42\x50\x8b\x47\xda\x83\x0c\x78\x07\xc0\x5e\xcf\x91\x70\xf5\xb9\xc9\x53\xfe\xd5\xa4\x2f\xbc\x8e\x2c\x84\xfb\xe0\x0d\x5a\xc7\xf7\x6b\x00\xd8\x71\x1e\x73\x6c\xca\xc4\xf8\x0b\x53\xed\xdc\xe5\xe5\x76\xb1\x69\xa4\x10\xa5\xb5\xe3\xea\x67\xb0\x35\x01\xf9\xa4\x12\x98\xe1\xca\x32\xc3\x06\xb3\x52\xa2\x91\x93\x88\x35\xb5\xe0\x76\x33\xc3\x2e\xdc\x37\x23\x6a\xcd\xc8\xe5\x21\x96\xfd\x68\xa2\x04\x24\xcf\x35\xf7\x61\x10\xf6\x12\x87\xbc\xd7\xe3\x29\x05\xb3\x85\xc5\xb6\xd9\xb0\xb9\xea\x52\xaa\xfd\x6e\x75\xa1\xaa\x98\xa7\xab\xe5\x30\x4b\x6d\x69\xf2\xb8\x28\xa5\x04\xeb\xad\x5f\x43\xa3\xf4\x0c\x99\x2d\x9a\xd5\x71\x61\x91\x8f\x78\xfc\xb0\x97\x11\x43\x33\x50\x57\x8b\x69\x8c\xd0\xb2\x6b\xaf\xf6\x07\xe2\xcf\x20\x2a\x57\x51\x4d\xf2\xaa\xc1\x2b\xa8\x18\x8f\x46\x59\xae\x17\x28\xba\x89\xb8\x40\x15\x51\x0c\x82\xed\x89\x4d\xfb\xe5\x20\x74\xbe\x14\xa9\xc0\x08\x86\xcf\x50\x36\xd8\xb5\x29\x74\x56\x03\xdc\xf6\xf7\xa2\xf0\xe2\x7f\x8f\xb8\x5c\xc5\xd7\xc6\x56\x02\xd2\xea\x9b\xd5\xd1\x2e\x34\x7a\x7e\x46\x54\x83\xd4\x6e\x16\x4f\x11\x2e\x44\x94\xd1\xbd\x63\xce\x2b\x8c\x2e\xf2\xdb\x45\xcd\x41\x5d\x18\x3d\xda\x06\x26\x5f\x5a\x69\x84\x78\xd9\xc7\x83\xea\x44\x77\x2a\xaa\x09\x4a\x54\x97\x89\xad\xf8\x01\x51\x42\x4f\x4f\x2d\x3e\x2e\xc5\xb2\xf9\x5a\x96\x0f\x75\xf1\xd1\x8e\xa1\xbb\x05\x6d\x19\x06\xe7\xe3\x8d\xd8\xec\xa9\x89\x79\x04\xba\xc1\xf1\x5a\x30\xd8\x5a\x58\x08\x85\xbc\x85\xc5\x1a\xf6\x59\xd3\x9d\x26\x58\xd2\x5a\x6c\x93\x9e\x6e\x40\x98\xde\x22\xd8\x2b\x27\x41\x95\xdc\xf6\x1c\xc2\x57\xbd\x01\xaa\x6f\xa6\x76\x7f\xa8\xa3\xe8\xa4\x1a\xa7\x71\xaf\x7a\xeb\x6b\xb1\xf8\xdc\x62\x24\x3f\x64\x56\xca\x71\x02\x0a\x33\x18\x76\xc3\xa6\xe5\x38\xb7\x7b\x09\x68\xbd\x8d\x5f\x41\x74\x7a\x8c\x20\x6f\x6f\x4d\x48\xb5\xe2\x1c\x60\xb2\x8a\xbb\x9b\x32\x06\x40\xa0\xfb\x13\x1f\xc1\x17\x23\x93\xc7\x69\x5f\x34\x0e\x91\xf2\x5d\x20\xbb\xb6\x60\xf3\x53\xe6\xa6\x1b\xf6\x6a\x0c\x1d\x81\x1e\xca\x49\x40\x4e\xac\xbe\x4e\xfb\x21\x30\x92\xf7\x18\x61\x7a\xaf\x69\x91\x2e\xcd\xea\x4c\x6d\x6b\xf1\x5d\xce\xff\x99\x21\x0f\x67\x02\x0c\x3c\x49\x62\x5b\xc8\x62\xa7\x5c\x74\x82\xb5\x3c\x8a\x02\x66\xe7\xbf\xb8\x40\x42\x35\xb9\x19\xc5\x45\xd9\x0a\xa1\x14\xd4\x10\xd5\x11\x27\x84\x1c\x85\x4d\x4d\x99\xe5\xb3\x01\xad\x70\x41\xca\x7a\x0a\x82\x6b\x79\x31\x0e\x59\x5a\x15\x2a\xf7\x14\xb9\x3f\xf6\xf6\x52\xf7\xfc\x1f\x4d\x28\x61\xfc\x47\x98\xae\x5e\x34\xf9\x37\x7f\x5d\x8f\x23\xda\x35\x6f\xb9\x7c\x5a\x35\xa2\xc3\xaa\xf1\x7e\x13\xb5\xb8\x30\xc9\x50\x3a\x4a\xc8\x33\xe0\x80\x27\xc7\x4d\x60\x94\xa2\xcc\x8d\x73\xef\x70\x3f\xc9\xf5\x1f\xb5\x22\x0f\xfa\x3c\xc5\xa6\x19\x8e\xf0\x5e\x3d\x3f\xbc\xba\x37\x65\x81\x7b\x5d\x83\xde\xc0\x16\xce\xcf\xd4\x0f\xa5\x6f\x47\x01\x2e\xfd\xed\x06\x11\xe2\x43\xed\xe1\xb8\x3b\x68\x85\x14\xec\x3b\x2e\x5c\x95\xe3\x1a\x9c\x62\xad\x04\x5b\xcd\x6b\x54\x78\xa9\xc0\xcb\x93\x9d\xd1\xe6\xc1\x65\xd1\x90\x2d\xf3\x71\xb7\xdc\x21\x15\x03\x35\x09\x4d\xf2\x42\x70\xbe\xdd\x54\xab\x8c\xd3\x6a\x5a\x66\x62\x2f\xae\x3e\x64\x2d\x72\xf1\x09\x23\x67\x60\xd7\xd6\x52\xe1\x84\x63\x00\xc2\x11\x5b\x8e\x9b\x4c\x60\x47\xb9\x5d\xb3\xb9\x75\x0d\x7e\xdf\x9a\x3a\x46\x48\x8f\x63\x93\x20\x46\xdd\xcf\xe4\x2d\x20\xe9\xbe\xc7\x2a\xbe\xf7\x1a\xbd\xd1\x4c\xf7\x6b\xe3\x38\xd7\x49\xe9\x31\x4c\x81\xa4\x77\x3e\x80\xdf\xac\x01\x31\x4c\xd2\x06\x0a\x4f\xcf\x51\x59\x6e\x10\x27\x49\x8b\xba\x81\x20\x90\x69\xc0\xb4\x73\xa0\xbd\xf6\x5a\x7b\x23\xce\x12\xe3\xd7\x05\x3c\xe9\x93\xb8\x04\x39\x89\x9e\x0b\x23\xad\x5a\x3b\x87\x36\x2d\x4d\x82\xd6\x86\x17\xc4\xf3\x6a\x7d\x12\xeb\xc9\x35\xf7\xe3\xd2\xa9\x4b\xab\x87\x0a\xa6\xb3\xc8\x34\xca\xc9\xd4\x73\x77\xa3\xc3\x17\xb8\xdd\xc8\xf0\x22\x52\x3e\xa9\xbc\x38\xf9\x95\x86\xad\x23\xcd\xca\xcd\xb8\x1c\x14\xa5\x49\x7b\xae\xfa\xba\x32\x1f\x4c\xbb\x3c\xc4\xfb\xa1\xdb\x36\x81\xea\xbe\xd9\xa8\x7c\xb6\x9a\x1b\x51\x02\x60\xfb\x2f\x65\x78\x36\x22\xa7\x7b\x79\x9c\x78\x23\x74\x64\x3f\x67\x91\x11\xcb\x49\x83\x7d\xae\x49\x56\xad\x10\x0b\xb1\x71\x9f\x72\x57\x26\xc7\x0d\xa6\x1f\xed\x32\x8f\xfb\x7d\xeb\x87\x0c\x66\xae\x6c\xd5\x72\xd2\x54\xd8\x1d\x58\xb7\xa5\xb4\xc8\x74\xe8\x9f\x93\x19\xd7\x3f\x9f\x7a\x07\x8a\x41\x48\x62\xd5\xda\xc5\xcd\xdf\x65\x86\xfd\x5d\xaa\x7e\x7c\x39\x37\xb2\xea\x63\xe6\x9e\x22\xe7\xe5\x19\xd4\x2d\xb4\x7b\xdc\xe0\x4a\x92\x8d\xcb\x62\x94\xad\x5b\x88\x3e\x23\x14\x86\x9e\x07\xf8\x77\x57\xb0\x40\x2b\xd1\x38\x28\x75\x14\xe3\xbe\x11\x39\x50\x6c\xfc\xff\x93\xfb\x94\x1c\x23\xa4\x52\x9b\x38\xaa\xa4\x48\xb9\x5a\x4f\x70\xe1\xfa\x77\xa4\xdb\xee\xb8\x5b\x6f\x00\xa3\xf0\xa2\x24\x3d\xa7\xc9\x98\xe1\x34\x41\x90\xac\xb3\x8b\xce\x52\x27\x1c\xa2\x74\xc9\x53\x68\x82\x7b\x41\x5a\x0f\x13\xbf\x89\x2b\x40\x32\x0a\xee\xa4\x8a\x85\x84\x82\xfd\xdf\x6b\x48\x6d\x91\x18\xb8\x00\x86\xea\x37\xa8\x71\x23\x12\x14\xf5\x43\xd4\xf3\xce\x90\x00\xe1\xd0\xe6\xdd\x78\x6d\x9c\x24\xa8\xc7\xab\x45\x04\xa9\xb8\xc3\x1d\x13\x75\xaa\xbb\x9e\xb4\x35\x4a\x6c\x58\x22\x30\x9a\x21\x77\x27\xc7\x54\x10\xe8\xbb\xee\x32\xf4\xde\x11\xef\x49\x12\x4b\x48\xd1\x20\x9b\xea\x42\x61\x20\x49\x7e\xec\xc2\x57\x39\x9e\x90\xdc\xff\x99\xa9\x09\x5a\x65\x13\x43\xd3\x13\x13\x6c\xec\x45\xe2\xc3\x2c\x27\x3e\x1c\x19\x25\x26\xd5\x7a\x89\x54\xf5\xdc\xf8\xd0\x0a\xdf\x2f\x7f\xc2\xb0\x1f\xe5\x59\x6f\x1c\x04\x18\xa5\x70\x87\x57\xa6\x55\xbc\x40\x6c\x74\x02\xae\xa3\x3c\x2e\x04\x49\xe7\xfd\xa8\x3c\xc3\x58\x34\x08\x14\x34\x45\xf4\xbc\x61\x1a\xaf\x8e\x65\x7c\xa1\x97\xf8\x2f\xdd\xe7\xe4\xb8\x11\xb7\x3f\xb4\x79\x5f\x1a\x3b\x6a\x30\xe7\xbe\x5e\x4e\x26\xbf\xfa\x09\x77\xd5\x33\xa5\x91\x3b\xd3\x10\x4d\xcb\x62\x24\x5c\xe2\xb0\x1e\x8a\x21\xbe\xef\xa3\x52\xd3\xb3\x69\xd6\x35\xa2\x9d\xa1\xdc\xc5\x50\x14\xaf\xfb\x2c\xf7\x07\xe5\x2f\x06\xe6\xb8\xd4\x74\xd0\x76\x3e\x8e\x74\x06\xc4\xbd\x99\x4e\xeb\x95\x60\x31\xd9\xfa\xca\x2b\xc2\x16\xfa\x39\x59\x91\x5e\x71\x43\x03\x0f\x75\x37\x80\x28\xb8\xb8\x87\x32\x71\xdd\x64\xf9\xf8\x40\xc7\xa1\x15\xd0\x95\x3c\xea\xb2\x0f\xfc\xc6\x59\xb4\xa3\x11\x72\x9f\x70\x9a\xb1\x24\xe7\x77\xc8\x4b\x96\x93\xa7\x24\x98\x32\x00\x3e\xec\xd9\xae\x29\xe7\x90\x80\x87\xb0\x55\x59\x5a\x54\xb9\x29\x41\x23\x41\x28\x02\xe8\x17\xee\xdb\xa6\x7e\xde\xa5\x49\x10\x88\x80\x71\x97\x36\xa6\x9f\xab\xcb\xa2\x56\x39\xda\x6f\xfe\x3a\x00\xc7\x5e\xb9\xa8\x7a\xa0\xaa\x5c\xd4\x84\x08\x51\xef\xb2\x00\xa3\x71\x42\x22\x7a\xdc\x24\x4a\x6d\xd2\xbe\x4d\x74\x64\x68\xea\xe4\x9e\x37\xfa\xb1\xa2\xa5\x80\x09\x70\xb1\x41\x8a\x6b\x11\x62\xa4\x33\xa1\x73\x0a\x64\xbc\xdf\x44\xbd\xb2\xcb\x7d\x32\x95\x1b\x98\xe1\x08\x5b\x5a\xf5\x53\x28\xaa\xbe\x33\x21\xad\xd1\x77\x48\xc7\xba\x67\x4b\xa7\x63\x6d\x4a\xcb\xb1\x31\x6a\xe6\xda\x6b\x79\x96\xfe\xbc\xb0\xb9\x85\xd9\x15\x6a\x26\xef\xe2\x7d\xa8\xb6\x1c\xc9\xf8\x05\xe4\x7a\x7f\x90\x15\xa5\xd4\xf3\x90\xd0\x9d\x75\xe1\xbe\xea\xbb\x92\x40\xce\x03\x22\x92\x8c\xf2\x38\xed\xc6\x23\x93\x24\x5b\x8e\x1c\x80\xc4\xee\x5b\x6e\x30\xc8\x71\xc4\x8a\x15\xee\xb7\xe5\x84\x58\xc0\x06\xdb\x88\xb3\x95\x45\x8c\x24\x9b\x05\x96\x5b\x48\x32\x60\x3c\xa1\x93\x16\xec\x8d\x16\x8f\xf8\xd6\xfb\x74\x0d\xa6\x6d\xc7\x79\x36\xb2\xd2\x6f\x97\x2f\xab\x7f\x73\x53\x2c\xe4\x28\x02\xe4\x3b\xf1\xde\x84\x4b\xf1\xef\x55\xb9\x35\x0f\xd6\x85\x85\xf6\xf3\xcf\x3f\xed\x26\x16\x46\x4d\xe9\x52\xbe\x47\x17\x08\x2c\x72\xdf\xdd\x02\xd0\x47\xb0\x5e\xc3\x08\xb9\x8f\x09\x85\xce\xe0\x6c\x87\x94\xa4\xfe\xb7\x49\xd0\x00\x7d\x07\x83\x5f\x21\x3f\x94\x8f\x1f\xc2\x2e\xa0\xcb\x6c\x80\xc1\x7c\xe0\x9e\x93\xfc\x78\x93\x2b\xc3\x30\x2e\x4a\xb3\xae\xe8\x48\x05\xf2\xbb\x7e\xa6\x76\x58\x1a\xa3\xbe\x51\x9e\x39\x8f\x61\xec\x45\x78\xc9\xfb\x3b\x21\xab\xdf\xbf\x3d\xad\x26\xd1\x36\x89\xc1\xea\x8d\x0c\xed\x23\x66\x4f\x7d\x14\x05\x6c\xf2\x6a\xb5\xed\xa6\x2e\x27\x46\xa4\xff\x43\x97\x55\xc9\xb1\x87\x39\xe6\xb6\x1f\x5b\xf4\xec\x9b\xfc\xd5\xb9\x30\x9a\x27\x85\xdb\xfa\x59\x98\x0e\x95\x3e\x14\xf3\xc4\xac\x78\x6a\x1c\x1c\x7a\xe9\x70\x7b\x64\xa5\xe2\xe9\xa5\x29\x82\x4c\xc5\x64\xc7\x8a\x75\x70\xb9\xbd\x32\xbf\xf2\x29\xb7\xd0\xab\x1f\x67\xe8\x53\x3c\xc4\x82\x8c\x68\x05\x1b\xbf\xc8\xd8\xba\x71\xa1\xa0\xb7\xea\x8d\x4b\xa1\x80\x15\x8b\xee\xba\x85\xd6\x63\x5e\x02\x5c\x12\x56\xeb\x22\x29\x35\x21\x4d\x96\x5d\x1d\xf2\x70\x3a\x13\x11\x6f\xfc\x18\x0b\x05\x7e\x34\x21\x2c\xe2\x1f\xf9\xf6\xe2\xc0\x24\x49\xb6\x69\x2d\x42\x01\x7c\x4e\x38\x0e\x72\x42\xc2\x54\xe3\xb4\x6b\xd3\x22\x53\x58\x33\xca\x74\x77\xa2\x9a\x66\x5d\xa8\x9a\x7e\x38\x09\xad\xd1\x3f\xa1\x5a\x7a\xd7\x16\x4f\x79\x52\xf2\x6f\xff\xca\x36\xd1\x0c\x30\xe3\x7d\x65\xc5\xb7\xfe\xff\xe2\xaf\x22\xc8\x76\xdb\xd4\xb9\xbf\xb0\x1d\x48\x03\x4f\x6e\x53\x5c\xfe\xdf\xfc\x6a\x27\x98\x2a\x5c\x61\xdd\xd9\xbd\xdb\x54\xf6\x78\x72\x3b\xa4\xb8\xbf\xb0\x1d\xac\x78\xfe\xab\x5f\xeb\x84\xd8\x7b\x38\x2e\xe2\x2e\x24\x08\xf1\x5e\xc5\xd8\x1a\x3b\xcc\xef\x62\x2e\x7a\x2b\xe9\x50\xc2\x84\x3c\x0f\xb0\x2f\x3f\xfa\x44\xdd\x04\xbb\x61\xf3\xad\x2c\xb5\xb3\x64\x6e\x72\xc5\x7d\x12\xeb\x06\xac\xee\xf0\x1c\x4f\x91\x22\xfb\xd1\x9a\xa1\x76\xe9\xba\xe0\x78\x4f\xa7\x68\x88\xef\xef\x50\xfe\x0a\x11\x12\xe4\x89\x73\xb8\x5b\x8c\x41\x29\x6e\xa2\x2d\xfd\x07\x53\x4b\xea\xca\x7c\xdb\xa6\xce\xf3\x55\x16\x48\x3c\x06\x89\xa6\xe4\xa4\x49\xfb\xaf\xbd\x9a\x67\xeb\x60\x39\x6b\xf0\x44\x8a\x1b\x97\x49\x3f\x7f\xb0\x65\x53\x83\x0a\x35\x52\x9a\x33\xee\xfd\xcb\x71\xd3\x4a\x66\xe2\x5c\x04\x7f\x7d\xd1\x06\x64\x5c\xf5\xbf\x3a\x40\xe9\x7c\xe2\x6a\x82\xb0\xe0\x52\x4e\x65\x08\x18\x7e\x3b\x0a\xa9\xc8\x6f\xbb\xdf\x55\x12\xe6\x01\x1a\xf0\xab\xb1\x91\x05\xf0\xc5\x9a\x21\x8e\x02\x4a\xa9\x3b\x3b\xce\x57\xe3\x62\xa0\x99\x0b\xd2\x3c\xd4\x60\x90\x7e\x88\x3a\x90\xc2\xd8\x1b\xc4\x26\xcb\xdc\xa4\x85\xb3\xee\x10\xf0\x86\x77\x02\x58\x5e\xf6\x16\x01\x0d\xa5\x96\x2f\x54\x47\x79\x2c\x0d\x70\x2c\x24\x67\x59\x20\x6d\x5a\x20\x60\xf1\x48\x15\xcd\x94\xe3\x1c\xb5\x1f\x01\x2d\xb8\xc7\xa3\x00\x86\x50\xf3\x1f\x38\xaf\xc9\x85\x05\x8f\x6a\x21\x84\x0b\x89\x40\x8d\xd3\x78\x2d\xee\x3a\x7c\xf9\x2c\xe9\xb9\x9d\xc1\x88\x91\x13\xae\x35\x70\xba\x1d\x4c\x95\xcb\xc1\x78\xb8\x2a\x7b\x55\x53\x7d\x38\xbc\x1e\xfb\xc6\xc8\xa1\xfe\x67\xa9\x8c\xf2\xa1\xfb\x5b\x94\x31\x6f\x90\xd5\x33\x5e\x1b\x76\x97\x7b\xd4\xc2\x5a\xb3\x25\x18\x7f\x6e\xad\xf4\x18\xc9\x6a\xa7\x96\x13\x1a\x53\xa2\x81\xbb\x45\xc6\xbc\x52\x33\x90\x93\x9d\xf1\xc2\xcb\xf3\x2f\xb6\xbf\x88\x66\xa6\x2a\xb3\x54\x97\x81\x34\xe0\x26\x5d\xea\xc7\x93\xcf\x93\x24\x79\xba\x96\x67\x69\x09\x49\xd0\x56\x80\xa8\xdd\x9f\x84\x7a\xd7\xf4\x46\x7f\x70\xb9\xad\xa5\x21\x8c\x57\xae\xdf\x92\xc5\x9f\x2c\x1f\x7f\xe5\xc8\xcb\x58\x7d\x3c\xf9\xcd\x3b\x83\x3e\xbb\x1d\xd2\xc8\x27\x1c\x7e\x5f\xed\x33\x3f\x89\xcd\x51\x65\xc6\x85\x0a\x36\xa2\x8b\xfd\x30\x22\xb4\xf4\x15\x72\x0d\x38\x47\x40\xab\x61\xb7\x6b\x72\x79\x9e\x08\xa8\x4e\x32\x6f\xe8\x24\x21\x1a\x7a\x79\x3c\x1a\x69\x09\x0a\xcf\xe0\xe7\x54\xff\xfb\xf9\xa4\xb6\x4f\x65\x1b\x36\xf7\xda\xf0\x58\x53\x77\xf4\xfe\x02\x65\x14\xa2\x6d\xda\x20\x7c\x96\x23\xde\xa1\xc9\x91\x64\xe0\x36\x76\x77\x42\xbf\x60\xf7\x76\x43\x2d\x7c\x94\x25\x5b\x23\x81\x96\x22\x84\xbc\x8d\xc7\xe0\xdd\xcb\x96\x97\xbd\xe4\x9a\x96\xae\x5d\x69\x2d\x8b\x0b\xd4\x89\xbd\x6b\xfc\xd2\x92\xe4\xac\x27\xb9\x1b\x71\x77\x6a\x4f\x71\x5a\x1f\x6f\x8c\x6c\xae\xc5\xcb\xb0\x72\x9c\xa7\x95\x63\x5a\x61\x6b\x69\xc9\x01\x31\x65\xaa\x29\xe0\xbd\xe5\x85\xd8\x4e\xb0\xfd\xbc\x29\x06\x31\xf6\x01\x9f\xcf\x06\x1d\x9f\x09\x53\xce\xf2\x38\xc5\xa2\x82\x35\xf2\xce\x84\x16\xcf\x3b\xb4\xfa\xaf\x9a\xee\x7a\xb5\x3c\x57\x3f\xee\x01\x11\x5e\xfa\x08\x49\xaa\x6a\x8d\xb8\x07\xa0\x10\x8c\x50\xb2\xed\xd9\x91\xc9\xcb\xea\xb6\x0b\xe7\x91\xec\x59\xbe\x87\xc2\x49\xf4\x39\x12\x09\x2b\xba\x26\x71\x74\x78\x4d\xc8\xb0\x69\x43\x58\x56\x8e\xe9\x66\x7a\x76\x34\x2e\xb7\xa6\x39\x0f\xea\x1e\xdd\xf2\x8a\x4b\xe7\x48\xa3\xa7\x9b\x65\x79\x2f\x86\x80\x1b\x96\x15\x2d\x44\x10\x56\x87\x45\x4b\x4d\xba\x1e\xa7\xfd\xbd\xc1\xf4\xeb\x8f\x49\xe7\xed\x78\xdd\xa3\x33\x94\x10\x21\xa3\x49\x15\xa2\x20\xc0\xe4\x2e\x58\x97\x24\x3f\xcc\x86\xc3\x38\x75\xb2\x41\xbe\x86\x38\x8b\x6a\x88\x68\x93\x12\x1b\xe4\xa9\x29\xd0\xed\xc2\x42\x15\x70\x98\x32\xb3\xff\xb7\x4c\x6e\x79\x02\xd5\x32\xd4\x33\xa5\x9d\x21\x57\xf8\xa3\x24\xbc\x7c\xdb\x3d\x3a\xd5\xae\x7d\xc6\x53\x9a\x86\x76\x4d\x61\xfc\x28\x1d\x80\x96\x82\x8b\xba\xc9\xae\xab\xa2\x07\x8e\x28\xf0\x03\x42\xa7\x9a\xd1\x28\xd1\xad\x10\x6f\xf4\x38\xbd\xdd\xe3\xc1\x01\xd7\xba\xa6\x70\x15\xa6\x90\x31\xc6\xa2\x97\x3b\xfe\x0c\x49\x7b\x8d\x5c\x89\x30\xd9\x82\x43\x11\xde\x91\x28\xc9\xa2\xc6\x7c\xd7\xbd\x5a\xb4\xbc\x2e\x92\x6a\x41\x37\xb7\xbd\xb8\x7c\xaa\xe5\xa5\xfc\x85\xcb\x80\xb0\x63\xd6\xd1\x0a\xf4\xe9\x90\x99\xe1\x39\xaa\xae\xdd\x65\x0b\x95\xf7\x48\x65\xe3\xdd\xc9\xee\x2f\x04\x3c\x5e\x35\xe2\x85\xf6\x38\x21\x87\xa7\x0f\xc9\x31\x6b\xce\xf1\xeb\xb0\xf7\xcc\x74\x9e\x26\x21\xa4\x71\xc2\x3e\xde\x48\x3b\x74\xc0\x85\xed\x76\x14\x27\x76\xa3\x58\x47\xc5\x1c\x93\xf1\x98\x1b\x83\x72\xdc\x60\xc8\xb7\xd8\xae\xe6\x1a\x44\x88\xbc\x0a\x50\xb5\xb7\x62\xc4\xb4\x5c\x98\x8b\xca\xde\x8f\x70\xd9\xea\x0f\xdc\x04\xfa\xce\xb3\x5e\xdf\xe6\x5a\xc3\xd1\x3d\x89\xf4\xa6\x44\x3b\x5a\x13\x93\x9d\x0b\xde\x2b\x87\xda\x6b\x71\x62\xc5\x77\x14\x21\xb1\xb0\x32\xe5\x84\xf2\xd3\x62\xdc\xeb\x59\x80\xa6\x10\x90\xde\x25\xe4\x2a\xa8\x81\x82\x4d\xe0\x8a\x7d\x37\xcb\x2d\x81\x69\x7f\x1e\x85\x7a\xe2\xb4\x39\xf4\xc2\x62\x35\xa7\x6c\x5a\x2a\x58\x17\xb1\xe1\x43\x32\x84\x7c\xc8\x74\x66\xe7\x0e\xed\x96\x56\xf6\xe2\x51\x71\xae\xe7\x08\xe1\x9f\xbd\x2e\xe5\x7a\xc7\x19\x25\x60\xb5\xca\x5a\x43\x05\x1d\xd2\x84\x00\x01\xe1\xff\xff\xdb\x29\x04\xd1\xe2\x91\x6a\x57\x83\xaf\x9d\xf7\x8f\xf3\xe0\xe9\xe9\xc6\x8f\x53\x6f\xcf\xd6\x8b\xd9\xd0\x10\xfe\x31\x52\x39\xc4\x53\xb3\x1d\x92\x55\xbd\x3d\x21\x53\xf8\x73\xa8\xe6\xef\xd0\x90\x20\x88\xff\xc3\x88\x26\xcf\x43\xbf\x7f\xbe\x6e\x12\x33\xb2\x69\xe6\x1e\xa1\xb8\x2e\xbb\x47\xa8\x0e\xcc\x21\xe8\x49\xec\xd6\x1e\x8c\x1e\x31\xb1\xa4\x2a\xe5\x31\xf2\xe4\xbd\x46\xea\x81\x82\x0f\xc4\x22\xf9\x98\xd9\xad\xcf\x76\x3e\xe5\xc3\xff\xc4\xbc\xe1\x5b\xbd\x08\x75\x1f\xd6\xa0\x16\x21\x3b\x3b\xf1\x89\x86\x05\xab\x59\x9a\xc6\xc8\x6d\x3c\x9e\x86\xb0\x79\x0d\x0c\x82\x43\xed\x35\xd3\x8d\x13\x68\x34\xd1\x73\x15\x84\x88\x9c\x44\x41\x86\xd8\xe9\x92\xa9\xc0\x05\x06\xbd\x50\x37\xe4\x84\xba\x5e\x07\xbf\xbc\x38\x43\x6a\x07\xd2\xf2\xc5\x73\xd8\xd5\x21\x75\x85\xf7\xd9\xdd\x74\xd3\x26\xf0\xef\xf3\xc6\xca\x41\xaf\xed\xcc\x84\x37\xf8\x9d\xb7\xf3\xf2\xfc\xa1\x76\x6e\xe3\x94\x61\xee\x52\x7e\x76\xaf\x43\x4b\xd1\x4d\x80\xdb\x1c\x04\xf9\x16\xe9\x1e\x62\x3f\x93\x63\x92\xfb\x29\x4a\x6b\x54\x59\x4d\x03\xe3\xfb\xcc\x13\x45\x16\xaa\x95\x31\x2e\xfc\x67\xc3\x82\xac\xbd\xaf\x13\xf6\xe8\xf8\x84\x64\xd3\xdf\x76\xf2\xdf\x7e\xa2\xf9\x36\xed\xef\xba\x27\xf8\xe8\x6d\x50\x4c\xd1\x64\xbb\x31\x69\x3d\xff\xbc\x1e\xbb\xc4\x4a\xec\x74\xb0\xa3\xab\x4f\x5e\xcb\xe7\xb0\xe7\xa6\xc0\xf6\x20\x40\xaf\xda\x9c\xcd\x5b\xa4\x2a\x80\x77\xa6\x25\x82\xb0\x4b\xf6\xe2\x62\x94\x18\xb1\x34\xf0\x64\xae\x40\x41\x99\xfe\x95\x2a\x95\xa9\xc2\xdb\xa2\xdc\xca\xad\x44\x78\xbe\xeb\xe0\xd9\x4f\x27\x28\xb8\xef\x1a\x5b\x98\x1c\xf9\xbd\x67\xe4\x7b\x91\xa2\x0b\x9e\x91\x3d\x30\x69\x8c\x81\x26\xdd\xd5\x08\x14\x39\x3c\x88\x3f\x25\x6e\xf9\x47\xc1\xe8\x5f\x54\xa8\x49\xc0\x1d\x89\x8e\x02\xfd\x43\xfd\x30\xb5\x10\x4d\x42\xa4\x74\x8a\xac\xb3\xff\xc3\x84\xf2\x95\x63\x84\xd7\x29\x06\x26\x47\x77\xec\xd1\x51\xa8\xab\x1d\xa5\x21\xde\xcf\x33\x71\xb8\x45\x00\xf3\xd6\x24\x04\x33\x6f\x35\xad\x9f\x03\x9b\x8c\xb8\x4d\x87\xc5\x57\x8e\xa7\x76\xcd\xe5\x65\x91\xee\x9b\x21\xdb\x35\xe9\x89\x68\xb4\x17\x3e\xff\x6f\x27\xc1\xc6\xb6\x6f\xca\x01\xd2\x9e\xc0\x0a\xb9\xee\xaa\x8e\x5a\xc9\x74\x17\x81\x45\xf9\x76\x14\x7a\xd8\x27\x9a\xd4\xe4\x73\xdb\xaf\x32\x8a\x56\xd8\x01\x25\x93\xd7\x5a\x4d\x43\x7d\xe6\xf5\x71\x2f\xee\xc6\x26\x21\xcd\x8d\xdd\xd4\x24\x91\x08\x4e\xd9\x8b\x7e\x59\xf2\x41\xf9\x4c\x08\xfa\xaf\x20\x71\x42\xce\xc8\x12\x07\x1f\x12\xce\x51\x5b\x99\x1b\x76\x4f\xdd\x0e\x62\x69\x49\x9b\x2d\x22\xcc\x2f\x27\x58\x8d\xb0\x6c\x7d\x13\xf5\x51\x39\x99\xd4\x1a\x61\x14\xc2\x25\xb1\x0b\x9a\x0f\x6a\xdb\xf2\x1d\xb7\x67\xe8\x13\xa9\x66\x37\xd6\xf5\xf7\xa7\xd6\x75\x57\x9a\xf1\xb2\xb8\xad\xf0\xbc\x91\x7d\xca\x31\xed\xf0\xab\x59\x51\x8a\x35\x8e\x2a\x59\x31\x24\x78\x27\x97\x49\x4c\x8d\x5d\x8d\x59\x0d\x8e\x49\xb6\xf6\xdb\x04\xa3\x32\xc3\x71\x61\x11\xf7\xa0\x9b\xf0\xb7\x89\x0d\xf0\xb7\xa7\xf2\x7a\xa7\x0a\x9d\x64\xe3\x3c\x2e\x06\x7e\x9a\x21\x8c\xb8\x43\xa8\xaa\x3b\x54\x1b\xd9\xc8\x12\x53\xc6\x89\x9d\x09\x9c\x07\x34\x89\x15\xad\x56\x5d\x31\x76\xc3\x73\xb4\x10\x55\x5b\x92\x55\xf1\x5f\x55\x3d\xe6\x2c\x79\x9a\x0b\x75\xa8\xfa\xd0\x86\x0d\x62\x5c\xda\x4b\x6f\x79\xdd\xd9\x33\x94\xba\xe6\xf1\x46\x15\x81\xfa\xd6\xf5\x7d\x32\x2e\x15\x8e\x1b\x96\xe7\x5d\xdb\xb4\x7b\x9f\xe7\x52\x62\x39\xee\x55\x39\xe6\x4c\x78\x6b\x37\xb9\x33\x83\x65\x0d\x65\x81\x0f\x7c\x1d\xab\x67\xfb\xb9\xb5\x48\x1e\xbd\x96\x95\xaf\x0d\xc3\x3f\x13\xc3\xed\x0e\x2d\x3d\xdd\x41\xbc\x61\xa4\x82\x20\xec\xe5\x49\x08\xdb\xa5\x28\x8e\x35\xba\x35\x45\xad\xfc\xea\x62\xdb\x99\x97\x17\xa5\xcb\x6b\xd0\x12\xfa\x6e\x44\x84\xba\xef\x52\x59\xef\xf5\xac\x78\xa1\x16\x4d\x12\x31\x7b\xda\xf9\xee\x95\xc5\x23\x0e\xb1\x9c\x6c\xcd\x52\x19\xe0\x3c\xab\x2c\x21\xea\xc2\xb2\x2d\x14\x25\x39\x21\x77\x03\x93\xa6\x63\x78\x5c\x2f\x2c\xf8\x74\x87\x34\xea\xcf\xb1\xe9\x68\x96\x17\x82\x84\xf0\xe2\xbe\xd5\xb7\xaa\xb8\x2f\xe1\xb7\x93\x78\x43\x9e\x35\xaa\xe9\xff\x94\x0c\x25\x2f\x51\x14\x3e\xad\xbb\xe1\x1c\xf6\xd5\xb6\xdc\xd7\xda\x6a\x60\xfc\x1a\x16\xb0\x97\x6c\x7d\x8a\x74\xfa\x84\xd4\xab\xab\xb9\x1b\x42\x98\xbc\x77\x38\xd5\x39\x8d\xb7\x80\x81\x20\x36\x85\x40\x8a\xdc\x99\x04\xfe\xa8\x88\x1c\x02\xbc\xf2\x9e\x0b\x23\xf4\x71\x06\x78\x24\xbc\xff\xf1\x08\x9e\xdd\xae\x19\x38\x20\xb6\xd5\x12\x73\x70\x9f\x14\x0c\x30\xb2\xe5\xcf\x4c\x25\xf7\x2b\xf3\x6d\x35\xbd\xaf\xb6\xca\x47\xdb\x78\xab\xd0\xbd\xf8\x29\xde\x24\x4e\xde\x6e\xea\x13\xac\x26\xb1\xab\x60\xa0\xda\x86\x97\x03\x6d\x09\xa6\x4a\x7b\xa5\x05\xaf\x33\xb0\xbb\x43\xbd\x00\xe7\x7d\xdc\x0a\x58\xd3\xdf\xa1\x02\xd3\xef\x50\x4d\x26\x89\xfb\x83\xb2\x68\xed\xe4\xe1\x2c\x7a\x29\xf5\xb0\x1f\xa2\x3e\x1c\x6f\xd8\x27\xdc\xe3\x56\x33\x3d\xb7\x1f\x20\x6f\xbf\x8e\x4d\x46\x6c\xe7\xf1\x8a\xbc\x07\xbd\xe7\x23\xef\xde\x0e\x2a\xc5\x90\xe7\xc6\x50\xba\x8f\x7d\xc6\xc7\xea\xd5\xdb\xc6\xb3\xdf\xdb\xf9\x0c\x69\x52\x74\x07\x71\x69\xbb\x25\x62\x06\xa5\x93\xb6\xc8\xc3\x6a\xe7\x33\xd5\x84\xa0\x58\x5f\x63\x27\xfd\x09\x89\xe5\x5c\xf0\xe0\xc9\x7e\xb5\xfb\xb5\x3c\x17\x77\x37\x5a\x5d\xd8\x44\x9f\x71\xab\x0c\x30\xcd\x9f\xdf\x66\x13\x77\xfe\xae\xa7\x5c\x43\x0d\x9f\xf8\xe5\xce\x01\x0e\x12\x5d\x21\xb5\x15\xf2\x51\x94\xfd\xf4\x3b\xa6\x36\xbc\x97\x0e\xb7\x8b\xad\xb4\x17\x77\x61\x04\x5b\x0d\x4d\x6e\x4f\x69\x50\x4a\x90\x2a\x9b\xda\x32\xee\xee\x77\xaf\xc1\xb3\xe4\xab\x1b\xf0\x14\xc2\x57\x16\x8f\xc8\x78\xf9\x17\x13\xe6\x3a\x53\xb4\xfa\x11\x55\x78\x9e\x40\x3f\x14\xf3\x71\xef\x76\x4d\xe4\x2b\x58\x10\x9d\x76\x8b\xaa\xee\x31\x4d\xc5\x86\xec\xf9\xf5\xb8\xbb\x1e\xb7\x6a\x06\x3a\x9f\x20\x4a\xd6\xb3\xd5\xf2\x93\x6f\xed\x0b\x6b\xce\xbd\x1a\x0d\xb8\xfa\x61\x4f\x48\x62\xaa\xb0\x2f\xf3\x09\x89\xce\x57\xba\x42\xd1\xf8\x66\x44\xba\xff\x17\x6a\x1d\xef\x51\xdc\x27\xa0\x3f\xe0\xb0\x35\xef\x79\x69\x04\xfb\x54\xd9\x75\x35\x63\xa1\x83\x23\x98\x44\xf6\x2f\xc7\x53\x6f\x74\x79\xf9\xb0\x6c\xd1\xa9\x8f\x03\x14\xe7\x1a\x20\x1c\x4d\x7d\xc0\x76\xcf\x76\x73\x2b\x9c\x5e\x64\xd2\x3f\x26\x37\xac\x26\xde\x64\xbb\x18\x66\x59\x39\x10\x4c\xa6\xd7\x7c\xf4\xc9\xc5\xb4\x8e\xea\xf2\x72\x3b\x37\x71\xd0\x0c\x56\x7b\xb1\x00\x53\x3d\x35\x05\x68\xf5\xb2\xbb\x26\x4f\xc1\xa4\xc2\x20\xfa\x1e\x53\x95\xbe\xc7\xb4\x7b\x47\x19\x55\x7e\x69\x13\xa1\x9a\xdf\xc9\x5a\xb7\x3b\xcb\x32\x95\x6e\xe9\x11\x7c\x57\x27\xe4\x1e\x67\xd9\x8a\xe5\x38\x31\x50\xd6\xd7\x73\x57\xcb\xc6\x1e\x02\xc3\x54\x39\x26\xe8\xcf\x20\x1e\x16\x36\x59\xdb\xef\xea\x7e\x42\x1b\x74\xd9\x23\xa6\xe6\xf9\x28\x30\x47\x6e\x4c\x82\x42\xdd\x69\x17\xbb\xca\xdf\xb8\xd9\xa4\xe2\x85\xa1\x42\xf7\x4d\x8c\xc4\x9a\x23\x86\x9c\xb8\xb1\x8b\x0a\xd8\xe3\xa9\xf7\xe7\x00\xeb\x69\xd6\xd5\x12\xb3\xd7\x5b\xa1\x09\xe4\x7e\x12\x1b\xf4\x3d\x02\x16\x14\xa5\xb5\xc9\xd0\xac\x4b\xa5\xb0\xd1\x4e\xaa\xba\x39\x5f\xf6\x22\x4d\xfa\x67\x3c\x39\xc3\xe4\x43\xed\xbe\x62\x38\x43\x8f\x0f\x2f\x69\xb6\x13\x1c\xe2\x8f\x37\x0d\x57\x40\x1b\xdc\xc4\xc0\x6e\x7a\x82\x85\x08\x4e\x78\x6f\x9e\xe1\x56\xa9\x1a\xf6\xa8\x02\x21\x1b\x93\xe3\x26\x18\x7f\x6e\xbb\xd9\x70\x68\x53\x14\x9b\xb1\xa5\x7c\x14\x91\xdb\xc5\x0e\x5e\xdc\x5a\xdc\x05\xca\x6a\x79\x59\x76\x5d\xf1\x2e\x07\x45\x5b\x04\x12\x74\xd7\x09\x7a\x75\xfb\x3b\x7a\x8d\xd9\xa8\xd4\x2a\xa7\x50\xae\xb0\x45\x2a\xff\xea\xd9\x40\xb1\xd9\xb0\x89\x4b\x18\xfd\xc4\x04\x2b\x01\x0b\xd4\xd9\x09\x15\xdc\x44\xa2\x0b\x7d\xb2\x56\xa7\xee\xc9\x51\xfc\xf9\x40\x9d\x38\xb0\xed\xb6\x45\x8c\xa6\x1f\x71\x1b\xf0\x1d\x57\xec\x50\x74\x97\xbb\x24\x2c\x6b\x0f\x26\x84\xa1\x14\xd3\x7e\xd4\x4f\x66\x3a\x55\x9c\x88\x77\xb8\x5b\x2c\xa2\xb1\xd0\xcf\x6d\xbb\x94\xcf\x1b\x18\x54\xbb\xba\x28\xd1\x44\x81\x0a\x7b\xc0\x11\x98\x01\x09\xf9\x76\x14\xe2\x90\x27\x3b\xb5\xb0\xad\x1a\x1c\x88\x3f\x45\xb1\x09\x59\xc0\xcc\x76\x6b\x61\x51\x56\xe8\x2b\x13\x94\x25\x10\x39\xdc\x07\x20\x0d\xe5\x86\xf3\x50\x93\xd7\x84\xce\xcd\x6c\x5c\xca\xe7\xdc\x6e\xfc\x68\xf7\x36\x79\xc1\xde\x74\xd5\x1c\xdc\xc4\x1d\xe2\xdb\x3f\xa0\x89\xba\xab\x13\x22\xe6\x3c\x1b\x9a\xb4\x8c\xbb\x33\xa1\x90\xf2\xc7\xd8\xfd\xa4\x0e\x35\x09\x1d\xde\x9b\xd1\x4e\xd4\xef\xd2\x52\xbb\xc8\xc6\x69\xef\xbf\xfc\xff\x3a\xfb\x85\xb8\x5b\x53\x63\x7a\x44\x25\xe4\x47\x8d\x84\xb5\xcd\x38\x2d\xbd\x13\x5d\xa3\xc5\x06\x79\xbb\x96\xd6\xe6\xd5\x1c\xac\x7e\xc0\x33\xe2\xbc\x92\x30\x72\x1e\x8c\x8b\xdb\x44\x40\x8c\x87\xa3\x3c\xdb\xf0\xe5\x53\x75\x56\x98\x09\x46\xf5\xa0\xf1\xe2\xd1\xdc\x6b\xf2\x89\x80\x28\x28\x26\x3f\x5e\x10\xf8\x14\x2a\xe3\x43\x6c\x95\x81\xaf\x3b\xac\xe5\x26\xed\x9a\xd8\xeb\x06\xea\x20\x75\x77\x27\x27\x64\xc9\x94\xdb\x78\xb8\x3a\xce\x0b\xd9\x08\x24\x23\x8b\x38\x3b\x6b\x68\xb1\x16\x5d\x23\x42\xd3\xb8\x96\x0f\xe8\xba\x3e\xa0\x6c\xac\x6f\xe2\x74\x5f\xf5\x5d\x2a\x1d\xef\x66\x84\xaa\x0f\x54\x23\x03\xc0\x8c\x9f\x51\x0d\x15\x65\x11\x51\xb4\x8b\x48\x32\x48\x82\x51\xf9\xf4\x24\xf4\x74\xbf\xdf\x44\x44\x35\x65\xe2\x06\x58\x2b\x84\xbc\xe7\xd8\x80\xe7\x9c\x5f\x64\xbb\x59\x92\x38\x4f\xb0\xe5\x65\x02\x36\x07\x90\x73\x33\xb6\x2e\x4b\xb2\x16\x89\x5e\xd7\x25\xed\xa8\xdf\x1e\x67\xa9\xf5\x43\x4d\x89\x72\x24\x86\x10\xa0\xef\x6b\x79\x6c\xd3\x9e\x03\x91\x22\x9d\x7e\xec\xe6\x8e\x88\x72\x61\x81\x44\x4d\xf5\xef\x4c\x6a\x02\xeb\xa1\x44\xf8\xe9\xce\x01\xea\xf0\x81\x3f\xe8\xf0\x54\xaa\x2d\x46\x36\x16\xa2\x04\x2a\xff\x12\x05\xa3\xf3\xef\x47\x24\x57\xff\xfd\x1a\x0e\xbe\x56\x38\x8e\x4b\x69\x9e\xd7\xa2\x6f\x0d\xa9\x3f\xe5\x97\xe3\x71\x35\x83\x64\x34\xe2\xc6\xc4\x77\x55\x4e\x26\x3b\xf0\x25\xaf\xbd\xd6\x5e\x58\x7c\xa2\xba\x6a\x14\x8a\x21\xb8\xe0\x61\x03\xd5\x45\x63\x83\x87\xc0\x9d\x4a\xa3\xf1\xaa\x8e\x8c\x55\x97\xf8\x00\xc4\xf8\xc0\xad\x4c\xaa\xaa\x45\x10\xfa\x93\x24\xe6\x5a\x0c\xb3\x75\x8b\xb4\xcf\xdb\x2f\x86\x54\x1e\xa2\x36\xf2\x0f\x18\x91\xf2\x0f\x9f\x48\xc9\x29\xec\x86\x4d\x67\xaa\x45\x17\xe3\x55\xe4\x24\x3c\x12\x6e\x69\x49\x56\x84\x3b\xd4\xf2\x5d\xcb\xf2\x2a\x09\x62\x5b\xe2\x5b\x98\xf1\x72\xc2\x0a\x81\x69\xdf\x26\xd9\x0c\x96\x72\xec\xed\xe7\x21\xc9\x82\xdb\xbe\x13\x85\xfa\xd5\x29\xea\x1c\x7d\xc5\xe4\x73\xc1\x59\xfe\x1c\x3f\xc2\x1f\x90\x81\xa0\xe8\xba\xca\x5f\x4d\x98\xc4\xf1\x09\xaa\x8c\x99\x27\xc3\x8a\x11\x43\x14\x4a\x55\x67\xe9\x02\xbe\x7c\xf8\xc8\x9c\xbb\x27\x34\x76\xcf\x72\x29\x75\x76\x9b\x8c\x12\xc0\x2e\xc0\xe5\x80\x66\x84\x21\x30\x3b\x95\xf6\xbf\x3c\x7f\xa8\xbd\x39\x88\xdf\x7c\xd3\xd6\x54\x37\x4e\x11\x9a\xf5\xd4\x94\xc8\xc2\x2b\xce\xf6\x30\x25\x84\xc7\xf1\x28\x20\xe2\x8e\x4f\xbd\x59\x57\x49\xee\xda\x78\xc3\x0b\xee\x4b\x4f\xc3\x7d\x4a\xfb\x1b\xcf\x50\x7e\xbf\x01\x05\xf8\xc5\xc0\xa4\xa9\xc6\xb1\xae\x17\xd5\x76\xee\x6b\x22\x9e\x44\x0b\x52\x82\x72\x4e\x49\xb5\x68\xb8\x35\xe7\x6e\x0d\x73\xed\x3a\xe2\x0c\x0d\x8a\x5a\x5e\xf9\x54\x0c\x90\x54\xa7\xa0\xe5\x0d\x50\xcf\xf9\x60\x69\x9c\x6e\x82\x04\x87\xf1\x8e\x87\xfd\x9c\x0b\x31\x71\x6d\x90\x7c\xc6\x26\xf3\x0f\x6b\xea\xd2\x9e\xd3\x6d\x7b\x25\x3a\x1d\xa2\x30\x5b\x6b\x53\xb6\x54\xc6\xe8\xeb\xff\xba\x81\xad\xfa\x62\xbb\x18\xc7\x42\x99\x55\x09\xd9\x40\xab\xb8\xec\xe3\xd3\x24\x5e\x07\x22\xee\x55\x29\x03\x0b\xb3\x17\x15\xdb\x7f\x47\x50\xba\x7f\xc7\x0c\xe9\x0b\xec\x75\x63\xd2\x62\x1c\x53\x1b\x1b\x46\xd0\x72\x1c\x7d\x3e\x94\xdf\x8b\xad\xee\x20\x33\xa9\x49\xb6\x74\xfb\xf0\x59\xdb\x72\x50\xf0\x6f\x4a\xaf\xcb\x3c\x1b\x55\xb1\x08\x16\x7b\x95\xd2\xa8\x69\x6c\x7c\x96\xbc\xc7\x57\x8b\xb8\x17\x9b\x3c\x56\xb0\x1f\xde\xfa\x31\xe2\x6c\xff\x47\x62\xd4\x9d\xc4\xc4\x43\x4c\xfe\x1f\x1a\xbc\x2d\x57\xc7\x49\xdf\x27\x8d\xa2\xdb\x47\x97\x7c\x79\xf2\xe9\xfa\x3a\xfb\xc5\xf6\xc2\x82\x23\x65\x23\xfa\xfd\xa6\x1b\x79\x72\xcc\x4a\x1d\x7f\x10\x85\x5a\xde\x1f\x50\x99\x63\x94\x67\xab\x89\x1d\xee\xa3\x28\xfc\x7e\x44\xee\x15\x0f\x50\xe6\x00\xa9\x06\xa5\x33\x85\x17\x56\xbf\x8a\x68\x61\xd6\xc9\x4e\x23\xce\xdb\xef\x90\x13\xbe\x09\xe1\x95\x08\x2f\x91\x54\x83\x4d\x7b\x85\xc3\xd7\xab\x91\x6a\xf5\x55\x6a\x5b\x19\x78\x80\xc3\x6e\x77\x60\x8b\xd4\x6e\xb5\x6a\x2e\x4c\xd5\x1f\xcb\x71\x13\xd4\xb0\x1b\x97\x71\x37\xcb\x41\xdb\x55\x21\x1f\x56\xf5\xa9\xd5\x4c\xc7\x6f\xd8\x9a\x51\x30\x65\x79\x51\xe8\xa1\xa7\xd9\x66\x5a\x6f\xfc\x3e\x26\xab\xf7\xc7\x53\x2d\x49\x70\x98\x0b\xa8\x1e\x08\x84\x42\x2f\x39\x14\x84\x2e\xf9\x5e\xa0\xe9\xd9\x51\x89\xe0\x94\x24\xb9\x97\x6b\x92\xc0\xe8\xf1\xdc\xa3\xd2\xf2\x30\x2b\xb3\x1c\xa3\x4e\xfd\xde\x67\x82\xfb\xf4\x07\x93\xd0\xb2\xba\x84\x09\x25\xff\x30\x15\x4d\xa3\x1d\x14\xf7\x44\x94\x43\x86\xf0\x84\xc0\x82\xc7\xa6\x75\xf2\x5f\x3a\xdc\x7e\xdd\xa4\x2f\xb4\x42\x46\xf3\xd6\x84\xc8\x95\x6f\x35\x18\x5b\xb6\x7b\x76\x68\xaa\x77\x4f\x3e\xca\x17\x9d\xda\xac\x1c\x4f\x3e\x4b\x24\xd0\x74\x2d\xce\x87\x82\x55\xab\xde\x3f\x68\x28\x68\xd7\xc8\x31\xa1\x30\x87\x36\xef\x0e\x4c\x5a\xce\x56\x59\x19\x8b\xcf\xe3\x4f\xf7\x75\x02\x86\x42\x42\x48\xbc\x84\x1b\x34\xe0\xca\xb8\xbb\x6e\xab\x8d\x8f\xe5\x8b\x20\x09\x2c\xc7\x53\xbc\x12\x27\xa9\x33\xb2\xae\x8f\xab\x22\x03\x6e\x57\xf0\xd2\xa9\xd5\xad\xe2\xdd\x7d\x4c\x8c\xf1\x22\x1b\xda\x4f\x53\x25\x6c\x8f\x64\x90\x98\x68\x73\xdb\x41\x40\x79\x1f\x5c\x3d\xb1\x60\xef\x03\xba\x01\x69\xd1\x0f\x5d\xba\xa6\x5d\x33\xf7\x86\x11\x82\x7c\x10\x11\xf4\xe8\x23\xcc\x60\x2f\x1e\xf3\xe5\xdf\x92\x2d\xe7\x44\xc4\x9e\x61\x21\x62\xdd\xbf\x4d\xbe\xf4\x70\xb8\x70\x87\x7f\xf8\x69\x87\xbe\x25\x72\x85\xda\xc3\xde\x71\x13\x18\x41\xa8\xf4\xaa\x50\x11\xb8\xd5\xc0\xa4\x7d\xd5\x03\xe0\xf1\x94\xd1\x80\xbd\xea\x2e\x40\x8e\x9b\xb2\x95\xc4\xac\xda\x04\x64\x3c\x5d\x0a\x69\x59\x24\x14\x85\x86\xcc\x7b\xdd\xd3\x45\x48\xfd\x13\xa1\x2c\x62\x4d\x3b\x4e\x50\x6f\x21\xa9\x50\x68\xbd\x1c\xa2\xe9\x85\xda\x3f\xbc\xea\x3d\xb9\xa7\xe1\x64\xcb\xed\xd5\x24\xdb\x94\x71\x23\x22\x9b\xe4\xfd\x36\xdd\xdb\x71\xc9\xef\xd0\x6e\x0e\x4c\x89\xd1\x0d\x69\xb7\xcb\x24\xf9\x76\x79\xaa\x01\xff\xa5\x76\x39\xb0\xb9\x5d\xdd\x9a\x09\x06\xdc\x8f\x6b\x32\x9b\x24\x62\x30\x9d\xf2\x54\x51\x55\x92\x6d\x48\xb7\x15\x91\xe4\x31\x42\x1d\x1c\xa3\x66\xd8\x38\x4d\xcc\xe6\xda\x38\xa1\xfc\xf0\x28\xe5\x87\x47\xa9\x17\x06\xb9\x7c\x06\xe8\x87\x46\xca\x79\x37\x5b\xe5\x98\xa5\x98\x2f\x51\x37\x24\xb7\x69\xcf\xa1\x03\xdc\x5a\x22\x12\x14\x35\x39\x8a\x9d\xb3\xee\xe0\x72\xbb\x48\x32\x34\xae\x3d\x50\xd6\xaf\xb1\x0c\x94\x5d\xb3\x49\x92\x6d\xee\xa1\x90\xf4\xea\x84\xe5\x88\xd1\x73\x15\x3b\x15\x06\x34\x0a\x41\x1b\x55\x20\xc8\xe8\xc2\xd4\xeb\x83\x06\xba\xde\xe1\xf6\x9a\xb5\x00\x17\x21\x7e\x3a\xc5\xf2\xdc\xa0\x1f\xaa\xb7\xcd\x74\xac\xfb\xa2\x32\xde\xdd\xfd\xa8\x04\x76\xc0\x41\xbd\x37\xe1\x84\x70\x23\x2e\x62\x71\xb7\x47\xce\xf2\x75\x12\xf1\xfa\x7a\xc3\x4b\x5f\x6c\x17\x59\x02\x87\x0e\x8f\x74\xac\x6e\xcd\x3f\x00\xaf\xe1\x7b\x9a\x72\xde\xae\xc9\xfb\x71\x92\x60\x53\x12\x35\x71\xac\x9b\xd8\xcf\x4f\xcb\x63\xc4\x6d\x5d\x6f\x32\xe9\x18\xa7\xf1\x5a\x96\x0f\x09\xa6\xfe\x0e\xf5\xa3\xdf\xf9\xa4\x27\x31\xb4\x69\xc9\xc8\x6f\x4c\x74\xb5\x34\x3d\xc0\x1e\x90\x65\xdf\xf4\xed\x5e\x78\x62\x93\x7e\xdd\x59\x28\xa8\x2b\x0a\xc1\xdd\x2d\x6e\x1d\x5a\x74\x88\x17\xaf\x23\x81\xad\xe1\x13\xb0\x5c\xec\xee\x3c\xe9\x29\x1f\x66\xd3\xbd\x15\x14\xcd\xbf\x1b\x11\x0f\xfa\xbb\x93\x9d\xd2\x3d\xaf\xbd\xd6\x36\x49\xe2\xb4\x91\xd4\xbb\xc4\x95\xc1\xb1\xbb\xfd\xaf\xd5\xbc\x78\x74\xcb\x87\xdc\xb9\x41\x8f\x04\x83\x4f\x50\x25\xa8\x01\x9e\xa5\x40\xeb\xcf\xa6\x0c\xac\x42\x4a\xea\x5c\x10\x41\x52\xc0\x62\x0f\xcb\x45\x3d\x61\xf4\xdb\x20\xdb\x34\x58\x9e\x10\xc5\x5e\x65\x50\xf1\x55\xca\x9c\xf3\xb8\x58\x2f\xf6\x12\xb1\xf2\x04\x19\x98\xdd\x63\x62\x32\x20\xe7\xd2\x7e\xc5\xe4\x06\x8f\xed\x03\xa4\xd4\xd8\x99\x5e\xc3\x9b\x91\x93\x28\xe4\x53\x83\x6c\x68\x8b\xba\x6a\x0a\x19\xa6\x9c\x9f\x5a\x65\xab\xd8\xce\x61\x10\x48\x64\xee\x24\x8b\xcc\x9d\x9c\x1a\x84\xfa\xa4\xca\x17\x5c\xce\x80\x31\xf4\x73\x4e\x50\x7f\xce\xc4\xcf\x2c\x5b\x17\xa4\x0f\x32\x63\xa8\x90\xe3\x6d\xdf\x74\xcb\xb9\x02\x1e\x83\xda\x4a\x9c\x24\xe3\x61\xac\x62\xb5\xbe\x1d\x79\x86\x39\x55\x67\xa2\x1a\x72\x60\xbd\xd8\xdf\xf2\x1e\x73\xf7\x51\xce\xc1\x46\x8a\x02\x14\x7a\x01\xdf\x8b\xc8\x1e\x5d\x18\xd3\xba\x86\xb8\xc5\x45\x8d\x24\x5a\x5e\xe1\xf8\x87\xa4\x8f\xf9\x9f\xdc\xca\xab\x94\x1c\xd2\xaf\x9d\x16\xf4\x39\xf2\x52\x30\x0d\x72\x9d\x00\x14\x0d\xef\x13\x23\xe8\x7e\xd3\xfc\x1e\xe5\x36\x19\xf7\x84\x10\xee\x1d\x68\xbd\x4a\xc7\xf1\xc8\x0b\x86\xe5\xd9\x0c\x7b\x0f\xb0\xdb\xd1\x53\x1d\x0a\xc6\xe6\xb6\x83\xae\x4f\xfa\xc2\xeb\x4c\x35\x17\x83\x75\x39\xf1\x02\xab\x03\x33\x1a\xc5\x70\x12\x3a\xe4\xd5\x98\x43\x19\xec\xa1\x7b\x3a\x0a\xf4\x21\x50\x6c\xd6\x35\x25\xa8\x80\x52\x88\x8d\xc2\x46\x37\xed\xf7\x0b\xdb\xc6\x71\x77\x1d\xb5\x32\x3c\x6d\x09\xaa\xe5\x24\xfa\x5c\xa8\x1a\xa7\x45\x19\x97\x63\xd0\xe5\x66\xc2\xce\xf1\x24\x99\xdf\x5f\x75\x17\x89\x47\x30\x33\xa5\x27\x58\xad\x84\x89\x1b\x8d\x2d\x96\x28\x71\xbf\xa7\xb8\xd1\xcf\x71\xa8\x5c\xe6\xf1\xea\x58\x70\xd5\x9f\x44\x37\x09\xbc\x1d\xf1\x10\x97\x13\x92\xd4\x48\x6d\x3f\x2b\xe3\x6a\x20\x60\x92\x21\x36\x7d\x8f\x5b\xb6\xef\x35\xd4\xe2\xdb\xe5\x78\xb8\x9a\x68\xad\x86\x38\xfe\xaa\x1a\x3c\x9d\x3e\xbc\x3c\xdf\xee\xe7\x66\x43\x06\x0f\xb0\x74\xa7\x89\x8b\x75\x9a\xdd\x7e\x72\xa4\xfc\x58\xc2\xcf\xe0\x6a\xe4\x84\x02\xbf\xee\xa0\xda\xb2\x54\x2c\xd0\x3b\x48\x7a\xa9\xf9\xf7\x68\xef\x18\xa7\x71\x62\x37\x6c\x3e\x17\x4c\x92\x4f\xb2\xf8\xdf\xad\x09\x79\x94\x9d\xa4\x12\xe5\x3d\x97\x60\xab\x28\x20\xe9\xc3\x26\xe5\x93\xad\xaf\xbc\xc2\x88\x76\xf5\x2b\x93\x4a\xa1\xeb\x54\xae\xff\xf9\x0e\x43\x78\x09\xe3\x35\xb7\xcd\x96\xa7\x98\x2d\x68\xa9\xdc\xa1\xfd\xef\x36\x39\x3c\xdf\x98\x84\x26\xe2\x6e\xf4\x86\x30\x59\x1f\x4e\xcd\xf0\x95\x79\xe7\xe1\xd7\xcb\xcd\x26\xb4\x7e\x10\x9e\xdf\xc3\x9e\x83\xbc\xe5\x2c\x79\xdf\x06\x04\xe4\xd0\x54\xa3\x39\xb7\x66\x88\x48\x80\x8b\xb6\x28\x28\x3d\xd5\x09\x9f\xdb\x37\x95\x1f\x1d\x79\xa9\x9d\xc7\x3d\xe4\x47\x9e\x3f\x45\x9c\x8b\xd0\xe9\x3d\xd5\x18\xaf\x8e\x92\x31\x18\x9e\xbe\x95\xec\x0d\x5a\x2f\x12\xdc\xb2\x9b\xa5\x45\x96\x97\xce\x8b\xc5\xe7\xca\x0f\x48\xd2\xe5\x01\xbd\xab\xc5\xb1\x9d\x23\xdd\x0a\xa7\x35\x87\x7b\x39\x4a\xa5\xae\x27\x3a\x24\x78\x29\xdd\x66\xe4\x8f\x97\x6a\xf1\x98\xe3\x3e\x14\x08\xe2\xf1\xfa\xfe\x31\x79\x01\xfd\xe3\x29\x64\xc0\xc2\x82\xb4\x95\x2c\x81\xd1\xaf\x44\xa4\x89\x02\xd2\x17\x92\x80\xfb\x53\xc0\x87\xc5\x23\x6d\x93\x94\x36\xaf\xb6\x1c\x51\x95\x6b\xd2\xe9\x7a\x86\x8d\x28\x7a\x86\xec\x15\xcf\x50\x38\x3a\x8d\x95\x5d\x5a\xaa\xd6\xf5\x7e\x6a\xc4\x18\x57\x2a\xd1\x51\x68\x3f\x9f\x27\x24\xf5\xa0\x1a\x56\x42\x56\xf2\x56\xe5\xd5\x9d\xa8\x3b\x79\xf0\xbc\x2c\xba\x59\xd9\x22\xe1\xc6\xef\xa0\xbe\xaf\x02\x77\x9f\xaf\xbd\xcb\xb0\x7e\x92\x4e\xf4\x49\x42\x86\x9e\xa4\x2a\x7b\x9a\xa5\x5d\x53\x0c\x90\xd6\x20\xad\x3b\xe1\x5e\x81\x1c\x13\x1e\xa6\xd8\xb4\xa6\xb4\x79\x31\x13\xda\x53\xb7\xd0\x18\x40\x29\x07\xf4\x19\xf1\xbb\xa1\x67\x58\xe6\xb1\x49\xf6\x86\xaa\xae\x68\x8c\x79\x7c\x37\x01\x4e\x5a\x5e\x1f\xe8\xbb\xcc\xe0\xb9\x88\xb9\x46\xcc\x06\x5d\x80\x3f\xae\xdb\x93\x8c\x93\x7d\xd5\x80\x54\xdd\xd8\x96\x27\x92\x5e\xe5\xd6\xea\x65\xb6\xba\xbe\xeb\x7a\x4c\x2a\xa7\x10\x94\x06\xfe\xdb\x20\xa8\xbb\xf9\x6c\x87\x2a\x8f\x67\xeb\xb8\xc1\xbf\xb4\x8a\x7d\x4d\x0b\xcb\xee\x77\xb4\xdd\xc6\x6d\x46\x37\xd6\xdd\xa8\xf3\x78\x9e\x5d\x9d\x10\x1e\xef\x9a\x62\x9e\x2e\x2c\xb6\xcb\xb8\xf4\x8e\x1a\x58\x25\x6e\x52\x23\xe1\x43\x56\xcd\x3a\x5f\x6b\x4d\xad\x66\xab\x2d\xaa\x7d\x9f\x93\x1c\x5e\x39\x01\x81\xde\x0d\x62\x86\x23\x5b\xa2\x8e\x89\xaf\x96\x98\x49\x4e\x30\xc1\x14\x42\xeb\x66\xab\xaa\x0d\x84\xcc\xf1\x5d\x17\x34\x89\x2d\x96\x0b\xa6\xe4\x03\xa4\xe1\x73\xac\xc9\x99\xb6\x57\x05\xf3\xee\x17\x80\x55\x90\x5e\x3d\x6a\x25\x90\xb1\x47\x30\x7d\xb3\x46\xe2\x5c\x75\xe6\xce\x3e\x23\x41\xa6\xa3\x03\xbc\xba\x14\xec\xb9\x77\x7d\xa9\xbf\x9b\xdb\xa2\x6b\xd3\x5e\xd6\x22\xf7\xa6\x4b\x13\x2e\xb3\x36\xd4\x4e\x06\x36\x89\xdf\x68\x91\xa0\xf3\x65\xc2\x90\x06\x87\xc9\xd1\x20\x4e\xa4\xec\x8d\xd2\xfb\x49\x06\x6d\x9f\xa4\xad\x76\x18\x17\xae\x25\xe8\x56\x15\xad\xc5\xb9\x19\xa1\x45\xba\x9d\x3b\xd0\x17\xdb\xb9\xed\xd9\xe1\xc8\x8b\x7b\xa9\x92\x48\x75\xf7\x6a\x9e\x13\x7e\x60\x34\xb0\xf9\xa6\x49\xa5\x37\x29\x0e\x78\x51\xdd\x0f\xaf\x81\x19\xd0\xdb\x4a\xcd\x50\xea\xfd\x62\x5e\x40\x22\x0c\x67\x9b\x34\xf0\xd4\x86\xda\x32\x2a\x05\x14\x04\x39\x9e\xda\x97\x16\x16\x80\x0b\x92\x67\x45\x8a\x38\x87\xbc\xec\xca\x53\x1e\x37\x13\x27\x89\xe3\xba\x49\xf3\x92\x35\x07\xae\x93\x70\x2f\x68\xc5\x8a\x40\xa9\xb5\x68\x8b\xee\x2c\x77\x9e\x05\xe1\xed\x9b\x03\x64\xf0\x43\x2d\xe9\x9b\x94\x73\xe4\x71\x22\xa5\x5d\x6f\x19\x52\x4d\x13\x05\x79\x86\xdd\xac\x18\x89\xde\x72\xa0\xb6\x41\x72\x4e\x8e\x6b\xcb\xc6\x46\x26\x62\x8d\xea\x73\xed\x7e\x5d\xe9\x01\x3b\x1f\xda\x91\x97\xda\xdd\x2c\xa9\x5e\xbe\xb7\xe3\xbb\xc4\xa4\x73\x5f\x6d\xb7\x6f\x40\xde\xde\x21\x47\xdd\x33\xfb\x1f\x7f\xa9\x43\x48\x6b\xf1\xe0\xc3\x3c\xfb\xfd\xc8\x87\x66\xff\xf4\x33\x2e\x82\x42\x86\xf1\x43\xb7\x0a\x8a\x87\xd2\x94\xba\xfa\x97\xda\xbd\x2a\x04\x58\x5e\x16\xd2\xc2\xdc\x36\x31\x9c\x91\x2b\x21\x29\xbf\x44\x9e\xbe\x07\x50\x7a\x45\xd3\x98\x89\xe5\xa3\xc4\x6c\xd9\x9e\xdb\x1c\xd4\x21\x3b\xdc\xd7\x5c\x87\xea\xa4\x08\x24\xbd\x52\xfb\xc1\xe5\x47\xf7\x26\x24\x49\x7e\xcd\xb5\x10\x91\x83\xec\xf2\x25\x88\xde\x58\xde\x87\x87\xb2\x7b\xf4\xf1\xf9\x4f\x24\xec\x25\x5b\x79\xdc\x15\xb0\x3e\x16\x86\x5b\x51\x90\x72\xfa\x80\x31\x14\x97\xea\x9e\x55\x76\xbf\xab\x9d\xa0\x61\x8b\x1f\xc3\xc8\x95\x07\x23\xff\xe0\x2e\x15\x0f\xe9\x06\xb5\x75\xb1\x45\xe3\x6f\xee\xd7\x39\x82\x68\x6c\x63\x45\xbc\x10\x05\x71\xae\x33\x11\x75\xe9\x7f\xe2\x79\x54\xf6\x8d\x58\xc9\x76\x8b\xaa\xcf\xc0\xc4\x9b\x73\x14\xd0\xa5\x59\xfe\x84\xeb\x94\xcb\xb7\x4f\x88\x70\xf8\xe3\x28\x88\xfd\x00\xd6\x8a\x6c\xe0\xac\x93\xbd\x43\xc5\xfb\xbb\x40\x5e\xfb\x4f\x07\xfa\x1d\x3b\x7c\xcc\x38\x52\x34\x72\xc9\x9f\x7a\xe6\xe2\x30\x4b\xcb\x7e\x36\xb4\xa2\x85\xab\x51\x00\xcd\xc4\xb3\x8d\x5a\xa7\x03\x23\x01\x20\x1e\xc2\xfb\x1c\x11\xdc\x42\x2a\xa2\xb3\x3a\xc8\xb0\x39\x0a\x79\x57\x7a\x22\xa1\x9d\x7f\x89\x7d\x52\x2f\x45\x9f\x25\x0e\x4b\x3e\xca\x60\xac\xc9\xe2\x90\x92\x49\xe2\xb6\xb6\x71\xbf\x72\x12\xd1\x2a\x28\x5d\x4f\x84\xe7\xbf\x1f\x51\x7b\xf8\xf7\x7d\x2a\xdd\xcf\xad\x4d\xe3\x62\xe0\xa6\x35\x1b\x61\xab\xfa\x80\xf7\xe6\xb2\xbd\xd8\x94\xb9\x2c\xce\x28\x50\xdd\x21\xbe\xc0\x1d\x0a\x34\xcc\xb8\xcc\x1c\xe8\x52\xbb\xb0\xc4\x03\x0c\xe1\x40\x8d\x9d\xe4\x44\x20\xbd\x5e\xcc\x39\xf6\x6d\x3a\x49\x96\x4a\xb7\xa9\xec\x5c\x98\x32\x2e\x60\x85\x5a\x45\x03\x18\x22\xe0\xb4\xc8\xf1\x94\x14\xac\x4e\xaf\x6e\x56\x94\x88\x68\xd4\x81\x33\xe0\x49\xae\x82\x97\xc7\x96\x98\xb9\x29\xed\xa7\xdd\xec\x51\xb8\x08\x95\x4c\x1e\x4d\x76\x7f\xe1\xd1\xbd\x28\x78\x01\xa1\x1d\xea\x2e\x61\xfe\x59\x07\x32\xc4\x40\x90\xa5\x04\xc9\xcf\xf5\x7a\xa5\xa8\xca\xf3\x51\x01\xbe\x01\xf8\x1f\x1e\xea\xbb\x64\xd6\x07\x6f\x60\xc4\x39\x5f\xaf\x09\xdd\x63\x02\x32\x84\x55\xcb\x5f\xc4\x42\x04\x5d\x4f\x45\x1b\xf1\x5a\x54\x42\x3f\xac\x85\x65\x6e\x7a\x36\xdf\x53\x2d\x0e\x1a\x84\x05\x00\xa7\xb8\x78\xab\xac\x67\x48\x92\x8e\x61\x69\xc1\xed\x8b\x9c\x95\x9c\x4c\xed\xf2\x5e\x55\xb3\xd7\x22\x79\xdb\x7f\x43\x75\x9e\x7f\xc3\x1a\xa1\x6f\x8c\x12\x93\x4a\x65\x6b\x69\x29\xa0\x2a\x03\xcd\x91\x8a\xa4\x1b\x26\x89\x7b\x4e\x43\x10\xf5\xf0\x1f\xa2\x74\x89\x02\xca\x55\xd7\x6d\x93\x7f\x88\x48\x31\xef\x6a\x14\x3a\x88\xe3\x52\x38\xcf\x6e\x77\x01\xe0\xea\x3d\x42\xf7\x5f\xc3\x34\x17\xa5\x08\xdc\xa9\xc2\xae\x5b\xde\x94\xe0\x92\x0f\x1f\x56\x6d\xda\x1d\x60\x19\xf7\x40\x65\x6f\x60\x7f\x23\x0a\xfd\x92\x1f\xd0\x70\x1b\x58\x93\xcf\x85\xd6\xe7\x7f\x17\x91\x04\xaf\x80\x17\x45\xdb\xc7\x3d\x07\xd4\x02\x04\xc9\xab\x32\xf3\x3b\x63\xdc\xd7\x5e\x6b\xe7\x26\xb7\xd4\x76\x38\x4d\x6d\x87\xd3\x9f\xb8\x11\xe5\x16\xb0\x6b\x4f\xfb\xbc\x4f\xc6\x10\x52\xca\xd1\x0d\x71\xe7\xab\x5e\x99\x6f\x6f\x1a\x82\xf7\x7b\x4b\x52\x9f\xd5\xff\x51\x14\x52\xd1\x32\xcf\xc6\xab\x89\x75\x37\x8e\xcc\xee\xb8\x7b\xf0\x78\x49\x1f\xe2\xbe\x91\x6d\x5f\x9b\x04\xaa\x83\x24\x20\xaa\x31\x1e\x1a\x20\xc3\xb8\x28\x04\xf9\xf9\x6a\x50\xdc\xf6\xb4\xc1\x3d\xae\x2d\x8c\x92\x2a\x17\x17\x96\xc7\x6f\xb4\x88\x32\xdc\xda\x0e\x7d\xac\x56\x27\xf4\xee\x8b\xd1\x38\x17\x3b\x5d\xd4\x88\xef\x92\xb6\xc2\xdd\xa9\x40\xd5\x61\x95\xca\x3c\xb6\x1b\x26\xc1\xca\x8f\xc8\x05\x84\x5d\x39\x6e\xdc\x67\xde\xb4\x79\x46\xae\x7c\xe7\x9d\x66\x9b\x6a\x09\x72\xe2\x39\xb4\x42\x29\xd1\xc5\xbf\xe5\xd5\xcf\x2e\x53\x63\x70\xdd\xa4\x65\x96\xe3\x6f\x0f\x7b\x2c\x7e\x6b\x39\x40\xf1\x9f\xf6\xb0\xa4\xac\x6b\x92\x19\x42\x64\x3e\xa4\xf1\x76\x81\x49\xf0\xc4\x34\x7d\xdd\xe6\x85\xdd\x72\x3d\x14\xdf\xfe\xf1\x8e\xba\x3f\x61\x84\xc1\x4d\x62\x1d\x88\x1f\x3c\xc0\x10\x2a\x8f\xe5\xe6\x28\x92\x97\x1b\x24\xdc\x7e\x03\x09\xbf\xfc\x43\x53\x01\x44\xd2\x08\xa9\x67\x7a\xf9\xf9\x20\x45\x3f\x35\x3d\x5c\x97\xcd\x88\xcd\x0a\x5e\xe2\x37\xe9\x85\x7e\xd3\xef\x97\x89\x19\xa7\xdd\x01\x70\x64\x5a\x1d\x7d\xcc\x20\x81\x7f\x09\xc4\xb6\x0a\x11\xb3\xbf\xb8\x1b\xa8\x1a\x98\x12\x0f\xd8\x94\x65\x22\x85\x54\xd9\xfe\x22\xde\x0a\x9f\xa5\x8e\x4b\xd2\xb3\xb9\x78\x18\x21\xe9\xba\x3e\xa9\x75\x19\x82\x28\xc7\x03\xf6\x6d\x30\xc5\x13\xee\xc1\x83\x61\x71\x9b\x32\x63\x89\xde\xfc\xde\x53\xdd\xbf\xdf\x49\x17\x94\x66\xf9\x2e\x8a\xc1\x08\x1e\x3e\xc4\xed\xa2\x16\x70\x9b\xec\xde\xd1\xca\x40\xb8\x7a\x8d\x78\xb2\xf6\x0d\xd3\x2d\x5d\x05\x18\x95\xb9\x13\x24\x83\x70\x82\x07\x41\x51\xd8\xbc\xd4\x98\x01\xb7\xf4\x21\xcb\x62\x7c\xd8\xa4\xdc\x57\xe6\xd6\x14\x63\x09\xdf\xc8\x46\xea\x90\x9f\x31\x0d\x9c\x8c\xa2\xdc\xf2\xf5\x6e\xdc\xe2\x71\xa2\x98\x1e\x27\x84\xd8\x70\xab\x70\xd2\xb9\xe3\x42\x54\x81\x29\x8b\x59\xf4\x50\x6d\xaa\xa8\xd9\x5e\x5f\x5b\xe1\xd2\xcf\x88\x02\xa2\xf1\x52\xad\x1c\x53\xc6\xb9\x1d\xda\xb4\x9c\x65\x55\x69\xa9\x5b\xa2\xd0\xf4\x03\xdc\x09\x5e\x8f\x60\xfd\xb1\xf6\x5f\xf3\x43\x72\x33\x2e\x07\xbd\xdc\x6c\xb6\x82\x55\xe5\x4f\xdd\x4f\xca\xf1\xd4\xfd\x3f\xff\x7c\x95\xca\x8d\x87\x69\x8b\x32\xa2\x9f\x50\x08\xf4\x13\xe2\x28\xd9\xb4\x97\xd8\x42\x6f\x1e\x89\xce\xbf\x73\x2f\x50\x8e\xa9\x01\x57\x66\x5b\x59\x69\x90\xf3\x73\x11\x46\x7d\xca\x43\x1d\xcf\xa4\x69\x36\x76\x13\x3e\x74\x26\x80\x4f\xc5\x42\xf1\x2d\x92\x5c\xf8\x96\xc3\x0b\xab\x28\x75\x58\xa9\xcd\x5f\xf9\x6b\x54\xc7\x42\x85\x53\xb9\x51\xcf\xd4\x44\x39\x86\x33\x55\x40\x83\xa9\x7f\xc5\xe5\x13\xc8\x1b\xde\x77\xf7\xa1\xa6\x40\x53\xa6\x5f\x8b\xed\x24\x53\xd3\x2f\xf5\x8b\xac\x3e\xa0\x3e\x92\x24\x68\xb2\x7c\xb8\x45\x0a\x08\xd2\xeb\x92\x93\xed\xcf\xd5\x21\x7f\x0e\xad\xf5\xf2\xfc\xe2\x53\x64\x85\x52\x13\x07\xbe\x49\xc6\xf9\x7b\x3a\x4c\xc1\x70\x73\x55\x6d\x94\xdc\x00\xf4\xd6\xd1\x4b\x4b\x5e\xab\x28\xa2\xba\xd9\x59\x37\x8b\x91\x59\xa0\xb4\x88\x22\xb0\x28\x82\x63\xfc\x22\xe4\x95\x5f\xbc\x5b\x2b\x67\xda\xbc\x7c\xd2\xfd\x10\x3e\x06\xb3\x41\x20\x78\x6f\x47\x54\xc7\xf8\x26\xa3\xda\x2f\x4e\x6a\x0a\x7d\x04\xfa\x91\xca\x9d\x7c\xc1\x24\x94\xce\x6e\x4e\x88\xc7\xf2\x4d\x56\xf9\xbf\x4f\x92\x55\x37\x69\x7f\x97\x6a\xe6\x4c\xa0\x5b\xa2\xb7\x83\xa6\xcb\xc7\x35\x4a\xeb\x84\x3f\xb6\x11\x6f\x88\x8d\x91\x98\x58\x93\xba\x34\xc2\x67\xd4\x9d\xdf\xa7\xc4\x3a\x8f\x8b\xf5\x7d\xac\xe8\x55\x7d\x5c\x7d\x74\x6b\xea\x5e\xad\x1d\x32\x6a\xd8\xa6\x76\x61\xea\x7a\xa5\x90\xc5\x23\xfa\x0f\x98\xed\xf2\x0f\x0d\xc8\xa4\xf6\x00\x5d\x6d\xa4\xdf\x9e\x84\x11\x34\xb0\x3f\x9a\x84\x28\xf2\x76\x93\x8d\x8e\x7d\xa3\x6b\x0b\x48\x0c\x60\xe9\xf8\x37\x54\x3d\x84\xce\x04\x26\xe8\x49\x52\xfc\x18\x66\xdd\x75\x71\x53\xf2\x61\x52\xdd\x39\x95\x30\x3a\xa6\x5b\x66\xf9\x5e\xf7\x66\xd1\x29\x05\xab\x06\xb0\x89\xdf\xa7\x46\xf6\x5d\x07\x16\x54\x3f\xaa\x56\xf8\x7b\x8c\x1e\xdc\x1d\x9c\x6c\xb0\xd7\x5f\x9a\x0a\x2a\x0f\x2e\xb7\xbb\x66\x68\x73\xf5\x7e\xc7\x22\x74\x8e\x60\x99\xe7\x30\x93\xdd\x5f\x67\xce\x08\x6d\x9c\x8a\x8e\x51\xb5\xdc\xc9\x8c\x71\x1f\xd0\xd9\x43\xba\x91\x71\x6a\x73\xe9\x5a\x20\x59\x42\x92\x2b\xc7\x2c\xe5\x62\xb6\xe2\xb4\xff\x54\x75\x43\x18\xce\xd7\xdd\xa3\xc4\xf1\xc5\xa8\xf5\xd5\x45\xcf\xc1\x6c\x79\x2b\xbc\x07\x64\x80\xff\x63\x0c\x1c\x68\xb8\xde\x8c\x68\x96\xdc\x45\xde\x22\x27\x48\xe9\xb5\xf0\x42\xb6\x13\x37\xdd\x76\x8f\x46\xd0\x8f\x26\x81\x68\x36\x1d\xcd\x1f\x5c\x6e\x97\x03\x53\x76\x07\x36\x8f\x8b\x21\x61\xe5\x25\xd1\x96\x13\x96\x73\x2a\x4a\x93\x96\xe2\x08\xea\x15\x56\x57\x42\xd8\xd0\x14\xab\xf6\x0d\x42\x7d\x8d\x41\x31\x4d\xe4\x78\x8a\x2e\xbb\x78\x84\xda\x7e\x33\x24\xba\x87\x71\xe6\x25\x09\xfc\xb6\xf3\x31\xf9\x08\x3e\x9f\xdb\xfd\x01\xcd\xb8\xdb\x69\x89\xca\xf1\x76\x20\x71\x7e\x63\x42\x24\xe1\x8b\x53\x2e\xb5\xe8\xb5\x5d\x8f\x48\x7e\x4a\x08\xd2\x64\x49\x7f\x28\x58\x60\x78\xa2\xe8\x37\x3c\x6f\x69\xd5\x6e\xd8\x3c\x01\xa0\xcf\xeb\x3b\x2c\x2d\x71\xa1\x40\x15\x5a\xef\x50\xa8\x53\xc6\xfd\x41\x59\x7d\x6c\x07\xff\x1d\x1f\xfb\x93\x88\x24\xc0\xaf\x35\x09\x23\xe4\x16\x92\x4c\x73\x44\xe7\xbe\x1d\x6a\xa9\x5f\x38\x3d\x21\xaa\x2d\x6e\xdc\x53\x52\x82\x14\xc1\xb9\x26\xc2\x9b\x29\x8a\xb8\x9f\x62\x13\xd7\x8a\x5a\xf5\x79\x1d\x80\x9a\x1e\x74\x4d\x9e\x64\x2a\x99\xa7\x4d\xad\xd0\x71\x7c\x7f\x42\x48\xa6\x5b\x44\x76\x2b\xcc\x9a\xed\x8f\x4d\xde\x93\xba\x8d\x44\x98\xa4\x50\xf5\x2e\x37\x12\x4c\x6e\x92\xc4\x62\x42\xe2\x9f\x3f\x22\x0f\xd4\x8f\xd8\xd0\xcb\x6e\xd8\xd4\xf1\x4d\x3d\x8a\x29\xa8\xf0\xa0\x0c\x2e\xff\x10\x91\x56\xcf\x75\x02\x2a\xf4\x53\x3b\x43\x93\x9d\xfc\x1f\x8f\x4e\x6a\x5a\x99\xfa\x0c\x8a\x41\xd6\x5d\x17\x15\x6b\xcf\x65\x0d\x62\xde\xc7\xa2\x27\x03\xa3\xc1\x60\x66\x60\x5b\xbe\x3e\x09\xd5\x93\xe0\x36\xd7\xdb\x8c\xab\x68\x4b\x80\xb5\x68\x20\xcf\xa2\x88\x23\x27\x9d\x26\x3f\x2c\xb0\x60\xf0\xb1\x57\x83\x3f\x73\xd8\xb5\x2f\x13\xb3\xa2\x8a\x3a\xd3\x6c\x35\x31\x45\x99\x0d\x8d\x23\x84\x6b\xc5\x3a\x10\x02\x76\x6d\x07\x95\x2b\x53\xed\xb1\x3e\x0f\x3f\x1b\x91\xd4\xcf\x21\xb7\x34\x6a\xa0\x41\xad\xe2\x71\xbe\x46\x4a\xfd\x28\x28\xaa\xc8\x58\x78\xdc\xab\xb9\x69\x51\xf9\x1c\xb9\xb0\x1c\x13\xd6\x23\xb1\x28\x22\xcc\xd6\x0a\xfb\xe4\x28\x09\xc2\x0f\x62\x80\x3b\x6c\xac\x38\x2d\xd4\x78\x70\x19\x15\x4f\x37\x9c\xb0\x03\x03\x65\x20\xc7\x6c\x31\x9f\xda\x27\xdc\x8f\x60\xf6\xee\x81\xe0\x03\x76\xd0\x27\x5c\x54\x86\x27\x72\x17\xcb\x07\xaa\xd2\xdf\x71\xb1\xaa\xb6\x47\x6a\xf2\x38\x61\xc1\x39\x15\x05\x4a\xe1\x49\x0a\x38\xce\x34\x1a\x49\xe4\x71\xcf\xe2\xd6\x3d\x31\xfb\xe5\x20\xe7\xea\x7e\x02\x73\xfe\x11\xb5\xd7\x3f\xf6\xd9\x41\x37\xcb\xb3\xd4\x96\xc2\xac\xd4\x8f\x61\xd6\x6a\xc7\xc4\xfb\xfe\x98\xbc\x6b\xc5\xa3\x8c\xf6\x9b\x45\xbf\x0e\x4c\x23\x3c\x5e\x6d\x57\xd9\xc1\x1e\x52\xd9\xf8\xc0\xdd\x91\x2e\xa0\xdc\xdd\x6a\x2d\x2c\x04\xd7\xce\x6a\x06\x62\x3a\xce\x74\xdc\x3c\xc5\x22\x7d\xac\x11\x9e\x64\xed\xd0\x57\x91\xd4\x2c\xb6\xba\x59\xd5\x1e\x68\x08\x12\xc4\x20\x7e\x26\x10\x42\x80\xb4\x56\x9b\x04\xd2\x6f\xbe\xde\x80\xb7\x59\x69\x9b\xd5\x71\xda\x53\x14\x85\x0f\xcc\x7d\x8b\xe0\x66\x90\xbe\x30\xa9\xe9\xab\x36\x1a\x42\xca\x7d\xdb\xd4\x3a\x11\xe7\x1e\xa4\xe5\x8f\x88\x0c\x74\xdf\x03\xec\x36\xcd\x16\xc9\xbe\x09\x35\x55\x45\x6c\xeb\x60\x95\x2c\x2d\x50\x23\x43\x79\xe0\x06\x7b\x77\x5c\x24\x5c\xde\x31\x0a\xf6\x77\xc1\x0a\x01\x8b\x52\xab\x69\x0d\xf9\x42\x35\xcb\x7a\x9e\x28\x8d\x92\xf1\x55\xb2\x8b\x86\x5c\xae\x6c\x98\x0d\xc8\xdf\x57\xdb\x85\x89\x13\xff\x92\xa4\xc2\xe3\xae\x47\xab\x3d\xde\x17\x2b\x77\xa2\x57\x33\x01\xb7\x8c\xe9\x84\xbf\xdb\x8d\x6b\x45\x6d\xfd\x8a\x17\xfe\x1d\x25\xa6\xeb\x72\x65\xf7\x9c\x94\xd5\xc5\xed\xb8\x9d\x63\xe0\xb5\xd7\xda\x45\x69\xca\x58\xba\xdc\x78\x31\x0f\x26\xe1\x25\x3d\x98\x0a\x96\x17\x8f\xb4\xf3\xd0\xd3\x97\x82\x2b\xa6\x98\x57\x3e\xf2\x32\x83\x0f\xbc\x3d\x6a\x6e\xbb\x59\x3f\x8d\xdf\x34\xab\xc2\xb7\x14\x34\x76\x0d\x99\xfd\x29\x46\x66\x5b\x9b\xcf\xb1\xbc\xd5\x64\x67\x06\x82\xcc\x17\x85\x12\xb4\x79\x6f\x33\x32\xf8\x52\x13\x86\x61\x73\x60\xca\xd9\xd6\x2b\xaa\xbb\x7e\x96\x1b\x09\x88\xa9\x51\x72\x39\x4f\x01\xf9\x65\xa2\x92\x65\xae\xb9\x5f\x3c\xe9\x7e\x07\xfb\xcd\x5d\x59\x28\xe4\xac\xfa\x92\x47\x22\x03\x84\x38\x10\xf2\xc4\x02\xc4\x80\x63\xcd\x15\xb7\x3e\x21\x5f\xbb\x5d\xc5\xfb\x8f\xae\xf0\x22\x22\x63\x11\xb9\xe1\x35\x94\xf2\x54\x26\xba\x21\x79\xd9\x88\x8b\x58\x73\x70\x75\xc5\xa5\x46\x3d\x1b\x55\xae\xe5\xb6\x8a\xaa\xc8\xa4\xed\x14\xc5\x23\xd7\xc9\x30\x61\xda\xfb\x7c\x69\x29\x48\x4b\xb7\xa6\xa4\xa5\xe5\xd8\x4f\xd7\xbe\x2d\xf7\x87\x8e\x33\xc2\x55\x84\xe1\x77\x11\x3e\x7a\xdd\xb3\xea\x9b\xb0\xa5\x3e\xe7\xb6\x57\x1d\xac\x24\x09\x78\x81\x69\x7e\xb3\xae\x07\x8e\xb7\xff\x59\x57\xa1\x56\x32\x88\x7b\x84\x68\x8e\x3f\x9a\x30\xf7\xa2\x28\x33\x70\x2f\x0e\x2e\x4b\x36\x75\xd4\xbd\x14\x39\x9e\xba\xd5\x2a\x81\xca\xba\xeb\xa6\xcc\x32\x79\xae\xa8\x55\xde\x22\xb4\xdd\x2d\x3f\xef\xd6\xac\x29\xc7\xc1\x04\x51\x50\x56\xee\x4f\x15\x71\xf5\xac\x0f\x85\x93\x37\x57\x6d\xde\xd7\x98\x10\x51\x14\xf0\x45\x35\xc0\x24\x26\xd6\x95\x26\x64\x5c\x20\xf4\x42\xd3\xca\xd7\x25\xab\xeb\x94\x93\xa9\x42\xcd\xe2\x91\xf6\x6a\x16\x27\x64\xd0\x7a\x81\xa4\x04\x2f\x34\x68\x10\x3a\xde\x27\x30\x6a\xf5\x15\x0b\x0c\x65\x1d\x3d\x3b\xf9\x01\x5f\x6a\x0f\xe2\xfe\x60\x26\x54\x39\x8f\x23\x1d\xd3\xbb\x0b\xa6\x10\x3f\x8b\x9e\x53\xec\xb4\xed\x0e\xd2\x2c\xc9\xfa\x71\x57\xc0\xc4\x58\xab\x51\xd6\x50\x43\x78\x37\x0d\xd0\xc2\xfd\xb8\xd1\x52\x63\x60\xcd\xc8\xe6\x04\x7b\x13\xdd\x4e\x49\x93\xa3\xd0\xe6\xde\xa6\x18\x66\x35\x4b\xe7\x08\x4d\x7b\x9f\x60\x9f\xfb\xb6\x43\x92\x35\xd7\xa9\xa2\x16\xed\x86\x71\x4f\x67\xaa\xe0\xfa\xf2\xfc\xa2\xca\xca\xb7\x28\x67\x67\xbd\x88\xe3\x53\x46\x02\x0b\x0b\xed\xac\x6b\x4d\x9a\x89\x50\x08\x59\x87\xc3\x0b\x2f\xa8\xfd\x87\x96\x30\x14\x8b\xbd\x99\xd1\x3d\x97\x20\xc8\x71\x33\xc0\x7b\x90\x8d\x20\x4b\xad\x15\x3d\x8c\x43\x24\xb7\x73\x8c\xe8\x12\xac\xb0\xfc\xcb\xf6\x3e\x2d\xee\xcf\xb8\x67\xca\x7e\x3b\x68\x76\x3c\x70\x11\x9b\xfa\x7d\x90\x4d\xfd\xb8\x88\x53\x5b\x14\x4f\x07\xf9\xa2\x1f\x10\xa9\x42\xa2\x27\x24\x75\x7b\xd1\xfe\x45\x91\xad\xb5\xed\x16\x67\xe4\xbb\x1f\x93\xa2\x20\x14\xe1\xf0\x2a\x76\x8b\x05\x91\x32\xf6\xaa\x58\x1d\x3f\x72\x16\x0d\x57\xac\xbb\xc2\xd1\x07\x75\x50\x44\x03\xd1\x7a\x71\xcd\x81\x17\x3b\x9f\x22\x18\xa4\xd9\xb0\xc9\x93\x01\x30\xf7\x77\x27\x33\xaf\x78\xc7\xc0\x0f\x26\x44\x68\x3f\x13\xb1\x9c\xf5\x2e\x28\xe7\x20\x90\x42\x2c\xe0\x8d\xcc\xa9\xff\x10\xb5\x7e\x43\x1b\x03\x27\x26\x01\x34\x75\x81\x59\xd3\xc7\xb0\x08\x60\xe0\xee\xde\x9e\x02\x67\x2d\xb6\xd3\x6c\x43\x12\x3e\x6c\xd4\x70\x8c\x97\x63\x42\xa4\x96\xb6\x28\x67\x43\x5a\xb7\xdf\x8d\x62\x84\x2e\x67\x99\xa1\xb0\x4d\x82\x27\x97\x1a\xad\xdc\xd7\xc6\x79\xea\x2c\x76\x98\xd2\xf8\x3e\xde\x9e\x16\x03\x1b\x82\x85\x71\xba\x66\xe2\x9c\xbc\x71\x2e\x92\x8d\xea\x45\x66\x8b\xc6\x6f\xda\x3d\xd5\xd5\xa1\xa3\xfb\xb7\xb0\x31\x60\x57\x05\x46\x07\x0b\xc1\x0f\xb1\x31\x48\xf3\x9f\x59\xa0\xef\x4e\x42\xaa\x75\xac\x81\x77\x3e\x84\x82\xc0\x4c\x80\xcb\x8b\xfa\xb6\x2e\x2a\x01\xe9\x77\xaf\xc1\xf8\xb0\x1d\x17\x89\x49\x55\x27\x11\xe0\xee\x13\x0c\xd4\x9f\x2e\xdf\xac\xcc\xb7\x47\x71\x3a\xca\xe2\xd4\x53\x41\x51\xe3\xba\x41\xf5\xae\x1b\xd4\x85\x5a\x13\x0b\x3d\x54\x2b\xae\x92\x16\xc4\x55\x9f\x50\xbf\x6e\x86\xde\x50\x1f\xf1\xef\x7b\x2c\x1a\xf6\x5e\xb0\x36\x49\x8b\x71\xee\x7b\x61\x32\xdd\x30\x7e\x31\xb2\xae\xb0\x09\xd5\x63\x9f\xe2\x40\x74\x68\x5f\x35\x5f\xc9\xe0\xf6\x90\x6c\xdf\xbb\xb6\x59\xd1\x8c\x29\x2f\x4f\x76\x02\xd0\x11\x9a\x66\x58\x21\x9f\x00\xbb\x17\xdb\xe6\x51\xac\xc9\xca\x9d\xe5\x3a\x7a\x2f\x4b\xf7\x91\x77\xd6\x09\x04\x67\xaa\x1d\x5c\x7d\xb7\xf4\xd3\xdc\x32\x87\x08\xf3\x9e\x9b\xf1\xea\xcf\x15\x20\xda\x08\x38\xb0\x8d\x08\xd1\x5c\x8d\x00\xf8\x27\x07\x63\x6c\x55\x44\x07\x57\x6b\xc8\x5b\x82\xe6\x42\xa2\x7a\x6e\xa7\x0f\xdd\xe2\x91\x6a\x56\x3c\x8b\xfb\x57\xe9\x0e\x77\x9f\x4a\xd4\x0a\x49\xeb\xe5\x88\xdc\x91\x6f\xa2\x0f\x81\x8c\x59\x0c\xfa\x30\xca\x4f\x90\xcb\x1c\x9e\x9f\x8a\x0e\xb9\xd7\x8b\x90\x55\x44\xfb\x95\x80\x4e\x88\x2a\x61\x3a\x78\x36\x7c\x20\xb1\x1d\x75\x4b\x33\x89\x13\xf9\x9f\x8f\x48\xf9\x20\xa8\x58\x14\x63\xdd\x47\xb1\x2c\xa3\x09\x81\xdf\x6f\x21\x13\x55\xea\x6b\x83\xc3\xb6\x29\x0a\x3b\x5c\x0d\x79\x0e\x22\xd7\x13\x84\x9a\x3b\x41\xc0\xf6\x55\x93\x98\xb4\x6b\xf7\x11\x5b\x07\x0d\x31\x3c\x2d\x6c\x15\x04\xe9\x5a\xf6\x85\x00\x77\xeb\x58\xd1\xc1\x69\xc0\xb2\x26\x44\x30\x02\x49\x85\x96\x31\xd9\x69\x64\x45\x5c\xc6\x1b\xae\x96\xf5\x68\x9b\x78\x43\xf8\x71\x1c\x5f\x68\xb2\x97\x27\xa3\xad\xb8\x28\x49\x95\x18\x19\x1a\x16\x36\x29\x6a\xa2\xbb\x35\xb3\x1d\x5a\x2b\xa6\xef\xc8\x26\x4f\x11\x62\xf2\x63\x74\xc3\xd5\x9a\x9a\x8a\xbc\xd7\x58\x14\xf8\xb8\x8c\x47\x84\xca\xba\x71\x7b\x65\x41\xbf\x74\xa1\x9f\x8e\x5e\xc7\x7b\x6e\xa6\x68\xcb\xab\xe5\x53\x9d\x73\x58\xf7\x94\x7c\x19\x90\x2b\xdf\xad\xcd\x8e\x71\xb1\x4e\x30\xe3\x53\x04\x33\x3e\xf5\x89\x60\x18\x67\x0e\x0b\xff\x09\xd1\x9b\xc6\x4d\xa8\xc3\x35\x2e\x1b\xe3\xf2\x9f\x4e\x88\x4c\x75\x97\x7c\xc1\x86\x2e\xa0\x2e\xb7\x66\x02\x55\x05\x91\xa3\x70\x00\x5d\x76\x86\xd4\xe0\x46\x14\xda\x0d\xa5\x4d\xc7\x39\x12\x53\x6f\xa6\x58\x0d\x56\x24\x52\x40\x87\xea\xbc\xd3\xb1\x5e\x65\x33\x70\x54\x54\x09\x5b\xe2\xa8\xbe\x45\xe5\xb6\xb7\x31\x0b\xb1\xd7\x5f\xdb\xe1\x4c\x60\x3f\x53\x5d\x91\x18\xba\xba\x06\x8e\x87\xc9\x2e\xe8\x67\xee\x51\xcb\x52\xdc\x21\x31\x7a\x05\x20\x8b\x29\x7d\x37\x0a\x0c\xeb\x96\x04\x37\xc8\x7b\x80\xa4\x46\x03\xfc\x61\x44\xd4\xcb\xbf\xef\x0a\x6a\x2a\xdc\xeb\xd6\x20\x8c\xdf\x6f\xbb\x3b\xc6\xc0\x3a\xce\x98\x5f\x27\xd2\xf5\xe2\xa3\x99\x6d\x12\xa9\x7a\x8c\xb5\x00\xb5\xb1\xff\x01\x53\x0d\x6b\xec\x51\xde\x26\x2e\xd7\xf0\xd1\x71\xb2\x3e\x43\xab\xce\x0c\xb1\xff\x2e\x73\xd4\x73\xbb\x89\xde\xbe\x6e\x47\x22\x3d\xae\xc2\x00\x54\xc6\xbd\xec\x4b\x07\x3d\x0b\x7f\x05\x4f\xca\x60\xbd\x6b\x2d\x0e\x84\xf8\x6d\xd5\xb9\x8f\x09\x40\xc2\x1b\x91\x87\x5e\xe9\x45\x32\x17\x2a\xc6\xdd\xae\xb5\x3d\x45\x83\x2b\xd5\x80\x79\x07\x54\x8b\x2d\x4d\xbe\x97\x60\x25\xe7\x49\xbd\xef\xce\x24\xe8\xd3\x88\x38\x2e\x82\x8a\x2b\xac\xc0\xf9\x7e\x44\x86\x30\x04\x3f\x78\xa2\xa3\x4d\x25\xf1\xb8\xb3\x16\x33\x48\x6a\x60\x88\x78\xc4\x6d\xc8\x7d\x07\xd6\xe2\x1f\x4c\x08\x68\x7f\x75\xca\xd2\x43\x6c\x64\xed\x9a\xcd\xc5\x03\x59\x87\x25\x1c\x56\xe4\x78\xa2\x36\x8a\x6b\xd9\x38\xed\x01\x48\x0b\x44\x98\x62\x0d\x49\xb4\x05\x5c\x03\x55\x99\x26\xd8\x8d\x35\x1b\x71\xb2\x35\xeb\x46\x9f\x8a\x38\x93\x17\xc6\x77\xa2\x10\xf0\xdc\x63\x25\xdf\xf3\x93\xfd\xfe\x75\xc4\xcf\x50\x9c\x71\xdf\x4d\x9d\x1a\xbc\x0f\x01\xce\x6f\x47\x41\x04\x5a\x6c\xa3\x10\x5a\x48\xe3\x0f\xcb\xc9\x5b\x13\x32\x1d\xbd\x85\xb1\x0d\xac\xfc\x1d\x42\x21\xde\x40\x6c\xaf\x12\xd4\x01\x84\xb2\xdb\x95\x22\x10\xd7\xdd\x75\x2b\x27\x2e\x17\x52\x77\x62\x8e\x51\x9b\x0a\xdd\xd5\x62\x6f\xa8\xe7\xbf\x8b\x9d\xb9\x26\x1c\xaf\x9e\x11\x84\xfd\xbc\x8e\xe1\xe1\xcd\x2d\x3d\x6f\xe0\x67\x92\x5a\xa0\x18\xd3\xea\x84\x88\x7e\x64\x4b\x4c\x03\xc4\x66\x1f\x38\x54\xad\x1c\xd7\x56\xa5\xb4\x87\x4e\x0d\x82\xb0\x87\x64\xd7\x27\x35\x06\x15\xd0\xf5\xc5\x09\x53\x40\xfc\xd4\x75\xea\xa4\xee\x1b\x85\x70\xf4\x22\x09\xd4\xbd\x33\x35\xa1\x57\xe6\xdb\x5d\x03\xc8\xf0\xab\x7e\x5b\x26\x15\x8e\xdb\x4c\xed\x7d\x4c\xad\x71\x47\xed\x35\x33\x84\xf8\x43\x99\xc5\x1b\x00\x05\x05\x83\x8f\x76\x46\x61\x2f\xcf\x1f\x6a\x2f\x2c\x3c\x8d\x67\xa5\x72\x8d\x6e\x6f\xc3\xa2\x86\xbb\x06\x09\xe0\x8a\xdb\x41\xb0\x6b\xcc\x6d\x87\xb0\xf1\x11\x5e\x88\xaa\x12\xb8\x47\x83\xc2\xd0\x3b\x35\x9d\x61\x66\x68\x92\xd4\xe5\xc3\xa8\x9e\xa6\x7a\x0f\xdd\xf3\x6e\x1f\xc0\x7e\xf3\xaf\x08\xba\xaa\x88\xcb\x45\x36\x1f\x53\xa8\xee\x2d\x2a\x3f\x3c\x22\xe5\xbc\xcd\x38\xed\x65\x9b\x7b\xaa\x6f\xf7\x4c\xe9\xea\xaa\xb5\xf4\x15\x5c\xaf\x4f\x38\xda\x02\x42\x8b\x47\x04\x44\xbd\x1c\x71\x02\xfe\x2b\x9f\xb0\x7d\x6f\xc6\xe5\x60\x90\x25\xae\xcc\xdd\xfa\x6a\xe0\xcf\x84\x07\x71\xc3\x91\x0a\xc0\x6b\xf8\xf9\xe4\x29\xff\x1a\xd3\x78\x80\x16\x8c\x2a\xaa\xd5\xe7\x5f\xa0\xf5\x61\xe1\x96\x7f\x60\x62\x4e\x99\x25\x6f\x0e\x4d\xda\x22\xb9\x5d\xa1\x12\xc9\x09\x85\x8d\xdd\x81\x5d\x1f\x64\x1b\x6e\xd9\x56\xd4\x2f\x17\xa4\x7d\x6f\x2e\x5b\x55\x0c\x1b\xd6\x4c\xe4\x54\x72\x5c\x8b\x76\xd2\x6e\x31\xe7\x7e\x5a\xed\xb2\x79\xf3\xbd\x5c\xcf\x3f\xfc\x3a\xf1\xc8\xad\x52\xc0\x2a\x4f\xdb\x36\x2c\x2f\x3b\x05\x9c\x9e\x41\xcd\x5b\x61\xba\xa1\x31\xf6\x21\xd5\xbc\x37\xab\x85\xbf\x87\x36\x91\x17\x0d\xf3\x8a\x45\x77\xc9\x8f\xfd\xba\x83\x85\xc8\x31\x09\x62\x5e\xa6\x2a\xeb\x7d\x62\x01\x74\x07\x26\x4f\xb2\xb2\xb4\x2d\xb2\xe3\x3d\x4d\xb6\xbb\xec\x11\xbf\x9e\xc7\xc5\x20\x35\x35\xd9\x79\x16\xcc\x64\x46\xb2\x96\x83\x81\x9c\xc1\xf2\xfa\x51\x0d\xe4\xeb\x3e\x89\x99\x7c\x75\xaa\x97\xb0\xb4\xd4\xce\xc6\x81\x01\x83\xc8\x56\xd0\xdb\x72\x12\x92\x59\xa7\x33\xb6\x06\xb0\x85\x8a\xae\x06\x1c\xf4\xb4\x8c\xfc\xd2\x52\x7b\x75\x9c\x24\xb6\x8c\x99\x8c\x77\x3e\x0a\x16\xdf\x8d\xa6\x9c\xa3\xf1\x50\x4d\x39\xa5\x96\x45\x02\x6f\xe7\x6a\x0b\x6c\x6e\x92\x4f\xb3\x82\x1e\xf4\xfe\xb1\x4d\xdf\x42\xe4\x89\xc4\x63\xd7\x36\x89\xbb\xfd\x5d\xb7\x9b\x28\x08\x2f\x8c\x9e\x56\x27\xf0\xc7\x6f\x4c\xc8\x46\x00\xb1\x85\x2a\xc8\x52\xf1\xe3\x34\x6b\x16\xdc\xc6\xb2\x87\x4c\xe9\x2a\xa9\x3f\x9d\x40\x44\x88\x95\x15\xc8\x3e\x7c\xd7\x04\xdb\xb0\x8a\x40\x52\x46\x72\x05\x6b\x0b\xfe\xe5\x1e\xc9\x99\x98\x24\xee\x8a\x1f\xbc\x52\xf3\x98\xa7\x37\xf5\x0e\x8e\xbc\xd4\x4e\xcc\xb8\x3f\x48\xe2\x94\x40\x32\xa2\x2d\xae\xb4\x53\xc2\x95\xdb\x72\x2e\x80\xef\x67\x3b\x01\xdf\x78\x37\x22\x0d\x94\x96\x5b\xbc\x55\xc2\xc8\xbd\x81\x47\x57\x1a\xe0\xca\xaf\xb6\xd7\xe2\x92\xd2\x58\xe8\x40\x21\xa2\xf8\x23\xdc\xaf\xc4\x65\xf5\x32\x84\x98\xd1\xa3\x46\x72\x8e\x4b\x71\xe7\xa6\xca\x42\xae\xa8\xda\x8d\x6d\xda\xb5\xa4\x5e\x7e\x06\x97\x2b\x27\x4d\xb1\xef\xaa\x31\x7f\xcd\x4d\x1a\x30\x23\x05\x0d\x89\xfb\x7b\x20\x49\x92\x6a\xd9\xfa\x3e\x43\xdc\xeb\xdb\x50\x8d\xf7\xfb\x7f\x88\x05\xa6\x5e\xc0\x17\xdb\x6b\x71\x6a\xd2\x6e\x6c\x73\x98\xa1\x62\x97\xf9\x98\x3c\xb0\x3e\x8e\x82\x16\xf4\x30\x4b\xe3\x32\xcb\x2d\xc4\x7d\xb1\xea\x42\xc5\x14\xf5\xd5\xb7\x99\xff\x78\x07\x8f\x50\xa1\xa5\x35\x11\xe7\x90\x93\x8d\xc6\x79\x31\xb6\x68\x99\xaa\xbf\x53\x78\x50\xc0\xe3\xe0\x42\x6e\x50\x9f\xaa\xca\x91\x4d\x92\xcc\x52\x9a\x2a\xf2\x0f\x18\xa1\x1f\xd4\xf6\x90\x96\x57\x58\xbe\x3e\x35\xa5\x17\x8f\xb4\x87\xb6\x28\x0c\x46\x2d\x36\xd6\x07\x2e\x61\x92\x63\x16\xe1\xf8\x4b\xbf\x21\x30\x63\x1d\xa8\x1e\x05\xf6\xa9\x4f\xbb\xc9\x8d\xa8\xe2\x36\xf7\x68\x76\x6f\x37\x19\x71\x8c\x06\x59\x89\x52\x7e\x8b\x6c\xbb\xde\x27\xb0\xd7\xfb\x35\x66\x42\xfc\x86\x52\x6d\x11\x73\xde\x8c\xa8\xb0\x78\xf3\x13\x1c\xc4\x0b\xad\x66\x22\x4a\x14\x99\x1d\x0c\xf6\x1f\x53\xe1\x64\x57\xe7\x93\x14\x7f\x05\x76\xee\x35\xe7\xff\x84\xf6\xa6\x3f\x99\x2a\xa1\x2e\x2d\xb5\xcb\xd8\x0e\x47\x20\x5b\xa8\xbe\x35\xb5\xf1\xcf\xf9\x1a\xa2\xd0\xd5\x6a\xa5\x18\x56\x4a\x76\x0f\x45\xcd\x37\x48\x20\x38\x31\xc5\xba\x99\x0b\x02\x3d\x67\xc8\x97\xff\xfb\xf8\x94\xd6\xd4\x42\x0f\xf8\x2a\xa1\xa2\xaf\x4e\x6a\x16\x2a\xa5\x71\x33\xd3\xc7\x54\x83\x09\x8d\x83\x01\xf4\x3a\xd5\xcf\xa3\x8b\xf8\x05\x95\x8a\x07\x11\xf1\xd7\x1e\x90\xe4\xcf\x25\x17\xe2\x69\x53\xaa\x01\x6c\xbf\x96\x64\x26\xcc\x52\x44\x6b\xdf\x24\x26\xc8\x37\x6b\xb2\x70\x5d\x1b\x6f\x68\xfe\x89\x81\x7e\x8a\xa4\x03\x4e\x4d\xbd\xf9\x6a\x59\x5b\x35\x69\x2a\x22\x4e\xd8\x5a\xc5\x69\xd0\x67\xbb\xd5\xbc\x54\x64\xe4\xce\xd1\xb9\xb4\xd4\x76\xda\x84\x79\x96\x7a\xfa\x2c\xc0\x31\x10\x61\xc1\x04\x9b\x75\xc3\x5d\x9b\xce\xba\x09\xa7\x59\x19\xaf\xc5\x6a\x35\xae\x04\x2b\x02\xb6\x3c\x20\x6c\xef\xec\xb6\x2e\x5c\xaf\x8f\x7b\x7d\xf8\x44\x93\xc4\xec\xf9\x88\x24\xae\x9b\x40\x76\xb9\x4d\xbc\xb1\x26\xa2\xe8\x4b\xd8\xfd\xe4\xa4\x61\x2d\x6e\x67\x23\x9b\x1b\x5f\x6b\x47\x71\x40\x54\xc0\xe4\x84\xc5\xb9\x9c\x4f\x0e\xaa\x6a\xa8\x8b\x9c\x86\x18\xb5\x9c\x4c\x01\x08\x96\x97\xdb\x6b\x59\xc6\x7a\x81\x7f\x1c\x91\xeb\xd5\x1f\x03\xde\xa5\x45\xa1\xf4\x17\xeb\x78\xe4\x6a\xd3\x42\x51\x00\x28\x2e\x04\x0a\x73\x1d\xf7\x93\x98\x3f\xa7\x81\xf9\xc1\x16\x75\x4d\x02\x50\x84\x55\xc7\x91\x66\xe0\x0b\xb0\x80\xe9\xfe\xd0\xfa\xf2\x6f\x49\x3c\x7e\x9f\x0d\x4f\x4e\x21\x22\x40\xf9\x4c\x0c\xe1\x91\x28\xef\x75\xa1\x06\x1e\xc8\x7d\x37\x9c\xf1\xd2\x6f\x30\x3f\xee\x01\x1e\x9b\x4f\xc0\x43\x61\xfe\x26\xd9\x27\x89\x90\x26\x22\xfb\x13\x2e\xe3\xc1\xf1\x1f\x10\x12\xf6\x04\x9e\x12\x02\xd3\xdd\x1d\xc6\x38\x05\xfe\xcc\x2d\xd4\xc5\xd1\x66\xbb\x36\x09\x22\x59\x65\x36\xda\x17\x9a\x69\x1f\xe1\xb2\x10\xb7\x8a\xa0\x1c\xe2\x85\x7b\xee\x17\xc1\x81\x85\x92\x99\x6a\xe8\xb4\xd8\xa6\x65\x25\xe8\xe5\x87\xb1\xca\x4c\xdb\x6e\x36\x1a\xd9\xdc\xb1\x2e\x1e\x7d\xcc\xde\x05\x17\xb8\xa0\x71\x9f\x62\xf3\x3f\x24\xc6\x4a\x39\xb0\x8e\x02\x6c\x30\x4c\xd4\x63\xce\x3d\x00\x39\x89\x9e\xf4\x3b\x8e\xb4\x1f\xa4\x81\xb8\x1d\x78\xa9\x17\x9d\x62\x0f\x76\xdd\x7d\xc4\xa9\x4b\xe2\x54\xc1\x94\x48\xab\xc5\x20\x57\x4e\x48\x39\xb7\x18\xe7\x7d\xeb\xaa\x48\xd8\x1a\xe1\xa0\x8c\x8b\xff\x01\x42\x3f\xc5\x8f\xb3\x05\x6d\xd3\x8a\xd6\x35\xa5\xed\x67\x42\x1f\x52\x50\x29\x83\x4d\xbd\x33\x40\x92\x8d\x46\x80\xc3\x8b\x1a\x40\x14\x96\x94\x93\x0d\x42\xa9\x87\xda\xf6\x0d\xdb\x1d\xef\xe8\x8e\xbd\x4b\xc5\xa2\x77\x77\xaa\xee\x2f\x2f\xb7\x8f\xbc\x74\xc0\xfd\x35\x16\x82\x77\x27\xd4\x91\x3e\x1e\x69\x3c\x48\x0c\x21\x90\x09\xc4\x2c\x7c\x42\x3a\x71\x17\x88\x99\xf5\xaf\x5c\x98\x8d\x01\x7b\x1b\xf3\x50\x5d\xcb\xdd\xcc\xc3\xc0\x7c\x07\xc5\x7a\x0c\x88\x37\xf0\xe4\x90\x17\x1f\x15\x87\x12\xad\x45\x05\xa3\x08\x90\x27\xa4\x64\xe7\x06\xa0\x08\xc7\x43\x97\x15\x2f\xfc\x07\x0d\x2b\xfd\x72\xbb\xb0\xc1\x54\xd6\x17\xe0\x7c\xab\xe3\x6c\xcd\x26\x31\xcf\xd2\xbe\xcd\xe7\xaa\xef\x67\x0b\x3b\x76\x4e\xc3\xee\x7b\x0d\xb3\x46\x55\x1e\xdc\x45\xc8\xc9\x27\xb2\xc1\x4d\xaf\x27\xbb\x39\x82\x83\xa7\x09\xaa\x33\xb3\x4d\xf9\xe1\xf5\xa9\x68\xf7\xc8\x4b\xed\x35\x57\xba\x5d\x58\x54\x71\xbf\x88\xea\x7c\xe7\xbd\xff\x8e\xa7\xcf\xab\x47\x16\x2a\x79\x67\x89\x02\x7c\x96\x22\xcb\x35\x67\x46\xc7\x12\xb8\x00\xfb\x23\x31\x47\x29\x1a\x21\xec\x23\x68\x65\xaa\x79\x14\x79\x01\x62\xca\x51\x07\xfe\x55\x5f\xee\xd9\xf9\x3a\xfe\x46\x3b\x1d\x0f\x57\x9d\x12\x14\x29\x75\x7c\x8b\x39\x6e\xdf\x22\x08\xb7\x4d\x62\x27\x99\x68\x7b\xee\xc6\x59\xfb\x50\x8e\xbd\x0c\xc4\x46\x9c\x97\x63\xdd\xe9\x44\xc7\xaf\xa6\xe9\xb7\x33\xa6\xfd\x52\xdb\xe4\xfd\x31\xb6\xe1\x43\x0c\x66\x56\xfc\xe2\x7d\x5c\x15\xea\x5e\x73\x9d\x90\xdc\x17\x03\x93\x8f\x84\xb0\x82\xc0\x5d\xde\xbf\x9c\x4c\x6d\x79\x0b\x8b\xed\x5e\xb6\x99\x3a\x25\x73\xc5\xda\x57\x6f\x5e\x8e\xbd\xae\xce\xc0\xe6\xab\xe4\x86\x76\x93\x41\x3f\x90\x54\x97\xa6\xee\x14\x60\xe8\x2f\xb7\x7b\xe3\x04\xa8\x1f\x0d\x59\x5a\x9e\x81\xfc\x31\x17\x0d\xa7\xf3\xf5\x83\xcb\xed\x35\xb3\x91\xe5\x2d\x02\x65\xa0\x08\xa2\x95\x8b\xcf\xd6\x17\x8f\x95\xf9\x2a\x63\x3b\xbc\x3f\x74\xea\x84\x1c\x2a\xbc\xae\x88\xcc\xe9\xc1\xde\xf7\xf2\x03\xd5\x1a\x23\x6b\x80\x1b\x66\x48\xa8\x25\xfa\x51\x5a\x58\x35\x9a\x30\xfe\xae\xa1\xdf\x22\x7f\x85\xf5\x44\xb5\x1a\x76\x0e\xad\x23\x2f\x39\x29\x75\x87\xdc\xf4\x6c\x95\xcb\x24\x61\x36\x0d\xfb\x73\xb5\xfd\xe1\xb8\x3b\x70\xaf\x12\x1b\xcb\x3b\x51\x28\x70\xbe\x33\xd5\x99\x5d\x99\x5f\x71\xca\xb3\x71\x59\xee\xb4\xa9\x0e\x1b\xc3\x29\xc2\x94\x77\xb3\x71\x0e\xc5\xcf\x60\x79\xe3\xae\x49\xed\x6f\x74\xd5\x37\xfd\x2a\xb6\x43\xf0\xac\x91\x50\x75\x1f\xaa\x6c\xcc\x2d\xbf\x0b\x5c\xb6\x7c\x4c\xc8\x87\xf5\xfe\x2a\x07\x6d\x97\x49\x02\x66\xfa\xee\xff\x86\x4a\xa7\xa3\x7d\xe4\x97\x5c\x0f\xce\xbb\x30\x09\xec\x4c\x93\x97\x83\x71\x1e\x1b\x91\x13\x41\x04\x75\xd4\xfd\xb1\x1c\x4f\x82\x19\xda\xc8\x16\x65\xdc\x75\x32\xf1\xdc\xea\xc1\x7e\xa9\x65\xa3\x50\x8c\xdf\xb4\x45\x09\x9a\xb3\x84\x08\x88\x74\x3c\x06\x41\xfd\x1f\xff\x1c\x68\x3e\xba\xd4\x53\x60\x76\xde\xa7\x4c\x49\x1c\x64\x00\xb8\xe0\xae\x6c\x29\x82\x28\x0d\xac\xc8\xca\x12\xb9\x31\x18\xd5\x5c\x8e\x82\xff\xe5\xda\x38\x59\x0b\xc6\x19\xaf\x7a\x8f\x74\x5a\x6b\xde\x26\x4b\x5e\xf0\xf1\x54\x64\x45\xb1\x9c\xc5\x5f\x1a\xcd\x4e\x65\xbf\xd8\x4b\x1e\xd4\xfa\x14\x17\x49\x5f\xf1\x44\xad\x3b\x62\x92\xf5\x3d\xee\x02\x30\x0c\x6e\x70\x43\xe7\xa2\xab\x58\x63\xa4\x3f\xb1\xcd\x58\xff\x96\xd7\xca\x84\x6a\x19\x8e\x3f\xd5\x09\x72\x16\x66\xc3\xc4\x09\xd5\x04\x01\xac\x91\x63\x72\x4e\x1a\xda\x9e\x60\xea\x98\x40\x27\xc7\x84\x15\x1d\x6c\xf5\x72\x33\x4e\xe2\x6e\x8b\x1e\xe8\x6c\xc7\xed\x1f\x72\xb2\x1d\x98\x70\x36\x2d\x73\x21\xcd\xbd\x18\xc4\x33\xfd\xd3\xbc\x47\xa4\xb9\xe2\x6b\x63\x93\x54\x2b\x55\x35\xc6\x91\x57\xfd\x7c\x12\x72\xac\x9f\x93\x75\x44\x61\xd3\x17\x5a\x8c\x2c\x3b\x8e\x27\x2e\x27\x41\x45\x2a\x1d\x54\xd9\xad\x84\x83\x18\x26\x67\x23\xf2\x92\x39\x4b\x04\xf3\x9e\x2d\x6d\x3e\x57\x47\x9d\x52\x95\x0f\x48\x3e\xdf\x6a\x0f\xe6\x30\x51\x0d\x8e\xda\x50\xe0\xee\xc5\xc5\x68\xac\x88\x60\x04\x04\xdf\x25\xf0\xcf\x77\x1b\x58\x70\x87\xdb\x3d\x9b\xa2\x92\x8b\xbb\x17\x30\x87\x9c\xf8\x71\x97\xe6\xdd\x16\x0b\x99\x8b\xc7\x93\x9c\x44\x84\x1d\x1b\x8e\xfb\x2d\x27\x10\x83\xda\xca\x8f\x48\xd8\xe1\x47\x53\xbb\xc6\x91\x97\xda\x26\x49\x0c\x2e\x00\x2b\xf7\x7b\xd4\x9b\x7f\xcf\x2f\x6c\xa9\x19\x25\x56\xb9\xf6\x0a\x60\x60\x34\x43\x93\xe4\xeb\x5a\x92\x49\x37\xeb\xd1\x1d\x42\xb7\x5f\x22\x56\xe3\xb1\x06\xd4\xac\xed\xf7\x25\x02\x40\xdc\x8b\xb2\xb3\x1c\x4f\xc9\x63\x8b\x33\x68\x69\x87\xa3\x2c\x37\x22\xfc\xa2\x2b\x27\xa1\xe6\xa7\x05\xf2\xbf\xd4\xde\x30\xc9\x58\x77\x00\x90\x15\xfe\x6c\x42\xde\x46\x7f\xe6\x67\x4d\x61\xcb\x6a\xfd\x9f\x0b\x15\x98\xdb\x64\x40\x7b\x66\xc2\xba\x75\x58\x50\x90\x85\x5e\xc6\xfa\x06\xf0\xc0\xb5\x7a\x99\x6b\xcd\x3e\xe9\x76\x52\x6c\xb1\xbf\xeb\xbe\x0f\xed\xb2\x3d\x1d\x72\xf6\x39\x13\xd5\x38\x97\x6e\xf7\x94\x8f\xe0\x97\x44\x67\x55\xf6\x16\xc4\x07\xef\xbb\x75\x44\x5c\x8f\xdd\x5e\xc8\x0e\xc8\xc2\xd1\x00\x55\x0c\x61\xd2\xdf\xa3\xf9\xa9\xb2\x7a\xee\x77\x91\x2a\xdc\x26\x61\xdd\x9a\xa8\x92\x4d\x01\x1e\x9a\x0d\x7d\xd2\xcb\x08\x10\xd4\x5c\x9f\x8b\x27\x64\x48\x58\xf7\xb2\x2e\x0a\xd3\xe2\x42\x64\xb5\xc2\x69\x81\x32\x14\x25\xf3\x78\x34\x17\x96\x94\x3b\xac\xce\x2e\x69\x0a\x50\x46\xb0\x8e\xd4\xbe\x9c\xbb\x0d\xd4\x01\x6e\x92\x58\x96\xc9\x73\x93\xf6\x2d\x8a\x31\x55\x1e\xae\x5c\x09\x82\x51\x5e\x9a\x84\x22\x5e\x56\x94\x12\xf6\xeb\x92\x4a\x08\xe1\x9f\x4e\xe8\x59\x5e\xf4\x9a\xef\x09\x28\x97\x8b\x9e\x94\xd1\xf2\x42\x7b\x42\x6c\x00\x14\xf1\x09\x57\x62\x42\xc5\xf8\x41\xbd\x23\xbd\x73\x7a\x2c\x1e\x69\x17\x56\x96\x18\x4c\xbd\x73\x84\x08\x9d\xa6\x68\x2e\x1e\x69\x67\x6b\x6b\xb1\xd4\xe4\x51\xe4\x3f\xc1\x48\x8c\x69\xa8\xe6\xf2\xf2\xa1\x76\x37\xce\x45\x27\x91\xab\xcb\xb5\x3e\x66\x83\xef\x6a\x6e\x87\x26\x4e\xc5\x97\x90\xdc\x07\x16\xf5\xa4\x36\x03\xcc\x2a\xcb\x4e\x63\x98\x2a\x58\x89\x07\x47\x69\xcd\x4c\x5d\x69\xc4\xd3\x34\x04\xfc\x83\x34\xe2\xa8\x87\x6f\x6c\x3a\x6d\x90\xa2\xb4\x31\x30\xa4\x1e\x54\x13\x10\x86\x97\xa9\xcc\x51\x64\xa9\x29\x0d\x6d\x89\xb2\xcb\x28\x40\x9d\xe4\x3d\x4c\x9c\x96\xd5\x2d\x6a\x29\xb5\x89\x42\xf1\x94\x6f\x52\xe4\x45\xf9\x4c\xb5\xb2\x7a\x73\xa5\xf0\xfc\x76\x6f\xb7\x7e\x43\x17\xf3\xb9\x0e\x15\x8e\xbf\x17\x30\x1d\xd9\x2f\x39\x8c\xb2\xaa\xa5\x52\xa1\x78\xff\x76\x68\x08\x7d\x0e\x80\x65\xca\x61\x5f\x95\x68\x0e\x51\x97\xfb\x8d\x0f\xda\x1d\x82\x49\x89\x00\x84\xc2\xe3\x29\x07\x3e\xef\x53\xb1\xa2\xcc\x6d\x59\x05\xd5\xde\xc2\xe1\xa4\xc3\xdb\xc8\xf1\x14\x4d\x62\x61\xa1\x9d\xda\xb8\x3f\x58\xcd\xf2\x41\x96\xf5\x88\x78\xf5\xbe\xbb\x23\x15\xbe\x9b\x5e\xef\x37\xe2\x0d\x33\x53\xdd\x28\x82\xb0\x3b\x51\xa0\xe4\x5c\x0c\x6d\x87\xff\xfe\xf8\xd4\x47\x17\x16\xdb\x83\x18\x7c\x2d\xa4\xe2\xa7\x30\x1c\xe4\x84\x4a\x51\x0e\xc6\x3b\xca\x6d\x29\x08\x60\x55\x20\x77\x8f\x94\x6b\x60\xaa\xa0\x3f\x4d\x64\x68\x8f\x6c\x5e\x8c\x4d\xcf\xd2\x5e\x79\x91\xf6\xca\x8b\x53\x69\x46\x35\x8f\xd6\x9c\x78\xb3\x0f\x66\x31\x10\xbe\xe1\xd6\x01\x39\x6e\x28\x76\xb4\xd7\xb2\x7c\xd3\xe4\x30\xf1\x40\xf8\x02\xa4\x8e\xa0\x24\xdd\xe2\x8e\x6a\x5d\xab\xd3\xd0\x99\x28\xac\x33\x28\x6b\x79\x7b\x91\xdd\x1d\x6a\x8f\x7e\xa7\xd6\x53\x7b\x6f\x42\xba\x08\x77\x9a\x44\xb9\x72\xbb\x36\x2e\x74\x97\xd4\x68\xce\x3d\x67\x0d\xf3\x76\xbe\x97\x6a\x4b\x4e\x33\x27\xea\xa4\x72\xf9\xee\xa9\x7b\x4d\xb3\x15\xed\x69\xfc\xb3\xa9\x46\xf8\x57\x5e\x69\x9b\x0d\xa7\xeb\xe3\x06\x32\x6a\xae\x1f\x63\xad\x95\x13\x7a\xaf\xe3\xa4\x8c\x87\xa6\x1c\x0f\x85\x1d\x0e\x28\x14\x54\xfd\xe4\xd8\x43\x79\x47\xd9\xa6\xcd\x67\x77\x80\xe1\xaa\x99\x83\x69\x77\x97\x1a\x81\x4f\xe0\x79\xa9\xe9\x9c\x67\xee\x65\x45\x69\xd3\xf5\x6c\xb3\x50\x3f\x76\xad\x15\x70\xe1\x60\x6a\x98\x7e\x75\xd1\xfb\x84\xe0\xa5\x3d\x62\x9f\x90\x8b\x2e\x41\xd4\x70\xa1\x16\x21\xbc\x09\xd1\x02\x11\x69\x8b\x42\xb1\xe1\xb8\xab\xe3\x22\xaa\x90\x7d\xc8\xc7\x07\xe1\xb2\xce\x50\x9b\xe9\x12\x15\xbd\x2e\xa1\x7e\x0e\x94\xcf\x29\x92\x6f\x3c\x8d\x44\x5d\x1b\x53\xcf\x90\xee\xf7\xb8\xb0\x4f\xb5\xbc\x0c\xc8\x6d\xee\x23\xdc\x9d\xb8\x94\x40\x75\x1b\x5a\xcf\x3f\xef\xf5\x1c\xdc\xef\xf8\x06\xe2\xca\xbc\x24\xbb\x62\x46\xae\xb2\xd9\xa1\xc1\x7a\x0d\x97\x8f\x3a\x1d\xa2\x00\xcf\x09\x5f\x3c\x22\x23\x56\xea\xf7\xe8\x16\x5f\x89\x74\xcd\x1f\xa7\x3d\x9b\x6f\xe6\x71\xa9\x59\x80\x30\xa9\xf1\x78\x94\x56\x4d\x6e\xea\x79\x06\x6f\x9d\xbd\xa1\xd8\xf9\x3e\x57\x44\x65\xd0\xa9\x1a\x51\xc0\xc5\xde\xc4\xeb\x56\x49\x75\xb2\xea\x80\x3c\x0a\x56\xc8\xe9\xb2\xd9\xca\x7c\xdb\xf4\xb3\x34\x7e\xd3\xce\xd4\x0a\x22\xe4\x04\xc0\x01\xeb\xef\x50\x13\xb8\xe8\x9a\xb4\x27\x3a\x23\x32\x8b\xa2\xb0\x9f\x5f\xa6\xac\xcd\x71\x53\xca\x71\x6e\x59\x57\xe9\x02\xdf\x4a\xa8\xb6\x75\xb3\xd1\x96\xf7\x91\xc4\x13\xc2\x2c\x90\xfd\x8a\x0a\x0f\x57\xb1\x23\xa2\x72\x7b\x91\x1a\xc5\x1b\xc5\x0b\xfb\x02\xf1\x70\x97\xdb\x97\x10\x08\x1f\x73\x9d\x19\x44\x3b\x4f\x61\xf7\xf1\x12\xfc\x2b\x41\x5b\xb2\x7a\xfa\xe8\xff\x38\xb7\x33\xcd\xcb\xaf\x71\x6a\x7d\xc9\x1b\x14\x64\xab\xaf\x43\x93\x5c\x62\x31\x6c\xe6\xd7\xb1\x88\x61\x48\xc0\xbd\x09\x78\xcd\xd3\x53\x35\xfc\x2f\xb5\x4d\x51\x64\xdd\xd8\x94\x76\xb6\x56\x68\x7b\x59\x11\x61\x70\xed\xf7\x66\x98\xde\x60\xf1\xf7\x26\x41\x9e\xc1\xa4\xbf\xe8\xe2\x4d\x24\x97\xdf\x41\xc4\x8b\x6a\x97\x50\x14\x80\x5d\xdc\xd3\x71\x53\x00\x85\xa8\x2b\x93\x00\x9e\x3c\x0f\x9f\x70\x2f\x73\x74\x48\x01\xe9\x9f\xff\x5c\xc7\xed\xcd\x98\xe8\xbb\xb7\x67\x0e\xff\xcd\xaf\x06\x4e\x46\x48\x0d\xef\x92\x35\xc2\x43\xcc\x40\x2c\x57\xe0\x84\xaa\xed\xaa\x2b\xd1\xab\x11\x60\xf5\xa8\x45\xcf\xa9\x43\x10\x99\xfd\x1d\x1a\xc2\x77\xdd\x40\x77\x6b\xc3\xd2\xe7\x9d\x2f\x9d\xc8\xfb\x46\xa4\x90\xa4\xc9\x86\xd4\xfe\x05\x8e\xaf\x46\x84\x84\xcb\xb9\x43\x48\x3b\x11\xb4\x17\x7a\x1a\x91\xf7\xdc\xc2\x0c\xdc\x14\x46\x91\x58\x52\x6a\x57\x27\xa0\xd4\xce\xd2\xa7\x6c\x9e\x67\x79\x01\xab\x2f\x61\x6d\x4c\x82\x7a\xd8\x49\x24\x5e\x7e\x24\xfa\x2c\xfe\x19\x57\x0c\x57\x85\xd9\xb0\x28\xb2\xc2\xbc\xe9\x76\xc7\x05\xd0\xbf\xd8\xb6\xd5\x02\xb9\xe5\x45\x80\x4e\x34\xd2\x4a\xe3\x52\x84\xf9\x54\xf0\x32\x60\x0e\xcf\x90\x6c\x28\x24\x96\xe2\x0d\x2b\xf9\x34\x6a\x3f\x42\xb9\x91\x93\xc6\x5a\x41\xd7\xe4\xa3\x19\x7a\xbc\xe7\x30\x22\x90\xf3\xdd\x26\x4b\xd5\x93\x93\xcf\x90\x43\xde\x5a\x52\xcd\x99\x2a\x7d\x5d\x99\xf7\x12\x2b\xee\x3a\x91\x90\xff\x47\x64\x95\x52\xdf\x75\x17\x2d\xff\xe0\x66\x27\x7a\x63\xd7\x6a\x5a\x74\x1b\x59\xe2\x1c\x1b\x66\x68\xed\x80\xff\xa7\x32\xd8\x43\xe7\xfe\x1f\x07\x5a\x7e\x96\xe0\x63\x54\x75\x47\x85\x44\x0d\xb7\x1a\xc5\x06\xf2\xcc\x84\x10\xca\x7b\xe6\x7a\xf8\xc8\xf9\xa9\x4f\xbd\x3c\xff\x6a\x3b\xb7\xa3\x2c\x2f\xeb\x2d\x0a\xa0\x08\xe5\xb8\xa6\xa9\x98\x76\x2d\x44\x54\xc5\x62\x01\x4b\xbc\x57\x38\x3e\xa8\x84\x42\x74\x56\xd1\x65\x15\xff\x4d\xac\x57\xdb\x93\x5f\xfd\x84\x7e\x51\x51\x66\xdd\x75\xd1\x62\xe4\xea\xfc\xfb\x52\x2f\x94\x33\xba\x9c\xc1\xb8\x58\xb7\x52\x1f\xf3\x58\xbd\x80\xdb\xdb\x89\xfc\x5d\x58\x6c\xbf\x3c\xbf\x3c\x17\x1a\xe9\xb7\x98\x99\xf9\x23\x2c\x4e\x5e\x86\x7c\x69\xc9\xc3\x25\xdd\x78\x53\x84\x2e\x69\xf8\xbd\xd1\x4d\xc6\x3d\x27\x51\x11\x0c\xae\xf0\xc7\x2a\xcd\x4f\x02\xad\x27\xc9\xae\xf4\x8a\x0f\x95\x7a\x71\x61\x56\x45\x1c\x57\x08\xde\xe0\x8e\xa0\x03\xa8\x3d\x47\xd7\x59\x3e\xda\xd4\xcc\xc8\x6d\xdc\x1d\x7c\xb2\xbf\x7b\x28\x78\x75\x73\x8b\x24\xd5\xfb\x7b\x57\x9f\x51\x17\x70\xce\x23\xd7\xc7\xa3\xd9\x50\xda\xfb\xd7\xee\xba\x43\xd9\x75\xde\x23\xd4\xab\xb7\x8d\x25\x8b\xb1\xd9\x3d\x27\x6d\xdb\x0a\x01\xd9\x39\xb7\xb6\xc9\xf1\x54\x43\x77\x61\xa1\xbd\x39\xc8\x12\x5b\x38\xd7\x7d\x5f\x31\x46\x2f\x4e\x8d\xa0\xc8\xa9\xc4\xda\x72\xe0\xc6\x78\xf5\xb2\x14\xd0\xd7\xf2\xfa\x21\x17\x19\x7a\x38\x1a\x89\x72\x84\x47\x80\xf9\xdc\xe0\x03\xaa\x73\x76\x93\x6c\x8c\x3c\x0c\x85\x9b\xab\x6e\x43\x96\xe3\x86\xf5\x85\x11\xc2\x58\x14\x91\xa8\xc8\xf1\x54\x5c\xbb\x32\x7f\xb8\xbd\x31\x26\x21\xcd\xcb\x44\x47\xb8\x4c\xed\xc9\xd4\x16\x65\xc2\x05\x88\x1f\x31\xed\xe1\x47\xc4\x90\x36\x1b\xb1\x5b\x77\x67\xdd\xba\x56\xeb\x93\x34\xb5\xb4\xdc\xab\x96\xbf\xf2\xd2\xe3\x1b\x71\xb7\xcc\xb4\xc9\xa1\x40\x42\x20\xe3\xe4\x98\x64\x01\xe3\xb4\x88\x7b\x60\xf8\x49\xa3\xdc\x6d\x86\x8f\xae\x34\xd9\x40\x6c\x9a\x52\x28\xaf\xd8\x9d\xff\x94\x4d\x20\xfe\x94\xb0\x0c\x47\x5e\x9a\x69\x1d\x79\x49\x92\xaf\xc7\x51\x70\x1f\x7a\xc0\x52\xfc\x7f\xea\x2b\x05\x83\xf1\x30\x46\xd1\x04\x29\xf9\x2d\x6a\xc9\xdc\x6a\x9a\x1d\x45\x62\xed\x3a\x79\xf1\xde\x26\x21\x82\xdb\xa4\x7b\xb6\x6a\x6a\x42\xa7\x6c\x06\x7e\x9e\x0b\x20\xdd\xdc\x8c\x8a\x19\x92\xb3\x65\xc9\xc2\xef\x91\xac\xf8\xf9\x29\x10\x95\xa3\xf8\xc7\x23\x93\x97\x71\x61\xd2\x56\x5d\x77\xd9\x63\x17\xae\x4d\x99\x26\x7b\x71\x75\x93\x66\x8e\xbb\xef\x4b\x63\xb2\x11\x7e\x92\xff\x4a\xb5\x98\xb4\xc7\x23\xd7\x87\x55\x41\x55\xf7\x01\x9d\xbf\x61\x25\xeb\xc5\x45\xd7\xe4\x3d\xdb\x9b\xab\x22\x2f\x44\x1e\x62\xd2\xa8\x20\x60\x17\x9f\x79\x9f\xba\x15\x25\x5b\x9e\xa5\x26\xcb\xb9\x86\x91\xdf\xde\x8c\x45\x0f\x55\xfd\xd6\xa8\xf2\x30\x6d\x56\xb2\x78\xa4\x9d\xc4\xc3\xd8\xf1\xeb\xbc\x5a\x61\x4d\x93\x01\xaa\x57\xa4\xd3\xb4\xec\xd3\x9d\x46\x53\xdd\xd2\x52\x59\x41\xa5\x4e\xaa\xaf\x50\xa2\x7d\xcd\xbb\xc3\x76\xd9\x6e\x1a\x1c\x06\x74\x70\x01\x83\xd6\x5e\x98\x66\x06\x10\x36\xdf\x82\x9a\x33\xae\x03\x43\x4c\xe5\x32\x03\x99\xf2\x74\x93\xcd\xca\xd0\xe4\x59\xea\x52\x31\xac\xfd\xd8\x30\xaf\xb1\x3c\xed\x35\xc2\xfb\xe7\xd6\xf4\x4d\x0a\xfc\x02\x92\xfc\x5b\x54\x37\xfe\x49\x14\x30\x96\xa7\xf1\x9c\x75\x30\xba\xb8\x97\xa5\x21\x84\xe5\x8b\x18\x34\x6c\x16\x32\xd9\x87\x55\x48\x30\x17\x46\xe5\x23\x1e\x69\xb0\x55\x42\x20\x22\xfe\x0c\x6c\xd0\x85\xe4\xe2\x89\xce\x93\xfe\xaa\xb3\xfc\x17\x5a\x0b\x0b\x5e\x64\xde\xc5\x50\xc8\x63\x4f\x3a\x30\x97\x80\x69\x9c\x07\xb3\x0f\x87\x0f\x6a\x40\x78\x15\x2f\x19\xf4\x44\x29\xd0\xa0\x4d\xbc\xdb\x81\xba\x95\x97\x11\x24\xa1\xff\x3e\xf8\xca\x1a\x6c\x71\x15\xe7\x14\x27\xe4\x10\xaf\xf3\x92\x5a\x2b\x87\xbc\x51\x6e\x75\x83\x28\x2c\xef\x42\x96\xe1\x25\x9a\x83\x0a\xa3\xe4\xc0\x2a\x3a\xd9\xf2\x3a\x53\xef\xb9\xed\x43\x2d\x6b\x28\xa1\x7c\x07\x11\x06\x32\x75\xe5\xe6\x52\x07\xe6\x45\x4f\xd1\x6e\x44\x7f\x77\xa5\x1d\x8a\xd5\xf2\x2d\x77\xc1\xcc\x65\x76\xaf\xf4\xde\x81\x4e\x68\x00\x8b\xa6\x90\x7c\xc0\xbd\x77\x4c\xa2\x07\xbe\x02\x5c\x8c\x8b\xd2\xc4\xa9\x59\x4d\x40\x82\xd5\xfc\xdc\xfd\x92\x12\x7c\xab\xc7\x11\xfa\xde\x61\x73\x15\x4e\xb3\x6c\x85\x4d\xce\x3b\x8a\xf5\xc8\xe3\xc2\xee\xc3\x8b\xc0\x82\x72\x81\xfa\x7d\x7b\x3b\x35\x15\xc0\x9a\xf6\xcb\x54\xfd\x5e\x2d\xf7\xa9\x31\x0f\x21\x45\x25\xd4\xef\x9c\x65\xaf\xac\xcc\xb7\x47\x79\x36\xb2\xb9\x04\x03\x9e\xe0\xee\x3d\x5c\x8e\xee\x8c\x14\x0f\xad\x1c\x6a\xaf\xcc\xef\x6f\x7d\x75\x31\xec\x1b\x2f\xcf\x0b\x2a\xf9\x74\xf5\x20\xa1\xd7\xb4\xc8\x8a\x20\xde\x1b\x9c\xf2\x8b\x47\xc8\x38\xa5\xd9\x14\x51\xc3\x73\xa6\x13\xa6\xd7\x47\x6e\x99\x50\xf1\xbf\x10\x98\x98\xdc\x95\xfe\x57\xe6\x3d\xfe\x3b\xf4\x28\xdf\x6f\x4a\xac\xd2\x71\x59\xd6\xdd\x56\x03\xca\xea\x8c\x6f\xd2\x89\xcf\x9e\x73\x3e\xc1\x8f\xce\xe1\x66\x54\xd6\xbe\x5a\xf8\xab\x5d\x3e\x98\x87\x5e\x8b\xc8\x01\x6c\xe2\xeb\xce\x7f\xf9\x00\xf5\xd5\x9d\xc9\xc5\xa7\xdc\xdb\xc3\xda\x74\x72\x42\x4a\x1f\xdf\xc5\xe0\xf7\xae\xb1\x9e\xb1\xfc\x21\x0b\x6a\x5c\x8b\xa8\x18\xbb\xed\xa6\x9e\xd7\x1e\xaf\x1e\xa4\x8c\x11\xf2\x1d\x7b\x2b\x22\xe2\xcd\x1d\xc9\xb7\x11\x37\xa0\xb1\x8f\x3d\x6b\xb6\x43\x3d\xb5\x9f\xe0\x75\xf9\x01\x57\x3d\x24\x34\x11\xbf\x4f\x7c\x7f\x84\xf7\xa2\x98\x24\x3c\x84\x28\x40\x67\xfe\x53\xad\x06\x59\x66\x78\x51\xba\x94\xd6\x02\xf2\xe9\x56\xec\xa1\xf6\x20\x76\x0a\x53\x8e\x3c\xe9\x3e\x89\xa9\x0c\xf4\xa3\x1c\xfb\x6a\x8e\x77\xd3\x45\x51\xbd\x49\x59\xaa\xc9\x49\x3d\xee\xd9\x4d\xb3\x85\x0b\xc3\x78\xfc\x29\x8d\xcd\x9f\x4e\x82\x40\x61\xec\x31\x6a\x5a\x9e\xa4\x01\x71\x62\x42\x31\xf5\x70\x35\x81\x7e\x10\x9e\xf8\xac\x03\xf5\xc9\xf1\x76\x08\x65\x07\xe3\x7e\x5f\xbf\x52\x91\x29\xee\x2b\x15\x9a\xc2\x0f\xaf\x9b\x43\xb2\x15\xcf\xeb\xf7\xa2\x90\x70\xbc\x87\xd5\x40\xd7\xcf\x9d\xe1\xc2\xa1\x97\x0e\xb7\xd7\x92\x2d\xbf\xbf\xab\x6b\xa2\x7b\xfa\xea\xa7\xb8\x33\x28\xa9\x16\x84\x55\xa1\x24\x79\x19\x17\xbf\xc2\x7d\x3c\xd5\xe6\xd3\x00\xac\x1f\x9b\x14\xdc\x20\x34\xe9\xc0\x73\xc5\x76\x27\x55\x38\xb5\x01\x0a\x05\xc9\x24\xcb\x0a\x9b\x20\xb8\x94\xda\x75\x14\x9a\xae\x97\x09\xb3\x5c\xc4\x00\x10\xcb\xe0\xbd\x87\x25\x58\x6d\x5f\x79\x5c\x0b\xf9\x5f\x7b\x33\xe1\xe5\x24\x4e\xae\x34\x24\xde\x77\xdc\x1e\x21\xc7\xc4\xd7\xeb\x99\xa1\xe9\x8b\x3d\x25\x89\x6a\x2e\x7a\xd3\xb1\xe7\xc8\x11\xd6\xa4\xf1\x10\x32\xfd\xd4\xfe\x82\x59\xa6\x1c\x4f\x3e\x17\xfa\x7e\x36\xef\x0e\x4c\xda\x8b\x8b\xba\x58\xff\x8d\x28\xc0\xdc\x6e\x10\x81\x33\x4e\xbb\xb9\x35\x85\x75\xa2\xed\x6a\xad\x18\xc8\x73\xc7\xd9\x6f\x16\x92\x1b\xc2\xa1\x8c\x82\x43\xed\xf6\x64\xc7\xb6\xe8\xbb\x4e\xe8\x75\xab\x7d\x63\x15\x6a\x48\xc1\x3f\x22\x39\xb9\x6f\x30\xec\xf7\xad\x88\x54\xe3\xdc\xf6\x25\x43\xf4\xcb\x48\x10\xf1\x80\x4e\xb3\x1a\xea\x69\x5f\x59\x77\x78\x99\xa1\x83\x64\xcd\xb0\x12\xd1\x84\x6a\x3f\xc8\x6b\xb5\x21\xf0\x1c\x79\x21\x15\xeb\x59\x92\xc6\xeb\xd9\x06\x0a\xd2\xaa\x69\xea\xbe\x48\x4e\xa6\x26\xf9\xf2\x72\xdb\xc4\xf9\x6a\x96\xa7\x52\x4f\x63\x7b\x2e\x5d\x2b\x1b\xf4\x56\xba\x59\x5a\xc6\xe9\xd8\x0b\x53\x62\x83\x7d\x72\x3b\x94\x34\x0f\x10\x16\xf6\xc2\xe4\xb3\x4d\x26\xce\x85\xeb\xd4\x80\x6a\x70\xcb\x3d\x76\xd0\x88\x2e\x46\x41\xfe\xff\x68\x53\xfa\xdc\xcd\xcd\x50\xca\xd2\x1e\x09\x11\x78\x5a\x17\xc8\x78\xf2\xeb\x3e\xf3\x7b\xdd\xbc\xf9\xe6\xd6\xcc\x54\x1b\x12\x51\x16\x44\xdf\x94\xa3\xfa\x29\xdf\x98\x1d\xa7\xa9\xbf\x45\x3c\x42\x18\xdd\xbb\x17\xff\x6b\xcf\xb9\x5b\x44\x84\x3c\x37\xe5\xd0\x7b\x70\xb9\x3d\xc8\x86\x19\x91\x6c\x76\x75\x08\x21\xb1\x6b\x4a\x61\x4b\x10\x99\xa8\xcf\x7a\x76\xbe\x2f\xbe\x5d\xa5\xa0\xf2\x91\x87\x2b\xb9\xae\xc0\xff\xa3\xc2\xfe\xff\xab\xde\xc1\xe7\xd8\x45\xb6\xac\x36\xff\xbc\x88\xc5\xfb\x10\x83\xf4\x0c\x99\xeb\x9e\x99\xca\x54\x1c\xd2\x21\x8f\x4b\x9b\xc7\x86\xdd\x5f\x6e\x92\xfb\xcb\x4d\x2a\xa5\x3a\x7a\x63\x19\x17\x65\x31\xcb\xaf\x8c\xe4\x37\xd0\xdc\xf4\xec\xee\x83\xa1\x91\xf0\x49\xb6\xfe\x26\x49\x6c\xdf\xa4\x5b\x4e\x5b\x19\x49\xce\x47\x4c\x24\xfb\xc8\xcb\xac\xdb\xe1\x68\x60\x8a\xf8\x4d\xed\x7d\x00\x68\xf8\x10\x83\x4c\x95\xf1\x83\xa0\x68\x3d\x05\xcc\xe2\xde\x3e\x32\xc2\x11\xd8\x23\x1a\x3d\xd7\x26\x41\x48\xe3\x3d\x46\x64\xe2\xe9\xe1\x95\x3c\xc6\xe2\x82\x3d\xf6\x6d\x2c\x41\xbe\x61\xb2\xb4\xa4\x5c\x17\xaa\x53\x39\xcc\xcc\x5c\x40\x46\x20\x36\x56\x79\x3a\x62\xd1\x9c\x67\xf1\x0e\xf0\xc3\xd0\xbf\xf8\x69\x33\x36\x65\x60\x87\x55\x80\xa1\xc9\xa5\x54\x66\xb1\xc4\x69\x99\xb6\xa1\x2d\x3e\x1e\x55\x91\xc3\x2c\x53\x69\xb9\x16\x59\x5d\xa8\x40\x30\x5c\xdc\xaa\x31\x2c\x3f\xc5\x37\x6c\xb1\x37\x00\x3a\xfe\xc9\x84\x92\xfe\xbb\x4c\xd6\x3e\x89\x20\x53\xe4\x8a\xb0\xda\x63\x6b\xbc\x4a\x32\xe1\xef\x4c\x82\x2f\xe2\x55\xc2\x39\x8d\xfb\xc5\x3e\xda\xb9\x69\x48\xa1\x2c\x83\x07\xf5\xec\x36\xed\x6d\xe7\x08\x1f\x20\xe8\x7d\xf9\x07\x0c\x0f\x2c\x67\x7f\xb1\x43\x55\xdc\xdb\x54\xd0\xb7\x1b\x36\x2d\xc7\x55\xcc\xf6\x84\xbb\x70\xad\xe1\x55\x57\x81\xb0\x10\x75\x5b\x24\x39\xa2\xff\x03\xb0\xd5\x6d\x04\xc0\xa8\x9b\x4b\x5c\xa3\x48\x98\x90\x99\x9d\x66\x88\x9c\x20\x33\xe5\x84\x0a\x85\x03\x9b\x8c\x6c\x6f\x7f\xe0\x47\x83\x6a\xaa\xa2\x4b\x14\xb8\xff\x6c\x12\xd8\xdb\x0f\xdd\x63\x54\x35\xa6\x2a\x34\xf0\x1f\x08\x4e\x6a\xb2\x5b\xe1\xd3\xff\x9e\x24\x02\xaf\xe1\x66\x74\x65\xd3\xd8\x71\x60\xd2\x42\xbc\x6b\x71\xd3\x3f\xc5\xa4\x94\x13\x8f\x2a\x48\xb2\xbc\xa7\x15\x6e\xe0\x93\xc0\x17\x54\x37\x2b\x62\x3f\x4f\xbb\xdb\x55\xa3\x79\x48\x58\x67\xac\x71\xdf\x23\x43\x83\xef\xd5\x61\x72\xb1\xb6\x8c\xb0\xec\x9f\xc5\x98\x97\x93\x00\xdd\xe9\x0e\x36\xe3\x14\x4d\x16\x55\x01\xa7\x15\xe5\x52\x14\xd6\x4d\xe4\x4c\x31\xba\x5d\xad\x30\x35\xd8\x86\xeb\x72\x30\x7a\x48\x4c\xbe\x5e\xac\x8e\xf3\xbe\x5c\x06\x41\x93\x0e\x79\x3f\xc3\x86\x04\xae\x30\x43\x4b\x96\x22\x50\x79\xc5\x1c\xbf\xc3\x8a\x44\xd3\x52\xbb\x80\xd5\x76\x93\xcc\x43\x50\x84\x6b\x39\xa9\x11\x2f\xc3\x18\x1a\xc6\xbd\x9e\x91\xa0\xce\x4b\xa0\x87\x07\x31\xb5\x71\x3b\x53\xe0\x24\x16\x83\x47\x44\xba\x00\x10\x6a\xa7\x8f\x57\xad\x86\xed\x74\x64\x8a\x92\x94\x0a\x1f\x93\x52\xe1\x63\xd6\x71\x76\xbd\x90\xd9\x20\x5b\xd2\x02\x02\x10\xf5\x3a\xf0\xbc\x54\x30\xd3\xdd\x9a\xfc\x03\x29\x7d\xa0\xa3\x02\x84\x2b\xd6\x19\x90\xbf\xe5\x78\x4a\x88\x6c\x65\x7e\xc5\xc9\x34\x0f\xe3\xa2\x14\xc8\x37\xde\xd1\x19\x4c\x25\x39\x21\x10\x7f\x3f\xeb\x15\x33\x24\xfd\x7e\x92\xca\x70\xe8\x38\x0b\xe5\x98\x60\x62\xa6\x1c\x4b\xfe\xa6\xbe\xcb\x01\xdf\x7f\x96\x64\xbc\xb3\x61\x5c\x58\x36\x42\x7b\x6f\x42\xd2\xf1\xf7\xc8\x72\xfe\xbb\x13\x86\x51\xb4\xbc\x21\xf1\x5b\x4d\x8c\x3c\xfb\x46\x69\xd3\x5e\x5d\x8b\x13\x15\x30\x39\xf6\xa3\x37\xb7\x6b\xb9\x2d\x06\x7e\xb6\x21\x1e\xd9\xbd\x1d\xf8\x45\xbb\x3b\x9c\xbe\x6d\x66\xd2\x42\xd0\xf8\x0f\x63\x5e\xce\x58\x4a\x3a\xee\x8f\x9d\x2d\xfe\xe2\x11\xe9\xd1\x09\x06\x56\x4e\x58\x03\x20\xcf\x86\xa3\x12\xa1\x9b\x12\x5a\x5a\x9e\x92\x8d\x87\xa0\x5c\x14\xd5\x04\x1e\x9a\x74\xbc\x66\xba\x10\x56\x06\x58\x43\x65\x02\x02\xa8\xfa\x80\x8b\x9e\x1c\x38\xfd\x3f\xfb\x6c\x87\x48\x65\xef\x93\x8f\x48\x2f\xce\x6d\xb7\x14\xa6\xb3\xa8\xec\x91\xc4\x79\x8b\xdc\xa3\x18\x53\x52\xc5\x55\xbd\xdc\x38\xee\x93\x66\xdc\x6f\xbb\xe0\x46\xa3\x81\x06\xae\xd4\xa6\x95\x69\x21\x06\x64\x11\x19\x22\x04\x37\xb2\xdc\x16\x71\x6f\xac\x90\x1d\x2c\xd5\xff\x62\x42\xeb\xf6\xbf\xa8\x7b\xd7\x9b\xd4\x81\xe2\x3c\x6e\x82\x71\x57\x84\x88\x7f\x48\x14\x91\xdc\x6e\xc4\x05\xc0\x1e\x00\x3e\xdf\xc7\xbe\xa0\x1b\xa7\x1b\x37\xaa\x61\x1a\xb0\x06\x3f\x98\x04\x72\x41\x7f\x9c\xac\xd9\x1e\x68\x23\x4a\xe4\x72\xef\x81\x53\x3b\xc4\x32\xff\x7a\x42\xea\xe5\xf7\x08\x98\x9f\x67\x45\xe1\x44\x8b\x7c\xcf\x22\x50\x15\x2e\x32\x55\xe1\x22\x77\x69\x04\x5a\xe6\x5b\x93\x4b\x4b\x7e\x6f\x6e\x50\x18\xe9\xdb\xd4\x91\xbe\x5b\x01\x52\x76\x82\xd2\xf2\x13\x53\xa0\xcd\xd0\x84\xe9\xad\x8e\xf3\xad\x16\x69\xd4\x9c\x25\xe5\xa9\xb3\x93\xcf\xee\x64\x9e\x1e\x6e\xaf\xcc\x1f\x06\xf9\x5d\x90\xfc\x11\xb5\x43\xc4\x7f\x73\xba\x15\x98\x6d\xa6\x36\x2f\x9e\x70\xff\x4a\xe2\xc4\xda\xb0\x3d\x11\x85\xb8\xe7\xd6\x0e\x79\xce\x1d\x52\xa1\x87\xbd\x20\x13\xcd\xd1\x63\xb5\x39\x7a\x8c\x4b\x33\x67\xc9\xfb\xe5\x4d\x3b\x14\x29\x1c\xd4\xe5\xbf\x47\x9e\x5e\xdf\x6b\xd2\xcd\x18\x18\x25\xf3\x7a\x71\xab\xe5\x65\x3d\x66\x4b\xd9\xd8\x6e\x22\xfd\xc0\x83\x13\xd4\x8c\x9c\x34\x80\x91\x46\xe3\xd5\x24\xee\xaa\xeb\x80\x56\x34\xab\x87\xa0\xa5\xce\x86\xdc\x38\xb7\xc5\x38\xf1\xd0\x06\xd5\xde\x70\xf7\x2a\x27\x9d\x10\x4c\xae\x25\x18\xfb\x08\x39\xa5\x76\xe9\xeb\xeb\x2b\xf3\x32\x63\x76\x77\x42\x48\x74\x85\x2c\x75\xcb\x78\xb8\x6a\xf3\xc4\xa4\x3d\x64\x80\x18\x89\xb7\xa3\xf0\x49\x99\x78\x0a\xb7\x0f\x01\x54\xb2\x61\x7b\x7b\x42\xbb\xeb\x87\x13\x1a\x2d\x67\x27\x35\xe2\x6d\x6b\x61\xd1\xf7\x54\x03\x56\x67\x0e\x02\xab\x21\x10\xd7\x09\xdd\x1f\x27\x26\x9f\xf5\xc5\x80\xe5\x67\x3b\xc1\x72\x46\x34\x1f\xbc\xa9\x9a\x7f\xc9\xbb\xb7\x3f\x29\x05\x53\x5d\xee\x16\x69\x5e\x41\xf0\x5c\x8e\x3b\x9a\xd7\x0e\xb2\x6e\x8d\x03\x53\x53\xf4\x3c\xc7\xde\x86\x79\x5c\x25\x28\x84\x3d\xb9\xc9\xf4\xd8\x9b\xa4\xf0\xd9\xcb\x63\x27\x90\x3e\x13\xf4\xd2\x2e\x93\x22\x22\x9a\x20\xca\xf8\xf7\xdb\xee\x30\x5b\xf7\x78\x12\xfc\xfc\x71\xec\x39\x72\x32\x35\x8a\xbf\xf2\x4a\x7b\xc3\x31\xb4\xaa\x37\x57\x2b\x11\xeb\x6f\xea\x4d\xda\x91\x91\x80\x16\xef\xf4\x27\x84\x09\x94\x12\x11\x02\x95\xab\x84\x03\xfc\xeb\x7f\xfd\xff\xcf\xd6\x87\x47\xdd\x2b\x95\xe3\x68\xa7\x76\xac\x3e\xf8\x61\xdc\xcd\xb3\x22\x5b\x2b\x67\x49\x8a\x64\x37\x4b\xaf\xbf\xed\x86\xa8\x1f\x26\xcb\x61\xc8\x68\x0b\x66\xcd\xa8\x98\x06\xf6\x16\xf0\x85\xe5\xb8\x49\xd6\xaa\x6b\xbc\xac\x15\x56\x20\xc8\x70\xcb\x71\x53\x37\x33\xcd\xf2\x4d\xdb\x8f\x45\x90\x5a\x72\xd6\x88\xca\xeb\xd3\xe2\xbf\x2f\xcf\x1f\x6a\x8f\xd3\x71\x31\x46\x1d\xdc\x47\x93\xa8\x0f\x28\x39\x91\x10\x48\x8e\x8e\xda\x62\xdd\xf8\x50\x2e\x3c\x37\xd5\x74\xd7\x07\x38\x4a\xac\xa9\xf6\xb6\x97\xb5\x95\xb2\x0f\x0f\x0f\xd0\xe2\xbb\x94\x48\x48\x06\x80\x50\xf1\x68\x13\xad\xa4\x34\x6f\xc8\x6b\x57\x94\x6e\xf5\x69\xf4\x27\x4f\xe2\xd3\x28\xe7\xdc\xf1\x3c\x4d\x33\x2e\xc7\xc3\x74\x26\x94\xf6\x91\x25\xaa\xe5\x64\x35\xa0\x15\x9a\xc7\xe2\x76\xf9\xb8\xdf\x17\xeb\x66\xa4\x8d\x42\x03\x55\x92\x3b\x45\xe2\x57\xc9\x6e\x49\x4c\x1a\x51\xf6\x38\x4b\xc5\x9f\x22\xab\xd6\xd0\x52\x9a\x76\xa1\xcc\xf6\x2e\xd9\xfc\xbd\x3b\xf5\x8a\xbc\x67\x75\xdc\x17\xf0\x85\x98\xa1\xe1\xcd\xaa\x33\x5a\x83\x1d\x2c\x58\xbe\xad\x1a\xcb\x97\xc5\x4f\xa2\x67\xc8\x75\x3e\xed\xe1\x92\x90\xed\xde\xa5\x8a\xca\xdd\xa6\x9d\x26\x35\x6f\xc6\x5a\xd8\x50\xfc\x88\xbb\x1e\x39\x99\x90\xd5\x56\x6f\x6b\x1f\x35\xd4\x8f\xbb\x6c\x1d\xb9\xe0\x45\x8a\xea\x7e\xc9\xad\xec\x3a\x21\xdc\x22\x44\x86\x23\x5a\xa0\x7a\x6a\x9b\x18\xf4\x27\xc8\x16\x7e\x5a\x8d\x61\x79\xb9\x5d\x8e\xf3\x61\x16\x27\x33\x24\xe8\x84\xe1\x82\x2d\xe1\x3e\xb9\xa6\x9e\x27\x69\xd4\x51\x5c\x76\x07\xd5\x12\xe4\x0d\xe6\xce\xb0\xeb\xd5\x19\x12\x0d\xe8\x67\x59\x61\x57\x6d\x9e\x4b\x75\xd4\x3f\xe7\x95\xf9\x95\x90\xa3\x7a\x8c\xca\xb5\x26\xe4\x60\x15\x6d\xf7\xc6\x9e\x16\xaa\x7d\x0a\xf7\x08\xb4\x51\x11\xc4\x28\x47\x26\x4e\xe7\xdc\xd7\xab\x11\x53\x78\x6e\xf7\xd0\xc7\x96\x13\xe0\x36\xd4\x43\x93\xd6\x84\xa6\x17\xea\x3a\x25\x6e\xd1\xf5\xbe\x82\xa4\xe8\xf9\x19\x12\x29\x59\x2d\xe2\x5e\x6c\xf2\xad\x3d\x78\xfb\xda\xb7\x71\x97\x8b\x16\xed\x0f\x23\x82\xe8\x80\x5a\xe7\xd7\xfe\x30\x46\x8e\xb9\xf8\x41\x0d\xaf\x89\x20\xbc\xba\x1a\x0b\x2c\x5c\xaa\xdb\x5c\x1b\xba\xd5\xc0\xcc\x49\x62\x7d\x76\x08\xa8\xa4\x70\x23\x27\xd4\x46\xe8\x8d\xd9\x38\x1d\x61\xb4\xaf\x08\x55\x57\x86\xa6\xce\x15\xbf\x72\xac\xe5\xd6\x4a\x83\x10\x5b\xdb\x15\x02\xaf\x4c\x2b\xd8\x1d\x79\xa9\x6d\x8d\x48\x8c\x8b\x6c\xf4\x84\x98\x0e\x8f\xa3\xd0\xf2\xb9\xe5\x23\x90\x7e\x92\x6d\x22\x48\x3a\xc4\x0a\xaa\x8b\xfe\x45\x84\x80\xd0\x91\x07\x0e\x04\xf9\xc8\x9f\x63\x2f\x15\xf6\x8a\xab\x29\xa1\x3e\xfe\xd0\x3d\x74\x60\xf2\x44\x3a\x46\xb5\xc6\x1d\xac\x08\x9d\x1b\xd5\xf6\xc6\xcb\xb9\x13\x91\x44\xcb\x0d\xe0\x44\xc4\x8c\xd5\xa9\xb1\x78\x4e\x56\xb0\xd8\xbd\xcb\xc9\xcc\x9c\x43\x74\xe3\x5a\xbe\x81\xf9\xa2\x6a\xd4\x01\xaa\xf8\x34\x10\xdd\x18\x27\xe8\xc6\xe0\x41\x9d\xda\xa9\x1a\x73\x70\xb9\xbd\xb0\xf0\x99\x60\xea\xf4\x2d\x77\x11\xc8\x22\xef\x4c\xa8\x98\x27\xaa\x49\xc8\xc3\x3f\x98\x04\x1c\xd9\x7d\x5c\x2a\x16\xe2\xbb\x35\x3a\x4f\xeb\x15\xf5\x37\x3d\xe6\x54\x62\x3d\xd1\xa6\x0a\xe5\xd5\x00\xc9\x3d\x01\xa5\x9f\x38\x84\xba\xb7\xbe\xf6\x95\xb3\x5d\x28\x82\x88\x85\x45\x44\x3e\xc0\xc7\x90\x39\x09\xa6\x84\x43\x98\x33\x48\x12\x30\xb5\x85\x26\xa2\x04\xa4\x9d\x33\x73\x65\xbe\xed\x44\x53\x08\x89\x0c\xf6\x86\x72\x67\x9e\x0b\x65\x97\xee\xd7\xc6\x71\x11\x57\xbb\xcb\x13\xee\x07\x90\xa0\xdf\x24\xe0\xeb\x03\xe6\xdd\xc0\xcb\x44\x90\x1e\x51\xa8\x20\x3e\xc2\xe8\xf3\x09\x64\xf5\x48\xe4\xab\x6a\x1a\x21\x18\x21\x2a\xb5\x1e\x62\xca\xc1\x38\xef\x25\x32\x81\xc5\x74\x26\x22\xf2\xd6\x25\x6a\xbb\x8d\xf2\x4c\xd4\xbc\x0b\x8a\x59\x66\x9d\x5b\x8c\x1c\x77\xa6\xd8\x74\x0b\xed\x32\xdf\x72\x7e\x58\x78\x37\xb7\x91\x99\x79\x7d\xaa\xe5\x00\x80\x38\xc0\x00\xca\x71\x12\xa7\xc5\x1c\xd5\xf3\xa5\x14\x8e\x15\xe8\x02\x79\x62\xc9\xf6\x23\x27\x6e\xd2\xaa\x6a\x1b\x93\x8d\x72\xd9\xc5\xfd\x6b\xf1\x00\xf1\x33\x53\x8b\xd4\xf3\xcf\xb7\xb3\x14\xe8\x41\x8c\xfd\x07\x2e\xf2\x94\x63\x5f\xa6\x1d\x98\x8d\xac\xdb\xa2\x19\x06\x6c\xbe\x1c\x53\x1c\x6b\x86\xa8\x72\x60\x1f\x45\x87\x40\x8e\xe9\x55\x14\x5f\x1b\x9b\xdc\xee\x0d\xf8\x5c\x38\x9b\x61\x46\x7c\x48\xfa\xb4\x3f\xc0\x60\x45\xd7\xff\x07\x51\x10\xab\x15\xc1\x72\x4c\xe4\x3f\x9e\x10\x54\xf5\x46\x93\x37\xdd\xaa\x29\xe3\xd5\x4c\xe2\x64\xec\xd8\xe2\xfc\x8e\xf5\xea\x3c\xed\x85\xa7\x5d\xf3\x0c\xb5\x8e\xbb\xe4\xa2\xae\x4d\xe9\xfd\xee\x55\x79\xfd\xb5\x15\x55\xb1\xfc\x21\x2e\x09\xbd\xbc\x8f\xa9\x5d\xb9\xb7\x43\xb5\xf3\x2b\x84\xc6\x7b\xc6\x95\x30\x1f\x01\x14\x8f\x6d\xe4\x12\x49\xc5\xdc\x70\x6f\x58\xf5\x94\x0e\xb0\x10\x66\x77\x60\x0a\xfb\x74\xf5\xa7\xf8\xe7\xdb\x11\x15\x57\x26\x13\x02\x94\x7d\x84\xa9\x25\x10\x36\xa7\x19\xe5\x61\x38\xd5\x3c\x91\xbf\x9a\xd4\xbb\xf8\x2b\xf3\xd2\x45\xff\xa9\x7b\xe6\x18\x0e\x32\x5d\xe4\x47\xa8\xa1\xf1\x88\xb8\x7f\xbb\xb7\xab\xf1\x23\x36\x2a\x64\x1f\xd4\xcb\x36\xd3\x4f\xb9\x39\xab\xd1\x87\x43\xee\x88\x8a\x34\xa6\x0a\x12\x98\x4f\xb9\x06\x00\x7e\x52\xc8\xb9\x3e\x80\xad\x6e\x12\xef\xfc\x16\x56\x57\x0c\x9f\xb9\x4e\x75\xc5\x98\xf2\x30\x91\x73\x1d\xcb\xbd\x07\x1c\x14\x50\x6d\x43\xa8\xca\x7e\x82\xb5\x7a\x5a\x20\xf0\xa8\x2c\x57\xa8\x1e\xcc\x76\x48\x46\xe1\xce\x24\xa8\x9b\xf6\xec\x30\xeb\xe6\xa6\xcb\xf2\x47\x27\x78\x47\x3d\x41\xb0\x8a\xee\xd8\x89\x1f\xec\x0f\xf0\x15\xf4\x47\x45\x03\x25\xaa\x81\x61\xc2\xf2\xf1\x1e\xde\x0f\xf2\xfd\xeb\x78\xa5\x72\x42\xac\xa0\x63\x13\x8a\xcd\xa4\x11\xa8\xea\x0b\x34\x29\xde\xa1\x22\x75\x95\xf4\xec\x75\xdf\xad\xfb\xb3\xbb\x02\xa4\xff\x0f\x41\x79\x42\xda\xb1\x8b\x3c\xf1\x7e\x24\xc0\x44\x3c\x99\xab\x13\x22\xf6\x60\x2d\x50\x92\x7b\x63\x93\x78\x60\xf2\xbe\x6a\x53\x22\xd5\x79\x07\xdf\x20\x27\xd1\x81\xfa\x26\xfb\x85\xf6\x17\x5b\x5c\xac\xab\xc6\x94\x56\xf4\x9e\x88\x9d\x15\xc1\x5f\x6d\xbf\xf8\x79\xb7\xad\x29\xb7\xa9\xe5\x25\x79\xf7\x6e\x93\x83\xeb\x71\xf7\x42\xb5\xc8\x56\x7d\x11\x66\x9a\xfa\x7d\x61\xd2\x7f\x1e\x73\x14\x37\x31\xeb\x78\xe3\xf2\xda\x1d\xc2\x4c\x55\xe0\xb0\xb9\x1e\xd8\x0e\x2d\xff\xff\xdf\x0b\x1d\x17\xb9\x78\x69\xd2\x83\x21\xc0\x74\x83\x1a\x33\xef\xda\xc4\x5b\x18\xfe\x9f\xd2\x79\xf4\xe6\xac\xaf\xf8\x36\xdf\x39\xb7\xe9\x7b\x25\xf6\xaf\x6a\x55\x47\xa0\xce\xbe\xe4\xfc\x9b\xbf\xee\x89\x9d\xe4\x99\x71\x8e\x04\xc9\xf7\x6d\x93\x54\x97\x2d\x40\xd4\x5c\x39\x24\x13\x13\x62\x65\x78\x58\x4f\x52\x7e\x83\x55\x0b\x61\xf0\x5d\xb7\x12\x61\x7f\xb9\x8b\x97\xa5\xa3\xac\x7a\xa0\x80\x42\xff\xd9\x54\xde\xb0\xbc\x7c\xb8\x5a\x29\x93\xb1\xef\x29\x68\x57\x8e\x60\x08\xdf\xa3\x36\xf7\x30\x4b\xcb\x81\xa3\xf9\x7b\x59\x8e\xa0\x02\x2a\xf2\xd5\x5e\xe3\xe3\xa0\x82\x11\xc4\x38\x0f\x4f\xe4\x5d\xae\x0d\xed\x06\xa4\x4f\x3a\x51\x64\xb8\xff\xa8\xd6\x80\x71\x43\x47\x08\x7c\xae\x85\x81\x7d\xe8\x5d\x2c\xa4\xbe\x8f\xb5\x78\xc4\xbb\x22\x56\x8f\x4f\x6b\x64\x53\xe1\xd0\xa1\xf6\x5a\x9e\xa9\xee\x8a\x22\x80\xaa\xdf\x56\x68\xd0\xb3\x1e\x0d\xd4\x4d\x1c\x1d\x8b\x21\x36\xbb\x28\xe0\xbc\xce\x8a\x6b\xd3\x82\x14\x0b\x0b\x0e\x87\x5d\xa0\x48\x8d\x09\x78\x93\x14\x24\x6f\x36\x06\xff\x1b\x16\xb2\xd9\x98\xf1\xa0\xde\xc8\x31\x29\x97\xac\xe5\xc6\x39\xff\x56\x77\xed\x81\x24\x07\x3d\xa8\x84\x20\xa8\xdd\x2c\xc9\x72\x72\x7a\x05\x08\x57\xbf\x91\x54\x78\xbb\xdd\x2c\x87\x06\xb4\x78\x56\x45\x01\x90\x7d\x19\x54\x02\x6f\x66\x15\xa2\xe5\x77\xdc\x8a\x02\x02\xe3\xa9\xa9\x15\xe5\xd0\x4b\x87\xdb\xc5\x38\x1f\xe5\x71\x61\x49\x5f\x1b\xd6\xd2\x8a\x64\x0e\x89\x69\xfa\xc2\xc6\x0b\x73\x54\xfa\xf8\x10\x03\x0c\x63\x0a\xca\x2c\x40\x81\xef\x23\x6e\xe3\x25\x7e\x0b\x7f\x3a\xf5\x16\x5e\x9e\x3f\xd4\x5e\xb3\x9b\xaa\x85\x2d\x56\x4d\xe4\x47\x77\x8a\x8a\xf6\x85\x59\x1f\xe7\x90\xc1\x47\x54\x01\x3d\x38\x39\x26\xa0\x5e\x9e\x6d\x99\x64\x86\xe4\xa2\xce\x4b\x22\x04\x0c\xc1\xc7\x13\xe2\x62\xdf\x25\x2d\x96\x5e\x5c\x74\xe3\x51\x12\xa7\x46\x10\x93\x1e\x40\xe3\x5f\xf3\xff\x8e\xfb\x51\xed\x43\x52\x7b\xb4\xf9\x86\x49\xcb\x62\x26\x40\xed\x64\x43\xd0\x8a\x65\xcb\x0b\xf2\xdf\x9b\x92\x1b\x58\x58\xa8\xfe\xbb\xae\x53\x5d\x28\x17\x13\x72\x49\x7e\xc8\x4a\x86\xc3\x55\xfb\xe6\x9b\x89\xe7\x69\x49\x71\x8c\x8d\x86\xa6\x25\xed\x96\x97\xdb\x49\xdc\xb5\xa9\xbc\x6b\xcc\xc6\xaf\xbb\x01\x22\xc7\x24\x3b\x6e\x8a\x62\x9c\x9b\xb4\x8b\x9a\x9e\x27\x9a\x79\xa9\x39\xe0\x9f\x94\x74\xe6\x06\x85\xfc\x83\xd7\x1f\x5c\x35\xdd\xf5\xa7\x49\xe2\x76\x0f\x2a\x3b\xf8\xcc\xbf\x47\x08\x24\xd6\x23\xf8\x02\x34\xf1\xe6\x1c\xd9\xd7\xbd\xfb\x1f\xff\x72\x15\x8e\x3c\xec\x7c\xb1\x43\xac\x82\xd6\x36\x7b\x95\x87\x2c\x18\xf6\x30\xa8\x15\xdd\xc6\x66\x2e\x45\x20\xb7\xcc\x62\xfb\x06\xb6\xcb\xad\x62\x0f\xfe\x82\x77\x8b\x2f\x92\xac\x2e\x84\x8c\x6c\x49\xa9\x8a\x54\x45\x73\x99\x9a\xbb\x0d\x91\xd8\x21\xa4\x74\xa3\x4e\xab\x49\xcb\xb8\x3b\x4e\xd0\x56\xc1\x52\x7c\x85\x90\xf1\x57\xc8\xf0\x7c\xb8\x1a\xa7\xaa\xd3\x83\x02\xe7\x7e\x74\xe6\x81\x21\x07\xa0\x1d\xd9\x26\x96\x39\xec\x22\x8f\x99\x68\x78\xc6\x83\x25\xcd\x68\x94\xdb\x6e\x0c\x73\x67\xef\x81\x0d\x82\xa1\x1c\x53\xb6\x91\xe5\x6b\x33\xb4\x0f\x80\x8c\xe3\x0d\xd0\xbd\xc0\xd4\xef\xd0\x1a\xf7\xcb\x8b\x07\x5f\x3c\x78\xe4\xf0\xff\x87\x5a\x9f\xc2\x32\x07\xaa\xb1\xb5\x1d\xe2\xf3\xe3\x6e\x3b\xf6\x40\xa0\x6a\x94\x7a\x21\xe0\xaf\x06\xe8\x90\x4b\x6a\x65\x6d\xc1\xf6\x01\x00\xcf\x2e\xae\xc4\xab\xa8\xab\xee\x3f\xd5\x68\xc1\x00\xbb\x31\xd9\xfd\x05\xa9\x54\x3f\x05\x79\x38\x74\xe6\xee\x63\x79\xd4\x3e\xbe\x9b\x31\x98\x93\x3f\xc3\xae\x88\x3d\xfb\x8a\x8b\xd0\x3d\x16\xd6\x8b\x21\x1c\x43\x60\x89\x8b\xbc\x87\x3a\x01\x50\x41\x88\xef\x11\x65\xee\xea\xb8\x98\x1c\x61\xc6\x0d\x59\x6e\x10\x5a\xee\x71\xdb\xa2\xea\xce\xb8\xd5\xb9\x26\x33\x81\x45\x66\x5f\x15\xef\x3f\xda\x8e\xc2\x3e\x71\x8a\xfa\x38\xb6\xe8\x66\x79\x89\x9c\x9b\xc8\x07\xc1\xf6\xb4\x09\xa0\x06\x21\xdf\x78\xc3\xce\x92\xa3\xf3\x35\x22\x83\xb7\xdc\x98\x12\x63\xf0\x09\x99\xbc\x9c\x9c\x82\x82\x2f\x2c\xb4\x7b\x76\xcd\xb8\xa1\x4c\x3b\x14\xef\x5c\x07\xc8\x1a\x27\xb7\x89\x2d\x90\x3d\xa3\xa2\x73\x8e\x05\xf3\xce\x79\x38\x86\x40\xa5\xe7\x88\x87\x79\x7b\x12\x90\xc0\x62\xfc\x45\x5a\xe3\xcb\x81\x87\xe3\x93\x9b\x6b\x34\x45\xd7\x32\x6d\x74\xa8\xb0\x6d\xcb\x1b\xb0\x9c\xf7\x80\xff\x32\x37\x69\xb1\x96\xe5\x8a\x93\x15\x0b\x39\x64\x4f\xca\x1a\xe4\xee\xff\xd4\xde\x79\xe4\xa5\x76\xdf\xe4\x3d\xbb\x53\x20\xf2\x31\x09\x44\x3e\x9e\xea\x97\x54\x6f\x25\xcb\xbb\x03\x5b\x94\xb9\x11\xf0\x26\xe0\x47\xb7\x90\x2f\x20\xc2\xfa\x23\x37\x4d\xb1\x64\x1d\x75\x59\x34\x30\x6e\x67\xa7\xe2\xa5\xe5\x65\x27\xe5\x6e\x19\x32\x45\x32\xfc\xdc\xef\x28\x4d\xde\xb7\xca\xfc\x53\x1d\x2c\x77\xe5\xaa\x90\xc5\xf6\x98\x01\xb8\x72\xb9\x09\x0b\x95\xdb\xb5\x71\xea\x5d\xda\x54\x73\x9b\x72\x99\x3f\xa4\xaa\xa6\x19\x66\xdd\x0c\x3d\xfa\x9a\xa3\x1f\xa6\x27\x74\x2e\x74\x76\x36\x34\xca\x7a\x71\xb1\x2e\xcb\xb3\xba\xfa\x54\x9f\x90\x63\x4f\xb5\xea\x66\xe3\xb4\xb4\xf9\x30\xdb\x10\xb0\x36\x3a\x27\xb0\xa0\x95\xe3\xc6\x69\x92\x9a\x37\xe3\x2c\x55\x7e\x34\x9e\xfa\x05\xae\x84\x5c\x98\xda\xae\x0f\x2e\xb7\x47\x59\x96\xdb\x1c\xd6\xcb\xc8\x46\xef\xd6\xa4\xf8\xaa\xb7\x86\x95\x7b\xda\xca\xfb\xc8\x4b\xc1\x42\xcf\x95\x9f\x5f\x56\x17\xc4\xd3\x93\xe0\x88\x78\x9a\xf0\x71\xd9\x68\x94\xe5\xe5\x38\x05\x78\x8b\xcc\x47\xff\xf9\x84\xf6\x88\xb7\x89\xf5\x05\x8d\x01\x3c\xa4\xe3\x4d\x1e\xf5\xfd\x2c\xe9\x59\xb4\x12\xf1\x69\x31\x15\x94\x93\xa0\x39\xe8\x1a\x02\x5b\xb3\x81\x76\x39\x83\xf5\xb8\xd6\x41\x57\x5b\xda\x10\x22\x9c\x6e\xea\x42\x14\x65\x96\x0f\x67\x09\x6f\x85\xb2\x1c\xb6\xf6\xc7\x35\x19\x2b\x77\x93\x98\x1c\xdf\xf6\x5d\x56\x33\xac\x2e\xf9\x37\x7f\x5d\xb9\x92\x51\x8d\x38\x19\x52\xb5\x91\x35\xe9\xb8\x2c\x88\x49\x83\x36\xa0\xfa\x9c\x3f\x15\xba\x11\x6f\x96\x7b\xa8\xeb\xf7\x9e\x1b\x5b\x0a\x0c\xab\x3e\x82\x9a\xc9\xc9\x88\x38\x4d\x28\x55\xcb\x3f\x4c\x88\x19\xf0\x2d\xdf\x16\x5b\xcd\xe3\x62\xdd\xc5\x82\x62\x35\x39\x09\xdb\xf7\xd3\x9d\x50\xe6\xd9\xb5\xed\xb9\xae\x29\xd0\x1d\xee\xe1\xa8\x14\x47\xa8\x75\x1c\xa3\xe8\xac\xc8\x86\x76\x73\x60\x73\x3b\x43\x53\x96\x1f\xd8\xc9\x09\xef\x59\xf4\xc9\x7e\x62\x86\x59\x9e\x8d\x8b\x96\xdb\x85\xc5\xa4\x0a\x5d\x06\x75\xac\xd2\xfe\x7b\x77\x23\xad\x75\x8c\xdd\xa3\xd6\x96\xb1\xde\xa7\xeb\x62\xcf\xd0\xb3\x39\xcf\xd5\xbb\x07\xb5\x96\x76\x83\x26\xa0\xcc\xa2\xd0\xd8\x97\x0c\x1d\x6f\x14\x4d\x2d\x35\x51\xdb\x99\x8f\xbd\xf6\x5a\xb5\x04\x63\xb1\x57\x49\x75\xd2\x6d\xfa\x78\x8a\x99\x74\x70\xb9\x9d\x9a\x61\x2b\x20\xf1\x77\x28\xf1\x35\xc4\x6f\x5f\x1b\xc7\xdd\x75\x5b\x94\x2d\x17\x9b\x78\xa2\xa4\xb7\x1e\x39\xe7\x5f\xf8\xd0\xbc\x9e\xe5\x73\x35\x72\x20\x09\x0e\xb2\x2f\x94\x16\x4c\x94\xb7\x5c\x5d\x3f\x1e\xd1\xa7\x3b\x4d\x1b\x46\x37\x83\xd6\x5f\x2e\x80\x39\x0c\x28\xb1\xb1\x44\x81\xe9\x7c\xc4\xae\xcf\xff\x91\xd4\x86\xed\x70\x94\x64\x5b\x43\x27\x19\xb1\x32\x2f\x57\x7d\x85\xa4\x1a\xaf\x4c\xc2\x42\xdd\x1f\xaf\xda\x7c\x96\xf5\x86\x5d\x40\xa7\x42\xc4\x6e\x64\x22\x42\xfc\x3a\x5a\x1c\x72\x32\xd5\xd3\x5e\x58\x6c\x9b\x71\xb5\xc7\x25\x5e\xff\x00\x55\x9a\x77\xc9\xa4\xe0\xdd\xa9\x8d\x65\x69\xa9\x6d\xd2\x34\x1b\xa7\x5d\x4d\x84\x7c\xf0\x10\x8c\x5e\xcf\x4d\xad\xc6\x2b\xf3\x2b\xed\x0d\x93\x48\xf7\xdc\x9b\x72\xae\xcc\xeb\x31\xe1\x88\x72\xdb\xb5\xa3\x32\xde\x88\xcb\x2d\xd6\x71\x41\xc4\xaf\x04\xcd\xcf\x4c\x49\x94\xaf\xcc\x7f\xae\x9a\xf2\xa8\xf4\xb4\x5c\xd5\x07\xb7\xfe\x7d\xce\x5d\x6e\xb9\x54\x43\xd1\x09\xad\x2f\xff\x96\x56\xc2\x23\x06\x66\x43\x3d\x5f\x82\x1d\xf7\xbb\x88\x79\x4f\xb9\xa2\x9a\xb4\xa0\x5c\x5c\x4b\x80\xa5\x65\xaf\x7a\xea\xde\x82\xe6\xbf\x64\xa8\xff\x4f\x10\x9a\xa2\x78\xf3\x0f\x5c\xc4\x8d\x14\xfa\x43\x44\xdc\x3a\x36\x42\x5d\xfc\x78\x44\xee\x44\x17\x19\xb6\xf3\x33\xbc\x78\x6f\x96\x1f\xba\xad\x8f\xf1\x2a\x10\xd7\x3f\x68\x9a\xd2\x6b\x76\x68\x84\xed\x2c\x1a\x3c\xc8\xf5\x7c\x09\xd2\x87\x8c\x3f\x64\x6f\x8c\x32\x37\x98\xca\xa8\x25\x9d\x77\x6b\xaf\x1c\x47\xcc\x68\x73\x42\x19\x2e\xb4\x04\x87\x76\xf1\xd1\x15\xaa\xe9\x97\xb9\x71\x40\xf6\xd9\xe9\xd5\x50\x4e\x22\x4e\xf4\x9c\x1f\x83\x26\x7d\xe1\x6a\xd6\xb2\x64\xbd\x70\xab\x12\x56\xec\xb3\xee\xef\x90\x63\x5d\x8d\x82\x3c\xc3\x0f\xa8\x00\xb0\x66\x7b\x36\x8f\xbb\x59\x5d\xf8\x97\x78\xaa\xe4\xc9\x61\x8a\x01\x0a\x0c\x5e\x25\xaa\xfa\x3b\x1d\x7e\x2d\x2f\xc0\x71\x8f\xd4\x9a\x72\x3b\xb2\x79\x99\xe5\x82\x29\x97\xb6\x02\x5e\x87\xf6\x18\x34\x9b\xec\xc5\x45\xe2\x6a\x20\x3b\x61\xd3\x88\x23\x4f\xb1\x09\xe0\xc5\x29\x4a\xd0\xe2\x11\x07\xb5\x2d\x06\xa6\x97\x6d\x2a\xd1\x10\x50\xb8\x5b\x88\xf1\xe4\x84\xe0\xee\x9b\x71\x9a\xda\x9c\x71\x60\xdf\x20\x87\xa6\x6f\x44\xbf\xfc\x49\xaa\x44\x36\x2d\x6d\xda\xf5\x51\x34\x26\xd2\x95\x88\x66\xd5\x95\xc9\x2f\x10\x3f\xae\xb4\x79\x37\x4b\x12\xdb\x8f\x4d\x69\xb1\x2c\x4b\x98\x05\x29\x33\x8d\xb9\x1a\x54\xef\xd2\xac\x8c\xfd\xca\x22\xb5\x65\x8a\xd9\xce\x07\x81\x86\x74\xe4\x82\x87\xe5\x65\x1f\x96\x51\x1e\x72\xda\x3f\xe6\xc4\x76\xcb\x71\xae\xc5\x2b\x3c\xdb\x9b\x93\xf0\x9c\x6f\xd2\xce\x9b\xdb\x6c\xe4\xb3\x05\x6d\xd7\xc1\x58\x4a\x8e\x69\x95\x8a\xd3\x9e\x1d\xd9\xb4\x67\xd3\x72\x6f\x20\xd4\x7c\x40\x90\x8d\x53\x75\x08\x46\x3d\x68\x58\x51\xd8\xc5\x2d\xc6\x10\x89\xab\x0c\xa2\xb3\x3f\x25\xdc\xf8\x86\xc9\x63\x5b\x0a\xc0\x05\xbd\xa3\x7f\x48\x42\x4f\x68\x30\x23\x7b\xbc\x31\x85\xa1\x73\xca\x58\x76\xb8\x6a\xf2\xdc\x14\x85\x7f\x8f\xea\x02\xdd\x22\x77\xe8\xa7\x08\x7b\xf5\xc2\x6c\xe0\x3c\xed\x43\xdf\xc8\x4f\x49\x8f\x4c\xfa\xd0\xf5\x2b\x30\x0a\xee\x85\x52\x49\x5c\xc6\xdd\xec\xff\x22\xed\x4d\x63\x24\x39\xd3\x33\xb1\xee\xac\xaa\x66\x93\x1c\x72\x78\x0c\x47\xd2\xe8\x40\xae\x77\x0c\xca\xc0\x88\x86\x65\xc0\x0b\xe8\x4f\xa4\xba\x5a\x43\x75\x41\x53\x2c\x54\xb7\x48\x99\xbb\x3f\xf8\x65\xe4\x97\x99\xc1\x8a\x8c\x48\x45\x44\x56\x75\xd1\xfe\x65\x18\xf0\xc2\x3f\x84\x85\xbd\x0b\x7b\xb5\x96\xe0\xb5\x16\x5a\xcb\x5a\x59\x33\x3a\x57\x96\x46\x59\x33\xa3\xb9\x35\x33\x1c\x1e\x43\x0e\xcf\xbe\xef\xee\xea\xbb\xab\x9b\xdd\xd5\x46\xbc\xcf\xfb\x7e\xdf\x1b\x15\xc1\xb5\x81\xfd\x17\xd1\x5d\x99\x19\xc7\x77\xbc\xc7\x73\x64\xe3\x39\x2f\x03\xcb\x11\xa9\x13\x4b\x77\x90\xc9\x0f\xa6\x3e\xbe\x5d\x9a\xaa\x74\x5b\x97\x75\x80\x47\xa4\xff\x44\xef\xea\x2e\x19\x61\xf1\x71\xa3\xdf\x97\x3d\x5c\x6e\x23\x33\x9e\x66\x7f\x51\xa9\xdc\x43\xae\x0c\x43\xe0\x8a\x83\x9a\x14\xc3\x32\x39\x99\xd1\xee\x26\xbe\x71\xff\xef\x34\xe5\xf5\x52\xad\x19\xb0\xb0\xd0\x96\x74\xa1\x07\x82\x08\xee\xfb\xef\xa7\x1a\x0b\xac\xbc\x6b\x8e\xaa\xc4\xcf\x84\x21\x59\x75\xd2\x62\x80\x21\xbc\xa7\xe3\x8b\x00\x1c\x9b\xa0\xbd\x72\xb7\x46\xde\xf8\xcf\xda\x63\x93\x15\x65\xf4\x31\x8c\x24\xd2\x13\x68\xa0\x1a\x30\xf0\x24\x44\x65\xe9\xfd\xa9\x57\xce\xcf\x26\xc5\x90\x61\x64\xaa\xe1\xbc\xe4\xda\xd2\xde\xba\x34\xb1\x83\xb4\x88\x4c\x91\x66\x74\xa1\xc8\x14\xef\x29\x73\xeb\xff\x05\x9f\x44\x7d\xf3\x6e\x13\x23\x9f\xfc\x31\x6c\x8e\x8a\x97\x13\x4d\x59\x58\x90\x63\x35\xe6\x8b\xb4\x30\x31\x3b\xc1\x60\x63\x80\x5b\x2d\x1f\x37\x88\xb4\xe7\x71\xba\x16\xc3\xff\xde\xd9\x7c\x3d\xbf\x8f\x6f\xff\x04\x4d\x3a\x7c\xf8\xaa\xaa\xdb\x98\xf1\xd8\x9a\xec\xe1\xf2\x3f\x31\x09\xe1\xd5\x82\xb7\xb7\xab\x53\x53\x28\x47\x7d\xf8\x47\x81\xe2\x82\x5d\x02\x42\xc3\x11\x96\xcb\xbd\x5c\x78\x28\x0a\x38\x07\xd2\x04\xda\x42\xa7\x50\x4a\x13\x5a\xb3\xf6\xe6\xac\x0b\x0a\xbf\xd8\xe6\x54\x1e\x8d\x14\x0d\x3a\x73\x28\x60\x25\x18\xa0\x4c\x11\x9e\x31\xcf\xe0\x33\x88\x46\xae\xa8\xd2\xc7\xb7\xb1\xf0\x60\x5f\xba\x50\xab\x26\x2d\xef\x6b\xaf\x99\x78\xc5\xad\x16\xa8\x97\x7f\x40\x5f\xc0\xc7\x4d\x39\xf7\xcb\x76\xad\x9b\xe2\xed\x3a\x3c\x9c\x67\x73\xdc\x71\x59\xe2\x9a\x38\x50\xa0\x7e\x08\x94\x3c\x1f\x2b\x7e\xe3\x2b\x29\x32\x0f\xd4\xf9\x90\xbe\x63\xd8\x9d\xd5\xb6\x76\xe7\x1a\x8d\x4c\x87\x91\x18\xd5\x09\xd5\x46\xfb\x22\x6c\x2a\x19\xc7\xcc\xa6\xd9\xc0\x24\xd1\x2b\xcc\x08\x46\xaf\xff\x88\x42\xe4\x1c\x51\xb3\xf5\x65\x13\xa6\xdd\x3c\x4d\x18\x03\x8b\xd1\x7e\x47\xe9\x76\x7c\x49\x6f\xde\xb7\x1b\x70\xf9\x94\x31\xf4\xd3\x6c\x34\xe3\x17\x48\x12\xda\x14\xe0\xec\x75\x7a\xce\x22\x39\xd7\xf4\x05\x26\xa4\x6a\x4a\x4b\x89\x54\xc3\x70\x91\x8f\x9b\x8c\xfe\x04\x4d\x41\xaf\x07\xc1\xe2\xc9\xc0\xd3\xd6\xeb\xec\xfa\x85\x85\x76\x2f\x4b\xc7\x63\x37\x0a\x5c\x4d\xdd\x49\x70\x55\x05\xd8\x47\xa6\x47\xb9\xbf\x6b\x3b\x94\x93\x44\x7a\x13\x92\x87\x99\xac\x7c\x78\x15\x27\x6e\x45\x18\x86\xcf\x1f\xb2\xad\xdb\x4d\xe6\xd0\xd9\x64\x94\x66\x62\x7f\x8c\x99\x79\x1c\x5f\xc0\x27\x0a\x31\x4f\x68\xbd\x70\x52\x40\xf3\x59\x52\xca\xf2\x96\x25\xa3\xdc\xf9\x03\x2f\x2c\xef\x6b\x87\xc3\xf2\x41\xb5\x54\x0f\xb5\x52\x6c\xd3\x00\x65\x13\xc7\x69\x62\x91\xaa\x63\x31\x60\x45\x78\x3e\x51\x05\xa2\x9e\x1d\xa5\x49\x19\x44\x17\x69\x86\xc8\x85\x33\x43\xe5\x92\x7d\x3e\xd8\x91\xd8\x3c\xfd\x74\xfb\xf3\x2f\xa0\xa8\xec\x8c\xcf\xcb\x07\xc7\x27\xea\x56\xe3\x34\x19\x0c\xcd\x24\xc6\x8b\x12\xda\x53\xf9\x33\x7c\x1c\x3c\x51\xfd\xea\x9f\x6f\x3f\xbf\x6f\xc6\xaf\xdd\x70\x7d\x77\xb2\xcb\x8b\xde\xae\x58\xcd\xc7\x5f\x99\xdf\x8f\x5d\x58\xf0\xf0\x74\x65\x52\x3d\xd0\xa1\x14\x49\x6a\x66\xac\x8a\xca\xe5\xa6\xc0\xc1\x55\xfe\x87\x53\xca\x04\x3d\x1f\x12\xd0\xe8\x45\x8e\xd8\x1f\x42\x67\x40\xa0\x6a\x4a\xa8\x02\xb3\x42\x94\xc9\xe8\xfd\x23\x3c\x79\x0c\x73\x07\x8b\xc1\x9d\xaa\x0a\x20\x5d\xae\x93\x49\xfc\xc2\x7e\xce\x6c\x20\x71\x85\x82\xca\xb4\x36\xf0\x29\x64\x5a\x35\xe1\x64\x32\x42\xc0\x2c\x38\xe8\xf2\x02\xf8\xb8\xe2\x83\x9a\x26\x9f\xf1\x96\x90\x37\x91\x7a\x0b\x78\x8d\x2e\x14\xbf\xba\x8d\xdb\xc1\x02\xca\x2a\xff\x52\xa8\xa7\x21\x8a\x99\x38\x0b\x7f\x4b\x2e\x23\xd0\x14\x45\x2b\x74\xd7\x06\x16\x34\x6c\x01\x97\xb5\x78\xd9\x0d\xda\x44\x9c\x13\x48\xb9\x6d\x21\x17\xfe\xdf\xe8\xae\x05\x5d\x8f\x35\x4b\x39\x41\x3e\xcb\x79\xee\xbf\x9a\x7a\x00\xdb\xfb\xca\xae\x9e\xd1\xa6\x15\x3d\x72\x31\x1d\x2f\xb7\x66\xc1\xb1\x96\xd3\x1e\x23\xe9\xad\x69\xeb\x05\x51\x10\xb9\xad\x1c\x5c\xee\x69\x61\xe0\x97\x28\xfd\x65\x55\x81\x40\xe1\xb3\xfe\xa2\x49\x12\x6f\xcd\x64\x99\x4d\x2a\x74\xc4\x19\x50\x17\xb1\xa1\x8b\xcc\x30\x32\xd8\xd3\x8e\xfc\x52\x4c\xb2\x64\xc5\xae\x2b\x6b\x82\xab\x34\xcc\xf9\x78\xea\x73\xb7\x71\x6c\x26\x79\xd4\x65\xf1\x49\xac\x0e\x6f\xe9\xe2\xd3\x5b\x4d\x42\x1e\xd6\x64\x09\xe3\x9e\x19\x9b\x13\x28\xdb\xfc\xb3\xb5\x5b\xf9\xc2\xfe\xf6\x20\xb3\xa6\xe0\x8a\x32\x60\x5c\x10\x14\xe0\x63\xc7\xad\xc9\x9e\x89\x5a\xda\x57\x99\x47\x32\x9f\x38\x0d\x4b\x57\x68\xdc\xeb\xc3\xd6\x9f\xea\xf8\x69\x7d\x0b\x23\x0e\x6f\xe3\xf8\xb4\x62\x7e\xe7\xcb\x5a\x17\xf5\x6e\x7a\x49\xd3\x0a\xbf\x19\x78\xdb\xd3\xdb\xb5\x62\xc2\x0b\x4b\x9f\x6d\x77\x27\xf9\x90\x33\x5e\x37\x4b\x9c\xac\x76\x1d\x4e\xfb\xb9\x76\xdf\x26\x89\x8d\x5b\xaa\xbd\x0c\x58\x15\x1f\xab\x2e\x7a\x3e\xe9\x42\x6c\x05\x6f\x05\x2f\xfe\x03\x4a\x39\xf8\xb8\xf6\xf5\x70\xb0\xef\x72\x37\x02\x15\x5c\x68\x6a\xf1\x71\x2d\x6e\x7c\x7e\xdf\x62\x3b\xb6\xfd\x02\xb7\xc0\x82\x21\x81\x16\x0f\x71\x76\xfa\xb4\x67\xb3\xb8\xba\xd3\x32\xf2\xba\x46\x0a\x41\x99\x59\x13\xd2\x3a\x4f\x0f\x9c\xed\x14\xb0\x5a\x8a\xb7\xc2\x63\xae\x0b\xdf\xb5\x71\x94\x17\xa2\x0d\x20\x60\x6c\xba\x01\x16\xf7\xc6\x58\x17\x74\x9e\x07\xb8\x75\xd3\x74\x34\xe3\x9b\x71\x0f\x77\x3c\xa9\x86\xbb\x85\xa8\x6e\x6a\x70\xe7\x38\x4b\x07\x99\xcd\x73\x4a\xce\xb0\x89\x33\xab\x86\x31\xdb\x81\x8f\xcd\xb7\x2b\xb6\xca\x0a\x44\x30\x57\x33\xf0\xde\x7f\xa8\x9d\xd9\x7c\x9c\x52\x4a\x2c\xbc\x94\x8a\x7b\x86\x28\x39\x35\xe9\x82\x4a\x6a\x51\x75\x21\xbe\xad\x92\xd3\xdb\x2e\x7e\xc8\xc7\xe9\x84\x1b\xad\xe8\xec\x9e\xc5\xb0\xe6\x13\xd5\x34\xff\x35\xcb\xa5\x4d\xc7\x70\xf5\x6c\xd7\x86\x71\xf0\xff\x81\xf3\x96\xdf\x5f\x8d\x06\x11\x8c\x6a\x85\x02\xa0\xe8\x00\xae\x81\xb9\x96\xa5\xc9\xa0\x97\x8a\x38\x32\xb2\x29\x40\x04\x9c\xbb\xc5\xf3\xfb\x38\x07\xfd\x1e\x5e\x80\xf4\x7f\xfd\x9d\x9a\x6c\x05\x09\x9d\x44\x5b\xe5\x67\x50\xb1\x01\xc8\x4b\xb6\xb9\x4f\x55\x7b\x6c\x6b\xd6\xdd\x8a\xf3\x4d\x73\x8e\x54\x1f\x06\x1a\x14\xb3\x6a\x33\x2e\xb5\x8a\x93\xd2\x91\xa9\x32\xf0\xf5\x6d\xa6\xe1\x64\x30\xf8\x0f\x9a\xed\x35\x3c\xd1\xee\x24\x13\x75\x44\x96\x30\x9b\x2a\xb7\x81\x37\x6a\x51\xea\xc2\x42\x7b\x94\x8e\x6c\x52\x4c\xd0\x05\x70\xd8\xb6\xcf\xbf\xe0\xd2\x78\x5f\x16\x48\xcc\x6a\xc5\xea\xe0\xaf\xb5\x5d\xd1\x5f\x6b\x60\x2a\xc9\x76\xe7\x2d\x65\xa3\x75\x52\x1b\x64\x9d\xac\x25\x10\x07\x16\xdb\x85\x19\xdb\x19\xbf\xee\x80\xb1\x26\x1a\xf0\x5e\xcd\xeb\x58\x43\x7c\x7e\xb0\x6d\x7a\x69\x96\xc8\x68\x46\xfe\xc7\xfd\x06\x3e\xd1\x64\xfb\x2c\x4a\x56\x58\x2f\x98\xbd\x74\x03\xb5\xd8\xdf\x52\x4a\xcd\x45\x66\x93\xde\x43\xf4\x3d\x4c\x2d\x99\x2a\x19\x96\x2b\x81\x17\x8d\x38\x8f\x07\xed\x3a\xc7\xfb\x0f\xc9\x7f\x04\x9e\x9f\x71\x8d\xee\x03\x13\x93\xd1\x84\xce\x06\xd7\x89\xcc\x1e\xa1\x69\x23\x18\xce\xc7\x95\x3b\xde\xc8\x90\x9e\x42\xf9\xdf\xa2\xad\xac\xfc\x0a\x2f\x28\x3e\x17\x5b\x2a\x12\xde\xce\x25\xf3\x07\x16\x5d\x32\xdf\x10\xe7\xa7\x93\x22\x8f\x7a\xb6\x2a\x0b\xe4\xba\x07\xec\xc7\xeb\x0a\xb2\x07\x04\xd5\xff\x10\x6d\x7e\x98\x49\x33\x1b\x0d\x1c\xcd\x5e\x94\xa4\xb9\x99\x08\x25\x16\xf7\x85\xd8\x94\x8f\xdd\xd2\x5c\x98\x2c\x89\xf2\x21\xdb\x54\x09\x6b\x54\x69\x8b\xe8\x5b\x0c\xd3\x55\x5b\xf0\x9f\x02\x7b\xca\xd6\xe0\x7c\x12\x28\xc5\xf3\xb4\x6b\x7b\x11\x59\x43\xd1\xdb\x73\x30\x58\x5f\xf2\x71\x45\xa9\xae\xed\x9b\x38\xd6\x90\xa6\xa3\x08\xc2\x44\x02\xd9\x49\xae\x90\xb0\x55\x1c\xf3\x40\x52\x2f\xc4\x9d\x34\xe1\x9f\xc6\x99\x25\x0a\x32\x95\xeb\x29\xe5\xdd\x3e\xa2\x60\x8d\xd0\xc8\x6e\xf9\x25\xec\xa2\xae\x0e\x5d\x0c\x3c\x93\x24\xb6\x83\x28\x8f\x89\x5a\xf9\x00\x56\x7f\xf4\x06\x76\x69\xad\x08\x04\xc3\x88\xed\x6f\xa2\x51\x22\x96\x5c\xbe\x1d\xc1\x71\xad\x54\x5d\xe8\xf7\xf8\xbb\x36\xea\xf4\x59\x61\x2b\xb8\xa5\x49\x64\x76\xfd\x08\x3e\x51\xbb\xf1\xf9\x79\x82\x12\x52\x0a\xed\x6d\x57\x01\x74\xe0\x63\xa5\x73\x5f\xd8\xd8\x8e\x87\x69\x62\xf7\x94\x7f\x8b\xad\xf1\xab\x4a\x60\xe9\x7c\x85\x2c\x19\x28\x45\xa7\x4b\x1a\xe7\xc6\xa1\x34\xf2\xc8\xfb\x81\xc7\xc9\x8e\x2d\x90\x1a\x4a\xda\x67\xb7\x2a\x16\xed\xde\xf0\x75\xe7\xd0\x14\x26\x2f\xb2\x74\x3c\xa4\xd2\xfa\xf2\xf6\xab\xb4\x8e\x6d\xbf\x3a\x7d\x2a\x92\x2a\xdd\x5a\xbe\x96\x66\xc5\x10\x4c\x75\x8f\xf1\x02\x69\x4a\x94\x6e\x1a\xb4\xc2\x47\xa6\x1f\xc1\xdc\x4c\x3a\xff\xf4\xe8\xf9\xa4\x61\xdf\x7e\xd1\x0f\xba\x9e\x2a\x9c\x6c\x21\xe6\xe4\x93\x40\xb1\xf1\xc5\x28\x63\x49\x77\x5d\x0f\x3a\xac\xcb\x27\xb4\xe7\xdb\xcf\x52\x42\x04\x99\x97\x27\x08\xa0\x45\x90\xe4\x7f\xf0\x99\x0d\xc5\x29\xbb\x47\x69\x04\xab\x72\x07\x4a\x42\xe9\xd1\x0d\xca\x22\xd1\xa4\xd9\xbd\x41\xf9\x14\xa2\xfe\xeb\xe8\x42\xd4\x1d\xf7\xdf\x05\x0d\x01\x29\xe5\x4d\x4a\x6e\x10\x7a\x9c\x9e\x2a\xdf\x6e\xc8\x21\x23\x5a\x3f\x81\x56\xb8\x88\x4f\xd3\xeb\x03\x80\xf5\x11\x08\xd9\x21\x7c\x7b\xb8\x43\xc0\x77\xc4\x65\x77\xb8\x0a\x85\xf0\xfc\x13\x9c\xd0\xf1\xa5\x11\x26\x05\xb1\xfa\xf9\xa0\xf5\x6b\x07\xc5\x16\x16\x94\x41\xec\xfb\x9f\x56\x95\xe1\xf3\x78\xd2\xec\xd4\x31\x55\x20\xb2\x5d\x9d\x96\x4b\xd4\x1e\x23\xc0\x26\x1e\xd2\x9e\x8e\x52\x7f\x78\x88\xd4\x10\xf0\x7e\x1f\xec\x3c\xa5\x34\x2f\xc5\x21\x29\xcb\x49\x3d\x5d\x7c\x3c\xcb\xe7\x20\x36\x9e\x5e\xf5\x65\x94\x26\x51\x41\x35\x99\x32\xf1\xc3\xcb\x64\x1b\x08\x3e\x71\x2b\x6a\x5e\x4c\x46\xdd\x98\x34\x0c\x9c\xdb\xc0\xad\xa9\xb2\xbe\xbc\x3c\xf5\x02\x1b\x33\x9d\x06\x8c\x1b\x33\x75\xe7\xca\x85\xea\x8c\x62\x42\x40\x03\x19\x31\xc2\xbd\x40\xd5\xd2\xce\x55\x15\x46\x54\xf0\x1c\x15\x5c\x9f\x60\x68\x93\x4a\x0d\xeb\xdd\xa9\x43\xcf\xb9\x9a\x5b\xf9\x43\x22\x27\xa5\x19\x05\x9e\xe5\xfa\x8f\x7e\x51\x95\xad\xdf\x0e\x54\xa6\xfa\x76\xa5\x5e\xf6\x4a\x34\x9e\xab\x82\x10\xca\xeb\x96\x4d\xb1\xe5\xf8\x8e\x5b\xb4\xd8\x60\x34\xc1\xed\x8a\xff\x5d\xf5\x5d\xe3\x34\x34\xce\x31\x85\x71\x95\xf4\x31\xc1\x58\x3a\x67\xa4\x7e\x9f\x5d\x4a\x51\x1b\xc6\xe2\x74\x45\xd1\x93\x7f\x30\xf5\xbb\xe1\x39\x2f\xf5\x3e\x26\xeb\xd4\x4a\xf7\xb4\xa5\xf4\x0c\x1f\xd7\xad\x62\x9b\x0c\x8a\x21\x45\xbe\x28\x10\xb4\x3a\x9a\xea\x48\xbf\xcb\xff\xa1\x5a\xf5\x75\xd3\xea\x97\x5e\x6a\x17\xe9\x9a\xc9\x7a\xad\xf2\xa6\xf1\xa0\x6f\xea\x92\xf2\x4d\xa5\x4d\x97\x17\xa6\x20\x01\x2b\xf6\xee\xc3\x8c\xbd\x16\x78\xc6\x01\x63\x96\x00\xa1\x7c\xa3\x16\xf4\x2d\xef\x6b\x0f\xa3\xc1\x90\x2c\x4a\xf1\x37\x80\x23\x3b\x24\xab\x5b\xe2\x3e\xd9\x51\xd1\xd5\x79\x55\xf9\xb2\xbd\x28\xe9\x4e\xb2\xc1\x10\xd1\x05\xfa\x10\xbb\x36\x94\x3c\xfe\xae\x4e\x03\xea\xaa\x97\x91\xdb\xbf\x93\x33\xbe\x13\xf8\xce\xd3\x1d\x5d\xa6\xc8\xa2\x90\x81\x9b\xae\xb2\xc7\x3d\x6c\xa9\xd6\x29\x2f\xb0\xb1\x0d\x8b\xcc\xb4\x94\x9e\xc3\x09\x2e\x94\xf0\x59\xad\x84\xff\xfc\xbe\xf6\x5a\x99\xc2\x65\x34\xc8\xa5\xed\xae\x9e\xe6\x66\xed\xa1\x2d\x2e\xb6\x87\xa9\xf4\x9d\xb0\x96\xb0\x21\x1a\xde\xd0\x17\xa7\x0a\x30\x7d\xaa\x32\xfc\x73\x6b\x1f\xa5\x35\xd7\xd9\x32\x89\x0b\xe5\x3f\xe1\xf2\x0e\x6a\xc2\x5b\xb4\x4a\xa3\x58\x74\x87\x86\x3f\x2a\x68\x57\x09\xe5\x25\xd2\xf4\x7e\x6f\xe6\x5d\x17\x31\xca\x8f\xf1\xfb\xce\x45\x4c\x49\x46\x2b\xa6\xd9\x2d\xe0\x29\xc4\x10\x52\x15\x27\x8e\x63\x79\x42\x99\xff\x55\xe5\x08\xd2\x8f\x58\x22\xcc\x27\xea\xe7\xd4\x3c\x3d\xa7\x14\xcd\xa2\xd0\x09\x72\x61\xe2\xce\x6c\x78\x40\xd5\x4f\x50\x52\x88\x7f\x9f\xdb\x50\x18\xdf\xfa\x22\xb4\xb8\xb8\x04\x95\xf1\x9e\xce\xd7\x86\x81\xca\xd7\x86\x0d\x0a\x23\x2f\xb6\xcd\xa4\x18\xa6\x94\xe7\x7d\x8c\x4a\x8a\x26\xb6\x8e\xb9\xd1\x8c\xbc\x1f\x8b\x08\xd0\xaa\x50\x2c\x94\x04\xe3\x63\x1a\x1b\xbd\x49\x58\x60\x02\x32\xe5\x71\xaa\x98\xad\x67\xa7\xbe\xec\x70\x45\xc3\xa7\x27\x59\x3a\xb6\x0f\xd3\xdd\xcb\x5c\x2d\x7f\x97\x37\xda\x40\x11\xa2\xb9\x97\xee\x8c\x35\xdd\xde\x7c\x5c\x8b\xf6\x03\x37\x80\x67\x72\x13\xc5\x55\xb7\x1e\x38\xe5\xd3\x53\x34\x80\x50\x57\xb9\x34\xad\x88\x40\xee\x9c\xa4\xbf\xd4\xee\x4e\xd6\x19\x6a\xb1\x7d\x79\x4a\x36\x30\x55\x63\x14\x6b\x21\x70\x52\x41\xd9\x09\x47\xa6\xbc\x18\x0c\xda\xad\x40\xeb\x55\x27\xb6\x37\xe3\x7d\x0c\xe0\x82\xe6\xc4\x08\x1d\x67\xff\xe8\xf4\xd3\x0a\x60\x11\xa6\x49\x68\xa3\x55\xd3\x8d\x19\x47\xcb\x42\x27\x0a\xa9\x54\x2f\x3d\x96\xf1\x5d\xd4\x73\xda\x08\xb2\x7f\xf8\xf0\xf0\x94\x2e\x95\x9f\x75\x3b\x76\x68\x46\xdd\x2c\x22\x00\xf3\xc2\x82\xfb\x76\xad\xaf\x52\x53\x77\x7f\x7e\x1f\xb9\x3a\x8d\xc7\x69\x94\x14\x82\x4e\x11\x58\xa2\x47\x23\x6f\xd6\xae\x71\x61\xa1\xdd\x37\x59\x31\x2c\x97\x9f\xe5\x7d\x8d\xfe\x85\x7e\x98\x3e\xf7\xdc\xfe\x96\x6f\xcb\x60\x94\xf2\x31\x4a\x88\x55\xb4\xdb\xd3\xad\xd6\xd3\x4f\xf3\xcc\xbf\x00\x2d\x7d\x3e\xa9\x2c\x49\x66\xdd\xd0\x4b\xc4\x1e\x8c\xac\x04\xd8\xf4\xaf\x61\x99\xc5\x80\x7c\x5b\xcd\x97\xc5\xe5\xf9\xff\x90\xe3\x7a\x1d\xd0\xec\x8d\x05\x7b\x1a\x6a\x32\xd7\x51\x79\xfd\xdc\x46\x5d\x97\xf6\x60\x7b\x3d\xb2\x71\xaf\xa5\x22\x2b\xcc\x61\x89\x9f\xfd\xd2\x6f\xe2\x38\x32\xc9\x2b\xb3\xbe\x3c\xc3\xaa\x52\x22\xcf\xd1\x72\x32\x94\x2c\x29\x20\x52\x1d\x3b\x5f\xe6\x81\xc5\x76\x1e\x0e\xa3\x57\xd2\xf1\x30\xb3\x49\x64\x50\x43\x11\x67\x34\x5f\x68\x3e\xaf\x84\x4e\x47\x26\x57\x40\xb1\x4d\x9d\xc1\x6d\x36\x14\x84\x4d\x37\x9b\x8c\x11\x56\xa1\xb9\xf3\x26\x3d\x76\x3e\xae\x08\xe5\x1f\x2e\x58\x2a\xcb\x39\x73\xb8\xe2\x0f\x99\xe6\xff\xe2\x8e\x86\x2e\x45\x44\x7b\xe8\xce\x01\x89\xb8\x8e\xbb\x15\xcd\x1e\x65\xea\x83\xf4\x08\xff\x71\x9d\xea\x25\x82\x4d\x2c\x2f\x0c\x0d\xf4\x93\x81\x27\xdb\xc5\x26\xe9\x3d\x40\x0b\x0e\xe6\x2e\x5b\x67\xf2\x89\x42\x1e\xb4\x3a\x7e\x82\x5f\x50\xc8\x42\x5d\xf5\x86\x36\x86\x7c\xb6\x8e\x67\x59\xc4\xb2\xcf\x35\x0b\x21\xa9\x7b\xfd\x82\x4b\x4d\xf8\xf1\xe1\xba\x4d\x4c\x85\x36\x75\x5e\xd1\xa6\xce\xbb\x32\x63\xcf\x8e\x0b\x8e\x57\xa4\xeb\xd6\x72\x72\x48\x9e\x2e\x36\xb6\x36\x03\x30\x1c\xaf\x12\xc8\x0f\x84\xea\xb3\xe0\x21\xe3\x62\xbe\x4a\x37\x2f\x22\xaf\x6a\x8d\x2c\xd6\x63\x60\xe3\x9f\x75\xf2\x8e\xbe\xef\x7f\x57\xb9\x09\x70\xc8\x8c\x17\x70\xb9\x49\x69\xab\x9f\x45\xab\x69\x9c\x4e\x30\xd0\xb8\xa3\xa1\x94\x41\x37\x55\xd1\x2c\xcd\x7a\x36\x7b\x50\x39\xe5\xff\xb1\x72\x12\xbc\x86\x74\x10\xef\xf7\x4d\xc0\x32\xf8\x44\x99\x8d\xf0\x18\x46\x89\xf9\x3e\xdd\x9f\xb4\x4d\x69\x08\x21\x79\x39\x41\x9b\x11\x1f\xab\x3a\x65\xd7\x46\xc9\xe0\x01\xff\xb6\xd1\x4f\x16\xe3\xf6\xf2\x33\x58\x55\xbe\x85\x0d\xcc\xf9\xc5\x96\x6f\xc4\xfb\xc5\xca\xcf\x1f\x0d\x3c\x4e\xd8\x47\xe7\x66\x90\xd8\x38\x96\x9e\x91\x3c\x04\x95\x11\xd7\x7b\xdd\xfb\x0f\x51\xfe\x6e\x0f\xc3\xd4\x01\x88\xae\x7b\x3b\xef\xfa\xa0\x70\xae\xd5\xda\x3b\xff\xcb\x4b\x2d\x6d\xc8\x70\x49\xbb\x95\x5d\x72\x99\x46\x3f\xcd\x6c\x34\x20\x5c\xb4\x17\x1e\xe3\x8d\x11\x2d\xb2\x7b\xa8\xc2\xca\x42\xe1\x77\xc6\xb1\x29\x86\x39\x05\xfd\xc2\x0c\xf2\xfe\xaa\xe7\x95\x1c\x5a\xdf\x94\xa1\xd5\x9c\x92\xff\x03\x74\x9a\x8f\xb5\x08\x1d\xe7\xf7\x8e\xda\xed\x7a\x82\xd7\x55\xcb\x69\x3c\x5c\xcf\xa3\x34\x4e\x07\x2c\x71\xc9\x45\x28\x9a\x6a\x52\x90\xfa\xa4\x8a\xf6\x27\x26\xeb\xed\x50\xe5\xd7\x16\x54\x1e\x32\xf6\x5a\x6d\xe1\xa3\xdc\x86\x14\x88\x7d\xab\xea\x8c\xd2\x97\x38\xe3\x6a\x80\x68\xa7\x93\xd2\x37\xe2\x89\x3f\xa7\xa7\x21\x6d\x27\xdf\x8a\x98\x45\x23\x1c\xb5\x8d\x8f\x94\x80\xf8\xcc\x86\xea\xb0\xdf\xc7\x1b\xa8\xa8\xa1\x22\xb4\xda\xdd\xf1\x9d\x81\xae\x8d\x23\xbb\x6a\xab\x92\xd5\x73\x9d\x6a\x2d\xdf\x63\x17\x67\x36\x9e\x54\x44\xf7\x1e\x13\x67\x66\xe9\xc5\x20\xf6\xbe\x89\x62\x05\x3b\x43\xd2\xca\xed\x5c\x22\xcb\x17\xc3\x7f\x15\x78\x06\x23\x79\xc5\x61\xc5\x78\xd1\xb9\x36\x96\x4f\x41\x14\x8f\x5b\x4e\x5b\x13\x6e\x46\x0c\x9e\xad\x28\xc1\x46\x61\x3a\xe7\x75\xd1\xd9\x69\x01\xc9\xd2\x2d\x45\x3d\xfb\x5a\xe0\x8b\xcb\x4c\x85\x43\x03\xbf\x0e\xa1\xa6\x8e\x21\x39\xfc\x29\x11\xb0\xeb\x4a\x16\xfe\x7a\x6d\xd3\x7f\x7e\xdf\xb3\xa4\x0b\x92\x45\x83\x61\x31\xe3\xbb\x4a\xb7\x71\xeb\x1a\x6e\x28\xfd\xbf\x86\x00\x8e\x7a\xc7\x02\x66\xc5\x20\xe1\x77\xc0\x27\x0d\xc1\xc6\xc1\x72\xfb\xb6\xbd\x49\x2c\x90\x19\xd9\x30\xe8\x65\xc8\x4e\x52\xdf\x71\xf6\xb7\xd7\x8c\xef\x60\xe8\x75\x8b\x8f\xeb\xca\x00\xfb\xda\x83\xcc\x44\xc9\x8c\xef\xb2\xb1\xe7\x35\x30\x73\xe7\x54\xbe\x71\xbb\x16\x34\x2a\x97\x83\x32\x8f\x47\x32\x8c\xfa\x27\xbf\x0e\x3e\x51\xe3\x83\x0c\x84\x6c\x3e\xa7\xfb\xe4\x2c\xdf\x8e\xa7\x88\x38\x07\x88\x83\xeb\x2a\x37\xfb\x40\xf7\x57\xce\x37\x71\xce\x0e\xb6\x73\x93\x44\xc5\x0e\xf6\x8a\xf2\x26\x3a\x53\x09\x1b\x7b\x4f\x63\x23\x42\x46\xb7\x15\x28\x0f\xff\x2d\x45\xc9\x9d\x24\xfd\x34\xee\x31\x62\x00\xf1\xcd\x49\x05\x6a\x39\xa9\x36\xcb\xb5\x28\xe9\xa5\x6b\xb4\x30\x63\x75\x04\xfa\x0d\x7b\x25\x2b\x82\xcb\x3a\xe1\x21\x9a\xf9\xfa\x68\x9c\xe6\xd1\x64\x84\xcb\x41\x69\xec\xba\x52\x64\xba\xde\xc0\xcd\x60\x99\x58\x0a\xc0\x10\xb5\x7e\xa8\xc0\xc5\x1f\xd6\xf2\x3c\x32\x5d\x0d\xd7\xc3\x58\x46\x07\xd2\xd5\x33\xca\x9f\xfd\x4c\xad\x5a\x3c\x3f\xdf\x0e\xc9\xe6\xb4\xb0\x59\x8a\xf6\x29\x0a\x4c\x57\x15\xe1\xe4\xaa\x03\x08\xe6\x86\x29\x93\x8e\xef\xbd\xec\xea\x11\xb5\x78\xa0\xcc\x70\xd3\xac\x47\xaa\x00\x2d\x5f\x43\xd8\xac\x68\xcf\xfa\xc8\x2d\x4f\xb3\x62\x8f\x97\x21\xff\xb1\x72\xea\x3d\xa6\x06\xc9\x83\x00\x7f\x0a\xfc\xa2\xe5\x64\xa1\xbf\x37\x55\x6a\x86\x9b\x5a\xb9\x3d\x8e\x46\x5d\xee\x32\xf2\x98\xc7\xfc\x96\x09\xe0\xf8\x05\xd1\x61\xaa\x81\x2a\x00\x46\x4b\xb9\x68\xd2\xe8\xc1\xfb\xba\xaa\xda\x10\xe3\x49\x36\x86\x99\xd2\xce\xe6\xf7\x7e\xd7\xfc\x7e\x54\x55\xc3\x26\xe1\x4a\xa5\xbe\xa9\x69\x9c\x6a\x16\xf5\xd2\x49\x37\x66\xe4\x63\x05\xc7\xcb\x27\x0d\xc0\x97\xa5\xf6\xd8\xac\x73\xc9\x07\xeb\xef\x36\x95\x5f\xd8\xcd\x06\x97\x84\x8a\xc9\x85\xa9\xc6\x49\xf5\x9e\xc1\xb6\xca\xbc\x19\x7a\xf5\xc2\xa1\x69\x40\x2c\x72\x7b\x81\x7f\x49\xb0\xa2\x8a\xec\xf2\x75\x8d\xae\xba\x54\x1b\x18\xb2\xa8\xf4\x4d\x36\x9a\xf3\x69\xe4\x93\x54\xc6\x50\x12\x75\xc2\x23\xbd\x4b\xbb\x0b\x62\x07\x06\x4f\xe3\x19\x1c\x53\x34\x12\x33\x1a\xa5\x49\x34\x19\xd1\x7c\x41\x21\xed\x82\x52\xd7\xbf\x50\xb1\x45\x33\xaf\x14\x7b\x5a\xff\x51\x7c\xc5\x0a\xf5\x51\xad\x7d\x51\x6f\x38\x9e\x64\x2d\x1d\x0b\xfa\xf2\xfc\xb9\x1a\x40\x5d\x1e\x45\xf1\x4c\xf1\x8c\x92\x19\xe5\x76\x9e\x6c\xc4\xfe\x2e\x47\x26\xe9\x19\xe9\x67\xe2\xb1\x41\x30\x80\x8f\x3b\x4d\xfe\x0b\x69\x36\x8a\x88\x00\xd3\xd2\xde\xbb\xe5\x1b\x12\x9c\x42\x8d\x87\x36\x4f\x8a\xb6\x9a\x60\xd2\x54\x29\xf0\xa1\xe7\x2f\x1f\xfa\x95\x07\xb1\xde\x23\xae\xba\xaa\x56\x9d\xad\x40\x81\xf5\xb8\x9e\x81\x68\xfc\x81\x8d\x0a\x11\x60\x51\xcc\xb8\x1f\xed\x94\x81\x9d\x0c\xdb\xf2\x59\x62\x47\x6c\x75\x2a\xe2\x38\x4f\x2a\x39\x98\x24\xb1\x21\x65\x95\x7e\xec\xbe\xa3\x43\xf5\x59\xad\xa9\x3f\xbb\xe1\x8b\xcf\xbb\x48\x6b\x49\x00\x04\x4a\x36\xd2\xaf\x0b\x99\x5d\x8d\xec\xda\x9e\xd6\x4b\x2f\xa1\xc4\xc4\x25\x4c\xe8\x74\x62\x21\xda\x85\x2b\x73\xd2\x62\x9e\xa0\x7e\x41\x0b\x68\xfe\xc8\x23\xc4\xd8\x55\x7c\xc4\x11\x3b\x32\x2c\xa6\x12\xf3\x49\xe0\x31\xe3\x2b\xa6\x78\x05\x73\x14\xab\xa0\x30\xe3\xf8\x4c\xb3\x16\x46\xdd\x08\xce\xee\x2a\xf6\xa7\xb7\x21\x92\xe6\x1a\xd4\xed\xda\xd4\x43\x13\xc7\x36\x19\x08\x4d\x82\x05\x19\xa7\x1e\x53\xf5\x4d\x2c\x1f\x2c\x08\xd9\x64\xa4\x31\x88\xe2\xa2\x42\x59\xb8\xa8\x1e\xd6\x45\xd5\x13\xe9\xa5\x49\x3a\x18\x4e\x2c\x19\x75\xa1\x38\x74\x1b\x09\x9b\xfb\x59\xa7\x73\x58\x73\x4b\x5f\x58\x68\x2f\x2c\x1c\xdc\xe3\x19\x3d\xb7\x51\x08\x77\x61\xf7\xc2\x02\xf7\xd1\xfe\x6e\x5a\x19\x2d\xf4\x4e\x04\xb9\x42\x0f\x07\x2d\x98\xf7\xd5\x1e\x64\x32\x6b\x90\x92\x22\x3a\xc1\xdc\xc2\x2a\x74\x62\xea\x05\xbe\xff\x12\x5f\x80\xdf\x39\x13\xf8\x5e\xf5\x45\x80\x4c\xb1\x46\x5f\x53\x39\xcf\x39\xed\x91\x04\x61\x1c\xfe\x2a\xbf\xb9\x0e\xd3\xe2\xc1\xf2\x3f\xd0\xeb\xdc\xc0\x27\xd8\xab\x5e\xd9\x74\xc1\x5b\x17\x03\x0a\x23\x19\xab\xe1\xa3\x1d\xa5\x42\xc9\xe6\xa5\x88\xeb\x7e\x10\x28\xdf\xb7\x2b\x78\x2c\xb8\xf9\x8b\x4a\x26\x68\x92\x8c\x4d\xd4\xa3\xd8\x06\x3f\xc4\x0e\x76\xd8\xf2\xde\x50\xa9\xc1\xfb\x2a\x35\x1b\xd9\xd0\x24\xd1\x6f\x4e\x2c\x1b\x8f\xb0\x70\x50\xe0\xfd\x97\x8f\x51\xff\x14\x31\x7c\xe3\x7e\x92\x8f\xa1\x75\xd9\xf2\x3f\x7d\x04\xb1\x1a\x9f\x68\xab\xff\x34\xa5\x00\xc7\x83\x44\x2e\xa9\xb6\x58\xa3\x4e\xa8\x35\x03\x9b\xcd\xa8\x64\x03\x95\x6a\xed\x60\x86\x4f\x6f\x37\xe9\x4e\x1c\x6c\x67\x66\x6c\x73\x6b\x7b\x5c\xb3\x51\xc6\x0e\xbe\x7f\xa9\x37\x17\xdb\x2f\x1e\x6e\x2d\xef\xdb\x86\xc5\x86\x0b\x96\xcb\xfb\xe1\x5a\x37\x98\x29\xc8\x76\x4e\xa3\xb8\xe1\x54\x68\xcb\x4b\xc3\x28\xfd\x3a\xea\x60\x12\x60\x2b\xa5\xfa\xcb\x4a\x5c\x7c\x06\x2f\x5a\x5e\x27\x05\x36\xc2\x91\x6d\x50\x09\x0f\x6d\xda\x52\x61\xc4\x2d\x55\x2b\xbc\x15\x78\xf4\xf7\x84\xbd\x0f\x75\x35\x04\x21\xdb\xf1\xaa\x8a\x77\xf9\x58\xc5\xbf\xa6\xb5\xbc\xc4\x99\xf0\x45\xed\x42\x86\x39\x89\x24\x17\x00\x0a\x5c\xec\x9b\x84\x1f\xc3\x5a\xc7\x05\x40\x2c\x67\xc7\x82\xd6\xa1\xe7\x38\x0c\xe4\x79\xcb\x04\x8c\x5a\x46\x74\x60\xb1\x6d\x47\xe3\x94\x84\xb0\xca\x27\xc7\x9e\x2c\x40\x5a\x8b\x41\x4b\x93\x22\xa0\x19\xd9\x2c\x0a\x8d\x40\x22\x71\x0b\xdc\xc3\xe4\x13\x57\x6c\x1f\x67\x26\x2c\xa2\xd0\xb9\x61\xe3\x92\xcf\x68\xaa\x8e\xa6\xc7\xc4\x51\xef\xa1\x96\x28\x8b\xfe\xe3\xc7\x49\x77\x09\xc0\x80\x77\x91\x78\xa1\xca\x7f\xb7\x22\x9d\xeb\x31\x95\x6b\x3f\xd9\x51\x00\x70\x8e\xda\xf0\x60\x3e\xd1\x51\x2a\xcd\x5c\xb1\x91\x6d\xd5\xaf\x28\x6f\x39\x9e\x65\x68\xb2\xb8\x48\x13\xb9\x6e\xb4\xed\xee\x6a\x8e\xe8\x5d\x75\xdd\x69\x94\xcf\x28\x56\x11\x2e\xa9\xa2\x1f\x8f\xf7\x79\x5b\x75\xdb\x12\x5b\xac\xa5\xd9\xca\x83\xe5\xf8\x70\xe9\xf2\x17\xf6\x7b\x39\x20\x57\x37\xb9\x33\x55\x75\xf4\x93\x58\xee\x15\x1a\x4a\x00\x42\x77\x68\x69\x04\x1a\x97\xd9\x44\x4e\x68\xd2\x4b\xfe\x1f\xfd\x58\x4b\x02\xc7\x83\x9f\x51\x82\xa2\x20\x73\x60\x23\xe2\x40\x00\xf1\x44\xdd\xd2\xe3\xa5\x97\xda\x85\x1d\x8d\x5d\x83\x04\x81\x07\xeb\x87\xf3\x89\x6a\x2c\x77\x4d\x51\x58\xd8\x32\x38\xe2\x02\xf3\x5e\xf8\xa4\x89\xf2\x33\x49\x12\x9b\xad\x22\x8a\xdb\xde\x02\x19\xdb\xab\xf2\xf7\xd3\x6c\x84\xeb\xdf\xef\x5d\x1b\x3c\xd1\xf3\x9e\x12\x21\xb8\xda\x98\x74\x45\xa3\x31\x09\xea\xb7\x54\x65\xe7\x96\x5a\xbe\x6f\xa9\x17\x68\xe2\xc2\x12\x46\x44\xf4\xbd\xfe\xdb\x4d\xa5\xe2\xbc\xe9\xaa\xd1\x6b\x59\x5a\xd8\x19\xcd\xd4\xa0\xeb\xc3\xe6\xc6\x74\x32\xe1\x73\x54\xb8\x47\x36\x7f\x92\xd6\x24\xd6\xa7\x0c\xd4\x34\xbd\x5f\x71\x35\x55\xd1\x14\xec\x49\x50\xd1\x80\x16\x36\xb6\xe0\xc7\x37\x68\xe1\x04\xd7\xec\x4d\x2c\x8f\x40\xc7\xff\xdf\x74\xd1\xd8\xe0\x5a\xc8\x10\xb1\x74\xbd\x4a\x35\x42\xa5\xa5\x74\x90\x7f\xef\x1e\x2d\x57\x48\x01\xaf\x23\x1a\xc6\x57\x71\x41\x0c\xb8\xa0\x53\xd5\xcd\xb2\x35\x3f\xef\x36\x64\x5a\xb6\xc5\x26\xcb\xc7\xf8\x97\x2a\x9b\x55\x3c\x19\x25\xb3\x9e\x60\xc3\x15\x0e\xa4\x85\x57\xb8\xeb\xef\x34\x85\xca\x8b\xc3\x80\x7d\xcb\x93\x76\x87\x86\x40\x21\x9a\xef\x07\x1d\x1f\x99\xa5\x7e\x02\xe7\x2b\x86\x67\x3a\x1e\xd7\x7b\x3a\x89\x7a\xaf\x16\xb2\x7d\xae\x9d\xa7\x93\x62\x38\x53\xad\x4d\xfb\x7a\xdb\x77\xa6\x4a\x94\xfe\x5a\x6d\x6f\x5c\x58\x70\xf8\x70\x77\x7d\x78\x82\xd8\x9e\xf8\x58\x61\x11\xc9\x2c\xca\x26\x45\x64\x18\x39\xe9\x3a\x51\xe5\x03\x97\x4e\xd4\x27\x95\xe6\x44\x1c\xd9\xfe\x9c\x12\x2b\xdd\xa2\xcb\x93\x32\xa1\xaa\xe3\xb2\x0e\x29\x5a\x3b\x87\x95\xf3\xc5\x85\x5a\x19\xc9\x81\x0c\x33\x2a\x66\x3c\xbf\x4f\x6c\x17\xe9\xa9\x8a\x05\xa3\x04\x65\x03\x93\x24\x15\xb3\xbc\xb7\xb4\x59\xde\x5b\xea\x6a\xe3\x74\xd5\xc6\xeb\x73\xde\xfa\xec\x88\xd2\x83\xdc\xae\xe8\x53\xd2\xf8\x74\x1e\x2e\xe5\xec\x00\x42\xe3\x44\x65\x17\xe9\xa2\x82\x8d\x0d\x02\x72\x27\x22\x8b\x51\x7e\xb1\x00\x0b\x3e\xa9\xea\x58\x51\x0a\x25\xef\x17\xdd\xb6\x84\x4b\xc7\x6a\x7c\x49\xcb\xf3\xbe\xa9\x7a\x5e\xef\xe2\x51\xf2\x5f\x35\x8a\x3d\x99\x62\x18\xdb\x22\x0a\x65\x2f\x61\xd3\x4c\x3c\x0c\x71\xd0\x54\x4a\x3b\x85\x5d\xb5\xe4\xc0\x88\x3f\x97\x1a\x11\xfd\xb9\x14\x8f\x1e\xf1\xfb\x6b\xc4\x1e\x0b\x58\x76\xc0\x88\xe5\xe3\x5a\x69\xec\xd0\x73\x6d\x3b\xb2\x19\xbf\x3c\x4c\x4d\xc0\x89\xf8\xb8\x01\x0c\xb3\xd4\x1e\x58\xd0\xce\x31\xe3\x4f\x61\x1d\xc2\xc9\x37\x70\xfb\xb2\x7f\xf9\xac\xab\x97\x99\x35\x04\x7d\x32\x38\x7d\xe1\x4f\x33\x55\x47\x66\x90\x44\xfd\x28\xb4\x49\x81\x9a\x88\x13\xc7\x2d\x3f\x2b\xa4\xc6\x96\x53\x4a\xf9\x9a\x7a\xcf\x83\x41\xbe\x47\x51\x38\x04\x88\x28\xdd\x7f\x0f\xc8\x7b\x78\x43\xd1\xe9\x2e\x29\xbd\x2b\x7e\xad\x68\x56\x3d\x5e\x43\xe7\x2d\xef\x6b\xc7\xd6\xf4\x76\x28\x0c\x5c\x51\x24\x8e\x2b\xaa\x80\x11\xa6\x49\x3f\xca\x98\x5f\x27\x2b\x53\xf9\xa7\xd2\xd9\x6e\xb0\x6d\xee\x45\xe3\x61\x31\xf4\x26\xbc\x00\x63\xa1\xb0\xc5\xc7\xaa\x43\xdb\x9d\xe4\xeb\x2d\x0a\x7d\x80\x3d\xd9\xd5\x01\xd8\x92\xcf\x6a\x14\x16\xd9\xd9\xa1\x60\xd2\xf2\x49\x18\x5b\xf8\x08\xb0\xa3\x9e\x27\x2e\x2d\x2f\x3d\x58\x5e\x83\xf3\x46\x50\x88\xa3\xc0\xd3\x4d\x3f\xa4\x2e\x9e\x80\x76\x3c\x9e\xe2\x1a\x56\x64\xb4\x6a\xfe\x5e\x93\xe8\xcf\x60\xd2\x02\xa9\x00\x17\x07\xe4\x8b\x6f\x3b\x74\x51\x37\x9e\x38\xc0\x16\x46\x03\xab\x97\xf3\x49\xad\x7d\x41\x9e\xf1\x51\xbf\x18\xd2\x3c\xc0\xd7\xc1\x75\x9f\x8f\x9b\xcd\x13\xc3\xa1\x49\xb8\x26\xdb\xe4\x9f\xd4\x00\xd5\x64\x04\x3f\x5d\x19\xa2\x20\x68\xc6\xf0\x71\x2d\x5e\x59\xde\xd7\x8e\xf2\x34\xf6\xb8\x08\x3c\x1d\x68\x6c\xf1\x71\xe0\x4b\x31\x63\x9b\xe5\x51\x5e\x88\x70\x92\x73\xe7\x3d\x20\x86\x58\x17\x3e\x36\x76\x2b\xd6\xc7\x51\x08\xc3\x25\x57\xfa\xe5\xbc\x87\x4f\x9a\x6c\x81\x8b\x49\x56\xc4\x76\xa6\x26\xa6\x8f\xe3\x8f\x94\x14\xd6\xf9\xe9\xc7\xa9\xa9\x94\xef\xaa\xb0\x59\x26\x61\x23\x46\x4c\x8b\xf0\xcd\x48\xc6\xe6\x3a\x4a\x87\xf1\xb5\xa9\x2f\xff\x92\xb3\xa3\x73\x89\x92\x8e\x84\x72\x69\x3b\x53\x7b\x71\xf2\xab\xc3\x61\xfe\xf1\xa2\x5a\x1e\x35\x12\x0e\xad\x19\xdb\x8c\x14\x65\x31\xfe\x6e\x22\xbf\x41\x94\x3c\x4b\x01\x12\x7b\x0a\x00\xa8\x06\xb4\x73\x9d\x58\x30\x3f\x5f\xee\xc1\x24\xf5\x83\x0d\x18\x11\x1b\x04\x19\xf8\x58\x69\x60\xf5\xa2\x51\x04\xa6\xc5\xac\x8f\xc7\xc0\xea\x70\xf3\xa0\x0c\xc1\xf8\x24\xd0\xad\x74\x1d\x03\x16\xbd\x67\x30\x72\x80\xfb\x66\xfb\x61\x3e\x69\x8a\x8f\xf3\x30\x8b\x46\x63\x19\x6f\x58\x33\x59\x31\x9f\x4f\x82\x9f\x54\xde\x2f\x99\x35\x31\x21\x4c\xcb\xd7\x30\xeb\x1d\x08\xb1\xa3\xf3\x31\x02\x04\x84\x11\xdf\x50\xcd\x8d\x6f\x7c\xac\xb1\xd4\x60\x98\xe6\x45\x4b\x6b\x9d\xb7\x9c\x3e\x8a\xf6\x8a\xcb\xac\xc9\xd3\x04\xed\x50\x6c\xd0\x77\x35\x3b\x17\x08\x0a\x44\x51\x30\x56\xe2\x63\x25\xbb\x17\xa6\xa3\x71\x6c\x0f\x43\x25\xda\xd5\x43\x7d\x6d\x14\xd9\xb1\xb0\x8d\x7d\x4f\x75\xaf\x0a\x8e\x2f\xab\x22\x60\x77\x12\xc5\xe5\x8a\xff\xa0\x07\x6f\x1c\x41\x65\xca\xc9\x76\xcd\x8b\x16\xfa\x31\x1d\xe6\x7d\x09\x57\x8e\x32\xec\xdb\x4a\x6a\x01\x7c\x67\xc4\x22\xdb\x34\x04\x64\xbc\xd0\x7d\x03\x94\x58\x97\xaa\x5b\x58\x20\xfd\x0f\xe9\x8e\x0a\xaa\xb3\xe5\xe8\xc7\xb7\x3c\x08\xdd\x84\x19\x6d\xa2\xb4\x32\xe1\x0a\xa0\x2d\xc2\xc7\xaa\x63\x47\xfc\x38\x13\x3f\x82\x9d\xc3\x81\xae\x1c\x91\xe2\x32\xde\x36\x12\x85\x3f\x0a\x3c\x6a\xf6\x8a\xb2\x93\xb8\x3e\x55\x95\xbe\xb7\xeb\x2c\x76\xba\xc0\xdf\x65\x16\xbb\x98\x2c\x79\x23\xa8\x93\x8a\xde\x74\x3d\x50\x95\xb2\xf7\xf0\x0c\xf9\xa4\x41\x2c\x61\x89\x80\x60\xae\x9c\xa0\xcc\xfc\xdc\x49\xf0\xb0\x32\xd5\xfe\x69\x0f\x8d\xbc\x8c\xce\x15\x33\xaf\xd8\x12\x01\x2f\x78\x17\xca\x06\x40\x70\xdc\xc2\xcc\x74\x25\xe8\xf2\xd5\x63\x98\x6c\xd1\x13\x40\x76\x33\xb3\x51\x8e\x6e\x7c\xf3\x3b\x4a\x3f\x88\x73\x6d\x64\x18\x9f\x40\xd2\xc5\x9f\xe6\x80\x12\xb1\xd9\x0d\x22\xfd\xba\x92\x68\xf9\xc8\x45\x0e\x47\xef\x7b\xad\x5f\xf9\x0d\x7e\x15\xdf\xa3\xad\x16\x4f\x7c\x0f\xe8\xf4\x08\x6e\xfe\x00\x2b\x1a\xfe\xe7\x8b\x81\xea\x54\xa1\x11\x29\xde\x25\xaa\x41\x7c\x9a\xb2\x31\x04\xb0\x37\x40\xbe\x62\xc0\x72\xa0\x04\xf7\x18\x02\x85\x84\x13\x5a\xd7\x80\x49\x5c\x70\xe1\xe7\x24\x31\xdd\x18\x9c\x42\x8c\xf5\x6f\x69\x7c\xca\x35\xa5\x84\x74\x53\x29\x3b\xe4\x69\xd7\x66\x0e\x68\xcc\x1d\x81\x4a\x77\x40\xe7\x81\x93\x71\x6c\xf7\x28\x4e\x20\x80\x33\xae\x68\x57\xbe\x38\x71\x01\xf7\x3b\xc2\xed\xa0\xbc\x43\x24\x13\x27\x74\x56\x5a\xd7\x41\x5f\x5c\x3c\xd8\x2e\xb2\x48\x96\x4c\xfc\xd9\x6b\x5a\xe9\xe3\x35\x85\x8d\x7c\xee\xe0\xa1\x96\xaa\x53\x33\x54\x5d\x4c\x6a\x1d\xc7\xcd\xc4\x71\x5a\xa8\x4e\xd3\x77\xa7\xbe\xd3\xf4\xdd\x46\x30\x45\x3e\xc9\x49\x72\xb1\xa7\xe8\xba\xdc\x6a\x12\x5c\x8b\xdf\x39\x5f\x9e\xf4\xa2\x30\x32\xd9\xba\xa6\xea\x5f\xd4\x38\xa4\x8b\xea\x19\x16\x66\x25\x4a\x06\x0f\xd1\xed\x31\x34\x18\x45\x24\x94\x48\x80\x13\x94\xbe\x1f\x06\xa9\x26\x11\xe2\x89\x9e\x0e\x54\xd5\x82\xe3\x66\xa1\x17\xd2\x4b\xe0\x3f\x43\x7c\x27\x9d\xc3\x96\xff\x15\xd5\x56\xee\x43\x77\xbe\x1c\x51\x18\x90\xb7\xa9\xa2\xc0\xc7\xba\x41\x3c\x5c\xcf\xcb\x1b\xe5\x3d\xd7\x59\xf4\x39\x54\xdc\xf1\xda\xb3\x3c\xb0\xd8\x1e\x0f\xa3\x38\xcd\xd3\xf1\x70\x5d\xd3\xfc\x02\x5f\xc8\xd2\xca\x1e\x84\xcd\x18\x91\xea\xd9\xf2\x3e\x91\xc6\x52\xc5\x37\xb6\x8d\x05\xc0\x9b\x25\xd0\xf8\x04\x0b\x85\x6b\xd8\x78\x76\x1e\xad\x13\x02\xb4\x6a\x28\x93\x85\x29\x24\x05\x5b\x3e\xd8\x02\x79\x9a\x8f\x83\x4f\xa9\xae\x65\x2c\x35\xd4\x96\xda\x26\x5b\x1d\xb5\x4d\xb6\x36\x74\x47\xfa\xe9\xfc\x67\xe8\xff\xb0\x3a\xfc\x15\x7d\x2f\x8e\xcf\xd2\xb4\x17\x83\x01\x85\x53\xbb\xc7\x02\xe7\x0e\x1f\xea\x60\x56\xb3\x1d\xb1\x50\x29\xd7\x18\x2c\x64\x33\xa4\x3b\xbe\x7d\x06\x85\x3d\x44\xa6\x27\x68\x8f\xc3\xaa\xf7\x23\x5e\xe8\xf0\xa3\x47\x31\x6e\x70\xf2\x20\x12\x31\x84\xa4\x1f\x90\xac\x06\x57\xbd\xb1\x0a\x21\x11\xfb\xf7\x81\x1f\x19\xf7\xb1\x00\xa3\xe4\x0a\x7a\x84\xd0\xc9\x68\x0d\x74\x44\xf8\xf9\xfd\x22\x59\x87\xd7\x22\xd5\x74\x0d\x46\x51\xf1\xf0\x07\x81\x02\x9c\x50\x23\xe0\xc5\xfb\xc4\x2a\x13\x05\x95\xd6\xe7\x5f\x70\xc2\xcc\x9a\x22\x91\x0c\xc0\x21\xf3\xf8\xab\xf2\x62\xa5\x3d\xb2\xb3\x87\xb2\xb4\xbc\xd4\x5e\xb1\x76\x4c\x1b\x33\x0a\xb0\xec\xfd\xce\x27\x8a\x75\xc6\xce\x44\x45\xbe\x47\xc1\x25\xa0\x49\x82\xad\xf9\x1c\x66\x2d\x9a\x09\x88\xb0\xc5\x0a\xce\x37\x19\x5a\x9d\x4a\x8f\xa2\x81\xdc\x92\x9b\x04\x45\x4b\x67\xe0\xe4\x05\x70\x7e\xa8\x38\x5f\x36\xa1\x96\x1a\x42\x84\xaf\x61\xc6\x63\x45\x05\x30\x46\x00\xd6\x2d\xe5\xb4\xea\x45\xec\xee\x20\x68\x72\x16\xac\x7e\x01\xff\x90\xae\x16\x2d\x64\x10\xf6\xc4\x1d\xcf\x5b\x86\xe7\x26\xea\x3d\xa5\xaa\xde\x67\x31\x0c\x5c\x3d\xe0\xf3\x2f\x30\xd8\xfb\x1a\x76\x2c\xd1\x1d\x53\x0e\x48\xaf\x07\xde\xb2\x1d\x0f\x0b\x83\x5d\x5b\x34\xee\xea\x78\xb5\xbf\x59\xda\xe1\xb0\xac\x70\x0c\xc0\x77\xa2\x6b\xe9\x27\xa7\xde\xd8\xeb\x06\x36\x3b\x14\x32\xd9\x89\x0a\xb9\xf0\x16\xda\x54\x2e\x3b\xf1\x46\x23\xff\x42\x47\x21\x8c\xfc\xc0\x2e\x73\xb9\xd2\x97\xde\xc6\xec\xc2\x25\x5f\xa9\x34\xc9\xe2\x38\x9d\x51\x4d\xd8\xa3\x78\xb6\xae\xf3\x70\x40\xc4\x33\xb6\x2a\x99\x84\x49\x7a\xed\x32\x64\xc1\xb2\x34\xe5\xf8\x47\x66\x2c\xdd\x2e\x4a\x1a\x5f\x9b\x2a\x3f\x37\x5c\x2d\x5a\x30\xdf\xa5\x68\x04\x21\x00\x34\xe5\xd8\xba\x01\xf7\x87\x1a\xd0\x7f\x8f\xcd\x16\xb8\xa2\xf7\x29\x66\xc1\xe3\xbd\x40\x3b\xb2\x30\x70\x68\xb6\x23\x6e\xfe\x21\x75\x3d\x70\xa3\x6f\x29\x8e\xf3\x2e\xd0\x62\x2b\x9e\xc3\x98\xc8\xf7\x02\x9f\x74\x9d\xc4\x30\x43\x7b\xe5\x8f\x69\xfc\x21\x86\x38\x36\xf5\x7c\xd1\x37\xa6\xbb\x3f\xcb\xa8\x4e\x16\xbd\xc7\x48\x7c\x0b\x50\x69\x5c\xe0\xdb\x53\xcd\x63\xfd\xb7\x78\xfe\x68\x11\x9d\x23\x73\x47\x5c\x09\x0a\x6c\xb8\xd9\x7f\x0e\xda\x05\x32\x0d\x5e\xe8\xc4\xd8\x44\x8b\x15\xd0\x1c\x76\x11\xae\x17\x38\x3b\xa6\xf2\x98\x9e\xcd\xa3\x81\x48\x4b\xa8\xb2\x8b\x38\x05\xf8\x26\x47\x2f\x4d\xba\x26\x57\x62\x73\xdc\x62\xe2\x13\xf7\x77\xab\x26\x9e\xd8\xde\x1e\xe5\x64\x88\xd2\x97\x34\x26\xe9\x97\x5c\x2b\x57\xb9\x8f\xd0\x7d\x60\xf9\x9d\xd9\xf0\x22\x32\xdf\xfb\xc9\xce\x13\x0e\xd6\x91\x17\x66\x92\x99\xa4\x60\x2c\x2b\x62\xd4\x8b\xfc\x08\x31\x3d\xb8\x08\xc4\xff\x15\x28\xcf\x90\x7a\x99\xf1\xa5\x97\xda\x5d\xa7\x79\x8d\xed\xf5\xac\x12\x65\x6b\x72\x21\x38\xd8\x5e\x33\xab\xac\x37\x00\x9c\xd1\xdb\xca\x6f\xf1\xed\xe0\x53\x4a\xc8\x60\x34\x36\x59\x41\x8a\xd4\x4a\xd6\x67\x2b\x50\x24\xf7\x2d\xb5\xc8\x17\x69\x22\xae\x2b\x62\xff\xfa\x75\x58\xde\x09\x46\x4b\x4f\xc7\x6e\x9a\x31\x7e\x07\x2f\x60\x5b\xe1\x7c\x58\xac\xc8\x89\x8b\x79\x2b\x4f\x78\x9e\x61\xe4\x61\xbf\xc3\xd8\x3e\xaa\x03\xf8\xb7\x69\x0c\xb3\xea\x73\xa0\x9a\xc7\x57\x9c\x05\xc1\x24\xb1\x87\xc7\x31\x05\x8e\xa8\xbf\x60\x17\x38\xaf\x7a\x56\x37\xf0\x95\xf8\xfe\xf7\xa7\x7e\xc3\xb1\xfd\xbe\x0d\x8b\x68\xd5\x3e\xec\xb9\x7b\x7f\x82\x3f\x76\x68\x1c\x2f\x76\x7b\x67\xaa\xc4\x6e\xef\x60\x61\x60\xb5\xe6\xc0\x53\x16\x58\xa9\xcb\xc9\x38\x7b\x6e\xca\x37\xca\xbb\xdc\xbe\x1c\x28\xb9\x94\x6d\x8c\x41\x6e\x7e\x69\xfb\x86\x32\x3c\x9a\x55\x65\x23\xb6\xc6\x68\x82\x41\xfa\x32\xe5\x55\x85\xf6\xb2\x87\xc7\x36\xc9\x6d\x8e\xa8\x17\x0b\xd8\x47\xf4\x50\x04\xbd\x5e\x7e\x4e\x7c\x8e\xb4\xac\xdf\x54\x79\xac\x5e\x53\x74\x3a\xb6\x0c\xc6\x80\xfc\xf1\xb4\xa2\x4a\x47\xcb\x19\xff\x99\xf2\xbb\x79\x5f\x99\x28\xe6\x85\x1d\xcd\x78\x3e\xf6\x96\x02\xd8\x71\x79\x95\xd5\xcd\x94\xc2\x71\x6c\x26\x3d\x50\x54\x5e\x74\xcd\x9a\x96\x73\xd7\xda\x4d\xa0\x3f\xbc\x29\x76\x1e\x93\x98\x4f\x5a\x60\xb6\x18\xae\xc7\x36\xe1\x59\x22\x9a\x32\x3e\x15\xd1\x96\x19\xb1\x35\x3d\x16\x24\x73\xf2\xfb\x3b\x4d\x0a\xb0\x5d\x1c\x2b\x53\x6c\x9a\x8d\x65\xe6\xf2\xb3\xbe\xe2\x78\x3d\xa8\xec\x74\xe5\x76\x23\x2e\x22\xd8\x6e\xdc\x62\xee\x53\x89\xbb\x18\x10\x78\x43\x5c\x84\x43\xc2\xd3\x82\xb7\x0f\x7e\xff\x1a\x05\x8b\x40\x0d\xfd\x19\x2d\xf3\x2e\xf7\xf7\x9a\x73\xd7\x91\x7c\x20\xb4\x40\xc6\x8a\x19\x7b\x1b\xab\x39\x56\xed\xf7\x54\x99\xf7\x04\x22\x06\xec\xda\x57\xb1\x1d\x20\xa0\x3f\xab\xd9\x93\xff\x0a\x6f\x18\x7d\x86\xdf\xa7\xe5\x9c\xed\xe4\x03\x67\x1d\xf5\x2f\x5e\xa7\xfd\x11\x75\x03\x49\xf6\xf1\x5d\x0f\x6f\xa8\x8e\x27\x9b\xfb\xa0\xb6\xb6\x4d\x03\x0c\x29\xfa\x77\xa6\x1e\x64\x08\x65\x27\x26\x08\x53\xd8\xce\x3b\xb5\xea\x3f\xe7\x93\x6c\x35\x5a\x85\x84\x07\xcb\xae\x4f\x77\x52\xd9\xb1\xc0\xbc\x3a\x55\x1a\x54\x5a\x2e\xf2\x96\x4e\x5f\x4f\x2b\xd4\x5e\x6e\x38\xad\x47\x26\x8f\xe2\x9b\x94\x03\x7d\x55\xe1\x5c\x93\xaa\xc0\xc0\x26\x36\x33\xb1\x26\x5c\xd3\x47\x7c\xef\xca\xe7\x5e\xe9\x78\xaf\x2e\x3a\xea\xc4\xe1\x87\x53\x45\x99\x9c\xfa\x9b\x39\x13\x68\x38\xb2\x5a\x46\x99\xaf\xc6\x85\x08\xdc\x19\x20\x72\xc7\x1d\x58\x8f\xea\xb2\x64\x50\x44\x69\x36\x46\xdd\x5f\xd3\xa3\xe2\x63\x85\xea\xea\xc6\x66\x44\x6c\x56\x4f\x30\x56\x60\x02\x50\xf5\x90\x8c\x5c\x53\x72\xf0\x66\x02\x25\x9c\x3d\xd5\x67\xee\x00\x11\x70\x05\x71\x6a\xed\xe5\xe0\xc7\x10\x87\xb5\x28\x56\xa1\xff\x0b\x31\x95\x2c\xe6\x3b\xdd\x5c\xe6\xe7\xb1\xc0\xf5\xa2\x62\x92\xd9\x5c\x77\xce\xee\x04\x8a\xa7\x0f\x2c\xbe\x80\x79\x3e\x8e\xa1\x20\xc2\x31\xb3\xbe\x63\x06\x08\xb9\x7e\x7b\xe2\x42\xab\x92\x85\x93\x81\x97\x71\x19\xaf\xe7\xaf\xac\x44\x76\x2d\x0a\x5f\xa1\xdc\x42\x41\xf7\x44\xe7\xed\x5c\x43\x3d\xef\x20\xd9\xcc\xe4\xbc\x40\x49\x11\xaa\xfc\x6d\x61\xd0\xeb\xb2\x51\xbf\x58\x33\x19\xfa\x58\xd8\x40\xb8\x8a\xce\x27\x8a\x36\x30\x4a\x8b\x68\x15\xea\x11\x58\x79\x9c\x4d\xb6\xef\x7b\x9d\x56\x28\xd8\x9e\xed\xdb\xa4\x47\xf1\x8c\x2f\xd0\x9e\x55\x71\xe6\x59\xba\x28\x49\x46\x1c\x46\xe9\xdd\xb3\x4a\xf7\x33\xed\xf5\x66\x31\x82\x25\xd6\xd4\x86\x89\x2d\xa7\xfa\xbe\xa9\x69\x46\x37\x9b\x3c\x6b\x4c\x9c\x82\x5e\xef\x85\xd4\xcb\xaf\x42\x97\x19\x90\x7e\xb7\x14\x1e\x58\x74\xe0\xa2\xba\xd2\xf2\xfe\x76\x3e\xce\xca\x85\xbd\xa5\x70\xb5\x3c\x83\x3e\x4e\x77\x7a\xe9\xb9\x83\xed\x38\x1d\xa4\x4a\x11\x8e\x11\x16\x62\xd7\xe2\xfb\xe6\x24\xdf\xd0\x53\x90\xd2\xa3\x0a\x14\xc8\x55\x22\x8c\x1c\xce\x4b\x11\x6f\xde\xa5\x7a\x8f\x74\x83\xfd\xeb\xbe\xdf\x08\x42\x3c\x1c\xe5\xcc\xbf\xc7\x05\xdc\xd0\xf4\x2a\x54\x2b\x98\xc4\xec\x2b\xe2\x13\xd2\x8a\x90\xa0\x08\x69\xc7\x1f\xa9\x6e\x2c\x97\xb3\xf0\x1f\x67\xa7\x4f\x55\x3b\xa0\x8b\x8b\x4b\xe5\xc3\x7b\x9c\x2e\x19\xa3\xeb\xef\xf1\xd0\x78\x5e\xe1\xd3\xb8\xfe\x19\x64\x7e\x08\xe9\xcf\x29\x05\x97\xbf\x09\xfc\xcb\x39\xad\x98\x36\x37\xa9\xf6\xcb\xb9\x0c\xc2\x0d\xdc\xfe\x77\xf1\xc0\x50\xd3\xd8\x8d\xa2\x34\xae\xf0\x56\xe0\xcd\x9d\x5e\x9a\x56\xcc\x35\x68\x06\x60\x64\xbc\xc3\xbb\x8e\xf0\x12\xcb\x07\x8b\xbd\xfc\x1e\xf6\x39\xac\x27\xa7\x9b\x08\x30\x79\x61\x92\x9e\xc9\x7a\x14\xa3\x20\xf8\x07\x32\x00\x2b\xdc\x7d\xad\xa1\x79\x5a\xc5\x35\x43\x93\xa0\xc7\xc5\x96\xfa\x53\xdd\xf8\xf3\xa8\xd4\xad\xa9\xaf\x80\x5c\x9c\xfa\x89\x3a\xb4\xa3\x28\x1f\x0f\x6d\x86\x05\x19\x71\x13\x87\x01\x7c\xd2\xa9\xd3\xf1\xf7\x83\x48\x11\x75\x27\x0e\x40\xb3\x4d\xee\xdc\xdb\x97\x95\x7b\xfd\x38\x4b\x73\xb2\xa3\x4b\x93\x19\xda\xbf\xa5\xfe\xa0\x40\x66\xa7\x69\x4c\xf0\x2b\xae\xf5\x60\xca\x05\xaa\x97\x99\xb5\xa4\xa5\x29\xe5\xf4\x58\xa4\xfa\x51\xff\x48\xbb\x1b\x79\x99\x71\x27\x7d\xa0\x54\xab\x1a\x74\x57\xd3\x6c\xc5\x82\x7f\x21\x7a\xa8\x5a\x1c\xb5\x66\xfd\xbe\xb0\xd0\x8e\x92\x95\x96\x02\xe9\x6f\xea\x95\x5e\xd5\xda\x0d\x05\xf8\x0c\xae\x91\xfa\x5e\x55\xb0\xaa\xbc\x33\x0e\xb2\xe8\x61\x88\x09\x1c\x0d\x71\xd1\x7a\xdb\x09\xe8\xec\x61\x42\x56\x0c\xb9\x30\x03\x3e\xc0\xdc\x40\x25\xf5\x0d\x35\x52\x40\xa5\x13\xd9\xab\x7f\x0d\xe3\x6f\xf1\x5e\x56\x80\xa4\xed\x06\xc1\x8f\xc5\xf6\x38\xb6\x49\x54\x4c\x7a\x55\xe5\x54\xfa\x98\x48\xa7\x0a\xe0\x6e\x1c\x9b\xa4\x98\xd5\x9c\x8a\x63\xca\xe0\xaf\xa5\x24\x3f\x58\x9d\x04\x20\x70\x4f\xf3\x2d\x07\x57\x94\x4c\x9c\xc4\x09\x20\x46\x8f\x76\x14\xf7\x4e\x69\xf0\x7c\x06\x5f\x22\x91\x66\x03\x29\x39\x2f\x4c\xe6\x30\x00\x82\xec\x55\x02\x20\x9b\x81\x77\x94\x4b\xc2\x74\x14\x15\x26\x81\x7f\x27\xdb\xd3\x07\x9e\x8a\xf7\xda\xd4\xa3\xc2\xc6\x65\xde\xb7\x66\xbb\x5d\xd2\x97\x10\x4a\xfe\x1d\x45\xbd\xbf\xd3\x54\x1f\x37\x85\xc7\x69\xaa\x8d\x4c\x99\xb2\x9f\x55\x26\x30\x7d\xb3\x9a\x66\x51\xc1\x7c\x2a\xdc\xf2\xd1\xa9\xd2\x35\x39\xaa\x87\x5b\x94\xc5\x51\x62\xf3\xbd\x3e\xc7\xb8\x82\xf1\x20\xbe\x76\x33\xde\x32\x1d\x40\x1a\xe9\xb8\x7b\x74\x0a\x13\xc5\x05\x54\x44\xd7\xc5\x21\x6a\xa0\xbc\x2c\xbc\x1c\xcd\x24\x1b\xb3\x55\xa5\xe0\x23\xdf\xc5\xef\xf0\x89\xf3\x17\xcb\x87\xeb\x33\x0a\x0a\xc4\x7a\xee\xc8\x51\xbe\x4c\x2b\x14\x4b\xd4\x2b\xd0\xcd\x4a\x14\xc7\xb3\xbe\x57\xfc\x1e\x2d\xde\x18\x05\x1b\x58\x55\x31\xae\xde\x99\xfa\x88\x72\xb3\x91\xb7\xca\x02\x22\x55\xc7\xdd\x1f\x06\xca\x71\xf7\x87\xaa\x11\x4d\x8d\x6d\x82\x1b\x78\x8d\xbd\xd3\x1c\x21\xf3\x59\x2d\x2e\x5c\x58\x58\xc6\xe7\xa2\xd0\x83\x4e\xc4\x45\xd8\xc3\xe8\xfe\xa4\x01\x39\xb0\xd4\x5e\x23\x40\x6b\x5e\xe1\xc1\xdf\xd1\x3c\xf8\x3b\x4d\x2b\xd7\x4a\x92\xae\x31\xff\x53\xaa\xb3\xf4\xab\x52\xfb\x6c\xb0\x1d\x36\x49\x34\x32\x31\xd2\x5a\x31\xa2\xa1\xb7\xe2\x1c\x5c\xdc\x0c\xdf\xdb\xf1\x3c\x90\xad\x06\x53\x84\xfd\xed\x98\x39\xa5\xee\x25\x3a\x77\xdc\x7b\xca\xdb\xef\xa3\x9a\xc9\x08\x29\x0f\xd9\x70\x98\x80\x1b\xdf\x52\x32\x12\x0a\x69\xa7\x1d\x64\x4c\x01\xda\x0d\x12\x8c\x57\x11\x7a\x3a\x83\xa6\x03\x8b\x0e\x7a\xad\x2c\x3f\x6c\x6c\x0f\xf3\xcc\x01\x6f\x0b\xd5\x21\x3e\x56\x81\x54\x37\x1a\x0c\x6c\x46\x6e\xdb\xf8\xfe\xb7\xe9\x4e\xb0\x91\xfe\x39\x05\xa2\x08\xb0\xee\xa3\xe0\xcd\x27\xda\xff\xf2\xf5\x5a\x6b\x73\xff\xa1\xf6\xd8\x14\xe2\xc3\xa2\xd8\x3c\x0a\x39\xec\x88\xb4\xff\x4e\x99\x01\xd9\xc3\xe3\x0c\xce\xf3\xac\x4e\xc2\xf6\x05\x4a\x61\xfb\x76\x8d\x90\xb7\xb4\xbc\xd4\x4e\xc7\xc4\x93\xe7\x01\x21\xdb\x51\xb9\x36\xc9\x36\xa5\x6b\xd2\x99\x5d\x7b\xa8\xe5\xbc\x52\xb8\x34\x84\x2c\xf9\x76\xd5\xc7\x4a\x51\xee\x7e\x6f\xaa\xf0\x37\x17\x95\xbc\xc0\x4d\x5a\x42\x70\x97\x5c\x3c\xf6\x4e\x29\xb2\x3e\xdf\xa7\x15\x04\x91\xe7\xad\xe0\x29\x0d\xde\x23\x3b\x6d\x08\xce\x39\xae\x30\xc2\x76\x29\x35\xed\x7c\xbe\x9f\x6b\xaf\x46\x69\x4c\x78\x2d\x35\xf5\x5b\xca\xe7\xa6\x8a\x53\x31\x21\xfe\x12\x31\xdd\x7d\xfa\x4b\x3e\x76\x25\x9b\x74\x25\x36\xc3\x74\x64\x18\x5b\x8c\x35\x14\x3d\x0b\x04\x89\xb7\xf0\x02\xc5\xcf\xc5\x0f\xb6\x71\x9a\xac\x3b\x7f\x6e\x3c\x9e\x8f\x10\x29\xf3\x89\xea\x7a\xae\xda\x81\x2d\x8c\xa8\xc3\x33\x42\x58\x41\x7b\xb6\x14\x14\x3b\xb3\xbd\x49\x68\x29\x4f\x47\x32\x72\x8e\x57\x21\xd4\xef\x61\x9e\x81\xb6\x02\x33\x72\xf0\x0e\xee\xa3\x9c\xc2\x27\x2a\x2e\xfc\xf3\xa9\xaa\xa4\xf1\x56\x82\xcf\xbf\xa5\xb2\xef\x34\xee\xd9\xbc\x98\xa5\xef\x40\xa7\x03\xf9\x98\xcb\xa1\xca\x5f\xe2\xff\xd0\xe3\x63\x33\xa8\xe8\xf6\xa5\xc9\xa0\xdc\x1d\x17\x16\x74\xc1\xc8\xcb\xb7\x3e\xa5\x38\x5c\x79\x18\xd9\xa4\x88\xfa\x51\xd8\x52\x35\xa9\xe3\x6a\x5d\x3f\xae\xbe\x3b\x34\xe3\x32\xf9\x06\xeb\x4b\xcc\x23\x95\x90\xc1\x19\x25\xfc\x78\xaa\x46\x36\x98\x9f\x6f\x8f\xec\x28\xcd\xca\xa0\x1b\x45\x37\xb4\x4c\xee\x51\xd5\x8c\x3d\x79\x94\x73\xc8\x2d\x35\x3b\xbb\x59\x6a\x7a\xa1\xc9\x0b\xee\x20\x0b\x14\x51\xd5\xce\xce\x37\x25\x52\x45\x66\xc2\x15\x0a\x32\xb5\x70\xb2\x88\x9f\xf9\x12\x49\xbf\x4f\x06\xe2\xb0\x8b\x43\x84\xf7\x60\xc7\xd7\x59\x18\xe5\x8f\xad\xe4\x6e\x23\x8d\xa2\x67\xc4\x2b\xbe\x5c\x9e\xc4\xc7\xda\x57\x5f\xef\x38\x9e\x0d\xb9\xb3\x46\x55\x90\xd3\x59\x05\x72\x3a\xab\x41\xda\x71\xc8\x36\x7c\x32\xb1\x15\x9a\x5b\x03\xc0\xd3\x35\x0c\x57\x16\xc7\xe1\xe1\x8a\x50\xf6\x84\x26\x63\x72\xef\x0c\x93\x0c\xf7\xe8\xea\xe7\xae\xa3\xba\x39\x55\x4a\x80\x17\xb4\x04\xf2\x09\x85\xf8\x1b\x97\xeb\xe5\x88\x64\xef\xcb\x15\x06\x29\xd8\x6d\xc5\x11\xfb\xcb\xa9\xf7\xd9\xfe\xa8\x89\x51\x10\xda\xc4\x2a\xed\xfb\x63\x81\xe7\x74\xbf\xa5\xcb\xbb\xdf\xae\xc5\xc7\x65\x70\x11\x9a\xa4\x17\xf5\x44\x67\x42\xc2\x98\x96\xb3\x51\x6a\x76\xdd\x19\x95\x57\x6d\xb4\x35\x0c\x0f\x23\x3e\xa9\xf1\xe0\xca\xcc\xc3\x2d\x4e\x1a\x69\x0d\x1c\xc0\xdb\x53\xd5\xa7\xbb\xa2\xec\x0d\x63\x53\x44\x49\xcb\xcf\x5f\x76\x6e\x90\x6a\x67\xbd\x4d\x7d\xb0\x9d\x4d\xa0\xbc\x01\x50\xc4\x15\xec\x7b\x78\x6f\x57\x34\xa4\xe7\x7f\x6c\xc8\xc1\x96\x48\xb2\x25\x46\xb0\x27\x54\x48\x0f\x69\xdc\xc0\x65\xa2\xbf\x7b\x42\x4d\xea\xb1\xed\xf5\x62\x21\x30\x89\x86\x51\xcb\xc9\xf6\x7d\x4b\x2d\xe8\x45\x3a\x09\x87\x4c\xff\x61\x55\x5b\x54\x99\x45\xe2\x56\x99\xf8\x8f\x4d\x16\x62\x23\x45\x58\x73\x0e\x41\x1f\x9f\xd4\xe2\x9a\xf9\xf9\xb6\x35\x79\xa1\xc2\x86\x13\x81\xe2\x7e\x9f\xa8\xc5\x7d\x44\x8c\x32\x61\x68\xc7\xbc\xa8\x3b\xa3\xbb\x0b\x81\x86\x12\x37\x50\xdc\xc7\x69\x94\xa7\xde\x52\xdc\xd9\xc9\x39\xa1\xd3\xef\xe8\x35\xcf\xc6\xd1\x88\xfb\x09\x8b\x2e\xe3\xf6\xe1\x7f\x91\x45\x71\x1c\xa5\xc9\x1c\x3d\x77\xde\x1f\x74\xa3\xf1\x41\x2a\x09\xa0\x22\x04\x34\xa6\xcb\xa9\x3f\xff\x82\x13\xa0\x68\x58\xbb\x5e\x36\x89\xc5\x03\xa9\xa8\x68\x0b\xc8\xa6\x16\x8b\x3c\x77\xb0\x4c\xff\xc7\x69\x2e\x25\x20\x44\x55\x44\xae\xdf\x66\x86\xaf\x84\x86\x7e\xe1\x48\x12\x43\x2e\x12\xf8\xda\x0f\xb9\x9c\xa2\x6c\x57\x3d\xe4\xd0\xb3\x69\xce\xeb\xc1\x34\xdb\x51\x66\x5f\xd1\x78\xa6\x35\x3f\xef\x3f\xe2\x78\x16\xf7\x83\x8a\xe4\x9d\x24\x32\x83\x68\x34\x8a\x42\x36\x48\x00\x27\xea\x35\xfa\x14\x62\xa2\x6b\x14\x65\x0a\xb9\x53\x49\x4d\x82\xd2\x41\xf1\xa8\xd3\x8a\x3c\xb0\xe8\x94\x1f\xa5\xac\x9f\x26\x36\xea\x99\x56\xeb\xd7\xa4\x26\x77\x4e\xfb\xf0\xd5\xcb\xb3\x65\x78\x6d\xd8\x25\xd5\xa1\x7b\x8e\xe9\x46\x90\x7a\x74\xbf\x7e\xf0\x00\xcc\xe5\xe5\xfa\xca\x8f\x48\x63\xa1\xe5\xb4\x5f\xff\x5e\x47\xd7\xf7\x9c\x39\x4c\x3e\x61\x88\x97\x76\x64\x94\x86\x41\x13\x0c\x14\xc2\x02\x34\xf9\x58\x1f\xa0\x2a\x16\xe0\x76\x33\x31\xb5\xe4\x0a\x68\x53\x90\xe6\x4b\x14\x7d\x93\x17\x73\xde\x72\xe0\x9a\x22\xd3\x5d\x9b\xaa\xbd\xec\x26\x7d\x5e\x6a\x17\xe5\xdd\x31\xfd\x56\xc5\xfe\x3d\x3b\x4e\xf3\xa8\xd0\x5e\x57\xdc\xa1\xe0\x93\x26\x41\xa4\xdc\xc6\x7e\xdf\x14\x3d\x37\xbf\xc7\x5f\x6b\x32\xf9\xb0\x87\x0d\xf4\x49\x17\x2b\xd1\x22\x26\xdc\x3b\x8a\xfc\x74\xb9\xd2\xb7\x36\x59\xf1\x84\x77\x81\xbf\x1e\xf8\x36\xc7\x7d\xe5\x24\x7f\x66\xaa\x10\x5b\xdf\x0f\x94\x12\xc4\xad\x40\x37\xfb\x3f\xc4\x0e\x85\x19\xf1\xa7\x08\xce\x50\x82\xd8\x45\x7d\x38\x8c\x84\x59\x12\xf1\xc6\xe6\xf9\x6a\xe0\x99\xd8\x4f\x01\x28\xcb\x1f\xd8\xf0\x73\x8b\x91\xb9\xa8\x11\xbc\x41\x09\xc2\xf6\xe5\x32\x9c\xdf\x66\x38\xaf\xd3\xe7\x2d\x6f\x1f\x0f\xe9\x75\x17\x4b\x8f\x26\xc2\x2f\xf0\xfd\x62\x25\x04\x54\xd7\xeb\x3c\xb0\x28\x12\x6f\x2d\x9f\x77\xfe\x85\x6e\x62\xfc\x85\xab\x3a\x84\x59\x94\x0c\x24\xc7\x16\xa6\x99\x32\x51\x3c\xe5\xfd\x5d\xd2\xd8\x20\x04\x65\x5d\x76\xba\x06\xd1\x68\xff\x84\x6f\x87\x4d\x92\x19\x9a\xc4\xfc\xea\x94\x1f\xca\xeb\x81\xe7\x99\x9c\x6e\xde\xff\x53\x13\x47\x2e\x7b\x11\xbb\x6b\xba\x72\xf1\xc1\x6e\x12\x1f\x8f\x8a\x72\x13\x9b\x51\x08\xff\x3b\x15\xd5\x70\xba\x21\xe9\x88\x2a\x97\x95\xd0\x26\x26\x8b\x52\x45\xf4\x65\xba\x89\x4c\x0a\xdf\xe5\x0b\xe3\x49\x77\x56\xa9\xac\x41\x19\x02\x51\x1b\xc8\x7d\xe8\x65\xbc\x81\x2f\x60\x01\x05\xd5\xe8\xcc\x52\x9a\x14\x0f\x28\x1a\xff\x39\xca\x29\xd1\x07\x87\xcd\xb0\x23\x5e\x96\xa3\x02\x2b\xda\x6f\xd1\xd8\x07\x1e\xf6\x0f\xe8\x01\xf2\x07\xb4\x39\xcd\x89\xda\x94\x82\x26\xfb\x2a\xc0\xf4\x08\xec\xbf\xa4\xb0\x28\x5f\x6a\x32\xc1\x2a\x86\x59\x3a\x19\x0c\x15\xcc\xef\x96\x52\xbb\xbd\x55\xab\xb7\x1c\x7a\x8e\x89\x0b\x05\x7e\x06\x9b\xc7\x96\x12\xb8\xdb\x6a\xf4\xae\xcf\xcc\x3a\x2c\x8f\x97\x38\x71\x7c\x73\xea\x93\xc8\x37\x15\xfe\xa1\x1c\xc6\x65\x8a\xf0\x00\xbd\x59\xbc\xc0\xaf\xa0\x64\xc1\x34\x3e\xba\x3e\x47\xe9\xf3\x26\xca\xef\xe8\xa2\x2a\x8c\xe7\x65\x29\x51\x83\xe1\x2b\xaa\x8d\xfb\xb2\x09\x57\x00\xd6\x60\x25\x0f\xfc\x21\x67\xe5\x41\x25\x43\x5f\x58\x70\x72\x1f\x1f\xc7\x65\x1a\x4d\x92\x28\x8c\xc6\x06\x55\x37\x2c\x16\x97\xa7\x33\x07\xff\xeb\x2f\x78\xaf\x51\xaf\x3e\xfe\x57\xf4\x9d\xa2\xb8\xe9\x97\x5f\xbb\x6a\xc5\x94\xfb\x45\xcd\xb5\x3e\x28\x27\x18\x29\x0e\x1a\x5a\xa6\x1f\x22\x60\xe6\x53\x0e\x60\xa8\x54\x75\xe8\x46\xe0\x5b\xd9\x37\xd4\xf6\x37\x89\x2b\xba\xa4\xa0\x5e\xf3\xf1\x46\x7d\xd1\x5e\x6a\x0f\xd2\x14\xad\x65\x4c\x70\xd6\x37\x00\x84\x15\x82\x21\xd2\x38\xf2\x15\xa8\xec\xe5\x6c\x56\xbd\x7b\x60\x8e\xf9\x38\xf0\xcd\xdb\xb3\x3a\x5b\x38\x5b\x2b\x45\x3a\x1f\xec\x74\x92\xf4\x66\x3c\x25\xe9\x88\x72\xf6\xc5\x5b\x13\xee\x57\x93\xf4\x59\x94\x85\x93\x11\x35\xd9\x5a\x3e\x62\x42\xae\x2c\xb6\x95\x4f\xa8\xe2\x47\x36\x4e\x33\x53\x90\x2f\xe2\xb3\x02\xfc\x0b\x2a\x0a\xad\x15\x4d\xdd\x72\x76\x63\xcf\xf9\x11\x96\x76\xc4\xfd\xac\xfa\x28\x42\xae\x1e\x79\xf2\x23\x25\x65\x8f\x67\x8f\xdc\xe4\xfb\x54\xad\x95\x46\xe3\xe3\xca\x3f\xa9\x30\xe3\x49\x5c\xb4\x14\x33\x0a\x41\x87\xb0\x7c\x1a\x81\xb3\x7d\xab\xcc\x02\x6e\x2b\xb3\x80\xdb\x6a\x28\xfc\x82\xc1\x80\x41\x89\xed\x56\xe0\x61\x02\xb7\x1a\x33\x95\xc2\xeb\x5e\x6b\xc3\x7a\x11\x4b\x79\xcc\x81\x32\xc2\x49\x96\xb9\xe0\x00\xeb\x2c\x58\x4c\x7c\xbc\xe1\x0d\x49\x47\x61\xca\x39\x9a\xd0\xff\xe8\xfb\x65\x78\x29\xd2\xee\xd5\xda\x9d\x3e\xbf\xaf\xdc\xb1\x52\x6a\xea\x61\x95\xbe\x1b\x28\x25\x91\xef\x28\x57\xd6\x2d\x05\x38\xf9\xd3\x46\x71\xf7\x95\x28\x76\xaa\x7a\x4e\xa3\xb8\x7c\xe6\x7c\xd2\xc8\x85\x30\x45\x41\xad\x1e\x9e\x52\xb8\x88\x7f\x1a\xf8\x0b\xfa\xa7\xea\x71\x5b\x5b\xec\xd5\xe9\xe8\x07\xca\xee\xff\x31\x52\xa8\x72\x76\x6f\x65\x24\xc3\x65\xc0\xa9\x67\x96\x5d\xd3\x62\x57\x2d\x34\x73\x10\x14\x7d\x40\x05\x27\x71\xfd\xf1\x68\x01\x6f\xee\x36\xa3\xd0\x6c\x15\x99\xb3\xbf\x54\x11\xec\x69\xb5\x97\x15\x59\x34\x1a\xd9\xde\x2c\x2d\x3e\x8e\xb7\x51\x2e\x3e\xc2\xdb\x28\xef\x12\x51\xcd\x16\xed\x59\x7c\xac\xee\x38\xcb\xcc\x8c\x42\x1e\x5f\xe3\x40\x0c\x49\x1e\x66\x31\xe0\xcd\x27\x15\x38\xa1\x9f\x66\x9f\xd1\x5a\x26\x47\xb0\xe4\x61\xcf\x67\x0d\x19\xc7\xda\x50\x4a\xa6\xe5\xe5\x20\x16\x7b\x17\xf5\x3c\x21\x61\xd0\x1d\x60\xcb\xf8\xef\xa6\x4a\x80\xe1\x07\x1a\xdd\xf0\x01\x61\xa5\xf8\xaf\x18\x73\x2c\xb3\x97\x86\x01\xfe\x8b\x9d\x5e\x5c\xed\xe5\x05\x11\xc7\xbc\x13\x28\x41\xea\xcb\x08\x2b\x55\x49\xe4\x59\xde\xa6\xb6\xd0\x05\x47\x1d\xf9\x1d\x42\x4d\x22\x20\xbf\x0e\xb8\xaf\xc0\x53\xcb\xd7\xa9\xb3\x31\x74\xda\x6f\x53\xf2\x89\x81\xf1\x3e\x81\xad\xc4\xc5\x91\xba\xc6\x7c\xf7\xb4\x5f\x62\x1f\xbb\xae\xca\x94\x26\x8e\x6c\x92\xcf\x96\x3f\x89\x9a\xfc\x45\x5d\xa0\xbf\xa8\x58\x6f\xbc\x2d\xca\x5f\xed\x5c\x0a\x9e\x7e\xba\xdd\x4b\x93\x89\x24\x2a\x78\xfe\x67\xb5\x9a\xdd\x59\xd5\x68\x1b\x46\xf9\xd8\x24\x51\xc8\xb3\x9c\x6f\x04\xef\x01\xe1\xd4\x2e\x6d\x38\x71\x44\xc1\x3e\x0b\x9b\x98\x30\x22\xa5\x69\x97\xd5\x01\xc2\x29\x18\x72\x05\xa3\x2c\x63\xca\x5c\x34\xca\xb1\x8a\x9d\x56\xb0\x80\xd3\xda\xd3\x3e\x0d\x4d\x4c\xdf\x89\xa8\xa2\xd5\xf1\x11\x46\xcb\xad\x4d\xfd\x28\xb6\x39\x42\x39\x31\xf8\x68\x3d\xbf\x8f\xd5\xe1\x50\xd0\xe1\x40\xc3\x55\x97\x1c\x2e\xe0\xcd\xa9\xb2\x0e\xfc\x28\x50\x44\xfb\x8f\x6a\x15\x80\xf9\xfd\xed\x7e\x1a\xc7\xe9\x9a\xb3\x85\x61\x25\xf4\x40\xf1\xab\x54\xa2\xf4\x9a\x4a\xdd\xa2\x24\x2a\x22\x74\xa8\x9e\x75\x15\x5c\x7a\x02\x28\x4a\x02\x56\xc5\xff\x11\x78\xc6\xe3\xcf\x9d\x44\xbb\x5b\x84\x7a\x45\xbc\x5a\xe8\xbf\x8a\x1b\x57\xa5\xf9\xae\xf5\xd6\xb1\xaa\x37\xd9\x87\x7a\xb2\x5d\x37\xcd\x10\xde\x4b\x06\xd6\x72\x62\xfe\xb7\x5c\x8f\xb3\xb0\xc9\x6c\x39\xe9\x50\xc1\x7b\x8c\x8a\x9a\x8e\xc8\xeb\x65\x67\x67\x48\x40\x50\xc4\xfb\xea\x16\xfc\xae\x37\x16\x49\x37\x07\x75\xad\x77\x31\xc6\xf8\xa4\x22\x51\x12\xda\x71\x11\xad\x92\x27\x87\xfb\x4d\xf0\x57\xf8\xb8\xc9\x96\xb8\xfc\x9c\x89\x63\xfe\x0d\x27\xb1\xa8\x1d\x8f\x75\xd6\x1a\x16\x29\x42\x20\x11\x04\x29\xa7\x2e\x46\x07\xc6\x1b\x5a\xcb\x47\x2b\x5c\xb8\xca\x37\x24\xa1\xfd\x4c\x39\x48\x71\xeb\xdb\x34\xdf\x91\x8b\x21\x7a\xc1\xaf\xee\xa1\x8d\x55\x54\x3d\x09\xfc\x8d\x6f\xbe\xaf\x25\x23\x08\x49\x75\x70\x7b\x43\x23\x4a\xee\x53\xf0\x82\x61\xf9\xc0\x06\xad\x4b\x12\x47\xa9\xe0\xe5\x14\xad\x39\xd2\xd7\xa0\x45\x0a\x33\xe5\xea\x54\xa5\x51\x20\x83\x62\x9b\xfa\x0a\xaa\x8b\x8c\xcc\x0e\xd4\x5a\xb2\x9b\x58\x2c\xac\x09\x4e\x7b\x06\x7a\x09\xbb\x36\x30\xfc\x44\xce\x87\x4c\xbb\xf0\x67\xf7\xb0\x7c\xe3\x19\xc0\x1c\x00\xf7\xfd\x40\x47\xd9\x21\xec\x65\x7d\x09\xe6\x34\x60\x91\x46\x05\xe4\xd4\xf4\x63\xa5\x08\xb2\x49\x5e\x94\x01\x5f\x4b\xad\x89\xb8\xa9\x8f\x5b\xfa\xca\x61\x30\x4c\xc7\x32\xd0\x00\xb3\xdd\xc6\x2d\xf2\xc9\xf4\xd3\x55\x84\x56\x19\x42\x97\x37\xf7\x50\xf9\xb0\x25\x49\x53\xcd\xae\xbf\xc2\x8e\x86\x27\x3f\xd7\x51\x3d\xb1\xbf\xd2\xbe\xd2\xf4\x7c\x99\x3e\x4a\x5b\x1d\xde\xf8\x25\xac\x40\x28\x3b\xec\xdd\xa8\xa4\xee\x07\x3c\x74\x48\x66\xa6\x1d\x0d\x4d\x56\xf0\x52\x8c\x48\xf5\x64\x05\x25\xab\x0a\x08\x5b\xae\x34\xd5\x9d\x64\x03\x4b\xa5\x57\xac\x4f\xd8\xb1\xa0\x49\x80\xad\xf4\x23\xd5\x7a\x3a\xaf\x02\x80\xa2\xb0\x0f\x79\x1a\x12\xd3\xfb\x11\x27\xb0\x9d\xba\x20\xb8\xbd\xc6\xfc\xa6\xb2\xfa\x7e\x84\xc2\x22\xd7\x5b\x2d\x9f\x9a\xe0\xb4\xcb\x1f\xc4\x40\x64\xda\x93\xd2\xbf\x59\x62\x88\xe9\xa3\xaa\xe9\x98\x17\x99\xb5\xce\x1e\xd7\x19\x06\x96\x7f\x2c\x86\x81\x1f\xa7\x4a\xd2\xb5\x65\x92\x3a\xe3\xf1\x96\x7b\x3b\xbe\x4e\x73\x4d\x0b\x30\x6d\x6b\x4d\xa7\x24\xb4\xd9\x3a\xff\x1e\xe6\xd2\xef\xea\x32\xe6\xef\x2a\x1b\x42\xd2\xa5\x60\x24\x0d\xc6\xd1\x8f\x68\xc9\xe4\x63\x55\x7a\x89\x42\xa6\x1b\x38\x72\x4c\xf9\x48\xf9\x04\x43\xc9\xe9\xf9\x39\x4c\xdb\x85\xda\xa6\x53\x8e\x4a\x9b\x0c\xcc\x40\x5a\x08\x18\x29\x0c\x3f\xe7\x93\x26\xcc\x74\x3e\x19\x13\x84\xa5\x7c\xab\x58\xb4\xbe\x4d\xbb\x2c\x1f\xd7\x16\xce\xe5\x7d\x64\x86\x25\xbd\x4a\x89\x34\xdf\x55\x40\xeb\x77\x03\x5d\x97\x9f\x24\x3d\x92\x44\x5e\xf6\x15\x1a\x05\xbf\xaa\xe5\x00\xcb\xfb\xc8\x0e\x84\xfa\x2f\xe0\x36\x7e\x13\xb3\x1f\x49\xe9\x3d\xa5\xcf\x74\xa7\xa9\x5c\x1f\xc6\xd6\x24\xba\xd5\x38\xf5\xa0\xab\x3a\x25\x96\xe0\x87\x51\x3f\x16\x44\x92\xe0\xe1\x95\xbf\xd4\x77\x6a\x1f\xfa\x1c\x54\xf9\x93\xe8\x15\x94\x50\xa4\x8a\xed\xc1\xca\xe7\x54\x22\x3f\x32\xa1\xc9\xa2\x96\xbf\xec\xeb\x81\xd2\x6d\xbe\xae\x04\x12\x8a\x2c\x9a\x8c\xc6\xc3\x96\x2f\x42\x1e\xa7\xbb\xe5\xe3\x46\x26\x52\x3e\x09\x87\x24\x9f\x4b\xb2\xbd\x3f\xfd\x29\xf4\x17\x50\xe7\x7d\x15\x51\x24\x88\x3b\x17\xf1\x14\x85\x2f\x5e\xbe\x02\x87\x03\xd5\x9e\x0b\x0d\x8f\x34\x36\x52\x60\x42\x04\x7e\x5f\xd1\xa0\xef\x6b\x9d\xe3\xb4\x67\xf3\x22\x5e\x9f\xf3\x01\xee\x79\xda\x92\xf4\x14\x77\x9e\x11\xcb\xfb\x7c\x49\xfc\xc0\x22\x43\xf3\xbe\xae\x9a\xcd\xe3\xd8\xac\xaf\x91\xca\x7f\xae\xdc\x89\x76\x6f\xa8\x2e\xa1\x36\x59\x08\xa3\x82\x31\x14\xf3\xfb\x9d\xdf\x11\x3d\x0d\x41\xf2\x7b\x64\x55\xcf\xac\x25\x95\xce\x7c\x4b\xf9\xaa\xfa\xa6\xd3\x20\x33\x79\x1e\x5b\x8e\x90\x98\x09\xac\x70\xff\x57\x1b\x28\xfd\xed\xcc\xe6\x32\x9f\x9c\x90\xa1\x5b\x57\xcf\x37\xa9\x95\xb6\x07\x13\x93\x99\xa4\xb0\xb2\x0d\x39\xc9\xb1\xf2\xc5\xf0\x89\x12\x2d\x5b\xb5\x89\x28\x6e\x48\x2e\x4b\xbb\x8c\x64\xb9\x4e\xce\x28\xa5\xd2\x20\x5a\x62\xc2\x74\x75\x6d\xde\x2f\x3f\xd5\xf1\x9c\x3c\xa4\xd3\xc8\xea\xee\x53\xbe\x21\x9a\x1c\x4d\xb6\xd2\x51\x4c\x72\xfe\x33\xbe\x82\x7a\x53\x39\x4b\x9d\xd6\x06\x2f\x27\x55\xf8\x1f\x25\xa1\x4d\x8a\x68\xd5\x52\x6f\x4a\x9a\xc3\x74\xe9\xa8\xcc\xdd\xc7\x3e\x8a\x87\x7b\x59\x85\xc5\x99\x0d\xd3\x55\x9b\xed\xf1\x94\xdd\x9b\x8a\xb2\xc2\x4d\x35\xc9\x21\x69\x55\x42\x15\xb9\x05\x23\x66\xa4\xee\xff\xab\x0a\xb2\x1e\xd8\x78\x5c\x21\xc9\xd3\x22\x0d\x53\x0e\xba\x71\x0f\x7f\x18\x28\xba\xde\x4d\x05\x4e\xe5\xf5\x59\xf0\xf0\xf2\xa8\x7b\xf4\xa4\x61\xfe\x82\x56\x29\x34\x31\x45\x85\xb8\xe2\x4c\xd9\x54\xd4\x4a\x93\x55\x9b\x15\x91\xb4\x50\x11\x29\xb3\xf2\x20\x9f\x4c\x9f\xac\x06\x22\x9f\x7f\xa1\xbd\xb8\x38\xab\xbd\xf6\x14\xac\xe7\x0a\xfd\x3c\x1f\x4f\xfd\x04\x3b\x59\x89\x48\xf3\x1c\x75\x74\xd6\xf9\x55\xe5\xec\xd7\xdc\xad\x8d\xcc\x68\x94\x16\x43\xb2\x56\xe3\xc2\xe0\xd4\x03\x21\xae\xab\xfa\xf4\x51\x27\xc0\xd7\x7d\x66\xf5\x19\xe5\xc1\xcd\x7d\x4a\xd1\x51\xfe\xb8\x6d\x39\x34\x49\x91\x72\x8d\x59\x84\x00\x5b\x5e\x14\xb0\x89\xae\x30\x8e\x4d\x04\xdd\x0a\xac\x2b\x60\xb2\xf0\xb1\xf2\x2d\x8a\xed\x5a\x94\xcf\x78\x58\xc3\x2d\x65\x52\xcd\x5c\x41\xb1\x29\xab\x50\x97\xbb\x30\xce\xc1\xf6\xf1\x3a\x2d\x66\x7c\x5c\xdb\x4b\x5f\x58\x6a\x5b\x93\xc5\x91\x78\x99\x70\xf0\x14\xf8\x85\x4e\xdb\xdd\x8c\xa2\x3c\xb7\x50\x92\xc2\x88\xe3\xc6\x2c\x9f\xa8\x90\x6b\x35\x0a\x67\x94\xc9\xcc\x79\x15\x28\x01\xe6\x8e\x82\xd8\xb6\xba\xdb\x71\x64\x92\x74\xd6\x3b\x2b\x31\xac\x15\xb9\x3c\x8a\x87\xa8\x4b\x7c\x59\x71\x26\x4e\xd5\xa6\x7a\x19\x53\xa4\xdd\x38\x72\xbd\x26\x84\xab\xc0\x76\xf0\xb1\xe3\x3d\x0c\xd3\x49\x6e\x87\x69\xdc\xdb\xe3\x03\x5b\x60\xe4\x50\xc5\xfa\xb9\x8e\xb2\x0e\xe3\x47\x2e\xe6\x91\x1e\xf2\xf0\xf0\x86\xc2\x9c\x6e\x56\x30\xa9\x79\x61\x92\x57\x0c\x49\x3b\x21\x11\xb8\xa4\xa1\xdb\x97\xb4\x04\x65\x9a\x98\x98\xe5\xa6\x45\xb9\xad\xe5\x54\xa0\x2e\x29\x9a\xe3\x80\x88\xc4\x74\xc5\xd8\xff\x90\x88\x81\xa1\x77\x97\x1e\x14\x62\x90\xb7\xb0\x4c\xa1\x03\xf1\x43\x7a\xa7\x7c\x5c\x59\xa4\x95\x86\xc1\x7f\xf5\x8f\x70\x01\x92\xb4\x94\xbb\x12\x1f\x2b\x37\xfd\x71\x66\x57\x6d\x52\xec\x51\x42\xc0\xea\x52\x77\x77\x94\xe8\xd6\x99\xa9\x62\xef\x9d\x41\xa9\x87\xd5\x19\xa6\x7e\xc9\xb8\x54\x99\xdf\x6b\x66\xfd\x27\xcb\xf1\x8b\x04\x60\x37\xa9\x1a\xe3\x0b\x4e\xa0\x6e\x25\x12\xc7\x3e\x3a\xbb\xa3\x09\x26\xcc\x5a\x72\xfb\xf7\xfc\x3c\xaf\x9f\xff\x33\x25\xd7\x88\xef\x5f\x07\x11\x1e\x45\x89\x73\x08\x38\x99\x92\x83\x55\x14\x8d\x94\x2f\xd2\x55\x0a\xc9\xac\xcc\x84\x90\x37\x7c\xa2\xe3\x59\x5b\xac\xd2\x81\xc0\xeb\xff\x41\x05\x0e\x93\x99\x6b\x2e\x58\xc4\x66\x36\xb4\x9e\xe5\x15\x60\xa1\xf9\x62\x28\xb0\xc0\xe8\xfe\x88\x72\x2c\x08\x2d\x3d\x40\xd2\x21\x72\x91\xc8\x3c\x5c\xa7\xb1\x7c\xb5\x62\xe6\xf1\xa4\x06\x66\x26\x36\x2c\x52\xd8\xdb\xbb\x52\x1e\x8d\x7e\x29\xeb\x29\x4e\x24\x90\xf6\x7b\x94\x65\xce\x13\xe4\x56\x87\xa6\x1a\xf6\x10\xbc\xd6\x87\x36\x7c\x95\x7d\x37\x79\xf6\xe2\x46\xde\xa7\x40\x48\x2a\xf1\x7e\xec\x0f\x4c\x37\x8b\x6c\xcc\x42\x8d\xa8\x48\xbe\x37\xf5\xac\x9e\xf7\xb4\xf9\x27\xa9\xca\x90\x94\x35\x66\xd7\x75\x0c\x1b\xfc\xc2\x51\xbc\x75\x3c\x78\xae\x70\xca\xdb\xa1\x2f\x47\x48\x88\x72\xa5\x33\x70\x2d\xc7\x03\x7f\x5e\x4b\x9d\x03\xd0\x2a\xac\x11\x5f\x30\xbe\xa3\x9b\x53\x49\x34\xa7\xc2\xcb\xdb\xa8\x04\xb0\x12\x16\x0d\x08\xc4\x1f\xc8\x3d\x91\x73\xcc\x6e\x28\xdd\xea\xd3\xaa\xe0\x59\x18\x20\x5e\x1d\x6d\xf3\xf2\xd4\x93\x43\x2f\x37\x80\x48\x96\xca\xfd\x21\x94\xd5\x4b\x94\x2f\x7c\xd7\xee\x8c\x03\xa8\x24\xd1\x78\x2c\xf6\x0b\x02\xb4\x50\x45\x7b\xc8\x86\x21\x84\x3b\xad\xf0\x2f\xf9\x24\x12\x4b\x7f\x80\x16\x2e\x60\xf6\xf0\xc9\x54\x81\xf4\xd2\xf1\x24\x36\x64\x1b\xeb\x75\x0d\xbe\x70\x47\xcb\x5b\xde\x51\x6e\x0b\x99\x35\x7d\x92\xf4\x2c\x6f\x10\x01\xc5\x05\x6a\x09\xf0\xb1\xe2\x1a\xa5\xe3\xb1\x4d\x86\x36\x1a\xd9\xac\x92\x0b\xb3\x44\x1c\x9f\xe8\x30\x3d\x4a\xa2\xbc\xb0\xd9\x03\x5e\x0c\x85\x35\x12\x60\xfd\xb1\x57\xb1\x4d\xb6\x94\x2a\x2f\x93\xc5\x99\xca\xa4\xa5\xf4\x3f\xa4\xf7\x20\x5e\xb3\x5e\x44\x29\x49\x93\xd5\x54\x78\x52\x02\xcc\xff\x90\x5e\xbb\xa8\x78\xee\x7c\x69\x9f\x23\xc8\x9a\x67\x31\xe1\xf9\x5f\x54\xc4\xa7\x8b\x2a\x2e\xa4\x8c\x17\xbd\x90\x67\xb9\xa4\xf5\x3d\xba\x62\x74\x68\xa1\x9f\x8d\x11\xfa\x91\x22\x9c\x77\x33\x32\xba\xf3\x46\x38\x20\xae\x80\xca\xcc\xe2\x11\xfc\x1f\x81\x07\x0f\x7f\x5d\x51\xa9\x1a\x8d\x14\xcb\x10\xb5\x3b\x89\x62\xa0\xc5\x10\xfa\xdd\x09\x3c\x81\xe3\x4e\x0d\x6e\xf7\x4b\xed\xc2\x10\x4a\x7f\xff\x21\xe7\x58\xa9\xad\x2f\xb5\x46\x8f\x80\x63\x1f\x56\xab\xe2\x35\xed\xbe\xfa\xf7\x34\x6b\x85\x57\x58\x5e\x02\x9e\x02\x87\xd8\xc8\xd7\x66\x37\x7c\x5c\x78\x56\x13\x76\x2f\x62\xe4\x3a\xa8\x72\xb9\xa4\xa3\x4f\x77\x02\xf2\x0b\x7c\x82\x10\x9d\xbf\xac\xa3\xd4\x80\x57\x7b\x66\xd6\xab\x4f\x6d\x6a\x1b\x11\x95\x6d\x9e\x9c\x2a\xde\xd3\x6c\xcd\xbf\xbb\x4c\xe0\x23\xc7\x1f\x71\x92\x5f\x4a\xff\xcb\x95\xbe\x46\x04\x43\xa6\x4e\x3d\x02\xeb\xbd\xa8\xb5\x21\xf7\xbd\xac\xfc\x0b\xae\x54\xbc\x1b\x55\x6a\x1e\x4f\x46\x5d\xfe\x0a\x51\x88\xf4\xab\xf4\x39\x8d\xb7\x7d\x75\xaa\x91\xbc\xaf\x06\x3b\x61\x90\x44\x16\x1d\xdb\x2c\xd2\xee\x3b\xd8\xc6\x8e\x29\x2d\xbc\x63\xca\x7c\xb8\x17\x85\x85\x29\x77\x97\x61\x34\xce\x5b\xf4\x88\xf1\x5a\x8e\x62\x3f\xe5\x13\x57\x80\x22\x65\xb7\x54\x74\x5a\x90\x5d\x7d\x85\x46\x17\x1f\x2b\x34\x24\xd4\x47\xf3\xa2\xa5\xdc\x06\xfe\x24\xf0\x65\xb8\x3f\xa9\x01\x79\x16\x16\xda\x99\x5d\x4d\xe3\x89\x03\xf2\x48\x40\xa4\xd8\x10\xc7\x5d\x05\x71\xcd\xc6\x31\xaf\xad\x3e\x1c\xdd\x0d\x3a\x2a\x9f\x6c\xa8\x28\xc7\x50\xbd\x68\x8f\xd2\x0e\xfa\x1e\x0d\x56\xb4\x72\x8e\x73\x1b\x51\x58\x2c\x7e\x39\x5d\xc2\x7e\x83\xc8\xf7\xb8\x62\x83\x5f\x56\xc2\x78\x59\x3a\x7e\xb0\xfc\x32\xa6\x76\x61\x50\x23\xbb\xbc\xa7\xca\x0c\xa7\x15\xcf\x6b\x53\xf1\xbf\x60\xe9\x86\x1a\xcb\xa3\x54\x9e\xc4\x74\xda\xc6\x0a\xe7\xf4\x48\xca\x0b\x61\xba\xde\xf4\x29\xd7\x18\x29\xef\x8b\xca\x0e\x11\xbb\x41\x23\x3d\x00\xda\x54\x1c\xab\x55\x10\x35\xb3\xb1\xf3\xc9\xef\x3f\xd4\x1e\x59\x93\x44\xc9\xa0\x3f\x81\x99\x1b\x82\xc9\xd7\x14\x6d\xea\x35\x45\x66\x2c\x86\x76\xfd\xa7\x68\x1b\x95\x46\x25\x9e\x1e\x02\xb3\x7b\x98\xb9\xd2\xea\x51\x8a\x9a\xb7\xa9\xb9\x89\x97\xb3\xa5\x94\x62\xee\xe1\x81\x31\x8d\x22\xf0\x9d\xb3\x27\x08\x32\x27\xbd\x87\xd6\xaf\x09\x4c\xe7\x7f\xa2\x58\x16\x7b\xfd\xee\x8d\xd6\xaf\xfc\x86\xb7\x48\x2d\x97\x06\x01\x14\xd1\x14\x10\x61\x3d\x9a\xc1\x08\xb1\x6e\xea\x18\x84\xed\xfc\x59\xc4\x83\xc6\x04\x4b\x6a\x53\xb0\x89\x90\xf4\x35\xd2\x69\x72\xe5\x60\xaf\xc1\x70\x07\x6f\x05\x2b\x13\x96\x6a\xa7\xe6\x51\x2e\x92\xd8\xb7\x76\x51\x9d\x43\x10\x75\x0d\x44\xb2\x5e\x66\x06\xac\x64\x80\x60\x71\x2b\x50\x4a\xf7\xc7\xb5\x0c\xdf\x45\x15\xdb\x1c\xda\xf7\xcb\xb4\x3d\x63\x91\xe1\x46\x03\x9f\x28\x0d\xc4\xcc\x14\x43\x9b\x7d\x42\xa9\xb6\xbc\x8b\x72\x0d\x86\x1f\xa3\x81\xf8\x24\x50\xe8\xf2\xdf\x0e\x7c\x1d\xf7\x8f\x69\xf0\x0a\x1a\xae\x7c\x4c\xe8\xb9\xb7\x68\x9c\x29\xd1\x26\xf1\xf2\x61\x13\x7e\xfe\xc4\x0e\xf8\x91\x57\x22\xd0\x10\xd4\xde\x24\x66\x6a\x5c\xc5\xdc\xc0\x09\xb5\x2a\x6d\xae\x96\x53\x91\x7e\xff\x63\x80\x25\x63\xd1\x86\x70\xc0\x2c\xaf\x62\x7f\x4f\x15\x98\xa9\x43\xe6\x14\x07\x49\x8d\x5c\x35\x05\x28\xc2\x94\xec\xa3\x0e\xf2\x68\x43\x48\x9b\x7f\x89\x01\xf6\x41\xd5\xa4\x99\x2c\xe6\x65\x0d\x35\xf1\x78\x68\xba\x16\x75\x1a\x2c\x9b\x37\x94\x33\x07\x54\xe4\xa4\x97\xdf\xe4\xf1\x6b\xe2\x91\xb8\x0d\xa2\x69\xb2\xa5\x40\x66\x4c\x18\x15\x56\x88\x97\x81\x4a\x26\x45\x46\x08\x49\x13\xb7\xf4\x3e\x52\xa1\x74\x5c\x68\xf2\xc9\xc9\xec\x6a\x94\xcb\x76\x88\x96\x12\xe2\x27\x3e\x56\xcb\xa0\x09\x79\x6b\x90\xe6\xb6\xee\x74\x2b\x5d\xc7\x28\x29\x6c\xb6\x1a\xd9\x35\x26\x27\x71\xdf\x49\x17\xa5\x2f\xa9\xad\x24\x8e\x92\x15\x33\xb0\x39\x40\xde\xce\x9f\xe3\x80\xb4\x22\x5e\x9d\x3e\xa5\xc0\x56\x49\x5f\xcc\x22\x66\x7c\x9a\xf4\xa6\x8a\xde\x98\x74\xc5\xaa\x03\x35\xae\xd0\xc2\x02\xe9\xae\xf2\x9d\x48\x64\xa2\x63\x19\x1f\x5d\xf6\xa2\x0c\xe9\xd9\x1c\x5d\x1a\x67\xac\x48\x77\x80\xa2\x69\x51\xb0\xe3\x52\x59\xaf\xb9\x75\x5d\xdb\xa5\xd4\x7a\x29\xcb\xfb\xda\x5d\x13\xae\xf4\xa3\x4c\x0a\xb2\x82\x0c\xa5\xab\x12\x9f\x2d\xa5\x26\x93\x46\x31\xd2\x1c\x34\xe3\x6f\xe3\x22\xb0\x62\xbd\xa6\xbb\x89\x1f\x20\xe7\xe2\x3f\xc3\x32\x83\x99\x7c\x46\xa5\x15\xdd\x49\x5e\xd8\xde\x9c\x82\x3c\x43\xa4\x13\x5b\xe7\x49\xcc\x25\xe7\x4c\xec\xf0\xe4\xa8\xcb\xf1\x1f\xa9\x15\x68\x6c\x33\xa7\x75\x8d\x95\xf6\x94\xb6\x29\x3b\xa5\xb0\xe6\xe7\x95\x2d\xed\xf9\x5a\xb8\xba\xbc\x8f\x48\xb7\xf8\x26\x61\x43\xf8\x54\x91\xf1\x27\xc2\x8c\x50\x79\xe7\xc5\xda\xb2\xbb\xb0\x50\x8e\x2c\xcb\x1c\x63\x11\x51\x2c\xef\x85\x8f\x95\xfd\x66\x66\x7a\x26\xa3\x29\x2b\x9e\x15\x3e\x5a\x3f\x89\x5e\xa1\x34\x7b\x1b\x7c\x14\xfa\x26\xf2\xc0\x76\x14\x37\x4f\x29\x83\xe2\x53\x95\x74\x6e\x3c\x8e\xd7\x89\x0a\x2b\x92\xe5\x3e\xcb\x7e\x83\x06\x3d\xd6\xf7\xdb\x15\x4d\x09\xbf\x09\xdc\x0e\xfc\x64\x18\x0f\xa3\xd8\xf4\x6c\x3c\x1e\x46\xe2\xf0\x82\xcc\xf2\xba\xf6\x40\xb9\xde\xd4\x60\x13\x25\x70\x5c\x33\x9b\xe4\xa9\xca\x66\xdd\x1d\x6b\x61\xa1\x6d\x13\x13\x42\x69\x4e\xcb\x06\xf9\xd6\xc3\xa6\x4a\x80\xa8\x58\xb1\x57\x41\x07\xa6\x00\xe8\x0a\xee\xa1\x7c\x02\x88\xc6\x60\xb3\x89\x64\x68\x4b\x75\xeb\x59\x26\xc2\x49\xcc\x68\x57\xe8\x72\xb8\xf3\xd7\xaa\x66\x4a\x9c\x8e\xf3\xa8\x27\x36\x70\x88\x12\xe0\xd1\xcd\xc7\xaa\xf4\xd2\xcf\x4c\x12\x9a\x28\xb7\x5c\x7a\x41\xe4\xf0\x06\x21\x17\xf8\x58\xc1\x7f\x8a\x61\x94\xac\xec\x51\x5d\x0e\xd4\x05\x30\xaf\xd8\xc8\x12\x15\xc5\x77\x83\x32\x92\x70\xe4\xe0\xe7\xbd\x2c\xb8\x4a\x31\xae\x4f\x3d\x45\xd0\x8e\xb0\xde\xbb\x60\xee\x4d\x5a\xbf\xb6\x2f\x63\xa9\x47\xc7\xf8\x46\x83\xfc\x4d\x1b\xeb\x60\x01\x7e\xb7\xa3\x1a\x29\xf1\xd2\x47\x54\xb9\x36\x8e\x95\x02\xfe\xdd\xa0\x0a\x0d\x75\x91\x1e\x80\xd3\x22\xbf\xf3\xb0\x1b\xb6\x2f\xbd\xd4\xf6\x6c\xbb\x2b\x81\xd2\x68\x39\x35\xa5\x40\x91\xa5\xc4\xa0\x74\xeb\x58\x4c\xde\xcf\xe6\x2d\x0d\x59\x78\x2b\x50\xc2\x86\xaf\x62\xbd\x72\x19\xc4\xaf\x49\x3c\xf0\x3a\x8d\x05\xa6\x3d\x04\x7e\xde\x1e\x45\x31\x0e\x65\x8a\x33\x53\x3f\x65\x58\x5e\xd0\x45\x27\x65\xbe\x83\x47\x7a\xaf\x82\x6b\xc1\xfe\x20\xe6\xdf\x34\x2a\x59\x5b\x4e\x39\x36\x9e\x24\x49\x4f\x60\x4a\x8f\x54\x39\xc1\xac\xf7\x86\x55\xf0\x8a\x72\x0c\x79\x8b\xc2\x56\x84\x56\xdf\x21\xc1\x34\x3c\xb0\x1f\xd2\x98\x90\x20\x83\xa2\x67\xe7\x7e\xff\xeb\xbf\xca\x43\xff\x8d\x40\xf1\x62\xae\x50\x24\x2d\x0a\xdd\xad\xe5\x25\x9e\x2b\xbb\x36\x3c\xb8\xe1\xb4\x62\x20\x86\x43\xbb\xba\x3e\xe3\x59\x49\x9b\x0a\xa0\x0f\x2a\xb6\x70\x8f\xb4\xbc\x91\xed\x97\xa9\xe9\x17\xe4\x92\x2f\xe1\xb5\xf0\x09\x9e\x12\x5e\xf2\x5d\xce\x4d\xf9\x2c\x90\x26\xcc\x28\x62\x92\xb5\xe8\xf5\xb4\x94\x4b\x94\xb2\x1d\x88\x6d\x9e\x0b\x6a\x00\x03\x6d\x4b\xf7\x9d\xb6\x34\x4b\x29\xca\x87\x2d\x65\xa5\x74\x9e\x46\x01\x1f\x37\x69\x34\x14\x26\x5e\xc9\x67\x7c\x8c\xca\x1a\x87\x78\x8e\x2c\x3a\x84\xe9\x7f\x59\x2d\x4f\x84\x7d\x7f\x50\x4d\xe8\x33\x18\x08\x48\xcc\x8f\x4d\xfd\xae\xfe\xd6\xd4\xd3\xcd\x8e\xd3\x0d\x02\x04\x33\xb7\xe1\x41\xe9\x3f\xc4\x5c\xc5\xb8\xbf\x45\xa3\xc8\xb9\x6c\x2f\x2f\x71\x1c\x7a\xaf\x49\xc2\xc0\xe6\x61\x96\xae\xa9\xd6\xfd\x39\xe5\xb2\x7c\x6e\xa7\x79\xcd\xa1\xe7\xda\xcf\xef\x7b\x91\xe0\x31\x18\x71\x0f\x82\x42\x84\x9c\x02\x7d\x63\x51\x7f\x2d\xbf\x12\x01\xf4\xd7\xb5\xc0\xf5\x6e\x88\x9e\x3a\x60\x7e\x39\x93\xd1\xb5\x01\x21\x8c\x1f\x22\x96\x34\xac\x6f\xaf\x06\x0a\x94\xb6\xad\x82\xb1\x49\xd2\x8f\x61\x74\x57\xbe\xdb\xfd\x87\x9c\x6e\x01\xad\x02\x5e\xf9\xd2\xc1\x74\x33\x5b\xa0\x12\x25\x02\x85\xe5\xa3\xe5\x63\x45\x6f\x30\x89\x89\xd7\xf3\x02\x85\x6e\xf1\x7b\x69\x39\xad\x6b\x60\x96\x90\x11\x7e\x97\xbe\x42\xcc\x6f\x3d\x36\xf6\x94\x36\xc5\x9e\xe9\x34\xec\x80\x93\x64\x60\xa2\x84\xfd\x59\x38\x72\xa4\x27\x20\x51\x64\x13\x90\xab\x2b\x18\xf5\x25\xe7\x60\x44\x6b\x8e\x58\x1b\xf9\xd9\x95\xa7\x61\xc8\xe1\xaf\x5b\x9d\x7c\xf6\x76\xb4\xee\xc0\x43\x16\xfe\x99\x49\x90\x39\x60\xa9\xb9\x87\x34\xce\x69\x89\x2d\x2c\x88\x68\x6f\xa3\xe4\xc7\x78\xd2\x8d\xa3\x7c\x68\xa5\x9d\x80\xc7\xf5\x3d\x9e\xbc\x7c\xd6\xb0\x93\x2c\xb5\xbb\x56\xb9\xc9\x89\x67\xaa\xee\x5f\xfa\x4d\xf6\x37\x27\x26\x29\xa2\xfe\xfa\x6c\xcb\xa9\x1d\x71\xf2\x27\x3e\x61\x2a\x32\x45\x57\x8c\xff\xca\xf5\x7b\x23\x1a\x37\xda\x64\xed\xae\x32\x59\xbb\xeb\xcc\x05\xb3\x09\x75\x8f\x1d\x93\x8e\xd7\x24\x3e\xa9\xe1\x7a\x16\x16\x0e\xb6\xd7\x22\x8a\x42\xf7\xbb\xa8\xd0\x83\x7c\x98\x95\x8d\x34\x18\xee\x2b\x78\xb0\x3f\x50\x09\xe2\xd8\x26\xa1\xdd\x5b\x0e\x03\xfc\xdd\x7b\xaa\x57\xc6\x68\x58\x40\x18\x6e\xe1\x36\xf9\x44\x61\x1b\x60\xfa\xe7\xf8\x11\x0e\x21\xb9\xa9\xbd\x4f\x6f\xd5\xaa\x63\xcb\xfb\x0e\x7a\x3e\xa7\x12\xd2\xd0\x1d\xf7\x93\xb5\xb7\xbe\xbc\x4f\xbc\x15\x40\x8d\x76\x3b\x3c\x90\xf2\x7c\xac\x02\xf5\x55\x13\xaf\x0a\xf5\x40\x16\xd5\xf2\x07\x64\xb1\x95\x57\xd4\xcf\xcc\xc8\xeb\xe5\x88\xca\x8e\x6a\x44\xfe\x49\x6d\x2d\x26\x99\xe3\x6e\x3a\x56\x2c\x92\x4d\x5d\xda\xdb\x0c\xfc\x97\x5b\x2b\x39\x2e\xd6\xc6\x1f\xab\x28\xed\x0d\x3c\x28\x84\x50\xa7\xeb\xd8\xe7\xf9\x76\x77\x12\xc7\xbd\xf4\x15\x56\x88\x10\x67\x60\xdf\xea\x39\xd2\xc0\x21\x5f\x6a\xdb\xa4\x9f\x66\xa1\x1d\x09\x68\x4e\x2c\x43\xe9\xa5\x8a\x99\xa8\x9f\xc0\xd4\x35\x25\x0f\xb6\x83\x5c\x0b\x3a\xa6\x0b\xcb\xec\xdc\x2b\xe4\x2b\x5f\x23\x06\xfb\xc2\xa9\x44\x97\x7b\x11\x7f\xdc\x81\xf7\x26\x2b\x99\x89\x92\xc8\x00\x20\x24\x02\x5d\x5a\xad\xcb\x4d\x81\xbc\x48\x53\xf4\xbb\x59\x20\xd4\x13\x54\xfe\xf9\xa7\x37\xe8\xd2\x11\xd5\xfc\x2c\x2a\xa3\x8e\xf2\xa5\x2d\x25\xe8\x22\x04\xa2\xa4\x78\x8e\x93\x7e\xdf\x66\xb6\x37\x57\x0e\x52\x41\xc4\xd0\x07\x01\x54\xb8\x8a\x88\x9d\xff\x47\x31\x75\x5f\xa7\xd6\x2c\x6b\x5b\x69\x0a\x97\x59\x23\x62\x8d\x48\x29\xb6\xbc\x84\xaf\x1a\x64\xd7\x94\x8d\xf7\xa6\x12\x99\x60\x72\xaa\xcd\xf2\x07\xfc\xdc\xd4\xb6\x52\x6f\xd3\x6c\x12\xf5\x68\x7a\xfc\xce\x49\xda\x81\x14\x8e\xe1\x7d\x62\xca\xdf\x40\x96\x8c\x5d\xa0\xd5\x91\x87\x5a\xa4\xb1\x30\xda\xd8\x6a\x45\xd9\x04\x5e\x9c\x7e\x5a\xc1\x89\x7a\x93\xbc\xc8\x22\xf2\x91\x6a\xf9\xda\xf0\x6f\x05\x0a\x94\xf9\x5b\x4d\xca\x03\x51\xd2\x67\x0a\x6d\xcb\x59\xb0\x31\x46\x47\xf6\x3b\x57\x31\xb2\x59\xda\x27\x47\x15\x47\x86\x3f\xaa\xc5\xf7\x8f\x36\x99\xaa\xf7\xac\x41\x25\x57\x28\x5d\x74\x37\x12\xd0\x2b\x19\xec\xc3\x64\xba\x16\xda\x19\x65\x35\x71\x41\x51\xf0\x6e\x4c\x7d\xa0\xb0\xbb\xe3\x95\xd1\x6c\xbf\x1f\x91\x64\xcc\x8c\x07\x5b\x7c\x34\x55\x7e\x04\x33\x1d\xdf\x6c\x3f\xa5\xe6\xcd\x1a\xeb\xa9\x39\xad\x0f\x54\x42\x24\x17\x7d\x44\x65\x6b\xab\x96\x05\x4c\x71\x59\x77\x10\xd8\xf3\x49\xf0\xa0\x34\x7e\xc2\x39\xaf\x98\xf8\x83\xc7\x28\xec\x42\xbb\xec\xa7\x3b\xba\xb0\xa6\x28\x37\xb0\x45\x97\x6b\xf3\x1d\xf4\xd8\x0c\x80\x5e\x5d\x5e\x62\x61\x28\x48\xb3\xf1\x71\x50\xd5\x6f\xb2\x8f\x2b\x55\x8b\xbf\xa5\x3f\x44\x74\xc4\x6d\x6d\x11\x38\x57\x0a\x37\x57\x30\x30\x64\xf3\xd9\x49\x1b\x5f\xf6\x16\x82\x3e\xd6\xbf\x1d\xf8\x79\xf2\x11\xbd\x0d\x05\xb9\x13\x95\xe5\x93\xc8\xb9\x40\xc6\xba\x3e\xf5\xe6\xb5\x97\x30\x49\x11\xb4\xdc\x08\xbc\xcc\xdb\x97\xa6\x1e\xa2\x8e\x26\x85\x7c\x78\xe7\x26\xf2\x39\x12\x88\x4a\x63\x52\x58\x61\xba\x34\x66\x1f\x0a\x81\xd8\x6f\x19\x29\x82\xf8\xe5\x23\xed\x86\x19\xe5\x2b\x7b\x15\x87\xee\x4e\xe0\xe3\xd3\xd3\xca\x50\xa0\xd0\x10\xb5\x2b\xd8\x3e\xf9\x04\xe3\x0a\xf5\x2b\x54\x4e\x30\x99\x2f\x4d\x95\x4c\xfd\xc9\x0a\x6e\x2a\x2d\xec\xa3\x15\x22\x85\x87\xb4\xfe\x29\x96\x00\x14\x5f\x59\x98\x1e\xe9\xcf\x5f\x2b\x5e\xf0\x5c\x87\x95\x35\xe9\xbd\x70\x3d\x5c\x4b\xb5\xc1\xfd\x74\xfb\x32\xdd\x8e\x38\x80\x95\xcf\x11\xab\xe3\xb7\x68\x35\x42\xf2\xb0\x77\xc3\x03\x4c\xbe\x41\x21\xbf\x38\xba\xfb\xb5\x24\x1f\x9a\x8c\xd0\x4b\x51\x82\x56\xc0\x7e\xad\x52\x29\x15\xf1\xd3\x5a\xbf\xf2\xa3\x06\x29\xbb\x83\x40\x14\x55\x0b\xb6\x2c\x3a\x2e\x54\x0c\xe9\x5f\x86\x69\x52\xd8\x98\xa1\xfb\x52\xdd\xf4\xec\x1b\x34\x2d\x3b\x8f\x29\x31\xac\xbc\x48\x33\x3b\xe7\x5d\x75\xfe\x20\x50\xdc\xb5\x1f\x04\x3e\x98\x43\xc5\x14\xa9\x36\x6a\xa0\x08\xf8\x2e\x3b\xd5\x8b\xee\x38\xac\x44\x0f\xaf\x4d\x55\x16\xf1\x5a\xb0\x53\xf7\x74\xe9\xb9\x83\xd0\x6a\x26\x75\x4a\x19\x86\x28\x11\x5c\x55\xdd\x80\x37\x95\x80\x5e\x5d\xa1\x9b\xd4\x53\xcd\xc4\xd5\xb3\xb9\xaa\x11\xf8\xc4\xf3\x54\x2d\xae\x5f\xde\xd7\x26\x8d\x11\xfe\x49\xb7\xa5\xb8\x12\xf8\xe9\xa9\x32\xbf\xb8\x5e\xcb\xe2\x9e\xdf\x87\xc0\x3b\xa4\x0d\x82\x99\x0a\xf4\xa8\x84\xb5\xd0\x00\xe1\xed\xa5\x93\x6e\xc1\xa5\x5f\xa8\xfe\x5c\xc6\x3a\xc2\x27\x4d\xae\x9e\xa6\x67\xc6\x3e\x4a\xc7\x82\xf3\x65\x7a\x1c\x7c\xdc\x80\x4f\x79\xb6\x3d\x4c\xb3\x5c\x22\x3e\x94\x36\xbe\x12\x28\x3e\xfb\x57\x6a\x75\xd3\xcf\xb5\x0b\x9b\x17\x3b\x3b\x02\x6a\x80\x7d\xd8\xc0\x6b\x6d\x87\xe9\x68\x34\x49\x88\x4e\x87\xb7\x2e\xba\xd8\xaa\x2f\x74\x4e\xe5\x8e\x0e\x6c\x10\xd9\x7c\x8f\x27\xa7\x5c\x47\xf1\xeb\x2a\x4d\x3a\x61\x5c\xf8\xa9\x7d\x0d\xcb\x06\x9f\x4c\x5b\x87\x9e\x73\x5c\x42\x5f\x2b\xef\x9b\x38\xde\xeb\x7b\x03\xef\x4f\xb5\x99\x33\x2e\xce\x59\xd1\x3a\x75\xe6\x5b\x8a\xd3\xfa\xd7\xb8\x5b\xe7\xe1\xb7\xe4\x3c\xe9\x77\x21\xca\x42\xbe\x7d\xbd\xa9\x7a\x3d\x4c\x47\x10\xba\x02\x56\x18\xa0\x2c\x7c\xf8\xcc\x54\x17\x95\x7d\x5a\x9c\x87\x26\x29\x88\xd6\x26\x72\x0e\xca\xf2\xe4\x82\xca\xfa\x2e\x55\xb4\xdc\x3d\x15\x24\x2f\xb2\x74\xdd\xf6\xa0\xa9\x5d\xf1\xb5\x74\x9e\x5d\xee\x73\xef\x4e\x55\xbc\x7b\xb2\x51\x16\xa7\x18\x66\xa9\xa8\x02\x0b\x78\xa7\xe5\xd4\x26\x2f\xaa\x2d\xbc\x9f\xa6\xbd\x07\x3d\xfa\x8f\x4b\x2f\x60\x5a\x9e\xd2\xb1\x3f\x6f\x78\x88\xe9\xef\xd1\xa3\x56\xab\xb0\xf8\xd9\xc3\xf4\x01\x09\xfc\x55\xad\x19\x70\x86\xf6\x32\xd9\xf0\x24\x8c\xeb\xda\x68\xc0\x06\xaf\xd8\x3a\x8e\xa9\x7e\xf6\x4d\x85\x5b\x38\xab\x5a\xaa\xbf\xfc\x85\xe5\x56\x05\x74\x59\x5e\x24\x9f\x28\x52\xc9\x38\x4b\x5f\xb6\x61\x91\x3f\xa0\x2a\xdd\x8a\x12\x5f\x51\xb8\x7d\x6b\xaa\xd6\xaa\xb7\xb1\x62\x22\x95\x79\x80\x6e\x08\xfb\xee\x2e\x34\x8c\x05\xb0\xdf\x24\x17\x1f\xc6\x36\x5b\xc9\x51\x5e\x10\xf2\xa2\xd2\x97\xaa\x8b\x18\x2d\xef\x6b\x87\x59\xba\xd6\x93\xc9\x8a\x34\xf1\x77\x94\x74\xc2\xef\xb8\x30\x13\x2d\x1a\x13\xcf\x7a\x88\x3a\x20\xca\xce\x79\xd0\x63\xb5\x34\x31\xf7\xcd\x26\x3d\xd5\x83\xed\xcc\x16\x93\x8c\x75\x8d\xc4\x75\xac\xfc\x36\xb1\x3f\x6b\x58\xf3\xfa\x26\x24\xf0\xb5\x57\xcf\x3c\xaf\x84\x9d\xcf\x7b\xbd\xa4\xe8\xf0\x1e\x5f\x95\xfc\xed\xaa\x55\xc2\xbc\xc4\xf6\x0f\xc2\x27\x12\x6f\x1b\x4a\x40\x28\xcc\xf1\xd5\x63\xbb\x68\xea\xe9\x2e\xb5\xf3\x28\x9f\xc4\x93\x96\xe6\xb4\xf1\xa7\xf8\xa4\xf6\xa4\x17\x16\xda\x63\x53\x44\x92\x3b\x0a\xd5\xc2\xa7\x7a\xe7\xdd\xb0\x1c\x99\xf5\x2e\x4a\x08\xb4\x4c\xcc\x7f\xb6\xe3\x47\xe2\xad\xa9\x2a\x21\x40\xe2\x02\x77\x76\x6f\xea\x41\xe0\x6c\xf9\x89\x7a\xf1\x45\x4d\x99\x7c\x70\xc3\xc7\xb5\xe7\xa6\x9f\x50\x02\x74\x90\x01\xc2\x32\xf1\x55\xfa\x2e\x3e\xae\x25\x0f\x24\xce\x68\x80\x71\x44\xa1\xff\x3d\xa5\xb9\xff\x5e\xed\x6d\x97\x01\x7a\x3b\x8b\xc2\xa1\xe8\x18\x22\x1a\xbb\xa6\x3a\xae\xd7\x54\xcb\x34\x4f\x47\xb6\x18\x46\xc9\xd3\x58\x8d\x50\x39\xf9\x40\x11\x06\x77\x77\x3c\x48\x08\x71\x3a\x06\xea\xe9\xda\x9b\x7a\xe9\xa5\x76\x6e\x32\xb3\x12\x25\x33\xbe\x2b\xb3\x55\x69\xbe\x2b\x01\xb1\x93\x4a\x78\xdd\x14\xd0\x4f\xb7\xf9\xac\xea\x39\x9f\x42\xd8\xee\x66\xf0\xd2\x73\x07\xbd\x9f\x88\xdb\x81\x4e\xa9\xd0\x76\x9c\xa6\x19\xba\xae\x28\xbf\x5f\x0c\xd4\x87\x40\x04\xe0\xff\xc0\x5b\x62\xe0\x33\x96\x41\x6c\x52\xa7\x5d\x49\x65\xcd\xf4\x88\xa6\x46\xff\xe9\x0c\xbb\xca\x2f\x17\xb3\x84\x86\x52\x47\x3f\xb3\xf9\x30\xb1\x39\x2c\xb1\x1c\x2f\xd8\x41\x78\xce\x05\x5e\x05\x61\x64\xd6\x1f\x2e\xff\x0a\x89\xf9\x27\x3b\x95\x68\xcd\x41\x96\x8f\x06\x1e\x68\x7a\x3c\x50\x3a\xbf\xc7\x69\x91\xad\x58\x16\x8a\xcf\x20\xbd\x77\xa7\x65\x52\x26\x22\x58\xec\x4e\x68\xd9\x89\x3d\x1b\x2a\xd9\xde\x9c\x7a\xf9\x59\x92\x5e\x4e\x4c\x11\xad\xda\x9c\x9a\x50\x18\xd9\x6f\xea\x06\x97\xd6\xfa\x80\xa1\x1d\xfb\xd9\xa8\x36\x02\xc9\xbd\x47\x79\x31\xab\x84\x48\x2f\xe0\x72\xf8\x44\xd7\xce\x35\xda\xe0\x5c\xed\xd1\x2e\x2d\x2f\x95\x6b\xfc\x68\x5c\xc4\xeb\x58\xc4\x1c\x6c\xcb\xe1\xe4\x37\x51\xda\xe0\x8d\xe3\x3f\xa5\x1d\x1a\xb9\xef\x27\x3b\x8a\x27\x8e\xd4\x03\x3f\xb4\xa5\x83\xdc\x9b\x35\x1a\x31\x41\xe0\xf2\x71\x9a\xe4\x51\x37\x8e\xe2\x62\xbd\xa5\xa2\x23\xd4\x4a\x05\x83\xf8\x29\xe5\x17\x95\xdb\x3c\x1f\x59\xf6\x23\x13\x73\x05\xd4\x19\xdd\x25\x2c\x2f\x69\x9b\x5b\x6f\x59\xac\xe4\x0e\x56\xa3\x9e\x4d\x42\xfb\x20\x8d\x61\x4c\xba\x99\x8e\x1f\xf8\x77\xb4\x3b\x35\xeb\xe8\xf3\x96\x1b\xf8\xae\xe0\x7b\x7a\x70\xcf\xd0\x9b\x72\x96\x48\xf3\xf3\x9c\xd2\x32\x4c\x8f\xff\xa3\x81\xe0\xb5\x5c\x25\xb2\x38\x17\x3d\x67\x6a\x58\x17\x90\x5b\x5c\x84\x2f\x42\x8a\x46\x26\x0a\x65\x3f\xc2\x65\x3a\x8d\x1f\xa7\xf4\x89\x06\xbe\xd0\x4e\xea\x21\xee\x7a\x64\xe3\x1e\xfb\xbb\xa9\x06\xad\x8f\xba\xd4\x2a\x83\x06\x9a\x60\x76\x94\x1e\x7c\x9e\xdb\x51\x37\x66\x9f\x5a\x81\x7d\x28\x3c\xe4\x75\xd5\xf8\x1f\x4c\x92\x91\xe5\xa0\x4a\x8a\x7c\xf4\x36\xa5\xfc\xd7\xc0\x82\x1b\x67\x76\x6c\x32\xd9\xdc\xc5\x61\xc1\x43\x84\x2f\x35\xe4\x3f\x8b\x34\x4d\x24\x49\x40\x17\x0a\xc5\x60\x3e\x0e\x76\xf4\x94\x5e\xd8\x7f\xa8\xfd\xf4\xd3\x54\x72\x13\x17\x7b\xe5\x7a\xf7\xe5\xa0\xb2\x17\x95\x4f\x1e\x89\x24\x3c\x8d\x31\x61\xbf\xaa\xa5\xe1\xb8\x8b\x28\x6e\x58\x8f\x2a\x78\x71\x11\x42\x8c\x15\x23\x89\xa1\x49\x7c\xa2\xc4\x8a\xa3\x38\x9e\xe4\x45\xc6\x54\xcb\x03\x22\xa7\xc6\x7d\x5b\x3e\x69\xd4\xd6\x71\xea\x5a\xca\x9d\xf8\x0f\x15\x6f\xf0\x0f\xdd\x26\xdd\xcb\x26\x83\x8a\x18\x09\xbb\x45\xf1\x49\x63\x7b\x25\x2f\xcc\x60\x60\xbd\x4a\x11\xf6\x9d\x2b\x81\xdf\x83\xae\x34\x71\x19\xcd\x78\x9c\xa5\x26\x1c\xce\x2a\xdd\xd0\xb3\x55\x46\x6c\xcb\xc9\x83\xcc\x75\x7c\x3b\xea\xe2\xf4\xd3\xd2\x08\x31\x80\x76\x45\xaf\x78\x0d\xef\x26\x38\x71\x43\xd0\x35\xb4\xc6\x85\x87\x68\x99\xbf\x87\x62\x01\x9f\xb8\xed\x29\x8f\x06\x9e\xae\x8f\xf5\xf4\xae\x72\xa6\x42\xb9\x0f\x0b\xe3\x71\x55\x52\x23\xcb\x29\x9b\x93\x05\x87\x10\xe4\x68\x4e\x63\x1e\x7e\x14\x78\xa6\xe7\x75\x5a\xa5\x64\xe8\x2a\xc7\x99\xb3\xaa\x01\x33\x4c\x93\x9e\xa1\x60\x46\x3c\xf7\x7c\xb3\xef\xb4\x92\xfc\xb1\x23\x50\x76\x11\x1a\xdf\x51\x52\x6e\x77\xa6\x5a\xb7\xc3\xe6\x85\xa1\xae\x18\xec\x17\x99\x06\xa3\xda\x52\xef\x2b\xae\xd4\xd0\x64\xa3\x34\x59\x6f\x29\x2c\x29\xf2\x2f\xa1\xee\x68\x13\xd7\xbe\xdd\x53\x6e\x98\x28\x2b\x9c\xa3\xa9\x21\xe6\x0d\x2d\x67\xd5\x78\x41\x43\x1d\x50\x6c\xe4\x0f\x20\x18\x11\x1f\x88\x27\x54\xf6\x9a\x17\x5d\x12\x0d\xf1\x46\xff\x5c\xcf\xe7\x13\x95\xea\xae\x46\x76\x8d\x90\xc9\x4e\x4f\xc6\x3f\xe1\x40\x3b\xa8\x04\x55\xa4\x97\xd3\xc3\xb9\xa3\x0a\xf3\x1f\x21\x8f\x51\x2c\xd4\x25\x67\x2c\x5e\xbe\x10\x79\x73\x3b\xc7\xf8\xfc\xbc\x6b\x0a\xd2\x35\x4b\x1f\xb0\xfc\x15\x69\x03\x2a\xea\x5c\x04\x28\x80\x73\xdf\xdd\xac\x50\x57\x55\x43\xc0\x4c\x8a\x21\xc0\xeb\x33\xaa\x67\x0d\xe7\x03\xac\xf8\xaf\xe2\xa3\x78\x2e\xb7\x55\x93\xd2\xad\x9c\xfe\xad\x20\x09\x16\xbe\x81\x64\x45\x62\x16\x32\xe3\x29\xd7\x8f\x52\x28\x82\x91\xce\x6a\x8a\x80\x6b\xef\xde\xf0\x99\x6f\x98\x26\x20\x7b\x8a\xa6\x70\xcd\xae\x06\x29\x6d\x9d\xbf\xbd\xff\x50\x7b\x2d\x4d\x7b\x16\xcd\x1f\x0c\x2c\x94\x8b\xf8\x58\x53\x38\x6d\x62\xe3\x18\xcd\x5c\xd4\xda\x66\xc8\xc7\x99\x8f\x3b\x8f\x28\xc1\xe6\xc4\xce\x28\xb4\xd5\x87\x34\x1e\x91\xce\xdd\x42\x30\x27\x85\xd2\x06\x7b\xd2\x9e\x59\x65\x89\x08\xc6\x27\x51\xf9\x05\x2b\xed\x61\x0c\x04\x64\xe5\xe7\x94\x23\xe5\x3b\x0d\x6c\xce\x76\x1e\x4f\x06\x83\x72\xb6\x79\x40\x25\xab\x95\x88\xa2\xe1\x63\xea\xee\x0e\x47\xa1\xe1\x3d\x11\xd8\x89\x2b\x78\xa1\x7c\x52\xdb\x13\xf7\x1f\x6a\x87\xe9\xd0\xe6\x62\x71\xa7\x13\x73\x81\xa3\xe9\x22\xf1\x68\x5c\x00\xb8\x8b\x40\xe0\x1c\xdd\x16\xca\xd9\xef\x4c\x75\x4d\xc4\x87\xfc\x2f\x4f\x12\x8b\xb0\x80\xb7\xb3\x69\x85\xec\x5f\xbe\x65\xb7\xcf\x79\x36\xed\xa6\x12\x15\xc8\x6d\x51\xc4\xd4\x66\xcc\x49\x28\x00\x83\xe7\x3d\xa5\x13\xfc\x5e\x23\x0e\x37\xca\x57\x9c\x56\x3c\x0a\x4c\x88\x67\xf9\x58\xa5\x37\xa1\x99\x14\x51\x3a\xc9\x19\xbc\x80\xe2\x07\x87\x13\x7c\x52\x6b\x9b\x2e\x2e\x3a\x78\x00\x54\xfd\x25\x03\xa3\x4f\x61\xc3\x61\x47\x57\x44\xe4\x33\x9d\x06\xfe\x51\x66\x07\x93\x98\xdc\x57\x3c\xd4\xe4\xbc\xa6\x73\x9e\xaf\x90\x43\xd3\xd8\xcc\x29\x33\x7e\xc8\x72\x38\x99\x00\x17\x53\x5e\xa5\xcc\x03\xdd\x03\x56\xf6\x92\x80\xde\x43\x9c\x06\xa9\x89\xb9\x1d\x5b\x71\x9a\xf3\xf8\xc0\x25\xb7\x4c\x7b\x04\xc5\x35\xdc\x12\x9f\xd0\x66\x24\xeb\x7a\x03\x5e\xb4\x98\x64\x09\x27\x68\x5c\x3e\x50\x30\x9a\x7a\x29\xe1\xf9\x7d\x2f\xb6\x4d\x06\xa5\xc9\xe5\x25\x27\x29\x5e\xde\xa4\xa8\xaf\x97\x3f\x28\x70\x38\x57\xb0\x8b\xf2\x91\x59\x77\x7b\xad\xb6\x1d\x17\xbe\x45\xcb\x89\x83\x6a\x4c\x49\x1a\x47\xab\x8e\x82\x57\x49\x3c\x25\x3d\x75\x6d\xe3\x61\x1a\xae\xcc\x78\x80\x12\x7c\xa1\xa4\xec\xa0\xc0\x21\x37\xdc\x55\xc5\x26\x61\xdb\x05\x5d\x22\x65\xfb\x65\x3e\x51\xfb\xdf\x9a\xc9\x38\xb9\x66\xcf\x7d\x5a\x29\xb7\x51\xc2\xc3\xca\xa1\x45\x90\xb7\x1a\x7c\xaf\xda\xdd\x34\xcb\x48\xc3\x2c\xaf\x28\x44\x62\x62\x09\x49\x55\x6e\x69\x68\x12\xa1\x50\x60\x16\x71\x25\xa0\xe2\x76\x24\x98\xc4\x27\x1c\x69\x2c\x5d\x8d\x72\xc0\xe2\x7d\xdc\x0c\x3a\x38\x1f\x37\xca\xab\x8f\x4c\x94\xe4\x85\x01\xb4\x52\x90\x3e\x2d\xa7\xc2\x79\x01\x8b\x28\xef\x04\x54\xf8\x06\x45\x87\x7b\x2d\x98\xb2\x9c\x50\xa1\x28\x30\x4b\xe3\x7a\xfb\x82\x6b\xce\x8c\xa2\xc1\xb0\x30\xb8\x21\x44\x9d\x27\x89\x84\x82\x75\x92\xf9\x2c\xd2\x48\x6c\xd0\xd3\xc3\xc0\xa3\x7d\x54\x8c\xb6\xbc\x23\xdf\xe6\xf4\x21\xf7\xa6\x9e\x7e\xdc\xeb\x6c\x7d\x29\xa8\xec\xb5\x9e\x0c\xcc\xe4\x67\x8c\xc5\x6d\xd0\xf1\x30\x9e\xcf\x4d\xd5\xfa\x7c\x7c\xaa\xc4\x20\x3e\xa2\x68\x03\x49\xde\x0d\x06\x19\x01\x76\xfe\xe6\xd4\x77\x87\xfe\x10\x6d\x4c\xfe\xb2\x40\x49\xbc\xfe\x0e\x8a\xc2\x5a\x33\xc0\xe1\x7c\xca\x14\x15\xe1\xdc\xa9\x69\xeb\xe9\xa7\xe5\x58\xe1\xc8\x67\x5c\x3b\x7f\x92\x0d\x6c\x6f\x2f\xed\x52\x58\x67\x8e\x69\xe9\x97\xa9\xd7\x46\xfe\xa3\xa9\xda\x49\xaf\xf0\x15\x4b\x0a\x53\x5e\x31\xa5\x39\xf9\x93\x1b\x8a\x32\xfb\xc9\x8e\x6a\x24\x3d\xda\xd9\x69\x19\x41\x11\x76\xc6\x6d\x6c\xbe\x61\xb4\xb1\xe5\xee\x7d\x9d\x7f\x3c\xa1\xa8\xce\xd5\xbe\x71\x99\x02\x0e\xf1\xf5\x92\xdc\x14\x51\xde\x2f\xd3\xb8\x34\x99\xf3\xc2\x13\xb7\x2a\xeb\xac\x26\xc7\x9e\x57\xf2\x57\xcc\x29\xc4\x14\x39\xe1\x46\xdb\x38\xb2\x61\xb5\xa5\x73\x5c\xf7\x0c\x8f\xab\xa2\xfe\x30\x1d\xdb\xbd\xad\x17\x96\x9c\x07\xa5\xe2\x70\x5f\xc6\x90\xe6\x93\xc0\xb3\x84\x00\xe0\x72\x5c\xa0\x32\xde\x10\x93\x2c\x7a\x31\xf8\xc4\x1d\x45\xcc\xdd\x54\x36\x64\x45\x36\xb1\x2d\xe5\xf6\x04\x91\x77\x3e\xae\x45\x01\xf3\xf3\xc0\xe1\xb9\x44\x8c\x1b\xb2\xf4\x21\x69\xce\x2a\x5a\xab\xcd\xc3\x2c\xea\x5a\x69\x4c\x39\x90\x62\xf9\x9c\x04\xa4\xf8\x94\x4a\x19\xfa\x59\x34\xb0\x99\xe1\x5a\xb5\x8c\xd6\xf7\x95\x18\xf5\xfb\xb5\xa8\xee\x73\xed\xd8\x9a\xdc\x5d\x11\xe6\xfc\xdb\xca\x95\xe3\xed\x46\x59\x9e\x38\xea\xdb\xdc\xac\x7a\xa4\x95\xb8\x7b\xd1\xc5\xf1\x89\x0a\x08\x07\x71\x9a\xe7\x50\xc5\xd1\xd2\xf6\x80\x94\x70\x34\x2c\x49\xa5\x7f\xbc\xd6\x84\xc3\xc7\xe8\xff\x64\xa1\x51\x8a\xf2\x00\x30\xa3\xcf\xc2\xcd\x70\x27\x95\xe3\x21\x94\xd7\x68\xae\x23\x7a\xfe\x3b\x7a\x8b\x4e\x8f\xd4\x15\xb7\xaf\x4c\x2b\xa2\x3b\x5a\x67\x87\x9e\x23\x76\x85\xcb\x7a\xd9\x46\x01\x18\x4c\xcc\x57\x69\xa6\xba\x07\x50\xae\x40\x52\xbf\xa1\x11\x88\xc1\x75\x54\xa5\x6b\x66\x34\x71\xb0\x62\xcc\x84\x6b\xaa\xa3\x71\x6d\xfa\xb0\x67\x24\xf5\x9f\xa2\x25\x05\xfb\xe4\x6c\x87\xae\x07\x95\xae\xef\xa3\x06\x0a\x06\xc6\x91\xa9\xf7\xb7\x99\xe9\xa8\x11\x72\x16\xd7\xc0\xab\x28\x2f\x1d\x4a\x3e\xee\xa0\x93\x53\x6c\xfd\xfa\xaf\x8a\x4f\x17\x25\x12\x80\x67\xf1\xbb\x41\x61\x70\x76\xc3\x83\xd6\xff\x80\x60\x04\x98\xbb\x57\x69\x03\x70\x76\x95\x0e\x45\x7c\x82\x82\x1b\x61\xc3\xd1\x83\xc5\x38\xbc\x11\x28\x12\x33\xbf\x3c\xd7\xd8\x2a\xc7\x21\x17\x15\x36\x3c\xdd\x7e\xd7\xc6\xce\x25\xec\xa5\x97\xda\xc9\xe4\x70\x4b\xf5\x84\x21\x62\xcf\xc7\x9d\xa6\x71\x3b\xb2\x59\x58\x66\x7c\xb1\xe5\x71\xeb\x30\x8e\xe5\xb7\xf0\x89\x46\xfe\xc6\xd6\x16\x33\xba\xe6\xa1\x6a\x6a\x5f\xfd\x18\x25\x40\x3b\x19\x91\xf9\x2e\xad\x30\xff\xf0\x27\xf4\x42\x0c\x63\x5c\xd4\xcd\xf7\x6e\x28\x19\x96\x3b\xba\xa1\x27\x8e\x82\x68\xc0\x5d\xd0\x7c\x0e\x3b\x1a\xcb\xa5\xb3\xe8\xfe\xb4\xa2\xc0\xef\xdc\xc2\xd3\xd4\xb5\xc2\x9d\xa0\x65\xf9\x26\xc5\x9c\xcb\xc1\x1d\x92\x78\xc6\x23\x9b\x51\x8a\xc4\xab\xe7\x10\x0a\xaf\xb2\x51\xcf\x2b\x9d\x14\x61\xc6\x65\x44\x97\x75\x38\xa9\xb8\x4b\x8d\x1e\x21\x09\xa9\x96\xcd\xea\x81\xc8\x4a\xf7\x18\x27\x27\x69\x20\xf2\x31\xae\x80\xff\xaa\x66\x95\x7d\x60\xb1\x3d\x36\x59\x41\x95\xb3\x1d\xc6\x99\xb3\x1b\xca\x38\x73\xb6\x23\xdc\x6c\x6b\xb2\x62\xf8\x9b\x13\xb3\x62\x09\x3b\x88\x51\x06\x14\x1e\xe2\x0f\x44\x3b\x22\xdb\xc9\x84\x09\x31\x99\xc2\x35\x33\xda\xa7\x92\x2f\x8c\xba\xe9\x8c\x47\xff\x5c\x56\x19\xfb\x7b\xb8\x05\x2c\x2e\x47\xd5\x8a\x58\x64\x26\x14\x7a\x26\xda\xe7\x27\x15\x8f\xf4\xac\xee\xd3\xde\xf2\xf6\x16\xc3\x28\x34\x83\x74\xc6\x87\x1c\xe7\xa0\xc1\x8f\xb4\xe3\xef\x34\x78\x7c\x13\x36\x51\x08\xc0\xb3\x81\x49\xb8\x08\x37\xeb\x61\xbe\x9b\x88\x8a\xc4\x76\x50\xd1\x03\x77\xa1\xbd\xcd\x27\x1b\x0a\xe2\x1e\xc7\x76\x60\x7b\xd0\x0a\x96\x48\x45\xed\x80\x00\x4e\x61\x34\xb6\x3a\x4a\xf1\xe3\x66\xa0\xc2\x31\x54\x72\x50\x69\xbb\x57\x6d\x15\x37\xb6\xf1\x4c\x92\xaf\x31\x6a\x96\x75\x13\x28\xa8\x15\x0d\x05\xbf\xb2\xf6\xd2\x64\x27\x16\xec\x7c\x05\x88\xa0\x4a\xb1\xff\x5e\xd5\xa3\xd6\xd3\x6c\x65\x8f\xef\x35\xcd\xd1\x42\x87\xc9\xf8\x97\xb4\xd0\x61\x95\xbc\xaa\xf4\x9d\x50\x6e\x41\xa5\xe2\x1e\xb1\x63\xb1\x48\x1f\x75\xa6\x6d\x24\x85\x68\x0a\xcb\xe9\xae\xd0\x3c\x34\x5b\x41\x09\x82\xd8\xb5\x7c\x6c\xc6\x36\xdb\x4b\x0f\xcd\xb5\xb3\xca\x45\x13\xb9\xfa\x77\xa7\xaa\x39\x71\x51\x41\x40\x4e\x63\x8d\xc7\xa0\xbd\x8d\xc9\xc4\x27\x78\x35\x3c\x54\x14\x22\xfb\xcb\x0d\x02\xf3\xcf\xb6\xd7\x85\x74\xd8\xd4\x2a\xf5\xa5\xce\xb5\x61\x9a\x5b\x8c\x00\x81\x59\x68\x9a\xcd\x39\xe5\xab\x0f\x12\x36\xbe\xe2\x0a\x71\xd4\x54\xfa\xbe\xc4\xf8\x9f\x8f\xa6\x5e\x6d\xef\x8c\xae\xb3\x70\x89\x56\xd1\xb1\x36\x95\x5f\x1b\x02\x00\x31\x79\xf1\x38\x6c\x24\x3c\xd8\x8f\x7f\xd8\xe0\x84\xb7\xbf\x6d\x0f\x17\x36\x71\xd5\x65\xd0\xf8\x7f\x4c\x9f\xe2\x63\x05\x44\xed\xa5\xbd\x1e\x13\x45\x1c\xb8\x17\xdc\x47\xe1\xc0\x0b\xa9\x28\x4f\xcc\x18\xb5\x72\x0c\xa2\x93\xca\x5d\xfe\xbc\xb2\x8d\x39\x8f\xb9\xcd\x7f\xa4\x2a\xa8\x61\x66\x4d\x31\xc9\xd8\x9a\x54\xe6\xbe\x5f\x9c\x6e\x35\x30\xf4\xe1\x16\x47\x33\xc3\xd5\x67\x3d\x41\xe9\x9c\xea\xfa\xac\x45\x96\x30\x7c\x7a\x37\x83\x6a\x38\x36\xcc\xb3\x4a\xdf\xeb\x7f\x6f\x24\x5b\x84\x36\x33\xa3\x28\x6c\xa9\x5a\xc6\xeb\x4a\x38\xf0\xf5\xe0\x49\x59\x66\x0f\x8f\x6d\xd2\x8b\xe8\x5e\xe6\x14\x53\x1e\x03\x4a\x17\x73\x1d\x67\xab\x7c\x11\x28\xd5\x71\xdc\xce\xdb\xa2\xa3\x6c\xf5\xa3\xc4\xd2\x0c\x15\x18\xbb\x17\x3c\x44\x09\x02\xeb\xf2\x53\x1d\x0f\x92\x99\xdb\xa0\x0c\x0e\x23\xe7\xfc\x54\x09\xc6\xbe\x5a\x4b\x4c\x7f\xa9\xea\x07\x2d\x1e\x01\xf4\xa6\xf8\x44\x3d\x4b\xc8\xf2\xfd\xe2\x2f\xfc\x27\xad\x79\x11\x57\xfc\x37\x48\x17\xd9\x35\x67\xea\xa3\xa9\x3f\xa7\x20\x48\x36\xeb\x72\x0a\x88\x72\x73\x19\x75\x62\x85\xfd\xdb\x40\x89\x9c\xbc\x89\x49\x0f\x7d\x88\xaf\xf1\xd4\xc2\x1a\x7d\x03\xab\x3d\xe2\xa6\x1f\x21\x00\x44\x8b\xe1\xdd\x40\xb1\xc7\xde\xa5\xd9\x20\x31\x18\xbd\x00\xc6\x2a\x40\x64\x0a\xa9\xdb\x5f\xb0\xf4\x3f\x2e\xf3\x4d\x55\x9e\xfe\x16\xc5\x70\xd8\xf6\x40\x68\x57\x94\xc7\xfd\x3c\x49\xce\x52\xf1\x8b\x31\x53\xe5\x54\xdc\x3e\x83\xfc\x09\xb3\xf0\x3d\x34\x4a\x50\x77\xf8\x16\x69\x64\x88\x14\x23\xad\x49\x8c\x71\xc3\xae\x20\x2d\xbe\xd6\xa1\xe7\x38\x76\xfe\x06\x51\x0f\x1d\x98\x73\xd1\x79\x79\x5f\xd4\x0d\xde\xab\x44\x37\x94\xa1\xb8\xfb\xb3\x62\x3e\x08\xed\x6e\x5c\xf4\x91\x26\xb5\x02\xd3\x4d\xfd\xcb\xc6\xfd\x00\xd5\xc2\xc7\x4a\x3c\x20\x19\xe4\x8f\x29\x16\x3d\x87\x8a\xb8\xfc\x27\x20\xca\xe6\xaa\x0f\x5e\x92\x6e\x6e\x83\x5e\x22\xc3\xd5\x30\xf6\x10\xaa\x6f\xd1\xd8\x40\xde\x72\x82\x56\x3e\x6c\xff\xd7\x38\xbe\x00\xa6\xfb\xa9\x8e\xdf\x69\x00\xae\xc6\xa2\xf7\xd3\x40\x63\x51\x14\xb7\xfc\x54\xa7\x7c\x48\x95\xc6\x94\x73\x93\x77\xe8\xb2\x67\x9f\xe9\x94\x6f\x13\x00\xa1\x1b\x8d\xfe\x66\x66\x94\x4f\xca\x0c\xb0\xbc\x31\x79\x00\xf4\x05\xf2\x64\x9e\xf4\xed\xe0\x2c\x9d\x8c\xc1\x45\xa1\xdf\xc3\x56\x7a\x41\xb7\x38\x2f\x28\x0c\x40\x98\x26\x79\x84\xf5\x73\x46\xb5\x31\x94\x74\xd4\x9b\x53\x6f\x66\xf1\x7a\x6d\x81\xfb\xf9\x76\x6e\xb3\xc8\xa5\xc0\xe2\x9b\xe2\x01\x5b\xe7\x9c\x4b\x7b\x62\x8b\xa1\xcd\x62\x93\xf4\xb8\xbe\x87\x28\xfb\x32\x4f\x20\x4c\x62\xde\x1d\x59\xde\x65\xaa\xe4\xde\x9b\xd4\x4f\xf2\xb1\x95\x58\x42\xa2\x7c\x0f\xe2\x65\x25\x14\xec\x80\x27\x2b\x0c\xba\xc9\x60\x58\xf0\x15\x33\x29\x77\xaa\xb2\x94\x93\x4d\xad\x95\x2c\x8d\x63\x0b\x26\x3f\x26\xc3\x65\x15\xe1\xb0\x95\xbf\x58\x1e\xee\x4c\x84\x96\xf7\xb5\x27\xfd\x94\x7f\xf0\xff\x97\xb6\x3b\x99\x08\xf6\xdc\x0e\x88\xec\xf0\x28\xfd\x22\x1f\x4f\x2b\xae\x55\x23\x32\x6c\xc3\x0f\x08\xd4\x4e\x21\x2b\x15\xfe\x30\xb3\x79\xb1\x1e\x83\xca\x2e\x42\x75\xb7\x89\x76\xc3\xc7\xb5\x0d\xf9\xc0\x62\x7b\x64\xb2\x81\xc9\xa2\xc4\x2a\x66\x08\x28\xab\x7c\xec\x8a\xbd\xd1\x68\x6c\xb3\xbe\x65\xcb\x66\xc6\xe3\x04\x1a\x9b\x53\x09\xcb\x53\x6c\xa5\x5a\xb1\x40\xbe\xb1\xf1\x75\xa7\x2b\xb8\x04\x69\x7d\xd0\x84\x96\xde\x87\xbf\x49\x7b\x18\xea\x2a\x0f\xfa\x36\xc7\x5c\x47\x43\x72\x15\x9c\x94\xf1\xa0\xf8\x1f\x76\xb5\x61\xab\x25\xa5\xe9\x73\x49\xb9\x0a\x73\xec\x8d\xb9\xff\x3d\x20\xb7\x50\x1f\xfc\x3f\x02\x8d\x79\x4f\xd2\xc8\x95\x5f\x2a\x7d\x1e\x69\xed\x34\x25\xc0\x66\xd4\x35\x79\x6e\x7a\x69\x86\xd4\x03\xc1\xf9\x3f\xc3\x75\x39\x4d\x32\x57\x1a\xb9\xa8\x94\x07\x2c\x89\x9b\x97\x23\x61\x56\xa9\xe9\x70\x41\x8f\x4f\x94\x26\xde\x36\xbd\x75\x3e\x76\x31\xb1\x29\xa4\x73\x89\x82\x13\x6a\x6a\x08\x0c\xf8\xb8\x41\x67\xfb\x60\x7b\x64\x7a\x30\x38\xf5\x45\xe3\x45\x5f\x34\xf6\x9a\xf1\x5d\xf3\x5f\xb6\x54\x36\xf9\x7e\xa0\x30\x95\xef\xbb\x61\xd4\xcf\xa2\xd5\x34\x26\xb7\x15\xd7\xa4\xc7\x37\x8a\x5e\xd3\x63\x9e\x8a\x90\x4f\x46\x36\xcb\xb9\x42\xee\x84\x31\x3d\xa3\x90\x93\x0a\x91\xef\x94\x20\xa8\x9c\x09\xd9\x24\x44\x40\x47\x7f\x8e\xc8\xe5\x32\x46\x07\x9f\x78\x4f\xcc\x74\x2d\xc9\xa3\x57\x64\xa1\xc4\x7e\x8f\xae\x84\x38\xc0\xa8\x64\xf8\xaa\xca\x24\xfb\x93\xf2\x37\xa8\x63\xcc\xdd\x65\x25\x0d\xfc\xea\xd4\x67\x81\x71\x3a\xe9\xe5\x63\x6b\x56\x88\x68\xeb\x8d\x7b\x99\xef\x23\x10\x52\x3d\x83\x16\xf7\xff\xc2\x13\xe5\x6b\x54\xa6\xaa\xb2\x43\x71\xc3\x0b\xb7\xdd\xa2\xf6\xae\xa8\xc6\x28\xac\x3b\xb2\x2f\x57\x34\x73\x56\xa9\x47\x03\xe5\xbb\xb1\x4d\xa1\x84\x53\x00\x70\x7e\xc4\x00\x43\x49\x07\xc0\xcf\x90\x99\x8e\x62\xc4\x1e\xc1\x0c\x71\x19\x6d\x19\x20\xa1\x3e\x73\x3d\x68\x3d\xfd\xb4\x2b\xac\xe2\xfd\xb1\xe2\xa1\x66\x38\x9d\x77\xe9\x75\xd7\x9a\x70\x28\x6f\x4b\xea\x3d\x9a\x09\xaa\x36\x42\xb6\x9b\xea\xc6\x16\x36\x8a\x42\x36\x6a\x39\xa3\xe7\x93\x5a\xf6\xea\x1e\xef\xee\x88\x58\xdf\x50\xb2\xa4\xa8\x97\x3f\xa0\x52\xe5\x7f\x46\x5b\xa2\xd0\x3c\xbd\x20\xc2\x51\x8c\x1c\x26\xf8\x06\xca\x3a\xf5\x5d\xe4\x79\xae\x82\xe2\x7a\x7f\x27\x1d\x4c\x26\x35\x2b\x30\x0f\x70\x02\x01\x9b\x0a\xc4\x7c\x45\xdf\x66\xdd\x34\xec\x73\xed\xb1\xc9\x56\x86\xe6\x65\x88\xf5\x57\x10\xbe\x7c\x12\x3c\xec\x6b\x04\xd1\xac\x12\x4c\xfc\x30\xd0\x9e\x36\x2d\xa7\xd4\x72\x4d\x99\x6a\xd5\x51\x73\xfb\x0f\xb5\x5f\x9e\xe4\x45\x14\xda\x96\xc2\x37\xbd\x1f\xf8\x48\xe8\xfd\x1a\x20\x60\xff\xa1\x32\x07\x1b\x28\x61\x07\xb8\xd1\x49\x4c\xa4\xc0\xbe\x36\xcc\x6c\x61\xb2\xf5\x3d\x5e\x7a\xe2\x1a\xc5\xe9\xcc\xde\x9d\x7a\x34\xd3\x0d\xf5\x98\xbe\x36\x55\x72\xea\xac\x48\x26\xf4\x9c\x06\x09\xee\xf0\x15\x1b\x0e\x09\x03\x8c\x11\x81\x14\x0b\x2d\x85\xbb\x78\xe2\xd2\xab\xf8\xa4\xe6\x5b\xc5\xcc\x43\x94\x68\x9e\xfe\x92\x4f\x1c\x19\xd7\x1e\x0e\x6d\x9e\x47\xab\x96\x60\x85\x4e\x22\xd3\x37\x2d\x5e\x9d\x7a\xe4\x13\x74\xc5\xa4\x5c\xd0\x54\x97\x0b\xd3\x71\x54\x25\x58\x6f\x2a\x88\x4d\xdd\xfc\x60\xff\xa1\x76\x9c\x76\xbb\xeb\x1f\x0b\x2b\xf7\x35\xa3\xe1\x24\xef\x9a\xa4\x47\xee\xef\xc8\x2f\xb7\x82\x8a\x11\xf1\xa2\x30\x19\xcf\x4c\x55\xf1\xe3\x24\x21\x18\x58\x4b\x5d\x39\xe6\x6a\xef\xda\xd3\xda\x8a\xec\x42\x05\xa3\x91\x0d\x6c\x96\xcf\xfa\xf1\xc2\x62\x7e\x7c\x32\xf5\x8a\x1f\x77\xd4\x20\xb9\xa3\xe8\x2d\x45\x96\xa6\xe3\x96\x77\x42\x01\xd7\x9b\x8f\x95\x7a\x4f\x5e\x64\x51\x58\xc4\xeb\x2a\x72\x80\x92\x2e\x1f\xd7\xf6\xe1\x03\x8b\x50\xf1\x19\x46\xb9\x95\x47\xce\x48\x50\xb5\x72\x1f\xd1\xde\xf9\x69\xfc\x09\x7a\x32\xf2\x5f\x94\x5c\x54\xf4\x17\x51\xb3\x85\x59\xa9\x58\x30\xa8\x75\xec\xda\x54\x6b\x8f\x83\x41\x48\xf7\x83\x67\xfd\x89\x8e\x92\x2e\xe1\x05\xdc\xf1\x78\x9c\x7c\x31\x03\xc4\x85\xe1\xac\xbc\x6f\x0c\xb0\x19\x5c\x80\x51\xd5\x3d\xe0\x92\x45\x36\xf2\x51\x45\x1d\xee\x46\x21\xd5\x4c\x45\x8b\xa8\xe5\xdc\xbb\x8e\x29\x1e\x40\x65\x66\xd8\x55\x9b\xd9\x39\xba\x77\xfc\xe5\xb6\x82\xb2\x9f\x45\x02\x84\xb4\x00\x75\x76\x27\x86\x5e\x2e\x8e\xfc\x57\x2a\x39\x81\x2c\x29\x03\x5e\x1c\xed\xea\xac\x12\x81\x3f\xab\x94\xe3\xa9\x5b\xbb\xc7\xa7\x52\x17\xa7\x1a\x6f\x70\x15\xa9\xb1\xd8\x76\xa8\x9c\x01\x25\x2b\xd9\x5c\xe9\x95\x88\xed\xb9\x83\x30\x96\xdf\x9d\xad\xcf\x28\xf1\xb2\x4d\x45\x40\x7d\x80\x62\x4b\xbc\xbb\xfb\x0d\xe0\xa5\xfd\xed\xbc\x30\xdd\xae\x44\xf3\x78\x3d\x6f\x29\xa1\x88\xb7\xea\x66\xf6\xfb\xdb\xd9\x44\x20\x23\x62\xbb\x44\x3f\x2f\x36\x4a\xb2\xcc\xbc\x9c\x0e\x93\xbc\x48\xd7\x12\x7a\x59\x1c\x87\xea\x9e\xc3\xe5\x40\xf3\x5c\x84\xfc\x6c\xa1\x72\x27\xed\x15\x1f\xac\xfd\x40\x7b\x8d\x5f\x6b\x42\x0f\x33\x5a\x9a\x27\x86\x88\x66\xe8\x2e\xfb\x27\x15\x81\x64\x92\x84\x43\xe4\x7b\xac\x41\xad\xa6\xde\x16\xde\x83\x88\x53\xfb\xf9\xb9\xe5\xd0\x19\x85\xc9\x57\x18\x4e\x8d\x55\xf3\x0c\x1e\x03\xb0\x44\x78\xf2\x8e\xa9\xbb\xb8\xc8\x2d\x99\xab\x50\x30\xac\xec\x90\x64\x85\xef\xd9\xb4\x74\x19\xc2\xac\xad\x7b\xcd\x2e\xb6\x87\x26\xee\x53\xe7\x45\xc4\x3c\xa8\x78\x82\xf4\x04\xd7\x2a\xe1\x54\x13\x7c\xa7\x3b\xc9\x22\xbc\xf0\xfd\xae\x7d\x40\x37\xcb\x27\x0d\xe4\xa7\xb6\x3d\x6c\x46\x51\xc2\x75\x74\x57\xf4\x2f\x1f\x9d\x04\x4f\x8d\x89\xe9\x9a\xb4\x56\x30\x86\xbf\xa2\xb4\x84\xbe\xe2\xe3\xfa\x49\x91\x8e\x52\x38\x98\x2c\x0a\xd1\x90\x91\xcf\x88\x6a\xe0\x2a\x8d\x87\x7c\x55\xc5\xd7\xa3\xb1\x09\x5d\x29\x06\x8f\x17\x98\x33\x3e\x6e\xa2\x34\xad\xa5\xd9\x4a\x3a\x61\x0d\x5f\xb1\x8c\x6e\x39\xf2\xe2\x09\x85\xde\xee\x4f\x92\x64\x9d\xb4\x00\x44\xec\x5a\xb5\x03\x94\x53\x4a\x7d\x57\x7c\x7e\x5f\x7b\x35\xca\x8a\x89\x2c\xd1\xa2\x45\xe9\x6f\xe3\x42\x13\xdb\x35\x4f\xd7\xbb\xd6\x24\xf9\x4e\xfd\x17\x3f\x94\xdd\x2a\x38\x1e\x9b\xcc\x02\xe0\xa3\xa5\xf0\xf9\x58\xed\x66\xdc\x75\xe1\xae\x99\x38\x91\xab\x2c\xec\xb4\x6e\xa2\xbc\xa3\x50\x08\xa7\x55\xa4\x39\xc8\xac\x2d\x73\x6c\xa7\x72\xcd\x81\xbf\x98\x15\x6b\x04\x62\x34\x32\x65\x6c\xb4\xcd\xee\xf8\x0c\xd3\xd5\xa3\xe5\x2f\x2b\x11\xed\xdf\xd1\x6f\xa2\x96\xf2\x3e\xed\x48\xdb\x8d\xae\x24\x71\x34\xea\xe2\xd1\x54\x3c\x01\xf9\x44\x49\xb1\xe7\x71\x34\x1e\x47\xa8\x4a\x1d\x14\xaa\x54\xa0\x69\x53\x4f\xd4\x08\x36\x58\xc6\x91\xb9\xde\x53\x3c\xca\x7b\x0e\x57\xb5\x16\x25\xbd\x7c\x48\x1c\x8a\x19\x25\x86\xbc\x7b\x47\x8f\xd6\x05\x24\xd7\x6b\xc5\x96\x03\x8b\xed\x6e\x34\x50\xc6\xf1\xb7\x03\xe5\xe0\x72\xdb\x01\x57\x72\x6b\xc7\x18\xd5\x2f\x32\x32\x99\xcb\x09\x7c\x52\x83\x6f\x89\xd5\x4b\x94\x19\x49\x36\xb1\xa7\xef\xea\xa8\x57\x70\x55\x5b\x32\x9f\x57\x78\xf6\xb4\xdf\x8f\x42\x9b\x21\xab\xc6\xbe\xf1\x86\xe2\xf0\xbe\x51\xeb\x9e\x2e\x2e\x1e\x6c\x4f\x12\x9b\x84\xa4\xf4\x2d\x13\x10\xfb\xde\xb5\xa9\xdf\x0f\xaf\x35\xba\x07\x90\x4f\x9e\x96\xf7\x7f\x15\x5d\x7c\x81\x44\x78\x85\x57\x1b\xdb\xb0\xc8\xd2\x24\x0a\x79\xbb\x41\x81\x54\x64\xc3\xf9\x4c\x0d\xd3\x91\x59\x59\x33\xc3\x96\xce\xb7\x79\x21\xe1\x93\x4a\x86\x3a\x29\xd2\xbd\x3e\x7e\x3b\xa5\x28\x09\x37\xa7\xbe\x3a\x8f\x80\x8c\x52\xc1\xc9\x63\x14\x3f\x3a\xf0\xa9\x5f\x42\xb6\x35\xb1\xe3\xcf\xa6\xaa\x3e\xf1\x4d\x6d\x31\x15\xe5\x11\x8f\x34\x59\xa1\xfc\xc6\xf0\x9e\xee\xf0\x46\xe5\x83\x6d\x29\x68\x2a\xb6\x10\x3e\xde\xc9\x67\x99\xdf\xdf\x7e\x7e\xdf\xb3\x0f\x7b\x08\x28\x63\x8a\x45\x3e\x13\xcf\x83\xc5\xbf\x51\x43\x47\x7c\x73\x8e\xee\x53\x74\xf2\x7c\x41\x63\x8e\xee\x53\x7e\xad\x4c\x6e\x04\x33\xa5\x8b\x17\xaa\x23\xf1\x23\xec\x20\xe2\xb9\xab\x74\x9a\x99\x45\x59\x6e\x50\xf2\xb6\xcb\x67\x2e\x2f\xbb\x81\xf2\x14\x47\xdd\xcc\x64\x88\x89\x19\x98\x5f\xb1\x8a\x7a\x4c\x33\x96\x57\xa3\x41\x8a\x3d\x18\x51\xfd\x71\x2c\x6d\x40\x14\xb2\xa6\x2b\xff\x8f\xb2\x30\x38\xa9\x8a\xf4\x76\xf5\x19\xda\x77\xa4\x54\x52\xfe\x94\x4b\x9a\x17\x9d\x77\xf4\x96\xe3\xea\x8e\xcc\xfa\x8c\x0a\x62\x6e\x2a\x35\xd3\xf7\x28\x60\x13\xd6\xa0\xa7\xf1\xa5\x63\x06\x57\xb5\x1c\xe1\xfe\x53\x54\x9f\xe1\x63\xd5\x25\x2f\xd2\x34\xa6\x56\xdb\xc2\x82\x64\x53\xc7\x2b\xfe\xe1\xbe\x70\xf8\x76\x2d\x36\xfb\x5c\xbb\x90\xbd\xdd\x81\x69\x11\x5d\xca\xae\xb3\x33\xa1\x78\x7e\x5f\x3b\x1c\xa6\xb1\xcd\x0b\x9b\xa5\xb1\x8e\x65\xa7\x2a\x96\x55\x86\xd7\x49\x9a\xad\xa5\x69\x8f\xe7\x98\x88\xf1\xd3\xf3\x10\x35\x7e\xff\x6c\xc3\xd8\x3e\xe0\x46\xd5\xe7\x1f\xdb\x50\x1d\x62\xb6\x0f\x40\x19\xf8\xc7\x94\xe8\x0b\x29\x1a\x5f\xcd\x55\x44\xba\x0c\xca\xfc\x96\x3e\x0d\x2b\x02\xb1\x30\x91\xf8\xc1\xf9\xbc\xf5\x1e\x2c\x47\x96\x34\x1e\x68\x50\x20\x67\xdc\xa0\x0c\x06\x0f\xf0\xb6\xe2\xcf\x7e\x1a\xf4\x4d\x4a\x56\xfe\xcd\x4f\xa1\x32\x24\xee\x37\x3e\x01\x66\xbe\x3e\xd6\x4d\x5e\xb2\xb1\x04\xdc\xf4\x3e\x4d\x26\xeb\x91\x99\x1a\x0d\x25\x44\xb4\xb7\xb0\xac\x69\x83\x29\x8c\x92\x13\x7a\x08\xc7\xb6\x37\x10\x86\xac\xab\x10\xfa\xce\xd0\x85\xe0\x1f\x34\x50\x84\x87\x69\x56\x98\x81\xed\xc7\x9e\x1b\x85\x50\xe4\xb8\x16\x90\xf5\xfd\xe5\x91\xc9\xa5\xdc\xeb\x3c\xca\xcb\xbf\x13\x8f\x72\xaf\x81\x34\x5c\x1f\xa7\x61\x16\xe5\xeb\x7a\xfb\x39\x83\x9d\x9c\x4f\xdc\x8e\x98\x9b\x30\x8b\xfa\x51\xe8\x60\xdd\x78\x2a\x68\xdc\x63\x21\x81\xe3\x29\x62\x8b\x63\xb5\x90\xe7\xc0\x62\xdb\x26\xf9\x24\x93\x28\x11\x8b\x12\xab\xc0\xf2\x89\x12\xb0\x0c\x27\xa3\x88\x51\x06\x4d\xbe\xca\x0d\x75\xa0\x9e\x1d\x99\xa4\xc7\x41\x98\xa8\x0a\xf9\xe6\xc8\xc9\x46\x49\x82\x2e\x35\x61\x1a\x94\x25\xd0\x57\x7e\xa4\xe3\xbd\x85\x58\xe1\x16\x51\xd7\xae\x8d\xc7\x7d\x64\x3a\xd2\x96\x15\xec\xde\xaa\xec\x01\x36\xa7\x4f\x28\xf7\xf9\xb5\x7c\x9c\x45\x49\x41\x0e\x8f\xae\xde\xe9\xc0\xeb\xd7\xb4\x06\x1f\x92\x71\xac\x3c\xa7\xf0\xa0\xc4\xe7\xc6\x93\xae\x33\xcf\x6a\xc3\xd7\x7d\x9f\x7e\x1a\xc3\xf9\x86\xea\x8e\x68\xfe\x10\x84\xbf\xe3\xf5\x3d\xad\xc5\xc5\xed\x13\x81\x9a\x6a\x58\x73\xa4\x18\xd9\x7a\x61\xc9\x15\xcf\x75\x95\xb2\x9c\xc2\xdb\x27\x1a\x3a\x07\x5c\x08\x1f\xbb\xa1\xea\x48\xd9\x6e\xb1\x39\x5a\x8b\x95\x0e\x3d\xd7\x0e\x27\xd0\x85\xc4\xa5\xde\xa0\x1b\x07\x34\xa3\xd5\x51\x2a\x55\x97\x7c\x42\x90\x45\xa3\x28\x31\xe2\x3d\xed\x1e\x52\xf9\xf2\xf9\xc4\xc3\xa1\xd2\xd1\xd8\x16\x76\x8f\x6f\xf9\xb3\xe4\x8d\x72\xaf\x13\x06\xd0\x2e\x5a\xaa\x51\x04\xb8\x8d\x75\xc5\x49\x6b\x3f\xbf\x8f\x13\xdb\x6d\x05\xc8\x31\x5d\x93\xf4\xd2\xa4\x5c\x88\x97\x9c\x9e\xef\x69\x65\x54\x7e\xba\x81\x9e\x4b\xf8\xde\x4a\x5a\x7d\x23\x50\x69\xf5\x8d\x86\x4c\xf0\xc5\x72\x9d\x8d\x66\x54\xf4\x75\x74\xea\x7f\x64\x37\x0a\x33\x62\x25\xaf\xed\xd1\xd2\x7e\x54\xe4\x0f\x94\x17\x8f\x67\xd8\x82\xa6\x2a\xc3\x1d\x90\xfa\x0a\x2a\x4f\xa9\x21\xdd\x50\x5e\x21\xbf\x85\xf2\x99\x64\x50\x2a\xcd\x79\x55\xd5\x5d\x4c\xbf\x6f\xa2\x6c\x56\xa3\x45\x69\xce\x62\xe1\xb9\x42\x8f\x04\x5f\x71\x55\x27\x7c\x6f\x37\xe9\xbf\xe5\xa6\x8f\x16\x9b\x70\x02\x7d\x27\xf8\xa4\xab\x39\x00\x48\xee\x3c\xce\x45\x78\xce\xe3\x53\x4e\x28\x96\x7e\x3f\x9e\x84\xc5\x84\xd6\x50\xcd\xac\x04\x88\x95\x8f\x37\x76\x5e\xc9\xe2\x62\x7b\x64\xa2\x78\x46\xc9\x80\xfc\xad\xee\x81\x61\xe3\x04\x29\xe0\xa2\x93\x22\xe9\x03\x9f\xd3\x83\x0a\x16\xb2\x05\x0e\x9a\xb0\x58\x7f\x8d\x6e\x47\xc4\x97\x77\x32\x47\xe6\xe7\xdb\xbd\x88\x40\x4d\xc2\x03\x63\x49\x9c\x1d\xf2\x38\xbe\x5f\xb3\x56\x06\xe6\xa8\x6e\xf0\x3c\xa1\x38\x0e\xb0\xa9\xa3\x53\x6f\xa3\x79\x87\x62\x16\x41\xd9\xc8\x8e\x61\x7a\x91\xa1\xdf\x41\xe6\x79\x4a\xcb\x90\x9e\x52\x11\x77\x6e\x46\xe3\xd8\x62\x81\x15\x60\xb9\xaf\x75\x6a\x1f\x8a\x22\x9b\x84\x2b\x2a\x7d\x3b\x4b\xb1\x27\x1f\x2b\x25\xdc\xbe\x89\xe2\x49\x66\x67\xbc\xec\xc7\x55\xac\x73\x68\x5f\xdd\x54\xc0\xff\xd9\x1a\x5f\xeb\xf9\x7d\x8b\xed\x68\x54\xc6\x85\x12\x05\xa1\x6a\xf3\x37\x8a\x8a\xf6\x37\x6e\x11\x48\x27\x45\x1e\xf5\x2c\x29\x48\x00\xdd\x23\xaa\xcf\xa2\x4a\x52\x3e\x32\x07\xde\x28\x5f\x38\x0b\xb1\x6c\xa8\xa9\xf5\x91\xff\xee\xff\xf3\x67\x68\xe8\xe0\x61\x1e\xc7\xeb\xd5\x8a\xe3\x48\x19\x6f\x2b\x2b\xd8\x4f\x51\x86\xb6\x7d\xa4\xb9\xe3\x9a\xe7\x69\x18\x19\xd2\xf4\xf0\x60\xcf\xfb\x7c\x8d\x58\x77\x1e\x46\x8a\xc7\xcd\x00\x2d\xd2\x38\xb3\xe1\x25\xa6\x13\x33\xb2\x73\x7e\x84\x6f\x4d\xb5\x40\xda\x59\x2d\x9f\x70\x5b\x11\xb1\xbe\x88\xb7\x2e\x8c\x65\x19\x1b\x71\x64\xb1\x90\x63\x13\xbc\x45\xb3\x8b\x8f\x6b\x9c\x27\xe2\x2f\xc6\xb1\x29\x6c\xc6\x1c\x75\xb4\x12\x76\x6d\xf8\xb6\xc2\xae\xce\x93\x1a\xf6\x11\xc6\x93\x9e\x4b\xdf\x91\x4c\xdf\xc1\x8d\xf1\x49\x2d\x90\x28\x63\xa2\xdf\x9c\x58\xfb\x8a\xbc\x75\xcc\xf5\xcb\x6a\xde\x5f\xd6\xa5\x3f\x3b\x28\xf7\x22\xdd\xb0\x98\xaa\x86\x45\xe0\xa9\x91\x85\x39\x1c\xa9\x22\xcb\x09\x55\x64\x69\xda\xea\x0e\xaa\x60\xb4\xa5\x0b\xb9\x6a\x9a\x36\xf6\x43\xf2\xe8\x70\x31\x9c\x71\x3d\x90\xdf\x7e\x8c\xc6\x11\x9a\x8c\x0f\x6e\xd0\x5e\x2c\xe4\x37\xa5\x57\xd9\x9b\x84\x8c\xcb\x7d\x7e\x9f\x6b\x5c\x2a\x11\x84\x37\xa6\x4a\x45\x01\x18\x4e\xf4\x44\xee\xd6\xca\x75\x0b\x0b\xed\x7c\x1c\x65\x51\xd1\x52\x16\x98\x97\x94\x37\xdb\x25\x0d\x62\x20\x21\x8b\xbc\xa0\x11\x85\x64\xf0\x32\x8d\x69\xc4\xc8\xd7\x08\xf6\x8a\x55\xe7\x03\xe0\x84\x19\x33\xa8\x54\x5c\x2e\xbb\x25\x3b\x4a\x56\x6d\x5e\x44\xc9\x40\x5b\x05\xdf\xa7\x27\x8d\xf2\xd2\x35\x35\x77\x8e\xaa\x5c\xe8\x9b\x4d\xbc\xde\x3c\x4e\xd7\x66\xbc\x64\xe1\x19\xda\xa2\xf1\xc6\xd0\x12\xc7\xca\x7c\xab\xc9\xd4\x62\x64\xf3\x3c\xcb\x9f\xa9\xc0\x61\xce\x06\x0a\x0e\xa3\x55\xb5\xe2\x94\x4d\xe3\x98\x68\x3b\x55\x36\x31\xbb\xd8\x4a\x13\x5b\xdb\x11\x4a\x94\x1d\xcc\xc1\x35\x2e\xee\xa2\x17\x23\xd5\xac\xf2\x01\x02\x78\xf4\x8d\xaa\x16\x6a\x79\x07\x5a\xaa\x45\xa2\x03\x97\x77\x7e\xfb\x27\x6a\x0b\xe1\xfc\x7c\xdb\x1e\xb6\xa1\xdf\x2f\xd0\xd8\x79\x55\xc9\x1b\xbc\xaa\x16\xdd\xdc\x0e\x46\x36\x29\x08\xe0\xad\xf4\x15\x65\x17\x7c\x8d\x7e\x57\xb4\x16\x69\x0b\xe3\xff\x50\xb0\x92\x35\x93\x03\x4a\xef\x4c\x3c\x6e\x69\xa1\xe1\x5b\xd3\x9f\x74\x0c\x45\xdb\x8b\xc2\xe2\x9f\xfc\xe7\xa6\xb7\x9a\x86\xa2\x8a\x8d\x75\xf2\x75\x2c\xb3\x7c\xa2\x36\x9a\xcc\x8e\x4d\x94\xed\xa9\x08\x63\x39\xbd\x41\x0e\xd0\x11\x0c\xa0\x55\x8a\x46\x09\x1a\x7e\x15\x88\x0b\x9e\xfd\xdb\x2e\x7d\x7c\x39\x9d\x64\x89\x89\xa3\x7c\x34\xe3\x37\x27\x94\x7a\x1d\x59\x5f\xf5\x08\x6a\x33\xa7\x0c\xc3\xb2\x28\x17\xa1\x13\x67\x4a\xe1\x0d\x2a\x94\x24\xca\x6f\x4e\x4c\x96\xc1\xb5\x40\x13\x66\x30\x6a\x6e\x2b\x0a\xe1\xbb\xae\xc3\x53\x60\x72\x20\x93\x40\xe0\x80\x92\x03\x1f\xd7\x16\xc3\xa5\xe5\xa5\x76\x91\x99\xf1\x58\xd6\x20\x04\x6f\xcc\x59\xe6\x93\xa9\x97\x30\x8e\xd3\x7c\x8f\x7a\xe8\xe7\x31\x63\xb1\xdc\xc0\xa2\x93\x8f\x03\xff\x9a\xce\x63\x99\x11\x25\x5e\x1f\xa6\xd7\x57\xb7\x85\x85\x76\xd7\xe4\xb6\x22\xfc\xf8\xce\x54\x09\x3f\xbe\xa3\x2a\x64\xdd\xcc\x44\x1c\x8b\xa1\x32\xc0\xd4\x13\x3e\x51\x8b\xdf\xd8\x26\xb6\xc8\x68\xf0\x38\xa9\xc4\x4d\x65\xec\xbf\xa9\x6c\x42\x63\x6b\x7a\x96\x55\x15\xca\xdf\x15\xde\x3c\xbd\x57\x8c\x87\xd9\x0e\x66\x2c\xc6\xea\x6d\xc5\x6d\xa7\xec\x25\x2e\x8c\xb4\xfa\x9c\x3c\x45\xf9\x61\x09\x45\x1b\x72\xcf\xea\x62\xc2\x6e\x1b\x3a\x63\xfa\xab\x5a\x94\xb7\xb8\xd8\xa6\x0d\x3f\x56\x9a\x92\xdc\x94\xc4\xcf\x49\x87\xd2\xf3\xdc\xf2\x61\x99\x25\x2d\x2f\x71\xe4\x78\xb3\x82\x5a\x28\xdf\x1d\x2a\x4c\xef\xd6\xf6\xe5\x72\xb3\xea\xd9\x51\x1a\x66\xc6\xfd\x56\xa5\x54\x2f\xf2\x1a\x3b\x05\x9d\xc8\x57\x5d\xf1\x7f\xb9\x1a\x8e\xbd\x13\x92\x92\x58\x28\xb0\x84\x33\xd2\x46\xc5\xa6\x66\x3c\x2e\x77\x8f\x96\x9f\xbe\x10\x32\x17\xe9\xd0\x06\xe3\x82\x71\x66\x73\xea\xb5\xd2\x18\x12\x32\x25\xfd\xae\x50\x2e\x3f\xa9\x1a\xa2\x51\xc8\xdc\x67\x4c\xfc\x77\x95\xe8\xdc\xbb\x4d\x65\x82\x35\x13\xf7\xd2\xac\xdf\xf2\x80\xf4\xdf\xd3\x44\xfb\xdf\x0b\x9e\xf4\x59\x32\x98\x95\x22\xe7\xe1\xec\x9a\x3c\xe7\x5d\x8d\xe6\xbe\x1d\x99\xd8\xaa\x3f\xc4\x00\x15\x22\x8b\xc6\x0b\x98\x28\x99\x53\xe0\xae\x73\x9a\xd3\x75\x5b\x5b\x53\xdd\xd6\xdb\x78\x50\x26\xe3\x58\x89\x2f\xa9\xad\xe9\x17\xf6\x7f\x41\xf9\x8e\x5c\x56\xab\xc5\x65\xd5\xfa\x18\x67\xd1\xc8\x64\x51\xbc\x3e\xa7\x94\xd3\x99\x29\xc2\x76\x81\x81\xdf\xac\xd8\xa2\x1f\xf9\x19\x76\x55\xfe\x84\x17\x31\x4c\x0f\xa3\x30\xca\x85\x06\x0e\x32\x81\xb7\x46\x55\x48\x4a\xcd\x0d\x52\x0d\x50\x78\x48\x04\x35\xeb\xd6\x1f\xe5\xcf\x44\x57\x00\x68\xf6\x1d\x47\x57\xcb\x57\xa2\x38\xce\x91\x8e\x29\x95\x25\x59\x5d\xee\x2a\x68\xea\xc5\x8a\x01\x7c\x3e\x5b\x6e\xcb\xb8\xd6\xfb\x15\x4d\xa1\x96\x93\x56\xff\x11\xbd\x59\xf9\xf7\x9d\xe1\xc6\xa1\xe7\xda\x23\xb3\x82\x54\x45\x7f\x8f\x2b\xa8\x2b\x10\xcc\xa3\xba\x97\x66\x0a\xa8\x3a\x20\x51\xbf\x3f\x55\x70\xb8\x4b\x15\xeb\x0a\xa0\x1b\x81\x93\x3a\x89\xa5\x10\x21\x02\x98\x32\xc0\x74\xdc\x55\x02\x32\x99\x09\xcb\x65\x31\x84\xa6\xa6\xc0\xbf\xce\xea\x8d\xf8\xac\x9b\x2b\x99\x35\x71\xf4\x8a\x2c\xcd\x0c\x47\xae\x62\x93\x2b\x94\x9a\x28\x34\x28\x61\x23\xfe\xba\xa1\xcc\x57\x6e\x38\x30\xf5\xd0\x9a\xd5\xf5\x35\x1b\x0d\x86\x85\x0a\xf7\x37\x15\x8a\x68\xb3\x56\xed\x59\x58\x68\x0f\x53\xfc\x39\x3a\x84\x20\xbd\xf0\xb1\x6b\x8c\x75\x27\x45\x91\x42\x44\x06\x31\x10\x2a\xe3\x7c\xac\x82\x85\x35\x13\xaf\x44\x49\xab\xf5\xf4\xd3\xa2\xaa\x0d\xa4\x9f\x48\x6c\x37\x00\x89\x63\x7b\x38\x4a\x06\x45\x45\x69\xea\x03\xbc\x18\x3e\x29\x43\x9d\xff\xc2\x95\x7b\x8b\x09\x17\x2d\x51\x8b\x67\xc6\x23\x9f\xb8\xc1\xb9\x96\xe1\x39\xb8\x7e\xee\x6b\x3a\x91\x7e\x4d\x5d\xf2\xba\x49\x56\x6c\xaf\xe5\xb1\x90\xd5\x45\xe5\x09\x55\xa7\x63\x15\xe1\xbd\xb4\x05\x63\xf6\x7f\x95\x02\x34\x0d\x08\x66\x37\x15\x6c\xe6\x48\xe7\x4e\xa8\xde\xf8\x11\x02\x07\xf2\xbf\x07\x15\x4a\x5e\x39\x9a\x31\xfb\x1e\xea\x28\x8d\x7b\x52\xe0\x46\x1e\x8a\xbe\xed\x9f\x4d\x95\x6c\xc9\x9f\x11\xe9\x42\x54\x89\xb4\x44\x51\x23\x95\x73\x32\x1e\xda\x98\x67\x3a\xe0\x86\x1f\x29\xa5\x6d\x6e\x5f\x89\x70\x51\x13\x0f\x0b\xe1\xa0\x44\x38\xcc\xe4\x52\x9e\xc0\xa7\x1a\x3e\xd5\x2e\xf3\xca\x30\x4b\x27\x3c\x37\x80\xe7\xfa\x1e\x3d\x15\x3e\x6e\xe0\xb6\xb5\xcb\x2b\x9d\xa5\x0f\xa0\xfa\x08\x59\x30\x65\x94\xb7\xbf\x42\x2c\x12\x92\x9d\xc4\x6f\x23\x1b\xc7\xa9\xc1\xb0\x72\xfa\xf5\xe5\x83\x13\xa1\xc1\xba\x4a\xc8\x52\xbb\x1f\x25\x46\x15\x90\x51\x8e\x78\x5d\x95\xbb\x5f\x57\xdb\x8c\xcd\xc7\x26\x31\xad\x72\x35\xe3\x75\x0e\x2f\x54\x16\xbd\x7a\xe1\xf0\xd9\xb6\x59\x33\xeb\xb3\x9e\x5d\x74\x77\xea\x2d\xd1\x1f\xe9\xa8\x56\xa3\x82\x70\x5d\x70\xc4\xdf\xd8\x50\x95\x98\xb3\xba\xfb\x78\x06\x28\x3a\xfc\x44\x87\x72\x1a\x07\x5e\x28\xd7\x12\x64\x6e\xb7\x76\x72\x54\x3d\x79\xb5\x41\x05\xb5\x17\xe5\x45\x9a\x61\xe6\x48\x40\x57\x3e\x5d\x09\xf4\x1a\x76\xf1\x78\x32\x1a\x3b\x35\x21\xcc\xf4\x53\x81\x5f\xca\x4f\x35\xb5\x1f\x86\x66\x30\xf0\x3e\x86\x62\xf2\xe8\xf1\x08\x27\x15\x99\xa1\xc8\x4c\x92\xf7\xb9\x73\xcd\xfd\x7e\xa5\xb2\x7e\x69\xfa\x0f\x3f\xa6\x2d\x9f\xd8\x55\x9b\x15\x43\x1b\xdb\x3c\x9f\x6d\xcd\xcf\x7b\x61\x29\x91\xec\x38\xf1\x78\xc7\x67\xc6\xdb\xba\xed\x58\xcf\xd4\xa9\x43\xea\xc5\xca\xdd\x7b\x5a\x58\x70\x0d\xdb\x06\x2c\xce\xd0\x14\x19\xab\x20\x39\xdf\x04\x1f\x37\x4f\x95\x0c\xfc\x8f\x1c\x0c\x7d\x92\x98\x30\xb4\xe3\x02\x3e\x3b\x3e\x12\x08\xbc\x0f\xe0\x05\x65\x63\x96\x3c\xb3\xfa\x4c\x45\x08\x9d\x89\xe9\xe2\x17\xf3\x84\x16\xdd\x27\x23\xbf\x1c\x3d\x0a\x81\x16\xb6\x9c\x6d\x08\x70\x95\x22\x21\xfe\x98\xb2\xf6\x18\x97\x93\x9e\xea\x1d\x42\xab\xa1\x21\xc6\x27\x81\x2a\x36\xbc\x4b\x2b\x1c\x1f\x37\xc1\x93\x7a\x76\x90\x59\x16\xd3\xc6\x5c\xfc\x4e\x45\x9b\xd9\x23\x20\x4e\xd4\x10\x10\xf2\x6a\xf1\x80\x24\x66\xc1\xf3\x87\xf4\x00\xa2\x8f\xc7\x3b\x0a\x82\x7c\x4f\x25\x82\xa3\x34\x29\x86\xf9\x5e\x65\xcb\x3b\xb7\x41\x17\x2f\x6a\x1b\xad\x5f\xf9\x0d\x46\x4a\xfd\x90\xc6\x09\xf6\xc2\x6f\xd2\x4d\x21\x6c\x98\xe9\xf8\x58\x9b\x63\x23\x5c\x3a\x1b\xa5\x22\x82\x98\xed\x34\x94\x7a\xc2\x74\x64\x7b\xa0\x16\x03\x6b\x79\x43\xe9\x88\xde\xd0\x9e\xfe\x36\xb3\xc5\x8c\x17\x88\x60\x16\x8a\xf6\xfb\x46\x59\x76\x77\xcd\x6f\xec\xa5\x97\x60\x8a\x6b\x73\xcc\x62\x97\xcf\xf9\xb6\xef\x59\x25\x42\x16\x4e\xba\xa8\xee\x8b\x4c\xb6\xba\xa1\xf3\x81\x97\xb5\x78\xfa\xe9\x9f\xa3\x41\x23\x5e\x88\xea\xcf\x1e\xe8\xd0\x13\x74\x62\x5b\x4e\xc2\x7e\x2f\x19\x90\xe3\xdf\x5b\x1d\xcf\xfb\xfb\x1a\x96\x21\xa9\x5b\xd3\xcb\x70\xe6\x5c\xbf\xfe\xab\x3c\x30\x59\xb8\x52\x28\x88\xe5\x0b\x90\xb9\x09\x16\xa4\xa3\x2b\x2c\x4b\x00\xd0\x82\x50\x37\xe2\xc0\xd9\x8e\xf7\xf1\xfc\x08\x56\x88\x92\xc7\xd1\xd8\x45\x48\xbd\xa5\x14\xdd\xb8\xc9\x4c\xd1\xdd\xa1\xc7\x37\x88\xe0\x09\x52\x34\xb6\x18\x4c\x92\x2f\xa2\x42\x83\x89\xf8\x45\xee\x9a\xa3\x7a\x80\x4a\x02\x8b\xd9\x05\xad\x97\x5e\x12\x39\xbf\x4e\x6b\x5e\xf6\xd5\x27\x36\xca\x1d\x1b\x4b\xce\x29\xa8\x0f\x89\xac\x55\x39\xf6\x9c\x60\x6b\xb9\x9a\xf2\xe0\x73\xd0\xc7\xbe\xc9\x46\xb9\x16\xf2\x3d\x17\x28\xab\xcf\xba\x28\xe7\xf3\xfb\x16\xdb\x7d\xd2\x6e\x52\x05\x49\x6c\xd7\x92\x66\x4a\xc4\xd4\x4f\x63\x47\x2e\x43\xdc\xff\x21\xbe\x9b\x4f\xd4\x90\x59\xb3\x49\xb1\xb7\x7c\xe8\x28\xce\xcd\x6c\xa8\x26\xd6\xa6\xaa\x1f\x9e\x54\x6e\xd2\x6c\x0c\x8e\x6a\xff\x65\x4c\x14\xc1\x6b\x78\xc7\xd9\x6f\x7b\x11\xb3\xbb\x8f\x75\x1e\x53\xb2\xce\x71\xba\x56\xae\x3f\x9a\xd3\xa9\x08\x9e\xf4\x43\x80\x73\x31\xc7\x85\x4f\x6a\x5d\xa4\xfd\x87\xda\x93\x9c\xf7\x12\x57\xbc\x50\x0b\xf2\x13\xca\x59\x3a\x8f\x5c\x05\x48\x00\x4a\x50\x21\xe6\xe3\x8e\x06\x35\x0d\x6c\xf6\x78\xf9\xa5\x6c\xc3\x1f\x28\x5d\xa7\x63\x18\x6f\xe2\x2f\xa0\x4a\x66\x17\x15\xe4\xf4\xae\x92\x38\x62\xcb\x29\xbc\xfe\xbd\x1b\xce\x18\xe0\xb7\x3f\x85\xbb\xe3\xba\x15\x66\x8e\x58\x60\xd1\x50\x72\x22\xdc\x07\xbc\x53\xae\x2f\x53\xdc\xe1\x24\x07\x0b\xce\x79\x92\xbb\x72\xee\x75\xfb\x0f\xa1\x78\x77\xf5\xf1\x0d\xed\xbc\x1d\x78\x5c\x58\x2f\xca\xcd\x78\x6c\xa1\x76\x79\x40\xea\x99\x67\xe8\x07\xc4\x33\xec\x11\x05\x1b\xc8\x8a\x19\x0d\x57\xb9\xa9\x0d\x3a\x7e\x7f\xaa\xe4\xb9\x6e\x68\x57\xce\xd4\x8c\xd4\xeb\x39\xae\x5e\xcf\x71\x95\x47\x1e\xb6\xbd\x87\xbd\x11\x41\xd6\xee\xf8\x9a\xf8\x43\xc0\xab\x08\x9f\x5e\xc1\xc5\x1e\xe2\xfa\xb0\x18\x83\xb7\x9c\xae\xf0\xa7\x41\xfe\x55\x32\xa1\x4b\xcc\xb9\xbe\x89\xc5\x0a\xdf\xb6\xad\x10\x2d\x9f\xd8\x50\x36\x50\x3f\xd3\xd9\x19\xed\x2d\x2d\x2f\x11\x00\x1d\x85\x7d\x3c\x9e\x6f\x61\x58\xf0\x89\x03\x74\xd8\xc3\x61\x3c\xc9\xa3\xd5\xa8\x80\xd5\x21\x06\x07\x73\x87\xa4\xcc\xd0\x72\x2a\x2f\x0c\x7d\x44\xc5\xf4\xa4\x82\x3b\xd9\xd1\x78\x68\xf2\x28\x6f\x29\xa1\xf2\xb9\x0d\x25\x61\x3e\xd7\xf1\x0f\x70\x60\x7a\xe8\x0f\x63\xb7\xbb\x46\x1c\x67\x2c\x5d\xdb\x4a\x55\xf6\x84\x56\x43\xf9\xd7\xea\xc7\x32\x6b\xc2\xa1\xd4\x9d\x9d\xad\xbe\x6b\x69\x6e\x06\xfe\x95\xc6\x51\x62\x1f\xa6\x95\x59\xb0\x64\xbe\xff\x7c\x99\x9a\x16\xc2\x36\x50\x96\x56\x37\xa6\xda\x93\x93\x6e\x9f\x19\xd8\xc0\x48\xb0\x0a\x3a\xe6\x00\x32\xb0\x73\xf4\xfb\xfc\x5d\x3c\xd4\x71\x35\xb7\x41\xf5\x17\x90\x47\xc5\xdd\x29\x1b\x3d\x42\xbf\x24\x61\x3b\xbd\x22\x20\x86\xce\xc0\x71\xd8\x29\xd8\x97\xef\x03\x41\xf9\x16\x2e\x82\x65\x0e\x03\x5f\xed\x86\x89\x2c\x4a\x34\xe7\x95\x3a\xe4\x2d\x0c\x7e\x54\x4a\x4e\x4c\x15\x40\xe1\x0a\x96\x46\xa7\xa9\x56\xbe\x5b\xc1\x1d\xab\x04\xf1\x9a\xcb\x6c\x06\x59\xd4\xeb\x49\xec\xe3\xdc\x2d\x5c\x40\x7c\x13\x83\x4c\x3a\xce\x3b\xd3\x1c\x09\xa1\x6c\x1c\x43\x3b\x64\xc9\xb1\xbe\xe8\x0b\xf9\x64\xfa\x94\x87\x3c\x67\xe9\x38\x8b\x50\x74\x24\x11\x1e\x60\x1e\x84\x4d\xc1\xd0\x47\xdc\x1f\x87\x07\x81\xef\xc5\x9f\xd5\x00\x83\x8d\x26\x70\xee\xd0\x66\x73\xd8\xd1\xb1\x1a\x40\x41\x12\xcf\xf9\x2e\x14\xee\xb0\x2b\xb6\x3a\xe5\xaf\xbb\x6d\xc3\x55\x2a\xee\x2b\xe0\x63\x94\x13\x67\x8e\x7e\x13\x2b\xe3\xb5\x40\xb1\x6d\x8e\xf0\x45\xb3\xef\x59\x43\xb6\xfa\x6c\x9b\x94\x46\x5c\x8e\x8b\x64\xe9\x5f\x06\x0a\xb7\xff\x2f\x6b\x99\xd3\xc2\x42\x3b\xb6\x26\x4b\xd8\x84\x4f\x0a\x51\x4a\x98\x62\xb3\x41\x94\x4d\x4f\xfc\x56\x6d\xb2\xf3\x71\x05\x3a\x9b\x16\x29\x5e\x3b\xb6\x5e\x54\x82\x78\x4c\x61\xb0\x60\xd1\x3a\x55\x4b\xd4\x5e\xd8\x7f\xa8\x1d\x9a\x38\x96\xdb\x92\x72\x96\xae\x6d\x39\x1f\xbc\xa7\x13\x3c\x40\x60\x01\x6f\xa0\x88\x83\x25\xe4\x08\xc1\x07\x7c\x37\xc3\xa1\xcf\xbb\x76\x8f\xd6\x7c\x60\xa5\x0a\xdd\xd0\x04\x1e\xf4\xdf\xe2\x49\x6a\x99\x77\x8c\x0d\xd6\xaf\x16\x63\x22\xa7\x2f\x9a\x0a\x4d\x03\x33\x9e\xad\x31\xf9\xa4\x66\x0d\xfa\xf3\xed\xd8\xac\x5a\x86\xb1\x8a\x33\x1c\x7d\x82\x4f\x94\xde\x56\x1c\x47\x48\xb0\x50\x60\xe0\x91\xca\x27\x8d\x86\x68\x94\x3e\xc4\xeb\xa8\x7a\x0a\x01\xce\xf7\xa6\x77\x75\x7c\x87\xe9\x46\x6d\x6c\x7d\xce\x15\xfe\xd9\xc0\x0b\x6b\xdb\x96\xee\x31\x6c\xd5\xba\xdb\x24\x85\x0b\x64\x9b\x0b\xd0\x70\x2b\x68\x96\xf1\xb1\x42\x7c\x0c\xe2\xa8\x78\xa5\xa5\x94\xd1\xef\x21\x9a\xe4\x93\x9a\x1f\x9a\x5b\x11\x0e\x13\xa8\x84\x03\x4c\xcc\xde\xaf\xe3\xe2\xf8\x44\xe9\xa9\xe4\x63\x13\x46\x5c\xd2\x79\xd6\xc9\x8f\xf9\x4d\xea\x84\xd2\xd3\xcd\xc7\x36\xe9\xed\xf5\x3b\xdb\xec\x86\xd6\x9e\xa0\x21\x80\xb7\x7e\x63\xba\xfb\xb3\x4e\x92\xc2\xa3\x2b\x1f\xe9\xa8\x9e\xe8\xb1\x40\x99\x16\x41\xd7\x12\x3b\xe1\xb7\x1b\xa5\x8e\xad\xe9\x45\x31\x2c\x6b\xc4\x45\xd4\xb7\x47\x2e\x34\x2d\x47\xa3\xb4\x3b\x83\xc1\xeb\x2a\x73\x8b\x12\xac\x82\xac\x87\x90\xe1\x58\x93\x20\x41\x04\xb7\x4c\x07\xe0\xc1\xc8\x97\xe5\xbc\x21\x1b\xee\xa6\x80\x9c\x7b\x07\xf9\xb3\x8a\xe4\x77\x56\x15\x20\xf3\x74\x52\x0c\xad\xc9\x19\x2a\xe0\xc4\xe0\x95\x8e\x90\xfa\xe3\xa1\xed\xf7\x23\x1b\x33\x9d\x41\x18\x6a\xca\xb0\x74\x53\x55\xb2\x32\x53\x0c\x6d\xf6\xb0\x4f\xa4\x38\xbf\x13\x02\x1b\xfd\x20\xb0\x0d\x77\xb1\xce\xa3\xf9\xde\x42\x38\x0a\x08\xf7\x75\x2a\x45\xf2\xea\x4c\xc1\x2c\x76\x62\x38\x16\x0a\x5d\xa4\x8a\xcd\x39\xe0\x78\x47\x81\x02\x93\x6b\x94\xa6\x8d\x09\x5c\x58\x58\xa8\x3b\x8b\x15\x8d\xe2\x07\x5e\x53\x9d\x86\x93\x53\xbd\x50\x94\x5f\x2f\x3e\x36\x8e\xb4\x6f\x0b\x9b\x8d\xa2\x04\x35\xd5\x67\x9d\x60\x1f\x5d\x17\x16\xa2\x97\xe8\x0b\x51\x01\xfe\x50\x07\xf2\xef\xa8\x5a\x4a\x1e\x25\x03\x33\x4e\x33\x70\x79\xb1\xd3\xdc\x53\x9a\xb1\xda\xaa\xe5\x14\xbe\x1d\x38\xb5\xaf\xd4\xda\x19\x0b\x0b\xed\x3c\xed\x33\x35\x4a\x4a\x95\x2d\x27\x3f\x76\xa9\xc9\xfe\x78\x1c\x9b\x28\x99\xf1\xa8\x04\x14\x47\x45\x98\xb0\x4c\xbb\xa5\x63\xe4\x0b\x69\x49\x9a\x95\xaf\x39\xc1\x94\xc5\xd4\xda\xbd\xe1\xa7\xd9\x6e\x95\x71\xf5\x0d\xfd\xed\xac\x82\x44\xdf\x51\x62\x64\x67\x03\x5f\xf7\xe2\xb2\xb3\x98\xa9\x34\xf4\x18\x4c\x0c\xc1\x42\xac\xf9\x5f\x86\xe6\x10\x06\xc7\x05\x1a\x28\xb2\x5f\x36\x50\x0b\x47\xb6\x30\xe3\x21\x43\xf8\x91\x8b\x9e\xc7\x10\xe4\x93\xe9\xc3\x6e\x4d\x9a\x0c\x15\x9c\x99\x5b\x79\x7c\xd2\x54\x60\x1e\x45\x63\xe9\xc0\x62\x29\xe7\x58\x97\x4f\x14\x57\xe1\x79\x96\xd0\x77\x8a\x05\x8a\x81\xe7\x24\xb4\xc6\xe9\x64\x30\x5c\xb1\x76\x9c\xf3\xae\x22\x02\xce\x4a\xd6\xfa\x82\x9a\xa2\xa6\xdf\xb7\xe4\x9f\x02\x59\x0f\xf4\x68\x5a\x1d\xda\x6b\xb1\xa8\xef\x22\x4d\x3b\xd1\xbf\xf2\xeb\x69\xdf\x9a\x0c\x7d\x5c\xf1\x4f\xaf\x40\x68\x5d\x87\x2e\x1c\xa6\x29\x1a\xb2\x8e\x77\xac\x29\xc3\x3b\xdf\x54\x99\xb1\xf4\x52\x8a\xe7\x31\x2b\x2e\x63\xa9\xe5\x93\xa6\xb5\x72\x92\x83\x3c\x88\x86\x18\xb4\xf6\x5c\x72\xb9\x2c\x1c\xf7\x37\x6a\x2f\xf6\x85\xe5\x7d\xed\x7c\xd5\x26\x85\x5d\x69\x69\xe4\x1f\x13\xe7\xf9\x44\x4b\x3a\xd9\xf8\x21\xef\x15\xfa\x6d\x85\xa5\xde\xbb\xa1\x34\x2f\xb7\xb8\x1c\x83\xe5\x1d\xfb\x91\x84\xa4\xf4\x8c\x30\xd2\xd9\x5d\x58\xdc\xc0\xca\xcc\x47\xf5\x3a\x5f\x74\xaa\x78\x34\xce\x60\xf2\xff\x54\xc7\x17\x11\x7b\x36\x89\x6c\x6f\xd6\x97\x02\x7e\x5b\xb5\x0b\x6f\x51\x3a\x2c\x95\x3a\xfa\x06\x6e\xfd\xd4\xf6\x8b\xf9\xfd\xed\x70\x18\xd9\xbe\xaa\xd3\xdd\x52\xf6\x87\xb7\xa6\x5a\x3b\xc6\xe4\xae\xe7\xef\xc4\x20\x96\x15\x45\xd2\x61\xd8\x4f\xa9\x1c\x7c\x38\x19\xd8\x87\xe9\xc6\xb1\x4c\xbc\x15\x28\xe3\x86\xb7\xa6\xbe\xa8\xf9\xae\x86\x6b\x43\x2a\x17\x33\xfd\x8f\x14\x72\xe9\x5b\x08\x04\x99\x9e\x81\xba\xa9\x68\x1c\x38\x0c\xdd\x67\x7e\x30\xf5\x79\xd2\x97\x9e\xa0\x88\x48\xe0\xfc\x1e\x8c\x90\x17\x69\xc6\x68\x61\x29\xd6\x70\xe9\x91\x4f\x94\x14\x66\x94\x80\xf6\x6d\x93\xd0\x62\x3b\xe3\x96\x2d\xd6\x01\xe9\xdf\xea\xa4\xae\x6b\xa8\xbb\x2e\x1e\x05\xbf\xcf\x51\x3f\x72\xac\x9b\x58\x8e\x11\x29\x9f\xd3\x70\x26\x04\x3b\xfc\x57\x0a\x58\x3e\x34\xe3\xb1\x25\x70\xbf\xb7\xc4\x78\x97\x1e\xbf\x18\x3f\x97\x4f\x12\x03\xad\x2e\xbb\x5a\x8e\x75\x1b\xf7\xd2\x51\xab\x22\xd7\xaf\x10\x8d\x4a\xe6\x62\x32\x18\xc0\x12\xb5\xe5\x65\x3e\xa7\x4a\xff\xb3\x41\xe6\x6f\x7f\xdb\x24\xc5\x30\x4d\xd6\xa9\x28\x23\xb5\x0d\x15\x25\x5f\x72\x70\xe8\x74\xd5\x66\x60\x91\x7b\x85\xb9\xdb\x4a\x1a\xf1\xf6\xf4\x49\x45\xd4\x0e\x57\xe2\x09\xc9\xf4\xd3\x9b\xe6\xee\x09\xe5\xba\xd2\x49\x51\x0d\x70\xd8\x35\xa4\xd9\xfa\x03\xde\x4f\xf5\x2e\x64\x0b\xb6\x68\x37\x43\x88\x07\x75\x44\xe4\xfe\x2c\x9b\xa4\x38\xff\x12\xf7\xbc\xa9\x76\xd2\xd7\xeb\x02\xa3\xcf\x1d\x6c\xe7\x93\x6c\x1c\x4f\xb0\x0a\x02\x72\x88\xaa\x02\x1f\x6b\xa8\x74\x9a\x98\xc2\xcc\xf8\xce\xc6\x1b\xf4\x87\xee\x76\x1c\xc5\xfc\x08\xaa\x50\x3c\x84\xcc\x68\x46\xf5\x83\xce\x29\xe7\xec\xdb\xc4\xc5\x60\x77\xa5\xba\xa6\xff\xf2\xd2\x67\xdb\xfd\x98\x38\xd8\xe8\xb3\x60\x1b\xdf\x52\xdf\xb0\xa9\x5d\xe4\x55\x9f\xa5\xa0\xfe\xf9\x60\x8f\x5f\xe9\x20\xb9\x82\xe5\xf5\x4c\x50\xa9\x16\xd3\xd4\xe1\xbf\x52\xa8\x84\x33\x53\x15\xf1\x9d\x57\x62\x50\x99\x0d\x6d\xb4\x8a\xa6\x92\x4a\x2f\x3d\x3a\xf9\x92\xca\x21\xe2\x34\x34\xf1\x5e\x7a\x00\xe2\x9a\x47\xf7\xe2\xd8\x7a\xcb\xfb\x38\x63\xf9\x3e\xdd\x0b\x9a\x1e\xdc\x40\x16\x77\x7b\x25\x65\x7c\xb1\x7a\xf7\x07\x44\x0c\xee\xfb\x81\xef\xd7\x9a\x7c\x92\xd9\x39\xc5\x68\x40\x6a\x85\x11\xf1\x00\x05\x2a\x14\xf1\xfd\x37\x4f\x74\x94\x36\xdb\x03\x64\x54\x89\x92\xc4\x7d\x95\x74\xac\x98\x2c\x1a\x69\xb1\x28\xcc\x08\x51\x8e\x52\xb6\x52\x69\x66\xe2\x18\xe0\x40\xe7\xd4\xee\x50\xeb\x37\x75\xbd\xb6\xd5\xf9\xb8\x6a\x0a\xe9\xc0\xce\xf8\x56\xc2\x7d\x05\x81\xbe\xa0\xc3\x8a\xcb\x0e\xce\x5d\x44\xb6\xb7\xc7\x73\x9a\x2e\x2a\xab\xda\x73\xd3\x8a\xf0\x33\x5d\x01\xd6\xd0\xc7\x95\x37\xd6\xe9\xa9\xef\xb4\xd5\xa1\x3d\x87\x9e\x6b\x8f\x6d\x91\xa5\xb1\x4d\xe1\xef\x84\x4d\x8d\x81\x10\x7c\xa2\x21\x80\x93\x7e\xbf\x0c\xf8\x5e\x58\xde\xe7\x9b\x1e\x8b\xde\x41\xae\xfc\x2d\xfe\x77\x84\x05\xe2\x26\xb7\x73\x57\x7b\x01\x75\x4f\xf8\x45\x28\xbd\x61\x2f\xb5\xd1\xd0\x5a\xed\x9a\x38\x4e\x0b\x05\x1e\xfb\x6e\xe0\xc1\x63\xdf\x75\x0d\x10\x12\x82\x9e\x75\x44\x87\x7f\xfc\x58\xc7\xb3\x37\xae\xeb\x80\x6f\x76\x43\x63\x5b\x7d\xd0\xe5\x7c\x40\x68\x7d\x95\xd2\x27\xad\x6f\x7c\xa2\x86\x50\x37\xcd\x6c\xb2\x47\xe9\x7f\x1c\xc1\x4f\xe0\xaa\x8e\x07\x5a\xc8\xed\x38\xca\x95\x62\x5b\xdd\x72\x4a\x1a\x1f\x62\x3e\xf2\x17\xb8\x95\x38\x8c\xcd\xb8\xc8\xcc\xb8\xe5\x1b\xfa\xe8\x44\xc8\xfb\x6c\x50\x83\x18\x4f\xb2\x71\xea\x20\x9d\x8d\xb6\xbd\x8f\x3a\xae\x40\xfc\xff\x72\xf6\xe7\x41\x72\x9c\x69\x7a\x18\x0e\x54\x35\x00\x12\xe0\x4d\xce\xec\xa1\xdf\x4f\x5b\x63\xaf\xc4\xb0\xc5\xa0\x14\xd6\xf1\xc7\xda\x11\x59\x06\x7a\x87\xc3\xf6\x4e\xb3\x0d\x62\x40\x89\xe1\x08\xf3\xeb\xac\xaf\xab\x72\x3a\x2b\xb3\x98\x99\xd5\xcd\x66\xf8\x0f\x45\xd8\xe1\x50\xd8\x0e\x85\x43\x52\xec\x3a\x6c\x87\xed\x95\x64\x87\x25\x6b\x43\xda\xd1\x5a\xde\xd9\xd5\x2a\x6b\xce\xbd\xe6\xe0\x3d\x04\x6f\x80\xb8\x81\x46\xe3\x68\x5c\x0d\xa0\xe1\xc8\xf7\x79\xdf\xef\x7b\xb3\x2b\x69\x6f\xf8\x2f\x66\x12\x5d\x55\x79\x7c\xdf\x7b\x3e\xef\xf3\x14\xc2\x80\xdb\xa4\x99\xeb\x13\x99\xa1\x49\x7a\x64\xb7\x5b\xfe\x9a\xd1\x50\x91\x16\xa7\xf7\xc4\x8b\x51\x58\xc5\x6c\x49\x12\x55\x49\xee\xe1\x83\x9e\x31\xc6\x75\x31\xbf\xc0\x41\xad\x9a\xcc\x95\x2c\x79\x9c\xa2\x36\x1c\x44\xeb\x03\x26\xf5\xba\x0a\x7b\x8a\x74\x34\xa2\x92\x55\xf5\x82\x9a\x8a\x63\x6a\x64\xc0\xc6\x48\xbc\x1d\x37\xa8\x1b\x73\x59\x57\xd4\x3f\x22\x4d\xb9\xdf\x4f\x43\xbf\xa2\x2a\x10\x88\x2c\x91\x34\x7e\x4b\x87\x3e\x2a\xa7\xe2\x34\x01\xf5\xf1\xcb\x88\x2b\x5d\x66\xe0\x27\x80\x27\x78\xf1\x08\xdf\x19\x1b\x87\x2f\xd8\xfa\xc2\x12\x0c\xf1\xf5\x2d\x71\x79\x48\x5c\x19\xfd\x9a\xf8\x38\x25\xd6\xd9\x5b\xb1\x59\x11\xe5\x36\xcb\x01\x93\x81\x3d\xbc\x13\xd4\x70\x12\x87\x0f\x3a\x9c\x04\x5d\x28\xff\xd1\x54\x99\x69\x6e\xee\xb0\xf8\x70\x87\xcb\x60\x19\x04\x7a\x0c\x22\x89\xb0\xb3\xc6\x42\xea\xa6\x26\x0b\x6d\x8c\x58\xce\x45\x52\xd5\x8f\x09\x80\xc5\xe3\x66\x4d\x18\x8f\xc9\x1a\x49\x5b\xd1\xa7\x75\x9f\x2a\x95\x0e\xdb\xff\x8b\x9a\xbd\x19\x0b\x8c\x8f\xd5\x06\xcd\x4c\x2f\x4a\xb1\x1b\x50\x76\x44\x9b\x98\x8f\x15\x98\xd8\x54\x71\xf6\x8a\x23\x41\x7d\x91\xdf\x0a\xc8\x9b\xf8\xd8\xcd\x33\x26\x51\xb8\x9c\x98\xa1\xed\xb5\xbd\x68\x0d\x4f\x29\x4a\xdc\xa3\xaa\x70\xb7\x15\x03\x46\x18\xdb\x15\x9b\xc5\x6b\x3b\xe8\xe8\xb4\x54\x86\x58\x32\xb3\x92\x46\xe0\x26\xc2\x98\x0f\x02\x7f\x2d\x86\x08\x24\xc3\xb7\xf0\xc3\xf0\xbb\xb5\x4e\x22\xf4\x38\x64\x50\x40\x59\x2d\x93\xdb\xde\x3e\xd8\x26\x5c\x22\xba\x03\x22\x8f\xee\x7b\xa5\x57\x94\x2a\xcc\x2d\x32\xf0\x0a\x2c\x27\xdd\x72\x86\x25\xc3\xda\xdf\x6d\xb0\xdd\x55\x2c\x16\x15\x16\xa5\x02\x27\x53\x5e\x7d\x81\xe0\x08\x3d\xc2\x0c\x15\x12\xa9\x16\xee\x4c\x28\x0f\x1d\xea\x14\x23\xd3\x52\x48\xbd\xf3\xc4\x48\x29\xbc\xf9\x0d\x7e\x63\x64\xb2\x65\x21\xd5\xa9\xcd\x24\xc8\x3a\xd4\x29\x24\x3a\xb4\xc8\x14\xf7\x74\x69\x1d\xe0\x41\x7c\x4e\xc6\x02\x2f\x77\x0b\xc5\x52\x14\xd5\xff\x5c\x57\xe5\x83\x6d\xf4\x45\x45\x91\x9f\x2e\x13\x55\xa2\xdd\x5d\xff\x22\xdb\x13\x8d\x3c\x3f\x05\x7d\x23\xf8\x88\xff\xa1\xf4\x0d\xdb\xdf\x87\xeb\xa2\x77\xf2\xf6\x63\x20\x25\x46\x95\xf5\x94\x62\x18\xbe\x4d\xc9\xa4\x13\xd3\xd2\x0b\x49\x75\xf4\xef\x36\x21\x64\x8b\x70\x38\x6a\x79\x60\x1c\x53\x1b\xf2\xc9\x54\xee\x7f\x68\xb6\xb3\x14\x15\x68\x08\x3a\x25\x57\x97\x18\x5d\x55\x35\xee\xb3\x58\x83\xf0\x67\xed\xae\x14\x1b\x62\x5b\x0c\x4c\xdc\xf6\xf5\x17\x26\x05\xc7\x43\x85\x2a\x37\x2c\xe6\x0d\x15\x74\xe4\x51\x9f\x74\xe2\x67\x8f\x78\x49\xe1\x05\x7f\xa2\x09\xc7\x69\xdd\xfa\x5c\xcf\xb7\x8b\xc7\x49\x0f\x81\xaa\x93\xc4\x74\xd5\x57\xa8\x8b\x20\x14\x6e\x81\x67\x40\x54\x30\x2b\x8f\xb2\x0d\xbc\x13\x93\x98\x93\xe9\xc0\x32\x9f\xc1\x9b\x96\xd6\x4f\x03\x88\x60\x90\xc6\xa8\x7c\x20\x47\xb9\xa9\x30\x15\x27\x34\x56\xe7\x82\x02\x20\xe7\x66\xdc\x8b\xda\xaa\xed\x7d\x8f\x23\x08\xdd\x15\x15\x47\xe2\xa7\x65\x07\x6b\xa3\xb4\x18\xd8\x82\xd0\xf5\x28\x4c\x3b\xcd\x3e\x51\x7e\xff\xcf\x2f\x3a\xeb\x65\xc7\x59\x3a\xb2\x26\x11\x46\x1a\x94\xd3\x79\x5c\x51\x9a\x82\x2a\xb3\xd9\x37\xf1\x5b\x64\xbc\x58\x3c\xe0\x13\xf9\xfb\x6a\x64\xf8\x11\xa4\x6a\x20\x98\xdb\xc2\x12\x40\xd5\x0e\x9c\xfe\x8e\xc3\xd8\xcb\x1a\x30\x69\x09\x50\x3e\xf7\x4a\x3f\x57\xba\xab\xfb\xe7\x1b\x26\xf1\xc6\xd9\x08\x7a\x9d\x5c\xad\x6f\xc2\x2f\xfb\xc0\x20\xb1\xfd\xd8\x86\x05\x58\x2b\x19\x59\x81\xda\x86\xc0\x2c\x7c\x78\xf2\x39\x99\x36\x3e\x56\xc3\x57\x61\x9c\x56\xbf\x37\xa3\xe5\xc4\x4e\x29\x12\xb7\x8b\x0a\x8a\xc6\x31\x3c\xff\xd1\x4e\x22\x98\xb9\xb9\xce\xd1\x83\x0b\x4f\x90\xe1\x00\xd2\x12\x09\x2c\xea\xe7\xcc\x0e\x8f\x2f\x2a\xd4\x32\x43\x3f\x13\xa9\x13\xe2\x15\x78\x67\xec\x7a\x9e\x05\xd5\x75\x2b\x2e\x4f\x39\xae\xe3\x79\x27\xd7\x8f\xed\x81\x14\xe3\x47\x9a\x7b\x9a\xdf\x02\xd0\x62\x1f\x50\x14\x03\xc7\xf2\x16\xa2\x78\x14\x48\x7e\x1d\x05\x75\x7c\xd7\x65\x7a\x57\x1a\xa5\x8b\xcc\xf2\xb2\x6a\xf7\x65\x31\x23\xf8\xa4\x72\xea\x71\x94\x5c\x7a\xe0\xf9\x77\x5f\x7a\x58\xcc\xd3\xd8\x16\x5c\xc1\x71\xd8\x43\x47\x99\xbe\xee\x66\xa0\x57\x33\x33\x9a\x21\x56\x03\xe0\x0a\x01\x9f\x3f\xa6\xf8\x96\x8f\x05\xad\x97\x16\xb6\x4f\x2a\x8d\xde\xd1\xb8\x78\xc8\xb3\x92\x5f\x2f\x15\x8d\xc2\x3f\xc7\xe3\x70\x24\x7d\xbe\x85\xac\x85\xe8\x2e\x12\x8c\x0c\x0b\xf4\x51\x35\x88\x7e\x1e\xad\x7a\xc0\x08\x18\xe8\xe8\x3a\xd0\x4a\x75\xd6\xcb\xed\x9e\x28\x15\x40\xfc\x7c\xf0\x64\x7d\xa9\x1c\x79\xa1\x73\xe4\x05\xb2\xcb\xb8\xa0\xb6\x32\x51\x6d\x3d\x8f\x3b\x30\x49\x68\xe3\x18\xca\x60\x2f\xf3\x8d\xaf\x07\x7e\xca\x6f\x7d\xaa\xb5\x3f\x37\xf7\x62\x27\x2f\x32\x5b\x78\x4a\x5c\x87\xca\x72\x3c\x14\x1b\x1a\x30\xf2\x2a\xa6\xf0\xdb\x4a\xc1\xe9\x84\xc2\x65\x63\x4a\x4e\xc8\xcd\x76\x12\xe8\xcd\xcd\x75\x92\x94\xf2\x28\x84\x19\x9f\xd3\x9a\xe7\x63\xc5\x70\x31\x8c\xc2\x2c\x5d\x11\xf5\x55\x21\x8f\xa4\x65\xcd\x27\xf5\xda\x9d\x2d\x5a\x1e\xec\x77\x09\x8f\x5c\x90\x1b\x0f\xb9\xe1\xd5\xd1\x98\x55\x9e\xe0\x5b\xef\xe1\x2d\xb3\xb8\x81\xea\xba\xcd\x28\xe9\xda\x61\x9a\x26\x14\xd4\xc9\x38\x36\x7d\x46\x12\x17\xef\x76\x8f\xab\x18\x33\xcc\xc6\xc2\x63\x8d\xaa\xf2\x8f\xe0\x87\xf9\xa4\x32\x05\xd2\xe4\x0c\x0b\x13\x8e\x63\x93\xb1\x05\xe3\x1e\x3d\x59\x11\xe9\xd7\xbb\x91\x0a\x82\xcf\xb4\x7d\x24\xcc\xa5\x62\x64\xac\x5a\x0d\xe2\x46\x93\xbe\x4e\x27\x1c\x58\xaa\x38\xd0\xa5\x48\x6e\xa0\x20\x4c\x6f\x63\x07\xc0\xde\x4f\xf3\x81\x3d\x3f\x4f\x15\x58\xd3\x47\xa7\x42\xc6\xce\x5b\x7e\x04\x3d\xd8\x39\xef\x9c\x66\xf9\x1e\x58\x4a\xd7\x4c\xf4\xf2\xf3\xbc\xe7\x11\x31\x6e\xc3\xb2\xa0\x67\x06\x21\x5c\x3e\x56\xac\xdf\x4f\xaf\xd8\x7d\xf5\x19\x89\xe7\x5d\x06\x53\xd6\x28\x6d\x15\x8f\x58\x8b\xe2\x2c\x44\x40\xff\x28\xf0\x6d\xd9\x6d\x38\x24\x71\x8b\x4f\xa9\xa4\x30\xa3\xee\x61\xb5\xc6\xab\x8f\xba\x54\xc8\x8f\xb0\xb1\x14\x0f\xe2\xbd\xad\x40\x0b\x7a\x93\x8a\x6d\x48\xc4\x80\xb3\x47\x1c\x27\x4f\x75\xa1\x42\xc9\xe3\xab\x8c\xa3\x34\x4a\x8a\x7c\x9f\x87\x0c\xdf\x56\x18\xbc\xeb\xaa\xa0\x7e\x4e\xc9\xdb\x5d\x85\x67\x10\x35\x0c\x7a\x65\xb0\x60\x57\x02\xc5\x97\x7d\x43\x17\xce\x47\x26\x89\x72\xe1\x5a\xd3\xaa\xee\x92\x6e\x4c\x13\x67\xbc\xd8\xc9\xcd\x2a\x30\x0b\xe8\x51\xfc\xb8\xd4\x10\xd0\x9a\xa2\xbe\xa3\x2e\x1a\xe7\x4c\x2f\xa1\xc7\x7e\x65\xa2\x77\x7a\x8e\x6c\x41\x18\x04\xf8\x53\xd2\xe2\x55\x13\xae\xd3\xd3\x03\x92\xf6\x2e\x62\x14\x59\xc8\xbd\xab\x07\x27\xe0\xde\x06\x2d\x57\x1f\x2a\x20\x4d\xc5\x73\x05\x75\x14\x1f\xab\x99\xa1\x91\x49\x6c\x1c\x47\x6d\x2a\x6c\x89\xe5\xa6\x35\xc5\xc1\x0c\x23\x55\x84\x21\xa6\x01\xda\x33\xb2\xd9\x52\x9a\x0d\x5b\xea\x09\x9e\xd2\x03\x62\x5f\x88\xb1\xea\x99\x68\xd5\x28\x44\xd0\x19\xcd\xa4\x7a\xa6\x86\xec\x49\xa2\x62\x9f\x77\x70\xa7\x54\xff\x97\xe5\xdb\x51\x87\xb8\xa5\xb9\x4e\x2f\x04\x0a\xa5\xf3\x1d\xee\x71\x28\xdd\x97\xe7\x38\x3d\xf9\xd9\xd4\xac\x8b\x5c\xe0\x1a\x41\x04\x3c\xdb\xf7\x69\x55\x5c\x39\x5d\xad\x05\xbe\xba\x17\xbe\x3a\x83\xa7\x54\x13\xdf\x43\xc5\x0c\x12\x83\xa8\x55\x3e\xda\x55\x63\xc3\xc7\x9a\xc6\x73\x33\x5b\x44\x34\x11\xe1\x68\xb9\x36\x83\xd6\xce\x81\x72\x64\xe4\xef\x97\xfe\x02\x9e\x9e\xff\x33\x22\x92\xa6\x99\x0f\x67\x3b\x61\x9a\xc6\x6c\x93\x01\x30\xf8\x8d\xc0\xe3\x91\x7e\x43\x75\x5f\x32\x4b\x7d\x29\x59\x58\x82\xb0\xf4\xf8\x85\x53\x81\x47\x9a\xbd\x3a\x4e\x1d\x43\x88\xfc\x7a\xf5\x24\x61\x8d\x19\xa5\xc8\x27\x8a\x45\xf0\xc2\xd4\x06\x3d\x74\xa8\x93\x19\x96\x03\x80\x9f\x00\x9d\x10\x1f\xab\x29\x58\x3b\x8c\xf2\xdc\x48\xe3\xcc\xd5\x63\xb1\xc9\xa4\x38\xeb\x31\x3a\x4b\x36\x5c\x8e\x6d\xce\xe3\x1e\x32\x5a\xd8\x72\x74\xf7\x6f\xea\xa1\xb8\x69\x74\x0a\x0d\x87\x66\x85\x8d\x5b\x4a\x5c\xf8\xa2\x12\x1a\xbd\xd8\x30\x49\xfd\x62\x27\x1f\x2f\x0e\xa3\xa2\x10\xce\x1d\x44\x0f\x57\x03\x05\x81\x38\xa6\x3a\x35\x67\x15\x6b\x51\x2f\x1d\x2f\x56\x69\xd5\xec\x11\x07\xb4\xf3\x0c\x14\x77\x02\x1f\xc5\xdf\x29\x77\x66\x10\x95\x4f\x54\xf2\x0d\x2d\xff\x22\x2e\x06\xaa\x96\xd6\x4c\x93\x32\x4e\x0a\x9b\x15\xe9\x48\x51\xe6\x1e\x57\x94\xb9\xc7\xfd\x90\xf3\x6a\x34\x1c\x8a\xde\x83\x8b\xe1\x1d\x12\x82\x21\xab\xd2\xe5\x10\x53\x4a\xdd\x7a\x7a\x84\xf0\x6f\xf8\x6e\x3e\x6e\x1a\xc2\x5a\xb4\x71\x3f\x1a\x03\x05\x8d\xed\x7c\x57\x97\x1c\xef\xaa\xaa\xe7\x72\x14\xc7\x7b\x2b\x87\x02\x3f\x7c\x5a\xd1\x14\xc2\x53\xf1\xff\xd7\x32\x10\xc0\x5c\x08\xd0\x47\x03\x20\x2e\x3a\x98\xcc\x38\x81\xd7\x17\xc4\x19\xa2\x0a\xe0\x0d\xf9\xd8\xe9\x60\x8c\xb2\x94\x78\xed\x85\x49\x04\x45\xce\x99\x89\xef\xf8\xdc\x53\xf1\xcc\x81\x6e\x8d\x1c\xc9\x87\x19\x51\x92\xa4\x2b\xf8\xc5\x2f\x62\xb4\x6f\x58\xa1\x99\xcd\x0d\x77\xb4\x98\x8a\x9c\x1e\x81\xd0\x92\x3f\xe2\x60\x3f\x8b\xa6\xd8\x49\x0b\xac\x38\xa4\x2f\x4e\xad\xa8\xa3\x07\x17\x3a\xc3\x74\x68\x93\x82\x86\xb5\xf1\x18\x10\xed\x83\x96\x83\x8f\x1b\xb6\xcd\x42\xa7\x18\x64\x76\x15\x3f\x26\xe9\x1d\x6d\x06\x3e\x51\x38\xa2\x9e\xc9\x8a\xc5\xd4\x64\x3d\x4e\xed\x79\x18\x0c\x96\x7d\xe7\x64\xd8\xc0\x9a\xde\xab\xe3\x6a\x4f\x66\x39\xc6\xd6\x81\xdc\xdc\xc7\x35\x27\xec\xb5\xbb\x6a\x0e\xfb\xd5\x9f\x9f\x28\x31\x9b\xb7\xbd\x6e\xf1\x5f\xff\x8b\x53\xdc\x25\xd5\x85\x67\xe9\xd0\x24\x05\x14\xe3\xa4\x5a\x74\x5b\xb5\xe1\xa6\xc7\x4a\x67\x8f\x74\xc6\x49\xb4\x14\xfd\x3f\x69\xf3\x29\x96\x29\x4b\x1c\x43\x6d\x0f\x71\xbb\x02\xcb\xe0\x5a\x83\xae\xe2\xf3\x7b\xee\xe5\x25\xd6\xf6\x9c\x51\x6e\x1a\x0b\xf0\x6f\x39\xcf\x6d\x56\xb4\xd4\x90\x04\xe2\x96\x2f\x1a\x5f\xa4\x4e\x72\x11\x25\x7d\x74\x3f\x10\xde\xa0\x44\xca\xc7\x8a\xbe\x28\x87\x26\xbe\xaa\x6a\x9c\x52\xfa\x02\xa7\x5c\xef\x25\xd7\xcd\x5f\xf4\x1b\xb5\xc8\xc8\x6f\x06\x3e\xc1\x6a\xa9\xe2\x8b\xcd\xec\x13\xb4\x48\x84\xad\x8a\x0a\x94\x02\xab\x6a\x7b\xd1\xb5\x87\x27\x4a\x38\x0e\x7d\x51\x7a\x94\xbb\xff\xff\x28\x23\x02\x07\x74\x60\xe2\xd9\xae\xb6\x4a\x45\x1b\xf2\xbd\x52\x79\xd2\x63\x04\x7e\x41\xc5\xee\xad\xd2\x77\x80\x6e\x12\x98\xcf\x25\xb7\xae\x1e\x70\x05\x88\x78\x84\xe3\x3f\x4f\xe0\x0e\x8a\x66\xfa\xbf\x8c\x02\x13\xf5\x61\xff\xf9\xe3\x93\xd6\x57\x5f\xe2\xf8\xea\x2e\x8d\xd4\xd1\x07\xfe\xa3\x7f\xab\xab\xaa\x2f\x59\x54\x44\x61\x4e\xa0\x43\xbc\xfc\x3f\x04\x48\x5f\x21\x71\x64\x4c\xf6\x5b\x94\x9b\xf1\x5f\x29\x6a\x80\xbb\xa5\x62\x1c\xfc\x96\xaa\x72\xdf\x54\x18\xca\x9b\x35\xcc\x21\x8d\x1b\xf0\xa7\xb5\xb4\xe8\x7f\x17\x4c\x1b\x80\x2a\x49\xb2\x59\x14\x93\xc6\x4f\x4b\x3d\xc2\x0b\x0a\x7f\x34\x1d\xa2\x4a\x70\x35\x4e\x7a\x36\xa3\x74\x13\xfb\x00\xbd\x7c\x17\xec\x7b\x72\xc9\xf5\x26\xbd\x89\xd0\xc4\x61\xad\x1b\x83\x82\x32\x18\x6e\xf8\x58\x55\xfd\x87\x90\x20\xf1\x7c\xbd\xf4\x77\x52\x59\xf4\x51\x0b\xbc\x73\xbb\xd6\x7b\x9b\x77\x42\xca\xbb\x94\x16\xe3\x4d\x55\xee\xf9\xc6\xd1\x83\x88\xbf\x80\x71\xf9\x88\x1e\xaf\x53\x8f\x9e\x9b\xdb\x3e\xdb\x14\xeb\xe5\x66\x25\x4a\xfa\x0c\x5a\xe2\xa9\xd2\xc0\x77\xb9\xdf\x2b\x7d\xaf\xed\x03\x75\x2b\x61\x3a\x8e\x7b\x4f\x12\xee\x5f\x98\x94\x95\x2a\xf7\x31\x58\x37\xf8\x8f\x13\x8a\xf7\x84\x8b\xe8\x2e\x82\x3a\x2c\x7c\x9d\x1f\x04\xba\x6a\x7a\x96\xf2\x2f\xdc\xfb\x2e\x00\x8b\x11\x87\xde\xa0\xa5\x81\xef\xfa\x59\xa9\x90\x40\x00\xb3\x3a\xa9\x89\x43\x87\x38\xd8\xbd\x13\x28\xfe\xff\x6b\x48\xe5\x5c\x18\x5b\x05\x7f\xe8\x73\x9c\x55\xb5\x21\x14\xd2\x25\xbc\x55\xb1\xf2\x77\x6a\x23\x0c\xf9\xd8\xe6\x0f\xd7\x52\x46\xa7\x52\xb0\x8d\x7a\x94\x54\x33\xe9\x47\x6b\x2f\x52\xc8\x8f\xe8\x0a\x1c\x0f\xa3\xd3\x5d\x67\x3e\x11\xd8\x2c\x16\xf5\x46\x63\xed\x9e\xaa\x67\xcd\x10\x7f\x93\x4c\xae\xb4\xfc\x0f\x52\xac\x2d\x5c\x4b\x4d\x9e\x6f\xb5\x5a\x87\x5c\x7a\x96\x62\x8c\xf2\x65\x5b\x81\xe2\xbc\x58\x6f\x92\x36\x34\xab\x36\x4f\x87\xa8\x4b\x20\x29\x85\xe0\x3f\x1f\xbb\x58\x6c\xd5\xda\xe5\x9e\x59\x63\x97\x0e\x44\xdb\x4f\x03\x8f\x88\xfd\x69\xb9\xa3\x48\x5b\x85\x88\x5f\x7d\xa9\xf5\x45\xdd\x51\xd5\xc5\x33\x59\x91\xa6\x2c\x07\x80\x0c\xaa\xd4\xdd\x9e\x32\x78\xc8\xfb\x84\x71\xb2\xa7\x7a\x54\xac\x90\x4a\x76\x01\xb5\xaa\x99\x89\x47\x83\xdc\x41\xb5\x0b\x7e\xed\x3c\x3d\x4f\x91\x54\x9d\xd6\x6d\x0a\x07\x76\xe8\x98\x74\x98\xe1\x40\xc5\x34\x1e\xca\x4c\xaa\x1b\x26\x8b\x8c\xa6\xe6\x40\xc0\x24\x33\x81\x5e\xfc\xca\xae\xd8\x6c\xad\x18\x44\x49\x9f\xb8\xd7\x01\x0c\xd3\x14\x35\x3f\xd1\xf0\x3b\xb6\x99\x30\xc5\xbb\x26\xbe\x35\xb9\x0d\x8b\xcb\x8a\xda\x9a\xb1\x68\x93\x9b\x19\x42\x81\xe7\x6b\xf5\x36\xf9\x66\xba\xc6\x78\x49\x06\x87\x06\x8a\xb5\xe3\x7d\xcd\xe0\x76\x4d\x49\x7e\x9c\x6d\x10\x41\xa4\x58\x40\x42\x0d\xd4\x6c\x6e\xa8\x21\x98\x1b\x81\xae\x94\xa4\x49\x8e\xf2\xe9\xac\x2b\xbe\xd3\xe7\xf8\x44\x95\x28\xf3\xf1\xe2\x28\xb5\x89\x01\x89\x81\xa8\xc0\xd2\xe6\xe2\x13\x65\x0c\xfb\x02\x0a\x51\xad\xfd\x05\x0f\x85\x70\x2a\x87\x10\x01\x45\xcc\xfe\x14\x70\xbd\x52\x72\xf1\xd0\xc1\xf3\x5a\x16\x2e\xea\x8f\x33\x4b\x4d\x61\xac\xb4\x9f\xd2\x1f\xc2\xa5\xa1\x8d\x2a\x9a\xa0\x64\xea\xb4\x86\x13\xdc\x79\x1b\xfd\xca\x69\x41\xa7\xa1\x01\x3b\x13\x79\x12\xb4\xb4\x6f\x2a\x1a\x99\x9b\xaa\x4f\x9a\x45\xe1\x7e\x15\x87\x1c\xa3\x9e\x01\xf3\xaa\xa2\xc4\x88\x86\xd9\x69\xfa\x3c\x39\xf6\x03\xbf\x84\xdf\x75\x92\x50\x1e\x32\x83\xfa\x36\x36\xef\x16\xa2\x18\x98\x45\xa6\xdb\x76\xb5\x4b\xcf\x09\x76\x31\xf8\x92\xa6\xa5\x5c\xb1\x59\xce\x7c\xdb\x87\x0f\xd6\x84\xb1\xa5\x2f\x2c\xfc\x18\xab\x11\x93\x57\x22\x9e\x81\xa8\x06\x1f\x37\x0a\x6a\xe6\x89\xe9\xb3\x01\x61\x9b\xac\x00\x01\xef\xab\x69\x97\xa2\xda\x65\xfd\x58\x74\xfc\xc5\x98\xd3\x45\xf3\x89\xc2\x98\x98\xc5\x6c\x3c\x2a\xe2\xb5\xb6\x5f\x98\x9b\x58\x4c\xb0\xae\x60\xa0\x40\x6d\xf6\xe3\x69\x54\xf0\xa1\x4e\x68\xc6\x39\x72\x58\x04\x08\xb7\x35\x15\xf5\x6d\x17\xee\xb2\x3a\x8c\xa2\xf1\x3b\xa3\x02\x93\x33\x35\xaf\x9f\xf5\x6d\x6f\x8f\x17\xa6\x3b\xa7\x0b\xb6\xe0\x76\x95\x19\x78\x3f\xc2\x74\xad\x96\xa8\x36\xd0\x78\x54\x29\x5b\x68\x13\x30\x08\xa1\xad\x74\x22\xf0\xd8\x85\xe9\x09\x99\x43\x87\x3a\xb1\x47\x30\xe1\xc9\xf1\x44\x09\x9f\x28\x48\xe9\x28\xcd\x8a\xcc\xac\xb9\x11\x6c\xad\x00\x23\x9e\x79\x1a\xc6\xd2\xe9\x65\x36\xcf\x87\x66\x59\xd8\xcd\xdd\x2c\xa5\xd7\x55\xd7\x12\x55\x85\xc9\xfa\xb6\x98\xf1\xa1\xc8\xf9\x9a\x96\x55\x65\xab\x5d\x18\x70\xf8\xa0\x1b\x40\xf1\x58\x95\xc4\x0c\xed\x5e\xba\x1f\xc4\x0e\x3f\x0d\x54\xb9\xe4\x6a\xa0\xc2\xa6\xef\x53\x20\x81\x05\x89\xc8\x85\xd5\x92\x55\xe9\xd2\x13\xd8\xd0\x7d\x08\xb6\x01\xc6\x82\x37\x10\x9f\xb8\x5a\x6d\x98\x99\x45\x05\x9d\xbb\xa9\xa0\x73\x37\x55\xff\x79\x68\xb2\xe5\x1c\x5a\x5c\xdc\x34\xa4\xdf\x65\x5c\x62\xa0\xb8\xd6\xb7\xe0\x0b\x44\xd0\xdb\x73\xdb\xfd\xde\x54\x0a\xfe\xfc\x3c\xe1\x65\x58\x13\x07\xef\x1d\xee\x8a\x8f\xb5\xd4\xbf\x4d\xd6\x08\xde\xea\xd0\x62\x3c\x3b\xc2\x0a\x99\xb8\x04\x3c\x61\x44\x4a\x82\x6e\xa7\x27\x8a\x5c\x97\xb5\xc1\x98\xd0\x66\xaa\x98\x76\xe4\x85\xce\x4a\x5a\x80\x1b\x0c\x11\xcf\xee\xae\x92\xf2\xc4\xea\x11\x45\x4e\x0f\x23\x18\x9a\x24\x32\x7f\xc6\xb1\xaf\x26\xf2\xfa\xa5\xc8\x8f\x56\x22\xe8\x3a\xab\xf0\x6d\x9a\x4b\xa5\x88\xfa\x83\x22\x5e\xc3\x7c\x9e\x3c\x2f\x72\x3b\xfe\x81\xe1\x2f\x57\xa2\x54\xc7\xff\x68\x93\xa2\x78\xc4\xc7\xaa\x2f\x10\xc6\x26\xcf\x39\x03\x70\x33\xd3\xcf\x6b\xcd\x65\xc7\x03\x38\xee\x11\x94\x3e\x27\x30\xbb\x9b\xf8\x76\x8e\x06\xf0\x5c\x99\xf1\x7d\xc8\xad\xc6\x28\x59\x26\x4b\x03\xdb\x00\x98\x19\x1f\x37\xad\x0a\x93\x17\x63\x66\x89\x94\xe6\x69\xf5\x1b\x7c\x5c\x7e\x49\xd5\x7d\x3c\xbc\x5f\xb3\xc2\xa0\x2e\x8c\x35\x08\x3e\x38\x41\x7f\x4c\x43\x23\x17\x3a\xb1\xb5\x43\x93\xc8\x3c\x0f\x26\xc3\x18\xe7\xc0\x27\xaa\x30\x1a\x9a\x2c\x8d\xa3\xc4\xec\x55\x34\x0b\x98\x84\x12\x81\xb4\x1a\x11\x56\x8d\x2e\x8b\x76\x7a\xad\xb7\xce\x27\x53\x98\x9a\x67\x3a\xd1\xb3\xf6\x59\xc2\x15\xc3\x82\x5c\x56\x6d\xc9\xd3\xe4\x56\xe1\x7d\xef\x4c\xf5\x53\xaa\xdc\xb3\x97\xa5\x2c\xa7\xe4\xc7\xb5\x10\x60\x0a\x18\xe0\xcb\x6a\xdc\xcf\x64\x36\xac\x3e\x60\x33\xac\x01\xa6\xe4\xa3\x67\x28\xf4\x7c\x8d\xe5\xb3\x95\xc8\xae\xc2\x1c\x37\x51\x32\xef\x34\xe0\xcf\xcf\x77\x16\xc7\x11\xf7\x0c\x9c\x50\x8f\x43\xf4\x9f\x6d\x66\xcb\xa7\xda\xea\xd1\x83\x3e\x63\xf4\xd9\xa3\xab\x92\x0e\x6c\x1c\xcf\xf8\xcd\x89\x51\x5a\x07\x2b\xa9\x92\x41\x14\x59\xcf\x20\x6e\x40\xb8\xf8\xa1\x6b\xa8\x16\x69\x61\x40\x47\x28\x25\xbd\xcd\x40\xa1\xd8\xde\x23\x97\x2b\x01\xdb\xce\x54\xbf\x7a\x10\xe3\x45\x9b\xd8\xfc\xd5\xb1\x8d\x51\x0b\xe2\x20\x07\xf6\x5b\x22\x9e\x86\xd1\x8e\x51\x66\x8b\x82\x27\x82\xdd\xf0\xde\x61\x81\x5d\xdd\xa3\x17\x06\xf3\xaf\x30\x3a\xa0\x08\xae\xef\x6c\x3c\x16\x3e\x56\x33\x3c\x51\xcf\x9a\x7d\x9e\x76\xe2\x82\x0f\xbb\xfe\xeb\xad\x40\x49\x4c\xfe\x11\xcc\x27\x9f\x68\x0a\x30\xa0\xee\xf8\x23\x8a\x9d\x54\xab\x30\xd3\x5c\x69\xf5\xbc\x24\x4d\x54\x29\xa3\xea\xa6\x2d\xc5\x26\x59\x46\xdf\x79\xc1\x77\x3d\x9c\xeb\xb9\x1d\xf8\x98\xf2\x8c\x6f\x76\x47\xcb\x51\x12\xb5\x7d\x21\xee\x43\x65\xdc\xdf\x2e\x15\xc9\xc1\x99\x29\x7b\x3e\x37\xd7\x49\xcc\x0a\x5e\x09\xae\xfa\x82\x6e\xa2\x5d\x08\xa6\x65\xfd\x86\x7d\xe0\xfe\x65\x9c\x56\x95\x32\xa7\xfd\x45\xb5\x3e\x8b\x74\x48\x1d\x5e\x99\xdc\x54\x33\x68\x8d\x60\xf5\x30\x8d\x53\x29\xe9\xc3\x7b\x7e\x14\xa8\xf8\xf7\x23\x27\xa9\xd8\x4f\xf7\xd3\x3b\x61\x61\x70\x7a\x50\x30\x80\xfb\xa9\x42\x56\x23\x53\x52\x02\x6f\x0c\x44\xf9\x25\x88\x15\x21\xe6\xdf\x83\xaa\x9f\xea\xb7\x4b\x71\x70\xab\xf4\x33\x94\xbf\xd0\x55\x92\x40\x97\x9a\x8a\x32\xa3\xd8\x24\x3c\xfd\x3a\xef\x39\x42\x9d\x55\xf9\x50\x49\x11\xef\x9d\x28\xbd\xa5\x6f\x29\x9c\xab\x98\x26\x4a\x55\x34\x50\x4b\x3a\x66\x74\x0f\x1a\xc4\x07\x77\xf2\x63\x35\x51\xb7\xc4\x83\xfc\x08\x56\x75\x02\xf2\x37\xfe\x4a\x4e\x73\x11\xf0\xbd\xe7\x75\xad\x89\xca\x0f\x28\x84\x3c\x30\xf1\x66\xee\xb3\x52\xe9\xf8\x7c\x86\x1f\xc1\xaf\xff\xbc\x62\x3c\xb1\x61\xf1\xa8\x0b\x95\xbf\xf4\xa5\xae\xa7\x53\x63\xc5\x77\xca\x47\xdb\x4f\xa1\x8e\x04\x33\xf4\xe7\xbb\x6e\xc6\xfe\xff\xf8\xff\x75\xfd\xbc\xf2\x56\xe9\x59\x75\x2e\x72\x0f\x85\xcd\x4e\x75\xbd\xdb\xfb\xbb\x7e\x82\xe3\xf0\x63\x13\xb5\x3a\x1e\x9d\xa8\x6e\xdc\x7a\xa9\x14\x6e\x1f\x9d\x78\xdd\xee\x0d\x3d\xbf\xf5\x81\x76\x5d\xe9\x90\x66\x7f\xf7\xd4\xea\x98\xd5\x05\xbb\x34\x51\x21\x46\xab\x5b\xc4\xf2\x01\xa3\x34\x70\x18\xa7\x55\x03\x69\xc9\xc6\x31\x55\x04\xe0\xc5\x40\xdc\x2d\x91\x48\xf5\x55\x08\xc7\xd0\x55\x11\xb1\x86\x96\x12\x72\xa7\x38\xc6\x91\x87\x55\x71\x8c\x23\x72\x3b\xe4\x70\xf1\x8d\x82\x98\x66\x29\x33\x51\xaf\xe5\x3b\xc1\x27\x95\xa4\xd7\x34\xfd\x64\x15\x66\x45\xc9\x4a\x1a\xaf\xc8\x20\x81\x4c\xa4\x57\xdf\x80\x62\xf3\xae\x89\xc2\xe6\xbc\xa3\xd6\x54\x11\x8d\x6a\x62\x19\xaa\x70\xbf\x3e\x95\x44\xd0\x08\x97\xa2\x71\x77\x53\x00\x77\x95\x56\xef\x34\x43\x20\x17\x8c\x47\x28\x1c\x61\x31\x7e\x54\x2a\x8c\xd9\x47\x0d\x21\xc2\x60\x9c\x41\x6e\x07\xd6\x90\x64\xc1\xe7\xb7\x51\xb1\x43\xe0\xf2\xc7\xa5\x9e\x3c\xcd\x6d\x56\xcc\x50\x2d\x81\xd9\x71\xe1\xa0\x04\x17\x47\x0b\x4d\x78\x73\x35\xb5\xf6\xb1\x29\x8c\x70\x95\x00\xa7\x63\x70\xcf\x4b\x71\xbf\x7a\xe1\x28\xd4\x5d\x56\xd9\xce\x65\x55\x80\xd3\x7c\xc7\x7d\x93\x81\xc1\x1c\x35\x0e\x00\x58\x51\x72\x7e\xa7\xd4\x83\x9a\x78\x08\x88\x85\x37\xb5\x64\x1f\xe2\x13\xa1\x02\xf7\x31\x2a\xb5\xdd\x62\xa2\x45\x79\x69\xf6\x88\xa3\x22\xaa\x2e\x95\x8f\x55\x23\x7e\x30\xee\x5b\xd6\x72\xae\x09\xc8\x89\x1c\xbb\x1f\x81\xa3\x8a\x7c\x1c\x11\xd9\x71\xb5\x6c\x45\xee\xd9\x33\x45\x23\xac\x95\x19\x4a\x29\x2c\x44\x21\x4b\xc6\x0b\xf2\xce\x17\x16\x60\x3b\xb1\xfa\x18\x91\x29\x51\x86\x22\xc0\xb0\xd9\x0a\xc7\xb6\xee\x89\x54\x0b\x18\xcd\x21\x38\x4d\x0c\x09\x9f\xac\x8d\x54\x86\x69\x92\x47\x3d\x9b\xed\x69\x7d\x7d\x96\xcb\x8a\x27\x4a\x4f\x13\x76\x43\x73\x06\xaf\x2b\x60\xff\x05\x2d\xf2\xb6\xee\xc2\x8e\x91\xcd\x8b\x28\x8c\x7a\x90\x24\x81\x39\x6a\x4d\x7c\xb9\xe9\x5a\x39\xe5\xd6\xb1\x30\x60\x2b\xe5\xff\x4f\x4d\x3c\xbe\xf0\x62\xbd\x68\x09\x43\x08\xd9\x07\x3e\x9e\x28\x15\x90\xb1\x30\x0b\xcc\x72\x23\x00\x1c\xd5\xa2\x11\xdf\x72\x8c\x97\x6f\xe0\x36\x90\xf7\x6d\x95\x1a\xb9\x6b\x0d\xa9\xe2\xce\x1e\x61\x54\xe3\xe7\x98\xe1\xe2\x13\xdf\x8a\xfb\x7f\x9f\x31\xdf\xd9\xbd\x11\xfe\xc4\xbc\x10\x85\x04\x78\xec\x3b\xf8\x18\x9f\x4c\x19\xb4\x43\xb3\x02\x6d\x51\xa1\xca\x46\xa0\x75\x1e\x1b\x68\x1c\xa8\x2a\x4b\xf0\x77\x94\x0b\x1e\xf6\xee\xe6\x2f\x6d\xa8\x70\x81\x5f\x28\xbc\xe0\x3d\x0d\x07\x8b\x8a\x2a\x8e\xdc\x57\x6d\x5c\x99\xe9\xf3\x81\xf3\x0f\x82\xda\x04\x9f\xc3\x41\xbc\x11\xf8\x9d\xb4\xad\x45\xe6\xc4\x95\xa1\x36\x75\xae\x29\xaf\xeb\x8f\x5f\x7f\x3d\xb6\x2a\x13\x44\x6f\x93\x8f\x27\x3b\x3f\xf1\x4c\xe7\x2b\x5f\xfb\x5b\x0b\x5f\xfb\xd5\xf9\x47\x54\x6f\xf2\x84\xa6\x50\x7c\x9f\xb6\xb5\x13\xc6\x74\x7d\xd2\x63\x5c\x50\xc6\x26\xb9\x12\x28\xa8\xe3\x9e\x89\x52\xf0\xb8\x4d\x0f\x19\xde\x0f\x10\x54\xdc\x18\xc7\x01\x22\x7f\x45\x5e\xd7\xb1\x41\x56\xc6\x09\xcf\x88\x59\xc0\x11\xa0\xdc\x53\xd4\x1f\x2d\x05\x1c\x8d\xcd\x2a\x37\xdc\xdd\x50\x8c\x1f\xd8\xb8\x4e\x70\x6d\x37\xd0\xe4\x86\x72\x74\x02\x7e\xba\x06\x71\xcd\xed\xda\x3e\xba\x1e\xb8\x92\xcb\x75\xb1\xed\xea\x9b\x9d\x9e\xbe\xc3\xe9\x31\x0c\xcc\x51\x0a\x7a\xf5\x21\x96\x81\xc4\xf6\xbc\xd2\x54\x11\x49\x47\x16\xf8\x47\x98\xa6\x99\xae\xa7\xbb\x46\x78\x86\xea\xf1\xed\x06\x79\xb4\xd8\x24\xa1\xe5\x8e\xba\x8c\x21\xb7\xbe\xf1\x35\x37\x6c\xdc\xa4\x9f\x94\x8f\x47\xa3\x94\x40\x0a\xba\xce\xf7\x49\xa9\xea\x7c\x9f\x38\x7e\x27\x33\xfa\x1b\x7f\xe5\xaf\x90\xd9\x10\x21\x24\xfa\x2d\x3e\x51\x79\xd0\x28\x15\x6d\x22\x11\x44\xf1\xbd\xbf\x0b\xaa\xee\x3f\x32\x59\x91\xd8\x6c\x8f\x02\xec\x5f\x0f\xb4\xf0\xfb\xc5\x52\x61\xe3\xea\xd2\x00\xb4\xc6\x04\x83\xeb\x0b\xba\xa3\x2c\x1d\x8e\x0a\x26\xf7\xc2\x3f\xdf\x53\x95\xd6\x7b\xca\x34\xe5\x69\x18\x11\xca\xdd\xa3\x56\xdf\x09\xaa\x58\x9f\x8f\x55\x9f\x69\xc5\x66\x39\x84\x1c\xaa\x37\xce\x53\x33\xa8\x13\xc3\x4b\xfc\x57\x88\xa7\x64\x9c\x5a\x51\x2b\x0e\xec\x2a\xbd\x4f\xa7\x12\xe6\x19\x81\x58\x41\x9d\xc7\xd6\x5d\x0e\x16\x0e\xd2\x6c\x5c\xd3\x8c\x40\x7b\x02\x7f\x07\x2f\x26\x8a\x38\x8f\xa9\xe8\xb0\x67\x33\x13\x1f\x50\x50\xdf\x5d\xdd\xd6\xd1\x83\xdb\x97\xb5\x1a\xcd\xa5\x52\xcd\x67\x32\x1a\x8d\x45\x74\x6a\xb2\xe0\xb4\x18\x60\x5a\x58\x08\x13\x89\xd1\x6e\x16\x01\x71\x5e\xb4\x7a\x3d\xd8\x90\x0f\x4e\xbc\x43\x79\xb0\xeb\x7d\xfe\xa2\x89\x5f\x37\xe1\x0c\x3d\x1f\x38\x32\xae\xb4\x72\x14\x1c\xa8\x09\xbc\x0b\x88\x51\xf9\xcf\x5c\xc1\x61\x39\x89\x0a\xc4\x91\xf0\x93\x5c\x64\x77\x43\x0c\xd5\x5d\x48\x67\xb5\xc6\xc1\x96\x3f\xdb\x56\xdd\x0a\x3c\x3a\x4e\xb4\xe9\x91\x4a\x61\xdf\x07\x4a\xe9\xb2\x7d\xb4\x5a\x03\xd8\xe2\xdc\x0d\x24\xc3\xf0\xed\xbf\x40\x01\xb7\xb4\x75\x2a\x4f\xe0\x6a\x1e\xbe\x6a\x79\x60\xa2\x54\x4f\xde\x55\xcd\x40\xd6\xa8\x92\xac\x5a\xb1\x69\xb0\x43\x14\xc9\x95\xca\x2a\x49\x57\xad\x5a\x38\x8e\xa4\xc8\x4d\x8d\xfc\x33\x3d\xbb\x03\x05\x36\xe9\x23\x34\x48\xa6\xa7\x8b\xbd\xb1\x53\x81\xd1\x6c\x87\x7c\xac\x4a\xab\xb9\x4d\x72\x4b\xdd\x6c\xc4\xa5\xfc\x68\xf9\x24\xa0\xd2\x8e\x66\x31\x64\xbd\x64\xac\x7d\x56\x6f\x22\x13\x2f\x4d\xc7\xea\x67\xf8\x18\x18\x19\x96\x75\x0a\x68\xd4\x4e\x34\x9e\x50\xcb\x95\xb8\x9d\x56\x80\x48\x41\xa9\x49\x01\x96\x1a\x10\x4a\x8f\x9d\xf1\xf9\x2b\xaf\x74\x7a\xa6\xa7\x7a\xd1\xdc\xcc\x16\xe2\xfb\x47\x74\xd3\x38\x8d\x29\x20\x01\x4c\xe1\x3a\xfe\x90\x4f\x82\x9f\xd3\x24\xdc\xa3\x2a\xac\x5b\x8c\x28\xbe\xad\x9e\x0b\x63\x7c\x02\xc5\x14\xaa\x21\x1b\xbd\xcc\xbe\x66\xe3\xb6\x96\xb6\xda\x52\x0a\x61\x37\x34\x8c\xe5\x0d\x37\x6f\x53\xd9\xac\xd4\xe1\xf7\x98\x9c\x12\x2b\x4f\x98\x2a\x1b\x04\xd1\xa8\xb4\xd1\x52\xf9\x1d\x2d\x36\xc9\xf5\xbc\x78\xd1\x28\xed\xa1\x57\x2a\xab\xd5\x03\x56\xd7\x55\xad\xd9\xbe\x36\x8a\xd3\x9c\x44\xdf\xaa\xab\xc0\xbd\x6d\x6a\xc2\xa8\xcd\xc0\x8f\xa3\x50\x69\x82\x60\x84\x7e\xfa\xee\x98\x82\x1c\x6e\xa8\x81\xb4\x63\x81\x0a\xc7\xa6\x87\xce\x09\xd8\x05\x1c\x16\x6a\x6c\x0e\xfa\xe8\x22\xdf\x8b\x4d\x23\xf6\x43\xdb\xeb\xc5\xd2\x39\x52\xcc\x41\x9e\xf8\xba\x69\x00\xda\x26\xbd\x31\x33\x81\x21\x8e\xba\x85\x77\x89\x65\xf2\x81\x02\x26\x5d\x28\x75\xc7\xfd\x4b\xae\x1e\x18\xe5\x85\x4d\x0a\x48\x10\xb5\x7c\x05\x06\x3c\x5b\x42\xde\xdf\x04\xb1\x19\xd9\x30\x62\xc6\x39\x04\x00\x7b\x95\x8c\xc0\xde\x06\x15\xcd\x85\x4e\x38\x66\x0a\x39\x19\x1d\xa4\xd7\x21\xc3\x13\x5f\xaa\xa3\x26\x5e\x3a\x7c\xb0\xca\xbc\xf7\xd1\xd3\x86\x6d\x44\x84\x89\x34\x11\x01\x1b\xe2\x90\x1b\x18\xd5\xd1\x56\x8a\xff\x81\xec\x1a\x42\xbf\x4f\x02\x25\x65\xfe\x96\x9e\x12\xb2\x7d\x93\xf5\x6d\x3c\xa3\xa4\xa2\x5a\x28\x9c\xb0\x12\x2d\xe1\x26\x84\xaa\x8c\x50\x30\x0c\x20\x57\xdd\xbc\x2a\xd2\xb1\x3d\x52\xd6\xd9\xde\x52\xd4\xde\x17\x94\xe4\xe9\x66\xe9\x23\xe4\x8f\x49\x3e\x77\x4b\x9b\xab\xc2\x24\x50\xb4\x46\x50\x74\x0e\xaf\x12\x11\xc2\x75\xdc\xa2\x74\xe7\xe9\x52\x5d\x1c\x75\x54\xf8\xae\xf6\xa2\x0a\x01\x53\x7a\x5b\x85\x94\x40\x9f\xf1\xa7\xb1\x80\x59\x40\xb2\x51\x27\x6a\x34\xce\xc2\x81\xc9\x65\x0f\xcb\x92\xa0\x2f\x97\x35\xe1\x91\xa4\x26\x49\xd2\x71\x12\xda\xde\xfe\xca\xa3\x20\x9f\xd8\xaf\xa5\xbf\x99\x76\x11\x39\xd2\x3d\xa5\xb6\xf0\x31\xb8\xa3\xe1\x1f\xda\x13\x0f\x4e\xb8\xa1\xfa\x5e\xa7\x03\x35\x7b\xd8\x66\x8f\x8d\xb3\x93\x14\x00\xc3\x86\xdf\x51\x45\x97\x15\x0b\xfb\x26\x2c\x0c\xbe\x42\xb8\x3e\xb5\xf7\x9e\xe9\x54\xd9\x6e\x3a\x8c\x00\xd2\x5d\xd0\xac\x2d\x2f\x3a\xd6\x96\x9d\xf6\xf9\xf0\xc1\x4e\x6e\x0a\x04\x50\x42\xe2\xa9\xe6\x54\x4a\xc5\x01\x75\x77\x2a\x65\x9b\x9b\xeb\x2c\x8e\xb3\x9e\x15\x3a\x24\xcd\x5d\x2b\xbb\xbd\x61\xf4\xb7\x1f\x47\x8b\x88\xa3\xc4\x25\x54\x0f\x09\x78\xb4\xd3\x4a\x25\x6a\xd0\x34\x4a\x92\xdb\xb0\x60\x0d\xcc\x85\x9a\xcc\x3c\x1f\xab\xd9\x25\x61\xf1\x17\x6b\xc4\x92\xbf\xb4\xf9\x44\xfe\xb7\xa1\x3d\x53\x64\x63\x36\x21\x9a\xaa\x4f\x80\x64\x0e\x3a\x90\xf4\xa3\x44\xf0\xd0\xae\xb7\xe4\xa8\x00\x37\x94\xfb\x61\x51\x1f\x45\x79\xb0\xa1\x09\x55\x37\x6a\x63\x2c\x86\x99\xf2\x74\x2b\x51\x06\x93\x74\x06\x34\x18\x17\x7b\xaa\x45\x83\x05\xd8\xea\x7a\x9d\x43\x18\x79\x98\x51\x8c\x76\xf0\xb1\x1a\x0b\xba\xde\xd4\xca\x02\xa0\xb4\xe5\xab\xc5\xeb\x0a\xbe\xb0\x5e\xfe\x42\xdd\xae\x1d\x3d\xf8\x9c\x00\x35\x1f\x56\x0a\x5b\x27\x81\xe9\x43\xda\x80\xe8\x15\x7e\xea\x7f\xa7\x5b\xc1\xde\xb9\x42\xeb\x1d\x1d\x8b\xcf\xc9\xb6\x89\x7c\x72\x75\x1b\x52\xc7\xaf\x2e\x44\x11\x86\x08\x12\x9c\x03\x03\xd4\x2e\x2f\x6b\x3e\xb6\x0d\xce\x52\x84\x36\x81\xdc\x0e\x78\x13\xce\x05\x7f\xa1\x09\x65\x6e\x63\x5b\xd7\x84\xe3\x59\x66\x94\x52\x8e\xc3\xd4\xf2\xf6\x55\x02\x9e\xd7\x61\x7a\x78\x38\x50\x51\x8a\xd8\x6a\xc9\x8d\xb2\x28\x97\x01\x13\x26\x69\xc4\x3e\x12\xc6\xc6\x9d\xf5\x9f\xd9\x23\x44\x26\x9d\x0f\x6d\xc6\x79\x0f\xee\x07\x60\x14\x3e\xf6\x6a\xe1\x69\xb2\x64\x73\x87\x01\x11\xbe\x62\xba\x54\x3e\x99\xea\xcf\xcd\x1e\x21\xf1\x6c\x9b\x57\xa1\x84\x89\xdb\x7e\x2e\xfb\x1f\x2b\xa5\x99\x4b\xb5\xf2\x9b\x12\xe7\xe2\xc9\x02\xd7\xb3\x61\x96\x3b\xba\x3c\x61\xbc\x53\x4c\xc6\x95\x0f\x7a\xc9\x61\xe4\x98\x60\x47\xf2\x5d\xbf\x38\xbf\x1f\xa8\x08\xef\xa6\x86\xf4\x47\x2b\x11\x25\x76\xfb\x14\x4f\xcf\x77\xe9\x6b\xb6\x2f\x07\x5e\x43\xe5\x0c\xf9\x21\x60\xc5\x8e\x03\xd6\x89\xdd\x07\x6e\xaf\xed\xcb\xb4\xfc\x60\xbb\x5b\xdd\x06\xfa\x68\x2a\x67\xae\x66\x51\xc1\x82\x06\xc2\x06\x59\x7d\xad\x90\x41\x4a\xb6\x33\x32\x6b\xdc\x1d\xc5\xd5\x6f\xd3\x85\xd4\x54\x4c\x70\x8b\x17\x15\x68\x50\xea\x8f\xf0\xa8\xcf\xf9\x0a\xd3\xbc\x2a\xde\x38\x66\xdd\xb3\x3a\x65\x39\xa1\x44\x35\x6f\x36\x70\x29\x77\x96\x52\x88\x3a\xb4\xeb\xd8\x9e\xc3\x07\x35\x09\xff\x2c\xb7\x71\xee\xab\x48\x3b\x0d\xc3\x71\xd6\xd6\x00\xbc\xc0\x6f\xb5\x11\xdd\xbc\xf0\x6e\x4d\x3b\x99\x2c\xcd\x09\x31\xc9\xab\x4f\x28\x59\x95\x8e\xf8\x77\x9a\x3a\x7e\x36\x2a\x06\xd5\x43\x3e\x74\x88\x9f\xc1\x07\xb4\xed\xf9\x78\xaa\xe4\x52\xc5\x84\xb1\x2d\xda\x3e\x20\xdc\x0a\x94\x6e\x39\x8f\x5c\x4a\x31\x59\x76\x06\x71\x15\x27\x36\xcf\x6b\xb0\xa5\x96\xe2\x12\x56\x14\xa0\x51\x96\x17\x4f\x55\x26\x89\x05\x27\xe8\xc9\xa1\x86\xf0\x00\x45\x80\xe8\x4d\x6d\x6b\x8c\x32\xd3\x07\x30\x9d\x3d\x76\x0b\x52\xeb\x1b\xb4\x1a\xb0\xfa\x5a\x24\xe7\xb2\x7d\x12\x09\x98\x08\x74\xd1\xe5\xc3\x62\xfc\x01\x72\x36\xb8\xc8\x5d\xc4\x61\x00\x8f\xb7\x59\x2a\xa5\xd7\x93\xc8\xba\x85\x46\x80\xde\x32\x18\x52\xee\xa9\x20\xfc\x5f\x07\x0a\xff\x5f\xea\xa0\xe2\xc0\x44\xf1\xf3\x7e\x84\xa0\x07\x55\xb1\xc7\x26\x4d\x93\x2b\x79\x65\x0c\x5d\xbe\x83\xd6\xce\x1f\x6b\xb0\xf3\x1f\x3b\xa9\xbc\xa5\x8c\x64\xf2\x56\xcd\x9a\xe0\x45\x5c\x74\xe7\x51\xbe\xd7\xa7\xdc\xb7\xe0\xfa\xa3\x25\x02\xf5\xa3\x41\x88\x20\xb3\x46\x12\x01\x8f\xa3\xe5\x67\xa9\x96\x9c\xcf\xd4\x52\xc7\xea\x81\xcb\x48\x9e\x96\xfe\x0b\xb4\x64\xc6\x69\x35\x7e\x62\x5f\x1d\x47\x05\xd5\x0d\x65\xf3\xf1\xa2\x72\x6c\x6d\x6e\xac\x84\x7d\x0c\x47\x77\x6a\x02\xfb\x86\x2a\x0e\x1f\xc7\xc3\xe1\x21\x53\xc5\xfd\xb7\x38\x4e\x78\x34\x5d\x84\xad\x34\x31\x3b\x0c\x95\xa4\x7d\x1e\x40\x90\x9b\x21\x4a\x6e\xa8\xfc\x60\x40\x56\x54\x48\x69\x5d\x20\x40\xfc\x1e\x96\x02\x90\x6f\x6f\xd2\x45\xf3\x71\x03\x44\x73\xbe\xb3\x5a\xd9\x1f\x80\xa5\x58\x33\x07\x60\x29\x11\xd0\xf1\x97\x5d\x79\x41\x3b\xa3\x5b\xb1\x30\x4e\x78\x92\xba\x1b\xf1\x3e\x85\x12\xfc\xff\x27\x4d\x70\xae\x3c\xea\x27\x02\xbd\x43\x21\xea\xb7\x70\xd9\x7c\x12\xf8\x7c\xa1\x6f\x86\x36\xdf\xa7\x7a\x8b\x5c\xc0\x44\x38\xfa\xe0\x44\x2b\xae\xa0\xbc\x0f\xab\x01\x78\x93\xca\x88\x25\xc0\xff\x98\xae\x1a\xe5\x89\xad\x06\x81\x82\x05\x60\xb1\x5c\x66\x8b\x36\xf9\x26\x6d\x2a\x3e\x56\x6a\xa3\x85\x79\x6d\x64\xd6\x6c\x96\xef\x53\x94\x18\x1b\xf4\x00\xe0\x79\x3e\x0e\x3c\x35\xf3\xc7\x8a\x8e\xff\xbf\x45\xda\xeb\x80\xed\x5a\x10\xee\xa5\x05\x57\x12\x68\x52\x19\x5c\xcc\x4c\xd2\xe3\xc9\x58\xa9\xb9\xe0\x31\x20\x37\xfc\x38\x50\x8e\x62\x33\xd0\xd0\x5f\xa7\x89\x32\xb4\xc3\x34\x33\x8b\x51\x1c\x61\x80\x1a\x98\x81\xbb\x1a\x40\x70\xb7\x26\x6d\x16\xa6\xfd\x24\x7a\xdd\xb6\xeb\xa5\xc8\xea\xaf\x79\xd8\x35\xf0\xc5\x83\xe3\x53\x0e\x69\xf6\x48\xc7\xc4\xe3\x61\x94\xf0\xd8\xa5\x13\x16\x72\x70\x16\x4f\xdd\x15\x9a\x65\x31\x33\x0e\x67\x56\x2d\x14\xc1\x99\x35\xb0\xbc\x67\x76\x31\xcd\xa0\x45\x88\x78\x08\xa5\x2e\x3e\xae\x45\xd0\xab\x83\xf4\x89\xea\x2d\x20\x6b\xd9\xa4\xe9\x29\x58\xec\x2b\x81\x82\x69\x7d\xae\x0b\x94\x6f\x60\xfd\x20\xe1\xc4\xfc\x3c\x4c\xed\x29\x6c\x16\x51\x54\x69\x39\xaa\xe6\x03\x24\xcd\x25\x0a\x7d\xca\x1d\xdd\xa1\x5c\x70\xfb\x32\x2c\x08\xd6\xd3\xe5\x6a\x45\x6e\x6f\x53\x30\x8e\x8a\xed\x3d\x7e\x9f\x58\x1d\xa0\xb2\xa2\x7f\x78\xf8\x09\xb4\x66\x84\xd3\x52\xb9\xe9\xc7\xbb\x8f\x2b\xd2\xc1\xd8\xac\xe5\x91\x81\x17\x86\xf5\xbc\x51\xaa\x39\xa1\x1b\xaa\xbf\x3b\x8a\x6c\x16\xda\x96\x9e\x9a\xd0\x23\x17\x0a\xca\x3b\xb0\xd9\x30\xa5\xfc\x43\xc6\xd9\x55\x95\xfa\x74\xe0\x65\xb4\xe2\xdc\x12\xe2\x97\x2e\xf3\x2b\x4f\x01\x21\x2a\xc1\xae\xe7\x70\xb8\xa7\x86\x07\x5b\x53\x5e\xe7\xe8\x41\x95\xa1\x57\xdf\x86\xee\xd2\xe7\x9a\x6f\xe6\xf3\xc0\x6f\x45\x93\x2d\x46\x45\x66\xb2\x35\xb0\xfd\xe3\x46\xff\x01\x86\xde\xf8\xc4\x75\x9c\x0b\xc3\x21\x0e\xf2\xca\xf7\xe8\x42\x60\x59\xaf\x07\xea\xee\x51\x92\x93\xa4\x4a\xf5\x27\xce\x04\x0a\x5d\x73\x46\x81\x70\x99\xf5\x08\x26\x95\x55\xaa\x03\x37\xc7\x77\xe6\x43\x25\xf4\xb5\x38\x7e\xfd\x75\xca\xd2\x94\x57\x79\x91\x5b\x70\xb0\xad\x70\x3d\xd0\x45\xe7\xff\x4f\x57\x27\xcc\x3b\xbe\xbc\xb3\x62\x92\xfe\xd8\x64\x68\xa1\xc0\x1a\x9e\xd1\x83\x13\x67\x14\xc8\x6c\xd1\xda\x70\x60\x86\x2d\x0a\x33\xb0\xdc\x3f\xd5\xd4\xe5\x9f\x7a\xce\x75\x9b\x45\x69\x2f\x0a\x0d\xcd\xf7\xff\x5a\x7d\xc0\x42\xe4\xce\x76\x96\x56\x16\x5e\x78\xb1\x33\x34\x85\xe9\xa7\x59\x0f\x6c\x73\xdb\x27\xe1\x75\xb7\x4f\xaa\x52\x92\xe9\xdb\xa4\xc8\x21\xd2\x8c\x7c\xfb\x1f\x23\x25\x83\xe3\xdf\x54\x51\xe7\xbf\x50\xc4\xe7\xdc\x5e\x96\x88\xa0\x61\xe0\x3c\x1f\xa6\x71\xcf\x7a\x9a\x01\xe1\x05\xf0\x75\xbb\x0b\x0d\xd8\x12\x1e\x61\xa6\x82\x8a\xa3\xa9\x75\xd5\xfb\x8b\x53\x16\xed\x95\x57\x3a\x45\x66\x56\x22\x53\x98\xb6\x62\x6b\x58\x57\xc4\x15\x7f\x40\x18\x54\x98\xc7\x73\x0a\x49\x39\x1a\xc5\x00\x50\xe3\xcf\x30\x06\x00\x83\x82\xb4\x16\xe9\xf1\xbb\x8a\x7f\x69\x18\x46\x20\xdc\x16\x32\x1d\x85\xbc\x15\xa1\x20\x21\x3d\xa3\x55\x04\xf7\xb8\x5e\x63\xe0\x99\x72\x26\xbf\xc2\x82\xac\x96\x1b\x57\x08\x14\x30\xa4\x88\x2c\xe1\x9a\x1e\x8c\xd7\x7c\x2c\x59\xba\x68\xb3\x62\x8f\xe6\xf6\xba\x5d\xfa\x06\xc5\x9f\xd2\x0a\x71\x5a\x72\xd5\x77\x20\x56\x39\xd0\x55\x50\xb2\x93\x53\xef\xe1\xc8\x0b\x9d\xa5\x94\x38\xb1\x3d\x85\xd3\x06\x8c\xac\xd0\xe2\x3c\xa2\xd6\x71\x51\xd8\x19\x4f\x34\x7b\x4a\xa7\xfe\xa8\x33\xf1\x71\xe9\x9b\x40\xa7\x9c\x99\x1a\x46\x45\x26\x13\x27\x35\x31\x2e\x81\xc0\xf8\x01\xfc\x68\xc5\x14\xd1\xeb\xe2\x95\x9c\x96\xa5\x2b\xfc\x7c\xdc\x34\xbd\x11\x9a\x62\x90\xc6\x4c\x36\x8a\x7c\x71\x0b\xef\x8d\x4f\x54\x52\xfc\xfc\x73\xf3\x7b\xfc\xdc\xc5\xd5\x52\xbd\x6b\x5e\xf0\x30\x48\x1f\xf2\xbb\x16\x0a\xce\xea\xab\xe1\xc9\xf6\x74\x1d\x28\x63\x9c\xf5\x2d\x6a\x60\x8a\x80\xd1\x81\x57\x3e\x6f\x62\x14\x1e\x58\xd3\xe3\xfc\x15\x65\xa7\x7b\x08\x4a\x85\xe0\x52\xc9\x51\x6e\xb8\x95\xdc\xb3\xc9\x0a\xa7\xc6\x4c\x5f\x59\xd6\xb8\x2c\x1f\x52\x5c\x3f\xbd\x03\xd5\x0b\xc5\xf8\x26\xb6\xb6\x4c\x83\x50\x6d\x54\xf0\x1c\x14\x5d\x48\x6f\xba\xe5\xc4\x1e\xc1\x81\x82\x5c\x85\xa5\x4c\x78\xcc\x43\x8d\x5e\xee\xee\xaa\xf6\x32\x7b\x09\x3e\xd1\xed\xca\x33\x2e\x67\xcf\x4d\xb8\xac\x75\x8c\x94\xde\xcf\x99\xf2\x4b\x3b\xeb\x59\x0b\x55\xda\xf9\xf3\x8a\x44\x7d\xbd\x6c\x1d\x79\xc1\x0d\xaf\x28\xd4\x15\x6b\xc2\x31\xfe\x16\xa9\x15\xcc\xc8\x7f\x43\x69\x2d\xac\x5d\x1b\x62\x9a\x70\x3a\xc7\x54\x07\x71\x5f\xd7\xe3\x4d\x3f\x47\x3a\x20\xd5\x4f\x25\x17\xd2\x9a\xb4\x94\xf5\xae\x32\x67\x29\x49\xa8\x41\xd9\xab\xa4\x79\x89\x76\xc8\x16\x02\x4e\xec\x55\xd6\x14\x75\x94\xbf\xae\x0b\xf2\x98\x9e\x34\xbb\xa5\x96\xcd\x1e\x94\xba\x71\xeb\xff\x2b\x35\x0c\xd1\x4f\x7e\x87\x3c\x12\x1b\x6a\x5e\x9e\x08\xe3\xef\x28\xb0\x55\x3e\x5e\xcc\xa3\x5e\xb5\x87\xda\x7a\xcc\xc7\x17\xc9\xc1\x7d\x21\x32\x36\x0a\x0b\x6b\x0b\x13\x0e\x84\xb5\xc2\x05\x28\xf3\x3e\x40\xf1\x8e\x2d\x4c\x4d\x65\x3b\xda\x7e\xe7\x5f\xa6\x77\x8a\xca\xc3\x39\xcd\xdb\xf7\x53\x15\xc3\x57\x8b\xdf\x10\xa7\x9b\x02\x8a\xd1\xa5\x09\x68\xcc\x91\xa8\x47\x89\xcd\xb8\x1d\x84\xda\xce\xc3\x13\x8f\x92\x78\xb8\x2b\xe1\x85\xc9\xec\x03\x9e\x64\x91\xb9\xe4\xc9\x1a\xa6\x4f\x74\x3d\x5e\xf7\x5c\xe9\xe9\x74\x8f\xd3\xd2\xa8\x41\xb0\x1d\x89\xdf\x51\xa7\x93\x5b\xdb\xfe\x1f\x37\x60\x38\x31\xff\x62\x93\xba\x84\xf8\x96\x26\xa1\xda\x52\xc5\x9e\xca\xfe\xc7\x40\xde\xc0\xf8\xaf\x07\x8a\xf7\x7e\x1d\x0e\x19\xfb\xf1\x63\x45\x08\xf6\x09\xbd\x73\x19\x18\xd2\xa3\xa8\x76\x18\x55\xde\xa4\x8a\xb9\x9c\x08\x81\x57\x41\x5c\x57\x1a\xee\xd7\x9a\xa6\x93\xc3\x74\x38\x32\x21\xea\xeb\x08\x7e\xde\x52\x3d\x92\xb7\xdc\x8b\x60\x35\xb8\xb6\x9a\xd7\xc2\x62\x02\x6b\xc3\xf5\x52\xc1\xdf\x3e\x69\x22\x18\x2d\x32\x0b\xe4\xa9\xf8\x18\x1f\x60\x6e\x94\x5f\xf6\x2d\xd3\xcc\xe6\x36\x29\x50\xfd\x6d\x29\xca\x04\xec\x19\xa9\x74\x4e\x87\x13\x2f\x8b\x54\xd5\xbc\x7f\x4e\xd5\x27\xf8\x78\x8a\x0d\xc1\x29\x2f\xc7\x99\x35\xbd\xb5\xbd\x0a\x99\xb7\x77\xe2\x84\x48\xfe\xde\xcf\x2b\xc6\xc0\x77\x30\xb6\xe1\xf8\xc3\x1c\x61\xc7\x15\x5a\x56\xa2\x9a\xef\xa6\x04\x62\xe3\x44\xf7\x84\x90\x42\xe9\x43\xbc\x35\xe5\x16\x40\x3a\xd6\xc3\x63\x92\x46\x30\x7d\x42\x2a\x88\x8f\xaa\xa8\xd7\x44\x43\x1a\x7e\x13\xc8\xfe\x59\x04\xde\x6e\x64\xd5\x83\xbb\x30\x9a\x27\x84\x68\xaa\x30\xfd\x9e\x2e\xe9\x8c\x87\xc3\xa8\xd8\xe3\x47\x94\x76\xa1\x5e\xc5\x54\x99\x81\x2f\xdd\x82\xcf\x17\xe3\xd3\x80\xb0\xa2\x37\xd7\xea\x3a\x5c\x66\x66\x47\xe3\x38\x8f\x10\x1c\x8b\xca\x34\x3d\x61\x3e\x99\x78\x00\xf8\x38\x59\x4e\xd2\xd5\x24\xa7\x00\x8d\x25\xf5\x4a\x85\xc2\xbd\x4c\x15\x35\xc1\x1c\xd6\x6a\xb9\x3d\x3b\x4c\x5c\xe8\x2f\xe3\xc7\xad\x79\xbf\x40\x7d\x3c\xb7\x68\xd6\xf6\xfc\x7f\xd1\x4c\xa9\x89\xae\x4c\x63\x01\x87\xd6\x24\x3b\x08\x2d\x8e\xa9\x41\xc8\x63\xca\x56\xe6\xe9\xd0\xf6\xcc\x5a\x5b\x01\x07\xce\x92\xa5\x91\xb1\x00\x25\x40\x7e\xbb\x41\xcc\xff\x39\x12\xd5\xb2\xfe\xe7\xb4\xe0\x87\xf0\x78\xfb\x00\xe7\xd7\x66\x17\x5a\xfe\x51\x7c\x00\x03\xc7\x27\xea\xaa\x96\xa3\x58\x74\xeb\x17\x84\xea\xb5\x54\x0d\xd9\x77\x03\x79\xa9\x4b\x69\x5a\x0c\xa2\x38\xe6\xd0\x15\x25\xdc\x5b\xb4\x16\xdc\x20\xa3\xef\x73\xb6\x95\xbc\x50\x54\xe4\x36\x5e\x7a\x98\x6e\x5c\xb8\xaf\x14\xb2\x07\x6d\x03\x27\x5e\xfc\xbc\x0c\xad\x6d\xc2\x18\xfa\x36\xa1\x70\x61\x00\xa1\xe4\x8a\x53\x7e\xb2\x13\x7d\x79\xfc\xc3\xcd\xd2\xf3\xb7\xfc\x65\x98\x74\xa4\xed\xdb\xf4\x7e\x6a\x28\x5b\x66\x68\x09\x7c\xf1\x2f\x5c\xe1\x70\x0e\xe5\x9e\x0d\x8d\xaa\xd9\xa8\x11\xa4\x47\x4b\x4b\x69\x06\x25\x67\x71\x74\x3e\x77\x6a\x77\xfd\x94\xd6\x49\x4d\xc1\x71\x4b\xcd\x62\x9b\x38\xb6\x7d\x6a\x8a\x3a\x22\xc6\x77\x02\x4f\xd0\xf8\x4e\xa9\x78\xa9\x72\x1b\x8e\x0b\x06\xb4\x30\x9f\xba\x9a\x4d\xfd\x96\x1a\x8e\x0d\x4d\xd2\x1b\xd3\xdf\x49\x19\xa7\xfa\x3b\xa9\xef\xf8\x5f\x87\x10\x93\x65\x5d\x3d\x16\xba\xc6\xb3\x13\xd5\x6b\x4f\x3b\x1f\x0e\xcc\xa8\x67\x63\x43\x43\xda\xae\xb9\xfa\x8f\x4a\x3f\x6e\xf3\x8f\xea\x5d\x51\x9b\x7d\x99\x5e\xbb\x93\x56\x71\xf4\xd4\x9f\x04\x9a\xe2\xe9\x1d\x7a\xbd\x18\xa4\xbf\x0a\x33\x0b\xa7\xf5\x1d\xdd\x6a\x7c\x97\x5e\x1d\x5e\x69\xab\x4b\xbb\x1e\x21\xd1\x49\x45\x49\x72\x1a\xcb\x06\x61\xe5\x4d\x2c\x34\x38\xf3\x9b\x30\x8a\x28\x67\x33\x57\x9c\x33\x00\x0e\x34\xfe\x33\xc0\xae\x30\x94\xf3\x09\xc5\x5d\xf8\xa3\xab\x00\x67\x21\x20\xfb\x01\xd6\x1d\xd3\x11\xa9\xa0\x07\xa8\x0e\xc4\x79\x77\xd1\x72\x40\x94\x79\x95\x60\xa6\x35\xc2\x6f\x7e\x4a\xa3\x2c\x6d\xfb\xd4\x06\x78\x17\x74\x26\xee\xe9\xd1\xb0\x0d\xa5\x65\x34\x34\xd9\x38\x49\xc7\xe1\x20\x6a\xd7\xd8\x29\xab\xe7\x2b\x1b\xa3\xe5\x88\x27\x4e\x2a\xc7\x11\x9b\x95\x28\x1f\xb4\x15\xd8\xe8\x4c\xe9\x53\xe3\x73\xa5\x1f\xf2\xbd\xd5\xd4\x18\x5d\x4d\xed\xa2\xed\xa7\x89\x55\x6a\x06\xd7\x94\xe0\xd2\x35\xc5\x71\xf8\xd2\xb3\x33\x1e\xc9\x8c\x10\x12\x46\xe5\x7a\xa0\x24\xbc\x36\x34\xbd\xb2\x47\xba\xf7\xd2\x5e\xdf\x66\xc2\xbc\x82\x50\xfb\x2a\x9c\x97\xe3\x5b\xf0\x0e\xe5\x6d\xf5\x6c\x56\x6c\xdf\x16\x66\xd1\x09\x7f\x8a\xb2\x7c\xcb\x71\xce\x9c\x57\xb5\x81\xd5\xea\x47\xd4\xb4\xfb\x85\x52\x7d\xe8\x5f\xe1\x37\x58\x24\x48\x33\x22\x84\x45\xb4\x12\xe5\x05\x41\xa4\x10\x6a\x7d\x47\x83\x56\x4f\xab\xbb\x05\xd1\x9f\xb4\xed\x1b\x74\xfb\xd2\x15\x9b\xcd\x78\xb2\xde\xbd\x8a\x7f\xf2\xba\x06\x81\x02\xc4\x88\x0c\xa4\xdd\x6d\x9e\xda\x4e\x44\x2a\x56\x93\x00\x4b\x39\xe2\x31\xdd\xdc\x20\x1d\x92\xea\x2f\x85\x60\x47\x33\xe1\xe8\xf1\xee\x70\xd9\x16\xf9\xde\x1a\xd9\xbc\x9f\x54\x7b\xa4\xab\xbc\xc1\x5d\x5a\x49\x8e\x6c\xdc\x51\x52\xde\xd4\xe4\xfe\x27\xd4\x62\x5c\x1c\x17\x55\xfa\x30\xc5\x8f\x87\x8a\x14\x5a\xae\xc2\xda\xe1\x21\xc9\xd1\x70\x94\xe6\x88\x45\x9f\x73\xc2\xd6\xde\x25\xbc\x59\xea\x74\xc4\xe3\x4f\xf2\x41\x34\xa2\x59\x5f\x9b\x21\x28\x63\xc7\x8b\xc5\x28\x5e\x58\x45\x44\x89\x19\x8d\xd6\x94\x9d\xab\x0f\x2b\x37\x6c\x0e\x12\xa4\x5c\xb5\x79\x31\x43\x96\x02\x11\xd7\xef\xa9\xe8\x6b\xa6\xeb\x8d\x30\x23\x86\xd1\x75\xbc\xd5\x30\xc2\xfb\x62\x27\x4a\x2c\x34\x15\x57\x58\x75\xdd\xc9\xd2\xce\xcd\x39\x59\xda\x06\x10\x1d\xb5\xb9\x73\x86\x11\x21\x80\x9b\xe9\xaa\xae\xff\xef\x2a\x21\x98\x99\xc9\x4e\xed\x16\x9a\xd5\x8e\x96\x96\xa2\x70\x1c\x17\x51\x5d\x9d\xe7\xb4\x56\xe7\x39\xad\x6a\xda\x45\x3a\x8a\x42\xc4\x70\x58\xe9\xa7\x4a\x8f\xc9\xbf\xa0\xa2\xc4\x5b\xaa\xd5\x44\xd9\xdd\x8c\x9a\x5d\x38\xc5\xe9\x16\x2c\x03\x57\x11\xd0\x2c\xe0\xe2\xaa\xc0\x47\x1a\xa4\x6a\x69\x2f\xeb\x21\xd6\x7a\x3d\x51\x5d\xeb\x38\x5b\xb6\x6b\x35\x54\x56\xa0\x51\x59\x53\x7b\x94\xe6\xca\x4d\xa6\x86\x70\x31\x88\xc2\xc7\xe5\x01\xa5\x61\xb3\x97\xea\x07\x5c\x5c\x54\x34\x6f\x18\x44\x64\x1d\x47\xf2\x11\xae\x00\x79\x78\xa1\xa6\xef\xc8\x7f\x3f\x51\x02\xc8\xe9\xd0\xbe\x8e\x15\xe0\x28\x62\xe7\xe7\xe5\xb8\xe6\x71\x8b\x74\xf4\x20\xdd\x18\x67\xc2\xa8\x41\x08\x3d\x6a\xf5\x29\x3c\xe9\xc7\xba\xca\xcc\x6d\x06\x9a\x71\xb6\xa6\xf9\x7a\xf4\x20\xff\x8d\x56\x70\xdd\x33\xa9\xd1\xd5\xee\x7c\x5c\xcf\xcf\x77\x72\x13\xf5\x5a\x75\xfc\x7a\xb5\xe3\x04\x33\xaa\xf2\x61\x33\x8e\x8b\x96\xaa\x37\x5e\x01\xb4\x99\x4f\x5c\xec\x93\x87\x99\xa5\xd8\x17\xda\x5f\xaa\x52\x27\xbd\xc8\x0f\xb5\x76\xd2\x38\x31\xb0\x2a\x8e\x20\x79\x27\x63\x2c\x3a\xa7\x5b\x81\xd2\x1f\xca\xf3\x34\x84\x2c\xfc\x5e\x5f\x6e\xe7\x29\x0f\x2c\xde\x1b\x58\x84\x78\x22\xbf\xd8\xd5\x3d\xa3\xb7\x15\x8a\x1d\x0a\xc1\x88\x68\xef\x29\x90\x83\xc9\xa3\x1e\x54\x36\xb0\xeb\x3f\xa3\xcf\xf0\xbe\xc0\x25\x62\x7c\xe1\xf2\x94\xeb\x7d\x86\xe8\xa8\xc7\x59\x26\xec\x34\x2c\xaf\x1f\xf8\x22\xe6\xf9\xf2\xdf\xfe\x82\x1c\x37\xb4\x59\x11\x2d\x45\xa1\x29\x6c\x8e\x9e\x36\x16\xc1\x1d\xde\x6e\xa8\x76\x6d\x05\xaa\x1d\x72\x43\x29\x7e\x6d\x28\x70\xf6\x7b\x0e\xdd\x31\x18\x0f\x47\x03\xa2\xee\xd5\x8f\xe1\x73\x5d\x3c\xfd\xdc\x8b\x9e\xbf\x6e\x8b\xb4\xad\x23\xbe\x1f\x95\xb5\x39\x95\xea\x43\xd8\x10\xd7\xa6\x92\xfb\x43\xb3\x1d\x03\x4a\xd1\x6a\x0b\xb1\xc8\x29\x1c\xa3\x28\x9e\xaa\x10\x35\x4d\x72\xfb\xea\x18\xda\x9a\x55\x1c\x89\xfd\xff\x0e\xb9\x37\x3e\x6e\xa0\xfb\xee\xf4\x2b\x2f\x9c\x08\x36\x11\xa1\xfc\x19\xec\x1e\x3e\x99\x6a\x7d\x3c\x23\x68\x65\xaa\x54\xe3\xe6\x44\x1f\x5e\x11\x89\x5d\x72\x32\xf4\xff\xc9\xbf\xab\x67\x26\xcf\x97\xed\x17\xff\xd6\xd7\xb9\x02\x77\x5f\x85\x6b\x57\x5d\xd5\x65\x35\x22\xfc\x38\x3c\x1d\xd2\x01\xf4\xa6\xa4\xb2\xea\x1d\xf1\x49\x2d\x66\xb1\x8c\xf0\x0c\x96\x93\x5b\x4d\x7c\xd2\x28\x67\xc6\x55\x97\x96\xdf\xe2\x00\x7e\xf2\xb1\x6a\x01\xac\x56\x2e\xae\xe5\x33\xdc\x2b\x81\x07\x3c\x5c\x71\xcd\xee\x9e\x35\xb1\xcd\x2a\x87\x0b\x97\xe0\xd4\x3e\xaa\xbb\x17\x7a\x35\x8f\x33\x79\xa7\xc9\x99\x2e\xc5\x36\x1f\x8c\xd2\x82\xf3\x4d\xd4\x3b\x71\xf7\x6e\xe6\x79\x6e\xce\x21\x7e\x3d\x77\x88\xd3\x11\x1b\xca\x2d\xe1\x79\x6f\x2a\xc5\x9d\xcd\x46\xc0\x65\x3a\x4e\x0a\x76\x77\x70\x94\x27\x03\xe5\x35\x4f\xaa\xee\x5f\x31\x10\xd5\x3d\xc7\x85\xce\x5d\x13\x89\xd5\xfd\x14\x80\x89\xb2\x30\x33\x4b\xc5\x7e\xef\x32\x1e\x44\x35\x58\xfc\x4d\x4b\xc9\xde\x57\x4b\xdc\x71\xa4\xfa\x86\x29\xab\x3f\x23\x42\x3c\x47\x36\x1a\x85\xec\x37\x69\x61\x3b\x6d\xdb\xd9\x23\xdc\x04\xba\x17\xd4\x5a\x27\x4a\x82\x2e\xb3\x2b\x51\x92\xaa\x41\x97\x0f\x75\xe2\xfe\xa1\x9a\x76\x08\xd3\x2c\x23\x0c\x12\x30\xec\xc2\x99\x4c\xab\x11\xbb\xf8\x23\x25\xf2\xf8\x60\xd7\x37\x47\x6e\x78\x60\xae\xc9\x23\x9b\x03\x3a\x86\xf7\x76\x0e\x79\x14\xca\x2d\x37\xd4\xf4\xcb\x34\x13\xd1\x2b\xaf\x74\x56\xa3\x62\x90\x8e\xa1\xa0\xe1\x44\x4b\x7c\xf2\x72\xa1\xd4\xd5\xe8\xa4\xc8\xd2\xf8\x91\xea\xa7\x5c\xc2\x50\x79\x63\xd7\x3e\x98\x3d\xc2\x11\xe9\x6d\xa6\xd0\x64\x51\x71\xbc\x66\xe1\xcf\x57\x9d\xe4\xcf\x01\x0d\x13\xed\xf1\xea\xb1\xe3\x5a\x21\x2f\x26\x70\xd8\xea\xc6\x99\x62\x4c\xd3\xbc\x6e\x29\x6a\xaf\x6f\x61\x79\xe0\xae\xef\xea\xb6\xd4\x25\xf7\xac\xbe\x69\x97\x96\x32\x8b\x90\xd3\x41\x19\x3c\xd7\xe4\x69\x35\x5a\x62\x0d\x19\xab\xfc\xa1\x96\xf0\xe1\xfc\x07\x8f\x4d\x94\x6a\xf6\x79\x0a\x3d\xe0\x4d\x3e\x41\x1a\xca\x44\xad\x81\xc2\xb4\x4d\x38\x09\x67\xbc\x29\xcc\x9d\xf3\x47\x35\x29\x87\xa3\x07\xe7\xb7\x77\x77\xd5\xd5\x80\x45\x97\x0b\x89\x8a\x4d\x61\xa6\xeb\xbd\x7b\x61\xb3\x6c\x8d\x2d\xa3\x24\x40\x0a\x52\xb6\x1e\xf8\x7a\xc5\xaa\x4d\x7a\x6b\x48\xc4\x98\xbf\x08\x0c\x83\x38\xb9\x83\x9a\x80\x08\x05\x4d\x57\xc7\x88\xa8\x53\xcf\xc7\xc0\xca\xfc\x24\xf0\xae\xeb\x27\x6a\x4d\x66\xde\xac\xe2\xf5\x7c\x37\xf0\x7d\xa9\x3d\x5d\xdf\x1f\xde\x3b\xf1\xee\xfb\xd5\x31\x65\x7c\x4e\xca\xe5\x34\x3f\x3d\x94\xbf\x4e\x94\xfe\x89\x9f\xd6\x83\xde\x27\x82\x87\xfd\xc0\x7e\x6e\x7b\x48\xa5\x58\x4e\x0b\x0d\x38\x27\x80\xed\xc2\x81\xab\xa5\xd2\xb7\x82\x4a\x8e\x08\x70\x79\x33\x72\x4d\x45\x2f\x61\x3a\x1c\xd9\x22\x2a\xd2\x2c\x7f\x90\x9e\xa2\x38\x1f\x85\xa9\x42\x9d\x13\xaf\xf4\x7b\xa8\xf2\x21\x8b\x78\x03\xc6\x82\x51\xdf\x58\xc2\x4e\x1e\xc4\x51\x83\xdf\x52\x64\xd6\xff\x94\xd6\xbf\x70\x10\xfb\x01\xcb\xd5\x28\x8e\x23\x33\x6c\xfb\x12\x36\xd3\x33\x23\x4f\xbb\xcc\x8f\x4c\xa8\x86\x9f\x54\xb1\x11\xa2\x2f\x9b\x13\x2d\x22\x17\x48\x03\x6f\x0e\xcf\x36\xa9\xe9\x8f\xac\xc9\x0d\x19\x6d\x8f\x0c\x67\x53\x29\xf2\x01\x3b\x5d\x4b\x15\x9d\xc2\x6d\x17\xd8\x69\xb0\x08\x68\x87\xf1\xb1\x9e\xe1\xca\x6c\x91\xc9\x44\x12\xb3\x46\x06\x9a\x41\x52\x2b\xe0\x2c\xf3\x50\xb5\x68\x25\x29\x05\x49\x06\x13\xc3\x71\xdf\x51\x33\x19\x0c\x46\x17\x41\x20\x9f\xe6\xa6\xe3\x62\x29\x2a\x00\x9e\x65\x08\x3d\x6d\x33\x81\xd3\xcb\x60\xdc\x38\x89\xa3\x65\xcb\x82\xbf\x14\xb1\xfd\xa7\x7f\x6e\xa2\x92\x2a\xf8\x49\xba\xb1\x9f\xfb\xa5\xae\xd2\x55\xb4\x26\xc9\x41\x5b\x20\x33\x45\x9a\x85\xb3\x54\x70\x55\x24\x26\xd2\xa8\xf3\x9b\x36\x8e\xd3\x35\xae\x1c\xa2\x7e\xc4\x42\x16\x7c\xa2\x41\xe8\x26\xdc\xa3\xb4\x64\x4a\x1f\xc2\x1e\xe8\xb6\xbe\x3e\xeb\xea\x62\xde\xa6\xa0\x6b\x01\x6b\xfb\x5e\x13\xa1\x34\x78\xd6\x92\x9c\x28\x4d\x5c\x6f\x08\x1b\x99\x8f\x95\x3a\xa5\xcd\xf0\x80\xc4\xe6\xfa\x56\xd4\x75\xcd\x33\xdc\x52\xa0\x2e\x9b\xa7\x85\xcd\xa2\x10\x56\x09\x00\x8f\xe3\xa5\x27\xe2\x63\xc6\x4f\xec\xad\x1b\xc1\xa3\xaa\xfb\x3e\x34\x51\x42\x64\x42\xc8\x57\x8f\xd7\x49\x6c\x5c\xdf\x15\x45\x3a\x47\xc2\xe1\x58\x6b\x10\x06\x60\xcb\xcc\x74\x7d\xb1\x36\x5f\x1b\x8e\x8a\x74\x08\xfd\x1e\xc7\x97\xe2\xa7\x4f\x7d\x61\x6b\x29\x4d\x7a\x20\xf9\x5f\xe0\x45\x8d\xc4\x8e\x8f\x1b\x84\x2e\x3a\x61\x1a\xc7\x66\xe4\x65\x68\x1c\x60\xcf\xbd\x86\xcd\xa6\xc9\x59\x9b\xe4\x76\x48\x22\xdc\xae\x28\xb1\x8b\xf2\x1f\x3e\x76\x8a\x8a\x6b\xd6\x64\xf1\xda\x8c\x7f\x55\x5b\xaa\x1b\x8d\x90\x06\xad\x35\x66\xd0\x92\x89\x6b\x8f\x60\xea\x67\xd6\x54\xf1\xa0\xf7\xcf\x1b\x8a\x7f\x7a\x37\x65\xd8\xa8\x14\x5f\xd3\x9a\xbb\x03\xfa\x58\x4b\x49\x9d\xfd\x84\xec\x0a\x1f\x2b\x23\x44\x8a\x1b\x91\xa0\xae\x17\xbc\x94\x9d\x9b\xe6\x5f\x57\x7a\x7b\x03\x70\x55\xb4\x34\x1d\x63\x8d\xa0\xc2\xbd\x8c\x38\x5d\xb5\xd9\x8c\xc2\x9f\x5f\x53\x64\x24\xd7\xc8\x9c\x60\x49\x71\x93\x80\x4f\x02\x5f\x58\x58\xb4\xbf\xa8\xb0\x5a\xfb\x41\xe9\x84\x12\xf9\x1d\x34\x31\x1c\x25\xdf\xe1\x05\x47\x14\xef\x3a\xff\xbf\xf5\xd8\xc4\x6b\xee\x5f\x23\x98\x14\x97\xc1\x61\xf9\x45\x86\xa6\x5a\x57\x5a\x45\x1f\x19\xf3\x9b\x28\x89\xa3\x9c\x79\xbc\xac\xf6\x2b\x16\xc4\x7f\xc9\xe6\xdc\xf1\x81\xb9\x71\xe7\xb3\x04\xaa\xc5\x4e\xbe\x11\x28\xee\x9c\xff\x1e\x11\x15\xe3\x91\x02\xc5\x42\x73\x4c\x8d\x92\xcc\xd0\x3c\xe4\xf6\x65\x84\x8a\xfc\xc3\x88\xa0\x58\xe3\x18\x55\x3b\xa0\xc0\xb7\x34\x61\xc4\x6d\x0a\x88\x85\x25\xb7\xf5\xab\x7f\x93\xaf\x75\x5f\xd7\x67\x31\x66\x54\xc8\xe6\x10\x94\xa0\x42\x0c\xba\x1a\x74\x48\xdc\xae\xc5\x8c\xde\xa4\x74\x41\xf0\x2d\x80\x60\xbb\x22\xba\xa3\x99\xfd\x58\x25\x0a\x55\x56\x99\x49\xd6\x2f\xd2\x1c\x9e\x35\x95\x99\x0e\xd0\xd2\xb8\x1d\xd4\x18\x1a\x0a\x9b\x17\x79\x5b\xe9\xe2\x60\x10\x86\x71\x49\x81\x2a\x12\xd7\xb8\x38\xc6\xe1\xe0\xf1\xea\x09\xb8\x24\xd3\x23\x56\x31\x15\x81\x2f\x38\x53\x63\x23\xd1\x29\xfe\x4f\x74\x4b\xed\x2e\x4a\xb7\x32\xb6\x4e\x57\x0b\xbc\xf7\x16\xbd\x6d\xd4\x80\x3e\x0a\x5c\xc7\xfc\x89\x36\xfa\xc6\xc0\xf1\xb6\x26\xf4\xb6\x45\xfe\x5e\xd1\x82\xee\xa7\xdd\x8a\x30\xf4\x00\x7a\x39\x58\x13\xbb\xbb\x3b\x79\x41\x64\xb0\xf7\x86\x73\x79\x83\x74\x64\x21\x04\xe4\xe7\xf6\x2e\x28\x91\xfb\x99\xae\x87\x4e\x6c\x95\x1e\x16\xb5\x3a\x48\x7f\x51\x91\x22\x6c\x06\xaa\xed\x79\x07\xa1\x98\x0c\x3b\xb4\x1c\x29\xe1\x26\x2d\x65\x69\xe8\x56\x3b\x84\xcb\x93\x9a\xeb\x6c\x9d\x13\x0a\x7c\xf1\x77\xe9\x79\x88\xb8\x66\xeb\xd0\x21\xb6\xbb\x67\x68\x23\x6d\xbf\x4f\x62\x14\x62\xc1\xaa\x15\xb5\xfd\x7e\xa9\x74\x97\x7e\x86\x4d\x89\x40\xed\x26\xed\x68\x34\xcd\xde\x43\x18\x8c\xfa\xd3\x0f\x69\x1d\xe1\xe2\xb9\x6a\xe6\xa0\x09\x87\x66\x79\x4b\x9f\x2a\x95\x8c\xfb\x3d\xdd\x32\x79\x90\x5e\x00\x8c\xac\x10\x56\xa0\x94\x70\xab\x46\x7b\xa6\xb8\xa1\x2e\x37\x52\xc5\x66\xa9\xa7\x8a\x15\x79\x28\xc5\x6d\x73\x32\x70\x66\x30\xea\x0f\x24\xbf\x86\x37\xbd\x89\xa5\xc6\x27\x53\x39\xf9\xaf\x74\x16\x6d\x9c\x26\x7d\xfe\x0c\x4a\xfa\xb7\x60\x33\xf8\x44\x35\x13\xec\x6b\x05\xc9\x61\x7b\x35\xdf\x37\xc8\x86\xf1\xf1\x14\x17\x42\x95\x34\x8c\x47\x6d\xdf\x78\x9c\xe9\xfa\x59\xab\x09\x79\x60\x14\x51\xdb\x53\x23\x15\xcf\xcf\x77\xb2\x71\x9e\x47\x26\xa1\xc6\x9d\xc6\xeb\xa0\x72\xca\xd5\x6a\x19\x04\xd9\xe9\x36\x0f\x1f\xec\xf4\xa2\x9c\xba\x18\x7a\xbc\xe7\x9c\xea\x62\x9c\xdb\x51\xd6\x1d\x72\xf5\x4c\x86\x97\xfd\x02\xbf\xa4\xab\x67\x6f\x22\xd9\x10\x5e\x9e\xf4\xa9\x1a\x92\x9f\x9e\x1c\xa2\x9e\x3d\xdd\xd6\xd3\x4f\xf3\x52\x00\xc2\x1e\x6b\xef\x53\x5a\x6e\x0c\xe4\x51\x42\xf2\xc7\x90\x0f\x0a\x83\xa6\x27\x75\xfc\x9f\x79\x90\x1a\x25\xec\xab\xf5\xd9\xb5\xb9\x39\x5e\x3a\x4f\x41\xb6\x47\x67\x3d\xdb\x5b\x30\xe8\x4e\x07\xa2\x5a\xa8\x32\x85\x4f\x61\x24\x02\xff\xed\xd2\x9b\xbd\x2b\xb4\xff\x90\xa8\x9f\x85\xd5\x77\x20\xc5\xca\x30\xfb\x11\x34\x67\xea\x81\xef\x39\x50\x6d\x09\x98\xa1\xcf\xd4\x60\xd1\x8f\xe9\x35\xbb\x69\xa7\xea\x3e\x04\xf1\xa6\x10\x61\x3f\x2e\x77\x3c\x7b\x37\xe8\x0b\x26\x52\x4d\xb0\x2c\x7d\x4c\x7a\x40\x7c\x52\x2a\x22\xd2\xcd\x46\xd8\x4f\x2f\x1b\xf7\x39\x4f\xae\xc5\x40\x7c\xd2\x04\xa8\xaa\x62\x15\xe0\xbe\x60\x8e\xf6\x4e\x7c\x4f\xe0\x91\xae\x9e\x59\x7e\x42\x79\x95\x28\x29\xd2\x71\x81\xaa\x1c\x93\x27\xc2\x05\xa1\xeb\x00\x49\x17\x1e\xb7\xf5\xf1\xcb\x38\x2e\x52\x2c\x75\x78\x38\x44\x44\xce\x26\xcd\x3b\xf1\xe5\xcd\xa9\x76\xd4\x33\x1d\x9b\xc4\x51\xee\x06\xd9\x44\xb4\x95\xd6\xa5\xa8\xb9\xfa\x3c\xe1\xe0\x0b\x5c\xef\xd3\xd5\x4e\x54\x89\xcf\xe8\xb0\xf0\x94\x4b\xe6\x49\xa8\x12\xfc\x9f\x0b\x2e\xaf\xa4\x9f\x72\x24\x80\xbe\x5c\x8e\x9f\x45\xe2\xb5\xb7\x2b\xe5\xca\x28\xe9\x45\x4b\x4b\x36\xb3\x09\xea\x54\x82\xe4\x6a\x39\xfd\x90\x6d\xba\x0e\x34\xd6\xa7\xb9\x0d\x66\x8f\x74\x7a\x76\xc9\x0c\x4d\x91\x66\x60\x76\xe5\xbe\x97\xba\xfa\x0b\x9e\xb5\x2e\x8b\x42\xf2\x5e\x2d\x3f\x67\x0f\x49\x10\x3e\x56\x30\xf4\x55\xb3\xf6\xb0\xb7\x09\xf7\xe0\xa2\x90\x17\x7c\x04\x25\x76\xd7\x5f\xa9\x56\x82\xe3\x07\xf2\x36\xf0\x8f\x08\x91\x2a\x41\x83\x16\x47\xbb\xaa\xa6\xbe\xff\x54\x31\x76\xdd\x2b\x6b\xba\xec\xd5\x82\x40\x2c\x70\x82\x36\x0b\xb3\x8c\x61\xf3\x09\x07\xd1\xe3\x6e\x12\x25\x5b\x22\xb9\x5e\x7e\xdb\x08\x44\x77\x4f\x7c\xe7\x6c\x77\x57\xdb\xb5\x24\x12\x40\xb8\xf3\x86\x0a\xf0\xd0\x34\x66\x9b\x59\x50\x71\x51\x5a\xcc\x70\xda\xc0\x73\x94\x5d\x72\x8f\xb9\x97\x26\x82\x22\xdc\x39\x34\x25\xed\x30\x0d\xc2\xc8\x87\xd8\x14\x4c\x4e\x46\xef\x1e\xcf\xe6\x26\x6e\x15\x35\x9a\xcf\x15\xdf\x95\x08\xaa\xce\xa8\xad\xfa\x39\x3f\x62\x86\x5c\x06\xaa\x8a\xf3\x2e\x7d\x27\xac\xe9\x4d\x17\xca\x80\xb8\x40\x18\x88\xe1\xf2\xff\x7e\xe9\xfd\xd6\x67\x7a\x48\xea\xd3\x26\x0d\x98\xc3\x0b\xd4\x12\x73\xb8\xe8\xea\xe5\xc9\xf8\x71\x23\x43\x76\x98\x8e\x41\x5f\x8d\xa6\x34\x37\xc0\xf9\x44\x91\x65\xa5\xa3\x71\x5c\x79\x54\x2d\xea\xfe\x0e\x5e\x90\xc0\x94\x9e\x50\xf8\xc1\x91\xcd\x56\xa2\x1c\x79\x20\x1c\x0e\xb4\x9d\xf8\xb8\xdc\xd9\x67\x9e\xaf\x52\xf8\x22\x4b\x7b\xe3\xd0\xa1\x3d\x5f\x76\x68\xcf\xda\x60\xfb\x13\x0e\x69\xbf\x18\xa6\xc3\x61\x54\x58\x8b\x74\x0e\xbe\xec\x82\xca\xe6\x2f\x4c\xb1\x9f\x1e\x3d\xf8\x32\x78\x09\x57\x07\x36\xb3\x54\x04\x60\x04\x49\xa0\x38\x20\xd0\x4b\x41\x54\xf1\xfd\x06\x16\xb8\x8e\xcd\x0b\xb3\x18\x47\xf9\x40\x3a\xe2\x30\x85\x3f\x80\xa5\xe7\x13\x55\xf1\xf8\xba\x81\x29\xc0\xd6\xbd\xa2\x1a\x17\x57\x9a\xda\x1d\x3d\x1b\x46\x3d\xdb\x63\x59\xcf\x26\x6e\x7c\x35\x40\x16\x9b\xd0\xe6\x33\xb4\xff\x5d\x15\xa0\xda\xff\x52\x05\xa8\x3e\x86\x02\x3d\x60\xd5\x7c\x5c\x7a\x31\xe0\x5e\x94\x87\x55\x6e\x12\x31\x08\x5b\x8a\xc3\xbe\x40\xf8\x76\xe9\x99\x97\x6c\x5e\x44\x7d\x40\xbe\xb8\x51\xaf\x44\xa0\x4f\xed\x5c\x94\xb3\x47\x3a\x47\x0f\xce\x3f\xaa\x18\x05\xef\xc0\x20\xc3\xbe\xb1\xe4\x2b\xe2\x15\x94\xdd\x70\xbc\x6b\x42\x77\x84\x93\x2b\xb8\x23\x04\x28\x9f\x23\x22\xc5\xbe\xe5\x58\x17\x11\xf5\xae\x6e\x65\xde\x5c\xd0\x7e\x58\xe6\xd3\xa5\xd0\x88\xe8\xe3\x4f\x50\x05\x85\x9f\x07\xfb\x2b\x32\x9a\xb7\xb1\xbb\x80\xe0\x39\xa7\x1d\xcc\x7d\x35\xe8\x96\xd8\xd5\x7c\x44\xf2\xd4\x2d\x2d\x28\xe7\xc8\x78\x7e\xaa\x79\xf9\xaf\x4d\x6d\xba\xb9\xb9\x4e\x98\x8e\x33\xa9\x52\xe2\x2a\x3e\x0a\xd4\x58\xd5\x47\x53\xc4\x27\x44\xdd\xe4\xc6\xfa\x71\x7d\x6f\x06\x0a\xd9\xfd\x66\x93\x16\xc9\x92\x49\x42\xa6\x6e\xd7\xa8\x69\x54\x20\xb7\xd5\xa4\xd4\xfa\x54\x34\xfc\x4c\x67\x14\x85\xcb\x28\x75\xc1\xc1\x20\x4f\x15\x2c\x98\x9a\x57\x9f\xd6\x07\x3e\x7c\xf0\x70\xa7\x6f\xc6\x71\x0a\xa6\x0d\x45\x64\xc5\x91\x93\xa0\x99\x55\x57\x4c\xed\x7a\xc9\x1b\x36\x15\xa5\xe7\xa6\x53\x03\xc9\xc7\x43\x9e\xbd\x15\xb1\x5b\x85\x4e\x3c\x4e\x37\xc5\xc7\x70\x5c\x22\x83\xeb\x0a\xb3\x36\x34\x39\xe6\xbf\x04\x0d\xaa\xa2\xd7\xb7\xc8\xa9\x89\x3e\xcc\xce\x38\x8b\x26\x75\x56\x19\x20\xc6\x64\x9b\xd8\xf0\x8c\x09\xc3\x4f\x0a\x41\xfc\x93\x4a\x04\xa2\xa8\xcc\xa1\x5d\xe5\x97\x8e\x34\x6d\x5d\xc1\xc2\xd6\x9b\xa8\xe1\x17\x6d\x5e\x60\x9a\x12\x37\x71\x1a\xbb\x80\x4f\xbc\x6f\x1b\x8f\xe2\x28\x8c\x6a\x05\xec\x0d\x72\xe7\x7c\xac\x10\x16\x23\x6b\x42\x4b\x25\x0c\x37\x12\xe0\xc2\x0e\x4e\x80\x65\x92\x4e\xf5\x1b\x37\x15\x6c\x21\x1a\x9a\xbe\x45\xd7\x02\x51\xef\x29\x44\xca\x82\x8a\xa2\x8f\xc1\x8a\xfe\x61\xe9\x45\x7f\x6f\x63\xd3\x09\x68\xd6\x83\xb2\xf6\x4c\x3c\x89\xa3\xc9\xfa\x76\x7f\xcb\x13\xcc\x52\xae\x2d\xa1\x07\xfd\x8a\xb0\x45\xfa\xca\xf0\x25\x95\x63\x3c\xda\x55\x33\x26\xac\xb1\x28\x0a\x45\x95\x35\x00\x28\x93\x01\xad\x52\xaa\x51\x9c\x2e\x17\xdc\x70\x92\x79\xdd\x62\x54\xba\x91\x66\xff\x09\x35\x96\x3f\xce\xc7\x98\xcf\x3c\x7a\x90\xc7\xa5\x48\x77\x4f\x28\xeb\x76\x35\xd2\x39\x44\xc9\x37\x15\x9d\x83\x53\xae\xf4\x03\x54\xdf\x53\x08\x25\xd0\x73\x3c\x54\xbd\x50\xd4\x67\x30\x4f\x86\xf2\xdd\xa7\xba\x68\x76\x1f\x96\x55\x88\x0d\xaa\xb5\xcc\x53\x2c\xb0\x6c\x42\x16\x80\x6d\xa8\x1b\xe7\xfc\x11\x14\x0f\x59\xe8\x41\x35\x0d\x19\x7d\x2d\xba\xa0\xaa\x9f\x75\xa9\x36\xde\x6d\x93\xfc\x80\x87\xe9\xfd\xa6\x52\x69\xdc\xdf\xad\x0d\x49\x2d\xcc\x1e\xe1\x77\xf9\x63\xfc\x26\xee\xe6\xf3\xd2\x73\x0c\xfd\x41\xe9\xb9\x37\x06\x6c\xc0\x91\x35\xfd\x88\xd6\x05\xf2\xec\x73\x8a\x38\xe9\x0a\xac\x28\x4c\xf2\x03\x13\xc5\xa8\x1c\x65\x21\x09\x48\xce\x1e\xe1\x70\xfe\xd7\x55\x21\xfb\xd7\x9b\xa8\x02\x47\xd1\x70\xc4\xc9\x07\xd6\xec\x6d\xc5\x15\x78\xa1\x26\x75\xe2\x79\x03\x57\xcd\xda\x23\xb8\x50\x54\xfa\x91\x6d\x20\x41\x7d\x02\x5d\x7e\x44\x91\x1f\x96\x6a\x27\xa3\x3b\x4b\xc5\xd5\x07\x9f\xa0\xca\x2c\x92\xe0\xdd\x93\xea\x91\x71\x10\xa8\x99\x24\xdf\xd6\xed\xff\x7f\xa2\xf4\x5c\x7f\xbf\x54\xd6\xe2\x3c\x16\x83\xdb\x31\x87\x66\x3d\x38\x69\xf6\x88\x68\x99\x76\x77\x42\x0d\x5f\x3a\x7c\x50\x45\x37\xbc\x42\x45\x56\xab\xba\x1d\x3e\x56\x1e\xd1\xbe\x36\x4a\xf3\x71\x86\x50\xe8\x39\x11\x3f\x2e\x7d\x12\x73\xa9\x61\x82\x81\x18\xa5\xc7\x99\x9f\x60\x80\xf3\xfb\x4c\x21\x41\x3e\x53\xb8\x89\xcc\xc6\x51\x9f\x64\xd2\x9c\x02\xdd\x6e\x30\xbe\xf1\x49\x77\xa7\x01\x7d\xa6\xb3\x94\x8e\x93\xda\x16\xe3\xf9\x00\x3e\x51\xc1\x6d\x2f\x8d\x63\x93\xe5\x04\xca\x00\xbe\x63\x4b\x53\xff\xa3\x20\x2c\x83\x01\xb4\x28\x50\x50\xc3\xe6\x81\x87\xe4\x01\x48\xd4\x3d\x37\x74\xd5\xec\x43\x5d\x29\xfd\xa7\x78\x2d\xfc\x67\x81\x2f\xc4\x7f\x5a\x1e\x50\xd7\xf3\xa8\xc2\x9a\x5c\x46\x8c\x03\x7b\x79\xa3\x54\xe4\x8b\x7b\x27\x4a\x81\xe3\x5c\xa9\x6a\x96\x40\x12\xca\x25\x7b\xe3\xf4\x10\x95\xb5\xf0\xbd\xe0\xb6\x76\xac\x7e\xd5\x05\x63\xef\x60\xa6\x02\xf5\xaa\x7b\xa5\x1a\xf8\x04\xe9\xb3\xc8\x52\x54\xcb\x08\xb5\xe4\x07\x80\x05\x10\xc1\xb5\x06\x6a\xb8\x9e\xcd\x97\x45\x84\x5c\xca\x8c\xd5\x8f\xf0\xf1\x44\x0c\x6f\x16\xe5\x61\xdb\x0f\x53\x6d\xe8\x71\x10\x2c\x7b\x9c\xdc\x9f\x8a\xec\x05\xdf\x96\x0f\xd2\x71\xdc\x6b\xb7\xbe\x3e\xcb\x4f\xfc\x6e\x4d\x26\xa8\xba\x01\x49\xc2\x15\x2b\x0c\xc9\x98\xb7\x1c\x39\xfb\xa6\x62\x81\xda\x74\xd5\x85\x74\x39\x5d\x34\x09\xa6\x56\xd1\x18\xe1\x6b\xe2\x13\xd5\xfa\x1e\x46\xaf\x91\x54\x3b\x3d\x3c\xcc\x2e\xbd\x4f\x8b\x85\x8f\x9b\x3a\xd1\xd5\x3e\xca\xbc\x70\x0e\x0c\x2c\xe4\xc6\xf8\x58\xc5\x14\xa4\x93\x51\x44\x4b\x4b\x39\x74\xc9\x99\xf7\x08\x59\x0c\xca\x60\x9f\x29\xe5\xbb\xcf\xe1\x5d\xf8\x1f\xa6\x7e\xfd\xf0\xc1\x4e\x94\x2c\xc5\x40\xca\x79\x41\xe4\xe3\x58\x6c\xc2\xb8\xa6\x93\xf5\xac\x78\x5d\xf3\x5b\x5c\x0c\x54\x38\x7b\x51\x8d\x94\xe4\xab\x96\x87\x8a\xf4\x60\x7c\x75\x61\x7c\x3c\x55\x24\x7a\xe5\x95\x4e\x3f\x9b\x02\x6f\x5c\x52\xe0\x8d\xda\xd0\x23\x81\xa2\xf3\x7d\xd5\xbf\x32\x1e\x58\xeb\xc8\x5d\xc5\xde\x73\x6f\xab\xda\x21\x68\x0b\x00\xd4\xe8\x98\xd5\x9f\x77\xf4\x29\xb5\x39\xac\x86\x9c\xb9\x6f\x92\xde\x20\x6a\xd7\x05\x41\x95\x81\xd0\x70\xbf\x29\x02\x58\x52\xb0\x72\x54\x2d\x6f\x06\xbe\x0a\xf0\xa6\xea\x6d\x82\x0d\x61\xbf\x57\x54\xbe\x5d\x53\xbc\xa5\x2b\x44\x89\xa3\xc5\xce\x1c\xa9\xd1\xfd\x1a\x3b\x07\xad\x37\x8c\x20\x3c\xd8\x55\xae\x8c\x31\x53\x28\x29\x5c\x55\xd0\xfc\x33\x58\x24\x0c\x42\x9c\xba\xf7\x43\x87\xaa\xff\x2e\x73\xe6\xe3\x68\xe0\x8f\x1e\xf4\xf4\xf0\x2e\x97\xba\x3e\xb5\xc4\x5e\x79\xa5\xb3\x3a\x88\x0a\xbb\x6a\x72\x60\x06\x9d\x09\x74\xdd\xa2\x0d\xad\x47\x3e\x48\x7b\xbd\x35\x05\x2e\xfc\x27\x0a\x5c\xf8\x4f\x1c\x95\x48\x9e\xc6\x2d\x4d\x83\xc0\x90\x22\xc1\x66\xd4\x56\x6c\xdc\x7b\x58\x53\x71\x9f\x54\xa8\xd6\x9b\x6a\x34\xf6\x76\xa0\x05\x7e\x02\x9f\x46\x5e\x54\xf5\xe1\xdf\x41\x44\x25\x3a\x4d\xf4\x74\xe1\xdb\xef\x23\x56\xc2\xc2\xd8\x02\x04\x02\x3f\xc2\xbd\x59\x27\x46\x3d\x7b\x44\x56\x89\xa6\x53\x3e\xde\xb0\xe6\x16\x3a\x8b\x46\xaa\x01\x5c\x95\x08\x74\x85\xa2\x21\x61\xcc\xd2\x74\x89\xd3\x0d\x80\x88\x40\xc9\xc0\xc7\xc8\xf8\x04\x28\x97\x17\x51\x31\xae\x12\xb0\x19\x95\xf1\xbd\x83\x9b\xe2\x13\x5c\xba\x53\x4c\x79\x5e\x18\x04\x2e\x4f\xa5\x7f\x34\x47\x9c\x14\x51\x32\x4e\xc7\x79\xdb\xf7\x8d\x8f\x6b\x06\x9c\x7f\xa0\xd4\xb1\x09\x12\xe5\xd1\xf8\xc9\x03\xf4\xf8\x1d\x37\xb6\x1b\x59\x01\x0e\x02\x45\xc6\xb6\x12\x64\xff\xcb\x1f\xab\x91\xb3\xbf\xaf\x06\xfa\xfe\x90\x5a\xdb\x4c\x3d\x5f\xaa\x2e\xda\xdf\x57\xbd\x55\xe8\x10\x32\xc7\x8d\x23\x1b\x3b\x34\xeb\x20\x43\x52\xcd\x5c\x1d\x44\xf9\x48\x11\x9b\x88\x66\x64\xf5\x7b\x7c\xec\x9a\x5b\xb1\x4d\xfa\xc5\xa0\xad\x24\x1a\x2e\x29\x00\xcb\xb6\x12\x52\x9e\xae\x1f\x8b\x1f\x4b\xa2\xbe\x05\xd0\x48\xa9\x29\x79\x3d\x94\x69\xcd\xa1\x85\xce\x20\xea\x0f\xaa\xdd\x79\xe8\x90\x1f\x55\xac\x22\x07\xd7\x88\xab\x6c\x08\xee\x6b\xab\xa9\x8b\xb0\x6c\xc3\x65\x2c\x99\x06\x8f\xbb\x31\x15\xc4\x1d\x79\xa1\x72\x59\xb6\x17\x81\xc5\x55\xa1\xd2\xe8\x01\x49\x7b\xc7\xc7\xe1\x8b\xb1\xe9\xf5\xb8\x5a\x8b\x2e\x2e\x88\xbd\xf8\xd8\x25\xe9\xf9\x20\xca\xa4\x37\x88\x6b\xdf\xd2\xec\x3c\x5b\xb5\x6d\x1d\xe6\x8b\x6d\x5f\x9b\xdf\xa4\x77\x87\xf7\xc1\xbd\x30\x18\xcd\xdd\x0a\x89\x48\xc5\xae\x07\x7c\xe3\x87\x75\x0f\x45\x39\x98\x7e\x4a\x72\x67\x8f\x58\x7e\x5b\x91\x8c\xde\xd4\x6d\x71\xe6\x39\x75\x75\x23\xaf\xe0\xf7\xf9\xd4\x24\x4f\x15\x5d\xbf\x36\x88\x62\x93\x29\xf1\x4b\x4d\x2a\xc9\xc7\xaa\x98\x9a\xd9\x3c\x1d\x67\xa1\xb0\x96\xb2\x50\x5e\xa0\x6a\x0d\x17\x40\x6b\xc4\x0f\x64\xcd\x50\x82\xcf\x9d\xfd\xd2\xab\x98\x31\xab\x88\x13\x59\xab\x7e\x5a\x61\xa3\xfc\xd0\xc8\x81\xd6\xf3\xf3\xdb\x97\x15\xe7\xda\x3e\x35\xf8\xfe\x23\xac\x29\x20\xa4\x7e\x40\x8e\x0f\x46\xe5\x8d\x52\x31\x98\x5c\xa3\xe8\xb0\x36\xb6\x89\xa4\xf0\x51\x92\xe4\x81\x0b\x7e\x84\xa4\x3a\x84\x7c\xb4\x36\x4f\xef\xb3\x8b\x7c\x9c\x8f\xa2\x90\x59\xd6\x1d\xfe\x5e\x65\x63\x67\x54\x25\x33\x4b\xc3\x65\xbb\x64\xe3\xd8\x66\xfb\x3c\xc9\x3f\xea\x0d\x6c\x14\xc8\xa2\xd4\x28\x23\xc5\x5a\xd0\x55\xa2\xf8\xc3\x39\x2e\x42\x94\x6b\xa5\xce\x3e\xb7\x9b\x84\xbb\x97\xd2\x6c\x58\x6f\x6a\xfd\x21\x5d\xa1\x7c\x75\x2d\x59\x12\xe9\x5b\x35\x9c\x14\xa8\xe1\x24\x15\x07\xe4\x45\x1a\x2e\xe7\x8f\xf9\xe0\xe2\x02\xba\xa4\xe8\x5d\x4e\x70\x91\x78\x96\x8f\x4e\x14\xa3\x28\x37\x7d\xdc\xf0\xa7\x13\x45\x64\x02\x20\x24\x0c\xb7\x29\x11\x64\x51\xd0\x52\x91\xfc\x5d\xa3\x84\x01\xee\xe8\x58\xd9\xfa\xc6\xd7\xbc\x18\x78\xf5\x0a\x44\x91\xc0\x3b\xf1\xfb\x94\xd1\x6f\x9f\xd5\x46\x16\x12\x76\xd8\xb1\xad\x6e\x83\x87\xca\x07\x36\x06\x45\x03\x93\x0d\x07\xbe\xcd\xf2\x79\x83\xd4\xe6\x7c\x27\x1f\x87\x83\x16\xd5\x0e\xe4\x6b\xd5\x4f\x4c\x1a\x48\x80\xbe\x39\xee\x45\x8e\x41\x1e\x0d\xe4\x93\x8a\x99\xf0\xa4\x16\xc1\xb6\xb1\x25\xcd\x07\x1d\x22\xec\x42\x8a\xc9\x27\x0a\x7b\x37\x1e\xe5\x45\x66\x0d\x6a\x44\xb0\xe4\xbb\xba\xde\xaa\xef\x6a\xe6\x5d\x34\xfd\xbe\xf0\x2e\x4a\xc1\x52\xe1\xf2\x8f\x7b\x39\x5a\xbb\x58\xd4\x3a\x9f\xfb\xe8\xbb\xb5\x84\x29\x2e\x69\xbb\x51\x9b\x36\x0c\xed\x08\xc3\xa8\x88\xfd\x77\xd1\x36\x13\x51\x09\x9f\xff\xbd\x8f\x70\x4f\x34\x4b\xe4\xd7\xbf\x99\xc6\x52\x9d\xc6\x8a\x47\xdf\x95\x8f\x15\x26\x75\x39\x8b\xf2\x81\x4c\xd9\x21\xce\xbc\xa4\x14\x00\x2e\xa9\x1a\xd6\x92\xc9\x86\x4c\x0d\xe3\x86\xac\x9f\x97\xae\xd6\xfb\x4a\x52\xf4\x9a\xa3\x18\xa0\xa2\xe9\x92\xcd\xec\x9e\xea\x4e\x70\xef\x18\x87\x46\x30\x7f\x41\xd1\xa0\x9d\x57\xdd\xb4\x63\x58\x84\xd8\x2f\x67\x5c\x33\x32\x4a\x4c\x18\x92\xaa\xc7\x8c\x2f\x21\x1c\xa0\xef\x93\xd8\xb9\xfa\x1d\x55\x3b\x59\x70\x26\x54\x97\xb8\x9e\x4d\x9f\xa5\x97\x8e\x7e\x39\xb0\x3d\x7c\x5c\x7a\xd9\xec\x7c\x39\x62\x68\x22\x5e\x01\xa0\x01\x3c\x66\x06\x3f\x2c\xa6\xc1\x53\x47\xaf\xd8\xcc\xf4\x65\x50\x19\xfd\x83\x53\xf0\x4c\x7c\xf2\x05\xa2\x7c\x66\x88\xbc\x5a\x1c\xae\x37\x3c\x17\x1a\xa6\x17\x17\x3a\x2b\xf9\xb3\xfb\x2a\x0b\xbf\x1f\xc6\x00\x99\xf1\xf7\x61\x4c\x1c\x27\x91\x13\x8a\xbb\x4c\x88\x44\x99\x94\xa1\x15\xe3\xde\xb5\xbb\xf7\x4b\x4d\x63\x92\xab\x26\xe3\x5a\x3d\xec\xcd\xc7\xb0\x31\x78\xf4\x90\x45\x73\x0d\x3e\x3f\x75\x7b\x49\xd1\xae\x86\xe3\xe2\x61\x8d\xb6\xf8\x2e\xbd\x67\x78\xdd\x2f\x4f\x54\x73\xf3\x32\x66\x3b\x24\x66\xa7\x07\x2c\x1a\x2c\xbe\x67\xcd\x8d\x44\x16\x4a\x42\x45\x1a\xff\xb2\x57\xc9\x7c\x5d\x2f\x15\xfe\xfd\x6c\xa0\x5a\xb1\x1c\x27\xb0\x6e\xa5\xce\xf3\x4e\x2b\x07\x9a\x14\xf9\xc3\x2e\x55\xf9\xf5\xa7\x48\x0b\x55\x98\x85\xaa\x6b\x71\x73\xd3\x9e\x3d\x1e\x7e\x88\xfe\xff\x91\xaf\x74\x95\xeb\xf9\xb9\x89\xb7\x02\xbf\xf2\xef\x11\x35\x15\x62\xfe\x87\x99\x7a\x95\xba\x39\xbf\xfd\x95\xae\x83\x7b\xac\x3d\x3d\x51\xdd\x99\x7d\x28\x10\x61\x11\xee\x01\x50\x54\x72\xe8\x26\xa1\xe9\xb4\xb7\x96\xe7\x3c\x74\x02\x9b\xff\x59\xa0\x78\xc7\x3f\x2b\x3b\xd3\x31\x20\x35\x7b\xc3\x34\xe9\x8d\x43\x62\xa3\x38\x2a\xac\x0e\x9b\x0a\x18\xb2\xe9\xa5\x5b\x06\x6b\x79\x14\x9a\xb8\xad\x38\xe6\x4a\x1f\xe6\x72\x11\x17\x76\xf4\xdf\x68\x7d\xf5\x28\x0f\xc7\x79\xfe\x80\xa2\x6d\x58\xd7\x62\xf4\x9b\xa5\xe7\x38\x3b\x59\xfa\x59\x5b\x66\xcd\x91\xae\xa7\x62\x5c\x61\x86\x61\xd7\x1b\x75\x3e\x62\x4b\x81\x2e\x0a\xd3\xdb\xe3\xc9\xf1\x37\x28\xa5\x80\xc7\x85\xac\xb8\xd3\x50\x57\x82\xe1\x3e\x1d\x99\x96\x17\x7a\xa6\xba\x91\x6c\x3c\x72\xd5\x7f\x29\x91\xd2\x55\x4a\xed\xf4\x51\x07\xa1\x58\x49\xb3\x88\x6d\x16\x42\x2e\x8a\xc5\x44\xa2\xca\x0d\x33\x1d\xf5\x02\xe7\x3e\x87\xfe\xa6\xe9\x8f\x4d\xf6\x98\xaf\x37\x5c\x43\x1a\x87\x87\xf4\x59\x59\xd3\x69\x50\x1d\xda\x6b\x78\x4a\x12\x96\x2a\x95\x8d\x77\x29\x32\xc0\x06\xd8\xac\x0d\x20\x28\xd8\xc0\x07\xa5\xe7\x38\x60\x03\xc6\xb8\x48\x0a\x0a\xe1\x48\x6e\x61\xfb\x01\xff\xb9\x89\x1d\x8b\x3b\x00\x61\x27\xfe\xe1\x2a\x4a\x9f\xfc\x0f\xb5\x96\x75\x58\x98\x22\xa5\x61\x0c\xfa\x05\x85\x76\x99\x75\x38\x98\xe9\xf1\xc6\x4e\x38\xb0\x2a\x89\x63\x29\x46\x55\xed\x7b\x43\xf5\xba\x6c\x66\x43\x0c\x0d\x3a\x50\xdf\xa1\x59\x39\xd6\x3b\xde\xf6\x1e\xf1\xe3\x04\xfb\xb0\x67\x81\x17\x7d\x9c\x64\x6f\x1d\xab\xa8\xab\xf6\x82\xbe\x41\x8c\xa7\xea\x28\x3e\x3e\xf1\x38\xe2\x5f\xec\xfa\x39\xa4\x67\xb0\xad\x69\x93\xfc\xf1\x5f\x85\x8d\xa0\x67\xf4\xea\x2f\x52\x44\x8d\x58\x78\x8f\xe6\x15\xbf\x88\xd7\x08\x1a\xd8\xbf\x86\xae\x14\xac\x47\x67\xaa\x2b\x35\x37\xd7\x89\x92\x15\x16\xe4\xa0\xef\x40\x24\x8e\x40\x9b\x8f\xa7\x16\xf3\xd1\x83\xb3\x9d\xc4\x02\xf8\xde\x72\x8c\xf8\x6f\x97\xaa\xd7\xf7\xb6\x6b\xdd\x86\x26\x2f\x40\xf0\x8d\xa5\xd1\xea\x2a\xb8\xf3\xcd\xd2\x23\x45\xda\x13\x55\x86\xe0\x55\x8a\x20\xe5\x3e\x59\x14\x78\x13\xe2\x91\x98\xbd\xf7\xb7\xbf\xdc\x6d\x08\xfc\x7a\x51\x6e\xb2\xcc\xac\xb5\x15\x1c\x1f\x34\x1c\xa8\xb1\x6c\x29\xb6\xc1\x0d\x15\xd2\x8c\x4c\x94\x2c\x8d\x11\x95\xc2\x2e\x9c\xc5\xef\xf3\x89\x1a\x2b\xcf\x49\xe5\xe3\x0b\x14\x3c\xfe\x2c\xea\x1f\x0d\xa5\xc5\xa5\xc8\xa7\x11\x8a\x43\x74\xd6\xd5\x4a\x9f\x50\xa3\x48\xe9\x28\x4d\x64\xa8\xd5\x11\x22\x7b\xf0\xe7\xa9\x52\xeb\x2a\x27\x85\x4d\x7a\xf9\x1e\x9f\x09\x00\x3c\x29\x01\x18\x99\x05\xa1\xd3\x6d\xfd\xea\xdf\x64\x43\x74\x95\xb6\x22\x1f\x4f\xe1\x60\x66\x8f\x40\xa4\xa1\x30\x9e\xaf\x1b\x71\xc2\x2d\x45\xbc\x75\xcb\xcf\x7d\x17\xc2\xc9\x86\xb7\x89\x4a\x2b\x1f\x6b\x2a\xe1\x30\x4c\xb3\x1e\xcf\xe4\xcd\x3a\x32\x74\xc5\xac\x4e\xcd\xb8\xed\x8b\x6a\x0b\xf6\xd2\xe1\x01\x5f\x6b\x7a\xa0\xab\xd2\xf3\xf3\x64\xb3\x95\x08\xa2\x94\x3b\x3f\x57\x53\x5e\x9f\xea\x51\x75\xd1\x2a\x11\x6e\x8e\xea\x21\x60\x5e\xe1\xf1\xae\xf2\x38\x7b\xe1\x4f\x79\x52\x1d\x9b\x58\xd2\x97\x47\x14\x47\xf9\x88\x61\x35\xb0\xc1\xeb\x81\xea\xde\xad\x4f\x3d\xd4\x23\x2f\x54\x09\x7f\xd4\x83\x60\x56\xcb\x23\x36\x20\x6d\x27\xf3\x63\xd3\xc8\xca\xea\x53\xfd\xa4\xce\x31\x77\x57\x73\xcc\xdd\x0d\x3c\xf6\x73\x98\xae\x44\x36\x2f\x4c\x06\xe3\xe9\xb2\xc6\x79\xa7\x2d\x7e\x21\x78\x44\x4d\xc2\xc4\xe6\x35\x92\xd5\x75\xb8\xde\xa3\x07\xb7\x69\x4e\x70\x61\xfb\x0d\xe2\xcf\xbe\x5c\x9b\x26\xf4\x2d\xd1\x5e\xf6\x2c\xf0\x12\xd2\x73\xa1\x47\x06\x17\xf0\x19\xae\x0e\x96\xeb\x7a\xb0\xdf\xe1\xf9\x99\x81\xcc\x55\xe3\x1c\x1d\xe1\x79\x97\x1d\x54\xc1\x72\x2f\x33\x4b\x20\x2b\x04\xd0\xf5\x6c\xe0\x87\x10\xce\xaa\xb1\x0b\x12\xd4\xe5\x15\x2a\xe8\x80\x9b\xaa\x80\x70\x73\xaa\x4a\x43\x20\x9d\xe1\x68\x5c\xd8\x8c\xc6\xf9\xfd\x90\xd6\xa9\x9a\x12\xbc\xae\x43\xc5\xe9\xea\x63\x3e\x3e\x3b\xab\xe8\x6a\x76\x4f\x94\x26\xdf\x25\x72\x02\x88\x5a\x5b\x13\x3d\x71\xfb\x20\xb5\xc8\xd1\xe9\xb9\xab\xdc\xc3\x09\x25\x50\x7d\x19\x8e\x12\x5f\x75\xbe\xf4\x52\x65\x97\x03\xc5\x3a\xc7\xd5\x0b\xd4\x13\x6e\x94\x8a\x02\x75\x7b\x87\xa8\xc2\xec\x11\xf6\x95\x7b\x35\x4b\xf8\xe6\x54\x73\x8d\x60\xc9\x51\x3e\x8a\xcd\x9a\xdb\xea\x88\x02\x4e\x23\x70\xe1\x13\x1d\xaf\xd9\x7c\x14\x15\xf6\x41\xdc\x22\x4c\xf0\x0d\x15\x26\xbd\xab\x26\xdd\xf7\x4c\x3c\x65\x17\x6b\xa8\xa9\xa2\xf1\x82\xaf\xed\x1d\x16\x40\x07\xcc\xaa\x50\xc7\x57\xf7\x21\x3a\xac\x8a\x14\x70\x60\x32\x13\x8a\x52\xeb\x82\x48\x9e\xc1\x3b\x89\xfe\x59\x83\xf3\x88\xcd\xb8\x3f\x10\x26\x53\x20\x43\x6e\xe3\xb9\xbb\xde\xea\xdc\x1c\xdb\xad\x53\x2e\x7f\x33\x79\x1e\x29\xf7\x89\xa4\x72\x43\xd1\x62\x6e\x94\x7e\xf4\x37\x4f\xcc\xa8\xad\x66\xaf\xff\x05\x7d\xa5\x74\xa9\x34\x7b\xc4\x65\xd5\x54\xcc\x8b\x71\x65\x17\x90\x53\x01\x38\x74\x2d\x50\x4c\x21\x78\xbc\x7c\x5c\x2a\xa8\xd1\xb5\x06\xed\xdb\xd0\x64\x71\x9a\x7f\xf1\xe4\xbf\x9a\xb4\xb3\x69\xd6\xb7\xfb\x5a\x4e\x12\xf6\x7a\xa9\x10\x58\x6d\xd4\x48\x18\xf6\x1e\x78\x24\x2e\x37\xc4\x5d\x80\xb8\xf0\x82\x54\x55\xdb\x5d\x45\x6f\xb8\xe1\x69\xe1\x7b\x68\xad\xd6\x00\x78\x7c\xe2\x48\xd1\x7b\x51\x5e\x64\xd1\xe2\x98\x04\x8f\xf0\xa0\x50\xe5\xe2\xb9\x2f\x3e\x69\x22\x67\x1d\x9a\x38\xea\x27\x86\x5d\x26\x6c\xd0\x47\xaa\xb6\xf1\x91\x0a\x9d\xa3\xca\x61\x16\x6d\x0f\x46\xba\xa0\x29\xe2\xde\xc3\x53\x47\xdd\xfa\xb3\x1a\x04\xa6\x97\x66\x7b\x28\x66\x45\xf9\x6c\x5d\xad\xf2\x33\x58\x44\xfc\x0f\x41\x4b\xcb\x22\x57\xdf\x0d\x3f\xfb\x89\x62\x9d\x0a\x6d\x92\x8f\x73\x52\xe6\x11\x24\x82\x1a\x4b\xf8\xb0\x51\x53\x24\x2f\xcc\x1a\xd7\x10\xf4\x2f\xc9\xe5\x34\x49\x5a\x50\x2f\x59\x9e\xa6\xd8\x47\xba\x24\x31\x90\x8a\xbe\x3e\x4e\xd1\x2e\x71\xc4\x3b\x75\x5a\xb1\x06\x1d\x70\x9a\xb9\x80\xf1\x65\x68\x91\xa2\x0f\xba\x34\xd5\x88\x98\x9f\xa7\x76\x7c\x5b\x39\x23\x04\x4e\x3c\xc2\xa5\xba\x27\xa7\x15\x0e\x76\x18\xf5\x7a\x2c\xdd\x2d\x7e\x5f\x0f\xc3\x2a\x9e\xc6\x45\x3b\x30\x2b\x51\xca\x28\x6b\x21\x61\x68\x39\x46\xb8\xcb\x4a\xea\xff\x6c\x83\x46\xc9\xcb\x1d\x33\x1a\x59\xcf\xe7\xea\x04\xa2\xaa\xe5\xce\x27\x6a\x00\xd8\x64\xfd\x31\x0f\xb2\x3b\xb5\x16\xa5\xd0\x32\x8d\x5b\x29\xac\x19\xf2\x1b\x64\xa5\x09\xba\x65\x51\x9d\xd8\xf9\x06\x0f\x1f\xac\x6c\xad\xcd\x84\x17\x4c\x5c\xa5\x1a\x16\x3c\xdf\x34\x2e\x9f\x2e\xc7\x66\x90\x0e\x21\x12\xc0\xb7\x7e\x42\x3d\x86\x13\x2a\x13\x4a\x47\xd1\x78\xd8\xae\x05\x2e\x58\x2d\xa8\x0b\xdc\xad\x2b\x12\x3b\x96\xd0\x28\x61\x3e\x1c\xba\x16\x24\x35\x28\xf3\xf2\x71\xf9\x64\x1d\x2d\x3c\x37\xd7\x79\xe5\x95\x9f\x6b\x3d\xfd\x34\x97\x0d\x4e\xc0\x5f\x49\x47\xb2\xba\x38\x00\x28\xb6\x50\xf0\x11\xd5\x36\x2f\xb2\xfe\x27\x81\x5e\xc6\x17\x88\x67\x11\x55\xa6\x0f\x34\x9f\xf2\xbb\xd8\x48\xf0\xc3\x33\xb0\x54\xb8\x97\x09\x5a\xb6\x2c\x9a\x4b\xc5\x2f\x64\xaf\xef\x22\x76\x14\x04\x57\xcb\xff\x3c\x4c\x2d\x0f\x01\x29\xa0\xec\x59\x6a\x46\xc1\x8b\xbf\x85\xaa\x1f\x97\x25\x79\x40\xd0\x8d\x55\x1c\x79\x41\x06\xc2\x03\xdf\xf4\xdf\xd0\x06\xf9\xb6\x12\x13\x3a\xa6\x90\x2b\x43\x9b\xe7\x86\x6a\x29\xc8\x11\xae\xe0\x89\x01\xa5\xf5\x26\xee\x52\x44\x10\x7c\x88\xbd\x94\xa6\x45\x5e\xd8\x11\x1a\xb4\x82\x98\xa6\xdb\x70\x62\x65\xee\x2d\xdd\x99\x9a\x52\xaa\xe2\xa3\xd8\xe4\x62\x32\x84\xbb\xa0\xe5\x79\x0c\x1a\x58\x95\x16\x3a\x83\xb4\x0a\x09\x38\x07\xc0\x23\x7a\x3f\x50\x3d\xba\xf7\xa7\x96\x29\xad\xed\x30\x8e\x5c\x5c\x2b\x7a\x1a\x2d\x47\xab\x7a\xa6\x59\x89\x92\x40\x27\x20\xf5\xe0\xc9\x0d\x45\x93\xd6\x52\x52\x45\xe7\x9b\x5c\x45\x98\x26\x89\x43\x68\xce\x3a\x02\x6c\xb5\xa5\xde\x6a\x42\xf0\xf4\xec\x92\xe2\x20\xc0\x86\x05\x3b\x1c\x1f\xbb\x16\xe7\x68\xec\x67\x07\x78\xfa\x37\x50\xb1\xfa\x69\xe7\x14\x87\x05\xef\x3b\x37\x95\xed\x46\xba\xa1\x06\x8a\xf8\x6f\x9a\x2e\x67\x6e\xee\xc5\x8e\xe9\x8d\x5d\x2d\xbf\xc9\x19\x7c\x51\xef\xd9\xc4\x69\xd2\x9f\xf1\x23\xa1\x8f\x43\x91\x56\x02\x28\xdf\x8f\x62\xd5\x55\xe9\x65\x37\x3c\xc9\xca\x91\xf6\x33\x46\x27\x6f\x5f\xe4\xc4\xed\x71\x05\x75\x31\xbd\xea\xfd\xe2\x55\x09\x5c\xb5\x7a\x7c\xf0\xe4\xff\x46\xa9\x8e\x9f\xd3\x11\x54\x1a\xf7\x0e\x60\xf9\x29\x9d\x3f\x19\x6e\x05\x44\x56\x98\x37\xaa\x3d\x8c\x90\xf9\xb4\x66\x7d\xc5\x8d\xa0\xe4\x35\xd3\xf5\x63\xb2\xdc\xc2\x15\x7a\x5c\x55\x9b\xc4\x0e\x41\x2a\x33\xd3\x55\x98\xe0\x77\x6b\xa9\x40\x3f\xe2\x37\x8b\x1a\x10\x70\x58\x7c\x3c\xd5\xb8\x7f\x7e\xde\xe9\xa6\x7a\x58\x2f\x33\xa7\xf1\x89\x6a\xa1\x2f\x8d\xb3\x62\x60\xb3\x19\xd8\x0f\x9e\xca\x0d\x6a\x14\xd0\x75\xcd\x71\xc5\x07\x5d\x97\xfc\x8f\x72\x9b\xcf\x28\x81\x6e\x80\x72\x45\xad\xdb\x4f\xaf\xc2\x5e\xf3\x71\x93\x26\x6b\x18\x8f\xa5\x69\xc1\x82\xec\xf4\x09\x11\x67\x6f\xd8\x26\xa3\x2c\x5d\x89\x7a\xc2\x98\xd5\x08\x1a\x90\x02\xa8\x09\x5f\x1d\x47\x99\xed\xed\xa3\xab\x73\x48\x88\x6a\x1f\xc2\x71\xef\xa3\x17\x07\x8f\xf5\xbf\x29\xc4\xd3\xc3\x13\x35\x3c\x76\x41\xa1\x2f\x2e\x69\x90\xd3\x43\x5d\xff\x50\x62\x93\xf4\x86\x26\x5b\x6e\x57\xcb\x05\x71\xde\x65\x35\xa8\x73\xac\xf4\x33\xea\x27\xdd\x3e\xce\xa2\x70\xd9\xae\xb5\x7d\x6e\x0c\x55\x57\xa5\x10\x25\xfc\x46\x37\x15\xf1\x7f\x61\xe2\xe5\x7c\x8f\xcf\x40\x1f\x52\x85\x3e\x2e\x51\xa0\xfe\xc9\x13\xfb\x0e\x59\x56\x3d\x22\xd9\x0b\x0d\x66\xcf\x2c\x2d\x99\xc8\xc5\xc5\xce\x9f\xf9\x02\xfe\x44\xf9\xf4\x55\xb3\x22\xd2\x97\x8a\xb3\xfb\xc5\x9a\x94\x0e\xca\x5e\x80\xca\xb1\xc4\x75\xa9\x86\x50\xd6\xd5\xd7\x8d\xb2\x34\x01\xb3\x01\x7a\xc2\xd7\xe9\x43\xb0\x4e\x3f\x21\xa7\x88\xcd\x7d\x45\xf1\x52\x2f\xc6\xd1\xa8\x8a\x8c\x24\xc3\x23\x2d\x2e\x39\x6e\x80\xb8\xcc\x76\xb2\xc8\x73\x92\x08\x98\x47\xa3\x7f\xa6\xa4\xd2\x0f\x2f\xfc\x72\x67\x64\xd3\x51\x2c\x9d\x5d\xe6\xad\x0f\x14\xcf\xcb\xa9\xa9\x71\xb4\xa3\x07\xa9\x1c\x9a\x14\xd1\x8a\x4d\x98\x5b\xc0\x49\x09\x2b\x64\xf3\x5d\x72\xd7\x58\x4b\xe7\x9a\x46\x41\xc7\x49\x38\x30\x49\xdf\x5d\x33\xaa\x03\x27\xd5\x7c\xd9\x49\x57\xd3\xe8\xaf\x65\x7a\x48\x51\x78\x3f\x7c\x82\x72\x52\x4d\xef\xf6\x6c\x08\x1d\xd6\x19\xca\x36\x44\xd3\x97\x7e\x04\x9b\xf5\x3e\x22\x0e\xfe\x17\xb5\xa3\xef\x2b\x46\xdf\xcc\x12\xfa\x69\x5f\x8d\xa2\xb0\x7a\x59\x5c\x42\xa6\x8f\x89\x5e\x06\x99\x45\xa9\x2d\xfb\xf1\xf8\x93\x14\x7e\x21\x34\x61\x19\x2d\x64\xcd\x9f\x4e\x05\x0e\xcf\xeb\xb6\x3f\x7b\x8d\x1a\x1a\xaa\x41\x5e\xae\xb0\x09\xb1\xf4\x7a\xba\x08\x54\x72\xf9\xd8\xcd\x03\x8a\x4a\x9e\x7b\xd6\x6e\x8e\x61\xde\x27\x1e\xbe\x26\x3a\x34\x7d\xf3\x7a\x94\xd8\x07\x3c\xe2\xfe\x93\x60\x0a\x2f\x87\x02\xe9\xc9\x40\x49\xad\xdd\x25\xbd\x17\x01\xd2\xd1\x66\xe5\x7f\xc0\x44\x2e\x7f\x17\x3d\x20\xfe\xb8\x56\x28\x33\xc3\x91\x35\xe3\x7d\xf4\x85\xce\x4c\xb8\x3a\xfd\x6f\x6a\xdf\xa7\x9b\xe4\xac\xc0\xe0\x8c\xcc\xe1\x83\xde\x00\x7a\x2d\x4a\xf5\x66\x4d\x36\x4c\x33\xae\x5d\xc9\x68\xb5\x9e\xb3\x56\x10\xc0\xc1\xda\x28\xed\xc7\x6b\xa1\x1d\x46\xa6\xad\xd4\x16\xf0\xf6\x75\xeb\x55\xca\x8f\x7e\x0b\x93\x76\xd1\x8c\x02\xd9\x5e\x08\x6a\x3d\x7a\x15\xb4\x2a\x16\x84\x63\xaa\xba\xf8\xcd\x34\x81\xc6\xa4\xeb\x05\x70\x08\x2f\xea\xb8\x7e\xe5\xf2\x34\x72\x0d\xeb\x2c\x6a\x2c\x5e\xd8\x9d\xfb\x29\xd8\x33\x67\x5d\x36\x32\x4c\x8b\x68\xa5\x5a\xec\x6d\xa5\xcd\x72\x5e\x11\xf4\x33\xa6\x0a\xd9\xc2\x3f\x9c\x32\x25\xaf\xbc\xd2\x31\xf1\x68\x60\x16\x2d\xea\x02\x6e\xa8\xee\xab\x2f\x71\x8c\xff\x01\xad\x4b\x09\xd4\xfc\x1d\x26\x66\x68\x7b\x33\xbe\x3c\x7d\xac\xf4\x63\xe1\xbb\x26\xad\xa3\x07\xb7\xb9\x19\x8d\x52\xf2\x6d\x55\xf2\x19\x54\xa9\x66\x82\x32\x8d\x74\x52\x3d\x6f\xfe\x66\x53\x4d\xbe\x17\x65\x36\xe4\xd6\x98\xda\x27\xf4\x9b\x7e\xcf\x38\xd6\xae\xa8\xb0\x99\x89\xe3\xb5\x19\x2f\x74\x73\xb3\xd4\x44\xf9\x81\x87\xeb\x4d\x14\x5c\x6f\xa2\xaa\xef\x47\x16\xfe\x43\x64\x91\x98\x89\xd9\xa2\x3e\x19\x1f\x37\xcd\xb7\x2e\x66\x69\xb2\x34\x34\x89\x30\xba\xc3\xa6\x30\x06\x49\xe6\xe7\x54\x62\x70\x77\x4a\xb1\xe5\x95\x57\x3a\xfd\x41\x9a\x17\x8b\xe3\x1c\x05\xbe\xea\x93\x8c\xdf\xc5\x27\x05\xcc\xab\xc5\x01\x29\x69\x07\x7f\xa5\x16\x6e\x71\x78\x60\x07\xc2\xfa\xcf\xb0\x25\xb1\x95\xdf\x9b\x42\x3e\x12\x5c\xbe\xa8\x52\xee\x84\x4b\x21\x8a\xc9\xc0\xf5\x8a\x1b\x78\x7b\x65\xd2\x56\xd2\x19\xa7\xb1\x56\x2d\x3c\x69\x86\x3f\xa5\xfa\x36\xc3\xa5\x34\x2b\xcc\x22\x0f\x98\x21\x91\x5b\x27\x7b\xcb\xc7\x2a\xa9\x5b\xb5\x51\xbe\x14\xd9\x18\x57\xe4\x9a\x17\x6e\xea\xba\x0e\x87\x8e\x4c\x8e\xbd\xce\x43\x65\x0a\x17\xd5\x9a\x78\xe0\xec\x56\xc3\xdc\xfd\x8b\x52\x0b\x6e\xab\x3a\x1e\xf3\xf8\x63\xcc\xe4\x7d\x72\xf8\xa2\xec\xec\xa3\x76\xd3\x1b\x3e\xdb\x56\x24\x27\x90\xc8\xc5\x8e\x39\xae\x55\x39\xcf\x4f\xbd\xf1\xb9\xb9\xea\x57\xd3\x45\xdb\x8b\xc0\xe7\xab\x4b\x88\x1e\x45\xb6\xa1\xa6\xf3\xf2\x31\xf4\xde\x7b\x5a\xef\x1d\x5d\x02\x3e\xae\x29\x4c\x3e\xfb\x4b\x88\xaa\x99\x5f\xa1\x54\x0a\xc2\xdb\x34\x72\x26\xed\x0d\x3f\xc4\xf2\x60\x57\x41\x4d\xde\x2b\x7d\x1d\xfa\x04\x5c\x09\xf6\xdb\x5d\xf2\xa8\x52\xa0\x6e\xfd\xea\xdf\x64\xa3\x75\x80\xeb\xff\x78\x95\x7b\xbb\xad\x6f\x7c\x8d\x93\x52\xc8\x54\x7b\x22\xbc\xaf\xbe\xe4\x0a\xd6\xad\x5f\x93\xb1\xcc\x16\x34\xcc\x50\x9d\x38\x47\xcc\x42\x08\x14\x79\x76\x1a\x21\xdf\x1b\x68\xa1\xe3\x23\x97\x69\x67\x22\x67\xb9\x83\x60\x41\x58\x64\x15\x0b\xfe\x09\x4a\x32\x65\x8c\xd2\x93\x61\xdd\x43\xd1\x45\x70\x68\x6a\x83\xde\x08\x54\x6c\xf0\x99\x8a\x6e\xb6\xc8\x85\x21\x9a\xde\x3d\xa1\xa9\x37\x2c\xc6\x63\x00\x06\x38\xd9\x87\x85\x17\x5e\x74\x50\x88\x69\x59\x84\xd9\xce\xc0\xf4\xd0\x0e\x44\x34\x7d\xbd\x54\x7c\xce\x8c\xea\x80\xf5\xbc\xaf\x0c\xaf\x7d\x2d\xca\x51\xed\x15\xb6\x2d\x7a\x2b\x7c\xd2\x00\x0f\x58\x20\x36\xa9\xa5\x71\xdc\x52\x02\x7c\x9a\x93\x77\xc3\x65\x26\xe9\xb8\xc8\x6d\x1c\x73\xa6\x87\x26\xe5\x25\x85\x8c\xd7\xaa\xfb\x99\x5d\x6e\x79\xb4\xda\x0e\x42\xe8\x47\xdd\x68\x73\x44\x4a\x15\x2d\x55\x1f\xa3\x4d\x29\xb5\xb2\x06\xc5\x21\x93\x98\xbe\xe5\x89\x64\x58\xb1\xdd\x04\x12\x12\x76\x41\xba\x5d\x44\x80\xd7\x15\xae\x6a\xd1\x24\x7b\xfd\xd8\xc7\x6f\x04\xaa\xc8\x71\xa9\xac\x91\x8c\xd1\x63\x10\x4d\x29\xdf\x2e\xfd\x8d\xd2\x2b\x75\x9e\x55\xd5\x61\x4b\x12\x70\x04\xe1\x9f\x75\x2c\x3d\xf4\x85\x02\xc9\xf6\x88\xcd\x76\x57\xa1\xa9\x78\xbf\xf0\x09\x1e\x10\x60\x91\x3c\x4f\x01\x2b\x75\x46\x0d\x31\xdc\xd8\xa9\x12\x38\x37\x77\xb8\x5a\x2a\xd4\xa8\x40\x31\x0c\xd3\xa1\x22\x36\xaf\xf8\xe1\xdf\x2e\xb5\x72\xf5\xdb\x81\xca\x3d\xc1\x57\x88\x78\xf4\x27\xb8\x76\x16\x14\x0d\x94\x00\x27\xb1\x57\xed\x9b\x6a\x79\x23\x4c\x79\x10\xf5\x44\x3c\xf7\xf6\x44\xd9\xbb\x87\xbb\x6a\xb8\xe1\x4f\xd5\x44\x0b\xf3\x4e\xe2\x12\xee\xed\xbc\xb3\xca\xe4\xce\xcd\xbd\xf8\x60\xb5\x2d\x51\xbb\x01\x9d\x1f\x62\x98\xb7\xe8\x2e\x99\x51\xa8\x54\xd3\x60\x18\xfc\x93\xae\x52\xf5\x63\xd8\x3c\x57\xe8\x5a\x91\xf4\xfd\x10\xbe\x1e\x66\xee\x4f\x4a\x25\x6b\x3d\x0d\xf8\x27\x90\x88\xc0\x28\x5b\x3e\x14\xb8\xa5\x42\x84\x5b\x5a\x64\x36\x4b\xc7\x49\xef\x51\x25\x34\xce\x73\x4c\x32\xb7\xa2\x34\x70\x3f\xa7\x1b\xd2\x61\x23\x00\x78\xad\x09\x8c\xb2\x82\x29\xc9\x88\xe9\x03\x58\x40\xb0\x53\x3f\xa3\x26\x20\xb0\x75\xfb\x81\xc0\x71\x22\x8e\xd5\xf3\xd7\xe5\x2f\xe6\x52\xc3\xe2\x86\x95\xdc\xd3\x55\x9a\x58\x14\x93\xb1\xd6\x54\xab\xeb\x36\x7c\x48\x94\xfb\x1c\x3e\x22\x38\x02\x5a\x07\xc1\x18\xcb\xfc\xa1\x42\xf0\x73\xdd\xa9\x57\xb8\xd0\x39\x7a\xf0\xb9\x87\x5b\x6e\x5a\xfd\xaa\x76\x98\xbf\x5b\x2a\x2b\xcd\x7b\x10\xff\x72\xb1\xac\x51\x38\x90\x5f\x00\x7e\xf7\xb3\x52\x71\xfb\xbe\xa7\x86\xc2\xce\x73\x00\x8d\x62\xe7\x3b\x0a\xc4\x71\x49\x83\x43\x03\xd5\x21\xe4\x7c\x18\x57\x76\xd9\x95\x37\xf0\x06\x1f\xaa\xbe\x80\x6c\xf8\xdf\xe9\x74\xdd\x8c\xec\x91\xaf\x00\x92\x84\x14\xff\x00\x96\x39\x62\xf6\x16\x90\x11\xd8\xe7\x60\xc7\x26\x43\xff\xfb\x7f\xa1\xab\x7e\x06\x9c\x12\x80\xcc\xec\xa7\x07\x49\xfe\x63\xf8\xd8\xa4\x7a\x95\xb0\xb7\x9f\xc2\x84\x21\xe2\x3c\x4d\x0d\x60\x2a\x3d\xfc\x3b\xbf\x30\x05\x29\x3f\xf2\x42\x67\x68\xb3\x3e\x5a\x40\x8e\x9c\xd7\x09\xfa\xae\x97\x4f\x2a\x72\xf0\xe1\xd0\x66\x61\x64\xe2\x7d\x0a\x5d\x74\x8e\x8d\x02\x9f\x05\x9e\xc4\x11\x51\x14\x4a\x88\x27\x30\xbb\x8d\xc5\x05\xa2\x18\xd4\xbc\x37\xe1\xd1\x64\x16\xf4\x2b\x5f\x50\x5b\x8d\x92\x5e\xb4\x12\xf5\xc6\x0c\xee\xe0\xed\x1f\xa8\xe4\xe8\xba\x36\xa8\x55\x98\xc9\x59\x1c\xfc\xc0\x87\xa5\xf7\x09\x1f\x2a\x5f\xb7\x18\x25\x7d\x6c\x4a\xf8\x9f\xb7\x94\xce\xeb\x5b\xea\xde\xf3\x22\x33\x11\xfa\xdb\xca\xc7\x61\x1a\x57\x8a\x4e\x1e\x61\xbe\x39\x55\x66\xaa\x9c\xf1\x52\x94\x87\x7c\xfd\x52\xc4\x68\x39\x46\x87\x93\x0e\xbd\xb8\x62\xb3\x5e\x14\xca\x24\x8f\x94\xd1\xd4\xa0\xc1\x31\x8d\xfa\x89\x47\x83\x14\xed\xce\x79\x0f\x96\xa8\x49\x2e\x09\x90\xa8\x18\x98\x64\x99\x44\x92\x84\xc9\xab\xe5\xa4\x0f\x3e\xd2\x02\x07\x1b\x4a\xbd\xb3\xe5\x24\x7a\x4d\x48\xe4\xfe\x07\x94\xf8\xf5\x97\x00\x7f\x70\x78\xbc\xea\x2b\x9c\x78\xd3\xd1\x83\x0e\xfe\xe5\x2b\x3f\xbb\x41\x53\x89\x9a\xe2\x0f\xb1\x61\x1d\xca\xcb\xf5\xd4\xef\xd1\xda\x17\xbe\x0f\x35\x32\x78\xa7\xf4\x1a\x4f\x57\x94\xe4\x25\x83\xf0\xfa\xa6\x90\x61\x77\xec\x95\x37\x4a\xb5\x71\xde\x70\xa4\xa4\x8b\x36\x34\xe3\xdc\x1e\x70\xc0\xfa\xbf\xf3\xcb\xd8\x7a\x08\x00\x5a\x13\x85\x2c\x64\x78\x8f\x9b\x22\x98\x9b\x73\x75\xc5\xea\x22\xc9\x58\x7c\xfb\x2f\xd1\x58\xa2\x20\xb1\x3d\x2f\xd4\xfe\x89\x6b\xf2\xee\xf9\xa5\x6e\x8d\x13\x8c\x2c\xba\x30\x87\x4e\x77\x4b\x9f\xeb\x8c\x88\xd6\x49\xa2\x70\x98\xeb\x2b\x81\xc2\xfe\x5c\x99\x42\x8f\x1f\x3a\xd4\x59\x1a\x7f\x33\x6a\x29\x35\xb0\x0b\x14\xba\xf2\x71\x13\x78\x2e\x37\x91\xa3\x9e\x74\xd8\x3d\x0f\xfd\x3d\xab\x75\xac\x06\x51\xb2\xcc\x83\x68\xe0\x27\xc1\x0c\x21\x1f\x4f\x95\xad\x5e\x79\x45\xd6\xdc\x9f\x65\x9d\xe9\x85\xf9\xb8\x2a\x4e\x11\xa6\x8d\x37\x03\x3b\x2d\xbc\x12\xf1\x60\x3b\x69\x78\x2a\x9f\xf1\xcd\x0c\x0f\x41\xf4\x8c\x61\xa2\xf8\xcc\xed\x34\xb3\x44\xc3\xdb\x88\x75\x91\x4e\x3c\x4c\x96\x9a\x8f\x1b\x59\x48\xf2\xc2\xa8\x71\x73\xbc\xe7\x4d\x05\x36\xda\xf4\x14\x33\xdc\xa4\xe1\x48\x53\x1c\x93\xf7\x92\x1c\x58\x23\xce\xbf\xdb\x80\x4b\x98\xed\x90\x58\x08\xcb\x6e\x72\x74\x56\xaa\xe8\x6a\x5d\x91\x20\x43\x99\x97\x09\x16\x15\x32\xe6\xc1\xae\x67\x6f\x1d\x8c\x87\x14\x52\x8b\xb4\x5f\xf5\x09\x3e\x9e\xaa\xc3\xce\xcd\x75\x46\xe3\x2c\x1c\x18\x5f\x3b\x96\xf9\x48\x3f\xb1\xbc\xd1\xc0\x15\xf6\x5c\x65\x2d\xc7\x61\x31\x76\x09\xbb\x2b\x8b\x3a\xad\xe2\x8b\x53\x16\x72\xf6\x48\x67\x68\x72\xd7\x06\x84\xb7\xfd\x54\xcd\xa0\x7d\xda\xc4\x38\x52\x64\xd6\xd6\xf8\x81\xde\xa5\x4f\x88\x0c\x67\x03\x4e\x69\x14\xd1\x95\xf1\x87\x78\x3b\xaa\xa9\xf6\x0d\xc5\x70\x31\xca\xd2\xd0\x56\x7e\xe4\xf0\xc1\xed\xad\xea\x61\x6d\x6f\x35\x8d\x6c\x0c\xd3\x14\x3a\x70\x88\x07\x41\x3e\xc0\xc7\xaa\x88\xb9\x9a\x45\x45\x61\x93\x19\xbc\x4d\xf4\x02\xee\x68\x42\x2a\x60\xe0\x61\x46\x2e\x2b\x7a\xd2\xcb\xaa\x72\x48\x37\x4c\x9d\x6b\x91\x62\x22\xcb\xa5\x19\xb5\x10\x85\x9f\xd7\xf4\x43\x49\x2f\x32\x54\xaa\x02\x6d\xdb\xef\x6a\x76\x47\xac\x21\xfe\x87\xc0\xcf\x77\x4e\x4f\xcb\xce\xcf\x77\xfa\xd1\x70\x18\x85\xcb\x9a\x68\xee\xad\xd2\xcf\xa4\xbc\xa5\xa6\x92\x63\x93\x58\x3c\x64\x91\x4d\xf7\x6e\xf6\x7c\xd3\x20\x6d\x9e\x66\x45\xbb\x56\xcc\x6a\x39\x62\xaa\x3b\x81\xb6\xbc\x8e\x5d\x7a\x4c\x54\x9c\x2d\x95\xa3\x00\x4b\xe5\xe5\xfa\x5c\x9f\xca\x16\x54\xf2\xaa\x1e\x82\x94\xcd\xe9\x63\x52\x4f\x6f\x98\x09\x2b\x4c\xb4\x6a\x12\xee\x80\x20\x7d\x62\xc9\x44\x3e\x99\xca\x85\xdd\x18\x72\x36\x6c\x29\x9d\xa2\x4b\x5a\x3b\xf6\x92\x16\x3f\xcd\xa2\x61\x94\x98\xf8\x01\x0f\x20\xf9\xa4\x54\x00\xb0\x0d\x5d\x53\xc4\x2a\x45\x85\x6e\x9d\x36\x7b\x2d\xd7\xe3\x7f\x08\x94\x2a\xd9\x27\x54\x92\xe0\xbf\x9a\x7a\x9d\x87\x66\xb9\xf5\x6e\x35\xb3\x40\xa9\x0c\xe7\x74\x31\x6e\x6e\xae\xb3\x3a\xb0\x36\x8e\x23\x16\x48\x92\x81\x05\x8f\x88\x38\xa5\x8a\x6b\xb1\x7d\x2d\x4a\xfa\x05\x3b\xe5\x1a\x09\x29\x9f\x7c\x21\x23\x49\x96\x26\x26\x66\x05\x34\x9d\x4a\x4b\xfa\x3c\x6d\xf6\x3b\x89\x2d\x88\x9b\xd0\x59\x5a\x17\x5d\xdd\x55\x83\xff\x17\x55\x58\x27\xd4\x91\x2c\xf1\x0e\xe3\x89\xc6\x9d\x13\x14\x71\x9b\xe3\x7d\x8f\x43\x20\xbe\xe6\xb6\xe2\x7d\x87\xe0\x09\xee\xe9\x3e\xde\xa0\x14\xcb\x3c\xa8\x79\x64\xb2\x28\xa7\x46\x29\xd3\xb5\xd3\x4b\x54\x3c\xee\x0b\x8e\x50\x5f\x7e\xc9\x56\x41\xe7\x60\xc6\x2f\xfe\x47\xba\xde\xd0\xcc\xd0\x98\x84\xa2\xbd\xf7\x42\x2a\x4d\x86\xcf\xf4\xc7\x59\x64\xf0\x2a\x84\x9f\x4e\x09\x8b\x5c\x0c\x3c\xbd\x2a\x77\x9a\xdb\x4a\xf3\xed\x4e\xa0\xdb\xce\xd5\x77\x08\xfe\xf9\x61\xc5\xaa\x68\x4d\x6b\x27\xf5\x03\x1f\x7b\x32\xba\x55\x83\xba\xac\xac\x80\x96\xe2\xa7\x75\xc1\xaa\x35\xc3\x7c\xaf\x6f\xb4\x9f\xa5\xf7\x80\x17\xcb\x01\x8a\x96\x2f\x50\x2d\xa1\x97\x7d\x49\xa6\x7a\x20\x08\x35\x1f\xef\x7a\x33\x3c\x4c\x7b\x36\x96\x49\x62\xf7\x25\x4a\x84\x6a\xba\x62\xc4\x50\x03\x28\x93\x34\x50\xa0\xa1\xdb\xef\x84\x92\x5d\x0b\xf8\x2e\xe2\x35\xae\xc2\xa8\x95\x90\xae\x98\xc2\xb4\x7c\xe5\xbc\xd5\x55\xeb\xbc\x35\xf1\x30\xb8\x55\x6b\x96\x6d\xd2\xd2\xc3\x99\xca\x12\x9e\x51\xd5\xb2\x17\xcd\x9a\x9a\xe8\x3f\xaf\xcb\xc2\x97\x03\x95\x0e\xfe\x49\x93\x86\x7d\x91\x99\xbe\xed\xad\xb5\x14\x3f\xc4\x6f\x29\xa5\xe0\xdf\x9a\x2a\x6a\xc8\x2e\x5d\x4a\xb3\x02\x24\x9d\x4c\xde\x4a\x8d\x7c\x21\x72\x6d\x40\xb6\xb8\x49\xee\xb6\xdf\xcc\xac\xdf\xa2\x8a\x15\x92\x82\x69\xa9\x4b\x63\x8b\xc4\xe0\x49\xc8\x30\x11\x7d\x4c\xa6\x8c\x1a\x4c\x95\x89\x17\x4d\x12\x19\x87\xd2\x14\xce\x28\xba\x4d\xa1\x82\x7b\xc8\x81\x8b\xfa\x16\xc0\x78\x91\x92\xa4\x47\x28\x7a\x93\x4f\xba\x89\x53\xcf\xfc\x41\x7f\x8d\x02\xea\xb7\x35\x85\xf8\xb7\x1b\x25\x45\xe3\x2a\xbc\x09\x15\x57\xe8\x1d\x55\x57\xb9\x53\x8a\xc4\x5d\x11\xd1\x9f\xa8\x10\x51\xf2\xad\x8b\x81\x16\x9b\x8f\xf2\xdc\xb6\x7d\x7b\x71\x57\x77\x87\xe2\xa2\x2c\xa7\x5b\x8e\x9f\x6f\x64\x62\xee\x00\x08\x83\x83\x8f\x1e\xef\x28\x96\xa4\x5e\x34\x8a\xd3\xa1\x29\xaa\x8b\x7d\xde\x17\x81\xa8\x88\x22\x20\x28\xe5\x59\xcd\xea\x9a\xcd\x72\x72\x61\xae\xc8\xed\x53\x1d\x6e\x38\x22\x31\x7e\xa7\x54\xaa\xe5\x6f\x2b\x24\xd1\xfd\xc0\xfb\xb3\x7b\x81\x2f\xca\x5c\x2a\xbd\x07\xbb\xa7\xf9\x0d\xd2\xa1\x2d\xa2\xa1\x88\x31\xe2\x8f\x37\xf1\x62\x51\x41\x65\xee\x44\x26\x58\x27\x2b\xc1\xff\x40\x0b\x1b\x01\xd3\x7d\xd5\xf7\x20\x4a\xd8\x21\xf3\xdf\x0b\x9e\x1a\x13\x56\x7c\xdc\xa4\xe6\x3c\x4e\x96\xd2\xb8\x27\xa3\x5c\x30\x8f\x67\x34\x2a\xe7\x8c\xca\xa0\x06\x66\xd1\x66\x5c\xab\x46\xd6\x0c\x22\x21\x3e\x2e\xfd\xc5\x84\x36\xb6\x8b\x99\x29\x2c\x9c\x0c\xaa\x45\xdb\x94\x3b\xe0\x8e\x78\x26\x01\x39\xc1\x6f\xaa\x98\x35\x34\x89\x49\x2c\xc0\x8d\x30\x55\x5c\xb2\x43\x7c\x70\xbc\x06\xea\x79\x42\x15\xfd\x99\x8e\x8e\x3e\xe8\x84\x9c\x7d\xad\xe3\x5e\x7d\xd6\x72\x07\x61\xed\xe1\x83\x87\x3b\x87\x0f\xee\xf7\xfa\x3b\xbb\xba\xbe\xbb\xc4\x5b\xda\x89\xb8\x57\xa9\xaf\x44\x68\x7a\x9e\x95\x9e\x1a\x2a\x5b\xfc\xd3\x22\xe6\xe0\x9f\x2d\x16\x8a\x00\xb5\x54\x37\xe4\x53\x45\x81\x6e\x53\xa1\x5c\xae\x49\xff\xf1\xc9\x94\x81\x5f\x38\xbc\xd0\x89\x0d\xd7\x76\x5e\xf6\x34\x17\x9e\xb1\xe3\x5a\xe9\xf9\x2f\x76\x77\x1f\x55\xf1\x43\x98\x66\x78\x9f\xf8\x43\x20\x46\xf8\x78\x2a\xaf\xaf\x4c\x52\xbf\x9f\x99\x15\x53\xf0\x46\x44\xb9\xe4\xbc\x6a\x75\x9d\x6f\x82\x28\x8d\xd2\xbc\x58\x65\xf9\x5c\xa7\xeb\x35\xef\x75\xbd\x7c\xa8\x5f\xa4\xe3\x0c\xef\x10\xf5\x55\xac\x7c\x96\xb9\x09\x94\x9b\x53\x20\x70\xb3\x38\xce\x85\x28\x45\xe4\x60\xfc\x12\xdd\x72\xc1\xc8\xc0\xac\x9a\x88\xe5\xd2\x59\x24\x08\x51\x0b\xd3\x0e\xa1\x12\xb8\xfd\x7e\x53\xa2\xd6\x1f\x27\x09\x26\xa4\x1d\x85\xf0\xdc\x9c\x1c\x2b\x64\x63\x1e\x66\xe3\x22\x4a\xd6\xda\x3e\xf6\x27\x4c\xd4\xf6\x67\x14\x4c\x60\x41\x5d\x98\x7a\x46\x87\x66\x3b\xe9\xd3\x61\x9c\x86\xa8\x36\x30\x0e\xb9\x54\x00\x14\xcc\xfd\xa0\x0f\xd3\xa6\xc5\x89\x2a\xc4\xb5\x52\x29\xc0\x0d\xb2\x74\x98\x56\xb6\x85\x73\x0a\x9e\xa7\x51\x42\x3e\xc7\xd5\x98\x56\x6c\xfa\x54\x4f\x13\x6a\x5e\x0f\x58\x64\x95\x5b\x3e\xc1\xfe\x13\x3a\x5f\x1f\x2e\x2d\x8f\x86\x9c\x58\xc3\x35\x83\x40\x80\x8f\x95\xad\x0f\xd3\x54\xc8\x52\x9d\x86\x74\xf5\x8d\x5e\x43\x9a\xed\x76\x1a\xf7\xb2\xf1\x10\xf0\x64\x9e\xd6\xa3\xc7\xcc\xa4\xaf\x5a\x0d\xf3\x3d\x64\x60\x6c\x4c\x47\x83\x28\x2f\x48\xdd\xb6\xb7\xc7\x23\xa7\x6e\x04\x1e\xb3\xca\xf1\x0e\xb2\xf7\x77\x14\x73\xc4\xed\x40\x01\xa0\xb7\x9b\x54\xc6\x86\xe3\xb8\x88\x96\xcc\x30\x8a\x79\xb2\xd4\x71\x5d\xba\x19\x4c\x94\x7f\x50\x42\xbe\xae\x7c\xcb\x8a\x1d\x44\x61\x6c\x67\xaa\xa5\xb9\x0d\xe9\x6f\x14\x92\x38\x06\x14\x30\x72\x15\x53\x4b\x62\xd4\xc0\x09\x6c\xd2\xb1\xa4\x71\x88\x9c\xdf\xc2\xdd\xf0\x49\xe0\x5d\xdf\x52\x46\xca\xb7\x05\xab\x6c\x89\x1d\xf4\x03\x36\xd7\xe1\x56\xf8\x44\x57\x30\x2f\x78\xe1\x7d\x9b\x45\x2b\x82\x53\x16\x6c\x28\xdd\xb9\xa0\x46\xc5\x23\x27\x66\x05\x2b\xdd\xe1\x0e\xdc\x2c\x1e\x4f\x08\x21\x82\xdb\xdf\xd5\xd3\x32\x71\x64\x94\x25\xe0\x10\x41\x7e\xc7\x97\x0a\xc2\x2c\x1d\x01\x03\xc3\xb9\x4c\xa0\x92\xeb\x8d\x29\xf4\x1e\xa9\x9e\x0f\x47\x69\x1e\x55\xa1\x0d\x17\xaa\x5d\x7d\x64\x7e\xbe\xa1\x3e\x92\xa4\xc5\x20\x4a\xfa\x0f\x2a\x42\xa0\xeb\xb4\x66\x98\x68\x45\x81\x9a\x7e\x86\x17\xc6\xd6\x1d\x31\x41\xcd\xd4\xcb\x04\x20\xf5\xb4\xb1\xb4\xee\x2b\x69\x32\x16\x18\x15\x70\xc4\x8e\x3e\xd1\x4b\xb3\x47\x3a\x73\x73\x87\x5b\xaa\xd7\x7d\x2e\x50\x30\xd2\x69\xdc\xe7\xd1\x83\x2f\x77\xf2\xd5\xa8\x08\x07\xb4\xaf\x60\xda\xef\xd1\x05\xf3\xb1\xf2\xc6\xab\x83\x28\x1c\xd8\x15\x9b\x11\xea\xd2\xa1\x7d\x0f\x7b\x18\xf0\xce\x45\x57\xb9\x94\xb0\xca\xb5\xbe\x3e\xcb\xed\x4d\x56\x7e\xe2\x13\x57\xc2\x88\x92\x9e\x7d\x4d\x4a\x84\x35\xc2\x0d\x84\x72\x00\xb9\x22\xea\xda\x33\x69\x28\x52\x24\xd6\x64\x8b\x08\xfd\x61\x4d\xe1\x79\x99\x6e\xa8\x26\x73\xeb\x0d\x5d\xf5\xab\x23\x9b\xf4\x6c\x52\x90\x50\x37\x32\x40\xf8\x14\xb8\xa1\x1b\xf4\xec\x99\x48\xb8\xac\x85\x81\x5e\x3b\xe8\x46\xa0\xa2\xd3\x2d\x5f\x96\x49\x93\x15\x9b\x15\x7b\xbd\xf4\xcd\x71\x25\xfe\x71\x5e\xf3\x96\x7c\x82\x97\x8f\x68\x1f\x89\x37\x2c\xc2\xf1\x52\x21\x04\xbe\xd5\xa8\x9a\x54\x8c\x33\x37\xe1\xc0\x41\x11\xbe\x5a\x22\xa4\x86\xfa\x15\xc2\x35\x7e\xdc\x68\x08\x5e\xd5\x3c\x84\x6f\x97\x7e\xd5\xfb\x97\xd4\x4f\xe3\x78\x9c\x23\x39\x90\x09\x27\x25\xe2\x70\x36\xd0\xac\xe5\xb5\x56\xaf\x74\xd4\x54\x6b\x7b\xdd\xeb\xae\x98\xcc\xf4\xb9\x36\x22\xf1\x10\x7d\xad\x94\xb2\x1a\x8a\x64\x03\x13\x2f\xcd\x10\xa0\x04\x65\x77\xd0\x0b\xc3\x51\xc2\xad\x01\xf9\x78\x80\xda\x81\xe8\x7c\x4c\x97\x96\x69\xae\xc4\x9a\xac\xd7\xf6\x88\xff\x4b\xea\x8d\x9f\xd5\xa9\xd5\x9d\xa9\x12\xfb\xdc\x5c\xc7\x66\x46\xcf\xfb\xd3\xb4\x80\xf4\x0f\x9e\xf4\x31\x75\x96\x12\x3b\x6b\x75\x93\x87\x05\x89\x75\x4a\x29\x88\x9c\x9a\x8a\x91\xaa\xad\x9c\x8f\x47\xd5\xc7\xd8\x82\x4a\x5b\x5e\xa1\x18\x37\xca\x5f\xfe\x82\x84\xb4\xc8\x4c\x8f\x0d\x18\x53\x3f\x62\x3d\x1d\xd3\x53\xfe\xc7\x94\x13\x2e\xb2\x68\xd4\xd2\x05\x05\xd8\x26\x89\x92\x9e\x54\x7b\x66\x29\xea\xd9\x98\x86\x32\x1c\x2e\xfb\x1c\x76\xb5\x70\x09\x7b\xcc\x56\x36\x86\xdb\x12\xb2\x8e\x5b\xb5\x91\x46\x1f\x24\x32\x27\x9e\x50\x6b\x79\xd7\xc7\x0a\xbb\xad\x2f\x64\xea\xf7\xbc\x49\x89\x5d\x79\xb6\x55\x57\x4d\xad\x3e\x24\x71\x4f\x43\x61\xbf\x17\xe5\x61\x34\x8a\xa3\x04\x7d\x5f\x47\x28\x33\xef\xc1\x75\x3b\xdf\xf9\xec\x91\x4e\x92\x85\x2d\x25\x13\xf8\x53\x6e\xab\xf0\xd9\x34\x8a\xfc\x85\x17\x3b\x45\x6a\x72\x06\x8f\xca\xf4\x40\xbb\xab\x12\xc2\x5d\xbe\x83\xbd\xfe\x4e\x33\x0e\x7d\xc9\xc6\x71\xba\x4a\x9b\x04\x40\x17\x0c\xec\xf2\xb1\x27\x9f\xcf\x97\x4d\x4d\x67\xe5\x23\xbd\x45\x3f\x52\xd9\xc1\xeb\xaf\x73\x8b\x0c\x75\x19\x28\x76\xf0\x71\x53\xf4\x30\x32\x19\xb6\x3e\x76\x16\xf3\x8e\xf2\x49\x93\x04\x41\x18\x8f\xad\x2a\x0d\x5c\x57\x66\xed\x7a\x13\xf6\x34\xb3\x2e\xf7\x6c\x7b\xa4\x03\x08\x2f\x81\x14\xe3\x4e\x91\xb4\x4a\x3d\x9f\x46\xc6\xf9\xea\xcb\x6e\x3e\x5c\xf1\xf1\xbd\xeb\x6a\x1b\x6b\xe9\xb8\x18\xb4\x7d\xd7\xfd\xa4\x06\x8d\x5e\x57\x68\x47\x8d\x03\x1b\x45\x23\x61\x27\x77\x3c\xd0\x9e\x13\xba\x36\xbf\x1b\xa6\x4b\x2d\x25\x8c\x77\x81\xf2\x19\x3e\x76\xe6\x6e\x71\x9c\x2d\xc6\x12\x16\x21\x3b\xb9\x44\x32\x7e\x7c\xac\x5a\x25\x89\xb5\x6e\xd2\x85\xb5\x6c\x03\x35\x49\x7c\xc2\x7d\x67\x1e\x0e\xac\x8b\xd6\x81\xbf\x7e\x43\x0d\x3c\xbe\xa1\x32\x8b\x28\x61\xbe\x41\x9f\x07\x00\x64\xc1\xc7\xaa\x14\x50\xfd\x21\xf7\x92\x8f\x1e\xf4\xe2\xaf\x0e\xc8\x75\xa1\xd1\xa0\x86\x69\x98\x1a\xdc\x9d\xa3\x6b\xf3\xd4\x6d\x2e\x4a\x8f\xb8\x7e\x84\x07\xc6\x4c\xf3\x4a\xc7\x75\x5d\x61\xcc\xa9\x7f\x9a\xf7\xa3\x95\xea\x61\x68\xee\x64\x2e\x4e\x09\x8e\xe0\x49\x85\xde\xcc\x49\xd1\x37\x4d\x5a\x4a\x7d\x9c\xc9\xbd\x64\x14\xc3\xd7\x17\x17\xb3\x34\x5d\x66\x7a\x28\x29\xd4\xb6\x9c\xcc\xc0\xba\x66\x9f\xe5\x9f\x74\xd4\xf8\x87\x0f\xd6\x2e\x1e\x35\xf2\x4d\xf8\x73\x37\x08\xe4\x0b\x59\x8d\x6c\xf6\xe3\xa4\x06\xec\x85\x03\x01\x45\x12\x1f\x2b\xb1\xa8\x51\x66\xc2\x22\x0a\xed\x03\xb4\x24\x11\xd4\xdc\xa3\x47\x8c\x37\xb8\xa7\xab\xa0\x41\x27\x61\xc6\x6b\x04\x1a\x88\x24\xdf\x57\xe8\x13\xde\x57\x52\xf0\xab\xde\x36\xf6\xc4\xb5\x86\xda\xe5\x8b\x82\x81\xc8\xdb\x8a\x46\x74\x43\x0f\x97\x7f\x0f\xdf\x87\x4e\xf0\x55\x57\x33\xcc\x07\x95\x37\x23\xfc\x08\xdf\x29\xc0\x94\x7b\x26\x1e\x65\xb9\x47\x97\xa8\x6d\x96\x45\x71\xbc\xa7\x8a\x36\x85\x31\xc1\xe7\x3e\x20\x81\x83\x5b\xe1\xe9\x4a\x97\x3f\x3a\xfc\xf0\x07\x2a\xbf\x1f\xd8\x2c\xb5\x52\x03\x55\x98\xce\x05\x87\xe9\x74\x14\xbc\xe3\xd7\xc6\xd9\xda\x8c\x4f\x01\x99\xba\xc5\xcd\xf0\xb8\x90\xa6\x3d\x51\x2a\x50\x1a\xb4\x19\xa5\x0f\x38\xf3\xbc\xf0\xe5\xae\x52\x9f\xd5\x53\xfd\x4c\xfc\x82\x9b\xe0\x80\x57\xa6\x4d\xe8\xca\x44\xb5\x5a\x4d\x1f\x63\xf2\x10\xfe\xe9\x67\x53\xe9\xcb\xaf\x10\x5f\x8f\x89\x12\x9b\x2d\xa6\x26\xe3\xfa\xbe\xc3\xa2\xfa\x49\xb1\xa9\x8e\x13\x79\x19\x92\x4e\x8f\x05\xf8\x8a\x9c\xe5\x8a\xca\x5f\xae\x34\xd1\x9d\xe4\x51\x3f\x89\x96\xa2\xd0\x10\xb4\xda\x53\x81\xa0\x5b\x21\xc8\xe9\x9d\xbf\x47\xc3\xfd\xf9\x28\x4d\xf2\x48\x80\xab\x78\xbe\x5c\x4d\xe1\x93\xa9\xc8\xe8\xd0\xa1\x4e\x5e\xd9\x71\x6b\xf8\x2a\xf1\x8c\x98\xc2\x81\x4f\xd4\xbc\xe2\x6a\x14\xf7\xe2\x68\xc9\xb6\x7c\x16\x0f\x68\xac\x68\x2a\x3a\x0c\xed\xab\x63\x12\x00\x6c\x69\x52\x12\xec\x1f\x61\x28\x69\xa2\xbd\x1b\xa4\xa3\xe5\x48\xf4\x95\x44\xa0\x4d\x21\xc3\xde\x55\x09\xb1\x89\x6d\x26\x73\x0b\xa8\xd7\xb5\xb0\xb2\xb0\x8d\xef\x04\x4a\xf1\xe8\xd1\xc9\x23\x0a\x73\x96\x8d\x9e\xdd\xef\x11\xe2\xe7\xeb\x4b\xa5\x5a\xef\x4e\xf6\xae\x4a\x1c\x25\xc4\xf6\xa3\x26\x8f\x01\xcd\x83\xc6\xd8\x76\xa0\xd8\xdb\x9e\x62\x16\x78\x84\x25\x4f\xd0\xae\xc2\x4c\xda\x83\x04\xe5\x47\x1e\x7e\x52\x4d\x16\x2c\xda\x24\x4f\x93\xc1\x38\xe3\x5c\x40\x9a\xde\xd5\x5f\x4b\x33\x7c\x67\xdc\x54\xc5\xb3\x4f\xe7\x33\x8a\x0f\xeb\x22\x10\x9c\x2e\x1b\xaa\xae\x1b\xd1\x01\x2b\xce\xe0\xab\xce\x37\x0d\xbd\x66\xb6\x3f\x8e\x41\x40\x34\x5f\xab\xa3\x08\x52\x51\xc2\xa1\x61\x14\xc7\xf8\x51\x89\xe8\xbd\x34\xf4\x86\xe2\x64\x06\x84\x4d\xe8\x9c\x7c\x60\x31\xe2\x37\x3b\xcb\x79\x06\xb3\xdb\xf1\xc9\x54\xe3\x9b\xc6\x53\xc6\x79\x6e\x63\xb1\x33\x0e\x87\xe9\xaf\x61\xda\x07\x1c\x3a\xd4\x59\x49\xe3\xe5\x7c\xd5\xf4\x6d\xd2\xf6\x73\x53\x18\x35\xc7\x56\xe7\xca\x13\x1e\xca\xad\xa9\x68\xf6\xc8\x0b\x50\x7a\x0e\x1d\x9f\xb6\x22\xb2\x78\xce\x11\x59\x38\x6c\x66\x9e\x93\x6e\xa4\xd7\xa8\xa4\x3c\x5e\x0a\xe2\xf2\xf8\x6c\x3f\xe5\xa0\x42\x94\x52\x5a\x4e\xf9\x6b\xf7\xe4\x8b\x50\x8a\xf6\x35\x1b\x8e\x8b\x68\xc5\xf2\xe8\x23\x82\x90\x36\x9a\x7b\x70\x52\x5b\x65\x4d\x2e\xad\x41\xe8\x2c\x1f\x98\x6c\xb9\x56\x7f\xd4\x42\xe2\xb7\x35\x28\x71\x2d\xe9\xa1\x68\x07\x7e\x5f\x4d\xb4\x23\x5c\x8f\x72\x43\xb1\x19\xc2\xd4\x20\x7d\x58\x57\xa9\x44\x33\xbd\xc9\x8a\xed\xfb\xc6\x19\xde\x1f\xb3\x5a\xf2\x89\xda\x17\x99\x4d\x4c\x94\xe7\x86\x27\x4c\x1c\x35\x56\xa0\xa9\xb1\x9a\x22\xdf\x2a\x57\xce\x79\x7c\x13\xbf\x24\xb3\x5e\xea\xf6\x8f\x29\x3b\x32\x4c\x13\x6e\xa1\xa1\xc4\x0b\x99\x6a\x3e\x9e\x28\xc9\x2e\x93\x15\xf9\x43\xe4\xf5\x61\x8c\xae\x94\x7e\x69\x00\x16\x81\xfa\xca\xad\xd2\xf3\xb0\x60\x08\x0f\x95\xcc\xef\x42\x36\x0c\xd8\xd2\x75\xa8\xb7\xf3\x89\xe6\x79\xbc\x14\xd4\xfa\x73\xb4\x61\x98\xbf\x5b\xa9\x54\xdc\xc4\x5a\x94\xc8\x64\x67\x79\xfc\xf0\xc1\xce\xd0\xf4\xab\xfb\x72\xe4\x36\x60\x59\xe3\xe3\xa9\xdd\x46\x1e\xab\xda\x32\x3d\xd3\x52\xf1\x3e\x7a\x3b\x7c\x1c\xf8\x28\xd2\x8c\x46\x71\xb5\x4e\x30\xf8\x5a\x5d\x09\x3a\x83\xbb\x80\x3e\x46\x26\x0e\x19\x41\xfe\x07\x44\x52\xfc\x0f\x6e\xef\xac\xa6\x49\xcf\x66\x0f\x28\x19\xb3\x3d\x54\xb7\x45\x90\x55\xd2\xb4\x8f\xb4\x02\xaa\xa7\x8d\xea\xec\x03\xb4\x97\x65\x08\xdd\x01\xa1\xdf\xb9\xa5\x61\x12\x4c\xef\x8b\x47\x77\x4a\xd1\x51\x0d\xcd\x6b\xd1\x90\xc7\x53\xab\x3b\x75\xfa\x17\x0a\xb1\xe2\xe7\xf2\x16\x4d\xb8\xbc\x68\x93\x10\x5a\x19\x30\xf3\x67\x34\x63\xe7\x19\x77\x33\x43\x93\x2d\xdb\xde\x8c\x1f\x0b\x64\xfc\x38\x00\xf9\xef\x07\xaa\x97\x8e\xd7\x8a\xfa\xd7\x9b\x0d\x9b\xa5\x63\x5f\x1b\x45\x99\x64\x36\xb0\x5a\xb7\xb5\x52\xf4\x6d\x55\x4b\x1c\x65\x36\x8c\x72\x1b\xa3\x64\x07\x7b\xfa\x83\xfa\x28\x5b\xf5\xec\x44\xc2\xba\x69\x8e\x2c\x4a\x12\x60\x22\xab\x5f\x70\x92\xfd\xf3\xa2\x61\x76\xbb\xc9\x71\xf0\x8c\x49\xdb\xc3\x54\xee\x29\x68\x4b\x2d\xb6\x6f\x77\x1f\x57\x45\x8f\x22\x1a\x9a\x90\x91\x01\x58\xe6\x27\xe9\x83\x7c\xac\xa6\x2e\xb1\x3c\x72\xc8\x8a\x22\xb2\xbb\x11\x54\x6b\x82\x8f\x6b\x8c\xd0\xcb\xfd\x45\xb8\x27\x05\x03\x9f\xf7\xcc\xac\x1e\x1f\x5e\xa3\x6c\x0d\x1a\xe6\x03\x16\x0e\x2f\xb4\x95\x84\xd9\x6d\x4d\x56\x7b\x36\x50\xc3\x12\x17\xa6\x62\xfa\x85\xc3\x0b\xb4\x39\xcc\xb8\xc7\xce\xce\xe9\x81\x57\x6f\x92\x4f\x9a\xb8\x96\x46\xe3\x18\xf4\xd1\xb0\x1c\x7f\xaa\xeb\x76\x7f\xea\xd6\x58\x61\x48\xfd\xd5\x83\x43\x81\x43\xe2\xe3\xa9\x95\xb4\xf0\xc2\x8b\xae\xda\xe1\xf4\x31\xda\x8a\x75\xa5\xad\x90\x21\x45\x66\x56\x6c\xbc\xb7\xe5\xa8\x9d\xcf\xc3\x14\xc9\x2c\x01\xcc\x29\x1e\x03\x78\x9a\x44\x7d\x8b\x9e\x8f\x14\xf6\x15\xbe\xec\x67\x2e\xab\x36\xf1\xa2\xcd\x0a\x29\xa7\x88\xe4\x1d\x7d\x3d\x9f\xa8\xee\xd4\x72\x52\x25\x36\x7b\x7d\xce\xc0\xc5\x43\x38\xbf\x3f\x42\xea\x05\x77\xf4\x1d\xc5\x30\xcc\xcd\x5b\xa0\x0f\x38\xf2\xe5\xcf\xab\x5a\xcd\x5f\x7f\xf6\xaf\xa9\xf2\xe8\x87\x84\x2e\xe1\xe3\x26\x69\xe3\x61\x95\x9e\x39\xb8\x2a\xf3\x84\x29\xd2\xc2\xe9\x22\xd5\x33\x9d\x25\x9b\x8c\xfb\x99\xb5\xa0\x51\x73\xdc\xb6\x4e\xd5\xea\x8d\x1a\x4b\x49\x94\xcb\x63\x41\x30\xf0\x71\xa9\xf4\xd4\x3e\x76\x6f\x5e\x5a\x76\x87\x0f\xba\x71\x31\x35\x3a\xa6\xf0\x9c\xab\xd6\x2e\xe7\x7b\x5b\xcf\xcf\x7b\x7e\xe1\xea\xb1\x70\xa4\x08\x23\x82\x3d\xba\x8d\x86\x34\x06\x4c\x4f\x00\x8d\x81\xa0\xf8\x3d\x35\x35\xbf\x19\xec\xd4\x37\x7e\xe1\xc5\xce\xa1\xd9\x19\x5f\xb9\xf9\x1d\x45\x1c\x7f\x4a\xb3\xaa\x5f\x50\xb5\xef\xdb\x53\x4e\xaa\xfa\x9e\x38\x35\x9c\x57\x09\x79\x43\xcb\xf1\x3a\x9e\x9b\xb2\x3a\x87\x0f\x1e\xee\x8c\xd2\x42\x00\xd6\x92\x57\xf8\xe2\xdd\x69\xad\xcc\x95\x59\x92\x0f\x47\x04\xf1\x5c\x8d\xbc\x4a\xd4\x74\x1e\x53\x8a\x15\xd5\x02\x05\x3d\x18\x0b\xd6\xd3\x1b\x13\xf1\xfa\x69\x1d\x84\xd9\xce\x80\xca\xdd\x6e\xde\x9d\xa9\xbe\x44\x0b\xc4\x57\x2a\xfe\xf1\xb4\x99\xa8\xf6\x25\x73\x4a\x2b\x8e\xa2\x6b\x8a\xa3\xe8\x9a\x02\x77\x59\x93\x63\x5e\x7a\xc1\xf9\x62\xda\x10\xd2\xbb\x6a\xcd\xfb\xe9\x3a\x3f\x2d\x73\x7c\x2a\xa3\x05\x45\x59\x61\x16\xa3\x58\xf1\x33\x48\xe4\xe8\x71\x29\xe7\xd4\xb4\xf6\xa2\x8d\x23\xbb\x62\xf7\xaa\xe4\xf7\x0c\xf6\x96\xd3\x68\xf6\x42\xd7\x88\x4a\xb0\x4d\x01\x44\xe1\xe3\x52\x4b\x9e\x34\xcd\x14\x9b\x7e\x16\x85\xe3\xb8\x18\x67\x26\x6e\x29\x61\xd0\x0d\x45\x80\xb5\xa1\xf4\x82\x4c\x41\x7c\x14\xbd\x2f\x44\x4a\x48\x2a\x8a\xc1\x7a\x96\x80\x07\xf8\x8c\x79\x39\xf9\x44\x13\x3b\xda\x15\x9b\x99\xf8\x00\x6d\x0b\x41\x3b\xd0\x4b\x85\x1d\x01\x23\x9d\xb0\x5d\xaa\x38\xed\x77\x02\x1f\x9d\xbc\xc5\xe3\x4b\x42\x0e\x4a\x8f\x04\x81\xc5\x35\x15\x76\x3f\x0a\xa5\x3f\xfe\x15\x1a\xaa\x00\x26\x87\xd3\x58\xb8\xee\x9b\x6e\xff\x2f\x66\x26\xe9\xe5\x33\x4a\x8d\x62\x37\xb2\x00\xac\xb7\x5d\x13\xc5\x61\x35\xc3\xb6\x5a\xbc\x6f\x93\xfa\xc0\x2a\x64\xa6\x84\x71\x8e\x63\x15\x57\xb7\x52\xe3\x9d\xb4\xd4\xb0\xd3\xf7\x4d\x4d\x7b\xd1\x18\x52\x6c\x40\xc5\x80\x30\xec\xe2\x8e\x7d\xe0\x30\x89\xff\xa3\xa6\x54\xcc\xc6\x3d\xcb\x84\xa0\x8e\x9e\xe9\xf0\x41\x47\xcf\x24\x6c\x22\xe3\x24\x4f\x49\x56\xd7\xf6\x48\x50\xa9\x46\xce\xc3\x8a\x8f\x54\xf3\x12\xf2\xd6\xe9\xc9\x97\xd9\x4e\x98\x0e\x17\x3d\x77\x19\x6e\x18\x93\x6e\x7c\xdc\xf5\x35\xea\xa1\x59\x33\x49\xbb\xf5\x8d\xaf\x71\x33\xf9\x43\x95\xf9\xd7\x9e\xf8\x9d\xa9\xf4\x63\x6e\x0e\x44\xcc\xab\xd5\xb6\x06\x6d\xa9\x26\xee\x71\xc1\x98\x53\x0f\xfb\x68\xca\x61\xbf\xf2\x4a\x67\x60\x92\x1e\x17\xb5\x67\x39\xa5\xe7\xe8\x81\x4f\xd4\x2e\xe8\xa5\x43\x9b\x17\x51\xf8\x80\xfe\x77\x64\x3a\xf2\xc7\x8a\x55\xf0\x2a\xb7\x57\x64\xe2\xb4\xe5\xe8\xdf\x4e\x96\x4a\x34\x93\x7b\xe9\xf8\xcc\x0f\x4b\x9f\x1a\x6d\xa8\xa0\xd3\xc1\xe5\xc8\xc7\x21\xb2\x3a\x1b\xa8\xf8\xeb\xac\x9b\xb9\x21\x0c\x40\x62\x93\x22\x9f\xf1\xe9\xc8\x86\x06\xb0\xbf\xc5\x17\x26\xea\xcf\x6a\x1a\x67\x43\xc5\x05\xbd\xb4\xd7\xe7\x69\x21\x56\xb2\x50\x5a\xec\x1f\x6b\xbd\x1e\xa2\xc7\xdd\xab\x91\xf9\xbe\x59\xa8\x5d\x0c\xc4\xdc\xf9\xb8\xf4\x74\x0e\xe7\x82\x1a\x92\x5f\x61\xe1\xa2\x38\x4c\xb3\x91\x62\xce\x43\x61\x81\x8f\xa7\xe6\x7b\x0e\xcd\x76\xd2\x91\xd5\x22\x53\x48\xf9\xa0\xc2\xcf\xc7\xaa\xb0\xba\x6c\x92\xfe\x5a\x8a\x80\x57\x48\x91\xaa\xcb\x12\xb6\x24\x3f\xc7\x94\xa7\xe3\xc4\x23\xaa\x51\x01\xbb\x5e\x5b\xab\xd5\x2f\x48\xa6\xec\x85\x14\x4c\x12\x52\x39\x15\x21\x1e\x0b\xe3\xe1\x95\x7d\xbf\xb2\x42\xdb\xd8\x87\xfc\xcf\x58\x78\x68\x65\xed\x82\x61\x82\x25\xb8\x1a\x28\x54\xff\x6e\xb6\x37\x48\x68\xce\xd5\xc2\x9b\x24\x64\x7e\x0b\xb4\xe7\x3e\xd2\x88\xca\x0d\xa5\x6f\x72\xa3\xc6\x8a\x91\x8c\xed\x23\x6d\x2f\x42\x7e\x11\x91\x0a\x4c\xea\x0f\x11\xa9\x20\x96\x26\x76\xdb\xe7\x1c\xc8\x8c\xbe\xdc\x51\x29\x78\x8e\xe6\x1f\x92\x97\xc2\xd5\xde\x54\x78\xe7\xeb\x70\x4c\xf2\x22\x7c\xee\x76\x5a\x49\xc2\xde\x54\x50\x71\xa6\xf2\xe6\xcb\xa2\xce\x06\x92\x91\xef\x2a\x60\x71\x92\x16\x36\x3f\x50\x7d\x19\xfa\x90\x3f\xa2\x5f\x77\xa5\x69\x4f\x77\x0a\x43\xcb\x71\x2d\x7c\x3a\xee\xe4\x16\x0c\x1c\x56\xe6\x35\xfa\x19\xa7\xaa\xe9\x09\x2d\xb8\xb2\x8d\x00\xeb\x7b\xa5\xd2\x0b\xd8\x50\x13\x07\x7b\xbb\x6a\x60\xa0\x32\xbb\x0a\xda\xf1\x7d\x7c\x88\xb5\xbf\x68\x51\x8a\x64\x5a\x03\xd4\x30\x1f\xd9\x30\x32\x31\x4b\x9c\x63\x9d\x9d\x0e\xfc\x9a\x3b\xad\xbb\xcd\xc3\x51\x9c\xae\x01\x2d\x04\x88\xca\x86\x62\x10\x52\x13\x37\x66\xb8\x98\x45\x46\x8b\x1d\xb0\x6d\x90\x3b\xd9\x19\x2d\x48\x6d\x4c\xba\x52\x1e\x70\x70\x2b\x50\xd8\xdd\x5b\x53\x9d\xd7\x97\x16\x88\x05\x1e\x4e\xc7\xb1\xc0\x57\x0f\x5d\xc8\x54\x77\x96\xe1\xaa\x38\x2d\x4c\x93\x25\xdb\xb3\x59\xad\xa8\x84\xea\x2a\x9b\x09\x3e\x69\x62\x84\x7d\x75\x6c\xe2\x68\x09\xfd\x7d\x49\x74\xaa\x75\x21\x19\x50\x03\x55\xd9\x52\x66\x92\x70\x10\xe5\xc2\xb5\x05\x6b\x7d\x5a\x71\x05\x9c\x56\x00\xe0\x9e\x5d\xaa\xbc\x23\x5c\xb9\x70\xd1\xf8\x4a\xdc\x39\x35\x47\xc0\xa5\x74\xac\xa3\x8f\x15\xc2\xa4\x32\xd0\x26\x8b\xf2\x34\x69\x2b\x85\xb8\x73\xaa\x7c\xf3\x91\x8e\xf8\x7e\xa6\x18\xf4\xcc\x62\xba\x62\xf7\xfa\x34\xe7\xa2\x1e\xbe\xbf\x08\xca\x13\xa7\xa0\x50\xdd\x8d\x28\x28\x28\xfc\xee\x1b\x0a\x94\xf5\x86\x22\xec\x5d\x32\x61\x94\xf4\xf7\xd0\xc7\x50\xd4\xe7\xaa\x97\x88\x20\xd3\xc5\x8a\x6c\x0c\xfd\x14\xff\x19\x2d\x34\x29\x84\x48\x24\x61\xc2\x90\xb5\xc5\x6a\xac\x90\x27\x03\x25\x13\x72\xd2\x2d\xcb\x25\x13\x17\x36\x63\x58\x0f\xbc\xf5\xee\xae\xe2\x83\xbb\xab\x86\x32\x3e\x9a\x2a\xba\x92\xbc\x20\x0d\xfa\x29\x30\x12\x57\x7d\x64\x76\xcd\x61\x60\xa3\x2c\x4a\xfa\xe4\x1a\x51\x40\x44\x4a\x8f\x0b\xba\xa8\xa7\x2e\x36\x75\xd1\xef\xfd\xe0\x80\xa7\xee\x7a\x16\x1e\x03\xe6\x02\x93\x5c\x7c\xec\x1a\xf6\x54\x0f\x6c\xfb\xc4\xf5\xa6\x2a\x78\x7d\xaf\x54\x20\x8c\xeb\x53\x8b\xf2\xe8\xc1\x97\x3b\x23\x13\x2e\x9b\xbe\x74\xd0\x59\x40\x5e\xf1\x11\x5e\x52\x19\xe8\xd0\x1a\x60\x08\x9e\x63\xd3\x76\x4b\x35\xd0\x6f\x29\x1b\x61\x62\xe2\xa4\x7e\xac\x8a\xb6\x1c\xb7\x62\xf5\xba\x91\xfc\x1e\x27\x1b\x2c\xc9\xb9\xe6\x13\xfe\x14\x98\x49\xdc\xe3\x6e\x2a\x19\x22\x0a\x60\x75\x53\xd8\x70\x36\x07\x88\x82\xe1\xea\xb1\x28\x4e\x95\x3e\x10\xb9\x86\x15\x8b\x90\xfa\x2e\xd8\x37\xf1\xb8\xff\x2e\xd6\x14\x5f\x0b\x0c\x32\xbe\xeb\x5d\xcd\xc7\xf2\x4e\xe9\x47\xb5\xff\xae\x42\xc4\x65\x36\xb7\xc3\xc5\x98\x4a\xd8\xd5\x4f\xbb\x04\xcd\x27\x6b\xcd\x18\xc2\xb5\xe1\x62\x0a\xca\x30\xd8\xca\x33\x8a\xf9\xf3\x4c\xd3\xc4\x75\x2f\x33\x43\x93\x6b\x65\xe7\x6b\x4a\xd9\x79\xba\xb5\x42\x45\xaa\x64\x6d\x48\x40\x73\x3f\x5b\x15\xa8\xd9\x2a\xc5\x6c\x4c\xca\xd1\x30\x45\x68\x5c\xde\xc6\x63\xe5\x93\x06\x3a\x1c\xd3\x5b\xf1\x6c\x4f\xbc\x0d\x4b\xd5\xf9\xf9\x41\xc3\x64\xcd\xe1\x4e\xcc\xf8\x24\x04\x34\x08\x10\x40\x02\x03\x8f\x84\x40\x0b\xbb\xef\x1d\x1d\x89\xae\x0d\x17\xa3\xb4\xe0\x22\xfe\x9f\xe5\x29\x1f\x3a\x44\x02\x33\xa2\x36\x8b\xaf\xbc\x1a\xa8\x44\xef\x6a\xc3\x9b\x79\xae\xb3\x94\x66\x6e\x7c\xbe\x11\x86\xa7\xe6\x05\xd6\xf2\xbd\xb4\x46\x04\xfa\x5f\x3d\x67\x00\x62\x6e\x2a\x2a\x8d\x2e\xab\x8c\x21\x25\xc4\x68\x08\xb2\xc8\x99\x89\xaf\xbc\xef\x9e\x34\xa9\x30\xa6\xab\x62\xc8\x1c\x06\xcc\xcd\x5e\x37\x2e\x13\xba\x7c\xfe\x08\x22\xed\x0f\x02\x35\x52\xfa\x81\x2f\xd6\x15\x85\x1d\x8e\x8a\x07\xe8\x1f\x11\x1a\xfd\x31\x45\x30\xa8\x0e\xdc\x26\x0f\x86\x88\xf4\x0e\x2d\x34\xba\xff\xff\xe9\x09\xd4\xf8\x59\xa1\x0a\xfb\xc5\xf1\x4a\x79\x8e\x87\x77\x68\x39\x23\x80\xda\xaf\x1a\xb3\x66\x94\x45\xf1\x5e\xdf\xe6\x3e\xa9\xc7\x56\xaf\x94\x8a\xed\xe5\x0a\x5d\x80\xe6\x66\x74\x0a\x9b\x2e\x14\xf9\x6e\x83\x18\xf3\x42\x27\x37\x4b\xd8\x8c\xaa\xf7\xeb\x47\x26\x5c\xc2\x32\x30\xd9\x14\x07\xd4\x4d\xc5\x01\x75\xb3\x71\xe3\x66\xe9\xe2\x38\x2f\x30\x5e\x83\x80\xe2\x94\x82\x52\x9e\x03\x60\x46\x48\xfb\x1e\xd1\x0a\xf2\xa1\xdd\xe7\x9b\x81\xbc\xa6\x10\x66\x6f\xe2\xbe\xf9\x44\xa5\x91\x4c\xf0\x09\x87\xc7\x50\x44\xc4\xec\x52\xa8\xe5\x33\xc7\x9b\x83\x80\xcc\x02\xa0\x29\x3c\x11\xf4\x25\xee\xa4\xfa\x29\x9c\xdc\x0f\xfc\x88\x7f\x5c\xac\xec\xd1\x7a\x83\x4a\xde\xe5\x9d\x40\xf1\x23\xf3\x17\xa0\x0e\x08\x6e\x23\x8e\xc4\xdd\x93\xed\xd9\x30\xad\x02\x29\x1e\xc9\xc7\x52\xff\x20\xf0\xb5\xe9\x0f\x6a\xb9\x43\x3a\xb2\x07\x14\x3f\xc5\x05\xb0\xee\xc8\x88\x87\x5f\xee\xfb\xf4\x2e\x5a\x57\xa8\xd3\x1b\x0a\xa6\xf1\x33\x2c\x42\x11\x6e\xae\x96\x10\x9a\xfe\xa7\xd1\x23\xc7\x8b\xb9\x4b\xb1\xb6\xab\x89\xe8\x74\xe2\x61\x0d\x42\x05\xe8\x8b\x39\xe5\xd5\x6c\xcb\x5b\xca\x08\x1c\xfd\xd5\x5f\x53\x32\x4b\xcc\x2d\x23\x23\x09\xba\x75\x31\xfa\xeb\x7f\x95\x58\x88\xb1\x5b\x78\xd8\x0b\x10\x17\x96\x26\x45\x1b\xeb\x9a\xa2\x22\x38\x8e\xed\x81\x88\xf0\x13\x55\x2c\xcc\x47\x99\xd1\x82\xed\x77\x14\xbd\xd5\x9d\xa6\x31\xde\x5e\x94\xc7\xe9\x9a\x89\xdb\x7e\x3e\x01\xfd\x61\xac\x47\xae\x96\xc1\x74\xaf\x37\x2a\x9d\x8e\x46\xd6\xc4\x7b\x7c\xbf\xe8\x8a\x8a\x3a\xff\xa0\x36\xfe\x5d\x7f\x07\x35\x32\x69\xff\xdc\xbe\xf1\xf5\x97\xe8\xfa\x91\x3c\x6d\xea\x39\x91\x69\x74\x64\x65\xcc\xc7\x49\x8d\xce\xa3\xd4\x05\x84\xb2\x06\x2b\x34\xd9\xda\x97\xaa\x17\x87\x4c\x95\x23\x3a\xa0\x23\xff\x36\x5a\xb2\x2c\x8c\x4e\xc6\x14\x69\xd1\x5d\x78\x7b\x56\x3f\xa7\xf5\x81\xc2\xc0\x6e\xe2\xbc\x46\xfc\x43\x75\xc2\xe7\xb6\x4f\xaa\x58\xf6\x22\x1a\xbe\xa2\xb4\xae\x39\xe6\x4b\xc5\xd2\x79\x9a\x23\x1b\x58\xbd\x87\x26\x14\x74\x48\x90\xa9\x86\x53\x4f\x69\xe9\x96\x33\xd8\x0a\x32\xc6\x4e\xa6\x45\x46\x5f\x2b\x4b\x8d\x2b\xb8\xa1\x88\x14\x4e\x94\x4a\x17\xe3\xc6\x54\x31\xfe\xe8\x41\x61\x9b\x3f\x2c\x98\x4b\xc4\x55\x3c\xff\xad\x10\x74\xe0\x12\x64\xcd\xed\xda\x3a\x8e\x0a\xfb\x38\xad\x5d\x66\xf2\x54\x02\x1e\x97\x71\xc1\xa8\x9d\x5e\xa7\x6b\xc4\x1f\x61\x0a\x0b\x65\x76\x96\x93\x97\x99\x4f\x4d\x93\x70\x15\x85\x0a\x69\x32\x78\x31\xb7\xcf\xb5\xb6\x02\x32\x65\x81\x0f\xab\x74\x67\x77\xb7\xa6\xf4\x10\x78\xbc\xdb\x0c\x1e\x38\xf2\xf1\x1b\x1a\x7c\xcd\x7d\x2d\x38\xbd\xef\x38\xdc\x43\xcf\x86\xcf\xee\xdf\xfd\xcb\x6e\xf6\xbf\xe5\xa6\x1f\xff\x55\xa9\xba\xf5\xbf\x8d\xa5\xee\xaa\xc8\xd5\xb5\x20\x02\x9e\xe9\x7a\x69\x8a\x5d\x8c\x18\x72\x1c\x0c\x2e\x1c\xbb\x5c\x2a\xe4\xce\x3f\xac\xd1\x04\x35\x34\x63\x43\x93\x47\x49\x9a\x2b\xdd\x9e\x6b\x9a\x45\xfc\x9a\xd2\x00\x36\x59\x16\xad\xa0\x06\xa0\xe8\xd1\x5f\xf4\x64\xfc\xae\xbc\x76\x27\xf0\xc4\x33\x4b\x36\xe9\x19\x46\x13\xbb\x02\x93\xc3\xee\x5d\xd3\x0c\x0c\xd3\xec\x43\xb3\x47\x3a\x26\x27\x3c\x5c\x61\x55\xef\x12\x38\x23\x3e\x0e\x34\x03\x3c\x84\x9f\x10\xd1\x36\x17\x0f\xbc\x93\xc8\x21\x6d\x36\xeb\xd5\xb8\x9c\xb0\xf9\x3f\xc3\x3b\xc0\x9a\x9f\xe6\xd6\x20\x06\xd5\x2c\x1d\x8d\x24\x4f\x63\xa1\xaf\x52\x15\x62\x4e\xa8\x84\x94\x50\x79\xb1\x86\x01\x9e\x51\xfe\xe5\x4c\xcd\xd0\x8c\x6d\xbc\xcf\xdf\x1d\x8b\x77\x3a\x52\xdb\xea\x61\x09\xd2\xb1\xba\x5c\x58\xa0\xff\x05\x86\x9f\x0b\x3d\x4a\x21\xe2\x14\x96\x25\xff\x95\x62\x0d\x4e\xec\x6a\x3e\xca\xa2\xea\xbd\xec\xc0\x62\x21\xee\xbc\x19\x68\x2c\x56\xc3\x10\x65\x6e\x5f\x13\xac\x33\x9e\x12\xfa\x63\x7c\xdc\xd0\xf5\x5a\xe8\x0c\x6c\x3c\x42\x0c\x8c\xe0\xe3\x94\xe2\x61\xd5\xcd\x14\x66\x1d\x6b\x79\x4d\xdd\xa7\x98\xfb\x91\x4f\x6a\xe2\xf2\x61\x68\xf3\x9c\xab\xc9\xb0\xa8\x88\xf7\xf9\x78\xb2\xb3\x95\x55\xad\x79\x2a\x5b\x50\x34\x11\xaf\xd5\xc4\x35\x4a\x6f\xe2\xd7\x95\x80\xd6\x62\x6c\xc2\xe5\x9c\x5e\x8b\x74\xec\x2a\xdb\x23\x3d\xaf\xca\x74\xb8\x5e\x98\x6b\xe7\x9c\xaf\xd5\xa6\xcf\xef\xe0\x75\x74\xf2\x8a\x77\xeb\x86\x30\x79\xba\xa5\xe6\xaf\x3e\x81\xf1\xe2\x13\x4d\x2b\xd7\x8b\x8a\x34\xc3\x78\x25\x42\x58\xec\x2a\x98\xb9\xe3\x5a\x0c\x71\xda\x75\x13\x7e\x18\xa1\xfa\x8c\xe7\x21\x7f\xa3\xf4\x22\x34\x2c\xed\x89\x58\xe8\xb5\xd2\x0f\x10\xec\x9a\xec\x10\xfc\xa1\x69\x37\x0a\x42\x11\x06\xbd\xa5\xa9\x5c\xd7\x15\x5b\xe8\xad\xa0\x66\x96\x14\x45\xc8\x7b\x1a\x55\xf7\x0f\x91\xa0\x63\xc5\x8e\x5c\xad\xa3\x48\xa3\x98\x29\x11\x90\x26\xa0\xc9\xca\xc7\x5a\xad\xd1\x26\xbd\x5c\x55\xd9\x2f\x6a\x7d\x9a\x8b\x6a\x60\x30\x5d\x5c\x89\xd2\x71\x5e\x33\x15\x8a\x02\x74\x43\x4d\x2f\x2e\x9a\x65\x21\xe9\x40\x14\x7e\x51\xf1\x65\x5e\x6c\xe2\x19\x1f\x65\xe9\x30\x95\x56\x0e\xcf\xa4\xd5\xa8\x5c\xc8\xef\x0a\x41\x56\xc3\x6c\xd5\xaa\x89\xe3\xb6\x02\x9e\xa1\x34\x87\xb6\xd5\x0d\x25\xcc\xf0\xc9\xd4\x87\xab\x84\x62\x31\xe2\x64\xd3\x51\x4b\xba\x1a\xd1\x7b\x0d\xaa\x0c\x9d\x45\x1b\x2f\x99\x1c\xad\x38\x7c\xef\x79\x85\x8e\x62\x05\x57\x60\x81\x35\x2d\xfa\x20\xcd\x7a\x0c\x36\x46\xac\xf2\x5f\xd0\x73\xe1\xe3\xf2\x29\x4d\xd7\x38\xb2\x05\xad\xd8\x7d\x74\xe7\xd8\x06\x60\x84\x93\xd2\xa4\x0f\x8b\x79\x64\x19\xcb\xf2\x8f\x02\x4f\xd0\x82\x36\x05\xfc\x3a\x80\x24\x22\x16\xd9\x28\x01\x34\x1c\x46\x85\x83\xb9\x23\x36\xf8\x34\x50\xfc\x1e\x9f\x36\xaa\xab\x0f\x0c\xc7\x84\x8c\x47\x0a\x94\xd1\x3d\xd9\x84\x84\xce\x6c\x61\xa2\xd8\xf5\x69\x9c\x37\x71\x2c\x88\xe7\x9b\x44\x0a\xa9\x5b\xe7\x3e\xc4\x0a\x0d\x2a\xfc\xad\x37\x43\x86\x69\x36\x43\x71\x90\x52\xb8\xf1\x7c\x19\x95\x31\x12\x7a\x69\xba\x3f\x21\xd5\xf0\xfb\x62\x29\x33\xc9\xf2\x3e\x7a\x57\xd8\xd5\xb7\x34\x82\x52\x93\xdf\xde\xd4\x69\xe4\xe5\x40\x75\x77\xff\x75\xa9\xe6\x46\x6f\x2a\x81\xcc\x2f\x16\x22\xea\x67\xd6\x14\x44\xf7\x05\x4c\x08\x64\x35\x71\x87\xd7\xe9\x0d\x22\x98\xbb\xa8\xb1\x2b\xef\x2a\xd3\x1b\x0d\x87\xe3\x84\xa9\x27\x24\x92\xaf\xbe\x42\xf8\xf9\x54\x7e\xa9\x73\x99\x7e\x9a\xf6\xf2\xbd\x14\x46\x3b\x48\x92\xef\x2d\x7f\xaa\x26\xfe\x19\xb3\x8e\xdd\x71\x02\x56\x5a\xe6\x16\x3c\x4e\xe6\xbe\x12\x9e\x70\xe2\x3b\xf4\xdb\x32\x91\x52\x39\x01\xa9\x1e\x56\xef\x83\x8f\xf1\xa2\xf8\x8f\x94\xfa\xf0\x62\x66\x99\x51\xca\xd1\x7f\x7b\x2a\xf0\xa9\xc7\x39\x3f\x2f\x03\x1f\x51\xd2\x67\xd6\x36\x14\xb7\x98\xaa\x42\x46\x18\x5b\x7e\x9c\x11\xf7\xc5\x7f\xa5\x9e\xe8\x28\x4b\x57\x58\xcd\x40\x46\xa0\x1d\xbf\xeb\xbf\x7f\x5d\x51\xba\x5e\xa0\x7b\xe2\xff\x3f\x35\x84\xf7\x4c\x67\xd5\x64\x43\x35\x59\x7a\x5b\x71\xb5\xde\x56\x74\x1e\x66\xc5\x44\xb1\x59\x8c\x51\xed\x47\x61\xea\xff\xa4\x31\x79\x19\x55\x6c\x39\x19\x72\xe6\xc3\xc1\x32\xe0\xb1\x69\xbc\x80\x9b\x64\x06\x90\xd0\x4c\x2f\xb7\xf9\xf9\x4e\x42\x6d\x96\xd5\x88\xbb\x54\x80\xe2\xdf\x56\x14\x6c\x10\xef\xe7\xf1\x62\x95\x34\xfe\xc7\x47\x0f\xb5\x15\x75\xc4\x7d\x84\x1a\x0d\xfc\x82\x53\x6d\x7b\x59\xe4\x8b\x69\x2e\x55\x44\x21\xbd\xa2\x2f\x94\x0c\xc8\xff\x56\x3c\x24\x96\x18\xe9\xfc\xfc\x42\xd7\xf7\xc0\xf7\xd2\x14\x8b\x0c\xaa\xd1\xaa\x71\xd4\x55\x0a\x28\xe9\xc6\x63\x88\xc0\xba\xa5\xea\x0c\xdf\x0e\x3c\x23\xe9\xb7\x9b\xb2\xed\x7c\x1c\x2f\x8d\x33\x2d\xf4\x04\x95\x2d\x51\xe3\x90\xaf\x5e\x8a\x92\x3e\xbb\x2e\x6c\x4e\xe0\xfe\x70\x69\xf7\x75\x37\xe6\xb8\x2e\x6d\x98\xac\x78\x94\x36\x1c\x6a\x6a\x77\xc8\xb8\xc3\x00\xde\x2d\x55\x72\xc7\xe3\xf3\xf8\xd5\x99\x6e\xb5\xec\xf1\x80\xcf\xc0\xf0\xc0\xf5\xef\x9a\x78\x38\x6f\x6b\xa2\xb8\x0d\x20\xbe\xc8\x9f\xd0\xcc\x57\xff\x5c\x25\x8d\x9b\xa5\xaf\x55\x9d\x41\x7a\x8e\x62\xda\x1f\x04\xaa\xa5\xfc\x4e\x50\x43\x3f\xf8\x56\xf7\xd2\x80\x87\xe7\xa4\xdb\xac\xe8\xd0\x37\x54\x46\x94\x66\x26\xe9\x33\x4a\x0c\x75\xfc\xf7\xc8\xb2\xf0\xb1\x6a\xcf\x87\xe9\x30\x4a\xfa\x8f\xd2\x95\x20\xe7\x3b\x5f\x2a\x5a\xf1\x75\x70\x12\xf3\xbf\x20\xe8\x73\xda\x84\x5e\x0e\xf0\x1a\xbd\x62\xd1\xd3\xae\x9e\x83\x30\x68\xa8\x50\xe1\x7e\xa0\x7a\x32\x77\x38\x17\x46\x02\x89\xc8\x01\x35\xaa\x2d\x25\xab\xb3\x55\xb6\x9e\x7e\xda\x6b\x31\x1e\x15\x24\xdb\x35\xa2\x3c\xe2\xdf\xa8\xf9\xf3\x84\x11\x72\x79\x8d\x9a\x41\x35\x95\x37\x14\x5b\xfd\x78\x29\x6d\x7b\x48\xdc\x9b\x4a\xfc\x87\xc1\x43\xd8\xac\xd7\xb4\xc4\x67\x96\x9a\xde\xaa\x61\xd5\x51\x78\x1c\x16\xa8\xe0\x13\xd5\x68\x30\xa3\x51\xbc\xf6\x00\x65\xe3\x30\x29\x9c\xf6\xa0\xe7\x82\x5a\xaa\xf3\x17\x3e\x8a\x63\xd4\x09\x9f\x94\xad\xaf\xcf\x7a\x8d\x3e\x27\x8e\x7a\xbd\x54\x6c\xb0\x53\x1d\xe5\xe7\xe7\x21\x10\x15\xc7\x36\xe9\x4b\xa4\x21\x44\x0c\x2d\xcf\x8b\xa1\x94\xbb\xa3\x24\x2f\xaa\xbf\x07\xde\x5b\x48\x5b\x69\x53\x61\x04\x0e\x13\x5b\x7c\x1c\x78\xa5\xd1\xcd\xa6\x09\x8d\xe5\x34\xb3\xcc\xa3\x87\xd7\xc4\x15\x4d\x3e\x51\x20\x5d\xd3\xcf\xac\xed\xed\xdd\x29\x0d\x85\x8d\xfc\x1d\x3c\x5a\xf4\x19\x76\x77\xd5\x43\xbf\xa3\x64\x83\x18\x9a\x2d\x39\xb8\xd2\xb2\xb7\x59\x11\x91\x96\xbd\x52\xce\xbd\xa9\xd5\x72\x6f\x4e\x0d\x23\x1d\x9a\xed\x24\x1c\xd1\xa3\xed\xfe\x01\x2d\x4e\x3e\x6e\xb2\x5f\x99\x2d\xc6\x59\x82\xee\x08\x3c\xd4\xbf\xa4\x8b\x83\x4b\xe1\xba\xb6\xc0\x2e\xbd\x1b\xfb\x97\x0a\x9c\xf0\x40\x57\x51\x34\x4c\xd3\x1b\x55\x59\xea\xa2\x09\x97\xb9\xbf\xe3\xd8\x97\xaa\xcf\xf0\x89\x1b\x00\x59\x89\xb2\x7e\x24\x52\x5f\x22\x18\xd3\x72\xbc\x84\x1b\xce\x52\xf7\xb2\x68\xc5\x26\x33\x1e\xe9\x8a\x0e\x0d\xf6\xe7\x05\x55\xc9\xe0\xd4\x09\x59\xfc\xc3\xdd\x2f\x0a\xa9\x56\x33\xaa\xb6\xcd\xcd\x71\xda\x0e\x7d\x25\x19\x1c\xf0\xea\xa3\x6f\x93\x81\x10\xd9\xc4\x86\xc9\xfb\xbe\x89\x57\x4c\xe2\xe5\x5d\xb1\x71\xaf\x28\xe8\xed\x15\x2f\xe3\x57\x0c\x62\x5b\x58\x99\x9b\x43\x4c\x75\x1a\x8f\x1c\x7b\xee\x76\xa0\x27\x77\x1b\x0a\x00\xcf\x75\x06\x51\x7f\x40\xb0\x57\x6c\x7e\xd6\x73\x45\xcc\xf3\x63\x35\x55\x7a\x52\xc5\xad\xf9\x38\xeb\xb3\xb6\x24\x5a\x28\xb7\x95\xf9\x40\x4e\x85\x78\xe7\xb7\xa7\xa6\x22\x17\x0e\x93\xe6\x79\x61\xf2\x42\x14\x41\x5e\x6e\x1c\x4c\xf2\x69\x75\x6e\x57\x6c\x52\x0c\xa8\x44\x2f\xe5\xd9\xea\x29\xf2\xb1\x7a\xf9\xb6\x48\xcc\x90\x56\x2f\xbf\x05\xec\x0d\x79\x25\xf2\xf2\x57\x4c\x3c\xb6\xf9\x3e\xdf\x31\x67\x46\x4e\xd8\xdd\x4d\x74\x8d\x81\xc4\x06\x29\xad\x94\x38\xe8\x62\x85\xd0\x53\x35\x68\x5b\xdd\x2a\x72\x92\xc4\x5c\x91\xf0\xd9\xc4\x14\x16\x70\x3e\x6c\x63\x06\xfc\x48\x72\xaf\xb2\x98\x56\xb7\x8e\xba\xf2\x85\x9b\x8b\x40\x48\x89\x3f\x6e\x39\xbe\xae\xeb\xa5\xf6\xba\x8e\x33\xc8\xae\xe6\xfb\x94\x22\x0b\xff\x0a\xf2\xda\xad\x40\x57\x28\xf7\x4c\x7c\x63\xf5\x00\x95\xbf\xe1\xe7\x31\x02\xad\x5c\xe2\xcb\x8e\x3a\x7e\xa7\x09\x38\xf2\x42\x27\x1f\xa6\x69\x01\x9a\x1c\x94\x1b\x3e\xa0\xe2\x0b\x1f\x4f\x7d\xa2\xca\x85\x57\x4c\x2c\xd9\xb0\xb0\xc3\xfb\xa6\xcb\xa5\x40\x6b\xbc\x98\xb6\xea\x4f\x23\xbf\x81\x39\xb9\x4f\xb1\x0c\x72\xcd\xcf\x14\x52\x3c\x0f\x33\x6b\xc3\x81\x50\xee\x89\x70\xb3\xe7\x6f\x3d\xaf\x8c\x64\xcf\x16\x36\x03\x49\x42\xf5\x8c\x99\xe9\x44\x19\xbd\x4b\x3b\x4a\xe2\xf9\x97\xe9\xaa\x05\x3b\xe3\x01\xe6\xfb\x26\xad\x43\x87\x64\xf8\x19\x34\xf6\x4e\x0d\xeb\xe8\x41\x7e\x95\x4c\xf8\x09\xd3\xb2\x0b\x72\x44\x58\x75\x0f\x01\xf1\x8b\xe7\xbf\x45\x79\x07\x43\x6e\xb5\x86\xcb\x03\x20\x7d\x42\x85\xe5\xbe\x62\xd9\xba\x42\x0a\x46\x02\xbd\x55\x82\x42\x8f\x50\x64\x86\x7b\xf9\xae\x9e\xf2\xbf\x59\xa2\x86\x2e\x65\x46\xa5\xf3\xba\x1f\x85\x26\x2e\x06\xd3\xcb\x44\xf5\x0c\x30\x19\x5c\xe3\x82\x02\x39\xdf\x68\x64\xa8\x0f\xe3\x28\x89\x42\x13\xd7\x44\xb9\x4a\x85\x9d\xad\x95\x58\xd3\xc2\x20\x99\xd6\xb3\xe4\xb8\x87\x9f\xe1\xe2\xf8\x04\x26\x4d\x78\x0b\x76\xda\x17\x12\x6b\x07\xb0\x8d\x8c\x68\xcb\x51\x6d\xef\xe0\xf4\x52\x94\x78\x66\xd9\xe6\x0f\xd0\x6f\xc3\x09\x23\x1f\x96\x19\x04\xaf\x64\x08\x29\x2a\x37\x32\x7e\xf4\xa0\x6b\xa3\x55\xcb\x40\x60\x95\x3e\x39\xf9\x7d\x84\xe5\xd8\xf9\xd3\x7a\xcf\xf3\xf3\x0b\x1d\x13\x0d\x6b\x42\x0e\xd7\xb5\x90\xc3\x75\x95\x20\x2e\x67\x66\x25\x62\x84\x35\x82\x23\x76\xfc\x7c\x52\x7b\x96\xcf\x3e\xfb\xec\x63\xaa\x82\xca\xef\x13\x4f\x9d\x47\x69\x10\x48\xb5\xf5\xaa\x3b\x4b\x81\x25\x8c\x06\x2c\x00\x9c\x48\x6b\x52\x05\xa2\xa8\x04\x42\x27\x4f\x64\x4f\xab\x47\x00\x47\x0f\x3d\x66\x3c\xbe\x7d\x00\x71\x22\x79\xbc\x50\x7a\xe4\xe5\x1f\x96\x35\xd2\x45\xec\x05\x6e\x83\xa0\x12\x80\xb7\xda\x9e\x50\xac\xcd\xbf\xe8\x0c\x5b\x98\xa6\x31\x14\x1e\x95\x52\x8b\xaa\x55\x54\xf7\x08\x5b\x7a\x4b\xb5\xd6\x9f\xec\x2a\x54\xc4\xef\x29\xc9\xd4\x75\x35\x84\xcf\x23\xe5\xd2\x56\x0c\xed\x93\xf4\x90\x60\x25\x59\xb8\xcf\x61\x57\x7d\xd5\x83\xd1\xf4\x8e\xa3\xee\xab\x2f\x71\x06\x75\x1b\x60\x23\xa7\xf8\x70\x58\x6a\xb8\xa0\xd4\xc7\xce\xbe\x42\xd3\x4a\x48\xab\x5b\x13\x3f\x7e\x0a\xb8\x0b\x56\xfb\x35\xed\x2f\xce\x62\x1f\x20\x30\xbf\xa9\x58\x63\xf6\x40\x30\x0d\x0f\xec\xef\xc1\x60\xe3\x72\xcf\xd2\x92\xe5\xdf\x63\xdb\x8f\xf5\xf8\x26\x49\x9b\x61\x61\x9f\x77\x9a\x04\x5c\x80\x8d\xd7\x28\x24\x40\x91\xf4\xb3\x40\x0d\x62\x7e\x84\x87\x81\xfc\xff\xff\x9a\x0a\x20\xab\xed\x37\x1e\xb5\xab\x9b\x74\xdc\x78\x87\x45\x38\xe3\xb1\xae\xd7\xcc\x79\x70\xf2\x98\x03\x3f\xbf\x3a\xb6\xf9\x0e\xe6\x8b\x93\x74\x77\x7c\xac\xc6\x3d\xa9\x45\x62\x46\x34\x46\x58\xfd\xb5\x10\xad\xd3\x15\x0a\x05\xbb\x92\xeb\x4c\xd6\x8a\x68\xc8\xe5\x50\xe9\xe3\x56\x4f\x97\x8f\x1b\xc0\x71\xf3\x9d\x74\x9c\xe5\x36\x5e\xb1\xd0\xd0\x85\xbd\xf8\x00\x33\xf9\x7c\xa2\x94\x42\xa2\x6f\x3a\x90\x13\x62\xc4\x47\x27\xbe\x59\x7f\x4d\xa9\x73\xfe\xfa\x53\x4e\x2a\x65\x60\xcd\x4a\x64\x33\xaa\xf6\xc8\x88\x07\xbd\x40\x64\xf3\xe0\x03\x72\x45\x8b\x6a\x21\xc1\xb0\xdf\xad\xf7\xa4\x7a\x6b\x7b\x7c\xb9\xfd\x76\xf9\x7f\xf3\xf5\xa7\x41\x96\x9c\xd9\x79\x18\xdc\x7d\xab\x7a\xc1\x36\xc0\x60\x99\xf9\x48\x7d\x8a\xb8\x92\x26\x0c\x4a\x01\xc1\x92\x65\xd9\x0a\xfd\xc9\xeb\xaa\x12\x31\x5d\xc1\x29\x94\xab\x7b\x1a\x12\x42\x3f\x90\x95\xf7\xbd\xf7\x26\x3a\x6f\xe6\x9d\x5c\xaa\x50\x70\x38\xc2\xe1\x1f\x0e\x87\x82\xa1\x30\x6d\x52\x0e\x33\x1c\x0e\x51\x66\x90\xa2\x6c\xd1\xe4\x90\x12\x65\x8e\x86\x59\x1c\x0e\x39\x9c\xc1\x00\x83\x65\xb0\x6f\xbd\x6f\xd5\xdd\xd5\xfb\xde\xd5\x8e\x3c\xcf\x39\xef\x7b\xb2\x32\x31\xbf\x90\x89\xae\x7b\x6f\xe6\xbb\x9c\xf7\x2c\xcf\x79\x9e\xba\x7c\x48\xb5\x04\x10\x5f\x9e\xc6\x12\xc2\x8c\x69\xa6\xbe\x4e\xa3\xfd\xa3\xb2\x48\xb1\x31\xfd\x5d\x6e\x63\xdf\x41\xd4\xc6\x8c\xfb\xf4\xe9\x9a\x98\xb6\x12\x8f\x9e\xb3\x71\xb3\x1d\x9e\x2a\x60\x34\xe9\xb4\x4b\x2f\xff\x7a\xb7\xe7\x0e\xad\xce\xba\x45\x95\xfc\xdc\x93\xeb\x35\xea\xc7\x16\x6d\xfc\x28\x49\x0e\x31\x82\x13\x3b\xfb\x58\xa9\x5a\x6b\x76\x2a\xd2\x93\x9b\x1a\xbd\x98\xe4\x49\x4a\x01\x16\x46\xfa\x42\xa9\x49\x26\x58\xd7\x9f\xff\x09\x27\x0b\xf3\x09\x96\x6a\xcd\x70\x50\xca\x9f\xd1\xf4\x4a\x49\x14\x51\x73\x1e\x06\xeb\x3e\xc6\x5d\x9c\x4f\x47\x9d\x75\x89\x76\x81\x30\x23\x55\x4f\xca\x89\x1b\xcf\xa5\xbf\x76\xf6\x5a\x10\xc7\xa9\x19\xb8\x56\x17\x41\xf6\x29\x88\xa3\xa6\x56\xc9\xb3\x82\x7c\x5f\xb8\x1d\xf7\x34\xec\xfa\x9e\x3a\x49\xfa\xe1\x60\x20\xd5\x58\xbb\x25\xac\x51\xd7\xd5\x98\x28\x8c\x0f\xd1\xea\x76\xcc\x25\x3f\x2e\x5d\x80\x7c\x56\x97\xc1\x2f\xaa\x7e\xf2\x20\x89\x22\x13\x48\x25\xcf\x61\x7c\xe1\x57\xc9\x3c\x3c\xa2\x54\x97\xcd\x84\x72\x11\xc8\x24\x62\x2a\x19\x23\x03\x93\xe7\xd2\x17\xd6\x5d\x18\xe4\x0f\xb8\xce\x7c\x3e\xe1\x10\x0e\x42\x3e\x8a\x7e\xe6\xbb\x4f\xd2\x77\x61\x55\x3d\x4a\xac\x1d\xf8\x8d\x77\xeb\x02\x3b\x8a\x44\x6d\xe7\xba\x62\x63\xb8\x4a\x49\x07\xe1\x85\x56\xc2\x1f\x49\x86\x1e\x90\xea\x4b\x70\x16\x30\x66\x99\x6f\x14\x2c\xb6\x1f\x66\xc6\xcf\xd8\x06\xc1\xa7\xba\x83\x75\xc2\x37\xde\x93\x2d\x1e\xb2\xaf\xc4\x9c\x4f\x62\xf9\xf1\x4d\x9b\x32\x4a\x36\x09\xd3\x50\x32\x8f\xf0\xc9\x8e\xaa\x82\xd4\x51\x05\x50\x1b\xa4\x09\x17\xfe\xb1\x8f\xd9\x46\xa1\xb5\xe4\x9a\x62\x03\x9e\xee\x39\x0e\xca\x2c\xf7\xb9\x4b\x13\x7f\xf7\x9a\xe7\xda\x51\x5e\x53\xef\x9a\x8f\xd2\xa4\x18\x8e\x00\xf3\x12\xce\x8c\xea\x94\x93\x5a\xbc\x8b\x90\xaf\xc0\xaf\x45\x3a\xe8\xbe\xa7\x36\xce\xa6\x6e\xe8\xdb\xcb\x61\x11\x5c\xf7\x69\xe8\x35\xa3\xb4\xb0\x87\xcc\x87\x40\x75\xab\xb9\x55\x8a\xee\x92\x4f\xd8\xd5\x30\x72\xf3\xf3\xdd\x20\x4d\xb2\x6c\x17\x2d\x19\xec\x43\x36\x25\xdc\x3b\xab\xa2\x1f\xb8\x73\xb0\x7e\x37\x94\x1e\xd1\x31\xe5\x3f\x66\x93\xa4\x60\x61\x12\x21\x5d\xea\xd8\x76\xea\x33\xf4\x60\x38\x1a\x2e\x29\x0a\x31\xbf\xda\x1f\x61\x26\x73\x26\x8d\xed\xf4\xe6\xd2\xcc\xae\x5a\xa0\x26\xc9\x21\x03\xb6\x31\xbc\xe3\x0f\x70\x0c\xf3\x4d\x93\xb1\xfa\xf9\xfd\x95\xf1\x5d\x8d\x3b\xca\x9d\x44\x7c\x2d\x7d\x0b\x4a\xb7\x2d\x0d\xf3\x30\xa8\xbc\x65\x3a\xf4\xe1\x90\xdc\x82\x43\x86\x29\xde\x54\xcd\x03\xc7\x15\xe5\xe1\x38\x8c\xc3\x2c\x4f\x43\x83\x9a\x37\x16\xdb\x7b\xf4\xc6\x88\x17\x2f\xd3\x22\x14\xc2\x95\x96\x85\x4b\xca\x33\x31\xe8\x6a\x15\xe6\x5b\x40\x3b\x47\x5a\x50\x1e\x8b\xdd\xcc\x9f\x84\x26\xe6\xb3\x00\xf8\x39\x8e\xab\x25\xb1\xe2\x7e\xf5\xa6\x7a\xd1\xdc\x44\x66\x85\xf4\xdd\xf7\x56\x5e\x11\x0e\xa1\x2b\x1a\x56\x7e\xa5\x9a\xe2\x2d\x64\x61\x39\xcc\xc1\xc9\x06\x4f\xe4\x30\x8e\x0b\x69\xc0\x70\xc3\x89\x6e\x33\xfe\x42\xc5\x00\x9d\xe4\xc1\x1e\x97\xaa\xbb\x4a\xce\x1f\x66\xf7\xd7\xf4\x9e\x7e\x43\xc9\x0c\xbe\x0d\x8b\x27\x52\x99\xae\x16\xb0\x09\xcc\x15\x7f\x5c\x99\xcf\xa0\xc8\x33\xec\x38\xa0\x11\xb9\x37\x83\x9b\x95\x28\x94\xc4\x62\x86\xea\x1a\xbe\x6d\x87\x76\xd2\x01\x7c\x41\x8c\x77\x99\x2c\x7c\x4d\x34\x44\x72\xec\xce\x36\xec\xe9\x29\x63\xf7\x63\xac\x45\x94\xd3\xee\xe2\x74\x14\x34\xcf\xb3\x54\x4e\xdb\x22\xb5\xa2\xad\x8b\x6d\x98\x95\x71\x18\x27\x69\x47\xb7\x05\x3b\x64\xee\x66\xa3\x8c\x3f\x3b\xdb\xf5\x0b\x10\x78\x76\x9c\x58\xea\x65\x25\x32\x7d\x59\x75\x0e\x2e\x27\xa9\xa4\x01\x60\xf6\x8f\x68\xde\xd2\x23\x0a\x0c\xe4\x67\x59\x31\x36\x53\x0e\xe5\xfa\xbf\x61\x19\x62\x4c\x2e\x22\x70\x16\xf3\xa4\xec\x5d\x1a\xae\x90\x22\xf8\x3e\x29\xb2\x7d\xaa\x31\xe4\x9f\x36\x9e\x9f\xc2\xd3\x71\x72\xc8\xd6\x98\x91\x34\x7a\x53\xf5\xa4\xbd\xd9\x46\xeb\x9a\xaf\x1d\x32\x4a\x58\xed\x08\x8c\x27\xdf\xb4\x14\xda\x17\xf7\x77\xb3\x51\x38\xb0\x5e\xb5\x8c\x27\x3d\x9c\x0c\xb4\x2d\x5b\xf9\xd4\x7b\x4d\x7f\x88\xa4\x1a\x8b\x0c\xf1\x8d\x73\x77\xfd\x74\xe8\x87\x20\x09\x41\x46\x75\x8a\xe2\x16\x64\x0b\x6f\x29\xf8\xd4\x63\x0d\x67\x06\x0c\x88\x71\x56\x44\x48\xe8\x58\x4e\x01\xdb\x6d\x74\xd3\x53\x2c\xa0\x4d\xe2\xd7\xb9\x03\xdd\x61\xea\xc7\xfd\x30\xc9\x8c\x6a\xff\x06\x09\x1b\x5f\xb7\xd5\x20\xfb\x26\x87\x33\xc2\xa6\xb6\x86\x7c\x11\x31\x4d\x17\x61\x18\xce\x1e\x44\x6b\x0f\xd0\xe3\x08\x98\x9f\x46\x87\x11\x30\x9e\x2a\xd9\x7f\xa0\x9a\x13\x3e\x22\x93\x80\xad\xbb\x45\x4e\x15\xd6\xcf\x51\xda\xf8\x70\x94\x3e\xc0\x0f\x4b\x8b\x7d\x35\x7c\xa2\xee\x2d\xcd\x3d\x87\xcc\x9a\x4c\x07\xeb\x76\x95\x0e\xcc\x7b\x43\x9d\x3c\x03\xbf\x88\x35\xd5\xf7\x4d\xd8\x0e\xbe\x69\x9c\x0a\xbf\xf8\x42\x37\xf2\x57\xfc\x34\x51\xf4\x21\x4c\xd1\xcc\x37\x35\x78\xc3\x2b\xa2\xea\xde\xc6\x2e\xeb\x9c\x8b\x37\x4a\x97\x08\x7a\xc3\x2e\x95\x49\x9a\x2c\xdb\x45\x8e\xaa\x05\xce\x52\xbe\x5e\x77\xad\x35\x51\x48\x14\x06\x79\x28\xed\x0c\x16\x99\xbe\x4f\xd8\xa6\x2f\x68\x14\x41\x4a\x4b\xd0\xa2\x9f\xde\xa2\x81\x96\xc6\x14\x67\x93\xff\x5f\xe5\xaf\x85\xd9\xd8\x0f\xa3\x90\xdb\xfd\xd8\xeb\xf3\x14\xc9\xeb\xa6\xa2\xcd\xb2\x2d\x7b\x66\x97\x42\xbb\x31\xd5\xa0\x65\xdc\xb2\x6a\x94\x9a\x16\xf7\x18\x50\xbd\xfc\x09\xbb\xc1\xc0\xff\x43\x88\x0b\x3c\x33\xc7\x1d\x88\xf1\xc0\xf2\xa0\xe1\x7e\x22\xeb\xd6\x06\x0d\x8d\x92\xcc\x46\x9c\xc0\xb7\xfd\x3e\x3d\x8c\xa5\xab\xb2\xbd\x50\x37\x54\x67\xdf\xd8\x4f\x83\xd1\x23\xd5\x03\x20\xe2\xdf\xf2\x94\x8a\xce\xf7\x90\x60\x86\x55\xa4\xbc\xc2\xd6\x07\x94\xf5\xb3\x14\x74\xd5\x2a\x80\x0f\x73\x4d\x29\x79\xdd\xf7\xd4\xa9\xb3\x03\x3a\xe4\x96\x73\xbe\x3a\x1f\x44\x82\xbe\x9a\x48\xd5\x06\xf2\xa2\x7c\x17\x6c\xac\xfc\xca\xf6\x54\xde\xd2\x0c\x84\x5a\x73\x3f\x8c\xed\x52\x82\x5f\x0e\x92\x00\xbe\xee\x29\xf2\x24\x3f\x4f\xc3\xea\x55\x69\x85\x5b\xa2\x37\xd7\x4e\x71\x56\x8d\x49\x30\x0a\xa3\x3e\xf2\xbe\xb6\x63\x78\x9f\x6d\xe3\x6e\x83\xa6\x67\x7e\x0c\x21\x3f\x2b\x7e\xad\x79\x3b\x9a\x89\x6e\x26\xd1\xa6\x32\x93\x64\x5a\x54\x1f\x34\x4a\xf8\xd2\x60\xef\x80\xd3\xe7\x15\xd3\x6d\x38\x9e\x98\xbc\xe0\x6c\x07\x46\xea\x72\xa9\xc8\x04\x2e\x37\x76\xf9\xd2\x4c\x77\xb9\x72\xc2\xf3\xa9\x9a\xac\x04\x7d\x01\x93\x5d\xe0\x0b\x10\x3a\xed\x68\x70\x2c\x2c\xa0\x07\x20\x8a\xfc\x1c\x27\xa2\x28\x5b\x54\xaf\xc1\x25\x09\x85\x21\xbc\xde\x20\xb0\x5c\x9a\x21\x1e\xf5\x94\x79\x69\x69\xde\xac\xe4\xaf\xad\x0d\xba\x66\x46\x3f\xc8\x13\x10\x01\x48\xf1\x47\x15\x82\x1a\x3e\xc3\x4b\x2f\x75\xf3\x24\xe7\x06\x07\x81\x59\xd6\xfa\x2a\x3b\xb3\xb3\x36\x91\xe0\x32\x01\x3e\xf1\x34\xd3\x41\x6e\x8b\xc1\x8e\xa1\xbf\xd6\xaf\x3e\x9e\xe0\xb0\x45\xfa\xf4\x16\x39\xb4\x7c\xdd\x70\x48\xa9\x41\x2e\x09\x5c\x23\xaa\x6d\x9d\xad\x36\x8d\xb4\xce\xd6\xb2\xb3\xab\xcf\xaa\x38\x7d\x5b\x7b\xf4\x93\x2a\x2a\x1e\x27\x41\xea\x07\x21\xd7\xf3\x75\xb7\x94\xb4\x51\xb9\xc5\x3c\x8c\x8c\x1f\xeb\xc2\xfc\x29\x5d\x98\x3f\x55\xfe\xcd\x2f\x6a\xbb\x4e\xc3\x38\x30\x79\x12\xff\xd3\xff\x34\x36\xab\x93\x24\x65\xde\x61\x11\x94\x75\x2d\xa6\x97\x1a\xce\xcc\xdc\x01\x52\x74\xcb\x24\x36\x6c\xc3\x61\x7e\x55\x75\x84\x4d\xd2\x64\x92\x86\xcc\x33\xd7\xb1\x8a\x86\x17\xb1\x36\x91\xba\xbd\x4d\x2b\x04\x71\xd4\xc3\x94\x2f\x14\xef\xb7\x85\x70\x5c\x98\xb0\xe4\x64\xad\x3e\xca\xd7\xca\x3f\x9e\xf8\x59\xb6\xab\xda\x5d\xb0\xbd\x77\x28\x17\x63\xe9\x1e\x6c\x1f\xf6\x5d\xcf\xb5\xf8\x1f\xd7\x58\xa1\xbb\x8a\x63\xd8\x0f\xfc\xbe\x19\x87\x41\xa7\x96\x0e\xd4\x79\x42\x57\x5b\x2a\xe2\x00\xc6\x8b\x2a\x97\x28\x2d\x5f\xa1\x67\xe4\x6b\x5b\x8d\x26\xa6\x1a\xec\x35\xec\xaf\x9b\x4a\x9f\xf5\x2b\x34\x0a\x18\xcf\xc7\xd6\xb7\x3b\x38\x94\x23\x1a\x86\x19\x09\x5a\x03\x91\x67\x09\x58\xec\x40\xb2\xa1\x92\xfe\xe6\xed\x3b\x6a\x76\x16\x86\x16\x06\x83\x13\xcf\x34\x1a\x70\xec\x8e\x90\x97\x82\x10\xbe\x99\x7e\x20\x8d\x89\x74\x25\x29\xb0\x4c\x71\x0e\x21\x70\xe1\xeb\xd6\x2c\x6b\x90\xfa\xf1\xa1\xc0\x67\x71\x49\xdd\x8c\xe6\x8e\x7c\xf1\x72\xe2\x20\x94\xfe\x79\xe1\x5c\x73\xc7\xe4\x05\x37\x8c\x41\x92\x4c\x78\x17\x5a\x49\x13\xcd\xc4\xbc\x3d\xd1\x52\x05\xa0\xcf\xaa\x9d\xce\xb1\x27\xdf\x28\xda\xa4\xb1\xff\x0a\xfa\x66\xab\x53\xcd\x02\xf1\x14\x58\x4f\x4c\x59\x9a\x44\x11\x3f\x01\x5e\xfe\xac\x16\xeb\x70\x24\xdf\x59\x31\x31\xe9\xb2\x00\xdd\x25\xbd\x55\x0d\xb9\xc0\x76\x6c\xa3\x7b\x3a\x34\x71\x1e\xc6\xa2\xcc\x68\xb3\x4d\xae\x8d\xea\x78\xdb\xce\xcc\x8a\x74\x92\x86\x99\xa1\x8d\x06\x9f\x7a\x37\xca\x04\x82\xea\x73\xbe\xea\x83\xeb\x0a\x9f\x72\xc1\xfa\x70\x63\x5f\xa1\x29\x18\xe0\x84\xdf\x15\xb4\x93\xcb\xc7\x8d\x97\x93\x69\xd5\xba\x73\x44\x33\x83\xdf\x2d\x5d\x2f\xef\x83\xbd\x8e\x62\x66\xb4\x74\x68\xa9\xdf\x8f\x8c\xe6\xb7\x54\x86\xe7\x98\xf2\xcd\xc2\x38\xcc\x43\x6a\x12\x60\xc0\xa5\xc8\x19\x76\x2c\xbd\x1c\x58\xc5\x85\xe2\x89\x1e\x57\x78\x1a\x9b\xd1\xd8\x73\xd5\x09\x9d\x5b\x87\x4a\xf3\xb2\xdb\xdc\xa8\x6d\xe5\xfb\x7f\xca\x6d\x38\xfb\xd9\xb9\xee\x81\xe7\x1f\x72\xdd\x05\x47\x15\x65\xe2\x8e\x9e\xd2\x07\xbb\x46\xbe\x2c\x46\x6d\xab\x54\xb1\xdb\xc3\x3d\x95\x87\x7c\xad\x74\x00\x97\x3b\x74\x8a\xd9\x4e\x49\x07\x05\xf9\x3f\x3d\x97\xa4\x39\xa3\x4b\xfb\x17\xb4\xf2\x94\xe9\xef\x21\x4f\x14\x95\xb2\x37\x91\x3a\x80\xcd\x03\x21\x81\xd5\x40\xdd\x27\xa0\xfc\xbb\xa5\x12\x3d\x79\xd3\xab\xf5\x6e\x39\xf0\xd3\x96\xf7\x94\x32\xac\x69\x1e\x06\x45\xe4\xa7\xd1\xda\xde\xce\x3f\xfa\xc7\x7c\x88\x01\xd3\x89\xa5\xf9\x1f\x35\xe3\xc1\x6d\xb4\x11\x08\x77\x5d\xc7\x32\x94\xdd\x57\xcd\x0c\x1f\x22\x7b\x21\x74\x4d\x34\x88\xf0\x30\xaf\x78\x4f\x68\xb8\xef\x20\x29\xe2\x3e\xeb\x30\x31\xbb\x91\xc6\x91\x6f\x68\x02\x15\x1e\x41\xbc\xe8\xcd\x36\xe1\x97\x51\x38\xce\x4c\x34\x80\x5d\x67\xe0\x84\xa7\x38\xd0\xdf\xb4\x14\x64\xd5\xae\x48\xa2\x50\xb8\x43\xe0\xca\x9e\xd0\xed\x69\x27\xbc\x87\x15\x79\x4c\xff\x0b\x9b\x63\x2d\xe7\x70\x7f\xc5\xb0\x84\x04\x93\x61\xd0\x1c\x0b\x31\x86\x35\x6f\xd5\x59\x3d\xa4\xda\x0c\x9e\x69\x1a\x39\x1c\xa8\x31\xff\x8d\x75\x9b\xd3\xfd\xd1\x5f\x27\xc7\x12\x1e\xf7\xe5\x52\x71\x46\x9d\x55\x5c\xa8\xfd\x30\x85\x6c\x29\x65\x2f\xe4\xf9\x68\xa1\xa8\xee\x5d\xdb\x2c\x95\xae\x80\x5e\x00\xf9\xb6\x4b\x9e\x93\xe0\xbf\xa4\x21\x95\x3e\xf5\x5f\xb9\x70\x75\x93\xa2\x43\xbe\x76\xd1\xa1\x9f\x65\xfe\x10\xe2\x22\x72\x60\xeb\x83\xbc\xa5\x12\x92\x15\xc3\xa1\xc9\xd0\x1a\xa5\x52\x2d\x8b\x5b\xd7\xd1\x98\x09\xa3\x7d\xaf\x7c\xdc\x56\x8b\xe3\x2c\xaf\x42\x45\xe9\x12\x11\xf9\x55\x5a\x09\x7c\xa3\x90\x26\xf1\xcb\xe1\x94\x6b\xe7\xe8\x50\x80\x81\x32\xfe\x35\xf2\xff\x10\x54\x3e\xdc\xfb\x8a\x26\x5a\x19\x17\x31\x13\xe7\x2a\x4e\x98\x23\x08\xee\x24\x33\xf8\x33\x08\x6f\xfa\xd6\x3d\x16\x1e\x58\x9a\x2b\x61\x88\x7d\xaa\xc9\xd4\xb8\xb0\xb0\xff\x11\x97\xc4\x63\xd4\x86\x48\xcd\xb8\xfe\xa5\x3d\x30\x2b\x8c\x48\xf2\x94\x20\xc9\x9b\x4a\xa6\x62\xf7\xba\xe2\x5c\x39\xc7\xd5\x61\x04\x55\x6f\x20\x44\x60\xe9\xc4\x92\x20\xb2\x38\x15\x8f\x62\xb8\xf9\x06\xa3\x89\x78\xf7\x36\xde\x1b\x37\x4d\xbe\x9e\xa7\x9f\xee\x2e\x93\xf0\x89\x85\x2d\x6f\xa8\x4a\xd8\x86\xc6\xf2\x57\xdb\x6b\xc4\xbd\xed\xb0\xa6\x97\x6b\x0a\xec\x4a\x51\xee\x7b\x6d\x82\xeb\xcb\x49\x8a\x0c\x81\x74\x90\x29\x6d\x30\x06\xf4\x21\xb1\xad\x3b\x29\x63\x63\xfa\xa6\xbf\xab\x66\x82\xad\xd3\xf8\x21\xec\xa1\x6d\xdc\x76\x0d\xaf\xd8\x31\x62\xbb\x5a\x16\xee\x38\x89\xc3\x3c\x49\x69\xdf\x72\x51\x5e\x13\x8e\xb0\x10\x05\x4e\x9e\xf7\x14\x3f\x1b\xab\x13\x4a\xd6\xfd\x31\xcd\x10\x9c\x11\x21\x47\x35\xc5\xf0\xef\x19\x6f\xc0\x37\x0a\xe7\xdf\x37\x59\x90\x86\xcb\x46\x77\x5f\x1d\xd7\xdd\x57\xcd\xe6\x99\x2a\x6c\xcd\xf2\x62\xb9\x1a\x44\x04\x14\x16\xbe\xe9\x18\x34\x95\x8e\x7b\x9c\x70\x6f\x17\xa3\x48\x68\xa6\x04\x51\xb2\x7d\x72\x9e\xe9\xa6\xe1\x8a\x49\xa7\x14\x12\x14\x67\x93\x56\x90\x91\x7c\xb3\xab\xb3\x66\x49\x18\x91\xf5\x41\x3c\x85\x9e\x65\xbe\x56\xf9\xb0\xb4\x88\x0c\xa7\xc2\x91\xcf\x3f\x03\x08\x77\x4d\x22\x06\xae\xd8\x49\xae\x03\xb3\x5d\x54\x11\xe7\x25\xc5\x71\x78\xd1\x73\x30\x88\xbb\x58\x45\x58\x1b\x97\x14\x4f\xe6\x47\xc0\xb2\x8b\xf4\x8c\x12\x38\x79\xa0\xc1\xd5\x38\x77\xa0\x72\x67\xb3\x9a\xb8\x34\x1e\x4b\x64\x0a\xb6\x4f\x07\x5a\x23\x2b\x43\xc3\xaa\x0e\xf6\x89\x6d\x00\xa5\xa5\xfc\x49\x01\xe2\x61\xbc\x1b\xec\xc2\xeb\x14\xef\x28\x32\x82\x39\x6b\x72\xc9\x45\x60\xad\x54\xac\x49\x85\xad\x7f\x91\x3d\xfe\xef\xe1\xf9\x90\xf8\xfb\xb7\xf4\xb3\x70\x38\x78\x27\xe1\x10\xb8\xe3\x75\x9e\x7e\xda\xea\xae\x3a\x58\xdc\x0f\xb1\x71\xe0\x0d\x7c\x02\x96\x23\x52\xe4\x5b\xfc\xda\x83\xd5\x10\x5a\x0f\xc3\x6e\xbb\x77\x14\x7d\xf4\x6f\xd2\xf8\x63\x68\x36\x74\xd7\xed\x96\x4e\xea\x70\x78\x23\x87\xaf\xaa\xfe\xfd\x3a\xde\x0a\x3b\xff\x3a\x32\xaf\xfc\x8b\x6a\x05\x87\xc1\xb6\x4e\xc2\x52\x45\xb0\x9e\xd3\xec\x12\xcd\x83\xe7\xac\xcc\x81\xcb\xc8\x5f\x69\xf8\xe0\x62\xe7\x03\x56\x42\x03\x18\x98\xa5\x97\xf9\xa6\x91\xbc\xa1\x26\xde\x6f\x15\x06\x8c\x41\x02\x6f\xd6\xb8\xe7\xc7\x6b\x35\x8b\x14\x9c\xfa\xd5\x0e\x42\xac\xb5\x63\xbd\xda\x1a\x7c\xdd\x56\xfb\x1c\x24\x91\xa8\x07\xc0\x3b\xbf\xaa\xfa\x03\xaf\xb6\x0a\x79\x64\xe1\x2b\x83\x24\xea\xc3\xbf\x47\x29\xe9\x5f\x94\x8e\xba\x18\x41\x34\x36\xcf\x5b\x58\x60\xc8\xf0\xec\x58\x77\xc7\xeb\xcf\xcc\x3a\x6f\x5f\xf3\xb6\x87\x27\xf4\x33\x95\x17\x62\x77\x57\xf4\x1b\x9b\xb9\xfe\x45\x81\x1e\xc8\x7c\xaa\x76\xac\x39\xdb\x75\xa5\x0b\x54\xff\xf4\x6f\x75\x14\x8f\xc7\xeb\xa5\xd2\x2a\x79\xfd\x0b\xa9\xea\x56\x0d\x71\xa5\x23\x39\x2e\x35\x67\xe7\xcd\x9e\x51\xc1\xc8\x71\x1d\x51\x4e\xf5\x1e\xdb\xee\x9c\x90\xdb\x60\xd9\x2b\x1d\x93\x65\x23\x46\xdf\xb7\x50\x59\x4e\x3f\x9a\x52\xfa\x09\xf8\x51\x1c\x90\x87\x15\x99\xc8\xa7\xca\x24\x7e\xab\x08\x0d\x2b\x56\x33\x08\xb4\x54\xa2\xb7\xdf\x6b\x23\xef\x0d\x12\x52\xb2\x8b\x73\xaa\x6c\xa9\x3a\xbf\x02\x0a\xbc\xa6\x8a\xd3\xfe\x72\xe5\x89\x4f\x39\xfc\xfc\xfb\xd8\xa9\x96\x38\x78\x7e\xde\x56\x69\xb7\x91\x4f\x1f\x9c\x79\xb1\x7b\x70\xe6\x81\xce\xdc\x01\x36\x36\xc0\x5b\xa3\xee\x04\x32\x20\xa6\xb0\xc6\x31\xcb\x56\xdd\xab\x82\x0d\xc1\xab\x38\x2e\x26\x10\xe7\x6c\x5d\xc4\x61\x68\x69\xda\xaa\x63\x52\x68\xda\x5c\x79\xc2\xf4\xc3\x20\xdf\x55\x1f\xcd\x83\x33\xa2\x84\x0c\x2b\x8e\xe0\xe1\x4b\xaa\x21\xec\x9c\x06\x3a\xbd\xd5\x48\xf9\xce\x1d\xe8\x9a\x57\x82\x82\x85\xd7\xb9\xa5\x83\x9e\x10\x66\xeb\xc7\xa5\x33\x9f\x97\x5b\x58\x3b\x9e\xeb\xae\x86\x29\xe2\x60\x86\x9c\xaa\xe6\xa0\xf7\x54\x1e\x2a\xa3\x56\xb3\x2a\xec\xda\x27\xd9\xe4\xe3\x9e\x83\xfa\x31\xa8\x43\xb3\x65\x62\xf5\x5f\xa3\x5c\x15\x8c\xeb\x55\x1a\x6b\xcb\xdb\xa1\xe8\x63\x1d\x4c\x6f\xcb\x7b\x50\x60\xe5\xc9\x6a\xc7\xc1\xa8\x8e\x96\x2e\x42\x39\xaa\x0e\xea\xdc\x3f\x64\x40\xb8\xcc\x34\x2c\xba\xc9\xec\x22\x3d\x88\x9c\xbf\xae\x6a\xc3\xdc\x9e\x30\xb8\x58\x2f\x40\x4b\x5e\x52\xe1\xe9\x8e\x75\x85\xe3\x64\x22\x5c\x78\xc1\x9d\xf5\xea\x9d\x00\x1d\xdd\x4d\x73\x85\xe5\xb0\xb7\xb7\x3d\x31\x0d\x0b\x21\xfc\xb5\x9d\x06\x4d\xad\x63\xb0\x6d\xe1\x8e\xcf\xfc\xb8\xbf\x1a\x06\x23\x58\x16\x0b\xed\x74\x79\x28\x75\xa2\xf4\xfd\x68\x0d\x56\x19\x30\x2d\xd0\xa2\xf0\xb5\xf7\x95\x6d\x7e\xfd\xd2\xe2\xd7\xaa\x47\xdb\xa5\x88\xb2\x37\x3c\x07\x29\xd6\x8c\x71\xef\xe0\x31\x61\xad\xcf\xa9\xae\x8b\x8f\x54\x2e\x66\x12\x82\x46\x13\xe9\xcb\xeb\x0a\x4e\x78\xdd\x46\xb1\x23\x3f\xf5\xc9\x8b\x74\x30\x6b\x36\x93\x72\x3e\x2a\xac\x4a\x14\x24\xa3\x24\x0a\x03\xb2\x23\x5b\x17\x4b\x2a\xe6\x37\x96\xef\xec\x2c\x49\x02\xb2\x4c\x14\x80\xf9\xac\xdb\xc0\x37\x6d\xb0\x3e\xea\x44\xed\xb8\x03\x17\xfe\xa3\xf4\x7f\xd9\xca\x73\xd8\xef\x0b\xaf\x22\x46\xe5\x09\x4a\x8b\x32\xfd\xa5\x2a\x2b\x9c\xc1\x8a\xc3\x31\xf5\xc8\xfa\x5f\xff\x02\x1b\xae\x14\x6e\xd5\x10\xdc\xd0\xfa\x4f\x37\xb4\xec\xf8\x28\x99\x4c\xc2\x78\xb8\x5b\xa3\x91\xb0\x86\x75\x21\x9b\xed\x82\xe7\xea\x3a\x87\x09\x80\xcb\x7f\x83\x6f\x07\x18\xf6\xbc\xad\x0e\xf6\x8d\x99\x98\xf4\x41\x87\xc1\xbb\xac\x1a\xbf\x11\x84\x58\x6a\x17\x9d\xdf\x55\x4a\x82\xef\xc1\xe2\xb2\xac\x32\x92\x26\xc8\xdd\x32\x69\x84\x48\x7a\x39\x28\xc4\x2d\x6c\x3a\xf2\xd2\xfe\xe1\xcf\xf7\xb6\x2f\xf8\xf9\xf9\xfd\xd0\x4a\x95\x08\x95\x41\x70\x9e\x73\xd0\x6f\x29\xa0\x6d\x4a\x65\xf3\x7c\x97\x0b\x8c\x7e\xea\xa9\x47\x82\x20\x38\x36\xd7\x8e\x9e\x4b\x73\x7e\x8c\xe5\x0c\x3b\x72\xbb\x95\xe4\x2d\x36\xaf\xe4\x04\xb1\x84\x13\xc7\xed\x28\xd2\x24\x50\x53\xd7\xd1\xcd\x4a\x0e\xdb\x7d\x58\xd1\xf0\x9c\x6e\x70\x15\xce\xce\x0a\x95\x5a\x9a\xc1\x15\x90\x39\xc0\x4c\xf3\x5d\x0b\xc7\x61\x77\xb8\x26\x2c\xb2\x8a\x49\x14\xbf\x2c\x87\xbf\x0b\xda\x46\x6b\xcb\x69\xd8\xe7\x3a\x5e\x6b\x72\x5a\x7c\x83\xb1\x19\xfa\xcb\x6b\xb9\xa9\xa1\xf9\x90\xf0\x96\x3e\xa4\xed\xc7\xce\xec\x6c\x37\x8c\x03\x93\xa1\xa9\xdf\x26\x9e\xab\xd0\x07\x66\xfc\xb3\xb2\xf3\xcd\xaf\xdb\x76\xcb\xea\xab\x80\x48\xda\xd9\x28\xfe\x1d\x78\xbe\x9b\xac\x98\x94\xc4\x08\x3b\xae\xf8\x77\x0d\xfb\x98\x6f\x6a\x3d\x31\xb1\x3f\x9e\x76\x70\x8c\x23\x1a\xbc\xc7\xc2\x06\x38\xbe\x38\x57\xc0\x37\x9e\x03\xd1\x2c\x9b\x2c\xec\x9b\x8c\x18\xc7\xac\x1c\x65\xf5\x25\x42\x5f\xaf\xc6\xe1\x3d\x0a\x66\x84\xa2\x57\xb1\x9a\x34\xeb\xb5\x0b\x0b\xdd\x15\x93\x82\x3b\x0d\x07\xc2\x09\xe5\x2b\x9c\x50\x7d\xad\x59\xb2\x6c\x52\x0b\x74\x45\xfd\xf7\x06\x82\x05\x24\x4d\x8e\xeb\x7e\xdf\x33\x8d\xa0\x76\x69\xa6\xfb\xf4\x3f\xf8\x3b\x19\x72\x87\x36\x58\x9e\x9d\xb3\xc1\xf2\x97\x2c\xd4\x3d\x0b\x8a\x5a\x7a\x6c\x03\x36\x57\x14\xe2\x1f\xaf\x9f\x0c\x7f\xb3\x3b\x3f\x4f\x7f\xac\x19\x9d\xf9\x5a\xd9\xfb\xbf\xfd\x0f\xfe\xce\xb4\x1a\x75\xd0\x6c\xf2\xb5\xea\x12\xbf\x46\xcf\x24\x18\xf3\xc7\x14\xb5\x69\x1e\xc6\x7e\x84\xf3\x0a\xe9\xaf\x1f\x53\x7a\x8f\xaf\xdb\x90\x38\x7d\xb3\x62\xa2\x64\x22\x55\x19\x78\x4d\x1f\x96\x0e\xb8\xfb\xa1\xc2\x03\x23\x4f\x1c\x4e\x7c\x22\x8d\x3f\xa8\x8a\x6c\xd5\xa8\xda\x82\x46\x35\x99\x16\xb2\xee\xc2\xd4\xd3\xb5\xe2\xe9\x72\x18\xa3\xca\x65\xa9\xe0\xed\x41\xc7\xc9\x7e\x86\x62\xab\x17\x1c\x99\x88\x6c\x77\xb5\x74\xb0\x33\x3f\xf1\x5c\x2a\x13\x7e\x37\x5c\xbd\xd7\x68\x88\x98\xee\x51\x1d\x44\x77\xf1\xd5\x62\xd9\xac\xa6\x70\x64\x5e\x61\x2f\xc2\x4a\xf7\x2d\x38\x1d\x3f\x95\x5d\xfc\x7a\x12\xf0\x1f\xb2\x78\x9f\xa6\xd7\x39\x6b\x17\x48\x36\x49\x8a\x4c\xd4\xe1\xd0\xce\x70\x53\x0b\x95\x72\x60\x8e\x08\xe8\x88\x32\x2f\x59\x52\xa4\x81\xc9\xa6\xdc\x61\x73\x4a\x27\x22\xde\xa3\xf9\x64\x7d\xd3\x16\x71\xda\xee\xcb\x45\x7f\x88\xdf\x95\xd6\xa0\x63\xd8\x00\x42\xb1\x8b\x87\x17\xc0\x89\xd2\x2c\x20\x74\x95\x01\x2c\x02\xa1\xc8\x07\x9e\x93\xfe\xfc\xa0\xc5\xa6\x13\x8c\x2b\x27\x67\x12\x47\xf9\x86\x22\x06\xd8\x50\x9c\x53\x43\x13\x17\x61\xcc\x8d\xa6\xd8\x4b\xb7\x6a\x49\x28\x07\x48\x3a\xd1\x30\xd0\x36\xfc\x4e\x18\x39\x87\x3f\xbc\xa7\xb3\x19\xf7\x94\x47\x1d\xa4\x49\xbc\x16\x66\x63\xfc\x9a\x4d\x96\xda\x4e\xe8\xb7\x55\x5e\xeb\x5f\x96\x8e\x87\x39\x92\xe9\xc2\x3a\xbe\x5d\x9f\xae\x8e\xa5\x47\x3b\x59\x23\xc8\x8a\xe3\xb5\x15\x3f\x42\xc9\x57\x05\xa9\x72\xd2\xdf\x50\xf2\x6e\x53\xbd\x86\xb9\x9f\xeb\x1e\x4a\x93\x38\x49\x29\xca\x40\x2d\xed\x56\xa9\xa4\x80\xe0\x05\xe3\x9c\xbf\xd2\x26\x48\x36\x0e\x63\x93\x72\x74\x27\xe2\x57\xce\x0b\xda\xb0\x67\x51\x66\x82\x24\xee\xfb\xe9\x1a\x3d\x28\x9e\x8d\x9b\x6a\x25\xa2\x72\xf5\xec\xdd\x3d\x05\xe9\x2f\xc6\x93\x5d\x0e\x8b\x85\x4c\x09\x5f\x97\x8a\x51\xe2\x25\xac\x52\x51\x85\xa3\x21\x90\x84\xd4\xa3\xd6\x3f\xca\x26\x7e\x28\xec\xdd\x42\x0e\x4b\x9f\xd3\xeb\x87\x5b\x54\x94\x53\x32\x31\x69\x40\x9a\xd9\x73\x07\x2a\xa7\x75\x76\xce\x32\xe1\xa9\xe8\xe8\x64\xed\x30\x1b\x18\x33\xdd\x99\x9d\xb5\x46\xc9\x81\x77\x6f\xab\x13\xf8\x26\x7d\x19\x0c\xdd\x99\xf2\x29\x0d\xf5\xcf\xd3\x70\xb9\xa8\xbc\x82\xdd\xae\x00\x7e\x96\x5a\xad\x84\xd1\xc3\x15\xc9\xd9\x97\x41\xb4\xcb\x74\x11\x7c\xa3\x90\xba\xc7\x5a\x26\x70\x7f\x37\x32\xe0\xbf\xaa\x06\x8c\x49\x11\x3c\x85\xea\xb9\xa6\x6c\x43\x50\x50\x87\xeb\xc3\x8e\x57\x9b\xb5\x1f\x6a\x12\x06\x48\x3c\xec\xe8\x75\x2c\xf3\xf8\x5b\xa5\x42\xee\x5c\xc3\xb3\x5a\xf6\xf7\x6a\x00\x2d\xa8\xff\xe0\x0c\xdb\x19\x34\xae\xea\x34\x08\x06\x6f\xab\x74\x31\xc8\x65\xf2\x68\x51\x3f\xd8\xd1\x53\xbd\x34\x3e\x43\x20\x60\x14\x01\x8e\x62\x24\x5b\x59\x33\xf9\x6d\xe2\xda\x83\x24\x1d\x62\x9f\xe3\x80\x63\xcf\x92\x6f\x3c\x57\x5c\x20\xca\x05\x41\x05\xb3\xd6\x82\xe7\x3c\xd2\x3f\xd3\xc2\x23\x81\x1f\x4d\x38\xe3\x27\x24\x48\x1d\xcb\xa4\xfa\x6e\xdb\xc6\xca\x46\xe8\x1c\xd3\x74\x35\x30\xa4\xc2\x57\xe3\xcc\xdb\x28\xcc\x73\xdb\xc8\x66\x79\x80\x9d\xd0\xdf\x35\xd5\x71\xbf\x3a\x4a\x22\x94\xf2\x01\x0a\x61\xb2\x32\xa6\x0f\xf5\x1c\x5a\x64\x13\xc9\x0f\xe1\x15\x75\x87\x70\x18\x67\x79\x5a\x04\xec\xb0\x56\x3f\x29\x76\xa7\x9a\x0e\xc9\x8d\x09\xb5\x6f\x96\xa7\x7e\x6e\x86\xa1\xa9\xa9\x08\x6e\x7a\x0e\xc9\xa2\x55\xc2\xc3\xbe\xf1\x23\x36\x83\x16\xcb\x30\x3f\xcf\x69\xaf\x3b\x34\x68\xa8\x2b\x9d\x2c\x9f\xb2\xeb\x72\xd5\xac\x99\x74\xe4\x9b\x22\x63\x19\x18\xbc\xf6\x0f\x74\x11\xec\x07\x36\xff\xd0\x0f\xcd\x2e\xe7\x8f\x9e\x28\x15\xcb\x21\x58\x17\x45\xc0\x82\x56\x33\x1b\x45\x5a\x8e\x08\x3b\x4e\xda\x3a\xea\x8a\x49\x2d\x2d\x08\x97\x81\x30\xec\x52\x13\xda\x8e\x34\x5a\x9a\xe9\x8e\xf8\x11\x45\x26\x8e\x5c\x3d\xd1\x8f\x6b\xa1\x00\x59\x0d\x63\xa2\xbc\xac\xe6\xc2\x86\x21\x2e\x24\xb1\xb6\xad\xf2\xb5\x0b\xcb\xae\xce\xae\x27\x8d\x9d\xb8\xa1\x5f\x74\xae\x15\x71\x98\x4f\xa9\x24\x38\x18\x94\xb1\xc5\xce\xaa\x7a\xfa\xbd\xc6\x37\xec\x5b\xe8\x0e\xc3\xf1\x38\x0c\x0e\xb1\x77\x6c\xf9\x0f\xad\x1c\xd6\x66\xa9\x74\x16\x8a\x71\x11\xf9\x16\x49\x0e\x9c\xea\x3b\x30\x36\x7c\xa3\xba\xef\xc3\x34\x0d\x73\xae\x88\x2e\x49\x4f\x03\x4e\x09\xbe\x6e\xe4\x56\x96\x66\xba\x99\x1f\x0f\xab\xa3\xbe\xe3\xd8\x6e\xcf\xd5\xb8\x77\x65\x5d\xfa\xf9\x38\xc9\x26\x23\x93\x9a\x69\x87\x46\x04\x5a\x0a\x55\x02\xb4\x32\x48\xef\x3b\x2d\x12\xd8\x80\x5b\xa5\xf3\xc2\x5f\x4e\xac\x2e\x35\x8e\xa1\xab\x38\x11\xf8\xa6\xfc\x8a\x22\x86\x71\xb0\x35\x94\x2e\x45\x25\x5c\x49\x68\x6c\xb6\x52\xd6\x85\x01\xcc\x19\xca\x54\x97\x55\x85\xe9\xad\x52\x05\x9a\xe7\x6c\x4a\x66\x60\x4c\xe4\x74\x3b\x95\x00\xa3\x6b\xeb\x7c\xd4\xd6\xcf\x83\x43\xfe\x10\x6c\x67\x2f\x72\x36\xe8\x0f\xb1\x25\x80\xee\xa1\xf6\x0e\x4a\xd5\xd8\xee\xa3\xf3\xf6\x54\xf7\xfb\xd5\x00\xd8\xc8\x5e\x70\x06\xae\x39\xef\xac\xe7\x32\x1f\xa6\x98\x8c\x92\x34\x64\x1a\x06\xb8\xe4\x00\xe9\x49\x23\x8b\x63\xc3\xb9\x6d\x71\x50\xcb\x69\x11\x73\x4f\x94\x62\x57\xdc\x6f\x97\x57\xc7\x32\x80\xdd\x57\x90\xc7\x20\x89\xb3\x24\x72\xf5\x74\x04\xed\x9f\x78\x4a\x26\xed\x13\x25\x60\x6e\xf9\x88\x14\x81\xbc\xe7\x50\xa1\xcd\x86\xa3\x7d\x0b\xdd\x6c\xe2\xc7\x61\x36\xea\xb8\xb5\x7e\x43\xe7\x12\x6f\xa8\x4e\x80\xca\x06\xae\x2e\x9b\x34\x5d\xeb\x28\x5e\xf4\x5b\xec\x0a\xf3\x9d\x72\x57\x27\x26\x1d\x98\x00\x51\x33\x3c\xd4\x4b\x98\x68\xbe\x69\xe0\x64\xe7\xe7\xbb\xa6\x5f\x00\x3f\x50\x39\x63\x96\x93\x99\xf9\x31\x25\xa6\x68\xc9\x9a\x99\xd8\x8c\x19\x3c\x86\x6d\x7e\x44\x6d\xf9\x23\x2d\x74\x92\x8b\xdd\xe5\xa2\x3a\x6e\x3a\xca\x16\x7b\x0e\x44\x7d\x52\xd5\x95\x08\xff\x1e\x66\x41\xb2\x57\xf5\x4b\x5c\x57\x9d\x90\x7f\x56\xd6\x6a\x32\xd5\x02\x45\x64\x74\x9d\x96\x9b\xc5\x26\xb9\xea\x60\xa7\x47\x06\x53\x30\x41\x2e\x21\x73\xb8\x11\x5c\x2e\xcd\x74\x27\x49\x14\x85\xb1\x9f\x03\x31\x8f\x84\xe8\xc7\xb0\xeb\x4c\x7c\x82\x5d\x21\xb4\x71\x1a\xf0\xd7\xf8\xbe\x6f\xcc\x91\x91\x5d\x1d\x99\x68\x4c\x8b\x0a\x8f\xf7\x5d\x05\xa3\xfa\x6e\x6b\xe2\x29\x2f\xd2\x98\xea\xd4\x78\xd1\x2b\x78\x00\x9c\xb2\x3f\xa1\x11\x80\x0b\x7c\xa1\x4d\xf9\xbf\x6f\xa2\x70\xd9\x28\x72\x7c\xec\xe0\x0d\xd5\x7e\xbd\x51\x7e\xa5\xc6\xc5\x99\x9a\x91\x89\xb3\xea\xef\xa7\x9c\xb2\x3e\x73\x29\xf2\x4d\x23\xe5\xba\x6f\xa1\x1b\x87\xc1\xc8\x90\x8b\x0b\xf9\x29\xbc\x12\xd8\x01\xa4\x70\xea\xe2\xd0\xb5\x00\xb4\x8d\x5b\x17\x15\xfc\x8f\xb9\x5e\xe1\x33\x5c\xab\x85\xdb\xd9\x04\x5a\xe8\xe2\xc8\xd2\x18\x88\xf7\xda\x92\x71\xc9\x12\x1f\xc5\x7d\xa4\x79\x50\x1a\xb4\x56\x7a\x69\xc6\xd6\xa1\x1f\xd7\xfc\xd0\x31\xd3\xb5\x58\xe6\x61\x20\xc0\xf9\xba\x8d\x47\xb4\x3a\x5e\x31\x58\x1d\xcb\xc3\x87\xc1\xe5\x6b\xe5\x9d\xc4\x7e\x36\x2a\x7c\x8c\xaa\x50\x63\x2a\xfd\xea\xf3\xde\x76\x36\x62\x4a\xc8\x4f\x92\x8c\xda\xcc\xe4\xc1\x90\xe4\xff\x4c\x51\xc9\xd5\x68\xfa\x8d\x9f\x67\xd3\x55\x54\x20\xe0\x76\xe7\xfe\xbf\xa7\x4e\xbf\x2d\x8d\x13\xbb\xa6\x12\x04\xe1\x78\x42\xab\x5d\x64\x2c\x69\xeb\x49\xe4\x58\x7d\x17\xd2\xb9\xd0\xc8\x13\x89\x8f\x56\x46\x91\x74\x0c\x75\x4c\xd5\xdb\x6c\xbb\x5c\x1a\x35\x53\x5a\xaa\x94\xca\x09\xe3\xe1\x94\x2e\x67\x77\x2c\xb5\xc0\x89\x52\x85\xc4\x5b\x8d\xe3\x7b\x7e\xbe\xeb\x47\x43\x93\x0a\x40\x55\x91\x46\x8a\xcd\xfc\xdc\x7b\x62\xbb\x2e\x73\x77\x7e\xfe\xe7\x3b\x4f\x3f\xcd\x01\xc5\x09\xc4\x20\x48\xda\xff\x05\x10\x21\x00\xe6\x1f\x07\xdc\x08\x6f\xcf\x9d\x8d\x36\xcd\xf0\xcd\xaf\xdb\x8a\x3d\x4d\x28\x52\xee\x5b\x9e\xeb\x88\xda\x82\x71\x40\x76\xe7\x1d\xca\xc5\xc3\x6a\xa0\x5e\x8a\x6c\xf1\xf7\xc9\x7f\xc4\xf2\xbf\x44\xb5\x45\x45\x2b\xb1\xe0\x40\x3b\x8b\xcf\xef\xe7\xda\xf0\x77\x15\x40\xef\x7a\xa9\xa8\x13\xdf\x57\xb2\x2d\xef\x93\xf7\x29\x39\xf9\xca\x32\xe2\xc4\xbb\xa2\x93\x49\x7b\x7a\x55\x6c\xc8\xb2\x57\x48\xdc\xc3\x79\xb9\xe7\x75\xbe\x21\xab\xe9\xcf\xf9\xcc\x81\xbb\x75\x0b\xf3\x21\x04\x93\x5a\xa9\x29\xf7\x23\xae\x50\x58\xce\xe9\xea\x4f\x11\x33\xdf\x50\x41\xf8\x0d\xc5\xef\xf2\xae\x66\x0c\x7b\xd7\x53\x2d\xc8\x47\xda\x5c\xdb\x7c\x35\xcc\x03\xd0\x3d\xb5\x91\xb9\xb7\x15\xb7\x5e\x98\x3b\x00\x57\xc3\x2a\x4d\x39\xd5\xa9\xa6\xca\xf5\xd2\x62\x37\xf7\xe3\x61\x64\x3a\xd5\x08\x28\x2d\x5a\x27\x39\xeb\x0e\xdd\xe5\x22\x0f\x46\x42\x67\x20\xfc\x4e\x34\xe7\x42\xfc\xd4\xa6\x97\x94\x15\xe9\x0a\x5b\xda\xc5\x56\x94\x85\xee\x06\xf1\xe3\x43\x4f\xa8\x76\xa6\x3f\xad\xa6\x78\x6b\x8a\x02\x65\xb8\x43\xbc\xc8\x50\xe2\x3d\x8c\x35\x8a\xb5\xf1\xb6\xe7\x2a\x44\x9f\xd7\xd6\xab\x0b\x4c\xae\xeb\xd6\xc2\x97\xf4\x7b\x9e\xa5\x34\x03\xf6\x1d\x67\x16\x81\x7c\xbc\x84\x1d\x02\x5b\xf1\x6f\x55\x8f\xf5\x14\x77\xcb\x23\xba\xbe\x5c\xaa\x41\x3f\xab\x00\x02\xef\xe2\xfc\x44\xcc\x7e\xd1\xd3\x14\xf8\x6d\xda\xf0\xd5\x49\x68\xbd\x45\xce\x6c\x29\x5b\xbb\xa9\x3a\xc2\x93\x22\xe7\x52\x1d\xec\x2d\xb3\xa8\xe1\xf7\x84\x52\x4d\xc1\x78\xc3\x3c\xcf\x96\x8b\x74\x38\xc2\x54\x60\xdf\x1d\x47\xc4\xcc\x37\x0a\xfd\x5d\x1d\x93\x91\x1f\xc6\x79\xa6\x32\x57\xc7\x54\xe6\xea\x98\x82\xa2\x4e\x92\x7e\x58\x8c\xa7\x1c\xf9\xd6\x4f\x4b\x07\x66\x38\x56\xba\x56\xec\xf3\x1a\x41\x96\x24\x79\x46\x69\x35\x14\x95\xbe\x4f\x13\x88\x63\x92\x73\xb6\x52\x6d\x7f\x44\x25\x5f\xfd\x49\xc7\xf9\x52\x17\x54\xbc\xdb\x26\x0a\xd6\x0d\xfc\x54\xb8\xef\x1c\x44\xd1\xc5\xcb\xe7\x55\xb6\x22\xad\x8c\x33\x27\x09\x44\xb5\x85\x5b\xb7\xf9\x66\x5d\xa9\xf0\x92\xd2\xc2\x94\x73\x6d\x7f\xa2\x58\x08\x6f\x97\xae\x8d\xe4\x7a\x5b\x5b\xfd\xfe\x6e\xdf\x8c\xfd\x98\x91\x33\x92\x66\x50\x29\x07\xdb\x92\x50\xf9\x53\xcb\xa9\xf1\xfb\x39\x17\xc3\xe1\xcb\xa1\x6c\xc9\xd7\x8a\x5c\x73\xd5\xf8\x51\x3e\x0a\xd9\xf7\x64\x55\x61\xd8\x1c\x91\x18\xde\x56\xf7\x78\xa6\x3b\x3b\xfb\x20\x81\xea\x58\x37\x0f\x49\x0d\x18\xc3\x77\x69\x1f\x21\x90\x06\x1d\x15\xe6\x1e\x18\x7b\x39\xa6\x69\x05\x09\x97\x95\x6a\xc1\x40\xc1\x00\xfb\x6b\xcf\xba\x6a\x5c\x3f\x8e\x7d\x8b\x57\x3d\xe6\x3d\xae\x5a\x0e\x72\x93\x2e\xfb\xf1\xa1\x8e\xa2\x68\xaa\xc3\xcf\xbe\xe2\xa0\x64\xf1\x8a\xc9\xf2\x70\x48\x3e\x3d\xd0\x25\x12\x97\x2a\xc8\x1f\x78\x74\xe0\x11\x80\xa7\x03\x0e\xde\xcd\x9a\xba\x8e\xe7\xb8\x5d\xf3\xd4\x8f\xb3\x41\x41\x02\x99\x2a\x0a\xff\x8e\xe2\xd3\xf8\x4e\x23\xbc\x70\x74\xdf\xfe\x88\x69\x11\x71\x72\x9e\xd6\xbc\x83\xa7\x41\x3f\xc2\x39\x16\x2a\xfd\x0d\x42\xce\xe7\x73\xd1\x14\x66\x44\x2a\xa8\x0d\xce\xd0\xd9\x6e\x91\x99\xdd\x35\xd6\xde\x6a\xa4\x90\x62\xef\x10\x97\xb0\x6e\x6e\x15\xb2\x69\x95\x75\x3c\xa1\xc8\xae\x37\x6b\xf9\xd8\x61\x01\x86\x6a\xe6\x2e\xa3\xf7\x45\x90\xf3\x43\x85\x0e\xe2\xae\x14\xa4\x86\x1e\x66\x1b\x08\x53\x7e\x9f\x96\x3d\x8c\xeb\x39\xc5\x8c\xdc\x0f\x87\xd8\xe7\x38\xd0\x91\xa3\x12\x92\x43\xfa\x36\x98\x1f\x27\x7c\xbc\x9a\xa4\x87\x7c\x82\x41\x4c\x39\xa0\x16\xda\xa4\xf0\xaa\xe7\x55\x9b\xcb\xdb\x36\x54\x5f\x4e\xc0\x15\x83\xba\x02\xf6\x1f\x28\x32\x61\xa4\xcf\xaa\x0a\xd6\xd9\x36\x7a\xc5\xd4\x50\x57\x5e\x35\xa4\xc8\x64\x9c\x52\xb0\xe9\x53\x0d\xe7\xf8\x99\xae\x59\xf1\xa3\x82\x83\xe8\xf9\x79\x1e\x15\x64\x63\xf9\xba\x61\xe4\xe7\x0e\x74\xf3\x34\xe9\xf7\x0d\x3e\x22\xf2\x1f\xce\x21\x3f\xa1\xb0\x10\x93\x34\xc9\x4d\x50\xb9\xbb\x4b\x33\x76\xad\x56\x93\x21\x1a\x3a\x4a\x7d\x9a\x49\x2b\xf8\x5f\x6c\xda\x2b\x1c\x4f\x8a\x28\x93\x8e\x49\x61\xda\x53\x44\x87\x27\x1b\x9e\xea\xec\x6c\x37\x48\x92\xb4\x4f\x81\x21\x8d\x06\x43\x08\x10\x93\x08\x9e\xe0\x2b\x0e\x8a\x94\xfa\x20\x8a\xf0\xa3\x68\x4d\x67\x3c\xb9\x33\x92\x6f\x94\xb0\x75\x9c\x85\x7d\x93\x9a\xfe\xee\x29\x2b\x75\xf8\xdf\x77\x81\x9f\xe0\x73\xd3\xb5\xe5\xfd\xd5\xc7\x09\x8f\xb4\xc5\x45\x47\x61\x2a\xa3\x6f\x46\x91\xe0\x6e\x83\x9a\xbc\xf2\x3c\x8a\x28\x0f\xc7\x7e\xce\xcc\x48\x8b\x35\xc4\xac\x14\x3e\x5c\x19\x65\x50\xc4\x7d\x52\x1e\x66\x30\x89\x8a\xea\xee\xe0\x2d\x70\x64\x5c\x02\x42\xdf\x62\x84\xaa\xe7\x97\xec\x24\x35\x49\x7c\xe0\x39\x95\xa2\xd3\xe4\x97\xb2\x74\x9d\xf2\x0a\x00\x1d\x65\xaa\x92\xb2\xa6\xd6\xe3\x72\x2e\xc3\xd4\x8f\x8b\xc8\x4f\x35\xbe\xb2\xde\x0a\xd7\x42\x46\xd1\x9d\xa4\x66\x1c\x16\x42\x75\xa8\x88\x8b\x85\xda\xee\x78\x0b\x18\xee\xc5\xee\xc8\x8f\x06\xbb\x2a\x3f\xcb\xd1\x62\xce\x58\x60\x51\xc7\xea\x00\x6c\x30\x95\x25\x12\xd3\x68\x6c\x83\x25\xba\x59\xd7\x16\xf2\x81\xc4\xc5\xfc\x9c\x54\x04\x49\x27\xbf\x90\x46\x7e\x94\x50\xe3\x5f\xc7\x36\xad\xbd\xa3\x6d\xf4\x3b\xb6\x14\x9c\x8d\x8c\xcf\x15\xde\x9a\x2a\x18\xdf\x78\x4f\xca\xd9\x99\x0e\xfd\x38\x7c\x95\x9b\x60\x15\x23\xa5\x00\x4e\xf8\xce\xab\x25\x01\x75\xf3\x83\x9c\xc2\xab\x61\x3e\x1a\x25\x51\x9f\x54\x75\x2b\xdb\x22\x75\x5f\x97\x05\x80\xfc\x0c\x3c\xfe\x1f\x2a\x86\xa4\xcf\x89\x57\x5b\x20\xf2\x6d\x04\xad\xc1\x28\x34\x03\x7a\x6b\x49\xbf\x74\x2c\x43\xcb\xc7\x0d\x61\xe5\x83\x33\x73\xdd\x22\x46\xf6\x2e\xec\xfb\x22\xc5\x29\x94\xd6\xb4\x50\x05\x0c\xe9\xfc\x82\xd4\x64\x79\x1a\x06\x79\xa6\xdb\x85\x68\x5a\xa5\x75\xe8\x8b\x00\xb8\x91\x49\x62\x3f\xd5\x90\xd3\x4d\xa5\x57\xb0\xa9\x85\x76\x6a\xe9\x45\x7f\xec\xa7\x7e\xdf\xa4\xa1\xe9\x54\xab\x4a\x20\xf7\x35\x30\xfe\x63\xf5\xf6\x36\x93\xed\xad\xc6\x4d\xa0\x1f\xb4\xb3\x44\x4a\x88\x4c\x1b\x42\x80\xc3\x4a\x78\xe3\x37\x4a\x17\x1a\x1c\x46\xcb\x1b\x72\xc0\xa0\x0a\x91\x40\x9e\x46\x85\xbf\x4a\x51\xca\x4c\x92\x49\xb5\xbf\xf6\xa8\xfd\x77\x8f\x3e\x87\xa3\xee\xa8\x76\xa5\x2f\xc0\xba\x0a\x4d\xa5\x4b\x4d\x1c\xa5\xc3\x91\xff\xbf\x86\xbd\x6f\x34\x7a\x71\xf7\x2d\x54\x06\x3d\x30\x99\xa3\x95\x40\xe8\x8c\x76\x6a\xdb\xd2\x67\xa9\x5d\x3e\x57\x14\x0a\xc3\xd0\x8f\xf3\x69\xc5\xe7\xf2\x79\xa9\x0c\x2d\x08\x6a\x25\xfa\x51\x46\xf7\xbe\xeb\x6e\x2d\xf2\x51\x92\x12\xf7\x07\xca\xbb\x68\x59\x62\xf6\x3d\x61\x24\x52\x90\xf9\x2d\x15\xef\xfa\x51\xe4\xaf\xa9\xa4\xfc\x31\x9d\x94\x3f\xd6\xc2\x76\xfd\x62\x37\x1b\x25\x38\x4a\xd5\x84\x0a\x4e\xa7\x79\x2c\xce\xce\x76\xcd\xcb\x04\x6f\x00\xe6\x04\xc9\x8a\x3b\xf5\x5e\xa4\xea\x0b\x04\xd3\xba\xfd\x27\x9f\xe9\x66\x63\x63\x3b\x82\x45\x66\x5e\xa5\x55\xcf\xd9\xaa\x44\x36\xf6\xa3\x48\xf0\x34\xad\xd2\xbc\x4f\x84\xba\x92\x37\x36\xb1\x90\x20\xc8\x4a\xef\xd4\x85\xbb\x05\x39\x7b\x51\x35\x48\xfb\xd1\x84\xeb\x74\x2c\x29\xe4\xa9\x46\xb1\x51\xe9\xb0\x52\x67\xac\x03\x63\xa2\xe4\x5b\x85\xc0\x24\xdb\x54\x45\x5a\x40\xd0\x24\x67\xc2\x6f\xcd\x62\x78\x8a\x3d\xea\x7c\x3d\xbc\xf6\x63\x40\x8f\x24\xdd\x57\x2d\x5d\x49\x03\xd6\xb2\xd2\xc3\xea\x9d\x33\xac\x51\xab\xd8\x66\xdf\x1f\xe9\x3f\x1c\xc4\xeb\xaa\x8a\x9b\x1a\x7f\xe8\xc7\xd3\x1d\xcb\xe9\xfd\x99\x4a\x2e\xde\x52\x08\x0f\x8e\xef\x30\x97\x5b\x2a\xc7\x90\x8d\x93\x9c\x72\x0c\xd5\x81\x6d\xb3\xdb\x8b\x4b\xf6\xc6\x73\x01\x70\x10\xc6\x41\x18\xc7\x7e\x1e\x4e\x3b\x0e\xe7\x53\x4a\x31\xfb\xb8\x62\x29\x00\xd2\x5a\x80\x0b\xb6\xf6\x1a\x84\x26\xce\xc3\x2c\x67\x3c\x8e\x10\x26\xd2\x68\x0a\x3d\xb8\xea\x21\xbe\xe3\xd5\x7a\x1e\xc3\xbc\xb0\xc5\x3a\xbc\x24\x57\x95\xf9\xc6\x53\xfc\xe4\xa3\xd4\xac\xf6\x6b\x15\xde\x52\xd9\x54\x05\xa1\xf2\xc7\x49\x11\xe7\xd9\x5e\xca\x81\xc1\x5d\x60\x3d\x07\x54\xb1\x6e\xd2\xd1\x8c\x34\x16\x53\x2b\xf1\x5f\x61\x50\xad\x14\x8e\xad\xef\xdd\x54\x88\xf3\x75\x4f\x29\x4e\x34\x99\x1e\x9e\xe9\x86\x39\x94\xfa\x16\x2d\x74\xd2\x61\xdd\x1d\x72\x32\x35\x51\x11\xe4\x7e\x9c\xef\x71\x78\x90\x2b\x9a\x5c\xe2\x7a\xa9\xf8\x93\x81\xcb\xb7\xd0\x67\x87\xfb\xfd\x5c\xf1\xfc\xe1\x5c\xa1\x14\xcc\xe5\xaf\xf6\x9c\x0f\x0c\xe6\x3b\x93\xee\x52\x28\x8f\x52\x11\xc9\x7d\xca\xa7\xb9\xb0\xfe\x37\x4a\xe3\xc8\xfe\x4d\x37\x70\xb7\x72\xc4\xe5\xe9\x1a\xe8\x18\xa4\xc5\xcb\xad\x20\x94\xbb\x59\x4a\x44\x05\x89\x7e\xba\x1c\xe6\xa9\x3f\x34\x29\xd2\x23\x4a\x11\x7f\xd1\x2a\xe2\x6f\xf7\x73\xf6\x2d\x74\x73\x13\x8c\x88\xa8\x3b\x42\x25\x8d\xe5\x72\x3d\xd5\x37\x7c\x41\xa1\x6a\xb2\xa2\xf2\xe6\x80\xb5\x10\x55\x2c\x85\x3e\x3c\xd3\x46\x48\x13\x66\x59\x21\x46\x14\x4b\x01\x3c\x26\xf2\x42\xaa\xd3\xf1\xc7\x8a\xd4\x24\x4a\x56\x44\xcc\x91\x1b\xc8\x4a\xe5\x4b\x7c\xa2\xaa\x94\x7e\x9e\xb3\x44\x84\x8d\xd1\xdf\xc3\x64\xf3\x4d\x83\x64\xb3\x0a\x79\xc2\x8e\xcb\xf4\x9c\xab\x63\x89\xdb\x30\x37\x03\x3f\x8c\x64\x67\x21\x58\xbd\xaf\xdb\x64\xef\xb7\x29\x8a\xe5\x23\x90\xa8\x22\x79\x86\x9c\xe4\x5d\xd5\x05\x72\xd7\x95\xb6\xa3\x3c\x19\x9a\xca\xd0\xec\x21\x97\xfd\x22\xad\x4f\x4a\x4e\xdc\xfe\xb9\x9e\x53\xb2\x7a\x4f\xeb\xeb\x40\xb1\x1b\x31\xe7\x56\x59\x23\xb7\xa1\x94\x09\x6c\xf4\x09\x9d\xa1\x9b\x18\x86\x2d\x3f\x4c\xe3\xa3\x45\x01\x05\x79\x43\x2f\x85\x7c\xf0\x3d\xa4\xbd\x11\x6d\x6e\x52\x93\x1f\x5f\x2b\xdb\x75\x0b\xb6\x09\xe9\x40\xce\x74\x88\x4c\x73\x35\x21\x92\x69\x50\xaa\x6a\x3b\x5d\xbb\xfa\x83\xbb\x7a\x6a\x61\xdc\x6b\xab\x08\xf6\xc3\x8c\x70\x3b\x35\x8a\x9d\xe3\x14\xd3\xf0\x75\x29\x38\x91\x2c\xec\x2b\x45\xc2\x4f\x4b\x45\x98\xff\x69\x1b\xb3\xde\x80\xda\x0f\x0e\xce\x70\x8c\xfa\x09\x99\x6a\xbe\x6e\x13\x01\x5c\x31\x79\x42\x8e\xa7\x28\x53\x75\x2c\x2b\x2a\x43\xf8\x64\x7c\xb6\x25\xb5\x5e\x58\xec\x3e\x83\xd6\x18\x40\x3b\x20\xc8\x8b\xc8\x66\xdd\xab\x35\x95\xd0\x4b\xc2\x55\x87\x1c\x9f\x84\x97\x8e\xbd\x1c\x09\x0b\x0b\x06\x72\xac\x86\xb7\x70\xa2\x4b\x3f\x1f\xcd\x31\x2a\x98\x8f\x51\x7c\x87\x05\x7e\x5d\xf5\xec\x0c\x92\xb4\x4f\x49\x16\x2c\xa9\x1b\x68\x0b\x15\xc1\x05\xfa\x02\xdb\xcb\x6f\x99\x35\x38\x47\x8b\xba\xd2\x54\x4f\x79\x68\xcd\x2a\x65\xe5\x78\xad\x86\x71\x9f\x60\xe2\x62\xb4\xab\x97\x67\xc8\x0e\xd6\xad\x25\xef\xb5\x89\xe5\x26\xf2\xf1\xc0\xf3\xdd\x60\x44\xf2\x4e\xae\xd1\x60\x4b\x29\xd6\x6d\x29\x6e\xe6\x41\x98\x8d\xa6\x14\xfb\xc4\x67\x65\x33\x23\x2d\x2a\x4a\x35\x5e\xed\x68\xb2\xdb\xe1\x45\xd9\x4f\x17\xa0\x87\x6a\xa4\xfb\x08\x43\x23\x78\x10\xed\xff\xab\x56\xa2\x7f\x56\xfb\xee\x84\x99\xc9\xb0\x76\x2e\xc1\xc4\xf2\x4d\x0b\x9c\x6c\x91\x4d\xce\xb4\xe2\x94\x94\x14\xbf\x06\xf3\x23\xd4\xdf\xd4\x6c\x20\x47\x1b\xa7\x68\xf5\x75\xfd\xb0\xa3\x97\x4d\x15\xd9\x48\x72\xd7\x21\x61\xcd\x2b\x18\xe3\x2f\xe1\x87\x60\x96\xef\x12\x86\x91\x85\xa8\xc9\x76\x23\x36\xb9\x84\xe4\xa0\x40\xdd\x6c\x48\xfd\xab\x4f\xae\x93\x0a\x85\x10\x61\xd2\x58\x61\x5b\x71\xe7\x8a\x15\x8f\xb6\x44\x73\xac\xd0\x8e\x65\x74\xbd\x74\x9b\xf2\xb0\x92\xc5\x7a\x68\xdd\xe1\x4d\xf8\x8c\x22\x8b\x92\xfc\xb5\x9e\xab\xa6\x06\x45\xf6\x80\x6b\x7a\xfb\x12\x0f\x99\xa2\x42\x5b\x14\xc9\x7b\x8c\x19\xd6\xf4\x55\x4f\x75\x74\xde\x52\xad\xe8\x9c\x6b\xc1\xc6\x06\x46\x5c\xa5\xfc\xb6\x76\xaf\x37\x3d\x96\x41\xc4\x12\x8b\xc2\x0e\xa7\x28\x23\xff\xc7\xd2\xd9\x8c\x1b\x34\x96\x48\x6f\x7e\xde\xea\x4a\x27\x49\xca\x07\x33\x72\x0e\x40\xea\xf2\x75\x23\xe2\xa0\x7a\x5b\xd0\x97\xe6\x36\xf9\x41\xfd\xeb\xb5\x02\xff\xc4\xa4\x4f\x38\xf1\x9a\x9b\x68\x65\x87\xc7\x79\xb5\x54\x74\x41\x9b\x18\x1b\x1c\x2e\x87\x15\x3d\xd5\x4f\x60\x08\x80\x85\xb8\xe8\x29\x85\x0c\x4c\x0e\x3c\xa0\x3f\x28\x5d\xce\x94\x44\x27\x64\x4b\xc1\x3f\xdb\x62\xa9\x6e\x78\xb7\x1f\x92\xcd\xb3\x8a\xdc\x07\x45\xfd\xf7\xc3\x52\x53\x54\x40\xa3\xdd\xf5\xe0\xcf\xcf\xef\xb7\x6a\x74\x64\x66\xad\x07\x67\x25\xfc\x4e\xb5\xe4\x3a\x16\xa0\xdd\x44\xd4\xc7\x08\x4f\x90\x35\x61\xca\x66\x8a\x46\x98\x0c\x60\x9b\x28\x70\x02\x61\x1f\x4b\x63\xe0\x18\xc3\x3a\xa8\xd0\xa0\xbc\x04\x4e\x6d\xf8\x9c\x5b\x34\x0c\x58\xed\x17\xbd\x6a\xdc\x81\xc1\x3d\xa9\x24\xd0\xa1\x98\x81\x50\xf3\x56\x5d\xee\x3e\x5e\xfb\xff\xd1\x4f\x5a\xc9\x59\x2b\xd3\xb7\x89\x63\x1a\xdf\x70\x8a\xc6\x0c\x89\xb5\x8b\x58\xba\x58\xe0\xac\xb4\x25\xdf\x4d\x51\x17\x39\xa5\xab\x8f\x11\xdf\x09\x26\xf1\x32\x92\x89\x48\x8c\xbf\xcb\x63\x8e\xe0\x61\xcf\x3a\x32\x6d\x8c\x28\x53\xbd\x4e\x3b\x88\x5c\x1d\xbb\x9d\xf9\x36\x30\x81\x3f\x55\xf8\xd2\x8f\x31\x4b\xfc\xcd\x98\x72\xc4\x0c\x38\x0c\x31\x97\x2c\xfe\x89\x94\xe7\x27\xde\xd4\x0b\x4b\x33\x9a\xc6\xe7\x39\x8b\x72\xaa\xd6\x1a\x6b\xcd\xd2\x8a\xc1\x19\xf0\x7d\x2c\x5b\xa4\x37\xef\xd6\x42\x4d\xd3\x37\x24\x05\x80\x03\xe1\x6c\xe9\xa8\xf4\x70\xec\x00\x0e\x80\x86\x49\x7c\x1e\x89\x14\xec\x61\x2c\x6e\x04\x29\xef\xa8\x22\x66\xe0\x47\xe1\x20\x49\xe3\xd0\xdf\xad\x74\xc7\x59\x1d\x1b\x29\x8c\x9b\x9a\x72\xe3\xae\xa2\x53\x13\x39\x02\xdb\x55\x6b\xb5\xca\x1c\xfe\x3d\x48\xa2\x24\x0e\xab\x58\xdf\x32\x9a\xec\xed\x39\x88\xe8\xa3\xeb\xca\x1f\xdc\x50\x9c\xc6\xcb\x45\x1a\x73\x21\x07\xc3\xf7\x1d\x95\xd1\xf9\x8e\x75\x98\x8a\xcc\x47\x68\x05\x13\x00\x09\x5f\xbe\x6e\x64\x8b\x96\x66\x2a\x8b\x31\x89\xcc\x2b\xd6\xa7\x45\x54\x73\x43\x29\x94\x69\x8a\xda\x7c\x94\x26\xab\xd3\x0a\x0e\xbd\xa1\x4a\xdf\x98\x01\x84\x26\x53\x24\x54\x84\x4a\xed\x69\x9b\xeb\x88\xc2\x7c\x94\xe4\x69\x38\xc9\x25\x35\xd2\xa6\xc7\xd7\x6d\x9a\x4d\x8b\xf9\x0a\xe3\x21\x9b\x4f\x6c\x08\xd0\x13\xf2\x75\x6d\x47\x8f\x27\xa0\x31\x87\xb3\x08\xd9\x5f\x20\x36\x5e\x43\x7c\x2a\x6d\x46\x6e\x88\x27\x26\xcd\x92\x78\xda\xcd\x1a\x08\x13\xf9\xba\xec\xfc\xa3\x7f\x2c\x35\x25\x32\xf3\x52\x5f\x72\x5f\xb0\x12\x9a\x38\xf6\x29\x55\x80\x85\xf5\x1a\x2d\x38\xbe\xf6\x14\xcc\xfe\x24\xf3\xf3\x08\x0d\x9f\x42\xb4\x87\x11\x25\x46\x90\x45\xc1\x13\x9f\xa2\xaf\xe1\x6b\xcd\x72\x94\xaf\x3d\x44\xef\x02\x2c\xc3\x7d\xec\x54\x84\x61\x8f\x60\x21\xa1\x56\x77\x4c\x47\x5a\xc7\xe9\xc8\xc3\xa6\xdf\x8d\x82\x08\x7b\x47\x4a\x4f\xf1\x2a\x0e\x02\xa4\x37\xef\x2b\x46\x73\x04\x32\x70\xfb\x41\xff\x86\x0d\xdc\xde\x9f\x8d\x0a\x6a\xf5\x42\x53\x5a\xae\x06\x6a\x3d\xb0\xfc\x5c\x26\xc5\x2b\x4c\x35\xbe\xe5\x1b\x73\x60\xb5\x0c\x27\x08\x69\x0f\xce\xd8\x9c\x96\xeb\xff\x3b\xd3\x86\xa5\x4b\x6d\xd7\xa3\xa8\xa2\x56\x1f\xe0\xeb\x9a\x25\x19\x16\x31\x56\x3f\x16\xf2\x4d\xc5\xbd\x74\xb3\x11\x63\xcf\x1d\xe8\x06\x49\xf5\x40\x7d\x13\x07\x08\x9c\x31\x96\x58\x63\x7c\x6d\xf3\x3f\x91\x19\xfa\x51\xf8\xaa\x4d\xc7\xc2\x12\xe1\x27\xe0\x24\x5f\xab\xd5\x41\x9d\x25\x72\xb1\x9d\x92\xc5\xff\x11\x66\x12\x4d\x19\x37\xe8\xd0\xb1\xd0\xaa\x6a\x25\x20\xaf\x7c\xb5\x74\x74\xd5\x3f\xa2\x6a\x1e\xff\x11\x6d\x57\xfe\xff\xaa\x5d\x2a\x27\xa1\x07\x36\x2f\x52\x34\x77\xfe\xfd\x31\xc5\xc3\x55\xc4\x79\xba\x96\x85\x7d\xa3\x40\x1b\x57\x14\x68\xe3\x4a\xe9\x28\x56\x06\x61\x4a\xac\xcb\xb6\x2d\xa9\x74\xed\x32\x97\x3d\x1c\x3e\x42\x02\x41\x19\x38\x29\x62\xb8\x93\xe8\xa7\x6d\x78\xc1\xd4\x10\x49\x45\x1d\x68\xcf\x30\x40\xbe\x51\xdd\x16\x41\xe2\xe7\x0c\xb9\xc0\xf7\x23\x29\xc9\xd7\xaa\x44\x90\x17\x26\xeb\xfb\x6b\x7b\x55\xa3\xcc\x0d\xc5\x90\xd3\x81\xa7\x23\xb4\x73\xaa\xc1\xeb\xcf\x55\x91\xea\x4f\xb0\x71\xa4\x1c\x4c\x3b\x92\x6f\x3c\xa5\x45\x72\xd2\xe6\xb9\x4c\x3c\x0c\x63\x63\x52\x71\xf2\x10\x76\x5c\xf3\x54\xa6\xed\x9a\x9a\xaa\x22\x8e\x4d\xca\x89\x94\x17\x6d\x46\x80\xfc\x05\xbe\xb1\x55\xac\x89\x1f\xa6\xb4\x61\xe0\xae\x7c\xa0\x5a\x20\x3f\x50\x28\xd2\x28\xcc\x1f\xec\x58\x8d\x8c\xf7\x54\x4f\xf8\x1f\x78\x2a\x5e\x3c\x55\xba\x9e\xf6\xdb\x70\xfa\x01\xdb\x38\x4d\xd6\x01\xee\xd1\xbf\x83\x83\x82\xc3\x61\x2f\x69\x68\xd5\x28\x8b\x01\x3b\xd8\xd2\xa7\xe9\xd5\xf2\x61\x3b\x03\xe3\x10\x62\x26\x38\x40\xb7\x14\xf2\x60\xba\xa7\x4e\xe3\x93\xdb\x99\x47\x16\x97\x16\xbb\x2f\xbd\xf4\xb0\x06\x4a\x56\x53\x0c\xa7\x9c\xf3\x19\xd2\x4b\xae\xba\xf6\x99\xdf\x06\xc9\xb7\x87\xf1\x0b\xf0\x70\x3f\xf6\xdc\x19\xb3\xb7\xe7\xca\x25\x7b\x20\x66\x86\x1f\x79\x60\xbd\x72\x21\x98\xbd\x81\x00\x7e\x78\xee\x8b\x94\xca\xc0\x72\x38\xea\x88\x4f\x89\x42\x19\xb1\x2e\x16\x17\xe0\x9f\x7c\xad\x15\x74\x9e\x0d\x9e\x9d\x52\xec\x6b\xd7\xe9\xe8\x11\x08\x71\xf5\x30\x30\x22\x3b\x7b\x8f\x5a\x23\xb3\x62\x52\x7f\x88\x16\x05\xec\x80\x4b\xaa\x35\xed\x3d\x4d\x9c\x79\xb2\xd9\x70\x3e\x57\x79\x3d\x36\x19\x26\x0e\x99\x52\x43\x3b\xa2\x64\x30\x27\xc5\x64\xc2\xaa\xb2\x88\xf8\x3f\xc2\xd4\xf2\x4d\xe3\xf8\x26\x30\x52\x90\xc4\x81\x89\xa9\x0d\x89\x7f\x45\xfa\xf5\xe8\x57\xf8\x46\x27\xb3\x69\x91\x43\x71\x58\xf4\xd1\xc9\x63\x10\x11\x75\x45\xa2\xb9\xa9\xfc\xed\xcf\x4b\xa7\x56\xf6\x39\xb9\x78\x48\x29\xa1\x4c\x6e\x2b\xb0\xb3\xb3\xf2\xff\xd5\x46\x08\x46\xa0\x8f\x95\xfa\x8f\x26\x18\xab\xb9\xee\x61\x94\xef\xa9\x7e\x92\x23\x75\xcf\x81\x71\x58\x5b\x02\x1b\xe3\x66\xa9\x3a\x86\x6e\x2a\x60\xdf\xbf\x87\x8d\xc0\x47\x38\x55\x89\x38\xf5\xca\x17\x96\xae\x27\xc5\x72\xc4\x0a\xe8\xf8\x0e\xa6\x17\xe4\x1b\x55\xc6\x1b\x25\x63\x93\x4d\xd5\x9e\xcf\x06\xa8\x1f\x6b\x21\x8c\xa3\xaa\xad\xb0\x6f\x06\x7e\x11\xe5\xd3\x0a\x63\xe2\x39\x42\xed\xab\xa5\x3b\x43\xae\x7a\x8a\x3a\xff\x8c\x6a\xe0\x98\xa4\x49\xbf\x08\xf2\x0c\x12\xdc\x42\xa1\x5f\x7d\xb0\xa6\x3f\x02\x87\xec\xbc\xa7\x41\xb0\xc7\x68\x08\x71\x7d\x03\x61\x05\x7f\xde\x53\xc7\x07\x67\xc6\x30\x71\xbf\x87\xc0\x40\x5e\x91\x46\x5a\xd2\xdb\xaa\x21\x67\x9d\xd6\x06\xf6\xce\x34\x10\x62\x92\xa4\x73\x35\xf0\x63\x08\x9e\x24\x17\xe6\x4e\x84\x20\x4a\x32\x13\xad\xed\x56\x01\x37\x3b\xff\xb6\xfc\x63\x65\x4b\x6e\xd2\xd9\x0a\x70\x21\x5c\x7f\x86\x33\xd5\xf2\x6c\x96\x32\x38\x18\x85\xaf\x26\x61\x5f\xc9\x30\x6d\x28\x19\xa6\x8d\xf2\x2b\xf2\x87\x45\x9a\x9a\x49\x1e\xe6\x50\xf2\x23\xf3\x01\xeb\xf5\x43\x7a\x35\xbe\x56\x85\xf1\xb1\x49\x83\x91\x1f\xf7\xc3\x8c\x9b\x0f\x24\xbe\x53\xbc\x6a\xe7\x1b\xd4\x60\x04\xa4\xcd\xfd\xe5\x65\xc9\xd1\x23\xb5\xc8\xcd\xfb\x7c\xd3\xc6\xa4\x63\xe2\x61\x11\x0d\xf0\xa9\xe7\x78\x27\x9f\xd5\xdb\xfa\xac\xb7\x1d\x61\x20\x6b\x3a\x5b\xcb\x72\x33\x5e\xad\x9c\x09\x85\x53\x3e\xef\x39\x21\xe7\xf3\x6d\x49\xdb\x89\xcf\x94\x38\xc2\x2f\x51\x8d\xa1\x70\x88\xb8\xc3\x64\x35\x8c\x49\x54\x4c\xf1\x4b\x88\xdc\xfc\x74\x4f\xc5\x48\xff\x9a\x26\xcb\x2a\x89\x55\xef\x2e\xac\x12\x0e\x56\x7a\x42\x8b\xe7\x4c\xaf\x3b\xd2\x71\x30\xdc\x08\x24\xc0\x19\x13\xd3\x37\x7b\xab\xef\xe5\x2c\xa2\xa7\x24\x58\x18\xfe\x8c\x99\x06\x2d\xba\xe0\xf4\xe9\x19\x11\x05\x33\x43\xa1\x08\xd7\xba\xec\x13\x32\x1a\x92\x31\x14\x3f\xd3\x8c\x97\xcd\xab\xaf\x46\x36\x90\x03\xa0\xfc\x77\x68\x4d\xf1\xb5\xf2\x2d\x53\x13\x98\x70\xc5\x5f\x8e\xcc\x74\xed\x57\xd4\x6e\xdb\xd1\x53\xba\x5f\x7f\x51\x3a\xe1\xd9\x0b\xd6\x75\x09\x22\xea\x42\xaa\xcb\xd2\xc0\xc9\x13\xe2\xa3\x27\x54\x22\xd2\x04\x05\x29\xb7\x3c\x4c\x5f\x6c\xb5\x6f\x2a\x6b\x21\x35\xca\xa9\x9a\x1c\xef\xec\x1c\x63\x82\xe0\x60\x22\xbf\x7b\xbb\x54\x75\xf4\xfb\x84\x7d\x61\x7a\xc0\xd2\x71\x37\xff\x31\x2a\xba\x48\x81\x7c\x44\x0f\xcf\x5b\x5d\xf5\x31\x93\xd0\xa6\xab\x95\x6e\x3f\xb8\x64\x95\x0a\x75\xff\x5a\x8d\xc9\x4b\xd5\xd3\xde\x53\xa8\xb3\x71\xb5\xfb\x42\x3f\xa2\x76\x79\xfc\xeb\x57\x7a\xd5\x73\x09\xf0\x5b\xb1\x82\x3b\x6a\xca\x67\xbe\x8c\x68\x0d\xd6\xa3\x95\x48\x70\x92\x98\x9c\x3b\x3c\xa5\xdc\x5c\x33\x44\x8f\xa9\xb8\x21\x8c\x2d\x5e\x55\xc8\x7d\x68\x96\xb1\x16\x6f\x28\x8a\xc0\x3f\xa4\x25\xce\xc9\x7a\x58\x41\xc9\xdc\x2b\xbe\x4e\x63\xe2\x07\xdd\x7e\xbb\xe5\xb9\x38\xff\x36\xbe\x58\x4a\x66\xf4\x44\x2e\x3c\x5b\xb4\xf4\x26\x9d\xf9\xf9\xad\xd3\x58\x5d\x58\xc4\x48\xc5\x08\x25\x56\x0d\x92\x4a\xcf\x8d\xe8\xfc\x33\x9b\xd7\x48\xf3\xa0\xe3\x40\x9d\x7f\x51\x63\x44\x6b\x2d\xef\x51\xe8\xc4\xdd\x97\xf0\xbf\x2f\xa8\xbc\xf3\x05\x85\xd1\x89\x8c\x2f\x35\x3d\x45\x11\x53\x7d\x8e\x6f\x5a\xac\xde\xfe\x6e\x30\x32\xfe\x44\x9a\x82\x6d\x9f\x4f\x75\x24\xf1\x4d\x23\x70\x99\x9d\xed\x8e\xfd\xb8\xef\xe7\x49\xba\x46\x40\x76\x18\x55\xb0\x29\x09\x98\x51\xbb\x55\x5f\x52\xa5\x7d\x63\xf2\x69\x05\xa9\x39\xae\x73\xc0\xc7\x75\xc1\xfd\x18\x2c\x0d\xdf\x34\x52\x3e\xb2\xa8\xfd\x7e\xdf\xf4\x77\xd1\x9f\xa2\xb4\xcf\x8d\x93\xd8\x4a\x17\xb5\x80\x2f\x70\xba\x56\x28\xd9\x86\x4e\xef\xaa\xcc\x47\x12\x04\x45\x0a\xa7\xc3\xaa\x43\xda\x94\xce\x55\x75\x02\xfe\xb4\xa5\x9e\xd4\x1d\x27\xb1\x59\x53\xac\xb3\x1f\xe8\x06\xde\x0f\x54\x40\x19\x85\x59\xbe\xa7\x1a\x3a\xe9\xec\x50\x02\x82\x6f\xa8\x33\xf7\x0d\x2c\x65\x39\xeb\xaa\x9f\xb7\x74\xe9\xee\xff\x23\x0a\x91\x76\x80\x16\xb2\xdf\x55\x9f\x85\x21\xab\x5f\x61\xca\x40\xc5\x06\x76\x4e\xf1\x6f\xaf\x11\x8b\x64\xdf\x5f\x7b\xb4\x7a\x0a\x2c\x9c\xdb\x8a\x7a\xef\x82\x26\xa3\x44\xbb\x09\xdc\x29\x04\x0b\x5c\xe6\xc1\xdc\xe1\xd3\x9d\x1e\x85\x1a\x38\x32\x2e\xe3\xc8\xc0\x66\xdf\xd1\x73\x02\x54\x9c\x9c\x16\xe0\x68\xc7\xf2\x2d\xde\xc4\x6e\xc3\x8f\xec\x5c\xa7\xf1\x80\x83\xb5\x13\xf2\xb4\xc8\x55\x9f\x85\x8f\xca\x37\xca\x8b\x7c\x39\x09\x0e\x01\x79\xc0\xb0\x4c\x7a\x71\x81\x68\x2a\x0d\x8d\x95\x24\xec\x4b\x5b\x1d\xe2\xe4\x77\xe8\x4f\xf9\x5a\x6d\xb4\x71\x18\x87\xe3\x62\x8c\xcc\x96\x54\xaa\xaa\x57\x91\x0a\x96\x66\x31\x22\x19\xe1\x69\x97\xc7\xd5\x84\x60\xe7\x14\x55\xdb\x31\xce\x23\xf0\x9d\x0a\x54\x4c\x9c\x87\xa9\xd1\xd9\xca\x77\x68\x51\x22\x77\x02\xdc\x17\xc3\xf7\x34\xe4\xe1\x56\x63\x25\x3c\xfd\x74\xe5\x19\xe5\x05\x23\x95\xe1\x71\x21\x49\xc1\xd7\x8d\x45\xfd\x0b\xdd\x24\x0a\x57\x0c\xc2\x6f\x24\xa5\xff\x48\xf7\xd0\xfd\x51\x8d\x0d\x22\xcc\xcd\x1e\xb8\xc3\x8c\x5f\x57\x26\x01\x3a\x5b\x30\x74\x9d\x75\x87\xe8\xf8\x2d\x1a\x39\xb8\x0a\xc7\x3d\xc5\xa1\xfd\x51\xa9\x38\x50\xef\xb4\xa8\x24\x74\x4d\x14\x0e\xc3\xe5\x08\xdd\x96\x22\x73\xe8\xfc\x84\x2b\x0d\xb4\xf6\xbe\x85\x6e\x9c\xc4\x83\x90\x09\xe6\xbf\x20\x05\xdd\x8a\xd0\x2b\x52\x33\xed\x9a\x0f\xef\x2b\xec\xe3\x55\x25\xa4\xfd\x16\xec\x0d\x02\xd4\x0b\x95\x0f\x27\xed\x1a\x69\xf6\x40\x75\xc2\x63\x85\xbc\xef\xa9\xfe\x1f\xcf\xa1\x62\xb8\xde\x24\xec\x74\xb4\xd3\x44\x5f\x55\x1d\x00\x27\xb5\xe7\xf0\x3e\x5c\x54\xbb\x0c\x6d\xeb\xc5\xa6\xfa\x79\x3f\x24\xf8\xf8\x73\x4e\x25\xdf\xe2\xa9\x2e\x61\xaf\x0a\xb5\xa5\x2a\xc5\x5c\xf2\x54\x45\xf4\x27\x78\x00\xe9\x61\xdf\xee\xcd\x1e\x9c\xe9\xfa\xb1\x59\x25\xa6\x3d\xf1\xd2\x1c\xb3\xcb\x7d\x4f\x51\xaf\x9e\x85\x4b\x83\x6a\x11\xba\x83\x61\xe4\x3f\x6e\xa5\xf9\x1d\xfb\xe9\x21\x93\x33\xa7\x00\x6c\xef\x69\x2e\x4f\xc0\x94\xf3\x97\x23\x78\xb9\xaa\x9b\x48\xfe\x83\x25\x33\xf4\x63\x3f\x4a\xd0\x49\xaa\xfb\xea\x04\x6c\x5f\xad\x40\x14\xf7\x7f\xd2\x86\xf3\x48\xcd\xc0\xa4\xa9\x35\xa0\xd8\xa1\x88\x96\xf9\xba\xad\xe0\xd9\xcd\x4c\x14\xd1\xf9\x08\xa3\x74\xb1\x54\x2d\x01\xf7\xc8\xf7\x90\xce\xc0\x1a\x8b\xfa\x58\x7a\x92\x6c\x08\xe2\x5c\x84\x26\x8a\x61\xee\x40\x77\xec\x0f\xb9\xfb\x03\xc0\xbf\x4f\x71\xea\x60\x7a\xaf\x29\xce\xa6\x0d\xef\x29\x05\x62\x8a\x87\x59\xee\x13\xd9\xff\x2e\x87\x79\x7b\xb3\x74\x15\xaf\x6f\x97\x2a\x73\x02\xa4\x24\x56\x26\xb2\xaf\xfc\x47\xaa\x27\x69\x5c\x85\x41\x29\x83\x66\x9f\x73\xe9\xb6\xf9\x79\xae\xba\x7d\x5f\x53\x25\x9f\x6f\xbc\x4b\x35\xdd\x51\x38\x40\x46\xd6\xc6\x31\xd5\x27\xf8\x66\x7b\xc3\xee\xbe\x85\xee\xd2\xe2\xa3\x2e\x45\x7c\xd9\x53\x6a\x3c\x4c\x5d\x64\x0b\x8e\x4e\x6d\xe0\x34\xc7\xec\x78\x8e\x13\x28\x2c\x32\x85\x2b\x36\x00\xfe\x05\xed\xea\xdc\xd1\x4a\x0b\x15\xdd\x37\xeb\x9e\xa2\xc7\xdb\x54\x35\x8d\x3b\xa5\x12\xd8\x67\x69\x3e\x38\x41\xdf\xa6\x54\x0d\x36\xc0\x67\xa5\x4a\x0c\xbc\xdf\xc2\x10\xb8\xd8\x9d\x14\xc0\x03\x73\xb5\x51\xf7\x11\x7f\xd2\xc6\x70\x1a\x25\xc3\xa4\x46\x9f\xfd\x89\xf2\x8d\x3f\x51\x0d\x46\x51\xde\x7f\xf6\x01\xc7\x99\xb0\xc9\x3b\x09\xa8\x89\x0d\x15\x80\xde\xa3\xe2\x8a\x6d\x70\x7e\xc1\xd6\x18\x6f\xa8\x86\x79\xc6\x76\x50\x64\xb9\xf3\x89\x9e\xab\x11\xdd\xa8\xa3\x89\xb7\x1f\x44\xf3\xf3\xdd\xcc\x04\x85\xd5\x86\x42\xce\x68\x4f\xcf\xfd\xfc\x7d\x64\x45\x30\x60\x17\xda\x6a\x17\x63\x93\xbf\x6a\xe2\x65\xbf\x18\x4b\xc2\x19\xfe\xc2\x16\x66\x9a\x6f\x74\x7a\x38\x5d\x43\x3b\x18\x6b\xce\x97\x5a\x80\xbe\x54\xcb\x03\x36\x09\xa1\xd8\x63\x08\xad\xe4\xaf\xaa\x07\x14\x79\xd3\x5a\x87\xb3\xe9\x77\x74\x60\x59\xed\x0f\xbe\x6e\x59\xe5\xfb\xbb\x83\xd4\x18\x0d\xdc\xfd\x54\xf1\x3e\x7c\x6a\x31\xce\xab\x26\x1c\x8e\xac\xd9\xc1\xfe\x84\x3f\xca\xd7\x2a\xd7\x9a\x27\xb1\xa1\xa6\x14\xc5\xd0\xf2\x1c\xa7\xec\xae\xe3\x54\x92\x9c\xb3\x3b\x22\xae\xd0\x24\x0b\x05\xbc\xaa\xf4\x84\x59\xe4\xe7\x2c\x80\x2b\x50\x36\x87\xe3\x3e\xae\x59\x2a\xa9\x67\xd9\x8f\xe8\x70\xc4\x7a\x03\x95\x2a\x5f\xaf\xab\x58\xc5\xd3\x41\x8c\x22\xab\x7b\x55\xf8\x9c\x10\xa3\xa3\x27\x98\xaf\x6b\x90\xe9\xb1\x1f\xc6\xdc\x49\x8e\x12\x60\xa7\x57\xbd\x80\x46\xb0\x32\x7b\x62\x3d\xaf\x4f\x5f\x2e\x32\x13\xd5\xea\x97\xda\x85\xab\x08\xfb\x2b\x26\xf6\x15\x17\x3c\xf4\x9a\xf8\x5a\xf7\x06\x67\x6b\xc1\x28\x89\x92\x21\x6b\xc8\xc3\x21\x43\x28\xca\xd7\xad\x0e\x44\x1a\x4e\x0c\x3e\x81\x88\xf0\xa4\xe2\x1e\x3b\xa9\xca\xe3\xab\x7e\x28\x8d\x2a\xb0\x1c\xc0\x30\xf3\xb5\xca\x52\xa6\x66\xb9\x18\x0c\x84\x52\x5e\x68\x10\xd4\x32\xde\x6a\x79\x8e\x85\x6e\x98\xfa\xcc\x28\x2b\xb6\x5c\x11\xe2\x1e\x6f\x6b\xc1\x0b\xfc\x49\x98\x27\x51\x47\xab\x37\xb0\xa3\xc9\x37\xaa\x11\xab\x3a\x68\xd7\xb2\x3c\xfb\xb2\xc2\x9d\x5c\xa5\x7c\x86\x68\x6f\x90\x29\x83\x37\x7f\x1a\xeb\x12\x67\x03\x7b\xf3\x30\xd7\xa7\x35\xf3\xc2\x45\xf2\x10\x6d\x27\x7a\x65\xac\xa5\x15\x90\x36\xa7\xf4\x02\x92\x91\x42\xd3\x04\xcf\x3f\x12\x40\x3f\x20\x30\x17\x2c\x34\x63\x35\x60\x70\xae\xa9\x59\xbb\xe2\x78\xa6\x7e\x5d\x93\x38\xb3\x1a\x0d\x7f\x93\x82\x10\x1c\x8a\x4c\x18\x93\x80\x1f\x8c\xd4\xbf\xf7\xd4\x90\xec\x5c\xa7\xd1\xda\x3a\xe7\x39\xb8\xfd\x25\x32\x9c\x38\xc9\x3a\x0d\x84\xf5\xdc\x81\xae\x19\xae\x4d\x72\xe1\xab\x80\x73\xff\x16\xbe\x94\x6f\xb4\xa0\x86\xf1\x53\x80\xc9\x04\xad\xe8\x4a\xbd\x17\x4b\xa5\x61\xff\xae\xa7\x15\xc9\x3e\xa2\x67\x80\xdf\x7a\x16\x63\x2c\x04\x65\xd5\x8f\xa2\x76\x7d\x0f\x7e\x9f\x04\xc7\xaa\xe4\xf2\x51\xc3\x98\x2d\xcd\x74\xb3\xa4\x88\x81\x70\x86\xdb\xf8\x21\xad\x6c\xbe\xae\x95\x1b\x8a\xb1\x79\x8c\x62\x41\x01\xc1\x77\xbe\xf9\x75\x3e\x7a\x8e\xf1\x41\x04\x1f\x1c\xb8\x17\x4c\xcc\x74\x4f\x33\x88\x91\xeb\x88\x0c\xd8\x1d\xac\x1e\xee\xa6\xf6\x9c\x13\x7e\xbe\x54\x19\x10\x14\xf5\xe0\x1d\x7f\xae\x99\x07\x76\xac\x3b\x0f\x90\x13\x68\x98\x1b\x76\x88\x51\xae\xfb\xae\xa7\x8a\x13\x8c\x21\x86\x33\x55\xb6\xa8\x68\xbf\xd8\xcd\xfd\xe5\x28\x09\xfb\x53\x8e\xb5\xe1\x8e\x12\x6b\x81\x9c\xaa\x10\xf4\xb8\xfe\xec\x06\xd1\xce\x8b\x56\x6d\x86\x9e\x45\x0e\x6b\x31\x99\x93\x34\xec\x83\xcc\x1f\x51\x18\xe8\xb8\x31\x12\xa0\x5f\xc7\x81\x35\xdd\xdb\xde\xab\x56\x3d\x23\xb5\x8e\x1b\x95\x11\x40\x64\x0f\x8b\xc4\xd7\x0d\x05\x06\x88\xd2\x45\x61\x90\x4c\x72\x57\xe3\x45\x18\x7b\x1a\x83\xc4\x37\x8d\xd3\x7e\x76\xb6\xb2\xae\xa9\x3f\x04\x55\x20\x7c\x28\x80\xf5\x98\x2b\xa2\x74\xab\xe7\x96\xc6\x41\xee\xec\xe9\xfe\xde\x30\x4b\x62\xe0\x6d\xf6\x3b\x49\x56\x27\xcf\xda\x88\x49\x5e\x98\x3b\xd0\xf5\x2b\x17\x7c\xee\x80\x50\xfa\x23\xbe\x42\xc9\xe7\x7c\xe9\x48\x14\xfe\xc4\x46\x0a\xaf\x16\x69\x18\x8c\xa6\x5c\x12\xe0\x98\x66\xcb\xba\xc1\xbb\x49\x92\xa0\x56\xab\x3c\x1c\x87\x79\xb6\x5b\xa9\xe6\x6d\x2a\xbf\x9b\xf9\x71\x55\xa7\xa6\xec\xce\xc7\x7a\x4e\x3e\x08\x13\x87\xf1\xbf\xa8\xb8\xeb\xfa\x26\x0b\x20\xca\x45\x69\x29\x9c\x69\x5b\xaa\xd0\x74\x47\x1d\x25\x7f\xf1\x85\x75\xb7\x22\x1d\xda\x09\xc7\xe3\xdf\xd5\x4e\xcf\xdd\x36\xfe\xdd\x15\x93\x66\x05\xb2\x61\xac\x18\xa8\x38\x4d\x8f\x29\x21\xaa\xfb\x75\xa1\xda\x88\x3c\x2d\xc9\xc8\x9d\xf1\x6a\x6d\x6a\xca\xb2\xff\x16\xd0\x12\x56\x75\xdc\xf6\x62\x9d\xa0\xdf\x11\x56\x03\x9b\x3b\xf5\xd7\x00\x9d\x46\xac\x76\x85\x27\x03\x48\x80\x37\x4b\x47\xb4\x70\x41\x25\xb4\xd2\xca\xd1\xac\x82\x37\x44\x90\x32\xf7\x34\x09\x7c\x43\x63\x09\xef\xe8\x3a\x25\xeb\xf9\x5a\x7d\x8b\xd2\x78\x77\xe2\x06\x64\x33\x45\xe8\xe0\x8b\x12\x94\xcb\x7e\x1e\x30\xe2\x1b\x5e\x1b\x98\x49\xb1\x9e\xf0\x9e\x08\x85\xaf\xaa\xc6\xa6\xa1\x9f\x8e\x4d\x9c\xc3\x14\xd8\x06\x62\x1b\xb3\x7f\xae\x4e\xdc\x41\x18\x93\x2c\x19\x25\xea\x85\x83\x88\xc2\x10\xe4\xaf\x6f\xa9\xaa\xee\x07\x88\x6e\x44\x99\x91\x96\xab\xf4\x40\x35\x31\xa8\xdd\x81\x9f\x59\xba\x48\x86\x3a\x2a\x56\xea\x8d\x46\xc3\xad\xbc\xb2\x59\x31\xe9\x5a\x3e\xb2\x50\x21\xec\x88\x5b\x4a\x86\xf2\x2e\x2c\x06\x32\xe5\xdf\x57\x4e\xfa\x6a\x18\x3f\xa8\xaa\x76\x3b\xa9\xe4\x80\x98\x62\x2f\xed\x15\x49\xad\x28\xa0\x1d\xde\xc3\x9e\x10\x0b\x56\xb7\x78\x83\x17\x08\x0e\x68\x2e\xd1\xe3\x9f\xee\x69\xac\x30\xad\x1c\x29\x62\x3f\xe2\x60\x0e\x63\x93\x92\x5b\x8b\xf9\xd9\x45\xbe\xa6\xe8\x2a\x28\x30\x28\x77\xa5\x03\xb5\x72\x44\x51\x12\x8c\x8d\x9f\x55\x41\x0e\xe1\xfc\x64\x31\x57\xbf\x25\x0c\x1d\x16\x8d\x44\x42\xb7\x93\xd0\x00\x87\xb5\x45\xb5\xb8\xad\xd3\x9a\xc9\x6b\x62\x75\xe8\xb1\xc4\xff\x84\xac\x17\x5f\x37\xba\xdb\x97\x66\xba\x83\x28\x0c\x0e\xb9\x9a\x96\x44\xb1\x34\x06\x8a\xa4\xc9\xfa\x13\x2b\x86\xa5\x83\x70\x74\xfc\xaf\x34\x40\x30\xc3\x37\x15\x2b\xd5\x14\x0a\x3c\xdc\x5a\x62\xdf\x00\xb2\x8d\x49\x1a\x32\x63\x20\xcc\x02\xd6\x1e\x5f\xab\x8c\x66\x6a\xd2\x42\xf8\x5e\x05\xbe\xa4\xf4\xd1\xce\xab\x9a\xcd\xc4\xf8\x39\x1f\x36\x18\xb5\x93\x9a\xe4\xe4\xa4\x12\xdf\x84\x60\x42\xb5\x6d\xa6\x15\x62\x10\xa8\x63\x21\x5b\x55\xd5\xa3\xb7\x94\x20\x34\xf1\xc2\x58\xb6\x91\x2c\x28\xac\x06\x89\x78\x27\xb4\x8e\xf9\x46\xd5\xd5\x4d\xd4\x37\x69\xb4\xb6\xbb\x3a\x62\x2c\x90\xf4\xa0\x00\x83\xd1\x06\x85\x40\xe8\xb4\xa7\x56\xdf\x1d\xa4\xf5\xf9\x13\x9e\x0b\x9d\x4e\x2b\x3a\xd0\x61\x38\x36\x71\x47\xa9\xbb\xc1\x2b\x92\x1a\x97\xfc\xe1\x4a\x48\x88\x14\x58\x18\xd1\x08\x76\x1c\x02\x9f\x95\x2e\x55\xfc\xfb\xae\xad\x37\x29\x52\xc9\x75\xb7\x75\xc2\xb6\xd4\x10\xfa\xa9\x3f\xb0\xa0\x17\xae\x6a\x29\x0d\x97\xcf\x14\x85\x70\xdf\xe4\x69\x12\xe6\x40\x1b\x58\x8a\x78\x97\xf9\x79\x8b\xf7\xa5\xe5\xc9\xb5\x70\x81\x5b\x18\x25\xcb\xe6\x64\xe1\x82\x17\x14\x4f\x39\xf0\x19\x26\x05\x9c\x10\x7f\x5b\xaa\x4e\xc4\x37\xb1\xc8\x2d\xd9\xd0\xec\xac\xe5\x22\x75\x5d\x0d\x57\x68\x23\xa2\xee\xc4\x1d\x16\x30\x8b\xdf\x6b\x6d\xc7\xaa\x56\xa1\xee\xe5\x77\x6d\x62\x9b\x8d\x83\xb3\x0a\xb3\x0a\x47\xe6\xdb\x46\xe4\xd5\x42\xbf\x24\x45\x85\xce\x36\x9e\x24\x49\xbf\x3a\x8b\x6f\x5e\x31\x69\x10\x66\x66\x2f\x7d\x3d\xf2\xe3\x9c\xa2\xb1\x3a\xd4\x16\xa2\x73\x91\x82\x1f\xab\x0b\xf4\x8d\x39\x76\x20\x6e\x2b\x3d\xbb\x2d\x4f\x61\x31\xef\x00\xb3\x8f\x08\xed\x3f\x94\x56\x54\x20\xec\xc3\x7d\x83\x23\x30\x4d\xb9\x1a\x0e\x9d\x68\x58\xc5\xc5\xae\x86\x95\x9b\xc4\x14\x1a\x38\x9b\xe0\x10\x9e\x52\x1d\xc2\xa0\x5f\x17\x92\x39\x4d\x13\xf0\x84\x96\x67\xf7\x53\x13\xe7\xd1\xda\x2e\x7a\x41\x16\x43\xa4\x4f\xc2\xa1\xb8\xaf\x94\x99\xee\xd3\xaf\x63\x9b\xee\x5e\x77\x15\xb2\x3b\x0d\x32\x45\xc7\xc3\x3f\xae\x7e\x80\xf3\x50\xc0\x48\x5d\xf5\x5c\x9a\x87\x9b\x48\xe1\xf1\x7c\xae\x68\xa2\x49\x20\xc8\x5f\x0e\xa3\x30\xa7\x96\xd8\x39\x3e\x99\xde\xd6\xd0\x07\xd6\x92\x90\x32\x5d\x0d\xaa\x6b\xf2\xa7\x3a\x96\x06\xeb\x2f\x4a\xa5\xbd\x79\x0e\x73\x89\xaf\xf8\xbe\xe7\x5a\xc4\x2f\x7b\xee\x04\xda\xa4\x1c\x13\xdc\x81\x9f\x50\x59\x7a\xba\xa7\x40\x0f\xb7\x3c\x55\x4e\xbb\x83\x13\x12\xfe\xc0\x0f\xb9\xce\x24\x07\xa9\x92\xe8\xdc\xa0\xdc\x88\x05\xf6\xfe\xa3\x7f\x6c\x1b\x54\xe8\x9d\x90\xef\x64\x96\x69\x0c\x38\x33\x15\xc0\x07\xba\x4a\xf1\x9c\xe5\xf5\xb0\x9c\xdc\x60\x1f\x04\x9a\xef\x2d\x6c\x35\x38\x58\x1f\xa9\xc2\x2b\x0e\x10\xf8\x68\x08\xe8\xa7\xc0\x93\xcc\x37\xeb\xae\x1c\x89\xd4\x0c\x5f\xb7\x08\x85\xce\x55\x06\x48\x35\xc5\x6a\x2e\x0e\xc1\x67\xb8\x8c\xe8\xcb\x45\x7c\xe8\xc1\x6a\x2c\xe1\x9e\x7f\xac\x28\xe4\xae\x51\xe8\x06\x5c\x23\x5a\x6e\x90\xd0\xbc\xec\xa9\x66\xdb\x0d\x4c\x1d\x97\x33\x68\x04\xf1\x4d\x08\x30\x31\x73\xef\x21\x53\x81\xa4\xd5\x75\xe4\x30\xf8\xa6\xc1\x5c\x55\x85\x68\x71\x42\xcc\x00\x98\xbe\x87\x7a\xce\x34\xdf\x53\x22\x96\xd7\x68\xbc\x45\x23\xd0\xe1\x85\x86\x66\x0c\x4f\x41\xf4\x6c\xe9\x01\x45\xd0\x76\x1b\xe2\xf4\xa5\x97\xaa\x11\x7b\xac\xfa\x35\xcb\x70\x6d\xdd\xd3\x0f\x71\xee\xc1\xd0\xfd\xb6\xce\x58\xd1\xea\x13\x1a\x48\x97\x35\xbb\xa9\x19\x42\x2f\xe8\x2e\xd7\xce\xba\x62\xd6\x3a\xaf\x50\x38\x68\x32\xc2\xbe\xbe\xe7\xd5\x40\x5a\x9d\x5f\x7c\x81\x7d\xbc\xc3\x9e\xea\x92\xbc\x88\xd3\x13\x47\xe9\x8e\x5e\x35\x08\x78\xf4\xe3\x6d\xb2\x1e\x7e\x94\x0c\x72\xf2\xc0\xf4\xe1\x28\xca\xfa\xad\x8c\x73\x83\xc8\x3f\x64\x24\xc4\xc5\x93\x41\xc4\x4f\x6e\xb4\x2a\x70\x9a\x4c\x4c\x9a\xaf\xc1\x77\xd2\x74\x31\xb0\xb3\xe7\x3c\xc5\x47\x55\x6a\xc2\x0d\xe5\xf5\xa6\xfe\xb7\x28\x81\x22\xaa\x8d\x0a\x48\xd9\x3c\x5e\x9e\x81\xd1\x0a\x72\xad\xd1\x8c\xd5\xcd\xd7\x5a\xa2\xf6\x50\xc8\xbb\x40\x98\x30\x5d\x93\xe4\xa6\x23\xbe\x8a\x83\xd1\x6a\x92\x8e\x95\x2a\x11\x86\x89\xaf\x95\x23\xba\x9c\xfa\x2c\x97\x03\xfb\xf4\x89\xda\x56\x28\xf1\xb2\x2d\x41\xa8\x21\x05\xbb\x16\xf0\x7b\x30\x32\xc1\xa1\xe5\x24\x39\xd4\x51\x79\x28\x38\xf6\x7c\x6d\x9f\x2f\x35\xb9\x9f\xf6\xc5\x4a\x63\x25\xdf\x50\xaa\x61\x1d\x40\xbc\x98\x1f\x55\x59\x69\xd0\x1d\xa3\x6d\xa1\xe3\x7a\xbe\xcf\xa9\x50\xe4\x5c\x63\x03\x3e\xd3\x35\xc1\x28\xa1\x25\x23\xb9\x6a\xc5\x88\x74\xa1\x96\xd2\xca\xc3\xe0\x29\x9a\x54\xc9\xf6\x57\xde\x06\x4e\xf9\x7b\xd8\xf3\x2c\xce\x0c\x2b\x21\x93\x05\x13\x8c\x44\xd4\x49\x2c\x67\x2c\xfa\x3a\xb6\x94\x1e\x13\xd9\xae\xdd\xeb\xaa\xed\xf1\xd1\x75\x1a\x08\x80\x92\x20\xa6\xc4\x94\x15\x30\x2d\xc2\xb1\xaf\xe2\xfb\xdd\xe0\xba\xe6\x9f\x2c\x1d\x1f\xec\x15\xc5\xdb\xc0\xd9\x51\xcc\xfa\xee\x75\xd7\x97\xc2\xad\xa6\x12\x6e\x38\xc2\xda\xe9\x75\x3a\x3f\xc8\x2a\xfc\xe6\xcf\xf7\x1e\xd5\x07\x77\x64\xb2\xdd\x4e\x0a\xfe\x6f\x9f\x55\x95\x0b\xae\x85\x6a\xaa\x4c\x61\x99\x54\x74\x15\x20\xe6\x10\x0e\xcd\xed\x5b\x75\x76\xae\xeb\x8f\x4d\x1a\x06\x9c\x31\x95\xba\x0c\x7d\x81\x80\xf2\xb6\x6f\x9e\xc5\xa5\xc5\x6e\x6a\xfc\x80\x99\x3d\x39\x15\x87\xb7\x93\xbc\x9c\xf3\xb4\x46\x7e\x11\xe7\xe2\x27\x63\xfa\x2f\x2a\x92\xbc\x8b\x4e\x08\xb0\xe8\x0f\x4d\x9e\x69\x6a\x79\xd0\x23\xc9\x89\x5e\xbd\x88\x20\x8f\x9a\x89\x96\xfd\xdd\x41\x98\x66\xf9\x94\x5a\x23\xc7\x54\xa6\xf6\xa2\x6a\xfd\x6b\xd2\x2b\xbf\x30\x77\xa0\x3b\x2a\xd2\xbc\xa3\x5c\x88\x5f\xd6\xdc\x15\xbf\xac\xb2\x05\x87\x92\x51\xb4\x6c\xd2\x61\x47\xe7\xb1\x8e\xd7\xaa\x5f\x0a\xfb\xb9\x94\xac\x52\x96\x51\x67\x16\x61\xdb\x7f\x54\xaa\x1a\xf3\x25\xef\x21\x3b\xef\xa3\x67\x3b\x0e\xbb\xc3\x1b\x47\xf8\x75\xb5\xc4\xad\x89\xd1\x96\x08\xe0\xc3\xe9\xd2\x71\xa8\x31\x09\x27\x5e\x1d\x78\x51\x6c\x01\x10\xbc\xe3\xd4\xbd\x44\x87\x03\x7c\xc7\xdb\x2d\x3c\xce\x07\x67\x9e\xa0\xa5\x07\xc7\xff\x57\x4b\x27\xd8\x7c\x0c\xad\x9b\x98\x8c\x0d\x4f\x11\x1b\xbd\xaf\xd1\x5a\x8b\x64\x5e\x6c\x12\xb8\x7a\x54\x44\xcd\x6f\x29\xe3\xfe\x7f\x63\x98\x91\xc6\xe0\x34\x80\x95\x78\xae\xb6\x1b\xce\xa8\xcd\xd2\xb1\xc5\x81\x63\x17\x73\x79\x19\xce\x97\xdd\xf9\x4e\x71\xfd\x33\xd8\x04\xd8\xc1\xdb\xe4\x3f\x21\x0e\xa0\x5e\xd9\x17\x2d\x99\x54\xe7\xe0\xcc\xd6\xdd\xb6\x68\x2d\x33\xc0\xb8\xd4\xbb\x0b\x2c\xcb\xbb\x76\x80\xfc\x34\xe7\x8a\x10\x92\x72\xe0\xc0\xe0\xeb\xde\xdf\x68\x96\x6e\x29\x7f\x3c\x34\x31\x77\x75\x71\xc4\xcf\x69\x5d\x4f\xa7\x78\x25\x97\x92\x2c\x27\xa4\x13\xee\x24\x08\x68\x45\x8b\x1c\x41\xd3\x03\xea\x8e\x42\xf4\xa9\x23\xe9\xb0\xa3\x57\xf3\x39\xab\xcf\xf2\xe9\x5a\x2a\x56\xfa\x8f\x1a\x03\x71\xe0\xf9\xee\x38\x89\xa2\x70\x00\xb8\x39\x87\x4a\xf4\x88\x12\x36\xd5\x54\xdc\xcc\x2b\x18\x30\x44\x42\xd7\x74\x8b\xda\x35\x75\xa8\x1e\x32\x66\xf2\xe0\xf6\xc2\x8e\xa4\x47\xaa\x87\xc3\xd1\xfd\x03\xb2\xb2\xf8\x1b\x8e\xf8\x61\x34\xcf\x95\xae\x65\x97\x45\x8f\x44\xde\x54\x71\x91\x7c\x57\x11\x63\xdf\xf3\x14\xbf\xea\xce\xf5\xed\x11\xea\xbe\x85\xee\x24\x32\x3e\x92\x05\x12\xc3\xeb\xd8\x5e\x25\x92\xf2\x70\x30\x20\xe7\x52\x91\xce\xab\x86\xb5\x83\x33\x4e\xce\x78\x9f\x65\xa6\x6f\xd4\x05\x7f\xa1\x9b\x9a\x89\x71\x5d\x30\xa8\x1c\x71\xe9\x84\x6f\xca\x87\x55\x2b\x07\xc2\x67\xbc\xf3\x54\xcf\x81\x7e\xa6\xd6\xdb\xea\xe3\xc3\xb4\xb2\x3c\x96\x4c\xe3\xb6\xa7\x88\x1a\xbe\xaf\x72\xa6\x37\xdb\x3c\xbe\x55\x3f\x96\xc7\x82\x45\x39\x5c\x2a\xed\xd7\xc3\xaa\x78\x3d\x4c\x8a\xa8\x4f\xe5\x1a\x57\x3c\x53\x1a\x7c\x67\x68\x02\xc5\xc1\xde\x4e\xd5\xf3\x4c\xd7\xe4\xc1\x74\x65\x86\x30\xc5\x53\xe4\x89\x4a\x6d\xad\xfa\x16\x7c\xf2\x44\x59\x13\x4b\x71\x90\xa4\x43\x91\xa4\xf4\x18\x9e\xa3\xcb\x4b\x1b\x5e\xd3\x51\x5f\x7c\x7e\xff\x03\xaa\x4e\xde\xe9\xb9\x7d\xb7\x77\xdd\x95\xe7\xd7\x35\x39\xc8\x1d\xec\x10\xdb\x39\x7a\x70\x86\x43\xce\xab\xc4\xb3\x81\x3f\x42\xc5\x9e\x55\x2c\x60\xb3\x71\x74\xec\xe8\x39\x1a\xde\x34\xc9\x47\x59\x30\x0a\xa3\x7e\xb6\xdb\xcd\xc0\x65\xaf\xd6\xf8\x44\x3f\x86\x0c\x22\x57\x72\xb0\x7d\x20\x72\x69\xb1\xe3\xfb\x84\x6e\xe0\xaa\x12\xb2\x4f\xcd\xe4\xd9\xdd\x2e\xb1\xb2\x81\x6f\xd6\xe5\x14\x9c\x3d\x47\xe1\x46\x23\xe8\xfc\x9e\x57\x4b\xbe\xd2\xb3\x63\x04\x2f\x29\x64\x52\x6a\x82\x64\x18\x87\xaf\x72\x71\x4d\x31\xab\xed\xb7\x02\x40\x2d\x7a\x19\xc4\x41\x95\x44\x09\x29\x4e\xe1\xc4\x94\x6e\x2b\xfa\xa8\xb4\x64\x59\x56\xdd\x22\x8d\x93\x22\x67\xd2\x40\x71\x90\x15\x81\xec\x75\x62\x89\x46\x29\xba\x4d\x9f\xa7\x9b\x19\x06\x7f\x59\xc8\x44\x35\x06\xe2\x86\xb6\x49\x24\x52\xa0\x3b\xa5\xe4\xfd\x90\x4f\xc4\x84\x7c\xa6\xc1\x7d\xd7\xca\xa7\x9a\xdd\x86\x07\x67\x9e\x7b\xb4\x32\x65\x58\x14\x97\x55\x97\xd1\x75\xda\x67\xd6\x47\x75\x7a\xbd\xb0\x6b\x30\xc0\x97\x3d\x47\xea\xf0\xa6\xa7\xf2\x6e\xd7\x4a\x5d\x36\x28\x55\xc0\x7c\x8c\x3a\x0c\x11\xca\x1d\x05\x14\x0a\xe7\xdc\xbf\x42\xf7\x27\x4e\x85\xb7\x14\xa9\xec\x97\x70\xe8\xa1\xb4\x7e\x05\xc9\x0c\x98\xdb\x3f\xb4\x25\xd1\x51\x91\x1d\x5a\x83\xd6\x69\x0b\x79\xda\x66\x8d\x17\x7d\x90\x4f\x29\xbc\x35\xfc\x52\x78\xdc\xbc\x66\xb9\xdf\xdf\x16\x05\x27\x7e\x96\x19\xb4\xe1\xdb\x10\xad\x7a\x22\xe6\x1d\xd1\x34\x49\x9f\x29\x72\xc0\x30\x0e\x22\xb0\x63\x77\xac\x30\xd1\x19\xfa\x35\xbe\x6e\x95\xca\x48\xe2\x88\xe8\x23\xb7\xee\x56\xa6\x68\xeb\xae\xd6\xd3\x2c\x82\xc0\x64\x19\x11\xc9\xa1\x68\xf6\x3d\x8c\xb9\xf4\x6b\xd2\x30\xf3\x0d\x5e\xc5\x06\x3c\x4b\x33\x96\xde\x40\xf1\x60\x5c\xf6\x14\x03\xd8\x47\x8d\x3d\x60\x1b\x9c\x56\x4d\x3f\xcc\x46\x54\x0d\x41\xce\x94\xbb\x57\xb0\x79\x1e\x22\x83\x2e\xd8\xd0\x9d\x5f\xe3\x6c\xc0\x85\xba\x22\x6f\xb0\xf6\x58\xc7\xca\xc6\x7f\x89\xaa\x29\xb0\xb3\x9f\x22\xa5\x24\xfd\x16\x8a\x5e\xe0\x2c\x27\xab\x60\x38\x3e\xe0\xbc\xb1\xa5\xc2\x59\x9a\xe1\xbc\x31\x43\x55\xad\x66\xa5\x3b\x07\x51\xb1\xc4\x78\xf3\x21\x8c\x07\x98\x5a\xaf\x56\x2e\xfc\xc3\xdf\xa4\x15\x6d\x49\x45\xe7\x0e\x70\x8c\xc9\xa0\x74\x94\xdf\x19\x1b\x2b\x4c\x7a\x2d\x34\xca\x5f\x73\x1d\xfe\x1d\xe7\x36\xaf\xd7\x18\x20\xb7\xb9\xaa\xbf\x50\x6d\x40\xa2\x7d\x85\x0f\x0a\x9a\x15\xbe\x6e\xe0\x97\xe7\x0e\x90\x98\x63\x18\x07\x39\xb3\x47\x20\x03\xfb\x9a\xe7\xb2\xb1\xaf\xb5\xb1\x75\xf7\x8d\xdf\xc7\xaa\xe2\x8d\x03\x66\x13\xbe\x5e\xff\xf2\xb6\x5e\x7d\x2e\x59\x21\x92\xff\x58\x25\x55\x3f\xb6\x5b\x22\x1c\xc6\x21\xe3\xc8\x71\x54\x80\x41\x92\xaf\xdb\xc4\x88\x07\xc2\xb5\x25\xdc\x43\x2a\x1e\x87\x79\x91\x86\x7d\x47\x74\xfd\xbd\x23\x4e\x80\x3a\x59\x31\x20\x94\x50\xd1\x22\x66\x5a\x42\x47\x17\x7d\x06\xa3\x64\x32\xc1\x08\x21\xef\x08\xd9\x5c\xbe\x2e\x9d\x88\x7c\x10\xf9\xe3\x65\x93\x9a\x3e\xe5\xb6\xb1\x7e\x98\x4b\x19\xcb\xe4\xb3\x52\x63\x7e\x4b\xdb\x0d\x75\xb0\xb5\x60\x9e\xe5\x7e\x6e\x98\x40\x19\x06\xf2\xa7\x9e\x52\xa8\xfc\x95\x52\x8b\xfb\xf3\x46\xc4\x43\x1d\x69\x49\x43\x8c\x93\xd4\x4c\x91\x19\xc5\x21\xfa\xa1\xe7\xd2\x58\x6f\xc1\x0c\x4a\x73\x68\x8b\x7a\xdd\xea\xc8\xa4\x46\xa0\xfb\x56\xd7\xf9\x05\xc7\xe8\xe3\x3d\xa9\xda\x14\x86\x05\x14\xce\x70\xb6\x5b\x32\x83\x6a\x5a\x18\x1f\x88\xcd\x23\x72\xf6\x2e\x05\x7b\x93\xd6\x07\x4a\xa1\x2c\xaf\x8e\x74\xd7\x29\xcf\xd1\x33\xbe\x9c\x8c\xe2\x2c\x89\xa7\x54\xeb\xc0\x3d\xcf\xe1\xf5\x20\x4c\x2d\xf4\x27\xae\x50\xe8\x4f\x26\xc6\x8f\xa6\xe9\x97\x95\x3c\xb9\x60\xc6\xb8\xb5\x8f\x6f\xd6\x9d\xbb\x5d\x97\x4a\x09\x57\xcc\x57\xab\x33\x0e\xe6\x1a\x59\x2a\xbc\xd4\x23\x08\x2c\x58\x23\x45\x11\x88\xf1\xf1\xc5\xb0\x7c\xce\xd7\x58\x29\x15\xa7\x14\xcb\x54\x76\x16\x3d\x5f\xbd\x3d\x8e\xb6\x3d\x3d\x62\x1a\x93\x9c\x14\xad\x22\x9b\x17\x75\x48\xb5\x2b\xb5\x38\xd3\x41\x89\x5f\x63\x5b\x07\x5f\xe6\x0e\xe2\x54\x9c\x80\xd7\x28\xff\x82\x47\xfb\x04\x6b\x95\x41\xc6\x34\x8a\x38\x18\xae\x2b\xce\x01\x26\x88\x56\xed\xb3\x2f\xd6\x9c\x40\x84\xd1\xa7\xdb\xdc\x8b\xc0\xcf\xf2\x34\xe9\x38\x7f\x9d\x8f\x55\xe1\xa5\x6e\xc1\x83\x19\x47\x68\x81\x54\x06\x17\xf5\xf8\xa6\x35\x7f\x11\x19\xbf\x0f\xa7\x09\x59\x71\xc6\xff\x59\x29\x18\xc7\x29\xff\x56\x6d\x66\x47\x66\xed\x09\xd5\x33\x76\xa7\xd4\x4b\x80\x86\x5c\xc4\xa2\x1c\xab\x2a\xba\xe9\xb1\x07\xee\x60\x30\xac\x60\x4e\x35\xc8\xa8\x9b\x7d\xa6\x88\xde\xbe\xbf\x0d\x2a\xbc\x34\xb3\xdf\x4a\xc9\x57\xeb\xca\x5a\x0a\xc7\xc8\x70\x4f\x2b\xe6\x3c\xd9\x73\x8d\x67\x53\xeb\x95\xf7\x83\x33\xf4\x9c\xa7\x59\xac\x90\x30\x42\xaa\xe3\x81\x75\xa5\x5f\xf7\x08\x88\xc3\xf8\xb9\x54\x7a\xe6\xbf\x5a\x3a\xd0\x71\x45\xec\x0f\xf0\xfb\xc2\x91\xe1\x9c\xdf\xd8\x24\x93\x11\xa4\xfb\xab\x97\x15\x5a\x69\x7a\x27\x21\x9c\x76\x02\x35\x60\x15\x26\x42\x2a\x58\x1d\x56\x6b\x42\xec\x79\x49\xe1\x8e\x2e\x61\x23\x88\x52\xb3\xca\xe8\x6d\xc0\x3d\xe2\xcf\xdb\x52\xf5\xb2\xc9\x1d\xe8\xac\x4d\x74\x69\xfb\xa9\x31\x3f\xdf\x4d\xc3\x2c\xe8\x28\x0c\x9e\x6e\xdc\xd8\x54\x00\x1d\x70\x1e\xc5\x26\xda\x5d\x2d\x01\x4b\x99\x75\x70\xa6\x96\x61\xc2\x11\x79\x0c\x9b\x9b\x45\xbe\x74\xcf\xcd\xf7\x4b\x9d\xf5\x76\xe7\x09\x31\xc5\x66\x0f\xd1\x90\xc1\x97\xf8\x73\x24\x8b\x18\x71\xe8\xa9\x56\xe5\x7b\xa5\xcb\x82\x33\xd5\x8a\x80\xa7\x68\x7d\xe1\x65\x21\x24\x0c\x83\x70\x16\x78\x1d\xa9\x9a\xd2\x82\x96\x62\x1d\x0d\xa4\xe4\xf5\x1d\xe9\xe6\xe9\x46\x44\xbe\xf8\xfc\xfe\x6e\x90\x8c\x4d\x9f\x05\x18\x85\x3f\xd6\x95\x79\xcf\xd5\x69\xdb\xfa\xfe\x43\xd5\x46\xc0\x83\x32\xb4\x11\xcf\xb6\x73\x5d\xa1\x4e\x79\x7c\x00\xcb\x3f\xa6\x70\xea\xaf\x7b\xce\xee\x83\x40\x89\x89\x96\xf1\x02\xdc\x6e\x4e\x53\xc0\x1f\x2e\x75\x45\x65\x5a\xf1\xd9\xed\x5e\x6f\x91\x6f\x33\x6b\x66\x39\x4d\x56\x79\xd5\xa2\x34\xfb\x86\x16\xcd\x79\x43\x01\xa6\x26\x7e\x35\xfd\xf0\x0d\x60\xa6\x4f\xeb\x38\xd6\x85\x68\x99\x1f\x15\xf9\xcf\x6c\xe5\x51\xea\x77\xc3\xd1\x23\x8a\xd3\xe9\x43\xcf\x41\x3b\xc0\xab\x02\xfc\xd8\x74\xaf\x53\x17\xef\x51\x9a\xe4\xd5\xd0\x59\xae\x18\x07\xe6\xba\x86\xf7\xb0\x55\xeb\x6f\xcc\xf1\xa0\x9e\xc7\x66\x43\xdf\xc5\xeb\xa5\xa2\xbc\xc5\x91\x4b\x47\xe4\xef\xff\x5c\xcf\xf1\xbf\xdd\xd4\x6d\xa5\x7e\x70\x88\x72\x3b\xa8\x0c\x5c\xf7\xbe\x88\x94\xa1\xfa\x38\xff\x8d\xad\xf0\xaf\x89\x76\x01\xf6\xf0\x29\x95\x08\x61\xb8\xb7\x08\x70\xb7\xe5\x1b\xa3\x64\x75\x1b\x9e\xf4\xac\xea\x75\x3f\xab\x46\xf5\xbf\xfc\xcf\xff\x8b\x8e\xeb\xac\xdf\xa4\x33\x8b\xaf\x15\x20\x69\xec\xaf\x2d\x9b\x69\x1a\x3f\xe1\x46\xc5\xea\xb1\xac\xbd\x4a\x2c\xa8\xac\x09\x79\xb9\x6d\x9b\x17\x60\x5f\xb6\xad\x51\x67\xf0\x31\x61\x4b\x6f\x41\x7a\x04\x45\xce\x2b\xce\xf6\x74\x57\x33\xc5\x37\xca\xe0\xf8\xc1\x08\xed\x27\xa4\xaf\x28\x35\x66\xfa\x7a\xd8\x81\x3b\xbc\xdc\xf9\x4e\x8b\x54\x5b\x8b\x18\x24\x51\xc4\x65\x6f\xe9\x0c\x3b\xa6\x38\x5b\x91\xc4\x43\xa2\xe3\x26\x1d\x48\xcc\x46\x5c\x13\x82\xca\x8a\xd4\x8f\x03\xf3\x48\xc7\x72\x59\x32\x14\x00\xa7\x7f\x0d\x18\x7f\x82\xa6\x1e\xbf\xf4\x07\x14\xe9\x60\x2c\x2e\xd1\x41\x86\x5f\x7a\xbb\x86\xc5\xfe\xbf\x4a\x07\x5c\xf9\xb8\x74\xcc\x63\xc7\xb1\x52\xf1\x1b\xaf\x97\x5a\x76\x06\x4e\xe9\x55\x8e\xdd\x9c\x57\xe7\x38\x5a\xe2\x9c\x83\x62\xd1\x5e\x55\xb4\x6e\xff\xb1\x49\x1e\x9e\x86\x1c\xbc\x58\xfa\x43\xcb\x1d\x74\xb4\x66\xd4\x4c\xfc\x2c\x05\xc7\x48\x07\xbd\x8b\x37\xb7\xa5\x39\x0b\x8a\x7a\xc3\xd3\xcd\x3a\xca\x5b\xbf\x5c\x3a\x2d\x56\x81\x97\x8a\xeb\xbe\xdd\x44\xbd\xb0\xd8\x0d\x46\xfe\x78\xc2\x69\xf6\x45\x0b\xd9\xee\x58\xde\xa9\x26\xd0\x67\x7e\xbe\x3b\x4c\xa2\x81\x28\xbd\xdb\xb0\xc2\xd9\x1f\xcf\x05\x27\x7e\x96\x99\xd4\xd6\x9f\x98\x67\x9b\x5e\x43\x38\xb7\x1f\x55\x22\xc5\x45\x2c\x5d\x92\xd2\x03\xe1\x0a\xf9\xf0\x53\x44\x7b\xb0\x7a\x79\x69\x3d\x6c\xd3\xc5\xe9\x87\xfe\xb2\xc9\x99\xa4\xc7\x92\xa1\x3b\x92\x86\x73\xde\x53\x3a\x69\x07\xba\x1c\x49\x73\x48\x29\x5e\xad\x84\xe3\xde\x03\x61\x77\x92\x9a\xc1\xdf\xed\xfe\xfd\xdd\xae\x7c\xf6\x60\x4f\x59\x68\xb0\x8f\x23\xf1\xf2\x30\x4e\x4d\xe5\xc7\xc9\xbf\x5c\x26\x6b\x81\xf4\xe7\x63\xbd\xc7\x95\xd3\xc2\xc1\x21\x06\x40\x71\xcc\xef\xb7\x1c\xf3\xea\x58\xe5\x94\xac\xb0\xa3\x48\x4c\x9b\x26\xc2\x1a\xb3\x60\xe9\xe6\x3b\x96\x2a\xe3\x82\xad\xf6\x4d\xc2\x3c\x18\x19\x80\xfc\x59\x0a\x4e\xe3\x60\x58\x3a\x11\xbe\x63\xa7\xe7\xd6\xbd\x4f\xd2\xd0\xb4\x40\xb1\x87\x6e\xc2\xb3\x55\xa4\x25\x8b\xb5\xd5\x0a\xf3\xf6\x97\x9e\x02\x01\x02\xa3\x03\xb3\x2c\x16\x86\xff\x45\xd9\xd8\xc4\xc7\x51\x88\x92\xe6\xdb\x98\x0c\xbe\x69\x6b\x21\xcd\x7d\x6a\xa3\xb6\x34\x2f\xbb\x7b\xce\x08\xed\x5e\x57\x32\x30\xa9\xc9\x18\x60\xb9\xdf\x29\x40\x54\xce\x0b\x17\xda\x68\xbc\x84\x39\x41\x51\x7e\xff\xaa\xca\x62\x0d\xf8\xac\xe8\x58\x9e\x84\xbb\x64\x63\xf8\xda\xd2\xbe\xe5\x49\x12\x4d\xbb\x5c\x28\x1a\x41\xac\x4a\xd3\xc1\x99\xe7\xb6\xb8\xd3\x45\x8c\xef\x13\x0a\x81\x28\xea\xb1\xbb\xe8\xe9\x74\x12\x19\x9e\xfb\x79\x8f\xc2\x33\x41\x42\x28\x8e\xfa\xdb\xf4\x0e\xe8\x0b\x98\x5e\x77\x87\xeb\xcb\x45\xb4\xb6\x4b\x31\x2e\xdf\xa7\x15\x6b\x9b\x40\x97\x66\x38\xd6\x7b\xb3\x74\x69\xf9\x37\x11\xad\xe2\x10\xdc\xd3\x68\xfa\xa1\x62\x5a\x56\x44\xa4\xfb\xee\x28\x2f\xcf\x29\x61\x8e\x73\x8d\xa8\x6c\xdf\x42\xb7\x98\xac\xfa\x69\x5f\x15\x5a\x8f\xd2\x9e\xe6\x6b\x75\x00\x2e\x9b\xc0\xcf\x8c\xca\x14\x1d\x53\x99\xa2\x26\xa9\xc6\x81\xe7\x29\xbf\x94\x1a\x8b\x7f\x45\xcc\x73\x4a\xe7\xf5\x4f\xa9\xa9\xb4\x1e\xbd\x8a\x25\x3c\xd5\x2f\x71\xa6\xf1\x13\x73\x07\x88\x84\x3a\x37\xa9\xd8\x40\xe4\x4d\xff\x0f\x7a\x67\xbe\xfe\x42\x64\xf9\xd8\xe4\x69\xe5\xe3\x86\x5c\xeb\xb2\x9c\x7c\xd5\x4f\x8a\x13\xb1\x7d\x94\x0f\x3c\xdf\x0d\x52\x93\x41\x31\xcb\x7a\x70\xdf\xd1\x48\xf1\xef\x28\xc6\xb6\x20\x0a\xe3\xca\xf6\x2d\x49\xa5\x04\x98\x6d\xbe\xd6\xe6\x39\x36\x41\x3f\xc9\x7d\xd6\x00\x41\xde\x1b\xf8\x5f\xbe\xde\x5e\xc3\x39\x38\x33\xd7\x7d\x61\xf1\x49\x9c\x8b\xa8\xec\xb1\xc3\x07\x9f\xeb\x86\x12\xcb\xf9\xc0\x53\xa5\xcd\xb7\x61\x1b\x24\xaf\xe2\x28\x92\x6f\x6c\x92\x5f\x01\x1f\xe3\x43\x8a\x6c\x39\xcb\xae\xba\xb0\xfe\x14\x66\x46\x04\x99\x54\x62\x1e\xcd\xcb\xcc\x04\x59\xdf\x4c\x8e\x83\xe8\x6d\x2a\x59\x23\x1f\xc7\x42\xbc\x9c\xc2\x23\xb4\x8b\x5d\x22\x4b\x33\xfb\xb7\x3e\x20\xd0\xcb\xd6\x07\xc8\xe8\xf2\x2b\x36\xe0\xe9\xfb\x16\xd0\x28\xf8\xaa\x75\x19\x11\xb5\x9e\x56\xcc\x8e\x9a\xd0\xee\x15\x93\xed\xed\xa8\xf2\x29\x3d\x28\x41\x7f\xfe\xeb\xbf\x86\x43\x44\x06\x13\x06\x11\x7f\x77\xdb\x71\x5e\xfe\xf2\x57\xe1\x97\x4b\x02\xa6\x63\x69\x22\x4f\x22\x54\x15\x74\xbe\x2a\x13\x44\x0c\xc6\xb5\x3d\xd8\x9a\xfe\xd9\x3d\x9b\x9f\xae\x3d\xae\xe6\xff\x9e\xe7\xe6\x9f\xa2\xbf\xe7\x6c\x31\x91\x26\xc1\x0a\xa7\x2c\xcd\xf0\x43\x13\x9b\xdb\x8b\x96\xf7\x8b\x0a\x22\x22\x91\x4e\xb3\x8e\x84\xd0\x3d\xd8\x28\x84\x55\xbf\x56\x92\xf5\xc2\xd3\x00\x1e\x42\x97\xdf\xff\x05\x8a\x45\x10\x97\x5c\x2b\x6b\xb4\x95\x8e\xa9\xf2\x21\x0c\x06\xec\xed\x1e\x20\x78\x2c\xe2\xc6\xd2\x62\x23\x11\x8e\x81\xb9\xd9\x08\x37\x97\x66\xba\x26\x22\x11\x2a\x9c\x97\x0c\x62\xa0\x47\x11\x40\xc3\x63\x0e\x5e\x16\xf6\xc1\x05\xac\x08\x2c\xf1\x44\xc2\x66\xe9\x10\x24\xfe\x98\x0e\x56\xc6\xb1\x96\x9d\x17\x44\x5f\x9f\x2d\x0b\xf3\xdc\x28\x14\xbe\x9f\x65\xc5\x18\x45\x30\x01\xe9\x5f\xd3\x07\x11\x4d\x37\xc2\x9d\x0f\x1a\x06\xe9\xe0\xcc\x62\x77\x58\x10\xbc\x8c\x73\xea\xd8\x0e\x50\x35\xe4\xeb\x16\x15\x84\xfd\xdd\x65\x3f\x3a\x24\xaf\x8f\xa3\xf2\x4a\xa9\x14\xdc\xaf\x34\x32\xba\x73\x07\xba\x7d\x83\x26\x63\x89\x69\x1c\x44\xf4\xac\x12\xb3\x59\x2e\xa2\x28\x09\x0e\xd1\x5f\x62\xab\xdd\xd6\xfb\xee\xb6\x13\x65\x32\x7e\xc6\x52\x92\x0e\x17\x7a\xc4\x73\x40\x8b\x23\x2a\x3a\xcc\xc3\x3c\x99\x72\x04\x1d\x2c\x5b\x8e\xa2\x21\xba\x8b\x50\x34\xbc\xde\xc8\x6c\x3f\xfd\x74\x77\x62\x62\x5b\x55\xc7\x2e\xfa\x63\x58\x15\xbe\x51\xbd\xa9\x2b\x66\xe8\x33\xf2\x4b\xe8\x57\x9d\x4b\xfc\x07\x70\x8e\x90\x3a\xbe\xac\xcd\xda\x86\xca\x29\x5f\xd6\x79\xe4\x8d\x16\xee\x97\x17\xbb\x59\x31\x81\x02\xa9\x05\xb5\xc0\xf4\xf2\x75\xe3\x1d\xf6\x2d\x74\x27\x49\x14\x66\xa3\x29\x07\x3d\x79\x4b\x81\x24\x7e\xbf\x54\xa1\xe1\xbb\x8d\xd2\x4b\x75\x88\x24\xe3\x49\x64\x48\x24\xd3\x09\x46\x1d\x57\x6c\xb2\xc7\x1b\x86\x6e\x7e\xbe\x9b\x9a\x6c\x92\xc4\x99\xb4\xb8\xb7\x65\x1c\xb6\x7f\xca\xaa\x2d\x8d\x8a\x6c\x4f\xe7\x9b\x5f\x77\x74\xbf\xf3\xf3\xb6\x69\x42\x71\xf0\x6e\x95\x9d\x5f\xda\x6f\xf5\x3f\x6c\xa6\xf3\xd9\xbf\xd2\x73\xd9\xc1\xbb\xa5\x92\xc0\xdb\x68\x23\x54\xf0\xd3\xd4\x8f\x87\xe4\x46\x77\x1c\xd0\xeb\xae\xe7\xf2\x54\x77\x1b\x4f\x3a\x77\x40\xe8\xf0\xc4\x90\x73\x91\x96\xde\x4f\x0a\xb6\xae\x97\x71\x58\x98\x34\x0d\xa3\x48\x7a\xd0\x85\x43\xd3\x75\x18\x9e\x6f\x6c\xd0\x6a\xab\x15\x79\x18\x91\x1c\x5f\x47\xa5\xa9\xe0\x23\x7f\x51\xee\x90\x24\xa4\xfc\x94\x16\x3c\x0c\xed\x15\xaf\x0e\x75\xb1\x24\xbb\x1f\xab\x27\x2c\x62\xa8\x0d\xe7\x6b\x74\xe2\x70\xdb\x67\xa9\xd1\xbd\x18\x7a\xdc\x4c\xf7\x54\x1e\xe9\x56\xe9\xea\xbc\xdc\xd0\xc4\x2c\xbc\xa5\xf2\x9f\x3e\x57\x10\xee\x1b\x9e\xf6\x59\x73\x93\xa6\xa8\x70\x59\x66\x72\xc0\x70\xf9\x5a\x69\x50\x11\xa1\xe7\xc3\x75\x49\xdb\xea\xe5\x80\x2d\x3e\xac\x44\xa7\xff\x44\x53\x21\x1c\xd6\xfd\xe4\x47\x3c\xc7\x77\x8c\x46\x44\x25\x67\x25\xeb\x06\x24\x8d\xf8\xa3\x1d\xe8\x85\xb7\x5a\xe5\x4b\xe2\xe6\x81\xcf\x09\x58\xdc\x87\x7a\x36\xd8\xfb\xa5\xaf\xba\xf4\xc5\x23\xeb\x4e\x59\xeb\xae\x16\x1e\x7b\x82\xea\xb0\x88\x4d\xbe\x5d\x3a\x42\xb0\xdb\x7c\x96\xa3\xe0\xf4\x28\x32\x1a\x38\xf0\x6e\x7a\x4e\x34\xf4\x12\x80\x76\xb6\xa2\xf6\x82\xed\x8a\xbb\x40\xb1\xa2\x9d\xb3\xca\xd6\xa1\x72\xc7\xb6\x94\xde\xf5\xee\xdf\x42\x09\x89\x53\x16\xa5\xc2\x24\x76\xd6\x1d\xec\xfe\x4c\x59\x79\x3a\xc2\xa7\x5b\x6d\x49\x21\x04\xa4\xe9\xb7\x7a\x7a\x73\x07\x9c\x72\xd5\x2f\xed\x77\x3d\x89\xd5\x09\x8b\x9c\xde\x19\x9d\xd1\xfd\xbc\x35\x3f\x90\xaa\x54\x1a\x16\xeb\xeb\xa5\x2b\xca\xbd\xde\xb0\x86\x73\x07\xba\xc9\x2b\x61\x3f\x7c\xd5\xa4\x53\xd5\xf8\xb1\x86\xae\xd2\x10\xbc\xa8\x8e\xe5\x73\x6a\xb1\x07\xc9\x78\x1c\x66\x59\x98\xc4\x7b\xd4\x91\xeb\xd5\xba\x4e\x15\x23\xd7\xb7\xb1\xf2\x11\xd8\x5e\x2d\x15\xa1\xd4\x69\x15\xbd\x5f\x26\xb7\x03\x8b\x64\x67\xef\x31\x95\x8c\x4b\x97\xc3\xd8\x28\x40\xe9\x4d\xcc\x0a\xbe\xe2\x70\xe9\x70\x95\x3b\x1a\x12\x4b\x2f\xbd\xd4\x9d\xa4\xc9\x78\x02\x5a\x6d\x5e\xe5\x9a\xca\x74\x53\x71\xfe\x37\xbd\x15\x42\x85\xa5\xb1\x1d\x56\x54\x20\xdf\x57\x6d\x5c\xef\x2b\x84\xc8\x28\x99\x80\x31\x0e\xcb\x1e\xf4\xd6\x7c\xdd\x98\x31\x12\xa9\xf6\x87\xa6\xbf\xd6\xd1\x5c\x3a\x9b\xaa\x0a\xb0\xd9\x38\x4d\x16\x16\xba\xc6\x4f\xc7\x7e\x6a\x45\xd8\xb6\x8e\x57\x26\x73\xeb\x78\xb9\x57\x52\x83\xbb\xa6\xf6\xff\x93\x6f\x70\x0a\xe0\xb6\xb7\xf3\x6b\xbc\xac\x6f\x2a\x00\x09\x96\xa8\x25\xb8\x55\xcc\x57\xca\x54\x8c\xc3\x3c\x45\x6c\xaf\xe0\x11\xae\x9c\xf2\x94\x73\xa3\xdc\x01\x80\xd7\x47\x5d\xea\x88\xae\x6b\x1d\x51\x42\xa7\xb1\x9f\xe5\x60\x3b\xb4\xad\x0e\x0a\x98\xb9\x7d\x06\xe7\xe7\xbb\xd9\x28\x1c\xf0\x57\x5b\x6f\xb7\x9a\x41\xa1\xbf\x55\x12\x7b\x45\x10\xa2\xea\x68\x4d\x95\xe5\xc4\x38\xd2\xa8\x20\xce\xcf\x77\xcd\x2b\x79\xea\x77\x1c\xf6\x12\x44\xcc\x7c\xad\x02\xe2\x98\x8a\xdc\x7b\x69\xcf\x5b\x3f\xb4\xf2\xb8\xb1\x08\xa6\x7a\xb4\x22\x85\x29\x87\x6c\x0e\x3c\xe0\xb3\x5a\x46\x5d\xf3\x83\xde\xc1\x3e\xe0\xbf\x52\x2d\x6d\x3f\xb5\x1a\x7a\x55\x44\xed\x8f\xa3\x30\x46\x07\x1d\x4c\x12\x34\xe8\x90\x26\xe8\x10\x1a\x43\x60\x61\xae\xaf\xa1\xc9\x6e\xbc\x6f\xa1\xbb\x3a\x4a\x28\xb3\xa1\x41\xef\xa8\x3f\x09\x64\x62\xfb\x87\x5e\x7a\xa9\xfa\x6f\xba\x66\x97\xbf\xf5\xad\xd5\xa6\x6f\x01\x52\xc6\x61\x30\x32\x1d\x05\x5f\x43\x77\x86\x10\x11\xe9\x42\xec\x20\xcf\x76\xa9\x52\xc9\xf9\xd2\x01\x0d\x2f\xe2\xd8\xc5\x11\xf9\x47\x48\xc9\xb2\x4e\xaa\xe7\xda\x10\x4e\xd5\x7a\x6a\x08\x62\x9c\x29\xfa\xa1\x37\xe9\x4f\xf9\xba\x7c\x52\x09\xe6\x67\x41\xb2\x42\xa4\x63\x1d\xb2\xfd\x88\x0e\x20\x6c\xc2\xd7\xa5\xc3\x30\x06\xc9\x64\x8d\xe4\x34\xaa\x68\xa1\x7a\x2f\x71\x85\x5d\xd2\xf8\x96\xe2\x41\x3e\x5e\x6e\x87\x3f\x8b\x6b\x46\x0f\xb8\x62\xe2\x6a\x35\x4d\xb9\xae\x19\xd6\x4e\x63\x1c\x66\xa9\x3d\x3e\x15\xce\x3e\xfb\xc2\xb3\x8a\x7c\x70\x53\x27\x22\x36\x6d\x32\x32\x4f\x26\x13\x4e\xc2\x28\xe2\x67\xa1\x63\x3b\xe3\xb9\xb4\xe2\x4a\x48\xfc\xc7\xd5\x88\x63\x6a\x2e\x63\xc4\xf9\x46\xb1\x6b\xd7\x55\x6c\x1f\xab\xf5\x6e\x87\x2b\x66\xaa\xee\x8d\xdb\xa9\xbe\xae\xc2\x94\xa3\x5f\xe8\xad\x66\xfe\x5a\xc6\xe4\x4c\x42\x1b\x56\x1d\xc0\x38\xbf\x41\xb6\x61\x5f\xb8\x3a\x60\x90\x8a\xff\x39\xe0\x9f\x71\x52\x72\xe1\x11\x16\xf9\x9a\x8d\x72\x72\x9f\xb2\x4c\x8e\x76\x04\x8f\x78\x49\x07\x09\x97\x74\x56\xaa\x08\xa3\xbe\x49\xb7\xad\xdc\xf9\x79\xbb\x72\x5d\xe8\x98\x44\x6b\xe3\x49\xc8\x15\x66\x61\x8c\xd1\xbd\x11\xa7\x95\x55\xa2\x8e\x25\xb4\x2d\xc0\xca\xfe\x2e\x56\x33\xe2\x3d\x0d\x98\x66\x10\x1b\xde\xfd\xdd\xd2\xa9\x3b\xfd\x2e\x19\x08\xfe\xff\x0d\xb8\xdd\xbe\x85\xee\xc8\x8c\x93\x34\x1d\xf9\x8e\xac\x43\x02\xd7\xea\x83\x7c\xad\x1a\x3a\x82\xd4\xf4\xc3\x3c\x49\xa9\xec\x67\x51\xb0\x2f\xb8\x1b\xcf\xd1\xe3\x5d\xa0\x27\x14\x6c\x5e\x1b\x19\x70\x3e\x22\x01\x95\xa9\xca\xb5\x43\xd6\xf5\xa8\x92\x04\x39\x4b\xcb\x47\xfa\x16\xb5\x9a\x52\x18\x1f\x42\xbf\x05\x0b\x65\xd3\x82\x81\xef\xd1\x59\x77\x31\x16\x23\x06\x60\x00\x19\xe7\x65\x75\x3b\xf7\x2d\xb0\x17\x86\x15\x0b\x67\xf9\x07\xe4\x53\x31\x9d\x34\xd5\x49\x39\xf5\xed\x39\xca\x18\x30\x34\xa3\xd3\xec\x1c\x12\x23\xc2\x3f\xad\xb8\x46\x76\xf4\x34\xd8\xe2\x43\xac\x41\x2c\x08\xc6\xe0\x63\x41\xde\x44\x9e\xc5\x26\x86\x17\x9f\x17\x28\xe1\x9f\xea\x1e\xc0\xe9\xf5\x56\x6e\xeb\x28\x0c\x0c\x2c\x0b\x20\x39\x17\x55\xa7\x19\x5c\x69\x3c\xda\x65\x4b\xf2\x66\x11\x77\xa4\x38\x87\x52\xe6\xd6\x69\x35\xc3\x2b\x49\xe4\xe7\x61\x64\xd0\x00\x8d\xb3\xe5\x9c\xea\x97\xd1\xc0\xbb\x5f\x56\x6c\xd4\xc7\x28\x7f\xc3\x7f\xaf\x18\xc6\xaa\xf5\x15\x52\x7c\x2e\x88\x5c\x8d\xc4\x62\x7a\x79\xab\xdf\xe6\x48\x67\xe1\xd1\x28\x4a\x17\x51\x98\xbd\x57\xba\x82\xdd\xd8\x8f\x7d\x71\x21\x68\x41\xf0\xb4\x28\x4d\xb6\x73\x2a\xc9\x76\xc8\x18\x2a\x9e\xcd\xe9\xa8\x69\xc1\x72\xe6\xb7\x00\x92\x72\x3f\x1d\x9a\x7c\xca\x1d\x2f\xef\x95\x8a\x4b\xe1\x98\xe2\x4e\xbe\xa0\x93\x74\x2f\x23\xed\x02\xaf\x74\x47\x4f\x71\x58\xec\x58\xd7\x05\xff\x6c\xb7\xab\x76\xde\xd3\x28\x96\x6b\x18\x0a\x64\x16\xff\x2a\xd1\x92\x60\x5d\x5d\x70\xed\xaf\xff\xfb\x13\xc8\xa5\xc9\x92\x7e\x4c\x11\x3c\x15\x59\xc8\xf0\x04\x06\xc1\x7b\xae\xa1\xf9\x5c\x63\x2f\xce\x1d\xa8\xc2\x80\x22\xee\x17\x93\x8e\x02\x2e\xd2\x67\x04\xc4\xd8\x82\x1e\xff\x56\xc1\x6d\x33\xd8\xe3\x1f\xb1\x25\xe3\x8a\x47\xe9\x7e\xf1\xb4\xee\x0f\xdb\xd1\x73\x0f\xba\xe2\xa7\x61\xc2\x32\x95\xec\x8f\x90\x6f\xb1\x75\x4e\x09\xb0\x5d\x2e\x15\xab\x36\x83\x6a\x05\x74\x5d\xad\x39\xcb\xeb\xee\x22\xe0\x3b\x0a\xbf\x8f\xee\x43\x14\x72\x6e\x7b\xdb\x30\xe9\x4b\x33\x84\xa4\xdd\x43\xbf\x80\xc5\x7b\x17\xdb\x18\xd9\x84\xd7\xe9\x8b\xa4\x0f\xd7\xe5\x0d\x8e\x54\x6f\xb7\x75\x51\xf3\x65\x5d\xd2\x6d\xef\x9a\xaf\x71\xd9\xfc\x4c\xa1\x2c\xe7\x2e\x84\x63\x92\x8c\xaf\x96\xf3\x2e\xe7\x40\x6f\xc0\xdb\xc2\xf4\xff\x0f\x65\x5d\x17\x6a\x69\x86\xd1\x51\x1b\x75\x74\x54\x1b\xd2\x7b\x10\xf9\x43\x94\x8e\x85\xfd\xa3\xa3\xf8\x42\x5a\x24\x2a\x40\x44\x2b\x69\x38\x86\xfb\x97\x8a\x32\x63\xc3\x1e\xea\x41\xea\xc7\x87\x50\xfc\xb1\x90\xd5\x0b\xb5\xdd\x51\x6b\x63\xcd\x93\x69\x57\x82\xfb\xbd\x52\x09\x1b\x7c\x5a\xba\x3a\xdd\xef\x69\x68\xee\xa7\x6a\x7f\x2d\x17\x50\x5c\xb1\x30\xd3\x6a\xe3\xc0\x87\x3d\xa1\x70\x0b\xe0\x9a\x46\x18\xdd\xa4\xc0\x9b\x9d\xed\x06\x51\x42\xbc\x41\xd3\xae\xab\x80\xa1\x93\x02\xab\x73\xe6\xf4\xc1\x9e\xeb\x73\x38\xda\x66\x2a\x46\x8e\xcf\x9b\xc9\x03\x3d\xf7\x8e\x2f\x35\x3e\x41\x00\xee\x41\xc8\x5d\xd0\xbc\xaa\xe8\x13\xb2\xc2\x14\x10\xdf\xe4\x39\x29\xe0\x56\xa1\x83\xf6\xdb\x61\xe2\x80\x08\x82\x1b\x73\x45\x2b\x78\xff\xb4\x2d\x7c\x5c\x0e\xfb\x7d\xcb\x95\x84\xed\x02\xef\x4b\x34\xe1\x5c\x21\xee\xb7\x6d\x4c\xb1\x5c\xa4\x7d\x13\x67\xc9\x98\x41\x32\x96\x5e\x68\x49\xb2\x82\xef\x95\xae\x7c\xbf\xa5\xb0\x85\xc7\x14\xbd\x46\x6a\x20\xc7\xe3\xc7\xd3\x4a\xa6\xeb\x0e\x16\x38\xef\x3e\xfa\x1a\x5c\xe3\xbd\x80\x67\x9a\x5e\xb7\xf2\x5c\x45\x8a\x55\x06\xf0\xc9\x9e\x9e\x03\xa2\xec\x59\xd7\x18\xe3\x2c\xf7\x8b\xd4\xa7\x2a\xbd\xa3\xe8\x3f\xab\x98\x0b\xcf\x7a\x4e\x7c\xfa\xb4\x9a\xac\xd3\x8e\x12\x75\x14\x4e\x22\x3f\x1b\x29\x96\xf6\xd7\x60\x99\x45\x06\xb7\x85\x99\x7a\xe0\x67\xc8\x1b\x38\x99\xa5\x45\x6b\x46\x95\x06\x84\xf7\x55\x57\xdb\xeb\xaf\x98\x34\x0f\x33\x41\x15\x54\xcf\x2b\x8a\x78\x0e\x35\xf3\x3a\xbc\x0d\x8d\x87\x13\x09\x3d\x17\xcd\xbc\x9c\xc4\x7e\x3e\xf2\xe3\x29\x0d\x27\xb9\xa5\xa1\xc2\x4c\x5a\x85\x71\x9d\x6a\xec\x8b\x03\xcf\x77\xb3\x71\x92\xe4\xa3\x08\x72\x0b\xc8\xb9\x9d\x57\xad\x3a\x57\x95\xbe\xe3\xfb\x2a\xd0\xf8\x7b\xcf\xfe\xfd\x4e\xe5\x83\xe3\xd4\x42\x45\x83\xaf\x6b\xad\x19\x93\xd0\x74\x34\xdc\x78\x53\xf7\x51\x6d\x7a\xae\x8e\x93\xe5\x4a\x5f\x4b\x0c\x55\x47\xd1\x17\x3d\xa1\xb6\x88\x94\x26\xd0\x9c\xa4\x65\x82\x91\x4e\x7a\x1b\x66\x46\x0a\x15\xca\xcf\x4e\xfd\x70\x48\x07\x31\xac\xda\x4e\x5a\x51\x56\xdd\x75\xd6\x89\xff\x74\xbe\xf9\x75\x8b\x5e\xae\x86\x03\xa6\xe5\x33\x4d\xd9\x77\x5e\xa1\xfd\xc7\x26\xcb\x4c\x15\x48\x74\x1c\x63\x4d\xbd\xe3\xa2\x8d\x81\x3c\xf6\x97\xab\x28\x93\x47\x48\x24\x96\xe9\x27\xf8\xc6\xb3\xc4\x8c\x66\x92\x85\xb4\xd4\x10\xa6\x7d\xa8\xd1\xd2\xf7\x35\x4f\xd8\x54\x4f\xe9\xf5\x25\x93\xd0\x4f\xd7\x10\x40\x23\xb7\x75\x9d\x36\x2c\xa2\xa2\x1d\xc8\x7d\xe2\x50\xdb\x50\x2c\x1c\x3b\xd6\x15\xf1\x4c\x33\x30\x3b\xf0\x7c\xf7\x5b\x85\x9f\xe6\x26\xad\x16\x8e\xed\x95\x01\x23\x96\x9c\xe4\x16\x54\xf8\x77\xb7\x1a\x59\xb3\x2a\x1c\x29\xc6\x45\xc4\x2a\x45\xb0\x67\x97\x34\xfd\xff\x25\xef\xcb\x4a\x9e\x30\xce\x4d\xdc\x27\x08\xce\x73\x7c\x42\xd3\xa9\x6c\x31\x62\xce\x1e\xfd\x65\xa9\x2c\xc0\x05\xd5\x91\x39\x31\x7e\x56\x59\x88\x3d\x9d\xd9\x59\xf6\xe9\xae\x79\xea\x2d\x2f\x2b\xae\x80\x7b\x9e\xa3\xdd\xba\x56\x6a\xb7\xc7\x85\xae\x77\x29\x19\xc9\xda\xa9\x0a\x82\x16\xf8\x45\x66\x90\x8a\xe2\xa2\xb2\xda\x1c\xe7\xac\x4c\x64\x96\x1b\x13\x8d\xfd\x43\x55\xe8\x49\x67\x9a\x98\x50\x85\x3e\x38\xd6\x38\xdb\x9f\xe9\x4e\x8a\x6c\x84\x6d\x62\xa7\x47\x2b\x03\x1c\x55\x7b\x34\x37\xc1\x54\xb5\x8c\x59\x8b\xb8\xb4\x19\xbd\xff\xf6\x89\x9e\xa2\x32\xf8\x72\x03\x22\x3b\x77\xa0\x3b\x32\xd1\x24\x32\x19\x18\x1a\x25\x8f\xe2\x52\x82\x77\x15\x4d\xd2\xa5\x96\x16\x91\xa5\xae\x9f\xe7\x45\xcc\x48\x26\xac\x2f\x10\xd3\xdb\x56\xac\xea\x99\x11\xb1\x5c\x6c\xa4\xdd\x0e\x3c\xdf\x35\xdf\x2a\x7c\x80\x2a\x2c\x80\xc1\xa6\x94\x6e\x58\xa3\x1d\x27\xb1\x59\xa1\xb2\xd2\x36\x2e\x01\xbe\x6e\x0c\xe0\xfc\x7c\x37\x36\xe1\x50\x4b\x73\x42\x16\x5e\xba\xf9\x5a\x32\x5c\x79\x38\x0e\xfb\x21\x27\x24\x51\x73\xf8\xb6\x22\x68\xfc\x76\x5b\x42\x32\x35\x99\x94\x10\xdb\x54\xcc\x15\x7d\x55\x32\x36\xab\x23\x3f\xdf\xab\x6a\xf0\xbb\x00\xcb\xb7\x9d\x48\xce\x33\xd2\xdd\x06\x4c\xa9\xa1\xe5\x88\x11\x19\x3e\x41\x46\x0d\x40\x81\x5d\xd8\xc8\x02\x37\x69\x13\xa0\xcd\x26\x26\x08\xfd\x88\xda\xe8\x5d\x32\xc6\x73\xb5\xe4\xa3\x8a\x80\x2d\x89\x4d\x1e\x8e\xa1\xa2\x68\x5b\xa0\x5d\x4f\x13\x72\x99\xdc\xa7\xa9\x04\xd7\x72\x13\x99\x61\xea\x4f\x46\x9c\x77\x42\x40\x7c\x94\x56\x04\x5f\x97\xdb\x89\xb4\xaa\x67\x5b\x0e\x89\xc0\x30\x8e\x85\xfd\x4f\x22\x87\xea\xf7\xc5\x3b\xfa\x22\x5e\xd2\x70\x4c\x65\x5c\x85\xa6\x07\x51\xa4\xc8\x81\xb7\xa0\xd5\x48\x1a\x9d\x7e\x08\x1d\xd6\x47\x54\x47\xbf\xe6\x5f\x5c\xa5\x8c\xb6\x64\x26\xb1\xbe\x6f\xa8\xc4\xc1\x5b\x35\x31\x33\x9d\xf7\x53\xfa\x2a\x0f\xae\x37\x90\xf6\x4b\x8b\x04\x7c\x32\x29\x5a\x56\x30\xe9\x5c\x4e\xc7\x1c\xde\xf6\x94\xd6\xfb\xa9\x72\x7b\x9e\x67\xee\x40\x97\x18\x1f\x73\x3f\x8c\xad\xe7\x27\xd9\x5b\x07\xfc\xeb\xd0\x12\xe1\x0e\x20\x85\xf5\x8c\xaa\x18\x38\xdd\x4d\x3f\x81\x42\x12\x6b\x4a\xf2\x0d\xd6\x22\xcb\xb8\xa2\xa4\x05\xc7\xee\x96\xda\x10\x67\x4b\x27\xdd\x74\xbc\x31\x3b\xb3\xb3\xdd\xe5\x24\xee\x8f\x92\xa8\x6f\x6d\x9f\xc4\xbb\xaa\x05\x5d\xc7\xd8\x0b\xd5\xaa\xb1\x14\x6d\xe7\xeb\x52\x0f\xcd\x25\x5d\x9d\x17\x83\x30\x0b\xfc\xbc\xde\xbe\xac\x55\xbd\x18\x56\x29\x4a\x5b\xdb\xd7\xde\x81\xe7\xbb\x63\x3f\x2e\x06\x7e\x90\x17\xa9\x49\x99\x7e\x45\xd4\x0a\xd5\x82\xbf\xec\xe9\xd2\x4c\x53\x67\x64\xee\x40\x37\xf5\xe3\x7e\x32\x66\x1c\x05\x6a\x5f\xc7\x94\x4a\xca\x31\xc5\xaf\x15\x99\xfe\x5e\x17\x86\xbc\x59\x2a\x02\x84\x6b\x0e\x8a\x33\x7d\xb7\x86\x9f\x51\x78\x7f\x2e\xa8\xc0\xca\x5c\xf3\x1c\x3f\xf5\xbd\x9a\xec\xfa\x8f\x54\x0e\x68\xec\x87\x51\x9a\x24\xcc\xeb\x25\xbc\x91\x35\xfd\xf2\xbf\x62\x21\xe5\x45\x4c\x85\xe4\x95\x24\x2a\x88\x9f\x23\x05\x76\x5a\xb8\xdc\x9c\xe7\x7c\xca\xfa\x2d\x7e\xbf\x88\xe0\x22\x0b\x2f\x4a\xc7\x4a\x31\xfc\x2f\xe4\x20\x89\xa7\xfa\x55\x15\x3b\x8c\xc0\x7f\x47\x25\x95\x69\x07\x89\x38\x5c\xe7\x3a\x72\xbd\x63\xbb\x7a\xae\xe6\x7e\xa5\x11\x09\xed\x5b\xe8\x0e\xfc\x28\x33\x0c\xf5\x16\x36\x9e\x6a\x3e\x84\xa6\xc7\x85\xf0\x43\x13\x9b\x6c\x0f\xfd\x8e\x45\x9b\xbe\x30\x77\x80\xc3\x0e\x34\xd7\x58\xf4\x8f\x65\x1b\xb8\x5e\x6a\xe0\x2a\x2f\x0a\x81\x19\x6b\xc0\x90\x84\x36\x2b\xe1\x8a\x3f\xed\x5a\xa1\xce\xd3\x21\x84\xc9\x82\x9a\x2e\x72\x9c\x47\x4b\x85\x00\xbb\xd5\xd8\x4c\x07\x67\x16\xba\xfd\x30\xa3\x56\xba\x02\x49\x20\xf6\x4d\x15\x52\xe7\xbc\xb2\xdf\xcb\x61\xb0\x16\x44\xe2\x93\xc3\x4b\x7a\x5b\xbb\x4c\x6f\xeb\xec\x6b\x1a\xfa\xd1\x6e\xe7\xfe\x5c\x57\xb2\x93\xbf\xa6\x90\xe5\x97\x90\x46\x41\x32\xe8\x9e\x82\x2a\xfc\x9a\xa7\xba\x3b\x9a\x79\xa5\xa5\x99\x6e\x1e\x8a\xcf\x2f\x8c\xc9\xb4\x2f\x85\x4b\xb9\x85\xf0\xbb\x6f\xaa\x97\x5d\xc3\x7a\x15\x9d\x95\xea\x19\xf9\xba\x41\xb2\xb9\x6f\xa1\x3b\x4c\xa2\xfe\xb4\x66\xda\x52\x82\x0e\x08\x01\x6c\x7f\x6e\xf5\xeb\x92\xd8\xdf\x96\x40\x9a\x9f\x5f\xaa\x0e\xa5\x69\xd5\x17\x79\xb6\x54\xd9\xa4\xcb\x4a\xac\xf8\x5d\xcd\x57\x72\xa2\x6d\x45\xf6\x4d\x06\xf5\x69\x9b\xc3\xe6\xe4\x21\xdf\x34\xd8\x4b\x66\x67\x51\xe6\x9c\x72\x14\x69\xcc\x5e\x62\x63\x16\xeb\x9c\x3a\xed\xec\xbe\x99\x28\xd0\x2d\x66\x65\x67\x4f\xd1\x87\xee\x54\x59\xca\x45\x9f\x8f\x4b\xe4\x04\xde\xc7\x4b\xf0\x8d\x4a\xae\x56\x61\xef\x74\xe5\x47\xc3\x9b\xbb\xe1\xe9\xd3\x0a\xc6\x83\xff\x85\x9e\x49\x8e\xb1\x16\xe3\x38\x48\x43\x13\xf7\xab\x28\xc2\x8a\x6b\x01\x8c\x84\x1f\xdd\x4d\xe5\x4b\x14\x4d\xb7\x14\x77\xef\xa1\x62\x8c\xc4\x80\xad\xf6\xba\x84\xa0\xa3\x0e\x0e\xc2\x34\x28\xc6\x2b\x0e\x1f\x88\xea\xd1\x15\x3c\x21\xdf\x34\xf6\xd4\xfc\xfc\xfe\xee\xc4\xa4\x83\x24\x1d\xdb\x4a\x09\xca\x4b\xaf\x29\x8e\xea\xd7\xd4\x70\x8c\x7c\x42\xd6\xb8\x4a\x9b\xae\x48\xb5\xf4\x4f\x27\x45\x4e\x02\x2c\xbb\xd4\xb0\x7d\x4a\x6b\x18\xcb\x90\xe1\x44\xfa\x64\x15\x16\x35\xdd\x9d\xe5\xc2\xda\x49\x91\x66\x3f\xa3\x10\xaf\x84\xd4\x2a\xa7\xe5\x81\x2a\xce\x65\xc0\x6f\xa9\x54\xef\xf0\x4b\x38\x7e\x77\x53\xcb\x33\xff\x7f\x85\x8a\xfd\x15\xd6\x46\xd0\x24\xe3\x70\x4c\xa6\xb0\x7a\x2d\xf3\xb0\x92\x26\x90\xc2\x63\x10\x25\xb1\x00\xad\x84\x88\xaf\xc6\xd0\xf7\xb0\xad\x50\xae\xc6\xd9\x34\x6c\x14\x97\x74\xf0\x0c\xac\x6f\x4a\xf3\x50\xd3\x3a\x95\xc2\x8f\xb2\x74\x49\x32\x96\x5a\x36\x8a\x5b\xf0\xbd\xf8\xba\x0d\x3e\x9e\x0c\x06\x99\x6e\x24\x05\xe6\x03\xf1\x1b\x5f\xb7\xd2\x0f\xf8\xac\xc6\x25\x45\x40\x7a\x27\xc4\x36\xbf\xab\x94\x15\x9b\xc8\x85\x85\x85\x6e\x31\x19\x85\xfc\x71\x58\x91\xc3\xaa\x9e\x89\xa0\x47\x58\x0d\xbe\xac\x92\xfe\x2b\xc6\x11\xcf\x8b\x36\x20\xc6\x0b\x69\xcb\xab\xf4\xae\x22\xdd\xa6\x74\xbe\xae\xb6\xb5\xc2\xc6\xe6\x95\x7c\xda\xb1\x90\xfe\xa5\x22\xbe\x45\x95\x8f\xbb\x49\x35\x03\xde\xbf\xb3\x47\xbc\xf1\xd3\x98\x37\x98\x2c\x59\xc5\x86\x7d\x4b\x45\xa4\x71\x18\x4f\x29\x8a\x10\x84\x6a\x38\xff\x89\x92\xc4\xfe\x7f\x95\x51\xf7\xb3\x10\xb0\x35\x2c\xcc\xcf\x28\x17\xc6\xd7\xaa\x9f\x7f\x25\x34\xab\x02\xd4\x15\x12\x9e\x8e\x6d\x9e\xbc\x50\xaf\x9e\x37\x79\x95\x5f\xec\xbe\x5c\xf4\x87\x0c\x49\x10\x32\x20\x87\x55\x3c\xaa\x30\x3c\x93\xc8\x5f\x7b\x58\x8d\xe8\x51\xc4\x61\x40\x02\xde\x50\x7d\x75\x0f\xf6\x94\x04\xd5\xce\x9e\xea\xc4\x43\x53\x07\xab\x50\x52\xda\x09\x2f\x3e\xbd\xae\xfa\x8a\xb6\x3c\x07\x3a\x45\x6f\x32\xd2\x78\x3b\xd7\x15\x7b\x11\xb3\x09\x48\xc2\xb3\x25\x12\x1d\x24\x51\x94\xac\xa2\x18\x60\x4b\x8f\xd5\xaf\x08\x9a\xa8\x0d\x4e\x53\x84\xa4\xd1\x64\xb3\xd5\x27\xb0\xeb\xa5\xe5\xdd\x26\x31\x26\x26\xc8\xfd\xa0\x88\x7c\x08\x3a\x89\x12\x7c\x47\x49\xc4\xb7\x14\x93\x8c\x9f\x46\x18\xe9\xd6\xce\xff\x16\x70\xf3\xc8\xef\x2b\x8e\xb7\x33\x3a\xbd\x77\xc6\x36\xe0\xfa\x79\x9e\xa4\xb1\x59\x9b\xd2\xe2\x0d\x58\x63\xe2\xf2\xd1\xef\x08\x87\xa5\x3b\x4e\xfc\x61\x38\xc1\x08\x49\xab\x05\x4d\xa9\xf4\x5a\x48\x66\x9c\x11\x6d\xe2\xf6\x62\x06\xee\xd0\xdb\xf2\xb5\x6d\xe4\xf2\x03\xea\x75\xa1\x63\x0d\x73\x0b\xa8\x83\xe0\x6d\xe9\x41\x44\xb4\xed\x61\xdb\x25\xd6\x37\xc9\x54\x1d\x7a\x66\xd9\x6f\x18\x5b\x88\x34\xcf\xc9\x36\x92\x98\x2a\xee\xc9\xc2\xbe\x30\xf3\x2f\xb2\x83\xf3\x6e\xa9\x14\x33\xde\x55\xed\x28\xfd\xa2\x1f\xb1\xa8\x2c\xd7\x15\xf1\x13\x52\x64\x74\xd5\x2a\x14\x25\x6c\xed\x75\x41\x57\x63\xe6\x2c\xe9\x87\x3b\x66\xfc\xfe\x38\xcc\x3b\x95\x83\x20\xb1\xb6\xd3\xd0\xb9\xa5\x93\x1f\xb9\x49\xa3\x30\x1e\x02\x35\x55\xcb\x49\x62\xd7\x70\x9f\x33\xcb\x4a\xd0\x08\xda\x06\x4c\x07\x6d\x79\xc7\x73\xf2\xd1\x12\x90\xf1\xbf\x94\x2e\x03\x73\x4f\x75\x71\xad\x84\x26\x8f\xfd\xb1\xc9\x6a\xe2\xa7\x1b\x4a\xb5\x69\x43\xb5\x33\x6d\xe8\xca\xf5\x46\x23\x5b\xb5\x34\xd3\x1d\xf9\x44\x0a\x73\x50\x70\xa8\xa7\x55\x46\xf2\xb4\x4a\x42\x0a\x64\x9b\x3a\xf5\xe0\xe2\x70\x23\x3f\x8a\x06\xb7\xb0\xcf\xf8\x86\xbe\xc4\xd6\x06\x6c\x1b\x16\xcb\xff\xc1\x47\x06\xc0\x8b\x73\xae\xaa\x85\xa8\x6f\x02\xbf\x6f\x62\xc8\x3e\xf0\x17\x9e\x51\x54\x35\x67\x5a\xc9\x42\xfd\xa2\xcf\xe8\x38\xf6\xc5\xc8\xda\x8a\x5f\xf6\xe4\x76\x32\xcc\xc5\xee\xd3\x4f\xef\xad\x02\x17\x9c\xc5\x9f\x81\x66\x0b\x6b\xf7\x8a\xe7\x30\x3a\x47\xbc\xce\xd3\x4f\xeb\xcd\xfb\xa2\x23\x2e\x70\xf8\x08\x36\xd2\x08\x1d\x44\x5d\x8a\xfb\x8f\xb4\xda\x5e\x9e\x81\x9f\x5e\x49\xe0\xc8\xc6\x65\x00\x10\x6a\x3b\xff\x1d\x65\x71\x2d\xf3\xb9\x13\x23\xfb\x4f\xe0\xaa\x20\x13\x30\xbd\xee\x04\x68\x7f\x9b\x96\x0b\x59\xd9\xe3\x5f\x5d\x17\xb7\x25\x5b\x0d\xf3\x60\x44\x47\x34\x10\x2a\x88\x36\x99\x69\x43\x49\x27\xdc\xab\x95\x3e\xb2\x22\x9e\xa6\xa9\xc5\xfe\x3d\x49\x41\xbb\x5c\xd3\x33\xf3\x8d\xe7\xc2\xc8\x93\xea\x9c\xa9\x42\xa3\x69\x97\xf4\xfc\x1c\x4b\x43\x54\xe8\x5c\xfe\xf2\x73\xbd\xbf\x8f\x28\xea\x9d\x22\xee\x9b\x74\xc5\x8f\x8a\xca\x1e\x54\x6e\x1e\xf2\x58\xb7\x3c\xc7\x3d\x78\xab\x7c\x5c\x41\x76\xe3\x3c\x8c\x0b\x3f\xc2\x1f\xdb\xe3\x7f\xdf\x82\xcd\x2e\x38\xef\x0a\xd0\xa0\x6c\xca\xc5\xe6\x4c\xac\x82\x4d\x7c\xb7\x96\xa0\xfb\xb2\x6a\x29\xcf\x4d\x1a\xfb\x11\xa5\x85\x31\x98\x53\x68\x19\xb2\x38\x22\x1b\xc3\xdc\xb4\x0e\x46\x30\xf2\x07\x2c\x6a\x88\x34\x3a\x94\x6d\xf9\xba\x0d\xe9\x3c\x4e\x62\x2a\x6a\x29\xdd\x4a\x6c\x49\x5b\x95\x5f\x72\xcf\xed\x1e\x6f\x40\xa2\xca\x71\xde\x69\x0a\x38\xf2\x8d\xe7\x74\x11\x57\x93\x43\x80\x1c\x23\xbc\x85\x22\x89\x1c\xaa\xf4\x4e\xb0\x41\xc7\xec\xa1\x90\x10\x0a\x96\x1d\x60\xd6\xb9\xa4\x4f\x89\xe6\xe5\x23\x2a\x4e\x8f\xa2\x2f\xa9\xf2\x34\xc7\xc5\xb6\xf6\x53\x7d\x3d\xdc\x9c\xdb\x48\x4f\x60\x3f\xfd\xb9\x82\xf0\x22\x8e\x12\xed\x00\xec\x26\x89\xca\x14\xfb\xc1\x1b\xe5\xf6\xd0\x68\xd1\x86\x75\xd5\xec\xc2\xea\x9d\x2a\x9d\x99\xb9\x48\xb6\x88\xe5\x6a\xea\xb1\x54\x4b\xb0\x33\x4c\x92\x7e\x6c\x32\x54\x44\xe0\x8d\x9d\xf5\x14\x85\xcd\x59\x1b\xaa\x06\xc9\x78\x5c\x59\xac\xbe\x96\x6f\xe1\xb3\x5e\x68\xa3\x5c\x84\xf0\x4a\x18\x6b\x81\xc2\x73\x0a\x83\x72\x4e\xe3\x73\x5e\x7d\x95\x00\x16\x38\x6b\xf7\xf6\x94\x67\x0a\x39\x39\xed\x91\x21\x49\x73\x52\x75\xfb\x6c\x2a\x75\x90\xd5\x30\xaf\x5e\xc4\x20\xcf\xc2\x79\xc4\x5a\x4e\xb1\x8d\x1f\x2d\x09\xc8\x95\xb2\x38\xbd\x7f\xee\xb9\xd6\xd4\x7f\xde\xd6\xf6\xe2\xc7\x71\x52\xc4\x01\x97\x12\xdb\x30\xdf\xae\xf1\x6a\x79\x2d\x85\x63\x84\x53\x91\xfd\x0a\xbe\xf1\xbe\xa2\x32\x39\x49\xb1\x1c\x19\xa9\x37\x29\xf5\x14\x25\x4a\xb0\x59\xd6\x09\x0f\xf2\xff\xbf\xea\x65\xff\x61\x59\x99\x70\x4b\xf2\xbd\xb4\xb8\xb5\x8b\xfa\x2e\x44\x47\x95\xbe\x13\x3b\x6a\x2f\xc5\x8e\xd2\xd8\xa3\xf8\xc4\xdf\xa4\xae\x4e\xb1\x42\x0a\xaa\xb9\x6b\x9d\x5a\x2d\x70\x8a\xfc\x89\x86\xf8\xf5\x3a\x2f\x2c\xda\x9c\x46\x75\xd2\x00\xab\xd3\x81\x05\x97\x1e\xba\xea\xa4\x81\xbb\x37\x0d\xbd\x3d\xe4\x46\xb7\x98\x5d\x0b\xb6\x95\xf3\x78\x88\xa6\x76\x93\xbe\x3c\x1e\x7e\x0b\x29\x75\x78\x09\xd3\x04\xc0\x82\x67\xcf\xa2\xbf\xb4\x3b\xbf\xf3\xe5\x75\x62\x67\x52\xc0\x21\x11\xbc\xbf\x8b\xed\xc4\x02\xea\xa5\x1b\xd0\x5b\x38\x0f\x91\xf8\xec\x30\x4a\x10\x9f\x39\xae\x74\x81\x72\x82\x0d\x93\x00\x5d\x35\x24\x96\xf0\xb6\x1a\x51\x21\xbc\x75\x58\xfa\x2a\x5e\x4c\xb2\x64\x32\x0a\x0d\xcc\xaf\x12\xfa\x97\x38\xf8\x86\x62\x92\x3e\xac\xfa\xe7\x26\xd5\xf6\x9a\x76\xf2\xbf\x90\x10\x40\x4e\xec\xb2\xd7\xd1\x4d\xe7\xfb\xa4\xf1\xf2\xa2\x05\xcb\x9a\x57\x92\x58\x21\x0a\xd9\xc3\xbf\x8c\x0d\xca\x37\xad\x65\xee\x41\x52\x08\x73\x97\x30\x86\xd6\x94\xdb\xce\x58\x0b\x99\xfb\xaf\xf8\xcb\x91\x99\x52\x6c\x93\x67\x55\xfb\xc5\xae\x9e\x73\x56\xef\xd9\x0f\x85\x71\x9c\x4c\xfc\xa0\xe3\x4a\x1a\xc7\x34\xca\xe0\x98\xf2\xbf\xc6\x7e\x1e\x00\x05\xb4\x24\xb8\xf1\x53\x0a\x65\xf0\x53\xb5\x9b\x7f\xaa\xac\xdc\xa9\xb6\x6c\x01\x69\x5c\x67\x79\x18\x45\x8a\x84\x13\x7c\x95\x7c\xbd\x6e\x45\x91\x8a\xc1\xc0\x6e\x3c\x09\xe7\x69\xb2\xa5\xdd\xd9\xe5\x72\xe8\x6b\xa7\x1d\xa8\x91\xbb\x2f\xf8\x86\x8e\x63\x0c\xc0\x1d\x62\xde\xe0\xeb\x46\x05\x83\x14\x59\xe3\x2c\x4f\x8b\xca\x6d\xaf\x0e\xf5\x6a\x48\x71\xe4\xfe\xb8\x74\xc7\xef\x8f\x55\xea\x7b\x94\x10\x03\xef\x92\x84\x62\xa7\x14\xe8\xec\x8e\x12\xb5\xba\x5e\xba\x60\xef\x82\x02\x7e\xbf\x55\xba\x4d\x75\x5b\xf5\x9f\x05\xfe\x78\xe2\xc7\x26\x0d\xb3\x5a\xd4\xc7\x1e\x9e\xc4\x80\xee\xf0\x1b\x44\x3e\x40\x5f\x22\x37\x4f\x0b\x07\x51\xf1\xe1\x52\xf9\x7e\x37\x14\x13\xfe\x2f\xab\x17\xc9\x93\xdc\x8f\x1e\x56\x1d\xa5\x37\x15\xb6\x61\xba\xa7\x24\x4c\x5e\xc3\xe8\xa2\x59\xe2\xb8\x42\x4e\xb2\xd4\x93\xd5\x99\x5d\x12\xca\xbb\x23\xd8\x68\x78\xfb\xa3\xf4\xf6\xfc\x0f\x35\xb4\x10\xbf\x1c\xf6\xe0\x45\xaf\x86\x5c\x50\xd5\x17\x93\x65\xfe\xd0\x30\xa2\x15\x79\x4e\x60\xe9\xf8\xda\x22\x64\x52\xe3\xab\x3e\xc5\x2d\xa8\x8e\x6f\x5d\x74\x5a\xc7\x45\x9e\xa3\x5a\x6f\xab\xda\x56\x3b\xe5\x8f\x61\x9d\xe1\xa7\x5c\x6a\xc4\xd7\x0b\x0b\xdd\xd4\x8f\x51\x71\x84\xbb\x8d\x3a\xa9\x34\x5c\xd0\x40\xc0\x91\x9f\xee\x6d\x3f\xb0\x66\x67\xbb\x43\x3f\xed\x1b\xd7\x01\x85\x83\xf3\x9a\xe2\x84\xbf\xa6\xf8\x33\xcd\x2b\x81\x31\x7d\x52\xce\x84\xcb\xce\x29\x48\x69\x16\xa9\xc6\x53\xb0\x12\x4f\x2a\x04\xc8\x78\x5c\xc4\xf4\xfe\xd3\xae\xb8\xcd\x6e\x16\x2b\xb4\xd3\x14\x8b\x5a\x7b\x75\x22\xf0\x1f\x79\x2e\x8e\xf5\x03\x12\x38\x89\xab\x61\xac\x9e\x00\xb3\x7b\x14\x58\x2b\xbe\x69\x6b\xef\xcd\x56\x8d\xc9\x79\xf1\x5a\xb2\x38\x95\x6d\x6d\x49\xa1\xa0\xf5\x81\x6c\x12\x16\xee\x4e\xea\xa8\xe2\xeb\xc6\x30\x4a\xcd\xba\x6f\x58\x73\xc2\xca\x66\x38\x31\x84\x0d\x4f\x37\x93\xf6\x4d\x4a\xa6\x62\x97\xdb\x28\x97\x4a\x17\x07\x73\xa9\x8c\x49\xc1\x3c\xa5\xfd\x01\xed\x38\xa4\x06\xef\x5b\x4a\x94\x49\x54\x00\x1b\x09\xc8\xd9\x09\x4d\xde\xfe\xba\xe2\x23\x61\xe9\x0f\x59\xaa\x2e\x5c\x59\xf5\xd3\xf1\x5e\x55\x2f\xd8\xd4\x44\x8b\x27\x3d\x27\xc5\xc3\x22\xba\xe2\x50\xd3\xd7\xc1\x27\xf8\x94\x1c\x4e\xd1\x54\x74\x2d\x5f\x37\xe9\xf7\x71\xf2\xd7\xf5\x40\xd3\x64\xf5\x11\xfa\x36\x2c\xb4\x77\xf0\x9e\x7c\x7a\xa3\x6c\x6e\x8f\xc7\xea\x77\x90\x48\xd8\x03\x0d\x65\xb9\xeb\x55\x16\x0f\x01\xe0\x31\xd5\x3d\xbd\x81\xd3\x5b\xc6\xde\x29\x25\x6c\x30\xfd\x94\xed\x0c\xad\xbc\x07\xd1\x62\xd3\x3d\xa3\x9e\x03\xc8\x6a\x5c\x8e\x9f\x99\xc7\x68\xa7\x38\x9e\xb2\x59\x57\xee\xdb\xff\x4f\xbe\x61\x91\x15\xce\x3f\xfd\x83\x52\x85\xac\x0f\x52\xcc\xcf\x6d\xc2\xe4\x6c\x59\x62\xba\x1a\xdf\x43\x35\x16\xe4\xfb\xac\x3d\xc5\x6f\x2c\x2c\x6d\x34\x35\xc8\x59\xbd\x46\xfd\xa4\x36\xfe\xb5\xf1\xdc\xa3\xbd\x9d\x5f\x73\xc2\xee\x82\x70\xff\xb3\xc7\x7b\x4a\xc3\xf8\x8e\xea\xf1\x9b\xa4\xc9\xc0\x20\x3f\x16\xa1\x05\x00\xe1\xdf\xc7\x9e\x22\x4e\xe2\xc6\x4a\xbe\xf1\x14\x93\x13\x1c\x69\x11\x8a\xa2\xdf\xe0\xcf\xab\x83\xc1\x8f\xfc\x78\x5a\xf9\x8d\x27\x3d\x9d\xf3\xbe\xad\x93\x09\x5c\xa5\xe7\x7f\xb1\xcb\x3c\x28\xf2\x6c\x97\x62\xe6\x64\x81\x3e\xbc\xfe\x03\x48\x3d\xe1\x30\x03\xa2\x18\xe7\xcc\x2e\x4d\xb6\x58\x57\x76\x08\xc2\xbe\x96\xef\xf3\x5c\x32\x61\x53\x65\xa7\x07\x95\x57\xd3\xd7\x22\x48\xa5\x0a\xb4\x9a\x62\x32\x73\x07\xba\xa9\xc9\x8b\x34\x9e\x76\x45\xae\x53\x5a\x55\xf5\x37\x68\xa6\x60\x28\x3f\x29\x5d\xa2\xf6\x8a\x56\x4c\x9f\x4c\x22\xbf\xe8\x67\x53\x0e\x3b\x71\x4d\xd7\x7b\x76\x10\xed\x91\x50\xef\x38\x7c\x65\x9e\xfa\x71\x36\x48\xd2\x31\xf2\xee\x58\x5b\x3b\x7b\x2e\x99\xb2\x73\x5d\xef\xc1\x57\xfb\x3e\x92\x68\x88\x0e\xd9\x35\x87\xf3\xf8\x87\xa5\x12\x16\xfd\xe7\x64\x95\xe1\xc8\x74\xd6\x1f\x53\x59\xc0\xd4\x0f\xe3\x0c\x4e\x1f\xb6\x18\x38\xed\x14\x4d\xd7\x9c\xd5\xe8\x6c\x41\x74\xad\x9a\x30\x05\xd2\x4c\x7a\xd1\x3b\x96\x15\xe2\x9d\xd2\x75\x29\xfd\xa8\x11\x9f\x12\x32\x3b\x18\x85\x2b\x7e\xf6\x33\x62\xfe\x36\x9f\x36\x35\x03\xc2\xf9\xd1\xfb\xa1\x64\xfb\xa1\xa7\xd8\xc1\x3f\x54\x6e\xf7\x72\x92\x48\xe2\x54\x94\x7a\xe8\xfb\xf9\xa6\x51\xb1\x26\xae\xf6\xc1\x80\x7a\xa5\x30\x8e\x9a\x40\x18\x45\x40\xcc\xc4\x4f\x1b\xbc\x10\x07\x67\x5e\xec\x26\x69\x3f\xf6\x25\xf5\xc7\xaa\x3a\xaa\x8c\xf3\x23\x05\xd3\x1e\x87\x71\x98\xe5\xd4\xe4\xe8\x56\xda\x31\x6c\x4c\xe1\xd6\xfc\x92\xea\xc1\x59\x4b\x52\x60\x9e\x44\x68\xb6\x63\xb9\x95\xce\x96\x9a\xd9\x9b\x9a\x8d\xce\x95\x0e\xf4\x76\x45\xf9\x67\x91\x59\xf1\x23\xa5\xc2\xc2\xb9\x23\xab\xf9\xed\xac\xc7\x86\x36\x05\x1b\xb6\x85\x31\x2b\x5e\x36\x01\x60\x25\xc2\x56\xec\x80\x67\xf7\x3d\xa5\x4d\x73\xc3\x56\x1f\x27\x61\x96\x27\x5c\x77\x40\x44\xf8\x86\x4a\xaf\xbf\xe1\x6d\x57\xe1\x78\xe9\xa5\x6e\x3f\xd9\xa5\xb6\xe9\x25\xda\xdc\x82\x71\xa2\x27\x86\x03\x80\xc2\xa9\xd5\xfe\xfe\xc5\x17\x2c\xcc\x40\xcc\x4e\x15\x35\xed\xa9\x3e\x2d\x3d\x8b\x1a\x8e\x73\xd9\xe9\x2f\x7f\xf2\x18\xca\x44\xf8\x11\xc0\x14\x04\x43\xa0\xda\xe5\xd9\xb8\x49\xb5\xce\xe1\xb7\x46\x49\x6e\xa2\x0c\xa9\x32\x39\xc8\x3b\x96\xa3\xf2\x44\x4b\xf7\xfa\x22\x41\x3d\xab\xe0\x4c\x4b\x23\xd1\xa0\x37\x9b\x9d\xa8\xb9\xa5\xfa\x3b\xe9\xb7\x72\x61\xca\xb9\xc6\x4a\x9c\x3b\x00\xac\x7b\x46\xf5\x92\x05\x45\x9d\x6b\xb9\xe2\xaf\xeb\x5a\xc0\xd8\x8f\x22\x93\xe5\x53\x0e\x86\x7b\x5f\x51\xa1\x02\xdd\x80\xba\xdf\xc5\x1a\x1f\xdb\x20\x8c\xc3\xdc\x00\x0c\x2e\x65\xd7\xa3\x1a\x34\x79\x5e\x11\x27\xbd\xdf\x92\xf6\x5e\xdc\xdf\x1d\xf8\x71\x36\xe5\xe0\x71\xe7\x60\xb6\x50\xd2\xfb\x50\xab\x2f\x5d\xfd\x62\x21\x83\xc4\x4f\xad\x0f\x2c\x24\x3c\x8a\x4a\xe5\xac\x05\xad\x06\xe1\x4a\x18\x85\xec\xe7\xb1\x54\xa1\xe7\x20\x3f\xcd\x92\xd9\xdc\x81\x6e\xe4\xe7\x66\x57\x35\x1a\x98\xf3\x37\x3d\x85\x66\xb9\x49\x23\x2a\x04\x16\x94\xff\xc0\x93\xe3\x08\x43\x5e\x62\x7a\x7d\x9b\x3e\xc0\x0b\x4b\x33\xdd\x7f\xb8\xdb\x39\x76\xd7\xb0\xa2\x45\x3b\xc8\x05\xc5\x5b\x14\xd5\x09\x82\x94\x7e\x17\x48\x9f\x13\x9e\xd3\x76\xb9\xa1\xe1\xda\x26\x35\xe3\x24\xc6\xa4\xc3\x97\x3a\xa6\xda\x08\x8e\x29\xcb\xd8\x4f\x93\x15\x00\x39\x98\xed\xd0\x73\x5b\xfa\x9c\xea\x8a\xe9\x1b\x22\xac\xa4\xbf\x44\x96\xe8\xae\xc2\x00\x34\xd9\x63\xaa\xa8\xc4\xc4\x26\xce\x4d\x80\x86\x0e\x66\x3e\x2b\x55\x19\xf8\x03\x5b\x38\x8c\xfc\x15\x13\x53\x5b\xaf\xa3\x42\x3f\xa3\x7c\xce\x33\xad\x27\xc0\xd8\x44\x51\xe2\xc7\x5a\x53\xa5\xae\xe6\xd7\x42\x6c\xe5\xf7\xfb\xa9\xc9\xb2\x5d\x0e\xd7\x7c\x4d\xe7\x62\x2f\xd2\x4b\xa1\x48\x01\x7a\x1c\x1c\x62\xc7\x6a\x3a\xe2\x1a\xbc\x97\x66\x23\x3f\x8a\x3a\x4a\x5c\x0f\xc8\x2f\xbe\xd6\x05\x72\x3f\xcb\xa5\x63\x42\x9a\x0b\x5c\x1f\x0c\xb7\xd4\x09\x20\xcc\xb9\xf5\x91\x5f\xad\xe9\xca\x69\x90\xdd\xd0\x79\x41\x48\xd1\x3e\x54\x08\xdf\x49\x6a\xfa\x61\x90\xfb\xcb\x11\x58\xa2\xb7\x8e\x93\xdf\xb7\x75\x5c\x39\xbe\xff\x59\xdc\x9f\x52\x20\x11\x48\x75\x21\x90\x86\x3a\x3e\x0e\xbb\xa9\x86\x0a\xd5\xec\x6c\x77\x10\x32\xc7\x1e\x02\x97\x63\x48\x21\xf3\x8d\x3a\xd0\x26\x69\x32\xf1\x87\x7e\xdc\x07\x67\x83\x20\x5b\xe8\x67\x05\xce\xd2\x54\x05\x5b\xe8\x66\x09\x0d\xcd\xd6\x45\x3a\xc5\xa4\x01\xd1\x15\xdd\x4e\xb6\x74\x35\x77\x33\x3f\x32\xd9\x98\xd7\x80\x64\x35\x74\x2d\xbb\x4d\x05\xb4\x3b\x0c\x97\x97\x93\x38\xab\x61\xf0\x4e\x6a\x0c\xde\x49\x75\x54\x1e\x8a\x4c\x18\xc3\xcb\xc0\x3f\x6e\x79\xea\x2f\xb7\xec\x09\xb3\x6a\xcc\xa1\xa9\xce\x37\xe4\xa8\x04\x18\x13\xf9\xd1\xdb\x4a\xb4\xf9\x82\x23\xf8\x5a\xcb\x72\x33\x5e\x0d\xfb\x20\x71\x94\x9a\x81\x2a\xc1\x9d\x57\x39\x4a\x7f\x39\x49\x49\xc4\xa1\xe3\xa4\xf2\xd1\x6d\xc9\xd7\xf5\xb0\x6c\x79\x4d\xbb\xe9\xef\xc1\x82\x62\xf8\x3f\x46\x58\xc5\xff\xa2\x48\xdf\x3f\x56\x19\xa3\x41\x11\x13\xef\xab\xe9\x53\x07\x03\x1c\x41\x30\xaf\xb1\xfc\x10\x1e\x54\x6a\x70\xdb\x67\x74\xdf\x42\x37\xe8\x33\x6a\x17\xdb\x66\x37\x25\xe6\x6a\xac\x8e\x70\x5b\xee\xda\x14\xca\xb2\xa9\xac\x05\xfd\x13\xea\x19\x9f\xd2\x0f\xf2\xb5\x82\xdf\xf4\x4d\x16\x0e\x63\x03\xcc\x03\x26\xe2\xa8\xea\xf3\xd4\xb1\x5e\x9a\x3d\xbb\x5b\x29\x89\x74\x14\xc4\xef\xb7\x1e\xe7\xa0\x0c\xab\x1e\x99\x43\x89\x1c\xc9\x8a\x0b\x01\x55\x47\xe9\x7b\x2b\x8e\xfe\x6f\xd4\x21\x52\xef\x6b\x01\x64\xb4\xca\x61\xfe\x99\x31\x97\x53\xa8\xeb\x4a\xee\xbc\x48\x83\x91\x9f\x01\xee\x2a\x05\xe5\x33\xba\xa1\x0f\x55\x27\x44\xe4\x8c\x75\x14\x4e\x1d\x8a\x7a\x05\xd8\xd4\xb1\x1c\x2a\xbf\x8f\x28\x85\xff\x41\xa5\x5e\x93\x34\x44\x22\xd2\xe5\xa5\xde\xf6\x5c\xca\xe6\x6d\xeb\xa7\x65\x93\x30\xe6\x3f\xe3\xde\x7e\x25\x20\xdf\x6c\x36\x39\x38\xb3\xd8\x1d\x17\x59\x14\x8e\x33\x06\x7e\xe0\x0b\x6f\x7b\x2a\x28\xf9\xd7\x1a\xf9\xd1\x84\xd1\xca\x19\x0e\xc9\xab\x69\xd7\xa2\x7c\x0a\xef\x8c\x95\x02\x2d\x33\x09\x64\xab\xb5\x8f\xc2\xc4\xd9\x36\xa9\xb8\xe4\xd5\x24\x36\x35\xbd\xad\xea\x03\x72\x4e\xb8\x3a\xbd\x59\x2e\xa2\x28\x94\x16\x16\x24\x0f\xdf\xa1\x83\x95\xaf\x15\x79\x5f\x64\xfc\x94\xb6\x84\x25\xde\xff\x4d\xa5\x65\x85\x12\x16\x0e\x12\x0d\x68\x1e\x99\x70\x15\x3d\xea\xad\x9c\xa6\x8f\x6f\x97\x0d\x5a\x58\x78\xc0\xf5\xc8\x1e\xd7\x92\x24\xff\x12\x8e\xb5\x30\x31\x50\xaa\x43\x42\x79\x87\x2c\xb8\x87\x64\x27\x6e\x7e\x87\xec\x10\x17\x85\x4b\x95\x20\xe5\xcc\x16\x46\xf0\x7b\x2a\x6a\x4d\x4d\x56\x44\xb9\x40\xb9\x10\x7f\xef\x26\xa6\x07\x91\x2d\x76\x4e\xf1\x3d\x95\x11\x8b\xfc\xb8\x9f\xac\xc6\x42\xee\x22\x7c\x86\x1d\x45\x74\xe8\x6a\xb7\xcb\x86\xb3\xf6\xb0\x2c\x3f\x28\x15\x2d\xf4\x0f\x5a\xe4\x77\x2a\x17\xd1\x18\x1c\x40\x08\xba\xaf\x7a\xaa\x1e\x7d\xb5\x7c\x48\x95\xe4\xbe\x8a\x65\x88\xa2\x2e\x8b\x8a\x61\x73\x40\x7a\x0c\x68\xc7\xff\x99\x0e\x52\xc9\xa3\x91\xb5\x84\x29\xbd\xad\x34\x3d\x6f\x53\x69\x0b\xee\xd6\x1d\x0d\x00\xda\x01\x3e\x00\x0c\xdf\x6d\xc5\xcd\xf0\x9a\xa7\xd0\x68\xdc\xc6\x87\x68\xe2\x89\x75\x85\x40\xbb\x44\x03\x83\x39\x7e\x88\xd6\xb5\xa0\x99\x14\x4b\x28\xa7\x66\xb1\xf3\x6e\x95\x0e\xe1\xba\xa3\xe7\xb8\xef\x4e\x10\x3d\xab\x1d\x3b\x55\x66\xf8\xb9\x5e\x15\x0a\xc1\xa2\xfd\x1b\x1d\xbe\xec\xed\xb9\x5e\xe3\xb8\x6f\xb2\x65\x3f\x3e\xd4\xd1\x09\x2a\x5e\xa2\x7c\xa3\x02\x90\x67\xc7\xcf\xee\x52\xf8\xa8\x3d\xeb\x0e\x11\xb4\x87\xd6\x08\x12\x96\xd7\x68\xb3\x49\x63\x91\x73\x9b\x9f\xe8\x29\xf2\x2a\x7f\x18\x06\x53\x35\x0f\xc4\x91\xf9\xd3\x67\xa4\x96\xd4\x42\xd8\x58\x1d\x9b\xd9\x24\x35\x7e\xbf\xe3\x98\xee\x34\xf2\xfd\x9e\x62\xd1\xc9\x72\x3f\x2f\xb2\x07\x54\x26\xf7\x98\xe7\xea\x4f\x9b\x0a\xb6\xcd\xf4\x07\x56\x40\x5f\x33\x46\x39\x13\x7b\xbf\x54\xee\xc0\x3f\xf3\x14\x19\xc0\xae\x5e\x8d\x71\xaa\x85\x14\x3a\x28\xa2\x49\x1a\x4a\x2e\x5b\xdc\x0d\x77\xf2\x9c\x54\xdd\x28\x93\x34\x21\x11\x4a\x91\xfd\xac\x21\xf6\x5c\xa5\x64\x17\xce\x34\x89\xe4\xb5\x7e\x40\x5e\x84\x79\xb8\x62\x3a\x4a\xf1\xe8\x34\x6a\xaa\x22\x9d\xd2\xe4\x4c\x7d\xb1\x3b\x0a\xb3\x89\x1f\x87\x81\x78\x48\xb0\xe7\x77\xb1\xfc\xf9\xa6\xe5\x83\x5d\x62\x82\x0d\x07\xb6\xa3\xc0\x12\x62\x2a\x3a\xfc\x6d\xd6\xee\xd9\xee\xec\x9c\x12\x70\xe5\xe3\x99\x6f\xd6\xf5\x89\x1f\x85\x2b\x26\x65\x96\x6e\xa1\xf8\x54\x48\xe8\xb7\xb0\xed\x04\x96\xaf\x1a\xe9\x14\xfd\xe1\xc5\xc6\x53\xdb\x56\xb5\x6a\x8d\xc0\x5d\xb1\x04\x14\x96\xcd\xe7\x04\x76\x03\xc2\x82\x8b\xca\x54\x0a\x45\xd5\x94\x4b\x63\xa0\xa5\xce\x4a\x85\xda\x46\xb6\xd7\xf5\x49\x3c\x18\x84\x41\xe8\x47\x0f\x29\x0e\x61\x10\x65\x22\x94\xdf\x52\xfc\x7e\x68\xfb\x87\x83\x76\x4d\xb1\xd5\x75\x40\x2d\x2c\x5a\xb7\x8a\x1b\xe3\x8e\xc6\x29\x9d\xd7\xdc\x91\xa7\xc9\x4c\x89\x56\x3e\xbd\x13\x0e\x86\x07\x7b\x2a\xde\x30\x59\xf6\x28\x79\x88\x42\x76\x51\x7d\x08\x47\x0e\x0b\x43\xb0\x74\x16\xad\x5a\x44\x32\x3b\xd6\x15\xb9\xcb\xa7\xd8\x1e\x70\x5a\xde\xf3\x5c\x3f\x36\x8b\xf3\x08\x5c\x47\x31\x04\x7e\x40\x19\x02\x46\x8d\xd1\x1b\xc3\x4a\xb2\xbe\x14\x9c\x99\x1d\x48\xcd\xc0\x4b\x02\x76\x04\x6b\x9e\x75\x38\xb9\x3e\xd1\x52\x89\x7d\xb1\x1b\x24\x71\x60\xe2\x5c\x15\xcf\x85\x63\xb2\x63\x89\xe5\x2e\x95\xee\x7c\xca\x8a\xd4\x10\x4c\x1f\x03\x7c\x07\xa4\xd7\x76\x45\x59\xe6\xae\x13\x48\xae\x73\x7a\xd3\x53\x9c\x77\xb7\x28\x41\x2c\x10\x1f\x27\x57\xf7\x3b\xaa\xba\xb8\x05\x0e\x22\xcc\xf4\x75\x15\xc1\xfb\x79\xee\x93\x0e\x81\x12\xf4\xfa\x0c\xdf\x8e\xb1\xf8\xc0\x53\xf0\xcb\x8d\xd2\xf2\x72\xfe\xbd\x87\x9c\xa8\x36\xf4\x57\x80\x59\x7e\xb2\xd7\xf9\x25\x47\xb8\x59\xcd\xa8\x64\xb8\x14\xbf\x3b\x53\x9c\x21\x29\x76\x97\x53\x64\xc8\xf8\xfc\x8b\xd2\xe1\x9f\x6f\x2b\xbd\x99\x2e\x0e\x38\xa4\x01\x4e\xd2\x6b\x72\x32\x52\x29\xc4\x4d\xfc\x34\x0f\xfd\x88\x8a\xa3\xa2\xbf\x49\x53\x89\x8e\x06\x90\x27\x21\x9f\xba\x67\xbd\x26\x64\x94\x27\xd8\xf0\xf8\xb1\x77\x34\x8e\x1e\xbc\xf8\x78\xa3\x4f\xb1\xe4\xf9\xaf\x4a\xd7\xed\x79\xb1\x74\xad\xf8\xd9\xa1\x30\x8a\x4c\x1f\xc5\x07\x7c\x07\x3c\x7b\x74\xb3\x4d\x63\x75\x61\x3d\x7f\xaa\x5a\xe9\x2e\x29\x81\xcd\x7f\xd3\xda\xc0\x1b\x24\x71\x96\x87\x79\x91\x1b\xc2\x83\x28\x01\x71\xd1\x1b\x3d\xa7\xa5\x74\xcf\x2a\x74\x3d\x75\x78\xed\x55\x4a\x02\x4c\x5a\xae\xf0\xd2\xfb\x9d\x94\x7d\xf5\xf6\x8c\xf4\xe4\xc2\x8b\xc5\x7d\x56\xfb\x12\x9b\xf9\xa4\xe2\x17\x38\x59\xea\xe9\xd1\x2c\x8c\x7e\x3a\x34\x8f\xaa\xe9\xc2\xcf\xc2\x33\x3a\xa9\xd9\xb8\xb1\xda\x91\x30\xd0\xba\x08\x2c\x1c\x80\x52\x0b\x2a\x19\xa2\xe9\x56\xb9\x4f\x22\x75\xac\x48\x54\x37\x81\xff\x11\x53\x5c\xed\x72\x8b\x13\x3d\x38\x63\xa5\x38\x94\x8f\xba\x89\xc2\xb0\x15\xec\x98\x75\xca\x21\xdb\x33\x14\xdf\x98\xeb\x16\xd4\x64\x55\x67\x97\x11\x17\xeb\x5c\x1b\x03\x42\x96\x44\xa1\x30\x83\xdb\xee\x60\xc5\x10\x28\xa5\xff\x6d\xf5\x75\x8c\xd8\x83\xeb\x2e\xf3\xfe\x60\xaf\x85\xfb\x65\x98\x64\x59\x38\x59\x53\xe2\xd8\x80\x37\x0b\x01\xbc\xa6\x9c\xf1\x73\xe9\x94\xc1\x16\x3b\x4e\x03\xcd\xd7\x9e\x4b\xae\x0c\xfc\x80\xd9\x92\x77\xbb\xea\xfe\x83\x60\xb6\x94\x7d\xa7\xca\x1c\x1b\xaa\x8f\x04\x64\xbc\xb0\x47\xbc\x5e\x44\xf5\x5e\xba\x09\xfc\xc9\x24\x4d\x5e\x09\xc7\x3e\x2f\x64\x6e\x3a\xa4\x05\x80\x13\x04\x2c\x31\xf0\xf1\xae\x34\x82\xfe\x67\xba\xb1\xf1\x53\xc8\x5a\x5a\x37\xc5\xea\xc6\xec\xa4\x35\x82\x2d\xdf\x04\x2a\x1e\x9c\x99\xe3\x71\x96\x28\xd2\xea\xb9\xb8\x7e\x95\x9b\x08\x79\x84\x2e\x43\x9b\x8a\x34\x1b\xed\x52\x0c\xef\x38\x69\x84\xe5\xa4\x63\x75\x18\x3f\xa5\xd3\x4c\x16\xa7\x5a\xa8\x6d\x74\x9c\x2b\x26\x37\xa9\x1f\x67\x53\xaa\x2d\xf0\x1a\x6f\x3c\xec\x49\xd6\xf9\x04\xd9\xc1\xe1\x36\xe3\xb0\xbf\xb2\xe5\x26\xee\xfb\x4c\xbd\x6d\x51\x8b\x0e\xc1\xd8\x2a\x15\xbc\x96\x0c\x43\xa4\x42\x64\xf3\x54\x9f\x96\xd5\xdf\x2c\x3a\x3d\xd7\xcd\x46\xa9\xe9\xf7\xb9\xcf\x90\x99\xa3\xbd\x1a\x8d\x74\x4b\xbf\xfd\x38\x8c\x38\x0f\x2e\x3a\x2a\xf4\x9b\x7c\xd3\xd6\xca\x19\xf8\x29\xb8\x4e\xb1\x0a\x20\x27\xa3\x54\x4f\xc5\x3e\x6f\x13\x70\xa9\x91\x89\x04\xa9\xc9\xcd\x6e\xa5\xb3\x7d\x53\xd1\xf5\x72\xc5\x89\xc1\x67\x5e\x03\x89\xa6\x24\xc4\x5f\x94\x8f\x6b\xdc\x7d\x98\x8d\x43\xf4\x5b\x5a\x88\x32\x4e\x18\xbe\x5e\x7f\xca\x5a\xdf\xea\x60\xaa\x02\xd6\x51\x38\xc9\x28\xe9\xa0\x18\x04\x85\x16\xf7\x43\x58\x2d\x11\x14\xaa\x96\x8f\xac\x4c\x09\xa2\x06\xa9\x3f\x1c\x9b\xd8\xba\x16\x48\x15\xdd\x52\x69\xa3\x5b\x8d\xe2\x0c\x9d\x1b\x7e\x1c\x18\xcb\xb9\x03\x8b\xfd\x99\x86\x3d\x7d\xd6\xb0\x5a\x07\x9e\xef\x86\xe8\x31\xa1\xd7\x13\xca\x3e\x27\x1c\x74\xc6\x56\x39\xa4\xb7\x03\xa4\x2d\xe4\xcb\xfd\x37\x7f\x63\xdd\xe1\x12\x7f\xbe\xe7\xea\x2d\x0f\xf4\x54\x4f\xed\xbf\x6a\x43\xe0\x08\x2b\x42\x65\x69\x60\x97\x1e\x20\x5b\x80\x0a\xcf\x2d\xec\x37\x91\x33\x93\x47\x18\x84\x2b\x66\x90\x44\x7d\x3a\xf9\x11\x3b\xdd\x52\xc8\x71\xb6\xd0\xd2\x09\x69\x95\xd3\x4c\xea\x8f\xab\xd0\x70\x61\x41\x93\x16\x89\x63\xf5\x8e\xf2\xfc\xae\x7a\x9a\xf1\x3a\x1e\x84\xe8\xb8\xa0\x87\x11\x56\x63\x7a\x64\xe1\x3b\x96\x6c\xed\xb0\x88\x06\x08\xc1\x24\xb7\xe6\x30\xca\x67\x95\xf8\x20\xb5\x89\x9a\x3e\x07\x42\x62\x78\x14\xe9\x44\x93\x57\x48\x42\x8a\x49\x9a\x74\xaa\xe8\x0d\x83\xc2\xdd\x43\x7c\xd3\x96\xb0\xf2\x97\x93\x22\xdf\x5d\x8d\x94\x60\xad\xab\xb5\x86\xe4\xe7\x6e\x60\x57\xb7\x70\x6a\x72\xb7\x06\x8d\x83\xf4\x1e\x76\x2c\x15\xda\xf1\xb6\x44\x79\x90\xc4\xfd\xc2\x86\x9d\x30\x5e\x7c\xcc\xf3\x4d\x03\xc5\x7f\x70\x86\x1a\x0b\xc3\x78\x48\x33\x81\x1c\x08\x1a\x22\xa5\x25\x86\x56\x96\x70\x2d\xeb\xfc\xb3\x5f\xf4\x3b\x8a\x0c\x7d\x83\x8d\x26\xdf\xb9\x4c\xe3\x28\xf5\xe3\x43\xa8\x1b\x02\x01\x78\x55\x09\x7a\x1c\xd6\x4c\x86\x77\x1b\xb6\x68\x71\x69\xb1\x3a\xf2\xa7\x5d\xe7\x26\x73\xbc\xb3\x38\x3f\x12\x29\x2c\x7f\x4e\xe3\xc3\x3f\x61\xcb\x4e\xc4\xb9\x67\x04\x43\xd0\xea\x72\xb9\x4a\x59\x5a\x0c\x06\x49\xc7\x69\xea\x1c\xa7\xd3\x43\x12\xbc\x5f\x52\x5c\xe8\xe3\x24\x9d\xd2\xf4\x05\xa5\x63\x2c\xd8\xaa\x69\x97\x7c\x59\xeb\x77\xf8\x71\x58\x80\x9f\x8e\xf5\xd1\xeb\x62\xe9\xae\x54\x16\xf7\xc7\x7e\x7a\x88\x70\x29\xd8\x1d\xa7\xb4\x80\xdb\x9b\x0a\x4f\x7e\xc3\xab\x01\xb0\xdc\xbb\x0c\x22\x7f\xc2\x4b\xa1\x8d\xcf\xe5\x21\xd7\x8f\xbe\x7f\x5a\xb1\x5b\xfc\x0a\x8d\xa2\xa5\xb1\xb3\x49\xbe\x93\x9a\x12\xf7\x56\x63\xa2\xa8\xbf\x95\x1b\x14\xb1\xfe\xef\x96\x2e\x02\xb9\xab\xc2\x9e\x7e\xb8\x52\xed\xe0\xfe\xee\xca\xd3\xb3\x30\xca\xa5\x19\x0e\x19\x99\x87\x45\x78\x17\x3b\xdb\x14\x30\xf1\x47\x37\x60\x54\xe0\xe8\xdc\x56\xc0\xc7\xd4\x04\x49\xda\x7f\xc0\x99\xf9\x1f\x62\xfd\xe2\x84\x02\x3a\x10\x5e\xcb\x6b\x58\x03\xd2\xd5\xaf\x98\xf1\x77\xac\x3b\xc6\xe5\x1f\xd2\x8f\x52\x52\xff\x7f\xfa\x72\xcf\x11\x04\xff\x06\x2d\x0c\x49\x3a\xb7\xa4\x49\xfa\x61\x15\xff\x17\x51\xbe\x06\xc3\x8f\xb5\x76\x57\xf5\x49\xde\xb5\x2a\x92\x7d\x13\x84\x7d\xd3\x07\x11\xa0\x88\xc1\xd1\xa7\x90\x28\x83\xf6\x02\xe7\x9c\x35\x50\xf4\x2b\x3d\x57\xd9\x2f\xe2\x81\x1f\xa6\x11\x53\x36\xc0\x1b\x43\xcd\x9a\xaf\x6b\x1d\x81\x3e\x43\xa5\xab\x1f\x69\xcd\xce\xb6\x71\x89\x25\x59\x1e\x46\x28\x24\xb3\x86\xa4\xaa\xa4\x3a\x4f\x9a\xdb\xfa\xe5\x85\xe0\x0c\xde\x2a\x55\xb6\x08\x06\x46\x08\x46\x14\x60\xfd\x92\x6a\x6f\x1c\x86\x2b\x26\x06\x45\x08\x32\x26\x53\xeb\x74\x48\xc3\x1b\x80\xc3\x2a\xe2\xb7\x8e\x5c\x1c\x9a\xc1\xfc\x01\x3a\xbc\x90\xea\xb9\xa1\xf9\xbb\x4e\xaa\xf3\x33\x0d\x83\x43\x06\xde\x11\x6b\xa3\x2b\x8a\xe7\x33\x2d\xc2\x41\x8b\x4c\xed\x3a\xa5\x38\x43\x50\x34\x13\x4c\x12\xbd\x90\x2c\x2c\x97\x48\x1a\x18\x3f\x2f\x52\xc8\xcb\xef\x07\xd5\x29\x55\x42\x2d\x08\xf8\x43\x85\x44\xf9\xb0\xd5\x99\x60\x3a\x0b\x74\xbc\xb2\x6a\x85\x46\x51\xdc\xf2\x14\xe6\x70\xa3\x45\x8a\xa5\x1b\x52\x8a\x24\x5c\x11\x83\x68\x25\x2e\x1c\x8b\xb7\x8e\xea\x33\x43\x7c\xb2\x0f\x51\xf6\x19\x4e\xd9\x0f\x74\x4c\xf8\x47\x4a\xce\xf9\x58\xe9\xe4\x9a\x99\xf5\x93\xff\x81\x46\x47\x12\xf2\x34\x3a\xfc\x69\x70\xf7\xf3\xf7\x96\x8a\x73\x89\x15\xfd\x04\xe3\x47\x6f\x25\x0d\x37\x2d\x6f\xe5\x47\x79\x32\x34\xf9\xc8\xa4\xe4\x85\x00\x40\x7f\x5b\x45\x62\x9b\xf8\x72\x7c\x45\x93\x29\x04\x63\x1b\x58\x39\x28\xb8\xba\x3b\x7b\xaa\x5c\xbf\x73\x7d\xfb\xef\xbe\xf4\x52\x77\x1c\xe6\xe1\x90\xe2\x3a\x14\x52\x60\xa9\x5e\x2b\x5d\xae\x03\x58\x0b\x4e\xe2\xab\xd6\x3e\x62\xdb\x7b\x25\x57\x84\x90\x67\xf0\x96\x52\x08\xa7\xe7\x80\xe3\x76\x53\x19\xb8\xc0\x95\xb1\x84\x3c\x4b\x65\x53\x8f\xb4\x04\x0d\x0b\xdd\xa4\xc8\x9d\x37\x29\x35\x43\x17\x47\x9d\x73\x34\x26\x49\x90\xa7\x61\xcc\xc4\x7a\x35\x05\x11\xbe\x69\x10\x41\xcd\xcf\x57\x0e\x44\x3e\x1a\x27\x2b\xe2\x44\x88\x1f\x4f\x23\x62\x3d\x2f\x2b\x0c\x77\x5b\xe5\x56\x07\x61\x14\x4e\xc2\x38\x01\x29\x3b\x6c\xfb\x11\x0d\x98\xa0\xdd\xcc\xff\x1f\x5f\x28\xf1\x94\x63\x1a\x3d\x5e\xea\x98\x4b\x7b\x28\x59\x10\xd2\x9b\x20\xb7\xf0\xd0\xba\xa2\x94\x7a\xa8\xe7\x1a\x5b\x56\x42\x2b\xae\xce\x1a\xde\xc8\xc2\x89\xa0\xf7\x97\x34\x2b\x41\x60\x1e\xa2\x55\x81\xb8\xfa\x0a\xd6\x95\x4d\xef\x5a\xf9\x9b\xc3\xf4\xe4\xe2\xf5\x76\xe6\xe7\xb7\xb6\x30\xa5\xfc\x39\xaf\x29\x08\x08\x8b\xb1\xb3\xe7\xa8\x1e\x41\xc7\x2c\x62\xa1\xf4\x4c\xf2\x4b\xdb\x7d\xcb\x6f\xcc\x75\x07\xe1\x2b\x9c\x1b\x11\x46\x22\x95\x3a\x3f\xaf\x5a\xd2\xb3\xdc\xf8\xfd\xb5\x69\x57\x67\x3d\x87\x2d\x2d\x5b\xb7\xb3\xd0\x9e\xd6\x77\xc8\x81\x89\x49\xb9\x4d\x9f\xf2\x2a\xac\x17\x40\x7f\x2c\xda\x01\xea\x8f\xd3\x84\x28\x0c\x0a\x1e\x63\xa1\xa5\x53\x38\xe2\xa3\x8a\x49\x67\x6c\x7c\xf8\xa3\xb6\x70\xb8\xa3\xe7\xc0\x36\x2c\xd7\x21\x6c\x39\xce\xdd\x09\x57\x92\x94\x0f\xbf\x36\x6f\x5f\xe0\x07\xc3\x24\x3d\x24\x4a\x2f\x82\x41\xa2\x65\x21\x20\x24\x37\x4c\xfe\x60\x90\xa4\x7d\x22\xe6\x67\x9d\x2e\x68\x8e\xa2\xe4\xf8\xbe\x8a\xfc\xde\xa1\x03\x08\x96\xe6\x4a\x83\x2d\x6e\x61\x61\x3f\x6d\xf7\x34\x5c\x2e\x6c\xf8\x88\xb4\x0b\xa7\xee\xf8\xc6\xb6\xa1\x8c\xcd\x38\x49\xfd\xb8\xef\xd3\x7e\xaa\x69\x58\x61\x9f\xdf\xf3\x3a\xdf\xfc\xba\x24\xdf\xdb\xd8\x52\x52\x51\x39\x43\x4e\x1f\xbc\x1f\x7c\xad\x70\x3c\xc9\x72\x44\xf6\x2b\x89\xe9\x35\xb9\x82\xa0\x00\x03\x80\x9e\x8a\xe4\x80\x23\x2f\xd1\x15\xa8\xd4\xef\x87\xf4\x1d\xbb\x14\x8e\xe1\xa8\x86\x43\x1c\xa7\x88\x06\x13\xf8\xa1\xf2\x2f\x1f\xee\xb9\x72\xfc\xfd\x56\x8a\x8c\xc0\xc4\xb2\x35\x71\x7e\xbc\x5d\x2a\x62\x9b\xb7\x95\x29\x59\x4e\xfc\x3c\x4a\x7c\xd4\xed\x11\x86\x82\xb4\xdc\xda\xe4\x5f\x7c\x81\xf7\xdb\x7d\xeb\x79\x99\x6a\x8a\x25\x60\x82\x03\x71\x4e\x93\x98\x34\x99\xdd\xe7\xe7\xbb\x7e\xf0\xad\x22\x4c\x45\x9f\x02\xbe\xfb\x51\x95\xf0\x3f\x6a\x01\xb4\x93\x24\xcc\x84\x1d\x0f\x5f\x08\xa6\x5f\x69\xbe\xa8\xb1\xe3\xd5\xba\xda\xc3\x08\x07\x0a\x52\xb2\x1f\x2b\xb2\x26\x48\xb3\x31\x8a\xc4\x66\x27\x92\x15\x93\xa6\xa1\xa3\xa1\x16\x3a\xf1\x8e\x65\xe0\x7a\x97\x3e\x07\xaf\xf6\x8a\xee\xc6\x36\x7d\x93\x86\x41\xa2\x84\xf8\xa4\x67\x4c\x9a\x73\xdd\xa9\x05\xa8\xa9\x51\x1c\x9d\xa0\x6a\xe3\xeb\xc6\x11\x79\x70\x06\x38\xf7\x09\x46\xb9\x9a\x46\x9b\xcc\xaf\x06\x8f\x6f\xda\x18\xc8\xb2\x64\x6d\xd9\x30\xe8\x0b\x45\x95\x6b\x0a\xfe\x70\x4d\xa5\xd7\xc7\x61\xc6\x67\x9b\xb4\x22\xba\xb0\x49\xc3\x20\x09\x6c\xbf\x47\x35\x40\x78\xca\x90\x9f\x80\xb1\x14\x4e\x61\x85\xed\x3d\xaf\x42\x70\x3e\x18\xa4\x81\xa2\xda\x60\xf0\xb5\x9a\x01\xd1\x33\x24\xc6\xb1\x3a\xa5\x09\x2e\xaa\xbf\x17\x79\x57\x25\x39\x7e\xa3\x81\x8a\xa6\x96\x66\xda\xbf\x16\x8e\xe1\xa0\x19\xe5\x53\xb2\x7a\x23\x13\xe4\x69\xf2\xff\x11\xf6\xa7\x31\x96\x5c\x57\x7e\x20\x5e\xf5\x32\x6b\x67\x51\x24\x45\xb5\xdb\xee\x36\xfc\xba\x2d\x37\xfb\x0f\x08\xfc\x8f\xc7\xb3\x78\xf4\x25\xde\x54\xa5\x44\x55\xa2\x99\x4c\x64\x95\xaa\x64\x7d\x19\xde\x8c\x77\xf3\xbd\x60\xc5\x8b\x78\x8a\x25\xb3\x92\xf0\x00\x86\x31\x30\x0c\xc3\x1f\x0c\xd8\x33\x1f\x64\x1b\x30\x6c\x0d\xec\xf1\x02\xcb\x6a\xb9\xad\x76\xb7\xfd\x52\x4b\x6b\x69\xa9\x25\x51\xa4\x8a\x4b\x51\x24\x8b\xb5\xef\x7b\x55\xd6\x96\x1c\xc4\xf9\x9d\x73\xef\x89\x8c\xa0\xe7\x5b\x44\x55\xbe\xf7\x22\xee\x72\xee\x59\x7e\xe7\xf7\x4b\xa2\x90\x14\x24\x95\x38\x27\xd8\x94\x05\xe9\xed\x91\xcb\xf9\x30\x2d\xe3\xfe\x53\x2a\x92\xbb\x15\x78\x94\xe4\x43\x15\x20\xbe\x8e\x03\x0a\x78\xd7\x1d\x6b\x95\x75\xe0\xba\x81\x2a\xa7\x6c\x47\x61\x08\x43\x7d\x0b\x2e\x1b\xf2\x4e\xb7\xb5\xbb\x8d\x48\x10\xbe\xd7\xad\x40\x39\x86\xf7\x30\x9c\xcc\x60\x45\xe5\x7a\x04\xf9\x7b\xc1\xcd\x0a\xcb\x77\x0b\x00\x09\x29\x83\x55\x6f\x86\x1f\xd9\xa6\xda\x1b\x16\x6d\xe5\xe2\xb0\x6c\xa5\x66\xab\x47\x92\xfc\x7d\x92\x9c\x73\x38\xf8\xea\x41\x59\x87\x54\xd5\xf9\x6e\x69\x24\xf1\x59\x95\x20\x8a\xe2\xd8\x0e\x4c\xbc\x83\x9e\x16\x39\xe6\xff\x12\x78\x68\xc7\x03\x6c\x64\xb8\x29\xdc\x73\xcb\x37\x98\x66\x58\xc1\x7f\xa5\xc8\x9a\x1f\x04\x4a\x9b\xe2\x3f\x28\x91\xcf\x45\x93\x59\xcc\x24\xc2\xaa\xcb\x81\xa2\xd4\xb8\xfc\xb1\x98\xaa\xbc\xb0\xcb\x16\x87\x31\x32\x23\x2c\x30\xc9\x37\xca\x4e\xe6\x45\xd9\x5f\x15\x5e\x7d\xc4\x49\x6f\x28\xea\xfb\x37\xd4\x6a\x09\x8d\x93\x30\xe2\x8e\xe5\x5a\xf7\xb2\x1f\xfc\xcc\x8e\x4c\x76\x34\x27\xf5\x3a\x71\x9d\xab\x15\x83\x05\xcb\x00\x17\x98\xac\x7b\x8d\x82\x02\x51\x74\xa7\x53\x1e\x8e\x03\xdf\x8e\x89\x85\x02\x9f\xf3\x1a\x2b\x1d\xb0\x15\xe2\xb8\x20\x8e\x71\xac\x57\xb0\xc6\x61\xbd\x5d\xc7\x04\x8b\x31\x53\x5d\x0f\x97\x95\x6e\xef\x1f\x6a\x09\xce\x8b\x8d\xa8\x82\x9a\x83\x28\x3c\x74\x67\x36\x8a\x5a\x28\x1f\xf1\xb5\x1a\x84\xc2\x26\x89\x65\x3b\x2a\x9c\x14\xaa\x7e\x7b\x4a\x39\xf1\x7d\x5b\xc5\x82\x35\x31\xd6\x89\x16\x63\x55\x30\x82\x57\x4c\x6c\xc6\x36\xc1\xd7\xc2\xb5\x44\x54\xcf\xd7\x6d\xa4\x87\x68\x75\xcf\xa6\xfd\x91\x84\xd6\x5a\x66\xe9\x52\xed\x22\x77\x30\x52\x70\xee\x9f\x70\x2e\xf1\xd1\x28\x59\x4a\xe3\xa3\xd3\x4a\x35\xf3\x23\xfa\x51\xb1\x95\x1d\xa7\x25\xf2\x16\x1e\x5c\xf4\x9b\x3f\xe1\x72\x00\xe1\x30\x4a\x98\xf7\xc8\xd1\xc5\x57\xa3\xc1\x37\xc1\x6e\x37\x1a\xff\xfb\x5e\x1f\x35\xb0\x94\x0f\xbc\x1c\xa4\xbc\xb1\x47\xee\x05\x2a\x4f\xf8\x13\x98\x1a\x57\xdd\xae\xc6\x11\x05\x89\xef\xa3\x86\x2f\x69\xf2\xea\xad\x61\x63\xbf\xab\x94\xb2\xcf\x63\xf3\xe1\x24\x81\x79\x87\x31\xfc\x93\x89\xaa\x8d\xdf\x26\xe7\x5b\x0e\x84\x36\xdd\x07\xab\x7a\x11\x04\x89\xe1\x13\xf6\x57\xd4\xa6\x4b\xca\x28\x37\x49\x88\x8a\x1b\x0a\x49\x37\x03\x85\x50\x00\xeb\xb7\xb0\xf0\xb4\xa4\x76\xfb\x51\x6e\x8d\xeb\x84\x42\xde\x89\x5d\x21\xbe\x69\xd3\x1b\x31\xfd\xe5\xea\x6c\xcc\xa7\x14\xb3\xd2\x1f\x4d\x14\x2f\xd9\x25\x8d\xd1\xbd\xaa\x78\xfd\xe2\x68\x71\xd5\x24\xdc\x31\xed\x94\xd1\x5d\xf3\x8f\xea\x11\xb2\xd1\xab\xe2\xe2\x20\xff\x71\x52\x09\xe0\x31\xaf\x88\xf4\xc7\x7e\x9c\x2c\xbc\x49\x92\xd2\xc4\xd5\x17\x4d\x7b\xce\x5d\x9e\x57\x98\x66\x14\x77\xb0\x68\xb9\x71\x8a\x71\x90\x0a\xe5\xb9\x12\x15\xc3\x7e\x66\x56\xb8\x7d\xa6\x8d\x27\xd2\x31\x9b\x94\x8b\x42\x11\x23\x8a\x0f\x1d\xa7\x51\x70\x61\xb2\xc7\x0b\x8c\x1d\xa5\x39\x83\x55\x03\xe4\xa8\xa6\xdb\x82\xd2\xc8\x85\xc6\x9c\x1d\x59\xd8\xd7\xfd\xad\x2f\xfc\x8d\xf9\x2f\x7c\x6e\x8e\xf1\xc3\xcc\x65\xaa\xfb\xd7\xcf\x29\x3d\x15\xcd\xbb\xd5\xc4\xdf\xce\x1c\xea\xe6\x69\xbc\x6c\x93\x10\xb5\x66\x0c\xf5\x2d\xa5\x7f\x7c\x4b\xcd\x5e\x3f\xcd\x96\x46\x86\x01\xed\xdc\xd7\xa8\x61\x2b\xe7\x1a\x69\x82\xf9\x97\x0e\x76\x0b\x93\x0c\xa2\x45\x4e\xf0\x21\x3b\xff\x2d\x45\xe6\xa8\x35\x29\xa9\xb9\x66\xa7\x3f\x0c\x4e\xe9\x72\xde\xae\x35\x55\xce\xdb\x45\x13\xa7\x80\xce\x2f\x38\x58\x86\x82\xab\x43\xae\x9e\xff\x23\x20\x21\x40\xfe\x8f\x46\x99\xea\xf0\xbe\xb9\xee\xa2\xe9\xc7\x9c\x57\x85\x8b\xf0\xb6\xd2\xe4\x7d\x5b\xb1\x3b\x99\xe7\x07\xcf\x77\x14\x3a\x01\xa5\x6d\xbe\x6e\x10\x83\x57\x3b\x66\x4c\x8a\x41\x0a\xe2\xc1\xec\xaf\x8c\x04\x52\x90\x11\x9d\x6b\xcf\x47\x44\x53\x74\x58\xb1\xf8\xbb\x9e\x20\xf4\xad\xc9\x1e\x72\xfb\xa6\x48\x29\x15\x58\xcd\x10\x5c\x82\x9b\x8c\xc5\x81\xbd\xdb\xd3\x53\x69\x97\x37\xb1\x4d\xb9\x5f\x4b\x75\xec\x6f\x16\x38\x42\x51\x69\x6b\x4f\x8d\xf3\x45\xdd\xa7\x77\x4d\x65\x18\x5f\xc3\x97\x22\xe8\x7f\xa4\xb2\xc3\x76\xd9\x66\xab\x7d\xb3\x3a\xed\x71\xf9\x77\x30\x73\x7c\x33\xf1\x1d\xd7\xc7\x15\x12\xee\xb8\x2b\xbc\x0d\xcb\x01\x52\x48\x8e\xa8\x49\x51\x21\xb6\xb4\xc7\x1d\xec\xc6\xd6\x38\x79\xf2\x9a\xe9\xe0\x9b\xcd\x32\x53\x2f\xbf\x4c\x5d\xa5\x7b\x3c\x35\xcb\x8d\xa0\xae\x1d\xec\xb4\x85\xee\x06\xca\x49\xbd\xa4\x2a\x0d\x77\x30\x00\x28\x53\x82\xab\x1d\xb9\xa1\x75\xad\x09\x75\x07\xbc\x35\x6e\x05\x57\x07\x4f\x4d\x45\x02\xa3\x79\xaf\x11\xbe\x2e\xec\xeb\xae\xa4\x49\xdf\x66\xdb\x34\x27\x25\x6d\x28\x27\x24\xad\x1b\x1a\x8f\xcc\xd7\xe2\x04\x3e\x84\x1a\x7e\xc9\x81\xb9\xee\x28\x4d\xa2\x22\xcd\x36\xf1\xe6\xfe\x1b\xc5\x9b\xfb\x6f\x3e\x46\x83\x20\xb2\xf1\x72\x3a\xb0\x71\x47\xc1\x64\xaf\x11\xe4\x46\x4a\xf8\x9b\xf3\x4a\x2f\xbf\xdc\x0d\xb3\x68\xc4\xa2\x78\x4e\xa8\xdd\x39\xd6\xdc\xf4\x23\xca\x60\x2d\xac\x7d\x66\xc5\x64\xe8\xaa\x63\xb9\x10\xa5\x29\xc2\x0a\x15\xd2\x58\xef\xcb\x8e\x4f\x11\xf6\x19\x75\xbd\x07\x0a\xdf\x45\xcc\x12\x21\xd2\xa6\x4e\xce\xd9\x05\xfc\x70\x52\xe0\xf3\xde\x56\x4d\x1c\x51\x68\x9f\xf2\x0f\xf0\x34\x4d\x35\x7e\xf3\xd9\x1e\xa5\x74\x98\xbb\x88\x06\x1e\x8b\xfc\x0c\xf9\x0b\x28\x26\x6e\x59\xab\x46\xa8\xd6\x9b\x87\x4a\xd1\xd3\xcc\x36\x84\x9c\xc8\x06\x56\x2c\x3c\xc3\xbd\x6b\xb4\x52\x84\x73\x57\x11\xe6\x9d\x26\x19\x44\x95\x24\x9d\x77\xec\xe6\x1e\xa2\xc1\xc4\x44\x08\x1c\x50\x2a\x60\x8b\xf8\x91\xd2\x7f\x4e\xec\x4a\x3e\x36\x63\x9b\xb1\x21\x61\x34\x29\xb9\x4d\xec\xea\xe0\x07\x9c\xdf\x53\x7d\xa9\x60\x4e\x9f\x51\x31\x01\x31\xc1\xbf\x0a\xd3\x2f\x84\xbc\x2a\x81\xd3\x64\xe4\x7d\x71\xa6\x3b\x48\x33\x4b\x31\x2a\x83\xa7\x03\xcf\x22\x7d\x56\x0d\xfe\xe7\xbf\xf8\x7b\x1d\x8f\xcc\x98\xee\xa9\x4d\x37\xed\xd8\xff\xec\xb1\x71\x9a\xd5\xb5\xef\x68\x69\x63\x43\xbe\xa7\xe8\xff\x90\x33\x82\x59\xd8\xb6\xe6\xf3\x18\x39\xe1\x3e\x07\xab\x3b\x75\x2a\xae\xf2\x26\xf8\x3a\xd0\x5b\x85\xac\x80\x14\x03\x7c\xb9\xe7\x64\x50\xed\x42\x64\x92\xd7\x11\xb5\xf0\x0d\x2d\x2c\xac\x80\xef\xb7\x01\x66\xb2\x88\x9d\x3b\x27\x26\xe6\xd2\x11\x58\x94\x02\xea\xa9\xe9\x69\x11\xb1\x6b\x75\xe2\xd2\xc2\x51\x5d\x0a\x9e\x99\xc6\x9b\xe5\x91\x89\x92\xc2\x44\xc9\xf6\x8e\x23\xa2\xd3\x96\x18\x19\x28\x66\xdb\xdb\xa4\xe9\xb7\xb0\x8f\x7d\xcb\x1f\x4d\x3c\xd3\x64\xa7\xb7\x5b\xd2\x8d\xbf\x63\x50\xcc\x12\x9d\x9d\x6a\x14\x5c\x8e\xc3\xe5\x5f\x1e\xaa\xd6\x8e\xc4\x2c\x83\x4d\x9c\xe5\x30\x03\x4f\xf3\x7f\x56\x93\x68\xbc\xab\x9c\x86\x41\x6a\xe2\xbc\xf3\xf1\xd6\xf4\x93\x82\x50\x0b\xc3\x72\x54\xc6\x0c\x97\x3b\xe0\xcf\x5b\x9a\x41\x21\x51\xdd\x3c\x09\x9f\xfb\x52\x37\x4d\x18\xe7\x27\xad\x6e\xbe\x37\xf1\x84\x03\x9e\x8c\x6c\x16\x96\xd9\xea\xb4\xa6\xc4\x54\x99\x62\xa8\xae\x61\x79\x32\x29\x14\x82\x91\x2d\x0d\xa0\xff\xe1\x7d\x40\x1c\x67\x49\xde\xf1\xe7\xd0\x39\x9c\x0a\x7c\xa3\xa0\x2b\x00\x22\x24\xa1\x65\xa8\x99\xf0\xa8\x7b\x3d\x93\xc7\x98\x7a\xe1\x42\xf1\x6e\x4c\x6e\x96\x2d\xce\x46\x21\xc4\xaf\x86\x45\x1c\xca\xbd\x6a\x89\xc4\x76\x87\x22\xb2\x3a\xcd\x89\x3c\xbe\xa3\x2c\xac\x93\x4b\x70\x89\x7d\x14\x2f\x61\x6b\x81\xee\x15\xe5\x3f\x7a\x13\x81\xa6\xb5\x74\x9e\x8f\xcc\x20\x89\x8a\xb2\x6f\x19\xcd\x07\x73\xc9\x2c\xa0\x30\xc9\xd8\x5e\x30\x90\x4d\x5d\xf7\x99\x43\x94\xb9\x34\x71\x3c\x55\x03\x92\xf9\x86\x91\x69\x75\x2e\x3f\x68\xe4\x0e\x0e\xbd\xd4\x35\x7d\xd4\x3c\xdc\x70\xba\xc6\xd2\x66\x5f\xe8\xfe\xfd\xdd\x28\x79\xa5\xcc\x04\x87\x29\x66\x9f\x16\x96\xf0\xd7\x6d\x3e\x70\x49\x67\x08\xac\x89\x7d\x8e\xbf\xa4\xc4\x43\xcf\xcc\x37\x13\x4f\xd4\x3d\xb0\x19\xea\xd6\x1e\xdd\xbf\x8f\x0d\xe9\xc6\xa4\x86\xe8\x77\x07\xde\x6f\xfd\x65\x25\x39\xb8\x75\x4d\xd1\xf9\x71\xb6\x0a\x69\xc3\x1d\x6b\xbe\x71\x64\x58\x26\x64\x71\xb8\xdd\x0e\x6e\x8a\x26\x32\x14\xe5\x13\x1f\x17\xfc\xd6\xcc\x81\x17\x0e\x1c\x3a\xf8\xeb\xf4\xbe\x70\x82\x5e\x83\xa9\x40\x28\x0d\x76\x27\x29\xc5\x7b\x57\xf7\x5e\xd0\x79\xf9\xe5\x8d\xeb\x13\xaa\x02\xc3\x61\x79\x0d\xbf\x87\x58\x68\x82\x67\x94\xc0\xa8\x7a\x2a\x2c\xce\x29\x34\x30\x08\x36\x91\x80\xf0\x2e\xf9\xea\xc9\x99\x2f\x12\x88\x1d\xab\xe7\x2e\xaf\x59\xbc\xfd\x6d\x66\x01\x12\xb1\x08\x55\x9d\x7d\x87\x20\x18\x58\xc2\xef\xab\x06\x0a\x76\xcb\x60\x40\x6f\x12\x19\x22\x96\xf0\x9b\x3a\xdf\xfb\x36\xdc\x7a\x47\x91\xee\x24\x92\xee\x06\x9e\xf8\xe3\xef\xab\x52\xc9\x62\x99\x59\x53\x86\x99\x41\xf1\x95\x51\x39\x81\xb7\xf3\xe7\x5a\x1b\x14\x57\x12\x01\xf8\x23\x29\xc9\x79\x66\x7e\x54\x3c\x11\x1c\x96\x6f\xd6\x6c\xc5\xd8\x66\x45\x1a\x49\x2e\xd0\xa5\xb2\xbc\x13\xd6\x74\xd5\x66\x67\xbb\x61\x9c\xe6\xe8\x34\xc6\xaa\x04\x02\x82\xaf\xd7\x64\x85\x0e\xd3\xa4\x6f\x14\xe7\xcd\x35\x24\x4d\x44\x68\xcb\x17\xdb\xee\x04\xea\xb0\x7e\x03\x3f\x88\x00\x33\xca\x2b\xaf\x30\x4a\x4c\xc1\x55\x37\x4f\x6f\xe9\xa1\x49\x4d\x92\xf1\xb9\xb9\x6e\x91\x8e\xa7\x94\xbc\x28\x32\x26\x48\x96\xde\xad\x09\x1c\xfa\x1c\x98\x3d\x56\xd8\x2c\x4a\x33\x62\x13\x83\xa7\x09\x76\x54\xbe\x6e\x33\x2b\xf9\x51\x5b\x84\x43\x04\xcb\x8e\x82\x70\xce\x53\x0d\x2a\x88\x43\x51\x8e\x16\x9d\x58\x0b\x0e\xa3\x4b\x81\xea\xde\xbc\x34\xd1\xd4\xd2\x83\x28\x31\x31\xaa\x4c\xc2\xc1\xe7\x1b\x76\xd0\x46\x20\x2c\x53\x7f\xae\x46\xd5\x4d\x14\x30\x54\x27\x23\xb1\x17\x81\x2a\xe3\x67\x45\x92\x95\x76\xa6\x6b\x2c\x72\x74\x1e\x0f\x26\x0a\xdd\x8c\x67\x83\x41\xd8\xd2\x7b\x42\x7b\x83\x9f\xa2\xcd\x8c\xed\x06\x4e\x1e\x47\xcb\x7b\x60\xce\x21\xee\xaa\xcd\xc6\x5e\xae\x6e\xa8\xda\x4a\xb8\x51\xb4\x11\x30\x63\x13\xf6\xfa\x49\x4a\x9e\xbb\xfc\xfb\xcc\x21\x97\x02\xa6\x89\x84\xc3\xbb\x45\x37\xa8\x9d\x9e\xf8\x56\x1f\x6e\x8f\x44\xde\x8f\x7b\xef\x10\xc9\xee\xee\xd1\xba\x13\x87\x5b\xc1\x1f\x1e\xc0\x33\x40\x22\xed\x7e\xa0\x95\x37\xf7\xac\x79\x54\xf5\x34\xca\x04\xf8\xcd\x9b\x30\x2f\xc2\xf8\xdb\x96\x37\x18\xa4\x23\xfb\xaa\x2e\x74\xe1\x80\x97\xdd\xb5\xb9\x70\x7b\x78\xdf\x4c\xb3\x70\xab\xf8\xb0\x67\x1c\xf6\x7c\x73\x37\xd2\x81\xb9\x6e\x61\xc3\x61\x92\xc6\xe9\x20\x0a\x4d\x0c\xce\x0b\x18\x38\x84\x39\x7c\xdd\x78\xcc\x97\x5f\x46\xa2\x87\x4f\x1a\xf6\xed\x02\xc5\x1b\xd3\xd4\xca\x3d\xf4\x12\xe1\x98\x8e\xc2\x1b\x47\x69\x06\x98\x1b\xbe\x76\xce\x0f\x91\x47\x14\x80\x53\xc2\xf4\x7d\x0f\xc3\x0e\xa3\xf8\x50\x55\x27\x2f\x7a\x3a\xb2\xfd\xe7\x54\x1f\x83\x4b\x73\xef\xdf\xcf\x78\x21\x9c\x6f\x7c\xdd\x48\x43\xce\x2f\xcc\x77\xf3\x72\x0c\x91\x38\xcf\x7d\x72\x0e\xa6\x4f\x5a\x60\x7d\xc2\x6d\x1c\xee\xe8\x38\x42\xb6\xd7\x15\xbf\xe1\xeb\xf8\x04\x8a\x45\x97\x27\x35\x49\x13\xaf\x9f\x78\x2f\xf0\x84\xa2\xef\x63\x7d\xf2\x27\x3e\x96\x53\x26\xb1\x47\xd3\x34\x47\xad\x1d\x81\xd2\xba\xce\x03\x4f\x23\x13\x23\x9c\x52\x1f\xd7\x5c\x38\x4e\xe3\x98\x33\x8a\x38\xea\xcf\xeb\x00\xea\x7c\xab\xa8\x54\x66\x07\x26\xeb\xc7\xc4\xdb\xec\x86\xf0\xba\x6a\xed\xb9\xee\x44\x20\x92\x34\xb1\xc7\xa2\xbc\xb0\x49\xa1\xda\x69\x21\x40\x02\x5f\xf3\x84\x8a\x76\x2e\x35\x12\x7c\x07\xe6\xba\xa3\x28\x5e\x31\xe5\x51\x8b\xf2\x6d\x4d\x6a\x95\x6f\x5c\x93\x88\x3d\x66\x06\x03\xb0\xd0\x4e\xd5\x6b\xc1\xaa\x05\x10\x3b\x11\x5b\xe0\xe9\x5e\xb7\x39\xef\x9f\xee\x46\x89\x3d\x36\xb6\x59\xe4\x28\xf2\xe1\x08\xa2\x84\xc2\xd7\x2d\x60\xac\x83\x9c\x39\x99\xf6\xfe\xcd\x8f\x02\x15\x29\x83\x59\xdc\xf9\x1e\xd5\xb2\xe0\x64\x9d\x96\x6f\x29\x8b\x45\x13\x1e\x95\x4e\x13\x51\x25\x51\xb9\xe3\x2b\xa8\x03\x08\xa2\x61\xaf\xaa\x2e\x2d\x21\x14\x16\xbd\xca\x8e\xd2\xb1\xdc\x3c\xb2\x47\xe6\xbb\xe3\xcc\x84\x45\x14\x8a\x22\x04\x02\x4b\x4e\x60\xf1\x8d\x83\x1c\x8c\xd2\x94\x98\x31\xf1\x54\x38\x73\x7f\x81\xfd\xcd\x37\x2a\x64\x8a\xcb\x24\x1c\x76\xea\xb8\x27\x85\x75\xda\x6c\x08\x64\x2d\x1e\x9b\xea\xfc\xde\x41\x46\xf0\xbf\x1b\x10\xd9\x21\x0a\xae\xbf\x3f\xf1\x35\xe5\x37\xdb\x04\x67\xa3\x64\xd9\xe6\x5e\x9b\x47\xa0\x27\x0a\x86\xe2\x15\xca\x87\x51\xdc\x1f\xa6\x29\x7a\x30\x84\xe7\xd6\xd7\xc6\x7e\xd2\x46\x19\x0f\x25\x2a\xde\x27\x3a\x25\x26\xeb\xab\xc5\xfb\x1e\x9b\x22\x8b\x4c\x56\x9d\xe6\xf4\x31\xa9\x35\x79\x60\xdd\x15\xb7\x70\x13\x3b\x48\x8b\x08\x88\xbc\xea\x51\x70\xae\x6e\x5b\xeb\x28\x0a\x2d\x7a\x33\x69\x20\x7f\xba\xce\x7e\x5a\x80\x1f\xfa\x05\x5e\x75\xc0\xa2\xf1\xb5\x92\x9f\xb5\xfd\x15\x93\xa1\x32\x8a\xb8\xe9\xae\x66\xbe\xbc\xdb\x92\xe2\x64\xd0\x28\x97\x62\xb8\x61\x90\x0f\x7f\xa6\x1c\xd2\x54\x1a\xc3\xb6\x70\x8b\x33\x06\x72\x12\x39\xd0\x99\xc3\x78\x5c\x51\xa8\x1c\x91\x29\xc9\x15\xc7\xc7\x6b\x13\xcf\x25\xf5\x9a\x5b\x91\x65\xb2\x94\xc6\xf2\x64\x48\xbf\x3d\xc6\xb3\x38\x09\x40\x67\x90\x2f\x4d\xb4\x70\x1d\x75\xe6\xcf\xce\xb2\x6b\x70\x42\x55\x5a\x4e\x68\x76\x16\xb3\xb2\x83\xbe\xdb\x71\xfe\x56\xdf\xcd\xab\x73\xe2\xd9\xde\x1e\xa9\x62\xc3\xb4\x96\xdf\x79\x0c\x63\x8f\x4d\xfb\xa3\x89\x6f\xe6\x7d\xa2\xe7\x5d\x66\x9b\x0c\xa2\xc4\x42\x96\x45\x87\xad\x3a\xf9\xe2\xd9\x17\x5f\xb1\xe9\xd8\x64\x7d\x4a\x79\x39\x6c\xea\x59\xf2\x8c\xa4\x3d\xd2\x27\x0c\x8a\x61\x2a\x4b\x96\x93\x80\x2a\x1d\x74\xd5\xa5\xf4\x97\x22\x9b\x17\x06\xb9\x1c\x81\xcc\xd1\xaa\x10\x2c\x9d\x86\x26\xae\xda\x6c\x1b\x39\x2f\x9c\xe2\x53\xd2\xfe\xc7\x11\x4d\x01\xb7\xfc\x11\x05\x30\x88\x1d\x20\x19\x2e\x89\xf7\xb6\xa6\xfe\xcc\x0e\xca\xd8\x64\xcc\x0e\x55\x4b\x00\x89\x29\x6b\x6e\xb0\x85\xee\xc0\x94\x71\x1a\xe5\xce\x2a\x49\xdb\xb4\x42\x41\xde\x68\x84\x1b\xfb\xf7\x77\x29\x47\xd3\xf1\xe0\x81\x9b\x81\x4a\x3e\xdc\x54\x69\xdb\xc2\xc4\x47\x59\x81\xe6\x05\x4e\x19\x21\x5d\x28\x65\xe8\x8e\xe3\x1c\x02\xa0\xc8\x95\x1c\x0f\xcc\x39\xa1\x4d\x55\x2b\xe1\x14\x83\xb4\x7d\xaa\xbe\xa6\x8e\x12\xda\x0b\x4b\xe4\xe4\xb0\x39\x60\xc5\x1c\xc5\xb9\xf3\xc1\x6e\xba\xa2\xf5\xc8\x64\xab\xb1\x49\xfa\x1d\xa5\xeb\x76\x49\x01\x9c\x9b\xa7\xea\xfe\xfd\xdd\x61\x5a\xe6\x76\x98\x72\x48\x20\x2c\xef\xb4\x41\x85\x5a\xdc\x47\x5a\x27\x34\x02\xd8\xc4\x31\x48\xd2\xe5\xe4\xff\x3e\xbd\xae\xb4\x1c\x55\x11\x2d\xff\xbb\x22\x29\xbb\xa4\xc8\xc6\x8a\xcc\x26\x7d\x84\x38\xd8\x5a\xec\x72\xf0\x8d\x3a\xd0\x86\xe5\x60\xa8\x25\x7a\x5f\x53\xca\xd2\xaf\xb9\x05\x9c\x45\x24\x55\xa4\xaa\xfe\xd7\xb4\xee\xdb\xb5\x06\xe8\xf4\xd0\x4b\xdd\xc5\xcc\x9a\xa3\xe4\x77\x72\xb3\x64\xe0\x3b\x1c\x2e\xea\xe6\x97\xcc\x9a\xbc\xcc\x56\x77\xa8\x72\xc1\xce\x9e\xe7\xde\xfc\x9a\x6a\xde\x99\x5a\x53\x92\x08\x2c\x8a\x25\xed\x78\xde\xf9\x3f\xad\xe8\xf3\xbf\xa6\xfa\x06\x8a\xcc\x84\x47\xb7\x53\x20\x04\xf4\xd2\xf7\xaa\xf5\xbf\x01\x2e\x21\xfe\x17\x9c\x01\x4e\xf7\xdf\x25\x3d\x5e\x53\x54\xe7\x7f\xd3\x81\xeb\x16\xed\x57\x4a\x6b\x0a\xa7\x08\xee\x98\xc8\x3d\xcb\xdb\xc9\xc6\xc1\x75\x80\x8a\xf6\xd5\xc3\x38\x83\x8d\x10\xe8\x1b\x13\x15\x0f\x7d\xc3\xbb\x5c\x49\x31\x2c\xf3\xc8\xe4\x02\x94\x53\x26\xe4\xa0\x33\x21\x2d\x14\xb6\x63\x5b\x44\x85\x55\x7d\xc5\x70\x0a\xf9\xba\x71\x08\x1f\x59\xd8\xc7\x30\xb0\x4e\xe7\x45\x79\x97\x3f\x0b\x54\x5f\xfc\x9f\xb5\x74\x89\xcd\x75\xf3\xa1\xe1\x3e\x89\x8d\xeb\x13\xb4\x2e\x34\x7c\xfd\x85\x7d\xdd\x28\x41\xef\xc7\x94\x92\x66\x66\x9e\x48\x2c\x4b\xa4\xd2\x85\x39\xaf\xe5\x7d\x46\xd1\x60\x58\xac\x4e\x79\x2c\xf1\x05\xb2\x14\x80\x49\xbe\xa3\x24\x79\xde\xf4\xa4\xa3\x69\x5e\x58\xd6\x1e\x85\xd3\xfe\x60\xa2\xda\xed\xdf\xa3\x9f\x44\x3e\x92\x49\x86\xe1\x47\x3e\xd9\x6b\x49\xd9\x2c\x99\x4c\x26\x0c\x01\xec\x79\xcd\xce\xa4\x75\xa6\x0a\x6b\x48\xe7\x00\x1e\x83\x50\xa9\x7a\x0c\x5d\xb3\x6d\xf0\xe5\x97\xbb\xc3\x74\x64\x49\x0a\xd8\x3b\x72\x0f\x74\xc6\xfc\x41\xe3\xe4\xa7\xf0\x2e\x0d\x8f\x8e\xa9\xf9\xe6\xb0\xe4\xf2\xa1\x9a\xcd\xd7\xaa\x26\xbc\x6c\x93\x22\x8a\x29\xd1\xd0\xf1\x87\xca\x55\x45\x93\x7d\xb5\xb5\x19\xb9\x30\x1c\x40\x4a\x26\x95\x96\x84\x64\x88\x9e\xd6\x2d\x21\xcb\x51\x68\xf3\xdd\xd5\xdf\xa2\xf8\x09\x79\x2c\xd1\xd7\x51\x62\x62\xd0\x50\x46\x4d\xf6\x43\x2d\x3c\xfd\x5e\xa0\xda\x9e\x45\xb4\x83\xf3\x13\x81\x02\xd4\xa0\xc2\x81\x69\xdc\xb9\xe6\xcb\x8e\x5b\x1a\xcd\xf8\xb3\xb3\x5d\x7b\xac\xc8\xec\xc8\x2a\xc8\x3f\xd3\x29\x08\xeb\x80\xaa\x5f\x08\x6f\x18\xca\xdf\x08\x48\xf8\xda\x95\xb1\xfb\xa9\x28\x2e\x22\x27\x75\x17\x07\x22\xdf\x28\x6f\x62\x39\xca\x23\x92\x52\x16\x64\xb9\x43\x35\x28\x20\xc3\x33\x9a\xf2\x67\x94\x16\x4e\xaa\x42\x28\x0d\x75\xb7\xca\x5e\x4d\xde\x39\xde\x55\x43\xa8\x6f\x52\x83\x7a\xc1\xf5\x31\xfa\xb0\xee\x38\x96\x3f\xf2\x57\x1f\x69\x72\x2c\xf8\x10\x9c\x5a\x56\x52\xba\x1f\x51\x36\x15\x99\xab\x77\x5c\x2e\x3b\x2e\xb3\x7a\x4b\xcc\x3b\x81\xef\x04\x7f\x47\x2d\x8a\xc5\x32\x8e\x2d\x39\x03\x2e\xeb\xa0\x9b\xbc\xee\xd5\xfe\x34\x8f\x12\x9b\xe7\x9f\xa4\x5d\x05\xef\xe2\x31\x19\x67\xc7\x5e\x5e\xf9\x45\x35\x58\x2e\xf6\xd3\x43\xbd\x4f\xee\xe2\xdd\x05\x4c\x55\xfd\x16\x16\xe0\x04\x85\x3b\xd7\xd8\x34\xbf\x30\x5f\x23\x9c\x62\xa5\x6f\x0c\x0a\x96\xf7\xbf\x60\x09\x1b\xfe\x33\x1a\x61\xa4\xa8\xb6\x40\x8f\x06\x19\xd4\x0d\x2c\x6d\x80\x0c\xa7\x08\xe1\x88\xd0\x80\x99\xff\x1d\x4f\xb1\x43\x3e\x3c\x03\xaa\x28\xac\xd9\x3b\x6d\x61\x81\x1d\xd9\x6c\x20\x00\x2a\x27\xef\xaf\xfa\x47\x55\x83\xc0\xa3\xc6\x01\x3c\x3b\xdb\xcd\x52\x93\x17\x2a\x04\x3b\x4d\xd6\x52\xe0\x89\x3e\x3b\xb8\x1c\x81\x7b\x17\xe0\x2a\xfc\x86\x10\x47\x76\x3e\x7f\xc4\x89\xf1\xb4\xa8\xa7\xe6\xe5\x78\x1c\xaf\xaa\xbc\xd9\x29\xfa\x0d\xbe\x6e\xd8\x70\x89\x42\x97\xa6\x7d\x84\x76\x12\x94\xfb\x08\x6e\x7e\x1e\x54\xe1\xa9\xa3\x0d\x5e\xf0\x34\x78\x6d\x44\x9e\x8b\x69\x5e\x08\x8f\xaf\xe4\x8c\x69\x1d\xf0\x8d\xea\xd8\x58\x8c\xab\x80\x5f\x09\x7e\x33\xfe\x96\x6f\x70\x60\x63\xc5\xb0\x51\xe7\x1b\x2d\x9d\x51\x94\x7d\xe6\xe9\x6e\x4d\x12\xb6\x40\xd5\xed\xb1\x71\x94\x49\xc6\x4e\xa8\xd5\x69\x45\xf0\x8d\xea\x1c\x5e\x4a\x33\x83\xa1\x84\x2b\x02\xf9\x01\xbe\x6e\x7c\x39\xa9\x84\x2e\x96\xd9\x22\xb3\x6c\x02\xdf\xc3\xd4\xdb\x4e\x0e\x66\xce\x6f\x90\xcd\x89\xc8\x99\x43\x10\xb1\x28\x0b\xaa\xef\xf3\x5e\x46\xe4\xf2\x48\x45\x31\x4d\xaa\xaf\xea\xd4\x09\x33\x4b\x94\x28\xa8\x6f\x8a\x52\x80\x6a\x29\x3e\x51\x8b\x9f\xe3\x34\x89\x4c\xdc\xa1\x34\x2c\x13\x6c\x05\x4a\x40\xfc\xed\x36\x10\xe5\xd0\x64\xcb\x36\x2f\x3a\xb4\x4f\xda\x1a\x77\x1c\x93\xaa\x0d\xcb\x8c\x58\x51\xb6\x75\xe6\xe6\x36\xae\x4f\x94\x8a\xe6\xa5\xa0\xb3\x7f\x66\xe3\x3a\x87\xd3\x30\x62\x4f\xf6\x14\x5f\xd4\x36\x57\xfb\x58\x19\x5a\x03\xac\x14\x36\xe5\x63\xc0\x86\x90\x0c\x3d\x3d\xe9\x7c\xf1\x0b\x52\xd2\x56\xbd\xcf\x35\x42\xe6\x66\x03\xe2\xcc\x21\x90\x84\x95\x9e\x1d\x42\xb4\xfc\x3a\x4a\xe2\x77\xf3\xdb\xcf\x2f\xcc\x77\xa3\x3c\x2f\x2d\xb7\xd1\x23\x0f\xf5\x08\x0b\x93\x6f\x1a\x3b\x9e\x3a\x15\x23\x5b\x3b\x97\x6e\xea\x32\xcd\xcd\xc9\x1e\xfe\x48\xf7\xc8\xcc\xa1\xbf\x50\x19\x29\x69\x06\x51\x22\x0c\xef\x4f\xbc\x76\xcb\x96\xb5\xce\xe7\xbe\xc4\x3b\xe1\xe7\x81\xef\x71\x66\x19\x03\x95\xf9\x93\xd6\xaa\xef\x13\x42\x00\x1e\xe6\x79\xd0\x5b\xc1\x10\x5e\x51\x86\xe1\x86\x66\x1e\x00\x26\xc5\xd5\x87\xe7\xdd\x59\x73\x36\x50\xc5\xa3\x5b\x13\xa5\x32\x39\x4d\xd1\x01\x1c\xb5\xf7\x54\xd3\xd0\x8d\x89\x3e\x63\x6f\x60\xb8\x80\x16\x07\x41\xa6\x40\x02\xc9\x72\x4b\x37\x52\xe5\xeb\x3a\x52\x91\x6a\xad\xb9\xb2\xa9\x27\x52\xfd\xfa\x44\x09\xa4\xfd\x94\x04\x43\x90\x26\xfa\x8f\x6d\x73\xf7\x69\x4a\xba\x8f\x3b\xbe\x33\xe3\x7d\xc5\x33\xf6\xbe\x3a\xf1\xfa\x36\x8c\xc5\xa9\x54\xc5\xd0\x6a\x36\x84\xc2\xa5\x85\x98\x26\x8c\x8a\xe8\x55\x9b\xe4\x2a\x6f\xca\xa9\x13\x61\x27\x7f\x46\xe3\x00\xd3\xac\x30\x49\xb1\x9b\xce\x4e\xe0\xcb\xb6\xf6\x68\xfe\x70\x90\x5d\xd1\x0e\x31\x68\xb5\xc4\x8b\xa6\x71\xc2\x6c\x3c\xdd\x53\x54\x52\x1f\xa2\x3b\x17\xae\xfa\x1e\xe0\x99\xf8\x9b\xa9\x21\x1d\x68\xb5\x3b\x8a\x21\xee\xca\xc4\x8b\xe1\xe5\xd1\x20\x89\x96\xa2\xd0\x24\x05\xa3\x32\x84\x25\xab\xfa\x7b\x49\x80\x29\xc1\x51\x93\xec\xa6\xd9\xc7\xbc\x42\x93\x5e\x4a\xd8\x8a\x9a\xef\xf4\x44\x0b\x0f\xc3\x7c\x3a\xe5\x5a\x87\xad\x7b\x12\x2f\x82\x64\xd4\xf6\x35\x0f\x26\x3b\x0b\x8b\x54\xe3\x1d\x42\xce\x6b\xc7\x5a\xdb\xe9\x53\x05\x70\x95\xa7\x86\x1f\x45\xa6\xfd\x16\x9e\x87\x6f\x1a\x5b\xb4\x8a\x96\xfa\xe9\x4a\x42\x98\x37\xf8\x3f\x3f\x50\x2a\x62\xd7\x02\xc5\x04\xf3\x68\x52\x2b\x76\x38\xc9\xd0\x2b\x9a\x59\x2d\x4b\x97\xa3\xbe\x9d\xa6\xd9\x94\x28\x5b\xe3\xe6\x02\xdf\x6e\x8c\x42\x9f\x0f\xbf\x79\x79\x24\x39\xf5\x29\xd7\x69\xf1\xb8\x86\x25\x1d\x46\x2d\xb1\x4a\x15\xde\xd8\x65\xf9\x94\x74\xd5\xd0\xa7\xf8\x46\x81\x4f\xc6\x36\x93\x22\xaa\x74\xd9\x2b\x2a\xd5\xb3\x5a\xb8\x18\xee\x84\x4b\xe1\x73\xb3\xb7\x14\x90\x7d\x9a\x75\x60\x13\xbb\x6c\xd4\x69\xc9\x88\x1c\xbe\x69\x65\x0b\x49\x57\xec\x74\x2d\x53\xe4\xf1\x35\xec\x0d\x20\x96\xe6\xe6\x6e\xb8\x06\x27\xdb\xfa\xfc\xca\x24\x4e\x97\xa9\x8f\x72\x76\x96\x17\x2c\x14\x42\xf8\xba\xd1\xe8\xf9\x99\x6e\x38\x34\x14\xf0\x67\x72\xd6\xce\x38\xf9\x11\x7a\x26\x29\x22\xc9\x69\xb4\x14\x47\x96\x13\xaf\x42\x9f\xab\x1a\xf8\xd9\x46\xe0\x9c\x3f\xa3\x0c\x4a\x5a\x16\x7d\x9a\x4d\xdf\xd5\x79\x5e\x31\x38\x9e\x6f\x84\x90\xf3\x2f\x1d\xec\x96\x89\x4d\xfa\x82\x7c\xc1\x80\x9c\x51\x69\xa0\x33\x2d\x41\xe1\xc1\x6e\x16\x8d\x0c\x8a\x1a\x42\xeb\x42\x13\x20\x8c\x2f\x2d\x64\x53\x79\x68\x16\x39\xb0\x91\x02\x84\x4f\x47\xbc\xdb\xe6\x02\xe4\x96\x0a\x35\x34\xcd\x22\xee\x5f\x3d\xa3\x60\x3e\x3e\x4e\xc5\xcb\x27\xb5\x90\x9f\x7a\x9f\xac\x1a\x5f\x37\xfc\x19\x28\x77\xd7\xf2\x31\x2e\x63\x35\x3b\xeb\xb6\x8c\x37\x48\x2b\x19\x5a\xa4\x51\xc0\x79\xcc\x45\x68\x89\x87\x7d\x8c\x09\xee\x3c\x46\xd3\x28\x5c\xc1\x52\x94\x87\x43\xa6\x2f\x87\x1d\x3b\xa7\x75\xc6\xce\x35\x5a\xe9\x0f\xef\xf3\x20\x93\x70\x55\xa5\xed\xaf\x68\xc9\x9b\x2b\x2a\xad\x37\xb6\x59\x49\xdf\xef\x7a\xd9\x0e\x08\x22\xef\xa2\xa2\xc6\x5d\x32\x71\xc8\x9d\xda\x88\x2f\xef\x69\x29\xf8\x7b\x0a\xd6\x27\x8c\x49\xc2\xd4\xf3\x56\xa0\x81\x5d\x6f\xb5\x2e\x11\x70\x82\xb8\xe3\xf9\x75\x9a\x05\x61\x71\xf2\xa5\xac\xa5\x38\x5d\xed\x77\x7c\x33\x35\xf2\xbf\x7c\xed\xc1\x53\x79\x61\x2d\x35\x81\xe0\x6d\x2f\xd0\xe0\x8a\x24\x94\x4f\x78\x30\x5b\x2b\x1c\xcb\xa9\x5e\xb3\xf9\x32\x7f\xd5\x16\x29\x97\xfe\xd0\x53\xf8\x13\x8d\x4c\xd1\x4c\xe5\xb7\x1a\x76\x64\xff\xfe\xee\x2b\xe6\xd5\x57\xa7\xb4\x42\x6d\x67\xae\x2e\x9b\x24\x2a\xb6\x2d\x05\x2b\x2a\xbd\x50\xa9\x96\xc6\xc5\x49\xe4\x3b\x0a\x84\xcb\x8a\x84\xbf\x88\x46\x8b\x36\xa3\xb4\xb3\xaa\x38\x4e\xfc\x01\x7d\x4d\xcd\xe4\xa2\xc9\x16\x6d\x06\x83\xa1\x30\x18\x73\x9a\x22\x41\x9a\xa4\xd6\x9d\x1c\xd7\xc8\xf4\xed\xee\xea\x99\x71\xea\xb1\x36\x38\x62\xda\x07\x5a\xb2\x7b\x43\x07\xd8\xff\x07\xb9\x6c\x08\x17\x9f\xa4\xd4\x0b\xb9\x4f\x47\xfe\x22\x32\x68\xe4\x31\x9f\xf8\xed\x9e\x5f\x7e\x4f\x00\xb6\x46\x5e\xf2\xb5\xdf\x05\xd3\x26\x86\x7e\xfb\xda\x53\xae\xb0\x1c\xda\x38\xb6\x09\xa0\xbe\x62\x53\xaa\x67\x13\x02\xa3\x8e\x53\xd9\x9a\x5a\xf3\x67\xfb\xd3\x6d\x99\x3a\x13\xa7\x89\x55\xf2\x44\x8f\xb4\xb8\x0a\xbe\x15\x0b\x77\x5b\xcf\x67\x0a\xb3\xb4\xcc\x15\x2a\xe8\x9a\x42\x05\xe9\x2c\x57\x1c\x85\x36\xc9\xd1\x23\x24\xf9\xea\x77\xe8\x6f\xf9\xba\x85\x69\xe3\xcb\xdd\x1a\x0b\x09\x62\x8a\xdb\x74\xf4\x23\xc9\xf2\x4b\x24\x1d\x04\x16\xd8\x04\x94\x7e\xb9\x8a\x0f\xa9\xb4\x48\x43\x29\x3c\x2e\x9e\x39\xfc\x92\x23\x32\xc8\xac\xe9\xd7\xa2\x80\xcb\x3a\x3b\x75\xb9\xc6\xd4\x95\xd9\xd5\x69\x0f\x52\x82\xf8\xae\xc8\xcd\x77\x9c\x32\xf6\xf4\x9a\xee\xbb\xdc\x1c\xd5\x57\x7b\x22\x8d\x5c\x93\x06\xa6\xe5\x22\x16\x1c\xdf\xa8\x28\x7a\x50\x46\x7d\x19\x3c\xd4\x44\x3e\x64\x53\xc2\x77\x2d\x39\xe6\xf9\x6e\x1c\xb9\xf3\x56\x7c\xf5\xea\x91\x84\x32\x50\x49\x5b\xa5\x8b\x8b\xc0\x1f\x03\xa0\xf2\xb0\x06\xfb\xf4\xad\x62\xe7\x26\x9a\x20\x3c\x15\x66\x13\x21\xc7\xf7\xec\x03\x97\x14\xfd\x79\x6e\xe3\x6d\x3e\xcb\x0c\xf2\x60\x94\x8d\x7e\x4e\x51\x13\x22\xa5\xb7\x74\x23\x00\x43\x41\x25\x7b\xd7\x46\xc2\xb2\x62\xed\xd1\xbe\x59\xad\xe9\x92\xff\x2c\xf0\x79\xd3\x9f\xb5\x15\xd8\x8a\x61\x66\x57\xe8\x91\x6b\x22\xad\x92\x52\xf4\xe0\xf0\xb4\x2c\x32\x33\x60\x8f\x00\xff\x0d\x56\x24\xbe\x6e\x74\x98\x7f\xa6\xfb\xea\xe2\x62\xc7\x57\x3b\xb8\x5f\x58\x48\x6b\xa4\x24\x36\x24\xb6\x4e\x99\x74\x98\xdb\x1b\x00\xe2\xf0\x4d\x5b\xdf\x4b\xdf\x2e\xd9\xa4\x3f\xe5\xf3\x30\xff\x01\x3b\x53\x7c\x21\x1f\xd1\xe8\x08\x60\x39\x4c\xe9\xc0\x45\x98\x7d\x5f\x83\xa1\x7f\xa6\xce\xdb\xab\x9a\x59\x62\x7b\xef\x69\xad\x8d\x89\x64\x05\x7d\xd0\xa5\xd6\xab\x67\x95\xd4\xfa\xd3\xea\x4c\x5c\x4e\x33\xaa\x9b\x78\x1b\x1f\xe8\xa4\x4f\x0b\x1b\x45\xe5\xb7\x4a\xe4\x2d\xf4\xb1\x8a\x39\xe2\x74\xc3\xed\x7a\xee\xb9\x6e\x3a\xb6\x99\xf1\x80\x0a\xdd\x99\x2e\x2e\x74\xcb\xe9\x93\x96\xd2\xb4\x89\x0a\x0a\xf3\x33\x49\x64\x4a\x61\x2a\x56\xfe\x0d\xd7\x89\x19\xa6\xc9\xb2\x05\xe9\x07\x33\xa9\x29\xc2\xb4\x2b\x8d\xd5\x75\x64\xe6\x50\x37\x4e\xf3\x02\x5e\x2a\x92\xa2\x17\xe0\x7d\xf2\xcd\x44\x09\xd3\x14\x0c\x82\xeb\x78\x5f\xe9\xb6\xc2\xfc\xdf\x56\x7f\x9b\x2e\x2d\xd9\x24\x8f\x96\xe1\x14\x08\xc9\x68\x47\xb1\x8f\xaa\x6e\x77\xf2\x09\xdc\x7f\x5d\xd2\xc4\xa4\x1a\x00\xbf\x68\xe2\xa3\x53\x3e\xb5\x00\x42\x18\xce\x26\x04\xbe\xfe\xbc\x73\xed\x59\xc9\x16\x15\x99\x29\xd2\x7c\x3c\xb4\x59\x14\xd2\x2f\x38\x81\x10\x25\x24\xe5\xd7\x5e\x1a\x83\x29\x08\xe9\x82\xf5\x89\x62\x8d\x5c\x57\x02\x3d\xa3\x34\x2b\x06\x24\x25\xec\x45\x92\xae\x69\xe6\x88\x66\x5f\xc2\x91\x85\x7d\x5d\x3a\xa6\xf6\xcf\x28\xc9\x53\x97\xd9\x40\xfb\x92\x08\x28\x6d\x3e\x11\x0e\xbd\xd4\x4d\xd2\xa4\x4c\xa8\x96\xe3\xf2\x84\x40\x88\xf1\x75\x9b\xd4\x5a\x37\x2c\xd3\x51\xda\x51\xe1\xd7\x87\xaa\x3d\xfe\xc3\x3a\x4a\x64\xa9\xcc\xa3\x34\x99\x52\x90\x73\x0c\x29\xe2\x27\xfc\x16\xac\xdc\x86\xaa\x32\xe5\x65\x46\x80\x16\x61\x12\x40\xf5\xfd\xae\x92\xde\xb8\xdb\x78\x32\x22\xb0\x1d\x5b\x41\x68\x08\x43\x5a\xc7\x35\xde\x5e\x51\x3d\xac\xe3\x2c\x1d\x64\x66\xb4\xdb\x97\xc4\x7f\x5f\x33\x20\x3d\x56\x72\x73\xd7\x6a\x35\x37\x5a\xcf\x9c\x68\x9e\xa8\x50\x9b\xd3\x21\x8c\x69\x51\x56\xfd\x5b\x58\x75\xfc\xee\x28\x2b\xa0\xd8\xf7\xc4\x5a\x73\x70\x0f\x76\xf3\x71\x7a\x94\x5b\x76\x44\x58\x5c\xa7\x0a\x9f\x52\xa5\x9b\x68\x99\x2a\xfc\x0a\xa0\xa3\xb5\xcb\x26\x6a\x2d\xd6\xf8\xfc\x1b\x71\xd5\x81\xb9\xae\x89\xc2\x61\xa4\xe9\x1c\x19\xa3\x2c\x65\xc7\xcd\x1f\x21\xdc\x65\x61\x47\xb4\x52\x91\xe4\x3d\x8b\xed\xcd\x37\x93\x27\x3c\x9c\xdb\x2e\x76\x74\xee\x94\xc5\x26\xf8\x66\xcd\x1f\x33\xd1\x68\x14\x25\xe2\xd7\x2a\xf2\xde\x17\x5c\x3f\x5b\xc3\x6d\x98\xe9\x66\x16\x60\x29\x8f\x54\xa4\xf1\x12\xd4\xa2\x5a\x8c\x43\xbb\x9c\xa5\xb1\x2d\x60\x62\x45\x3d\x5f\x85\xfc\x97\x5d\xc9\x37\x1a\xd9\xb8\x6f\x08\x85\xaa\x94\x33\xe6\x5d\xc4\xe4\x81\x41\xa3\x34\xb1\x85\xc9\x22\x31\x75\x38\xbe\x6f\x4f\x54\x31\xa0\xc6\x30\x9b\xa5\x79\x9e\xa5\x95\x73\x55\x85\x21\x08\x8e\xbf\x4d\x67\x29\x5f\x07\xd2\x37\x95\x98\xd1\x94\xcf\x24\x5f\x6b\x92\x65\xa2\x18\xf7\xc0\x43\x89\x4c\xe2\x00\x73\xd2\x0d\xeb\xe5\x3c\xaf\xb5\x70\x6d\xc7\x69\x7a\x74\x5a\xf3\xc2\x05\xde\x39\x42\x79\x91\x75\x03\x28\xcd\xc1\x74\x88\x0d\xd8\xfd\xfe\xfd\xdd\x28\x33\xb5\x1c\xd6\x25\x9d\xc3\xba\xa4\xb8\x4e\x38\xed\xa8\x93\x12\xe8\x8b\x44\xe1\xf6\xfb\x9a\xd1\xe4\x66\x63\xa1\x56\xd6\xae\x48\x63\xce\x7d\x20\xde\xe0\x93\x9c\x6f\x1a\x87\xa4\x84\xf3\x8b\x69\xd2\x9f\xf6\x85\xfa\x27\xd6\xd4\xae\x04\xd6\x03\x09\x47\xec\x76\x64\xcc\x9e\xed\x35\x51\x50\x33\xdd\x22\x8b\xca\xd1\x78\x28\x5e\x0b\xf2\x08\x1f\xc2\x13\xe0\x9b\x36\xb6\x04\xef\x12\xcc\xcd\x39\x71\x36\xfa\x90\xc8\xb6\x29\x16\x95\x95\xa8\x08\x87\xcc\x3f\x0d\xef\xe2\xa6\xa2\xfb\xbe\xa9\xce\xb8\x38\x2d\x72\xd5\x52\xff\x96\x42\xb9\xbd\xa5\x8e\xcd\xbe\x2d\x6c\x86\xce\xa4\xfd\xfb\x7d\x34\xe4\x45\xc9\x54\x9d\x2b\xac\xce\x58\x6e\x0d\x91\x4c\xaa\xca\xaa\x2a\xc1\xc0\xa4\x1c\x55\x27\xa0\xf0\x03\x09\xe6\xe5\xbe\x92\xe1\xb9\xaf\x2c\xd6\x20\x31\x2b\x62\xd1\x85\xef\xbc\x7a\x04\xbe\xd6\xe2\xb2\xa9\x49\x48\xe3\x79\xae\xc6\x5d\x0e\x28\xe3\x79\x45\xbc\xf1\xfb\x64\xa8\x95\xc8\xb0\xd3\x4c\x55\x8b\x6e\x29\x4e\xb3\xa8\x6f\xa0\x68\xcd\x85\xea\xa0\x46\x23\xe1\x4b\x09\x17\x37\x91\xb3\x57\x3f\x2b\x5d\xe2\x2a\xa5\x77\xa5\x05\x57\x4c\x6e\x41\x32\x00\x2a\x0c\x07\xf6\x39\x3c\x12\xc2\xdc\xf7\x26\xbe\x63\xf0\x96\x72\x16\x07\x66\xb4\x18\x47\xc9\x80\xf8\x66\x9c\x78\xa9\x47\xd8\x9d\xaa\x1e\x62\x63\x5d\xeb\xb8\x9d\xd5\x04\xae\x1d\x04\xc3\xcc\x7f\xd8\x30\xd5\x55\xdc\x97\xa7\x59\x81\x8d\xce\x65\x15\xbf\xca\x0f\x42\xa1\xd5\xa9\xe9\x1e\xf0\xb2\x31\x6d\xac\x24\x65\x78\xd4\xd1\x8d\x33\xc2\x89\x5e\x4b\xd0\x4e\x9f\xf4\xfe\xe2\x52\x94\x87\x00\x8a\x68\x7e\x9b\x89\x2e\x26\xb7\x56\x64\x4d\x14\xa7\x65\x41\xbd\x99\x22\xce\xdf\xf1\x42\xfd\x2a\x2c\x19\x67\xe9\x38\xcd\x4d\xbc\xbb\xe3\xa8\x22\xb6\xaa\xf4\xc1\x3f\xde\x40\xad\x5f\x5e\x4d\x11\x7e\x5c\x41\x5f\x9a\x96\xf0\x00\xe6\xe1\x74\xe0\x5b\x59\x36\x54\xd8\xc7\xe5\x2d\xd8\x68\x56\xbf\x87\x5f\xbe\x11\xfc\xe5\x8f\x31\x39\x51\x12\x66\xd6\xe4\x51\x32\xe0\x7c\x34\xc6\xf5\x17\x81\x3a\xfe\x7e\x51\x8b\xa4\x23\xdb\x7f\xd2\xc7\x28\x04\x26\x92\xf6\x99\xef\xf1\xba\x94\x63\xcb\x65\x4c\xde\x7c\x0c\x45\x03\x2c\xd8\x77\xa8\x55\x8d\x51\x2c\x24\x2b\x8f\xe2\xfe\x34\xe1\x09\x10\xe2\x7c\x9f\xbb\xde\xf8\x13\xb4\x13\x60\xff\x6f\x83\x82\x50\x64\xfa\x68\xf4\x60\x9d\x2e\x68\x4e\xeb\xef\x4c\x94\x6f\xf0\xe3\xb6\xc6\xb4\x3c\x34\x4c\x23\x2a\x90\x56\x9a\x16\xc1\xb4\x36\x97\xe8\x7c\xb7\x20\x7e\x67\x47\x86\xf2\xd5\xc0\xb7\xd4\x7f\x75\xb3\xe4\xd3\xa1\x97\xba\x9f\xa5\x5d\x06\x7b\xf8\xcd\x89\x17\xb4\xfc\x85\xe2\x74\xfe\x71\x6d\x70\xd3\xd5\x7c\x57\xe7\xb9\xe7\x5c\x42\xba\x1a\x28\x57\xae\x74\x34\x84\xef\x68\x06\xd9\x73\x68\xfa\x71\xe9\xec\x05\xa1\xd7\x39\x0d\x87\xca\x2d\x4f\xb7\x01\xa0\x62\x02\x17\xf5\x3b\xaa\x07\x3e\x34\xc5\x30\x8d\xa3\x90\x8d\x1a\xbb\xea\xf4\x8d\xcc\x4f\xa6\xe5\xd2\x98\xfd\x45\x1c\x7a\xcc\x3c\xfc\x4c\x4d\x47\xbd\x12\xc5\x71\x54\x47\x60\x2b\x2f\xe5\xb5\xcd\xac\x16\x95\x21\x98\x5f\x98\xff\x0b\x54\x91\x43\x32\xe1\x04\xe6\x18\xf9\xa3\x3b\x93\xce\xe7\xbe\x24\xa4\xb0\x70\x54\x91\xe7\xb8\xa7\x79\x76\x6e\x50\x17\xbb\x4c\x4c\x35\x88\x52\xcf\xad\x4e\x16\x1c\xe3\x8f\x02\x45\x4f\xc0\x45\x07\xf8\xe0\x0c\xb2\x71\x62\x82\x6a\xb9\xd1\x60\x20\xd7\x77\x3c\xf0\x54\x09\x0f\x51\x27\xc4\x27\x3e\x64\x28\x0d\x7e\xfe\x26\x4a\xc8\x68\xd0\x7a\x03\x9b\xd2\xf5\xf8\xba\x84\x2a\xef\x0f\xe0\xbb\xcf\x10\xb5\x25\xeb\x69\xe9\x7e\xcf\xbb\xea\x40\xb8\x41\x68\x25\x18\x84\xeb\x81\x6a\xb8\x86\x98\xac\x90\xf5\x3d\xe9\x00\x9c\xf1\x20\x2a\x47\x53\x0a\x9d\x7c\x5b\x49\x14\xbc\x4b\x00\x18\x09\xcd\xdb\xb2\x72\x79\x9c\xae\xb8\x18\x1e\x20\xba\xb3\x0a\x50\x77\x56\xa5\xa6\x72\x9b\xe4\x76\xda\xbb\x2b\x6c\x97\x30\x6c\xb7\x31\xb8\xc2\xf3\x41\xe3\xc1\xff\x13\x68\x75\x5d\x22\xb3\x4b\x8a\x1c\x9a\xc0\x30\x36\x7f\x46\x96\x9f\xaf\xf5\x49\x6c\xb2\x8c\x41\xbb\xc0\xf3\xb0\xf3\xc9\x37\x8d\x44\xde\xa1\x97\xba\xc3\x34\x26\x3a\x60\x27\x0d\x7f\x57\xf5\x1a\xde\x0d\x24\x88\x26\xea\x46\x53\xc4\x26\x29\xaa\x20\xda\x15\x57\x6f\xd1\xab\xf3\x75\xd3\xe3\xdf\xdf\xcd\x0b\xb3\x2a\x47\x90\xc8\xab\x2a\x3c\xe8\xd5\xc6\x33\x2d\xec\xeb\x96\xe3\xa1\x8d\xb9\x55\x56\x31\x21\xcc\x7b\xe9\x5e\x5f\x99\x7e\xa0\x28\xfb\x07\xd6\x1e\x45\x38\x2e\x7c\x0e\xaa\x07\xe7\x4c\x50\x53\x9a\x1a\x45\x04\x81\x72\xfc\xf4\x2e\xf5\x79\x4a\x13\xec\x4c\xf5\x7c\x76\x7e\x39\x8d\x4d\x41\xc8\xbe\x9d\xbe\x3c\xb5\x3e\x51\x82\x65\xeb\x9a\xe9\xf0\x22\xd6\x3b\x56\xef\x2d\xc5\xa3\xfa\xaf\x03\x5f\xdb\xbd\x85\x79\x87\x01\x9b\x02\x4c\x05\xd9\xd8\xfb\x2a\x23\x31\xf3\x3b\xfb\x3a\x3e\xac\xbd\xa5\x83\x3d\x4d\xdf\x19\x9b\x95\xcc\x75\x57\x39\x24\xe1\x01\x8f\x24\x7c\x5a\x09\xd1\x2e\xc6\x51\x18\x93\x68\xb0\xd0\x31\xde\x23\xcb\x88\x2c\xfd\x69\xdd\xb0\x74\x8f\xf6\x07\xff\x47\xa3\x54\x35\x73\x08\x04\xd6\x79\x61\x12\xa1\x4f\x6d\xa3\x08\xf4\xdc\x5c\x61\x6c\xa2\xc5\x34\x4b\xa4\x44\xec\xb4\x6b\xaa\xd7\x12\x48\x44\x93\xd9\xfb\xa0\x9c\xd1\x92\x77\x13\x91\x62\xd5\xe3\x71\xc7\x05\x85\x83\x38\x35\x02\x9f\x16\x45\x3e\x7a\x27\x31\x27\x7e\xd9\x98\x38\x4e\x51\x63\x73\xec\xdb\x5e\x23\xed\x42\xdb\xa6\x29\xb2\x32\x2f\xb0\xd2\x84\x36\x42\x73\x48\xa8\xfa\x76\x99\x0d\x6c\x1f\x0c\x00\xc2\xa8\xee\x6b\x3f\x6b\x13\xd5\x48\xc2\x4d\xb3\x7c\x43\x30\x05\xc1\x2d\x7a\xa2\xc2\x1b\x58\x61\x12\x12\x34\x8f\xe6\xee\x28\x4a\xd2\x6c\x93\xb0\xe1\xec\xac\xac\xc9\xc0\xc7\x28\xef\xb6\xf5\x05\x0e\x4a\x93\x99\xa4\x40\x40\x31\xef\xba\x91\xb4\xaf\xfb\x29\xf7\x6e\x09\xf9\x8b\x26\x8e\x72\x8e\x6a\x44\x0a\x57\x91\x29\x5e\xd5\xe6\x30\x2d\x8b\xe1\x76\xcc\x39\xd0\x18\x90\x60\xd6\x4c\x0f\x58\xd5\x1f\x05\x8a\xc3\x86\xcb\x52\x38\xb2\x7f\x89\xdd\x09\x83\x33\xb5\xa6\xd5\x60\x46\xa3\xa8\x18\xd9\xa4\xd8\xee\xfb\x8d\x39\x83\x83\x7d\x77\x51\xf1\x47\x32\xdf\x2b\xf2\x5a\x4c\x50\xca\x37\x13\xbf\x53\x2f\x36\x86\x88\x79\x88\x4d\x16\xa5\xbc\xd4\x99\xb3\x49\x31\xf1\x5e\x51\x43\x44\x89\xd8\x2c\x6f\x38\xd6\x7f\xac\x9a\xe3\xfe\xb8\x31\x8d\x9f\xe9\x66\x65\xec\xce\x18\xf1\x69\x3b\x4a\x8b\x43\x49\x52\x5a\xec\x89\x29\xef\x75\xbf\xae\x28\x82\xff\x13\xc6\x4b\x88\x0e\x36\xaf\xe5\xcf\xb2\xfa\x2f\xbf\x8c\xa8\x88\xd1\x67\xf8\xa6\xee\x96\xf5\xfb\xd3\xda\xc1\xb9\xab\x8b\x2d\x41\x8d\x46\xc0\x7b\x0e\x77\xdb\x7a\x65\xfa\x51\x6e\x06\x99\x15\xb8\x2b\xa2\x9b\x87\x64\x87\x59\xb0\x72\xa2\xf2\x06\x5b\x1b\xc1\x3d\x81\x05\x04\x06\xc8\xcf\x84\xd8\xe1\x93\x30\xa3\xc0\x94\x12\x50\x5c\x10\x82\x30\x61\x97\x55\x63\xe8\xb2\x89\xa3\x7e\x54\xac\x42\xbf\xc5\x65\x07\x2a\x47\x47\x4a\x3b\x3a\x31\xf7\xa4\x2b\xb8\x0d\xb2\xb4\x1c\x53\xe1\x12\x8b\xf4\x3b\x81\x52\xa7\x58\xdf\xd4\x32\xa7\x80\x15\xaa\x79\x3a\xcd\xd2\x04\x7a\x87\xe2\x11\x5e\xa0\x06\x2f\x91\x58\xef\x28\xed\x75\x2f\x18\x8f\x1a\x14\xf2\xdd\x1f\xb4\x38\x28\x73\x94\x74\xcf\xa8\xfc\xe3\xad\xe9\x94\xd7\x5d\xba\xe6\x60\x94\xf6\x58\x9a\x2d\x46\x85\x28\x95\x49\x2e\xd0\x07\x02\x67\x1b\x19\xec\xc3\xfb\xba\x71\xf4\xdf\x24\xc8\x57\xc9\x8e\xa2\xff\xfc\x76\xfa\xc3\x9a\x59\xc5\x20\x33\x03\x28\x1c\xad\x6f\x73\xb8\x04\x5f\x0d\x34\x2f\xf0\x00\x2f\x4c\x3a\xbf\x77\xd0\x49\x16\xb6\xf4\x98\x88\x70\x66\xa7\x06\x82\x52\xa5\xef\xa6\xe2\xed\xdc\x5c\x57\x77\x22\x1f\xde\x57\x73\x43\x85\x08\x4d\x12\x7b\x03\x3b\x82\x35\x95\x21\xf7\xd1\xc7\x16\x2a\x78\xc3\xe6\xaf\xb7\x86\x49\xb1\x4d\x98\xda\x15\x41\xea\xcf\x03\x9f\xfc\xf9\x79\x6d\x63\xc5\xd1\x31\x3e\x0d\x85\x5d\x50\xa1\x12\xce\xb4\x81\x81\xe3\x34\xcd\x2d\xc7\xaa\x6d\xcc\xd0\x2d\x14\x45\x79\x48\xef\x2c\x08\x36\x29\x53\xd0\x2f\x49\x01\xc3\xa3\x34\x5e\x49\x99\x6f\xdd\x87\x48\x34\xae\x7c\xe3\x9a\x7f\x73\x13\x9b\x6c\x75\x64\x99\x6a\x93\xfb\xf0\x95\xce\xc7\x55\x55\x79\x85\xe3\xf1\x94\xd6\x19\x66\x4a\x33\x09\x89\x69\xc5\x60\x27\x1f\x87\xf9\x06\xa0\xf0\x4e\xa0\xeb\x9d\xd4\x4c\x52\x5b\x57\x52\x5d\xf4\x92\x09\xe0\x01\xc6\xbc\x3d\xd0\xb9\x9d\x75\xc2\xf6\x4a\x7a\xc0\xaf\xf7\xbb\x81\x5a\x94\x67\x28\xd3\x89\x0c\xcc\x06\x32\x10\xe2\x11\x54\x3e\x95\x20\x57\x9a\x60\xb1\x85\x6e\x1e\x47\xc4\x96\x4c\xef\x25\x54\x2a\x4a\x18\xfc\x1b\x1e\x8e\x61\x2d\xe0\x0f\x38\x5d\xb7\xf7\x34\xe8\x42\xe9\x54\x6f\x59\xab\xc2\x12\x0c\xc4\x19\x5d\x56\x88\xf2\x41\x99\x17\xba\x45\xe9\x9f\x4d\x6a\x02\xf2\x7a\x91\x95\x59\xb2\x97\x62\x3d\xd8\xb3\x07\x35\xd9\x61\x45\x62\xc1\x59\x5a\xbe\x21\x13\xcf\xa4\x24\x98\x10\x38\x13\xef\x60\xe3\xa3\xdb\xfe\x0d\x5d\x33\xde\x98\x78\xc1\x8b\x5b\x14\x75\xd2\xe1\x9d\x3f\xd3\xf3\x78\xb3\x7b\x20\x0d\xe2\x27\xa1\x21\xc5\x24\x3c\x68\xdf\xb0\x69\x62\x95\x98\x2f\xb2\xe9\x37\xf1\xd0\x7c\xe3\xec\x5a\x99\xa0\xb5\x9c\xe1\x03\xc8\xcb\xed\xed\xf9\xce\xd7\xbd\xaa\x31\x34\x5a\xb6\xcf\x78\x99\xa0\xf5\x40\xa1\x28\x9e\x5c\xf3\x14\x0e\xff\xe0\xd9\x35\x45\x04\xb9\x67\xad\x5a\x40\xa8\x73\x80\x7e\x06\xe6\xea\x86\x66\xda\x16\x12\x4f\xc4\xd2\x37\x68\x1c\x1c\x2f\x98\xe7\xb3\xfc\x08\x21\xb3\x83\xf0\x78\xc5\xab\x6b\x9e\x6d\xfe\x2f\x3e\x47\x46\x11\x43\xfa\x5d\x82\x1e\x90\x69\x78\xeb\xcf\x23\x9d\x88\x95\xf9\x74\xcf\x2b\xb9\x6c\x25\x9e\x76\xe9\x7a\xd4\xa1\xcf\xf3\xaf\x3c\x4f\x6e\xff\x06\x0a\xe2\x1b\xcc\x3f\x2e\xc2\x1d\x78\x68\x91\xee\xd8\xec\x30\x1c\x99\xef\xa6\xe3\x71\x9a\x5b\x9c\x98\x48\x87\xd0\xf4\xa1\x15\xd0\xb5\x6a\xaa\xde\x54\x7c\xa0\x43\xa7\x2a\x6b\x4c\x2b\x3a\xb6\x4b\x75\x77\xc9\xa9\x36\x33\x60\x0b\x63\xc9\xed\x56\x98\xa4\x0f\x26\xaa\xb5\xf5\xb2\xda\x0d\x71\x9a\x1e\x8d\x92\xc1\x0e\x5a\xa4\x38\x46\xff\xae\x12\x07\xfe\x3a\xd9\x03\x04\xdc\xff\x06\x87\xbc\xf3\xde\x16\x14\x0a\xc6\xff\xbb\x76\x9e\xae\xb8\xd3\xdf\x64\x59\xb4\x6c\xe2\x8e\xaf\x86\x3e\x0a\x94\x68\xe9\x23\x4d\xda\x90\x96\x11\x67\x91\xb4\x8e\x3b\x33\x5e\xc2\xdc\x70\xde\x58\x1d\x0d\x3f\xe4\x49\x90\x8c\x72\x8b\x3c\x63\xdf\xc6\x0e\x40\x22\x05\x53\x55\x3c\x6d\xfb\xc8\x38\x8d\x63\x9b\x4c\xa9\x56\x88\x7b\x13\xad\xd6\x4b\x4f\x86\x91\x6a\x2a\xd9\x53\x7b\xc6\x68\xa4\x48\x34\xf0\xa8\x5b\x7b\xba\xfb\x5a\x37\xe3\xdc\x51\x9d\x2e\x8b\x71\x9a\x8e\x3a\xaa\xa0\x0f\x4a\x1a\xbe\x56\xa1\xd8\x20\x33\x49\x7f\x77\x9d\x41\xae\xda\x5e\x6a\x3e\xc4\xd2\x33\x70\xd1\x55\xfe\x1d\xab\xc3\x4f\xb0\x0e\x85\xfb\x46\x25\xbf\xcf\x04\x8a\x7d\xfe\x8a\x02\x0b\xbc\x3b\x51\xfd\x3a\x97\xda\x4e\x5b\xf2\x33\x8e\xf2\x80\x3b\x96\xe6\x05\x61\x1e\xbd\xaa\x96\x7b\xdf\x9a\x65\x16\xa1\xc0\x04\x9e\xd3\xf3\x7c\x6e\x22\x9e\xc5\x62\x39\x80\x1f\xc5\x64\x14\x93\x8e\x22\xa6\x68\xe3\x02\xaa\x3c\x7d\xe4\x69\x61\xb3\x2f\xea\xdc\xf4\xc5\x06\x2d\xe7\x67\xba\x23\xb3\x9a\xe2\x41\x70\x1a\x7c\x1d\x43\xc6\x37\x6e\x3d\x17\x26\xf2\xdd\x2a\xae\xc9\xc2\x71\xe2\xbd\xd7\x28\xd3\x1d\xde\x37\x43\x5c\x7d\x79\x1a\x03\x65\xc4\x79\xb4\x89\x6a\x75\xbf\xdd\xa8\x3c\x1e\xde\xd7\x1d\x1a\xfe\x15\x49\x2f\xd1\x4c\x49\xde\x49\xc1\x7f\xd2\x10\x23\x8d\x20\x06\x14\xca\x7c\x5d\x6f\x9e\xec\x97\x21\x49\x9e\x7a\xeb\x70\x59\x49\xcb\xbe\x39\xd9\x94\xd5\x96\x4a\x75\x93\x22\xbd\x8a\x27\x8a\xac\x1c\x0c\x62\xab\xd9\x7f\x68\x8e\x1d\xe5\x82\x53\x0c\x3c\xa5\x62\x88\x22\x8b\xe2\x58\xe4\x8f\x70\x00\xfe\x93\x89\x27\x8e\xfb\x27\x0e\x95\x63\xc2\xd0\xf6\x6d\xad\x08\xef\xab\xb6\x67\x55\x68\xc0\xe4\x1e\xbc\xd1\x5c\x28\xab\xe0\xee\x58\xaf\xdc\xdf\xec\x7c\xd5\x15\x93\x21\xaf\x89\xb0\x61\x03\x31\x89\xf4\x57\xe3\xdb\xa4\xbe\x5c\xd3\x52\x5e\x5e\x45\xbc\xcf\x5d\x97\x81\xc7\x51\x7e\xf0\xb1\x90\xeb\x95\x28\x8e\xb7\x53\xc3\x94\x74\x95\x54\xef\x8c\x90\x96\x9f\x4f\xd2\x14\xf4\x4c\x02\x5d\xef\xbc\x38\xc3\x79\xce\x3d\x04\x3e\xc4\x28\xfd\xdb\xc9\x13\xca\x68\xae\x3c\x41\x0b\x03\x7f\xf6\x53\x8a\x8a\x60\x98\x98\x01\x91\x91\x76\x13\x1f\x44\x9f\x57\x5d\xa3\xe7\x35\x7b\xca\x3a\x30\x09\x40\xb8\x5e\x57\x70\xb3\x3d\x6b\xf4\xca\x48\xa2\xfe\xbb\x89\xa2\xc5\x47\x21\x1e\x8e\x17\xe7\x06\xf8\x49\x5a\x04\x2b\xaa\x78\x68\xca\x03\x58\xb1\x54\xe1\x83\x3f\x0c\x54\xae\xe2\x5a\xa3\x1f\xaf\xda\x45\x51\x52\x2d\xba\x91\x4d\x0a\x13\x4f\xf9\x02\x2f\xd4\x57\x44\x77\x88\x9e\x40\x76\xb9\x8f\xfc\x87\xa4\x0c\x1a\x89\x56\xad\x50\xe1\xd0\x6f\x0a\x17\xce\x5e\x35\xa8\x26\xd9\xa9\x72\xd6\x77\xe9\x27\x50\xd4\xdf\xb9\xa6\x5c\xc6\x47\xf8\x3d\xc4\xf1\xb7\x94\x8e\x17\xab\x4e\x71\x36\xbf\xc6\x68\x15\x68\x05\xef\x87\x4a\x76\x3e\x43\xe6\xba\x1a\x5b\xf8\xe4\x27\x30\x37\x7c\xa3\x51\x57\x4b\x4b\x4f\x7b\xc9\x92\x9d\x90\x38\x47\xfd\xf4\x2a\xb9\x4e\xd8\x25\xbf\xc5\xfd\xe1\x32\xa8\x95\x5b\x2c\xc1\x42\xb5\x02\x68\xd6\xe6\x3f\xd5\xa3\x9f\x14\xad\xe2\xca\x5d\xc2\xcb\xdd\x56\xd4\x12\xdb\x7b\xea\x9c\x78\x4c\x05\x91\x9a\x8a\x84\x64\x45\x69\x99\x08\x32\xd2\x13\x16\x3c\xbb\xa6\x0e\xa3\xbd\x6b\x7a\xaa\xa9\x20\x82\xd9\x7b\xa4\xf2\x9e\x66\xd1\x24\xfd\x34\xb1\x7d\xb4\xef\x08\xf5\xae\x57\xf8\x05\x83\xba\xeb\xc4\xf5\xf4\xbc\x6b\x7b\x15\x84\x25\x2f\xf6\x7a\x34\xb6\x40\x69\x9d\x20\xb7\xa7\x1f\x80\x22\x00\xf0\xb8\x1f\x6a\xec\xe3\x4d\x2c\x76\x9c\x89\xbf\xc2\xac\x32\x6f\x1e\x66\x95\xe5\x79\x26\x1e\x70\x7b\x07\xdb\x40\xd8\x1f\x15\x4f\xdc\x8e\x9e\xea\x5a\x0a\x7c\xc7\xd1\x87\x6d\xb9\xb3\x61\x34\x18\xc6\xd1\x60\x58\xa8\xde\xf0\x4b\xaa\x37\xfc\xd2\x44\xf3\x5e\x7e\xa5\x64\xfe\x29\x65\xd0\xf1\x80\x62\xdd\xbd\xb2\x77\x5e\x2e\x22\x03\x58\x58\x4b\xc5\x68\x27\x1c\x71\xc4\xab\x48\xa8\x46\xaa\xa1\xc9\x72\xea\xc8\x58\xd8\xe7\xf8\x01\xaa\xe7\x10\x5c\xe9\xe6\x8d\x3e\x3b\xdb\xcd\xcd\x4a\x47\xf5\xdc\xbd\xa5\xd8\x6c\xdf\x6a\x4d\x94\x98\x84\xf8\x37\x39\xfb\xb4\x71\x5d\xc9\xe9\x8c\xa3\x38\x4f\x13\x10\xa0\x30\xbf\x26\xc5\x4c\x02\x59\xd2\xfb\x49\x0b\x8a\x5e\xc1\xfb\xc8\x21\x54\xbd\x28\xca\x81\xf7\x02\xdf\x4e\x71\xb1\x81\x05\x38\xf4\x52\x77\xb1\xe4\xb1\x3c\xec\xc5\x5f\x68\xb1\xf0\x8d\x2a\xa3\x84\x59\x99\x17\x68\x9c\x12\x69\x90\xea\x53\x70\x2d\x4f\xea\x9c\x35\x37\x4e\x89\x6d\x56\xe2\x52\x65\x94\xe7\x96\x60\x9a\x28\xd3\xa0\x6c\x2f\xd0\xe9\x9a\xe8\x94\xa6\xdf\x4c\x33\x33\xb0\x38\xcd\x61\x8b\x1f\xab\x8e\x9c\xef\x4c\x38\x97\xe7\x23\x9e\x33\xad\xe4\x76\x26\x3b\x6a\x3d\xce\x16\xa8\xee\x87\x8a\xc3\xf6\xa1\x96\x6b\x58\x49\x59\xf1\x0e\x7d\x0f\xe7\xc9\x10\x60\xa3\x7c\x6d\xe2\xbb\xff\xaf\x20\x60\x40\x86\xf5\xa1\x83\xde\x2f\x99\xd0\xf6\xb7\xab\x36\x5d\x3e\x30\x90\x7b\x47\x86\x08\x83\x78\x82\x66\x4b\x50\x8a\x4a\xf9\xe3\x5a\xad\xc7\xff\xcf\xd5\xcb\xc0\xbf\x2b\xe7\x2d\x51\x6c\xe0\x18\x5a\xa7\x57\xe1\x54\x46\xe0\x61\xe8\x1f\x28\x8d\x3b\x2e\x2c\xd5\x88\xea\x61\x0a\x76\xae\x61\x71\xe1\x7c\xfb\x0e\x16\x01\x2c\x25\x4a\xa9\x4a\xfb\x4e\xfa\x65\x34\xd3\xc9\x8a\x35\x47\x09\x06\xae\x8a\x3b\xf4\x10\x12\xc1\xfa\x3f\x85\x7f\x56\xe4\x4f\x51\x84\xcb\x87\x33\x8c\xab\x1c\x42\x34\x97\xd8\xce\x37\xe0\x9d\x23\x29\x74\x57\x1f\x36\x5f\x0d\x7c\xa2\x0d\x49\x0b\x1e\xde\x35\x4f\x82\x75\x56\x4b\x8e\x55\xff\x21\x4d\xa2\xef\x06\x54\x42\x17\xd7\xc0\x17\x07\xd8\xfb\xac\x31\x4d\x20\xd3\x08\xde\x5f\x40\x9f\xaf\x04\x8a\x0e\xfd\x4f\x1a\xec\x9e\x73\x73\xf3\x22\x72\x6c\x54\x6a\x0d\x63\xc1\x42\x2b\x7c\xd3\xc8\xc8\x1d\x98\xeb\x0e\xcd\x8a\x89\x22\x93\x74\x14\x02\xef\x86\x42\x7a\xdd\x00\x58\x9f\xd3\x1a\x26\x89\x46\x69\x99\x8b\xde\x09\xeb\x9e\x4f\x14\x71\xf0\xbb\xaa\x77\x61\x1c\xaf\xee\xf1\x27\xea\xaf\x11\xd6\x01\x99\x1b\xd6\x20\xd0\x0a\x0e\x88\xe6\xae\x63\x3e\xe0\x39\xf1\xf8\xb8\xa2\xad\xe7\x67\xe7\x7c\x32\xea\xa5\x1f\x4d\x54\xaf\xc9\x8e\x35\x2f\xde\xf2\x09\x5a\xfc\xc0\x18\xec\x56\x19\x17\xb3\x92\xec\xa8\xfe\x4a\x9a\x8e\xaa\x67\xc4\x54\x6d\x5f\xf3\x35\x8e\xdd\x3d\xfa\x0d\x7a\x94\x4f\x7e\x0a\xe4\xae\xc2\x32\xe1\xfb\xc0\xa6\x71\x08\x0b\x22\x54\x27\xbb\xc6\x36\xdf\xe9\xf9\x4d\x90\xb7\x75\xfd\x0d\x9e\xba\xe9\x97\x13\xd5\x74\xfe\x38\x50\x59\xc2\xb3\x9a\xf5\x1f\x27\x3f\x1e\xf9\x87\xb4\x93\x61\x90\x1f\x36\x22\xb5\x23\x33\x87\xba\x4b\x99\x15\x02\x48\x97\xb2\xa8\x7e\x92\x6f\x1c\xd1\x53\x91\x99\x7e\x84\x22\x9a\xd2\x45\x58\xd7\x3d\xfc\xeb\xb5\x42\x65\x9a\x58\x1a\x3b\x18\xc7\x73\xd8\xbc\x0e\x3e\xea\x7a\x5d\xc0\xf5\x0c\x2f\xf4\xa3\x89\xea\xf3\x05\x5b\x87\x16\x65\x17\xa2\x1d\x1d\x0f\x8c\x7e\xc7\x60\x41\x22\x52\x3e\x43\xdf\xcc\xd7\x6d\x4c\x8e\x99\x25\x3d\x45\x9c\x8e\x0e\x07\xed\xdc\xcb\xe6\x69\x3a\x73\xa8\x6b\xc7\x29\xbd\xb2\xc3\x83\x78\xc6\xe0\x37\x3c\x58\xa3\xcc\x87\x56\xa8\x54\x85\x17\xb9\xfa\x62\x49\x47\xca\x1f\x0e\xd2\x3c\x8f\xc6\xc8\xf7\x71\xcf\x97\xe2\xd0\xb9\xd4\x96\x0e\xb1\x51\x31\x04\x39\xfb\x0b\xae\x01\xa5\xe3\xe4\x94\xc0\x55\x8f\xad\xf3\x88\x8e\x04\x97\x09\xae\xf6\x01\x86\xf9\xf1\x44\xb3\x1c\x56\xb6\x13\x6b\x77\x6f\xaf\x19\x31\xcf\x77\xa3\xd1\xb8\x8c\x5d\xf1\x1a\x6f\xc0\x5d\xe7\x7c\x53\x4b\xd6\xbe\x92\x52\x75\xfe\x05\xae\xc3\x31\x03\x9f\x68\x3b\x13\x4a\x46\x54\x9f\x3d\xf0\xf8\x86\x27\x2c\x8a\x32\x3b\xe5\xcf\x4e\x54\x5a\x71\x94\x4d\x53\x32\x59\xb0\xbf\xcd\xba\xc5\x0b\x24\xef\xde\x51\xc1\xfc\x03\x95\x9b\x78\xa0\x7a\x10\x51\xc1\xe3\x92\x2e\xec\xf3\xf5\x89\x07\x5e\x5d\x0e\x54\x17\x3f\xb2\x99\x30\x2d\x37\x75\xcd\x9e\x5b\x61\x85\x0a\x50\x4e\x56\x12\x76\x9a\xf6\x04\x36\xeb\x8a\x1b\xf4\x92\x6a\xf5\xff\x05\xd6\xb7\x30\x3d\x38\x71\xdf\xd8\x1c\x4b\x75\x1f\x31\x7e\x45\x9a\x8a\xf7\xaa\xe5\x3e\xce\x31\xd0\x30\xf8\x40\x8e\x09\x11\x6c\xc7\x29\xb2\x9f\xd1\x92\xb7\x8d\xf4\x81\x44\xc5\xaf\xa4\xb6\xa3\x5c\xd4\x7f\xa9\x89\x36\xfe\xe5\x64\x33\x31\xae\x7c\x8a\x88\x94\xf3\xdc\x82\xaf\x5d\xcc\x9c\xe2\x9a\x39\xd5\x40\x57\x83\x4b\x39\x83\x8f\x05\x1b\xbd\x11\x78\x47\x19\xa3\x2d\xf1\x93\xea\x1a\xb5\xab\x69\xd2\xdf\xee\xd5\x47\xff\xfd\xc4\xbb\xe2\xcc\xf3\xc5\xff\x81\xe3\x58\x37\xed\xb8\x82\xe6\x01\xd7\xcc\xe3\x76\xe0\x52\x66\xca\xca\xb1\x57\x1d\x81\xbb\x54\xd3\xe6\xae\x9e\x6f\xe7\xc8\x57\xa2\xa5\x42\x0e\x31\x17\x85\x54\xf6\x91\x6f\x5c\xcb\x19\xba\xb4\xb3\xd5\x8e\xae\x1b\xf8\x72\xea\xbd\x8f\xd5\xc0\x84\x45\x9a\xf2\x45\xf9\x0b\xaa\x1b\x85\x6b\x8f\x28\xb9\x7c\xd0\xc8\x9b\xcd\xcd\x75\xfb\xa6\x00\x07\x34\x4e\xb2\x3d\x3a\xba\x7b\x5f\x13\x3c\xed\xe8\x79\xd2\x83\x81\x59\x86\xb6\x11\x97\x47\x26\x3e\x8b\x72\x1e\xa8\x36\x26\x60\x67\x44\xa7\xa3\x63\x5f\x98\x77\x6c\x9f\x6d\x45\xc4\x61\x09\x25\xdf\x2f\x3b\x5d\x0e\x55\x57\xba\xaa\x34\xe5\x5f\x53\x89\xe7\x7e\x66\x56\x40\xf2\xe4\x1a\x1c\x5d\x6f\x2b\x4b\x88\x49\x84\xff\xa4\x6a\x8b\x8c\xe2\x78\x2f\x76\x33\xaa\xcd\x67\x34\xb2\x10\xbb\x0e\xce\xd3\x06\xaa\x16\x8c\x92\x5a\x53\x94\x55\x77\x71\x6c\x3a\xfd\xaa\x03\x02\xc9\x7e\x58\x79\x97\x1b\x0c\x96\xc6\x52\x82\x53\x0e\xa7\x6b\x77\x8f\xfc\x34\xc1\x5d\x79\x40\xe9\x7f\xc6\x71\x88\x35\x7e\xdc\xa5\x4f\xb3\x28\x65\x67\x0b\x03\xf9\x3d\xdd\xb0\xfc\xbd\x1a\x19\x51\x52\x98\xb0\xe0\x0e\x54\xfd\x2a\x7c\xdd\x26\xf3\x11\xa6\x49\x62\xc3\x22\x75\x74\x1f\x42\xf8\x43\x4f\xcf\x37\xad\x1c\x55\x61\x99\x15\x26\x4a\x3a\xba\xf8\xc3\x62\x92\x7c\xe3\x61\xd7\x66\x1c\x15\x26\x1e\x98\x28\xe1\x33\x4e\x70\x82\x1d\xa5\x14\xdc\xec\x04\x49\x49\x3e\x72\xff\x8c\xcf\xdc\x2f\x08\x0d\x1c\x2a\x69\xf8\xa1\x33\x8a\x96\x2e\x2f\x4c\x11\xe5\x45\x14\xe6\xdb\xb5\x87\x8a\x8f\x3a\x2f\xde\xc1\xfb\xbf\x4e\x5f\x83\x1d\xf2\xad\x40\xf9\x02\x57\x26\x1e\xc9\xdb\xb4\x82\x48\xa2\xa6\xc9\xc0\x66\xb4\xf6\x74\x4f\x16\x96\xdb\xd6\x35\x25\x61\xb2\xab\xd1\xc9\xfd\x99\x6e\xdf\x26\x0e\x60\x20\xbd\x8b\x34\x34\xd2\xbc\xe8\xdb\x24\x16\xed\x20\x4a\x12\xe1\x4d\x95\xfd\x40\x0b\x16\xf6\xe1\xbe\x12\x31\x9e\x5e\xf3\xde\xe8\xdf\x69\x80\xd8\xe6\xe6\x0e\x92\xd6\x50\x5e\xa4\x23\xc9\x84\xe3\x07\x1f\x07\x4a\xd0\xf7\xb1\x02\x09\x9b\x28\x1b\x57\x21\x7e\x4e\x40\x0b\x94\xcf\xef\xd1\xd9\xc1\xd7\x35\x42\x9b\x90\xcc\x09\x02\x7a\xb0\xe1\x21\x84\xe1\x3a\x3f\x1e\xfe\x62\x63\xff\xcf\x1c\xea\x16\x2b\x96\x83\x2d\x89\xd4\xab\x4f\x4b\x08\xaf\xac\x6a\x61\xc7\x43\xcb\x91\x84\xe3\x26\x76\xb8\x8e\xab\xca\x8f\x1c\x45\x49\xa9\x45\xf9\x6e\x51\xfc\xc6\xd7\xba\x7a\x65\x07\x26\xfe\x84\xe7\x51\x3a\x59\x17\x7b\xf3\x4e\x34\x6b\xb7\x49\x59\xab\x5a\x22\xc2\xe8\x4e\x86\x0f\x8b\x8a\x8b\xab\xc2\xd5\xee\x33\xeb\x37\xc0\x1b\x25\x71\x92\x92\x32\xfd\xcf\x6c\x2b\xf9\x0b\x28\xdd\x27\x64\xbc\x74\x56\x09\x89\xbc\xa2\x90\xbc\xa1\x70\xce\x37\xda\x88\xcd\xc7\x69\x61\x93\x22\xaa\x7c\x6e\xc7\x08\x0c\x36\x59\xbe\x76\x3e\x48\x5e\x98\x81\xa5\xc3\x52\x84\xe4\x3a\x8e\x8f\x7f\x23\xa8\x89\x7e\xd6\x48\x53\x3b\x4e\x1a\xf4\x4e\x0d\x42\xdd\xa8\x2c\x1d\xde\xd7\x1d\xa7\xaa\xfa\x82\x69\xbd\xa8\xa6\xf8\xe2\xe4\xd9\x7a\x46\x60\x61\x5f\x77\x76\xf6\xe0\x76\x05\x7c\xbf\x84\xd8\x55\x64\x02\x68\x83\x89\x7e\x00\x7d\xab\x6b\xa0\x77\x33\x79\x85\xf6\x37\x5f\xab\xa4\x5b\x1e\x0e\x6d\x5f\x61\xcf\xb0\x26\xee\xa8\x06\x94\x3b\xcd\x80\x67\xfe\xd3\xdd\x70\x18\xd9\x25\xc5\x81\x7e\xb6\xa6\x23\xd5\x54\x02\x3c\xd8\x8d\x23\x56\xc9\x14\x1d\x7e\x6f\x7c\x50\xf2\xc3\xb9\x75\x43\x73\x1c\x9b\x68\x45\x42\x65\x38\x9b\xb7\x27\xda\xf5\xbc\xad\xb2\x14\x63\xb3\x3a\xb2\x49\x91\xef\xaa\x7e\x02\x91\x14\x63\x5a\x91\x48\xdf\x82\x0c\x31\x43\x21\x03\xdd\xba\xad\x7a\x0d\x7e\xa0\x28\x66\xb9\x61\x09\x21\xe0\x5b\x34\x7e\xf8\x00\x27\x4d\x71\x06\xdf\x57\xac\x2f\xe9\xd2\x52\x14\xda\x7c\x9b\xd7\x40\xe2\x94\x1b\x68\x23\x80\x34\x44\x15\xfb\x87\xaa\xf5\x97\xf1\xbd\x9c\xc7\x51\x9d\x51\x79\x34\x8a\x62\x93\xed\xf2\xe8\x3e\x66\x47\x16\xfa\x40\x95\xb8\x3f\x45\x0f\x58\x63\x3e\x15\x74\xa6\x8f\xd0\x6f\xd3\xbe\xc7\xa7\x4f\x4f\x54\xe8\x7f\x5e\xe9\xc4\x9d\xac\x43\x48\x5e\x89\x3a\x3e\xa7\xf5\x3a\x56\x37\xdf\x28\xf2\x18\x93\x47\x66\x67\xf5\x77\xa8\xfa\x70\xd3\x16\xd0\x02\x1f\x4c\x7c\x5f\xfa\x6b\x3c\x81\xfc\x3f\x30\xde\x98\xae\x47\x8a\x3b\x93\xb9\x0e\xf0\x1f\xcc\xe7\x2b\x0d\x3d\x4f\xbb\x80\x27\x1f\xda\x65\xeb\xfa\x9d\xe0\xeb\x9c\x52\xe2\x66\xa7\xda\xd4\xfa\xfa\x65\x78\x54\xf1\x86\x80\x72\x5c\xe4\x15\xab\xb8\x0f\x3e\xf4\x7b\x9a\xf5\xb6\x88\x46\x65\xcc\xd4\x21\x88\xc1\x10\x34\xf0\xb5\x32\xfc\x36\x5e\xfd\x04\x6d\x4e\x97\x8e\xf6\x47\x19\xb2\x1d\x48\x49\xfc\x06\x65\xb2\xa8\x2a\xff\xb3\xbf\xde\xf3\x07\xca\x35\xb8\x59\xd2\xba\x42\x53\x84\xea\xc5\xcf\x27\x8a\x47\xbf\x03\x07\x15\x6b\xf3\xae\x1f\xdf\xf5\x4f\xad\xd5\x4f\x7b\x85\x61\xf9\x04\x35\x1c\x49\xf9\xda\xbf\xca\xa7\x90\xd3\xc5\xf6\xdb\xaa\x64\xf5\x97\xd3\x38\x3c\x0a\x4d\x84\x19\x6e\x2f\x5c\x87\x11\xe6\x9b\xc9\x2e\xe1\x3a\xe8\x6f\x27\x83\x2e\x3d\xd5\x3e\x45\x79\x5a\x6b\xb5\xec\x80\x22\x98\x00\xe9\x3b\x2f\x0a\xa6\xff\x09\x3c\x02\x9c\xe2\x07\x6d\x9d\xf0\xe3\x32\x0b\x87\x26\x47\x31\x15\x2b\xe1\x03\x55\x33\x6b\x02\x23\x17\xf6\x41\xc2\xbd\xf2\xcc\xaa\xcf\x88\x19\x54\xb9\xe4\x2b\x13\x5d\x59\x8e\x92\x30\x1a\x33\xc9\x32\xea\x21\x00\x58\xf0\x75\x23\x6a\xf8\x6c\xd7\xe4\x47\x2d\x88\x2e\x64\x6d\xd7\xd6\x69\x6d\x05\x7b\x68\xc4\x72\xb4\x1c\xf5\xa1\x84\x88\x14\xf0\x4d\x64\x18\xf8\xa6\xf2\xfe\x1c\xc2\x39\xc9\xd3\x38\xea\x9b\x82\x39\x49\xc5\x69\xd0\x1e\x84\xae\xbd\x55\x7f\xf8\x0c\x7d\x33\xe0\x1e\x37\xc8\xae\x62\x91\x6c\x87\xfd\xc3\x2a\x9b\xea\xa9\x6e\x98\x8d\x89\xd2\x18\x61\x1d\x53\x3c\xcc\x9f\x6a\x21\xa8\x1d\x6b\x8a\xea\xe0\xfd\xc0\xeb\x4b\x7d\x8f\x12\x21\xf0\x40\xb7\xac\x51\x2c\xe0\x24\x14\xab\x17\x43\x34\x7d\x2b\x50\xd4\xd0\x67\xd9\x0a\x08\xe2\xb8\x96\x59\x3e\x2c\xdd\xa3\x40\xbe\x22\x03\xb9\x8d\xf6\x08\x2c\xd7\x1b\x4a\x5c\x7d\xd9\x26\x45\x99\x31\xb5\x8b\xa3\x3b\x70\xf8\xf7\x0f\x5b\xd9\xae\x73\x22\x5c\x72\xfc\x18\xac\x74\x26\xc2\xc0\x9f\x6c\xa8\x0d\x7f\xfe\x08\xcd\xb2\xe4\x96\xe8\x45\x1c\x56\xce\xa5\x6e\xcf\x35\x96\xc8\xcb\x2f\x77\xfb\xe9\xa0\x26\x78\x72\xa9\x96\xd4\xf0\xa6\x7e\x31\x8b\xfa\x03\x51\x25\x67\x9a\x5e\x95\xf5\xbf\xe8\x74\x0a\x8a\x34\x1b\xf9\x1a\x2b\xfc\xcb\x1f\x61\x9e\xf8\x66\xb2\x57\xa9\x6e\xae\x1a\xc8\x4f\xc1\xa0\xdc\x0a\x3c\x68\xfc\x96\xaa\xde\x8c\xa2\x84\xc4\x42\x66\x0e\x49\x43\x21\x5a\x0d\xa5\xbb\xd0\x21\x3f\x13\x53\x84\x43\x26\xaf\x76\x72\xfe\x3c\x99\x22\xee\xdf\x06\x5e\x4a\xcb\xc5\xd8\x4e\xfb\xe4\xfd\x56\xca\x4e\x21\x53\x05\xb2\x55\xf8\x5b\xe7\xc9\x94\xb1\xca\x60\x83\x63\x6f\x61\xdf\x82\x67\xbb\x64\x24\xac\x48\x7e\xf9\x7e\x9e\x26\x05\x0f\x65\x2c\x0b\x13\x79\x37\x47\xa4\x52\x3b\x5e\x36\x55\xb9\xc1\x59\x34\x88\xf8\x50\x91\x73\xaa\x7a\x44\x39\xcd\x9a\xa5\xbf\x99\xee\xa8\x18\x51\x58\xa0\xfa\x31\xdd\x8d\x02\xb0\x54\x9e\x5f\x42\x28\x5e\x25\x80\x7e\x49\xf9\x02\x97\x82\x4d\xde\x5f\x15\xa8\xec\xdf\xff\x8c\x52\x73\x3f\x81\xe5\x0a\x3a\x60\x56\x8d\x83\x3f\xf4\x53\x40\x2c\x1d\x5f\xa8\xc7\xd9\xd7\x9c\xe7\xb7\xe8\x98\xc3\x61\x7f\x83\xdc\x06\xac\x9c\x1b\xaa\x1a\xfd\x21\x39\x45\x38\x20\x40\xb7\x21\xa9\x51\x5a\x4e\x8e\xca\xc6\x2d\x12\x2e\x54\xea\xd4\x9f\x30\x77\x74\x1c\xf5\xda\xcf\x60\x14\x11\xf2\xbf\x4d\x67\xe3\xc6\xda\xa4\xae\xe3\x5b\xc5\x92\x8a\xd7\x6e\x5b\xcf\x37\x1e\x6e\x5b\xf3\x7d\x72\x62\xdc\x0b\x6c\x7d\x18\x39\xc0\xad\xf9\xba\xad\x41\x7a\x89\xd6\x00\x6f\x33\x21\xa0\xec\x28\x6a\xb8\x96\xcf\xac\xd8\x38\x4c\x47\x16\x0d\xda\x78\xf1\xff\x30\x51\x0c\xcf\x5a\xb1\xf4\x81\xe2\x3b\xf4\x5c\xf2\x23\x9b\x85\x8c\xed\x01\xca\x08\x90\x25\x91\x4b\x56\x70\xec\x26\x43\x42\x15\x61\x97\xd9\x32\x91\x89\x4c\xd1\x5c\xc3\x13\x44\xa8\xeb\xf0\x12\xae\x5f\xa7\xc9\xa3\xbd\x7f\x7f\xb7\x6f\x97\xa2\x30\x2a\x98\x56\xc8\x49\x71\x1f\x96\x5e\x66\x46\x54\xc3\xc0\x69\xa9\xdf\x61\x1a\xf7\x77\xd0\x8c\x63\x06\xae\x2a\x4d\x24\xd6\x09\x82\x21\xe4\x3a\x3d\xdf\xd0\xeb\x61\xfa\xb7\xaf\xd1\x9a\xe4\x8f\x63\x4d\xa2\xe2\x77\x55\xe5\x95\x47\x69\x16\xdb\xd5\x5a\x1f\x9b\xa2\x73\xbb\xe6\x94\xd0\xca\x24\x1f\xdb\x30\x5a\x8a\xa0\xf8\x20\x34\x93\x0c\x99\x81\x6b\x05\xbd\x44\x00\x14\x77\xc2\xb1\x40\x70\xa4\x5d\x3a\x42\xb3\x59\xcb\x4d\x96\x70\x5a\x1f\xd3\x5e\xe0\xeb\x89\xef\x03\x5c\x89\xfa\x36\x1f\x93\xe0\x11\x4d\x00\xa0\xbf\x77\x94\x3a\xf2\x1d\x55\xe9\x0f\xe3\xc8\x26\x05\x9a\x5c\x44\xb6\xc5\x43\xe6\xce\x7b\x88\xef\x3f\xbd\xdf\x70\x4f\x3f\xd3\x2d\x4c\x72\x94\x6d\x3b\x96\xc7\x45\xad\x68\x7a\xb1\x81\xb1\xfb\xdd\xee\xd8\x64\x05\x30\x9e\xd8\xa1\x58\x5b\x28\xe3\xae\xeb\x5a\xe6\x19\x47\x09\x9b\x0f\xd3\x6a\xf7\xb8\x15\x05\x27\xec\xac\x62\x53\x78\xac\x1a\x5c\xbd\x46\xce\x38\x4b\x8b\x34\x4c\x59\xaf\x57\x4e\x58\xef\x4b\x5f\x0f\x7c\x81\xe7\xdd\x9a\xfe\x0b\xd9\x7f\x1e\x3e\x91\x18\xef\x38\x45\x9e\xcb\xee\x17\x72\x6b\xf2\x34\x91\x1e\x21\x58\x96\x7b\x8a\x5b\x65\xaa\xa7\x14\x3c\xae\x36\x80\xe3\x95\x25\x36\xe3\x5a\x80\x8d\xb4\xf5\x39\xc5\x41\x75\xae\x2d\x45\x60\x40\x95\x91\xf0\xc9\x26\xce\x78\xbd\x6f\x42\x70\x7d\xb1\x29\x07\x43\xde\x4c\x8e\xb1\xd8\x65\x13\x1e\x4f\x7c\xc1\xaa\x49\x44\x71\x60\xae\x9b\xd9\x65\x9b\x94\xa2\x9b\xec\xf4\xdf\x1d\x5b\x24\xb3\xcb\x49\x7f\xb4\xee\x28\xcf\xfb\xe9\x48\x51\xd2\x6e\x85\x1f\xc7\x37\x6b\x0a\xe4\x30\x34\x23\x28\x3d\x8a\xac\x00\x0d\xbd\xf3\x41\x9c\xae\xc6\x87\x24\xef\x89\x2f\xf0\x06\x2b\x2e\x59\xdd\x9d\xf1\x25\x81\x6f\xf6\x6b\x62\x4d\x0e\xef\xeb\xe6\xa3\xf4\xa8\x93\xb4\x80\xaf\xff\xa1\x6e\x32\x6f\xba\x61\xb3\xb3\xdd\xca\x7c\xf3\xca\xd5\x80\x64\xcd\xbc\x87\xc1\xfd\xa3\x86\x49\x9b\x7f\xe9\x60\x37\x8e\x46\x91\x9b\x65\xae\x25\x4d\xfc\xb9\xd1\x6c\x65\x7a\x71\xc6\xe7\x20\x50\x77\x60\x09\x51\x01\x81\x55\xbb\x1f\x23\xf1\x40\x73\x97\x9a\xd0\xe6\x94\x12\x42\xcd\x1a\x85\x65\x58\x09\xa0\xe5\xe0\xc5\xbe\x89\x64\x97\x53\x18\xf0\xf8\xf0\x2d\x3a\x58\x7b\xe4\x92\xc1\x69\x18\x9a\x9c\x4a\xc1\x35\x02\x8a\xb3\x1a\xe4\x7b\x56\x89\x10\x13\x91\x73\x51\x16\x25\xf0\xaa\x38\x70\xf0\xca\xac\x1a\xae\xd7\xcd\xfd\x36\xa6\x7a\x9b\xf4\xe9\x7c\x95\x61\xc3\x7a\x43\x08\xcc\xd7\x6b\x4d\xe6\x94\xf9\xee\xa2\x49\x8e\xda\x8c\x17\x2c\xd2\xd4\xa7\x94\xd3\xce\x78\x67\x8c\xe3\x77\x5a\x48\xc9\x0e\x76\x8b\x61\x96\xae\x28\x02\x89\x9b\xba\xbf\xfb\x66\x93\x06\x6f\xa6\x3b\x36\x11\x64\xb5\x24\x2f\x44\x3b\x1f\x99\x94\x0f\x03\xc5\x0f\xf8\xbe\xeb\x59\xcf\xec\x72\x1a\x97\x54\x5e\xcf\x70\x98\x38\xda\x0d\x57\x17\x7d\x47\x75\xcf\x0f\xed\x52\x81\xbf\x63\x98\x03\x1d\x00\x02\x79\x78\x5a\x65\x5a\xab\xd0\x6a\xb0\x0a\x88\x14\x06\xfe\x62\xe0\x81\x55\x37\x03\x9f\xad\xad\xb5\xa8\x68\x4a\xe1\x17\x5f\x78\x91\x07\x50\xfc\x93\x8e\x63\xe5\x64\x7f\x11\x75\xcf\xeb\x6d\x4a\x1f\x43\x33\x1e\xb3\x6e\xbd\xc3\xd5\x3a\x6d\x32\x34\xd0\x89\xbe\x8f\x62\x6c\xd6\x2f\x51\xd9\xc4\x2c\x31\xb1\xd2\x7e\xe6\xbe\x4f\xd7\x71\xef\xf9\xc5\xb0\x15\xe1\x1c\xdc\x68\x78\xf4\xf3\x0b\xf3\xdd\xa5\xe8\x98\x90\xda\x4b\x34\x4d\x2f\x2e\x71\xb6\x86\x84\xc6\xe6\xd8\x14\x44\x1a\x7c\xf5\x87\x8f\x26\x29\x6f\xb7\xb0\x94\xc4\x96\xe2\xfd\xb9\x39\x4e\xe2\x1f\x0f\x7c\x42\xff\xb8\x12\xc9\x31\xd9\x08\xb2\x1f\xc8\x71\x5d\x9c\xf8\xac\xe7\x7d\xd5\xa5\x7b\x2f\x50\xe5\x55\xb2\x95\x2e\xc7\xb5\x62\x86\x5c\xbd\x71\x90\xa5\xea\x4f\xa5\x94\xa7\xf4\x41\xbe\x52\x46\xc5\xea\xee\x3a\x8a\xcf\xb5\xe3\xbd\x1f\x28\x3e\x92\x1b\x30\x07\x7c\x43\x8e\xb2\x6e\x7d\x42\x58\x77\x3c\xa8\x79\x74\x9a\x98\x1a\xee\x34\x62\xe7\x7b\x0a\x88\x7e\x42\xf5\x57\x2f\x99\x10\xfd\xa4\xae\x65\x65\xa2\x08\x05\xd0\xef\xa0\x89\xf7\xc5\x79\xad\x4c\xbe\xfc\x4c\x1b\x83\xe0\xc0\x8c\x6c\x0e\x60\x39\x9e\xff\x31\x72\x4f\x72\x02\x60\xac\xe0\x7a\x6d\xeb\xf9\x25\x7e\xc8\x26\xd0\xe1\xc2\x52\x9c\x5a\xf3\xed\xb2\x50\x79\xc7\xe2\x7a\x4a\x09\xf0\x5d\xd6\xa5\xea\x72\x35\x4a\x06\xbb\x55\x57\xc2\xcd\x89\xd6\x09\x54\x65\xf6\xc7\x34\x22\x58\xb8\xa8\xbb\xc2\xf3\x7c\xaa\xa7\x08\x86\xa6\x74\xab\xca\x79\xec\x0b\x6d\xeb\xb1\x5e\x8e\x63\xa2\xa4\x07\xf9\x49\x57\x09\x28\x93\xca\x11\xe9\x38\xfa\x48\x36\x3a\x52\xb9\xad\x9e\x0c\x4b\xf9\xa7\xad\x64\x87\x2b\x59\xca\x7c\xeb\x5e\xd4\x6f\x9f\xf3\x08\x5b\x89\x1b\x33\x6b\xc1\x84\x5e\xeb\xae\x11\xa1\x43\x8f\x2b\x76\x78\xc7\xbd\x1a\xf8\xea\x8d\xeb\xbf\x9e\xe8\x9e\xae\x87\x58\x64\x52\x09\xa3\x01\x12\x7c\xec\x94\x17\x58\xba\xa6\x66\x08\x95\x41\x00\x63\xbe\x8d\xa7\x10\xba\x97\xea\x25\xa4\x57\xac\x7a\x54\x9c\xb6\xdc\x79\xe0\xa2\x3c\xdf\xf7\x7b\x5d\x8b\x86\xa6\x7d\xb3\x4a\x18\x2d\x78\x99\xb7\x02\x87\xe0\xfe\x39\xd3\x6e\x22\xc6\x3e\x8d\xdf\x04\xb6\xef\x74\xe0\x19\xbb\x4e\xe1\x5d\x04\x1b\xec\xc1\xd9\xc0\x3e\xcb\x07\x5a\x80\x77\x74\x00\xb9\xf8\xbf\xad\x89\xbf\x0d\x70\x31\x34\x19\x78\xe9\xe0\xc7\xec\xe9\x79\xf6\xef\x75\xdd\x1c\x7b\x95\x06\x4f\x80\x27\x3e\x3d\x45\x88\x66\x1b\x0e\x3b\xbe\xd8\x81\x10\x91\xaf\x55\xae\x26\xb3\x11\x33\x06\x20\xa8\xdb\xba\xe6\x01\x1d\x5b\xd5\x26\xfb\xe2\xef\xfd\xaf\xca\x28\xb2\xf6\x2c\xdf\x34\xce\xd1\xcf\x1f\xe9\x2e\x46\x22\x6a\xe9\x9a\x0c\x7d\x89\xa3\x75\xa4\x94\xb7\x2e\x08\xa2\xad\xb4\x65\xf9\xda\x11\x7a\x87\x29\x75\x33\xc8\x9f\xc2\x19\xe0\x18\x9f\x6f\x1c\x3d\xc7\xa2\x49\x9c\x5f\x8f\x0d\xbd\x4d\x35\x87\x32\x31\x18\xd2\x96\xbf\x52\x25\xa0\x15\x6b\x8f\xc6\xab\xdb\x7c\xb8\xcc\x8a\xdc\xae\x34\xba\xb0\xcf\x33\x6a\xba\x34\x12\xa7\xc7\x25\x71\xee\xaa\x7b\x61\x5a\x40\x41\xdb\x55\x78\x7c\xe1\x45\x48\xfe\xe5\xe4\xd6\x92\x15\x26\x2b\x40\xe9\x81\x48\x8a\xdc\xbe\x0d\x94\x35\x90\x8f\x7f\x0b\xfe\x35\x8c\xed\x1b\x4a\xd6\x0a\x80\x22\x9c\xf8\xa7\x51\xb6\xe3\xff\x50\x9c\x21\x83\x38\x65\xc6\x5c\xec\x8b\x93\xba\xad\xee\xa4\xea\xe9\x48\xc7\x36\xac\xa9\x25\xa9\x24\xc0\xc5\xc9\xb3\x1a\x87\x3b\x8c\x16\x23\x21\xa1\x90\xb6\x8d\x1f\x62\x6a\xf8\x66\xf2\x89\x9a\x5c\x81\x89\xb7\x7b\x5c\xe8\x79\xad\xac\x73\x39\x50\xce\x22\x30\x73\x4e\x43\xee\xc0\x9c\x23\x59\xa8\x8e\x38\xbe\x6e\x64\x31\x66\x67\xbb\x26\xcf\xd3\x30\x32\x4c\xb1\x28\x9c\xc3\xd5\x97\x09\xe5\xb0\x2f\xa4\xad\x64\x51\x65\xde\xb6\x75\x14\x3d\x6e\xc7\xab\xf3\x28\xe0\xe3\xa9\x89\x87\x9c\x83\x1e\x4f\x34\xfa\x7d\x97\xe8\x62\x96\x2e\xda\x8c\x77\xbe\xa3\xc9\x71\x82\x08\x24\xb8\x27\x34\x39\xb1\x49\x9e\x70\x65\x85\xbf\xfc\x2c\x96\xa5\x94\x00\x29\xa2\xc1\x21\x78\x1c\x06\x0f\x3f\x3c\xd5\x53\x54\x4d\xbf\x24\x4c\x35\xa7\x38\x60\xd4\x70\x83\x26\x69\x27\x44\x5d\x2d\x05\x2c\x1e\xae\xe3\x89\x22\x43\xf5\x12\x30\xc3\xa7\x02\x45\x12\xb5\xd1\xa8\x25\x7f\xa6\xbb\x58\x66\x49\x5a\x4a\x5e\xc7\xc1\x83\xbd\xf5\xbd\x4b\x84\x5a\x62\xe0\x5b\x80\x4f\x2b\x43\x53\x74\x3a\x47\xc4\xf7\xbc\x1c\xf8\x9e\xae\xcb\x6a\x42\x6c\x98\x26\xe9\x68\x75\xa7\xa2\xbc\xdb\x45\x4e\x27\xf6\x1e\xeb\x56\x39\xc1\xac\x6a\x85\x22\xd3\xf5\x16\xf2\x85\x58\x17\x6f\x60\x21\x61\xcb\xdf\x52\xf4\x2f\xf7\xe1\x9b\x09\x7b\xe2\x66\xb0\xc6\xec\x2c\xa2\x3d\x62\x55\xe1\x28\x13\xd3\x8c\xb6\x52\xbe\x76\xf9\x8d\x15\x4b\xea\xba\x45\xca\xb5\x63\x47\x52\xb9\xe0\xc9\x28\x55\xf7\x83\xc9\xb2\xd5\x1d\xfe\xd8\xfd\x00\xc0\x7f\x29\x07\x78\x5c\xd2\x9f\xd2\x1a\x94\xc1\xa4\xa7\x10\xb0\x9c\xaa\x9d\x7f\x57\x69\x3d\x3c\xd2\x42\x1c\x69\x1c\xa7\x24\x86\x3d\xe7\x39\x53\x3c\x31\xfa\x9d\xc0\x73\x3b\x5e\xa4\x95\xc2\xe8\x33\x58\x16\x91\xb4\xab\x1e\x53\x29\xda\xcd\x38\x2a\x16\xc5\xd7\x1d\xc7\x76\x30\xb4\xc9\x2a\x87\x1b\x88\x92\xb6\xc0\x6e\xe2\x19\x4f\x69\x5f\xea\x5e\x23\xa2\x5f\xd8\xb7\xd0\x8d\xa3\xaf\x94\x11\xf8\xb9\x99\x85\x40\x69\x3d\xe9\x66\xef\x8c\x7a\xd9\x68\x53\x33\xc0\x2e\xa8\xa1\xed\x5a\x20\x43\x8b\x26\x3c\xda\xcf\x52\xc8\x67\x31\xfb\x49\xe0\xc1\xa2\x97\xd5\xe4\x94\x79\x94\x0c\x76\x79\xc4\x38\xa2\x6f\x20\x70\xff\x31\x55\xb3\x85\xf6\xa6\xe3\x28\xb2\xdf\x08\xd4\x76\x10\x66\x46\x95\x14\x7f\x81\x1d\x98\x3f\x9b\xa8\x6a\xcb\x1f\x04\x8a\x31\xe6\x03\x07\x48\xb4\xc7\x6c\x16\x46\x39\x40\xd8\x48\xb9\xef\xa4\xd2\x2d\xb6\xee\x03\x8f\x0f\xf9\xda\xa7\x00\x60\x17\xc1\x11\x9a\x5b\x1c\x53\xb7\xe9\xe5\xe0\x2c\x32\x14\x5f\xd4\x65\x15\x78\x60\x31\x0f\x09\xde\xe9\x80\xdc\x1c\xcf\x0b\xf2\xa7\x5a\x1f\x78\xf0\xc7\x2d\xb0\x92\x2f\x77\xc3\xa1\xb5\x47\x57\xa7\x54\x0d\x72\x0d\x07\x0e\x12\x72\xc8\x3c\x72\xfe\x59\x35\xff\xac\x0c\xa3\xc2\x3e\x41\x9f\x62\x91\x75\xda\x27\xa2\x81\x4f\x43\x04\x73\xff\x48\xb7\x35\x6b\x78\xd5\x6d\x2c\x45\x49\x9a\x75\x1c\x85\xe8\x4e\x90\x15\x08\xb0\xbd\x7a\x03\x1c\x3e\xeb\x18\x05\x7c\xef\xfa\xc4\x63\x36\xd6\x79\xba\xe0\xe0\xbd\xae\x6a\x54\xd5\xeb\xe5\xe0\xa0\x77\x7d\x64\xbe\xa7\xac\xc5\xb6\xcd\x77\xfb\x36\x82\x65\x64\x48\x28\x05\x3e\xf8\x66\xa6\x0a\x87\xf7\xf6\x0d\x95\xee\x31\x51\xe6\xa8\x08\x50\xfa\xe5\x31\x90\x9e\xc8\xea\x47\xe1\xa5\x5e\x76\x09\xc1\x22\xea\x2f\x46\x85\x12\xc9\xac\xcb\x09\xf8\x54\xf2\x57\xca\x94\xad\xd8\xb4\x62\xc3\xbd\x35\x51\xed\x1d\x4c\x66\xa3\xeb\x61\x18\xd7\x5b\x2a\x73\x11\x66\x26\x1a\xf0\x53\x22\xd8\x61\x40\x3d\x2c\xd5\xed\xa0\x16\xec\x28\x04\x5d\x19\xc5\xfd\x28\x19\xe4\x44\x52\x28\x9b\x59\xb5\x2a\x9c\xd7\x62\xd0\x67\xea\x52\xe6\x6d\x18\xf7\x7e\x94\x1b\xef\x2c\x4a\x75\x57\xe3\x82\x1c\x89\x42\x9e\x97\x99\x78\x80\x92\x03\xf0\xe6\xe5\x82\xe6\x23\x39\xa7\xf2\x26\xe6\xa8\xfd\x84\x87\xfb\xdd\x24\x37\x03\x3e\xda\x6d\x72\xba\xe1\x94\xde\xc1\x7e\xc3\xaa\xfd\x8d\x9e\x6a\xb3\x5f\x67\x52\x4a\x17\x53\x55\x06\x40\x72\x3c\xd5\x8c\x21\x6b\x7b\x3f\xf0\x0c\x8b\x5b\xd6\x14\xf3\xf3\x34\xea\xde\x68\x5e\xe3\x00\x1b\xd0\x9f\xad\x6b\xaa\x6d\xe3\x27\x34\x53\xf8\xfd\xbf\x44\x9e\x2d\xec\xca\x4d\xc5\x9b\x2f\x9a\xe0\xd4\x96\xb7\xd0\x2e\x3d\xd1\xe4\x42\x81\x76\x95\x4d\xfa\x0d\x11\xc1\xea\x21\x85\xe3\x49\x89\x06\x9b\xc2\xec\xf1\xf5\x6a\x0e\x99\xe0\x8f\x77\xd6\x7c\x03\x3a\xf6\x23\x0e\xaa\xdb\x81\xaa\x51\xff\xbe\x06\x18\xa0\x6d\x18\x1e\xcc\xd6\x9e\x42\x44\x5d\x9e\x28\x8a\x9c\x33\x8a\x73\xee\x2a\xcc\xaf\xb8\x85\x7e\x26\x9f\x9f\x79\x9e\xd3\x2c\xc2\x5b\xaf\x49\xec\x15\x96\x2b\x8c\xad\xc9\x38\x56\x9b\xd3\xf0\xbf\x19\x27\xc6\xef\x5f\x37\x8d\xa4\x5f\x44\x6c\x9b\xb2\x73\xae\x72\xbd\x12\xe5\xa4\xcc\x04\x29\x85\x5a\x9f\xba\x50\x6c\xb7\x88\x7e\xc4\x66\xec\xfa\x37\xe4\x7d\x54\x97\xdc\xe5\x46\x8e\xf5\xf0\xbe\x99\xee\xd8\x66\x23\x03\xa2\x7c\x87\x9e\xfe\x07\x8a\x8a\xee\x1f\xa8\xfd\xf8\x8a\xcd\xca\xdc\xc4\x76\x84\x37\x80\x6f\xb9\xae\xb3\x2d\xeb\x0d\x5b\xff\xd9\x6e\x5e\x66\xd4\x86\xd8\xd1\x90\x7f\xc5\x3f\x7d\x55\x95\xa3\x56\xd2\x34\x8e\x57\xa7\xbd\x6e\xf4\x75\x8d\x5f\x40\x5c\xa7\x8a\x68\x22\x37\xfc\x8b\xb6\x4a\x68\x35\x82\x22\x00\xc0\x64\x4a\x4a\x3f\xbf\x1d\x1d\x9d\x17\x25\x49\x96\x62\xe2\x31\x7d\xac\x0e\xca\x37\x6a\x2e\x97\xa3\x1c\x8a\x7f\x4e\xcc\xde\x0b\xdb\xab\xa3\xc0\xf4\xd3\x31\x33\x10\x02\x24\x8e\x98\x9a\xaf\x6b\x4d\x61\x83\x61\x0e\x00\x84\x98\x6c\x3a\x11\xf9\x46\x75\x2e\x56\xbb\x72\x39\x2a\x56\xf7\x54\x7b\x02\x0e\x56\x07\x95\x4b\x58\xd4\x0f\x31\x6a\x08\x15\x4f\xa9\x12\xdb\x16\xd0\x40\x73\x6b\x0a\x1d\x9d\x70\x13\x98\xbf\x56\xc2\x49\x5f\x1f\xda\x86\x56\x77\xfe\x5e\x8a\x16\xf8\x07\x89\x1e\x41\xc2\xc3\x16\x75\xfc\x70\x18\xc5\x31\xd4\xf1\x61\x34\x3f\xaa\x25\x30\x7c\x63\xc8\x75\x5d\x7c\x4b\x47\x69\x96\x89\xe7\xa9\xe9\x9b\x91\x2d\x41\x10\xc7\xd7\x54\xf5\x87\x1b\x70\x05\x96\x52\xf0\x7c\x1d\x27\xfd\xfd\xd5\x89\x6f\x4f\x6e\x76\xc3\xcd\xcd\x75\x97\x32\x9b\xbc\x8a\xbc\xba\xab\x1f\x39\xb9\xb7\x8b\x2a\x30\x23\xd2\x0b\x9b\x01\x0c\xe5\xa8\xbf\xab\xc1\xe1\x1b\x0f\x3c\x29\x4c\x99\x84\x43\xf0\x97\x8a\x0b\xf2\x83\x89\xcf\xc6\x20\x99\x80\xdc\xdc\xba\x2e\x15\x34\x8b\x84\x24\xdf\x6a\x92\x22\x1a\xda\x2c\xed\x28\x20\xe8\xba\x22\xc4\x69\x6e\xbb\x43\x2f\x75\x57\xd3\x12\xe8\x84\xc3\xfb\x5c\xcc\x41\x8f\x2b\xc1\x48\x5b\xed\xc4\x0c\x08\xae\xa3\x3b\x17\xd8\x88\xf0\x8d\xf2\xc5\xf2\x74\xc9\x80\x65\x54\x65\x00\x0f\xea\x0c\xa0\xc4\xa9\x26\xab\xdc\xfc\x38\xd7\xca\x42\xdf\x56\xca\x42\xdf\x6e\x84\xe0\x07\xe6\xba\xb9\x29\xa2\x7c\xc9\xa1\xed\x61\x23\x4f\x2b\x7b\x79\x5a\x09\x72\x44\x49\x61\xe3\xd8\x86\x30\x63\x58\xf8\xe8\x4c\xe7\xeb\x36\x0b\x31\x32\x59\x11\x25\x2c\x55\x22\x6c\x97\xde\x1f\xfc\xe3\xb6\xd2\x86\xe9\xf7\x45\x2f\x93\x5b\xc7\x55\xac\x7f\xd5\x95\xfe\x4d\x18\x92\xca\x72\x94\x0c\xa6\x34\xdc\x81\x06\x40\x40\x7a\xba\xbe\xd0\x12\x78\x8c\xec\x31\x14\x79\x35\x48\x92\xe1\xb7\x7c\xd3\x0a\x18\x7b\xc5\xae\x70\x61\x58\x78\x42\x35\x9f\xdd\x45\x17\x2d\x0c\x32\x93\x94\xb1\x01\x7e\x05\x66\x00\x25\x08\xbe\x76\xeb\xd9\x29\x43\x6d\x57\xe5\xe6\xf7\x29\xd1\xc9\x0c\x1b\x78\x2f\xb1\x97\xd5\x77\x60\xf7\xfd\x36\x72\x0d\x0e\xc3\x31\x3b\x8b\xbd\x3b\xfc\xed\x35\xf1\xb4\xc6\xd6\xe4\xc2\xf1\x28\x1d\x2f\xaa\xfb\x45\xc5\x6e\x79\x91\xd9\x3c\x9f\xaa\x4c\x10\x12\xd3\x27\x26\xaa\x07\x0c\x22\x62\x52\xe2\x6a\x51\xaa\x32\x99\xf0\x88\x22\x0e\xe0\x72\x34\xdf\xac\x29\x83\x3d\x1e\x5b\x13\x6f\x57\x7c\x3c\x17\x15\x2b\xfb\x8d\x9a\x76\xa7\x72\x44\xae\x91\x39\x72\x02\x9f\xae\xc6\x75\x36\xd8\x84\xd1\xfb\x6c\x77\x61\xdf\x41\x0d\xb3\xbb\xa6\x60\x76\x6d\xd2\x2a\x85\x89\x8f\x4e\x29\x64\x2a\x50\x0c\x08\x31\xf9\x2d\x44\xb0\x41\x31\xaa\xd8\xe5\xd5\x69\x85\x7f\x86\xfb\x28\x58\x0e\x7f\x54\x7d\x6f\xe2\xb9\xfb\x7c\xc7\xaa\x3d\x56\x44\x49\x88\xf4\xa3\xe3\xd8\xf0\x8c\x78\x67\x55\xab\xc5\xa9\x16\x82\xd8\x3c\x4d\x13\x9b\x4d\x79\xea\xc0\x07\x08\xee\x10\x2a\xbe\x49\xa6\x10\x86\x7b\x4b\x4f\x75\x33\x44\x19\x5e\x53\x32\x4d\x1d\xc7\xab\x84\x35\xc1\x8c\xee\x6d\x0d\xbb\x83\x32\xe9\x74\x14\x43\x55\x8d\x72\x49\x41\x42\xfa\x25\x31\x22\xf8\xa4\xcc\x47\x13\x9d\x68\x51\xbc\xbb\x4c\x97\x8d\x82\xee\x27\xe0\x4c\x62\xb1\x60\x21\xe3\xac\xb9\xe7\xbe\x7c\x64\xc2\x61\x74\x34\x4a\xa6\x7d\xb2\xee\x92\xea\x08\xd9\x81\x6f\xc0\xb9\x82\x19\x44\x55\x6b\xbd\x85\x0b\x73\x9e\xea\x90\x0e\x30\xe0\xd2\x5d\x8e\x50\xe8\xb2\x22\x24\x5a\x31\xf9\x6f\x6e\xfd\x34\x4f\xe1\xbf\x53\x0a\x53\xe7\x50\xe2\x43\x2c\x78\x12\x33\x80\x07\x43\xba\x1e\x9b\xe5\x3b\x74\xa8\xc3\xa4\xde\x06\x1b\x81\x50\x5e\xd1\xf2\xc1\xf7\xfe\x17\xa2\x39\x92\x56\x85\x6a\xa5\x03\x33\xf2\x27\xf4\x8a\x92\x40\x52\x2d\xe9\xcf\xac\xa9\xd4\xc1\x2e\xf2\xe4\x1d\x07\xe6\xe7\xbe\xc4\x7b\x83\xfb\x95\x11\x14\x72\x47\x3f\x56\xd8\x74\x4f\xa5\x06\xb6\x82\x0c\x09\x49\xae\x1f\x05\xba\x30\xfd\x01\x34\xd2\xb1\x4a\x3e\x42\xf4\x00\x87\xe9\x5d\x74\x35\x22\x2f\x8d\xc6\x30\x81\x24\x57\x91\x18\x83\x8e\x55\x51\xe7\x3a\x77\xf3\xa0\xd2\xf6\x00\x4b\x48\xa8\xc9\x74\xd6\xb5\xcc\x77\xd0\x93\xb2\x0c\x00\x5c\x27\x00\x0d\x7e\x4c\xab\x49\x51\x23\xc9\x08\x7c\x30\x51\x34\xad\x6f\x4d\x7c\x4d\x11\x8d\x04\x1f\xa7\x65\x39\x3b\xdb\xcd\x4c\x18\x71\x03\x3e\x93\x61\xd2\x27\x84\x18\xd3\x87\xd9\xab\x26\xeb\xa3\xa9\x12\x4b\x73\x27\xd5\x7f\xf0\x36\x5b\x09\xcd\x2f\xd6\x6c\xb3\x75\x3c\xf4\x52\xb7\x6f\xb9\xe1\xc8\xd5\xd4\xe6\x7c\xad\x6d\xf3\x7e\x7b\xee\xb9\x6e\x6e\x98\x94\x8b\x55\x9d\x02\xcf\x1b\xf6\x9e\x2f\x4b\x8e\x6d\xf5\xec\xd3\x1d\x47\xb6\xba\x6d\x4d\xd1\xd7\x93\xd3\x36\xbf\x71\x9d\x46\x83\x0c\xe7\xff\xf6\x4c\x4f\x77\xfa\xe7\x85\x99\x52\x54\x5d\xdf\x55\xec\xb6\xd7\xb1\x58\x84\x01\xa6\xe5\xf8\xec\x1b\x9c\xbf\x70\x3a\x30\xdd\x88\x00\xf8\x7a\xb2\x59\x69\xf2\xe5\x97\xbb\xfd\xa8\xe3\x83\xd1\x73\x5a\x7c\xf8\x5c\x23\x7c\x5a\xd8\xd7\x35\x65\x31\x4c\x21\xa1\xdd\x51\xd2\xcc\xba\x34\x1e\x28\x11\xe4\x38\xc5\x39\xe7\x18\xfa\x1c\x14\xf3\xaa\x2b\x3d\x85\xb1\x29\x73\xbb\x5d\x65\x82\xb8\x09\x4f\x0e\xc4\xad\x9f\xf6\x27\x9e\xcb\x69\x3f\x01\xeb\x22\x8e\x51\xf5\xc5\x22\xfb\xdb\x04\x00\x7f\xb9\x9b\x95\xc9\xd4\xa6\xbe\x1f\x49\xb0\x4c\xf5\xb4\x69\x12\x17\xc0\x2c\xdb\xcc\x0c\xdc\x68\x0a\x11\x90\x2f\xbc\x5e\x71\x2f\xb0\x64\x8d\xcb\x9c\x60\x21\xe2\xb8\x11\xc0\x43\x2d\x73\xe2\xe0\x45\xcb\x36\x5b\x2c\xb5\x82\x27\xab\x88\x4d\x7c\xdc\x74\xb6\x81\x27\x9c\x39\xd4\x5d\x5a\x8c\x28\x09\x89\x2d\xcc\xdd\x06\x28\xbe\x49\x76\x4e\x1a\xe4\x75\xa4\x95\x84\x29\x96\xaf\xa8\xaa\xfb\x54\xf5\xc9\x36\x4d\xbb\xaf\x94\x51\x78\x14\x67\x36\x30\x6a\xa0\x20\xe4\x6b\x97\x36\xca\xd3\x32\x0b\x05\x18\xcf\x54\x31\x81\x72\xc5\xee\x36\xaa\x05\x47\x66\x0e\x75\xed\x68\x3c\x34\x79\xb5\x8a\xa6\x54\xdd\xee\x4f\x74\x73\xc3\xf5\x40\x31\xc0\x5d\x9a\xe8\xea\x7a\x38\x8a\xe2\xd8\x30\x73\xa6\xc0\x2e\xaa\x9d\xaf\x85\x0e\x85\x26\xc5\xf7\xcb\xd8\x63\x61\x24\xc2\xec\x92\xa7\xf0\x32\x49\x97\x82\x67\x6b\xbe\xf5\x40\xa4\x41\x3d\x43\xe5\x49\x45\x7d\x79\xb2\x11\x4c\xec\x9f\xe9\xae\x44\x99\x2d\xcc\x18\x9f\x71\xb5\x02\x67\xba\x2e\xb6\x69\xb2\x67\x65\xc6\xb6\x4e\x6a\xbe\xba\xc5\x6d\xf3\x0e\xdc\x3f\x53\x39\xda\xec\x67\x77\x3c\x3c\x1e\x51\x02\x5f\x4f\x7e\x4d\x71\x21\x6a\x99\x10\x3a\x38\x90\x1c\x3b\x49\xb3\xc9\xd7\x2a\xb7\x33\x4a\xfb\xd1\x52\x24\xf0\x12\x78\x9d\xec\x24\xc0\x47\x61\x2a\x41\x64\xe8\x1e\x36\x1a\x77\x67\x67\xab\xfd\x9c\x45\x89\x2d\xa2\x9c\xe1\x83\x5a\xa6\x1b\x70\x80\x8f\x6a\x39\xb5\x16\x0c\x66\x58\x16\x2e\x92\xa8\x95\x06\x60\xa0\x77\xf4\x7c\x8e\x63\xdb\x5a\x03\x51\x3d\xd3\x1d\x99\x3c\x37\x61\x66\xb5\x20\xec\x65\x15\x3f\x5e\x6e\x0b\x3f\xcc\x68\x94\x26\x51\x39\xea\x78\xac\xc2\xbf\x0d\x9c\x07\xff\xbb\xff\x56\x59\x79\x93\x1d\x95\x6d\x8b\x3d\xf4\xed\x89\xd2\x37\xfb\x76\xf0\x84\x4f\xf7\xa5\x2b\xbb\x3c\xce\x86\xf3\x40\x38\xaf\xb7\xaf\x29\x6a\x2a\xd6\x21\x13\x87\x4f\x15\x09\x1f\x29\x9a\xdc\x3f\x9a\xf8\x95\x72\x0e\x33\x21\x6d\xa9\x8a\x4e\xe3\x51\xe0\x89\xd8\x42\x13\x87\x65\xac\x93\xda\xaa\x78\xe9\xca\xb7\x13\x55\xd5\x9c\x28\x5e\xef\xfb\x9e\xfa\x25\x8b\x8a\x28\x1f\x6e\x57\x15\x3b\x90\x0b\xe1\x64\xbb\xc7\x21\x17\x7c\xa4\xff\x48\x43\x8d\x2c\xc1\x47\x13\xd7\x26\x74\xe4\xd9\x9e\x8a\xac\xef\xb6\xe9\x58\x8f\x6d\x56\xb2\x78\x82\x2b\xb6\x57\x6f\x29\xcf\x56\xfd\x22\x80\x5f\x37\x15\xb5\x52\x99\xf4\x9f\xf1\x71\x1c\xe7\x41\x61\xaa\xa0\xe3\x05\xb2\xc2\xdf\xec\xa9\x55\xbd\x85\x5b\xf1\x70\x07\xbe\x41\x58\xf6\x7b\x38\x1d\xe0\x6e\xed\xee\x55\xbe\x93\x68\xc0\x54\x3f\x0f\x7f\xf4\x03\x25\x9b\x75\x35\x50\x2c\xde\x5c\x41\x72\x4c\x8e\x5e\xba\xe4\xd7\x89\x05\x8b\x96\xc8\xff\xef\xcf\xf7\x94\x48\xd5\x74\xaf\xf3\xc5\x2f\x88\xbe\x98\x22\x0a\xe9\x10\x67\x34\x82\x8e\xf7\x5b\x05\xfe\x57\xd2\x8c\xa5\x41\xb0\xbe\xde\xd1\x3d\xb5\xef\x34\x06\xf8\xf0\xbe\x17\xba\x8b\x36\x1a\x68\x26\x1a\x64\x90\xa5\xc8\xaf\xc2\x45\xad\x45\x3b\xce\xd2\x57\x6c\x58\xf0\xa9\x8f\x49\x66\xc4\x1e\xdf\x28\x40\x06\x81\xe4\xa7\x3d\x6e\xf3\xbe\xd2\x60\x45\x0a\x0e\x21\xc6\x39\x8c\x33\xf6\xf7\x4d\xe5\x70\x8e\xca\x70\xb8\x57\xd1\xda\xdd\x9e\xf8\xae\x33\x40\xc5\x31\x6e\x4f\xae\x79\x4e\xaa\x7f\xf8\x16\xdc\x7d\x2c\x8e\xad\x48\xe2\x21\x1c\x7a\x0a\xeb\x01\xe1\xe3\xe5\x89\x7f\x80\x87\xb4\xec\x71\x76\xd2\xa2\x79\x81\x7f\xe4\xa3\x89\x4a\xa4\x04\xca\xf5\x65\x7d\x7e\x84\xf7\xef\xa8\x15\x98\x0e\x56\x77\x3b\x28\xc9\xff\xc0\xb3\x2b\xec\x5e\xbe\x60\xc7\xfc\x42\x98\x6a\x76\x0d\x61\x0c\x76\xf4\x7c\xec\x78\x99\x37\x93\x20\x3f\xab\x65\x03\xc3\xf0\xe1\xc4\x37\x1a\x3e\xa0\x40\x44\xca\x8f\x2d\x34\x50\x23\x33\x5c\x4a\xcb\x57\x3b\xde\xd6\x5e\xd2\x1c\x36\x97\x14\xd3\xdf\x38\x2d\x0a\x9b\x21\x77\xc9\x7c\xe5\x64\x62\x51\x63\xf9\xd5\x44\xe1\xd8\x1f\xa9\x99\xee\x9b\x28\x5e\xdd\x81\x87\x75\x02\xca\xd5\x30\xa2\x02\x0c\xf4\x07\xba\x3b\x8e\x4f\x7c\x0b\x20\x3a\xad\xd1\x0e\xf6\x2c\xf1\xa0\xf1\xdf\x60\x45\xe1\x3f\x3a\x6b\xfe\xcc\x8f\x92\x90\x45\xb7\xaa\x0f\x22\x2a\x7a\x7b\xa2\x58\x21\xde\x6e\xb3\xe7\xc4\x56\x93\xc6\xff\x0d\x1e\xac\xcd\xc7\xeb\x81\x39\xe8\xf5\x90\x88\x09\xce\x0e\x61\xcf\x54\x0a\x7e\x1f\x2a\xf3\xea\xd2\x70\xa5\x89\x3b\x1a\x78\xc9\xe8\x40\xbe\x51\x68\xa2\xbc\x48\xb3\xd5\xed\x08\xbc\x30\x79\x10\x80\xc6\xca\xbb\x47\xa1\x9a\x13\x09\x9f\x9d\x75\x7c\xbc\x1e\xb6\xb2\x3e\x51\x0e\xd6\x7a\x0b\x77\xc6\x3c\x89\xd3\x9b\xc2\xfb\x96\xd2\xa6\xa8\xd0\x85\x17\x1b\x43\xf6\xf2\xcb\x5d\x13\xc7\x91\x11\x19\x0e\xa7\x30\xeb\x47\xac\xd6\x7b\x9e\xf4\xcd\xb4\xca\x54\xfe\xb3\x5a\xef\xf8\x79\x84\xe2\xfc\x5f\x81\x5a\xe9\xe7\x6b\x7e\xa9\x0d\x87\xd3\x9e\x2a\xf3\xaa\x26\xaf\x7b\x97\x7e\x99\xaf\x95\xc8\xc3\x55\xcf\xf6\x68\x57\x6c\xc6\x04\x2a\x42\x80\xe4\x6b\x86\xf7\x60\x11\x1c\xe4\xbf\xb2\x08\x98\x41\x54\x00\x9d\xce\x65\xf5\x6c\xf8\xab\x6d\x6b\x1e\x75\x75\x34\xcd\xac\x49\x88\x2d\x00\xcb\xf9\x75\xa5\x1b\x09\xa2\x16\x71\xea\xe9\x1b\xe8\x8f\xfe\xca\x27\x29\xd1\x40\x9b\xf5\xbd\x5f\xef\x6d\x0e\x45\x16\xf6\x75\x97\xca\xa4\xdf\xf1\x7c\x7b\x97\x15\x02\xed\xb2\x0a\x9d\xf2\x38\x5d\xc1\xdc\xc1\x39\xbe\xa0\x58\xf6\x2e\x6c\x4e\xb0\x1d\x98\xeb\x1e\x98\xfb\x54\x65\x0e\x44\x6d\x84\x30\x32\x82\xf8\xa7\x59\xf7\x12\x97\x92\xbe\xbe\x8e\xbd\x0a\xcb\xf4\x1a\x60\x41\xd2\x8f\x53\xef\x16\xfc\xdc\x97\x84\x83\x2f\x50\x11\xfe\xdf\xc2\x7b\xe3\x7c\xba\x87\xec\x01\xaf\x56\x1a\x29\x58\x84\x8e\x56\x65\x09\x54\x71\x0b\xbc\x55\xc8\xb5\xed\xa2\x13\x10\x8b\x4c\xb2\xb7\x48\x14\x33\xfd\xb1\x70\x65\xd2\x24\xca\xa6\xf2\x22\xd0\x67\x90\xc6\x41\x68\x79\xbd\x11\x01\xce\xce\x76\x9f\xfb\x9f\xfe\x3b\x36\x04\x4c\x9a\xab\x44\x06\xdf\x50\x9d\xbe\x7d\x3b\x32\x49\x3f\xdf\x49\x0f\x2a\xb4\x7e\x3e\xad\x30\xd5\xf3\x20\xb6\x87\x1a\xce\xfd\x23\xd5\xdc\xf2\x5f\x95\xe2\xef\x1b\x5a\x26\xa5\xe6\x74\x9d\x6a\xd8\xec\x2a\x34\x22\x3d\x5b\xec\x3f\x64\x56\x91\x08\xe4\x6b\x87\xa1\x2a\x6c\x6c\xc7\x43\x28\xc2\x78\xfa\xab\x4b\xaa\x81\xf8\x92\x3a\x50\x5f\x79\x3e\x7c\x5e\xf3\x74\x80\x0e\x44\x24\x09\x9f\x52\x95\xbb\xe5\x28\xe7\x6e\x6d\xa6\x5c\x0d\x14\x8b\xd3\xd7\xda\x5c\xf5\x2a\x90\xeb\xb3\x90\x3f\x56\x1f\x3b\x06\x7c\xd3\x68\x13\x16\x4e\xb0\x91\xe9\x47\x39\xd3\xb4\x4b\xde\x5e\x27\xf1\xdd\x2e\x1f\x44\x31\xb7\x91\xba\x56\x06\xef\x54\x5d\x69\x98\xb1\xf9\x97\x0e\xba\x52\x10\x2d\x17\xa1\xa0\xf2\x6f\xf5\xbd\x16\x48\x78\x37\x33\x85\x30\x10\xcb\x08\xaa\x3a\xe8\x25\x75\xd8\xdb\x32\xdb\x55\x6d\x36\x59\xf9\xd5\x3a\xc4\x92\xf8\xd9\xc4\x37\x60\xbe\x8d\x1d\xe1\x28\x3a\xe7\x9c\xe2\x3f\x10\x35\x6e\x17\x38\xb2\x28\xc8\xfb\x22\xce\xda\xd3\xab\x31\xca\xec\x75\x1d\x78\x99\x4d\xec\xb4\xff\x3b\x40\x06\x38\xfd\x39\xf1\x2d\x05\x7b\x95\x3f\xd1\x6c\x3a\x9d\x9b\xeb\xf6\x6d\x15\xa8\xc9\x01\xc1\x5a\x2f\x5a\x69\xb6\x5e\xa9\x8d\xcd\x00\x8e\xa6\x73\x6a\x3c\x7d\xa9\xc2\xbe\x2f\x9a\xcc\x2c\xa6\xb1\xe1\xd4\x01\xfa\x47\xfe\x0b\xbd\x17\x5f\x2b\xcc\xdd\x62\x66\x8e\x5a\x14\xd4\x44\xc4\x48\x25\xfd\xbf\xd3\xd8\xc6\xfb\x67\xba\x8b\xa9\xe1\xa8\x92\x11\x50\x8a\x17\xf2\x6e\x8d\xa6\xab\xa5\x0f\x2e\x2c\xfb\xfd\x58\x76\x8c\x23\x5d\x56\x20\x2e\xfd\x22\xe9\x68\xd1\x64\x54\xfa\xaa\xfe\x1a\x86\x97\xd9\xdc\xf9\xc6\xe1\x8b\xd2\x32\x2f\x6c\x1f\xda\x8d\xd2\xcd\x52\xcd\x8a\xe3\x88\xae\x06\x15\x61\x1e\x20\xb5\x02\x5e\x54\xf0\xc3\x28\x8e\x2d\xb0\xec\xd8\x37\x37\x94\x78\xd4\x0d\x5a\x2f\xce\x85\xab\x86\x48\x5c\x38\xbf\x28\x97\x8a\x7c\x27\x99\x70\x01\xb2\x79\xa3\xc5\x21\x89\x68\x40\xd3\x0b\x21\xc1\xf8\xdb\x3d\x45\x30\x3e\xbd\xe6\xb9\xc4\x70\x2c\x21\x0c\x79\x6a\xad\x16\xff\xbb\x8a\x5f\x31\x4a\xf3\xf1\xd0\x66\xbc\xf9\x45\x94\xcd\xe7\xe8\xae\x6a\x3e\xf9\x24\xff\x84\x37\x6a\xd0\x4f\x82\x83\xbd\x55\x57\x1a\x9e\x5c\xf3\x91\xe8\x2d\x25\xe2\xf8\xc6\x5f\x65\xa2\x79\x1a\xc6\xbf\xf3\x57\x7a\x0e\x9b\x78\xb0\x8b\xc7\x03\x58\xad\xb3\xa6\x62\xb7\x0d\x1a\x03\xa9\x14\xd1\x18\xa0\xea\xbc\x9b\x04\x9d\x11\x2a\x6c\x90\xc7\x85\xb1\xb9\xef\xfb\x56\xf6\x76\xd7\x14\x0d\xe6\x6d\xf5\x26\xe1\xd1\x55\xa2\xd2\x41\x7c\xfa\x9b\xf4\x24\xd8\x31\x1c\xd0\x23\xad\xf8\x4f\xe1\x7d\x60\x68\xff\x84\x9e\x04\xaf\x78\x76\xe2\x2b\xfa\xdc\x56\x21\xb0\x00\x5f\x60\xf4\x25\x9c\xbe\x5d\x32\x65\x5c\x70\x46\xc6\x25\x5c\xab\x8f\xc1\xcd\x41\x7b\x19\x56\xf0\x23\x55\x3d\x1c\xa5\x79\x11\xaf\xee\xa6\xd7\x96\x13\xb3\xd6\x94\x5d\xfd\x9a\x23\x7b\x71\x86\x63\x5b\xaf\x66\x69\x7d\x56\xe3\x35\x1c\x5e\x18\xe7\xdb\x13\x45\xa3\xf3\xe1\x44\x71\x3d\x43\xa2\x03\xdf\xf5\xc7\xad\x47\xdc\x92\x89\x62\x6e\xdd\x41\x15\xf9\x26\xcc\x0e\x2c\xe5\x29\x1c\xf8\x52\xc3\xf1\x1e\xd1\xa2\x35\x99\x56\xe7\x03\xba\x02\xa1\xd4\x56\x5a\x36\x92\xe6\xf6\x5d\x9f\x3f\xa0\x5a\xb5\xa4\xc2\x9f\x52\x08\xfc\x68\xd9\x14\x76\x6f\x15\xf4\xc3\x0e\x5f\x9a\xa8\xde\x87\x4b\xe4\x6d\x62\xc1\xaf\x6b\xc7\x06\x85\x20\xfe\x8f\x89\x5f\xf5\xfc\x06\x92\xb1\xa6\xb1\x11\xd9\x1d\x1a\x1b\xbe\xa1\xb1\x11\x49\x3b\xd5\xa0\x7c\x22\xf0\x24\x38\x3f\x0a\xbc\xf7\x70\xbb\xb5\x13\xc9\xe4\x91\x01\x52\x0a\x45\x25\x16\x9e\xe1\x1b\x15\x9f\x8d\x63\x02\xf4\xcf\xce\x72\xf8\xfa\x9a\x6a\x8a\x7f\xcd\x09\xc6\x2d\xd9\x3e\xb4\xbc\xa6\x5d\xa6\xe6\x4d\x16\xd1\x76\xea\xef\x5e\x5c\x62\x2f\xea\x54\x18\xdf\xe9\x35\xdd\x86\x99\x86\x47\x81\x9d\x9b\x77\x61\x59\xf5\xbe\x12\xaf\x89\xe1\xf8\x4a\x69\xfa\x59\x39\xf6\x74\x1f\xa8\x33\x03\x1e\xc0\xd7\xee\xe1\xc2\xa1\xc9\x0a\xb4\xc4\x56\xcf\xe0\xc8\xd0\x3d\xcf\xfd\xe5\x56\x1d\xc2\xfe\x72\x15\xc7\x20\x5f\xc1\x7a\x85\x81\xc2\x36\x5e\x74\xbc\x95\x51\xc2\xa5\x66\x66\x64\xc6\xd6\x92\xcc\x67\xf5\x48\x58\x3e\xf7\xdb\xb2\xe4\x59\x99\x24\x60\x43\x75\x3e\xa9\x83\x47\x69\x80\xfe\x62\x9a\xf5\x89\xc2\xc5\xd1\x3a\x5d\x08\xfc\x99\xa8\x7b\x2b\xc2\x34\x97\x1a\xce\x97\x9d\x76\x97\xcf\x9c\x9e\x69\x41\xf4\x1c\xec\x66\x76\x6c\xe3\x29\xed\x5b\x6b\x76\x62\x94\x02\x61\x39\xbe\xa1\x56\x87\xed\xaf\x30\xe0\x4e\xa4\x19\x69\x88\x45\xb4\x51\x61\x3c\x8b\x82\x7a\x3d\x50\xbf\x3b\x4d\x06\x13\xc0\x5e\x9c\x4c\xae\x29\xc5\xb7\x65\xde\x55\x04\xb5\x37\x54\x7e\xb9\x9f\x8e\x6c\x5e\x44\xe1\x2e\x55\x30\xb8\xa8\xe2\xa7\xff\xfb\x75\x04\x25\x52\x9d\xf5\x5b\xec\x17\xe0\xbc\x71\x65\xdb\x6a\x7c\xb4\x90\x2c\xa2\xb9\xcb\xf4\x70\x22\x80\x50\xad\x3e\x18\xc9\x2b\xca\x80\x1f\xfc\xfc\x97\xa6\x6a\x48\xcd\xce\x9c\xa7\xe8\x54\x3b\xe9\x41\x03\x54\xf1\xf2\xcb\xdd\x30\x65\x10\x38\x9c\x80\x8f\x02\x2f\x06\x7c\x45\x11\xc8\x5d\x57\xb0\xb9\x57\x6c\x91\xab\x92\xcd\x83\x89\x97\xa7\xf9\x81\x46\xfb\x3d\x76\x40\x95\x45\x93\x85\xb1\x59\x15\x69\x2f\xb6\x11\x9a\xac\xec\x8c\x06\x47\xde\x08\x7e\x4d\xad\x9f\xd1\xd8\x64\xa6\x88\x96\x2d\x28\x7d\x67\x1c\x3e\x89\xde\x59\x90\x4b\x7e\x38\x3e\xf7\xf9\x83\x04\x37\x96\x8e\x1d\xc5\xa8\xfa\x38\xd0\x45\x54\xe5\x9c\xbf\xd3\xe2\x40\xcf\x77\xf3\x94\x62\x5b\x57\x26\x7a\xa0\x2c\xf4\x03\xb7\xfd\xc3\x34\x09\xcb\xcc\x2b\x63\xc3\xe1\xf8\xa6\x0e\x34\xbe\xb9\x49\x8b\x73\x91\xbe\x94\x75\x65\xe8\x4b\x45\x63\xc6\x97\x77\x16\x8d\xb7\x3e\xd8\xb1\x1d\x4f\xe2\xf6\x52\xa7\xe7\x8d\x7f\x58\xc6\x45\x99\xd9\x1d\xbe\x30\xf9\x53\xa2\x59\xc0\x83\xde\x0e\x3c\x0e\x9e\xbb\x52\xb1\x32\xcf\x29\x69\xf5\xf7\x27\x9d\x23\xf3\xbe\xb0\xe1\x5a\x3b\xff\x9e\xea\x46\xce\x87\x69\xbf\xbf\xaa\x94\x55\xea\xa4\xcd\x7e\x02\xfe\xda\x7f\xff\xd7\xa6\xbc\x0f\x82\x02\x10\x9e\xeb\xf8\x44\x41\x98\x4f\xd7\x18\x43\x07\xc3\xe2\xc9\x4d\x68\xc6\x19\xc7\x95\x44\x38\x00\x38\xc8\x17\x74\x17\x05\xf8\x32\x85\x6f\x84\x4e\x29\xd7\xb3\xb5\x20\xe1\xee\x09\x9c\x84\x78\xe9\xc7\x81\x42\xb0\xdd\xa7\x53\x4a\xd4\x26\xbd\x0f\x04\xf6\x4a\x9c\x58\x3f\xa1\x68\x48\x88\x23\xe9\xec\x93\xf6\x2f\xdf\x77\x59\x85\xd8\xa4\x29\xa8\x08\xcc\x4e\x2a\xb8\xce\x63\x55\x28\xbe\xad\x3e\x97\x0f\x33\xeb\xe1\x68\x08\xbc\x19\x8d\xc0\x37\xea\x8c\x5f\x36\x59\x64\x21\x25\x3c\xc3\x73\xfb\x07\xd8\x03\xcc\xc7\x80\xf3\x40\x04\xc3\x9b\xf1\xc2\x7c\x37\x2f\x80\xa1\xf2\x07\x35\xba\x94\x24\x31\x22\xfb\x75\xd5\x8c\x4c\x61\x12\xa6\x1a\xc7\xc8\xfd\x98\xde\x81\xaf\x15\xf3\x6f\x34\x1a\xa7\x79\x1e\x2d\xc6\x76\x5a\x89\x86\x41\x7a\x4c\x6b\xac\xf0\xf5\x84\xd2\x68\x52\xda\x7e\xb6\x5e\xd9\x5b\x2a\x73\x27\x64\x2d\x2c\x31\x0a\xa9\x77\x56\xb1\x2e\xe7\x63\x9b\xf4\xa3\x64\xb0\x57\x25\xa0\xcf\xea\xc6\x06\x06\x8c\x23\x07\xf3\xa7\x0a\xad\xfa\x48\xd1\xd4\xfd\x30\xa8\xc5\x0b\xb4\x36\x18\xeb\xa6\xa0\xc6\xac\xe4\x24\x3c\x52\x9e\x78\xeb\x3f\xc2\x09\x97\xf8\xa9\x5a\x4d\x9c\xe5\x51\x96\xe2\x0f\x1a\x25\x63\xa2\xc0\xb7\xd9\x62\x14\x46\x7d\x09\xdf\xf0\xb9\xe3\xaa\x75\xe7\x78\x5b\x94\xbb\x98\x59\xdb\x77\x4c\x3a\x38\xda\x00\x24\x45\xa6\x0b\xd9\x29\x11\xae\xd5\x50\x8c\x74\xd9\x3e\x49\x1f\xc2\x1f\x92\x53\x27\x76\xf1\x64\xa0\xb4\xca\x58\x18\x1b\x35\xb1\x87\x18\x52\xc4\x5d\xbb\x7b\x9d\x85\x7d\x1b\xac\x95\x89\x51\xde\xc0\x00\xba\xd3\xf3\x45\xa9\x2c\x9c\x0c\x3a\x9a\x66\x6d\x6e\xce\xb3\x92\x7e\xf1\x0b\xae\xd7\xbb\x9a\x09\xec\xc5\xd7\x30\x94\x52\x28\x6e\xc9\x78\x8d\x23\x61\xd2\x6a\x63\x1f\xf6\xb5\x9d\x95\x34\x8b\xfb\x2b\x51\x5f\x18\x6f\x60\xfa\x4e\xab\x98\xfd\x8c\x56\x83\xb8\x1d\x78\xce\x93\x38\x3a\x6a\xe3\x68\x98\xa6\xfd\x4e\xe5\x49\x63\xbd\x5c\xc4\xae\xe7\x9b\xb6\x16\x66\x4a\x33\x39\xef\xaf\x8d\x70\xc8\x1b\xc7\x7d\xf3\xfb\x39\xaf\x0e\x07\x86\xc9\xe2\xf9\x46\x21\xe9\x6d\x99\xa5\x63\xbb\x4b\x25\x08\x1f\xc1\xf4\x61\x7c\x1f\x6a\x1f\xf6\x5f\x29\x7e\x44\x80\xee\x84\x2d\x41\xd9\x12\xa4\xdf\x9d\x26\x90\x4b\xfb\xdd\x0a\x54\xdd\xf5\x1b\xad\x35\x7d\x9b\xdb\x42\xd5\x30\xc1\x96\x53\x13\x33\x83\xa5\x5e\x73\x70\x90\x24\xcd\x8a\xa1\x35\x79\x61\x33\xb8\x64\x92\x30\xf4\x3d\xb6\xa7\x5c\xa3\xf4\x58\xe8\xd3\xa5\x94\xfa\x8f\x02\xc5\x9e\xfb\x8f\x5a\x6b\x41\x69\x96\xb8\x6d\xa0\xf1\x91\x38\xc3\xb8\xc3\x13\x3e\xd4\xe9\xb6\x34\x5f\x44\xc2\xf9\x08\x26\x50\x56\x7b\x43\x69\x7c\xbe\xe1\xb8\x89\x92\x28\x04\x93\x20\x0c\xc6\xba\xf2\xa0\x91\x1a\x07\xff\xcd\x5f\xec\x79\x52\xea\xcb\x6d\xf4\x22\xaf\xa4\x4e\x05\xbf\x8d\x4f\x54\x65\x4e\x48\x5b\x58\x31\x39\xdc\x51\xe5\x94\x3b\x6a\x25\x65\xe9\x2a\xa5\x9a\x98\xe8\x1b\x43\x26\xac\xdf\x4d\x44\x67\x68\x4a\xd7\x5c\xc2\xd2\xb6\xd8\xc8\xa2\x73\xbb\x19\x9b\xf3\x59\x72\x2c\xa6\x54\x35\xe1\xad\x89\xc2\x97\x29\xe9\x8a\x3b\xc1\x13\x2a\x4a\x5f\x9c\x52\x64\x83\xf8\x33\x2c\x3a\xa6\xf4\x96\x0e\x07\x2d\xf9\x64\x8f\xc6\x29\x66\x53\x14\x5c\x5f\x87\x15\x42\xd8\x4c\x85\xea\x8d\x8d\x36\xf4\xbf\xea\x07\xc5\x72\x7e\x9f\x16\x27\x5f\x2b\x3e\xa3\x91\x1d\x2d\xda\x2c\x1f\x46\xe3\x6d\x75\x1a\x8a\x05\x51\xe1\x7e\x03\x3f\x89\xe3\xfb\x6d\x8f\x69\x13\xc2\x21\xa9\xd6\x78\xc0\x1e\x31\x4c\xec\xa1\x13\x0d\x5e\xc4\x45\x0d\x39\x3d\x81\x29\xe1\xff\xa1\x82\x97\x2c\x48\x05\xf5\x81\xbb\x85\xf7\xe4\xde\x38\x49\xce\x55\x7b\x14\xae\xf8\x8f\x74\x28\x03\xa5\x12\x14\x9f\x1e\xc1\xa3\x43\xbd\x71\x77\x4f\xb6\x5f\x66\x4d\x9e\xdb\x3c\x1f\x49\xff\x0c\x8b\x7c\x06\xbe\x47\xe8\x72\xa3\xc1\x6e\xfe\xa5\x83\x8e\x98\x4c\x21\x78\x4e\xd5\x64\x84\x95\x87\xda\x8f\xd2\x63\x51\x9f\x31\x29\xb0\xf4\xeb\xfa\x6c\x58\x6f\x83\xec\x93\x0b\xc2\x94\x8b\x30\x5e\xa8\xcc\xf2\x75\x03\xfc\x72\x78\xdf\x97\xbb\x4b\x11\x1d\xf5\x1d\x15\x49\x9d\x57\x6d\x04\xe7\x9b\x5c\x1a\x2f\x1d\x84\xc6\x86\x8a\x7d\x51\x77\x70\xbd\xa1\xde\x6f\x6c\x63\x83\x1a\xa5\x02\xf6\x71\xd4\x0d\xd5\x69\x29\x2e\x21\xe5\x25\x99\xca\x3a\xd0\xee\x9c\x35\x59\x9e\x26\xc0\xa5\xc0\x48\x5c\x08\x54\xda\x0c\xed\xdd\x7c\x4d\xee\x02\xff\x91\xe7\x8c\x18\x9b\x0c\x4c\x6a\xb0\x25\xeb\x98\x5f\x4c\xd9\xcf\xbd\x00\xdb\x77\x9f\xad\x46\x6d\x63\xcf\xda\x66\xdf\xe2\xc0\x5c\x97\xf0\x54\x95\x7b\xd1\x67\x83\xc3\x0a\xad\x8a\xbf\xe4\x8a\x32\x38\xa3\xe8\x58\x61\xc3\x29\x05\x84\x79\x48\x67\x34\xdc\xf7\x13\xf4\x9b\xc8\x60\x6f\xed\x7d\x52\xf1\x0a\x0f\xd2\x4c\x89\x85\xa1\xa0\x75\x11\x5b\x9c\x6f\x7c\xce\x2f\x5d\x49\x56\x4c\xd6\x47\x94\x0c\x9f\x18\xa2\x7f\x70\x2c\x3e\xd4\x82\x5f\xd7\x54\xf3\xd2\xaf\xf5\x94\xb6\xe7\xb5\x5a\xb6\x5a\xe1\x1e\xc0\x0d\x00\x07\xf3\x69\xca\x9c\x31\x33\x4c\xdb\x02\x1c\xa7\x69\x66\xf3\x42\x31\xf8\xb2\xd6\x08\xdf\xa8\xf9\xb4\x59\x39\x26\x52\x8b\x8e\x63\xe5\x07\x37\x1d\x5f\xb7\x38\x68\x07\xbb\x7d\x9b\x45\xcb\x4c\xd4\xac\x7a\xb0\x1d\xd7\x1b\x46\x48\x6a\x55\x9f\x50\x99\x84\x72\x31\xb6\xe0\xdd\x77\xaa\x1e\xd5\xd2\x61\x62\x4b\x1c\xe5\x58\x2f\x67\x26\x8a\x1b\xe2\x11\x3c\x27\x49\x0a\x79\xf6\x9a\x26\x12\x8d\x44\x7d\x6c\x28\x74\x7b\xf0\xaa\xff\xeb\xc4\x67\x2e\xff\x6b\x0b\x47\x64\x96\x3a\x61\x6a\xe9\xfe\xef\xcc\x79\x52\x81\xcd\x36\xf9\xc5\x99\xee\x80\x2b\x4f\x87\xf7\x39\xe0\xa7\x77\xbf\xcf\xba\xa3\x35\x2d\xb3\x1c\x31\x83\x73\xb4\xaa\x1f\x91\xf0\x8a\x82\x3e\x18\x63\x10\x09\x8b\x4a\xe3\x66\xbb\xb5\xb0\xef\x20\x1d\x21\x36\x91\x05\xef\x24\xba\xbc\x5c\x97\x42\x5c\x8e\xd3\x38\x2a\xa2\xd0\xc4\x4f\x53\x06\x86\xbb\x28\x60\xb9\x91\x12\x42\x4a\x03\x6f\xb8\xa3\xa7\x4e\x85\x2b\x1a\xac\x0e\x27\xca\x29\xa3\x7a\x1d\x86\x1d\x08\x24\xa4\x8d\xbd\xe3\xa8\x06\xb6\x61\x39\x4b\x96\x4c\x69\x73\xdd\x62\xe8\xba\x7c\x5b\xc7\x69\x7f\xb2\x05\x80\xc7\xfc\x36\x46\x85\xff\x8a\x46\x95\xa5\xc7\xe9\x78\x81\x4b\xf6\xcf\x03\x45\x68\x13\xd9\xb8\x9f\x53\x22\x94\xb7\x9d\x92\x10\x01\x13\x30\x06\x08\xda\xaa\x7c\xed\x36\x6e\x68\x92\xc2\xa9\xc7\xb1\x9c\x16\xcd\x85\x48\x6b\x39\x7f\xcf\x46\x83\xe1\x62\x9a\x55\xbe\x33\x55\xf3\x1c\xea\xc6\xf5\x52\x9c\x50\x15\x65\xf6\xa9\xc5\x47\xd8\xe3\x89\xd1\x8d\x82\x35\x3f\x40\x58\x22\xe8\x2a\x8f\xf0\xbc\xd2\xd2\x1c\xfe\x65\x4a\xc4\x64\xb6\xc0\xda\xc6\x57\xff\x58\x71\x1d\xff\x58\x91\xc4\x2d\xa5\x61\x99\xef\x56\x6c\xa4\xc7\x27\x3e\xba\xfd\xc7\x5a\x4d\xe0\xbc\xea\xf5\xbc\x0b\x18\x82\x13\x3b\xaf\x1e\x0e\x4b\xe1\x86\x2e\x42\x5d\xa3\x30\x08\xd1\xc5\xe5\xc0\x97\x46\x2f\x05\x35\x40\x89\xdb\x07\x61\x9a\x3f\x3f\xa5\xc1\x7b\xd8\x60\x62\xa9\x95\x98\xd2\xbf\xf0\xbc\xdc\xb6\xda\x62\x52\xa4\x13\x4a\x1e\xef\xcb\x7c\x0f\x9e\x84\x20\xdf\xbc\x37\xd9\x4c\xfb\x52\xdb\x6c\x24\x69\x01\x51\x0a\xf6\xa5\xaa\x67\x8f\x4f\x9e\xf0\x39\xd6\xbc\x98\xf6\xf9\xaa\xdd\x3d\x25\x3f\x06\xbb\x0d\x54\x1a\x98\xd4\x98\x76\x4b\x1d\x6e\x99\x59\x6d\x52\x70\xc2\x58\x3f\x0c\x7c\xab\xd2\xb9\x5a\xe4\xba\x54\xe4\x3b\x14\x41\xd7\x79\x95\x9f\xba\xae\x19\xed\xb4\x7e\x14\xaa\x3e\x4a\xd7\x40\x62\xbf\x3f\x53\xec\xb8\x97\x95\x51\x08\xd3\xd1\x52\x9a\x15\x52\x1f\x75\x0c\x8d\x0a\x21\xd3\xc2\x67\xb3\x94\x66\x80\xd7\x0a\x0b\xa8\xaa\xb1\x9d\x6d\x2c\xd2\xfd\xfb\xbb\x8b\x51\x3a\xc8\xcc\x78\xc8\x8c\xdc\xd2\x99\xee\x7b\x35\x2e\x39\xc1\x89\x28\xb1\xcb\x51\x61\x08\x3d\xe1\xf2\xb0\x58\x8e\x52\xba\x7c\xca\xd5\xd4\x0a\x9b\x8d\xa2\x04\x6c\xa3\x08\xe3\xa1\x7d\xc5\xb5\x19\x25\xb7\xaf\x93\x2e\xa1\x19\x8d\x4d\x34\x60\x8d\x23\x59\xcc\xff\x29\xa8\xb7\x12\x2f\xec\x73\xac\x27\x9a\x6c\x32\xf0\x4d\x59\x36\xa7\xec\xa7\x62\xf9\xbf\xac\x82\x29\xdd\xf8\x9c\x87\x19\x03\x42\x1c\xa9\xc9\x65\x55\x9c\xaa\x4b\x6c\x66\x7d\xf3\xdf\xc2\xa0\xf9\x6f\xb5\xc7\x0c\x71\xca\x4f\xf9\x3c\xc3\x5d\x25\xb7\x5c\x63\x2d\xfb\xbf\x1a\x28\xb9\xd9\x59\x91\xe6\x77\x4e\x26\x0b\x7e\xd2\x77\x88\xf8\x67\x9b\x34\xeb\xc8\x16\x59\x4a\xe7\x89\x49\xa6\x3b\x9f\x3f\xc2\x16\x04\x2b\x11\x67\xf5\xce\x9e\x07\xe6\x30\xd2\x4d\x82\x34\xaf\xbd\x9a\x54\xd1\x7e\x9c\x0e\x22\xe8\x22\xbe\xe0\xfa\xbf\x3a\x8e\xb4\xe8\x5c\x9b\x66\xf4\xa0\x44\x42\x56\x3c\x3c\xed\xee\xa9\x56\xc2\x57\xac\x1d\x77\x74\xff\x1b\x0d\xb9\xf4\xc2\x29\x6e\xcb\x24\x61\x77\x1e\xa7\xca\x7d\x7c\x21\xdf\x28\x1d\x1f\x96\xa4\x15\xd0\xbe\xe8\x1a\x69\xbd\xa3\xb6\x08\x34\x71\xf8\x1e\x61\x74\xa7\xf1\xe0\x1b\x15\x45\x16\xe6\xd8\x13\x34\x0e\x22\x58\xa6\x52\x52\x2c\x38\x8a\x0c\xdc\xff\x89\x2c\x9f\x50\x26\xfb\xe2\xc5\x8f\xe0\x15\xa1\x58\x0e\x4e\x3f\x81\xbc\x62\x49\xd5\xe8\x6f\x91\x21\x61\x05\x7a\xae\x0f\x28\xc0\x02\x58\xb2\xc4\xab\x52\x18\x05\x1b\xe3\x75\x6a\x0e\x2a\xdf\xa8\xe3\x66\xb5\x3a\x85\xb7\xd3\x93\x62\xf1\xa2\x94\x83\x71\xfd\xe5\xc4\x93\x00\xdc\x50\xab\x16\x1d\x5f\x70\xa5\x6f\x62\x4b\x4a\xb7\xa9\x9c\x1c\x2b\xd1\x00\x70\x13\x99\x4a\x05\x77\xbe\x1a\x7c\xaa\x0e\xaa\xa3\x46\xf4\x03\x73\xcf\xd0\x33\xba\x32\xad\xa3\x3a\xe1\xd0\xd5\xe5\xd6\x66\x67\xbd\x22\x77\xe5\x86\x22\x14\x86\xd8\x3d\x6a\x62\x2c\xa2\x8f\x51\xd9\xca\x78\x06\xa7\xa1\xeb\x42\xd4\x37\x08\xd7\xcb\xed\xf1\xc0\xb5\x21\xeb\xf1\x73\xac\x2e\xd8\x96\x73\x38\x4e\x5d\x2a\xe7\xc0\x9c\x1b\xd4\xca\x32\xc1\xf4\x33\x9d\x8a\x9b\xad\xca\x17\x83\x63\x74\x41\xcb\x85\xdd\x69\x4b\xc0\x84\x99\xc9\x87\x1d\x52\xf8\x26\x3e\xbd\xeb\xda\x2a\x91\x4f\x2c\xa1\x8c\x2e\x8f\xf0\x75\xed\x3c\x1a\xa6\xc5\x36\xc5\x44\x7b\x61\xe2\x5d\xfd\xb3\x81\x82\x72\x5d\x50\x9e\xd2\x0f\x94\x54\xc0\xe5\x96\x62\xd3\x4c\x37\x1f\xa6\x19\x9a\xdf\x9d\x90\x92\x63\x34\xf0\xcd\x65\x79\xb1\xea\xe8\x6f\xe0\xb9\x30\x1b\x12\xdf\xb4\xd6\xd7\xad\x11\x91\x03\xae\x0a\x06\xba\x42\x28\x87\x88\x4d\x0a\x93\x0c\xdc\xb7\x3b\xfc\xae\x73\x1d\xee\x05\x9b\xa1\x6f\x33\x87\xba\x8b\x59\x6a\xfa\xa1\xc9\x7d\xa3\x1e\x92\x14\x20\x29\xe6\x6b\x57\x2b\x1b\x67\x69\x61\xf3\xc2\x24\x85\xd4\x02\x81\x09\xdf\x06\x47\x42\xd2\x4c\xaa\x4a\xd4\x59\xf3\xce\xec\x38\xca\xa4\xfe\xcf\x14\xfb\x81\x8f\xcc\xde\x53\xf3\xd9\x2f\x33\x03\x36\xc2\xea\x5b\xa5\x57\xb1\x5a\xeb\x7c\xdd\x04\xd9\x11\xc7\xf0\x80\xb4\x5d\xe8\x43\x70\xd8\x7f\x08\x2b\xc2\x37\xed\x24\x19\x5e\x5d\x11\xab\xef\x8a\xa2\x19\xba\xe2\xa9\xe6\xcb\xf1\x38\xcd\x6d\x7f\x9b\x82\x86\x00\x25\xa1\xd8\xb4\x0f\xea\x36\x66\x49\xaa\x3e\xd1\x53\x11\xf8\x9a\x2c\x84\x51\x14\x17\x1c\x99\x4a\x43\xb1\x22\x75\x6e\xf6\xa1\xce\x1c\xea\x12\xc5\x2c\x1b\x2c\x47\x4c\x3b\xe7\x95\x3e\xdb\x35\x8d\x6c\xb6\x2c\x4b\x42\xe4\x93\xe9\x15\x44\x58\x79\xf3\xa9\x54\xc5\xc0\x61\xbf\x46\x73\x4d\x0f\x26\x5e\x54\x8b\x5e\xcb\xc8\x14\x25\xab\x09\x63\x1b\x01\x41\x8e\xcc\xea\xfb\xaa\xd7\xfc\x0f\xb5\xf4\x55\x79\x8c\x97\x90\x94\xeb\xfd\x58\xfc\x64\xa2\x5c\x91\xeb\xce\xa3\x1a\x94\x51\xdf\xc6\x51\x62\x65\xf1\xb1\xed\xc0\xd0\x23\x15\xc1\x44\xd1\xe2\x6a\x3e\x5d\xb7\xa1\x9f\xee\x7e\xa6\xe3\xb5\x0c\xef\xd0\xe6\xf8\x38\xdd\xba\xfd\xfb\xbb\x61\x3a\x8e\x04\xb5\x29\x39\x7c\x9f\x9d\x7f\xe4\x00\x77\x43\x92\x02\x55\xfd\x6f\x8c\x3d\x10\xdd\x18\xdf\x7e\x95\x26\xf6\xcf\xd3\x5c\x60\xf7\xde\xa2\xb0\x8f\x6b\xa6\x54\xf4\x15\x5d\x42\xcf\xb8\x72\x57\x37\x2e\x3f\xb3\x46\x06\x58\xa4\xa0\xaa\x77\xc1\x79\xf9\x76\xa0\xea\x8a\xdf\x47\x98\x8b\x1d\x78\x93\xec\x1b\xde\x12\xb4\x55\xb0\xf1\xb7\x38\x9c\x81\xc3\xfd\x72\xa0\x19\x24\x70\x2a\xe3\xef\x76\xd0\xfa\x65\x0a\x70\xaa\x33\x33\xd5\x13\xf6\x16\x32\x9f\xcf\xf4\x28\x8b\xea\x14\x09\xaa\x11\x93\x28\x1e\x91\xb1\xf3\xf1\xe7\x04\x4c\x75\x0f\xfd\xe1\x38\x65\x58\x25\x0f\xcf\xbf\x8e\x23\x4b\x04\xe6\xe8\x64\x91\x83\xd7\x75\xb9\xa6\xd9\xc0\x16\x53\x35\x81\xae\x6a\xd0\x10\x8d\xdc\x53\x18\x93\xa9\x9e\x67\x54\x4b\xb3\x68\x10\x11\x87\xfe\xb4\xe2\x9a\xbb\xac\xc5\x6f\xf6\xf6\x7c\xda\x61\x2f\xb0\x7c\x62\xd1\x5b\x8e\x25\x93\xa5\xb9\x45\xaf\x2d\x42\xa7\x37\xe8\x29\xd0\x77\xcb\x78\x35\xd4\xf4\x6f\xa9\xfe\x96\x3c\x1c\xa6\x69\x9c\xef\xa8\x7e\x49\x3c\x07\xc5\xe3\xff\x0b\x7a\x7a\x8e\x40\x71\x66\xf2\x7f\x04\xde\x43\xfe\xd3\x89\xda\xc7\x97\x71\xfc\x4a\xd0\xea\x25\x84\xaa\x0d\xb3\x5c\x45\x9a\xdb\x75\xbe\xbf\x7a\x44\xd4\xfc\xde\xa4\x15\xc8\xd7\x81\x52\x1e\xd8\x20\xe3\xe6\xba\x18\x1c\x7f\x76\xa7\x85\xf2\xbf\x2e\x52\x09\xee\x33\x66\xe0\xe7\x1b\xb7\x55\x5e\x35\xe3\xff\x2f\xaf\xcb\x51\x45\xa6\x25\xd3\xbf\x3a\x56\x72\xcf\x50\x5e\x0b\x34\x42\x8b\x53\x05\x05\xa7\x75\x85\xac\x5e\x6f\xd8\xb7\xc3\xfb\xe6\xba\x06\x84\x76\x30\x36\x44\x74\xf0\xc2\x06\x84\xc9\x31\x87\xa7\x27\xba\x31\xbc\x2d\xcf\x5e\x9d\x81\xbe\x8e\xcb\x8c\x09\x6b\xde\x00\xec\xe9\x79\xcf\xff\x92\xe2\xa2\xca\x7d\x40\x88\x3c\x28\xf4\xaa\xf9\xda\xab\x93\x47\x4b\x40\x58\x0a\xd0\xef\x6e\x50\xc7\xd2\xce\xc9\x30\xff\xaa\x51\x9d\x5e\xd8\xd7\xed\x47\xb9\x6b\xca\xa5\x07\x94\x90\x42\xc7\x1a\x1e\x02\x50\x26\xd5\x12\xc9\xa3\x62\x75\x97\x0a\x5e\x6e\xd0\x5f\x33\xd1\x39\xd9\x0d\xd8\xa9\x2b\x28\x8b\x08\x93\xa2\x22\x65\xbb\xa6\x18\x69\xbe\x15\x78\x84\xe9\x7b\x81\x62\x15\xfe\x96\x22\x72\x6d\x6a\x6f\xd1\xe9\x93\xe6\x23\x5b\x44\x61\xc7\x8f\x0c\xce\x64\xc9\x1c\x2b\x8c\x5f\xcd\xf1\x83\xf1\x38\xae\x7c\xf0\xe3\x4a\xb3\x2f\x4c\x93\x30\x2e\xfb\x8e\xae\x91\xb3\xaf\x81\x92\xde\xb8\xae\xfb\xd1\xce\xb5\xe8\x92\x76\x07\x99\x59\xe6\x0e\x47\xc9\x02\x2a\xdc\x5c\x4b\xef\x53\xb7\x30\xe1\x70\x35\x34\x59\x3f\x32\x5a\xc3\x19\xa9\x13\xbe\x6e\x30\x1b\x1c\x98\xeb\xae\x44\x71\xdf\x66\x89\xcd\x73\xa5\x52\x8f\xa8\x98\xaf\x6b\x5b\x20\xb2\xd9\x2e\x0f\x05\x79\xbd\x2e\xeb\xa0\x84\x20\x6e\xd4\xaa\xee\x2a\x97\x7d\x15\x46\x5b\xc4\xf4\x35\x16\x25\xf0\xc5\x9e\x1f\x6a\xb1\xed\x0f\x6b\x6e\x75\x16\xda\x3d\xf4\x15\x8e\x8e\xd4\xc7\x23\x8f\x34\x90\x1e\xfa\x1a\x58\x4c\xe8\x61\xc7\x1a\x67\x4b\x87\xb7\xfb\x8e\xa2\xc0\x5b\x27\x1b\xc5\x7f\x84\xf9\x52\xe0\x30\xc9\xda\x6e\xa7\x12\x2e\x6c\x6d\x73\xee\x66\x0e\x75\x4d\x36\x62\x00\x26\x2c\xd9\x5d\x3c\x21\xdf\xb8\x74\x48\x3f\x7a\xf5\xd5\x55\x6a\xf6\x76\x9d\xf2\x1d\x24\x84\x59\x72\x55\x09\x46\x3d\xd1\xf3\xb8\x05\x33\xb2\x49\x7f\x64\x13\x60\x13\xd1\xe9\x70\x1b\x0f\xc8\xcd\xb7\xbd\xce\x73\xcf\xf9\x1c\xbc\xc3\x39\x3e\x02\xa6\x46\x12\xf2\x7b\x9c\x8b\x74\xe0\x40\x47\x11\x93\x9f\xe7\xf3\x9a\xef\x14\x2d\xe0\x78\xb8\x9a\x47\x61\x94\x17\x24\xc9\x07\x7f\xf4\x14\x0d\x2c\x5f\x2b\x88\xc4\x38\x4b\x97\x96\x6c\x96\xb1\x66\x34\x67\x9f\xe9\x69\x24\x13\xdd\x16\x82\x10\x17\x7a\xa7\x4e\x79\x4e\xcf\x26\xc9\x24\x4d\x36\x1a\xe5\xe0\xea\x95\xb6\xd4\x8e\x23\x83\x7b\xc7\x93\xf5\x84\x51\x52\xa4\xf9\x70\x4a\x33\x9d\x9d\x57\x1a\x01\xfc\xfd\x40\x8d\x35\xb3\x9e\x95\x19\xb7\x26\xd7\x60\xd7\x77\x03\x9f\x3f\xd5\x7a\x52\x61\xba\x62\xb2\x7e\xbc\xda\x81\x23\xe2\x80\x53\x87\x35\x70\xca\xa5\xd4\x6c\x52\x64\x9c\x0a\x63\x76\x54\x4e\x38\x08\x57\xaa\x1f\x77\x9b\x2c\x47\x39\x71\x4c\x77\x1c\xaf\xde\x1d\x7a\x5b\xbe\x6e\x2a\x11\x2d\xcc\x77\x8b\xb4\x1c\x0c\xc5\xab\x6c\x83\x55\x34\x19\x1c\x97\xd2\xb4\x58\x34\x71\xac\xb8\xd0\xcf\x60\x23\x0a\xb5\xc6\xe6\x39\x3b\xf4\x52\x77\x90\x2e\x13\x78\xc3\xe5\x74\x60\x44\x3d\xfe\xd4\x57\xd6\x93\x27\xab\xff\x01\x43\x21\x57\xd3\x9c\xa8\xa4\x73\xde\xaf\x68\x32\x16\xe6\x60\x40\x89\xe3\xfc\x44\x11\x07\x3c\xd1\xf3\x12\x81\x5b\xa9\xaf\x41\x3a\xf2\x69\xe3\x4a\xc1\x94\x36\x14\x03\xba\x94\x53\x73\x11\x85\x5a\xd7\x1f\x5a\x8d\x91\xc4\x7c\xe4\x93\x0a\x8a\xb0\xa5\x93\xb1\x6f\xed\x58\x35\x17\x5f\x0b\x6a\x6c\x0f\xfe\x20\xc8\x2c\xb3\x84\xec\x50\x0e\xec\x95\x49\x8d\x0a\xc0\x37\x78\x5f\x0a\xd4\x11\xff\xa1\xea\x26\xf9\x50\xd3\x50\xb0\xff\x25\x8a\x04\x4d\xf0\xde\x5c\x37\x4a\x0a\xc3\xf4\x78\x5c\x11\x09\x3c\xb6\xe2\x5c\x63\xa9\x48\x5b\x9a\x89\xe3\x1d\xd5\x24\x08\xef\x68\xc7\x11\x3c\xb1\x29\x94\x2e\x03\x45\x0d\xb7\x0d\xf6\x4a\x3a\xba\xa8\xea\x81\x9b\xbd\xe0\x83\x13\xfd\x42\x2f\xb7\xe0\xf1\x4f\xdc\xe5\x4d\x0f\x27\x1d\xdf\x2d\xa0\xa9\x38\xca\x8b\x98\x4e\x27\xc7\x48\x01\x7c\x2d\x5f\x37\x96\xe4\xec\x6c\xd7\x24\xab\x2b\x06\xea\x55\x8e\xea\xd1\xd3\x3e\xaa\x29\x2a\x6c\x6c\x97\xa3\x9c\x8d\x94\x6a\x7f\xf3\x9d\x85\x0d\xbe\x93\xfd\xdd\xa5\x28\x1f\x6e\x52\xa9\xbb\xab\xe4\x2b\xc0\x5e\x2a\xcc\x02\x3e\x12\xcd\x0b\xb3\x43\xe3\xea\x95\xcf\x0e\xc7\x17\x96\x99\x29\xd1\x71\xa6\x72\x8f\xad\xd3\x91\x3c\xbc\x8f\x8d\xb9\x58\x0b\x01\x69\x34\x7d\x88\x85\xee\xd0\xc6\x63\xca\xf4\xc3\xf5\x07\x9e\x1e\x73\xfa\xa0\x86\xc9\x6d\xd1\x66\x74\x00\x0f\xfa\x7d\x26\xc0\x0a\x7c\x4b\xc5\x19\x37\xa7\x23\xa2\x3d\x01\x2e\x80\x21\x95\x8a\x14\x6f\x5d\x81\xc3\x4f\x07\xfa\x1c\x3f\x16\x71\xde\x45\x56\xb6\xaf\x58\x54\x81\x85\x73\xa6\x8a\x2c\x25\xde\x7c\x0c\x37\xce\xc3\x0d\xc5\x1c\xf8\x91\xca\x52\x3d\xb9\xe6\x71\xb0\x83\xcc\x26\xa6\x6f\x3a\x8a\x98\xb0\xd3\xf3\x95\xd8\xce\xda\x6e\x89\xd6\x8f\xcc\xff\x46\x67\x41\xd0\x9d\xbf\x22\xfe\x33\x4e\x36\x52\x1a\x72\x83\x24\x16\x0e\x6e\x30\xd3\x02\xc6\x7f\xdb\x9a\xcf\xb6\xdc\x26\xbf\x01\x5f\xcb\x75\x7b\xc4\x33\x20\x37\x80\x9f\x72\x8e\x32\xa2\x62\x47\x3d\xee\xfa\x22\xa2\x53\x61\xc1\xa0\xed\x8d\xc3\xee\x89\x9e\x4a\x6d\xdf\x08\x14\x59\xd2\x71\x18\x2c\x18\xbf\x0b\xf0\x93\x51\x11\xfb\x48\xd5\x53\x4e\xc3\x74\x0b\xcf\x04\xd6\x0b\x02\x8f\xa9\x35\x9c\x51\x5c\x2a\x27\xaf\x1b\x8f\xb9\x1d\x52\xc9\x78\xe4\x1f\x53\x18\x8e\x09\x7f\x5b\xe5\x80\xff\x79\xa0\xf0\x95\x0f\xa8\x8c\x29\xe6\xba\x65\xbb\x98\x24\x29\xa3\x82\x4e\xd0\x0d\x78\xbe\x1b\xd7\x55\xe4\xb8\x64\xe2\xc2\x82\x57\xb9\x7a\x29\xd1\x97\xf4\x66\xe1\x62\xf0\x94\x46\x50\x9b\x81\xcd\x76\xaa\x72\xe6\x1f\x50\x40\x05\x04\x2e\x08\x5d\xf8\x1a\xaf\xcf\x04\xfd\xb4\x75\x50\xa2\x79\x77\xe2\x71\xc6\x53\x55\x2c\xb5\xb1\x8e\x49\x13\xce\x7f\x5f\xe8\x48\x9e\x5f\x7d\x9e\x8a\xe2\x18\x28\x34\x17\x02\x7e\xf2\xa6\xd2\xf6\x7d\x53\xb7\x9a\x5f\x55\x84\xa8\x79\x39\x18\xd8\x5c\xd8\x97\x38\x1f\x32\xd1\xb9\x91\x96\x62\x61\x9e\xc6\x54\xaf\x15\xf2\x73\x4e\xea\x63\xa7\x3f\x52\x5d\x52\x1b\xd5\x37\x6d\x5c\x57\x8d\xcc\xaf\xa4\x65\x96\x98\x78\xbb\x17\x49\x44\xea\x53\x2a\xeb\xf4\xad\x72\x1a\x2a\xf2\x32\x86\x87\xb9\x9c\x86\xf3\xc3\xef\xea\x76\x98\x61\x4a\xd6\xc4\xad\x61\xc7\x75\x73\x41\x2b\xc3\xdc\x0b\x3e\xa5\xde\x7f\x6c\xb3\x70\x68\x32\x4a\x2c\x3b\xd9\xf2\x5f\xd2\x2f\xf0\xb5\x2e\xb7\xc7\xe9\x0a\x0a\x15\x4e\x09\xc9\x39\x39\x57\xd4\x6b\x26\x76\x00\x0a\x58\x97\xfd\x03\x86\x83\xaf\x1b\x87\xf6\xcc\xa1\x6e\x94\x71\x16\x54\x17\x2e\x24\x3c\xd1\x0d\x72\x36\xb7\x49\xb1\xbd\xb2\x07\xee\x9b\x8f\xcc\x3b\xcf\x46\x55\x3c\x8f\xc3\x51\x10\x3f\xc7\x47\xf2\xc7\x69\x82\xe5\x59\xbc\x1b\xb7\x44\xdf\x1d\x95\x70\xe3\xa4\xe9\x5f\x39\xee\x17\x15\x5d\x46\x6c\x16\xd3\x6c\x47\x65\x57\x98\xb0\x9d\xe6\x51\xf2\x89\xaa\xf3\xf3\x2d\x38\x45\x4e\x48\xfe\x88\x13\x09\xb9\xa0\x9a\xb2\x2f\x04\x8a\x6e\xa4\x05\x68\x3e\xdf\xb5\x49\x65\x67\x1d\x10\x10\xce\xf1\x03\xc5\xc6\xf9\xa0\x71\xc6\x90\x7e\x55\x34\xa0\x6a\x09\x1b\xe0\x5f\xa9\x82\xd0\xaf\xda\x3e\x60\x92\x41\xb6\xaa\x7a\x65\xae\x2a\x04\xfc\xd5\xc6\x07\xf6\xef\xef\x2e\xa7\x11\x37\xcc\x20\x19\x09\x1d\x75\xbe\xf6\x59\x3a\x52\x50\x9e\x56\x64\xa0\xc0\x37\xc3\x14\x20\xd5\x06\x07\x8c\x41\x37\x88\xfe\x7e\xa1\xdd\x77\xb3\x18\x25\x96\x3b\xee\xe1\x25\xe2\xf5\xf9\xba\x71\x4a\x2a\x7d\xd6\x29\xe5\xb2\xfe\x78\xb2\x39\xa1\x25\xf2\x4c\x2a\xe5\x64\x97\xc3\x14\xd4\x7f\x52\x85\xab\x95\xe4\x3a\x73\xbe\xec\xaa\x00\x1a\x57\x83\x06\x39\xa9\x5c\x2b\x4e\x9b\xcc\x2e\x9b\x28\xee\x28\x61\x7d\x76\x69\x04\xd9\xa3\xb8\x63\xcd\x0a\xf8\x01\xd1\xde\xc4\x40\x1a\x87\x65\xac\x7e\x19\x35\xbc\xd3\xad\x2a\x3d\x12\x2a\x68\xe4\xa4\x48\xc9\x7d\x1c\xfd\x41\x58\xb9\x80\x69\x3e\xe5\x4b\x1a\xef\x6b\x92\x99\xdb\x3a\x37\x78\x5e\x4d\xcf\x2b\x66\x64\xe0\x90\x54\xcb\x1d\x1b\xe6\xac\x16\xf8\x39\xdb\x88\xdd\x16\xf6\x75\x0d\xe1\x85\x2b\xe3\x0b\xa0\xd1\x16\xf2\x00\xb0\x67\x6f\x4c\x6a\x1e\xd8\xe6\x07\x3e\x32\xff\x69\x51\xed\x75\xbb\x42\xa4\xeb\xfc\x72\x7a\xa8\x5a\x5c\xd8\x2c\x55\xbe\x8a\xae\x1d\xb3\x8a\x01\x36\xe5\xc9\x89\x2e\x17\x7e\x52\x1d\x6c\x51\x92\x17\x99\x35\x23\xc2\xcd\x38\x54\x90\x53\x2e\x06\x81\x13\x4e\x2d\x1c\x73\x7c\xdd\xa2\xba\x32\x2f\x41\x00\xfd\xb0\x78\xa2\xca\x2b\x55\x27\xaa\x5d\x5a\x4a\xb3\x22\xdf\x59\x77\x27\xeb\x90\xa7\x85\x7d\xed\x34\x33\xd5\xf0\x31\xc6\xad\x46\x34\xac\x52\xcc\x67\x27\x3e\x5b\xf2\x44\xaf\x45\xe2\x78\x65\x98\xc6\x36\x37\xcc\xfd\x21\x82\x91\xd5\xb7\x49\x3b\xc2\xc7\xad\xa4\xbc\x24\xa6\x76\x55\xe7\xe3\x2a\x3d\xdf\x34\xcc\x1c\x71\x23\x8d\xc6\xe4\x50\xda\x6c\xaa\x4e\xf2\xe8\x7a\x02\xbe\x8b\x2f\x11\xd1\x9e\x36\xce\xde\xc5\xac\x8a\xad\x0b\x2c\x45\x26\xf9\x0e\xfc\xf1\xd6\x94\x57\x3e\xbc\xef\x85\x6e\x61\xb2\x68\x69\x89\x96\x11\x8a\x2f\x6f\x07\x0a\xd5\xf0\xb6\xce\x20\x46\xcb\x51\x1c\x99\x04\x31\x8f\x40\x45\x68\xb4\xf9\x46\xbb\x28\x69\x16\x4e\x53\x28\x0d\xa7\xe0\x66\xa0\x20\xc8\x37\xe9\xbd\xe0\x27\x9f\x40\x80\xc9\x37\x6d\x98\xcf\x4f\x77\x29\x67\xd3\x51\x15\x76\x08\xcb\xf0\xb5\x02\x5e\x84\xa3\xbc\xa3\xce\xc2\xb3\x1a\xf1\x73\x56\xa5\x2e\x46\x69\x56\x05\x4b\x05\x33\x26\x61\xcf\xdc\xe1\x0c\x93\x40\x2e\x55\x14\xf0\x01\x72\x54\x2c\x09\xaa\xda\x5c\x16\x33\x93\x84\xc3\x5a\x63\xe8\x1f\x29\xd1\x72\x2e\x1e\x4a\x4b\x57\x4b\x8d\xcd\xf4\x5f\x29\xf3\x02\xd5\x18\x38\x2a\x5b\x08\x74\x28\xad\x37\xf4\x02\x92\x52\xac\x96\x22\xfe\xe8\x97\x6d\x79\x6f\x8a\x4a\xa2\xc5\xb2\x10\xfa\x53\xcd\x01\x21\x89\x00\xfa\x42\xe1\x81\x6a\x21\x98\x5f\x8a\x16\xd9\x29\x62\xb9\x1f\xbc\x82\x68\xff\x28\xdd\x91\x34\x59\x8e\x84\x9c\x4a\xe4\x4f\x94\x92\xce\xdd\x26\x61\xc8\xfe\xee\x38\x4a\x70\x6a\xba\x4a\xb1\x96\x1c\x7b\x5a\x25\x65\xfa\x51\x18\x25\x16\x3a\x0c\x52\xcc\xf0\x99\xc7\xf3\x81\xc2\x44\x41\xcd\x53\x29\x97\xce\xb8\x52\x08\x2d\x3a\xd4\x49\xcf\x20\xb3\x23\x24\x78\x2d\xaf\xbe\x6c\x73\x69\x72\x11\xbf\xa5\xa3\xc8\x17\x6a\xd9\xde\xcc\x4e\x53\xd8\x85\xb4\xf2\x1d\x50\x0e\xf2\xcd\x44\x75\x68\xf0\x06\x11\x74\xdc\x26\xa6\xa8\xe7\x9e\xeb\xee\x9f\x51\x26\xfc\x82\x32\xe1\x17\x5a\x50\xa2\x33\xd5\x31\x3a\x48\x4c\x52\x4c\xd1\xcb\x08\x53\x6b\xf5\x29\x69\xa4\xe9\xb8\x0e\xd7\xf7\xbd\x1f\x92\x99\xbc\xda\x41\xd5\x98\xc1\x3f\xdb\xd0\x5a\x55\x1b\x0e\xcc\xb9\x98\x09\x09\x2c\x06\xed\x24\xde\x05\xc1\xe5\xdf\x0f\x94\xc0\xdf\x07\x0d\x13\x44\x58\x8d\xd1\x38\x4e\x57\x59\x62\x0f\x48\xbe\x8f\x54\x03\xd0\x35\x45\x06\xd1\x0c\xca\x3e\xa3\x38\xe2\x3c\xab\x29\xf3\x8e\xf0\x4d\x8b\xae\x9f\x4b\xc5\x28\x82\xf8\x8b\x8a\x0d\xe2\x62\xa3\xb6\x7d\xe8\xa5\xee\xa2\x2d\x0a\x9b\x51\xab\x02\xfc\xc8\xed\x6b\xaa\xd3\xe1\x4a\xe0\xcf\xe6\xd3\x81\x4a\x55\xde\xd2\x61\x41\x14\x8f\xf2\x29\xdd\x90\xab\xd4\xfd\xcf\xab\x4c\xc6\xa5\xb6\xae\xbb\x94\x02\x90\x7e\xde\xa9\xce\x4c\x95\xf3\x3d\x28\x37\x4d\x21\xe9\x97\x0e\x76\x6d\x1c\x15\x76\xba\xa3\x28\xa8\x7c\x82\xe7\x86\x76\xa7\xb6\xf4\x14\xbd\xec\x1f\xb6\x35\x24\xe6\xbf\x13\xe7\xd3\x0a\x2c\xb2\xad\xe7\xb9\x96\xae\x29\xe0\x31\xe7\x7a\x64\x02\x15\x75\x5e\x1c\xf5\x51\xcb\x73\x4d\xb3\xce\x1d\x3e\x3b\xd9\xb4\xd2\x67\x67\x0f\x76\x3f\xdb\xf1\x28\xa2\xb7\xb4\x43\xf5\x56\x63\xa9\x73\x8b\x5b\x52\xa4\xd9\x2a\xf2\x72\x08\x5c\xf0\x60\x7c\x1d\x3c\xab\xba\x40\x92\xc4\x9a\x71\x1a\x47\x22\x57\x21\xe1\x19\xfd\x8c\xc4\x6d\x2d\x65\x91\xa1\x89\x85\x93\x10\xa6\x15\xb8\x27\xbe\x56\xaf\xbb\x64\x97\xab\x05\xe3\xe0\xd4\x57\x6b\x72\xf6\xd5\x2c\x0a\xc9\x71\xb5\xa8\xf8\xdf\x27\x1e\xfb\x10\xa7\xc5\x2e\x4f\x1c\x84\x9d\x20\x3b\x5d\xf7\x8f\xc0\x86\xe2\x06\x65\x0c\x54\x26\xee\x69\x34\xe3\x49\x9c\x9a\xa2\x47\xe5\xcb\x0d\x00\xbc\x62\x0d\xdc\x68\x12\x16\xef\xef\x86\x69\x96\x95\x03\x23\xe4\xa1\x22\xcd\x4f\x3b\x9b\x6f\x5c\x1d\x76\xc5\x1a\x66\xa1\xc4\x0f\x75\x7a\x3e\xb8\xee\x80\xfc\x4d\x70\x8c\x9b\x57\xf8\xec\x6c\xe5\x42\xa5\x63\x97\x57\x75\xe9\x34\x97\x77\xbb\xac\xce\xd1\x7e\x9a\x8e\xb8\xeb\xa4\xc9\x4f\x0c\xc7\x56\x84\xd5\x14\x8c\x60\x68\xb3\x45\x0b\x17\xd8\xd1\x35\x2b\xbd\x5a\xf7\x1a\xc6\x31\x2f\xe2\x24\xfe\x60\xa2\x54\xe3\x3e\x08\x36\xf3\xb0\x3f\xdf\x5d\x31\xab\x1d\xe5\x05\x9d\x51\x82\xe0\x67\xda\xfa\x9a\xab\x9d\xbc\x62\x32\x1c\x6d\x28\x1b\x5e\xd4\x9d\x32\x17\x1d\x4c\x6d\x6c\x4d\x68\x8b\x68\x64\x71\xe4\x4b\x03\x91\xcf\xab\x03\x6f\xe2\x34\x76\x0e\xcc\x71\xea\xbb\x49\xa1\x75\x64\xe6\x50\x37\x89\xc6\x63\x91\xad\x75\x44\x02\xbe\xcd\xe8\x4c\xc3\x5c\x2e\xec\xeb\x8e\xca\xbc\x30\x99\x2e\x80\x5d\x51\x05\xb0\x2b\x2d\x84\xed\x73\xdd\x38\x5d\xa1\xbf\x47\x0d\xf0\x92\xef\xe4\xda\x7f\x29\x78\xb6\xbe\xd3\x17\xf6\x55\x96\x6a\x7b\xb5\x0c\x1d\x6d\x82\xb7\x91\x9a\x95\x03\x54\xef\x2e\x16\xf4\xe4\x18\xcc\x32\x28\xc4\xb6\x9b\x1f\xe8\xc0\x5c\x77\xd1\xe4\xbc\x69\x05\xad\xae\x61\xec\x5a\xb3\x25\x8d\x2d\x27\x74\x59\xf2\x9f\x4c\xbb\xc8\xff\x6f\x02\x99\xce\xcd\x1d\xec\x1e\x59\xd8\xb7\xa3\x1a\x76\xa6\x8a\x0a\x94\x56\x07\x9a\x1d\x45\x82\x84\xde\x4a\xe6\xd7\x67\xdd\x1e\xe3\x4d\x54\x16\x74\xde\xf5\x1b\x78\xc4\xfb\x12\x22\x32\xec\x0d\xe4\xc4\xce\xaa\x6a\xc0\xd9\x66\xce\x61\xa6\x3b\x32\xab\x26\x99\xd6\xef\xa2\x02\x92\x69\xd5\x32\x70\x62\xa2\xd2\xe3\xb7\xbc\x8e\x4e\x12\xa6\x03\xeb\x40\xcc\xc8\xeb\x9f\x42\xa2\x97\x6f\x1a\x16\x83\x64\x8a\xc2\x61\x94\x44\xb9\x03\x3d\x0a\x2a\x5f\x41\xf1\x76\x82\xb9\x0c\x86\x79\x6b\xa3\xad\xaf\xfa\x58\x37\x0f\x87\xb6\x5f\x3a\x84\x26\x42\xb7\x3b\x3a\x31\x7d\x47\xa9\x2c\x87\x43\x9b\xad\xc6\x94\xa0\x14\x30\xa2\xc2\xc8\x5e\x51\x73\x4c\xd1\x41\x4e\xf4\x1b\x0e\x26\xe0\xc8\x72\xd9\xb2\xc1\x34\xaf\x4f\x14\x43\xf1\x31\x34\x23\xb1\x54\xba\x6e\x4e\xbf\xa7\xa4\x6b\x51\xee\xc6\x77\x5d\xa0\xed\x28\x09\x4f\x9a\x58\xa0\x50\xb6\xc2\x16\x4a\x39\x81\x9c\x17\xa7\xae\x55\x79\x15\x0e\x3a\xe2\x71\x65\x27\x3c\x7c\xae\x1c\xd8\x18\x65\x21\x3c\xff\x46\xe0\x21\x0f\x1b\x0a\xee\xb1\x1c\x9b\x7e\x34\x8a\xe0\x9d\xc3\xcd\x78\x57\xb3\xfc\xbc\x1b\x74\x5b\x5c\x32\x52\x72\x89\xd2\x24\x1f\x46\x63\x9e\x79\x86\x29\xab\xdc\xdd\xb5\x3a\x0b\x6c\xf2\x2a\xfe\x10\xeb\xf6\xaa\x66\x9f\xba\xaa\x38\x3d\x8e\xda\x64\x94\xb2\xd5\x13\x71\x15\x7a\x1e\xbe\x69\x3b\x6f\x57\x22\xd7\xe7\xc6\x29\x0e\x45\x21\x7d\x4d\xa3\x9a\x87\xe9\x4a\x68\x72\xf4\x5a\xe0\x64\xfa\x11\x4d\x00\x5f\xb7\xc1\xd1\x96\x70\x98\xfb\xa6\x3c\x56\x51\x11\xb1\xbb\x66\x19\xbd\x9b\x59\xd3\x67\x00\x8d\x96\x46\x97\xd0\xa9\x19\x67\xa3\xfb\xca\xed\x5d\x06\xfd\xd2\x4b\x08\x00\xb8\x4d\x1c\xbf\x6f\x13\x56\x2c\xe1\x7e\xa3\x40\x31\x4a\x36\x71\xa5\xb3\xb3\x0b\xdd\x38\x4d\xb9\xc5\xdf\x35\xb3\x3a\x0f\xed\x44\xe0\x65\x05\xfa\x51\xce\x19\x21\x7e\x2a\xaf\x07\x56\x13\x0a\xdb\xbc\x3a\x5c\x8d\xf5\x95\x28\x49\x47\x69\x91\x4e\xf9\x38\x02\xfc\x2f\x30\x7b\xff\x1e\x93\x8a\xf9\xff\x30\xf0\x0b\x72\x54\x26\x95\x69\x18\x74\x54\x2b\x20\x10\x41\x7c\xad\x12\x02\x2b\xc4\xd4\xb4\x7f\x66\x83\x95\x68\xb8\x76\xae\x93\x0d\xaf\xb5\x28\x11\xcd\xd4\x95\x88\xe0\xf5\xde\x51\xdd\xed\x77\x02\x4f\xac\xba\x64\x6d\xbc\xb7\x1a\x23\x00\xc5\x76\x01\xe1\x8f\x4c\xf5\x83\x89\x3a\x70\xaf\x02\xe1\xa9\xab\x9c\x38\x65\xb7\x50\xc9\x1e\xe9\xa8\xd7\x26\x4a\x81\xe7\xbc\x4a\x18\x01\xd3\xaf\x69\x1b\x58\x95\x7a\xa2\xea\x35\x3f\x9c\xd4\x7a\xe9\x3d\xb5\xf9\x54\x6f\x8f\xf7\x60\x9e\x9f\x22\x48\x3f\x3d\x81\x12\x4d\x15\xee\x87\x0d\x45\xcf\xb9\x6c\xe2\x12\xc1\x59\x1d\x0e\xc9\xbc\x2e\xb4\x00\xc5\x45\x69\xc9\x8a\x8e\x04\x4a\x25\x72\x32\xbe\xb5\xf1\xdc\x64\x57\x54\x05\x96\x4b\x7f\xb5\xbb\xff\x37\xe9\xa9\xa5\x8f\x8d\x86\x0c\xe3\xbc\x67\x4d\xb9\xe1\xe7\x6a\xe9\x5f\xaa\x33\x22\x4a\xfe\x48\xd3\xbe\x5f\x47\xe4\x84\x48\x72\x3b\x75\x36\x0b\x2d\x64\xe7\x45\x69\x13\xde\xd5\xdb\xfa\x69\x27\xd2\xdd\xf9\xfc\x11\xde\xab\xdf\xa7\xf1\x96\xd6\x9a\xce\xfe\x19\xb6\x87\x53\x6b\x9d\x2f\x7e\x81\xed\xf1\x15\x40\x70\xf1\xfd\xf7\x95\x84\xca\xdb\x94\xae\xd9\xb8\x0e\x0b\x2f\x53\xee\x37\xcf\x93\x6b\x53\x47\x14\x6f\xd0\xd4\xc1\xbf\xf1\xa2\x08\x60\xd3\x4c\xa0\xe0\x74\x0a\x60\x0c\x21\xac\xc6\xd9\x47\x5e\xe8\xdf\xfd\xed\x5e\x67\xff\x7e\xaf\xa3\xa7\xc8\xa7\x14\x68\x91\xa9\xac\x69\x28\xff\xdc\xff\xbf\xd7\xd4\xaa\x05\x2d\x5e\x61\x06\x42\x6c\x01\xcb\xf6\xb6\x06\xac\xbd\xed\xa8\xf7\x58\x69\x44\x72\x3b\xc8\x2e\x23\x27\x82\xd3\x93\x1d\x0f\xe4\x5f\xf7\xf4\x5a\x3c\xf2\x7c\xc5\xda\xb1\xab\x59\x63\x93\xdc\x54\x59\x95\x0d\xd5\x2d\x7a\x56\xab\x96\x8d\x22\x47\xbe\x81\xe1\xf8\x7a\xa0\x3a\x1e\xbe\xae\x92\xcd\xb9\xa5\x5c\x33\x29\xcf\x57\x7f\xee\xc0\x28\xd5\xa3\xc9\x20\x39\x95\xe3\x62\x18\x5b\x6e\x89\x40\x62\xf3\x3a\xcd\x22\x5f\xab\x16\xb9\xaf\x94\x76\xd1\x86\x0c\x32\xc7\x54\x9d\xa6\xd5\xc2\xd7\xca\xd7\x2f\xc2\xe1\x36\x7a\x38\x97\xa0\x9e\x13\xc6\x75\x16\xdb\x75\x8d\xfa\x0e\xe5\xf2\xdd\x40\xc9\x17\x9d\x57\xbf\x9b\xc7\xb6\x4f\xe4\x0d\xd5\xdf\x4a\xbc\xe0\x9f\xe1\x83\x36\x72\x97\xa1\x8d\x46\x36\x93\x38\x14\x23\xcb\x4d\x21\x7c\xe3\xb8\x94\xa9\xcf\x83\x92\x25\x1b\x28\x0c\x31\x6d\x7f\xe0\x53\x88\x6f\xb6\xb4\xdb\x7c\xb9\x1b\xc6\x69\x4e\x2d\x07\x1b\x6b\x4a\x60\xf4\xc2\x44\xf1\xdc\x36\x5c\xff\x99\x43\xdd\x38\x8a\x21\x55\xe3\xfa\x29\xdf\x53\xfc\x6d\xef\x4d\x76\x7b\x2d\x01\xf6\xf5\x84\xd7\x57\xc1\x0e\x39\x69\x07\x67\x7b\x5d\x25\xed\xc6\xe9\xb8\x8c\xd3\x92\x12\x31\x07\x1d\x1c\x95\xf2\x10\x82\x47\xf5\xc1\x5b\xdf\x8e\x6d\xd2\x87\x30\x45\x5b\x14\x52\xbd\x09\xd3\x54\xe1\x8c\x10\xce\xaa\x36\xe1\x8d\x71\x99\x0f\x3b\x8a\x89\xf7\x94\x4a\x9c\x9f\x52\x07\x84\x49\xfa\xab\x1f\xdf\xe7\xf9\x29\xa5\x70\x50\xd8\x6c\x64\xfb\x91\x29\x40\x9f\x03\x58\x33\xab\x08\xf2\x8d\x02\xa3\xd6\xf4\x5e\x9a\x24\x4b\xe4\x66\x2c\xa5\x04\xc0\x54\xdd\x49\xd7\x54\x65\xaa\xee\x80\x0d\x4b\x68\x5e\x8b\x6e\x6c\x65\x3a\xf9\x5a\xf5\xbf\x46\x49\x3f\x5a\x8e\xfa\xa5\x89\x51\xb7\x92\x2c\xbc\x96\xc8\xa2\x81\x10\x9a\x25\x4f\x68\x18\x9b\x24\xb4\x9c\xa6\x13\xe9\x7f\x45\xe4\xc5\xa2\x51\x38\x91\xee\xbb\xcd\xb5\x9c\xf6\x8f\x32\x8c\x17\xf9\xe0\xbf\x3d\xf1\x89\xe2\xbf\x5d\x83\xd1\x8c\x6d\xff\x19\x3a\x63\x99\x99\xb4\xe7\x0a\xe1\x5f\x7d\x86\x74\x54\xe4\x99\x54\x82\x7c\x67\x4f\x41\xab\x41\x36\x82\x50\x1e\x44\xea\xc0\x94\x3e\x89\xc4\x16\x6e\xbe\x85\x09\x41\xa2\x71\x0a\x1c\x13\xee\x8c\x3e\x20\x7c\x08\x60\xa1\x84\x6f\x0f\xd1\x18\x94\x8a\x4e\x72\xc2\x1f\x8f\x78\x2b\x50\xda\xc4\x3b\xd0\xf9\x20\x96\x82\x96\x16\xe2\xac\x0e\x34\x64\xb0\x06\x6e\x3b\x44\x90\xe9\x2f\xdb\xac\x88\x72\xbf\xf1\x51\x81\xe2\xc0\x82\x6f\x1a\x48\x67\x74\xe1\x9a\xbc\xcc\x9c\x43\x09\xff\xeb\x6d\x1a\x59\xbe\x56\x2b\x78\x64\x22\x0e\x01\xa5\x7c\xe2\x67\x60\xaa\xe7\xab\xdc\x5b\x21\x7f\x08\x1b\x78\xba\x96\x34\x49\xb3\x42\x20\xe3\x22\x01\x48\x2f\xcb\x37\x0a\x0d\x3a\x34\x31\x75\x4f\x55\x63\x8c\xca\xcd\x79\x1c\xe9\x7c\xa3\x90\xfd\x76\x64\xb3\x81\x25\xec\x2f\x80\x94\xeb\x34\xe8\xf0\x85\x78\x96\x59\x62\x5e\x23\x0a\x1f\x29\x4a\xd1\x47\x0a\x94\xf6\xbf\xfc\xcf\xff\x23\xf6\xa9\x83\xfc\xef\x9f\x91\x6b\x05\xe7\xb5\xc7\x8a\x8c\x48\xf7\xa0\x3b\x88\xb9\x7b\x07\x43\xee\x04\x66\x5c\x8f\xd8\x6d\xb7\x01\xcc\x20\xb1\xb1\xcf\x15\xc2\x5b\xdd\xdb\x53\x0a\x3a\x7b\xd7\x84\x1b\x82\xb8\xfd\xa3\xb0\x90\xe6\x3a\xc1\x41\x3d\x98\x68\x3c\xf0\x83\x46\x38\x02\xb6\x92\x84\xcb\x71\x1c\x66\x2a\xc3\xde\x8c\xb5\xab\xc5\xb0\x58\x46\x71\x75\xe0\x70\x88\xc4\x84\xf3\x34\xc9\x42\x3e\xef\xe9\x26\xa2\xe2\x37\x2a\x3f\x04\x91\x2a\x7c\x4c\xbc\x35\x7b\x5e\xf2\x43\x3e\x9c\x7d\x4c\x00\x4a\xd8\xd8\x8f\xe0\xdf\x30\x5c\x29\x50\xd0\x9e\xeb\xea\x50\xb8\x8d\xd1\x84\x8b\xf1\x70\xa2\xca\xf7\x4f\xf4\xbc\x2c\xc9\x3b\xa4\x4a\x21\x64\xef\x95\x8b\x26\x7c\x05\xaa\x80\xf3\x2e\x96\x81\xb8\xc1\x84\xcb\xe4\x7d\x4c\x68\x16\x8c\x3c\x37\x3c\x41\x23\xea\xa9\xb5\x6a\xe2\x5d\x2b\xed\x8b\x33\xfc\x01\x28\x58\xc2\x4f\x78\xc4\x2d\x56\xd8\x2c\x5b\xd7\x14\xc7\xc8\xdf\x53\xcc\x72\xdf\x04\x95\x11\x5a\x9e\xd8\x8a\xe0\x3c\xde\x0e\xd7\x56\x74\x85\x37\xe7\xa2\x3f\xd3\x1d\x45\x61\x96\xae\x98\x65\xf1\x81\x84\xc8\x57\xb3\xfa\x06\xde\xab\x4f\xd2\xa7\x3c\xf0\xf7\x96\xe6\x89\x65\x4a\x72\x24\x50\x90\x34\xc6\x4b\x7f\x14\x28\x57\x76\x4f\x4f\xb3\xe0\xeb\xb6\x80\x5f\x60\x6c\xd0\xa5\x70\x93\xd2\x14\x80\x92\x7c\x1b\xd3\x07\x43\x78\x8f\x3c\x23\xb1\x83\x54\xb9\x44\xf5\x64\x0a\x28\x3a\xd7\x51\x7a\x58\xa4\x42\x05\x5c\x2f\xfe\x9c\x2f\xcf\x7e\xb7\x15\x95\x93\xd9\x30\x1d\x24\x4e\x77\x52\x99\x49\x9f\xc6\x16\x46\xe7\x57\x6c\x31\xad\x28\xfe\x2f\xaa\x23\x63\x67\xcf\xe7\x11\xef\xe8\x4c\xc6\x65\x85\xaa\x1a\xa5\x59\x1a\x86\x69\x47\xf7\x3c\x72\x90\x24\x9e\x4e\xb3\x50\x36\xdf\x8d\x12\x7d\xe0\xb2\x30\x7b\xe0\x53\xde\x17\x1c\xe5\x74\xdc\x47\xaf\x0d\x1e\xfc\xfd\x89\x52\x3d\x7a\xdf\xb7\x45\x98\x57\x5f\xf5\x70\x4f\x9c\x25\x3b\xd7\x3c\x0e\x62\x37\xa5\xdf\x30\xfe\xbf\x6c\xaf\x62\x17\x51\x11\x5b\x94\xf7\x25\x8a\xf2\x58\x20\xe4\xb8\xa5\xfa\xd2\xe6\xf2\x1d\x35\x99\x85\x3c\x87\xf0\xf7\xd0\x83\x0a\xd0\x41\x45\xda\x51\xc2\x85\x1d\x47\x9f\xe1\x80\xd6\xc8\xdc\xba\x66\x44\xb7\x39\xb6\xf5\x14\x37\xe9\xd0\x1c\xb5\x69\x09\x04\x03\xbe\x42\xb3\x71\x3c\x74\xee\xc0\x52\x9c\x9a\x62\x3b\xed\x2a\x9c\xe6\x3f\x9f\xa8\x3e\x97\xab\x41\x65\x06\x30\x8e\xf8\x29\xec\x49\x40\x2f\x10\x22\xfd\x4d\x85\x56\xbc\xd4\x98\x46\x06\x46\x54\x21\x02\x4f\x23\xb2\xad\x68\x03\xe2\xeb\xc9\xaf\xd7\x84\x22\xb3\x71\x66\x0b\xe4\xbb\x30\x55\xcc\x87\xa7\x8a\x90\xaf\x4f\x3c\x5e\xf8\x0f\xdb\x1c\xf8\x62\xa8\x70\x14\x80\x20\x21\xd4\xe6\xeb\xb6\xfe\xfc\x38\x4d\x85\x66\xca\xf1\xce\x79\x46\xd0\x53\x4a\x26\xd7\x2e\xdb\x6c\x75\xa7\x02\x26\x5c\x55\x22\x53\xdb\xa1\xbe\x00\x23\x07\xc2\x34\x17\x71\x57\xdf\x8d\xc0\x7f\x43\xc3\xf3\xa6\x88\x57\x99\x4d\x02\x4d\x35\x1d\x01\x5f\x7b\xa6\xa7\xa0\x1b\x43\x3b\x8a\x42\x13\xe7\x3b\xab\xbf\xe5\x0a\x25\x79\x48\x52\xad\xa4\x6f\xc7\x17\xde\xd4\xad\xd8\x1f\xf0\x29\x87\x74\x0d\x7c\x5e\x6c\x58\x90\x13\x21\xb8\x66\xc2\x7d\x91\xa8\x6a\x23\x45\x1f\xa5\xcb\xb6\xc6\x6f\x75\x4d\x65\x20\x74\x7f\x42\x99\x8c\x63\x93\x24\x6c\x5a\x10\x7f\xa0\x10\xcf\xd7\xca\x03\xa6\x60\x33\x8b\xc2\xa8\x60\xb7\x9e\xc1\xcb\xfc\xd0\x02\x65\xf6\x59\x65\x00\x75\xa7\x14\x4e\xf9\x6d\x5a\x8e\x32\x13\xb4\x98\x91\x75\x68\xb6\x44\xbf\xfc\x72\x37\xb7\x51\x3e\x4c\xa9\x6c\x2c\x2c\x36\xaa\x3b\x61\xe2\x1b\x00\x4e\x13\x96\x1a\x0e\xc9\x54\xcf\x57\x11\xcd\x20\xb3\x60\xc8\xab\xf3\x79\x70\x86\x18\xb3\x2c\xe9\x62\xdf\x7d\x72\xa1\x91\xbc\x3b\x30\xc7\x30\xd6\x34\xe9\x97\xae\xff\x1a\x8e\xf4\x37\x15\x7b\xed\x37\x15\x89\x64\x5a\x16\x63\x53\x44\xce\x29\x11\x30\xa8\x02\xa9\x6a\x69\xb4\x61\xca\x30\x3c\xe9\xb9\x52\x11\xc2\x4f\xb5\x6c\xb9\x42\xd6\x0c\xd3\x2c\xb7\x43\x6b\x98\x4c\x1a\xc6\xed\x35\x4d\x8f\x7e\x82\xdf\x58\xe0\x71\x2d\xc5\x79\x9b\x87\x66\x0c\x60\x89\x10\x53\x76\x1c\xdf\xdd\x45\xc5\x0c\xb3\x32\x4c\x41\x60\x04\x9b\x7e\x52\xd9\xf7\x93\x2e\xcb\xb0\x94\x66\x36\x1a\x24\xd4\x01\x0c\x1f\x7e\x6a\x4d\x81\x32\x4e\x28\xc0\xe2\x8e\x5e\xad\x69\x86\x9e\x1a\x05\x87\xfb\x7c\x42\x4a\x91\x6d\x73\x5f\xed\xa1\x97\xba\x8b\xe5\x2a\x8d\x96\x13\x23\xaf\x7e\x43\x6a\x91\xd5\x5e\x13\x54\xf2\xe6\x13\xd5\x49\x30\xa5\x49\x31\xe4\xbe\x57\x80\xc5\x80\x05\x42\x29\xe1\xb8\xee\xb9\x78\xe0\x8a\x3a\x79\x19\x86\x36\x5f\x2a\x41\x72\x06\x47\x17\x95\x24\xbe\x6e\xab\xfd\x2f\x9a\x84\x83\x3f\xd4\x7d\x6e\x61\xff\x23\xc4\x3e\xa9\x8e\xa5\x33\xce\xd8\x97\xcf\xe7\xcf\x9b\x8e\xef\x0d\xbf\x56\xeb\x87\x52\x0a\xc4\x23\x3b\x4c\x57\xb6\xd5\x54\x1a\x5d\x4a\xf6\xaf\xff\x85\x9e\xaf\x71\xed\x5a\x53\x76\x06\xf9\x55\x2f\x9b\x22\xdf\xb6\xba\x68\x4d\x92\x83\xb0\x44\x20\x0f\x98\x09\x24\x6b\x2e\x2b\x32\xd2\xc1\xd3\xbd\x8e\x92\x13\xa4\x6f\xc7\x26\xbf\xaf\xec\x6f\x68\x92\xfe\x2a\x70\x5f\x32\x42\xf4\x15\xb0\xb9\x0f\x54\x2d\xfd\xab\xb4\x32\x90\xb2\xbc\xac\xd0\xd8\x79\x38\x34\x0c\x48\x9b\xdb\xa0\xbc\xf2\xcc\xc6\x03\xb5\x07\xc6\x99\xed\x47\x61\x61\xfb\x3b\xbc\x73\x74\x47\x29\x34\x6d\x90\x13\xce\x24\x06\xf5\xf6\x6f\xbc\x9a\xa7\x8e\x11\x7e\xdc\x0b\xaa\xc0\x78\x47\x55\x60\x12\x9b\x2d\xa7\x65\x4e\x2d\x52\x78\x01\x20\xf1\xb1\x68\x77\x61\x9d\xbb\x3e\xd8\x6a\xcf\x63\x75\x7e\x80\x93\x1a\x56\x7d\xab\xc2\x21\xdf\xa3\x8e\x04\xa9\xb5\x6f\x5e\xe5\xfb\xf7\x77\x8d\xd1\xab\x60\x4b\x4f\xad\x82\x2d\x6b\xbe\xbe\x99\x87\x59\xb4\x68\xfb\x3b\xe8\x67\x5c\xff\xf5\x82\xd7\xd9\x6a\x50\xd0\x68\xf9\x07\x29\x25\xa8\x9a\xf0\xba\xe6\x10\xda\xd1\x80\x6c\x56\xd1\x56\x75\xfe\x27\x7d\x24\x48\x05\x7d\x74\x65\xa2\xba\x14\xfe\x16\xf6\xa4\x90\x8c\x78\x97\x47\xf4\x49\x76\x78\x37\xe5\xa2\x0a\x1c\xb9\x8a\x07\x57\xe2\x7e\x50\x13\xdc\x50\xba\x1a\x74\xaa\xf0\x1f\x69\x19\xc3\xa9\x9e\x6c\xa2\x22\x2b\x8b\x21\x7c\x33\xcc\x2b\xf2\x33\x30\x3e\x60\x4a\x11\x27\x8b\x3e\xcf\xb4\x43\x0a\xad\x5f\xb9\x5c\xc3\x6a\x93\x91\xd9\x63\x3e\x41\x32\x7b\xc2\x2d\xa8\x5a\x72\xcb\xbc\xc8\x4c\x1c\x19\x45\x57\x7b\x59\x13\x6f\x5f\x0e\x5c\xe2\x7f\xf6\x19\x0a\x88\x60\xae\x3e\xd2\x52\x82\x9f\xe9\x6d\xfd\x34\x0f\xe6\xaf\x26\x5e\x33\xaa\xb3\xe6\x33\xe5\xdb\x28\x4a\xe3\x56\x7d\xd5\xd2\xcc\xdc\x9e\x08\xf8\xb6\x68\xf1\xdd\xfb\x8a\xf4\x7d\x2b\x56\x29\x9b\x4d\x2c\x4c\x38\xc2\x77\x50\xa6\x81\xd1\xfe\x7f\x90\xcd\x17\x2a\x25\x05\x65\xfe\xc4\x5f\xa2\x74\x3c\x96\xc6\xe3\x89\x62\x61\xf8\xa5\x8a\xff\x9a\x98\xd9\xf9\x97\x0e\x76\x63\x6b\xfa\x22\x6d\xed\xd4\xe2\x45\xcc\xea\x1f\xae\x23\xf8\x12\xbd\x3d\xa7\x91\x9f\xc6\xb1\xc1\x81\x8b\x78\x1b\x1e\x29\x5f\x3b\x56\xc9\x30\x4d\x72\x9b\x2d\x93\xfa\x47\xc7\x77\x01\x77\x7a\xaa\xbd\xb6\xb3\xd6\x02\x44\xac\x4e\x5e\xb6\xcf\x8c\xf0\x83\x7d\xc6\x4b\xa1\xdf\x4d\xba\x06\x7d\xb6\xe6\xff\xe5\xeb\xdd\x82\x24\xb9\xce\x33\xb1\x99\xea\x9e\x19\x00\x83\xcb\x80\x00\x49\xed\x86\xe5\x2d\x39\xe4\x65\x38\x82\x8b\x50\x38\x1c\x1b\x2b\x3f\x6c\xd6\xce\x34\x09\xcd\x84\xd8\x98\xe8\x19\x61\x24\x3c\xe1\x54\xd6\xa9\xaa\x64\x67\x65\x16\xf3\xd2\x3d\x8d\xf0\x8b\x1d\x7e\xb0\x37\xfc\xa0\x50\xd8\x7e\xf2\x83\xed\xb5\x62\xd7\x96\x96\xba\x5f\x28\x4a\xac\x26\x25\x8a\x57\x41\x00\x71\x21\x40\x02\x98\xfb\xfd\xd2\x73\xbf\xcf\xc0\x91\xff\xf7\xff\xe7\xfc\xd9\x99\xb3\x6f\x99\x33\xdd\x5d\x59\x27\xcf\xf9\xaf\xdf\xff\x7d\x5f\x35\x93\x89\x10\x00\x8a\x72\x6d\xf5\x5e\xf8\xba\x6d\x64\x70\x9a\xa5\xa1\xb5\x83\xb9\x2a\xb1\x76\x92\xb6\x2e\x2b\x44\x1f\x5d\x54\x94\x84\x86\x66\xd9\x66\xe1\x38\xb2\xc3\xea\xd7\xf6\xec\xe1\x97\xc3\x10\x26\x44\xfe\xbf\x33\xf3\xb3\x49\xe7\x15\xc8\x67\x64\x26\xae\x59\x28\x33\xef\x1d\x47\xb3\xd4\x24\xfd\x59\xda\xdd\x1d\x47\xa3\x31\x30\xd1\x9e\x82\x87\xce\x22\xb6\xd1\x31\x9c\x39\x11\x25\x95\x47\x34\x79\x91\x96\x20\x5d\xee\x38\x9e\x65\xf0\x62\xf0\x75\x4b\x88\x5a\x2d\x86\xcb\xf0\x59\xa9\x2f\x50\x8b\x79\xd2\xbd\xfe\x38\xa5\x32\x5f\x8d\x69\x91\xbe\xbe\x3c\xe1\xd3\xae\xce\x9a\x47\xe1\x76\x1f\x26\x6f\x41\xfa\x8f\x66\xc4\xdf\xeb\x86\x24\x74\xa6\xf1\x1f\xdb\x7b\xaa\xc2\x7a\x59\x1f\xc5\x13\x8d\x77\xb8\x6f\x5f\x77\x40\xec\x15\xe0\x1f\x42\x89\x08\x3b\x58\x30\xeb\x4a\x74\xf1\x64\x1b\x02\x79\x68\xfa\xa2\x5f\x25\x43\x12\x0a\xf0\xa7\x03\xc2\x49\x64\x26\xd1\x9c\x0f\x33\x1e\x28\xa7\xc4\x5c\x04\x28\x2d\x10\xe5\x8c\xd4\x10\xad\x89\x8b\x71\x68\x44\x19\x5b\x4d\x71\x38\xbd\x84\x06\x02\xeb\xf5\xd7\xbb\xe9\x72\xa7\xca\x1f\xa5\x91\xdc\x71\x42\xd7\xe7\xd4\x78\x02\xe5\x52\xab\x63\x9b\x31\x9c\x0a\x6b\x76\x1e\x15\x46\xd7\xff\xf1\xc3\x0a\xb0\xff\xfc\x53\x8d\xc5\x58\xda\xdd\x9d\xa6\x34\x76\xab\xe6\xf8\x4e\xd3\x47\xf3\x75\xe3\x57\x0e\xed\xef\xda\xa8\xa8\xb6\x68\x75\x16\xdc\x27\x2e\x1c\x64\x17\x7a\x2b\xf0\xba\x7f\x9f\x34\x72\xcd\x6a\x83\x9b\x2c\x27\xb6\xe1\x85\x83\x42\xd7\x8e\x37\x26\xdc\xed\x2f\xb8\x51\xa2\xcc\x4e\xb3\x34\x1d\xba\x42\x31\xaa\x6d\xf7\x15\x93\xc6\xfd\x36\x54\xb3\xe9\xa7\x65\x31\xe7\x69\x43\x6f\x28\x03\xbd\xb5\xd7\x71\xb5\xb2\xa6\xfe\xf2\xd2\xee\x6e\x99\x0c\x6c\x96\x17\x44\x8b\xab\x04\x55\x69\x7d\x60\xfb\x2f\x28\x11\xb5\x23\xaa\xdb\xf0\x96\xaa\xe6\x46\x59\xbe\x53\x8d\x83\xdd\xa5\x40\xc0\x4d\xbc\x57\x1b\x01\x35\xe3\x27\xb1\xf3\xb1\xd9\xff\x89\x36\x93\x4f\xb3\x3c\x3c\xa2\xdf\xa7\x7b\x3e\xcd\x7d\x71\x9d\xde\x3c\x4a\xc8\xf7\xe0\x23\x90\xcb\x40\x73\x53\x66\xbd\xfd\xf9\xda\xd1\x60\x69\x5f\x24\x12\xaf\xd0\x4f\x4f\xbb\x31\x05\x57\x93\x01\xf4\x11\x45\x94\xeb\x0a\x15\xfa\xd5\xca\x15\xa8\xb3\x77\x46\x4f\x99\xf0\x88\x24\x5c\xd6\x47\x2e\x21\x59\x31\x59\x94\x96\x18\xa3\x70\x20\x2c\x4f\x93\x7b\x42\x95\xd5\xa7\x63\x1b\x9b\x64\xbb\x62\x5d\xbb\xae\x4d\x0d\x86\x36\xdd\x84\xf0\xc2\x41\xb9\x86\xdf\x42\xa0\xf3\x91\xa2\x16\xfb\x68\xd3\x08\x73\x65\x3a\xd6\xe6\xbd\xc3\xeb\xa0\x05\xe3\x28\x0f\xaa\xa5\x45\x00\x7c\x54\xa3\x21\x2e\x2a\x54\xd2\x34\xb3\x39\x09\xc1\x54\x8f\xe2\x04\x6d\x97\xf6\x2b\x41\x5b\x0e\x7e\xd2\x7c\x1c\xad\x95\xcb\x91\x22\x2b\x3a\x3a\x53\x3a\x53\x47\x9b\x24\x64\x0b\xdd\xcc\x4e\x4c\x94\xe8\xe6\xde\x46\x6d\x9e\x41\xb3\x4a\x99\x64\x60\xe2\x79\xfa\xea\xd8\x50\x57\x94\x48\x14\x08\x7d\x10\x4c\x7e\x5f\xb7\x30\xdf\x6c\x04\x06\xfb\xf6\x75\x33\x93\x0c\xd2\x09\xc3\xb2\x1c\x67\x86\x03\x45\x6f\x68\x36\xd1\xca\x89\x0e\xca\xcc\x72\xc5\x09\xb6\x02\x1b\xc6\x09\x40\x38\x60\xcd\x39\x95\x48\xac\x44\x76\xd5\xa9\xcb\x09\x43\x2e\x7d\x53\x29\x2e\x78\xbd\xc5\xa9\x09\x97\x61\x97\xb4\xbc\x99\x04\x80\x4a\xe7\xaa\x30\x6b\xb0\x60\x9e\xac\x42\x4d\x42\x2b\x7e\xde\x2a\x47\x71\x23\x64\xc8\x85\xe7\x14\x6f\xd3\xdc\x7a\x0b\x13\xca\x81\x6e\x98\x0e\x10\x7b\xca\xc1\xa2\x95\xe4\x9b\x06\x54\xf3\xe0\x2b\x5e\x61\x1b\xc7\xe0\x9a\x62\x49\xb8\xa6\xe4\x18\x92\x74\x12\x25\x2c\x85\x21\x64\x0f\xf4\x75\xa5\xb6\xf2\xf8\xac\x39\x1b\x19\x0c\xd1\x2a\x65\x36\xcf\x11\xda\x52\x55\xac\x72\xca\xbe\xc7\x7d\xbb\x7a\x94\x43\xc7\xe8\xd7\x4b\x55\x45\x9a\x96\xde\xee\xb1\xe7\x0f\xc1\x2a\xe1\x06\x98\xab\x90\x84\x67\xd1\x10\x92\xe8\x41\x4b\xfe\xa9\x40\x01\x68\x1e\x36\x3c\x39\x35\x7f\x62\x33\x91\x08\x44\xd7\x80\xa4\x38\xd4\x64\xb7\xcf\xd3\x38\x1a\x28\x7a\xf3\x0b\x8a\xb4\xf3\x82\x8a\x0d\xfb\x76\x6c\x56\x6c\x47\xa7\x97\x27\x02\xc5\x42\x76\x42\x3b\xd5\xc3\x61\x99\x31\xb1\xcb\xd2\x6e\x9f\xf5\xb8\x99\xe7\xbb\xad\xac\x62\xd3\xb0\xa3\x26\x85\x2e\xab\x32\xff\x65\x45\xb6\x45\x35\xab\x69\xba\xca\xd2\xce\x2c\x90\xae\xc8\x6a\x5b\x69\xff\x7f\xb9\x3b\x4c\x33\x9e\xb7\x75\x87\xd1\xc9\xf2\x6c\xb4\xa1\x56\x4d\x92\x94\x26\xa6\x16\x05\x6d\x23\xfc\x75\x88\x79\xf1\xb5\x0b\xe8\x46\xa5\xc9\x06\x5c\x78\xd1\x9a\x4f\x52\x1f\xa3\x17\x82\xee\xfa\xdd\xc6\x7e\xaa\x5e\xdc\x57\xcb\x41\x14\x46\x4c\x34\x8f\x1f\xdc\xd0\x32\x8a\x1b\x6a\xb8\x75\xb0\x56\xbd\xe2\x6a\x8f\x88\x38\x64\xc7\x29\xbe\x6c\xb8\x28\xbb\x6f\xe3\x78\xd5\x22\xb2\x70\x2c\x79\x77\x81\xd5\x95\x8a\x44\xf5\x88\xa2\x33\xa6\x5e\x75\x9c\xa6\x2c\x74\x27\x60\x08\x45\xeb\x75\xa2\xf1\xfc\xfb\xf6\x1d\xe8\xda\xc3\x36\x0b\xa3\x1c\x25\x37\xd7\x40\x77\x78\x94\x0d\x0f\x42\x4a\xa2\x89\x71\xa2\x12\x3c\xef\xaf\x88\xe9\x1e\x35\xf6\x28\x89\x34\xc6\xfc\x12\x84\x0f\xb6\x26\x48\xb3\x99\x99\x7a\xe1\x60\x77\x60\x93\x32\x8c\xad\xc9\x5c\x8b\x89\xb9\x23\x10\x79\x08\x91\x44\x13\x67\xb1\xd8\x9d\xa4\xc9\xc0\xac\xe5\xf3\x9e\x7d\xe1\x94\xae\x04\x9d\xc3\xcb\x14\xd2\x55\x7a\xe5\x88\x60\x3f\x55\x9c\x02\xfb\xbf\xb4\x04\x94\x95\xb3\xa0\x0e\xff\x7f\x13\xae\x1a\xe1\xd9\x4f\x1b\xb4\xda\xaf\xee\x5e\x40\xd0\xb4\x9a\x45\x45\x61\x79\x2e\xd8\xa9\x74\xef\xdb\xe7\x54\xba\x6b\xea\x66\x71\xbc\xbd\x0a\x20\xa5\xc3\x4d\x3d\x3b\xdd\xfa\xd6\x23\x27\x48\xa7\x7f\x46\x51\x26\xec\xe8\x16\x54\xd2\xd0\x89\x6c\xe2\xe5\xab\xdc\xc6\x64\xcb\x73\xb5\xd9\x15\x87\x92\xfc\xd6\xcc\xcb\x4d\x5e\xf0\x65\x45\x6b\x32\xc6\x76\x7a\x2e\x1d\x68\x39\xf1\x75\x4d\x25\x95\x2a\x2f\xc8\x58\x65\x84\x5d\xf7\xeb\x4e\xc1\xd6\xc0\x4b\xfc\xd4\x0b\xab\x64\xd1\xd4\x4f\x88\x60\x61\xae\xa9\x52\xef\xb5\xb6\x4e\x4b\x6e\xed\x32\x90\x8c\xf8\xdb\x6f\x6b\x14\xe0\xdb\xae\x61\x57\x26\x51\x91\x96\x19\x0b\x35\xe3\xab\x6e\xe1\x28\x12\xe0\x0d\x94\xbd\x44\xfa\xab\x85\x3e\xb6\x9f\x42\xa5\x00\xef\x50\x0a\xf1\xb5\xca\xa6\x5f\x83\x22\xca\xf3\xd2\x22\xa8\x73\x02\x93\x5e\x6c\xb2\x0d\x7a\x1c\x25\xd3\x92\x75\x7a\x5c\xf9\xdf\xcb\xd5\x61\xa4\x81\x15\x3d\x14\x79\x66\xdf\x92\x16\xd6\x67\xc9\xe7\xc0\x55\x77\x28\x8c\x47\xc2\x76\x15\xcb\xc1\x52\xd0\x81\x46\xec\x23\x5a\x44\xb2\x7c\x14\x7b\x0c\x7b\xe9\x1e\x75\xef\xdd\x44\xaf\x4f\x38\xc1\xd1\x04\xb8\xc0\x93\x3d\xc5\x74\x03\x9e\x19\x9e\x0a\x42\x57\x59\x4d\xac\x4a\xe4\xf1\x4d\x7c\x1f\xfc\x0a\x54\x49\x58\x46\x8f\xd8\x6c\x44\xd5\x49\x4d\x22\xce\x53\xc1\x1b\x6e\xe3\x59\xc0\x77\x45\x22\xb5\xda\xee\x70\x56\x3c\xe2\x8d\x8e\xd9\x75\x35\x62\x35\xc9\x5e\xfa\x0c\x3d\x24\xba\x5a\x73\x3d\x9f\x88\x31\xf6\x40\x58\x00\x15\x21\xf0\xb6\x75\x15\x7e\xbd\x48\x9f\x0f\x6b\x7b\x29\xf0\x75\xa9\xb9\x5d\x60\x78\x45\x39\xe6\x58\xe0\x99\x99\xbf\xf7\x99\x75\xdf\x1b\xfd\xcf\x49\x48\x1d\x36\xf9\x13\x1d\x3d\x6f\xe9\xf9\x49\x0d\xb0\x49\x4a\x01\xa3\x3a\xdd\x08\x7f\xff\xc7\xc0\xab\xda\x9c\xae\xcd\x22\x3f\x44\x1d\x0c\x31\xff\xd5\x36\x78\xf9\x2f\x77\x07\x25\xdc\x23\x6a\xf8\x70\xd7\x7c\x3d\xdb\x9c\x5e\x2f\x2e\x1e\xe8\x9a\x8e\x62\x50\xbb\x14\x78\xd8\xf3\xa5\xd9\x8b\xcd\xa1\x98\xbd\x8b\x9f\xa7\x6f\x83\xba\xf2\xdf\xd0\xd6\x44\xaa\x31\x07\xdb\xe3\xb8\x12\xbf\xe2\xdb\x9a\x5a\xc0\x10\xbd\x4c\xd4\xf7\x6f\xd1\xa7\xb9\xba\xff\x92\xf8\x26\x1e\x60\xc4\x6b\x01\xbb\x2f\x9f\x4e\x80\x08\x85\x41\x83\x5e\x1e\xd0\x29\x3b\x7b\x8a\x65\x68\x2b\x75\x42\xe1\xb4\xb7\xf5\xe8\x7c\x60\x7f\x7f\x87\x36\x3e\x9a\x71\x3f\x41\x18\x86\x54\x6b\x5b\x4f\x9d\xe6\xad\xd8\xc7\x4e\x80\xe1\xcb\x87\xdc\xe4\x49\xf5\x62\x60\x60\x9e\x5c\xaf\x76\xae\x03\x0b\x7f\xe9\x37\x5d\x06\xe7\xbd\x47\xb2\x82\x94\x0a\xd4\xbe\x9d\x9e\xe2\xbd\x44\x23\x1c\xd9\xe1\x79\x95\x93\x9e\x46\x48\x85\xf8\x8b\x58\x52\x41\xe6\xd5\xf1\x45\x56\xf4\x4b\x25\xea\xf6\x29\x62\x62\xf2\x81\xf9\xda\x0e\xfa\xba\x8e\xbe\x52\x71\x59\xd2\xa7\xc0\x13\x32\x77\xa9\xe8\x6e\x2a\x20\xdb\xc5\x40\x75\xe8\x6e\x2b\xf2\x93\x07\x6d\x93\x7d\x2b\x26\xa1\x90\x89\x36\x9c\x7c\x7f\x95\xcd\xb6\x55\xd7\xfa\x76\x98\x66\x00\x53\xe2\x2b\x6f\xc1\xda\x63\x2d\x2e\x2b\x72\x1a\x7c\x3c\x2a\xce\xf3\xeb\x4a\xae\x2e\x33\x03\xfb\x3c\xb1\xd5\x5e\x44\x96\x84\x32\xe5\x35\xc6\xff\x60\x0b\x3e\xc0\x90\x8d\x7b\x2a\x37\xc7\xbb\x4e\x49\x29\x4a\xa8\xc7\x02\x1d\xb1\xcf\x3c\x8e\xe9\x16\x0a\x08\x82\x6f\xf3\x94\x48\xff\x6e\xa6\x3c\xd8\x3f\xd2\x97\x85\x95\x7a\x44\x67\x41\xf4\x58\xab\x4d\x83\xa7\xfa\x43\x18\x29\xc7\x0e\xe3\x9f\x09\x06\x1a\x4b\xfd\x8e\x56\x44\x1c\xad\xcd\xe3\xc8\xb8\x21\x85\xea\x23\x61\x64\xa1\xf9\xc6\x91\x1f\x7d\x3c\xbc\xfd\x5d\xdf\x79\x2b\x8c\xe7\x3a\x17\xbc\x73\xf5\x05\xf8\xba\xf1\x22\xa1\xfd\x5f\x8c\xa9\x77\xb8\x09\x7b\xcc\xd7\x0d\xf6\x91\xa5\xdd\x4b\xdd\xbc\xcc\x0b\x13\x25\xc4\xe4\xab\x22\xe3\x1f\x29\x0a\x91\x1f\xb5\xa6\x37\xc3\xcc\xe6\xa1\xc1\xef\xb4\x62\x58\xe4\xab\xa4\x65\x31\x94\x89\x43\xb8\xab\xb3\x4a\xfe\xee\xac\x8b\x1f\xc6\x26\x1b\x0c\xa2\x7c\xb9\xe3\xf7\xeb\x65\x45\x7f\xdb\x04\x22\x2c\xed\x96\x49\x53\xa5\x69\x76\x52\x05\xe0\xd7\xf1\xd6\x98\x5f\xb5\x51\x8f\xd8\xb7\x8f\xa7\xcd\xe6\x94\x58\xf0\x79\xb6\xd5\xe8\xe2\xf0\x10\xb7\x60\x62\x37\xdb\xea\x83\xaf\x74\xf3\xa9\x35\xcb\x1d\xaf\x02\xf4\x43\xd5\x72\xfc\xa1\xfb\x6e\xcb\x76\xad\x9f\x9a\x6c\x30\x4f\x2b\xe4\xa8\x93\x5c\x7f\xf9\xad\x99\x87\x2e\x6f\x51\x1c\xfb\x97\x1b\x11\xf8\x57\x58\x10\xd0\x93\x24\x7c\x30\x53\x04\xe9\x17\x01\x03\xc4\xff\xdc\x50\xd8\xf7\x7e\x5a\x14\xb1\x2b\xd8\xbb\xec\xd6\xcf\xee\x6d\x6c\xf6\x14\xfb\x97\xf6\x77\xf7\xec\x79\x92\xd6\x86\xd1\x83\x81\x2f\xf5\xcd\xe3\xc0\x0b\xb5\x26\xf9\x53\x37\x4a\x58\x1d\x67\x44\x8e\x77\x94\x36\xe2\x45\x45\xde\xfe\x90\x4e\x23\x5c\xe8\x5d\x8a\x06\x64\x60\xa6\x19\xef\xee\xef\xf6\xa3\x41\x1d\xa5\xe1\xe9\x74\x03\xcd\x41\xa0\x80\x00\x3f\x72\xb1\xa3\x9d\x50\x86\xca\x99\x38\x96\xe9\x5d\xf8\x7c\xbe\x51\x45\x9c\xa4\x24\x65\xce\x8e\x9a\x95\x01\xa1\x29\x5f\xcf\xfc\xa4\x22\x51\x06\x32\xbb\xaa\x14\x1d\x74\x05\x42\xf5\xee\xc2\x28\x0b\xcb\xd8\x48\xfc\x8a\x0d\x7d\x2d\xe8\x68\xd2\x37\xd7\x86\xfc\xde\xec\x69\x05\x1e\xff\xa5\x79\x5f\x03\xb8\x0e\xbb\x8e\x6a\x18\xc7\x66\x30\x68\x40\x69\x62\x99\x8f\xba\xaa\x60\x14\xc7\xd4\x34\x2c\x2c\x6f\x3c\xd6\x16\x45\x28\x04\x9b\x75\x3f\x50\x09\x35\x58\xd9\x60\x3c\xeb\x84\xc8\xab\x36\x7b\xa1\x7a\x44\xbc\x81\x07\x8a\xdd\xee\xf6\xcc\x13\xfb\x01\xbd\xc4\xda\x46\x64\x25\x11\xbb\xdd\x83\x0f\xc3\x2e\xba\x45\xf0\x50\x6c\x9c\xf7\x67\x4a\x81\xe7\x43\x0a\x99\xe0\xd8\x6f\xc1\xb1\x13\xfc\xf9\x97\x76\xa9\x72\xed\x8f\x60\xec\xb9\x8e\xbb\xae\x3c\xc7\x49\xad\xad\x7e\x77\xa6\xa5\xc9\x01\x9b\x74\x50\x87\x43\x75\x26\xc5\x1a\x3f\xd6\x7e\xb6\x96\x7f\xa1\xca\xc2\x2b\xb1\xc9\x23\x15\x8f\x31\x15\x1d\xdf\xa8\x68\x3e\xed\x93\x44\x45\x47\xc9\xfd\x9c\xd5\x76\xff\xac\x2b\xd8\xd9\xc3\x61\x54\xd8\x89\x4d\x18\x4e\x29\x54\xb2\x7e\xec\x09\xea\xd9\x6e\xaa\xa9\xfa\x6a\xcc\x16\xa0\xbc\xcc\x6f\x2c\xfe\x16\x3d\x57\x4d\x4b\x9a\x6f\xd4\xe1\x4f\xd2\x15\x52\x9c\xc5\x67\x39\xd4\xa5\x57\x88\x3e\x4a\x27\x5b\x70\x0b\x1d\x27\x70\x78\xbc\xad\xcb\x61\x42\x33\xb0\x13\x0b\xa1\x78\x29\x21\x77\x94\xb0\xab\x74\xcc\x42\x2a\xc4\xe8\xd8\x97\x47\xaa\x10\x89\x81\x4b\x44\x62\xa0\x16\x45\xa9\x7e\x66\x3a\xb5\x9e\x9d\x1f\x1c\x38\xd9\x60\x6c\xda\xbb\xd8\xcd\x4c\xb8\x6c\x0b\x6b\x3d\xfc\x1e\x16\x75\xdb\xba\xb7\xae\xdb\x7a\x2d\x8c\x4d\x79\xba\x62\x09\x56\x54\xac\xa9\x5c\x14\xf4\xc7\x7c\xad\x0e\x7e\x58\x65\xa2\x76\x7b\xb5\xed\x05\x9d\xd2\x71\xf3\x87\x0f\xb5\xfa\x1e\x08\x3d\x90\xfe\xde\xc1\xbe\x73\x63\x66\x2e\x5a\x9c\xeb\xf9\x0d\xb4\x6a\x58\xc8\xca\x15\xba\x8f\xd0\xa1\xe0\xeb\x16\x92\x95\x81\x8d\xa3\xd0\x14\xe8\x18\x22\x92\x45\xd2\x2d\x3c\x59\x55\x10\x23\x86\xf9\x05\x2d\x31\x37\x8d\x23\x93\x70\x19\x0e\x58\x48\xb8\x5b\xbe\x56\x20\x9b\x89\x35\xf1\xda\x9c\xaf\xc1\x50\x4c\xf7\xe8\x22\x1d\x7c\x98\xf9\xe3\x0a\xc6\x15\x25\xe1\x4b\x4f\xe3\xa5\x63\x27\x3f\x4d\x5c\xe1\xa2\x43\x44\x27\x16\x66\xe1\x86\xc6\x26\xfe\xb3\x5e\x65\x5f\x5c\x35\xcc\x95\x46\x9e\xa1\x51\x43\x04\x90\xa7\xb4\x4a\xf4\x8e\xf5\x6a\x65\x1c\x3f\xe8\x26\xfe\x30\x07\x3a\xa9\x4e\xbe\x20\x53\xbc\xca\x61\x84\x1e\x29\x7c\xc5\x09\x4d\xfc\xdf\x1c\xeb\x20\xe4\x2a\x49\x74\x4b\xa9\x4c\x40\x61\x3e\x6d\x7e\xd0\x36\xe2\x1f\xc6\x86\xc7\x34\x01\x1d\xe9\xac\x2b\x1c\x49\xa7\xd7\xc6\x4d\xde\xcf\xd2\xfc\x25\xae\xec\xf2\xe0\x21\xac\x92\x4c\x21\xb6\x34\x57\xcb\x71\xc7\xcf\x5d\x6c\xa1\x91\x4a\xbe\xee\x79\xe0\x75\x11\x15\x63\x91\x48\x93\xe2\xa7\xaa\x69\xde\x6d\x44\x57\xf4\xad\x57\x2c\xeb\x40\xe1\xe3\xcf\x2a\x21\x25\xaf\x19\x39\xcd\xd2\x21\xce\x29\x30\x71\x9a\xb5\xf3\x94\x92\xb0\x0d\x63\x62\xf1\x2d\x6a\xc4\x20\xaa\x60\x02\xa8\x9a\xf4\xf7\x9f\x57\x98\xf1\x32\xa9\x62\xd4\xed\x5e\xc7\x11\xc3\xfb\x42\xf1\xa2\x88\x41\xcf\xa9\x06\x2f\xf8\x92\x61\x6b\xde\xd3\xa4\xb7\x6d\xe2\x27\x07\xba\xd5\x97\xa5\xa6\x80\x83\x26\x78\xe6\x07\x6e\x9e\x89\x20\x7b\xf5\x20\xc8\x52\xa1\xc6\x86\x73\xb7\x9d\x0a\x37\x38\xf9\x9f\xaa\x98\x62\xd5\x56\xdf\x9b\x89\x23\xe1\x34\xbf\x39\xf3\x5e\x1d\x60\xf1\x1a\xd9\xa0\x7c\x68\x1b\xe5\x7a\x66\xab\x97\xc2\xd1\x8c\x24\x93\xf4\x5b\x3e\x9b\x94\x63\x9b\xe7\x91\x11\xc2\x8c\x1a\x0c\x52\x7a\x6f\x6d\x19\x01\x05\x2b\x13\xa6\xbd\x73\xd8\xc1\x63\x2a\xf3\x3c\xa6\xd2\xe3\x97\x0e\xbc\xb4\x4d\xa1\x9b\xae\xe1\x85\xea\x12\x29\x5c\xd8\x8e\x9e\xef\x9d\xbf\x4f\xd1\x0e\x5e\xd8\xc7\x8d\x80\x6f\xef\x62\xd7\xe4\x91\x51\xe3\xcd\xdf\x0c\x54\x90\xf5\xcd\x9a\x15\x8b\x63\x6b\x46\xa5\xe5\x72\xbf\x30\x4c\x76\x94\x9e\x72\xf5\x08\x32\x61\x2d\x2b\x13\x4d\x26\x65\x12\xb1\xb1\xc7\x71\x7c\x4b\xcd\xfc\xbf\xe5\xb6\xf6\x57\x4d\x14\xcf\xd5\x39\x3a\x9c\x7b\x40\xf7\x41\xe2\xaf\xa6\xc4\xe0\x50\xe1\xce\x79\x8c\xab\xa7\x14\x95\xb7\xae\xbf\xa8\xe5\x3c\x8a\xcc\x84\x90\x09\xab\x7e\xde\x49\x62\x39\x3a\xe4\xcb\x6d\x80\x9a\x70\x9c\x4e\xa7\x6b\x0a\x8d\x04\x8e\x7b\xc1\xbc\xf9\xb6\x6e\x6c\x4d\x96\x44\xc9\xe8\x09\x5a\x48\x79\x8b\x30\x33\xee\xfd\x3a\x85\x92\x87\x33\x45\x41\xf3\x10\x29\xb8\xf4\x7f\xbd\x56\xe6\x3d\x3a\x83\xa2\x24\x5d\x79\x40\x21\x48\xfc\x9c\xa2\xba\x4d\x87\x51\x61\xfa\x51\x1c\x15\x6b\xe8\xe5\xf2\xb4\x37\xe5\xef\x82\x4a\xf7\xa1\x15\x60\x85\xfc\xef\x6a\x9b\x8d\xcb\x6c\xae\xfa\x08\x87\xc0\x75\x9b\xf1\xe1\x4c\x21\x0b\xb6\x2b\x70\xf6\xaa\x8d\xe2\x18\xe1\x39\xd3\xca\x23\xd4\x15\x8e\x79\x0f\xc3\xab\x56\x7e\x25\xca\x0b\x0e\xfb\x45\xc8\xa4\xa6\x70\xf2\xa2\x6a\x91\xa7\xb9\x0d\xcb\xea\x65\xcd\x29\xe1\x00\x0e\x3f\xe1\xf2\xde\x56\x44\x98\x4d\xa2\xaa\xa5\xdd\xdd\xc2\x4c\x25\xbb\xc7\x97\xfd\x6b\xda\x4d\x7c\xdd\x52\x5f\x7e\xad\x5b\x98\x08\x2d\x29\x2e\xf2\xd0\xaa\x49\xc1\x67\x73\x60\xb0\x77\xb1\x1b\x8e\xed\xf2\x38\x5d\x99\xf3\x88\x19\x24\x4e\x78\x93\x9f\x60\xd9\x30\x3b\x79\x3d\x68\x2a\xa7\x75\xa7\x65\xb1\x5d\x45\xe7\xc7\x66\x3e\x10\x41\x5c\x03\xcf\xb1\x05\x80\x3f\xbc\x7b\x9e\xda\xe4\xff\x41\x39\x4f\xb8\xbe\xfc\xd8\x63\x6c\xc2\x65\xe4\xec\x70\xf7\xd7\x1a\xcc\x37\x5c\xb6\x53\x83\x43\xc5\x6a\x04\x8e\xeb\x85\x83\xae\x89\x4c\x1b\x53\xda\xcb\x7e\x64\x26\x2b\x07\xe0\x19\x71\x55\x59\xc7\xfb\x77\x4c\x8d\x1b\x94\x49\x34\xac\x42\x27\x72\xea\x7b\xf6\x70\xdd\xf6\xca\xcc\x8b\x12\x5c\x69\x23\x2b\x1a\x94\x6c\x37\x10\x54\xa1\x7a\xc4\xd7\x33\xe5\xec\x32\x6b\x0a\xd2\xb2\x75\x9d\xd3\x6b\x81\xdf\xdb\x88\x70\xa4\x64\x41\x6b\x21\xba\xb2\x6d\x9a\xc8\x76\xc5\x26\x73\x4a\x5a\xfd\x5b\xd5\x31\x79\x84\xd2\x91\x50\x25\x3e\xef\xe0\xba\x43\x33\x31\xc4\xb5\xe6\xe3\xeb\x0b\x8a\x0a\xa1\xc9\x60\xb7\x6f\x5f\xd7\x0c\x56\xa2\x3c\x65\xda\x64\x3c\x23\x08\x04\xf8\xda\xb5\x57\xa7\x69\x15\x64\x3f\xb6\x79\xfb\xb4\x4b\x70\x8a\xcc\x10\xc5\xb5\xcc\xd7\x55\x3f\x85\x22\xea\x0b\xbd\x1a\x1a\xb7\xda\x3e\x22\xce\x40\x79\xa2\xb4\xaf\x3c\x11\xfa\x99\x46\xe4\x5b\x79\xec\x2c\x0a\xc7\x0c\xea\x60\xe1\x42\x44\x97\xa2\x62\xd8\x26\x39\x9f\xd9\xa2\xcc\x18\x81\x22\xd1\x40\x6d\x7c\xc7\x83\x34\x06\x69\x62\x9f\xa4\xda\x8a\x30\x05\xeb\x81\x28\xc5\xc7\x0f\x68\xb9\x08\x54\x77\x1c\xe1\xdc\x7d\xa4\xbd\x4e\xb0\xc0\x4d\x7b\x89\x8e\x9c\xe3\x26\xae\x52\x5a\xe1\x15\x7d\x46\x25\x1a\x5c\x63\x45\x4e\x7c\x9c\x0c\x2e\x82\xdc\x0b\xaa\x23\x0f\xa8\x31\x92\xeb\x2d\xeb\x9f\x6b\x51\x5a\x7d\x75\xf7\xfe\xed\xbe\xe2\x08\x1c\x8d\xb0\xf4\x92\x19\x70\x28\x94\x57\x5d\x16\xc8\x05\x7f\xc1\xa4\x90\xed\x16\xb8\xee\x0b\xea\x11\x93\x22\x4a\xca\x28\x19\x6d\xeb\x38\x99\xe1\x6d\x68\x2e\xc1\xd9\xdf\x52\x8a\x10\x5b\xd6\x3d\x72\x8d\xc1\x42\xc8\xea\x6f\x2a\x1e\x9a\x41\x94\x13\x21\x02\x6d\x1e\xc7\xee\xb0\x70\xd0\x55\x23\xe9\x8f\x3b\x7e\xbd\x6a\x85\x19\x8c\x13\x68\x60\x4e\xb5\x56\x52\xcb\x54\xf3\x5a\x13\x9b\xad\x6d\xf3\x9d\x5b\x9e\xf5\xc7\xec\xe9\x1d\xd4\x16\x90\xfa\x76\xe8\x59\xf9\x9a\x18\x9d\x25\xc9\xf6\xa9\x4e\xf2\x52\xf8\x12\x9d\x04\x37\xdd\xa9\x46\x3d\x1b\x02\x5a\xa4\x61\x19\x25\x79\x61\x62\xc7\x9b\xd5\x26\xf3\xe5\x37\x40\x31\x36\xc9\x2f\x50\x8d\x9c\xfb\x24\xc2\x83\x58\xbd\x27\xa4\x2b\xf3\xf4\x68\x22\xa7\x4d\xbb\x55\xea\x12\x9d\x43\xfb\xbd\xba\x4a\x65\x3b\x44\x1d\xb2\x5a\x4c\x27\xce\xb7\x67\xc1\xc3\x9e\xf7\xec\xe1\xc2\xca\x19\x20\x62\x1c\x1a\x74\x69\xf7\x01\x5f\xfb\xa8\xd6\x48\xa6\xff\xb0\x8f\x45\xc7\x84\x0e\x12\xaa\x14\xe7\x02\x35\xb4\xc8\x63\x98\xb4\x7e\x7f\xf3\x3c\xf8\xb5\xc4\x39\x52\x89\x1e\x5e\xf6\x47\x74\x44\x58\x36\x11\x47\x99\x69\x4d\x68\x7d\x58\xa8\x94\x7a\x4c\xa8\xd8\xa0\xab\x8a\x67\xf1\xc2\xae\x99\xcd\xd3\xb8\x2c\x9c\x98\x91\x84\x68\x2a\x0c\x6e\xf0\xdc\x2d\x2e\x56\x3e\xf6\x33\x4a\x16\xf9\xef\x70\xda\xf1\xa1\x67\x94\xcc\xd7\xb9\xa0\x4a\x67\x91\x62\x3c\x08\x3c\x61\xf6\xef\xcd\xfc\xc8\xf6\x03\x14\x57\x50\x15\xbb\xaa\x61\x3c\x81\x06\x8b\xcc\x94\x13\xbc\xa8\xa7\x60\x51\x0a\xc3\x0c\xf3\x19\x3e\x89\xc8\x99\xdf\x85\xbd\x44\x38\x7a\x4f\xcb\x02\x9d\x40\x11\x56\x60\x12\xd5\x2a\x09\xb9\x36\xbd\x7d\xd4\x27\x8e\xd4\xca\x7a\x13\x4c\x0e\x2d\x78\xab\xe2\x86\xd4\xfe\xdf\x40\xe3\xbe\x7d\x89\x22\xb3\xc3\x32\x19\xe4\x10\x8f\x40\xe5\xed\x03\x35\xee\xfa\x73\x38\x33\xfe\x0f\x7a\x3f\xc2\x77\xe5\x55\x9a\xe2\x74\xf5\x29\x7a\x26\x47\x50\xea\x94\x43\xaf\x6a\xa2\xf6\x9f\xd0\xf3\xe0\xc1\xe7\x10\x3c\x63\x7d\xe6\xd5\xac\x31\xc6\xb1\x10\x84\x7d\x40\x27\xc3\xcd\x02\x3a\x13\xf9\x3b\x78\x2a\x21\x3c\x94\xd6\xc4\x34\x4a\x13\x6b\x33\x2e\x51\x09\x4e\xd2\x67\xa1\xfc\x4e\xe0\xb5\x1e\x28\x5c\x5e\x56\x4e\x4c\xb8\xdc\xf1\xa0\xbd\x6f\xcc\x94\x1d\xfd\x86\xe7\xe6\xc8\xd2\x74\x39\x5e\x43\xd5\x00\x16\xe7\x87\xf8\x49\xbe\x71\xbc\x71\x93\x74\xc5\x01\x56\x61\x45\x51\xf5\xc4\x29\xdf\xb9\xae\xc2\x85\xcd\x6c\xac\x7b\x16\xba\xfb\xf6\x3d\xed\x57\xfa\x4f\x66\x4a\xc6\xe5\x34\x75\x5e\x85\x0c\x8d\xf6\x37\x4a\x23\x97\x14\xd7\xfb\x05\x35\xbc\xce\x6d\x45\x9e\x92\x50\x26\xf5\x94\x16\x49\x7b\x53\xd3\xd3\xde\xc4\x51\x81\x29\xbf\x1f\xa8\xba\xe0\x7e\xa5\xb6\x6c\xd3\x30\x2c\xa7\x11\x2c\xdf\x82\x93\x88\xa3\x67\x15\x21\x39\x35\xd8\x65\xe3\x38\x07\x0e\x1c\x11\xde\xd5\x99\x32\x98\xe7\x55\xb4\x7c\x0b\x1f\x88\x53\x7b\x4d\x71\xce\xd9\xaf\x95\x51\x11\x59\x62\xa5\xf1\xa2\x30\xea\x2c\xfc\x74\xa6\x98\xeb\x7e\xda\xa4\xe8\xad\x5c\x67\x2c\x2a\xcf\x8c\xe3\x08\xfc\x00\xc0\xe9\x16\xc5\xc7\xfd\x9b\x44\x8d\xe0\xeb\x30\x5e\xc3\xd7\x2d\x75\x9f\x03\x68\x87\xce\xfb\x88\xfe\x46\xe0\x27\xcc\x2e\xeb\x29\x9a\xbf\xd5\xf5\xfa\x23\x6e\x27\x67\x76\x25\xb2\xab\x7c\x2a\x05\x64\x41\x5f\x15\x61\xf5\x7d\xcd\x37\xfb\x5e\xa0\xe1\xcf\x6d\x8f\x13\x66\x76\x5a\x74\x6a\x7c\x73\x35\x26\xba\x9d\x6e\x36\xc3\x9a\x8e\xae\xf5\x5d\xd2\x94\x81\x97\xdc\xee\x8e\x4d\x39\xb0\x59\x47\x4f\x5d\x5e\xd2\xd4\xa6\x97\x82\xa7\x15\xba\x71\xb0\xdd\xcb\xae\x31\x3a\x43\x1c\xac\x9f\x2b\xbc\x8c\x38\x00\x3d\x93\xbf\x50\xe8\x9c\xbf\xa0\x8d\xcd\xbf\xad\x30\xa9\xa1\x99\x46\x45\x1a\xf3\x43\x70\xa7\x1e\xe1\x8f\xb4\xed\xdb\x58\x3f\x26\x65\x38\x46\xe8\x2d\x8a\xe9\x1e\xea\xf8\x3d\xc5\x1a\x74\x5a\x91\x49\x53\x53\x70\xde\xb7\x8d\x2e\x04\xb5\x91\x47\x8f\x64\xff\x47\xad\x89\xf3\x8f\x6e\xb9\xfa\x65\x36\xb2\xd9\xb6\xea\x83\x80\x6a\xe6\xc0\x18\x87\xea\x2d\x55\x6c\x7f\x4b\x71\xd1\x71\xf8\x01\x90\xd1\xa3\x36\xba\xc6\xa9\xc9\x96\xb9\x07\x85\x45\x9c\x63\x0c\x15\x8a\x59\xcf\x00\xdc\x80\xef\x79\xad\x8a\x9a\x9c\xd2\x6b\x15\x89\x2a\xde\xc0\x6f\x05\xaa\xde\x57\x9f\xe7\xf6\xb1\xe8\xb7\x54\xa4\x94\x97\x5c\xd5\x76\x92\x91\x0e\x6c\xb0\xd1\xa6\x7f\x37\x8c\xd3\x55\xaa\x13\xc2\x28\xfd\x19\xd6\x09\x7d\xbe\xab\x38\xf0\x4c\xca\xaf\xaa\x1c\xc3\x2c\xb2\xc9\x20\x46\x7c\x27\x5c\x62\xf4\xa0\x58\xa0\xe3\x30\x21\x32\xf5\xeb\x6b\x7d\xd7\x35\x71\xd1\x49\x45\xd3\x97\x85\xff\xf2\xbf\xfe\x57\xbf\x32\x47\xc1\x90\xf8\x2a\xfa\x1b\x48\x50\x19\xf5\xc0\x34\x2d\xaa\xe4\x67\x92\x22\xfa\x5a\x09\xc3\xc1\xef\x43\x01\xc0\x1e\x35\xd2\x75\x81\x3f\xc7\x66\xee\xf1\x13\x07\x7a\x2e\xa1\x31\xcb\xb9\xd0\xed\x47\x3c\xa6\x2d\x12\x50\xaa\x92\x04\x26\x36\xac\x77\xa7\xb7\x33\xf2\x6c\xab\xbf\xb8\xf5\x97\x5d\x11\x80\x22\x3b\x44\x56\x8f\x28\x30\x54\x83\x36\xfb\x39\x66\xe9\x00\x60\x85\x1a\xd6\x76\xd0\xb3\xc0\xc4\xbc\x4d\x07\x83\xbb\x74\xf4\x79\x68\x54\x6e\xa5\x79\x3e\xd9\x12\xb4\x94\xa2\xdd\x43\xe1\x2a\x76\x22\x93\x0e\xc0\x43\xdf\x27\x16\x3e\xd7\x7e\xfd\xf2\x21\x86\xc3\xfd\x3c\xd0\x63\xc0\xd0\x03\x90\x16\x0c\x22\x51\x26\x7d\x9b\xa9\x85\xc3\x30\x32\xb2\x33\x54\x1a\xf0\xf2\x18\x58\xe3\x38\x6b\x7e\xe3\xd7\x38\xda\x64\x36\x7d\x99\xf9\xa1\x13\xf2\xe8\x81\x22\xe4\xb9\x85\xe8\xce\x31\x4d\x1d\x72\x8d\xce\x8b\x14\x5b\xf3\xc3\x52\x08\xc6\x25\x49\x55\xc9\xb0\xc9\xa0\x14\xc9\x52\xa1\x78\xec\x78\xba\xc7\xb6\x9a\xc3\x28\x92\xa6\xa2\xf2\x9a\xfb\xdd\x59\x52\x05\xd1\x2c\x2a\xa2\x30\xca\x27\x50\xb8\xe2\xb2\x4f\xa0\x4b\x40\x9b\x82\x87\x2f\x1f\xea\xbe\xba\xbb\x53\x2d\x31\x8e\x02\x30\xe7\x7c\xdd\x42\x5d\xb2\xd0\x1d\x46\x59\x5e\xd0\x00\x51\x8d\xb5\x56\x60\xbc\xd5\x26\x90\xda\x7f\x8d\x97\xa0\xa5\xc1\xd0\xcf\xa2\x64\xc4\xf0\x0b\x58\xd4\x4f\x03\xc5\x66\xac\x89\xeb\x37\x1c\xc3\x4b\xc1\x43\x0e\xad\x23\x0b\x4a\x09\xd1\x14\xac\x37\x83\xb1\x8d\x7f\xa0\x3f\x86\xdd\x32\xbf\xee\x65\x87\x76\xbe\x80\x9a\x95\xcb\x47\xaa\x95\x45\x9e\x75\x1f\xc6\x43\xb0\x6d\xf4\x41\xfc\xc7\x28\x3e\x47\xb5\xf8\xa4\x0a\x6c\x33\x0b\xb5\x58\xce\x14\xf0\x2b\x92\x36\x88\x75\xcf\xa3\x51\x62\x59\x7d\x0d\x5b\xf1\xb8\xae\x5b\xb0\x85\x41\x41\xed\x56\x4d\x43\xb1\x49\x8d\xb3\xd8\xcd\xed\x24\x4a\x8c\x4c\x30\xf2\x9f\x08\x14\x33\x51\xf3\xd7\xf6\xed\x5b\xaa\x5c\x54\x18\x0d\xa3\xf0\xb1\x10\xd7\x16\xb4\xcc\xa8\x0a\x52\xf8\x83\x18\x8b\xa7\x94\x35\xbf\xa3\xca\x02\x66\x34\xca\x6c\x9e\xd3\xa8\xac\xc3\xb5\xa3\xbd\x28\x21\xc4\x7f\xf1\x18\x13\x58\x64\x26\xc9\x43\x93\x98\x81\x99\xf3\x4b\xc9\xd1\x02\x2c\x34\x24\x4d\x45\x33\x5c\x8d\xf2\x97\x93\x89\xe1\x12\x16\xa2\xdf\xf3\x8a\x03\xf3\xbc\x12\x7a\x32\x51\xd6\x4f\xb3\x04\x06\x5a\xcc\x81\x2f\x3c\xde\x69\x13\x09\x9d\xa4\x45\x9a\xa5\xb1\xc4\x3b\x8a\x6a\xda\xf1\x4e\xb7\xaa\x68\xc4\x96\x87\x57\xdd\xb9\xfa\x5b\x84\x2e\x7c\xd3\x26\xef\x9c\xdb\x94\x39\x20\x5a\x77\x79\x0b\x90\xba\x9f\x1e\x96\x57\xe3\x08\x18\x3d\x19\xa3\xc2\xa2\x54\x2f\xb1\x34\x71\xbc\xd6\x51\xf4\x87\x17\x61\x0b\xa5\xb2\xec\x4f\x51\xbf\xe4\x20\x1c\x99\xcd\x75\xd5\x5b\x05\x3f\x87\xc3\xc7\x79\x1b\x70\x36\x78\x56\xf1\xbf\x44\x69\xb2\x93\x0e\xb8\xee\x95\xc3\xd0\x7e\x32\xf3\x34\xd9\x78\x53\x28\x8f\x31\x78\x03\x3f\xf4\x20\x20\x97\xc1\xbf\xa1\xc5\xf1\xe6\xd7\x55\x5c\x3c\x4f\xf3\x81\x82\x8e\x53\xd9\xf7\xbc\x02\x86\xdf\xd3\x05\xda\x34\x09\xd3\x90\xa5\xd8\x50\x19\xe1\xc1\x3d\xbe\x51\x81\x45\x99\xe4\x29\xc8\xf3\x3c\x7c\xeb\x2e\xa7\xe5\x7c\xd7\xf2\x4e\xf6\x77\xfb\x69\x02\x3b\x8f\x79\xbc\x31\xfe\x3e\xdf\xb4\xc2\xe1\xa7\x71\x54\xec\xa0\x6f\x8f\x7d\xcf\x03\x82\x28\x00\xa2\xbb\xa3\x44\x7a\x5f\x73\x2e\x4e\xb5\xbf\x6e\x90\xbf\xe3\x86\xb9\x22\xb1\xb9\xd3\x88\x3a\xaa\xf0\xb6\x6f\x47\x91\xd0\xbb\x0a\x48\x45\x4d\xf0\x9f\x6d\x04\x67\xfb\x5f\x39\xd0\x4d\x57\x93\x6d\xb4\xf6\x2e\xe8\xaf\x1c\x39\xfc\xf5\x86\x22\x03\xd8\x50\xb3\xa1\x97\x95\x93\x7b\x56\x11\x54\x95\x49\x98\x4e\x26\x69\x42\xf8\x02\x04\xb5\xa0\xd4\xc0\xaf\x5d\x41\xc4\x20\xac\x9e\xba\x0e\x91\x97\x71\x91\x3f\x4d\xde\x17\xbf\xc7\x64\xed\x4c\x56\x57\x13\xc5\xee\x38\x92\xa8\xe7\x7a\x9e\xf7\xfd\x24\x8a\x59\x8a\x53\x5a\x86\x6f\xc1\xa8\x8c\x42\xf4\x6d\x04\xdf\xa2\x8b\x42\xef\xd0\x61\xf0\x5d\xad\xe0\x16\x36\xad\xe0\x9d\x5b\xbc\x5d\x5c\x1e\x2e\xb9\x28\x8f\xa8\x0c\x6a\xe2\x7c\xed\x27\x2b\xa3\x70\xd9\x16\x22\x25\xe9\xc8\x91\x3d\xe2\xe8\x92\xf2\x72\xd3\x2c\x9d\xf7\x61\xf5\x36\x2a\x19\x20\x2e\xd9\x45\xe8\x75\x84\x63\x8c\x5a\xc6\x2b\xbd\x38\x7b\x51\x69\x13\x4f\xa6\x69\x66\xb2\x88\xcb\xe8\x78\x9f\xdf\xa6\x8a\x0a\x5f\x3b\x1c\x67\x6c\xcd\xc0\x4d\xca\x4b\xda\xa6\x73\xb8\x16\x2d\x8d\x03\xdd\x28\x59\xa9\x8e\x4e\xbd\xe0\xde\x71\x3a\x96\x97\x1b\xce\xa9\x5a\x28\x1b\xe5\x65\x46\x34\xfa\xce\x39\x01\xfc\xcb\xd7\xad\x9f\xa4\xc0\x57\xfb\x3d\x78\x66\xc9\x83\x67\xda\x8c\x73\x98\x9a\xdc\x11\x92\xe1\xfc\xfc\x15\x5e\x24\xdf\x28\x11\xd9\x69\x9a\x47\x54\x55\xdc\xee\x8b\x73\x50\x68\x45\x9d\xf9\xb6\x56\x78\xe5\xd8\x5d\x1a\xca\xf4\x50\x5a\x36\x09\xd6\xf0\x81\xca\x4f\x47\x99\x35\x85\xcd\xe6\xfc\x5b\xff\xae\x66\xb8\x0b\xbc\xde\x6a\x13\x0a\xbb\x77\xb1\x6b\x32\xd3\x8f\xc0\x7d\x87\x83\xc8\x45\x57\xbe\x51\x05\xf6\x61\x34\x1a\x17\x51\x32\xda\x46\x4f\x28\xdc\xab\x5e\x9b\xe1\x26\xf5\x66\xf9\x5a\x9d\xe6\x13\x2a\x8e\x3c\xaa\xda\xa7\xfd\xcc\xbc\x41\x5a\x72\x1d\x9f\xe2\xa0\xc7\xc0\xd7\xae\x77\x64\x27\xfd\x6c\x2d\xad\x49\xa4\xd2\x92\x89\x46\xaa\x66\xcd\x8d\x6c\xb1\xb3\x7a\x26\xd8\x57\xa6\x70\x45\x46\x71\x94\x52\x02\xf6\x27\x41\x9d\x27\xd6\x71\xa6\x7e\x0a\x27\xab\x7b\x80\x82\x0c\xad\x76\x37\xa2\x87\xef\x6a\x5d\xe3\xef\x05\x2a\xdc\x3b\x39\x53\xb6\xfa\x7f\x6a\x1c\xe7\x2a\x10\x0e\xe3\x35\x4c\xcf\xfa\xe2\xd2\xe6\x1f\xfb\x62\x77\x92\x12\x03\x28\xe0\x68\x48\xb4\x3e\x56\x02\x87\x1f\xb7\x19\x8a\x61\x5c\x0e\x87\xd8\xfc\xae\xc0\xba\xe8\x6b\xaa\x9b\x21\x40\x7b\x17\xbb\xc5\xca\x9c\x87\xd9\xef\xec\x79\xf4\xd4\x65\x4d\x40\x3f\xb7\xbe\xab\xc6\x1e\x96\xe6\x00\xf7\xe0\xd7\x1e\xce\xfc\x9f\x78\xa8\x64\xf8\x06\xff\xbc\x0f\xf7\x80\xaa\xd7\x79\xac\x12\xdf\xb4\x81\xb2\xbf\x56\xa6\xee\x48\x21\xf4\xc2\x6e\xe0\x6b\x65\xc3\x13\x5b\xac\xa6\xd9\xf2\x93\x1d\x3f\x8a\x4b\xc5\x75\x57\xc3\x76\x50\xee\x23\xe4\x12\xdc\xd0\x87\x47\xd1\x1e\x0f\xd4\x4c\xf7\xac\xca\x34\xf9\x87\x66\xba\x1a\x8e\x67\x46\x89\xf0\x91\x8a\x18\xc3\xb2\x48\xcb\x82\x65\x06\xb1\x3d\x6a\x28\xe2\x8d\x16\xe1\xcb\x6e\x66\x57\x49\xeb\x4b\xb3\x6c\xd1\xe9\x14\xc6\xad\x16\x98\x78\x9a\x9b\x65\x43\x39\x19\x2a\xdb\xa7\xf1\x5e\xf8\x46\xd5\x3d\x73\xbb\x62\x93\x27\x3b\x4e\xba\xf8\x14\x7d\x71\xd8\x80\x4b\xb3\xda\x20\x38\x79\x3e\x18\x37\xc0\x90\x98\x08\x79\x56\x9b\x83\xa6\xcf\xe1\xbf\x35\x53\x0d\x9a\x9b\x81\xc2\x94\xde\x6c\x7b\x8f\x99\x1d\x99\x6c\x30\xe7\x49\x06\x2f\x2a\x3a\x99\xad\x3d\x55\xf3\xbd\xd9\x5a\x09\x1d\x44\x23\x9b\xa4\x2b\x06\xf9\x1d\xc8\x44\x4e\x69\x8e\x18\xac\x01\x2a\xf7\x77\x02\x9f\x45\xf5\x4d\xa1\x86\x00\xee\xcd\x7c\x73\xec\x5e\xf0\x8c\xfa\xa9\x70\x79\x17\xfd\x69\x60\x58\x65\x72\x44\x86\x68\xa9\x34\x21\x03\x58\x1d\x27\x0a\xf1\x79\xc2\x13\x62\xfb\xf2\xd4\x0c\xf6\xfc\x7f\xf4\xcc\x66\x7f\xf9\xf5\x99\xd2\x7b\xba\xa3\x07\xcc\xe6\x35\xa7\xe3\xf7\x03\x45\x78\xf0\xa7\x88\x3a\x61\xaf\x3e\xac\x57\x97\xaa\x37\x85\xce\xc5\xb7\x69\xa7\xc0\xc6\x3c\x60\x04\x0e\x5c\xcd\x71\x9d\xc9\x34\x79\x9d\x4f\x2a\x8b\x7a\x52\xf5\x08\xb3\x28\x0f\xb1\x15\xb9\x40\x55\xe3\x1e\xf5\x15\xb8\x34\xb1\xf9\x53\x5e\x86\xe1\x12\xa6\xb0\x98\x69\x03\xa5\x14\x47\xbb\x51\x85\x3b\x4e\xa5\xe4\xd7\x85\xbf\x4e\xab\x91\x9d\x50\x8c\xd6\xdc\x12\xc4\xa3\x6d\xc1\xfa\x38\x7d\xa8\x85\x83\x2e\x39\x6a\x51\x90\x04\xf1\xbd\x62\xae\x55\x3a\x3c\x7f\xa6\xea\xb8\xa7\xf4\x44\x3b\xa9\x12\x82\xeb\x60\xaf\x10\x29\x9f\x50\x98\xbc\x13\x0d\x34\xcb\xbe\x7d\xdd\x69\xe5\x59\xf7\x0a\xc1\xcd\xdd\x1a\xfb\x43\xc7\xe9\xfc\xb7\x4a\x26\x4d\x4d\x56\x44\x84\xdf\x57\xe9\xe2\x03\x95\x2e\x36\xc1\x9f\x8b\x8b\xdd\x81\x35\x31\x97\x36\x70\x2e\xdf\x0b\x14\x65\xd6\xdb\x81\xf2\xab\x0a\xd1\x46\xd9\x2f\x4b\xa4\x1c\xf8\xad\xaf\xf0\x07\x9c\x56\x1f\x76\x7a\xf3\x9c\xc6\xc2\xc1\x2a\x26\x27\xb2\x6e\x7c\xff\x9b\xd8\x88\x42\xc9\xe8\x5b\xee\x67\x15\x7b\x0e\x0b\xf7\x8b\x9a\x6a\x8b\x64\x9f\x34\x32\x04\xc1\xad\xc8\x4d\x84\x27\xfb\x0e\xfe\x08\xc6\x28\xb6\xae\x7b\x59\xb4\x22\x8b\x86\x91\x1d\xcc\x79\xb3\x8f\xf5\x42\x91\xe5\xb6\xe6\x91\x7e\x57\x01\xed\x27\x69\x62\xd7\x5e\xa8\x7e\x09\xf1\xf9\x95\xc0\x6b\x10\x6f\x04\x8a\x01\xf6\x3e\x75\xb5\x1c\x29\xbb\xef\x27\x9d\xc1\xe3\xe9\x21\x55\x98\xa8\xf9\x9e\x92\x5b\x47\xbe\xc2\x83\x7b\x48\x7d\xd1\x27\x64\xcd\x53\xd7\xf0\x3a\xe4\x6c\xef\xa9\x99\x57\x0e\xd8\x4e\x9c\xf7\x28\x94\x6e\x55\x21\xf7\x55\x1c\x04\x94\x43\x77\xac\x2b\xe4\xdf\x7b\x88\x33\x14\x57\xc3\x7e\x87\x37\x7a\x56\x49\xce\x57\xf1\x6b\xf5\x95\x45\x8e\x86\x1e\x40\x04\x9e\xda\xf0\xc2\xa4\x40\x47\x27\x48\xa4\x1a\x3b\x6a\xce\x58\x8d\xe8\xd4\x83\xab\xa9\x45\xe1\x47\x98\x90\xe8\x81\x84\x22\x69\x33\x6e\xe1\xe0\x2b\x90\x87\x65\x25\x90\x06\x87\x28\xdf\x34\x70\xd3\x5f\xec\x96\x89\x3d\x3c\x8d\x4d\x24\xfc\xaf\x0c\xf9\xc4\x73\x09\xfe\x73\xf3\xd6\x73\xd2\xcb\x26\x1a\x80\x2b\x47\x54\xc9\x2a\xef\x8e\x0a\xec\xc9\x99\x8f\x5b\x8e\xe1\xe9\x71\xae\x7e\xa0\x66\x8c\x2e\xcc\x74\xf7\xdf\x1b\x90\xcc\x46\xc9\x8a\x75\x68\x32\x84\x8e\x57\x29\xe7\xe1\x6b\x37\xa6\xd1\x2f\xfb\xfd\xd8\xc6\xd1\xb2\x55\xc5\x98\x23\x6a\x6e\xe1\x88\xc2\x96\x2c\x47\xe1\x32\x88\x73\x84\xfb\xa9\xda\x72\x42\xfd\x24\xe5\xcb\xa9\x59\xdb\x59\x3d\x23\xed\xd7\x1b\xbb\xe8\x4b\x61\x29\x2e\xcd\x36\x87\x21\x22\xa6\xbb\xb5\xe7\x29\x21\x4f\x2a\xb9\xa4\x2d\x34\xd8\xc0\xb3\x37\xe8\x45\xa0\x9a\xf2\x40\x33\x32\x72\x40\x50\x7b\xd7\xd8\xe1\xd7\xb5\x34\xbd\x8d\xe3\xca\xc6\x6d\x57\x3e\xe7\xac\x52\xda\xbf\x4a\xb6\xdc\x8d\x9e\x7a\xc6\x9d\x1b\xe4\xd1\xf8\x3f\x90\xad\xcb\xcd\xe6\x1d\xb1\xff\x95\x03\xdd\x70\x9c\x45\x79\x21\x24\x65\x38\xa8\x4c\x79\xc0\x37\x0d\x71\x9d\x57\x77\x77\x8b\x31\x65\x47\x09\xdb\x14\x54\x61\x19\x4f\x0b\xfb\x70\x55\x4f\x12\x5f\x51\x6d\xe0\x2a\xcc\xa5\x32\x73\xc7\x51\xea\x3e\x52\xc4\x21\x1b\x7a\x41\x2e\xe9\xf9\x2e\x1b\x92\xf6\xfc\xab\xbb\x35\xe7\xe6\xcb\xae\x58\xba\x4b\x4b\x76\xe5\x42\xbd\x03\x24\x11\x9c\x35\x5f\xcf\x3e\x53\x93\x22\x49\x72\xcb\xd3\x14\x2c\xc9\xaa\xc6\x08\xd6\x67\xaa\x0b\x72\x42\x99\x06\x82\xe2\xcf\x79\x47\xc5\xb4\x72\x9a\x71\x05\x5b\xe5\x99\x75\xef\xf2\x33\x53\xd8\x5d\x8a\x31\x73\x0e\x80\x4c\x78\x9d\x77\xf0\x0e\x51\x14\x41\xec\x0f\xf7\xf1\x1c\x0d\x45\xc3\x6a\x3e\x44\xf1\xcd\x71\x80\x2f\x89\x8a\xff\x79\xda\x0d\x38\x8c\x1f\xc1\x68\xa2\x8f\xf3\x68\xa6\xe0\xd2\x6f\x92\x99\xc6\x69\xc4\xd7\x04\x94\x62\x0b\xe6\xb9\xf1\x54\xb7\x60\xe5\x18\xa9\x34\x53\xf8\x98\x33\x64\xfe\x65\x36\x45\x0e\x50\xfe\x92\x94\x60\x65\x7e\x5d\x31\xfb\xfe\x8d\xc2\x81\x8e\x4c\x94\xec\xa8\x5e\x9f\x23\x32\x5c\x52\x7d\x20\x07\x87\x3b\x4b\x23\x32\x4e\xaf\xcb\x13\x85\xdc\x56\xc0\x46\x24\x8d\xfc\xcb\x6d\x62\x3c\x26\x29\xc6\x99\x39\xdc\x51\xfa\x00\x6f\xd3\x87\xf0\x75\xe0\x13\x7d\x8a\x27\xc0\x2f\x25\x52\xa7\x3f\xa5\x43\x8d\xaf\xc0\x22\x87\xa2\x38\x2d\x5f\x3b\x1d\x0e\x9f\xab\x5e\x8c\x83\x86\x7f\xf9\x10\x6f\xf6\xf7\xf1\xd0\xb2\x49\xab\x25\x57\x0c\x14\xfb\x3d\x3b\xa3\x9b\xe3\xd8\x8e\x26\x1e\xea\xb8\x5c\x6d\xc5\xaf\x63\x2e\x13\x88\xaa\x5f\xec\x39\xfb\xb9\xfa\x79\x9c\x50\x67\x7d\x85\x4a\xe8\xc9\xe7\xc9\xaf\x42\xdf\xe1\x97\x7a\x8a\x55\xec\x91\x4a\x16\x1e\xa8\x16\x49\x92\x66\x3b\x34\xd4\x59\x19\xaa\x4b\x9a\x16\x7d\xae\xa7\x88\x0b\xef\x73\xb1\x15\x0f\xf6\xff\x69\xda\x8e\x53\x33\x85\xa2\x6e\xa3\x9d\x5c\xaa\x3e\xb2\xc0\x8c\x0c\xb6\x22\xa4\xf7\xf8\x3a\x78\x51\x86\x02\xc8\x29\x44\x23\x53\xa4\x32\x2c\x5a\x63\x25\xe6\x1b\x95\xab\x8d\xa3\xcc\x72\xee\x28\x98\x46\x8f\xf3\x38\xda\x18\xae\x78\x75\x77\x37\x2f\x32\x9b\x8c\x8a\xb1\x75\x1a\xb6\xc8\x19\xd9\x25\xf2\x8d\x6a\x16\x66\x36\x8c\x4d\x34\x79\x3c\xb5\x95\xef\x55\x4f\xd2\x81\x8d\xf3\x79\x2f\x09\xf2\xb1\xc6\x15\xc3\x6d\xf0\x7f\xcc\x14\x62\xe6\xa4\x1b\xd7\x9b\xa4\x2b\x76\xb0\x43\xa7\x12\x33\x1d\x23\x78\x80\x11\xa7\xc8\x38\xcb\x4f\xe3\x2c\xab\xa1\x19\x79\x19\x57\x02\x3d\x94\xe5\xf7\xff\xd0\xc4\x31\x21\xa3\x5d\x38\xfe\x07\x58\x61\xa7\x6a\xb0\x24\x9d\x9e\x77\x03\xaf\x3c\x7b\x5c\x59\xdc\xcc\xc6\x91\x5d\xb1\x08\xaf\x45\xd3\x4f\xc9\xd5\x03\xba\xcc\xb5\x58\xb5\x9c\x83\x28\x3d\x1c\x0d\xb8\x46\xd8\x86\xa3\xf7\x3f\x1a\x9b\xb5\x74\x38\x64\x16\x38\x89\x34\x3b\x4e\x97\xf6\x0a\x8c\x1e\x36\xee\x87\x8d\xd1\x7a\xa8\x1d\x4c\xd2\x64\x95\x18\x33\xd9\x60\x29\x49\xb8\xfd\x4e\x12\xce\xef\xa7\xd5\x2c\xe5\x65\x11\x96\xd7\x8e\x13\x55\xc1\xf1\x85\x59\x85\xa2\x0b\x5f\x2b\xf2\x08\x33\x1c\x8d\x0d\x4f\x90\x38\x90\x4d\xf5\xa6\xa4\x5a\x2b\xb0\x9d\x51\xba\x86\xf9\x1a\x84\xaa\x8c\xec\xe2\x1b\x35\x37\x1a\xa6\x49\x68\xb3\x84\xf9\x1e\x61\x91\xb6\xaf\x6b\x16\xde\xea\x01\x01\x57\x03\x9d\x30\x4c\xd8\x39\xc5\x1f\xc1\xa8\x50\xac\xda\x3d\xf8\x13\x9e\x1c\x0e\x54\x9b\x06\x85\x54\xa7\x59\x50\xad\x2d\x36\x1e\x4f\xe5\x22\xa4\xf8\xb4\xad\x31\x97\xaf\xda\x38\x76\x35\x36\x3c\xe5\x3b\x81\x1f\xef\x7b\xc7\x93\xc7\x67\x29\x85\x7d\x78\x1b\xa2\xcd\xa4\xfc\xff\x87\x6e\x76\x9a\x68\x9f\x26\x51\x22\xd3\x98\x88\x38\x4e\x21\x04\xe0\x9b\x36\xb6\xfb\x55\x93\xe5\x66\xb5\xa3\xc9\x2a\x6b\xad\xbb\x67\x1d\x3e\x7e\x1a\x65\x76\x30\xef\x31\xee\x7c\x76\x10\x07\x9c\x9e\xd5\x80\x77\xd5\x0a\x32\xfe\xa2\xf7\x79\x75\x0a\x06\x51\x5e\x64\x51\xbf\xc4\x10\x83\x23\x55\x80\x12\x9a\x30\x02\xa8\x39\xf4\x2a\x88\x22\xe9\xa3\x8e\xd3\x9a\xc4\xf8\x19\x5f\xb7\x25\xb2\xd3\x34\xaf\xa2\xae\x45\x2f\xa9\xaa\x18\x94\x6e\x2a\xfa\xe2\xf7\xdd\xe4\x59\x98\x45\xc4\xff\xa7\x66\x4f\x3e\xa2\x47\x82\x69\xe7\x18\x54\x10\x4c\xbb\x74\xfe\x17\x15\x69\x46\xf5\x75\x6c\x0b\x20\x52\x11\xf3\x80\x84\x51\x18\xa9\x14\x88\xf8\x18\xf2\x2e\x37\x36\xe0\x30\x59\x3f\x51\x7c\xb7\x89\x59\xe6\xe0\x11\xcb\xdd\xa1\x98\x1a\x6e\x9f\xe5\x6a\x04\xd9\xbf\x4b\xb3\xe7\xc5\x25\xec\xc5\xe2\xa3\x8b\x3c\xf6\xda\xac\x05\x2f\x76\x8b\x68\x62\x91\x1a\x39\x68\xaf\x52\x9a\x6e\xe1\x36\x7b\xad\xf2\x4a\x83\x28\x61\x02\x01\xa9\x53\xfa\xb9\xa6\x53\x33\x5f\x82\x5d\x1d\xaf\xed\xac\x2d\x5f\x75\x3c\xe0\xbd\x3b\x3d\x8a\x9e\x44\x4e\xaa\xfa\x4e\xee\x3c\x3a\x26\xb0\x0d\x8d\x0c\x03\x1e\x86\xe9\x87\x02\x8d\xff\xba\xa0\x59\x4e\x10\xe1\x09\xb2\xbb\xf3\x15\xd1\x4f\xbb\xaa\xba\xbb\xd4\x49\xa0\xfe\x13\x37\x3d\x66\x9e\xf9\x76\x43\xd1\x26\x6c\x68\xa9\xe6\x6b\x9a\xdf\x32\x4e\xcb\x70\xdc\x51\x66\x2e\xf0\x99\xce\x45\xaf\x03\x99\xae\xd8\x64\xce\xef\x53\x0e\xd3\xdc\x06\x76\x9b\xf9\xdc\x4c\xe9\x30\x8f\x45\xe2\x0b\xc6\x8a\xc1\xd2\x7c\xa3\x3b\x89\x51\xbf\xcf\x12\x97\xae\x1e\xaa\xd4\x0b\x6f\xea\x22\x5a\x66\x01\xf8\x47\x99\x90\xa7\x07\xf8\x46\xe1\xc6\x86\x65\x5c\xa4\xc9\x5c\x8d\x0e\xa2\xfa\x35\x54\x2f\x1e\x06\x8a\x95\xeb\x82\x3b\x35\x51\x92\x57\xeb\x29\x3a\x66\x68\x8a\x70\x89\x85\x6f\x5a\xc0\x9a\xfb\xbb\x71\x99\x09\xcf\x24\xfa\x23\x1f\xe1\x9b\xf2\x4d\xa3\x83\x4b\xf9\x3c\x2b\x72\xb0\xdc\x6a\xe0\xc7\x1a\xef\x36\xb2\x36\xe8\xf6\xe6\xd3\x34\x19\x08\x78\x57\x18\x65\x54\xef\xe5\x42\x1b\x9d\x75\x92\x26\x79\x91\x4e\xc9\x34\xf1\x50\x2b\x7d\x94\x0c\xb8\xfa\x6c\xab\xca\xb1\x19\xb9\xc7\x34\x16\xb4\x97\x71\xc0\xef\xd3\x5e\x66\x5c\xfa\xcc\x8f\x1a\x5e\x56\x69\xcb\x53\x3d\x1f\x63\x0e\xb9\xde\x20\x0d\x1f\x35\xde\xfd\xa3\x5a\x1d\x24\x8d\x07\x9f\x45\xd5\x18\x87\xee\xff\xe2\x38\x93\x65\x78\x51\x27\x42\xf9\xee\x5c\xa0\x5a\x38\xf7\x61\x7e\x18\x56\x18\xe8\xc6\xc9\x9c\x57\x36\xbe\x8f\xc2\x2f\xfc\x18\x53\xc9\x70\xc1\x8d\xbe\x1c\x1a\xd5\xe7\x54\x2d\xe3\x63\x4a\x98\x60\xb8\xef\x05\x9e\x22\xe5\x92\x62\x18\xb8\x3b\x53\x74\x35\x97\x29\x58\x82\x73\x79\x06\xe9\xb0\x1b\x56\xf2\x29\xf5\x45\x18\x48\xb8\xad\x2d\x00\xed\xf1\x17\x0e\x3a\x5f\xfa\x4d\x8e\xd2\x2f\x3a\x62\xc8\xcc\x7e\xad\x8c\x3c\x8b\x02\x3e\x0a\x00\x19\xbe\xde\x4c\xa9\x3a\xca\xd2\x72\xda\x51\xec\xe4\x67\x81\x26\xe4\x1b\x75\x84\xfa\xe9\x1a\x0c\x25\x1f\xe5\x40\x51\x8d\x5f\x6a\xc4\x51\x84\xc1\x36\x65\x91\x4e\xd2\x7e\x14\x5b\x35\xcf\x71\x46\x8d\xdf\x9e\x99\x7d\x56\xf1\x9a\xe7\xa1\xc9\xb2\x88\x84\x78\xab\xcf\x41\x1f\x1b\x68\x15\xbe\x6e\xc7\x3c\x7b\xb9\x71\x94\x09\x8f\x04\x4a\xde\xab\xbd\x7d\x0c\x3e\x63\xfe\x2d\xc4\xc3\x2c\xbd\xc9\x37\xaa\xc0\x92\x9b\x2a\x48\x71\x28\x68\xc9\xef\xd4\xde\x6c\x0e\xe6\x55\x47\x2f\x2f\xfb\x83\x52\xd2\x05\xd8\x01\xc0\xdf\xf9\x7a\xe6\x33\xde\xc2\x80\xc5\x49\x20\x59\xa7\x15\x3c\xeb\xb4\x42\xf5\xbc\xb4\xef\xa5\x79\xdf\x5a\xbf\xaf\x44\x75\xaf\xe8\xd8\xf4\xa9\x1e\xce\x06\x82\xba\x63\x9a\x11\xc2\xe4\xcb\x3c\x73\x0d\x70\xc9\xef\xcf\xfc\x84\x0e\x78\x06\x65\x60\xd8\x31\x9e\x0c\x87\x51\x18\xd9\x24\x5c\xc3\xef\xe1\x2b\x43\x35\x0d\x8b\x75\x2f\xf0\x74\x81\x97\x5d\xcc\x56\x98\x2c\x1a\x0e\xf3\x6d\x4a\xae\xe8\x4a\x8d\x61\x16\xcb\x89\x3b\xe6\x34\x70\xd6\xb9\xf2\x93\xd2\xbc\x68\x49\xda\x27\xe5\xa4\x1f\x33\x7f\xd4\xa3\x47\x6a\x51\x6f\xc0\x13\x22\xf9\x3c\xd1\x8e\xf3\x9f\x4e\xad\x71\x7c\x92\xb0\xb5\x3c\x9c\xc3\x37\x81\xb6\x34\x85\xcd\x7e\x81\xac\x89\x53\xf2\xab\x4e\x16\xda\x24\x5b\x28\x87\x96\xd9\x91\x8e\xa3\xe1\x9f\x51\x9f\xdb\x35\x5f\xdc\xcc\x17\x73\xe0\xe0\xe6\x53\x2c\xc0\xa3\x3b\x64\x2e\x90\xa8\xb0\xa2\x37\xba\xbe\x27\x91\xa9\xa0\x8e\x71\x53\x55\x61\x2e\x2a\x28\xd6\xd7\xd5\xe4\x0f\xd7\x0b\xb1\x39\xae\xa3\xa2\x07\xd3\x71\x0e\x66\xcf\x4d\x82\x55\xdf\x1c\x06\xe1\x06\x4c\x1d\xca\x0b\x2c\x79\x88\xf8\xff\x4f\xb8\x2d\x87\xe0\xf1\x87\x33\xc5\x5b\xf0\x10\x3d\x3a\xf8\x9d\x63\x34\x7e\x86\x11\x97\xa3\x2d\x87\xad\x6b\xc2\xca\x28\x09\xc8\xcd\xf1\x5b\x7a\xce\xb2\x0b\x2a\x95\x9a\xda\xcc\xbe\x31\x57\x2d\x1f\xca\x52\xc7\x67\x8a\xd8\xf0\xfc\xcc\x43\x80\x6e\x35\x80\x5b\x5f\xf8\x02\x68\xc1\xe6\x6a\x62\x95\x6e\x12\x96\xd5\x74\x45\x43\xe5\xf3\x2a\x55\x9f\x66\x36\xb7\x49\x01\x89\x10\xed\xc4\x59\xed\x89\x6f\x1a\x8d\xb0\x2a\x59\x14\x02\x3e\xee\xf4\x2a\xe4\xc7\x25\x75\x70\xff\xc5\xaf\xfe\x37\x9d\xea\xb1\x1c\xf9\x84\x83\x84\xdf\x56\xe8\xcb\xa9\xc9\xd2\xc3\x6b\xf9\x84\x29\x8c\xa5\x7f\xd2\x71\xd2\x02\x4d\xfe\xed\xa5\xdd\x9e\x84\x40\xcc\x3e\x50\xbc\x6f\x2b\x74\x7f\x53\xd3\xbf\x4a\xbf\xd6\xf2\xc2\x4e\x18\x49\xca\x70\x40\x85\x57\xf8\xc3\x36\xc9\xaa\x61\x94\x0c\xe6\xbc\x22\xd8\x4f\x66\x4a\x4d\xe2\x88\x9a\xd7\xfe\x41\xe3\xd4\xee\x5d\xec\xc6\x5f\x48\x33\x6b\x64\x90\x03\x25\xa1\x9f\x69\x16\x80\x9f\x35\xec\xe8\xd2\xee\xa5\xee\x80\xde\x0f\x7c\x82\x5b\x12\xbf\x3c\xb5\xf5\xcb\x73\x5b\x99\x6a\xae\xd1\x89\xd4\x57\xf5\xd3\xb5\xfe\x30\xcf\x93\xb9\x76\xc1\xa4\x8c\x8b\x28\xb6\x2b\x16\x0b\x2f\x23\xb6\xbe\xf3\x75\x4e\xe5\x16\x79\x58\x16\x45\x6c\x81\x03\x06\x68\x81\x53\x2b\xbe\x09\x7c\xc6\xcf\xa8\x33\xbe\x51\x1d\xb3\xd8\x8e\x4c\xfc\x84\x9a\x1c\xfc\x76\xa0\x14\x46\x3b\xeb\xbe\x54\xb4\x95\xf0\x60\x6a\x52\x73\xd1\x71\x5b\x57\x9f\x03\x2b\xf3\x64\xcf\x93\x79\x9d\x50\x73\xa2\xe7\x03\x9f\xda\x99\xd5\x61\x9a\x21\x93\x72\x1c\x88\xfe\xe1\x10\x25\xc8\xce\xdd\x04\x36\x3f\xf8\x4a\x77\x69\xf7\xae\xea\x37\x25\x8c\xea\x38\xea\xd1\xdb\x81\x8a\x1e\x1e\xc0\xc2\xc1\xd0\xfc\x6f\xf5\xb9\x6b\x55\x63\xfc\x3f\x29\x5c\x72\x88\x3d\x17\x54\x08\x36\x13\xf5\xd1\x37\xc9\xaf\xc0\x82\x81\x35\xd7\xc9\x48\x2e\x1c\x74\x3d\x1d\x15\x86\xb0\x78\xb4\xf4\x46\x69\xad\x50\x5d\x3f\x41\x3c\x6b\x82\xc9\x73\x63\x84\x76\x64\xf2\x12\x49\x35\x07\x8b\x9a\x5d\xe1\x9c\xd7\x1d\xb5\x43\x9b\xb0\xf8\xfe\x7e\x9f\x1b\x55\x5f\x48\x92\x26\xbf\x0b\x6d\x99\xa5\x13\x93\x2d\xdb\x02\xe1\x05\xeb\x1b\xe0\xc7\x45\xec\xc0\x6f\xa7\x28\xa6\xbd\x30\xaf\x14\xaa\x37\x14\xa6\x16\x53\x92\x78\xa0\xab\x30\xd6\x7c\xa3\xe2\x87\x34\x09\xed\xb3\xd5\x32\x22\x02\x45\x15\x8d\x27\x82\xd9\x8c\xd7\x14\x5f\xf0\xa7\xff\x3d\xcc\xb8\xc8\xbf\x54\x8b\x0a\x63\x7f\x43\x93\xd2\x33\x26\x9d\x7d\x12\xed\x39\xa6\x25\xc6\x59\x82\x2b\x3c\x37\x53\xea\xdc\x10\xcc\xc3\xdf\x7d\x72\xdd\x0f\xbf\x43\x13\xe0\xd1\xb5\xb6\x91\x82\x61\x9a\xd9\xbc\x98\x23\x57\xeb\x4a\xe5\x6e\xf6\xe5\x76\xe0\x85\x0e\x8f\x28\xae\xe1\x69\x98\x3f\xe1\xc1\xe9\xa7\xf1\xed\x6a\x1b\xce\x4d\xfd\xbf\xea\x31\x22\x1e\x60\x7d\x6a\x56\xeb\x93\xd0\x37\x15\xe8\x89\x9a\x5c\xba\xaf\xf4\x93\xfa\x71\x99\x65\x6b\x8a\xa7\x02\x45\x33\xa1\xaa\x6a\x8b\x36\x93\xd4\x73\x38\xe1\x8c\x9e\xc1\xb6\xe5\x9b\xb6\x4c\xaf\x9f\x16\xe3\xf9\xca\xb3\x32\xa1\x1b\xbd\x1e\x96\xb0\x41\x31\x4e\xc8\x3a\xaa\x6f\x86\x82\xd3\x93\x0d\x19\xab\x57\x77\xbf\x46\xea\x4d\x1d\x6f\x92\xde\x0f\xb4\x9a\xa1\x4f\x7d\x57\xd2\xca\x83\x3c\xe1\x47\xd4\xae\xe0\xfd\xaa\x12\x83\x10\x68\x9d\xc4\xcb\xc6\xc9\xbc\x84\x36\x10\xdc\x35\x06\x7f\x71\xfd\xc7\x14\xd8\xf0\xbf\x07\x7e\x26\xec\xa9\xde\x67\x6b\x39\x48\x1c\x47\x23\x9b\x84\x16\x91\x22\x80\x97\x17\xb1\xd3\xd1\xc1\x3c\x45\x7f\x88\xaf\x67\x0a\x39\xf4\x7d\x8d\xf8\x3c\x5d\x1b\x90\x1e\xa7\x28\xff\x69\x00\x36\x5f\x37\x76\xdf\xeb\xaf\x77\xcb\x24\x26\x17\xb3\x77\xd1\x73\x0a\x1e\x72\x94\x88\x97\x6b\x7f\x7a\x25\x8a\x77\xfa\x3f\x7d\x83\x76\x13\x60\xc5\x4c\xa9\x82\x72\xf8\x3b\x58\x31\xa0\xbe\xb7\xf5\xd4\x50\xfa\x7d\x80\x0a\x1c\x8a\xe5\xd5\xdd\x8e\x6b\xd6\x13\x8d\xdc\x53\xf4\xcc\xf7\x66\x2a\xa1\xd9\xd0\x64\x05\x5b\x7a\xbb\x74\xd1\x77\x60\x27\x49\x47\xcb\xe9\xdf\xd5\x15\x8b\xbb\x35\xec\x67\x1a\x8e\x4b\xd7\x06\x51\x24\x6f\x0b\x6e\x2b\x7b\x1b\x65\x06\x83\x88\x20\xf7\x8e\xa2\xf7\xb2\x02\xc3\x5e\x6e\x74\x4c\x04\x0a\x60\x4d\x16\x47\x36\x9b\x27\x0f\x01\x3c\xc9\xb5\x99\x62\x03\x83\xb7\x70\x73\xe2\x7e\xbe\x7a\xcb\xba\x1a\x07\x3e\x3c\x4d\xf3\x12\xe2\x52\xaf\xf1\xc6\x05\x6b\xb3\xa3\x11\xde\xff\x8a\x74\x2e\x31\x8e\xc0\xff\xe1\x0c\xbd\x29\x8b\x72\x92\x70\x04\x2a\xa3\xf1\x6a\x4c\x5e\xd5\x33\x8a\xf1\xaa\x61\xee\x34\x44\xdb\x47\x03\x9f\xe9\x1c\x6d\x52\x93\xbc\x72\xa0\xbb\x12\xe5\x51\xc1\x7f\x1c\x29\xd7\xc7\x4a\xfe\xf1\xe3\xd9\x8b\x3e\xc7\x25\x36\xc7\x7c\x1c\x4d\x73\xd5\xd6\x02\x51\xa9\x4c\x2f\xf8\x58\x38\xcd\x8a\x71\x5a\x9b\x5a\xb9\xa0\xa7\x56\x74\xd8\x1c\x66\xe6\x0d\x20\xd4\x11\xd6\xff\x90\xbc\x06\x5f\x2b\xd8\x79\xdf\x24\x84\x25\x83\x9d\xfe\x86\x4a\x20\xef\x04\x8a\xc1\x8c\xe5\xfb\xdc\x86\xab\xed\xdd\xea\x6b\xb2\x12\x86\x9a\xca\xdb\x49\x36\x5f\x58\x17\xe8\x55\xb9\x9b\xea\x99\x65\x06\xbe\x55\x57\x64\xc5\x8c\x78\xe8\x12\x35\x17\x30\x81\xf1\xf5\xec\x39\xcd\xba\x9f\x4e\xec\x76\xcd\x76\xe2\x7b\xf7\x0f\xd4\x6c\xf9\x59\x3c\x01\x8e\x25\x53\x3b\x02\x0b\xf9\xe3\x99\x62\x5c\xbf\xab\xa0\x7b\xd3\xcc\xba\x92\x31\x47\x8e\xc7\x70\x7a\xf8\x46\x51\x10\x65\x69\x31\xce\xc3\x71\x14\x0f\x72\xa2\x20\xe2\x66\x27\x59\x19\x69\x7c\x6e\x76\x04\x87\x96\x76\xd3\xb4\xb8\x0b\xd3\xd1\xc6\x03\xa5\x34\x5f\xab\x37\xb5\x52\x85\x0f\x9a\xff\xcd\x57\x50\x36\x5c\xe7\x6f\x90\xbe\x61\x81\xde\x76\xee\xbd\x7a\x60\xf1\xe8\x6d\xb3\x0c\x44\xbb\x36\xe7\xe3\x83\xab\xb4\x6a\x35\x35\x59\x54\x06\xfe\xba\x66\xf4\x4c\x16\x6d\x53\x43\x71\xc7\x28\xc3\x85\xdb\x3c\x3d\xd3\xa3\x6e\xbe\xd4\x8f\x51\x78\x9c\xfa\xbf\x6f\x18\xdd\xaf\x2c\x70\xe3\xb6\x32\x2a\x8f\xa8\x32\xf0\xe8\x4a\x1b\x65\x79\x3e\xb1\xae\xbe\x03\x5f\xc4\xb4\x79\x7c\xd3\x36\x88\x90\x5b\x3b\x89\x92\x11\xc3\x35\xf0\xe5\x30\x4f\x84\x40\xe4\xa1\x92\x48\xf3\x44\xd6\x53\x93\x55\x59\x20\x78\xb8\xdb\x74\xeb\x1e\x23\xc5\xb4\x9a\xd7\x14\x5b\x14\x37\xc1\x86\x42\xef\xbb\x32\x12\x7d\x13\xa1\x43\x24\xd3\x25\xd6\xd0\x07\x74\x43\x13\xda\x1d\x9d\x25\x45\x91\x5b\xad\xbd\x8a\x72\x5e\x76\x40\x78\x6f\x3b\xb8\xb8\xc9\x37\x8a\x04\x15\x5a\x07\xfc\xa7\x1a\x90\x41\xd2\x86\x21\x36\x20\x61\xe4\x46\x60\xbe\xad\xe7\xeb\x2a\x0f\x74\x2b\xab\x49\xd0\xb4\x70\x90\x98\xae\xdc\xd6\x6e\xdb\xb3\x2d\x2c\x0d\xdd\x65\x6b\xa7\xfc\x6a\xb9\x47\x45\x71\x82\xf4\xab\x3e\xe7\x73\xae\xb2\x1f\xa6\x93\x49\x54\x14\xd6\xe6\x8a\x87\xf2\x04\x6c\x13\x33\xc5\x2b\x7e\xa4\x6f\xb7\xc5\x98\x71\x9a\x3b\xae\x0e\x69\x00\xfb\x74\xe8\x9d\x99\x6a\xd5\x04\xde\x23\x24\xd6\x0e\xec\x60\x87\x6f\x73\x3e\x00\xea\x16\xab\xf4\x10\x78\x5c\xbe\x21\x10\x87\xc3\xd0\xba\xc1\x97\x0d\x7a\x01\x0e\x8d\x54\x6d\x10\x69\x7a\xf9\x13\xbf\x67\xef\xbf\x61\xc4\xa6\xeb\xe2\x3b\x55\xda\x7b\xba\x2a\xbc\xad\xe7\x03\xe0\x22\x5b\x7b\xca\xcb\xc1\x3e\x44\x02\x84\xf8\xed\xb7\xc9\x07\xd4\x06\xcd\x70\x60\x8f\xc3\xac\xa1\xde\x7c\x43\x09\xc8\x6f\x5d\x57\x3c\x7a\xbf\x87\xb8\x4e\xd3\x03\x00\x20\x71\x8d\x22\x13\xf8\xe9\x7b\x4a\xbe\x37\xcc\xac\x9d\x4a\x98\xdb\xae\x89\xeb\x52\xa4\xc3\x53\x9b\xb8\x29\x53\x04\xb2\x98\x52\xe1\x6b\x47\x54\x91\x98\x37\x22\xd5\x8d\xc4\xa0\x14\xd6\x8e\x15\xc6\x60\xe3\x3b\xeb\xde\x4b\x7c\xad\x34\x19\xcf\x6b\x49\x22\xe7\x53\xd7\x73\x2a\x6d\x02\xbd\xbd\xd3\xb4\xdc\xd2\xf3\x43\x92\x5b\xd6\x3d\xb6\x37\x9a\x4c\xd3\xac\x30\x49\x68\x77\xa8\x56\x00\x52\x0a\xd1\x5e\xaf\xde\x35\xbe\xe7\x43\x3a\x91\x35\x8a\x32\x19\xc9\xf3\x8b\xf1\x10\xfe\x09\x11\xc2\x3f\xa8\x47\x6a\x56\xd9\xab\x37\x22\x55\xf6\x96\x89\xd3\x89\xcd\xa2\x42\xa9\xce\x9f\x0d\x6a\x02\x5a\x4e\x8c\x35\xfc\x5a\x69\xaa\x68\xbb\x26\xc4\xb5\x51\xc3\xd3\x3d\xa3\x50\x6b\x79\xf1\x64\xf5\x95\xb8\x27\x81\x84\x03\x0b\xc8\xd3\xe1\xa2\x65\xaa\x7a\x73\x17\x35\xce\xee\x89\x9e\xcf\x76\x20\xd0\x8c\xa8\x05\x78\x4d\x44\xc5\x9d\x75\x4f\x35\x7e\xa7\x75\x06\x77\x35\xcd\x32\x86\x5c\xbd\xc6\x5b\xf1\x6e\xa0\xf0\x22\xe7\x75\xbb\xf6\x0c\xce\x3c\x17\xf5\x2a\x7b\x61\x93\x01\xf1\x04\xe6\xf3\x3e\xc8\xfe\x44\x27\x2f\x37\x71\x60\x04\x1d\xe9\xc1\x7f\x0f\xda\x0a\x58\x54\x3a\x8e\xb9\x7e\xce\x2a\x1d\x9a\x69\xe8\x4f\x6b\xa2\xe8\xcd\x6f\x54\xfd\x89\x7e\x4e\xc5\x3a\xc5\xa9\x81\x91\x45\xbe\x6e\x7c\xec\x9e\x3d\xdd\x7e\x9a\x94\xb9\x74\x0a\x79\x64\x6d\xa6\x8a\xa9\xb7\x55\x35\x61\x12\x0d\x8a\x74\x35\x99\xf7\xf1\xd3\x27\x74\x5c\x85\x34\x86\x5e\x24\xdf\x04\x4a\x28\xf1\x13\xd7\xb3\x0d\xb3\x74\x35\xa1\x00\x01\x41\xde\x29\x55\xce\x3a\x8e\xb5\x43\xb5\xee\xaf\x14\x56\x33\x2f\x4c\x32\x30\xd9\xe0\x89\xea\xab\xa0\x5d\xcc\x6c\x0c\xc8\x92\x7e\xa6\x69\x96\x6e\xab\x8a\x0f\x08\x37\x51\x15\x79\xa0\x82\x87\xcb\x70\x38\x0e\xea\xa9\xf7\xac\xf7\xa9\x80\xea\xc4\x6b\xdb\x35\x41\x68\x3d\x71\xef\x38\x76\xbb\x4b\xf5\xea\xc0\xe3\x0a\x02\x2d\x88\xfa\xa1\x09\xf3\x68\x22\x6d\x2c\x58\xa2\x5b\x6a\xa8\xee\x56\xe3\x60\xee\xdb\x57\x6d\x96\x58\xaa\xc9\x12\x28\x29\xb4\xc2\xe9\xcd\x4c\x66\xaf\xee\x5e\xec\xbe\xfe\xfa\x36\xd5\x07\xb9\x4c\x6f\x4e\x66\x0d\xe8\xcd\xb9\x81\xbe\x45\x4f\x1e\xe3\xe1\x81\xff\x4b\xbd\x47\x9a\xac\x3d\x5d\x9d\x35\x51\x2a\x68\x2a\x7e\x00\x5e\x84\xb1\x36\x7e\x1d\x81\x42\x0c\xdd\x45\x7a\x86\x93\x76\x4d\x8b\xbd\xf0\xd8\x39\x70\x98\xdf\x9f\x79\x7f\xcc\x35\x21\x38\xa0\x0f\x90\xc4\xf3\xe7\xd3\x7a\xa1\xb0\xa7\x27\xb9\xc6\x26\x19\xc4\x36\x9f\xaf\x1c\xa7\x8c\x13\xd6\x06\xf5\x83\xda\xd4\xa1\x1a\xda\x57\x2d\xba\x91\x99\xf4\xbd\x48\x86\x54\x96\x3b\x8e\x5e\xf7\x67\xaa\x43\x1a\x25\xac\x62\xf8\xea\x6e\x07\x09\x53\xf0\x30\x35\xd3\x91\x0e\x87\xd3\xb2\x28\x9c\x36\x28\x97\x9f\x14\x68\xf7\x88\xb3\xaf\x65\x6e\x87\x65\x9c\x58\xe6\x0d\x77\xec\x65\xfe\x85\xff\x4e\x0b\xfe\xe4\xe5\xee\xd8\xc6\x53\x36\x6f\x70\x64\x77\x95\xf4\xff\x49\x6a\x12\x0b\x85\x52\x73\xa2\x4d\x64\x8f\xa9\x4e\xc4\xda\x4f\xd4\x1b\xc2\x19\x7a\x84\xf7\x27\xd1\x94\x87\x7f\xfd\xaf\x2d\x84\x14\xaf\x75\x4d\x62\xe2\xb5\x3c\xca\x6b\xe2\x9f\x7e\xfe\xaa\x55\xdf\x91\x65\x67\x13\x07\x7e\x80\x47\x3b\x15\x28\x68\xef\x29\xaf\x34\x67\x57\x6c\x9c\x4e\xf3\x79\x35\x58\xf6\x54\xcf\x13\x9e\x5c\xd4\xde\xe4\x01\x21\x65\xa5\x52\xed\x73\x68\x93\x14\x51\x18\x4d\x4d\x21\xb5\x0b\x69\xd3\x7b\x93\x77\x1e\xbd\x21\x36\x88\x61\x96\x92\x38\x6c\x9e\xa7\x2c\xa4\x80\x15\x3d\x3d\x53\xe5\xbe\xf3\x81\x22\xcd\x62\x39\x64\xfe\x31\x85\x45\x1a\xa7\xf1\x20\xdf\x4e\xdf\x0d\xe5\x28\x60\x58\x44\xe7\x87\x4e\x08\xeb\x1c\x51\xc1\x59\x28\x5e\x55\x25\x8a\xde\x8f\xa0\x7b\xbc\x96\x79\xb8\x2c\xc1\x37\x6a\xdc\xdb\xd5\x2c\xe8\xcf\x70\xa8\x80\x02\x9a\x5b\x97\xd0\x28\x8e\x0c\x90\xe5\x02\x06\xac\x16\x12\x65\xda\x77\x67\x0a\x6a\xda\xc0\x77\x7c\xb1\xb2\x9b\xfd\x28\x91\x4f\xc4\xcf\x41\x75\x56\x64\x21\x14\x53\xd3\x5d\x05\x67\x9f\x44\x89\x80\x73\x5c\xa7\xda\x3d\xe7\xe9\x1a\xb8\x60\xc5\x64\x91\xe9\xc7\x6b\x73\x64\x2a\x9c\x2e\x73\xb5\x23\x61\x77\xee\xaa\x2a\xf5\x85\xd9\x67\x54\xac\x3f\x1c\x42\x0a\x42\x3d\x50\xe0\xeb\x92\x17\xd5\xc1\x9f\xda\x24\x79\x23\x8d\xe2\x0e\x59\x1a\x07\x0c\xdd\xeb\x81\xa1\x2d\xaa\x11\x83\x34\x2c\x27\x55\xa6\xc7\x94\x23\x8e\x44\x55\xc5\xad\xbb\x54\x41\x88\xc6\xbb\xb7\xab\xfa\x3c\x06\x54\x84\x12\x56\x85\x78\x1f\xd4\x7a\xa1\xaa\x62\xfa\x01\x9d\x3e\xfe\x0f\xe5\xae\x07\x36\x36\x6b\x76\x80\x3f\xce\xec\x4a\x81\x2f\x6d\x41\x69\xc3\xb1\x2e\x79\xdd\x61\x70\x36\x39\xc8\xe1\x5e\xef\x36\x3d\x60\x63\x6c\xb3\xb4\x53\x19\x10\x38\x87\x93\x81\x57\x1c\x3f\xd9\xe8\x23\xee\xdb\xd7\x9d\x66\xe9\x28\x33\x93\x89\xcb\xe2\x1c\x7f\xb4\x23\x3c\x3a\xd6\x68\x81\x2e\xed\xef\x4e\xd2\xcc\x02\x41\x82\x9c\xea\x3a\x5e\x32\xdf\xb8\x1e\x5b\x66\x57\x98\xdd\x53\x81\x41\xee\x6a\x5a\xfb\xbb\x6d\x6c\xd8\xbc\x42\xba\x5b\x8f\xc1\x52\xbe\x6e\xe3\x54\x49\xb3\x81\xcd\x3a\x3a\xf9\xd4\xe4\xf9\x0a\x78\x9b\x8f\x53\x01\x55\x22\x82\x3b\xab\xc3\xb9\xb3\xae\xff\xb3\x12\xa5\x71\x65\x70\x10\xf9\x39\x9d\x3b\x17\x5a\x70\x55\x1a\xfb\x7a\xbb\xd2\xdd\xaf\x0e\x5a\x99\x7b\x7e\x78\x04\xaa\x7f\xa0\x06\xa4\xff\xa0\xad\x4a\xb3\x3a\x4e\x63\x66\x76\x70\x05\x6c\x65\x42\x7c\x6e\x3a\xb0\x71\x79\xd8\x2a\x2a\x14\x08\x87\xc9\x1c\x55\x9b\xcb\x98\x94\xd5\xea\x50\x0e\x2d\xaa\x6f\xf4\xbe\xd0\x4f\x3b\xa3\xe6\x43\xef\x2b\xcb\x57\x98\xe5\x2a\xf1\x5e\x38\xe8\x48\x79\xe8\xc4\x21\x02\x40\xa5\x47\x40\xf0\x3e\xa3\xb5\x76\x4a\xa3\x0f\x22\xf3\xe4\x65\x19\xdf\xa4\x15\xa0\xdf\xd8\xfa\x42\xcf\x67\x04\x5c\xb7\xc3\x83\x7d\x87\x2c\x1a\x6c\x8b\x96\x21\xd8\xa9\x68\xa8\x7f\xa6\x35\xc4\xe7\x99\x15\x4f\xb1\xb4\x2e\xb0\x81\xb9\x89\xf8\x89\xa1\xcd\xda\xf2\x33\x4b\x23\xac\xeb\x13\x3d\xdf\xa5\xfb\xb3\x17\x54\x4e\x59\x26\x51\xbe\x96\xc3\xcc\xc8\xd4\x97\x97\xb2\xd0\xf6\x62\x6a\x4d\x96\xa7\xc9\xbc\x2a\x07\x5f\x52\x95\x85\x07\x2a\xcd\x3d\x33\xf3\x41\xc8\xb7\x94\x55\x1b\xda\x2c\x31\xc9\x20\xd5\xe3\xfb\x88\x9f\xa4\x4f\xf0\x59\x85\x25\x06\x63\x79\x9a\x98\xb8\xa3\xf8\xcf\xd0\xcf\xe5\xeb\x06\xed\xdc\xc1\x57\xba\xfd\x08\x82\xe0\x58\x05\x54\x5c\xf9\xba\xad\x1f\x35\xb1\x2c\x00\x22\x50\x48\x8f\x15\xba\xac\x0f\xcd\x45\x55\xc0\x2e\xa2\x81\x89\xe7\x3c\x6e\x10\x20\x16\xe1\xff\xa3\x65\x47\x82\xf9\x81\x3a\x93\x61\x1a\x97\x13\xb0\xca\x20\xe1\x63\x68\x9e\x0b\x63\x94\x30\x9e\x5f\xf5\x89\x1d\x44\x21\xba\xa8\x42\xb7\xf2\xbb\x8c\x91\xe5\xbb\x19\x40\xc0\xd5\x9e\x78\xd4\x2c\xe5\xed\x59\xe8\x4e\xd3\x32\x19\x60\xda\x4c\x26\x76\x6b\x03\xf0\xb4\xb8\xa8\x69\xdf\x0c\x5e\x54\xf3\x06\xc9\x20\x0f\x0d\x2a\x1f\xaf\x4a\xb5\xf1\x84\x2a\xab\x9e\x50\x48\xee\x22\x9a\xd8\xc2\xf4\x63\x3b\xef\xb5\x08\x11\x65\x39\x1c\xad\xd3\x4a\x82\x23\x13\x4a\xb5\x9d\x6e\xda\xc3\x24\xf4\x22\x90\xa8\xce\xf5\x14\x13\xe5\x4d\x25\x83\x78\x65\xe6\x63\xde\x7c\x5c\x0e\x87\x9c\xbe\x38\xe5\xd9\xea\x70\xf0\x4d\x1b\x3c\xf5\x40\x37\x4c\xa7\x6b\x9a\x95\x85\xcd\xa8\xa4\x10\x2f\x28\x8f\x9d\x53\x3d\x27\x4d\xb6\xf9\x42\xe8\x4f\xf1\x82\x85\xa4\xd5\xb7\x8b\x40\x2c\xee\x60\xe2\x4e\x71\xb2\xd3\x6b\x8b\x4a\xa3\x84\x90\xdc\x1c\xaa\xa0\x67\xf6\x4d\xda\x04\xc2\x16\x4f\x5f\x44\x66\x0e\x24\x8b\x2d\xac\x2d\xc6\x73\x0a\xd1\x87\xe2\x0e\x92\x3c\xf4\x2d\x58\x41\xcb\x35\x89\xc2\xac\xcc\x0d\xcb\xea\xb3\x22\x6f\xa0\x22\x9d\x7b\x6d\x49\x5e\x39\x9d\x56\x9e\xc6\xe9\x3b\x32\xb0\x58\xd4\xf5\x7c\x82\x3c\xb0\x13\x03\x18\xae\x0f\x40\xff\x98\x16\x42\x9a\xa5\x8a\x85\x74\x6c\xb2\xe9\x0e\x5f\x7c\xfd\x7b\xe5\xb9\x59\xa7\x57\x06\x35\x3d\x5c\x87\x43\x36\xf8\xb8\xbf\x85\x81\x73\x44\x5c\x1e\xe2\x75\xd1\x11\xfb\x7e\x35\x2d\xb3\xc4\xc4\x90\xcf\xf0\x25\x23\xcc\x7b\xf3\x75\x0b\x7b\xff\xfe\xee\x30\x8e\x48\x1f\xa5\xfa\xa2\xd2\xd7\xef\xb8\xa1\xf8\x9f\x3b\xa7\x39\x4a\xd3\xc1\x9a\x35\xd9\xbc\xff\xcf\xeb\x7a\x60\xf9\x13\xc4\xcb\x28\x17\xdd\xad\x21\x23\xeb\xed\xd6\xc1\xd3\x0a\x68\xf0\xb6\x26\x75\xba\x06\xd7\xc5\x37\xb0\x13\xfc\x63\x4a\x50\xe5\x74\xa0\xda\x51\xd0\x9b\xc6\x87\x42\x5f\x0c\xe1\xf3\xd6\x9e\xa2\x05\xf9\x18\xcf\xa9\xa0\x6f\xfb\xdd\x78\x6f\xf5\x2e\x60\xb2\xcf\xab\x60\x6b\x94\x26\x16\xde\x81\xc9\x82\xe8\x9d\x09\x71\xd0\x73\xee\x24\x26\x03\xaf\x65\x2d\x3c\x99\xf4\xed\x44\xa7\xf0\x79\xad\xc1\xb2\x12\x0d\xec\x60\xbb\x4f\xf0\x7f\x7f\xa6\x88\x5e\x3f\x60\xfb\x26\x26\xb4\xe3\x08\x3a\x7e\x3f\x50\xd2\x1e\xdb\x7a\x8a\x96\x70\xdb\xba\xae\x10\x84\x51\x3a\xa7\xda\x07\x35\x0f\xa3\x79\xe1\xda\x48\x46\xfa\x36\xdf\x44\x16\xf3\x09\x3e\x95\x6f\xda\x14\x6b\x07\x76\x18\x85\x91\x68\x20\x61\xf8\x84\x2b\x78\x7c\xd3\x88\x2f\xc1\x94\x58\x54\x79\xce\xa3\x2b\xd8\xd5\x5a\x84\x4e\x7a\xe8\x2d\x31\x94\xa9\xdc\x48\x34\xaf\x8e\x0b\x24\x4a\x84\xf5\xcb\xcf\x85\xff\xa3\xaa\xe4\xb6\xf6\x36\x62\x33\x1a\x49\x3e\xd2\x56\x2a\xf6\x61\x42\x12\x4d\xa7\x55\xac\x57\x6d\x04\x47\x57\xbb\xd7\x51\xd7\x7a\xd6\xf0\x28\x49\x85\x92\xcb\x4d\x07\xaa\x3e\x9c\x0c\x8f\x26\xfd\x88\x7b\x02\xd2\x3f\xad\x3e\x17\xcc\x2b\x17\x35\x10\xe0\x31\xc5\xc6\x32\x19\x18\x1e\x70\x46\x23\xe0\x5d\xfa\xde\x7c\xdd\x98\xfc\x27\xb3\x3f\x88\x56\x22\xa7\x98\x86\xda\xc5\x4f\x74\xe5\xea\x27\xb5\x79\xbe\x95\x28\xb7\x83\x1d\xc4\x79\x01\x68\xe5\x3f\xe0\xb8\xa0\xa3\x79\x2f\xe8\xfc\xba\x0c\x86\x42\x07\x17\xd6\xf8\x0e\x95\xb6\xf8\x9a\x96\x1f\xe3\xb6\xb0\x68\x48\x7e\x6e\xb7\x2a\xaa\xc4\x76\xc8\xda\x4c\xdc\xbe\x83\x8d\x96\x5e\x5e\x1b\xfe\xb4\x18\xc7\xb6\x60\x9c\x23\x3c\xfb\x5f\x29\x5e\x8e\xbf\xd2\xac\x89\x16\xd3\x58\x78\x18\x1e\xaf\xe3\x1b\xad\xc9\x6a\xb3\x65\x1b\xdb\x35\x1a\xf9\x73\xec\x2d\x4b\xfb\x7d\xe3\x66\x49\x4a\x1a\x7f\x8a\xc7\xe3\x9b\xc6\xe3\xed\x59\xe8\xda\x64\x14\x25\x56\xfa\x82\x0c\xa5\x9c\xf9\x9e\xae\x66\x00\x9b\xda\xc1\x20\xa6\x16\x96\x92\xab\x87\x12\x83\xe8\x23\xf8\x2d\xde\x64\x37\xd9\xbb\xd8\x9d\xa6\x69\xcc\xfb\x8e\x39\x35\xe8\x37\x1e\xc7\xf5\x4a\x5a\x55\x26\x19\x59\x2a\xa0\xa3\x6c\xf1\xe9\x4c\x51\xad\x22\x89\x47\x85\x88\x07\xa0\x11\x97\x5c\x54\xd0\xa2\xbe\x72\x7d\xc8\x18\x00\xaa\xe0\xeb\x46\x61\x69\xef\x62\xb7\x4c\xa6\xb1\x35\x39\x6d\x5e\x47\x3a\xf7\xbe\x6a\xad\xbc\xdf\x18\x39\xd8\xb3\xd0\x8d\x92\x41\x99\x17\xd9\xda\x6a\xc4\x7e\x1c\x73\xcf\x48\x18\xf9\x5a\x75\xac\x80\xfb\x0d\x2d\x08\xd5\xb0\x4b\x51\x0c\xac\x31\xe7\xa3\xf6\x8d\x82\xaf\x48\x00\xd3\x12\x08\xdb\x87\x9b\x5d\x4a\xe3\x81\xcd\xe6\x7d\x41\xeb\x96\x92\x8b\x7b\xba\xe7\xd1\x01\x1b\x70\x62\x70\x29\xd7\x1b\xdf\xdf\x51\xaa\x8e\xa3\x6c\x30\x57\x9d\x20\x7c\xea\x23\x45\x2a\xcb\xe0\x4d\x99\x83\x7b\x2c\x02\x67\x38\x4c\x33\xf1\xf0\xae\x78\x5b\xfd\xa6\x84\x0d\x8e\x12\x3e\x8c\x4b\x5a\x33\x94\xdf\x8a\x99\x1a\xc1\x2a\x82\xc7\xb1\xbe\x86\xa6\x30\x79\x91\xa5\xd3\x31\x0f\xc4\xe9\x8c\x87\xaf\x03\x1f\x29\x0e\xd3\x6c\x68\xa3\xa2\xcc\x2c\xe2\x39\xe4\x05\xe7\x94\x8e\xd4\x29\x6c\x22\xec\xae\x6f\xab\x43\x57\x64\x69\x99\xdb\x8c\x73\x70\x37\x12\xe7\xfa\x14\x70\x5f\x52\x59\x6b\xd6\x5a\xbb\xc4\x32\xc8\x1e\x0b\xe1\x08\xe3\xb5\xf8\xa6\x21\x30\x2a\xdf\xb1\x5f\x66\x13\x33\xa6\xe0\x1e\x47\xf2\x82\x86\x59\x5c\x50\xb9\x80\x99\x4e\xd3\x28\x29\x88\xe3\x88\x7e\x04\x49\xea\x1f\x07\x3e\x61\xfd\xe3\xd6\x98\xca\x26\x69\x39\x1a\x77\xfc\xd0\xf4\x3d\xb5\xd5\xef\xb9\x77\xb4\x6c\xc3\xe5\x1a\x67\x14\x1e\x44\x4c\x50\xf3\x2f\x77\x57\x49\x5b\x75\x50\xd7\x7c\x55\xd4\x12\x6d\xa0\x06\x22\x82\x33\x5c\x95\x96\x90\x8c\x3e\x15\xf9\xe1\x03\x35\xf2\x7b\x79\xe6\xeb\x3b\xa3\x32\x86\x7c\x95\x1e\x9a\x3e\xa5\x07\x53\x4e\xb5\xd1\xb2\x4d\x99\x67\xb7\x26\x0f\xa4\x35\x84\x74\x34\x58\x98\x29\xe1\xfb\xb5\x78\x3f\x4a\x7d\x57\xb4\xd8\xe0\x8f\x5a\x4a\x1f\xaf\x75\xc3\x74\x22\xfd\x69\x45\x19\xf9\xb2\xa3\x8c\xf4\x16\x6b\x1a\xdb\xa4\x60\x1a\x2f\xec\x51\xe6\x2c\xe1\x9b\xf5\x96\x2e\xd1\x34\x4b\xbf\x6a\x43\x17\x14\xc1\xe5\x7f\x4a\xbb\x92\xaf\x15\xa2\x6e\x62\xb3\xb0\xcc\xd6\x3a\x6a\xba\xe1\xb2\x52\x79\xbb\xac\xd2\x81\x41\x16\xd9\x01\x15\xf2\x24\x73\xf6\x74\x5e\x4d\x25\x48\xd9\xb4\x43\x13\x56\xef\x62\xde\x77\xf7\x81\xca\x75\x62\x29\xae\x0a\xf1\x4d\x3d\x48\x7d\x55\xe5\xd4\xab\x26\x37\x45\x38\x9e\x53\x6d\x76\x99\x3b\x45\x66\xfe\x83\x59\x6d\x5b\xf9\x1c\x7e\xd5\x0e\x46\x58\x87\x97\x5d\x2e\xe4\x0b\xe5\xe7\x67\x3a\x2f\x42\x4b\xa0\xe3\x31\xfa\xf8\x51\x19\x05\xf2\xce\x39\x35\xcb\x73\xbe\x48\x71\x4b\x69\xa8\x5d\xd4\x61\xf1\xd1\x99\x97\xa4\xb0\x8c\x30\x40\x58\xfc\x7f\x10\x3a\x83\xaf\xdd\x40\xf7\xd8\x46\x13\x9b\x49\xff\xc2\x49\xb3\x7b\xb8\xc5\x07\x0a\xfc\x3b\x36\x2b\x56\x26\x4e\xd1\xcb\xfa\x44\x09\x27\x7c\x12\x3c\xa3\x2a\x73\x76\x3a\xef\x47\x82\xb6\xf4\x54\xee\xfc\x17\xb3\xba\xb2\x67\xb5\x4c\x32\x59\xb9\xb9\x52\xf3\xc5\x6e\x99\x4b\xf6\x8b\x1c\xe1\xfa\xcc\x17\x1e\x6f\xe2\x0d\x20\x7a\x9e\x6f\x28\x94\x2c\xed\xee\x0e\x4d\x24\x93\x52\xfc\x19\x9f\xce\x36\x39\xb2\x05\x7e\xb9\xdb\x7b\x9b\xc3\x93\x83\xaf\x74\xc7\x26\x0b\xd3\x32\x23\x98\x16\xfb\xf9\x77\xb0\x3a\x7c\xa3\x4a\x5f\xe1\xd8\x64\x31\xd7\x53\x1d\x73\xa1\xa2\x31\x6c\x39\xfd\x2f\x77\xb3\x28\x77\xa7\x1f\x95\xee\x73\xaa\xea\x7d\x4e\x23\xf4\xd2\xac\x88\xd2\x04\xdd\x23\x74\x15\xbf\x13\x78\x6a\xc6\xef\xd0\xb9\x80\x61\x00\x43\x2f\x5f\x3f\x96\xb2\xbc\x1f\xa7\xe1\x72\xbf\xcc\x0b\xae\x16\x0b\x7b\x3e\x3d\xb3\xd0\xea\xfb\x83\x58\x58\x13\x8e\x3b\x4a\xb4\x9f\xe8\x70\xdc\xcd\xba\x84\x01\xc3\xcc\xe6\xa1\xe9\x34\xfb\xad\x52\x46\x69\x0e\xf1\x2c\x39\x92\x5a\x9e\x80\x45\xb0\xc2\xa6\x9a\x6f\x82\xcf\xa9\x81\xfb\x81\x13\x41\x64\xf1\x18\xac\xd7\x25\xf4\xfc\x04\xa8\x55\x7d\x2b\xbe\x0e\x14\xad\xd9\x25\xe7\x51\xfa\x26\xc6\x07\x3a\x8a\x33\xcd\x63\xe4\x37\x3e\xb1\x88\x4d\xe6\x54\x17\xff\x12\x2a\x11\xba\x2c\x27\xc3\x1d\x3e\xc2\x5a\x31\x71\x69\xfa\xb1\xdd\xa6\x0a\x29\x5b\x7a\xb4\x84\xf2\x24\xb4\x84\x00\x6d\x31\x0f\x9b\xc8\xeb\x52\x8c\xc4\x37\x0e\x9e\x90\xa7\x59\xb6\xa6\x14\x85\xdf\x53\x53\xe4\x4c\x29\xe3\x48\x69\xaa\x18\xcd\x21\xab\x9d\xee\x01\x53\x30\x49\x18\xe5\xdf\x6f\x3f\x8e\x92\x41\x87\xea\xc4\xc0\xcd\x81\xc8\x94\xaf\x5b\x66\x3c\x5f\xee\xda\xc3\x45\x94\x84\x94\x9e\x0a\x89\x9f\x6e\xba\x82\x7c\x05\xe5\xef\x13\xca\xb2\xe6\x36\xa9\x3c\xe5\x76\xe5\x52\xde\x06\x8e\x0c\x31\xc5\x6d\x20\xcc\xf8\x66\xa6\x0e\xef\xdb\x1a\xbe\x7a\x4a\x4d\x28\x9d\x52\x73\x50\x79\x91\x59\x33\x89\xa3\x84\x30\xd3\x82\x82\xba\xa9\x34\x70\x2f\x29\x44\xd4\xcd\xa0\xa6\x2e\xef\xff\xcc\x28\x5d\xb1\x59\x52\x05\x33\xcf\xcd\x39\x59\x8e\xff\xf0\x99\x75\x9f\xa8\x9e\xd1\x30\xa6\xf7\x02\x15\x91\x3e\xd1\x83\x3d\xe5\xbb\x75\xc2\x39\x3a\x91\x0f\x5f\x8f\xfa\xef\x74\x60\x71\x45\xe1\x1a\x6e\x61\x2f\x48\x3f\x93\xcc\x03\x1c\xfd\xb6\x9e\x42\xd9\x3f\xdb\xf3\x0a\x58\xd7\xc9\x18\x20\xf1\xc4\x14\xba\xd0\x1e\x6d\x36\xaa\xaf\xee\xde\x4f\xd4\xbb\xbe\xec\x8a\xc9\x94\x93\xff\x49\xda\xf5\xd7\x5f\x47\xd1\xcc\x02\x5b\x86\x07\x38\xa3\xe5\x10\xcf\xb4\x80\x98\x0e\x74\xf3\xc2\xf8\xc8\x53\x7a\xc5\xbe\x66\xa8\x7b\x76\xe5\x34\x4d\x76\x78\x81\x7a\x9e\x7e\x84\x79\x7f\xc4\xb8\x08\xd4\x3c\xee\x52\x81\xcb\x81\xf1\xdd\xba\x71\xb5\x8f\x7f\x5f\xe1\xbb\x8e\xb4\xa6\xd3\xab\x51\x66\x95\x2a\x07\x98\xbb\xa4\x15\xe4\xce\x9c\xc8\x98\x2a\x0d\x1e\xc7\x59\x72\x87\xbc\x2a\x7e\x65\x6b\xcf\x73\x5f\xc4\x96\xf2\xaa\xd7\x1c\xc7\xbb\x27\xf8\x63\x73\x88\x4a\x1d\x89\xd2\xcb\x35\xdc\x91\xf0\x6e\xfe\xb3\x96\x79\xcb\x34\xa9\xe2\x78\x1a\xd5\x14\x9f\x8d\xb6\xd8\x3d\x8d\x37\xd2\x34\x11\x61\xb6\x96\x13\xaa\xd7\x8d\xd9\x6e\x28\x7a\xf1\x26\xac\xa1\x7a\x65\xc3\x34\xb3\xa1\x71\xca\xc2\xae\xc4\xaa\xb3\xa8\x17\xbc\x35\x36\x51\x32\xcc\xcc\xc4\xe6\x1d\x3a\xb7\x68\x4d\xde\xc1\x89\xe6\x9b\x56\x31\x0f\x31\x8f\x64\x81\x65\x92\x4c\xb1\x7f\x6f\x28\xeb\x34\xae\xd2\x9f\x67\xab\x2f\xc1\x82\xb3\x14\x23\x0b\x7f\x95\x6e\x75\xdc\xd7\x83\x59\xf3\x3d\x32\x68\x88\x35\x98\x3b\x18\x06\x7c\x2b\xa1\xef\xe0\xfa\x77\x10\x39\x10\xca\x64\x77\x55\x06\xfc\xb0\x16\x9c\x50\x77\x1b\x4d\xe7\x3b\x0a\x58\xf5\x31\xea\xab\x40\xaa\xfe\xef\x7a\x92\xfb\xcd\xb6\x6a\x5a\x11\x0d\x87\x26\xe1\xd0\x17\x9e\xe6\x47\xf4\x91\x7c\x3d\xdb\xfc\xda\x1d\xb1\xe4\x38\x5d\x2d\xa2\x89\x46\x61\xbd\x3b\x53\xe5\x95\x77\x03\x9d\x29\x4c\xd3\x29\xf6\x1f\x90\x7e\xef\xe9\xb2\xd4\x45\x2d\x56\xf8\x48\xa9\xaa\xdd\x56\x7e\xe2\xac\xa2\x90\x9f\x44\x49\x62\xf3\xb4\x30\xf3\x2a\x10\x3b\xa2\xb7\xf1\x87\xba\x8c\x7b\x84\xc3\x64\xfe\x2f\x05\xa0\x30\x79\x64\x38\x82\x71\x42\x24\xd5\x73\xa1\xe0\xce\x83\x77\x4e\xab\x4b\xd3\x42\xb8\x41\xce\xa8\xa0\xfa\x06\xf5\x80\xa4\xec\xd5\x71\xc2\x59\x17\xd5\x08\xef\xba\x12\xc5\x25\x15\x6a\xb2\xc2\x4e\x39\xa4\x7a\x08\x81\x4c\xb4\x11\x2b\xc4\x69\xba\xcc\xb5\x5a\x99\x6e\x26\x9b\x2c\x43\xa2\x0a\xc6\x90\x45\x31\x47\x99\x52\x18\x3a\x37\xf3\x48\xdd\x79\xca\x3c\x60\x3a\x9a\x83\x11\x5f\x14\xba\x2a\x09\x53\x85\x60\xcb\x87\x14\x77\xf4\x52\x3c\x6a\x83\xe8\x8d\xcd\x74\xaa\x00\xe8\xdc\x71\x0e\xbc\xfb\x6d\x9e\xf3\xd7\x5f\xef\x9a\x3c\x4f\xc3\x08\x50\x22\x5f\x9c\x82\x16\x12\x5f\xab\x5c\x85\x25\x11\x10\xdf\x32\xf0\x97\x56\x5e\x40\xc0\x4e\x33\xd1\x66\x36\x2f\xb2\x74\x39\x32\xba\xd4\x0d\x33\xcd\xd7\x48\x15\x64\x3c\xfc\x5f\xfc\x53\x32\x1c\xf2\x47\xc9\x70\x38\x68\xf1\xa1\xfd\xce\x9c\xd3\x5f\x43\x0a\xf7\x36\x95\x50\x71\x94\x4f\xe9\xd9\xf6\x4b\xc4\xa6\x8e\xeb\xbf\x41\x10\x85\x6a\x09\xf7\xfc\x60\x83\xb7\xf6\x54\xac\x84\x79\x5e\x1c\xff\xab\x64\xcf\xb1\x68\xb7\xa9\x78\xcd\xb3\x32\x81\x62\x8b\x3e\x0a\xbb\x80\x42\xf4\xf7\xc9\x12\xe1\x4d\xb1\xb2\x98\xf2\x8d\xe2\xb0\xd0\xec\xc6\x86\xb8\xc9\xe7\x43\xa2\x88\xce\x6f\xfc\x9a\xdf\x62\xd5\x1e\x82\xc1\xb9\xad\x3b\x57\xd0\x92\x15\x31\x0f\x47\x64\xf8\x3f\x7f\x88\xce\xbe\xc8\xc6\x35\x29\x1f\x68\xba\xc1\x0a\x07\x8e\xd4\x7e\x58\xee\x92\x6f\x66\xb5\x31\xba\x61\x9a\x4d\xe6\x7d\xaa\x79\x2d\x50\xd3\x17\xd7\x66\x9a\x55\xf9\xae\x22\x4c\xbb\xdb\x70\xb0\x7b\xf6\x90\xf8\x06\x9f\x21\x9c\x55\xf8\x41\xbe\xd6\xcc\xe1\xd3\x32\xcb\xa4\x48\x0a\x30\xc4\x2d\xda\xbe\x7c\xfd\xd8\x22\x61\x6e\x4d\x21\x54\xcf\xb5\xc9\x64\x4d\x11\xc4\xc0\x7f\x15\x69\x84\x91\x7d\x09\xeb\x21\x4a\x7d\xbe\xa3\xf1\x67\x2d\x73\xf8\xe4\x79\xcb\x89\x94\x92\x10\x59\x1d\x0d\x54\x7e\x72\x74\xf6\x79\x05\xcc\x8d\x63\x53\xd8\xcc\xc4\xd1\x1b\x9c\xd1\x48\xc1\xa2\xfa\x18\x29\x64\x3c\xb6\xaa\x38\x36\x93\xbe\xcd\x62\x13\xa1\x1e\x8f\x35\xe0\xac\x9c\x6f\xda\xf8\x1f\xf2\xa2\x1c\x0e\x55\xfa\xc9\xd4\xdd\x7c\xa3\xc6\xef\xed\xaa\x14\x82\xd0\x22\x3c\xaf\x69\x08\xb4\x6a\xee\xa4\xac\xa2\xb7\x01\x55\xe6\x44\x93\xa9\x3a\x13\xa2\xd5\x24\x55\x84\x91\x89\x63\x93\x14\x73\x75\xa2\x7f\x5f\x56\xc6\x90\x14\x6a\x01\xf7\x83\x9d\xae\xa8\x91\xa4\x3b\x3d\x4e\xe3\x0a\x1d\x04\x24\x46\xe8\x53\xd2\xd6\xff\xe2\x2f\x90\x77\x86\x33\x61\x34\x04\xca\x72\x8f\xe0\x3c\x1c\x1f\xc0\x5e\x87\x94\x45\x60\x8e\x0e\xc7\x0f\x09\x73\x48\x27\xf2\xf7\xfe\x4b\x24\x3f\x58\x7f\x1c\x49\x3c\xe0\x13\xeb\xcf\xa8\x89\x17\xd0\x09\xbf\xcc\x8d\xce\xaf\xd3\x2e\xd7\xb4\x12\xee\x48\x2e\xed\xe6\x70\xf9\x1a\x36\x5d\x4d\x21\x00\xeb\x7e\xcc\x2d\xd2\x34\xb3\x2b\x26\x8a\xe7\x14\xc2\x15\xc7\x5d\x06\x1a\xab\x3f\x0d\xc0\xc0\xed\x86\x47\x3a\xf8\x4a\xd7\x1e\x0e\x6d\x8e\xf1\x1f\xac\x24\x30\x58\x30\x8e\x73\x3d\xaf\xfb\xfd\x93\x86\x93\xd9\xff\xca\x81\xae\x99\x28\x2b\x20\x40\xd5\x8e\xe3\x6f\x3d\xd5\x46\xa2\xd7\xcf\x8c\x54\xcf\xdb\x00\x56\x7e\x10\x27\xea\x4f\x48\x0e\x43\x38\x97\xc8\xee\xba\x99\xe5\x43\x8e\x77\x1c\x48\x2e\xac\x3f\x6b\x26\xbb\x99\xd1\x25\xa9\x3a\x7c\x1a\x78\xb8\x20\x06\xe8\x51\xad\x79\x1f\x96\x08\xa9\xeb\xf7\x14\x39\xeb\x9a\x4d\x90\x62\xbb\xbe\xb8\x67\x19\x06\x47\xad\xf4\xc8\xfd\x29\xff\x98\x0c\xbd\x34\x5e\x5b\x70\x92\xb1\x1d\x45\x79\x0c\x56\x94\x8e\x63\xca\xba\xa4\x68\xaf\x2e\x29\xb9\x91\x7e\x34\xd8\xa1\xe8\x45\xff\x9f\x5a\xbd\x81\xbe\xb4\x2b\x73\xee\x95\xc6\xed\x6d\x6c\x53\xe6\xbe\x0e\x3c\x6b\xc0\x11\xc5\x80\x70\x41\x05\xc1\x34\x6a\xdb\x51\xf9\x7b\x5d\xfb\xae\xa5\x91\xd4\x4f\xe3\xbc\xb0\x9e\x13\xab\x8d\x41\xc4\x1f\xf7\x69\x14\x2e\x8b\x65\xe0\xde\xb2\x22\x13\xde\x50\x16\x64\x3a\x36\x39\xe2\x76\xb8\xcd\x3f\x52\x2e\xf4\x8f\x02\x3f\xea\x44\x13\xee\xe9\x28\x0a\x3b\x5a\x97\xff\x07\x7a\x1e\xe2\x07\x7a\x15\xcb\xe2\x17\xfc\x01\xdb\xb2\xee\x11\x57\x42\xa5\x2b\xd1\x91\x9a\x96\x7f\x4b\x81\x0d\x7e\x0e\xbf\x86\x28\xfd\x46\xa0\xf9\xfb\xb0\x0d\x85\xdd\xd2\x07\xba\xb7\x50\x83\x71\xf2\xfe\x95\x9b\xc7\xc1\x7f\x7f\xd6\xf9\xd2\x6f\xb2\x39\x63\x75\x02\xec\xe2\x2b\x14\x7c\x30\xed\x10\x6d\x5c\x57\xcc\xdc\xef\x78\x6c\x4f\x51\xbe\x80\xbf\xf4\x09\x31\x7e\x38\xa6\xad\x2a\xbe\x41\xb8\xff\x0e\x4e\x0a\x1e\xfe\x0c\xcc\x01\xc2\x8a\x2b\x5a\xe3\x07\x43\x32\x6a\xc4\x49\x52\x9f\x07\x2a\x0f\x1b\xa4\xe9\x24\x37\x6b\x36\x43\x39\x99\x43\xfa\x5a\x78\xef\x98\x09\xcd\x61\xb1\x04\x78\x0e\xcc\xc1\xf2\x75\xdb\x14\x8e\x35\x59\xb2\x69\x17\x7d\x53\xed\xa2\x6f\x6a\x58\x69\x9c\xae\x5a\xc6\x9a\x8b\x00\x1a\x7d\x4b\xbe\x09\xbc\x4f\x7b\x4b\xb3\x04\xbc\xa5\x8a\x8d\x36\x29\xb2\x35\x02\x89\x09\x88\x9c\x7e\x90\xf5\xf3\xe9\x2f\x38\x2d\xfd\xbd\x8b\xf2\x43\xaa\x54\x1d\xc6\x69\x6e\xb3\x8e\xd7\x55\x47\x44\xce\xd7\x8d\x29\x50\x62\x2c\x2b\xb2\x28\x2c\x98\xaf\x9c\xb5\x08\xf0\xe0\xe8\x0f\x7f\xaa\x86\x4d\xdf\x69\x98\xd8\x57\x77\xbf\x56\xef\xe5\xc0\x2d\xbd\xa3\x00\x8f\xef\xa8\x84\x24\x4a\x8a\xf4\xb3\x5e\xca\xfc\x7a\xa0\xfc\xc7\x51\x30\x93\x30\x97\x90\x12\x50\x21\x02\xec\x97\x3d\xd1\xcd\x5e\x41\xbb\xcd\xad\x2b\xa5\xe6\x0d\x8a\xb1\xb0\xeb\xdf\x0a\x3c\x59\xd6\x65\x9a\x5a\x86\x59\xfd\x71\xa0\xbc\x33\x9b\x6b\x78\xb8\xf9\x75\x30\xa6\x38\x61\x82\xa5\xfd\x0e\x90\x4a\x67\x8b\x51\xf9\xd8\xab\x68\xc2\x7f\x8c\x48\x95\x3f\x46\x0b\x1b\x1c\xe3\x63\xeb\x86\x93\xaa\xd3\x05\x51\x9c\x6b\x0a\xd4\x7e\xa3\x55\x25\x22\x2f\xd2\x94\xb3\x2a\x19\x03\xf2\x90\x31\x9e\xc9\x45\x15\x66\xae\xa7\xe8\x84\xcb\x30\xad\x02\x27\x17\x33\xdc\xa4\x85\xe2\xeb\x59\xb7\x09\xcc\xd9\x44\x81\xe5\x07\xbe\x3e\x51\x8c\xc5\x9f\x28\xc4\xdf\x30\x33\xe5\xa0\x8c\x2d\x22\x9e\x97\x6b\x22\x41\x30\x30\xb7\x95\x67\x3d\x57\x9b\x4b\x4a\x32\xa6\xc5\x96\x4c\x48\xd5\xb8\x2e\x6b\x36\x27\x9b\x55\x81\xb8\xcd\xb8\x08\xa3\xea\xd8\x2f\xbb\x02\xf7\x67\x54\x33\x3f\x4a\xc2\x68\x6a\x62\x2a\x0e\x23\xcf\xff\x88\x5e\xbe\x5c\xd3\xe7\xa0\x1e\x3c\x47\x81\x83\xe0\xa8\xaa\xa7\x96\x22\x52\x65\xb2\xf8\x17\x34\x07\xe0\x38\xcd\x0a\x33\xb2\x74\x32\xe0\xd3\x60\x57\xe0\xae\x4e\x10\xb4\x19\x0d\x91\x0b\x8d\x6a\xe3\xd2\xee\x6e\x99\x03\x41\x81\xd3\xf7\xa1\xe6\x49\x7e\x5f\x11\x6b\x7e\x48\x2f\x8a\xff\x7d\xf6\x59\x85\x31\xed\xa7\x99\x29\xd2\x2c\xaa\xb2\x4f\x3f\x56\x3c\x53\x63\xc5\x81\x26\x1f\x1f\x66\x26\x62\x08\x32\x8a\x09\x97\x6b\x2d\x76\xdf\xe6\xbf\x11\xa8\x5e\xce\x86\x92\xd9\x64\xd6\xb6\xc1\x13\xb4\x61\x45\x0e\xbd\xfa\x6c\x51\x43\x57\x7c\x4e\xb7\x34\xd9\xe9\x95\xc0\x13\x84\xc9\x2c\x97\x1c\x19\x8f\xa0\xba\xad\x24\x18\x3f\x68\xd8\xdb\xd7\x5f\xef\x0e\xad\x75\xf2\xab\x0c\x0e\x52\x08\x8c\x4b\x8d\x09\x06\x97\x0f\xf1\x94\xfd\xa2\x93\x4f\x3b\x4b\xdf\x97\xaf\xdb\xa0\x62\xf9\xd7\x4a\x93\x61\xdb\xb3\x71\xa0\x87\x13\x43\xf1\xbc\x9a\x17\x88\xa6\x53\x41\x82\x09\xbf\x92\x9f\x62\x39\xd3\x88\x20\x5f\xdd\xdd\xcd\xa2\xd1\xb8\xd8\xe6\x2b\xd3\x67\xa9\x32\xad\x3b\x5d\xf0\x7d\x37\x67\xaa\x56\xff\xb1\x9a\xb7\x7e\xa0\xde\xec\x28\x33\xc3\x42\xb2\x44\x29\x93\x76\xdc\xa0\xf3\x7b\x6d\x00\x23\x37\xbc\xd0\x98\x57\x40\x65\x8c\xe9\x31\xf0\xf2\xae\xa9\x94\xb4\x9f\x45\x6f\xa4\xb1\xe9\xd4\xfa\x28\xea\x10\x5d\x0e\xbc\x40\x06\x51\x7d\x9a\x22\x0a\x31\xee\x23\xd0\x08\x6f\xe0\xa6\x88\x2b\x24\xa4\x6b\x11\x42\xb4\xc6\x53\xd8\x31\x71\x87\xe2\xd6\x79\xd8\x54\x41\x7d\xe5\x40\x77\xd5\x64\x53\x48\x32\x2f\x7a\x77\xe8\x60\x5e\x40\xe9\x49\xac\x4e\xd6\x12\x79\xc3\x91\x9a\x41\xea\x17\xf9\x9c\x97\x10\x7b\x7f\xe6\xf9\xed\x7f\x1a\xd4\x5a\x15\x6a\x28\xc8\x64\x23\x5b\xe4\x44\xc6\x09\x14\xcf\xd5\x99\x1a\x20\x3b\xae\xf9\x1a\x8e\xeb\x99\xca\xab\xc1\x66\x15\xc0\xff\xaa\x9b\x58\x80\x9c\x58\xd6\x42\x41\xa3\x9a\xbb\xf5\x2b\x0b\x94\x92\xb2\x63\x17\x82\x7d\x45\xb6\xaf\xe0\xf7\x61\x9a\x17\x86\x2b\x03\xba\xed\x8f\x6a\x29\x83\x9b\x65\x53\x3e\xaf\xc4\xfd\xfa\x99\xc9\x97\x4d\xc7\xcf\x37\x30\x1e\x56\x64\x80\xbc\xd1\x1d\xd8\x69\x6c\xdd\x4c\x8f\xe3\x70\xd8\xb7\xcf\xf5\x05\xfd\x16\x19\xa4\x49\x62\xe3\xd8\xae\xed\x50\x9e\xfe\x86\x86\x31\xdd\x25\x5f\x8b\x8e\x0c\xc8\x1c\x50\x9e\xbc\x41\x4b\x82\x6b\x48\xea\x88\x94\xaf\xaf\xe9\x7f\xaf\x11\xd1\xec\xdb\xd7\x35\x83\x15\x9b\xe5\x86\xc9\x00\xda\x38\x58\xdb\x08\x47\x48\xe6\x1b\xb1\x21\x53\x61\x6a\xa5\xaa\x3f\x69\x69\x04\x2e\x76\xf3\xa9\x49\xa2\x1c\x3c\x5b\xad\x43\x47\xd2\x1c\xfe\xaa\x5d\xed\xa7\x5c\xfc\x86\xf5\xbb\xa7\x2c\xe1\x3d\x15\xc0\xad\xa4\x51\x68\xb1\xc5\x90\x13\x9f\x99\x29\xb4\xed\x3d\x55\xd7\xf9\x1f\x68\x1d\xa4\xed\xb9\xd9\x30\x2e\x2e\x56\xa7\x73\x9c\x66\xd1\x1b\xee\x7c\x09\xa3\x89\xaa\x9e\x5f\x54\xcc\xad\xcb\x36\xe5\x3a\x0a\xa7\x8a\xb4\xc3\x24\x6d\xf4\xaf\x74\x1c\x25\x03\x3b\x89\x8a\x71\xc7\xdb\x4b\x0c\xb8\xf0\x75\x2b\xef\x64\x61\xc9\x88\xce\x29\x1a\x13\xd4\xdd\x51\x2f\x78\xa8\x58\x62\x7f\xaa\xf1\x1f\x85\xdd\xe5\x85\xe3\x38\x77\x86\xdf\xdc\x49\x79\x12\xea\x94\xbb\x7a\xde\x00\xfc\x30\x50\xc4\xe8\x3f\x21\x27\x8d\x2a\xf4\x55\xad\x47\xcd\x7c\xb3\x64\x3f\x76\xbc\xd8\xf3\x5b\xe5\x1e\x25\x2d\x72\x04\x3a\xbf\xf1\x6b\x7e\xfe\x6f\x49\xe6\x2f\xee\xcd\x14\xf3\xf0\x99\x59\xe7\x2b\x0b\x4e\x29\xb2\x8a\x3d\x6a\xbc\x3c\x70\xbf\x57\xdb\xea\xd7\x36\xc9\xd2\x38\xb6\xf5\x29\xff\x77\xf4\x94\xff\x3b\xae\x8c\x92\x9b\xcc\x2c\x47\x35\x96\x72\x74\xfa\x9d\xe2\xd9\x97\x0f\x3d\x96\x55\xa1\xda\xac\x3c\x53\x41\x11\x09\xbe\xdd\xb1\x99\x12\x0b\x47\x64\x83\xac\x13\x9d\x3e\xfc\xe1\xb7\xeb\x61\x5c\x9a\x3d\xa1\xf8\x1d\xe1\xdb\xf1\x4b\xc7\x74\x0f\xe8\x78\xe0\xa5\x7c\x7e\x36\x6b\xd0\xc3\x28\x29\xa2\x05\x26\xd6\xa6\x56\xcd\xe2\xa3\xb7\xda\x28\x18\xf2\x34\xf3\x5e\x82\xc7\xf7\x15\x5e\xe8\xeb\x2e\xc1\x1b\x96\x59\x0a\x54\x07\xba\xac\xc0\x0b\xf1\x75\x3b\x0b\x55\x1e\xc5\xcb\x4c\x72\x8c\x08\x1b\x23\xe4\xc8\x23\xae\xa8\xe2\xd4\x89\xd9\x2f\x37\xf3\xc3\xc2\xc6\xc4\x39\x51\x26\x82\xcb\xe8\xe8\x65\xa4\x3f\xcb\x37\xea\x90\x67\xe4\xf4\xa8\xa4\xc5\xa5\x78\x15\x9c\xed\x5c\xf7\x8b\x7f\xbf\xd5\xff\x4d\x0c\xf9\x02\xf2\xb9\x42\xdb\xea\xfb\x3f\x7f\x18\x78\x28\x54\x62\x8b\x67\x55\xb1\xf0\x44\xa0\xb4\xdd\xcf\xe3\x7d\xc1\xf0\x7e\xa0\x06\x40\xe6\xd7\xab\x4d\x8f\x42\xf2\x87\x64\x64\xf0\xea\xfe\x5d\xe0\xb9\xdc\x4f\xd7\x12\x1c\xa6\x90\x63\x1e\x64\xbc\x6e\x9e\xc2\x98\x79\x6e\x88\xb7\x34\x04\x71\x5d\x51\x1b\x6f\x43\x79\x92\x1f\xab\x61\x3d\x96\x76\x57\x79\x71\x44\x12\xd3\xf4\x17\x44\xbd\xc6\x73\x8f\x6d\xd4\xd8\x9b\xed\x6a\xfe\xb4\xdf\x03\xcc\xe9\x28\xfc\x2d\xe4\xdb\xdd\x5f\x70\xe4\x50\x20\xad\xc7\x56\x3c\x85\x65\xe2\xc8\x1e\x81\x12\xca\x58\x0f\x02\xb5\x05\xdf\x9c\x29\x7c\xcb\x77\xea\x6c\x15\xd5\x4a\xe1\xe0\x33\xd8\x0a\xcf\xf2\xe7\x2a\xbc\x37\xa3\x51\x66\xf3\x3c\x5a\xb1\xf1\xda\xbc\x52\x63\x99\x29\x3a\x53\x90\xa1\x3a\x99\x16\x07\x0e\x7d\x53\xb5\xe1\xc2\xac\x8a\x7d\x51\xac\xc6\x1b\xb8\x1e\xf8\xb2\xf3\xf5\x46\x62\xb2\x70\xb0\xbb\x66\x13\x8e\x10\xf8\xb4\x62\xa3\xc2\xd4\xef\x5c\x77\x27\xeb\x5f\xed\xea\xf9\xda\x57\x3f\xed\xf7\xd7\xb6\xa9\xc5\xb8\x8c\x2a\x01\x8c\xfe\x47\xb4\x03\xb1\x39\x6e\x05\x8f\x53\xc5\xf1\x15\xb2\xcc\x7e\xad\xa4\x61\x92\x6d\x8a\x21\x15\x25\x67\xec\x16\x50\xa4\xa1\xd4\xc5\x52\xf1\xfc\x43\x9a\xe3\xfa\x52\x9b\xba\xd7\xaa\x59\x5b\xa5\xf2\xbd\xab\xb9\x5e\x57\xf4\x0d\xd7\x5b\x6a\x18\xdd\x69\x66\xa7\xc4\x0f\xee\xc7\x6e\xb8\x56\xc0\x37\xca\xff\x55\xc1\x78\x96\xa4\x69\xb2\x4d\x0d\x07\x32\x61\xaa\xde\x58\x92\xf6\xf9\x94\xfc\xaa\xde\x8a\xa7\x15\xc5\x9d\xe9\x67\x66\x82\xfa\x55\x8d\xe6\x88\x6f\xd4\x30\x80\x29\x62\xe2\x42\x50\xaa\x2b\x1b\xb5\x74\xeb\x3b\x38\x8b\x22\x64\x46\x4f\x25\x0a\x67\xf4\xbc\x4c\x9b\x85\x0f\x80\x5d\xb8\xab\xc0\xda\x44\xec\x10\x0d\x25\xe7\x14\x1e\x0a\xcf\xea\x79\xd9\x0d\x77\x4f\xb3\x74\x50\x86\xae\x78\x20\xce\xa7\x5a\x6a\xbe\x76\x01\xd0\xc4\x16\xe3\x94\x33\x18\x64\x3e\x70\x5e\x7c\xdd\xa8\x83\x54\x61\x5c\x62\xe2\x14\x99\xa0\x4b\xba\x7c\x02\xa6\x9b\xdc\x63\x03\x42\x27\x54\x65\x4e\xa1\xac\xc3\x37\x0d\x8c\xfc\xde\xca\x13\x7a\x7a\x7b\x5d\xe5\x87\x6f\x7a\x9c\x80\xe7\xc2\xc1\xae\xad\xb2\x3a\x1e\x30\xc4\x56\x3f\x3e\xf3\x0e\xf0\x26\x7d\x73\xa1\x22\x6c\xce\x34\xbd\xd6\x25\x71\x0d\x27\x3d\xfd\xbb\x7e\x1c\xfa\xbf\xff\xdd\xb6\xe6\xdb\x34\x8d\xa3\x22\x0a\x73\x5d\xfa\x3e\xa2\x94\xf5\x8f\xb4\x00\xde\x5f\xab\x2e\x58\x3f\x0d\xb1\xca\x33\xd4\x4a\xe0\xeb\x9e\x1f\x95\x4c\xa4\x45\x89\x64\xe0\x81\x56\xdd\x7e\xa0\x68\xa1\x56\xa3\x6c\x0d\xa8\x70\xa7\x8d\xe2\xc2\x2e\x04\x0a\x02\x5e\x97\x4e\x78\x3f\x4d\x97\x97\x41\x0b\x86\x70\x0f\x69\xc1\x79\x05\x45\xc3\x50\x30\x7e\xf1\x13\x35\x34\x12\x47\x7d\x9b\x41\xed\x0a\xc9\xf2\x31\x25\x12\x7f\x4c\x55\x7d\x4d\xdf\x24\x83\x14\x82\x4f\xae\x1d\x05\xb6\x03\xbe\x6e\xbc\x01\x42\x37\xd8\x62\xbe\x26\x43\x59\x7d\x17\x54\x9e\x6f\x04\x6a\x36\x19\x92\x90\x82\x1b\x69\x43\xb0\x0e\x4b\x1b\x4b\x5f\x14\x79\xdb\x45\x1c\x36\xbe\x69\xc4\x7b\x07\x5f\xe9\xf6\x63\x13\x2e\x4f\x4c\x04\x9d\x4a\x58\xb0\x7f\xa0\x4f\xe2\xeb\xd9\xe7\x55\xa5\x94\xa6\x5a\x22\x34\x53\xe7\x3c\x52\xfa\xb8\x9a\xdd\x39\xa2\x84\x00\xbe\xa1\x3a\x1a\x03\x62\xd3\x80\x41\x11\x52\x42\x3a\xef\x42\x57\xa8\x80\x52\x55\x04\x3a\xb2\xdb\x3c\x69\x10\xf4\xdf\xa5\x48\xa3\xf8\x1f\xe1\x81\x64\x02\xb7\xfa\x64\x04\xdc\xba\xc3\x3c\x89\x84\xdb\x4f\xe6\x13\xd4\x3c\xfe\x86\x0b\xd4\xc6\x76\x58\xac\xcd\xf9\x06\xe3\xb6\x1e\x1d\x5a\x67\x3e\x5d\xe6\x77\x6f\xf6\xa2\xa2\xbd\x33\x83\x08\x43\xef\x3b\xfc\xf0\x5e\xa7\x47\x7b\x0c\x69\xf7\x0d\x65\x55\x36\xf0\x42\xe1\x3d\xc1\x46\xa6\x14\xf1\x5e\x13\xa9\x2b\x58\x45\x99\x66\xdc\x1c\xe3\xb9\xe6\x74\x9a\xc0\x5d\xd3\xc8\xbd\xcf\x5b\x98\xc0\x96\x6f\xd6\x1f\xd7\xaf\x8f\xd3\x89\xc9\x75\x47\x5c\x73\xba\x6e\x28\x4e\xd7\xc1\xaa\xc9\x86\x08\x73\x50\x1c\x3d\xae\xc1\xde\xc7\xdb\xd4\x08\x62\x3b\x2c\x74\x5a\xf0\xa3\x99\x6f\x71\x5f\x53\x4c\x2d\x97\x95\xee\x4a\x3a\x9d\xa6\x59\x51\x26\x34\x08\xec\xe1\x8f\x3f\x0e\xfc\xa0\xe0\x8f\xdd\x90\xc7\xb4\xec\xc7\x51\x48\x3d\x7d\x7a\x30\xf8\x81\x1b\xf4\xb3\x7c\xed\x7f\x36\x36\x51\xe5\x3f\x86\x6c\xb5\xf0\x46\x91\xdd\xf1\x75\x5b\x7a\x38\x35\xa4\x11\xce\xbf\xc4\x9a\x56\x81\x6a\x6e\x9e\x57\x5d\xb8\x7e\x56\x86\x3c\x78\x84\x3a\x27\x26\xae\xf8\xba\xd1\xd4\x7c\x75\x37\x4a\x02\x85\xc2\x9c\x23\x01\xb9\xa2\x92\x91\x2b\x81\x3e\x13\x65\x12\x46\xcc\x2b\x20\x9a\x9f\x70\xb2\xcc\x85\x4d\xdf\x1d\xe7\xee\x07\x6a\xcb\xfd\x49\x1b\x2f\xe9\xd8\x24\x83\xb0\xac\x56\xc4\xa7\x06\x97\x74\x6a\x70\x49\x7d\x74\x3f\x25\xd1\xbb\x39\x55\x4a\x3a\xcf\x1f\x0d\xc7\x74\x57\x6b\x66\x9f\x55\xa5\xf0\x49\xba\x62\xb1\x86\xd5\xc7\x48\xe7\xa1\xa3\x98\xd0\x54\xc3\x31\x4d\xb0\xd2\x22\x74\x50\x25\x8f\x22\x80\x20\x19\xe7\xea\xd8\x66\xb6\xbf\x06\xdc\x9a\x08\x33\x13\x41\x36\x12\xe5\x39\x9c\x59\x21\x04\xaf\x0c\x08\xdc\xfe\x49\x37\xc9\x3a\x34\x87\xe9\x69\x98\x05\x9a\x9e\x46\x18\xa1\x9b\x02\x54\x04\x9a\x15\x60\x24\x42\x1f\x04\x6e\x7c\xed\xa2\x89\xa2\xcc\x12\xa9\xf6\xf2\xe0\x21\x25\xed\x32\x84\xd8\xd4\xf2\x7c\xad\x5b\x26\x79\x49\x9b\x5e\x76\x31\x4a\x73\xf7\x67\xbe\x9a\x77\xdf\x49\x2e\xae\x98\x5c\x70\xa6\xa2\xd4\xad\xf6\xe2\xe9\xc0\x1f\x24\x93\x85\xe3\xa8\xb0\x61\x51\x66\xb6\x53\xe3\xf8\xf4\x0f\x7e\x21\x78\x46\xd5\xc3\x6c\xfe\x82\x0f\x8f\xcf\x22\x86\x46\x21\x97\xc1\xeb\x42\xde\xe9\x47\x4c\xee\xa9\x20\xfa\x86\xe2\x63\x78\xe6\x79\xe6\x3e\x11\xfe\xd2\xea\x35\xc2\x4b\x3c\xd5\x53\xd4\x33\x73\x90\x9d\x63\x3d\x56\x42\x8a\x31\xe3\xba\x26\x56\x87\xd4\x1c\x0c\xcd\x1d\x64\x21\x02\xc1\xa9\x6c\x3d\x7a\x71\x77\x54\x05\xea\xce\xac\x73\x48\xc0\x0b\x7f\x4b\x2f\x40\xa6\x34\x69\x21\x44\x57\xf4\x19\x75\xae\x06\x60\x21\x56\xed\x6c\x19\xb8\x3f\xce\xe8\x30\xe9\x54\xab\x12\x50\xb6\xf6\xac\x87\x4f\xed\xe2\xaf\x8c\x25\xbb\x8d\xe7\x14\xce\x6a\x0f\xd8\x61\xdd\x2d\x7c\xe5\xcb\x9e\xf9\xf7\xb7\xff\xb3\x9e\x2a\xeb\x6d\x68\xe6\x06\x14\x0b\x68\xc5\xfe\xf5\x2f\x62\xf9\xd0\xb2\xfb\xf3\x99\xe2\x2c\x60\x12\x46\xf4\x8c\x3b\x80\xb8\x3b\xb7\xb2\x7f\xc9\x53\x06\x3c\xab\x80\xff\x71\x9c\x6f\xa3\x4a\xb8\x1b\x5a\x59\x94\x0d\x78\x13\xe1\xaa\x9b\x6c\x71\xf5\x8a\xf7\x67\x4a\x53\x7c\xa3\xad\x78\xd1\x1d\x9a\x15\xa7\x7e\x8b\x22\xd5\x43\xb8\x5b\xbe\x69\x9b\x3a\x3c\xd0\x1d\x98\x28\x46\x6d\x54\xb4\xe0\x3a\x8a\x5d\xa5\xa5\x36\x3a\xb1\x85\x95\x8f\xc1\x86\x3c\x3d\x53\x5d\xa6\xd3\x0d\xc8\xf6\xe2\x62\x9d\xbb\x57\x73\x5a\x73\x0d\x42\x98\x7c\x37\xdb\xcb\xea\x6b\x15\xe9\xc8\x16\x63\x9b\x75\x3c\xc2\xf0\x0f\xe9\xd5\xf2\xb5\xee\xcd\x54\xae\xc6\xe6\x3c\x1c\xee\xea\xd6\x4a\xb1\x5e\xa1\x32\xc2\x34\x29\x4c\x94\x60\xea\xfa\x65\x27\x6b\x50\xad\x84\x98\xf5\xcd\xdf\x64\xcf\x82\x28\xed\xd8\xa9\x83\xc4\x60\x97\x77\x7a\x3e\x84\xed\xac\x3b\x3a\x69\x1b\x96\xc4\xd1\x46\x2f\x0f\xe7\xe7\xfb\x33\xef\x84\xb7\xf6\x3c\xc6\xe5\xd3\x46\x88\xba\x70\xb0\xdb\x4f\x07\x20\xb0\x16\x94\x3f\xed\x50\x84\xab\x3f\x57\x19\xc6\x51\x45\x1b\xbe\x66\xf3\x27\x7d\x48\x72\x7f\xa6\x14\xbe\x59\x10\x83\x7e\xff\xff\xfe\x85\x9e\x82\x5f\x5f\x50\xdc\x11\x2f\x92\x8a\xb8\x28\xa5\xd0\x5a\x22\xcc\x3b\x42\x05\x50\xfc\x29\x5d\x84\xbf\xdf\x16\x88\x7c\xe1\x57\x7f\x85\x07\x75\xe1\x07\xae\xa9\xe1\xdc\x0b\x84\x3b\x42\x6f\xeb\x5d\x95\x5d\x4c\x4d\x31\xa6\x6a\x37\xe6\x79\x59\x60\x8e\x6f\x66\x9e\x58\xe6\x02\x0e\xba\xec\xd8\x96\x6d\xf3\xcb\xdd\x91\x4d\x6c\xc6\xd1\x99\x70\x62\xf8\xef\xf8\xfb\x8a\x41\x2b\x34\x65\x6e\x69\x84\x4a\x6c\xdc\x45\x2c\x9a\x94\x99\xab\x9d\x27\xb3\x37\xbe\xb1\xb1\xb5\xe7\xd7\x7c\x79\xad\xdc\xe6\xe9\x0c\xce\xea\x81\xd7\x4f\x03\xc5\x4c\xfa\x0f\xb4\xcc\xe8\xd7\xff\x98\x16\x41\x60\xb2\x4a\x4e\xd1\x8e\xa4\x9b\x82\xc1\x81\xb3\x81\x92\x26\x3b\xab\x0a\x05\x63\xb3\x12\x25\x23\x4a\xfe\x85\x89\xae\xc6\xd8\x5b\xfd\x16\xfa\x74\xc7\xf5\x24\x14\x46\x42\x04\x54\xee\xfb\x27\x17\x14\x7e\x25\x9a\x4c\xd3\xdc\xea\xf7\x77\x51\x55\x3f\xc1\x9e\x83\x77\x79\xa6\x15\x85\x69\xad\xe0\xc6\x85\x8f\xb1\xe3\xa8\xfd\xcf\x2b\x14\x41\x66\xa9\x68\x20\xa5\x52\x09\xbc\x7d\x68\xf0\xc9\x4c\x2b\xf0\x18\xe7\xb0\x45\xdc\xc8\x0f\xf9\x9d\x57\xbc\x9d\x79\x39\x1a\xd9\xbc\x90\x84\x10\xe8\x32\x40\x66\xf8\xda\x25\x1f\x26\x9a\xd8\x01\x01\x06\x24\x1d\xf2\x13\x73\xd7\x61\x3c\x10\xf4\xb1\x22\x02\xea\x62\xff\xa4\xe7\x11\x12\x0f\x66\x4a\xb6\xe2\x78\x5b\xc9\xba\x48\xcb\x2c\xca\x0b\x25\xdd\x7b\x5b\x49\xf7\xde\x06\x8a\x4f\x5a\x91\xe8\xd9\xa3\x0e\x0f\xc0\x0e\xfa\xd6\x60\x67\x94\x84\x92\x3e\x52\x48\x8f\x9b\xf3\x2b\xdd\xc4\x8e\xd2\x22\x32\x05\x57\xc0\x59\xca\xbb\x26\xeb\xed\xb7\x5c\x3a\x1c\x46\xa1\xdd\x49\x27\x00\x01\x07\x86\xa7\x10\x17\x40\xcd\x12\x09\xd2\x96\x75\x55\x1c\xbf\xa5\xbf\xf8\x1d\xc5\x4b\xf2\x7c\x4f\x09\x47\xbf\x89\x0e\xaa\xab\xf8\x7f\xe9\x37\x3d\x43\xc0\xbe\x7d\x75\x55\x22\xfc\xfa\x96\xc6\x14\xeb\xe2\x62\x77\xc5\x16\xa9\xbc\x7c\x6e\xda\xa8\x1a\x68\x5b\x1b\x6f\x7f\x37\x8b\x56\x6c\x36\xa7\x68\xea\x8e\xe2\x89\x71\x00\xaf\x05\x9a\x2b\xee\x44\xb3\x71\xbe\xa7\x1b\x9a\xbc\x34\x71\xb1\xa6\x36\xe7\x79\xb5\x39\x9b\x9f\xba\x67\xa1\x6b\xa6\x91\x0d\x2d\x81\xc7\x51\xf4\x7d\x7a\xdd\xfb\x06\xc0\xd6\x51\xd4\x7c\x06\x95\x6e\x2c\xdf\x79\x75\xf8\x12\x52\x7a\x26\xd2\x1f\xc4\x56\x3c\x7b\x8f\x82\xf4\xc7\xb0\x8a\x22\x3b\x56\x9d\x7e\x19\xaa\xf6\x6e\xf1\x8e\x1a\xa7\x39\xd1\x42\xff\x99\x59\x13\x8e\x5d\x02\x04\xcc\xe2\xb7\x03\x8f\x5f\xfc\xf6\x6c\xa7\x4f\x0f\xb3\xcf\xd1\x27\xe2\x3b\xdf\xa2\x88\x11\xce\xe5\xe3\xc0\xd3\x9f\xdc\x87\x4d\x66\x2c\x12\xb0\x58\x08\xcb\x80\x0e\xc4\xae\xdb\xba\xae\x4e\xd4\xfd\x40\x75\x8f\xbe\xa3\xe6\x47\xe7\x68\x2e\x49\x58\x57\x28\x90\x42\xbc\x05\x03\x07\xc3\xfa\x03\x2c\x0a\xfe\x14\xcd\x5c\x1e\x78\x74\x05\x10\x03\xac\xc7\x83\x40\x37\xbe\xaf\x6b\x6e\xa8\xdb\xb3\xce\x17\xbe\xc0\x81\xe2\x5d\x55\xc8\xe8\x10\x15\x2d\x8a\x0d\x27\xc9\x3e\xa3\x25\xb3\x05\xd9\x8d\xf0\x15\xf9\x7a\x3b\x97\x8a\xb1\x2d\xd1\x72\x01\xd5\x08\x5f\x2b\xa2\x1c\x7b\x78\x1c\xf5\xa3\xa2\xa3\x4d\xa7\x4f\x0b\xce\xd4\xca\xe1\x85\x89\x62\x9b\x91\x4f\x92\xba\x2f\xf7\x2b\xf1\x77\x3f\x50\xd5\x4f\x9e\xf5\x92\x19\xd2\xe7\xdd\x94\x6c\x95\xa6\x17\xae\xec\x06\xdb\x8f\x49\x27\x18\x17\x58\x71\xe4\xaa\xef\xd4\x1a\x7b\xc5\x98\xf8\xb4\x65\xea\x4d\xcf\x5d\x70\x08\x02\x34\x2c\xa2\x06\xe9\xe1\xa8\x69\x8a\x77\x68\xed\x58\xfe\xb2\xb1\xfd\xf6\xec\xe9\x96\x99\x2d\xc6\x99\xa1\xc5\x40\xb8\x75\x43\x85\x5e\x37\x1a\x3e\x65\xdf\xbe\x6e\x61\xfa\x69\x8a\xe0\x51\xeb\xea\x4b\x67\x41\xd1\x2f\xc6\x66\xad\xf2\x8b\xb4\x5e\xcc\x90\xa3\xa6\x15\xb9\xc6\xc3\x6b\x10\xd4\xa4\x94\x9d\x88\xe9\x4f\x14\xfc\xe7\x4e\x4b\x76\xda\xcd\x52\x33\x58\x35\x6b\x73\xbe\xd5\x76\x47\x85\xeb\x38\x8a\xe2\xdb\x5b\x0c\xcb\xc0\x4e\x2b\xe3\xc4\xf6\x0c\xb1\xd6\x5d\xac\x20\xdf\x3c\x76\xda\x23\xb3\xd3\xfc\x25\x85\x54\x3a\xaa\xd5\x75\x8e\xb6\x30\x80\x90\x1d\x34\xc2\xf9\x83\xc4\xe9\x96\xce\xf5\x9a\x42\x9a\x7b\xf6\x74\x33\x54\x60\x54\x78\x1e\xe8\xc0\xdd\xa5\xdf\xa3\x68\x85\x78\xf6\xaa\x1f\x04\xbf\x09\xf3\xa8\xc9\xcc\xa9\x1f\x6e\x78\xa0\x20\x26\x61\x9a\x4f\x6c\x11\x85\x14\xdd\x32\xcd\x3c\x5e\x0c\xda\xf3\x97\x54\x56\x74\xb7\xf1\x7c\x7b\x17\xbb\x43\x6b\x32\x26\x28\x11\x61\x3a\x6a\x05\xe1\x86\x5f\x32\x12\xbb\xab\x4a\xca\x23\x37\x43\x5b\x00\x55\x2b\x23\xee\xe4\x1f\xd4\xf0\xbb\x0c\xa7\xfc\x54\x71\x55\xfe\xb4\x8d\x4e\x26\x8c\x69\x58\x5f\x31\xc2\xf2\xc0\x87\x88\xd4\x3c\xa7\x59\x6f\x46\x69\x01\x6b\xdb\x56\x13\x68\x91\x75\x58\x4d\xb3\x65\x7e\x67\x38\xdb\x98\x54\xe0\x6b\xe5\xbd\x87\x59\x64\x93\x01\xe9\x6f\x4b\x86\x4b\x4f\x21\xf8\xbb\x8e\x12\xba\x51\xc8\xf0\xcb\xc8\xbd\x84\xf9\x6d\x73\x08\xbf\x77\xb1\xdb\x8f\x96\x91\xe3\x70\x68\x43\x9f\x2f\x61\xce\xe6\x9f\xff\xca\x02\xd1\x00\x53\x1f\xdb\x95\x35\x2b\x63\x0c\x53\xf1\x29\x32\x5b\x99\xc4\xdb\xc4\x7c\xbf\x70\xb0\x7b\x68\x69\xf7\x33\x1e\x9d\xc1\x72\xb5\xd8\x43\xdf\xa3\xd3\x04\x8a\x96\x9f\x90\x01\x43\x5a\xff\xde\xac\x46\x23\x50\x99\x1c\x98\x71\x76\x2c\x42\x36\x49\xdf\x53\xc8\x13\xe1\x13\x10\xe5\x5c\xd4\x43\xe5\xeb\xaa\x8c\xf7\x0d\x6c\x1f\x46\x46\x04\x8a\xc8\xe7\x4a\xad\xb9\x1c\x95\x13\xb4\xd4\x9d\x9a\x59\xe5\xab\x78\xe8\x05\x7f\x03\x65\xa8\xb3\x64\x5b\x84\x04\xa3\xf2\x87\x6e\x94\xc8\xa9\x29\x1e\x09\x74\xaa\x8a\x47\x13\xc0\x51\xb5\xaa\x28\x86\x9c\xc0\xaa\x0a\xb9\x86\x9a\x44\x9a\xf9\xee\xd8\x6d\x08\xa2\xc1\x36\x6e\x5b\x57\xd4\xc4\x4d\x86\x90\x7d\xfb\xba\xc3\xb2\x20\x75\x35\x3d\xbe\xe3\xd3\xb0\x9b\xea\x28\xde\xc6\x5a\x20\x4e\x3b\xab\xd2\xe9\x69\x1a\x83\xda\x19\xb9\xae\x84\x5b\xbe\x6d\x7b\x31\xf0\x05\xa5\xf7\x5b\xba\xae\x2f\x77\x87\x65\x56\x25\xfa\xdb\xe8\xcd\x23\xbc\x39\xae\x1a\x5c\x7f\x81\x2f\x8e\x8a\x16\xc8\xfb\xe0\xd3\x1e\xd0\x7a\xc2\xd8\x5e\x68\x98\xcd\x3d\x7b\xba\xe9\x8a\xcd\xfa\x69\x39\x1a\x17\xf3\xbe\xa5\xfc\x97\x04\xd4\x11\x71\xa5\xea\xd9\x6a\x42\xae\xc8\xf1\x9a\xdc\xd2\x0b\x07\xbb\xa6\x9f\x96\x45\xc7\x53\x79\x61\x44\x92\xaf\x15\x61\xf2\x2f\xfd\xd6\x97\xfe\xcd\xd2\xae\xea\x2f\xa3\x45\xfe\x48\x11\x52\xde\x53\x88\x95\x1d\x3d\x55\xa6\xb9\x40\x8f\x25\xbc\x47\xd5\x17\xc3\xf6\xbe\x5b\xc3\x58\x3c\xa4\x20\x0c\xae\xea\x1e\x1e\x58\xb0\x48\x95\x65\xc3\xf1\xfb\x1e\x36\x20\x40\x91\xef\x6b\xc5\x1f\xc6\xd0\x33\xb7\x28\x0c\x20\x3c\x2f\xde\x3b\x8e\xdd\x3c\x11\x2b\xc0\x4f\x3e\xd9\x7b\xc6\xf5\x79\xcd\x1a\xcf\x07\xd4\x84\x3d\x98\x01\x42\xd1\xce\x9f\x09\x5e\x54\x0d\xac\x61\x5c\xda\xa4\x88\x4c\x3c\x4f\xaf\x11\x67\xf3\x67\xb0\x0a\x7c\x83\xe3\xac\x84\x01\xdd\x8d\x6a\xf0\xc6\xe9\x28\xed\x68\xd3\xa9\xcb\x0a\xc2\x77\x6b\xe2\x38\x0d\x7d\xb2\xc8\x65\x44\xfa\x51\x29\x29\xaa\xfe\x18\x11\xb3\xe6\xdb\x3b\x8e\xd2\xea\x1a\x4e\x22\x4f\xad\x06\x8a\x77\xf6\x0c\xe4\xba\xb0\xd8\x7f\xa7\x28\x6d\xaf\xc1\xca\xf0\x7f\xb4\x59\xc7\x15\x9b\xad\x75\x94\x60\xd0\xcc\xeb\x99\xb6\xf2\x76\x41\x73\x88\x5d\xb0\x9b\x14\xaf\xde\xa8\xc8\x62\xf8\x99\x72\xe2\xba\xed\xa8\x42\xc0\x4c\x91\xf6\x5e\x50\x41\xe8\xc0\x86\x71\x94\xd8\x1d\xd5\x67\x23\xd0\x40\x0d\xca\x8d\x8d\x56\x5f\x15\x09\xff\x51\xbc\x1b\x01\x7e\xd1\x1f\x74\x6c\xb4\x4a\xbc\xba\xfa\x54\xd9\x49\xbe\xf0\x45\xc4\x7d\x32\x94\x8a\xd2\xc5\x96\x9e\xd2\x45\xa3\x44\x52\x0a\x7a\xfb\xdb\x8e\xd9\xd8\xda\xb8\xe6\xff\x2e\x29\x98\x7c\x53\x08\x69\xcf\x1e\xad\x25\x86\x03\x74\x1b\x21\x0b\xdf\xb4\xb8\xf0\xfd\xdd\x58\x28\x1e\x5e\x73\x24\xf9\xca\x0c\x9e\x9c\xbd\xe8\x2d\x5c\x96\x4e\xb3\xc8\x92\x66\x00\x1d\x1f\x58\xc7\x73\x8a\x80\xee\x5c\x8d\x59\x30\x9d\x4c\x0b\xae\xad\xb6\x92\xc6\x35\x51\x9a\x07\x68\x56\x2c\xb3\x68\xfa\xf8\xc8\xf0\x3d\xd5\xf7\xbe\x5a\x17\x94\xfa\x8c\x3a\x62\x61\x66\x4d\x6e\xb1\x91\xe1\x2d\x99\xb2\x0c\xd5\x46\x1e\x71\x91\x91\x37\xfa\xfb\xf8\xb1\xe3\x4a\x47\x1a\x19\x25\xec\x77\x53\xa6\x97\x02\xc3\xdc\xc6\x68\x5a\xb3\xf8\x3f\xf6\x06\xdf\xa8\x4a\xa4\x35\x83\x67\xe9\xf3\xe1\x6d\xb7\x83\xf5\x07\x6d\x62\x88\x91\xc0\xbd\x6d\x59\xaf\x5c\xb7\xc2\x4d\x73\xe1\xff\xc1\x0b\xeb\x4a\x85\x03\x08\x4f\x49\x63\xc8\x88\x20\xbf\xe6\x4e\x09\xaa\x40\x3b\x91\xa9\x49\x65\x44\xcd\xf4\xee\xa0\x34\x1c\x9f\xf8\x99\x9e\x6f\x8b\x5d\xd7\xd0\x9e\x6d\x3d\x7f\xa8\xa6\xb1\x49\x8a\x67\xb0\x83\x85\xb9\xcf\x0f\x32\x7d\xaa\x25\x39\xae\xe0\xf4\xb3\x1a\x03\x76\x10\x0a\x4d\xd0\xf6\x07\x96\xee\x23\x32\xce\x7c\x0d\x7b\x8c\x1f\xba\x42\x1e\x0c\x0e\x1a\xd0\x4b\xb4\x21\x29\x8d\x96\xfc\xe2\x01\x82\x1a\x69\x15\xf9\xfa\xcc\x5b\xaa\x1b\x9a\xa7\x49\x02\x49\x0b\x21\x9e\xe8\x38\x6a\x95\x0f\x95\x3d\x16\x58\x34\x21\x7b\xdc\xa0\xdc\x43\x35\x28\xf7\x50\x65\xb9\xe5\x72\x66\xa2\xc4\x2a\x03\x73\x62\xa6\x7c\xd6\x09\x35\x9e\x60\x0f\x4f\x6d\x58\xe4\x4f\x28\x64\xf9\xd1\xc0\xcb\xd3\xf1\xec\x0e\x73\x00\x28\xba\xbb\x37\xb1\x39\xd1\x63\x61\x19\x66\x98\x9e\x73\x8a\xef\xfd\x3a\x76\x07\xff\x47\x0b\xb2\xf5\xb5\xee\x30\x0d\xcb\x5c\x0c\x3f\x03\x23\x70\x64\x04\x25\xe1\x57\x81\x38\x1a\x22\xaa\x3f\x92\xb0\x01\x12\x44\x54\x3a\x45\x75\xaf\xe3\x84\x26\xce\xaa\xad\xfd\xa5\xfd\xa2\xd4\xe7\x26\x6c\x1d\xbf\x23\xb7\x07\x11\x58\x5f\x6d\x61\x3c\x7b\xad\x32\x0e\x43\xd6\x6c\x83\x3f\xba\xaa\x7c\xd3\xd5\xd9\xe7\xb4\xf0\x9c\xcd\x86\x56\x4a\xa4\xaf\x2a\x70\x8b\xeb\xcd\x9f\x54\xdd\x25\x53\x99\x00\xc2\x43\xb8\xd3\xec\x6b\x4f\x9a\x5a\x87\x0b\xfb\x38\x8c\xf7\xb0\xb5\xf8\x57\x02\x3f\x09\x01\xa8\x97\x8c\xce\xb5\x44\x8e\x03\x33\x31\x23\x3b\xa7\xca\xf1\x1b\x0a\x7d\x7a\x2f\xf0\xbc\xbe\xa7\x14\x8d\xc6\xea\x38\x05\xfe\xdb\x17\x16\x3f\x9a\x79\xbe\x47\x00\x59\xc4\xe8\xbf\xa0\x8b\x2d\x2c\x35\x34\xaf\x98\x88\x78\xec\xc2\xa1\xba\x3d\xf9\x19\x5c\x2c\x5f\x2b\x2a\x97\xa9\xc9\xcc\x24\x2d\x93\xa2\x36\x90\xfb\xa1\x1e\xc8\xfd\x50\xbd\xeb\x74\x95\x63\x16\xb4\xd9\xd1\x23\xc2\xc7\xed\xa0\x9a\xac\x10\xe5\x54\x9f\x86\x00\xf7\x13\x55\xcd\x03\x5c\x75\xce\xe7\x6e\x9d\x75\x35\x70\xb5\x85\x00\x96\x28\x8c\x3f\xef\x82\xac\xcc\x8c\x46\x70\x01\x0b\x8e\x18\x60\xce\x6b\xb0\xdf\x52\x95\x8f\xb9\x06\x69\xe9\xc2\xc1\xae\x9d\xf4\x4d\x96\x99\xdc\x1d\x04\xf8\xd9\xb3\xaa\xc6\x76\xd6\x13\xe5\x8f\x33\x4b\xba\x86\xfb\x25\x5f\x26\x17\x00\xab\x79\x7c\xa6\x8b\x68\x70\x76\xd8\x4e\x0f\x28\xe1\x42\x09\xfc\x9f\xf6\x94\x6d\x3a\x3a\xd3\x8b\xa2\xa4\x7b\x23\x37\x58\x8d\x6d\x07\xc0\x38\x5f\xab\x84\xb6\x6f\x0a\x63\x98\x42\x5b\x98\x66\xaa\x9d\x22\xfc\x20\xb5\x52\x55\x9a\x92\xfa\xa5\xb4\x33\x68\x27\x02\x3b\xfd\x51\xe0\x2b\xd2\x6c\x49\x11\x4e\x5e\xc7\x76\x47\x1e\x80\xa7\x45\x4b\x6c\x17\x35\xb5\x90\xe9\xb0\xeb\xe4\x72\x2a\x7d\x3e\xe2\xae\xfb\x7a\xb2\x5e\xc7\x91\xd1\x64\x5a\xad\x78\xc7\xe3\x88\xeb\xf5\xf6\x16\xf6\x99\x49\x94\xc7\x96\x04\x81\x71\x84\x04\xf5\xeb\xdd\xf1\x15\xc5\x53\xfd\xc3\xc7\x72\xfc\x4e\xb3\xb4\xef\xaa\xb9\x6d\x63\xf1\x4f\x6b\x4e\x79\xda\x8b\xc8\x94\x39\xb8\x45\xa5\xfe\xda\xcc\x8f\x41\xfe\x4c\xf3\xee\xda\xc3\x45\x44\xac\x8e\x4b\xe2\xb1\xc0\x5e\xe6\x15\x87\x5c\x2d\x22\x32\x05\x1b\x46\xf9\xda\xd5\x12\xb0\xcd\x09\x3c\x73\xfe\xd7\xd5\x01\xdb\x7b\xe0\xd7\xe6\xea\xfd\x7e\x3f\xf8\xf3\x40\x57\xbb\xcf\x37\x26\x57\x0f\x2d\x1c\xec\xe6\xe9\x74\x1c\xe5\x45\x84\x80\xdf\x63\x1d\x8f\x6a\x32\xea\xa3\xae\x60\x65\xb2\xd0\x24\xba\x77\xfb\x48\xd9\xc8\x47\xda\x4c\x64\xe9\xd0\xe2\x08\x1d\x72\x92\x89\xef\x10\xcc\x81\xaf\x9b\x02\x7e\xaf\x75\xbf\xf4\x9b\x3b\xc9\x58\x68\x6e\x50\x46\x01\x10\x70\x43\x10\x32\xb4\x89\xe0\x98\x31\x25\x2f\x93\x8a\x8a\xf3\x10\xca\x77\x58\xe5\xe3\x50\xe0\x44\x79\xfe\x1c\x6a\x37\x28\x4e\x33\xec\x41\xcf\x16\x32\x44\xaf\x91\x66\x2f\x1c\xec\x86\x36\x8e\xcb\xd8\x64\xba\x92\x7a\x52\xd9\x93\x93\x6a\x62\x60\x62\x92\x79\xcf\x0f\x72\x5e\xd5\x44\x4f\x2a\xa5\xed\x8b\xb4\xcb\x61\xc2\x4e\xbb\x14\xc0\x4c\xa7\x26\x2b\xca\x9c\x6c\xbc\x6b\xe1\x3a\xa1\xeb\x7b\x5a\xc1\xf9\x8c\x02\x78\x64\x13\x53\x43\x2a\xfa\xae\xa3\x9f\xa0\xca\x29\x99\xdf\x41\x5b\x97\x0a\x1e\xff\xf2\x85\x9e\x52\x68\x38\x31\xf3\x9d\x32\x1e\xce\x91\xe9\x56\x5f\x48\xba\xac\x88\xb9\x9f\x45\x57\x02\x91\xd9\x53\xbd\x17\x54\x95\x32\x19\x02\xe7\x07\x7c\x11\x1a\x76\x77\x03\x35\xf1\x7c\x57\x61\x12\xf3\x22\x9a\x94\xb1\x11\xb1\x27\xa1\x81\x81\x58\x09\x5f\x07\x02\x87\x5a\xb3\xf9\x0e\x45\xc3\x7d\x4f\x97\xa5\x3b\xeb\x9d\x5f\x17\xb8\xdc\x3b\xf4\xdb\xee\x0b\xb8\xb8\xf5\x26\x75\xe3\xe9\xdf\x3f\xfb\x42\xcf\x8f\x23\x3d\x6a\xc1\xbc\x2d\x74\x57\x6d\x1c\x47\xc9\xa8\x48\x31\x15\xee\x68\xa6\xaa\x07\x90\x24\x54\x85\x11\x83\x49\x84\x12\x87\x03\xd3\x38\x91\x96\x0d\xd7\x62\xa0\x64\x65\x58\xe5\x2b\xa8\xc3\xe2\x2d\x43\xdb\x53\x7d\xc0\x81\x86\xc0\x68\x56\xc6\x40\xb5\xf9\x13\x4f\xef\x12\x30\xd3\x3f\x9c\xa9\x7e\xf7\x15\x15\x5b\xc6\xa6\x1c\x8d\xeb\x1e\xed\x75\xcd\x3f\xfc\x7a\xa3\x88\xf9\xc5\xae\x29\x07\x11\x98\x6b\x85\xc0\xa3\xa3\x88\x3d\xb4\x27\xc9\x97\x23\xe4\x81\xa2\xb7\x45\x7f\x59\x0c\x8f\x37\xf3\xc3\xa8\x5a\x48\xe8\xc9\x8a\xa0\x70\xf5\x55\x1e\x5d\x51\xf2\x71\xe0\xee\x11\xf8\x7e\x2d\x2b\x8c\xa3\x61\x14\x82\x43\x96\x8f\x2c\x4a\x1d\x72\x7e\x9b\xa5\x80\x03\xdd\x3c\xcc\xac\xc5\x9b\x43\x46\x88\x39\x7b\xbe\x76\x20\xbd\x34\x19\xa5\xce\x97\x60\x5b\x21\xeb\x41\x54\xf2\x3c\x65\x3d\xf0\xe4\xb7\x5b\x10\xd1\xdd\x32\x67\x1a\x5c\xf8\xfe\x7f\xab\x0a\x56\xff\x56\xc1\xf8\x50\x46\x43\x23\xfc\x49\x24\xf5\x30\x5e\x90\x6f\x15\x96\xac\xea\x97\x61\xa1\xde\x56\xb9\x44\x51\x66\x93\x34\x8a\xe7\x55\x37\x0e\xe2\xcc\xc2\xdb\x53\xad\xab\xab\x59\x55\x87\x08\xb5\x6b\x3f\x9c\x38\x28\xfb\x51\x5a\x22\x6f\x71\x22\x95\x5e\xb0\xb2\x36\xfe\x4a\x94\xea\x8e\x42\x8b\xa5\x73\x04\xe4\xd1\x0a\xb8\x49\x27\x1d\xdf\x88\x82\x69\x93\xd2\x98\xec\xfb\xd5\x68\x60\xf3\x69\x66\x0d\xab\xf6\x39\x02\x5c\x87\xe6\x7f\xa8\x0a\x9f\xbb\x10\x7a\x08\xc0\xa8\xfa\x4a\x8f\xce\x7a\x00\xf2\x4a\xb7\xd7\x22\xcd\x55\x64\x00\x44\x0b\xde\xb5\xfa\xd3\x78\x71\x0f\xd5\xf4\x4a\x1b\xc9\xfd\x42\x77\x90\x99\x55\xa8\x67\x21\x1f\xb9\xac\x43\xc7\x3b\x8a\x85\xfb\x78\x2b\x47\x52\x61\x0e\x03\x77\xe9\xe2\x52\x24\x11\xa2\xaf\xe4\x4f\x02\xbf\xca\x39\x0f\x02\x3c\x1f\xf8\xc6\xed\x25\x35\x3a\xf7\x97\x55\xea\xe9\xa2\x89\xc9\x34\xcd\x4c\x16\xc5\x6b\x3b\xe8\xfd\xe2\xa0\x63\xa9\x11\xf4\x00\x71\x80\x5f\x1d\xc3\x80\xf3\x0f\x51\x96\xa0\xc6\x2e\x17\x9c\xea\x05\x7d\x47\x01\xa6\xfa\x19\x82\x71\x99\x8c\xb2\x35\x8a\x5c\x5c\xdd\x6d\xaf\x5b\xbf\xe0\x85\xba\x03\x3f\xf8\x4a\x77\xcf\x9e\x27\xc8\x03\x63\x7b\xbf\x87\x7c\x02\xe9\xf8\xbb\x2a\xe9\xea\xac\xab\x31\x35\x6e\x8a\xe2\x04\xa3\x87\xec\xdc\xbf\x2e\xfb\xbb\x95\xff\xf3\xa6\x8a\xe2\x6e\xea\xa4\xd1\xa6\x86\x55\xd9\x02\x29\x76\xbe\x69\xdb\x24\xe3\x14\x29\x39\xda\x97\xd7\x11\x29\xf1\x8d\x62\xd1\x70\xd4\x1e\x79\x47\x8f\xb4\x74\x1c\x89\x95\x0e\x62\xfb\x59\x64\x87\xf1\x1a\x4d\x7e\xa3\xb6\x71\x0b\xf5\x61\xbe\x69\x08\xc6\x10\x23\xeb\x64\x0a\xf7\x82\x00\xd4\x41\xca\x1c\x9d\xce\x05\x15\xed\x1d\x4c\xd3\x79\x45\xc4\xf9\x2e\xb9\x31\x94\x75\x30\x20\x88\x5f\xd9\x0a\x78\x1a\x9c\xf5\xb5\x46\xf0\xfc\xea\xee\x97\xbb\x49\x9a\x15\x63\x6b\xf2\x82\x76\xa0\xf0\x9b\x56\x7f\x02\x8e\x84\x3b\xa3\x88\x31\xf4\xa6\x48\xb3\xc2\x8e\xcc\x13\x1e\x3a\x21\x24\x15\xdc\x7b\x84\xe9\x47\x74\xf3\x63\x54\x97\x9c\xc0\x6b\xb5\x16\x1c\xf7\xa8\xa6\xf2\x35\xda\x55\x12\x0f\xd1\xc7\xca\x58\xeb\xe6\x37\xbd\x67\xa1\x3b\x8e\x46\xe3\x39\x1f\x80\x02\x6b\x0a\x03\x31\x8f\xe4\x10\xc6\xf0\x5a\x83\xdb\xbf\xfa\xda\x83\xa8\x72\x07\x83\x48\xa2\x5d\x09\x13\xd4\xcc\xd9\x3b\xc1\xe6\xed\x52\x9d\xec\x3c\x25\xab\xe0\x98\x96\x5d\x37\x0f\x04\x42\xf8\x26\xef\xb6\xc9\x36\x8d\xd3\xbc\x30\x23\xc1\x6e\xb2\x74\x21\xed\x67\x91\x31\xf4\xa0\x66\x13\x9b\x97\x3a\x3e\xce\x62\x5e\x3d\xbe\x69\x6d\x4f\xe7\x85\xcd\x6c\x4a\x88\x19\x14\x27\x31\x0b\x8e\x64\xf4\x09\xe4\x61\x4c\xc8\x8a\x78\x42\x7a\x3d\x2d\x3d\xd9\x69\x9a\x66\x96\x83\x5b\x06\xae\xa1\x95\x28\x28\x36\xa7\xd4\x62\xcd\x8a\x85\xca\x39\x06\xd0\x2f\x05\x3e\x86\x3a\xab\x4d\xe6\xdf\x29\xd6\x87\x24\x2d\x9c\x71\x74\x7c\x57\x8a\xc9\x5f\x0d\xe7\x4d\xc2\xd8\x26\x89\x49\x3a\x35\x54\x36\x56\x43\x20\xda\x1e\xb1\x66\x68\x6c\xb8\x88\x04\x8b\xcf\xfa\x83\x2a\xfb\x3b\xad\x32\x64\x13\xc7\x76\x2d\xef\x54\xc6\x56\xbc\x1e\x6d\x4c\x71\x87\x2d\xf0\x89\x49\x3a\xb0\xf1\x9c\xf7\x99\x5c\x8c\x66\xaf\xab\xf4\x3c\x9a\x63\x25\x7b\x17\xbb\xb1\xd8\x26\x19\x17\xf6\x3f\x7f\xbe\x25\x62\xe9\x0e\x2c\xb1\xd9\x2b\xc4\xdb\x25\x85\x78\xbb\xa4\xe2\xfd\xbd\xaf\x2c\x20\xb6\x46\x03\xad\xb3\xee\x07\x28\x3a\x3d\x3f\x67\x19\x66\x36\x0f\x6d\x32\x48\x55\x11\xf2\x8c\xee\x72\x9c\x51\x09\x6b\x99\x44\xc3\x28\xcb\x11\xc1\x32\xc0\x2c\x50\xb5\xf7\x8d\xca\xf5\x3b\x49\x81\x3c\x8f\xfa\x51\x1c\x15\x32\xe5\x08\x9f\x0b\x1f\xc4\xd7\x75\x01\x92\x72\x42\xb2\x4f\xf0\xae\xdf\x41\x5b\x92\x91\x0a\x54\xe1\xe5\xff\x08\x94\xc2\x0f\x0d\x55\x4a\x8d\x36\x8c\x30\x55\x19\x6e\xc7\xd6\x10\x72\xca\x8e\x23\x76\x7a\x82\xc2\x47\xd4\x3b\x18\x63\x8e\x32\x19\x93\x65\xb0\xdb\xa9\xd1\xec\xb4\xcd\xa5\x2d\x47\x03\xe1\x2a\x77\x2f\xce\xbf\xc4\x26\xde\xfa\x95\x03\xdd\xd1\x5a\xa6\x58\x58\x98\x9b\x21\xe8\x28\x4d\xae\xcf\x6a\xa2\x54\x47\xc5\xfd\x14\x9d\x18\x0c\x70\x5d\xa2\x30\x40\xc8\x02\xc1\xa5\xe5\xe8\x18\x7c\x53\xfc\x23\xb4\xcb\x1d\x45\xe5\xd2\x6e\xee\x84\x5f\x57\xc3\x07\x97\xbd\x52\xee\xbf\xfe\x6c\xcf\xc3\x67\x3f\x03\xf7\x28\x39\x49\x9b\xa0\x42\x98\x26\x2b\x36\xa9\x16\x9b\xb6\xae\x56\x0b\xe0\x6b\xd5\xde\x89\x32\x82\x72\x99\xbe\x0c\x96\x33\x73\x3c\x2d\x98\xb0\xc8\x3f\x0e\x93\xb3\x66\x4d\x56\x03\xb6\xc3\xbd\x8a\x85\xf0\x3b\xd3\x24\x49\x5a\x26\xa1\x9d\x57\x7a\xef\x3b\x10\x42\x3b\x1a\xee\x45\xc5\xb7\xeb\x99\xfe\x9b\xdc\xb2\x24\xe5\x9b\xe6\xc5\x1c\xe5\x12\xf0\x72\x47\x40\xe4\x87\x23\x7e\x1b\x7e\x4c\xb8\x41\x75\xb2\x93\x45\x23\x34\x98\x58\x99\x40\x33\x50\xcd\x14\xd3\xf2\xf7\x95\xd7\x1c\x94\xfd\x34\xb7\x14\x4a\xa1\xa8\xf6\x96\x82\x7c\xbe\xd5\x6e\xd9\x27\x54\x37\x52\xad\xd1\xb3\x7a\x03\x34\xc9\x6d\xaa\x64\xc7\xac\xa4\x2c\x4c\x8b\x62\xc7\x29\x1c\x73\xbe\x69\x1b\xc5\xcd\xe3\xb4\x0c\x31\xe6\x8a\xd2\x1f\x54\xa1\xf8\xba\x85\x91\xbf\x1b\x25\x2b\x4a\xbd\x50\xe4\xbf\xe9\x8b\x8b\xb6\x45\x5b\xb7\xb0\x8f\xf7\xec\x41\x47\x3c\x28\x2b\xe9\x8f\xf4\x9f\x2b\x17\x5d\xe6\xb9\xf0\x61\x2b\x9d\x52\xf1\x98\x2c\x1a\x2e\xec\x2d\x8a\xb4\xcf\x4c\xa6\x65\xae\x79\x8a\x7f\x3e\xf3\x55\xc4\x9f\x37\xa1\x5a\x0b\xdd\x61\x96\xf2\x16\x17\x39\x87\xce\xa2\x97\x7c\x68\xc9\xf3\x86\x71\xba\x3a\xaf\x20\xa5\x28\xcc\x20\x6c\x87\x48\x19\xa2\x48\xf0\x20\x48\x27\xa1\x45\xb8\x29\x2f\x33\x27\x8b\x28\x6a\xdc\x64\x37\x44\xa6\x5b\xbc\x6d\x3f\x36\x13\x29\x13\xa0\xce\x84\xcf\x71\x25\xd5\x6a\x31\xa4\x64\xec\xcb\x89\xab\x69\x5a\x13\x76\xbf\xa2\x84\xdd\xaf\x28\xb1\xa6\x7e\x5a\x14\x31\xd8\x4c\xd0\x41\x3a\xaf\xa5\x67\x37\x94\x38\xc2\x79\x3d\x13\xd3\xec\xbb\x2f\x1c\xec\x0e\x4d\x12\x46\xc2\xa8\xe1\x58\x03\x1d\x5a\xa3\xb9\x0e\xa4\x90\x67\xcd\x54\x7e\xc7\x91\x72\xb9\x17\xf2\x9e\x8a\xc6\x87\x76\x40\xa4\xc8\xb9\xd4\x49\xa5\x63\xa0\xca\x21\x33\x58\x79\x74\x43\x4e\x28\xf4\x5a\x94\x0c\x4b\xae\x30\x3b\x4b\xbb\xe8\xac\xae\xda\x45\x99\xcd\xcb\x89\x9d\xaf\xce\x2a\xd2\xe7\x47\x81\x6e\x04\xd6\x1a\x84\x4b\x32\x4d\xf5\x48\xb9\xe5\x5f\xf9\x95\x5f\xed\x78\x88\xcd\x1c\x75\x68\xf9\xba\xa7\xf8\xd0\x27\x93\x28\x61\xa9\xb3\x03\x8c\x43\xe2\x3c\x84\x6f\xda\x84\xa4\xa7\xb1\x35\x74\xbe\x65\xac\xb8\xe3\x79\xe0\x14\x66\xce\x86\xe3\x94\x43\x5c\xc1\x1b\x79\x7b\x73\x56\x95\xb4\xfb\x66\xd4\x51\xc6\xec\x0c\x76\x13\xdf\x04\x72\x26\xcb\x24\x49\x8b\x28\xe4\xf1\x69\x54\x80\xb8\xf7\xeb\x90\x72\x6e\x29\xde\xaa\x31\x7d\x85\x51\x21\x5e\xc1\xf1\x80\x54\x1f\x21\x91\x94\x66\x09\x2c\xab\x9d\x08\xa6\x35\x44\x31\xd7\x03\xcf\x46\x78\x91\xbe\x2a\x8c\xdf\xbb\xae\x1c\x46\xb2\xd3\x1d\x35\xfe\x86\x42\x3c\x5f\x2b\x90\x55\x5e\x94\xd3\x68\x40\x13\x4e\x3e\xf9\x3c\xae\x63\x37\x65\xae\xf3\x32\xb3\x31\x93\xd9\x68\xb8\x2e\xbe\xe0\x7f\x08\x7c\x5d\xfe\x9c\xd2\xaf\x2b\xc6\x99\x35\x05\x78\xf4\x3d\xcb\xf2\x2c\xf0\x84\x22\x33\xa7\x1f\x6c\x0f\x87\x71\x09\xce\x92\x8e\x8e\x44\xaa\x9f\x15\x8c\xa1\x7c\xc7\x51\x95\x42\xcc\x93\xa7\x62\x6a\xd8\x99\xef\x4f\x3c\xd5\xf3\x51\xc9\x03\xca\x07\x05\x46\xeb\xbf\xfb\x28\x8d\x6d\xd2\x4f\xc3\x65\x98\x5f\x27\x16\xef\x0b\x3a\x67\x1b\xb6\x71\x71\x91\x9a\xf8\x56\xc9\xb6\x5e\x52\x24\xe7\x97\x54\x6d\x71\x92\x12\xb7\x2b\x99\x10\x78\xbe\x47\x41\xbd\xab\xe9\x32\xad\x27\xd7\x7d\x09\xb1\xd3\x93\xed\xd5\xcf\xac\x59\x1e\x9a\x1c\xc5\x31\x38\x11\xee\x3a\xc9\xea\xd3\xb3\xc2\x29\x61\x23\x00\x51\xbf\xab\xf7\x8c\x6a\x7d\x25\xcb\xcf\xea\x02\x6d\xf5\x63\x8e\xfe\xf5\x90\x8b\xaa\xfe\x63\x4d\x5c\x5c\x25\x45\x3f\xc2\xe9\x83\x89\xbc\x86\xaf\x20\x83\x0b\xaa\x9d\x78\xb1\x8a\x6e\x1f\xcd\xb1\x44\x0f\xe2\x94\x9f\xc3\x3f\xa1\xa3\xf7\x26\x75\xf7\xa4\x52\x56\xd9\x11\xd4\x01\x19\x4d\x89\xc3\xf5\xbd\x06\xd3\xd8\x17\x89\x20\xb1\x5f\x46\x31\x35\xb5\x7c\xc3\xe0\x9e\xa2\xc9\x3f\x83\x86\x85\x00\x7d\xdd\xb4\xb8\xcd\xf2\x28\x2f\x6c\x02\x95\x79\xd6\x59\x57\x6a\xb5\xcf\x50\xf8\x87\x90\xbc\xb3\xee\x6d\xd5\x82\xb5\x0a\xc4\x70\x42\xcb\xf1\x9c\x68\x24\xc2\x07\x5f\xe9\x16\x2b\x68\xa5\x23\x5d\xff\x6b\xfc\x3c\xdf\x28\xac\x54\x3f\x2e\x93\x82\xb7\xb6\x84\x12\xb4\x84\x12\x63\x3c\xa7\x80\x04\xa1\x89\x63\x4d\xdc\xf5\x4d\x4d\xdc\xf5\x4d\x85\x0b\x2a\x56\x23\x1e\x4c\x7a\x75\x37\xf4\x8c\xf7\x3f\xba\xe2\x8c\xd4\xc0\x16\x96\x48\x54\xe6\xfd\x50\xc2\x96\x9e\xcf\xd4\x6f\xd0\xe1\x12\x31\x3b\x35\xa5\xa6\x33\xf0\x41\x69\xe2\x39\xed\xb9\xa9\x73\x84\xb4\x1f\x0d\x29\x04\x77\xb7\xdc\xc7\x0e\xcb\x38\xce\x43\xc3\xd3\xd6\xc8\x09\x61\x57\xf8\x5a\x55\x88\xf2\x82\x1a\x1c\xdb\x14\x0f\xb9\x80\x13\x65\xae\xc6\x17\x3f\x6f\x28\xbe\xcf\xf7\x68\x4b\xc1\x8b\x7e\x32\xdb\xe9\x63\xe2\xa8\xa3\xf4\x1c\x03\xdd\x70\xf2\xb0\xbf\x3c\x8e\x06\x6a\x34\xf0\x2e\xd4\x9a\xee\x04\x0a\x20\x84\xfe\x94\x20\x48\xdc\xb9\x34\xc9\x60\xd5\x8c\x52\x28\xe6\x0b\x86\xd6\xfb\x73\x00\x74\x04\x42\xdb\x52\x12\x1e\x9a\x28\xa3\x4f\x46\x2d\xfb\x6e\xa0\x4e\xc9\xfb\x33\x3f\x83\xf9\x40\x33\x24\x1e\x6b\x13\x56\xee\x86\xe3\x34\x24\x26\xce\x8e\x22\xa3\xa8\x0b\xa5\x7a\xfb\xfd\xb5\x28\x29\xec\xe1\x39\xdf\x0b\xbb\x4a\x53\xd5\x78\x75\x4c\x9f\x25\x95\x36\x6f\xbf\xfb\x65\x66\x4d\x19\x66\x26\x84\xf0\x23\x92\xab\x3b\x70\x89\x7a\xb4\x1b\xce\xe9\xa9\x5e\x95\xbd\x3e\xba\xa2\x38\x3f\xab\xd0\x38\xcb\x2d\x36\x33\xbe\x0d\x72\x77\xbe\xae\xc5\xaa\x19\xcb\x16\x7b\xd1\xf5\x9a\x50\xfb\xe6\x50\xe9\x0b\x5f\xe8\x9a\xa2\x30\xe1\x18\x93\xdf\x48\x38\xae\xab\xb9\xbc\x9f\x11\xf9\x80\xbc\xfe\xcd\x44\x99\x5f\xec\x66\xc2\xb2\x02\x03\xb4\x65\xdd\xc3\xa7\xb7\xf4\x7c\xed\xa5\x18\xa7\x93\x69\xce\xbd\x2e\xc1\x3b\x28\xec\xc3\xec\x05\xe9\x44\x59\x64\x02\x13\xb2\x3a\x9a\xf6\x6f\xdf\x3e\xce\x2d\xe7\xd6\x15\x3b\xc7\x99\xc6\x7b\xa5\x61\xd3\xb1\x49\x06\xbe\xfe\x09\x13\x0d\xac\x04\x5f\xb7\xa8\x9a\xef\xef\xa6\x89\x9d\xa3\x0c\x18\x47\xf3\x4d\xfa\x05\x69\xdd\xfa\xb3\x72\xa5\x6d\xc2\x72\x39\x0a\x65\x3a\x40\x36\x01\xbd\x30\xa9\xb7\x3e\xa3\x75\x90\xc2\x6d\xbe\x14\xff\x74\xcf\x13\xca\x7f\x88\xbd\x8c\xd2\x02\x06\xf8\xf0\x92\x6f\x6b\xb5\xef\xcb\x2a\xa8\x18\x45\x34\x72\xaa\x0a\x9c\x47\x19\x51\x2f\x0a\x20\x9d\xc5\xc5\x47\x57\x66\x24\xd6\x8e\xc3\x09\xef\xf5\xd6\x4c\x31\x55\xbc\xe5\x4e\x67\x98\x66\xc9\x30\xb2\xf1\x40\x75\x69\x4e\x2a\x72\xf4\x93\x8d\xac\x97\x38\x5f\xab\x10\xa8\xe3\x08\xbd\x8e\x04\xaa\x8d\x79\x44\x1d\x86\xa1\xcd\x8a\x28\x8e\xde\xb0\x92\x9c\xbb\xa1\xd7\xc5\x45\x37\x26\xfb\x59\xdd\xed\x05\xa5\x8c\xa4\x34\x5c\x39\x26\x7b\x26\x55\x64\x3d\xfb\x95\xae\x44\xa3\x74\xae\x11\x26\xc0\x44\xa1\x51\x83\xf2\x4f\xb3\x54\x49\xcc\x64\x51\x21\xdb\x19\xf6\xe7\x1c\xde\x07\xdf\xd4\x8a\x4e\xf9\xb2\x21\x56\x1e\x1e\x6f\xd1\x44\x3a\x3c\xb4\xc2\x37\xf4\xdd\x50\x51\xba\x54\xe7\x6c\xf5\x4a\x15\xcb\x6b\x2f\xcd\xfb\xef\x77\x7f\xa6\x64\x73\xd1\x22\x77\x82\xf4\xee\x8b\xdf\x6f\x9b\x11\x9a\x44\x87\x41\xbd\xbb\xe0\xa0\x20\xb4\xcc\x88\x8b\x4f\xc0\x46\xa1\x7c\xf1\xb6\x82\x4e\x36\x89\x7c\xf7\xec\xe9\xda\xe4\xab\xe9\x9a\x24\xe4\xf8\x1d\xe6\x2f\xe0\x1b\x4d\x58\x93\x8d\x4c\x12\xbd\x61\xa0\x05\xea\xa5\x3a\xdf\x09\x34\x11\x9a\x3f\xc2\x27\x14\xc9\xf2\x9f\xb8\x6e\x69\x0c\x47\x8c\xf7\x87\x6f\xfc\xa9\xea\xaf\xcf\x93\xdb\x45\xd5\xe1\x58\xad\x78\x32\xb1\xa6\x43\xe7\xb6\x95\x11\xd9\xf3\x11\xa4\x2b\x36\x1b\x9b\x12\x33\xe8\x0c\xe3\x0a\x3a\x4a\xeb\xa5\xb1\xb7\x97\xa8\x18\x3e\x25\x57\x85\xc3\xff\x00\x6b\xe0\x34\x98\xbd\x1e\xc2\x86\x2a\xc4\x0d\xa2\xbc\xc8\xa2\x7e\x29\xc8\x83\x97\x5d\xdf\xda\x23\x7a\xce\x37\x4c\x57\x15\x0a\x71\xb8\x5f\x65\x45\xaf\x0a\x27\xf5\x55\x5d\xa8\x78\xa8\xc3\xc6\xb3\x6d\x82\xf2\x69\x6e\x96\x35\x66\x83\x2b\xcb\x32\x9d\xef\xdb\xb1\xe9\x68\x60\xa5\x1c\x2e\x2c\x69\xf4\xa3\x7c\xd3\x56\xaa\xe8\xa7\x93\xbe\xe2\x24\xc2\x14\x89\x4c\xef\xf8\x1c\x2d\xca\xf3\x92\x38\xae\x1c\x70\x8d\x2b\x00\xa2\xe7\xd3\x82\x5d\xac\x8e\x7b\xca\x86\x01\x71\x01\x08\x66\xf8\x5a\x05\x1f\x36\x8e\x98\x62\x48\xfa\xc8\xd5\x51\x94\xe0\xd8\x2b\x36\x10\xd1\xf7\x53\xf4\xb9\xb0\x01\xc0\x07\x4a\xff\x98\x5e\x1e\x2a\x2b\xd8\x68\x3c\x6b\xa8\x71\x4a\xd7\x00\xf3\x11\xc9\x0c\x7a\x11\x12\xd9\x77\xfc\x7f\xd4\x18\xa3\xc8\x9f\x8b\x67\x7b\x4e\x29\xc2\xc4\x54\xe7\xa9\xb6\x83\x14\xcc\x75\x0d\xde\x17\x1a\x8f\xd1\xa1\xc7\xfb\xde\xda\xf3\x1a\xb3\x8e\xd2\xdb\xc4\x92\xff\xa2\x63\x78\x46\x75\x0f\xcf\x28\xca\xf8\x49\x98\x98\x89\x61\xce\x36\xd8\x9d\xbb\x2a\x76\xb8\xdb\x4a\x5c\x62\xf2\xbc\x9c\x70\x48\x24\x53\x5a\xb4\x22\x32\x8a\xe4\xa6\x0a\x4c\x11\x59\x3f\x55\x00\xb8\x0e\x57\xe0\x84\xd6\x48\x11\x64\xf8\x71\x90\xcc\x86\x59\x19\x15\x08\x55\xea\x42\x0a\x7c\xdd\xd6\x8f\xcd\x0b\xb3\xd6\x51\x1d\x86\xdb\xba\x74\x74\xdb\x65\xc1\x85\x8d\x6d\xbe\x96\x17\x76\x92\x6b\x52\xf6\x8f\x03\x4d\x4d\xf3\x71\x8b\x2a\xd9\x7e\xca\x78\x1c\x85\x18\x56\xf3\x84\x06\x0f\x9f\xd0\x28\xd4\x72\xb9\xe3\xe3\x83\x8f\x35\x15\xdb\xc7\xc1\x0b\x6e\x38\x27\x1d\x65\x66\x42\xef\xac\xe3\xea\xe6\xdf\xda\xc0\x1a\x09\x2a\x56\xcb\x04\x24\x66\xc2\x35\x16\x6c\x0b\x76\x06\x7c\xd3\x8a\xb0\x1e\x44\x2b\xd1\x26\x29\x35\x4c\xe1\xf0\x75\xa3\x4a\xfe\x15\xe2\x4d\xc9\x0b\xe3\xd2\x29\x99\x79\xae\xb6\x9d\xcc\x42\x2b\x08\x58\x3f\xdf\x46\x4b\x2d\xa5\x1e\xc5\x0d\xc0\xf5\x63\xb8\xd5\xed\x3d\x85\x13\x7f\x7b\xe6\xe3\xdd\xf9\xf5\xb6\xc2\x5e\xa4\x94\x49\x00\x34\xc6\x31\xe4\xeb\x40\xd3\x30\xfc\x73\xb0\x21\xb0\x16\xd1\xac\x06\x85\x72\x6e\xe1\xae\x26\xee\xe2\x95\xc3\xf9\x7e\xae\x87\xae\x87\x8c\x1f\x63\x2f\x20\x2b\xef\xf4\xfc\xc9\x63\x39\x4e\x69\x95\xfa\x54\xf3\x4f\xf1\xa5\xa5\x0c\xa0\x87\xc3\x19\x03\xdd\xf1\x30\x03\xb6\x75\x7c\x53\x9f\x50\x5c\xb6\xcf\xd3\x47\x68\xbd\x08\x41\x95\xd0\xd3\xe3\xb3\x7f\x88\x0c\x81\x39\x9b\x80\x48\x52\x93\x22\x2f\x3b\x20\x87\x9f\x44\xb9\x39\x53\x32\xdc\x40\xbf\x70\x8d\x75\x33\x1f\x70\xb5\x2e\x2c\xfc\x83\x19\x2f\x2c\xdf\xa7\xb0\x75\x22\xc3\xec\x39\x38\xbe\x47\x6d\x34\x94\x61\x6e\xa9\x30\x8a\xc5\x81\x64\x36\xcf\x89\xd3\xc6\xe9\x28\xef\xa8\x12\xf2\x87\x78\x32\xbe\x69\x9c\x6d\x02\x8d\x82\xfb\x51\xd2\x67\x8e\xa1\x24\x77\xf7\x71\x0f\x0f\x3a\x48\x1e\xdf\xa6\x14\x9b\xd9\x3c\x2d\xb3\x50\xba\xe3\xc2\xb3\x4f\xdf\x9a\x6f\xdc\xa3\xf6\xa3\x65\x2b\xf6\x4b\x08\xc3\x15\x7b\xd2\x3d\x45\x69\x71\x59\x49\x8b\x99\x28\x7b\xc2\x2f\xfc\xdd\x4d\xe2\xf1\xde\xe4\xed\x58\x57\xdd\x51\x36\x40\x08\x8d\x98\x18\x51\x4f\x52\x39\xdd\x1a\x0f\xa3\x69\xf6\xd1\x9c\x50\x7a\x9a\xe7\x16\x7b\x4e\xb2\x33\x7a\x08\xc9\xda\x95\x9e\x7f\xb4\x12\xe5\x51\x9a\x6c\x57\xa7\x96\xd5\x56\x6b\xfa\xb6\x78\xe2\xad\x78\x2e\xc0\xa6\xbe\xab\xc4\x97\x01\x8a\x40\xb8\xbb\x73\xbd\xa6\x6c\x6d\xf2\x37\xc6\x36\x02\x4e\x4b\x75\x82\x5f\x73\x5f\xbc\xc5\xd9\x4f\x4c\xb6\xbc\x6c\xe6\xaa\xec\x12\x7d\x4c\xd6\xbc\x76\xd3\x07\x7e\x50\x75\xe6\xb5\xf9\x06\xf6\x29\xdf\x3a\xd8\xb5\xee\x46\x79\xbe\xf1\x22\x7a\x76\x6e\x00\xc9\x1b\x63\xd2\xa6\x7e\x4d\x8f\x26\x2d\x38\x16\x8f\xea\xd3\xf1\xb5\x9f\xee\xd5\x25\x35\xf6\xbb\x02\xdb\x65\xc5\xad\xb3\x7d\xbd\xa5\x75\x35\x32\x79\x1a\x47\x8c\x60\x46\xb5\x03\x55\x16\xbe\x76\xf5\x34\xee\x35\x3a\x93\x87\x32\x85\x46\xee\x9e\x6c\x13\xe7\x1d\x46\x89\xd3\x31\x80\x8b\xfd\x3b\xbc\x30\xbe\x99\x29\x88\x43\x94\x4f\x4c\x11\x8e\x71\xf6\x98\x7b\x5e\xcf\xee\x9c\x52\xe4\x4e\x45\x3a\xcd\xe7\x7c\x01\x9f\xc5\x9a\xc5\x7a\xd4\xa6\xb6\x94\xd7\x4b\x0a\x50\xcc\x4b\xdc\xe3\xc7\x53\xef\x07\x8a\x1e\x92\x61\x33\x22\x90\xe8\xd5\x30\x2e\xab\x5e\xd8\x77\xf1\x36\x84\x2f\x97\x3e\x52\xea\xf2\x6d\x07\xbb\xc8\xa2\x72\x32\x75\x88\x53\xe1\x33\x54\x78\x94\x93\x0d\x83\x40\x0e\xd2\xc6\x52\xe3\x5b\xac\x89\xb2\xbd\x2c\x37\xea\x1b\x7e\x69\xe9\x2b\x0a\xb3\x8e\x16\x87\x74\x47\xb5\x21\x1f\xa4\x13\x9a\xda\x04\x34\x92\x0b\x5f\x42\xb7\xad\xb8\x9c\x3f\x0a\x7c\x7e\x7f\x4a\x4d\x32\xdd\xa9\xd1\x4d\xa9\xb0\xe6\xdf\xd7\xfc\xc5\xaf\x7d\x69\xf1\xf3\x9e\xea\x99\xc1\x3b\x02\x53\x22\xa4\x83\x54\x37\xe8\x4f\xc8\x60\x63\x65\xaf\xb1\x67\x1f\x2a\xf8\x2f\xc6\x94\x05\x24\x5b\x9d\x1e\xe6\x9b\xd6\x7a\x28\x4c\xc0\x00\xb8\xf6\x5f\xd2\x53\x8a\xec\x8e\x1e\x0a\xb8\x0e\x38\x05\x4a\xa2\xd7\x67\xbe\xde\x7b\x5f\xcf\xba\x73\xac\x80\x3f\xf6\x01\xd5\xad\xe1\x6b\x10\xee\xa2\xad\xd0\xc1\xe1\x85\x1d\xd8\xda\x53\x4e\xe8\x02\xdc\x13\xea\x98\x27\x67\x8a\x1c\xe7\x8f\xf0\xda\x45\x6b\x61\xb3\x85\xa9\xe2\xd8\xc4\xda\x41\x8e\xc6\x3e\x7e\x67\x7b\x4f\x65\xc3\x17\x80\x13\x71\xe0\x73\x2f\x1a\xdc\xc8\xa9\x16\x0e\x76\xb3\x74\xcd\xc4\x9c\x2a\xe1\xd1\x78\x96\x91\x6f\xd4\x98\x79\x91\xd9\x64\xf0\x84\x2f\x68\xbe\x4f\x66\x06\x46\xf4\x23\x25\xf0\x08\x51\x16\xa1\x00\x53\x79\xd7\x39\x76\xd7\x78\x97\x5c\x9c\x47\x75\xe4\x06\x9d\x24\x91\x05\xfc\x8c\x9e\xf2\xcb\x6c\x9e\xf3\x74\xab\xd4\x88\xe9\x17\xa5\x78\xec\xf8\xb5\x92\x91\xcd\xe6\x94\x52\xd4\x6f\xe3\xe0\x49\xcf\xdd\x07\x6d\x97\x1b\x65\x81\x7d\xfb\xba\xe9\xd4\x66\xa6\x00\xce\x11\x21\xc8\xf7\x15\x2f\xfc\xf7\x5d\x6e\xd0\x8f\x4c\x92\x94\x35\x36\x5e\x26\x4a\xe2\x1b\xd7\x6d\x0b\xb3\x74\xca\xaf\x89\xb9\x83\x66\x3e\x6c\x0f\x01\x31\x41\x05\xe6\x53\xf5\x96\x3e\x75\xf0\xe3\xcc\xae\x9a\x6c\xc0\xbd\x6c\xb8\x6d\x08\x5c\xc0\x87\x31\xed\x03\x9f\x2d\x87\x9a\xce\xd2\x01\x2a\xaa\x32\x8b\xe7\x1d\xfd\x69\x57\x0d\xb3\x87\x6d\xc8\x24\x0a\xda\xc1\xab\x27\x0a\xfe\x53\xfb\x66\xcf\x9e\x6e\x3e\x36\x53\x2c\x16\x2c\xcd\x09\xad\xad\x78\xe2\x31\xa2\x86\x71\x54\xbd\xa1\xea\xe7\x10\x7b\xde\x53\xd4\x99\xdb\xa9\x40\xcc\x26\xf7\x7a\xeb\x08\xf5\x34\x8d\x92\x02\x70\x02\x69\xdb\x29\xca\x62\xcc\x59\x20\x53\xbd\x8d\xf8\x4d\x64\x1f\xfd\x64\xdf\xc0\x0e\xcd\xc4\x14\x29\xc8\xc5\x65\x12\xe3\x2c\x6c\x0c\xce\x3f\xa3\x27\x84\xb6\xc7\x27\xdd\xc5\x38\xca\x06\x40\x1f\x09\xef\x41\xf5\x89\x8c\x1e\x46\x88\x89\x56\xd3\x7b\x38\x82\x0c\x3e\x9a\x79\x89\xef\x39\x62\x3a\xc0\xc3\x6f\x5d\x57\x35\x96\x0b\x34\x98\x2b\x72\x67\xd5\xda\x23\x46\xb8\x13\x28\xd2\x97\x0b\x6e\x6b\xe4\x93\x34\x1e\x58\xa6\x7b\x14\x80\x88\x87\xc0\x9d\xd3\x36\x64\xa3\x4d\xa8\x0b\x54\x2e\x31\x26\x78\x85\x3e\xad\x7a\x4e\xbe\x56\x7e\x63\x32\xb5\x73\xc8\x31\xd0\x8a\xb8\x4c\xc7\x1e\xad\xbe\x47\xd8\xf9\x32\x5b\xe1\x3b\x43\x43\x93\x4d\xa8\x26\x2e\x61\x59\xf5\xbd\xf9\xba\x8d\xc4\x71\x60\x4d\xbc\x4d\xb1\x49\x9f\x51\x23\x0e\xa8\x6d\x20\x8d\x79\x72\x5d\xc1\x1a\x1f\x41\xdc\x53\x50\xe0\x3e\x5c\x18\x98\x37\xde\x88\xc5\x2d\x3a\xf9\x33\x2f\x85\xd6\xd8\xd0\x5f\xec\x16\xe3\x2c\x5d\x65\xc4\x8d\x2b\x4a\xbe\xea\x0a\x94\xaa\x2d\x35\xb1\x59\x58\x32\xc3\x02\x50\x2d\x68\x1d\xf2\xb5\x2a\xf3\x26\x29\x81\xef\x30\xa6\xd3\x71\x24\x6b\xbf\xa3\xc8\x6c\x7f\xa7\x05\x6c\xf5\x72\x77\x52\x86\xe3\x39\x0f\xe8\xbe\xaf\xb8\x2e\xf0\x59\x28\xf4\x3c\xd1\xf3\x35\x98\x49\x34\x18\xc4\xb6\xe3\xc5\x49\x50\x39\xe1\x6b\xbf\x71\xa2\x64\x24\x0b\x03\xa3\x7c\x1b\xf1\x02\xdf\x34\xf6\xca\xe2\x22\xe4\xc2\x5d\x70\x07\xe3\xf3\x67\xf4\xd7\xf9\xda\xfd\xf5\x49\x9a\xe5\x8e\x4b\xc1\xe1\xd3\x14\x82\x55\xa7\xde\x6b\x4f\x28\xa2\x10\x29\xee\x0b\xe7\xb2\x17\xf1\x7f\xae\xe7\x77\xc2\x73\xa4\x11\x23\xfc\x94\xde\xcb\x3c\xd1\xf3\x64\x24\x1b\x9a\x8c\xe4\x78\x43\x87\xe4\x8b\xdd\xd8\x8e\xa0\xc1\xc6\xea\x34\x8a\x48\xfb\x84\x9e\xb8\xbc\xae\x20\xb6\xb1\x29\x93\x70\x6c\xd1\x18\x44\xc9\x64\x0b\x05\xe9\x7c\xdd\x53\xe3\x5e\x41\xcd\xfd\xb6\xe8\xa0\x4c\x46\x13\x76\xb8\xae\xc5\xe6\x17\xe2\x2d\x25\xd0\x3b\x8e\xa6\xf4\xa2\xa4\xd5\x52\xeb\xc4\x39\xb7\x97\x45\x2c\xf8\x88\x48\x71\x1e\x01\x3f\x0c\xec\xbb\xb4\x90\x6e\x6c\xc4\xc5\x68\x37\x66\x9b\x29\x67\x9d\xa4\xe1\xd4\x9a\x65\x2a\x56\x7b\xc6\xc5\x1f\xc2\xe1\x22\xf0\xb9\xa2\x78\x91\xea\x9d\x83\x34\x9b\x6e\x57\x29\x26\x87\x74\x42\x0c\xed\x5d\x85\x28\x87\x00\x86\xb1\xb3\xe7\x1d\x33\x34\xb6\x91\x04\x6d\x57\x7d\xf7\xaf\xbc\xb2\x5b\x4d\x0b\x1d\xd7\x64\x0b\xc7\x55\x80\xd2\x37\x61\x75\xd0\x9c\xb6\x02\xcf\x65\xf2\x8d\x2a\x9f\x96\x59\xdf\x24\xf3\x3e\x13\xa3\x36\x52\x7d\xc4\x02\xd3\x93\x57\x61\x7e\x31\xe1\x74\xb1\x1d\x79\x48\x23\x82\xf4\x78\x4e\xa0\xa6\xfa\x54\xbe\x09\x3c\x00\x38\x4c\x93\xd0\x26\x85\x46\xbd\x4a\x33\x56\x35\x66\x5b\x0c\xc2\x62\x77\x6c\xb2\xc1\x7c\xf5\x2a\x61\x64\x80\xda\x65\x4e\x5c\x32\xad\x22\x23\xaa\x68\x1c\x9a\x5a\x10\xfb\xf6\x75\xf3\x32\x9f\xda\xd0\xe1\x11\x85\x12\xa1\xe3\x24\xb3\xdf\x6c\x78\xde\xff\xb6\x9b\xa4\xd9\x84\xb0\xad\x8e\x69\xf2\x92\x16\x19\xbb\x14\xf8\xdc\x6b\xd9\xda\xe9\x53\xb4\x66\xa2\x98\x42\x31\x33\xba\x0a\xa7\x11\x23\xa8\x09\xea\x45\x47\x4a\xd9\xf9\xc2\x17\xe4\xa7\x94\x74\xcd\x25\x18\x27\x81\xf4\x76\x9c\x12\xf1\x1d\x85\x23\x65\xda\x2c\xc4\xf2\x7e\x7a\x6b\x1a\x15\xe1\x58\xa0\x72\x38\x1b\xef\xd2\x11\xe0\xeb\x16\x15\xdc\x6e\x3f\x4b\x97\x2d\x07\x45\x4c\x80\x48\x5b\x03\x33\x29\xd0\x06\x44\x67\xf1\x62\x63\x9d\x96\x76\xb3\x0e\x32\x1d\x46\xf8\xd1\xf3\x33\x3d\x94\xaa\xa8\x44\x98\x3d\x04\x87\xf9\x7e\x1d\x31\x3b\x1a\xc3\x0d\xe1\x43\x31\xc8\x25\x37\x0d\x0a\xe2\x3d\x7b\x3c\x20\xa8\x53\x03\x01\x79\xec\xd0\x05\x60\xc2\xeb\xcd\x14\x43\x44\x14\x58\xb4\x1b\x2a\x74\x7a\xa8\xf5\x55\x8f\x6f\xe6\x4f\xab\xb2\xce\x43\xfb\x5f\xa8\xde\x10\xfe\x36\xc9\x3e\x3c\x7a\x80\x37\x2b\x82\xcf\x9d\x43\x52\x90\xfa\x90\xe2\x1a\x99\x38\xac\xa9\x4f\x68\xc6\x1e\xce\x80\x60\xcd\xef\x01\xad\xad\x15\x34\x5c\x98\xbc\x57\xa6\xfe\xae\x30\xda\x1b\xe9\x3f\x4b\x1c\xa1\xe4\xf1\x23\x4a\x12\xdd\x30\xc0\x9e\x05\x2f\x1b\xe3\x82\xe7\xef\xc2\x34\x20\x1e\xf8\x6e\xa0\x90\xf5\xf7\xf5\x78\xcb\xcf\x5b\x06\x3d\xc3\xd8\x9a\x8c\xdc\x39\x07\xa1\x6a\xdc\xea\x7c\x03\xa7\xb4\x70\xb0\x9b\x97\xfd\x34\x1b\x44\x09\x65\x17\x8e\x31\x07\x24\xc1\x7c\xed\x36\x2d\xe7\x3b\x4f\xfa\x92\xeb\x1d\x0a\x5c\xd0\x02\x3a\x8a\x8c\x46\xd4\x17\x3d\x5a\x07\x70\x55\x99\x39\xa8\x3e\x84\xcb\x4d\x7a\xb0\xf1\x86\x26\x29\xda\xd0\x52\x4f\xd7\x15\x6c\x28\x25\x50\x86\xc9\xe7\xe9\xa3\xfc\x74\x99\x4c\xc3\x9d\x54\xd3\x2b\x27\x95\x5a\xc0\x27\x8a\x18\xf3\xab\x69\x99\x25\x26\x7e\x42\xc1\x94\xb8\x16\x27\x53\x69\x7e\xa0\xe9\xc7\x8a\x9e\x10\xda\xc6\x22\x81\xaa\x08\x5c\x37\x54\xdf\x08\x95\x65\x5c\xdf\x6f\x9c\x87\xca\x24\x27\x69\x61\xfb\x69\xba\x3c\xa7\xe0\xe0\x27\x67\xca\x2a\x6d\xa8\x80\xea\x6e\x20\x99\x5d\x61\xa6\x36\x2f\xb2\x35\x58\x0c\x9d\x13\x49\x28\xe3\x29\x7b\xb2\x32\xae\x4c\x4b\xb5\x6d\xa4\x19\x41\x1f\x26\x5d\x8a\x36\x4f\x11\x9a\x2c\x4e\xf3\x5a\xae\xbd\xa1\x73\xed\x8d\x40\x7b\x53\x13\x65\x4f\x79\x83\xbb\x05\x83\xe3\x78\xab\x7f\x87\x2d\xea\xa4\xd6\x5d\xfb\xe5\xc8\x4c\x11\x02\x61\xc0\xd5\x0d\x23\x2f\x89\xfe\xe2\xa7\x18\x2d\x43\xcd\xfa\x9c\x02\x5e\x9f\xd6\xc1\xfc\x8e\x5e\x8b\xa5\x11\xe6\x27\x20\x5b\xb1\x2a\xdc\xac\xe2\x0d\x1a\x28\x8a\xb8\x2d\xeb\x9f\xd7\x78\xe2\xcc\xe4\x45\x56\x42\xb2\xc2\xbb\x79\x0c\x1e\xf1\xb5\x42\x54\x94\x49\x54\x8c\x29\xc9\xc1\x00\xb4\xab\x0c\x2d\x7a\x35\x6f\xa5\xbf\xf2\x49\x5d\xd9\xfb\x79\xa5\xd8\x34\x20\xbe\x06\x98\x54\x45\x2d\x2b\x05\xbd\xcb\x8a\x9e\xc4\x4e\x98\x89\x5c\xf4\x06\xaa\x0f\x90\x79\xc4\x8e\x93\xdc\x3a\xd5\x56\x48\xe9\xc7\x94\x3f\x54\xbf\xcd\xc8\x33\x85\xe5\xfe\xa4\x6d\x74\xc9\x0c\x56\xa2\x5c\x86\x16\x60\x2e\x4f\x05\xaa\xb2\x7f\x6a\xe6\x67\x59\x9d\x72\x4e\x81\x11\x53\x16\x6b\x08\x7c\x3a\xf9\xbe\x4e\x51\xcc\x5a\x9a\x99\x18\x80\x03\x16\xb3\x53\x21\xce\x1d\xc5\xfc\xd4\x2c\x48\x56\x99\x76\x5e\x66\xd3\x2a\xae\x64\x72\x30\xa4\xb8\x17\x69\x09\x50\x95\xfb\x58\xcf\xc4\xfe\xbc\x91\x35\x1c\xaa\xc2\x5c\x93\x98\x11\xb7\xfc\x5c\x07\x41\x77\x00\x36\x9b\xd6\x7d\xfb\xba\x51\x5a\x32\x97\x3f\x7c\xe6\x93\x6a\x0e\xe7\x0a\xce\x0a\x93\xa6\xac\xfb\x30\x79\x62\x60\x57\xc5\xb1\x68\x62\x50\xdf\x81\xcc\xe3\x68\x3a\x65\xc1\x42\x19\x71\xa8\x56\x4f\x46\x1f\xda\xd8\x93\x06\x76\x12\xe5\xf8\xe3\xd8\x05\x60\xd7\xe4\xeb\xb6\xf8\xaa\x9f\x99\x37\xa2\x38\x32\x89\x9a\x61\x63\xd5\x79\x09\x2f\xb5\x32\x44\x1c\x9b\x69\x5e\x3d\xd4\xc2\x41\x91\x72\xa5\x4f\x10\x59\x57\xc5\x69\x63\xc7\x51\x32\x78\xaa\xfa\x4f\x21\x0e\xf2\x61\xc6\xd7\xbd\x5a\xf9\x9d\xe7\xd7\xbd\x6d\x63\x2a\x67\xee\xa2\x91\x2b\x66\x1e\xca\x40\x85\x9f\x7c\x82\xb9\x90\x17\xa8\x2a\xf8\xd7\x61\xd4\x84\x48\xad\x99\x1b\xee\xef\x16\xd1\xa4\x6f\x33\xb1\x6a\x32\x2f\xa9\x80\xb1\x5a\x86\x66\x1a\x97\xf9\x5c\x67\xcf\x1e\x87\xf0\xd3\xed\x82\x99\x1f\xfd\xba\x5b\xb3\x84\x99\xe9\x6f\xeb\x1c\x7c\x45\x00\x0d\xf8\x4e\xc8\xd1\xd0\xd8\x15\x76\x7c\x5f\xb2\x3f\xa3\x05\xf8\xff\xbe\x39\x7d\xbe\xb4\x9f\x66\x89\x4d\x06\x78\xa0\xa8\x12\xfb\xe6\xc6\x27\x64\x3c\xb1\xd2\x37\x35\x5f\xc5\x2a\xfd\xce\x5e\x25\xe2\xbf\x70\x50\xd4\xdb\x50\x5f\x16\x8b\xbb\xcb\xa3\x8d\x49\x90\x84\xcf\x12\x42\xbe\x87\x8a\xba\xe8\x18\x8e\x05\xb2\xb4\x4e\xef\x19\x0d\x15\xb7\x9f\xa3\xd7\x81\x0f\xfb\x09\x51\xc2\x30\xae\x9b\xce\x30\x22\x81\x9b\xa8\x83\x38\x53\xff\xe5\x43\x9e\x3f\x71\xc9\x1b\x45\xfa\x14\x1c\xdf\x53\x40\xea\x02\xcf\x28\x22\x53\xc8\xce\xce\xa8\xbc\xfa\x1a\x8a\xff\x78\x91\x3f\xa7\xb0\xca\x2d\x8f\x23\x7f\xe1\x22\x37\x36\xc9\x15\x3d\x36\x78\x05\x71\xd5\xff\x4f\xd7\x9f\x05\x49\x72\x5d\xe9\x81\x70\x55\x64\x66\x15\x50\x05\x80\x00\x08\xb2\x45\x4a\xfa\x15\x92\xa8\x1f\x92\x19\x05\x49\x0f\xa3\x31\xf5\x8b\x87\x32\x93\x04\x2b\xd5\x48\xa4\x55\x55\x03\x2d\x98\x1e\xea\x46\xc4\x8d\x0c\x47\x7a\xb8\x07\x7d\xc9\x44\x62\xde\x64\x63\x63\x63\x32\x1b\x33\x99\x4c\x32\xd9\xd8\xcc\xf4\xc8\x7a\x7a\x34\xdd\xd3\xcb\x74\x37\x97\xe9\x6e\xb2\x3b\x92\x64\xb3\xb9\x83\x20\x00\x82\x58\x08\xa0\xf6\x42\xad\x59\xfb\x5e\x59\x63\x7e\xbe\x73\xee\x3d\x9e\xee\xf5\x04\x77\x54\x46\x84\xfb\x5d\xce\x3d\xcb\x77\xbe\x0f\x2f\x76\x75\xe2\x39\xb8\x6e\x62\x0e\x71\xb4\xfd\x60\xe2\x21\xd2\x90\xaa\x10\x56\x4f\x3a\x87\x5d\x8a\xd5\x4b\xfa\xed\xd8\xf8\x07\x0f\x88\x5e\xf3\xd4\xc4\x59\x69\x29\x8d\x13\x0a\x47\xea\xec\x7b\xba\x43\xfb\x7b\x4d\x34\xcf\x61\xdc\x0f\x01\x27\x11\x88\xae\xea\x2e\x39\xaf\x8e\xfe\x61\xb8\x3c\x64\x43\x2f\x22\xe4\xf4\xa0\x12\x65\xd7\x33\x0e\xfd\x64\x2d\xde\x43\xa3\x2f\x4a\x73\x6a\x52\xc1\xf8\xa4\x49\x68\x04\xed\xe2\x14\x06\x7f\xe7\x6f\x75\x5a\xbf\xfe\x25\x17\x5e\xfa\xc3\xf3\x2a\x36\x90\x83\xc4\x95\x93\x25\x95\xbe\x72\xe6\x85\x38\xd2\xef\xc0\x6e\xd8\xc7\x79\x8a\xf2\xc6\x0d\x2d\x3a\x7f\x57\x49\xe0\x83\x6a\x96\xff\xff\x03\x6b\xb5\x71\x92\xa6\xa1\xd6\xfb\x3b\xa6\x11\x59\xc7\x1a\x88\x27\xdb\xa6\xd7\xb3\x11\x65\xda\xf9\xe0\x93\xfa\x96\x6a\xa4\x3e\xae\xc8\x26\x6d\x14\x8e\xd8\x75\xd6\x88\xbb\xfd\xee\x3a\xf0\x36\x72\x10\x25\x6b\x16\xae\x39\xb2\xe2\x1f\x4d\xbc\x6a\xd5\xff\xf4\x51\x0d\x63\xb2\x6f\xb1\x3d\xa6\x5e\x68\x6e\x39\x46\x56\x11\x2d\xca\x7c\xed\xd2\xfe\x79\x5a\x8c\xc6\x36\xe7\xea\xbf\x02\x2c\xbc\x24\x37\x0a\xd0\xdf\x4b\x8a\x34\xb3\x28\x42\x8a\x5c\x9b\xea\x56\x3b\xa7\x02\xd9\x93\x8d\xb8\xd3\x2e\xb5\xde\x94\x9b\x5a\x2a\xd9\x2d\xc5\x9d\xaa\xa8\xfe\x07\x83\x24\xcd\xb3\xbd\xf4\x1c\xa2\x27\xa5\x34\xc3\xae\x2a\xd5\x46\xe6\x91\xc4\x0e\x3c\x3c\xa9\xf3\x5a\x4a\x34\x5f\x6e\x73\xe4\x19\x6e\x4d\xb4\xf0\x70\xe0\xab\x87\xbf\x0c\x3c\x86\xe2\xac\xd2\x30\xf6\xce\x34\x94\x3e\x04\x0e\x8b\x13\x08\x55\x42\xbe\x56\xbe\x5e\x6a\xb3\x71\x12\x67\x61\x37\xb2\xbb\x7d\x82\xed\x1e\x3d\x08\x1c\x5b\xae\xa1\x73\x33\x1d\x19\x0c\x81\x32\x97\x4f\x78\x7f\xc3\xc7\x55\x0c\x51\xc1\x3b\xd7\x25\x5e\x17\x17\xdb\xf6\x95\x9e\x1d\xe7\xd4\x59\x8d\x24\x2c\xa3\x7b\x64\x1b\x55\x70\xad\x1e\x17\x7a\x5e\xf1\x39\xae\xda\xb8\xf4\x63\xb3\x64\x64\x11\x2d\xb0\x84\x33\x46\x55\xf4\x9c\x7d\x40\xb4\x1a\xae\x86\x7d\x20\xdb\x54\x7a\xd9\x35\xd6\xd4\x75\xb6\xe6\xe6\xda\x71\x91\x66\x92\xaa\x75\xfc\x96\x4e\x1e\xf4\xf0\x44\x54\xe3\x86\x66\x5d\x8e\x5f\x29\x13\x68\x36\x0a\xa5\x5e\x4a\x89\x82\xd2\x18\xb1\x8f\xa5\x13\xa0\x08\x8b\x41\x90\x23\x64\xe8\xbe\x0c\x67\xe2\x70\xe4\x4d\xaa\x10\x4c\xf9\x17\xf8\x46\x8d\x2f\xcd\x59\xe4\x24\x1b\x86\xeb\xc5\x4a\xa8\x9a\x66\x99\x2e\x83\x6f\xdc\x92\xe9\x99\x30\xb5\xb1\x43\xad\x28\x5a\xb6\x03\x5e\x08\x50\xa5\x9d\x6a\x39\xcc\xd2\xff\x0a\x93\xdc\xf6\x86\x71\x12\x25\xcb\xeb\x55\xaf\x50\xa9\x60\xba\x6e\x14\x1b\x17\xcb\xa9\xb5\x2b\x84\x49\x45\x2a\xe1\x88\x82\x86\xdc\x55\x4e\x7f\x5d\xc0\x99\xdc\x3d\x6b\x3d\xd4\xab\x49\x62\xd8\xa5\x69\x23\xea\xb5\xd9\x2f\x74\x8c\xa7\x14\xa7\xc7\xee\x8e\x0f\x81\xef\x4d\xb4\xa2\x5d\x1d\x15\x37\xdf\x24\xef\xa1\x42\xe8\x53\x4d\xb5\x4d\xa6\x65\xa1\xf1\x70\x02\xd9\x5e\xd2\xa2\x29\x9c\x19\x5b\xe2\x77\x5d\x94\xea\x1a\x44\x27\x44\xa6\x6f\x7b\xcc\x40\x2a\x8a\xe3\x34\x8c\x57\x5c\x17\x36\xb2\xf7\x1c\xd0\xf0\x8d\x5b\xb3\xfd\xa2\xcb\x96\x14\x7b\xfd\xfd\x89\x92\x08\xd0\xc2\xd3\x99\xcd\xf3\x28\x8c\x97\x09\x92\x8e\x9c\xec\x69\x3a\xda\xe0\x41\x5e\x0b\x94\xbe\xdd\x45\x32\x4a\x38\x25\x8f\x4e\x94\xbe\xdd\xc5\x86\x6a\x62\x19\x7e\xd9\x31\x2b\x98\xe2\xcb\x4e\x6c\x53\x33\x70\xed\x60\xb7\x15\x53\xdd\x78\xcd\x60\xb2\x25\xb5\x56\x51\x29\xf1\x07\xed\x5a\x38\x40\x56\x1e\x2e\xda\x11\x7c\x37\xdf\xd0\x83\x8a\x84\x57\xf9\x66\x7c\x1d\x78\xa1\xda\x70\x0d\x9d\xab\xd2\x9d\xa0\x40\xc1\xc7\x9b\x48\xbc\xcb\x81\x72\x0b\x11\x03\x05\x02\x02\xbe\x6e\xea\x0b\x40\xcd\x08\x05\x55\x18\x3c\x54\x97\x84\x96\xdb\x97\xdc\xff\x04\xbf\x2f\x14\x48\x35\xd5\xe8\x25\x97\x36\xa2\x65\x09\x5f\x10\x35\x7d\xbe\xf6\x60\xa1\xbe\xfd\x72\x61\x72\x6a\xe5\x74\x39\x1d\xa8\xa3\xf0\x75\x45\xb5\xab\x97\x2c\xc7\xa4\x01\x5b\x3e\x0c\x1c\x7d\xf4\xcc\xf0\xb5\x6e\x12\x22\x84\x39\x58\xfd\x75\x2f\x00\x13\xf9\x07\x0a\xb8\x73\x24\xf0\xf0\xfb\x3b\xba\x5d\x32\xaf\x45\xa5\x8b\x8b\xed\x7e\x9a\x8c\xa7\x14\x9b\x00\x7a\x2a\x31\x32\x57\x15\xa5\xce\x3b\xb5\xec\x1f\xf5\xec\x8c\xd3\xb0\xf4\x79\x32\xb0\x22\xe1\xdc\x42\xb0\xc2\xd7\x8a\xb3\x2a\x1c\x8d\xc2\xe5\xd4\x11\xfb\x09\x4f\x0d\x60\xaf\x82\x36\x6e\x28\xc7\x77\xe1\x50\x79\xdd\x15\x5e\x31\x7c\x13\xec\x55\x3d\x7b\x8a\x53\xe6\x92\x62\x8f\xb8\x34\xf1\xbd\x32\x71\x56\x44\x2e\x62\x71\x34\x25\x0e\x26\xc7\xd0\x24\xf1\x47\x3c\x24\xaf\x67\x28\xe7\x8e\x55\xe0\xfa\x3c\xf6\x2d\xba\x33\xaf\x1e\x65\x2f\xb5\x07\x61\x3a\x12\xd4\xb7\x83\x8c\xef\x9f\x75\x19\xdc\x4f\xa9\xea\x3d\x94\xba\x73\xea\x37\xde\x1e\x3b\x3a\x5a\x6b\x27\xca\x7e\xda\xaf\xba\x5e\x79\xe6\x9b\xb8\x67\x67\xaa\x05\xe4\xd2\x57\xc0\xee\x7d\x93\xc3\x20\x26\xe9\xa1\xaf\xc4\xbe\xfc\x2a\xbd\x82\xf4\x9a\x6c\xb7\x7d\xfb\x67\x29\x76\xe8\x19\xe7\x47\x8a\x43\xd8\x72\x3c\x43\xf5\x1a\xfc\xbe\xc5\x76\xb2\x12\x99\x61\x32\x32\x7c\x78\xcb\x69\x3c\xe5\x15\xf2\x8f\xb9\x16\x92\x30\x8b\x4c\xdc\xe7\x73\x1b\x61\xe9\xa5\xca\x59\x4d\xf6\x53\xa0\x2e\x8f\x2a\x0e\x41\x93\x53\xb2\x8e\x43\x5c\x7a\x26\x81\xcc\xd1\x2f\x49\xd9\xa7\x41\x38\x3c\xb5\x2c\x90\x4c\x96\x48\x98\x16\x5a\x4e\x2f\xf0\x76\x25\x4c\x0f\xed\xe0\x13\xe5\xdf\xb9\x32\xda\xd2\xf3\x07\x5c\xdf\xb7\xc2\x70\xed\xec\x28\xa1\x6e\x3e\xd1\x91\x6e\x40\x19\x42\x7a\xf5\x68\x89\x21\xf4\xdc\xb1\x41\x61\x8a\x03\x2f\x3b\x8a\xc8\x87\x49\xbf\x0b\xff\xff\x36\xc2\x30\x24\x38\xfe\x68\xb2\x8d\x34\xdb\x25\x55\xce\x20\xf6\xc4\x02\xf8\xb6\x2a\x92\x4f\x77\xb4\xdd\x31\x51\xb8\xec\xda\xb3\x1c\x43\x8b\x4b\x9b\x1d\x57\x76\xa7\x8c\x50\xf2\x6c\xda\x77\xfd\x1d\x0a\x74\xe0\x59\xfe\x34\x78\x13\xf8\x80\x91\xbc\x48\x83\x5a\x53\x6a\x07\x61\x2c\xfd\xcc\xcc\x3e\xa7\x34\x10\x18\x21\x8d\x44\xc8\x89\xa6\x95\xe8\x19\x03\xa7\x14\xff\x9f\xa8\x13\x79\x84\xe2\xcf\x2b\x88\x80\x48\xea\x81\xcc\xa4\x13\xa8\x54\xc1\xf9\xa6\xd4\x65\x2f\x32\x45\x3f\x84\x3c\x06\x66\xe2\xa7\x98\x48\xbe\x69\x28\x9b\xac\x25\x69\xba\xde\x52\xc2\x0c\x9b\x15\xe6\x0c\x45\x5b\xd4\x0d\xc7\x26\xcd\xc3\xcc\xc4\x5a\xda\xf8\x98\x82\xab\x1e\x53\xdc\x80\x99\xe9\xad\x88\xfc\x22\x17\x46\x02\xdf\x44\x7b\x7e\x7b\x01\xeb\xc5\xf9\x83\xed\x85\x85\x19\xd5\x21\xc3\x8b\x53\x02\x26\xd5\xe9\xf8\xa3\xc0\x27\x98\x5f\xd3\xe9\x93\x1d\x1b\x0d\xb9\xcb\xb5\x24\x5d\x01\x20\x07\x16\xe4\xb4\x8a\x23\xbf\xad\x28\x0a\x8f\x2b\xa0\x4a\x64\x57\x6d\x6a\x96\x21\xc1\x87\x2d\xfa\x16\xb6\xb2\xf3\x25\x5f\x98\xe5\x1f\xfd\xc9\xc4\xf3\xa5\xa0\x7f\x08\xb1\x11\x97\x06\xb0\xf4\x5a\x1d\x5f\xe5\xce\x7a\x69\x31\xd2\x82\x71\x37\x31\xaf\x7c\x53\x6b\x82\xda\xb7\xd8\x4e\x09\xd4\xe5\x40\x4d\x3c\x1a\x7c\x53\x29\xf6\xc7\x79\xf6\xb7\xbc\x4e\xea\x0d\xde\x6e\xb0\x97\x77\x01\x6e\x04\xe4\xa9\xc5\x0d\x0a\xd2\x56\x45\x23\x04\xbf\x17\x8c\xd8\x08\xea\x3e\x41\x10\x0e\x66\x65\x54\x36\x66\x77\xc7\x2b\xae\xaf\x3f\xb1\x41\x42\xe0\x08\xd4\xce\xe8\x9a\xe1\x99\x40\x71\x16\xb0\x2e\x18\xcc\xdc\xcc\x06\xb5\x18\xb8\x1c\xe1\x3e\xb1\x30\xcc\xbb\x8d\x41\xbc\x4f\x99\x32\xac\xde\x3b\x30\x5d\xcc\x1a\x08\x0f\xd3\xa1\x54\xcb\xd1\x94\x13\x82\x26\x8a\x75\xfe\x14\xf7\xc6\x53\x1b\x94\x5c\xc3\xa6\x83\x40\x1d\x92\xd6\x0f\xa1\xe8\x2b\x7d\x8e\xad\x17\x85\x04\xfe\x34\x49\x68\xe3\xff\xff\x5f\xa8\x7e\x4a\xe7\x99\xcf\x84\xc4\x76\x8d\x5c\xec\x7c\xa6\xe5\x14\x00\x2e\x04\x95\xdc\x4b\xf9\xed\x22\xcf\x56\x4e\x8e\xd3\x6d\x2b\x07\x4a\xca\x04\x0d\x4a\x92\x20\xd7\x6f\xf9\x8c\xe2\xbb\x6a\x0b\xbd\xeb\x72\x20\x36\xce\x53\xbb\x12\x32\x45\xb1\x30\x5b\xb6\x14\x4b\xa8\xcf\xc5\x64\x3d\xc7\x03\x89\xf8\xe9\x5b\x2a\x96\xfa\x56\x63\xb6\x3d\x0a\x57\xca\x73\xbd\x1c\x48\xc4\x7e\x9f\x22\x38\x08\x8d\xf6\xe4\x33\x1d\x55\x96\xad\x1f\xa7\xa5\x4d\x4a\xe2\xdc\xf4\x72\xc6\x4b\x22\xd4\x3b\xab\xc9\x6e\xee\x29\xfd\xc5\x4d\x65\xbf\xb3\x2f\x17\x61\xb7\xdb\xd2\xa0\x94\x9b\x3a\x8d\x79\xb3\x29\x89\x00\x2d\x9f\x29\xef\xe1\x5f\xc3\xca\xc6\x36\x3c\xa7\x08\x64\x76\x6e\x28\xf9\x9c\x30\xeb\x0d\x89\xf2\x12\xe0\x0d\xc4\x32\x7c\xdd\xc0\x2a\xb2\xd4\x2e\x5c\x11\x06\x93\xf9\x96\x02\x07\x1e\x86\x4d\xc2\xd2\x3e\x13\x78\x72\x8f\x91\x35\xf1\xae\x72\x3f\x81\x0f\xe1\x03\x45\xec\xcc\xaa\x2e\x32\x0f\xf4\xcd\x8e\x7c\xd5\xe1\x2e\xde\xa5\x7d\x82\xc1\xd6\x94\x9a\x8b\xff\xf2\xd7\xe8\x40\x74\xf4\x95\xe5\x28\x09\xbd\x86\x4f\x17\x74\x4d\x86\x56\xbe\x69\x7f\xbc\x5e\xc3\x2a\xc4\x13\x31\xc6\x5a\xbe\xc6\x3b\x25\xa7\x15\x51\x5a\x66\x7b\xa9\xcd\x21\x1d\x42\x73\xca\x5d\xe2\xb4\xb4\xa5\x63\xbc\x4e\x41\xfd\x12\xd6\x29\xe1\xb5\x60\xfd\x84\xd0\xcb\xf7\x53\x9d\x50\xad\x84\xcb\x61\xbc\x6c\x53\x49\xce\xe0\xf9\xbe\x8b\x75\xc3\x37\x2a\xff\x9f\xe5\xd6\xac\xa0\xee\xeb\xd4\xe0\x5c\x4e\xeb\x7c\x13\x2f\xcc\x72\x91\x16\x8c\x02\x16\x45\x60\x25\x35\x84\x16\x2d\x39\xd0\x75\x79\x4c\xd5\x89\x72\x1b\xe7\xec\x5d\x3a\x2d\xb0\x63\x4a\x0b\xec\x58\x03\x85\xd8\x62\x7b\x90\xa4\xf9\x10\x68\x5b\xa4\x1a\x11\xd2\xb2\xba\x1d\x2d\x3c\x44\x49\x57\x6a\x45\x74\x34\xdf\x99\x51\x12\xf7\x79\xe8\x1d\x01\x7c\xf9\xe8\x7c\xa3\x0e\xe1\x81\x71\xac\xac\xe2\xc3\xff\x0c\x6f\xc3\x37\xb5\x91\x79\x61\xb6\xfd\x72\x12\x32\x9b\x18\x06\xe6\xaa\x22\xa1\xbf\x5a\x3b\x9d\x40\x02\x06\x79\x0b\x84\xe8\xd3\x34\x76\x88\x70\xa6\x37\xca\xa1\xc1\x7c\x7d\x6d\xb2\x1d\xee\xf2\x0f\xdb\x66\x84\x06\x4b\x78\xbb\x53\x1d\xe5\xfa\x4e\xa9\x9e\x9f\x22\x86\xac\x8c\x88\x2d\xa2\xb0\x83\xdd\xcc\xd7\x8a\xf5\x39\xb7\x66\x94\xed\x56\xf3\x8f\x57\xc6\x76\xfa\x3a\xfc\x4c\x51\x0d\xa6\x5f\x87\x41\x98\xee\x28\x1d\xb4\x8d\x8a\xe4\x69\x39\xa7\xfc\xff\x6b\x12\x0c\x65\xa8\x94\x5a\x93\x65\x45\x5a\xc6\x31\x53\x3e\x62\x3e\xab\x18\x8e\x36\x55\x91\xf6\x2f\x9c\xe5\x26\x75\x97\xd0\x80\x96\xd3\x51\xf1\x3b\x60\x38\x77\xf9\x22\x9e\xbb\xe4\x50\xe2\x22\xed\x6c\x67\xe8\xe9\xb1\x5a\x4e\x07\xaa\xd7\x00\x99\x78\xfe\x87\x89\x06\x20\xfb\x3d\x7a\xb7\x61\x79\xb5\x8b\x78\x2d\x54\x44\xbe\x8e\xd4\xd2\x69\x18\xdc\xaa\x15\x0f\x96\x9e\x3f\xd0\x1e\xd9\xc8\xc4\xbd\x61\xc2\xc0\x65\xcc\x3d\x68\x60\xf8\xda\xa5\x98\xc6\x26\x1f\xb6\x54\xd6\x18\x60\x6d\xbe\x56\x26\x2d\xe4\x66\x2d\x54\xcc\x3e\xd3\x51\x3c\xf2\xa0\x08\xa5\xcc\xe8\xce\xc7\x37\xb6\xaf\xe0\x43\x87\xda\xd9\xd0\xac\x70\xbf\x36\xea\x62\x6f\x13\xdc\x88\xaf\x27\x75\xce\xe7\xa7\x9f\x26\x64\x0f\xbc\x89\x6f\xc3\x4d\x72\x8d\x12\xe5\x4e\x75\x6d\x2e\x3a\x35\x32\x7f\x90\x53\x32\x3f\xd6\xf5\x1e\xf0\xea\x8a\x44\x71\xcb\xf1\x92\x5f\x01\x33\xa3\xe8\xb1\xd7\x07\x7f\xbe\x6d\x88\xf9\x87\x33\x30\x92\xad\xf6\x18\xe6\x13\x3e\x38\x28\xed\x0e\x53\x60\x20\x7c\xba\xab\xb2\x42\x77\x15\x9e\xb7\xe8\xdb\x47\x35\x04\x23\xf0\x14\x79\x77\x95\xe1\x7d\x17\xa7\x24\xb2\x4d\x9f\xe9\x78\x54\xca\x09\x78\x53\xd2\x39\x4c\xb3\x40\x4c\x6d\xf6\xd3\x1b\x38\x99\x51\x75\x07\x45\x94\xa6\xdb\x53\x6d\x87\xf3\xee\x28\xab\xb4\x5c\xd1\x46\x14\x5e\x81\x6d\x93\xf2\xc5\x17\xdb\xf3\x07\xf7\x28\xbd\xb2\xb3\x70\xf8\x24\xd7\xa2\xd4\x6b\x91\x33\xc5\x3a\xb9\x40\x6e\x9d\xc4\x2e\x4a\xc8\xed\xe3\x2a\xf5\xd9\x17\x5f\x94\x2e\x30\x34\x0f\x21\xea\x7d\x13\x87\x70\x4d\x6d\x82\x5a\x58\x5a\x3e\xf6\xfb\x25\xf6\xa5\xd4\x5c\x1e\xf1\xad\x38\x89\x6d\xc1\xad\xe6\x5e\xbe\xa0\xd2\xd8\xa7\x58\xc9\x93\x35\x93\xf6\x75\xda\x00\xb0\x31\x05\x8a\x92\x8e\xd9\x9b\x0a\x04\xd6\xb5\xb1\x1d\x84\x39\xd8\xe5\x58\x4a\x35\x50\x6d\xd8\x84\xfa\x73\xcd\x13\xdb\xf3\xf0\x44\x2b\x6f\xc0\x70\x42\x0d\xfd\x3e\xbb\x8e\xcc\x8e\xe8\xeb\x6c\x8b\xcd\x16\x16\xca\xf0\x6c\xba\xa5\xb8\xc3\x69\xf8\xb1\x5a\xbe\x0b\x1b\xca\x3d\x79\x58\x21\xf0\x13\xcf\x05\x7f\xf7\x41\xd5\x87\xa1\x4d\xad\x19\xe4\x20\x6a\x5e\x72\x49\x43\x8f\x1a\xb8\x1d\x38\x92\xb9\x5e\x9e\x8c\x23\x93\x8d\xc2\x1e\xec\x06\x76\x29\x4e\x4d\xbe\xae\x1d\x63\x87\x0e\x81\x8b\x81\x02\x76\x16\xb7\xa1\x65\x02\x94\x1d\x8a\xb8\x22\x3c\xf4\x98\xab\x25\x86\x03\x93\x86\x53\xca\x7b\xba\xa1\x9a\x8f\x61\x54\xb1\xce\x3e\x6c\x38\x07\xe7\xdb\x99\x45\x10\x80\x20\xe1\x9b\xf4\xf7\x0e\xaf\xe6\x9a\xf2\x6e\x04\x2a\x0e\xd9\xd4\xb0\xc6\x63\xee\xa5\x57\x93\xa8\x88\x73\xe2\xc8\xc7\x22\xc1\x3b\x00\x83\x2b\x59\x1e\x8f\x24\xdd\xac\xe4\x66\xb3\x30\xa3\x94\x1a\xfa\x9b\x81\x8b\xbd\xad\x30\xb2\xb7\x51\x0e\xc3\x57\xc2\x0a\xf0\xb5\x4b\x35\xda\x22\x4d\xba\xa5\x9b\xc1\x45\x1f\x0c\xd5\x99\x40\x89\xd6\xb0\x12\x2c\x02\xe9\xd6\x86\x2f\x7e\x16\x63\x62\x12\x23\x5c\xb4\xb8\xd0\xad\x45\xe5\x5a\x7b\x41\x35\xac\x73\x51\x57\x7b\x5c\x73\x32\xe7\x92\x6e\xd1\x85\x11\x31\x9e\x64\x17\xb0\x16\xdf\x74\x27\x4b\x14\x0e\xf2\xe9\xd6\xdc\x9c\xd3\xe0\x2c\x87\x1c\x19\x1e\xc6\xa1\x72\x5b\x21\xdc\x01\xe1\xe3\xf6\x7e\xc3\x20\x29\x08\xca\xb3\xc4\xf6\xf6\x06\x8d\x36\x7e\x73\x07\x9c\x03\xa7\x2b\xb6\x4f\x1a\xf8\x39\x6d\x86\x7f\x38\x46\x58\x0c\x69\x95\x51\x9c\x0b\xc7\xd0\x50\x0f\x87\xf2\x67\x38\x60\xf8\x46\x35\xd4\x5f\xd2\xec\x8d\x49\x12\xb3\xcc\x2a\xb2\x1e\xd7\x26\xda\xdb\xf1\x66\x6e\x67\xc7\xfb\x7b\xcb\x49\xd2\x1f\x99\xb8\x55\xda\xb4\x2d\xea\x08\xd8\xba\xd8\x90\x27\x5a\x6a\xf7\x93\x28\x32\x29\x4f\x2e\xf6\xc4\x59\xc5\x3e\x75\x4d\x43\xb7\x0f\x2b\xa7\x3c\x2b\xc6\x2c\x4a\x5a\xce\x00\x2b\xb4\xa8\xb4\xc0\xc5\xa6\x3c\xbd\x8d\xa5\x5b\x8e\x3b\xe4\xb0\x8c\xb0\xe6\xbf\x43\x83\xcc\xa8\x64\xf5\xfe\xb9\x09\xc7\x36\x84\x9f\x2c\xe2\x9a\x3e\xc0\xfe\xad\x40\xb1\x65\x9e\xa9\x65\xde\xff\x51\x7b\x3d\xb4\x51\x9f\x33\xef\xb2\x7d\xe9\x11\x44\x8a\x49\xa1\x62\xed\x9a\x8d\xd2\xf5\x5d\x3e\xc9\x79\x1e\xf6\x0d\x7e\x17\x37\x9f\x20\x0b\xd0\x82\x87\x8a\x94\x10\x54\x83\x45\x8f\x14\x63\x29\xa5\x70\xbf\x1d\x5e\xb5\x26\x32\x71\x7f\xba\x1a\x9c\x6b\x19\x58\x87\x6e\x02\x47\x2b\x5f\x57\x29\xc7\xd3\x64\xba\x3c\xb4\xb0\xe6\x77\x75\x7c\xb9\x17\x9f\x97\x7a\x02\xfd\x08\x36\xeb\xd4\x86\xfe\x82\x22\x35\x33\xbe\xd4\xfa\xd3\xa0\x52\xe9\x6d\x39\xde\x33\x16\x5e\x14\x2e\x19\x1a\x7d\x39\x59\xbd\x89\x31\x79\x9e\x96\xbe\x0a\xef\x50\x14\x72\xb6\x54\x22\x81\xd5\xad\xe4\x0d\xfd\x16\x1b\xf5\x7a\x66\xad\xe5\xa1\xe3\x3f\xd7\x68\x9e\x9f\x57\x81\xb6\x2b\x1c\xfa\xc1\x43\xf9\x16\x16\x0d\xdf\xd4\x79\x64\x9e\x3f\xd0\xce\x8b\x91\x50\xf3\x0b\xb7\x57\xcb\x71\x1d\xd6\x75\x75\xf6\xcf\x12\x03\x97\x73\x76\x45\xed\xd7\x9b\xd5\x53\x0a\x5a\x50\xc4\x7d\x9b\x85\x29\xc8\xff\x1d\x4b\x07\x72\xcf\x7c\xad\x3a\x59\xb2\xb1\x8d\xf3\x69\x3f\xcb\x28\xe6\x33\xaf\xa8\x6a\x4b\x63\x86\x6f\xf1\x16\x74\xf2\x7a\x95\x86\x77\x61\x81\x57\xfc\x8e\x8e\xff\x25\x44\x55\x48\xd6\xfd\x52\x35\x26\xf5\xc3\xfe\x5e\x97\xea\xdf\xfa\x15\x30\x2b\x88\xc7\xe4\xd5\x55\xae\xc3\xa7\x05\x56\xe9\x02\x4c\x23\xcc\x54\x6b\x43\xf1\x8f\x5d\x22\x22\x56\xd0\xf2\x02\x83\xe7\x04\x3b\xf6\x2d\x56\xb8\x0b\xa5\xd3\x8f\x8e\x15\xfe\xda\xc9\x1e\xe7\x83\x0e\xe8\x28\xd0\xe2\x89\x70\x79\x8e\x4c\xa6\x0e\xfc\xeb\xe7\x38\x8d\xf9\x7a\xd0\xfa\xb5\x03\x8a\x97\xd5\x85\xb0\x05\x91\xb6\xa0\x09\x11\xf9\x15\x24\xcf\x81\x36\xb8\x45\x13\x00\x3b\xf0\x43\xcd\xe1\xf1\x26\x6d\x4e\x9c\xbe\xa7\x1a\x21\x92\x6b\xd6\xae\xd8\xb8\x8f\x00\x14\x91\x19\x2f\x47\xbe\xa9\xf2\xa8\x74\x99\xb3\x5d\xc8\x39\x54\x18\x79\x41\xc5\x6c\x17\x02\xc5\xa3\xe2\x41\xcc\x2f\x87\xa3\x11\xfc\x7a\xc7\x50\x52\xfe\x92\x30\x94\x28\x4d\x1d\x93\x2e\xdb\x3c\x9b\x51\xe6\xe2\x86\x82\x13\x5f\x00\x98\x51\xd4\x48\x7c\x3a\xf0\x07\xea\x78\xb8\xda\x48\x51\x1d\x25\x99\x5b\xeb\x58\x89\x60\xf8\xe4\xeb\x7a\x3b\xea\x1c\xb0\xc2\xee\x43\x70\xb6\x4e\x2a\x99\x82\x93\x75\x01\xbc\xa5\xf6\x17\x7e\x63\x8f\x2f\xa8\x5e\x85\x0d\x41\x06\x77\x1a\xc9\x42\x7c\xf6\x2e\xec\x31\x72\x20\x5f\xd7\x4d\xd3\xc7\x68\x53\x6c\x1d\xdf\x8e\xa8\x9b\x97\x4f\xea\xbe\x10\x2c\x6c\x81\x63\xf9\x44\x67\xb2\x1c\x46\xab\x6c\x41\x44\x74\x9e\x5c\x7d\xbe\x51\xa4\xda\xe3\x24\x15\x39\x29\x1d\xc0\x48\x14\xe1\xd9\x40\x66\xff\x95\x02\xb1\xfd\x67\x0d\x62\xfb\xcf\x2a\x08\x18\x14\x31\x8e\x47\x64\x0c\x5e\x57\x12\x52\xaf\x2b\x3a\x8c\x2c\x89\xb3\x5d\xe5\xc4\x62\x87\x6d\xc0\x12\x70\xdd\x30\x50\x39\xf4\x0b\xaa\x9d\xf9\x78\xa0\xf6\x18\xbc\x41\xc1\xeb\x37\x48\xfd\x0d\x93\x91\x2f\x70\x0b\x3b\x87\x8f\x4e\x7d\x3c\xd9\x35\xbd\x15\x12\x13\x72\xdc\x74\x30\x9d\x12\x9c\xa9\x4c\x69\xb2\x66\x23\xca\x94\x72\xae\x33\xf0\x3a\xc4\x87\x15\x71\xfb\xb8\xc8\x99\xc3\xde\x89\xd5\x2d\x2c\xc8\x75\xad\xdc\x0c\xb2\xad\xd4\xf5\xbf\x09\xc1\xae\x66\xdb\x6d\xfa\x90\x1d\x8d\xa3\x64\x9d\x73\x61\xe2\x6b\xd2\x7e\x16\x67\xb3\x89\xa7\x01\xfa\x02\xf4\xdd\xce\xa1\xf4\x64\x2c\x47\x9b\xc4\x53\xb2\xa8\x18\x8d\x61\x29\x84\xae\xdd\x63\x70\x3e\x54\xcc\x8a\xdd\x70\xf9\x13\x4a\x82\xf4\xab\xb4\x75\xb1\x6c\x8f\x6a\xf1\xb1\xef\x93\x0b\xc0\x5c\xcc\xec\x3b\xb8\x03\xfd\xe9\xa7\x7d\x59\xa6\xdc\xed\x12\xe7\xfa\x92\xcb\xad\x2d\xd8\x1f\xdc\xec\xd9\xa0\x95\x8d\x88\xe2\x2b\x34\xd2\x78\xfd\xab\x30\x46\x30\xbd\xd7\xe1\xd5\xe0\xb4\xbe\x4d\xf3\x86\xf4\x05\x88\x3f\x45\x01\xda\xe7\x0e\xfe\xe5\xbf\xfa\x02\x9d\xef\xc8\xc7\x5d\x0e\x14\x31\xd9\xfb\xfc\xc8\x02\x96\xfc\xa4\x52\x21\x8f\x13\x08\x82\xb4\xc8\xe5\x15\x8f\x87\x5c\x5e\x71\x08\xbc\x2b\xe1\xd9\x57\x3f\x41\xaf\xea\xfe\xbc\xfc\x2d\x9c\x91\x10\xa8\xc7\x11\xd9\x42\x51\x0d\x1e\xce\x27\xa8\x0e\x21\xac\x8e\xb4\x31\x70\xb0\xfc\x2c\x50\x54\x75\x57\x14\x57\xdf\xf7\x27\x8a\x37\xfd\x36\x9d\x10\x48\x73\x30\x87\x08\x23\x6c\xb0\x1c\xe0\xd8\xdd\x0a\x7c\xcf\xf3\xa5\x89\x02\x0a\x5e\x0a\x14\xb1\xde\x47\x8a\x8f\x60\x60\xe2\xa2\xd7\xaa\x34\x8c\x78\xc0\xe9\x09\xa5\x2f\x6a\x0a\x92\x75\xe6\xe6\x07\x4c\xf2\x61\x3a\x5c\xf9\x5a\xa1\x9b\xfb\x36\x32\xeb\x33\x2d\xc5\x49\xaa\x28\x87\x4e\xa8\xce\xf5\x9b\x4a\x76\xef\x08\xbd\xba\x20\x9d\x1a\x92\xe0\xbd\x28\x1c\xb3\x93\xcc\x28\x73\x45\x94\x79\xca\x17\x98\xd6\x6d\x37\x75\x6d\x34\x38\xda\x5e\x0b\xd4\x69\xf8\x5a\xa5\x53\x72\x68\xe2\xcf\x50\xde\x83\xfb\xfe\xf0\xa8\xb0\x11\x3b\x50\x84\x63\x65\x03\xa4\xc4\x18\xe3\x48\x49\xb4\xad\xc3\x35\x30\x3d\x32\xe3\x57\x95\x9f\x7b\x99\x92\x4d\xb2\xf6\xca\xf7\x85\xcf\xcc\xac\x0c\x80\x56\x1d\xe1\x25\x2a\x4c\x6d\xc8\xcb\x30\xbc\x21\xa8\x93\xae\x3a\xcf\xd5\xe3\x94\xce\xc3\x96\x60\xc7\x5c\x26\x91\x56\xd7\x3e\x5b\xae\x36\xac\xc9\x93\x14\x8c\x01\x7f\x70\x9d\x46\x5c\xda\x94\x68\xcd\x0b\x82\x53\x21\xe9\xae\x51\xee\x50\xa0\xcc\xe5\x2a\xc4\x59\x36\xdd\xd9\x6e\xe3\x3e\xdf\xce\x7a\xc3\x24\x72\xa2\x23\x22\xf8\xae\xbc\xa1\xd7\x55\x19\x24\x4d\xba\xac\x61\x84\xe0\xf2\x08\xad\x26\xbe\xae\x10\xdd\x16\x71\x6e\xd3\xb1\x49\xf3\x6c\x1a\x03\xc3\x8a\x69\x48\x58\x89\x7c\x9a\x4f\x0d\xdc\xd4\x80\x90\x9b\x4a\xb7\xaa\x67\xc6\x61\x6e\xa2\xf0\x55\xb8\xc5\x8c\x12\xd1\x3b\xe8\x8a\xe2\x06\x1b\x25\x7d\xd0\xb9\xd0\x28\x23\x18\x39\x86\xad\xcb\x37\x13\x0d\x38\x48\x7a\x43\x3b\x92\x44\x67\x85\xee\x4c\x9a\x95\xea\x7d\x86\x07\xc8\xf9\xf6\xe8\x4f\xd7\xa4\xac\x64\x94\x15\x02\xd8\xa4\x61\x52\x64\xb4\xb3\x00\x5a\xda\x0a\x14\xb3\x17\x12\xe6\x8e\x5b\xd2\x13\xab\xa2\x40\x04\xd7\x69\x4a\xb5\xc4\xf7\x84\x50\x14\x11\xc4\x74\x47\xe1\x10\xa7\x37\x9c\x04\xf1\x78\x6c\x4d\x44\x11\x27\x12\x14\x8f\x80\x84\xc8\xad\xc1\x72\xf4\x60\xce\xdf\xd7\x5c\x56\xba\x39\x74\x53\xc9\xe2\x5f\x52\x15\xde\x22\x5e\xa3\xe6\xa8\xfd\xb3\x5e\x9e\xd7\x4b\xf5\xaa\xf2\x55\x66\xe9\xd5\xa3\x75\x2a\x59\xe0\x7d\xef\x04\x0a\xfc\x81\x2c\x99\x64\x98\xe4\xd9\x93\x22\x1f\x17\xf9\xb4\xca\xdb\x7d\x88\xb3\x48\x60\x67\x3e\x69\x73\x9b\xd2\xee\xdc\xf3\xa2\x5c\x9f\xbe\x59\xcf\xf6\x78\xbf\xfd\xcf\x69\x67\xc9\x66\x2c\x57\x2c\x36\xd3\xe5\x89\xa7\x4f\xb8\x38\x51\x9a\xa6\xaf\x2b\x5b\xf0\x28\x78\x15\xb0\xcb\xee\xd0\x60\xc1\x42\xde\x9b\x28\x4d\x92\xd3\x18\x39\x1c\xc4\x97\x55\x40\x9a\x9a\x7e\x98\xec\x56\xe5\xd6\x0f\xb5\xca\x02\xd8\x49\x04\x8e\x5b\x3e\x99\x23\xbf\xf2\x61\xdb\x7b\x2a\x6a\xff\x30\x50\xe9\xee\x0f\x35\x15\x30\x68\x8c\x80\x97\x94\xe6\x59\xad\x48\xd6\x50\xa3\x2c\x23\xda\x14\xb4\xf5\xc2\xe6\xab\x54\xd6\xaf\xe3\xa7\xe0\x82\x1c\xad\x64\x0b\xd2\x7e\x4e\xd9\x5a\xa0\x02\x81\x54\x42\xca\xe2\xab\xd4\x85\xe4\xc2\x7b\x0f\xb0\xa9\x77\x48\xbf\x30\xfb\x6c\x7b\x5c\x74\xa3\x30\x1b\x3a\x92\x64\x24\x79\xd0\xa7\x28\x68\x6f\xef\x27\x1e\xaf\xd5\xc6\x16\xd1\xbf\x33\x18\xd8\xd4\xc6\x3d\xf8\x97\xa2\x8c\x4e\x4f\x2f\x1a\xe1\x7e\x03\xfd\x37\xff\xf8\x9f\x2a\xac\x2a\x74\x67\xf8\xba\xe3\x13\xe1\xfd\x30\x1b\x17\xb9\xcd\x68\x70\x34\x32\x10\xfe\xf3\x47\x81\x07\x25\xbd\x1f\x68\x61\x04\x78\x71\x82\x8e\x3a\xa5\x68\xde\x4f\x35\xea\x6b\x0d\x4c\x8f\x99\x69\x85\x25\xc7\x23\x08\xce\x29\xbf\xb8\x6f\x22\xcb\x58\x49\xc7\x77\x52\xbe\xa0\xf8\x33\xb5\x38\x69\xbe\x3d\x37\xff\x68\x79\x0c\xb8\x3d\x54\x2e\x06\x1e\xc8\xc0\xf5\x18\xfd\xc3\xdf\x57\xcd\x19\xf7\xe0\x45\xe1\x10\xf9\x8e\x56\x00\x78\x13\x07\x12\x46\xe2\xbb\x34\x27\x58\x9c\x97\xf5\xbe\x79\x07\xe7\x2d\x66\xfc\xb2\x6a\xb3\xdc\x24\x98\x0d\xa2\x82\x2b\x38\x01\x85\xb2\xd0\x1b\x96\x28\xcc\x87\xc9\x2b\xd3\x1e\xf9\x74\x42\xed\x08\x66\xfd\xab\x70\x66\x0a\xb3\xa6\x90\xd3\x16\x31\xd3\x5c\x84\xf1\xf2\xb4\x4a\xb9\xc0\x92\xa1\x1e\x83\x34\x07\xcb\xad\x62\x4c\x58\xa8\x5e\xd9\x8f\x5e\x11\xe5\x2d\xc5\x59\x7e\x5f\xf5\x8d\xdf\x57\x49\x94\x81\x09\x53\x9b\x56\xc4\x9f\xe9\xdd\x44\xfd\x59\x65\x5b\xf3\xa2\x1f\x26\x53\x64\x84\x5d\x37\xcb\xfe\x59\xd7\xbb\xe3\xe1\x49\xef\x4e\x34\xb3\x7e\x9e\xb4\x71\x7c\xb2\x36\x04\xf1\xdd\x21\x35\x72\x0f\x83\x0d\x87\xe1\x7d\x9c\x71\x78\xc4\x1f\x4d\x5a\x5f\xf8\x0d\x9e\xc5\x19\xb0\x4d\x61\x10\xaf\xd0\x34\xe0\x68\x7b\x84\x8a\x9c\x82\x1e\xf3\xd5\xc9\xa3\x81\xf6\xbc\x2f\x63\xd8\x71\xc2\x73\xd7\x98\x23\xc8\x98\x3f\xc8\xeb\xe9\x72\xd0\x3a\xf8\xbc\xab\xf4\x90\x59\xc4\x0f\xde\x51\xf4\x6e\x6f\x05\x7e\xab\x9d\xa4\x17\x16\x07\x45\xad\x87\xcb\x38\x1f\xe0\x40\x9f\xc4\x1e\x86\x97\x7e\x04\x1e\x34\x37\xef\x83\xd0\x12\x4f\xff\x3a\x56\xad\xa4\x7b\x69\xe2\x05\x58\x5f\x4e\x3c\xb2\xcc\x3b\x36\x94\x97\xb8\x45\x66\x8a\x6b\x5a\x41\x19\x0f\xc9\xc6\xa8\x1c\x93\xad\xe7\xe6\xbd\x56\xc9\xaf\x7f\x89\x4f\x84\xa9\xce\x5e\xbf\x66\xcd\x94\xda\x57\xa0\xed\xc6\x69\xfe\x13\xfa\x09\xe9\x10\xf5\x2b\xc1\xbe\x32\x0e\x53\x1c\x9f\x5c\xf4\x98\x78\x73\x74\xa6\x01\x2f\x31\xdf\xee\x9b\xdc\xe0\xd0\x97\x24\xaa\x4a\xa8\xd6\x52\x31\x65\x34\xb9\xb2\xbe\x66\x52\xb8\xfd\xb0\xdf\x20\xab\xe0\x6b\x77\xd4\xae\x99\xb8\x6f\xd3\x69\xa5\xeb\x70\x8c\x8e\x44\x9c\x69\x7f\x01\xfb\x8d\x00\xe6\x8a\xe2\x8d\x3c\xdc\x04\xc3\x22\x45\x77\xc6\x8e\xcf\xf3\x9e\x3a\x06\xa7\x54\x75\x81\x4b\x9a\xe0\xdd\xc0\x03\xdc\xd2\xb0\x9b\x64\xc9\xc8\x44\x2d\xdd\x87\x81\xb9\x97\xa6\x8c\x3a\x7b\xa6\xef\x11\x60\xd7\x15\x67\x3d\xaf\x19\xbe\x99\x7c\xda\x53\xa7\xdb\xd5\x24\x22\xee\x3b\x93\xb2\x21\xc5\x92\xbb\xae\x98\xd2\xaf\x6b\x3e\xec\xf1\xa0\xa5\x20\x0f\x6f\xc2\x58\xf0\x4d\x83\x04\x7e\x3b\x4f\x93\xa2\x1b\xa1\x39\xcc\x23\x6e\x21\x35\xcb\xd7\x4d\x0d\xa8\x91\xe9\x26\x68\x5e\x54\xd8\x35\xa1\x4b\x61\x9d\x0d\x58\xa5\x61\xd8\x6b\x79\x49\xe1\x0f\x15\xff\xc8\x87\xca\xe3\xec\x0d\xcd\x98\x6a\x34\x3e\xc3\x83\x3f\xe5\xeb\xba\x28\xe7\xfe\xa5\xcf\xb5\x6d\x3f\xcc\x93\xb4\x5a\xd0\x08\x3c\x2c\x43\x17\x1c\xc6\x66\x3d\x4d\x22\x10\x21\x0a\xfd\xb0\x0f\x40\xcf\xab\x31\x8f\x93\xb8\x6f\x47\x49\x2f\x05\x5d\xf8\xaf\x7f\xc9\x79\x06\x1e\x34\x5d\xcf\xbb\x2c\x2c\xb4\xfb\xa9\x19\xb8\x64\x8d\xb0\xcb\xd0\xc4\x0a\xf9\x85\x17\x6e\x35\x69\x37\xcc\x53\xb3\x6c\x1f\x26\xeb\x24\x01\x54\xb9\x13\xb9\x81\x91\x2c\x15\x3e\xf8\x03\xb2\x80\xf0\x55\x59\x6c\x09\x56\xe8\x32\x82\x29\x01\x6f\x2a\xd2\xec\x3f\x0f\xbc\x58\x02\xd8\x20\x60\x7f\xff\x40\xc1\xed\xc7\x49\x39\x85\xfb\x67\x3d\x0a\xd3\xd9\x9d\xc3\x9a\xce\xb6\xd7\x33\x69\x3e\x5c\x9f\xaa\x34\x0f\xd1\x2e\x83\x51\xbd\xac\xbd\x96\x37\x6b\x33\xb5\x6f\xb1\x3d\x48\x4d\xbc\x32\x28\x52\x11\xf7\xc3\x8f\x20\x85\x81\xd7\x3a\x1c\xa8\x4e\x82\x99\x8d\xcf\x3d\xa0\x44\x9e\xda\x70\xd4\x2d\xd2\xcc\x3a\x65\x1a\x61\x1e\xf4\xc9\xef\x2b\x5a\x5a\xd9\xf7\xc4\x0e\xcd\x9a\x09\x85\xeb\xc0\xc1\x0b\xfd\xee\xb8\xd4\x98\x0a\x18\x26\x92\x0a\x80\xcf\x72\x4a\x21\x48\xb5\xb8\xd4\xa8\xe8\x0d\x9f\xf4\xf4\x65\xd7\x09\x4c\xe1\x84\x08\x1c\x12\x63\x8b\x66\x18\x71\xfe\x2f\x34\xad\xc1\x15\x15\x89\x71\x5a\xd7\x09\x7e\x97\x53\x8c\x72\xc7\xc9\x89\x52\xdb\xe3\x70\x12\x2e\x2c\xa7\xb1\x10\x37\xdd\xd3\xf2\x9b\x53\x48\x83\x09\xfc\xa1\x3c\x64\x91\x06\x3c\xa1\xf4\xcb\xb6\x68\xb5\x39\xd0\x8a\x38\x33\xff\xcf\x13\xba\xb2\xf7\xd5\x26\xd5\xc2\xcc\x96\x9b\xea\x85\x59\x5e\xc2\x78\x0f\xbe\x9e\xfc\xfd\x07\x4c\xa3\xe9\x7b\xbc\xc5\x54\xeb\xd7\x0e\x38\xa4\x6c\x39\x82\x58\x54\xd7\x75\x2d\xf3\x3d\x27\x2b\x90\xda\x2c\x4f\x52\xdf\xdd\x29\xc8\x73\xfa\x63\x69\x63\xdc\xbe\x37\xf7\x2d\xb6\x7b\x26\x8e\x5d\xf0\x2b\xc4\x28\x1e\xef\x7b\x42\x99\xd0\x61\x2c\x1d\xaa\x0e\x91\xac\xca\xbe\x95\xf2\x87\x1d\x9b\x5d\xfe\x7d\xcf\xea\x4e\x84\xfb\xf0\x3d\x11\x33\x7e\x34\x51\x0d\x0b\x60\x2b\x75\x1d\x25\xa5\x1b\xc1\x7f\xd5\x40\x9b\xfc\x6c\x3b\x8c\x07\x26\xce\x43\x16\x21\x83\x27\x7f\x56\xa7\xc5\xcf\xba\xbe\x21\x86\xc0\x75\x23\x3b\xe3\x4b\x20\x7b\x3b\x5e\x7c\xf9\x82\x62\xf7\xbc\xa9\xb0\xa0\xdf\xc5\x2b\x22\xc1\xf1\x71\x43\x23\xe7\x4b\xed\x97\x4d\xef\xcb\x05\xba\xb6\x96\x1c\x30\x43\x55\xac\x8f\x35\x06\x0a\x99\x61\xc1\x44\x64\x5e\x4f\x62\x65\xf3\x4d\x93\xa2\xf6\x28\x64\x5d\x42\xc0\x29\xae\x29\x7d\xce\x6b\xca\x9a\x0f\x4d\xda\xb7\x59\x0e\xac\x31\x4c\xf8\x34\x30\x55\x2e\xa1\x56\xee\x0d\x6c\xc0\x8f\x6a\x07\x71\xb9\x6e\x4d\xb4\x6a\xfa\x49\x6a\xe2\x29\x0d\xb7\xa0\xb5\xcf\x28\xfd\x49\x4b\xc9\x9b\x35\x75\x31\x22\x09\xd5\x52\x50\x14\x28\xcb\xf0\xb5\xaa\x41\x1a\x3b\x6e\x69\x41\xa8\x2d\x2d\x86\x5f\x2d\x6a\xa7\x5c\xac\x45\x05\xe3\xb2\x2a\xf7\x5c\x56\x29\x23\xfb\xca\x38\x4a\x52\x9b\x4d\x29\x4a\xa6\x8a\xd6\x15\xe4\x71\x91\x31\xbc\xea\x40\x92\x79\x9a\x8c\xc3\x9e\x89\x8d\x1a\x63\x2e\xba\x89\x08\xaa\x54\x3f\xbe\x5c\x98\x34\xb7\xf9\x94\x77\xbe\x37\x15\x4b\xdb\x4e\x18\x06\x84\xf4\x97\x55\xa4\x9a\x15\x31\x22\x43\x97\xb7\xf7\x45\xf9\x9a\x23\x31\x7f\xb0\x3d\x48\x22\x51\xec\xe2\xb7\x08\x94\x30\xc3\x59\xd5\x52\xd0\x4b\x4c\x44\x56\x63\x46\xf7\x8f\x33\xe9\x21\x96\xd4\xdb\x13\xff\x5a\xc8\x45\xb1\xa4\x9f\xee\x48\xbd\xad\x90\x1b\x61\x66\xba\x36\x8a\x0c\xd1\x14\x31\xc3\x07\xb9\xc3\xc2\xf6\x21\x5b\x6b\x54\x44\x79\x98\xe5\xc2\x8a\xc6\xb8\x7c\xda\xc9\x82\xd1\xdf\xbe\xc8\xf6\x2d\xb6\x57\x43\x9b\xc7\x66\x64\x59\x9c\x96\x09\x52\x35\x01\xf3\x9d\x06\xad\xe7\xf6\xcb\x36\x5d\xe1\xa4\x08\x3c\xbc\xf7\x26\xca\xf5\x7b\xcf\x2b\x3c\x0c\x93\x1c\xbc\x0d\xcc\x6e\xa5\x75\xa6\xa6\x3a\x1a\x00\xa8\x5e\xb9\x4f\x32\xeb\x15\x6d\xd2\xc0\xe3\x94\x2f\xa8\x34\xd0\xd8\xe6\x36\x6d\x69\x3d\x5e\xa6\xc9\x14\xf7\xdc\x4f\x7b\x54\x74\xa7\xab\xac\x07\x4e\x32\xe8\x17\x8a\x3f\x8d\x8f\x79\x86\x82\x05\xdb\x33\x23\x72\x3e\x84\x59\x6a\x6c\x14\x52\xa1\x1f\x46\xe9\xb2\xd2\x20\xe2\x14\x91\x80\x49\xeb\x76\xe7\xa5\x76\x36\x4e\x72\x2c\x43\x9c\xb5\x3f\xa5\xe7\xe1\x6b\x45\x32\x90\x15\x69\x9a\x14\x71\xdf\xf6\x89\x60\xd0\x11\xc9\x2c\x79\x4e\xbe\x8a\xfc\xed\x76\xba\x94\xc5\xc5\x76\x9c\x3c\x33\xa5\xac\x1a\xea\x92\x38\x55\x6f\x06\x2a\x1f\x78\x54\xd1\x3b\xf5\x92\xd1\x20\x49\x39\x5a\xc7\x74\x5d\x53\xa0\xd8\x6b\xb5\x81\x29\x03\xaa\x71\x6a\x93\x5e\xaf\x18\x87\xe2\x62\x32\x56\x0e\xa7\x8e\x00\xe7\x7c\xc5\xf5\xd5\x70\x0c\x91\x68\x81\x27\x7a\x0a\xd8\x4d\xe5\xde\x11\xbc\x36\xcc\xd7\x77\x97\xeb\x01\xf1\xf3\x5f\xc3\x4c\x23\xa3\xf6\xa7\x58\x7b\x4c\x06\x02\x9f\x03\xaf\xfa\x21\x22\x6b\x44\x09\x97\xc8\xb3\xe1\x6b\x38\x23\x70\x5e\x4f\x34\xa8\x83\xb4\xf3\xd4\x9a\xac\x48\x3d\x17\x13\x76\x03\x37\xe0\xf3\x4d\xcd\xdd\x28\x7d\x6c\x6b\xc7\xe4\xb3\x32\xa3\x06\xf9\x59\xc2\xae\xf1\x20\x9a\xd8\x28\xe9\xad\x0c\x2d\xef\x28\x51\x70\x57\x34\xb6\xdf\x77\x3b\x2a\x4d\x92\x3c\xab\x18\xf4\x40\x19\x74\x55\xd0\xeb\x87\xe3\x08\x22\x50\x10\x7a\xe3\x95\x49\x4b\xdd\x5d\xef\x9f\xad\xae\x58\xb9\x69\x8c\x1d\xc2\x78\x85\xe1\xb4\x0c\x9f\xc6\xe2\x11\x2c\x75\xad\x8b\x7d\xd6\xa9\x94\xd1\x4e\x66\x9f\xce\x73\x6b\xbd\x72\x42\xf5\xb8\xf4\x86\x26\x35\xbd\x9c\xf9\x66\x50\xfc\x61\xee\x4c\xbe\x71\x7e\xb2\x89\x22\x6f\xe7\xb8\x5b\x67\xa2\xd6\xf1\x19\x25\x1d\xbd\x66\xa3\x9e\x04\x8e\x2e\xd1\xbd\xb0\xe0\x80\x07\x3e\xbe\xe3\x4c\xef\x6e\xdf\x40\xf1\xed\xc0\xb7\x4d\x7f\x8b\x16\x0f\x5f\x07\x2a\x15\x73\x43\x37\x18\xdf\xe0\x24\x0f\x3c\xe6\xff\x8d\xdc\x57\xfe\x2e\xe5\x1a\x74\x01\xd5\x27\x74\x0d\xfe\xf2\xb4\x3a\x43\xdf\x53\x0c\x7e\xef\x29\xc8\xce\xe9\x86\x66\xef\xf6\x20\x49\xed\xaa\x4d\x29\x9d\x2a\xf6\xaf\xfc\x51\xf8\x99\x00\x42\x22\xb9\xd8\x52\x59\xd8\x8c\x23\x76\x1a\x15\x8c\xee\x0d\xa5\x8e\x74\x43\xb9\x05\x71\x92\x7f\x4a\xe1\xe8\xb8\x80\x26\x95\x29\x45\xba\x7a\x6b\xe2\xcf\xd4\xe5\xa7\x88\xcc\x19\xb3\x71\x91\xe2\x3c\x2c\xe3\x87\x01\x6d\xe2\xee\x5b\x9d\xc4\x0d\x4a\xaf\xdf\x21\x84\xf7\x4b\x14\x77\x49\xd7\x20\x59\x97\x52\xd4\xc5\x7c\xa7\xcf\xae\x0d\x4a\x5b\xe9\xe6\x64\x44\x16\xe7\xa8\x60\x27\xf2\x03\x98\x1b\xd5\xb6\x3c\xcf\xe5\x87\xfb\x94\xfe\x13\x52\x30\x32\xad\xf0\x3a\x19\xf8\xc2\xea\x3d\xce\xf1\xe8\xa6\xa6\x4f\x69\x63\xa5\x8d\xa3\x5b\x3e\x36\x55\x2e\x73\x94\xa4\x86\x91\x1c\x8e\xa1\xd1\xb3\x35\xd6\x42\xd1\xcf\xb7\xb3\x62\x79\xd9\x7a\x15\x12\x40\xb2\xb9\xe7\x90\x6f\x6a\xd5\x33\xcf\xd7\x55\x58\xf8\x5b\xb0\x8c\x5b\x4a\xd6\x12\xde\x06\x12\x6a\xbf\x54\x76\xc2\x8c\xc6\x51\x38\x08\x6d\xca\xb8\x0f\x38\x0b\xb7\x02\x95\x6f\xba\xa5\xb2\xc9\xe3\x24\xcc\x92\x58\x81\x2e\x19\x15\x8b\xf3\xe4\x2a\xf0\xb2\x7c\x43\x05\x56\x61\xf7\xf3\xb9\xed\xff\x9b\xec\xbc\x10\xc9\xd4\xfa\x27\xe7\x50\xe6\xe4\xf4\x93\x70\x0b\xd2\x58\x0b\xb9\xa0\x02\x26\x9a\xb4\x37\xc4\x21\x22\xa2\x18\xe5\x97\xf3\xb5\xda\xde\x51\xb2\x1c\xf6\x4c\x34\xe5\x65\x98\xcf\xa9\x3e\x17\x3c\x1e\xbc\x97\x6f\xab\x24\x08\x50\x5d\x1c\x96\x89\x3c\x09\x73\x9f\xf2\x4d\x5d\x58\xf6\xf9\x03\x0e\x07\xbe\xae\xbc\x2a\x64\x73\x84\x09\xa9\x49\x90\xa1\x2b\xb4\xf0\xbe\xba\x54\x7e\x5c\xca\x4e\x75\x7c\xcb\xfe\xf6\xc8\x66\x0c\xea\x75\x8c\x6f\x2e\x63\xf1\xe3\x4a\x24\x98\xe5\xcf\x4c\xf9\x7c\xfd\x47\x5a\x2e\xee\xdd\x8a\x0c\xf4\x39\xe5\x34\x15\x79\x32\xad\x45\xfb\xae\x2b\x85\xad\x9d\x1d\x8f\x07\x3d\xad\x3d\xf4\x3f\x56\xca\xf7\x92\xa7\xca\xf6\x28\xd5\x29\xae\x87\x4a\xeb\x3f\x2d\x6d\xa7\x47\xb7\x28\x3c\x69\x33\x1b\x4a\xf5\x67\xa6\xe3\xd5\x19\xff\xd1\x13\x24\xfb\x80\x7a\x2e\x10\xfa\x80\x41\xb2\xd4\x04\xec\xe5\x09\xb2\x03\x02\xfc\x6e\x08\xe4\xb2\x61\xb2\x86\xc1\x96\x3e\xb7\x96\x53\x98\xff\x5a\x0d\x96\xb5\xb8\xb8\xd4\x7e\xb9\xc8\xf2\xb0\xc7\xdc\xa7\x48\xb3\x01\x17\xc9\xd7\xb5\xa5\xb0\xb0\xd0\x0e\xe3\x2c\x0f\xf3\x22\xb7\x19\x0f\x24\xfe\x76\x8c\x05\x0d\xa4\x05\x1a\xa3\xf8\x1a\x61\x0b\xff\xd5\xc4\xa3\xdd\xd6\xd2\x30\xb7\xe9\x2e\x5f\x3c\xfe\x68\xa2\x70\x41\x4c\x36\x8b\xfd\xfa\x91\x92\x0f\x3a\xa9\x79\x7f\x39\xca\xe7\x9b\x26\xc6\xd0\xf2\xb0\x44\xd7\x3d\x73\xb3\x20\xd6\xc1\x2e\xf9\x53\xfa\x5e\x29\x63\xfb\xd4\x92\x89\xb2\xe4\x93\xf4\x33\x08\xe2\xdf\x98\xf8\xa6\x39\x6e\x44\x02\xb6\xe3\x04\x76\x0e\x96\xe7\x4d\x64\x97\x5c\x87\xb4\xab\x68\xdc\xc4\x21\x83\x7f\xb8\x13\x78\x3a\xb4\x0f\xf0\xf8\x48\x21\x1d\x81\x6f\xe7\x08\x9b\x5d\x0b\xe0\xc5\x40\x65\x84\xae\xd3\xe9\x23\x1d\x75\x98\x01\x1c\x58\x53\x1b\x7e\xa7\xec\xe9\x50\x06\x8a\x1f\x92\xaa\x2e\x12\x25\xa8\x22\x0a\x9a\x94\x84\xce\xb0\xc1\x45\xea\x99\xb4\x1f\x9a\x5e\xcb\x67\x04\xce\xab\x70\xef\x7c\xe0\x05\x3a\xf3\xf5\x71\xb2\x9c\x9a\xf1\xb0\xb4\x49\xe4\x1d\x39\x22\x38\x4f\x0a\xd7\xb0\xe1\xdb\xc3\x24\xb7\x91\xfe\x81\x40\xfd\x80\x62\x8e\x21\x0a\x95\x9c\x21\x4a\x48\x0c\x1d\x57\x42\x4e\x75\xe2\xf3\xcf\x13\x3a\x3c\xec\x16\xae\xd6\x80\x54\xdf\x1b\x1a\x9c\xfb\xbf\xd0\x64\xe0\xf1\xde\x52\x21\xf5\x38\xec\xcf\xf8\xfa\xe2\x35\xe5\x0a\x9c\xe2\x96\x71\x0d\x7a\x47\x15\xea\xb3\x74\x1e\x21\xe0\xdd\xbb\x51\xcf\x2b\xcd\xb7\x7b\x26\x1f\x26\x51\xd8\xab\xea\x86\x5e\xd7\x1a\x02\x87\x2b\x92\xb5\x15\x31\xf4\x2c\x37\x51\x44\x55\xcf\x0a\x77\xb7\x40\xf7\x68\x5e\x5d\x52\xcf\x91\x96\x5e\x6f\xe8\xae\x9c\x6f\x8f\xc2\x38\x1c\x09\x54\xc6\x71\x4b\x2a\xdc\xe9\x76\x6b\xfe\xf9\x76\x2f\x89\x57\x6d\x9a\xcf\x28\xa9\xc5\x3f\x51\x90\xa1\x37\x31\x46\xe8\x05\xbb\xa3\x88\x31\xce\x60\xbf\x0a\xcf\x71\xdd\x0c\x1d\x68\x67\xbd\xd4\xda\x38\x83\xed\x92\x98\x98\x06\x45\x82\x65\x7f\xec\x0d\xc2\xe5\x22\xb5\x10\x3b\x60\x36\x08\x7a\x70\xc7\x0c\xe1\x60\x4f\x70\xbb\xf8\xba\xd1\xfc\x69\x06\x3d\xfc\xdd\x65\x0d\x6d\xbc\x3c\x79\x70\xdb\x58\x9a\x14\xcb\xc3\xa4\xc8\xa7\x3c\x69\xe9\x55\x2a\x19\x38\x85\xbd\x39\x91\x78\xf8\xd0\x49\x71\x74\x4d\xdc\x4b\xe8\x00\x85\x9b\x77\x5e\x0b\x75\x9e\xaf\x3d\xe2\xa1\x43\xed\x9e\x1d\xd9\xdc\xa6\xeb\x2a\xf1\x7a\x4c\x27\x5e\x8f\x29\xf9\x88\x31\xb5\x42\x10\x90\x2f\xd5\xfe\xd9\x05\x0a\xd8\x04\x0d\xef\x1d\xb9\xdc\x84\x6b\x26\x9e\x51\xbd\x77\xec\x50\x0a\x16\xa2\xe5\x44\x1f\x80\xe5\x83\x2d\x64\xc5\x2e\xa9\xd7\x6f\xaf\x6f\x3d\xfd\x74\xbb\x1f\x66\xe4\xf0\xb8\xe4\x2f\xc6\xe4\xdf\xaa\xfa\xd9\xbf\xdd\x46\xe0\x3b\x24\x87\x5f\xd4\x2e\x94\x1e\x22\xbc\x62\x2c\x9e\xdf\x6c\x2a\x17\x84\x71\xdf\xbe\xa2\x9b\xf7\x50\xc3\x12\x30\x43\x83\x9a\x6e\x3f\x4d\xc6\xb4\xee\x5d\xd9\xc6\x61\xfb\xfe\xbc\xf6\x0b\x2f\xce\x1f\x6c\xa7\x36\x62\xf9\x5d\xd8\xe3\xab\x0a\x48\x7d\xb5\x96\x83\x22\x42\xff\x31\xb1\xf4\x27\xa9\x9a\x86\x33\xca\x4d\x3e\xd3\xc0\x6f\x51\x1e\xdf\x69\x2e\xfa\x57\xf0\x63\x6e\x28\x51\x22\x3e\x2b\xe4\xfc\xf7\x1e\xc9\xc0\xa6\x29\x5c\xba\xf2\x8f\x5d\xa7\xf8\xfe\x25\x47\x60\xee\xd1\xd0\x7d\x93\x9b\x47\x7c\xf8\x72\x0e\x7b\x53\x68\x7e\xe9\x07\xe0\x2f\x5c\x53\x5d\x8d\x54\x11\x17\xb4\xc6\xc3\x38\xce\x71\xb6\x5f\xe3\x15\x03\xa3\xf7\x0e\xce\x3f\xfc\xdd\x5d\x5a\x32\x48\xb9\xa3\x79\x11\x07\xd0\xc3\x1d\xa5\x38\x70\x5b\x91\xdb\x5d\xc7\x5c\x71\x82\x64\x25\x4e\xd6\x22\xdb\x5f\xa6\xb0\x72\xfe\xa0\x53\xcf\x2e\xa3\x2a\x16\x67\x0c\xbc\x3b\x84\x2a\x9e\xc8\x6d\x7b\x4c\x60\xd2\x7d\xd9\x12\xb4\x15\x7a\xa1\x70\xa2\xdf\x55\xfd\x41\xef\xea\x7a\x68\x12\xe7\xa9\xc9\xa6\xfd\xd7\xa2\xa7\x43\x00\x6b\xe5\x37\x08\xc3\x20\xbd\x03\x32\x80\x5f\x51\xb9\x2d\xd3\x1f\x85\x59\x86\xdf\x9b\x3f\xe8\xb5\xad\xe6\xe6\x1d\x6a\xc7\x07\x1e\xb1\x49\xd3\x64\x4d\x51\x36\x9c\x0d\x3c\x65\xc3\xd9\xc9\xa7\xb7\x03\x75\x9e\xa5\x02\xec\xee\xf2\x6f\x80\xb6\xfd\x09\x05\x83\x7c\x0d\x7b\x29\xcc\xa8\xaa\x7c\xf2\x4b\xc5\x57\x79\x15\x53\x8c\x48\xe5\x92\xd2\xa5\xdf\x54\xd8\xcd\x41\xf1\xea\xab\xeb\x55\x89\xa6\x0a\xef\x84\xa3\xe3\x4c\x56\x6d\x6c\x98\x35\x12\xab\xe6\x1e\x0d\x2d\x5f\x2b\x9c\x4c\x38\x90\x9c\xbd\x08\xec\xf9\xd2\xdb\x85\x06\x41\x6a\x62\x87\x31\x69\x28\x18\x46\xf6\xd0\x2a\xde\x5a\x43\x76\xa6\x5f\xda\xca\x54\x72\x75\x48\x3d\x5e\xc1\x12\xe7\x1b\x15\xc7\xa6\x21\xd4\x5f\xca\xef\xd7\xf8\x39\xbe\x56\xce\xc0\xab\x91\x55\xf0\x2e\x94\x50\x51\x24\x83\x2e\x90\x0c\xe7\x67\x43\x39\xa2\x08\xa9\xf6\x6f\xfe\xc9\x38\x4d\x7a\x36\xcb\x1c\x6a\x8d\x81\x33\xf4\x21\x2d\x0a\x8a\xd8\xf6\x9d\x06\xf3\x76\xa0\x6d\xd6\xcc\xfa\x94\xea\x9f\x3d\x4e\x3b\x1b\x91\xea\x2e\xea\x8f\x47\xd8\xb9\xb3\x26\x34\x3d\x37\xd7\x8e\xac\x59\xdd\xc6\x3e\xba\xa9\x80\xd5\xf5\x08\x6c\xff\x52\xdb\x74\x93\x22\xa7\x55\x89\x70\xe6\x63\x05\x84\xfc\x58\x03\x16\xd7\x47\x2e\x53\x8d\x4c\x28\x9f\x4c\x7c\xe3\x68\x5b\xc7\x69\xd2\x0f\x97\x59\x10\x11\xa9\x8b\x77\x02\xdf\x49\xf2\x8e\x3b\x1e\x97\x93\x22\x47\x7c\x89\x6e\xa4\x3b\xe4\xea\xf2\x75\xc3\x2a\x39\xd0\xce\x93\x65\x9b\x97\xb3\x58\x3e\xae\xb0\xea\x55\x08\x98\x6b\x2f\x38\xdb\xee\x1b\x42\x00\x3a\x76\x0c\x8c\x88\x68\x87\xd4\x5b\xce\x5f\x98\x5d\x7c\x44\x49\x3e\xfd\xa4\x22\xfb\x46\x23\x8b\xbd\x7d\x71\x52\x4d\x4b\xee\x9f\xf5\xc2\xd1\xfb\x64\xc5\x5c\xd7\x82\xd0\xdf\xaa\xa8\x95\xd2\x4a\x44\xce\x17\x2d\xe2\xba\x29\x42\x08\x7e\x69\x65\x7b\x39\x3d\x97\x6c\x0c\xed\x33\xad\xf2\x98\xc7\x98\xb2\x17\xc9\x37\x0a\x5e\x66\x9d\xb6\xd4\x62\xa5\x00\xcc\xd7\xaa\xf3\x79\x35\x4c\x93\x2f\x17\xa6\x1c\xd9\x2d\xe2\x20\xdd\xfa\x58\x41\x4c\x46\x61\xb4\x32\xed\x13\x8b\x0c\xcd\x92\xd6\x54\x6f\xed\x37\xf5\xee\xd3\x9c\x4a\x76\xd5\xc6\x4c\xd2\xc1\x00\x67\x42\x7d\x09\xd8\x59\xe9\x1a\x98\x28\x4a\x80\xbb\x46\xfc\x74\x45\x11\xdb\x5f\xd1\x4d\xd3\x45\x14\xad\xef\x72\x84\x50\xc1\x07\x34\x6e\x0a\x31\x3d\x5f\xed\x74\x87\xd3\xbf\x15\x28\xe1\x98\xc0\x13\xaa\x1e\xf6\x2a\x9d\xeb\x71\xd8\x43\xef\xbb\xc3\xdf\x7a\xa6\xdb\x0a\xe5\x5f\x4d\x46\xe0\xf9\x03\xc4\xb2\x53\xb0\x46\xb2\x70\xc5\xfb\x34\x43\x9d\xa3\x78\x0e\x12\xf5\x36\x45\xef\x0a\x1b\x40\xd7\x0b\xe5\xfb\xa2\x34\x80\x3a\x5c\x8e\x8d\xd3\x4d\x61\xce\x17\xb5\xaa\xcf\xaa\x53\xce\x44\xa9\x35\xfd\xf5\xc7\x3c\x54\x18\x04\xf3\x22\x81\x5b\x1e\xb0\xd2\xe3\x4f\x8b\x1b\x41\xca\x57\x27\x7e\xc3\x4c\x81\x03\x45\x49\x63\xbe\xc4\xde\xd0\x5d\x72\x81\xe1\xe3\x80\x44\x41\xf6\x3b\x8d\x3f\xce\x9a\x1b\x18\x7f\xc0\xc5\x6e\x05\x2a\xb4\x3a\xa6\x08\x34\x4e\x92\xd7\x2a\x28\x9e\x06\x45\xc8\x6e\x98\xa2\xba\x80\xfd\xf3\x1d\x85\xb4\xfd\x4e\x43\x32\x6a\xbe\xbd\x96\x26\x4c\xd7\x08\x7f\x07\xc9\x64\xbe\x76\x84\x07\xbd\x24\x06\x50\xa2\x7a\x8c\xdc\x09\xd4\x42\xbe\x53\xa9\x1e\x7f\xe1\x5f\xee\x7f\x9c\x46\x4a\xf0\xe5\x8a\xbd\xe7\x9c\x16\x1b\x7c\x3b\x68\x3d\xe7\xf7\x82\x5a\x84\xb7\x95\x32\xc5\xb4\x92\x2a\xfc\x1e\xa5\x71\xe1\x31\x63\x38\x71\x38\xdd\xc6\xc3\x60\x8b\x81\x5e\x1d\xfd\x46\xec\x9c\xc1\xb9\xdb\xb5\xa1\xc5\xef\xef\x29\x47\x7a\x77\xa7\x9c\x26\x91\x70\x2f\x27\x16\x6e\xfe\x56\x53\xb5\x38\x0d\x57\xd9\x76\xc3\x99\xdb\xd3\xf1\xf0\x8b\x3d\x1b\xde\xd7\x1a\x85\x91\xcd\xf2\x24\xb6\x4c\x66\x25\x29\x0a\x9a\x5f\xd8\xbb\x1b\xaa\xb2\xf3\x1a\xbd\x0f\x93\xbe\x54\xba\x76\xc2\xa8\xff\xa8\x4a\x0e\x33\xd4\x09\x2f\xf8\x03\x24\xb3\xf9\x28\x04\x96\x55\x08\x65\xc8\x04\x39\x2d\x0b\x6f\x4c\xaf\x06\x0a\x9c\x74\x54\x89\x62\x9d\xa9\xc8\xb5\x95\xe6\x07\x9e\xcb\x1d\x80\x46\xb9\x79\x26\xf0\xb4\x00\xd7\xe8\xec\x15\x1a\xbe\x86\x60\x24\x1b\xa7\x66\xbd\x55\x69\x39\xf7\xd8\xa5\xcd\x40\xe0\x94\x50\x8b\x44\x24\x8d\x04\xd7\x2f\x94\x16\xd3\x37\x14\xdd\xd9\xb5\x4a\x99\xd8\x77\x41\x7c\xa3\x41\x95\xe7\xd9\xf6\xaa\x8d\x97\xad\x11\x7c\xbb\x30\xdc\x97\x9f\xe2\xeb\xda\x21\x3a\x7f\xb0\xbd\x36\x0c\x73\xbb\x66\xb2\xe1\x94\x92\xac\x38\x4a\xcf\x8d\xbd\x81\x67\x80\xed\x3c\xa5\x29\x18\x6c\x44\x4c\x58\x33\xbe\xc9\xf6\xcc\xc4\x27\xbd\x7e\xac\x58\xf8\xcf\x60\x97\x0b\x4b\x82\x6f\x26\xbf\x18\x68\x29\xe7\xde\xd0\x7e\xb9\x28\x7d\xb2\x8a\x14\x86\x47\xbf\xd4\xd0\xeb\x5f\xf8\x8d\xf6\x0b\xb3\x2f\xb5\x14\x59\xe7\x09\xa0\x7f\x85\x30\x6d\x7b\xf1\x78\x61\xa1\x4d\xe2\x6c\xae\xf7\xe1\xac\x4a\x48\xd7\x89\x93\xcb\x58\x2e\x37\xcb\x96\x82\x64\x3c\x31\x5a\x1f\xb6\xc0\x35\x81\xea\xc8\x0c\xe5\x8d\x1d\x21\x50\xf9\xbc\xd8\xf0\xff\xb5\x91\x9f\xbd\x8c\x33\x2c\x13\x9b\x39\x56\x7d\xcf\xb0\xaf\x1c\xcf\xe5\x02\x04\x3b\x88\x46\x2e\x55\x5a\xfc\x4b\xeb\x28\x5a\x2b\x8f\x29\xf0\xea\xd8\x54\xca\x38\x67\x95\x30\xc4\xd9\x26\x30\x59\x64\xe2\x3e\x39\x43\xce\x1c\x2c\xfa\xfa\x90\x43\x3d\xe4\x76\x9c\xed\x56\xad\x26\xa8\xc3\x48\x27\xb8\x2f\x03\x3c\x8e\x14\xb7\xb4\x96\xfb\x05\x7b\x0a\xc7\x04\xc2\x5a\x56\x6b\xa0\x03\xe4\xcf\x3e\xdb\x79\x90\x34\x40\x6f\x98\x86\x59\x1e\xca\x19\xe8\x44\xbb\x7d\x3a\xf9\xdf\x07\x5e\x24\x82\x56\x63\x9a\xc4\x61\x0f\x02\x26\xaa\xb7\xe5\x80\x67\xf5\x76\xb9\xc5\x23\x15\xf9\xb8\x5a\x92\x6c\x3f\x95\x22\x97\x93\x3c\xb7\xf1\xb4\xea\x6f\xd8\xa9\xb4\x86\x8f\x20\xad\xeb\x12\x15\xfb\x67\x1d\x97\x8b\xf7\xb8\x7a\x69\x98\x59\x90\xff\x62\x4b\xdf\x99\xa8\x96\xbf\x2b\xba\x77\xf3\x14\xbc\x3b\x29\xdb\xf9\xef\x88\x4c\xba\x8c\x6d\xb1\xe8\xbc\x6b\xbf\x27\xeb\x30\xb0\xc5\xc5\xf2\xbf\x11\x8e\x47\x91\x9d\x51\xd8\xbe\x0b\x0a\x54\xdd\x65\x86\x59\xac\x34\x39\x6f\x95\xf8\x27\x5c\x1c\x56\x80\xd3\x18\xd5\x30\x0e\x33\x47\x9c\xd4\xd4\xd4\xad\xa9\x80\x22\x03\x46\xb1\x69\x1f\x2c\x9e\x50\x0c\xfa\x6f\x69\xa5\x94\x6f\x4c\x94\x26\xc8\x25\x45\x4d\x1e\x81\x3a\x04\x66\xe9\x23\x3a\xf7\xa4\xf8\xa3\x67\xbc\xdc\x1a\xb8\x46\xfe\x84\xff\x5e\x71\x1b\x50\xf6\x8e\xbd\x45\xe0\x27\xce\xa3\x27\x9f\x15\xf0\xf0\xfe\xfc\x2f\x4a\xf6\x7a\x17\x9a\x24\x44\x27\xaf\x3c\x0d\xf8\x1f\x3a\xdb\xb7\xd6\xa1\x43\x44\x79\x4f\x91\x09\x4e\xdd\x3f\x54\x50\xe3\x3f\xac\x54\xb2\x56\xc3\x1e\xf2\x4b\x22\x8f\xd5\x5a\xf4\x2c\xd0\x75\x29\xea\x41\x61\x23\xd6\x4d\x83\xd7\x76\x0a\x4b\x8a\x6f\x5c\x55\x77\x6c\x62\x1b\x45\x61\xcb\x1f\xfc\x17\xb4\xe4\x6e\x5d\xe5\xfe\x85\xd9\x76\xe9\x6d\xaf\x09\xa3\xa8\x03\xfa\xee\xaf\x04\x3c\xf3\x4e\x62\x64\xfb\x21\x34\x37\xd7\xb6\xf1\x72\x18\x5b\x9b\xca\x77\xc0\xc3\xb9\x49\x73\xcd\xa2\xee\x38\xd0\xc5\x55\x53\x52\x7c\x83\xd8\x64\x2f\xdb\x55\x7a\x60\x81\x02\xa9\xaa\xde\xf9\x07\x82\x97\xc6\x26\x4f\xc3\xde\x0a\x01\x8a\xe0\x28\x9c\x50\x4a\xae\xe7\x74\xc6\xf4\x56\xa0\xf5\xd5\x46\x63\x13\x33\x95\xfe\x4b\x0e\x03\xe3\xcd\xd9\x89\xa6\x21\x62\xee\xb3\x96\x6f\xc8\xd4\x6a\x01\x47\x94\xfd\x5e\x30\xeb\x04\x15\x43\x19\x92\x49\xa6\x00\x78\xba\xca\x99\x33\x69\x11\xf6\x1f\x5a\x67\xb7\x56\x34\x49\xe9\x43\x7c\xa3\xe2\xb3\x41\x18\x85\xf1\x32\xfa\x45\x51\x0f\x07\x27\xab\xe3\xc6\x98\x9b\x73\xdc\x18\xe5\x76\x02\x0b\x13\xef\x85\x3a\x49\xfd\xc1\xe7\xdb\x43\x6b\xa2\x7c\xb8\x4a\xca\x42\x5e\x1f\xe6\x14\x05\x45\x02\x96\x78\x42\x67\xcb\x7a\x51\xd1\xb7\x34\xe6\xc2\x8b\x44\x9e\xaf\x63\x7e\x74\x8a\xa3\x75\x3d\x2d\x3a\x58\x93\xd4\x2a\xb9\x98\xb3\x4a\x2e\x46\x17\x3e\xf2\xc2\x66\x7d\xb3\xbe\xc7\xb7\x60\xfe\x98\xdc\x30\xd8\xe3\x4d\x55\x1e\x66\x8a\x3f\xe4\xc0\xa6\x00\x47\x45\x8e\xe9\x28\x19\x67\x94\x69\x98\x9c\x05\x8e\x22\xcc\xb9\x60\x6b\xcb\x27\xc6\xff\x7f\x0d\xc3\x2e\x8a\x3f\x7e\xd8\x47\x26\x1e\x26\x09\x87\x06\x0e\xe5\xe5\x34\x89\x36\x15\x3d\x6d\x19\xb9\x8e\x23\xb3\xce\x40\x84\x25\xaf\xeb\xa3\x38\x93\x1e\x75\x7b\x75\x6c\x53\xa9\x0b\x21\x39\x7a\x77\xa2\x68\x1a\xb8\x30\xc1\xed\xea\x2a\xa2\x07\x22\xe9\xa1\x72\x16\xb0\x00\x6f\x91\x59\x02\x5c\x0c\xfe\x18\x13\x35\x04\x95\x9a\xac\xcf\xe8\x1d\x9b\x54\xfa\xc9\xcb\x27\xe5\x5e\x31\x65\xa0\x1f\xde\x50\x7c\xc8\x63\x6b\xfb\xfc\x4e\x42\x5d\xe7\x5b\x93\xde\x53\x0c\x04\x26\x5b\xb1\x7d\xe2\x16\x01\xb6\xe0\xb0\xd6\xd8\xb8\xcf\x5b\xc0\x33\x1d\xcf\x3a\xc8\x9b\x4f\x79\x80\x7c\x05\x4e\xfa\xf7\x15\xaf\x47\x2f\x49\x22\x02\xca\xc2\x8e\x5c\xa2\x8f\x23\x54\xda\x41\xd5\x74\x49\x40\x3c\xaa\x08\xb2\x4d\xba\xd7\x17\xd7\x7f\x4a\x03\x82\x82\xd7\x63\x1d\xef\x67\xed\x21\xac\x8f\xd7\x0f\x14\x21\xb6\xab\x13\x4f\x21\x7b\x5f\x07\xb4\xc7\x02\xc5\xa1\x7e\x11\x9b\x80\xf9\x83\x70\xac\x55\x5c\x11\x69\xc4\xf1\xe3\xb9\x6c\xe3\xd0\x44\x9c\x4a\x6b\x92\x95\xf5\x26\x52\x0e\xd2\x96\xcf\x0f\x9d\xc3\xa3\x88\xa9\x6b\x90\x71\x49\xd2\xbe\x35\xa8\xb1\x62\x62\xbf\xa2\xe0\xf0\x5f\x69\x42\x12\xc4\x26\x5d\xa7\xb4\x3b\x1e\xf6\x26\xd0\x99\x30\xe5\x17\x95\xa0\x09\xf2\xf7\x82\xab\x6f\x00\x1d\x66\x63\xdb\x0b\x4d\x14\x66\xe8\x1c\xc1\xf4\xa2\x39\x06\x2e\x3a\x97\x56\xa5\xfc\xf2\x84\x6a\x09\xca\x6c\x5f\x28\x8d\x1d\x91\x9e\x2b\xd6\xfe\x95\x3b\xe5\x46\x66\x10\x26\x59\xd8\x52\x11\x1f\x38\x48\xf9\xba\x81\xe0\xb4\x3d\x1e\xae\x67\x61\x8f\x3a\x53\x1c\x3a\x03\x42\x2d\x7c\xed\x08\x69\x7a\x49\x3c\x48\xd2\xd1\x74\x15\xa8\xf5\xc2\x2c\x3b\x07\x5c\xcd\x40\x94\x03\x2c\x89\x94\xae\x1b\x08\x89\x5e\x5c\x7a\x0c\x93\x2c\x5f\x44\x33\x87\x58\xe1\x8c\xa2\x0f\xfa\x48\x13\xb2\xb3\x19\x80\x9f\xb1\x45\x9b\xdb\x35\x11\x3a\xb2\xa7\xcb\xf0\x58\x9c\x3e\xb6\x16\xf0\xa5\x47\xc7\x12\x3e\x49\x23\x88\x8f\x9c\x0c\xbc\xe2\xfe\x29\x95\x6f\xfc\x58\xf3\x94\x1f\x6a\x04\x03\x0d\xd7\xfb\xa9\x29\xa2\xb0\x47\xcb\x50\x2a\xa7\xaa\x8a\x5a\xc9\x8f\xbc\x52\x9e\xaf\xe5\x03\x61\xa3\x43\x39\x90\xaf\x9b\xfa\xdc\x7a\x44\x6d\xa6\x88\x4d\xcf\x29\x0c\xc1\xb9\xca\x57\xaf\xdb\x98\x0e\x40\xd7\x48\xec\x9c\xcb\x0f\x28\x9e\x17\xd0\xf4\x94\x57\xbc\xbb\x8c\xe1\x14\x68\x9d\xb4\x04\xdb\x57\x86\x61\x64\xb4\xf4\xbe\xc3\x07\x2d\x2c\xb8\x42\x7d\x7d\x85\x2f\xb5\x47\x66\x39\x4e\xa2\xd0\x88\xf1\xe6\x81\xc3\xcf\x20\xa6\xbb\x82\x07\xc0\x3b\x5f\xf1\x32\x3a\x26\x1f\xda\x34\xe4\xe4\xa0\x70\xb3\x3e\x88\x87\xcd\x0e\x47\x26\x7e\xa8\x9c\x7e\x1c\x57\x48\xa6\xc0\x44\xfc\x1f\x58\x49\x9c\x73\x0a\x54\xad\x12\xc9\x4a\xfe\xab\xc0\x93\xb6\x33\xca\x53\x7a\x44\xf0\xe8\xd2\x24\x22\x99\xfb\xac\xe8\x16\x69\xd7\xc4\xd3\xde\x05\x38\x4b\xdf\x87\xea\x2a\xd8\xff\x9c\xbc\x75\xf9\x7d\x38\x94\x2f\xa9\xe3\x3b\x4a\xd6\x4d\x94\x03\xfa\xce\x26\x39\x50\x7c\x55\x9b\x8d\x82\xe8\x6c\x35\x5e\x65\x2f\x17\x3f\x77\x52\x43\x62\x4f\xba\x64\x0a\x11\x5e\x43\x72\x15\x85\xc4\xc3\x13\x45\xf0\x0f\x34\x15\x32\x92\x37\x55\x04\x40\xc4\x17\x29\xe2\x32\xf8\x05\x6f\xe0\x63\xd2\xe0\x43\x6b\x40\xe0\x71\xe5\x7b\x22\x09\x73\xb7\x52\xb8\x5e\x1e\x99\x19\xaf\x86\xf8\x13\xea\xfd\xe5\xeb\x89\x87\xa2\x7e\x0b\x0f\x0e\xdc\xe0\x5d\x05\xcc\xdb\x7a\x20\xee\x31\xb6\x6b\xcc\xbc\x86\x47\x78\xa7\x42\xb4\x52\x51\xe3\x6f\x39\xa9\x48\x80\x0e\xb0\xfe\xde\x99\xf8\x28\x60\x9d\xda\x93\xca\xb7\xdb\xba\x48\xc3\x21\x6d\x83\x8a\x54\xe6\x8c\x9a\xd7\xbd\x1d\xdd\x18\xe7\xbb\x34\xfb\x61\x8a\x6a\x2a\xa8\xbc\x94\xfc\x99\xaf\x30\xde\x76\x1e\x4d\x14\xc6\xb6\x18\xc3\x2c\xb3\xe0\x89\x52\xf0\x3d\x1d\x3c\x28\xea\x1f\xdb\x3c\x4d\x7a\x49\x2a\xdd\x3b\x6e\x52\x3d\x13\xf1\x61\xd5\x95\x23\x4c\xc4\x7b\x2a\x6a\xc7\xae\x05\xf9\x63\x55\x6c\x7b\x98\x0e\x76\x97\x8f\x78\xd1\x25\x27\xce\x22\x0a\x97\x43\x48\x95\x3e\xaf\x68\x6e\x83\x16\x8c\x3d\x0c\xfc\x2d\xdd\xb2\x7c\xc5\x6b\x84\x27\xb9\x89\x1e\x55\xb2\x0b\xaf\x61\x94\x51\xaf\x98\xea\xf8\x64\xdc\x26\xb9\x16\xc8\x19\x9f\x51\x27\xc7\x0d\x22\x21\xc1\x89\x72\x41\x13\xcc\x6e\xea\xae\x00\xc8\x3c\x60\xde\x3f\x49\xfe\x8e\x08\x82\xf8\x48\xf8\x17\xd8\x68\x58\x6b\x3b\x37\x94\xb4\xce\x3d\x55\x10\xa0\xe4\x42\x96\xcf\x78\x27\xf6\x18\x1d\x45\x95\xd1\x10\x09\x07\x8f\xe0\xf8\x0f\xba\x95\xf2\x96\xf2\xf9\x46\x26\x0d\x13\x98\x6f\xd1\x01\xf0\xc5\x9b\x1b\xae\xac\x32\xb2\x26\xce\x77\xd3\x40\xd1\x2e\xf9\xf8\x53\x80\x26\xc3\x2c\x7c\x16\x43\x8d\xe3\xf0\xde\xc4\xcb\xe1\x1d\xc7\x2e\xc5\x39\x83\x64\x2e\xad\xe6\x2f\x7e\x9a\xd0\x6f\xd8\x7c\x7b\x37\x3c\xca\x30\x1f\xa6\xc9\x1a\x3a\x50\x1d\x81\xaf\xa2\x52\xd9\xee\x2e\xed\x5b\x6c\x0f\x22\x93\x0d\xd7\x55\xcf\xea\xa6\xee\x59\xd5\x0d\xce\x2f\x9b\xde\x4a\x96\x70\xf3\x95\x60\x62\xe9\x95\x04\x14\xeb\x87\x39\xb5\x3d\x13\x45\x19\x79\x55\x0e\xd8\xee\xe2\x8d\x33\x01\xd8\x1b\x1c\x11\xd1\xd2\xfe\x25\x47\x44\xb4\xdd\x41\x7b\x71\xfe\x60\x7b\x4d\x82\xd6\x46\xe5\x74\x45\x7f\xf7\xcc\xe8\x99\x19\x9a\x29\xf8\xc9\x37\x54\xb9\xef\x0a\x4d\x27\x5b\x3f\x3c\x37\x42\x08\x06\xbf\xe2\xbc\x7a\xb8\x53\xd7\xb5\xdc\xdf\x1e\xa7\xb6\x17\x66\xba\x6f\xf0\x92\xea\x1b\xac\x37\xf6\xee\x9f\x6d\x67\x6b\xe1\x00\x5a\x63\x38\xa2\xa1\xe9\x87\xd0\xf1\xbc\xce\xb8\x9c\xd0\x32\x31\x76\x3b\x59\x0d\x4d\x9f\x78\xd4\x3e\x1e\x95\x52\x30\xb2\xea\xa2\x5d\x4f\x33\x23\x0c\xa7\x3e\x8f\x73\x41\x71\xdd\xc2\x27\xe2\xff\xdf\xd0\x0e\xfa\x52\x3b\xb5\x5f\x2e\xc2\x54\x80\x62\xcc\xf3\x80\x03\x42\x48\x1f\x7c\x4e\xc1\xbe\xd2\x1b\x9a\x78\xd9\x66\xbb\x55\xab\xf0\x2e\x0a\x2f\x60\xca\x77\x6f\x94\xaf\x2d\x6e\x9b\x27\x4e\x04\xfa\x40\x34\x9f\x95\x7e\xde\xad\x40\xa9\x66\xd4\x9b\x26\xf6\xcf\x96\x93\xb1\x2a\x2a\x6c\x42\x20\xef\xbd\xfd\x7a\x7b\x78\xe9\xc3\xa5\x49\x6f\xc5\xe6\x7c\xc0\x3a\xe1\x91\xf2\x57\xf9\xa6\x02\xf9\xef\xdb\x34\x26\x41\x5c\xb8\x9e\xac\x2b\x2d\x69\x73\xf2\xee\xf8\x5f\x02\x9d\x5b\xf7\x9b\x3d\x2e\xb2\x29\x5f\xc0\x22\x7b\xb7\xc5\xc5\x31\x56\x59\xc4\xc1\x8a\xb9\x4c\x4d\xcc\x6d\x96\xc2\x80\xea\x8f\xad\x4d\x8d\xc5\x55\x9a\xca\x24\xb5\x6a\xe3\x19\x7a\x07\xa1\x1f\xa5\x39\xc0\xe7\x78\x18\xf9\x5f\x54\xfe\x14\xc4\x9d\xc2\xe8\xba\x7d\x78\xe5\x58\x1a\xad\x33\x3f\x19\xcc\xdf\x63\x1d\x2f\x70\x8c\x27\xaa\xe4\x59\x91\x8a\xbb\x37\xf1\xc2\x8d\x7d\x9b\xd9\x9e\x17\x6e\x5c\x72\xd4\x92\x3e\xa9\xff\xb1\x1a\x82\x7e\x22\x0d\x35\xd8\x2c\xe0\xff\x82\x73\x72\x23\x50\x44\xf7\x37\x26\x5e\xc7\xa7\xa9\xa3\xe6\x25\xe2\x5b\xb5\xe9\x34\xe5\xaa\x59\xfe\x40\x09\xa1\xbe\x86\x23\x46\xaa\x63\x34\xaf\xe8\x35\xf9\x2b\x4d\x02\x3e\xb6\x24\xf5\x52\x4e\xb4\x6c\x80\xd6\x8b\x4b\x6e\xfd\x37\xf4\x3c\x64\xc5\x32\xb5\x0b\xbc\x30\xeb\x55\x68\xbd\x22\x6d\x53\x73\xef\x20\x54\x6c\x69\x4c\xe5\xab\x08\xdb\xcf\x3b\xe4\x11\x71\x10\x3a\x54\x0d\xce\x70\x54\xa9\x34\x12\x1a\xa9\x8e\x4b\x0d\xc8\xcf\xd2\x67\xb4\xa3\x6e\x04\x58\x25\x9c\x7b\x1c\x0b\x7c\xed\x9c\x98\x7c\x98\x92\xd1\x72\x19\x70\x2c\x1c\xd1\x4d\xa7\xb9\x16\xb8\xc1\x93\x0a\x89\x99\x10\xbd\x10\x9c\x24\x4d\x9f\xc6\xd7\xaa\xc5\xb6\x8c\x71\xd3\x65\xda\xbd\xfb\xc5\x1a\x7e\x4b\xfd\xc8\xb7\x9a\x6a\xdf\xe3\x70\x34\xd6\x78\x2a\x50\xe1\x0a\x65\x4e\x83\x0e\x71\x32\x18\x94\x91\xc6\x32\x6a\x7c\xd2\x99\x4e\xc3\x27\x25\x0b\xef\xe3\xde\x0e\xbc\xbc\x47\x32\x32\xbd\xa1\x12\xfe\x62\x75\x17\xbe\x51\x49\x8c\x41\x92\x1a\x10\xa0\x3e\xcb\x91\x27\xc8\x90\xf8\x5a\xc9\xf7\x65\xb9\x49\xc7\x49\x18\xe7\x96\x3d\x3c\x6c\x96\x1f\xe9\x9d\xf3\x23\xc5\x95\x15\x27\xdc\xc4\x86\x34\x2a\xf2\x58\xae\xe9\xa3\x5c\xd5\xd2\x1f\x41\x2b\xd9\xf5\x81\xfa\xc6\x00\x60\x5c\xa4\x5c\xae\xd4\x02\xde\xab\x0d\xee\xdc\x3c\x35\xba\xd3\xc4\xe1\x4c\xf8\x50\x15\xad\x9b\xe0\xcb\xdc\x67\xc7\x58\x4f\x64\xed\xef\xd3\x64\xf3\xb5\xcf\xf1\xa5\xe5\x9f\xee\xf2\x8b\x69\xd7\x86\x4a\x91\x1f\xc7\xe3\xe3\x90\x00\xc9\x24\x79\x11\xbf\xc9\x92\x33\x0e\x50\xe3\x99\xf7\x4e\x35\x51\xb4\x94\xc6\x96\x20\x8f\x60\xba\x07\x08\xf0\x26\x19\x50\xa9\x8a\x62\xd8\xc5\x7a\xeb\x80\xa6\x97\xac\xed\xf1\x2c\x26\xe8\x0f\x70\x6d\x48\x0e\x35\x09\x6e\x3c\xe4\xe7\x76\x12\x5e\x81\xaf\x37\x54\xd4\x7e\x1b\xcb\xab\xa9\xa7\x93\x4c\xb4\xa8\x57\xaa\x20\xe4\x42\x03\x88\xbf\x37\x34\x51\x64\xcb\x03\x75\x4a\xc1\x0a\xb8\xef\x02\xa7\xeb\xed\x4a\x53\x91\x77\xfd\x32\xd3\x4b\x45\xa8\x49\xaa\xc3\x2d\xa5\xa6\xe5\x73\xee\xb9\x89\x67\x14\xd5\xca\xa9\x40\xf5\x43\xbd\xa3\x02\xb6\xbb\x2a\xb2\xb8\x4a\x75\x26\x01\xd8\x3c\xa6\x7a\xe6\x87\x16\xfe\x66\x63\xe5\xcd\xa7\x23\xd7\x4c\x94\xb7\x14\x7d\xc5\x11\xcd\xf9\x7d\xa4\x31\x33\x32\x0c\x99\xa9\x40\x6a\x0d\xf4\x09\x29\x42\x34\x14\xf7\xb3\x3c\x4d\xca\xb1\xcb\x5b\xd4\xd3\xe6\x78\x18\x15\xac\xf5\x29\x9d\xd2\x5f\x4e\x6d\x96\x8d\x2c\xb8\xfe\x00\x33\x63\xde\x19\x6c\x18\x56\x88\x14\x89\xfe\xc7\x74\x99\x73\x64\x77\x29\xa4\x06\xd7\x10\x45\xa3\x88\xbe\x43\x1a\x02\x7c\x67\x26\x67\xa7\x18\x49\x3b\xf1\x5d\xb5\xe7\x9b\x0e\x08\x1b\x2f\x9b\x65\xa1\x71\x12\x9c\x9d\x12\xf0\xab\xb7\x2d\x1c\x3a\xd4\x5e\x0e\x4d\x9c\x4b\xcf\xb3\xf4\xf1\x29\xd4\xe7\x55\x95\x5e\xed\xdb\xa8\x34\xc7\xeb\x54\xef\x67\xc2\x79\x3c\xba\x63\x9f\x77\x2d\x1e\xe7\x54\xe3\x31\x88\xc2\x1d\x25\xc0\x53\x8a\x2d\x37\xcb\x53\xb0\xeb\x6a\x6e\xff\xcd\x8a\x64\x8a\xaa\x80\xf5\x87\x36\xa3\xa4\xa7\x13\x98\x78\x23\xf0\x68\x89\x37\x2a\x38\x99\x34\x1c\x3f\x4c\xdf\x89\x9a\x0e\xb9\x31\x5b\x97\xb5\x1c\x3e\x67\xf3\x11\x47\xdc\x57\x9c\x63\x1f\x94\xb1\xe7\xd6\x65\x0c\xbe\x56\xdd\xc0\x2c\x43\x8a\x45\xe8\x20\x1a\x48\x16\x7a\x58\x54\x92\x88\x76\xf0\x65\xc5\x0e\xa3\x9a\x73\x7b\x49\x9e\x87\xd9\xb0\xa5\x38\xd7\x4f\x2a\x78\xb9\xf6\x34\x3d\x3e\x51\xa8\x23\x40\x91\x24\xa0\x3c\xef\x91\x98\x5e\xcf\x66\xd9\x43\xf4\xb6\x80\x40\x9f\x57\x80\x93\xd7\x54\xaf\xdc\x1d\xc5\xa1\x71\x0f\xc7\x02\x5c\xdc\x9b\x18\x1e\x87\x93\x71\x09\x90\x8b\x01\xf0\x8e\x0d\xb9\xf4\xb1\x8d\x63\x0b\xbf\xc1\x49\xee\xfa\x62\xd9\x66\xb0\x47\xb2\x1f\x16\xd1\x02\xcc\xaf\xe6\x97\xd3\x18\xda\x71\x92\xda\xac\xa5\xf5\xaf\x5b\xfb\x3d\x8d\x87\x9e\xec\x6e\xb2\x36\xad\x21\xd9\x95\xfa\x80\x57\x35\x78\x7d\xa2\x78\xb6\x5f\x0f\x2a\xc7\xf3\xb2\xcd\x41\x76\x88\x73\x14\x56\x13\xc3\xb5\xa5\x74\x03\x4e\xea\x6a\xe9\xa6\x42\x0a\x84\x71\x98\x87\x24\xd7\x44\xcb\x46\x70\xe7\xad\x45\x8f\x47\xf7\x0b\xbf\x67\x23\xdb\x15\xd2\xa0\x85\x05\x3e\x0b\x19\x21\xcc\x37\x81\xa7\xc7\x3b\x74\xe8\x57\x7c\x6b\xfa\x25\x9a\x48\x1c\x29\xc0\xce\xe2\xe0\xd8\xd3\xc1\x26\x06\x2e\xec\x38\x00\x5f\xf2\xde\xe5\x8f\x38\x72\xd2\xa5\xe7\xa5\x6e\xf6\x3a\xb9\xc7\xd2\xd1\x5d\x3e\x2b\x9c\x85\xbf\x20\x78\x21\xf2\xf0\xdf\x0c\x14\x19\xf7\x45\x3a\xf3\x00\x5b\x7c\x85\x88\xfd\xf0\xe1\xb3\x1a\x57\xfc\x7b\x30\x6e\x08\x20\x2f\x90\x60\x04\x72\xa7\x47\x11\x0b\xe1\x2c\x7a\x0c\x68\x01\x7c\x2f\xa0\x91\x58\x5f\xcc\x61\x0c\x7f\xed\x2e\x7c\x18\xd6\xd6\x09\xd4\xa1\xc9\x8a\x18\x48\x11\x5d\xaf\x75\xda\xec\x9f\x6d\x8f\x92\x98\x04\x30\x33\x69\x2e\x16\xc2\xec\x0a\x93\xb6\xea\xf2\x5e\x71\x5e\x33\x0a\xcf\xd7\x54\x12\x19\xa9\x5d\x16\xf3\x50\x21\xf8\x20\x49\x7b\xb6\x3f\x4d\x2f\x86\xd3\xf7\x9e\xaa\x84\x3d\xd1\xf1\x01\xdf\x14\x25\xd8\x84\x14\xf0\xa9\xfa\xee\xe9\xf5\xa7\xb5\xef\x71\x6a\xe2\xb7\x48\x4b\x55\x62\x79\x4f\x49\xa0\xd1\xb0\x0d\x07\x26\x8c\x04\x61\xc0\xa5\x4e\xcd\xb8\x86\xb9\x62\xf1\xaf\xc9\x53\x92\x29\xee\x8f\xc2\x38\xcb\x53\x5f\x41\x63\x2c\x26\x0d\x82\xe0\x32\x3f\x59\x31\x31\xd0\x84\x9f\xf2\x56\x0e\x3b\xcf\xb5\xb6\x95\xcf\x09\x70\xe0\xbd\xda\xf9\xfb\xe2\xfc\xc1\xb6\x09\xd3\x5e\x6a\x06\xb9\xee\xfd\xc6\x57\x48\x03\x95\xf7\x42\xfa\x36\x7b\xbc\x5c\x95\x58\xc6\x5b\x30\x55\xcc\x05\x4d\xab\x12\xff\x70\x41\xa5\x6a\x77\x6e\x38\x86\x91\x37\x9f\x02\xf8\x93\x51\x93\x13\xaf\xef\x8b\xdd\x4d\x47\xc8\x3f\xfb\xbb\x1b\xaa\x4d\xef\x1e\x80\x8e\xe2\xc3\xd0\xa2\x21\xcf\xf4\xb7\xff\xff\x50\x22\x96\x8e\x33\x4c\x9a\xd3\xde\x2b\x07\x17\x89\x9e\xdd\x58\xe2\x14\xfb\xff\x8f\x7f\x9b\x62\x62\x80\xe1\xef\x36\x95\x15\x13\x82\x26\xfa\x26\x25\x1a\x77\x69\x58\xf2\xa9\x9c\xac\x48\xc7\x69\x98\xd9\x56\x8d\xcd\x59\xd8\x08\x1a\x00\x4f\x83\x30\x1d\xc9\x29\xcf\x8d\x6a\x13\x15\xec\x1c\x6d\x0a\x03\x07\x49\x6a\x7b\x26\xcb\x77\x29\xee\xd2\x6f\xe1\x50\x10\xc0\x43\x79\x10\xbc\x4e\x63\x29\x94\xdd\xde\x03\xbc\x18\x28\xd8\xcd\x9b\x2a\x05\x3a\x4c\x8a\x34\xdb\xe5\x5b\x46\x4e\x2b\xe4\xde\x5b\x9a\x87\x60\xb3\x42\x38\xad\x4a\xef\xdc\x72\x25\xbd\xe8\x1e\x74\xd9\x0f\xb3\xbc\xf4\xd1\x66\x7c\x44\xf3\x9f\xf1\x9e\x08\x17\x4f\x10\x5f\x41\xe9\x06\x94\xfe\x9e\xa8\x79\x95\x3f\xcf\xff\x5e\x4b\x70\xbc\xb8\xf4\xb9\x76\x2f\x32\xe1\x88\x4d\x88\xc4\x83\xaa\xbd\xfd\x64\x0d\x78\xb3\xb0\x70\xa0\x6d\x5f\x19\xdb\x34\xb4\x71\x4f\x36\x22\x4c\xca\x15\x05\x8f\x67\xa8\x0f\xa2\x9d\x0f\x2b\x91\xc6\x33\xe3\x67\x78\xb6\x1c\xdd\xb5\x67\xb7\xfa\x50\x1d\x3b\x03\x6b\xf2\xa2\x8c\x5d\x77\x29\xff\xff\x5b\x13\xa5\xe0\x7d\x42\xe9\xc2\x5e\xd6\x2a\x84\xec\xba\xc2\x98\xff\x0e\x3d\x17\xf6\xea\x69\xa7\xd5\x96\x45\x66\x5d\x13\x14\x30\xcd\x9b\xc4\x46\x3e\xbd\x64\xbf\x5c\x90\x60\xb1\x12\xe4\xfa\x88\x01\x0c\x2c\xe1\x0a\xe4\xa9\xab\xe0\x96\x5f\x23\xe2\xae\xf5\xac\xe2\x52\xdb\xc4\x71\x52\x94\x83\xa7\xd5\x49\x7e\x4e\x56\x8c\xaf\x55\x46\x81\xfc\xc8\x64\xdd\xb2\x52\x23\x6a\x3c\xa8\x77\x3a\x26\x72\x27\x2e\x71\x6e\xf2\x88\x7f\xec\xb1\xa1\x14\x8c\xa8\xa2\xd1\xab\x8a\x5c\x9a\x67\x81\x0f\x6d\x0f\x3a\x79\x18\xab\x47\x3b\xaa\xfb\x16\xc5\x09\x74\x66\x3c\xb2\xe1\xcb\x29\x75\x32\xb9\xe7\xe6\xdb\xd6\xa4\x20\xc7\xc1\x9c\x9f\x09\x7c\x9f\xee\x19\xe5\xf8\x18\xbb\x1c\xf2\x7a\x13\xa9\x0b\x8f\xd7\x3a\xac\xda\x7d\x7b\x69\x98\x87\xbd\x0c\x02\xb3\x98\xee\x1b\x81\xaa\xc9\x9c\x52\xec\x6f\x47\x35\x89\xe3\xa9\x4a\x3e\xc7\x17\xfe\x92\x22\x8f\x2c\x0b\x57\xc2\xb6\xde\x0e\x54\x13\x0f\xb2\x0b\xd8\x77\x8f\x38\x9a\xfc\x62\x9c\x26\x15\xd8\xf0\x35\x15\x72\x5e\x6b\x14\xb6\x5b\x4e\x4d\x18\x57\x78\x2c\xb9\x8c\x20\xc0\xf0\xc7\x2b\x64\xe0\x21\x93\xf6\x55\x12\xd7\x7c\x53\x1b\xe7\xcf\xb7\x07\x26\x2d\x4f\x25\x27\x09\x09\x94\xb7\xd3\xd9\x75\x5d\x20\xbf\x57\x2b\xaf\x7a\xc8\x5c\x2a\xe4\x47\x70\x63\x2e\x63\xc9\xf2\x8d\xea\x53\x1c\x9b\x34\xcc\xd7\xa1\xe1\x28\xc4\x6b\x1e\x52\x78\x37\xf0\xf2\x8a\x57\x14\x7d\xdf\xbb\xc1\xa7\x42\xaf\x9a\xcc\x0c\x68\xa1\xed\x4f\xf9\xda\xe5\xa5\xc0\xbb\x11\xe0\x15\x10\x71\xed\x3a\x41\xdb\x52\x9b\x48\xdd\xb0\xfc\x31\x2e\x87\x35\xd1\xee\xd9\x49\xb5\xa5\xfe\x13\xfc\x0d\xf2\xbe\x7f\x4f\x13\xd8\x5d\x83\xfb\x86\x34\xe7\xe1\x4a\xdb\xf6\x4e\x51\x4c\xfd\x77\x44\x9a\x00\xdf\xe2\xaf\xab\x3a\xe6\x74\x68\x22\x8f\x7c\x98\x3c\x44\x18\x95\xdf\x0d\x3c\x9f\x19\x78\xab\xf1\x37\xaf\x6b\xf0\xfb\x65\x64\x79\x9c\x0a\xcc\x81\x7f\xfd\x9c\x97\x06\x7e\x71\x49\xf3\xca\xbe\xc4\x7e\xf2\xfb\xe0\xef\x86\x6b\xf3\x73\xf4\x3c\x48\xcf\x0b\xad\x5c\x64\x0c\x3e\x08\x7c\x8d\xe1\xfb\x74\xae\x60\x57\xfc\x25\xd0\x20\x42\x3b\x53\xfa\x11\x28\xa5\xfd\x36\x95\xab\x71\x42\x7d\x8d\xeb\x4f\xb8\xfb\x39\xcc\xb6\x03\x66\x7d\xf1\x45\x76\x78\xfe\x92\x62\xcc\x8f\x29\x99\x24\x31\x06\xd5\x51\x45\xd2\xba\xe5\xc8\xfe\x8f\x93\x57\xcc\x89\x02\x38\xd8\x98\xf5\x53\x00\x13\xc1\x06\xfd\x12\x5c\x3b\xc8\xe3\xbc\x55\x89\x78\x9e\x79\x59\x0e\x08\xc6\x8e\x4d\x54\x3d\x5c\x9b\x88\x30\x26\x5a\xb3\x96\x6a\xa7\xf8\x08\x21\x80\x90\x87\x3c\x56\xc9\xe6\x66\x90\x70\xa3\x0d\xf2\x0f\xe0\xbe\xa2\x8e\x7a\x1b\xbf\x80\x13\x98\x55\x1a\x85\x76\xd6\x2b\xed\xd5\x6b\x86\x0b\x0b\xed\xde\x30\xb4\x03\xae\xd8\x4b\xe1\xb9\x02\x19\xc2\x9b\xf0\x3f\x61\x38\xa4\x74\xea\xf7\xd2\x49\x95\x4f\x35\xdd\x34\x31\xfd\x87\x54\xa0\xb0\x83\xfb\x79\x24\xbf\xe2\x01\x6f\xff\x41\xb5\xf8\xbe\x05\xd3\xe1\xf4\x1d\x5d\x8c\x77\x54\x29\x40\x7d\x1b\xc7\x27\x92\xfe\x77\x83\xed\x5d\x12\xe5\xf1\xf4\x74\x46\xe2\x9d\xbe\xf6\x5c\x2e\x7a\x01\x3c\x36\x51\x4a\x8c\x23\xcd\xf7\x0a\x53\xf4\xb3\xc0\x23\x59\x7f\xe6\x88\x1d\x4d\x96\x15\xa3\x71\x19\x1a\x4e\x29\x19\x23\x24\x20\x10\x5f\xdd\x09\x3c\x9e\xd0\xb3\x90\x0f\x8d\x67\x51\x12\x6c\x36\xbd\x87\x40\xb8\x65\x9e\xd7\x52\xd3\x5b\x91\x83\x15\x67\x25\xa3\xe4\xf8\xa6\x01\x13\xf6\x52\xdb\x74\xfb\x61\x8f\x58\xd8\x5e\x90\x86\x9f\xdf\xc5\x60\xca\xfe\x56\x55\x65\xfc\x40\x69\x39\x90\x01\xba\xa1\xa8\xe7\x6e\x38\xef\xe2\x65\xbb\x96\x21\x6c\xc7\x56\x7e\x53\x55\xb2\x3f\xd6\x70\x96\x3d\x3c\xb7\x84\xbf\xff\xef\x9e\xe8\x3c\xea\x0a\x67\xa9\x8d\xb8\xff\x17\xce\x38\x48\x46\xc1\x18\x83\x61\x82\x8f\x76\x55\x9d\x71\x59\x18\xaf\x88\x26\xa6\x74\xfe\x78\x95\x2d\x24\xae\xb8\x8b\xa9\x96\xd0\x9e\x3f\xd8\xb6\x59\x1e\x8e\x4c\xce\xb4\x39\x4c\x3c\xa6\xd8\x25\xef\xa9\xd9\xa9\x77\x6f\x2f\x2c\x00\xc2\x11\xd9\x62\x04\x73\x2d\xd0\xc4\x96\x12\x5a\x51\xa9\xce\xd3\x2a\x4d\x31\x36\xd4\x1a\xa3\xa8\x37\xdf\xc0\xa1\xce\x37\xc1\x53\xae\x32\x91\xda\x71\x9e\xac\x84\xb1\xc9\xd0\x9e\x83\xc3\xfc\x97\x1a\x64\x79\x41\xe9\x7f\xef\xd9\xf0\x3d\xc2\x6f\x6a\x0d\xa1\xa7\x3a\xbe\x8d\x36\x32\x6b\x31\x8d\x1a\x33\xf2\x4c\x3c\x24\xf0\x5c\xe0\x69\x6a\xdf\xae\xa6\x66\x0c\x3e\xc3\x6e\x66\xa0\x92\x98\x5a\x7d\xf4\x6c\xf0\x2b\x2a\x47\x1c\xf7\x6c\x9c\x23\x3f\x02\x6e\x82\xc6\x64\xf1\x76\xbf\x51\x0e\xef\x2f\x17\x61\x8e\x9e\x74\xb8\x62\x6f\xa3\x2d\x0e\x08\xa3\xe9\x8e\x97\x87\xde\x59\x53\xa5\x5f\x5c\x6c\xbf\x9c\x84\xdc\xb5\x8f\x60\xff\xae\x62\x0b\xbd\x3b\x79\x38\x6c\x8f\x53\x3b\xf8\x67\xed\x7f\xb1\xcb\x15\x95\x3e\x7c\x1c\x95\x0a\x69\x9d\x29\x0f\x11\x7a\xc3\xf0\xef\x53\xd8\x8e\xe1\xba\xaf\xa1\x75\xa7\x34\xbf\xf1\xce\x0d\xa7\xe0\x65\xd2\x98\x70\xeb\x2a\x2b\x2f\x79\x1d\x77\xac\x2b\xfd\x35\xd5\x8e\x74\x5a\xcf\xda\x85\x9a\x63\x83\xb4\xe4\xaa\x4d\xf3\xb0\xcb\xcc\xcd\xdc\xd3\xaa\xa4\xb3\x8f\x35\xb1\x1c\x15\x79\x18\x85\x39\x92\x7a\x02\xdc\x50\x7c\xb1\x75\x62\x96\x72\x89\x87\x79\x6f\x28\x90\x00\xf8\xfc\x4c\x2e\xce\x37\x8a\x73\x6d\x39\x0d\x63\xbb\x9a\xad\x40\x76\x53\x72\x00\x15\x16\x15\xc7\x10\x43\xaa\x86\xaa\xfd\xe5\x84\x1a\x80\x13\x8d\x24\x36\xb4\x96\xfa\xac\x0d\xc3\x74\x64\x41\x85\x9b\x6c\xfb\xa7\x7e\x95\xda\xc4\xc2\xd4\x19\x6b\x91\x74\xf4\xab\xf8\xb8\x46\x5a\x47\xa6\xdf\xaa\x25\x3d\xf8\x46\xef\xdd\xc8\xf4\x6c\x7f\xda\xe3\x92\xd0\x71\x80\xb5\xf1\x67\x13\xcf\x53\xc7\x27\xb9\xf0\xec\x8a\xad\x5b\x09\xbd\xd1\x96\x94\xb6\xa2\x27\xa9\x77\xc2\xec\x9f\xc5\xb9\x3b\xe5\xe1\x93\x00\x27\xc3\xd8\x9e\x52\x74\xcc\x6f\x35\x84\x60\xf3\x65\x54\xd5\x4b\xc3\x2e\x93\x4a\x55\xd2\x1b\x7c\x53\x1b\x71\xd2\x40\x18\x99\xd2\x9f\x6d\x79\xf8\xb8\x96\xc0\xd2\xe8\x9b\xd4\x8e\x9f\x69\x29\x6e\xcd\xf3\xba\xc4\x73\x5e\xf9\x30\xa3\x04\xcd\xde\x1e\x89\xb0\xb3\xe3\xb5\x2d\x77\x6e\x3c\xee\x10\x99\xc4\xa5\x28\x11\x37\x3c\x47\x14\x54\x30\xdb\x1c\x03\x61\x33\x5f\x77\x9e\x4f\x91\x15\x10\xda\x77\xbd\xac\xe7\x03\x95\xbb\x3a\x5f\x09\xcd\x93\x22\x7b\xaa\xb4\x2d\x34\x04\x7f\x87\xb6\xfe\xb3\x6c\x5b\x8e\x93\x8f\xab\x18\x15\x05\x6a\xb3\xa3\xa3\x4c\xdd\x25\x82\xb6\xe1\x81\x10\x01\xd2\xc8\xac\xfd\x4d\xc5\x0c\x30\xb3\x41\x9e\x1f\xbe\xea\xca\xa4\xd2\x71\x42\x2e\x2e\x9c\xe2\xa7\xc8\xbe\x90\x15\xb1\x4f\x80\x56\x1f\x51\xe9\x49\xa4\x7f\x81\xe3\xfa\x1b\x1b\x2a\x84\x7f\x5c\x91\xe9\x1d\x9b\x78\x56\x81\x5b\x18\x1a\xa1\xd6\x22\xa7\x9a\x7f\x3e\x50\xd6\xed\x86\x2a\x5d\xe4\x36\x1d\x85\xb1\xe1\x1d\x89\x73\x1b\xd5\x33\xbe\xde\x8e\xf2\x3e\x74\xa8\xfd\xc2\xec\xb3\xbb\x7d\x5c\xfe\x0e\x7e\x14\x49\x2e\xd6\x12\x90\x66\xd6\x72\x60\x90\xe3\xbc\x4d\xc3\x5a\xc9\x40\xc0\x69\xba\xa6\xa0\x25\x17\x55\xfc\x9c\x27\xe3\xb0\x07\x38\x86\x20\x80\xcb\x97\x16\x9c\x6f\xbd\xfd\xfd\xa5\x76\x66\xe3\xcc\xc2\xe1\x72\x20\x28\x17\x72\x83\x06\x41\xce\x20\x55\xd6\x4b\x8a\x34\x7f\xa4\xfc\x6a\x20\x99\x7f\x0e\xaf\x56\x3a\xf0\x14\x75\xf0\x69\x0a\xa3\x58\x01\x2b\xa8\xb4\xc7\xd0\xdc\x38\xa1\x1d\x95\x0f\xa0\x17\x85\x4d\x78\xa8\xe3\x56\xdc\xff\x7e\x52\xb5\xc3\x7f\x6f\xe2\xb1\x07\x0f\x6f\x54\xc2\x92\x4f\x79\x6e\xb4\xd1\x38\x4d\x56\x49\xa0\x82\x23\x6e\xd7\x48\xe7\xac\xc1\x59\xc5\x70\xb3\x1c\xae\xda\xf8\x21\xaf\xd0\x76\x6c\xe2\x81\xa1\xb7\xf0\x52\x92\x9f\x53\x5d\x37\xa7\xe8\x0d\x11\xa0\xed\xec\xd0\xf2\x91\x7c\x0b\x2d\x65\x6c\x84\xbf\x0a\x14\xe9\x68\xbd\x20\x49\xf6\x63\x39\x89\x06\x64\x3d\xe0\xa6\x20\x75\xcd\xd7\x4a\x76\x70\x10\xe6\xaf\x2e\xdb\xd4\x44\x7d\x0e\x84\x2a\x9b\x45\x96\x6e\x9d\x17\x65\xe9\x40\xfb\xef\x7e\xe9\x5f\x2f\x7d\xe9\x0b\x8b\xa8\xf7\x88\x61\xf3\xe8\x35\x14\x15\x91\x29\xbe\x49\x21\xa1\xb4\x66\xfb\xa9\x4f\xf2\xa1\x4d\x3f\xe3\x75\x81\x5f\xe7\x18\x06\x10\x00\x56\x00\x73\xad\x5b\x2e\x20\xbc\x0a\x57\xc4\x0d\x46\x39\x4c\x8e\x38\xaf\x5c\xaf\x70\x48\xef\x4c\x3c\x5c\xe7\x7d\x85\xe9\x5c\x7f\x7c\xa3\xdc\x0a\x52\x51\xa4\x0d\x2f\x30\x52\x7a\x19\x3c\xcb\xae\x0d\xd5\x44\xfb\x30\x9c\x13\x84\xfe\xbb\x61\x88\x10\x90\xde\xd6\x7c\xcb\xa7\x29\x28\x46\x5e\xe4\x94\x4e\x84\xed\xe8\x78\xe2\xe2\x1d\x1d\x32\x3e\xd8\xa2\xef\x93\xf5\x70\xf1\xa0\x27\xd8\x7b\x9f\x62\x75\xa7\xed\xbe\x7f\xc9\xc9\x1f\xfa\x78\xa7\x5e\x8f\xdf\x3f\xdb\xce\x7a\x43\xdb\x2f\xa4\x7b\x13\x67\xd3\xcd\x89\x92\x1a\xbe\x59\x69\x0c\x4d\x13\x3b\x55\x46\xdf\x78\x1b\x9c\xa7\x08\xff\xd0\xec\x07\x1b\x73\xdc\x81\x6a\xc7\x24\x8e\x50\x7e\x35\xbc\xf6\x8f\x55\x40\x5e\xd7\x98\x58\xda\xbf\xd4\x1e\xa7\x61\xcc\x02\x3a\x4b\x9e\xcc\xc5\xc3\x00\xdf\x50\xd0\xc6\x41\x6a\xe2\x5e\x98\xf5\x12\x60\x2c\x85\xdc\x58\x93\xc6\x1d\xd3\xb9\x68\xc0\x85\xd1\x87\xc0\xea\x0b\xd2\x30\xe5\xf9\x98\x6d\x6a\x76\xe9\xf2\xc2\x2f\xe8\x43\xdc\xc3\x87\x36\x35\x94\x3d\xae\x4f\x54\x77\x34\x38\x13\xb7\x8e\x6b\x4a\xf1\xeb\xba\x66\x95\xda\xf8\x55\x78\x74\x88\x59\xae\xa9\x6a\xfd\x35\x27\x6d\x32\x4e\x93\x61\xd8\x0d\x1d\x75\x34\xea\x8f\x27\x74\xd3\xe9\x89\x86\x60\xf7\x25\x82\x3b\xd0\xc1\xd0\xd2\xe4\xe3\x8a\x2e\x7f\xfb\xbe\xdf\x3f\x5b\x3a\x03\x16\xda\x55\x2f\xb9\x66\x0f\x6f\xf4\xea\x0c\x85\x20\x1f\x48\x73\x57\xb2\x63\x1d\xe0\xc9\xf6\x4e\x2a\x11\x51\xd8\xee\x11\xcf\xcd\x51\x77\x7f\xd6\x33\x63\xe7\xea\xb9\xae\x88\x45\x4f\x58\xdc\xd0\xb7\xd5\xb7\xe0\x94\x11\x7f\x0c\xa3\x7e\x37\x50\xf3\x71\x57\x57\xca\xf2\xdc\x96\x11\x7d\xbc\x3c\xad\x92\x88\x38\xfa\x9d\x23\xef\xba\x3b\x31\x52\xd2\x6a\xee\x4f\xdb\x9e\x89\xf3\x24\x36\x11\xe5\x66\x81\x4e\xbc\xa8\x73\xa6\xa7\x26\x9a\x6d\xee\xf5\x06\x46\xa8\x25\xf7\x1d\x34\x31\x4d\xfa\x41\x1e\xa8\x63\xa2\x88\x2b\xf9\xac\x08\x17\xf8\x0a\xe4\x77\x14\x19\x6c\x31\x48\xb2\xa9\xca\x16\xf5\xd5\x40\x16\x18\x94\x1c\x66\x03\xfc\x24\x0f\xa3\x1c\x69\x7b\x51\x6e\xbc\x8e\x13\xc2\xc9\xe8\x78\xf9\xb2\xa3\x0a\x8c\x63\x4b\x97\x10\x72\x3d\x94\x98\x17\xc5\x72\x32\x4f\x5a\xca\x5c\xe4\x9c\x95\x2e\xcb\x89\x5a\x70\x74\xe8\x50\x3b\xb2\xcb\x61\x16\x79\x19\x1f\x07\x6f\xf1\x61\xda\xb9\x06\x2f\xb9\x5c\x0b\x23\xa3\x80\x99\xc8\x82\x82\x4a\x81\xaf\x1b\x08\x08\x96\xda\x03\x5b\x20\x6c\x40\x29\x88\x67\x92\x6f\x6a\xb6\x68\x61\xa1\xdd\x0d\xd3\x7c\xd8\x37\x7a\x4a\x98\x2d\x9d\x6f\xb4\x30\x49\xf9\x44\x7d\x93\x5b\xa4\xdc\x1c\x6d\x81\xe7\x7a\x38\xaf\xe8\xd4\x4f\x2b\xd2\xda\x3b\x74\xdc\xa1\x92\x70\x3a\x78\xc2\xf9\xd5\xe3\x71\x44\x0e\x44\x4b\xf7\xa8\xb4\x1c\x9b\xd4\xe9\xc6\x24\x3f\x44\x33\x5a\x5a\x69\x20\xd0\xe0\x24\x05\x31\x0b\xbb\x66\xca\x43\x2c\x2f\xaa\x44\xd0\x39\x0d\x23\xd5\x40\xc9\x91\x89\xcd\x32\x3d\xd4\x63\x8a\x80\xf1\xcc\x44\xa3\x20\x0e\x2b\x45\xa5\x4b\xba\xf7\xe0\xc8\xa4\xd2\x8c\x4d\x3f\x01\x97\xea\x1a\xce\x3e\xd7\xcc\xe8\x90\x8a\x44\x0e\x2f\x1d\x50\x68\x9c\x92\x38\x82\x66\xde\x31\x84\x2c\x2c\x78\x49\x9a\x72\xd5\xe1\x51\xae\xd3\x91\x24\x3c\x31\x0f\x12\x86\xe8\xa5\x66\x6d\x90\xa4\xa8\x03\x88\x12\xa4\x26\xb3\x50\x59\xb1\x9b\x4e\xb1\xd3\x27\x4c\x84\xcc\x57\xc9\x66\x08\x6c\x69\x4b\x73\x56\xd6\xba\x16\x48\x38\x6b\x6c\x52\xc9\xf0\x61\x22\x7e\xa8\xf8\x80\x7e\xa8\x90\x60\x2f\x27\x45\x1a\x9b\x08\x08\x5e\x27\x96\xed\x4e\xa6\x6b\xaa\xad\x38\x1b\x26\x39\xca\x82\x82\x8a\xd5\x10\x59\xfa\x10\xb3\x6d\xd2\x7a\x12\xe6\x4d\x25\x0f\x13\x67\x45\x14\xc6\x19\xa5\x13\x99\x1b\x83\x92\xb5\xc2\x93\xd1\x40\xdb\xd2\x4f\x7a\x2b\xf4\x1a\xb0\x6b\x3b\x36\xbc\x8d\xdb\xd1\xa9\xcb\xb3\xb4\x93\xa8\x6f\xd3\x96\x02\xc8\x9e\x54\x64\x87\x27\x55\xee\xd0\xf4\xfb\x21\x21\x97\x9d\xab\x01\x52\x0f\xa1\x55\xa8\x23\xcc\xe7\xdb\xc9\x78\x9c\x64\x96\x54\x39\xb8\xc3\x0c\x0c\x19\x4c\xfe\x84\x37\x46\x40\x0b\x30\xcc\x7b\x8d\xbb\x29\x4f\xc6\x63\x1c\x38\xf3\x9c\x35\xc0\x0e\xe4\xeb\x26\x76\x9e\xa1\x09\x99\x92\x1e\x7b\xe9\xa6\x0a\xce\x6e\xaa\x1c\x06\x91\x85\xd1\x22\x76\x52\x4d\x8b\x52\x42\x7c\xbf\x29\xb1\xb0\x96\xa4\x2b\x9c\x6a\x16\xa6\x46\x7a\x17\xd1\xbf\x6e\x4a\x99\x27\x2b\x38\x26\x00\x79\xc6\xaa\x66\x09\x68\xd8\x31\xf9\x87\x26\x2a\x43\x33\x18\x10\x9b\x52\x4b\x91\xb0\x7e\x4d\x9f\x2e\x5f\x53\x35\xf1\xb1\x4d\xc7\x36\x2f\x4c\x34\xa5\x40\x96\xc8\x06\x8b\xa8\x16\x7d\x52\xba\xc8\x94\x4a\x7a\x12\xe7\xa6\xe7\xc4\x18\x80\xf1\xbb\x01\xa8\x2e\xdf\xd4\x90\x97\xf3\x07\xdb\x7d\x3b\x28\xc3\x47\xfa\x0c\xc2\xaf\xeb\xba\x81\xf4\xba\xea\xac\xcc\x86\x26\x1d\x47\xeb\x7b\xe8\xc9\xe0\xa0\xb3\x94\x06\x1e\xed\xc7\x81\xea\x22\xb8\x40\x35\x28\x07\x41\xdf\x2f\x02\xd3\xdf\xa6\x55\x24\xb5\x48\xef\xac\x5c\x23\x1b\xc3\x9f\xa5\x2c\x83\xa0\xf7\x54\x3c\x70\x2b\xf8\xb4\x2a\x3d\xa6\x76\x14\xe6\xe5\x0b\x33\xdd\x20\xf3\x34\x29\x36\x84\xb3\x95\x74\x6e\x91\x9a\x19\x0a\x3b\x84\x6b\xc1\x17\x84\x4f\xe8\xc4\xd5\x7f\x08\x14\x7a\x52\x20\x32\x38\x10\x4f\x78\x0a\x96\x34\x19\x1b\x6e\xf0\x85\x2d\xbd\xac\x92\xad\x97\x55\x11\x98\x10\xfa\xb6\xbf\xdb\xeb\x76\x5e\x80\x05\x77\xa4\x60\x8e\xa4\xef\x54\xa0\x0a\xe7\xb7\x27\x5e\x6b\xee\xcc\x44\xe5\xdb\x39\xf6\xe1\xef\x0a\x34\x51\x5b\x16\x59\xd3\xaf\x26\x2f\x3f\x52\x22\x32\x1f\x35\x79\x92\xd4\x93\xd3\x4b\xc3\x71\x8e\x7c\x35\x5c\xb9\x37\x35\x19\xfa\x9b\xaa\x68\x3c\x32\xe9\x8a\xcd\x1f\x2f\x1f\x1a\x4f\xf0\xf5\x89\xe7\x13\xf8\x7a\xe0\xc9\x04\x7f\x8f\xce\xe3\x8a\xa2\x29\xce\xb9\x47\x90\x77\xc2\xcb\x3c\x0a\x3c\x12\x7b\xc0\xf0\x75\x84\xf8\x41\x89\x06\xfc\x21\x23\x32\xf0\x33\x57\x27\xde\xfd\x60\x16\x39\x17\x89\xfa\x94\xc4\x75\xf2\x52\xa5\x71\x84\x5e\x07\xd6\x0b\x21\x2a\x82\xa7\x47\x3b\x3e\x7b\xd0\x35\x69\xba\x0e\x09\x22\x21\xd8\xd6\xe0\x62\x74\x52\x08\xdd\xb6\xea\xe6\x3e\x59\x11\xef\xe8\x19\x69\xbe\x42\xb8\x78\x9e\x56\x36\x5f\xd7\x2c\xd2\xa1\x43\xed\xb5\xa1\x35\xf9\x14\x55\x5b\xb9\xc2\x3a\x29\xf7\x0e\x72\x39\x97\x55\xa8\x75\x57\x41\xca\x4c\x8a\x3c\x87\x64\x5c\xbc\x75\xfc\xab\x40\xb1\xac\x31\x50\x18\x0f\xfd\x50\xc7\x37\x45\x9f\xc1\xe8\xc2\x19\x67\x26\x02\xc9\x12\x95\x73\x28\xc1\x5d\x43\x95\x21\x2f\xba\xc2\xdc\xc5\xf9\xfb\x40\xe7\xf2\xbd\x1f\xde\x0d\xd3\x18\xe7\x2c\x7e\x86\x01\xa8\x7c\x13\x3c\x88\x83\xbd\x5b\x64\x61\x6c\xb3\x4c\x7e\x04\xab\xe6\xa2\xee\xf5\xbf\x58\x3b\x66\x3e\x5f\x1e\xb6\x61\x96\xcb\x31\x83\x75\xc7\x88\x12\xbe\x69\x40\x1f\x1c\x20\x91\xc4\x54\xd1\xea\x71\x79\x43\xc4\x7e\xfc\x88\xff\xe3\x2e\xfc\x75\x61\x73\x6b\x39\x7e\xdf\xd7\x55\x5a\xeb\xac\xde\xa9\x5b\x4d\x2c\x43\xe3\x34\x5c\x25\x57\xc5\x63\xe5\x2b\xc9\x8c\xda\x09\xb4\x6f\xb1\x3d\x4e\xc6\xf4\x88\x18\x3a\x48\xcc\xf1\xb5\x52\x88\xef\x99\xcc\x66\x8f\x78\xd6\xc7\x93\xf0\xee\x80\xe1\xfd\x39\x91\xc1\xc0\x52\x43\x5f\x81\xc1\xd5\x28\x29\x20\xf1\xb7\x93\x50\x40\x48\xf1\x5c\xa4\xed\xe3\x10\xd8\x0e\xd8\x78\x4a\xb3\x3c\x6d\x02\xe3\x8a\x08\xff\x18\x32\xb7\x7c\x83\x95\x27\x86\xbb\x1e\x6b\x2f\x22\xbb\x37\x66\x1d\x2d\x58\xec\x53\x64\x0d\xf9\xba\x42\xb6\x66\x4d\x6e\xf7\x56\x61\x03\x7e\x06\xa6\x37\xe8\x97\x59\x8e\x1f\xae\xa3\x0b\x4f\x5d\x47\xcb\x45\x3a\x57\x90\x5a\x99\x52\x0c\xcb\xdc\x76\x87\xd8\xeb\xc6\xf6\x3e\xb0\x03\x9a\x6d\x69\xc9\xe1\x30\x1a\x14\x2f\x32\xb0\xe7\xf8\x50\xe5\x5d\xd5\x39\xfb\xae\x82\x00\x8c\x53\x3b\xb0\x29\x91\x2f\xb0\xe6\x10\xfd\x21\xda\x59\xef\xe0\xf1\xf1\x0f\xa0\x31\x42\x44\x79\xa5\x4e\x61\x7c\xa0\x7d\xe8\x50\x4b\xc1\x1a\xcf\xaa\x0a\xf0\x59\x57\x7f\x19\x11\xf6\x9e\xfc\x72\xc9\x9e\xf9\x98\xfd\x14\x5c\x04\x49\xec\xf8\x73\xab\x17\x46\xd4\xac\x5f\x8e\x13\x8e\xa7\x1b\xba\x91\xab\xee\x4d\x94\x9e\xd2\xd0\x9a\xbe\xb8\x3a\x40\x0d\x82\x14\x97\xaf\xd5\xd7\xaf\xda\x74\x94\x30\x59\xa2\x73\x19\x5c\xde\x5c\xcb\x19\x8c\x4d\x9a\x0b\x3e\x0f\x9b\x0f\x0d\x01\x92\xa2\x54\x7c\x1c\xe7\x15\x05\x93\xc6\xf8\xa5\x36\xb3\xe9\xaa\x25\xee\x76\x44\x8e\x3f\x43\x36\x93\x6f\x5c\xb8\x68\x8b\x34\xc1\x09\x37\xe5\xa7\x8e\xdf\x1b\xcb\xe0\x36\x9f\x09\x30\xbc\x7f\x5d\x33\x44\x4b\xfb\x97\xda\x5d\x1b\x25\xd2\xec\xc0\xbd\x36\x0a\x45\x70\xb6\x81\x3c\x72\xa9\x74\xc4\x8a\xb8\x97\xa3\xb0\x8e\x6a\xf4\x51\xac\x04\xd1\xdf\xf6\x39\x81\x5b\x9e\x82\xdb\xa4\xa6\x1f\x66\x96\x29\x4a\x04\x90\x51\xe9\xc9\xf2\x9c\x1c\x97\x14\xcd\xd8\xd0\x9a\xd5\x90\x3d\x27\xc6\x53\xd3\xe0\x09\xb6\xfa\x41\xf0\x32\x13\xaf\xaf\x99\xf5\xa9\x8a\x3c\xb3\xa3\xda\x39\xa7\x71\xd3\x47\x54\x93\xbc\x35\x69\x14\xda\x74\x97\xa2\x1f\xbc\xa0\xfa\x32\x3e\xd4\xe0\xcc\x6a\x23\x78\x4b\x69\x3e\x90\xe1\x11\xbb\xb7\x7d\x10\xe7\xe6\xda\x59\x32\xb2\x6b\x43\x93\xd3\x3c\xc3\x45\x86\xef\xc9\xd7\x35\xf7\x47\x5e\xca\xf6\xc3\x8c\xb3\x27\xd8\x21\xcc\x2c\xc3\x37\xd5\xee\x9c\x7c\xf8\x09\x15\x70\x5c\x83\xcf\x86\x5f\x78\x3b\xd0\x68\x34\x00\x5f\x90\x6d\xbc\x07\x43\x09\x07\xe4\x9a\xb6\x8d\x80\x77\xa1\xc9\xfa\x78\xe0\x45\x70\x58\x3d\xc6\x09\xfe\x3b\x4e\x89\x0b\x8a\x1f\xf1\x06\xf0\x50\xfc\xeb\xc8\x64\xf3\x6f\xe0\x0d\xe0\x51\x5c\x55\x7a\x2e\xb7\x1c\xc1\x8a\x7d\x25\xe9\x17\x6c\xb0\x90\xc1\x02\x25\x39\x5f\x37\x49\x3f\xb3\x36\x59\xcb\x63\xfa\x7e\xae\xb8\x79\x34\xb0\xb5\xdc\x49\xdd\x24\xee\x57\x54\x8e\x51\xb7\xe1\xeb\xa6\xef\x4f\x6d\x6c\xd7\xb8\xd6\x2c\xa4\x35\x95\xe2\x5e\xcb\x51\xd2\x5e\xd0\x0a\x51\x97\x02\x7f\x0c\xae\x5b\x93\x66\x4f\x28\xaf\xf0\xe1\x4e\x79\xf4\x89\xa4\x28\x8d\x91\xac\x34\x9a\x3b\xa4\x59\xef\x04\xca\xe3\x9d\xa6\x5e\x7e\x8c\xf1\xff\x3b\x51\xea\x4f\x2c\x86\x8c\x9c\xc6\x57\x10\xf1\xe0\xf3\x10\x37\x45\xf1\xe6\x91\x8e\x22\x86\xd9\x9a\x6c\x23\x00\xf3\x63\xa7\x09\xb3\xcf\x93\x1f\x0d\xac\x17\x08\xa7\xb0\x15\x41\xd3\x0f\xe6\xb8\x26\x87\x62\xbe\xdd\xf5\xca\x95\x78\xc8\x23\xf8\x5e\xbe\xa9\x14\x1e\x92\xb5\xf8\x49\x95\x59\xd9\x81\xc6\x4e\xe9\x44\xf1\x69\x0c\x94\x24\x98\xff\x1e\x23\x03\x0f\xff\x7e\xa0\x08\x3c\xb8\x76\xc2\x32\x39\xd8\x9f\xa2\xbf\x44\xf6\x55\x96\x9f\x6a\x91\x7b\x93\xde\x13\x11\x73\x8b\xf8\xaa\x9d\x30\x5b\xb9\x43\xe0\x7c\xbc\x45\x7a\x20\xae\x37\x6f\xff\x2c\x07\x60\x53\x1d\xef\xb9\xcc\x6c\x94\x01\x86\x30\x3e\x2b\x88\xfb\x05\xd5\xa7\x97\xd9\x5e\x4a\x9d\x34\x60\xaf\x96\x62\xe0\x31\xd5\xfb\x79\x01\xcf\xcd\xff\x10\x78\xf4\x5d\x3d\x73\xbf\x6f\xd1\x37\xbd\xf9\x46\xe2\x0b\x41\x05\xbf\x52\xa9\xb8\xe7\xbd\xdd\xb4\x46\x70\x3e\xfd\x27\xc5\x79\x77\x35\xf0\xd5\xd7\xff\xa4\xbf\xe1\x35\xda\xac\x78\x95\x37\x74\xaf\xed\x6b\x81\x77\x53\xeb\x32\x19\x2f\xcc\x3e\xdb\xee\xa5\x45\x2f\x94\xe4\x81\x6c\x13\xdf\x23\xf0\xc7\x13\xdd\x0a\xe7\x73\x62\xe1\x72\xdf\x44\xc9\x60\xf0\x60\x42\x51\x25\x10\x60\x4d\x0c\xc0\xbe\xf0\x6b\xd3\xe2\xe0\x1b\x8a\xff\x80\x6d\xc0\xb4\x61\x3b\x81\xda\x9f\xff\xbf\x72\x3e\xae\xd4\x52\x3f\x73\x73\x4c\x75\xac\x78\x5f\x15\xf3\x84\xe7\x55\x5c\x33\xe1\xaa\x4d\x11\x36\x39\x53\xef\x9c\xa8\xf3\x8a\xda\xf4\x47\xb5\x33\x7a\xdf\x62\x7b\x98\x44\xfd\x62\xcc\xc6\x8f\x59\xde\x02\x6f\x5c\xae\xd7\x52\x73\x2f\xcc\xbe\xd4\x4e\x8a\x7c\xc6\x83\xf4\x76\x6d\x94\x8b\x97\x36\xec\xef\x3c\x41\x7e\x9a\x80\x10\x75\x62\xa1\x9c\x64\xc1\x1c\x3e\x90\x19\xc9\x64\x99\x8d\x97\x39\x0e\x81\x09\xb9\xa6\x65\xf2\xae\x35\x95\xf8\x3e\xd7\xee\x96\x5e\xf1\xb0\xa5\x44\xbb\x31\xdb\x7c\xed\x7a\x16\xd7\x93\xa2\x45\x30\x4f\xac\xf1\x1b\x81\x6a\x89\xbe\x31\xd9\xeb\xc1\xfb\x6b\xad\x32\xf2\x84\x87\xbc\xa5\x9a\x10\xb6\x6a\xf3\xb4\x6f\xb1\x1d\xdb\xb5\x68\x7d\x4a\x01\x28\x3e\x9e\x78\x7c\xda\x5d\x8a\xfe\xa5\xeb\xab\xa9\xd2\x96\xda\xbc\x48\x1d\x19\x3f\x10\xab\x28\x98\xf3\xb5\xa2\x19\x1e\x25\x71\x98\x27\xc4\x73\x50\xfe\x01\x87\xf1\x9a\x91\x44\xe7\xc1\xcf\xea\xac\xe7\x28\xb6\x59\xbe\x8e\x14\x21\xb7\x59\xc1\x9c\x49\xcf\x55\x03\xed\x4a\x6a\x46\x63\xc3\xbe\xa9\x93\xae\xf2\x7a\x8d\x0d\x14\x80\xf3\xed\xa7\x9f\x7e\xc4\x67\xad\x8e\x4d\x94\x16\xe1\x39\x9c\x12\x5e\xbf\x69\x96\x17\xca\x61\x5a\x1c\xc8\x33\x31\xa5\x13\x2a\x60\xad\x4e\xeb\x85\x59\x66\x22\x97\x86\x97\x72\x38\x31\x30\x3f\x44\x58\x87\x98\xfe\x0d\x05\x30\x41\x29\x14\x16\xe5\x86\xef\x01\x49\x7b\x43\x89\x8a\x51\x49\xff\x25\x59\x1e\xbe\x6e\x6a\xe7\xea\x5b\x83\xe6\x4e\x2c\xf4\x29\x1c\x12\x7c\x53\x4b\x42\x1f\x7c\xbe\x1d\x85\xcb\xc3\x7c\x4a\x8b\xba\xf8\xa9\xb9\xa7\x8a\x2d\xdf\x6d\x10\x18\x9f\x6f\x27\x71\x9e\x4c\x97\x83\x87\x02\xc7\x77\x01\x49\x96\x9e\x4f\x9f\x49\xb9\x42\xe3\x85\x53\x6d\x67\x47\x9b\x59\x1b\xf5\x1f\x57\x94\xdd\x2c\xd4\xe9\xf8\xc0\x17\x16\x04\x33\x77\x06\x07\x96\x28\xdb\xb5\x9e\x9b\xe7\x1c\x0e\x84\x2d\xf1\xdd\xb7\x26\xbe\xa1\xfa\xd6\x44\x79\xa6\xd2\x17\x84\x0a\xfa\xd5\x40\x73\xb3\xd2\x9a\x12\x18\x78\xcb\x09\xe2\x3c\xd4\x51\xfd\x81\x67\xc9\xb2\x6b\x19\x2d\x11\x03\xa0\xd9\x81\xe9\xba\xaf\x60\x66\x5d\xd3\x5b\xd9\xa3\x9c\xba\xd3\x81\xd2\xae\x44\x9a\x54\x30\x00\xbe\x5e\xfc\x3f\xd3\xbe\xc0\x12\xbb\x49\xe7\x28\x96\x0a\x68\x4e\x5d\x8f\xf0\x3e\xdf\x88\xae\x14\xa6\x00\x88\x17\x37\xc2\x11\x1a\x46\xd6\xa4\xd4\x2f\xa9\x14\x0d\x61\xe7\x60\x63\xef\x05\xaa\xfb\x70\x53\x41\x5d\xc6\x49\x96\x53\x40\xd5\x27\xa7\x5c\x9c\xa8\xf2\x49\xf8\xba\xe3\x53\x2c\xfb\x0e\xee\x53\xb2\xe2\xaf\x6b\x0c\xc0\xeb\x81\x87\x5d\x92\x72\xbb\x89\x7b\xeb\x14\x41\xc3\x47\xbf\xaa\xe5\xe1\x91\x0e\xc3\x53\xfe\x11\xf5\x03\x0b\xec\x57\x11\xdf\xf4\x4c\xca\x7a\x0a\xf8\x86\xb7\xb5\xcb\xff\x76\x63\x6f\x2a\x31\x33\x4f\xe9\x94\xfa\xc4\x03\x21\xf7\x74\x7c\xf9\xec\x9e\xdb\x7d\xd9\x30\x1c\x08\x76\x49\x34\xe6\xcb\xcf\x88\x62\x8d\x87\x28\xaf\xf6\xd2\x8c\xb6\x90\x28\x2d\x2a\x2e\xa0\xef\x29\xb2\xca\x9b\x2a\xe3\x53\x9e\x1b\xf9\x5e\x4f\xc3\xfb\x8e\xce\xea\x81\x78\x54\x8a\x86\xe5\x8f\xc2\x87\xba\x54\x25\x0f\x50\xee\x09\x43\x07\x85\x76\x42\xc3\x82\x7e\x46\x01\x88\xd3\x3e\xf1\xa8\xba\x77\x15\xf5\xfe\xbb\x9e\x5e\x47\xe1\xf4\x91\xd7\x62\x76\x7c\xbe\x69\x22\xc1\x88\x92\xb4\x2f\x5c\x9b\xf0\x8f\xa7\x3b\x0a\x85\xa1\x71\xb5\xb7\x1c\x10\x3f\x37\x51\x34\xe5\x11\x57\xbb\x36\xbc\x8e\xf8\x3d\x1a\x34\x3a\x87\xb3\x27\x3b\x3e\x19\x30\x4e\x93\xdc\xf6\xf2\x5d\x4a\xa7\xf9\x94\xa2\x0f\x61\x26\x01\x6e\x47\x0c\x94\x46\xff\x85\x49\xa5\x93\xd9\xef\xeb\x3a\x5d\x0b\xf8\x43\x7b\xc3\x30\xb6\xd2\xbb\x2a\x02\x50\xf4\x1a\x7c\xe3\x88\x8f\x52\x13\x46\x6b\x4c\xb3\xf3\x92\x07\x15\xfa\xf4\xe7\xc9\x8a\x17\xff\xaa\xcd\xf6\x78\x07\xf6\xdf\x92\xbd\x42\x04\xfe\xbf\x06\x9e\xb5\x05\xde\x18\x5f\x2b\xa1\xc7\xbb\x80\x48\xc2\x8b\x3e\xa1\xa9\xd4\xae\xe8\x7e\x56\xd8\x4d\xfe\x2b\xd8\x08\x41\xcc\x37\x14\x92\x98\x5f\x1e\x53\x8e\x35\x73\x4b\x31\xcb\xdc\x72\x3a\x3c\x45\xdc\xb7\xab\x36\x4a\xc6\xf2\xc7\xc0\xf7\x7f\x73\xe2\x1b\xf7\xbe\xa9\x36\x3b\x28\x97\x52\x86\xf2\xc2\x7a\x01\xd0\xcc\xd7\x8a\x17\x66\x1c\xf6\x56\x8a\xf1\x54\x4b\xd1\x70\xfb\x6e\xda\x4d\x75\x7a\xdc\xaf\x01\x29\x71\xea\xe5\xc3\x8a\xbe\x26\x26\x40\x6a\x01\xbe\x8f\xd9\xbe\xc2\x7d\xb5\xde\xe1\xe4\x0a\x12\xdf\x38\x59\x7f\x93\x65\x61\x96\x9b\x38\x27\x2d\x15\xb4\x4b\xc0\x57\x54\x5a\xf4\xf3\x9c\xef\xf9\xeb\x89\xe2\x1b\xbc\xa7\x05\x88\xcf\x35\x79\x29\x99\xde\x64\x28\x86\x7c\x18\xf8\x16\xdd\x0f\x55\x25\x3b\xb2\x59\xf6\x28\x2d\x2d\x07\x75\xad\x78\x24\x62\x65\x21\x78\x82\xd4\xd6\xa7\x81\xc4\x73\x7d\x45\xe5\xaf\x60\x63\x1d\x99\x28\xa5\xc7\xef\x7b\x80\xa9\x01\x5f\x25\x2c\xe8\xd1\x4a\x14\xe3\x73\x04\x57\xc8\x1e\x4b\x7d\xae\xf4\x6a\x24\x51\xdb\x80\x1c\xf1\x68\x2c\xc7\x67\x08\x17\x51\x8a\x18\xae\xdb\x77\x68\xfb\x53\x5e\x3f\x19\x9e\x10\xae\xdf\x9d\xa8\xf7\xb8\xa0\x65\x6e\x72\x6b\xfa\xa1\xf0\x08\x69\xad\x7e\x59\xe6\x7e\x15\x0e\xad\xe9\x47\xe5\x66\x9e\xa2\xb0\x56\x12\x66\x0a\x11\x8a\x0c\x9f\x10\xbc\x7b\x90\x51\x54\xfa\x52\x6a\x8b\xfd\x44\x45\x29\x3f\x09\x3e\x55\x75\x24\x09\xe2\xb9\xb0\xb0\xb7\xd2\x4e\x50\x4e\x9b\x2b\x86\x7a\x84\xfe\x5f\x4e\xd4\x26\xd0\xba\x51\x4c\x6d\x8a\xc0\x78\x67\xa7\xd2\x70\xea\xf1\x11\x47\x27\xba\xe9\xec\x8a\x12\xbd\x3f\xa3\x5b\xb0\xdf\x55\x7c\x5d\xd6\xe4\x00\xb2\xe3\x8d\x41\x51\xc0\xd7\x9d\xed\x55\x8b\xb9\xb9\xd2\x24\x50\xaf\x3c\xbb\xc1\xaa\x7b\x75\x53\x23\xb6\x37\x91\x8a\xc5\x86\xb8\x17\x78\x62\xfb\xb7\x27\x7e\x95\x5e\x77\x59\xab\x6c\x9c\x5a\x83\x72\x2a\x76\xca\x07\x13\x5f\x96\xc1\x39\x87\x6b\x56\xf6\xaa\x70\x2d\x22\xa1\x71\x39\x50\x44\x7d\xf9\xc4\xc7\x1c\x8f\x6c\xfc\x8d\xea\x84\xcc\xcd\x4b\x90\x46\xba\x6a\xd2\x7b\x53\x2e\x5b\xc9\x93\x28\x52\xed\xa5\x40\x59\xbf\x4b\x4a\x0d\x6e\x17\xb0\xab\x4e\xb8\xb2\x74\x55\x2b\xbd\xc3\x30\xcc\xbf\x45\xf3\xe3\x90\x3d\xe5\xc1\x2c\x6e\x2b\x26\x0b\xfd\x70\xdf\xc5\x8b\x21\x55\xb4\xa5\x98\xda\x79\xb1\x20\xd8\xbf\xd7\x94\x5f\x23\x79\xe8\x62\x34\xe5\xbd\x2c\x34\x56\x38\xb2\x95\x2f\xbe\xe8\xa8\x42\x1b\x02\x83\x41\x98\x5a\xb4\xbd\xc1\xc5\x78\x5b\x41\x8f\x8f\xaa\x3c\x26\xb7\x1c\x8b\x34\xaa\x4c\x5d\x3f\xb5\x66\x44\x2d\xdf\x8b\x6e\x3f\x7a\xb8\x06\x17\x7c\x51\xec\xb8\x4f\x43\xa1\xb2\xca\x8e\x0a\x2a\xf0\x61\xa1\x8d\x49\x8e\xd8\x96\x8e\xd3\xdc\x9c\x8b\xbd\xbc\xc0\xfa\xf1\x89\x27\x73\xbc\xd2\xc4\xfa\xc3\x36\xdf\xf7\x8d\xfe\x9f\xef\x07\x7e\x99\xbe\x5f\xe1\xd0\x8a\x22\xdb\x63\xe5\xbe\x72\xca\x59\xb2\x02\x8c\xae\xa2\x5f\xb1\xfd\x27\x0e\x3e\xdf\xee\xda\x5e\x32\x02\x32\x09\x8e\xe2\x35\x85\x7d\xa9\x07\xf6\xf3\x07\xdb\xdd\x24\x4d\xfd\x59\x8a\x39\x07\x2c\x8f\xaf\x95\x7f\x3d\x4c\x8a\xcc\x0e\x93\xa8\x9f\xcd\x78\xb5\xb8\x13\x58\x3b\xd8\xc1\xb7\xc8\xd6\x23\x1a\x39\x37\x51\x6d\x41\xe7\x54\x5b\x50\x3d\xdf\xff\xc2\x6c\x7b\x2d\xcc\x87\xe5\x57\x3b\xa7\x17\x03\x89\xce\x7c\x81\x1f\x78\x08\xd1\x0f\x26\x8f\xf8\xb0\x3b\xb5\x9f\xf1\x47\xd1\x9e\x0d\x0f\x80\xfa\x2e\x12\x83\xae\xa3\x7d\xfe\xa0\x93\x70\x2d\x87\x08\x5f\x75\x1f\x1e\x8a\x84\xc9\x14\x01\x31\x85\x2c\x82\x5f\xf8\x4f\x87\x71\x10\xa1\x06\xb8\x03\x8c\x25\x64\x6c\xfe\xfd\x53\x08\x59\xf1\x2f\x8f\x6f\x94\xab\xc3\xa9\xc9\x95\x9b\x0f\x8d\x3a\x77\xe8\xfc\xc1\x4f\xfe\x59\xe0\xdd\xe8\xcf\xe0\xe8\xa3\x7c\xd5\x7f\xe1\x0e\x39\xec\x50\x56\x48\xc4\x16\xf9\x6c\x47\x57\x5d\x76\x76\x7c\x89\xe7\x23\x52\x5b\x44\xb6\xe0\xc9\x0e\xf9\x51\x80\xb5\x7d\x08\x77\x1b\x5b\xef\x53\xd4\x35\x83\x2f\x7e\xb2\x43\xeb\x08\xa6\x52\xf3\x99\x67\xe1\xab\x44\x9b\xef\xf9\xa3\x4e\xa9\xc4\x9a\xe2\x00\x2a\x96\x4d\x37\x49\x14\xc1\xd8\x49\x20\xf9\xf9\xc6\xf5\xd0\x46\x49\x32\x92\x44\x8a\x40\x0d\x69\x4c\x61\x74\xaf\x07\x1a\xbf\xb7\xdd\xaf\xdd\xb7\xd8\x4e\x8a\x34\xb3\x91\x13\xb0\x94\x6e\x51\x7a\x7c\x11\x01\x96\x63\xf9\xe9\x7f\xf1\x4f\x33\xdd\x2a\x7a\x59\x69\x39\xe2\xf0\x87\xbd\x78\x4b\xf5\x7c\x74\x8b\x3c\xb7\xe9\x20\xa4\x7c\x18\xcd\xa2\xa4\x60\x30\xda\x92\x83\xd9\x6e\x9e\x4a\x97\xbb\x6f\xb3\x5d\x2a\x84\x79\xa8\xa3\x4a\xd5\xb7\x26\x9a\x82\xc7\x97\x50\x7e\x01\xb3\x03\xf8\xc2\x1d\x4d\xc7\x7e\xb5\x39\xeb\x36\x48\x43\x1b\x33\x5f\x87\x6e\x47\xd5\x14\x6b\xc2\x0f\xe2\x3a\xa3\x07\x65\xf0\x68\x72\xe1\xb8\xc3\x0f\x4c\x6f\xa8\x5f\x9b\xee\x6c\xe7\x62\x29\xed\x93\xc9\xcd\x38\x4d\xfa\x45\xcf\x31\xdd\xe1\xd5\x7e\xa2\x43\xb5\x9f\x4c\xb6\x7f\x94\x10\xd3\x61\x1e\xda\xec\xdf\xfc\x13\xd3\xed\xb5\x14\xb7\xe4\x31\x1e\x47\xbe\xab\x79\x96\x07\x9f\x6f\xf7\x8a\x3c\x17\xde\x0a\xa7\x7e\x57\x2e\x11\x81\x58\xe9\xca\x6a\xaf\x0c\xdb\x1e\x6e\x39\x02\xae\x4b\x34\xaf\x28\x76\xbc\x39\xf1\x64\x4c\x8c\x8c\xc0\x6e\x43\x57\x10\xf2\x28\x72\xb8\xc1\x27\xda\x49\x25\x01\xfc\xd5\xf9\xc0\xdb\xb4\xf3\xda\xc1\xde\xb9\xe1\x51\x26\x49\xcf\x9a\x18\x24\x56\x8e\xc8\xc9\xc1\x7b\x98\xb8\x92\x6f\x3a\x5e\x86\x5b\xeb\x62\xaf\x0d\x93\xcc\x3e\x5c\x3e\x90\xf4\xc4\x97\x5f\x80\x6e\x24\x56\xb4\x43\xe4\x7c\x5a\x55\xa8\x91\x6d\x86\xaf\x3b\xdd\xa9\x1c\x69\x64\x94\xe0\x98\x9d\x9b\x6c\xa7\xde\x71\xf4\x77\x3e\xb9\x92\x14\x69\x9e\x26\xc9\x48\x1f\x43\x28\x7c\x8a\x7c\xad\x16\x22\x7f\xb9\xc8\x72\xe0\x99\xf7\x49\x44\x7f\xbe\x4a\x63\xf1\x98\xe2\x26\x1e\xe7\x20\x79\x85\xf9\xf9\xba\x12\x15\xf8\x7a\x53\x0b\x53\x3b\x8b\xec\x18\x99\x3c\x38\x83\x3f\x9c\x28\x22\xcb\x2b\xa8\xb2\x88\xb3\xa1\x4a\xf4\x43\x93\x71\x84\x06\x0b\x0a\xfd\x18\xbe\x56\x95\x06\xea\x4a\x71\xdd\x04\x28\x74\xbe\x15\x78\xc8\xca\x87\x13\x9f\xc2\x04\xef\xb8\xe0\x01\x54\x4a\x29\x32\xe5\x97\x0c\x06\x19\xb0\x5a\xa2\x21\x46\x95\x50\x45\xd6\xee\xa5\xc6\x5a\x4f\x3f\xed\xfa\x7f\x1f\x55\x3d\x80\x66\xf4\x48\x79\xfe\xc0\x36\xed\x62\x6b\x2e\xe4\xec\x7e\x11\x9d\x53\x54\xce\x37\xd1\xf8\x84\x21\x38\x06\x4f\x4e\xea\x7f\x34\xef\x7c\x03\xdb\xcb\x7f\x46\xcb\xc6\xa9\x1e\xed\x93\xde\xbc\x5d\xd8\xfe\xaa\xa5\x5c\x1c\x89\x9b\x0d\xcc\x30\x5d\xb3\x62\xfb\xd3\x2a\x62\x86\x80\x12\x96\xec\xfd\xc0\xc3\xc4\xce\xe9\xc6\xfa\x3a\x11\xee\xe7\xdb\x03\xe3\xc8\x89\x80\xd5\x39\xab\x5b\x63\xcf\x06\x9f\xac\xfa\xc0\x5f\x7c\xb1\x7d\xe8\xd0\x4c\x39\x86\xf0\x38\x8f\x2b\x4d\x83\xd3\xa8\x3f\xf3\x3f\xa8\xa6\x95\x3f\x23\x6b\x8b\x8c\xca\x79\x05\x1f\x84\xc4\x1d\x89\x05\x62\x4d\xdd\xd2\x54\x27\xb7\x30\xa0\x22\xde\xe0\x55\x26\xcf\x6a\xa5\xae\x24\x4a\x56\x0c\xd4\xef\xe0\xbd\xe8\x84\xeb\xc7\x4d\xd4\xb9\x9f\x6b\x0f\x4d\x36\xa4\xaa\xdd\xa2\x40\x6b\xe0\xf8\xf2\xb5\xd2\x27\x1a\xdb\x34\x4b\x62\x83\xd0\x05\x7e\xf1\x75\xb5\x00\x1e\xeb\x94\xe6\x0d\x76\x7f\x6b\xa2\xf4\xdb\x51\x3d\xad\x90\xf9\x0a\x00\xb0\xde\xb5\xd9\xee\x19\xf0\xce\xbb\xed\x88\x33\x84\xaf\x6b\xae\xea\xe2\x62\x3b\x35\xcb\xcb\x95\xf6\xb2\xff\x1e\x61\x00\xdf\x4c\xf6\xb8\x4e\xf3\x58\x93\x41\xbf\xa1\x3a\xd7\xc0\xf8\x22\xf2\x8b\x4d\xd2\x6d\xe1\xf2\x10\x8d\x12\x88\x4e\x6e\x05\xbe\xdb\xe6\x56\x83\x0c\xd4\x81\xb6\x29\xf2\x64\x64\xf2\xb0\x37\xe5\xff\xf2\xac\x62\x3e\xf9\x4d\x5a\xef\xd2\x60\xde\xa0\x64\x9f\x15\xe9\x2a\xb1\xf6\xbd\x30\xeb\x8a\xdf\x34\xaa\x7c\xa3\xfa\xd0\xa9\x97\x63\xfd\x31\x5a\xb8\x8c\x95\x0a\xbc\x2c\x2d\xaa\x29\x2c\x34\x09\x83\x88\x24\xeb\x25\x55\xeb\x85\xd5\x96\x55\x43\xd6\x8c\x99\xd3\x27\xaa\xc6\xfd\x3e\x59\x24\xa6\x3b\x0c\x54\x86\xe6\x42\xa5\x94\x7f\x0f\xbe\xa4\x74\x5a\x97\xa6\xc4\xe9\x5c\x96\x1e\x2b\xac\xf7\x8f\x6a\x93\x59\xda\xd9\xa1\x89\xfb\xeb\x53\x7e\xd9\xde\x56\xa8\x7d\x46\x36\x60\x2d\x68\xea\x98\x6e\xb1\x1e\xc6\xcb\x7b\xbd\x9f\xfb\xf8\x61\x4a\xde\x20\x31\xfc\x16\xce\x68\x57\x7d\x55\x56\x9f\x5e\x41\x2b\x42\x49\x90\xa5\x78\x71\xae\xf1\xbb\xa1\x82\x73\x24\xf0\xfa\x96\xb7\x61\x4d\x59\xaf\x0e\x03\xc5\xb8\xb5\x06\x48\x25\xa5\xfc\x19\x22\x82\x20\xe7\x84\xa2\x0b\x38\xd1\x94\x2a\x3d\x00\x8e\x19\x31\x4a\xce\x20\xfa\xa6\x60\xdd\x52\xdf\x2b\xd2\xd4\xc6\xf9\x43\xbe\x9f\xe7\x12\x80\x87\x8e\x34\x6e\x6e\x9e\xd3\x96\x97\x02\x25\xec\x02\xdc\x3e\xd2\x09\xb7\x83\xca\x16\xa1\x61\xa8\x28\x20\xa0\x92\xb3\xc3\x11\x85\xa5\x26\x5e\x46\x87\x8a\xff\x3a\xd5\xa9\x7f\x17\x0f\x0b\xef\x7f\xa6\xe3\x31\xd9\xa9\x19\x87\x7d\x6a\xf5\x21\xc8\x14\xc7\xec\x8a\x25\x18\x60\x64\x41\x93\xd5\x8b\xfa\x2f\xb5\x23\x1b\xf7\x59\x6a\xf0\x25\x06\x4a\x1f\xc1\x24\xf0\x4d\x6d\x27\xcf\xcd\xb5\x07\x61\x2c\x5c\x02\x28\x76\x5d\x52\xe1\x39\x37\x11\x60\x81\xff\xbc\x51\x45\x02\xdc\xe7\xe2\xae\x22\x6b\xc8\xc1\x0f\xdf\x6c\xd4\x1d\xf0\x76\x3e\x34\xf9\x43\x55\x3a\xd5\x17\x85\x3a\x6b\xb9\xdd\xf1\xc9\xd8\xfb\x13\x2f\xeb\xf4\xd5\x40\x25\xbd\x2f\xd0\x36\xc2\xb4\x5e\x9b\xd4\x88\x71\x11\xf5\xec\xde\x50\xab\xc1\xc6\x79\x01\xd8\xb6\xaf\x69\xb6\x1c\xfb\xff\x2f\x29\xfa\xc5\xbc\xfc\x14\xc1\x17\xdf\xa8\x7d\x95\xda\x51\xd8\xcb\xa6\x14\x5d\x2b\x48\xe6\x44\x35\x87\x56\x17\x3e\x36\x71\x25\x0e\x6b\xd2\x7c\xb8\xae\x8c\x25\x72\x68\x7c\xad\x65\xe7\xa5\xc1\xa9\xe5\x25\x0a\x51\x04\x92\xfe\xed\x06\x50\x38\x75\x0d\xb4\x3c\x59\xf7\x66\xa0\x4b\x21\xfe\xb4\x4a\xd2\x7c\x98\xf4\x93\x57\xe8\x44\x75\xdd\x99\xfb\x54\x8f\x7e\xf9\xca\x8e\xeb\xa9\x1c\x4f\xe1\x96\x68\x12\x89\x8d\xd7\xf3\x70\x64\xa7\x3c\xe0\x06\xcb\x46\xb0\x84\xbe\x4a\xf2\xb3\x46\x9d\xf2\x2f\x17\x26\xcd\x6d\xba\x1d\x56\xb8\x7f\xd6\xc1\x0a\x95\x00\x4c\x11\x12\x5a\xbb\xd2\xf6\xa8\xfa\x21\xb7\x79\x21\xfb\x67\xdb\x73\xf3\x0f\x2b\xf5\xa1\x1f\x04\x0a\xb8\x0a\xd2\x2c\x16\xe7\x0e\x5c\xae\x3d\xfa\xde\x44\x65\xe4\x18\xbb\x05\xa7\x0e\x71\x1a\xd6\x16\x8b\x3e\x4a\xfb\x29\x4d\xb7\xf0\x84\xfa\xde\x9c\x7c\x7d\x1c\xf6\x4c\x14\xad\xef\xf2\xc5\xed\xfb\x94\xcd\x86\x9f\xf9\x2e\x0a\x26\x0e\x9d\x56\xbe\x18\x3c\xe0\x3f\x9d\x28\x8c\x1d\x63\x24\xe1\x66\xfe\xa2\x06\x31\xfa\x3c\x21\x6c\xd6\x86\x61\xc4\x2d\x90\x8e\x5a\x56\xe8\x55\xff\xe2\x33\x1d\xbf\xbe\xf7\x52\x12\x16\x51\xed\x51\x82\x78\xc3\xff\xba\xa1\x30\x10\x36\x0a\x4d\x9c\x87\x2d\x08\x85\x91\xcd\xdf\xba\xa8\x91\xbe\x43\xbb\x9a\x26\x31\xa6\x02\x1d\x83\x9b\xb0\xa8\x7c\x33\xf1\x7c\xce\x2f\x3f\x33\xad\xb2\x74\x9b\x95\x6a\xb1\x0f\x7c\x19\x3d\x84\xbd\x50\x47\x0c\x90\x47\x96\xb2\x33\x83\xe7\x65\x0e\x20\xbe\x51\xf9\x8f\xb8\x18\x75\x29\xc1\xe7\x3a\x00\xef\x56\xbb\x8f\x5d\x36\xbd\xde\xc9\xb9\xb0\x80\xb4\xdd\xb2\x08\x52\x38\x5a\x07\x1f\x87\x9d\xd3\x0e\x86\x2b\x61\x3d\xeb\xd8\x07\xcb\xef\xe7\xeb\x5a\xc7\xc2\xe2\x62\x3b\x4e\xf2\xb5\x30\x1f\x66\x39\x3a\x69\xa7\x15\x05\xf3\x4f\x68\xca\xf0\x46\x97\x94\x94\x2c\x71\xcf\x72\x55\xe9\xdb\x6a\x2b\x67\x51\xb2\x6a\x56\x42\xa3\x3d\xf3\x63\x81\xf2\xcc\x8f\xe9\x76\x2f\x93\x86\x59\x37\x4d\x92\x15\x74\x20\xab\xfe\x17\x17\xf7\xd0\x41\x88\xdd\xfe\x5f\x9b\xc4\x46\xb2\x28\x1c\xb5\xbc\x0b\x52\xa5\x09\x6a\x62\x1a\x19\x5a\xb3\x8a\xad\x0d\x23\x70\x44\x95\x4d\x3d\x58\x60\x9c\x26\xe3\xf5\xc8\xc6\xcc\x5c\x04\x2f\xe8\x1b\x2a\x9e\xfd\x86\xea\xce\x25\xd6\x1b\x37\x70\x7c\x38\xd0\x60\x89\x74\x91\x47\x42\x1e\xd6\x87\xec\xa9\x06\x28\x49\x7b\x90\x5a\x71\x22\x5c\x64\x5c\xae\x63\x89\x8c\x1f\x44\xbb\x55\x8c\x33\x9b\x13\xd9\x98\x13\x97\x73\x4e\x33\x9f\xf3\xec\x10\x74\xbc\xc3\xf9\xe3\x89\x1a\xf9\x6f\xa8\x92\xcf\x4a\x98\xae\x4c\x79\xe5\x7d\xfe\x02\xec\xa5\x4b\x8a\x56\xfd\x7e\x6d\xf3\xbf\x30\xeb\xe4\xae\x48\x02\x17\x0b\xe9\x44\xe0\x8b\xda\x60\x15\x44\x2e\x74\xe7\xc6\x23\xa1\xf2\x32\xe8\x27\x11\x47\xa1\x81\x1c\x11\xe7\xc3\x64\x2d\x44\xb7\xa8\x21\xdd\x9c\x0f\xc1\x2a\x47\x13\x2b\xde\xa3\x76\x25\x1b\x15\x1b\x22\xd5\xd4\x88\xbd\xf8\x11\xa6\x87\x6f\x1c\xf3\xd5\x4a\x6c\x25\x57\xe8\x70\xfe\x2a\xae\x7f\xb2\xca\x9d\x96\xc6\xb6\x3f\x43\x86\x48\x40\x6c\xe5\xbb\x33\x07\x7b\xe0\xeb\xdc\x2c\xaa\xa2\x0b\xf3\xf0\xad\x7e\xbf\xa9\xb4\x8b\xf6\x91\x96\xd7\x45\xdd\x54\x5e\xf0\x66\x43\xcf\x6a\x3b\x8c\x73\xf4\x45\x3a\xbd\x84\x4d\x25\x4f\xb3\xe9\x16\x3b\x51\x67\x0c\x89\xd3\xda\xa3\x87\xb5\xaf\xb2\x59\xd1\x95\x4c\x52\xfb\x69\x3a\x91\x9d\x0e\x8b\x86\x3d\xf9\xfe\x92\x9b\x14\xa9\x09\xd4\xa0\x7c\x6e\x07\x20\x9d\x93\x16\xe9\xb7\x69\x38\xd8\xf6\x05\x2a\x2a\x02\xe2\x0a\x31\xd7\xde\x0d\xef\xff\x9c\xaa\x08\xa0\xd3\x61\x05\x0f\xf2\x12\xa6\x9b\xf9\x27\x35\xab\x29\xd3\x55\x63\x25\x5d\xa5\x78\x67\xeb\x1d\x0e\x14\x1c\x2a\xbf\x9c\x08\x78\x6f\x3f\x84\xb9\x62\x6a\x73\xf8\x75\x38\xa7\x2e\xa3\x4e\x82\x54\xe0\x35\xe5\x12\xdc\x56\xf6\xb7\x67\x8a\xcc\x66\x4a\xa0\x0f\x29\x20\xbe\xae\xf9\xa9\xae\xf3\x3c\xec\x1a\x58\x41\x9c\x83\xe8\x5c\x92\x1e\x7c\x6f\xd4\xfe\x54\xc1\x7f\xc2\x74\x35\x8c\x97\x35\xaf\x27\xf3\x6b\x72\x35\xb7\xc2\xeb\xf9\x56\xe0\x8d\x97\x0e\x89\xeb\x36\x68\xff\x6c\x3b\xb6\xe9\x6a\x55\x64\xb0\x7c\x1a\x29\xea\x79\xbc\xcf\x72\x12\x0d\x08\xc0\x04\xcc\xda\x8e\x8e\xaa\x65\x1c\x87\xc9\x40\x54\x70\x94\xce\x0b\xe1\x28\xf5\x35\x69\xca\x0d\x83\xf1\xcf\xa9\x65\x6f\xd2\x9a\x90\xde\x2c\x2d\xea\xbe\x4a\x32\x51\x0f\xf9\x8e\xdb\x63\x70\x57\x9c\x30\x61\x39\x8b\x2c\x61\x8d\xb8\x56\xf4\xac\x3d\x8a\xe8\x0a\x7d\x3b\x5f\x4f\x14\x72\x5c\x8a\xc9\x7c\xa7\x72\xab\xa9\x8d\xcc\x2b\x2d\x0f\x78\xc0\x2e\x12\x89\xf7\xa6\xc0\x25\x21\x02\x64\x47\xb1\xce\xcd\x59\xae\x33\xd2\x75\xaf\x9f\x9e\xe8\x6e\xc8\x31\xf2\xfe\xa8\x31\xdd\x50\xf2\x03\x3f\xc6\xe7\x71\xf4\xa2\xb9\x8b\xff\x08\xcb\x53\x24\x1b\x95\xb0\xc2\xd9\xc9\x36\xdf\x73\xdf\x62\xfb\xb9\x79\xf2\xf4\x31\x23\xa8\x7a\xf1\xf5\xe4\x53\x6a\x94\xe3\x2c\x0f\xf3\xc2\xc6\xbd\xf5\x29\x1a\x5d\x37\x83\xfb\xc5\xf2\xec\x24\x73\x8c\xc7\xb9\x55\x3b\x65\x9f\x9b\x6f\x77\xd7\xc7\x26\x43\x2b\xae\x23\x93\xf1\xa9\x81\x5a\x0b\xcb\xe2\x22\x51\x66\xc6\xcb\xf9\xd0\xc6\x15\xb1\x88\x63\x81\x7a\xa7\x63\xb5\x9f\xa2\x20\xf1\x15\xb1\xfb\xf0\xe1\xce\xeb\x56\x87\xf3\x4d\x05\xd3\x2c\x59\x0d\x6d\xce\x62\x0f\xf2\xd5\xde\x8d\xfb\x5d\x9a\x5e\x20\x0c\xd8\x09\x44\x76\xec\x66\x13\x0b\x4e\x37\x34\x71\x5c\x70\xae\x80\x8b\xf9\x81\x22\x68\xfc\xa0\x66\x99\x9f\x9b\x6f\xc7\x36\xc4\xf9\x38\x37\xe7\xb4\xac\x7d\x02\x19\xa0\x37\x09\x84\x2a\xbc\xf4\x2b\xcf\x80\xde\xa8\x2a\x96\xa5\x1c\x27\x11\x3d\x05\xab\x08\x5f\xe3\x79\x90\x59\xbd\xe9\x0a\x5b\x69\x32\x1a\xd3\x14\x39\xdd\x8f\x72\x91\x09\xb9\x45\x3d\x32\x3e\xd0\xee\x17\xe0\x61\xc7\x37\x6d\xa8\xe8\x83\x35\xfb\x31\x80\xf7\xf0\x4d\xa2\x4f\xbc\xbd\xae\x23\x26\x2f\x0b\xfb\xc3\x71\x01\xbc\x38\xc2\x78\xce\x1f\xf3\x8d\xaa\xd0\x90\x70\xad\x64\x8e\xa5\x0d\xd9\x1f\x6b\x57\xd4\xb1\x76\x05\x27\xb8\xf8\x3d\x4d\xa8\xed\x28\xe9\x76\xd7\x1d\x65\x8c\x63\x02\x74\xe5\xaf\x33\xb5\x3d\xbd\xb0\xb0\xbf\x9d\x86\xd9\x0a\x0e\x48\x06\x0d\xd1\x92\x16\x00\x91\x64\x2e\x4d\x14\x7d\x82\x8a\xc3\x08\xd7\x9e\x46\x55\x05\x01\x5e\x0b\xd5\x5d\xa9\x4b\x56\xe9\xcf\xa4\x86\xfc\xfe\x3f\xeb\x28\xfd\x27\xce\xce\xc2\xf2\x4e\x13\xbe\x17\x60\xfd\xbf\xbd\x51\x41\x9f\xb4\x1c\x95\xdc\xdf\xd8\x50\x09\x02\x44\x5c\x20\x43\x7d\xa2\xe3\x0b\x51\xbb\x2b\x68\xe8\x0d\xb7\x08\xde\x7e\x62\xe3\x49\x95\x51\xc8\x8a\x28\x97\xcd\x05\xf7\xf3\x8e\xc2\x60\xde\x69\x60\x77\x6b\xdb\x57\x6c\xda\x0b\x33\xf1\xaa\x10\x2e\xbe\x8e\x23\x95\x6f\x6a\xa3\xfb\xdc\x7c\x3b\xcb\x93\x14\xbe\x0d\xab\x45\xc3\x7c\x8b\x74\xf4\xe3\x0a\x1e\xb7\x3c\xb2\x71\xbe\x8b\x5e\x92\x4b\x1b\x64\xd1\x5d\x99\xe3\x85\x59\x97\x27\xa5\x5f\x75\x75\x2b\xdf\x31\x74\x12\xf6\x94\xff\x4c\x31\x27\xbf\x5c\xf4\x97\x2d\x50\x08\x38\xab\xa6\x36\x74\x5d\xef\x03\x45\xda\x39\xd5\x69\x6d\xef\xb7\x86\xcb\x70\xb9\x81\xe0\x70\xb1\x1d\x15\xa9\x8c\x09\x66\xf6\xbd\xc0\xa3\x95\xde\x53\xc1\x69\xbf\x00\x38\x45\x9c\x34\xef\x85\x9d\xda\xde\xf1\xfa\x92\xf3\xea\xfc\x81\x9a\xdb\xd1\x38\x49\x45\xdb\xb2\xc9\xeb\xdb\xae\x7c\xb3\xb8\xd8\xee\x62\xe8\x59\x2b\x12\x83\x23\xc2\x91\xda\xfc\xe4\x36\xd7\xaa\x96\x88\x03\x84\xd2\xc6\x1b\x83\x3a\xc1\xd8\xdc\x5c\x7b\x39\xb5\x26\xc3\xa1\x88\xdd\xf0\x2e\x7d\x9a\x25\xbf\xe8\xd5\xe0\xf7\xff\x81\xe6\x25\xea\x87\x2d\x1f\x05\xbc\x85\x61\xe6\x9b\x46\x39\xd1\xf2\x82\xc7\x79\xeb\x22\x5c\xbd\x8b\x3a\x8b\x40\x3c\x26\xd9\x8c\x66\x01\x57\x80\xd8\x5b\x2a\x81\xfd\xef\xe0\x8d\x32\x17\x13\x2d\x2b\xc9\x5b\x2a\x52\xb0\x28\xf4\x91\x3d\x12\x4c\x6f\x4f\xb4\x3e\x18\xbd\x23\x6b\x3b\xd6\x98\xcc\x3f\xdf\x36\xe9\x88\xc3\x0a\xe6\x35\xa2\xa5\x2c\x1c\x47\x4d\x34\x34\x03\x8b\x3c\xaa\x1f\x88\xe3\x5c\x0b\x97\xda\x9c\x76\xae\xc2\xe5\xd8\x14\x51\x5e\xd5\xaa\xa1\xcf\x8a\x58\xcd\x93\x7a\x6c\xc2\x5e\x68\xe3\x7c\x9a\xdc\x28\xb2\xf1\x53\x4f\x6c\xf8\x76\x18\x86\x9d\xf0\x3f\xd0\x7c\x4b\x33\x67\x03\x70\xae\x3c\xde\xb4\x26\x2d\x44\x1e\x9d\x20\x74\xe9\x48\xa3\x35\xee\xf0\xc4\xf3\xed\x0d\xb2\x57\x5a\x15\xd8\xfb\xc2\x82\x5c\x57\xfa\x57\x57\xc2\xfe\x0c\xde\x5a\xda\x95\x34\xa7\xe7\xc4\xe7\x3d\x19\x9a\x56\x61\xbd\x97\xec\xb9\xc7\x45\x75\x8b\xd4\x9a\xa2\x97\x9a\x1e\x9c\x5e\x3c\x31\xda\x07\xf9\xba\x31\xab\xad\x8f\x71\x78\xd6\xd7\x54\xeb\x1d\xda\x3e\xe4\x25\x85\x2c\x2a\x8c\xf3\xd4\x14\x79\xe9\xc9\x5a\x25\x6f\x7c\x5d\xc9\xc4\x5c\x57\x3b\xe0\x5f\xfc\xb7\xff\xbc\xa5\x50\x12\xa7\x29\x76\xe2\x6b\x05\x6b\x1c\x84\x71\xff\x21\x4f\x62\xfc\xb1\x26\x3f\x3d\x81\x31\xe0\x4a\x0e\xbb\x0c\x88\xac\x2e\xab\x10\xf2\x12\xa5\x5a\x90\xfb\xda\x89\x2c\xa3\xa4\xce\x68\xb6\x00\x06\xb8\xea\xf2\x1e\x43\x9b\x76\xc3\x5e\xd8\xb7\x58\xfd\x08\x06\xdf\x9e\xa8\x4e\xf6\x2b\x41\x45\xc1\xe9\x41\x7e\xc0\x5a\x1a\x7a\x1a\x41\x89\xbc\x5b\x8e\x29\xe2\x6d\x2d\x7c\xf0\x1d\xdf\x3b\x97\x86\xb9\x48\x6e\x48\x8d\x4c\xa5\xdf\xce\x4f\x14\x46\x65\x47\xc7\x9b\xf8\xa1\x49\x23\xcb\x30\x05\x11\xd7\xa5\xcf\x79\x75\x5d\xef\x0a\xaf\x30\x27\x2d\x30\x41\xef\xe1\xe5\x60\xff\xaf\x07\xad\xe7\xe6\x5d\x62\x53\x42\x69\x90\xbd\xba\xb7\x81\x6d\x84\xbb\x8c\xee\x97\x4b\x8a\x8c\xf9\x92\xda\xab\x59\x2f\x0d\x59\x68\x65\xfe\xa0\xcb\x74\x78\x5a\x9d\x7b\xca\xc6\xa7\x96\x42\x21\xd4\x46\x9e\x65\x5f\x10\x61\xa6\x8b\xb6\x17\x16\x78\xc4\xbe\xa2\xd2\xd5\xdd\x24\xc9\x98\x3d\xcb\x31\x10\x7b\xf9\x3b\x0d\x71\xc8\xd6\xa3\x28\x2c\x46\x04\x89\x41\x39\x1f\x95\x7a\x11\xe7\xa1\x96\x45\x71\xda\x5a\x8e\x08\xe8\xd8\xc4\xe7\x6f\xfe\x82\xba\x2d\xf0\x10\x77\x02\x45\x97\x73\x9c\x8c\x9c\xa8\xac\xa8\x16\xcd\xb7\x15\x54\x31\xcb\x4d\x1e\x66\xb9\x6b\xd4\x16\xee\x70\xef\xa5\xd5\xbb\xe7\xe7\x0f\x12\xcf\x42\x98\x71\xe7\x17\x7c\x33\x6c\x63\xbe\x9e\xfc\xbd\x9a\x67\x77\xa0\x9d\xa7\xa6\x6f\xfb\x61\xe9\x83\x38\xee\x29\x6e\xdc\x9e\xe8\x26\x6e\x4d\x20\xb4\x1c\x87\x9a\x95\xf3\x88\x66\xe5\x3c\xe2\xa8\x0d\x88\x49\x27\x4c\x40\xc1\x8f\x88\x76\x07\xa1\x86\x70\x56\x5c\x44\xde\x41\x0c\xf3\xa3\xea\xa8\x1d\x3c\xd3\x52\x02\x32\xef\xc3\x81\xe2\x9b\xc9\x93\x2a\x34\xed\xa5\x45\x98\x43\x60\x44\xb0\x4d\x3f\x52\xf4\x51\x3f\xaa\x79\xc0\x87\x0e\xb5\x63\xd3\x7b\xd5\x46\x71\xb8\x42\x3b\xd7\xf1\x74\x3b\x7f\xe6\x17\x94\xb9\x61\xad\x36\x0f\x5a\x1e\xd9\x28\x62\xa1\x5b\x7c\x66\x2b\xa8\xd6\x04\xca\x67\x14\xe1\x49\xe5\xb2\x41\x00\xfe\xe1\x96\x56\x9c\xfc\xe2\x8b\xec\x21\xdf\x50\x44\x30\x97\xb1\x4c\x44\x8a\xd2\xf3\x08\xfc\x18\xf0\x6a\x61\xe0\x28\xd7\x0f\x6a\xaa\x28\x22\x6e\xdd\xac\x04\xf2\xc1\x27\x54\xe0\xb0\x56\x1e\x97\x7e\xff\x01\x83\xca\xd7\x75\x6c\xdc\xf3\x07\xda\x79\x12\x2f\x3f\x1d\x46\x9c\x6d\x47\x42\xee\x9b\xf8\x7e\xbe\x09\xf6\xf2\xc7\xca\x43\xe0\xef\xb4\x5e\x5c\xf2\x32\x41\x4e\x45\xf1\x11\x60\x21\x59\xb2\x06\x8f\x0f\x3b\xfb\x26\xaa\x2a\x58\xc4\xdf\x0e\x3c\x12\xe3\x68\xe0\x11\x9b\xed\xc7\x37\x7c\x3c\xc9\x51\x3e\xe0\xdd\x53\x0a\xb1\xfe\x0b\x1c\x7b\x2c\x18\x1a\x78\x9e\xf8\x53\xc4\x26\x2c\x24\xcc\xe5\xfe\xd4\x82\x98\x62\x4a\xf5\x49\x70\x01\x99\x14\x27\xaa\xf5\xeb\x5f\x72\x58\x7f\x9c\xe2\x0e\xcd\xf6\xc5\x17\x3d\x2c\xe2\x05\xc1\x4a\x6d\x21\x9a\xe1\x16\xb5\x40\x41\xf5\x58\x20\x08\x16\x94\x41\xeb\x58\x30\xac\xa5\x20\xe9\x05\x25\xe8\xf2\x1d\xac\x2b\xa7\x90\xf0\x85\xdf\xe0\xa9\xe5\x44\x1d\xbc\x88\xdd\x9d\xd6\xd3\x4f\x2b\xa1\x68\x31\x1c\xd6\xa4\xb1\x00\x0d\x45\x7c\x85\x1e\x48\x64\x59\xb6\x1f\x44\x2f\xcc\x92\x50\x41\x9e\x86\xdd\xc2\x91\x2f\xa1\x83\x8d\x9b\x60\xf9\xc6\x01\x55\x47\x49\xdc\x37\xeb\x19\xca\x48\x22\x20\xa7\xe0\xf1\x90\xd8\x46\x9f\x18\x77\xd5\x08\x0b\x68\xc5\x8d\x31\x2c\xbd\x28\x32\x69\x34\x06\x7c\xf3\x40\x6e\xa9\x30\x5e\xb5\x80\xcf\x4d\xf9\x82\x29\xfc\x31\xcc\x3e\x73\xbd\xe0\xa1\x77\x39\x75\x8b\xf5\x64\x25\x19\x9a\x91\x69\xb5\x14\xb7\x62\x85\x02\xac\x21\xeb\x1c\xdb\x35\x93\xae\xb4\x7c\xee\x90\x4f\x59\xbe\x51\x89\x4f\x13\x2f\xdb\x28\x99\x51\x1d\x69\xd0\x75\x61\xfd\x4e\x95\x2c\x38\xab\xf1\x78\x27\x70\x50\x0b\x32\xad\x41\x47\xb4\x88\xcd\x78\x6c\x4d\xe4\x22\x76\x49\x0d\x7a\x1c\xee\xa6\xb3\xb8\x71\x18\xdb\x41\x12\xa1\x53\x13\xef\x85\xcc\x15\x5f\xbb\x40\x3d\x31\x18\x3e\xec\xc3\xdb\xaa\xd1\x01\x24\x18\x18\xbd\x53\x0d\x9a\xea\x4b\xed\x7e\x1a\xc6\xa2\x4f\xc6\x60\xa9\x40\x51\xd4\x6c\x56\xb0\xed\x63\x1b\xd9\x2c\x83\x30\xed\xa2\xa3\x6b\x28\x37\xb1\x30\x34\x78\x58\x18\xf3\xec\x3d\xec\x4f\xaf\xe3\x70\xba\x1d\x33\xf2\x3e\xd5\x95\xef\x40\xd8\xc7\x27\x4a\x78\xef\x90\x2a\xcb\xdf\xc2\xe6\xd3\x52\xbc\x88\xdd\x7f\x1e\x28\x5a\xd8\xfb\x4d\x44\x50\xdd\xe4\x15\x5b\xe1\x55\xa9\xb0\x69\x68\x6e\x40\xe2\xd7\xec\x4f\x97\x8f\x23\x8e\xaf\x12\x70\x3a\x4a\x1f\xe3\x6b\xf5\xda\x67\x1a\xd9\xa7\x86\xd6\x32\x7d\x90\xe4\x8a\x7d\xd7\xd5\x3d\x45\x0c\xb5\xa9\x4a\x55\xcb\xa9\xe9\xce\xf8\x1e\x09\x16\xdd\x46\x6d\x06\xc2\xad\xdc\x99\x42\xdf\x05\x43\x74\x54\x93\xf9\xcd\x6c\x3c\xa1\xfa\xfa\xd2\xd2\xf5\xb0\xad\x8a\x40\x96\xe6\xa4\x6d\x24\xd4\x28\xd2\x55\xbb\x2e\x01\xbe\xe0\x76\xca\x9f\xe6\x6b\xad\x7f\xe4\xe4\x99\x66\xbd\x85\xdb\xe7\x35\x60\xb6\xd7\xf7\xe6\xe6\xda\x3d\x53\xe4\x61\x52\x94\x8b\xa8\x34\xb9\x8e\x03\x77\xbf\xbb\xd6\xb2\x1e\xa6\x67\xa1\x48\xa8\xf6\xb8\x08\x08\xbf\xa1\xe8\x2a\x3f\xa2\xf5\xc0\xd7\xd8\x85\x30\xff\xef\xd5\x0c\xc1\x8b\xf3\x07\xdb\x8a\x74\x54\x46\xa2\x42\xd5\x2b\x2e\x70\x64\xd6\x46\x66\x85\x83\xd4\x03\x9a\xaf\x60\xc9\xf1\x15\x34\x80\x09\xd7\xac\xc3\xed\x31\x06\x39\xf0\xe5\x72\xcd\x86\xd2\x4b\xd2\x71\x02\x71\xa2\x5d\xdb\x09\x36\xe0\x7f\x4d\x23\x19\x29\x6c\x1b\x64\x54\xc5\x9c\x7b\x5d\x85\x4d\xcd\x11\x7a\x41\x51\xfe\x8d\xc3\xb1\x04\x16\x28\x6b\x9c\x53\xa5\xb9\xdb\xaa\x9a\x73\xaa\x09\x39\xb6\x5c\x84\xb1\x35\x18\x27\xd1\x50\xf7\x48\xa9\xba\x3a\xec\xaf\xb6\x33\x1b\x87\x09\x08\xe4\x1a\x89\x9b\xfc\xd4\xe6\x49\xc2\x7c\xce\x4a\xca\xe2\x25\xb9\x99\x7c\xda\xb3\x68\x9a\x2c\x33\xbd\x61\x91\xd9\x3c\x47\x2d\xaa\xe2\xa3\x49\x4f\x53\x43\x9a\x86\x68\x3c\xc0\x5d\xa4\x5a\x0b\x44\x73\x9a\x85\x54\xb0\x9b\x19\xe2\x07\xa7\xfe\x63\x2d\x91\xfb\xe5\xc2\xda\x57\x59\x81\x0c\x53\x8e\x5e\x7d\xbe\xae\xa5\x0b\x4a\x9b\x5a\x8c\x67\x54\xd6\xfc\xb4\xea\x08\xbb\xa6\x0a\x8c\x40\xaf\x63\x61\x5f\x0f\xd4\x31\xf2\x07\x4e\x66\x20\x19\x85\x79\x05\x68\xc6\xec\x80\x7c\xd3\x90\x55\x39\xc0\x0c\x3b\xa8\xf5\xc3\x87\x01\xd0\x8e\xaf\x55\x86\x70\x00\x78\x85\xcf\x8a\xa0\x0d\x83\xaf\x6b\xa9\x4d\xc0\xd1\xcd\x7a\x4b\x31\x30\x30\xc1\xa7\x08\xaa\xe8\x04\xdb\xa8\x60\x13\x02\x3f\xe8\xac\x42\x5c\x9c\xad\x75\x37\xcd\x1f\x6c\xe7\x69\x52\x74\x23\x9b\x51\x73\x96\x93\x3d\xc3\x26\xe7\x6b\x95\xad\x5a\x4e\x4d\xbf\x60\xdb\x26\x8d\x50\xcc\x0d\xc1\x37\x0a\xa1\x88\x0e\x91\xac\x42\x93\x13\xf8\x76\xd8\xf7\xb4\x96\x3b\x1b\x48\xfe\x17\xc0\xb5\x18\x12\x4a\xf3\x28\xf0\x50\xc9\x81\x2c\x97\xe1\x6b\x5c\x7a\x30\x26\x9a\xd2\xbe\x22\xbd\x2f\x10\x07\x1f\xd0\x4b\x48\xe3\xb7\xb7\xf6\x99\x59\xc6\xbb\x6a\xba\x7e\x29\x59\x3f\x88\x1b\x2d\x0e\xc7\xe3\x24\xa6\x6e\x83\x46\x86\xcc\x06\xb8\x75\xdb\xe4\xb9\xf1\xac\x23\x4e\xb2\x70\x9f\x67\x65\xf4\xab\xa2\x9f\xf4\xf2\x24\xc5\xd4\x61\x48\x58\x7e\x99\x6f\x9a\x45\x58\xcd\xab\x36\x87\x37\x86\x8a\xe9\x3b\x13\xd5\xf0\xf5\x4e\x2d\xbf\x39\x37\xd7\x8e\xac\xc9\x9c\x1b\x84\x53\x5d\x8b\xa4\x5f\xab\x25\x77\xff\x51\x3b\x59\xa3\x60\x78\x8b\x20\x6c\x5b\xe7\x9c\xba\x04\xc0\x01\xe1\xaa\x65\xe1\xa5\x26\x16\xf0\xed\x47\x11\x61\x91\xe2\x55\x9b\x66\x61\x12\x63\x49\xe3\x98\xfe\x8f\xaa\xe7\xfe\x3f\x2a\xce\x1b\xb3\xbc\x9c\xda\x65\xc2\x60\xfa\x3f\x98\xea\xa8\x4f\x4e\x6d\xf8\x51\xcc\xc2\x68\xd5\xa6\x40\xd1\x54\x34\xea\x44\x9b\xb3\xfc\x0e\xc1\xd2\xd2\xba\xe4\x7f\xa8\xa5\x96\x7e\xb5\x3d\x32\x71\x31\x30\x3d\x88\x33\xb7\x14\xdd\xc5\x95\x89\xaa\x15\x05\x4f\x2a\x92\x2d\x6a\x8d\x4c\xc0\x41\x86\x50\x01\xd6\x86\xaf\x3d\xcf\x81\xcd\xec\xa8\x1b\xd9\x69\xb5\x73\x36\x55\x82\x98\xdb\x95\x9d\x86\xbd\xcb\x5e\x4c\x6f\x3c\xa9\xa9\xae\x07\x85\xcc\xa5\xb8\x6b\x80\xbc\xf0\x75\x13\xbd\xc4\xb8\x18\x09\xdf\x93\x98\x8f\x96\xe2\x0f\xda\xbe\xfc\x3f\xdf\x0e\x63\xfb\xca\x38\x0a\x7b\xa6\x5b\x4e\xf3\xaf\x7f\xc9\xd1\xf4\x7b\xa1\xf3\x33\x0e\xe6\x69\x7a\xbd\x64\x34\x36\x71\x68\xfb\x33\x9e\xed\xfa\x82\xae\xe3\x3f\xd2\x51\xae\x29\x4c\x00\x1c\x0b\x30\xee\x4a\x7a\xd7\x7b\xb4\x79\x4a\x64\xce\x4f\xd2\x90\x08\x51\x28\x0d\x1c\x5e\x13\x3d\xb2\x0e\xf3\xba\xb0\xc0\x67\x38\xc4\x39\x71\xfa\xef\xdd\x50\x85\x1c\x08\x08\x22\x48\xbe\x4b\xd6\x45\x80\x9d\x88\xf8\xf0\x38\x47\x2b\x7c\x45\x48\x2b\x60\xb3\x7f\x14\x28\x95\x5e\xce\x08\xc3\x23\xfd\x2d\x64\xb5\x10\x8c\xdf\x0c\x94\xd4\xce\x26\x65\x5d\xa5\xf8\x4f\xc3\x21\xaa\x57\xa5\xd7\x2b\x2d\xa5\x2a\xe5\x61\x63\x13\xe5\xeb\x33\xbe\x91\x71\x27\x16\x3d\x92\x32\xb7\x74\x47\x95\x10\x34\x23\x67\x7a\x62\x52\x51\xc7\xdb\x2e\x54\xb0\xb0\xb0\xbf\xdc\xb9\xe1\x28\xec\x13\x21\x6a\x4b\xa9\x43\x7f\xac\x1c\xf4\x8f\x27\x4f\xf9\x8a\x52\x48\x51\x45\xdc\xb3\xd9\xb4\xda\x79\x0c\xb5\xc7\xf1\x79\x04\xd8\x09\x54\x66\xae\xd1\x16\x81\xe9\xba\x5c\x2b\x04\xef\x5b\x6c\x97\x96\x43\xf9\xfb\x95\xbe\x83\x19\x4a\x76\x0a\x89\x8e\xf2\x4f\x4e\x2b\x7b\x69\xd2\xe5\xc2\x66\x53\x5e\x0a\xed\x06\x25\x29\xb0\xd3\x3e\x40\x5e\x40\xa2\x3c\x89\xb9\x1d\x07\xb9\x73\xe8\x91\x0a\x41\x9a\xe2\x9a\x46\xa4\xc2\x63\x70\xec\xbe\xe5\xe2\x41\xd8\x73\x2d\x50\x14\x10\xbf\x42\x5d\x30\x52\x80\xf5\x21\x9b\x19\x0c\xc2\xbe\x59\x0d\xf3\x8c\xd0\x74\xc8\xce\x31\x09\xb5\x14\xd4\xe8\x6b\x50\x06\xd7\x94\x6b\x97\xf1\x63\xbc\xd2\x9a\x30\x59\x2b\x71\x02\xef\xdf\x55\xe7\x8f\xe0\x33\x7c\x53\xb3\xfa\xfb\x67\xdb\x3d\x33\x0e\x73\x26\x90\x70\x69\x18\xd7\xb2\x7c\x5e\xad\x3b\x32\xe9\x49\x0c\x9b\x82\x73\x84\x5d\x3e\xbe\x69\xea\xa7\x5f\x33\xe9\xc8\x2d\x25\x2c\x87\x7b\x81\x6f\x6e\xba\xa7\x12\xc8\xa9\x5d\x0d\xed\x5a\xcb\x17\xeb\x4e\x68\xcd\xc0\x13\x81\xf7\xd2\xfb\xc9\x5a\xbc\x8c\xbd\x8f\xa7\xc1\x9f\xdc\x9f\xf8\xcf\xde\x57\xd6\xd7\xd8\x34\xc9\xc6\xa6\x27\x24\xb0\xe2\xbc\xe8\x3c\x90\xa6\x52\x3a\xe7\x50\x0c\x83\x24\x5a\x99\x2e\x27\x52\x41\x08\x0e\xf0\xc2\xbc\xad\x94\x84\x98\xce\x52\x3a\x13\x1b\x3b\x38\xd8\x58\xe9\xb4\xfa\xbb\x4a\xbd\xf8\x9b\x30\x5c\xa2\x52\xd6\xd4\x4a\x54\x1a\xd0\xc8\x3a\x50\x21\xb3\x77\xc1\x17\x10\x2a\xaf\x27\x55\x72\x20\x8a\xd6\xd7\x92\xa4\xff\x50\x39\x2a\x4e\x99\xc1\x11\x91\xb7\x60\xf8\x5c\xf3\xa8\x87\x66\xff\x25\x96\x23\xcc\x20\x18\x02\x50\xb9\xe1\xa6\x10\xa4\x04\x2f\x04\x3e\xd7\xdc\xea\xf8\xc9\x49\x8a\x5c\xc0\xbe\x44\xb5\x8d\xb4\xc5\xf7\xc8\x9a\xc2\x46\x5f\xc6\xf9\x0a\x90\xe8\xc5\xc0\xb3\x5d\x72\xd7\x06\x3c\xf0\xbb\x6c\x73\x19\x09\x44\x8b\x12\x87\x06\x20\xaf\xea\x00\x99\xe7\xd2\xc1\x2e\x00\x22\x50\x4c\xda\x49\xd5\x45\xfe\x45\x4d\xcc\x7c\xd6\x65\xda\x56\xc3\xd5\xb0\x8f\xe4\xc9\x4b\x15\x42\x1c\x71\xff\x3e\xa9\x84\xf6\xba\x26\x32\x30\x73\xe5\x04\xb2\xf2\x14\x52\x86\x40\xd2\x21\x87\x21\x92\x54\x64\xe1\xf9\x1f\x14\xa8\x6d\x58\x2c\x5b\x54\x88\x51\xbb\xe3\xa0\x07\x5b\x1f\x07\x2e\xd6\xc3\xe5\x89\x42\x56\xea\x82\xfc\x59\xe5\x74\x97\x87\x6a\x11\xe7\xd9\x5e\x1a\x04\xce\xf4\x22\x2d\x23\x15\x27\x9a\x57\x57\x8b\xd2\x02\x7d\xbe\x87\xf7\x34\x79\x9e\x58\x93\x7f\x0c\xcb\x2d\x82\x94\x2d\xc7\x94\x76\x08\x96\x93\xff\x4a\x0b\x79\x33\xd2\x4d\x6a\x78\x0f\xf2\x93\xd3\x62\x6c\x53\x04\xe1\x38\x47\xde\xd1\x24\x18\xef\xd4\x32\xa7\xfb\x00\x32\x4d\x47\xb6\x1f\x0a\x38\x95\x21\x91\x13\xdf\x3d\x71\x3b\x78\x4c\x4b\x2f\xf4\x86\x7b\x68\xac\xa4\xe1\x92\x1e\x53\xda\x32\xd5\x0e\xbb\x3d\x51\x14\x21\xbf\xc4\xc0\x20\x0a\x7c\x98\x7c\x00\x87\xf8\xd8\x27\x59\xbc\x87\x3b\x5e\x75\xf8\xe2\xc4\x17\x57\xa1\xb5\x00\x67\x60\xab\x51\xe0\x84\xd2\xbf\x09\xaa\x1b\xf2\xfb\xdf\xae\xaa\x35\xd3\x33\x23\xa5\x7b\xa9\x29\x72\xee\x99\x28\x92\x7d\x8f\xbd\x72\x09\x2f\xc0\x37\x81\x6f\x69\xce\x92\x68\xd5\x4e\x95\x5e\xf9\x6d\xd5\xf3\x0a\xd9\x25\xa4\xe3\x8f\xaa\x70\x3a\xb5\x91\x5d\x35\x71\x3e\xad\xe8\xf9\x2e\x57\xc0\x47\xbe\x27\xe9\x23\x1a\x0d\x91\xf2\xda\xeb\xd1\xec\xd9\xb4\xaf\xf4\x9e\xd2\x82\xa6\x3b\x37\xbc\x6e\x82\x79\xaa\xe3\xdb\x62\x77\x6e\x6c\x4f\x74\xed\x9f\xdd\xdf\x8e\x6c\x98\x15\xa9\x55\x39\xe4\xa3\x0a\xc8\x72\xb4\x8e\x04\x98\x6f\x9b\x28\xa2\x6c\xac\x48\xbb\xb6\x1c\x07\xf8\x79\xc5\xb5\x6c\x8a\x2c\x4f\x4d\x84\xd6\x81\x67\x25\xb1\xa9\xc2\x91\xe3\x2a\xe7\x98\xa7\x45\x6f\xc5\x22\x0e\xd4\x24\xdb\x92\x0b\x6a\xa8\x0c\x8e\x8a\xdc\xab\xcc\x8a\x80\x66\x6b\xf1\xc1\x62\x98\x73\x73\x44\x5d\x58\x8c\xc9\x69\xda\x3a\x3c\xf1\xd0\x15\x6e\xeb\x43\x82\xe6\xa4\xe2\xde\xd9\xd9\x69\xa0\x52\xff\x5c\xbb\x97\x16\x7d\x3c\x2c\x2c\xe2\xd5\xc0\x5b\xc7\xab\xaa\x9b\x3b\x4d\xa2\x68\x46\x61\x40\x8f\x50\x33\x8c\xf0\xd7\x3a\x5d\xeb\xd3\x17\xd0\x27\xee\xf0\xd7\x0b\x0b\xdc\x8a\xf1\x9e\xae\x28\x8b\x1a\xef\xb4\x17\x20\xff\x26\x4a\xf9\xac\x2d\xa2\x04\x37\xae\x07\x0a\xc1\xf4\x4d\xa5\x18\x51\x44\xe1\x94\xea\xb8\xda\xd1\xf1\x05\xa4\x3b\xda\x5d\x6f\x64\x6f\xe8\x86\x49\xd6\x0b\xc9\xf3\x9c\xd2\x48\x45\x26\x24\x10\x5d\x06\xfa\x69\x84\x0e\xef\xd7\x32\x28\xbf\xda\xee\xa6\x49\xdc\xe3\x84\x1c\x76\xc7\x6d\x2d\x52\x87\x99\x67\xdd\x5d\xd5\x10\x97\x99\xcc\x76\x13\xae\x03\xb9\x7c\x99\x4a\x9e\x35\xd0\xe3\xb6\xad\xc9\xc8\x8a\x6d\xdd\x2d\xbf\x75\xeb\xae\xae\x6f\x84\x69\xb7\xc8\xa6\x14\xed\xec\x59\xe5\x27\xdf\xd6\x10\xb7\x8f\x15\xbd\x61\x7f\x5d\x88\x4a\x90\x05\x19\xe2\xd9\x31\x77\x37\x15\x55\xd7\xcd\x9a\x75\x5d\x58\x68\xdb\x57\xc6\x36\xee\x87\x79\x91\x4a\x32\x5e\x30\xb4\x7e\xd3\xd5\xe9\x5f\xf7\x2d\xb6\x7b\xeb\x3d\x5f\x30\x61\xf9\x69\x85\xc1\xbd\xe8\xd8\xdd\x62\x93\x17\xa9\xdb\x18\x15\x42\x27\xc9\x73\x78\x0d\x86\x74\x35\x8c\xc1\xc2\x2b\x2a\xd6\xf4\x87\x7c\xa3\xd4\x38\x73\xf3\xca\xd8\xac\x5b\x66\x83\x64\x81\x17\xe4\x8b\x61\x42\x35\xa3\xea\xcc\x86\xe7\x86\xe8\xa6\x89\xe9\xf7\x4c\xc6\x69\x4b\x0e\xb3\x68\xbf\x48\xc8\xe5\xc2\xd5\xf1\x38\xb5\xbd\xd0\xeb\x40\x0a\xab\xb4\xf2\xc1\x37\x6b\xe1\x0b\xe1\x7f\x0b\x38\xd3\x2e\x85\xe4\xd3\x49\x4d\x9c\x99\x79\x1a\x0e\x22\x34\x14\x0a\x53\x58\xcb\x31\xfa\xdf\x54\xb8\x88\xe3\x8e\x2b\x25\xb3\x79\xce\x92\x7d\x2a\xee\x03\x82\x4f\x94\x41\xb6\x3f\xd9\xc2\x42\xbb\x1f\x2e\xc3\x50\x4b\xab\x76\xcb\x29\x9b\x5f\xc7\x01\xc4\xff\x10\xa8\xdd\x70\xdd\x15\xbf\xb2\x51\x92\xe4\xc3\x68\x7d\xca\x77\xb4\xa1\x98\x85\x47\x85\x10\x07\x33\x49\xa9\xa6\x95\xd4\x96\xa7\x7e\x92\xa2\x11\x54\x62\x71\x05\x8a\xf9\x65\x0d\xba\xb6\x7f\xb6\xbd\x9c\x80\x63\x03\xaf\xb3\x89\x2c\x01\x33\x02\x06\x9a\x8d\xbc\x02\x21\x2c\xfa\x76\x2f\x3d\x3b\x0a\xfb\x17\x03\x5d\xa7\xbd\x3f\xf1\x38\x89\x7b\x98\x46\xee\x18\x82\x63\x23\x78\x26\xdf\x05\x3c\xdd\xf1\x68\x7e\xae\x24\x4a\x4e\x48\xb1\x91\x7f\xa8\x7b\x43\x6e\xe8\x18\xf0\x96\x3b\x23\x23\x13\xf7\x1f\xf6\x84\x2e\xb0\xea\xc8\xf3\x43\xbf\x0e\xb5\xb2\xc7\x3b\x4a\x02\x8d\xe9\x32\x60\x02\x6f\x04\x5e\xac\xf0\x7d\xfc\x3a\x6b\x13\x23\xb6\x86\x9b\x7b\x6e\x52\x51\x4b\x74\xd8\x0a\x82\xa4\xef\xa6\x7f\x73\x8c\x72\xe5\x57\xa0\x02\x71\x79\xa2\x79\x73\x6e\x29\xc2\xb1\xfb\x93\x1a\x0e\x18\x01\xf1\xff\x0f\xa4\xbd\x42\x1f\xd2\x90\x4c\xca\xc2\x48\xb8\xaf\xf5\xc7\x85\x73\xcf\x77\x7c\x5c\xd1\xd5\x2b\xaa\x74\xb1\x19\x74\xd4\x9d\xae\x50\xf3\x27\x8a\x24\xfd\x8f\x9a\xe2\x5f\x30\x66\x33\x8a\x44\x80\x1e\x8a\xbb\x17\x10\x4c\x19\x1e\x9f\x47\xea\xa6\xa1\x1d\x90\x91\x12\x4c\xcc\x77\xc8\xd5\xe1\xeb\x4a\x16\xbd\x1b\xd9\xcf\x2a\xf1\x80\x1f\x60\x96\x18\x0e\x85\xc0\x06\xfe\x07\x89\x3e\x6d\x7d\x4c\x60\x09\x58\xee\x29\x26\x50\x81\xad\xfe\xfe\x44\x75\xf4\x31\xc1\x31\x82\x07\x50\xc9\x02\xc1\x82\x2d\x06\xc0\xe7\xc7\xd8\x98\x68\xc8\x78\x3b\xf0\x12\x2f\xac\x9d\x81\x64\x42\x1b\xb1\x28\x67\x5b\x94\x43\xb4\x87\x3a\x9d\xf0\x4e\x6f\x06\xad\x5f\x3b\xe0\xd5\xc8\x4b\xa3\xcb\x54\x24\x94\x8d\xc2\x13\xb6\x36\x7c\x1f\xe6\x1b\x08\x24\xe0\x20\x3e\x04\x35\x21\xbc\xf4\x27\x81\x09\x67\x01\x15\x14\xc4\x00\xad\xfe\x1f\x40\x05\x03\x3c\xcc\xa3\x9d\xd6\x73\xf3\xae\x99\xc4\x67\x6b\x22\x62\xed\x98\xf1\xf2\x1b\x9b\x94\x5f\x81\xff\xf8\xbd\x89\x6a\x0d\x0a\x54\xcb\x90\xd2\x80\xbe\xac\x4a\xdc\x6b\x26\x4d\x4d\x9c\xef\x52\x9c\x46\xe7\x82\x9d\x9f\xab\xd0\xd4\xc0\xa4\x5c\x9b\x78\x8f\x87\x11\xdb\x80\xec\x9e\x98\xf8\x9c\xea\x55\x15\x5b\x2c\x17\x26\x85\xaa\x2b\xeb\x0c\x06\x2a\xf0\xfc\x58\xf9\x9a\x23\x33\x1a\x95\xae\x26\x27\x4a\xe0\x46\xbf\x8e\x9d\xc4\x37\xce\xa6\xf6\xed\xb8\xc8\x43\xe7\xc0\x28\x9f\xc5\x89\xb9\xe2\xb4\x44\x08\x36\x56\xee\x9c\x35\x69\x34\x43\x5f\x0a\x14\xf1\xfd\x4a\xad\x82\x7e\x5a\x9f\x40\x9c\x89\xd3\x90\x8c\xeb\x2e\xe9\x9c\xf4\xfb\x44\x85\x85\x40\x58\x52\xd2\xf4\x14\x92\xab\xde\x7e\x72\x3d\xfd\x34\x29\x4d\xf7\x20\xf3\x80\xf4\xc8\x7d\xdd\x61\x71\x5f\x4d\x8b\x19\xa4\x61\xcf\x00\xd2\xe6\xe0\x02\x4e\xb4\x5f\x6b\xc5\x3e\x5f\xe4\x33\x9a\x42\xfc\xcc\x44\x25\xc3\x40\xd1\x8b\xf9\x7b\x13\xbf\x05\x3b\x35\x4d\x0b\x15\x46\xf7\xc9\x4e\x03\xd0\x04\xc4\x28\xe4\xab\x2a\x38\xa7\x90\xae\x9d\xd3\x02\xe7\x9b\xaa\xff\x74\xb7\x82\x76\x8e\x4d\x64\x7a\x8c\xd8\x64\x09\x0e\x25\x20\xcb\x62\x04\xb2\x3a\x9b\xb2\xeb\x69\xd8\xb7\x94\x94\xd4\xfc\x23\xd8\x74\x48\x6e\x08\x6d\x56\x1d\x7a\xbe\xd8\xee\xda\x61\x18\xf7\xa7\xcb\x8f\x63\x97\xff\x62\xe2\x85\x41\x2e\xd1\xe1\x80\xad\x85\xdc\x88\xf4\x34\x3f\x5e\x49\xae\xad\x32\xdc\x91\xd5\x87\x68\xc1\x88\x12\x91\xe2\xee\xed\x25\x71\x32\x0a\x7b\x88\xa3\x85\x43\xb8\xfc\x5b\x38\xf0\x94\x64\x79\x96\x93\xb0\xf7\x35\x4e\x60\xa2\xc4\x09\x59\xdd\xcc\xa1\x09\x1c\x0c\x9e\x39\x2b\x58\x75\xb0\xa3\x8a\xd1\x27\xf9\x1c\xc2\x81\x5b\x67\x20\x5e\xda\xbf\xd4\x8e\x42\xc7\xab\x27\x1f\x52\x1c\x35\x27\x55\x5f\xdd\x20\xb5\x0c\xa2\x11\x92\xad\xf2\x19\x84\x7c\xcb\x67\x1d\x87\xb6\xbf\x8c\xa4\xce\x92\x67\xef\x5d\x5c\x3c\xb0\x45\x2d\xce\x5b\x1f\x2b\x57\xf2\x88\xca\x29\x76\x6d\x3e\x8c\xec\xd0\x8e\xa6\x94\xd4\x11\xb0\x91\x8e\x57\xc3\xd1\x35\x1f\xaf\x28\x6d\x75\x8b\x30\x62\xe6\x11\x18\x69\xc8\x97\xc2\xce\x1e\x9d\x28\x8d\xdf\xcb\x35\x80\xd0\xc1\xe7\x89\xb5\xee\x55\xca\x91\x3b\x6e\xf7\x0f\x27\x9a\xf9\xef\x84\x06\xec\xfc\x17\xec\x13\xd4\x8b\xae\xd4\x6a\x91\x73\x73\xed\x2c\x37\xdd\x30\x0a\x5f\x45\xfb\x04\x12\x12\x97\x75\x4f\x21\xfa\x0c\xe0\xaf\xd7\xd9\xf0\xe6\xe6\xda\x49\x91\x9b\x65\x99\x16\xc4\x1b\xbf\x1f\x28\x2c\xc7\xef\x4f\x3e\x55\x97\x83\x78\x61\xf6\xa5\x99\x72\x09\x23\x77\xfe\x5d\x05\x1f\xfa\x2e\x0e\x46\x64\x5a\x5e\x53\x38\xf9\x9b\x6a\x9c\xee\x6a\xbe\xb3\x34\x19\x27\xb1\x8d\x59\x9f\x93\x15\xef\x74\xbb\xe8\xf4\x86\xdf\x09\x2b\x61\x3c\x48\xa2\x95\x56\x15\x79\x48\x47\xa0\xe4\x42\x1b\x75\x97\x68\xff\x4c\xd5\x74\xb6\x91\x41\x03\x1e\x07\xa7\xe3\x5f\xa9\x86\xc7\x21\x01\x7f\xc1\x8a\x41\x13\xa6\xc2\x08\x69\x9a\xa3\xc1\x5e\xdc\x42\x53\x2e\xf3\xef\x2a\x61\x01\x13\x76\x93\x34\x16\x82\x06\x04\x38\x1c\xd6\xf2\x4d\xf0\x37\x7d\x57\x46\x68\xf3\xe1\x7a\x94\xe5\x61\xd4\xb5\x59\x9e\x26\x88\x45\xe0\xd8\xbf\x1d\x78\xef\xff\x6d\x67\xfc\xb3\x64\x64\xf3\x70\x64\x77\xe1\x07\x70\x50\x9c\xf7\x14\x66\x2b\x4f\x6e\xa8\x2a\x22\xf2\xa3\x74\xf2\xf6\xd8\xd3\x80\xef\x7a\x89\x52\x18\x92\x60\x7a\x5c\xb3\x85\x45\xa3\xd2\xf6\xcf\xcd\xb1\xdd\xbc\x49\x19\x5f\xbe\xae\x25\xcc\x16\x16\xda\x61\x3c\x88\x8a\x32\xb0\x6f\xa9\xde\x6a\xd8\x4b\xe1\x6d\xaf\x63\x63\x96\x28\xbc\xe6\x23\x0c\x59\xb1\x9f\xc1\x5f\xe2\x9b\xda\xac\xce\x1f\x6c\x27\x63\x1b\xbb\x9c\x3c\xec\xef\x5e\xf2\xc7\xe1\x4f\x43\x0f\x94\xe1\xb0\x3a\x5a\xef\x13\x0c\xe4\x41\x51\x5e\x03\xcb\x86\xe9\xaf\x86\xee\xe9\x04\x48\x4d\x4f\x27\x48\x6a\x7f\x5a\xf6\x89\x6d\x00\x8c\x91\x2c\x67\x47\xee\x0e\xf2\x9d\x1b\xd8\x1d\x92\xd1\xf5\x90\xad\xef\x4d\xbc\x00\xc1\x45\x45\x66\x7f\x33\x50\xca\x26\xe7\x2a\xa2\x09\x81\x07\xa0\x1f\x9d\x54\x7a\xf3\xa0\x25\xd3\xf2\x0b\x9c\x6b\x31\x7c\xe3\x1c\x98\x35\x1b\xf5\x92\x91\xed\xd3\xc6\x13\x12\x09\x55\x13\x3b\xbf\x9d\xc0\xfb\x85\xd9\xa5\xf6\x8b\xf3\x07\x1f\x23\xcc\xb2\xa0\xa6\x15\x6e\x17\xfd\x76\xf0\xad\x4f\x90\x1f\x2c\x7a\x43\xf4\xfb\x72\x5c\xd1\x18\x08\x63\xa1\x87\x5d\x7d\xa4\x70\xe6\x3f\xc5\x71\x04\x27\x11\x52\x24\x98\xd5\xc3\x81\x5a\x23\x47\x74\x88\x03\x41\x04\x38\x69\x3b\x3b\xaa\x1d\xf3\x4f\xd5\xf4\xac\x86\x59\x98\x33\x43\x1f\xb2\x06\x7f\x4e\xe3\x88\xb0\xe2\x0d\xd5\xc9\x7c\x36\x50\x6c\x5d\x75\x2d\xf3\xfd\xb3\xed\xc8\x84\x9c\x5e\x80\xfb\x7c\x4a\x51\xe4\x9d\xaa\xa9\x21\x95\x66\x93\x18\x9d\x53\x16\xc7\x57\xb8\x07\x24\x33\xf9\x5a\x25\xaa\x46\x26\xcb\x21\x2b\x28\x45\xf1\x5f\xd0\x13\xba\x36\x7a\x4f\xb0\x78\xaf\x82\x4a\x6a\x39\x16\x0d\xd0\xa4\xc8\x42\xf7\x1e\xe8\xd3\xff\xfc\x9f\x72\xaf\x18\x0a\x4a\x3b\x36\x3c\xc0\x66\x47\x67\x7b\x71\x79\x6e\xae\x3d\x0a\xb3\xd4\x8e\x53\x9b\x91\xa9\x56\xe7\x36\x2b\xf9\xf1\x8d\xe6\x86\x2f\xa2\xa8\x45\x4b\x05\x99\x44\xb4\x14\xf1\x75\x13\x31\x6b\xdf\x46\x40\xfa\xbd\x30\xcb\x16\x06\xe7\x30\x5f\x37\x88\x97\xb7\x33\xd3\x9f\x56\x9c\xc5\x1f\xc0\x19\x94\x12\xbe\xcf\x13\xa1\xc7\x4c\xca\xdb\x0d\x1e\x5e\x37\x4a\x12\x44\x08\xac\xe9\xac\x5a\x51\x3c\x84\xdc\x8c\x4c\x6e\x8b\x14\x21\x0a\x42\xd9\x9b\x13\xc5\x7b\xe5\x69\x35\xff\xe6\xe3\x1d\x9f\xb1\x00\xb8\x10\x26\xe0\x38\x01\x03\xf0\xf7\x3f\x55\xa9\x96\x61\x12\xf5\x93\x55\x6a\x49\x70\xb9\xd3\xf3\xba\x77\xe4\xbc\xa2\x06\x1f\xdb\xb4\x67\xe3\xf2\xe0\x7e\xd8\x27\x20\x36\x39\x63\x82\x8d\x72\x55\xc7\x9e\x08\x31\xe1\x54\x60\xa6\x5d\x17\xb0\xd3\xeb\x3f\x1d\x28\xea\xbb\xab\xb4\x7b\x31\x57\xbf\x8d\x41\xe5\x4f\x77\x94\x3e\x4b\x64\xd2\xd1\x6e\xa5\xd8\x7e\x75\xa2\xa4\xd9\xae\x56\x8b\x7e\xfb\x16\x1d\x77\x26\x79\x68\x87\x95\x95\x43\xd6\x4c\x90\x0d\xde\x0d\x4c\xfa\xfd\x08\x50\x09\x01\x66\xfa\xc6\x8f\xe3\x13\xa5\x63\x3e\x99\x78\x24\xe3\x43\x1d\x65\x63\xaf\x57\xf5\xea\x62\xfb\x99\xd6\x8b\x4a\xb5\xd4\x99\x95\xbb\x8a\xd1\x75\x2f\x12\x39\x58\x51\x90\x41\x93\x24\x9d\xd2\xac\x9c\xa1\xde\x68\x3c\xcb\x34\x64\xbe\xb1\x05\xbe\x0e\xf7\x00\x88\x1f\x10\xfe\xe3\xfa\x67\x08\x33\xa4\x91\x41\xf7\x58\x00\x0a\xcd\x59\x28\x44\xe1\x9c\x75\xd8\x80\xa7\x83\x63\xec\x23\x98\x4e\x04\x0e\x8f\x03\xcb\x8a\x01\xbe\x0e\x54\x0b\x5c\xd2\x23\x8a\x61\x68\x06\x9d\xe5\xae\x11\x64\x6e\xce\x01\xe3\x29\xbe\x07\x1e\x9f\x49\xfb\x9d\xea\xe6\xc2\x82\xb0\x49\x6d\x51\xc3\x07\x5c\xe8\xaf\x35\xa7\x40\x6d\xdc\x5f\x07\x40\xd2\xf5\x0b\xf9\xde\xa1\x1a\xac\xe0\xf3\xed\x6e\x92\x0f\xad\xeb\x79\x66\x16\x21\x9c\x73\x42\x29\xf4\xa4\xea\xb4\x8b\xfb\x76\x14\x97\x87\xd4\xdc\x1c\x37\x03\xbd\x46\x83\xca\xd7\x6e\x6f\xf6\xed\xc0\x14\x51\x4e\x8e\x1a\xf2\x8b\x28\x80\x32\x33\x11\x7d\x06\xab\x05\xdb\x14\x1e\xc3\x19\x15\xbf\x8e\xe2\x90\x52\x19\xcc\xf3\x09\xf3\x8a\x4c\xdd\x5e\x45\x66\xde\xa2\x0d\x24\xe9\x37\xdd\x59\xe8\x1a\xa2\xa2\x24\x73\x9e\x89\x80\x8b\x3c\x0a\x13\xe9\x76\x81\xd7\xd4\x44\x32\x0e\x94\x0e\xd1\x27\x69\x45\xc1\x47\xbc\x31\xf1\xd4\x3e\x6f\x2a\xd0\xfc\x8e\x4e\xb9\x80\x61\xdb\xdf\x0f\xfe\x3f\xc6\xfe\x2c\x48\x92\x2c\x3b\x0f\x83\xab\x3c\x32\xab\xaa\xab\xab\xf7\xee\x19\x62\xf0\xff\x62\xd0\x34\xe4\x40\xd4\xb0\x08\xc2\x28\xa3\x09\x2f\x1e\xcc\x2a\xcc\xa0\xd2\x30\xd9\x69\x59\x85\x6a\xa8\x8c\x0f\x7d\xc3\xe3\x66\x84\x77\x7a\xb8\xc7\xb8\x7b\x64\x76\xb6\xe9\x41\x0f\x92\x1e\x68\x12\x0d\xa2\xa0\x95\x26\x13\x61\x84\xcc\x00\x09\xc4\x26\x80\x30\x0c\x00\x46\x0c\x30\x18\xcc\xd6\x33\xbd\xef\x4b\xed\xfb\xbe\x57\x56\x55\xb6\xcc\xcf\x77\xce\xbd\x27\x32\xbc\x61\x7c\x69\x73\xef\xca\xcc\xf0\x70\xbf\x7e\xee\x39\xdf\xf9\xce\xf7\x29\x02\xcf\x59\xd0\x9a\x54\x6b\x43\x08\xcb\x7f\x88\x75\x82\xf4\xfc\xb4\x92\x8c\xbc\x89\x7d\x15\x4b\xf0\xfd\xd0\x17\x86\x9f\x86\xca\x6f\x63\x03\x6b\x1b\x91\xef\x38\x2d\x0d\xf1\x2a\x09\x7e\xe1\x57\x9c\x02\x92\x02\x57\x4e\x62\x65\xe1\x03\xb5\xc4\xd1\x26\x65\x3c\xd8\xba\xdf\x55\x3a\x61\x65\xcf\x9a\x92\x05\x21\x17\xf8\xaa\x8f\x8e\xfc\x1d\x3f\xaa\xc5\x1f\xac\x01\x3f\xa5\xfa\x82\xd8\x14\x1b\x5a\x1a\xbf\x31\xd5\x74\x5b\x58\x68\xf6\x86\x69\xc7\xad\x3e\xe4\x2a\xef\x13\x9e\xc4\xc7\x6a\xf0\xb9\x6b\x86\x49\x86\xd4\xaf\x7a\x1a\xce\x13\xa3\xfa\x46\x7c\xf2\xb9\xb3\xab\x83\x38\xe9\xe6\x71\x1f\x8e\x2a\xb2\x3d\x28\x33\x72\x26\xad\x00\xd1\xb8\x17\x2a\xa1\xb4\x81\xb5\x1d\x52\xef\xf1\xba\x5a\x57\x54\x82\x70\x13\xb7\x57\x26\x70\x7d\xa2\xf9\xbe\x32\xdf\xbb\x58\x33\x9d\xe2\xd9\xd7\xf4\x97\xf1\x83\xef\x21\x85\xe2\x93\x3a\x03\xff\x9e\x19\x0c\x98\xa5\xcc\x3a\xe1\x23\xaf\xfa\x70\x2e\x7c\xd6\x5d\xb8\xe9\xb7\xab\x2a\x8b\x72\x7f\x1f\x8e\xdf\x0b\x35\x67\xc0\x97\xee\x84\x9e\xad\x37\x34\x1f\xa9\xfa\x92\x9b\x47\x95\x7e\xd6\xed\x1a\x51\xde\xc5\x26\xb1\x26\x72\x0f\xbc\xe1\x75\xbd\xa5\xd3\x90\xf3\x93\x09\xe7\xe7\x49\x2b\x75\xe3\x55\x2a\x9c\x37\x81\x2f\x20\x3a\x7c\xaa\xfb\x03\xd7\x6b\x64\x42\xf6\x37\xe3\x34\x4a\x86\xce\x09\x9c\xe7\xb7\xe8\x4f\xc8\x2c\x97\xaf\x00\x87\x55\x0a\x27\x3f\x2a\x3e\xe6\x6a\x1e\xf2\xc2\x54\x26\xf4\xe2\x8b\xcd\x76\x42\x0b\xbb\xa1\x34\x20\xc1\xe6\xc5\x7e\x83\xb1\x03\xc0\x5c\x1f\xfb\xf9\xb6\x41\x62\x8a\x1e\xe6\xd4\xd9\x99\x96\x7e\x47\x5c\x6a\xbd\x2c\xdd\xc0\xe6\xab\x71\x91\x01\x61\x41\x4c\x62\x6d\x2b\x3e\x99\x5a\x3d\x5f\x6d\x76\x6c\x01\xd1\x54\x10\x21\x10\xa9\x41\x4b\x45\x64\x02\x3e\x2f\x56\x21\x4a\xa5\x3d\x37\x7d\x24\x35\xd2\xa2\xf5\xad\xab\x8d\xa9\x54\xec\xab\xcd\x92\x04\x61\xf1\xc6\x39\x4f\x5d\x37\x26\xf1\x66\xb8\xc5\x9d\x72\x69\xb1\xb9\xb8\xb4\x18\x28\xe2\x0f\x6d\xe5\x92\xf1\x4a\xad\x63\x3a\xab\x26\x8d\x6c\x67\x07\x7d\x4d\xa9\x44\x95\x05\xc9\x9e\xb1\x9f\xef\x7f\xac\xa5\x36\x4d\x16\xfa\x71\x0a\x54\x4e\x17\xff\xb2\x16\x99\xcc\xd2\xe5\x38\xef\x03\x61\xc4\x3b\x7d\x07\x6f\xbb\x63\x51\x7a\x6d\xcf\x69\xe9\xa1\xc5\xa5\xc5\xe6\x5a\x2f\x1e\x70\x62\xcd\x88\x29\x1e\x89\xc0\xa7\x5b\x7f\x67\x7e\xbe\x39\x30\x79\x6c\xd8\x21\xd5\xd5\x53\x4e\x04\xed\xd2\x14\x60\xb4\xff\x50\x33\xb7\x7d\x13\xfb\xb2\x19\x6b\xf0\xd1\x96\x47\x99\xa1\xe3\x82\xac\x79\xa3\x46\xdb\xa0\x19\xa7\x1d\xdb\x76\x9d\x55\xd7\x8e\xf4\xad\xc9\xa9\xc6\xea\xe1\xb9\x66\x64\x93\x24\xf0\xf6\x90\x97\x15\xed\xe6\x72\xdd\x65\x16\xe5\x70\x10\x77\x6c\x51\x06\x94\x8b\xb0\x30\x0e\xbd\x62\x22\x92\x53\xc3\xca\x58\xb5\x69\x87\x57\xb5\xdc\x82\xe0\x6b\x2f\xb8\x5b\xe3\x8b\xe4\xaa\x8e\x89\xf2\xb8\x6d\x95\x46\xe7\x25\xc5\x00\xab\x15\x35\x1f\x0e\x7a\x71\xf5\x2d\x96\xe6\x9c\xd9\x8b\x1f\x41\xfb\xab\xba\x0a\xd1\xac\xe5\xeb\x0c\xfd\x88\x23\x62\xf5\xdb\xe2\x94\xe8\xdf\x11\x42\x46\xb1\x34\x5d\x0e\x75\x78\x72\x41\x3b\xf5\x5b\xb7\xe5\x73\x2f\x5e\x1a\x2f\x48\x14\xf9\x4c\xcd\xa5\xac\xc5\x49\x27\x61\x05\x61\xd7\xa4\x71\xe0\xc7\x09\x65\x49\xd0\x20\x92\x94\x74\x79\x6a\x4d\xff\xb2\xbc\xec\x9a\x2e\x31\x94\xdc\x70\xba\x8f\x31\x17\xf5\xec\xdc\xa6\xd3\x48\x2c\xcc\xb2\xcd\x77\x54\xdf\x9c\xcd\x68\xe8\x57\x80\xb7\x6d\xa0\xb8\xc0\x3f\x3c\x03\xd8\x4f\xcf\x56\xe1\xe5\x7c\x48\xb7\x43\x02\xde\x93\xca\xf9\xcd\xac\x32\x97\xe1\x88\xd7\x0d\xf4\x1a\x82\xa3\x47\x3d\xb3\x31\xfd\x5b\x55\xc2\x41\x88\xc2\x7f\xfc\x4c\xab\x5a\x17\x78\xbf\x3f\xa0\xcd\x1f\xa9\xdd\x5f\x30\x16\x8b\x9b\x7d\x7c\xa4\xec\x11\x99\x0d\x85\x7c\xf9\x87\x94\x48\xbb\xd4\xe7\x80\x34\x39\x8e\xc2\xfe\x47\x1e\x30\x65\xd8\x13\x12\x5c\x48\x8a\xde\xc2\x9b\x2d\x33\x86\x94\x92\x61\x19\xed\x1c\xfb\x46\x3c\xea\x13\x64\x61\x70\xc5\xc1\x4e\x70\x4f\x27\xeb\x8d\x96\x92\xb6\x3b\x1d\xaa\xed\xf4\x71\x04\x31\x80\xc7\xb3\x04\x8c\x01\x4e\x81\x46\xae\x50\xdb\x43\x4f\x8c\xe3\x49\x6f\xe1\x91\x6c\xdd\x7b\x0f\x3d\xdf\x5c\xce\x72\x1b\x77\x53\x61\x6f\x88\x8a\x2c\xdd\x19\x56\xf8\x9a\x9c\x4a\xf5\xb6\x88\xff\x01\x93\xba\x5b\xdf\xb9\xa5\xb9\x66\xc7\xf6\x4d\x0a\x80\x8a\x05\xeb\x95\xfd\xf4\x9f\x4f\x45\x0e\xd9\xd8\xfb\xf1\x8a\x6d\x78\x47\xd6\xf7\x47\x0a\xe9\xf8\x38\xf4\xbe\xc4\xbf\x3b\x95\xbe\x1d\x9e\x5b\x68\xa6\x59\x6a\xcb\x1e\x0d\xe7\x06\x3e\xa5\xfa\xd7\x8a\x4e\xf9\xaf\x15\xb3\xda\x2e\x2f\x67\x79\x59\x00\x86\x10\x4a\x78\xf5\x6b\x7c\xac\x19\x0f\x7f\x8a\x15\xc5\x27\x8e\xca\x3a\x2c\x09\xc3\x0f\x3c\xa9\x1c\xad\x5f\x3e\xae\x8b\xc2\xed\x1c\x59\x62\xa0\x2a\xc2\x73\x6a\x54\xf9\x1c\x6a\xa8\x09\xba\x94\xa1\x5b\x02\x18\x42\xa7\x65\xfc\xda\xa2\x6f\x7c\x74\xea\xb9\xef\xdb\xd7\x6c\xdb\xd4\x2e\xc7\x64\xbe\xee\x87\x29\x59\xd4\x18\xeb\x10\x70\x24\x16\xfe\x09\x2d\x67\x6f\xf3\xd2\xc4\xe9\xa4\x32\xa3\xcf\xbc\xcf\xa9\x0e\xcd\xc7\xa8\xe8\xd1\x75\xe1\xd6\x3f\x8a\xd0\xab\x23\x55\x39\xdf\xe0\xca\x19\x8b\xf9\x2c\xde\x2b\x34\xc3\x37\xdc\x76\xdf\xaf\x72\x44\xb7\xcb\x61\xbf\xde\x54\x1c\x1b\x3d\xeb\x73\x46\x39\x7b\x75\x86\xd9\x8c\xfe\xf3\xec\x07\xc0\x7d\x77\x35\x84\x33\xc2\x25\x21\x70\xde\x9b\x5a\x88\xb4\x74\xb1\xc5\x4c\xe8\x9d\x4d\x90\xc1\x36\xa6\xd2\x5b\x1a\xab\xef\x66\xa5\xa2\x2e\x01\xcb\xba\xad\x80\xb0\xdb\x53\x9b\xd3\xcf\x93\xdf\xaf\x5b\x0d\x62\x77\x1b\x38\xb3\xc0\x69\x6d\x60\xf2\xa6\x68\xd3\x54\x4f\x04\xb6\x8e\xab\x09\x9d\xa1\x3e\x94\x8a\x01\xa4\xdc\x54\x50\x55\x3b\xcf\xa2\xde\x30\x67\x79\x1f\xc4\xa7\x3b\x4a\x97\x87\xb5\x03\xf8\x09\x2b\xba\x80\x4d\x48\xa2\x4a\x0b\xa7\x05\xa8\xd7\xf8\xa4\x25\x05\x74\x3b\xcb\xfa\x62\x48\xa0\x98\x95\x12\xc2\x78\xc0\x48\x1a\xb0\x35\x55\xde\xb2\x49\xc8\x39\x4f\xc1\xf4\x20\xe5\x21\x02\x7f\x84\xb5\x86\x77\xe1\x66\x6d\x47\x62\x90\x98\x94\x75\x1c\x50\xc2\x3f\xd6\xd2\x2d\x4e\x6e\xb1\x63\x17\x3b\xa9\x1d\x51\xb6\x8f\x6b\xbc\x47\xf2\xb8\x58\xc1\xfd\x92\xb5\x44\xbf\xee\x46\xc1\x1c\x75\xfc\xaa\x4a\x9d\x53\xd3\xb7\x9d\x47\xd4\x20\xd2\x69\xcd\x2e\xf8\x36\x3e\xd4\x39\xa5\xbb\x3d\xf5\x3b\x2a\xaa\x9e\xa0\xed\x10\xff\xff\x23\xda\xa9\xb0\x3b\x7c\x2f\xd4\x56\xc4\xf0\xc3\xe0\x7f\x51\x79\x52\x94\xf5\xdb\x94\x2d\x06\x6a\x50\x16\xf5\x9f\x54\x3d\x1e\x3e\xf9\x85\x83\x8b\x94\x7a\x89\x3b\x18\x5d\x1d\x9f\x7c\x6e\xa4\x6e\x9b\xf6\x3a\x41\x3b\x68\xac\xb3\x2b\x36\x9f\x4c\xb1\x75\x5f\xa0\xd4\x30\xce\xf3\xad\xc3\x97\xb4\x50\x84\x95\xe8\x99\xae\xb6\x9f\x95\x71\x96\x4a\xeb\x4f\x83\x85\x4e\xe1\xde\x19\xa3\x3f\x54\xc8\xe3\x32\x2c\xdf\x5d\x4f\xe6\xa6\x52\x7e\x78\x37\xf4\x2a\x33\xd3\x92\x21\xfb\xf6\x35\x5f\x4e\xfe\xd9\x3f\xec\x98\xd2\x44\x24\xa3\xb9\x34\xc7\x89\x02\xbf\x16\x7c\x32\x75\x47\x0e\x2c\x34\x97\xb3\xac\xac\x72\x4c\xee\xc6\xe2\x2e\x6c\xea\x5b\xb2\xe9\xd8\x99\xcc\xfd\x8e\xd6\xf1\xb3\xb2\x83\xfb\x07\x70\xd9\xe7\x5f\x3d\x6b\x99\x23\xae\xb5\x13\x90\xe8\xed\x68\x69\xed\x04\x25\x8e\x7c\x79\x7a\x64\xf9\xf9\x83\x04\x53\xd3\x3e\x85\xac\x08\x16\x99\x7c\xac\xd6\x82\xe9\x94\xca\x7c\x9c\xbf\xb9\xf4\xf9\x6b\x38\xd8\xb9\x2d\x6c\xbe\x2a\x31\x0f\x39\x0f\x3a\xeb\x7c\xac\xc4\xe1\xfb\x96\x94\xf5\x7a\xf1\x60\x46\x4d\xbb\x5e\x51\xd3\xae\xc8\x98\xd9\x0d\x84\xb2\x28\x71\x06\xf1\xfe\xb8\xa5\x69\x27\x59\xdc\x29\x94\xf1\xf2\x5b\xf4\x81\x7c\xac\x67\x55\x07\x26\x27\x55\x95\x02\xf1\x95\xf3\x53\xfa\x40\xc9\x55\xfd\x28\x7e\xcf\x44\x2b\x81\xc7\xb6\x30\x95\xc8\xc7\xca\xd9\xa3\x9b\x98\x6a\x3f\xa5\xbb\xa4\x0c\x77\x8f\xd4\x78\x49\xb4\x73\xb4\x45\x1c\x01\xec\x33\x4d\x58\xf9\x4c\x0d\xa8\x14\xe4\x1c\xb3\x34\xe7\x6c\x2c\xe8\x2f\x62\xb2\xe9\x04\x62\x87\xb0\x5f\xd5\x94\xf3\xa7\x23\x3f\xea\x73\x4f\x59\xee\x60\xe4\x57\x32\x17\xdf\x68\xb8\x51\x27\x74\x11\x65\x49\x96\xca\x17\x02\xf0\xa2\xf9\x6b\xb7\x94\x8c\x42\xd9\x8b\xed\x32\x0a\x7c\x91\xf0\x0b\x94\xb4\x9f\xc3\x33\x6c\x92\x38\xb1\x08\x91\x76\xd5\x9e\x94\xd3\xdc\xc5\xf9\x79\xe2\x84\xbf\xcc\x5b\x0c\x60\x52\x8e\x44\x7c\x32\x75\xed\x55\xac\xaf\xca\xc1\x21\xcf\xde\x21\xe9\x62\x25\x1a\x3e\xa9\xb3\x04\xb7\x9d\x35\x93\x77\xf8\xf2\x44\x0c\x92\x3e\x89\x4f\xb4\xf5\x02\x09\x64\x05\x4a\x14\x88\xbb\x66\x7c\x32\x95\xe1\x2d\xcd\x35\xed\xcb\x03\x93\x3a\x90\x09\x05\x12\xcf\x8d\xf0\x89\x92\x65\xeb\x9b\xb2\xcc\x2d\x0b\x2b\x3b\x8f\x8e\xea\x62\xf8\xc4\xdd\xd5\x6a\x79\x26\xe2\xf2\x2a\x13\x0e\x74\x2d\x32\xfa\x50\x33\xdb\x3d\x30\xa9\xe9\x9b\x34\x66\xf9\x34\xc4\xcb\x1b\x1a\xd3\xb8\x51\x03\x94\x7d\xbd\xba\x2c\x9b\xc7\xcc\x5c\xc2\x26\xb4\xa9\x8a\xbf\xcd\xba\x20\x58\xd8\x68\x48\x0a\x7e\xda\x81\xf3\xb8\x12\x2e\x38\xbe\x55\xc0\x7a\x7e\xbe\x79\xe8\xf9\x3d\x7e\x5a\xf8\xaa\x76\xfc\x04\xce\xcc\x7c\x4c\xdc\x74\x74\x49\x6f\x28\x72\xea\xb6\x96\xd7\x59\xb9\x30\x9a\xd0\xd8\xa8\xde\x26\x71\x8d\x08\x9c\x4f\xf7\x1b\x04\x2c\x08\x70\x80\xd2\xdb\xc5\xa1\x7d\x62\x4f\x77\xb3\x56\x89\x94\xe6\xeb\x11\x1e\xc5\xb5\x35\x70\x66\xb2\x97\xbd\x5a\x85\x1d\x2e\xa3\xcc\x72\x73\x2c\x5f\x7b\x81\x8f\xef\x28\x87\xcf\x4f\x47\x8f\x08\xc6\xb5\x77\xa7\xe3\xf1\xff\xed\x2f\xb5\xd4\x02\xbe\x42\xe3\x22\xb8\xc0\x13\x64\x18\x88\x56\x17\x5a\xa4\xa8\x18\xee\x69\xcf\xcd\xd9\xb1\x4e\x0f\x76\x8d\xb7\xae\x89\xaf\xbd\x50\xe5\x47\x91\x45\x54\xc4\xcf\x8a\xdc\x07\xfd\x19\x3e\x71\xcb\x2e\x37\x69\x97\xf3\xf1\x45\x37\xe3\x33\xc1\xbd\x56\x73\x43\xd3\x3c\xa5\xfd\xcd\xb6\xc9\x73\x9b\x70\x42\xe6\xa8\x7f\x9e\x1e\x0c\xb3\x34\x14\xee\x68\x37\xa2\x54\x1b\x6b\xaa\x30\x0c\xeb\x35\x95\x51\x8f\x98\x5c\x71\xf3\xee\x55\xc0\x4f\xb1\xc7\x30\xc8\xec\x1a\x11\x0b\x32\x5d\xc2\x4c\x6e\x10\xe8\xfd\x66\x6b\x92\xc4\x82\x2e\x0f\xb8\xe2\x18\x75\x52\xf9\x58\x0f\xe1\x90\xd1\x77\x9c\x76\xb9\xde\xe0\x59\xf5\xf0\x73\x33\x78\x85\x4a\x9f\x57\x52\xff\x45\xdc\x27\x76\xa4\x93\xe1\x7a\x53\x79\xd2\x5d\x46\xbb\xc7\x09\xb9\x79\x07\xce\x37\xeb\x50\xb7\x49\xf5\x3f\xa1\xfc\x55\x7f\x1a\x49\x26\x7c\x1b\x90\x58\xee\x9c\xa2\x6a\x7e\xb5\xb9\x16\x27\x09\x27\x8b\xd2\xd9\xc0\x5b\xc6\xc7\x53\x79\x36\xc5\x6b\x6c\x6e\x2a\xa5\xa4\x85\x2b\xb9\xa6\x4f\x46\xe3\x74\x35\x4b\x56\xb9\x33\x72\xc4\x95\xab\x3a\xfd\x51\x51\xe2\x5b\x2a\x4b\x3d\x36\xb1\x03\xd4\x78\xeb\x36\xab\x5a\x7f\xb6\x7a\x47\xb0\xb3\xec\xa2\x76\x1f\x36\xed\x59\xf0\xa5\x91\x87\xec\xa0\xdd\x5c\x26\xed\x08\xea\xc0\xc7\x6d\x1b\x6f\x15\xd8\xf8\x99\xe6\x4b\x7b\x57\x03\x0d\x17\xab\xb8\xe2\x4d\x84\xbb\x26\x5f\x47\x95\x2a\xd4\xdd\xc0\x39\xd0\xcc\x8e\x15\xe3\xf7\x51\xed\xbb\x66\x07\xc3\x92\x84\x8e\xb0\x3b\x00\x7e\xfb\x08\xbb\x03\x9f\x28\xad\xc3\xa2\x5c\x4f\x6c\x31\x43\xe8\x8e\x00\x84\xc1\x82\x82\x03\xe7\xe7\x85\x53\x12\xaa\xf6\xd9\xc9\x9a\x26\xd2\xc1\x66\x6e\x92\x24\x96\xda\x4c\x66\xb3\xe8\x2a\xd4\xbc\x87\x68\x32\xdc\x76\x01\xc0\xa6\xa6\x9d\x08\x89\x8a\x95\x21\x42\xa5\x3f\x75\x79\x42\xff\x2e\xb1\xe9\x2e\xbf\xd3\xbc\x4e\xef\x36\x03\x0d\xb4\xbc\x11\xcf\x99\xb2\x20\xaf\x20\x5d\xba\xdb\x2f\x0e\xcf\xc9\x4f\x31\xa8\x87\x98\xfc\x06\xed\x07\x40\x30\x6e\x69\xe2\x96\xe9\x13\x0f\xb2\xca\xb2\x50\xc6\x42\x8a\x8d\x8f\x1d\xb2\xb0\x9c\x25\x24\xf4\x43\x78\xa6\xb0\x8e\xa7\x9c\xdc\xd0\xb8\x3d\xa6\x9d\xe8\x9e\x6e\x29\xf7\xa2\x1b\xc8\xb4\x65\xba\x42\xa9\x08\x0d\xcb\x61\x6e\x77\xd0\x82\x10\xb9\x97\xea\x0f\xa2\x74\xf9\x49\xe8\x9b\x14\x37\xe9\xf2\xa4\xb1\x4f\xb7\x55\x94\xe9\xd4\x74\xea\x77\xa7\x72\xa4\xfd\x87\x9a\xdd\xdc\xda\x15\x7a\xe5\xf0\xed\xee\xe2\xd6\xf1\x49\x9d\x76\x95\x4d\x5f\xca\xd6\xf9\xe1\xa1\x82\xc6\xbc\x1f\x1f\x8f\x9f\x73\x99\x08\x74\x6e\xb1\x31\xcc\x2a\xad\x60\x06\x40\xb1\x96\xff\xf7\x91\xea\xee\x62\xda\xd0\x61\x9e\xae\xd3\x7b\x5b\x35\x45\xcb\x35\x6b\xc8\xc5\x07\x5b\xad\x93\x40\x57\xfe\x35\x7b\x7c\xd5\x1a\x63\x0a\xb5\xd6\x0f\xab\xc6\x94\xc3\xb4\xb3\x61\x49\xec\x6e\x30\x81\x21\xd5\xac\xa7\xfc\x45\x41\x40\x2f\x51\xd3\x65\x5b\x16\x40\xc2\x00\x4b\x9c\x9d\xd9\xd7\x5e\x70\xc7\x9e\xeb\xda\xb1\xfd\x2c\xca\x4d\x19\x47\xcc\xd7\x44\xf9\x7f\x4f\xb5\xf6\x1e\x60\x61\xa0\xbb\x7c\x54\xcd\x51\x72\x7f\xd3\x75\xd5\xfd\xec\xd8\xff\xa3\x68\x5d\xcb\x59\xd6\x79\xd4\x8b\x5c\x6f\x23\x92\x8a\x68\x0d\xe0\x33\x31\xf8\x81\xb8\x8c\x2d\x12\x89\x0d\x17\xc7\x88\xbe\xae\xd5\x5d\x85\x0c\x27\x64\x58\x3d\x33\xf0\x65\x1e\xa5\x84\x49\x5c\xf2\xe9\x62\xc0\x07\x64\x7d\x68\x19\x40\xad\xd9\x64\x06\xc3\x3c\xea\x99\x02\xfc\xee\xcd\xa3\x55\x22\xb5\x79\x54\xc9\xdc\xb7\xf7\x12\x4c\x89\x8a\xf4\xbe\x6a\x30\x5e\xd0\x22\x48\x33\x53\xdb\x4f\x95\xc7\x27\x71\x6a\x0b\xad\x83\x26\xb6\x9f\x7c\xa6\x9c\xd7\xaa\x42\xd6\xe6\xc5\xa3\x81\xd3\x62\xe5\x1e\x1d\x12\xe6\xc7\xa9\x17\x82\x4c\xf1\x4f\x34\xc6\x78\x5d\xf5\xa7\x1f\x81\x0a\x83\x8c\x2f\xd3\x37\x47\xc4\x42\x82\xe6\x28\xe9\xd5\x8d\x63\x97\x2f\x5a\x26\xb8\x3d\x8f\xa1\xa5\x20\x9a\x4a\x1e\xf7\x59\x4e\xcc\x5a\x81\xfe\xbf\x86\x2c\x50\xc4\xb2\x6c\x87\x34\xcf\xaa\xcf\x91\x1c\x9f\x36\x7b\xa9\x1f\xfd\xc6\x69\x87\x79\x36\xb0\x26\x45\x36\x29\x5a\x88\xb8\x31\x88\x60\x17\x42\xa5\x58\xf4\xd0\xfb\xba\x93\x7f\x49\xfc\x0a\x6b\x38\xaa\x79\x77\x36\x5f\xdd\xf9\x64\xcb\x37\x69\x6e\xe8\xa6\xfb\x43\xd5\xa5\x69\x0f\x93\xa4\xda\xaa\xb4\x0c\xcf\xcd\x50\x81\x21\x37\x47\x7b\x14\x7f\x15\x0e\x84\xce\xb9\xc7\x07\xcd\xf7\x95\x42\xef\x2d\x8a\x7e\xe0\xcc\xdf\xc3\xf3\x41\x8e\xf5\x36\xe5\x5b\xfc\x0f\x75\xd3\xf8\x6b\x59\xda\xb1\xf9\x8c\xf7\x3f\xbe\xa8\xa7\x1d\xb6\xa1\x9f\x22\x2e\x2a\x1e\xf2\x3f\x5a\xd7\xe0\xeb\x65\x03\xa0\xf6\x28\xf9\x8e\xe1\x2f\xf1\x89\x0a\x5f\xa9\x5d\xfb\xe6\xb0\xca\x3c\x29\x80\x3a\xf9\xdb\xea\xe9\x8b\xbe\x99\x2f\x8f\x57\xb2\x8e\x59\x51\x02\xf0\x5c\xbf\xf2\x89\x4b\x34\x4b\xf3\xb2\xf8\x9e\xe0\xb9\x05\x6a\x88\x93\xf5\x41\x90\xeb\xdd\xa7\xcd\x90\x8f\x6b\xa2\xfb\x62\x33\xcb\x3b\x3c\x6f\xe1\x72\x30\xad\x4c\xeb\x6c\x62\xed\x9a\xcc\x51\x89\xfa\xb4\x47\x34\x3f\x9c\x4c\xd5\x60\x7c\x47\xed\x02\xd0\x70\x7f\x73\xe4\x45\x25\x11\xb9\x91\xc5\x5f\xad\xed\x86\x77\xaa\x4d\x04\x45\x2a\x82\xef\xce\xb1\xda\x4b\x77\x4e\x99\x2e\x1e\x9e\xdb\xdf\xec\x66\x49\xa7\xe1\xd3\xcd\xa0\xe5\x1b\xba\xf7\x46\xca\x60\xe3\xf4\xa4\x75\x05\xef\x16\x42\x6e\xd1\x4c\x97\x1a\x25\xd2\xa5\x66\x3f\x8e\xf0\x1b\x80\xe3\xb9\x0a\xe1\x93\xf0\x99\xe9\xcd\xf3\x15\x7d\x67\x27\x34\x7f\x43\x25\x8d\x68\x57\x6d\x6e\x45\x0c\x96\x1d\xe9\x95\x26\xce\x8d\xd0\x13\xdd\x06\xae\xd4\xe7\x94\x4b\x75\x36\xae\x68\x13\xd2\xd2\xf4\x07\xcc\xa4\x42\xf4\xba\xaa\xfc\x78\xaf\x6a\x59\xf7\xc4\x94\xcb\x59\xde\x0f\x3c\xd9\xf2\x8f\x47\x1e\x18\xfc\xe3\xa9\x42\x96\xe4\x0b\x7b\x62\x28\x29\xb3\x5c\x3f\x44\x6c\x92\x81\x1a\x9f\x81\x9a\x22\xb1\x76\x10\xa8\x97\xf9\xf5\x91\xb2\xb7\x7f\x5d\x75\x8c\xf2\x61\x9a\xc6\x69\xf7\x91\xc0\x35\x45\xef\x29\x01\xfb\x0f\x91\x74\x03\x83\x87\x29\x27\xf8\x64\x3f\x52\x54\xd6\x27\x48\x3d\x86\xbe\xe5\x6f\x3c\xdd\x52\xf3\x61\x3c\xbf\xa4\x46\x6d\x16\x9d\x14\x64\xdd\x1c\xac\x35\x25\xc3\x10\xce\xaf\xcf\xc1\x9d\xda\xdc\x8f\x46\xd4\x62\xd1\x13\x47\xcc\x3e\xa1\x38\x45\xda\xdb\x32\x35\xab\x71\x17\x22\xa5\x6a\xe0\xf7\x07\x78\xe3\x50\x0c\xc3\x52\x1a\x3c\xd3\x06\x36\x54\x91\xdc\xf6\xf9\x1f\xa8\x00\x92\x9e\xfa\x14\x60\xc5\x9a\x14\x6a\x5e\x78\xcc\x0f\x10\x42\xa5\x08\x09\x9c\xbc\xd4\xab\x94\xa5\x88\xb9\xaa\x7f\x79\x57\xb2\xb4\x5b\xb4\x6d\xce\x75\x1c\x7b\x2e\xd2\x46\x23\xfe\x8b\x9e\x03\xdc\x23\xdf\x00\x35\xe1\x7d\x81\x3e\x81\x8f\xeb\x34\xab\x8a\x61\x51\x1a\x96\xc8\x47\xf0\x3b\x43\xf8\x23\x1f\xeb\x45\x99\x67\xed\xc4\xf6\x8b\x3d\x4a\xb4\xe7\x3e\x96\x0d\xb0\xc2\xf7\x46\x6a\x10\xeb\x54\xa8\x78\xb3\xef\x21\x21\x9e\x90\xaa\x91\x51\x92\xea\xc3\xb0\xec\x50\xe6\xe1\x18\x04\x51\xb1\x4a\xa9\xbe\x2c\xe8\x2c\x9f\xd0\x6d\xe6\xe3\x91\xa7\xe1\x3d\xa8\xe9\xca\x2e\x36\x07\x89\x35\x05\x03\x89\x80\x96\xce\x23\xa1\xe2\x13\xa5\xc4\xca\x1c\x94\x41\xb5\x12\xb0\x6e\x90\x0d\xce\x50\x18\xe7\xe3\xb1\x82\xbd\xe3\xa2\x88\xb3\x94\xcb\xc5\x05\x4e\x2f\x79\xf6\x98\x3b\x13\x13\x52\x7b\x35\x69\x7c\xd1\x33\x2b\x52\x83\x39\xe5\x4e\xa7\x54\x71\x51\xeb\x85\xc5\x69\x6c\x19\x2a\x11\x97\x1a\x3f\xde\x70\x41\xf9\x31\x54\x5f\xa3\x67\x3b\xc3\xc4\x76\x38\x3b\x77\x34\xd0\xc5\xa5\x45\xe7\x84\x59\x33\xd8\x99\x33\x02\xee\x22\x12\xac\xb6\x64\xb0\x79\x8f\xca\xd5\x30\x14\x80\xb4\xe9\xb4\x32\xe0\x3f\x5d\xf3\x14\xe0\xd1\xee\xba\xa1\x78\x03\x2f\xa8\xb7\xf1\xc2\xe7\x12\x02\xd7\xf7\xbe\xb4\x97\xbf\x84\x93\x60\xab\x96\xce\xe7\x49\xb0\x1d\x9e\x3b\xd2\x6c\x67\xc3\x6e\xaf\xc4\x33\x91\x99\x73\xcf\xf5\x3d\xaf\x7d\xde\x4f\x4d\x75\x8b\x48\x04\x26\x4e\x3b\xf1\x6a\xdc\x11\xab\x38\x24\xe8\x70\xed\xe0\xe3\xd1\x16\xd2\xdb\x0b\x4b\x73\xcd\x17\x5f\x9c\xf1\xd6\x4c\x6c\x6b\x29\x91\x49\xbd\x8f\x98\x4a\xc1\xcb\x73\xac\xba\xa7\xce\x22\xd2\x04\xca\x41\x8c\xf1\x6e\xf1\x02\xae\x2b\x1a\x87\xb6\x28\xe1\xfb\x87\x52\xe5\xa8\xea\xa1\x3f\x9c\x80\xfa\xbd\xc2\xe0\xc0\xe6\x51\x2f\xc9\x88\x37\x58\xfd\x34\x16\xed\x7d\x25\x7d\xc9\xd9\x8d\xf8\x59\xaa\xa1\xd7\xb8\x80\x6f\xab\x93\x30\xba\x80\x12\x48\x96\x60\x8d\x69\x52\x62\xf6\xd2\x8a\x45\x02\x70\x46\x53\x6c\xcf\x28\x3d\xb0\x6c\x50\xc6\x7d\xf2\x10\x99\xf1\x09\xde\x06\xee\x1a\x5e\xd4\xd3\x55\xb2\xb2\xb9\xbb\xe5\xd3\x94\x8b\x75\xa2\x30\xed\x2c\x99\x68\x59\x21\xaf\x11\xe5\xed\x3a\xa3\x3c\x53\xc0\x3c\x17\xe1\x98\xe7\x1c\x45\x93\x4e\x09\x81\x5d\x56\x6f\x18\xb1\x51\xf2\xc4\xa4\x1d\xa1\xbc\x3a\xf7\x07\x3f\xfa\x72\x4c\x3b\x8d\x5d\x54\xad\xcc\x97\xb2\x38\x2d\x77\xe2\xf7\x38\x19\x02\xc8\x08\x4c\x0f\xee\x1e\x6e\x02\xcb\x59\x37\x9d\x1f\x4d\xea\x9c\xfb\x7d\x93\x81\x62\x84\xc4\xef\xaa\xe1\xe3\xb2\x67\xca\xa8\x67\x73\xca\xdf\xc5\x2d\x50\x3b\x3c\x87\x9e\x3f\x71\x62\xa4\xdc\x0a\xdf\xc7\x17\x91\x8a\x5b\xe1\xaa\x77\xa7\x74\x2e\xab\x44\x2f\x89\xdb\x36\xaf\x0a\x13\xf7\x92\xb3\xff\x47\xe8\x43\xe7\xa5\x29\xcd\x53\x92\x24\x13\x83\x04\x01\xad\xd1\x56\xbd\xae\x7b\xac\xd7\x55\x1f\x33\xcf\x10\x02\x51\x81\x22\xc3\xe6\xe3\xf1\xd6\xbf\x4f\xef\x72\x6f\x98\xd3\xb8\xbc\xce\x10\x4f\x2a\xf2\xc6\x49\x97\x4c\x2f\xc7\xa9\xcd\xd7\x95\xd8\x3b\x90\x23\xc1\xe7\xa6\x99\xcf\x64\x10\x95\x75\x86\x91\xf4\x84\x80\x80\x32\x4d\x94\x4f\x1c\x1b\x78\xcd\x12\x23\xa4\xa1\xe4\xea\x50\x7b\xa2\xbb\xfb\x81\x76\xac\x1e\xe9\x46\x52\x6a\xba\x36\x2f\xe8\x19\xa2\xe4\x78\x0e\x19\x94\x63\x30\x3a\xdc\xe0\xbf\xa2\x9c\x00\xc1\x60\x63\xa4\xd4\xa9\xde\x46\x41\x06\x66\x48\x63\x5c\xd3\x3c\xeb\xc7\x9d\x35\xc1\xa0\xd8\x93\x56\x49\x6e\x5d\x70\x4d\x90\xc2\x89\xcf\xc8\xed\xa3\x8f\x91\xfb\xfa\xb4\x7a\xa5\x6d\xce\x86\x3a\x2e\x43\x0a\x80\xb8\x21\xc1\x02\xca\x24\x02\x4f\x75\x4d\x40\x96\xc5\x02\x87\x57\x79\x45\x09\x9a\xc1\x68\x88\xc8\x2c\xd6\x50\x7e\xa2\x0c\xc4\x70\xde\x61\x65\x6e\x8b\x16\xb7\x4c\x74\x4d\x0f\xb1\x2d\x34\x6d\x8a\xb8\xca\x40\xe6\xc8\x43\x8b\x90\x32\x41\x82\x73\x6d\x2a\x2a\x57\x49\xf8\x4a\x6a\xd7\xf0\x71\xd2\xb6\xa7\xe5\xc0\x27\xa1\xdf\x44\x23\x93\x53\x8f\x8c\x31\x27\xba\x1d\x40\x89\x66\x5a\xc1\xbe\x7d\x4e\x33\x8b\xae\x44\x9c\xea\x15\xae\x7b\x01\x4a\x3b\x68\x8f\x43\x5b\x4f\x6c\xe6\xe8\x13\x71\x8d\xa7\x89\x4d\xe9\xc8\xc8\xae\x9f\xfa\x90\xd2\x28\xd4\xee\xdc\x38\x44\x68\xb9\xee\x66\x99\xcb\x5e\x96\x57\x7b\x29\x3d\x41\x9d\xf9\x3b\xb1\x7c\xa7\xbf\x70\x72\x02\x89\xcb\xd6\xec\x8c\x9a\x0a\x85\xed\x94\x1b\x6b\xf1\x53\xc4\x97\x68\xbd\xf2\x3f\xd4\x4d\x14\xf7\x6d\xc7\xd9\x4a\xd5\x82\x87\x5b\xb7\xef\xfd\x87\x9a\x59\xde\x35\x69\xfc\x0a\xc0\xf8\x60\x41\x4d\xca\x54\xbf\xc8\x27\x75\x5e\xb3\x7d\x53\x96\x36\x9f\x55\xe3\x31\xa7\x55\x77\x69\x16\x2f\x9d\x34\x05\x03\xa7\x24\x75\x51\xab\xff\xfc\xa1\x4a\x92\x4c\x1a\xcd\xd0\x83\xc0\x1f\x83\xe3\xf2\xe6\x51\xb5\x80\x2e\x8d\xbc\x23\xd1\xa9\x29\x5c\x78\x61\xa1\xb9\x6e\x8d\xf4\xdb\xf1\xc1\xc7\xf1\xa4\xf8\x64\x6a\xc9\xef\xdb\xdf\xec\xdb\xae\x69\xaf\x8b\x8c\xb7\x00\xe7\xf4\x27\xa4\x34\xa9\xa1\x52\x47\xd9\x30\x97\xca\x4a\x86\x17\xd5\x20\xa3\x7b\xfd\xff\x66\xb7\x69\x0f\x1a\x25\x66\xed\x31\x7a\x53\x41\x68\xb8\x05\x24\xcc\xd9\x3c\x78\x66\xe6\x4f\x46\x4a\xff\xe2\x0a\x16\x2e\x02\xd8\x5d\x38\x31\xa1\xc2\x39\x87\x5c\x40\xb6\x4b\x4d\x52\xf5\x9d\xc5\x5f\x45\x8d\x81\xdd\x1e\x64\x5d\xfe\x6d\xc2\x5b\x64\xe7\xf4\x20\xc4\x36\x25\x64\xd0\x37\xfd\x7e\x56\xf6\x02\xe5\x87\xfb\x3d\x6c\xcb\x7c\xe2\x5e\x8b\x61\x1a\x65\xfd\x36\xd7\x14\xc8\x07\xaf\xa8\xdc\xf0\xca\x54\x5e\xb2\xff\x50\x33\xca\x3a\x56\x69\x75\x42\x07\x43\x14\xe8\xa4\xf3\x54\xac\x99\xc1\x0e\x8f\x0c\x61\xb2\x8c\x29\xc6\x7a\x32\x82\x83\xa0\x4c\x2a\xa9\x29\x6b\xe0\x97\x52\x98\xcb\x43\x8b\x72\x3b\x60\xc7\x04\xc7\x44\xf0\x33\xa2\x97\xc3\x67\xa5\xc1\xed\xb5\x66\x59\x63\x4e\xdc\x24\x03\x65\x20\x59\x53\xc5\x44\xbd\xac\xa8\x42\x66\xf5\xe1\xe2\xd7\xa5\x20\xd6\xbb\x13\x4c\x20\xc5\xb8\xc9\xcd\xaa\x94\x34\x60\x75\xbd\x46\xef\x15\x1f\x7b\xde\x49\xa4\x78\xca\x9c\x69\xa9\xb1\x8a\x3b\xca\x51\xa5\x6f\x6d\x39\xab\xaa\x8c\x7b\x6a\x0e\xa2\xd1\x0a\x96\xe4\x3d\x3d\x8b\xfb\x09\x86\x1f\x94\x70\xf8\x1f\xea\x46\x2a\x07\x99\xd7\x0b\x75\x0f\xdc\x3f\xfc\x89\xd8\x17\xe7\xeb\x33\x6a\xdc\x72\xa4\xd3\xad\x91\x92\x7e\x38\x41\x37\x45\x86\x08\x3e\x6f\x68\x6d\x39\xb7\x9d\x4e\x6c\x1b\xc1\x2f\x1d\xf4\x48\x9d\x1b\xd3\xbd\xac\x65\x7b\x3e\x9b\x2c\xd4\xfb\x03\x1a\xab\x3f\x20\x02\xdf\x9f\xaa\x36\xd8\xff\x40\x7b\x02\x1f\xd3\x7b\xc2\x3f\xa3\x14\x5f\xda\xb9\x49\x3b\x3b\xaa\x7d\x08\xe1\xeb\x13\x5c\x3c\x62\xc8\x55\x24\x8b\xe2\xa1\xa4\x3a\xbe\x9f\x84\x81\x76\x5a\xaa\xbe\x3c\xff\x4a\xf8\x45\x81\xcb\xe2\x82\x34\x46\x72\x62\x02\x96\x16\xb8\xba\x78\xff\x7a\x1a\xfb\x1d\x2c\x73\xac\xe6\x37\x15\x4e\x86\xd9\x4f\xa1\x4a\xfb\xf9\xf6\x5e\x96\x76\x1f\xf3\x36\x00\x6c\x3c\x20\xc3\xea\x8a\xfd\x28\x1a\x6d\x7c\x46\xcf\x12\x4d\x31\x34\xd1\xb0\x54\xcf\x80\x39\xcf\x66\xfe\xa8\xe7\x44\xab\x84\xf6\x02\xb1\xf9\xf7\xaf\xec\x0f\x11\xcd\xb0\xc9\xdc\xc5\xb3\xc7\x42\xbc\x16\x2a\x60\xf8\x9e\x9a\x71\xdd\x6f\xdb\x9c\xf9\x4a\xa5\xa0\xcb\x06\xd7\x95\x4e\xe3\xc4\x2a\xb7\xc3\xe3\xda\x11\xe7\xf8\x84\xa4\x9a\x49\xcb\x2f\x28\xb6\xe2\xef\x85\x5e\x61\xf0\x1c\xb1\x4e\x24\x06\x54\x6b\x00\x0c\x7c\x56\xbd\x06\x2b\x01\xba\x26\xa8\x2c\xfe\x0f\x3c\x67\xdc\xa7\x77\x68\xe5\xa1\x4e\xba\x4e\xbb\x18\x90\xba\x3d\x63\x35\x6c\xbd\x0b\xf2\x26\x08\x16\x68\xcd\x20\xd0\x6f\x6b\x11\x1a\x84\x8a\xf4\x14\x6e\x2d\xc8\x13\xcf\x30\x8d\x17\x23\x22\xb3\x63\x75\xa3\x7f\x1d\x29\x0e\x38\x00\x70\xc7\x13\xed\x2e\x1a\xe5\xa0\x95\xb5\xf7\xb9\x96\x1a\xcb\xfb\x7d\x6d\x23\xfb\x11\x32\x44\xbc\xda\x4f\x8c\x7d\x73\xb9\x28\x87\x1d\x9b\x96\xbb\x3e\x97\xac\xef\x7b\x4a\xfc\x0a\x0b\x03\x96\xbe\x9e\x2c\x1c\xba\x54\xe4\x2f\x54\xa0\xca\xaf\x84\x5e\x80\x6d\xda\x96\x6c\xdf\x3e\xe9\xc9\x52\xcf\x7e\xbf\x8b\xac\x5a\x29\x55\x81\x04\xff\x9b\x16\xa0\x20\xc7\xd2\x5d\x74\xf7\xb0\x96\xe0\xe6\xcc\x93\x14\xf4\x54\x78\xea\x3d\xd4\x66\xc5\x5a\x4b\xec\xcf\x43\x2f\xfc\xf5\x50\x11\x34\xd8\xe2\x92\x5d\xd6\xea\x64\x7b\x56\xe3\x88\xd2\x7f\xfa\xcb\x00\x08\xde\x52\xca\xb4\x6f\xd5\xd2\xb6\x69\x1e\x9d\x97\x38\x2e\xf3\x94\x9e\xfe\x38\xe5\xa5\x8f\xad\xc1\x5e\x80\xe0\xf6\x07\xf8\x29\x3e\x99\x62\xc7\x1c\x9e\xfb\x7a\xb3\x5d\x15\x54\x6e\x67\x70\xfe\x26\x0e\x12\xfc\x35\x57\x7c\x0d\x92\x61\xda\x45\x77\x46\x20\xee\xc7\x51\x8c\x20\x02\xc3\xaf\x9d\xa9\x64\x74\x17\x85\x09\xb0\xb5\xdc\x75\x13\x2d\x26\xea\xc5\xa9\xb8\x4f\xe1\x25\x87\xb8\x80\xeb\x0a\xfa\xa1\x9e\xcb\x7e\xd6\xb3\xcc\x4d\xdc\xed\x95\x36\x6f\xf8\x40\x79\x7f\xa4\x1c\x2c\x60\x48\x88\xf7\xe4\x75\x6d\x60\x6d\xfa\x83\x36\x4d\xed\x29\xd5\x45\x35\xde\x75\x7e\x0a\xde\xf8\x6a\xb3\x34\xc5\x0a\x67\x75\x32\x02\xa5\xe6\xdd\x54\x83\xb3\x17\x77\x7b\xc5\x8e\xc0\xe9\x80\xf3\xd5\xa3\xdd\x8a\xf4\x49\x38\xb1\xd5\xc7\xf3\xff\xd7\xa4\x7f\x2e\x4d\xf8\xa4\x26\x99\x5d\x6c\xae\x98\x32\x53\x8a\x1e\x57\xb4\x0f\x84\x1e\x90\xeb\x9b\x55\x9b\x16\x41\xf0\x8d\xfd\xfc\xe6\xdf\xd2\x92\x82\xb7\x26\x45\x4a\x8b\x9e\x1a\x65\x61\xd0\x0c\x91\x60\x5b\x4b\x0f\x6c\x63\x71\x23\xe2\x5c\x56\x6b\xe4\x0f\xa9\x38\x61\x26\x5e\xa8\x78\x23\x3c\x0f\x2e\xae\x70\xb5\xa2\x5b\x0b\xbb\xe8\xaf\x8a\x18\x44\xf5\x57\x01\xfe\xbc\xad\x2c\x91\x98\x96\xc4\x3f\x14\xaa\xf8\x88\xc2\xd2\x0d\x94\x1c\x58\x98\x64\x06\x4b\xf6\xe5\x8b\x6a\xa7\xe5\x34\x1b\x38\xdb\x0d\x1e\x5e\x76\xe9\xb0\x4f\x8d\xe9\xaf\xe3\x7a\x6e\x28\x64\x60\xdb\xb8\x6e\x92\x50\xc4\xef\x19\xd0\x42\x63\x8e\x2d\x0a\x64\xc2\x93\x6e\x88\x30\xb7\xdd\x64\x48\x6e\xd7\x6c\x1e\x78\x69\xf2\x63\xe7\xd5\xc4\xea\xb4\xde\xc4\xc2\x42\xb3\x47\x06\x72\xbc\x30\xeb\xf8\x4f\x3e\x47\xec\x0c\xdb\x71\x36\x44\x31\x83\x6a\xfc\xc7\x9a\x63\xf4\x63\x85\x76\x55\x2f\x88\x89\xbb\xe9\x4e\xda\xb3\xc4\x96\x4b\x5d\xd7\x65\xc5\x6a\x3e\x8b\x95\x02\x2e\xdf\xff\x85\xd0\x8b\xd4\xf5\x12\x6a\x15\x2c\x9b\xcf\x42\x6f\x7c\xf2\xd9\x56\xd0\x77\x7e\xfe\x60\xf3\xc0\xc2\x93\xdb\xbf\xec\xaa\x73\xd5\x50\xd5\xec\x90\x8b\x9a\x0d\x74\x02\x9f\x8c\xeb\x3b\x81\x22\x07\x25\x20\x06\xe1\xe4\x66\x07\xce\x4c\x3f\xd0\xac\xb3\xf3\x5a\xe8\xf4\x1a\xbd\x99\xd2\x78\xa8\xd2\x5b\x97\x24\x2e\x78\xfa\x57\xb5\xd1\x03\x25\xf8\x11\x5e\x24\x19\x2a\x6f\x78\xdb\xfc\x7b\x53\xd1\xe3\x85\xc5\xe6\x9a\x49\x4b\x8d\x49\x5f\xd1\xde\xc6\xd3\xba\x8c\x0b\x0b\x07\x9b\xa5\x59\xb1\x04\x83\xe3\x96\xfc\x16\x72\x38\x64\x13\x0f\x95\x96\x3a\xb8\x5c\x62\x3e\xba\x75\x8b\x24\xd9\xb2\x22\x16\xff\xfc\x83\x9b\x18\x91\xdc\x9c\x56\x77\xd8\x7f\xa8\x69\x4d\x5e\xf6\x8a\x1e\xd1\x91\x80\xae\x21\xc0\x9f\x9a\xe0\xd2\x7a\x36\xab\x16\xb4\xe9\x66\x71\xda\xdd\xed\x87\xf7\xc1\x3b\x66\x5f\x5f\xcc\x6b\x8a\xad\xa1\x67\xbc\xe1\x7b\x38\x79\xd1\x2a\x02\x00\x92\x0e\xc6\xf4\xa6\x23\x52\xce\xb4\x82\x5f\xf8\x15\xe6\x92\xdc\x25\x8e\x1b\xd2\xa5\xd9\xb1\xaa\xb2\xb7\x29\x4f\xad\xe5\x2c\xef\x5a\x76\x26\x63\x05\x62\xdc\x6f\x91\x23\xae\x01\x08\x7a\x28\xdb\xbd\x83\xde\x7d\xed\xa0\x77\x5f\x35\x11\xdb\xc3\x24\xe9\x65\x79\x8a\xc9\x7f\xac\x4b\x48\x3b\xf0\xb1\xea\x9e\xda\xbe\xcd\xbb\x96\x46\x59\x7c\x62\x05\x2c\x57\x80\x0b\x9f\xc0\xc6\xf9\xfa\xce\xea\xde\x38\xa6\x95\x4b\x52\x81\x78\x88\x19\xd3\xc8\x53\xce\xf9\x7d\x70\x83\xb8\xbe\xeb\xfa\x81\x9e\x7c\x7c\x2d\x9c\x10\xbe\x5b\xce\xf2\xfe\x8c\x92\x51\x45\xae\x8e\xcc\x76\xdb\x58\x71\xa5\x4f\x85\x8a\xa6\x70\x4a\x75\x7a\x8b\x2a\x17\xe9\x96\x3d\x9b\x52\x9b\x41\x8c\xcb\xfc\x4a\xbc\x82\x7c\x93\x4f\x42\x6d\x6f\x56\xd3\x6a\x5a\x64\x72\x60\xe0\xcb\xe3\xe3\xaa\x51\x7c\x7c\x6a\xc6\x0f\x73\x35\x03\x1b\x95\xf1\x2a\x7e\x0b\x69\xee\xef\xd3\x6f\xf1\x71\xed\x6b\x35\x30\x71\x07\xaa\x9a\xa8\xf4\x2f\x6a\x1f\x27\x96\x0a\x45\x0e\xb2\x1d\x34\x73\xd1\x19\xae\x89\xbe\x55\x16\x17\xf7\x39\xfa\x4a\xee\xa0\x13\x09\x45\xc2\x2c\x6c\x5e\x85\xdf\x19\xdf\x06\xc4\xde\xc9\xda\x6f\x78\x5a\x4a\x08\x6e\xbf\xfc\xd4\x48\xfb\xa7\xc1\xa9\xac\x78\x8a\x6e\xae\x4c\x1d\x28\xf3\xac\x0f\x94\x86\xce\xf6\xb1\xb2\x8a\xfc\x18\xf9\x3b\x2a\xe6\xdd\x2d\x7a\xbb\x9c\x91\x55\xf5\x9d\xf1\x16\xdd\x1a\x29\xcd\x3b\x4e\x63\xc5\xb1\xd7\x17\x67\x1f\x2a\x76\x22\xc7\x5d\x07\x2a\xfb\x06\xc7\x55\x3c\x75\xbe\xcd\x14\xd1\x65\x1a\xb6\x5a\x27\x62\x7e\x1c\x38\xf3\x96\x1b\x0a\xd2\x5d\x33\xc5\x17\xfd\xf0\xfa\xf9\x50\xeb\xa1\x6c\x43\x61\xc3\x1e\x04\x28\xac\x70\xf9\x0f\x95\xfc\xd0\x33\xc4\x67\x96\x79\xde\xea\xe2\x05\x50\xf1\x03\x03\x4c\xfc\xd3\x5d\x60\x10\x6b\x9f\xc2\x5b\x80\x17\x7a\x53\x8b\x60\x9f\xa3\x2c\x07\x51\x6a\x0f\xb4\xf8\x80\xa1\x5f\x27\xcb\x6e\x47\x3a\xab\xee\xb6\x23\x39\x55\xb7\x71\x62\xd3\x41\x54\xd9\x36\x0e\xbe\xf2\x15\x81\x4e\xb0\x59\x02\xe5\xdb\xdd\x0a\x5e\x10\x80\xe5\x2d\x34\xff\x1d\xc0\xe2\x04\xa6\x67\x55\x15\x06\x02\x39\xde\x04\x20\xc2\xe7\x34\x33\xe0\x5c\xe8\x5b\x6e\x51\x96\x46\x36\x2d\x73\xf2\xc4\xac\x96\x81\x0c\x18\xd3\x55\xf2\x89\x0a\x61\x65\x1e\x0f\xfb\x83\x5e\x55\x62\x79\xd5\x4b\xb6\x21\xc5\x17\x3c\x3e\x9a\xd0\x67\xae\xd9\x82\x12\x6b\xba\x43\x56\x3e\x3a\xc2\x49\xc0\x0f\xb1\x6e\xf9\x24\x54\xe6\x11\x36\x29\xcd\x8c\xea\xb9\x1c\x63\x90\xc1\xc9\x74\xba\xc6\xe6\x60\xe4\x79\x61\x57\xea\x66\xc9\x61\xba\xc9\x46\xb3\x75\xa6\x29\x35\x2c\xce\x76\x02\xe4\x4e\x12\x38\x31\x52\xa6\xcb\x05\x84\xf9\x9e\xe6\x53\xbe\x33\xda\xed\xde\xd0\x9f\xff\xa2\xe7\x5b\xfd\x95\xb6\xc7\x7e\x74\x5c\xad\x3a\x14\xe6\x97\xc3\x2a\x21\x77\xe5\xb7\xef\x69\x5c\xc5\x72\xc4\xaf\x37\x5a\x2a\x82\x3e\x0c\xb7\x7f\x99\x0f\x99\x03\x8d\x2f\xfd\x29\x8d\xe4\xb8\x49\x98\x25\xb1\xa6\xbf\x4b\xeb\x44\x76\x6f\xb4\xfd\x15\x8f\x49\x40\xbd\x1b\x88\xef\x08\xcc\x77\xe8\x66\x02\xcb\xda\x45\xfa\x5b\x40\x05\x3f\x86\x6a\x9b\x0c\x8f\xe1\xa6\x20\xdc\x1c\xc7\xf6\x23\xef\xbb\x1f\xa1\xb8\x01\x86\x84\x1b\xcb\x39\x2c\xa8\xe0\xce\xf1\xd6\x2e\xd1\xe2\xd2\x62\x73\x38\x98\x51\x56\xcc\xb7\x69\x8f\xc7\x0e\x84\x4c\x90\xdf\x8a\xb1\xb7\x83\x7a\xa2\xa5\x00\x67\x5b\x14\x79\xb1\xb7\xb1\x55\xca\x15\xf9\x35\x0c\xf3\xb8\xf3\xab\xc8\x44\xed\x61\xd2\xa6\x64\xb8\xae\x83\xbb\x55\xe2\xf2\xc0\x42\xb3\x13\x17\x51\x1e\xf7\xe3\xd4\xa0\x71\xe7\x92\xca\xef\xa8\x0a\xe5\x3b\x6a\x3b\x5f\xfa\xa7\xdf\x68\x04\xca\xd6\x82\x56\x03\x1e\x0f\xa0\x73\x9e\xcd\x75\x73\xaf\x34\x8c\xd9\xb3\x71\x07\x9d\x13\x09\x18\xd5\x0d\x40\x88\xf9\x17\x9a\xc1\x87\x11\x1a\xce\xfb\x90\xab\x48\x42\xb8\x75\x51\xff\x8c\x58\x3d\x39\xec\x15\xf5\xf9\x0f\xe8\x3b\xf3\xb1\xe2\x27\x44\x3d\x93\x27\xb6\xd8\xe1\xb1\x7e\xf0\xa8\xb1\xaf\xf0\xbb\x2f\xb6\x39\xd5\x02\x64\x6b\x68\xac\x26\x24\x23\x6f\xd2\xdf\xc6\xca\xd8\xd4\x6e\x2a\x65\x9c\xaa\x19\x1c\x3d\x53\xc0\x68\x06\x86\x3c\x36\x14\x16\x0d\x33\xe1\x45\x67\x6f\xc8\x6d\x7a\x3e\xf9\x7c\x60\xc1\x49\xba\xb8\x1b\x05\x3d\x64\x20\x43\x7f\x39\x31\xb5\x32\x7a\xc6\x83\xaa\x85\x29\xe3\x62\x39\x96\x90\x37\x21\x23\xee\x1c\x46\x1c\xcd\x63\xb3\x6e\x66\xb4\x3f\x2c\x94\x17\x8d\x10\xf1\x3c\x59\xf2\x92\x52\x58\x6a\x9b\xbc\x6d\x72\xc3\xd3\x52\x1e\x04\x5b\xf4\x12\xc3\x07\xbc\xc4\xb0\xca\x2f\x4e\x87\x5a\xf7\x27\xeb\x67\xa5\x88\xe3\xba\x4c\x51\x59\x78\x4e\x87\xc7\x23\xcd\xac\x4d\xc3\xc9\x81\x92\x7d\x3e\x1b\x7a\xd1\x97\xb3\x0a\x35\x29\x86\x79\x17\x2d\xc4\xcf\x51\x12\x9d\x26\xad\x2c\x0f\xd3\x0e\xdd\x7c\xbc\x02\x77\x15\x41\x9c\xf5\xc4\xfd\x64\xa0\x7c\x4c\xb6\xbc\xfc\x24\x5d\x0d\xbb\x98\x84\x8a\x1b\x0b\xd2\x0a\xad\xa9\x77\x9e\x19\x7b\xb4\x81\x71\x73\x0e\x57\x88\x49\x78\x49\xae\xd1\xae\xb6\xb9\x41\xc9\x0b\x98\x20\x0d\x60\x9c\xb2\xea\x7d\x65\xff\xb1\x6a\xa3\x73\xd7\x05\xb1\xe6\x4e\xa8\x34\x46\x37\xe1\x4a\xc1\x2f\x27\xcf\x47\xba\xbd\xdd\x7b\x22\x3c\xf0\xca\xaa\xc5\x20\x76\x32\x69\x32\x3a\x46\xdf\x4a\x66\xc7\x94\x42\x5e\x16\xc5\xf0\x25\x72\x85\xd4\x3d\x55\x23\xdd\x53\xd4\x19\xea\x31\xe5\xf1\x60\x80\x3f\x7d\x84\xcb\xcf\xd7\x47\x0a\x68\x78\x5d\xfd\xe9\x2c\x8f\xbb\x71\x6a\x92\x1d\x3e\xe6\xdd\x1a\xe9\x5d\x1c\x9b\x0f\x38\x3a\xff\x0e\xaf\x32\x52\x1e\x94\x7f\xc8\xbd\xde\x9d\x50\x66\x9a\xb2\xc8\x99\x9f\x6f\x0e\x97\xb3\x40\x31\x19\x8e\x6a\xeb\xd9\xa3\x0a\x8f\x68\x67\xc3\x34\xb2\x9d\x99\xea\x01\xe0\x59\xa3\x49\x8c\x1c\xf8\x24\x7d\xa6\x34\x67\xaa\x77\x01\x48\x59\xd0\xf2\x8e\xc4\x9d\x61\xe4\x0a\x55\xec\x2e\x8d\x96\xe7\x48\x43\xed\x4b\x30\x16\xe9\xe0\x81\xc3\xa8\x8a\x6f\x76\x47\xe5\x13\x35\x7d\xd8\xc9\xe3\x74\x05\x35\x9e\x54\x31\x3e\x8e\x4c\x27\x1b\x0b\x0b\xcd\x41\x6e\xfb\xb1\xcd\xad\xb6\xab\x80\x6a\x99\xb4\x51\x9e\x50\x21\x36\x2b\x2c\xba\xea\x6c\x68\x47\x2b\x51\xcc\xed\x94\xce\xc3\xcb\x03\x9b\x97\x71\x61\x03\x9f\x28\x9f\x52\x53\x3c\xa7\x54\x8d\xd1\xb7\x89\x49\x63\x0c\x32\x3b\xc0\x51\x81\x8c\xd3\x68\x55\x73\x90\x0c\xfb\x7d\xef\xdd\x89\x6d\x92\xe9\x5a\x7c\xa2\xf8\xfb\x51\x92\x0d\x3b\x33\x94\x97\x20\xc9\xbe\xa3\x94\x70\xcf\x2b\x50\xe2\xfc\xc8\xf7\x8c\xef\xe8\xf1\x8f\xdc\x0c\x3b\x4a\x99\xec\x94\x4e\xad\x4f\x4d\xd5\x58\x5f\x6d\x76\x72\x5b\x78\xf7\x6f\xfc\xf1\x0f\xd4\x07\x7d\x50\x87\x63\x44\x59\x5a\x85\x35\xe3\x8a\x43\x90\x84\x78\x16\x8c\x4f\xea\x0a\x3a\x13\xf5\x62\xbb\xca\x6e\x1a\x32\x9d\xea\x4d\xae\x2f\x85\x7a\x2f\x96\x6d\x7b\x90\x25\x71\xd1\x73\xd7\x08\x4a\xc7\x35\x45\xef\xb8\xe6\x56\xdf\x30\x5d\x8e\x4b\xda\xfd\x90\xe9\x40\x62\xdf\x2b\x16\x3b\x3f\x83\xbf\xae\x85\x7d\xb3\x58\xf4\x33\x24\x39\xa2\x58\xc4\x27\x8a\x34\x90\x2d\x2f\x3f\xea\x13\x94\x8f\x46\x7e\x11\x7c\x5f\xeb\x73\xdd\x45\x99\x82\x42\xee\x5d\xfa\x72\x13\x46\x58\x48\x92\xff\x5a\x0f\x33\x8b\x44\x11\x2b\xa8\x22\x4c\x22\x38\xdd\xd2\x0a\x2e\xc7\x94\x6d\xfe\x65\x17\x0a\xfb\x71\x67\xdd\x1a\x00\xf6\x08\xdd\xa0\x04\x03\xdb\xd9\x98\x18\xeb\x77\x37\x6d\x35\xce\x19\xb6\x04\x53\xfc\x1c\xe5\x99\x7c\x3c\x01\x61\x0f\x22\x9e\xcb\x93\x92\x95\xbe\x1e\x0a\x4d\xe8\x6d\x8b\x96\x59\xe0\x06\xf5\xaf\x8e\x54\x0f\xe6\xa2\x67\x67\xad\x59\x5b\x36\x3c\xf6\xf7\xcc\x58\xe5\x36\x40\x60\x30\x8c\xfe\xc5\xa9\x69\x2d\x9a\x1f\x58\x8b\x0b\x2d\x77\x7d\x5f\xcb\x5d\xdf\x9f\x62\x3b\x91\x33\xbe\x35\x79\xa0\xec\x2d\x4e\x62\x1f\xe3\x93\x7a\xef\xde\xa8\x67\xd2\x2e\xf3\x27\x54\x7d\xb9\xdf\x6d\x4f\x4f\x29\xd4\x2a\xa6\xa9\xb0\x19\xda\xcb\x84\xcd\x41\x8f\x0f\x4f\xe2\xff\x45\x01\xa8\x58\x22\xfb\xe5\x5f\xdc\x18\x7e\x5f\xe4\x27\x26\xc6\xd6\x44\x55\xde\x03\xc8\x3d\x30\xf4\x70\x07\x44\xb0\xae\xca\x15\x44\xc8\x4e\x3f\xb5\xfe\xa0\xa7\x08\x20\x27\x14\x01\xe4\x84\x56\x2a\x29\xcb\xdc\xc0\xab\x9e\x9e\xaa\xcc\x7a\x51\xf7\x52\x2a\xc0\xad\x37\xe9\xd0\xf3\xcd\xb8\x3f\x80\x27\x1d\x71\x53\x81\xd7\xa2\x9b\xaa\xe1\x61\x51\x5c\xae\xd1\x6f\xa9\x02\x70\x54\x5a\x76\x46\xe1\xa1\xd4\x91\x2f\xb4\xef\x87\xaa\x53\xf2\x6d\x47\x41\x31\x2b\x71\x16\x78\x7d\x14\xbe\x55\x32\x0a\xaa\xd9\x32\x71\xd2\xb7\x88\xd9\x62\xf5\x46\x3f\x2a\xfe\x6e\xd3\x31\xd1\x14\xc5\xd0\x9b\x57\xe3\x19\x01\xbc\xe0\x63\x95\x5b\xda\xb4\x9b\x90\xcc\x9c\x2b\x51\xde\x52\x78\xf8\x5b\xe1\xa3\x7e\x3f\xb6\x5f\x0c\x5e\x70\x4a\x43\xf4\xfa\x22\xdf\xdf\x44\xd7\x45\x48\xf5\xd5\x87\x6e\xee\x40\x71\x0a\x38\xe8\x82\x9a\xb2\x9e\x6d\xd1\x03\xc1\x92\xb8\x11\x6e\x31\x33\xf1\x43\xfa\xd7\x08\x85\x11\x29\x05\xcf\x5b\x78\xa2\x49\x95\x27\x37\xf0\x46\x9e\xd0\xb2\x5b\xd9\x26\xf3\x84\x1d\x90\xf8\x6d\x63\x02\xa0\x00\x74\xbe\x4c\x20\x0c\x3e\xe2\x5f\x8d\x94\x8a\xf8\x93\x24\x16\xbe\x79\x95\x52\x09\xd4\x34\xb3\x63\xcf\x99\x3b\x3e\x52\xa1\xe2\x28\x00\x1b\x41\x76\xdd\xc8\x60\x51\xe6\x59\x9a\xf5\x79\x9c\x8c\x85\x8f\x55\xd9\xa8\xe5\x99\xaa\x12\xca\x44\xa5\xb4\x73\x10\x49\x2f\x28\xe8\xe1\x82\x32\x8e\x2c\xa2\x5c\xe4\x9e\xab\x3b\x8d\xbf\x76\x0f\xef\x23\x9f\x8c\x76\xbb\x15\xf3\x33\x4f\x35\xbc\xc9\x4a\x03\xc8\x30\x8b\x50\xd3\x3b\x86\x1c\xe2\x28\x40\x19\xec\x40\xf0\x86\x97\xb9\x82\xea\xd1\x0a\x48\x54\x85\x52\x54\xd7\x0f\x35\x16\x86\xb7\x50\x0c\x86\xd5\xc0\xdd\x67\x23\x55\x69\x6e\x07\x8e\xe8\xc8\x68\xde\x4d\x5f\x06\xd3\xf1\x73\xd7\x81\x04\x22\x25\x87\xc6\x38\xd2\xef\x8d\x91\x47\x05\xdf\x9e\xa2\xee\x1c\x9e\xdb\x5f\x95\x35\xbd\xb8\x1d\xbb\x9d\x9c\x15\xca\x42\x4f\x5a\xd2\x3a\x0a\x65\x36\xec\xf6\x52\x5b\x30\xd0\x24\xaa\x59\x7e\x5f\xbd\xa2\x08\xd0\xdf\x30\x69\x43\x03\x4b\xa8\x71\xb1\x99\xee\x6c\x29\xee\x43\x30\x56\xea\x4f\x51\x6f\xb7\x4a\xb0\x67\x80\xb1\x62\x03\xbf\xaf\xa9\x75\x70\xa0\x92\x01\x58\xed\x2a\x46\x7f\x19\xcf\xe2\x66\xe8\xf5\xa6\xa0\x83\x87\x4c\x78\xf7\xd8\x2d\x94\xbd\x4f\xe2\x09\x63\x69\x3e\xdd\xf2\xc9\x58\xdb\x14\x71\xb1\xd3\xa7\x37\x3b\x5a\x9e\xe5\xf6\x0c\xc1\x4d\x28\xd1\xef\xe2\xc1\x62\x67\x27\x8b\xc3\xea\x35\xd8\x7f\x48\xb0\x08\xbc\x96\xfc\xb3\x70\x72\xe3\x2f\xbb\x3a\x6c\xd0\xdb\xac\xef\x23\x52\xd9\x49\x57\xcd\xad\xe8\x3c\xf4\x71\xd2\x8e\x47\x4a\x9c\x66\xad\xd7\xaf\xad\xa5\xbf\xf7\x6c\x3f\xcb\xf3\x9e\xf1\x5c\x04\x74\xf7\x30\xea\xc1\xc7\x93\x6d\xeb\x6e\xef\xb9\xea\x4e\xb3\xe5\x37\xa9\x97\x22\xe9\xdf\xd5\x52\xbd\xdf\xf3\x78\x9b\x1c\x8d\x76\x49\xd4\x1d\xff\x98\xae\x09\xef\xcf\x03\x44\x0c\x14\xb4\x37\x34\x69\xe9\x2c\xda\x19\x6e\x0e\xcc\x4d\x40\x7f\xcc\xf9\x90\xcc\x1d\xea\xd4\x84\xae\x5f\xdc\x34\x69\x41\x62\x5b\x3b\x13\x06\x93\xc2\xe9\x8b\xdc\x4f\x7e\x2b\xdc\x62\x57\x23\xc9\xd0\x71\x65\xe3\x74\x97\x8a\x7a\x47\x2e\xf0\x3d\xae\x6d\xad\x3a\x49\x71\x19\xcc\x17\x34\x13\x61\x9c\xc9\xc3\x20\x4c\x33\x54\x2c\x83\x60\x5b\x9f\x0b\x25\xd4\xc3\xb4\xb4\xf9\x9a\x75\x82\x26\x40\x03\x41\x85\xe3\x63\xb5\xff\x9b\x4e\x36\x28\x9d\x7a\x2d\x96\xe7\xef\x69\xd3\x81\xdf\x9b\x1a\x02\xa0\x8e\x8e\x29\xb2\xd4\xb4\x99\x32\xc9\x9a\xe5\x4a\x23\xe2\x53\xa5\x45\xd6\xcd\xcd\xfa\x6c\xa0\x14\x9b\x7c\x4c\xfe\x74\xa4\x30\x29\xcd\xbb\xfa\xb1\xe6\xd7\xfd\x58\x41\xce\x7d\xb3\x9e\xe5\xb3\x8a\x62\xfc\x0e\x76\x18\xac\x9d\xbb\x23\x25\x08\xc2\x30\x90\x23\x72\xb9\x11\xb3\x99\x56\x8d\xdd\xc1\xe2\xd2\x22\x98\x32\xd8\xe9\x4e\xe2\x55\xe4\x13\x8a\x10\x32\x9f\x56\xed\x5b\xb2\xc5\xd6\xd4\x69\xc3\xb4\x53\xdd\x7f\x49\x11\xeb\xa0\x6c\x1f\x19\x0a\x6b\x3b\x85\x62\xb7\x1c\x57\x46\x40\xc7\x5d\x86\xd2\x89\x8b\x95\x86\xea\xd7\x1c\x57\x04\xa4\x47\x5a\x1e\x0b\x9e\x9d\x12\x7d\x7c\xf1\xc5\x66\x94\x58\x56\xcc\x42\x4a\x87\xe2\x8f\x8f\x95\x16\x5d\x27\x4b\xb3\x6e\x6f\x68\x03\x35\xaf\xb0\xa1\xc7\xfc\x37\x94\x29\xc1\x60\x98\x24\x6d\x13\xad\x14\xca\xe0\x09\xa2\x31\x7c\x1c\xfa\x21\xaf\x0e\x6b\x74\x8a\x01\x49\xe0\xa4\x7c\x18\x69\x95\x0e\xa6\x73\x4e\x8e\xbe\x39\x8c\x8b\xb8\xca\x20\xa9\x09\x87\xde\xc2\x35\xad\xbc\xb0\xa7\x35\xc5\x1f\x3c\xe8\x38\xd4\xcf\x6d\xa5\x2c\x2c\x35\x0f\xcf\x1d\xd9\x45\xdf\xcb\x59\x6f\x56\x11\x43\x78\xb1\xd5\xd3\x45\x99\xc7\x1d\x20\xe1\xc5\x2a\x1b\xe3\xd3\x08\x12\x9a\xcb\xec\xf2\x0a\x05\x36\x3c\xad\x70\x03\xdb\x8f\x8b\x92\xc3\xaa\x8c\x42\x78\x96\xc8\x65\xf7\x78\xfb\xb6\x30\x8a\x04\xb6\xa1\x49\x60\x1b\x75\x52\x71\x07\x9b\x05\x59\xcc\xd3\x2f\xb1\x6f\x01\x9e\x94\x98\x18\x38\x14\x37\xab\xf6\x63\x0c\x76\x68\xa9\x6c\xe6\x60\xa9\x79\xc4\x33\x75\x66\x48\x7f\x67\xff\x81\xaf\x1f\x38\x74\x30\xf0\x02\x1e\x9f\xd1\x1b\xcb\xc7\xa1\x1e\x0f\x8b\x6c\x51\x98\x3c\x4e\x40\x05\x76\x9e\xde\x87\xe7\x38\xca\x42\xb5\x48\xb1\xb9\x17\x5c\x21\xa4\x08\x5f\x59\xbf\x9f\xa5\xc9\x7a\x63\xa2\x9b\x3d\xd1\x00\x57\xed\xbe\xdb\x2a\x8d\x6b\xe7\xd6\xac\x74\xb2\xb5\x14\x6e\x4f\x4e\x63\xd2\x91\x9e\x2e\xaa\x84\xc2\x76\x21\x0a\x80\x74\x97\x47\x74\x98\x27\xe5\xed\x93\xfe\xd5\xed\x3a\x23\xb6\x38\x2d\xb2\x65\x93\x37\x54\x4f\xec\x4d\x8a\x0f\x52\xa9\xfb\x37\xe2\xc6\xc4\xfe\x97\x24\xeb\x5f\x52\xa4\x96\x6d\xc8\xbf\xf1\x1d\x5f\xa5\x6c\x98\x83\x18\xed\x8c\xe0\xe8\x7d\x97\x40\x7b\x6c\xff\x9b\xb4\x99\x21\x2a\x6f\x8c\x74\xc7\x6b\x03\x59\x1b\xe0\xcc\xd7\x74\x5d\xf9\x01\x30\x50\xee\x47\x85\xaa\x81\x7e\x06\xdb\x2c\x6d\x61\x47\x9f\x26\x88\x16\xf8\x3a\x82\x0b\x78\x67\xf7\xe8\x8b\xa1\xd1\xfa\x3a\x8a\x0b\x1e\x6e\x47\xaa\x03\x9c\xf6\x5d\x34\x44\x91\xc0\x42\xca\x13\x79\xc8\x53\x63\x4d\x99\x0e\xbd\x3b\x24\xd7\xfb\x78\xb3\xae\x73\xd7\x8b\x1b\xc8\x58\x1a\x48\x12\x76\x10\x7d\xdd\x61\x8e\x5f\x7b\x41\x44\x38\x14\x9d\xa5\x5f\xad\xbb\xa0\xba\x35\x48\x00\x1e\xd0\xcf\xf1\xf1\x14\xc3\x67\x7e\xbe\x59\x0c\xe0\xac\x2b\xe0\xc3\xbf\x54\x06\x91\xff\x52\xf1\x4e\x57\x63\xbb\x66\xa1\xe5\x20\x5e\x4d\x74\x69\x9a\xf0\x05\x00\xf3\x7f\x54\xea\x97\xc3\x34\x7e\x99\x0c\x7c\xdc\x40\x78\xf5\x49\x02\xef\xd0\x8d\x12\xce\x55\x75\xcd\x7c\xac\x35\x9a\x5e\x9d\xcc\x9a\xda\x10\xd3\x44\x7a\xf1\x63\xfa\x54\xa4\x14\x1b\xba\x21\x09\x74\x46\x5c\x1a\x55\xf3\x16\x29\x0c\x8a\xe1\xbf\xd0\x22\xe9\x80\xcb\xb0\xe4\x4e\x7f\xee\x30\xb2\x2d\x06\x60\x42\xc8\xf8\x8d\x9a\x66\xbd\x33\xd2\x0c\xd7\x1b\xe1\x04\xb9\xc2\x4d\x18\x92\x9d\xda\x4c\xb5\x8c\x81\x6b\xc9\x6f\x69\x15\x58\xe4\xd8\x9c\xca\x0b\xa2\xa0\x1d\x4f\x53\x3c\x8a\xc3\xca\x29\xb6\x5a\x8c\x28\xa0\x1e\x84\x7a\x96\xc1\xbf\xe5\x0b\x87\x0e\xb2\x15\x30\xc0\x84\x0f\xb4\x26\xd5\x73\x2d\x8f\x2c\x60\xe7\x72\xed\x0e\x3f\x5f\xb0\x67\x5c\xd3\x22\x6f\xe7\xb6\xec\xe5\x36\x0d\xd4\x5f\x83\x9f\x08\x1f\xab\xdc\x27\x4b\xcb\x0c\x1b\x2a\x76\xeb\x93\xca\x7e\xee\xe4\xe7\xb6\xc3\x26\x61\x03\x19\x32\x50\x64\xfe\x4f\xb4\xe5\xb9\x49\xb2\x7e\x96\x22\x62\x6a\x2d\x25\x36\xd2\x52\x19\x45\xad\xea\xdc\xb0\xb0\x2c\x68\x88\x3c\x99\x6d\x0b\x45\xcd\xcd\xdf\x99\xd3\x1a\x69\xba\x32\xd5\x44\x5a\x9a\x6b\xda\x4e\x89\x86\x02\x76\xc6\xdf\x55\xbb\xe4\xef\xd6\xc0\x62\x07\xab\x9a\x91\x46\x49\x1b\x8a\xa3\xcc\x6f\x0c\x37\xe0\x11\x0d\x58\x35\xad\x4e\xb4\xb7\x58\xb3\x76\xe0\x9a\x0b\xc0\x41\x3e\xa0\xab\x06\x02\xb8\x93\x9e\x33\x96\x28\x29\x19\x38\x19\xac\xd2\xc4\x49\xd1\x37\x69\xc3\xcf\x7c\x06\x2d\x5f\xa0\x00\x6e\xc2\x0e\x71\x4b\x79\x38\x7c\xa5\xf8\xdb\x74\x81\x48\x3d\x1e\x50\x7d\xa6\x06\x78\xa5\xe1\xbe\x63\xac\xf6\xa1\xff\x1a\xe0\x17\x62\x67\xd0\x52\xde\x4d\x47\x47\x9a\x31\xa7\x5e\xe8\xf3\x61\xf0\xcb\xbf\xe8\xbe\x0f\x85\x4b\x14\xbf\x0d\x4c\x1b\xe0\x99\xbc\x13\x4e\x48\x88\x07\xce\x3c\xf8\x3b\xa1\x12\x03\x3f\xa5\x28\x93\x1f\x86\x9a\x63\x70\x26\xf4\x6a\xdc\xd7\x11\x9d\x26\xac\x22\x70\xf9\xdb\xc7\xde\x4a\xe0\x61\xe8\xc9\x3e\x77\xd1\xb3\x7b\x8f\x8a\x34\xc7\x19\x74\xd0\xd4\xb5\x51\xe3\x05\x37\x50\xf5\x89\x72\xa8\x7e\x40\xc5\x17\xc2\xfa\x4d\x20\xe3\x7c\x39\x84\x35\x21\x83\x0c\x38\xc5\x03\x9d\xe6\x41\x18\x7c\xe5\x2b\x7c\x3b\x7e\xe0\xa6\xa4\xda\x59\xb6\xe2\xde\x13\xee\x0d\x86\x1e\x1b\xf0\xb6\x44\xbc\x69\xcf\xfa\x16\xd6\x6c\x6b\x72\x03\x77\x93\x36\x97\x47\x7a\x03\x57\xb2\xf9\xdf\xab\xeb\x24\x2d\x67\x79\xdf\xe6\x50\xcc\x39\xc2\x6b\xfd\x02\xed\x9a\x7c\xec\xa4\x92\xf2\xac\x6f\xd2\x09\x23\x16\x56\x50\xe6\x13\xd5\x30\x2c\xca\xdc\x9a\x7e\x12\xa7\x68\xf6\xc8\xb2\xfe\x96\x6a\xed\x7f\xcb\x8d\x10\x2c\x0f\x6d\xb2\xb3\x7a\xbe\xec\x72\xa8\x24\x44\x2e\x2a\x9c\xe4\xa9\x96\xda\x88\x90\x17\x21\xd0\xde\x99\x84\xd5\xd5\x25\x5d\x98\x6a\x6d\x1c\x9e\x6b\x16\xa5\xed\x73\xbc\x40\x24\x60\x01\x00\x90\xf7\x7f\x0b\xf9\x06\xee\xe4\x27\x2a\x0c\xd5\xc6\x8b\x81\x05\xdd\x87\x77\xaa\x91\xe7\x1d\x9f\x51\x25\x6a\x94\xdb\x22\xca\xca\x32\xd0\xf5\xfb\xed\x50\xa9\xcb\x4c\x4b\x17\x1f\x58\x68\xc6\xfd\x41\xe6\xfb\x51\xc8\x41\x61\x4a\xc8\xc7\x75\x7a\x16\xf3\xf3\x8a\x65\x8e\xcc\x1e\x4b\xfd\x0d\xd5\x3e\x7b\x8a\x5e\x07\x54\xb3\x4f\x10\x79\x56\xc8\xe7\x3e\x1d\x35\xab\x26\x4e\x4c\x3b\xb1\xbb\x7d\x6f\xf3\x2d\xe4\x0f\x32\xcd\xa7\x58\xc2\xec\x3a\xe1\x7c\x8c\xdc\x7e\xcf\x3e\x6b\x4e\x6a\x61\x6b\x97\x04\x75\xe8\xf7\x46\x13\xc3\x4f\x74\x67\x7c\x1d\xce\x40\xff\x30\xed\xf2\x98\x1e\x22\x04\x0f\xf7\xf2\x14\xea\x48\x09\x5c\x9f\xc2\xaa\x17\x2c\x49\x71\xd7\x8a\x62\x48\x77\xb4\x8a\x13\x5c\x6d\x29\x92\xfd\x5d\xad\x08\x3b\xcc\x57\x2d\x4a\x1f\xe4\x85\xf7\xb0\xb2\xf8\x24\xdc\xe3\x1f\x6f\xba\x16\x28\x34\xee\xfd\x91\xea\x33\xbe\xaf\x2a\xff\xc8\xa6\x65\x41\x0b\x1d\xb9\xdd\x6d\x24\xbd\x4e\x2a\xc3\x89\xdd\x40\x55\x80\x6d\x77\x43\x15\x2c\x71\x63\x11\xb7\x59\x6c\x01\xb7\xe2\x81\xcb\x56\xba\x00\x77\xab\x3f\xc0\xa3\xb3\xf8\x14\x99\xa3\x95\x78\x92\xf0\x3c\x0b\x45\x72\x14\x23\x0f\x50\x3a\xd2\x3b\xf1\x26\x8c\x57\x81\xf6\x34\x6a\x67\x0f\xd2\x2c\xef\x83\x3f\xb0\x34\xc7\x0d\xcc\x3f\xc2\x93\xe3\x93\x6a\xaf\x16\xc6\x88\xc9\xcb\x38\x8a\x07\x34\xdf\x3d\xab\xdc\xa4\x90\x78\x3b\xaf\x63\xa7\xd9\xfa\xfb\x23\xe5\x81\xac\xd9\x7b\x17\x54\xa6\xda\xcb\xd2\xee\x23\xaa\x01\xfe\xb6\xf6\x8f\x20\x18\xec\xeb\x9c\x1f\x41\x96\x88\xad\x8a\xd5\x7c\xf8\x43\xf0\xcd\xf8\xd7\xb1\x6f\x83\xf1\x78\x51\x4d\x9b\xfc\xc6\x48\xeb\xa5\x6f\x6b\xd5\xca\x1e\x94\x26\x5a\x19\x0e\x02\x0f\xd2\x30\xcf\x96\x4f\x6a\x46\xa1\x16\x9b\xa9\xed\xfa\xc6\xb1\xa3\xc4\x2c\x78\x4a\xcc\x14\x10\x40\xf2\x18\x4f\x35\xbc\xb3\xea\x35\xa5\x65\xfa\x08\xf5\x33\x44\x24\x59\xb9\x24\x3e\xa4\x29\x03\xad\xac\x2a\x1e\xbe\xca\xd6\x98\xb2\x69\x91\xc7\xc3\x17\xc6\xc6\x77\x33\x54\xb5\x06\xa2\x33\xfe\xd4\x9b\xc8\x61\x9d\x59\x60\xf5\x24\x90\xbf\xfd\x9e\x1e\xdc\xfc\x31\x5e\x08\xe0\x13\xdb\xc6\xc1\x81\x85\xcd\xeb\xd8\x9c\x81\x7e\xde\x1a\x7d\x41\x89\xda\x43\xbd\xa0\x9d\x13\xac\xe4\x08\x54\xf0\xf6\xe0\xe3\x5a\xf1\xbd\x65\xb3\x9a\x31\x62\xc5\x6e\x22\x88\x3c\x62\x2d\x32\xbd\x13\x2c\x36\x57\x45\x3a\x04\x01\xf5\x92\x0a\xae\x97\x94\x3a\xd7\xb2\xc9\x2d\x2e\x86\xd5\x60\x55\xae\xfc\x5d\x17\x9f\x44\x26\xae\xba\xed\x28\x38\x8f\xd1\xcf\xf1\x71\x9d\xd3\x5a\x34\x2c\xca\x0c\x6a\x71\x72\xe3\xab\xab\x11\x2e\xaf\x76\x24\xb0\x05\x39\xf8\x22\xa8\x3e\xd2\xf2\xae\xe0\xef\x28\xd2\x1e\x4a\x7f\x3c\x8f\xed\x63\xaf\x69\xf9\xce\x54\x17\x78\x69\x6e\xa9\x99\xb4\xb3\x89\x16\xff\xab\x5a\xba\xfc\xd5\x3a\x57\xfa\xfe\x7a\x51\xda\x3c\xb6\x22\xfb\x22\x82\x10\x8a\xfe\xab\x87\x0c\xf6\x1d\x5e\x08\x94\xc2\xea\xa4\xbe\xde\x34\x45\xec\xeb\xcd\xa8\x67\x06\x25\xf7\xbc\x10\x91\x3f\x0a\x15\x66\xfd\x51\x8d\xcf\x61\x94\x98\x7e\x1f\xbb\x02\xa2\x2a\x72\x48\xac\xfb\xbf\xd6\x5e\x48\x27\xb1\x5f\xc9\x64\xf1\x93\x4a\x2b\x73\x90\xe5\x65\xb1\x87\x3e\x09\x51\x66\x27\xf9\x15\x8b\xc0\xba\xbf\xc1\x57\xb1\xa6\x26\xa6\xc2\x84\x5a\x49\x2b\x5a\x66\x82\x14\xfe\x8c\xfc\x1d\x1b\xef\x4d\xbc\x31\x9a\xda\x2e\x08\x44\xf5\xb4\x90\x29\x9e\xa5\x8c\x5c\xe4\x3a\xea\x0c\x4e\x4c\x54\x66\xf4\x18\x7c\x05\x78\x4a\x73\xb1\x4e\x85\xfa\xdb\x99\x24\x2e\xfa\x0d\x5f\x44\xa1\x2b\x27\x7a\xd1\x7e\x94\x74\xa3\x56\x98\x6b\xd5\x24\x43\x91\x62\x41\x02\xce\xa6\x3b\x7c\xa2\x14\x83\x57\xba\x6d\xc5\x07\xba\xaf\xa7\x11\xef\x2b\xec\x6a\x68\x92\x47\xbd\x84\x6a\x83\x6e\xb5\x33\x34\x5c\x9a\xe3\xe0\xb7\x73\xac\xa2\xce\x71\x9f\xbc\xfc\xd2\x7f\x8a\x09\x1f\x94\xf3\x37\x71\x2d\xe8\x63\xdc\xc2\x27\x22\x45\xc7\x3a\x40\x56\xfe\xf4\xb8\xda\x72\xb0\x05\xfe\x97\xc8\x0d\x90\xa2\x7b\xb6\x68\xc7\x0e\xe2\x88\xe7\xa6\xd8\xd3\x0f\xcf\x5a\x0c\xfe\xea\xee\x4d\xc7\x96\x36\xc2\xf8\xab\x73\x02\x38\x2c\xbc\xe8\xb3\xe1\x97\x7c\x58\xb3\x89\x8d\xb2\x7e\x7f\x98\xc6\x91\x13\x1c\x3f\xc2\xa1\x1a\x33\xcc\x7c\x3c\xd2\x04\xbd\xe5\x72\xcd\xe4\x56\xbb\xe3\x5f\x53\xf2\x71\xd7\xa6\x9a\x61\x8b\xcf\x1f\x6c\xda\xa2\x8c\xfb\xde\xf8\x4a\x64\x8f\x3d\x3f\xe4\x96\x82\xcc\xfb\x36\x8f\x7a\x26\x2d\x1f\x71\x4a\x8f\x5f\xde\x0e\x23\x3d\x24\xe9\x18\xf8\x12\x3a\x9c\x97\xfc\x3b\xa7\x99\x6c\x78\xaf\x95\x48\xc5\x11\x81\x8e\xf0\x70\x04\x47\xf2\xe3\x32\xbf\x3e\xa5\x2a\x25\xc0\x41\x94\x2d\x2f\x5b\xb0\x68\x91\xd9\x9c\x45\x00\x90\xac\x40\x49\xa2\x9c\xae\x75\xd6\xe9\x9b\x15\xdb\x50\x4a\xca\xf7\x14\xbb\xe0\x34\x22\x80\x0f\x54\x6e\x5e\x31\x79\x09\x05\x81\x70\x59\xe8\xe7\x1c\x29\xda\xf5\x9d\xce\xe0\x62\xc4\x9e\x6e\x42\x41\xa2\x5c\x7f\x4e\x39\xa6\x5f\x47\x62\x21\x6e\x29\xd5\x12\x87\xfa\xcd\xf5\x51\xf0\x8d\xfd\x4e\x43\xdf\x7b\x79\xd2\x24\x7a\xcb\x33\xe9\xbf\x8d\xba\x98\x71\x1f\xde\x8f\x11\x13\x1e\x86\xde\x25\xfa\x03\xc2\x0a\xd9\x30\x0e\xe5\x2f\x1e\xe3\x77\xb5\xc2\xe7\x29\xfd\x85\x76\x53\x96\x00\x42\xc3\x59\xad\x57\xf7\x70\xa4\xf8\x03\xdc\x60\x66\x37\xad\x50\xcd\x7e\x3f\x54\x85\xc4\xc6\xc8\x73\xa5\xae\x69\x02\x6f\x69\x4d\x27\x66\xd7\xf9\x09\xc1\x09\x79\x39\x35\x7c\x1e\x6a\x4e\x91\x77\x04\x79\x5d\x71\xb9\x0a\xef\x04\x4e\xdf\x68\x16\x92\xc9\x08\xa4\xf7\x14\xfe\xf9\x85\x71\x8d\x3b\x82\x7d\xb9\x8a\xf0\xf4\x9e\x0a\x97\x47\x0f\x73\xc8\xc7\x94\xbd\xdc\x9a\xce\xa4\xec\xd4\x48\xcb\x4e\xa9\x64\x3e\xad\xf2\xe7\x1d\xbe\x9f\xcb\x02\x95\x4e\x43\x5a\xeb\xb6\x04\x4e\x6f\xf9\xbe\x6e\x7f\x3e\x08\x27\x76\x51\xd4\x97\xf4\xc7\xbf\x39\xac\xde\x62\xea\x4f\xda\x59\xe5\xe0\x77\x92\xd2\x03\x91\x39\xa2\xcb\xe4\x7f\x20\x00\xc3\xb1\x8c\x9c\x6d\xd3\x86\x1a\xc6\x6b\x27\x59\xb4\x62\x65\xa8\x1f\x79\x1a\x03\x3e\x7c\x52\xa3\x04\xd0\x5c\xb3\x66\x90\x31\x52\xc8\xea\xf9\x4a\xe7\xfc\x27\x53\x80\xd6\xfc\xfc\xc1\x66\xc7\x46\x55\xe9\x4f\xf7\x5b\xd4\xd5\xfc\x06\x7d\xb1\xd6\x0c\x3a\x31\xc3\x34\xea\x49\xd4\x42\xf7\xfd\x4d\xd5\x89\x7f\x53\xcd\x0c\x0f\x6c\x5e\x64\xa9\x01\x68\x20\x42\x62\xfa\x6b\x5d\x44\x7a\x89\x7b\xf0\x60\xe4\x49\xcd\xf7\x43\xe5\xb0\xff\x8e\x1e\xb3\x09\x34\x74\x3b\xa1\xfe\x6b\xd3\x38\xcb\x1f\xf1\xd8\xcf\x1f\x4c\xa8\xc3\xa0\x0f\x27\xf5\x7f\xc3\x7b\x0d\x7e\x44\xb0\x35\x56\x32\x4f\x8f\x4a\x3d\x4a\x65\x96\x03\xb7\x1d\xd8\xb1\x19\x7a\x31\xee\x73\xa1\x4f\x2b\xad\xe5\x22\x0b\xcf\x77\x3b\x91\x5a\xf8\x58\x8d\xa6\x44\xa6\xec\x65\x1d\x1b\xa8\x8f\x3a\xa3\xe8\x28\x67\xd4\x52\x28\xca\xdc\x96\x51\x0f\xa0\x25\xf2\xbd\x89\x86\xd6\x66\xa8\x68\x2c\x6a\x14\x33\x1a\xf6\x87\x09\x55\x2c\xe8\x34\x23\x3a\x48\x2b\x87\xc7\x44\x75\xe0\xd8\x50\xec\xc7\x8b\x6a\x20\x26\xca\x06\xeb\x8f\x78\x6c\x75\x14\x7a\xad\xb1\xcb\xda\xd2\x69\x83\x5f\x11\x17\x42\xaa\x4f\xc5\xa3\x3c\xa5\xf9\xa0\x2c\x4d\xa2\x6d\x91\x27\x0c\x26\x01\xad\x9f\x74\x6a\x50\xa6\x6b\xd3\xc8\x7b\x9f\xe3\x02\x1f\x68\xfa\x38\x1b\xf0\x88\xb5\xd3\x13\x6a\xfc\x2d\x1b\xae\x5b\xad\x15\x77\x55\x8f\xab\x5f\x9d\x70\xe8\xb2\x7d\xcb\x00\xbe\x4e\x81\x71\x69\x0f\xb5\x00\xe4\x0e\xca\xd6\x9d\xfc\xa5\x73\xac\xbd\x12\x7e\x1e\xc4\xde\xb6\xe9\x4b\x55\xad\x1f\x78\x7c\xfb\xbc\xe6\xfb\x9c\x57\xc4\xbf\xa2\x34\x9d\x78\xd8\x47\x28\x91\x76\x6b\xe0\xb4\xf0\x6f\x8e\x7c\x9d\xc2\x9a\xe5\x78\x55\xff\x57\xbe\xfd\xc8\x51\x6f\xd5\xf5\xa2\xfa\x71\xda\xc1\x92\x13\x55\xf0\xc0\xcd\x6c\x9f\x9e\x2a\x3b\x5e\x58\x9a\x23\x7d\x4b\xf2\x26\x00\x4c\x30\xd3\x52\x60\x0c\x74\xd6\x50\x76\x6e\xab\x33\x80\x7c\x69\xd8\xe1\x21\x1b\x54\xb0\xd0\x92\xc4\xcd\xe5\xf4\x0f\x7b\x82\x76\x03\x89\xab\xc4\x0b\x0a\xf3\x28\x42\xb1\x42\xf8\xb8\x4e\x8e\xae\xcc\x4d\x5a\x24\xc3\x22\x22\x8b\x29\xf7\xba\x9d\x0a\x75\xc2\xbd\x35\xfb\x5a\x9a\x23\x53\xaa\xdc\x16\xe5\xd6\x56\x8f\x97\x8e\xfe\x6e\xe8\x89\x24\xe7\xea\x8c\xbb\x92\x38\xb2\xa9\xdf\xed\x9c\x62\xb5\xf3\x83\x3b\xa5\x3c\x62\x3f\xac\x15\xbe\xea\xe5\xa6\x40\xf4\xc5\x5b\xf8\x23\xfa\x0d\x3e\x9e\xe8\xcd\xd9\x3c\x7d\x12\x8f\x18\xc4\xbc\x6d\x63\xa5\xb3\xfb\x7d\xd5\x78\xdb\x98\x90\xb0\xa3\xa1\x42\xf5\xba\x7f\x5d\x1c\x82\x95\xfc\xdc\x99\x50\x91\x58\x77\x90\x83\x06\x4b\xa5\x02\xf3\x99\xa0\x1e\x39\xbb\x6e\xa7\x52\x0b\x9d\x42\x16\xdc\x45\x2e\xc4\x62\x53\x78\xdb\xc4\xbc\xad\xfa\x66\x88\xe0\x1b\xe1\xd6\xa4\x92\x50\x2a\xbb\x56\x24\xb6\x2c\x6d\xde\xd0\x86\xa9\xf0\x24\xc0\x97\x6e\x50\xcf\x44\x78\x75\x8a\x2a\x59\x9a\x92\xe8\xbc\xa4\x55\xe2\x44\x3e\xaa\x1b\x84\x8b\xff\x0c\x51\x87\x9d\xb3\x46\x6a\xe7\xe2\x91\x74\x5c\x24\xe4\xcc\xf0\xb5\xde\xa5\xaf\x85\xf4\x0f\xbd\x1a\xa0\xb3\x57\xa7\x2e\xfe\xd0\xf3\x18\x48\xe8\x43\x22\x21\x70\xe2\x59\xd7\x29\xa3\x55\xe2\x64\x5f\xe7\x8d\xe9\xf8\x68\xb7\xec\x19\x71\x4a\xb2\x30\xa2\x50\x4e\x77\x4c\x44\x92\x26\x44\xcd\x03\x67\xcb\x02\xaa\xbb\xe8\x98\x4f\x88\x9d\xfb\xe0\x37\xb0\x79\x9c\x75\xf6\x78\x56\xd8\xc9\x50\xc1\x4c\x3c\x7b\x0f\x70\xe8\xdf\x84\xbe\x9f\x7b\x3b\x54\x2a\x49\x1f\x8e\xfc\xb0\xf4\x1d\xad\x0c\xfa\x0e\x2e\x0d\x71\xf4\x0d\x65\x1a\xb1\xa8\x27\x37\x8e\x61\xfb\xc4\x57\xbe\x8b\x2c\x97\x4f\x42\xad\x75\xbd\xf6\xb8\xaa\xce\xc1\xbf\xc5\x24\x11\xc7\x5d\x91\x7e\xac\xbe\xb5\x93\xb6\xa9\x3e\x06\x19\x15\x91\x17\xb9\xad\xb5\x89\x54\x0b\x29\x1c\x4b\x62\x61\x2d\xb3\xf2\xb0\x40\x26\xd5\x83\xc1\x5e\xfe\x14\x21\x34\x00\x0c\x5f\x0f\xf5\xb3\xf0\x77\x7c\xd7\x58\x8d\x74\x3f\x31\xa5\xef\xba\x6f\x7f\x33\xb7\x89\x29\xa5\xb9\x88\xb4\xef\x26\x1e\x8d\xb8\x19\xf8\xcc\xf9\x5b\xae\xa7\x44\x58\x6b\x62\x67\xbc\x42\x02\x4b\x38\x63\x89\xdf\x53\x1d\x78\x2c\x41\x6e\xf1\x8d\x9e\x9e\x44\x1b\xbf\xdc\x3c\xb0\xd0\xa8\x1e\xb5\x48\xb8\x78\x32\xde\x19\xdd\xf8\xb9\xa2\x07\x51\x6d\x87\x67\x0b\x45\x83\x76\x2b\x77\x48\xd0\x46\x35\xbf\x76\xb1\xd6\x18\x32\xed\xc0\x3a\xdc\x71\xcd\x4f\x28\x45\xc2\x13\x13\x61\x2c\x8f\xb3\x86\x2f\x01\xd0\xe9\xc0\x1d\xda\x3e\x56\xc3\xdd\x0f\x31\xe7\xc9\xbf\x94\x66\x4f\xd1\x63\xc5\x6e\x73\x1b\x2f\x09\xf7\x39\xb0\xc6\x9c\xec\x59\xf5\x27\xb0\x14\xb6\xb7\x74\x0f\xe7\x72\xe8\x25\xf9\x9e\x19\x6b\x98\xc8\xa3\xfc\x27\x91\x72\xa2\x2c\x9c\x19\x07\x2f\x2c\x7a\x23\x65\x57\x93\xc3\x40\x17\x2b\x6f\x16\xdd\x55\xc4\xa6\x9f\x6c\xa1\xbf\x68\x48\x9b\x56\x85\x93\x33\xf5\xd3\x15\x17\x46\xda\xe2\x6c\x39\x4e\x4d\x1a\xc9\x4c\x81\x40\xa3\x1e\x69\xff\xf6\xc8\x0f\x59\x7e\xaa\xcd\x18\x20\x22\x91\xac\x43\xb7\x0c\x21\xeb\x78\xe8\xfb\x8f\x97\xc1\xbf\xe1\x7f\x18\xa9\xe2\x17\x03\x75\x8e\x8d\xe4\x6a\xf9\x93\x7a\x92\xff\x81\xde\x1f\x1e\xa8\xac\x69\x39\x31\x03\xb6\x88\x65\xa2\xcf\xc8\x8f\x69\x9c\xa9\xcb\x41\x12\x71\x23\x74\x6e\x3e\x8e\xcc\x74\x79\x0a\x69\xd8\xb7\x8f\xf5\xfb\x07\xd6\xe4\xf6\x6f\x9a\x31\xa9\xf9\xa4\x76\x6c\x18\x32\xc5\x8a\xc2\xe0\x1f\x1f\xbb\x94\x3d\xca\xe3\x32\x8e\xe8\x8a\x70\x13\xc0\x6d\xe1\x63\xc5\xf0\xde\xfb\x73\xff\x59\xe0\x9b\xd1\xec\x00\x25\x83\x88\xb5\x20\x77\x9c\x4a\x7d\xea\x74\x8f\xaa\x5b\x2a\x24\x1c\x2f\xab\x18\x99\x2e\x03\x47\xc8\xac\xf0\x4c\xf8\xb8\x4e\x98\x3e\x35\x7d\xbb\x55\xb7\x47\x34\x46\xa3\x2c\xcf\x6d\x31\xc8\x48\xab\x00\x79\x89\xf8\x6c\xf9\x35\x8c\x8e\x91\x88\x1f\xd5\xb5\x3b\x72\xfb\x12\x8d\xb7\x04\x4a\x66\xf4\x35\x5a\x8a\x7c\xec\x2a\xf1\x4e\x9c\xdb\x48\x34\x72\x9c\x23\xe8\x92\x77\x65\x78\x4c\x09\xdc\x47\x96\xe0\x5f\x96\x77\x56\x1b\x3b\x3f\x4f\xd1\x7d\xae\xde\x49\xfe\x07\x85\x46\x66\x43\xf2\x06\x97\xdc\xe6\x01\x72\x0d\x64\x40\x0f\xf1\x07\x98\x9c\x40\xe1\x5d\xa4\xd6\x7d\x76\xf5\xdb\xd8\x36\x00\x8e\xbc\xad\x2d\xd9\x36\x47\x9e\x8f\x8e\x36\xab\x30\x83\xfc\x8e\xfa\xd2\xb0\xdf\xce\x0a\x72\x3a\x76\x53\xea\xde\x12\x4f\x35\x91\x89\xee\x41\xfd\xf4\xea\xad\xe3\x6c\x24\x54\x70\xf2\x09\x35\xfb\x58\x94\x71\x5e\x04\xc1\x57\xbe\x22\x2e\xad\x10\xf6\x10\xcb\xd6\x69\x88\xe4\x60\xb3\x6f\x4b\xd6\x6c\x06\x4e\x8a\xa2\x80\x8f\x6b\x68\xc2\x07\x45\xe9\x9b\x9f\x92\xe4\x8c\xf4\x76\xf0\xc9\xd4\x07\x1d\x9e\x6b\x26\xaa\xa7\x8d\xba\x02\x84\x7b\x3e\xae\xf9\x95\x23\x72\x6d\xae\xaa\xbb\xa0\xca\xa8\x69\x1d\xaa\x03\x0b\xcd\x28\xc9\x4a\x3f\x26\x89\x80\x09\xf5\x59\x3e\xae\x11\x86\x3f\xd8\xec\x90\x95\x48\xdb\x76\x66\xbc\x93\x0a\x9b\x79\xcb\x24\x7d\x43\xb9\xe7\xe3\xd5\x13\x12\x48\x0d\xc9\xbc\x18\xb6\xfb\x71\x1a\xf7\x87\x40\xdf\x1d\x20\xe9\xb8\x15\xe8\xc5\x01\xd5\x3b\xa1\xd7\xb4\xc9\xed\xae\x2a\x30\xc8\xec\x3d\x5d\x83\x93\x78\x5e\x9a\x13\x9a\x14\x16\xab\x58\x0e\x2b\xfa\xda\xe9\x29\x63\x3a\x19\xfc\xa4\x85\x20\x65\xad\x87\x04\x12\x10\x51\x76\xaa\x56\x2b\xf8\x8e\x3c\xae\xa6\x4c\xac\xaf\xa8\x57\xec\xbe\x1a\x0f\xbe\x43\xcc\x19\x21\x46\x2b\xbf\x97\x3a\x5c\xa9\x17\x97\xd2\xe9\x01\x51\x0a\x10\x3f\x1f\xab\xd9\xed\x65\x53\x94\xa2\x37\xec\x84\xb1\xab\xa7\x2a\xc2\xd8\x42\x23\x29\xf3\x8c\x75\x1d\xb1\xa7\x40\x70\x56\x51\x44\x16\x1d\x03\xd8\x4f\xf1\xac\xf5\xb2\xc4\x16\x59\xdf\x2a\x23\xe1\xd3\xca\x48\xf8\xb4\xba\x92\xea\xc7\x3a\x66\x9d\xea\x48\xb1\x4b\xd4\xfc\x90\x9a\x21\xdf\xe5\xb8\x3b\xcc\xc5\x83\x19\x19\xe0\x7d\x3c\x33\x3e\x51\x84\x83\x64\x48\xf0\x5c\xf5\xd9\x28\x2f\xd0\x3e\xe4\x63\x95\x63\x0d\x6c\xdc\xf0\x83\x6b\x78\x1a\xf8\xca\x6f\x8c\x14\x3d\xf7\x66\x9d\x4f\x6c\x27\xeb\x1b\xc6\x0c\x9c\x6e\x83\xd7\x70\x98\x2a\x42\xf6\xed\x6b\x0e\xd3\x62\x38\x18\x64\x79\xc9\xd7\xe6\x1a\xf7\x9e\xd6\x71\x49\x7d\x8b\xdc\x46\xd9\x70\xa0\xe7\xa7\x46\xea\x27\xcf\xd5\x11\xe0\xca\x3c\xa6\x52\x4b\x4f\x70\x2a\x8a\xff\x3b\x1a\x80\xca\xe0\x50\x60\x31\x65\x08\xbe\x08\x0b\xae\xf1\x89\xc3\x78\xa2\x2c\x49\xfc\x26\x22\x81\xbf\xe1\xdd\xdb\x2f\xd4\xf4\x74\x9a\x49\xdc\x8f\xdd\x16\x25\x22\xef\x81\x93\xd2\x3f\xa5\xe7\xea\xd7\xa3\xc4\x16\x0d\x65\xd2\x80\x8e\x9e\xa3\x31\x39\x2a\xc0\x6b\x53\xb4\xc5\xf9\xf9\xe6\x4b\x4e\x25\x5e\x8b\xac\x48\x59\xac\x1c\x5c\x6c\x64\x92\x04\xbd\x3e\x74\x32\xaf\xd2\x02\xe5\x63\xd5\xc8\x5c\x35\xac\xfb\x75\x60\xc1\x79\xbb\xd3\x07\x88\x4c\x8a\x12\x70\x7b\x53\x8b\xf4\x5e\xaa\x79\x43\x0f\x36\xad\xe9\xda\xbc\x41\xdb\x0d\x0b\x32\x28\x63\x93\x9b\xa1\x57\xc1\xbc\xa8\xf4\x27\x0a\x9b\x97\x45\x43\x8d\xc4\xed\x00\x4d\x0d\xc9\xf0\xb6\xb1\xef\x17\x4c\xab\x37\x1d\x9e\x5b\x68\x76\xf3\x6c\xcd\x05\x6e\x14\xa0\x60\x61\xf1\x71\xe8\x1f\x2f\x13\xed\xab\xeb\x00\x34\x00\xe6\xba\xce\xae\x85\x7f\xaf\x7e\x69\x90\xd0\x0b\xe0\x5a\x59\xb8\xed\x82\xf6\xd7\x25\x5d\xeb\xb1\x4d\x3a\x70\x19\x93\x00\x48\xaf\x99\x88\x69\x55\x7f\x4b\x56\x62\xb0\xd5\x71\x0c\x6f\x56\x03\x3d\x4b\x24\x47\x67\x95\x7d\x55\x94\xa5\xcb\xb6\xc3\xa6\x1b\x9c\x8c\x02\x97\x62\xae\x2f\x9f\x4c\x3d\xa0\x03\x0b\xcd\x2c\xb7\x5d\x76\x4b\x40\x7e\xcd\xa3\x05\x7c\x32\xd5\x08\x39\x3c\xd7\x2c\x7b\x39\x0d\x18\xf8\x6a\x1c\x00\x34\x1f\xab\x0e\xce\x72\x96\x95\x3d\xf2\xe5\x59\x70\xee\xf4\x78\x11\x84\xac\xf3\x94\x12\x38\x5d\x8d\xbd\x53\x14\x78\x11\xb0\xc8\xe3\xe3\x1a\xf3\x82\x85\xa6\x59\x33\xb9\xa5\x40\x26\x16\x46\xc1\x16\x21\x12\xd4\x5f\xd3\xb2\xb4\xfb\x0f\x35\xa3\xc4\x14\x85\xca\x08\x98\x89\xc8\x27\x75\x53\x0f\x9d\x3c\xf6\x9a\x44\x6c\x46\x44\xef\x91\x18\x13\x79\xbc\x70\x25\xcb\xad\x49\x67\x34\xf6\x79\x41\xb5\x98\xfe\x40\x51\x6e\x58\xef\x98\x7f\x68\xaa\xd8\xe0\x9c\xdd\xa4\x11\x8d\xa8\xd3\x22\x70\x8d\xd2\xea\xf1\x4a\xbf\x68\xaa\x93\xbb\xb4\xd8\xcc\xda\xab\xa8\xc0\xd0\x95\x06\x80\xf4\xc7\x0a\x23\xfb\xe3\x5a\xe3\xff\xc8\xa6\x55\x1c\xe0\xbd\x10\x7d\xee\x9b\x74\xc9\x2c\x15\xae\x85\xf3\x2e\xab\x40\x43\x9a\x22\xc3\xfe\xac\xd7\xaf\x7b\x55\x69\x47\x7d\x86\x72\x8f\xff\x41\xb1\xa3\x78\xe6\x13\x31\x75\xcf\xd4\xaa\x23\x3f\x9f\x6e\x96\x61\xf7\x10\xcd\x69\x3f\xfe\xf5\xd6\x34\x31\x66\x7f\x73\x8d\x80\xd4\x09\x55\xdb\x6f\xa9\x12\xf9\xa8\x96\x50\xfe\x60\xaa\x9a\xa9\x6a\x8d\xc4\x16\xc5\x8c\x0f\x93\x0f\x00\x14\x01\x41\xdb\xa4\x35\x8f\xd7\xf7\xcf\x50\xea\x8b\xc4\xbe\x8a\xee\x36\xb7\x26\x69\x6c\xc5\x5d\x39\xa0\x87\x4a\xef\xf0\xd2\x24\x16\xd1\x2f\x9e\x50\xee\x18\x0f\x47\x5e\xb7\xe8\x4e\xa8\x00\x87\x4f\xf0\x1d\x88\xe5\xf7\xab\x5f\x1a\xfb\x5d\xf8\xd1\x96\xea\x22\xdd\xa5\xc7\x2d\x70\xa3\x16\xc0\xbf\x8c\x0b\xc7\xc6\x1f\x68\x75\xc0\x7f\x01\x96\xa5\xc0\x0f\xd5\xe3\x64\x5d\x39\xed\xa8\x16\x2a\xc6\xfa\xb9\x90\xa8\xde\xc2\x80\xf5\xbc\x23\xa9\x22\x8f\xb8\xca\x51\xcd\xa9\x9d\x54\x6b\xa7\x1f\x47\x3d\x63\x13\x1a\x11\xc6\x25\x7d\x40\x5f\x5c\x9c\x5b\xaa\xd7\x7c\xc2\xd2\x45\xbe\x84\xdf\xc6\x59\xeb\x4b\xa8\x58\x74\x13\x84\x8b\x55\x67\xd9\x53\xed\x14\x14\xc7\x27\xe8\x3d\x7c\xa2\x0a\xbc\xff\xfc\x9f\xfc\x1c\x2d\x3d\x3c\xfb\xdb\x44\x79\xe3\xe3\x29\x4d\x21\x52\x3e\x59\xc7\xf6\x85\xf4\xea\x04\x37\xb7\xa4\x77\x49\x17\x8f\x9c\xff\x6e\xa8\x09\x00\x1d\x9b\x3c\x12\x28\xbf\x42\x5f\xd7\x03\xb0\xc5\x38\xc2\x51\xfe\x73\x40\x2c\xdf\x18\xa9\x88\x79\x5e\xf5\xca\xbe\x83\x8c\xdf\x71\x74\x96\x44\xc9\x9b\x57\xbe\x4c\xf4\xe9\xb9\x33\x48\xef\xd2\x76\x28\x83\xaf\x81\x53\x4e\xc6\x2e\x25\x2c\xb1\x3a\x3f\xc9\x9e\x93\x77\x92\x61\x03\xce\xf1\xf8\xa4\x4e\xc8\x96\x30\x83\xc6\x16\xbb\x09\x51\x9e\x38\xa1\x67\x75\xae\x4d\xc8\x70\x74\x87\x3c\xbf\x84\x9e\xd3\xad\x91\xb7\x99\xbf\xa5\x74\x44\x7a\x71\x52\x0e\x53\x2b\xfb\x22\x02\x35\xdf\x01\x3e\xa9\x19\x2e\x3c\xd8\x34\x49\x62\xbb\xf2\x5d\xa4\x9f\x4a\xdf\x85\x4f\x46\xcf\xe8\xec\x2a\x5b\xb5\xb9\x58\xe4\x49\x85\xec\x69\x2f\x37\x26\x9e\x72\xf1\xf7\x50\x87\x3a\x43\x91\x03\xde\x41\x46\xd5\x2c\xe4\x6e\x8f\xaa\x1e\x75\xc4\x2e\x2a\xff\xf9\x78\xec\x1f\x9b\x4d\xcb\x38\x47\x7f\xd7\x01\x00\xa1\xf6\xc4\x7f\xd4\xf1\x75\x39\xff\x66\xce\xba\x1e\x65\xb9\xa3\x34\x9c\xc4\x17\xbc\xd8\x4d\x37\x6d\xf3\xea\x48\x53\x81\xfd\x5c\xde\x5d\x78\x31\xe0\x3b\x5e\x52\xce\x48\x0d\xa0\xd2\xce\x77\xe7\xf0\x9c\xfc\x03\x61\xc5\x28\xe9\x76\xb7\x28\xc4\xf0\x6f\xd3\x5d\x10\xfe\xc6\xd3\xae\x1c\x33\xcb\xcb\x71\xb4\xb2\x65\xba\xfe\x9a\x72\xcc\xba\xe6\x93\x39\x9b\xc4\x7d\x9b\x5a\xc6\x9f\x46\xc0\x9f\xc2\xc7\x94\x6e\x5d\x0a\x02\xa4\xa3\xff\xef\xdb\x27\xef\xca\xc8\x7b\x8c\x5f\xc3\x7b\xe3\x8c\x9a\x9c\xfa\x48\xdd\xa0\xf3\x41\x36\xb2\x93\x95\x82\xc0\xc8\x43\x42\x7c\xa2\x44\x4b\xa2\xbd\xc1\x84\xf4\x3d\x16\xa5\xb4\x0e\x3c\xf6\xb2\x96\x65\x1d\x14\x89\xac\x66\x8e\x05\x2b\xd2\xe6\x1e\xfa\x89\x12\x13\xf7\x8b\x27\x35\x84\xa3\x44\x9f\x8e\x8f\x34\xd0\x43\xac\x21\x86\xce\x55\xf6\xcf\xfd\x07\x71\x55\x51\xf9\xfd\x15\x84\x16\x24\x44\x3c\xd9\x86\x97\xb4\xd1\xf2\x1e\xfd\x3f\x1c\x79\x1c\x6b\x1b\x91\xe4\x64\xd8\x9e\xee\x08\xb2\x13\x08\x6c\x4d\xb4\x87\xa5\x5b\x8b\x7b\x80\x7d\xe3\x9e\x8a\x46\xa5\x4d\x92\xd2\x24\xe8\xb9\x02\x3b\x39\xa5\x14\x09\x4f\xe9\x39\x83\xb2\xcc\xe3\xf6\xb0\xe4\x7d\x46\x3a\xf5\x74\xc1\x7c\x12\x6e\x99\x73\x38\xf4\x7c\x15\xa8\x1f\xf1\x22\xc1\xbb\x21\x1b\x82\x3e\xe0\x51\xb5\x65\xc2\xda\x18\x68\xc7\x09\x35\xc1\x7e\x1f\xc9\x0c\x78\xdf\x8f\x40\x00\x5c\x3c\x3c\xe8\x93\xb1\xcd\x9f\xc4\xb7\x05\xc4\xfd\x60\xaa\xe1\x5b\x2d\xa1\x2a\x7e\x74\xd3\xf8\x15\xab\xb6\xa2\xa3\x7a\x2b\x3a\xea\xe6\x67\xd6\xe2\x32\xea\x35\x3c\x88\x78\x4e\x79\x46\xde\x51\x0f\x75\x9a\xab\x3c\x3f\xdf\xb4\x26\x67\xa9\x3e\xfa\x85\x7f\xfe\x24\xbd\x8d\x7c\xac\x02\xca\x20\x4b\xe2\x32\x8e\x8a\x5d\x74\xe5\x78\x32\x37\xe8\x8e\xa0\x16\xba\x35\xf2\xd3\x64\xd7\x90\x28\x88\x6e\x31\x21\x43\x48\x6b\x6f\x6a\xd9\x70\x7a\xbd\xc1\xf7\xb9\x85\x0c\x86\x7f\x48\xc1\x98\x34\xdf\x02\x9f\x08\x67\xa0\xa7\x34\xfc\x95\x60\xc0\x9a\x4d\x92\x62\xc6\xbf\xb2\xc7\x34\x4d\xf4\x18\x00\x4d\x11\x76\xd1\x2a\x2f\xaa\xf0\x5e\xce\xb3\x57\x6c\x1a\xa8\xe6\xeb\x85\xd0\x8f\x2e\x1c\x9c\x9e\xfa\xd9\xb7\xaf\x19\xf5\x6c\xb4\xd2\xf0\x5c\x09\x26\x2a\x0a\x95\xcf\x63\x3a\xf7\xeb\x60\x93\xa8\x37\x4c\xc5\x93\x83\x93\x3e\x5a\xce\x3e\x01\xf4\x5b\x44\xdf\x82\x17\x86\xa6\xe0\x3d\xa4\x56\xb8\xf9\x77\x94\x5b\xcd\x9f\x53\x4e\xc4\xff\x1f\x37\x0b\x17\xc0\xcd\x3a\xe4\xd3\x7a\x22\xa7\x9f\x75\x6c\x4e\x4b\x4d\xab\x67\x85\x5a\x64\x4b\x21\x5b\x45\x96\x76\x8b\x92\x85\x90\x17\x26\xc6\xa6\x24\x24\x3e\xad\x64\x6d\x3b\x65\x9e\xa5\x71\xb4\xc3\x9b\xe1\xea\xc2\x38\x68\x55\xb1\x01\x19\xed\x19\xfa\x1b\x62\x01\x59\xad\x0d\xc4\xca\xdb\x23\xf5\x02\x7f\x67\x4a\x2b\x8f\x68\x78\x10\x11\x33\x6d\xb6\x45\x12\x0a\x41\xa0\x44\xe6\x1f\xf7\xf0\x4d\x97\x40\x21\xd7\x06\x7e\x4f\xf7\x0c\xdf\x53\x40\x00\xf6\xef\x19\x4f\xf3\x62\x61\x79\xdc\xdc\x4b\xe8\x9a\xc9\x6c\x68\xf5\x59\x12\xb4\x3d\xf9\x77\x35\x8e\x40\x2b\xc1\x82\xb8\xa3\x72\xfd\x9b\xf4\x1d\x85\x87\xb1\x35\x75\x7a\xf1\xc5\x26\x61\xbc\x8c\x4f\x8b\x7d\x50\xf5\xeb\x7c\xbc\x35\x7a\x2d\xcd\x2d\x35\xf7\x1f\x7a\x44\xd5\x08\xb7\xd4\x08\xf1\x8f\x11\x79\x1d\x9e\xe4\x52\x81\x37\x11\x98\x90\x12\x9e\x9f\xa4\xea\x7b\xd6\xff\x55\x6c\x80\x22\xc5\x4f\x4f\x44\x5c\xae\xea\xb0\x8d\xa2\x67\x73\xab\x33\x9a\x91\xa6\xc1\x4d\x95\xa5\x04\xad\x9b\xa2\xc8\xb3\x4c\xb4\xe8\x71\xd9\xbf\xa3\xdc\xa4\x7f\x47\xc1\x81\x76\x79\x39\xcb\xcb\x5d\x1e\x91\x7a\x1f\xd7\xe4\xe8\xa7\xd5\x9f\xe0\x93\x50\xe5\xd6\xbf\xc3\x5b\x0b\x9f\x29\xd2\xcc\x7d\x25\xec\x03\xe1\x23\xd4\x84\xdf\x9b\x0a\xcf\xfb\xf6\x55\x25\xed\x6a\x95\x62\x4d\x02\x4a\xc8\xb4\x65\x6c\xe5\x31\xed\xb6\xb0\x02\xc5\x49\x70\xa4\x20\xbd\x86\xc5\xc2\x1d\x6f\x3e\xa1\x1d\x91\x7f\xc8\x2d\xc4\x81\x89\x53\xd7\xb2\x46\x0e\x8c\xb1\x15\x3e\x56\xe5\x92\x1d\x14\x71\xd6\xb1\x0d\xc5\x9d\x01\xb8\x82\x6d\x0b\xf0\x87\xf0\x42\x1f\xf5\xe6\x94\xc5\xff\x8f\x82\xb4\x73\x10\xae\x9e\x35\xbe\xfe\x7b\xa1\x9a\x5b\xbc\xad\xa4\xc9\x40\xa4\x41\x33\xe3\x2f\x31\x86\x8b\x9b\xb7\x73\xec\x79\x24\xbf\x8b\x28\x85\xdf\x98\x1d\x63\xc0\x16\x8b\x68\x66\xac\x06\x98\xb7\xb5\xbc\x17\x19\x8f\xdf\x39\xe3\xa4\xea\xab\xe0\x5a\x60\x9c\x81\x77\x0c\x59\x23\x5e\xbe\xd9\x56\x55\x14\x49\x90\xc6\x03\xe6\x91\x7a\xa4\xe7\xc8\x0e\xd8\x77\x12\xe5\xe2\x76\x12\x76\x00\x54\x30\x3b\xa6\x9c\x15\x6c\x65\x46\x7c\x80\x6f\x30\xdb\x19\xcd\x9d\x5b\x0a\xaf\xbd\x83\xa0\xc4\x0a\x21\x8a\xbe\x85\x88\x86\x6b\x61\xe2\xb3\xd8\xaa\xfa\x49\xe9\xb5\x8c\x36\x2a\x36\x83\xc3\xae\x2e\x32\x2b\xda\xb2\xce\x7f\xad\x2b\xe1\x4f\xc9\x64\x6f\x9c\x75\x73\x33\xe8\xd9\xfc\x9f\xfd\x43\xd5\x10\x76\xc6\x39\x2e\x40\x5c\xd1\x12\x36\xf1\xaa\xcd\xcb\x2d\x43\xb3\x8a\xc1\xfe\x2d\x3f\x0d\x99\xa5\xb6\x80\xd0\xa0\xdb\x70\xab\x67\x8b\x5c\xee\x23\x25\x1b\x72\x7b\x8a\x5d\x51\xbd\xc5\x64\x83\x65\x1b\x5a\x61\xfd\xfa\xc8\x83\x44\x9f\x84\x13\x6e\x5f\x3e\xbf\x30\x65\x69\xfb\x83\x92\x77\x15\x04\xed\xeb\x4a\x32\xea\xba\xe6\xdd\xe5\xab\xdc\x2f\x16\xba\xec\x4f\x42\x05\xa3\xfe\x10\xa1\x0e\xd0\xcb\xaf\x8f\x7e\x6a\x32\x4c\x2e\xee\x3f\x24\x5c\x47\xd4\x8a\x52\x94\x56\xcb\x59\x6a\x52\x3f\x7b\x62\x3a\xd4\xc6\x75\x0e\x2f\xa1\x77\x7e\x79\x17\x8b\x03\xd9\xe1\x4d\x4d\xed\xd8\xdd\x52\x93\xa6\xb7\x94\xed\xff\x19\x2c\x67\x47\x77\x73\xf4\x39\x4c\x95\x00\x3b\x0b\xc6\xcf\x4e\xab\x30\x2d\x2d\x12\xf3\xca\xe9\x50\x55\xaf\xd5\x84\x01\xa8\x73\x83\xa8\xd6\x38\xbe\x3b\x26\x8c\x90\xa5\xfe\x44\x89\x6a\x9c\x52\x8c\xd9\x32\x33\x9d\x40\xb5\x22\x4f\x8d\xd4\x1b\x73\x2a\x7c\x46\x59\x1a\x0c\x9c\x8e\xad\xb2\x10\x53\x62\x1f\x57\x42\xe1\x89\xf5\xad\xa1\x60\x05\xac\x69\x43\xbb\x42\x6f\x4c\x94\xbd\x26\x5f\xd9\xad\xe4\x63\x2f\x10\x88\xe2\x6a\xe0\x25\xc1\xbf\xef\xaa\xa9\xcd\xef\x8f\x14\xee\x0f\xf6\x81\x2e\x04\x94\x10\xf4\x7e\x5e\x0f\x7f\xaa\x45\xd2\xaf\x73\x7d\x85\x2d\xe5\xdf\x4f\x6d\x5e\x2f\xbe\xa8\x11\x3a\x14\x27\xd8\xb5\xf1\x29\xef\x6b\x60\xf6\xda\xd4\xb6\x4d\xe4\x2a\x13\xf5\x6c\x67\x46\x0d\x3d\x30\x81\xdb\xd5\x0e\x0e\x93\x3b\x33\x52\xa6\x98\xdb\x5a\x35\xa2\x59\x71\xda\x89\x23\x53\xca\xa4\x14\x2b\xd1\x60\xb9\x8b\x2c\x8d\xcf\xb7\x4c\x87\xb8\x7d\xd5\x4f\xbf\xe0\x9c\xa4\x4e\xd1\xa3\x97\x9e\x53\x8d\x73\x79\x14\xe7\xd1\x30\xf1\xb3\x3d\x00\x91\xb8\x60\xe5\x93\x3a\x6a\x47\x3b\x31\xdc\xe0\x44\xe4\x7f\x3b\x54\x1a\xe6\x6f\xab\x26\x70\x27\xeb\x92\x1a\x9e\x9f\xad\xbf\xa5\x24\x52\x6f\xa9\x91\xc8\x35\x23\x63\xab\x08\xc0\xe0\x76\xf1\xf1\x16\xaa\x7e\x8f\x70\x7e\x87\xf3\x6d\xd2\x53\x72\xaa\x62\x4b\x73\x0e\x5b\xfb\x3c\xaa\x73\x99\x75\xc9\xbb\x7f\x56\xd1\x39\xce\x8d\x3c\x13\x69\xa6\x15\xfc\x92\x38\x51\xfe\xb7\x8a\xce\x74\x46\x5b\xec\x78\x28\xc5\xae\xdb\x62\x27\xbd\x4a\x4e\xf1\xc1\xe1\x76\xa7\xb1\x6a\x29\x88\x2c\xfd\x74\xcb\x8b\xaa\xe2\x05\x82\x88\xdd\x0e\x52\x3c\x14\xcd\x66\xfa\x0c\x31\x93\xab\x5d\x19\x55\x35\x6c\x65\xb8\x4c\x38\x5a\x9e\xcb\x76\xc1\x11\x87\x3a\x26\x59\x61\xef\x75\x67\x2f\xb9\xe0\x8c\xb3\x1f\x84\x7e\x6e\xef\xbc\x92\xab\x5d\xcd\xba\x36\x29\x4a\x1b\x73\x63\xc7\x11\xaf\x14\x55\x4b\x3b\x58\x90\x3b\x37\x4c\x34\x81\xec\x6c\x54\x37\x60\x73\xf7\x58\x19\x6c\xdc\x0d\x55\xf0\x38\xa1\x34\x15\x6e\x7e\x91\xc6\xc0\x9c\xb9\xdc\x0b\x4b\x73\xce\xa1\xcb\x93\x19\xfe\x54\x69\x41\xc4\xfd\xea\x23\x4d\x69\x93\xf5\x5d\x0a\xd2\x78\x38\x52\x28\xeb\x87\xaa\x89\xf6\x40\xb3\x3d\xef\x00\x07\xc6\x02\xfc\x10\x81\x5c\xb6\x50\xba\x9d\x7a\xcb\x07\x36\x75\xd5\xd1\x60\xd3\xbd\x3d\x5a\xf5\xcc\x3b\xc6\xb7\x10\x12\xb2\x47\xeb\x7a\xa6\xdf\x37\xd1\x0a\x5e\x45\xe7\x68\x7b\xc0\xb9\xdb\x7a\x5e\x57\x36\x88\x6d\x8e\xea\x0b\x69\x00\x1c\x28\xf9\xb8\xe5\x8b\x2f\xa9\x49\x8a\x49\xf9\x56\x45\xfc\x78\x46\xcd\xe0\x95\xa6\x9d\xb9\x19\x4d\x6c\x16\xd0\x18\x14\x49\x4f\x45\xd9\x7d\xc7\x69\x81\x2f\xc7\xb9\x6d\x53\x67\x58\xf5\x78\xaf\x4c\x70\x2c\xb7\xae\xc6\xc5\xe7\x0f\x36\x07\xd9\x60\x08\xc2\x9c\xcb\x40\x3e\x54\x36\x7e\x1f\xaa\x6c\xa4\xfa\xc1\xf2\x15\x66\x69\xb0\x1e\x65\xe8\xa9\x03\x17\x54\xeb\x99\x89\x0e\x3b\xe9\x69\x09\xb3\x80\x1e\x10\x1e\x2a\xb4\xd3\x44\x67\x98\x51\xbe\xea\x99\xa3\xc6\x82\x1c\x9d\x33\xeb\x77\x72\x36\x93\xfa\x9b\x26\x2f\x9e\xa5\x9b\xcf\x36\xd1\x14\x2f\x1d\xe3\xd2\x4d\xdb\x9c\x0b\xd5\x2c\xdf\x3f\xc7\xcd\x13\x97\x7c\x07\x8a\xee\xdb\xe7\x4c\x96\xe8\x9a\xb1\x51\x30\x25\x17\xa1\x04\xf4\x2d\xc0\x42\x33\x2d\xc5\x24\x3a\x47\xdb\x1f\x96\xf1\x17\xe8\x75\x40\x2c\xb8\x41\x79\x2f\xa7\xdd\x1a\x70\xbe\xa5\x95\xc7\x76\xa1\x31\xec\xbc\xb2\xaa\x55\x87\x97\x1a\xec\x4a\xa7\x61\xed\xc6\x98\xaf\x29\x9b\xcd\x8e\x49\x63\x9b\x6c\x05\x5a\x16\x1d\xd0\x52\x03\x1d\x91\x12\x7c\x30\xa9\xfe\xee\x24\xc1\xae\xa8\xdc\x2e\x1d\xf6\x6d\x9e\x0d\x21\x76\x88\x0c\x09\x43\x9f\xe8\x28\x07\x50\x54\x10\x07\xea\x3d\xea\x0d\xcf\x18\xa2\x47\xf0\x60\xd2\x2d\x9f\x38\x17\x85\x32\xeb\x67\x79\x9e\xad\xd1\x5e\xc0\xe1\x36\x54\x36\x2c\x6f\x8d\xbc\x63\xe9\x7b\x4a\x1f\x8d\x28\x72\x58\xe4\x75\x08\xf9\x53\x13\x9e\x65\x89\x2d\xa1\x58\x22\x32\xab\xb8\x30\x3c\xa0\x53\x80\x02\xb0\x4d\x9d\xc7\x43\xc1\x62\x7d\x08\x00\xc9\x95\x62\xae\x27\xfe\x70\x34\xf1\x76\x29\x7d\x8b\x53\x74\xb9\x1a\x93\xe5\x58\xa4\x90\x89\x74\x35\x4e\x23\xb6\x3c\x01\x2f\xe1\xbe\xe2\x28\xdc\xf7\x06\xb3\xa0\xd8\x10\xd1\xdf\xd9\x90\x83\x81\x87\x0f\xbb\x33\x52\xe3\xe5\xb3\x53\xea\xab\xd5\x8b\x6d\xd2\x32\x2e\xf3\x21\xbf\xd9\x28\x4e\xbf\x47\x9f\xc6\xc7\x5b\xba\x1e\x39\x19\x4f\x91\xa0\x10\x00\x1c\x2d\xe9\x8c\xc9\x00\x14\x7a\xb7\x69\x7c\x95\xff\xbf\x32\xa3\x39\xaf\x68\x15\x69\x27\x4b\xc5\xec\x42\x04\x34\x69\xc5\x89\xb2\x66\x4d\xf7\x88\x68\x2d\xe8\xb5\xe1\xed\xdb\x86\x2e\x26\x83\x93\xf4\xed\x91\x47\x5f\x9c\x42\x93\x24\x35\x78\xc9\x2e\x2f\xe7\x76\x5d\xb1\xc3\x4e\xe3\x7d\xe0\x13\xc5\x52\xb0\x2f\x9b\x7e\x55\xf4\x04\xfe\xb1\xfd\xe9\xc8\x47\xcb\x3f\x55\xf3\x71\x6b\x36\x59\x36\x39\x2c\x31\x81\x67\x5d\x1c\x29\xa2\xff\x9d\x70\xa2\x05\xe4\x5a\x9e\x77\x47\x7e\xa7\xe8\xb7\x4d\x89\x0e\x3c\x34\x54\xce\x2a\x12\xcb\x2c\x81\x50\x40\x94\x3e\x53\xf5\xd2\xc0\xa6\xa9\x85\x96\x81\x63\x04\x57\xf7\x10\x5b\xd6\x5f\xd0\x5f\x70\x1e\xf2\xde\x2f\xf0\x2f\xc2\xad\x16\x52\x87\xe7\x8e\xc0\xc0\x2f\xa7\x61\x3d\x1e\x1f\x14\xc9\x57\x0f\x6d\x5d\x54\x3d\xab\x35\x93\xe7\x26\x2d\xb5\x39\x16\x7f\x3c\xba\x0b\xaf\x85\x6a\x66\x0a\x1f\xcf\xff\x30\x11\xa3\xb3\xc8\x68\xff\x49\x24\xfb\x32\x0e\x2e\xeb\xa5\xda\x1c\x97\x63\x49\x63\xdd\x74\xc0\x92\xaf\x65\xf5\xac\x62\x96\x75\x59\x7e\x03\x71\xe8\xa8\x52\x09\x3b\xaa\x30\xe8\xc4\xae\xda\xa4\x78\x94\xbe\x00\xee\xcc\x4d\xbc\xef\x28\xdd\xee\xaa\x1c\x21\xa0\x7d\x1b\x5d\x0c\x86\xcc\xdc\xbc\xc2\xd2\x1c\xc7\x66\xd8\xc8\x22\x45\x7a\x2b\x54\x48\x15\x76\x2e\x79\x2a\x2a\xa7\xe1\x8a\x16\x6b\xef\xee\x14\x90\xbc\xb8\xb4\xd8\x4c\xed\xaa\x65\x99\x12\xc9\x4b\xbd\x00\xf1\x15\x25\xd4\x5e\xa5\x05\xfd\x61\x14\x27\x81\x02\x90\x27\x64\x16\xa7\xdd\x2d\x5f\xd8\x7f\xa8\x59\xf4\x72\x93\xae\x34\x26\xe6\x5c\xfd\x90\xd4\x51\xfc\x01\xb1\x0e\x7c\x5c\x79\x03\xac\xd8\xe2\x51\xa5\xc2\x84\x8e\xb1\x24\xbf\xf4\xe7\x64\xc2\x51\x85\x28\xcd\x96\x3e\x46\xf1\xc3\xb5\x17\xab\xb7\x10\x7b\xd9\xff\x1c\xaa\x5e\xd4\x05\xe5\xc2\xb5\x8d\x00\x21\x67\x03\xe1\x51\x9f\xc9\xd6\xfa\xde\x7c\x6f\x43\xf9\xdb\xb1\x5f\x34\x1b\x7e\x60\x8d\xb2\x58\x52\x2d\x55\xc8\x94\x11\xf2\x40\xb9\x6d\x1e\x84\xbf\x54\x4b\xda\xcc\xa2\x61\x61\x39\x32\x61\x1b\xfc\x2c\x54\x23\x8e\x48\x74\x3d\x78\xb3\x85\x3f\x53\x10\x81\x06\x3b\x37\xcf\x1b\x23\x86\xff\x4f\x74\xe3\xc0\x41\xbd\xa4\x1c\x57\x59\x00\x1a\x3f\x73\xad\xee\x2b\x0c\x12\x41\xc2\x59\x06\x5d\x8d\xaf\xdf\x98\x90\x99\x2c\xb2\xbc\x44\x84\x13\xd7\xbc\xc0\x89\xeb\x1f\x9f\x62\x21\xee\x3f\xd4\xec\xdb\xdc\xce\xfa\x82\xe3\x69\x34\x76\xc5\xaf\x54\x17\x75\x9e\x84\xb0\xa1\x67\x63\xaf\x29\x66\x6a\xd2\x29\xf6\x28\xd1\x1d\x9e\x4a\x11\xa6\x91\x0f\x94\x8f\xa2\xd4\xa0\x7d\xe9\xf5\xa7\x5a\xbe\x91\x77\x9f\xb7\x6b\xbc\x41\xb0\xd5\x44\xcc\x44\xa6\x0d\x32\xc3\x4f\x8d\xab\x65\x83\x3f\xc5\x9a\x0e\xe0\x5c\x3e\x18\x79\x8c\x7c\xf3\xef\x02\xdc\xc1\xda\xbc\xaf\x06\x4c\x7a\xd6\xac\xae\xef\xf0\xbb\xcb\x06\xa5\x73\x98\xd5\xbc\xa0\x8c\x09\x5f\xc7\xd7\xe4\x7f\x08\x55\xd9\x43\xa1\x0a\xd7\x72\xd5\x35\x2c\xc8\xd1\x98\x7b\x74\x88\x32\xa0\x80\xf2\xf1\x68\xc2\x33\x38\x62\x06\x2b\xc0\x8a\xef\xe3\x93\xf8\x44\x75\xba\xec\x30\xcf\x06\x76\xb7\xb7\x13\x79\xa0\x26\x57\x79\xaa\x5c\x8c\x31\xbc\xda\xd4\xef\x3f\xd9\xd2\x8d\xd9\x3f\xa1\x47\x87\x94\xe3\x1a\x1e\x09\xcb\x35\x62\x75\x82\xed\xfd\xa1\xc2\x9f\x31\x8d\x0c\xc8\xf1\xc9\x96\x2f\x08\x8a\x5e\x6e\xd7\x3a\xc9\x3a\x92\x31\x04\x40\xa8\xed\xf2\x71\x28\xce\x76\x66\x30\xc8\x6d\x14\x83\xd6\x18\x38\x01\x39\xf4\x15\x65\xea\x58\x2a\x99\xc2\xda\x7e\x9c\x76\x93\x75\x6a\xe1\x60\xed\x9d\xa5\x8b\xc6\x00\xa5\x68\x65\x3b\xb3\x62\xe7\x93\xf5\x50\x2d\xbe\x5e\x6e\x94\x8e\xd6\x4d\xe5\xe7\x71\x53\x95\xbf\x49\x5c\x0e\xf3\xee\x7a\x43\xb9\x7a\x08\xd4\x24\xca\xbc\x81\x9f\x99\x57\x7f\x3e\xea\x71\xa1\x85\xf5\x00\x3b\x69\x3e\x56\xdb\x28\x3a\x5c\xc5\x6c\x55\x60\x60\x79\x8d\x71\x97\xf9\x04\xf7\x5f\x28\xff\xc1\xc2\xc2\xe6\xd5\x91\xaa\x14\xee\xa9\x2c\xc4\x44\x91\x25\xa4\x75\x71\x69\xd1\x75\x1a\x7d\xc0\xbc\x14\x3e\xa7\x1e\x8c\xc9\x6d\x2f\x23\xd7\x9d\x5d\xd5\x4d\x10\xbf\x74\x3f\x83\xd4\x68\x29\xdf\xff\x53\x7a\xf8\x8a\xe5\x4e\x58\x31\x82\xee\xbb\x98\xa1\x7a\x8a\xda\x93\xbf\x89\x20\x2e\x1a\xdc\x75\x1a\x68\xd5\x05\xc4\x69\x77\x86\x7e\x10\x38\x32\xec\x9e\xb1\x0d\x20\x77\x54\x82\xe7\x92\xa5\x1d\x77\xc2\xe9\xd9\xb0\x64\xcf\x68\x0e\xbf\xd8\x4d\x36\x50\x4c\xe1\x69\xc2\xe1\x42\x1a\x6d\x75\xf6\x46\x51\xd6\xb7\x30\x67\x42\x31\xcd\xbe\x6b\x28\xb2\x40\x12\xe6\x0f\x56\xde\x3a\x97\x94\x74\xcf\x6d\x97\xa9\x88\x90\x49\xe0\xe7\x24\xd1\x42\x14\x5d\x51\xf7\x83\xbd\x78\xd9\xf7\x99\x58\xeb\x45\x51\x16\xaf\xab\xba\x3a\xb7\x91\x8d\x57\x65\x2c\x80\x75\xae\x95\xd7\xf9\x07\x93\x55\xef\xf2\xf2\x4e\x2c\x50\x81\xb3\x7d\x33\xec\x71\xba\xbd\x8e\x4e\xb0\x6f\xff\xc4\xb0\x14\xca\xaa\xb3\x5a\x34\x67\x43\x0b\x90\xdc\x9c\x02\x08\xaa\xfc\x81\xf4\x2e\xe2\x12\x39\xb5\x14\xb3\x81\x13\x5b\xf1\x72\x29\xcb\x59\xda\xb1\x45\x09\x8f\x24\x19\x48\xd1\x63\x27\x35\x53\x9d\x86\x8c\xb4\x0b\x2d\x52\x71\x65\x42\x6c\x62\x2b\x06\xb8\x6f\x5f\xb3\xc8\x06\xbd\xb8\x28\x09\x5e\x05\x07\xaa\xd6\x68\x7d\x6b\x4d\x74\xe8\xf9\xa6\x7d\x79\x90\xc4\x51\x5c\x26\xe0\xe3\xb8\x76\xf3\x92\x3b\x9e\x1a\xf2\xdb\xb7\xaf\xd9\xc9\x06\x56\xa1\xca\xb7\x26\xec\x8e\xb4\x5f\xa4\xc2\x43\x8b\xbe\x49\x92\xc7\x03\xa7\x45\xc0\xaa\x06\x3c\x7d\x42\xe0\x84\x2b\xb2\x1c\x5c\xce\x7e\x60\x02\x5c\xe2\x21\xe3\xd5\xfb\xa3\xd1\x84\xd9\xba\xc7\x18\xee\x28\x25\x80\xdf\x42\xe4\x10\x29\x2b\xad\x6b\x85\x57\xda\xe5\x1a\x07\x44\x29\xfe\x4f\x42\x85\xf1\x5f\x0c\x1f\x53\x76\x36\x1d\xc6\x08\x9c\x20\x99\x17\x27\x9b\x7a\xdb\x7f\xa6\x59\xd8\xaa\xe8\x33\x6c\x0e\x00\xf0\x99\xbb\xd2\x7c\xa2\xe6\x99\x4a\x6b\xf2\x06\xdd\x10\xe4\xb9\x17\xd4\x15\xdd\xc0\x2d\x45\x99\xb5\xad\xe5\xfa\x5b\xa6\xcc\x65\x68\x15\x4b\x17\x88\x08\x2b\x7d\x85\x1e\xa2\xbe\x52\xc3\xba\x6e\x9a\x6e\x1e\x47\xc3\x84\x8c\xde\x95\xee\x10\xc4\x9c\xe4\x6a\x95\xbe\x5e\x99\x0d\x76\xd2\x9b\xeb\xa8\x93\xf3\xf3\xdc\xb1\x46\xb5\xc7\x06\xd9\xb8\xc9\xd8\x37\xde\xa2\x47\x89\xa8\x02\xc0\x90\x8f\x75\xaa\x50\xab\x1b\xd6\xce\xac\x0b\x15\x4a\x00\x55\xc4\x22\xbf\xe7\x5b\xca\x79\xb6\x9c\x0d\x53\x38\x57\x4a\xef\x85\x2e\x41\xeb\x7e\xe3\x3d\x7f\x84\x62\x81\xd0\x86\x3d\x34\x17\x0d\xf3\xd2\x00\x1b\xfe\xba\xcb\xa0\x03\xa7\x48\x70\xa1\x6e\x3a\xab\x6f\x7c\x2c\x73\x64\x3a\x57\xc8\x69\x1d\x24\x12\x05\x9e\xf5\xe8\xfe\x78\xd2\xba\x56\x8b\x50\x69\xa6\x35\xdb\xea\xf2\xef\x4c\x90\x43\xb3\x95\x62\xb7\xf2\x8d\xbe\x87\x45\x8e\x5b\x7e\x74\xa4\xe0\x32\x48\x51\x32\x4e\x4c\xf7\x1f\x28\x1f\xc0\x44\xfc\xe9\xb3\x6a\x66\xfc\xdf\x60\x08\x52\xd5\x0d\xd2\x01\xb8\xa9\x05\x26\x2e\xd7\xd1\x87\x8a\x58\x9c\x52\x81\x17\x7d\x46\x9f\xcd\xc7\x6a\xec\xb6\xfa\xcf\xac\xca\x48\xcf\x8f\x14\x0b\xff\xbc\x62\xa3\x7d\xaa\x27\x9c\x42\xaf\x7e\x7c\x7e\x4a\x8e\x44\xa0\x8e\xc2\x9a\x6e\x6e\xfa\x4a\x61\x74\x43\x2f\x9a\x0d\x65\xd0\xdb\x36\x49\x92\x01\x90\xf1\xb8\xe3\x39\x40\x5c\x7c\xa2\x08\x8b\x51\x2f\x8f\x51\x5f\x63\xcf\x66\xef\x4a\x3e\x51\x40\x5c\x3b\xcf\x56\x50\x2c\xb8\xc1\x42\x77\xd3\xaf\xd3\x0d\xe1\x82\x93\x00\x23\x64\x29\xff\x96\xbe\x27\x3e\xf4\x92\xfa\xd0\xbe\xc9\xf1\x9c\x8f\xf8\xf9\xbf\xc3\x73\xdc\x16\x9a\x19\xab\xc5\x8a\x02\x19\x1c\x69\x30\x0b\xf0\xff\x6f\x68\xb5\x57\x16\xdd\x75\x33\x6d\x0e\x2c\xf8\x0e\x15\xf1\x58\x3d\x3f\xdd\x52\xb2\x8c\xe3\x50\xf1\x2a\xda\xb4\xbf\xbb\x35\xe6\x73\xc3\xa3\x13\x21\x92\x5b\x63\xd8\x71\x90\x48\xf0\xb1\x12\x93\xcb\xe3\x2e\xc2\x16\x4a\xc0\x13\x8a\xf7\xc8\x57\x89\xec\xfb\x7b\x53\xeb\xec\xd0\xf3\xcd\xc4\x9a\x55\x4b\x5d\x7d\xa4\x0d\x1b\xa1\x27\xdd\xa2\xee\x94\xf9\xce\xc7\x54\x03\xc1\x42\xa2\x04\xbc\xae\x9d\x20\x6c\x20\x59\xb8\x45\xdc\x04\x7c\x1e\x3c\x91\xf1\xed\x1f\x27\x5a\x05\x32\xfc\xbb\x58\xa3\xd2\x8c\xa2\x6f\x8f\x9f\xda\x03\xd4\x9b\x3b\x5d\xa1\x9f\xc3\xab\x82\x7f\xd6\x8f\x8b\xb2\x50\x85\xf5\x43\x55\x58\x3f\x9c\x48\x61\x5e\x8e\x2d\x62\x09\x6e\x2a\x72\x73\x3e\x0e\xbf\xa0\xcb\xd7\x32\x1f\x46\xe5\x30\x8f\xd3\xee\x0e\x0f\xbe\xb3\x30\x87\xcb\x1c\xab\xaf\xc7\x27\x74\x7b\xb0\x02\x8f\xaa\xd5\x78\x14\xc9\xaa\x50\x3a\x3f\xaf\xb1\x38\xa1\xbf\xeb\xdc\xe8\xf6\xed\x97\xe3\x5a\xca\x54\xdb\x76\xe3\x94\x1e\x11\x36\xc7\x3b\x88\x24\x48\xc2\xd0\x34\x16\xe9\xff\x3a\xb5\xff\x61\x7b\x98\xb7\xd9\xcf\x08\x1f\xf3\xbf\xd0\x0a\xe1\x63\x55\x4a\x24\x36\xed\x96\x3d\xe4\x61\x68\xfe\x9c\xa7\x14\x8f\x8f\xc3\xe7\x34\xf2\x10\x25\xd6\xe4\xc6\x81\xcd\xf2\x33\x81\x53\x85\x3f\x5f\x23\xbb\x76\x84\x55\xae\x05\x89\xab\xd3\xa3\xac\x61\x43\x26\x71\xba\x22\xbf\xc2\xa6\x61\x23\xa5\x7e\x77\x7c\x8a\x94\xbf\x34\xd7\x8c\xb2\xa2\x6f\x89\x04\xe3\x88\xa5\xa7\xd4\x96\xe2\xbd\x93\x22\x33\x88\x4b\x93\xc4\xaf\x58\x9e\xb9\x13\x15\x1a\xdf\xf2\x60\xe3\x51\xd1\xe0\x50\x5a\x35\xf8\xc2\x02\x28\x52\x74\x11\x4d\xfc\x9a\x91\xb0\x08\x33\xcf\x04\xb9\x4f\xc8\x58\x68\xc2\xb0\xb8\xe7\x3e\xeb\x93\x85\x61\x51\x15\x66\x71\x9b\xf9\xcd\x28\x32\xee\x2b\xcb\xba\x5a\x0e\xe9\x20\x4b\xe2\xc8\x36\x94\xba\x19\xf0\x01\x36\xbd\x51\x1e\xf6\x97\xa7\xa4\xe6\xe7\xe7\xab\xd2\x88\x06\x3b\x11\xd6\xfe\x90\x02\xa1\x13\xcd\x72\xc9\xea\xa5\x09\x23\x9f\xc7\xd5\xab\xb5\x1a\x65\x33\x2a\xdd\xe4\xdb\x26\x2b\x35\x50\xa2\xd3\x14\x00\x44\x8d\xda\x03\x92\x30\x2c\x76\xbc\x92\x3a\x55\x86\x3a\x3c\x92\xc1\x0e\xfa\x34\xc4\xea\x87\xc8\xdb\xf9\xa4\x4e\x67\x38\x5b\x5e\xb6\x69\x21\x2f\xa6\x38\xc7\xf9\x06\xbc\x57\xc7\xb3\x9d\xa1\xc9\x3b\x81\xe3\x42\xef\x3e\xa3\x79\x1f\x67\xea\x84\x65\xaa\x5c\xaf\x6b\xa0\xd4\x0d\xf6\x19\xb2\x49\x3e\x9e\xba\xf7\x07\x16\xaa\x34\x4c\xcf\x3e\x8f\xb4\x80\xb9\xaf\xd7\x97\xab\x5d\x77\x58\x36\xaa\x27\x03\xd4\xf8\xe4\x84\x23\x77\xf5\xf4\x64\xee\xa7\x06\x76\x4c\xb2\x76\x3b\x96\xa2\x50\x22\x97\x0e\x82\x7e\x23\x36\x79\xdf\x76\x58\x58\x0e\x41\xe8\x16\x00\x4a\xf0\xec\xee\x28\xfa\xe0\x1d\xda\x0b\x11\x15\xff\x3b\xdc\x1b\xfe\x8d\xa9\xb4\x99\x14\x98\xb3\x24\x31\xa5\xcd\x99\x57\x83\xbc\x65\x27\x98\x7e\xec\xe1\x48\x7f\x10\x5b\xd8\xb6\xf1\x63\x4a\xe2\x3d\x49\x02\xb5\xa6\xbe\x8b\x97\x94\x4f\xa6\xc6\x2f\x16\x9f\x3f\xd8\xcc\x6d\x9a\xad\xa5\xb2\x38\x9c\x07\xf6\xfc\xbc\xdb\x71\x6a\x34\xb3\xe3\xb4\x33\x8c\xec\xc4\x10\x3e\x45\x3c\x99\xc2\x9f\x68\x72\xc5\x83\xd8\xa6\xe5\x84\x2c\xc0\x75\x95\x90\x9c\x53\xca\x4c\x9f\x69\x22\x68\x92\x45\x20\x82\x8a\x0a\x1f\x5d\x21\x32\x22\x20\xa1\x7c\x1c\x6a\xd9\x3e\xe5\xe5\x65\x8a\x38\x32\x09\x6c\xc0\x58\xb2\xf4\xbf\x39\xa1\x84\xe7\xef\xa8\x40\xa5\xb9\x1c\x24\x40\xd1\x4e\x98\xb6\xad\x54\x26\xab\xcf\x17\xcd\xaf\xe9\xc5\x73\xb0\x69\x96\x97\x4d\x9c\x2b\x29\xf1\x37\x94\x94\xf8\x1b\x53\x3b\xd1\xfc\xfc\xc1\x66\x69\x5f\x2e\x63\x66\x62\x23\xf0\xdc\x54\x41\xe8\xa6\xc3\x40\x3a\x66\x48\x5e\x01\x81\xd2\xfb\x39\xad\x9c\x3c\x4e\x6b\x3b\xc0\x38\x59\x35\x0d\xdf\x3b\xbc\xac\x54\xc0\xb8\x53\x2d\xee\xb9\x82\xfe\xb5\x4d\x52\xc6\xfd\x2c\x67\xd9\x5e\x81\x55\x15\x49\x8c\x36\x76\x6c\xf8\x1f\xa9\x7e\x4f\x6a\x57\x4d\xc7\x68\x62\xef\x75\x45\xec\xbd\xae\x4c\x8c\xf2\xac\x60\xcc\x52\xfb\x62\x88\xc0\x47\x0d\xc9\xb9\x63\x13\x4a\x0d\xd8\x49\xc1\xb9\x2f\x55\x1f\x25\x92\xbc\x7e\xb9\xc4\x49\xb2\x97\xba\x76\xa2\xf0\x43\x8f\x0e\x78\xda\x47\x23\xa5\xca\x71\x55\x0d\x0d\x7c\xa6\x9a\xfa\x79\xbc\x6a\x92\x02\xfc\x45\x91\x31\xa0\xe5\x87\x24\x10\x88\x97\xf4\x07\x94\xfa\x35\x26\x73\x10\x48\x3f\xa3\xfc\x19\x30\xca\xb6\x96\x56\x44\x50\x0b\xfe\x9e\x2e\xb6\xdf\xaa\xe3\x8a\xe5\xa6\x23\xd6\x70\xae\xcd\xed\xda\x8e\x37\x27\xe0\x9d\xad\xd0\xc9\x57\x9b\xb6\xd3\x95\x26\x30\xd2\x87\x57\x43\x95\x57\xbc\xaa\xa7\x13\xe2\x7e\x9c\x98\x3c\x59\x9f\x51\x9e\x99\x97\x69\x53\x13\x51\xf9\xea\xa3\xf8\xff\xd3\x5b\x36\x21\x93\x3b\xf1\xb1\x51\xc6\x92\x16\xf2\x9e\xd1\x42\xe2\x93\xf0\x99\x89\x61\xfb\x38\x77\xfe\x18\x00\x61\xdf\xd4\xb6\x1e\x6f\xba\x8d\x25\xb5\xf9\xaa\xd8\x4a\xa1\xeb\xc1\x38\x1a\x5a\xc0\x8d\x16\xa1\xb2\x8c\xa6\x52\x44\x10\xe5\xbf\x9a\xea\x71\x90\x98\xb4\x68\x68\x98\x4b\xf9\x9b\xfd\x10\x7f\x57\xa6\x0d\x6b\x08\x1c\xcb\xc3\x97\x62\x91\x2a\x45\xb9\xab\x09\xe2\xe7\x46\x13\xa8\x8b\xea\x62\xc7\x51\x2f\x2e\x0d\x53\x33\x80\x1e\x7c\x8a\x7d\x82\x4f\x14\x51\x3f\x1d\xf6\xdb\x36\xdf\x49\xcf\x0e\x9b\x2c\x4b\x19\xf1\x09\x82\xac\xa8\x8d\x55\xdf\x17\x9f\x7e\x8a\xd6\x26\xd6\xe9\xd9\x91\xb2\x91\xc7\xcc\x2f\xff\x50\xcd\x98\x66\x33\x4e\xa3\xdc\x9a\x82\xa4\x64\xfd\x08\x9b\x6f\x72\x01\x67\x75\x12\x60\xfb\xf6\xb9\x36\x56\xcd\xb2\x2d\x06\xd2\x21\x03\x4a\x79\x46\x21\x96\x5b\x4c\x7c\x0b\xf4\xc7\xd4\x90\xaa\x9b\x58\x9d\x9a\x77\xa8\x52\x64\x33\xec\xc4\x36\x8d\x2c\x47\x64\x65\xad\xec\x93\x20\x65\x1b\xd3\xcb\x86\x49\xe7\x09\xdc\x73\x7c\xa9\x93\x88\x1b\xce\x3f\xcd\x19\xc6\x7e\x18\x2a\x43\xed\xab\x20\xf0\xf3\xbf\xd0\x1d\x56\x52\x79\x32\x68\x38\x8b\xa6\x16\xc3\xe2\x74\xb7\x00\xf2\x31\x1f\x18\x98\x1a\xf6\x35\x27\x2b\xe2\x5e\x9e\x87\xea\x99\x3c\x1c\x79\x03\xe0\x63\x23\xc5\xe6\xde\x50\xc0\x5d\x61\x2d\x1c\x4c\x51\xbf\xf2\x14\x2d\x73\xb6\xf0\xb4\xf9\x5f\x68\x40\x51\xc8\x5c\x8a\x2e\xde\xcd\xad\x75\x39\xa3\xa0\x42\x81\x53\x15\xb8\x54\x23\xc4\xb4\xc8\xf3\xb3\x0e\x81\x12\x17\x73\xcf\x1b\xbd\xa0\x28\xa6\x2f\xd9\x34\xb7\x65\x29\x52\x6e\x08\xcf\x9b\x78\xae\x7c\x12\xfe\xdd\xcf\x29\x00\xa3\x57\x6c\xd4\xcb\x8a\x24\x5b\x35\x2b\x31\x2c\x4c\xb1\x57\x9d\xd7\x38\xf9\xf9\x1a\x88\x6c\xb1\xf9\x52\x16\xb3\x38\x2c\xfb\x3e\x2a\xb3\xa5\xe9\x62\xeb\xd0\xf3\xcd\xde\x30\xcf\xe3\xc8\xb0\x30\x36\x9b\x4b\x50\xd4\x16\xa3\x89\xba\xa6\x4a\x94\xe5\x69\x95\x0e\xe0\xdb\x71\x5e\x89\x22\x5d\x92\x4c\xd7\x47\x2b\xab\xc2\x59\x24\x6b\xb1\x39\x63\xcb\xe1\xe3\xba\xc1\xc2\xd2\x24\x2b\x9c\x20\xb1\x13\xbe\xd2\x79\x04\xf6\x22\x24\x80\x47\x5d\xaf\x23\x63\x54\xd5\x79\xc1\x3b\xc2\xd5\x71\x95\x10\xf7\x6d\xe2\xe8\x83\x62\x96\x48\x17\x3e\xed\x67\xfa\xb5\xfd\xff\x34\xf0\x17\xca\xec\x01\x3e\x51\xc0\x56\xc7\x96\xb6\x0a\xe0\x16\x3d\x26\xa1\xb0\x29\x1f\x43\x88\xc5\xb8\x7d\xd3\x51\x5d\xde\x53\xdb\x6d\xcf\x44\x2b\x36\x6f\x28\x66\xe9\x15\x25\x31\xc8\x68\x83\xa8\x5e\x6c\xdd\xe5\x16\x97\x16\x9b\x85\x59\x43\x99\x8d\x77\x3a\xc0\x86\xcf\x27\x2d\x79\x1c\x65\x55\x26\xe7\xb2\xdb\x88\x2c\x0d\x5d\x38\x9f\x4c\xb0\x1c\xe2\xdc\xcc\xaa\x24\xfe\x9e\x6a\x1e\x7f\x57\x4d\x58\x73\x16\x85\x34\xe9\xf7\x10\x41\x10\x34\x2e\x4c\x6d\x8d\x87\xe7\x16\x9a\x69\xd6\xf0\x16\xe0\x23\x4a\x0a\x31\xcb\x73\x3e\xf4\x5a\xcb\xb5\x50\x85\x1d\xe6\x59\x3b\x4b\xd1\xa8\xc6\x5a\x3b\xaa\x17\xde\x51\x47\xb4\x4d\xb2\xb5\xdd\xde\x5d\x7e\xc7\xd8\x73\x3d\x1b\xad\x60\x61\x61\x93\x6d\x06\x64\xa4\x91\xf2\x48\xe7\x49\x5e\x7d\x01\x5c\x05\x2c\x6b\xd0\x86\x7d\xa8\x8d\xeb\x36\x7d\xe7\xf0\x1f\x7c\xb9\xa5\x19\x4a\x35\x8e\x30\xc3\x34\x8b\x58\xc9\x4e\x14\x46\xe8\xa2\x45\x7a\xc4\x83\xb5\x66\x6f\x7f\x6f\xe0\x61\x4b\xa4\x19\x7c\x5c\x27\xac\x9c\xd0\x1e\xa9\x8c\x8e\x3f\xd0\x8a\x8d\x1f\xa8\xfc\xbf\x6b\x78\xf8\xb2\xa1\x0c\x45\x18\xb9\x17\xf4\x90\x6e\x09\x4b\xc9\xa9\xcc\x28\x4e\xcd\xb0\x3b\xcc\x4d\x02\xec\x56\x66\x35\xb5\x27\xde\xd6\x25\x79\x60\xa1\xb9\x3c\xe4\xe7\x24\x06\xaa\x3e\xed\x7e\x67\xaa\xd0\xdb\x7f\xa8\x99\xda\xb8\xdb\x6b\x67\xb9\xd3\x73\x64\x79\x62\x65\x9a\xf2\x50\x11\x02\xee\x28\x28\xa1\x5d\xc5\xf3\x3d\x08\x47\x58\x49\x1f\x20\xcb\x73\x03\x5b\x4b\x73\x2c\xcf\xb0\x1d\xcf\x0a\x25\x0f\x73\x68\x10\x58\x18\x66\xc4\x3b\xbb\x49\x5b\x11\xf0\x40\x4c\x2e\x39\x8e\xff\x82\xf8\xe9\xdd\xc0\xac\xb2\x70\xa6\x68\x10\x0c\x55\xed\x6d\x35\x9f\x7c\xdf\x31\xf0\xd6\x4c\x9e\x5a\x82\xe2\x8f\x68\x37\xf5\x45\xad\xf5\x2b\xd8\xcb\xaf\x2a\x9f\x81\x2b\xda\xbd\x6d\xe7\x94\xd5\xd7\xe1\xb9\xc5\x66\x9c\xae\x9a\x24\xee\x20\x66\xba\xb1\x81\x89\x79\x79\x67\x76\x50\x05\xaf\x89\x19\xa1\x03\x0b\xcd\xff\x64\x27\x7d\x77\xac\xf9\x77\x28\x20\x6c\x5e\x55\x95\xe8\x76\xa2\xba\x20\xb6\x3d\x42\x0c\x29\x1d\x8c\xd9\x08\x17\x37\x53\x32\xd3\x3a\x47\x85\xc8\xa4\xa6\x13\x33\xd2\x28\x64\xc5\x09\x93\x03\xdf\x23\xca\xf2\x8e\xcd\x6d\x67\x87\x37\xbb\x7e\x55\xc1\xd6\xaf\x63\xb4\x0c\x35\xff\x59\xe5\xd1\xf3\x1a\xd5\x1f\x7c\x1c\xaa\x1d\xf7\xbc\x16\xd8\xb4\xc5\x1e\xdf\xbf\xbc\xa4\x04\x81\xb7\xd3\x1c\x85\x22\x58\x4a\x7b\xef\x63\x84\x08\x67\xb0\xeb\x5a\x6b\xc7\xfd\xa4\xec\xcb\xcd\xb1\xca\x9e\x50\x94\x63\x1f\x3d\x36\xf2\xa6\xcd\x8f\xfd\x2d\x60\xfe\xe8\x3a\x31\x25\x08\x9d\x96\xab\xaa\xc9\x1f\xf7\x87\xc9\xb0\xc0\xa4\x9a\x00\x09\x1e\x9b\x43\x26\x8a\x80\x76\x43\x17\x31\x36\x2d\xe2\x32\x5e\xb5\x3b\xe9\x72\xc5\x63\xd9\x5b\x8d\xf2\xce\xe4\xf2\x03\xa7\xc4\x73\x5e\x49\x32\x32\x9d\x8d\x3d\x08\x46\x6a\x5a\xfb\xec\x14\x7c\x45\x62\x4a\x51\x2f\xb6\xcb\x81\x87\xd0\x61\xa4\x28\xaf\x4f\x4d\x4b\xbf\xb4\x89\x5d\x8d\x0b\x01\x5a\x58\x84\x54\xb5\x50\xb5\x55\xb1\xa1\x61\x66\xe4\xc8\xae\x5a\xd1\xdd\xfa\x3d\x8e\xe3\x5a\x88\xd2\x1b\x7b\xa5\x87\x8a\x2a\x7d\x5f\x79\xa4\xed\x18\x7b\xfe\x4d\x9b\xec\xdd\x4a\x12\x0a\x92\x6d\x84\x02\x1d\x10\xbb\x2b\xd0\x3b\x46\xc7\xf7\x76\xe8\x71\x3d\xbe\x95\xc2\xd2\x54\x59\xf0\x79\x6e\x9c\xf3\x99\x02\x6a\xdb\x89\x89\x56\xfa\x26\x4e\x98\x36\x20\xdf\x80\x7e\x59\xbe\x9b\x4b\x6a\xe2\x68\xa5\xe1\xf3\x98\x1d\x63\x45\xf8\xc5\xa2\x45\x85\xf5\x78\xcb\xa7\xc7\x6b\x71\xd2\x21\x63\x68\x40\x09\x17\xa8\x4a\xe1\xe3\x50\x85\x1e\xf6\x2d\x97\xd9\x42\x9f\x89\x14\x71\xda\x4d\xec\x2c\x45\x33\xe7\x92\x5c\xbd\x6b\xa2\xa7\xe3\xf9\xc9\xe0\xfc\x01\xfd\x85\x6f\x9f\xb8\xfc\x3e\xee\xd3\x3f\x6b\x78\x2c\x7b\x93\xe8\xba\x9b\xaf\xa9\x77\xbc\x6d\xcb\x35\x6b\xd3\x1d\xb8\x5b\x4a\xa9\x42\xf2\xa8\x6b\x8a\x2c\xae\x47\x9f\xb7\x8d\xd5\xb8\xd8\x29\x2d\xbf\xf3\x58\xab\x0e\x8a\xca\x6d\xdf\x76\xc0\x98\xd1\x71\x5c\x74\x1c\x9c\xa9\x4f\x96\x24\xf1\x32\x98\x19\xce\x7f\x6f\xc1\x6b\x3e\xd5\x19\xc4\xe5\xa6\x3f\x30\x13\x59\xf7\xa6\xca\xba\x37\x6b\x2d\x9a\x4d\xe7\xa5\x61\x51\x82\x74\xbb\xc0\xc9\x15\xae\x88\x8f\x95\x7a\x4e\x6e\x4b\x9b\x7a\x7f\x2e\x17\x9a\xbc\x18\xc9\x45\xb5\xbe\xe2\x74\xd5\xa6\x70\x62\x9b\xf1\xaa\x6c\x27\x94\x7b\x27\x97\x7e\x7c\x12\xea\x36\xd3\x33\x8a\xb7\x6c\x3a\x36\x2f\x7a\xf1\x00\x08\x10\x86\x3f\x3f\xd6\x74\x1e\x0a\x81\x1e\x71\x97\x10\xbe\xbd\xa5\xa4\x65\x58\x7d\x5f\xb6\xb1\xc0\x29\xce\x7e\xac\xcb\x4c\x1a\x5c\xde\xbc\x3d\x12\xa2\x5e\x91\x0d\xcb\x9e\x35\xd5\x0d\xc2\x4e\x21\x5f\xd3\x93\x1e\xb4\x34\xde\x9a\xc9\xab\xe4\xd7\x73\xdf\xae\x68\x92\xe4\x15\xe5\x3b\x57\xf4\x4c\x3e\x48\xd6\x55\xad\x03\x01\x35\x3e\xae\xb3\x22\x1e\xd8\x68\x98\xc4\x26\x6f\xa8\xb9\xf6\xef\xd1\x17\x01\xbd\x70\x7b\xcb\x37\xca\x3e\x9b\xca\xfc\x5e\x58\xac\xca\xd5\x15\x1e\xc0\xc4\x8b\xcb\xc6\x57\x7c\xe2\x0a\xa5\x41\x62\xd6\x7b\xd9\xb0\xb0\xb4\x48\x71\x97\x18\x46\xe1\x13\x05\x69\x0e\x4c\xc4\x94\x5a\xb6\x88\x08\xfd\xf4\xcc\xfd\x1a\x10\x2c\xcd\x4a\x41\xf1\x45\x4d\x8a\xae\x48\x00\x1e\x0f\x50\x17\xeb\xfd\x81\x29\x7b\x62\xe4\x27\x01\xc0\x03\x5f\x9f\xb8\x74\x26\x8b\xac\x49\xa5\x08\x44\x72\x72\x4a\xeb\x6b\x9d\x9a\xda\x2a\xa8\x55\x99\x7b\xd9\x41\xa9\x37\xe9\x86\x7c\x5e\xc1\xf9\xc2\xfe\x43\xd5\x2f\xd9\x65\x7e\x70\xce\x83\xad\xda\xa1\xf8\x64\xea\x2b\xbf\xf8\x62\x73\x99\x7a\x35\xee\x45\x3c\x3d\xf2\xea\x67\xa7\xd5\xa4\x5d\x14\xe7\x51\x62\x3b\x0d\x3f\x99\xc8\x46\x60\x9a\x63\x82\x3c\xe1\xed\x3a\x73\xe3\xa5\x45\x2d\xdf\xc8\x97\xc5\x27\x75\x76\x2c\xc5\xb0\x5d\x94\x71\x39\x2c\xd1\x2f\xd0\x06\xa8\xf2\x32\xe9\x0a\xac\x9d\xac\x3f\xa6\xf2\xb8\x9b\x4a\x36\x07\x1c\x2a\xec\x73\xff\x77\xa8\xd4\x5a\x3e\xa5\xdc\x15\x90\x0a\xfa\x48\xd2\x0e\x54\xbb\xfa\xf6\x96\xa2\xe3\xff\x3b\xec\x0c\x6e\xfe\xcb\x0b\xdd\x5f\x50\x01\x78\x63\xa4\x64\xf7\x1b\x68\xc0\xc8\x72\x52\xdc\x1e\x33\x30\xed\x84\x75\x24\xa4\xa8\x0c\x9c\xfb\xc1\x39\x25\x2c\xf2\x3b\x13\x22\x35\x9d\xb8\xb3\xc7\x7b\xfe\xdd\x86\x88\x8c\x48\x37\xd3\xc5\xa2\x3e\x0b\xc6\xc1\x2f\xff\xa2\x9b\xc2\xf1\xfe\x54\x97\xbc\x87\xe4\xe6\x17\x5b\xfa\xe3\x95\x22\xfe\x31\x30\x4e\xf8\xcf\xe2\x49\xe3\x76\x5e\x53\x1a\x32\xcc\xe3\x40\xed\x78\x7c\xea\x31\x0a\x54\xd3\xcd\xe3\x7e\x5f\x75\x16\x40\x38\x71\xb3\x03\xde\xdf\xe2\xdd\xba\x61\xef\xe5\x38\x4d\xe3\xa2\xd7\x50\x42\x0f\xaf\x6a\x3a\x3e\x72\x02\xe1\x72\xd5\x28\x8a\x2f\xe7\x26\x5d\x49\x62\x90\x99\xd9\x67\x02\x9f\x2a\xa6\x13\x3e\x2d\xd8\xfb\x73\xff\xe4\x67\x03\xff\x28\x31\x71\x23\xb6\x4b\x2e\xe9\x34\xfd\x6c\xd5\x49\x00\x4b\xb8\xaa\x7e\x52\xa2\x95\xef\xf7\x75\x89\x2d\x1a\x38\xd5\x6d\x74\x5d\xa5\x9c\xf6\xa9\xf6\x81\x83\xfb\x1a\x9a\x18\x57\xfd\x54\x8d\xae\xcb\x34\xa8\x31\x3f\xdf\xec\x19\xa1\x65\x3a\xcb\x4d\xf7\x4d\x8f\xab\x6b\xe9\x0c\xcb\xa8\x37\xa3\x60\x87\x3b\x2a\x1e\x36\xc6\x3e\x6a\x6c\x90\xa1\x0c\x2b\x48\x4c\x58\x52\x0c\x12\xe6\x72\xd2\x5f\x11\x6e\x90\xe2\x09\x4d\xe1\x6d\x4b\x73\x4b\xcd\xf6\x30\x4e\xca\x86\x6f\xa1\x5d\xd0\xd3\x05\xd7\xd5\xf4\xd0\x1b\xa3\xad\xf3\x50\xb2\x86\xe2\xb4\x44\x5f\x79\x06\x0a\x27\x4e\xce\xb7\xfa\x43\x40\xbf\xce\x28\xe5\x0c\xf6\x84\x13\x3d\xb6\x69\x26\xdf\xd7\xd9\xb6\x2e\x08\x94\x9d\x54\xf5\xfb\x82\x4e\x78\x9e\xdc\x6a\x6c\xd7\x8a\x1d\xf4\x3e\xb0\x18\x28\x5e\x33\xe1\xb1\x7b\xd6\xf5\x39\x7a\xb5\xf8\xff\xd3\x5f\x73\xfc\xad\xea\x25\x15\x29\x51\x65\x4f\x3c\x14\x17\x6e\xd7\xa5\x59\x12\x50\xe2\xe6\xe8\x51\x0f\xc7\xed\x55\x83\xbc\x1f\x62\x41\xf0\x89\x02\xc7\xba\x49\x96\xf5\xd7\xe1\xef\x86\x54\xf6\xcc\x48\x79\xbb\xb3\x69\x9e\x83\x19\x5c\x1f\xed\x4c\xe8\xd7\x08\xa9\xaa\xcf\x4e\x0b\xfd\xa0\x97\x00\x55\x59\xac\x2c\x94\x56\xe2\x1e\x45\x97\x04\x22\xc3\xbd\xba\x89\xc1\x65\xeb\x5e\x18\xd7\xc0\x55\xf7\xad\x46\xd6\x72\x2d\xcb\xc9\x28\x57\xd9\xb5\x5d\xd6\x76\x6d\x97\x5d\x4e\x50\x2d\x4b\x4a\x83\x66\x7c\x68\xc2\xa3\x70\x31\xbc\x7a\x78\x32\x38\x17\x38\xb1\xa9\x8f\xa7\x36\xc4\xc3\x73\x47\x9a\xd9\xf2\x72\xc3\xb9\x7e\x5e\x7f\x72\xec\x3b\x26\xaf\x13\x5e\x81\xca\xfd\x89\x96\x8f\xe5\xbd\x61\xbb\x4d\x5c\x06\x37\x4e\x01\x21\x7a\x3e\xae\x23\xe2\x74\xb2\x24\x31\x39\xbd\x13\xc0\x42\x1e\x84\xbe\xdb\x7f\x51\x4f\x3e\x5f\x74\xba\x8c\x2c\x10\xe7\x9c\xdb\xa5\x52\xd5\xa0\xef\x53\x7a\x9c\x61\x50\xba\x6e\xb4\xa6\xfd\x09\xe1\x5b\xb1\x12\xda\x19\x67\x01\x6c\x76\xac\x8c\x42\x6f\x4e\xc5\xd4\xc5\xe7\x0f\x36\xcb\xaa\x16\xb4\x79\x80\xb7\x51\x2c\x67\x55\x9b\xf9\xb2\x42\xeb\x3a\x66\x2d\x45\x66\x88\x1d\x7f\x43\x69\x2b\x5d\x51\x9e\x52\xa7\x26\x36\x3a\x13\x27\x7b\x74\xfe\x33\xa1\xdc\x54\xfd\x01\x6c\x06\xbb\x5a\x0a\x9b\xdb\xde\x52\xc4\xf2\xed\xe3\x09\xd9\x86\x49\x79\xa8\x25\x19\x03\xbc\x3d\xf2\xd0\xe5\xb1\x50\x49\x3b\x6f\xd2\xcb\xc8\xff\x40\xb1\x05\x4f\xfe\xc1\xe8\x59\xdf\x33\x1a\xb6\xa3\x2c\x2d\x73\x13\xa1\xb2\x51\x0a\xd1\xce\x44\x74\x4a\xaa\x76\xff\xa1\x66\x27\xeb\x6a\x49\xba\x8f\x47\xbe\xbb\xfc\xb1\xb3\x45\xe8\x0c\x21\x20\xed\xe9\xad\x5e\x30\xfd\xb2\xce\xcd\x0c\xbd\x29\x3b\x7d\xf6\x70\x8c\xba\x45\x02\x07\x29\x7b\xe9\x73\xca\x49\x83\xc7\x7c\xf1\x8e\x7c\x14\x4e\x0e\x36\xfe\xf2\x2f\x3a\xdd\x34\x3f\xfd\x40\xcd\xfe\x6c\x58\x68\x55\x50\x34\xe4\xa5\x74\xa9\x03\xdd\xb2\x81\x4d\x1d\x58\x89\xba\xe4\xae\xb2\xca\xbf\xa8\x66\x4b\x4e\xaa\x91\x70\x96\x77\x65\x09\x6d\x3c\x6b\xc4\x1c\x3e\x1e\xfb\x3b\xd0\x37\xa4\x8a\x34\xab\x26\x92\xb9\x70\x77\xbd\x9a\x05\xe1\x30\xbd\x3e\xd2\x94\xa3\xea\xd9\xb3\x62\x64\x5d\x5d\x53\x3d\x5c\x13\xa7\x1c\x85\xa4\xd3\xac\x94\x90\xde\xac\x43\x9b\xdb\x04\xca\x05\x4a\x45\x7e\xd2\xab\x41\x02\x57\x9c\xe7\x71\xe9\x45\x61\x10\xf7\x83\xb1\x2f\x91\x83\xd6\x84\xfc\x7d\x3c\xc9\xc6\x7a\x5f\x51\xdd\xdf\xaf\x6b\xad\xb6\xb3\x35\x9b\x04\x6a\x32\xfb\x94\x92\x90\x3c\x55\xc7\x21\xb0\xa9\xed\xa3\x7e\x70\xe2\xe9\x6e\x96\xe0\xc2\xe8\x19\x8f\x7e\xb8\xa9\xf7\x40\xf5\xd9\xb9\xdc\xe6\x13\x07\x37\x15\x6b\xd6\xf0\xdd\x70\xea\xed\x0b\x4e\xc9\x5d\xe5\xc4\x3d\x93\x46\x59\xb4\x42\x8a\xba\xd8\x2c\x7f\x42\xbb\x04\x1f\xbb\x80\xcf\x7e\xdc\x30\xb7\x5d\xe4\xbd\x09\x18\x08\x1f\x6b\x1d\x1b\x93\x9b\x34\x8b\x3b\x81\x66\xae\x7a\xd8\x6d\x3a\xbc\x2d\x2c\x1c\xa4\xdb\x6d\x4b\x8c\x91\x0b\x5a\x41\x5f\x00\xe9\xc5\xaf\x29\x51\x24\x98\xb2\xe1\xad\x7c\x63\x6a\x43\xa9\xd6\x50\x6e\xd7\x1a\xde\x72\xe1\xa4\x4a\x97\xee\xe1\x15\x14\x92\xcd\xd6\x2b\xf9\x6a\x33\xb7\xcb\x36\xcf\x5d\x3b\x15\x78\xd2\x3d\xa5\x14\xa2\xa5\x5b\x57\xe2\x24\xa9\xaa\xc6\x86\xc7\xc4\x21\x46\x02\xca\x09\xc2\x87\xd8\x5a\x6c\xed\x2c\xcc\xcf\x37\xe3\x14\x25\x97\x0c\xfe\x89\xd0\x93\x9f\xfe\x3c\xae\x32\xd6\x5f\x78\x7e\x5f\xa0\xac\xe4\xfe\x92\x3e\x89\x8f\x47\x8f\xc4\xcd\x41\x6e\x97\xff\x51\xb3\xfb\x25\xfa\x86\x78\x82\x33\x2d\x4f\xc9\xf9\x52\xcb\x5f\xcd\x75\x2d\xee\x10\xb4\xbc\xf6\xf2\x26\x30\x45\xd7\xd5\xd8\xb7\x9f\xd9\x5b\xb7\x47\xd8\x78\x04\x7a\xac\xf2\x55\x74\x1b\x1e\x42\x96\x43\xcd\x1b\x8b\xf9\xfd\x0d\x0a\x8a\xa8\xf1\xde\x86\x64\xaa\xeb\x49\x54\xcb\x16\xa8\xf3\xb3\x2d\x4f\x31\x98\xe5\xe9\x45\x7c\xfe\x53\x63\xda\xde\x44\xbc\x82\x96\x03\xae\xbf\x41\x61\x09\xa4\xf1\x59\xda\x81\x36\x67\x5a\x7e\x0b\xff\xea\xdf\x87\xfa\x9d\xf4\xdb\x55\x77\x08\xcc\x67\xdc\xb5\xc7\xc7\x84\x1f\xe2\xa7\xee\x87\x55\x08\xf6\x28\x8e\x20\xbc\x65\x5c\x64\x29\xc6\x19\xd0\x4f\x07\x63\x90\x8f\x6b\x89\xc2\x71\x4a\x9e\xce\x00\x52\x51\xea\xb1\xbc\x12\x9f\x28\x5c\x63\x30\xac\x6a\xad\xbe\x4d\xcb\x06\x5d\xa5\xa8\x08\x79\xe2\x20\x66\x55\x70\x13\x66\xc6\x7a\xbf\xb6\x39\xac\xfc\xf0\x0a\x5e\x42\x05\x09\x9e\xeb\x45\x95\x9a\xff\xda\xe8\x0b\xb2\xbf\xc5\x85\x19\x0c\xb2\x38\x2d\xab\x0f\xe4\xec\x50\x82\xc7\x44\x58\x11\xe0\x71\x35\x2e\xe2\xaa\x68\xf6\x9b\x31\x58\xf6\x5a\xe8\x49\x84\x40\x7c\xfa\xf1\xcd\x61\x0c\x13\x22\x61\x20\xd0\xa3\x11\x6a\xc2\xa3\x1e\x59\x4a\x77\x51\xf6\x00\xee\x09\xc3\xc8\x08\xf3\x3b\x5a\x8a\xdb\xa8\xd9\x13\x0c\xe5\x20\xa4\xee\x84\x7a\x0a\x36\xce\x60\xec\x47\x43\x40\x17\x06\x32\xf4\xb7\x5a\x12\x17\xcb\x35\xcb\xb3\xc4\xac\x66\x45\x6f\x9a\x28\x5b\x4d\xf3\xfe\x9a\x51\x9c\xda\x41\x62\x5f\x0e\x3c\x98\xc6\x5f\x46\x06\x82\xea\x7c\x59\xe2\x3e\x6d\x32\x08\xc0\x62\xbd\x14\x28\x4f\xa6\xad\x31\xeb\xe7\x9b\x45\xcf\x72\xb7\x14\x54\xac\x37\xa9\x01\xc2\xc7\x23\x3f\xbc\x6a\xf2\xa8\x17\x97\x36\xc2\xb0\x96\x7f\xd1\xcf\x00\xdf\x11\x2d\xaf\xa7\xd4\x60\x6c\x2f\xb6\xab\xb2\x8d\x09\x90\x5f\x3d\x42\x41\xf8\x7d\xe0\xb6\x45\xd4\xb3\x6b\xbc\x6e\xc5\x1c\x20\x70\x56\x3a\x27\xbd\xe5\x9c\x65\xb7\x5f\xf7\x88\xb9\x51\x20\x4a\x65\x7e\x29\x14\x31\x9b\x15\xb1\xac\xe4\x48\xa9\x08\x9e\xa9\x73\x38\x2a\x6c\x34\x74\x23\x95\x92\xb0\x28\x9a\xb5\xdf\xe5\x92\xaa\x9c\x9c\x09\x9c\x21\xf2\x45\xa5\x35\xf0\x4c\xcb\xeb\x91\xc0\x04\x5c\x4c\xf8\x6a\x1c\x8c\xe3\xb4\x33\x2c\xca\x7c\x7d\x2d\xee\xe0\x5a\xd1\x39\x41\x5b\x86\x8f\x3d\x71\xa4\x67\x3a\x8a\x6f\x23\xd4\x1c\x45\xd3\x99\x82\x65\x16\x97\x16\x9b\x26\x4d\xb3\x61\xca\xec\xee\x23\xae\x73\x4e\x4f\x4d\x5a\xea\xf2\x11\xab\x36\xb5\xaf\x0c\x6d\x62\x94\x79\xf3\x47\x23\x5f\xb4\xbe\xa1\x01\x8a\xe9\x9b\xb8\xb0\xd0\x2c\x12\x53\x78\x4f\x37\x11\xcc\x08\x16\xbc\xc0\x9b\xc2\x6c\xf3\xac\xb0\x0d\x8a\x84\x6e\xbf\x74\x2d\x3c\x8c\x6e\xe3\x0d\xb9\xae\x9a\xf6\x6b\xa6\xb4\xf9\xb2\x49\x12\xd5\xfb\xe2\x18\x27\x16\xea\x75\x4e\x23\xcb\x43\x9b\xe0\xb5\x70\x1a\xcb\x5e\xa7\x5e\x2b\x37\xd9\xc8\x74\x2c\xed\xe1\x12\xdc\x3c\x47\xed\x87\xca\x17\xf8\xf4\x54\x16\x76\x78\xae\x69\xd2\x6e\xce\x1c\x56\xd0\x3a\xf1\x8d\xf8\xd8\xab\x26\xf7\x6c\x3e\x6c\x63\x9a\x4b\x3c\x8d\xe8\x97\xc4\xec\xe8\x09\x35\xcd\xb5\x6e\x78\xbd\x23\x89\xf9\x91\x1e\x7c\xfa\xd1\x14\x46\x74\x78\xae\x69\x4d\xb1\xae\x04\x23\x8f\x2a\x0f\xa8\xa3\x75\xa1\x26\xee\x0f\xf2\xcc\xbd\xa8\x40\x4f\x1f\x28\xcf\xda\x07\x0a\x20\x21\xa1\xde\x19\x8f\x58\xa1\x8d\x82\x65\x84\x42\x98\x8f\x47\xca\x48\xb1\x76\x9d\x7c\x73\x68\xda\xa2\x30\xcd\x53\xcf\xf4\xfb\x32\x01\xed\x11\x91\x17\x5f\xfc\xe9\x6a\xcf\xc7\x2b\x75\x56\x29\x5c\x9c\x0d\x27\x6c\x3a\x90\x59\x28\xed\x0a\xa1\xba\x6d\x43\xd9\x28\x0d\x65\x52\x6a\x01\x70\xfa\x69\x48\xbb\x35\x96\x26\x44\x3d\xc1\xf5\x78\x8d\xca\x22\x71\x4b\xa0\x17\x07\x39\x2c\x46\xe5\x71\x91\x9f\xa0\x3a\x70\xfa\x6f\xd5\x42\x46\x05\xfa\x97\x5a\x92\xfe\xba\x72\x19\x39\x1f\xaa\xc4\xe2\x4e\xe8\x51\xe9\x9d\x00\x9f\x91\x30\xdd\xa5\x72\x14\x00\xda\x09\xe4\x10\x4e\xf1\xf4\x05\x67\x01\x83\xa1\x01\x28\x67\x5c\x42\x92\x23\xc4\xb3\x60\xdf\x3e\x07\x3c\x7a\x7b\xf0\x6d\xe3\xe0\xc5\x17\x37\xaf\x2a\x3e\x29\x1e\xfc\x4e\xb5\xfb\xbd\x19\xfa\xf6\xd2\x47\xf8\x7e\x32\xc4\xa5\xf4\x4f\x3e\x1c\x79\xe3\xf4\x6b\x13\x66\x29\xd0\x3f\x12\xf6\xb8\x13\x73\x34\x79\x3a\xab\x15\x9d\xe8\x13\x01\x2e\xc1\xdd\x58\xc6\x9f\x94\xf0\x0d\x23\x5a\x28\xf0\x4f\x42\xab\x70\x4b\x2b\x2a\x52\x40\x2f\x1b\xb3\xf2\x49\x0d\x0e\xb8\xbf\x59\xd8\x97\x45\x53\x0f\x80\xcb\x9f\x85\x1e\x95\xf9\xb3\x5a\xe8\xd0\xbe\x5c\x15\x3f\xf4\x31\xc0\x5d\xde\x55\x18\xcc\xbb\x35\xad\xcc\x45\xb2\x96\xc8\x87\xcb\xcb\x41\xf0\x0d\x19\x0d\x18\x8d\x94\xf1\xd5\x48\x91\x9d\x57\x63\x5b\x92\x3f\x0b\xc2\x3f\xd2\x89\x6d\x3a\xb7\xd8\xd6\xaa\xa3\x35\x26\xc5\x3f\xfe\xd9\x9f\x55\xaa\xeb\x0c\x82\xf2\xc9\x78\x7a\x68\x64\xbf\x8c\x9b\xba\xd8\xcc\x89\x14\x2d\x7a\x49\xaa\x3c\x03\xa0\x63\x29\x93\x04\x67\x42\x19\xbc\x2f\x38\x4a\xae\x7a\x0f\x27\x30\x10\x5a\x95\x10\x73\x02\xad\xd1\x09\xeb\x56\xef\x07\x36\xc9\xfb\x6e\x76\x3a\x31\x9d\xb8\x48\xcc\x6a\xa0\x5e\x18\x8c\x0c\x4b\x98\x55\x8d\xfc\xbd\x66\x6f\x50\x2d\x6d\x34\x75\x10\x7b\xf8\x58\x4f\x37\xf4\xac\x2d\x67\xd5\x0c\xe7\x59\x35\x69\x3a\x0b\xa6\x89\xe3\x31\xf8\xbe\xd6\xfb\x6a\x47\x38\x3a\xf2\x26\xe5\x49\xb9\x3a\xa3\xcc\x0f\x6e\x4c\xcb\xe5\x48\xcf\xb0\xba\x93\xfc\xff\x55\xe3\x98\x25\xbe\x5c\x03\x88\xa7\xca\xe8\x37\xc1\x4c\x7f\x5d\x35\x80\x2e\xab\xce\xb5\x1e\x8f\xf7\x3c\x0d\x26\xbd\x8a\x1d\xd1\xd6\x47\x2d\x28\x7a\xdf\x74\xbb\xb1\xd5\xe2\x15\xe7\xb5\xef\xe4\xf9\xba\xa1\xab\x41\x9e\x91\x40\x69\xe0\x46\xd4\xc1\x5a\xe1\x63\x95\xdc\xb1\x64\x3b\x27\xf2\x20\xed\x61\xc2\x8d\x8f\xfd\xec\x97\x29\xc5\x19\x1f\x80\xdc\x7b\xa1\x9f\xce\xdd\x0c\x95\xc0\x7e\xa0\xe6\x94\x6c\xd4\x13\xb5\x42\xa4\x00\xb7\x71\xf1\x7c\xa2\xde\xa0\x41\x9e\x45\xb6\x33\xcc\x6d\x31\xa3\x91\x54\x94\xf0\xf8\xc4\xa3\xea\x2d\x47\x79\xc2\xff\x7f\xe4\xe7\xe6\x6c\x52\xd8\xb5\x9e\x65\xaf\x3b\xdc\xa3\x1f\xd0\x1a\x97\x09\x11\x3f\xb7\x3a\xed\xcc\xfc\xf3\xcd\x34\x6b\x93\xa1\xcc\xe7\xa8\x71\x28\x59\xa1\x7c\xd8\x35\x09\x7f\x37\xa7\x17\xe6\xad\xff\x2f\x29\x52\x96\x2d\x7b\xc0\xb9\xb0\x79\x6c\x6f\xa9\xcc\x62\x43\xb9\xb3\xed\x1e\x07\xca\x11\x98\x6e\x83\x58\x86\xd5\xcc\x66\x75\x3c\x01\xc5\x5b\x0e\x1d\x9e\x73\x37\xc8\xd9\x44\x56\x99\x50\xdf\x36\xa8\x2e\xd7\xdb\x3d\x36\x52\xe6\x46\xb2\x39\xbc\xca\xd0\x3a\xf1\x20\xc9\xfa\xd4\xa8\xaa\x36\x2b\xf1\xca\xac\xee\x9f\x90\xdd\x7d\x96\x9e\x0f\x4b\x34\x66\xb0\x06\xfe\x9a\x5e\x7d\x3e\x9e\xc2\xdb\x96\xe6\x9a\x9d\x3c\x5e\xb5\xa9\xb6\x02\x7a\x43\xf9\xa5\xbd\xa1\xac\xe1\xd2\x21\x0d\xda\xfa\xb0\xfa\xaa\x22\xae\xbc\x5a\x6b\x02\x68\x87\x79\x16\x17\xc5\x50\x98\x01\x88\x5c\x1f\x63\x63\xe1\x13\xb5\x7b\xf6\xe3\x4e\x62\x73\xaa\x03\xc0\xe8\xbf\xa7\x14\x33\x80\xdc\x28\x71\x17\x11\xd0\x3c\x3b\x35\xe8\x5c\xed\x33\x69\x96\xe6\x55\xfd\xe1\x01\x20\x84\xd0\x93\x2a\x9c\xaa\x04\xd2\x24\x5d\x51\xf5\x70\x06\xae\xd5\x47\x88\x81\xab\xbf\x0d\x6d\x9b\x16\x0c\xf2\x38\xc5\x57\xdf\x53\xba\x12\xfa\x40\xd7\x89\x3b\x8f\xf9\xa0\x0e\xdc\x16\x6d\x9e\x80\x0c\x05\xd0\x6d\xf9\xab\xd0\xd7\x29\x7b\x88\x0a\xcc\x33\xec\x23\x75\xcb\x2e\x85\xda\xb1\x7d\x37\xc1\x3c\x08\x58\xdb\xc6\x13\x6a\xcf\xb4\x42\x10\x5e\x6e\x87\x24\x53\x8c\xd4\xe1\x37\x09\xc0\x41\xa7\xf7\x07\x5a\x77\xeb\xde\xc8\xc7\xc7\x41\x56\xc4\x65\xac\xb6\x34\x84\xd0\x4f\x54\x38\xfd\x44\x15\x99\x45\xcf\x76\x60\x8d\x5e\x5d\x28\x8a\x9b\x93\xca\xe8\xea\x06\xe5\x69\x60\x3c\x1c\xf7\x22\x91\xc9\x30\x5d\x59\x9f\x51\xfc\xc4\xd7\x47\x9e\x05\xfa\x50\x09\x44\x5c\x1d\xf9\x56\xea\xb1\xba\xee\x74\x9c\xae\x66\xc9\x2a\x57\xb9\x4c\xc1\xd4\x3e\x56\xe7\x55\x9b\xa6\x28\x73\x83\x70\x82\xca\xfa\x42\xe8\x1d\x0a\x2f\x68\x29\x0b\x6b\x57\x9e\x6d\x1c\xfc\x2f\xbe\xc1\xf7\xf7\x32\xa5\x8e\xe8\x97\xf3\x56\x85\xac\x63\xa6\x15\x38\x65\x97\xdd\x0a\xb1\xfa\xed\xb7\x10\x83\x91\xde\xb2\x5d\x36\xe7\xda\x94\x47\xe2\xda\x80\x28\x22\x2e\xee\xa0\x1c\x18\x89\xe7\x2d\xed\x67\xbd\x0b\x7a\x3a\xa8\xc3\x58\x4e\x57\x74\xae\x29\x91\xc0\x12\x0a\xc6\x6a\x9c\x6c\x06\xd8\x0b\x1a\x34\x1b\x24\x55\xbd\x79\x56\x99\xb8\x43\x34\x1a\x77\x15\xef\x97\x08\x48\xd7\x28\xa2\x24\x99\xe9\xc8\x6c\x9b\xe3\xdf\x54\xf7\x40\xf8\x37\x75\x73\x5b\x71\x62\x27\xfa\xfb\x6f\xab\xfe\xfe\xdb\x6a\x92\xb1\x6f\x5e\xca\xf2\x62\xb6\x5a\x24\x4e\x68\xb6\xfa\x20\x19\x00\xf2\xd7\xfc\x3a\xf2\x5b\xec\x71\x37\x35\xe1\x52\x5b\x90\x75\xac\x29\x7b\xd4\xc7\x54\x62\x27\x5f\x9f\x54\x4c\x74\xdd\xa0\x05\x7f\xac\x0c\x4a\x4c\x9e\xca\xe4\x02\x83\xa5\xca\x42\xf4\x76\x1d\xe2\xd0\xb3\xfd\x2c\xcf\x7b\xa6\xeb\xda\x34\x6c\x25\x41\xb7\x19\x8f\x11\x0c\x2e\xac\x81\x8d\x3a\x9e\xc6\x84\x75\x1f\x53\x9d\xb1\x90\x85\xf7\x5c\xb3\xed\x0c\x86\x36\x2f\x65\x53\x77\xca\xe4\xd5\x3a\x14\xbd\x3e\x07\x74\x64\x51\x6c\x20\xb5\x7d\x78\xce\xf1\x47\x03\xa7\xe3\x81\xe2\x54\x6c\x17\xeb\x90\x9c\x9e\xcd\x4d\x29\x3d\x03\xac\x40\x88\x0e\xf0\xb1\xda\xad\xe2\x7e\x95\xe0\x9b\xb4\xdc\xe3\x95\xc5\xce\xa2\x9a\x72\xb6\x4f\x5e\xbb\xf2\x35\x7a\x0d\x64\xc0\x4e\x89\x98\x9e\xa6\x80\xa5\x69\x7d\x68\x26\xb2\xee\x3f\xff\x36\x0c\x5c\x90\x89\xb2\xae\x1f\x7f\x22\xa0\x6c\xd7\x67\x73\x92\xa6\x17\x27\xb8\x4f\xc3\x32\xdb\xe1\x5b\x0a\xa7\x46\x8a\xd7\xcb\x9a\xf8\xc8\x56\xd8\xa5\x47\x06\xca\x71\xcf\xd1\x3d\xba\xa5\xcb\xe4\xd3\x0a\xe4\x6f\x67\x03\x65\x5d\xc8\xbb\x84\x10\xb0\xea\x68\x9e\x65\x8f\x58\xc2\x98\x80\x70\x1d\x77\xd7\x64\x9b\x56\xed\x5a\x9a\x5b\x6a\x76\x6c\x1c\x04\xca\xdc\xa9\x0a\x99\xe2\xd5\xe7\x5c\x14\xcd\x1a\xe6\xd9\x50\xe7\x3e\x42\x80\x2c\x62\x6f\x30\x56\xd5\xf0\x09\x7a\xe5\x64\x3e\x53\xd9\x10\x66\xd9\xca\xac\x47\x4c\x90\xf2\x29\x07\x1c\xd1\x29\x42\xda\x83\x90\xf8\x30\x54\x25\xe9\xe5\x89\x46\x55\xbf\x9f\xa5\x1d\xee\x7e\x73\x30\x0c\xbd\x1e\xf3\x65\x87\xd8\xe7\xf6\x9b\x43\xeb\xd8\xd6\x88\x04\x60\x60\xa1\x9e\xbd\x87\x27\x24\x6e\x08\x3e\x25\x34\x51\x94\xe5\x50\x8f\x52\x13\x7c\x5f\x77\xfe\x22\xf4\x95\xdd\x04\x9f\xeb\x86\x9f\x9a\x8a\x80\x07\x16\x9a\xc5\x60\x7d\x8b\xc7\x33\xa8\x8a\x32\x77\xa5\xfa\xd9\xc4\xa7\x37\x65\x96\x17\x81\x37\x81\xc5\x40\x3a\x1f\x3b\xe8\x71\x2d\xcb\x57\x06\x89\xe1\x74\xca\x09\x90\x38\x76\xc5\xb9\x09\x79\xd3\xd4\xae\x99\x84\x3a\x7b\x78\x4e\xb7\x94\xfc\xc4\x2d\xf7\x37\x93\xb8\x28\xd1\x2d\x0e\x9c\xaa\xfc\x15\x35\x17\xf6\x1a\x6e\x82\xa0\xcc\x35\x24\xfb\x66\xdb\x46\x59\x1f\x42\x3c\xd8\xce\xcf\x8e\x94\x4a\xf0\x43\xed\x7e\xaf\xdb\x84\x59\x14\x0d\x07\xb1\xe5\xb1\x1f\x6c\xde\xe7\x95\xda\x0d\x68\x4a\x68\x96\xbf\x35\x15\xff\x7e\xbe\x99\x9b\x38\xc9\x33\xd3\xc1\x28\xbc\x58\xbe\xe2\x25\x93\x71\xf5\xc0\xcd\x7c\xde\xa9\xf5\xe7\x82\xed\xfd\x96\x47\x75\x3e\xd4\x65\x5e\xcd\xfe\x56\x64\x26\x97\xb8\x8b\x58\xcd\x09\x04\x9f\x4c\x54\xc1\x66\x60\x77\xd0\x1f\x97\xfd\xd8\x13\x0f\xde\xd6\xfe\x3a\xe7\x10\x7b\xb0\x41\x9d\x18\x6d\x1d\x4a\xe5\xff\x3f\x55\x68\x92\x3f\x51\xb5\x13\xa4\xdd\x2d\x2d\xff\xa3\xa3\x60\x8b\x2e\x9b\x8c\x7f\x7c\xd1\x3d\x83\x32\x37\x69\x41\x91\xb7\xca\xe0\x66\x82\x03\x0b\x9b\xac\x7a\xac\xf3\x5e\x7c\x36\x30\x37\xb1\xc8\x79\x6e\xab\x9d\xcf\xe2\xc1\xe6\xc2\x02\x66\xc0\x27\x74\xf5\x26\x14\xf7\x1c\x33\xc4\x47\xb5\x0b\xa1\xe7\xe4\x0f\x3b\xb1\xe8\xd8\x61\xc1\xdd\xa3\x35\x80\xc1\xb6\xb3\x13\xf7\x58\x31\xf9\x4d\xde\xc9\x20\xf5\xc5\x13\x0f\xa1\xb7\x08\xba\x50\xef\xe4\x46\xed\x19\xf1\x37\x68\xc0\x40\xd5\x67\x7d\x24\x31\xd0\xf0\x25\x0b\x37\x8d\x35\x69\x13\xd9\xdc\x19\x85\xc9\x96\x66\xc5\xa6\x8f\x56\x8f\x8a\x5d\x8d\x35\x53\xee\x0a\xb2\x30\xd4\x89\xbf\x31\xf2\xa5\x77\x00\xa6\x14\x64\x18\x1e\x6d\xa9\x9c\x78\x66\xec\x5f\xa8\xdb\xa0\xc6\x03\x0a\x3f\xa5\x46\x9b\xde\x08\x3d\x24\xc6\x6a\x07\xa2\x4b\x36\x6d\x23\x7f\xa4\xb9\x9c\x98\x35\x76\xa3\xc2\x63\xb9\xab\x25\xd7\xa6\x7f\x67\x61\xa1\xd9\xb7\x65\x2f\xeb\x68\xa1\x95\x0b\x4a\x9a\xe3\x82\x1a\x5f\xae\x1e\x44\xf5\x2a\xcd\xfa\x52\xe9\xb6\xb2\x06\x39\x4e\x69\xac\x08\x24\xab\xa5\xc1\x39\x16\x9a\x27\xe7\x14\xcb\xa6\x9d\x25\x59\x37\x35\xc8\x23\x95\xca\xfa\xa2\xa3\x0c\xfa\x1c\x8c\xf8\x1f\x2c\x5d\x89\x3d\xea\x54\xa8\x24\xf4\xa6\x2d\x82\xe6\xe7\x9b\xa6\xa0\x14\xc7\xb1\x41\x90\x00\xdd\x51\xf6\x04\x77\x14\x97\x93\xd4\xc6\x66\x54\x3f\xe5\xb3\x09\x71\x41\xe5\xba\xf7\x7d\x6c\xfb\x78\x42\x97\xab\xfd\x94\xf7\xf6\xfd\x9c\xe0\xe2\x9a\x1e\xe2\xc7\xf8\x44\xfb\x83\x0e\x4c\xbe\x02\x0a\x2b\x9a\xf2\x57\xf1\x93\x7c\x32\x85\x76\x1e\x58\x68\x66\x83\x2a\xd5\x72\x01\x80\x00\xb7\x7f\xfc\x1c\x11\x4c\x91\x3e\x3d\xd2\x52\xe6\x38\xdb\x5a\x3e\xdf\xc8\x6d\xf1\x04\xdd\x28\xbc\x2f\x57\x94\x94\x30\xdb\x39\xd0\x72\x1e\xfc\x83\x96\x07\x8e\xf7\x8c\x95\x51\xc4\xf6\xff\xa8\xe5\x20\x96\xbf\xfb\x85\xb1\xca\xc5\xef\x93\x44\x85\xe3\xc1\x09\x55\xef\xb1\xbf\x37\x9e\x60\x73\x2a\x68\xe5\xef\xa3\x45\x20\x73\xb6\xc1\x2f\xfc\x0a\x23\x79\x0f\x94\xdd\xd5\x2f\x3e\x0b\xc5\x3b\xa0\x47\x27\x95\x08\x58\x67\x98\x24\x71\xd1\x43\x87\x0d\x80\xfe\xb7\xf1\x1d\xf8\x44\x05\xe6\x38\xed\xd8\x97\xf7\xd0\x1f\x42\x8e\x00\x36\x0b\xde\x9e\x7f\x4f\xc4\x07\x51\x9c\xf1\x84\x9c\x33\x94\x5e\x22\x3b\xb9\xae\xe7\xd5\x2e\x6b\x19\x8d\xed\x2d\xad\x36\xc4\x43\x92\x88\x24\x6f\x4f\xd0\x00\x46\x4a\xf7\x14\xc4\x28\x76\xe9\x57\x14\x93\x24\xcb\x06\xbd\x4c\x50\x4b\xae\x2e\x95\x4e\xd1\x5d\x45\x2b\x3d\x31\x21\xde\xb0\x6c\x59\x63\xa8\x16\x70\x98\x98\xa6\x2e\x8b\xe7\x3c\xf4\x74\x12\x10\x31\xf2\xd9\xeb\x68\xcd\x28\xc3\xcc\x23\x4c\x5f\x7e\xa8\xec\x90\x7f\x5b\x4f\x17\xdc\xc5\xae\x86\xbb\xfa\x6d\xaa\xe6\xd9\xac\x08\xcf\x02\x5f\xfe\xcd\x09\x6c\xe2\x4d\x64\x57\xa2\xd2\x4e\x97\x8d\xbe\x46\xa3\x35\xd9\x45\x77\xd3\xa2\xb7\x47\xbe\x92\xfe\xdd\x91\xc2\xd2\x11\xfe\x11\x74\x3e\xa0\xa0\xe3\x2c\xda\xab\xdb\x8d\x27\x7c\x95\x6e\x37\x8f\xe4\x6a\x69\xc8\xdb\xca\x05\xa3\xcc\xcd\x6a\x6c\x4a\x83\x7b\x8f\x06\x0c\x50\x6c\xd9\x17\xfc\x0b\x76\xce\x37\x88\xc9\xbb\x78\x4b\x83\xf8\xfb\xaa\x41\xfc\x7d\xad\x85\xeb\xb4\x38\xdc\x9f\xf4\x7f\x7e\x2a\x68\x91\x28\x70\x99\x67\x69\xd6\x67\xb6\x80\xb3\x4b\x9a\x9f\x77\x53\xe2\x5b\xe3\x83\x60\xd1\xcb\x79\xd6\x9f\x09\xbe\xb1\xdf\x73\x0e\x9d\x5f\x39\x58\x31\xc8\x94\x38\x54\xe0\x66\xde\xf7\x3d\xff\x38\x5a\xb1\x29\xab\x1f\x68\x63\x2e\x60\xf5\x1f\xe1\x26\x62\x21\xde\xfa\x5c\x61\xce\xe5\x61\x4e\xee\x64\x5e\x6c\x80\x27\x21\xc5\x5c\x5d\x89\x70\x7e\xac\xdc\x1e\xb8\xb3\x22\x66\x43\x8f\xfb\xc9\xe5\x0e\x5d\x54\xb5\x2e\x45\xa7\x9a\xfe\x9e\x64\x7d\xc1\xa4\xa2\xa6\x5b\xf3\x69\xc7\xec\xf2\x45\xff\x6d\xc5\x33\x3e\x1b\x2a\x81\x87\x37\xf5\x5b\x73\x8f\x2e\xc8\xd9\x15\x7a\x15\xbf\x77\x68\x98\x51\xc4\xeb\x69\xf5\xb2\xe8\x90\x52\x6c\xec\xd9\xd2\xe6\x59\xd7\xa6\x56\x6c\x83\x90\xd7\xc0\x26\x11\xf9\xce\xa7\x5a\xcc\xe1\xbc\x02\xc6\x49\x4e\x34\x37\x5d\x3b\xe3\xd7\x0a\x2a\xb2\x89\x1a\x1e\x70\xdb\x4d\xc4\x54\x69\x3d\x3a\x2e\x8f\x89\xa2\x38\x05\x97\x07\xa9\xe5\x39\xdc\x2b\xa7\x00\xe1\xa8\x1e\x1b\x53\x1a\x64\xd5\xd2\x03\x75\x48\xb6\x4b\x80\x92\xef\xd3\xfb\xc0\xc7\x53\x8f\x9d\x66\x70\xe1\x1c\xdf\x17\xc2\x88\x08\x5a\x68\x75\x8b\x3a\xf9\xeb\x65\x93\x2e\x9b\x5c\x9b\x1a\x5f\x54\x92\x4a\xd3\x36\x37\xfb\xf6\x29\x51\x4c\xb9\x48\x56\xc2\x52\x8e\xe1\x1f\xa9\x0d\xa3\x6d\x93\x6e\x3c\xec\xa3\x02\x41\xa6\x0c\xd4\x05\x4b\xf3\x01\x9e\xb1\xcc\x18\x3e\xa3\xd1\x5c\xbb\x1c\x47\xb1\x49\xd0\x99\x43\xa8\x7a\x57\x71\x9c\x2f\x23\x6e\x22\xcf\x3f\x85\x39\x55\x3e\xc1\xfa\x00\xb0\x75\x03\xeb\x9d\x7f\x9f\xae\x92\x3b\xdf\x0a\x31\x5d\x33\x65\xd4\xb3\x39\xe6\xea\x04\xc7\xa7\x4b\x96\x02\xa1\xc6\xcd\x17\x03\xae\x89\x3c\x6f\x7c\x07\x0c\x8e\x48\xd7\xd4\x3b\x48\xdd\x54\xa2\x3c\xb9\x4d\xd3\x18\x15\x26\x7a\x64\x9f\xd0\xfa\xe4\xe3\x29\xea\xd2\xfc\x7c\xb3\x3f\x8c\x7a\x81\x9f\xe9\x3c\xa3\x46\x37\x27\xe5\x84\xe2\x55\xfb\x53\xbe\xae\x7d\x0c\xd9\x2e\xe2\xf1\x69\x60\x32\xd8\x74\x8e\xd3\xf6\x0b\xa8\xe0\x64\xe8\xc7\x39\x4f\x60\x67\x42\x10\x78\x8a\x2c\xf8\x51\x1e\x7e\x07\x6a\xc5\xa0\xf8\xfc\x08\x89\x1f\xc1\xfc\x3f\xfd\x53\xe3\x2a\x07\xc1\x5b\xfa\x89\x22\x4c\x36\x80\x60\x10\x7a\x7a\xf7\x0b\x2d\xa5\x1f\xf7\x2e\xed\xf1\x80\xbb\xae\xe2\x36\xb3\xcb\xc2\xa4\x21\xf9\xbe\x7d\x4e\x32\x9c\x1e\x35\x05\x99\xb9\xa7\x79\xef\x17\xe7\x5b\x65\xe6\xf2\x7f\x6a\x3b\x83\x5b\x23\x65\xb8\xf1\x3e\x21\x20\x78\x2c\x3f\x41\x52\x80\xe7\xb2\x89\x0d\x17\xb0\xe9\xb5\x91\x17\x31\xcd\x56\x6d\xde\x1e\xc6\x64\x21\xa0\x34\x0b\x4e\x28\xb3\xa5\x13\x35\xcc\x98\xfd\xcd\x6e\x96\x01\xf8\x76\x6a\x61\x4b\x73\xae\x2e\x9c\x90\x7e\xca\xbb\x24\xa1\x89\x38\xb6\x31\xd1\xa1\xf7\x6f\x3c\x4f\x38\x8b\x58\xbc\xa0\xf5\xaf\xc4\x83\x82\x37\x28\x07\xf8\x54\x3f\xc7\x27\xae\xe2\xcb\x6d\x9a\xc5\x4e\xaf\x07\x48\xce\x69\xad\x8d\x70\xda\x8d\x9c\xf7\xcc\xaa\x7d\xc4\xbf\x5f\xd0\x7d\x40\xf2\xf0\x1c\xf5\xdd\x70\x93\x5e\x0f\x15\xc9\xff\xde\x84\x41\x37\xad\x77\xea\x17\xfc\xdc\xb3\x2d\x35\xa4\xc9\xb4\x43\x0a\xc6\x7f\xc4\x8a\x29\x80\x79\x76\x8c\x85\x6a\x96\x66\x71\x81\xd0\x8b\xdd\x2e\x68\x05\xca\xda\xcb\x8b\x3c\x60\x1f\x95\xae\xf4\xe7\x8d\x56\xb5\x73\xf3\x4a\x9c\xc4\x26\x9d\x90\x1b\x9b\x74\x9a\xab\x43\x2b\x7a\x79\xd6\xcf\x8a\xac\x8f\x2b\xc1\xa2\x7a\xac\xa5\x60\x08\x24\x86\xb8\x13\xb3\xe3\xed\x5f\xe6\xf6\xc8\xbf\xad\x91\xaf\x3c\xd2\xec\xd8\x55\x9b\x64\x03\x97\xa8\xb8\x89\xff\xea\x06\x08\x51\x70\x8f\x6a\xa0\xef\x7d\xc2\x13\x51\x59\xdc\x1f\x4f\xe9\x07\x78\x64\x80\x00\x77\xf2\x1b\x80\x9b\xfb\x00\x6f\x00\xee\xc8\x79\xed\xfc\xa6\xad\x04\xe1\x1e\x85\x72\xf0\x01\x2e\x00\x0c\x97\xbf\x54\x22\x5c\xaf\xd3\x03\x54\x32\x61\xfb\xb9\x43\xf9\x19\x12\x3b\x67\x44\xe8\x40\x41\x1e\xc6\x97\x21\x79\x1f\x51\x73\xfb\x92\x8d\x4a\xdb\xa1\x15\x2e\xf6\x57\x7e\x06\xff\x7d\xc5\x56\x67\x79\x25\xbe\x9c\xea\x15\x74\x83\x28\x03\x9b\xc7\xfd\x41\x56\x30\xa5\x94\x67\x5c\xe9\x77\x65\xde\xf5\x09\xb5\xfb\x27\x49\xf5\x4a\x2c\xcd\xb9\xa9\x50\x65\x65\x72\x49\x95\xbd\xeb\xb1\x4d\x3a\x16\x3a\xad\xce\xf5\xe1\x80\xe7\x6e\x3e\xab\x9c\x71\x5f\x1a\x62\x63\x2d\x76\x78\x26\xd0\x99\x50\x8d\x98\x7e\x38\xf2\xcc\xd5\x33\x48\xcc\x51\x77\x01\x61\x72\xae\x2b\x7e\x60\xe5\x52\xdd\x94\x42\x51\x0e\x3b\xeb\x04\xe6\xe2\x49\x32\x7f\xc3\x59\x9f\x54\x8f\x12\xd1\xe1\x47\xca\x71\x66\x76\xac\x92\x92\xf3\x35\xfc\xb3\xc5\x26\x49\x31\xf3\x0d\x54\x56\x98\x4e\x9d\x5c\x29\x47\x2e\xc7\xab\xf6\x09\x95\x52\x1f\xc3\x42\x11\x3c\xa8\xba\x45\x13\xe3\xc0\x22\x07\x45\x17\x87\xe7\x77\x06\xf0\x81\xd0\x1c\xe9\x76\xa0\x55\x7a\xca\x5b\x8a\xfc\xed\xe7\x10\x1d\x50\xf3\x20\xb5\x93\x0a\x02\x4b\x1b\xf5\x29\x64\x68\x18\xb7\x1e\xf9\x86\xf9\xb5\x91\x1a\x69\x62\x3a\x14\x18\x30\x4f\x8c\x25\x40\x16\xc3\xb8\x28\x44\x85\x0d\x0d\xe9\x8b\xba\x3b\x7d\x71\x42\x67\x61\x60\xd6\x29\x7b\x52\xf3\xd6\xd7\x43\x95\x7e\x5e\x9f\xee\x0e\xed\x23\xf8\xdd\xbd\xdb\xc8\x36\x3e\xa6\x2f\xc9\xc7\x53\xbf\x73\xe8\xf9\x66\xd6\x2e\x22\xa2\xb9\x48\xa4\xfc\x03\xad\xfa\x7a\x4e\x99\x32\x4b\x59\xca\x88\x86\xf2\x10\x3e\xe2\xb0\x62\xff\x15\x22\x93\xc0\x8c\x59\x93\x1b\x6f\xe2\x2b\xf0\x89\x9e\x43\x32\x9d\x57\xd6\xfb\x2c\x53\x89\x37\x69\x5b\xcb\x5b\x94\x6f\x73\x51\x99\x92\x62\x82\xdc\xf0\xde\xde\xa2\x92\xd0\xcd\xc8\xba\x69\xc7\x7b\xc8\x08\xc4\x18\xd7\x87\x59\xb6\xaa\x46\x4c\xff\xff\x53\xa5\xb9\xc9\x55\xaa\x73\xf5\x3a\x3c\xe7\xbb\x24\x4e\x73\xf0\xcc\xc8\xbf\x0b\xd7\xeb\x94\xe2\x3a\xd9\xb0\x5d\xe2\xde\x60\x2f\x41\xea\xc5\xc7\x8e\xc2\x3c\xc8\x64\xb4\x10\xa9\x1c\xbb\x81\xf2\x89\x1a\x78\x2c\x86\x79\xf7\x6f\x1c\xcd\x72\x63\x4b\x3d\xd3\x1f\xb0\x28\xc7\xa2\x97\x46\x76\x9b\xe5\x95\x29\x40\x74\xdf\xfe\x66\x97\xca\x28\x25\x6e\x7b\x5a\x89\xdb\x6a\xee\x57\x31\xc8\x4a\x50\x85\x91\xfb\x1c\x0b\xfd\x1c\xc6\x09\x35\x63\x74\x5d\x75\x38\x14\x7f\xaa\x51\x3d\x2b\x80\xa0\xb7\x43\xc5\x31\x3c\x31\x52\xf2\xe3\xe7\x5d\x1a\x51\xe6\x26\x4e\x78\x12\x4c\xec\xd8\x29\xd4\x0b\x08\xed\x55\x6b\x0b\x13\x77\x7e\xba\xba\x8f\xe0\x3f\x6e\x22\x8b\xc2\x17\x80\x64\x16\x73\xe1\x46\x9e\x43\xc1\x38\x83\x8c\x02\xa8\xb1\xd7\x0f\x68\xdb\x01\xdc\x8a\x6e\xb7\x50\x3f\x7c\x5a\x7c\x99\x83\x81\x78\xdd\xab\x95\xb4\x49\x2b\x05\x51\x82\x4d\x2d\x40\xd6\x39\x8e\x2c\x17\x7b\xd8\x06\x30\x0f\xa0\x19\x47\x69\xfa\x04\x9f\x7e\x33\x44\x97\x0b\x9f\xc3\xb3\xb4\xb8\xaf\x47\x09\x13\x03\x9d\x29\x80\xfd\x1c\x16\x00\xbc\x0b\x10\xa6\xfe\x6a\xa4\xbc\x67\x79\x24\xd3\x6d\xc0\x8e\x54\xff\x1e\x26\x7d\xd4\xa4\xb2\x88\xa3\xbc\x89\xda\x85\xff\x70\x1d\x85\x02\xbe\xd8\x5c\x9b\xe1\xe9\x33\xbc\xc4\x27\x53\xb1\x7e\x7e\xbe\x59\x94\x36\xf7\x4d\x7e\xb7\xb3\x79\xad\x21\x95\x6c\x7c\xc5\xf6\x27\xe7\x30\xe9\x8f\x4b\x4f\xfe\x29\x8d\xe2\xd1\x78\x7c\x30\x21\x97\xe6\xa9\xa1\x17\x26\x72\xda\x4e\xd7\x3e\x4a\xb7\x46\x48\x8d\xb4\x48\x50\xeb\xdd\x55\xa9\x13\xb7\x08\x11\x3c\x18\x79\x40\xec\x39\xc3\x0f\x5d\x10\x60\x2f\xde\xf7\xb6\x1a\x3e\x38\x41\xfb\x35\x1e\xe6\x5d\xac\x2b\xb7\x1b\xbb\x55\x79\x53\x6d\xf9\x44\x79\x33\x45\x40\xf7\xdd\xf1\x0b\xab\xa7\x2b\x1d\xa9\x9a\x87\xd0\xcb\xfa\x36\xb1\x05\xf8\xeb\x0c\x42\x4d\x00\x52\xcf\xb8\xe4\xf5\x3f\x84\xd4\x54\xa3\xb2\x4e\x56\x8a\x66\x48\x4f\xb9\x76\x4a\xc8\x3f\xb0\x7e\xb1\x77\x97\x57\x12\xfb\xef\xef\x23\xa3\x60\x1e\x06\xf6\x40\x47\xd0\x50\xdd\xed\xc0\xf9\x14\x6c\x8e\x14\x8f\x6d\x1b\x14\x83\x9d\x09\xab\x1a\x38\xaa\x31\x8d\xcf\xed\x20\xb7\x05\x6f\x90\x02\x15\x9e\x57\x03\x37\xe7\xa7\x58\xcb\x3f\xd3\x2c\xcc\x3a\x75\x2c\x45\x0a\x58\x85\xcb\x13\xc4\x3a\x17\x8e\x63\x4d\x36\x84\x36\x8a\x27\x19\xde\x19\x29\x73\xc1\x3b\xe1\x53\x6e\x68\x32\x2d\xe3\x74\x48\x68\x8f\x23\x71\x1d\x1b\xa9\x1e\xcf\xaf\x29\xad\xac\xe3\x8a\x71\xf8\x8f\xca\x5e\xe0\x59\xe5\xf7\xe8\xdd\xe6\x63\x85\x42\xc4\xe9\x4b\xc3\x34\xc2\xf0\xe0\xfc\x3c\x17\x96\x9f\xd1\xf7\xe6\xe3\x91\xec\x33\xfd\xaf\xb4\xb3\xb5\xcf\xe7\x15\x78\x9a\x2c\xb3\x09\xc8\x40\x61\x7e\xde\xab\x5f\x7a\x25\x4c\xaa\xcd\x91\x34\x5d\xd3\x64\xb3\x6b\xb5\xc2\xaf\xa5\x27\x39\xd6\xb2\x75\xdc\xd8\xe2\x4b\x4f\x28\x33\x38\xd6\x6c\xa5\xad\xb6\xf1\xe5\xb1\x26\xab\x6c\x1b\xfb\x41\xd0\x3b\xa1\x92\xca\xfc\x09\x91\x18\x9c\x09\xd8\x92\xf4\x81\x7e\x9f\xa2\x3f\x4a\xf0\x9f\x20\xe2\xe3\x56\x3e\x44\x9a\x28\x73\xfc\x4a\xf0\xf0\x4c\xe8\x09\x75\xdc\x9f\x90\x89\x00\x45\x5b\x7e\x96\x90\x22\x4a\x3c\xbe\xf9\x77\x5a\xbe\x7d\xf3\x12\x8b\xa8\xb9\x70\x00\x40\x44\x4c\xf8\x9e\x99\x6c\x9c\x1e\x7a\xbe\x79\x60\x61\x97\x62\x9e\x1e\x0b\x15\x49\xfd\x0a\x21\x03\x82\x38\x7a\xb1\xc8\xab\x4a\x93\x6b\x96\xee\x88\x13\x42\x3d\x20\x86\xb1\xbf\x4e\x9b\x18\x4b\xc5\xd4\xb0\x40\x9a\xcb\x36\x29\x1b\x4a\x21\xfd\xf2\xc4\xab\x49\xb7\x16\xfc\xd5\xcf\xc2\x1a\xd6\x7f\x96\x13\x09\x1c\xdb\xd7\x6b\xf4\xb9\x7c\x5c\x6b\xe3\xb5\x9e\x15\xbd\x18\xce\x10\x48\xa1\xae\xe8\xc2\xea\xca\x14\xde\xb8\xb0\xd0\xec\x64\x29\xb5\xa5\xf1\xaa\x21\xe1\x78\x5d\xa3\xbb\xaf\x2b\xd8\x6a\xd9\xb4\x49\xbf\xd1\x89\x8b\x1c\xc7\xdf\xe7\x13\x35\xcb\x13\xe5\x71\x61\x8b\x19\xcf\x18\xbc\x49\x2b\x04\x37\x76\xa6\xa5\x86\x8e\x61\x5a\x26\xe2\x17\x4f\x2b\xa5\x67\x66\x0d\x34\xd4\x56\xf6\xae\x72\x13\x01\xa4\x2b\xd8\x66\xcd\xdc\xcd\x5a\xcf\xb2\xb9\xf1\x0b\xae\x6e\x00\xb7\x90\x8f\xeb\x00\xd1\xf6\x30\xf7\x63\xfd\xf8\xa0\x07\x8a\x75\x7b\x53\xe9\x24\x7e\xaa\xda\x89\xf6\xe5\x92\xa6\x85\xe6\xe7\x5d\x07\x91\x1e\x3a\x72\xe6\x1b\x58\xd2\x7c\x32\xd2\x4d\xc7\xcf\xe3\xb4\x77\x6c\x9a\xc6\x85\x96\x07\x42\x72\xab\xa4\xb6\x24\x47\xbd\x17\xfa\xbb\x96\xb5\x0b\x9b\xaf\xda\xbc\xd8\x51\x7d\x4f\x14\xe5\xe7\xb4\x03\xc9\xa7\x13\x2e\xe6\x94\xf5\x08\xd3\x9b\xde\x54\x69\x4f\x05\x4e\xf6\x81\x32\x64\xa7\xbe\x11\xa7\x34\xc0\xb1\xb4\xc8\x05\x22\x74\x07\xf8\xd8\x31\xe1\xa3\xdc\xf4\x07\x1c\x92\x78\x66\x88\x9e\x96\xcc\x0f\xd5\x58\xac\x38\x4d\xc8\x86\xa2\xda\xa1\xfc\x03\xe4\xf8\x67\x78\x5b\x90\xe4\x4d\xeb\xec\x1e\x9e\x5b\x6c\x26\x76\x99\x0b\x38\xa1\x3d\x04\xca\x29\xd1\x23\x7b\x51\x96\xe7\xb6\x18\x64\x29\x31\x28\xab\x8b\x44\xb5\xca\xb6\x6b\x7c\xe2\x52\xe4\x81\x49\xff\x3f\xce\xde\x34\x46\xb2\x2b\x4b\x0f\xab\x8a\xcc\xac\x85\xc5\x6a\x16\xc9\xee\x59\x84\xb1\x27\x66\xd0\x1e\xea\x07\x41\x01\x32\x6c\xc3\x03\x03\x2f\x26\x33\xbb\x39\x55\x98\x4e\x26\xb2\x4a\xc5\x31\x6d\xc0\x7d\xe3\xc5\x8d\x88\xc7\x7c\xf1\x5e\xf4\x5b\x32\x99\x84\x7f\x08\xb6\x31\x10\x0c\xe8\x87\x04\xcb\xb2\x61\x79\x3c\x8b\x04\x4b\xb6\x34\xea\x9e\x96\xa6\x67\x91\x14\x31\x9c\xa5\x97\xe9\xe9\xe9\xe6\x4e\x16\xd9\xac\x7d\x5f\xb2\xf6\x95\x59\xc6\x3b\xdf\x39\xf7\x9e\xc8\x78\x34\x20\xfd\x7b\xaf\x2a\x23\xe2\x2d\x77\x39\xe7\x3b\xdf\xf9\x3e\x33\x30\xac\x77\x8f\x85\x10\x2f\xd1\x59\x23\xf8\x49\xb6\xa3\xa5\xed\xff\xd7\x6c\xc1\xc2\x12\xaf\xb8\x26\x14\xba\x0b\xd9\x69\x3f\xe7\xc3\x87\xbc\x48\x87\xa4\xd0\x22\x2c\x43\x4f\x3e\xbe\xae\xb4\x4f\xaf\x28\xc2\x16\x4d\x91\x6a\x19\x3c\xea\xbb\x8a\x7c\xf0\x3c\xdd\xf7\x40\x04\x12\x6b\x32\x76\x8e\x13\x8a\xad\x17\x23\xb8\x34\xa5\xea\x71\xe8\x50\x33\x8d\xe2\x86\x87\x3c\xbf\xa9\xf1\xbe\x6f\xd6\xc5\xa0\x03\x93\x28\xce\x25\x88\x37\xb3\x4a\x29\xef\xfe\x48\x97\x54\xbc\x0e\xc7\xab\x65\xa7\x27\x29\xf8\x2b\x9a\x78\xe8\x64\xfe\x5d\x4a\xd7\xb5\x36\xce\x21\x09\x84\xf5\xf0\x34\xa6\x9b\x53\x21\xac\x3e\xc4\x5d\x26\x23\xad\x84\xb8\xfd\xf6\x96\x96\x9a\xa6\x23\xd8\xa8\xb2\x88\x78\x45\x59\x44\x78\x30\x2a\x0c\xad\xed\xf0\xb6\x53\x17\x07\x4f\xcb\x24\x2c\x37\x87\x36\x6b\x54\x9b\x26\xae\xf3\x91\x5a\xc3\x1f\xb9\xc8\xa1\x6b\x92\x10\x5e\xc3\x04\xde\xfe\x9d\x9f\x19\x2b\xed\xfc\xef\x8e\x26\xe8\x7a\x8e\x95\xf6\xf7\x9b\x53\x62\xc0\x4b\x4b\x87\x9b\xe9\x10\x68\x19\x4d\x03\xe6\x1b\x60\xcc\x09\xf9\x60\xfb\xa7\x16\xbc\x34\xef\x2c\x7d\xca\x41\xa5\x4e\x66\x9b\x3b\x2d\xb0\x23\xfc\xa6\x32\x6b\x6c\x4c\x09\x6e\x2e\x1e\x69\x76\x6c\x18\x0d\x58\xf1\xda\x41\x8c\x4b\x4b\x0e\xdf\x7b\xc6\xb7\xca\x15\xfd\x41\xba\xe6\xc6\x0a\x7b\x66\x8d\xfc\x32\x8a\x4a\x11\xd3\x39\x95\xd2\xad\x32\x64\x72\x49\x24\x1b\xb6\x8b\x23\x93\x5f\xb5\xf2\xa8\x27\xc4\xf9\x25\xc7\x75\x53\x6a\x78\x6f\x4f\x6d\x8c\x2b\xf3\xcd\x32\x89\xba\x69\x36\x60\xe4\x40\x44\xae\xfc\xb4\xb9\xeb\xe6\x6e\x6c\x4d\xc7\xdd\x02\x72\x89\x07\xbe\xf1\xe7\x8f\x9f\x69\x39\xf2\xe0\xca\x4f\x8f\xeb\xf0\x39\x13\x92\xbf\x3b\x56\x22\xc1\x03\x68\x10\x0a\x50\xe0\xa4\x55\x92\xc2\x66\xc3\xcc\x16\x34\xe5\x5d\xe8\xee\xea\xbc\x5e\x53\x61\x60\xb3\xd0\x76\xec\x44\xd7\xd2\x1d\xad\x3b\x7e\xc7\x2d\xd6\x6d\xdb\x8f\x92\xce\x93\x4a\xac\x65\x6b\xa4\x3c\xdb\x66\xc6\xba\xcb\x86\xb2\x6e\x94\x93\xf0\x6e\x90\x8d\x3f\x89\x11\x2b\x1e\xf4\x55\xd0\x82\x9d\xea\xbb\x23\xdf\x55\x75\x83\xb2\x7c\x5a\xbf\xff\x87\x9f\x6b\x29\x28\xe0\x4d\x0a\x0e\xf0\x0b\x0f\x69\xbe\x22\x49\xd8\xd1\xd2\x99\xe5\x5a\x04\x17\x5c\xa7\x77\xe0\xe5\x7a\x2e\x29\x93\xa6\x87\x5a\xf3\xb3\xb0\xc3\xbe\x95\x12\x00\xb0\x73\x26\xc6\xf1\x89\x56\xe7\x2d\xf3\x6a\x77\xcb\x07\x36\xe1\xb5\xde\x49\x39\x3b\x7e\x1e\xcb\x84\x63\xf0\x7f\x4b\x89\x90\xe7\x71\x6a\x26\x7f\xe7\x9a\xfe\x9d\x6b\x8a\x15\xd3\x8e\x92\x1e\x53\x4d\xc4\x7d\xcb\x6f\x53\xc7\x26\x66\xca\xb4\xfd\xc7\x52\xb3\x5d\xc5\x34\xa6\x27\xaf\x16\x40\xc3\x18\x8b\x16\x9f\x28\x14\x3e\xb7\x43\x93\x99\xc2\xee\xaa\x32\x0a\xa4\xa1\xbc\xa6\x0a\xde\xd8\x70\x82\x6e\x67\x26\x78\x3c\x23\x5f\x91\x7c\x17\xf8\x2e\x5e\xca\xce\xa9\x65\xe7\xe0\x52\xb3\x4c\xba\x26\xca\x78\xb2\x20\xac\xbe\xa4\xf8\x12\x97\x54\xb3\x52\x6e\xb3\xc8\xe6\xbb\xfc\x7e\xc0\xca\x94\x13\x7d\x8a\x48\x6a\xef\x2b\x62\x0b\x24\xf7\x91\xe2\xb3\x10\x02\xc2\xb3\x6a\xc7\x65\x10\x2c\xaf\x66\xba\xab\x81\x0b\x7b\xae\xe1\x2c\xcb\x2e\x4d\xad\x7d\x4e\x88\x2f\x33\x33\x0a\xc3\xc6\x9e\x28\x54\x40\xfa\x31\x4c\xc5\x7b\x75\x6d\x15\x79\x91\x45\xc3\x19\x1f\xd5\xfd\x20\x50\x5d\x3c\x2c\xbe\x05\xd4\xe8\x82\x5b\x34\x86\x59\x1a\x16\x5c\xbe\x03\xbd\x1f\x1c\x49\x39\xf1\x84\x4d\x7a\xdd\x31\xf5\x62\x08\x65\xa1\xe1\xdc\x34\x7e\xaa\xa5\xbc\x76\x9e\x18\x6b\xef\x3b\xff\xfa\xae\xd6\x19\x12\xf7\xcb\x70\x95\xd0\x22\xc1\x2b\x9c\x8a\xa5\x57\xb4\x54\x94\xf9\xa1\x79\x7d\xd6\x47\x8e\x9b\xca\x91\x91\x59\x11\x88\xcb\xde\xa4\x9e\x1c\x31\x17\x55\x24\x80\xa8\xd3\xa1\xea\xfa\xca\x3c\x03\x8b\x88\xc4\xf9\xd8\x55\x20\xc3\xb8\xb4\xaa\x4e\x01\xa6\x8e\x10\x43\x0e\x78\x8e\x85\x49\x42\x67\x4d\x27\x4d\x88\xf4\xfe\xa4\x0b\xd1\xa9\x8d\x99\xc1\x70\xc6\xb7\xab\xfc\x31\x3d\x3b\xfc\xea\x43\x85\xd4\xdf\xaf\xa3\x20\xb7\x53\xaf\x28\x0e\xa4\x82\x79\x34\xae\xd3\xb9\x1a\xb7\x48\x04\xaf\x28\x3a\x99\x49\x36\x08\x6c\xda\xe5\x57\xb2\x5d\xa8\x20\x72\xca\x13\xa8\x6e\xc1\x13\x4a\x44\xe6\x6d\x5a\x20\xd9\x90\x6d\xe4\xab\x72\x17\xf4\x93\x34\xf9\xaa\x2d\x72\xba\x27\xd0\x5b\x99\x09\x8e\xba\xef\x23\x12\xb9\x94\xf0\xd2\xbf\xbf\xe5\x5f\xfa\xaf\x1b\xbe\x05\xff\x26\x46\x28\x9f\xd4\xf1\x0d\x92\x92\x65\x3a\xb0\xda\x7e\xa2\xf4\x78\x3e\x71\x9b\x4c\x68\xda\x51\x62\x8b\x09\xdf\xf8\x37\x95\x6f\xfc\xb4\x70\xd4\xca\x72\xb3\xe8\x9b\x82\x1a\x09\x81\x8a\x6e\xe1\x61\x00\xdf\xd8\x31\xd6\x36\x43\xd5\xc3\x40\xf8\x78\xd3\x35\x4c\x14\x69\xc2\x1d\x6a\x18\xdb\x27\x95\x70\xeb\xbe\x96\x4f\xce\xf6\x63\xd7\x42\xb4\x3e\x6d\x29\xbd\xb0\xd0\x34\x51\xec\x76\x6d\x51\xf9\xf7\x84\xa1\x3b\xd3\x42\x1e\xfc\x24\x7b\x69\xb2\xcb\x17\xf7\x4f\x62\xa3\x46\x74\xf6\xc6\x84\x64\x33\xcd\x40\xb4\x40\xdc\x09\x14\xf4\x75\x0e\xa0\x30\xd7\x78\x03\x5f\x6a\x0c\x4d\x16\x85\xa6\x28\x33\x0b\xea\x92\xe3\xca\xba\x76\xa0\xf7\x47\xaa\x89\xf8\xba\xa2\x2e\x95\xc9\x30\x1d\x96\xb1\xc9\x54\x3d\x87\x37\x20\x31\x25\x94\x60\xd3\x0c\xa2\xcc\xe0\x8d\x01\x08\x1c\x8f\x54\x43\xfd\xb8\x16\x61\x62\x9d\x4b\x9f\xd1\x5e\xd1\x19\xed\xb4\x6c\x33\x75\x00\x86\x51\x47\x96\x62\x30\x3d\x4e\x2a\xd5\x8c\x93\x4a\x1c\xe5\xd5\x68\x30\x40\x46\x82\x40\x4f\xeb\xda\x5d\xd1\xe2\xf4\xfd\x74\xdd\x76\x76\x7b\x9c\xec\x11\x22\x3e\x5d\x97\x67\x8d\x08\x5a\x5c\x28\x4c\xd9\x78\x86\x5a\x32\xb9\x8a\x3d\xf2\x2e\xc3\xff\x0f\x4a\xb8\x22\x2a\xe1\xf3\x90\x76\x66\xcd\xaa\xe9\xd9\x06\x81\xc3\x8e\x94\xea\xd4\xe3\xce\x29\x4a\xf4\xab\x69\x99\x25\xcc\x63\x57\xa2\x25\x42\xde\x3b\xa5\xee\xe4\x83\x1a\xc8\xa6\x19\xdb\xa4\xe3\x56\x60\x94\x96\xd1\x02\xc0\xc7\x63\xd9\xdb\x3a\x96\x9c\x18\xdd\xdf\x3a\x1f\x1e\xef\xc9\x53\x67\xf4\xb6\x9e\x66\xab\xbc\x82\x61\xbc\x3e\x00\x4d\x4a\x16\x08\x05\xf4\x9c\x51\x85\xf4\xbc\x48\xc3\xd5\xfc\x59\xfa\x25\xe1\x4a\x35\x9c\x3d\xe9\x5e\x48\x7a\xe1\x31\x32\xb1\x13\xfb\xdb\x6d\x6e\x0d\xe1\x62\x15\x48\x3b\xcc\x45\xa0\x57\x82\x89\xfa\x0e\xa1\x66\xec\x35\x4e\xaf\x0d\xf3\xf4\x3e\xfa\x62\x9d\x53\xb9\x22\xd8\xa1\xa8\x23\xf6\xe4\xb4\x98\x8a\xd8\x42\xf5\x7a\x01\x2c\xf0\x34\xc3\xf2\x7e\x1f\x0b\x0b\x82\xc2\x7f\x40\x11\x26\x90\x6a\xc8\x68\x8b\x33\xa9\x2a\x6a\xbc\x57\xa7\x36\x58\x98\x81\xcd\x66\x08\x28\x71\x1a\x66\x8e\xe1\xf4\x96\xba\xf8\xbb\x6e\x59\x8c\x92\xdc\x66\xc5\x36\x39\x28\xe4\x60\x52\x85\x99\x50\x07\xec\x74\xcb\x18\x0d\x36\x40\x27\x3f\x56\x88\xf5\x96\xd2\x06\xba\xe3\x76\xc0\xb4\x6d\xa3\x5c\xcc\x95\x97\xb6\x08\xa9\xdc\xda\x0c\x9e\x70\x53\xe5\x17\xd8\x55\x01\x19\xd5\xc9\x91\x6f\xd6\xb8\xa6\xba\x7f\x8e\x07\x8d\x49\xd5\xeb\xc3\xfc\xb6\xd9\x56\x09\x09\xe8\x43\x97\x7e\x0c\x4c\xb6\x6a\xa9\xfd\x80\x2c\x1d\x36\x47\x5e\x3f\x8b\xc3\x71\x04\x95\x3b\xc6\x0e\x1d\xf9\x8d\x66\xcb\x43\x49\x4f\x8f\xb7\x2f\x2e\x64\x5e\x35\x48\x57\x51\x0e\xc7\xd2\x7b\x1c\x8f\x8a\x4f\xd4\x3a\xd1\x2d\x93\x4e\xbe\x8f\x1e\x2a\xd2\xd2\x7b\xca\x4c\x1c\x2a\x13\x78\x91\xa7\xf0\x0d\x78\x82\x57\x31\x8e\xdc\x5f\x2d\x1e\xd9\xe2\x6d\x1c\x73\x8c\x1d\xf7\x68\x0b\x38\x7e\x80\x1a\x42\x40\x71\x98\x83\x8c\xb8\xf4\x51\x56\xb7\xc4\xb6\x50\xad\xed\x71\xf9\x91\x97\x9a\xa6\x33\x88\x92\x28\x97\x98\x4e\x44\xba\xbc\x87\xfc\xb5\xe0\x80\x72\x82\xfd\x5a\x19\xd9\x81\xc2\x5c\x2f\xe8\x0c\xdb\xdb\x09\xaf\xf7\x5d\xf1\x5a\xec\xf8\x1b\x4e\xc3\xf6\xa2\xaa\xcd\x16\xfd\x28\x7f\xc6\xb3\x38\x7f\x23\x50\x76\x68\x33\x63\xdf\x15\xc8\xf3\xdf\x19\xf8\x2c\x2c\xba\x16\x3b\x5f\x82\x05\xed\xdb\x69\x7c\x3a\xaf\x9c\x7f\x82\x88\x07\xc1\xca\x23\xcc\x42\x0c\xfe\xf7\x02\xc5\x67\x7e\x0f\x4f\x1c\xa1\xe2\xe7\x5b\x93\x8a\x79\x5f\x59\xf4\x65\xe6\xea\xf1\x62\x75\x78\x88\x95\x5c\x08\x29\xb4\x41\x0a\x4f\xdf\x6b\x72\x6d\xaa\xcd\x60\x90\x76\x6c\x96\x00\x20\x75\x7e\x7c\xaa\x19\xde\x97\x03\x6e\x2b\x23\x5d\x13\xe7\xe9\x4f\x10\xd0\x89\xc1\x71\x36\x50\x42\xf6\x6c\xce\xc0\x4d\x32\xca\xab\xed\x3c\x76\x6c\x09\x7f\x14\x7d\xf8\x0f\x03\xdf\x0c\x73\x45\x05\x2c\xdf\xc5\x93\x42\x89\xe8\x53\xd5\xd1\x70\x55\x71\x85\xb8\xb4\xc3\x2b\x14\x56\x38\x87\xcc\xfa\x7e\xe5\x1f\x70\x3d\x54\xfc\x46\x27\x04\xf0\x1d\x87\xf3\x32\x5e\x87\xa4\xe9\xf4\x06\x70\x72\x9b\x62\x72\x64\x4e\xa7\x46\x13\x56\x68\xae\xb6\x70\x63\xaa\x76\x41\x11\xd2\x80\xf7\x0e\xdc\xc7\xdd\x60\xa2\x81\xa1\xba\x76\xa9\xfd\xe9\xa1\x9d\x97\x03\xa0\xb8\x2f\xf2\xdf\xde\x50\xae\x31\x8f\x03\x25\xa0\x73\x51\x37\xe4\x24\x69\x56\x20\xee\xd1\x6d\xd0\xe2\xce\xa1\x94\xb8\xef\x4e\xc1\x35\x0b\x0b\xcd\x98\xb3\x62\x10\x2f\xf1\x72\x7f\x17\x8f\x84\x4f\x14\x7a\x34\x4c\xb3\xa2\x9b\xc6\x51\xfa\x24\x0d\x05\xd7\x83\x72\x50\x86\xcf\xbb\x13\x6e\x8b\x23\xdf\x23\x79\x9e\x37\x38\xb1\xc0\x51\x4d\x0b\xa7\x95\x05\x2a\xf7\x45\xf1\x17\x63\x58\x39\x7b\xd2\x43\x87\x78\x9e\x7c\x42\xd3\x0c\xc3\xed\x7a\xe0\x0b\xa5\x27\x55\x30\x02\x3b\x94\x2c\x99\xc5\xef\x62\x0d\xdf\x01\x80\xd3\xf5\xbe\xf8\xac\x9d\x25\xcb\x11\xa8\xdc\xad\x31\xa3\xeb\xa6\x71\x47\x76\x26\xac\x7f\x9f\x60\xb1\xe4\x13\xb5\xdc\x86\xfd\x92\xdb\x26\x1c\x83\xd6\x05\x58\xd3\xc2\xbc\x2b\xf3\xcd\x5e\x94\xb1\x4f\x13\x06\xd5\xfb\xb8\x32\x3e\x99\x7a\x6b\x47\xe7\x17\xab\xb0\x26\xea\x25\x36\x6b\x28\x59\xe3\xef\xaa\x17\xff\xdd\xa9\xaa\xd8\xd1\xf9\x66\x9e\x36\x7c\x03\x3b\xbc\x5f\xf9\x58\xd5\xaa\xc2\x2c\x1a\xd8\x7c\xb6\xf1\xdc\x73\x0e\xcf\x54\xd2\x68\x57\x41\x66\x76\x7e\x8d\xba\xb2\xe0\xbb\xab\x07\xe6\x75\xdb\xa0\x69\x89\x19\x0e\xa2\x16\x1f\x3b\xb3\xc1\xaf\xad\x85\x33\xaa\xe9\x06\x1b\xac\x1c\xd3\xeb\xc0\xc9\xe3\xe0\x49\x25\x86\x65\xf6\x29\x55\x4e\x28\x3f\x80\x96\xc6\xdc\x4c\x40\x32\x7f\x46\x83\x0a\x77\xf7\xfb\x04\xab\x61\x89\xdc\xdb\x52\xd9\xee\xed\x40\x59\x73\xb0\xfc\x04\x8a\x08\x77\x68\x81\x90\x34\x4f\x6d\x09\x4c\xf6\x40\x38\xf2\x89\x9a\xbe\x51\xd2\xb5\x59\x92\xc2\x5a\x1b\x13\x11\x11\x1a\x1f\x4f\xd5\x14\x8e\xce\xbf\xd2\x5c\xb3\x79\x31\x09\x39\xa3\x82\x2c\xa3\x75\xfb\x67\x0e\x1d\x5a\x01\x03\x93\x33\x47\xe9\x56\xf2\x0f\xee\x2d\x35\x5b\x4d\xd6\x8e\x8a\x4c\x34\x60\x70\x1d\x08\x7c\xf9\xd8\x85\x45\x55\x44\x94\x17\x64\x55\xe8\xa5\xfe\x61\xe0\x27\xce\x64\xca\x0c\xd4\x94\x59\x14\xc2\x71\xa7\x96\x01\xa3\x2c\x26\x4c\x94\x6d\xa8\x44\xe6\x62\xa0\x97\xa9\xcf\xcb\xaf\x97\x45\x3f\xcd\xa2\xc2\x64\x62\x72\xc7\x66\x5d\x54\xd9\x17\xe3\x2e\x49\xc3\xca\xac\x6d\x12\x64\xb2\xae\x50\xe1\x9a\xd7\x91\x7d\xe2\xed\x30\x5e\x09\xaa\xef\x47\x53\xeb\xf4\xf3\xcd\xb0\x9f\xc2\xb4\x58\xf0\x3f\x06\x04\x9c\x48\x99\x53\xaf\xbd\x80\x5d\x09\x90\xe4\x6c\xcb\x3f\x8b\xae\x8d\xe3\x28\x89\x94\x42\xe1\x8f\xf1\xab\xa2\xfe\xe7\x2b\x8c\x36\x4c\x93\x74\x10\xe5\xc5\x8c\xba\x43\x65\xa0\xf0\xbb\xf8\xa0\x08\x1d\xf8\xa2\x9b\x19\xa4\x59\x11\xbd\x6e\xc4\xcd\x4a\x48\x29\x77\x94\xf3\xfc\x1d\x87\x8f\xf5\x4c\xe6\x80\x3c\xd9\xa2\x7c\x5f\xda\x8d\xa9\x0a\x22\x37\xc1\x14\x36\x8b\x10\x56\x01\x9c\x7a\xa8\x80\xaa\x87\x35\x09\xd8\x72\x73\x18\xdb\xa4\x60\x48\xc1\x4d\xda\xea\xea\x70\x3b\x9b\xb4\xbc\x00\x82\x44\x0e\x84\xcc\xee\x61\xed\x44\x48\xd2\x41\x99\x19\xf5\x18\x99\xd8\xc4\x27\xb5\xe1\x6f\xdf\x9a\xac\x43\x95\x63\xe7\xa7\xea\x49\x3a\xfb\x00\x93\x23\xef\xb9\x87\xf7\x2a\x79\xcf\x74\xb5\xe9\x70\xd3\x74\x3a\x68\xb4\xc1\x56\xf9\x18\x3b\xa0\xa2\x5f\x2c\x3a\x8a\xe2\x74\x01\x75\xa9\xd9\x2e\xf3\x8d\x86\xc2\x7a\x81\xab\x0b\x90\xea\x17\xc6\x9e\x2d\xf2\xb9\xea\xc1\x20\xaa\xbe\xa5\x43\xc1\x9b\xbe\x44\xf5\x26\x08\x5b\xc8\x6a\xde\xa1\xfd\x15\x77\x72\x72\xaa\x6e\xb8\xfc\xd2\xe1\xe6\xcf\x2d\x1e\x7c\xf1\xe0\x91\xc3\x64\x60\x27\x76\xb2\x9e\x19\x7b\x5b\xb5\x47\xb0\xca\x14\x28\x52\xa7\xa7\xe0\x4d\x41\x75\x8b\x7e\x16\x75\x61\xd1\x02\xb4\x08\x12\xe9\x62\x02\x47\xdf\x81\xec\xe7\xe3\x09\x88\xe7\xff\x77\x01\x7c\x56\x95\x91\x07\xc3\xac\x9a\x0b\x96\x5e\x1f\xb7\xa3\x04\xbe\x96\x01\x08\x48\xda\x54\xbc\x23\xc4\xb4\x56\xd9\xcb\xcb\x5f\x6c\x16\x69\xc1\x45\x33\xc0\x4e\x97\x14\x04\x75\xc9\x25\x97\x1d\x53\x98\xb6\xc9\xb1\x31\x83\xc9\x83\x19\xc4\xc7\x2a\x44\x26\x63\xd4\x7c\x17\x8d\x07\x54\x63\xfe\x99\x26\xdd\x41\xb0\x03\xab\xdd\x56\xa0\xeb\x61\xd0\x0d\x95\xbf\xd2\x65\x33\x07\x4b\x13\x48\x52\x0e\x67\xbc\xc6\xf8\xdf\xbd\x8f\xbf\x14\x55\x28\xdf\xe2\xb5\xb3\x55\x67\x83\x37\xa9\xc5\x2a\xc6\xd6\x74\x19\x12\x77\xd5\xf4\x93\xaf\xa7\xd9\xaa\xe9\xa7\x71\x14\xaa\x9a\x34\x86\xa9\x78\x56\xd5\xf0\xb4\xf3\x34\xeb\xf5\x4b\x2c\x0c\x88\xf5\x7f\x44\x8b\x32\x1f\xd7\x09\xeb\x84\xb1\xc9\xa2\xc4\x16\xaa\x35\xee\xeb\xaa\x35\xee\xeb\xca\x36\x20\x4c\x07\x03\x93\xb8\x36\x21\xa0\x31\x68\x0a\xe0\xe3\xa9\x6b\x3a\x74\xa8\xd9\x4f\xf3\x22\x62\x55\x58\x5c\xfa\x5e\x65\x30\xbf\x77\xbc\xcd\x6e\xec\xe8\xfc\x8b\xcd\x83\x4b\x3f\x4d\x2f\x13\x65\x86\x93\x00\x38\xf0\xde\x6f\x8c\x1a\x2f\x4b\xab\xd3\x19\x65\x06\x73\x82\xc2\x81\xad\xcb\x08\x11\x84\xb8\xd2\xf8\xd2\xaf\x8a\xd5\x2c\x07\xb4\x48\x28\xce\xb3\x00\x3d\x17\x8a\x30\xad\xb1\x5d\x9c\x0a\x7c\xaf\x04\xbb\x50\x70\x19\x70\x4c\xa3\xc5\xa1\xb9\x55\x44\x8c\x19\xcf\xa2\x3d\xd2\xc3\xa8\x44\xef\xcf\xe9\x8e\xcf\xbf\x50\xa8\xf7\x7d\x15\xe3\x9c\xa3\xec\x9e\x2b\x50\x23\x25\xbd\x7d\x49\xad\x0a\xef\x50\x0c\x8d\xdd\xe3\x0f\x03\x4f\x9f\xd8\x43\xad\xf4\x80\x85\xbe\x53\x63\xc5\xb6\xd2\x1c\x9a\x28\xf1\x4e\x45\x9c\xc2\xa9\x00\xef\x8a\xe3\x7f\xb4\xd3\x8e\x2b\x36\x38\xb6\x99\x67\x9e\x29\xe4\x3f\x0f\xfb\xeb\x26\x2b\x5e\xa7\x71\x20\xd5\x6c\xdf\x55\xff\x9d\x8b\x6a\xf5\x18\x44\x45\x5e\xb6\xa3\xbc\x1f\x11\x9d\x86\xeb\x27\x23\x9f\xea\xbf\x19\x48\x84\x99\x19\x28\xb9\x82\x67\x76\x96\x5e\x2f\x1f\xab\x16\xc6\x61\x9a\xe7\x51\x3b\xde\x20\x74\x1a\x88\x11\x58\x57\x08\xf9\xe6\x5a\x3e\x10\x38\x03\x5a\xde\x84\xa6\x3d\x9f\x8c\x7c\xa3\xd6\xed\xf3\x0a\x12\xb4\x59\x62\x73\x66\xdb\x63\x13\x3e\x1f\xf8\xcd\xf9\xbc\x4a\x59\xc4\x3a\xe6\x29\x1f\xce\xed\xd0\x6a\x69\x9f\x8c\x94\x5d\x1d\xf7\xe8\xb1\x5e\x26\x2e\x4b\x6a\x86\x74\x59\x52\x90\xa3\xa1\xc8\x52\xf5\x34\x14\x31\x48\xee\x12\xac\x88\xa8\xe9\xcf\x75\xd1\xfc\x24\xad\xc3\xae\xf9\xbc\x1a\x95\x18\xc8\xe7\x54\xbc\x71\x03\xc3\xca\x39\x01\x2f\x2c\x38\xe2\xf9\x34\x0c\x7e\xb8\x59\x18\x91\x71\x76\xd2\x7d\x5e\xc6\x4f\xa1\xf1\x79\x61\xda\x51\x1c\xbd\x8e\xbf\x05\x68\x04\x44\x82\x8f\xeb\xe4\x1e\xdb\xb6\x28\x6c\x36\x4b\x4f\x40\x24\xaf\xab\xaf\x47\x93\x04\x33\xd4\x5d\x0f\xc6\xd2\x12\xd4\x8d\x5d\xe9\x20\x8f\x92\x14\x49\x37\xee\x06\x1a\x38\x58\xe0\xd0\x49\x27\x22\x4e\x35\xd2\x16\x99\x4d\xbb\x5d\xeb\x1a\x7a\x51\x0e\xc1\xa7\xf8\x58\x3b\xe6\x9a\x38\x5e\x8f\x58\x71\x8c\x29\x50\x0c\x51\x08\x21\xaa\xce\xd6\xdf\x76\x58\x34\xd4\x19\x46\xf8\x22\xe9\x85\xa9\x56\xbc\x2a\x9a\xb2\xaf\x0d\x63\x13\x25\x42\x09\x43\xa9\xff\x98\xea\x7d\xe2\xca\xb1\x98\x71\xfa\xc1\x6a\x32\xd3\x35\xc5\x5c\xb5\x34\x38\xf1\xc1\x6a\x00\x62\xe1\x84\x9c\x83\x08\x11\x36\x94\x42\x61\x35\x96\x44\x2e\x4c\x90\xf7\xb4\xdb\x1d\x96\x85\xd7\x2f\x62\x1c\x6d\xa4\x31\x35\xcf\xd1\x1e\xbe\x30\x60\xf2\x80\x53\xb1\x3a\x74\x88\x23\x7c\x96\x18\x11\x66\x91\x0f\xbf\x7b\xb1\xc9\x7b\xe9\xfa\x04\xc3\xec\xbe\xae\xb0\x30\xfe\x81\x91\x36\x4d\x9f\x7b\x5e\x94\xef\xdd\x45\x3a\x48\x42\x99\x10\xd5\xb8\xb4\x0f\xd2\xbc\x20\x99\x00\x21\xe6\x55\x03\x8e\x39\xc0\xe8\x7c\xc0\x43\xff\x9c\xa2\xe1\xcc\xc2\xf6\x03\xd7\xd2\x18\x6f\xdf\xd9\x0e\x2e\x35\x4d\x6c\x7a\xa9\xc9\x1b\xaa\x34\x0d\xe5\x52\xa1\x3b\xf8\x10\xa5\x88\x92\x55\xee\xd8\xe3\x6a\x32\x22\x00\x29\x2d\x2b\x7c\xc8\x59\x0a\xbd\xe2\xf2\x2a\x3c\x2f\xc9\x41\x7c\x8e\x32\x30\xd9\x9a\x8d\xd3\x12\xf5\x66\x69\xb9\xd3\xac\x33\x8f\x72\xd8\xa4\x63\x3b\x7b\xaa\x9d\x06\x91\xe0\x6d\x2c\x80\xc8\xac\x8f\xd1\x0c\x14\xa1\x2b\xc5\x19\xfe\x24\x68\x7c\x65\xd1\x6d\x00\xd5\x4a\xc3\x1f\x50\x49\xdc\x55\xd5\x08\xbe\x6f\x2a\x07\x7e\x9e\xac\x39\xbc\xa0\x27\x02\xde\x31\x7d\x86\x8f\x15\x91\xa5\x1b\x47\xbd\x7e\x91\xcf\x56\x3b\x85\x50\x5e\x69\x52\xd4\x71\x80\xaa\x51\x2c\x02\x00\xfe\x01\x86\xfd\x34\x0a\xed\x5c\xe3\xe8\x3c\xea\x05\xb2\x96\x04\xca\xde\xec\x8e\x6a\x35\xba\x84\xc5\x58\x80\x5b\xff\x74\x8b\xcc\x9a\xbc\xcc\x36\xd0\x14\xe1\x0c\x4b\x5c\xa3\xfb\x83\x5a\xf7\x77\xc2\x6b\x0d\xfb\x54\x08\x29\xa6\xe1\xec\xf4\x75\xad\x3a\xe9\x45\xd8\x67\xa4\x90\xe3\x0b\x2e\xf7\xb7\xbb\xb0\x2e\x1e\xa9\x22\xa3\x67\x1a\x5f\x7e\x99\x03\x82\x33\x28\x3a\xe1\x65\x3e\xa6\xd7\xe1\x84\xc0\xaa\xef\xc4\x46\x7c\x67\xa4\xe2\xfb\xb3\x5a\x7e\xed\xaf\xe8\xd7\x94\x7d\x98\xf0\x33\xde\xa4\x70\x04\xcf\xe6\x89\x96\xa2\xd0\x5c\x1f\xa9\x81\x0e\x8e\x13\x1e\xed\x8f\x46\x3b\xbf\xc8\x53\xff\xde\x84\x12\x0b\x03\x36\xac\x10\x1f\xe8\xde\xab\x91\x27\xd0\x3c\x46\x77\x0a\x86\xf7\xe3\xda\xb0\x76\x60\xb2\xc2\x66\xc4\x05\x10\x4f\x1b\xfa\x66\xec\xad\xa0\xab\x89\xa2\x96\xea\x32\xce\x0c\xd6\x79\x5d\x81\x93\xd2\xda\xb4\xa4\xd5\x72\x33\x8f\xad\x1d\x36\xb4\x95\x5a\xa0\x1c\x46\x6a\xba\xdd\x16\x9a\x36\x21\xc1\xc4\x89\xa2\xee\xca\xbc\x2b\xea\xd6\xd0\x46\xbb\x69\x66\x43\x93\x17\x0d\x65\x7a\x7f\x4e\xe9\x9e\x9f\x73\x65\x28\x9b\x50\x53\xb5\x84\x64\x5c\x55\x57\x3c\x9f\x73\x13\x8e\x7b\x71\xda\x63\xf4\x14\xcf\xf5\x61\xa0\x2a\xa8\x0f\x54\x05\xf5\x81\x9e\xe1\x0f\x5d\xf8\x37\x88\xba\x5d\x26\x7d\xba\x76\xb3\xea\x12\xf9\x24\x50\xb8\x72\x96\x86\xb1\x89\x06\xf9\x67\xef\x14\x35\x35\xe0\x28\x59\x8b\x1c\x7c\x56\x07\x34\xfa\x6d\xde\xc4\x26\x5f\x05\xbe\x00\x0c\x1f\x35\x07\x3e\x76\x25\xfe\x41\x9a\x71\x4d\x1a\x90\xc2\x0c\x75\x76\xba\x92\x94\xeb\x5d\xb9\x5b\x47\x0c\x2a\x93\x7c\x68\xc3\xa8\x4b\x2a\x71\xd5\xf3\x75\x2e\x22\x2e\x39\xb9\x8d\x45\x5a\xe4\x2a\xa6\x15\x33\x5f\x69\x86\x66\x18\x51\x3a\xeb\xb2\xd4\xe3\x2a\x4b\x3d\x5e\x8d\x46\xa1\x2e\xe4\x91\x96\x06\xdb\x26\x94\x5a\xe7\xe7\xde\x2d\xa1\x13\x7f\xe8\x90\x57\x8d\x70\x0e\xe7\xe7\xa7\x46\xe3\x57\xbf\xda\x5c\x8f\x8a\x7e\x94\x34\x7c\x9e\xc1\x3c\x3e\x41\x39\x9e\x51\xe6\xda\x43\x9b\x55\x49\x26\xae\x89\x19\x36\x81\xf2\x5f\x9c\xf6\x9b\x86\xd1\xf7\xa0\xa1\xbc\x25\x2e\xa9\x0e\xa1\x4b\x4a\x8a\xa8\x63\x2d\x5f\x39\x62\xfc\x37\xe8\xef\xf8\x78\x6a\xdd\x5c\x3c\xd2\x34\xdd\x6e\x14\x47\xa2\x5f\x24\xe0\xb5\xff\x82\xe9\x70\x6e\x69\x69\xb9\xda\x00\xf3\xbe\x89\x45\x7b\x1d\x7b\x13\x03\x89\x7c\x32\x35\xd1\xa9\x14\x1b\xa6\x19\x5b\x2a\x71\xb5\x29\xf0\x3e\xa1\x57\x94\x53\x40\x96\xae\xef\xd2\x32\xa1\xdf\x1b\x79\x60\xe5\x03\xba\x27\xe0\x95\xe8\x2b\x93\xb0\xd0\x3f\xff\x53\xc1\x04\x53\xc6\xaf\xfd\x69\x3a\x6c\x78\xe4\x60\x53\xed\x6b\x9b\xca\x19\x95\x64\xf0\x64\xca\x38\x49\x0b\x2f\x2f\x7d\x56\xd9\xfb\x7a\x94\x46\x39\xf0\xa1\xe7\x47\x7a\x8e\x6b\x9e\x7b\x66\x73\x9b\xad\xa5\x11\xcc\x4c\x91\x84\x5c\xe7\x45\x5c\x80\x5f\x9a\x1d\x08\x3e\xdf\xac\x71\x87\x3d\xdc\x1c\x98\x32\xa6\xc5\x19\x0f\xe6\x3e\x0a\x41\xdc\xbf\x38\xda\xd6\x08\xe0\xd1\x84\x32\x29\x58\x83\x15\xd1\xd7\x39\xd4\x43\xf9\xa4\x0e\xac\xe8\x5b\xd3\x31\x61\xdf\x6a\xc6\x01\x04\xec\xf9\xb8\x0e\x80\xe8\x9a\x58\x9c\x54\xa5\x58\x7b\x19\x41\xa7\x54\x17\x55\x35\x25\x4e\x43\x96\xcb\x43\x34\x74\x09\x77\xcf\x27\x53\x70\xde\xca\x7c\x33\x4f\xbb\x85\x4d\xe4\x25\x09\xc3\x54\xb1\x4d\x27\xe4\xd1\x92\xd5\xfc\x29\xbf\x56\x60\xb1\x91\x70\x17\xcf\x42\xfc\xaa\x69\xe3\x46\x6d\xf8\x4d\x24\x7c\x4e\x50\xd5\x25\x7c\x6f\x60\x30\x60\xeb\x6b\xb4\x68\x4f\xe4\x8f\xd0\x96\xbe\x75\x07\x68\x84\xf3\xc3\x5e\x99\x77\xc5\x04\x7a\x47\xd8\xff\x6f\x00\x61\x71\xad\x61\x4e\xbe\xea\x34\xa1\x0e\x22\x7f\x55\x6b\xa6\xe2\xf7\x3f\xdd\x61\x29\x21\x5a\xcd\x3b\x1c\x72\xe5\xb4\xe1\xd9\xf5\xdf\xc2\x6d\xf0\x49\xad\x0d\xe9\xba\x8d\xc3\x74\xc0\x2f\x1e\x20\xdf\x15\xd5\x65\x7b\x25\xf0\x59\x69\x94\x84\x55\xe4\x66\xf3\x3d\xda\x02\xa1\xe1\x4c\x9b\xc6\x34\x6f\x59\x6f\x05\xbf\x8c\x3f\xfa\x47\x08\x57\xb0\xdb\x9f\x42\x4c\x24\xe1\x0a\x3d\x2d\x67\xad\xe0\xa4\xc4\x4e\xb9\x3a\x47\xbe\x1a\xd9\x0c\x68\xaa\x70\x84\x1a\xce\xad\xf3\xb6\xe2\x44\x98\x64\x63\x90\x66\x96\x44\x36\xa4\xbb\xd6\x57\x6e\x6e\x28\x24\x19\x26\xcb\x40\x38\xde\x40\xf4\x84\x3d\x8a\x8b\xd2\x88\x65\x1f\xa8\x5b\x1f\xd8\xa4\x88\x52\x37\x18\xc5\x0b\xcc\xc3\xba\xd3\x26\x3a\x5f\x7e\xb9\xd9\x4e\xcb\x2c\xb7\x39\xb5\x6f\xa0\x73\xed\x6d\x2c\xa1\x7c\x32\xd5\xbc\x45\xfd\x1e\x59\x5a\xed\x9f\x45\x89\xd9\x22\x16\x24\x7e\x33\xbe\xa8\xd8\xd9\x71\x3a\xcc\xa3\x8e\xed\xcc\x54\xa1\x25\x5e\xf3\x8e\x96\xcf\xc7\x6e\xa9\x16\x8c\xf3\x75\xe4\x24\x93\x99\x76\xce\xc1\x0d\x60\x36\x16\x0d\xc1\x60\xbf\xa7\x5a\x95\xaf\xe8\xde\xf1\x27\xa6\xd2\xb6\x6a\xc9\x2b\xf3\x5c\x2a\x57\xb5\x46\x72\x75\x7b\x71\x18\xa7\xb9\x98\xc2\x0a\x19\x80\x46\x8b\x74\x08\x7b\x8d\x82\x22\x1a\xb4\x6d\x16\x9b\xa4\xc3\xac\x02\x21\x24\xa9\x60\x62\x67\x4b\x09\x74\xdc\x50\xab\x38\x3b\xd6\x45\x16\xcb\x04\x02\xb6\x1f\x43\xbc\x5c\x31\xac\x44\xa4\x67\x66\xac\x74\x47\xae\xd0\x62\x2f\x42\xcf\xbe\xa3\x8c\x53\x5c\xd7\xa0\xe6\x1c\x50\xa0\x30\xc4\x42\xb2\x81\x4a\x1b\x7e\x8f\xd1\x52\x90\x89\x3f\xc5\x95\x3b\xd3\x1f\x4f\x0b\xd9\x4f\x9c\x43\x51\xa2\xa5\x9b\xc5\x5b\x78\xac\xc4\x6d\x86\x65\x9b\x7c\xe7\xa9\xfb\x52\x95\x73\x2f\x8d\x54\x65\xf8\x92\x4a\x02\x07\x26\x4e\x13\x8b\x32\x28\xb6\x64\x10\xe4\xf9\x58\xb1\x81\xba\x51\x6c\xe7\x34\x0f\xd7\xab\xac\xbf\x4d\x7c\x39\x30\xbb\x98\xc5\xe9\x88\xbb\x2b\x3e\x8d\x50\xe2\xa5\x65\x5b\x0d\x89\xeb\x23\x5f\x94\xb8\xae\x66\x6f\x91\x99\x76\x1a\x77\x1a\x5e\xa3\xef\xaa\xe6\x50\xe8\x6a\x6a\x98\x95\x1d\x92\x6b\x96\x78\xfa\x6c\xa0\x24\x4d\x4e\x8d\x94\xd8\x09\x87\x09\x60\xff\x9c\xe4\xed\x97\xcf\x74\x10\x7e\x56\x93\x3b\xaa\x89\x0e\x2c\xcb\xe7\x90\x88\x7a\x85\x78\x34\xa1\xc1\x15\x77\x67\x55\x53\x3d\x8f\x46\x3e\xa1\x69\x2b\x8e\xbe\x6a\xea\x5f\x0e\xbc\x5c\x47\x3f\xea\xf5\x9f\xc4\x95\x89\x7d\xbf\x7f\x41\xec\x46\x2d\x8b\x71\xf5\x84\xb1\xfd\x3f\xd5\xaa\x5e\x09\x86\xdb\xfe\x71\xb5\x9b\x08\x4d\x42\xdd\xf1\x6f\x05\x4a\xd8\x49\x17\x72\x4f\x8c\x54\x83\xd8\x05\x2c\xc2\x8e\xd0\x58\xdd\x8c\x28\x5c\x2b\x03\x85\x81\xcd\xa8\x69\xa4\xda\xd1\x9c\xd4\x9f\xf3\x4d\x9f\x56\x07\x5c\x5a\x42\x27\x9f\x98\x4c\xb8\xc0\xcd\x97\x07\x4f\x29\xe8\x7b\x98\xa5\x6b\x51\xc7\xe6\xbb\x94\x78\xc8\x37\x03\x2f\xf4\x7e\x46\x79\xc2\x72\x0f\x21\xf2\x1b\x70\xfc\xf1\x24\x00\x4c\xe0\xb6\xfe\x40\x75\x70\x99\x81\xcd\xa2\xd0\xec\x52\x7d\x32\x98\x55\x48\x0d\x27\xb4\xae\x8f\xd1\x6c\x47\xa5\xe3\x12\x16\x08\xfe\x2b\x84\x5f\xfc\x3f\x8a\x62\x67\xc2\x55\x20\x93\x0e\x07\xf6\xae\xa8\xb5\xac\x95\x24\x25\x81\x4d\x2c\x95\x40\x07\x3e\x0c\x7c\x27\xc7\x87\x6a\xf6\x1c\xf9\xd2\xca\x9c\xaa\x33\x9e\x19\x4d\x39\xb2\x60\x44\xcd\xb5\xc8\xd9\xc4\x09\x2d\x29\x7b\x16\xbf\x8d\x55\x71\x6c\x5a\x44\x49\x6f\xd6\x17\xa2\x39\x15\x57\x92\x03\x87\x1d\x83\x8d\x62\x1c\xd1\x7c\xf6\x7d\xa9\x36\x2f\xa2\x01\x09\x7a\x4c\x88\xa1\x2b\x01\x74\xd5\xf7\x51\xe4\x4f\x54\xcf\x13\x6b\xd9\x47\xf8\x7e\xdc\xcb\x17\x21\xe1\x84\x5f\xfe\x74\xe4\xa7\x4a\x83\xbc\x72\x30\x19\x58\x75\x06\xdb\xf3\x01\xac\xee\x00\x24\x1f\x8d\xb4\x32\xd3\x23\x25\x42\x3e\x4b\xf4\x51\xfa\xda\xb7\x7e\x7a\xec\x1b\x30\xed\x60\x18\xa7\x1b\x36\xcb\xe1\x14\x25\xba\x3b\x6a\x5e\x6e\xe2\xfa\xc4\x60\xd8\x5f\xd2\x66\xe0\x4d\x1a\xbf\xe9\x9a\x43\x6c\x96\xf1\x56\x84\x69\x75\x33\xf0\x79\x32\xaf\xc2\xe8\x5c\x7b\xbb\x4e\xd0\xa7\x1b\xa7\xeb\x92\x23\xab\xce\x2a\xc7\x76\xc7\x17\xb0\x81\xa1\x82\x88\x7b\x69\xb1\xaf\x7a\xa4\x88\x9d\x6f\x52\xd1\x0a\xb1\xfd\x75\x15\x1a\x5d\x47\xa0\x0b\x26\x17\x8b\xa3\x03\xf5\xde\xd1\xf2\x10\xd3\x05\xad\x01\x72\x02\xd3\x00\x0f\x1e\x5d\xb6\x58\x1e\xef\x29\x07\xbb\xf7\xb1\xa6\x60\x37\xfc\xde\x94\xc0\xe7\xc1\xa5\x66\x92\x26\x61\x3a\x68\x9b\x82\xdc\x38\x1d\xc9\xe3\x8c\x6a\x97\x39\x33\xf5\xb9\x2a\xf4\x59\x4b\xe3\x32\x29\x4c\x46\x76\x26\x22\xdb\x70\xfd\x01\x5e\x90\xf3\xb4\xfc\xf2\xcb\xce\x30\x42\xa6\x60\x2f\x8b\x8a\x02\xfb\x9a\xc3\x21\x97\xc4\x7d\xf4\xce\x48\x69\x7d\xac\xd9\x2c\x8f\xd2\x64\x46\xe9\x9a\xfe\x2f\x81\xcf\x17\xd1\xaa\x0f\x16\xcc\x23\xe4\xe9\x2e\x07\x64\x07\x25\xc3\xd6\xf1\x32\x7b\xd4\x4c\x52\x3c\xd1\x3c\x5d\x67\x10\x07\x61\xe6\x3d\x45\xc3\xbe\xe7\x1a\x58\xc3\x34\xe9\xf0\x97\x12\xda\x82\x3d\x1e\xee\xe4\x08\x31\x4e\x8f\x54\x47\xed\xa4\x74\xf4\xb0\xbf\x31\xe3\x8b\x7a\x20\x34\x71\x76\x11\xa8\x4e\xb0\x8b\x7a\x6b\xab\x22\x86\xbc\x6f\xb3\x86\x0e\x43\x7e\x84\xd7\x2e\x3a\x30\x75\xb4\x90\x01\xab\x36\x38\x79\x10\xad\x15\xf3\x05\xd5\x81\x9d\x45\x79\x27\x0a\x85\xa2\xf3\xa2\x93\x92\xf7\x15\xc7\xab\x2a\xa2\x8b\x6d\x2f\xca\x63\xe3\x5c\xfb\x80\x9c\xdd\xd4\x30\xda\x4d\x15\x23\xe4\x66\x30\x8c\x2d\xe2\x62\xe9\x8b\x69\x38\xa7\x9a\x3b\x2a\x07\x2e\xb1\x55\x55\x13\x00\x8b\xc5\x2d\xa4\x20\x7c\xa2\xd0\xa3\x61\x96\xee\x52\xc5\xff\x91\xe7\x88\xfc\x73\x1a\x6a\xc8\x0d\x9f\x6a\x69\xb7\x02\x4d\x74\x1f\xa9\xed\xf6\xc1\x54\x88\xbd\xfc\xd2\xe1\x66\x98\x66\xe8\x3b\x65\x35\x85\xc0\x37\x09\xbd\x8f\x29\x8e\x3c\xf0\x03\xb5\xea\xbf\x14\x77\x50\xfd\x70\xd8\xe7\x41\xdf\xd0\x52\xc3\x9c\x2c\xd6\xa3\xd0\xce\xfa\x3a\xf4\x6f\x4e\x32\x7d\x3c\x8a\xfa\x70\xa2\xe6\xfa\x59\xbc\x97\x30\xf2\xe5\x2a\x7c\x8e\x05\x4f\xf8\x44\x15\x6b\x07\x51\x12\x85\xdc\xdc\xf3\x22\x87\x3d\xff\x50\x89\xcb\xfe\xc3\xa9\xb8\x60\x65\xbe\xd9\x89\xaa\x79\x68\xb5\x29\x12\x9a\x12\xf9\x58\x41\xa2\x9d\x34\x2c\x49\x3c\x71\x4e\x61\x1f\x1c\xaa\x03\x72\x7e\x34\xf2\xb3\x80\x8d\xf6\xf0\x9a\xbf\x8f\x50\x46\x7a\x8a\xfd\xd3\x5d\xcb\x57\x1b\x9a\x05\xaf\xfa\x0f\x2f\x2a\x82\x5f\xcf\xc4\x31\xcb\xb9\xbd\xc2\xef\xe8\x1b\x88\x07\xf8\x24\xf0\x8f\xa1\x6f\x4d\x27\x8e\x12\x8b\xc7\x20\x0a\x72\x0d\xa5\xba\xe0\x0c\xb1\xa3\xc4\x26\xda\x43\x0b\x6c\x0b\x59\x23\xb7\xe7\xe8\xcf\x37\xbb\x16\x85\x0f\xce\x3d\x91\x80\x9d\xd3\xd9\xd8\x39\xb5\xdf\x26\x06\x1e\x57\x4c\xe6\x54\xf6\xa0\xd3\x92\x17\x07\x97\x9a\xc6\x16\x89\x99\x51\xc4\xce\x93\x8a\x77\x73\x4f\x83\x6c\x57\xea\xdc\xad\xca\x24\x31\x02\x39\x88\x41\x34\x5d\xa5\x60\xbe\xfe\x69\x0e\x23\x92\x7c\x26\x5d\x11\xd7\x64\x75\x74\xde\xf5\x4f\x55\x93\xcd\x55\x76\xab\xb9\x2a\xab\x33\xcd\x62\x2d\xc5\x24\x25\x5f\xef\xf0\x97\x15\x69\x9a\xcc\xfa\x3e\xc8\x3f\x1d\xa9\xe6\xbd\x4f\x02\x5d\x16\x85\x7e\x09\xff\x99\xab\x08\x98\x76\xa7\x64\x91\x26\x07\x3d\x7e\x44\x93\x8e\x8f\x1d\xaf\x30\x2c\xb3\xb6\xf8\x88\x49\xde\x44\xef\x5c\x12\xaa\x9a\x87\x1c\xf6\x23\xdb\xa5\x2d\x67\xeb\x7d\x65\x82\x87\x4c\x1d\xc7\x33\x63\x1f\xac\x16\x26\xe9\x91\x38\x91\x73\xa7\xbb\x4e\xfb\x2f\x1f\xd7\xb9\x91\x16\x59\x3a\x8c\x42\x96\x7b\xc1\x3a\xf3\xb1\xce\x37\xee\x70\xac\x84\x05\xe1\xd3\x69\xfa\x18\xc9\x87\x9a\xa4\x33\xeb\xb7\x9e\xcd\xc0\xaf\x27\x1f\x20\x0a\xc3\xf4\xe7\x7c\x41\x3a\xc8\x7c\x60\x62\x3a\xf9\x6e\x25\x18\xfb\x50\x19\xa2\xb2\x26\x99\x98\x76\x4d\xc4\x3c\xd5\x28\xc0\xd2\x0a\x79\x1e\x40\x70\xbf\xa5\xec\x06\x1b\x63\x0d\xf5\xad\x45\x9d\x5d\x7e\x37\x3d\x1b\x78\x49\xa9\x9b\xf4\x8b\x32\x5e\x55\x28\xfb\x5d\x3c\x0c\xf6\x60\xe1\x01\x81\xaa\xc7\x63\x85\x4a\xe7\x21\x1c\xb7\x70\xfd\x97\x02\xd5\x57\x7e\x49\xb9\xd1\x15\x99\x85\x85\xaa\x50\x98\xb8\x95\x45\xe8\xca\x0d\xe7\x51\xc1\xe2\xe4\xc2\x69\xae\x01\xfe\x07\x66\xd5\x36\x94\xf6\x08\x23\x62\x7c\xa2\x54\xf4\x06\x26\x4a\x0a\x13\x25\xb3\x2a\x46\xbb\x34\xd2\x79\xe3\x25\xa0\x8d\x60\xa6\x9c\x54\xf2\x76\x27\xeb\x1a\x74\x0d\x31\x97\x1c\xbd\xf0\x91\x32\xb3\x7a\xe4\x02\xab\x2a\x51\x49\x93\x99\x2a\x29\x17\x11\x9d\x86\x6b\xef\xfe\x81\x6e\x6c\x7f\x57\x2d\x9c\x6b\x91\x5d\x77\x51\xb6\x74\xdc\xfb\xb2\xed\x4d\xe4\x51\x9a\xed\xee\xf0\x3a\x07\xf6\xbf\x3f\x25\xb5\x42\x6a\xf3\x46\xab\xd3\x8f\xb4\x3a\x7d\xcd\xca\x19\x25\x44\xa3\xe1\xc8\x90\x7b\xeb\x95\x7a\xd2\x0f\xd4\xba\xb9\x66\xf2\x5d\xaa\xbc\xb1\x8f\x05\x92\xb5\x9d\x10\x43\x1b\x81\x5f\xec\x00\xe3\xba\xc4\xdf\x37\xe3\xdc\x77\x4f\x90\x7a\xfb\x73\xda\x9a\xb5\x0f\x32\x1b\x87\x8e\x94\x52\x1f\xeb\x96\x89\x2b\xb2\x0e\xf5\xe2\x98\xbc\x3f\xb6\x7e\xa8\xec\x34\xff\x4f\x08\x40\xba\x3d\xec\x65\x07\x28\x7f\xae\xa5\x6a\x53\x3b\x5b\xaa\xe5\x8a\x45\x77\x1d\x7f\xb5\x5a\x59\xb5\x7f\x15\x20\xc0\x87\x23\xaf\x9a\x70\x1c\x77\x85\x9f\xfc\xb7\x23\xdd\x44\x72\x0e\xeb\x9e\x20\xf8\xd5\x13\x42\x09\x7b\x06\xb0\x98\x6c\xa8\xc4\xee\xe3\x06\x29\x2d\xed\xd6\x80\xe8\x25\x68\x58\xf0\x03\x61\xc7\xf4\xa0\xf1\xb2\x88\x87\xec\x24\x68\x43\xb6\x26\x47\xa8\xcb\xa2\x4e\x0f\x41\x15\x56\x34\x60\x00\x12\x90\xaa\x96\xcc\x53\x50\x15\xc4\xab\x58\x8f\x8a\xd7\x01\x20\x62\xc6\x21\x0d\x3d\x81\x3d\x9d\x4f\xea\xdd\x11\x12\x1b\xf5\xfa\x04\xe7\xce\xa8\x0d\x02\x3f\x04\xa8\xff\x96\x72\xe4\xbf\x38\xda\x6e\x5b\xbb\x32\xdf\x1c\xda\x22\x4b\xc3\xbe\x1d\x44\x21\x97\x35\x99\x1f\x1b\xf8\x92\x86\xee\x22\xee\x66\x91\x4d\x3a\xf1\xc6\x6c\xb5\x3c\xb2\xb4\xf1\x48\xe9\x12\xa1\xf0\x2c\x40\x0c\xbd\x64\xc6\xad\x55\x40\x4e\xb5\x20\x9b\x0d\x4d\x56\xe4\xfa\x37\x55\x19\x65\x5a\x4a\xfa\xd0\xa1\x66\x2f\x8e\x12\xe6\xea\x89\xd2\x65\xc3\xdb\xad\xa9\x2e\x99\xd8\xae\xd9\x38\x7f\xa2\x1a\x3c\xcc\x95\xc4\x42\xef\x90\x90\xa3\xf3\x3e\x1a\x5a\x59\x76\xdc\xa4\x86\xd3\xc1\x61\xb9\x3f\xe0\x03\x37\x54\x09\xe0\x9a\xc2\x72\x1e\x62\xac\x3a\x24\xba\x7a\x0c\xe2\x01\x3d\x4d\x8c\x79\xd5\x0c\x4d\x62\x73\x3b\xeb\x09\xe3\x57\x79\xe8\xb2\xe7\xa3\x52\x08\xba\xa8\xf1\x0f\x8f\xea\xe4\xd6\x92\xdf\xde\xd1\x79\xdf\x0d\x5f\x0d\x77\xe4\xe6\x90\xf5\xc5\xc3\xbf\x31\xd1\xfa\x9d\x26\xdd\x2a\x59\xa2\x7b\x52\xfa\x4b\x4e\x8c\x29\xf0\x2f\x67\x68\xb3\x6e\x9a\x0d\xa8\xe9\x64\x96\x6e\x09\x5f\xf8\xb7\xb1\x10\xf0\xc4\x18\xf9\xd7\xfc\xb7\xb1\x5c\xc8\x8c\xf1\x41\x72\x3f\x2d\x73\xdb\x4f\xe3\x0e\xc2\x4f\xe6\xab\xd0\x00\x11\xee\x4a\x5d\xed\x27\xb3\x9d\x32\x44\x5c\xe9\xea\x9a\x78\x1b\x52\xe4\x54\xce\x5a\x1b\xf4\x38\x0e\xaa\x22\xd1\x8a\xf0\x85\x4f\xd0\xba\x2d\xcd\x75\x75\xa2\x52\xeb\x69\xb6\x4a\xa5\x42\xbf\x30\x41\x2f\x5d\x9a\x09\xb6\x6f\x50\x47\xe7\x5f\x69\xe6\x11\x3f\x47\x0c\xac\xab\x9a\x08\x7b\xb5\x2e\xce\x5a\x8f\x12\x50\x04\xbd\x5f\x5c\x8d\xac\x1f\x59\x32\x58\x67\x68\x20\x05\x96\x09\xf7\x77\xbd\xf8\x9a\xbc\xf8\xbc\x57\x0d\xdc\x9c\x6c\x7c\xf2\xdd\x9b\x6c\xf9\x0f\xe2\xd9\x0c\xf8\xaa\x28\x3d\x6d\x69\x23\xb5\x5b\xce\xb6\xf7\xa0\x74\x51\xef\x6e\x79\x39\xbc\x1d\xca\x32\xe1\x98\x96\x86\x60\x37\x4f\x61\x36\xd3\x74\x90\xba\x1e\xbd\x74\x96\x28\x1e\x79\xc6\xde\x65\x8a\xa9\x51\x5f\xfe\x90\x76\x2a\xa4\xf8\xb3\xbc\xb7\xf1\x0d\x05\xca\xe6\x73\xb6\xa5\x24\xf7\x8e\xd7\x55\x19\xd9\xc4\x2c\xa4\x2d\x95\xa9\xfa\x81\x47\x9d\x4e\xa8\x68\xaa\xbf\xfa\x45\xc5\x75\xbd\xac\x2f\x73\x7a\xb7\x5e\x5a\x5a\x6e\xc6\x69\x51\x58\x6e\x94\x12\x24\xd1\xaf\xeb\xa7\x7c\x0c\x8e\xba\x1a\x90\x37\x67\xd8\x52\x5d\x38\x26\x19\xe4\xee\x10\xde\x7d\xac\x79\x4b\x91\xe1\x97\x8e\x1b\x3c\x3d\x52\xba\xef\xa7\xeb\x6a\xd0\xac\x0e\x8b\xee\x72\x6e\xa7\x52\x3c\x76\xaf\x3b\x13\xbd\x60\x5f\xa0\x95\x1a\x8f\xfb\xce\xc8\x57\x18\x81\x49\x03\x8c\x39\x4b\xaf\x04\x57\xb6\xb7\xa5\xae\xac\x84\x03\x8c\x03\xb9\xb6\xf7\x51\x61\x9b\xbb\x59\x4b\xe2\x2a\xdb\xaf\xda\xb0\xa0\xa5\x4a\xba\x4f\x1b\xce\xfc\xe3\xb6\x72\x1b\xb9\xa6\xf5\xdb\x6d\x5e\xc6\xc5\x36\x8a\x4e\xe0\x91\x95\xdf\xa1\x27\x2f\xca\x18\xbe\x86\x14\x9a\x2c\x8b\x2c\xf2\x04\xf9\x5f\xa5\xa6\xf0\x50\x11\x00\x1f\x22\xda\xf0\xda\x7b\xae\xaf\xa4\xdc\x78\xaa\x0a\x31\x24\xdb\xaf\xae\x5c\x44\x9d\xf1\x7e\xd0\xe6\x72\x57\xf5\xfd\x3e\x1c\x4d\x0a\x38\x54\xdf\x2c\xba\xe4\xde\x0d\xef\xc4\x68\x42\x18\x62\x65\x79\xb2\xb9\x19\xa4\xa0\x9b\x34\xf7\x54\xbd\xf0\xb0\x08\x0c\xd3\xc5\x63\x73\x3f\x8e\x29\x86\xce\xc9\xef\x4c\x3a\xc7\x29\x7d\xb0\x01\x89\xc0\x68\x49\x8d\xab\x8a\x10\x76\x55\xa9\xff\x55\x6b\x2d\xd5\xea\xd0\x4f\x83\xf0\xe4\x9c\x92\x5b\x3c\x19\x28\x50\xe0\x8a\xba\xf5\x46\x4b\xb1\x94\xd9\xb1\x12\xa0\xf7\x47\xae\x87\x74\x2d\x85\x0d\xb0\xa3\x3f\x38\xcd\x39\x96\x27\x40\xcc\x36\x83\x76\x30\xf1\x27\x92\x09\xd5\x2f\xb3\x0e\x89\x7e\x7b\x5b\x95\x87\x23\xa5\x8b\x3f\xdd\xac\xf6\xd5\xaf\x36\xd7\xad\x89\x8b\x3e\xdc\x1c\xf1\xc2\xbf\x3d\xf2\x2f\xff\xdb\x2a\xb6\x7e\xd1\xb2\xea\x33\x42\x25\x86\x15\xf8\xc4\x01\x23\x1d\x1b\x1b\x44\x3b\xc2\xef\xf0\xfb\x17\x2a\x5f\xca\xca\x79\x51\xfe\x63\x0a\xc3\x5a\x3c\xd2\xb4\xaf\x99\x5e\x8f\x31\x13\x8c\x27\xa7\x69\xe5\xb5\x73\x03\x4f\xaa\xca\x52\x5e\x4d\x24\xf5\x45\xcb\x27\x40\x3d\xd6\xc0\x17\xf2\x5b\x0d\xd5\x07\x44\x15\x37\x0c\x58\x72\x93\x5e\xa0\xc8\x6f\x3a\x55\xbd\x32\x0f\xa1\xb2\xe3\x94\x06\xae\x2a\x82\xf7\xf4\xae\xb6\xb4\xd4\x0c\xfb\xb6\x9b\x2b\xe1\xba\x6b\xd8\x16\x84\x08\xa7\x8c\x10\xee\xb9\xe8\xa5\x6b\x06\x11\x37\xa6\x00\x00\xf8\x48\xa3\x01\x1f\xd5\x76\xcf\x95\xc3\x3c\x34\x31\xc8\x65\x0c\x21\x04\x1e\xb6\xfc\x78\x6a\x33\xf8\xea\x57\x9b\x69\x17\x06\x5b\x0d\x4f\x18\xf9\x03\xfa\x0c\x1f\x8f\x7e\xd2\x7b\x87\x27\x9d\xb2\xca\x85\x4c\x1c\xe5\x05\x78\xd5\xb8\x83\xef\x28\x5a\xdf\x77\x26\x78\x97\xfd\x28\x9c\xad\x96\x4b\xae\x67\x04\x4a\x30\xe0\xdd\x09\x39\xa9\x86\x13\x08\xb9\x3a\xfa\xe9\xed\x5d\x4f\xcb\x82\x6a\x12\x7b\x6f\x02\xb5\x15\xad\x92\x2f\x48\x4b\x6d\x12\xa6\x71\x6c\xda\x29\x86\x8e\x6e\x5d\x54\x15\xcc\x4b\xa3\x9f\xf0\x9c\x13\xb4\xec\x72\x53\x6a\xc3\xb5\xb7\xc3\x49\x90\x8f\xd5\xea\x39\xcc\xec\x20\x2a\x07\xa8\xe8\x29\xaa\x91\xc8\x23\x9e\xc0\x26\xe9\x64\x10\x5d\xef\x36\x22\x56\xec\xfe\x3b\x5b\x9f\x65\xdc\x97\xf7\x53\x47\x6b\x43\xb2\xb8\xf5\x43\x55\xff\xef\xd9\xa4\x8c\x12\x34\x1b\x62\xb9\xc6\x1b\xe6\x63\x5a\x16\x11\x86\x5c\x41\x3e\xc9\x27\x0e\x26\x1b\xf6\x6d\x92\x0e\x6c\x62\x74\x1b\xcf\x3d\x05\x29\xdf\xab\xd1\x51\xae\xe2\xcc\x61\x9a\x15\xf9\x9c\x87\x0e\x18\x73\x45\x75\x89\xdb\x6e\x84\x32\xad\x03\xf5\xb7\xb5\xbc\xce\x5f\x05\x9e\xc8\xda\xb5\x55\xd4\x8c\xc2\x32\xbb\x5c\x61\x89\x17\xcb\xab\x1a\xe3\x14\x54\x3f\xad\xb2\x9f\xfd\x11\x5d\x3a\x1f\xd7\x34\xb4\xbe\xd2\x1c\x44\xab\x56\x69\xec\x7d\x4f\x6b\xec\x7d\xaf\x6e\xb6\x42\xc3\x80\x5e\x69\x2d\xd1\x6d\xba\x25\x71\xc5\x1b\xc3\x36\x94\x60\xcc\x0d\x25\xff\x75\xc3\x31\x73\xc3\xa8\x10\xda\xb2\xd8\x89\x2b\xb5\xd9\x0b\x35\x57\x74\xb8\xb9\x96\x16\xcc\xc9\x74\x5a\x48\x5e\x91\xfd\xda\x44\xef\x7e\xc7\xbe\x66\xb1\xd6\x68\xfb\x1c\x2e\x1d\x8c\x94\x0b\xf2\xd9\x49\x6f\xd2\x92\x43\x7b\x2e\x39\xa9\x5a\xf6\x45\xb7\xbe\xf7\x3d\x7f\x4a\xd8\x37\xd5\x97\xf3\xb1\x2a\xf3\x0c\xfb\x51\x62\x0d\xa4\x3c\xf0\xbf\x77\x14\xd1\xff\xd8\x48\x0b\xd4\xe9\x40\x3d\x4c\x07\x73\xca\x0b\xf0\x8a\x62\xea\x1c\x9f\x54\x2e\x6d\x2c\x2c\x70\x5d\xf5\x36\x49\xab\xf0\xb1\x22\xc0\x98\xd8\xbe\x36\x53\xfd\x10\xb0\x12\x94\x4d\x14\xbe\x20\x08\xdc\xb9\x09\xea\x6f\x95\xe0\x57\xcb\x21\x3d\x28\x6c\xbf\x6c\x1e\xc8\x27\xc1\x7e\xf5\xd4\xb2\x17\xb4\x6a\x05\xf3\x7f\xf8\x44\xb7\xe5\x65\x36\x8c\xd2\x92\x0b\x20\x78\xaa\x57\x31\xa8\xb4\xef\x9b\x44\xf3\xbe\x7f\x84\x27\x99\x90\x31\xb7\x63\xbe\x87\x0e\x35\x37\x6c\x1c\xb3\xe5\x00\xd6\x1f\x94\x2c\xf8\x58\x91\x33\xd6\xcd\x9a\x53\x7a\x14\x25\xea\xc7\x90\xc0\xe0\x93\x5a\xfe\x6a\xde\x4f\x0b\xb4\x93\x3b\xd7\xa5\xea\xf5\x03\x2a\xe7\xb0\x46\x1a\xe9\x9c\xbc\x5c\xa7\x63\x3b\x7b\x15\x47\xf0\x9b\x14\xcc\x30\x72\xad\x38\xa9\xb0\xfa\x71\x22\x05\xae\x30\xc0\xe4\x72\x7c\x78\x96\x6a\xdd\xd2\x4c\x4e\xcf\x03\x39\xde\x66\xe0\xb5\xa7\xce\xa9\x4a\x2f\x23\x3d\x59\x3f\x4d\x3b\x30\xfb\x07\x10\x76\x8b\xe0\x0b\x3e\x56\x73\xa6\x9d\x59\xdb\xb1\x60\xf9\xe2\x26\xd9\xc8\x48\xab\x00\x21\x5a\x3b\xaf\x4a\x50\x5f\xfe\xa5\x5f\xfa\x6c\x24\xd3\xff\x59\xc7\x26\xfb\x3d\x9a\x7c\x8b\x80\x39\x54\xa7\x21\xc2\xba\x35\x06\x47\x83\xc5\x5b\xf0\x35\x08\xab\x51\xca\xa6\xbf\x6d\x1d\xa0\xa7\x80\x05\x96\x23\x06\x20\x0a\x73\x63\x4f\x63\x3e\x45\x99\x29\xc3\xdd\xef\xd1\x2c\x73\xea\x45\xfe\x81\x32\x40\x00\xa4\x71\x4e\x89\x95\xb7\xa3\xac\xe8\x77\xcc\xc6\xac\x32\x47\xba\xc0\xd4\x5b\x87\xa0\x54\xd7\x2a\x7a\x82\xbe\x39\x70\xba\x9d\x7d\x69\xa9\xf9\xb5\xd2\x64\x9c\x0b\xb2\x2f\x8b\xea\x46\x39\xa6\x1e\xe5\x8b\x4b\xcb\x33\xde\x80\xe1\x87\x23\xdf\x9b\x77\x0b\x81\x26\xc2\xeb\x4d\x6c\x09\x9c\xfc\x70\x7b\x01\xef\xdc\x33\xd5\x22\xc0\x85\x0a\xec\x7c\x98\x86\x0f\x09\xa3\x40\x44\x7e\x61\xa4\xf1\x96\xb8\x93\xae\x11\xa0\x51\xbd\x6a\xfc\xf1\x05\x24\x25\x7c\xa2\x40\xa1\xcc\x26\x76\x9d\x26\x4f\xf5\xe0\x35\xb8\x25\xcd\x30\x75\x82\xb8\xc3\x8e\xda\x12\x9c\x88\xa0\x77\xb9\x9e\x62\x50\xb8\xe2\x6d\x16\x15\x51\x28\xac\x4e\x2c\x05\xbf\x87\x97\x0e\x6e\xee\x6c\xcb\x63\xad\xbc\x98\x01\x4b\xbb\x3b\xb5\x46\xfc\xf5\x26\x3d\x25\x26\x75\x0a\x2a\xa4\x05\x3a\x6a\x34\x31\x5e\x6c\x0e\xcb\x38\x96\xb5\x5e\x79\xc2\x2f\xd6\x78\xc2\x87\x26\x8b\xda\x69\xa9\x01\x33\xb8\xd5\xf2\x71\xa0\x3b\xf8\xca\x4e\x94\x52\x0b\x1b\x16\xdf\xb7\x28\x2b\xc0\x3e\xb6\x43\x71\x86\x6e\xa3\x10\xc2\x62\x62\x6e\xef\x8c\xd3\x74\x35\xdf\xe3\x29\xc1\x8f\xb0\x75\x52\x19\xea\x9f\xfe\xb5\x96\x02\xdd\xee\x53\x77\x1e\xea\x5b\xd7\x54\xaf\xdb\xae\xb1\xb2\x09\xbf\x82\xfd\xd0\x79\xd3\x54\x2f\x5f\x5a\x50\x6a\x20\xd5\x61\x6c\x0d\xef\xdc\x88\x5b\x4f\xa9\x18\x76\x5a\x58\xfe\xf9\x66\x37\x2a\x38\x23\x73\xaa\x66\xca\x73\xaf\xae\x1b\x33\x8e\x2c\x7c\x80\x84\xb2\xd5\x70\x76\xf7\x7a\x3c\x9a\x3c\x47\x98\xe8\xd9\xf8\xd7\x74\x90\x72\xad\x0e\x65\xb0\x49\xcf\xf4\xd0\x49\xbb\xe8\x75\x48\xab\xab\x63\x2f\xdd\x91\x7a\xdb\x0f\x5c\x22\x32\x30\x49\x27\x85\x6e\x42\xad\x83\x5e\x8d\x29\x6e\x27\x22\x21\xbc\xbe\xb4\xed\x6a\xd5\x44\xc0\xca\x17\xb4\xad\xf3\xd5\xa9\x41\x5b\xa5\x64\xe5\x60\x10\x41\x7a\x01\xba\x54\x58\x6e\xf8\xb8\x0e\xd7\x4a\x6c\x41\x5a\x97\xf4\x19\xa5\x71\xe4\x04\x8f\x94\xc9\x61\xde\x4f\xd7\x9f\xf4\xed\x34\xdc\x04\x8e\x5b\xbf\xa1\x9f\x03\xf3\xff\x81\xcb\x7f\x6f\xa4\x0c\x64\x26\xc4\x43\xde\xa1\x9d\x0c\xf8\x20\x8a\xc2\x0c\xda\x91\xdf\x98\xe6\xac\xa3\x38\xf5\xff\x52\xa4\x8e\xf5\xea\x4f\x91\x31\xe0\x79\x9e\x56\xcb\xa2\x59\xdb\xc0\x2e\x2a\x7d\xf9\xd5\x77\x01\x19\x39\xeb\x3b\xca\xfe\xce\xd3\x2d\x95\x40\x9e\xa6\xad\x56\xb8\x64\x34\xbc\x45\x3c\x5b\x15\xd4\x0f\x50\x81\x13\x0c\x16\x72\x2e\x13\x75\xe3\xab\x4a\x66\xb8\xc8\x4c\x95\x1c\xa2\x4a\x2a\x4d\xde\x74\x3d\x58\x90\x40\x72\x72\x06\x18\xd5\x03\xe4\xff\x18\x79\x95\xab\x41\xfe\xc2\x13\x5e\xf5\x04\x43\x00\xbf\xbb\xb7\xa5\xf4\x1c\x4e\x8d\x26\xba\x29\x15\xab\x80\x36\x6d\xd1\x85\xa7\x2b\x75\x39\xb4\x57\x6a\xba\xc1\xa0\x93\x36\x77\x17\x87\x3a\x25\x3b\x5e\x64\xd6\x16\x73\xd5\x93\x9f\x20\x6c\x03\x2e\xda\x47\xaf\x0d\xe9\xfe\x29\xa5\x2d\xb5\x63\x5c\x6d\xd9\xd8\xb4\xae\xab\xb7\x63\xf3\x3e\x18\xcc\xe0\x1a\x3d\xd0\xa2\x5b\x70\x9c\x70\x8c\xc0\xea\x01\x22\x0d\xb8\xea\xcb\x36\xf3\x3f\xd9\xf2\xe5\x1c\x2d\x50\xd8\xb1\x26\xde\xa7\x86\xc4\x1d\xd5\x48\xc6\xc6\x7c\x48\xd5\x6e\x29\x13\xfb\x3d\x63\xef\x2a\x71\x8b\x06\x23\xa0\x65\xec\x14\x80\x2b\xff\x4c\x2b\x68\x5c\xa7\xf0\x00\x31\xc4\x79\xb4\x99\x0a\x77\x59\xd5\x0f\xae\x7f\xa6\xc3\x7c\xdb\x46\xaf\x3a\xf1\x64\x44\xe5\xf7\x14\x4c\xca\xb6\x40\xf8\xe1\x9d\xca\xb6\xa9\x9b\x96\xbd\x3e\x94\xa3\xd8\xaf\x59\x91\xf7\x36\xb5\x66\xe2\x35\x65\x26\x54\xac\x9b\xac\xda\xe4\xdd\xcc\xbe\xa5\x6a\x6e\x27\x46\xde\xb7\xf5\x9c\x72\x51\xec\x9a\x28\x06\xb1\x1b\xa0\xc9\xf7\x09\x5a\x14\xdc\x8d\xde\x0a\xff\x07\xa5\x13\xfc\x1f\xc1\xb3\xd3\xf8\xc3\x2f\xee\xf6\x0d\xd5\x05\x7d\x8b\x8c\x13\xba\x7d\xf1\x69\xf3\xf3\xfe\x4d\x65\xf2\xfe\x6f\x34\x9f\xe6\x23\xa5\x01\x74\x45\x49\x81\x64\x76\x60\xb2\x55\x12\x97\xa0\xa2\xb0\x50\x00\xe8\xc5\x08\x07\xe0\x80\xf2\xee\x8c\x63\xc2\x70\x9d\x54\x08\xd7\x56\x44\x5d\x48\xb9\x21\x5e\x55\x19\xc1\x05\x85\x1f\x0f\x6c\x9e\xc3\x44\xa0\x9a\x7a\xe2\xa7\xae\xbc\xd5\x9d\xe0\x90\xc9\xdb\x36\x2f\x52\xb8\xdf\x22\x85\xba\xab\x54\x4a\x2e\x7a\x4f\xbe\xb9\xa7\x5b\x7e\xe7\x67\x13\x29\x16\x9a\xd5\xf0\xd5\x0d\x45\xf4\xcb\x87\x99\x85\x87\x07\x57\xf3\xb4\x4e\xc3\x45\x15\x49\xbf\xf0\x37\xff\x73\x4a\xfc\x9d\x3e\xff\xc2\xa2\x1c\xd7\x30\x1e\x69\x89\xdf\xe5\xf7\xc7\x63\x00\x69\x9c\x94\xeb\xca\xbc\x63\x60\x4c\x8b\xe2\xe1\x6b\x4f\x05\xba\x71\xaf\x66\xc7\x69\x9b\xdc\x3a\xeb\x77\x0c\xe6\xff\x59\x29\x17\x5e\xd1\x7e\x4a\x97\xa7\xe2\x83\x43\x87\x9a\xed\x04\x75\x64\x34\xa1\x9d\xd6\x42\x28\xa7\x3f\xd3\x17\xaa\x9d\xae\xbb\xa8\xd2\x75\xb7\x2c\xf9\x35\xcd\x87\x09\xd1\x60\x68\xb3\xc8\xc4\x1c\x48\x22\x91\x86\x03\x33\x32\xf1\xdb\x1a\xc7\x6d\x8c\x95\xf5\xd1\xdb\x53\x01\xd0\xcb\x2b\xf3\xcd\x8e\xb5\x43\xa2\x92\x88\x19\x65\xe3\xd0\xa1\x2d\x40\xd5\x78\x64\x9f\x3a\x95\xf6\x7e\x54\x30\x7d\x04\x3b\x0b\x3b\xf2\x4c\x14\xf8\x51\xb6\x69\xb4\xfc\x5c\x99\x43\x78\x26\x3b\x6c\x8d\x7b\x51\x73\x90\x16\x7d\xce\xd6\x80\x24\x3e\x40\xb6\x86\x9f\xc1\x9b\x15\xd7\xab\x9a\x61\x31\x28\xc3\x3e\xbd\x2f\x6c\x23\xb7\xd1\x58\x29\x9e\x01\xd5\x87\x11\x62\xbc\x37\x15\x62\x10\x8d\x80\x0c\x67\x39\x08\xd4\xc0\x02\x1f\x2b\x2c\xa1\x13\xe5\xd4\x19\xd5\xd9\x4d\x7f\x0c\x34\xe6\x11\x1e\xb8\xdb\xd0\x1d\x4c\xf3\x88\x94\x67\x30\x54\x6e\x8d\x26\x24\xdb\xaa\x6b\xe2\xe3\xc0\x4f\x93\x9d\x2d\xe7\x85\x10\xb5\x35\xf6\x24\x3e\xab\x9e\x5f\x75\x75\x24\xf0\x68\xf8\xba\x0d\xfb\x69\x1e\xa7\x6b\x66\x35\x02\x11\x47\x84\xb6\xb4\xda\xa9\xb3\x56\xec\x66\x26\x09\xfb\x51\x6e\xc1\xd4\xc0\x9e\x00\x51\x18\xf0\x99\xef\x8e\xbc\xf0\xc0\xa5\x09\xcd\xd2\xb8\x13\xb9\x72\xb1\x5b\x87\x16\xbc\xc4\xa6\x47\x47\x06\x51\x92\x66\x51\xc1\xaa\x73\xee\xae\x9d\x70\x86\xde\x07\xaa\x45\x92\xdb\xea\xd8\xb9\x4f\x33\x8d\xaf\xd5\xb9\x48\x66\x51\xbe\x0a\x9a\x35\x52\x70\x2c\x71\x92\x82\x37\x94\xab\xd5\xd3\x6a\x0b\x5e\x33\x71\x69\xb9\x18\xcf\xbc\xa9\x09\x23\xb2\x29\x69\xae\xc5\xe6\xe2\x91\x03\xd5\x0d\xe2\xc1\xbc\x87\xa0\x0e\x5b\xc6\x71\x7a\x6f\xbc\x09\x6b\x69\xeb\xef\xe8\x9a\xf5\x1f\x62\x85\x42\x71\xe3\x31\x62\x1d\x21\x5c\x57\x1b\x3a\x26\x26\xe0\x21\x24\x46\xa7\x14\x6c\xf4\x3d\xed\x79\xfb\x9d\x09\x1d\x36\x4a\x81\xb1\xbb\x1d\xa7\xf7\xc5\x5e\xdc\x13\x92\xe0\xf4\x18\xf9\xda\xa7\x3a\x5e\x0e\x1d\x6a\xc6\xa9\xf4\xa9\x61\x31\x01\xf2\x7e\x5a\x33\xa9\x4f\xd7\x55\xf4\x21\x1c\xe1\x59\x6a\x1f\x7a\x50\x63\xfc\xa1\x72\xd9\x64\xce\xb9\x68\x7c\x4a\x9c\x4f\x97\x25\x09\x80\x38\xad\xe6\x43\x93\x85\x79\x61\x1c\xdd\x13\xe3\xf6\x86\x1e\xc4\x37\x54\xb7\x8b\x09\x89\x45\x93\xef\xf6\x86\xdb\x90\x25\x74\xea\x1d\xde\x46\x6c\x53\xeb\x25\x9e\x9a\x68\x6e\xa5\xfd\x1d\x2b\xc5\x5b\x9a\x8d\xb8\xb3\xb5\xdf\xb7\xa5\x3b\x7f\x54\x19\x6d\xf4\xdd\x7c\xa2\x02\xe3\x0d\x5b\xcc\x2a\xa1\x34\xac\x05\x88\x66\x1f\xa8\xe6\x7e\x4e\x46\x24\x95\xae\x41\x00\xf3\xb4\x8c\xb9\xd4\x21\xa6\x6f\xaa\x9b\xf2\x62\x9d\x2d\x62\xc7\x86\xd5\xb6\x35\xe1\x0a\xf0\x08\x43\x11\xe9\x05\xcb\x5b\xc8\x2a\x5f\x27\x1b\x54\x86\xfd\x59\x95\x9c\x29\x63\xf6\x4f\x26\x37\xd4\x86\x73\x5b\x99\x69\x79\xc1\xbc\x6e\x5a\x26\x1d\xff\x02\xb1\x18\xbf\x87\x19\xc0\x27\x53\x75\xc1\x95\xf9\xa6\x4d\xc2\xb4\xcc\xc8\x5b\x0e\x73\x13\x71\x23\xe4\xcd\xf9\xb8\xd5\xfc\x8c\x8d\x73\x3d\x2a\x12\x9b\x3b\x9b\x2d\x91\xcc\x50\x81\xea\x95\xa9\xe2\xe0\xca\xfc\x4a\xb3\x93\xae\x27\xeb\x26\xc3\x33\xc6\xe8\x3a\x4b\x8b\x08\x1f\xd7\x59\xca\x65\x06\xa0\xac\x53\x1e\x5a\xf2\xea\x16\xdb\x33\x66\xb2\x18\x68\xc7\x76\x90\x76\x6c\xac\x04\xe1\xbf\x41\xe3\x40\x68\xeb\xb2\x86\x47\x59\x66\x7b\x65\x6c\xd0\x0a\xab\x6c\x8e\xce\x8d\x26\xb4\x50\x6a\x10\xa9\x76\x96\x9a\x0e\x49\xb8\x55\x51\x25\xdb\xe6\x29\x4d\xd5\xd3\x0a\x20\xcb\xcb\x36\xd9\x4d\x20\x34\x73\x5e\x9f\xcb\xfe\x64\x2a\x35\x38\x3a\xff\x0a\xed\x7a\xd5\x5c\x73\xa9\x01\x86\xf7\x75\x25\x39\xf2\x58\xa9\xaf\x5d\x54\x31\x6d\x94\xe4\x85\x35\x9d\x3d\x13\x69\x35\x16\x1b\xe4\x72\x8f\x02\x85\xa4\xfd\xdf\xca\xa6\x15\x7c\x5d\x14\x20\x3f\x37\x56\x4a\xce\x17\x03\x95\xcb\x80\x89\x02\x02\x8d\x4e\xe4\x5e\x38\xf8\x02\xa1\xc4\x78\xd0\x57\xb4\x0a\xff\x95\x09\x0e\x67\x92\xd8\x59\x5f\x12\x66\xd1\x6c\x76\xf9\x0e\x54\x3b\xf3\x27\x98\xb3\xe2\xff\x2d\x9b\xe9\xd0\x66\x83\xa8\xf0\x4f\x06\x8b\xe6\xbd\xc0\x77\x10\xa2\xc9\x46\x0c\x1b\x14\x63\x23\x1d\x0c\x6c\x52\xcc\x4e\x34\x0c\x78\xb8\xfa\xdc\xc8\xef\x68\x3f\xa4\x5c\x88\x8f\x3d\x15\xae\x6c\x17\xb1\x25\x8c\xd5\x85\x1e\xdb\x3a\xad\x80\x32\xfe\x78\xa4\xd5\x3d\x3b\xbc\xae\x38\x37\x33\xaf\x05\x79\x4d\x19\x9f\xb5\x6d\x2f\x4a\x9e\x24\xe8\x59\xea\x0e\x4a\x7b\xe1\x36\x3e\x86\x58\x8f\x19\xb2\xc0\xe5\xae\x63\xea\x89\x74\x3f\x3d\x41\x64\x92\x3b\xc6\x8d\xaf\x2c\xfa\x82\x06\xe9\x55\x61\x24\x20\x35\x81\xfe\x21\x8b\xcd\x06\x8d\x2f\xfd\x2a\x47\x51\xa0\xcd\x70\xbd\xd5\xd5\x3c\x7b\xa6\x8a\x18\x89\xfc\xe6\xea\x71\xbb\x11\x8e\x2a\x56\xe6\x8b\x5c\xf2\x7e\x5c\x17\x35\x76\x33\x8b\x28\x1f\x45\xcd\xef\xd3\xef\x23\xe4\x3d\xa7\x6b\x12\x57\xeb\xfc\xbd\x4d\x9e\x5b\x61\x6f\x3a\x3f\xd6\xea\x66\xa5\x9d\xa8\x0e\xfe\x1a\x56\xcf\x5f\x2d\x06\x27\xd4\x62\x70\x62\xe4\x2d\xeb\x94\x56\x4f\x43\xf5\xdd\x1e\x53\xbd\xb6\xc7\x54\x12\xb5\x68\x36\x66\x74\xd3\x25\x1a\x50\x11\x3e\x9d\xd2\x2a\x56\xb7\x14\x73\x70\x58\x2d\xd6\xbb\xe9\x19\xb9\x51\xb6\xb4\xa4\xad\x1e\x16\x9d\x00\x04\xa5\x3c\x78\x18\x37\x00\x89\xf0\x49\xa0\xc0\x92\xcb\x0a\x1f\x39\xed\xa2\xcd\x41\x94\x4f\x18\x29\x62\x89\x80\x8e\x38\xde\x0d\x8c\x14\x91\x20\xcd\x8e\xf7\x6b\xed\x43\xbb\xaf\xe1\x4c\xce\x37\x29\x9f\x17\xa9\x4c\xba\x08\xac\x59\x67\x51\xbf\x10\x57\x90\xea\x11\x21\x9a\x26\x53\x10\x06\x82\x66\x5a\x28\x79\x60\x18\x6d\x51\x73\x02\x4b\x62\x60\x28\x6b\x2a\x0a\x18\x00\x1c\x79\xb0\xf6\xaa\xb7\x55\x24\xa3\xae\xdd\xf4\x7f\x78\x15\x77\x27\x84\xc0\x3d\x18\xb6\xbb\xa5\x4b\xa2\x2a\x7e\x00\xd0\x87\xbd\x94\xe5\x66\xe4\xaf\x14\x85\xd7\xb4\x6d\xcc\xbb\xb9\x73\x4b\xa8\xbe\x03\x7f\x7a\x17\x8f\x5e\xee\xc1\x7f\xae\x5f\x0e\x4c\x62\x80\x50\x83\xde\xcd\xc0\x01\x9f\x8c\x7e\x6e\x3a\xdc\xc8\x6c\x98\x26\x79\x44\x0d\x4d\xb2\x7b\x8b\x1d\xbf\xa2\x58\x69\xd6\xb6\x09\xc3\x72\x50\xc6\x60\x64\x38\x73\xaf\x3f\x52\xc4\xc0\x3f\x72\xfd\x94\x99\x0d\x8b\xa8\x0a\x4e\x0c\x2b\x4a\x08\xc3\xbb\xe1\x6c\x6a\x4e\xb8\xb6\xa1\xa2\x1c\xb4\x63\x69\x4e\xc7\xc2\xc6\x6d\xb2\x7c\xa2\xba\x04\x4d\x94\xed\xf2\xb5\x97\x6f\x61\x02\x4a\xb9\x4e\x75\x64\xff\xe3\x40\xbd\x4a\x31\x33\xc2\x7f\xed\x54\x89\xea\x03\x27\x45\x34\x28\x93\x28\x8c\x86\x26\xde\x4d\xed\xdb\x62\xde\x59\xfd\x16\xe4\xa2\x3f\x0f\x7c\x16\x4b\x3c\x8f\x14\xd1\x52\xf6\x8e\xd8\xc7\x47\xbe\xad\x68\xe7\x98\xea\xb2\x52\x6a\xf9\x9c\xaf\xab\x66\x36\xcf\x91\x4f\x0a\x1f\xb0\xfa\x06\x70\x0e\x8f\x07\xbe\xca\x7a\x41\xa9\xa6\x3d\x0e\x94\x62\xf0\xa6\xd2\x48\x43\xc3\x37\x13\x2e\xeb\x0a\x1e\xf6\xb5\x28\xe7\x68\x16\x20\x0e\xe8\x85\x7c\x8c\x87\xcb\xeb\x4a\x30\xd7\x78\xee\x39\x67\x36\xdb\xf8\x5b\xbf\xcc\x53\xf1\x16\x4a\xcc\xda\x78\x48\xea\x7f\xf4\x20\x44\x0d\x47\x60\x83\xdc\xc4\x85\x36\x77\xfb\xf1\xc8\x57\x43\xae\xa8\x6a\x08\x6f\xd3\xfc\x47\x4a\x8b\x21\x8d\x30\x13\x5e\xf4\x76\xc8\xce\xb3\x10\x81\xb5\x34\x77\x3f\xa9\x28\xf0\xc8\x6f\x85\x8f\x0e\xbd\x64\xc5\xea\xfa\x1d\xed\x08\x61\x63\xe8\x89\xb3\x90\xdf\x44\x79\x58\x35\x56\xef\x68\x1d\x98\x74\x9b\x0e\x0b\x0a\xa5\x1c\xca\x5a\xdd\xa4\x20\x9d\xcf\x38\x7a\x4e\x14\x47\xc3\x21\x82\x73\x6f\xe3\x31\xc3\xde\xfc\x78\x5a\x07\x30\xa0\x90\xdc\x3f\x70\xc3\x03\xed\x06\x39\x31\x93\xb6\xb6\x30\xc0\x31\xff\xaf\xf3\x30\xc6\x13\x69\xb4\x54\x09\xeb\xe1\x44\xf7\xb3\x6f\xb3\x1e\x54\xa1\x8a\x05\xab\x5d\x20\x9c\x37\x47\x4a\xde\x8c\x6f\x00\x57\xc4\x0d\xde\x18\x6f\xd3\x1e\x5a\xc4\x20\x32\x79\xbf\x31\xb9\xf3\xa8\x32\xd2\x69\x95\xad\xf5\xd2\x35\x9b\x25\x1c\x7a\x60\xd1\xfa\x50\xe9\x12\x7d\xe8\x66\x1e\x25\xe9\xa6\x10\xd6\xa3\x84\xda\x74\x5d\x12\x6b\x6f\x0f\xcd\x8f\xbc\xd4\x1c\x9a\xac\xe1\x9b\x02\x66\xc6\x7e\xa6\xcc\xb4\xb6\xa5\xf5\x2b\xf3\xcd\xa5\xa5\xc3\x4f\xd1\x6d\x63\x73\xd8\xd3\x9a\xa4\x2c\xfb\x40\x6e\x0f\x34\xa6\x58\xcf\x8c\x32\x76\xd9\x74\x3c\x07\x61\x67\xcb\xcb\x05\x7f\x07\xb8\x15\x72\x48\x64\x30\xc8\x47\x77\x8d\x5d\x18\xf8\xcb\x4f\x8f\xd5\xe2\x76\xa0\x55\x0d\x20\xc4\x2c\xef\x28\xf9\xb2\xbf\xd2\x9a\x07\xff\x0a\x2b\x20\x26\xe9\xcc\x78\xc2\xb7\x30\x31\x88\x21\xb1\x9f\x20\xf0\xe3\x63\xda\x91\x11\x7d\x9d\x57\xda\x37\xe7\x55\xec\xb0\x6e\x36\x9e\xf5\xf4\xda\x47\x54\x40\x90\xda\xa9\x2f\x67\x3d\xa2\xea\x03\x70\x12\x2e\xc9\xe2\x8a\x9f\x80\x4a\x38\x24\xf4\x58\x27\x01\x9b\x1c\xd3\xeb\xc5\x82\xa3\xba\x31\xec\x5c\xe7\x08\x15\xc3\xa3\x63\x0e\x83\x53\xb9\xf0\x9d\x4b\xe7\x74\xf7\xfb\xfd\x40\x37\xc6\xa3\x33\x17\x9f\x79\x8b\xf0\x27\xe7\x2c\xf4\xb7\x7e\x99\x07\x2f\x4a\x66\x14\x58\xfe\xdd\x9f\xd7\x66\x0b\x57\x47\xdb\x9d\x67\x9e\x6f\x0e\xcd\x0b\xc0\xa9\xa4\x15\x4c\x35\xd0\x5d\x55\xcb\xd0\x50\x50\x0f\x8c\x87\xbb\x23\xdf\xd6\x78\xd7\x71\x49\x33\xdb\x2e\x0b\xd7\x16\x8c\x77\xf9\x30\x50\x45\x9a\x87\x6a\xdd\x69\xa7\x83\x36\x7d\xa3\xc3\x84\x5c\xcf\xf4\xb4\x74\xd5\xf2\xca\x72\x73\x35\x21\xc1\x36\xba\x21\x27\xf6\xe3\xfb\x58\xae\x68\x81\x1f\x53\xcc\x7a\x92\xca\x0f\x02\xdf\xdf\xb6\x7b\xac\x68\x7e\x7b\x5a\xaa\x68\xf2\x76\xad\x35\x71\x6e\xb3\x28\x2d\xf3\x98\xd1\x3c\x89\x55\xaa\x27\x2c\xee\xf7\x3e\xfe\x88\x06\x43\x13\x16\x7b\xfc\x62\x0a\xdb\x68\x7c\x3f\x03\xc6\x88\xc2\xee\x29\x71\xc1\x4f\x03\xaf\x53\x02\x8b\x54\x6c\xcf\xff\x8a\x66\x04\xf2\x98\xad\xc0\xfb\xe0\x3e\x56\x59\x6d\x91\x99\x0e\x55\x5a\x26\x14\x20\xd4\x20\xd1\xfd\x9a\x85\x8d\x21\x47\xea\x71\x8e\x53\x1a\x90\x3a\xa5\x42\x64\xd2\x35\xc0\x3d\x6b\x91\x4d\xf1\x7d\xdb\x3e\x90\x0e\x56\x4f\x6a\x46\x31\x23\xd1\x24\x24\x8a\x11\xd5\xcc\xc2\x62\x7d\x4f\xcd\xbf\x41\x9a\xcd\x29\xf3\xd9\xbb\xca\x84\x1d\xe5\x18\xc7\xe6\xaf\xd6\x15\x47\xa1\x5f\xe2\x7c\x70\xe6\x69\x55\x86\x1b\xa6\x71\x14\xda\x3d\xf4\x97\x80\xb4\x4e\x4d\xd4\x8c\x46\x93\xc0\xad\xe3\x58\x3e\xc6\x10\x42\xb1\xf9\x87\xa0\x4c\xf0\xe7\x31\xa3\xf9\x7f\x94\x7a\xe9\x63\x25\xb5\x3c\x34\xf1\xe0\x3f\x94\xa7\xfd\x32\x14\xf2\x3a\x7e\xc5\x67\x25\x24\x5c\xb8\xc8\x22\xd5\xe8\xca\x9a\xce\xab\x65\x5e\x08\xf5\x81\xfd\x47\x70\xb9\x08\xbf\xef\x29\x13\xc7\x69\x73\xeb\xc5\x23\x55\xf4\xb8\x6e\xd6\x04\x39\xe2\x9c\x81\x1e\x8b\xe4\x0f\x5a\x2d\x0b\xd6\xd6\x48\x5f\x67\x5a\x13\xcb\x56\xf5\x66\x25\x07\xf4\x64\xe3\x13\xd8\xad\x45\x77\x5c\x51\x73\x4f\x07\xe2\x2d\x94\xa7\xc3\x7e\x94\x17\x51\x58\xc5\xd1\x94\x8b\x12\x66\xf5\xeb\x3f\xdb\x52\x54\x0a\x42\x3f\xb8\x14\x14\x1e\x18\xeb\x08\x24\xb6\xd4\xd5\xa6\x94\x82\x28\xb3\x91\x0b\xab\xc9\x5b\x3b\x36\x8c\x9c\x53\x98\x2c\xee\x4a\x12\xe7\x91\x03\x64\xcd\x70\x98\x46\x49\x41\x2a\x0f\x0d\xd5\x3d\xf8\xb1\xee\xa8\xfd\xb8\x46\x58\xf8\xc5\xe6\x7a\x9f\x1c\x30\x0e\x3a\x49\xbe\x91\x2f\xbd\x5f\xad\x95\xd7\xb3\x83\x61\xdf\xe4\xd1\xeb\xd2\xf6\x26\x61\xb2\xa6\x27\x29\xa3\x9a\x57\x4d\x3f\xa1\xfd\x1e\x81\x23\x2b\xe4\xf0\x89\xf2\x64\xef\x46\x19\xe7\x27\xd8\xf9\xde\x0e\xfc\x2e\xf8\xb6\xf6\x0f\x8c\x3a\xf9\xac\x42\xdd\xb0\xdd\x82\x72\x37\xa9\x40\x4c\x17\xc4\xff\xe1\x42\x2b\x82\xad\xab\xd7\x08\x32\x35\xc8\xce\xd0\xf0\x75\x1e\x3d\x4b\xce\xe8\xee\x19\x0e\xfc\xb0\xf2\x3d\x85\xf5\x17\xf7\x38\xdb\x3a\xa0\xd8\x70\x6b\x36\x29\xed\x3e\x35\xa4\x2f\x63\x6e\x4a\x8b\x3f\x41\x03\x08\x66\xd1\xf9\x88\x2d\x4b\x3b\xde\xed\x1c\xfb\x72\xe7\x43\x25\xdb\x75\x7f\xa2\xc0\xa5\xaa\x17\x9c\x37\x21\x35\xe7\x5e\x64\x31\xa2\xfd\xbc\x76\x03\x24\x17\xe0\xc8\xc4\xe4\x86\xad\xfd\x5a\xa4\x16\xdf\x70\xbd\xd9\x9f\x62\x0d\x10\xd3\xeb\x6a\x84\x22\x76\x3f\xae\x89\xa7\x17\xa6\x2a\x14\x07\x97\x9a\x05\x89\x5a\xa5\xc9\xc6\x4c\xe3\xcb\x2f\x6f\xa1\xb4\x83\xd5\x68\x53\x69\x02\x8d\x5d\x0b\x72\x11\x15\xb1\xed\xcc\xf9\xb8\x8b\xf5\x16\x44\x0d\x8d\x2e\x04\x18\xc5\x4e\x4c\x2b\xa4\xc5\x07\x5a\x8d\x5f\x39\xcc\x3b\xef\x49\xc5\x97\x59\x8f\x48\xcb\x9d\xcc\x89\x51\x48\x01\x91\xc5\x15\x26\x0f\x1d\xe2\xe0\xe7\xb4\xb2\x74\xdb\x0a\x54\x54\x74\x1a\x2f\x8d\xfb\x30\xf1\x44\xa5\x29\xb3\x26\x3f\x33\x65\x31\xd1\x6b\xc7\x43\x47\x24\x7e\x7c\x89\x2d\x1d\x0e\xd3\x84\xbc\xb4\x16\x8f\xf0\xc2\x7b\x1e\x65\x76\x3e\x51\xbb\x8c\x89\xbb\x07\x94\x76\xf5\x16\xd5\xd9\xc1\xc6\x7c\x80\x65\xca\x51\x59\x16\x8f\x30\x2f\xf7\x27\xb0\x57\x23\x35\xde\x3d\xf6\x1c\x82\xb3\xb4\x27\xb3\x07\xd0\xd8\x83\xa7\x4f\xb4\xe8\xae\x29\x12\xf9\x6f\xbe\xd0\xd2\xce\x1e\xf4\x9c\xd0\x71\xc6\x1b\x82\x0b\xf9\x96\x57\x96\x5d\xe1\x0e\x18\x8d\x03\x5c\x7d\xeb\xe0\xae\xb1\x42\xb1\xce\x2a\xa3\x81\xb4\xdb\xcd\x2d\xe4\xac\xf0\x25\x37\xfc\xde\xf8\x3f\xde\x70\x68\x21\x8a\xe6\x69\x09\xf6\x3a\x27\x50\xf4\xc2\x74\x91\x58\xbc\xe4\x85\x99\xd8\xb6\x42\x75\x15\xc9\x6e\xa5\x6f\x77\x41\xc9\xcc\xe4\x65\xb6\x16\xad\xc1\x9f\x4e\x99\x17\xf9\x89\x31\xb5\x4a\xae\xcc\x37\x6d\x84\x9a\xf7\xc2\x82\xdf\x3c\x16\x8f\x28\xc3\xfd\x79\x61\xc9\x4f\xd1\xf1\x48\xd3\xb9\xcc\xb2\xb4\x67\xb8\x71\xc2\xf5\xdc\x1d\x3a\x24\xc7\xc1\x17\x94\x4e\x56\xb2\x06\xa9\x54\x13\xcf\x4c\xe0\x4d\xd5\xdf\x63\x3a\x3c\xd1\xf2\x40\x6a\x63\xbc\xd7\xa5\xee\xca\xb2\x9c\xef\x1f\xb9\x3e\x92\x4c\x41\x9e\x95\xa4\xb0\x49\x36\x52\x2c\xce\x98\xfd\xbf\xad\x74\xfe\x7f\x5b\x6d\xa9\x79\x34\xc4\xce\x2b\xea\x45\x0d\xe7\x45\x71\x42\x35\x51\x9b\xb0\x88\xd6\xa2\xbc\x40\xff\x03\x22\xc1\x07\xca\x06\x16\xaf\x4e\x5c\x38\x6b\xda\xce\x12\x5b\x66\x69\x9c\xf6\x22\x0e\xfa\xb0\x22\x7f\x42\x5f\xc1\xc7\x8a\x52\xff\xb5\x92\xb4\xf7\x31\x50\xb0\xff\x9e\x0c\x54\xe3\xc0\x29\xe5\x89\xf7\x5b\xaa\x88\x6d\x7a\x99\xad\x16\x9e\xc5\x23\xaa\xc6\xbf\xec\x70\x91\x86\x93\x94\x01\x8d\x0c\x53\x0c\xe2\x89\x4c\xf6\x6a\xc9\xc6\x6b\x5f\x1b\x9a\x24\x57\x75\x53\x41\x4a\x68\x74\x09\x54\xe2\xf0\x32\x93\xe7\x36\xe6\x20\x46\x24\x53\x35\x1d\x7f\xbf\x6a\x24\x09\x5f\xd8\xab\xda\xab\x7f\xf6\xf3\x2d\xe5\x2a\x72\x0b\x82\x0b\x42\x93\xf1\x2c\xba\x3f\x78\xba\xe5\x11\x3e\xc4\xb4\x18\xa4\x7b\x28\xbf\xc5\xe6\x00\x0b\x76\xe7\x2d\xe6\xed\xc3\x1e\xbb\x2b\x1d\x66\x76\x68\x58\x52\x0c\x03\x6a\x2f\xed\x4e\x7c\x3c\x65\xa5\x41\x06\x36\xa1\x8d\xd6\xac\xd6\xa1\xbd\xaa\x14\x1d\xae\x7e\x26\xdb\x3a\x2f\x32\x93\xf4\xac\x52\x69\x38\xa1\xba\x0c\x01\xfa\xc9\xda\x44\x8f\x55\x5a\x7c\x6b\x0d\x08\x7b\x59\xd4\x71\x41\x53\x9d\x85\x9e\x5a\x0a\x4c\x3b\x2d\x4c\x4f\xfb\xb8\x9d\x0e\x7c\x5b\xdd\xb4\x5d\xcb\xc2\x42\xb3\x2b\x41\x8a\x52\x7b\xf4\x01\xdd\x74\x0f\xfe\x8b\x4d\x69\x0f\x71\x72\x52\x5e\x5a\xaa\xce\x07\xa8\x4c\xe2\xd4\x78\x43\x7a\x31\xad\xf2\x85\xa9\x8b\x8e\x16\x06\xa0\x26\xcd\xf4\x32\xf1\x9e\x72\x2f\xd9\xdd\xf2\x49\xdb\xec\xb8\x4e\xa4\x3e\xec\x9b\x24\xb4\xd9\x06\x03\x43\x88\x43\x7e\x1d\xf7\xc4\x27\x2a\x5d\xcc\xd3\x90\x82\x88\xa3\x6e\x4e\x28\xbd\xda\x6f\x8e\xfc\xe2\x0b\xc7\x33\xbf\x12\x57\x7b\xaa\x76\x55\x40\xfe\xf4\x2f\xeb\x48\xc4\xe4\x1f\x99\x70\x3f\xa4\x13\x54\x50\x6c\xf9\xc0\x4b\xd0\xaf\x9b\xcc\x3f\x28\xa9\x1e\xfa\x2a\xcd\xb4\x70\xe8\xa1\x43\x2b\x4d\x1b\xc6\x36\x94\xee\x7b\xcc\x07\x28\xaf\xf0\xb1\x82\xac\x37\xd2\xf2\xe9\xc6\x57\x16\xf9\xd2\xff\x5e\xe0\xcb\x77\xef\x60\x63\x94\x18\x8e\x6e\x50\x9a\x0a\x54\xd3\xf3\x1d\xcc\x4c\x44\xeb\x8d\xb1\x0f\xac\x1f\x60\x20\x23\x86\xd9\xa2\x40\x17\xe0\xcb\x2d\x60\xc5\x98\xb3\xcf\x40\x02\x01\xaf\xfd\xcf\xd5\xba\xf4\x6b\x28\xc4\xb2\x62\x13\xcd\x66\xa9\x85\x55\x0b\x19\x37\x78\xd2\xe2\x85\xab\xfa\x64\xa4\x24\x69\xaf\xf9\xa6\xe5\xb4\x28\x5c\x39\xda\x69\x61\x1e\x3a\x24\xc7\x6a\xab\xe8\x66\x25\x93\xe9\x65\xe1\xe7\x48\x91\x4f\x94\x44\x6a\x98\x0e\x06\x65\x12\xe5\xe0\xac\xe3\x8a\x6f\x01\x2f\xe2\x13\xed\xaa\x43\x46\x12\xf9\xd3\xf4\x5d\x78\x6a\x8d\x96\x32\xd5\x63\xcd\x03\xe7\x5d\x7e\x54\xba\x15\x44\x82\x8a\xfd\x56\x03\x9f\x40\x7e\x42\x2b\x35\xfb\x05\x8c\xbc\xc7\xe0\x6d\xd5\x0e\xb8\x35\x52\x18\xec\x7d\xbc\x40\x5c\xdc\x8f\x81\x85\x89\x2d\x4d\xf5\x3c\x11\x1b\x6e\x61\x4d\xc7\x76\xf2\xf7\x03\x4f\x65\xdd\x0c\x14\x2d\xfa\x3e\x5e\xb9\xb8\xc0\xd6\x44\x03\xd5\x12\x65\x92\x4e\x9e\x26\x54\x0f\x76\x16\xef\xce\xf2\xe6\x91\xb2\x8c\x3a\xaf\x19\x01\x34\xfd\xe4\xb9\xe2\xa2\x8e\xd3\xa0\xe4\xe3\x29\x1a\xff\x91\x97\xa8\x70\xca\x6d\xcc\x82\x7a\x7a\xbe\xc1\x64\xb3\x70\xd8\x4f\x1b\xda\xa4\xe5\x6e\xa0\xa8\x5d\x77\xa7\x90\xdc\x85\x85\x66\x5a\x16\x33\xd5\x03\xc2\xae\x88\x67\xed\xc4\x6e\x1c\x1d\x7a\x2b\xf8\x89\xed\x64\xad\x57\xe8\x41\xcc\x2a\x9b\xa7\x3f\x52\x80\xd1\x35\x15\xed\xfd\x11\x7d\x91\x2c\xb6\x2a\x74\x49\xe3\x9c\x43\x17\x8c\xea\xb7\x46\x8a\xdf\xf8\xd6\x54\x19\xf8\xe0\x52\xb3\x5f\x26\x3d\xd9\xa6\x9d\x1f\xb5\x67\x5d\xe9\x76\xf6\xbc\x30\x31\x96\x20\x2c\x6e\x6f\xa9\xb8\xe8\x2d\x95\x72\x7c\xad\x4c\x8b\x2c\x4d\x66\x15\xe5\xe1\x0d\xad\x1c\x2a\x7a\xd9\x8e\x93\xed\xed\xaf\xdf\x98\x68\xbc\x4c\x0a\x33\xa7\x20\x88\x19\xea\x36\x73\x72\x80\xbe\xe9\xe1\x3e\x4d\x70\x91\x06\x54\xb2\x04\x97\x34\xc8\x93\xa6\x52\x83\xd1\x58\x18\x90\x92\x86\xa2\xd9\xdf\x56\xb6\x28\xa6\x67\xa2\x64\x5f\x35\xaa\xb1\x7c\xec\x18\xab\x2a\xd0\x59\x7a\xb5\xc0\x4a\x7e\x44\xd0\x2d\xff\x51\xcb\xbf\x9d\xeb\x81\xc2\x29\xee\x60\x1d\x43\x12\xf0\x21\x2d\x5d\xfc\x1f\x34\x85\x99\x2d\x40\xb3\x4b\x7a\xc3\x1a\xce\x22\x56\x3b\x2a\x0e\xd2\x8e\xcd\x8b\x78\xa3\x41\x53\x14\x6b\x02\x13\x4e\xf9\x44\x33\x49\xfe\x03\x14\x44\xf4\x5b\x48\x0b\xfb\xa4\xd2\xb4\x7e\xa8\x3b\xbb\xce\x10\x7a\x8d\x7c\xf6\x0e\x5e\xa4\xb4\xff\x52\x5e\x24\x4c\x86\xea\x81\x20\xaa\xbf\x84\xd2\x1b\x76\x8c\xb9\x96\x07\xe4\x3e\xd7\xf2\x42\x23\x17\xb9\x34\x04\x9c\xe3\x4f\x69\x61\xe7\xdc\x19\xef\xe8\xae\xa2\xb4\xf6\xcd\x70\xe8\x64\x12\x5e\xf1\xd5\x65\xdf\x44\x7a\x57\x79\xa2\xf6\x4a\x93\x99\xa4\xb0\x16\x86\xf0\xa8\x33\x9c\xc5\x34\xe1\x93\xa9\x1d\x72\xf9\xa5\xc3\xcd\x6e\xb4\x66\x37\x2c\x2b\x2c\x30\x74\xaf\x02\xb2\xb7\x54\x3f\x59\x6c\x8a\xbe\xe5\xa1\x26\xd6\x3c\x0d\xa7\x21\x79\x5e\xd9\x05\xff\xf7\x8a\x68\xf4\xba\x8d\xf2\xd8\x66\x33\x2a\xa7\x47\xc4\xe7\x5c\x27\xab\xe9\xc4\xb2\x8b\x75\x79\x77\x27\x33\x83\x9c\x69\x14\x18\xd5\x37\x30\x49\xb0\x4d\xb0\x45\x04\xc0\xf4\x8b\x53\x45\x74\x89\x3b\x87\x26\x33\x03\x5b\x64\x1c\x0b\xb8\x46\x9a\x25\xe5\xa9\xa8\x3a\xff\x33\xa2\x7d\xcf\x52\xde\x8c\x77\xc7\x72\x23\x12\xa5\x34\x94\x1d\x7a\xc3\x09\x3f\x9f\x0c\x74\x1b\x63\x6e\x4d\x16\xf6\xf7\xd3\xeb\xc3\x83\x99\xa1\x9a\x92\xb2\xbd\x7e\x91\x5f\xe5\x25\x45\x86\xc6\x97\x8b\x29\x5c\x35\x7c\x91\x50\xa1\xbb\x52\xf4\x01\xe9\x6a\xb0\x6c\x82\x17\x8c\x38\x88\x7b\xbd\x30\xcf\xd8\xb5\x5e\x8a\xbb\x6a\xaf\x03\x53\x50\x20\xec\xed\x4f\x7d\x01\xf6\x71\xf1\x8c\xcf\x24\x3f\x0d\x54\x08\x35\x52\x01\xd1\x55\xed\xb6\x94\x46\x49\x6f\xbf\x87\x3d\x1a\x50\xb6\x63\x6f\xb8\x40\x79\x92\x22\x4a\xc7\x34\x42\x2b\x22\xa6\xd1\x75\xcc\x76\x29\x04\x2b\x67\x7e\x46\x37\x79\xb6\xe9\xd5\x10\xde\x42\x40\xc9\x76\xb4\xfc\xb6\xf4\xae\x2a\x80\x7f\x3a\xe9\x52\x57\x33\xcc\xd6\x52\x32\xa7\x77\xe5\x49\x98\xde\x8a\xde\x7d\xcd\x07\xda\x69\x99\x70\xe6\x81\x30\x01\x71\x3b\x1f\x2b\x25\x9b\x38\xca\x59\xef\xa4\x5a\x01\xeb\xa4\x55\xea\xcc\x41\x4c\x94\xb4\xd3\x75\x44\xfb\x52\x00\x6d\x38\xa9\x90\xff\x3d\x50\xe8\xd9\x74\xf7\x02\x39\x82\xa5\x83\x61\x6c\x0b\x09\x08\x18\xca\x51\xe0\xdc\x65\x07\xce\x95\x49\x6c\xf3\x7c\xb7\x6f\x70\x42\xfe\x4b\x8f\xee\xb7\x7e\xb2\xa5\x14\x95\xae\xa3\xe9\xd9\x65\xcc\x8e\x20\x74\x8b\x8a\x49\x02\xb0\xd2\xfa\x2d\xc3\xdc\x89\x63\x5a\x93\xb5\x37\xf6\x28\x1a\x9a\x30\x3e\xb0\xb6\x62\x0e\xa0\xc5\xf9\xa9\x96\xdf\xc4\x66\xc6\xd5\x1e\x24\xae\x2c\x9e\x16\xba\x87\x26\x93\x64\xd3\x8a\x50\x7b\x52\x0d\xc9\xc4\x0c\x6c\x3e\xeb\x00\xfc\xff\x98\x3c\x44\x96\xb6\xce\x2b\x46\x32\x47\x71\xd2\xb7\xa8\x62\xb0\x7e\x34\x24\x94\x7d\x97\x2f\x17\x9d\xa7\x8b\x74\xdc\x5f\xc5\xe3\x1f\x79\xd9\xfe\xf3\xb4\xd7\x39\x4a\x84\xcb\x07\x2f\xd6\xe9\xab\x85\x66\x58\x45\xc5\x4c\xac\x61\x67\x65\xec\x39\x62\xb3\xec\x84\xbc\x62\x6b\x32\xa9\xac\xb0\xa4\x9a\x96\x76\xfe\x31\x8d\x40\x09\x32\xfd\x8d\x0c\x6c\x9c\x76\x80\xb2\x39\x6b\x1d\xd0\x38\x9d\x74\x7e\x75\x23\xac\x8a\xe3\x52\xce\xb0\x1f\x85\xab\x36\xc9\xb5\xe4\xfe\x2d\xad\x9b\xae\x6a\x62\xa7\xea\xf4\x12\x06\x51\x52\x16\xa0\xf2\x01\x07\xfa\x63\xfa\x34\x82\x83\xf3\x81\xdf\x99\xaf\xe8\xd8\x24\xea\xd8\x9c\xf0\x1a\xd7\x74\x50\xad\x5b\x8e\xa3\xae\x48\x61\xaa\xee\xf5\xf7\x68\xc4\x4a\x67\xc2\x7e\xed\xbd\xb8\x31\x47\x6b\x0a\xe6\x3e\x42\x0f\x20\x0c\x8f\x83\x09\x23\x68\x17\xb6\xdc\x98\x30\x85\xde\xae\x4d\x79\xe8\x50\x33\x02\x6a\xb7\x66\x13\x9b\x63\xbf\x95\xb2\x88\xa7\xde\x5f\x75\xb9\x6b\x98\x26\x5d\x9b\x59\xa9\x67\x61\x28\x9c\x54\xd0\xc0\x49\xdd\x9f\x61\x5e\x55\xfd\x19\x22\x39\x49\x2f\x5c\x30\x1c\x79\x3d\xe2\x0b\x0a\x06\x8f\x00\xee\x9e\xab\x79\x5f\xa5\x49\x5c\x59\xc6\x42\x72\x57\xed\x52\xab\x69\x91\xb6\xcb\xd5\x88\x93\x01\xec\xeb\x3f\x44\x92\xc3\x27\xd3\xcd\x49\x8b\x47\x9a\x71\x6a\xb8\x22\xe4\x92\x51\x4f\xd2\xac\xe3\x65\x86\x69\x52\xa5\x9f\x33\x13\xc5\xa1\x6a\x77\xd0\xed\x39\x98\xfc\x77\xa7\x70\x55\xf2\x0f\xcf\x4c\x6f\xe0\xa4\xf4\x80\x4d\x9d\x51\x54\xef\x33\x4a\x71\x38\x4c\xcb\xa1\xd5\x7e\xb8\x0f\x28\xa0\xe3\x63\x55\x2f\x31\x1d\x6a\x9e\x86\x2f\x5b\xb5\x3d\x81\x3f\x79\x8b\xb6\x5a\x3e\x9e\x48\x44\x06\x43\xf3\x35\xa8\x18\xb0\x10\x07\x38\x98\xa2\xca\xf1\xac\x7f\xe7\x70\x2a\x70\x90\x05\xb6\x34\x10\x60\xf8\xb8\xb5\x1d\x41\x5a\x99\x6f\x76\x4d\xc8\xa8\x1a\x02\x83\x6f\xa9\x0e\x94\x6f\x29\xb1\xc0\x32\xb7\x9f\x9b\x60\xa0\x2b\x8b\x0e\x2e\x86\xc9\x63\xd1\xf0\x2d\x5d\x39\x00\xa3\x47\xd8\x8f\xb9\xf0\xa0\xba\x5b\x2f\x60\x8e\xe1\x64\x66\x42\xc9\xdf\xcb\x3b\x5c\x19\x79\xa6\xfa\x55\xaa\x5a\x4c\x98\x1e\x62\x17\x04\xbb\x44\xc4\x03\x6b\x20\x60\x33\x1c\x66\xe9\x30\x8b\xc4\xa7\x16\x2b\xd0\x65\x65\x2f\x39\xad\xc3\xb2\xb0\xd0\xec\xd8\x24\x92\x76\x77\xe4\x69\x7f\x32\x21\xf5\x40\xb7\x8f\x97\x7d\x72\x7b\x87\xe9\xa1\x43\xcd\xe7\x9e\xa3\x92\xa2\x18\x00\xf9\x14\xf9\x7d\x9a\xf8\x4e\xc3\xd8\x45\x5b\x97\xa6\xe2\xd2\xa3\xf3\xcb\xcd\x38\xcd\x8b\x19\xa5\xcf\x03\x31\x56\xd5\xd7\x2b\xd5\xf5\x6f\x3b\x12\x55\xdb\xae\x47\x45\xd8\xb7\x1d\x8a\xac\x14\x1f\x5a\x24\x4b\xb7\x94\x68\xc7\x35\xcf\xd3\x4c\x8b\x7e\x1e\xf6\xa3\xb8\xc3\x32\xda\x2c\x6f\xa8\xaa\x5c\xc7\x75\x44\xb4\x9f\x0b\x99\x34\xdd\xff\xe5\x17\x5a\x3a\xf1\xef\x74\xf2\x39\x7a\xf1\xa2\xd0\xe4\x3d\xcf\x61\x18\x09\xc0\x15\xb6\x55\xa8\xaa\xef\xa0\x8d\x56\x5a\xde\x7d\x06\xd6\x4f\x3b\xda\x11\x16\x08\xb4\x20\xaf\x3a\x43\x2d\x93\x0e\x75\x03\x01\xb6\x97\xfe\x71\x17\x2c\x54\xd3\x03\x0c\xaa\x07\x8a\x20\xf7\xa9\xe6\x12\xdf\x51\xde\x71\x0d\x1d\x90\xdc\xae\x1b\x56\xd1\x60\x10\xf5\x14\x65\x16\x51\x1c\xd3\x49\xf8\xa4\xae\xf2\xb3\x66\x8b\xb4\x7a\x37\x47\x25\x0c\x79\x07\x7b\x8f\xc4\x74\xf4\x4e\xb9\x09\x7e\xaa\x21\xe3\xe0\x52\x33\x4a\x3a\x91\x49\xcc\x30\x8d\x23\xc9\x58\x26\xda\xd2\xa5\xbe\x4d\xd7\x81\x5c\xe8\xa6\xa2\xf6\x67\x69\xb8\x9a\x13\xc6\x82\x1b\x05\x56\x08\x90\xe0\x01\xc5\x57\x08\xfe\xbe\x3b\x81\xe4\xd8\xd7\x45\xa5\x13\x5b\xe4\x25\xcd\x9a\xb9\x54\x67\x44\x89\xd2\x29\x6f\x47\x80\x9e\x36\x55\x0b\xf5\xe6\xd4\x68\x3f\xf2\x52\xb3\x1d\xa7\xe1\x2a\x3d\x19\x60\x6a\xa8\xf4\x68\x4a\x8f\x78\x2c\x6d\xcf\x32\x9d\xce\x8a\x89\xe3\xb9\x6a\xcb\xd7\xba\xde\x08\xba\xc0\x3b\xe5\xf1\x10\xa8\x81\xfc\x58\x31\x6e\x67\x5a\xd3\x14\xa8\x17\x9b\x3d\x13\xaf\x99\x84\xac\xff\x8f\x4a\x02\x85\x02\x22\x1f\xbb\xf0\xb3\x13\x0d\x87\xcc\x73\x54\xda\xbd\x8b\x0e\x6a\x7e\x4a\x01\x3d\xb6\x6d\x43\x90\x31\xb1\x07\x9c\x1c\xa9\xd6\xc1\x93\x4a\x22\x00\x1c\x04\xaf\x6d\xe5\xbc\x1f\x07\xc3\x34\x43\x9b\x68\x35\x88\x85\xc2\x44\x7b\x85\x90\x9b\xfc\xb6\xb2\x1a\x75\x12\x33\xa4\x3b\x40\x3c\x04\xdf\x4e\x3e\x0e\x9e\xe0\xfb\x6e\x2e\x1e\xf9\x8f\xaa\xd1\x21\xda\x71\x5e\xc7\xb3\x31\xae\x1e\xac\xab\xff\x2d\x2c\x38\x35\x31\xca\x60\x11\xe7\xb2\xa2\x03\x53\x9d\xe8\x91\xe3\xc9\x3e\xd1\xf2\x5c\xbd\x07\x0c\x62\x81\x07\x70\x0f\x1b\x06\x30\xb3\x4f\x01\x44\x63\xfc\xdf\x19\x35\xbe\xf4\xab\x8e\x39\x40\xf7\x85\xc1\xb9\x73\x4c\x08\x09\x50\xab\x4d\x7a\x7f\xf8\xe6\xfd\x63\x15\x46\xde\x40\xaf\x3d\x7e\xe5\x0e\xa4\xd9\x99\xf7\x1a\x78\xc7\x8b\xeb\xfa\x0d\xdd\xc4\x5c\x44\xce\x7a\x32\xf0\xdb\xc5\x26\xc1\xb3\x22\x35\xa5\x2c\xc0\x09\x2a\x91\x3a\x8a\x6a\x88\xdf\xd5\xa2\x24\x06\xab\xd1\x59\x2c\xbf\xe2\x9e\x43\x4b\x23\x4a\xe8\x3b\x5a\xd3\x22\x33\xaf\xa6\x51\x32\xab\xdb\x49\xe8\x06\x71\x4f\x3b\x50\x97\x47\xb1\xfa\x83\x91\x8f\x20\x2e\xaa\x32\xe6\xab\x51\xaf\x17\x3b\x50\x47\x9c\xb6\xe9\xc9\x88\x05\x77\xcd\x8c\xed\x98\x8d\x22\x1a\x60\x8f\xc4\x1b\x87\x4e\x2d\x1f\xab\x35\xb9\x13\xf5\xc8\x3f\xb3\x4e\x86\xfc\x80\x6e\x12\xc8\x4a\xae\x6d\x21\x71\x06\x0d\x95\x8f\xa7\x4a\x5b\x47\x5e\x6a\x76\xad\x8d\x1b\x9e\x2c\xca\x00\x84\x94\xab\xeb\x28\x91\xe8\x04\x52\x9f\x39\x85\xd1\xc4\x27\x8e\x85\xde\x49\xd3\x41\x43\x3d\x81\x4b\x23\x9d\x85\x2b\x47\x94\xd8\xe4\x55\xf8\x47\x7f\x2a\xea\x38\x0d\xaf\x94\x33\xb5\xd4\x1d\x79\xa9\xd9\x89\xf2\x61\x9a\x63\x71\x00\xc1\xe6\x84\x72\x99\x39\xa1\x42\xc6\xd4\x96\x5d\x26\x60\x8b\x40\x80\xe7\x2d\x7f\xa2\x0c\x99\x76\xb4\x26\x88\x73\x35\x1e\x15\x59\xda\xe1\x18\x0e\x39\xe3\x3d\x0c\x63\x3e\xf1\xda\x84\xfd\x28\x8e\x67\x68\xc0\x69\xed\x72\x59\xe3\x69\xc0\xa2\x48\xb2\x59\x93\xe0\x2f\x53\x29\x35\xea\xf5\xc9\x90\x7e\x65\x9e\x7b\x51\x7e\x84\xb9\x08\x7a\xc3\x31\x25\xec\xfc\x67\x53\x05\xb8\x83\x4b\xcd\x61\x16\x25\xbe\x99\x9d\xdd\x67\x95\xa7\xd3\x3f\x72\x5c\xf9\x32\x89\x8a\x7e\x4a\x42\xe0\x48\x07\xc1\x4b\x86\x32\x08\x7e\x8d\xdb\x74\x91\xb4\x5f\x1d\xe9\x1c\x23\x5f\x4d\x0b\xc3\x9e\x47\x0e\x0e\x76\xa8\xd9\xbb\x9e\x64\xde\x2e\xe3\x38\xb2\xec\x83\x26\x4a\xc8\x0d\x67\xca\x7a\x79\x52\x69\x3c\xca\x67\x68\x44\x89\x62\x76\xc3\x75\xf8\xbf\x3b\x29\x03\xed\xb3\xcb\x7e\xd4\x4e\x01\x76\x22\x0a\xbe\xac\x7b\xaa\x2f\xd7\x0d\xfc\x61\x6c\x50\x7a\xc0\xfa\x74\x52\xf5\xfa\x9f\xac\xf3\x73\x37\x65\x91\x0e\xd2\x76\xe4\x04\x82\x45\xc1\x4c\xcb\x99\xa9\x5d\x9f\x08\x0a\xbb\x15\x3c\x0a\x3a\xd8\x84\x4b\x86\x00\xf3\x74\x53\x28\xc7\x72\xdc\xe4\x38\x0d\x2e\x6c\x3c\xa7\x08\xb6\xb3\x2d\xbf\x32\x94\xe1\x06\x32\x22\xe8\x15\x01\xdf\xe2\x63\x97\x53\x76\x63\x33\x88\x92\x9e\xd4\x86\xf0\x92\xcf\x6b\xe5\x9e\xf3\x8e\x23\x39\x21\x51\x0b\xd9\x42\x91\x85\xf1\x18\x01\xe2\x04\xd1\xc0\x9f\x2e\x4b\x1f\xae\x76\xdb\xbc\x8a\xd4\x66\x95\xae\x6b\x03\x8c\x25\xb1\x36\xf1\xa5\x3c\x26\x1e\x22\xdd\x9a\x06\x2e\x8f\xce\x2f\x72\xb3\xb4\x43\x37\xbf\xa7\x1c\x84\x1e\x28\x9d\xe7\x99\x96\x2e\xe6\x4f\xbd\xc8\x2a\xb6\xf0\x1e\xb8\x33\xda\x0e\x88\xb5\xd3\x05\x2c\x57\xbd\xe9\xd3\x48\xde\xca\xbc\x80\x36\x80\x77\xb0\x39\x70\x97\x26\x9f\x4c\xb4\xbd\x66\xf1\xc6\xb3\xd5\x05\xe3\xff\x9e\x1d\x57\xdb\xe4\xd6\xfb\x5a\xa3\xe2\x1c\x65\x5b\x0c\x0f\xa3\xf2\x82\xb8\xb2\x41\xa9\x1a\xb6\x9c\x47\x04\x6d\x80\xe9\xfb\x21\x72\x43\xec\xc2\xe8\x80\xc5\x7f\xec\x41\xbb\x03\x5e\xce\xd3\x2d\x85\x85\xef\x25\x1b\x11\xf6\x75\x0b\x54\xf3\x0c\x54\x5a\xf0\x34\xff\x9c\xe3\x78\x54\x87\x4e\xea\x7e\xe1\x53\x04\xb7\x6e\xbd\x8f\x05\xdf\x79\xcb\xbb\xce\x8c\xcd\xba\x76\xf3\xbc\x5a\xcc\xe0\x23\xa1\xd7\xa3\x8f\xd4\x7a\xf4\xd1\xa4\xcd\x4b\x39\xd0\xaa\x1a\x81\x87\x06\x2f\xd6\x01\xb6\x69\xb7\x6b\x33\x8c\x32\x6c\xd8\xe7\x47\xca\xff\xe9\x8a\x2a\xc3\xcc\xb5\x34\x43\x54\xb7\xfe\xf5\x7a\x92\x77\x6a\x92\x93\x78\x4e\x56\x9f\x42\xe2\xf0\x71\xcd\xd0\x5c\x6e\xe6\xa6\x8b\x3d\x9c\x5b\x40\x69\x68\x4a\x3b\xe8\x7e\x25\x9d\x95\x0e\x1b\x9e\xc4\x0f\xc1\x66\x3e\x56\x8c\xf9\xbc\x28\x3b\x36\x29\xf2\xbd\xf4\xe2\x10\x70\x3d\xa0\x6d\x1c\x2f\x61\x67\x4b\xb5\x6d\xdc\x54\x9e\x13\x1f\x8c\x3c\x05\xe2\x2f\x10\xf1\xa0\xcf\xf8\x92\x92\x80\xdd\x3b\xa1\xf4\x4e\x7b\x21\x46\xbc\xdf\xb8\xf3\xd4\xa0\xcd\x4f\x1a\x23\xe8\x13\x52\xea\xaa\x3e\x81\x29\x78\xa0\xe5\x5d\x4a\x68\x6d\xd8\x9a\x1d\x2b\x8b\x87\xab\x81\x2f\x7a\xd9\xa4\x88\x8a\x58\x0c\xc3\x84\xf9\xea\xc3\x94\xcb\xea\x31\xbd\x6a\x36\x4c\xc3\xb7\x85\xfe\xae\x46\x1e\x7e\xb7\x26\x63\x5f\x6a\xb6\x4d\xb8\x4a\x2a\x4e\x5c\xe4\xa7\x1c\x97\xad\x7e\x94\x29\x03\x78\x2b\x82\xcd\x3d\xe9\x28\x28\x79\x04\x51\x2c\x6c\x37\x77\x26\x52\x75\x9a\x49\xc0\x52\x3e\x52\xe1\xd8\x2f\x1f\x39\xcc\x7a\x40\x40\x63\xae\xe3\x19\xe1\xf7\x1f\xa8\x9d\x8d\x05\xc7\x31\x16\xff\xed\x94\x21\x8e\x24\x51\xdd\xd8\xbe\x16\xb5\x59\x75\x5c\xf6\x47\xfa\xa4\xdf\x20\xbd\xef\x69\x19\x83\x71\xcb\x6d\x8a\xb4\x26\x88\x28\x7c\xc3\x89\x18\x5d\x50\xc4\x37\x8c\x61\xf9\xf7\x69\xad\xca\xe5\xe6\xd0\x14\xb2\x3f\x83\xa7\x8a\xc6\x26\x3e\x56\x85\xe9\x41\x99\x74\x52\x7a\x8d\x18\x05\x0f\xa8\x94\xc5\xc7\xaa\xe8\xbb\x6e\x29\x88\x41\xfb\x35\x92\x8b\x37\x03\xdf\x8d\xf6\xa6\x77\x31\x2a\x93\x55\x67\xc5\x29\xe6\x8e\x74\xef\xe2\xfa\x58\xcb\x11\x0b\x53\x13\xf6\x59\xbb\xc1\xb1\x8d\xbd\xa4\xeb\x65\x17\xe2\x74\xa2\xcc\x86\x05\x89\x99\xd3\x1f\x63\x5d\x63\xb4\x81\x4f\xc6\x02\xc5\xaf\xf7\xa3\x22\x66\x6f\x70\x45\xae\x5b\x76\x90\xed\x94\xb0\x59\xf3\x2b\x8b\x7f\x6d\xe7\x17\x39\xb8\x04\xb9\x05\x91\xd9\xe7\x61\x55\x82\x94\x07\x79\x83\x33\xb3\xae\x92\x24\x96\xb5\x01\x1c\xe2\x88\x27\xd5\x1a\xe4\x7c\x95\xaa\xc1\x87\x85\x9f\x1d\x0b\xf0\x2b\x77\x08\xa4\xc3\xc8\xd8\xa4\xc1\x8e\xb5\xfe\xae\xce\xb1\x3f\xa1\x7c\x11\x90\xec\x99\x00\x4c\x5f\x3c\x9a\xe1\x48\x01\xbc\xd7\x54\x87\x26\x2a\x5d\x28\xc9\xdf\x82\xa6\x13\x0b\x72\x71\xf6\xc8\x76\x5f\xd8\x12\x90\x7e\xfc\x79\xe0\x41\x75\x4e\xa7\x19\xa1\x43\x8e\x2a\xcc\x60\x4a\x05\x01\x22\x41\x6c\x00\xb8\xe2\xff\x31\x6a\x1c\x79\xc9\x35\x1a\xaa\xe8\xa9\x93\x0e\x8b\x3d\x8a\x4d\xc1\x7d\xdb\xce\x2b\xe3\x2b\x8b\x2e\x63\xf1\xc6\x79\x77\x95\x54\xfc\xef\x63\x0f\x95\xe6\x56\xba\x1b\xcd\xc2\x15\x07\x72\x3f\x62\x39\xf0\xd9\x40\xab\x22\xeb\x45\x07\xba\xa6\x5d\xbd\x43\x0c\x84\x77\x46\xaa\x1f\xf9\xac\x12\x6e\xb9\x06\x30\xc0\xb9\x54\x54\xb9\xaa\x12\x66\x59\xf2\xde\xce\x6e\x76\x5d\xa4\x44\xd7\x15\x86\x9d\x86\x2f\xb3\xe7\x51\xd4\x60\x31\x57\xc4\x51\xd7\x03\x25\x6c\xb4\x93\x7d\x6c\x24\x7e\x74\x26\x0b\x51\x87\x1a\x3c\x68\x6d\x73\x5c\x19\x6f\xa3\xab\x9b\x6e\x1b\xad\x7d\xde\xb6\xae\x44\x7c\x2b\xdc\x56\xba\x05\x29\xc7\x29\xe9\xf9\x32\xe9\x70\xaa\xc9\x0a\x82\x34\x7a\x44\x4d\x50\xdb\x4d\xb7\x4d\x96\x99\x9c\xc3\x66\xe1\x65\xd2\xf3\x13\xc2\xe6\xc4\xf6\x1f\x0d\xf7\xfa\xb6\x4c\x34\x4e\x38\x2e\xf0\xca\xbc\xcb\xfc\x1b\xce\x28\x86\xdb\x34\xd8\x10\x6e\xa4\xc0\x70\x06\x0b\x30\x0b\x7e\x84\x11\x81\xdf\x3c\x0f\xd4\x84\xff\xc7\xed\x7d\xa6\x23\x89\x10\xe0\xac\x99\x96\x2f\xbc\x5c\xd3\x72\x8c\x77\xa7\xd6\xf2\xe7\x9b\x26\xca\x5c\x81\xc0\x66\x33\xea\x3a\x1e\x28\x73\x80\xcb\x14\xe8\x01\x3d\x9f\x26\x97\x81\xd1\x99\x45\x79\x31\x30\xb9\xda\x0e\x38\x58\xe7\x13\xad\xe8\xf7\x5f\xfe\x67\x3a\xcb\x7e\x8f\xbe\x9d\x8f\xa7\xc0\xcc\x85\x85\x66\xd1\x4f\xb3\xb4\xec\xf5\xdb\x99\x84\x3c\x48\xad\xf0\x40\x11\x62\xec\x98\xd4\x24\x77\x69\x5c\x62\xb3\x9e\x2d\xa2\x90\x86\x94\xb3\x82\xf5\x92\xa8\xf0\x71\x11\x15\x04\x1f\xd2\xf4\x6c\x96\x17\x89\xcd\x68\xb4\xe0\x35\xf1\xb2\xca\x27\xde\x45\xde\x9a\x55\x9b\xe0\xba\x9c\x01\xf7\xd1\x79\x57\x68\x55\x52\x52\xe7\xeb\x7c\x07\x92\x32\xcb\xed\x0c\x0d\x07\x5e\x06\x46\x7e\xf8\x7f\x42\xa5\x49\x4c\xa1\x0f\x54\xc4\x11\xe6\xdd\x36\x5d\x9a\x48\xe9\xd2\xa5\xf1\x49\x9d\x66\x61\x9f\xb8\x7f\x03\xee\x55\x74\x59\xbe\xb3\xa6\xb8\xa4\xe8\x35\x70\x69\xda\x5b\x4d\x71\x94\x34\xcf\xa8\x3d\xe2\x84\x96\x68\xd3\xc5\xe1\xab\xe8\x2c\xe1\x4f\x4c\x0a\x5e\x1c\x5c\xe2\xe5\xe5\x8d\x91\xaf\xee\xd0\x2b\x7b\x65\xeb\x5e\xdd\x43\x81\xec\x76\xf5\x4b\x02\x5c\x29\xb5\x95\x8b\x0e\xb8\xc8\x6d\x2c\xd4\x6f\xdc\xfb\xbf\xd3\x0f\xe2\xdf\xb9\xc2\xe7\xba\x89\xe3\xa1\x19\xca\x08\x77\xb6\x19\xae\x51\xf7\x36\x45\x1b\xa2\x4a\x30\x1d\x6d\x2c\x36\x87\x59\xda\x8d\x8a\x86\xea\x8b\x07\xa4\xc5\xc7\xae\x32\xde\x35\x89\x2b\x0d\x8a\xb0\x40\xc3\x8b\x0c\xd4\x74\xcf\x2e\x3b\x82\x04\x93\x38\x9c\x26\x47\x35\xa2\x45\x93\xc3\x43\x66\xa1\xc9\x3a\x91\x09\x09\x02\x67\xf9\x19\x25\x29\xb2\xa5\xd8\x22\xd3\xcd\x94\x0b\x0b\xd5\x8d\xbc\x6a\xc3\x42\xf2\x40\xd1\x8a\x51\x25\xac\x63\x13\x8e\xa9\x65\x5e\x3c\x81\xe5\x5a\x78\xbc\x1e\xef\x9b\x41\x76\x0c\x84\xe0\xdb\x1a\x16\xbd\x41\x3b\x04\x1e\xce\x0d\xda\xef\xa4\x2a\x57\x4d\x76\x21\xa2\x7b\xe8\xf4\x59\xa2\xde\xb0\x06\x8d\x86\x4c\x0e\xb4\xb6\x27\x68\x5f\xfd\x6a\x33\xec\x9b\x38\xb6\x49\xcf\x69\xc6\x08\x01\xbc\xe1\xa4\x58\x1f\x28\x3b\x9b\xeb\x4a\x54\x29\x4a\xf2\x32\x8e\x92\x59\x5f\x0f\x84\x20\xbf\x9c\x60\xd3\xc2\x3e\xf5\x63\x1a\xb9\x7c\x5c\x27\xc2\xd6\xcb\xa2\xa1\x54\xd3\x71\x09\x57\x54\xd3\xac\xb7\xb9\x0f\x4d\x36\x10\xef\x68\xf0\x86\x38\x5b\xe7\x13\xb5\x38\xa6\xa6\x78\xa2\x8a\x8f\xa4\x5b\x5b\x09\xb3\x9c\xd0\x35\xa0\xab\xa4\xb6\x81\x54\x06\x13\x19\x11\xcd\xdc\x58\x59\x09\xbc\x49\x13\x97\xa9\x70\x34\x25\xb1\xfd\xbf\x49\x57\x29\xd2\xad\xb4\xf6\x48\x6b\x6f\x4d\x1f\x6d\x5e\x98\x4e\x54\x0e\xf8\x3e\xa5\xcd\x4c\xf7\x9f\xf9\xc1\xd9\xb1\xdd\x28\x11\x71\x59\xa4\xd8\xf0\x3e\xe5\x63\x65\x26\x96\xff\x02\x54\xcf\xc4\x31\xb7\x7a\xd6\x22\x6f\xf2\x8c\xd2\xf8\x49\x8a\xb4\x6d\x92\x55\x65\x76\xf1\x50\x8b\xde\x3e\x54\x68\x72\x62\xb3\xb5\xb4\x64\x78\x8f\xf3\x50\xba\x50\xc9\x49\x6b\xc5\x3d\x07\x65\x6e\x4b\x06\x7e\x9d\xcd\xe4\xd2\x92\x1c\xd7\xf8\x54\xf6\xcc\xa0\xed\xed\xc3\xc0\x65\x00\x9f\x83\x8f\xdd\xee\xd0\x8b\x4c\x52\x88\xa4\x3f\xad\x7b\x9b\x2c\x0c\xc3\xbc\xd8\xf1\xc4\x72\xea\xcd\x8d\xb6\x54\x0b\x5b\x1e\xf6\x2d\x63\xee\xe0\x6a\x23\x11\xe5\xe3\x29\xe0\xf7\xc8\x4b\xcd\x7e\x94\xd9\x09\x6f\x33\x1a\x08\xe2\x73\xe6\x45\x37\x3a\x76\x98\xe6\x8e\x61\x8f\xad\xfa\x81\x6a\xc5\x7b\xe0\x72\x92\x28\x59\xb3\x79\xf1\xdf\xfe\x8d\xc4\x16\xc0\xa0\xb6\x36\x27\x32\x37\xba\x74\xa0\x39\x8f\xd4\x70\x3e\x98\x24\x9c\x27\x21\x6e\xf9\x40\xf7\xe1\x7e\x30\xf5\x68\x97\x5f\x3a\x0c\x6f\x2a\x24\x3e\x88\xe1\x38\xf1\xe1\x93\xb1\x9f\xcb\x85\xa5\x26\x28\xc2\x44\x45\x82\xac\xe1\x6d\x50\x82\x9f\xd2\xaa\xac\xdc\xac\x1c\x25\xbd\x78\x83\x5a\xea\xf0\x9c\xcf\x23\xf8\x72\x3a\x99\x0e\xb8\xba\xa5\x95\x24\xbb\x85\xcd\x0a\xf3\x5a\xc3\x87\xe1\xdc\x64\x21\x2e\xdd\xea\x65\xa5\x11\x89\x13\x69\xad\x41\x0f\x7e\x5f\x51\x0e\x0a\x03\x62\xcd\xd8\x3d\x8a\x37\x75\x2b\x50\xf6\x4d\x68\x8a\x60\x65\x69\xb2\xd6\xe5\x7f\x1f\x29\xad\x93\x1d\xc0\x56\x58\xd8\x77\x34\x51\x64\xf6\x3d\xdb\x0f\x94\x43\x4e\x27\xad\xb2\xf6\x95\x65\x2e\x3d\x9c\xa1\x89\xc7\xc7\x4a\x1d\x27\x2b\x93\x7d\x0d\x27\xc9\x79\x69\xa4\xfc\xe7\x3e\xa6\xc5\xdd\xf5\x18\x57\xcf\x41\xf0\x0a\xba\x17\xb1\x8a\xf2\xa5\x8a\xb3\x5a\xf8\xff\x22\x6e\x12\xeb\xd8\x03\xfa\x79\x04\x21\x9f\xe2\xc6\x04\xb8\xa2\x1b\xe3\xae\xab\x5a\x22\x4f\x59\xb4\x4d\xb8\xda\x50\xa0\xe2\x64\x1b\xf9\x93\xca\x75\xea\xb3\xe1\xae\x9a\x2a\x17\x53\x84\xf0\xcd\x75\xd2\xb4\x75\x98\x4e\x39\x84\x45\xa0\x78\x9f\x5f\x53\xb1\xff\x49\xa5\x55\x7e\x93\xd0\x0f\xc0\xaa\xda\x49\x1e\xd7\x2e\x8d\xe3\xde\x62\x72\x3d\x4d\x76\xab\x88\xf5\xe6\xc8\x57\x5e\xb7\x94\xa8\x2d\x08\x57\xdc\x78\x13\x28\xab\x42\xec\x0e\xce\x73\xfd\xa0\xb3\xe6\x53\x19\x4f\x94\x54\x31\x01\xcd\xa5\x85\x05\x0e\xaf\xaf\xd2\x5b\xe6\x63\x85\xe6\x84\xa6\x08\xfb\x33\xca\x1e\xe0\xeb\xca\xf2\x10\xf1\xb4\x38\x1f\xd4\x6c\x26\x03\x93\xf5\xd2\x38\x12\x3d\x59\x8c\x9b\x33\x23\x35\x88\xce\xd4\x2c\xb8\x62\x7a\xa9\xc9\x68\xac\x6b\xcf\x27\x35\x03\x04\x1e\xed\xce\x2f\x56\x68\x95\x9a\x63\x39\xf5\xf2\x57\xe6\x9b\xf6\x35\x13\x16\xcc\x55\x65\xeb\x9c\xc0\xf7\x64\x4c\x57\x18\x0f\x2e\x35\xd3\x35\x9b\x99\x38\x26\x37\x1a\xc9\x5b\x1b\xce\x6c\x1c\x19\x19\x8b\x5d\x78\x45\x80\x72\x38\xcc\x6c\x9e\x73\x11\x08\x40\x1c\x9a\x70\xf8\x78\x6a\xb7\xfa\x45\x52\x83\x48\x07\x69\x86\xb6\x45\x44\x7c\xd0\x7e\x94\xe6\x8c\xea\xbb\x80\xc2\x6f\x69\x89\xd3\x0b\x23\x45\x9f\x27\x1a\x30\x5d\x2c\x27\x29\x00\x3e\xa4\x87\x42\x3b\x0b\x6d\xbf\xd9\x97\x17\x8f\x34\x33\x5b\x98\x28\x86\xee\x1c\x66\x34\x33\xba\x51\x68\xb9\x11\x28\xd7\xcb\xb3\x35\xfe\xc5\xd5\xdb\x4c\xe3\x35\xce\xf3\xa5\xbd\x9a\xde\x2c\xe2\x19\x50\xbc\x05\x45\x39\xe0\x9b\x43\x43\xeb\x65\x02\x81\x3e\x60\x8d\xc4\x8a\xfd\x3d\xe5\x5e\x76\x47\xa9\xd8\xc7\x26\x11\x23\x1c\x31\x6d\x51\xd4\xdf\x53\x13\xa9\x7c\xd4\xeb\xef\xa7\xd5\x89\xb5\x01\x02\x87\xbf\xff\x77\x07\xc6\xaa\x9b\xed\x94\xde\xf0\x7e\x2b\xd0\x6e\xfe\x4c\xa7\x77\x4a\x41\x5e\x7b\xe7\xc2\x48\x69\xdb\xdd\xa5\xe9\xa5\xa9\x5f\x82\xb5\x79\xae\xfb\x09\x3c\x15\x2e\x5a\xd1\x64\x07\xda\xff\x54\xcb\x69\x76\xb1\x1f\x52\x3e\x68\xe8\x9e\x2c\xdd\xab\xe5\xdf\x7c\x94\x67\xc6\xc6\x84\x55\x20\x37\x3b\x11\xe8\x7a\xd2\x05\x02\xe0\xd8\x0a\x3d\xd0\xfa\x96\x8a\xab\xfa\x0e\xd6\x16\x06\x82\x94\x8e\xcb\x1b\x81\x07\x0c\x4f\x68\x05\x90\x77\xa6\x69\xfd\x0b\x28\x46\xd1\x28\x06\xe1\x0a\xe0\xad\x20\x42\xd5\x9d\x4a\xbf\x9f\x67\xc5\x35\xc6\x35\x31\x78\xdb\xc6\x91\xed\x36\x54\xb7\x12\x20\x65\xe9\x9f\xf1\x77\xbf\x1e\xe5\x7d\xcb\xc1\x21\xbb\x86\x2b\xf2\xfb\xa5\x29\xd0\xf6\xe5\x95\xf9\x66\xbf\xcc\xdb\x55\xea\xdc\x50\x5d\x0e\xdc\xf9\x2c\xfa\x37\x4e\x6d\x95\xa2\xb4\x6d\xcd\xf3\x4e\x5d\x09\xe5\x47\x29\x9f\xd6\x28\x66\x17\x26\x5e\xe5\x9f\xe1\x6e\x08\x25\xf3\x7d\x55\x19\x38\x84\x71\xc9\x34\xd1\xa5\x25\x8a\xc2\x0e\x1d\xda\xda\xac\xcb\x4e\xaa\xcd\x71\x92\x67\xa4\x75\x71\xaf\xa9\xe2\x40\x11\x25\x7b\xd4\x7f\x21\x49\x13\xaa\xa5\x12\x67\xbe\xa4\x70\xc8\xef\x23\x22\x10\x65\x50\xc5\xdb\xfe\x21\x0f\x2a\xcc\x80\x7b\xca\x56\xf7\x56\x1d\x33\x02\x26\x8a\x90\xa9\xc5\x57\x63\x15\x74\x7e\x5b\x4a\xde\x50\x53\xd4\x36\xb8\x5d\x17\xb3\x0e\x2c\x72\x3e\x1e\x7b\xf0\xdf\xbe\x56\x64\x66\xd6\x53\xb2\x4e\x05\x9f\xe9\x7b\xe1\xa3\x9d\x53\x75\x89\x73\xbb\xec\xf4\xac\xe7\x28\xb0\x98\xad\xaa\x60\x5d\xaf\x75\x50\x0f\xe3\x34\x77\x1f\x92\x90\xbd\xe1\xda\x2e\x2f\x3b\x1d\xd4\xcc\x9a\x3c\x2f\xb3\x6d\x12\xca\xb7\x95\x46\xd1\x9e\x96\x9f\xd6\x0f\x94\xf5\x5d\x18\x65\x61\x39\xc8\x0b\x03\x6b\xcd\x2a\x9e\x15\x3f\x47\xca\xed\x84\x82\x75\x40\xc9\xc7\x46\xdd\x34\x1b\x20\xc0\x01\xec\xf4\x3e\xa6\x2c\x9f\xd4\xda\x7c\x0f\xcb\xc1\x90\x6f\x65\xd9\xb5\x4a\xd0\xb5\xf2\x49\xf0\xac\x7b\x3f\x89\x5d\xcf\x09\x72\xc9\x1b\x5a\xff\x4d\x35\x8e\x5e\x1e\x3d\xeb\xae\xe7\x55\x9b\x0e\x4d\xd6\x21\xf6\x9c\x23\x09\x7f\xa0\x6b\x2a\x1f\xd4\x88\x02\x35\x4d\xd8\x8f\xec\x9a\x1d\x50\x1d\xc8\x55\xfa\x8f\x2b\x21\xb3\xe3\x6e\x7a\xae\x99\x2c\x92\x00\x42\xd4\x52\xab\xbf\xe3\x63\xc5\xba\x0b\xd3\x2a\x94\x53\xd2\xea\x60\x5a\xf0\xb1\x37\x33\xef\x47\xb1\xe5\x7d\x85\x6b\xb0\x5a\x0a\xf5\xda\xe8\xe7\x3f\xa3\x74\xd6\x89\xd6\x6c\x96\x93\x76\x2f\x60\x43\x87\xc9\x3b\x06\xcb\x25\x8d\x51\xde\x0f\xbe\x30\x59\xc2\xa1\xac\xf5\xe8\x3c\x19\x0c\x8a\xe6\x33\x55\x2b\x90\xb1\xde\x00\x9d\x9d\x4f\x88\x6f\x0e\xce\x02\x14\xde\xb0\xfd\x20\x8c\x54\xe8\xda\x61\x57\x85\xa8\x5e\xd1\xc4\x65\xe0\x86\xe0\x29\xc4\xf6\xa2\x93\x5a\xd7\x13\x56\x8d\xde\xa0\xe4\x6e\x5d\xd4\x6e\xb3\x72\xe8\x22\x39\x67\xc8\x54\x6d\x92\xe2\x6a\xe2\xdd\x01\x8a\x3e\xd9\x06\x75\xcb\xb8\xa1\x88\x7d\x50\xea\x74\x54\x0e\x3f\xd7\x93\xa8\xd7\x2f\x26\xfb\x07\x17\x16\x5d\xff\xa0\xa6\xaa\x76\x6d\x67\xbf\x6e\x3a\x86\x14\x07\x9e\x12\x23\xf0\xc8\x88\xb8\xbd\x94\x3b\x0b\x69\x2d\xc2\xf3\x3b\x83\xe5\x0f\x75\x8f\x71\x30\x49\x86\xfe\xca\xa2\x6b\x00\xf1\xad\xc2\x97\x54\xd6\xc1\x65\x5a\x0c\xa9\x1b\x81\x8a\x9e\x10\xcd\x49\x69\x45\xa1\x7e\x51\x11\xbd\x6e\x13\x3c\x36\xa7\xa5\xea\xf5\xb6\x8f\xb9\x4c\x3d\x4c\x07\xc3\x2c\x1d\x44\xb9\x40\x7c\xea\x27\x7d\x63\xca\xd3\xca\x2f\x69\x10\xc5\x91\x85\x9e\x09\xd6\x6c\x6c\xc6\x02\xdf\xd2\x18\x40\x1e\xe3\x85\xc2\x0b\x3b\xf0\xaf\x51\xab\x2c\x88\xfc\x82\xaf\xbb\x90\x1f\x0a\x77\x35\xe0\xa5\xfd\x33\x0a\x15\xf8\x58\xed\x43\xb1\xb1\x8d\xea\xe1\xc9\x32\xa9\x44\x73\x2f\x07\xaa\x57\xc2\x93\xf5\x67\x69\x5c\x20\x84\xb8\xa7\x9c\xe6\xd8\xe3\x8f\xff\x83\xd0\x0f\xfe\x0f\xcf\x7a\x2b\xb3\xb5\x0d\x95\xd1\x1f\xa7\x8f\x8b\x2c\xaf\x93\x8b\xea\x67\xd1\x90\x0b\x2c\xf8\xbf\x5b\x6a\xc9\x7f\x4c\xf8\xbc\xcc\x5f\xbf\x47\xe7\x36\x31\x45\x9a\xe5\x8a\x49\x7b\x65\x54\x65\xf0\x82\x08\x78\x14\x20\x29\xb3\x6a\x7f\x98\xf5\x93\x7f\x37\x4d\x34\xd6\xae\xd5\xf5\x41\xdd\x60\x7a\x43\xb5\xdc\x76\xac\x89\x6d\x96\xf7\x23\x90\x35\x38\xa2\x9e\x10\x2f\x9a\x54\xf8\xa7\x9d\x02\x1b\x05\xe6\xf6\xa7\xd8\x28\xf8\x64\x82\xdb\x96\x46\xfc\x92\x31\xf3\x1f\x20\xba\xe7\x93\x3a\x57\x75\x93\xe7\x51\xf5\x0b\x98\x89\x78\x7b\x10\x4a\xe0\xe3\x29\xca\x0d\x89\x15\x85\x59\xd4\x6e\xc7\x12\xd7\x30\xdb\x7e\x33\x50\x5a\x6f\x9b\x53\xe0\xf9\xca\x7c\xb3\x4c\x58\x34\x86\xaf\x92\x3b\xe9\x68\x2d\x95\xae\xba\x3a\x94\xa9\xda\x6b\x07\xa0\x63\x72\xba\x8e\x39\x2c\xb9\xbb\x72\xaf\xa4\x5a\xfc\x5e\x85\xd7\x82\x7b\x84\x9a\x37\x32\x78\x44\xc0\xdc\xe5\xaa\x34\x23\x65\x15\xbe\xac\x92\xf3\x99\xb1\x76\x71\xc6\x5a\xc6\xdf\x35\xf6\xb6\x98\x75\xfe\x9c\xcb\x4d\x1b\xf6\x53\xb9\x53\x7c\x06\xe5\x5e\x3e\xd6\x72\x18\xa4\x52\x62\x62\xc9\x7e\x35\x78\x2f\x10\xae\x37\x6d\xaa\x5e\xd6\x67\x10\x0b\x6b\x05\x5c\x4c\x51\x54\x09\x6f\xa3\x5a\x29\xb7\x36\x69\x5c\x6e\x6d\x4e\xc5\x0c\x47\xe7\xb7\x61\xc7\x22\x79\xa0\xeb\xbb\x4f\x78\x6b\xbd\x59\x92\xd2\xe6\x75\x30\x50\xc4\x12\x45\xae\x7d\x7b\xd4\xf8\x95\xc3\xce\x75\xdf\xa3\x5a\xdd\x28\xb3\x0d\x70\x06\x58\x1f\x03\x0d\xf2\x22\x96\x31\xad\xee\xbf\xdc\xec\x97\x5a\x5a\xf5\x22\x05\x83\x7c\xec\xb2\xce\x32\x09\x63\x13\x0d\x64\xab\x16\x47\x48\xdf\x04\xc2\xbe\x2b\xb8\x9d\x53\x0a\xb9\x7e\xb5\xec\x44\x61\xb4\x4d\xfa\x21\xd0\xd2\x0f\x6a\xe5\xeb\xa5\x09\xa5\x65\x82\x66\xe0\xa5\xe9\x8e\x42\x29\x20\x29\xf8\xe2\x07\xa0\x35\x80\xa3\xb0\xb7\xe5\xb3\x1e\xd6\xfe\x16\x1f\x28\x2f\xbd\xb0\x67\xac\xcc\x52\x4f\x29\xb4\x6f\xdd\x64\xb0\xe0\x16\x8a\xb6\x6f\x6d\xdb\xd5\x52\x25\x96\x33\xd8\x45\x34\xa9\x1b\xb9\xed\x8e\x71\x9d\x2e\x2c\x55\x5b\x8c\xdb\x27\x30\x01\xbe\xad\x5a\xa4\xbe\x3d\x85\x5e\x2f\x1e\x69\xda\x0d\x29\xaa\x70\x63\x52\xa0\x9b\x94\x3c\x0f\xbb\x6b\xaa\x99\x99\xcf\x79\x3b\xe9\x1f\x2b\xcd\xae\xb9\x96\xbf\x3a\xb4\x11\x2b\xb0\x42\xee\x67\xc7\x58\x26\x81\x77\x57\xc3\x2a\x7c\x4e\x99\x44\x9d\xab\xb3\x46\xca\x8b\xcc\x26\xbd\xa2\xcf\x97\xea\x14\x61\x5c\x50\x76\x7e\x2a\xcd\x3b\xf2\x52\x33\x2f\xac\x01\x7d\x1d\x55\x50\x70\x10\xf8\xb8\xae\xc5\x8c\xd1\x96\x09\x13\x0f\x57\xed\xbb\xa1\x6c\xde\x7f\x34\x12\x49\x36\x33\x98\xc3\xf8\xc1\xbe\xb1\x53\x8b\xf9\x3e\x22\x26\x8e\x68\xf9\x7a\xb9\x8c\x7f\xf1\x79\x7a\x5c\x42\xbf\x3b\x10\xe9\x47\x1c\xc9\xfb\xf8\x8c\x66\x47\x1f\x57\x99\x64\x46\x7b\xb7\xdc\xc2\xa2\x2a\x54\x23\x95\x24\xbe\x5f\x27\xc3\x34\x08\xa3\xa4\x48\xf3\xfe\x8c\xd6\xdf\x3f\xaf\x58\xb7\x17\x75\xc7\xd2\x7d\x57\xdf\xb5\xaf\x0d\x6d\xe8\x53\x33\xac\xc6\x17\x15\xc1\xf4\xe2\x67\xca\x80\x0d\x4c\xd6\x8b\x12\xbe\x3d\x56\x0f\x0c\x26\xa4\x04\x6b\x06\x68\xb7\x64\xd5\x3f\x54\x8f\xcf\xe0\x03\x7c\x52\x67\x24\xd2\x49\xd7\x13\x92\xc1\x44\xcc\xf3\x01\xc5\x3f\x78\x9d\x6c\x0a\x22\x25\xc3\xea\x3d\xa3\xa0\xfe\x26\xc5\xa4\xc8\xff\xf7\x2a\x0f\x82\x7b\x53\x4b\xf2\xd1\xf9\x57\x9a\x69\x59\x64\xa6\x27\x13\x8d\x4d\x1f\x08\x69\x16\x03\x88\x69\x19\xd6\x45\xa0\x30\xbb\xa6\x9c\x4a\x1d\xfd\xdb\xc5\x1e\xa7\x31\x54\xc4\x76\xdd\xbb\x59\xde\x05\xb1\x47\xd8\xae\x4f\xf9\xca\x3c\x15\x99\xd1\x21\xee\xb4\x5d\x9c\x8e\xda\x7f\xf5\xf9\x96\xcf\xdd\xf7\xd4\xa8\x84\x35\x49\xd6\xd3\x14\x62\x57\x25\x48\x9b\xf2\x6c\xb8\x8c\x95\x57\xd8\x19\x75\x2b\x7c\x28\xda\xb7\x98\x22\x3b\xc9\x60\x86\x8f\x5b\x35\x39\x7e\xbe\x91\x74\x48\x6a\x77\xc6\x97\xac\xb1\x67\x22\x18\x06\x1a\x25\x93\x64\xfb\x08\x5e\x58\x68\xae\x67\x66\x38\x74\x03\x91\x7d\xe5\x95\x8c\xc6\xfd\xa9\x95\x64\x65\xbe\xd9\xb6\x09\x33\x0f\x95\x59\xca\x23\x7a\x13\x7c\x3c\x95\xfc\x1e\x3a\x44\x51\xb0\x0d\x23\xd3\x66\xac\x9a\xc3\xf5\x89\xd0\x7d\xfa\xc7\x0e\x37\x73\x6b\xf2\x34\xb1\x13\x51\xdd\x45\x25\x1d\x72\xb1\x86\x90\xb1\xdc\x6c\x9b\x36\x86\x3c\x02\xa4\x63\x78\xf6\x7c\xe2\xf9\x36\x61\x9a\x54\xa9\x07\xd7\x08\x7d\x4b\xbb\xa3\x97\x22\x58\xe0\x0b\xbc\x1d\xfc\xc4\x64\x03\x74\x5e\x64\xa6\x88\xd6\x50\xac\x91\x0e\x05\xfa\x80\xa0\x41\x2a\x23\xaa\xb2\x6f\x9b\x01\xc3\x50\xda\x44\x87\x9d\x82\xd1\xb4\x39\xfd\x72\x33\xcc\xa2\x01\x6c\x1f\x44\xaa\x54\x29\x76\x7e\x23\x98\x5c\x78\xea\xbe\xa0\x6f\x4d\x27\xc7\xb0\x96\xfd\xd5\xbb\x91\xff\xf5\x1b\x23\x25\xd5\xbd\x63\x4a\x53\xfa\xe0\x52\x33\x33\x51\x9c\xa5\x6c\xf2\xc3\x4e\xe5\x4a\xd2\x44\xab\x31\xc6\x65\xf1\xba\x72\xe0\x3e\xae\xad\x13\x8e\xbb\x3c\xa6\x5d\x16\x61\x9f\xfe\x4c\x1a\x1f\xe9\xcf\xf8\x44\x85\x48\x03\xcb\xd2\x8a\xd8\x7a\x2f\x61\x2e\xf1\x49\x0d\xad\xab\x19\xc6\x55\x2c\xdf\x8d\x64\x0e\x62\x5f\x7d\x88\xcf\x31\xa5\x09\x39\xa8\x98\x91\x6f\xbf\xdf\x97\x17\x8f\x34\xfb\x69\x5e\x44\x50\x49\x7f\x45\x3b\x88\x3a\xfa\x61\x9d\x65\x59\x19\xc5\x80\xfa\xbd\x58\x00\xf7\x99\x88\x7b\x76\xc3\xb5\xf8\x5e\x57\x02\xfc\xeb\x26\x8e\x9f\xa4\x81\x8d\x75\x0b\x96\x43\x80\x8f\x19\xa4\x44\xf0\xf3\x16\x3d\x73\xc4\x31\x3b\xc6\x4a\x93\xe5\x1d\x02\x0d\xa4\x84\x4c\xab\x9e\xb3\x5b\x75\xe2\x62\x37\xb0\xea\xa1\x84\x79\x16\x0f\x04\xcb\xff\x43\xa5\xfe\x79\x0b\xb4\x59\x00\x10\xbf\xad\x72\x30\xb2\xce\x4a\xa2\xa4\x37\xe7\x81\xc9\xbb\x08\xe6\xb0\xde\x03\x0b\x12\x4f\x76\x5f\x10\x78\x4c\x71\x0c\x72\x8a\xe3\xae\x2b\xbb\xda\xfe\x92\x4e\x54\x94\xfc\x7e\x99\x2a\xaf\xfc\xb0\x2f\xea\x02\x35\xb9\x82\xd1\x1f\x62\x9d\x87\xc1\x0a\x1f\xd7\x2e\x6a\x7d\x53\xd8\x35\x9b\xa1\x45\x0c\x03\xfd\x8e\x4a\xe1\x4f\x8c\xb4\xb2\x54\x0d\x9d\x6b\x80\x9d\x69\xc9\x79\xec\xf2\xf2\xc1\x27\x53\x9b\xf3\xa1\x43\x13\xa4\x3f\x65\x8d\x7f\x53\x99\xc1\xdc\x54\x18\x43\x51\x66\xab\x76\x83\x04\xc5\xdd\xb2\x51\xfd\x82\x2c\x1b\x3a\x48\x59\xb3\xd9\x4f\x36\xbe\xf4\xab\x3e\x25\x3a\xb8\xe4\xfb\x11\xbe\xb2\xe8\x74\x98\xb5\xd2\xd3\x2c\xd8\xcc\xc8\xb3\x36\x91\x2d\x63\x1f\xb9\x4d\x01\x15\xcb\x60\x02\x3a\xc2\x40\xfa\x94\x06\x12\x50\x87\x3f\x43\x9a\x07\x74\xe5\x24\xe6\x0c\xe6\xfb\xdd\x40\xc9\xd1\x31\x65\x16\xb5\x61\x08\xfd\x23\x55\xb8\xa9\x54\x99\x6e\x62\xb8\xb1\xc0\xac\x56\xcd\xdc\x41\x4d\x3a\xce\x97\x55\x2b\x79\x6a\x09\xd3\x06\x09\x81\x89\xd6\x72\x15\x22\x20\x3e\x43\xec\x8a\x25\xfb\xc3\x29\x22\x26\xb9\xb9\x90\xd8\xaa\x69\xc7\x56\xd2\x4a\x35\x03\x84\x99\x74\xb6\x26\xd2\x78\xb1\x99\xbe\x9e\x26\x2c\x84\x21\x7c\xc1\x86\x73\xee\xba\x3a\x95\x9e\xbd\xbc\xdc\x1c\x3a\x02\xae\x82\xbb\x9c\x5e\x6e\x8d\xaa\xfc\x2b\xcd\xce\x86\xdb\x7a\x41\x82\xf8\x56\xe0\x09\x11\xdf\x9a\x68\x56\x2f\xe3\xce\x53\x13\x04\x19\x5a\x02\xc0\x00\x7c\x1f\xef\x17\xc1\x09\x2c\xd5\x44\xcf\xa2\xe1\x7a\x24\xa1\xa4\x8c\xa8\xe9\x5d\x5c\x1a\x36\x91\xeb\xaa\x7a\xf5\x50\x99\x05\xfc\x00\xaf\x1d\x64\x39\x70\xdd\xc5\x95\x44\x89\x42\x5f\x03\x8d\x12\x40\xc3\x31\x9a\x58\x00\x7c\x9e\x6d\xd1\x10\x92\x05\xd4\x23\xed\x5e\x70\x6d\xb7\x22\x3f\xde\x53\x97\xf7\x40\x59\xf6\x3f\xd2\x46\x23\x8c\x09\x3a\x7d\x20\x07\x3b\x9d\xa6\xd9\x2d\xda\x6d\x3a\xcc\x4e\xf2\x68\xcd\xce\xf9\x4a\xe4\x43\xa5\xe3\x84\x81\xc5\x86\xaa\x23\x55\x31\x3b\xa6\x5c\xae\x66\xc7\xde\x36\x75\x68\x4d\x31\xd3\x38\xf2\x92\xeb\x31\xac\xfe\x0c\xeb\x0b\x7b\x0b\x89\xbe\x4f\xdd\x4e\x3c\x8c\x9c\xd1\x09\x76\x88\xbf\xc4\x5c\xe2\x93\x1a\xaa\x65\x73\x98\xa5\xa1\xcd\x7d\x3d\xc6\x89\x8f\x7b\xe0\x30\xa8\x51\x9c\x8c\x6d\x41\x25\x24\x4c\x46\xb6\x28\x91\x24\x6f\x32\xc3\xa9\x1e\xae\x30\x65\xb7\x5f\x34\xe1\xf6\x71\xba\xc6\x45\x42\xcc\xb4\x5b\x6a\x27\xdb\xd5\xf2\xac\x81\x7b\xda\x4a\xad\xac\x96\x43\x38\x7f\xd2\x1b\x13\x21\x45\xfa\x39\x3e\x71\x01\xc1\x5a\xb4\x16\xe9\xb2\xdf\x7b\x8a\x90\xfe\x9e\x22\x72\xc4\xb6\x67\xe2\x7d\xd5\x8a\x27\x81\x1f\x0d\x3d\x6e\x98\xa7\x11\xe0\xd4\x7d\x17\x8f\x78\x76\xb2\xb3\x12\xde\xd1\xaa\x16\x0f\xd1\xd0\x69\x28\x25\x13\xba\x2e\x57\x43\x50\x92\xe7\x78\x43\x18\xdd\x8d\xb1\x6e\xd9\xd2\x30\xfe\xaa\x05\x91\x5c\x6c\x03\x69\x28\x88\xd5\xa0\xdf\xc9\x32\x93\xd9\x78\x83\x34\xb1\x40\xe6\xda\xd9\x9a\xec\x88\x5b\x58\x94\xff\x18\xab\xf4\xe5\x1a\x36\x6f\xf1\x36\x53\x6e\xf5\x97\x95\xae\xcd\xab\x29\x4b\x1f\xe1\xbf\x4e\xe3\x59\xf3\x49\xad\x09\xea\xd0\x66\x36\x2f\xb2\x34\x5a\x85\xc7\xb6\xf4\x1f\x37\xbe\xfc\xb2\x1c\xd7\x15\x44\x7a\x69\xda\x11\x8f\x8e\xad\xcd\x80\x21\x35\xc1\xd9\xa3\x98\x5e\xd3\x9c\x47\x40\xee\x2b\x5e\x11\xfb\x04\x63\xf4\xfd\x3e\x4d\x79\xfc\xd2\xe7\xb4\xfb\xdc\xd5\x3a\x3f\xac\xf5\x34\x9d\x6d\xbc\xbc\xec\xab\x9f\x47\x85\x1d\xfa\x48\x6f\x56\x17\x95\xb2\xe2\xff\x34\xda\xe7\x0d\xd7\xb8\x87\xd7\xb5\xee\x78\x87\x54\xa5\x6a\x54\xa4\x65\x96\x18\x67\x10\xf2\xa2\x53\x12\xf6\xb4\xa7\x5f\x53\xf6\x63\x49\x42\x58\xab\x6c\x2e\x1c\xf7\x05\x4a\x7a\xce\x37\x8b\xb4\x33\x72\x84\xe7\x4e\x79\x21\x0e\xe0\x83\x34\x33\x5b\x4f\xe3\x19\x20\x3f\xbc\xa0\xe5\x9c\x67\x55\x81\xb8\x1f\xc5\x71\x0e\x7f\x2c\x70\x1a\x60\xd6\x25\x61\x71\x75\xa1\x20\xa4\x9d\x19\x29\x4f\xae\x69\x1d\xf9\xa3\xf3\x4d\xd3\xcb\xa2\xb0\x8c\x11\x87\x39\x47\x52\x0d\xe1\x3f\x98\x12\x94\xf2\xa2\x24\xd2\x4c\x27\x16\xb9\x6a\xaf\xbc\xa8\xc4\x07\x4c\x36\x48\x45\x0d\x9c\x5b\x35\x68\x87\x92\xb6\x8d\x03\x2a\xca\xcc\x7a\xf9\x00\x9d\x89\xa0\x04\xa1\x83\x9d\x8f\xeb\xc8\xb0\xcd\x9c\x1c\x8d\x38\x37\x14\x25\x20\xba\x6f\x3e\x71\x41\x67\x1c\xb5\x6d\x66\xe2\xe8\x75\xdb\x41\x11\x06\xeb\xe7\x3f\xa1\x27\xe6\x48\x32\x9e\xae\x75\x73\xa4\xbf\x46\x35\xc2\x93\x9c\xd0\x2e\xd5\x10\xf2\xc9\x48\xe9\x54\xfd\x3a\x5d\xb2\x63\xf7\x2f\xaf\x28\x49\x27\x57\xbd\x85\x70\xad\x30\x15\xfd\x13\x58\x37\xa4\x71\x34\xa7\x3a\xeb\xbf\xae\x4d\xa9\x46\x5a\x83\x45\x4b\x4a\x68\xc6\xd8\xa6\x52\x10\x0a\xd3\x81\xcd\xf7\x7a\xf2\xed\x23\x5a\x25\x95\x18\xe5\x2b\x6e\xb0\xf8\xe0\x7b\xcf\xd8\xdf\xc2\xde\xd6\x84\x3d\x0c\x2d\xb8\x88\x40\xee\x05\x8d\x5f\x91\xd8\xed\x9c\x4e\xe1\x3e\x52\xa2\x6c\x79\xd9\xe9\xd8\x24\xde\xc0\x4e\xef\x98\xd3\x4e\x41\xf0\xae\x56\x06\x62\x41\x11\xec\xe8\xbf\xa1\x5d\xfc\xee\x2a\x41\xb6\x4f\x47\xca\xc3\xf8\xbe\xf3\xf6\x19\x2a\x03\x17\x1a\x41\xd8\xa1\xd0\xdc\xc4\xc7\x53\x25\x8a\xc5\x23\x4d\x6b\xf2\xc2\x66\x8c\xba\xe0\xa7\xb1\xce\xf3\x71\xcb\x2f\xdf\x45\x16\x75\x79\xcc\x43\x2d\xfe\x8a\xb2\x9c\xb9\x52\xdb\x85\x61\xba\x99\x91\x7a\x14\x42\xfb\x9d\x63\x0f\x15\xec\x6c\xf9\xab\x4f\x3b\x25\xd9\x42\x14\x1b\x33\x8a\x9e\x7f\x46\x05\x9d\xf7\x74\x61\x73\xa7\x32\x29\x1f\xda\x2c\x4f\x13\x13\xc7\x1b\xb3\x4a\xdc\x99\xc9\x33\x5c\x23\x9e\x50\xcd\xa4\x67\x2e\x2d\x03\x75\xea\x83\x69\x9a\x44\x56\xb5\x95\xde\x40\x70\xc3\x27\x75\xe9\x8f\x27\x2c\xb3\xeb\x13\x36\x9e\xf3\x81\x6a\xda\xe0\xe8\x0d\xfb\xe2\xf7\x1d\x8f\x24\x1d\x16\xd1\x80\xbc\x86\x76\x29\x57\xde\x8b\x9a\xc7\x73\x0e\x13\x49\x7a\x4b\x14\xd3\x51\xd1\x37\x0f\xb4\x7c\x3d\xf4\xb2\x72\x42\xea\x98\xbc\xdf\xf0\x2d\x98\x98\xa0\xa2\xe1\x3f\x5d\x02\x5a\x6a\xb6\xa3\x38\x76\xac\x16\x2d\x8c\xc4\xba\xb9\x6a\x33\xb8\x53\xf3\xd6\x5f\x21\x5d\x16\x59\x93\xb4\xe0\xa2\x48\x26\xa8\x2e\x67\x03\x23\x4c\xe7\x18\x42\x63\x1b\x01\xfb\x0c\x45\xa7\xd8\xd5\x7e\x00\xc6\xa3\x34\xd6\x79\x0a\xf2\x25\xd5\x64\x3f\xb0\x55\x78\x01\xe8\x03\xdf\xf7\x78\xa4\x32\x7d\x7d\x0f\x97\xd5\x02\xcd\x64\x50\xa8\x73\x23\x76\x67\xc9\x5e\x27\x8b\x71\x50\x58\x61\x27\x47\x2a\xc1\x39\xe7\x1c\x02\xc3\x34\x09\x6d\x96\xe4\xbb\xab\x08\x66\xc2\x1e\x98\x89\x1c\x23\xcf\x17\x7c\x8c\xaf\x90\xd6\x1d\xfa\x21\x14\x07\x7e\x86\x6e\x58\xab\x22\x22\x31\xdd\x3d\x7e\xca\x71\x62\x92\x2a\x7b\xc0\x08\x03\x48\x0b\x39\x26\x2c\xd9\xff\x5a\xb7\x82\xdf\x57\xbc\x8c\xae\xcd\x8a\xa8\x5a\xfa\xb3\x59\xca\x38\x01\x84\xbd\xa1\xd5\x93\xde\x40\x01\xde\xd5\xc8\xaa\x91\x28\xe9\x8e\xf3\x0f\xcb\x8a\xa8\x1b\x85\x51\x35\xd5\xd4\x32\x70\x86\x06\x24\x1f\xd7\x10\xdb\x0e\x37\xa9\x24\x47\x11\x39\xb6\xec\x93\x23\xc5\x49\xfc\x1e\xde\xad\x76\xc4\xc5\xe4\xbf\xaf\x18\xfd\x7d\x93\x15\xdd\x34\xeb\x70\x67\x06\x70\xa0\x5b\x5a\xa5\x86\x46\x98\x28\xd6\xd0\x73\xe0\x3f\xd2\x10\x64\x5a\x45\x67\x76\x97\x96\x9b\x99\x50\xba\xf1\xb1\xd3\x3f\x0e\x26\x70\xca\x2a\xa0\xc6\x07\x2e\x4e\x62\x96\x35\xf0\x4b\x91\xa5\x65\x3b\x96\x0a\xa4\x8e\xf5\x30\x02\x7e\x84\x45\x1f\x99\xe1\x7b\x4a\xc3\x60\x2d\x4a\x63\xd6\x9e\x73\xd4\x0e\x4e\xd5\xc5\xaf\xd8\x1b\x30\x0f\xcb\x76\x1c\x85\x26\x61\x61\x3f\x34\x81\x3f\x85\xd2\x91\x50\x6d\x26\xb2\x71\x45\xe0\xfe\xb9\x2f\xb4\xea\x4c\x00\xcc\xaa\x4b\xb4\xc4\x2a\xb3\x7a\x38\xc2\x8c\xf5\xba\x3c\x3d\x93\x25\x56\x80\x1e\x91\x31\x6f\x38\xa3\xa2\x4b\x6a\x86\x7f\xe9\x2b\x87\x67\x3c\x1c\x04\xe3\x0d\xa7\xdf\xe7\x49\xe4\x9f\x4e\x8d\x9b\xe7\x9b\x6d\x1b\x9a\x32\xb7\xa4\x51\x84\x78\xe2\x36\x4d\x45\x94\x55\xf6\xd2\x6c\x41\x92\xbc\x35\x65\x01\xfa\x8b\x55\x64\xf4\xd9\x0d\x89\xcf\xa8\xf6\x8f\x81\x2d\xfa\x51\xd2\x7b\xaa\xfa\x6a\x80\x2c\x4c\x95\x44\x2e\x7b\x27\x98\x68\xd8\xa0\x57\xc7\xbb\xf2\x48\x01\xab\xff\x7c\xd4\x78\xee\x39\x29\x37\xd3\xb3\x40\x00\xcc\x29\x8e\x28\xa2\x54\xf7\x82\xa5\x04\x2c\x73\x84\xad\xcf\x8e\x29\xb0\x00\x7e\xb8\x17\xed\x33\x18\x2b\xd7\x31\x2d\x71\x72\x05\x70\x15\x5f\x17\x8d\x49\x16\xb1\x54\x59\x62\x66\x4d\x67\x83\xd2\x0f\x26\x67\x8f\x3c\x19\xfe\x26\x06\x13\x16\x25\x98\x7e\x89\x1d\x2f\x46\x87\xf4\x4e\x3c\xab\x3a\x8e\x62\x1b\x16\x54\xb4\x50\x49\x30\xb3\x8d\xf9\xa4\xce\xa0\x66\x68\xc2\x55\xd3\xdb\x46\x8e\xfc\xcb\x91\x4f\x8b\xf8\x5a\x04\x45\xf7\xbd\x0d\x69\xb7\x0b\xd4\xa2\xe1\x71\x54\xb8\x30\xf2\x71\xe0\x13\x90\x2c\x2b\x7b\x30\x2c\x77\xe5\xef\x9b\x81\xd2\x30\xbd\xa9\x04\xd4\xba\x16\x8a\xad\xb4\x78\x8a\x56\x96\x2f\x39\x9f\xa0\xb1\x25\x52\x45\x4e\xbb\x23\x22\xad\x06\xf7\xa6\xb8\xe7\x8b\x4f\xa6\xb0\x87\xe7\x9b\x03\xd3\xb1\xbb\xbc\x2b\xdf\x05\x25\x0e\xc3\x24\x32\x46\x9d\xb4\x0f\x02\xbc\xfe\xa4\x64\xea\x65\x81\xeb\xd8\xf8\x8b\xcd\x35\x53\x54\x13\xbf\x31\xd1\x9e\x5e\x5d\x15\x9f\xa8\xf8\x37\xcd\x7a\xfc\x87\x78\x01\x37\x55\x6f\xeb\xcd\x09\x90\x35\x1a\xd8\x67\x69\x6f\x60\xaa\x06\x74\x05\x80\x99\x3c\xd2\x52\xd1\xbf\xa6\x19\x83\x9f\x8e\x7c\xd7\x31\x37\xc0\xa2\x52\xb4\xb3\xe5\x4b\x99\x1f\x62\xb5\xc7\x63\xfe\x11\x74\xc0\x9d\xb7\xbf\x4b\x3e\x1e\xaa\xb5\x86\xbd\xaf\xf1\x89\xef\x62\x33\xc2\xa5\xcc\x51\xdf\xa9\x0c\xc2\xea\x49\x21\x41\x41\x9a\x80\x79\x39\x03\xe2\x3f\x76\xfd\x1d\x63\x2d\xf4\x81\xd9\x84\xd0\x6f\xd7\x54\x41\x11\xb6\x06\x49\xc7\x6b\x5c\x02\xdb\x3a\x4d\xf3\x99\x8f\x75\x63\x46\x9c\x6e\x74\x72\x72\xeb\x43\x37\x2a\xc8\x80\x7c\xac\x80\x8f\xbc\x6f\xda\xed\x8d\x86\xf2\xfa\xbe\xa4\xa5\xa0\x2e\xe9\xc2\x78\x9a\x97\x99\x08\x80\x61\x3a\xde\x1e\x29\x07\xda\xdb\xca\x69\x29\x8b\x8a\xc2\x66\xda\x59\x50\x79\xee\x6a\x0e\x59\x66\xc3\x2a\xca\xe1\x05\x5b\x6c\xe5\xe9\xc1\xf0\x89\xcb\x23\xd6\xd3\x6c\x95\xcc\x2f\xd3\x24\x9f\x51\xed\x0f\x17\x46\x0a\xc5\x16\xad\x47\xa1\x9f\x3b\x53\xbe\xa4\xb0\xd9\x20\xed\x00\x4f\xa9\xed\x15\xda\x3e\x63\x56\xe6\x9b\xbd\x34\xc1\x22\x81\x9d\x17\x6c\x72\x4c\x99\x73\x23\x0f\x7d\x6f\x8e\xb6\x29\xa3\x1c\x79\xa9\xb9\x78\x64\xce\xbf\x9a\x4d\x5a\x5d\x31\xb2\xde\x1c\xa9\xea\xc5\x43\xfa\x16\x25\x23\x24\xff\xee\x18\x55\xeb\x42\xfb\x11\x61\x21\xfa\xb4\x87\xba\x3c\x0e\x6d\x8a\x94\x6b\xa5\x2e\xce\xab\x9e\x0b\x46\xfa\x49\x25\xe4\xff\xa1\xda\xd8\x87\xa6\xc8\x22\x93\x85\x88\xc3\x31\x30\x4f\x10\xd1\x97\x8f\x9d\x3a\xc4\x20\xcd\x8b\xfd\x8d\x2f\xbf\xac\xdb\xf8\x84\x15\x88\x02\x85\x93\xad\xaf\xde\x0d\xa2\x7d\x08\x7a\x62\xef\x61\xa9\x37\x71\x6a\x53\x60\xd9\x1d\xa5\x0a\x80\x2c\x0c\x11\xc8\xee\xb1\x1f\x40\x3f\x8b\x8a\x04\x22\xa3\xe7\x91\xfb\x62\xe7\xdb\x3d\xf6\x80\xfb\xd7\xfe\x13\x95\x15\xae\x9b\x0c\x2a\x1d\xa2\x84\xf2\x6e\xe0\x85\xee\xdf\xad\xeb\xbe\x1a\x9a\x8d\x2c\x8d\xe3\x86\xc2\xe0\xbf\xa1\xc2\xbe\x6f\xa8\xc0\xb5\xca\x6a\xc3\x2c\x6a\xdb\x0e\x3f\x74\x17\x9f\xfa\x36\xeb\x3f\xd0\x14\xab\x69\xfa\xc7\xd2\x52\x73\x10\xc5\x31\x45\x9f\xd2\xf0\xe3\x37\x16\x48\x9d\x33\xc6\xaf\x1f\xdd\xb7\x46\xfe\x2a\x06\x51\xc2\x68\xee\xac\x47\xec\xae\x62\x59\x42\x3a\x7a\x76\xa4\x01\x44\x5a\x64\xf8\x3f\xa6\xe2\x9a\x83\x4b\x4d\x13\x79\x43\x32\xa7\x54\xe5\x55\xab\x54\x99\xac\x4c\x32\xee\x6b\x5c\xf2\x1e\x1f\xae\xed\xe1\x9a\x53\xd4\x0b\xfb\x26\x33\x61\x61\x33\xf1\xdb\xf5\x95\x5b\x15\x6b\x5e\x9b\x42\xb3\x16\x16\x9a\x7d\x1b\x47\x61\x3a\x94\x85\x44\x28\x35\x7e\x2a\x9d\x55\x29\x16\x99\x9b\x08\xdc\x87\xc5\xeb\x98\xf6\xb6\x9b\x2e\xf3\x2c\x2f\x1e\x69\x9a\x38\x25\x0f\x8b\x79\x0e\x5d\x2e\xd3\x32\xc5\xc7\xda\x3d\xcc\x44\xb1\xed\xec\x9d\xe0\xe0\x3a\x80\xed\x43\xfc\x0e\x2a\x3e\xb7\x34\x93\xee\x6e\xe0\xdd\xbb\x3e\x08\x7c\xfd\x7d\x27\xed\x15\x08\x3c\xbf\x4b\xdd\x5b\x7c\x8c\x59\x81\x1a\xf8\xb1\xa9\x08\xfe\xc8\x4b\xcd\x57\xcd\xd0\x24\x96\xd5\x3f\x1d\xde\xa4\xfa\x72\xf6\xab\xb1\xc1\x16\x50\x12\xaf\x55\xbf\xcf\xc7\x6a\x23\x7e\xb5\x8c\x42\x90\x54\x9c\x93\x8d\xa3\x91\xa1\x46\x8a\xa0\xf8\x8c\x03\x92\x4d\xd2\xb3\xce\xb2\x41\x04\xed\x68\x20\x70\x3a\xab\xe4\x69\xee\x4d\xdd\xc4\xf3\xcd\xbc\x0a\xa2\x1c\x37\x43\x9a\x29\xab\x5f\x95\x5e\xca\x1a\x42\x17\xc9\x7a\x3a\x4e\xaf\xc6\xab\xa4\xda\xb5\x7d\x04\x3d\xdf\x34\x21\x89\xdb\x27\xae\x5b\xc3\xd9\x91\x3b\xd9\xa6\xab\x2a\xbc\x33\xe1\xd7\xca\x28\xa3\xdf\xa8\x96\x1a\xd1\xd0\xa3\xd5\x85\x4f\x6a\xc8\x9f\xcd\xc2\xac\xda\x59\xfa\x7a\xec\x47\x57\x54\xe8\x76\x37\xf0\xce\x45\xac\xa5\x8b\x74\x68\x6e\x2c\xa1\x62\x94\x65\x36\xb6\x6b\x26\x29\xe6\xbc\x0d\xeb\xe9\x91\x6a\xa3\x3f\x4e\xcf\x13\x5f\xb8\xb3\xe5\x1d\xe4\xfe\x4a\x11\x04\x2e\xaa\x5c\x32\x1f\x56\x91\x76\x3e\x47\x3f\xc7\xf2\x0d\x01\xc5\x36\x08\x0e\x61\xb1\x88\x7d\x61\x93\x68\xe7\x18\xba\xe7\x47\x7e\x25\xfa\x8b\x91\xb7\xa6\x6f\x9b\x64\x35\xa7\x16\x11\x65\x69\x27\xdd\x02\x0d\x12\x52\x07\xf4\x7f\x4f\x75\xd8\x41\x78\xdd\x69\xf0\x1d\x9d\xe7\x0b\x7d\x83\x1e\x3e\xae\xe3\x1a\xb4\x8b\x40\x54\x78\x93\x42\xb9\x2d\xb2\xa6\x5a\xde\xda\x09\x0f\x3d\x40\x7d\x5f\x47\xd6\xe3\x3e\x54\x2d\x62\xfc\xa1\x3a\xe0\x70\x98\xd9\xc2\xbe\x06\xd2\x38\x2e\xe0\x2d\x45\xb6\x7a\x6b\x0a\x57\xfb\xea\x57\x9b\xbd\xcc\xf4\x39\x2b\xc3\x70\xfa\x93\x91\xc2\x45\xff\x64\xaa\x48\xf3\xf2\xf2\x17\x9b\x9d\x28\x2c\x4c\x91\x66\x02\x6b\x02\x37\x7d\x47\x61\xa8\xef\x28\xac\x2b\x4d\xa4\xe2\x26\x68\xa3\x62\x15\xec\x9c\xf2\x23\x25\xf7\xf4\xd8\x6c\xc8\xc8\x15\x8b\xa4\x86\xd2\xe7\xab\xc9\x6d\xba\x51\x62\x92\xd0\xf2\x8a\x89\xd4\xf4\x13\x25\xe3\xf5\x89\x2a\x4b\xa5\xa6\x50\x52\x6f\x1f\x6b\xa9\xb7\x8f\x75\x0f\x53\x3f\x4d\x73\xa6\xf8\x83\x4e\xc0\x76\x83\x7c\xa2\xf0\xaa\x22\x33\x1d\x9b\xe5\x7b\x3d\x07\xe9\x18\xed\xff\x58\x32\xef\xd3\x88\x00\xa6\xf3\xbb\x93\x54\x45\xfa\x69\x44\x09\x8f\x68\xac\x80\xa3\x77\x8b\x28\x05\xfc\xe9\xc0\x0f\xda\xab\xc1\x84\x4e\xca\x33\x3a\xc6\xa3\x97\xcf\x0f\x0d\x99\xd6\x07\x8a\x81\xfc\x41\x9d\xc5\xa0\xc9\xd2\x32\x81\x44\x3e\x96\xc7\x19\x62\xcf\x63\xa9\xbe\x41\x57\x0d\x76\xda\x93\x3a\xb8\x88\x92\x4e\xba\xde\x50\xf1\xef\xa5\x40\x45\xc6\x97\x54\x30\x9e\x50\xcc\x4a\x4f\x05\x73\xe0\x8e\xd2\x0b\xfa\x4b\xb4\x58\x21\x32\x67\xe7\x0d\x2e\x01\xa3\x78\xe6\xc4\xf5\x9c\x46\xd3\xee\x96\xaa\x42\xdc\xd3\x0a\xc5\x17\x91\x01\xa1\x94\xf1\x07\x7a\x0a\x97\x51\xdc\xd9\xa7\x1a\x88\xbf\x4b\x11\x1b\xde\xf6\x43\x60\xb8\x48\xfe\xcf\x06\x9e\x2b\x72\x1d\xcf\x59\x2c\x04\xd5\x5b\x3a\x49\x8c\x52\xf0\x6f\xcf\x07\x5e\x2f\xf4\xf6\x48\x31\x21\x4e\xaa\x1d\xe7\x0a\x5c\xca\xb1\xd0\x9c\xae\xe1\xd3\x35\xe3\xa8\x5b\x08\x32\x85\xcc\xe9\xab\xb4\xee\x89\x84\xb8\x2a\x50\x4f\x9b\xb1\x2c\x1e\x69\xf6\xad\x59\xb3\xc9\xbf\xc7\xfe\x40\x96\xbf\xbd\x32\x46\x7b\x0d\xbd\x3b\xac\xcd\xbc\x0b\xf3\x89\x12\x85\x89\x06\xc3\x38\x92\xfe\x23\x69\x78\xaf\x86\x87\x28\x74\xd5\x98\x9f\xf4\xcd\x9a\xa5\x4c\x00\x69\x06\x4b\x0d\xb8\x14\xdc\x55\x8a\x6e\xa3\x9e\x8d\x61\xfa\x5d\x7a\xdb\xe2\xb4\xa1\x83\xfc\xe1\x2f\xf4\x66\xab\x05\x97\xd1\x4a\xa4\xbf\x28\x14\x71\xef\x1b\x9f\x10\x2b\x44\x30\xcd\x67\x94\x22\xd7\x60\x98\xe6\x96\xfb\x89\xd8\x5f\x8d\x5e\xb9\x78\xad\xd5\xd8\x39\xf5\x32\x33\xf4\xb5\x3c\xd4\x1f\x8f\x8f\x94\xe3\xe9\x71\x97\x26\x76\x38\x2a\x66\x9e\x1f\x62\x6d\x00\x4a\x62\xc5\x44\x9f\x93\x9d\x64\x1a\x45\x78\xa5\xd9\x4d\xb3\x90\x44\xbb\x0e\x1d\x72\x41\xac\x62\x20\x9d\x75\x0a\x59\x6d\x92\x17\xcb\x1b\x4a\x3f\xe5\xed\xc0\xdb\x41\xbd\xad\xda\xa8\xaa\x3d\xd6\xe4\x2c\x14\xc0\x10\x86\x6a\xf8\x7f\x13\x83\x1b\x74\xb8\x4d\x97\x35\x66\x26\x8a\xdb\xc4\x21\xa0\x11\x51\xc7\xb1\x94\x3f\x1d\x6c\xe4\x55\x90\xeb\xe8\x4c\x18\x3d\xec\xc3\xc5\x27\x8a\x99\x50\x85\xc5\xd8\x6f\xf0\x7f\x88\x27\xf9\x58\xc9\x8d\x14\xe9\x40\x41\x99\xc7\x14\x94\x79\x6c\x6a\xeb\x5b\x5a\x3a\xdc\x34\xc3\x21\x75\xc3\xaf\xcc\x3b\xb6\x81\x5f\x4f\xb7\x46\x4a\x16\xf2\x49\xa8\x35\x61\x88\xd4\xf8\xe5\x2d\x34\xdb\x65\x16\x73\xcd\xcb\x79\x5c\xba\xf2\xdd\x43\x35\xeb\xaf\x28\x4d\x98\xf5\x17\x5e\x7d\xa1\xa1\x7b\x06\x8e\x6b\xd5\xf7\x69\x7b\xf9\x83\x4b\xd5\xb4\xca\xd2\xa1\xcd\x18\xba\xc7\x6f\x7d\x3c\xf2\x4c\xe4\x8f\xa7\xd6\x8b\x85\xc5\xea\xdd\xe4\x32\x24\x11\xfb\xb2\xf6\x33\x9f\xb4\x54\xf9\x85\xe0\xe3\x7d\x4a\x45\xfe\x1c\xe2\x2b\xd1\xb7\xf1\x61\x0b\x6b\x8d\x22\x0b\xbf\x14\xf8\x26\xb8\x4f\x47\x7e\x47\x3d\x17\x28\xb7\xa4\x7b\x81\x52\x73\xe4\x9b\x45\x2e\xf8\x2e\x03\xdb\x58\xb5\xdf\x05\x08\x85\x1d\x60\x4b\xe1\xd0\xff\xe9\x7f\xf1\x37\xe9\xbe\xb1\xdf\x9c\xa7\x85\x99\x8f\x55\x99\xa1\x9b\x66\x45\x99\xb0\x15\xa6\xd2\xc8\xf4\x62\x9d\xfb\x7d\x20\x5b\xa4\x43\xe4\xb0\x52\x01\xa5\x9f\x96\xd2\x68\x5d\x61\x2c\xb7\x61\x9a\xa0\x7a\x83\x65\xe7\x61\x30\x99\xda\xad\xcc\x3b\x25\xf4\xcf\x4f\x82\x1d\xcf\x3d\xd7\x5c\x5a\x5a\x7e\x92\x7e\x42\xd5\x31\x05\xc0\x01\x32\x2e\xa4\x05\xd5\xea\xfa\xf5\x60\x4a\x5b\x19\xdc\x8b\x8f\x03\x5f\x61\x7a\xb2\x55\xcd\x67\x69\x3c\xa0\x87\x2b\x86\xcc\xd5\x25\x61\x0f\xbd\x80\xea\xb7\xd3\x75\x76\x00\xc2\x25\x35\x30\x63\xb3\x6a\x1b\x4a\x55\x16\x9d\x57\xa2\xf7\xe1\x25\x40\xfb\xf6\xa7\x55\xa7\xc1\x26\xa9\x25\x89\xe6\x00\xa5\x02\x58\xec\x77\xb6\x7c\x45\x6d\x27\xb0\x09\xc4\x72\x37\x11\xda\x48\x5f\x59\xb5\x4f\x22\x37\xdb\x87\x8e\x29\x91\xce\x6a\x7c\xe9\x57\x5d\xf5\x9b\x86\x93\xd8\x8b\x4c\x28\x81\xd1\x83\xc4\xb2\x74\x47\xe1\x43\x8d\x16\x6d\xd9\xae\xad\x60\x65\x9e\x8d\x91\x0e\x68\x6b\x56\x04\xfd\xac\xff\xa6\xfb\x32\x4f\x51\x9a\x8b\x27\xcc\x12\x68\x40\x59\x66\xd0\x58\x81\xc1\x3c\x47\x50\x0c\xf6\xe2\xf7\x29\x4b\x15\x9f\xa1\xc6\xaf\x48\x46\xf4\x90\xf1\x36\x7c\xd7\x7d\x87\x4e\xf7\x32\x6b\x8a\x39\x85\x5a\x00\xe9\x72\xfa\xa3\x4a\xff\xcd\x57\x01\x6e\x7d\x41\x55\x1e\x76\x8c\x7d\xf0\x9c\xd0\x9a\xe6\x98\xf6\x6f\x04\x6a\x83\x26\xce\xf1\x16\x80\x26\x7c\xe3\x31\x95\x04\x67\x2f\x64\x2f\x34\xfc\xd2\x7a\x3f\xf0\x3e\xc0\xf7\x55\x7e\x5f\xa5\xb4\x71\xbe\x4b\x97\x1a\xce\x61\xbe\x3a\x37\xc1\xea\xb9\xf0\xc9\x44\x4f\x1c\xd4\x75\x1d\x81\xdf\x2b\xe7\x9f\x53\xcb\xbd\xe9\x5b\xd3\xd9\x45\x03\x03\x91\xda\x66\xa0\xa4\xdb\xb8\x93\x81\x7b\xb8\x31\x00\x98\xae\xa8\xf4\x02\x6e\x28\x31\x82\xd3\x35\x72\x43\x2b\xcd\x0e\x35\x78\x35\x7c\xa9\xf0\xb2\x72\x31\xba\x5c\x67\x44\x3b\x88\x5e\xe3\x12\x85\xd4\xf4\x3c\xd4\x7d\x76\xaa\x74\x75\x74\xbe\xd9\xb1\x64\xc5\x82\x27\x78\x42\xf9\xda\x9c\xa8\x13\x40\x6a\xa7\xeb\x5e\xdc\x4e\x0c\x53\xaa\x5f\x10\xbf\x14\xd9\x3d\x55\x87\xa3\xab\xc8\xdd\x55\x04\xed\xbb\x13\x41\xd0\xeb\xec\x81\x85\x91\x75\x4e\x83\x63\xe7\x94\xa6\xb1\x5d\xb3\xd9\x46\x9a\xd8\x27\x1a\xce\xfb\x9a\x41\x27\x29\x99\xfb\x4e\x69\xc8\xe3\x4f\x60\x78\xf8\xc4\x6d\x1a\x58\x62\xc6\xae\x59\x1c\x98\xe7\x4c\xc4\x0e\x26\x9c\x17\x68\xb0\xe0\xdd\x6e\xd5\x18\xff\x91\x2a\x58\x66\x32\xd1\x12\x12\x9e\xb9\x2f\x8d\x5d\x53\x99\x63\xdf\xc6\x9d\x03\x8a\x26\xce\xf6\xf2\x00\x89\xde\x52\xb1\xdb\x5d\x6c\x4b\x02\x6e\x57\x37\xc4\x7f\x34\xd2\x0e\x07\xd5\xfd\x88\x0e\xb9\x42\x6d\x6e\x63\xbc\xf3\xc9\xa4\x15\x92\x6f\x9e\x3f\x8e\x67\x83\x58\xee\x9f\x8e\x94\xa5\xc5\x26\xef\x76\x62\x22\x43\xef\x1c\x5b\x0e\x4a\x4d\x9f\x85\x6a\x1d\x9d\x5f\x6c\x76\x4d\x36\x70\xe0\x0e\x10\x88\x4f\xf1\xb3\x7c\xa2\xc4\x77\x56\xa3\x4e\x62\x37\xb0\xbf\x61\xd3\x3e\xad\x18\xa3\xa7\x6b\x8d\x16\xa3\x24\x84\xbb\xa5\x22\x20\x9d\x53\x74\xd9\x73\xae\x72\x57\x98\x76\x6c\xc9\x29\x98\x86\x18\x0b\xfd\xaa\xa7\xfc\x0d\x95\xd9\x75\x48\x07\x08\x46\x27\x22\xf9\x4a\xd7\xe5\xf4\x6a\x1d\x1b\x82\x0d\x9e\x27\x58\x3b\x98\xd7\x60\xf5\x21\x92\x7a\x18\xa8\x9d\x7a\x7a\x4a\x51\x2c\x9e\xfa\xfe\x52\x54\x9e\xf0\x05\x7c\x1c\x6c\xdb\x9d\x97\x96\x96\x9b\x8b\x47\x7e\x0a\xef\x06\x77\xb0\x0f\x40\x94\x23\x1a\xab\xbd\x13\xfb\xb3\xc4\x84\xd5\xde\x05\x2e\xde\xbf\x1e\xa9\x3d\xf1\x5d\xe4\xff\x48\xbf\xa1\x77\x2b\xa5\x8d\x6a\x6d\x40\x98\x70\x8a\x36\x0c\x71\xe9\xf2\xac\xe8\x7f\x80\xf2\x1d\x1d\x7f\xe1\x00\xb6\x44\xdc\xfb\x05\xc2\xca\x70\xeb\xd7\x91\x2e\x0a\x10\xdb\xf8\x8a\x18\x11\x6c\x02\x5e\xc5\xbb\xfe\xdf\x10\xa3\x60\xfc\xed\x6f\x35\x9e\x7b\x8e\x27\xea\x29\xa5\xbe\xc8\x3d\xab\x8c\xc8\x63\x8a\xb0\x32\xbc\xf2\x7a\x85\x50\x91\x2c\xba\x9e\xf7\xd7\x35\x51\xb6\x6e\x98\xbf\x8b\x3b\xb8\xaf\xa5\xc9\xef\x07\x1e\x3f\x0c\xb3\xa8\x88\xc2\x28\x1f\x00\x79\xc3\x22\x73\x55\x59\x09\x20\xe4\xc0\x86\xca\xed\x4e\x12\xbc\xa9\xb8\x68\x5a\x35\xb8\x1a\xc1\xdd\xcc\x8a\xed\x71\x9d\x37\x88\xa4\x44\xb1\x6d\x9b\x84\x97\x47\x59\xc6\x35\x4d\xa3\x56\x8d\x27\x8e\x06\x51\x61\x3b\x30\xf0\x17\x0c\x96\x2e\x0f\x00\xe4\xad\x40\x01\x57\x20\xb2\xe2\xe5\xb3\xae\x8e\x54\xea\x6b\x68\xf2\x65\xd2\xa9\x02\x7b\x37\x62\x45\xe0\xd7\x3f\xf9\x6f\x4f\x05\xf7\x8b\x47\x9a\xb1\xed\xd9\xa4\xa3\x3a\x8b\x4e\xa8\xce\xa2\x13\x2a\x78\x4e\x3a\x1b\x7b\x3c\x2b\xf5\x09\x5d\x9d\xbd\x8f\x8b\x83\x44\xd0\x2e\x8a\x8b\x38\xa6\x9b\xb0\xac\xbf\xac\x75\x97\x46\xaa\x9c\xcc\x4e\xf3\x42\x35\xda\x9e\xdb\x1f\x5c\x6a\x16\x59\xca\x7a\x1e\x98\x58\x8f\x95\x01\x2e\x07\xab\xe2\xbe\xab\x4a\x09\x2f\x98\x17\xd2\x17\x1a\x8a\x43\x77\x8a\xae\x40\x34\xe4\xbc\x9e\x47\xdb\x14\x85\x88\x57\x3b\x14\x68\x61\xd1\xc1\x43\x4a\x94\xb2\x6f\x08\x15\x70\x6d\xdd\xae\x27\x98\xc3\x3e\xdc\xde\x29\x04\x9a\x7c\xa2\x80\xbb\xdc\x12\xaf\xee\x09\xba\x7b\x34\xac\xcd\x8e\x95\x0d\xe6\x37\x55\xac\xdc\x68\x79\xa4\x7e\x6e\xac\x78\x03\xbf\x89\xdd\x00\xfb\xc4\x69\xa5\x2b\xcb\x6d\x84\x20\x36\x9c\x09\xb4\x6b\x26\x8d\x09\xb0\x0b\x9e\x6c\x79\x94\x62\x68\x8b\x2c\x5d\x8b\xc2\x7e\x43\x51\xe6\x38\x18\xe6\x93\x3a\x69\xf2\x6e\x9a\xd9\x41\x9a\x03\xd6\x44\x88\x71\x5d\x85\x1b\xd7\xeb\xde\x61\x46\x82\xc0\xae\x59\xe4\xfb\xaa\xa0\xfe\xfd\x89\xa0\x23\x2b\x07\x54\x4a\x74\xc6\xe8\x2b\xf3\x35\xc6\xe8\x49\x14\x9a\xcc\xf4\x4a\xa3\xfc\xb8\xbe\x4e\x98\x84\x90\x86\x65\xa3\x31\x61\x58\x66\x06\x5e\xe6\xce\x50\x10\x59\x0d\x1f\xd7\x36\x26\x11\x6f\xb8\xa1\xf9\xc1\xd8\x4b\x84\x2c\xfc\x79\xaf\x36\x52\x58\x1b\x43\xb7\x92\x03\x5b\x4c\x8b\x8b\xca\x99\x92\x53\x0f\x21\x8d\xd0\x58\x11\x3a\x89\x2f\xfd\x30\x8a\xc1\x1f\xaf\xeb\xb2\x34\xc3\x61\x6c\xca\x1c\xc4\x18\xd7\x98\x57\x0d\x20\x69\xcc\xab\x41\xfc\xda\x65\xd6\xb1\xd0\xdc\x75\xfa\xa2\x4e\x19\xd5\x33\x0f\xd6\xfb\x69\x6c\x73\x13\xdb\x39\x8a\xb4\xb5\xd9\x88\x62\x93\x89\x0e\x2a\xf6\x5c\x6c\x86\x10\x22\x40\x6a\x32\xa3\xd2\x09\xca\x8f\x3d\x34\x78\x4c\x19\xbe\x1d\x73\xde\x38\xa1\x35\x5c\x66\xc3\x28\xfe\x53\x1a\x49\x7c\xac\xb4\x77\xbb\x26\xef\x47\x69\x32\xa7\x3a\xf1\xf0\xec\x00\xd3\x3c\x0e\x26\x1c\xdd\xbd\xb5\xdb\x6b\xca\x16\xe1\xb5\xd1\x3e\x0f\x32\x26\x3f\xa3\x7c\xdf\x7f\x8f\x66\x3c\x62\x0b\xc6\x26\xa4\x4b\xbd\xe1\x9c\xe1\xb6\x28\x99\x74\x1a\x1d\x07\x65\xe9\x9f\x1b\xab\xac\xe5\xde\x48\x57\x7a\x68\xd3\xc7\x54\xc2\x8c\x04\xc2\xfd\xe9\xc8\xf7\xe1\x5c\x0f\xbc\x73\xf0\x5b\x80\x88\x59\x4b\x52\x95\x79\x1e\xd0\xed\x89\x7e\xb6\x72\xe6\x3c\x83\x7b\x55\x42\x19\x8b\x0c\x26\x3c\x1e\x29\x68\x42\x7a\x23\xd9\x24\x08\x03\x0d\xc9\xfb\x43\x0d\x86\xdf\xa0\x3c\xdc\x19\xfd\x2c\x2c\x70\x56\xd3\x68\x51\x4e\x8e\x67\xbd\x1b\x79\xb8\xb4\x8a\x43\xc3\x05\x37\x70\x33\x50\xdc\xa0\xeb\x9a\x63\x3b\x8c\x12\x7a\x7d\xd5\xd7\xa0\xf8\x76\x43\xb9\xcd\xdd\x55\xea\xab\xe7\x03\xc5\xdc\x38\x87\x8e\x5c\xfe\xc4\x54\x2f\x7e\x15\xd4\x96\xc3\x5e\x66\x3a\x82\x51\xe1\x49\xc0\x5c\x90\x8f\x55\x24\x99\x45\xe1\xaa\x8d\x19\x38\x53\xe8\xbb\x28\xbc\x5c\xaf\x91\x6a\x78\xb1\x99\x0f\x6d\x18\x75\xa3\xb0\xe1\xfb\x42\xa0\x91\xce\xc7\xc1\x53\x4a\xbd\x70\x68\xc3\x02\x24\x5b\xd4\x04\xb9\x8a\x02\x2a\xc9\x03\x60\x1b\xfc\x3f\x23\x65\xb1\xf2\x40\xed\xb6\xbf\x14\xc7\xbb\x69\xe4\x38\x69\xda\x95\xf9\xad\x31\x31\xad\xb0\x64\x3e\x0a\x14\x5c\x78\x45\x4b\x6c\x10\xb2\xf0\xa2\x57\x10\x5b\x76\xec\xac\xfd\x53\xba\xfc\x0b\x0b\x55\x64\x1d\xa6\x65\x66\x7a\xb2\xd8\xe1\x91\x31\xfd\x8a\x4f\xc6\x35\x82\xcb\x03\x13\xc5\x4e\x21\x5f\x8c\x8b\x3c\x11\xd9\x2b\xe9\xaf\x9b\x6c\x68\x3b\xb3\x13\x1b\x7e\xc3\x39\x40\x41\x04\x52\xac\x04\x55\xa9\xee\x93\x5a\xde\x48\x16\x0d\x4c\xb6\x81\xe2\x85\x56\x79\xd6\x24\x6b\x2c\x30\x37\x9d\xa0\x7b\x66\xa2\x0e\x17\xea\x30\x96\x41\x5f\xe7\x63\xc5\x9b\xcc\xc3\x74\x68\x67\x54\xa7\xd9\x47\x98\x5b\xf8\xf2\xdf\xa1\x2f\xe7\x46\xee\xa9\x1c\xbf\x4a\x36\xfb\xd6\x0c\xe7\xfc\x57\x3f\x52\xf3\x9d\x05\xc0\x31\xe1\xd9\x24\xdd\x75\x32\xba\x82\xd3\x8d\x3a\x63\x8d\xdc\xda\x0e\x47\x3f\x58\xdd\x1e\x07\x1e\x24\xc4\xdd\xcb\xf1\x54\x1f\xe4\x62\xb5\xc3\x2b\xbf\xad\x37\x55\x90\xfc\xa6\x2a\x51\x9a\xb0\xd8\xad\xca\x5b\x07\x5a\xda\x28\xeb\xcc\x48\xb5\x01\xbc\x47\x4f\x01\x65\x15\x52\xc9\xd8\x82\xb2\xbd\xf8\x74\xd1\x75\x4a\x31\xa1\x06\x83\x1e\xd8\xc2\xb4\x53\x88\xdf\x3a\xc4\xe5\x5d\x9d\xa6\xbd\xeb\x18\xce\x79\x99\x87\x76\x58\x44\xed\xd8\x12\x60\x2a\x6a\xc7\x34\x4a\x1c\xd3\xa6\x5a\xe3\xc0\xf3\xfe\xf1\xd4\x0f\x2e\x1e\x69\x76\x22\xe2\x7c\xf6\x65\x79\x10\x07\x89\xea\x0b\xc5\x40\xc2\x49\xff\xdb\x6c\x60\x92\x5d\x0e\xfe\x99\xfd\x1b\x2d\xcf\x38\xb9\xfe\xf3\xe3\xea\x7d\x22\x98\x3d\xcd\xcb\x29\x16\xe4\xc7\xf4\x16\xf0\x6d\x33\x63\x1a\x33\x32\xc1\xbf\xa0\x7a\x54\x92\x24\xdf\x20\xc7\x69\x43\xb7\xa3\xb5\x4a\xb0\xff\x5f\xd0\x35\xc6\x47\x35\x3c\xfa\x95\x66\x66\x86\x11\xe2\x75\x4e\x7b\xe8\x46\x24\x05\x52\x12\x68\xe5\xeb\xe5\x6a\xa4\x02\x2e\x10\x4c\xf9\x78\xfc\xac\xd6\xd9\x47\xd7\x50\xae\x05\x50\x80\x1e\xf1\x71\x4d\x7a\xbc\xdc\x0c\x4d\x2e\x9a\x04\x4c\x3e\xc0\x92\x24\x4c\x04\x5f\xc1\x65\x35\x55\xdf\x51\x75\x35\x50\xd2\xf2\x93\xdc\xba\xae\x5d\x7f\x82\x9e\x81\x96\xe3\xc5\xd8\xfa\x70\xb2\xa2\xa7\x5b\xab\x03\x25\x7e\x1b\x28\xdd\xbf\x99\x96\x6a\xbd\xbd\x84\x6c\xda\x91\xa2\xaa\xe5\xd5\x79\x90\xbb\xc1\x70\x5e\xe5\x05\x14\xe6\x1a\xe4\x78\xcc\x10\xc6\xee\x26\x74\x61\x5f\xb1\xec\xa5\x65\x36\xb0\x20\x16\xbb\xc5\x4c\x1b\x33\x37\x9c\xc4\xcb\xfd\xba\xb5\xa3\x97\x99\xa4\xa0\xca\x38\xbb\x57\x03\xfa\x74\xfe\xca\xae\x75\xe6\x2d\x45\x4a\x83\x2c\x0c\xb5\x62\xd0\x5f\x23\xf2\x05\x94\xc9\xc7\x75\xb4\x8d\x28\x09\xe3\xb2\x43\x54\xa4\xad\x7b\xf8\x1d\x2c\x77\xc7\xb5\x12\xca\x35\xa5\x4c\x97\xae\x27\x22\x56\xa8\x38\x6a\xf4\x9e\x84\xbc\x56\x13\x76\x0e\x4d\xe4\x34\xfe\x18\x2e\xd0\x1a\x12\xd3\x8a\xbd\xdc\x21\x5e\x94\x99\x73\x4d\xe5\xae\xbb\x40\x11\xcf\x39\xcf\x06\x70\xff\x2f\x46\xaa\x01\xa7\x53\x92\x2f\x86\xef\xd3\x6a\x8c\x15\x16\xd4\x98\x22\xfb\xbe\xbc\x32\xaf\x76\x76\x57\xcc\x78\x4f\x8d\xfd\xf7\xb4\x60\x05\xa9\x28\xec\xaa\xc2\x3e\x84\x83\x6c\x92\x89\x78\x18\xea\xac\xfc\x1f\x63\xdf\x15\xf7\x8d\x60\x42\x7b\xb7\xfa\x19\xdc\xff\x63\x85\x9e\xb7\x6d\x91\xcf\x79\x12\xf1\xf9\x40\xf3\xb0\x15\x21\xe3\x8e\x32\xfa\xf8\x08\x8b\xa6\x78\x7c\x09\x30\xd1\xb7\x59\x6e\xe3\x2e\x7a\x6c\x27\xb0\x32\x96\xf8\x47\x84\x09\x20\x69\x1f\xed\xbe\x18\xa3\x0f\x6b\xa7\x39\x09\xde\x5b\x8e\x97\xf0\x4c\x98\x24\xc9\x27\xdb\x71\xb0\x23\x2f\x35\x97\x96\x0e\x3f\xed\x6b\xe7\x7f\x48\x51\xa4\xab\xa4\x79\xd9\xfa\xe3\x98\x90\x42\x55\xa0\x67\xe9\x60\xa5\x85\x45\x07\x84\x56\xcf\x55\x4b\xf4\xb3\xb9\x1d\xe6\x36\xb0\x8d\xeb\x23\x05\xd5\x5e\xa2\x1d\x15\x45\xc3\xb9\xb1\x32\xdf\x9f\xc3\x6a\xce\xee\xd3\x94\xd8\x60\x43\xfe\x54\xe9\x88\xc2\xdd\x02\x73\xe0\xff\x02\x8a\x25\xb4\xef\xed\xf3\xf6\xe5\xc5\x23\xd5\xc1\x6a\x43\x19\x92\x02\xd8\x17\x0b\x8d\x1a\xe5\xa8\x8e\x0d\xc9\x26\x92\x19\x18\xb8\xe1\xdb\x8a\x3a\x73\x41\xaf\x73\x27\x6a\xbd\xdb\x5c\xf1\x1f\x21\x1b\x76\x3f\x30\x8f\xf9\x58\x3b\xc2\x9a\x81\xa5\x2d\x0d\xa1\xff\x63\x25\xe5\x78\x17\x8f\x8d\xcd\xf3\x47\x13\xb6\xb1\x07\xbd\xe3\x65\xc3\xbd\xb2\x1b\xaa\xf8\x99\x86\xc5\x0b\x9f\xa3\x07\x8a\x32\x3f\x58\x28\x58\xfe\xaf\x07\x4a\x2c\x97\xc5\x32\x9c\xc5\xa2\xb7\xe7\x05\xe7\x07\x71\xdc\x5f\x05\xca\x7c\xf2\x87\x14\x3a\xc9\x1e\x5a\x0d\x00\xd4\x02\x50\x24\x00\xf0\xbe\x9f\x08\x71\x98\x57\xd7\x03\x8d\xbb\xfe\xb1\x22\xc8\x32\x73\x5e\x14\x69\x95\xc5\xa8\x15\xbe\x2b\x46\xca\x1f\x12\x78\xc0\xc7\x2a\x14\x4f\xf3\x08\x31\x2e\x66\xdd\x23\xe5\xbb\xfa\x68\xc2\xf4\x28\x1b\x92\xd4\xf8\x8c\x2f\x31\xdf\x09\x94\xb2\xdb\x55\xb5\x05\x7c\x3c\x35\xd5\x16\x16\x9b\x83\x28\x29\x0b\x47\x6b\x10\x09\x7a\xfa\x69\x3e\xa9\x9d\xa0\x51\x12\xa6\x03\x3b\xa3\xd5\x27\x7f\xa4\x44\x39\x2e\x6b\x67\xdb\x1b\xaa\x6f\x26\x29\x32\x12\x0a\x9c\xf1\xbb\xc5\x26\x56\x14\xac\x67\x1f\x68\x8f\xad\xd3\x0a\x79\xc9\xd2\x38\xed\xd8\xd7\xc4\x31\xca\xb9\x5e\x79\xce\xd3\x95\x9a\xd2\xc3\x8b\x4d\xd3\x59\xf3\x44\x02\xb7\x71\x7b\x51\x29\x2d\x6e\x6f\xc0\x15\x66\x2b\x50\xba\x1d\xb1\x05\x95\x58\x6d\x68\x8b\x2c\x02\x6e\x80\x6e\x30\xbe\x53\x3e\x71\xdd\x0c\x04\x8c\xae\x67\x91\x7b\x37\xb8\xa3\x47\x18\x87\x02\xc2\x7a\xde\xcc\xae\x29\x05\xb0\x85\x85\x66\x37\x4e\x8d\x17\x2b\x94\xb0\x51\x85\x90\xaa\x8c\xb4\x9a\x76\x79\x3f\x06\x0a\x3a\xa3\x4d\x60\x67\xc6\x75\xb8\xf0\x46\x9a\xad\x3a\x73\x7c\x4c\xd3\xeb\xb8\x1b\xc4\x12\x92\xbc\x63\x42\xce\xb6\xb6\xc3\x6b\x0b\x0b\xcd\x3c\x4d\xf2\x09\x0d\xc6\x8f\x02\x6d\x4c\x00\xbd\xd7\xe3\x0a\x70\x2f\xa2\x41\x9b\xe8\x49\xae\xd3\xe2\xae\x52\x84\xb8\xab\xde\x46\x3b\x0a\xa9\x99\x0c\x41\xc2\xec\x58\x95\x5e\x3f\x09\x3c\xd5\x90\x2d\x9c\x9d\x61\xaf\x03\x9e\x9f\x69\x6d\xcf\x4b\x96\x96\x9a\x6d\xa3\x33\xb2\xd3\x58\x2f\x44\x0d\x6d\xfb\xfd\x1d\x9d\x6f\x16\x7d\x53\xec\xf2\x13\x7e\x1f\xf2\x53\x11\xde\xad\x56\x08\xa1\xc8\xd0\x92\x86\xbb\x78\x82\xf8\x85\x0e\xd8\x38\x28\xb4\xf0\xd3\xca\xee\xea\xb9\xce\x0b\x0d\xc5\x51\xb9\xaf\xe4\x87\xee\xbb\xb6\xd7\x30\x4d\xd6\x6c\x52\x44\x55\xb4\xd5\x98\x78\x31\x3e\xe0\xbb\x3b\x85\x4d\x88\x50\xc4\xaa\xb5\x43\x8a\xed\x10\x1d\xdc\x0a\x54\xd9\xe2\xec\x68\xa2\xf9\x59\x59\xee\xc7\xc3\x19\x45\x7a\x04\x07\x59\x5c\x12\xe9\x33\x6c\x22\x14\x7c\x96\x68\xbd\xe9\xac\xd9\xac\x88\x72\xef\xa7\x83\xf7\xc1\x32\xc7\x7c\x52\xcb\x52\x59\x8b\xec\xba\xec\x50\xd8\x95\x6e\x2b\x69\x4e\x56\xc3\x12\x65\x49\xd5\xe4\x42\x3d\xfc\x24\x8d\xed\x38\x88\xef\x2b\x4a\x0b\xe6\xbb\xcb\x5c\x9d\x7f\xe3\xfb\xaa\x98\x4c\x2a\xcf\x34\x57\x0f\x8a\x02\xce\x6d\xc2\xbe\x44\x0d\x87\x2e\x5e\xe8\x32\x35\x25\x8d\x8e\x89\x57\xb9\x7f\x56\x9c\x90\x94\x98\xea\x55\xdf\x68\x15\x57\x99\x21\x09\x92\x3b\x57\x0e\x0e\x8b\xe6\x28\x7e\x43\xc9\xe7\x5d\xaf\x44\xbe\xf3\x40\xcb\x4f\xf3\x57\xcb\x0e\xb7\x73\xb1\xd0\x05\x6d\x59\x7c\x3c\xda\xaf\xba\x27\xdb\xc5\x3e\x7a\x90\xce\x70\xab\x8a\x7a\xb0\x4f\x9e\xc3\x22\x2b\xc2\x77\x14\x6d\x30\x25\x57\xef\x93\xff\x86\x06\xa5\xea\x7b\x58\xf4\x2b\xbd\xd3\xf1\x87\x80\x36\x10\x96\xff\x95\x2e\x06\xf1\xf2\x26\x05\x50\xfc\x37\xae\x5f\x3d\x1f\xa6\x99\xe9\x44\xe1\x8c\x7f\x4e\xe8\xa5\x56\x50\xcc\x92\xeb\xbb\x68\x7e\xc6\x10\x2b\x8b\x28\x66\x8d\x23\x2f\xa7\xfa\xb1\x6e\xb9\xff\xb8\x8e\x42\x1a\xa6\xe1\xea\x30\x2a\xb4\x9c\x39\x32\x3d\x51\xfb\xa9\xd1\x28\x0f\xd3\x32\x2b\xb2\x34\x1d\x68\x5f\x17\x7c\x4a\xd4\xd3\x3f\xa7\x88\x68\x1b\x55\xde\xe6\x7a\x42\x40\xa0\x90\xaa\x56\x5d\x48\x95\xd9\xbc\x5f\x76\xbb\x9c\xd1\x72\x3e\x14\x28\x01\xa1\xe3\x53\xbb\xef\xf2\x4b\x87\x9b\x6b\x69\xde\x13\xd6\x22\xc6\x35\x2f\xdc\x7c\x52\x03\xe8\x1c\x26\x69\xd9\xd9\xea\xa5\x20\xeb\xff\x5c\x8b\x2a\xb5\x0e\xd2\x5e\x11\x5e\xd1\xa6\x92\x40\x7e\xe4\xfa\xc3\xc4\x6e\x64\xd9\xd7\x25\x3c\xeb\x03\x99\x07\xab\xce\x06\x4f\xf0\x47\x36\x6c\xb1\x9f\x02\x6f\xa7\x5e\xb6\xec\x5a\x33\x79\x01\xc2\x78\x94\x8d\xc6\xdb\xa1\x49\xb8\xbc\xf3\xff\x63\xec\xcd\x63\x24\xc9\xf2\xf3\xb0\xee\xcc\xea\x6b\x8e\xde\x9e\x63\x2f\x51\x96\x93\xd0\x0a\x14\xe0\xf1\x0a\x92\x60\x5b\x58\x03\x8e\x74\x77\x71\x67\xbb\xa1\xad\x29\x54\xf7\x76\x8b\x43\x19\xe8\xa8\xcc\x57\x99\x31\x15\x19\x91\x13\x11\x59\x35\x35\x30\x0c\xdb\x10\x0c\x41\x26\x0c\x03\x92\x4d\xd9\x16\xa4\x15\x49\xd8\xa6\x2d\x51\xa2\x48\xee\x41\x72\x99\x35\xdc\x83\xbb\xdc\xdd\xd9\x99\xd9\x9d\x6b\x67\xa6\xa7\xef\xab\xfa\xbe\xaf\xa9\x31\xe2\x7d\xbf\xdf\x7b\x5f\x56\x44\x53\xfe\x2f\xa2\xbb\xaa\x32\xf2\xc5\x7b\xbf\xf3\xfb\x7d\x5f\xbb\x8c\xe2\x61\x71\x3e\x8b\xd0\x1b\x2d\xab\x9d\xd6\xc6\xa2\x0e\xfe\x39\x0b\xee\x70\xe3\xa3\x3e\xff\xfd\xb8\x3c\x44\xeb\xdb\x57\x3d\x40\x08\x25\x13\x98\xe6\x1d\xab\x4f\x6f\x14\x3c\x9f\x69\x4d\x1f\xd8\x49\x4a\xeb\x77\x10\x89\xa3\x64\x06\x39\x36\xfb\x5a\x7e\x20\x12\x4f\xa8\x85\x5f\xb5\x67\x15\x1b\x4f\xb8\x27\x39\xf8\xc2\xa7\x6d\x6b\xfb\xe4\xe2\x06\x51\xb1\xef\x58\x2d\x03\x40\xb8\x69\x11\xbf\x53\xd1\x11\xbb\xda\x38\x41\xd0\xde\x73\x0c\x83\x7e\x1e\xe9\x4e\x1d\xe1\xf4\x30\x8b\x92\x4e\x34\x94\xc1\x05\xc9\xe6\x69\xd0\xeb\xec\x98\x07\x99\x4d\xc7\x21\x27\x44\xbb\xc1\xfe\xa8\xea\x38\xd4\x8c\x91\x65\xa6\x17\x66\x5d\x62\x44\xbf\x44\x8c\xe8\x55\xac\xe9\xde\x99\x56\xdf\x24\x99\x84\x27\xf0\x1f\xd2\x34\x94\x1b\x22\xf9\x89\xa3\x79\x13\x37\x08\xa5\x79\x99\xb3\xf7\xcb\x84\xf9\x0d\xa3\xac\x93\x85\x0b\xc5\x56\xa2\xc0\xf9\x07\x41\x85\xfa\x13\x19\x0d\xd8\xe7\x70\xd0\xef\x92\xd8\xf9\x31\xbb\xd9\x54\xe5\xfb\x13\x6e\xd4\x60\x21\xcd\x06\xd1\x4b\xf6\x2b\xba\x91\x86\xf2\x63\xe4\x86\x90\x9b\x51\xd2\x19\x65\x99\xe9\x82\x19\x0a\x71\xc8\x2d\x10\xa4\xa9\x90\x50\xf9\xd1\xf2\x1f\x63\xcf\x3f\x74\xa2\x0e\x8b\xdd\x89\xd3\xa2\x1f\x99\x8c\x65\x4c\xbe\x69\xbf\x87\x5c\xd7\x72\xd5\x66\x69\xa7\x2f\x9c\x89\xb0\xc4\xc7\x25\x33\x91\xbb\x8a\xed\x39\xf0\x5c\x19\x5c\xe4\xc3\x28\xb3\x35\x32\x47\x19\x7e\x0c\xdb\x57\x1b\x41\x75\xa2\x6e\x79\xba\x14\x99\x02\xf5\x6a\xa7\xa5\x49\x03\x61\xb4\x39\x4f\xba\x6e\xdb\xbf\x8f\xd7\xf3\x49\x1e\x32\x49\xf2\x38\x2c\x8c\x9d\x6e\x86\xed\x7c\x1d\xcb\x29\x37\x75\xe5\x56\xd9\xf1\xf1\xa4\x51\x9c\x74\xfc\x3b\x1d\x76\x31\x1d\xe5\x1a\x66\x20\xfb\xbe\x42\x48\x9e\xf3\x63\x02\x4a\x7d\x14\x4c\xcc\x9b\x26\x26\x7b\x94\x50\x14\xaf\xda\x53\x29\x94\x84\xb2\xe2\x82\xa2\xb5\x47\x08\xc5\xa2\x0f\x6c\x67\x4e\x59\xec\xed\x1f\xc7\x7f\x7c\x0b\x58\x19\xc5\x39\x12\xc3\xe2\xe9\x89\x21\x6d\x6b\x5e\xf4\x53\xec\x1a\xa2\xe2\x70\x97\xda\x94\xc3\x30\xcf\xc3\x1e\x0a\xd6\x30\xaa\x08\x29\x75\x4c\xbf\xfc\x13\xaa\x47\xa3\xbb\xbc\x48\x47\x59\x94\x17\x92\xce\xe3\x5d\xca\xb4\xb5\xdc\x04\x4f\x11\x83\x49\x62\xc5\x88\x04\x7c\x82\x74\x01\xea\xdd\x72\x4d\x20\x88\x2c\xb5\x39\xa5\xef\x23\xbe\x83\xe7\x96\x9b\x4a\x81\x62\xdf\xbe\xd6\x42\x14\x47\xc3\x28\x49\xf3\x89\x79\x5b\x69\x62\x21\x37\xfc\x5d\x86\x5f\xae\x55\xc2\xf5\x67\x5a\xb1\x59\x32\x71\x93\x10\x5a\x82\x72\x06\x63\xcf\x65\x62\x44\x38\x53\x07\x88\x1f\x98\xac\x87\xd4\xce\xcd\x97\xb8\xbe\xce\x04\x62\x2f\x8a\x63\x68\xaa\x81\x28\x78\xfd\xb5\xca\x00\x99\xd5\x1b\xb1\x03\x4b\x26\xdf\x20\x6a\x70\x99\xc4\xe8\xab\x21\xc7\xe1\xc3\xad\x8e\xc9\x8a\x30\x4a\xe2\x15\x1b\xbc\xc3\x19\xbc\x4b\xed\x9a\xf3\x76\xd7\xe9\x94\x40\x0d\xe6\x61\x21\x8d\x17\x1b\x34\x69\xba\x46\xf8\xbc\x35\x1a\x0e\xcf\x23\x33\x88\x4c\x12\xe6\xf6\x8d\x3a\x27\xed\x11\xee\xe7\x83\x27\x27\x3d\xe4\xf4\x81\xd6\x5f\x17\x8d\x6f\xd1\x18\x85\xbd\xc5\xa2\xfe\xc4\x16\xc4\x1d\x7c\xd2\x8f\x05\x40\x0e\x49\xa4\x0d\x49\x66\x79\x3d\x20\x25\x96\x0f\x80\xb4\x45\x3f\x17\x98\x7d\x54\x62\x6e\x60\x4b\xc2\x8e\x5f\xac\xbc\x38\xcb\x69\x9f\x14\x69\xc3\x0b\x33\xa1\x49\x2e\xd7\x75\x23\x09\x8b\x51\x37\x61\xfa\x75\xfc\xed\xdb\xe4\x2f\x6e\x57\xec\xec\x81\xe7\x2c\x9b\x41\x86\x49\x32\x9c\xab\xdf\x27\xba\xd2\xf3\x64\x6c\xce\x38\x63\x33\x1c\x65\xf9\x48\x2a\x66\xeb\x27\xed\x6e\x5e\xf7\x66\x71\x7e\x64\xe2\xd8\x06\x8c\xae\x45\x37\xe3\x44\x8f\xcf\x55\xe6\x8d\xca\xaf\xda\x4b\x0b\xae\x6d\x7f\x7a\x95\xec\xe8\xa7\xdb\x4f\x11\x01\x5d\xb2\x60\x32\x93\x74\xcc\x94\x2f\x4b\x9d\xa1\xae\x0f\x3a\x80\xf0\xd9\x82\x50\x46\x55\x61\x4b\x9b\x25\x04\xc3\x32\x5d\xe9\x89\x60\x8a\x62\x30\xec\x9b\x92\x9b\xaa\x68\xce\xdc\xec\xe7\x5a\xf3\x59\x94\x03\x78\x83\x3a\xcb\x4d\x82\xed\xdf\x24\xef\x69\x92\xbe\x15\xa3\xb3\x22\xa3\xb0\x84\x02\xf7\x07\xc5\xe4\x26\x1b\xdb\x29\xa1\xd2\xc6\x8c\xfe\xd0\x6c\xab\x3b\xea\x35\x89\x75\x43\xa4\xcf\x45\x51\x90\x49\xee\x36\xb5\xff\xc3\x5a\xbc\x4d\xb2\x10\xe5\x1d\x90\x1f\xd9\x75\x45\x14\x8b\xea\x8f\x5c\xd7\xe8\xcc\x86\xdd\x17\xc2\x8e\x55\x93\x73\x15\xd4\x8b\x24\x76\x71\x71\xbc\xf1\xc3\x4a\x37\x8d\x81\xe5\x18\x6d\xc1\x72\xbb\x72\x23\x48\x67\x2b\x7e\xf1\x21\x49\x4f\x94\xa5\x49\xd4\x01\x03\xd6\xdc\x6e\xa7\x98\x69\x5f\x9c\x0a\x6e\xd6\x00\x4a\xc1\xc4\x0c\xb3\xa6\xca\xbb\x04\x73\x3e\x53\x31\x5d\xfb\xf6\x59\x30\x41\x16\x0d\x4c\x52\x48\x08\x29\x60\x95\xc0\xef\xf6\xaf\x55\x6c\xb8\x3e\xe7\x42\x9a\x76\x1b\x13\x32\x17\x0d\xd2\xbf\xe0\xae\x5b\xdf\x2c\x6d\xa1\xac\xf2\x22\x4a\xb1\x92\x4a\xe2\x8b\xa1\xe2\x39\x05\x70\x01\xaa\xc7\x67\x82\xc6\x97\x95\x1b\xe2\x32\x55\x54\x46\x85\x79\xdc\x03\x01\x1e\x05\x85\x84\x43\xd0\x7e\xf1\x90\x9f\xec\x9f\xd3\x49\x94\x9b\x92\x77\xa8\x94\x97\x8f\xd3\x76\x80\x43\x59\x38\xdb\xb0\x60\xc8\x94\x36\xd9\xfa\xaf\x13\x70\xf5\x96\xa9\x89\x0a\x95\xe6\xd1\x1e\x06\xb7\x0d\x79\x0b\x02\xd4\x3b\x54\x6b\x19\x0e\x57\x10\x4d\x50\xc1\xc0\x29\xa7\x8c\x09\xf6\x75\xce\x06\xa9\x0c\x3e\x42\x16\xf2\xd7\xdb\xde\x60\x7d\x62\xd5\xa6\x5a\xca\xc2\xe7\x01\xb2\x18\xbd\xd1\x7e\x8d\x5d\x15\x84\xf6\xd2\xc4\x46\x6d\xea\x4e\x85\xa6\xf4\xf0\xe1\x96\x1d\x79\x8b\xa3\x97\x1d\x99\x12\xc2\x02\x70\xf9\x28\x47\x83\xc7\xbc\x1e\xad\xd8\xe6\xc3\x87\xd1\xc9\x69\x7a\x74\xe6\x0d\x0e\x6d\x2e\x93\x7c\x7e\xa3\x32\x24\x5d\xe6\x63\x45\x38\xea\xf5\xc5\xe2\x21\x7e\x39\x16\x78\x6d\xbd\x63\x0e\xee\x31\xcc\x4c\x51\xac\xec\x20\xa1\x82\x0f\x89\xf6\x13\x08\x65\x17\x0b\x7d\xf1\x90\x43\x7b\x38\xc7\xf4\xab\x7f\x89\x58\xff\x2e\xb1\xea\x9e\x0c\x87\xa8\xf2\x8e\x5d\x34\x65\x26\xaf\xe6\xf4\xfb\x35\xb0\x56\xaf\x2f\x3d\x9d\x31\x29\xec\xfd\x0b\xd6\xbd\xff\xf2\x7f\xd9\xa4\x96\xe6\x83\x09\x46\xd1\xd3\x64\xaf\xaf\xd6\x52\x5b\xc7\x18\x5f\x2c\x77\x91\xd6\x87\xed\x07\x69\x81\x98\x99\x96\x32\xf3\x32\xcf\x52\x5e\xb0\x07\x49\x37\x4c\x1d\x89\x26\x42\x7d\x6b\x01\x94\xeb\xce\xfe\xbe\x92\xd6\x79\xf6\x9d\x24\xed\x94\xae\xa6\xe1\xb1\xa3\x47\xec\x6b\x92\x6b\xe7\xf0\x16\xe2\xc8\xa0\xf6\x8f\x5c\xff\xaa\x75\x9a\xca\xd5\x60\xcf\x9c\xf0\x08\x54\x0c\xe8\xde\x99\xd6\x7c\x94\x16\xa6\xd3\x4f\xd2\x38\xed\xad\x10\x90\xe3\x08\x49\xe6\x1e\x71\x5b\x22\x8c\xe7\x4d\x54\xd8\xc6\x29\x82\x8a\x5d\x00\xd8\xe9\x50\x01\xb3\xe9\x51\xad\xff\x28\xde\xb0\x8c\x08\xda\x4d\x84\xac\xfd\x1a\x21\x57\x06\x9d\xd0\x36\xb7\xfc\x18\x98\xe2\xb6\x51\x3d\x11\xd4\xb9\xad\x20\x2a\x02\x9d\xc6\xe1\xd0\x5c\x92\x5f\x08\x3c\xbd\x5d\x61\x92\x5c\xf9\x8f\xa6\xc5\xfb\x1c\xe5\x9a\x18\x2a\x07\x1a\x55\xed\xa4\xf0\x3f\x29\x72\x1a\xef\xdb\x04\x9b\x83\x3c\xe3\x3a\x7d\xbb\x0b\x95\x5d\xf4\x4c\x6b\x60\x6c\x4d\xbe\xc9\xa3\x5e\xc2\xa5\x0c\x6b\x26\x54\x56\x08\xa3\xaf\xd3\xf3\x76\xb3\x08\x51\x94\xff\xfe\xa8\x79\xe8\x14\x9c\x27\x41\xcb\x8c\x65\xdf\xe8\x6e\x2d\x9d\xfb\x3a\x18\x93\xdc\xac\xfa\xde\x99\xf5\x2b\x8c\xe1\xf9\x5e\xe0\x0b\x17\x20\xc5\xc5\xcb\xdd\xe1\xd4\xac\x13\xd3\x8b\xa3\x9e\xee\x39\xa0\x81\xd6\x2f\xd4\x71\x26\x14\x26\x49\x4c\x9e\x1b\xc9\x8f\xd1\xab\x3b\x36\xd1\xb9\xab\x12\xb0\xcf\xed\x6e\xe5\xd1\x60\x28\x75\x39\x4c\x20\x40\x7b\x5b\xae\x09\xdb\x37\x9f\xa5\x8b\x06\x59\x91\x96\x33\x3c\x46\xd5\xc7\x7a\xb9\xc9\x96\xd0\x11\x75\x23\x34\xe5\x17\x76\x1a\x07\x0e\x24\x0c\x4d\x4d\x58\x7e\xa1\x91\x50\xd2\x32\xa2\x5e\x7a\xbc\xc6\x5c\xda\x24\x4a\x29\xc4\xca\x35\x9e\x99\x21\x82\xf0\x05\x63\x62\x5b\x24\x77\xc8\xda\x6f\x22\xdb\x17\x0d\x12\x52\xfc\xfb\x98\x32\x9f\x2a\x0e\x67\xcf\x9e\x56\x3e\xea\xf5\x84\x1f\x68\xd6\xab\x8e\x13\x64\xd7\x93\x36\xe4\x45\x36\x02\xaf\x37\x96\x1c\xc7\xef\x1f\x8e\x29\x21\xfc\x87\x84\x20\x2a\x83\x2a\x93\x6d\xb7\x99\xb1\x4b\x98\x7e\xe9\x97\x3c\x86\xb9\xfc\x44\x2d\x63\x97\x9b\x08\x6e\xf1\x0c\xcf\xd8\x89\x70\x9b\xcc\xdf\x04\x9e\xbd\x03\x70\x71\xc5\x9b\xef\xa2\x7d\x1c\x76\x46\x31\xf0\x51\x70\xed\x1f\x07\x54\x4d\xb9\x07\xc8\x80\x10\x25\x4c\xc2\xc6\x23\x43\xd0\x0c\x41\x56\x52\x67\x50\x77\xf4\x2d\x56\x33\x52\xd2\x43\xed\xe0\xd8\x2f\xbb\xb1\x83\x68\x23\x53\xe1\x55\x6e\xfa\x76\x19\x92\x39\x1c\xc5\x1f\xe2\x8f\xc2\xc7\x5d\xad\x1b\xb4\x40\xc3\xb5\x29\x23\x94\x4e\xf7\xfa\x0c\x33\x57\x6d\x26\xda\x8b\x7e\x9a\x0e\xe3\xd0\x96\x5e\x04\xf1\x14\x30\xa5\xe0\xc6\x84\x64\xf6\xb9\xfd\xad\x79\xa5\x59\x56\x8e\xd1\x86\x63\x85\x78\x3d\x78\x8c\xe6\x73\x57\xb6\xfa\x1a\xb3\x38\x58\x99\x19\x80\x85\x43\x37\x18\x02\xa0\x68\x8a\x7e\xc3\xda\x52\xcf\x90\x31\xeb\x44\x48\xab\x9a\x23\xfb\x5b\xe9\xa8\x48\x46\xa5\x25\xd3\xda\x8e\xea\x2e\x78\xb4\xb6\xcc\x07\xa2\x3a\xf5\xa0\x92\x5f\x59\x01\x87\x3c\xdf\xe2\xe9\x6c\x2e\x8d\x09\x72\x7c\x0f\x3d\x14\x04\x98\x37\x89\xcd\xf8\x0a\x0f\x5e\x5c\x9e\xd8\x1f\x4b\xf9\x62\x83\xf8\x16\x85\x56\x41\x6e\xea\xe0\x4b\xe9\xc2\x42\xd4\x31\x0f\x27\x7e\xe4\xb1\xf7\x64\x64\x10\x9f\x0b\x64\x02\x7b\x56\xf1\x13\x8f\xbb\x23\xd8\xe9\x9b\x9c\xdc\xe5\x71\x6c\x4c\x95\xac\xe6\x10\xa1\x17\xe6\x96\x04\x4e\xe3\x4e\xfb\xbd\x44\x95\x04\xdf\x9e\x24\x4a\x66\xdd\xa0\x15\x7d\x2e\xc8\x20\x80\xbb\x91\x69\x2e\x6c\xfa\x1f\x5b\xca\x0a\xc4\x7d\xd7\x49\xb5\xe8\xc1\xd8\x33\xa3\xdf\xb7\x0e\xd3\x4d\x34\xfb\xa7\xbc\x34\x66\xa4\x41\x55\x7b\xe8\xe0\xee\xd9\xd6\x42\x3c\x2a\x5c\xa4\xea\x74\x52\xdd\xcc\x65\xa3\xed\x37\xd6\x6b\x15\x9b\xf6\x8c\x25\xd2\xce\x2d\x38\xc3\x4d\x97\x80\x49\x49\x15\x7b\x7c\xcc\x36\xf3\x2b\x5f\x41\xc8\x85\x68\xee\x12\x53\xbc\x5e\x72\x07\x38\x4a\xba\xa3\xbc\xc8\x56\x96\xa3\xae\xd9\xd2\xf8\xbb\x5a\xd2\x42\xc4\x6c\x43\xa8\x7f\x0e\xe6\x6c\xb9\xb6\x1d\x0d\x51\xf1\x09\x28\x24\x3c\xea\xa7\xbf\xc2\x95\x74\x61\x41\x4a\x9c\xaa\x4a\xe1\x1b\x47\x75\x93\x65\xe5\x2e\x09\x7b\xca\xe6\xe5\xf8\x6f\xcb\x1d\x09\x48\x29\x00\x9a\xd2\x6d\xf5\x62\xc6\xe1\xd0\x2d\x25\xcb\xe6\xa3\xaf\x72\x9b\xd0\x9f\xc7\xfd\xef\x64\x61\xd7\xe4\xdb\x7d\xad\xc9\xa6\x6d\xa5\x07\x6a\xec\x99\xf6\x31\x5e\xb9\x6f\x34\xaf\x2a\xdf\x3c\xdc\xd9\xfb\xb0\x9c\x78\xf5\xcd\xb6\x9f\x9e\xfe\xf4\x13\x44\x89\x75\x79\x43\x3c\x9b\x7f\x96\xe6\x24\x6f\x58\x3f\xa1\x03\xb6\x3e\x7d\x7f\x04\x33\x04\x08\x5a\x4f\x8d\x69\x4e\x1e\x64\x84\x88\x55\xb6\xb7\xbd\x5c\xc9\x55\x8b\x1d\x73\x92\xb2\x7b\x15\x4c\xb3\x0e\x6b\x20\x7f\x29\x40\x4d\xc4\xf1\xd2\x7a\xb5\xe3\xb7\x90\xc9\xc2\x08\xbe\x32\xf6\x0c\x5a\xf7\x98\x92\x52\x35\x28\x60\x8d\xbe\x6f\x57\x09\x49\xe2\x27\x10\xbd\x4d\xf4\x81\x10\x02\xac\xa3\x36\x82\xb8\xee\x31\x74\xf0\xb0\xd8\x1f\xa3\x7c\x86\x9d\x70\x6f\xec\x25\x24\x3f\x1a\x13\x8a\x71\x1d\x27\x5a\xf5\x2b\x3c\x83\x10\xb4\x15\xbc\xd2\xbb\x50\xb2\x48\x5b\x96\xd8\x25\xff\x94\xcd\xc0\xa5\x80\x0c\xc4\x25\x9a\x22\x7b\xc3\xed\xd9\xf9\x6c\x94\xf7\xb5\x2c\xef\x34\x63\x67\xbc\x32\x6c\x4d\x2d\x38\xb5\x95\x66\x9b\xf7\x95\xbf\x85\x90\x0b\x31\xba\x5c\x13\xa2\xc4\xbc\x64\x53\x4c\x2b\xee\x82\x53\x7f\x2d\x60\x7c\x19\x75\xce\x4e\x4f\x0e\xeb\x94\xaf\x02\x3b\xf1\xde\x04\xd2\xa5\xca\x62\x02\xe4\x48\x2f\x8c\x12\x57\x32\x74\xd9\x38\x89\xf3\xd5\x54\xc2\x5a\x5d\xb3\x10\x29\x33\xa2\x76\x8f\xed\x56\xd1\xf6\xb1\x93\x29\x89\x4d\xd8\x71\x78\x71\x78\x08\xe0\xc5\xe5\xba\xe2\xae\xec\x20\xa5\xcc\x98\x4b\x7d\xcf\xae\xac\xd6\xfa\x1e\xf1\xe8\x86\xcf\x94\x3f\x83\x82\xdd\xa3\xe0\x96\x40\x05\x44\x28\xa0\x74\x43\xfa\xca\x66\x13\xe5\x04\xf8\xba\x73\xd4\x30\xdb\xbe\x8a\xa5\x72\x98\x0c\xaf\x9e\xfe\x00\xe6\x1e\x5b\x1d\xc3\xc2\x00\x7f\x9e\x42\x9d\x57\xb0\x85\xac\xec\x83\x81\x24\x1e\xa9\xc0\x73\xed\x68\x7b\x8a\xae\x07\xe0\xb9\x40\x31\xe5\xf4\x98\x74\xdc\xb7\xb4\xbd\xca\xd6\x99\x60\xf3\xe7\xc4\x1d\xdf\x61\x56\x9e\x1f\x04\x34\x63\x78\x91\x49\x29\x9b\xab\xe5\x89\xd3\x3a\xba\x3d\xd9\x8a\xa3\xf5\x69\x4b\x18\xc7\x18\xc8\xf6\x95\x16\xf0\x29\x69\x48\xb4\x8b\x58\x2c\x96\x87\x69\x86\x74\x59\x42\x7c\x3c\x88\xc6\xfb\x13\x71\x41\x98\x60\x4f\x68\xab\xcd\xbe\x07\x6d\xc2\xb9\x21\x96\x7e\xe4\x84\x2b\x35\x6a\xa5\x08\xd6\x51\xa3\xa5\x59\xd4\x8b\x12\xc2\x8a\x89\xab\x09\x7c\x61\xff\xf4\xf8\x61\x85\xc5\xc2\xe4\x45\xb4\xb0\xe2\xec\x3d\x0e\xa6\xcd\x1e\x64\x41\xbe\x37\xa6\xd2\xd6\x79\xd6\x93\x8f\xf2\xce\x08\x2a\x59\xbe\x81\x76\x0f\x73\x62\x72\x33\xfe\x24\x91\x53\xd9\x64\xa0\x63\xe9\xd2\xec\x8b\x10\xd5\xa1\x80\xa6\x29\xce\x13\x2b\x18\xb8\x65\xf0\x86\x84\x77\x45\xd9\x07\x29\x7b\xb8\x40\xcc\x9b\xd2\x78\x95\x5f\x09\x98\xf0\xd0\x63\x7d\x3a\x61\x12\x76\xa3\x30\xd9\x6e\x77\xa5\x4b\x5b\xdd\x00\xf2\xeb\x63\x22\xb7\x92\xaa\x1c\xdc\xca\xbf\xe1\x08\xeb\xac\x44\xf1\x28\x6d\x6e\x6e\x7b\x4c\xc8\x14\xb2\x36\x44\x47\xf7\x2b\x3d\x9e\xbd\x33\xad\x4e\x66\xf2\x62\x90\x26\x02\x46\x21\x51\xd2\x59\x47\xf0\xaf\x9b\xe0\x85\x34\x4a\xb4\x49\xe7\x60\x8f\x7e\x0e\xfa\xa2\x0b\x38\x32\xd3\xc9\x4c\x08\xb8\x98\xcd\x18\x10\xc5\x21\x52\x45\x89\xf8\x03\x8b\x88\xb8\x50\xd3\x3b\x23\xd4\xfc\xff\x2f\x6c\xe5\xcc\x4c\x6b\x21\x32\x56\x7b\xb3\xe1\xcb\xc2\xc7\x49\xa2\xe3\x38\x91\xb9\x0f\xd3\xbc\x18\x84\xd9\xa2\xb0\x91\x28\x99\x41\x79\xc8\xb5\x44\xeb\x03\xdb\xf9\x2c\x4d\x17\x27\x34\xea\x2e\xc1\xb2\x48\x81\x26\xf0\x15\x5c\xd4\xdc\x51\x96\x7c\x05\xce\x48\x05\x9e\x1a\x5f\xf9\x92\xbf\x76\xbc\x53\xa7\x6a\x89\xcd\x17\x46\x59\xd1\x37\x59\xd3\x97\xac\xa0\xdb\xe2\xd2\x49\x8f\x18\xdf\xd4\xf6\xb9\xea\x30\x0e\x93\xce\xa2\xd5\x92\xd4\x34\xde\x6e\x3f\xd5\x2a\xac\x11\x2b\xee\x9a\x25\x13\xa7\x43\x1c\xea\xd9\x5a\xb1\x7d\x26\xe1\x8d\x0a\xd3\xb5\xf8\xc3\x09\x55\x78\x58\x36\xf0\xeb\x3b\x97\xe7\x2d\xec\xeb\xd6\xfb\x2b\xaa\xb1\x7c\x3a\x85\x3b\x6e\x00\xbc\xcc\xed\x9e\x6b\x1d\x3e\x4c\x15\xfe\xb7\xa8\xc2\xff\x16\x31\xd8\x0f\xb3\xb4\x97\x85\x83\xfc\x31\x5f\xae\x7d\xdc\x32\x37\x21\x36\xfe\x7a\xe0\xe1\x5c\x57\x60\x6f\x15\xca\x43\x74\x7d\xc2\x30\x88\xb3\xb9\x79\xd5\x93\xed\xde\x45\xac\xa1\x1a\xa3\x76\xdb\xb9\x6e\x74\xf9\x4a\xa5\xd8\x8f\xb0\x15\x00\xe3\xa3\xb0\x19\x7a\x2c\x7d\x06\x3b\x0c\x4b\x4b\x66\x23\x19\x98\x87\xa3\xa4\xac\x78\x1e\x6f\x12\x91\x6b\x03\x23\x53\x72\x63\xc3\x60\xf9\x29\xd2\x6f\x3d\x5a\x39\x2a\x73\xbb\x2d\x25\x6c\x83\xd4\x38\x21\x18\x23\xd7\xab\xde\xd0\xcc\x87\x9d\xc5\x79\xab\x66\xe9\x95\x18\x7e\x2d\x20\x5e\xdd\x5f\x9b\xf0\x09\x9f\x5f\xfc\x3c\x5a\x59\x2a\x92\xeb\xe7\x54\x85\x38\x04\x91\x40\x55\x6e\xf8\x0b\x4a\x80\xd7\xf0\x8c\x83\x32\x5f\xaa\xb3\xf1\x1e\x2a\x90\xa5\x65\x9e\x64\x68\xa8\xf4\x1d\xaa\x2a\xbe\x43\x6a\x1b\x83\x30\x4a\x8a\x30\x4a\x64\xbe\x1c\x46\x59\xa8\x5f\x58\xc7\x40\xda\xf3\xb6\xfd\x8b\x17\x7f\x26\xf0\xd3\x7f\x22\xd9\x80\x8d\xfa\x7e\x85\x75\x68\x66\xa6\x15\x46\x0d\xe2\x4e\x12\x01\x22\x7d\x17\x9f\x74\x88\xea\xd2\x7f\xa4\x71\xd4\x75\xba\x0b\xb0\xc3\x0f\x58\x76\xec\x41\x9d\x94\x7e\x9c\x2e\x9b\xac\x69\xdf\xb6\x48\x68\x61\x1f\x28\xf3\xb1\x6f\x90\x94\x21\xb1\x4f\x30\x46\x3d\xb3\xcd\xfb\xfa\xd7\xed\xb6\x40\xe4\x81\xfe\x0e\xde\xf8\x1f\xd1\xa8\xc8\x09\x1a\x92\x84\xdd\x75\x13\xb1\x7e\xbb\xfc\x11\xf9\xa2\xcc\xe4\x69\xbc\x24\x2a\x6d\xf8\xd9\xab\x34\x0a\x72\xd5\xe1\xef\x8a\x7e\x94\x6c\xf3\xd8\x55\xe1\xd8\xc2\x3b\x7b\x30\x26\xac\x37\x58\xec\xd1\xad\x78\xb2\xed\xb1\x1a\x9b\x57\xa9\x8e\x7c\xde\x73\x8a\xfd\x8d\x73\x95\x25\x2b\xe3\xd6\x38\x5d\x92\x3d\x5e\x2b\x93\x4b\xac\x99\x79\x16\x9a\x38\x6a\x30\x37\xfd\xda\x98\xf6\xde\xda\x43\xa5\xec\x06\xe1\xcb\xdd\x10\x5a\xc1\xda\x77\xf1\xe1\xb4\xd4\xa8\x10\x12\xdd\xa7\xba\x47\xdf\xc4\x43\xd3\xdd\x6e\xff\x17\xc3\x4e\x77\x27\x98\xf8\x4e\x4f\xca\x54\xb9\xa4\x41\xc6\xf2\x9c\x10\x50\xb9\x1d\xf0\x66\xc1\x14\xe3\xe4\x88\x3c\xdf\x5f\xa3\x5d\xd7\xe0\x19\x66\xe9\x70\x25\x36\xc9\x84\x0d\xf8\x23\xc2\x84\xfe\x91\xf3\xdd\x5d\x63\x86\x31\x44\x51\x60\xd1\xee\xc2\x88\xb9\x29\xca\x83\x54\x37\x57\x06\xe7\x7f\xf4\x49\x2a\x55\xac\xd7\x72\x68\x16\x61\x0c\xc9\x1c\x4f\x6b\xf9\x23\x9c\x4b\xb9\xa9\x54\xc8\x74\xcd\x7b\x69\x1c\x8f\x72\xb0\x27\xcb\xdc\x3b\x87\x1d\x67\x49\x06\xbc\x1b\x2e\x89\xe9\x82\x6b\xfa\x21\x22\x02\xb9\x61\x61\xbe\x74\x94\x14\x53\x9e\x37\xe6\x5f\x12\xe5\x11\xfa\xad\x2a\xca\x5f\x6e\x60\x55\x18\x74\x0c\xd9\x03\x9b\xc0\x45\x4b\xa0\x29\x47\x9a\x71\xd5\xb7\x39\xf7\xae\x07\xbe\xa4\x78\xae\xb6\x0b\x96\x9b\x62\x34\x44\xb2\x88\xec\x03\x53\x41\x72\x5d\x33\xbd\x3f\xdb\x8a\xf2\x34\x0e\x05\x9a\x33\xcb\xda\x06\x6e\xae\x39\x78\x9c\xe4\x01\xa3\x82\xd8\x3c\x7f\x40\x6c\x9e\x3f\x60\x10\xf9\x7c\x92\x66\x83\x10\xd4\x52\x6e\x3c\x6a\x6e\xb7\x1b\x8f\xf2\x14\x28\x71\x1a\x16\xfd\x3c\x1d\x98\x89\x90\x2b\xe0\x90\xab\xd2\x5c\x9c\x7d\x6e\x7f\x2b\x1c\x15\xe9\xc0\x19\x40\x6c\xff\x4d\x38\xd9\x72\x43\xd5\xdc\xa5\x28\xef\x9b\x4c\x4e\x26\x5e\xdb\x5a\x40\x74\x80\x6b\x2e\xd1\x58\x4a\xcb\xdc\x61\xca\xee\x20\x18\xd2\xad\x04\xe9\x7d\xac\xed\x66\x93\xbf\xd3\x58\xa5\xb8\xec\x0e\x1d\xcb\x51\x12\x97\x69\xb8\x7d\x09\xac\x9a\xa8\x52\xd6\xbe\xfe\x78\x9a\x05\xf2\xfe\x04\x07\x11\xa7\x03\x84\xfa\xc8\x46\x3f\x20\x47\xd4\x0d\x93\x5e\x8c\x3e\x13\x0d\x3b\xd2\x44\x64\x4d\x88\x1d\x25\xf9\xd0\x8a\x84\x36\x7c\x22\x73\x84\x02\x95\x23\xac\xd0\x23\xe0\x33\x56\xaf\x5f\x23\xe9\xc3\xb7\x89\x69\xf8\x7a\x7d\xd3\x37\x36\x61\x16\x26\x1d\xb1\x09\x4e\xbd\x7e\xc6\x0f\x1d\x3d\x55\x75\x4c\x2f\x37\x89\x79\xa5\x69\x43\x22\xf0\x19\xad\xda\xdf\xc4\x49\x99\xaa\x48\x66\xcd\xcc\xb4\x86\x69\x1c\x75\x44\x1e\x58\x35\x34\x7d\x66\x78\x17\x1b\x49\x13\x4f\x5f\xb9\x34\x3d\x51\x63\x75\x19\xbf\x93\x4b\xb9\xe8\x8c\x56\xd8\x7d\x61\x94\x17\x5b\xfd\x44\xd9\x0d\x22\x78\x47\xaf\x13\xb6\x89\x4b\x32\x02\x2d\x90\x69\x46\xe6\x56\x7a\xbc\xbd\xd3\x59\xc3\x38\x5a\x32\xd9\x56\x5f\x94\x05\x93\x97\x06\x7b\xe5\x1b\xd5\x07\xb3\x4f\xa9\x98\xaf\xf2\xe3\x51\x82\xdb\x45\xc2\xc7\xac\xe0\xf0\x42\xd8\x59\x94\x56\x35\x67\x06\x9a\x00\x7c\xda\x27\xf4\x5d\x88\x31\x65\xe0\x85\x6e\x90\x90\xb9\x6f\x45\xff\xdc\xb9\xdd\xc5\xb0\x48\xed\x0f\x39\x1d\xec\x19\x27\x0e\xcb\x6a\x0c\x9d\xa8\x58\xd9\x6a\xb7\x35\xe2\x1c\x8c\x69\xe1\xe7\x7e\x82\x33\x87\x16\xd4\x47\x48\x65\x94\x52\xba\xfc\xfa\x8c\xd2\x43\x13\x64\xdb\xea\xc3\xd0\x35\x66\xc9\x24\x53\x14\xeb\x5f\x25\x21\xa3\xa9\x36\xe9\x72\xb3\xdc\xfb\x79\x42\x4d\x97\x36\x67\xb9\x1f\x0a\x80\x57\x66\x3f\x51\x7d\x90\xad\x47\x29\xd5\xc5\x1a\x85\xf6\xe7\x5b\x49\xb8\xa8\xa9\xa2\xab\xbc\xba\xa4\xee\x06\x11\x6a\x2f\x45\xa6\x48\xc2\x41\x83\xdf\x25\xe2\x76\x7d\xb1\xde\x76\x46\xc9\x12\x02\x21\x9a\x46\x03\x56\x50\xae\x6b\x80\x7f\xd3\xad\x3c\x4e\x97\x6d\xcc\xab\x0a\xa8\x9e\x07\xe3\x7d\x1a\xcc\x18\x25\x51\x9a\x3c\x6e\x1f\x43\x88\xeb\x03\x5f\x54\xfe\x10\x6f\x04\xdf\xfe\x24\x51\x55\x5c\x0b\x68\xce\x55\x90\xa8\x72\x63\xb7\xaa\x0b\xf9\x5c\x7e\x76\x82\x70\xc4\x57\x26\x64\x14\x98\x78\x55\x94\x22\x54\x07\xd4\xab\x55\x5c\xa9\x80\x70\xf6\xce\xb4\xb2\xb4\xb3\x68\x16\x4c\x1c\x97\xf9\x29\xab\xd0\xba\xe2\xd5\x65\x46\x0d\x7e\x1c\xf8\x82\x0b\x54\x91\xa2\x1c\xa8\x5d\x27\x4b\x2e\x91\x95\xc2\xa9\x48\xb0\xd3\xcc\x17\x8f\x93\xc3\x17\xc6\x28\xec\xd5\x37\xf0\xe6\x74\x6a\x9b\x88\x10\x4e\x60\x9d\x30\x98\x71\x9d\x28\x58\xb7\x59\x1b\x2d\xf2\x47\xbc\xc7\x5e\x1b\x7b\x09\xbd\x1b\xc1\xc6\xfc\x53\x15\x95\xed\xfa\x39\xd8\xcd\xac\xab\xeb\xac\xb1\xce\x6e\x96\x0e\x01\x7c\x70\xc4\x64\xac\xa3\xef\xbb\x28\xef\x8c\x7d\xbc\x31\x1f\xc6\x16\x74\x88\xbd\x26\x99\x8c\x7d\x0c\xcd\x6a\xfc\xd6\xb1\x4a\x80\x80\xa9\x21\x50\x7b\x80\x12\x93\x1b\xab\xe2\x21\xe3\xf2\xb3\x55\x49\xdb\x1b\xb3\x73\xce\x9a\xe4\x45\xb8\xb2\xdd\x2e\x23\x52\x0f\x70\xaa\x38\x05\x69\x27\xf1\x7b\x69\x92\xb7\xc5\xcb\xe5\x6d\xb7\x01\x3d\x76\xc0\xdb\x58\x20\xc0\x4b\x6e\x23\xa3\x51\xb2\xd6\x9a\xa2\x7a\xd7\x0c\xd2\x4e\x16\x16\x8a\xf3\x80\x3b\x17\xa2\x5a\xbc\xd5\xaf\x73\xa6\x76\xad\x8e\x09\x47\xe6\x45\x1a\x9e\x0f\xe0\x02\x4d\x26\x5f\xa0\xb4\x60\xd9\x84\x45\xdf\x64\x20\x1d\x44\xde\x7a\x03\x9f\xe5\x58\x26\x37\xa2\x2d\xdd\x40\xa7\x07\xbf\x9c\xa4\x76\x78\x3a\x34\x59\x58\x44\x4b\xfa\xde\x60\xa2\x8e\x05\x84\x5e\x3f\xc6\xfa\x81\x51\xae\xda\x63\xc4\xcd\x01\x97\xa5\x00\xa8\x3a\xeb\xd6\x0d\x97\x13\xa9\xb6\x09\x8f\x41\x30\x41\x00\xfa\xb0\xc0\xba\xc8\xa2\x24\x2a\x56\x28\xda\xb8\xc7\x13\x80\xf7\x6a\xcb\xf7\xd1\x22\xe6\x00\xe5\x2d\xde\xa5\xa8\xf7\x17\xec\xab\xb6\x5b\xe3\xd0\x13\xf6\x20\x29\xa9\xfe\xce\x49\x6e\x88\x6d\x78\x9f\xd4\x60\x7e\x56\x22\x8a\x23\x63\x8f\xb4\xc2\x14\x0a\xfe\xfd\x4f\x50\xe0\x04\xd4\x51\x66\x0d\x10\x76\x6f\x6e\xd3\x18\xd9\x65\x87\xe2\x58\x4a\xe3\x51\x52\x84\x59\x94\x0f\x9a\x8d\x2f\x1e\xf2\x5c\x6c\x33\x33\x12\xda\xdf\xc3\xd6\x41\xf3\xe0\x2c\x4f\xe9\x14\x45\x9a\x25\x66\x65\x0b\xad\xc5\x79\x94\xc9\x54\x89\xd6\xc7\x2d\x53\x6d\x4a\xeb\xed\x09\x92\x9f\x09\x36\xa2\xc1\x74\xd5\x87\x99\x59\x8a\xd2\x11\x66\x0d\xb4\x5b\x45\xa3\xb2\x2c\xd4\x01\x4d\x8f\x29\xdf\x71\x58\xc3\x62\xc1\xf8\x82\xc8\x40\xae\x89\x21\x60\xad\x76\x97\x58\x65\xae\xa6\xe7\x85\xb8\x82\xf6\x9b\x6e\x92\x86\xe3\xc9\xfb\x36\xa1\xe4\x3a\x99\x15\x29\x98\xf2\x34\x3c\x3b\x57\x89\xa2\xf7\x4d\x22\x33\xbc\x4c\x3a\x0a\xd7\x9e\xa8\xa4\xa1\x07\x77\xb7\xa2\xa4\x1b\x2d\x45\xdd\x51\x18\xdb\xb4\x89\xc1\x0e\x30\x47\x7f\x3a\xc9\xde\xa9\x75\x94\xa1\xc9\x2c\xbd\xd1\x92\x49\x4c\x9e\x13\x0b\xee\xbb\xc4\x82\xfb\xee\x98\x91\x5b\x83\x74\x49\x41\x5e\x8a\x05\x60\x2b\xfb\x94\x2f\x88\xa6\x79\x6e\xc4\xdd\xcc\xed\x96\x08\xff\x46\xe0\xd1\xf8\x37\x6a\xbc\xf8\x4c\x2b\x4f\x17\x8a\x86\xe7\xe2\x07\x3a\x40\xae\x89\xfa\xa1\x1b\x16\x50\xd0\x5d\xbf\x62\x4d\x22\x36\xf3\x15\xce\xa8\xaf\xa0\x06\x8c\x1d\x34\x4b\x74\x12\xb3\xa5\x97\x5e\xbf\x32\x91\xd3\x2d\xc9\xd9\x53\xc1\x1d\xbb\x19\x84\x35\x9d\xa8\x3e\x21\xaa\xaa\x49\x99\x7f\x9c\x7c\x39\x5c\x61\xaf\x0a\xeb\xa6\x2e\xd6\x87\x86\xcb\x51\x62\xc8\x43\x5d\x20\xfa\xfb\xbb\x6c\x21\x4e\x13\x07\x50\x6e\x92\x50\x53\x17\x84\x33\xb7\x58\xe9\xfd\x56\x0d\x17\xeb\xb3\x2d\x31\x90\xda\xc7\xd1\xe0\xb3\xe1\x94\xff\x70\x60\x55\x2f\xf9\x93\x14\x1e\x75\xfa\x61\x1c\x9b\xa4\x27\x42\x8d\x12\xde\x33\x19\xf4\x85\xb1\xc7\xf2\x2c\x74\xc3\x29\xc2\xdc\x5f\xe4\xc9\x5b\xcb\xd7\x2e\xfe\xe0\x16\xf9\x86\x5b\x75\x83\x84\xbd\x2c\x5d\x36\x19\x7a\x20\x8e\xde\xdf\x61\x8b\xcf\x07\x9f\xf2\x15\x68\x53\xd8\x21\xb7\x41\xd4\x09\xe3\x29\x06\xda\x13\x1f\x4b\x73\xd5\x17\xed\x9f\xb0\xc1\xb0\xb2\xc2\xd5\xea\x2f\x85\x9e\xbc\x1c\xb1\xcb\x65\xd2\xac\xbf\x0c\x6d\x01\xa5\xe3\xf8\x3c\x77\xeb\xce\x71\x69\xea\x1c\x01\x43\xbe\xbc\x67\xaf\x05\xb7\xc2\xb7\x22\x2c\x9e\x40\x5c\x21\x16\xda\xd4\x26\x13\x1e\xf5\x46\xa6\xe1\x49\x1d\x27\x29\xda\xbd\x3b\x5b\x8a\xba\x26\x2d\xc2\xa1\x11\x70\xa8\x9b\x05\xf5\xc3\xf2\xb7\x69\x8e\xe0\x6a\xdd\x14\xe6\x62\xda\x0d\x17\xb1\xda\x0a\x6f\xa5\x91\xbc\x35\xd7\x8a\xee\x87\x49\xb7\x6f\xe2\x2e\xcd\x05\x81\x02\x48\x01\x8a\x34\x43\xd4\x8f\x86\x16\xdd\xb7\xd5\xd3\x52\xbc\xc6\x24\xce\x60\x5b\x84\x45\xda\xd4\x9e\x50\xc8\xb5\x11\x0b\x9c\xfe\x79\xc4\x93\x72\x33\x01\x49\x4a\x92\x95\x29\x9f\x0c\xff\x8c\xb1\x46\xc8\x4b\x91\x3e\x61\xc0\x13\xa1\xd4\xd7\x89\x3e\x49\x09\x3b\x5c\x31\x63\x03\x61\x07\x09\x66\xc5\xdd\x6d\x0d\x47\xcc\x82\x99\x01\x87\x83\xf2\x74\x55\x37\xa8\xfd\x2b\xc1\x07\x1c\xf3\x84\x52\xc8\x9d\x31\xad\xc1\x49\x8a\xc9\x3b\x06\x5a\xe6\x61\x61\xf2\x29\xe6\x37\x12\x80\x30\x02\xe4\xa3\xd4\x0b\xdf\xc6\x3e\xf9\x2e\x25\xf3\xfd\x62\xc5\x6a\xca\xa1\xc9\x7e\x1f\x14\x8f\xaa\xf3\xe3\x1b\xfe\xaf\x13\xff\xf0\xdb\x18\xdd\x51\xde\xf8\x8d\x7b\x64\xfa\x40\x6b\x3e\x8b\xcc\x82\xf5\xa6\xb0\xd8\x5b\x6d\x18\x22\xd7\xab\xde\x99\xf6\xd3\x74\x11\x5d\x2c\x75\xd2\xff\xd8\x2e\x8c\x5c\x13\x11\xdb\xbc\x1d\x81\x9b\xf2\xa9\xf9\x9b\xfc\xe6\x2f\x61\xa1\xe4\x7f\x02\xda\x06\x97\xa8\xb2\x56\x98\x2c\x8b\xe6\x63\x21\xea\xc6\xaa\xbe\x46\x3c\xa5\xaf\x91\x5d\x2e\xfa\x51\xfe\x0b\xf6\x13\x74\xe4\xa2\xf1\x95\x2f\xf9\x9a\xfc\x41\xc5\x1d\xdf\xb4\xf8\x77\xa5\x4e\xb0\x18\x03\xfc\xb1\xff\xdb\x66\x74\x22\xf0\x1d\x34\x0e\x3c\xe7\x2a\x24\xf6\x0d\x21\x39\x14\xc2\x4b\x55\x9f\xf4\x71\xcb\xbf\xb5\x99\x19\xb0\x6d\x82\x07\x45\x52\x7f\xc3\xea\x6a\x20\x3d\xf8\x73\x2e\x3f\x5f\x44\xc0\x02\x87\xb7\xd5\x86\x7a\xa8\xe2\x36\x05\x6b\x81\x36\xd9\x31\xc4\xa1\x78\xa9\xc7\x6c\xd3\x01\x0f\xff\x6f\x28\xa6\x7d\x1f\x60\x52\x57\x05\x75\x1c\x89\x8f\xb5\xa9\xef\xf4\x5f\x63\x43\xe3\x81\xbf\x3a\xa6\x0a\xfc\xab\x3c\xa4\x7f\x09\x59\x97\xa2\xc6\x1e\x16\xf9\x2e\x45\x9d\x45\xc7\xee\x8f\x93\x2e\xc3\x30\x72\xd3\xf6\x20\x89\x38\xcc\x7a\x26\x5e\xd9\x5a\xbe\x06\x60\x6f\x30\x76\xa3\xc1\xbc\xcf\xbe\x05\x5b\x24\x3f\x44\x83\xa6\xc2\xad\x04\x33\xfd\x6d\x0f\xf7\x2f\x8a\xa8\x23\x0f\xc1\x14\x66\x0a\x38\x55\x1c\x76\x92\x66\x03\xf9\x31\xf4\xc4\xef\x53\x7f\xfc\x7e\x65\xc4\x6c\xdf\xbe\x56\x98\xa1\xf8\xeb\x78\xec\xdd\x5c\xc9\xb9\x3a\x6c\x74\x66\x12\xb3\x5c\x6e\xf8\x83\x2a\x3b\x7a\x76\x4c\x9d\x07\xa8\x28\xa2\xb0\xb6\x8e\x3a\x1d\xb2\xaf\x2d\xab\x1a\x29\xe6\xa3\xf9\x5e\x96\x8e\x86\xa2\x83\x4c\x65\x7a\xcf\xd0\x44\x85\xbb\xb1\xa7\xbb\x5d\x0a\x3b\x28\x0e\xef\x99\x56\x72\xd2\xc0\x9f\xe5\x57\xa9\xde\x92\x8f\x86\xc3\x34\x2b\x10\x00\xc2\x82\xc0\x75\xcb\xb5\x03\x70\x75\xd2\xe5\x30\xeb\xca\x8a\x69\x8f\xd6\x83\x25\x2e\x52\xac\xdf\x8b\xd3\x79\xf0\x02\x12\xa8\x21\xe0\xe1\x03\x7f\x4a\x4d\xaf\x07\xee\x39\xd2\x27\xdc\xef\xcb\x28\x6e\x7c\xe9\xde\xc4\xf8\x58\x79\x36\x80\xdd\xdb\xd4\xa6\x3e\x65\xba\x64\x4a\x27\x84\x42\x93\x0e\xd2\xd1\x50\x1d\xb1\xad\x0e\xcb\x88\xe3\xb1\xf2\xdd\xc0\x57\x5c\x87\xfd\x61\xfe\x20\x6c\xb3\x37\x83\x09\xa9\x28\xfb\x78\x88\xda\x36\x24\x49\xbe\x39\x71\x0c\xc8\x17\x74\xa8\x85\x86\xcb\xc1\x0e\x3d\xad\xd5\x3b\x24\xff\x76\x39\xf0\xec\xba\xb7\x2a\xbd\xe6\x03\xcf\x95\x51\xe6\xb0\xe1\x9b\x8d\x10\x04\x91\xeb\xf1\x63\x1e\x0c\xdc\x91\x1e\xaa\xcc\x99\x07\x34\x09\xf5\x67\x34\xb8\x32\x1f\x8a\xe4\xb5\xe3\x30\x72\xfd\xdb\xab\x54\x01\xf9\x26\x95\x56\xe3\x70\x39\x4f\x93\xe6\x84\xd8\xf8\xdc\x6e\x69\x3d\x5e\x23\x1d\xd0\xdb\x13\x7e\xdb\xf4\xc2\xad\x3e\xb9\x10\x8c\xb7\x92\x6f\x5a\x8b\x03\x57\x87\x94\x45\x71\x1e\x5e\x71\xe6\x07\xf0\xd3\x28\xb8\xdd\x0b\x9e\xf6\x15\x19\x4b\x18\x5e\x98\x2c\xc5\x14\xb6\x8e\xc6\xdb\xaf\xa2\x63\xf2\x35\xb5\x8b\x85\x30\x29\xc2\x7c\x85\x66\x94\x9a\x36\xdd\x94\xeb\x55\x27\x69\x9c\x0e\x06\xa3\x24\x92\x99\x50\x6f\x42\x7e\x27\xf0\x13\x3f\xbf\xe3\x86\xe8\x47\x49\x9c\x2e\xa9\x74\x03\x5b\x34\x35\x5c\x7f\x99\x30\x96\x71\x9a\xa5\x0b\xf1\x28\xcd\xd2\x4e\x98\xcd\x3b\xa1\x73\x04\x16\x67\xe9\x0b\x00\x95\x8b\xca\xd5\xad\x9a\xd9\xac\xd9\x56\x37\x1d\xcd\x17\x72\x2a\x05\x4e\x1b\xf8\x47\xb8\x40\xf9\xdb\x52\x94\xf5\x22\xcb\xfe\xea\x1c\xf9\x3d\x8a\x14\x7f\x0f\xeb\x0c\xbf\x7d\xbf\x8e\x0a\xb8\x1f\xf5\xfa\xf2\x49\xf0\x64\x17\x88\xeb\xb3\xaa\xf1\xb7\x67\x4f\xab\x1f\xe5\xc3\x30\x11\x7a\x4b\x2d\x75\xdb\x8f\x51\xf5\x84\x2a\xc9\x6c\xab\x9f\xc6\xb1\xc9\x1a\xbe\xd6\x7f\x9a\x28\x28\x6b\xe5\xb5\x17\x93\x74\x99\x85\xd0\x4e\x05\x94\xdf\xb0\x68\x5d\x24\xb1\xac\x02\x0d\x89\xe1\xea\x72\x5d\x5d\x66\xc5\x08\x4f\x18\x82\x4e\x8c\x90\xc8\x75\x25\x68\x9a\xdb\xdd\x5a\x0e\x5f\xd2\x8a\x38\xd0\x88\x38\x4b\x72\x5d\x66\x4e\xae\x9a\x98\xec\x2a\xbf\x20\x66\x39\xb6\xb5\x49\xf7\x47\xe8\x99\x11\x12\x00\x8e\x82\x92\xce\x3d\x38\x42\xe1\x9b\x1f\x93\x08\xde\x65\xc6\xa6\x9d\x61\x49\xdb\xbb\xc4\xa1\xf3\x9d\xb1\x6f\x32\x80\x14\x02\x45\xc6\x7b\xf6\xe8\xe2\xfa\xda\x98\x3c\xcd\x49\x98\x44\xd4\x80\xef\xdb\xb2\x24\x02\x8d\x9d\xed\xcd\x9f\x73\xe3\x18\x9e\xb2\xe3\x05\x93\x8d\xf2\x30\x36\x03\x7a\xdd\x7f\x38\xf6\x09\xf4\x1f\xd6\xcd\x39\x14\xa5\x1d\xce\xd1\xff\xd2\x69\xb1\x09\x81\x55\xfb\xd5\x90\x70\x7c\x6d\x02\xbc\x97\x65\x91\x0a\x5c\x6a\x7d\xd5\x3e\xbc\x56\x64\x69\x42\x62\x94\x85\x45\x48\x2a\xb8\x40\x4f\xca\x75\x05\xd2\x66\x07\xd7\x4b\xdf\x9d\x17\x90\x88\x86\x8d\x04\xa8\x56\xae\x09\xef\x69\xeb\x22\xa5\xaf\x3d\xa8\x48\x8a\x6f\xd9\xb7\xae\xe4\x1e\xfe\x27\x87\x59\xba\x10\xc5\xa6\x31\xd1\x41\x98\xe8\x2d\xec\xd0\x20\x26\x9a\xaa\x22\x61\xf0\xea\x20\x61\xe5\xda\x63\xe5\x2e\xd0\xcc\x7c\x27\x41\xe7\xa2\xce\x62\x83\x2b\x5c\x5c\xc8\x7a\xc2\x01\x05\x87\xa3\xf9\x38\xea\x84\x09\x48\x6b\xe0\x51\x6f\x0b\x9e\x11\x81\xe0\x15\x22\x8d\x60\xa6\xe2\xa3\x0e\x74\x3a\x0c\x4b\x33\x5c\x5a\x96\xa4\xe9\x77\x95\x60\x45\xd1\x85\x7a\x87\xfa\x21\xc7\x37\x92\x49\x1c\xdc\xdd\x7a\xe6\x93\x7e\xa8\xe7\xa7\x36\xe1\xd2\x6a\x8d\xfd\x7e\xda\xbd\xb2\xa7\x84\x66\xb1\x15\x85\xf3\x3e\xc3\x31\x8f\x22\xeb\x74\x8d\xde\x99\x19\xe7\x60\x6c\x48\x8c\x27\xfa\x2a\x47\x95\x17\x02\xcf\x3a\xf0\x03\x81\xf3\x6b\x27\xde\xd1\xaf\xfd\x77\x17\x49\x26\xf2\xff\xb0\x0e\xca\x4d\xcf\x79\xe6\xe9\x1f\x62\xf3\x22\x26\x3a\x65\xf7\x81\x92\x16\xd8\xb4\x4c\xa4\x0f\xe1\xf8\x10\x84\xff\x33\x84\xda\x3a\xef\x5d\x93\x8b\x75\x33\xad\xd0\xe9\x6c\x89\x47\xd8\x5f\xa2\x1c\xd7\x4a\x49\x63\x6c\x49\x51\x7f\x76\x2d\x34\xac\xb0\xeb\x07\x37\x77\x9e\x48\x3a\x6f\x05\x1e\x43\x70\x9b\x84\x8e\xba\x26\x8f\xb2\x70\x3e\x36\xa8\x8d\xc0\xd1\xa3\x44\x2f\xd7\xc1\xa7\x3c\xb2\x33\xcc\xe2\x28\xb4\x5c\x01\x19\x18\x4b\x34\xb2\xb0\xbf\x0c\x40\xc8\x5d\x82\x42\x9d\x98\x98\xe1\x28\xc2\x97\x1e\x2f\x5f\x82\xea\x37\x97\x81\xab\x30\x0c\x8e\xa9\x6c\xff\x20\xa0\x21\x28\x8c\x6d\x20\x24\xdc\x86\x41\x7d\xc4\x5f\xcc\x92\x75\x05\xe1\x97\x88\xf3\x5b\x13\x28\xdb\x1c\x27\x0f\x16\xf8\x72\x40\x7c\x47\x3f\x26\xf4\xa3\x50\x47\xc0\x82\xdf\xa5\xb8\x75\x68\xc2\x82\x66\x3d\x8f\xd2\xac\xe7\xd1\xba\x19\x7a\x3b\xb0\x1c\x75\xa2\x50\xb5\x8b\x31\x0f\x78\x9e\x38\xb6\xce\xbb\x3a\xfb\x30\x4b\x87\x59\x64\x0a\x55\xca\xc3\x01\xc7\x29\x92\xeb\xe0\x29\x52\x35\x4c\xd2\x51\xd2\xd1\xd2\xac\x76\x4c\xca\x1f\xd6\xb6\x4a\x8d\x6f\x1e\x66\xe9\x60\xe8\x38\x69\xb4\x5b\x35\x01\xc7\x7e\x82\xd0\x94\x45\x11\xe5\x69\x22\x18\x12\x1c\x3b\x61\x0b\x91\x1b\x27\xd7\x3b\x4a\x16\xe2\x70\x11\x22\xaf\x68\x0a\x9c\x0e\x3c\xf6\xe7\x34\xf7\x7a\x7b\x49\x9a\x29\x70\x58\xc4\x54\x03\x5f\x5f\x7a\xcb\x05\x57\x49\x9a\x9b\x6e\xb4\x04\x0a\x13\xa4\xa1\x1f\xd9\x33\xab\x3a\x2d\x4c\xbc\xe6\x6b\xa5\x67\x27\x60\x95\xc5\xa8\x98\x50\xac\x3d\x3b\x41\x4d\x43\x5d\xe2\x5e\x18\x25\xf9\x56\xbb\x21\x10\x79\xbd\x16\xf8\xce\xff\x55\x66\x6e\xba\x1b\x50\xf3\xea\xec\x98\x13\x42\x4f\xb8\x79\xbe\x86\xe3\x72\x5a\x88\x0a\x1a\xbe\xe9\x8b\x50\x4f\xae\x57\x27\xe6\x9b\xc2\x0e\x5e\x92\x56\x1d\xcb\x1f\xd4\xa2\x23\x8d\x28\x44\x59\x1c\x25\x26\x9f\x2a\xcf\x8e\xa0\xa4\x70\x5c\xec\x1e\x7f\xff\xc9\xb6\x75\x66\x8e\xf0\x50\x7b\x16\x8f\x3e\xb9\xea\x4b\xba\xbf\x94\xfc\x52\x83\x77\x32\xb1\xb3\x1d\xdd\x08\x1b\xfe\xe2\xa1\xd6\xc1\xdd\xcf\x36\x3c\x6f\x33\x72\x2d\x6d\x5c\x38\x85\x9d\x6c\x94\x83\x5c\x1e\x8b\xf6\x26\x4c\xb7\xf6\x65\x1a\x8e\x8e\xee\xda\x43\x01\x82\xbd\x38\x7c\x09\xf0\x0b\xa7\x5c\xe2\xcb\x0a\x97\xea\x82\xfc\xbc\xc8\xd2\x45\x25\x09\x9e\x00\x21\xcb\x4d\x25\xdc\x3b\x34\x6b\x59\x5e\xed\xcc\x2b\x5e\xe8\xfb\xb0\xd2\x72\xe3\x98\x3b\xfb\x61\xb6\x04\x36\x27\x9f\x82\xbd\x87\xef\x24\x37\x95\x88\xe2\x99\x56\xde\xe9\x9b\xee\xc8\x89\x6b\x63\x7f\x5e\x61\xde\xd9\x2b\x9e\x0d\x28\x4b\x43\x84\x13\xc8\x46\x8f\x8f\x89\x52\xee\x78\xe0\x39\x14\x46\x11\x48\x88\x10\x5e\xfd\x9c\x82\x9a\xeb\xa4\x3f\x73\xbe\x26\x6f\x68\xcd\xc7\x69\xe8\x0e\xbf\xd2\x71\x35\x88\xa7\xeb\x69\x42\x9f\x77\x4d\xb6\x14\xc6\xa3\xf2\xc7\xbd\x0a\xcf\x65\xb0\xc4\x2b\xf4\x80\x8e\x4f\x66\xa4\x7d\x80\xb8\xf5\x24\x4b\xa4\x9d\x0c\x36\x92\x79\xee\xdb\xd7\x1a\xf6\xc3\x6c\x10\x76\xcc\xa8\x88\x3a\x61\xdc\xa4\xd7\xc4\x8c\xf5\xa0\x1b\xd1\xfa\xe5\xc3\x1a\x81\xf3\xe9\x68\xa5\x37\xd2\xde\xb0\xf2\xca\x4d\x30\xce\xf9\x30\x3c\xca\xf2\x47\xca\x05\x54\x25\x22\x1e\x2e\x15\xb1\x05\x91\x00\x60\x68\xc5\x7d\xfb\x50\xa2\x11\x4d\x5d\xcb\xdb\x8c\x67\x03\xef\x85\xf2\xc3\x78\xa5\xb6\x37\x6d\x44\x2e\xd7\x44\x34\x58\x98\x5e\x26\x2c\x3b\x6a\x7e\x19\x45\x40\xe0\xc2\x64\xa5\xe8\x47\x49\xef\x31\xa2\xc9\xfa\xc8\xfa\x35\x84\xf9\x77\x18\xef\x7d\x97\xbb\xeb\x37\x80\x58\x40\xbe\x76\xcb\xfa\x48\x22\x33\xd1\x71\xf5\x4d\x6d\x6f\xc6\x3e\xd3\x76\x0d\xcc\x4f\x3e\xbd\x6a\xc3\x07\xbc\x17\x11\x14\xd3\xdf\xb0\x6b\x0d\x1f\xf9\x89\x8a\x5a\xcf\xf4\x81\xd6\x10\x13\xab\x36\x3c\x44\x6b\xf4\x9a\x5d\x1e\xac\xb4\xd4\x04\x30\x73\xf9\x41\x05\xb3\xf0\x4c\xcb\x8c\xb2\xd4\x4e\x8d\x14\x82\x59\x40\x6b\xe7\x7b\x63\x5f\x57\xb8\xcd\xb4\x8c\xf7\xd8\x98\x9b\xc4\xe4\x3b\x48\x15\x0a\xbc\x31\x2e\x24\x2a\x3f\x19\x81\xe9\xab\x0c\x49\x3a\x45\x11\xeb\xab\xa4\x7c\xf4\xbe\x7d\x2b\xf2\x97\x98\x2a\xff\x94\x2d\xc4\x0a\xdf\x75\x0d\x51\xd4\x28\xef\x9b\xcc\xf5\x99\x94\x78\xd8\x2f\xc8\x3b\x14\xc7\x2d\x85\x59\x64\xf2\xa6\x07\xd5\x5d\x21\xee\x02\x99\xb2\x46\x3d\xe9\x4d\x62\x39\x19\x0d\x92\xc8\x16\x1b\x91\x14\x4a\xe6\x84\x70\x17\x4a\x0b\xf0\xc0\x0d\x1b\x36\xa1\xc2\xf6\x13\xca\x4e\xd2\x70\x31\x0e\x13\x2b\x95\xa4\xd2\xa4\xd0\xea\x84\x93\x15\x35\x22\xd5\xb7\x2b\xff\x9e\x8a\x86\x55\xf8\x53\x67\x5b\x7b\x67\x1e\xe3\x29\x1c\xec\x3c\x21\xe4\x0f\x08\x5d\x7b\xc6\x7e\x82\x0a\x16\x94\x0f\x06\xcf\x75\x75\x42\xcc\x89\x80\xfd\x5f\xb5\x2f\x43\x67\x28\xca\x35\xd7\x4a\x8c\xdd\x9e\x42\x28\x67\xcf\x03\x9a\x36\x90\x49\x54\xab\xbf\x93\xb0\x9e\x56\x13\xf9\xcb\xd3\x12\xa0\xdf\xc2\xa7\xc8\x0d\x75\x45\x07\x26\xcc\x47\x99\x01\x77\x05\xcf\xf5\x8c\x69\xe0\xe7\x2f\xc0\xb6\xbf\x20\x00\x01\xee\x28\xa3\xca\x72\x66\x62\xa4\xbf\x32\x11\x31\x7d\xa0\x15\xe6\x53\xe5\x87\xc0\x76\x8a\x5a\x0a\xa2\x8a\xe3\xa4\x84\xfd\x47\x78\x74\x41\x45\x51\x85\xbb\x98\x64\xd1\x46\x5f\x14\x01\xe4\xa6\x55\x4f\x6d\xf4\x5b\x4f\xb4\xeb\x68\x10\xc3\x6c\x31\x6f\x52\xf1\xf3\x7a\x40\x65\x86\x9f\xd8\xcf\x57\xcf\xea\x57\xcb\x11\xf3\x44\x26\xb7\x44\x0f\xb0\x60\x3f\xa7\x7c\xe3\x2c\x5e\x95\x63\x80\x28\xf7\x89\xab\xd4\x13\xcb\x18\x31\x65\x5c\x0d\x36\xd6\xe3\xa7\x0f\xb4\x8a\xb0\xdb\x64\xd0\x51\xc3\x31\xbb\x82\xc6\x18\x9f\xb6\x4e\x43\x41\xf3\xa3\xcc\x84\xa3\x06\x69\x6c\x49\x6f\x5b\x07\xe7\x7d\xb7\x1e\x3a\xf2\x9e\x79\xe0\xc8\x04\xb1\x08\x21\x3e\xc3\x25\xd3\xc1\x0f\xaa\x2b\x74\x78\x9d\xb7\xab\xbc\x8e\x73\xbb\xf7\xb7\x32\x93\xa4\xcb\x89\x3a\x5f\x84\x95\x67\xc6\x1e\xd3\x77\xc6\x85\x1a\x45\xdf\xa4\x42\xcd\x59\x7e\x80\xe2\x03\x18\x2c\x40\x8f\xbc\x68\x86\xc5\x56\xef\x8e\x5e\xc7\x76\x01\x5c\xf7\x34\x4e\x20\x5a\x0f\x48\xf8\xe4\xa7\xec\x2e\x96\x7f\x27\x7c\xef\x69\x07\x56\x9b\x37\x3d\xd9\x06\x40\xf5\x5c\x09\x88\x18\xe9\xbd\x31\x21\x8c\x4f\x90\x35\x8a\x47\x99\x99\xe0\x60\x65\xa9\x30\xd2\xe1\x1f\x74\xa7\x1a\x5f\xf9\x92\x34\xba\x4e\xf2\x08\xc2\x16\x91\x01\x53\x35\x40\x42\x94\xdf\x24\x34\xcf\x42\x9a\x0d\x0c\xe2\x20\xa1\x84\x27\xe6\x10\x44\xee\x5a\x18\xf6\xfd\x91\xcc\xd8\xa6\xc7\xa3\xf6\xe3\x90\xc6\xff\x6f\xf6\xcb\x23\xe5\xfc\x73\xeb\xa4\x71\x68\x8e\xd9\x7a\x04\x6c\xef\x39\x38\x4a\x38\xda\xb3\x54\x53\xb9\x1d\x10\x5b\x34\x30\xbf\xaa\x41\xe8\x07\x10\xec\xe4\x8d\xf6\xd4\x30\xf4\xa8\x5d\x01\xff\x75\x4c\xde\x49\x33\x21\x3a\x73\xc8\xd0\x7d\xfb\xf4\x9a\x5a\xee\x2f\x8e\xc2\xac\x30\x59\xbc\xb2\x95\x94\xe4\x01\x39\xc2\xe4\xb7\x1c\x71\xe9\x27\x02\x21\x80\x82\xc7\x3a\x4d\x35\x4e\xb5\x3d\x73\xfc\x87\x3e\x06\x4d\x93\x6e\x0e\x58\x8c\x72\xdc\xd2\x6c\xd1\x11\x54\x39\x04\x59\x22\x53\x37\x42\xdf\x49\x30\xa0\xc2\xc4\x66\xd8\x4f\xcb\x9c\x84\x1a\xfe\xef\xd2\x88\xed\x36\xe0\x9e\x50\xac\xfc\x98\x10\xc7\x37\x83\x8d\x39\x74\x99\x34\x85\x71\x91\xf6\x4c\xd1\x37\x99\xcd\x3a\x64\xb2\x24\xe0\x29\x93\xea\x7c\xea\xfe\xd6\x70\xf4\xf2\xcb\xb1\x9a\x42\x65\xbb\xf7\xa5\xdc\xa3\x8c\x34\xac\x83\xd4\xcc\xb4\x32\x13\x8f\x3a\x45\x98\xc8\x8b\x41\xed\x13\x58\x08\xb9\xae\x1d\x2e\xe9\x9a\x4e\x99\x92\xc9\x49\xc7\x2e\x10\x86\x08\xb9\xa1\xf2\xe9\x42\x9a\x99\x4e\xe8\x78\x78\x9d\x40\xb3\x7f\x07\x97\xea\x49\x9f\xa3\xd8\xac\x3c\x9c\x28\x66\x17\x11\x54\x99\x70\x51\x88\x4d\x84\x58\x27\xf0\xd5\x85\x6f\x10\xb0\xc7\x24\x80\x40\xa0\xf0\xb5\xc9\x42\x68\x64\x0c\x9a\xb5\xb0\x2e\x31\x39\xe3\x05\x32\x1e\xe7\xed\xf9\x51\x6e\x88\x86\x63\x85\xbe\x31\xc9\x99\x64\x8a\x1d\xdc\x40\x24\x28\x11\xe4\x54\xf1\x07\xae\xe1\x53\x70\x6c\x50\xb7\x72\x48\x87\x72\x25\x35\xf7\xb4\xd5\x3d\xf9\x75\x12\x13\x42\xf0\x2d\x7f\xaa\x12\x98\xed\x99\x6e\x65\xa3\x3c\x8f\x42\x91\x92\x64\x72\x45\xa5\x73\xe0\x5c\x3c\x32\xdd\x5d\xd8\xee\xac\x9f\x88\x90\x7f\x47\x9b\xd2\x8c\xab\x48\x1f\xb4\xb2\xe3\xa1\x63\x53\x76\xa0\x06\x61\x99\x50\xfc\x8b\xc2\x53\x40\x0b\x70\xd7\xae\x26\xbc\xe2\x3f\x0f\x88\x78\xf0\xcd\xb1\x27\xb9\xdf\xbc\x4a\x12\x06\x77\xe1\x55\x85\xc7\x00\x36\xda\x85\x19\x87\x5c\xad\x64\x0b\x82\x75\x14\x69\x1b\x15\xb5\x99\x2f\xb4\xd2\x79\xd3\x8d\x1c\x89\x1f\x8c\xc7\x5d\x46\x26\xdc\xad\x44\xe8\x87\xca\x48\xa5\xbb\x14\x26\x1d\x65\xb8\x20\x81\xd1\x69\x97\xa6\xd7\xf0\x52\x45\x49\x57\x96\x5e\x69\x05\xde\x18\xfb\xba\xd1\x1b\x44\x10\xdb\x09\x07\xf3\x69\x37\x82\xe0\x32\xd1\x6e\xce\xea\x8d\xaf\x47\xaf\x64\xa9\x54\xdb\x1a\x7e\x28\x02\xdc\x25\x3a\xef\xa4\xbe\xad\x33\xca\xe6\x6d\x51\x09\x8e\xe9\xbe\x5d\x75\x1d\x0d\xa0\x09\x1e\x94\x29\x10\x25\x6c\xae\x08\xe0\x4c\x1f\x68\xc5\x69\x0a\x9a\x5b\xa7\x45\x7a\xf0\x2f\x44\x9d\x75\xd2\x81\xed\x54\x37\xbc\xe8\x77\xe0\xad\x49\x95\xc0\xae\x34\x42\x83\xb0\x30\x59\xa4\x09\xb2\x32\xac\x35\x94\x39\xe8\xaf\xdc\xb5\x7f\x41\xa5\xf7\xaa\x69\x94\x08\xd7\xbf\xfc\x17\x32\x52\xd6\x00\x19\xf0\x92\x94\xb7\x4d\xb4\x4f\x82\x09\x21\x14\x5d\x4f\x10\x5f\xb8\xaa\xe8\x2a\x0d\x84\xac\xd6\x58\xc8\xe7\x9d\x3c\x76\xd3\xb7\xfb\x7e\x6e\x7f\x49\xf0\x4f\x04\x85\xfd\xba\x2b\x07\xc6\x51\xc7\x24\x8e\xba\x1d\xe5\x93\x7f\x42\x70\x8a\xf7\xf1\x95\x10\x9c\xbe\xe7\xa2\xa9\xae\x59\x80\xc6\x01\xba\xad\x4e\x7c\x69\xdf\x3e\x6f\xe8\x1c\xc6\xe0\x6a\xcd\xbc\x65\x6b\xde\xc4\x91\x59\xd2\xf5\x53\x80\xc1\x04\x91\xe9\x13\x04\x71\x59\x06\xef\xb2\x3d\x11\xd8\x54\x3f\x0c\xc8\xca\xfc\xd0\xbe\x3b\x95\x2f\xb3\x7b\x59\x6e\x70\x54\x60\x8a\x17\xd3\x24\x1d\x44\x9d\xbe\xc9\x17\xc3\x95\x90\x36\xcc\x3b\xf8\x15\xb9\x21\x8a\xf6\x41\x9a\xa4\xc3\x34\x8e\x4c\x6e\xbd\xa4\xd3\x65\xa4\xcd\x51\xa3\xa8\xfb\x8b\xd3\x7b\x9f\xdd\x7b\x60\xff\x56\xc6\x6f\x4f\xa8\x07\xfc\xaf\x63\x6e\x9d\x36\xf6\x4c\xcb\xbf\x23\x98\xc0\x76\x9c\x6a\x13\x5d\xe4\xcf\xa9\x28\xd4\x4f\x33\x99\x4a\x17\x21\x57\x9c\x2e\x55\x75\xad\x19\xd6\x0e\xe7\xd3\x11\xca\x86\x30\xa8\xcd\x55\xaf\x53\xdd\xb0\x3d\x30\x1c\xcd\x3f\x0b\xfc\x34\xe5\x82\xe9\x1a\xa7\x6e\xa7\xb2\x1c\x3f\x9e\x10\x4b\x95\x92\xa8\x66\xf0\x1b\x8f\xf2\xbe\x7d\xad\xbe\xd5\xb4\x70\x86\xe3\x0c\x19\x0e\x56\x1b\x1a\x25\x7d\x13\xc6\x45\x1f\xd8\x5f\x54\x21\x64\xaa\x49\x6e\x28\xb7\x2e\xfa\x26\x2c\x32\x19\x0a\xd4\x1e\x50\xf9\x7b\x72\xed\x75\xc5\xc2\xac\x10\x10\x81\x00\x1d\xf1\xbc\x8a\x7a\x7c\xcc\xed\xe5\x30\xce\xb1\xb3\x60\xf1\x45\x32\x19\xaf\xe4\x7f\xb0\xc1\xa5\xf3\xcb\x2e\xe1\xbc\x5d\xe9\x4c\x94\x67\xd0\x16\xf8\x12\x13\x16\xfd\xa6\x07\x2c\x80\xab\x1d\x56\xe1\x27\xd6\xe7\x00\x8c\x7b\x85\x03\x8a\x30\xb3\x22\x5e\x34\x79\xf1\x0a\xeb\x06\xbc\x52\x89\xa5\xa6\x0f\xb4\xba\x06\x63\xbe\x0a\x4f\xd6\xe9\x83\x8d\xc7\x10\x6f\xe8\xe6\xd8\x73\x53\xf5\xd3\xa4\x1b\x36\x26\x9b\x78\xe5\x27\xcb\x4d\xdd\x9c\x4a\x62\x16\xd3\x34\x0f\x9b\x5c\xf7\x07\xa6\x12\x1f\xf5\x28\x5c\x36\x80\x57\xdb\x2a\xa5\x2b\x2b\x41\x19\x66\x61\x17\x5b\x57\x61\x3b\x44\x92\xfe\xce\x43\x07\xac\x93\xd4\x96\xe9\xec\x81\x25\x64\xb8\x9b\xb7\x72\xcd\x9e\x70\x94\x17\x59\x18\x93\x89\xd5\x23\xcd\xe7\xbb\x0e\x36\x9d\x84\x45\x99\x65\xf9\xba\x38\x66\x17\xe5\x9a\x4e\x9f\x05\x89\x3c\xe2\x9b\xb3\x37\x2c\x45\x03\x0a\x12\x82\x37\x40\x48\x75\x8c\xb0\x00\xe7\x11\x90\x21\x3a\xbc\xc5\x0c\x1e\x97\x89\xe7\x56\xc2\x59\xf9\x75\x04\x61\xf2\x2b\x94\x06\xdd\xae\x89\xcb\x67\x5b\x0b\x51\xe1\x66\x0f\xb4\xae\x64\xbf\xb3\xdc\x10\x4a\x7f\x61\x14\xc7\x5b\x6c\xc1\x19\xa5\x53\xf8\x3d\xbc\xb7\x0f\xd1\x62\x64\xe5\x75\x07\xc7\x74\x04\x28\x3f\xa3\xbc\x64\xde\xbc\x38\xb2\x63\x49\x32\x12\x84\x00\x0a\x11\x82\x5c\xd7\x8c\x97\x5b\x1a\x0f\xb5\xfd\x2a\x80\xc5\x6a\x58\x64\x88\x6c\x5f\x3d\xef\x9b\xee\xf6\x32\x8e\x75\x9a\x2a\xfe\x24\x7f\x07\xe1\xa1\x1b\x12\x73\xbe\xeb\x2c\x97\x7d\x03\x42\x64\x9e\x27\xf1\x04\xd4\xb4\x60\xde\x6e\xd2\x81\xec\xf4\xc3\xac\x67\xba\x56\x05\x1c\xaf\x6a\x0d\xaf\x47\xa9\xd3\xec\xb3\x2b\x77\x1a\xd5\xb7\x51\x95\x82\x47\x9c\x5a\xfd\xd4\x64\x3d\xaf\xdc\x93\x65\x3a\x43\xfd\x8e\x35\x5b\x3d\x96\x6b\x3a\xa2\x69\x99\x9b\x7d\xa2\xe1\xd8\xf4\x1e\x10\x63\xdc\xd6\x55\x5f\x0e\x3a\x6e\xab\x78\x5a\xa0\x63\xc2\xe1\x53\x78\x60\xa7\x22\x53\x06\xb8\x8e\x7d\xce\x95\x0a\x85\xd9\x15\x3f\xb5\x05\xf0\x19\xa0\xd7\xa4\x98\x2c\x18\x5c\x18\x08\x54\xa6\xef\xb3\x24\xd4\xdb\x63\x62\xd0\x11\xb1\x49\x34\x16\x5f\x0f\x76\x31\xb5\x66\x2f\x4a\xd2\x06\xa1\x23\x4e\xd0\x2e\x39\x41\x62\x20\xbd\x74\xe9\xf3\xd6\x7c\x3a\x7b\xb6\xd1\xb7\x63\x1f\xde\x20\x8e\x5b\x13\x47\x2f\x45\x19\x4f\x2d\x32\xf6\xfb\x1d\xfb\x27\xf0\x1f\x57\x2a\xc1\xf3\x33\x2d\xf3\xd2\x30\x75\x8a\x96\x28\x5b\x9e\x0e\xa8\x86\x79\x9a\x9c\x55\x38\x9f\xa7\xf1\x92\x9a\x23\x1d\xab\x68\x38\xc9\xb9\xf3\x13\x89\xd9\x60\x3e\x07\x74\x53\x7b\xd4\x76\x7d\x35\x95\xf1\xe5\xb4\xbc\xc8\xa2\x4e\x81\x70\x54\x21\xff\x3e\x69\xb0\x75\x18\xe2\x1d\x8e\x92\xdc\x74\x0a\x4c\x68\x4d\xe0\x96\xb4\x28\xb4\x31\x08\xd8\xb7\xaf\xb5\x12\x99\xb8\xbb\xc5\x17\xd4\xb6\xdb\xe6\x04\xea\x39\x67\x70\xf8\x1c\x35\xfe\x41\x85\x8a\x0a\xaf\xa9\x96\xe3\x1e\xf5\x7d\xbb\xee\xa3\xd6\x84\xb8\xd1\xaa\xf2\x6b\x29\x3b\xbe\x6d\xa7\x20\x1e\x59\xf3\x50\xc4\xff\xf4\xaf\xd9\x50\x03\x15\xa9\xf7\x6d\xd4\xe3\x75\x61\x75\xda\xea\x13\xde\x61\x75\x3e\x83\xa2\x0b\xd1\xc6\x6e\xe0\x2d\x82\x87\x6e\xae\xaa\xc7\xef\xf4\x23\xb3\x90\x63\x3e\x12\x65\xed\x0b\x72\x20\x10\x52\xdd\x45\xc8\x88\xc3\x0e\x00\x85\x5c\x8f\x89\x9a\xf8\x74\x9d\x16\x61\x66\x06\x61\xb6\x88\xf7\x03\x37\x72\x94\xa4\xe2\x61\x9f\x55\x0d\x61\x97\x1b\x0b\x2b\xb2\x34\x36\xa3\xc1\x16\x3c\xc4\x04\x87\x31\xcf\x4e\xc2\xbe\xec\x68\xfb\x4d\xb4\x79\x95\x9c\xe9\x99\xca\xeb\x9c\x3e\xd0\xca\x97\xad\x16\xa5\xf3\x57\x82\x8d\x55\x34\x68\xc3\xd1\x44\x1c\xa9\x04\x66\x7b\xf6\xb4\xc2\x6c\x00\x64\x89\x2e\x93\x3d\xb5\x48\x85\x5f\xa5\x79\xa1\x6b\xae\x45\x1a\x87\xa3\x5e\xbf\xe9\x73\xba\x8f\x69\x9c\x62\x6b\xdb\x77\xf1\xd6\x78\x60\x35\x5c\xc0\xec\x54\xf9\x85\x61\x12\x6e\x52\x9f\xe1\x7f\x22\xc7\x73\x93\x48\xed\x96\xd3\x6c\x31\x2f\x2c\x56\x14\x35\x7b\x24\x33\x42\x36\xa3\x62\x95\xe5\x47\xca\x7f\xac\xb2\x8a\x25\xd5\x93\xe3\x51\x67\xb1\x41\x74\x10\x7f\x32\x31\xb0\xe9\x91\xbe\xf3\xa3\x15\x48\xd4\x69\x81\x9d\xb4\x31\x3e\x84\xeb\x16\x75\x0b\x2a\x41\x3e\x89\x91\x73\x45\x2f\x78\xd8\xeb\xe9\x80\xe8\x37\x3e\xb2\x96\x56\xe7\xed\x29\xec\x5e\xa5\x7e\x75\x73\xd5\xcb\x03\x5e\x0a\x98\x5b\x04\x64\x8e\x58\xa2\xe6\x2a\x35\x20\x7f\xf6\xd0\xae\xed\x28\x2e\xa2\x32\xbd\x05\x0e\x10\xaf\x51\xda\x1d\x9c\xe7\xaa\x3d\x55\x93\x32\x08\x93\x97\xd3\x24\xa2\xe1\x45\x19\xc9\x92\x9b\xe0\x29\xc2\x46\x59\xd1\x6a\x35\x81\x4e\x84\xc8\xd5\x65\xce\x55\x42\x94\xc3\x87\x5b\xc3\xfe\x4a\x1e\x75\xa4\x2f\x2b\x44\x25\x08\xcb\x94\xb5\xa4\x66\xbc\x2a\x1f\x46\x65\x42\x4b\xf3\xc5\x1e\xfe\x22\xba\x4a\xf8\x52\xbf\x5d\x37\xe7\x9f\xf7\xc3\x45\x93\x0f\x4d\x98\x09\x53\xbd\xd0\xbf\x52\x95\xf3\xd4\xf8\x69\x9a\xed\x77\xc4\xea\x53\x44\xdb\x28\x75\x3a\x1c\xd2\xf7\xb0\x1d\xe4\x86\x59\x16\x2f\xb9\xa5\x7c\x71\x14\x99\x32\xf3\xb0\x66\xd0\xd1\x12\xcd\xe9\x74\xe5\xa5\x1a\x40\xf0\x6c\x2b\x1b\x25\xd2\x1a\x80\x19\xd9\xd2\xf6\x31\xa6\x14\x7f\xe0\xaf\xab\x68\xd9\xd9\xb9\x59\x1b\x50\x6d\x69\x10\x5f\xbe\xfd\x0d\xad\x9a\x94\x7b\x50\x5b\x73\xe5\x86\x52\xde\xd9\x86\x1b\xd0\xb9\x33\x21\x23\x63\xba\x2b\x48\x88\xd0\x8c\x90\xfe\xa7\xdc\x20\x92\xc2\x9e\x04\x18\x52\xae\x09\x47\x15\x25\x5d\x8b\xf6\xd6\x26\xad\x8a\x52\x36\x66\xea\x91\xed\xf3\x61\x32\x35\x89\xa1\x77\x07\x15\xf3\xf9\x38\x4d\x42\xcb\x83\xe3\xf4\xad\x09\x47\x1b\x2d\x23\xa1\x9f\xe0\x6f\xd0\xd6\x91\xc7\xaf\x86\x59\xd1\x1f\x65\xc0\xa2\xe2\xfb\xdc\xc6\x90\x97\xdc\x50\x63\x63\x21\xea\x00\xae\xee\x88\x89\x70\x72\x54\x5c\x4e\x9d\xe1\x42\x98\xcf\xdb\x8f\xd6\x61\x72\xfb\xd1\x72\xe3\x2a\x26\x3d\x93\x0e\x4c\xe9\xe4\x09\x97\x70\x9c\x02\xd4\xe3\x9e\x96\x2c\x8c\x8d\x1d\xcf\x43\x83\xe0\x1a\x41\x0a\x5f\x1f\x13\x9b\xc0\xef\x8b\xa5\xd0\x38\xb6\xae\x10\xf1\xa5\x5f\x99\xfd\xd2\x2f\xcf\x3c\xea\x8f\xe9\x75\x26\xaa\xfe\x2d\xbb\x01\xa4\x1f\x13\x50\x5f\x4a\x9a\x47\x32\x06\x08\x73\x88\x43\x27\x38\x1b\x58\x8f\x2d\xab\x5e\x9d\xec\x3a\xac\x1e\xce\xb2\x84\x0d\x70\x40\xb7\xa8\x9c\xd4\x68\x13\x71\x4e\x96\x3f\xd9\xf8\xe2\x21\xd9\xd6\x37\xec\x4e\xc2\x5a\xac\x73\xfd\xfa\x2f\x57\xd5\x81\xec\xcd\xf4\xdf\xb6\xdd\x16\xd8\x5c\x04\xc4\x08\x4e\xb7\xaf\xd2\x04\xdd\x47\xf8\x26\x4a\x19\xe7\x70\x00\x5f\xfd\x45\x60\x30\x1c\xf5\x87\xee\xb7\x95\xcf\xae\x52\xa5\x66\xdb\x7f\xd4\x2e\xcf\x0b\x3c\xfe\x8d\x32\x66\x59\x17\x66\x7a\xf4\x88\x04\xd3\x88\xe5\xd8\xb1\x4a\x23\x60\x3b\x5d\x54\x62\x3a\xfd\xd4\x74\x11\x95\x60\xe7\x5e\x84\xbb\x55\xe5\xd0\x0a\xc7\x8d\x5c\xe3\x6f\x63\x28\xeb\x3e\x15\xa5\x5e\x18\x29\xbb\x6c\xc3\x83\xf8\xde\x0d\x88\x8e\xfc\x5d\xea\x85\x44\x49\x54\x44\x61\x1c\xaf\x58\x33\x8a\x10\xef\x4d\x1a\xa3\xfd\xe9\x98\x28\xaa\x4e\xd2\xf0\xe6\xb2\xc3\x28\x6a\x72\x61\x97\x52\x6e\xdc\xc6\xce\xc2\xa1\xc9\x8d\xe9\x6e\x90\x89\x64\xda\xaf\x1a\xca\x9b\xd9\x56\x27\x0b\x5f\x5e\xe1\x0c\x10\x60\x3c\xb9\x76\x70\x9e\x30\xcb\xc2\xa4\xa7\x05\x4a\x37\xfe\xee\x68\x1c\x65\xaa\x1f\x85\x8b\xd7\x2a\xa5\xda\x32\x52\x8a\xa3\x5e\xbf\x70\x08\x74\xc7\x40\x51\xbe\x45\x25\x17\xd8\xe9\x60\xdc\x4b\x26\x19\x19\x3b\x4b\x27\xe4\x2b\x63\x96\xf1\xbf\x65\xed\xb8\x8e\x33\xbb\xee\x83\xf9\x4c\x9b\xca\xe3\xac\xa9\x78\x97\x9a\xca\xbd\x2c\x1a\x36\x7c\x13\xf5\xd7\x03\x1f\x80\xff\x7a\xc5\xa8\x5b\x25\xa2\xb0\x30\xd8\x37\xa2\x20\x83\x7d\xa3\x8c\xfd\x8d\xb9\xdd\xeb\x5b\xda\x1e\x1f\xff\xaf\xe1\x4e\xb5\xcc\x5e\xa7\x72\x5c\x94\x49\xad\x10\x15\xa9\x05\xaf\x34\xdc\x55\xa7\xb3\xae\x84\xb3\x94\x16\x5e\x85\x5c\x71\x3c\xf6\x63\xe5\x86\x32\x25\x13\xe7\x66\xb9\x6f\x32\x60\x4d\x11\x5c\x03\xa4\x0f\x95\xc7\xfd\xeb\xaf\x11\x3c\xf8\x52\x99\xf3\xeb\x6f\x76\xa3\x22\xcd\x22\xa1\x7d\x53\x42\x71\x3f\x8b\x73\xaf\x86\x4e\x7c\x7f\xab\x13\x87\xd0\xaa\xe0\x5d\x75\x9b\xeb\x0a\xb7\xe9\x33\xf2\x22\xcc\x8a\x58\x18\xff\x34\x65\x3e\x47\x4a\x58\xe7\xe8\xd5\xe5\x61\xd2\x9d\xf2\x61\x88\x84\xa2\x8a\x6d\xf4\x83\xc1\x52\x98\x10\xea\x35\x82\x9a\x0d\xd2\x22\xcd\xd2\x38\x6c\x10\xe5\xf2\x51\x04\x16\xca\x8a\xea\x2d\xe3\x62\xbc\xf2\x68\xb9\x03\x35\x0d\xf7\xf1\xda\x63\xab\x24\xc3\x48\x8a\x47\xd2\xdb\x44\x39\xe2\x0e\x1e\x42\x65\x75\xec\x18\xae\xea\x93\x95\x5f\x0f\x4a\x67\x7f\x05\xf1\x2b\x8c\xc0\x1a\x01\x61\x77\x58\x83\xab\x0d\xd0\x8d\x35\xb9\x67\x5a\xbd\x2c\x4c\xba\x96\xdc\x3e\x33\x89\x15\x77\x57\x15\x30\xfb\x0c\xc2\x1f\x19\xd0\x48\xfd\xe9\x09\x65\x79\xb3\x60\x0f\x64\x83\x30\x26\x60\xfa\x50\xc0\x49\xdd\x51\x28\xfa\x61\x61\xe7\xe5\xf0\x22\x1f\x5d\x25\x3e\xfa\xad\x36\xaf\x84\x1b\x39\x5e\x03\x18\x85\x62\x8b\xeb\x06\x2b\x7e\x89\x21\xac\xb4\xf8\xbd\x24\xdf\x66\x7f\x0e\x27\x73\x47\x9b\xe8\xdc\x3f\xcb\x3a\xd1\x0f\xc6\x7e\xfe\xfa\x1c\xa9\x56\x3e\x85\xd0\x1e\xd5\x3a\xc4\xfc\x08\x19\x6e\xd2\xa7\xec\x9e\xf9\xbb\xf6\xeb\x48\xf3\x92\x54\xad\xc5\xf7\xc2\x5f\x56\xbb\xac\xe5\x46\x5f\xb0\xaa\x1a\x4d\xeb\xc0\xe0\x31\x9b\x6d\x2f\x60\x78\x11\x0e\x0a\xc5\x93\x3b\x75\x8a\xc8\x0b\x71\x44\x4a\x9d\x3a\x2a\xc4\xf1\x66\x4d\x30\x9d\x98\x91\xad\xad\xbe\x2c\x2a\xb4\x9a\x2c\xda\xb5\x92\x9b\x0a\x12\x78\x6e\x77\x6b\x21\x56\xa9\x0c\x1d\x97\xb0\x67\x07\x1b\xf2\x06\x31\xab\x7e\x40\xb0\xbd\x85\x28\x31\xd9\x4a\x93\x4a\x8a\x97\x89\xcb\xed\x06\x8d\xc5\x4f\x6a\x07\x85\x66\xd8\x20\x88\xec\xfa\x98\x89\x7c\xd6\x6b\x2d\xda\x20\x5c\x34\x23\xd8\x65\x27\xc7\x50\xfe\x05\x15\x4d\x73\x4a\x21\x51\x31\xca\x7a\x2b\x62\xfa\xea\x94\xb9\x68\x22\x36\x2c\xfa\x79\x93\x66\xaa\xd7\xa8\x11\x07\xb8\x0a\xc0\x58\xb5\x99\x52\x5e\x46\x8a\xd1\xc0\x48\xa9\x1d\xc6\xfd\x22\x15\x49\xae\x11\x16\xfd\xef\xff\x84\xe6\x4a\x73\xf0\x6f\xf2\x44\x96\xfd\x49\x1d\xd5\xf2\xf5\xa3\xf9\x74\x94\xa0\x35\xe3\x0c\x9f\xa3\x50\x39\x47\xfb\x74\xdf\x9e\xd9\x86\xcf\xd2\x25\xac\x96\x1b\xd7\x69\x29\x4c\x12\x8a\x6e\x27\x3c\xfe\xc7\x84\x50\xfa\x38\x98\xa0\xe6\x35\x83\x79\x1d\xdb\x82\xcf\xf9\x29\x87\xea\x3f\x25\x84\x59\x3f\xcc\xb2\x08\x43\x69\x4a\xc2\x4d\xac\x77\xaf\x4f\x24\x2c\xc3\xfe\x0a\x0f\x5f\x1c\x27\xda\xb0\xe3\x75\x9b\xb2\x97\x45\x03\x5b\x2c\x04\x0c\x19\xb5\x20\xd5\x4a\x2d\x83\x52\xd5\x22\xa8\x13\xea\x32\x45\x21\xe8\xf3\x69\x69\x0c\xdd\xc1\x9e\x96\x9b\xda\xfc\x2e\x8e\x12\x33\xc9\xda\x57\x1a\x2d\x25\xed\x7b\x7a\x43\xb8\x26\x9c\x5c\xe5\x1f\xd5\xbe\x70\xc3\x49\x52\x5c\x26\x2f\x96\xce\x17\x2c\xa1\x21\x85\x6f\xfb\xf5\xb5\x08\xfe\x24\x91\xd1\x75\xd2\xcc\x31\x9d\x2a\x95\xb0\x6f\x0b\xaf\x55\x70\x93\xcf\xb4\x06\xe9\x32\x01\xe3\xef\x21\xe3\x75\x72\x6b\x9e\x9f\xb2\x3a\x18\xb3\x77\xc6\xb2\x9e\x58\x46\xd6\x86\x23\xcd\xc2\x17\x51\x1b\xfc\x88\xf6\xe0\xa2\xa1\xfd\x14\x94\x56\x70\xac\xb0\xd7\xef\xf0\xdc\xda\x71\xd7\xb4\x1b\x46\x3e\x0c\x81\xa5\x95\xf0\x54\x6e\x2a\x45\xde\x2f\x58\x31\x1d\xb7\x50\x4e\x51\xc3\xd5\x73\xde\x70\xa5\xae\x32\xc6\x91\x86\xa0\xc4\xeb\xf0\x15\xca\x6d\xe8\xf1\xba\x6b\x04\x46\x39\x46\xc8\xb3\xbc\x6f\xa2\xc5\xdc\x72\xdf\x03\x8d\x07\xde\x1a\x64\xbe\x90\x35\x50\x21\xf2\xea\x5e\xd9\xdf\xea\x9b\xb8\x0b\x7e\x3c\xac\x3a\x08\x42\x45\xbe\x1b\x31\x20\xe9\x8d\xba\x61\xf3\xb1\x3f\xce\x9b\xda\x7e\xbc\x6a\x21\x0e\x81\x69\x12\x89\xb7\xc0\x3f\xca\x99\xb1\xdf\x49\x5d\x13\x47\x9d\x28\x1d\xf1\x63\x63\x90\x06\xa1\xef\x0d\x52\x80\x3e\x4f\x0d\xb1\x95\x74\x94\xf4\xb6\xfb\x09\xdc\x35\xcf\xba\xfc\xc8\x87\x63\x82\x78\xf3\xf4\xd8\xeb\xac\xbb\x77\x94\xe8\x5f\xa4\xb3\xe0\x44\xea\xcb\x57\x8a\x75\xdf\xd4\xe6\x03\xdf\x29\xd2\x2d\x13\x35\x2d\x06\x72\x04\xbe\xf7\x8a\xb9\x6a\xd4\xb0\x7e\xd7\x9e\x6c\xad\xd2\xd7\xf8\xc5\x4e\x1a\xc7\xe1\x30\x17\x98\x81\x0a\x38\x79\x0a\xd9\xb3\x2c\x12\x71\x8e\x70\xdb\xdb\xda\xa4\xea\x6e\xa1\x21\x4e\x54\x18\x4e\xef\x0a\xd5\x07\xaf\xf0\xf0\xf2\x7c\xfe\x98\x27\x55\xfa\x2e\x73\x14\x0a\x85\x89\x60\xb5\x6c\xd9\x14\x1b\xf5\x4f\xc7\x3c\xc1\x14\xd0\x76\x10\x9d\x7d\x37\xdb\xb4\xd7\x1f\x6c\xfb\x8d\xd0\xb4\xbd\x33\xa6\x92\x24\x11\x94\x1d\x63\x81\x7d\xcf\x5c\x9b\x17\x99\xec\x1f\xf8\x39\xa0\xa5\xe5\x9a\x66\xa6\xfc\xe2\x95\x91\x19\xbc\xe7\xbd\xf1\xc3\xf6\x5d\xf9\x6c\xf2\x33\x93\x02\xc6\xa3\xdc\x56\x2b\x88\xd6\x58\x09\x3f\x6f\xa2\xc9\xa0\x54\x8a\xc4\xf2\xf6\x01\x6a\x17\xd8\xa7\x6f\xd9\xbf\x8d\xb0\xec\x14\x01\x03\x04\x45\x86\xb0\x08\x04\x64\xf0\xc1\xc7\x58\x40\xeb\x8f\xc7\x9e\xf0\xf5\x5e\xa5\x21\x6d\x59\xae\x93\x22\x8d\x0d\x86\x39\xbd\x53\x47\x61\x52\xae\x27\xe2\xfe\x24\xcc\x3a\xfd\x95\x26\xc1\x84\xae\x92\xba\xca\x59\x6a\x3f\xbe\xe9\x15\x9e\xc2\x24\x4c\x42\xa1\x32\xc0\x32\x49\x49\x05\xbb\xf7\x16\x77\x8a\xcf\x39\xa3\xd8\x8b\x4d\x92\xe0\x93\x14\xc0\xee\x83\xa6\xb3\x5c\x3b\xba\x57\xf1\x51\x73\xbb\x5b\x99\x09\x3b\x85\xf5\xb7\x5a\x12\xf2\x1d\x92\x7a\x92\xf0\xe5\x30\x53\x62\x47\xa5\x64\xa6\x14\x74\x52\x5a\x2c\x31\x49\x93\x70\x15\xc7\xc7\xbe\xdb\x71\x6b\x42\x43\x52\x7d\x42\xbf\x9f\x93\xda\xb9\x84\x1e\xfa\x31\xde\xfe\x84\xbd\x30\x4a\x1e\xf7\xba\xfe\x37\xc7\x3e\x94\xfb\x0d\xac\x13\x5e\xed\x8f\xac\x5a\x9e\xd3\x47\x2c\x77\x29\xbc\x0a\x2c\x1b\x0e\xd7\x0d\xdb\x4d\x25\xca\xfd\xfd\x9e\x28\xc5\x65\xf8\xd2\x7e\x92\x3f\x3b\x26\xfd\x4c\xb0\x6d\xe3\x0c\x89\x36\x2e\x6e\x7e\x5c\x19\xd6\xda\x3b\xc3\xc4\xc9\x56\x4f\xdc\x11\x1e\xfd\xcf\x76\x41\xe4\x9a\x76\xd3\x7c\x36\xca\x73\x13\xe7\x5b\x58\x30\xea\xdf\x8d\x69\xbe\x12\xa5\x11\xd7\x5c\x72\x92\x80\x3f\x67\xbd\xa1\x7f\x57\x27\x3d\x33\xcc\xd2\xa5\xa8\xab\xc9\x33\xac\xf1\xbb\x3c\x96\xf3\x2e\xb5\x5b\xf3\x22\x4b\xe3\xd8\xee\x15\xf4\xf3\xae\x11\x27\xcd\xb5\x89\x90\x3c\x8d\x27\xf8\xb1\x8f\x11\xcd\x8e\x57\x65\xca\x8c\xc5\x58\xd9\x05\x93\xec\x16\x3e\x57\x53\x5d\x6a\x53\x8c\xc2\x58\x62\x6b\x9e\x6f\xd1\xc1\x3d\x02\x06\x9c\xa4\xc8\x78\x18\xc5\x79\x2a\x35\x66\x27\x49\x42\x22\x26\xe5\x4a\x89\x0c\x44\x40\x39\xde\x59\x0a\x38\x5e\x7e\x39\x6c\x10\xaf\xe7\x5f\x4c\x7c\x30\xb7\x7b\x7f\xab\x30\x71\xec\xb0\x39\x70\x82\xdf\xa5\x0f\x82\x1c\x94\xf6\x32\x48\x75\x3d\xeb\xe2\xeb\xc1\xad\x9f\xa3\x61\x8c\x8f\xe9\x57\xae\x51\xa9\x3a\x8c\xc3\xac\x23\xcc\x2a\x4e\x27\xd9\x15\x97\xd6\x68\x1d\xfa\xa3\x5e\x5f\x23\x4b\x4c\x2a\xdc\xc3\x19\x91\x9b\xda\x63\x6e\x89\x0c\x25\xd8\xd2\x42\x1b\x51\x12\xbc\x46\x11\x7e\x67\x94\x75\x63\xed\x0c\x09\x0c\x01\x3f\xab\x98\x04\x2d\x73\xc7\x26\x2f\xb6\x4c\x90\xa6\xfa\x61\x7b\x11\x8c\x46\x73\xf2\x67\x10\x12\x63\x9a\x68\x38\xb2\x66\x05\x72\x6b\x11\xea\xb1\xe9\xf6\x74\x1b\x23\xa5\xde\x0c\xa2\x2e\xb9\x59\x7d\xc2\x15\xee\xb3\x41\x94\xf4\x0a\x59\x38\x54\x42\x6e\x33\x12\xf6\x76\x05\x68\x69\xb1\x02\x31\x87\xdc\x32\xbc\x48\xe3\xf8\x67\x1c\x2f\xf2\x20\xea\x0e\xd2\x2c\xb1\x3a\x00\xe5\x5f\x45\xf1\xe2\xdd\x31\x6d\xc3\x7b\x04\x87\xdd\xde\xf6\x55\xec\xcb\x95\xd4\xe3\xc0\x73\xad\x2c\x1c\x46\x5d\x09\x2c\x9c\x58\xe5\x41\x77\x5d\x09\x26\x0f\xcd\x5a\x42\x17\x39\x58\x88\xcf\x4e\xe0\x60\xc9\x8d\x3b\x58\x4b\x61\x6f\x64\x84\x0d\x6e\xfd\x8a\xad\x2d\x5e\xa9\x38\x89\xbd\x33\x2d\xf3\xd2\x4b\x13\xeb\x25\xcc\x4d\x72\xb3\xea\xf7\x64\x32\xca\x72\xf7\xc5\xc5\xa1\xa2\x32\xa1\xde\xb5\x7c\x93\x42\x8a\x6e\x31\xea\x4a\x90\xee\x8f\x42\x38\x1f\x36\x69\x42\xe7\x46\xd0\xf8\xca\x97\xc4\x68\x83\x88\x57\x1b\xab\xd5\xe3\xa7\x5d\x4a\xc0\xcd\x9c\x9a\xab\x2f\xd0\x5f\x18\xfb\x8e\x66\x3a\xff\x82\xb1\xcd\x9e\x1c\xa6\x4a\x82\xa0\xb1\xaf\xad\x7e\x40\xd9\x7d\x3f\x1d\x98\x7c\x0a\xaa\x5f\x0f\xa5\xba\x6c\xec\xdb\xb7\x7e\xc1\x55\xb1\x33\x63\x89\x93\x39\x0e\x17\x20\xb8\xdc\x30\xc0\x24\x29\xa2\x22\xb3\x82\x22\x2e\x8c\x3d\x89\x1f\x96\x9b\x4a\x95\x7b\x6e\x77\xeb\xc5\x51\x94\x14\xa3\x61\x2c\xc1\xab\x00\x70\xec\x99\xc2\x94\x19\xe2\x72\xbc\xf6\x8f\x02\xef\x19\xfc\x74\xd2\x42\x3a\x8a\x9b\xde\xf1\x60\x08\x7f\x42\xa7\x57\xdb\x81\x1b\x45\xaf\x66\x5b\x07\x77\x3f\xbf\x83\x13\x3b\xdb\x53\xc3\xa6\x38\x31\x6e\xfc\xf2\xdf\x73\xd2\x6f\xe5\x4b\x77\x52\x07\xd3\x07\x3c\xc5\xa9\x5b\x98\x8f\x71\xde\xe5\x97\x03\x8f\xbb\x95\x01\x33\x9d\x6f\xab\x19\xc5\xce\xc2\xc1\x50\x2b\x11\x75\x62\xae\x9e\x37\x38\x1f\x59\x69\x09\xbb\x58\xeb\x57\x48\x16\xaa\x61\xcf\xa0\xc2\x4e\xed\xaa\xc3\xe9\xbf\x47\xa8\xb7\x4e\x9a\x2c\xc4\x23\x8b\x48\x2e\x7f\x13\x31\x85\xc0\x46\xf1\x85\x44\x66\x4b\x53\x53\x0f\xc4\xf7\x1d\xf7\x85\xa8\xf0\xcc\xb2\x58\xe6\x07\xa4\xb1\xfa\x23\xfb\x8e\x10\xc7\x54\x4b\x0a\x87\x0f\xb7\xa2\xa4\x6b\x5e\x6a\x78\x10\xca\xf7\x03\x02\x53\x7e\x7f\x22\xf6\x0a\x47\x03\x29\x26\x09\x47\x07\x19\x9d\x46\x9b\x4e\xe8\x0d\x22\xe1\xca\x8d\x19\xc4\xe0\x9e\x50\x92\xf8\x72\x69\x34\xb2\xe4\xaa\x53\xba\x6c\xba\xf2\x01\x2c\xf2\x8f\x4d\x28\xaa\x59\x08\x56\x7f\x3c\x56\xd2\xe4\x0d\xaa\x11\x54\x73\xbb\x21\x55\x3b\xb9\xab\x03\x33\x0d\x4d\xa8\x52\x1d\xda\x06\xf2\xd0\x5c\xf9\x40\x38\xbf\xaf\x7b\x38\x4e\x96\x2e\x2c\xf8\xf6\x80\x30\xc6\xd8\x55\x56\xf6\x18\xcf\x16\x3c\x9f\x45\x45\x18\x25\x8f\xd9\x1f\x95\x84\x8c\x99\x66\xa0\x61\x8b\x4c\x50\xd2\x54\x0d\x7e\x88\x63\xff\xbe\x0d\x39\x39\x1a\xd3\x68\x89\x22\x9d\x7b\xd6\xf8\x29\xbe\x81\xa2\x9e\x7b\x63\xdf\x04\x38\x37\xf6\xe4\x94\x27\x88\xb9\x2d\xcd\x3a\xfd\x30\xeb\x46\xae\xba\x5d\x8b\x1d\xae\x45\x0c\xa4\x45\x7f\xaa\x7c\x3c\x60\x19\xce\xd8\xd3\x28\x2a\xc3\x6d\x62\x00\xbb\x68\x3f\x19\xa5\xb1\xf3\x15\x0f\x73\xf8\x70\x69\x79\x3a\x8b\x76\x5a\x5a\x64\x43\xc7\x7e\x1e\x1d\xb5\x0e\x7c\x69\x70\xcc\xa0\x30\x70\x86\xb8\x71\x74\x16\x43\x66\xe4\x60\x04\xd6\x10\x62\xe3\xa7\x6f\x62\x4d\xe5\x06\x6b\x27\x3f\x46\xb0\x94\x51\x62\xba\x23\xe1\x6a\x74\xf3\xb4\x6b\x34\xb2\xbc\x56\x31\x19\x87\xa6\x0f\x08\x72\xb0\xd1\x20\xb9\x40\x3f\x0e\x7c\x99\xf4\x85\x32\xd3\x1b\x89\xbe\x91\xef\x73\xa0\x2c\x2b\xd7\x55\xf5\xf3\xe9\x56\x6c\x16\x0a\xea\x62\xdd\x18\x53\x46\x72\x83\x56\x01\x02\x0a\x4a\x3c\x23\xb2\x8c\x63\x0f\x98\xab\x53\xd0\xdd\xaf\x7c\x35\xa6\xdb\xe4\x19\x7b\xfb\x11\xa2\xd1\x10\xd0\x7c\xc5\xb7\xa9\xce\x38\x30\x45\x3f\xed\xa6\x71\xda\x5b\x79\xe8\xe4\x4c\x65\xdb\x3c\xb7\xdf\x12\x43\x36\x3d\xe3\xeb\x29\x02\xb0\xdd\x26\xb6\xc3\xaa\xb6\xc8\xf4\x81\xd6\x7c\xfa\x92\x81\xb2\x84\x22\xed\xa8\x9e\x72\x97\xca\x0f\x17\x59\xa8\xc8\xe4\x51\x2f\x31\xdd\x6d\x84\xad\x46\x9b\x8e\x6a\xd2\xfb\x79\xc6\x6f\xd6\xd3\x17\xba\xc9\x21\x54\xb2\xe0\xbf\xee\xda\x67\x46\x85\xeb\x8e\xeb\x63\x77\xe2\x68\x38\x9f\x86\x19\x06\xa1\xdd\x33\xcd\xed\x76\x15\xa3\x09\xf3\x3e\xd1\x75\xe8\xa6\x12\x1d\xa3\x66\xf4\x83\x80\x68\xe2\x7f\x50\x11\x37\xb2\x22\xc3\xbd\x08\x30\xad\x86\xc7\x58\xdf\xa7\xb6\xf6\x7d\x3f\x33\x9c\x66\x06\x0d\x5b\x62\x81\x52\x73\x7a\x93\xf1\x07\x0d\xd2\xd1\x9c\xcf\x46\x89\xcc\x27\x22\x22\xf9\xbd\xc0\x77\xae\x7f\xaf\x0e\x2b\x92\x0e\x92\x68\x5e\x58\xff\x95\x2e\xb6\xe1\xa9\x63\x5d\x22\x54\x8c\x06\x69\x66\xdd\x1e\x2c\xd3\x56\xc2\x91\xde\x26\x76\x5c\x01\x6c\xaa\xf2\x25\x53\x7f\x47\x0b\xbb\xca\xdf\x57\x2e\x3f\xfb\x15\x60\xf2\xd6\x2d\x2c\x14\x66\xfc\xdb\xf8\xa2\x6a\x54\x6c\x8b\x90\x94\xcd\x9f\x45\x54\xf0\x57\x9f\x5a\x2d\x8d\x18\xf6\xcd\x6d\x6b\xc4\x10\x5e\x34\xdb\x65\xd8\x01\x7c\xc7\x6d\x61\x22\x73\xc4\x13\x8e\x1c\xe1\x63\x9c\x0f\xfc\xfa\xd3\x6d\x7f\xf2\x4f\x90\x64\xa0\xd4\x1e\xd4\x06\xda\x7d\xa0\x54\x36\xbe\x67\x95\x8e\x72\x6d\xbe\x20\xff\x3c\x4b\x1c\x87\x67\xeb\x1a\x3d\xbd\x38\x4d\x07\x91\xea\x28\x2a\x72\xc2\x4f\x6f\xfc\x2f\xb6\x60\xa9\xf9\x00\x95\xda\x62\x13\x66\x51\xd2\xdb\x66\x03\x25\x25\x83\xb2\xab\xa5\x73\xc4\x0d\x62\x0f\xb2\x0f\x0f\xd4\x26\xf4\x7b\xb1\x77\xae\x0a\x7e\x48\xfe\x87\xba\xcc\xe7\xeb\xea\x03\x36\x24\x35\x9a\xa4\xa3\x24\x77\x62\x4c\x6c\xff\x27\x48\x57\xa0\xf4\x49\x5b\xb8\xb1\x60\xdf\xb1\xd4\xde\xf0\xa4\x78\x4b\x47\x61\xe7\x45\x21\x3d\xf0\xb3\xa6\x6b\x35\xc5\xb7\x67\x5b\x99\x9d\x78\x31\x89\xe3\xdb\x01\xa6\xfb\x67\xf8\xfb\x72\x53\x79\x7a\xc8\xfb\xbd\xa4\xfc\x6b\x33\xf2\x20\xc8\xfa\xe5\xba\x6e\xa4\x32\xcc\x3a\x45\xd4\x69\x10\x5b\x01\x26\x70\x35\x96\xad\x59\x25\x53\x06\xef\xae\x94\x81\xed\x23\xec\xca\x72\x53\xd3\x84\x6c\xe5\x1d\x3f\x26\x8a\x68\x7d\xcc\xe4\xf6\xe3\x09\xac\x5c\x1a\x76\x77\x7a\x2b\xfd\x7d\xbb\xe5\xb5\xf0\x4d\x75\x83\x53\x01\xa5\x9c\xc7\x24\xa4\x72\xc1\xcb\x8c\x57\xb6\xb5\x2b\xa2\x2d\x3d\xfb\x6a\x44\x2d\x92\xab\xaa\x22\x5e\x8f\xdf\x97\x9e\x0c\x0e\xca\x4f\xc1\x68\xad\x1b\xcf\xc6\x48\xd8\xbd\x67\x26\xd4\xc7\x3e\xe5\x6b\x04\x69\x92\x47\x76\xba\x4c\x55\x2d\x10\xb3\xa2\x16\x2a\xd7\x35\x23\x8e\xcf\xb6\x16\xd2\xd8\xc6\x9a\xac\x94\xf5\x1a\x1e\x46\x6e\x2a\x60\xe7\xc3\x87\x5b\xfd\x34\x16\x0b\xea\xd8\x46\x66\x66\xa4\xf8\x7b\x9d\x20\xc1\xaf\x56\x5e\xa8\x0d\x0f\x4c\xc7\xc1\xf6\x04\x2c\x11\xf8\xf4\x77\xad\x92\x8b\x39\x59\x31\xfb\x4b\x8e\x40\xed\x02\x4f\x2e\x5c\x08\x76\x32\x0e\x65\xd1\xec\xb0\xe9\x15\x61\x37\x49\xa6\xb9\x5c\x50\x25\xed\x2c\x17\x48\xdb\x21\x0d\xc7\x63\x83\x42\xad\xb2\xd9\x7b\x32\x04\x98\x43\x20\xd5\xde\x19\x6f\xfe\x9c\x8b\xdd\x79\x3b\x0d\x63\xf3\x49\x5f\xf3\xde\xd1\x6e\x1c\x9a\xf5\xcc\x44\x7e\xd8\xf9\xac\xb5\x87\x70\xa0\x82\x89\x16\xe9\x5c\xe6\x45\x5e\xe3\xe3\xfc\x8f\x48\xb3\xf2\x9b\xa0\xb8\xc2\x61\xbb\x62\x67\xa6\xb0\x67\xef\xe3\xdb\xaa\x82\xa5\xff\x52\x5b\x2d\x0c\x05\x07\xe0\x91\x55\x4f\x9e\xf3\x60\x3c\x39\x34\xce\xca\xff\x20\x86\x94\x0f\x99\x64\x43\xb1\xdb\x17\xef\xff\x16\xe0\x26\x9a\x0a\xd9\xf7\x82\xe2\xf3\x47\xf5\xd8\x93\x48\xbb\xbd\x8e\x07\x7b\xaf\x87\x9f\xb9\x46\x49\xb2\x92\x26\x06\xe5\x0e\x27\x5d\xed\xc9\xed\x2f\x91\xb0\xdf\x54\xbb\xfc\xfe\x2a\xd7\x57\x03\x59\x2b\x83\xc6\x74\xc9\x64\x2a\x2c\x85\x18\xe6\x18\xfe\x9e\x23\xf9\xf7\xe5\xfc\x3b\x84\x0e\x34\xb9\x0d\x2c\x6c\x24\x39\x7d\x40\x47\x7a\x49\xb3\xfa\x9f\x54\x08\x60\xe6\xca\xcc\x79\xb9\x31\xa1\x46\x5b\xbe\x08\x95\xa9\xf5\x7f\x7c\x3e\x8c\xe3\x34\x4d\xb4\xc0\x27\xe4\xb6\x81\x0f\x59\x4f\x56\x0e\x60\x69\x47\xa3\x2e\x40\xdc\xe8\x5f\x23\x4e\x84\xd3\xb8\x6e\xb7\xab\xaa\x2a\x68\x8c\xb1\x9c\xa5\x49\xcf\xfa\x0f\xb4\xd4\xb7\xaf\xfa\x9f\x3a\x47\x99\xd7\x96\x55\x57\xa2\xf8\xb5\xff\x00\x49\x8b\xb6\x55\x7c\x11\x69\xb0\x62\x9a\x13\xf4\xf6\x8c\x83\x24\xc7\x7e\xa4\x92\x26\x1d\xdc\xdd\x1a\x84\x79\x6e\x1a\x9e\x12\xec\x82\x75\xc9\x0a\xd6\xf4\x7c\xc8\x8b\x26\x44\x55\xcc\x35\x66\xcb\x3f\x2c\x37\xd4\x25\x8b\xf2\x38\x4c\xba\xa2\x3b\x87\xe3\x08\x6a\x76\x6d\x51\x12\x35\xc8\x69\x1a\x9f\xca\xac\xbc\x7e\xd1\x40\x1c\x03\xd3\x7f\x0f\x31\x91\xdc\x04\x44\x16\x92\x85\x89\x42\x41\x5c\xb9\x79\xd3\x2a\xd5\xb5\x37\x11\x0e\x37\x4a\x56\xb6\xf9\x31\xb3\xc7\x09\x6e\x2d\x4a\x30\x4a\x6a\xcd\x7d\x5d\xaa\xbf\x8b\x7c\xa9\xb8\x16\x1b\x60\x28\x10\xd2\x8f\xd3\x85\xc3\x61\x1c\x49\xf0\xaf\x70\x9f\xf2\x27\x15\x73\x41\xce\xfc\x46\x9d\xc8\xfb\x42\x94\x94\xe9\x91\xe1\x44\x6d\x8d\x12\xb5\xb5\x31\x6b\xdf\xa6\x4b\x51\x6e\x32\x16\x2e\xc0\x10\x99\x5c\xd7\x7c\xc0\x7e\x97\x67\x70\xff\x43\xd4\x63\xbd\xb4\xa2\x17\x70\x7a\x71\x64\xf2\x22\xb7\x1c\x41\x58\x93\x13\x01\x45\x71\x77\x03\x1a\x88\x92\x2e\x3d\x5a\x57\x1f\x06\xbe\x4b\xbf\x05\x82\x17\x32\x37\x44\xa2\x37\xcf\x4e\x03\x75\x03\x13\x79\x9b\x07\x1d\x6e\x07\xfc\x14\xb9\x09\xb3\x4e\xff\x11\x22\xcb\xb8\x6f\x17\x65\x02\x1b\x0b\x4f\x77\x91\xe5\xdd\xd1\x8c\x45\x82\xf2\x3a\xfc\x3c\xfc\x19\x06\xe9\x9d\x9c\xcc\xec\x73\x5a\x88\xb3\x6c\xbc\x33\xeb\x47\xad\x4b\x51\x41\x83\xba\x75\x9c\x8f\x4d\xe2\x71\x16\x30\x39\xbf\x45\x4c\xa2\xbf\x55\x49\x64\xad\x92\x1e\x26\x99\xa5\xb4\xec\x90\x62\xe5\xf7\x92\x9b\x60\x47\x64\xc1\x83\x7f\xb3\x95\xfc\x95\xf2\x19\x2c\x44\xe0\x9d\xbf\x6c\xdd\x20\x62\x86\x9d\x16\xab\x0d\xef\x71\x15\x3b\x14\x49\x5e\x69\x6f\xf7\xc8\x46\xd9\xd1\x6e\x1c\x78\x4e\x52\xba\x75\xeb\x87\x10\x3f\xaf\xdb\xed\x88\x7e\xc6\x8e\x55\xc2\x88\x3c\x02\x54\xb7\xc3\xf6\x96\x2e\x91\x96\xf7\x79\x65\x27\x1a\xfb\xea\xef\x4d\x96\xcc\xfa\x6f\x83\xc6\xe1\xc3\x92\x79\x6c\x6e\xdb\x58\x49\xc4\x06\x83\x32\x41\x71\x94\x4e\x5f\x9e\x76\x32\x0c\x1c\xab\x3d\xb9\xea\x66\x55\x7f\xf5\xb3\x76\x3a\x73\x7d\xdb\x2a\x45\xbb\xf7\x18\x02\xf2\x2e\x3c\x9b\x1b\xdf\x2c\x5d\x2e\x82\xb9\xfb\x41\x69\xb7\x80\x49\xbe\x1e\x78\x88\xdc\x7f\xf5\xcc\xaa\xf5\x99\x4a\x05\x5d\xda\x56\xbc\xdd\xc7\xda\x8d\xaf\x7c\x49\xec\xef\x51\x72\x01\x79\x34\x18\xc6\xd1\x82\xf8\xc4\x67\x1d\xc1\x6c\x83\x88\x67\x7d\x1e\x1a\x26\x3d\x13\xab\x1b\xc3\xc7\x8b\xaa\x17\xd2\x9a\x1f\xda\x8d\xa8\x2e\x4d\x7d\xe9\xc2\xa8\x18\x65\x66\x1b\xf5\x8d\xbe\x4b\xf2\x96\x98\xa7\x67\x92\x26\x1c\xd0\x47\xf1\xa6\xb4\xb6\x50\xfe\x61\x7b\xe6\xfe\xdf\x5f\x40\x65\x56\x83\x5f\x07\x5b\xcb\x4c\xa8\x65\x33\x9c\x91\xbb\x38\x23\x72\x53\x49\xdc\x0f\xcd\x62\xc0\x3f\x2f\xd2\x54\x54\xae\xb1\x6e\xd7\xb8\xaa\x73\x6d\x02\xd0\x90\xa5\x82\x4c\x53\x2e\x00\xfa\xc9\x6a\x90\xab\xc1\xe3\x0b\xa3\xbc\xd8\x36\x41\x0a\x5a\x7e\x65\xbb\x3b\x67\x3f\xd5\xa6\xd4\xe0\xb6\x5d\x17\x97\x0a\x6c\x18\x55\x71\xc0\xa0\x3d\x7b\x5c\x18\xf2\xa8\xc7\xa3\x0f\xb6\xd2\x70\xce\xda\xc4\x70\x9c\xb7\x3e\xef\x62\xcb\xa3\x06\x7a\xcc\x3e\x07\x7c\xec\xcf\xec\x66\x91\x7f\x27\xe3\x35\xe8\xa4\x4d\x3a\x7c\x3f\xe3\xc0\xf7\x5a\xc0\x68\xfa\xaa\x66\x81\x05\x64\xa6\x89\x90\x30\x51\x80\xa9\x88\xce\xb3\x75\xe1\x52\x91\xa5\xc3\xa8\x13\x26\xe0\xa5\x57\xb9\x3d\x9a\x5e\x7b\xd7\x8f\x13\xc4\xb1\xe9\xb9\xaa\xbb\x92\x79\xfa\xda\xd0\x65\x2a\xb9\xfd\x8c\x6a\x30\x5d\x8c\x4f\xe0\x17\x20\x9d\xe3\x78\x9e\xcb\xcf\x41\x34\xf3\x9e\x83\xcd\x2c\x87\x89\x63\x0c\xc4\xee\x46\xf9\x53\x55\xc8\xec\x2e\x80\x97\xdd\xd6\xf6\x35\xcc\xb0\xd3\x49\xcb\xe3\x95\xf7\x9b\x3e\xad\xbb\x89\x1c\x40\xe8\x88\xec\x0b\x57\xff\x5c\x25\xd8\x9a\x6e\x8d\x92\xcc\x58\xe7\x6f\x9d\xad\x0a\x69\x79\x15\xf0\x73\x9c\xf1\x31\xfb\x7e\x98\x84\xf1\xca\xcb\x68\x69\xe0\xac\x08\x42\x5d\x6e\x28\x5d\xfe\x79\xe0\x0b\x3d\x3f\x77\x07\x6a\x10\x66\x51\x98\x10\x29\x96\x90\x1e\xcb\x4d\xc0\xf4\xea\x1d\x23\x7d\x1a\xad\x92\x95\x7f\x50\xcb\x67\xbe\xd7\x96\x98\x25\x93\x3d\x3a\x61\x81\x7d\x49\xee\x8d\xc0\xc3\x88\xfe\x7b\x44\xf8\xd8\xe5\xc7\x51\xd5\x51\xd9\x8a\xd2\x2d\xe0\x25\xbc\x41\xc4\xd2\xaf\xc3\xb9\x23\x9d\xba\x0f\xcb\x29\x00\x7a\x29\x17\x29\x9c\xbe\x5c\x71\x2d\x29\x6e\x84\x71\x94\x69\x69\x99\xd0\x9a\x6c\x49\x50\x9b\xd8\xe1\x22\x3f\x8c\xbd\xab\x5a\xc4\x3e\x44\x5b\xc8\xc2\xde\x00\x75\x0c\x0f\xfb\x38\x69\xbf\x9b\x4e\xe2\x4c\x36\x23\xa2\xbc\xbf\x03\x7f\x19\x73\xa9\x42\x06\xef\x50\x6e\x8e\xc5\xfe\xff\x09\x26\x08\xf7\x9c\x00\xe7\x25\x6b\x05\x1c\x91\xd8\x5e\xf5\xf2\xc7\x6c\xfb\x41\x10\x13\x78\x5c\x9d\xa0\xaf\x11\x2e\x09\xe3\x34\xe9\x59\xbd\x4f\xcd\xbe\x1b\x8e\x34\x09\xb5\x70\x98\xdf\x23\xd4\xe8\xbb\x56\x5b\x90\x11\x92\x1c\xf4\x77\x71\x96\xce\x5b\x7f\x8c\xe6\xfe\x37\xb0\x4b\x55\xea\x6f\x43\xc7\xd1\xea\x4a\xfc\xf5\x86\x47\x8a\x41\xe6\x54\xae\x57\x2b\x09\xce\x6c\x2b\x1d\x15\x0d\x4a\xdb\xec\x27\xa9\x1b\xf7\x35\x7e\x0b\xbd\xee\x47\x49\x6f\x87\x87\x76\x35\x30\xec\xa1\x64\xbb\x36\x26\x52\xa6\x73\xeb\x3b\x50\x94\x3c\x3b\xc1\xce\x8f\x03\xee\x7c\x97\x8b\x53\xdf\xe3\xb8\xe4\x02\x89\xd9\xbf\x4d\x24\xdf\xe9\xb2\x40\x85\xb1\x01\x4f\x8a\xd1\x94\x3b\x82\xc9\x87\x9d\xc2\xb6\xd8\xcb\xa7\x50\x7f\x68\x9f\x4f\x6e\xec\xb6\x20\x6c\xa0\xa3\xc7\x27\x98\x75\x9a\x85\x9d\xd8\x34\x58\x16\x6d\x82\x17\xf7\x54\xc0\xb4\x31\x43\x93\x6f\xf5\xa9\xe4\x05\x1c\x21\xd4\x7e\xee\x07\xa4\x23\x21\xa8\x28\xa5\x4f\xb0\x06\x4c\x0b\x21\xe5\x6a\xe8\x74\x44\x0d\x75\xb8\xed\x98\x10\xcc\xf8\x26\xf3\x62\xde\x24\x23\xd2\x37\x61\x57\xbb\x31\xae\xed\xee\xc7\xb3\x88\xf1\x6c\x68\xba\x5d\x3f\xea\xe3\x88\x74\xfd\x60\xf7\xc5\x8a\x48\xd9\x33\xf6\xcb\x36\xa9\xd0\x75\x99\xda\x71\x82\x5f\xc5\x06\xb9\x51\xe9\xfb\x1c\xdc\xdd\x8a\xa3\x0d\x47\x9b\x88\x77\x4f\x92\xb7\x5c\x32\x9d\x26\x4d\x3b\x8a\xf0\x8a\xf3\xfa\x5f\x3c\x24\x96\xeb\x01\x0d\xb1\x1a\xab\xeb\xce\x9c\xa7\x9b\xac\x73\x91\xeb\xb6\xef\x2a\xe5\x26\x89\xd2\x2c\x2a\x56\x1a\x93\x65\x12\x4f\x41\x77\xb9\xae\xf0\x39\x8c\xe2\x58\xe4\x7a\x94\x94\xb7\xfc\xfb\x5a\xd6\x78\xd4\xa1\x1a\x92\xc2\x36\xfe\x50\xab\x7a\x80\xe8\x49\xa7\x81\x1a\x4e\xb0\xf7\x2a\x95\x75\x3e\x26\x8a\x13\xab\xc8\xb6\xd3\xee\x0d\x64\xd4\x4d\x5b\xf3\x81\x0d\x97\x3a\x3b\xc0\xac\xa8\x4e\xa3\x62\xd3\x60\x81\xdf\xa9\x55\xbb\xdf\x61\xd6\xde\xa2\xe9\xc9\x6b\x63\x92\xa0\xbf\xc3\xd4\x2d\x50\x7d\x51\x19\x0a\x42\xc6\x6c\x42\x60\xe5\x2c\x84\xd3\xe6\x5d\x07\xf2\x54\xa9\x83\xab\xd6\x6c\xb6\x95\x98\xa8\xe8\x97\x69\x3d\x15\x63\xcb\x87\xc1\x41\x3c\x49\x5d\xc2\xd7\xc7\x3e\x96\x0e\xbb\xe6\xc5\x51\x58\x98\x78\x65\xca\xeb\x91\xad\xe1\x1c\x31\xca\x58\xd9\x61\xec\xb7\xd0\x79\xfb\x3a\x72\x4d\xcb\x77\xdf\x09\x73\x21\xd7\x74\x12\x60\x5e\x0e\xac\xe2\xc0\x34\xe4\xdc\x20\x75\x0b\x73\x07\x74\x12\x56\x41\x38\x19\xe1\x29\xee\xd4\x4d\x46\xcc\x8f\xba\x3d\x53\x60\x64\x83\x50\x9b\xfb\x1d\x6a\xf3\x31\xaa\x3b\xbe\x60\xd7\x8a\xbb\x88\xda\x27\xb7\x1f\x83\x43\x7c\x77\x02\x60\x3c\x4a\x0a\x93\x59\x64\xfe\x8c\x6b\x13\xfb\x21\x8e\xad\xab\x04\xa8\x41\x8d\x56\xfe\x83\xfa\x62\xdd\xb4\xdc\xd9\x56\xac\x0e\xa0\x92\xa3\xf4\x0d\xaf\xe1\x3d\x63\x20\x4f\x46\x1d\x60\xa8\xde\x24\xea\x86\x9f\xf2\xf4\xcd\xdb\x36\xb8\x40\xcc\x0d\xa9\x71\xfc\xd0\x55\xdb\xf9\x47\x1c\x29\xd4\x3b\xf2\x67\xad\x63\x84\x87\xdd\xd4\x26\xac\xce\x45\x42\x1f\x98\x30\x8b\x23\x93\x01\x7d\x80\x33\x24\x3d\x79\xf8\x72\xf0\xfa\xe9\xb0\x04\xf1\xe5\x02\x53\x88\x02\xcb\x6d\x7c\xac\x03\xdb\xcc\xed\x96\x03\xfc\x06\x8f\x44\x0a\x57\xa8\xa8\x5b\x06\xc4\x96\xb1\x55\x06\xa1\xa5\x44\x13\x50\xc4\xfc\xc7\xde\x59\xf5\x8d\xc9\xb6\x4c\x9a\x60\xe2\x24\x29\xbf\x2b\x5b\x4f\x1c\x6d\xfb\xbd\x67\xd7\xef\xd4\x49\x96\x71\x11\xc6\xc5\xff\xe5\xe3\x6a\xfc\xaf\xc1\xe6\xbc\x29\x0a\x93\xed\xa0\xf9\xa6\x3f\xf0\x18\xbc\xff\xe6\x73\x18\xef\xc6\x59\x6e\x41\xd1\xc6\x1a\x86\x6f\xb6\xec\xf1\xd7\x69\xd5\xf2\xa1\xb0\x63\x76\xae\x7a\xb8\xfe\x14\x75\x8b\x77\xad\xda\x05\x52\x2a\x05\xcf\xec\x9a\x45\xf3\xc8\x1d\x75\x00\x9f\x9a\xd9\x17\x9d\x84\x4b\x2f\xed\x76\x4d\x2e\xea\x19\x28\xb1\x9d\xa6\xa9\xb1\xd3\x15\xf3\xbb\x67\x4f\xab\x37\x2a\xbf\x9a\x35\xbf\xca\xb9\xe0\x9f\x67\xcd\x01\x88\xf2\x51\xd2\x0d\x57\x34\xb9\x86\x75\x01\x25\x3f\xce\xe8\xfb\x5c\x37\xfa\xe6\xd8\x2b\x3f\xe7\xa3\xf9\xbc\x08\x13\x8c\x85\x6f\x7b\x18\xe0\xdb\xbe\x02\xd4\xc5\x5f\x81\x03\x47\x94\x06\x0e\x5b\xf9\x0f\xfb\x86\x55\x96\xc9\x4b\x3f\x9d\xab\x61\xdd\x7c\xb6\x15\x0e\x4c\x56\xe6\x69\xd6\x2f\x8a\xae\x13\x9e\x51\x45\x9e\xbc\x5f\x4c\xbb\x2b\x8f\xb8\xa1\xac\x3b\x7f\x0d\xbb\x1f\xdb\xea\x81\x5d\x0d\xe4\x2f\xb7\x99\xd9\x0d\xa4\xdb\x38\x22\x78\x9d\xc8\x93\x76\xda\xa9\x59\x37\x26\x54\xbe\x33\x27\x8d\xed\x40\x2f\x32\x79\xf2\xb0\x46\x40\x99\x59\xa5\x4b\x26\xb3\xb1\xaf\xa6\xaf\x34\x93\x7e\x89\x78\xf2\xa7\xec\x16\x53\x09\xc2\x8d\x76\x7a\xcf\x1e\x9b\x30\x0c\xa3\x2c\xec\x00\x5e\xc5\x53\x4f\x72\x4d\x4c\x64\x42\x80\x06\xbe\x7c\x87\x97\xf4\xd8\x49\xca\xe0\xa4\xf4\x06\xe2\x49\x1d\x16\xf3\x4c\x91\x92\x33\x20\xa0\xc0\x2e\x94\x6b\xd8\x3a\x95\xef\x2b\x9f\x49\xc9\x29\x1f\x46\xc6\x6f\xc5\xb3\x9b\x14\x27\x9e\x83\xdb\x82\x55\x7d\x8d\xa4\xad\x8e\x12\x54\x6c\xc1\x24\x89\x11\x8d\x49\xd8\x9f\xdf\xb5\x3f\x29\xd7\x95\xc3\x70\x70\x77\xab\x1b\x0e\xc2\x1e\x50\x9c\x4a\x4f\xeb\x5b\x71\x93\x23\x06\x9d\xfe\x8a\x1d\x35\x87\xbb\xbc\x1a\x78\x28\xff\x19\x72\xa3\x57\x89\xd1\xf8\x0c\xad\x73\x94\xe4\x43\xd3\x29\x50\xd5\x52\xbd\x15\x5f\x86\x38\x49\x31\x73\x36\x2a\xa3\xc9\x1d\x64\x2c\x45\x73\x59\x44\x7e\x99\x97\x5a\x64\xe9\x80\x60\xbd\x56\xbe\xb8\xf5\x7b\xd8\x6a\xda\x3f\x65\xe8\xc8\x55\x12\x68\x84\xa6\xe7\xfa\xbd\x4a\xc0\xb1\x67\xba\x35\x4c\xe3\xc8\x8a\xf3\xe2\x97\x61\x1a\x44\x04\x41\x6e\x2a\x6d\x9e\xbd\x33\xad\x7c\x31\xa2\xb9\xeb\xdb\x44\xc0\x76\x9b\xe2\xb2\x4e\xdf\x84\xc3\x29\x0f\x68\x86\xf9\x51\x7e\xa7\x72\xeb\xb9\xe2\x9b\x2f\xc4\x51\xd1\x4f\xe5\xa9\x5d\x53\xf2\x23\x0e\xc6\xd6\xed\x5f\x53\x96\x7a\x0f\x4a\x3d\xe1\x8a\x34\x45\xb8\x68\xca\xb3\x66\x87\xcb\x91\xd5\x8a\x40\x16\x50\xfe\x80\x49\xc2\x97\x6c\x6d\x6f\xc4\x09\x4c\x1f\x40\x42\xfe\xa2\x05\x68\x0a\x2d\x85\x62\xdd\xfd\x2f\xde\xa3\x6d\x19\x0e\xca\xd8\x62\x5b\xf9\x2c\xb0\x24\x3b\xdb\xbe\x00\x76\x1f\x0d\x6e\xd1\x47\xb7\x0f\x8f\xf7\xb3\xcd\x9a\x15\xc9\x50\x83\x87\xc2\x6e\x6b\xe4\x16\x16\x3a\x9d\x26\x45\x39\x9b\xa5\xe2\x8b\x58\x17\x61\x84\x0e\x5b\xa9\xb1\x2f\x22\x70\x60\xda\x85\x94\x8a\x3e\xf5\xb1\x2f\x12\x9b\x3d\x31\xac\x97\x6e\x0f\x95\x8b\x0f\x11\xdb\xc8\x4d\x4d\xc6\x32\x6b\x09\x3f\xec\x19\xd6\xb1\x3c\x1a\xef\x3c\x8a\xaf\x21\x1d\xeb\xcc\x24\xbd\xa2\x6f\x12\xc8\x18\xcd\x39\xa2\x79\x22\xbe\xe2\x61\xf7\xb0\x6b\x76\x95\x4b\xe5\x14\xbc\xcb\x37\x82\xca\xdc\x13\xab\x3c\x4f\x8d\xa2\x2d\xca\x4d\xff\x0a\x51\x0a\xc8\x0a\x7e\x01\xf6\x5f\xc8\x70\x03\xaf\x65\xfc\x60\xec\xed\xf1\xe9\x49\xdd\xe0\xf2\x7d\xa0\x31\x20\xb8\x73\xad\x54\xdb\x95\xb7\xaf\xf9\xef\x3c\xb1\xea\x47\x58\xb6\xb6\x9b\x73\xbb\xf7\xaf\x5f\x81\x55\x87\x53\xf8\xac\xed\xd4\xaa\x83\xaf\x06\xfe\xd3\x2a\x4d\x8d\x85\x73\xea\x96\xfb\xf6\x39\x75\xcb\x3a\x01\xe2\x74\x01\x73\x56\x12\xe4\x8e\x3d\x4c\xeb\xae\x9b\x42\xcd\x8b\x34\x91\x12\x38\xb6\x18\xa4\x75\x1d\x13\xbb\xcb\x87\x7e\x12\x10\x54\xf2\xeb\x63\x5f\xd8\xf8\x4d\x7b\xb8\x1c\x63\x5e\xb9\xe8\x48\x02\x8e\x8f\x3f\x53\x91\x1f\x13\xbb\xde\x28\xc3\x56\x6d\x48\x91\x75\x9f\x88\x4e\x87\x51\x9e\x76\x81\x5c\x13\x9e\x69\x3c\x82\x92\x4e\x7b\x0e\x99\x5e\x02\x8e\x3a\xb8\xdb\xd3\x28\x27\xf2\xcc\x8d\x86\x11\xf5\xd3\x65\x1a\x05\xb9\xdc\xb8\x7c\x20\xb9\x79\x68\xed\xbc\x17\x16\xa8\x2c\x4a\xad\x0b\xbf\xa5\x85\xaf\xaa\x5f\x9f\xb1\x80\xfe\x66\x83\xb8\x14\xcb\x75\x73\x7a\xef\x44\x0a\x5e\xa1\x54\x99\x9b\x6d\x2d\x44\x89\xf5\xce\xe5\xfe\x54\x50\x58\xc3\xe9\x05\xbe\x4f\xd3\x5b\xc3\x51\xd6\xe9\x87\xb9\x79\xd4\xee\x46\xe4\x09\x42\x94\xa3\x55\x08\x3f\x13\xf7\x06\xdc\x86\xf4\xac\x83\xc9\x06\xf6\xdc\xee\x89\xd9\x27\x9c\x2b\x0c\x54\x08\xdb\x27\xcf\x41\x09\x91\x90\x2b\x7b\x94\x27\x56\x3e\x7d\xfc\x49\x4f\xcc\x61\xb2\x85\x34\x1b\x84\xa5\xcd\x9c\xf2\x40\xce\x1f\x30\x35\xe2\x11\x24\x01\x8e\x91\xdc\xc9\x99\x7e\x9b\x19\x72\xc3\x28\x5e\xd9\x5e\xee\x23\x25\x8d\xb6\x6b\x83\x10\xef\x1c\x19\x7f\x3c\x30\x52\xa1\xa3\x3c\xc0\x7b\x3f\xf0\x33\x1b\xb3\x70\x1d\xf2\x1b\x34\xd7\xff\x80\xa7\x9a\xa2\xae\xb2\x21\x01\x8a\x0a\x6a\x51\xb9\xae\x25\xcc\x4d\xe7\xf3\x8e\x65\xfc\x75\x42\x6d\xa0\x8b\x95\x6b\x02\xa0\x2e\x99\xac\x1b\x75\x44\xd6\x1d\xd0\xc4\x35\x3c\x94\xdc\x38\xbf\x65\x47\xa8\x2d\x03\xbb\xa3\xb8\x83\x5a\x14\x3c\x4e\x73\xb5\xf1\xc5\x43\x0e\x76\xf2\xb8\xfb\xa5\x3c\xca\xf0\x2b\x82\x82\x1b\xb3\x96\xf2\xd8\x0f\x52\xdd\x27\x80\x5d\x1c\xe6\xc5\x27\x29\xe4\x00\x95\x18\x2c\xdc\x03\x9e\xf0\xb9\x0d\xbb\x0f\xb4\x8c\xf0\x5c\xe2\xbd\xdc\x0f\x1a\x7f\x77\xbf\x34\xf8\xd0\x52\x43\xce\x7f\x83\x87\x6e\x7f\x08\xdc\x8e\x82\xf7\xed\x66\x45\xee\x04\xba\x4a\x04\xb9\x3b\x90\x23\x21\xf6\xbb\xc3\x88\x9e\xdf\xb2\x41\x98\xaa\x5b\x35\x7e\xf9\xef\x4d\xa4\x83\xda\xd2\x60\x29\xcc\x93\x36\xc0\x80\x0f\x10\xa1\x2c\x51\xeb\xb2\x85\x6d\x44\xf7\xe7\xad\x99\x43\x31\xf3\x6b\x13\x58\xdc\xa4\xf3\xf9\xc7\x08\xaa\xf6\xaf\x84\x39\xd5\xe3\x47\xee\x07\x14\x7d\x7e\x8c\x6f\xe4\x74\x89\xca\x07\xc7\x8b\x43\xee\x0a\x50\xd4\x2a\x9c\x09\xda\x27\xdf\xb5\x9b\x53\xe9\x3b\xf8\x08\xd8\x65\xc3\x46\x9d\xe0\xd1\xbd\x4f\x6c\x5c\x49\x9a\x15\x7d\x13\xe6\x85\x35\x8b\x8e\xfd\xc5\xb5\xec\x6f\x06\x1e\x24\xbf\x46\x1a\xfb\x59\x98\x2c\xca\xd8\x1e\x1a\xba\x90\xb3\x96\xeb\x55\x4f\x9e\x3b\x1f\xc5\xf1\x13\x14\x06\x3e\xba\x6a\xa3\x17\xf8\xfd\x13\x84\xb9\x78\x17\xde\xda\xc5\xc7\x6e\xd1\xff\x19\xf6\x1f\xde\xdf\x35\x98\x0b\xbc\xff\x0f\x00\x38\x51\x21\x8b\xf2\xa9\x71\xc4\x36\xad\xa2\x61\x82\xd6\xc4\x5a\x0d\x6f\xb0\xb2\x86\xe1\x4d\xc3\x27\x7d\xa2\xed\xfd\xe4\xdb\xc4\x9a\x7c\x6f\x4c\x13\x89\xa2\xb6\xa4\x63\xf0\x1b\x8d\x7e\x69\x81\x3b\x69\xb2\x90\xa5\x89\x14\x8d\x85\xc8\x1a\x9b\x58\x59\xad\x37\xc6\x88\x96\x87\xd9\x53\x6d\x34\x48\x31\xe0\x3c\x99\xd4\xea\xbc\xc3\xa1\xd2\xe0\xf7\xfa\xf2\x59\x32\x50\x8f\xcf\xd2\xe9\xfa\x27\x49\x1a\x29\x06\x8b\xe9\x76\xfb\x03\xd2\xb8\xc1\x17\x72\x64\x23\x73\xbb\x5d\x47\xc7\x2b\xf5\x9f\xc3\x26\xa5\x80\x69\xd6\xff\x94\xaa\x8d\xfe\x8f\xa8\xf6\x60\x93\xf9\x8a\xc3\x7c\x9a\xbe\xec\x22\x45\xa5\xae\xf6\xe6\xd0\xd7\x0f\x3a\x71\x94\x94\x29\x04\xd1\xb3\x62\x3a\x57\xae\x2b\xe5\x99\x3d\xd3\xd2\x99\x6f\xf8\xce\x22\x64\x25\xe4\x9a\x18\xb3\x46\x49\x54\x6c\x23\x1e\xd5\xb7\xa9\x20\x07\x45\x40\x14\xa3\xce\x07\x44\x8d\x7e\x67\x4c\x96\x6b\x2d\x20\x64\xde\x2b\x62\x23\x94\x1b\xb9\x26\x5e\xd8\xdf\xea\x86\x45\x38\x41\x4d\xf6\x33\xa6\x26\xfb\x19\x35\x4e\x5e\x0e\x57\xc2\x6e\xd4\xc4\xae\xc5\x8a\x7f\x8f\x0a\x81\xa2\x50\xa6\x12\xc8\x6a\xaa\x5f\x30\x49\x12\xc9\x66\xc1\x0f\x1e\xa7\x21\xe2\xe3\x14\xf1\x3e\xf7\xe5\x5f\xde\x36\x61\xc5\x89\xf6\x1a\x94\xb0\xf0\xd3\x8a\xf5\x50\xce\x36\xb2\x46\xc7\x61\x8d\x94\x14\x8a\x9a\x2e\xe4\x9b\xac\xf6\x49\xd6\x31\xdb\x3d\x22\x75\x0b\x86\x5d\x91\x6f\x5e\x22\x7e\xa5\x53\x24\x77\x23\x31\x38\xb6\xce\xcd\x31\xcd\x58\x5e\x92\x85\x76\x04\x0a\x8e\xae\xb7\xaa\x3a\x73\x70\xf7\xb3\xad\xbc\xef\xe6\x4b\x05\xe9\x1b\x10\x61\xd6\x45\xa2\xb8\x9e\xcf\xa2\x6e\xcf\x6c\xa5\xb6\x25\x6a\xaf\x42\x53\x8c\x43\x84\x73\x2e\x31\xb8\xdc\xf0\x3c\x4e\x40\x92\x3b\x97\xdc\xb0\x5a\x37\x1d\x44\x8e\x82\x08\x79\x17\x1c\xaf\x5c\xaf\xb2\x87\x58\x48\xf3\x26\x4b\xca\x10\x13\x09\xf2\x43\xa0\x5f\xcf\x10\x91\x71\x5e\x84\x0b\x0b\x26\x83\xfd\x85\x85\x7f\x3f\x20\x73\xff\x3e\x6b\x4f\x99\x64\xd4\xcb\x8c\x59\xb4\x0f\xa3\x48\xa9\x86\x93\x5a\xba\xe8\xc2\x85\x38\x4c\x7a\xa3\x28\xef\x4f\x11\x4f\x00\x18\x2b\xb0\x24\x48\x94\xb5\x1b\x52\xfe\x05\x6d\xb8\x57\x5f\xc4\x4c\x2b\x2f\xa2\x85\x05\xee\x09\xad\x91\x0e\xde\x9a\x63\xda\x49\xa2\x7e\xc3\x97\xcf\xd6\x98\xd0\x69\xad\xe6\x05\xcf\xb4\x5e\x48\x23\x11\xd7\xc1\xb1\x44\x33\x47\xae\xc7\x4f\x4d\x26\x12\x87\x0f\xb7\xe6\x66\xa7\x88\xa3\x37\xf0\x00\xc4\x93\x24\xd1\x79\xd2\x7e\x4d\x9d\x7d\x7f\x9c\x0a\xdf\x0a\xc8\x71\x05\x3a\x22\x59\xaf\x19\xa1\x30\x49\x27\xf6\xd4\xed\x42\xb6\x15\xf8\x7c\x6a\xad\x56\xa6\xc3\x22\xd0\xf3\xc2\x24\x05\x10\x1a\xa2\x67\x42\xac\x98\x98\xc5\x51\x8c\xb1\x0f\x6e\xf3\x7e\xd8\x5d\x61\x0c\x22\x8f\x88\xae\xb9\xe1\xf6\x4e\xda\x0d\xad\x87\x9f\x00\xa3\x60\xd1\xe0\xe2\x75\xf7\x7d\x92\xfa\x1b\x09\x58\xe0\xd3\x0c\xb1\x26\xe2\x0a\x94\xbb\xe4\xba\xe2\x8f\xe6\x76\xb7\x3a\xe1\x48\xf4\x60\xb0\x6d\x5e\x0d\xfc\xa9\x7a\xb5\x42\x13\x6d\x3b\xe7\xcb\x91\x65\x26\x70\x8a\x11\x5a\x43\xf0\xa4\x28\x17\x5d\x85\x7f\x21\x33\xa6\xbb\x9d\x84\x8d\x6e\x22\x24\x44\x9b\xed\x24\x22\x34\xc7\x10\x5a\xae\x26\x5a\x6b\x0d\xa4\xec\x38\x20\xc0\x8e\x60\x99\x5f\x47\x66\xa3\xb1\x42\xc3\xd1\x41\x7c\x50\xd9\xd7\xf6\x61\x87\x59\x2a\x7c\x0f\x08\x17\x41\x82\x80\xa3\x70\x83\x52\xe7\x33\xb5\xe2\xcc\x51\xd7\x83\x11\xf1\x96\xee\x8f\xfd\xeb\xbb\x5f\x29\x84\xcc\xcc\xec\x6f\xf5\x0c\xda\x9a\xe8\xbc\xdc\xe4\x96\x2c\xa2\x5e\xc7\x46\xeb\x29\xc0\x2e\x54\x1e\xde\xbe\x9a\x7c\x14\xc6\x8d\x4a\x8a\xa7\xa9\x58\x0d\xcd\x5e\xba\x64\xb2\x7e\x38\x8a\xdd\x43\xab\xd2\xab\xc7\x37\x9c\x27\xcb\xd4\x8d\xc2\x41\x9a\x58\xb6\xa8\x67\x3d\xf1\xcf\x17\x0f\x49\x4d\x5e\x9a\xa8\x12\xfd\xd9\x85\x23\x7e\xc6\xe7\x5d\x58\x58\x07\x7b\x0f\xb3\x42\x58\xb0\x34\x15\x86\x67\x10\xd4\x72\x40\xed\x0e\x0c\xbc\xad\xbf\x46\x1e\x30\xef\xa7\x53\xe5\x73\x20\x5e\x6f\x5a\xae\x5e\x44\x09\xc8\x35\xb0\xb6\x97\x49\xcb\xf4\x24\x55\x20\x6d\x3c\x67\x0b\x88\x30\x4d\x5f\x0f\xa8\x9d\x73\x62\xcc\x63\x42\x76\xff\xa1\x26\xf0\x66\xed\x00\xc7\x4b\xc3\x34\x57\x6d\x17\x3c\xc1\x3b\x81\x8f\x5f\xde\x21\xeb\xf3\x82\x59\xc6\xfc\x9b\xe2\xd4\xa9\x8e\x7e\xbb\x4e\xc6\x64\x98\x2e\x9b\x4c\x02\x28\x99\x5c\x9c\x98\x62\xf4\xf1\x7b\x61\x09\xa1\x78\x08\xc5\x46\x01\xda\x51\xd7\x90\xcc\x84\x59\xe6\x5a\xb0\xc8\x0e\xae\x51\x0d\xfa\x01\x29\xb2\x9c\xa0\xe5\x5a\x06\x9b\x9f\x43\xbf\x7e\x6b\xec\x89\x9d\xbf\x55\xa7\x1c\xd4\x89\xc3\x6c\x31\x9f\x1f\x65\xbd\x89\x02\xf2\x1a\x17\x90\xab\xee\x60\xfa\x40\x2b\x0e\x57\x06\x82\x74\x17\xda\x8e\xa0\x41\x4a\x1d\x1b\xdc\xc1\xf4\x81\xd6\xe1\xc3\x4f\x5a\x80\x29\xa9\x5d\x3a\x3a\x08\x60\xae\x14\x98\xc8\x63\xbd\x63\xff\xb2\x44\x5c\x05\xbf\x72\x81\x38\xce\xbe\x8b\x3d\xa1\x2c\xca\x65\x42\x88\x0f\x79\xc0\x05\x46\x9d\x72\xc3\x7f\x81\xea\xc7\xe9\x2f\x96\x5b\x07\xd8\x51\xc1\x58\x23\x03\xda\xdc\x26\xc6\x91\xe3\x5c\xa1\x39\x45\x25\xb5\xf7\xec\x1b\x54\xc8\xda\x2f\x3e\xa4\x1a\x65\x47\xbb\x8a\x28\x2f\x84\xdd\x5d\x5d\x0d\x31\xc9\xdc\xc7\x3e\xd3\xb1\x49\xcf\xa2\xbe\x60\x61\xe6\x49\x11\xaf\x4c\xf9\xb6\xee\x4d\xc6\xb6\xbd\x12\xf8\xb2\xd5\x1a\x3b\x99\x13\x44\xad\x53\x84\x51\xb2\x85\x54\x46\x91\x7b\xa3\xd4\x72\x0c\x2f\x44\xc8\xc1\xc9\x01\xfc\x78\x4c\x61\xa4\x2f\x43\x77\xc2\xc4\x53\x9f\x20\x4f\x40\xf3\x5e\xae\xeb\xa6\xdb\x3a\xfd\x34\xea\x18\xf9\xfe\xa8\xaf\xfc\xd3\x4a\xd3\x7a\xfd\x8a\x8b\xe6\x86\x59\xb9\x62\x1d\xe5\xbf\x44\x78\x0e\x49\x0b\x11\x53\x63\xca\xc8\xfb\x2e\x3c\xef\xa4\x61\x61\xc4\x55\x08\x6f\x02\xeb\x77\x36\x25\xd6\xd6\xc8\xa7\x82\xee\xb5\x8a\x5a\x85\xc9\x32\x55\x13\x94\xd9\x55\x52\x52\x7e\xcb\x2d\x44\x37\xca\x07\x51\x8e\x81\x06\xc5\x55\x96\xcb\x0a\x6f\xf0\x80\xc7\xae\x2f\x97\xc7\x42\xf0\x5a\x8b\x49\xba\x0c\x82\x9a\x2d\xbe\x7c\x7a\x65\xec\x2b\x2e\xbf\xb1\x0b\x7e\x93\x59\x4f\xdd\x20\x67\xf9\x37\xe1\xd8\xaf\xd5\x69\xea\x95\xbe\xa3\x93\x0e\x04\x19\xc4\x11\x98\x46\x5a\x1e\x80\x48\x94\x27\xbe\x07\x2a\xdc\xfe\x72\x33\xf6\xe3\x2d\xf3\xe9\x4b\x88\x7a\xd4\x73\x91\x17\xab\xd5\x89\xed\xac\x74\x1c\x0d\x10\xca\x64\xef\x05\x54\x33\x7b\xaf\x52\x16\x2f\x13\xf9\x7e\x54\xc0\xe1\xb8\x11\x27\x3f\x08\x77\x85\x78\xa3\x64\xe8\x4b\xa7\xf1\x6a\x84\xe7\xfc\x90\xa0\x76\xe4\xbc\x8e\xc8\xa5\x5a\x4b\x9e\xa5\xf3\xda\x2b\x82\xad\x05\xc8\x57\xae\x29\xbe\xef\x9a\x41\xda\xc9\xc2\x22\xdf\xe2\x43\x0f\xbc\x26\x34\xa7\x04\x45\x04\xcb\x7e\xcd\xee\x09\x7c\x9d\xf3\xd6\xf6\x28\x38\x8d\xf8\x9e\x06\x66\x47\xf9\x53\x38\x19\x3b\xda\x7e\x00\xe3\x22\x53\x8b\x7d\x14\x90\x85\xfa\x35\xac\x80\x1b\xe7\xfc\xe2\x21\x0f\x47\x9e\x25\xba\x7c\x8f\xff\x3b\xcd\x2a\x93\x1f\x8f\x3d\x36\xce\x0c\xe6\xb3\xb0\x63\xba\x8c\x8e\x9c\x98\x72\xa8\x1c\xe9\xe9\x03\xad\xc5\xa8\xe8\xf4\x8d\x08\xbd\xba\xba\x9d\xe3\x14\x39\xe9\x8a\x11\xe6\xa5\x7e\x34\x1f\x15\x34\x27\xb3\xb3\xed\xe3\xd9\x33\x63\x7a\x28\xb1\x5f\xa8\x61\x82\x0d\x0a\xc9\x02\xea\x63\xd8\x38\x97\xe9\xc9\xa3\x64\xc9\x23\x68\xd1\x85\x94\x59\x24\xb9\x21\xdc\x4f\x6e\x5c\xb5\x57\xda\xae\x01\x05\xee\x3f\xad\xc0\x15\xf6\xec\x29\xb7\x44\xc7\xe4\x4e\x1b\x93\x9b\xe3\xd8\x15\xdf\xc1\x4b\xd0\xb7\x5b\x33\x0d\xac\x4a\xae\x53\x24\xa7\x20\x15\x7f\x0d\xe8\x27\x66\xc6\xca\x3f\xa7\x33\x63\x6e\xde\x3e\xec\x44\x45\xd3\x1b\x8b\xf3\x84\xb8\xbd\xcd\xfe\xfa\x44\x30\x31\x63\x5f\x7c\x9a\xe4\x03\xb6\xb4\x09\x9a\xb7\xcd\xca\xe6\xc2\x7a\x5e\x45\x49\x4f\x13\xc0\x72\xa1\xe1\x50\xbf\x1f\x34\xbe\x3c\xed\x3d\x4b\x79\x2a\x51\x2d\x78\xac\xed\x03\x97\x3f\x1f\xd3\x90\x3c\xbe\x17\x76\xee\xe3\xab\xa5\x51\x71\x85\x95\x39\x85\xe8\x7c\x04\xf8\x2c\xf2\xf7\x2d\x28\x4d\xe2\xd7\xc7\xa8\x53\x23\x84\xfd\xd8\xc2\x73\xa5\xd6\x83\xcd\x88\x0f\xc7\xe8\x20\x36\xd9\xcf\x02\x62\x44\xdc\xb9\x4a\xc4\xeb\xf7\xc5\xe7\x23\x02\x78\x05\x73\x30\xc2\x08\xc8\xbc\x3c\xc7\x2a\xa1\x91\xf3\xda\xfd\x28\x01\x36\xc3\x09\x24\xf1\x8c\x5b\x35\xa7\x9c\x29\xd3\xb7\xa5\x08\x0c\x1e\xd6\xd0\xc1\x0f\xdf\x1f\xfb\x6c\xf9\xfe\xc4\x18\xb7\xc9\xcd\xa7\x2d\xfb\x10\x94\x5e\x64\x22\xc9\x82\xb4\x71\x04\xee\xe0\x28\xa3\x3e\xfa\x84\x6d\x44\xc2\x35\x6f\x6e\xbb\x09\xc8\x5f\xfd\x94\x45\x4c\xe2\x5d\x3e\x6d\x21\x2f\xe8\xb3\x6c\xb6\x8d\x4d\xd4\xce\x3e\x0e\x2c\x05\xfc\x04\xaf\x9e\x70\x62\xb2\x74\x9b\xc8\x28\xe1\x59\x3f\x06\xf6\x60\x6a\xd5\xc7\x17\x1f\x4e\xd0\xa7\x52\x37\xf9\xfe\x98\x11\x48\x42\x3f\x2e\xff\x15\x90\xb8\x84\x00\xa9\xb1\x2b\xae\x21\xf0\x10\x1e\x5d\x5b\xda\xd7\xa5\xf6\xa6\xf1\x3f\xfe\x3b\xff\x59\xa3\xfc\xde\x12\x09\xdb\x97\xaf\x51\xb1\xb7\xc8\x85\xc9\x0b\x0c\x24\x95\x3f\x2b\x73\x1c\x01\x9d\x0c\x2f\x5c\x16\x66\xe1\x3c\x01\x20\x3e\xd1\xa6\xba\xdc\x27\x56\x37\xe6\xca\xfb\xf6\xb5\x4c\xd2\x49\x47\x59\xd8\x33\x4e\x62\xd8\xd1\x26\x7b\x0a\xe5\x3a\xba\xf4\x4e\x66\xba\x51\xb1\x1c\x16\x9d\x7e\xc3\x1f\xd8\xeb\x8c\xac\xbe\x4e\x82\x39\x99\xc9\xd3\x78\x54\xfa\xe3\x29\x9f\xbd\xdf\xc2\x97\x10\x64\xd7\x98\x78\x04\xaf\x12\x06\xe6\x63\x4e\x33\xca\x84\xa4\x39\x21\x80\xe6\x81\xa5\x37\x03\x52\xac\xfa\xa0\x8e\x03\x24\x2f\x56\x36\x78\x6d\x29\xb8\xa9\xf1\xdd\x45\x90\xea\x2c\x4a\xbb\x79\xd3\x8b\x5c\xde\xb1\x2f\x51\xbb\x97\xe5\x56\x84\x43\xbc\xe1\x4a\x09\xb9\x49\xba\x52\xde\x21\xbe\x81\x69\x47\xe4\x52\xe3\xc8\x8b\x34\x11\xb6\x70\x9c\xdf\x9f\x13\xbb\xe7\xcf\x5d\xb9\x25\x4f\x42\xf0\xe6\x08\x5f\x32\xb9\xe3\x4b\x93\x92\x0f\x49\x37\xcc\xba\xf9\x16\x5a\x08\x94\x03\xd4\x86\x79\xa5\x56\x8c\xe4\x89\xd4\xce\xd8\xa7\xaf\x0f\x02\xa6\x6a\x13\xfa\x9d\x47\x3d\xf0\xf8\x01\x8c\x25\x2a\xdd\x02\x2a\x53\xc5\x38\x66\xa3\x3f\x0b\x61\x06\x14\x1b\x4f\x50\x1f\xe0\x04\xf2\x1a\x24\x39\x12\xed\x23\x7b\xb9\x44\x43\x76\x3b\xdb\xdc\xbd\xb3\xfb\x04\xed\xc3\x5b\x34\x38\xd2\x31\x49\x91\x85\xf1\xd6\xf2\x5c\x60\x68\xeb\x24\x22\x3c\xe5\x14\xf1\xcd\xd8\xc7\x09\x15\x2d\x87\x47\xfe\xc3\x7a\x0b\xf9\xed\x3a\xfd\xed\xa2\x9f\x99\xb0\x3b\x41\x3f\x75\x91\xe9\xa7\x2e\x56\x02\x88\xf2\x78\xa4\x9d\x30\x4a\xd0\xf6\xd4\xf9\x09\x3f\x78\x2c\xd0\x55\x0d\x05\xdc\x68\x6f\x62\x7b\x2f\x2e\x41\xc6\x0b\x01\xd6\x0c\xce\xf1\x8d\xc0\x43\xee\xbf\x4a\xc0\xb8\x4e\x68\xcf\xd6\x56\x1a\xd1\x38\x46\xec\x2c\x60\x4d\x85\xe5\x7c\x37\x98\xd4\xa4\x99\xdb\xcd\x5f\xca\x13\x6a\xf8\x43\x37\x48\xe7\xa3\xb8\x41\xcc\x19\xc8\x0c\xe5\x9a\xa5\x25\xa2\x98\x28\x3e\x3e\xb4\x9b\x4d\xae\x89\x1e\x23\x4a\xba\x66\x68\x92\xae\x4d\xfc\x1a\xb4\x53\xf1\xc4\x72\x5d\x49\x5f\x0e\x3c\xd7\xea\x44\x59\x67\x34\x58\xb2\x96\xea\xe0\x6e\xd7\x9e\x6e\x38\xb1\x84\xaa\x28\x4c\x19\xe7\xa0\xf1\xdf\xf4\x65\x06\xe0\x28\x11\x07\xdc\x63\xce\xc4\xd7\x7c\xa1\x22\x09\x3b\x8e\x84\x05\x36\xa9\xd9\x26\xdd\x8b\xe6\x6a\x35\xc8\xde\xdf\x0a\xbb\x5d\x19\x4b\x83\x13\x90\xce\x19\xb6\xfa\x55\xe4\x37\x30\x26\x47\x08\x6f\xd2\x49\xd3\x45\x6d\xef\x2b\x93\x97\x7d\x15\x4a\xf1\x55\x45\xc2\x3f\x6f\x69\x3a\xd3\xcc\x79\x63\xa7\x72\xe0\x15\x0f\xdc\x77\x49\xa2\x3c\x0f\x13\xc5\xd1\xa2\x4a\x7f\x1d\x76\x6f\x82\xed\x54\x8d\xa0\x6f\xb6\xae\x84\x59\xb7\x49\x01\xc5\x07\xa4\x9f\x73\xd3\xa6\x1c\x2a\x30\x54\x4b\x49\xd3\xcf\xd2\x51\xaf\x6f\x11\xa5\x80\x26\x3d\xd1\xf6\xa5\xb1\x9b\xd4\x8f\x7a\x75\xec\x83\xf3\xad\xab\x3b\xa9\xc9\x96\x8d\xfa\x16\xb2\x23\x34\x8a\x8c\x90\xa9\xd2\x91\xed\xdb\xd7\x1a\x5a\x32\xf8\x83\xbb\x3d\x0b\xb3\xcb\x73\x8f\x93\x61\xeb\xf4\x2d\xe7\x6b\x0f\x4a\x48\x2e\x58\xf7\x4c\x85\x9b\x56\x3d\x08\x05\x4d\x43\xf9\x77\x1b\xdd\xa3\x51\xf5\x1d\x3c\x0d\x7c\xd9\x5b\x40\xde\xc0\x6c\x12\xef\x71\x9a\xec\xf0\x00\xd0\x73\x08\x81\x91\x0f\x7c\x88\x9d\x07\x33\x7e\x05\xef\x43\x29\x98\x7c\x9c\xba\x1e\x10\x08\xf7\x01\x95\x99\x6f\xdb\x35\x13\x11\x9c\x80\xd2\xca\x2b\x35\x93\x13\xcf\xb7\x3c\xaf\x50\xc3\x93\xc7\xf3\xb0\xee\x05\x92\xc6\xca\xc3\x95\xc7\x7c\x25\x0e\xd4\x79\x58\xc4\xf3\xf6\xe8\xbb\xe6\x4a\x19\x78\xc2\x23\xfe\x3c\xa0\x2a\xf2\x7b\xe0\xc7\x94\xff\x81\xc3\x00\xa8\xe6\x02\xcb\xd6\x3e\xdd\xa6\xd1\xd9\x7f\x50\x29\x9b\xa2\xe4\xb2\x09\x61\x9b\x52\xe8\xd4\xd4\xec\x16\x22\x7f\x0e\x1c\x13\xbe\x67\xc5\x0f\xfc\x7e\xea\xa5\x03\xf3\xf2\x84\x22\xff\x78\x62\x24\xa6\xa2\xa4\x31\xdb\xea\x84\xc2\x03\x2d\x39\x7b\xe0\x51\xc5\x97\x18\x14\x64\x8c\xa4\x5f\x4e\x2a\xdb\x0f\x77\x9f\x23\x3a\x6f\x9b\x88\x37\x3c\x90\xef\x14\x91\x75\x9d\xa2\x6e\x62\x34\x18\xa6\x59\x01\xca\x40\x14\xa9\x4e\x13\x61\x26\x14\x13\xf0\xef\xe7\x19\x80\x7b\x9e\x33\xdf\x97\x4c\xd6\x89\x72\xd3\x98\xa0\x15\x6d\xcc\xf8\x26\xe9\xe3\x2c\x51\xf8\xf9\xa6\xd7\x45\xba\x3f\xe6\x16\x13\x41\xd0\xa7\xda\x55\x4e\x84\xd9\x32\xf0\x88\xe3\x32\x92\x81\x89\x41\x6c\xfc\x67\xcc\x55\xf7\x67\x34\xd7\x96\x99\x81\x13\x60\x44\xec\x27\x70\x00\xb9\x41\x80\xad\xea\xda\x3e\x9a\xad\xf2\x1b\x1e\xdc\x3d\xdd\xca\x0b\x63\x5b\x56\x0e\x56\x72\x35\xf0\x44\x1e\x57\xa9\xfa\x5d\x64\x23\xb3\xb5\xe1\xa4\xac\xd0\xb3\x44\x5f\xfe\x1b\x08\xf7\x5d\xcb\xab\xdc\x20\xf2\x3f\xcc\xc1\x11\x50\x9a\x58\xb5\x3e\x96\x4a\x27\x5d\xa1\xb1\x86\x13\xac\x26\x72\x82\x82\x4b\xd1\x2d\x6c\xd1\xe4\xc5\x77\xc7\x5e\x06\x70\x87\x25\x7a\x40\x15\xf7\x81\x45\x31\xb9\x06\x87\x13\xb4\xfc\xa7\xf6\xf0\xad\xbf\xc3\xb3\x6e\x1f\x13\xd6\xfc\xa6\xcd\x66\x94\xbb\x81\xba\x24\x5f\xa7\x12\xf1\xe9\x09\xba\xb4\xd2\xce\xe2\xba\x81\xe9\x12\x85\x9d\xe2\xad\x2a\xcb\x7c\x73\xff\xaf\x7c\x59\xa7\x80\xc6\x40\x18\x28\x33\xbd\x3d\x82\xfa\xb2\xec\xb1\x45\xfc\x71\x34\xa0\x8a\x1d\xd2\x1c\x58\xba\x29\x4b\xc7\xe4\x70\x39\x65\xaa\x8e\xa0\xe8\x08\x2c\x08\x00\x33\xd7\x90\x22\x7b\xe1\xf8\xe9\x03\x0e\x64\x69\xf7\x8a\x84\x89\x96\x3e\x59\x07\xf9\xed\xd2\x2b\xb3\x69\x19\x20\xaa\x7a\x4d\xe3\x97\xff\x9e\x9f\x17\x28\xb3\x75\xf8\xc0\x2b\x74\xf8\x06\x61\xd6\x49\xa5\x39\xe4\x42\xc6\xf2\xef\xb9\xd9\x64\x7f\xa2\x8e\xe3\x8f\x08\xfb\x2d\xe1\xed\xe7\x4d\x98\x45\x79\xdf\xc6\xed\xaa\xb4\x5a\xbe\x1f\x25\xfa\xae\xb1\x64\xd1\x20\xec\x69\x95\x0e\xd1\x36\x40\x7b\x72\x5d\x33\x74\x32\x5b\x1a\xf6\x61\x98\x89\x5d\xc7\x4a\x6e\x6a\x13\x03\xec\xa6\x4a\xa4\x32\xb7\xbb\x55\xf4\xe1\x99\xf7\x2a\x26\x69\x4b\xdb\x83\xc3\xaf\x11\xaf\xbe\x4c\xf2\xab\x9a\x8b\x3f\xc4\xc3\x30\xef\x87\x39\xe5\x9a\xd7\x09\x6c\x7f\x9d\xd6\xb2\x3b\x1a\x0c\x95\x4b\x43\x45\x79\x3d\x02\xe9\x38\x11\x9c\x16\xa3\x6c\x7e\x14\x5b\xa2\x38\xfb\xfc\x8a\xa9\x6a\x38\x3e\xa3\x8b\x13\x16\x6b\xf9\xf3\x80\xaa\xe0\xfd\x9d\x47\x15\x40\x6e\x08\x96\xba\x1c\x75\x8d\x63\x74\x72\x18\xa8\xb9\xdd\x0e\x03\xc5\x0d\x32\xe1\x58\x80\x4f\xbf\x44\x9d\xe6\x4b\x14\x16\xf5\xd3\x81\xd9\x65\xbf\x10\x9c\xe2\xff\x49\x32\x30\x18\x12\x97\x90\x3f\xf0\x73\x32\x47\x61\xa5\x95\x1f\x01\x47\x0a\xa7\x50\x44\x36\x9d\x4e\xa9\xa7\x95\xfc\x9a\x45\x17\x2a\x9b\x1f\x8d\x63\xdc\xe0\xd8\xe1\x38\x0c\x16\x8e\xf7\x55\x7b\xa4\xe1\x0c\xde\x1a\x7b\xab\x78\x1b\x59\x17\x7c\xed\xad\x31\x65\x49\x37\x2b\xa0\xb3\xe9\x03\xad\x70\x39\xcc\x8c\xeb\x9f\xcb\xc8\xe9\xc4\xf8\x69\x0d\x47\xf7\x30\x8b\x92\x4e\x34\x14\x0d\x64\x2d\x2d\xfb\xb8\xfb\x68\x0d\x00\x63\xb6\xb5\x90\x19\xe0\x8b\x35\xf5\x03\x72\x5a\xae\x5d\xa5\xb5\x93\x92\xde\x2e\xf0\x44\x67\x68\xbe\xfc\x8c\xa7\xa6\x28\xdf\xb7\xa4\x6b\x30\xe2\xf7\xe0\x5e\xe4\x66\x4c\xf1\x80\xc9\x06\xf8\x86\x02\xbb\xb4\xdf\x50\x21\x98\xbe\x7a\x61\xc2\xac\xe8\xbf\x38\x0a\x17\x81\x43\x80\xb9\xbb\x48\xf4\x6f\x1e\xf4\xb2\x14\xc6\xa3\x70\x3e\x16\x79\x6a\x57\x21\xdc\xb7\x4f\x7b\xb8\x24\x24\xf1\x9d\x4a\xd8\xbc\x6f\x1f\x26\x0e\xa3\x54\x27\x5f\x10\x50\x09\x99\xba\xdc\xd4\x8a\x2a\x75\xc2\x5c\xd0\x1e\x8e\xbe\x64\xc6\xab\x89\x93\x88\xe8\x15\x3a\x72\x79\x11\x16\xb6\xf4\x93\x03\xcb\x86\x64\xed\x43\x2a\xea\xdd\x25\x09\xcb\xaf\xe1\xcf\xe0\x8b\xd8\x26\xe2\x9c\x8e\x13\x88\xdc\xdd\xd8\xb3\x1d\x5e\xa8\x0a\x74\xce\xcd\x7e\xae\x55\x18\x53\xf4\x9b\x84\xc0\xdc\xd4\xf6\xd8\x21\x4c\x0a\x28\xb7\x86\x57\xae\x1e\x66\xa6\x13\x0d\xa3\x22\x15\xfe\x56\x15\x86\x61\x95\x98\x1a\x55\xb2\xfd\xad\xd4\x52\x98\xef\x55\x6c\xe0\x7d\xe6\x88\x02\x0c\x5e\x19\x28\xcb\x87\x00\x54\xfb\x82\x6b\xd4\x75\xc2\xa4\xbb\x32\x1f\x66\x4d\x1a\x67\x3a\x61\x97\x55\x9a\xb2\x74\x20\xbe\x43\x2c\x0b\xf3\x59\xba\x68\xb2\xb0\x67\x2c\xcb\x82\x92\x9d\x35\x1c\x29\xef\x14\x26\xbc\x65\xae\x6c\x4c\xbc\x6e\x27\x03\x66\xc2\x65\x59\xae\xcb\x4c\xbf\x20\xbc\x5d\x42\xaa\x4e\x9a\xe1\xa7\x6b\x30\x22\xcf\xb7\xa2\x3c\x1f\x4d\x42\x88\x64\x43\xc8\xcd\x44\xdd\xb6\x13\xa5\x4d\x7f\xfe\x8e\xd8\x30\x42\x34\xec\x03\x1f\xa1\x57\x79\x21\xcb\xf0\x27\x4a\x3a\xa3\x2c\x53\x3d\x44\x74\x29\x44\xc9\x08\x11\xff\x03\x6b\x11\x61\xc3\x8e\x57\x9e\x75\xfa\x40\x99\xac\x77\x4c\x02\xf4\x30\x8c\x18\x32\x2e\xf5\xd1\x50\x28\xae\x01\xc2\x74\xb2\x51\x27\x52\x2c\x0a\xb6\x04\x60\x98\x72\x1d\x7c\x72\xb2\x75\x5f\xee\x8e\x43\xb3\x9f\xb3\x38\x18\x92\x7b\xd3\x90\x1d\xac\xbf\x58\x54\x29\x1c\xa3\x01\x75\xda\x19\x24\x4b\x0b\xaf\xaa\xbb\xc8\xcf\x8e\x04\x1e\x19\x7f\x64\xfc\x38\x91\x51\x97\x86\x74\x6e\xd6\x05\x13\x54\x8b\xaa\xd1\x76\x98\xd3\xc6\x8a\x35\x4d\xa8\x5e\x9f\x0a\xbc\xd0\xe6\xa9\x4a\x45\xc0\x32\x57\x87\x9d\xbe\x95\x95\x24\x31\x2b\x01\x7a\xca\x8d\x03\xc9\x75\x44\x10\x12\x2b\x8c\xa7\x96\x6b\x12\x6a\x10\x91\xf3\x34\x43\x35\x4a\xd5\xbd\x7c\x37\xaa\xd9\xf6\xc9\xd0\xad\x9a\x97\x32\xdb\x7a\x71\x94\xba\x2a\x8a\xb2\xe8\xfa\x21\xf2\x13\x13\x61\x42\xd2\x09\x55\x84\xc5\xc5\x1e\x1e\xb6\x5c\x1d\x24\x2e\x37\xdc\x7c\x58\x18\xe1\xd6\x87\xd5\x50\x2e\x11\xb9\xab\x15\x09\x1e\xc6\xa3\xa4\x27\x59\x91\x96\xbe\x7c\x6d\xee\x62\x1d\x39\x70\x37\x8d\xbb\xd9\x68\x20\xa1\x19\x0a\x69\x37\xa9\xa8\x76\xb3\xa6\x70\x38\x6b\x7d\x81\xe2\x02\xc4\xc0\x05\x04\xf4\xba\x6b\xcf\x16\xc2\xf9\x97\x26\x40\xfe\xcb\xe1\xca\xae\x32\x4c\xc5\xf9\x44\xb9\x4d\x01\x75\x13\x44\x26\xb6\x24\xcd\xcc\x76\xae\x4e\x52\x46\xcf\x12\xb5\x01\xcf\xa6\x21\xdc\x04\xcb\x61\x19\x05\x20\x3e\x79\x7f\x52\xfb\xcd\xee\x78\x25\xcb\xb2\xe7\x02\xc5\xc8\xef\x4f\x50\xa7\xf0\x0c\xf5\xbb\x63\x3f\x54\x73\xdb\x6e\x70\xb4\x55\xa6\xda\x7a\x60\xec\xd4\xb7\xa8\xbb\xa0\x0f\x86\x3e\xbb\x5c\x57\x96\x70\xef\x4c\x6b\xde\x24\x66\x21\x2a\x88\xb2\xfc\xf6\x24\x22\xa4\x8c\x95\x50\x88\xf4\x52\x2f\x45\xdf\x84\x85\xc9\xb6\x7a\x61\xbb\x0b\xa4\xad\x7c\x94\x74\x8d\xc4\x1f\x38\xa9\x32\x97\x89\x4f\xd4\x42\x6f\x4e\x10\x9e\x25\x49\x88\xc4\x00\xa1\x94\xc0\x00\xf1\x0c\x6b\xcc\x17\xfd\x53\xbb\x3f\xe0\x51\xef\x13\xd6\x20\x0f\x43\x19\xac\x47\xe7\xff\x7c\x40\xa3\x6b\xe7\xa9\xa8\xdb\x35\x83\x30\x41\x31\xff\x79\xff\x01\xbe\x46\x75\x85\xe2\x24\xa0\xbb\x91\x9e\xc8\x98\x2c\x3a\x95\x5b\xdb\x8f\x45\xbe\xee\xfa\xd2\x16\x9f\x21\x1e\x0b\x3c\xd1\xe8\xa9\x31\x31\xfd\x9c\x9c\x98\xd8\x95\x09\x76\x78\xa1\xdb\x35\xe4\x20\xd3\x56\x9e\x69\x20\x19\x08\x16\xfc\x1d\x36\xfa\xef\x50\x8b\x62\x90\x76\x16\xa3\xa4\xa7\x58\x31\x27\x49\x55\x6e\x37\x95\xa4\xf2\x95\xd1\x81\x19\xcc\x9b\x2c\x7f\x84\x31\x85\x64\xd0\xb6\xc9\x70\x25\xb2\x39\xdb\x03\xd6\x79\xa1\x7b\x14\x66\x3d\xb2\x6a\xb7\x09\x8d\x5d\xce\x38\x08\x88\xfd\x60\xe9\x47\x06\x13\xae\x6e\x8f\xc3\x98\xd7\x21\x1f\xfb\x26\x1e\x9a\xee\x14\x79\x1b\x30\xf0\x0b\xe8\x7f\x3c\x31\x5a\x4a\x0a\x3d\x95\x69\x59\xbb\xc9\x51\x33\xd6\xa8\xc6\xd7\x45\x45\x87\x5b\x34\xed\xca\xb0\x8f\x70\xf1\xa3\xa4\xb4\xce\x51\x9a\xe4\x76\xb0\x17\x1b\x4d\x76\xa0\xe3\xbe\xf0\xc0\x77\xcd\x39\x10\xc6\x88\x7e\xb5\x14\xf8\x18\xcd\x73\xc6\x4e\x31\xc9\x5f\x73\x1e\x23\x0b\x13\x8b\x71\x40\x92\x21\x1e\xd1\xae\xe8\x33\x7f\xa9\xcd\x5c\x2c\xf6\xa4\x39\x1e\x9e\xf2\x1d\xc3\x24\xdc\x1d\x53\x5f\xb6\x5a\xdd\x3f\x7c\xb8\xb5\x30\x4a\x2c\x60\x47\x56\xc3\x39\xb0\xf2\x93\xe0\xf7\xae\x07\x04\xff\x3e\x53\x71\x9c\xda\xdc\x1e\x8e\x8a\xed\x84\x69\x3b\x37\x41\x68\x8f\x25\x81\x8b\xde\xb1\xea\x2b\xc5\x47\x90\x3e\xa2\xe6\xf8\x0a\xc1\x16\x44\x8b\x10\xb3\x5f\x8f\x81\xe0\x52\x53\xbd\x1a\xb4\xf2\x30\x0e\x23\x48\x2c\x20\x50\x02\xe6\x4c\x38\xa6\x27\xa7\xb1\x7c\x42\xb9\xdc\x0f\x8b\xa7\xca\xdd\xa7\x49\xcf\x24\x21\xde\xdc\x6e\x31\x78\x27\xf0\xf4\x48\x86\xb7\xd9\xa7\xd7\xb2\x6a\xc3\xe9\x0b\xfd\x10\x99\x1e\x22\xff\xfb\xf8\x48\xd4\x1c\xbe\x27\xce\x11\xff\x85\x60\x1b\x1b\xed\x11\x58\x31\x54\x4c\xff\x25\x01\x1a\xce\x05\xbe\xca\xbc\x7d\x95\x2c\xd1\x09\x74\xbe\x91\xb4\x6e\x6e\x93\x09\x9b\xc2\x71\x83\x51\x85\xf8\x0b\xdc\x45\x03\x0d\x14\x3c\xfd\xfd\x3a\x62\x90\x85\x34\xeb\x88\x1d\x51\x7d\x76\x52\x46\xb9\x4c\xf3\x81\xc3\x30\xca\x9a\x7e\x98\x41\xda\x88\x52\xa3\xb6\x5f\x0c\xcf\x7c\xb4\x0a\xc4\x2a\x23\x80\xff\xe4\x6f\x23\x26\x01\xe4\xf0\x4d\xd2\xda\x7a\xb3\xa6\xc8\xf8\x7c\x2b\x49\x7d\xee\xe9\x10\x57\x33\x0f\x47\x5c\x3d\xd3\xea\xa5\xa3\x6c\x60\x0a\x44\xc2\xda\xc8\xb1\xeb\x87\x7d\xf1\x6d\xea\xe1\x5e\x09\xfc\xc4\x4b\xde\xc9\xc2\xe1\x50\x69\xbf\xb4\x25\xc3\x0d\xeb\x8d\xb3\x5e\xba\xed\x97\xa3\xa2\x9f\x8e\x8a\x29\x3f\xd7\xb7\xa9\x6d\xf7\xb4\x1b\x29\x9c\xdb\xad\x75\xbf\x31\x21\x7f\x4f\x4c\xce\x17\x9a\x6c\x27\x76\x09\x50\xd1\xa7\x81\x68\x11\xd6\xcd\x80\x80\x69\xd7\xed\xd6\x80\x53\x5d\x0f\xa8\x79\xff\x26\x69\xc5\x6d\x5e\x25\x0e\xd9\x0f\x60\xbc\x81\xf2\x00\xb7\x35\x76\xdc\x5d\x9e\xa9\x41\x05\xc3\xcd\x47\x7c\xf1\x90\xbc\xfe\x3f\xc3\x56\xc6\x32\xdc\x1e\x33\x5d\x48\xe5\x25\x5b\x32\x7d\xe0\x92\xf6\xbb\xaf\x69\x7f\x1d\x5f\x04\xe1\x3d\xb6\xe8\x2d\x26\xab\x3c\x47\xfe\x17\x69\x5c\xbe\x75\x42\x20\xd7\xf3\x3c\xa0\x34\xe7\xd0\x9b\x73\xbb\x9d\x89\x29\xd7\x45\x47\xa5\xa9\xad\x73\xa9\xe2\x3c\xf7\xed\x6b\x45\x49\xdf\x64\xca\x15\x89\x50\xfa\x06\xf5\x18\x6e\x38\x79\xa7\xf9\x34\xcb\xd2\xe5\x28\xe9\x35\x3d\x76\xf8\x0a\xd1\x1c\xff\x60\xcc\xe2\x8f\x95\x15\x29\xfd\x4c\x3c\x32\x44\x5e\xb9\x1e\xf8\x02\xf8\x7a\x1d\x66\xb0\x13\x0e\x4c\x16\x52\x36\x81\x69\x2b\x1d\x4e\xda\x78\x4e\xf6\xff\xca\x97\x51\x4f\x90\x28\x59\x85\x27\x3c\x96\xfa\xbc\x03\xed\xc6\xd1\x82\xa3\x0f\xc5\x0b\x3d\x41\xa4\x37\x67\x26\xc2\xcf\x4a\x62\xff\x4c\x2b\x37\x59\x64\x54\x25\x14\x71\x98\x8c\xd6\x61\xa2\x65\xbb\x4d\x4c\x10\x59\x5f\x63\xf4\xb1\x4c\x9d\x23\xf5\xaa\xf6\x70\xa7\x0f\xb4\xb2\xb4\xb3\x68\x8a\xc9\x36\xb6\x1b\xba\xfa\x90\x6a\xf8\x99\x59\xc8\xc2\x08\x5c\x3f\xd2\xb5\x0a\xbc\xd9\x9f\x24\x6e\xe9\x47\x83\x5d\xe5\x06\x91\xb7\x46\x84\x9d\x02\x8a\x43\x08\xbc\xcb\xf2\x38\x3b\x39\xdb\xd2\x8a\x4f\x78\x52\x00\x20\x36\xb7\xbd\x3c\xd1\xbb\x81\x87\xba\xad\x31\x18\xf8\xff\x62\xa7\x77\x03\x11\xbc\xd2\x8f\xdb\x55\x47\x05\x63\xb3\xa5\xf8\xc0\xef\x5f\xb7\xa6\x5a\x3e\x3d\x98\xa8\x36\x78\x68\xf2\xd4\x2a\x7f\xaf\xbf\xff\x37\xfe\x16\xec\xa8\xa0\xd7\x03\x2a\x33\x4d\x8c\xf1\x85\x71\x5a\xbe\x31\xbb\x58\x6e\x42\xaf\xfc\x45\xed\x4a\x31\x75\x6a\x18\x9b\x6c\x3b\x8d\x2a\x1f\x41\x63\x40\xe9\xe5\x58\x43\xb2\xc1\xb4\xa0\x2e\xda\x96\x4e\xbd\x0e\x7f\x50\x78\x72\xc4\x76\x02\xe4\x2f\x05\x9e\x31\xaa\x53\x66\xdb\xb1\x4c\xb3\x3e\x14\x06\x55\xe3\xb1\xf2\x22\xcc\x74\xa4\x4b\x42\x69\x1e\x1c\x39\x45\xc1\x6c\x99\x9e\x9b\x25\xc9\x3b\x69\x94\xdc\xcd\x95\x93\x7a\x55\x3e\x4c\x17\x4d\xbe\x9c\x0e\xc2\x64\x4b\xb9\x27\x1c\x5d\xcf\xc1\xdd\xec\x4c\x94\x24\xfb\x0e\xe1\x95\x37\x03\x29\x28\x37\xed\xc7\x89\xfb\x13\x32\x21\xaa\x85\xf5\x80\x46\x75\x44\x41\x14\x96\xf9\x03\x67\x73\x4a\x97\xd2\xcd\xc2\xe5\x64\x8a\xeb\x7a\xde\x19\xfd\x26\x01\x6c\x6e\x61\x9d\x51\x25\x69\xb4\x37\x42\xc6\x9c\x97\xca\xa2\x42\x73\xe2\x89\x81\x75\x6d\xf0\x12\xa7\xd7\x45\xee\x37\x64\x51\xc7\xe4\x4f\x92\x22\xc0\x85\x31\x2b\x19\x96\x47\x4a\x46\xb6\x02\x3a\x2c\x97\x02\xbf\x1a\x73\x4f\xa1\xad\x85\x18\xfd\x0a\x0e\x05\x0a\x83\x57\x59\xb5\xdf\x7e\x41\x04\x36\x1f\xd9\x9c\xc0\xa1\xf2\x3d\x01\xd4\x2a\xca\xf4\x28\x10\xdd\x91\xb8\x4a\x95\xe6\xbc\x6e\xea\x7f\xf1\x99\x36\xcd\x6a\x20\xe3\x42\x76\x08\x62\x6b\x1c\xb0\x57\xc6\x24\x86\x7f\x2d\xf0\xf2\xe9\x3d\x53\xec\x22\x08\xf2\x8f\x82\x09\x62\x4b\xbf\x19\x20\xcb\xac\xdc\x37\xdc\xb6\x1a\x33\xb6\x9f\xba\xfd\x0f\xac\x63\x55\xfe\x0c\x5f\x9a\x3a\x61\x13\x1f\x9c\xbb\x57\xed\xe3\x2a\x41\xa5\xfd\x52\x8a\x64\xf6\x59\xe4\xeb\x88\x36\x65\xfc\x84\xc1\x0a\xd7\xb0\x44\x3a\xaf\xf1\x09\x4a\x5e\x96\x4c\x56\x4c\x51\xc4\x70\x8a\xb5\xf3\x2f\x52\x37\xe5\x14\x9e\x59\xfe\xa3\x4e\xaf\x35\x1f\x8e\xba\x39\x11\x52\x5c\xa2\xd6\xff\xa9\x31\xd7\xfd\x03\x2f\x23\x9e\xa6\x03\x1c\x43\x1c\x9f\xf7\xc7\xbe\xfa\xfb\x7e\x35\x2e\x9d\x6e\x0d\x33\x53\x84\x2f\x35\x89\x40\xed\x18\xf5\xc8\x50\xc1\x46\x30\x71\x67\xc2\xee\xa7\xf1\xa2\x28\x5a\x28\x6d\x9e\xdd\xbf\xca\xb7\x53\x91\xd3\xdb\xd3\xea\xa5\xf1\x02\xac\x89\xe3\x91\x20\xe1\x3e\x5f\x44\xe8\xa7\x12\x08\x20\x31\xd8\x65\xe3\x19\xe4\x02\xc2\x13\x89\x4d\x5b\x2d\xcb\xd9\xb2\xd9\x28\x59\x34\x99\x14\xdb\xf0\x85\x2e\xb2\x4e\xcc\xc5\xda\x46\xcd\x7c\x98\x74\x52\x14\xdb\xb4\x07\xce\xed\x74\xff\x70\xa3\xcf\xe7\x9f\xdf\x65\xb7\x05\x7a\xae\x22\x07\x89\x32\xeb\x7d\x56\x93\x7c\x7f\xec\x79\xbb\x05\x00\x8a\x6c\xf5\x8e\x5d\x5f\x78\xf0\x4d\x6d\x1b\x82\x22\xea\x12\x6e\x31\x24\xf3\x42\xe5\x81\x53\xf8\x1b\x5c\xdc\xff\x90\x0b\x10\x77\x08\x2a\xf3\x6f\xb9\x63\x8c\xf1\x05\x65\xae\xe7\xf1\x99\xcb\xd4\x77\xbd\x40\xd2\x23\x61\xa7\x63\x86\x05\xc4\xf1\x59\xfa\x92\x14\x2e\xeb\xd0\x37\x4e\x7c\xaf\x31\x21\xb2\xe7\x2b\x76\xe7\x5c\xfb\x2a\xcc\x8c\x95\xc6\x2f\x7f\x4e\x89\x87\xcb\x45\xd2\x96\x75\xf9\x3b\x22\x60\x45\x4d\xce\x7e\x94\x17\x69\x06\x31\x2f\xed\x2b\x7e\x0f\xcb\x2e\x37\x34\x54\x19\xf6\xd2\x24\x7a\xd9\xd8\x8a\x34\xf0\x24\x98\xdd\x90\xeb\x4a\x98\x3a\x3b\x37\xdb\xca\x47\xf3\x83\x48\x3d\x9d\xee\x92\x86\x63\x38\xba\xc8\xe7\x3b\x8c\xa3\x85\xcf\xa3\x48\xa6\xf1\xcb\xc6\xe8\x16\x43\x71\x7f\x88\xe3\x8d\x2e\xfd\x0f\xa8\x31\xf7\x82\x09\x13\xb0\xf4\xc0\xf3\x09\xb4\x1a\x5d\x00\xf0\x60\x61\x6f\x9c\x64\x56\x92\x2b\x54\xbc\x56\x79\x64\x5b\xa3\x99\xf6\x42\x77\x65\xd6\x80\xdc\xe2\x12\x83\x61\xad\xa9\x93\x7f\xaf\x9b\x74\x98\x08\xd3\x91\x3f\x37\xda\xbe\xc1\xd6\x58\x7d\x9a\xf1\x8d\xe9\x20\x92\x3d\xf2\x90\xd6\x22\x45\x05\x59\x94\xab\x2a\x26\x7a\x89\x28\x24\xc9\x35\x09\x4e\x17\x59\xd8\x8d\x92\xde\x13\x13\xa2\x4b\x64\xeb\x7f\x68\xcd\x38\x5c\xf8\x31\x0b\xe6\x20\xea\xbe\x19\x37\xc9\xea\x71\x6d\x5b\x6c\xf0\xa7\xbc\x5a\x76\x65\xdc\x78\xa2\xf3\x4d\xa8\x5f\x28\x27\xaf\x3f\x14\x0f\x70\x8e\xf0\xd1\xef\x31\x1b\xb6\x14\x4c\xb0\x47\x7f\x88\x40\x12\x39\xc3\xf7\x6c\x84\x89\xfc\x5f\xd8\x76\x61\x35\xbf\x53\x23\xfe\xd9\x5a\x48\xb3\x89\xe9\x66\xcd\x7f\x29\x17\xae\x44\x64\x87\x0f\xb7\x86\xa3\x38\xd6\x96\x03\x02\xbd\xcd\xa8\x56\xc9\x4d\xdb\xbb\xd7\x38\x5d\xde\x51\x2e\x81\x23\x8f\xf1\x78\x55\x26\x7b\x04\xcd\x38\xae\xaf\xc0\xfc\x88\x92\x19\x6b\xa9\xdf\x25\xe4\xb6\x04\xa0\xf2\xeb\x36\xe6\x14\xaa\x13\xe7\x84\xc2\x5e\x66\xcc\x76\x62\x46\x10\x90\x8e\x93\xfb\x75\xb5\x9d\xad\x16\x9a\x21\x9c\xb7\xd8\xee\x0e\xb5\xe4\x59\x2d\xb7\x90\x4c\x25\x98\x56\xb4\x61\x50\x37\xb1\x98\x26\xa5\x19\x6b\xf8\xae\xc7\x2b\x01\x25\xc1\xaf\x30\xab\x45\xd8\x59\x84\xd4\x90\x53\x14\xb3\x21\x82\xd2\x3c\x4d\x60\x2a\x07\x43\x68\x8c\x97\xaf\x0b\x0f\x0c\x3f\x29\xd7\x14\xe5\x87\xdd\xd2\x9a\x6c\x2d\xbf\x19\x2a\xcb\x0d\x72\xa2\xc2\x3d\xe1\x8a\x1f\x0e\xdd\xfd\xfe\xd8\x0f\x70\xbe\xc9\xc4\xbe\x97\x2a\x0c\x38\xa5\xd5\xcd\xcc\x30\x0e\x3b\x7e\xb4\x41\x18\x4b\xe1\x27\x94\xbe\xd4\xc9\x27\xa7\x79\x31\xb4\xd5\x47\x2a\x39\x49\x65\x54\x04\x15\xec\xa7\x6b\x92\xaf\xdd\x86\x61\x69\xb0\x8b\x7c\x0b\xa9\x4f\xdd\x83\xe1\x85\x07\xd6\x6a\xba\x90\x3c\x8d\xa9\xae\xf3\x8f\x29\x7f\x79\xa3\x52\x4c\x2c\x33\xf6\x74\x30\x2f\xae\x00\xf5\xe3\x6b\x76\xf7\x3b\x0e\xd2\xbd\x6e\x88\x78\x32\xec\x18\x0d\x9f\xb4\xef\x00\x83\xe7\xf7\xa8\x1e\xf3\x2f\x80\x56\xd2\x37\x69\xcf\xb0\x74\x99\x18\xcd\x7a\x0b\x31\x39\x02\xc7\x5b\x36\xd2\x84\x1b\x01\xa4\x04\x1f\x2a\xaa\x30\x8e\xc4\xa7\x5c\x55\xc4\xd6\x0f\xec\xa3\x09\xe7\x88\x75\x8e\x0e\xc2\xb8\xc7\xe7\xf5\x2c\x24\x21\x89\xb9\xb6\x82\x6c\xc7\x8a\x76\xb9\xc6\x94\x53\xf6\x2c\xc0\x2d\x5e\x25\x8f\x56\xac\x0c\xa3\x4e\x18\x73\xad\x82\x58\x26\x2f\x11\x04\xb4\x48\x0b\x74\x89\x9f\x97\xe2\x9d\xd0\x91\xc9\x4d\x8d\x74\xd6\x6c\x6b\x98\xa5\x43\x25\xe1\x98\xf6\x58\xae\xbd\x1e\xcb\xf5\x09\xb6\xd2\x51\x99\x42\x3a\x78\xe6\x11\x2e\xc2\x1f\xa1\xe0\x3e\x99\xef\xd8\xee\xb3\xb2\xb8\x11\x26\xe2\x02\xf5\xa8\x44\xe7\x52\xa7\x5d\x6b\x18\x00\x96\xd3\x6c\x31\x4a\x7a\x52\x76\x81\x79\x3d\x45\xa8\xa9\x53\x63\x1a\x11\x09\x8b\x28\xb3\x4b\x65\x7f\xd8\xb9\x67\xc7\x1e\x7b\x99\xc6\x2b\x86\xe9\x70\x14\x87\x99\xf5\xc3\xce\x97\xcc\xed\xd6\x7a\x16\x0a\x11\xf2\x1f\x68\x32\xca\x7f\xac\xea\xe1\xe8\x87\x79\x11\xc5\x2b\x36\x3e\xc7\x20\x3a\x82\x1e\x49\x36\xc6\x9e\xe8\xf2\x56\x25\xe4\xfc\x42\x2b\x4f\x97\x22\x53\x08\x12\x66\x1d\x7b\x72\xfd\xd6\xc4\x56\xcf\xa2\x7c\xab\xe7\xbb\xfc\xc6\xab\x88\x21\x1d\xb4\xd6\xb1\x06\xa1\xd7\x8a\x40\x03\x9d\x4a\x31\x8f\x81\xdf\xa9\x27\x6b\xf3\x8b\x68\xd1\x69\x9e\x68\xe5\x96\xe4\xc8\xbe\x1d\x30\x4b\x5f\xaf\xaf\xa4\xe6\x78\x5d\x57\xc6\x15\x91\x5d\x24\x79\x77\x68\x6e\xf6\x1e\x5c\x24\x72\x9c\xd7\x09\xcc\x01\x71\x71\x54\xb4\xfe\x60\x4c\x91\xae\xcc\x2c\x68\xdc\xea\xbd\x53\xd3\x8e\x25\xba\x79\x45\x6f\x37\x66\x6b\xba\xe7\xad\x15\x13\xc7\xe9\x72\xc3\x07\x71\x00\xba\x6b\x82\xb3\x8b\x94\xc1\x3b\x69\xd6\xcd\xb7\xda\x53\xa3\xb4\xcb\x13\x1c\xcc\xc4\x9d\x8e\x64\x0a\xe5\x96\xb7\x02\xc2\xbb\x0b\xbe\x42\x27\x06\x7c\x75\xa8\x1f\x26\x56\xbd\xa2\xe9\xfb\xe9\x18\x05\x51\xde\x29\xc2\x68\xff\x26\xf1\x87\x8e\xba\x2b\x8f\xf8\xce\x38\x18\x6d\x10\xbd\x4f\x31\x00\xf2\x47\x88\x54\x94\x30\xc6\x3e\x84\x34\xc0\xed\xa7\x20\x34\xd9\xb2\x4a\x28\xea\x4b\xc4\xa1\xfa\x0d\x80\x05\xb5\xa8\x45\xbc\x06\xc7\x40\x96\x2e\x3b\xf1\x3f\x7f\x8a\x92\x9c\x13\x81\x57\x31\x12\x0a\x02\x14\xdc\xa6\x56\x6d\x06\xc8\xb2\x36\xd8\x94\xd7\xed\x64\x24\xf2\x95\x66\x1b\x49\xa3\x22\x9b\xec\x67\xe2\xe6\x5b\x58\x77\x18\x60\xa9\xba\x4b\x3f\x8c\x95\x9e\xef\xdb\x6d\xad\x04\xa1\xa5\xd1\x55\x17\x6c\xc3\x3c\x64\x3f\x3f\xb2\x5f\xcc\x9d\x0f\xff\xef\xe2\xb1\xdc\x9c\x81\x03\x34\x37\x56\xa9\x6b\xf8\x7b\x64\x56\xcc\x4b\x45\x66\x06\x56\xe7\x61\x6e\xb7\x44\xe3\x67\xc7\x8d\xaf\x7c\x49\xbe\xe9\x49\xbb\x49\xf1\xe7\x31\x0f\x0a\xd3\x74\xb3\x4e\xcf\x36\x36\x79\xde\xe4\x41\x35\x52\xa7\x00\x43\x88\x9a\x12\x1f\x1c\xbf\x38\x8a\x8c\x95\x84\x72\x18\xcf\x3f\x1f\x53\x80\x79\x6b\xec\x51\x03\x77\x6b\x32\xb4\xd9\x56\x66\xba\x66\x21\x72\xd4\xfc\xa8\xa9\x4b\xe4\x28\x37\x6d\x0f\x08\xcc\xc3\xa4\xbb\x1c\x75\xfa\x46\x38\x0b\xf1\xa2\x65\xdc\x47\x6e\x08\x57\x1a\xc6\xc3\x9c\x28\x5b\xd7\x99\xb2\x75\x9d\x78\xb7\x51\x19\x81\x69\x86\x5b\xf8\x29\x31\xdb\xfd\xd4\x33\xe3\xf7\x43\x3f\xf2\x20\x07\x8a\x98\xa8\x2e\x50\x62\x68\x5e\x4a\x31\x04\xe0\xab\xd8\x6f\xd3\x60\xd6\xdb\x95\xf0\xf0\xc0\x73\xad\x61\x1c\x26\x89\xe9\x5a\xef\xe4\x1a\x8f\xe5\xd7\x74\x89\x0f\xb5\x01\xec\x57\x56\x98\x21\x29\xb3\x14\xd9\xa8\xd7\x8b\x4d\xde\xf4\xb8\x37\x51\x3a\xc3\x16\xfd\xd7\x30\xd5\xc2\x9c\x5b\x79\x8c\xb9\xdd\xd6\xec\x2c\x99\x6c\x0b\xcd\xab\x81\x5e\x08\x5b\x41\x04\x70\x25\x50\xb3\x06\x55\x55\x76\x09\xd5\xf1\x80\x82\xce\x62\x39\x2a\x3a\xfd\xa6\xcf\x3f\x51\x37\xd5\xb2\x9f\xfd\x73\x3a\xfe\xf6\xb0\x2e\x5b\xd7\x2c\x98\x24\x87\x88\x18\xb9\xbe\x39\x57\x5e\xf0\x09\xa2\xe0\x30\x84\x56\x73\xd2\x6d\x75\xa3\x06\xc1\x82\xce\x05\x8c\x64\x24\xe0\x58\x9e\xa6\x09\x12\x69\xb8\xb4\xd7\x03\x1a\x9f\x01\xe1\x18\xda\x1f\xbf\x1f\x78\xa2\xf1\xcb\x94\x48\x9b\x17\x47\x61\xbc\xd5\xc3\x64\xdf\x66\xd1\x8c\xd7\x70\xb2\xe4\xc6\xae\x85\x8a\x35\x95\xe6\x03\xdf\x02\x4e\x5a\xae\xa9\x12\x92\x8f\xb2\x2c\x1d\x25\x5d\xd3\x6d\xb0\xb9\xf8\xf7\x41\xa9\x66\x5b\x71\x38\x2c\xd2\xa1\x54\x12\xb4\xe4\x47\xb8\xaa\x8b\xae\x14\xd2\x4b\xf3\x3c\x1a\x36\x26\xcb\x6e\xde\x43\xf1\x3c\x57\xb4\x14\xc5\x51\x98\xb0\xbc\xff\x79\xa6\xd9\x3c\x1f\xf8\x04\xbd\x67\x12\x11\xe7\xce\xa7\xa8\x9f\x29\xfc\x23\x8e\x84\x7f\x6e\xb7\xd8\x99\x86\xcd\x93\xe5\xba\x5d\xe3\x48\x81\xf3\xda\x42\xd0\xcd\x8f\x98\x8d\x02\x24\xc6\x8e\x10\xc1\x41\x42\xe5\xec\x28\x85\xe2\xd3\xb4\xb4\x43\x93\x0d\xc2\x6c\xd1\x08\xa2\x17\x46\xf4\x8f\xc7\xbe\x63\x2a\x14\x21\x48\x31\xae\xb8\x15\x5b\x32\x45\x6a\xba\x5b\x89\xc7\x4f\x44\x8b\x5c\x99\x67\x6e\xb7\x63\x6f\x2a\x4f\x8c\xea\x04\x7b\x50\xeb\x3d\x6e\xb9\x6f\x72\xe8\xa1\xf9\xcc\x84\x8b\xdb\xfd\xc1\x3f\x8d\x80\xdd\xe9\x6a\x3a\x53\x01\xf3\x8e\x1f\x3a\x1f\x50\x77\xeb\x2e\xe6\xfd\x1d\x42\xcd\x1f\xde\x35\x2e\xc5\xdf\x0c\x36\x2a\xf8\x58\x74\x73\x3a\x18\x86\x45\x34\x1f\xc5\x22\xf6\x34\xeb\x19\x46\x67\x3c\xab\xa8\x77\x08\xf9\x20\xcc\x8a\x32\x71\x2d\x3f\x46\x55\x65\xec\x76\x97\x9b\xca\xfc\xce\xec\x73\xfb\x5b\x4b\xe1\x4b\x76\x07\xc1\xf3\xbc\x8d\x03\x2c\x37\x6e\x1a\xbb\x6b\xc2\xa4\xc9\x40\x45\xc8\xd5\x60\x59\x1f\x59\x25\x3e\xe9\xc7\xdb\xfe\x24\xa6\x0b\x85\x49\x76\x35\xbd\x60\x22\xe4\x0f\xdc\x30\xa3\x2f\x61\xdf\xc2\xda\xe0\x90\x03\xa3\x02\xcf\xf9\x3e\x4d\xeb\x6e\x6b\xfb\xe1\x8d\x9d\x76\x84\x19\x76\xe6\x14\x02\x71\x69\xa5\x8f\xa9\x31\x25\x38\x18\xd4\xcd\x9a\x00\x4b\xa9\xf2\xaf\x5d\x18\x6b\xc1\xbe\xba\xab\x6d\x23\x14\x9d\x31\xb6\x9c\xf1\x42\x66\x20\x4f\x51\x2b\x2f\xcc\xdc\x3c\x6e\xbb\xd9\x43\xa4\x5b\x8f\xb4\x4f\x7a\x29\x35\x58\x25\x50\x55\x50\x76\x0d\x28\x78\x25\x1d\x25\x3d\x7d\x97\x5a\x93\xb5\xcb\xac\xa2\xd5\x7e\xba\x38\x4c\x8a\x28\x33\x61\x1c\xe5\x45\xd4\x61\x15\xcc\x93\xa4\x8b\x7d\x9b\xfa\x65\xe7\x28\x79\x1b\x0d\xe7\x4d\x88\x5a\x01\xe2\xa5\xbb\xc4\x2f\x7a\xb7\x52\x17\xfc\x42\x2b\x37\x4b\x26\x03\x52\xd7\xd1\xaa\xa1\x1d\x20\xd7\xab\xd5\xea\xcb\xfe\x56\x9e\x8e\x7a\x7d\xdb\x00\x99\x75\x46\x96\xb8\x8f\x8e\xd0\xd8\xc9\x11\xf6\xaf\x27\x2a\xd8\x94\x7d\xfb\xe6\x5a\x9d\x74\x94\x47\x49\xc3\xcb\xa0\xa0\x3d\x23\xd7\x13\xd8\xee\x22\x1d\x3e\xe2\xcb\x79\x42\x54\x08\x8f\x67\x29\x1c\xf7\xaf\x43\xb0\x42\x13\x93\x32\x70\x84\xbd\xb9\x8e\xce\x85\x9b\xe8\xf4\x8b\xff\xfb\x96\x47\x00\x49\xdc\xff\x4e\x3c\xa0\x9b\xa0\x5c\x06\xf3\x7b\xc5\x03\xc9\xa2\xf9\x86\xef\xef\x20\xce\x97\xeb\x0a\xa4\x7c\xdf\xbe\x56\x27\x2c\xfa\x26\x8b\x12\x94\x52\x9d\xde\xb4\xa7\x03\xb8\x54\x39\xc7\x7b\xf6\xb4\x06\x69\xdc\x9d\x22\xdd\x5b\xb0\x8e\xea\x64\x79\xf9\x97\xc4\x24\x05\xa4\x09\xff\xf6\x43\xb5\x60\x16\x4c\x96\xa5\x4c\x0f\x35\xa6\x16\xeb\x45\xd6\x0e\x1e\xe5\x43\x93\x40\xe6\x79\xaf\xee\xa1\x1f\x13\xba\xe8\xc7\x75\x1a\xec\x8b\x49\xba\x9c\xd8\x62\xbc\x56\xbc\x08\x17\x71\x39\x70\xe4\x5a\x32\x55\x6c\x32\x45\x4e\x20\x0d\x01\x96\x05\x5e\x44\xea\x83\xc2\x87\x51\x09\x62\xca\x05\x4d\x07\xe5\x23\x5a\xf7\x07\xcf\xaa\x8b\x4a\x0b\xec\x92\xac\x38\xec\x9a\xa4\x49\xe8\xc0\x35\xd2\x00\x13\x35\x61\xc1\x09\x39\x12\xb0\x28\x29\x4c\xb6\x64\x92\xf2\x13\x50\xbb\x62\x4d\x07\x58\x9c\xab\x38\xbe\xd2\x4b\xad\x93\x10\xe9\xa5\x05\x7e\x19\x0b\x07\x33\xef\x66\x88\x3d\x3c\xe4\x5e\xed\xdc\x47\xee\x5a\x15\x6e\x5e\xf6\xa0\x5a\xa2\x2a\x72\x65\xef\x4c\x2b\x4b\x2d\x63\xa8\x0d\xeb\x54\xd3\xce\x3e\xa2\x5a\x32\x52\x12\x86\x18\x21\x22\xa5\x8f\xea\x48\x04\xa1\x4a\x48\x2c\xaa\x97\x99\x45\xf5\x72\xe0\xe7\x4b\x46\x45\x94\x8e\xf2\x26\x8f\xbb\xd1\xe4\xed\x47\xe8\xad\x6a\x4d\xc8\x0f\x98\x0c\xd3\xac\xc8\xc2\xf2\x3b\xfa\xf6\xee\xf7\x68\x50\xe7\x7b\x64\xd3\x86\xe1\x8a\xc9\x72\xbb\x1f\xf1\xf8\x8d\x55\xcf\xf1\xd7\x68\xfb\x1a\xda\x30\x4b\x0b\xd3\x11\xe8\x24\x93\x71\xc3\x11\x1d\xb5\x31\x21\x45\x2e\x1a\x93\x1e\xb3\xa9\xa3\xfc\x07\xc7\xa7\x77\x02\x02\x2b\xbf\x61\x1f\x0f\xa6\xf8\x47\x34\x25\x69\x91\xac\x05\xe6\xaa\x84\x36\xd1\xbe\x6a\xa5\x50\xac\x03\xf0\xdb\x4a\xb3\x94\xbb\x94\x94\xb9\x41\xec\x69\x95\xfe\xd5\x73\xfb\x5b\x26\x36\x3d\x65\x50\xd6\x71\xef\x89\x41\xf0\xc7\x08\x28\xb1\xdc\xf0\xad\xd5\xcb\x04\x38\xbf\x5c\xee\x54\xad\x5a\x98\xb0\xfb\xe2\xc8\x06\x19\xf9\x14\x4d\x3a\xff\x7a\xe0\xe5\x74\x7f\x7d\xec\x21\xd6\x50\x2e\x93\xeb\xf1\x46\x3a\xc5\x83\xbb\x9f\x57\xed\xed\x30\xe9\x86\xf3\xf1\x0a\x0d\x93\x63\xa6\x50\xae\x03\xaf\xd0\x36\x8c\xe0\xab\xb0\xf6\x6f\x11\x45\xe4\x5b\x13\xa2\xa6\x03\x93\x59\xf3\x82\x97\x7a\xd3\x3e\x94\x5c\x53\xb5\xaf\xf4\xe0\xdd\x91\xb1\xa5\x4b\x14\x8e\x6f\xd9\xaf\x2e\xd7\x15\xeb\x5c\xae\xea\x7c\x94\x15\xfd\x6e\x88\x91\x13\x54\xaa\x60\xd2\xe5\x7a\xfc\x74\x35\xbb\x2c\x9d\x3f\x0b\xbd\x1c\x54\xae\xd3\xcb\xac\x7d\xea\x15\x2f\x10\x75\x20\xd9\x91\xeb\x3a\x59\xd5\x79\xd3\xcb\x9b\xa4\xa4\x7a\x62\x4c\x45\xf8\x2b\x30\x55\xa8\xd9\xbd\x37\x41\x30\x9e\x14\x59\x98\x81\x33\x42\x29\xe6\xca\x4f\x95\x6b\xd2\x67\x5c\x30\x61\x31\x12\xdb\xab\xa3\x78\x27\xc8\xa6\x5d\xb4\x2f\x58\xb8\xbb\xea\x46\x94\x32\x63\xb1\x34\xa8\x18\xc0\x93\x3e\x20\x45\x94\x07\x54\x08\x08\x6d\xdf\x0b\x0a\xe9\x4e\x1c\xb3\xb4\x05\x08\xf8\x80\x70\x45\x11\x15\xa5\x1e\x64\x81\x67\x6d\x83\x4d\xae\xc7\x8c\xc2\x23\x7a\xed\xf3\x15\xe1\xac\x83\xbb\x67\x5b\x21\x6a\xd6\x00\xde\xfc\xb6\xdd\x22\x72\x5d\x83\x05\x98\x6e\x65\x51\xbe\x28\xc2\xef\xcc\x5f\xa9\x40\x47\x4f\x42\xd0\x09\x97\xc2\x38\x2a\x37\xa0\x2b\xb5\xa1\x85\x27\xd7\x15\x02\xe7\xbd\x33\x96\xd6\xc7\x64\x0b\x91\x89\xbb\x46\x86\xef\xf0\xe6\x4e\x20\x32\xd6\x73\x4e\xb0\x8b\x09\x8b\x92\x2c\x44\xd9\x00\xe6\x5f\x89\x21\x89\x8e\x9b\xd2\xc6\xa1\x29\x22\xc9\x03\x7d\x6d\x56\xfa\xa5\x9a\xa7\x94\xcf\xad\x54\x4b\x34\xfe\x78\x91\x18\x0e\x5f\x36\x09\xac\xa6\x3a\x37\x8f\x97\xdb\x0c\x09\x4c\x98\x8f\xb7\x99\xce\x0e\xf8\x1d\xf9\x0f\x58\x4a\x16\xf9\x55\xd1\x0d\x9f\x4c\xed\x58\xdd\x78\x98\x9e\x69\xc5\xc2\xe4\x8c\x9f\x7e\xb4\xed\x0b\x7a\xf0\xb6\x30\x43\x52\xc6\x82\x73\xff\xf3\x5a\xae\x96\x5e\x66\xca\xac\x18\x64\x2f\x88\x2b\xa0\x9e\xa6\x01\x14\x35\x61\xce\xd7\xc5\xe8\x83\xb0\x1f\x16\x03\x95\x27\x50\x80\x82\xfd\xbe\x72\x13\x28\xcd\xd1\x62\xd4\x4d\xc2\xe1\xd0\xd1\x1c\x29\x43\x6d\xc3\x29\xc1\x40\x0a\x4a\x47\x71\x9e\x74\x81\x85\xd5\x05\x1e\x58\x5a\x73\xaf\xa3\x70\x99\x45\x73\xec\xd2\x2b\x8f\x04\xe3\x9a\x87\xa3\xa4\x59\xda\x40\x18\xa6\x8f\x03\x5f\xd4\xf8\x21\x49\x79\x3f\x20\x4a\x0f\xd3\x8d\x0a\xa0\x5f\x91\x00\x9e\x20\x95\xb8\x13\x04\xde\x4f\x87\x26\x79\xd4\x37\x72\x7e\x0f\x75\x2d\x07\x7f\x77\x33\xc2\xbf\x0d\x6f\xee\x4a\xe6\xe5\x4a\x3b\x50\x87\x4b\xfe\x7e\x07\xc7\x56\xa5\x10\x6c\x8a\x88\xd2\x12\xa6\xc9\x9d\x14\xf9\xf4\x01\x8f\x37\x2b\x57\x59\x40\x00\x64\x43\xf3\x7e\x79\x82\x9a\xde\xb2\xc1\x6c\x4c\x94\xb8\xab\x9c\x5f\x5d\xd3\x31\x43\x2b\x1a\x52\x2e\x91\x1e\x68\x3a\xdc\x6e\x3c\x56\x53\xbe\x2d\x9c\xe5\x79\x5e\xf1\x8f\x26\x2a\x0f\x70\xb6\x78\xbd\x7f\x40\x61\xc5\x83\xda\x61\xe6\xcc\x84\x78\x70\x52\x5c\x99\x95\x1e\x9d\x54\x59\x25\xdd\xad\x03\x65\x8e\x92\x91\xeb\xd6\xe1\xe3\x8f\xdb\x4f\x94\xeb\x60\x47\xd4\x1a\x66\x66\xe1\x6f\xb6\x46\x9f\xf6\x7a\x41\x7f\xeb\x73\xab\x8d\x3d\x7b\xbc\xae\xef\xac\x83\x43\xfc\x14\xed\x48\x6d\x68\x13\x52\xf2\x1c\x0f\xf5\x1f\xb7\xf8\x0b\x9c\xd5\x5d\xed\xc6\x17\x0f\xf9\x86\x88\x63\xed\xd8\xd9\xf6\x83\x71\xbb\xda\x65\xe2\xa4\x0c\xd9\x94\xdb\x6e\x5d\xb5\x3b\x08\xf1\xed\xe6\x55\xdf\xf2\xfe\xab\x36\xb3\x84\x0e\x0b\x9a\x6f\xae\x08\x7b\xc8\x91\x0e\x9c\xb4\x61\x00\xb6\x73\x73\x95\xa7\x05\x6f\xda\x82\x3c\x4c\x82\x00\x6a\x00\xba\xb4\x83\x1d\xb3\xae\x3a\x4c\x74\xdf\x37\x49\xf5\x70\xc1\xa6\x62\x56\x1d\x1d\x21\x7f\x03\x2d\x13\xec\x5b\xe1\x5f\x95\x1b\x4e\x90\xce\x61\x13\xcb\xef\xb4\x29\xf3\x0e\x98\xbf\x34\x5b\x2c\x93\x58\x27\x14\xb4\x81\x99\x87\xd4\xd9\x92\x5e\x94\x18\x80\x74\x11\x64\x9d\xa6\x41\x96\xd3\xf4\x37\x33\x93\xa7\x59\xb1\xcd\xae\x2c\x66\x79\x8e\xd3\x4f\x1e\x21\x85\x26\xd8\x1e\x35\x0d\xf6\x6d\xa3\x91\x74\x02\x34\x24\x72\x03\x17\x2c\x7f\x2a\x78\xb2\x22\x0d\xf1\xf9\xa6\x57\x50\xc7\xf0\x31\xb6\xef\x18\xdf\x05\x66\xa0\x3a\xa8\xbe\x77\xc6\x82\x9e\x25\xa0\x75\x8c\x91\x33\x0a\x15\xad\x65\x35\x8b\xd3\xc1\x7c\x98\x75\x9b\x1b\xd1\xd0\x58\xda\x1f\xf3\xa0\xd0\x75\x1a\x2f\x89\xc3\x79\xb0\x86\xf9\x16\x28\x88\x3b\xe4\xba\x12\x59\x7d\xa1\x35\x6f\x19\xdb\xcb\x6f\x06\x3b\xf4\x20\x20\x9a\x17\x18\x5f\xc5\xee\x7a\xdb\xb3\x90\xc6\x71\xba\xdc\x9c\x28\xaf\x7b\x60\xef\x31\x56\xeb\xbb\x53\x99\x68\x29\x1d\x12\xd5\x40\x1b\xbe\xcc\x7d\xd2\x1a\x22\xb9\xae\x41\xb6\xec\x6f\x0d\x6c\x90\xd6\x20\xf8\x38\x86\x01\xe4\xba\x86\xb6\xad\x15\x87\xc3\xdc\x48\xba\xe8\xc4\x81\xcb\xe7\x53\x46\x8e\x87\xf5\x02\xfa\x66\x39\x36\x45\xd1\xa8\x30\x15\x2a\x1f\x0d\x65\x61\x69\x1c\x1b\x54\x05\x34\xad\xb0\x07\x50\xf3\x8a\xbf\xfa\x90\x8f\x98\xcf\xc2\xd1\xc0\xd8\xac\x5f\xbb\xd0\x3a\x62\x4b\x82\x72\xb7\x09\x86\xf3\xe2\x28\xea\x2c\x2e\x45\x66\xd9\xf2\x5e\xbb\x5a\xef\x5e\xc7\xda\x4f\x10\x84\x42\x27\x51\x05\x4e\x16\x4c\x60\xcb\x2a\xbb\x6e\xba\xb5\x10\x76\x8a\x34\x5b\x21\x14\xdc\x65\xa2\x99\xb8\x4c\x5f\x38\xb6\x12\x9a\xd6\xe5\xe2\x73\x3f\xa6\xe2\xe5\x26\x6b\x06\x31\xec\xf6\x35\xea\x56\x74\xd3\xd1\x7c\xb1\x9d\x88\xf2\xcf\xd8\x80\x16\xb0\xbf\x3f\x65\x09\x3d\x54\xaf\x75\xb2\xb1\xfc\xcb\xd8\x4c\xaf\x8e\x7d\x06\x2f\x95\x6c\x58\xd8\x29\x6a\x5a\xbd\x55\x97\xb4\x0f\xc3\x24\x74\xf1\x0b\x76\xba\xb0\xe2\xca\x4d\xcd\x60\xd8\x4c\x6b\x10\x66\xbd\x28\x69\x7a\x3c\x34\x2a\x86\x6e\x3e\xda\xcb\xd1\x5d\x9c\x68\x00\x99\xac\xdb\xf0\xed\xee\xd7\xed\x2f\xc9\x35\x8f\x0a\x8f\x32\xb3\x83\x27\xe0\x98\xb7\xe5\x0c\x81\x2a\xef\x04\x8d\x43\xb3\x4e\xcd\xd6\x2e\xa0\xce\xcc\x95\x0b\xa8\x13\x50\xe5\x27\x6a\x77\xd2\x6b\xf5\x41\xf2\x56\x87\xda\x37\x46\x87\xcf\xb4\xba\x66\xc9\xc4\xe9\x50\xab\x4e\xc2\x0a\x65\x23\x28\xe5\xf4\xa7\x32\xff\x8f\x6b\x8a\x94\x2a\xf8\xde\xb4\x06\x14\x6e\xf8\x16\x75\x36\xdf\x83\xfb\x53\x29\xcf\x8d\x06\xf2\xf0\xe1\xd6\x20\x5c\x99\x37\x4d\x6a\x84\x23\x27\x86\xf9\x16\xea\x70\x05\xbc\x71\xd8\x37\x1f\x8a\x34\x79\x5d\x2d\x6e\xe3\x2e\xf8\x5c\xeb\x17\xa7\xf7\x3e\xbb\xf7\xc0\xfe\x66\xe9\x42\x51\x51\x43\x75\x0d\x5b\x75\x7d\x92\x27\xd1\x27\x00\x99\x79\x09\x42\xb1\x28\x96\x0a\xf9\x9b\xdc\x3c\x94\x84\x79\x08\x32\xdb\xf2\x9b\x0b\xb7\x04\x0d\x71\x6f\x06\x3e\x12\xeb\x73\x9b\xc4\xcd\xa3\x24\x2f\xa2\xc2\xd2\x7d\x0a\xd1\x0e\x6b\x94\xe8\x4d\xe5\xf0\x1e\x3e\xdc\xca\x8d\xad\x71\x21\xe8\x16\x91\x3c\xfb\x89\xa8\xf5\x03\x41\x08\x3b\xd9\xa8\xd4\xad\xf7\xed\x6b\xf5\x4d\x96\x1b\xc0\xd3\x67\x3d\x05\xcb\xec\x9c\xbb\x79\xa8\x48\x44\x6f\x14\x66\x61\x52\x18\xed\xae\xbb\x7c\x8a\xb3\x2e\x0d\x2b\xad\xd1\xef\xfe\x7f\xa4\xbd\x79\x8c\x24\xd9\x79\x27\x36\x9d\x55\x7d\xcc\x74\xcf\xc5\x19\x6a\x77\xa5\xb5\x91\xc4\x12\x1a\x19\x4b\x0d\x28\x19\x30\x60\xf9\x8f\x48\x57\x97\x38\xec\xc6\xaa\xa6\x50\xdd\xea\x91\xe6\xaf\x79\x19\xf9\x32\x33\x58\x91\x11\xc9\x38\xaa\xa6\x06\xfe\xc3\x36\x8c\x85\x01\x2f\x0c\xac\x21\x2f\x7c\xc0\xb0\xbc\x5e\xaf\x57\x58\x59\xa2\x0e\x92\xa2\xb8\x72\x16\x0f\x91\xa2\x78\xcd\x41\x72\x86\x73\xf6\xf4\x7d\x54\x77\xf5\x7d\x77\xb5\x11\xdf\xef\xfb\xde\xfb\xa2\x32\x5a\x36\xe0\x7f\x88\x4c\x4e\x57\x66\x46\xc4\x7b\xdf\xfb\x8e\xdf\x11\xaf\xd1\xd1\x86\x0e\xe1\x8d\x40\x27\xae\xfe\xb8\xfa\x40\x41\xc0\xc2\x34\x4b\x6c\x1c\xf3\x06\xae\x49\xd7\x89\x6d\x52\x43\x4d\xce\xb2\x88\x33\x9e\x98\xf4\xa3\x40\xb5\xe2\x7f\xa4\xa0\xc6\xc3\xc9\xb3\xba\x57\x16\xdb\xc2\x64\x11\x7b\x85\xb8\x68\x75\xf0\xa0\xbc\xae\x2d\xc3\x32\xca\xc1\x45\xc4\x42\xfa\xd7\x4a\x96\x92\xef\x02\xde\x5c\x62\xe8\x85\x40\xe4\x9e\xad\xe7\x18\x07\x0f\x1e\x6a\xcf\x1f\x7e\xd2\x33\x1c\xae\x06\xbe\xe7\xf3\x23\xed\xf4\x75\x85\xb6\x27\x32\x1d\x70\x70\x85\x00\xa5\x8c\x53\xef\x21\xb1\xad\x41\x5b\xf0\xcd\xb7\x54\x13\xeb\xf6\x44\x61\x09\xd9\xca\x41\xf9\x14\xc8\x0c\xf7\x7b\x14\x8e\xf0\xc1\xbb\x91\x5d\x22\x20\x40\xa8\x12\x41\xf0\x7f\x69\xe2\x25\xc6\x25\x8b\x73\x21\xfd\xdd\x52\xaa\x3a\x5b\x4a\x86\x36\x1f\xa6\x99\xa5\x43\x0d\x6b\x5c\xc9\x84\xbf\xb7\xa3\xe9\x5c\xef\x9a\x64\x59\xd4\xa2\x65\xba\x44\xd7\x28\x12\x71\x3e\xaf\xb8\xa5\xfa\x3c\xdd\x38\x4a\x96\x05\x92\x8d\xf5\xf7\x8e\x42\x00\xbf\x33\x15\x9e\xaa\xea\xf7\xb9\x2e\x23\xa9\x1a\xb3\x57\x9d\x93\xf6\x7a\x16\xcc\x65\x09\xbe\x14\x38\x30\x02\xf9\x6b\xc4\x41\x04\xc8\x4b\xdb\x25\x6b\xaa\xf3\xe6\xc8\xdc\xc2\xde\xea\x4c\xc5\x7d\xde\x0b\x1b\x4e\xd4\xbb\xbb\x3b\x74\x38\x20\xbe\x9f\xa2\x62\x91\x4d\x54\x74\x74\x65\x7a\x18\x2f\x69\x5a\x25\x80\x49\x6d\xd1\xed\x70\x96\xe0\xd5\xf3\x73\x8d\x0a\x27\xec\x71\x59\x49\x81\x5e\x99\x3c\xa3\x36\x5f\xd2\xb7\x99\x4d\x42\x0b\x27\x2d\x36\xf1\xd0\x5b\x89\x45\xfc\xc4\x56\xcb\xe3\x93\x58\xbf\x52\x46\xc1\xfe\xbc\xba\x49\x89\xe6\x16\x3a\x7f\x58\x7e\x3f\x08\xfc\x7a\xa8\xce\x94\xb5\x5d\xf4\xa1\x60\xed\xcf\xd0\x9c\x9e\x5f\x77\x7c\x8f\xe9\x38\x0a\x46\x75\x56\x49\x2b\xec\x62\xa0\xc4\x3b\x8e\xd7\x0e\xe8\x28\x5f\xde\x47\x7f\xe6\x66\x0e\x8b\x2f\x1e\xf2\xa2\xe1\x3e\x77\x83\xdc\x64\xcd\xd4\xd8\x01\x97\x8f\x48\x6e\x7e\xb5\x26\x63\xe9\x01\x72\xcc\x91\x02\xa0\x85\xfb\xe5\x0c\x5f\x0a\x14\xea\xe9\x16\xb6\x36\x9a\x7f\x17\x95\xcb\x89\x53\x9a\x42\x3d\x24\x35\x71\xcb\x99\xb6\x9c\xdc\x5e\xa6\xfc\x46\x7b\x61\xe1\xd9\x29\x78\x99\x8c\x62\x4e\x04\x3e\xcf\xc7\xc0\x54\xe9\x83\xbc\xe0\x8f\x37\x1f\x68\x10\x9a\xb1\x84\x60\x78\x8c\x87\x07\xd1\x58\xf7\x00\x3c\x6a\xee\xcb\x48\x4f\x58\x18\x92\x6a\x66\x37\x24\xf1\x70\x88\xd9\xf5\x2a\xb0\xa1\x87\xb6\x81\x47\xe6\x80\x90\x2f\x39\x9a\xea\x95\x40\x1f\x3f\x1c\x3b\x1d\xd0\xc2\xc9\x39\x9c\x25\x36\x04\x5a\x1d\xb3\x9d\xe9\x09\xdc\x7c\xfb\x0b\x26\x62\x44\xac\xa8\xfd\xf9\x11\xec\x45\x25\x63\x5f\x1d\xbe\x59\x49\x80\x72\x7a\x70\xe8\x74\xdc\x56\xc4\xdf\xdb\x4d\xb2\x67\xd5\x8b\x65\x1c\x7e\x8b\x4e\xde\x4c\x21\xf9\x9b\x84\xf1\xda\xab\x26\x72\xda\x49\xa2\x00\x42\x7f\xc3\x6f\x02\xe9\x8b\x8d\xb3\x74\x94\xaa\x7c\x40\x60\x34\x3e\xbf\xbc\x30\xd9\xab\xea\x67\x5a\x2a\xa8\x62\x21\xfd\xc4\xaf\x27\xcf\x3a\x80\x43\x5e\x98\x6e\x14\x47\xaf\xb9\x74\x01\x4d\x87\xbd\xeb\xae\xc4\x5c\x7a\x86\x76\x18\xa2\xfa\x75\xcf\x18\x1d\x46\x45\x61\x96\xd9\xd7\x1c\x95\xc4\x9b\x08\x86\xfc\x46\xf5\x86\xbb\x26\x5c\xee\x65\xe9\x78\xc6\x0f\x4b\x6f\x63\xd9\xcb\x4c\x51\xc5\xaa\x69\x3d\xb9\x85\x85\xf6\xd0\x2a\x20\x1c\x22\xdf\x31\x95\xe5\x1e\xd3\x36\x34\x69\x86\x23\x58\x38\xe6\x2d\xa7\x32\x31\x43\xf8\x09\xac\xfa\x6b\x81\xaa\x53\xef\x37\xfa\xf1\x7e\xb1\xb4\x26\x8f\x44\xbb\x1c\x6b\xf4\x0a\x2d\x37\x7e\x1d\xc8\x8d\x4c\x0c\x1e\x0b\x81\x11\x5a\xbe\x93\x8c\x61\x18\xbf\xd6\xf5\x8f\x49\x42\x0b\xaf\x3b\x31\x9b\xf0\xcf\xea\x0e\x3d\x2b\xec\x95\xd3\xda\x32\xf7\xa3\xc0\x77\xca\x3e\x52\x59\x69\x69\x01\xdd\xc6\x7f\x61\x60\x0a\x5a\x02\x0f\xb0\x23\x71\x24\xa0\x2e\x00\x70\xe9\x81\x0a\xb0\xd5\xff\xe4\x98\x76\x38\xeb\x0b\xcf\x8a\x61\xe6\x15\xba\x1d\xb7\x1b\xf0\xc5\x87\xda\x99\x89\x72\x3b\xa3\x9c\x84\x67\x3b\xbe\xc7\x0b\x89\x61\xfc\xff\x1b\xfa\x98\x4f\xe3\xa8\xa7\x00\xe3\x3b\xa8\xa9\x8d\x87\xb3\x85\xc8\x83\x93\xf3\x6d\xd5\x6e\xe8\x5a\x53\x14\x6b\x94\x1c\xd4\x04\x9c\xf8\x8d\x22\x4e\xae\xda\x9e\x00\xd6\x1c\xd1\xde\xc7\xbf\x33\x1e\xa7\x60\xc7\xfc\xcf\xd8\xa7\x59\x2f\xe2\x53\x53\x0e\x29\x9f\x69\x67\xb6\x5f\x66\xdd\x28\x1f\xba\xf5\x88\xb4\xf3\xcf\xe8\x59\xf3\xeb\x46\x0b\x88\xa1\x81\x7f\x10\xce\x93\xfb\x08\x70\xb8\x49\xbb\x3b\xad\xdf\xfc\x1d\x37\x2a\xf1\x73\xdb\xe3\xea\xfc\x9c\x25\x8b\x14\x1c\x40\xd3\x78\x93\x03\x0b\x6d\x93\x0f\xcb\x2c\x2f\xd4\xfa\x3b\xa6\xb1\xe8\xc7\x6a\xf2\x56\xb6\xb0\x8f\xf9\x59\xec\x19\xc5\xc5\xfd\x6b\xdd\x71\x78\x03\x9f\x80\x4c\xea\x2c\x53\x39\xb0\x84\x4e\xab\x42\xff\x01\xf1\xa7\xd9\xed\x09\x5b\x1b\x7f\xcf\x32\xa7\xfc\x46\x79\x3e\x3f\xb2\xde\x84\x2e\x62\xc8\x1e\xf7\x75\x84\x18\xe1\x7b\x58\xd3\x6d\xe0\x83\x07\x97\xda\xfd\x34\x2c\x81\x3f\x45\x46\x05\x66\x1d\x43\xd3\xe9\x74\xc6\x5d\xbe\xaf\x44\xb3\x07\x59\x5a\x14\xa9\x68\x58\xe0\x8a\x70\x62\xf3\xeb\x89\x9a\x08\x66\x65\x54\xf4\x4b\xe8\x83\x8b\xee\x03\x5d\xa4\x08\x42\x3c\xad\x31\x11\xa3\xe8\x55\x16\xb7\x41\xf1\x75\x59\x6b\x1b\x5d\x9e\x5a\x52\xf3\x87\xdb\x36\x29\xa2\x22\x66\x02\xd3\xc1\x83\x4c\x9a\x7d\x84\xc2\x15\xbf\xee\x6c\x7f\xe0\x9f\x7b\xa9\x6d\x6c\x61\xb3\x44\x1b\xb4\x9e\x55\xe2\x6c\x5f\xa3\xd2\xdf\xbb\x6a\xfb\x67\x3f\x10\xc7\x2b\xf4\x4f\x36\x28\xb3\xe1\xd7\x0d\x12\x37\xec\xcd\x49\x57\x2f\x76\x9c\x2d\x27\x70\x7c\x4e\xa9\xf5\x14\xd1\x38\x27\x75\x71\xec\xdc\x1f\xa3\xbb\xee\x34\x4c\x1c\xf5\xf1\xac\x02\x10\x87\x69\x12\xc6\xa5\xf8\x29\x68\x0f\x0d\x8c\x58\x2f\x05\xbe\xcf\xfd\xba\xb7\x60\x29\xec\x88\xb4\x4c\x17\xbd\x6e\xe6\xa2\x13\xd3\xfe\x70\xe2\xa9\x74\x5c\xbc\x60\x35\x30\x4d\x5f\xd3\x61\xf0\x8b\xee\x4f\x34\xe7\xa7\x49\xf0\x89\x98\x6c\x33\x5a\xb6\x13\x41\xca\xb5\x83\xfc\x00\xa9\x71\xd4\x31\xb2\x26\x51\xaa\xb2\x27\xf1\xd7\xfc\x46\x35\xd4\xf2\x70\x98\xa6\xf1\x4e\x3f\x05\xdf\x40\xa3\x5a\xec\x59\xfd\x80\xe3\x5d\x35\xdc\xba\x5a\xeb\xc4\x2b\x54\xc0\x38\x8a\xab\xc5\xb8\x34\xc7\xd5\x23\xf6\x06\xbf\x5e\xdf\xbe\x16\xab\xdd\x44\x3e\x28\x85\x4d\x64\xb2\x82\x90\x76\x3c\x50\xb2\xa2\xda\xb3\xd3\x46\x83\x21\x39\xa4\xcf\x7b\xf3\x4d\xef\x9e\x0b\x93\x60\x54\xdc\x64\x6a\x76\x68\x6b\xb6\xa3\xd8\x94\xe7\x91\x0b\xf3\x1b\x7a\x20\x62\x0b\xba\xfd\x26\x1e\x3c\xd8\x4e\xd2\x4c\x44\x65\x91\x7d\x7e\x77\xe2\x05\x11\xa0\xe1\x21\xf4\xbb\xed\x01\xb8\xda\x65\x26\x47\x47\x13\x89\x15\x0e\x29\x7e\xbd\x3e\x6d\x00\x7d\x64\xee\x71\xfa\x26\x60\xed\x5f\x47\xbe\x80\x2a\xe1\x8e\x32\x0b\x85\x9c\x1c\x66\xce\xd7\x26\xaa\x3b\x74\x13\x77\x0c\xc1\x9b\xe5\x03\x91\xa6\xdd\x9c\x68\xda\x58\xb5\x26\xd0\x58\xbf\x37\x51\x16\xa1\x30\x0a\x44\x5a\xfe\x00\x05\xbc\x6c\x9e\xea\x4c\x40\x76\xf3\x91\x9a\x4f\x86\x69\x39\x06\xce\x19\xfb\xff\x2a\x9e\x03\xbf\xa9\x09\xc8\x54\xbf\x98\x5f\x4f\x85\x23\x60\xc7\x46\x36\x0b\x23\x13\xa3\xdc\x70\xc2\x4a\x4a\x65\x49\x69\xfd\xf5\xd3\x6c\x10\xad\xd0\x71\x58\x6d\x41\xd6\x59\xa3\xf1\x94\x68\xae\xa9\x14\x96\x7c\xf4\x68\xec\xe8\xfa\xa7\x67\x95\x15\xdc\xd9\x86\xb1\xf5\x62\x7b\x64\xad\x17\xe6\x12\x20\x75\x6b\xc1\xbb\xd9\xa9\xfe\x50\x66\x56\xe3\x2a\x9a\xfc\x7f\xe8\x48\xff\x82\x47\x5a\xd9\x22\x4b\xc3\xa1\x1d\x39\x7a\x21\x9e\xf4\x0e\x25\xb8\xb0\x63\xbd\xc1\xb8\xfb\x0b\x36\x1d\x9b\xac\xb7\xa6\xa4\x29\xce\x29\x27\xa6\x1f\x4f\x94\x65\xde\x65\x35\xde\x5a\xb5\x34\x66\x43\x5b\x5e\x9b\xc2\x8a\xc4\x8e\x9f\x86\xdb\x57\x09\x6c\xb8\xc2\x29\x96\x4c\x12\x5b\x4e\x90\x08\x94\x28\x21\xba\x2a\x70\x8d\xc9\x7a\xf2\x15\x40\x33\xfc\x30\x50\xba\x04\x3f\x6c\x20\xc0\x2f\xb6\xfb\x51\x4c\x24\xc3\xea\x9e\x21\x21\xfd\x0a\x1e\x3c\xbf\x71\x99\xd3\x30\x1a\x2b\x62\x31\x36\x3a\xbf\x6e\xfc\xe0\x5e\x46\x62\x50\x2d\x25\x4d\xc3\x08\x3f\x7e\x33\x95\x5b\x1e\x3c\xc8\x94\x34\xe5\x3c\x76\x56\xf5\xdd\xcf\xba\x72\x24\xed\xe6\x85\x09\x63\x99\xee\x88\xee\x82\x16\x61\x50\x03\xf3\x51\x4a\xb7\xde\xe3\x97\x98\x97\xc1\x6f\x7c\x87\x32\x4d\x22\x72\x31\xa7\xfb\x5e\x83\xc4\x09\x0c\xce\x43\x79\x0a\x22\x50\xcf\xb4\x5e\xf2\xd6\x4a\x35\x87\x30\xbf\xff\xde\xd3\x9e\x40\xb1\xc9\xf3\x28\xd4\x4e\xa7\xff\xb2\x26\x76\xa1\x10\x7e\x2b\x51\x3e\x14\xf3\x7e\xc4\x85\xaf\xe1\x9f\xf2\x1b\x55\x12\x2c\x5b\x58\x52\x39\xdc\x7d\xb5\x08\x71\x1e\x82\x2d\x89\xe0\xf3\x9d\xe0\x93\x5a\x7b\x3b\x4b\x07\xa6\xda\x9a\x78\xf8\xa8\xb6\x81\x22\xe3\xd7\x1e\xd1\x18\x97\x18\x55\x51\x44\xa7\xa3\x7d\xeb\x52\x13\xb3\xd9\x64\x79\xca\x48\x28\x91\xea\x6d\x39\x35\xb2\x13\xc1\x53\x0e\xf3\xfa\x85\x32\xf7\x3b\xbc\x09\x20\xe8\x2b\x87\xae\x49\x96\xf3\x7d\x5e\xad\xed\xde\x44\x89\x46\xb0\x53\x38\x60\x19\xb3\x1d\xc5\xd5\xdb\xe4\xbe\x81\xe4\x85\xca\xd1\xef\x3f\x57\x68\x57\x3c\xa9\x1a\x47\x02\xcd\x79\xa0\x6e\x24\xfc\xf9\xb6\x1b\x4f\x01\xc4\xc2\xc2\x67\x43\xd5\x25\x3d\x53\xfd\x4c\xf1\x68\xf7\xf4\x90\xdb\x48\xfe\xc5\x5f\xa8\x4a\xfe\x91\x7f\xc1\x54\x1c\x4d\xb0\x3f\x9c\x28\x2f\xc8\x7d\x90\x1a\xc0\x9f\xbf\x85\x73\xa6\x66\x0b\x80\x18\x75\x85\x7e\x98\x34\xfd\xe9\xea\x45\xd2\x0f\x57\x2f\x14\x77\x85\xc8\xb9\x4d\xcd\x19\xed\xc3\xc2\xf6\x59\x81\xea\x94\xb0\x0e\x84\x6a\xe1\x2c\x7a\x1f\x7a\x97\xf1\xb5\x3a\xcf\x28\xbb\xab\x32\x09\xa3\x38\xcd\x18\xf7\x2a\x79\xb5\x9f\xcf\xdd\xa0\x1f\x8b\xa0\x79\x4c\x95\x86\x31\xf9\xeb\x55\x37\x02\x28\x8d\x47\xa8\xe1\xc7\xaf\x1b\xfa\x3a\xed\xbe\x5d\x15\xda\x80\x6b\x8a\xf8\x06\x89\xe2\x2f\xc6\x66\x75\x64\x96\x2d\x7e\xd2\xe2\xd6\x89\x89\xea\xba\xb0\x01\x11\xde\xec\x9c\xfa\x9a\xc5\x17\x0f\x11\x23\xa4\xa5\xc4\xaa\xdf\x0d\xea\xf4\x90\x1a\x39\xff\x35\xb1\xc9\x69\x12\x06\x79\x56\xc9\x85\x7d\xb1\x8c\x72\x82\xa7\xed\xa9\x6e\xa4\x94\x5a\x4a\x0f\xea\x7d\x4d\x30\x3b\x4b\x5d\x00\x36\xa3\x52\xc2\x02\xe0\xe3\x60\x63\xfd\x0d\x52\x0f\xfc\xac\x9d\xeb\xda\x70\xc9\xe3\xe7\xd2\xe7\x96\xa3\x70\x39\xda\x45\x57\x8d\x0c\xed\x14\xfe\x0e\xf9\xcb\x1b\x2a\xbd\xbc\xac\x88\x62\x97\x15\xf6\xea\x41\x8d\x51\xee\xab\xa0\x5e\xb4\x12\xf5\x4a\x13\xef\xf6\x63\xfc\x1b\x75\xdd\x0b\xa5\x42\xd4\xea\x78\x03\xf2\x59\xaa\x79\x50\xa4\x93\x83\xf4\xc2\x16\x0b\x78\x89\xd1\x97\xbe\xc7\xff\xd1\x67\x81\x8c\xc6\x9d\x61\xc7\x62\x7e\xb3\xde\xd0\xbe\xcf\x87\xe9\x6a\x4d\xc4\xed\x82\x56\xc3\xbe\xa0\x71\x2a\xcb\x51\x1c\xe7\x33\x8a\xb1\x7d\x52\xf1\x9d\x61\xd1\x24\x2a\xaa\x4d\x06\x41\x65\x6e\xb0\x50\x18\x91\x15\x78\xec\xda\xb9\x06\x49\xfd\xea\x9c\xab\x8a\x4c\x84\x77\xdf\xa9\xd6\xcd\xed\xed\x89\x1a\xd9\x2c\xa4\x63\xa2\xb8\x49\xe0\xd4\xd2\x6d\xfc\x5a\xd3\x16\x6c\xc1\x55\xe6\xce\xba\x58\x4e\x75\x43\x10\xfd\xee\x6b\x41\x88\x73\xd8\x1e\x4e\x3a\xc7\xc1\xe2\x36\xa7\x9c\x42\x5f\x5a\x9a\x6b\x47\xa3\xae\x89\x4d\x12\x4a\x51\x8d\xcc\xf3\x7b\x6a\xac\xf0\xbd\x29\xea\x45\x55\x19\xd9\x57\x8b\x4c\xb9\xf0\xc9\xb5\x2b\x75\x99\xe3\xaa\xa0\x29\x86\xb6\xcf\x74\x39\xc0\x89\x71\x97\x64\x38\x45\xb7\x0f\x55\xe0\xb9\x1a\x27\x66\x35\x2a\xea\x82\xb3\x5e\x44\x71\x33\xd8\x8e\xb8\x5c\x9a\x6b\x27\xb0\x47\x40\xfd\x7c\x9d\x62\x1c\x9a\xa0\x3f\xa6\x7d\x81\x42\xe8\x72\xb0\x1d\xd6\x2a\xa3\xd0\xd8\xf4\xa2\x3c\x36\x2b\xca\xce\xf3\x94\xee\xc6\x9c\x52\x48\x56\xf6\x20\x6d\x29\xec\x32\x2c\x4f\xf8\xf5\xd4\x64\xf9\xe0\x41\xe9\x94\xa4\x7c\x06\x3b\xce\x81\xef\x1d\x6e\x4e\xd1\x2d\x8e\xcc\xbd\xd0\xee\x16\x2d\x75\x5c\x5d\xe4\x00\x26\x13\x87\xa6\xbc\x2d\x1c\x9a\x6c\x20\x0f\x87\x75\x7c\xf0\x70\x44\xd4\x47\xf7\x16\x5e\x8d\x42\x9a\xaa\xcb\x74\x54\x61\x9d\x2e\xeb\x09\xe8\xcf\x1a\xdd\xcb\xcb\x7c\x28\x39\x1c\xaa\xab\x53\x7a\xa6\x73\xaa\xd1\x8c\x22\xb3\x6b\x49\x1a\xf7\x04\x36\x23\xd2\x46\xf4\x5d\xfc\xa6\xc9\xfa\x7b\x6c\x4d\x2e\x44\x01\x21\xc1\xf9\x21\xf9\xef\xbb\x34\x77\x64\x42\x78\xbc\xa0\x68\xb8\xc3\x77\x4c\xbc\xae\x7d\xd6\x3b\xed\xd6\x30\x7f\x98\x4a\x29\x93\xf4\x5c\x7f\x1d\x2b\x13\xcc\x12\x2c\xdf\xdd\x8a\x47\x79\x71\xb2\xd7\x63\x76\x56\x1e\xa3\x1c\x01\xbd\xe6\x3b\xba\x8b\xc1\xbd\x6b\x2e\x7b\xe9\x57\x03\xb3\x79\x4a\xe7\xb1\xb7\x75\x30\x47\xed\x2d\x06\x5e\x41\x6d\xcc\xe4\x31\x9f\xa7\x28\xcc\xf3\x37\x2a\x92\xa5\x09\xab\xc3\x9c\x77\x1d\xda\x39\x60\xfa\xcb\x14\x19\xf7\x04\x53\x18\x05\xe4\x8d\xab\x34\x31\x83\x54\xac\x17\x82\xbc\x8e\x18\x23\x3b\xcb\x6f\xed\x2c\x4d\x47\xf9\x6e\x1a\xc0\xa1\xc3\x71\x6d\xd2\x7a\xee\x39\x79\x8d\x1f\x2d\x2a\x22\x55\xca\x24\xc2\x3b\xbe\x25\x8f\xb9\x16\xfe\x0d\x64\x6b\xb6\x5e\x9f\x8a\x55\x8e\xee\x95\x66\x23\x9b\xcd\x56\xab\x55\x94\x3f\xe9\xbe\xb2\x7e\x2a\x96\x2e\x2a\x0d\xc8\x1b\xe1\x34\xde\xd9\xf1\x9d\x41\xbb\x92\xc6\x2b\x02\xb3\x73\x76\x41\xae\xcf\x75\x41\xe5\xd7\x99\x65\xd9\x51\xa9\x9b\x50\x25\xc0\xf6\x84\x5f\x4f\xf5\x44\x5f\x79\xa5\x9d\xa7\x55\x21\x1e\x71\x5f\x17\x64\xdf\x3b\x13\x65\x6c\x7b\xc7\xb1\x82\xfb\xb1\x59\xb6\xf9\xac\x86\x66\x3f\x8a\x86\x97\xb3\xf5\x74\xfc\x55\x6e\x9c\x63\xa9\xdc\x6f\x28\xba\x5f\x68\x7f\xb1\x34\xc4\xc2\x6d\x29\xa3\xbb\xea\x03\x84\x77\xe1\x79\x4a\xab\x51\x91\xd8\x3c\xb7\x39\xc4\x1e\xe5\xcc\x53\x95\xde\xeb\xb5\x03\x50\x55\x7d\xaf\xd7\xf0\x13\x6b\xb1\xdd\xa5\xcc\xe8\x59\x6b\x14\xbf\x18\x66\x13\xc2\x90\xa4\xf5\xe4\xbc\x0e\xe7\x0f\x7b\x82\xa5\x87\xd3\x6c\x2a\x94\x77\x98\x99\x7e\x41\xc1\xb8\x89\x90\xd2\xd0\x6b\x32\xf9\xb2\x04\x3d\xcc\x79\xdf\xa2\xbb\xc7\xaf\x03\xdf\x77\xe9\xc7\x86\xfa\x5f\x9e\xef\xdb\x3a\xb0\xb0\x75\xa2\x3a\x31\xb6\x4e\x68\x1f\x90\x4d\x85\xf5\x7c\x30\x51\x97\xc9\xa2\x3a\x42\x61\x6b\x0a\xc2\x43\x22\x7f\x42\x3a\xa5\xa6\x3a\xa0\x0c\x68\x5f\xe0\xac\xf0\x5c\x53\x68\x1d\x94\x89\x13\xbd\xc0\xe2\xbc\x8a\x60\xc1\x6f\xa6\x8a\xb7\x23\x73\xa4\x44\x67\x89\x77\x80\xd3\xf5\x6b\x74\x01\xb8\x67\x0c\x2c\x16\x51\xa8\xea\xd6\x08\xc6\x76\xba\xfb\xb9\xd8\x2e\x1c\x53\x53\xc8\x0f\xb4\x9b\x95\xec\xb1\xb0\x2a\x58\x0a\x14\x55\xc1\xce\xce\x53\x2e\xa7\xcc\xc7\xca\xff\x13\x0f\x18\xc5\x04\xbf\x0e\x7e\xc1\x3d\x6c\xb1\x18\x30\x10\x23\x76\xeb\xf7\xbc\x5a\xbf\xe7\x5d\x99\x9f\xdb\x6c\x25\x0a\x2d\xfb\x00\x8a\x5b\x9c\xce\xec\x79\x17\xa1\xe8\xbf\x82\x1b\x8f\x4c\xfe\xda\x14\xf7\x72\x61\xa1\x3d\x32\xf9\x17\x4b\x0b\x19\x3f\xfa\xb9\x5b\xd4\xcc\xdb\xba\xa4\xc9\x67\x26\xd9\xa9\x37\x2a\x77\xd7\x70\x0f\xbf\xa5\x6a\xf4\x73\x81\xf2\xe5\x38\xae\x0d\x60\x2f\xaa\x64\x7e\x68\xb2\x51\x9a\x60\xaf\x8a\x1f\xaa\xcf\x51\xff\xa4\x01\xee\x6b\xb2\x51\x98\xb6\x34\x0c\xa9\xe6\x3c\x77\x6e\x2a\xdf\x3c\xfc\x62\xbb\x4c\xc6\x65\x37\x8e\xf2\xa1\xac\x24\x76\xfa\x56\x18\xe8\xe3\xaa\x15\x97\x87\x99\xb5\x49\xde\xf2\x6a\x80\x1f\x50\xee\xc4\xaf\x27\xfb\xfc\x01\x93\x84\x3b\xd5\xc8\x8f\xa5\x82\xd1\xdc\x63\x36\x8d\x8c\x26\xb5\x08\x05\xe3\xf2\x71\x64\xbf\xd3\xe4\xcf\x9d\xdb\x30\xb3\x05\xe7\x48\x4d\x89\xac\x6f\xe0\xe4\xa3\x34\x2d\x86\xb3\xde\x31\xf0\x5d\x3a\x0d\x45\x64\xa2\xaa\x91\x45\x63\xa2\xe5\x34\x61\xdf\x55\x98\xeb\xbe\xcd\x12\x93\xf4\x52\xb4\xe9\x9c\x3c\xd9\x81\x05\xd7\x29\x56\x3d\xfa\x8f\x9d\x46\x7a\x95\xfc\x56\xf7\x73\x71\xc9\xc7\x2d\xd5\x76\xd8\x54\x89\xa2\xcd\xca\xb1\x58\xfb\x0a\xa2\x98\x3e\x53\xb0\xc6\x8d\x22\xb0\x36\x8b\x23\x71\x5c\x72\x5f\xa0\xa2\xa4\x4a\xae\xf3\xc2\x5a\x14\x6d\x4a\xb6\x7c\x9b\x1b\x3a\x96\xe8\x13\x28\xb6\xd8\xb0\x83\x9f\x0a\x1e\xc4\x2b\x13\x3f\x66\xff\x12\x4e\x6d\x31\xad\xd5\x09\x79\x99\xe4\x7b\xbc\x1a\x29\xf3\x54\x38\x06\x70\x42\xa1\x22\x82\xb8\xa4\xdf\x99\x78\xa3\xd6\x4d\x05\x11\xbc\x0d\xc5\x23\x47\x03\x76\x4d\x86\x4b\x2a\x2e\x64\x36\x4c\x09\xd9\x11\xca\x5d\x6c\x42\xe1\x2b\xbf\x0e\xb3\x96\xef\xc2\x4f\x61\x31\x42\x5a\xbf\xc2\xc7\xf1\x6d\xe2\x6b\x35\xe0\x98\x72\x3f\xf8\x29\x1d\x33\x28\x7a\xbf\xa5\xc6\x8f\x23\x13\x86\xa6\x6b\x59\x25\x9c\x7b\x84\xf4\x81\xd2\x2f\x9c\xc6\xe7\xe6\xd6\x64\xa1\x1f\x3b\xbb\xd5\xec\x6d\xff\x9d\x70\xd0\x88\x69\xd9\xfe\xcb\x91\x67\x70\x8b\x6b\xe2\x41\x1b\x57\x5c\xb6\x66\xca\x62\x98\x66\x84\x05\xc1\x17\x30\x2a\x27\x50\x32\xc3\x1b\x6e\x00\x67\xc6\x26\x2b\xf6\x2a\xf7\x24\x6e\x29\xc9\xb2\x6c\x89\x21\xc5\x3f\xfb\xa5\x8e\xc2\x36\x28\xc8\xd2\x4d\xb5\xa5\xee\x21\x57\x50\xf6\x29\x62\xf7\x79\x47\xb1\xb6\x8e\x4e\x94\x44\x0c\xcf\xf5\xd8\x18\xbb\xb1\x72\xc9\xca\x24\x71\x57\x23\x28\x4c\xcf\xa4\x9e\x1e\xf3\x1d\x3c\xd8\xee\xc7\xa9\x50\x37\x45\x40\xc4\xf7\x6d\xde\x75\x9b\x36\x31\x23\x5b\xb3\xb8\xc2\x0c\x83\x5f\x37\x1d\xc0\xb9\x89\x4d\xb6\xd6\x52\x46\x44\x98\x13\x88\x15\x8c\xef\x3d\x94\xcf\xe7\xcf\x9b\xe7\x67\xab\xa8\xe9\x72\x15\x0f\x8d\xa8\xd1\x6e\xab\x7b\xc3\x66\x1c\x6a\x71\x65\xd6\xb8\x75\x22\xad\x6a\x76\x9f\xe2\x37\x75\x3c\x6d\x15\x55\x38\x3e\x60\xb8\xc0\x5e\x0a\xfc\x66\xea\x6a\x9e\x7b\xae\x6d\xa3\x62\x68\xb3\x99\xd6\xfe\xfd\x4e\xbc\x98\xbe\x4c\x4a\x80\xea\x07\x0b\xc7\xc2\x37\x20\x46\x69\x52\x0c\xd2\x91\xcd\xd6\xf8\xeb\x04\xc5\xac\x21\xcd\xaa\xd3\x1b\xc6\x26\x1f\x2a\xe1\xba\xb3\x7a\x01\x9c\x6d\x00\x53\xbd\xdc\xce\x87\x66\x19\x53\x3e\xc7\xa6\x73\xf7\xee\x8c\x5b\xeb\x61\x19\x17\xd1\x8a\x6a\x9c\x34\x61\xa9\xfe\xbe\xea\xd1\x85\xe9\x68\x5c\x1d\x7c\xe4\xa1\xd9\xd2\x80\x52\xdf\xe1\xba\xa5\xa6\xda\x04\x19\x88\xc9\x0e\xd0\x6b\x27\x2b\xd9\xbd\x0b\x0d\x9d\x90\xaa\x94\x2d\x0c\x8d\x5f\x5a\x5a\xb5\x25\x50\xdc\x63\xb7\xc3\x33\x9b\x97\x23\x81\xea\xa3\x5b\x0d\xf1\x33\xc7\x61\xaa\x16\x1a\xf0\x55\x8f\x74\x74\xdc\x4d\x7a\xf9\x2f\x52\xab\x94\x73\xff\x00\x28\x41\xb1\x77\xaf\x3e\xc3\xe9\x51\x3b\xb6\xd4\x4f\x81\x8b\xc4\x41\x76\x87\x70\x76\x82\xa0\x23\xe6\x94\x58\x6a\x7b\xe2\xcb\xdb\x68\x71\x03\x99\xf3\x8d\x40\xcd\xb9\xae\x51\x33\x85\x47\xa1\x70\x79\x96\x63\xc9\xcb\x86\x9e\xd3\xf4\xac\xfb\x48\x6f\x9d\x19\xde\xe7\x5e\xe2\x74\x00\x64\xfb\x5a\x89\x8b\x0c\x62\x86\xe4\x74\xf0\xe5\x8f\xc3\x1e\x07\x01\x99\xd1\x29\xec\x86\x8c\x96\x2f\x8a\x72\xee\xa3\xe3\x3e\xdc\x41\x0c\xc2\xdf\x5c\x9d\x4c\x8b\xa2\xa0\xbb\x76\xd4\x4d\x30\xaa\x05\x92\x45\x8e\x5f\x24\x7d\x42\xc5\x7f\x3a\x55\xab\x74\x7a\xf6\xd5\x47\x5b\x4e\x38\xe2\xb8\xd6\xec\xdf\x85\xd4\x1a\xad\xfe\x27\xa8\x55\x00\x86\xe1\x4f\xd0\x83\xc7\x91\x73\x4b\xab\xba\xfc\x73\x05\x0d\x9b\x25\x57\x71\x1e\xf6\x60\x50\xc0\x7f\x11\x78\xe3\x89\xf1\x30\x8a\xd3\x3c\x1d\x0f\x19\xaf\x26\xb2\xa8\x2d\x67\x76\x74\x4a\xc7\x88\x61\x5a\x25\xc8\x24\x2e\xe0\x68\x6f\x07\x16\xe4\xb5\x62\x95\x66\x60\x95\xa6\xc9\x2c\xad\x17\x51\x43\x6e\x39\x21\x0d\x9c\x57\x8e\x7d\xe9\x7b\xe9\xd3\xcd\x27\x1a\xff\xf5\xbd\xd5\x25\xc0\x19\x1f\xe2\x9e\xf2\x1b\x37\x01\x0c\x33\xdb\x8b\xfc\x7e\x06\xa0\xe0\xb4\x52\x06\x3d\xad\xc6\x63\x43\x71\x78\xc4\xa0\x03\x0e\x3f\xfc\xfa\xa1\xed\x82\x30\x36\x65\x0f\x63\x6b\x01\x52\xd2\xcf\x17\x84\xa5\xc8\x46\x75\xa3\x5e\x0e\x74\x34\xcb\xb7\x61\x29\xc9\x11\xad\x93\x4f\x25\xb4\xc9\x29\x2f\x96\xf2\xd3\x1d\x25\x48\xb5\x49\xe7\xa4\x04\x6e\x8f\x57\xbd\x37\x75\xc3\x0e\x2c\xb4\x43\x93\xe7\xb6\x28\x20\xa3\xc3\x79\x4a\xe0\x8b\xa4\xd3\x4a\xbe\x7d\x68\xba\xa2\x2c\xe2\xf8\x95\x9e\x6b\xe9\xec\x4f\xe3\x34\x34\x85\xa8\x25\x23\x07\x7b\x72\x5d\xb1\x3b\x9e\xe9\xa8\xfa\xe4\xbc\xcb\x0f\x86\x36\x92\xd6\x24\x56\xf5\xfb\x74\x93\xf9\x75\x43\x6b\xb2\x9d\x30\x03\x90\x93\x80\x9a\x9f\xda\x94\x0f\xea\xd2\xe2\xa7\xdb\x61\x16\x15\x36\x8b\x0c\xbe\xc5\xe9\xb9\xb9\x27\xbe\xd9\xd8\x6d\x1e\x67\xe9\x17\x6c\xb8\xcd\x95\xe8\x5b\x93\x56\xdd\xbd\x6d\x9e\x63\xea\x46\x93\x48\xfe\xa7\xdb\x5f\x2c\x4d\x56\x1d\xe6\xba\xd7\xe0\xef\xf8\xa6\x2a\x0a\x46\xa6\x28\x86\x76\x55\x5b\xe2\x00\x78\xc2\xaf\xd7\x7d\x49\x38\x0a\x0d\x1d\xfa\x0e\x06\xea\x00\x6d\x48\x9b\x10\x31\xcf\x06\x2d\xe5\xf5\xb5\xcf\xf3\x85\x7a\x06\x0d\x64\x56\x23\xd5\xc3\xc3\x8f\x55\x8a\x9f\x45\xf9\x72\xbe\x4b\x15\x18\xdf\x9a\xa8\xb6\xfb\x5b\x81\x6a\xa0\x7f\x47\x09\xd1\x61\xec\x24\x86\xa2\xbe\x39\xfd\x56\xa3\x9e\x75\xe9\x74\x5b\x80\xff\xfe\x09\x5d\x0c\xbf\xae\xc5\x41\x93\x25\xbb\xaa\xf5\xed\x46\x96\xfe\x64\x62\x8c\x30\xbf\x51\xe4\xbf\x0f\x95\x6c\xc5\xe5\x40\x0b\x9a\xca\xa2\xed\x45\x79\x2e\xf6\xc2\xd2\xb7\x6d\x39\xa9\x81\x93\x9a\x02\x33\x6d\xea\x76\x64\x6e\xb1\x6d\xcd\x40\x38\x5b\xe2\x63\xe4\x0f\xf2\xbb\xc8\x56\x81\x69\x3d\x53\x33\x23\xe8\xda\x84\x78\xa9\xfe\x14\xe5\x20\xc7\x6f\x1c\xac\x83\xd4\x2b\x12\xaf\x59\xce\x38\xf9\xc0\x93\x6b\x8e\x36\xb5\x16\x00\x30\xb4\xbd\xc8\x14\xf8\x12\xa7\x4d\xe9\xa5\x92\x2e\x4e\xad\xfb\x5f\x21\x3f\x8b\x3c\x87\x39\x13\x52\x2f\xe5\x34\xe8\xde\x4c\x49\xf2\x39\x0a\x5b\x56\x65\x4b\x92\xf1\xba\xef\xf4\xed\x82\x8b\xb5\x87\x1a\x2e\xe7\x9f\xa8\xfe\x21\x06\x04\xd7\x94\x78\xca\x49\xe4\x11\x2c\xf3\x81\x07\xcc\x82\x08\x41\xeb\xb9\xe7\xbc\xfe\x47\x15\x19\xb1\x05\xff\x26\x50\x64\x9e\x0b\x08\xa6\x38\x32\x76\xe8\x1e\xd4\x56\xcd\xb5\xbe\xa6\xe0\x41\xbf\x93\x7b\x70\x54\x8f\xb9\xc1\x7d\x75\x54\x38\x13\xee\x2a\x5d\x61\x2f\x54\x6a\x35\x8a\x6b\x7f\xb5\x3c\x71\x82\xde\xa0\xc5\x06\x40\x98\x36\xa1\x18\xdb\x6c\x14\x15\x54\x53\x3a\x0c\xf0\xb7\xe8\xf7\xf0\x6b\x17\x16\xab\x58\x9a\x11\x0c\x90\xe5\x5e\x02\x3f\x40\x3d\x3f\x51\x30\xa9\x41\x66\x46\x23\x77\x9c\xb1\xaf\x90\xf2\xbc\xf9\x78\xaa\x67\x39\x7f\xb8\x1d\xad\x08\x69\x17\x89\x1a\xe7\x2a\xfc\xe6\x21\x7a\xb8\x71\x19\x16\x34\x08\x59\xf2\x0e\xd9\xbe\x4d\xb6\xe9\xba\xcb\x61\x6c\x8d\xf8\xed\xe3\x66\x5e\xd7\xdd\xcd\xeb\x53\x1a\x40\x9f\x69\xa7\x65\x41\x39\x03\xca\xb7\x0d\x55\xca\x6d\x28\xfc\x98\x49\x6c\xd8\x83\x5c\xbb\xb7\x76\x7b\x50\xa3\xea\x7b\x9d\x5b\xd3\x5b\x89\x72\x1e\xe0\xbf\xec\xf3\x08\xef\x0a\xf9\xaf\x35\x92\xf3\x92\x6e\x9e\x84\x69\x92\x8e\xd6\x9e\x56\x66\x29\xc7\xc8\x57\x19\x49\xf2\xbb\x0a\xc0\xb4\x4f\xf9\xca\xdd\xd3\x9a\xa5\x2d\x38\x4b\x29\xc9\x4d\x29\x04\x8a\x89\x97\xe7\x61\x58\x13\xc7\x07\x44\x54\x44\x11\x96\x63\x44\xeb\xfb\x16\x9e\x8e\x8b\x69\x4e\x49\x9a\xd1\x21\xbc\xe2\x03\xef\xc9\xf5\x37\x94\x39\xe3\xa3\xfe\x08\xc8\x6a\xfe\x29\x4d\x15\x67\x3f\x5e\x73\x0b\xc8\x69\x08\x39\x51\xf6\xbb\x6e\x4d\xf6\xec\xb8\x78\x1e\xf7\xde\xd9\xe5\x7a\xd0\x1a\x29\x0b\x3a\x91\x9f\xde\x40\x9b\x95\x03\x8c\x25\x02\x9d\x35\x7b\xc9\xc2\xee\x41\x9c\x01\x96\xe5\x8a\x22\xe1\xf1\xed\xc1\xd1\xf6\xa7\x4a\xb0\xfd\xbe\x12\x7d\xbe\x3f\x51\xf5\x24\xd7\x7d\x0c\xe8\xd5\x04\xd8\x07\x53\xe7\xf3\xd2\x5c\xdb\x64\x99\xcd\xdd\x3c\x59\x10\xd0\x8a\xc6\x70\x61\xb2\xd7\x2d\xa8\xf4\xf9\x96\xb2\x24\x60\x30\x8f\xd4\xf4\x7e\x91\x16\x69\x51\x25\x1b\x44\x17\x14\x6a\xf0\x55\x3a\x93\xf8\x75\xf0\xb8\xd6\xfd\x7d\xbe\xe5\x3b\xf5\x3c\x93\x90\xc9\x45\x83\x90\x49\x91\x99\x15\x0b\xd8\x21\x6e\xd7\x2d\xa5\xc8\x75\xcb\xe5\xb8\xbd\x08\x22\x89\xfc\x4c\x91\x06\x5e\x53\x2a\x92\xd7\x26\xcf\xe8\x9a\x95\x1d\x8c\x66\x3c\xa0\xe9\xa8\xd2\xe7\x86\x5e\x89\x38\x44\x4c\x1f\x82\x0b\xed\xae\x8d\xd3\x55\x6a\x88\x22\xfc\x41\x99\x86\x75\x1e\x28\x1f\x90\xc7\x53\x7d\xaa\x38\x74\x48\x5b\x9d\x9a\x55\x2b\xee\xbc\x71\x4c\x2e\xcf\xc2\xb8\x32\x91\x9c\x39\x8d\x7b\xec\x7f\x21\x19\x94\x5f\xf4\x27\xb0\x12\x70\x8c\xff\x4c\xc1\xf2\xd3\xb2\x88\xa1\xe4\xad\x31\x1c\x1e\x35\xeb\x8b\xe5\xdc\x16\x5d\x13\x2e\xe3\x1b\x9c\x46\x8e\x1b\xbb\x42\x4d\x08\xfd\xa6\x8b\x4d\xc8\xe1\xd8\xac\xc2\x00\x12\x21\xe1\xa8\x62\x0b\x1f\x75\xa8\x97\xb1\x19\xdb\x8c\xcc\x9f\x66\x7c\xc3\x0b\xd2\xa8\x28\x2d\x58\x66\x00\x45\xf0\x97\xa6\x7a\xb5\x4b\x73\xed\x28\x21\x74\xec\x8c\x77\xab\xda\xd2\x43\xdc\xab\x8a\x7a\x7b\x42\x89\xa2\xe7\x51\x62\x8a\xcc\xb4\x28\x6a\xe0\xda\x6f\x2b\x45\xba\xdb\x0e\xb6\x37\x4e\xb3\xa2\x1c\x18\x21\x4f\xcb\x66\xa8\x59\x7d\x29\x18\x56\x5a\x46\xac\x76\x8c\x54\xff\x5c\xa0\xad\xa5\x99\x64\xcb\xff\x49\x79\x5c\xb1\xfd\x2b\x4f\x4e\x9b\x9c\x2c\xfa\xb1\xa9\xce\x36\x19\x3f\xe0\xd0\x3e\xa3\xd5\x46\xcf\xa8\x7e\xd8\x6a\x75\xb4\x8a\x8b\x19\xbe\x82\x15\x17\xf8\x8d\x17\x92\xce\xac\xc9\xed\x8c\x3f\xe2\xc1\x7b\xe7\x61\x22\x3d\x65\x3e\x17\x9a\x9e\x72\xd8\x2f\x42\xfe\x16\x45\x95\x5e\x74\x88\xdc\x06\x10\x41\x66\x7b\x65\x28\xa5\x04\x02\xf9\x25\x65\xdd\x02\xcf\x06\x6c\x9e\xe9\x39\x34\xdd\x08\x92\xd6\xce\x64\xb4\x87\xc9\xf5\xb1\x89\x02\xf3\xdc\x50\xd4\xbd\x73\x2a\xe7\x48\xbb\x55\x19\x43\x40\x6a\xc7\xfa\x86\x59\x89\x38\x74\x37\x90\x18\x56\xd3\x2c\xb7\x10\xa4\x75\x73\xb8\xea\x14\x11\x1d\x6f\x5f\xa4\x9c\x43\xe7\x00\x19\x5c\x93\x26\xc6\x0b\xed\x7e\x9a\x99\x35\x4e\xf3\x65\x90\xa9\x47\x07\x5a\x43\x3c\x0c\xad\xed\x45\xc9\x00\xf6\x39\xb2\x1f\xea\x22\x62\xd5\x0d\x40\x10\xb9\xa3\x0d\xc0\x31\xe4\xe3\xd7\x8a\xe8\xf7\xab\xbf\xf6\x6b\xb3\x6a\xa0\xf2\x40\x39\xe8\x41\x9c\x03\x6d\xe6\xab\xd4\x54\x42\xa0\xba\xdd\x60\x6b\xff\xb2\x68\x03\xe0\xb4\x10\xcb\xef\x96\xd3\xab\x6d\x32\xc9\x7b\xb9\x5d\x45\x62\xdb\x6a\xfd\xe6\xef\xf0\x00\xf5\x7b\x8a\xde\xf2\x3d\x05\xf0\x1d\x5b\x42\x7f\xec\xd6\x0e\xf6\x57\xe9\xdf\x22\x09\x00\xeb\xd9\xa9\xbe\x57\xf7\x9c\x8b\x0c\x05\x39\xb8\xa7\x5d\x38\xae\x52\xa6\x20\x6d\xc4\x87\xe1\x8f\xa2\x64\xc5\xe6\x45\x9a\x01\xbb\x22\xa4\xfe\x96\xf3\xd4\x7a\xa0\x9c\x37\xa6\x0b\x06\xf9\x94\xcc\xae\x84\x29\x09\x34\x48\xcb\xdc\x57\x54\x3c\xb1\xc1\x86\xda\x52\x0f\xe6\xd7\x7f\xf5\xd7\xc1\xc0\xc4\x99\xf3\xce\xc4\xab\x3d\x61\x0a\xe1\x94\x04\xf7\xcf\x3b\x11\xc3\xed\xd7\x71\xf8\xc5\x76\x3a\xa6\x78\x95\x30\xab\xd2\x5d\xf4\xcf\x55\x29\xf6\x73\x45\x33\x1d\xa7\x71\x54\x44\x21\x4a\x6d\x1e\x17\xd2\xdd\x95\xd1\xa1\x6f\x68\xf5\xa3\x24\x89\xf2\x21\x7e\x26\x46\x1b\xef\xab\xa9\x15\x6f\x7c\xa7\xd6\xf1\xb9\x97\x98\x41\x36\x8d\x3e\x25\x6b\x4a\x2b\x87\x90\x56\x2c\x14\xc5\x52\x1d\xc8\x06\x83\x18\x03\x75\xf9\x68\x85\xf6\x7b\xa0\x95\xb5\xce\x29\xef\x9a\x0f\x5c\xa6\x16\xad\xd8\x2c\x51\xf9\xfd\x39\x9d\xdf\x9f\x0b\xb4\xa0\x4c\xb2\xf6\xf0\xd1\x92\x0f\xf1\x51\x9e\x97\xf6\x09\x8a\x36\xce\x50\xc4\x4d\xcb\xb9\xcd\x83\x73\xf1\x1a\xad\x59\x1c\x12\x3f\xc7\x2f\xc5\x2d\x79\xc0\xbb\x98\x05\x31\x03\xdf\x7a\x7f\x47\x0b\xb8\xdd\xa7\x9e\x31\x56\xf0\xdb\x88\x2d\x58\x39\xd7\x10\x81\xf8\x0d\x65\x15\x98\x09\xfd\x2d\xce\x7d\xa7\x83\xef\x25\x15\x6f\x4e\xd3\x75\x5f\x3c\x84\xd2\x38\x4a\xb3\x96\x3a\xe5\x4f\x29\xcd\xc0\x53\xaa\x8a\x88\x7a\x96\x31\x35\x0b\x4a\xf1\xf8\x80\x7b\xdd\x54\x5c\x0d\xad\x59\x01\xcd\x43\x88\x69\xf4\xc3\x35\xe4\x92\xe5\x3c\x6a\x99\x70\x9a\xd9\x67\xe8\x06\xa3\x97\x7c\x1d\xc9\xaf\x60\x82\xe9\x23\xb0\x3e\xa1\xb9\x80\x2b\x64\xa5\x1b\xcc\x53\xcf\x4c\xbc\xf4\xe3\x1e\x6a\x07\xa3\x4a\x7d\x42\x0d\xd6\x76\x40\x21\x42\x70\x4c\xd5\xa5\xe0\xc7\xfc\x68\xa2\x80\xc4\x8f\x75\xb4\x95\xf6\xef\xd1\x23\x71\xe7\xc0\xe2\xfc\x61\x17\x98\xab\x67\x2d\x8f\xc7\x17\x70\x27\x02\xd5\x32\xbb\xab\x75\x1e\xce\x4c\x94\xc3\xdd\x4f\x1f\x62\xae\x55\x45\xd9\xd0\x2a\x46\x11\xd7\x19\xa2\x60\xfe\x94\xe3\xf6\x65\xb6\x80\xe7\x8a\x52\x95\x56\xd8\x93\x4d\xdf\xf5\x35\x59\x2f\x4a\x4c\x9c\xcf\x68\x0e\x2f\x03\xd7\x45\x83\x45\x89\x33\x5d\x7f\x08\xf6\x36\xcd\x3c\x56\x63\x83\xb0\x1a\x1b\x4e\xe7\xba\x1b\x55\xc5\xf8\x78\x08\x66\x90\x93\x7f\xdf\x9c\xd4\x9c\x91\xf6\x29\x42\xe3\xf3\x7b\xf1\x6b\x70\xf0\x3f\x46\x6e\xdf\x02\xaf\xa7\x0d\xaf\x34\x5a\xc4\xe2\xf4\x91\x75\x1d\xd5\x7d\x66\x8e\x63\x0d\xa3\x87\x4b\xa8\x73\xdd\x96\x76\xea\xa3\xff\x80\x00\xf2\x78\x92\x37\x03\x4f\xf6\xb8\xf4\x8f\x3a\xbe\x82\xe9\xd9\x30\x06\x8b\xde\x6b\x4a\x62\xa5\x08\x80\xe6\xef\xa9\x09\x22\x1f\x8a\xc4\x07\xd9\xbd\xad\x63\xf4\x92\xb7\x29\x55\x51\xe1\x32\xfd\x52\x20\x2e\x91\xa9\xf2\xeb\xc0\xf3\xd5\xbe\x1a\x28\xb8\xc2\x71\x45\x87\xea\xa7\x69\x21\x49\x10\x0f\x99\x10\x17\x70\x86\xe0\xdc\x40\x66\xf2\xa1\x42\x75\x99\x38\xed\x33\xa0\xd5\x65\x11\x4b\x73\x4e\x89\xb4\xc1\xe0\xd3\x8c\x6c\x16\x85\x26\xc1\xb9\x88\x10\x36\xbb\xee\x29\xd3\xfb\x88\x20\xa6\xa4\x9f\x30\xee\xb5\xe1\x32\x2f\x47\x57\x95\x3b\x4b\xa7\xba\xe2\x57\x5c\x08\xef\x1c\xbb\x6c\x06\xfd\x71\x7e\x53\xb3\x55\x4f\x8b\x42\xc9\xf9\x1f\xd7\x0b\x4a\xdf\x9b\x30\x4d\x72\x61\x06\x73\x47\x8d\x36\x83\x74\xd7\x9a\x72\x33\xb2\x9d\x44\x3b\xca\x19\x71\xe8\x96\x98\x8e\x50\xb1\x49\x9e\xa4\x7b\x8d\x6c\xe0\x67\xd4\xe4\x52\x1a\xb9\x22\xd2\xc6\x52\x55\xa8\x99\x74\x7b\xfa\x13\x18\xa3\xa1\x30\xf9\x57\x58\xa4\x48\xc4\x6e\x52\x3c\x47\x8f\x62\x23\x50\xbe\x14\xb3\xeb\x14\x3d\x24\x60\xe0\x86\xf1\x27\x4f\x6a\x38\xbf\x2a\xac\x61\xec\x70\x14\xbd\x43\x56\xdb\x0c\xd4\x4e\x9a\x99\x62\x47\x2f\x2c\xb4\x6d\x32\x30\x03\x21\xb1\x3a\x7d\xd3\x05\x2f\x64\xdc\xd0\x39\xb0\x5f\x2c\xa3\xf1\x58\x3a\x07\x8e\x66\xeb\x29\xb7\xbe\xa4\x4c\xc7\x99\x49\xd2\x56\x8d\xa6\xe1\x69\x78\xef\x4f\xad\xbd\x2a\x51\x28\x08\x8a\x03\xf5\x79\xb4\x1d\xc1\x2f\x64\xf0\x7a\xa0\x20\x30\x17\x02\x75\x2a\x3f\xb6\xde\x60\x7e\x90\x45\x0e\xbf\x25\xfd\x35\xfa\x7b\xdf\x60\x73\x02\xb1\x76\x5c\xd8\x51\xd7\x66\xc4\x2a\x96\x11\x3d\xdd\x17\x04\x96\x19\x25\x9a\xb7\x15\x78\x40\xec\xa6\x1e\x89\xd2\xda\x75\x1a\xa1\x61\xc1\x96\x58\x78\x02\xc7\x70\xd6\xf3\x1b\x77\x97\x8a\x32\x5b\x8e\x78\x84\x2f\x66\x7d\x4a\xb0\xe1\x64\xed\xa4\x5c\xb1\xbd\x67\x3d\xe3\xeb\x4b\x81\x62\xa9\xaa\xe6\x5a\xa1\x3d\xc4\x1f\x4c\x5a\x2f\x2d\xfa\x52\x7b\xfe\xb0\x13\xf4\xa8\x2e\x42\x0c\x41\xd4\xf0\xf8\x51\x22\xc3\xe0\xc0\xbd\x4b\xe7\x9f\x53\x87\x58\x5c\x5a\xac\x79\x6c\x21\x7a\x5f\x0a\x54\x63\xec\x2a\xf5\x0b\x11\x98\xaf\x63\x69\x02\x51\x73\x9d\x57\x30\x5a\x61\xb7\x71\xac\xf3\x7f\xc2\x39\x29\x05\x9c\x82\xc0\xdf\x98\x60\xf2\x2e\x66\x5e\x8d\x43\xae\x38\x4d\x06\x45\x34\xd2\x73\xc7\x5b\x81\x3f\xf7\x6f\xa9\x2a\x8b\xb9\x20\x69\x92\x3f\x5e\x5d\xbd\xc3\x48\x2d\x49\xb3\x99\xd1\xf8\x68\x9a\x9e\xd6\xab\x0d\xd3\x1d\x11\x2a\xa9\xbe\x8a\x65\x42\xb0\x00\xf0\xb4\xee\xd2\x13\x41\x3a\xb8\x15\x78\xa4\x38\x37\x68\xf8\x63\x71\xb7\x85\xe9\xe8\x1b\x25\x57\xb0\x42\x84\x1b\xd9\x94\x22\x54\xc7\xec\xd8\x91\x38\x85\x15\x4a\xbf\x59\xf8\xa2\xdb\xcb\x04\xf6\x0c\x1a\x45\x79\x1e\xa5\x89\xd0\x67\x44\x96\xd1\xd3\x46\x4f\x06\xcf\xea\x19\x75\x3a\x1a\x59\xb2\xb4\xaa\x2e\x1b\x47\xcc\x8e\x8e\xb2\xef\xdb\xb1\xee\xcb\x0a\xbb\x62\xb3\xb5\x34\xb1\x3b\x5b\x4e\xa0\x17\xb7\x0b\xc7\xe6\x55\x04\x22\xa4\xbc\x47\xe9\x6e\x8b\x68\xb0\xcf\xb9\x4f\xab\xda\x23\x8e\x92\x30\x8d\x13\x86\x69\xa3\xcd\xf3\x03\x3c\x19\x91\xe0\xf7\x5c\xd1\x56\x47\x1d\x98\xa7\x1b\x9c\x53\x96\xaa\x74\xc9\x44\x83\x61\x41\x65\x1a\x12\x20\xec\x67\xfc\x3e\xa8\x48\xe0\xa0\xfb\x69\x43\x9b\x78\xb1\x8d\x3b\x41\x0f\x1a\xfd\x07\xb6\x73\xe2\x37\xae\xa1\xd7\xcd\x4c\x52\xa5\x65\x68\xbd\x8b\xd6\x81\xca\x61\x30\xd8\xc4\x1e\x78\xd0\xf0\x84\x0f\xb5\xf3\xb2\xd7\xb3\x09\x8f\x91\xb0\x8f\x60\xce\xc8\xaf\x9b\x30\x00\x36\xb6\x61\x91\x31\x4e\x81\x35\x82\x02\xbf\xae\x36\x1a\x75\xce\xc3\xa1\x35\x63\x11\xa2\x64\x78\x4c\xe0\x6b\xd7\xef\x20\xb9\x40\xad\x75\xcd\x7b\x03\x9b\x3c\xb7\xc9\xc0\x66\xb3\x1e\x54\xf7\x4c\xc7\x03\x30\x66\xd7\x3d\x25\x8e\xf3\x3f\x0e\x06\xda\x04\x30\x1b\xe5\x33\xfe\xac\xfe\xb6\xe2\x67\x7c\xa8\x85\x8e\x4e\xa8\x92\xf9\x3f\xfe\x6c\x4e\x5f\x49\x0b\xe7\xf1\x67\xd6\x7d\xf7\x17\x02\x59\x68\xd9\xef\x22\x18\xf2\xd6\x27\x1a\x28\x90\x2f\xb4\xfb\xd6\xf0\xea\xc7\xef\x3e\xad\x58\xe8\xa7\x5d\x87\x6c\x54\x66\xe3\x21\x0f\xae\x1d\x46\xe2\x73\x2f\x39\x8c\x44\xcd\xe6\x99\x58\x59\xe0\x49\x8b\x84\xaf\xe7\xc0\xdd\x72\xcd\xdb\x41\xba\xf2\x3c\x30\xaf\x5a\x92\xbe\x56\xa1\x22\x68\xdc\x6b\xe8\xa4\xbc\xd0\x36\xdd\x74\x05\x6c\x65\x4d\xa0\x10\xd8\x51\x15\x66\x44\x03\xd1\x89\x7f\x24\x66\xc0\xed\x62\xa8\xa3\xdc\xa2\x34\x54\x98\x5d\xbe\xe4\xff\x78\x6a\xbd\x2f\x2e\x2d\xb6\xfb\x69\x99\xb0\x46\x97\x40\x3e\x69\xbd\x0b\x16\x54\x67\xa5\x21\x14\xc6\xab\x55\x04\x74\x00\x2b\xb9\xf1\x9b\x89\x34\x7f\x63\x13\x2e\x83\x13\xbd\xd3\xa3\x42\xf7\xad\xd3\xbf\x05\x79\xfa\xc1\xc4\x35\x99\x17\xff\x01\x51\x89\x95\xf4\xf4\x92\x63\x5b\xfb\x79\x55\x3f\x4a\xd0\x31\xab\x3e\x03\xeb\x07\x38\x00\xdc\xe5\xaf\xd3\xb3\x40\x5c\xbc\xa2\xac\x4b\x8f\xa2\xb8\x96\x86\x5c\x83\x02\x6e\xda\x4d\xa5\xf4\x45\x02\x7b\x59\x25\xb3\x97\x1f\xda\x51\x1a\xdb\x2c\x1f\x9a\x0c\xe3\x04\xd9\x7b\xf4\x74\xb5\x6d\x1d\xb2\x8f\x4b\xaa\x2d\x63\xf2\xdc\x94\xb1\xd8\xfb\xf2\x4e\xda\x50\x1e\xdb\x1b\x4d\xd5\x76\x38\x8c\x62\xe4\xaf\x20\x46\x63\x32\xce\xaf\x1b\x9d\x7d\xa2\xd4\xc3\x7f\x9c\xde\xbe\xab\x35\x37\x03\x2f\x8d\x16\x3e\xdf\x52\x39\xf9\x46\xa0\x47\x53\x35\xf1\xde\x22\x7f\xc6\x4f\x78\x76\xac\x13\x22\x0d\x87\xe4\xdf\x6a\x40\xdb\x99\x49\x6b\xff\xfc\xd6\x25\x2d\x95\x74\x97\x4e\x08\xdc\xa5\xa7\x28\x02\xa3\xe2\x67\x46\x39\x43\x39\xf0\xa8\x80\xb7\xe2\x7a\x07\x43\xc3\x9d\x2a\xe8\xec\x03\xf9\x00\x7f\x2f\xc2\xa1\xee\xfe\xfb\x56\xee\x69\x24\x1a\x28\xfb\x79\x6e\x80\xed\x31\xd3\x51\xea\xca\xc8\x2b\xb1\x57\xf6\x74\x7c\xaa\xbd\xd9\xa4\x59\x95\x99\x02\xcf\x1b\x49\xa3\xee\xbc\x9d\xd4\x76\x04\x97\x95\x5b\xcd\xaa\xc9\xf6\x78\x8c\xea\x97\x69\x07\x23\x96\x9d\x40\xca\x01\x58\xd4\x19\x4e\x99\xf8\x9d\x1a\xf7\x7e\x39\x50\xd4\xcf\xf3\x81\x42\xa7\x9c\xc7\x25\xf2\xa7\x35\x9e\x86\x45\x99\x25\xe9\x0a\xeb\xd2\x39\xde\xcd\x01\xf7\x7a\xda\xde\xa6\xca\xb2\xfa\x51\x62\xa4\x37\x81\xe4\xec\x94\x02\x0a\x9f\x9a\xd4\x5c\x47\x42\x9b\x15\x80\x86\x20\x30\xc1\x64\xc2\x11\x9b\xab\x47\x2a\x12\x25\x4f\xb9\xa3\x93\xf5\x1b\x67\xab\x7c\xd5\xa9\xf9\x7b\xd1\x5a\x44\x6b\x14\xd2\xd0\x28\x91\x00\xa8\xe6\x5d\xe3\x71\x9a\x48\x21\x28\x37\x51\xdf\x51\xe5\x71\x9f\x15\x99\x59\x33\x31\x82\xa4\x10\x5e\xfc\x32\x64\x2a\x82\x98\xf6\x2a\xa6\xdf\x78\x9c\x55\xe1\x18\xcf\x06\x2b\xf3\x5d\x9c\xf1\xe8\xc0\xbf\xad\x44\x93\xce\x4e\x8d\x05\x24\x56\x14\xab\x33\x7e\x52\x0d\xa5\x3e\xe1\xd5\x28\x34\xf9\x0d\xe7\x79\xf6\x05\x13\x2e\xe7\x69\xb2\x12\xc5\xb1\x7c\xb7\x28\x46\x6b\xcc\x2c\xfd\x2d\x4a\x93\xeb\x9e\xf5\x66\xb3\x2c\x42\xd3\x57\x14\xa9\x3c\x5a\xf0\x9c\x92\x15\x18\xda\x04\x00\xec\x97\x9d\x6e\x8a\x02\xa3\xdc\x6d\x72\x3b\x61\x9d\x68\x70\x00\xb6\xa8\x7f\xbe\xf5\x3a\xf5\xad\x11\x13\xfe\xf7\xc0\x73\xc2\x1e\xc1\x3e\x45\x11\xbd\x17\x79\x1b\xe5\x45\x9f\x79\x7a\x4a\x67\xe9\xc8\xdc\x62\x3b\xca\x32\x1b\xdb\x15\x23\x93\x07\x4c\x65\xf5\x84\xf6\xa8\x36\xf9\x88\x46\xe3\xd8\xce\xfa\x12\xe7\x0f\xe8\x98\xc4\x79\xf2\x34\x85\x0b\xd0\x6a\x34\x28\xfc\xf1\x75\xbf\x70\x8b\x32\xeb\x8a\x71\x2a\x4b\x6b\xd3\x7d\x12\x99\x6d\xd1\x32\x1c\x45\xb9\xeb\xfe\x70\x26\x8e\x52\x83\xbb\x6a\xfc\x46\x35\x61\x72\x6b\xb2\x7c\x97\x37\x5e\xc3\x2c\xd0\xf9\x81\x54\x41\x53\xd2\x0b\xda\x35\xe8\x5e\x72\xfd\xc4\x6f\x26\x2a\x7f\x38\xad\xd4\xb0\x56\x6c\xd2\x4b\x01\x98\x51\xf6\xea\x9e\xca\xe3\xaf\xcf\x91\x8d\x3c\x4f\x47\xf3\x77\x54\x83\xae\x30\xaf\x3e\xe1\xbb\xb5\xcc\x46\xc4\x52\xbf\xa7\x35\x9b\xc0\xdd\x11\xb1\x72\x8f\xd9\x79\x80\x10\x8a\x33\x9e\xed\xe3\x10\xb6\x67\x3a\x5a\xba\xff\xaa\xc6\x10\xff\x30\xf0\x2c\xd5\x33\x81\xb2\xac\xc2\x8c\x50\x9e\x1d\xdd\x20\x81\x8b\xd3\x95\x62\x29\xec\x58\xf7\x59\x49\x61\xc2\x22\x0a\x59\x55\x43\xd4\xc4\xaa\x0f\x41\x73\xe7\x7a\xa0\x3a\xcc\xa7\x26\x7f\x4f\xd5\x3d\x69\x36\x30\x49\xf4\x1a\x15\x89\xbb\xab\x1b\x85\x6f\x82\x38\x14\xaa\xfc\x2d\xe4\x37\x32\xee\x99\xf1\x26\xd9\x77\x69\xad\x23\x97\x7e\x62\xdd\xeb\x03\xd7\x84\xad\x2f\xd6\x0e\x50\x93\x0f\x1f\xa7\x1f\xe3\x24\x20\xaa\x47\x8e\x6e\xf7\xad\x89\x82\xae\xb3\x28\x35\x92\x96\x53\x35\x4d\x47\x45\xa0\x61\xf4\x0c\x66\x84\xdf\xa4\x4b\xc6\x13\xc1\x05\x30\x68\x11\xf5\x18\xca\xfa\xa3\x81\x37\xb7\x61\x1f\x69\xfe\x76\x4d\xa4\x3b\xa5\xb2\x15\x3b\x1a\xc7\xe9\x1a\xb7\xce\xb8\x38\xa3\x0b\x97\x42\x6d\x7b\x42\xb5\x34\xd7\xee\xda\x61\x94\xf4\x66\x7d\x7d\xf2\x0e\xad\x1c\x2c\x29\xa8\x5b\xb8\x9a\xc1\xf7\x95\x2e\xaa\xb0\x9b\x99\x71\xd4\x8b\xd7\xa8\x06\xc0\x7a\xf9\x20\xf0\xb6\x25\x4c\x96\x94\xd3\x8c\x6e\x15\xff\x2b\x75\x32\xf5\xd2\xb0\x48\x33\x82\x76\x8a\x19\x1f\x4a\x1e\x87\xa1\xf1\xde\xd3\x0c\xa3\x73\x71\xc0\x71\xe0\x19\x9f\xc1\x0d\x12\x25\x59\x5a\x94\xe2\x14\x8e\x73\xe0\x11\x94\xcb\x18\xad\xfc\x2d\x8d\x2e\x1c\xe3\x6d\x41\x96\x0c\x45\x15\x2d\xab\x56\x95\x9b\x07\x0f\x7e\x92\x7e\x22\x73\xd9\xf1\x4b\x78\xce\x49\xa1\x15\xf1\xf8\x32\x9e\x10\x32\x98\x2b\x58\x1f\x48\x61\x2e\x05\xad\xdf\x9a\x77\x32\xae\xd5\x4f\xc2\x6f\x07\x2c\x83\x21\xca\x64\xcc\x83\x33\xe7\x14\x22\x8d\xe0\x3b\xaa\x47\x83\xb5\xce\xf2\x98\x80\xc8\xee\xa6\x18\x8a\xbc\x68\x2f\xba\x93\x38\xc5\xcf\x53\xa0\x45\x73\xb3\x85\x8c\x9e\x3f\x2a\xd0\x27\xd5\x79\x1c\x26\xce\xeb\xd6\x0b\xb1\x7d\x6d\xa2\xa6\xd9\x97\x89\xd2\x0e\x99\xc3\x1f\x28\x35\xf2\x51\x99\x99\xdc\xac\xc2\x88\x0a\x95\x08\x33\x7c\xf9\x4d\xe0\x2b\xcc\x41\x19\xf7\x41\x56\x85\x04\x00\xf3\x05\xf9\x0d\x3d\x4d\x7c\x01\xe7\xe7\xfc\x66\x6a\x2c\x73\x60\xa1\x1d\x93\xb1\xed\x80\xd5\x17\xf1\x48\xf6\x76\xf4\xa8\x65\xc6\x1b\xc2\xcf\x4c\x09\xa0\x7d\xa6\x9d\x17\xa6\x4c\xc2\x61\xbc\x86\x0a\x10\xa9\xc6\x77\x75\x1b\x24\xf0\x35\xcb\x71\x25\x4e\x36\x8e\x4d\x68\x7b\x98\xc0\xb2\x25\x66\xa0\x3a\xc7\x9b\xaa\x75\xb4\x85\x45\x09\xe0\xd1\x7d\x25\xe7\xc3\xf2\xc5\x70\x8a\x7e\x61\x8b\x70\xfc\x5b\x67\xb6\x2f\xba\xea\xb0\x5d\x58\x78\xc2\xb7\x19\x5a\xeb\xbe\xae\xd8\xc2\x32\xc3\xe0\xeb\x27\x81\x62\xa6\xdf\xd1\x1a\x4d\xef\x07\x6a\x9a\xfa\x36\x7e\x28\x5a\x09\x94\xad\x6d\x6d\x50\xf3\x51\x78\x7e\x6a\xde\xf7\xc3\xc0\x27\x02\x7f\x08\x19\x6c\x9c\x15\x57\x10\x0c\xfd\x7f\x70\x5e\x70\x81\x07\x71\xb1\x55\x64\x9a\xf6\x66\x6a\x3e\xda\xd5\xbf\xc6\xd7\xdf\x0a\x54\x8b\x63\x3a\x25\x3e\xfc\x62\xdb\xc9\xc7\xd1\xd1\xcf\x1e\x56\x4a\x44\xe8\xd8\x14\xce\xb8\xba\x61\xab\x26\xcf\xab\xaf\xb6\x11\x06\xce\x35\xc6\x86\x50\x39\x1a\x8c\x7c\xf3\x74\x64\x8b\x68\x24\xc3\x3b\xd7\x89\x5b\x9a\x73\x9d\xb8\xe9\xbe\xfb\x21\xc7\x42\xf3\xf3\x58\xcc\xb7\x44\x59\xdf\x21\x7c\xca\x28\xb1\x86\x16\x2b\x02\xf9\x3d\x34\x1f\x75\xe7\x01\x37\x7e\x97\xb3\x34\x4f\x46\x45\xd7\xb4\x94\x2a\x83\xb6\x69\xba\xa0\x3d\x0c\xe3\x68\xd4\xa5\x1a\xb2\xfa\xe9\xec\x97\x4c\x21\x54\xbc\x93\x15\x63\x39\x8e\xff\x3e\x7d\xb3\x68\xef\xfb\x2e\xdb\x59\x02\x0c\x48\xf0\x50\x9f\x75\x53\x61\xe8\xef\xc3\x71\x8a\xab\xc2\xc0\x0f\x6c\x3f\xa4\xe8\xe6\x8c\x65\xaa\xec\x49\x58\x34\xca\xe1\x6a\x17\xe4\xc0\x90\xa8\x5c\x99\x28\x9d\x7a\x38\x6f\x21\x6c\x1e\xa5\xb8\x8c\xaa\xe2\x0d\xc4\x27\xd4\xe7\x7f\xa1\x21\x89\x9b\x5a\x4d\xec\x5d\x2c\x5e\x81\x0b\x2a\xa1\x90\x6b\xd8\x0f\xe2\x1e\xe6\x05\xdd\xbf\x1e\x78\x07\x85\x7b\x35\x4c\xcf\x75\x8a\xe7\xa2\x03\xbd\xfd\xe4\x7c\x69\xfe\x70\x9b\x1a\xd6\x94\x65\x6e\x51\xf8\xde\x3a\x1a\xf8\x33\x27\x0f\x4d\xb6\x86\x40\x27\x52\xa8\xd5\x37\x71\x33\x54\xf9\xb5\x9e\xd6\x76\x4c\xd3\x0d\xc1\x03\x0b\xed\x6e\x5a\x14\xde\x14\x45\xcc\x42\x5b\x4e\x5f\xf7\x8c\x32\xe8\x7c\x53\xf9\x86\xf6\xd2\x10\x32\xf0\x2e\xd9\xae\x8e\x1f\x87\x16\xbc\xa4\xfa\xba\xd6\x64\x09\x8d\x30\x5d\x75\x76\x2b\x50\xe3\x93\x53\x48\x3f\x44\xa2\xa1\x89\xfe\x67\x46\x36\xe9\x39\x11\x60\xb1\xe6\x55\x0a\xe0\x9b\x4e\x95\xa6\x6b\xd6\x66\xb4\x10\xcd\x39\x35\x26\xbe\xa1\xa5\xcd\x3f\x56\x21\xb7\x67\xed\xd8\x66\x3b\xd5\xb2\x65\x04\x37\xda\x11\x3f\xc7\x32\xc2\x96\x3b\xad\x84\xe0\xb6\x70\xbe\x20\x8f\xb8\xdb\x04\x5c\xec\xa7\xd9\xaa\xc9\xb8\xa9\x86\xbc\xe7\x9b\xb4\xe7\xf9\x75\xf0\x49\x2f\x06\x9f\xa5\xa6\x17\x1a\x52\xfb\x23\xe6\x07\x0e\x9a\x47\x94\x0c\x0e\x08\xf6\x00\x56\xec\xa0\xd1\x36\xff\x1b\x48\x9b\xe3\xe4\xbf\x55\xeb\x1f\xac\xbb\x4e\x1c\xdb\x1b\x4b\xbc\x73\x5e\x49\x9e\x50\x75\x7e\xe2\x81\x20\x62\x42\x83\x16\x1f\x3b\xcf\x60\xa3\x89\x0d\x8d\x9b\x65\xd9\xa4\x9f\xc6\x70\x62\x43\xec\xb9\xa8\x9d\x85\x51\x5e\xe3\x87\x7e\x55\xf7\x51\x4d\x66\xfb\x65\x5c\x25\x77\x2e\x5f\x7d\x2f\x50\xce\xff\xef\xa8\x09\xcd\x7b\xd8\x8a\xfc\x1f\xb4\x64\xa5\x25\xb9\x45\x9f\x5a\x61\xc2\xce\xaf\x1f\xaa\x42\x95\xa7\x65\x31\xb4\x59\x42\xd5\xb8\x24\x0b\xd5\x1f\xba\x2d\xed\xa9\xea\xe4\x11\xed\x14\xf8\x8a\xa2\xe4\x7e\x48\xcd\x52\x45\xd2\x1b\xaf\x6b\xd3\x8b\x72\x33\x1e\xa7\x51\x52\xf0\x38\xc5\x41\xeb\x5d\x4a\x7e\xcc\xb5\x8a\x87\x65\x16\xb7\x94\x76\x20\xe7\x49\x72\xe4\xab\x1a\x07\x1e\x46\xbb\x54\x82\x86\xc4\x12\x67\x33\xc1\x5d\x14\x8d\xa4\x8a\x92\x42\x1d\xa9\x42\x0e\x7e\xe6\x71\x25\xeb\x78\x5c\x31\xdf\xb2\xb2\xfa\xec\x47\x69\x1f\x68\x6f\x51\x3c\xf1\x2d\x0a\xdf\xe2\x6e\x41\xb0\x18\x24\xec\xdf\x9c\x28\xf8\xcb\x6d\x0a\x45\x62\x5b\xd9\xf2\xff\x08\x57\xc4\x1f\x45\x01\x5f\x20\xd6\x4d\x5b\xbe\x9b\xd9\x55\xab\x58\x39\x6c\xc9\x11\xa8\x85\x7e\x62\xe2\x81\x31\x36\xe3\x74\xc7\x93\x76\xf0\xd3\x45\x00\x42\xce\x49\x13\x8f\xd2\xbc\x20\xc7\x4e\xa4\xe8\x4f\x76\xfc\x11\x73\x8a\xac\xfc\xd1\xb9\x3b\x3f\xf1\x8a\x49\xe7\xf4\x78\xc2\xc3\xce\xbb\xb0\x20\x94\x19\x91\xf8\x97\xd3\x75\x4a\xe6\xa6\xf4\xbc\x63\x6b\x32\x6a\xa6\xd1\x73\x76\x58\x41\xcf\x7b\xbf\xf8\x10\x99\x8a\x30\x1d\xf1\x1f\x31\x34\x92\x7e\x9a\xc0\x24\x7d\x04\x49\x57\x6c\xb6\x3a\xb4\xf1\x88\xf1\xa4\x87\x44\x11\x27\xf0\x98\xfb\xf7\x26\x4a\x9e\x02\x35\x24\xfe\xc3\x5b\x13\x3d\xa9\xbd\xe0\xa0\xd1\x85\x49\x06\x51\x37\x46\xd0\x40\x86\xf6\x17\xf4\x79\xfc\x5a\xb1\x47\xa3\xd1\x68\xa6\xa5\xac\x5d\xaa\x9b\x8c\x39\xfd\x59\x1d\xac\xb5\x6f\x41\x3e\xb4\x59\xb6\xf6\x70\xdb\xcb\x06\x8c\x74\x3e\xb6\x61\xd4\xe7\xb1\x17\xf2\x87\x9d\xeb\x3e\x17\xd9\xa9\x76\x6b\x62\xcb\x22\x33\xbc\xb1\xf0\x58\xdf\x52\x4c\x8f\x69\x8a\x1e\x49\x69\x0b\xe3\x80\x51\x9a\xaa\xba\x7f\xc7\x11\x91\xca\xc4\xac\x9a\xcc\x26\x44\x64\x77\xc5\x15\xb8\x74\xa2\xc7\xf1\xb8\xa3\x91\x84\x51\xcf\xee\xae\x6e\x35\x92\xda\x7d\x55\x26\xb2\xb5\xa1\xb4\xe2\x1f\x59\xaf\xb6\x96\xe3\xc5\x55\x4b\x82\x47\xcb\x48\x34\x70\x80\x3f\x46\xd3\x11\x6e\x66\x28\x95\xa9\x7e\x9a\x0d\xd2\xa2\xb0\x2c\xcf\xe0\xe4\x29\xaa\x8f\x11\x79\x8a\xed\x3d\xec\xaa\x3a\x2f\xd7\x72\x0a\x4c\x0e\x25\x51\xed\x7b\x41\x49\x4c\xeb\x7e\x2f\xcd\x3d\xae\xf4\x27\xee\x05\xde\xdf\x06\x7b\x05\x83\xad\x4b\x13\xa5\x2a\x31\xab\xc4\x35\xde\x52\x3a\x91\xc7\x26\xca\x25\xe9\x9e\x76\x49\x62\x56\x91\x43\xd2\x57\x51\xa6\xe6\x7d\xed\x82\xf5\xd2\x1c\x8f\x29\xef\x51\x92\x28\x13\x07\x17\x13\xd2\x98\x3c\xe2\x38\xdf\x16\xeb\x21\x55\xb5\x9d\x6f\x02\xba\x80\x1d\x22\xc8\x75\x4c\xb3\xde\x57\xe2\x1c\x0c\x53\x14\x7e\xc4\x27\xdd\x81\x39\xc8\x4c\xd2\x1b\x57\x6b\xa2\xc8\x67\xd5\xb8\xf1\x6d\x5c\x90\x2b\x50\x1c\x00\xf6\xbe\x06\x3b\xd7\xc6\x5b\x14\xe1\xeb\x7d\x7a\xa7\x22\xb5\xd9\x30\xd5\x6d\x9b\xb8\x9f\xd9\x3c\x4c\x5b\x3e\x6d\xc0\x0d\x12\x88\x60\x13\xe6\x26\x4c\xb3\x84\xbc\x1b\x9c\x6c\xf4\xc7\x4a\x6e\xfc\x63\x85\x9f\xb0\xaf\xda\xb0\x24\xfd\xe3\xc7\xfc\xb9\xf7\x11\x6e\x25\xe7\x1c\xd4\x3c\x60\xc8\x04\x2d\x06\xd6\x64\xe5\xa0\x82\xa8\xff\xb3\x40\x25\x99\x5c\xbb\x0a\x30\xc4\x5b\x28\xb3\xc2\x00\x82\xed\x7f\xad\x04\xe5\xdf\xad\xc9\x56\xc6\x86\x27\x9d\x12\x76\x75\x85\xa4\x4a\xcb\xad\xa0\x56\x5a\x27\x45\xfe\x58\xed\x90\x50\xa2\x05\x4f\xae\x03\x77\x82\x31\xca\x46\xa0\xc8\x06\x47\x01\x83\xe1\xff\x32\x51\x7d\xe9\x1b\xca\xfe\xea\xda\xc4\xcf\x46\xfe\xa9\x72\x8f\xda\x8d\xa2\x04\x19\x69\xab\xa3\xa9\xe6\xaf\x55\xd9\x61\x75\xc3\x10\x35\xc0\xb8\xe7\xd7\x0d\xb9\x70\x3b\x2f\xc7\xe3\x8c\x18\xab\x2d\x3f\x4c\xbe\xa8\xee\xd2\xc5\x89\x57\x06\x2b\xb2\x28\x14\x3e\x2c\xae\x77\x57\xc7\x1f\x8a\xbb\xd6\x3f\xa1\x7c\x9d\x56\xa2\x9c\xc2\x7c\x1d\xe0\xe5\xfa\xd5\xef\x6e\x6f\x1e\x1c\x58\x68\x1f\x3c\x78\x68\x37\x6d\x50\x24\xb3\x97\x54\x02\xf5\x23\x8a\x0e\xfc\xff\x07\x35\xea\x18\xdd\x55\x2d\x87\x02\x9a\xc2\x49\x45\xb2\x3f\xe6\x48\xf6\x44\x37\x8e\xd7\x88\xb9\x82\x4f\xbb\xa8\x3a\x02\xe0\xc5\x21\x3c\x9c\x9f\x3c\xeb\x6e\x2b\x54\xb3\x49\x92\x64\xa7\xcf\x4a\x2f\xd1\x22\xe5\xd7\x2a\xaa\xdf\xd1\x00\x9c\xeb\x78\xb6\x88\x2c\x3f\x53\x56\xa4\x43\x93\xf5\x76\xf9\x11\xcf\x65\xfc\x91\x5b\xf2\x4e\xb6\xf2\xab\x74\xe5\x2e\x8b\xab\x96\x9a\xd8\x6e\x57\x17\xc1\x8b\x7f\x2a\x1e\xbf\xf2\x4a\xdb\x14\xbf\x5c\x3c\x9c\x1d\xf7\x94\xc2\xdd\x44\x3d\x92\xaa\xf5\xba\x08\xa0\x65\xa0\x13\x0b\x46\xa1\x98\xaa\x78\xbd\x99\xbb\x41\x4d\x46\x75\xda\xce\x44\x89\x59\x2e\xf2\x83\xd0\x2e\x72\xad\x75\xaf\xd8\xfa\x97\x4d\x92\x9e\x79\x61\x06\x03\x50\x76\xe8\x19\x0b\x74\xc5\x23\x54\xaf\x29\xa7\xe5\xb3\xf5\x89\x72\x6e\x76\xf9\xf6\x1c\xc7\x06\x34\xa1\x71\x3d\xc8\x23\x58\x03\x8f\xf9\x6f\x28\x16\x90\x54\xfc\x58\xa3\xce\xa6\x83\xe4\xc2\x42\xbb\x28\x47\x5d\x2f\x21\xe3\x64\xab\x5c\x5f\xe4\xa7\x8d\xc0\x9c\x71\x96\x56\xb7\x9b\x11\x24\xd8\xff\x98\xc9\xf2\xeb\xa9\xec\x75\xfe\x70\xbb\x9f\xb1\xbc\x27\x67\x86\xd2\xbe\xf7\x24\xa0\x53\x4d\x26\xb1\xfd\x38\x1a\x0c\x45\x93\xad\x49\xe3\x66\xfa\x6f\x0e\xb1\x34\x8e\x6a\x45\x1d\x57\x42\x22\xc7\x1f\x0a\x5a\x30\x89\x89\xd7\xf2\x28\x57\x48\x02\x16\xb4\x12\xbf\x1b\x65\x19\x95\x66\xcb\x8f\x57\x47\x0b\xaa\x2a\x74\x7e\x10\x5d\xdf\xc7\xa1\x8c\x59\x12\xbb\x53\x21\xba\x9c\x57\x7b\xe2\x34\x52\x0b\xe9\x8a\xa8\x13\xfe\xeb\xb4\x9b\xe9\x0f\x9e\x7b\xba\xa3\x7a\xc3\xd7\x51\xf0\x31\x82\x22\xd0\xda\xfe\x13\x2f\x31\xff\x06\x15\x18\xf8\x29\x1b\x2e\x68\x44\x23\xc2\x2b\xb5\xfc\xda\xc5\x09\x2a\x36\x52\x6a\x53\xa7\x71\x0f\xa5\x14\x16\xe5\x5d\xea\x43\x62\xbf\xee\xa3\x6c\x0b\x85\x1a\x98\xfa\x1a\xa1\x81\x35\xf3\x20\xf0\x62\x54\xb7\x9b\x30\x5a\x61\x19\x17\x65\x26\x0c\x6e\x99\x6f\x78\xdc\xec\xb4\xa8\x25\x69\x35\x8d\xd3\x32\x97\x4e\xa1\x74\x38\x94\xae\xe0\xf4\xb0\xbe\x2a\x14\xf2\x70\x18\x8d\x46\x56\x48\x8c\x68\xc9\x32\x95\x80\xdf\x28\xc9\xb7\x6e\x94\x16\x36\x1c\x26\x69\x9c\x0e\x20\x23\x23\xa5\x52\x4b\x89\xe8\x35\x42\x2f\x73\x3b\x36\x99\x9c\x2b\x42\x8f\xf4\x63\xfa\x0b\x2a\x99\xc9\x2c\x89\x3d\xce\xf8\x2d\x7c\x61\xa2\xf1\x03\x8a\xa1\x7a\xbb\xa1\xfa\x69\xe7\x65\x36\xb0\xd9\xdf\x41\xd9\x91\x32\x05\x9a\xb5\xf1\x1a\x9a\x38\xc8\xdb\xee\x4d\x34\xbe\xc1\x21\xeb\xde\xff\xc5\x8e\x5f\x0d\xbb\xd7\x6b\x8a\xdf\xcf\x68\xfb\xa5\xc4\x92\x58\xe6\x1e\xed\x2e\xa2\x70\xfd\x3c\x94\x74\x0d\xa3\x2a\xac\x88\xc6\x48\xcb\xf9\x7f\x7c\x1c\x28\x13\x6e\x76\x64\xc0\x9b\x73\x08\x59\x48\x1d\xce\x29\x75\xbd\xc2\x66\xa3\x9d\xd5\x61\x01\x0e\x09\x0b\xfc\x6a\xb3\x7a\xc7\xad\x71\xad\x28\x76\xa3\x93\xde\x8c\xd2\xd0\xce\x52\xd7\xab\x46\x35\x0b\x31\x23\x7e\xad\xca\x88\x30\xb3\xe4\x1d\x8f\x51\x31\x16\x3e\xac\xc5\xf9\xb5\x3a\x83\xc6\x65\xbf\x6f\x33\x78\x8b\xa1\x98\x42\x0a\xa7\xbd\x0c\xa4\x53\xd0\x00\x1f\xc8\xc3\x61\x1a\x1b\xa4\x30\xd8\x49\x18\xa2\xf2\x6b\x57\x3a\x8d\x4d\x21\x6a\x25\xf8\xbd\x28\x28\x30\xd6\xda\xb7\x5e\x93\x2a\x6f\x00\x74\xc5\xe4\xbe\x33\xa3\x54\x01\xff\x57\x65\x37\x82\x46\xa9\x88\x95\xf8\xee\x6a\x6c\x5f\x2d\x73\x9c\x12\xb8\xe7\x1f\x2b\xa3\xb5\x8f\x9b\x64\x5d\xfa\x26\x09\xd7\x94\xab\xe4\x8e\x75\x0f\x4a\xde\x31\x05\xc1\x9f\x3f\xdc\x36\x03\x9b\xf4\x0c\x6f\x70\xc0\x21\x77\x74\x3c\x75\x61\xc7\xba\x1f\xf4\x9b\x7e\x95\xc4\xcd\x7a\xb1\xb6\xa3\x93\x9a\xee\xa9\xb7\x81\x47\x12\x8e\x3a\xe8\x86\x12\x27\x18\x45\x09\x3b\x97\x48\xbf\x48\x37\x8f\x14\xd8\xd2\xe6\xc5\x2f\x28\xc1\xd9\xdd\xeb\xad\xdf\x9a\x77\x8c\x0f\x6a\x25\x61\xa9\xfd\x5a\x47\x31\xd3\x30\x9a\x44\x3d\x74\x0a\x9d\x70\x51\x0c\xf0\xd5\xc4\xec\xba\x77\x93\xfb\x9f\x7e\x91\x18\x3d\x80\x83\x9d\x0c\x88\x34\x23\x3a\x1f\xd4\xbc\xa2\x83\xf5\xdf\x3c\xdb\x51\x2a\xbc\xad\x75\xdf\xbb\x6f\xad\x7b\xc9\xf9\x4d\x25\x34\xb0\x03\x18\x83\xad\xd7\x27\xad\xdf\xfe\x3c\x1f\xb3\xe7\xb4\x99\xd8\x6d\x4c\xb4\xe8\x39\xce\x3d\x8b\xc5\x03\xf5\xa8\x6b\x9a\x5f\x0a\x9c\x08\x92\xfb\x33\x6a\x10\x59\xd8\x24\xa7\x7a\xb2\xfa\xf5\x18\x4f\x80\x36\xc1\xaf\xd5\xf8\xad\xb0\xa3\x71\x9a\x99\x6c\x0d\x4b\x0f\x89\xeb\x15\xda\x14\x6c\xb8\x47\x7f\x88\xca\xe5\xa4\xd2\x01\xac\x56\x45\x32\xb0\x99\xed\x11\xa0\x05\x23\xb6\xff\x0a\x55\x30\xbf\xa1\xb5\x88\xaa\x91\xe5\xce\xf9\x8d\x8a\x5d\x85\x2d\x0a\x33\x32\x49\x11\xcd\xf8\xe6\xf1\x0d\x5a\x2a\x38\x5d\x2f\x4c\x54\xea\xf4\xd1\xc4\x63\xd4\xf2\xe1\x1a\xed\x7e\x56\x0a\xa7\x3d\x2d\xaa\xe1\x35\xb7\xe3\x5e\x19\x16\xd2\xd4\x47\xe6\xcc\xe2\x3f\x3a\x48\x8b\x20\xb3\x04\xe9\xb4\xdf\xcf\x87\x69\x8a\x2c\x17\x1f\xfb\xae\xfa\x8a\x77\x1b\x51\xa9\xdd\x38\x0d\x97\x41\x56\x71\x8d\xbd\x23\x73\xee\xb4\x52\x6c\x8e\xb1\x0d\x0b\x53\xa4\x99\x82\x3c\xd5\xb8\xb8\x17\x1d\x93\x2e\xb3\xb1\x4d\x3c\x2a\x12\x3b\xf5\x8a\xa2\x0f\x5c\x69\x72\xb1\xfd\x74\xbb\x6f\xa2\x62\xa8\x66\x71\xef\x05\xca\xbb\xe3\xbd\x5a\x46\x9b\x94\xec\x92\x81\x09\xfe\x09\x45\x9d\xd8\x50\x2a\xc6\xb7\x14\x40\x1a\xee\x2e\x0b\xa2\x24\x01\x51\x66\x7e\xdd\xd4\xab\x58\x8d\x8a\x61\x2f\xb3\xab\x0a\x88\xcc\x8d\x15\xe1\x9e\xc8\xa4\xaf\x6f\xa2\x98\xe1\xe9\xd8\x0b\x3b\x3b\x8a\x88\x7c\x47\x35\x79\x9b\x54\x9f\x5e\x68\x9b\xcc\xb2\x9d\x22\xc2\xce\xdb\x81\x9f\x63\xff\x94\xd6\xb5\xd8\x9b\x4f\x73\xae\x16\xdb\x71\x94\x38\xc9\x70\x14\x56\x68\x94\xf1\xeb\xa9\x88\xfa\x99\x76\x5c\x7a\x35\x0f\x14\xc3\xaf\xab\xc2\xf8\xf5\x46\x65\x2a\x33\x1a\x4b\xf9\xda\xa4\xd6\x33\x65\x03\xfd\x4f\x0e\xcd\x2a\x55\x7b\xee\x7e\xf1\x1b\xfa\x79\x58\xc9\xdf\x0d\x7c\xba\xf1\x5d\xa5\x8a\x9c\xe6\xe3\xcc\x22\xe8\x03\x91\x08\xb2\x1c\xbf\xee\xd4\x5c\x64\x73\x8b\x29\x35\x02\x38\x18\x62\xce\x41\xbe\x8a\x3c\x72\x18\x6f\x1f\x38\x4b\xb6\xde\xa3\x24\x3f\x07\x37\xcf\xe9\x10\x54\x3f\x18\x91\xf3\xfa\x44\x71\x7b\x77\x74\x7c\x48\xef\xc7\x6b\x7b\x28\xa8\x8a\xe6\x68\x8d\xcb\x4f\xc1\x11\xf9\x03\x9e\x08\x32\xdc\x2b\xb4\xc1\x70\x08\xdc\x0c\xbc\xdf\x19\x66\x69\x8e\xe5\xe3\x4d\x81\xce\x40\xe2\x88\x17\xf1\x4a\x94\xa5\x49\x55\x7c\xef\x6a\x1d\x99\xdb\x7a\x07\xfd\x40\x9e\x46\xd1\xa5\xcb\x64\x8a\xac\x86\xde\x41\x54\x56\x6e\x8d\xd2\xac\xbb\xaa\x4c\xc4\x46\x65\x1e\xe2\xe9\xbe\xec\x2d\xa8\xd4\x0a\x9e\x42\x4a\x57\x69\x74\x12\x85\xc8\x51\x85\x31\xe3\xe7\x24\x1b\x0a\x3e\x3a\xb2\xa3\xd4\xe9\xa1\xe3\x0e\xfc\x40\xdd\x8d\x69\x64\x13\x61\xe5\xa3\x2c\x2f\xd0\xe7\x13\x6f\x6a\xa7\x79\xfb\xdf\x02\x76\x88\xbb\xcc\x7a\x3d\xb8\xe6\x0d\x6d\x33\x34\x1e\xa7\x39\x43\x87\x9c\xa3\x70\x75\x7c\x3a\xb0\xa6\x53\x4e\x3e\x11\xb4\x5e\x5a\x74\xc0\x4d\x35\x52\xc8\xca\x24\x1c\x46\xf0\xf8\x5f\x74\x0c\x79\x35\x0e\xc7\x5a\x13\xa7\xfd\xa6\x5a\x23\x2d\x8b\x3c\xea\xd9\x56\x4d\xcb\xe0\xc0\x82\xc3\xb0\xd5\x62\x5a\x11\x61\x24\x8d\x96\xce\xd6\x25\xb5\x1f\x96\xa3\x5e\x62\xd7\x74\xbd\xcb\xd4\x37\x7e\x33\xb5\xcb\x7f\xa3\x9d\xdb\xb8\x97\x8e\x5a\xfe\x08\x07\x97\x59\x32\x8e\xe9\x50\x32\xdf\x2e\x48\x3e\x71\x46\x09\x9a\x9e\x47\x67\x0e\x07\x39\x34\x41\x04\x30\xba\xcf\x1f\x3b\x36\xdb\xa7\xa4\x9b\x6e\x2a\xe9\xb2\x0d\x6f\x6e\x72\xec\xdf\x47\x62\x23\xc3\x11\x05\xdc\xc1\x94\x08\xff\x81\x9f\xa8\x83\xa0\x29\x05\xa6\x89\xcf\x6c\x1e\x04\x8a\x3b\x71\x7f\xe2\xc9\x2a\x9b\xca\x13\xe0\x89\xf5\xc7\x6b\x13\xd7\x99\x29\xb6\x93\x88\xc7\x2b\x30\xe5\x19\x57\xe8\xe6\xe3\x8c\x2c\x09\x51\xf0\xa1\x3a\x67\xb2\x24\xbf\x99\x5a\xbb\xfb\xf7\xb7\x73\x9a\xab\xd1\xc9\xed\xb2\x28\x27\xd1\xf8\x5e\x1d\x87\xbc\xd7\xf5\xe1\xb2\xb8\x55\xef\xcc\x57\xff\x4c\xda\x5c\x7e\x6e\x5c\x26\xa6\x17\x89\x88\x38\x83\x2d\x14\x9c\xe0\xa8\xca\x35\x46\xd6\x40\xdc\xbd\x06\xfb\xe6\x37\x81\x97\x7f\x4c\x72\x43\x39\x17\xc3\x05\x02\x0f\x48\x38\xd5\x74\x79\xdd\xd4\xe4\x05\x1f\x76\x18\x66\xcc\x74\x94\x82\x12\x30\x4e\x42\x81\xf7\x59\xff\xd8\x14\xe1\x50\xfd\xea\x13\xea\x57\x9f\x50\xc0\x87\x91\x8d\x8b\x9e\x93\xc2\x06\x83\x17\xe1\x82\x5f\xab\x11\x77\x15\x57\xf2\x61\x54\xb0\xe5\x15\x36\xf0\x29\xad\xd3\x3a\x7d\x05\x9c\x67\x24\x7f\x87\x7d\x91\x32\x12\x18\x99\x38\xb6\xd9\x8c\x6f\xbc\x72\xc6\xeb\xe6\x99\x8e\x36\x7a\x4b\x49\x5d\xc6\x6b\x49\x38\xdc\x45\x9f\xcf\x28\x2e\xdc\x7b\x19\x1b\xb7\x9c\x6a\xd5\x25\xe5\xec\x7f\x9c\x22\x1c\xff\xff\xd8\x03\x82\x01\xf3\x61\x20\x49\x5f\xb5\x71\x5c\x53\x0e\xc3\xf5\x4a\x51\xa0\x47\xf7\x19\x09\x27\x1e\x90\x29\xc2\x8e\x75\x5f\xe5\xec\xe8\xf8\xdb\x18\x25\x49\x1a\x42\x22\xe1\xc8\x1c\x5f\xe7\x87\xf4\xc3\xf8\x75\x43\x06\x91\x55\x79\x34\xe7\x1c\xe2\xd1\x4f\x1b\x92\xdf\x04\x0f\x3b\x6a\xab\x54\x89\x84\x2a\x1d\xbc\xfe\x2a\x76\x14\xbf\x51\xf8\x6e\x12\x09\xd9\xe7\x9b\x61\x7f\xa8\x29\x19\x0c\x1e\x12\xe4\x13\x3d\x15\xf4\x0d\x6e\xa2\x6f\x89\x90\x71\x56\xbb\x58\xdc\x64\xe8\x06\x02\xf9\x95\x89\xaa\x1e\xd0\x78\x90\x9b\xdf\x72\xc7\xc4\xcf\xe8\x61\xe1\xe0\x7f\x13\x57\x28\xc2\x53\xdb\x7b\x44\x2f\x2d\xcd\xb5\xc3\xa8\x88\x5e\xb3\xa2\x56\xa8\x04\x1b\x0e\x39\x3a\x50\x53\x63\xb2\xcc\xa0\x6a\xee\xd6\xc5\x3d\xfa\x39\xce\x2b\xae\xba\x52\xe1\x31\xf8\xe4\xc3\x24\xf9\x53\xb8\x20\x44\xc1\xe7\x3b\x55\x65\x86\x0c\xe9\x82\x9a\x61\x3f\xba\xae\xb4\x55\x77\xad\xfb\x7e\xdc\xdc\x2f\x01\x56\xca\xfd\x92\x89\x67\xff\x3d\xa5\x05\xaa\xef\x4c\x5a\xfb\xf7\x3b\x27\x7d\x7a\x06\x58\xf3\x3b\xa1\x4a\x28\x47\x7e\x15\xf4\x35\x36\x00\x47\xdc\xa7\xd6\xbd\x90\xdb\x96\x3a\xac\xff\x8b\x4f\x75\x7c\x79\xfe\x4b\xff\x41\xa7\x3e\x7c\x62\x67\x1b\x25\x58\xbc\xe8\x18\xee\xfe\x49\x5d\xa1\xfe\xa0\xe8\x7e\xab\xe1\xd9\x44\x77\x9d\x88\x6e\x2d\x2c\x61\x25\x0a\x6f\xa2\xa4\x30\x24\xe4\x56\x7d\x8a\x63\xf1\x1d\x58\x70\x3d\x8f\x86\xd6\x42\x37\xb3\xc6\x41\x12\x18\xa3\x4f\x6b\x44\xf0\xfa\x0d\xf3\xc3\x9e\x0d\x63\x6a\x12\xd0\x05\x03\x15\x7e\x8e\x80\x6c\xfc\x5a\x79\x51\x85\x69\x99\x15\xfb\x54\x4b\xe5\x38\x0e\x3a\xec\xef\x3d\x1d\x02\xd3\x21\x25\xfa\x49\xe0\x91\x4e\x17\xb1\xc8\x70\xb6\x63\x5e\x2c\xe7\xb7\x3f\xe6\xae\x06\xdb\xc6\xe0\xde\xaa\x91\x6e\x30\xa3\xe5\x91\x31\xe2\x84\xe3\xfd\x23\x62\x2d\x4d\xc6\x05\x59\x9a\x14\x33\xaa\x81\x78\x55\x01\x92\xae\x2b\x35\xe5\x6f\x3b\x44\x53\x37\x5d\xf5\x98\x38\x8c\xaa\xc0\x16\xc6\x3d\xdc\xa5\xd2\xbb\x93\x8d\x53\x03\x66\x0b\xf5\x5a\xfe\x1e\x72\x65\xc6\x6f\x6a\x3a\x13\xf9\xb2\xd9\xa9\x30\xdd\xac\xe0\xe0\xd2\x1b\x6f\xcc\xfe\xfd\xc0\x57\x87\x6f\x29\xf8\xf0\xd7\x9b\xe0\xad\x85\xcd\x8b\x08\xde\x37\x47\x94\x80\xa9\x53\x31\xda\x54\x6c\x92\x91\xc9\xf2\x21\xd0\xa3\x80\xbe\xdf\x56\x42\x1a\x67\x34\xa1\xed\xbc\x4a\x3f\xc1\xa6\x8a\x30\xb1\x10\x5c\xdd\xff\x48\x5f\xc1\xaf\x83\x67\xd4\x84\xb1\x57\xe6\x45\x16\x99\xf8\x71\x5f\x5c\xbd\xad\x40\xa4\xff\x7c\xa2\x06\x4f\x57\xe8\xac\x41\xd8\xf8\x3a\x9e\x37\xff\x87\xa0\x8e\x41\x5d\x92\x02\x86\x31\x85\xd2\x16\x50\x1b\xff\x8c\xc6\x2b\xff\x2b\xda\x3f\x35\xd1\x01\xb1\xd6\xaf\xb5\x18\x9a\x72\xfe\x62\x18\x25\xcb\xd4\x98\xc5\x8d\xb9\x17\x28\x03\x4e\x74\x55\xb5\xcb\x87\xf2\x70\x9a\x67\x2d\x83\xa3\x4d\x73\xb3\x51\xda\xb3\x59\x12\xbd\x26\x9b\x16\x3f\xf4\x27\x14\xed\xf8\xb5\x96\x1a\x4d\xb3\x6c\x0d\xb3\x3f\x14\x82\x3f\x9b\x28\xcb\x2f\x1e\xb1\x3b\x41\x34\xe5\x96\xd4\x72\x1e\xda\xef\xa8\xe4\xaa\x37\x0e\x67\x95\x20\x76\xdd\x46\xe8\x02\xb4\x7f\x31\xa0\xbd\x4c\x30\x0b\x7e\x3d\xa9\xad\x1d\xae\xee\x5f\xe6\x7d\xff\xe7\x78\x46\xfc\x46\x1f\x08\x85\x21\x7b\x62\xc4\x8a\xbb\x35\xc4\xd1\x6e\x22\x26\xb0\xa6\x36\x96\x02\xef\x70\x7a\x62\xa8\xfc\xaf\xe0\x5a\xb1\x14\xdf\x53\x2e\x37\x7f\xad\x0d\x6b\x89\x76\xea\x08\x1d\x7e\xe8\xf6\xc8\xba\x17\x12\xfb\x32\xcb\xb3\x33\xa3\x49\x81\x04\xba\x99\x79\x2d\x8a\x09\x18\x88\xb2\xfc\xe2\xa4\x4e\x7a\x38\xb0\xe0\xba\x78\x0d\x38\xef\x9e\xc9\x56\xa3\x24\x32\xe8\xb8\xb3\xdb\x23\x82\x94\x58\x3f\xfa\x4d\xd1\x4b\x47\x51\x02\xb7\x8d\xea\xfb\x58\x0f\x06\xdf\x27\xe2\x30\x1e\xd9\x3a\xd0\x12\x51\xf4\x34\x44\x2e\x4a\x91\xec\x8b\x5f\x2e\x76\x56\x9f\x85\x39\x37\xa8\x5e\xc0\xcc\xdc\x0d\x14\x49\x74\xa3\x7e\xc3\x74\x31\x3f\x35\xd1\x7c\xe5\x95\xf6\xa0\x8c\x7a\x96\xce\x88\x19\x2d\x91\xc9\xfa\xb3\xc8\xd9\x99\x3b\x29\x33\x52\x7f\x64\xf4\xd2\xb2\x5b\x3c\x5a\x3d\x78\x3c\xac\xfb\xb5\xa4\x92\x1e\x35\x1e\xd0\x9b\x64\xf8\x2c\xb3\x2a\x3f\x6e\xde\xb5\xee\x69\x43\x3c\xad\xc7\x72\xff\x11\x36\x3d\xbf\xc1\x7d\x13\x97\x06\x5f\x93\x8c\x63\x93\x43\xff\x4e\x4f\xb9\x1c\x60\xba\x79\x9a\x36\x2c\xf3\xae\x49\x7a\x7c\x26\x3a\x8f\x0c\x0f\x0b\xbd\xd0\xa4\x23\xb9\x92\xba\xa1\xaf\x43\x37\x7b\x39\x99\x53\x53\x6d\x8a\xfd\xfb\xc1\xba\x9f\x51\x75\x33\xc4\x04\x90\xec\x5f\xd5\x0c\xfc\x46\xbc\x5a\x3f\x36\x03\x5c\x99\xd8\x56\xd2\x0f\x16\x1b\x53\x8f\x1c\xa5\x2a\xd8\xf6\xf6\xd0\x0e\x92\x0e\x63\x2d\x35\x57\xe8\xff\x3f\xe0\xbd\x89\xac\x04\xbc\x0a\xe1\x2a\xb6\x9c\xd6\xf6\x05\x04\x40\x04\xe3\x3f\xa1\x9d\x26\x26\xae\x8d\x63\xcd\x74\x64\x87\xe9\x2a\x15\xfc\xb2\xef\x3c\xe8\xe3\xe2\x44\x0b\x05\xff\xea\xaf\x7e\x52\xbb\x92\xdf\x43\x40\xc7\x03\x63\x52\x24\x5a\x3f\xaf\x23\x9b\x76\xe3\x1d\xa7\xd1\x03\xdf\x67\xcc\x1f\x1e\xe9\x28\x97\x86\x59\xf0\xd5\x71\xe8\xdf\xc1\x23\x65\x8d\x5e\x3a\x4f\xd0\x23\x98\xa1\x35\x87\x16\xfd\xd3\xd4\xda\xc3\x2e\xda\xb9\xae\x36\xce\xb7\x29\xbf\x43\xa4\x79\xa2\xa3\x9c\x44\x77\x74\x3c\x62\xe5\x4d\xe4\xf1\x00\xf4\xed\x23\xa4\x1f\xd6\xfe\x75\x50\x1d\x00\x7c\xfb\x91\x52\x77\x60\x8a\x17\x7a\x04\xc7\x1b\x97\x27\x89\xfa\xd9\x9c\x35\xbe\x64\xd6\xeb\x5b\x95\x5a\x10\x34\xcd\xc6\xbb\x5b\x4e\xf3\x62\xa2\x58\x6d\x8b\x54\x49\x60\x57\x5e\xa8\x11\x48\xb1\x18\x30\xb2\xfd\x2b\x4a\xd7\x70\x4c\x0a\x93\x53\xa4\xf8\x7d\x01\x9d\xbe\x96\x26\x68\xb7\xb9\x51\xe9\xc2\x82\x1b\x39\xf9\x7e\xe8\x28\x1a\x45\xa1\x2a\xaf\x30\xf9\x13\x6d\x4f\x1f\xc9\xc4\x3e\xb2\x39\x4d\xfe\xff\x97\x7d\x37\xc8\x24\x54\x85\xf4\x40\xec\x3c\x90\xbe\x9c\xd4\xf2\xe9\x1f\x4e\x3c\xb6\xf3\x8a\xe2\x62\xd8\xe4\x0b\xe9\xda\x6c\xb5\x56\x80\x55\xe0\x6c\x83\xdf\x28\xf1\xd3\x3f\xa0\xeb\x94\xed\xb5\xfd\x99\x2e\xcd\xb5\xc7\xe9\xb8\x8c\x3d\x68\x04\x3b\xe9\x8a\xda\x55\x57\x1c\x8a\xd9\x26\x45\xc4\xe5\x30\x76\xf2\x71\x95\x19\x1e\x57\x00\x07\x93\x2f\xb3\x0d\x08\xe7\x96\x93\x5a\xa2\x59\xf3\x81\x1e\x8f\x5b\xca\x35\xf0\x9a\x56\x5a\xbc\xe6\x26\xb2\xe1\xb0\x4c\x44\xf1\x8d\x07\xfa\x81\x1e\xee\x37\x4c\x61\xfb\xd1\x40\x9c\x1f\x64\xc6\xa0\xe6\x0d\xda\x7b\x27\x4b\x69\x86\x13\xad\xd8\x19\xc5\xac\xdf\x54\x30\xb4\x63\x74\x3b\x00\x37\x79\x57\x2d\xaa\x7c\x6c\x42\x0b\x24\x87\x33\x25\x75\x2b\xfe\x8f\xd1\x11\x15\x7d\xb4\xea\x13\xd0\xff\xf9\xca\x44\x05\x43\x2e\x83\x45\xc5\xfb\x99\xc8\x0f\xe3\xe9\x8c\x76\x50\x52\x81\x9b\xf8\xc2\x7f\xc3\xfb\x6b\xd8\xd8\xac\xd9\xde\x4e\x7f\xc0\x41\x78\x8f\xe5\x82\x27\x2a\xc1\xdb\xa1\x0c\x6e\xbf\x81\x30\x2f\xf6\x8a\xcf\x2a\x05\xeb\x41\x12\xf5\xa3\xd0\x24\xc5\xee\x2a\xb4\xb9\xfc\xd2\x0d\xcb\x3f\xa0\x45\x8e\x75\x79\x23\x50\xd8\xa6\x0f\x26\xde\x02\xea\xe7\x35\x8e\x2b\xac\xa5\x24\x3f\x72\x34\x0e\x33\xae\xce\x07\x2c\x3e\x34\x17\xbe\x32\xf1\x93\xb4\xaf\x34\x48\x1d\xbf\xdc\xb6\x49\x5a\x0e\x86\x33\x3e\xa3\xdf\xd1\xf1\x76\x24\xd0\xf7\x40\xb2\xf6\xc0\x37\x2d\x8b\x28\xe3\xef\xf1\xe5\xb8\xce\xbd\x1b\xc4\x70\xe6\xdb\x99\xcd\x2d\x44\x01\x99\x62\x32\xf1\x54\xb7\x69\x10\x8d\x34\x73\xd6\x6c\x3e\xd3\xfa\xed\xcf\x73\x82\x00\xd6\x6f\x4d\x54\x50\x0c\xe7\xb6\xc3\xf1\x3e\xd3\xce\x57\xa3\x9c\x0b\x1b\xa7\xb5\xe6\xfa\xb6\xe7\x95\xcd\xed\x17\xd2\x61\x42\xfc\x64\xa1\xad\x2b\x83\xb1\x4b\xba\x9b\x7a\x06\xc9\x8a\x34\xd6\x9a\xa0\xed\x61\x5a\x14\x22\x0b\x87\x05\x7f\x0a\xdb\x90\xdf\x38\xbe\xc8\xea\x30\x1a\x51\x0c\x45\x96\x88\x38\xc3\xaf\x55\x0c\x1d\xc7\x66\x8d\x70\x75\xd8\x9e\x3f\x0c\x14\x0e\x6b\x93\xc8\x0e\x8a\x6e\xf2\x82\xf3\x65\x6a\xd5\xd5\x11\x05\xca\x72\x7d\x2a\x7d\xa9\x6a\xdd\xbe\x89\x18\x61\xdf\x14\xf7\x3d\x31\xb0\x67\x7a\xb3\x1e\x25\xdc\xa2\x75\xc2\xaf\xd7\x3d\x62\x8d\x55\x3a\xf9\x8d\x02\x21\x9b\x3c\x2f\x47\xe4\xa0\x05\xe1\x1f\x37\x67\x5e\x9a\xf3\x1e\x39\x55\x8e\x00\xfc\x1a\x24\x9d\x71\xe3\xff\x9c\x92\x60\x8c\xe9\x67\x95\xf0\xa7\x29\x8a\xa8\x28\x7b\x36\x9f\xf5\xed\xe5\x3f\xc5\x61\x22\x90\xa4\x7a\x73\x7f\x61\x61\xeb\x44\xa3\xa1\xe2\xc0\x66\x23\x93\x48\x6e\x2c\x84\x0a\xfa\x63\x64\x0d\xf7\x35\xdb\xf5\xd6\xd4\x72\xab\xaa\xcb\x41\xca\xd0\x4b\x3c\xeb\xff\x4e\x73\x69\x59\x78\x0c\x89\xd2\xb9\x29\xc1\xf4\xc5\x17\x0f\xb5\x47\x66\xad\x4b\xdc\x20\xb4\x2e\x31\x0f\x61\x5d\x2d\x7e\xa3\x66\xe5\x90\xc4\x4b\x33\xa8\x6b\x01\x16\x05\x41\x2f\x1c\xa3\x8f\xa3\x0b\xc7\x36\xe6\x13\xcf\x25\x7f\x7d\x2a\x0c\x50\xc3\x7a\x98\xe6\x45\x0d\x69\x8f\x9e\x93\xf0\x28\x9f\x71\x73\x77\x62\x37\x13\x32\x77\x46\x69\xd1\xde\xd3\x79\xfc\x39\x15\xdd\xa6\x0f\x94\x2a\xea\x8c\xa2\x57\x25\x50\x21\x36\xfd\x99\xf2\x3b\xfe\xb3\xa6\x9d\x65\xcb\xf1\x30\xcd\x22\xcc\xb0\xb1\xb8\xae\x2b\xd0\xf4\x39\x3c\x2b\xa4\x84\x47\xa7\x1e\x4f\xb5\xcc\x47\xb6\x98\x9d\xb6\x56\x41\x23\xee\xae\x2e\xb4\x27\x8a\xb9\xb5\xb7\xe3\xa3\xeb\xc0\xc4\xe9\x40\xa9\x8c\xb0\x4e\x10\xbf\x69\x88\xae\x54\x37\xc5\x42\x45\x60\x00\x6c\xe0\x27\x14\xdf\xc6\x37\x09\x2a\xc8\xef\xb4\x91\x4d\xf6\x2a\xc0\xf9\xa9\x89\xb2\x8b\xc2\x07\xb8\x9e\xc0\x81\x05\xef\x80\x72\x44\x0c\x8c\x00\x69\x97\x71\xa3\x2a\x11\x7e\xa8\x5d\xa8\x4e\x6a\x57\xe4\x1b\xaa\xb1\x74\x13\xb7\x86\xbf\xdc\xc5\xfd\xe1\x5a\x37\x8b\x7a\x80\x8c\x29\xf0\xbd\x20\xf1\x1f\xd4\xfa\x37\xca\xbf\xab\x6f\x12\xde\x57\x0c\xb2\xaf\x0b\x1f\x2a\x69\xcf\x77\xd4\x5f\xd9\x35\x9e\xb9\x6b\x97\x2b\x47\x73\xf6\x6a\x1b\xa7\x34\x7f\xe9\x0b\x7d\x1e\xa5\xd5\x7c\x29\xf8\x4d\x03\x3c\xf1\x50\x3b\xb1\x26\xeb\x82\xbf\xe4\x0a\x4b\x97\x73\x6e\x2a\x6a\x5d\x92\x66\xf9\xb2\x6d\xb5\x0e\x2c\x6c\xa1\xe4\xd8\xba\xa3\x46\x21\x5d\x1b\x25\x83\x9c\x50\xee\x78\x9c\x00\x3c\xe1\x54\x47\x21\x23\x92\x43\x4d\xa1\x23\xb7\x76\xb6\x16\xd9\x29\x8e\xa0\x41\xb9\xab\x53\x23\x57\x55\xcb\x42\x64\x8f\xf6\x3a\xec\x64\x8a\x06\x29\x73\x92\xf0\x8f\xc1\x97\xc6\x95\xdc\x54\xc4\xa7\xa1\x19\x8f\xa3\xc4\xe6\x78\x92\xaa\x60\xa9\xe3\x2e\x50\x8f\xfd\xe5\xc4\xd3\xd3\x7a\x76\x44\x26\xc3\xa6\xb0\x50\xdb\x61\x19\x52\x84\x46\xd1\x24\x6d\x18\x3f\x8c\xb3\x68\x64\xd8\xeb\x10\x1d\xac\x2b\xaa\x9b\x75\x45\x43\xf7\xd2\x15\x8b\x90\x86\xbc\xe7\x6e\xe0\xcd\x9b\x18\x09\xeb\x9a\x4a\xf3\x87\x45\x7b\xb9\x21\xc6\xc8\x38\xbb\xe5\xb8\x9a\xa7\xa8\xb4\x14\x54\x64\x83\x30\x1b\x49\x95\x28\x37\x3b\x4c\xa8\xa6\xa5\x99\x8b\xa1\xed\x17\xda\xc7\xf4\x7b\x0a\xe3\xfd\x3d\xb5\x28\xc2\x61\x9a\x09\x10\x51\x74\xa5\x3c\x01\xe1\x6c\x6d\xd0\x32\x20\xcf\x4c\x80\x3c\x3e\x56\x56\xa5\x37\x91\xe1\x22\xc8\x80\x99\x83\x0e\xf4\xa9\x89\xb6\x0d\x61\x0d\x14\xac\xf4\x5d\x50\x30\x41\x9e\x74\x79\xa2\xf4\xfb\xcf\x6a\x59\xfd\x56\xc7\x0f\x45\x6d\x32\x34\x09\xf9\x7d\xf8\xad\xf9\x37\xaa\x41\xbd\xa9\x00\xb1\x67\x95\x11\xba\x7d\x95\xc8\x2c\x54\x9d\x8a\x53\x87\xd2\xc6\xe7\x9d\xea\xde\x54\x97\x22\x6b\x8c\xbe\x09\x29\xf6\x66\xa0\x7e\xd6\x16\xc9\x04\xf0\x7f\x68\x3c\xac\xc7\xb1\xa1\x61\x07\x6e\x00\x92\x26\x1e\x80\xf2\x1b\xd5\x1f\xed\xdb\xd5\x7d\xf4\x8b\xb0\x6e\x3e\x46\x2d\x2f\x86\x4b\xd5\xea\xc2\xc2\xc5\x26\x45\x76\xb8\x03\x63\x27\x35\x29\x75\x86\xfe\x81\xcf\x5a\x01\xd7\x54\xf3\xfd\x43\x8e\xf5\xa8\x54\x90\xfe\x9c\xa6\x56\xb5\x91\x08\x8b\x69\x4c\x1d\x73\x2f\x2d\xcd\xb5\xd3\x41\x9a\xac\xa5\xcb\xad\xaa\x54\x56\xe6\xe4\xae\xbd\xeb\x10\x70\x45\x66\x0d\x31\x64\x38\xb6\x3a\x24\x80\xf3\xfa\xfa\x58\xbb\x70\xdd\x9a\x72\xbd\xaf\x0a\xbb\x34\xb3\x4c\x58\x9f\xf1\xe1\xff\xbe\xb2\xd5\x7c\x0f\xb7\x0b\x29\xd9\x0d\x85\x35\x8e\x92\x90\x2c\x69\x7a\x7b\xab\x25\xe9\x5a\xab\x07\x0f\x0a\xc8\x5f\xdf\x90\xeb\x94\xe4\x61\xc4\x33\x03\x88\x06\xbe\xea\xfa\xc4\xd7\x60\x37\xf4\x18\x0a\x3d\x63\x65\xc4\xeb\xfe\x42\x8b\x38\xeb\x0c\x4b\x43\xa6\x43\x13\x0f\xcc\x36\x2b\xe6\x0b\xda\x8a\xf9\x82\x6a\xae\x94\x7d\xc4\x6d\x17\xfb\x3e\xf7\x92\x73\x63\xf0\xfa\xee\x1f\xb9\x02\x3a\x1f\xa7\xcb\x36\x99\x51\xdb\x92\xdb\x0c\xd8\x97\x68\xfe\xc9\x0d\xd9\x6e\x3b\x58\x1d\x39\x36\x29\x48\x87\x2c\xb1\x65\xc6\x73\x5c\x34\xe5\xb9\x19\xcb\x6f\xbc\xfd\x52\x16\xad\x44\xd4\xdb\x68\xe9\xef\xa1\x9b\x2d\xdf\xf9\x94\x82\x37\x24\xe1\xb2\x4d\x5a\x35\x12\xb7\x5b\xa7\xe7\x1b\xfa\x7a\x2f\xb4\x07\x26\x8e\x8d\x10\x87\xd4\x11\xe4\x1d\x73\xab\xef\x42\xef\xe5\x6e\x43\x75\x47\x84\x8d\x28\x6b\xf9\x26\x23\x20\x9e\xe2\x5c\xba\xfd\x2f\x0e\x1e\x6c\xaf\x44\x3d\x9b\xd6\x84\xe7\x11\x1b\xf9\xf5\x54\x44\x7f\x5e\xec\x4d\x29\xa2\x43\xd6\xe1\x2e\xc2\x06\xbf\x99\x72\x5e\x3d\x78\xb0\x6d\x42\x28\x4e\x88\xe6\x7b\xf5\xb7\xfc\xba\xa9\xf5\xdf\xcf\xcc\x60\xe4\xd5\xe1\xb8\x83\xab\xe9\x2e\x57\x1b\xd3\x59\x62\x86\xcf\x78\xb8\x17\x24\x1f\x44\x83\xd7\x03\xf0\xb5\xcb\x51\x75\x3e\x99\xf1\x18\xc4\x24\x01\xd1\xdf\x54\x20\xfa\x9b\x1e\x75\x4b\xb9\xbe\xc8\x13\x53\x1c\xfb\xea\xd3\xe4\x85\xec\x2c\x2e\x7c\x88\xdf\xbb\xee\xb1\x1c\xdd\x2c\x4d\xc2\x14\xb5\x9d\xe8\xc6\xb6\xbc\x86\xac\xd7\xce\xb5\x4e\x86\x18\xc7\x2e\xa7\x86\xfc\xa6\xc1\x6d\xe0\x50\x7b\x58\xf6\x7a\xb1\x2c\x49\xe9\x5b\xd1\x0e\x96\x86\x96\xb7\x57\x4c\x73\x49\x82\x71\x48\x3e\xb5\xee\x23\xcc\x5b\x13\x15\x9d\x3f\xd1\x20\x77\xbf\x48\x3d\x14\x76\xa8\x50\x1b\x65\xd1\x6d\x14\x49\x83\x8a\x68\x64\x61\xc3\x24\xba\x7e\xd5\x49\xe2\xf8\xc6\x4e\xbd\xf6\x4e\xe0\x67\x93\x37\x69\x69\x23\xbe\x9d\x50\x29\x78\x91\x8e\x66\x3c\x25\x8b\xb9\xb2\x0e\xf9\xe0\x4e\x8a\xf7\x9a\x4c\xef\xfa\xd6\x64\xac\x3b\xc5\xb2\x1f\x1a\x2d\x70\x5a\x4b\xcf\xdd\xf6\x08\xdf\xb8\xcc\x87\xb3\x9e\x05\x88\xfa\x5a\x7f\x23\x56\xe0\x7b\x7a\x1e\x31\x6d\x85\x35\x7f\xb8\xbd\x1a\xf5\xd2\x55\xec\x2c\xb1\xd9\xf1\x73\xb6\x0f\xa6\x1e\x26\x51\xe6\x8b\x28\x8c\x4c\xcd\xf1\x8a\x25\xc4\x04\x09\xe8\x5b\x12\x43\x9b\xf5\xd4\x26\x7c\x83\x96\x2c\xbf\x9e\xea\x8a\xce\x1f\x6e\x8f\xa2\x6a\xa1\x8c\x4c\x42\x47\x0c\x8e\xa9\x8f\xd4\x31\xfa\x2f\x27\xca\xb0\xe2\x83\x06\x0e\xd6\xa1\x76\x62\x06\x03\x61\x54\xe3\x71\x02\x5a\xcd\xaf\xa7\x52\xea\x5f\x69\x17\x51\x4f\x34\x42\x41\xb5\x79\x87\x9e\x33\x96\xdf\xf5\xc0\xff\x92\x4d\x85\x80\xec\xd9\x78\x24\xb6\x0a\xec\xa5\x87\xe7\x2e\xc6\x7a\x4d\x33\x91\x9e\x59\x4d\x1c\xd4\x19\xe7\xd2\x47\xca\xd1\xe5\xa3\x89\x6e\x34\x71\x67\x88\xa7\x20\x6a\xe0\x7c\x5d\x2b\x95\x16\x85\x1d\x8d\xb9\x75\xce\xcd\x37\xac\x19\xa4\x87\x33\xb4\x32\x90\xdd\xc1\x0d\x8f\x61\x8d\xe8\x01\x01\x46\x83\xeb\x45\x3a\xb4\x83\xda\x33\x4c\xa9\x0a\xb6\x29\xbe\xb2\xf1\xb7\xa4\x84\xd5\x47\xf3\xeb\x75\x1f\xac\x4c\x97\xe8\x02\x29\x83\xe6\xc4\x50\xdc\xb3\x97\xce\xa8\x03\x75\x18\xc5\x2d\x45\xca\x3e\xc1\x98\x28\xf1\x3c\x9c\x6e\x41\xb5\xf3\xa1\x59\xb6\x68\xdc\x8b\xd2\x51\x75\x7c\x88\xb9\xbb\x02\xe9\x9e\x50\x2d\xe3\x7e\xb6\x56\x45\x5d\x05\x8f\x55\x1a\x4a\xd8\x25\x48\xda\x6e\xab\x1f\xb7\x66\x93\x3d\xaa\xad\xd3\xe2\x69\x88\xd3\x73\x5d\x9a\xe3\xff\xf2\xb6\xc2\x54\x5e\x9d\xf8\x99\x0f\xfb\xca\x21\xf6\xdc\x9e\xf8\xa0\xbf\x97\x10\xa6\xb2\xaa\x94\x94\xdb\x38\x8b\x92\x65\x16\xff\x5f\x74\x9c\x91\x96\xd3\xc6\x3c\xa9\x64\xd1\x4c\x9e\x47\x79\x51\xa5\xe2\x3b\x29\xe9\xc1\xc4\xf9\x3d\xad\x1b\x79\xb6\x46\x3d\xa1\x1f\xc3\xff\x2a\xf0\x8d\xc2\xbf\x9a\x5a\xab\xfb\xf7\xb7\xc3\xa1\x89\x97\xdd\x5a\xc5\xda\x00\x4a\x92\x5f\x3b\xa9\xa1\xdc\x66\x63\xe2\x57\xc0\x72\x10\x17\x0b\x9e\x00\x7b\x07\xd3\x9f\x09\xbf\xd7\xdf\xde\x81\xc9\xd9\x53\x07\xf3\xa0\x07\xaa\x86\x62\x1a\x9c\xf8\x1c\xb6\x9c\xbe\x2c\x08\x41\x4e\xf1\xaf\x7a\x3a\x6e\x54\xac\x44\xd9\xd4\xa3\x37\x51\xc6\x08\x55\xa6\x49\xe3\x71\x0b\x67\xba\x61\x48\x1b\x0e\x23\xdb\xdf\xe9\x51\x4b\xb4\xa3\xe6\xb7\x2e\xa9\x2c\xea\x94\xc2\xb2\x70\x17\x13\x43\xb2\x33\x8e\xa4\xd8\x35\x59\x16\x59\xb1\x7f\x77\x0d\x03\xd5\x10\x51\x40\xca\x28\xcf\x4d\xf2\x18\xe9\xf7\x01\x6d\xe7\x98\x58\x8b\x2f\x1e\x72\x80\x69\xda\x50\xe2\xbe\x49\x07\xbc\xc0\x50\x3d\xc2\x8d\x45\x66\xc4\x97\x53\xcb\x80\xd2\xef\x17\x2e\x2d\xfd\x2a\x41\xb4\xaa\x36\xa9\xcd\x52\x9a\xaf\xb4\x74\xa9\xf0\x91\xb6\xef\xfe\x48\x6d\x91\x17\xfb\xfd\x99\x6a\x29\xa3\x7f\x04\x05\x7a\x31\x55\x52\xfd\x14\xaf\xde\x13\x66\xd1\x78\x4c\xf6\x2f\xb4\xb0\x80\x2c\x00\x85\x8e\x4a\xdd\x7f\xf1\x74\xc7\xef\x25\x1e\x4c\x02\x4e\x73\x4d\xc3\x50\x08\x45\x33\xe3\xe9\x99\x98\xaf\x20\xab\xb9\x4c\x71\x0e\x85\xc2\xa5\xc6\xb5\x6d\x12\xd3\x13\xd0\x06\xee\xcd\x3b\xda\x91\xf5\x9d\xa9\x43\x82\xac\x05\x4c\x31\xdb\x52\xf6\x23\x74\x03\xa5\xf3\xea\x49\x1e\x67\x29\x2e\x20\x35\x7d\xc3\xcd\x5b\x40\xec\x93\xde\x96\x08\x0d\x79\x70\x33\xfb\x23\xa1\xc3\x78\x7b\x2a\xee\x1d\x7e\x51\x26\xa9\x47\xbc\xf1\x78\xcb\x1b\x9f\x37\x4e\xe2\xc8\xf8\x18\xb0\x36\xcc\xd0\xee\xa8\x8d\x88\x91\x8a\xc8\xe3\xea\xd9\x5a\x14\xc7\xb3\x4a\xb5\xf0\x82\xd2\x09\x01\xbe\x06\x39\xdb\xed\x89\x92\xa3\xbc\x1d\xfc\x3d\x65\xd4\x34\x1a\x95\x49\x14\x62\x8a\x06\x21\x56\x8c\x93\x21\x4d\x8a\xc8\xf4\xb1\x32\xbc\xd8\xbd\xae\x20\x44\x57\x34\xb0\xe4\x7d\x6e\x5c\x20\x36\xef\x50\x44\x9b\x5e\x66\x46\xc0\xb0\xe1\x14\x40\x49\x8e\x40\xb2\x67\x5d\xd9\x85\xbc\xed\x86\x7b\xa3\x35\x92\x8e\x4a\xcb\x3c\xd6\x22\x44\x30\xfb\xe3\xd7\x78\xf2\x5c\xb5\x16\x36\xc3\x2c\xd0\xc4\x48\x15\xc5\xcb\x02\x3f\xca\x0d\x7a\x3c\x46\xed\x82\x12\xf4\xbf\xa2\xa2\xe5\x86\x12\xf5\x12\xd7\x45\x0f\x85\x86\xa0\x9f\x98\x2e\x7a\x8c\x22\xab\xfa\x08\x67\xe9\x61\x66\x31\xc3\x28\x94\x61\x84\x10\xb6\x94\x87\x62\x0d\x69\x7f\xcc\x45\xa7\x7c\x18\x8d\xd7\xc4\xa5\x17\x2b\x17\x72\xfb\xc8\x35\xef\xeb\x76\x73\xdd\x0f\xc0\x44\x06\x69\x0f\x76\xd8\x3f\x43\xba\xc1\x6f\x02\x2d\xf9\x96\xdb\x38\x35\xcc\x72\x93\x66\x8b\xcf\x34\xde\xd7\xab\xae\x88\x60\x66\x3e\x5f\xd3\x67\x73\x92\x41\x0b\xce\x49\xf7\xac\xdb\x52\x2b\x36\xeb\x45\x61\xb1\x53\x59\x58\xbc\xa7\xe0\x88\x60\xf4\x0b\x2c\xaf\xe5\x5c\xe2\x58\x71\x19\x01\xe6\xb8\xf6\x0f\x1e\x46\xa3\x6e\xc9\x96\x68\x22\x16\xdb\xf2\x72\x7c\x13\xcf\x62\xfb\x23\xe5\x30\x1d\xa6\xa3\x71\x1c\x55\xa7\xf0\x2e\x4f\x8d\xbb\x3b\x51\xde\x22\x30\x89\x46\xaf\xe2\xb6\xf2\xc5\xbd\x42\x30\x97\xad\x4b\x93\x9a\x6b\xc8\x93\x7e\x72\xda\xf7\xb8\x54\x34\x19\x80\xa0\x14\x63\xc8\x96\xb3\x41\xfe\xf6\xe4\x59\x25\x96\x1a\xda\xac\x30\x51\x52\xac\xed\x51\x0e\xe3\x2c\xdb\x86\x34\x89\xdd\x31\x64\x61\xb5\x9c\xc4\xe8\x6d\xea\x62\x30\x0e\x88\x9a\xdb\x82\x09\x52\x7e\x1f\x2c\x1d\x21\x4a\xc2\x9e\x5b\x95\x17\x19\xfb\x86\x79\x9c\xd8\x29\xe5\x30\x7d\x4a\xad\x8e\xae\x4d\x6c\x3f\x2a\x64\x34\x2c\x38\xb5\x96\xd3\xda\xd8\xa8\x93\x91\x06\xf6\x29\xba\x11\x7c\xca\x62\x79\xca\x29\xe1\xab\x66\xd0\x99\xd0\x7d\x38\xcf\xc9\x24\xee\x3c\x3a\x55\xb8\xcc\x9d\x68\x7a\x8a\x1d\x9a\x02\xf2\xc3\x7e\x52\x8c\x8f\x5b\xfb\xe7\xbd\x0a\xfa\xc2\x02\x77\x02\xff\x0a\xf0\x24\x8c\xc8\x6e\xe0\xce\xf0\xf8\x3f\xf0\x1e\x95\xa7\x35\x65\x8d\xdb\xde\xc0\x02\xfc\x79\x7d\x3b\x0d\xd2\x9d\x3e\x14\x5f\x9b\xd4\x7a\x83\x1e\x97\x0b\x0d\x6f\x56\x5b\xa7\xa7\x84\x3b\x31\x6d\x98\x75\xf0\xe0\x92\x3f\x65\xe9\x88\xe3\xf3\x33\xa8\x1d\xa6\x4f\xb9\x1e\x7f\x98\xae\x10\x09\x59\xd9\x99\x72\x97\x0a\x2d\x2b\xd0\xf0\x79\xb4\xa9\x73\xe5\xaf\x4f\x9d\x53\xaf\xbc\x02\x49\x35\x0a\xcc\xd8\x43\x77\x94\xea\xca\x65\xca\x8d\x85\xbc\xda\x14\xcf\x0c\x84\x98\x39\x69\x42\x11\x7c\x33\x50\x56\x4b\x37\x15\x21\xa6\xda\x7a\x86\xbb\x3c\x8e\x53\xa6\x72\xa7\x27\x95\xb2\x38\x10\xef\xd5\xe7\xe0\x0a\x2f\x04\x5e\x94\xf5\x82\x1a\x78\x24\x36\xb4\x79\xce\x6c\xee\x97\xdd\x47\xf9\x73\xef\xc1\xf6\x3c\xd3\x3f\xca\x6e\xb9\xf6\xa8\x2f\x31\x8e\x03\x1b\xa4\xf3\x6d\xfe\x0f\x81\x07\x9b\xfd\x75\x9d\xeb\x55\xfd\x7a\x80\xf9\x8e\x81\x1e\x8f\x06\xd4\xb5\x89\x32\x5d\xe1\x91\x98\x48\x19\x6c\x7f\x04\x9f\x7b\xa9\x9d\xd8\x68\x80\xc1\xb0\xf4\x23\xab\xdb\xce\xaf\x5d\xab\xa5\x4b\x86\xe2\xbb\xdc\xf8\xe0\x83\x4f\x75\x3c\x65\x72\x2f\xb8\x18\xcc\x26\xd2\x21\x93\xcd\x3b\x11\x9a\x6f\xd1\xd6\xe3\xf6\x84\xbb\x8b\x74\x72\x8e\xcb\x6e\xcc\x7d\xa2\xda\x3c\x81\xdf\x28\x16\x51\x5e\xa4\x99\xcd\xf7\x78\x22\xfe\x51\x42\xe6\x39\x27\x08\x67\xe8\xf5\xae\x16\x92\x3b\xa7\x85\xe4\x98\x08\x85\x50\xf7\x5f\x02\xfa\xaa\x9d\x24\x10\x95\x2f\x68\xa5\x71\x93\x99\x62\x98\x22\x07\x14\x77\x04\xff\x55\xe7\x26\xbf\xb0\x5d\x7e\xda\x90\x11\xd1\xac\xbf\xa0\x0b\xe8\x77\xb3\x75\x1e\x7e\x8e\xd8\x1d\xb7\x94\xfb\xb9\xb4\x9c\xba\xe3\x10\xc2\xe6\x08\x48\x97\x27\x4a\x29\xeb\xb2\x22\x6c\x11\xfa\x05\xe9\x31\x93\xed\x29\xf8\xe8\xa3\xcc\x91\xf0\x3d\x5d\x60\xf3\xa1\x24\xa7\x81\xcd\x4c\xdc\x4b\x67\x5a\xfb\xf7\xbb\x53\xa6\x5e\x66\xd3\x0f\x11\x11\x66\x67\x9f\x92\xa5\x7d\xd2\x1e\x9b\x51\x7d\x8d\x63\x8a\x15\x7c\x53\xab\xcd\x3c\xd2\x11\xeb\x8c\x30\xcd\xc6\x69\x66\x0a\xbb\x1a\xf5\x60\xf3\x5c\xf3\xe0\xd5\xb2\x38\xe8\x33\xb7\x3a\xbe\x0b\x7e\x59\xd7\xec\xb1\x19\x90\xba\xde\x3c\xef\x09\xa8\xed\x6f\x1d\x55\x9a\x40\x17\xc8\xfa\x10\xed\xaa\x69\x76\xc6\xfe\xf9\x76\xdf\x94\x71\x11\x93\x72\xa3\x7f\x70\x35\x4e\xb6\xee\x71\x10\x2c\x10\xc7\xa6\x63\x64\x78\x00\x28\x8b\xd5\x39\xf4\xa9\x73\x6f\x3b\x4f\x71\x1f\x83\xfa\x0d\x75\x65\xbb\xe9\xca\xd0\xba\xfa\x53\xa2\xbb\x48\x22\xec\xe6\xe4\x66\x64\x96\x4b\xa3\x24\x28\xd9\x5f\x54\x1c\xf8\x1a\x64\x86\x8b\xb4\x1c\x0c\x6d\x36\x4b\x3b\x54\xec\x20\x7d\xe9\xcc\x9e\xf5\x78\x2c\xcc\xdc\xc6\xc8\xfc\xe8\x54\x31\x24\x4b\x64\x75\x98\x92\x27\x0f\x7a\x9b\x8f\x62\xec\xe2\x0a\x05\x77\x80\x5f\xd4\x35\xdd\xb5\xa9\xdb\x2d\xb0\xdf\xd5\xa1\x29\x66\x3c\x89\xf9\x67\xb4\x85\x71\x26\xef\x50\xd6\xe7\xf7\x9a\xda\x3b\x59\xe4\xac\x0f\xa5\x65\xab\x07\x1d\x13\x65\x74\x9e\x51\x9c\xc9\x95\x91\x2f\x4b\x48\xf2\x9b\x60\xba\xc9\xbf\xd4\xce\xd3\xea\x5e\x57\xb5\xfc\xd2\xdc\xd6\x25\x05\xed\x8c\x4d\x99\x99\x56\x4d\xf3\x58\x03\x17\xb7\x57\x84\xf3\x87\xdb\x51\x12\x0e\x69\xfc\xcc\xb4\xa5\x4e\x5d\x6a\xb0\x5a\x37\xee\x93\x0e\x1e\xe4\x0c\xf9\x4c\x13\x7b\x87\x72\xc8\x35\xd7\x6d\xc1\x44\xee\x98\x82\x56\x1d\x53\xf5\x83\xed\xf7\xd3\xac\xc8\x1f\xa7\x2f\x60\xc9\x2d\x5a\x8b\xd8\x05\x8f\xac\xd3\xcd\x43\x33\xf8\x6a\x4d\x7a\xb7\xfa\x3c\xcc\x29\x31\xa4\xe1\x21\xec\x44\x79\xe2\xb2\xcc\x11\xa7\x30\x68\x12\xd6\x98\xac\xf8\x2f\xd7\x75\x3e\x23\x6a\xe7\x8e\xf1\xbc\xb4\xb8\x75\x63\x2a\x1a\xed\xdf\xdf\xce\x2c\xa9\x0e\x51\x41\x55\x55\xb2\x5b\xb4\x57\xb6\x36\xa6\x6e\xee\xd2\x62\xbb\x6b\x72\x78\x6e\x31\xcf\x9d\xae\x50\xf7\x12\x71\x81\xff\x87\xa2\x18\xc7\xd1\x6b\xdc\xb4\x90\x62\x8c\x7e\x24\xbf\x51\x04\x28\xc8\x47\xed\x6d\x39\xad\xf0\x37\x03\xd5\x27\x7f\x53\xdd\xcc\xeb\x0a\xe0\x71\x35\xa8\x89\x13\xab\x3b\xc8\x8e\xd4\x78\x16\xf7\x95\xa1\x3f\x14\xed\xf9\xcf\x11\xfe\x38\x29\xc2\x4f\xc3\x3d\xbf\xad\x26\xd0\x69\x99\x3d\x59\x3d\x32\x64\xda\x67\x90\x69\x62\xf7\xfe\x1b\x35\xe9\xbf\xaa\xe1\x44\x68\xf2\xe1\xde\x7c\x1b\xdf\x82\xa6\x08\xeb\xc9\x22\x52\xfe\x1c\x0d\x23\x71\xc9\xf7\x0c\x94\x6b\x81\xc6\xde\x1f\x53\x2c\x2b\x38\xa0\x0b\xc0\x41\x2d\x68\x76\x31\x15\xc5\x97\xea\x22\x91\x99\x4e\xa7\x23\x47\xe6\xda\x63\xb1\xc9\x15\x0a\xf1\xef\x4d\x14\x1b\xf9\xf7\x54\x37\x69\x71\xe9\x40\xcb\x9f\x2f\x35\x6f\x49\x6d\x72\x94\xd9\x5e\x3f\xcd\x20\xa6\x80\x2c\x7c\xb6\xa3\x52\x72\xfc\x6c\x7e\x4d\x4f\x80\xff\xd1\xfa\xe3\x1e\x9e\x92\x99\xd5\xdd\xd5\x3f\x73\x41\xfb\xc0\x82\xf7\x5a\xf5\xe9\xe6\xa6\x26\x4d\x40\x6d\x9c\xc1\xf4\x74\xd3\x15\xa3\xc6\xb3\x8b\x1a\xa2\x1a\x01\x1f\x66\x3c\x47\x08\x63\x56\xa4\x80\x98\xb8\x70\x4c\x6d\x18\x9f\x2d\xb6\x8b\x61\x16\xf5\x0b\x40\x70\xb8\xaf\x8b\x87\xa9\x74\xff\x45\x0f\xe4\x96\xba\x9d\x49\x12\xa1\xb9\xce\x93\x21\x3c\x35\x19\x13\x35\xc9\xc4\x92\xcb\xa8\x0c\xea\x10\x7a\x40\xc1\xe7\xd7\x7e\xb0\x9d\x8e\xba\xcc\x11\xc6\x70\xe1\xa6\xea\x2d\x31\xd5\x4e\x0c\xea\xfc\x0f\xca\xcc\xab\x98\xb3\xa0\xf9\xfa\x06\x5d\x39\x52\x12\x14\x19\xd8\xec\xad\x75\x25\x53\x15\x2e\x3f\x8e\xf5\x89\x84\xf7\xa8\xea\x5b\x7d\x82\x66\x15\xc8\x2e\x5a\x38\xb3\xdc\x39\xe5\xd5\x2f\xcf\x2b\xb8\xec\xfb\x94\x2e\x38\x92\x6a\x75\x0f\x91\x77\xf0\x3d\x44\x99\x7d\xb7\xf6\xfb\x29\x84\xd2\x5a\xbd\x43\xa2\x85\xa2\xc3\xfa\x2e\x49\x4f\x21\xc9\xdb\x9a\xc2\x8b\xfd\x46\x75\x3c\xc4\x65\x4f\x0e\xb3\x5a\xe9\x2c\x85\x77\x83\x9f\x75\x2f\x2b\x31\xbb\x72\x16\x45\x7e\xa3\x5f\x50\xd2\x0b\xe3\x2c\x1d\xdb\x2c\x5e\x23\x95\x52\xb4\x24\xbf\xa3\x87\x85\x33\x28\x71\xb1\x58\xef\x28\x20\x3d\xf4\x5e\xb8\xcb\x43\xb7\x06\xe1\xe5\x5a\x0d\x13\xb1\x36\x88\xe2\x58\x23\xdd\xea\xa0\xed\xbd\xbe\xc7\x8d\x0c\x5a\xa6\x5e\xd5\xaf\x91\x71\xd8\x27\x95\xe5\xc2\x8a\x89\x4b\x86\xd5\x57\x5f\x8f\x27\xf3\x96\x7e\x4c\x6f\xb9\xd6\x54\x18\xa7\xc5\x30\xb2\x19\xdc\x08\xc4\x3d\xc8\x77\x76\xbe\x36\x75\xb3\x0f\xbf\xd8\xce\x6d\xf4\x9a\x30\xf9\xb1\x5b\x6f\xaa\xb6\xcb\xcd\x86\x5c\x65\x9e\xea\x14\xef\xfa\xdb\x04\x65\x95\x9f\x34\x4c\xf3\x71\x54\x98\x78\x56\x89\x03\x9c\xa4\xb5\x24\xac\x41\x57\xe4\xfe\xf8\x93\x1d\xff\x09\x4f\xac\x6f\xaf\xce\xf7\xcf\xb7\xc3\x72\x54\xc6\xc6\x79\x33\x60\x99\xdd\x0b\x7c\xeb\xe3\x9e\xab\xa4\x4c\x59\xa4\xa3\xb4\x5b\xe5\x44\xa8\x47\x6b\x36\x04\xa8\x5e\x1f\x28\x91\x73\x3d\x53\x88\x4d\x61\x45\xb5\x06\xcd\x8d\xe3\xca\x18\x86\x6d\x86\x04\x78\xdb\x72\x1a\x89\xc7\xd5\x22\xeb\xdb\x51\x94\x44\x79\x81\x25\x0c\x38\xcc\xc7\x4a\xea\xf8\x63\x75\xa8\x16\x26\x8b\xfa\xfd\x96\x9f\xce\x3c\x40\x32\xc6\x6f\x54\xa6\xb5\x9a\xa5\x85\x6d\x29\x26\xf7\x79\xba\x02\x7e\xad\xea\xfb\x91\xc9\xaa\x9b\x4e\x51\x06\x45\xce\xff\x1c\x68\x95\x4c\xfa\x25\xfc\x00\x1a\x01\x9b\xf9\x38\x33\x6b\xdb\x06\x30\x35\xe2\xef\xf6\x18\xf8\x1b\x55\x26\x1c\xdb\xdc\xc4\xac\xc1\x2f\x22\x97\x2d\x25\x7e\xd9\x30\x14\x5f\x31\x59\x64\x48\x37\xdf\xe7\xca\x81\x9f\xe9\x5f\xac\x39\xbc\x8f\xf2\x35\x7d\x43\x2f\x68\x5d\xcc\x0b\x0e\xc9\xd3\xb5\x26\x1c\x12\x9d\x9d\x56\x09\x3f\xdf\xda\xb3\xf6\x4d\xbf\x28\x8e\xcb\x3c\x4a\xe9\x59\xb5\x9c\x6f\x39\x0b\xa0\x8b\x4c\xa3\xf2\xfb\x08\x7b\x55\x0e\xd6\x43\xaf\x13\xd0\xd1\x9f\x22\x1c\xa2\x8d\xb6\x05\x9b\x1c\xa6\x28\x36\xcb\xa3\x25\x69\x56\x80\x0c\x82\x61\xc7\xcc\xba\x27\x5d\xdd\x46\x9c\x03\xa4\x75\x63\x1a\xf7\x30\x4f\xea\xdc\xd2\xe6\x61\xda\x4a\xe0\x31\x25\x3f\x77\x07\xcd\xc8\x2c\xdb\x72\x8c\x5a\x07\xc0\x81\x0b\xaa\x1a\x7e\x10\xf8\xd1\x28\x87\x4a\x69\x77\xba\x93\xca\x0c\x1c\x1a\x8a\x21\x93\x88\x65\x82\x9f\xd4\x46\xc7\x99\x5d\x11\xf5\x5f\x41\x1b\xb6\x9c\xe8\xf4\xb4\x40\xea\xfe\xfd\xed\x22\x33\x49\x5e\x25\x94\x1c\xe7\xf1\xbb\xfe\xad\xae\xcc\xff\xad\x16\x9e\x19\xa6\x45\x8a\x1f\xc3\x19\x26\x2d\x2d\xc9\x36\x1b\x10\x1a\x45\x66\xa2\x44\x29\x45\x7f\x5f\x05\xa8\xef\xab\x98\x1d\x9b\x6c\x60\xf3\x82\x66\x88\x1c\xa1\xa0\xd2\x29\x23\x22\x6a\x21\x39\xf1\x48\x77\x70\xb3\xf9\x0d\xdb\xda\xe0\x1e\xa2\xed\x73\x4d\xb1\x2a\x76\xc1\x6a\x84\xff\x5c\x0f\x67\x91\x8a\x6c\x5d\x72\x25\x6d\x56\x05\x8d\x5e\x4d\x80\xee\x36\x85\x62\x47\x78\xae\xfe\x58\x08\xb3\xfe\xa4\x3f\x74\xf8\x77\x29\xc3\x41\x6e\xc0\x80\x44\xac\xcd\xb3\x4a\xdc\xed\xfa\xd4\x4e\xdf\x3f\xdf\x1e\x59\x93\x97\x19\x13\xc9\x90\xa0\x43\xb7\x19\xe9\x32\x58\x87\x28\x5d\x36\xbd\x63\x77\x16\x31\x86\x15\xbf\xec\x27\xf4\x17\x28\x81\xaf\xd5\x8e\x81\x26\x7d\x80\x9e\x89\x78\x8c\x84\xef\xfb\x12\xfd\x05\xbf\x6e\x90\xb3\x6a\x67\x76\x6c\x4d\x81\xf3\xcf\xc9\xd0\x79\x22\xc2\x86\x42\xca\x76\xcb\x2c\x19\x9a\x11\x57\x33\xca\x1c\x52\xfa\x02\x1b\x2a\xcb\xcb\xa3\x62\x97\x87\xf9\x3f\xb1\xae\x9a\x32\x9b\xea\xac\x87\xb6\x9b\xb4\xcb\xfc\xbd\x79\xac\xa3\xfa\x79\xe7\xd4\xe7\x8e\x22\x5a\x4c\x2f\x3b\x0c\xa1\x32\x1f\x7c\x73\xe2\x1b\x1e\x47\x15\xc1\x9b\x13\x24\x74\x4d\x99\xed\x8d\x10\xf8\x38\x83\x27\x64\x2b\xb5\x3e\xf7\x12\x83\x94\xce\xab\x72\xee\xb1\x75\x4f\x74\xf7\x0f\x2a\xb6\x79\xfe\xb8\x86\x00\x2b\x01\xf4\x7f\xb4\xde\xda\xbf\x1f\x81\xea\xb3\x9f\xec\xd0\x1a\xc7\x9a\xe3\x92\x80\x32\xf4\xaf\x7d\xaa\xa3\xb8\x78\xef\x4f\x5a\xff\xe4\x90\x43\xd9\xd1\x25\xba\x53\xfc\xc8\x1c\xf7\x0d\x77\xad\xbb\x7c\xf6\xb3\xff\x70\xdd\x93\x90\xfe\x9b\x4f\x77\x6a\x5c\x36\xaf\x4f\xff\xe8\xfa\xf6\x7e\xc3\xaf\x90\x22\x32\xa1\x22\x84\xd8\xec\x67\xa9\x8c\xc2\x16\x61\xb1\x46\xed\x65\x13\x97\xa3\x28\x29\x47\x58\xa5\xae\x28\x73\x9f\x01\xcb\x72\xdc\xba\xbf\xae\xb5\xa2\x97\x4d\x42\x0b\xcd\xe9\x06\x39\xf7\x91\x9f\x4d\xad\xe6\xaa\x3e\xa9\xc2\x52\x8d\xd2\x73\x5c\xd9\xc8\x1c\x77\x58\x8f\x91\xc9\xca\x24\x2d\xc3\x61\xc4\x6b\xd3\x71\x2e\xbd\xb1\xd4\x1f\x2b\xfc\x57\x91\xc6\xbd\x9d\x4a\xf2\xef\xfc\xa4\xe6\xcf\x51\x7d\x05\xef\x4a\xc5\x54\xe1\x2e\x13\x2e\xeb\xbf\x57\x11\xe2\xd7\x3e\xfb\xd9\x56\x55\x5c\x63\x0d\x1e\x53\x0e\x64\xd3\x82\x73\x47\xe6\x5e\xae\x4e\xe5\x35\xcd\x3c\xbc\xac\xd4\xae\x2f\x4f\x6d\xd1\xe7\x9e\x6b\x7f\xea\xf3\xbf\xbb\xf8\xf9\xdf\x5c\x40\x96\x27\x0d\x46\xfa\xc5\xfc\x46\x39\xff\x7f\x18\xf8\x06\xc0\x87\xea\x47\xc6\x11\xc0\x80\xc0\xd6\xdc\x56\x74\xd6\x8b\x9a\x01\xe3\xef\xe9\xd8\x66\xa1\x4d\x0a\xc3\x2d\x7b\x0c\x16\xae\xea\x29\xc3\x55\x4d\xac\xcb\x9e\x7f\x54\xb7\x5b\xce\xa3\xdb\x87\xc4\xf1\xa8\xe6\xca\xef\x80\x7d\xa7\x60\x79\x55\x3c\xa3\x68\x2c\xdd\x46\xcd\x5b\x50\xd8\xdf\x9a\x0c\xcc\x14\xfe\x75\xff\xbc\xf7\x09\x69\x79\x32\x02\x3c\x54\xf9\xb5\xe2\xc3\x14\x66\x99\xac\xa6\xfc\x48\xe1\x4b\xe8\x6c\xf0\x9b\x89\x72\x4c\x7b\x57\x39\xda\xbe\xa7\x10\xa8\x6f\x20\x73\x13\x1d\x3f\xd5\x6d\x3f\xab\xaa\x18\x8c\xc6\xd0\xf2\xf9\xdf\xa6\x7a\x50\xd5\x7d\x6b\xb3\xfd\xaf\xeb\xb6\x21\x3e\x7d\xa8\xd2\xb5\x0f\x6b\x5b\x29\x0f\x53\xea\x34\xf0\x64\xac\xd6\x05\xda\x50\x32\xbf\x8c\x83\x95\x91\xbe\xef\xe7\xf7\xa3\x22\x1c\xf2\x7e\x41\x3d\x76\x46\xd3\xad\xcf\xd4\x92\x43\x93\x2f\xcf\x2a\x38\x34\xf4\x0e\xc5\x00\xb4\xba\x4e\xe1\xce\x7b\x7d\x96\x69\x03\xf2\xfd\xf3\xed\x28\x8f\x0d\x9d\xc2\x3e\xb7\xc4\xf2\x47\x70\xfd\xee\xa4\x96\x81\x4e\x87\x84\xc5\x76\xd7\xc6\x31\x35\x4b\x39\x6c\xf2\x01\xc4\x6f\x1a\x34\x38\x17\xda\xfd\x34\x8d\x5b\x0a\x80\x5f\x57\x20\x52\x0b\x7e\x14\xe5\x55\xba\x4a\x9f\xce\x73\xcc\xc0\x8f\xb3\x37\x54\xaa\x9a\x98\x2c\x4b\x57\xab\xa4\xac\xfa\x72\x1c\x45\x1f\x2a\x20\xd6\x87\x53\x5c\x85\xaa\xb2\x2b\x93\x71\x66\xc7\xc6\x31\x9c\xd1\x43\xfa\xf1\xc4\x0f\xe1\x7e\xac\xa2\x54\x4e\xf2\xa5\x4b\x73\xd2\x90\x09\xfc\x7c\x01\xd0\x33\xcc\x7d\xef\x2a\x77\xcb\x07\x81\x62\x7d\xb0\x12\x36\xff\xc5\x54\xb6\xfb\xca\x2b\xed\x38\x0d\x9d\x28\x2e\xca\x08\x6e\xcc\xf3\x9b\xa9\x07\x70\xf0\x20\xeb\x7d\xb6\x7c\x8b\xe4\xb4\xe2\xd8\x9c\x56\x54\xab\x74\x3c\x4e\xb3\xa2\xac\x92\xff\xbc\xa5\xa8\x10\xca\xdd\xf4\xe2\x64\xaf\x68\xe1\x2e\xbe\x78\xe8\x17\xab\x20\x2a\x0e\xd0\xd5\x1f\xa0\x62\x3f\x05\x07\x39\x31\x91\xf2\xc9\x1f\x63\x9d\x70\xc3\x67\x3b\x24\xe2\x8d\x50\x8d\x5d\x03\x10\xd4\x45\x22\xaf\x80\x4e\x72\x73\x32\xad\xfc\x83\x9b\x7b\x36\x50\x51\x60\x06\xc2\x6e\xf8\x29\xdf\x0c\x14\x42\x61\x1d\x33\x3c\xd6\xd7\x20\x19\x0d\x44\x7a\x6c\x02\xb4\xa3\x5a\xeb\x94\x94\xb2\xf0\x13\x9a\xd5\x08\x1c\xcc\x84\xc2\xc0\xf4\x16\x35\x3b\x91\x49\xb6\x28\x5d\xc0\x33\x64\xef\x75\xc9\x69\x5b\xbf\xf9\x3b\x3c\x10\xbb\xa5\x4d\x89\xae\x91\x1c\x2b\x0f\x65\xb1\x6f\xb1\x1c\x3e\x08\x1e\x57\xe6\xef\x76\xf9\x51\xfa\x6f\xb8\x4a\x36\x08\x40\xa3\x08\x33\x33\x91\x1a\xa0\x2b\xc6\xe5\x33\x11\x96\xdf\x4c\xea\xa5\xed\x6f\x89\x03\xef\x3b\x4a\x3c\xef\x9d\xc0\xf7\x2c\xcf\xb8\x12\x27\x8e\x46\xe3\x78\x8d\xd0\x70\xc8\xe9\xd0\x12\xc0\x4e\x45\xae\x8f\xb6\xf3\xfb\x58\x67\x38\x48\x9c\x63\x61\x94\x0c\x62\xe8\x86\x09\x46\x5a\xe1\xa5\x1b\x1a\x92\xe2\x32\xc0\xc1\x05\x69\xc5\x31\x5a\x48\xe2\xc3\x4e\x77\x5f\xa4\x04\x94\x2a\x4d\x59\xc4\x69\xba\xdc\xf2\x48\x8c\x3a\xf8\xea\xd1\xa8\x3d\xce\x6c\xff\xd7\xda\xff\xe9\x3f\xa4\xfb\x07\xb6\x0e\xda\x7c\xc8\x62\x1f\x5f\xaf\x72\x37\x14\x99\x57\x15\x54\x6a\x76\xbd\x5a\xd3\x48\xa6\x1e\x25\x29\x7b\x9c\x07\x77\x08\xcf\x81\x76\xe1\xb3\x84\x08\x92\x23\xad\x5a\x07\xae\x41\xf8\xdb\x9f\x77\x6c\x58\x75\x68\xd2\x28\xc3\x81\xbe\x54\xfa\xbb\x1b\xa2\x32\xac\x6a\x3f\x51\x70\x98\x7f\xdc\x51\xea\x86\x3b\x3a\x3b\x3e\xcd\xe5\xcc\x1e\x92\x88\x61\xf1\x32\x8a\xdd\x68\xe4\xee\x44\xdb\x12\x07\xf0\x45\x2d\xdc\xf0\xc9\x75\x15\xb9\x9e\x59\xa7\x73\x40\x46\xc0\xd8\x50\xe8\x5c\xfe\x7b\x9d\xd6\x73\xcf\x39\x34\x00\xdd\x78\xa4\x54\x3b\xd6\xa9\xff\x22\x33\x86\x5a\xbc\xf2\x05\x69\x68\x7b\x26\x53\x04\xcd\xf7\xe9\x81\xf0\xeb\x06\xb0\x7c\x18\x47\x09\x10\x17\x35\xe7\x7f\x01\xa6\xb8\xaa\x1b\x65\xab\x1a\x79\x20\xa0\x08\xae\xca\x8f\xf1\x32\x1b\xa6\x65\x96\x13\x5b\x56\xe4\x1a\xb0\xcd\x44\xbb\xc1\xb7\x39\xc6\xa4\x82\x93\xa5\xd1\x32\xa0\x7f\x58\x61\xdf\xd1\x16\x07\x7f\x4b\x37\x97\x0d\xe8\xd5\xbc\xbf\x67\xcb\x22\x0f\x87\xb6\x45\xcf\xd7\x71\x7c\x0e\x78\x8e\x8f\xcc\xbd\x97\x93\x74\x35\xb6\xbd\x01\x57\x93\xda\x76\x13\xfd\xc7\xdb\x34\xc9\x15\x2f\xb7\xed\x67\xef\x67\xda\x85\x35\xe1\xd0\x0a\x5d\x0b\x3f\xe5\x7f\xc0\xf2\xe1\x37\xaa\xc5\x96\x87\x26\xeb\x13\xa7\x6e\x69\x91\x07\x97\xa8\x56\x9d\xa2\x99\xc3\xec\x9f\x7d\xa8\xbf\xcf\xc8\xf6\x22\xbb\xc2\x9d\x32\xb7\xc0\x95\xf2\x6d\xad\x96\xde\xe7\xc2\x86\x27\x46\xba\x88\xe8\xe9\x15\xd7\x95\x32\x49\x5a\x16\x49\x39\xea\x8a\x64\xc8\x0b\xde\xab\xce\xfb\xd6\x4d\xb4\x2e\x70\x5e\xa0\x1d\x36\x7f\x98\x61\xc9\xc7\x94\xce\xf4\xb1\xe0\x69\x35\xcb\x29\x4c\x14\xdb\x8c\x7f\x07\x3a\x46\xb7\x74\xfb\xe8\x56\x43\x6e\xff\x42\x7b\x68\x4d\x31\x5b\xdd\x33\x69\x6f\x78\xda\xc2\x56\xe0\x19\x68\xc7\x27\x4a\xb9\xf7\x27\x53\x5d\xe0\x83\x07\xdb\x36\x4c\x93\x74\x14\x85\x1c\xcd\x70\x1a\x1c\x53\xd4\x68\x16\x0f\x41\x7b\xf2\xaa\xaa\xd2\x7b\xd1\x20\x2a\x4c\xbc\x9b\x6e\x88\x58\x2d\xb4\x9c\xe4\x39\x0f\xc9\x64\x18\xad\x20\x34\xa8\x5f\x91\x28\xbe\x4e\x71\xd3\x19\x35\x78\xc5\xb1\x0f\x82\x4f\x3d\xe4\x69\x93\x28\xa7\x29\xe3\x5e\x3e\xab\xa4\xb1\x41\x8f\xc4\x24\xe0\xa2\x9e\x9c\xcd\x76\x74\xa9\xf6\xe3\xc9\x36\xaf\xc7\xe7\x9e\x6b\x3f\xf7\x9c\x9a\xba\xbd\xad\x70\x0d\x6f\x2b\x8e\x7d\x5c\xf4\xf8\x19\xe1\x5c\x61\xc4\x32\xbf\x59\xd7\x39\xec\x78\xcc\xed\x5d\xf1\x71\xad\xf6\x8b\x8c\x4d\x1f\x06\x41\x28\xd2\xb4\xa5\x40\x93\xc7\x95\x0a\xd9\x71\xed\x6f\x52\x26\xbd\xf4\xef\xe0\x1e\x4d\xb5\x6a\x5e\x3c\xd4\xee\xc6\x65\xbf\x5f\xb3\x96\x3d\xa3\x73\xf5\x33\x53\x7f\x54\xa5\xbf\x89\xb5\x3d\xde\xc2\xdc\xef\x47\xd7\x4b\x9a\xff\x0d\x1d\x9e\x4f\xcd\x1f\x78\xe1\xc0\xe1\x43\x33\xdb\x51\xd6\x5c\xfc\xd3\x60\x98\xb5\x6a\x3b\x4f\x3a\xac\xd4\x4a\x1a\xaf\x40\xa9\x4d\x6a\xce\x07\x13\xaf\x86\x87\x9e\x84\xb3\x79\x74\x3a\x01\x30\x6b\x13\xfb\x2e\x5a\x69\xd8\x5c\xec\xa8\xef\xdc\x5f\x3c\xeb\xf5\x13\xce\x0b\xbe\x9b\x96\x49\x6f\xd6\x83\x60\xae\xea\x46\xd4\x19\xfc\x0d\x1a\x82\x3b\x94\xa7\xe7\xf7\x1b\x11\x7b\xdd\xcc\x24\xe1\x50\xc6\x5c\xac\x12\xab\xd5\xc5\x8e\xab\xc9\x6d\x3e\x4a\x97\x1d\xf6\xbf\xa6\xa9\xce\x6a\xc9\xca\xce\xee\x01\xe6\xb0\x92\x68\x7a\x99\xab\xb1\xc9\x96\x5b\x7a\x62\x50\x1b\x25\x4c\xcb\x79\xb4\x87\x91\xcc\x9f\xf1\x61\x37\x02\xb5\xd5\x6f\x28\x98\x60\xdf\xae\xda\xbc\x20\x37\x16\x9c\xe0\x1f\x62\x86\xe1\xf0\xa0\x6e\x48\x7c\x86\x54\x88\xf9\xa0\x9d\x22\x22\x7e\xa6\x1d\x0e\xad\x19\x93\x62\x5b\x95\x28\x88\x72\x76\xcb\x89\x7c\xbe\xdf\x84\xd8\x87\xb0\x4c\x8d\xa3\x7d\x5a\xb5\xba\x9e\xea\x28\xed\x84\xc7\xd6\x9b\x1e\x46\x15\xc9\x12\x6b\xf3\x96\xa6\xc5\xd7\xc8\xf3\x0d\x85\x46\x6c\xcd\x8a\x3c\x3f\x3c\x86\x6f\x04\xea\x99\x7c\xa3\x51\xa5\xc1\x9a\xdc\x70\x22\x80\xec\x0a\x9a\xa3\xfc\x7a\x8a\x5f\x4b\xdc\xbe\x57\x5b\x2a\x61\xfc\x50\x39\xe2\x7e\xa8\x08\x28\x79\x11\xd1\x78\x0c\x82\x67\xc2\xf4\xf3\x95\xd7\x07\x53\x4f\x78\xff\x7e\x72\xb7\x9d\x51\x62\x67\xb0\xbf\xc1\xe2\xfe\x40\x0b\x64\x5c\x68\x90\x7b\x69\x0f\xad\x74\xa9\x18\x11\x4c\x37\x9d\xe5\x53\x27\x8a\x74\x73\x4d\xe1\xc1\xef\x60\xd3\xb1\x95\x5c\xe0\xd9\xee\xb6\x17\x25\xdd\x32\x1b\xa0\x74\xab\x81\xf0\xf9\x4d\x13\x0f\xb4\x88\x46\xa4\x8f\x4e\x78\x98\xd6\xd2\xdc\xd6\x86\xca\x7b\x72\x9b\xe4\x51\x11\xad\x44\xc5\xda\xcc\x14\xb9\x54\xab\x77\x61\xd5\x5e\x0a\x6a\x86\x24\xc5\x70\xb7\x02\x31\x3c\xd0\xd0\x9d\x5d\xeb\x9e\x5b\xb9\xab\xa3\xdc\xa9\xbf\x82\xcb\x06\xa4\x61\x6b\xe2\x85\xed\x40\xb6\x17\x85\x0a\xc9\x99\xd2\x15\x9b\xf5\x32\xb3\x9a\x28\x8f\xb0\xf3\x4a\x19\x64\x0b\xc7\x1f\xca\xfb\x4b\x4d\x44\xd4\x7e\x24\xb4\xdd\x46\x2b\xbb\x87\x65\x3e\xbd\x28\x23\xc4\x02\x6e\x8b\x74\xf8\xfd\x9e\x39\xa3\x3b\x93\x77\xd5\x32\x2b\x22\x93\x98\x64\x64\x31\xbe\x16\x57\x27\x05\x84\xbc\x18\x6c\xe7\xe3\xbb\x93\xca\xc6\xb6\x1f\xa7\x19\x50\x7b\x8d\xe0\x56\xff\x3d\xf6\xd5\xb1\x21\x2b\xa9\xdd\xca\xfe\x0b\x8a\x26\xc8\x85\x31\x75\x40\xb5\x35\xd3\xa9\xa9\xd6\xd7\xf4\xec\xbd\x82\x16\x23\xbc\xf8\xa3\xb4\x5a\xf7\x30\x4a\x0c\xf2\x33\x71\xa8\x6f\x29\xeb\xfa\x5f\xa8\x1f\xfc\xd4\x0c\x5b\x58\x58\x64\xd5\x76\xd4\x4b\xaf\x23\x5a\x40\x17\x6a\x43\xa1\x7b\xbf\x07\xb0\xab\x43\x6f\x2e\x2d\x0a\x53\x03\xa3\x42\x37\xc9\x7d\xee\x39\x1f\x97\xab\x7d\x87\x1a\xf8\x4d\x5a\x36\xce\x38\xcc\x93\x69\x36\x14\x8b\xfd\x64\xe0\x5b\x89\x1f\x20\x7b\x62\xb8\x0c\x6e\x85\xf0\x3d\x6b\x0a\xd1\xd5\xa1\x2a\x92\xf1\x8a\x84\x5a\x14\x99\x01\x94\xa5\xca\xf7\xa5\x77\xe7\xe5\x7c\x4f\xba\xd9\xfe\xff\x3b\xd3\xf1\x09\x8d\x1c\xb3\x05\xda\x38\x18\x5e\x9c\xd6\x02\x50\xa7\x03\xed\xc4\x67\x0b\x9b\xd4\x74\xab\xce\x6b\xd2\xc2\xf9\x46\x79\xb5\x61\x3a\xb6\x50\x56\xe0\x06\x49\xc7\xb7\x0e\xee\x53\x26\x20\xca\x39\x72\x94\xaf\x9a\x70\x99\xc2\x86\xef\xa3\xf9\x9e\x9a\xeb\x10\x74\x09\xae\x83\xbe\x36\xee\x2f\xcb\xaa\x3a\x35\xee\xa5\xb9\x43\x1c\x55\x60\xe5\x06\xb0\xc8\x8e\x4e\x83\x08\x6d\x98\x86\xa9\x69\xf9\xb9\x28\x60\x05\x62\x27\x51\x1b\xdf\x0f\xa2\x24\xdf\x55\xdd\x74\x86\xb0\xd1\x25\x20\xc2\xb0\x4a\xab\xeb\x62\x57\xf7\x49\x4a\x17\x35\x7a\xff\x39\xad\x41\x5c\xcf\xad\x89\xf7\xa9\x1f\x46\x85\x30\xf8\xb0\x78\xce\xea\xe4\xf9\xac\xa3\xca\x8f\x6d\x5c\x08\x2c\x50\xa2\xbb\x6a\x25\x5e\x54\x9e\xfd\x63\x9b\xe4\x26\x4c\x63\x18\x90\xa0\x4d\x0f\x25\x78\x7e\xdd\x11\x26\x59\x92\x16\xa4\xd3\x58\x48\x0f\xd3\xa9\x06\xb9\x18\x7c\xca\xf5\xf7\x8b\xa8\xba\xf7\xb1\x49\xc0\x84\x97\x6e\xa8\x9f\x68\x4e\x0b\xd9\x1f\x99\x6b\xe7\x85\x35\x30\xd8\x47\x6b\xff\x91\x8e\xaf\x19\x6e\x01\xa4\x89\xf6\xf1\x51\x35\x7b\x38\xf0\xe2\xc2\x2e\x5c\x2a\x5a\x54\xc0\x6a\x60\x0f\x3d\x81\xfb\x0d\x90\x07\x7b\xb4\x3a\x46\x54\xb5\xe7\x11\x30\x6f\xe1\xee\x88\x52\x8d\x5a\xd0\x31\x49\xb8\x50\x72\xa4\xbb\xbb\x35\xc8\x17\xbf\x09\x94\x46\xca\x54\x19\x43\x93\xad\x30\xcd\x32\x9b\x8f\xd3\xa4\x67\x39\x8b\x60\xaf\x61\xba\x2f\xe2\x3b\xec\x37\x5e\x1c\x75\xd3\x6c\x46\x93\x01\x79\x6e\xed\x24\xa9\xaa\xaf\xc7\x29\x3d\xb3\xde\x60\x9f\x86\x86\x84\x1c\x14\xb8\x0b\x57\x95\x55\x02\x6f\x64\xc1\x67\xfb\x55\xe1\x08\xb1\xa0\x00\x02\xf1\xb7\xc1\x53\x00\x04\xa1\x1f\xe9\xe2\x1e\xc0\x50\x60\x2e\x10\x7f\xf9\x75\x4d\xf1\xb8\xf7\x3c\x2d\x32\xa7\x51\xe6\xc5\x98\x2f\xa8\xb6\x62\x37\x2d\x86\x4f\xe2\x9b\xd8\x52\x4a\x9b\xaa\x9f\xc0\xd7\x4a\x72\x5e\x7d\x1e\xb6\xf3\x59\x0a\xcf\xe2\x4c\xe2\xc7\x85\x7b\xb1\x04\x54\xd1\x20\x69\xf3\x6e\x9a\xbb\x6a\x03\x7c\xbe\x98\xc0\x0b\x4b\x7c\x39\x50\xed\xeb\xbd\x1d\x8a\xab\x42\xd9\xac\x16\x05\xd2\xe9\x53\x5a\x4b\xf8\xc1\xd4\xca\x7e\x69\xfe\x70\x3b\x4d\x78\x70\xee\x4e\x19\xa7\x44\xb8\xa1\x16\x5c\x3f\x0d\x4b\x5a\x70\xae\xdf\x5b\x87\x22\xfa\xc6\xf8\x79\x9c\x4d\xfc\x26\xf0\x73\xa7\x9e\x0d\x97\x2d\xf3\x17\xd0\x56\x3e\xa6\xe4\x06\x6f\xe2\x88\x11\xf9\x1d\x4d\xe9\x4b\xe4\xf4\xa8\x6e\x24\x2a\xa1\xb3\x74\x78\xf0\xeb\x46\x38\x59\xbe\x6a\xed\xd8\x1d\x24\xc2\x72\xf2\x05\xe0\xb1\xe0\xd9\x29\xb8\x51\xde\x7f\x75\x46\xf5\xec\x36\x15\x91\x98\xfb\x8a\x68\xe0\xdf\x69\x92\xa0\xc9\xec\x8a\x35\xb1\x18\x33\x22\x55\x82\xdc\x3a\xda\x81\xaf\xe3\xbe\x60\xfd\xdd\xd6\xcc\x8a\x74\x0d\x30\x97\x17\xa4\x8d\xa5\xdc\xd2\x4e\x34\x0d\x88\xfb\x99\xb5\xaf\x59\xc5\xe4\x3c\x1a\x28\x0d\xad\xa3\x1a\x96\x1f\x97\xa3\xae\x08\x70\x80\x6c\x86\x33\x9e\x5f\x4f\xc9\x1c\x41\xe3\x31\x67\x96\x4d\x9a\x82\xab\x8f\x8d\x78\x0d\xe7\x02\xbf\x51\x6d\x80\x38\x4d\x97\xf3\x3d\x0a\xb5\xcd\xac\x07\x36\xeb\x0d\x94\xf4\xc4\x06\x75\xf6\x65\x97\x7b\x22\xd7\x69\x4c\x22\xc4\xde\xb7\x5a\x66\x22\xe0\xef\x5b\x67\xe7\x9a\x72\xd5\x41\x9c\xa6\xa3\x96\x2a\x99\xdf\x57\xdd\xa7\xf7\xd5\xfa\x1b\x47\x79\x51\x9d\x10\x07\x84\xc5\x07\x82\x3c\xbf\x9e\x76\x79\x5c\xa4\x6e\x68\xd6\x93\x30\xe5\x50\x1c\x07\x0f\x6e\xdd\x0a\x94\x1b\xba\xb7\x3b\x5b\x49\xc3\x2a\x6f\x76\x22\x78\x97\x15\x8a\xea\xb2\xe2\x66\x8e\x33\x3b\x48\xa4\x62\x43\x68\x38\xaf\x7c\xb2\xcf\x2b\x22\x6c\xb5\xfc\x29\x75\xa9\x4a\x57\x36\xfa\x81\x78\xb9\xb8\xfe\x6c\xaf\xee\x8e\xcc\xb5\x4b\xb6\xe0\x46\xd4\x3f\xae\xa4\xf8\x8e\xab\x02\x3b\x4e\x73\x62\x6c\x68\x40\x9b\xeb\xc9\x6f\x6a\x75\xc6\x04\xaa\xe1\x58\xfd\x90\xe3\xe3\xd7\x4d\xcb\x13\xb7\xad\xe5\x87\x4e\x28\x8d\xf8\x75\x43\x7f\xa7\xdd\x8f\x2c\x35\xd0\xb4\x24\xb4\x1f\x81\x30\x1c\x98\xc7\x4c\x94\x84\x81\xbe\x71\x42\x11\x31\xb2\x28\x1c\x9a\xac\xb7\xcb\xcf\x5a\x8e\xea\x67\xc4\x6b\x97\x27\xd9\x74\x9d\xfc\xaf\x74\xad\x80\x01\xa3\xac\x0e\xc5\x58\xb4\x5f\x48\xa3\x64\xb6\x5a\xba\xda\xc5\x48\xa1\x18\x5f\x76\x3a\x8f\x38\x21\x84\x33\xaa\x34\x05\x4d\xd6\x4d\x93\x9d\x1e\x01\xbf\xae\x04\x45\xaf\x05\xca\xa2\x86\x19\x7e\x9c\xab\x07\x1e\x3f\xbf\x3e\x55\x2f\x2f\xcd\x91\x66\x11\x70\x15\x38\x57\x3e\x56\x67\xcc\xc7\xd3\x58\x81\xfd\xed\xbc\x48\xc3\xe5\x61\x1a\x0b\xa2\xc9\xb1\x90\xfd\xe8\xe0\xa8\xaa\x59\x73\xb1\x62\x90\x1a\xe3\xff\xe4\x4b\xe4\x77\xca\x9a\x7a\xd9\x66\xb1\x28\xd1\xe3\x4e\xbf\x15\x78\x78\xe0\x5b\xde\xe4\x27\xab\xb6\xa2\xb8\xa5\xa3\x87\xc7\xc7\x2e\xbf\x99\x1a\x74\x01\xdc\x17\x79\xc1\x1e\x3c\x24\xd4\x6b\xfc\x7a\xca\x3d\xe3\xe0\xc1\x76\x94\x14\x59\xda\x2b\x43\x0b\x05\x64\x49\xc5\xe9\x6e\x4b\x8e\xae\x18\x75\xf0\xfa\xe2\xd7\x1e\xf2\x14\x8d\xba\x33\x3e\x0c\x41\xd1\x54\x8e\xfd\x6a\x9d\x4a\x68\xd8\x7e\xb7\x5f\x79\xa5\x6d\x7b\x65\x68\xbc\xdf\xad\xe6\x12\xcb\x8a\x79\x4a\xb9\xd6\x25\xc5\x30\x5e\xdb\x4d\x9b\x9d\x65\xa0\xb5\xb7\x2f\x54\xc6\x14\x2b\xf8\x65\xaf\x1e\xe8\x30\x7d\xc0\x35\x61\xc5\x5c\xc2\x95\xf2\x5f\x2b\x80\xe2\x28\x4d\xa2\x22\x85\x08\x0f\x72\x16\xe4\xb4\xa8\x34\x4e\x4d\x94\xf4\xe5\xf5\xc9\xb3\xf5\x5a\xf5\xe0\xc1\xf6\xd2\xdc\xd2\xa3\xd5\x9d\x42\x0c\xba\xa6\x64\xab\xaf\x53\x7f\x19\xe9\xc7\x77\xb0\x33\x90\x7e\xb0\x9c\xa5\xf3\xdb\xf4\x2a\x2d\x47\x03\xe5\xf8\xfd\x65\x3a\xd9\x59\x60\x2a\xf0\xd0\x82\x73\x0a\x22\xd0\x2d\xe3\xe5\x96\xd7\x19\x7a\x07\xc9\x13\xbf\x69\xea\x48\xe5\x45\x3a\xa6\x3f\x40\xc6\xf0\x06\x7e\x17\xbf\x51\x8a\x3f\x03\x53\x0c\x6d\x16\x25\x83\x9d\x3e\x10\xde\x57\x34\xf8\x4b\x38\xa5\x90\x8e\x0d\x27\xea\x20\xd5\x22\x0f\x7f\x54\xa7\x94\x27\x83\xbd\xf4\x75\xda\x74\x8b\x07\xe3\x34\xcd\x56\x02\xb1\x0b\x7a\xf6\xb8\xe8\xf4\x42\x5b\x4e\x00\x0b\xcd\x68\x17\x22\x1d\xd5\xe7\x16\x4d\x56\x9d\xec\x92\xcf\x44\x19\xfb\x8b\xe0\xbf\xb7\xf3\xb4\x92\x84\xed\xdb\x24\x67\xeb\x55\xe6\x4f\xd3\xed\x16\x2e\xf5\xc3\x1a\x2e\x8e\x1e\x07\x2d\x04\xcc\xe2\xd1\x43\x71\x1e\x40\x8e\x67\xf9\xae\x2b\x12\x33\xbb\x96\xa4\x71\x4f\x46\x5c\xc2\xbc\xa1\x5f\x27\x7d\x85\xed\x27\xc3\xe1\x17\xdb\x36\x19\x10\x16\xeb\xc8\x9c\xa4\xd0\x81\x3f\x33\x37\x6b\x60\x9d\x6e\x9a\x60\x04\x83\x18\x72\x56\x01\x48\x91\xf3\x48\xaa\x5d\x2d\x50\xfe\x37\x35\x23\xae\x38\xea\x96\x2d\x35\x2c\x67\x01\x66\x31\x85\x6d\xa8\x0b\x87\xe5\x88\xcb\x5e\xb1\xf0\xab\x1e\x83\x20\x26\x25\x2b\xc8\x87\xd6\x66\xb3\xbe\x10\xf9\xb1\xbe\xea\xd3\xb4\x73\x45\xb7\xdc\xb7\x10\xaf\xd5\x7c\xca\xca\xa4\x78\x82\x7e\x19\xd0\x1d\xb3\xeb\xb8\x8b\x8e\x44\xe2\x24\x17\xe0\x7e\x82\xca\xe3\x0d\x5a\x20\xf8\xe8\x47\xd7\x7d\x86\xfe\x75\x1c\x36\x38\x79\x1e\x01\x18\x13\x31\xe5\x63\x20\x9c\x38\x25\x53\x1a\x1b\x37\x02\x35\xc3\xba\x1b\xcc\x56\x65\xa3\xcb\xdc\xaa\xb4\x1c\xd1\xf0\x12\x96\x1e\xda\x22\x67\x1e\x3a\x21\x35\x51\xa6\xc7\x9d\xe8\x24\x71\x01\xc5\x6f\x1a\xbd\x10\xc9\xcd\x82\x7b\xe3\x38\x7d\x8e\x6b\xa5\xf7\xe3\x81\xd7\xac\xef\x47\x61\x11\x15\x51\x5a\xf2\x3f\x47\x0c\x62\x9d\x4e\x7e\xa3\x04\x30\x7a\xd1\xc0\xe6\x88\xd2\xd5\x3f\x10\xfd\xd6\xea\xbe\x8a\x7c\xab\x57\x83\x33\xa3\xa8\x47\x2a\x11\xcc\xf7\xa4\xdb\x8c\xec\xe4\x5e\xa0\x64\x06\x36\x69\x53\x4a\x9a\xa6\x64\xe6\x4e\xab\x06\xf5\x38\xb3\x79\x54\xd5\xdd\x4f\x78\xb7\xe7\x9d\x90\xe0\x41\x68\xf9\x1b\xc4\x79\x7c\xcc\x45\x74\x63\x70\x93\xae\xe1\xcb\x54\xfc\x78\x01\x0f\xf5\x5d\xd8\x3f\xe0\x99\xbc\x8f\xa7\x8d\x72\x62\x57\x47\x81\x5c\x7e\x7f\xe2\x93\x11\xd6\xa3\xc0\x82\xda\x47\x8b\x08\x9d\xca\x9b\x13\x3d\xb0\xfc\x48\xe1\x01\xbf\xef\x54\x2b\x88\x7c\x60\x4d\x5e\x50\xd8\x44\x84\x87\x6b\x38\x92\xaf\x59\x12\x58\x13\xe6\x83\x2a\x8f\xb0\x11\xc4\x47\xac\x41\x9e\xd4\x46\x55\x40\xa6\xaa\x13\x10\x8d\x0b\x04\x15\x61\xc9\xa6\xc0\x3b\xf5\x9f\x41\x17\x46\x82\x97\x0f\xe9\x3d\xc2\x28\xac\x55\xd5\xa3\x73\x40\xf8\x38\xf0\xfd\xdb\x8f\x5d\x84\x4a\xca\x28\x37\x09\xfb\x56\x23\x67\x87\xd0\x1f\xbf\xae\x4e\x77\x09\x9e\x51\x3e\xce\xd2\x71\x9a\x11\x7d\xb6\xb0\xf1\x1a\xc1\x04\xb1\xae\x3e\x98\x78\x1a\x06\x3e\x40\x44\x2a\x5b\xbf\xfd\x79\x7e\xa8\xaf\x37\x8d\x71\xd2\x6e\x1e\x5a\x4e\x9f\x9c\x2b\xa3\x77\x68\x74\xe9\x13\xf3\x02\xd1\x40\xac\x9d\x1e\x08\xba\x60\xef\xe1\x6c\xbd\x82\x04\x00\xfd\xc0\xf7\xea\xcc\x97\x11\x33\x5f\xa4\x8b\xa9\xf6\xee\x89\x40\xf7\x47\xbe\xf0\xfc\xac\xd2\x70\xa2\xbe\xf8\xcb\x4e\xc1\xd4\xfb\x2e\x7f\x4c\x17\x2e\x5e\x58\xfe\xa8\x89\x4d\x32\x28\xcd\xc0\x82\xfd\xe4\xba\xcb\xce\xc6\x1e\x59\x37\x32\xd6\x9f\xe2\xf7\xf2\x1b\x65\x62\x68\x5f\x1d\xdb\x2c\xb2\x49\x68\xf7\xa8\x56\xc9\x79\xba\xa7\x6c\x49\x48\x1f\x83\x06\xc2\xae\x4e\xb5\x34\xc4\xaa\x90\x7e\xbc\x13\x0f\x71\xce\x3d\xf7\x95\x80\xcf\x0d\xdc\x40\x00\xc6\x6e\xba\x5b\x4d\xa2\x26\x99\xdd\xad\xca\xeb\x9f\xd0\x27\x00\xbb\xb3\xa5\xf2\xb8\x9d\x04\x66\x13\x69\x2e\xfa\x8d\x58\x38\x78\x1c\x48\x1d\x3f\xc4\x66\x46\xe3\xfe\x4f\xdd\xd7\x24\x26\xca\xd2\x6e\xa4\x8a\xac\x8b\xba\xdf\x30\x2d\x79\x5b\x25\x96\x49\x98\x96\x99\x00\x95\x85\xce\xa1\xa8\x1d\x0d\x07\xd6\x62\xdb\xe6\x63\x09\xbb\xec\x5a\x8c\xbb\x23\x16\xc6\xdb\x53\xe8\xa5\x39\xe2\x3f\x44\xf9\x90\xba\x08\x47\xe6\x74\xfb\xfc\x05\xd7\x3e\x7f\x56\x95\x39\xc4\xcd\x23\x4f\x45\xdf\x2c\x3a\xa7\x9a\x45\xe7\x14\x2d\x2e\x2f\x47\xa3\x14\xd2\x71\x18\x40\xdf\x57\x16\x59\x1b\xb5\xdc\xda\xa3\x54\xc2\xd8\x3a\xad\xdf\x17\xbc\xe8\x83\x92\x93\x74\xb2\x4d\x69\x19\x93\xdc\x04\x05\x07\x31\xdb\xf2\x1c\x9f\x0b\x81\x70\xfb\xc6\xc3\x28\x4e\xf3\x74\x3c\x64\x83\x2c\x3c\x21\xc8\x4c\xf1\x6b\x55\xe8\x98\xde\x28\xca\x6c\x6f\x86\xe2\x2f\x72\x11\x60\xcb\x9d\xea\xb2\xc3\x94\x4d\x7b\xd5\x1d\x99\x6b\x9b\x38\xed\x17\xd4\x27\x02\xe6\xf7\x7b\xd8\x7b\x0e\x58\xe0\x44\x6e\xaf\x4e\x65\xb3\xc4\x5d\x31\x3c\xca\x70\xb4\x6a\x75\xcf\x94\x21\x61\xbe\x9c\x2b\x89\x50\xf0\x4c\x84\x72\xee\xcf\xbe\xd8\x86\x43\x9b\x55\x27\xa5\x32\x16\xc6\xa1\x21\x88\x64\xc7\x80\x0c\x87\x91\x5d\xa1\xbb\xdf\xf2\x81\xed\xa8\xca\xae\x7c\x2f\x84\x0e\x85\x5d\xca\xdf\xf8\xbb\x13\xa5\xea\xf7\x25\xba\xb3\xe8\x8c\xdd\x53\xfd\xae\x7b\x74\xf1\x38\x36\x5a\x74\x6c\x00\x52\xf4\xc8\xba\x0f\x05\x2b\x51\x1a\xb3\x9e\x5d\xf5\x8f\x1d\x9e\xdf\x17\xf8\xa7\x03\x65\x6d\xf8\xa7\xca\xaf\xe8\x9b\x54\x5d\xf0\x5f\x04\x6a\xc0\xa8\xcd\x93\xff\xc3\xcf\xe6\x3b\x95\x69\x2d\x0a\x23\x8e\xe7\x74\x0f\xd1\xa5\x3a\x49\x10\x12\xdc\xf6\x31\xb7\xa0\x81\xfa\xf8\x17\x13\x91\x5f\xe9\xd9\x30\x36\x79\x1e\xf5\xbd\x9e\x04\x67\xf8\x74\xcf\x24\xdb\xf7\xe9\x40\x38\x34\x59\x9c\x16\x85\x55\x1e\x96\xdf\xd7\xd3\xb7\xef\xab\x7f\x5c\xd8\xd8\x92\xe6\x1c\xe6\x6a\x0e\x69\xac\x04\xd8\xb7\x37\x87\xf6\xcf\xb7\xa9\x16\x72\x63\x92\x2d\x35\x26\xd9\x52\x16\x08\x44\x76\xcc\x61\xe4\x01\x34\x25\xd6\x0f\x8a\x26\x48\x93\xa1\x0d\x7e\xa6\x99\x2e\x93\x0f\xd3\x32\xee\xd9\xac\xa5\x50\x69\xf4\x5d\x82\x34\x71\xfe\x2c\xc3\x2c\x2d\x07\xc3\xc7\xa9\x65\x28\x7d\x49\x1a\x63\x62\x0f\x60\x3f\xe0\xf9\x1d\x9b\x68\xd5\x28\x8a\x0f\x18\xae\xcc\xac\x7b\x74\xe8\xb3\x1d\x37\xb9\xfc\xf5\x67\x00\x6a\x96\x53\xb2\x7a\x62\x02\xe5\xa1\x47\x5c\x93\xb6\x14\x9c\x55\xcb\xa9\xe3\x3e\x43\xad\x78\x4a\x97\xec\x3f\x9e\x42\x96\x1c\x58\x68\x9b\x91\x29\x6c\x89\x3a\x1a\x5d\xe3\xe3\xf4\xab\xc4\x1f\xcf\x83\xc4\x6f\x3b\x38\xe6\x6a\xda\xed\x02\x5d\xc0\x1b\x0c\xba\xc0\xfc\x7a\xdd\xb7\x03\x86\x26\x49\x57\xac\x4c\x5a\x80\x41\xdc\xdd\x51\xca\x1f\xac\x3c\xc1\xdb\x68\xaa\x85\xb9\xf8\xe2\xa1\x76\x6e\x57\x6c\x52\x0c\x31\xc7\xe4\x4d\x30\xd9\x8e\x4c\x64\x1f\xdd\x26\xe0\x7b\x1e\x66\x66\xcc\x70\x3c\xec\x81\xdb\xea\x4f\xe0\x91\x87\x74\xf4\x7d\x35\xfc\x4e\xcc\xc8\xf6\x76\xa9\x46\xcd\x51\x55\x4c\xdc\x51\xf2\x6d\x8f\x74\x7c\x2b\x8e\x19\x78\x4e\xc6\xde\x2b\x85\x3f\xd0\x18\xcd\xc2\x24\x3d\x93\xf5\xf6\xd0\xd2\x44\x92\x0a\x30\x3e\xfb\x4a\xe3\x53\x10\x36\xee\x69\x25\x51\x9e\xd7\xa0\x4f\xf1\x53\xfa\x11\x18\xb3\xfd\x3b\x24\x1d\xfc\xaf\xd0\xbb\xe6\x0f\x6e\x54\x8e\xee\xa6\xe9\xc8\x15\xc0\xc8\xb3\x7e\xa2\xa8\x09\x97\x55\x03\xe6\xcc\xc4\x13\xef\xc9\x3b\x20\x27\x75\xde\x01\x91\x04\x15\x19\x74\xc9\x69\x76\xd0\xb7\x23\x8f\x85\xa3\x1b\x60\x68\x7c\x59\x88\x92\x5b\xb8\x2c\xe9\x53\xc9\xc2\x1a\xda\x78\x6c\x7b\xbb\xbc\x12\x07\x37\xba\x28\x34\xcf\x3f\xa3\x69\x77\xdf\x46\x84\x94\xbd\xd8\x72\xda\xa7\x3b\x50\x7b\x48\xfc\xa8\xcd\x61\x56\x6c\x06\xa2\xc8\xc3\xe4\xe6\x6b\x7d\x8f\x7e\xf1\x18\x7d\x14\xe6\x2d\x3c\x93\x04\xb6\x12\xb5\x39\x26\x59\x8f\x76\x14\x1b\xf8\x03\xd5\x82\x00\xab\x06\xb3\xea\x8d\x89\x97\x7e\x81\x4e\x02\x80\x10\x6f\xd0\x8e\xc6\xdf\xfe\x5f\x13\x75\x1c\xeb\xf6\x75\xdf\x80\x93\x89\xf4\xe3\x8a\x62\x6d\x1f\x47\x3f\x07\xc9\xdc\xb5\x40\x6b\xc5\x2a\x80\xc8\x3d\xd5\x8b\xae\xb7\x1c\x56\x6d\xf6\x84\xf7\x00\x64\xb1\x54\x94\x5d\x77\xf8\x44\xc0\xef\x7c\xa0\xcc\x80\x6f\xa3\xfb\x24\x7b\x4e\x8d\x40\x37\xa9\x94\x46\x6a\x72\x53\xb1\x75\xae\x02\x2f\xce\x9d\x6c\xba\x45\x6c\x28\x8a\x4b\xc6\x99\x7e\x0d\xeb\x48\xfa\xdd\xd5\xc5\xa0\xce\xbb\x83\x8b\x41\xdc\x3b\xa6\xd0\xde\x26\x0c\x4b\x8c\x00\x8e\xcc\xb1\xda\x2d\x9f\x9c\xfc\x46\x51\xdd\x12\x1b\x22\xe7\x50\xc7\xed\xbc\x3b\x49\x15\xc4\x69\x18\xc5\xf6\x69\xda\x19\xac\x86\xa5\x8e\x8d\x19\xa0\xe0\x19\xfc\xaa\x45\x6c\xd8\x66\x1e\x83\xc7\x2d\x1a\x12\xb1\xe8\x7e\x40\x2d\x09\xb1\x7c\xaf\x6e\xa3\xf4\x88\xe9\xaa\xa4\x7c\xf5\xd2\x66\xff\xf7\xc4\xe7\x9d\xc7\x02\xe5\x5c\xb3\xab\xa3\x52\xdd\x63\x5c\xd7\xea\xa4\x10\x65\x25\xfb\x06\x8b\x9d\x6e\xb5\xc0\x10\x60\x2f\xd5\xfa\x7a\xfd\x62\xd8\x52\x93\xe2\x3f\xe0\xe7\x2d\x2e\xa3\x9f\x50\x95\x0b\x71\xf3\x78\xdf\x30\x7a\x91\x16\xa1\x20\x19\x9f\xd6\x68\xca\xa2\xaa\x42\x71\xab\x01\xbd\xbc\xa0\x60\x98\xd3\xd3\x13\xf2\xca\xc8\xd2\x9c\x45\xca\xc5\x5a\xcb\x37\x51\x4f\x4d\x15\x0f\xd5\xb1\x00\xfb\x6b\x96\x33\x10\xaa\x68\x4b\xf9\x76\x3e\xe6\x36\xfe\x7f\xf2\x4c\xcb\xe9\xa1\xcd\x62\x68\x8d\xe2\xeb\x74\xa0\xac\x0a\x98\xd3\xe0\x04\x16\x0f\x28\x6a\x6d\xb5\x2c\x25\xa1\x56\x39\xfb\x9e\xf5\xea\x41\xe1\xc4\xbf\x17\xf8\x8d\xfc\x41\xa0\xa1\xcd\x3b\x3a\x5a\xd9\x43\xa1\xb0\x3e\xc2\x52\x45\x61\x75\x85\xb6\x0e\xfe\xd5\x9b\x13\x05\x1f\xfc\x90\x56\x06\xce\x56\xa6\x28\xb9\x64\xc0\x65\xa0\xb3\xe0\x69\xb3\xac\x85\x32\x71\x8d\xd3\x12\x40\x11\xdc\x96\xf3\x6a\xef\x9d\x7f\x68\x7b\x8b\xfd\x4e\xa4\xce\x42\x16\xc9\x43\x2c\x7e\x33\xf5\x4c\x28\xad\xcf\xa3\x38\xb2\x70\x73\x59\x70\xa7\x91\x1f\x66\xe2\x8c\x81\xee\xc2\xd5\xa9\x4f\x38\xb0\xd0\x1e\xdb\xbc\x88\xc2\xa8\xc7\xa8\x25\xdd\x70\xe6\x2e\x20\xa5\xb2\x18\x9e\xb5\xd6\x3f\xa1\xac\x67\x4c\x42\x1b\x77\x5f\xf5\x14\x10\xc0\x78\xa6\x2c\x68\x1b\x65\x6f\xda\x42\x4e\x85\xc7\xd3\xea\x54\x65\xaf\x34\xbc\x54\x9c\x42\x57\xd2\xe1\x1e\x5c\x47\x02\x20\x1e\x6c\x74\xe6\x5c\x89\xca\x23\xfd\x6a\xa7\x70\xe5\x83\xd9\x95\xa9\x52\x96\x32\xcc\x22\xb5\x1a\xc3\xfa\x1d\xd5\x3d\xfd\x8e\x82\x2e\x14\x6b\xe3\x88\xc6\xb2\xfb\xc5\x1b\x14\xd0\x05\xa1\xdf\x3c\x0c\xd9\xdf\x37\x59\x75\xca\x17\x8c\x2a\x12\x03\x63\xba\x2b\xfc\x66\xaa\x3a\x7b\x69\xb1\x5d\xe6\x22\xa3\xeb\x08\xd4\xd5\xdd\x12\xe9\x3a\x3f\x8f\x36\x65\x2f\x2a\x72\x45\x29\x64\x79\x2b\xaf\x3d\xec\xa2\x42\x99\x0f\x09\x7b\xa1\x5a\x0a\xae\x33\x09\xd4\x28\xbb\x68\xd3\xbe\x17\x82\xe9\x53\xea\xec\x2e\x93\xc2\xb2\xc2\x08\xda\x49\x70\x49\xc0\xd9\x7c\x85\x4e\x3e\x69\x91\xfa\x46\xa7\x2d\xc2\xe7\x67\x74\x47\x9b\x4e\x1b\x2c\xa5\xbb\x81\x37\x4d\x38\xed\x0a\x6e\xf1\x7b\x9f\xd5\xfd\xe9\x4b\x1a\xe1\x8d\xf9\xad\xf2\xbd\x16\x7e\x56\x95\xf8\xba\x2a\xa8\xcc\x8b\xb4\xb7\xd6\xa2\xd3\xc2\x81\x5f\xfc\xeb\xda\x21\x9c\x44\x09\xd6\x3b\x72\x8b\x9f\x2b\xb6\x08\x06\xda\x48\x27\x8e\x2b\x11\xd1\x9e\x25\xed\xf1\xcc\xc0\x40\xeb\x80\x57\x2e\xad\xee\x31\xee\x1f\x24\x1a\xc4\xad\xc1\xdf\x4b\xb7\x9c\x9c\x97\xc3\x85\x9a\xee\x89\xf2\x86\x2b\xf2\x7d\x0a\xd7\xc7\x41\x86\xa2\xf2\x17\x3f\xb1\xae\x95\x27\x70\xb7\xe8\x79\x7e\xb7\x4d\x37\x08\x25\xd7\xb3\xeb\xca\x61\x7d\x13\x61\x0d\x11\xeb\x13\x1d\x4f\x50\xfc\x77\x9f\xa6\xe5\x80\x42\x76\x17\x36\x27\x9a\xad\x97\x27\x3e\x9d\xda\x47\xa5\x0c\xe6\x58\x5b\x9a\x22\x6f\xc6\x3b\x95\x58\xca\xd7\xf5\x30\xed\x86\xd2\x11\x7b\x57\x95\x45\xef\xd3\xde\x96\xa6\x62\xc3\x26\xc8\x0d\xca\x5d\xef\x7f\xa7\xc8\x74\x1a\x91\x5b\x05\xbd\x01\x4d\x75\x3d\xe5\x0a\x7a\x6c\xd2\x5a\x52\xfe\x35\xe9\xc8\x3e\x45\x37\x44\xa8\x22\x1e\xc7\xfd\xe5\xa7\x3b\xda\xa9\x92\x7d\x7b\x98\xf3\xaa\x24\x7e\xd9\x55\x17\xeb\xfe\x9a\xea\xd9\x70\x84\xc3\x27\xef\xa5\x93\xc9\xe9\xf5\x1e\x11\xcc\xe3\x1d\xcd\x3b\x64\x77\x33\x27\x70\xb2\x24\x68\xce\x1f\x52\xb2\x2a\x6b\x43\x8d\x6d\x8e\x29\xe5\xa2\xeb\x5a\xa2\x25\xcd\x18\xb0\x21\x6d\x29\x2f\x7a\x78\x41\x19\xf1\x92\x24\x6a\x28\xc3\xe4\x87\x8c\xa9\x1a\xc0\xfe\xf9\x2f\x8f\x79\x43\x0a\xee\xde\x07\x9d\xb7\x68\xf1\xd6\x34\x1a\x51\xce\xdd\x72\xf6\xa1\x71\x9a\xe6\x04\x87\x5f\xf0\x6a\x20\xde\xc8\x66\xd3\x49\x85\x8d\xf3\xb5\x38\x8e\x20\x90\x21\xcc\x21\x38\xd8\x20\x5a\xee\xa1\x65\x2a\x54\xba\xa7\xdc\xe5\x87\x6b\x61\xec\xda\x23\xa8\x48\x4e\x2b\x2e\xdb\xe9\x46\x39\x89\x61\x9a\x17\x28\xc0\x6a\xa9\x81\x78\x05\xb6\x9c\xed\xd2\xcd\x40\x9a\x31\x83\xcc\x24\xbd\x70\x18\xc5\xbd\xcc\x26\xb4\xeb\x85\x5d\xad\x54\x25\x6e\x6b\xbf\xdf\x53\xae\x91\x43\x46\x37\xf9\xd8\x9a\xcc\xf2\xc4\x0f\x89\x1e\xdb\x8d\xf0\x1b\x17\x07\xbb\x69\x31\xb4\x19\x90\x43\x2f\xd4\x7b\xf4\x38\x7d\x77\x22\x91\xc2\x22\xb9\x3b\x55\x78\x1f\x58\x68\xaf\xa5\x65\x31\x64\x15\x90\xa6\xd1\xe7\x93\x4a\x3d\x79\xc5\x26\xe8\xf4\x61\xc1\x5f\x57\x78\x9b\xeb\x53\xa8\x88\x23\x73\x8b\xed\x32\x19\x5a\x13\x17\x43\x56\xe4\xc0\xa9\x82\x24\x98\x5f\xab\x59\x5a\x18\x65\x61\x39\x5a\xb1\x49\xd1\xaa\x69\x1b\xb6\x9c\xbc\xdc\x2d\x6f\x33\x5c\x76\x6d\x62\xf3\x2f\x96\x36\x5e\x9b\xf1\xcc\x3f\xd8\x13\x09\x95\x51\x49\x43\x5d\x54\xec\xd7\x7e\x94\xe5\xc5\xe3\xd5\x3f\x44\x1d\x7d\x95\xe2\x80\x74\x4f\x54\xe3\x87\xc7\x78\xac\x16\x49\xbf\x83\x8b\x64\xf8\xab\x63\x1b\x9e\xc5\xfd\xe6\xe6\x15\x80\xf1\xfc\xf7\x3a\x73\xc4\x14\x49\x72\xd5\x6a\xaf\x3b\x45\x41\x37\xb1\xdd\xb7\xae\x84\xca\xae\x4e\xcd\x26\xe7\x0f\xb7\x87\xb6\x37\x70\x6b\x18\x8f\xe8\x81\x7a\x5c\x0f\x6a\x66\xac\xfd\x28\x8c\x6c\x12\x46\x36\x9f\xf1\x90\x46\x6c\x7a\x67\x10\x7e\xc0\x4b\x15\x3f\x4c\x4a\x7a\x25\x4a\xc2\x2a\x5d\xf4\xac\xff\x0f\x95\x44\xc7\x9f\xe0\x36\xb3\xa3\xe4\xd4\x2a\xa8\x8a\x80\x22\x0a\x97\x6d\x91\xa5\x49\x5d\x98\xd2\xd7\xe6\xd3\xcd\x6b\x22\x99\xc5\x69\x38\xeb\x41\x46\xd7\xb5\x8c\xe2\x09\x3c\x27\xd7\xd9\xa8\x12\x06\x81\x2b\xf8\xd4\x27\x5f\x8d\x92\x01\xfa\xcd\x4e\x1e\xf0\x80\x93\x0a\x9c\x3c\xec\x82\xc3\x61\x14\x9a\x41\x3a\xe3\x17\xde\xb9\xc9\xcc\xa1\xdf\xfd\x2d\x06\x1e\x7c\x7b\xa2\x50\x4a\x9b\x4d\xca\x70\x55\x9c\xc1\xe1\xed\xf4\x57\x4e\x2b\x69\x9d\xd3\x53\xed\xd2\x03\x0b\xed\x6e\x84\x76\x29\x56\x02\xe7\x7f\xfc\xa6\x69\x25\x84\x69\x52\x88\x7b\xa1\xd3\x54\x72\xd1\xe8\x7c\xa0\x35\x93\xd3\xae\xe9\xc6\x6b\xfb\xe8\x96\x29\x51\x67\xe1\x9b\xfd\x38\xf0\x58\xec\x37\xa9\xc0\x41\x21\xfb\x5d\x35\xe9\xba\x8d\xf2\x0a\x1d\x88\x77\x30\x11\x76\x9a\x38\x4b\x73\x4e\xf7\xd3\x4f\x60\x1f\xa1\xd9\x98\x9c\x61\x38\x17\x30\x1c\x3b\x8f\x27\x89\x3e\xda\x57\x95\x48\xe0\xa0\xac\x8a\x8a\x96\x93\x51\x5f\x57\x2d\x75\x4e\x6b\x30\x4d\xdd\xd9\xf1\xb5\xac\xe9\x7d\xa1\xcc\x0b\xcb\x64\x2e\xd7\x69\x72\xb3\x8d\x16\x52\x18\xdd\x1a\xc6\x5a\xbd\xa3\xc8\xb3\xc7\x5c\x73\x6b\x75\x18\x8d\xf2\x35\x45\x35\x44\xd3\x8f\x5f\xbb\xe3\xa4\x6b\xe2\x78\x6c\xb2\x65\x8e\x9c\x62\xb2\xef\x9f\xc0\xe6\xd4\x43\xfe\x4c\xf5\x47\x3d\x85\x83\x3c\x1e\x28\x36\xc4\x71\x55\x0e\x0e\xcb\x81\xdd\xe9\x51\x3f\x97\x26\xaa\x00\xc6\x44\x13\x01\xe6\x36\x5d\x01\x5a\x57\x5b\xe8\x3a\xf2\xc8\x5d\xdd\xd4\x5e\x56\x0e\x72\xd4\x7a\xe8\xea\xfd\x45\x8d\xe9\xd6\x72\x6a\xaa\x1f\x6a\x55\xbc\x32\xab\x4e\x96\x7d\x7e\x62\xc6\x22\x16\x28\x0b\x4f\x4e\x54\x09\xf1\xf5\x89\x9f\x8f\xbf\x8f\x7d\x89\x2a\x1e\x0d\x2d\x74\x14\x66\x91\xf7\xa0\x80\x43\x32\x80\xfb\x74\x9f\x96\x0c\xfe\xe0\x1a\x65\x37\x5a\x76\x89\xff\xfd\x44\xa1\xb9\xcf\xb9\x44\xa0\x17\xe5\xe3\x34\x37\x71\x4b\x91\x1d\x4f\x2b\x5e\xca\x69\x35\x4a\x2b\xf3\xd2\xc4\xf1\xda\x6e\x8f\xea\x64\x1d\x12\x1c\xeb\x57\x34\x16\x12\xad\x2f\xac\x62\x6e\x3e\xe0\xcd\xa3\x1d\x75\x0a\xdf\xe7\x35\x8d\xa0\xf0\x13\xc5\x29\x09\xd3\xd1\x28\x2a\x0a\xcb\xa2\xf2\x22\x7c\x45\x1b\xc8\x95\x38\x5e\x7d\xf4\xbc\xd2\x13\xba\x8d\x1b\x5b\x83\x2d\x21\x13\xdf\xd3\xd1\x8d\x24\x0c\xfc\x71\xd7\x2e\x35\x02\xd3\xbb\x59\x94\xf8\xa3\x42\x2c\x37\x3d\x12\xfa\x78\x83\x91\x22\x11\x98\xb2\x88\xab\x0e\xe9\x2c\xfb\xa9\xdf\x19\xa7\x01\x3b\xb4\xab\x6c\xdd\xa3\xec\xf4\x5e\xe6\x54\xf6\x6e\xa0\x34\xe0\x2e\x36\x38\x34\xb7\xa3\xa4\x17\x85\xa6\x60\xbd\x4d\x74\xc7\xd1\x30\xe5\xd7\x53\xb1\xb9\x3a\x10\xfa\x51\xf1\x5a\x1e\x8d\x46\x69\x22\x3d\x0f\x99\x18\x29\x31\x8e\x73\x0a\x30\x6e\xe2\x38\x5d\xdd\xd3\xda\x2e\xc4\x22\xdc\x0c\x7a\x06\xdc\xf8\xc5\x4f\xc6\xca\xf8\xcf\xe8\x92\x51\xe6\xfd\x41\x30\xcd\x93\x41\x14\x13\xc4\x0a\x1a\xac\x8f\x74\x9a\x3c\x6c\x6d\xd6\xe5\x53\x80\x9d\x6a\x02\x3f\x11\xa3\xa1\xd9\xaf\xd7\x9a\xde\xc6\xb5\xef\x1c\x0a\x65\xc1\x0f\x78\x9f\xf5\x9c\xbf\x34\x29\xb2\xb4\xfa\x8b\xb5\x59\xd5\xd5\x46\xbb\x5b\xd0\x21\x4a\xef\xf2\x2c\x62\x03\xff\x97\x06\xf1\x24\x56\xb4\xb4\x99\x13\x4f\x92\x63\xb6\xe5\xd4\x56\x9a\x8c\x19\x17\xdb\x23\xd3\xb3\x3b\x5b\xdb\x59\xe9\x4c\x0b\x09\xa6\x2d\xeb\x71\x31\xdf\xc0\xbd\x47\xd2\x70\xdd\x55\x00\x61\x5c\x16\x85\xcd\x14\x9f\x14\xb2\x18\xac\xd1\x8d\x42\x48\xa6\xcc\x8a\x01\xb5\xc8\x83\x23\xe4\xd9\xe8\x5a\xe0\x08\x3b\xad\x3d\xec\xee\x2b\x50\x7a\x3e\x4e\xb3\x22\xdf\xed\x61\x46\x40\x69\xe0\x34\xf8\x0a\x1d\x1f\xc8\xcd\x21\x16\xb8\x45\x66\x3e\x87\xb6\x4e\x68\x4e\xef\x2d\x74\x19\xf1\xef\xa6\x55\x08\x16\x16\xa8\x3e\xe5\xd1\xa4\x90\x06\x54\x12\xa3\x59\x03\xcb\x36\x8e\x2d\x86\x75\x68\x3e\x9c\xa1\xdf\xc3\xaf\x9b\x4c\x13\x42\x33\x1a\x33\xea\x0c\x27\xe9\x79\x3d\xdd\x3f\x5f\x83\x95\xe7\x65\x5c\xec\x51\x54\xb0\xf3\xc4\x64\xc7\xc9\x0e\xac\x15\x06\x7d\x98\x85\xb8\xa3\x72\xfe\x30\x37\x29\x98\x77\x25\xb5\x6d\x75\x77\x5c\x8b\x4b\xf5\x27\x1a\x28\xce\x3d\xbb\x12\x85\x28\x3a\x59\x3a\x94\x9e\xa8\xc8\x88\x36\x38\x2c\x0c\x4a\x51\xef\xc5\x50\x0e\x04\x51\x7e\xad\xf8\x2c\xcb\x99\xe9\x17\x1c\x07\xa4\x1d\xed\x3b\x1f\x97\x4f\x35\xa6\xa2\x43\x52\x16\x73\x43\x35\x44\x63\x04\x60\x76\xf2\x54\x66\x8d\x6f\x4f\xd5\x4b\x9f\x21\x09\xdb\x04\x3c\x9a\x97\xb9\x6d\x88\xde\x29\xbf\xf6\x82\xd6\x99\x35\x45\x2a\x4e\x90\x32\xc0\xf0\x38\x8f\x8b\x4a\xed\x76\x30\x88\xb8\xc5\x28\x26\x81\x74\x21\x02\x3f\x53\x52\x0a\x36\xab\x6e\xe7\xbe\xea\x5c\xe5\xcc\x2a\xf0\x30\xae\x8f\xf4\xa4\xe3\x67\x81\xd2\x02\xff\x7d\x65\x68\xfc\x9e\x56\xf9\xdb\x44\x64\xe0\x86\x82\xa2\x91\x5e\xc3\x46\xc6\x9f\x1c\x47\xf2\xe7\xb4\x1b\xaa\x6b\xc7\x57\xde\x0e\xd4\x14\xf4\x5a\xa3\x19\x7f\x66\x46\x51\x66\x5f\xab\x49\x71\x1c\xd5\x52\x1c\x47\x9b\x24\xfb\x88\xbb\x57\xd8\x01\xe9\x9b\x29\x13\x03\x4e\x5c\xf9\x8d\x12\xdc\xcb\xe3\xa8\xc7\x42\x3f\x08\x2b\x97\x29\xd7\xe7\xd7\xae\xc0\xce\x6c\x34\xea\x96\x59\x4e\xe0\x12\x0a\x34\x4c\xaf\x0c\x7c\xcc\xe7\x71\x37\x27\xc4\x53\x10\xba\x2a\x59\xb7\xb6\x2f\x74\x27\xc6\x8d\x23\x16\x08\x88\xfc\x49\x65\x31\xd2\x8b\x2c\xaa\x66\x15\x15\x5d\x88\x54\xf5\xb5\xe9\x66\xa9\xe9\xed\x55\x85\xcd\x29\xca\xac\x24\xb1\x51\x7b\xe2\x36\x8f\x2e\x70\x5e\x6d\xe0\xbb\xf1\xe6\x56\x5d\xec\x5a\x53\x8a\x94\x1c\xe4\x65\x25\x06\x7b\x19\xd5\x2c\xd7\x02\xda\x3f\xe3\xe3\x46\x8d\xc0\x41\x24\x03\x1d\x11\x0f\xf7\x05\xe8\x71\x55\x67\xe7\x71\x39\xc2\xcc\x0f\x8d\x09\xe6\x86\xf3\x1b\x07\x53\x18\x64\xa6\x27\xa2\xd0\x08\x2a\xdf\x54\xa6\x25\xdf\x9c\x78\x40\x4e\x94\xf4\xca\xbc\xc8\x22\x9b\xef\xa2\x93\xc0\x29\x5b\xee\x9f\xaf\xed\x64\x3c\xf3\xab\x0a\x96\xcc\x53\x7e\xbc\x79\x4c\xb5\x31\xaf\x29\x0a\x54\x95\xf0\x9a\x31\x62\x30\x57\x05\xb8\x97\x52\x22\xb8\x46\x95\x1d\x54\xb9\x24\xd5\x95\x2c\x1d\x44\xbf\x58\x64\x84\xfc\x2d\x20\x57\xf6\xa7\xe8\xc7\xa2\xfa\x3e\x49\xf7\x1d\x29\xe3\x9f\x6b\x2a\x22\x1f\x8f\x02\x96\x6b\x39\xb1\xb4\xfb\xb4\x8c\xd1\x6e\x64\x78\x34\x1e\xe7\xa3\xeb\x1e\x12\xf9\x73\x4a\x9c\xf9\x1f\x4d\x94\x17\x0c\x2b\xef\x61\x94\xf9\x46\xa0\xd8\x7f\x47\x11\x2c\x70\x6d\xbb\x3a\xaa\x1c\x14\x6e\x91\xb8\x00\x7a\x7b\xd7\x6f\xa9\x61\x41\x38\x34\x19\x57\x29\x00\x02\xb6\x3a\x4a\xdc\xf0\x1b\x81\xe2\x76\x6f\x2a\x3b\xaf\xbf\x0d\xfc\xe8\xe0\x76\x93\x1e\x4a\x66\x07\x86\xfd\xc3\xf9\x00\x0e\xf4\x61\xfc\xf7\x95\x88\x14\xc3\x1c\x48\x55\x3f\x27\x38\x02\x9a\x7e\x1f\x04\xde\x23\xf6\xba\xd2\x62\x05\x8a\x04\x3b\x08\xb7\x55\x7a\xa4\x4a\x4b\xec\x8a\x43\x96\x8d\x23\x93\xa0\x09\x80\xdc\xfc\xb2\xa2\x89\x9c\xc2\x6e\xc4\x2d\x9a\x3e\x27\x48\x8e\x72\x9c\x8b\x6c\x80\x88\x31\xf8\x46\xd5\xe6\xd4\xe9\x54\x9d\xe8\xe9\x68\x64\xb3\x50\xf2\x6f\xec\xe7\x1f\x04\x7e\x96\xf6\x03\x85\x4e\x4c\xb3\x68\x10\x25\x50\xa2\x9a\xf7\xc8\x16\x0f\xbd\xe0\x94\x16\xb7\xfd\xa2\x7a\x04\xd0\x88\x44\xc8\xbf\xaa\x80\xd6\x77\x6b\xae\xe4\xdb\x63\x32\xc0\x56\x65\x36\xce\xa2\xdc\x9d\x9f\xda\x29\x0f\x47\x3a\xce\x4f\xa1\x48\x6f\x3f\xde\x0f\xbf\xd8\xce\x53\x93\x51\x50\x60\xd4\x55\xe0\xa9\x41\x1a\x4c\x51\x44\xa3\x5d\x7e\x0c\x89\xa7\x88\x13\xef\x91\x4e\xb5\xdf\x85\x81\xee\xf5\x0f\x8f\x6b\x2d\x45\x2e\x9d\x90\xdc\x5f\x99\x4a\x9f\x96\x28\xe3\xed\x81\xf0\x81\x7b\x8b\xf2\x83\x5f\x4f\x1d\x64\xf3\x87\xdb\xab\x26\xcb\x4c\x52\xa0\x35\xe0\x8e\x18\x17\x6e\x2e\xd7\x34\x39\xca\x64\x19\x85\x97\x3b\xa5\xdd\xef\xbf\xa8\x24\xd6\x7a\x51\x5e\x98\xbc\xb0\xfd\x32\x56\xfa\x03\xac\xa1\xcd\x6f\x94\x51\xd0\xaa\x59\x7b\xb2\xfa\x20\xd6\xe0\x9e\xa8\xdc\x9f\x7d\xe9\x00\x95\xbb\x46\xe9\x9d\x83\x2e\x7b\xff\x1a\xe5\x9a\xce\x2e\xd1\x62\x44\x41\xe8\x07\x14\xb6\x77\x03\x15\x2c\xbf\xcf\x24\x0c\x24\x55\xe7\x6a\xd6\xbc\x0c\x18\xc4\x8a\xfe\x63\x0a\xb7\x88\x59\x97\xa9\x89\xc4\xaf\x11\x8e\x98\xb2\x34\x35\xc9\x3c\xfc\x22\x0d\x40\xe9\xea\xc5\x3b\xcf\x37\x80\xce\x04\x5e\x8b\x6c\x90\x26\x33\x0a\xd5\xfc\x4d\x4d\x65\x3f\x0d\x42\x09\x12\x94\xf3\xca\x66\xb0\x6b\xd7\xd2\xa4\xb7\xb3\xde\xdd\x76\xe2\x4e\x97\xd0\xc7\x72\x12\x11\x55\xa8\x74\x93\xe4\x03\x0b\x0c\x4f\xf9\xaa\x1a\xa1\xac\x66\x11\x63\x26\x51\x4c\x01\x1b\xc8\xaf\xb5\xdd\x85\xed\x0d\xf0\xef\x84\xd7\xe1\x57\xcd\x05\x85\x76\x2a\x93\x70\x68\xa8\x4e\x9f\xf1\x26\x1a\x37\x83\x9a\x9a\x57\xb5\xc4\xf1\x5c\x8f\x56\x35\xa0\x13\x80\xb5\x19\xdb\x6a\x51\x8c\xc2\x56\x7c\x4f\x65\x98\xdf\xc4\x92\xc0\x39\xfa\xa6\x5e\x9e\x99\x1d\x17\x2d\xf5\x1d\xd7\x70\x4a\xf0\x9b\x89\x36\x4c\x2c\xca\x2c\x2a\xd6\x54\x4f\xee\x86\x42\xa0\xb1\x63\x28\x4a\xad\x47\x3a\xfe\xb6\x57\x8f\x14\xd2\x23\x5e\x50\x8a\x9e\x9d\x88\xed\xd2\x2f\xc3\xd9\x03\xbc\x27\xeb\x5a\x34\x15\x51\x2b\x36\x2f\xd8\xcc\x5d\xe4\x2a\x69\xdd\x89\x5e\xe5\xf6\x48\x75\xf8\xc5\xf6\x70\x6d\x9c\x0e\xe2\xb5\xd0\x8e\x22\x08\x7b\x60\x99\x5f\x51\x1c\xbb\x2b\x8a\x69\xb3\x6c\x0a\xab\x4c\x2d\xa0\x8f\xed\x8c\x3a\xbc\x40\xed\xb5\x46\x53\x80\x55\x1b\x0d\x86\x24\xbe\xe5\xec\x7b\xaa\x95\x29\xf6\x3d\xcf\xaa\x13\x2b\x8f\x06\x30\x97\xa6\x6f\x53\x5a\x5d\x8b\xdc\x46\xf8\xa7\xda\xeb\x23\xd8\x46\x88\xfc\xad\xf9\xf6\xc2\xc2\xa1\xc7\x7c\xe6\xf6\x00\x15\x31\x73\xa7\xf0\xb5\xf8\xd9\x27\x95\x21\xf9\xc9\xc0\x53\x12\x77\x02\x05\xe7\xd8\x84\x2f\xb9\xbd\x70\x46\xe9\xe4\x5c\xa0\xbc\x93\x75\xa0\x90\xe1\x23\xca\x3c\xd0\xcd\xf5\xb5\x51\x37\x8d\x67\xeb\x42\x06\x47\xe6\x38\x32\x43\xaa\xc1\x49\x97\xf8\xbe\xff\xa3\x1d\x9f\x71\x8d\xa2\x38\x8e\xd2\xe4\xc9\x1d\x9f\xe6\xad\xb6\xb7\xa3\x9c\xa2\x66\xd6\xbd\x79\x01\xf7\xe7\x1c\x81\x50\x83\x05\xbc\xa6\x35\x2b\x82\x60\xfa\x38\xa3\xc8\x49\x37\xf4\x5c\xf8\x87\xb4\x82\x31\xc7\xbc\x44\xfb\x1c\xbd\x8b\x75\xac\x4a\x16\x10\xa3\x9b\x86\x1d\xf1\x97\x18\xea\x20\xbd\x9b\xe9\x54\xb1\x4d\xd0\x40\x1a\x20\x90\x45\xe1\x1e\xdf\x5d\xbe\xa8\xe8\x5a\xec\x3a\x85\x62\xfe\x0a\xce\x29\x34\x81\xbe\x13\x28\x9c\xc7\xf1\x89\x66\x4a\x5f\xc1\xcf\x61\xdf\x2a\x5a\x17\x32\x2d\xdf\x7e\x9c\xed\xdf\xdf\x4e\xfb\x7d\x9b\xed\xf4\x6b\xf8\x82\x22\xcc\xb0\x2d\x94\x13\xda\xa9\xf6\xfa\x34\xe6\xeb\x66\x0d\xed\x60\xf3\x65\xe4\x2e\xac\x52\x89\x2d\x27\x92\x95\xdb\x1b\x8e\x2f\xcd\x1f\x16\x3b\x0e\x06\x88\xe1\x5a\x37\xf4\x85\x6f\x4c\x8d\x4a\x8e\xcc\xb5\xc3\x38\x82\x72\x84\x9a\x60\x3e\x50\x74\x97\x07\x2a\xe5\xc9\x43\x9b\x98\x2c\xfa\x7f\x18\xfb\xd3\x18\x49\xce\xf4\x4e\x0c\xef\xce\xaa\xea\x66\xb3\xc9\xe1\x35\x87\x76\xb0\x8b\x7f\x6a\x35\x7f\x53\x02\x66\xb9\xf2\xda\xf0\x02\x03\x03\x91\xee\xae\x19\x4e\x17\x3c\xc5\x42\x75\x4f\xb7\x76\xb0\x06\xf8\x66\xe4\x9b\x95\xc1\x8a\x8c\x48\xc6\x51\xc5\x22\xf6\xc3\x7e\x10\x8c\x85\x21\x18\x86\x61\x61\xed\x35\x0c\xac\xbc\x0b\x2f\xd6\x92\x56\xab\x63\x25\x4b\x33\x52\x16\x35\x33\x9a\x91\x66\x86\xe4\x90\x1c\xde\x43\xf6\x7d\xdf\x77\x57\x77\x57\x1b\xf1\xfc\x9e\xe7\x7d\x9f\xa8\x8c\x16\xfc\x85\x88\x60\x57\x66\xc6\xf1\x1e\xcf\xf1\x3b\xd2\x9d\x74\x61\x78\xe5\x1f\x04\x0a\xcd\x73\x92\x46\xbd\x20\x0c\xab\x07\xc0\xff\x5f\xbf\xd9\x9f\x29\x70\xd5\x29\x4c\x20\x81\x21\x7a\x6d\xe5\xbc\xb0\xc9\x0e\x3f\x9a\x01\x1f\x46\x94\x72\x4e\x83\xc3\x8e\x69\x15\x7b\x84\xed\x7c\x4c\x63\x7e\xf3\xb8\x4a\x06\x86\xa6\x1f\x41\x3e\xcc\xe9\xba\x54\x03\x81\x4f\xc6\xcf\x44\xda\xe2\x38\x4b\x87\x51\x0e\x77\x71\xb4\x59\x5e\x1f\x2b\x75\x64\xdc\xa8\xb8\xd5\x79\x8c\xdf\x7f\xc4\x38\x97\x66\x0c\x5d\xa8\x38\x9a\x4d\xc0\xf3\x16\x17\xda\xf6\x15\xda\x7e\x6c\xab\x6e\x9d\xe6\x2a\xe8\xe7\x26\x30\xf7\x07\xf7\x50\x9e\x64\x4d\xbf\xb0\x59\xcb\x9b\xac\x9d\x56\xe2\x59\xa7\xc7\xaa\x42\x4f\x98\xa0\x47\xf4\xc0\x54\x28\x9d\x77\xb1\x32\xe8\x75\x0a\x8b\xd9\x65\x4a\x68\x9c\x6f\x9e\xee\x58\xca\xfa\xf8\xdd\xa7\x3a\xda\xb3\x67\x22\x4d\xdf\xbb\x97\x04\x87\xca\x51\xa1\x20\xf0\x2c\x18\xc5\x27\xaa\xfe\x86\x1e\x25\x08\x3c\x0c\xc9\x1c\xfb\xae\xd8\xc9\x09\x2d\xba\xd9\x03\xd0\x9b\x0f\x6d\xcf\x26\xce\x3d\x4f\x88\xb7\x8a\x84\xab\x38\x98\xbc\xd9\x5b\xa8\x70\x22\xa2\xc2\xf6\xce\x92\xbd\x81\x6f\x77\x21\x48\x17\x29\xdf\x06\x5f\xcd\xbc\xec\xa6\x59\x2f\x4a\x8c\x13\xc2\x13\x67\xcf\xea\x4b\xd0\x19\x38\xac\xc5\xc7\x6e\xd5\x5b\x82\x85\xcd\x8b\x9c\x2a\xb7\x22\xb4\x42\xe3\x4b\x36\x96\xea\x4b\x50\xd2\x82\xf8\xba\x88\xe5\xb5\xbe\x76\x88\xc3\x8b\xb7\xc6\x8f\x2b\xd4\xee\x2b\xc5\x33\xf4\xec\x04\x87\x53\xad\xd0\x0e\x84\x7d\x70\x0f\x2f\x01\x3f\xa4\xc0\x10\xe1\xd2\x2e\xf4\x5f\xd0\xd0\xbb\x40\x11\xab\x53\x62\x74\xa2\x3b\xdb\x60\xe8\xe2\x04\x49\x3c\x8c\xef\xcf\xb4\xab\xc8\x8f\xf0\x5a\xb9\x12\x3b\xf6\x65\x99\x4f\x94\xf6\xcb\xdb\x63\x2d\xb2\x89\x51\xe5\x84\xfd\xe7\xe6\xf6\x6b\xc7\xc4\x05\x67\xb6\x42\x4f\x05\x51\xe6\x5d\x0d\xb2\xf9\x44\x21\x17\x86\x26\x31\x4b\x54\x51\xda\x4d\x9f\x15\x41\x5e\x8f\x22\xfe\x29\xbd\x4e\x76\xe8\xc4\x77\x0a\xd2\xd6\xe7\xaa\xaf\x61\x3f\xc6\xc9\xef\x07\x7e\xd4\x3e\x18\x6b\x5f\x72\x65\x64\x7c\x06\xcb\xb2\x2b\x8d\x79\x1f\x9e\x4b\xaa\xb0\x31\xb4\xc5\xc0\x24\x96\xa0\x4f\x48\x1d\xe0\x98\xc1\xc7\x4a\x41\xaf\x67\x57\x6c\x9c\x8e\x6c\x6f\x97\x02\x7c\xc3\xd0\x54\x74\xcf\x3d\x00\x1a\xf2\xcb\xae\x05\x53\x3d\x41\x69\x30\x2a\x34\xf4\xa7\x63\x65\x67\xca\x49\x87\x80\x14\xbd\xe4\xc8\xff\xd4\x24\xb9\x63\xa2\x70\x10\xa1\x30\xc4\x5a\x70\x81\x92\x73\x98\x94\x88\x9e\x3d\xa0\xfc\xc9\x90\x04\xff\xdb\xb1\xc7\x54\x1e\xd3\x5e\x16\xc7\x27\x36\xa3\x7d\xf3\xed\xa5\xcc\x92\x7f\x1e\x54\x70\x10\x8c\x23\xa1\xe5\xe3\x86\x4e\x1b\xfb\x7c\x8a\x0d\xa1\x08\xa0\x29\x67\x49\xad\xbc\xd1\x4d\x93\x32\xb7\x39\xd9\x72\xe3\xdd\x82\x89\x88\x68\xe4\xa2\xc2\xba\xec\x58\xf7\xfd\xe0\xb0\xcc\x20\xf3\x8d\x7f\xfa\x1b\x5a\x1c\x9d\x4d\xb8\xb3\x6b\xdd\x54\x3a\x7c\xab\x36\xee\x39\x00\x17\x3a\x88\xef\x8f\x95\x87\xfc\xfb\x8d\x08\xef\x0c\x1a\xc1\x8b\x0b\xbc\x2b\xc1\xc7\x5f\x5c\xba\xfd\x84\xf9\x3e\x0d\x6d\x14\xab\xde\x55\xe3\x27\x5d\x29\x63\x6e\x62\x1d\x94\x25\xfb\x98\x6a\xf6\x1e\x53\x8f\x62\x94\xa5\x4b\x99\x19\x3e\x55\xfd\x25\x12\xa3\x0f\x02\xbf\x16\xde\x53\x35\x05\x0e\x5a\x51\xde\xba\xa7\x35\xa8\x6e\xd7\x10\x66\x4a\x19\xea\x22\x11\x36\x84\xeb\x52\x5d\x2c\xa6\xf0\x77\x03\x74\x73\xf0\x28\xb0\x5e\x4c\xb1\xca\x01\x56\xa2\x13\x63\xa5\xa5\x79\x8b\x68\xe0\x0e\x65\x52\x8d\x5d\x51\xa7\x56\x04\xfc\x73\x0a\x88\xb7\xab\xf3\x84\x22\xe2\x84\x36\x29\x66\xaa\xc7\x09\xbc\xd8\x15\x48\x2e\x62\x5d\xbc\x8b\x45\x87\x4f\x00\x61\x11\x93\xed\xea\x82\xb1\xe2\x4e\x75\x76\xfb\x76\xe6\x97\x5a\xbe\x48\xcd\xe0\x24\x3e\x99\x08\x09\xf7\xcd\xb7\x0b\x93\xf4\xd6\xb8\xec\xee\x04\x69\xfc\xfc\x39\xaf\xd2\xe4\x35\x6b\xb2\x78\xad\xe6\xc0\xad\xcb\xcd\x67\xea\x22\x11\xd5\xf2\xe0\xbd\x6f\xe1\x20\x24\xb6\x60\x4a\x4e\x96\x13\x6a\xb4\x4e\x0f\xd3\x9b\x42\xde\x71\x1b\x37\x8b\xe4\x00\xa0\x60\xac\x34\x7f\x83\x67\x8f\xbf\x3a\xad\x8c\x9b\xae\x01\x6e\xc8\xd1\x51\x99\x14\x56\xa4\xda\x5c\xe3\x06\x25\x22\x3e\x56\xc9\x2e\x21\xea\x66\xe8\xb2\x9c\x05\x6c\xf5\x10\x9c\xe5\xdb\x3e\xa7\x6e\x46\xd3\xca\x29\x9d\x55\x21\x3f\x6e\xe4\xdd\x89\x3a\xd6\xc1\x3d\xdf\x6a\xaf\xd6\xeb\x11\xbc\xfa\x22\x46\x04\x77\x48\x44\xe6\x44\x14\x32\x4a\xfa\x71\x69\x93\x50\xb4\x25\x54\x0b\xc6\xf5\x63\x26\xf4\x50\xe6\xe7\xdb\xa3\x7c\x2d\x1c\xa4\x26\x31\xf1\x5a\x11\x85\xea\x9e\xcf\x05\x0a\xc1\xaa\x08\x9b\x71\xf9\x4a\x99\x91\x28\x45\xcb\x59\x85\x6d\x31\x02\x6e\x6a\x6a\x94\x99\xd7\x3d\x92\xb4\xab\xe5\xa8\xe2\x57\x15\x9c\xb6\x5b\xc6\x71\x2f\x7d\x15\x0e\x3d\xfb\xbd\xf9\xa5\x32\x8d\xdf\x3a\x20\xbf\x76\x08\x81\x63\xab\xf5\xd5\x5f\xe3\xdd\xe0\xf4\xd8\x7b\x38\x9d\x56\x26\x74\x2f\xcc\x1f\x68\x69\xe4\x1d\x5e\x98\xc0\xf0\x1e\x57\x52\x2a\xc9\xda\xe7\x30\xbe\x11\xc1\x13\x63\x40\x94\x12\x11\xb3\x63\x95\x7c\x8d\xe6\x31\xfe\xe8\x41\xe0\x55\x27\xc6\x0a\xcb\xcf\x78\x10\x4c\xe3\x27\x10\x77\x20\xc2\xbe\x85\xf1\x8a\x57\xfb\xdb\x81\xb2\xe4\xe3\x95\x89\x03\x25\x1a\x3f\x98\x90\xff\x5b\xa0\x3b\x37\xd5\x5a\xe4\x40\x89\x3e\x5d\x9d\x5a\x6f\x7d\xf3\xeb\x1c\x9c\x70\x87\x15\xdb\xfa\x8d\xb1\xc2\x63\xdf\xc2\xf8\x40\x21\x14\xdd\x53\xc4\x46\x47\x68\xe2\x21\x98\xfa\x73\x45\x8d\x5a\x8b\x6c\xdc\xdb\xad\x08\xd9\x74\xf3\xf8\xe6\x0b\x28\xf4\xb9\x2e\xf0\xe2\x1e\x0e\xff\x2e\xd3\x50\xe2\x63\xcc\x7d\xfc\xe2\x07\x5c\x00\x74\xf2\x71\xf3\xf3\x4e\xf9\x86\x9e\x91\xe3\xb9\x7a\xab\xda\x6b\xb4\x20\x02\xa9\x72\x46\x71\x2a\x51\xb3\x4a\x33\x04\xcb\x22\x37\x4a\x8f\x9d\x4f\xc6\x5b\xb1\x09\x82\xc9\xcb\xd3\x32\x0b\xed\x74\x8d\xb9\xe9\x37\xcb\xdd\x44\x38\xa9\x69\x3e\x61\x4b\xbc\xa7\x68\x06\x4b\x26\xef\xe2\x97\x45\x06\xd6\xc7\x89\x17\x9b\xed\x4e\x57\x52\x69\x5e\x63\xec\x7c\x4a\x8f\x9f\x8f\x27\x8a\x41\x8b\x7b\xda\xa3\xd8\x26\xc5\xda\xb4\x0e\xd7\xe8\x32\x31\x0c\xa7\x14\x9f\x82\xa1\xea\x22\x8a\xf1\x19\x85\x05\x89\x12\x36\x79\x10\xe9\x10\x9f\xd5\x42\x76\xd7\xc9\x8b\xb8\x1a\xe5\xb1\x40\x79\x0b\x50\xbd\x6c\x4a\x09\x16\x63\x0b\xe6\x36\xcd\xba\xa2\x9d\x6d\xa8\x59\x97\x26\x6b\x8f\x2a\x09\x57\xfa\x21\xec\xf0\x4f\xa3\xb3\x83\x48\xed\xcd\x2a\x05\xd8\x3c\xaf\x2b\x7f\x28\x96\x4a\x75\xdb\x87\x33\xb8\x5d\x54\x63\x18\xd8\x04\xf8\xc7\xae\x75\x65\x74\x77\x77\xa2\x26\xbc\x6f\xbe\xdd\x8f\xad\x51\xd6\xe9\x6f\x6b\xd1\x10\x6c\x25\xa2\x96\xf0\x30\x76\x54\x91\xa5\x65\x37\xe6\x2d\x02\x0f\xe9\x1c\x86\x1a\x9f\xd4\x58\x76\x69\x96\x7f\x51\x27\x51\x98\x73\xcc\x7e\xc4\x5e\x8f\xfb\xdb\x50\xd2\x7d\x4f\xc2\x7a\x12\x43\xf7\x33\x9d\x2a\x35\x02\x17\x0a\xf5\x6f\xcc\xfe\xef\x82\x63\x8e\xa4\x61\x13\xd3\xcf\xf5\x83\x5c\xe8\xf6\xd4\xba\x66\x19\x8e\x7d\xc9\x72\x9a\xe4\x3e\xf0\xe9\x7b\x4a\xe8\x67\xdb\xba\x02\x92\xcc\x80\x70\xc6\x44\x36\xcf\x25\x3f\xc1\x85\x5d\xc4\x44\x7f\x80\xdd\x95\xb9\xc8\x81\x52\x57\x41\x8c\x8b\x2f\x66\x39\x72\xbc\xa8\x5b\x81\xa2\xc6\x0c\x68\x1d\xc3\xb5\xbf\xc1\xb9\x94\x6c\xfb\x58\x23\xa4\xb7\xd5\x44\x66\xa6\x02\x95\xed\x4d\xd3\xb7\x73\x44\x15\xa8\x2d\xf3\xb7\x69\x8c\x32\xc6\x51\x19\xdd\xfd\xac\xc1\x74\xe3\xf9\x76\x98\xa5\xa9\x60\x2f\xa5\xa1\xec\x8b\x46\xe7\x9a\xfa\x37\x66\x34\x32\x99\xe5\xce\x35\xd0\xe7\xf7\x95\xee\xce\x7d\x25\x21\xd6\xb3\x76\xc8\x23\x07\x69\x0f\x63\xbc\xf9\x44\x6d\x41\xd6\xe4\x6b\x33\x3e\x51\x83\xb9\xbd\x94\x93\xb4\xfc\x3f\xbd\x6b\x61\x0b\xd1\x97\x89\x2f\x40\x13\x78\x6f\x90\x0e\x2d\x09\x8a\x78\xe8\x29\xd4\x35\xf9\xb8\x69\xfb\x66\xe3\xec\x96\xe2\x9c\xa9\x3e\xfa\xc9\xf1\xa3\x22\xeb\x93\x03\x68\x2c\x52\x2c\x5a\x97\x25\x10\x7c\xbd\x35\x59\x31\xa8\x42\x27\xd7\xea\xc3\xaa\x05\x0d\x1d\x24\xf9\x20\xe8\x0b\x2d\xa2\xe9\x9d\x93\x3a\x16\xf3\xda\x9a\x28\x71\xa2\xf7\xe1\x04\x26\x50\x47\x99\x15\x9e\x48\xa0\x68\x4d\x17\x1a\x4a\x51\x0b\x6d\x33\x32\x59\xe1\x74\x42\xb0\x29\x43\x48\x83\x8f\xd7\x15\x65\xd8\x2c\x31\x10\x03\x93\xe3\xaa\x2a\x9c\x4d\xb6\x08\x09\x70\x48\x9d\x29\xa7\xf4\x79\x5a\x27\x90\xa7\x27\x42\xee\xb9\xb9\x76\x62\x56\xf8\x0d\xb0\x37\x97\x12\xe6\x3d\xad\xa1\x11\xcb\x51\x56\xb4\x68\x2d\x90\x7c\x05\x33\x88\xcf\x94\x57\x52\x98\x92\xb6\xae\x81\x12\x35\x83\x05\x02\x25\x17\xff\xa6\x8a\xd1\x6e\x2a\x25\xed\xab\x35\xc7\x30\x2d\x6c\xd3\x8f\x23\x6e\x39\xed\x93\xf7\xb2\x11\xa8\x2e\x1d\x94\xfe\xb1\xc0\x6a\xdb\x30\x93\x2f\x8b\x1c\x14\xab\x52\x2a\xd2\xeb\x9d\x40\xb5\x1f\xee\xd0\x70\x17\xe9\xca\xa7\x54\x35\x30\x1a\xc5\x51\x62\xa7\xb5\xe2\x0e\x4d\x62\x0c\xc0\x4f\x94\xa6\xdf\x23\xf4\x1a\xd1\x16\xd9\x98\x00\x53\x7f\xa5\x1a\xef\xc0\x6a\xa0\x90\xc2\xa0\x1d\x3e\x99\x40\xcc\xbf\xf8\x22\x21\x8a\x92\x25\x34\x7a\x18\xd4\xae\x40\xf9\xdc\x86\x01\x34\xe3\xb8\x6b\xf9\x0d\x4c\x96\x0f\x18\xeb\x81\x50\x0b\xf5\x63\x3e\x9e\xc8\x0c\xe6\xe6\xda\x7d\xf2\x31\x71\x1a\x38\x40\x68\x49\x89\x46\x19\x50\xae\x46\x4b\xa8\x37\x0a\x78\x9c\xc2\x29\x09\x6e\x7c\xdc\x32\x2a\xf3\x01\xe2\x01\xa4\xc3\x27\x10\x1d\xa2\x88\x82\x0c\x9d\x83\xce\xb1\x52\x9d\x01\x9c\x9c\xb7\xb7\x67\x7b\x8f\x2a\xbe\x3d\xe2\x3e\x56\x7a\xa3\xcf\x20\x33\x62\x77\x13\xdc\xda\x0e\xec\x29\x22\xd1\x4d\x4b\x16\x6d\xeb\xdf\x7f\x06\xdb\x9e\x13\xf2\x76\xb8\x8b\x69\xea\x9b\x61\x6f\x44\x0b\x9a\xf5\x35\xb5\x52\x74\xd9\x8d\xa3\x30\x5e\x9b\xa1\xeb\x61\x61\x75\x04\x92\xd8\xe4\x4e\x2a\x34\xdd\x69\x2d\xad\x8b\x6c\x01\xc5\xb1\x3b\x1a\xf8\xb5\x9a\x66\x49\x4b\xa1\xa6\x8e\x6a\x65\x8e\xa3\x4d\x9c\xde\x76\xd7\xe4\x5c\xf3\x46\x90\xfb\xa7\x1a\xdc\xfe\xa7\x13\xab\xeb\xec\x01\x30\xe6\x6b\xab\xeb\x86\x5a\x5d\x37\x3c\xcd\x2c\x2d\x8b\x28\xb1\x31\xc7\x80\x4a\x8e\x4b\x70\xce\xe7\x51\x2a\x73\xae\x60\xce\xde\xb5\xd5\x69\x14\x96\xcd\x47\x36\x04\x90\xb0\xfa\x42\x84\x0b\xff\x23\xb2\x05\x3e\xd1\x0b\x4b\x91\x56\x4b\x96\x12\x2d\xaf\x42\x06\x11\x33\x97\x41\x3d\xb4\xa6\x97\xae\xf2\x37\x3a\x09\x8f\x79\xe7\x4e\x7b\x7e\x62\xfa\x7c\x85\x8a\x19\xd1\x4a\x3d\x75\x3d\x86\xcb\x10\x02\x83\xaf\x27\x24\xe9\x8a\x8d\xf3\x69\x8f\x62\x62\xec\x17\xca\x68\x6c\x72\x02\x1a\xce\xcf\x55\x34\xf7\x3f\x6b\x33\x0f\xd0\x3a\x04\x40\x89\xc5\x02\x80\x0b\x3e\x76\xdb\x07\x11\xc7\x62\x6f\xcc\xc0\x16\x6e\x0a\x44\x75\xac\x09\x69\x34\x34\xde\x01\x44\x70\x8e\x1e\x8c\x72\xac\x49\xe0\xb5\x57\x2d\xdb\xba\x83\x53\xfd\x84\x34\x70\x26\x8b\x04\xcf\xb7\x07\x22\xa1\x85\x64\x80\x0d\x07\xf8\x64\xa2\x04\xf7\x8d\xd9\x76\x5e\x76\x87\x51\xd1\x52\x6e\xc0\x81\x2f\x71\x5d\x52\xfd\x7f\x90\x1f\x22\xba\x69\xfa\x05\x0c\xa2\xfb\x18\xc9\x7c\x32\x51\xaf\x9c\x3d\xd0\x8e\xd3\x32\xca\x23\x93\x18\x2e\x0d\xa1\xd0\xcd\x0a\x2b\x7c\x32\x11\x94\xcc\x1e\x68\x17\x65\xd6\x2d\x63\xfb\xb7\x68\x39\x28\x4a\x72\x0e\x1d\x5c\x21\xe2\x6a\x56\xae\x5a\x0c\x86\x51\x1c\x15\x26\x5b\xdb\x4d\xff\x8e\xed\xe2\x9d\x1a\xf8\x85\x56\x27\x01\xc2\x28\x24\xed\x87\xb8\x5c\x0c\x21\x41\x43\x62\xdf\xfb\x90\x76\x2f\xa9\x37\xfa\xaa\x29\xda\x02\x48\xef\xbf\x8f\x78\x8e\x7f\x51\x31\xe2\x8e\xb9\x08\xa8\x4c\x6c\x12\x2a\xfb\x43\xc9\xb4\x81\x98\xe2\x63\xe7\x85\xb4\x3a\xb0\x36\x8e\xa3\x65\xab\xed\x51\x21\xeb\x86\xc4\xfb\x96\x82\xf2\x9f\x98\x78\x2d\x94\x6c\xf6\x6c\x6c\xd6\x24\x42\xc6\xea\x0c\x72\x20\x56\xfa\xcb\x63\xa5\x8b\x02\x88\x82\xd4\x17\x9a\x60\xb7\x4b\x99\xe9\x76\x25\x9e\x42\xaf\x1c\xdb\x1d\x1f\xab\x5d\x39\xb3\x61\x31\x34\x91\x46\x9d\xfd\x33\x85\x3a\xfb\x67\x2e\x32\x4e\x57\x6c\x36\x32\x51\x6f\x4a\xe9\x5a\x43\xa7\xd0\xb1\xca\xb4\x6f\xd6\x93\x2e\xbc\x63\x90\x1e\xb9\xe2\x3b\xe9\x10\x6f\xe6\x16\x78\xca\xc3\x6b\xe3\xc7\x3c\xb3\x2b\xe9\xfd\xff\xf0\x66\xb9\x3c\x88\x6c\x06\xf1\xd7\xaf\xa3\xe0\x80\x1d\xed\x4a\xb0\xfd\x4b\xdc\x51\xbf\x09\xd5\x7a\x54\x95\xde\xa7\x5d\x08\xe9\xf2\x35\xd2\x70\x44\xb2\x36\x0e\x3c\xc8\xf3\x2a\xa9\x23\x23\x75\xb9\x42\xfd\x2d\xfc\xfd\x07\x81\x27\x69\x4e\x63\xcb\x73\xc6\xf7\x1e\x61\x7b\x87\x52\x3d\x44\x78\xa0\x73\x83\xbe\xf4\x01\x32\x27\x6c\x57\x50\xc8\x15\x31\xf9\xd6\x37\xc4\xed\xe9\x3d\xce\x9b\xf0\xf4\xde\x1d\x2b\xb0\xe0\x7b\xb4\x70\x0b\x8f\xb4\xa5\x6c\xf9\x69\x80\x09\xcd\x8b\x32\x53\x3c\xef\xc3\xc0\x40\xe1\xe7\xaf\x90\xb4\x0d\xf2\xe5\xab\xc8\xfb\x54\x5d\x77\xc1\x89\xbc\xd1\xc6\x8b\xc5\xe5\x47\x08\xe0\xa4\x6d\x59\xe5\x7a\xb8\xe2\x8f\x95\x25\x4b\xbe\x1a\x65\xf1\x4c\x75\x69\xae\x98\x5a\x7d\x48\x62\x45\xba\x67\xfc\xcb\x5b\x63\xef\x7a\xf0\x31\xdd\x3f\xeb\x2f\x38\x17\x44\x12\xad\x73\x42\xbb\xc0\x6e\x5d\x0b\x14\x59\xef\xda\x78\x97\x8c\xa0\xee\xb4\x02\xad\x83\xe8\x88\xea\x33\xeb\x0a\xbb\xb6\xa3\x63\x26\x7c\xa8\x90\xd5\x10\xac\xda\x59\x5d\x04\x6a\x0e\xa7\xd0\x82\xc3\x9c\x87\xcd\x16\x86\x1f\x18\x75\x8c\x0d\xd6\x30\xac\xb3\x78\x3a\x62\x13\xd6\x72\x1a\xe6\x67\x1d\x6a\xc0\x0c\x7b\x66\x80\x49\x24\xf6\xa7\x0a\xd9\x73\x74\x2b\x9a\xe7\xe0\x9e\xf9\xf6\xe2\x9e\xa7\xe9\x0d\x32\x74\x5b\xe1\x53\x7f\x86\x97\x86\xfd\xf8\x1e\x1e\x2c\xa2\xbc\x9f\x06\x0a\xb3\xf0\x08\xe9\xd1\xa1\x60\x0e\x60\x24\xc6\xd2\xcd\xc0\x0f\x9f\x1b\x9c\x08\xa0\x82\xf7\x76\xe0\xab\x0e\x7f\x11\x28\x8d\x63\x24\xd0\x88\xc3\x6f\x07\xaa\xe3\xf2\x54\xc7\x7b\x59\xb0\x61\x35\xd0\x40\x5c\x83\x60\x4f\x03\x2c\xf2\x38\xb9\xab\xb5\xc6\xb6\x75\xb4\xa1\x90\x59\x93\xcc\xc3\x19\xb7\x2e\x8a\x36\xc7\x86\x82\x73\xbe\xa1\x54\xe4\xa9\xa2\xc9\x09\xb9\x98\x21\x54\x7f\x29\x20\x77\x59\xb3\xc9\x72\xa0\x9b\xa5\xcb\x2e\x6c\xe0\x4e\xac\xe2\xf6\x4c\x56\xa6\xf7\xcd\xb7\xa3\x9e\x19\xc0\xf6\x9e\xcb\xac\x78\x73\x52\x73\x55\x4e\xa4\x51\xd2\xcb\x67\xaa\x85\x01\x43\x74\x5b\x47\xe9\x9b\x6d\x5b\xf7\x12\xd5\x1f\xd3\x05\x3a\x83\xd8\x7d\xf3\x8e\x2d\xdb\x10\x5c\xe6\x45\xe9\x2c\x91\x30\x40\x6f\x29\x81\xb2\x5b\x4a\xe4\x29\x2f\xb2\x32\x2c\xca\x0c\x59\x8c\x98\xb3\xfb\x22\xf6\x4d\xcd\x4d\xbe\xd6\x44\xbd\xcb\x07\xe9\x68\xe4\xb2\x7a\x87\xf1\xf6\xce\x67\xa8\x6f\xa3\x12\xfc\x63\xd5\x23\xca\x8b\xcc\xda\xe2\x31\x5f\xd2\xbb\xab\x30\x8d\x77\xb1\x26\xba\xea\x59\x35\xa8\x45\x0f\xa5\xa5\xe4\xeb\xfd\x14\x3c\x86\xb1\x87\x47\xfc\xd7\x40\xcb\xbc\x89\xae\x0b\x86\xdd\x26\x96\x43\x2c\xad\xec\xce\x8e\x72\xd3\x3b\x18\x84\xa2\xae\xbb\x75\x33\x95\x0a\x60\x9a\xc4\x6b\xd0\x88\x00\x5a\xf1\xc2\xb8\xc6\xf6\x72\xf7\x71\xc1\x9b\x23\x97\xaf\xa6\x49\x4b\xcb\x20\x72\x58\xc4\x27\x2a\x2d\x1f\x9a\x97\x4b\x5b\x80\xc1\x28\xe1\xe0\xfb\x2a\x1c\x7c\x5f\x85\xb2\x1e\xf7\x41\xcf\x9c\x15\xd9\x30\xc5\xb0\xba\xa0\x8f\xa9\xa4\xda\xc4\xde\xee\xf6\xc4\xdd\x1d\xaa\x42\xb1\xac\x1c\x8e\xac\x10\x63\x04\x48\xad\x08\x3b\x97\x1a\x89\x1b\x79\x61\x62\x61\x4e\xb2\x11\x5f\xdd\x95\xcf\xaf\x98\xa3\x74\x38\xb2\x6b\x98\x43\xe2\xd5\xd0\x72\x2a\xc6\x27\x1f\xaa\x15\xe0\x54\x6b\x1c\x8f\xed\xb2\x76\xe9\x9a\xa4\xaa\x56\x23\x92\x48\x4d\x42\xa7\x61\x3f\x5a\x2c\xd0\x62\x4e\xfb\xa4\xe2\x80\x14\x36\xc9\xf9\xb1\x8b\xf0\x72\xcb\x49\x8b\x7c\x50\x97\xec\x29\x8b\x29\xa5\xb8\xf5\xd1\x58\x9b\x02\xa0\x61\x28\x42\xa0\x0d\xca\x18\xd2\x0d\xdf\x27\x25\xc2\x99\x8e\xb7\xd8\xfa\x68\xec\x05\x24\x6e\x29\x9a\xfa\x59\xd5\xe1\x5e\x31\xa1\x49\xc2\xb5\x96\x92\x30\x06\x3d\x99\x8f\x83\xcf\xbb\x58\x33\x4c\x93\x5e\x04\x34\x6f\xcc\x62\x19\x4c\x83\x1e\xfb\x98\xe2\x42\x13\x73\xb3\x9f\x66\xc5\x20\x24\xa1\xc8\x96\xc7\xba\x7c\x14\x28\xda\xef\x47\xaa\x35\x98\x17\x6b\x71\x94\x17\x51\xa8\x3d\xd1\x3f\x54\x9e\xe8\x1f\x4e\x2c\x50\x07\xf7\xb4\x07\x6b\xdd\x2c\xea\xf1\x9a\xea\x56\x60\x6f\x4d\x33\xf6\x4d\xea\x15\x53\x73\x8c\x3e\xaf\x6b\x66\xe7\x27\x46\x73\xf5\xfa\xc3\xcc\xda\x90\x4b\x7f\x62\xf1\xc8\x6a\x56\x7c\xb2\x75\xeb\xac\x06\xf3\xde\xbd\x9f\x57\xa8\xee\x2b\xf8\x19\x44\xf7\xdb\x3b\xde\x74\xf9\x3a\xbf\x73\xd0\x1a\xde\xa3\x18\x50\x44\xfe\x14\x19\x78\x5b\x87\x56\x1e\x01\x5b\xd2\x76\xeb\x90\xe0\x5f\x3b\xc4\xab\xdc\x1d\x34\x02\x11\xb5\xfe\x21\x45\x68\xba\xce\x87\x3c\xa3\x05\xdb\x7e\x31\x28\xf4\x15\xb2\x13\xd4\x87\xc3\x0c\x82\x33\x3a\x82\x7c\x56\x27\xc3\xda\x76\x0f\x0b\x1d\x22\x93\x27\x3a\x7e\x41\x61\x9b\x7f\xfc\xf6\x15\x5a\xbe\x70\x4f\x0c\x51\x42\xbd\x73\x7b\xcd\x93\xbb\x08\x07\x8f\x57\xbf\xe3\x06\xbc\x23\x7a\xee\x5e\xf7\x9c\xad\x56\x87\x36\x6b\xfc\x03\xfb\x30\x4a\x8d\xb3\xfa\x19\x56\xbd\x08\x94\xf0\x0d\x2f\x8b\x08\x5b\xde\xe1\xf4\x0b\xb1\xd1\x51\xda\xcf\x45\xa5\xb9\x7a\x76\xce\xd9\xac\x7a\xdc\x42\x64\xa1\x18\x86\x7f\xd2\x15\xdb\xd2\x2c\xb6\x06\xcd\x2f\x29\x9c\x3f\x55\x57\x81\xc7\x2f\xd5\xec\x0b\x84\xce\xfe\xb8\x92\x21\xcb\x0b\x62\xf6\xe2\x01\xdd\x51\xca\x2d\x2c\x71\xc9\x90\x67\x44\x29\x0e\xff\xec\x78\x4e\x5c\x0b\x14\xa9\x68\xa5\xbf\xfa\x47\x0d\x08\xa0\x85\x76\x37\xcd\xb2\x74\x55\xf2\x44\xc6\x91\xd0\xd3\x16\x4c\xc9\x13\x4a\x55\x3c\xcd\x2d\xb6\x7a\x07\xfa\xf1\x00\xa0\x66\x8d\xe3\xbe\x59\x49\x1d\xf1\x40\x80\x71\x2d\x27\x77\xb9\x6d\xbd\x81\x55\x11\xa7\x21\xcc\x6b\x84\xf4\xa3\xb0\x73\x5a\x6f\x35\x2f\xb2\x28\x5c\x76\x4e\x95\x78\x00\xcc\x11\xe5\x13\x65\xc3\x1d\x0e\xca\xa5\x96\x67\x4e\xdd\x55\x35\x39\x6d\xb4\x5b\x25\x8a\x49\xb4\x34\xa8\xd9\xa6\x5e\x52\xfa\x24\x97\x54\xe3\xf1\xe0\x3f\xf8\xaf\xa6\x14\x6e\x1b\xa2\x4a\x48\xb5\xb6\xd7\x6a\xc0\x1a\x4a\xbb\x1c\xa1\xd6\x23\xb4\x5b\xfa\x02\xe1\xe3\xfa\x7d\x2c\x1f\x98\x0c\x8e\xee\xc2\xf4\x67\x62\x2b\x9f\x68\xa2\x66\x9a\x2e\xdb\xde\x8e\x2a\x19\x64\x81\xf4\x40\xe1\x0e\xbe\x37\x56\x92\x3b\xc8\x12\x90\x48\x4f\xc3\x14\x51\x9b\xb5\xa3\x2a\x31\xe9\x17\xe8\xfc\x8b\x6d\x17\x03\x40\xfa\x28\x2a\xc6\xb8\xa3\xdc\xab\xac\xe9\x15\x03\x95\x4f\xfc\x71\xe0\x9f\xc6\x1f\xab\x7d\x06\x32\xf1\x79\xcb\x33\xeb\x60\xa0\x2a\x08\xe9\xad\x01\xef\x97\x31\x08\x79\xb8\x62\x6f\xbb\x85\xc7\xc2\x27\x0d\x86\xea\xfb\xdb\x61\x59\xec\x9c\xd2\x26\x51\xb4\x52\x60\x0e\xc3\x30\x48\x94\x20\x69\x5e\x4a\x00\xe5\x65\xaa\x81\xb6\xc0\x8a\xc9\x88\x7c\x74\x8f\x1e\xeb\x4c\x1a\x8e\x2d\xb6\x4d\xd4\xd3\xad\x14\xf5\xe1\xd3\x0a\xe8\xd6\x4f\x49\x3e\x11\x74\x16\x44\x8e\xb7\x75\xd7\xf3\x76\xb5\x37\xc9\x83\x7a\x6e\x87\x16\x8b\xa4\xcb\x74\xf4\xcb\xea\x1d\x38\xa2\xdf\xe2\x02\x47\x52\x30\xe3\xc5\x1f\x9d\xd2\xaa\x1d\xa7\x94\x9c\xaa\x68\x6d\xec\xf0\xdd\xbf\x1b\x63\xdf\x77\xbe\x41\x61\xaf\x48\xda\x69\x11\x30\xfc\xaa\x28\x82\x55\xbf\xca\x7f\xf5\x50\x1f\xea\x28\xe9\xab\x4a\x27\xb6\x6c\xa6\x85\xf2\x89\x6a\xf4\x94\xcf\xe5\xcf\xe5\xcf\x65\xcf\x61\x67\x15\xeb\x31\x25\xae\x75\x51\xdd\x44\xda\xef\x47\x61\x64\xe2\x47\x7d\xd9\x14\x72\x5a\x2a\x21\xfd\x96\x2b\x09\xa9\xb0\xea\x12\x15\x4a\x64\x02\x60\x85\x66\x59\xdc\xb1\xa2\x84\xde\x09\x54\x83\xfd\x28\xa6\x93\x93\xf9\x73\x6b\xd9\x03\x35\xae\x07\x69\x36\x24\x9f\x37\x07\x2b\x7a\x97\x66\x80\x94\x4b\xf4\x56\xf7\x52\x64\x54\x8f\xe6\x77\x03\xd5\xc9\xf8\xdd\xc6\x0e\x72\x31\xb0\x43\xa9\x3d\xb0\x32\x16\x5e\x8d\xc8\x64\x35\x78\xe0\xe5\xab\x66\x04\x0d\x48\x54\x70\xf9\x96\xb4\xda\x9d\x54\xf8\x1e\x75\x5c\x61\x56\xbd\xc2\x6a\x71\x8c\x9e\x15\x1f\x2b\xa2\xd5\x52\x69\x32\xc1\x6b\xfa\xa8\x4a\xe5\xb8\x5a\x04\x20\x0d\x23\x5b\xac\x3d\x52\x85\x1f\xf2\x06\xe8\xca\x81\x18\xf8\xb8\x06\x97\x1a\x6b\x79\x68\x44\x00\xfc\x19\x25\xcc\xf9\xfa\xd8\x07\x4c\x68\xb3\x30\x3b\x66\xa2\x93\x5f\x45\x5e\xe1\xc0\x0c\xbb\xac\x6a\xe1\xf4\x2f\xdd\x98\xb9\x34\x51\x07\xdf\x37\xdf\xce\xa2\x25\x0e\x1e\x51\x12\x40\xe1\x9c\x8f\x27\x5e\xcf\xe2\x9e\xf6\x28\xa2\x2c\xb7\xe5\x9b\x5b\xff\x5e\x11\xf4\xff\x7d\x93\x1e\x46\x91\x95\x79\x51\x77\x5b\x5e\xf4\x68\x96\xcf\xfb\x14\x3a\x1c\xa4\x69\x5c\x58\x13\x0e\xaa\x9b\x98\x9b\x93\xf7\x47\x61\x82\xbc\x4b\x3d\xb6\xe2\x30\xe5\x98\x16\xcb\xe3\x11\xad\x46\x7e\x24\x78\xca\xb1\x46\xba\x4c\xc9\x6b\x79\x34\xd2\x9b\x8a\xcd\xf8\xa6\xfb\xd3\xc1\xda\x28\x0d\xab\x1d\x9d\x07\xa0\x6b\x92\x68\x3c\xc3\x7f\xf6\x90\x25\x60\x0b\xf1\xb9\xa5\x04\x8a\x58\x59\x4b\x2c\x90\x7c\x0a\xda\x35\xe1\xf2\xc8\x84\xcb\xf9\x94\x47\x7a\xdc\xc4\x32\x89\xe9\x7d\x41\x2d\xe0\x9f\x6a\xa3\x88\x74\x38\x32\x49\xc4\x86\xa6\xae\x57\x70\xc8\x69\xd9\x9d\x98\x50\x82\xdc\x37\xdf\xee\x25\x66\x4a\xf5\x93\x16\x78\x14\x3a\x91\x30\x97\x78\x1d\x77\x32\x00\x5d\x98\xcd\xaa\x0c\xe3\x9c\x32\xbf\x3c\xa7\x9d\x22\xa3\x1e\xf6\xae\xe7\x79\x27\xba\xa3\xbc\x9e\xee\x04\xcf\xd4\x73\x85\x7d\xf3\xed\x67\x9f\x7d\x5c\xe9\xdf\xfc\x4c\xf5\x01\x7e\x3e\xf6\xb2\xdb\xd0\x7e\x47\x08\xf1\xa6\x76\x6d\xe0\xfd\x19\x25\xb3\xa9\x75\x94\x6c\x31\x76\x8f\x2b\x49\x85\x1d\x1d\xca\x1a\x98\x81\x0b\xa0\x0f\xff\xd5\xd8\x8f\xc4\xf7\x02\x5f\x4c\x3b\xcd\x8f\x45\x6e\xb7\x46\x26\x4b\x93\x47\xaa\xfd\x80\x21\x4f\xda\xa0\x09\x6b\x1b\xa2\xed\xbf\xc4\x0a\xc4\x27\xca\x72\xe6\x88\xea\x05\x5f\xd7\xd1\xdc\x39\xfe\x51\xc1\xe0\xeb\xa6\x4d\xf1\x59\x4f\x73\xe2\xc2\x2a\x16\x8b\x3b\xb4\x6c\xa1\xdd\x70\x05\x4b\xb7\x5b\xa3\xe6\xe6\xbc\xd1\xfb\xfc\xbc\x33\xb4\xa6\xfd\x98\x75\xe5\x11\x67\xe3\xed\xb7\x50\x34\x94\x78\x57\x2f\x4f\xdb\xd1\x72\xc6\x45\xef\xc6\xe3\x44\x22\xf2\xbf\xa0\x67\x8a\xc0\xea\x73\x94\x86\xe3\x77\xd8\x9d\x12\x79\xdb\x6e\x24\x04\xf4\xcc\x3b\x4f\xad\x2b\xf1\xad\x29\x52\x8f\x56\x9c\x34\xd9\x68\xdf\x51\x2c\xbd\x99\x8e\x92\x14\xda\xff\x8d\xa9\x2a\x77\xc1\xd6\x75\x41\xc1\x12\x36\xb4\xfa\xfe\x69\x55\x1a\x4f\x4c\xb5\x9f\x54\x0f\xd0\xf1\x34\x0e\xba\xe3\x49\x76\xd2\x6c\x3b\x2d\x8b\x5c\xf4\xee\xd0\x66\x80\xbd\x21\x8a\x77\x9f\xd6\x7a\x06\x7e\x9b\x66\x1a\x3a\x26\xb2\x5c\x45\xf5\x4b\x28\x06\xfe\x15\xee\x4e\x0a\x71\x5b\xd3\x89\xbd\x7b\xdb\xb9\x29\x6d\xb6\x9c\x99\xb2\x98\xf2\x7e\x03\x9f\x8e\x3d\x16\x06\xf2\x67\x62\x85\xbc\xb5\xe4\x70\x88\x34\x1a\x72\x6b\xb2\x70\x20\xcb\x97\x23\x3d\x54\x4f\x5c\x56\xdc\x86\x8e\x6b\x62\x6d\x4f\x5a\x52\xac\x33\x80\xf1\x2b\xa2\x03\x2a\x70\x4f\xd3\xc4\x66\x44\x94\x02\x64\xf9\x37\xc7\xaa\x49\xc8\x2a\xba\xfc\x2f\x81\x6a\xe6\x6d\x5b\x6f\x20\x47\x52\xb8\x3b\xe5\xc5\xe8\x7e\x8a\x87\x84\x1a\xe7\xc7\x35\x17\xe8\x86\xab\x26\x7e\x6f\x31\xa5\xc8\xcc\x17\x30\x1c\x01\x58\x38\xab\xa4\x54\xee\x4e\x14\x38\xbe\x02\x69\xad\xd8\x38\x8e\x18\x64\x6f\xcf\xe3\x61\xf1\xc9\x64\x43\xf0\x85\xfd\xd5\x53\x4e\xe3\x15\xf9\x18\xd7\x13\x68\x21\x90\xda\xc2\x93\xae\xee\x6d\xb2\x22\x76\x45\x5d\xa7\xba\x31\x37\xc7\x2b\x3a\xd4\xb0\xc5\x67\xb5\x41\xa6\x29\xb7\x36\x37\xab\xb4\x6f\x89\x9e\x1d\x5d\x1f\x9f\x8c\x7d\xbc\x3d\x48\xf3\x22\x8a\xed\x0e\x1f\x8d\xa3\xdc\x52\x93\x31\x01\x1a\xe9\x75\xa5\x1f\xc9\xd1\x36\x92\x97\xb3\x35\x1b\xa3\x49\x37\xb0\x2a\xdb\xe8\xa6\xc3\xae\xc9\x7a\x72\xfb\x4a\x56\x79\xd6\xe9\x4d\x35\x94\xb7\x79\x6b\xe4\x81\x89\xa4\xfd\x74\xa0\x38\x44\xa7\xc7\x9e\x4a\x60\x42\x6c\x6f\xde\x35\x89\x31\xcf\x63\xdf\x0a\xf8\xa0\x91\x38\xb9\x1a\x15\x83\x5e\x66\x57\xf1\x33\x28\x14\x9c\x1e\x2b\x07\xc4\xd3\x7e\x63\x23\xbd\x29\x7c\x7d\x53\xa4\xd1\x60\x9d\xdc\x8b\x72\x98\x35\xaa\x8e\xec\xef\x8c\x7d\x47\xf6\x77\x26\x82\xd3\xea\x9a\x86\x66\x84\xca\x21\x66\x13\x03\xab\xf9\x44\x55\x20\x7a\x2c\x47\xee\x22\xe9\xa3\xb4\xf3\x61\xde\x22\xa3\xc7\xc4\x6a\x75\x7c\x2c\x9e\x97\xd9\x92\xcd\xd6\x1e\xa1\x97\x81\x81\xcf\x65\x7e\xe5\x57\xce\x03\x73\xf7\xba\x77\x8c\xdd\xb6\x5e\x7d\xb7\x0b\x3f\x17\xa5\xaa\x72\x59\xf1\xde\x7e\x5f\x2d\x3e\xbb\x3a\x4f\xd6\x78\xb0\x26\x59\x7b\x06\x83\x05\xb9\xd9\xcf\x15\xda\x8d\xed\xdf\x71\x01\xe7\xa8\xe3\x25\x45\x58\x95\xcd\x01\x3e\x8d\xb5\x9f\x7d\x25\xf0\x4c\x80\x13\x64\x1b\xd4\xb1\xb7\x6d\xbc\x85\x3d\x05\xcc\xdf\x27\x3a\xfa\x8e\xc7\x1e\x97\x31\xd5\x51\x6f\xf4\x0c\xb9\x11\x3b\x3d\xe0\x6a\xb7\xab\xf1\x7a\x50\xf4\xb8\x86\xf6\x86\x00\x02\xe8\x5d\x29\x99\x3a\x36\x3e\xfa\xca\x17\x26\x96\xb0\xf9\xf9\x36\xe8\x2e\xaa\x41\x7c\x67\xac\xc4\x37\xee\x28\x90\xbd\x89\x8b\x41\x5a\x2e\x0d\x1e\xf1\x38\x95\xf5\x2d\xfa\x5d\x55\x68\x22\x06\xa8\x1e\x30\x08\x2e\x0c\x30\x85\x18\x12\x7c\x8c\xe9\x83\x4d\xfe\x76\xcd\x54\x76\x62\x7f\xf9\x72\xdb\xe6\x85\xe9\xc6\x51\x3e\x10\x08\x3a\xc2\x09\x20\x77\x9c\xa2\x79\x75\xe9\x22\x04\xff\x94\x22\x4c\xbd\x5c\x46\x99\xcd\xa7\xe9\xa1\x61\x75\xb8\xa8\x00\x6e\x3f\x55\x39\x00\x7a\xea\xfc\x37\xaa\x41\x90\x9b\x38\x1d\x56\xe1\xaa\xf3\x7b\x62\xfd\x76\xc1\x70\xfa\x89\xd0\xb5\x83\x28\xe9\xed\x54\xef\x11\x62\xfc\x28\x69\x7c\x97\x7e\x18\x0b\xe0\xb6\x75\xdf\xd0\xf8\x17\x63\x05\x7a\x9a\xea\x28\xd4\xe1\x05\x8e\x66\x90\xde\x5d\x51\x85\x87\xec\xb9\xd6\x96\x16\xbe\xe8\xab\x1c\x6b\xda\x71\x96\xd2\xb8\x67\x13\xa5\x14\xbb\xad\xa3\xda\xdf\xdb\xea\x35\xde\x81\x24\x27\xc2\x6b\x55\x8a\x87\xe7\xb6\x46\xc3\x5f\xfd\xb5\xf6\xc1\x3d\x5a\x4f\xed\x36\xc6\x24\x9f\xa8\x9e\x6b\x3e\x30\xa3\x28\x4b\xa7\x35\xb4\x06\x02\x4a\x5c\x8b\x0d\x3c\x80\xe3\x92\x16\x4c\xbb\xea\x56\xbe\x91\xcd\xa2\xb4\x87\xf4\x17\x7f\xd8\x5a\xf7\x1f\x6a\x75\xfc\x9b\x18\x98\x2c\x8d\x7b\xb5\xfb\xb8\xa4\xef\xe3\x52\xe0\x07\x49\x94\x84\x71\xd9\xb3\xf9\x23\x34\x48\x50\xc7\x78\xac\xe3\x13\x50\xf8\xe4\x62\xdf\x7b\x7c\xdd\x27\xc9\xdf\xc6\x30\x70\xd4\x17\x2f\xc8\x13\x90\xb8\xb3\xe4\x0f\x34\x2d\x99\x2d\xd3\x20\x43\xba\xbf\x6d\x92\x22\x0a\xa3\x91\xec\xe8\x02\x1b\xbc\x85\xea\x10\x9f\x28\x8c\x78\x5e\x66\x76\x57\x0d\x68\x5a\x3d\x71\xcc\xa0\xbb\xd8\x2f\xd1\xfe\xbe\xa7\x9a\xf6\xb7\x28\x7a\x44\x19\x9d\x37\x16\xa1\xfe\xd3\xcf\xf0\x89\x12\x03\xe6\x65\x8b\xbf\x77\xa2\x8b\x43\x99\x7b\x3a\x1a\x59\xa8\x2f\xc9\xc4\xf1\xd5\xc5\x8b\x13\x1f\xf9\x95\x76\x98\x26\xd5\x46\xc4\xc6\xff\x4d\xc2\xdd\x8f\xab\xc6\x4f\x5e\x10\xae\x17\x8f\x9e\x23\x01\x47\x15\xaa\x26\x99\xb8\x61\x2b\x17\xbc\x4b\x4a\xde\x68\x29\x4d\xa6\xbc\xe6\xc2\x45\xa4\x10\xd8\x3a\x10\x81\x23\x56\xfd\x77\x4d\x01\x4c\xcf\x0e\xa5\x84\x8d\x69\xfa\x7e\xe0\x97\xfd\xf7\xd5\x1a\x13\xa6\x49\x11\x25\xa5\xdd\xa1\xbd\x0f\x54\x14\xcb\x06\x68\x4e\x5b\xfd\x1b\xb3\x0e\x13\xec\xed\xab\x3e\x55\x59\xfd\x4d\x05\x0f\x58\x8a\xfa\x6c\xb5\xe2\x0c\xd6\x3d\x4e\xf3\xa2\x76\x4a\x89\xad\x49\x4a\x00\xf1\x85\x0c\x51\x45\x51\x42\x35\x6d\x64\x23\x15\x83\x28\x43\x49\xd4\x25\x99\xd5\x83\x14\xcd\x27\x65\xb8\x55\x14\x36\xe9\x59\x8b\xa0\x83\x35\xe7\xe9\xb5\x89\xfe\x7c\xcd\xd0\xbc\xbb\x36\x53\xab\x42\xb4\x94\xfc\x6a\x9d\x61\xe1\x93\x1b\x25\x1a\x7a\x4a\x61\x95\x63\x9b\xe7\x34\xd6\x1d\xb1\xbe\x7a\x87\x6e\xaf\x99\x3d\xc0\x21\xc2\x05\x4a\xbc\x05\x6c\x51\x3d\x58\xa4\xc4\xef\x04\x8a\x1a\xc6\x43\xc8\xa5\xea\x4e\xc7\xea\x9f\x6b\x72\xea\x4f\x6a\x76\x70\x23\x13\xaa\xa2\xf1\xf9\x40\xe7\xf7\x4d\x45\xa3\x41\x94\xa0\x4d\x22\x26\x59\x0a\x59\x3f\x09\x83\x5d\xdc\x43\x31\x63\x99\x14\xd3\x4a\xaf\x90\x61\x6f\x12\xe8\xb6\xc4\x15\xf2\x0f\xfe\x0f\x7c\x1b\x57\x36\x95\x60\x80\x2d\xb3\x34\xca\xf3\xd2\xe6\x34\x63\x6a\x9a\x65\xd8\x89\x70\xbb\xc8\xeb\x6f\xd3\xc6\x8c\x58\xed\xaf\x9a\xcc\x13\x57\x54\x88\xc9\x45\x40\x7a\xdb\x52\x10\x7c\x58\xb7\xbe\x6b\xe3\x25\x67\xa4\x81\x47\x7b\x53\xa1\x80\x8e\x52\xfb\x0e\x65\xae\x33\x4d\x55\x3a\x9b\x14\x1e\x1e\xc9\x2f\x10\x6b\x95\xbc\x4d\xd9\x0a\xfa\x36\x8e\x4d\x3e\xe5\xe5\xc7\x4e\xe3\x15\xa2\x31\x70\x4d\xd3\x86\x3f\x51\x9b\x10\x83\x8e\x29\x56\x15\x83\x73\x0d\x17\xa6\x0b\x47\x03\xf0\x5c\x13\x66\xb5\x5a\xbf\x6c\x92\x97\x98\x93\x58\x71\xee\x04\x3e\x2f\xba\xa3\x30\xab\xcf\x5b\xdb\xf2\x36\x3e\x2c\xc0\xcf\x27\x81\x37\xa8\x4b\x8b\x90\xf0\x3f\x92\x83\x29\xb3\x69\x4c\x31\x4c\xc7\x4d\x85\x98\xff\x2a\x48\x71\x42\x01\xf0\xf5\xf9\xa4\x1c\x92\x23\xee\x0e\xff\xcc\x79\x2c\xb1\x91\x8b\x12\x77\x3d\x07\xbc\x8c\x5b\x5c\x7d\xd1\xef\x01\x96\x01\x34\x45\x6f\x3a\xa5\x53\x9b\xc4\x55\xde\x6a\x93\xa1\x60\x76\x01\x91\x38\xa3\x08\x89\x67\x26\x10\x05\x87\x16\xf7\x28\xfd\x99\x56\xcd\x29\x4a\x01\x91\x03\xdf\x40\x5c\xcd\xd2\xa4\xb7\x94\x0a\xfe\xc0\x31\x93\xe7\x3d\x33\x59\x4f\xd0\xa5\x8c\x57\x1b\xa5\x50\x3a\xeb\xed\x58\xbe\xfa\x6b\xbc\x4b\x40\xc1\x0a\x55\x9a\x0d\x3c\x4c\xf1\x69\x79\xda\x01\x08\x87\x29\xd1\x86\xd8\x4c\x19\x25\xc5\xc3\x0a\x70\x74\x58\xf1\xc6\xf3\x81\xc9\xec\xa0\x8a\xac\xb2\xfc\x31\xff\x08\xee\x68\x4d\xf0\xd6\x7a\xdd\xb1\xc3\x95\xd3\xbe\x4f\xa9\x0b\x4a\x2c\x47\xc7\xde\x5f\xe6\x0e\x36\x73\x45\xcb\x91\x01\x70\x13\xd9\x91\x83\x7d\xb8\x6a\xdc\x1f\xe0\xdd\x29\x1f\x8b\xe7\xb9\x00\xf5\x56\xd3\xc6\x46\xbd\x25\x4e\x67\x65\xa3\x56\xa9\xf4\xc5\x87\x32\x66\x4d\x56\x0c\xca\x6c\xca\xa7\x76\x58\xb3\x71\xd7\xf7\xb5\xc2\xf0\x8e\xce\xe7\x94\x32\x8c\xcd\xd2\x25\xa9\x2c\x2b\x6d\x2f\x8a\x47\x44\xe7\x6b\xa2\xc6\x32\xdb\xce\x6d\x5a\xc6\x1c\xc1\x61\x3a\xfc\x1c\xbf\xc1\x27\x13\x65\xe2\xaf\xb4\x63\xf1\xb8\x71\xfe\xce\xde\xeb\x59\xb5\xf3\xcb\xe7\x92\xe7\x5a\xbe\xcc\x08\xde\x05\x1f\xab\xc0\x3f\xb6\x05\xf2\x5a\x57\x6b\xdd\x4e\xc0\x45\xd4\x88\xae\x11\x2a\x5c\xcc\x35\x1f\x75\xb3\xfe\xd9\x5d\xf4\x02\x09\xc8\x73\xf9\xe9\x8e\x0f\xb9\xaf\x21\x28\xc0\xde\x3f\xb5\xae\xea\xea\xdb\x48\x78\x15\xc7\xe8\x04\x4b\xb4\xd8\x7a\xf6\xd9\xfb\xff\xfc\x73\x80\x04\xba\xdd\xc0\xf3\xfe\x74\xbd\xa6\x00\x08\xc7\xa7\x18\xf7\x02\x5f\x7c\xb9\xa7\xea\x2d\xfd\xd8\x94\x49\x91\xb7\x50\x76\x16\xc0\x34\xe5\x73\x22\xf0\x28\x5f\x1b\x0e\xd2\x30\x8d\x4d\xc1\xbe\x7c\x22\x0c\xe9\x5b\x22\xd0\x1a\x91\xff\xef\x2b\xea\x71\xfe\x5f\xfe\xea\xaf\xea\xc6\xd6\x25\xb5\xd9\xc2\x1e\x5b\xba\x9a\x7e\xbd\xb4\x36\x83\xda\x0d\xb6\xfa\x9f\x61\x54\x02\xb5\xb1\x63\x5d\x59\xc0\x5d\xa1\xa1\x83\x71\x07\xdc\x3a\x92\xd6\x47\x3b\x0a\xe8\xc6\x62\x11\xa8\xd1\x3c\xde\xd1\x26\x97\xc0\xed\xd1\x9f\x99\xa7\xa8\xb4\xa0\x14\xe5\x85\xbf\x72\x7c\xfc\xf7\x1f\xda\x2e\x19\x9a\x6c\xd9\x7a\x2a\x09\x97\xed\xb0\x6a\x4a\x0d\xaf\x89\xbc\x61\x87\x39\x92\x17\xe7\x9c\xe3\xe0\x17\xde\xab\x3c\xb3\x61\x9a\xf4\xa3\x25\xea\x56\xb9\xc0\x7a\x7a\xdd\x07\xd6\xd3\x13\xd6\x00\xf3\xf3\xed\xd8\x24\xae\xb6\x25\x52\x45\xf4\x38\xc4\x4e\x72\xeb\xb4\xde\x3b\xdb\x1e\x46\x49\x62\xcd\x28\x8d\x23\xbe\x2e\xa1\x90\xb6\x9c\xe7\xf1\xe4\x72\x70\x70\x4f\x3b\x1f\xd9\x30\x62\xaf\x7c\x05\x6c\x61\x76\x95\x14\xaf\xbc\x99\x7d\xd7\x66\x2e\x9c\x40\xcf\xe4\x8a\x22\x3d\x5c\x51\x9e\xee\xbd\x68\x25\xca\xe1\x90\xee\xe2\xe1\xe3\x5a\x91\x0d\x25\x40\x1c\x6f\x60\x3d\x10\xb1\x4c\x2f\xbd\xca\xfa\xd5\x0c\xd3\x77\x31\x43\x35\xa1\xb9\xcd\x88\xbd\xf1\x64\xa0\xb8\xaa\x27\x9b\xfa\x8c\x90\xe1\x99\x9b\xe3\x62\xf0\xae\x8e\x2f\x92\xef\x6a\x2a\x0c\x13\xa3\xb1\xa5\x76\x20\x48\x0b\x4a\xa1\xc4\xdf\x68\x68\x8a\x41\xf5\x54\xec\x94\xea\x5e\xfc\xd5\x78\xea\xd0\xe2\x1e\x1e\x42\xa8\xdd\x0b\x1b\x56\x21\x76\x63\x13\x2e\xdb\xc4\xf6\xa6\x3c\xba\x11\xb0\x16\x21\x94\x2b\x71\xc4\x9f\x37\xe0\x23\xf7\xb7\x47\x59\x3a\xf2\x78\x0d\x3c\xb3\xc3\x1a\x4e\x75\xb8\x09\x57\xd7\xb5\x89\xed\x47\xae\x6a\x84\x16\x09\x83\x4b\xf9\x64\xa2\x8c\xf8\xe5\x76\x2f\x5d\xed\xb1\x10\x8c\xa8\x9f\x7a\x20\xc3\x9f\x28\xdc\x45\x1e\x25\xcb\x4e\x60\x88\x37\x49\xed\x53\xf3\xfd\xe6\x0c\x74\x60\xa2\xa4\xe6\x99\xf3\xb6\x36\x89\x78\xbb\x89\xb8\x9d\x97\x23\x75\xfb\x4e\x1e\xcd\x4b\xa5\x35\xc9\xfb\xd2\x9b\x9d\x52\x5c\xa8\x23\xd8\x9c\xb1\x03\xfc\x09\x7d\x1c\xbd\xbe\xe3\x0f\x35\x58\x85\x7e\x4f\xbc\xc6\xc6\xe8\xce\x6b\xdd\x89\xde\xc1\x9b\x8c\xf5\xb4\x15\x37\xcb\x86\x45\x3a\x8a\x4d\x3e\xac\x56\x78\xa7\xde\xfd\x16\xe5\x4f\x7c\xdc\x00\xcd\xde\xdf\xce\x6c\x2c\x72\x6e\xb3\xbc\xd7\x92\x2a\x49\xfd\xb2\x51\xfc\x6c\x75\x34\x47\x38\x49\xd2\x98\xbd\xde\xb1\x84\x5e\x55\x5a\xfe\x57\x1f\xea\x3d\x3a\xca\xec\x4a\x94\x96\x79\xbc\x36\xad\x5a\xda\xe8\x05\x63\x27\xc0\x82\x2d\x56\xb4\xd5\xcd\xe0\x76\xdf\x6f\x52\x06\x7c\xc9\xa6\x23\x93\xf5\xa2\x57\xb1\x14\x32\xdf\x91\x2e\x5a\xb8\x8f\x5b\x6f\xfb\xc5\x17\xdb\xdd\x32\x8f\x12\x22\xbb\x3b\x73\xfb\xfb\x98\xe9\x7c\xa2\x9a\xf7\x51\x37\xfc\xa7\xff\xb0\x97\x26\xe9\xd2\xa0\x64\x10\x30\x80\x8f\x6f\x06\x9e\xf4\xfd\xa6\x9a\x7e\x99\x49\xc2\x34\x13\x29\x1c\xa7\x7a\xb9\xb8\xc7\xe9\xaf\x4d\x02\xfa\x9e\xa7\x22\x81\x4d\x7a\x1c\x01\x01\xd3\x71\x24\x50\x0a\x16\x47\x1a\x39\x57\x3d\xdb\xb7\x49\xce\x6b\x04\xbe\xff\x04\xd7\x04\x75\xf6\x82\x3a\xd9\xed\x26\x02\x39\x69\x89\x29\x68\xcf\x5b\x35\x2b\x82\xc6\x6b\x85\xaa\xac\x54\x5b\x45\x81\xd1\x87\x55\x6c\xc9\x82\x6d\x72\xe3\xa1\xc8\xed\xd8\x9a\x9e\x5b\xf5\x45\xed\xd5\x87\x0b\x0f\x26\xa6\xf3\x97\x29\x4f\xf0\x13\x13\x4b\xc4\x0f\x94\x42\xca\x0f\x26\xe2\xd9\xea\x6d\x9b\x62\xc8\x61\x9f\x44\x63\x35\x3b\x35\xc1\xe2\x9b\x38\xed\x17\x33\xd5\x8b\xa2\xc5\xea\x89\xcf\x6b\xb5\xc7\x53\xda\xea\x44\x3b\x2c\x43\xf4\x55\x84\x8c\xfd\x30\x20\xf1\xa4\x57\xb7\xf4\x61\xce\xa8\x3e\xcc\x19\xb7\xff\x0d\xcb\xb8\x88\x46\xb1\x9d\xf6\x09\xf8\x67\x3a\x9a\x4c\x82\xae\x83\xb8\xcd\x79\xc8\xd7\x7d\x65\xa1\xd9\xaf\xc6\x9d\x89\x72\x9b\xeb\x87\x73\x4a\x0b\x90\x9c\x6a\xa2\x19\xe7\xe5\xd2\x12\x09\xd0\x55\xf7\x8a\xda\xe6\x87\x0a\x5b\xfc\xa1\x77\xc0\xad\x5e\x7b\x2f\x4a\x29\x35\x06\x48\x00\x3e\x24\x28\x13\xb0\x47\x3c\x46\xc0\x9b\xaa\xe6\xbd\x92\xc6\xe5\xd0\xee\xf4\xa0\xbc\xdf\xa3\xa7\x87\x72\x05\x20\xf1\x78\xe1\x27\x02\xd5\x6c\x40\x57\x08\x9b\xdb\xff\x40\xab\x00\xc2\x94\x77\x03\x15\xe7\x1d\x6b\x62\x9b\x56\xd1\x51\x3a\x8c\xc2\x9c\x17\x51\xac\xf3\x35\x33\x0b\x40\x59\xf1\xab\x37\x54\x40\x1f\x66\xe9\xab\x11\x24\xa6\x16\x3c\xa6\x47\xa5\x33\x0d\x9d\xb3\x51\x6c\xa2\xa4\x88\xfa\xfd\x96\x72\x50\x3d\xab\x85\x0a\xbd\x7b\x58\xba\x9a\x14\xe9\x6a\x32\xe3\x07\xec\x35\xba\x4d\x16\x37\x47\x22\x2e\x68\x7f\xd5\x58\x3b\xa5\xdc\x0f\xa7\x95\xe8\x75\x98\x16\x05\x3c\x0e\xf7\x3b\xbf\xa9\x96\xf7\x9e\x52\x50\x81\x7e\x94\xd9\x5e\x4b\xa3\xe6\x54\x5b\xea\x92\xda\x64\x7b\xd6\xc4\x36\xcb\x1f\x51\x95\xdd\x73\x81\xf2\x2f\xbd\xa4\xfc\x4b\xf9\x4b\x50\xe1\x9b\x46\xdb\x0a\xb0\xf5\xfb\xb8\x7a\xad\xa6\xea\x7c\x8e\xf6\xc9\x92\x3b\x29\xbd\x34\x37\xb7\xd8\x1e\x56\xdb\x75\x91\x59\x03\x1d\x0c\x47\xd1\x77\x56\x90\x27\x1d\xa6\x69\x35\x1d\x9a\x24\xf2\x73\xac\xa9\x10\x20\xf6\x61\x23\xea\xc7\x2f\xee\xe1\x61\x7d\x92\x2a\x80\xca\xc3\x60\xc1\xd9\xcb\x68\x16\xcd\x6a\x44\x19\x5e\xcb\x03\xb5\x8f\x29\x0b\xdf\x63\x35\x23\xea\x61\x3f\xcd\x50\x8e\x46\x97\xff\x9d\xb1\x7f\x52\xa8\x00\x89\x63\x08\x0d\x2f\x64\x68\x1f\x4d\xac\xea\xfb\xe6\xdb\xab\x03\x53\xd8\x15\x9b\x4d\x51\xb0\xa7\x47\x94\x00\xe9\x28\xd1\xc7\x44\xb9\x3f\xb1\xbe\xee\x9d\x6d\x9b\x51\x15\xc1\x65\x91\xc7\x00\x88\x36\xb8\xe2\x45\x5f\x68\x30\x91\xf8\x56\x3b\x2f\xd2\xd8\xc2\x9f\x5a\x70\xee\xf4\x19\xf1\x73\x6b\xb8\x5e\x62\xc3\x47\x05\x07\x59\xa8\x17\xc1\x7d\x92\x8f\x27\x6e\x92\x94\x72\x93\x15\xbb\x96\x66\x53\xca\xa4\xeb\x84\xca\x6d\x6f\x29\x11\x8b\xb3\x0a\xa6\x31\x8a\x6c\xc8\x45\x4c\x01\x1c\xaa\x11\x49\x1f\x72\x8e\x8c\x4e\x25\x50\x2b\x0f\xc6\x76\x40\xdb\xc1\x41\x19\x93\x27\x03\x25\xa1\x7a\x72\xa2\x74\x79\x70\xcf\x6c\x3b\x34\x59\x8f\x0b\x39\x2d\x45\x16\xe7\xa2\x98\x00\x26\x3f\xaf\x4b\xfe\x2b\x36\x29\xa2\x34\xa9\x3e\xa1\x67\x8c\xba\xbe\x89\xbd\xf5\xc0\x0b\xed\xbe\xed\xd9\x0c\x6f\xad\x1a\x24\x28\xce\xbf\x1e\x28\x09\xa3\xd7\x35\x64\x25\xb2\x59\x66\xf0\x82\xf1\xaf\x68\x1b\xf2\x71\x47\xf2\x9a\xac\x1c\xa6\x19\xf0\x3b\xb2\x43\x57\xb7\x8f\x52\xd7\x79\x6d\xfd\x7c\x4f\x19\x18\x9a\xa4\x18\xa4\x09\xdc\x27\x30\x39\xa6\x3b\xbe\x3a\x38\x5d\xeb\x09\x3e\xb7\xfa\x5c\x4b\x21\x8b\x2f\x50\xfd\x58\xf8\x44\x2e\xbd\x4a\xcb\x64\xc9\x4e\x29\xf7\xec\x0b\xaa\x0f\xbf\xa1\xde\xdd\x29\xc7\x15\x2f\x93\xcc\xac\xd8\x58\xb8\x5a\x08\xea\x4e\xab\x00\xef\xb4\x72\xa9\x8b\x92\x7e\x9a\x0d\x09\x10\xb9\x13\x8b\x3f\x8a\x72\x8f\xad\xfb\x6d\xf7\x41\xa0\x93\x2f\xcc\x24\xc4\xeb\x10\xc6\xc5\xac\x42\xf9\x0c\x64\x2b\xee\x1e\x01\xbe\x76\xbb\xc9\x2f\xa0\x5b\x66\x91\x4c\x34\x64\x9e\x67\xf1\x2b\x7c\xa2\x10\xc6\x55\x7c\x5f\x66\x6b\x33\xad\xbd\xc2\x35\x7a\x1c\x18\x32\xf8\x9c\x9e\xa7\x01\x82\x2a\xfa\x17\x3b\x7e\xa7\xbf\xa4\x7d\x00\x9b\xb8\x76\xed\x97\xcb\xd4\x4d\x76\x01\x39\x28\x2c\xf4\xef\x2b\xbb\xf1\x6a\xd7\xc0\x1f\x22\x71\xfa\x39\x2e\x96\x4f\x14\xf2\x2b\x8c\xad\xa9\x12\xf3\x69\xcf\xfd\x01\x84\x41\xba\x58\xd5\x43\x12\x3e\x5b\x6b\x51\xaa\x7b\x6f\xb9\xfa\x90\x49\x8a\x88\x50\xb2\x3b\xe8\x1e\xd9\xda\x8d\x06\x9f\xd3\xfd\x17\x5a\xfc\xd7\xe1\x0f\xef\x5c\xe4\x17\xf7\x70\x72\xf0\x53\xb5\x67\x5c\xaa\x2b\x8f\x24\x76\xca\x2b\x1e\xb3\xc9\x37\x3a\x24\x33\x1d\xb5\x25\xdc\x55\xec\x93\x5e\x34\x8c\x12\x02\x0b\xd0\x12\x80\x66\xdf\x07\xd8\x02\xf8\x64\x22\x4c\x26\x74\x90\x09\x97\x67\x94\x83\xfc\x69\xdd\xb5\x43\x8a\x86\x54\x9b\xe5\xcc\x70\xbd\xb7\xc6\x5e\xbb\xff\x6c\xc3\xd0\xd9\x4f\x20\x3e\x7e\x6d\xac\x47\x10\x28\x39\xb4\xd7\x1e\xda\x49\xc9\xa3\x61\x14\x9b\xec\xa1\xd5\xcc\x49\x3e\x45\x3b\x34\x71\x3c\x35\xe1\x9e\x20\x0e\x64\x2d\x67\x98\xb7\xbd\xf3\x78\x8d\x7e\xfc\x68\xeb\x6b\x87\xb4\xaf\xc0\x2c\xef\x70\xcc\x97\xe5\x13\xaa\x57\xb3\xbc\x8e\x62\x71\x9d\x57\xc5\xff\xdf\x0a\x14\x56\xeb\xa8\x22\x51\xfe\x16\x5e\x1d\xe7\xcd\x74\x59\xf8\xa3\x8b\x13\xcf\x6c\x71\x0f\xc3\xe3\x5a\xde\x04\x58\xcb\xd7\x5d\xaf\x29\xc7\x16\x69\xc6\x60\x1e\x57\x54\x76\x65\x5d\xae\x97\xb3\xa0\x1d\x11\x0f\x50\x39\x86\x9e\x1d\xa4\xd7\x6e\xd1\x6d\x61\x12\xde\x41\xd5\xc8\xb9\xab\x7a\xa7\xae\xa9\x0e\xe1\x48\x11\x26\xde\x22\x24\x8b\x5a\x5c\x17\x38\x17\xbb\xaa\x4c\xb8\xd1\x07\x47\xd3\xea\x7b\x28\x48\xe0\xfa\x6f\x8e\x95\xf0\xd2\xb6\x75\x82\xfd\xf1\xf7\x22\x3e\xc6\xf0\xdb\xbe\x4e\x55\x64\x4c\x44\x46\xf6\x88\xfa\x53\x13\x54\x6b\x35\xc2\x96\xc7\x1a\x4c\x81\xd6\x63\xf2\xdd\xaf\x6a\x75\xca\x4c\xbc\xd3\x77\xaa\xf1\x2c\xf8\xb8\xa3\x16\x21\x16\x34\x10\x56\x47\xcb\xd1\xb9\x7f\xac\xed\xe0\xae\x04\x8a\x5e\x70\x65\xac\x6d\x72\xc2\x74\x68\x77\xd3\xbf\x22\x4a\xb8\xa1\x97\x38\x00\xb7\x5c\x69\xd8\x85\x5f\xd7\x30\xfe\x78\x61\xf6\x52\xeb\x6f\xff\x02\xd5\x8c\xa1\x10\xc5\x53\x53\x64\x86\xfc\xf6\x7b\x5f\x1b\xee\xdc\x47\x56\x85\x8e\xf0\xf6\x4e\x43\x6a\xb4\x9a\x66\xcb\xb4\xfa\x39\x08\xca\x1d\x45\x40\x67\x46\xa2\x93\x48\xf0\x94\xc8\xab\x2e\x67\xb2\x09\x19\x3b\xf0\xfc\x6e\x0c\xbd\x1b\x4c\x04\x86\x69\x52\x0c\xd8\x65\x1e\xd9\xe7\x1d\x6a\x53\xe9\x72\x90\x27\x74\x28\x9a\x5f\x31\x88\x92\x25\xea\x15\x22\x54\x7e\x17\x05\x04\x8d\xa2\x70\x76\x4d\xae\xf4\xff\x3d\x2d\x43\xf6\xbd\x86\xba\xde\x42\x7b\x39\x8b\xf2\x51\x64\x85\xc9\x8d\xf7\x75\x4c\x83\x2a\x26\xbd\x7d\xab\x58\xb2\x18\x64\xd6\x48\x5c\xc8\x95\x57\x1a\x79\x52\x85\x9d\x34\xac\x1e\xc5\xdc\x9c\x44\x01\x62\x93\xe4\x54\x70\xe3\x3b\x3a\x3e\xf3\x84\xed\x37\x02\x8c\x5b\x81\x62\x7f\xa1\xb5\x2f\x20\x21\xdd\x06\x1c\x0e\x0d\xc4\xcf\x10\xc9\xde\x55\x99\xd2\x5d\x85\xd6\xc8\x07\xe9\x6a\x11\x0d\xad\x12\x44\xfa\x36\x5d\xb3\x58\x4f\x37\x15\x19\x33\x3b\x4a\xb3\x02\x6b\xab\x74\x55\x7d\x7d\xfa\x3f\xea\xd4\xf8\xfc\xc4\xee\xb2\xb8\xa7\xfd\x6a\x14\x87\x03\xe0\x7d\xb1\xe7\xb1\xcf\x11\xe3\x0d\x14\x7f\x60\x92\x25\xf4\xe5\x76\x3e\x12\xb3\x7c\x24\xd5\xac\xf9\x84\x38\xed\xae\x0a\xc4\x2f\x21\x56\xaa\x87\x9c\x06\x8e\x89\x62\xfc\xa0\xcd\x21\xfc\xc2\x10\x25\xfd\x38\x0a\x81\x0e\x15\x93\x50\x5f\x7d\x3e\x3b\x91\x18\xbf\xf8\x62\xbb\x4c\xfa\x69\x99\x88\x88\x06\x47\x0c\x81\x0a\x3b\x2e\x8c\x75\xda\x99\xe7\x36\x2b\x5a\x8a\x04\x71\x49\x11\xd7\x2f\xb9\x12\xbd\xe9\xad\x44\xa1\x9d\xf6\xff\xf4\x59\x54\x4a\xdc\x8a\xb0\xb8\x47\x1c\xdb\xd7\x7d\x28\xa5\x99\x9c\xdd\x38\x5d\x4d\xb4\xc4\x17\x37\x51\x05\x55\xba\xf5\xfd\xfe\x72\x3b\xb3\x71\x64\x92\x10\x78\x6e\x64\x27\x47\xd4\xaa\xf2\x5d\x6d\x05\x71\xb2\x31\x41\xca\xaa\xa0\x83\x45\x0a\xc4\x20\xd9\x97\x20\xce\x3c\xb4\x1e\x6c\xcb\x2c\x1d\x59\xc3\x84\x2e\x66\x91\x07\x9e\x41\x74\x42\x59\xb8\x87\x26\xe7\xe7\xe7\x0c\x2e\x9c\x70\xef\x64\xcd\x91\x80\xcb\x69\x58\x3d\x76\xae\x39\x3a\xc7\x89\xea\x2b\xf8\x44\xf5\x44\xd3\x15\x9b\xb1\xf4\xb5\x03\xae\xf8\x86\xee\xbf\x1a\xab\x78\x97\xb5\xe2\x10\x49\x6f\xef\x54\x4b\x97\xe3\xe3\xce\xcd\xf1\x40\xfe\xc2\xba\xa7\x3c\xfe\x36\x15\x59\x50\x3a\xfe\x58\xad\xf6\x33\x8a\x72\xfc\x39\xe8\x63\x23\x44\xb8\x81\xe9\x81\x85\xed\x41\xe0\x63\xf5\x9f\x60\x2b\x45\xb0\x32\x05\x9a\x39\xaa\x10\x1f\x01\x76\x88\x2b\x6c\xad\xab\xb8\x9f\x11\x15\xd8\xc9\xdf\x25\x98\x10\xab\x0b\x29\x44\x1c\x3b\x2f\x23\x82\xbd\xe5\x52\x9a\x81\xed\x2d\xc9\x03\xc4\xcc\x7d\x6d\xac\xa6\xf1\x6b\x4d\x58\xcb\x90\x40\x2c\x34\x5f\xb1\x63\x3e\xd2\xf1\xa0\xac\xed\xeb\x74\xcd\x58\x8d\x4f\x6b\x4d\xc6\xb4\xcc\x68\x27\xc2\x86\x75\x81\x85\x9c\xd8\x33\x0c\xe4\x1f\x31\x10\xf3\x58\xf2\x0b\xda\x09\xc2\x84\xcb\x9c\xc0\x3e\xef\x82\x25\x3f\x47\xae\x3b\x1e\x70\x98\xc6\xb1\x5d\xb2\xbc\xda\x4b\x62\x42\x6f\x9b\x4f\x14\x00\x6d\x94\x8a\x31\xa9\x34\xe3\x54\x63\xae\xa1\xb9\xb4\x50\x2d\x0c\x51\x1c\x4b\x17\x0c\xe1\x3a\x84\xcb\xf8\xb8\x06\xaf\xca\xc3\xe8\xe1\x82\xca\x8a\xa4\x62\xed\x72\x9c\xd6\x5d\x9d\xfe\xcd\xd8\x13\x06\xff\x8d\xaa\x71\x45\xc9\x92\x89\x63\x7e\x10\xc2\x08\x50\xc2\x49\x93\x81\xfa\xdc\x5c\x3b\x2d\x8b\xd8\xf2\x04\x13\xbc\xa8\xa7\x61\x68\xb8\xa8\xe9\xf7\x2d\xb0\xd3\xde\x2a\xed\x2c\xfa\xe7\x7c\xd2\xe4\x23\x32\xb0\x46\xe4\x2e\x50\x50\x3b\xa2\xe0\x73\x47\x14\xd4\x2e\x49\x93\x32\x71\x1a\x7c\x2c\x12\x10\xf8\x3e\xcc\x1f\xd5\x76\xbd\x22\x2a\x5a\x8a\x4c\x76\x31\xa0\x9a\x92\x60\x05\x9b\x24\x68\x73\x5b\xf7\x3f\x3e\x1b\x78\xba\xd0\x24\x71\xc2\x63\x3f\x86\xb6\x87\x36\x84\x98\x3e\xb7\xfe\xdb\xfd\xce\x3e\x64\xca\x7b\xc0\x1d\x6f\xd2\x23\x5a\x22\x1f\xf6\x9a\xa7\xd1\x15\xe5\x69\x74\x45\x79\x8b\x93\x21\x62\x4e\x35\x54\xc6\x84\xeb\x9c\xe4\xb0\xce\x24\x00\x92\x57\xb3\x5c\xaa\xab\xd7\x9a\xd2\x8a\x25\x6b\x1c\xb4\x8c\x45\x27\xe8\xb1\x8a\x00\x85\xa7\x28\xda\x15\x9b\xad\x75\xd3\xde\xda\x2e\x7f\x89\xef\x29\x9e\x0c\xd1\xca\x16\x19\x55\xfa\x21\x2d\x68\xce\x2f\xbc\x1a\x73\x02\x37\xf5\xb6\x27\xd7\xc7\xaa\x88\x73\x96\x16\x34\x04\x3d\x0f\x30\x70\xf8\xab\x26\x36\xff\x83\x7b\x9e\x6f\x8f\xc2\x2d\x96\xdf\xf4\x04\x44\x94\xd5\xcf\xd4\x6e\xb4\x4c\x74\x31\x11\x31\x84\x9a\x3b\x1f\x2b\x6c\x46\x37\x4d\x05\x86\x80\xf9\xa0\x35\x11\xb6\xaf\xab\x72\xb9\x40\x4a\x0f\x8a\x2e\xcd\x9f\xd3\x43\xe0\xe3\x26\xab\xf5\x38\xcd\x8b\x19\x3d\x9e\x14\x91\xea\x8f\xe0\x55\xe2\x7c\xd2\xaa\xcc\x07\xbb\xcb\x51\x1a\x0a\xc0\x74\x6e\xef\x3c\x4c\xe4\xa0\xa0\x7d\xbd\xfa\x3e\xc4\x8e\x67\x75\x27\xeb\xac\xd2\x6f\x35\xf1\x4a\x94\x4c\xe9\x58\x16\x53\x19\xf9\x10\x63\x5c\x91\x4a\x68\x1e\xd2\xd0\x1a\x72\xab\xa8\x9e\x1a\x0a\xb1\xec\xc9\xc2\x27\x6a\x80\x44\xd5\x0a\xdf\x35\xc9\xf2\x8c\x0a\xc0\xaf\xa8\x00\xfc\x70\xcd\xd6\xf4\x86\x26\xd1\x32\x06\x55\x3a\xcd\x4f\xaa\xc6\x62\x41\xc0\xac\x96\xd3\x71\xf8\x99\xd6\x71\xf8\xd9\xc4\x62\xbb\xb8\xa7\x6d\xbb\x65\x1c\x47\x02\xc7\x13\x22\x58\xf5\x0d\xc2\x03\x6b\x68\xaa\xae\x44\x49\x2f\x0a\x8d\xb8\x9d\x34\x7a\xbb\xa9\x0d\x20\x8a\xe3\x7c\x46\xbd\x2d\xb0\x3a\x64\x5d\xa4\x77\xca\xff\xa0\x18\x3b\x3f\xa1\x7d\x56\x84\x66\x1a\xb4\x90\xe2\x34\xcd\x6d\x86\x88\xdd\xd9\xc4\xb9\x84\xe8\x9c\xc6\x1e\x67\x4b\xe5\xd0\x26\xc5\x0e\x05\xa4\xbd\x5c\xe3\x87\xd3\x6a\xa6\x51\x20\x02\x9a\xf0\xc1\xee\x1f\xd7\xf5\x78\x27\x83\xec\x7e\x5c\xa6\xdc\x19\xd2\x92\x7c\xe2\x52\xf6\xa4\x5a\x9f\xac\x59\xb6\x00\x86\x63\xf5\x06\x8c\x87\x8f\x15\x9e\xe9\xbf\x89\x32\xaa\x63\xe3\x55\x7c\xac\x8a\xdf\xc8\x6c\x11\x04\xfd\xa1\xa6\x16\xdd\x50\xdb\x98\x4d\x96\xe2\x08\x42\xcd\x0b\x5a\x4a\x4d\x4c\x64\xfe\x98\xbe\x50\x6e\xaf\x5a\x09\xf9\x8f\xc6\xaa\x50\x6d\xb2\x6c\xad\x9f\x66\xab\x24\x5a\xd2\x72\x4a\xe5\xd7\x95\x52\xf9\x75\x15\x05\xf6\x4d\x88\xa1\xe4\x5a\x43\x9e\x9b\x73\x6e\x22\x9d\x9b\x3d\xd0\x4e\x13\x3b\x45\xb1\x09\x1e\xf9\x87\x2a\x81\xfe\x80\xa0\xd2\x02\xf6\xf5\xa6\xeb\x2f\xa5\x2b\x26\x49\x57\xa2\x70\x80\xc7\x8d\x37\xfe\xb6\x22\x04\xbf\x3d\xd1\x39\x9a\x3d\xd0\x8e\x7a\x36\x8d\xd3\x25\x27\x06\x06\x28\x17\xe2\x6c\x3e\x9e\x78\xad\xcf\x3e\xdb\x5e\x4e\xec\x2a\xbd\x2b\xec\x1f\x1b\x7a\x33\xd9\x50\x02\x33\xc3\x34\x89\x8a\x34\xab\x36\xb9\x6a\x07\xe5\x72\x58\xe0\x2a\x10\xfb\x2f\x29\xfa\xec\x6f\xa8\xce\x10\x35\x82\xf3\x62\x67\x75\xb3\x98\x13\xf7\x03\x65\x4b\x7f\x8a\x5e\x35\x92\xcb\x16\x72\x19\x79\x4d\x4a\x60\xea\xfb\xda\x7e\x91\xde\x2b\x50\x1d\x1b\x13\xee\x3d\xb2\x1a\x2e\xa5\xb1\x4d\xba\x24\xc9\xb3\x28\x1e\x87\x27\xb5\x41\xc0\x49\xe5\x45\x38\x32\xd9\x32\xcf\x76\xac\xc5\x58\x23\xf8\x78\x22\xb7\x9f\x9b\x6b\x9b\x18\x39\x51\x4b\x81\x96\x61\xea\xc0\xc7\x0a\x9c\x52\x65\x81\xd9\x12\x69\x9b\x61\xa3\xd2\x0e\xa3\xa2\xea\x39\xb9\x0e\x3d\xdf\x1e\x9a\xd8\xac\xe5\x11\x37\xef\xb1\x58\xbc\xa9\x29\x08\x6f\x36\xed\x31\x2f\x95\xc3\xd1\x94\x6f\xca\xa3\xd6\x25\x3f\xd3\x72\x46\x6d\xbf\xae\xd5\x83\xb3\xe5\x27\x94\xb9\xf3\x77\xab\xd7\xba\xf9\x26\xa8\x04\xa2\x6f\xa7\x56\x22\xed\xa3\xf1\x17\xda\x15\xab\xb5\xee\xfb\x7f\x57\x91\x8a\x88\x97\x00\x5d\x35\x4d\x28\xfb\x34\xaa\x85\xd8\xd3\x37\x3c\xbc\xfc\xe2\x93\x1d\x45\x36\xe5\x12\x00\xc7\x0a\xaa\x06\x2e\x7c\x7a\x69\xaf\x6c\x9d\x75\xf3\xf3\xed\x41\x5a\x28\x03\xe5\xdb\x0a\x86\x3b\xd5\xa1\xd9\x28\xad\x33\x65\xc6\x92\x75\xa7\x3c\x97\xe6\x4e\xe0\xdd\xdb\xb5\x5d\xf2\xe9\x06\xf9\xf9\xc5\x76\xda\xef\x93\x85\x1b\x36\xb0\x63\xca\x39\xf6\x4d\x45\xee\xfc\x4d\xe5\x1e\xf3\xde\x44\x25\xa2\x5a\x61\xd7\xa6\x26\xd4\x4d\x44\xf9\x4c\x91\x96\x2e\x37\x80\x52\xbe\x45\xd2\x77\x85\x6b\x05\xbb\x3a\xb4\x2b\x73\x4d\x8e\xe2\xf9\xf9\xfd\xed\x22\xab\x92\xa2\xde\xc3\x71\x3d\xde\x39\x1d\x34\x1e\x9b\x14\x26\x9e\xae\xd5\x5a\x3c\x4f\xae\x85\x56\x0e\x62\x9b\xb7\x14\xd6\x63\xa6\xb3\x35\xd2\x3e\xb4\x80\x40\x16\x35\x23\xe7\xf6\xe0\xb1\xe0\x1b\xd8\x90\x58\x29\x75\xfc\xa8\x9b\x4d\xcf\x3e\xd3\x7a\xf6\x59\xe7\x12\xd2\x52\xa2\xc9\x94\xe0\x8a\x63\x88\x62\x20\xfe\xba\xca\x63\x0f\x8f\x95\xbd\xe4\x1f\x6a\x87\xae\xef\x6b\x7b\xcb\x19\x64\xdb\xce\xc2\xc9\xdb\xdf\x9e\xa9\x23\x16\xaa\x49\x21\x60\x64\x0c\x4b\xf4\x9b\x76\xac\x7b\xec\xfe\x31\x6a\x82\x60\x2c\xde\x43\xc7\x4d\xf1\x97\xc5\xac\xf7\x15\x1a\xe2\xb8\xf9\xdd\x80\xde\x08\xe6\xcd\x09\x47\xc3\x2c\x32\x4a\x96\xea\x80\xfe\xea\xf6\x94\xc4\x9e\xe4\x7f\xf0\x73\x10\xce\x8e\x8f\xf0\x36\x34\x39\xcb\x24\xa6\x17\x99\x64\x5a\x05\x8e\x1f\x2a\x8a\x2a\x84\x0a\xb1\xf0\x5e\x51\x8b\xf0\x15\x07\x1b\x1a\x98\xd1\x68\x6d\x97\x6a\x06\x5c\x84\x76\x2e\x56\x01\x06\x17\x68\xca\x32\x85\x0c\x3f\x6e\x77\xd4\xf2\x7e\x46\xa1\xb4\x08\x7f\xf7\x2d\x51\xcb\xc0\x4b\x91\x14\xa4\xba\x51\xf1\x26\x90\xdf\xcf\x57\xad\x29\x76\x78\xd0\x2b\xfb\x62\xb9\x8a\x8b\xb3\x45\xfc\x48\x89\x1e\x5d\xc1\x9b\xe7\x7f\x08\x94\x54\xfe\x39\x77\x63\xdd\xb2\xd7\x63\x41\x4e\x5c\x0c\x16\x02\x3e\x6e\x10\xec\x6a\x8f\xac\xcd\x30\xa0\x45\x1e\x84\xbe\x18\x33\x05\xd6\x37\x08\xb0\xee\xea\xc2\x86\x29\xe3\x19\x25\x0a\xca\x3a\x00\x2c\xa1\x1e\x28\x1f\x83\xdb\x63\xad\x24\xfa\x8e\xe2\x65\x5f\x0c\x04\xe7\xd1\xab\x16\x7f\x55\x8e\x81\x2b\x35\x4a\xa1\xe0\xda\x0a\x9c\xae\x89\x9b\xe5\x11\x78\x0c\x13\xd1\xd2\x55\x27\x27\xc2\xd4\x43\x0b\xed\x30\x36\xd1\x90\x3f\xa3\x74\xef\x16\x9c\xee\xdd\x04\xaf\xee\x85\xfd\xed\x7e\xe9\xa4\x86\x10\x4f\x7f\x47\xb5\x7d\xbf\xa3\x5b\xf0\xdd\x32\x8f\x56\x00\x30\x76\x78\x24\xaf\x37\xa4\xaa\x7f\x59\xda\xb3\x53\x5a\x28\x66\x5b\xa7\x9e\xe0\x28\xe2\xd2\x15\x57\xbe\x5a\x35\x59\x6e\x56\xa7\x3d\x38\xe5\x92\x8a\x19\x39\x7f\x42\x19\x6f\x47\xc7\x3f\xc7\x4b\x63\x9f\x8d\x67\x65\xb7\x2b\x61\x3a\x73\xd3\xb0\x6d\x0a\x51\xcd\x37\x28\x4c\x37\xcd\x9c\x8e\x98\x8c\xbc\x96\x73\xea\xfc\x68\x62\x6b\x59\xdc\xd3\x2e\x4c\x37\xaf\x15\x35\x03\x5f\xe0\xbd\xa0\x3a\xff\x2f\x97\x36\xaf\xbe\x9b\xe8\x18\xb3\x07\x1c\xc3\x81\x16\x1b\xd7\x5a\xdf\x37\xbf\x39\xb9\x0d\xec\x9b\xa7\xe2\x91\x7f\xf5\xd8\x65\x3f\xc2\xcc\xe3\x13\xd5\x3d\x1f\xa6\x45\x8e\x52\x3d\x52\xb4\xb7\xe8\x91\x49\x91\xc1\xcb\x4f\x5e\x69\x92\x35\x4d\x57\x6c\x66\xe2\xb8\x55\x5d\xa3\x93\x41\x72\x8b\xd4\x85\xa6\xc2\xd3\x4a\xea\xb7\x35\xe7\x80\x32\x3f\xef\x7c\x52\xbc\x8b\x77\x3e\xb2\xe4\x4a\x51\x45\x72\x8e\xf7\x78\x8d\x16\x30\x3e\x56\xda\x3b\xbf\xfa\xab\xf9\x0e\x8c\x10\x2c\xd2\xe7\x94\xc2\xe0\x1d\x4a\xce\xb0\xd0\xc1\xd4\x02\x11\x3e\x4b\xc1\x23\x22\xda\x81\x05\x4c\x0c\x2b\xa5\xe5\x65\x96\x32\x6b\x9d\x30\x08\x66\xc1\xbd\xc0\x37\x3b\x81\x70\x80\x13\xe7\x79\x07\x14\x20\x54\xcf\xd0\x56\x5b\xab\x13\x85\xba\x8f\xc9\x27\x3b\x71\x8d\xf6\xe2\x1c\xd1\x8e\x37\xb9\x70\xdb\xb8\x67\x33\x06\x27\x8b\x5c\x81\xc7\x76\xdc\x71\xc3\x7f\x94\x81\xa1\xe0\x0b\x69\x1f\x07\xca\x68\xe0\x63\x95\x64\xda\x15\x13\x97\xa6\xb0\x10\xb1\xe5\x30\x30\xf0\x6c\x9f\x4b\x0d\x01\xec\x7c\x95\x5e\x8d\xac\x7f\x7d\x2e\x08\xf5\x71\x6f\x93\xcd\x77\x98\x0e\x87\x65\x52\x65\xe0\x32\x5b\xb0\xb2\xff\x87\xc0\xaf\xf2\xff\xa1\x69\x1c\x9b\xb2\x48\x93\x74\x08\xc8\x8e\x00\xb6\x7c\x86\x72\xcc\xdd\x78\xd7\xfa\xae\xa4\xd0\x3f\x34\x17\xe4\xa1\xa8\x03\x1e\xbf\x8f\xb4\xbe\xf9\x75\xde\xe8\x3f\x50\x86\x17\xa8\xd7\x4b\xe7\xbb\xb5\x77\x2f\x17\x8d\xfe\x7b\xaa\x05\x22\x00\x05\xcb\x0e\x21\xcb\x65\xaa\xfb\x3b\x37\xd3\x6a\x38\x49\x47\xa4\xa9\xcb\x46\x10\x17\x9e\xa4\x2c\xfc\x18\x28\xc8\x59\x9d\xf5\x37\x2a\x61\x16\xcf\xae\x7d\x8a\x0e\x77\xb6\xc1\x2d\x6e\xa1\xa6\x88\x2e\x11\x58\xcb\xa9\x12\x6d\xa8\x25\x2f\x34\x71\x6c\xc9\xde\xc8\xfb\xaa\x54\xbf\x84\x8d\x79\xfb\xba\x46\x1e\xbd\xaf\x36\x3d\x46\x48\x22\xdb\x3f\x1c\x28\xeb\xdb\x9f\x28\x39\x14\xbe\x25\x64\x51\x3f\xc0\x43\x01\xc2\x16\xe5\x13\xc4\x44\x57\x27\x1e\xd0\x57\xda\x89\x05\x8b\xae\xe5\x63\x42\xa4\x71\xd2\x6d\x75\x93\xad\x84\x5c\x46\xf6\x48\xf5\x8a\x1c\x08\xd2\x57\xab\x99\x1a\xe5\x56\x1b\x2f\x6c\xab\x55\x78\x37\xd9\x41\xcc\xb9\xc0\xbb\xbe\xcd\xad\xb1\x1b\x07\xff\xdd\x2f\x76\x9e\x51\xd0\x3b\xd3\xb3\x59\x3e\x88\x46\x64\x51\xec\xca\x33\xd5\x2f\x73\x79\x86\xbe\x05\x3d\xde\x1f\x8f\x95\x33\x1b\xa2\x07\xac\x3c\x6f\x2b\x69\xb6\xbe\xc9\x86\x8c\x78\x46\x4c\x8b\x2d\x85\x8f\x1b\xfb\x0f\xb9\x4d\x4c\x91\x66\x82\x0f\xc6\xa0\xb8\x19\xa8\xcc\x94\x99\x5a\x18\xc8\xdb\x27\x68\x3c\x84\x9a\x4f\x5f\x59\xa3\x5d\x6f\xf3\x72\x75\xb3\x9b\x97\x27\x96\xee\x7d\xf3\x1c\x1c\x4c\x29\xd5\xcf\xfb\x08\xa5\xb5\x16\x82\xc8\x0d\x6c\x5d\x3f\xf6\xcd\xb7\xe3\x6a\xcb\xac\xae\x15\x33\x1a\x29\xd8\xbf\x0e\x3c\x53\xee\x5f\x6b\x9d\xf2\xe1\x28\x4b\x57\xd8\x78\x58\xb7\x00\x81\xec\xdb\xde\xf1\x4d\x6c\xd4\x1c\x9c\xa4\x8d\x17\xbd\x7f\x53\xb5\x31\x42\x1b\xc5\xae\xde\x88\xe1\x88\xf8\x95\x8f\x27\x02\xc0\x03\x2f\xb4\x7b\x99\x59\x9d\xf2\xc8\x4a\x7e\xa8\x48\x36\x3f\xd6\x6c\xde\x9a\x04\xcb\x5a\x92\xc6\xd5\xe6\xeb\xfd\x6f\x39\x5c\xe1\x93\x89\x8e\x79\x95\xef\x0d\xcb\x10\xb6\xeb\xb8\xf2\x1d\xa4\xbb\xa1\x11\x12\x68\x32\x7f\xa6\x81\x0a\xb7\xd0\x36\x43\x93\xa3\xed\x2d\xf6\x53\xde\x18\xfe\xfc\x43\x17\xbf\x95\x28\x4b\x5f\x2e\x8d\x52\x7c\x64\x2c\xaf\xcc\x5c\xc9\x53\x92\xb4\x88\x42\x6b\xba\xdc\x18\x93\xdb\xf0\xbc\x96\x4b\x0a\x1f\xdf\x67\x7f\xe6\xea\x49\x69\xbf\x7d\x01\xbf\x4c\x26\xca\xc9\x73\x03\x65\x70\x78\x56\xc3\xde\xce\xba\x40\x38\xca\xd2\x04\x92\x01\x8e\x82\x32\x2f\x9d\x77\x20\x29\x50\x14\xbb\x3f\xf6\xe8\xae\x3f\x73\x2d\xc0\xd8\x2c\x2d\xb9\x4d\x5c\x2c\x20\xab\x0f\xa1\x0c\xf9\x28\x2d\xf4\x88\xab\x66\xd6\x27\xc5\xb4\x16\x5c\xe7\xba\x8e\x19\x79\x43\x63\x46\xde\xd0\x6a\xa4\x20\x55\xe7\x08\x24\xa5\x95\x4e\x23\x82\x4f\x9a\x9c\x25\x32\x1b\x66\x00\x1e\x57\x6b\x29\x0a\xac\xdf\x0f\x54\x0f\xed\xfb\x0d\x42\x5f\x0b\xed\x28\x79\xb9\x8c\xb2\x48\x1e\x7a\x53\x9b\xeb\x69\xb5\xc0\x84\x45\x5a\xfd\xf1\xb4\xa7\x0f\xfe\x0e\x42\x7c\x2d\x93\xd5\xc8\xe1\xd7\x48\x34\xb3\x92\x4e\xd7\x5a\xa8\xf5\xee\x6a\x35\x4e\x90\xba\xa3\xef\xc7\xc7\x8a\xe0\x41\x3d\x85\x15\x9b\x70\x9d\x0e\x91\x15\x48\x57\x7c\xdc\x24\x98\x90\xd9\x15\x9b\xb1\x14\x1d\x52\xfb\xbb\x74\xf1\x9b\x2c\x45\x2e\xf0\xd2\xad\x1f\x3d\xb4\xd0\xfe\xc5\xaf\xff\x93\x85\xaf\x7f\x75\x7e\x5a\x81\x49\x18\xf0\x8c\x2d\xe3\x3a\x5d\x34\xff\x83\xae\x37\x5c\x0f\xfc\xe3\x5b\x1d\x44\x45\x61\x96\x99\x55\x89\xed\xe5\xb6\xa2\x8f\xde\x56\x0d\xaa\xe5\x34\xb3\xd0\xd4\x95\xd8\xb6\xba\x6a\xd9\x85\xf4\xe6\x1e\x9b\x61\x4b\xd1\xd8\x8f\x06\xbe\xdc\x77\xb4\x01\x89\x54\x2d\xd7\x04\x46\x99\xf2\x94\xac\xbb\xea\x31\x5f\x18\xab\xa6\xdf\x19\x17\x25\x15\x24\x98\x31\xed\x25\xcd\xd9\xe7\x4f\x23\xf8\xb0\xe9\x4f\x75\x34\x21\xd6\x07\xd9\xcf\x7e\x95\xa5\x2e\xc4\xfb\xbd\xe6\xf1\x5e\xb3\x88\x7f\x4a\x85\xf1\x26\x49\x44\xdc\x40\x01\xcd\x1d\xea\x5c\xcb\x7a\x98\xac\x18\x74\xa9\xb2\x5a\x5d\x26\xca\x50\x37\xb4\xbf\xfb\x8d\x89\x57\x3b\x37\xb7\xd8\xee\x9a\x7c\xd9\x16\xc0\xde\xa3\xe9\x78\x52\x41\xb1\xf1\x82\xc4\xae\xb5\xf6\xe0\xa3\x57\x14\xe2\xf4\xa6\x06\x36\xdd\x54\xe9\x58\x66\x97\xd8\x1e\x2f\xaf\x59\xfc\xe3\xc2\xc4\x17\xca\x73\xe2\x41\x4b\x47\x51\x68\x63\x4c\xe2\x48\x7c\x32\x11\xab\xcd\x1e\x68\x27\x86\xc4\xef\xb3\x29\x1a\xc1\x52\x6d\xf5\xa1\x27\x23\xda\x04\xe2\xbd\x75\x09\x98\x3d\xd0\x8e\x12\xbb\x12\x15\xa6\x1b\x23\x58\xc2\x24\x84\xa5\x02\x1f\xab\x15\x60\x39\xea\x25\x66\x34\xb2\x4c\x55\x68\x76\x90\x54\x46\x91\x93\x6d\xb8\xc5\xb6\x09\x8b\x68\x25\xca\xd1\x3b\xc1\xfd\xff\x9c\x7e\x8e\x8f\x6b\xfb\xc1\xd0\xc4\x56\xd7\x5d\x50\x28\x97\x82\x90\x5f\x34\x47\xb1\xc9\x0b\x5a\x34\xab\xa9\x20\x2e\x60\xd5\x2f\xf0\xb1\x72\x36\xeb\x65\x70\x0d\x46\x05\xec\xf2\x58\x61\x1f\x3e\x09\x3c\xf4\x17\x25\x12\xac\x5f\xef\xa9\xcc\xf1\x88\x7a\x1e\xe9\xb3\x61\x9a\x24\xb6\xca\x62\xf7\x0a\xcb\x0f\xcf\x4e\x6a\xc4\x4a\xe2\xde\x90\x66\x67\x6b\xf6\xc0\xe6\xfb\x94\x7f\xbf\xaf\xd6\x86\x38\x7a\xb9\x8c\x7a\xe2\x5d\x8a\xfa\xe0\x36\xe5\xab\xbe\x6d\x7d\x6b\x9b\x87\x45\x2a\x8b\x2c\x0a\x9d\xe1\x38\x52\x96\x9b\xaa\xd4\x7b\x58\x61\x99\x2f\xa8\x02\x44\x9c\x76\xbb\x6b\x4e\xf2\x1a\x3b\xc4\x2d\xcd\x61\xba\xe5\x76\x70\xea\xf0\x13\x9c\x92\x8a\x23\x35\xc3\xd6\x9a\x3c\x3f\xc2\xd6\x9d\xeb\x8e\xa0\xf5\x2b\x4f\x76\x14\xd6\x0c\x25\xb4\xea\x0f\x9b\x4a\x68\xaa\x97\xf7\x8a\xcd\x28\x6f\x5f\x14\x25\xd5\x4f\x6a\x16\x4e\x92\x5d\x17\x03\x9b\x62\xe7\xaa\x66\x95\xa3\x5b\x56\x63\x45\xe0\x85\x2a\x22\xcc\xac\x73\x59\x90\x3e\x65\xad\x81\xd9\xc4\x28\x85\x94\x5f\xd1\x52\xde\x3e\x3f\xd2\xae\xd9\x3f\x6a\x6a\x33\x9b\x7e\x61\xa9\x87\x48\xab\x37\x6e\xef\x9e\x1a\xb5\xf7\xd4\x3e\x66\xf2\xbc\xcc\x0c\xc5\x3c\xad\xba\xdd\xf5\xac\x2b\x5e\x4b\x10\xb3\x14\x1b\xac\xd9\xf8\x6d\x56\x3f\xd7\xdc\x11\x2c\x13\xc7\x1b\x18\x11\xfb\xdb\xb1\x29\x6c\x36\x53\x3d\x46\x94\x35\x7e\x40\xd3\x14\x9d\x23\x12\xd5\xdd\xbf\x79\x19\xd3\x18\x93\xfe\x70\xe0\xe1\x1c\xda\xbd\x38\x4c\x93\x28\x27\xa2\x5d\x95\xfb\x3b\xf8\xe3\x3e\x07\x85\xac\x89\x5b\x2d\xd9\x9c\x21\xe7\xc0\x41\xfc\x1c\xb7\xe6\x7a\x29\x5f\x3b\xe4\xfc\xe2\xe8\x25\xba\x3a\x71\xf5\xe5\xd8\x42\x2e\x6b\xf9\xe2\x6d\x9d\x2a\xb2\xc5\x2b\xbb\x87\xf7\xc7\x2e\x7b\x81\x2f\x89\x30\xe1\x0e\x49\xe7\x93\x68\x23\x22\x30\x3e\x3c\x6e\x1d\xdc\xb3\x79\x58\x0b\x1e\x40\x94\x03\xe5\xfc\xed\xe4\xf6\x8e\x65\x7f\x1d\x01\x17\xff\xec\xba\x9a\x25\x8f\x50\xf2\x80\x67\x0d\x4b\x2d\xf4\x0c\x4e\x4c\x34\x62\xab\xc5\x8e\xdd\xa7\x64\x0b\x73\x6d\x38\xdf\x92\x73\xa9\xe8\x52\x66\x7a\xa5\xb0\xd4\x9c\xac\xef\x58\xcb\xfa\xaa\x36\x65\x37\x8b\xc2\x65\x66\x60\x39\x98\xad\xdb\xa9\x2e\x2a\xea\x5e\x91\xc6\x96\x06\xd9\xb4\x22\xdb\xd5\x90\xd7\xb7\x14\xfd\xe0\xb5\xea\xda\x36\x8f\x37\x74\xfd\xa3\x7e\xc4\x35\x01\x04\xee\x6f\xe8\xc4\xe4\x0d\xe7\x37\xd9\xcf\x6c\x3e\x00\xa3\xfc\xa0\x10\xee\xcf\xaa\x36\xed\xd9\x86\x5a\xe0\xac\x2b\x03\xcf\xcd\x71\x14\xf0\xa1\xea\x88\x7e\xd8\x24\xcd\x33\x34\x59\x61\x5f\x51\xe5\x9d\x5a\x5d\x77\x32\x25\x9b\x3d\xd0\xae\x16\xb2\x1d\x7e\x7b\xda\xdd\xf1\x9d\x86\xa7\xd6\xbd\x86\x28\x6c\xd6\xf1\xc8\x1f\x20\x84\x16\xf8\x52\x4d\x56\xfd\x29\x55\x07\x2d\x93\xc2\x44\xc9\x8e\x1a\xa2\xc8\xe5\x8a\xa7\x54\x58\x7c\xaa\x86\x34\x52\x9c\xb9\x2b\x3a\xae\x99\x2c\x98\x92\xca\x1e\x59\x36\xd2\x73\xc5\xcc\x3d\xae\x60\x34\xc7\x9b\xac\xf5\xf2\x32\x49\x50\xfb\x73\x78\x14\x87\x5a\xbe\xae\xc8\x0e\xc4\x7c\xe7\x68\x1a\x69\x29\x4c\xc4\xf9\xb8\xc1\xc4\x24\x8f\x72\xd1\x07\x61\xde\x0f\x41\x18\x84\x03\xd4\x94\x6b\xf4\xa2\x7c\x44\x26\xab\x58\x50\x45\xd7\x45\x8b\xbc\xb8\x78\x33\x8f\xd3\xd1\x08\x57\xee\xbe\xde\xd9\x7f\x5d\x6a\xea\xc2\xdb\x57\xe0\xf3\xa6\xe4\xca\xae\x2b\xad\x7b\xb8\x69\x88\x38\xb3\x9f\x47\xd4\x79\xcc\x90\xdc\xb9\xe4\xd4\xd5\xba\x2e\x2a\x4f\xe2\xdf\x76\x4e\x87\xbd\x74\x68\xab\x68\xc3\x08\xdc\x13\xb3\xe8\xed\xc0\x63\x2c\xdf\x56\x34\xab\x32\x89\xaa\xc4\x23\x2a\x40\x75\xc3\xe6\x84\xcd\x1d\xa8\x82\x99\x75\x45\xf7\x60\xe9\x77\x6c\x16\xdb\xd7\x3d\xae\xf2\x94\xeb\x46\x65\x76\x25\x4c\xa7\xbd\xe1\xc6\x9d\xb1\xe2\x8e\xbc\xa1\xda\x16\xbc\xc7\x81\xe3\xb3\x63\xc2\xe7\xe5\xc0\x0b\xed\xb8\x4c\x96\xa6\xbc\xa2\xda\x15\xfa\x30\x0a\xfd\xf0\xab\x40\x54\xf7\x7a\x93\xa0\x78\x51\x66\x4b\xec\x12\xe3\x54\x80\xe7\x05\x3c\x3e\x89\x80\xd9\x3b\xdb\x1e\x3d\x37\x9c\xf2\xc5\xe7\x07\x81\x47\x65\x9f\xd1\xe9\xc4\x55\xdd\x8b\x0f\x97\x1f\xa7\xe1\x82\x6c\x9b\xa5\xb3\xf0\x46\x9e\x50\xa9\xf7\xd3\xdc\xe3\xc1\x52\x0e\xf1\x04\x6c\x3a\xd3\xeb\x35\xc9\x00\x7a\x54\xd8\x35\xd8\xd7\x10\x45\x21\xa8\x79\xa2\x99\x7b\x0d\x15\x49\x11\x46\xf7\xb2\x98\xd7\x03\xd5\x83\x7c\xa0\x70\x5b\x93\x8a\x1c\x54\xbc\x1e\xad\x65\xd1\xd2\x40\x68\x1f\xc2\x96\x6a\x39\x39\xd2\x73\x4a\x0f\x3b\x2f\xbb\x69\xd6\x8b\x92\x6a\x0b\xd8\x41\xe3\x91\x25\xf9\x02\x1f\xb4\x6c\xea\xbd\xed\x38\xdd\x24\xba\x2d\x4f\x74\x54\x1b\x06\x4a\xc9\x72\xdc\x20\x03\x41\xae\x53\x6b\x5a\x08\x06\xe5\x2c\x65\x0f\xc5\xa1\x98\x09\x8b\x29\x65\x45\x80\xc2\x07\x3a\x20\x80\x6a\x33\xd1\x6f\x7d\x6b\x69\xe6\xd9\x67\xdb\x23\xa4\x32\x68\x20\xb0\x49\x14\x9f\x28\x18\x55\xd7\xe6\x05\x8d\x65\xcc\x8b\xe3\x4a\x70\x01\x73\x44\x8a\x1e\x1e\x31\xb1\x6d\x5d\x62\x53\x2a\x04\xc4\xe9\x88\x57\x22\x09\x26\x5b\xce\xb7\xf9\xac\x4e\x26\xe3\x74\xc5\x2c\x47\x4c\x12\xc6\x46\xc9\x4e\x48\x7c\xa2\x1a\x48\x23\x9b\x85\x76\x84\xae\x83\x93\x32\x3d\x4c\x17\xc1\xc7\xc1\xc3\x34\xaf\xa4\xf7\x44\x9f\x9d\x3d\x50\x93\xa6\x14\xad\xba\xad\x2f\xe5\xcb\xed\x97\xd2\x81\x49\x9c\x2f\x78\xe3\x16\xdb\xb0\xc0\x87\x69\x5e\x18\xae\xde\x3a\x92\x97\x0b\x25\x1f\xe8\xc5\xf5\x4a\x63\x05\xd8\x14\x45\x9a\x25\x56\x64\x76\xc4\x15\xc6\xef\xd7\x17\xb5\x1b\xeb\x7d\xe7\x62\x3f\xca\xd2\xc2\xb2\x0d\x98\xd8\x26\x55\x3f\x2c\xa6\x42\xfe\x49\x0e\x4d\x94\xf4\x33\xf2\x67\x50\xca\xd2\x08\x1a\x1f\xa6\x41\xff\x8d\xd9\x76\xcf\xf6\xa3\x24\x2a\x6c\xb5\xc4\xba\x6a\xd3\x6f\xa8\x8e\xc9\x6f\x34\x72\x53\x47\x62\x36\xd0\x28\x68\xa0\x55\x0f\x5c\x97\x2e\x2b\xa2\x30\xb6\x39\x5a\xe5\x2a\x6d\x16\x27\x71\x94\x54\x04\x03\x31\x59\x80\x9d\x6f\x77\xe3\xd2\xd6\xa1\x80\xd5\x08\x13\x28\xa0\x4a\x01\xed\x92\x09\xd7\x58\x4d\x8e\x13\xa9\x40\xe9\x51\x4f\xb2\x99\xe7\xe6\xda\x79\x61\x9d\xbb\x9d\x84\xf8\xd5\x6f\xf1\x71\xe0\xf5\x79\x0a\x1b\x0e\x12\x07\xfc\xa3\xb8\x99\x65\xae\x10\xcd\x8a\xe6\xd5\xd6\x40\x95\x56\x04\x93\xe4\x7d\x9b\x65\xb2\x3b\xff\x7f\x91\x0f\x9a\xaf\xc6\x5f\x99\x15\x36\x67\xd1\x2a\x61\x51\x7a\x7c\xc9\xc5\x40\xbc\x98\x6c\x0e\x41\x19\xf4\x30\xaf\xab\xde\xfd\x7b\xe8\xb7\x39\x4d\x4f\xcf\x9d\xff\x60\xac\xd8\x33\x9f\x36\x2d\xb1\xa6\x18\xa6\xf9\x68\x60\x33\x38\x79\xe0\x4a\x37\x02\xdf\x39\x39\xaf\x16\xb6\x53\x4d\x71\x64\x61\xb3\x21\x13\xa0\xc5\xb6\x5e\xe1\x41\x8e\x69\xd1\xad\x38\xea\x41\x01\x43\x20\x9c\x7f\x36\xf6\x99\xcf\x9f\xa9\x4e\x4c\x66\xa2\x9c\x08\x9d\xd2\xe7\xbc\x4a\x8f\x84\x59\x68\x8a\xdf\xb1\x93\xa8\x9a\x88\x02\x18\x24\x87\x59\xcc\xd8\x7d\xb1\x50\xa8\xee\x47\xbc\x42\xe8\xbd\x0a\xa5\xc5\x23\x29\x11\x20\x49\x04\x4b\xcf\x0d\xa5\x83\xf7\x5d\x25\xbb\xa8\xf6\x22\xee\x05\x23\xfb\x40\xb5\x86\x8f\xdd\xdc\x5e\x35\x31\x09\xf6\x61\x49\x40\xc7\x6d\x43\xb7\xdf\x36\x5c\xb4\x6f\x43\xe2\xc9\x46\xe1\xb4\x97\x43\xd8\xd6\x51\x6e\x76\x1f\x68\xe7\xb2\xd3\x63\x35\x8a\xcf\xbb\x19\x18\x0e\x0c\xd9\xc8\x51\x14\xb6\x09\xf9\x24\xb4\x92\x11\x22\x88\x88\xe4\xd6\xa9\x77\xe0\x05\x84\x6f\xf4\xf2\x9c\xf0\xb4\x17\xa1\x9e\x28\xf7\xed\x9b\x6f\x8f\xca\x2c\x2f\x23\x26\xaf\x48\xc9\x53\x95\x3f\xab\xbc\xc1\x05\xc5\x69\x6e\xc3\xb2\x48\xb3\xc8\x00\xa6\xc0\xb1\x8a\x02\x5e\xf8\x0a\xe9\xd0\x66\x4b\x55\x20\x59\x4d\x34\xdc\xe0\x9b\xea\xa5\xb7\x3a\xaa\xe0\xbd\x6d\xdd\xaf\x8e\xfd\x2c\x1a\x8d\x2c\xea\x18\xd5\xea\x88\x38\xe3\x0f\x68\x75\xe4\x63\x55\x6f\x32\x65\x31\x48\xb3\xa8\x58\x9b\xf6\x44\x03\xa6\xa9\x39\x39\x26\x57\xba\x44\x77\x4c\x5c\x7c\x77\xb9\x3d\x9d\x42\x30\xc1\x8e\xfb\x58\xf7\x13\xca\xc7\x11\xbd\xdd\x70\x2f\x78\x60\xb3\x64\x42\x3b\xe5\xe7\xf4\xcd\x7c\x3c\xb1\x2c\x90\x5c\x76\x66\xc2\xa8\x4e\x41\x3a\xa5\x28\x48\xa7\x02\x2f\xcf\x1f\x72\x16\x2b\x4a\x71\x3e\xa8\x39\x32\xf6\xd2\xa8\x71\x5a\xf6\xf2\x91\x35\x44\xdb\xf2\x18\x3a\x90\x5f\x85\x6e\xe5\x57\x5a\xfb\xca\xc8\x66\x85\xca\x1f\xb8\x5d\xcb\x27\x81\x3c\x0d\xf3\xa5\xe9\xed\x5f\xe2\x59\xf3\x19\xc5\x7b\x3f\xa3\x95\x69\xb6\x13\x7d\x12\xb0\xd6\x33\x4d\x22\x6a\xa6\xf7\x52\xe9\x51\x04\x08\xca\xaf\xd1\x8d\xf0\x71\x43\x21\x7e\x56\xca\x4b\x53\x9e\x2c\xc3\xc5\x77\x94\xf9\xa1\x49\x2a\xa6\xfb\xfe\xd6\x4c\x58\x45\x16\x58\x5d\x78\x66\x04\x4a\x95\xfe\x1e\xe5\x61\x4a\xdd\x6b\xbf\x7b\xbf\x4a\xc0\xf1\xe2\xd8\x47\x26\xa7\xc6\xde\x8a\x08\xc9\x0f\xeb\x98\xa9\x70\x7e\xdb\x7a\x6b\x71\xcf\xe6\x79\x6d\x65\x71\xc3\x87\x89\xc5\x20\xe5\x10\x17\x0f\xec\xbb\xea\x55\x7f\xb7\xc9\x37\x79\xb0\x36\xb2\x19\x15\x82\xb1\x6f\xba\x89\xa5\x12\x82\x27\x94\xdd\x77\x16\x96\x3c\x4a\xb0\x17\x20\xc9\xe1\xe3\x40\x37\x50\x97\xc8\xc6\xb9\xa5\xb8\x34\x90\x24\xe6\x63\x25\x9d\x3c\xca\xd2\x24\x2d\x93\x50\xd8\x69\x02\x39\xf3\x5a\x0a\xdf\x69\x78\x6d\xf3\x2c\x4f\x57\xa0\xe2\x8e\x44\xfe\x82\x4a\xf0\xb9\x30\x27\xc4\x78\xbf\x3b\x97\x49\x3f\xcd\x8a\xb2\x8a\xef\xe3\xb5\x29\x9f\xc4\xa3\xe1\x85\x57\x71\x97\xe6\xbd\x28\x92\x37\xec\x77\xf6\x95\x81\x29\x73\x0f\xa3\x91\xaa\x9b\x22\x20\x2b\x60\x53\x91\x26\x8f\x54\x3f\xe4\x50\xf9\xae\x9e\x3c\xb3\xee\xb3\xc4\x19\xf2\xe7\xc2\xd6\xf9\x1d\x6d\x7b\x38\x56\x04\xd2\x0f\x31\x94\x30\x34\x67\x94\xc2\xec\xbd\xcf\xaa\x22\xaf\x8d\x6d\x58\x70\x28\x89\x48\xaa\x26\x35\x7e\x37\x50\x9b\x88\xc6\xc3\x45\x49\xdf\x0c\xd3\x32\xd7\x0a\xa9\x1b\xaa\xa8\xb9\x11\x7c\x4e\xc9\x92\xe7\xd1\x52\x82\x8e\xca\x94\x87\x57\x1f\x57\x8d\xfc\xd7\x31\x8f\xb0\xf4\x9d\x9f\x08\xb6\x17\x5e\xd8\xdf\x1e\xa4\x23\xcb\x70\x04\xdc\x20\xcb\x5c\x4b\xe3\xaa\xe5\x1c\x0f\x4e\xa9\x64\x25\x1f\xa4\xab\xbb\x95\x2f\xfb\x65\x6a\xcb\xa1\x93\x0c\x00\x32\xb6\x9e\xe3\x28\x61\xba\x72\xdf\x3e\xc1\xba\x5c\xa6\x79\x87\x0f\xfc\xa7\x9a\x5f\x20\x54\x13\x10\x73\x9f\x54\xb9\x02\x84\xff\x51\xc1\x67\x1b\x50\xb1\xc9\x7b\x5a\x8b\x2c\x85\x36\x2b\xd2\xbc\xa5\x15\x8f\x75\xbd\xaf\x09\x93\xd1\xb5\x49\xb4\x04\x42\x01\x22\x5d\x48\x6a\xf2\x71\x13\x33\xb3\x9b\x26\xa5\x46\x41\xbc\x17\xf8\x81\xff\x9e\x8b\x33\x46\x04\x6e\xa9\x39\xd0\xdc\x52\x23\x94\x65\x50\xd1\xa0\xd8\xde\xf1\xbc\x92\x92\x6e\xc2\x44\x09\xbd\x56\xf6\xb5\x0b\x34\x72\x89\xee\x08\x11\xe4\xe9\x26\xde\xe2\xa8\xcc\x07\x75\xab\xaf\x8f\xb5\xd5\xd7\xc7\x13\x01\xe0\x97\xdb\x43\x9b\xe7\x59\xfe\x1c\x0f\x5a\x67\x2c\x33\x37\xb7\x9f\xdb\x29\x9c\x00\x89\x88\x8d\xca\x27\x8b\xcc\xb0\xfa\xca\x82\xab\x7a\x54\xaf\x5a\xaa\x21\x5b\xf3\xad\xb9\x39\x12\x2c\xce\x7a\x5b\x64\xda\x4e\x29\x99\xb6\x53\xea\xad\xda\x57\x46\x26\xc9\xa3\x34\xd9\xe1\x67\xc2\x0f\x03\x25\x69\x78\x47\xbb\x1d\x01\x8d\x8e\xb4\x97\xc5\x7a\x9d\xfa\xb6\xdb\xbe\x66\x3a\xbb\xdd\xea\xf0\xcd\xd1\xb4\x0f\x64\x4e\xd0\x20\xc5\xab\x7f\x17\x77\x8c\xf1\xb7\x8d\xc8\xe9\x98\x57\xf7\x5c\x53\x28\x4c\xb3\xac\xa4\xf4\x78\x4a\xad\xfb\x97\x14\xac\xfa\xbe\xea\x20\x9c\x6b\x90\x57\x7b\xbe\xbd\x94\x99\x10\x61\x3b\xea\x19\xd7\x6b\x44\xb5\xea\xd2\x18\x89\xe3\x41\x8a\xe5\xab\xaf\x72\x9f\x12\x35\xb1\x2b\x8a\x77\x7c\x65\x22\x1f\x3c\xf0\x42\xbb\x9b\xa6\x79\x41\xf1\xa1\x94\x11\x55\x18\x70\xa9\xd6\xac\x30\xa6\x8b\x2c\x06\x8d\xa6\xb3\x08\xab\xf8\x64\xe2\x06\x48\x48\xa6\xca\x81\xa7\x5a\xdf\x98\x75\xd3\x56\x39\x29\xb0\x55\xa1\xf0\xd0\x27\x79\x1a\xed\x51\x66\x96\x86\x86\x84\xc8\xe7\xe6\xbc\xa6\xa3\x6f\xe4\xbd\xeb\x6e\xbc\x9a\xa8\x43\x8d\xb6\x41\x71\x4e\x4c\x53\x1e\x46\x7c\x32\x43\x9b\x45\xa1\x49\xc8\xfb\x61\xf3\x4d\xc6\x8c\x63\xcf\xe2\x8a\x11\x4e\x1e\x5f\x6f\xd2\xbf\x1b\xda\x5e\x64\xb4\x64\x05\xc6\x85\xe8\x57\xe8\x66\x78\x12\x99\x19\xcf\x51\x39\xa5\x6b\x06\x57\x54\x1b\xf6\x06\xe3\xe4\x04\xfa\x44\x37\x8b\xb6\xcd\x03\xaf\x6b\x91\x15\xfd\x32\x56\x06\x4c\xac\x4a\x21\xc5\x5b\x87\xf6\x0f\x6d\x02\xa1\x50\x04\xc2\x3b\x61\x3a\x09\x2c\xcf\x5f\x63\xdf\xc1\xae\x76\x4f\x29\x0c\x3d\xd3\x69\x88\x47\xa8\x8e\x64\xd5\xbe\x0a\x64\x3c\x96\x74\x3e\xf6\x9d\xb8\xcc\x0c\x5b\xaa\x3e\x80\xee\x06\x1f\x4f\x14\xee\x0f\xbc\xd0\xce\xd3\xa1\x1d\xa4\xab\x2d\x5f\x47\xbc\x47\xc3\x9b\x8f\x9b\xa4\x68\x69\xdc\x4e\xd1\x2a\x24\x68\x74\x65\x6f\x70\x58\x49\x6e\xdc\xaa\xbd\x07\x9b\x75\xb1\xfa\x49\xff\x59\xc9\xcf\x9e\x9e\x68\x72\x52\xa4\x9e\x17\x66\x59\xf0\x3f\xf8\xca\x73\x4a\xd8\xf2\x5c\x93\xd2\xf7\x30\x0a\xb9\x2b\x8f\x9e\xfd\x5d\xd5\xbf\xbf\xdb\x30\xd4\x29\xed\x0a\x07\x26\xd7\x9e\xc2\x75\x3f\x31\x4f\x12\x2c\xca\x61\x37\x16\xd5\x3f\x6e\xdc\x31\x42\x48\xda\x78\x4d\xba\x73\x99\xaf\x92\x48\x65\xa5\xa5\x6c\x9f\xfc\x1e\x3e\x32\x59\xf1\xb8\x57\xfb\x62\x1d\x48\x26\x4f\x80\x6a\x8d\x28\x67\x1b\x25\xe7\x0a\xac\xf8\xad\xcd\xcb\x1a\x6e\x4d\x88\x5d\xa6\xc4\x61\xb2\xfb\x10\x72\x61\x13\x1e\x7b\x08\x41\x9e\x5a\x57\xe1\x2a\xa8\xdd\xfc\x13\xeb\x4a\x05\x6c\xb2\x09\x5d\x8d\x9d\xb2\x5b\x66\x5d\x03\x6f\x26\xd1\x7a\xa8\x2e\xc2\x71\xe2\xbd\x62\xd1\x55\xd5\x92\xea\xd9\xc2\x44\x31\x2a\xc9\x0b\x1e\xd7\xb5\xe8\x79\xa3\x2d\x07\xde\x7e\x3b\x50\xc9\xc4\x29\x95\x72\x9f\x42\x4b\x58\x21\xc1\x5c\x75\x34\xb1\x45\x66\x0a\x3b\x4d\x9f\x44\xaa\x7f\x0d\xfc\x7c\x54\x3c\x80\x18\xe6\x7f\xc0\xd7\xf0\x3f\x78\xec\x6d\x16\xad\x18\x14\xf8\x16\xf7\x38\x23\x26\x25\xf6\x78\x51\x8b\x64\x65\x26\x4a\xf2\x1d\x9a\xbd\x55\xed\x4b\xe8\x18\xdf\x0c\x6a\x1c\x29\xcf\xf2\x04\xd6\x59\x0c\x75\xb4\xd0\x4d\x43\x31\xb4\x9d\x44\xe1\x32\x69\xd0\x41\x03\x5c\x2a\xc8\x34\xa6\x24\xb8\xaf\xbe\x0f\xe1\xf1\x64\x35\x69\x7e\x7e\xa1\xdd\x37\x65\x62\x5a\x55\x26\x8d\x05\xe1\xa4\xae\x24\x9e\x0c\x3c\x8a\x3e\x2f\x6c\x16\x93\x46\x95\x73\xb7\x7d\x14\x4b\xb2\xe0\x13\x7c\xfe\xf8\x33\x5a\x2e\xd0\x8a\xd9\x50\xdc\xb0\x4f\xd4\x0b\xb7\x49\x11\x15\x91\x48\x1e\xa3\x02\x80\x98\x98\x8f\x03\x1f\x6e\xdb\xa5\xb5\x51\x11\x99\x44\x0b\x3c\xdc\xc0\x52\x21\x66\x91\x8a\x53\x1e\x77\x4d\x62\x79\xea\x3a\x5a\x97\x37\xbd\xb9\xa8\xd2\xee\xbc\x30\x49\x68\x67\x3c\xd9\xe0\x14\x6b\xb3\xa0\x7a\xca\x60\x6a\x3e\xa1\x81\xe6\x22\xbb\xea\x4a\x30\x23\xff\xb4\x41\x1c\x70\xa1\x1d\xc6\x65\x37\x9f\xd6\x80\xf2\xf3\x81\x5a\x82\x6e\xd1\xb7\xc9\x04\xd1\x2a\x95\x4d\xc2\xc8\xdd\x34\xcb\x94\x6d\x93\x7b\x5a\xae\x76\x72\x5c\xa9\x6c\x80\xae\xbb\xa3\x7a\xec\x8c\xdb\xc7\x20\xc5\xd8\xbb\x4d\xe3\x10\x94\xbb\xef\x8f\x7d\x2c\x4d\xae\xaf\x9b\xa7\x55\x72\xf7\xa9\x1b\xf9\xdd\x2c\x35\xbd\xbc\x60\xc9\x42\x17\xdb\x57\x5f\xca\x27\x8d\xb8\x7c\x13\xc7\xe9\xaa\x14\x68\x11\xf4\x1c\xc3\x83\xe3\x13\xb7\x45\xe5\x36\x29\x76\x56\xdf\x0d\x9a\xe8\x17\xd7\x6b\xad\x7f\x0d\x25\x74\x98\xfc\xf7\x7f\x01\xdb\x27\x95\x4d\x7f\xf7\xef\x77\x3c\xfd\xf4\x97\xda\x1d\x85\xf6\xda\xb1\xfe\x84\xea\xdd\x84\x66\x68\x1f\xa1\x35\x53\x38\xfd\xad\xbd\xb3\xde\x59\xe2\x90\x73\x05\x3d\x49\xeb\x01\x73\x04\x68\x08\x3b\x19\x10\xed\x53\x43\xaf\x43\x18\x31\x3e\xdc\xd9\xd9\xd9\xda\x4d\x3c\xb4\xd0\x1e\x98\x9e\x46\xed\xf1\x18\xc2\xb8\x63\x7c\x03\xc2\xcf\xfb\x81\x27\x87\x15\x26\x5e\xa6\x36\xbd\x70\xdf\x7c\x4b\x60\x7a\xdd\x37\x3c\xdf\xa5\x4b\x44\x0d\xfb\x91\x8e\x22\xa6\x72\x07\x50\x18\x75\x9f\xdb\xc2\x89\x2d\xd1\xf6\xa1\x1f\x47\x9e\x72\x18\x1d\x08\x3e\x69\x92\x4c\x35\x34\xbe\x76\xd2\x67\x84\x19\x5a\x5d\x15\xa6\xc9\xe3\xb4\x0b\xe1\x3d\x9e\xa5\x45\x5b\xe1\x6b\x45\xda\xfe\x24\x0d\x42\xfc\x03\x4c\x03\x18\xbe\x30\x51\x02\xa5\xcd\x38\x36\xa1\xec\x95\xd2\xf2\xf3\x44\xb4\x4b\x3e\x8f\x23\x0b\xc9\x7c\xaa\x66\xca\x48\xbf\x8a\x1d\x70\x53\xed\x27\x97\x14\x8d\x71\x18\xc5\xa8\xc0\x6c\xc2\x68\x79\xf3\xbc\x42\xb6\xc2\xaa\x88\x36\x04\xc4\x9e\x6c\xd9\xca\x27\x6a\x95\x22\x6e\x46\x18\xaf\x4d\xd3\x86\x89\x64\xfc\x3d\x6c\xd0\x7c\xa2\x98\xd9\x17\xe9\x09\x08\xed\xd0\x57\x4c\x59\xd3\xdd\xf6\x66\x54\x93\xe1\x1a\x7d\x50\xb0\xab\xf4\x1c\x44\xac\xdd\x33\x26\x90\xcb\x89\xe7\x8f\xa7\xf0\x77\xe3\x34\x5c\xee\x96\x04\x7f\x98\xf2\xce\x58\xe7\xb4\x97\xd6\xb9\x89\xf9\x2b\x21\x79\xaf\x44\xc8\x8a\x77\xd5\xea\xb4\xbe\xf9\x75\xd7\x5c\xa4\x47\x8b\xc2\x11\x4b\xf4\xc8\x72\xeb\x91\x1a\xab\xd5\xcd\x64\xc9\x2e\x5f\x6b\xb8\x39\xf6\x86\xbf\x9b\xe8\x21\x20\x7d\xd8\x50\x1c\x5d\x78\x26\x8a\xc1\x91\x7a\x14\x47\xf0\x43\x7c\x12\xa8\x89\x7e\x0f\x23\x9d\xbf\xab\x41\x6e\x67\xb6\xdd\xb5\x00\x04\x61\x10\xde\xc4\x57\xf1\x89\x7e\x91\x59\xba\x12\xf5\x6c\xbe\x93\x2e\x0e\xc1\xce\x27\xb8\x5b\x3e\xd1\xf3\x1e\x60\x39\xa4\xdb\x6f\x6b\x95\xca\x63\x9a\x9e\xf1\x43\x55\xd5\x3b\xae\x23\x93\x2c\x7d\x09\x92\x53\xd5\x54\x11\x80\x5b\xf5\x84\xf8\xb8\x86\xe1\xb5\xc9\x12\x77\x39\xb0\xee\x9e\xd1\x8b\xf0\x99\x26\xc0\x6d\x94\xf4\xa2\xcc\x86\x5a\x44\xe6\x63\x25\x22\xf3\xb1\x16\xf2\x8b\x56\xd2\x2c\x44\x77\x42\x30\xec\x0a\xcf\xae\xc0\x5c\x79\x34\x1c\xc5\x16\x44\x6e\xa4\xe3\x77\xf1\x78\x9c\x02\x85\x13\x8b\xb9\xa2\x54\x43\xd8\x85\x18\x13\xf0\x46\x23\x3c\xd8\xae\x0e\xd2\x92\xf7\x6e\xe7\x97\xe8\x39\x12\x17\xd5\x45\xa4\xd9\x92\x49\x50\xdc\x71\x1d\x25\x85\xba\xf6\x8f\x38\xb7\x76\x18\x25\x4b\xf1\xda\x0e\xba\x60\x11\xae\xa9\x55\x97\xe9\x7d\xa2\x03\xf7\x8e\x6a\x48\x33\xb8\x45\xd4\x99\xaa\xf1\x29\xa9\x78\x53\x4c\x4f\x1e\x44\x53\xaa\x77\x39\xd5\xf1\x5a\xc8\xbf\x8f\x70\x13\xb9\xcd\xf4\x04\x00\x61\xdf\x7c\xbb\x1c\x51\x70\x85\x14\x7e\x93\x16\x08\xa0\x48\xa0\xa7\xe5\x6a\xb7\x8b\x7b\xf8\x71\x6c\xd2\x54\xa2\x95\xee\x17\xbf\xd0\xf9\x6c\xdd\xbd\xb7\x0a\x42\x5e\x7c\xf1\xf3\xf4\x5e\xa4\xfd\x47\x77\x83\x64\xf6\x1a\x76\x3b\xe4\x03\xe7\x54\x6e\x00\x36\x29\x3a\x79\xdb\x3a\xad\x67\x9f\xe5\x79\x3b\x40\xe2\x81\xfb\x47\x0d\x1e\x25\xaf\xff\x87\xb3\x1d\xac\xf9\x7f\x15\x78\x16\xc0\x4d\x04\xd2\x4e\x4a\x60\xaf\xb0\x14\x6f\xd3\x85\xcb\x85\x54\x37\x87\x11\x72\x25\x68\x1d\x12\xf4\x37\x7b\xfd\xe0\x37\x0e\x43\x21\xc1\xa9\x54\x7c\xf3\xeb\x8e\x77\xeb\x69\xbb\x27\xb0\x1c\x20\x1e\x3d\x1a\xa8\xe4\xff\xfb\x78\xf6\x7c\x21\xae\x59\x94\x0f\x32\x6f\x4c\xf4\x3c\xef\x98\x70\xb9\xe6\x63\x45\xd2\x4a\x52\x16\x82\x5c\x5c\x70\x06\xf3\xd5\xad\x8a\xb8\xa7\x02\x9d\x0e\x84\x05\x70\x70\x8f\x2f\xb4\x29\xd8\x91\x57\xa6\x50\x3e\x83\xd3\x8a\x7d\xcf\x51\x38\x9f\xd0\x13\x65\xac\xb4\xf2\xd3\xb8\xa9\x1a\x09\x36\x8e\x96\xa2\x6e\x0c\xc6\x83\x22\x62\x49\x25\x1b\xd0\x14\x84\x33\x78\x11\xd2\x9e\x7d\x52\xd9\x90\x44\x3d\x92\xd7\x9f\x97\x9e\xd0\x9f\x6b\x13\xae\x3f\x0f\x9e\xae\x0f\xb0\x5f\x6e\x3f\xfb\xec\x4e\x8f\x89\xbd\x49\x8d\x1c\x11\x35\xf4\x5d\xec\x6f\x63\x5d\x46\x11\xf8\xfd\xb1\x92\x0b\xf8\x1e\x0d\x22\xfe\xf4\xd8\x23\x35\x3f\x6d\x00\x2d\x7c\xab\x6d\x0d\xda\xf6\x82\xb2\x44\x13\x41\x58\x7f\x4a\x03\xad\x0a\x56\x5b\x6a\xec\x30\xc8\x9a\x4f\x02\x25\x5f\x50\xc6\x31\x3d\x30\x71\x9c\xa8\x9e\xad\x88\xfb\x2a\x39\xd3\x73\xda\x1c\xbf\x5e\x84\x2b\x12\xa3\xdc\x24\xc1\x45\x13\x55\xf5\xad\xeb\xdb\xaf\xb4\x33\x3b\xca\x6c\x15\xeb\xa2\x37\xc4\x46\x49\xf8\x76\x71\x4d\xda\x15\xb5\x47\x99\xed\xff\xe7\xed\xe5\xcf\xaa\xf2\xd0\xe3\xd4\xf3\x70\x85\x53\x37\xe4\xb7\xa1\xf2\xeb\x40\x51\xb3\x07\x9c\xb6\xbe\x1a\x4e\xf7\xb0\x5f\x61\xcf\xbd\x8c\xc7\x01\x98\xd2\xa3\x1d\x95\x52\x3d\x0e\xe5\x10\xf6\x97\xe6\xea\x1b\x26\xff\x26\x3d\x6c\x34\x42\x6e\xab\x5d\x61\x57\xa7\x7a\xe9\xc8\xee\xae\xe3\xdd\x22\x4e\xfe\xe2\xba\xef\x18\xb1\xc9\x21\x5f\xbd\xa2\x29\x40\xa1\x1a\x43\x66\x27\xd5\x6d\xd9\x7a\xb0\xd1\xd9\x2c\x29\x87\x5d\x72\x90\xd5\x02\xd8\xf4\x8c\x04\xbb\xa1\x90\xea\xbd\x5e\x54\x50\x6b\x6d\x46\xe9\x21\x9e\xc4\x73\x70\xbe\xff\xd5\xad\xa3\xfa\x0b\x15\x0f\xfe\x87\x40\xa1\xbe\xff\xac\x51\x55\x39\x1c\x98\xea\x5a\x84\x87\x8a\xa7\x7c\x56\x33\x9a\x2f\xd5\x24\xa0\x9a\xc4\x01\x86\xb6\x30\x31\xd7\xb1\xc4\x42\xd8\x2b\x0d\x9d\x38\xaf\x70\xf7\x69\x16\x2d\x01\x68\x87\xfa\x05\x16\xea\x99\x8e\xc7\x8d\x1d\x1d\xfb\xae\xec\xcf\x34\x0a\xeb\xae\xc7\x0d\x85\x61\x49\x25\x90\x96\xb3\x93\xdb\xde\xf1\xe6\x94\xd7\x54\xce\x8e\x76\x12\xc6\xfb\x9f\xa8\xa2\x46\x6c\xd6\xd2\x92\xa9\x47\xd2\x99\xf6\xeb\x0a\xcc\x62\x10\x14\x9d\x76\x41\xb9\xa1\xc8\x13\x6e\xb9\x58\x8c\x61\x74\xc1\xc7\x9d\x67\xea\x5a\x53\x71\x94\x20\xd4\x7f\xde\x19\xae\xfb\xeb\xbd\x58\x0f\x86\x46\xc5\xa3\xb4\x87\xe1\x4d\xdd\xa4\x3d\x0c\x83\x97\x85\x3c\x30\x76\xff\x57\xb5\x23\x1d\xa7\xd0\x4a\x94\x64\xab\xbb\x67\xbd\x58\x1a\xdf\x18\x0b\x1f\x8c\x3d\x4a\xf8\x06\xc6\x82\x44\xae\x53\xde\x6f\xfa\x53\xe5\x4b\xd2\xb7\x71\x6c\xc1\x76\xc0\xb2\x0a\x2e\x4e\x6d\x24\xa0\x2c\xfa\xe9\x58\x67\xa3\xd5\xdd\x52\x60\x26\xf5\x23\x5d\x4c\x6a\xb0\xc4\xdb\xdf\xee\xda\x7e\x9a\xb1\x65\xa7\xb8\xaa\x57\x3f\x85\x6c\xf6\x67\xaa\xd6\x72\x3d\xd8\xea\xe3\x46\xf0\x39\xe7\x2e\x43\xed\x48\x0c\x5f\x91\xcf\x55\x4a\x94\x1b\x1a\x89\xbb\x6d\xa2\x04\x5d\x65\x81\x71\x4c\xa4\xf5\x54\x1c\xfa\x10\xaa\x9c\x51\x26\xf3\x67\x1e\x6a\x37\x3b\x4a\x73\x47\x02\x02\xb8\x9d\x5d\x9d\x81\x6c\x38\xa2\x77\x89\x49\x82\xc8\xc1\x3d\xed\x22\x1a\x5a\x46\x06\x39\x0d\xcf\x45\x19\xca\xef\xd5\x86\x89\xc9\xc2\x29\xd5\x87\xbb\xa9\xad\xfd\xfe\x25\xd6\x0f\x1c\xdf\xd4\xc2\x84\x64\x18\xc3\x80\x48\x1e\x0a\xf4\x70\x65\x58\x3c\xed\x11\x9d\xc4\x57\x10\x3e\x1a\xf7\xc8\x03\x4f\x57\x39\xaf\xf4\x07\x48\xc7\x17\x03\xc5\x8d\xcd\xbd\xe2\xaa\xc9\x94\x3c\x6c\x94\x37\x15\x8a\x66\x18\x85\x59\x9a\xa7\xfd\x62\x47\x75\x35\x78\x5e\x57\x08\x3e\xa5\xe9\xd9\x4e\x42\x74\xc1\xff\x11\x72\x79\x51\x69\xa8\xae\x89\x3f\xd1\x24\x70\x52\x64\x64\xea\x36\x4d\xa1\x92\x34\x2f\x7c\x0b\xfe\xbc\x92\xf1\xb8\x82\x80\x19\x03\x67\x67\x47\xca\x38\x85\x59\xb6\x8f\x29\xba\x09\x3d\x31\x44\x0f\xdb\x88\xe4\x2d\x1e\xf0\x4c\xe0\xa9\xbe\x1c\x9b\xd2\xd5\xb1\xd2\xd5\x7b\xa2\x53\x2f\x71\x57\xef\xcb\x79\x8e\xd4\xc1\x22\xde\x8c\xa9\x9a\xcb\x28\xa8\xfe\x02\x15\x14\xa4\x91\xd5\xa4\x93\x1b\x9a\x2c\xe3\x3c\x4a\x0a\x23\xf4\x5d\x7c\xa2\x40\x17\x61\x3a\x1c\xd9\x98\x3c\x6c\x28\xab\x17\x68\x3b\xed\xba\x22\x23\xd6\x64\x3b\x54\x64\x69\xd9\x8d\x6d\x9e\x0e\x81\xf0\xc7\x5b\xbd\xad\xe5\xb8\x30\x73\x51\xf0\x3f\xe6\xd6\xcb\x7c\x10\x25\x2e\x22\x75\x20\x17\xd7\xdd\xd7\x3e\xa3\x79\x61\xba\x51\x1c\x15\x1c\x16\x31\x16\x16\x13\x49\x80\xb1\x5b\x31\x19\x7b\xf7\xb6\xf3\x51\x6c\x93\x5e\xd4\xab\x91\x01\x60\xd9\x2c\x15\xb7\x06\x36\x47\x31\xb0\x99\x8d\x92\x69\x9f\x3b\x32\xd5\x09\xbd\xc4\xa3\xf4\x02\xc4\x26\xab\xfa\x5e\xfc\xd1\x54\x67\x6b\xa2\xf3\xcb\x55\x42\x36\xe3\x4b\x57\xdc\x25\x17\x20\x42\xf5\x35\x58\x9f\x77\x75\x14\x55\xfb\x3c\x87\x23\x22\xaa\xf6\xb8\x26\x57\xa7\x9f\xa1\xa7\x85\xc4\xe9\x5d\x0d\x8f\xa3\x50\x89\x45\xdd\x30\xc4\x9c\x36\xd8\xe2\x82\x33\x09\xf2\x3b\xdf\x27\x35\x32\x1b\x52\x24\xac\xa7\x20\xd6\x8a\x27\x95\xc2\x2b\xde\xd6\x4b\xe5\x69\x1d\x54\xa0\x21\x83\xef\xba\xa2\x76\xa7\xb3\x7e\x73\xec\xa5\x23\xae\xf5\xcc\x6f\x42\xf3\x0c\x28\xdc\x16\x8a\x9b\x18\x35\x57\xa5\x99\x43\x37\x20\xaa\x84\x3a\x0c\x8d\xc2\xfc\x09\x45\x5f\xbf\xa5\x6b\x44\x1b\x4a\x53\xfc\x04\x06\x87\x17\x31\x16\xa4\xc6\x76\x9a\x9e\xd8\x79\x8e\xf2\xa3\x06\x5e\x0e\x35\x96\xcd\xdb\xb4\x71\x3a\x52\xab\xf3\x53\x65\xb3\x1e\x57\xc5\xac\x1e\x18\x92\xea\x77\x11\x81\x22\x66\xe4\x66\x86\x3c\xbe\xea\x25\xa3\xd5\xf4\xf1\xc4\x04\x9d\x9b\x6b\x5b\x6f\x77\xcc\x9e\xf8\xb8\x6e\x31\xc8\x7f\xc2\x11\x4b\x48\x0c\x85\x29\x95\xb2\x6f\x56\x5f\x2e\x1b\x6a\x43\x2d\x3d\x2f\xa2\x61\x19\x1b\xe6\x86\x21\xe0\xbc\xa2\xda\xd3\x57\xb4\x4b\x57\x35\xf9\x51\x63\x40\xcd\xf5\xa6\xb6\x4e\xb9\xd9\x08\x13\x28\x47\xb9\x05\xc6\x02\xcf\x9c\x4b\x63\x7c\xa2\xd6\x16\xfb\x4a\x41\x98\x32\x36\xa9\xc3\x98\x01\x1d\x9d\x8f\x27\x48\xb4\xfb\xe6\xd9\xdf\x37\x72\xfa\x42\x4e\xce\xaf\x7a\xfd\x7c\xd2\xe0\x53\xb1\xd8\x76\xec\x9f\x26\x8f\x06\x19\x90\x6b\xe4\xf3\x95\xcd\xf8\x34\xf2\x18\xfd\x1d\x4a\x23\x3b\xa1\x70\x8f\x87\xfb\xf9\x8e\x9f\xc3\xd7\xb5\x11\x89\x57\xab\x89\x6d\x94\x97\x99\x6c\xd4\xc8\x7e\x8f\xd1\xa8\xe3\x63\x55\xa5\xe9\x45\xa6\x6b\x3d\x25\x1a\x5b\x0b\xa0\xec\x7c\xac\x1d\x3a\xe3\xd8\x92\x1f\x63\x4b\xeb\x60\xb1\xad\x89\x94\x1b\x9e\xf0\xcd\x85\x3c\xa2\xfd\xd9\x09\xea\x80\x72\xcc\xc7\x13\x6f\xf1\x2b\x62\xe3\x42\x97\xcd\x1a\x39\xf8\x6e\x11\xcc\xf1\x98\xb5\xff\xe2\x1f\xfc\xe3\x29\xaf\x1c\x0a\x30\x30\x16\x9c\xa3\xb4\x59\xe1\x6a\x26\xab\x5d\x2f\xbe\xd8\xee\x67\xf6\xe5\x52\xfc\x3f\x18\xaf\x13\xf8\xec\xfb\xe7\x35\xaf\x53\x25\x23\xf9\x8b\xd3\xca\x0a\xf0\x8c\x22\xfc\x5f\xd5\x24\x5b\xa4\x34\xfc\x0f\xde\xd6\xab\x6b\x92\x5e\x9a\xd8\x1e\xa9\x7e\xba\x12\x5b\xf5\x31\x2c\x2c\x33\x8a\xe8\x35\xbd\xae\x0a\x76\xe7\x82\x9a\x7f\x57\x66\x77\x79\x49\x3e\xb8\xff\xa1\x2c\xf1\x57\x58\xa6\x30\x99\x8e\xd1\x7a\x8e\x65\xe3\x13\x5a\x73\x1d\x03\xd8\x3d\xa7\x1d\xb4\x4c\x3a\x97\xc3\xea\x9e\x59\x3e\x99\x0b\x4b\xa2\xb6\xe6\x45\x0a\x6c\xb2\x14\x25\x96\x9c\xc7\x67\x68\xc9\xd1\x72\x92\xb5\x46\xa6\xb0\xb0\x5b\x4e\x13\x77\x7b\x47\x99\x1c\x71\x36\x8f\x9b\x8a\xcb\x61\xad\x1d\x09\xaf\x3a\x3e\x6e\x62\x94\x85\x69\xbf\x1f\x25\x9a\x70\x84\x59\x85\xa5\xed\x36\x76\x09\x11\xb7\x57\x2c\xfc\xae\xed\x45\x36\x09\x31\x22\xf1\xd4\x30\xef\xf9\x78\xdd\x77\xff\x57\x07\x36\x79\xaa\xca\xfd\x39\x7f\xc1\xc3\xc5\x02\xfe\x97\x94\xef\x3b\x2c\x8f\xc3\x1f\x1c\x78\x92\x72\x69\xfc\xc3\x76\x34\x69\x39\x83\x09\x94\x12\xf8\xef\x68\x95\xdb\xdf\x1a\xfb\x6e\xda\x85\x16\xdc\x37\x64\xaf\xf5\x98\xeb\x19\x4a\xd8\xb1\x2b\xfd\x50\xa1\xc0\x76\x51\x9d\x93\x55\x27\xa0\xdc\x87\x85\x81\x00\x03\xcf\xf3\x8b\xfe\x1b\x5a\x9a\x51\xd0\x38\xe1\x96\x1c\xd8\xe1\x73\x32\x80\xcb\xfc\x21\x3d\x78\x97\x3e\xf9\x3e\xef\x99\x46\xef\x72\x53\x14\xd6\x33\xeb\x51\x6f\x3f\x3e\x56\x44\x6a\xad\x79\x3e\x48\xb3\x24\x57\x18\x42\x80\x0c\x04\x19\x23\x38\xeb\x34\x7b\x44\x55\x49\x38\x31\x13\xd2\xa7\xb7\x17\x02\xec\x4b\x64\xa0\xe8\x42\x5d\xd3\x72\xef\x5e\xce\x5a\xbf\xd8\xf1\x14\xcf\x0d\xc5\xc8\xd2\x4e\xbb\x30\x9e\x20\x29\x50\x45\xa8\x10\x3d\x69\xf6\xbc\x97\x9a\x7f\xf5\x9b\x68\xe0\xa2\xba\x8e\xeb\x3a\x81\xa1\x21\xc0\x5c\x17\x93\xdb\x70\xa0\x68\xaf\xa7\x34\xae\xfc\x94\xc2\xde\x0e\x73\x2c\x77\xa8\x21\xdc\x52\x96\x08\xb7\x54\x5e\x34\x2a\xe3\xb8\x4a\x62\x30\x4d\xa4\x95\xa5\xea\x25\x93\x69\xeb\xe2\x9e\x76\x4e\xe4\xe7\xac\x4e\xc6\xf6\x92\x51\x6f\x38\x64\x76\x1e\xc5\xcb\x6b\x53\xbe\xf8\xc0\xaa\x85\xce\x8d\xc1\xe5\x4d\x97\x83\xad\x81\xed\x81\x17\xda\x99\x1d\x59\x53\xd8\x1e\x53\xb0\x9c\x20\xa2\xf3\xdc\xba\xa3\xee\x37\x8d\xe2\x9d\x0e\xdc\xf3\x77\x9e\xea\x68\x5d\x6f\x1a\x12\x52\x0d\xa7\x41\x25\x94\x00\x65\x87\xb5\x63\x5d\x15\x47\xe1\xb3\x80\xfc\x61\x66\x7d\x42\x91\xa7\x0a\x3b\x06\x69\x19\xf7\x5a\xad\x6f\x38\x0b\x14\x5e\xdd\x04\x03\xa0\x25\x58\xf2\xa8\x67\x93\x82\x68\x1c\x07\x7d\xc7\xd2\x03\x5d\xfc\x86\xdd\x4f\x93\xd0\xf9\x1e\xe3\xd9\x9c\x47\xb1\x9b\x4f\x26\x42\xa0\xb9\xb9\xc5\xb6\x1d\x8e\x06\x26\x8f\x10\xd9\x34\x49\xf4\x7b\x78\x53\x9e\x96\x59\x68\x81\x5c\x66\x01\x3b\xe5\x58\xf2\x6f\xb1\x5e\xe3\x05\x5d\x6d\x32\x03\xc8\x47\xd6\xf6\x72\xda\xe2\x30\x42\x4e\xea\x72\xec\x06\x8d\x33\x81\xeb\xf9\xb7\xd3\xef\xe7\xbb\x3d\x19\x62\x37\x74\x75\x91\xd4\xb2\x0e\x9b\x72\x64\x5b\xf0\xed\xe6\xf9\x79\x54\xee\x37\xbe\x80\xad\x4b\xdc\xc4\x48\x39\xdb\x49\x14\x54\xbf\x4f\xc9\xf9\x6b\xff\xff\x8e\x72\x58\x39\x4b\x33\x5b\xb4\x32\xf0\x76\x64\xe0\x4c\xe6\xcb\xdf\x6a\xf7\x9d\xdc\xc6\xbc\xc8\x40\x07\xee\x0a\x5e\x3d\xdd\x00\x2c\x9b\x6d\x67\xb6\x57\x7a\xa6\x09\x5b\x06\xd0\x03\x15\xfb\x80\xcf\x7a\xc5\xfe\xb4\x4c\x7a\x5c\x62\xa9\x56\x7a\x6d\x8e\x2b\x46\xb4\xbf\x34\x39\x0d\xa8\x8e\x96\x17\x26\xe9\xfd\xd3\x7f\x48\x09\x46\xcb\xf7\x6a\x4e\x53\x18\x2f\xb9\x8a\x7f\xde\x83\xa8\xf8\x8c\x82\x69\x7c\x06\x10\x02\x44\x69\xf7\xb5\x74\xe8\x35\x05\xe6\x1a\x2b\x7f\xc8\x5b\x50\x4e\x46\x8d\xe5\x87\x34\xe7\xa4\x85\x52\x45\x41\x2c\xdc\x40\x0f\x18\xa4\xa2\x0d\x46\xda\x28\x3f\xea\x05\x27\xcb\x4a\xaf\x0b\x5f\x5c\x25\x61\x8b\x7b\x9c\x7e\xba\x2a\xde\x3c\xd5\xd1\xfa\xa9\x92\xd3\xa2\xde\x8b\x49\xc5\x54\x23\x51\xfa\xa1\xcf\xe2\x8b\xae\x28\xc6\x07\xef\x30\xfc\x0f\x81\x76\x5d\xca\xb2\x28\x5c\x6e\xf9\x88\xfc\x88\xde\x08\x8e\xe8\x3f\xb5\x99\xec\x40\xf3\x9b\x1b\xd5\x33\xda\xdc\x50\x3d\x78\x6d\x42\x5c\x3d\x02\x69\x58\x6a\x69\xa8\x89\x7e\x41\xb5\x6a\xf4\x32\xd3\x67\xa2\xce\x02\xb7\x5a\x3f\x18\x2b\x99\xc0\x0f\x82\x67\xea\x4d\x99\x6f\xcc\xb6\xf7\xce\xb6\xb4\xba\x97\x27\xba\x4d\xe6\xf5\xfb\xe6\xc9\x2a\x38\x33\x90\x86\xe2\x3a\xf6\xd8\x13\xb8\xcf\x4e\xac\xb3\x07\xf7\x2c\x50\x83\xc2\x71\x2f\xe7\x65\x93\x0c\x3c\xfb\xb9\xe6\x5d\x93\x45\xb6\xaf\x99\x0b\x68\xdc\x60\xca\x62\xfe\x8b\x92\xf6\x13\xb5\x16\xda\x92\x7d\xd4\x17\x68\x2f\x2a\x8d\xb7\x4d\xd0\x43\xa5\x30\x50\xdd\xac\x68\x8f\xd2\xcf\x88\xf4\xb9\x47\xe4\xfe\x28\xa8\xb6\x63\x51\x42\x54\x64\x8b\x0d\x0a\xa1\x10\x25\x5c\x0e\x94\x20\xc7\x29\xb5\xe9\x85\x69\xd2\xf7\x65\x69\x84\x25\xb7\x94\x37\xdf\xad\x26\x41\xd7\x70\x10\x85\xcb\x36\x61\xce\x86\xf3\xec\x72\x36\xaf\xc0\xba\x61\x24\x1f\x1b\x6f\xe9\xdd\xce\xcd\xed\x6f\x1f\xdc\xa3\xc8\xca\xa7\x15\x59\xf9\xb4\x22\xe9\xf4\xa2\x3c\xcc\xec\xc8\x54\x9b\x40\x8e\xe6\x00\x0a\x08\x33\x14\x02\x22\x9c\x3b\xac\x74\x80\x67\x28\xd8\xe6\xff\xff\x50\xb9\xc4\x51\x66\x0b\xcb\xc2\x64\xb2\xd2\xd4\x84\xb9\x1e\x73\xe5\xcf\x5e\x64\x68\x6f\x90\xb8\x9e\xfe\x0c\x2b\xf5\x2d\xde\xe1\x90\xf5\x1f\xf6\x69\x7b\x5a\x28\xbd\x7f\x16\xd1\xa1\x47\x23\x82\x3a\x4a\x37\x26\x25\x9b\x3b\x05\xbd\xa3\x9b\x11\x18\x9e\x8f\xde\x7b\x26\x62\xdf\x4d\x44\xca\x57\xc7\x75\xed\x69\x37\x7a\xfe\x26\xd0\x82\x5d\xd9\x4a\x9a\xe1\x3a\xd0\x43\xbb\x31\xf6\xc8\xa2\x1b\x2e\x88\xea\x5a\x53\xec\xf4\x46\xb5\x3f\xa6\x6b\xc0\x3a\x06\x0e\x0a\xaa\x1c\xbb\xd7\x95\xf0\x3f\x5b\x85\xa0\x24\x7d\x97\x42\x0a\x01\x95\x57\xaf\x00\x9f\xf8\x44\xe7\x1f\x26\x59\x4b\x39\xa1\xc5\x78\xbe\xa6\x85\x75\xaf\x05\xbb\xf9\x6d\xb5\x17\x16\x17\xfe\xae\x52\x5c\x78\x17\x16\x72\xd2\x5d\xa6\xdd\x1f\x4b\xfc\x3d\xd4\x4d\xa8\xc6\x38\xf3\x05\xea\x21\x0a\x6d\x43\xcd\xdc\xa7\xa0\x38\x21\x02\xc2\x54\xdb\x64\x0c\x2a\xde\x3a\x90\x07\x53\xeb\xd5\x4a\x8e\x08\xe1\xfe\xd8\x25\x54\xff\xf5\xdf\x81\x9f\x2d\xd2\x8d\x1d\xeb\x4a\x23\xe6\x0b\xeb\x5e\x04\xe1\x14\x6f\xa8\xd2\xaa\x6f\x1d\x5a\xe0\xd2\xd8\x35\x84\x58\xb8\xb0\x47\x3b\xd5\xb8\xc5\x5b\x7b\x82\xda\x53\x42\xe1\x55\x1b\xfd\x2f\x74\x28\xc5\x70\xb8\x69\xb7\xee\xdc\x1c\x7b\x35\xdf\xf3\x41\x15\x6b\x61\x13\x01\x6e\xc9\x59\x07\xb9\x4a\xf4\x35\xec\x5a\x18\xbb\x3f\x81\xe1\x11\x16\x86\xcb\xc1\x63\x6e\x94\x24\xe9\x73\x2d\x0f\x99\x07\x32\x50\x92\xcc\xad\x33\xff\xcb\xd5\x6a\xd1\x2b\x43\xc7\xae\xc4\x54\xe3\x17\xc1\x27\x0f\x35\x8d\x2c\x93\x28\x4b\xd7\x4c\xdc\x52\xef\x1d\xe4\x55\x3e\xae\x55\xfd\x42\xdb\x7b\xa6\xba\x17\x16\xab\xa2\xec\x0a\x39\xc2\x11\xdc\x17\xba\x42\x27\xb0\x5c\x62\x5a\x4c\xb1\xc6\x31\xf2\xe2\xbf\x08\xbc\xc7\xf5\xff\x35\xf6\xdc\xf9\x77\x30\x88\x20\xb7\xf8\x01\x06\x01\xda\x4d\xff\x49\x65\x7d\xe7\x90\xe9\xc9\x4e\xe1\xf3\xa8\x93\xe3\xea\xed\x62\xb5\xba\xad\x73\x97\x5b\x34\xf4\x91\x51\x3f\x89\x18\xc3\x39\x67\x55\xc3\x86\x4f\x10\xe1\x49\x45\x85\x5e\xbc\xe8\x34\xf8\xa6\x5b\x38\x30\x11\x73\x6b\x1d\xed\x7c\x9f\x00\x57\x4e\x4f\x3c\xe2\x85\xc5\x85\xea\xf1\x92\xb0\x98\x2b\x85\x89\x25\x56\xf5\x41\xf1\xca\x52\xc8\xfe\x68\x69\x50\x88\x76\x20\x9e\x25\xcc\x8d\xa5\x97\xe7\xdd\x69\xce\xea\x5c\x2e\x5b\x2a\x59\x9b\x08\x1d\xac\xab\x8a\xce\x71\xb5\x51\x4e\x4a\xf3\xc0\xb0\x57\xbf\xa7\xf6\xed\x7a\x3f\x2b\x0a\xd3\x47\x3d\x89\x98\x5b\xfb\xd8\x0b\xaf\x06\x6a\xdc\x1c\xe1\x09\x87\x99\xb1\xe9\x63\xe3\x57\xdf\xa1\xdd\x50\x00\x60\xf4\x0e\x9d\xc9\x85\x2b\xdc\x7f\x1c\x78\xf4\x0a\xb8\xfa\x42\x74\xf5\x5b\x3b\xaf\xfe\x8b\xe2\xca\xf5\xaf\x94\x3a\xe8\xc9\x40\x85\x5b\xa7\xbc\x50\x52\x91\x39\x71\x5a\x7d\x65\x18\x9d\x3b\x3b\x9a\x52\xe5\xeb\x4d\x7d\x6b\xe3\x1a\xe1\xfc\x43\x45\x38\xff\x70\x5c\xf3\x3c\x67\x5c\x9a\x34\x0f\x3d\x9f\xb4\xb5\x4e\x93\x02\xff\xf0\xf1\x58\xa9\xf6\x5e\x51\x86\xc2\xad\xce\xd6\x29\xbd\xb8\xa7\x9d\x76\xf3\x34\xb6\x85\x55\x19\xf2\x05\x54\x4f\x84\x08\xad\xdf\x50\xba\xd6\x53\x4c\xee\x73\x3a\xe3\x3e\x17\x6c\xd9\xe9\x17\xf7\x2c\xb6\xf7\xcd\x4f\x7b\xb8\xcc\x0d\x5c\x98\xd3\xaf\x71\xf9\x3d\xb6\x10\xc6\x7d\x4e\x84\x65\xf0\xbc\x2e\x06\xab\x83\x88\x3b\x91\xcc\xca\x0d\x3c\xa9\xff\xdc\x44\x46\x02\xea\x7b\x95\x92\xd4\x8d\x74\x8e\x2b\x23\x9d\xe3\x0f\xa5\x6b\xc5\x76\xc5\x66\x66\xa9\xae\x46\x8f\xae\x1e\x1f\x07\x0d\xb6\x62\xd1\xca\x5a\xab\x5e\xd7\xa3\xe7\x23\x70\xae\xa7\x1d\x63\x2f\x1d\xd9\x8c\x54\xd1\x19\x45\xef\x60\xae\x5e\x20\x43\xc1\x80\xb9\xb0\x21\xf8\x57\x0f\x6b\x0c\xd3\x11\x94\x23\x3d\xc6\xfe\x5d\xa5\x6f\xf8\x6e\x0d\xe2\x55\x98\x2e\x47\x11\x18\xed\x47\x50\xa7\x10\x1c\xbd\x36\x93\xfe\xac\x72\x3d\x2b\xb3\xc4\xc4\x51\x5e\xe4\x33\x35\x75\x14\xda\x4f\x34\xd5\xd0\xf5\xda\x16\x85\x1c\xf3\xef\x68\x20\x8b\xaa\xa3\x07\x63\xd9\x3c\x47\x85\xd0\x41\x3c\x2e\x6a\x96\xc0\xc5\x89\x01\x70\x88\xec\xb3\x5e\x29\xcc\x28\xcd\xad\x62\x10\xfe\x68\xac\xe0\x1a\x3f\x9a\x00\xa2\xc8\xbb\x0c\x5b\x35\xe9\x56\x45\x65\x6e\x32\x88\xde\xf2\xe6\xd1\xfd\xc1\x9b\xe1\x63\x57\xa0\x58\x8a\xba\xdd\xd4\x69\x49\x3b\x46\xed\xbc\xf3\x1f\x3e\xa9\x88\x6a\xd1\x08\x48\x6b\x2d\x13\x29\x85\x61\x89\x1e\x87\x26\xcf\x4d\x98\xb1\xfd\x92\xee\x4d\xa3\xb5\x07\x1d\x02\xe4\xb1\xe7\x9a\xd4\x0f\x86\x69\xaf\x1a\x58\x56\x89\xf4\x7e\x1a\x78\x18\xe9\xa7\x6a\x39\xc9\xcb\x70\xf0\xd9\x2a\x8c\x90\x22\xbc\xe7\x39\x5f\xa3\x6a\x36\x36\xc5\x47\x28\x32\x92\x82\x0b\xad\x6d\x08\x6d\xbe\xd0\x51\xfe\xe6\x47\x68\xf3\xc3\x04\xde\xa4\x20\x04\x11\x24\x2b\x43\x62\x17\x67\x8c\xac\xfb\x97\x43\xce\x11\x65\x93\x8c\xe4\x75\x0c\x82\xdc\x86\x69\x4c\x32\x7f\xe8\xa9\x60\x53\xba\x5c\x4b\xb7\xab\x31\x87\xe0\x8b\x1d\xa2\x84\x21\xac\xea\x17\xf7\x02\x55\x43\xfc\x74\x72\xb9\x78\x61\x7f\x3b\xcc\xac\xb7\x2a\x40\xac\x74\x38\xf0\x45\xef\xc3\x4a\x48\x8e\x16\x16\x2e\x5f\x68\xdd\x3d\x2f\x92\xa7\x5b\x6d\x83\x34\x5c\xe6\x6c\x49\x20\x6c\x9e\x6d\x72\x83\x7e\x02\x65\x9a\xa3\x93\xc6\x3c\x8b\x0b\xed\x61\xb5\x59\x1b\x62\xb7\xa2\xd5\x76\x07\x21\x97\xe3\x01\x54\xcf\x05\x81\xec\x89\xba\x2e\x72\xba\x34\xe5\x11\x9f\x85\x72\x4f\x3c\xaf\xdb\xa8\x5a\x9d\xf5\xe5\x32\x0a\x97\xe3\xb5\x47\xaa\x47\x8a\xaf\xe4\x1a\x09\x56\xea\x07\x9c\xf7\xb8\x7a\xcd\xa2\xd7\x78\xaf\x7e\x89\x4d\xbb\x02\xdf\x58\xfb\x18\x6f\x1d\x29\xda\x8f\xf0\xb3\x78\x08\x87\x15\xb3\x69\x94\xd9\x95\x28\x2d\xf3\xc7\x14\xf7\x11\x6b\x09\x2e\xe2\x67\x63\xdf\x10\xfc\x36\xbe\xd1\x29\x66\xec\xdd\xcb\x83\xe2\x28\x8d\x42\x71\xfd\xa3\x5f\x12\x41\x39\x1a\x15\xf8\xda\x8f\x34\x0b\x04\x9a\x44\xce\xed\xd6\x4b\x6a\x7c\x14\x28\x95\x98\xcb\x4d\xb6\x52\xb1\x8c\x14\x44\x57\x37\xe9\x9e\xf9\x58\xf9\xd6\xa6\xb6\xec\x53\x51\x7e\x73\x63\xdc\xfa\xda\xa1\xcd\x0d\xc5\x88\x80\x41\x3f\x55\x4e\x9c\xd7\x11\x16\x7e\x3e\xae\x77\xc2\xd3\xde\x0e\xef\xcd\x7b\x53\x19\xd1\x71\x99\x07\x27\x7c\xe7\x08\x75\x7e\x3c\xf6\xb1\xe0\x69\xf5\x78\xb6\x77\x7c\xb4\x69\x86\xa6\xcc\xd6\xa6\x5b\x5f\x3b\xe4\xcc\x50\x94\x37\x26\x3c\xfe\x30\x37\x37\x03\x85\x36\xd2\xa2\x07\xe2\xdd\xc1\x81\x0c\x33\x06\x02\xef\x0e\xf8\x76\x23\xee\x35\xb6\x7d\x68\xae\xc8\x4f\xd1\x95\x63\x2a\x4c\x77\x54\x29\x45\xfd\x54\x8f\x34\x27\x6c\x86\xb2\x2d\x62\xfd\x9b\x8a\xe1\xf8\x1a\xad\x0c\x58\x57\xae\x37\xd9\x69\xf5\x4b\x1b\x73\x3f\x45\xfc\x06\x6b\x0d\xfc\xad\x85\x83\xd9\x03\xed\x5e\x94\xe7\xa6\x88\xf2\x7e\x04\x37\xe9\x2d\x4c\x60\x07\xc8\x70\xa0\xdd\x4d\x8f\xc3\x2e\xbb\x43\x93\x45\x89\x55\xfe\x52\xe7\x14\x84\xf8\x9c\xb6\x70\x89\xd3\xdc\xf6\x1e\xc5\x0c\x13\x54\x83\xef\x74\x6e\x62\xd6\x4b\xa5\x89\x06\x2b\x7e\xfa\xc4\x58\xd7\x50\xe9\x02\x21\xdb\xf3\x01\x2e\x90\x3f\xa2\xc4\xf8\xb0\xac\xf3\x7c\x0a\x94\x96\xea\x54\xc7\xeb\x9f\xf3\xbd\xb2\x76\x07\xb9\xe5\xe0\x13\xa7\x02\xda\x51\xf1\x1b\xaf\xb9\xed\x6b\x94\x99\x28\x77\xc5\x0f\xae\x02\xa8\x1a\xc2\x27\x63\x2f\x16\xb8\x62\xf3\x62\x68\x93\x82\x03\x20\xe7\x0c\x22\xaa\xa7\xc7\x9f\x26\xa2\x2e\x5d\xd4\xd1\x67\x3a\x4a\x20\xfa\x64\x93\x7b\x7d\x34\x1c\x99\x90\xa5\xa4\xf4\x86\x26\x28\x23\x1f\x6f\x27\x26\x09\xd7\xa6\x69\x98\x02\xab\x84\x2e\x0a\x1b\x2b\x07\xbe\xca\xf2\xce\xd8\x23\x78\xef\x34\x88\x52\xef\x6f\xf7\x6c\x16\xad\x48\x6f\x4e\x30\xd8\x1a\x90\xad\xa0\x3c\xb9\x61\x3c\x24\xae\xe8\x8e\xc2\x3d\xdd\x71\x1d\xec\x3c\xed\x17\x36\x71\x49\x04\xc6\xd2\x5f\x2a\xeb\xfa\x37\xd5\x40\xff\x60\xec\xe3\x49\xe7\x01\x39\xa3\x91\xcd\x58\xdc\xb0\x43\x9f\x50\xcc\x98\x0d\x1d\x96\xc2\x42\x0d\xb3\x54\x23\xb0\xc8\xeb\x29\x1a\x99\x78\x4a\x21\x77\xd7\x69\x72\xb1\x95\x52\xe0\xd3\xc0\xd3\x4a\x64\x30\x2f\x4c\x61\xab\x57\x9b\x6b\xec\xd6\x4d\x8d\xdd\xba\x59\xdb\x49\x49\x94\x3f\xcd\xf2\x1d\x9e\x90\x7e\x26\x50\x30\x80\x13\xaa\x2a\xf1\xc7\x63\x4f\xc1\xbb\xa8\x51\xb1\x5a\x0f\xf8\xa6\x7a\xee\x3d\x0a\x19\x9d\xca\xdb\x45\x2c\x8e\x02\x0e\x78\x46\xc1\x17\x93\x90\x18\x0b\x0c\xf9\x14\x5b\x49\xa5\x1c\x71\xc6\x0d\xf4\x6e\x66\xcd\xb2\x7b\x4d\x22\x5a\xd3\x52\x76\xca\x3e\x2b\xf6\x70\xe1\x32\x59\x4e\x9c\x19\xb8\x5c\x81\xbe\x34\xb5\x1d\x9a\xac\xa8\xd6\xb8\x1d\x5e\x6d\x0e\xe3\x59\x54\x66\xfd\x52\xf3\xd6\x58\x09\xe6\xb2\xf3\xb1\x63\x12\x2e\x3a\x8c\x85\x2a\xe8\x17\x03\x9b\x99\xd1\x9a\xa2\x70\x5c\x52\x14\x8e\x4b\x0d\xe0\xdc\xb6\x41\xb0\x83\x5a\xbd\x30\xe1\x14\x09\xd9\x3d\x99\x1a\x59\x03\xf3\x15\xbd\x4d\x2c\x98\x48\xfa\xf0\x8e\xaf\x69\x69\xc6\x1f\xb9\x39\xd0\x8f\xb2\xbc\x18\x98\xa4\x37\xe3\x19\x14\x0c\xa1\x74\x01\xb1\x43\x4d\x5f\x56\xaa\xcb\xe7\x95\x5e\xd2\x7d\x35\xe1\x7b\xe9\xd2\xd0\x4c\xf9\xca\xea\x66\xe0\x5b\x3b\xaf\xe1\xfd\xe2\x0b\x1e\x5e\xbb\x1a\xd9\x24\x79\x35\x8d\x62\x5a\xc3\x31\xb7\xee\x69\x68\xdf\xbd\x06\x8e\x70\x3b\x1c\x58\x94\x82\x55\xf5\x37\xd0\x65\xe1\xda\xe6\xbe\x12\x25\x98\x68\xb2\xf8\x3c\xdc\x08\xbe\x41\x0c\x68\x35\xcd\xe2\x9e\xda\x10\x2f\x2a\x56\x15\x63\xe6\x85\x33\xfb\x94\x72\xde\x8f\xe3\x2a\x82\x9d\xae\x63\x9c\xfd\x03\x0d\x14\xea\x17\x41\xa6\x80\x9f\x1b\xc4\x1b\x7b\x04\x0a\x9d\xf6\x4a\xe3\x0c\x4a\x94\x14\xd6\x03\x62\xaf\x53\x5c\x87\x25\xf2\x4d\x4d\x66\x0b\x09\xed\x60\x7b\xd3\xbe\x09\x0b\x37\x17\x47\xee\x71\xd2\x16\x67\xb4\xd2\xde\x95\x26\x0e\x82\xe9\xad\x38\x69\x0c\x06\x43\xd2\xe7\x05\x18\xd9\xb0\x89\xe4\x45\x99\xf5\xd6\x34\xe9\x85\xae\x5a\x08\x30\x5b\x53\x86\x03\x2f\xb4\x57\xd2\xb8\x4c\x0a\x6b\x33\x9a\x4c\x98\x9c\x3f\x51\x38\xa7\x9f\xb8\xc6\x40\xd7\x9a\x22\x8b\x58\x64\x07\xc5\xf2\x56\xc7\xc3\x2e\x3f\xc6\x4b\xe2\x26\xd0\x84\xd0\x07\xe5\xa5\x06\x4d\x0b\x81\x64\xb4\xbc\x4b\x97\x7a\xa9\x45\x3a\x24\x42\x3d\x38\xcc\xe8\x6a\x6f\x22\xd3\x67\x67\xbc\xa0\x16\x82\x57\x8f\xd7\xc5\xe6\x55\x44\x81\x94\x60\x5d\x59\xbd\x9f\x52\x52\x54\x47\xb5\x15\x97\xc8\xe9\x2b\xea\xdd\xb7\xb1\x70\x4b\x21\xe1\x61\x13\xca\x65\x5a\x74\xd7\xae\xc5\xed\x02\xbe\xb3\x0d\x30\xbf\x76\x61\x5e\x91\xac\x1c\x20\x45\xe0\x56\xf9\x58\x75\x1b\x46\x59\xda\x7f\x8e\xb3\x72\xe1\xa8\xd1\x0f\x49\x1b\x41\xf9\xa7\x9b\x3c\x2c\xe3\x2a\x3c\x53\xab\x3e\x9e\xad\xd0\xbd\x3c\x34\x2f\x4f\x87\x96\xdc\x37\x76\x7a\xb8\x39\x07\x8f\x68\xf3\x4d\xb3\xf2\x35\x5e\xcb\x07\x58\x99\x59\xba\x8a\xae\x15\xff\x00\x29\x71\x91\xb4\xaa\x52\x5f\x89\x3d\xa5\x94\xd8\x27\x03\x29\x94\x01\xb0\x20\xfc\x58\x43\x0b\xe0\xb1\x20\xa4\xc9\xad\x6b\xcf\xde\xd9\x76\x3f\xea\x59\x42\x4f\xfb\xfc\xe4\xfc\x58\xe9\xa2\x9c\x0f\xfc\xd3\xea\xc6\xd5\xa6\xe4\x91\x8b\xf0\x8f\x94\x8d\xe1\x09\x5f\xdc\x4c\x93\xa5\x78\x6d\x7a\xc2\xc5\xd6\xa1\xe1\x16\xf7\xf0\xe4\xc4\xc0\x96\xbe\x65\xc3\xdc\x8c\x92\xbe\x80\x54\x05\x97\xee\xe3\x9a\x49\xcf\xb9\x83\x7b\x66\x69\x99\x24\x50\x9c\xee\x54\xbe\xa1\xc0\x54\x6f\x68\x2e\x42\x9a\x92\x7d\xb6\x47\xec\x42\xf8\x4d\x28\xb1\x0f\x63\x84\xc7\x66\x95\xe6\x27\x16\x30\x88\x60\x61\x07\x3a\xaa\x2d\x4a\x4e\xaa\x3a\x71\xb5\xca\x8f\x68\x5e\x0a\x67\x85\xde\x13\x9f\x04\xcf\x78\x86\x52\x3a\x1c\x99\x64\x8d\xac\x60\x95\xab\xae\x4f\x6b\x99\x78\x20\xa5\x84\xad\xab\xcd\xbe\xf9\xf6\xd0\x84\x83\x28\xb1\xec\xbb\x87\x85\xec\x88\xae\xb0\x1c\x69\xd0\x61\x6e\x0f\xd3\x57\xa2\xbf\x65\x78\xd7\x54\x18\xfb\xb0\x1f\x22\x6d\x17\xac\x45\x1f\xd2\x0a\xc1\xfa\xd3\x41\x4b\x6b\x51\x57\x6b\x0a\x72\xb5\x77\x51\xa7\xe1\x13\x85\x7f\xfc\x50\x05\x94\x26\x8e\xcb\x1c\x15\x13\x57\x08\x3f\xa6\x74\xfa\x8f\xa9\xb2\xa3\xd2\xed\xa6\x10\x88\x4d\xe1\x02\x1f\x3d\xdc\x1f\x2b\x53\xfa\x33\x58\xd3\x9c\x6b\xb5\xa3\x1d\x7d\x82\x6d\x42\x2a\x11\x9f\x71\x75\xb6\xac\x88\x92\xa8\xa5\xfe\xf1\x3b\x0a\x0b\xfc\x1d\xcd\x92\x20\x66\x5e\x35\xf3\x51\xbe\xc3\x0c\xbe\x85\x1b\xe6\x93\xb1\x76\xcc\x19\x44\xdd\xa8\x98\xf1\x9c\xe3\xb7\xc7\xca\x92\x93\x13\x46\x6c\xd2\x57\x55\x3d\x86\x45\x69\xc5\xdb\xf1\x09\x87\xd5\x2b\x06\x69\x2f\x7d\x85\xb6\x55\xf1\x3f\xf6\x0d\xda\xa9\x4e\x4b\x79\x6e\x54\x09\x3c\x96\xf5\xe3\xb5\xd0\x62\x75\xb0\xb6\xbb\x8e\xc7\xa2\x2b\x12\x29\x21\xda\xa5\x01\x53\x6a\xa1\xf9\x58\x93\x6e\x11\x4e\x79\xeb\x1b\xb3\x5c\x00\xbd\x12\xf8\xde\xf9\x15\xe5\x0d\x02\x05\x63\x96\x0f\x19\xfb\xdc\x1f\xdc\x4d\xe9\xab\x35\xb9\xe4\x47\x49\x2f\xf2\x6d\x45\xc9\xa4\xaa\xfb\x94\x44\x6a\xc2\xa8\x7e\x71\x4f\x7b\x60\xe2\x7e\x8b\xfa\x1e\xe8\xb6\x9c\x45\x85\x8f\x4f\x54\x09\xa6\xb0\xbd\x6a\x5b\x7f\xf6\x59\x4e\xaa\x6f\xc1\xf0\x8c\x4f\x1a\xf5\xe4\x8a\x55\xd9\xab\xc5\xbe\xbc\xe5\xfc\xc5\x4e\x2b\x31\x87\xbb\x4a\xa4\x38\x4a\x0a\x1b\xc7\x36\x2c\x4a\x13\x03\x15\x26\xc2\x30\xd5\xf3\x42\x86\x0b\x6c\x85\x6c\x1d\x1e\x45\x63\x46\x23\x6b\xe0\x3f\x84\x55\xdf\x51\x5d\xb5\x2c\xa6\x67\x3b\x5c\x50\xe4\xe6\xd8\x9a\xa5\x92\x81\x04\x6c\x9a\x40\x57\x2b\x06\x0a\x5b\x0b\x1a\x0b\x2f\xec\x6f\x8f\x48\x63\x2d\x4b\xa3\x65\x83\x24\x5f\xcc\x7f\x7c\x59\xfa\x0a\xd1\xcf\x45\xd4\x44\x0f\xa8\xbe\x31\x8f\x78\x7e\xc5\xb6\x4e\xcd\xf5\xa9\x7a\xd7\xf8\xd0\x55\xa5\xe0\x71\x27\xa8\x95\x79\xaa\x97\xe6\x6c\xa2\xaa\x77\x21\x85\x48\x7a\x83\x02\x90\xf4\xdb\x34\xe9\xd3\x42\xfa\x58\x71\x97\xc7\xba\x5f\xfb\xb0\x50\xc3\x0e\x47\x71\xba\x66\xf1\x32\xd9\x67\x4c\xa1\xfc\x8e\x63\x94\x03\xeb\xfd\x81\xa6\xc9\x11\x6c\x55\x76\x11\xb4\x8b\x8f\xd0\x2e\xc2\xc7\x13\xa5\xda\xd9\x03\xed\x22\x2d\x33\xf2\x53\x9b\x9f\xf7\x01\xb5\xf3\xa7\x24\x6f\x39\x7c\x79\x2e\xee\x02\xe2\x81\xac\xf0\x39\xc7\x9a\xc2\xd9\xbe\x77\x61\x41\x50\x07\x77\x06\x3e\xd6\xd4\xcb\xd4\x64\x3d\x14\xc7\x00\x39\x03\xa6\xd1\xe1\x80\xbc\xc8\xd2\xf6\xf5\xa7\x14\xb3\xdc\x24\xf0\x44\x5b\xdc\xe3\xbc\x20\x5b\xce\xd2\xe3\xbc\x6b\x72\xf6\x2c\xd5\x2b\x55\x29\xfe\xa2\xf6\xa8\xbd\xe8\xf9\x3f\x71\x98\x0e\xd2\x78\xc6\x2b\x59\x9f\xd2\x8a\x1e\xd7\xf0\x29\x44\xc2\x3f\x55\x2c\xbf\x4d\x25\x3d\xb9\xcd\x2d\x84\xa3\x32\x1f\xa4\x2b\x8c\xb3\x45\xfe\x84\x34\x82\x8f\x55\xa7\x2b\x2f\xf3\xc2\x44\xec\x32\x8a\x5d\xee\x08\x6e\x5b\xef\x4f\xfc\x0f\x63\x3f\xc5\xdf\x55\xe2\x59\xa3\xc8\x66\x99\xd5\x12\x76\xbc\x68\x8a\x6f\xc8\x84\xa3\xca\xde\xf6\xa8\x2c\xa8\x82\x81\x49\xcf\xcd\x0e\xc4\x01\xbf\x89\x65\x1f\x2f\x6b\x46\x4b\x38\x71\xaf\xd6\x29\x86\x3b\xf8\xf5\x47\x0e\x38\xdc\x4d\x13\xc6\xa8\x0a\x86\x8d\x3e\x82\xc7\x78\x57\xd5\xc8\x2f\x28\xe3\xfd\xe7\xfe\xd1\x3f\xfe\x55\x54\x27\x1c\x5f\xd1\x65\xeb\xd7\x55\xd8\xfc\x61\xbd\xbb\xfb\x52\x4a\x0f\x18\xa1\x1b\xaa\x71\x7c\xac\x60\xe6\xcb\x99\x4d\x5e\xd5\xdc\xde\xba\x50\xdc\x33\x0a\x64\x98\x2f\xdb\xa2\x6b\xe2\x18\x7e\x57\x28\x8e\x20\x0d\xe3\x63\xba\x14\xa6\x11\xd0\x7a\x23\x94\x02\xbf\x7a\x2f\x99\x28\xc9\x1f\xa7\x67\x26\x90\x32\x85\x3e\x01\xd6\x0c\xe6\x15\x50\x90\xc0\x4d\x9e\xd5\xee\x34\xe7\xc6\x35\x1a\x8b\x0f\x9e\x02\xef\x44\xf4\x11\x7a\x04\x08\x26\x67\x3a\x4a\x1d\xed\xfa\x58\x89\x9b\x6d\xe7\x10\x1f\x51\xf9\xc7\x63\xd5\xed\xbf\xe8\x1a\x83\x66\x34\x32\x99\xe1\x72\x24\x7e\xf6\x9d\xb1\x1f\xb9\xef\xb8\x4e\xb0\x1d\x76\x4d\x96\x19\x32\x7c\x52\xea\x61\xa8\xc7\xf0\xb1\xc6\x5a\x0e\x88\x1d\x54\x25\x5d\x14\x16\x49\x44\xa0\xba\xa7\xac\x03\xe0\x20\x88\x4e\x7f\x04\x99\xbd\xd4\xd3\xb5\xc5\xd6\x53\xba\x1f\x61\x61\xd4\xef\x0c\x9a\x8f\x2a\x8e\xfa\x51\x85\x04\x59\x31\x61\x59\x0e\x09\xa2\xe2\xae\x79\x71\x8f\xbb\x66\xb9\x41\x93\x14\xd1\xcb\x25\xab\xe1\x79\xb1\xe6\x8b\xe8\xe5\x09\xc8\xde\x2f\xf4\xfd\x32\x4b\xa2\xa2\xcc\xec\x94\xdf\x60\xb0\x67\xa2\xd8\x8c\xe0\x0e\x31\xc6\x89\x9a\xea\xf2\x70\x18\x15\x85\xb5\xbb\x6a\xe6\x61\x5b\x9f\x11\x36\x52\x26\xf6\x49\x0d\xdf\x27\xd2\xd7\xb4\xe6\xc2\x5b\x81\xc6\xed\x8c\x35\x9f\xfc\xa4\xc2\x10\x9c\x6f\x2c\x0d\x9b\xc4\xc4\x6b\xaf\xda\x96\x26\x29\x23\x35\x16\xc6\xf2\xd3\x1a\x41\x0b\x3b\x7e\x22\x5b\x41\x64\xe0\x4d\x25\x17\x78\xb5\x06\x24\x6f\x14\xa6\x1c\x91\x6b\x98\x76\xce\x50\x2d\x86\x63\x2a\x56\xe8\xda\x78\x29\x2a\x87\x18\x6c\x88\xe4\x3f\xa4\x3f\xe5\x63\x15\xca\x56\xdf\x4a\x0e\x2e\xce\xe0\xe4\x1e\x62\x7e\xbc\x95\x07\xca\x7a\xe1\xaf\x27\xda\xa9\x07\x5e\x10\x15\x36\x36\xf4\xc0\xfe\x73\x55\xeb\x46\x5d\x55\xba\x32\x3d\xdb\x37\x65\x2c\x20\x03\x54\x2a\x6e\x70\xaf\x51\x8c\xeb\xe8\x75\xe0\xf1\x1c\x1e\x7b\x52\xce\x49\x95\xda\x9d\xd4\xce\xe3\x49\x5e\x66\x0c\x56\xc2\xac\x7e\x30\xf6\xc0\xd6\x07\x13\x5a\xf8\xa4\x28\xb5\x64\x93\x28\x2d\xf3\xad\xfc\x61\x05\xa8\x76\xe4\x93\xa8\x67\x15\xeb\x63\xac\x95\x29\xc6\x4d\x2e\x6d\x61\xba\x1a\x73\x70\x87\x7d\xfe\x0e\x06\x98\x58\xbb\xfa\xdc\xea\xac\x82\x07\x0d\xcd\x4b\x69\x06\x57\x7f\xe5\xcf\x28\x65\xd3\x1d\xeb\x5e\x9b\xf9\x3a\x72\x12\xb0\x67\x98\x6c\x86\xbf\xc2\x72\x82\xa8\xfe\x07\x84\x59\x47\x0e\x85\xae\x3d\xb2\x26\xf8\x39\x8a\x78\xa1\xaf\x90\xfe\x96\x5a\x89\x47\xd1\x70\xc4\xd3\x58\xe9\xbb\x7c\xcb\xe9\xbb\x38\x73\x93\xd4\x88\x06\xc2\x2c\x47\x4b\x53\x10\x63\x41\x7e\x03\x95\x0c\x91\xa4\x6a\x20\xc9\xe6\x85\xc9\x00\xed\x77\x66\xe2\xd5\x3c\x92\x46\xf3\xe7\xb7\xe2\x8c\xf6\x13\xda\x07\x18\x61\x2d\xff\x88\x95\x1d\x39\x4a\x4d\x19\x05\x03\xec\xf7\x15\x1c\x22\x4c\x63\x56\xd6\x91\xc5\x5c\x25\x13\x93\x64\xdb\xf9\x79\x67\x12\xc9\xef\x14\xbf\xcb\x61\x0d\xae\xf4\xad\xb1\x0e\x7a\x95\xde\x68\x68\x92\x9e\x89\xb5\xc0\x17\x2a\xfa\x7c\xec\xf7\x11\x40\x51\x1e\xf5\xe5\xa2\xe9\xf5\x9a\x2c\x5c\xf5\x88\x90\x10\x3c\xb2\xee\x05\xf8\x80\x53\xa2\x42\xc2\xd7\xbe\x44\xa0\x68\xe1\x30\x57\xef\x58\xec\x10\x94\xe5\xd8\x03\xad\xce\x71\x14\x7b\x9a\x74\x13\x9f\xd6\xce\x84\x61\x94\x3b\x9d\xf1\x9a\x8b\x1b\xf7\xa1\x95\xdf\xee\x68\x62\x82\x79\x24\x68\x6c\xf3\x5c\x09\xa9\x5f\xa7\x1e\xbe\x50\xd0\x68\x8d\x61\x2d\x5f\xe5\x1d\x77\x82\x06\x2b\x36\x22\xee\x07\x32\x51\x6c\xa2\x5a\x7a\xe0\x05\xf2\x14\x68\x29\x7e\x66\xa0\x8c\x8b\x3f\xf1\xb2\xd5\x51\x6e\x50\xd4\x17\xa9\x02\x85\x71\x3a\xa6\xe2\xc1\xb4\x2c\x7a\x51\x4f\xeb\x2c\xb3\xf0\x28\x9f\x4c\x5c\xc2\xdc\x5c\x7b\x14\x76\xf3\xa9\x6a\xb2\x61\x12\x9e\xd2\x54\x93\x2b\xf8\x34\xc2\x96\x77\x27\x32\x09\xb2\x83\xcf\x56\x5c\xb5\xcb\x75\x9b\xbd\xda\xca\xa5\xc0\x8f\xdd\xbe\xb5\xf9\x63\x4a\xf0\x17\xea\x99\xac\x0b\x34\x56\x50\x54\x68\xa1\x61\x56\xbc\xad\x61\xa9\x08\x90\xd8\xa6\x29\xf0\x51\x2c\xb8\x7e\x28\x57\x3c\x86\xb8\xd5\x79\x39\xed\x13\x19\xf0\xb7\x71\x33\x92\x77\xd3\x15\x23\x7d\xbd\xad\xbc\x65\x4c\x6f\x97\xef\xc1\xfc\x9f\x81\xe2\xff\xfe\x09\x86\x90\x23\xf1\x55\xbf\xc2\x7d\x0f\x5a\xda\xb1\xf3\xdd\x51\x76\x0d\x77\x68\xe0\x8b\xc1\x04\x76\x09\xad\xf0\x26\x37\xe2\x49\x40\x65\x0f\x62\x56\x88\xe8\xb8\x9a\xc7\x27\x3e\x58\x09\x43\x3b\x22\xd9\xdc\x7c\x07\xbe\xd4\x19\x85\x3a\x7a\xf5\xc7\x9a\x8a\x88\xf1\x29\x55\x0e\x25\xc7\xb9\xab\xa3\x8a\xad\xb7\x9b\x04\xf5\x0c\x19\x95\x4e\xf9\xb1\x07\x47\x34\x27\xea\x5b\xfd\x88\xb8\x89\xea\x10\xfd\x59\x3b\x44\x30\x2d\xf8\x78\x2d\x46\x4d\x9f\x12\x0a\x9e\x57\xaf\x7a\x77\xec\x01\xdf\x3d\x53\xe8\x02\xc3\x77\xc6\x8a\x7e\x73\x44\x41\x32\x4f\xb8\xfc\x63\x64\x96\x64\x8d\x43\xc4\xb3\x1d\x38\x78\xe4\xcf\x9f\xa1\x12\x14\x33\xde\xc6\x5b\x05\x31\x0e\x2d\xb4\x8b\x15\xdd\x1f\xc7\x36\x27\x84\xad\x06\xa8\x45\x99\xb0\xb1\xd2\xab\x75\x04\xde\xa7\x0a\x81\xf7\x69\xf0\x98\x1f\x56\x51\x6f\x27\x0d\x7d\x0c\x77\x44\xbc\x18\x57\x53\x1d\x25\x1c\x70\x6e\xec\xd1\xcd\x3f\x08\x3c\x6f\xf2\x07\x74\x41\x18\xc8\x77\xb4\xc6\xf6\xc6\x44\xa4\x35\x7b\xa0\x9d\x56\x21\x91\x9b\x96\x4d\xda\x8c\x4d\x0a\xc7\x76\x35\x2a\xc2\x81\x45\x83\x4e\x81\xb6\x64\xa9\x44\xca\x2b\x4b\x5e\x83\x49\xe4\x92\x4d\x8a\x18\x5e\x7a\xc8\x5b\x7f\x8a\x5e\x8d\xa3\x86\xbb\x89\x75\x5d\x89\x25\x9b\x7e\x66\x22\xf6\xaf\x44\x88\x00\x0e\x1f\x5e\xdc\x1f\xa1\x0a\xe3\x54\x89\xaa\x61\x80\x32\xeb\x91\xb1\xc7\x8c\x7d\x8f\x66\x1d\xff\x51\x93\x3a\x7e\x3f\x36\xab\x1c\x13\x48\x0d\xc7\x13\x81\x26\x19\x9a\xb3\x07\xda\x99\x5d\x31\xc3\x91\xeb\x9e\x6b\x91\x32\xf4\x98\xee\x29\x4e\xcf\x25\xc5\x19\xcc\xec\xcb\x65\x94\x11\xb4\xa0\xe5\x29\x43\xdf\xab\x59\xec\x3f\xa5\x99\xa6\x65\x5c\x88\xa3\x10\xee\xec\x0c\x42\x24\x3e\x99\xe8\x33\x54\x81\x04\xc4\x6d\xdc\x2b\x76\x20\xb3\xb9\x39\x39\x0e\xb4\xac\xa0\x59\x8d\x2d\x3b\xee\x39\x60\x9d\x56\x3d\x93\xae\x76\xba\x62\xb3\x24\x22\x8b\xa9\xb9\x39\x06\x77\xef\xea\xf8\x2b\xdf\xbe\xde\xfa\xc6\xac\x53\x26\x6a\x78\xce\x83\x34\x49\xb3\x96\x12\x6a\x7d\x9d\x9e\x18\x1f\x4f\xf4\xec\x17\x5e\xd8\xcf\x96\xfd\x80\xf8\x23\xc8\x7c\x9f\xee\x03\x9c\xc1\x9b\x0a\x17\x7a\x49\xd7\xbd\x92\xa4\x04\x89\x60\x6e\x8e\xeb\x12\xcc\xa8\xe1\x13\x4d\x34\xce\xa2\xa9\x2a\xdf\xc2\x30\x86\xda\x31\xe2\x14\xb6\x25\x92\x15\x76\x12\xfc\x35\xdb\x8e\xa3\x65\x08\xb6\x61\x0b\xba\xa3\xac\xcb\xff\x6f\x5a\xd5\xb0\xa1\xbc\x8e\xda\x3e\x16\xfe\xfb\x4d\x86\x89\x99\x0d\x8b\x28\x8e\x12\x6b\x32\xe4\x5b\xa8\xb6\x61\x18\xf3\xb1\x02\x4d\x9b\x3c\xaf\x52\x8d\x96\x8f\x7d\x2f\x80\xec\x21\xca\x97\x5b\x87\xc5\xbe\xf9\xb6\x1d\x45\xb1\x1d\x41\xc2\x43\x29\xd7\x2b\x57\x2e\xed\xcc\x6e\x63\xe0\x5f\xc0\xfb\xc7\x7a\x3c\x53\x83\xff\x53\x64\x2c\x34\xbd\xc9\x8a\xf8\xf3\xed\x97\xcc\x88\x94\xde\x59\xc6\x4c\x97\x05\xd0\x44\xbf\x87\x1d\x54\x88\xa4\x0a\x67\x3c\x9c\xf1\xa1\xef\x4e\xd2\x30\x74\x82\x82\xd5\xe0\xc7\x78\x43\x39\x02\x01\x14\x44\x17\x85\x02\xd1\xe0\x2c\x59\x8e\xf2\x02\x84\x14\x2d\x00\xe2\x58\x67\x47\x03\x2f\xbd\x9d\xd9\x30\x5d\x4a\xa2\x57\x4d\x97\x53\x28\x31\x34\x6c\x29\xa3\x43\xef\x5c\x93\x84\xd5\xb4\x90\xa5\x00\x3d\xf3\xfb\x8a\xd0\x76\x59\xd5\xea\xce\x4c\x04\x59\xb3\x07\xda\x03\x6b\x0a\x55\x13\xdc\xb6\xae\xe4\xe0\xb7\x75\x7c\x3d\x6c\x60\xe3\x21\x6c\x38\xf1\x65\xd7\x50\xed\xe1\x93\x46\x2d\x9d\x30\xb3\x36\x99\x74\xf7\x72\x11\xfd\xd9\x40\x39\xe7\x92\xf5\xe1\xec\x01\x9f\x31\xaa\x97\xed\xa1\x51\x2b\xd1\x52\x9a\x51\x7a\x39\xe3\x19\x77\xd7\x91\x69\xb8\xe2\xe4\xfc\xbc\xc7\xa6\x2a\xdf\xef\x96\xf2\x03\xdf\x3a\x42\xe7\xe6\x16\xb7\xea\xe8\x63\xd7\xdb\xd6\xf1\x4d\x81\x6d\xeb\x5b\x67\xe1\xde\xbd\xed\xa2\x9b\x26\x10\x6d\xc3\xef\x4f\xa9\xed\x9c\xd5\x9f\x64\xf4\xf8\x9c\x34\x5c\x0b\x63\x4b\x22\x2b\x6c\x3f\xa7\x4a\x6a\x3f\xa1\x37\x86\x90\x86\x68\x82\xcf\x6f\xbe\xa9\xa6\x46\xf5\x9f\x51\x6c\xd6\x74\x16\x79\x49\xf1\xae\x2f\x35\xb1\x3f\x88\xa4\xea\x6d\x29\x79\x21\x82\xee\x2b\xca\x42\x0f\x14\x38\xea\xcf\x9b\x82\xf1\xc4\xae\x0a\x4e\x5f\x2a\x08\x74\x73\x7c\xd2\xbc\x40\xa5\xe2\x16\xcd\xcd\x3b\x1a\x98\xd2\xc8\x93\xca\x74\xdf\x1a\x6a\x0f\x62\x9d\x75\x7c\xec\x9a\x13\x93\xcb\xbe\xef\x3e\xb4\x4d\x41\x05\x9c\x32\xb3\xb5\x2a\x19\xdd\x95\x12\x52\xf7\xea\x4a\x36\xc9\x09\x7e\xec\xb0\xe7\x1f\x29\xec\xf9\x47\xde\xa5\x29\x8b\x12\xc1\x11\x20\xef\x93\xa2\x8a\x84\xf1\xf4\x73\x5c\x01\x6d\xd0\x53\x68\xa7\x65\x96\xdb\x78\x45\xca\x77\x58\xd0\xcf\x02\x20\xcc\x27\x2e\x5d\xad\x26\xff\x8a\xcd\x76\xfa\xcd\xf9\x32\xdd\x81\xb0\x24\x69\xfe\xb9\x13\xaf\xcb\x73\x01\xd1\x87\xa4\x46\x5e\xb2\x0c\xaa\x05\xb8\xba\x5d\x9d\xc7\x55\x53\x36\x46\x08\x80\xfc\xf1\x70\xa0\xbc\xea\x0e\x6b\xba\x1a\x05\xf4\x35\xd5\x3f\x55\x05\xbd\xa7\xc6\xdd\x1d\x7c\x85\x70\x6f\x1b\x84\x3e\xec\x2b\xa1\xb5\x3d\xee\x7c\x80\x07\x76\x14\x33\x97\x4f\x6a\xcc\x5e\x93\x17\x58\x2e\x51\x76\xc0\x3c\xe4\xe3\x75\x1f\xa2\x0d\x4d\x16\xa6\xf9\x94\xcf\x6c\x4e\x80\x16\x21\xa4\x76\xbf\x25\x6e\x78\xbf\x2f\x33\x8a\x0a\xa2\xe4\xd0\x0f\x20\x03\xbd\xa1\x6c\x7f\x6e\x68\x4c\x55\x39\x1c\x9a\x2c\x8a\xd7\xa6\x94\x71\x02\xab\xf7\x38\x0e\x57\xb5\x19\x61\xee\xe8\x92\xaa\x2d\xb3\x74\x64\x4d\xc2\xdc\x6b\x69\xa8\x7b\xcc\x12\x22\x08\xfe\xff\x98\x4e\xfc\x0f\xaa\xe0\x18\xc6\xd6\x64\xb6\x37\x4d\xcc\x5b\x07\x99\xf1\xb6\x8c\x08\xfc\x9c\xf6\x5c\x75\x29\x52\xaf\xf6\x09\xee\x28\x0a\x97\x41\x7d\xc3\x52\xf6\x91\x52\xb3\xb8\x83\xc1\x83\x4c\x67\x5b\xc7\xab\x33\x9c\xd7\xb8\x37\xad\x8d\x3c\x8c\x8a\xa8\xa5\xd6\xdc\xb3\x8a\x80\x71\x76\x2b\x5d\xbd\x9a\x2c\xed\xaf\xd0\x44\x43\x7c\xc0\x89\x3f\x9f\x28\x9d\x89\x72\x98\xef\xf2\xc4\x91\x6d\x9a\x2f\xfd\x2f\xc7\xbe\x9a\xc8\xaa\x2b\x02\x69\xa3\x37\x41\xf5\xec\x27\x7e\xa9\xa3\x8a\x02\x1b\x9c\xd6\x22\x9c\x02\x66\x11\xa0\xaa\xcf\xad\x57\xdb\x35\x12\xe4\x73\xba\x47\x9a\x44\x43\xe3\x6d\xe0\x64\xd9\xf0\x6c\x82\x63\x4a\xf3\xe9\xb6\x52\x1c\x1b\x45\xc9\x80\x5c\x02\x5b\xde\x8a\xe9\xaf\xc7\x4a\xd7\xf8\xaf\x27\x56\xad\xf9\xf9\x76\x5e\x64\x76\x54\xa4\xcb\x51\x62\x72\xc6\x71\x61\xdb\x9d\xee\xf8\xfd\x78\x7a\x5d\x23\x71\x57\x93\xc7\xe8\xde\x45\xd2\x99\xae\x13\x0d\xb2\x8f\x94\x38\xe2\x59\x45\xb5\x7c\xbc\xa3\x8a\x88\x67\x74\x96\xf2\xa7\x63\xef\x2c\x0d\xeb\x59\x14\xc2\xfe\x54\x73\x12\x1f\xa0\x1a\xa1\xd3\x5b\x44\xcc\x47\xb5\x4f\xeb\x51\x07\xd3\x29\x93\x68\xc5\x66\xb9\xea\x57\x60\x21\x7a\x3d\xf0\x81\xf3\xeb\x0d\x56\xa4\xcf\xb7\x7b\x99\x59\x72\xa4\x31\xce\x3f\xf5\x10\x98\x9a\xe0\x5e\xce\xcf\xef\x6f\xd3\x7a\x29\x9f\xc2\x0a\xc5\xb2\xbc\x7c\xe2\x4a\x55\x71\x6a\x8a\xc1\xb4\x9f\xf0\xf7\x35\x9d\xe9\x0d\x2d\x24\x7a\xcb\xf3\xd7\xbf\xf3\xbd\x89\x50\xc1\xed\x37\xe6\x95\x92\x29\x49\x4e\x61\xdb\x35\xad\x19\x32\x2a\x17\xe4\xd7\x84\x7e\x66\x96\x00\xed\x6e\x39\x0d\xa5\x3b\xca\x12\xe1\x8e\x6a\x44\x0f\x4c\x16\xdb\x61\x4b\x21\x95\x15\x56\xe4\xad\xa6\xee\xf9\x20\x4d\x6c\x5e\x00\xdd\x84\x88\xf7\x9a\x22\xbc\x5d\x7b\x28\x9a\x70\x75\x60\x0a\xbb\x62\xb3\xe9\x2a\x87\xc2\xaa\x70\x4c\xaf\x47\x9b\x58\x54\xc1\x9d\x7f\xac\xe3\x7b\xf8\x57\x54\x01\x98\xb0\x65\x2d\xa7\xee\xf5\x3a\xbe\x40\x5e\xbf\x5f\xd0\x7a\x51\x1e\x96\x79\x3e\xe3\x01\xce\xf0\xcf\xc7\xef\xde\x55\x65\x8a\x2b\xaa\xa4\xff\x16\x35\x37\x19\x7e\xaf\x0a\x8b\xdd\xa8\xd7\xb3\xd9\x94\x4f\x83\xae\x29\x44\xd8\xb9\x9a\xfe\xb1\x9a\xb0\x59\xda\xb7\x79\x9e\x66\x9a\x55\xcd\x70\x1d\xa1\xc6\x36\x14\xac\x87\x69\xb8\x4c\x66\x11\x2d\x2f\xe5\x8e\x8a\x00\x1f\xbb\xc1\xd6\xcb\x52\x29\xf4\x3b\x72\x97\x73\xad\x38\xab\x88\xea\x99\x5d\x35\x19\xa7\xd8\x8e\xc2\xe1\x8c\x83\x2f\x04\x1a\x35\x92\x95\xf9\x0c\xcd\x46\x87\xa5\x98\xf7\x58\x0a\x0f\xdd\xfe\xb4\x9a\xcb\x9b\x6f\x8e\x95\xf6\xdd\xa9\x40\xd3\x7f\xfa\x96\xcc\x8a\xa7\x55\xad\x06\xe8\x1c\x87\xbd\x77\x0f\xed\x42\xa0\x2c\xd7\x2e\x36\xc1\x2a\xe2\x74\x45\x34\x1c\xb9\xf7\xa2\xf0\x6e\x67\x55\x43\x3d\x34\x59\x6f\x5a\xa9\x7e\x32\xe1\x80\x4f\x90\x40\xa2\xab\x00\xfb\x4e\x3e\xde\xba\x9d\x1c\xdc\xb3\xd0\x7e\xf1\xc5\xc7\xaa\x5b\xbc\x8d\x78\x48\xde\x5e\xeb\xab\xbf\xc6\x59\xfa\x71\x2a\x55\x61\x17\x44\x87\x1a\xd5\x75\xb2\xb1\x92\xff\x8f\x52\x95\xbc\x6d\xc2\xd0\xd4\x0a\xf2\x5c\xf1\x87\x7c\x06\xff\x4b\xe0\x53\xfa\xfb\xe3\xd6\xec\x81\xcd\xd3\x13\xbc\xb6\x03\x2f\xb4\xfb\x64\x05\x7a\x50\xf4\x0f\x6f\xe8\xaa\xe2\x29\x55\xa6\xd9\xd6\x51\xee\xc6\x06\xf5\x7c\x2c\xda\x4f\xac\x7b\xfb\xd3\xb3\xd8\xee\xdc\x89\xa3\x12\xee\xfa\x7b\x1d\xc5\xad\xd8\xcd\xda\x0d\xa8\x24\xdc\x6b\x6a\xce\xf5\xec\xc8\x64\x05\x13\x4b\xbc\xf0\xcc\x71\xc5\xbb\x3b\xae\x62\xb0\x3c\x1c\xd8\x21\x7a\x00\xb8\x65\x0e\x74\xf8\xa4\x01\xb1\xff\x3c\x5a\x9e\xdc\x79\x42\x8d\x06\x09\x1f\x1f\x2b\xd0\x6c\x5e\x46\x05\xd6\x00\xc4\x6d\xb7\xc6\x4a\x95\x7d\x3b\x9a\x5d\xce\xc5\xc3\x45\x66\x17\x14\x40\xe1\xa4\xba\xd6\x91\x59\x03\xaa\x78\xc1\x1b\x4e\x38\x88\xc6\x59\xc5\xcc\xe5\x97\xcb\xa2\xf4\x18\x75\x0e\x55\xe1\x92\xc5\x8f\xa8\x68\x27\x08\x0b\x29\x0d\x0c\xd2\xd8\xee\xa0\x8f\xb3\x46\xae\xd6\x5b\xd4\x0a\x47\xfc\xca\xd8\x31\x59\x03\x54\xce\x29\x1f\xe8\x99\x8e\xcf\xfa\xbb\x71\x9a\x56\xe9\x59\x8f\xea\x4d\xd5\xdf\x0b\x6a\x64\x4a\xbb\x32\x79\x38\xc9\xef\x3e\x54\x9e\xe7\x17\xbf\xfe\x4f\x16\xbe\xfe\xd5\xf9\xdd\x34\x37\xf0\xc7\x57\xa8\x94\x2d\x4d\x19\x65\x77\x87\xba\x29\x4b\x73\x06\xbe\x8d\xff\x53\x3c\x25\x04\xce\x6f\x61\xa6\xb8\x68\xd3\x49\x78\xdf\xa3\x90\x03\xfb\xd6\x4f\xc6\xca\x7c\x80\x0d\x32\x10\x66\xdc\x9a\x48\x8a\xf6\xcd\xb7\xa3\x24\xcc\xac\x71\xa0\x0d\x6d\x0d\xc4\xc7\x2a\x2e\xb4\x39\x5a\x0f\x88\xfe\x37\xb4\x93\xc4\x86\x7b\x39\x2b\x11\xff\x95\xf0\xcd\xe9\xaf\xb6\x12\xce\x57\x53\x92\xe2\x42\x2c\xcf\x29\x52\xa0\xd4\xc5\xce\x6a\x81\x85\xff\x5d\x0d\xd7\x22\x2d\x97\x06\x3b\x3d\x24\x60\xd7\xba\x8f\xd1\x66\x3a\x5e\xd6\xfe\x3e\xad\x5d\x40\x74\xb7\xa0\x4c\x87\xa5\x70\x63\xac\x68\x8f\xd3\x98\xb9\x78\xa4\xaf\x35\xe2\x1f\xc2\xb4\x4c\x0a\xf1\xc7\x43\x31\xf8\xb6\xa6\x1c\xdf\x56\xae\x26\xfd\xa8\x6b\x33\xc0\xec\xf0\xcc\xaf\xd1\x55\xf0\xb1\x2a\x4d\x96\x49\xdf\x44\x19\xef\x5f\xec\xd4\x45\x0f\x5d\x5c\xbb\x14\x81\x2a\x2e\x1d\x37\xe1\x79\x17\x2c\xfb\xf6\xff\xb9\x06\x96\xd3\xc2\x7e\xd2\x89\xb7\x0f\x0f\xf6\x1b\x98\x37\xb9\xe9\x57\x17\x5f\x8d\x56\x17\x0d\x28\xa8\xd6\xd3\x0e\x3e\x4f\xca\xcc\x45\x9a\xf1\xdb\x93\xca\x2a\x96\x3d\x65\xdc\xb4\xdf\x79\x67\x3a\x5d\x91\x51\x5a\x14\x5a\xff\x09\x85\x56\x87\xc1\x77\xb0\x9b\x6b\xae\xb2\x36\x5a\xcb\xcc\x30\xf2\xe6\xd6\x8c\xd1\x0f\x34\x5e\xdf\xef\xe2\x3d\x22\xb3\xab\xea\xde\x59\x55\x82\x3b\xdb\x68\x22\x1b\x9a\xc4\xf4\x22\x93\x28\xd7\xc4\x6b\x81\x86\xf7\x29\x20\x49\xdf\xda\x58\x82\x2b\xb6\x95\xa4\x75\x50\x2c\x26\x1b\x2a\x8e\x45\x16\x2d\x2d\x39\x9c\x61\x0d\x2e\xc1\x27\x4d\x75\x4a\xfb\x8a\xcd\xc2\x88\x2d\xb6\x18\xb7\x1b\xf8\xda\xd6\x45\x85\xb7\xed\x45\x79\x11\x25\x21\xd8\xfe\xb3\x07\x18\x87\x88\x1e\x33\x1f\xbb\xb9\xb9\x6a\xb2\xe1\xb4\x8b\x71\xdf\x78\xa6\xe3\x9d\x4f\xcf\x2b\xdb\xbb\x4d\x65\x22\xf0\xc4\x84\x89\xf3\xfc\x7c\xbb\x97\xa6\x43\x59\x32\x9c\x00\xb5\xab\x40\x1c\x73\x0d\xb7\x2c\x5a\x1a\x14\x8f\x2a\x0b\xbb\xcf\xa0\xe9\xef\x94\x23\x1c\x9c\x66\xfb\xfa\x64\x79\x98\xfa\x7a\x67\xbf\x48\x43\x04\xed\xcb\x1f\x68\xd0\xf9\xdf\xa5\xbd\x99\x86\xd8\xbf\xf8\x52\x47\xa9\x53\x5d\xaa\xa1\xc8\x54\x06\x3f\x22\xe2\x42\xda\xf2\xab\x47\xdd\xa2\xd0\x09\x89\x99\xcc\x4e\xab\x89\xf0\xe1\x58\x37\x9b\x3c\x95\x8c\x1d\x62\x99\x44\xea\x40\x23\x61\x5c\x76\xbb\x0c\x3d\x13\xdb\x55\x7a\x06\x22\x20\xd2\x04\x7c\x4a\xcb\x62\x60\x33\x8c\x42\xac\xbc\x1b\x34\xc6\xf9\x58\xf1\x34\x46\x59\xba\x62\x77\x68\x85\x5a\x0f\x96\x82\x67\xb2\x43\xc8\xea\xed\x42\x51\xd8\xee\x2a\x8d\xd6\x81\x5a\x6a\x56\x6d\xb4\x34\x70\x34\x28\xc7\x86\x71\xa2\xeb\xc7\x6a\xae\xd0\x25\xaf\xf3\xb2\xb7\xd3\x43\xe7\x13\xb5\x26\x9a\xa4\x48\x71\x5b\x8c\x7e\x08\x7c\x89\xb5\x19\x6d\x10\x25\xcb\xca\x08\x0f\xb1\x22\x1f\xaf\xfb\x91\x95\x2f\xaf\xd1\x36\x00\xb8\xd4\xdf\xeb\x78\x0c\xf1\xae\x75\xa5\x74\x03\x43\x0d\x31\x5a\xa0\x51\x82\x79\xcd\xf4\x16\x01\xa1\x57\xcf\x10\xbb\xe9\x71\x5d\x1f\xce\x4c\x04\xda\xa3\xc4\x26\x1a\xfe\x19\xec\xf6\x75\xb2\x7f\x34\xa5\xc9\xee\x47\x54\x7f\x83\x09\x11\x48\xe0\xee\x4d\xa4\xb1\xd5\x1e\xb3\x65\x17\xc6\x76\xbf\x1d\x49\x37\x9f\x74\x1a\xa6\xe1\x4b\x69\xc4\xdc\xe4\x6f\x39\x42\x8c\x66\xc7\x28\xf3\x9b\x5e\xb4\xe2\x8a\xce\xd2\x8c\xaf\x6e\x8b\xdd\xdd\x02\x0f\x3d\x3d\xaa\x12\xdf\xf2\xb9\xfc\x39\xf3\xdc\xdf\xb6\x9b\xbb\x9c\xb3\x1c\xa6\x99\x2a\x64\x9e\x56\xe2\x34\xa7\x1b\xaa\xfc\xed\xd5\x2c\x4d\x96\x7a\xa9\xb0\x4a\x59\x98\x3b\xf0\x68\xff\x4b\x63\x6d\xf0\x41\x6a\x6d\xf2\xc7\xac\x7c\x12\xf8\x56\xe6\xa7\x63\xcd\x1b\x5c\xb2\xd5\x5c\x7a\xd4\x77\x6f\x0f\xc3\x1e\x01\x68\x79\x24\x03\x08\x60\x91\x0b\xb0\x9a\x13\xc3\x9b\x02\x25\x7b\x73\x51\xd9\xda\xbe\x03\xd3\x16\x46\xa5\x21\xab\x03\x5c\x79\x7b\x47\xdb\x46\x34\x6d\x32\xd2\x04\x63\x8d\x00\x20\x16\xb8\x64\x2d\xc2\x41\xbe\x73\xfe\x6d\x3c\x65\xa4\xd1\x0f\x02\xdf\x37\x4e\xd2\xa4\xba\xb5\xd8\xe6\xcc\x48\xc7\xdf\x7f\xa4\xba\xee\x1f\x35\xb5\x5c\x97\x22\xc3\x9d\x66\x69\x13\xfa\xc0\xe0\xc2\x78\x2b\x02\x7c\xe1\x85\xfd\xed\x62\x85\x9e\xb4\xa3\xa3\x68\x58\x8c\x4e\x85\x4d\x94\xed\x6e\x7d\xed\x90\xe3\x25\x55\x0f\x55\xde\x25\x8d\x4b\x56\x6f\x08\x94\x55\xde\x87\x5c\xb8\xc7\xd2\xb6\x09\x98\x2f\x92\x0f\xb8\x7c\x60\x1b\xf9\x3d\xd5\x98\xe3\x29\x2d\xe4\x03\xb7\x3b\xbc\x74\x1d\x97\x86\xe4\xfb\xc6\xc4\xad\xec\xdd\xdb\x1e\x18\x9e\x55\x42\x92\xa1\x59\x25\xf4\x19\xbf\x4e\xe5\x83\x74\x35\x9f\xf1\xbb\xd8\xef\xd1\xab\x47\x34\x7a\x59\x0b\xdf\x5e\xae\x49\x1b\xd7\x72\xa2\xc7\x94\x48\xd5\x73\x33\xbe\x3a\xf3\x01\x5e\x28\x16\xb1\xf3\x81\x87\x1a\xdf\x19\xfb\xc5\x8d\x9a\x64\x9d\x27\x6b\xae\x36\x26\x59\x7b\x86\x36\x22\xb1\xd6\xaa\x3e\x2a\x55\x7a\x48\xf3\x8a\x8e\x6a\xdd\x08\x8e\x9e\x29\xaf\x45\x81\x0f\x87\x76\x77\xaa\x97\x25\xe5\x05\x7a\x12\xf2\x4c\x69\x3c\x73\xc0\x36\xf6\x1e\x9a\x53\xe4\x39\x82\xd4\xea\xf3\xb4\xc8\xa2\xd2\x78\x33\x50\x7d\x2f\x4e\x13\xb1\xbb\x3c\xda\xa9\x31\xe6\xf7\xcd\xf3\x82\xfb\xa4\xd2\x5f\x7a\x05\x2b\x31\xa6\xe2\x03\x4d\xcf\xda\x6c\x84\x90\xf5\xd3\x38\x4e\x57\x5b\xaa\x92\x7b\x44\x31\xe8\x8e\xa8\xb6\x9c\x79\xb9\x34\x19\xe1\x82\x7d\x94\xcf\x6a\x9b\xe2\x7b\x33\x69\x3a\xbb\xd0\x5e\xaa\xf6\xa8\x83\x52\x9f\x00\x4c\x8a\x8f\x55\x65\x6d\xd5\x66\xf6\xf3\xf4\xa0\xf0\xf6\xd1\xab\x10\x02\xb2\xd2\x5e\x61\xf1\x26\xae\xd0\xd2\x43\xc0\xa3\x65\x2b\x40\x51\xb5\xa7\xc7\x86\xa7\x00\x71\x72\x2c\x48\xd7\x02\xb5\xa6\x4f\xaf\x7b\x03\xcb\x3b\x58\x83\x58\x51\x85\x00\xb0\xe8\x0a\x7c\xcc\xef\x1f\xbf\xf8\x08\x2c\x40\xb0\xf5\x5f\xd0\x6d\x11\xae\x81\xb0\xb5\x23\x81\xe8\x70\x2d\x9f\x8c\xbd\x9b\xc8\x7b\x54\xc2\x11\x4c\x32\x0d\x25\xe1\x4c\x2b\x37\xa7\x47\xd7\x49\x39\x4d\x44\xf9\x95\xe6\x63\x54\xad\xd4\xbb\xaa\x47\xe3\x0c\x70\xab\x2b\x10\x7b\x79\xba\x36\x51\x80\xc4\x65\x63\x51\x3d\x51\x53\xd0\xc7\xc3\xe1\x72\x4b\xe0\x09\x58\x1f\x05\xaa\x25\xf9\x36\xc6\x0e\xd7\x14\x1e\x4e\x35\x75\xf9\x03\xfb\x8b\xa9\xe6\xf4\x4d\x25\x22\x6a\x92\x5e\xbb\x75\x68\xc1\x17\xf3\xf6\xee\xe5\x52\xd6\x4d\x7a\x26\x62\xda\xa1\x2a\x41\xb7\x71\x73\x8e\xc9\xf3\xcd\xaf\x73\x90\xfe\x17\x81\xc7\xa8\x5e\xa1\x89\x2b\x20\x3a\x4c\x5c\x54\xbc\x8e\xe9\xd2\xc7\x2d\x88\xd1\x61\xa0\xf2\xa4\x92\x5b\xa3\xf7\xe6\x1e\x8d\x67\x9a\xb1\x60\x22\x62\x0d\x79\x9e\x1c\x79\xac\xab\xfd\xfe\xb6\x76\xf8\x64\xcc\x05\xa6\xcf\xdd\x80\xc4\xbb\x9d\x6d\xab\xeb\xc9\x00\xc8\xc7\x56\x07\x94\xc9\x4a\xb0\x4e\x83\x18\xc9\x42\x0b\x63\xcd\x89\xf2\x7f\x43\x60\xa2\x97\x54\x4d\x43\x17\x9f\x4e\xa2\x92\x87\xc7\xfa\xa6\x0a\x72\xb7\x63\xd2\x70\x9a\x4e\xa5\x12\xa0\x83\xaf\x4e\x4c\xd9\x85\xc5\x85\x36\xa9\xe4\x78\x2b\xd9\x93\x2a\x5b\x3d\xf9\x70\xfd\x8b\x34\x8e\x3c\xf8\x05\xd5\x62\xa4\x3b\x7c\xec\x20\x94\x43\x93\xd8\x72\x45\x11\xb5\x71\x2d\xa7\x95\xe7\xf5\xe9\xe0\x19\x95\xd1\x87\x59\xf5\xcd\x26\x46\x90\x25\x22\x66\x2d\x67\x53\x7c\x47\xe9\x19\x5e\x1c\x4b\x9f\xa6\x17\xe5\x2f\x97\x26\x8e\xfa\x91\x44\x7f\xa8\x38\x43\x2a\x86\x8f\x55\xf4\xbf\x3a\x30\xe1\xf2\x94\x87\xbc\x3c\xa0\xb5\x1a\x0f\xf0\x34\xcd\x61\x0c\xa5\x1d\x6a\x27\xc9\x2c\x94\xb1\x75\x7f\x52\xf3\xfe\x77\x39\xa2\x9b\x82\x4a\x71\xa8\x27\x45\xc6\xad\x33\x6b\xef\xde\xf6\xd0\x64\xcb\xc4\xf6\x20\x4e\xaf\x22\x97\x3d\xcf\x89\xd8\x31\x25\x6b\x79\x47\x39\x17\xdc\x68\x5c\xe3\xf3\x81\xb5\x52\x10\x75\x65\x5e\x45\x0a\x6e\xd2\x93\x8b\xa3\x64\x59\x9e\x1b\xe2\x9f\xdf\xc6\x74\xe4\x13\xbd\xbf\x8f\xcc\x20\x9b\x52\x11\xd7\x49\x45\x3f\x86\x3e\xb4\x64\x32\xfe\x43\xe5\xff\xcb\xd8\x9f\x05\x49\x92\x5d\xe7\x81\x70\x55\x64\x66\x55\x75\x55\x57\x77\x57\xa3\xd1\x02\x45\xe1\x67\x90\x6a\xa9\xb5\xb4\xb5\x51\x26\x93\xfd\x12\xf4\xe0\xa1\xac\x24\x80\x4a\x23\xb2\xcb\xb2\x0a\xd5\x54\xcf\x4b\xdf\x8c\xb8\x11\xe1\x9d\x1e\xee\x01\x77\x8f\xcc\xce\x36\x3d\xe8\x61\x1e\xe6\x41\x26\x9b\x91\xd9\x98\x69\x16\x1b\x23\x25\x6a\x21\x87\x23\xee\x06\x72\x86\x40\x04\x08\x10\x00\x01\x10\xbd\xa3\xf7\xee\xda\xf7\xac\x7d\x5f\xb2\xc6\xfc\x7c\xe7\xdc\x7b\x3c\xdd\x8b\x36\x6f\xee\x55\x19\x11\xbe\xdc\x7b\xd6\xef\x7c\x5f\x66\xd3\x8c\x26\x44\xdd\x3e\x76\xee\xfe\x26\x59\x07\xc1\x74\xd2\x4a\x74\xde\x43\x71\xd0\x14\x46\x40\xc0\x9e\x6a\x07\xe2\x5d\xc1\x95\xdf\xa9\xd4\xf3\x0f\xcd\x36\x63\x93\xa6\xc9\x6a\xc3\x27\xfd\x3f\xa3\x77\x26\xe0\x9a\x1a\x1a\xb7\x6c\x14\xb2\xec\x27\x8c\xeb\x3b\x0a\xb2\xc0\xbd\x38\x11\xa9\xa8\x61\x3d\x69\xa7\xc6\xcd\x44\x38\x6e\xe6\x05\xd1\x91\x39\x5f\xf3\xca\x9a\xaf\x98\xf6\x37\x46\xd2\x5e\x04\xa8\xf8\x5f\x61\xd5\xf0\x89\xc2\xaa\x65\xb6\xed\x66\x58\x10\x29\x9f\x54\x00\x86\x93\xaa\xc8\x82\xd2\x60\x87\x54\xb6\x31\x74\x78\x86\x22\x26\x01\x30\x92\x91\xe0\xff\x18\xfb\x82\xdf\x1f\x93\x97\x45\x0e\x73\xd6\x55\x9c\x3a\xa3\x9c\x39\xd7\x5f\xd2\xda\x2a\x92\x22\x95\xb1\x6c\x0d\x27\x35\x76\x51\x0f\x1a\xa5\x61\x6e\xc2\x98\xc9\xcc\xf0\xff\x0f\x02\x45\x4a\xc2\xe5\x40\xc9\xee\x55\xf9\xfc\x70\xb9\xe4\xac\xaa\x4a\xb7\xf5\xb8\xdd\x35\xe5\xdd\xfe\x90\x9e\x8a\x9b\xe9\x5c\x9c\x95\xf9\x69\x05\x87\x25\x5e\xaa\x6c\x7b\xb1\xb2\x60\x20\x1e\x04\x25\x76\xd6\x62\x65\x71\x8a\x51\x92\x38\x2d\xbe\x19\xdd\x1c\x9e\xe9\x74\xd3\xc7\xf3\xf3\x5c\x2b\xfa\xa0\x8e\xe4\x82\x98\x3c\x79\x97\x89\x92\x99\x4f\xd4\xaa\x74\xa5\x7f\xaf\xd9\xb1\x51\xb8\xc2\x5c\x32\x58\xfc\xc7\x7c\xdf\xff\x9f\x7b\xd5\x2f\x1e\x2e\xe3\xef\x76\x73\xd4\xbe\xd4\xaa\x91\xef\x69\x2e\xa3\xc6\x2a\xd9\xdd\xef\x92\x5d\xa5\x86\x62\xbf\x41\xcc\x78\x0d\x47\xb6\xf5\xa9\x22\x7e\xf9\x54\xd1\x6b\x84\x71\x16\x76\x2c\x4d\x20\x02\xfb\x0e\xc8\x1e\xeb\x11\x28\x4d\x25\x68\xa1\xc3\x08\x5c\x55\xc3\x27\x5c\x2a\x64\x19\x62\x65\x39\x56\x4d\x14\x65\xd3\xc5\x1f\xba\xa1\x89\xfd\xfe\x84\x5e\x91\x52\x3a\x98\x93\x13\x75\xbb\x0b\x7b\xbf\x0a\x30\x42\xad\xba\x5e\x9d\x05\x4d\x56\x7d\x9c\x83\x1d\x78\x4b\xe1\xfd\x6f\xd5\x7e\x66\x25\x09\xdb\x42\xfc\xc6\x63\xa5\x58\xc1\x32\x63\x5a\xcb\x46\x9c\x0c\x47\x91\x80\x97\x99\x54\x4f\xd1\x8b\x96\xf9\xa0\xd6\x84\x4b\x11\x90\x24\x44\xc3\x7c\x5c\xc1\xc8\x89\x9f\xce\x4d\xbc\xcc\x86\xc5\x31\x92\xee\x9d\x73\x8c\xa4\x8e\x5d\x26\x8c\x2d\xa3\x87\x50\x51\x5a\x07\x31\x3e\x9f\xd4\x41\xf0\x62\xbb\x9a\x45\x36\xcf\x6d\x3a\xe3\x47\xd0\x31\x54\x8c\xdd\xb8\x03\x13\xb3\xa2\x0b\x58\xac\x0d\x37\x6b\x51\x98\x1e\x61\x2d\xd4\x16\x62\x14\x8a\xfe\x81\x96\x56\x97\x65\xfa\xb8\xc3\x3b\xad\x98\x28\xb4\xa9\xe2\x9d\xbe\xa8\xf5\xfa\x2f\x3e\x54\x8a\x37\xe9\x76\x43\x56\x22\x93\xa1\x08\x5a\x1a\x32\x2e\x21\xd3\xf8\xed\x0e\x88\xd6\x1c\xa9\xa9\x8b\x55\x00\x11\x2b\x11\x2b\x92\x25\xda\xf3\x8b\x2d\x25\x68\xfb\xf8\xa4\x3c\xa8\x58\xad\x65\x34\x3b\x24\x8f\xee\x6a\x55\xc8\x2b\xef\x29\xa6\x94\x7b\x45\x3c\x2d\x33\x7f\x36\x57\xc0\x68\x96\xa7\x90\x39\xd4\x86\x23\xf5\xbf\xa9\x19\xfe\x6f\xba\x72\xf5\x70\x14\x2f\xd3\x3d\xb3\x30\x8d\xea\xfa\xde\x54\x58\xd4\x30\xce\x49\x4a\x27\xb7\x8d\x62\x8d\x20\x7a\xbe\xaf\xe0\x42\xf7\xc7\xbb\x35\x35\x7b\xfc\x0b\x0d\x97\xea\xde\xc0\xee\x93\x6c\xa4\x78\x76\x58\xc3\xd7\x02\x35\x04\x33\x83\xac\x0d\x60\xd2\xe3\xc8\x26\x59\xcf\x1a\x79\x33\xb2\xf9\x3d\x24\xe7\x81\x8a\xc7\x89\xa0\xf1\xec\xb3\x4e\xfc\x80\x22\x5e\x84\xff\x1f\x13\x43\xb0\x9b\xd8\xfd\xfa\x57\x19\x77\x76\x52\xcf\xf3\x3d\xd2\x2a\xb2\x10\x57\xa9\x72\x40\xd6\x9d\xad\xc6\xaf\x1e\xe0\x78\xf2\x2f\xc7\x5e\x43\xf3\x2c\x54\x11\xe0\x42\x8e\x8d\x95\x70\xfd\x45\xe4\x0a\x48\xe6\x76\x4d\x8a\x90\xc5\x55\x84\x37\x4d\xca\xbd\xe4\xea\x7a\x3e\x69\x3f\xc1\x09\x05\x42\xf7\x0d\x2d\xcd\xfe\xe7\x04\xb6\x46\x01\xf1\xc7\x8a\x60\x6d\x0a\x09\x49\x69\x08\x0e\xee\x7a\x8a\x30\xdc\x80\x6d\xfd\x7a\xe0\xd6\xac\x59\x82\xf9\x91\x66\xae\x4f\x15\x2e\x28\xe4\x5c\x6e\x96\xed\x6e\x1f\xe2\x7f\x18\xa8\xf1\x41\xbc\x38\x98\xc6\x1b\xf0\xac\x3c\x8a\x84\x95\x8e\x30\x4b\x7a\x0c\x4e\x61\xff\x45\x47\xf2\xb2\xae\x86\x8c\x79\xe2\x09\x0e\x74\x07\x5a\x87\x70\x8e\xdb\x5b\x9e\x90\xf5\x34\x36\x2e\x9e\xd8\x4d\xca\x55\x37\xde\xa8\xb4\xe2\x68\x02\x34\x35\x71\x0f\xcc\x8d\xae\x43\xed\xef\x50\x01\x33\x56\xc3\x21\xb0\xc8\x3c\x14\x4e\xbe\x1b\x36\x04\xc5\x01\x57\xab\xde\x27\xc4\x06\x0f\x2a\x36\x7d\x7e\xbe\xd9\x4d\x12\x2f\xdc\xc2\x2a\x87\x25\xc5\x43\xef\x63\x86\x36\xda\xe6\x07\x14\x76\x52\x7d\x47\x90\xd0\xaa\xe1\xcd\xc2\x4f\xc8\xfe\xce\x07\x4a\xac\x9f\x9b\xea\x62\x7c\x6b\xa4\xc5\xda\x3c\xe6\xe2\x98\x3f\xd1\x5d\x16\x06\xc4\xdd\x6e\x15\x64\x79\x9a\x70\x11\x5d\xe3\xb8\x14\xc4\x4e\xb4\x9f\x1f\x54\x3a\x28\x73\x07\x9b\xc6\xa6\xc9\x52\xd8\x66\x24\x98\x5e\x4b\x58\x7c\xd7\x55\x7f\xf5\x7d\x35\x5c\xdd\x35\x69\xde\xb7\xe9\x36\x2f\x8b\x0f\x2d\x5e\x78\xea\xcb\xa8\x56\xc0\xe8\xfc\x00\x8b\x19\xf6\xeb\x7e\xe0\x27\xe6\x18\xfc\x08\x97\x79\xa7\xee\xea\x86\x69\x32\x18\xe6\x1c\xff\xc2\xda\x9c\xd7\xa6\xe7\xbc\xdb\x0e\xdd\x24\x9d\x2e\x5e\x30\x5d\xf4\xe7\xf7\xb4\xd4\xf4\xc9\xcc\xc4\x7b\x29\xe8\x96\x8a\xc6\xf3\xe3\x2a\xce\x36\x19\xe8\x2d\x5f\x72\xa5\x6a\x9f\x2d\xae\xbb\x31\x9e\xa1\x4d\x57\x4c\x16\xae\x60\x2a\x1e\x6b\xfa\x12\x2c\x9b\x84\xc0\xbe\x37\xfd\xef\xbd\x0b\xeb\x9b\x38\x26\xd6\x61\x9f\xa6\x9d\x53\x69\x5a\x95\xcb\x9d\xa4\xbc\x93\x38\x4f\x13\xcc\xa7\xa2\xe8\x72\x7a\xac\xf8\x97\x4f\x97\xd0\x55\xa3\x34\x41\xb3\x1d\x65\xf7\xc3\x4a\x79\xe2\xb0\x82\x4f\xb5\x6d\x5a\x84\xe5\x11\x03\xf0\xf1\x92\x1f\xa8\x17\xfe\xa0\x06\x39\x76\x80\xa4\x3a\xed\x8a\xe8\x85\x38\x49\xff\xc2\x14\xe0\x4d\xdc\x08\xbc\x3c\xff\xa7\xbe\xa7\x97\x0c\x06\x89\xe8\x44\x09\xa6\x59\x6b\x19\x8c\x75\xfb\xe7\x7e\x65\x09\xec\x5b\x68\x0e\x6c\x9c\xad\x5a\x93\x36\xbc\xca\x15\x40\x48\x32\x9a\xe9\x9e\x71\x12\x45\xa6\x27\x41\x19\xb3\x44\x6a\xe6\x8e\x33\x5e\x8a\x71\x60\xa2\x88\x32\x25\xa5\x7d\x28\x48\xe1\x8f\xc9\x29\xb3\x0e\x62\xcb\x87\xa2\x00\xe3\x49\x06\xe5\x07\x10\x69\xd0\xbd\x70\x23\xf8\xaf\x13\xf8\x2e\x78\xc0\x5b\x14\xb1\x4a\xbe\x50\xf7\x8e\x97\xd2\x24\x2e\x22\x49\x7a\x0e\x1b\x20\x23\xda\x38\xae\x28\x3f\x46\x71\x37\x49\xf3\x51\x6c\x78\xc0\xc4\x69\xb1\xaa\x96\xc1\xc3\xca\x36\x59\xdb\xc6\x26\x0d\x93\x19\x5f\xf4\xdd\xda\x2a\xcb\x6d\x3a\x51\x4e\x38\x03\xa4\xdf\xef\xe1\x1e\x84\x9b\xa7\x3a\x1b\xd1\x5c\xb5\x61\xda\x29\x1b\xe7\xc5\x59\x67\x3e\xea\x74\xe9\x33\x2b\xb8\x15\x6c\x14\x8c\xf0\x2a\xc8\xda\x9c\xe3\x32\x92\xd7\x94\xa7\xa1\xa4\xd6\x52\xf5\x6b\x38\xf1\x8f\x63\x6a\xd4\x8f\xe6\x21\x3a\x22\x62\x06\xff\x0f\x5c\x39\x1f\x57\x16\x96\x1b\x45\x17\xe8\x32\x82\x83\x07\xb4\x27\xf9\xd8\x4f\x89\xe7\xd6\x0c\x66\x7c\xff\x75\x27\xb9\x15\x58\x3d\x06\xf1\x39\x61\xd3\x62\x7b\x20\x28\x7c\x1f\x6b\x4f\xba\x14\x8f\xab\x0e\xc5\x68\x18\xc1\x80\xe0\xf6\xe1\x40\xb0\xa9\xa7\xd1\xb2\x41\x25\xf5\x44\x8d\x04\x13\x2b\x87\x48\x57\x12\xde\x1b\xa9\x30\x17\x0a\xc7\x3a\x15\xae\x8e\x38\x3a\x81\x61\x89\x45\xb9\xc5\xaa\x80\xfd\xf7\xea\xbb\x09\x51\xb2\x5a\x44\xe1\x5f\x7e\xd1\xbd\x29\x7a\x74\x42\x47\xe5\xdf\x47\x11\xea\xda\x74\x45\x2f\xd8\xb7\x69\x81\xf0\xb1\xf2\xde\x83\x51\x96\x4f\x79\x22\xe2\x6d\x2d\x6f\xab\xef\x11\x10\xf4\xd2\x43\x11\xcc\x36\xcb\xad\xa5\x5c\x11\xd1\x1f\x56\xb3\xb4\xe7\xfc\x92\x3f\xa1\x19\xbe\xa6\x14\x68\x71\x14\x75\xb6\x29\x78\xcf\x0c\x8d\x60\xc2\x67\xfc\x2d\xba\x0e\xc4\xa4\xf7\xc7\xaa\x83\x79\x86\x62\x4f\x19\x13\x29\x36\xa1\xe0\x37\x37\x97\x96\xf6\x2d\x34\x5f\x31\xf1\xf3\x8d\xad\xcf\x94\x35\xaf\xf9\xc4\xbb\x94\x34\x69\x03\xcc\xdb\x50\x8a\x20\x0d\x47\xdc\xbd\xae\xca\x98\xcb\xb1\xdb\x45\xc2\xc2\xd8\x70\xf0\xce\xb7\xe9\x72\xe0\xf8\xaf\x2a\xc0\xf2\x2b\x49\x3f\x8e\x43\xdb\x50\x21\xd9\xef\x8f\x15\xf9\xd6\xef\x57\x84\x36\xe7\xe7\x9b\xa9\xed\x84\x59\x9e\x86\x4b\xa3\x3c\x4c\xe2\x30\x1b\x34\x1a\x4a\xe3\x45\xe9\xc6\x5e\x1c\x3f\xbd\x59\xdf\x6f\x91\xb2\xdd\x87\xca\x8a\x95\x59\x1e\x43\x13\x85\xaf\xd9\x0e\xc9\x03\x23\xc4\x66\x9c\x8f\xf0\x76\xd2\x32\x67\xde\x36\xc5\xfa\x82\x20\x05\xb1\x15\xef\x3b\x6c\xc2\x7f\xad\x70\x95\xdd\x30\x8a\x2c\xc6\xdb\x58\xa7\x44\xb7\x70\x03\x65\xe5\x6e\x2a\xc0\x5e\x6c\xb3\xc7\x34\x6f\x0f\x65\x0c\x12\x7d\x34\x9c\x60\x26\x74\xe2\x68\xa7\xfe\xd3\x5f\x9a\xf8\x2b\x9b\x9e\x28\x16\xfa\x7f\xc0\x74\x51\x00\xb3\xfd\x22\x29\xc0\x49\x71\x5f\x01\x81\x2e\x6a\x29\xde\xa7\x11\xbd\xe0\xcf\x58\xec\x15\xb1\xf8\x06\xe6\xae\x1c\x1d\xb2\x9b\x60\xbd\x5f\x63\xa4\x17\x0a\x5b\x11\x2b\x74\x01\xca\x5a\xc2\x07\x56\x07\x50\xb2\x44\x99\x5c\x7c\xad\x1b\xe6\xf3\x83\x7d\x81\x16\x34\x31\x43\x91\xb5\x76\xd4\x65\x4e\x57\xf8\x18\x02\x3e\xd8\xb0\xdb\x81\x4f\x39\x63\xdb\x4b\xf2\xd0\x38\xa2\x47\x27\xe6\xee\xde\xcf\x19\x07\x75\x5c\x32\xed\xe5\x28\xe9\xe9\x71\xb8\x7b\x6a\x1c\xee\x5e\x1d\x4b\x79\x3e\x4a\x97\xc2\x18\x4c\x7f\x88\xcd\xee\x28\x6d\x42\xd0\x99\x09\xf8\xb6\x9a\x01\x2c\x36\x3b\xb6\x97\x5a\x9e\xc0\x13\x76\x40\x8f\x61\x3a\x5e\x43\x5d\xd9\xcc\x53\x6b\xb2\x51\xba\x96\xc1\x8d\x70\xac\xcf\x61\x8d\x44\xfe\x4f\xb8\xf9\xb8\x8e\xb5\x83\x4d\xb3\xe5\x8d\x89\x07\x64\x34\x5a\x4a\x29\x79\xd4\x09\x8b\x1c\xc0\x30\xdd\xab\xa8\x3f\xf9\xa2\xe7\x39\xd5\x63\xed\x86\xa9\x6d\x50\xba\x5d\x4b\x78\xac\xe6\x01\xdb\x96\x09\xbf\x1d\x1f\x90\xab\x30\x9e\xc2\x8e\x10\x2d\x56\xdc\x84\xa8\x6a\xd4\xb4\x32\xba\x26\xce\x4d\x16\xbe\x06\x94\x35\x3c\xdd\x2d\xec\x45\x3e\x51\xc2\x32\xa3\xd4\xe6\xfd\xd4\x34\x54\xa1\x17\x4f\x97\x8f\x95\xc5\xea\x27\xb6\xdd\xe7\x02\x15\xd2\x86\xcf\x34\xb6\xe3\xb3\xba\x86\xe5\x30\xc9\xf2\x91\x6f\x3b\xd5\x69\x40\xd4\x70\x54\x75\xec\x20\x69\xa7\xa6\x0d\x32\x7c\x9e\x5a\xa5\x0f\xc9\x04\xab\x54\x55\x52\x42\xb7\x15\xab\x56\x88\x0e\x8b\x4f\x48\x8d\xb0\x21\xdc\xce\xab\xbf\xa8\x26\xfd\xbe\x30\x79\x5c\x93\x7c\xe5\x16\x9d\x22\xe9\x3d\x2b\x71\xa2\x8f\x55\x6a\xd5\xee\x87\x6d\xd3\x4b\x76\x14\xdb\x10\x30\x85\x9b\x9a\xc5\xf6\x8a\x6e\x42\xfe\x29\xbf\x24\xa7\x47\xec\x2a\xfe\x08\x57\x51\xc3\x3e\xa6\x09\x7f\xe9\x5a\xf1\xef\x9f\xd5\x65\xde\xf6\xd5\xbe\x89\x64\x87\x72\x93\x1e\xf1\x99\x74\xec\x6b\xd0\x67\x91\xcd\x38\xca\x97\x5e\x09\x99\x00\x74\x07\x39\x41\xc2\x15\xff\x2f\x6a\x8e\x25\xb6\xab\xd9\xd0\x0c\x6d\x3a\x43\x2b\x17\x96\x89\x29\x2a\x19\xe9\x81\x0a\x0d\xff\x8f\x92\x47\xdb\x85\x41\x6f\x69\x3f\xd6\x54\x2c\x3b\x61\xd6\xb7\x2b\xd6\xdd\x8a\x90\x8a\xfa\x6a\xd8\xb1\x5a\xbd\x42\x14\xb7\x1b\x7e\x88\x04\x2c\x59\x7c\xec\xec\x13\xd1\x51\x4a\x46\xe7\xda\xb8\x2a\xa5\x90\xe8\xd1\xb4\x47\xac\xc7\x05\xeb\x88\xbf\xe2\x63\xe5\x75\xbe\xbc\x6f\xb6\xa1\xb2\xf5\x32\x23\xf6\x26\x25\xe4\x2f\x35\x0f\xfc\xcb\xaf\xcd\x28\x99\x9f\xf3\xea\xa7\x3f\xc2\xdb\x72\xf0\x98\xaf\x09\x76\x1e\x2c\x16\xcc\xcd\xaa\x28\xe3\x5f\x31\xed\x64\x29\xb3\x71\x43\x81\xc7\x4f\xa9\x31\xa4\x53\x0e\xe2\xd9\x1e\xa5\x56\xd1\x72\x5d\x50\x53\x41\x17\xc6\x9f\xf7\x9c\x65\x64\x13\x99\x03\xc1\xdb\x2e\x0c\x6c\xa3\x02\x72\x63\xac\x46\x76\x8f\x2b\xbd\x8e\x9e\x89\x7b\x0d\xdf\x41\x00\xcf\x80\x8c\xe9\xf9\xd0\xa1\x6f\xa3\xb0\x9d\x0c\xc1\x45\x5a\x5c\x36\x6b\xa2\x94\xf4\x51\x1e\x55\xf9\xf1\x73\xbf\x44\x8b\x50\x38\xf0\x01\x26\x10\xad\x60\xf2\xaa\xe8\x3d\x1f\xd1\x62\x38\xff\x23\x6d\x72\xe4\x7f\xc7\xb0\x14\x99\x1d\x87\xca\xb0\x88\x0f\xfe\x00\xa5\x33\xc0\xf1\xb9\xdf\x00\x1b\x71\x03\x5b\x1c\x06\xee\x87\x63\x45\x28\xf6\x29\xf0\x0b\xa8\xa9\x1d\x57\x5c\x65\x3f\x1e\x7b\x16\xa0\xef\x33\x3a\x05\x0d\xd6\xb7\x50\xa3\x47\x7c\xca\xac\x4e\xe8\xf6\x5c\x21\xf0\x01\x02\xc2\xa3\x40\x25\xa0\xce\xf5\x2d\x60\x59\x11\x96\x7c\x3a\xde\xfa\x8c\x6f\xe6\xed\x77\xd2\xd0\x6f\x50\xe6\xce\xea\x99\x24\x6e\x2a\xaa\x2b\x54\x02\x15\x6b\x47\x0f\x59\xe3\xa9\x60\xfa\x6e\x28\xd0\xf3\x3a\xad\x35\xc7\xf3\xf3\xec\xb3\x8e\x1f\xb4\xc8\xdd\xb1\xe7\xbe\x49\x05\x18\x51\xce\x6c\xfc\xca\xaf\xf1\xcb\xba\x4f\x10\x10\x7c\xe7\x61\x35\xea\x9e\xe5\xa3\x01\xd3\xb1\x14\x17\xe0\xf8\xec\x5c\xa9\xe9\xa2\xe2\x02\x7a\xfe\xf9\xe7\x9f\xf0\xf8\xc4\x1f\x68\x32\xaf\x29\x2a\x32\x23\x67\x7b\x5f\x71\x48\x36\xa8\x38\x84\x75\xb0\xbd\xe5\x55\x28\x27\x78\x5b\xf0\x9f\x57\x61\x92\x14\xcb\xd2\x4b\x3e\x6b\x3e\x24\xad\xd4\xbf\x08\xd4\x6c\xce\xd4\xa4\xb8\x7f\xe1\xe4\xa1\x27\xc9\x27\x63\x2d\x52\x7b\x16\xcb\x45\x28\xbd\xe8\x1e\x11\x05\xef\x6c\xd5\xb0\x35\xf4\xac\x5d\xce\xa8\xf4\x28\x20\x04\x7c\x19\xdc\xcd\x86\x52\xa0\x39\x81\xab\x14\x3f\x4b\x5f\x8c\xd5\xb6\xb5\xa5\x06\x50\xaa\xb8\xb1\xfd\x2f\x1c\x00\x00\x3d\x9b\xd6\x5a\x06\x97\xf1\x15\xa8\x55\xdf\x51\x5a\x42\x1f\x6b\xfe\xf9\x6f\xe9\x92\xda\x30\x4c\xc3\xbc\xa1\x56\xe0\x05\xf8\x01\x89\xdf\x6b\x86\x29\xe2\xc4\xc5\x86\x32\x72\xe5\x13\xdb\xb3\x0a\x28\x68\x7b\x49\x49\xeb\x49\xa9\x29\x29\xc9\x82\xd1\x20\xcc\x93\x41\x32\xd5\xf8\x55\x25\x58\xe7\xb9\xe7\xc7\x4a\x2b\xe7\x76\xc5\x85\xcc\xcf\x37\xbb\xa9\x19\x75\x7c\xcb\x8e\xf9\x17\x95\xd1\xfb\xb0\x8e\x92\xa4\x1d\x8d\xd0\x73\xaa\xd3\x28\xf0\xb9\x9c\x7d\x35\x4f\x0d\x4d\x90\x89\x64\x0b\x5d\x8e\x58\x53\x35\x7c\xc9\x9a\x45\xd2\xe9\xa6\x15\x23\x1c\xe9\xde\xe8\xc6\x36\xec\xf5\x97\x92\xb4\x9f\x24\xc0\xac\xc0\xd0\xff\x48\x93\x78\xfc\x08\x3c\x17\x5c\x86\x88\xb3\x3c\xcc\x29\xbf\x33\xd1\xb4\x6f\xe0\x9e\xc3\x32\xe4\x76\x49\xe0\xa1\x07\x48\xbf\x80\x15\xf8\xcf\xc8\xe1\x65\xc4\xe9\xd5\x29\x7a\xb5\x70\xfe\xe7\x94\xcd\xfe\x74\xec\xf9\x9f\xaf\x2b\x51\x9e\x68\x2d\x6e\xf7\x29\xf1\xd7\x55\x37\x2e\x05\x8f\x55\x2c\xbd\xa5\x25\xb1\xeb\xaa\xed\xf4\xca\x34\xb9\x37\xf1\x2c\xf8\x64\xfc\x48\x48\xea\xfd\xff\xa8\x69\xbf\x48\x06\xdd\x69\x8b\xfa\x29\x82\x2b\x01\x19\x51\x61\x72\x2a\x6c\x11\x64\xab\x9f\x98\x14\xf6\x07\x38\xc0\xb3\x4a\x59\x6f\x5b\xcb\xeb\xe7\x3d\xd6\x22\x0f\xa0\xf9\xc4\x50\xf3\x03\x9f\x25\xcc\xf4\x35\x24\xc7\xa2\x96\x58\xb8\x09\x34\x10\x9e\x24\x89\x72\x58\xc4\x46\xab\x30\xc0\x1b\x97\xc6\x24\xa3\x26\xba\xb7\x8a\x92\xa0\x41\x88\x53\x94\x2c\x6e\x52\xa5\x0c\x65\x86\x2d\x34\xbc\x8c\x00\xfd\x32\xac\x12\x5a\x02\x0c\x7b\x73\x53\x4b\xc5\xdb\x70\x56\xf6\x57\x0f\xb8\x69\x18\x85\xe4\x39\xab\x02\xc9\x0f\xfe\x01\x77\x79\xf0\x64\x7e\x6e\x02\xff\x28\x10\x08\xda\xc4\xf8\xee\x07\x84\x55\xc3\xbc\xc9\xb9\xf1\x2e\xb7\x9c\x7b\xcf\xe3\xcd\x20\x3d\x3b\x8a\x37\xc3\x27\x3a\xb8\x35\x59\x18\xf7\xb4\x68\xe6\xcd\xc0\xc3\x66\x6f\x2a\x40\x7a\x18\xaf\x24\xd1\x8a\xed\xec\x68\x38\x29\xad\xc3\x81\x1a\x6d\x7d\x3d\x50\x90\xd2\x8b\xa5\x4e\x6a\xf1\x8c\x04\x68\xac\x82\x03\xee\xdd\x61\xf7\x5f\x66\xd3\xc9\xce\x7d\xbc\xd3\x45\x20\xff\xfc\x69\xbf\x7b\x3e\xa4\xe5\x2b\x54\xff\xca\x05\x1d\x43\xdd\xcf\x3d\xa0\xe2\x4d\xc0\xb0\xdd\xd2\x4d\xc1\xdb\x84\xc1\x71\x3e\xb4\x58\x95\xc2\x34\xef\x7d\xdf\x3a\x3d\x52\x27\xc7\x50\x2c\x50\xf4\x07\xb9\xcd\x8d\xfa\xf1\x75\xad\x71\xc1\x8c\x29\xf0\x67\x37\xe0\x5f\xa4\x40\x45\x37\x09\x4f\xfd\x16\x3d\x0a\xd6\x8f\xe7\x68\x02\xc9\xf0\x5d\xda\xd7\x70\x49\x8f\x4e\xbc\x1e\xd3\x96\x89\x6e\x8f\x16\xfb\x03\xbf\x71\xba\x56\x90\xa7\x6f\x53\x8c\x0a\xc3\x17\x1c\xa6\x9b\x42\x7d\xf7\x1c\xbd\x56\xe0\xd3\xdf\x55\x25\x99\xd4\x46\x54\xca\x3e\x34\xcb\x17\xcc\xcd\x46\x3e\xa9\xa0\x62\x16\x67\x9b\x51\x98\xe5\x96\x86\xaf\x3d\x19\x91\x62\xd6\xfa\x2f\x3a\x7c\x0a\x4a\xaa\x20\x6a\x24\x25\x32\x59\xbf\xe1\x11\xf0\xe7\x15\x06\xf9\xfc\x78\x97\x2f\x25\xc7\xdb\xf4\xa0\x7e\x09\xd3\x51\xdc\x10\xca\x0a\x3c\x83\x00\x73\x81\x4c\x10\xfe\xe5\xbb\x2a\x9b\xbe\x5c\x43\x2a\x54\xc4\xad\x43\x6e\x51\xc8\xe0\x44\x71\x51\x32\x37\xa1\x27\x85\xec\x68\x30\x8d\x6d\xc8\xbf\x13\x78\xc0\xc6\xb6\x89\x47\x81\x95\xa4\xef\xb6\xb5\x4a\x33\x44\x60\x44\xfb\x0a\xdb\x29\x54\xbf\xf8\xb8\xa6\x1d\x71\xa0\x69\xa2\x28\x59\x95\xb1\x4d\x58\x3d\x4c\x81\xc8\xc9\xf8\x73\x1e\xbf\x31\x8a\x3b\x36\x5b\x32\x8c\x36\x70\xfc\x3a\xee\x65\x5c\x54\xd9\xcd\xde\x7d\x2f\x34\x7c\xff\xf6\x0a\x2e\x99\x4f\x6a\xd2\xb0\xfd\xe0\x98\xe2\xd8\x9e\xe7\x90\x02\x3f\x1d\x74\x5e\xd1\xd2\x76\x8a\x2c\x2f\x19\xb2\x36\x00\xe2\xe3\xdf\xd6\x04\x9f\xbf\xad\x00\x75\xab\x7d\x93\xd2\x64\x95\xab\x24\x9d\x54\x23\x7c\x27\x55\x53\xa1\x67\x10\x78\x62\xdd\x61\x45\x81\x89\x1c\x6b\xe0\x8f\x94\xc7\x3a\x0d\x1f\xe3\x27\x2b\xc5\x84\x75\x93\x76\x92\x0e\xe9\xd7\x4a\x53\x76\x7c\xa2\x4a\x6a\x2b\x36\x4f\x2c\x18\xbc\xb9\xf8\x4f\xb7\x2b\x8d\x00\xff\x24\x7b\xe9\xda\x8e\xe2\x7f\xc0\x3c\xf0\x4b\x2d\x55\xad\xda\x32\x51\x0a\x78\xb4\x12\x81\x1a\xb8\x83\xcb\x13\x3d\x42\xb2\x5c\x0a\x46\xe5\x59\x00\xe9\x56\x51\xa0\x5e\x57\x7a\x5a\xed\xd4\x1a\x1e\x0d\x70\x5d\x4e\x37\x26\x7c\xb1\x8e\x56\x81\xd4\xf3\xe3\x29\x8f\xcd\xc7\xc8\xaa\xea\xfb\xca\xb6\xd2\x44\x34\x03\x1b\x67\x79\x3a\x32\x51\xa3\x34\xe2\xa3\x60\xe3\x9a\x05\x6b\x39\x4e\x56\xa3\x22\x26\xd0\x3a\x4f\xc0\x49\xf1\xb1\xca\x71\x4d\x5e\xc4\x3a\x1d\x3d\x1a\x7a\x56\x8d\x86\x6a\x5c\x52\x3b\x19\xc5\xed\x30\xda\x41\x0f\xc3\x31\xc9\xbb\x49\xaf\x0d\x5c\xbd\x1b\x2f\x3d\x24\xd9\xd6\x89\x92\xb8\x9f\x82\x90\xfd\x0e\x8c\x12\xe2\x99\x1f\x06\x8a\x01\xfd\x87\x75\xf0\xdc\x67\x9a\x1d\x7a\xde\x3e\x84\x3c\xa5\x42\xc8\x53\x95\x7d\xfb\xe2\xdc\xc1\xe6\xb0\xbf\x96\x85\x6d\x24\xdb\x22\x16\x43\xd7\x2f\xeb\x47\x11\x26\x5c\x72\x43\xc9\x36\xce\x6d\x3a\x4c\xc3\x4c\xb0\x9e\x2c\x5e\xcb\xae\x91\x91\xfa\x70\x7b\x4c\x98\xa2\xc7\xbc\x4e\x56\xa2\xdf\xbd\x7b\x9b\x36\x1b\x42\x4c\xcc\x71\x09\xa8\x21\xa8\xca\x52\x79\x11\xaa\x7b\x2c\xba\x27\xef\x58\xbf\x70\xb5\x0c\x3b\xa9\xe9\x02\x12\x81\xf7\x0b\xae\x57\x3e\xae\x53\xfa\xcd\x86\x36\xce\x67\x7c\x56\x76\x6d\x0f\x55\x20\x44\xcc\x80\xde\x0a\x4c\xc4\x1d\x35\xc9\xf8\x43\x95\xd2\x6e\x99\x3c\x8c\xa7\x20\x1b\x84\x9e\x25\x54\x64\xf8\xe8\x5e\x45\x9f\xaf\x26\xbf\xe9\x86\xaf\x72\x3b\x02\x0e\xfe\xa6\x02\x50\xdf\xc0\x56\xe4\x25\xe3\xe4\x30\xa3\x70\xc9\xa6\x44\x47\x84\x97\x82\x74\xf6\xc7\x81\xca\x6d\x7f\xac\x95\xcf\x48\xc7\x65\x86\x5e\x99\x10\x0e\x34\xdc\xc4\x22\xd0\x17\xc8\x50\xbf\x8b\x37\x23\x49\x8a\x96\x9b\x7c\xfd\xa1\xec\x0c\x20\x55\x65\xb3\xcc\x22\xb3\xb8\x14\x51\x9c\xad\x31\x06\x4b\x49\xda\xb1\x4c\xcd\x29\x7c\xd9\x1e\x10\x7e\x42\x15\x7e\xf3\x34\x1c\x46\x0c\xf7\x50\x23\x4f\x52\x42\x79\x55\xd9\x4b\xcc\x0d\x50\xda\x02\x18\x3f\xd7\x53\x51\xc5\xf9\x2b\xd5\xa7\x79\x33\x50\x90\xfc\xcf\xc6\x7e\xaa\xde\xda\x22\x05\x71\x25\x45\xd6\x39\xd7\xb0\x5f\xd4\x61\xb6\x55\x52\xf1\x43\xb3\x5f\x69\xf6\x93\x01\x44\x2a\xe8\x36\x16\xf7\xb4\xbc\x4b\x79\x8c\xf2\x01\x94\x9a\x8e\xd4\x3c\x91\xc5\x66\x9e\xbc\x1a\xb6\x1b\x8a\x66\x02\x14\x8a\x7c\x5c\x51\x97\x39\x34\xfb\x52\x33\x4b\xa6\x8b\x5f\x43\xf8\xb8\xbd\xa5\xa4\x69\x10\xfc\x3a\xec\xce\x3e\x07\x5b\xa9\x98\x8a\x2f\x39\xa1\xee\x52\x51\x94\xf3\x28\xc1\x08\xee\xd6\x7a\x20\xcf\xcf\x3c\x1c\xe4\x4a\xd7\x2f\xcb\x5d\xc1\xb4\xef\x07\xba\x75\xb0\xae\x28\x7c\x95\x80\x09\x19\x09\x74\x58\x6f\x52\x98\xca\xc7\x95\xe7\x75\xf0\x05\xd2\xf2\xe4\xb1\x7e\xc7\x8c\xe7\x72\xa2\x8b\xaa\xf3\x1c\xc6\x79\x6a\x3a\x66\x0d\x1d\x0e\x27\x23\xbf\xb0\x50\xca\xff\x1d\xae\xb2\xb8\x6b\xc1\x55\x6a\xb0\x63\x97\xbd\x1d\xe3\xf7\xd4\xf3\xdd\x70\x20\x92\x22\xa2\xcc\xb6\xd1\xf3\x80\x0d\xf9\x70\xac\xa8\x01\x4f\xe2\x79\x20\x21\x9e\xa2\xa0\x5a\x28\x0d\xf1\x6c\x9c\xa8\xb6\xa3\xd0\x7b\xaa\xe5\x8b\x03\xdd\xd1\x6b\xaf\x81\xf1\x81\xc7\x85\x5a\x4a\x8e\x42\x8b\xc1\xd6\x99\xbd\x61\x1a\x26\x29\x2d\x4d\x84\x19\xe0\xf4\x44\x10\x79\x87\xee\x05\xd7\x78\xd6\xd5\xa8\xbb\xa1\x4d\xf1\x73\x08\xd8\xef\x2a\x4e\xe5\xd3\x25\xa2\xa3\xca\xef\xed\x9d\x6b\x76\xed\xaa\x4d\xd9\x3c\x09\x24\x97\x62\x0c\x01\xeb\x2a\xf6\xa6\x30\x0a\x7b\x36\x6e\x5b\x45\x35\xf7\x5b\x74\x49\x7c\x5c\x47\xcb\xd1\xec\xda\x28\x92\xa0\x14\x41\x0c\x37\x41\xf8\x44\x47\x47\x09\x72\x4b\x84\x89\x33\x13\x15\x3f\xce\xb4\x1e\x66\xd5\xda\x6b\x71\xde\x0f\x8d\x0a\xd3\x3e\xd2\x61\xda\x47\x5a\xb1\xdf\xa0\x5e\x62\x61\xf8\x65\x8c\x54\x17\x41\xeb\x68\xc3\x47\x79\x64\x56\xd9\xb0\xe1\xef\x8e\xc0\xb0\xf1\x49\x5d\x47\xab\x30\xe5\x79\x37\x49\x51\xcd\x71\xf1\x5a\x71\x5d\x02\x7b\xf7\xc1\xf8\x4a\x12\x99\x3c\x84\xe4\xe7\xdc\x41\x36\x5c\x00\x65\xf1\xb1\xca\x70\xff\xee\x13\x78\x59\x70\x84\xa0\x0a\x40\xd1\x77\x0a\x74\x7b\xb0\x1f\x47\x20\xcd\x86\xff\xd9\xda\x52\x33\x32\xbf\x89\xa5\x8e\x5c\x64\x0a\x90\x22\x0f\x48\x98\xf5\x45\xac\x22\x30\x43\xd4\xf1\x13\x25\x9d\x86\xea\xb9\x0c\x9d\x14\x2b\x41\x9a\x26\xbe\x15\x7a\x8e\x32\x6f\x01\x7c\xd1\x6b\x44\x94\xda\x98\x28\x7f\x33\x33\x11\x73\x1e\x99\x61\x9e\x0c\xa7\x3c\x7c\x99\xc7\xd3\x75\xdf\x1e\xbf\xb2\xb5\xf5\xb4\x00\x8c\xfa\x61\x9a\xaf\x39\x55\x57\x20\x6a\x50\x3f\xbd\x3b\xf6\xa1\x14\xc7\x30\x00\xd3\x4d\xd7\x3a\x83\x55\x1b\x45\x0d\x3f\xf0\xb4\x1e\x94\x26\x49\x1d\x90\x68\xd5\xe5\x13\x08\x19\x77\xe2\xd1\xc1\x8e\x4d\x4d\x7c\x0c\xf4\x7d\x95\xd3\x9e\x52\x49\x49\x37\x49\x6d\xdb\x64\x39\xc2\x35\xbc\x99\xeb\x54\x64\x42\x89\xed\x26\x6e\x9a\xff\x63\xec\x85\x5c\x6f\xd6\xc0\xfa\xf6\x37\xdb\x36\x35\x83\xb0\x2d\xb1\x05\x82\xd2\x5b\x81\x2a\xbf\xdd\xaa\x19\x8c\x5f\x6c\x46\x4b\x49\x09\x31\x7a\x45\x8d\xac\x9d\xd2\xfc\x8b\x1f\xd5\x91\x18\x98\x76\x7b\x94\xe5\x9e\x0b\x05\x36\xe7\x93\xb1\xb7\x3f\x9f\x28\x30\x7c\x16\x8a\x6d\x71\x1c\x02\x5e\xfb\xa3\x76\x56\x81\x13\x42\x17\x9d\xb1\x52\x1a\x7d\xbf\xa8\xa6\x95\xc8\xf4\x56\x48\xd5\x04\x59\xb9\x93\xac\x74\xe9\x4a\x9d\x20\xfa\xfe\x66\x37\x32\xcb\x36\x63\xe4\x2d\x4a\x82\xdb\x5a\xaa\x92\xf1\x89\x86\xde\x36\x26\x75\x5f\x91\x92\x62\xff\x94\xee\xe0\x9e\x57\xbc\x21\x3c\x24\x23\x25\x94\xba\x61\xce\xd4\xc4\xb0\x8a\x8e\x08\xc2\x81\xac\x2e\x56\x9e\x7c\x91\x26\xd8\x34\x0b\xb3\x5c\x0a\xda\x32\x7b\xd5\x50\x94\x2b\xd2\xea\xcb\x4c\xcc\xe8\x28\x2e\x90\xab\x39\xa8\xa7\x60\x25\x10\xb7\x32\x8d\x98\x94\xaf\x7c\x8c\x72\x42\x93\x51\x5d\x54\xf4\x20\xdd\x28\x59\x85\x3e\xa6\x78\x18\x2f\x63\x83\xc8\x10\x3e\xf9\x66\xed\x83\xef\x87\xb1\x6b\x12\xa0\x7e\xf5\xe7\x63\x25\xac\xf5\xe7\xba\xe8\x93\xc8\x34\x95\x2b\xb4\x29\xde\xa4\xcd\x1b\x62\x71\xb6\x99\x26\xa3\x3c\x8c\x6d\xb4\x86\x60\x55\xca\x43\x7e\x9e\xec\x7c\x89\xcb\x25\x6c\x2f\xcf\xa0\x42\x23\x6e\x0f\xef\x12\xf7\x7f\x55\xa1\x15\x2f\x2a\x95\x09\xde\x20\xa8\x22\xdc\xd2\xd8\xdc\x88\x25\x40\xb1\xb5\xc4\xe2\xfb\x69\x21\xa0\xe3\xe0\xf4\xee\xa9\x0a\xc8\x52\x98\x64\xc9\x28\x6d\xb3\x60\x21\x2b\x6e\xe2\xa9\x88\xfc\xe6\xdf\x70\x3f\x13\x76\x6c\x9c\x87\xdd\xb0\x6d\xbc\xa4\x3f\x12\xbf\x0f\xc7\xaa\x79\xf9\x61\xe0\x51\x7a\xdd\x30\x1d\x3c\x5e\x3c\x05\xd4\xc5\xc0\x4e\x87\x80\x02\x4c\x62\x1c\x69\x63\x29\xe0\xf6\x8f\x90\x01\x77\x4c\x3e\x85\x27\x51\xd4\xab\xa2\xfd\xb6\x11\xa8\xbe\xd2\xf4\xa4\x54\x1c\xf1\x64\x3d\xff\x83\x16\x9a\x46\x9a\x2d\x2e\x50\x05\x05\xac\x31\x85\xc6\xc5\x4d\x38\x1f\xfe\xfc\x26\x22\xca\xde\xa3\x8d\x32\x3b\xd2\x7e\x99\xaf\xc0\xa7\x44\x79\xc0\x57\x4f\x7f\x3a\xae\x2a\x5e\xc2\xcb\xb1\xb9\x14\x85\x64\xba\x38\x00\xf2\x2e\xe3\x71\x22\x40\x3e\x41\x8f\xc3\xd1\x83\x17\x17\xca\xff\xa1\xa8\xf1\x6f\xd4\xe9\x4c\x75\x52\x1b\xb7\xfb\xce\x9a\x21\x62\x38\xa1\x92\xd4\x13\x75\xbd\xab\xcc\x0c\x4c\x1a\xe6\x26\x16\x1b\x25\xa3\xb8\x74\xe9\x58\x7c\x5b\x54\x60\x78\xa1\x86\x62\x67\xff\x81\xa6\x19\xd8\x34\x6c\x33\xcf\x97\x13\xd3\xf4\x03\x84\x47\xea\x88\x53\xda\x7d\x23\xc0\x5d\x81\x4e\x29\x18\x95\x72\x67\xd9\x68\x25\x5c\x49\xd2\x4c\x53\x8d\xfc\xa9\xa6\x1a\xf9\x53\xcf\x7a\x9d\x44\x49\x6a\xf2\x51\x8a\x30\x0d\x0b\x0e\x5b\x8c\x8f\x2b\xb5\x94\x7d\x0b\x4d\x1b\xf7\x8a\x74\x67\xda\x77\x07\xc0\x48\x0e\x1b\x70\x19\x3b\x11\x6b\x74\x07\xac\xb7\x44\x1f\x35\x8f\x94\x90\x9a\x9d\x51\xca\x03\xdf\x28\x82\x1c\x55\xc2\xb6\x47\xc7\x5f\xd0\x28\xdf\x38\xb7\x69\x7b\x14\xe5\xf8\xc4\x43\xe4\xe4\x6a\xe2\xe9\xa5\x34\x59\x8d\xf1\x48\xa4\x64\x57\xfc\x1e\x1f\xd7\xa0\xd0\xe6\x9a\x79\x7f\xd5\xa4\xce\x2c\xba\xd9\x42\x3f\x67\x58\x89\x4a\x89\xfb\x34\xee\xe5\xe1\x00\xe0\x14\x11\x2c\xf1\x55\x43\x8d\x59\xee\x87\xbd\x7e\xb4\xb6\x8d\xfa\x40\x32\xfb\x43\x21\x0e\x9f\x90\x89\xc4\xe6\x68\x50\x8b\x8a\x8f\x31\x07\x04\xaf\xb1\x8e\xbd\xca\x27\x75\xfc\xbf\xc3\x34\xe9\x8c\xda\x2c\x9a\x28\x1b\x5c\x07\xbf\x0a\xd9\xe9\x00\xdf\x0b\x6e\x66\xca\xaf\x85\xf5\x0a\x46\x89\x74\x67\x22\x56\x6a\x91\x09\x31\x65\xad\xd6\x4b\x33\xef\xa1\x85\x7f\x42\xe2\xb0\x11\xf8\x29\x17\x24\x6c\x18\x7f\xbf\xa4\x8a\xe1\x24\x50\x4c\xb4\xd1\xdb\x69\x4d\x61\x67\x5e\x0f\x3c\x74\xf4\x9d\x71\x19\x9d\xbe\x28\xf9\xcf\x7d\xa5\xb7\xf5\x1e\x12\x6c\xe9\xee\x3b\x58\xd9\xff\xff\xb6\x1a\x92\x4d\x56\x63\xdb\x99\xf1\x0c\x7a\xeb\x2a\xa9\x65\xda\x2c\xf8\xa3\xe9\x89\x47\xbb\xbe\x1b\xf8\x5f\x5c\xd7\x44\xa6\x7d\xc3\xd5\x37\xdc\x2c\xeb\x22\xf0\x89\xaa\x9c\x0f\x23\x9a\x1b\x99\xae\x6a\xbf\x21\x35\xfc\x74\xec\xeb\xd5\xf7\xf1\xaa\x65\x6c\xc8\x83\x02\x5e\x49\x88\x52\x01\x4e\xd3\x21\xb2\x16\x67\x1d\x22\xab\x3a\xa0\xbf\xbf\xc8\x9e\xe8\xbd\x6d\x5c\x1a\x37\x16\xf7\x6f\x5c\x52\x93\x58\x51\xf8\xaa\x06\x33\xc2\xcd\x22\x1d\x07\xa0\x1d\x37\x7c\x7b\xac\x24\xb3\xce\xaa\x2a\x12\x0d\x99\x65\x1a\xdb\x0c\x07\x20\x3b\xd5\x4b\x0e\x0c\x4d\x06\x0a\x3c\x47\xc4\xaa\x19\x54\xbc\xab\x8c\x92\x2c\xdb\x41\x77\x8f\xe8\x91\x27\xc2\xf8\xa4\xac\x50\xde\x70\xd4\xd8\xec\x13\x19\x19\x4c\xab\xc6\x29\xf6\x2c\xce\x7a\x96\xe3\x05\x9e\x70\xfa\x9f\x4f\xb9\x3a\x44\x77\x14\xf7\x42\x2d\x53\x71\x5b\xc9\x54\xdc\x2e\xb5\x5e\xd3\x34\xb4\x29\xe1\x0a\x45\xb9\x8a\x7e\xd5\x55\xbc\xe6\x0e\x72\x99\x84\xd5\x10\x84\x0e\xd5\x1b\xdc\x07\x1a\x09\x78\x9e\xa8\x1c\x04\xc2\xa5\x7b\x6b\x6e\x3c\xad\x08\xc0\xb8\xdd\x45\x2e\xfe\x3b\x4f\xb6\xbc\xbf\xff\xce\x93\x93\xcf\x29\xd5\x66\xa2\xde\x75\x6e\x0e\x36\xe8\xb4\xa2\xac\x3f\x3d\xde\xad\x86\x6e\x8a\x7c\xeb\xd0\x2c\xc7\xa0\x77\x54\x1d\xf5\x8e\xda\x29\xd6\xa4\x71\x36\x4d\x60\x27\x14\x43\xef\x51\xae\x24\x9c\xaf\x7e\x46\xe0\x8c\xd2\xbf\xab\x12\xaf\x1d\x9a\x7d\xa9\x59\xe4\x5d\x91\xaf\xf8\xb2\xd4\x08\x5d\x9e\xc8\x8e\xf8\x65\x39\x30\xcc\x99\xe1\xcc\xa3\x1b\xc9\x6b\xb4\x7c\x6d\xf0\xe6\xd8\x0f\x01\xd8\xac\x9d\x86\x4b\x6c\xfb\x64\x0a\x80\x1e\xb6\x8c\x01\x3c\xa9\xb4\x2a\xe3\xdc\x14\x1b\x69\x4a\x45\x1b\xd7\x15\x67\x27\x68\xd1\x90\xc1\xbd\xaf\xaa\xc3\xcb\xd6\xc6\xec\xcb\xb5\xc2\x84\xd4\xd1\xdc\x04\xf1\x5f\xc7\x25\xa8\x61\xba\xa3\xcc\x25\xb4\x6a\xc0\x5a\x90\xaa\x3f\x29\x4f\x5b\xd3\x2a\xe0\xff\x19\x7b\x9c\xb3\x89\x73\xd3\x4b\xe2\x90\x04\x33\xbc\x08\xe1\x58\x8b\x0d\xaa\x98\xde\x9a\x9e\x65\x1d\x2c\x89\x7e\x94\xc1\xad\x4e\xcc\xbc\xfc\x72\xb3\x13\x9a\x28\xe9\x31\x28\x07\x9e\xfa\x86\xea\xba\xde\x50\x2d\x06\x33\x48\xe2\xde\x0e\x9f\xfb\xed\x98\xfc\xf5\x2e\x4f\xe4\xfa\x3c\xa8\xed\xbb\x9a\xeb\xf0\xc8\x58\x89\x31\xa3\xdf\x84\xe1\xa0\xc7\x2a\x55\x84\xfd\x2f\x1c\x68\x76\xec\x2b\xa6\x41\x18\x13\x27\xec\xe6\x25\xba\x6a\x24\x65\x87\x91\x71\x2c\x04\x52\xc7\x57\x35\xec\xd7\xd5\x4e\x68\x9b\xb4\x93\x51\xb5\x1c\x51\xf4\x7b\xb4\x42\x50\x81\xbf\x3d\xf6\xf6\xe6\x7c\xa0\x0a\xcb\xd5\x0e\xf6\xc2\x42\x33\x0b\x5f\x63\x8b\x89\x82\x08\xf7\xc2\xf9\xc4\xad\xa1\xa5\x24\x89\x35\x5d\xd0\x71\x45\x17\x74\xbc\xd2\x07\xda\xb7\xd0\x5c\x8a\x4c\x7b\x99\x87\x5b\x90\xca\xfd\xbb\xb1\xaa\xe2\x9e\x53\x8d\xe5\x73\x15\x9d\xc1\x2f\x35\x97\x4c\x4a\x48\x04\xdc\x3a\x7c\xaa\x43\x67\xf8\x46\xc7\xb9\xf1\xe7\x37\x13\xb2\x7f\xa5\xb9\xb0\x70\xe0\x31\x7a\xcf\x78\x39\x3f\x44\x10\x0f\x58\x16\x00\xa8\x38\x7e\x84\x42\x1b\x66\x0d\x0a\x7c\x56\xf8\x67\x28\x77\x62\xb1\x72\x7f\x50\xc8\x6d\x1b\x8b\xa2\xe8\x01\x94\x10\xec\x28\x57\xdc\x51\x1a\x63\x50\x92\x68\xef\x2a\x4e\xff\xbb\xf0\x46\xe8\x35\xfe\xb7\x40\xd5\x76\x2e\xd7\x91\xf6\x0d\xd3\x64\x6a\x73\xa9\x17\xe0\xa2\x6b\x04\x11\xc5\xbf\xff\xac\x92\x56\xbf\xfc\x72\xb3\x9f\x64\x79\xc8\x53\x69\x88\xec\x51\x35\x86\x1b\xe1\x9a\x9b\xd4\xa6\x3c\x81\x67\x2f\xd9\x4d\xff\x83\xda\xfd\x7a\xe0\x4b\x60\x3f\xd7\x82\x93\x97\xb9\x0e\xad\x43\xd6\xf8\x95\x5f\xe3\xa0\xe1\x24\xd9\x1f\x1c\x6f\xe0\x75\xe3\x66\xef\xe0\x91\xe2\x8a\xef\x01\x39\xe3\xc6\x45\x1c\x54\xff\xea\xd8\x97\xcc\xce\x06\x8a\x3c\xee\x9e\xd2\x8d\xb8\xed\x01\x81\x79\x32\x30\xed\x7e\xa6\x59\xee\xca\x8c\x07\x35\xe3\x72\xd9\x88\x5a\xa4\xce\xf2\xa3\x50\x33\x35\xf1\x48\xfe\xa9\x56\x59\xff\x6c\x30\xb0\x31\x51\x2f\x6b\x4a\xfb\xc3\x1a\x57\x7c\xb8\x46\x42\x64\xa1\x99\xf7\xd3\x64\xd4\xeb\x4f\x15\x4b\x06\xee\x6a\x4a\x35\xf4\xcf\xd1\xa3\xc2\x1a\xdb\xd9\x52\x6e\x3d\x81\x82\x9a\x1e\x91\x6e\x28\x4e\x2f\xfa\x59\xac\xba\xdb\x2a\x72\x9a\xdf\xf7\x2f\xf8\xfa\x60\x39\xb9\x5e\xc5\x27\x95\x24\xa3\x48\x7f\x92\xdc\xc6\x79\xc8\xd9\x0f\x22\x24\xb4\xad\xf8\xd8\x8d\xe2\x16\x7f\x96\x47\x32\x20\x84\x45\x3e\x45\x7e\x0f\x48\xaa\xcf\x10\x45\xb0\xf8\xa5\x0a\x51\x6c\x34\x22\x59\x2b\x05\xa4\x3d\xa5\x5a\x96\xa7\x54\x24\x49\x8d\xac\xf6\xa3\xb8\x05\xac\x8c\x47\x5b\x5e\x70\xee\x2d\x95\x96\xfd\xaf\xa8\x3e\x38\x2d\x57\x37\xe7\xc8\xe9\x89\x43\xa7\xfa\x89\x19\x2e\x32\x20\xf6\xbe\x0b\xfc\x1b\xae\xe1\x6d\x84\x70\x68\x33\x82\xa8\x5c\xe1\x02\x0e\xb8\x15\xeb\xb8\x7a\x20\xe1\xcc\x56\x1a\x31\xc0\xb6\x89\xd2\x5d\xd9\x56\x69\x4b\x2c\xce\x16\xd1\x66\x16\x26\xb1\xc9\x2d\xb3\x9d\x6b\x05\x07\x09\xbe\x95\x0c\x47\xd8\xee\x43\xe2\xa9\x2c\xdb\x8f\x34\xff\x7b\x78\xdc\xd8\x32\x1f\xa9\x38\x22\xb5\x51\xd8\x0b\x93\x38\x53\xc2\xf3\x8c\x1b\x80\x91\x3b\xae\x46\x61\x34\x9a\x27\x49\x07\x3b\x8a\x8f\x20\x4b\x78\xca\xcf\xaf\x8e\x9e\x68\x29\x05\x7d\x9e\x05\x82\xd1\x07\xea\x1a\x2b\xf4\x30\x82\x01\x00\x76\xb9\xef\x0a\x53\xba\x1b\x96\x06\x0d\xaa\x6b\xb5\xdd\xe4\x34\x59\xe6\xb1\x36\x40\x1f\x51\x5c\xe0\xe3\x3a\x25\xbf\x4e\xd8\xed\x12\x23\xdd\x94\xe2\xb8\xb8\x5c\xe2\xb0\x2e\xbe\x4d\x64\x85\x6a\x40\x0d\xed\x24\xb5\xe4\x3c\xb1\xe1\xa1\x32\x85\xe5\x8b\xc0\x17\x0f\xfa\x30\x99\x26\xa9\xfa\xd7\xf8\xce\x8e\x8d\x0c\x92\x2d\x06\xd9\x04\x8a\x64\x72\x5d\xa5\xb7\x83\xe4\x35\x52\x40\x57\x4d\x3f\x85\x5d\xbc\xa8\xd2\xb2\x4e\x98\x59\x93\xd1\x68\xd2\x5c\xbd\x74\x79\xe3\xe1\xf4\x01\xff\xd0\x75\x8f\x28\x3c\x5a\x9c\x75\xf9\xb3\xca\xa5\x3d\x8b\x01\x80\x31\x19\x62\x54\x98\xcc\x9b\x5a\x17\xe0\xa6\x22\x1e\x59\x0d\x87\x98\xff\x85\x27\x7b\x4f\x05\x9a\xef\x3d\x74\x60\x3d\x37\xcb\x66\x90\xa4\xe1\xc3\xa5\x9a\x7d\x44\x93\xaf\x0d\x31\x0b\xfb\x95\xd2\x44\x28\x1a\x12\xdb\x5b\x7e\xa6\xf0\x81\x32\x30\xc3\x34\xc9\x86\x82\x45\x70\xb2\x0d\x0e\x43\x70\x5e\xcd\x7c\x1b\xce\x30\x5c\x60\xab\xa2\x5c\xc5\xbb\xc6\x75\x9e\xe9\xd2\x6c\xbe\x1b\x1a\x29\x4f\x2a\xe8\x99\xfd\xcf\xfb\x24\xa5\xf8\x3c\xc5\xf3\x69\xc9\x4a\xb0\x94\x3c\x9f\x6c\x1e\x01\x3a\xf8\x42\x73\xef\xdc\xa3\x8a\x06\xe9\xc7\xe4\x62\xf1\x28\x7e\x86\x8f\x8a\xa4\xa7\x2a\x09\x80\x73\x45\x3e\xa2\x28\xcc\x30\xe5\xc4\x43\xed\x94\x25\x31\xd3\x39\x25\xa3\xe8\xf8\xff\x84\x62\x5e\x01\xff\xf8\xc1\x89\x4b\x98\x27\x11\x6a\x74\x9f\x5e\x83\x68\x70\x5a\xd5\x7b\x59\xa1\x82\x4f\xe8\xd1\xe3\xf7\x41\x34\xc2\xc7\x0a\x06\xdc\x35\x6d\x6a\x6b\x6e\xa7\x37\x2d\x32\x2f\xbe\x5e\xb1\x1d\x7d\x49\x14\x7d\x4f\x28\x25\xe4\x3f\xd0\x54\xbb\x3c\x0e\x29\xf6\x1c\x5e\x83\xff\xab\x4e\xd5\xb8\x9d\x0c\xc2\x76\xc3\x7b\x1e\x74\x56\x44\xfa\x51\x19\xc2\x41\x32\x5d\x99\x28\x80\xf1\xfa\x76\xe0\x51\xf0\xb7\x02\x3d\x82\xe0\xd2\x2c\xdb\x5e\x2e\x75\xde\x0e\x6b\xe0\xfb\xe1\x0a\x69\x01\x0d\xe7\x99\x41\xb1\x50\x1a\x8a\x3f\xe6\x5b\x6a\x48\xf7\x5b\x95\xc8\x9a\x50\x9d\x6e\xa2\xcd\x41\x1e\xf7\x39\xf8\xa3\x23\xeb\xc8\x06\xc9\xb2\x33\x92\x8c\xda\xa3\x02\x12\x96\xd1\x13\xb4\xa5\xf0\xc2\xb7\x4c\xe4\x43\x26\xcf\x6d\x26\x80\x20\xa7\x62\xe1\xf2\xfd\x7f\x71\xda\x0d\xcc\xe5\xfd\x22\xb8\xc9\x77\x15\x97\x81\xe2\xee\x96\x89\x37\xc1\xdc\xad\xc0\xee\xdd\xdd\xf2\xa4\x4e\xff\xf9\x8b\xe0\x37\x15\x52\xf4\xaa\xd4\xb2\xb8\xc3\x62\x9d\xc2\xf9\x5f\x51\xb2\xec\x8d\x49\x71\xaf\x02\x00\x6f\x7c\x4d\xb8\xe0\x8e\xaa\x35\x16\x85\x26\xcc\x92\x18\xf9\xa7\xe4\x09\x74\x09\x22\x16\xe2\xed\x5a\x6c\xc2\x08\xf1\x09\x5e\x33\x1a\xde\x7c\xec\x0a\x1f\xc9\x10\xbd\x95\xe2\x75\x3a\x51\x6d\x07\xf0\x39\x52\x6a\x47\x44\xa3\x01\x22\x4b\x98\xab\x4f\x02\xdf\x8e\xff\xa4\x58\x2b\x12\xb0\x49\x1b\x14\xf7\xc5\x14\xbe\x7c\xa2\xb4\x42\xc2\x48\xa6\x12\x45\xf5\x8e\x1e\x19\x9f\x54\x85\xa2\x17\xf7\x3f\xd3\x5c\x5e\x8b\xc2\x57\x1b\xbe\x1c\x72\xbb\x54\x3b\x7b\x4c\xb9\xa5\x15\x9b\x3d\xe2\xcb\x41\xeb\xba\xc3\xc1\x62\x3f\x90\xf4\xbc\x4f\xaf\x40\xc6\x33\xb5\xea\x5f\xa0\x02\x52\x90\x2e\xc2\xa0\x6c\x9b\x78\xc4\xca\x1f\x22\x70\x10\x0a\xbf\xcd\x1b\xf4\x6b\x73\x4d\xb3\x94\x8c\x40\x1c\xe1\x04\x26\xdc\xfc\xf9\x29\x5a\xde\x32\x5b\xb7\xf9\xc3\xfb\x16\x0a\xe3\x9e\x32\x0b\x2e\x0c\x1b\x38\x3f\xf9\x58\x75\xe4\x78\xba\xbb\xc8\x77\x9d\x76\xc9\xba\xd2\x2e\x59\xaf\xb3\x1d\x14\xfb\x4e\x69\x6e\x7c\xfa\x76\x44\x8c\x10\xd8\x11\xce\x88\xba\xa1\x7d\xbb\x62\x01\xa0\xac\x53\x97\xaf\x99\xd7\x65\x71\x5c\xdc\x4e\x1d\xe2\x49\x51\x41\x86\x28\x01\x20\x2f\xba\xac\x27\x83\xee\xc1\x5a\x8a\x1b\xf4\x69\xe0\x5f\xfa\x0e\x4c\x3f\x4d\x06\x49\x96\x0c\xec\xf4\xd6\x67\x9c\x8e\x53\x43\xe4\x02\xe6\x9e\x6c\x29\x6a\xbb\x0b\x4a\xca\xe1\xd1\x8a\xf0\xf0\xa1\xd9\xfd\xc4\x1c\x8f\x8b\x46\x8b\xe2\x1d\xda\xc0\x7c\x1c\xec\x51\x1c\x0e\xbd\x3e\xf1\x9d\xf8\xe5\xf9\x5b\x63\xc5\x7d\x72\x41\x81\x46\x2e\x96\xda\xb3\x26\x1b\x60\xa7\xaa\xb0\xc8\xc5\x48\x0a\xf0\x9b\x8d\xd2\xae\x61\x9e\x40\x27\xb9\xe5\xe5\xb7\x54\xcc\x11\x25\x4b\x4b\x6b\x33\x4a\x4d\x05\xc0\x07\x74\xfc\xff\x02\x9b\x41\x9c\x44\xb1\x62\x78\x9e\x11\x59\xbc\x0c\x37\xfa\x9a\x67\xde\x4f\xad\xc9\x6d\x6c\x3b\x5a\x55\xfc\x3d\x9d\x88\xbc\xa7\x82\xc2\x57\x6c\x9a\xd9\xb5\xe9\xb2\xe4\x0b\xa5\xc9\x2e\x43\x74\xe5\x22\x66\x3a\xe4\xbf\xaa\x9b\xf3\xee\xa6\xd6\xae\x1a\x48\xdf\x09\xd9\xa6\x0f\x56\x4e\x55\x7a\x8a\xd4\x0e\xe4\x0e\x0d\x37\x5e\xb0\xa3\x8f\xe1\xbe\xf9\x44\x61\xae\x87\x69\x98\x87\xcb\x61\xcc\x0d\x48\xd4\x08\xae\x6b\x15\x9f\x73\xba\x15\x7e\xf8\xa1\xf4\xd3\x4c\x27\xc3\x90\x13\x64\x58\xdb\x5a\x1e\xb9\xc9\xc1\x31\x16\xef\xbd\xca\xd7\xbc\xfc\x32\x0d\xbb\xd9\x74\xc5\xe4\xe1\x8a\xa4\x62\xce\xa1\x14\xdf\x29\xf2\x1b\x3e\xa5\xea\x9b\xa1\xb0\x67\x60\x15\xdf\x52\x92\x28\xb7\x4a\x06\xbc\x9b\xbd\xaa\x88\xda\x7e\x4f\x11\xb5\xfd\x9e\xa2\xd8\xcf\x06\x49\x92\xf7\xa3\x35\xe2\xaa\x03\xf0\x01\xad\x32\x3e\x46\x4e\x28\x80\x48\x55\x55\xd1\x80\xcc\xcc\x1a\xc6\xfe\x20\x52\xfa\x0e\x19\x50\x19\xe9\x56\x03\x64\x3c\xf5\x86\x55\xfa\xb3\x8a\xdd\x78\xae\x39\x8c\x46\x83\x25\x57\xd4\x40\x4d\x13\xd9\x3c\x1f\x57\x16\xc0\xa1\x59\x72\x6b\x83\x30\xcb\xc3\xf6\x94\x8e\x87\xa8\x3a\xe3\x98\x3f\xe7\xe7\xb9\x22\x73\x4f\x01\x33\x3b\xd6\x74\xa2\x30\xb6\xa4\x71\xe7\x66\xb6\x1c\xb3\xf6\xb5\xb1\xa2\x22\x62\x41\x74\x7c\xe1\x6d\xad\xed\x7c\x3a\xf0\x4e\xfe\x28\x47\x71\xf2\x1e\x37\xdb\x98\x97\x5f\x6e\xf6\x52\x51\x87\x47\x8a\xce\x22\xc5\x7c\x52\xd1\x18\x9c\x9f\x6f\x9a\x94\x3a\x42\x8e\x7b\x8f\x87\x18\x03\x3f\x90\xfe\xe9\x43\xf9\x88\x22\x93\xf6\x2c\x91\x7a\x23\x10\xbe\x41\x8f\x02\x2d\x9d\x9f\x57\x72\x4c\x53\x13\x45\x7e\xfb\xc8\xa4\x46\x81\x31\x4e\x78\x42\x4a\x26\x2c\x0a\x5b\x22\x93\x17\x35\xb0\x1e\x92\xaa\x6f\x7b\x08\x1b\xec\xd1\xe5\x40\x4f\x80\xa8\x91\xfa\x0a\xbc\x78\x61\xa1\x38\x53\x44\xe7\xc7\x15\xd1\xf9\x71\x95\xec\x2c\xa5\x61\x9e\x43\x60\xd8\x4f\xb5\x79\x5c\xdf\x5d\xaa\x32\x32\xf3\xb2\x0a\x1b\xe2\x24\x94\x0c\x55\x8f\x4c\xe1\xcd\xfd\x09\x5e\x3d\x13\x3c\x07\x1e\x04\x76\xc4\x27\x9e\x11\x29\x1b\x23\x20\x17\x0d\x92\xe2\x6a\x45\x9c\x64\x73\xd0\xbb\xff\x85\x03\xcd\x76\x94\x64\xa0\x82\x41\xd2\x3e\x4d\x49\xbb\x7e\x1c\xd2\xd1\x2d\x0d\x5d\xb5\x9f\xdf\xe1\x03\x65\x60\xe7\x71\xa3\xd7\x02\xa5\x44\xfc\xe8\x44\x11\xd8\x4c\xb7\xb4\x98\xb4\x82\xb1\xfd\x31\xd6\x2e\x6c\xc1\x95\x12\xc1\x74\x0d\x17\xc9\x28\xee\xd8\xb4\x88\xee\xe9\xd5\x8b\xa6\x9a\x07\xad\x5d\xad\x94\x7c\xe7\xe7\x9b\xcb\xbd\x25\x7a\x6f\x8e\x46\xa8\xf8\x41\xe1\x30\xdd\xbc\xb4\x16\x67\x9b\x4b\x49\xdc\xd1\x3b\x42\x49\x18\x7d\xea\x92\xdf\x41\xd8\xc9\xf2\x29\x25\x7f\x7c\x56\x29\xe7\xdd\xd6\x37\x75\xba\x62\x59\x0e\xcd\x7e\xa5\x99\xda\x4e\xc2\x34\x3c\x22\xdd\x56\xe4\xa6\x70\x80\xa7\x89\x41\x4b\x6a\xb9\x9f\x2b\x29\xb2\xa5\xa6\x9d\x0b\x8d\x1b\x4b\xc3\xd3\x7b\x16\x99\x78\x4f\x60\x1c\x45\x20\x23\x9c\x73\x69\x8c\xaf\x04\x43\xb0\x08\x66\xf5\x9d\xb1\xee\x57\x0d\x6c\xb7\xf8\xfa\xf9\x79\x31\xb4\x67\x40\xea\xc0\x27\x95\x75\xf4\xf2\xcb\xcd\x25\x93\x2d\xdb\x5c\xc9\x1d\xa3\xc8\x2d\x4d\x20\xd7\xe9\xb4\xa9\x35\xd1\x94\x0f\x1b\x18\xcb\x84\x3c\xea\xb2\x9a\x88\xde\xad\x74\xec\x3b\x23\xd6\xf5\x93\x6a\x81\xe2\xae\x39\xa5\x34\x72\xfe\xaa\x62\x8c\xd1\x2e\xca\x2d\x2b\xd8\x39\xc6\xf9\x2b\xaa\xc9\x74\xc5\x0d\xfa\xb8\xaa\xb4\xd4\x64\xb1\x8a\xdf\xa4\xcb\x02\x8c\xe9\xe8\xd8\x0f\x6b\x9d\x2b\xb9\xb7\x76\xf2\xfc\x13\x14\xc0\xe0\x43\x57\xe9\xfe\x91\xdd\xbd\x41\x1f\x42\x44\x45\x6f\x60\x83\x27\x04\x98\x05\x86\xe7\x00\x24\x70\x26\xc7\xc5\xf0\x2c\xb2\x69\x6e\xee\xcc\x47\x01\x57\xc6\x0a\xe5\x74\x39\x28\x81\x80\x8b\xd7\xcd\x57\x1b\xa8\xb9\xb5\x9b\xd4\x7e\x43\x6b\xe8\x6d\x45\x8c\xf8\xbf\x05\x8a\xb3\xfe\x83\x4a\x0c\x34\x77\xb0\xd9\x4b\xcd\x8a\xcd\x72\xac\x08\x61\xc8\xf5\xc5\xf3\x0f\x7d\xe7\xa0\x1f\x0e\x87\x36\x45\x86\xc8\x54\x62\x1a\x6a\x7b\xc4\x73\x4b\x0e\xad\xed\xec\xf0\x2f\x81\x03\x0c\xdc\xcf\x7d\xdc\x29\xaa\x18\xbf\x43\x46\x10\x06\xe9\x7d\xfa\x55\x60\x43\xfe\x56\x4b\x81\x27\x6e\x69\xed\x3e\xae\xa7\xc2\x86\xdc\xa9\x1d\x04\x33\x83\x64\xe4\xd4\xcd\x60\xf8\x98\x4e\x9f\x4f\x7c\x93\xd7\xa6\x16\x86\x1c\x93\xbf\x97\xe8\xbd\x22\x94\x38\x49\x60\x35\x1c\xbf\x35\xd6\x14\xfa\x69\xb8\x6c\x67\x54\x33\xe8\x0e\x48\x40\x05\xfc\xad\x16\xd7\x03\x25\x61\x7b\x21\xf0\xbd\x8b\x77\x9c\x88\xc7\xc0\x64\xdf\x18\xd9\xd4\x78\x99\x4a\x54\x6e\xd0\xcd\xe7\x63\x67\x94\xbe\x31\x0a\x2d\x0f\x73\x21\x95\x3a\xa3\x44\x9f\x1b\x44\xac\x26\x44\x29\x3e\x18\x7b\x83\x82\x36\x01\x0e\x3f\xa9\x74\x47\x44\x59\x81\x9e\x8d\x10\x1f\x78\x90\xe6\xb9\x8a\x2d\x78\xae\x59\xa4\x3e\x45\xd2\xe2\x19\x5e\xfb\xf4\x09\xa9\x7b\xd5\xe4\x82\xe9\x68\x29\xb2\x0a\xbf\x8f\xee\x83\x2c\xe8\x0a\x49\xfc\x0b\x07\x9a\xaf\x8c\x3a\x61\x3b\x2c\x4c\x89\xe7\x6f\xc5\xaa\xd1\x62\x6f\xf0\x35\x9f\xea\xf0\x72\xd4\xe9\x58\xe2\x75\x2d\x12\x02\x74\x9c\xef\x29\xad\x88\x7b\x15\x96\xf4\xb9\x83\x45\x58\x5c\xf8\xe6\xcc\x8e\x30\x3c\x8b\x70\xfa\x9c\xa2\x75\xae\xe6\xa8\xb4\x6d\xac\x8d\xa7\x3c\x00\xf1\x5d\xfa\x00\x58\x50\xb6\x00\x80\x84\x6d\xd1\x98\x68\xad\xbb\xc8\x66\x3b\x7d\x9e\x7d\x05\xfb\x59\xf4\x06\x69\x65\x23\xc6\xf9\x01\x7d\x9d\xee\xb0\xb8\xe9\xb5\xb9\x83\xbc\x8e\x73\x25\x79\x36\x26\x1c\x0a\xe0\x71\x97\xc0\x0a\x50\x82\x8a\xe3\x71\x5f\x76\xb6\xba\x9f\x00\xae\xef\xba\xfc\x9b\x6a\x29\x3e\x6a\x1d\xc5\x61\xe4\x69\x6f\x85\xa8\x98\x96\xaa\xe6\x99\xc4\x65\x68\x32\xa7\x64\x35\x7b\xcc\xcf\x7a\x34\x26\x4a\xb1\xea\x81\xa2\x0e\xba\xa0\x2f\xf0\x14\xec\x23\x2d\xdc\xbf\xfd\x6c\xab\xf1\x35\x11\xf2\x39\x8e\xf2\xaa\x1b\x20\x2e\x5e\xb0\x88\x33\x7b\x19\x9b\x8f\xc7\x9b\xcd\xc6\x7e\xa7\x42\x52\x18\x1a\x14\x69\x00\x09\x83\xcf\xfc\x85\x89\x27\x47\x58\x7e\xa6\xe5\x13\x4d\xd3\x19\x45\x79\x36\xa5\xf4\x2c\xd1\x88\x94\x92\x9e\xe2\xf0\xbe\xab\x5a\x8a\xd9\x28\xdb\x5e\xbc\x2d\x44\x65\x0f\x60\x7d\x61\xfb\xaf\x6b\xb1\x32\x48\x74\x3a\x3c\x9d\x63\xdb\x9d\x56\x5c\x3c\xbb\x5a\x7e\xda\xbe\x31\x11\x33\xdc\x37\x83\x01\xa1\x04\x74\xd5\x74\x6b\x4b\xc1\x0c\xce\xeb\x39\xb4\xeb\xaa\x14\x3d\x30\x79\x6e\xd3\x6d\x1e\xaf\x83\x89\x64\xfc\xf2\x35\x64\xe8\x42\xea\x52\xfc\x34\xde\xc9\x31\x7a\x59\x3c\x37\x8b\xc0\x07\x6b\xb1\xca\xf7\x59\x6c\xa7\xd4\x0c\x1b\xbe\x73\x02\x8c\x2e\x1f\x3f\x54\xb3\x21\x32\x4b\x09\xa3\x85\x18\x6f\xa5\xe8\x8d\xef\x06\xa5\x05\xb2\xd9\x60\x3c\xd7\xec\xd9\x38\x8f\x6c\x4c\xd2\x86\x8b\xb3\x5e\xad\xcd\x37\xb5\xab\x4a\xe7\xf3\xf3\x07\x48\x26\x2f\xb2\xaf\x96\x34\x15\x1a\x8e\x93\xa3\x0a\x4b\x2d\x7c\x4b\xdf\xac\x58\xe0\x33\x1c\xb7\x98\x4b\x76\xfa\x1a\x45\x7d\x5e\x4d\x69\xdb\xc1\x92\x7d\xed\xb5\x08\x61\xd7\xa2\x83\x1a\x29\xf5\xfa\x8b\x75\x1d\xb7\xae\x09\x23\xc5\x34\x76\x56\x91\xee\x9c\x7d\xe8\x74\x6a\xc7\x9a\xc8\xa6\xb2\x3a\x4a\xc2\x35\x48\x39\x99\xa4\x1e\xa1\xe1\x94\x2b\x62\x87\x03\x12\x67\xa0\xdf\x43\x21\xe9\x3e\x99\x17\x3e\x56\xa4\x3d\xd9\x20\x59\xb6\xb0\x06\xb0\x16\xbb\x26\x4a\xa4\x0d\xc0\x3d\xac\xbd\xe9\xd6\x13\x25\x91\x44\xd2\x77\x77\x83\xb8\xc7\x00\x25\xc2\x73\x7c\x27\x50\x4a\x38\x47\x09\x1d\xe1\x8a\x68\xba\xcf\x78\x68\xb6\xa4\x8f\x85\x9e\xc3\x7d\x4f\x24\x1b\x0e\x0b\x7f\x6a\x96\x35\x18\x10\x8b\x49\x9a\x18\xde\xb2\x51\x98\x60\xc2\x78\x46\xa5\xff\x30\x66\x28\x14\x03\xde\x04\x9b\x3a\x4d\x65\x0a\x54\xe6\x00\x9c\x62\x6a\x9e\x89\x9e\xd2\x79\x75\xa6\x88\xc2\x84\xa5\xb2\x84\xfc\xf2\x49\x18\x48\x13\xf0\x1e\x41\x4e\x82\xc8\xf7\xc7\x0a\xdb\x97\x26\x09\xe4\x96\x11\x44\x6e\xc7\x8c\x94\x40\x95\xe8\x51\x39\xd8\x95\x53\xb9\x78\xaf\xb2\x28\xf6\x2d\x40\x1e\x78\xd5\x66\xb9\x4d\xe3\x12\x93\x84\x2a\x4e\x9e\x57\x14\x95\x4b\x26\x77\x6a\xa9\x8e\x32\xd5\xd3\xa7\xd6\x79\xd0\x6e\x92\xe6\xfd\x36\x89\xdf\x23\xf7\xd6\x8d\x28\x51\x1f\xf4\xb1\xdd\x7a\x65\xad\x2f\xce\x36\x93\x15\x36\x4c\x92\x10\x17\xcf\x85\xa9\xd6\x4a\x0f\x92\x96\x17\x3a\xa1\xd7\x88\x7e\x08\x4b\x06\xc3\xa1\xb0\xf5\x33\x15\xe1\xe9\x43\xb3\xfb\x41\xe8\x35\xe5\x2d\xed\x0c\x4a\xb5\xce\x3d\x38\x1a\xf7\x7b\x75\x38\xf1\x6e\xd8\xb1\x98\x2c\x5c\x58\xe0\xd5\xf8\xbe\xe6\x1c\x79\x5f\x89\x2c\x25\xdd\x6e\x66\xf3\x1d\xf4\xf5\xd2\xde\xf7\x10\xce\xe3\x63\x9f\x83\x1f\x2f\x8d\x1d\x29\x92\xdb\x5b\xd8\x1b\x38\xd9\x06\x00\x1e\x9f\x20\xd1\x86\xf7\xba\x56\xa9\xdf\x14\xe1\x6f\x2f\x0d\x01\xb9\xb7\x4a\x7f\xf7\xa2\xd6\xdf\xd5\xcd\xf3\x81\x19\xa5\xa2\x10\x23\x55\x25\xfa\x53\x3e\x29\xa9\x47\x25\x9d\xde\x5a\x43\x05\x37\xeb\x4a\x8a\x65\xbd\xd2\x77\xdb\x3b\x47\xd1\x95\x1b\x8c\x45\xe7\x87\xb9\xa8\xf9\xa4\x0e\xa5\xde\x4b\x12\x30\x04\xc0\xe9\x6c\x69\x95\x58\x35\x7d\xf8\x74\xc9\xe5\x26\x03\x1b\xe5\x9d\x64\x15\x9c\x26\xa2\x5a\xd8\x70\xc2\x22\xb7\x2a\xaf\x54\xcc\xe5\x52\x1c\x51\x5f\x03\xef\x83\xa3\x4c\x3e\x51\x73\x17\xd4\xdf\xce\x13\xb0\x98\x70\xb3\x38\xd0\x8d\x63\x85\x11\x1f\x65\xfd\x30\xee\x6d\x2b\xd6\x26\xfc\x38\x24\x38\x5c\xab\xcc\x61\x72\x00\xa1\x70\x02\x32\xfb\xa4\xba\x70\x13\x57\x81\x98\xf5\x8a\x0b\xfe\xa3\x35\xea\x00\x38\xc6\xd5\xf3\xc8\x12\x35\x80\x5e\xca\x51\xde\x90\x2c\x9b\x4c\x7c\x01\x38\x6f\x3e\x51\x43\xfd\x2c\x81\x8b\x6d\x76\x56\xcd\xa4\x14\xb9\xb2\xf0\x15\xf8\x3e\x8f\x6f\x3e\xac\xab\xa0\x62\x68\x87\x43\x16\x26\x12\xa6\xdd\xe2\x0f\x85\x82\xd7\xcf\xbd\xaf\x86\x79\xbf\x93\x9a\x55\x13\x31\x51\xb0\x03\x67\xb8\xfc\xd9\x37\x0f\x33\xf2\x16\xba\x27\x08\xcb\x2c\x4b\x4d\xdc\x56\xd7\xa6\x79\x18\x59\x25\xc1\x0f\xf1\x13\xd1\xa0\xd9\xe3\xaf\x33\x4d\xd0\xa6\x6d\x38\x62\x85\x1b\x2a\x75\xb9\xa1\x9a\x0c\x79\x1a\x16\x17\x59\x44\xd4\x48\xad\xa6\x48\x03\x81\x8f\x27\x9e\xda\x06\x7a\xa5\x9a\x5e\xe8\x8c\xa2\x17\x3a\x33\xf6\xc2\x62\xc3\xc2\xc0\xe5\xac\x38\x21\x1a\x49\xc5\x95\xf0\xb1\xbb\xa1\x24\xcd\x6d\xcf\x64\xa5\x7e\x01\x28\xf9\xe5\x71\xd1\xb3\x43\x9a\x77\xc9\xf5\xd1\xa3\x11\xaf\x0d\xb8\x31\x14\x5b\x80\x29\x7c\xa4\xe5\x41\x47\x5b\x26\x3b\xdd\xc5\xc7\xbc\x2b\x61\xad\x59\x68\x98\x4f\xea\x44\x1b\x6d\x94\xd9\xd5\xbe\x65\xf6\x53\x47\x77\xb9\xe8\x8e\x55\x18\xbc\x1a\x02\x1e\x0b\x08\x1f\x5f\x33\x9f\xb8\x5b\x1d\x58\x68\x40\xd2\xe3\x63\x95\xa2\x89\xdf\xdd\x3f\x47\xd7\x8d\x5d\xc0\xe0\x4b\x51\x8a\xf4\x15\xb3\xdc\x46\x16\xa3\xab\x3b\x28\x2a\x43\x10\x72\x07\x71\x37\x9f\x50\xc7\xdb\xcd\x1b\x38\xae\x81\x4f\x61\x70\x9d\x1a\x9b\xef\xe6\x5c\x54\xad\xaf\x1f\x69\xb5\x6f\x77\xe9\xed\xd4\x76\xc2\x9c\x91\xba\x4c\x54\x46\x41\xd6\x06\xd6\x14\x12\x8d\x0f\x54\x36\x94\xf7\xcd\x4c\xe3\xe0\x0b\x8e\x2a\xc2\xfb\xba\x3b\xf0\xe7\x68\xcf\x1f\x51\x2f\xee\x46\xa0\x4c\xf6\x5d\xbf\x35\x6c\x64\xdb\x79\x43\x8f\x59\xbe\xa9\xe9\xfd\xdf\xd4\x91\x67\xf1\xa7\x61\x12\x67\xd3\x25\xa1\x41\x0f\x43\xbc\xa8\x99\x01\x51\xc7\x96\xca\xa9\xfb\xbd\xe5\xd0\x79\x76\x3d\x07\x8b\x22\x01\xb0\xfc\xc8\x7b\x4f\xd4\xa9\xf8\xd8\xc1\x52\xd2\x01\xb7\x34\x93\xad\x6a\x49\xa0\x37\x94\x7b\x69\x9b\x34\x4a\xa0\x42\x26\x93\xd3\x74\x5b\x3c\x69\x44\x30\x62\xfe\x0f\xba\x03\x99\x40\xf2\xd9\xdc\x8f\x34\xe5\xde\x8f\x6a\xea\xb2\xcd\x8e\xed\xae\xb9\x2d\xcb\x9c\xe8\xca\x90\xaf\xab\x37\x66\xd3\xfc\x51\x35\xcc\x2c\x88\x19\x20\xc7\xce\x53\xec\x81\xb2\x1a\x64\x36\x04\x12\x4d\x57\x80\x98\xe4\x26\xee\x14\x7f\x75\x37\xf0\x53\x2c\x67\x91\xe6\x4a\x0b\x9c\xee\x12\xb9\xe0\x25\x8a\x6f\xf0\xfe\xe1\xc1\x50\xff\xd8\xd9\x52\x5c\xd4\xd5\x08\xe5\xd0\xec\x57\x9a\x4b\xd6\xa4\x12\xb9\x21\x28\x41\xe4\xc6\xc7\x2a\x82\x8f\x93\x25\x8b\x69\x3c\x46\x23\x53\x14\x2a\xc8\xe4\x5a\x74\x44\xbb\x6f\x2d\x07\xd5\x35\x12\x4b\x81\x32\xb3\x5d\x4b\x50\xc3\x86\xdf\x68\x47\x4b\x7a\x61\x4a\x33\x79\x64\xa2\xdd\x1e\xbe\x70\x0f\x75\x68\x3c\x14\x9e\x12\x92\x88\x8c\x1e\x17\x0b\xbd\x53\xc8\x81\x1f\x7e\x40\x6f\x01\x17\x7e\x56\xf9\x87\xfb\x58\xd5\x3c\xc7\x08\x68\x39\x7f\xef\x58\x49\x23\x83\x1f\x1c\x51\xf9\xee\x96\x52\x3c\xbe\x04\xfb\x21\xca\xf2\x9b\x60\x67\x45\x1e\xf8\xdc\x13\xc5\x2f\x8b\x21\x29\x3c\x05\xfc\x3b\x4b\xbc\xa3\x4e\xf1\x5d\xd4\x29\x44\x62\x97\xee\x08\x35\xb9\x1b\x24\xe5\x86\x8a\xe6\x49\x85\x28\xe3\xa9\x5a\xc0\x16\x30\xad\x8f\x15\xaf\xab\xe7\x33\xc8\xb7\x80\x76\xba\x0f\x60\x09\xad\x9e\x5f\xdf\x43\x7e\x4a\x24\xb1\x7d\x7f\xe9\x38\xbd\x60\xfe\x69\xbc\x0d\x41\xf6\xfb\xc8\xbf\x97\x26\xab\x36\xcd\x48\x42\x4a\xc8\x51\x8a\xaf\x40\xbb\x8a\xab\x29\x7c\x42\x46\x8e\xff\x48\x75\xbb\x57\x6c\x6e\x53\x13\xb3\x7f\x17\x37\xa7\x7d\x9e\xc2\xfc\xbd\x62\xda\xcb\x59\x12\xaf\x84\x51\x04\x60\x56\x2d\xed\x88\xa2\x2f\x13\x7d\x76\xbf\x2b\x00\x3d\xe0\x63\x37\x48\x54\x98\xe6\xa4\x70\xe1\x30\xcf\x48\xc7\x2e\xaa\x99\xd7\x2f\x92\xcd\x22\x67\x32\xf3\x37\x55\x02\xd7\x0f\x07\xbb\x8b\xd7\xca\x25\x27\xd5\xe4\xb8\xab\x22\x85\xff\x4a\x0b\x50\xf8\x73\xbc\x4e\xe9\x16\xd4\xac\x45\xe2\x97\x16\x9d\xe2\xc6\x94\x76\xd3\x49\xaa\xd4\xc3\x93\xb1\xa6\x3a\x1c\xe3\x5b\x28\xc0\x08\xbb\xa2\xef\xf3\x9d\x50\x02\xda\x6f\x94\x04\x32\xa3\x30\x99\x56\x7a\x42\x2c\xf5\x2d\x0c\xae\x65\xb2\x3a\x37\x13\x71\x56\x4d\xea\xb5\x93\x81\x05\xaa\x10\x69\xee\x8d\xf1\xe6\x7b\x66\x16\x6d\xc0\xbf\x65\x08\xcd\x27\x76\x27\xc8\x65\xb0\xec\x13\x59\x68\xe6\xb7\xab\x99\x62\x3c\xd0\xec\x8a\xcc\x30\x96\x22\x17\xf6\x59\x90\x8e\x1e\x25\xde\xe5\xc7\x75\xa0\xe7\x76\x64\xc2\x01\xbb\x5c\x21\x8c\xa2\x5b\x44\x41\x00\x83\xdc\x32\x5c\xae\xfb\x99\x51\xfe\xda\x0c\x6c\x37\xde\xc0\x25\x18\x04\xa9\xba\xfa\x16\xd3\x56\x25\x6a\x34\xc1\x32\xc4\x1b\xd8\x3a\xd9\xe9\x96\xe1\xdf\x79\x92\xae\x00\xf1\xca\xfb\xd8\xe1\xe8\x12\x7f\x4c\x0f\x0f\xa6\x7f\x7b\xab\xb1\xb8\x7f\x83\xf5\x8f\x1c\x49\x44\xf1\x7e\xf1\xa0\x01\xc9\xc3\xdf\x7e\x84\x40\x1e\xc5\xbb\x7b\xf8\x5d\xbc\x82\x23\x63\x2f\x0b\xf4\x38\xdd\x1f\x78\x6c\xf6\x4c\x14\x6f\xdb\x8f\x40\x7d\x2a\xa4\x69\x5b\x9f\x91\x69\xa1\xb1\x1f\x5f\x63\x38\x81\x1b\x84\x71\x03\x35\x6c\xaf\x44\x9b\x78\x97\x6b\x4b\x44\x76\x3b\x99\x63\x24\xb0\x3f\xd8\xc4\x91\x58\x2c\x06\x37\x9f\xe5\x26\xe9\x58\x4c\x18\x57\x02\xc2\x27\x69\x63\x17\xd7\x8e\x3c\xe3\x91\x56\x4d\xeb\x3d\x33\x9d\x46\x19\xc8\xe8\x31\xfe\x7a\xfe\xd6\xa6\xdd\xd1\x80\x67\x23\x44\x14\x53\x4d\x11\x7d\xac\x9c\xdc\xc0\xbc\x1a\x82\x40\x50\xc4\x35\xe8\x29\x0b\x1b\x78\x5d\xdf\x21\xeb\xdb\x8e\x6f\xc4\x30\xce\x96\x76\x81\x60\x6e\xfd\x0c\xde\x92\x4d\x6d\x8e\xa8\x0a\x21\xea\xa7\xf4\xae\x34\xac\x03\x7e\x09\x8b\x0a\x95\xa3\xd3\x6a\x5e\xa1\x9d\x86\x59\x98\x4d\x2b\xea\x12\xe6\x6e\x70\xda\x7b\x4e\x4c\x8e\xc3\x05\x19\x17\x92\x97\xd4\x4d\x84\x1c\xd4\x8d\x2d\xf8\x40\xe2\x8e\xca\x67\x22\x2a\xff\x28\xe6\xd7\x77\xb0\xc8\xf8\x24\x50\x23\xe5\x49\xda\xb6\x1d\x85\x29\x2c\xe9\x63\x2a\x86\xf1\x63\x2e\x2d\xe5\x60\x62\xc1\x07\x10\x0a\x52\x77\xa1\x04\x46\xb3\xb1\xd9\xee\x27\x6f\x3f\x0b\x54\x97\xf3\x4c\xb0\x79\x98\x01\xbe\x75\x83\xba\x70\x02\xe1\x52\xbe\xfb\xb3\xb1\xc7\x07\x7e\xe6\x49\xbc\xcc\x40\xda\xbb\xa8\x70\x83\x59\x02\xc6\xfa\x1c\x96\x8a\x88\x96\xf9\xbb\x1e\x9a\x91\x50\xa7\xc2\x14\x63\x72\x84\x8f\xc7\x3e\x9c\x0e\xe3\x15\x9b\xb9\xf2\x18\xd2\x14\x80\xb0\xf8\xb8\xc2\x71\xb3\x6f\x81\x54\x7c\x36\xe9\xdd\xa0\xce\x2c\x53\xd4\x35\x34\x0b\x36\x4e\x93\x28\x72\x10\x1c\x78\xf1\xc3\xaa\x10\x77\xb8\x8e\x22\xae\x3f\xea\xf5\x2d\x3b\x5f\xc7\xad\x5f\xac\x0f\x3e\xa9\x84\x76\x8b\xb3\xcd\xd4\x66\xc3\x24\xee\x50\x27\x0b\x26\xe1\xa7\xb4\x90\x01\x37\xe0\xb4\x48\x8a\xf2\x3e\x74\x1b\xd8\x78\x27\x7d\x75\xa9\x92\x80\x77\x06\x27\x22\xf5\x51\x32\x90\xc2\x5d\xa8\x08\x1d\x8e\xc3\x24\x61\x85\x9f\xd4\xb6\x8a\x82\x3a\x46\xd8\x07\xce\xe8\xad\x6c\x6d\xa9\x32\xf3\x49\x5f\x01\x18\xe5\xa3\xd4\x66\xdb\x60\xe1\x71\xa5\x53\x2d\x45\x57\x33\xf6\x09\xca\x1f\x63\x23\x89\xf2\x1f\xdd\x80\x60\x69\x14\xc3\x9b\x87\x76\xa7\xb6\x93\x1a\x21\xa2\x40\x08\x73\x4f\xa5\xed\xf7\x9c\xf6\xa6\xc9\x19\xdc\x83\x56\xc7\x13\xa8\xd2\x71\x8a\xc4\xbc\xe2\xc8\x57\xde\xc0\xfe\x80\xcb\xbc\x5d\xd7\x5a\x5c\x8a\x46\x8e\x55\x49\xc0\xa8\x4a\x52\x98\xc9\x56\x44\xee\xc6\x27\x2c\xcf\xff\xe3\x7f\x46\x32\xc6\x0e\xae\xef\xa1\xfb\x75\x4a\x57\xaf\x8c\x06\x43\xde\xeb\x4e\xb0\xa6\xb8\x4d\x3c\xe0\x0b\x5a\x41\x65\x43\xa5\x94\x79\x11\xe0\x0d\x93\x14\x2b\x53\x84\x8d\x8b\xdf\xe2\xe3\x2a\x12\x69\x71\xbf\x83\xdf\x3b\x92\xa4\x52\x36\xb4\xb9\x8a\x79\x68\x76\x4e\x44\xfe\x58\x3a\x73\xbf\x63\x16\xd7\x03\x7b\xeb\x84\x8d\x90\x6b\xf0\xad\xed\xac\x4d\x9d\x2e\xdb\x51\x74\x89\xa7\x14\x15\xd1\x29\xd7\x07\x5d\x1a\x15\x7f\x38\xe5\x13\xb8\x1b\x81\xea\x2d\x9e\x2c\x61\x3b\x94\xf4\x82\x49\x1b\x5e\x78\x8c\x75\x26\x84\x77\xde\x47\xd4\x0e\x6c\xe3\x2b\xc1\x3f\xa0\x6f\xe4\xe3\x9a\x18\xa9\x19\x85\x16\x55\x4c\x84\xf7\x27\x14\xe1\xb5\x66\x40\x36\x43\xbb\xa3\xb1\x38\xbb\x01\xed\x11\x44\x08\x5f\x68\x29\xd6\x98\x9b\x88\x4c\x4a\xba\xce\x0e\x36\xe6\x60\xe9\xbb\x26\x8a\xc5\xf4\x1a\x6d\x7c\x6c\xe8\xa3\x9b\x93\x9e\x2f\xbf\xd8\xdc\xb7\x30\xed\xf5\x31\x4f\x91\x61\x46\xba\x74\x5c\x7d\xe3\x1b\x81\x87\xd0\x7d\x4f\xf9\xcb\xcc\x08\xc9\x84\xc8\xcf\x34\x1c\x07\xc0\x07\x75\x7c\x81\x76\xc5\xa6\x6b\x1d\x1e\x15\xc3\x2b\xc6\xd6\xe3\xe3\x4a\xb5\xb9\x58\x66\x44\x1f\x35\xed\x5b\xbd\x57\xc7\x8a\x01\x78\x5d\xcd\x7b\x03\x76\x2a\x0a\x6f\x35\x78\x42\x33\xca\x93\x41\xb2\x14\x32\x74\xc1\xa9\xb8\xcc\xcf\x3b\xe9\xd7\x9d\xce\x03\x3e\xbf\xa3\xd8\x77\x58\x40\xdf\x53\x82\xa2\x1c\x44\xd2\xd3\xf8\xf0\xc9\x89\xc7\xa9\xbe\x15\x6c\x7d\x86\x73\xd8\x8f\xc6\x2e\xc0\xf8\xaf\xbf\x80\x37\x88\x82\xc1\x6d\x32\xa3\x30\x1a\x57\x4a\x13\x8b\x03\x13\xc6\x61\xdc\xdb\xa6\x18\x6e\x51\x37\x40\x3b\xe7\x0d\xd5\xf9\xdc\x8a\xb6\x3b\x22\xc5\x0b\x0a\xf2\x47\xed\x8f\x97\x38\x56\x7b\x47\x81\x28\x52\x3b\x08\x63\xaa\xfd\x16\xd1\xaa\x53\x4d\x7a\x51\xaa\x6f\xa7\x82\xcf\x8b\xcd\xeb\x0c\xc2\x98\x10\x6b\xc5\x36\x45\x60\xef\x28\xdc\x5c\x35\xfa\x43\xdd\x4d\xb8\xa6\xb2\xff\x95\xd0\x4c\xfb\x94\xfd\xee\x58\x41\xea\x6e\x31\x68\x0a\x85\x9c\x0f\xe9\xa9\xc3\x56\xfc\xa8\x02\x00\xc4\x70\x8f\x16\xe5\xfd\xd9\xd8\xe3\x22\xae\xab\x99\xbb\xbb\x6e\x38\xf7\x15\x9b\x0c\x4d\xda\x01\xee\x8c\x8b\x2d\x2a\x0f\x60\x86\x67\xc4\x9f\x1f\xd5\x89\x32\x73\x81\x9c\xb7\xb6\x93\xa5\x57\xbc\xaa\x4f\x95\xb7\x4f\x11\x5e\x2e\x2c\x3c\x55\x5c\x18\x0a\x48\xf7\x68\xff\xe0\xa6\xa0\x0d\x89\x9c\xe6\x4d\xe2\x77\x39\x1d\xa8\x26\xed\x35\x7e\x1a\xb8\xbb\x6b\x81\x2f\xe0\x73\x26\x03\xbf\xf0\x0e\x2c\x17\x4b\x38\xc1\x96\x63\x49\xde\x1a\x53\x28\x8f\xfa\xf5\x16\xcc\x12\xb9\x62\xb9\x53\x04\xbf\x8c\x4a\x02\x1a\x62\xb7\x90\x93\x20\x30\xdd\x4a\xe2\xef\x58\x50\xef\xe9\x82\xe1\x59\x6c\x2f\x37\x3d\xb7\x77\xce\x75\x6a\x55\x70\x70\xa9\x14\x04\xf6\x6d\x77\xca\x3b\xf5\x7b\xba\x5e\x72\x51\x91\xfd\x9c\xa9\x74\x09\xff\x5e\x73\x69\x94\xc6\x25\xde\x65\xf6\xa5\x7c\x52\xb1\x08\x87\x66\x9b\xa3\xd8\x2c\x71\x7b\x80\x15\x91\xe8\xf1\x89\x3a\x92\xab\xe7\xf6\x4d\x1a\xe6\x6b\x85\x33\xdc\xd0\x03\xbf\x98\xc8\xc3\x5f\x9f\x52\xd6\x2c\x4d\x4c\x96\xe3\xe5\xd7\xb5\x53\x37\xdb\x93\xbd\x7b\x81\x6c\xcd\x72\x13\x77\x1a\x8a\x0f\x49\x57\xb9\xde\xa9\x73\xd2\x11\xed\x74\xc4\x8e\xce\x8a\x89\xe4\xe6\xab\xeb\xca\xe7\xad\x84\x69\x3e\x32\x51\xb4\xb6\xad\x34\x38\xb3\x6f\xc1\xd3\x39\xba\xec\x1c\xf1\xa7\xa2\x00\xf6\x6b\x98\x2e\x48\x52\xbb\x3a\x9a\xcf\xd1\x30\xc1\x48\x80\x08\x30\x16\x3f\x21\x2d\xef\x47\x9d\x5b\xcd\xfa\x6b\x5a\xc4\xe8\x82\xe6\x67\xae\xec\xa8\xe7\x98\x54\xdb\xdd\x2a\xbe\x0f\xa4\x2b\x7c\x3c\x79\x4a\xc9\xa2\xd8\x57\x87\x36\x86\x06\xf9\xdc\x41\x07\x04\x22\x88\x90\x08\x10\x78\x1a\x86\xdb\x2a\xc1\x31\xa3\xde\x28\xcb\xb7\xfb\xa6\xf9\x23\xda\xe4\x3e\xc0\xae\x91\xb1\x93\x86\x63\xdb\x80\xce\xa8\x4c\x16\xd1\xa2\x43\xa5\xa1\x31\xf1\x20\x09\x4d\x81\xd4\xb1\x4b\xf9\x63\x74\x2b\x58\x13\x57\xc6\x5a\x1c\x5a\xcd\x25\x70\x0d\x04\x70\x80\xe9\x56\xb1\x36\xb8\xb0\x87\x2c\xdb\x69\x4b\xef\xf3\xd4\xd8\xc5\x3e\xc3\x2b\x62\xae\x2c\xdc\xf3\x67\xd8\x74\xe8\x02\x7c\x67\x73\xb9\xda\xa5\x11\x48\x48\x55\x94\xf7\x92\x1b\xf8\xf7\x73\x8a\xa1\x4d\x53\x66\x80\x84\x49\x3e\xac\xed\xf3\xe1\x40\x50\xb5\x9d\x30\x6b\x27\x23\x35\xdd\x8f\xbb\x6a\xb4\x54\xde\xd1\x98\x54\x92\xed\xc2\x55\xf7\xad\x29\x5e\x62\xa3\x34\x31\x44\xdf\x21\x01\xac\x6f\x0d\xd8\xb0\xd7\xcf\xfb\x53\xbe\x15\x33\x4d\x5a\x66\x48\x58\xfe\xed\xd8\xeb\x13\x4d\xb7\x54\xcf\x0d\x9d\x58\x5c\x97\xcc\x97\xd3\x75\xc9\xe4\xb9\x87\xa7\x84\xf1\x37\x46\x61\xba\x36\x5d\x62\x12\xa5\x37\xe3\x06\x9a\x9d\x6e\xe0\x87\x3a\xc3\xfd\xb0\xd2\x2a\x93\xd6\xf2\x70\x14\x0d\xa7\x14\x9f\xde\xeb\x0a\x40\xce\xbc\xa6\x92\x31\x3f\x0c\xcc\x33\x0c\x93\xd8\x72\x66\xaa\xe6\x3d\x3d\xc6\xa8\x0e\x79\x1e\x25\x23\x72\xdf\xc5\xea\x81\x13\xbc\x0d\xcf\xc0\x27\x7a\x96\xc1\xc6\xb6\x1b\xe6\xdb\x7c\x86\x34\xd5\x52\x7f\x8a\x89\x5f\xfe\x8f\x49\x11\x02\x94\x94\x7a\xf1\xf4\xaf\x69\xca\x92\x6b\x25\x35\x8f\x2c\x63\xb5\x4f\xe4\x82\xa7\xc9\xea\xf0\x71\x89\xf1\x02\xc3\x26\xe4\xcb\xa4\x5a\x4b\x1e\x8b\x4f\x2a\x28\x07\x9a\xc3\xea\xd8\x2c\xec\xc5\xd6\xa9\x02\x20\x41\x38\x39\x56\xca\xc9\x27\xd5\x30\x93\x69\x17\xe6\x71\x46\x39\xac\xef\xe0\x4f\xe1\xff\xcf\xaa\x0a\xef\xbf\x57\x5c\x08\xeb\xba\x5c\xfe\x53\x4d\xbe\x9f\x0c\x96\x4c\x3e\xe3\x39\xbc\x3f\x80\xcb\x44\xbd\xfe\x18\x7d\x1d\xd6\xd9\x7d\xa5\x49\x77\x15\x5f\xc7\x05\x09\xcf\x90\x91\x0e\x6c\x1c\x32\x2d\x95\xa0\x3e\xe9\x2f\xf9\x44\x11\x10\xc4\xdd\x34\x89\x79\x74\x13\x1b\xf7\x33\x14\x36\xf8\xa4\x52\xda\x3a\x34\xbb\xd0\xcc\xf2\x74\xd4\xeb\x71\x30\x8b\xa0\xef\xdf\x04\x1e\x0c\xf3\x6f\x54\xe1\x6c\x44\xfd\x7c\x3c\x53\x16\x3e\xd2\x1d\xaa\xd3\x0e\x16\x91\xda\xde\x28\x32\x79\x92\xb2\x72\x06\xb2\xc8\x07\x81\xb2\x1a\x9c\xb8\xa2\xfa\x75\x1c\x97\xc9\xd5\xe5\x1a\x6f\xc7\xda\x3b\x14\xbf\x8b\xc2\x18\x7d\x99\xc3\x60\xb9\x54\xe0\xb0\x12\x7e\xbe\xaa\xf2\xa2\x5f\xfe\x47\xff\x48\xa1\x0f\x1f\x50\x48\x22\x3a\x64\xd5\xea\xc7\x62\x33\xe9\x76\x09\xd2\x3e\x3f\xbf\x81\x6b\xdd\x38\xaf\xac\x78\x9e\x44\x9d\x47\x3c\xfe\xec\x0a\xe1\xd2\xf8\xce\x54\x31\x66\x8a\x8a\xb9\x3c\x0e\x10\x28\x26\x0f\xee\xe0\x22\x86\xbf\xc5\x82\x9b\xa8\xac\xfc\x06\x26\xc6\xf8\x04\xa1\x17\xfe\xee\x70\xe5\x05\xee\x5b\x68\x66\x36\xce\x43\x57\x0f\x42\x1d\xfb\x9a\x1a\x5c\xb9\xa6\xa8\x70\x45\x60\x80\x2b\x12\x0c\xb3\xd5\x8c\x9b\x81\x62\x0e\xbe\xa0\x80\x74\x17\x15\x62\xc1\xa4\x29\x0d\x0a\x36\xbc\x6c\x2e\x39\x1e\x91\xd0\xad\x61\xc7\x49\x6d\xcf\xa4\xbe\x80\xea\x5c\xd7\x82\x8f\x02\x6a\x62\xe9\xae\xcd\xf2\x70\xc5\x44\x4a\x0f\xed\xed\xc0\x77\xbe\xde\x1e\x3f\xe5\x59\x1f\x57\x28\x86\xca\x9d\x16\x66\x1d\x6c\xd3\x87\x44\xe1\x6b\xdf\x18\x85\x36\xed\x18\x94\xc4\x84\x91\xdd\xc3\xef\xaa\x91\xc8\xde\xbd\xcd\x6c\xd9\x0e\xf3\xb0\x2d\x15\x18\xec\x2a\x74\xf7\xbd\x03\xf7\xd5\xae\x8d\xba\x2c\x3e\x1e\x75\x18\x22\x09\x53\x73\x42\x15\xa1\x6e\x2b\x33\x78\x5e\x25\x5e\x76\x30\x8c\x92\x35\x9b\x4e\xfb\xdc\xe9\x8e\xea\x79\xa3\xd1\xce\xff\x3e\xf6\x4d\xf2\xc6\xc4\xaf\xfe\xb9\x11\x74\xa8\x10\xa8\x30\xa4\x9b\x4f\x2a\x7e\x6a\xee\x20\x49\x14\xb5\x4d\x2e\x7a\xfa\x0c\x04\xd6\x2b\xf8\x1d\xba\x70\xa9\xff\x55\xb9\xa8\x09\x45\xeb\xde\xb8\xb0\x08\x35\x9c\x3e\xcd\x05\x35\xb8\xd9\x19\xb1\x9e\x35\xf6\xf6\x76\xc2\x7a\xf0\x71\x6b\x8f\xa2\xc6\x36\xbd\xac\x1f\x02\x45\x8c\xc7\x77\x59\x91\x64\x5c\xae\x18\x8e\xbd\x7b\x9b\x26\x5e\x8e\x24\x02\x51\x6c\x17\x9e\xdf\x62\x97\x43\x4f\xe7\xcc\x2f\xc8\xed\x9f\xc0\x0f\x28\x7a\xe2\xef\x81\x89\xd7\x76\x61\xb7\x3a\x79\x11\x49\xa9\xcf\xff\x8d\x89\x22\x53\xdc\x08\x54\x12\xc0\x53\x26\xa8\x17\x71\x06\xc5\xf0\xd6\xb1\x0a\x13\xc9\x28\xb1\xbc\x9c\xe7\x27\x9b\xfe\x3b\xd4\xbc\x45\x78\xc3\x14\xa6\xb0\xb8\x8f\x4e\xfc\x34\x7e\x11\xf8\xa6\x79\x98\xd9\x19\x8f\x33\xfa\x63\xc4\x93\x48\x57\x4f\x8d\x15\x79\xdd\x39\xcd\xbd\x87\xea\x09\x62\xab\x5d\xad\x1a\xe6\x6f\x66\xf9\x62\x75\x1e\xf8\xab\xcb\x81\xa2\x39\x3f\x8b\xef\xc6\xa5\xff\x54\x2d\xdd\x5e\x92\xf6\x6c\x32\xca\x14\xf6\xe0\xb4\xc2\x1e\x9c\x1e\x7b\x93\x1a\x27\x32\x06\x89\x07\x78\x92\xd2\x12\x91\xfb\xa2\xef\xe7\xff\x28\x89\x25\xd4\x0c\x6f\x0f\x4d\x7b\xd9\xf4\xac\x92\x31\xc3\xcb\xe4\x63\x35\x7b\x69\xa2\x24\xee\x11\x59\x2c\xbc\x29\xa0\x18\x70\x57\xb7\x95\xaf\xff\x2d\xc5\x9e\xf3\x16\x4c\x37\x62\xf1\x77\xd5\x97\x2d\xa5\xd6\x30\x90\xdb\x15\x09\x1d\x74\xf2\xa4\x2b\x08\xf7\x4d\xe7\xb1\x86\xf0\x0c\x7c\xf1\xc9\x89\xd7\xcf\x7e\x30\xd6\x32\x93\x0c\xc0\xa1\x80\xee\x3f\x3d\xdf\x9a\xda\xff\xc2\x81\x8d\x4b\x54\x88\x13\x49\x4f\xf2\x13\xd8\x9a\xc7\x11\x78\xb9\xb9\x77\xaf\x08\x71\x51\xb7\x52\x9f\x42\xf5\x19\x36\xfd\x89\x89\xef\xac\x34\x26\xc5\xd2\x43\x4f\xee\x04\xa6\x96\x84\x72\x7e\x13\x25\x20\x81\x3e\x16\x16\xa6\x74\x53\x4e\xf5\x83\xaf\xab\x4a\xd2\xfb\x75\x4c\x86\xc3\x34\x59\x91\xf2\x08\x3e\x72\x04\x37\xca\x27\xca\xc9\x8e\x9e\x5f\x7e\x7e\xaa\xa2\x3b\x80\x8b\xbf\x8b\xe5\x27\x1c\xf9\x9b\xad\xf5\xbe\x85\x66\x27\x0d\x15\x25\x29\x9c\xe1\xbd\xb1\x77\x92\xf7\x82\x2a\x4f\x62\x66\x39\x77\x57\x6d\xf3\x39\xd7\x29\xaf\x72\x4c\xa6\x86\x76\x45\x79\xee\x4a\x73\x2b\x16\x1f\x47\xdf\xfe\x5e\x1d\x22\x37\xb6\xbd\x24\x0f\xc9\x6d\x01\x46\xe5\x70\x23\x6e\x3a\xf4\x98\xaa\x2c\x7e\xbb\x8e\x96\xbf\x67\x63\x9b\x1a\x47\x6f\x8d\x8d\x75\x4d\x93\xc8\x5d\x2b\x31\x1a\x27\xab\xb1\xc2\x53\x63\x9c\x0c\x1b\xeb\x3f\x90\x2d\xc2\x1a\xba\x4f\x61\x14\x0c\xeb\x19\x6a\x0b\xf3\x31\xd6\x96\xa8\x8c\xca\xa2\xce\xba\x98\x68\x95\xad\x4b\x5b\x04\x21\xcc\xdd\xa0\xbc\xaa\x6b\x60\xbd\x1d\xdb\x7e\x5e\x73\x5b\xfe\x07\xb5\x71\xa6\x5b\x8a\x31\x72\x7a\xa2\x41\x0e\x71\x96\x3f\xaa\xc5\xd8\x50\x94\x87\xdf\xf8\x31\xae\x13\xe5\xe6\x2b\x4a\x78\xe1\x03\xc5\x5b\x7f\x96\x6e\x4c\x00\x80\x30\xeb\xc2\xc3\x4e\xaf\x03\x6b\x12\x5c\xb8\xd2\x46\xa7\xa7\xfc\xee\xab\xc5\xd9\xe9\x80\xb6\x20\x52\x00\xee\x74\xc1\x48\x1c\x75\x15\xc5\x6e\x68\xa3\x8e\x7b\xbf\x5c\x16\x57\xaa\x63\x57\x55\xac\x76\xd4\xab\xf4\xb6\xbf\x48\xbd\x7b\xe7\xb2\x8a\xdf\x11\x8d\x3b\xf2\x32\x70\x1f\xf7\x08\x61\xc4\x03\xe6\x40\x96\xc8\x57\x15\x59\x99\xa3\x47\x2b\x9e\x2d\x7a\xb5\xbb\x68\x76\xca\x71\xaf\x7c\xf9\x45\x17\xb7\xa9\xae\xdb\x9e\x16\x9e\x2b\x2d\xe9\xff\xeb\xe7\xd1\xaa\xc3\xdf\xed\x6c\x15\x96\x02\xa1\xfa\xee\x89\x47\x5c\x5d\x54\xf3\x11\xbf\x40\x5d\x36\x21\xea\xf2\x3c\x61\x7b\xd0\xc7\x46\x29\x18\xe8\x53\xac\xb6\xed\xa8\xb5\xa0\x2a\xf8\x08\x8d\x2b\xc2\x24\xde\x1c\xab\x6c\xf5\x98\x1e\x5f\x9b\xd1\xac\x9b\xbf\x4c\x56\x14\x76\xfb\xe9\x09\xe9\x06\xcb\xf2\x56\x1a\x32\x7b\x5a\x8a\x9a\x45\x31\xba\xfc\x8d\x5a\xbe\xd9\x24\x8e\xc0\xff\x81\x18\xe7\xa3\xc0\x73\xe8\x7c\xe4\xe2\x81\x65\xcb\xa9\x99\x0c\x5d\xd0\x45\xf1\x49\x25\x86\x2c\x5c\x29\x01\x2f\x65\xb3\x72\x51\x9c\x96\x80\x14\xc8\xdd\xd0\xb4\x89\xdb\x9c\xe1\x4b\xe7\x45\x7d\xf9\xd1\x0a\x91\xc7\xc2\xc2\xfe\x66\x96\x5b\x1b\xad\x26\xe9\x72\x91\xba\xe0\x15\xa2\x9c\xcb\x00\x0c\x3e\x51\x30\x59\xb6\x1e\x21\x97\xee\xea\x10\xdd\x6a\x04\x24\x0d\x73\x13\xc6\xc4\x01\x20\x00\x5e\xdd\xaf\xa6\x7b\x72\x3a\x5c\xae\x51\x8e\x1a\x95\xcb\x30\x7c\xe1\x83\x0b\x66\x88\x3c\xfe\x90\xed\x04\x9f\xb9\xce\xbd\xe9\xb9\xdd\xc3\x54\xb1\x2d\xdf\xd9\xba\xad\x06\xb3\x3f\x53\xfd\xf8\x51\x1c\xc6\xd9\x28\x85\x6d\x56\x70\x4c\xd7\x62\x03\x86\x09\x71\xf7\xba\x7a\x1e\xed\x24\xce\xd3\x24\x8a\x6c\x87\xa9\x64\xb0\x21\x6e\x28\x96\xa2\x5d\x2d\x0f\x02\xbe\x86\x17\x8e\x72\xc4\xa9\xba\x3a\xed\x30\x32\x6b\x45\xe0\xe4\x06\xaf\x8f\x69\x1d\x91\x1b\x81\x1a\x0a\x3e\x53\x02\x27\x65\xd6\x3e\xee\x6b\x08\x6f\x8e\x3d\x01\xe1\xf5\xb1\x4a\x97\xd7\xb1\xc2\x85\xc3\x94\xac\x06\x2a\x90\x3f\x23\x5e\x35\xd1\x7d\x57\xb3\x6c\x63\x85\x0c\x3b\xa7\xda\x84\xdc\x0c\x54\xec\x33\x07\x3c\x09\xaf\x1f\x3c\xb8\x41\x8a\xcc\xfc\x57\xa5\x97\xc6\xf4\xbc\x32\x30\xb5\x39\x34\xdb\xbb\x57\xe0\xd1\x8d\x0a\x3c\xda\x89\x3a\xd7\xcd\xf2\x77\xc3\xd8\xc4\x6d\x21\x57\x15\x58\xbe\xaa\xf0\xdf\xa8\xa4\x5a\x87\x66\x9b\x51\x11\x8e\xf9\x27\xb8\xae\x68\xbb\x8a\x37\xfe\x0f\x5d\xdc\x99\x87\x6d\x6b\x96\x22\x2e\x4b\xbb\x0a\x97\x82\x42\xeb\xf7\x92\xa4\xf1\xa3\x64\x94\x5c\x57\x6f\x71\xd6\x15\x11\x8b\x9f\x73\xfa\x04\x8b\xfb\x3d\x93\x65\x61\x99\x65\xdc\x9b\x2a\x58\x0e\xfa\xe5\x81\xa0\xdf\x0b\x14\x36\xe0\xae\xe6\x00\x50\x73\x65\xe8\xe1\xc1\x97\xb1\x86\x8a\x94\x77\x1e\x2f\x51\xbb\xb3\xa0\x1a\x12\x90\x09\x2d\x77\x3e\xae\xb8\xe0\x43\xb3\xcd\xae\x5d\x7a\x7e\x8a\xbc\x8c\x54\xb7\x3c\x5d\x2c\xc3\x74\x61\xdb\x6f\xd6\x05\x75\x3d\x9b\x0e\x0c\x33\xba\xc1\x4f\xfe\x44\x8d\xae\xfe\x44\x95\xd9\xb3\x3e\x29\x43\x35\xdc\x60\xf0\xeb\xec\x77\xe1\x91\x7e\x1b\x9e\x0e\xfb\xe9\x6d\x57\x50\x1a\x98\xd8\x80\x78\x86\x73\x6f\xa7\x6a\xe1\xda\xc6\x67\xb0\x44\x85\xf9\xc7\x47\x3c\x43\x93\xe6\x6b\xdb\x7d\xad\x66\xa8\x48\x33\xfe\x27\xad\x88\xcd\x14\x6d\xac\xf5\x46\xc1\x31\xee\xff\x16\x8a\x30\x32\x3d\xaa\x38\x3d\xab\xe3\xa3\xfb\x48\x58\xd5\x2c\x6f\x9a\x51\xb9\xab\x30\xc8\x77\x15\x6e\xad\x6b\x56\x92\xd4\x76\xa6\x3d\xee\xee\x96\xa2\x27\x43\x7d\x90\x8f\x29\x20\xe3\xbf\x51\xa4\xec\x69\xd2\xb3\x29\x3f\x15\xe4\x24\x9f\xe8\x04\x97\xa7\xbb\x60\xe8\x6e\x96\xa8\x2b\x42\x13\x3d\x4e\xab\xcf\x69\x92\x3b\xb5\x5e\xc9\x44\xb8\x8c\x86\x07\x83\xbc\xfd\x1a\x5d\x87\x8c\x60\x2a\x1e\xff\xab\x81\xe2\xe7\xf8\xa6\x92\xa3\x3e\xac\xf1\x3c\x8d\x09\xf9\x70\xf8\xd1\xff\x73\xac\x84\x1d\x2e\xa9\xd9\x81\x9d\x88\x07\xf0\x5d\xef\x91\xe7\x2d\xd9\x5b\xb4\x6f\xae\x97\xda\x87\x49\xdc\x7b\xa2\x78\x8c\xc8\xf2\x1e\x07\x7b\x31\xaa\x39\x57\x02\x45\x4e\x7d\x8d\x56\x26\xba\x1f\x98\x2a\xc1\x43\x9d\x6e\x29\x2e\x8a\xbb\x81\x62\x31\x6c\x50\xc8\x23\xa4\x8f\x4a\xae\xf8\x34\x42\x31\x80\x27\x99\x94\x1f\x06\xe6\x2e\xb9\x3c\x4e\xbc\x03\x45\x69\x04\xe4\x34\x92\x2e\x48\xa7\xc0\xa9\x3c\x08\x28\xe9\x42\xa2\x73\xae\x06\xc6\xff\x52\x33\x07\x19\xc4\xb4\x22\x5f\x3e\x11\xf8\xeb\x87\xc4\x88\xb2\xa9\xe2\xee\xcf\xa8\xf5\xd6\x8e\x42\x1b\xe7\xd9\x76\x7a\xef\xac\xf3\x83\x71\x63\x27\xfa\x53\xdc\x84\x40\xc9\x3c\x3f\xc4\xbb\x81\x97\x4e\x7d\x97\xee\x01\x63\xd7\x28\xbd\xa2\x8c\xbb\x45\xc9\x1f\xa4\x76\x25\x5c\x31\xd1\x0c\x6d\x67\xec\xd0\x37\x79\xa7\xf3\x19\x56\x85\xe8\x8d\x79\xfc\xc6\x2d\x25\xd5\x70\x54\x55\x9f\x73\xb3\x94\x24\x53\x8a\xbc\xf7\x52\xe0\xb3\xa4\xef\xd2\xaa\x94\x51\xd4\x1a\xc7\x93\xda\x44\x7a\x4a\x2f\xb9\xb2\x2b\xbd\x70\x3e\xf1\x15\xf7\x3c\x32\x71\x1e\xb6\xa7\xe9\x11\xa2\xb2\xf3\x74\x4b\xbb\xb9\x73\x5e\x71\xe8\xe7\x9f\xa0\x36\x9f\xbc\xb6\x9f\x73\x57\xdb\xb1\xc9\xab\x6b\x69\xb8\x94\xc4\xa3\x76\x64\x21\x67\x2b\xc0\x77\x10\x27\xf1\xb1\x87\xab\x99\x30\x1a\xa5\x96\x86\x7b\x39\xbd\x18\x2b\xa2\xb3\xab\x63\x2f\x05\x79\x51\xc9\x97\x6f\x6f\xed\x56\x0c\x7c\x70\xad\x5f\x11\xb4\x69\xe0\xdb\x99\x17\x3d\x14\x12\xa4\x0d\xc5\xbd\x6b\xa4\x33\x17\xa7\x02\x0f\xeb\x3c\xea\x80\xf3\xed\x24\xee\xd9\x38\x14\xed\x71\x1d\xe2\x49\x58\xe7\xc6\xd4\x86\x18\x2b\xd2\x92\xc9\x77\xcb\x53\x13\xbe\xd4\x70\x46\xab\x0f\xdc\x75\xaf\xa0\x63\x4d\x91\xb9\x33\xa5\x1d\x7e\x81\xa7\x72\x5d\xd3\xcd\x4b\xd9\xd4\x95\x80\x4c\xdc\x03\xca\xcb\x61\xe5\x8f\x68\xe5\xac\x23\x75\x76\x7b\x98\xad\xb5\xfb\x61\x3b\xd3\xea\xb6\x17\x82\x52\xab\x5a\xcb\xe0\xae\x26\x8f\xa9\x94\xfd\xce\x58\x61\x6e\x3e\xd4\x10\xf1\x75\x05\x5a\xbd\xa3\x9c\xfa\x39\x9a\xf4\x10\x69\x1f\x0f\x41\xbb\x39\xf6\x5a\x72\xe7\x91\xfe\x88\x4a\x25\x99\x4e\xa6\x86\xa0\xfd\x88\x50\x63\x66\xa2\x04\x47\xdf\x25\x33\xce\xf1\xd8\x58\xcb\x62\x5f\xf4\x4d\xf8\x24\x19\xf0\x6d\x62\x71\xbd\x49\xd7\xc8\xc7\x9e\xd7\x27\x1a\x0d\xbc\x50\x24\xf7\xb2\x54\x6a\xf0\x81\xae\xa8\x67\xa4\xb1\x9a\x30\x22\x52\x08\xb0\xe8\x99\xf3\x89\x6a\xaa\x76\x6c\x3b\xec\x30\xc4\x10\xd9\xf3\x85\x80\x4c\x29\xcc\xc1\x89\xb1\x86\xbd\xec\x76\x41\x40\x9e\xdb\x74\xbb\xc7\x83\x9e\x1f\xab\x30\xf2\x9c\xa6\x39\xfc\xa3\xb1\xff\x66\x50\x0d\xc3\x42\xed\x42\x13\xd3\x0d\x4c\x16\x0f\x57\xba\x83\x35\x54\xa8\xa6\xe3\x38\xa1\x00\x6b\x81\x72\x02\xf2\xcc\x73\xb8\x39\x41\x79\x28\x7a\x93\x6c\x0d\xaa\x2f\xf0\x9e\x9f\xe8\x59\x04\xa4\x20\x78\x9f\x10\xc5\x46\xc0\xb2\xa3\x82\x0f\x26\xaa\xb0\xb0\xd7\xcf\x25\x91\xc3\x6a\x3f\xab\x19\xbf\xcf\xaa\x30\x27\xb2\xf6\x35\xc3\x7f\xaa\x22\x95\xfd\x2e\x52\xa9\xfe\xc0\x1c\x68\xe0\xd2\x29\x7a\x0e\x48\xb8\x4f\x20\x20\x45\x78\x74\x3b\x50\x9a\x81\xeb\xe3\xcf\x2b\xf2\x4a\xeb\xf4\x18\x1b\x9e\x98\xe5\x3f\xde\xc2\xbd\x0a\x56\xcb\xb1\x29\x3d\x3f\x78\x9e\xca\xd2\x40\x02\xf2\x10\x15\xcb\x61\x2b\x4c\x16\x08\xee\x10\xa4\x62\xbc\x12\x99\xcc\x51\xf5\x74\xe3\x30\xdb\xa6\x9c\xdb\x6d\x25\xc6\xbc\x15\x6f\x57\x71\x3c\x2e\xb8\x13\x5d\xea\xa4\x5f\xc7\xcc\xc1\x87\x81\x07\xf4\xe6\x61\x6c\x22\x5a\x92\x9a\xa5\x15\x4d\x60\x3d\x4f\xf4\x13\x55\xb4\xee\x98\x74\x59\x37\x9c\x4e\x05\xbe\xff\x72\x4a\x71\x43\xf5\xd2\x64\x35\xef\x53\x3e\x07\xbb\xff\x07\x08\x49\x70\xe1\xf7\x54\x5f\xe4\xa7\x81\x9a\xa1\x38\xa6\x2a\x03\x97\x10\xab\x02\x85\x75\x29\x28\x11\xa8\x51\x7a\x81\x60\xe5\x53\x5d\x2a\x7f\x4b\x0d\x9e\x5c\x57\x5c\x84\x47\x02\xad\xed\x80\x57\x8e\x75\xf2\x03\x18\x19\x04\x58\x5b\x26\x7e\x6a\xec\xdd\x22\x49\x16\x66\x80\x30\x4e\x52\xd2\x73\xa3\xfc\x0a\x05\x4e\xd6\x40\xe6\x93\x89\x27\x85\xce\x53\x6b\xb7\x35\xbe\xfc\xa2\x07\xe1\x39\x4c\x28\xac\x18\x57\x4b\xa9\xa5\x25\x88\x35\xc5\x1b\xad\xb4\x71\xce\xab\x47\x1a\xc6\xb9\x8d\x3b\x68\xd9\x20\x50\xdc\x42\x38\x4a\x3e\x6e\x55\xe5\xdd\x5d\xfb\x93\xae\x1a\x2d\x12\x10\xdd\xf0\x71\x65\x13\xee\xdd\x5b\xa4\x0f\x6d\x2b\xb4\xfe\xc2\x1a\x5c\x12\x50\x7f\x18\x46\x63\x90\xa4\xe4\x69\xfd\xd4\xf9\xbb\x6a\x5c\xfb\xa7\x9a\xec\xe0\x4f\xb5\x76\x47\x9a\xac\xd8\x6c\xc6\x8b\xe9\x60\x2a\xc7\x8d\x15\xf9\xf8\xec\x38\xe6\x86\x60\xf7\xf5\xe0\xf0\x71\x35\x76\xe9\xf9\x29\xe6\x0e\xba\x24\xab\xf8\x72\x3e\x0e\x76\x4a\x65\xff\x57\x0f\xcc\x78\x02\x37\xc0\x8b\xf1\x5c\xfe\x93\xaa\x11\xfc\x60\xac\xba\x1f\xd7\x61\x80\x45\x51\x71\x33\x00\x73\x71\xb6\xb9\x26\xa3\x30\xae\xc3\xe5\xcc\x1f\x38\xc9\xb1\x3f\xef\x29\xa0\xce\x63\xad\x9a\x11\xaf\xbe\x4d\xdd\x4c\x8b\x8c\x96\xaa\x31\x53\xd5\xe3\xee\xd8\x61\x64\x0b\x47\x34\xed\x13\x38\xb6\x05\x7c\xa2\x74\x6e\x4f\x50\x2c\x22\x4e\x47\xdc\x63\x2f\x35\x71\x3e\xd3\x70\x5a\xc3\x18\x58\x42\x0d\x69\x0b\x56\xb9\x48\x46\x20\xa2\xd5\xfa\x7a\xb0\x2b\x5b\x5a\x75\xea\xbc\x76\xb4\x64\x62\x34\x62\x5d\xaf\xdf\x17\xca\x7f\xa3\x86\x55\x18\xe8\xc0\xd8\x9a\xbc\xdf\x50\xdb\x86\x5e\xa0\x6c\x21\x49\x92\x85\x8f\xdb\x71\xfc\xe0\x0f\x78\xe4\xdd\x99\xf7\xe2\x07\x91\x65\x5d\x54\x8d\xba\xe5\x34\x24\x65\xc7\xd2\xf4\xf8\x07\x7a\x7a\xfc\x03\x17\x3e\xe4\x40\xc8\x3a\x8a\x8a\xf3\x78\xbc\xd2\x66\x6c\x38\x7e\x8e\x3b\x95\x30\xeb\xd0\x6c\xd3\x74\xec\x37\x46\x26\x47\xbf\x00\x81\xe6\x49\x55\xc5\xe3\xcc\x4b\x82\xd6\xba\xde\xf4\x60\x08\x09\x21\x14\x05\xb1\x82\x7e\x46\xeb\x15\x11\x0c\xd0\x81\x48\xe4\x66\x26\x8a\x50\x92\x28\x9a\x3c\x63\xc8\x31\x18\x3e\x47\x58\xe0\xe4\x83\x6f\x05\x3e\xa6\x4e\x93\x2c\xdb\xa6\x94\x5a\x18\xb9\x81\x84\x1a\xc5\x6d\xfe\x0f\x0e\xb6\xf8\x7f\x10\x1d\xb8\x51\x38\x07\xcc\xab\xd2\x4d\x7f\xa9\x69\x5f\x6d\x5b\xdb\xe1\x70\x15\x9b\xfe\x30\x3e\xcf\x27\x75\x0a\xf8\x43\xaa\xb9\x08\xf0\x43\x40\x44\x0a\x50\xe4\xe6\xf4\x6d\x9c\x8c\x7a\xfd\x47\x7c\x3b\xf4\xc6\x58\xb5\x8a\x78\x86\xda\x91\xa8\x1c\x9a\x75\x0e\xdf\x05\xa5\xf7\xbe\xa0\xc7\x56\x30\x1d\x4d\xbf\xf2\x7f\xfc\x4d\x82\xcb\x93\x79\xdb\xf3\x05\x78\x56\x31\xdb\xba\xd6\xd0\xcf\x51\x4b\x87\x15\x83\x3c\x18\x1f\x8f\x9f\xd2\x78\xaf\x76\x9e\x26\x71\xd8\xce\xb6\x93\x69\xe3\xf1\x51\x25\x5c\x71\x41\xc1\xb6\xc7\x78\x15\x3c\xf1\x1d\xe8\x7a\xf7\x3a\x55\xdf\x70\x7c\x44\x8d\x0a\x7d\xbb\x32\x51\x22\xd6\x3a\xb3\x29\xe7\x37\x42\x41\xb9\xa1\x56\xf2\x86\xd6\x44\x1f\xa5\xed\xbe\xc9\x6c\x67\x9a\x8a\xad\xb0\x11\x60\x3e\x70\x6d\x21\x5f\x60\xbd\x8d\xed\x27\x19\xdd\x9e\x32\x64\xc5\x9a\x8c\x02\x5a\xb9\x6a\xfa\x20\xab\x2e\x6a\x8a\x38\xe8\x7a\x21\xec\x9d\x6a\x29\xc5\xa2\x63\x5a\x92\x8e\x0b\xb8\x30\x41\xb7\x54\xd0\xf4\x4f\xfe\xc9\x2f\x37\x1a\x4a\xef\xb6\x58\x8e\x62\xb5\x77\xab\xc1\x48\x20\x3b\xe7\x04\xf9\xa6\x15\x4c\xcf\x2a\xd0\x65\xc7\x84\xcb\x61\x3c\xad\xe0\x7d\x67\x75\x22\x77\x5b\x59\xf6\xb3\xca\xc3\xdf\x0e\x7c\xd5\x55\xd9\x35\xba\x67\x17\x0f\x28\x5f\xef\x21\x47\x9d\x30\xcb\x44\x97\x1d\xab\x1b\x71\x1f\x1f\xab\x72\xd8\x6a\x3f\xcc\xed\x23\x74\xdd\x88\xad\x8e\x63\x93\x3b\xce\xc3\xe2\xc7\x10\x82\x7d\x48\x8f\x01\x65\x29\xa6\xc9\x43\xbd\xf2\x7f\xd7\x66\x4f\x66\xb4\x50\x18\x83\xee\x1b\x32\xd2\xff\xa8\x3a\x77\x3f\xf3\xfc\x89\xe4\xa9\x66\xb4\x73\x52\xd1\xc2\x23\x08\x51\xb5\x9e\xbd\x13\x0a\x2c\xae\x59\x52\x86\xba\x2a\x78\x59\x62\x0c\x71\x16\x90\x93\x7c\xac\x3a\x35\xd9\x30\xc9\x73\xdb\x21\x1f\x88\x54\x7b\x5d\xf3\x4f\xf0\x28\x3d\xff\xcf\x58\x4d\x1c\xab\xc8\xc1\x0c\x87\x69\x62\xda\xfd\x1d\x74\xc9\xa8\xfe\xde\x0d\x7c\x91\xe9\x23\x2c\x73\x44\x94\x3c\x71\x2d\xfd\x4d\xf8\x45\xe1\x94\x22\x3b\x2d\xad\xcc\x62\xeb\xcb\x90\x80\xcf\xcc\x0e\x2b\x8e\x98\x4e\xb2\x0a\x4f\x8f\x67\x0e\x1d\x3b\x3e\x0e\xfc\xa2\x48\x6d\x37\x49\x07\xd9\x8c\xea\xd4\x1e\x51\x5c\xe4\x98\xdb\x40\x1c\xcc\xbc\x9b\xb0\xc0\x97\x51\xb5\x13\x64\xc7\xe6\x62\x38\x11\x9d\x0f\xd6\xe0\x28\x60\xa3\x50\x73\xc7\xdd\x30\xfa\x52\xac\x91\x57\xcf\xb3\xa4\xa2\x85\x5c\x19\x5d\x49\xa0\x4e\xf8\x58\x75\x1c\x86\x69\x38\x08\x1d\xd9\xbe\x88\x87\xde\x52\x93\x8e\xb7\xd4\xd3\xc8\x43\xaa\x7a\xbd\xb4\x71\x58\x31\xba\x9d\x53\x12\x7e\xef\xd5\xa9\x45\xe7\xd6\x7a\xf4\x15\x7b\x59\xfa\x8c\x78\xdc\x5d\x0e\xa7\x2d\x20\x2f\x7c\xf3\x63\x7a\x27\x70\x93\x55\x78\x14\x64\x8d\xbf\x62\xc2\xc8\x76\xb6\x79\xa9\x41\x38\x7d\x84\x31\x37\xb5\xbc\x31\x93\x7b\x22\xe4\xdd\x4e\x6d\x61\x0c\xc4\x1e\x56\x3c\x6e\x67\x4b\xfd\x95\x61\xc2\x20\x1a\xb7\x3a\xd5\x1a\xae\xe1\xb1\x1b\xa6\x49\xd7\x42\x10\x2e\xa2\xf5\x0e\xef\x05\x64\x98\x8b\xff\x8a\xdb\xc0\x0c\x0f\xdb\x55\x79\x2d\x4f\xe8\x46\x41\xb8\x64\x38\xd2\x97\x01\x30\x3f\x70\xf7\x57\x6a\x7e\xaf\x63\x57\xc2\xb6\xcd\xa6\x15\xd4\xf6\xa2\xf6\xa9\x97\x14\xc6\xe9\x92\x6e\xd2\x54\xfb\x5b\x2f\xbf\xdc\xcc\xfa\x49\x7b\x79\x98\x26\x49\xb7\xe1\xeb\x1e\xa0\x76\xe2\xe3\x8a\xd7\xda\xbf\xb8\x5f\x0d\x8e\x50\xdc\xce\xbd\x4c\x94\x55\x9d\x9e\x95\x8f\x55\x58\x8e\x46\x54\x37\x1a\x5f\x9b\x73\x4f\xe7\x73\x8a\x08\x74\x6d\xc9\x46\x11\xf1\xac\xbb\x5e\x29\x72\x24\x3e\x9e\x28\xbc\x71\x9e\x26\x51\xb6\x9d\x7e\x10\x8b\xe7\xf2\xd8\x47\xcd\xdc\x66\x04\x81\xea\x9e\x96\xa2\x12\xde\xdd\xf2\x38\x5e\xc8\x6a\xd0\xca\x39\xfd\x04\x6a\xeb\x42\x97\xec\x56\x68\x6a\x7a\x33\x6a\xfa\x64\x5a\x53\x9a\x9e\xc6\x63\x17\x0d\x74\x0f\x00\xf9\x7f\x94\x04\xd7\xe9\xba\x8e\x57\x64\x63\x06\xfb\xb0\x9c\x5f\xe0\xa3\xaf\xe3\x95\x02\x3c\xc1\x9e\xcc\x28\x1f\x0d\x30\x84\xc9\x11\x34\x79\x37\x89\xa6\x75\xc0\x93\xa4\x4b\x94\x71\x89\xae\x20\x99\x1c\x3e\xa9\xe8\xe2\x1c\x9a\xfd\x4a\xb3\x6b\x32\x48\xda\x21\x85\xbb\xa1\x50\xc4\x37\xc6\x8f\xba\x17\x14\xa6\xd9\x23\x30\xae\x70\xcb\x3c\x32\x22\x65\xff\xe2\x27\xf9\x3f\x02\xd5\x56\xfd\x88\xc2\x21\x78\x9d\x77\x90\xe1\x63\x51\x9c\xd1\x4d\x83\xc0\x13\x0b\x7c\x1a\xa8\xd2\xda\x47\xa5\x3e\x4b\x9a\xad\xd1\xce\x67\x09\x4d\x18\x77\x11\x18\x2c\xbe\x4d\x58\x46\x1a\x5e\x5a\x4f\x15\x95\xbf\x4f\x1b\x9f\x8f\xeb\x26\xe8\x4c\xdb\x74\xec\x20\x6c\x13\xd6\x90\xe9\x72\x02\x3f\xad\xcb\x55\x2d\xb4\xcf\x4f\xd6\x0d\x54\xd9\x34\xcc\xfb\x24\x89\x30\xe5\xf3\x56\xcc\xb6\x30\x58\x5f\xa3\x34\x36\x34\x83\xb7\x89\xb3\x51\x08\x03\xc0\xe3\xeb\x6a\xf2\xf5\x9a\xae\x15\xf5\x49\x05\xda\x51\x94\x9f\x56\x15\xf9\xd3\x4a\x9f\xa7\x6d\x72\x13\xad\x15\x6f\x76\xee\x20\x5b\xbe\xf3\x58\x0b\x7c\x52\x8a\x2b\x97\xa2\xb0\x2d\x54\x92\xbe\x28\x32\xeb\xe0\x64\xbe\x8d\xda\x37\xa4\xf0\xdf\xf8\x95\x5f\x73\xe3\x1f\x9e\x3c\xf2\xbc\x52\xd1\x89\x4c\x7b\x39\x1a\x11\xcb\x83\xf2\x4c\x67\x4b\xd2\xb0\x4f\xa8\x62\x41\x6c\x22\x16\xd5\x74\x74\x33\xfb\x24\xc0\x38\x5f\xdb\xed\x4c\x06\x45\x1c\x2b\xb4\x63\xd2\xfc\xf6\xe3\xad\x2f\x9d\x0f\x9e\x2a\xf1\x07\x0e\x96\xc2\xd8\x14\x7b\xaf\xf8\x13\x74\x20\x30\xcd\xcf\xc7\x95\xbd\xb7\x38\xbb\x58\xa2\xe4\x75\x98\x4e\x8f\xef\x54\x7d\xa2\x25\x6b\xda\x7d\x82\x4a\x3b\xc6\x60\xd7\xb0\x3c\xab\x85\xb3\xc1\xa2\x85\x0a\xe3\x4f\x2b\x00\x82\xbd\x73\xcd\x81\x1d\x24\x53\x8a\x1e\xfe\x78\xb5\xdd\x8c\xc6\xc0\x9f\x2b\x00\xc9\xaa\xc9\x6d\xda\x4f\x46\x99\xc5\x03\x87\x31\x84\xfe\x38\x1f\x2b\x9c\x4a\x96\xaf\x45\x61\xc6\xf2\xa4\xfb\x1d\xf6\x57\xd1\x7d\xfc\x85\x92\xd0\xbc\xa4\xd4\x96\x88\x94\x97\xa8\xf4\x51\xbe\xb8\xaf\x61\xfc\x9a\x38\xee\x3e\xaa\x44\xa2\x1c\x5e\x2c\x19\x47\x96\xbe\x38\xeb\x1b\x2a\x8e\x83\xfe\x7c\xa0\x9b\x3c\x6a\x75\x0c\x6d\x5a\x44\x5c\xb4\x3a\x74\x95\x88\x8f\xd5\xf2\x4c\x6d\xdb\xc6\xf9\xe3\x9e\x76\xf0\x08\x27\xc7\x6e\x26\x72\x71\x76\xe3\x7c\xa0\x66\xaa\x1e\x04\xea\x92\x1f\xe0\x35\xc1\x5f\x73\x5f\x59\x8f\xd2\xa2\x98\x74\x5d\x39\x98\x73\xdb\x5b\x1e\x52\x70\x0c\x77\xcc\x62\xd2\x74\x67\xb0\x49\x0c\x60\x87\x81\xfc\x54\x93\xe8\xbd\x4e\x96\x13\x25\xd0\x53\x2a\x8e\x6e\xa7\xa3\xac\x5f\x64\x7a\x9e\x31\xe9\x5c\xa0\x1c\xfd\x2d\xf5\x5e\x99\x5b\x4c\x14\xed\xaa\xd4\x05\x2f\x35\x47\x71\x6a\x4d\x14\xbe\x26\xf8\x2f\x40\xe9\x11\xf9\xf1\x71\x25\xd5\x5f\x58\x28\x16\xff\x60\x14\x87\x19\x58\x6a\x25\xcc\xf2\x91\x3f\x8f\xe0\x49\x5b\x43\x25\x6a\x34\xa9\x01\xe7\xe9\x8a\xbd\x5e\x90\xfc\x27\x63\xa5\x1e\x88\x5b\x11\xa5\xf8\x86\x1b\x88\x7f\x37\xf0\x63\x16\xbc\x02\x4c\xdc\xb6\xdb\x4a\x6a\x41\x9e\xc4\x8f\x25\x2a\x44\x35\xc5\xc3\xd7\x4e\x22\x11\xe3\x13\x3c\x44\xfe\x48\xdd\xb0\xc5\x20\xe9\x84\xdd\x50\xa0\xfb\x32\xef\x45\x17\x2f\x93\x60\x9b\xb7\x6c\x11\x14\xf5\x92\x98\xcc\xb2\x6a\xdf\xed\x77\xed\xbb\x9a\x38\xb9\xbd\x16\x87\x6d\x4e\xa9\x58\x8a\x57\xe5\xa0\xef\xab\xc2\xa2\x8d\x7b\x61\x6c\x6d\x9a\x6d\xf7\xce\x68\xac\xa9\x79\xff\x5b\xa0\x24\xde\xd8\xd2\xf0\xff\x28\x22\xb7\x2b\xe4\x65\x11\x85\x01\xce\x2d\xbc\x17\xde\xc9\x9b\x1e\x3f\x5e\xae\xaf\x29\xc1\xa1\x3b\xaa\x11\x71\x5e\x73\x2f\x9d\x52\x3c\x39\xe0\x8c\xe5\x0f\x8c\x9f\x2c\x03\xb8\x9f\x7d\xb6\xf9\xfc\x76\x1f\xdc\xfd\x00\xbb\x48\x46\xa1\x1a\xae\xa0\xfc\xad\x40\xc9\xae\x5d\xd4\x65\xdf\x6f\xe1\xae\xe1\xc1\x8e\xe3\xae\xb1\x8d\x6e\xaa\xd6\xc8\x9a\x89\x2c\x17\x22\x81\x1b\x3b\xaa\xc6\x66\x59\x27\x87\xfb\x41\x18\xdd\xe7\x16\x76\xdc\xa3\x98\x96\xb8\x74\xdc\x3c\xce\x87\x8a\xe2\xfc\x43\x37\x9c\x5d\x24\xfb\x79\xc4\x92\x1b\xa2\x84\x4f\x38\x0a\xc6\x4e\x2b\x09\x17\x64\x3f\xd8\x64\xc7\x09\x1c\x2b\x03\x18\x2a\xa3\x34\x24\x65\x8e\xa1\x35\x98\x2a\xd0\xee\x8b\xc0\x16\x15\x7c\xf8\x3f\x5a\x3e\x40\x3b\xed\xae\xc8\x44\xa9\x35\x1d\x4c\x5a\x43\xa6\xff\x0b\x64\x98\xe4\xb7\x08\x0e\xa1\x07\x47\x11\xe0\x5c\x1e\x7b\xa9\xec\x0b\x9a\xe4\x77\xdb\xa4\xa4\x2f\x62\x6d\xbe\x9b\x7a\x3d\x4c\x86\x8d\xe5\xcd\xb5\x0d\xc4\x75\xf8\xdc\xd6\x96\x4f\xaf\x6e\x04\x5a\xc6\x43\x17\x80\xdf\x0e\x3c\xa1\x0e\xb8\x79\x90\xef\x5e\xc3\x90\x25\x42\xc4\x77\xc7\x6a\xab\xa2\x74\xc4\x22\xce\x8a\xdc\x83\x8b\x88\xc8\x8a\x4f\x56\x20\x62\x8b\xb3\xcd\xac\x9d\xa4\x62\xf6\x58\x70\x34\xf0\xde\xeb\x4c\x65\xd2\xb5\xc8\x8b\xf2\xd4\x9a\x81\x1e\x74\x67\x06\x00\xfa\xa0\xb0\x01\x54\xa5\x48\x8a\xe0\xc8\x09\xac\x8b\xda\x80\x2a\xa7\xde\x29\x49\x6e\x56\xac\xc2\xbe\x85\x66\xbb\x6f\xe2\x9e\x7c\x03\xc2\x24\x04\xe4\x4e\x0e\xbe\xf8\x36\x21\x83\xaf\x61\x05\x1f\x26\x69\x4e\xfc\x02\xf4\xe8\xb1\x8d\x3f\xa6\xd5\xc8\xc7\xc1\xa3\x8a\x58\x3d\x55\xb5\x70\x28\x61\xa9\xd1\x6a\x01\xcb\x1e\x53\x62\x4d\x66\x60\xd3\xb0\x6d\x76\xd1\xbb\xd4\x32\x23\x0a\xa4\x3e\xc7\x91\xca\x77\x34\xc7\xc3\x27\xf4\x96\x15\xfb\xa6\x94\x38\x7e\x48\xa6\x08\x9f\xb8\xca\xce\x5a\xa8\xaf\x1b\x9b\x69\x25\xf8\xbb\xf0\x18\x11\x34\x5c\x53\x18\xbf\xb6\xc9\xf2\x94\xa1\x3a\x1a\x1c\x2e\x13\xa5\xbe\x66\x7e\xa9\x04\x48\x33\x79\xb6\x4b\xcd\x85\x9c\x80\x09\xa5\x4f\x3d\xf7\x34\xd5\x0e\xb0\x58\xae\xd3\xb2\x45\x45\xf5\x86\xee\xae\x3f\x50\x63\x3a\x04\x00\x93\xa1\xdb\x73\x7a\x0e\x76\xa6\xe5\xeb\x5d\x6c\xd7\xa4\x54\x58\x5c\x99\xd4\xa9\x3e\x57\x26\x36\x6a\xa7\xe1\x90\xf3\x45\xc1\x90\x34\x9c\xc8\xda\x91\xca\x2a\x9c\x3b\x58\x7c\xac\xc7\xb2\x6c\x28\x49\x20\x44\xe3\xe3\xca\xb2\xfb\xda\x9c\x4c\x5d\x37\x7c\xce\x71\x41\x71\x7a\xe8\xc1\xa5\xae\x49\x7b\x09\x87\xdc\x08\x9b\xb9\xc4\xc5\x27\x93\x1a\x35\xb4\x68\x29\xd1\x68\x72\x9d\x04\x1d\x2d\x65\x78\x2b\xd9\x32\xe5\x2b\xac\x39\x15\xf8\x0c\xe0\x4a\x6d\x61\x32\xb5\xed\x51\xea\x8b\x5f\x52\x98\x6e\x2c\xf8\xba\xb4\x27\xeb\xcc\x93\x81\xc9\x13\x0b\xb6\xed\xba\xe4\xc9\x47\xf2\xfd\x70\x29\x49\x89\x1a\xca\x4d\xd6\x3a\xb2\xd2\xf3\x2a\xda\x5c\xb2\x6d\x33\xb0\x3b\x28\x96\x41\xd4\xfa\x11\x2d\x73\xe1\xaf\x2e\x3e\x05\xff\xf4\x19\x4c\xa1\x34\xc4\xe9\x72\x65\x43\x16\xd7\x03\x4b\x7a\x55\xa1\x8b\xae\x60\x42\x1e\xa9\xc4\x75\xcd\xe5\x4f\x38\xa7\xed\x78\x05\x8c\xdc\x51\xa2\xd6\x97\x02\xbf\x78\x7f\x07\x13\x9a\xae\x17\xe4\xfc\x7f\x43\x93\x2c\xf5\xf1\x42\x04\x04\x54\x27\x90\x3f\x1a\x0c\x90\x1c\x3a\x4a\xf1\x2f\xbf\xe8\x28\xc5\x6b\x86\x4d\xd7\x4c\x0a\xfe\x36\x04\xa8\x00\x27\xe0\x1e\x3f\xc1\xaf\x89\xd4\x99\xd4\x5a\xe2\x30\xb6\xdb\x7c\x2f\xf6\x38\xfe\x0a\xcf\xeb\x18\x6d\x0f\xc4\xbd\xff\x5a\xd5\x64\x6f\x93\x4f\x40\x84\xbd\xbb\xd5\xf8\xfa\x57\x39\x39\x3f\xeb\xbc\x62\x18\x53\xaf\xa3\xe1\xa1\x6d\xef\x04\xbe\x5d\xf2\x4e\xc5\xf6\x83\x58\x38\x19\x0c\x6c\xba\x09\xf5\x8d\x14\x4c\x78\x1b\xfd\xec\x66\xd4\x7d\xa2\xb8\x6a\x71\xf5\xf4\x62\xf1\xed\xe8\xe2\x30\xcc\x10\x20\x23\xea\xe4\xfe\x77\x9f\x6f\x79\x3b\xc4\x64\x48\x78\x94\x3c\xd8\x8f\x32\x14\xb3\x06\x20\xe4\x7c\x00\xbb\xea\xe0\x6f\x7b\xe7\x3c\xbe\x64\xee\x20\xc7\xcb\x4f\x83\x3f\x49\xba\x60\x28\xd6\x20\x83\xff\x4c\x11\xc8\x30\x5c\x02\xd6\x73\xfb\x84\x02\x03\xc9\x8e\x76\xbb\x46\x2b\x69\x8e\xfb\x9e\x39\x8f\x6d\x62\x2d\x4f\x2b\x5e\xd3\x7b\x0a\x8a\xd5\x4e\xe2\xae\xcd\x32\xe6\x38\x03\xbc\xf1\x8e\x26\xcc\xbe\xe3\x5a\xc6\x26\x6d\xf7\xc3\xdc\xb6\xf3\x6c\x46\x8b\xd1\x9d\x08\x94\x7a\x1b\x3a\x2d\xc2\xe9\xa2\x86\xb1\x98\xdd\x4c\x94\xdc\xea\x64\x26\x97\x42\x51\xf8\x42\x6c\x73\x47\xb5\x4c\xee\x8c\x77\x79\x7f\xf6\x3c\xdb\x32\xd9\xbe\xf4\x33\x7c\x52\x97\x11\xd9\x51\x9a\x2c\x25\x71\x47\xfa\xd5\xc8\x32\xcf\x68\x3c\xf2\x19\xd5\xd9\x8a\xc2\x6e\x3e\xad\x3a\x5b\xbc\x3b\x85\xda\x5b\xb5\xb9\x2e\x91\xe5\x10\xfe\x6f\x6f\x70\xbf\x31\x32\xcb\x76\xca\x57\x08\xaf\xe0\x12\xd1\x35\x7d\x5b\x91\xdd\xdf\x54\xa5\xfb\x64\x94\x3d\x8e\xeb\x43\x01\xe1\x0a\x3c\x1a\x56\xd6\x15\x04\x83\x78\x7c\x4c\x8b\x84\x4d\xf4\xc8\xc4\x43\xf8\xee\x62\xc9\x95\xe8\x82\x11\xb8\xdf\x56\xed\x80\x2f\x2a\x1d\xf7\x75\xfd\x5a\x98\x86\x16\x55\x12\x84\xac\xf4\xe1\x9b\xbf\x0c\xb2\x27\xfc\xe0\x86\xa2\xbb\xfe\xef\x11\x99\x33\xd9\x53\xf0\xa4\x22\xd4\x4f\xd3\x24\x0d\xb3\x01\xf8\xbf\x1c\x47\xd9\x8b\xe2\xe4\x35\x25\xb3\x08\xae\x4d\x7b\xa4\xc9\xc9\xb1\x47\xa0\xe8\x7a\x4f\x79\xd0\xba\x96\x88\xd2\x74\xc2\x08\x44\xf1\x32\xa1\x5a\x5c\x2f\x1f\x57\x60\x27\x60\x15\x54\x55\x8a\x4f\xc8\xe4\x8a\x80\xbc\x6f\x37\x77\x42\xd3\x4b\xcd\x60\x20\xb4\x9d\x4e\x24\xcb\x93\xee\x9e\xd7\xd8\x69\x93\xdb\x94\xd9\x52\x51\x8d\x60\xd5\x45\x3e\xa9\x44\xbd\xcf\xd1\x08\x8a\xf3\x8b\xc8\x49\xee\x2b\x06\xdb\xfb\x95\x6b\xdf\xbb\xb7\x99\xfd\xdd\xa8\xa4\x65\x7f\x4e\xeb\xaf\x95\xc5\x27\x23\x83\xcd\x25\x6d\x5d\xba\x1a\xe9\xeb\x3e\xa1\x54\xf9\xf3\x51\x6a\xa2\xed\x2a\xaf\xf8\x34\xd0\x3f\x01\x06\x28\x47\xdf\x37\x3f\xcf\xff\x8e\x41\x7c\x2c\x37\x28\x5b\xba\x62\xea\x3e\x29\xac\xd6\x69\x61\x33\xf9\x4f\xec\xe6\xdc\x84\x6e\xa9\xf8\x6a\x3e\xae\x21\x37\x3d\xd0\xcc\x6d\x96\x87\x83\x24\x66\x39\x0c\x8d\xcc\x10\x5e\x47\xb1\x8d\x49\xd4\xb1\x59\x3e\xdd\xf8\x9a\xa2\x08\x2a\x62\x53\x64\xbd\xdb\x4b\x02\xd8\x0d\xa5\xa5\xe3\xc5\x12\xfc\xcc\x2c\x53\x6e\x22\x48\x14\xfe\x4d\x6f\x50\x7b\x76\x29\x1d\xd9\x0e\x0f\xe3\x31\x25\x62\xe0\x9d\xd2\x35\x25\xab\x92\xc4\xd1\xda\x53\xf4\xa5\x22\x98\x4f\xbb\x05\x8b\xef\x3a\x55\xdf\x10\x92\xde\xa6\x60\x06\x06\x79\xaa\xa5\xb2\xfd\xc3\x30\xbe\xc8\xb7\x0e\x93\xcf\x15\x83\xd9\x70\xf0\xdf\x47\x27\xc5\x8d\x33\x32\x9c\xdf\x25\x3c\xce\xb7\xb1\x7c\xe1\xb2\x31\xaa\x86\xc4\xe2\xd1\x89\x8f\xc1\xef\xd1\x0b\x87\x2b\x7f\x19\xb7\x8d\x64\xef\x32\x86\x93\x30\xb6\x74\x1d\xd1\x3e\x9f\x8c\x15\x5e\xff\x37\x94\x94\xca\xbb\xb0\x37\x22\x37\x57\xe7\x06\x08\xc7\x4a\x0f\x4f\xc6\xf9\x8b\xcb\x7a\xd8\x04\xff\xb3\xcf\x36\x07\xd6\xc4\x0e\xe0\x83\x34\xeb\x03\xa5\xe6\x00\x93\x81\x5e\xf9\x91\x3a\xe6\x90\xa5\x51\xda\x8b\x4c\x8a\x60\x09\x98\x1e\xb8\x1e\x3e\x76\x91\x49\x9a\x18\x1f\xb8\x0a\xae\xb7\xf8\x10\x1f\x57\x86\xb6\x0f\xcd\x7e\x85\x3a\x5f\x61\x3c\x72\x17\x08\xe3\xfc\x1e\xd9\x34\x87\x9c\x28\x5e\x28\x87\x5a\xc1\xd3\xa5\x1c\x3e\xee\xe5\x7d\x2b\x39\x6d\xc9\x6a\xcf\xb9\x38\xa5\x06\x88\xb8\x64\x7b\xbd\x4d\x31\xf6\x45\x15\x63\x5f\xac\x7b\x0e\x99\x6d\x9b\x51\x9b\xe9\x17\xe4\x39\xaa\x61\xae\x0f\x82\x27\x15\x22\x23\x2c\xa2\x34\x90\xe3\x0b\x9b\xce\x9f\xe0\xaf\x61\x02\xce\xe9\xc9\xc5\x0b\xc1\xe7\x36\x41\x59\xac\xd8\x51\xf7\x3c\xe6\xe7\xe5\xb8\x2e\x9c\x35\x51\x94\xe0\x0d\x21\x50\x47\x5a\xcf\xc7\x75\x62\x13\x18\x6f\x45\x77\x02\xbb\xeb\x63\x32\x56\x7c\x5c\x83\x70\x5e\x68\x0e\x93\x28\x6c\x5b\x0d\x27\xf8\x44\x85\xae\x9f\x54\xde\xef\xe2\x6c\x33\xb6\x6d\x9b\x65\x26\x0d\x23\xa2\xfd\xf3\x24\x19\x6e\x86\x7c\x87\xb2\x2e\x57\xfd\x90\x44\x6a\xda\xcb\x9d\x64\x35\xde\xa6\x44\xf5\xce\xd1\x06\x16\x2d\x3f\x3f\x04\xf6\x18\x40\x3c\xd8\x5b\x67\xc6\xaa\x86\x76\x6c\xec\x91\x3a\xc7\x95\x4c\xd1\xa0\xdd\x49\x62\x13\x75\x28\x35\xc3\xda\x3f\x13\x78\xae\xa3\x33\xe3\x5f\x7a\x08\xb2\x29\xb5\x59\xd8\x01\x72\x84\x92\x01\x27\x3c\xb7\x79\xd0\x44\x66\x48\x25\x3a\x5c\x4a\x4d\x18\xb7\xfb\x61\xd4\x51\xfa\xa7\x5c\x83\x15\xd3\xba\x47\x79\xd3\x6c\x38\xca\x6d\xb6\x8d\x8c\x86\x10\xc7\x51\x94\x81\xb2\xc2\xba\x66\xa2\x38\x03\x73\xc2\xff\x13\x28\x06\x08\x56\x9d\x96\x91\xd4\xcf\xeb\x1f\xf8\xc6\xc8\x44\x61\x37\x2c\x42\xdb\xc5\x59\x5e\xc3\x98\x81\xe2\xe3\x4a\x2a\x41\x84\x60\x69\xb1\xb2\x41\x8e\xe5\x8b\x71\x87\x03\x3f\x67\x71\xb8\x2e\x7b\x2a\x56\x35\xf5\x91\x1c\x07\xa5\xc3\x24\x7f\x7b\xec\x59\x3b\x6e\x53\x35\x42\x34\xb4\x44\xbe\x37\x35\x79\xd8\x0d\xdb\x3c\x59\x7d\xc8\xf7\xf0\x74\x6f\xcf\xcd\xbb\xa4\x36\xcb\xdc\xde\xae\x93\x5a\xf6\x0e\x66\x34\x4c\xe2\xed\xa5\x9e\x2f\x3d\x55\x69\xe1\xd2\x53\x45\x39\xe3\x63\x25\x86\xcb\x74\x7e\x2c\x19\x12\x78\x6a\xe7\xef\x8e\xfd\x13\xf9\x58\xbf\xcd\x64\x35\x2e\x96\xcd\x54\x71\x73\x28\x37\x5f\xa3\x07\x86\xdd\x00\x18\x9e\xa8\x88\xab\x1e\x66\x64\xc2\x38\x0f\xbb\x5d\xd8\x36\xe9\x95\x35\x1c\xa3\xef\x99\x8a\xdf\xdf\xbb\x77\x73\xaa\xe7\x28\x8e\x3c\xdd\x51\x09\x21\x92\x9a\xc1\x9e\xe2\x52\x90\x69\x83\xd3\x03\x95\xc7\x7f\x47\x74\x08\x42\xc3\xab\xb9\xb9\xe1\x86\xe1\x15\xcf\x71\x7d\x4b\xd6\x0c\x3d\x33\x27\x3d\x59\xbc\x02\xae\x66\x07\xbe\xd9\xc4\x1a\x1e\x4e\xca\xd9\xd3\xf9\x4c\x4d\xfc\x86\x64\x09\x4d\x9d\x2f\x23\xdc\xf9\x80\x80\xc6\xc8\xef\x4e\x2b\x62\xcc\xef\x52\x0d\x6d\xe3\xb8\x73\x48\x43\x8c\xdc\xa0\x78\x26\x64\x70\xaa\x4e\x81\xa6\xa5\xf0\xcb\xe8\x86\x70\xda\x89\xd6\xb6\xd1\x5b\x16\xe2\x5f\xcd\x02\x8c\xe0\x48\x68\x2f\x68\x87\x09\xef\x05\x6d\x51\x5c\xce\xf5\x40\x71\x43\x5f\x57\x5f\xbf\x4a\x03\xc5\x34\xa6\x2a\xb8\x8b\xe2\x0d\x38\x4c\xa6\x23\x01\x78\x7d\xec\x43\xc3\x07\x15\xa0\xc3\xbe\x85\x66\x6a\x57\xda\x09\x56\x07\xb6\xc1\xeb\x1a\x3a\xf8\xba\xea\x9d\x47\xa1\x09\xb3\x24\x86\xf3\x92\x41\x10\xc5\xb0\x79\xb4\x62\xbc\xc5\xe2\xe5\x26\x5c\x35\xc0\x69\x38\x84\xb2\x6e\xa7\xe8\xc5\xd4\xed\x66\x33\x1e\x61\xf4\x18\xb2\x72\x49\xc4\x55\x28\xb5\x6d\x52\xc2\x25\x37\x9c\xe4\xfd\x99\x6a\xf7\x6a\xae\x69\xc9\x52\x95\xbd\xf5\x5d\xe5\xad\xef\xba\x8a\x4b\x62\xdb\x9d\x86\xd2\x7e\x5f\xd7\x72\x6b\xeb\x0e\x73\x3d\xca\x6c\x5a\x22\xd2\x64\x15\x17\x61\xf3\x97\xf5\x33\x1a\x66\xb9\x61\x0a\x76\x2c\xe9\x2d\x2d\x0f\xf1\xd8\x32\xd9\xd4\x0c\x3a\xf8\x42\xf3\xb9\x47\x8a\x65\xca\xb2\xd3\xc1\xd6\x67\xa4\x88\x42\xb7\xc8\x02\xa4\x58\x16\x4e\x27\xd0\x35\x52\xfe\x0c\xc9\x22\xba\x11\x6f\xc0\x8a\x8b\x56\xc0\x94\x97\x66\x87\x54\x2b\xf3\xaf\xaa\xfc\x78\xef\xc2\x8b\x8d\x72\x1e\xa2\x52\x9d\x8b\x2a\xf7\x14\xd9\x41\x46\xaa\xc9\xc4\x03\x3d\x01\x44\xb1\xfb\x4b\xe4\xb7\xd5\x4c\xac\x63\xbb\x36\xee\xf0\x13\xe4\xfa\x14\x36\x88\x14\xab\xfc\x04\x46\xd6\x36\x34\x3b\xe8\x44\xd3\xcf\xaa\x09\xe4\xb3\x25\x98\x8f\x8d\xb2\xc7\x94\x74\xc1\xe3\x2d\x32\x33\x08\xb2\xff\x95\xa2\x50\xbe\x4d\x8d\x35\x17\x49\x17\x4f\x13\xfd\xd8\xa3\x25\x36\xd6\x0d\x85\x30\x40\x92\x8b\x0c\xe3\xb0\x5e\xf7\x97\x60\xa3\xf0\x09\xe4\x21\x78\xcc\x37\x10\x9f\x21\xc5\xde\x3d\x51\xd3\x6d\x47\xe1\x17\x10\x9c\xde\xa9\x3c\x9e\xf9\xf9\xa6\x1d\xf4\x8b\x65\x83\x8b\x11\x6a\x3a\x35\x51\x7f\x42\xbd\x0d\x9b\xe5\x66\x29\x0a\xb3\xfe\xb4\x5f\x09\xd3\x9a\xda\xe5\x9d\xb1\x77\x9b\x57\xe9\x6e\x37\x2e\xd5\x36\x5f\x93\x78\x45\x60\xbd\xc8\xdb\x50\x0a\xe6\x63\xc5\xa9\xd9\x27\x94\x49\xc3\xe3\x79\xde\xd3\xa8\xba\xf7\x82\xa7\xa4\xd2\xd8\x8b\x93\x41\x18\x87\xc9\x28\xe3\x40\xd1\xa9\x0a\x2c\xf8\xd6\xac\xff\x5e\xd3\x2e\x16\xd6\x34\xbd\x35\xa7\xdb\xec\xca\x11\x5c\xe4\xe1\x13\x7a\x85\xfc\x47\xe5\x34\xdc\x66\x3f\xa7\xba\x6a\xa7\xe0\x50\xe0\x28\xcf\x06\x0a\x71\x8c\x89\x65\x9e\xdb\x9d\x34\x7e\xf5\x00\xc7\x62\xff\x65\xec\xcb\x37\xdf\x29\x31\x6a\xbc\x3d\x26\x32\x1b\xd7\xe6\xf7\x66\xf3\xbd\xb1\xd7\x11\x7d\x07\x8d\x49\xe6\x28\xc5\xb2\xc6\xff\x5c\x02\x43\x91\x1b\x1b\x71\xec\x61\x1c\x99\x61\x45\x6d\x6d\x35\xbe\xfc\x22\xa7\x89\xac\x11\x8f\xcd\x7a\x99\x56\x17\xda\x88\x2c\x2e\x86\xbd\x0e\x76\x63\x94\xc8\x1b\x2d\x25\x93\x7c\x22\x68\x3c\xfb\xac\xab\x1e\x17\xde\x58\x2a\x3e\xe4\x80\x9c\xa2\x6d\xb1\x03\xb0\x67\x0e\x57\xbc\xc4\x73\xcd\x30\x6e\xdb\x0c\x46\x0c\x2e\x06\x3b\x90\x8f\xc7\x9f\xd3\x84\xcf\x64\x69\x73\x26\xef\x90\xdc\xc4\x87\x11\x17\x54\x50\xd3\x06\x9f\x2c\x5b\x01\x3c\xc7\x73\x78\x5c\x7c\x52\x43\x91\x5a\x5c\x4c\x6a\x4d\x26\xc5\x02\x4d\xcb\x25\x6d\xe6\x9d\x6e\x86\x3b\x9e\xf1\xe2\x6a\xcc\x08\xe0\xf4\x72\x9c\x1b\x63\xcd\x3e\xf9\x2b\x1f\xa6\x9d\x54\x70\x54\x4a\x27\xd8\x0c\xe1\x63\x17\xe8\x21\xf0\xb1\xfa\xcb\x5e\x3f\xc9\x72\x40\x88\x5e\xe2\x0c\xe5\x8c\x06\x9d\xdf\x2d\x0f\x31\x7b\xb2\xf2\xb6\x89\xa2\x6c\xa6\x84\xa9\xf0\xaa\x65\xa7\x34\x9f\xc1\x07\x5a\x23\xe9\x9a\x62\x1d\xf8\xb7\x35\xd5\xd9\xfd\xe5\xfc\x1b\x35\x46\xbc\x13\x3e\x2e\xd9\xd0\x51\xd6\x7f\x42\x0f\x6e\xaa\xb0\xf5\x86\x66\xaf\x78\x8c\x98\x9d\x81\xf4\xbc\x19\x14\x4b\x8b\x7b\x78\x58\xca\xa5\x40\x17\xc3\x5a\x20\xcd\x11\xe4\xbe\x0a\x9a\xef\xc2\xb3\xa3\x7e\x02\xaa\x7b\x2e\x91\x4e\xe8\xa6\x71\x9f\xe7\xf1\xdc\x80\xb7\x99\x56\xa0\xd5\xab\x41\x43\xc9\x55\x28\x2f\x74\xbe\xb2\x7e\xf6\xee\x6d\x16\xa1\x6d\xdf\xb8\x65\xa7\xba\xfc\x42\xd6\x75\xa1\xc6\x61\x65\x79\x32\x1c\xca\x9a\xc3\xc5\xdd\x1a\x2b\x11\xcb\x5b\xc1\x4e\xfe\x4c\x73\x61\xe1\x6f\xab\x2e\x26\x04\x1f\x50\x3b\xbf\x8e\xde\x2f\x2c\xf1\xdb\x41\xe3\x45\x99\x1c\xfe\x6d\xda\x9a\x8c\x6e\x47\x57\xc4\x65\x39\x7b\xe7\xd8\x6b\x7c\x8a\x3d\x0b\x4b\xb4\x7d\xe2\x41\x81\x7f\x84\x98\x11\x4f\xe9\x4f\x02\xcd\xc1\xf6\xfd\x71\xe3\xeb\x5f\xd5\xf1\xd3\x4b\x5e\x0d\x69\x9f\x40\xf2\xee\x12\x83\x10\x2a\x46\x7f\x82\x65\xc6\xac\x33\x78\xe2\x30\x1f\xbf\x43\x06\x17\x16\x03\x8e\x11\x46\x69\x5b\x8b\x6c\x1a\x2e\xe5\x7b\x20\x2b\xc4\xad\x9f\xa7\x91\x7a\xdc\xe1\xff\x4d\xdc\x66\xd8\x7b\xdf\x83\x4d\x63\x00\xbf\x67\xd6\xfc\xde\xcc\xa4\x24\x13\xf9\xec\xb3\x4e\x3e\x5b\xc5\x6d\xa7\xc6\x64\x5d\xb1\x97\x3e\x62\xae\x5e\x75\x87\x73\xf0\x2b\xdf\xfa\x5c\x4b\xf5\xd3\x4f\xeb\x90\xe9\x31\x50\x92\xc1\x12\x9e\x0d\x94\x10\x9b\xef\x27\xe6\xe1\x40\x20\x2f\xba\x51\x28\x43\x63\x1e\x32\x18\x9b\x51\xaf\x9f\x87\x36\x6d\x28\x50\xda\x31\xf5\x7c\x8e\xb9\x1a\xe9\xd0\x44\x86\x05\xbc\x5d\x2a\xa1\x48\xa6\x4b\x71\x70\xdb\x44\x5f\xc0\x8b\x84\x59\xde\x8a\xfe\x39\xa3\xf5\x03\x55\xf3\xbf\xab\xa7\x94\x8e\xd0\x4b\x82\xed\x07\x06\x0f\xcb\xe5\x51\x52\x86\x10\xf1\xe6\x62\x4d\x31\x8a\x41\xf1\x2a\xcd\xb4\x3c\xfc\x84\xc3\x59\xa4\xd4\x8d\x09\xbd\x54\x21\xa9\xa3\x35\x2c\xe5\xd4\xe2\xa1\x20\x12\xdb\x3d\x51\xbc\xe0\x97\xe1\x1b\x11\x39\x6c\x9d\x28\x44\x10\xe4\x03\xb1\xa4\xb6\xa3\xeb\xc1\x53\x70\x78\x45\x08\xca\xa6\x26\xa5\xf7\x1a\xa8\x11\xab\x73\x41\x69\x9a\xbf\xd8\x06\xd8\x1f\x4f\x56\xb8\x52\xe7\xe7\x9b\x4b\x69\x62\x3a\x6d\x93\xe5\x53\x2a\x5f\x78\x6f\xec\xc1\xfc\x97\x03\x0f\x80\x3e\x59\xc9\x86\x0f\xcd\xbe\xd4\x5c\xb5\x26\x22\xa2\x7d\xcc\x41\xb8\xea\x98\x6b\x69\x57\x41\x2f\x7b\xf7\x32\xd6\xaf\xa1\x9a\x3f\x0c\xe4\x14\x21\xfb\x12\x75\xe2\x68\xa8\xda\x72\x47\x4b\x1c\x84\x55\xb1\x8c\x97\x9a\xd6\xf4\xb8\xf3\x51\x37\xa8\xb5\xf9\x13\x5f\x6a\xc6\x49\xde\x97\x72\x20\xec\xe7\x03\x6c\x29\x3e\xa9\xeb\xf3\x0c\x4d\xcf\x1a\xc1\xe4\xa3\x74\x0a\x36\x4d\x3e\xae\x18\xc9\x83\x2f\x30\x66\xba\xe1\xcb\x74\xe0\xcd\x95\xd8\xcb\x43\xbb\x56\x4d\xec\xe4\xd9\x58\x5d\x55\x45\xce\x27\x15\xce\x6f\x90\xa4\x79\xcf\xf4\x6c\x36\xd5\x98\x9f\xdf\xb8\x14\x78\xc9\x32\x60\xa1\x65\x62\x5b\xb9\xd1\x94\x04\xe6\x7d\x96\xd5\x52\xd9\xd7\x64\x13\x7f\x2a\x15\xa4\x5e\x7e\x79\xa6\x30\x36\x52\xc5\x55\x2e\xeb\x03\xec\x03\x2c\xfd\x6b\x88\xeb\x1c\xd3\xb0\x03\x9c\x9d\xaf\xb0\xff\x1d\x9a\xfd\x4a\xb3\xbf\x36\x4c\x7a\xd1\x5a\xdb\x0e\x42\xd3\x28\xbd\xfa\xe2\x7a\x64\x4d\x78\x9d\x9d\xb8\x1f\x72\xc0\x8f\xd0\x93\x41\x79\x7c\xa2\xb2\xff\x2c\x5f\x8b\x64\xfa\x1a\x4d\x6e\x90\x9a\xf0\xb1\x06\x26\xa5\xe1\x6b\x49\x6c\xa6\x14\xff\xc9\x19\x05\xb3\x46\x18\x07\x4f\x73\xdb\xcd\x4e\x0d\x6d\x1c\xbf\x96\x84\xe0\xf9\xc6\x76\xe4\x1d\xcc\x27\x95\x7d\xb6\xb0\x70\xa0\x19\xdb\xf6\x32\x51\x10\x94\x2e\x8b\x1e\xa5\x5c\xd7\x2e\xf7\x8a\xf2\x95\x1d\xca\x3e\x1c\x27\x27\xe7\x26\x2b\x1d\x98\x0c\x7d\x2d\x46\x28\x52\xb7\xa5\x84\x56\x84\x09\x82\x38\xbf\x74\xbd\xbd\x6d\xdd\x32\xd9\xbc\x3e\x5f\xdc\x4f\x4a\x13\x96\x49\x0a\xd4\x58\x8c\xe3\x94\xad\x2b\xf4\x77\x47\xb1\x6f\x1a\xc2\x99\x41\x60\x91\x8f\x2b\x36\xa3\x78\x1a\xaf\xd8\x74\x94\x99\xc8\x02\x9d\x8d\x88\x9d\x69\x58\xf9\xa4\xf2\x53\xcf\x35\x23\x33\x8a\xdb\x7d\x31\x1a\x4e\x68\xd8\x27\x91\x9a\xa4\xbb\x9d\x2c\xc3\x95\x88\x8e\xab\xef\x13\x1e\xab\x63\x5c\xea\xa5\x50\xea\x2f\x3e\xe2\x6c\x7c\x71\x4b\xe2\x06\x15\x45\x5b\x64\x42\x00\x55\xe0\xed\xaf\xa8\x61\xee\x37\xb5\x8c\x4c\x0d\xc1\xe2\xfe\x66\xbb\x1f\x5a\x4c\x4e\x21\x4e\xbc\xae\xa8\x1d\xaf\xd7\x7f\xc2\xa4\x0e\x39\x50\x1a\xd2\x94\x12\xb7\xef\x8a\xe4\x36\x8e\x6d\x96\x59\x3b\x53\xe6\x5c\xf4\x9a\x80\x8d\x56\x89\xf4\xb0\xc4\xb9\xa8\x28\x1b\xab\x2f\x6d\x7f\x33\xb5\xc3\x24\xcd\x37\xe9\x8a\xfe\x99\xd2\x15\xfd\x33\x5f\x4f\xb6\x99\x4d\x57\x44\xf6\xae\xb4\x9c\x3c\xb8\xf3\x2e\x96\xbf\xbc\xfd\x3a\x56\xd3\xd4\xa4\xc0\xe1\xb8\xf9\x12\x45\x57\x5c\xc3\xec\x07\x12\x77\xf4\xb9\x30\xca\x05\xda\x68\xfc\xc6\xd3\x2d\xdf\x2b\xbb\xad\x12\xad\x61\x7f\x2d\x0b\xdb\x26\x9a\xf2\x98\xc4\xc3\x3a\x83\x78\x9f\xf6\x0d\x1e\xcd\x77\xf4\x08\x9e\x35\xd0\x84\xf7\x50\x5d\xba\x40\x81\xed\x6e\x5e\x66\x07\x5f\x68\x2e\x99\x88\x58\x68\x0a\x17\x00\xfc\xfe\x67\xf4\x11\x3e\x76\x85\xd5\x8e\x5d\x49\x72\x59\xea\x88\x8e\xbf\x4b\xd6\x88\x8f\x3d\xe8\x26\x45\xa1\xa8\x24\x01\x59\x7c\x48\xe4\xf3\x2a\xa3\x61\x2f\x1c\x68\x0e\x92\x38\xef\x33\x5f\xac\x84\x10\x8d\x05\xaf\x01\x55\x53\x71\x31\xd1\x68\x10\x87\xf8\x1d\x46\x92\xaa\x4e\x46\x95\x3d\x93\x64\x92\x93\x28\x4a\x56\x1b\x2a\x62\x3e\xa3\xc6\x04\xcf\x94\x5c\x7c\x97\x29\x23\xa4\xf7\xa4\xd0\x65\x5e\xc2\x7f\x98\x84\x71\x4e\x03\x02\x42\x1e\x0e\x1a\xc0\x12\xd1\x09\xcc\x29\xba\xf7\x38\x66\x32\x2d\x21\xd3\xac\x69\xa2\x11\x66\xb2\x6b\x53\xc6\xfc\xce\x39\x0a\x56\xda\x2c\x7c\x52\xaa\xa2\x74\xbb\xd9\x4e\x35\x79\x75\x12\x21\x27\x42\xbd\xa9\x96\x2f\x90\xdc\x56\x6c\x65\x57\x70\x1d\x82\x47\x56\x58\x83\x75\x04\xed\x88\x27\xd7\xa9\x28\xc1\xc7\x64\xd7\x5d\xb0\xe0\xa6\xea\x3f\xd6\x70\xa1\x51\xdc\x9b\xf1\xb3\xe6\xef\x6a\xce\xa5\x6b\xf4\xf3\xc8\x37\x1a\x9a\x32\x90\x23\x50\xfe\x48\xa0\x67\xb1\xad\x59\x66\x29\x49\xe4\x3f\x57\xd5\x70\xdf\x15\xfd\xe5\xbf\x3d\x16\xf9\xa4\x2c\x19\xe5\x7d\x9b\xc6\xae\xe6\x29\x2c\xcd\xb0\x5a\xc8\x43\xf9\xf7\x85\xd4\x61\x33\x98\xe4\xb9\x66\x18\x45\xcf\xd3\x9c\x55\x11\xc7\xec\x5b\xd8\xb8\xa4\x5a\x35\x99\x1d\xe6\x76\xb0\x64\xd3\x1d\x45\x14\x8e\x97\x0f\x31\x79\x18\xf5\xef\xc2\x11\x88\xae\xbb\xe2\x43\x84\x2e\xbd\x94\x4f\x3c\x1f\xc3\xeb\x81\xda\x34\x50\x99\x17\xa5\x8e\x9a\x01\x0f\xe9\x17\x36\xd4\x14\xf9\x3a\x2d\x3e\x91\x33\xd3\xab\x63\x69\xb4\xf6\x78\xf1\xe2\x64\xdc\x9e\x1e\x9a\x42\xd2\x2d\x38\x5d\x47\x3f\x2e\x75\x58\x51\xc4\xdc\x1d\x97\xc4\xe6\xf1\x14\xb1\x54\x40\xb8\x86\xe7\x7b\x04\x95\x29\xc4\x7b\x3f\x24\xd7\xe3\x00\xf5\x7b\xe7\x64\x5e\x19\x09\x33\x5f\x0a\xaa\x0f\xd8\x30\x68\xf9\x60\x5b\xdc\x1e\x7b\x94\xf2\x79\x35\x43\x53\x98\x8a\x5e\x12\x75\x9d\xd9\x87\x1b\x39\x3a\xf6\xf0\x81\xa3\x35\xbc\x29\x2f\x35\xf3\x7e\x52\x64\x7e\x33\x5e\x7a\xe9\x2f\xb0\xfc\x81\xc3\x40\x5d\x1e\x66\xef\x98\x2a\x28\xf2\x96\xc3\x22\xd9\xd2\xda\xe5\xc6\x77\x53\xbb\xdd\x4f\x6f\xdd\x54\xc2\x6f\x3b\x5a\x0a\x8b\xf0\x01\x9e\x88\xc3\x70\x09\xf3\xc7\xff\xef\x76\x49\x31\x4b\xf5\xba\xd6\xeb\x88\xf2\x49\x9a\xb2\x51\xd1\xef\xe1\x13\x3d\xd5\x9f\xb4\x97\xa5\xd4\x8b\xcd\x8f\x40\x9d\x8f\xf5\x90\x99\x69\x87\xd9\x60\xca\x4f\xfc\x23\xcf\x14\x61\xdc\xe2\xb7\x50\x8e\xfe\x4d\x35\xe0\xdc\xb1\x83\xa4\x9d\x9a\x3c\x6c\x6f\xa3\xf7\x86\xaf\xbd\x85\x54\x90\x4f\xe8\x26\x25\xcf\x51\xdc\x9d\x80\xf1\xf2\xf1\x44\x27\x40\x8e\x69\xe5\xd5\xa1\x6d\xe7\x3b\xe8\xf1\x29\x45\x2c\x41\xc8\x3d\xdd\xf2\x45\x43\x48\x03\x49\x23\x8f\xf6\x80\xcc\x11\x17\x57\x4e\xc0\xa0\x2b\x4f\x2a\x22\xf5\x07\x0a\x3d\xb0\x53\xb1\xda\xf4\x6c\x8e\xa7\x85\xef\x7a\x4b\x35\x08\xdf\x1a\x4b\x2b\x7f\x98\x26\x79\x6a\x3c\xf1\xb8\xcc\xad\xa8\x19\x96\xe0\x31\x35\x05\xce\xe5\x85\xfd\x5e\xe0\xc7\x31\x20\xad\x8f\x9f\x76\x7f\xb8\x1c\x27\xab\x91\xed\xf4\xac\x11\x9c\x27\xd6\x1f\x08\x8b\xf9\xb8\xe2\xfc\x16\x67\x9b\x91\xe9\xf5\xe4\x5a\x1c\x96\x65\x71\xd6\xa5\x3a\x1e\x04\xbe\x9a\x0c\x2c\x23\x2a\xa4\x3e\x48\x17\xc6\x05\x37\x5a\xb6\x52\x7c\xa3\x7a\x80\xab\x03\x16\xaf\x17\x1b\x99\x5f\x2f\x9f\x54\x6a\x74\x0b\x0b\xbe\xc6\x8b\xac\x1d\xfb\xe0\x98\x42\x58\x72\xd8\x8e\xce\xd3\xed\x52\xe5\xc4\x0c\xb2\xdd\xb4\x91\x1d\xdf\xe3\x97\x5f\xe4\x4f\x7d\x13\x3f\x2c\xb3\x06\x3e\xee\xda\x05\xcb\xed\x0a\x73\x87\xfc\xae\xd2\x72\x80\x3e\x4a\x7a\x33\x50\x9e\x8e\xb7\x34\x62\x44\xa6\xd7\x45\x71\xeb\x77\x11\xaa\x88\x58\xbe\xe2\xc7\x79\x7b\xbc\x49\x78\xf4\x57\x7e\xad\x79\x68\x76\x3f\xac\xaf\x1b\xfb\x29\x7c\x26\x9f\x28\x34\x67\xc7\xb6\x23\x93\xda\xce\x54\x11\xdc\x0a\xe1\x8b\x27\xba\x63\x39\x21\xe1\xda\xf5\xe1\x5c\xdf\xc4\x9d\xee\x28\x22\xc4\x8a\x50\xdd\x6b\xde\xfb\xda\x80\xb3\x1f\x46\x1c\x48\x89\xb1\x2e\x7e\x89\x8f\x6b\x73\x9f\x6e\x14\x16\x36\x43\xd6\x13\xc2\xd1\x9b\x78\x61\x7c\x52\x49\x7e\x16\x16\x9a\x59\x6e\x24\x39\xf3\x18\x4e\x0d\xee\xac\xc1\x2c\xad\x26\x2b\x36\x9e\xf2\x30\x46\xc6\xb4\xe0\x04\x0d\x5e\x79\x45\xbe\xc9\xb4\x64\xa3\xd0\x76\xb7\x51\x3c\x23\x2c\x8e\x0d\xc7\xae\x06\xaa\x60\xce\x8f\x29\x38\xc1\xdf\xdc\xa1\x55\x21\x34\xe1\x0d\x27\x2b\x7f\x5a\xb1\xdd\xe4\x36\x4e\x52\xdc\xb5\x88\x3b\xd2\xdd\xf0\x49\x20\xd0\xa4\xff\x0f\xd9\xe1\x66\x8f\xf3\xf2\xcb\x4d\x13\xaf\x51\x15\x07\x8c\xc3\x68\xbe\x5c\xf3\x7c\x0d\x7d\x44\x84\xae\x5b\xe0\xc7\xf2\x3f\x54\xc0\x69\x6b\xd2\xbc\x8f\x00\x53\xe8\x26\x94\xe5\x44\xc4\xa0\x59\x3f\xd1\x11\x7b\x4f\xbd\xf4\x0f\xd5\x48\x48\xde\x0f\x7b\x7d\xb8\x4d\xe4\x04\xc8\xc0\xf9\x38\xf8\x7c\x89\xc7\xdf\x0e\x86\x49\x6a\x52\x80\x90\x95\xfc\xc0\xfe\x8d\x4b\x50\x74\x03\x4d\x87\xc0\xf9\x4b\xf4\x0d\xd1\xf3\x0d\x1d\x8c\x2b\xcc\xdc\x7a\x0d\xe0\xb5\x88\xcc\x93\x3c\xcb\xed\xf0\xaf\x63\x8f\xd5\x3f\x30\x1c\x86\xf4\x03\x4e\xc6\xbd\xd8\xc3\x7c\xf2\x50\x5c\x83\x89\xba\x24\x69\xe0\x8b\x11\x77\x38\x92\x41\x58\x7e\x02\xab\x51\xfc\xc8\x66\xa5\xe1\xc5\xfd\xcf\x34\xbf\x34\xad\x1c\xda\x8f\x02\x05\xe8\x83\x9b\xe5\xd1\x2b\x95\x42\xe9\x42\xd0\x9a\x89\x97\x2d\xf2\xc7\x3a\x04\xa2\xef\xec\xbf\x38\x37\x5b\xdc\xde\x06\x90\x65\x1b\xa7\xeb\x26\x7c\xdd\x24\x90\x52\x94\xc1\xf7\xf1\xb1\x1a\xc1\x02\x80\xad\x1b\xda\xce\x74\x11\x55\xa1\xf7\x8d\xb7\xc8\xa5\xfc\xf7\x03\x2f\xa1\x8c\x3e\x2b\xff\xfb\xd8\x2f\x0a\xd3\x4b\xc3\xf6\x28\x22\x34\x34\x19\x25\xa1\xc9\xa5\xad\x29\x1a\x06\x5a\xfb\x93\x34\x24\xb6\x29\x84\xd5\x47\xf4\x94\x9c\x9e\xc4\x82\xcf\x65\x54\x7b\xe9\x23\x38\x1f\x57\xbf\xf6\x01\xd4\x85\x0a\xcf\xc0\xbe\x85\x66\x6a\x72\x7e\x08\xb8\x7c\x4c\x20\xf3\x71\xdd\x78\x62\x3a\x8a\xfd\x4c\xa4\xd3\x10\x59\xf0\x76\xb5\x86\xd3\x68\x38\x92\x06\x14\x8b\x44\xd1\x07\x44\x30\x4a\xf1\xab\x76\xb2\xc7\x0b\x07\x06\x67\x79\x47\xd3\x52\x3d\xc0\xf3\xa6\xe0\xfa\x4f\x9f\x05\xd4\x89\xca\x1e\xaf\x3f\x31\xf1\xcc\xa6\xbb\xc0\x46\x4c\x7f\xb5\xf6\xf7\x99\x38\x9b\x10\x64\x7f\xc9\x2a\xe6\xf0\x74\xdb\xa9\x43\x20\xc4\x2d\x8a\xf4\x14\x68\x74\x99\xc5\xf1\x15\x04\x00\x98\x29\xde\x4c\xfe\xf6\x44\x4d\x52\x9c\x54\xe3\x0b\x9a\xf5\xec\xd9\xf8\xd9\xa9\xe2\x37\xd0\x70\xbf\x87\x62\xaa\x1b\xd8\xd9\x3b\xe7\x00\xf6\x35\x92\x44\xb9\x61\x71\x68\xc0\x1f\xde\xa4\x57\xcd\xc7\xc1\x1e\x3f\xae\x6c\x46\xa9\x8d\x4b\x3d\x96\xd7\x03\xd5\x63\x79\xdd\x91\x4a\xe6\x6b\x43\x59\xea\xac\x30\xd0\xf2\xf1\xdc\xd4\xc4\x09\xcc\xd9\x2c\x9b\x51\x23\x1f\x40\x23\xa3\xfc\x35\x03\xf2\x30\x74\xf6\x7f\x32\xf6\xa1\x21\x1b\x5f\x21\x5e\x51\xc6\x37\xce\x6d\x8a\x1d\x8f\xd4\xed\xa8\x96\xdd\x3c\xaf\x38\xeb\x80\x12\x92\xec\x7e\xb3\xe7\x9b\x9f\x6f\xe6\x26\x5b\x66\x42\x6e\x34\xd5\x36\x68\x01\xe1\x62\xae\x20\x80\x15\x51\xd0\x0a\x97\x06\x09\x7f\xa0\x46\xc3\x38\x3b\x5c\xb1\x80\xee\x6a\xd6\xab\x35\x19\xa2\x00\x07\x66\x74\x69\xf7\xc7\xae\x72\xdc\x0f\xb3\xa1\x89\x79\xc8\x12\x5e\x64\x4f\x4b\x15\xb1\xf7\x28\x81\xbc\xd4\x66\x79\x6a\x42\x34\x18\xbe\xe2\x65\x2e\x5c\xf9\x64\x5d\xb7\x0b\x8a\x94\x9d\xa1\x67\x8c\x97\xd5\x8c\xbb\xe7\xd4\xd0\x78\x96\x8f\x3a\xa1\xcd\x76\x36\x1c\xff\xc4\xef\x62\x35\xe3\xd5\xae\x63\xfb\xf3\x09\xf9\x7a\x78\xd2\x0f\x83\x12\xea\xab\x30\x47\xfc\x1f\x94\x00\xa0\x0b\xc7\x23\xfe\xdc\x9b\x25\xdb\x83\x28\xf3\xcd\x40\x31\x9a\x1d\xab\xc9\x17\xf7\x37\x93\xe1\x30\x71\xa8\x05\xf8\xae\x2d\x54\xbb\xe3\xe3\x0a\x54\x7f\x61\x61\x7f\xb3\x1b\xba\x4a\xbf\xfc\x28\xfd\x90\x74\x87\x25\xd3\x81\x6a\x0a\x80\xa8\x22\x56\x4c\x5b\x92\x4f\x02\x2f\xb8\xc1\xe0\x3b\xe4\x68\x53\x24\x3f\x25\x40\x9c\xe2\x6a\x5c\xe1\xd4\x15\x22\x5f\x57\x10\xb1\x94\xe1\x41\x08\xa1\xd1\x78\xe7\x63\x77\x2d\x66\x29\x31\x69\x07\x3c\x54\x9a\x34\x0c\x4b\xfe\x8a\x57\xe8\x7e\xf1\xf3\x58\x1c\xb0\x7a\xa7\x54\x19\xe3\xa6\x6a\x91\x1c\x1f\x97\x98\xf2\x94\x0e\x67\x9c\xa4\x83\x64\x94\xcd\x90\xbb\x10\xd2\xbd\xe2\x83\x78\x0d\x5b\xaa\xc2\x40\xae\xb5\xec\x46\x68\x4f\x07\xfe\x11\xa6\xab\x66\x4d\x29\x23\x32\xca\x8b\x4f\xea\xc5\xf3\xcc\x1a\x8f\xa1\x38\x94\xf0\xfc\xbc\x43\x09\xd7\x71\x88\x8f\xe2\xae\x09\xd1\xba\x83\xad\x45\x79\x94\x8f\x55\x7d\x3f\x5e\xcb\x84\xaf\x41\xca\xf5\x0d\xa7\x79\xc4\x13\x2a\xc2\x54\x27\x71\xa5\x19\x8c\x32\xeb\xc4\x67\x85\x64\xc5\x03\x3d\xae\xa9\x06\x77\x34\x7a\x75\x04\x1d\x6d\xaf\xe3\x5d\x4e\x9b\x16\x67\xdd\x28\x4f\xc3\x8d\x56\xaf\x2b\xb4\x4f\x2f\x49\x32\xbb\x04\x01\x72\xdf\xfb\xbe\xa8\x7a\xdf\x5e\x87\xc0\x2c\x25\x23\x07\xf8\xab\x73\x79\x9f\xab\xc1\xa3\x35\xb6\x3e\xe3\x64\x58\xe8\x86\x45\x6f\xe5\x61\x11\xd9\xc0\xa4\x79\x88\xde\x9f\x2a\x99\x3a\xa2\x68\xa5\x32\x8d\x5a\xff\x13\xb4\x74\x84\xf6\xce\x37\x92\x18\xe8\x82\xb5\xf3\x23\xf4\x49\x84\xbd\x94\x56\xa3\xe8\xde\x2b\x51\xa6\x9f\x04\x9a\xe0\x40\x2d\x04\xd4\x26\x44\x1d\xa1\x70\x74\xae\x16\x51\x98\x22\x99\xf1\x2c\xd6\x24\x22\xb7\xfb\xd4\xc4\x17\xb5\x15\x32\x5e\x32\xe2\x59\xb8\x62\xc4\xaf\x6c\xe3\x51\xa1\x9a\x69\xf9\x2d\xfa\xfc\x3f\xfd\x27\x8d\xe2\x47\x10\x2e\xbe\x17\x28\x7d\x9c\xf7\x9c\xfb\x5b\xb2\x26\xcf\xa6\xbd\x84\x1a\xd0\x0d\x72\xac\x50\x99\xf7\x02\xa5\xcc\xf6\x3d\x87\x7f\x4d\x49\xba\xbc\xac\xc2\xa1\xc4\xc3\xce\x55\x40\x64\x45\x50\x1e\x85\x19\xcb\x61\x3b\x56\xd8\x85\x05\x39\x0e\x7c\x09\x65\x60\x33\xb3\x4d\xb1\xab\x1f\x47\xda\xee\xaa\x9a\xc5\x03\x71\x97\xed\x06\x4e\x36\x34\x05\xd4\x95\xb1\x6f\x5e\x9e\x50\xb9\x5f\x6a\xda\x21\xc4\xc5\x7d\xa4\xa8\xc1\x69\xf4\xab\x58\x0f\x7f\x4e\x6f\x41\xfe\xa3\x78\x3c\x82\x66\x73\x86\x6e\x90\x8c\xe2\x1c\x6c\xc4\x88\x6e\xb7\x11\x2a\x07\x4d\xec\x7b\xe4\x37\x00\x4d\xc0\xfc\x9b\xde\x1f\xc8\x72\x1e\x6d\xa9\x09\xd2\x6a\x65\xa6\xf0\xf3\xa9\xe9\x20\xc7\x50\xbd\xb1\xe2\x33\x32\xee\x42\x57\x0c\xb7\xbf\xb5\x22\x9c\x37\x77\xb0\x19\x25\xc9\x32\x7b\x10\x61\x6d\x2c\x7e\x5f\x0c\x73\x0d\xc0\x6e\x40\xcc\x99\x23\xf1\x3b\x4a\x7b\x73\xe1\xa1\xda\x9b\xf3\xf3\xcd\xa5\x64\x35\xe2\xe2\xb8\x40\xa2\x1a\x4a\x50\xda\xef\x87\x2a\xa4\x61\xef\x5c\x33\x1d\x45\xd2\x9d\x14\xb4\xbf\x86\xfe\xab\x92\x61\x6a\xf3\x30\x25\x2b\x07\x52\x1e\xe0\xbe\x8e\x50\x7a\x8e\x30\xe3\xf7\x39\x0b\x73\x6e\x60\xc1\x49\x07\x4d\x8a\x58\x5a\xd8\x96\x1a\x4e\xc3\xfd\xaf\x94\xe1\x1d\x98\xf6\x32\xcd\x99\x28\x02\xa5\x39\x4d\x36\xa5\xb4\xda\x9c\x0c\xd8\x15\x2f\xe6\x31\x0a\xa3\x0e\x45\x1f\xce\xac\x7c\xfd\xab\xde\xc3\xba\xd2\xf6\x5f\x8e\xcb\x9c\xff\x7e\xae\x0b\x15\x47\xec\xb8\xdd\xb4\x70\x44\xd5\x9c\xae\x04\xc9\xfe\x09\x3d\xff\x07\x30\x97\x20\xd9\xdc\x95\xa4\xa3\xdc\x4e\xf9\xc7\x02\x2f\x8c\x5a\x04\x6a\x23\x12\x20\xfa\x00\xda\xc6\x2b\x36\x4a\x86\xac\x22\x21\xd5\x46\x5a\x07\x52\x6e\x7c\x4c\x85\xc6\xa6\x87\x21\xec\xd2\xe4\x36\xd2\x83\xf3\x6a\x07\xde\x7f\x28\x29\x7f\x96\xdb\x55\x93\xe6\xc8\xa1\x11\xfa\xde\x0a\xca\x9d\x60\x5f\x9e\x38\xec\x21\x0a\xa9\xcd\x93\x34\x34\xd4\xc4\xc1\x1d\xdd\x56\x9a\x2d\x63\x3c\x4e\xbc\xdb\x9b\x2a\x00\x8f\xc2\xa5\x35\xd3\xf0\x89\xf5\xf5\x92\x54\xee\x13\x0a\x61\x51\x04\x91\x1c\xab\xc1\x72\xb3\x6d\xe0\x93\x5a\x98\xe5\x30\x4d\x06\x61\x26\x2d\x14\x07\x5d\x2a\x1e\x9e\x34\x1e\xab\xf3\x8b\xc5\xc7\xc2\x95\x30\xb2\x3d\x26\x1c\x07\xbc\x99\x3b\x3c\x7c\x52\x23\x40\xd5\xec\xd8\x9c\x78\x5f\xf5\xcc\xec\x19\x55\xc8\x3a\x53\xb1\xc1\xf3\xf3\x28\xe7\x61\x62\xdc\x91\x87\x3b\xfa\xcc\xaa\x28\x09\x68\x36\xf3\xbc\x08\xe9\xdd\xd0\xef\xbb\x8a\x7a\xe7\xdd\xba\xdc\x76\x35\x35\x43\xfc\x86\xa3\xfc\x70\x53\x85\x1f\x04\x9e\x85\x22\x0b\xb3\x9c\x2d\x06\x76\x51\x03\xe3\x1e\x25\x48\x26\xd3\xfd\xe8\xe2\x43\x14\x8d\x8a\xdc\x21\x47\x46\xe8\x38\xf6\x3c\x47\x41\x15\xc7\xf1\xf2\xcb\xcd\x76\xdf\x9a\xa1\x4d\xa7\x3c\xb1\x08\xe7\x02\x8c\x41\x55\xf9\xd3\x69\xd5\x3b\xcf\xf2\x34\x44\x07\x64\x71\x96\x13\xef\x77\xc7\x7e\xce\xef\xdd\x3a\x12\xc6\x01\x98\xff\x3b\x9b\x14\x0c\x9d\xb0\xca\xc5\xf1\x2e\xe7\xae\xbf\x7e\x80\x60\xfb\x88\x21\xce\x83\x84\x00\x25\xdf\x1d\x64\xb8\x84\x96\x9d\x0a\x37\x37\xea\x8a\xa0\x91\xc9\x59\xd6\x02\x75\xb7\x6b\x81\x12\x69\xfd\xdd\xc0\x83\x9f\xae\xd7\xf5\xfd\x48\xd7\xd4\x2d\x23\x99\x48\xa3\xb5\xce\x27\x6a\xe8\x71\x38\x8a\xa2\x25\xd3\x5e\x6e\xf8\xd2\x20\xf8\x28\xf8\x58\x65\xfb\x83\x24\x9b\x56\xa1\xc3\x4c\xcb\x77\x90\xae\x10\x16\x54\x0d\x1e\xbe\xe4\xa2\xf7\x9a\xdb\xeb\xa6\x66\x80\x84\x5e\x54\xeb\xe9\xe2\xc4\x70\x56\xc9\x5b\xe7\x9a\x79\xdf\xe4\xdb\x8a\x77\x84\x87\xf7\xf3\x2d\x5f\xf1\xfe\x4d\x2d\x6b\xa2\x04\x48\x2f\xa2\xe8\x84\x6f\x85\x1b\x47\xa7\x71\xa6\x82\x23\x2a\x42\x99\x25\x1b\x25\xab\x20\xf2\x43\x49\x7b\x0a\xe8\x47\x67\xb4\x7e\xe5\xd7\x78\xef\x7e\x5f\xc1\x4e\x3e\x47\x76\x1a\x55\x92\x6b\x75\x3b\xa7\x6f\x0d\xfb\x7a\xb4\x4f\x11\x21\x21\x39\x80\xfa\xa0\xe4\xc9\x4f\xab\xaa\x58\x9e\x26\x9d\x51\x9b\xb0\x28\x0d\x85\x8d\x3c\xa1\xd5\x14\x4f\x8c\x3d\xc3\x55\xdf\xa6\x8f\x7b\x2a\xad\x93\x4f\x61\x34\x05\x91\x24\x04\xc7\x10\x77\x6d\x01\x75\x0a\x82\xee\x6f\xab\x5c\xf9\x0f\xc6\x8a\xc7\xef\x12\x76\x11\x7c\xfb\x5b\xe4\xbb\x18\xe6\x8b\xb8\x19\x65\xe6\x2b\x2a\x0d\xe1\xe1\x3d\x66\x27\xa3\x98\x16\xf9\x38\x2a\x78\x58\x4b\x3b\x5a\x2a\x66\xf9\x44\xd7\x27\xae\xaa\xd9\xa0\x38\x1c\x0e\x93\x98\xf3\x24\xfc\xd2\x59\x45\x96\x78\x46\x13\x9f\xde\x09\x36\x55\x60\xe7\x0e\x36\xe7\xe7\x17\x1b\xde\x64\xfe\x05\xad\x65\x3e\x56\x89\x4e\x6a\x7b\xa3\xc8\xe4\x49\x9a\xcd\xf8\x4d\x0c\xe0\x28\x1f\xd3\x6d\x3b\x15\x50\x9f\x3b\x40\x4a\x03\xe8\xd2\x7b\x2a\x8f\xb6\x49\xbc\x0d\x17\x2d\xb3\xdc\x7e\x66\x6f\x57\xcb\x6f\x8f\x4f\x94\x41\x3f\xa2\x41\x51\x37\xc7\xaa\x8c\xf4\x6d\x3d\x29\x6a\xbb\x4c\xa5\xf0\xa2\x0b\x5f\xc1\xfa\x2f\x93\x55\x15\x23\xff\xc2\x81\xa6\x0d\x7b\x7d\x06\xa8\x48\x65\xd4\x03\xc5\x2e\xd4\xa2\xb6\xec\xab\xc4\x80\xe9\x58\x40\x58\xb1\x1a\xa6\xf5\xae\xe2\x5e\x3a\x3b\xf6\x55\x1f\x33\x30\xaf\x51\xec\x06\xae\x6e\x58\xbd\x77\x34\xf1\xfe\x66\x42\xc5\x39\xf9\xa3\x4a\x9d\x9f\xaa\xa8\x71\x98\xf5\x5d\xc6\x2b\x50\x36\x7f\x1b\x67\xb5\x53\x4f\x46\x69\xdb\x66\xd3\x1e\x70\xf2\x7d\xc4\x98\x52\x30\x29\xbe\xc2\xd5\x4b\x1c\xd4\xe0\xfb\xbe\xc8\x62\x57\x6d\x91\xc1\x14\x1b\xdd\x35\xa8\x5c\xa1\xb1\x56\x6e\x98\xda\xe7\xc0\xd2\x95\x52\x0c\x38\x5c\x28\x79\x6e\xbc\x51\x92\x51\x2a\x3c\x07\xe2\x21\x89\x39\xb1\x50\x44\x71\xc8\x17\x66\x3e\x53\x89\x0d\xb8\x89\x66\x7c\x47\xfc\x1e\x39\x29\xec\x98\xb7\x69\x79\xb2\xe4\x99\x12\xb7\x62\xa8\x06\xb7\xeb\x6b\x82\x8c\xfd\xcd\xb6\x19\x0c\xad\x19\xd1\xe3\x75\x74\xb8\xc5\xc5\xf1\x89\x6a\x06\x45\x76\x35\x44\x89\x0e\xb7\x7a\x54\x65\x56\x47\x6b\xa4\xf2\x17\x8b\x80\xa9\x97\xda\x0c\x1f\x72\xd2\x77\x8b\xb3\x0e\x6b\xb8\xf9\x95\xcf\x1d\xc4\x88\x11\xc4\xae\x54\x2d\x7b\xdf\x79\x4d\xa4\x7a\xbe\x12\x9e\x51\x7e\x92\x32\x04\x52\x69\x90\x43\x08\x96\x8f\x6b\x92\xd6\xa6\x59\x4a\x56\xec\x8c\x9f\xae\x7e\xa4\xb5\x49\x68\x67\xbf\x0b\xc8\xd5\x1c\x41\xf1\xa5\x42\x88\xb8\xf9\x52\x9e\x6b\x66\x36\x1d\xda\x38\x0f\x63\x44\xe7\xcc\xeb\xaa\x90\xd2\x3a\x73\xba\x52\x83\x3c\x6b\x66\xa3\xa5\x28\x1c\x20\xfe\x11\x92\xc7\x86\x9b\xce\x3a\xe9\xe2\xe4\xae\x69\xdb\x28\xec\xe6\xc8\xe4\xa4\xbe\xee\x41\x45\x75\x79\x7a\x33\x33\x2b\x65\x42\xdc\x77\xb0\x66\xf9\xa4\x52\x08\xfb\xda\x1c\x57\x53\x1a\x1e\x84\x0c\x81\x14\x61\xf8\xdf\xfc\x23\x7b\xe7\x9a\x59\xf1\x04\xa6\x14\x6f\xe3\x55\x24\x0f\xf0\x3c\xa0\xb8\x7f\x98\x8b\x5f\x58\x68\xae\x85\x36\x82\x5e\x21\xde\x1d\x50\x68\x08\x35\xa6\x5b\x25\xad\x1f\x29\x8e\x0d\x46\x59\x3f\xf5\x4a\x8b\x08\x07\x0e\xa3\x68\xc0\x27\x0e\x9f\x41\xf4\xd6\x61\x11\x19\x4d\xa3\x33\xa9\xd4\xf4\x67\x28\x25\x43\xea\x74\x5c\xb7\xf4\x2f\x97\x3a\x8a\x9d\x30\xdf\xe9\xd1\x53\x47\xc6\x1e\xde\x7f\x32\x50\x66\xed\x63\x46\x90\xa1\x9e\x71\x4e\x23\x09\x3e\x0e\x7c\x77\xf8\x43\x32\x48\x68\xe9\xdf\xd2\x3a\x8b\x57\x55\x13\xe8\x9f\x6d\x45\x59\x90\xbf\xcb\xf1\x19\x14\x79\x42\x92\x0a\x98\x02\xb9\xda\x6d\xc5\xbf\xc2\x15\x56\xc9\xd4\x3d\x54\x2e\x4d\xec\xd2\xa8\xbd\xac\x55\x46\xcf\xe9\x38\xfb\x5c\xb0\xb9\x6a\xf7\x5c\xb3\x93\x34\xbc\x70\xf1\x11\xec\x10\x51\x03\x79\xd4\xf9\xed\x57\x20\x4f\x7d\xc0\xbd\x25\x55\x3e\xbf\xe8\xc6\x47\xdb\x49\x94\xa4\x91\xcd\xb2\x98\x8c\x84\x02\xd2\x68\x80\x8d\xb7\x40\xc9\x20\x44\x42\xb1\xe0\x87\xaf\x5c\x84\xc7\x23\xaa\xc2\x8e\xbd\x19\xb1\x4f\xfc\x68\xb6\x9f\x86\x71\x6f\xd5\xa6\xcb\x56\xf1\x4a\x7d\xa6\xc7\x74\x3e\xab\xac\xff\xb9\x83\xcd\x81\xe9\xc5\x96\x77\x99\x93\x53\x73\xc3\xb1\x17\x2b\x0d\x95\xbf\xdf\x5c\xf5\x9b\x4c\xca\xc5\x74\x79\x52\x47\x76\xb2\x0e\x91\x49\xc3\xd8\xe6\xd3\xbe\x0e\xf0\x7b\x63\xb5\x66\xb7\x4e\xca\x12\xb0\xce\x4c\x3f\xd2\x52\x39\x4c\x64\xad\x57\x0e\x05\xc0\x08\x8e\x84\x8f\x5d\x49\x2b\xb2\x26\x16\x0c\x86\xc8\x15\xd3\x45\xf2\xc9\xf8\x29\x25\x9b\x92\x0c\x92\x9c\x74\x3e\x66\x14\xe8\xf9\xa3\xb1\xef\x69\x9c\x51\x08\x5a\x0e\xf4\x45\x2a\x1a\xab\x5e\x58\xd0\xcb\xc2\xe2\xa9\x30\x4f\xe0\xbf\x8f\xab\xcc\xec\xb8\xa2\x76\x8f\x6d\x2f\x0a\x7b\x8e\xd2\x0e\x3b\xf2\x8d\xc0\xef\xce\x37\x6a\x2c\x07\x3c\x5a\x43\xf1\x42\x5c\xd4\x4a\x3c\xd5\xca\xd6\xa1\xd9\x97\x48\x8d\xdd\xe1\x36\xe7\xe7\x6b\xa6\xa7\xf7\x2d\x34\xbb\x11\x28\x77\x14\x3d\x7a\x39\x3c\xd8\xe3\x12\xdf\xdc\xa6\x2b\xa1\x5d\xcd\xa6\x7d\x61\x78\x63\xac\x60\x23\x3c\x4a\x4f\x2f\xe7\xcd\x27\xc9\xde\x20\x3a\xdf\x50\x8d\x2e\x13\xe7\xe1\x37\x46\xba\x2b\x8a\x54\x8c\x8f\xcb\x70\x4d\x1b\x97\xf1\x63\x78\xfc\x52\xd2\xa9\x36\x2a\x5e\x6a\x76\xc2\xd4\xb6\xd1\xec\x11\x7b\xe2\x11\xb3\x55\xe4\xff\xa1\xd9\x66\x9e\x86\xed\x65\x34\x09\xc5\xd0\x15\x06\x8c\x8f\x2b\x70\xd8\x22\x8d\xea\x24\x53\x4a\x7b\x04\xc8\x29\xf8\xcd\xbf\x0c\x34\x85\x9e\xdf\xe2\x59\xdb\xc6\x76\x9b\x07\x19\x1e\x0d\x3c\x9f\xfc\xcf\x14\x96\xf8\x28\x39\x20\xfe\x77\x00\x44\xf9\x3f\x02\x15\xf3\x1c\xad\xc4\x3c\x98\x03\xa0\xb7\x83\x5d\xa0\x58\xe8\x5e\x52\x1a\x7f\xee\x2d\xe4\xb9\x09\x79\xcb\x38\x38\x3d\x3d\x29\x81\xd6\x7b\x88\xef\x52\x32\x58\xca\xfa\x36\x8a\xa6\xe8\x7a\x10\x8f\xbd\x4b\xf9\x21\x84\x9a\xd0\xab\x11\x90\xcb\xe7\x9d\x15\x8c\xf3\xd4\xb4\xed\x30\xf7\x13\x65\xaa\x6d\x7b\xc0\xb5\x6d\x7f\xf1\x21\x45\x36\xef\xcd\x14\x71\xd0\xe5\xa0\xe4\xba\xb4\xaf\xc8\x86\xdc\x43\xc1\x13\xbb\x41\x96\x82\x8f\x83\xcf\xb9\x55\x4c\x10\xbd\x30\xee\xf1\x64\x3f\x02\xbd\xb7\x02\x05\x3c\x7a\x4b\xbf\x38\xd3\x5e\xce\xd0\x6e\x12\xb9\x29\xba\x78\x64\x7b\xdf\x54\xf5\xe1\xb3\x8a\x3b\xe2\xae\xb7\x4c\xc5\xf5\xe7\x8d\xc6\xd7\xbf\xea\xd5\xde\x8b\x5f\xe2\x93\x4a\x19\x06\x3c\xfd\xc3\x64\x14\xa3\xac\xe6\xa6\xcc\xfc\xc4\x59\x4d\xbd\x7d\xb1\xb0\x80\x52\x2f\x07\xaa\xf7\x84\x9a\x5f\x39\xa1\x92\xc2\xcc\x44\x2b\xa6\x93\xa4\x26\x6e\xa8\x4e\x0c\xdf\x95\x88\xb4\xf9\xa6\xc6\xd2\x28\x8a\x30\xb7\x21\xb4\x04\x7e\xae\x1a\xdc\x3a\x42\x51\xaa\xd0\xb1\x61\xb7\x4b\x08\x99\x35\xb0\x65\x22\xbc\xbc\x8a\x39\x60\x31\xb1\x34\x8e\xa9\x6c\xec\x82\xfc\xd9\x5f\xc7\x40\x65\x4d\xda\xee\x7b\x69\x4a\xb8\xfe\x7b\xb8\x76\x18\x24\x16\xcd\xe6\xe9\xd3\x9a\xe6\x74\x73\x18\xd1\x14\x35\xbe\x01\x49\xc7\x87\x63\x85\x80\xff\xb0\xb6\x09\x94\xdb\x28\x6a\x78\x61\x58\x56\xb8\xe7\x93\xd2\x04\x42\xbb\xc3\xa3\x35\xae\x95\xe7\x29\x05\x4e\x8e\x55\x1b\xee\xae\x22\xbb\xee\x9a\x41\x18\xad\xed\xae\x4c\x6a\xa2\x55\xba\x93\x46\x5c\x11\x32\x22\x67\x87\x71\xbe\x8c\x52\x05\xe8\xff\x38\xed\x74\x1c\x28\xbe\x58\xfa\x11\xe5\x54\xd8\xab\x6f\x04\x6a\xa4\xff\x6d\xf4\x05\xf8\x64\xec\x7d\xf5\xaf\x2b\xbc\x08\x0f\xae\x3e\x4c\x03\x69\x7e\xbe\xd9\x09\xb3\xbe\xa2\xc9\xf9\x1e\x99\x03\x29\xa6\x54\xe7\xc5\xda\x26\x4c\x6d\x6c\xe5\x25\xa2\x05\x75\x2f\xa8\x46\x6b\x32\x18\xe2\x79\xfd\x93\x25\x3f\xbf\xd4\xf0\x19\x0d\xe6\x79\xf9\xb8\x52\xac\x2e\xb6\x94\x19\x86\xb9\x97\xcc\x78\xc9\xf1\x4f\xd1\x23\xe3\x13\x47\x04\xdc\x31\x6b\xbc\x3e\x36\xd0\xc0\xdd\xb8\xa5\x8a\x89\xed\x24\xee\xd8\x01\xff\x7e\x89\x18\x9c\x4f\x6a\xaa\xe5\x0b\x45\xaa\x41\xf5\x8d\x08\xad\x7a\xaf\x2f\x39\xeb\x3a\x89\xd5\x21\xde\xfd\xcd\xdc\xa4\x3d\xeb\x67\xbb\x1c\x38\xdb\xc7\x91\xaa\x05\xb4\xdc\x37\xb1\xba\x2a\xc6\x5c\xf0\x49\x8d\x1e\x0e\x7f\x3b\x17\xf0\x79\xad\x04\x0a\xfc\xf7\x91\xeb\x9a\x58\x93\xc6\x44\x94\xe9\x78\x55\x2e\xa1\x5c\x8b\x94\xf7\x08\x40\xd3\x30\x50\xb7\x54\xc3\xe6\x72\x25\xa5\x5d\x9c\x6d\x9a\x38\x4e\x46\x71\x5b\x22\x7b\x86\x3a\xd0\xaa\xc1\x22\xdd\xc0\x7b\xc1\x82\x3f\x56\x01\x32\x16\xce\xae\x37\xb2\x69\x1a\x46\x91\x61\xa3\x27\x9c\xc4\x0d\x45\x56\xec\xeb\x56\x59\x18\xa9\xda\xef\x37\x55\xed\xf7\x9b\xf5\x23\x75\xfd\x22\x26\x4a\xa2\x0e\x9b\x09\x86\x45\x8f\x95\xd6\xcb\xef\xba\xe5\xd2\x33\x61\x4c\x6a\x1e\x20\xc9\x9a\x41\x75\x42\x02\x3f\xda\x3c\x5a\xd4\x16\xcb\x94\x19\xe7\xf1\x5d\x77\xf1\xc5\x0e\xd9\xea\xf4\x93\x67\x5a\x1e\xa5\xdb\x36\xa9\x5d\x9d\x56\x53\x50\xeb\x41\xb9\xdb\x55\xfc\x90\x84\x46\xc5\x7e\x90\xe3\xcd\x37\xe8\x70\xa0\xc3\x61\x64\xa7\x7d\x2e\xbe\x31\xde\xfa\x8c\xe7\x52\x5f\x9c\x75\x5c\x0c\xca\x61\x6d\x6b\xf9\xc2\x54\x64\x56\xb3\x51\xc8\x93\xd6\x18\xb7\x42\x0d\x8b\x8f\x3d\x49\x2a\xb1\xde\xa3\x40\xcc\xb5\x7e\xe5\x2b\xa1\xa9\x25\x11\xa4\x0f\xd4\x93\x34\xec\x85\xb1\xc1\xbc\xf5\xa1\x59\x8d\x60\x17\xa1\x91\x37\xc7\x3b\xdd\x2b\x5e\xa2\x0e\x89\x93\xf4\x3f\xf0\x2f\xbf\xc6\x7f\x74\x5f\xc9\x86\x55\x93\xf2\xe7\x9a\x7d\x1b\x0d\xcb\x39\xcd\x49\x9d\xd3\x9c\x54\x38\xbd\x61\x6a\x73\xe8\xbb\x16\x9b\x51\x43\x77\x04\x95\xb3\xd9\xda\xcd\xcf\x37\xdb\x04\x9f\xcb\xa6\x15\xa2\xe3\x18\xc2\x32\xbc\xfc\xf1\x58\x17\xca\x36\x02\x35\x61\x74\xa5\x8e\x88\x50\xeb\xdb\x4e\xa9\x40\x8a\x4b\xab\xc8\xdd\x2e\x73\xa8\x0c\x73\xfe\xbe\x52\x22\x5e\x4a\x46\xa8\x78\xa0\x01\x70\x9d\xde\x18\x1f\xab\x0a\xf5\xaa\x89\x84\x36\x06\x4d\x60\xcc\xb3\xf0\x71\x20\x54\x35\xe1\xc0\xb0\x19\x47\xd5\xe3\xa4\x1a\x36\xe0\x8a\x32\x10\xa8\xf7\x14\x20\xd6\x44\x4b\x36\xcd\xcd\x54\xb1\x48\x9d\x7e\xfa\xde\xbd\x6c\xfc\xaf\x2a\x8a\x9b\x0b\x4a\xe4\xaa\x9b\xda\xac\x4f\x19\xb5\x6a\xbd\x1d\xd7\x34\xb7\xc7\x1d\x1d\xda\x92\x09\x39\xad\x45\x95\xeb\x4d\x85\x37\x7f\xb3\x62\x4f\x8a\x97\x94\xc4\xdd\x30\x66\x10\x92\xdb\xa4\x87\x95\xd6\xc6\xe1\xfa\x2e\x63\xfb\x35\xdb\xee\xa3\xee\x29\x54\x22\x1e\x68\x76\x51\x89\x84\x9f\x51\x03\xaa\xf6\x55\xd3\xce\xa3\xb5\x19\x3f\xc6\x0e\x35\x09\xa4\xc0\x57\xe8\x1b\xf0\x3c\x6f\xa8\x0a\x3d\xda\x0c\xc2\x36\x53\x23\x69\xdd\x4e\x68\x18\x94\x29\x8f\x60\x4a\x0f\x2b\xb3\x7a\x58\x59\xc4\x7f\xf6\x4f\xff\x31\xc1\x6d\x44\xc4\x8b\xee\x40\x24\x65\x6a\x2a\x57\x79\x6a\x25\x88\x77\x5a\x28\xc5\xf3\x15\xdc\xd0\x1e\xc5\xb2\x36\x4c\xd2\x9c\xf1\x65\x68\x20\x83\x6e\x90\x8f\x55\xdb\xbe\xdd\x37\x83\x21\x51\x5b\xfa\xaa\xbb\xd2\x5e\x3d\x5b\xd7\xf8\xcb\x72\x9b\x46\xc4\x67\xef\xd0\xcd\x10\x55\x01\x02\xf0\x93\xb2\x34\x79\x8d\xe2\x75\xd6\x4f\x52\x0b\x6d\x4a\x47\x4b\x7d\x2a\xf0\xa1\x5d\x75\x62\x03\xd2\xda\xc3\xbc\x51\x2c\x52\x89\xa8\x8b\xf7\x25\x91\xb6\x9e\xe3\x89\xac\xe0\xdf\x60\x8b\xae\xa9\x72\x32\x07\xa7\xc2\xbe\xe0\x99\xeb\xe3\x15\x45\x45\x7a\x84\xbe\x9b\x8f\x2b\x51\xc1\xe2\xec\x62\x73\xc9\x76\xc3\xdc\x47\x05\x75\x9c\x15\x9b\xc3\xb4\x83\x2f\x10\x03\xfa\x94\xd7\xf8\x84\xb4\xa9\x16\x55\x82\x63\x3f\xac\x52\xbf\x41\x12\xe7\x4b\x62\xf1\xf6\x6b\x3d\x19\x77\x12\xc8\xac\x69\xdb\xe4\xa4\xd8\x32\xec\xa3\xfa\xc8\xfb\xe1\xb8\x32\xf5\xdb\x5a\x3e\x51\xbc\x8a\x6f\x41\x8d\xcd\xc3\x33\x7a\x26\x5d\x22\x78\xc6\xc2\xc2\x06\xb4\x34\x45\x41\x50\x49\x0f\xbc\x51\xd9\x8b\x8b\xb3\xc5\x16\x6e\xdb\x0e\xe0\xc1\xc2\x7b\x48\x57\x2d\xd8\xd8\xa7\xf4\x12\x2d\x92\x09\xcf\x2c\x8e\x57\x75\x5a\x69\xe7\x9e\x56\x92\x8a\xb9\x4d\x07\x61\x6c\xa2\x4c\x99\x06\xa8\x69\x49\x41\xdd\x37\x29\x07\x36\xdf\xa1\x58\x22\xaf\x04\x7a\x2d\x1c\x57\x73\x09\xb7\x75\x5d\x8f\x79\x6c\xe1\x7c\xdf\x50\x13\x2c\xe7\xe0\x29\xf8\xaf\xb4\x70\xd9\xb9\xda\x95\x11\xc6\xd9\x30\xf4\x5c\xd4\x30\x2e\xe7\x94\x46\xd4\x66\xea\xf7\xd5\x3d\x74\x19\xdc\xa5\x01\xb8\x1d\x8d\xdb\x63\x4a\x38\xe7\x77\x4e\xd3\x06\xe1\xe3\xb1\xe2\x94\xb8\x50\x9a\x64\xa0\x8b\x95\xb2\x08\xee\x1c\x41\x11\xe6\x52\xff\x5f\xca\xfe\x34\x48\x92\xf4\xbc\x0f\xc3\x67\xab\xbb\xe7\xd8\xfb\x02\xf0\x97\x14\xff\x60\xc9\xa2\x0c\x2a\x02\x04\xad\x08\xda\x1f\xf4\x25\x3b\x66\x1a\x58\xcc\x04\xd5\xdb\x31\x3b\xdc\xa1\x37\xf4\x61\xdf\xae\x7a\xbb\x2a\xb7\xb3\x32\x0b\x99\x59\xdd\xdb\x6b\x7f\x70\x28\xfc\xc1\x07\x43\x21\xdb\x0a\x53\x52\xf8\x90\x82\x61\x2a\x24\x8a\xb4\x4c\x89\xa2\x48\x48\xac\x06\x09\x82\xc2\xb1\xc0\x62\x2f\x60\xef\xd9\xb9\x67\x77\xee\xfb\xec\x71\xe4\xfb\x7b\x9e\xf7\xfd\x65\x67\x8e\x2d\x7f\xc1\x66\x62\xaa\xab\xf2\x78\x8f\xe7\xf8\x1d\xe8\xb8\x5d\x8b\x98\x70\x81\xf7\x8a\xca\x17\xf4\xe0\x3c\x15\x82\xf5\xa4\x08\x70\xf6\x09\x38\xdd\x80\xcf\xdd\x75\xa1\xbf\x46\xa1\x9d\x85\x43\x12\x6b\xbd\xe5\xf7\x82\x3c\x2b\x36\x66\x6b\xda\x3b\xe4\xf5\x03\xe4\x09\xf6\xcc\xa7\xe6\x43\x1d\x6a\xf7\x66\x58\xad\xd7\x6d\xb2\x62\x72\xdb\x21\x7e\xf0\x09\x6a\x95\x9c\xf0\xfc\xa8\x72\x38\xc9\x8b\x2a\x79\x98\xc5\xad\x4b\x58\x55\x37\xce\x0a\x7d\xea\xe3\xac\xd1\xf9\x5e\x9b\x54\xf5\xcf\x77\xed\xc8\x8a\xfe\x19\x38\x83\x27\xd8\x41\xed\x84\x0f\x41\x8b\xf1\x24\x9d\x73\xc9\x23\xb6\x0a\x31\xaa\x6a\x0d\x0d\x29\xe6\xbe\x4c\xd2\xb4\x9f\xd4\xc5\x71\x47\x19\x89\xe8\x9e\x9c\xd6\x18\x3e\xa4\x71\x69\xf3\xd8\x16\x8f\xe0\x76\x55\x67\x9f\x52\x01\x10\x24\x84\x64\x84\xe7\xae\x38\xa1\x8e\xb7\x0e\x9d\x61\x51\xdc\xdf\x63\xbd\xb8\x7f\x40\xfe\xd4\xb3\x20\x84\x60\x0f\x3f\xe3\xde\x34\xe2\x85\x5b\x78\x24\x78\xb9\x4f\xcf\x07\xd4\xd4\x5a\x5c\xc4\x65\xa7\x1a\x1e\xea\x62\x51\x7d\x9b\x1c\x47\x7b\xe2\x2a\x9c\x5b\xf9\xeb\xdd\xe1\xcf\x55\xd7\x88\xeb\xbd\x58\xf3\xac\xfa\x12\xc4\x5a\xd1\x92\xdd\x81\xc6\x3e\x1a\xe7\x3b\xd1\xb1\x80\xf9\xea\x2f\x12\x05\xa5\xb3\xe9\xde\x02\x1a\x9d\x0f\xcd\x43\x0d\x0a\x5b\xf9\x93\x10\x38\x14\xa1\xa9\x28\xc8\xa5\x6e\x39\x1d\x33\xa4\x69\x1f\x38\xf9\x30\x6d\x79\x93\x4c\xe9\x0d\x48\x30\x7a\x00\x6f\xe8\x4f\x5c\x42\x22\x86\x19\xdc\x71\x71\x84\x9b\x34\xff\xd9\x33\x9b\x9d\x5f\xfd\x86\x3c\x97\x2b\x44\x27\xbd\xc0\x83\x63\x6e\xde\x89\x64\x79\x93\x88\x83\x7b\x95\x7a\x0f\x79\x01\xec\x09\x97\xdd\xc2\xb0\x05\x5b\x13\xaf\xf0\x58\xbd\x67\x2d\x61\xba\xc9\x8a\xda\xe1\xc3\x90\x2f\x55\xf9\x9c\x8e\xb7\x09\xbe\x42\x8e\x5b\x4f\x3b\x74\xb1\xfb\xc8\xeb\x5f\x9c\x57\xec\xdf\x7a\xec\x45\x33\xe4\x5a\xdd\x45\xe8\x75\x07\x6f\xc3\x81\x19\xef\x74\x8f\xd3\x37\x4c\xbc\x54\xe8\x5b\x28\x7d\x28\xee\x3b\x8c\xf0\x53\x6e\x5f\x45\x93\xea\xb4\xbb\x2c\x74\xcd\x6f\xd7\xf6\xef\xac\x28\x1e\x0b\x82\x62\xff\x10\x0f\x97\x24\x94\x95\x38\x00\x95\x1f\x7c\xc3\xc9\x29\x55\xc8\x3a\x9b\x24\xf7\x79\x91\xcc\x92\xde\x21\xc1\xc3\x3f\x9e\x12\xc8\x45\xa4\x5c\xd1\x19\xb9\xca\x22\x69\xc7\x08\x28\x2c\x4a\xcc\xaa\x6a\xb7\xbd\x11\xb4\x70\xa8\x6b\xfa\x6b\x36\x2f\x63\xc2\xd2\x0b\xb1\xc7\x3d\x44\x25\xf9\x6c\x43\x93\xec\xdb\xd7\x7d\x71\xef\x73\x8f\x92\xb4\x3d\x12\x26\x54\xcc\x3f\x70\xd7\x8c\x0b\x00\xf2\x14\xc3\xf1\x53\x40\x10\x24\x62\x40\xcd\x00\xcb\xdd\x9f\xb8\x27\xab\xe0\x31\x02\x04\x7c\xe2\x42\x59\x70\x86\x2e\x3b\xf4\x8c\x06\x69\x44\x74\x3f\x85\xd5\x43\xe5\xe8\xda\x7c\x13\x96\x4d\x92\x6c\x0c\xb3\xac\x6e\x03\xf8\x29\xd9\x00\x7e\x4a\x71\xae\x4d\x46\xa0\x7d\xab\x7a\x7c\x48\xae\xff\x1d\xe9\x2f\xca\x1a\xe9\xa1\xc6\xde\xf5\xe5\xdf\x61\x12\x2a\x56\xa4\x21\x86\x73\x70\xa9\xbb\x62\x13\xc1\x87\x63\x71\xfa\x94\x01\xaf\x9f\x52\x2d\x35\x31\x7d\xb0\x48\x35\x5b\xac\x33\x40\xbc\xf4\xd0\x3b\x54\xba\x7d\x67\xda\x7d\x40\xfa\xbe\xe2\x42\x98\x78\x52\xa0\x45\x82\x2a\x12\xa8\x2d\x72\xec\x65\x40\x6c\x62\x96\xb3\xdc\x84\x88\x51\x45\x62\x43\x7a\xf2\xed\x69\x10\x2e\x19\x9b\xde\xea\x2c\xd5\x16\x4e\x44\x2d\x22\x47\xf2\x4f\xdc\x49\xbe\x40\xa4\xed\x22\x71\xb4\xe8\x19\x2a\x41\x21\x0c\xc1\xd2\x7a\x99\x7c\x86\xdf\xa2\xe2\x9a\x58\x12\xa6\x4f\x73\xa7\x47\x1e\xa8\xda\x47\x53\x50\xb7\x63\x3e\x08\xf9\x75\x64\xb5\xf5\x0b\x87\xa7\x89\x09\xfc\x19\x84\xc1\x3f\x8b\xa8\xd9\xbc\x1b\xf2\x84\xde\x42\xe8\xeb\x87\x25\xf5\x90\x59\x28\x02\x2d\x9b\x41\xb8\x59\x1a\x97\xf2\x5d\xe4\x54\x0e\xd8\x23\xd6\xe7\xc7\xb0\x71\x78\xfd\x90\x5f\x79\xc1\x73\xdc\xab\xc9\x81\x7e\x78\x33\xbb\xf1\x74\x90\x1e\x58\xbd\x0a\xdb\xa4\xfd\xed\x1d\xd6\x57\x70\x45\xfc\x0e\x8b\x19\x87\x02\xc0\x4f\x29\xdf\x1e\x3a\x25\x40\xf8\xad\xa3\x57\x7d\x8f\x34\x4d\x6e\x30\x24\x1b\xeb\xa5\xfc\x43\x44\x7a\x12\x3f\xc0\x5b\xd7\xa6\x60\x68\xb6\x67\xbd\x32\x5b\xb6\xb9\x03\x0d\x78\x36\xdc\x41\x4d\xa6\x7e\x03\x24\x36\xac\xcc\x1f\xe0\xd1\xeb\xa7\xf0\x8a\xb5\x58\x14\x60\xd7\x62\x62\x82\xd2\xc5\x69\xae\x47\x62\x21\xf3\xf2\xf3\xd5\x05\x69\xdd\x49\x6b\x4d\xeb\x36\x1e\x0c\xa5\x61\x83\x6f\x98\x9b\x0f\xf6\xb8\xc0\xb5\xe1\xdd\x5f\xc2\xcf\x68\x08\xaf\x41\x5c\x6e\x8b\x78\x10\x78\xb1\x3e\xfc\xf5\xae\x37\x4d\xb4\xe7\xd2\xf3\x2f\x74\x87\x82\x3e\x5f\xaa\xf5\xb4\x15\xd7\x5b\x8b\xb9\xb3\x74\x86\x34\x7e\xce\x91\x17\xdd\x5d\x37\x68\x45\xec\x65\xaa\x70\x82\xd2\x26\x76\x64\xf2\x55\x57\x07\x9e\xa9\x01\xeb\xaa\x2b\xd4\x60\xa1\xe3\x59\x98\xd7\x89\x82\x58\x4e\xd2\xd4\x26\x05\x34\x20\x51\xe6\x39\x45\xd6\x34\xa7\x1a\xde\x51\x07\xf7\x76\xb3\x49\xe9\x0c\x1b\x54\x4b\xb0\x7a\x9d\x8a\x71\x08\xa6\x97\xc7\x1a\xad\x80\xfd\x8b\xdd\x49\x31\x04\x50\x1d\x89\xda\x69\xce\xda\x9a\xd5\xb1\xc5\xc5\xa5\x6e\x11\xe7\x36\x95\x3d\x5f\xc3\x5a\x8a\x7b\x4e\x90\x75\x47\x9c\x24\x93\x91\x94\x04\x67\x88\x8f\xf8\x13\x52\xeb\xb9\x1c\x31\x9f\xc7\x97\x20\x87\x26\x37\x45\xe1\xb2\x5f\xa4\x1a\xb7\x23\xe2\xca\x1f\x27\x47\xbd\xa6\x93\xeb\xa1\xe7\xbb\x06\x38\xd5\x4e\xd0\x52\x80\x7a\xb1\xb2\xf4\x42\xd0\xb9\x9a\x66\xeb\xc5\x4c\xf0\x96\x79\x7b\xca\xfc\xe4\xd0\x3b\xbb\x4a\xf9\xa5\x59\x49\x4c\x99\xbd\x1a\x4b\x47\x4e\x0b\xfb\xee\x91\x68\xc5\x9f\x0c\x7c\xbf\x39\x31\x39\x20\x58\x18\x35\x6f\xb8\x17\x84\x35\xec\xb6\x8b\x71\xc4\xc7\x34\xda\xbe\x75\x88\x23\x62\x5a\x64\x49\xdc\x57\xe3\xaa\x85\x1a\x29\x49\x8e\x1b\xe5\xa5\x7d\xfb\xba\xb9\x55\x4d\xc1\x10\x18\x62\x62\xa8\xea\xfa\xf6\xb1\xb4\x7f\xb1\xdb\x17\x8f\x4e\x84\xdd\x52\x3a\x90\x13\x4f\x3e\x59\xb5\x89\x74\x63\x11\x86\x0b\xed\x51\x4e\x48\x33\xbe\x98\x8c\xc7\xc9\x86\x9b\x9c\x01\x0c\x55\x27\xad\x87\xf5\xd1\xf6\x07\xe2\x5e\x28\x42\xe2\x0c\x60\x22\xaf\x8c\x78\xe0\xe3\xa5\x36\xa7\x91\x80\x7f\x30\xbd\xde\x24\x37\x3d\xa1\x0d\x22\xe7\xfc\x36\x15\xe5\xbe\x4d\xe2\x5f\x63\x6b\xf3\xb9\x1a\x01\xa5\x9a\x51\x3e\x4f\xf5\x39\x33\x62\x0d\xad\x82\x04\x68\xee\x0d\xd2\xea\x85\xec\x91\x93\xd0\xa8\xbe\x50\x1b\xae\x01\x3a\x86\x3c\x0e\xdb\xca\xf5\x88\x60\x64\xac\xa6\x07\x2b\xb5\x5c\x6a\xc6\xd8\x4e\xce\xd1\xc0\xbf\x15\x05\xcf\xc2\x13\xf4\x77\xb9\x4d\x7c\xe4\xb0\xa4\xa5\xc8\x88\xcb\x92\x2d\xeb\xc0\xfa\xd0\x94\x73\x81\xb0\x02\xd5\x21\x7d\x45\x9d\xc3\x4a\x7f\x9a\x73\x10\x77\x6f\x4b\x78\xd8\x8b\x00\x5f\xf1\x49\x75\x92\x0d\xe2\xa2\x8c\x7b\x9a\x54\x03\x97\xf1\x5b\x53\x0a\x58\xcf\x90\xe6\x84\x40\xa7\xe5\x53\x8d\x61\xbc\x7f\xb1\x6b\x5f\x1d\x1b\x92\xc6\xc4\x72\x70\x93\x88\x45\x37\xdb\x98\xfc\xcb\x8e\x5e\xe5\xe9\xaf\x8f\xcd\x87\xd7\x7e\xc5\xcd\x3f\x84\x1a\x92\x8c\x22\x45\xfa\x8c\xaa\xd7\xbd\x24\x1e\x3b\x82\x71\xa7\x86\x4b\xaa\x21\x96\xb6\xff\xac\xf3\xfa\x2f\x50\xd1\x42\x82\x26\x6a\xea\x72\xd2\x62\x55\xb5\xd0\x1d\xe7\xd9\xd8\xa2\x55\x2d\x84\x31\x82\x26\xff\x70\x1a\x7c\x0b\x37\x4c\x51\xe6\xaf\xd9\x51\xb1\x1a\x77\x6a\x4e\xd6\xae\x06\xa4\x11\x5d\x0b\x6a\x12\x7a\x9f\x44\xc3\xff\x56\x14\x1e\xc0\xb7\xa8\xcc\xfd\x8a\xe9\xad\x9a\x44\xc0\xfd\xd8\xc1\x8f\x45\x84\x23\x3e\x46\x86\xe7\x66\x90\x99\x82\xf4\x7a\xde\x64\xfb\xd4\x37\x1b\x97\xb1\xb8\xd8\x1d\x9b\xb1\x33\x33\xa9\x3e\x86\x90\x40\xed\x08\xe5\xac\x2e\xc5\x92\x43\xaa\x18\xe1\x27\x34\xb8\xe4\x78\xb3\x26\x23\x1f\xcb\xee\x8c\x9c\xed\xbe\x7b\x78\xaa\x3d\xef\xae\x1d\x15\xef\x5d\x9b\x4d\x0a\xe2\x42\xb5\x73\xae\x38\x88\xa7\xfb\x0a\xec\xc6\xd8\x5c\xb0\xea\x80\xa6\xa0\xf5\xdf\xa7\x69\xa9\x8a\x1d\x31\x0c\x5d\x4a\x46\x3c\x6b\x99\xea\x41\x4c\xb4\x6c\x35\x5b\x36\xe9\xaa\xbb\x37\xe5\x24\x13\x3b\xfd\x42\x0b\xfc\xfc\xa0\xeb\x76\x4c\x82\x55\x94\x17\x0f\xf0\xc6\x69\xe7\x1a\x18\x88\x83\x7b\xbb\xfd\x6c\xb2\x5c\xce\x56\xaf\x1d\x59\xef\x65\xc2\x0b\xfd\x9b\x28\x78\x69\xe2\x8b\x94\x68\x45\xaa\x3b\xd9\x7a\x2a\xe4\x1a\x00\x37\x04\x3c\x26\x3b\x17\x39\xeb\x5f\xac\xcb\x54\xb5\x85\x0d\xeb\x79\x5c\xda\x9c\x2d\x18\x3e\x61\x88\x39\x09\x27\x7e\x73\x12\xa7\x89\x01\x32\x08\x79\x25\x64\x81\xe4\xb8\x55\x88\xd3\xc4\xb9\x47\x06\xe3\x06\x4f\x93\x53\xe3\x69\x32\xd2\x5a\xb1\x36\x41\xb4\xa9\x5c\x49\x06\xc6\x1e\x43\x90\xaa\xee\x21\x94\x79\x1c\xf3\x01\x67\xb1\x6e\x92\x24\x5b\xd7\x74\x16\x51\x21\xd2\x59\x39\x6e\x41\x7b\x75\xd7\x4d\xe9\x90\x30\xd8\x8b\x50\xf3\x54\x47\x2a\x39\x6b\x03\x49\xa7\xd6\xf6\x81\xdf\xf3\xe2\x33\xfb\x6b\x54\xc1\x97\xbc\x52\x06\x85\xd7\x57\xdb\x23\xb7\x32\xcb\xad\xf4\x35\xc5\xb7\x11\x35\x3a\xac\xc4\xaf\xcb\xd5\xa0\xe5\xb9\x0b\xe5\x33\xed\x20\x34\xe1\x8a\xcf\x75\x0b\x9b\x96\x33\x81\x1a\x27\xf1\x39\x26\xf3\x2c\xab\x33\xde\xa0\xfc\xfe\xf9\xaf\xbd\x80\x47\xe0\xc3\xba\x50\x4e\xbe\xdd\x82\x10\xc4\x76\xa6\x0f\x5b\xcd\x47\x43\x11\xf8\x54\xa3\x65\x54\x8d\x87\x6c\x65\x25\xf6\xc6\x62\x18\xa3\x77\x49\x52\xf6\x2e\x2b\xdf\xac\x1b\xf2\x47\x3f\xcf\xfe\xe8\xe7\x1f\x28\xc9\x54\xc4\xa3\xb1\xe0\x41\x31\xe1\x61\xb2\x2b\xc7\x9b\xe1\xdb\x93\x0d\x64\x7c\x98\x81\xdf\x67\x79\x88\xef\x37\xd8\xaa\x8e\x08\x91\xa5\xae\x28\xa4\x70\x53\x6d\x44\x51\x53\xaa\x71\x55\xfb\xf6\xf9\x52\x92\x5f\x23\x50\x42\x63\xbe\xcf\xe7\xa4\x01\x3e\xc8\xfa\xb3\xf4\x16\x76\x40\x62\x06\xef\xf1\x37\x69\x6b\xdd\xb1\x49\xf6\xea\xbf\xd9\x9c\x7a\x8e\xb7\x99\xe7\x4a\x57\xd9\x7a\xa3\xfa\xbd\xad\x37\xa2\x67\xea\x35\xab\x97\x5f\xee\x1e\x7a\x7e\x17\x49\x3f\x02\x59\x81\xee\xc9\x0c\x67\xe8\xf7\x59\x48\xe1\x9a\x8b\x5a\x90\x57\xfc\xff\x50\x8d\x55\xaf\x83\x50\x61\xdf\xb5\xd9\xd2\x74\xcc\xc6\x36\x37\xa5\x52\xcb\x89\x12\xf3\x92\x67\xd7\x87\x75\xce\xac\x9b\xbc\x3f\x1b\xa8\x10\xd2\xf5\xd3\xce\x5c\x75\x0d\x08\xd5\xc0\x2e\x17\xa4\x7d\x1b\x21\xd3\xb1\x6a\xfc\x2b\x90\x12\x82\x1b\xac\x5a\x4e\xe0\x30\xad\x67\xd0\xd0\xaa\x7e\x4c\x1b\x46\x1d\x2f\xcd\x79\xa6\xc6\x15\xef\xdb\xc7\xdd\x77\x22\x0c\xbc\x37\x25\xf1\x3f\xb1\x28\xc3\x4b\x96\x62\xa6\x7c\x8c\xc4\x15\xa1\xf1\xaa\x56\x74\x04\x67\x90\x25\x0f\x63\xf2\x3a\xca\xa7\xd8\x8b\x3e\x41\x99\x13\x60\xd4\x9f\xb9\x4a\x88\x18\x5f\x47\x41\x79\xff\x91\x79\x5a\xfa\x2f\x11\x27\x6e\xcf\xfc\x23\x3e\xb0\x28\xd7\x77\x11\x5a\xec\x3e\x4b\xd0\x5d\x96\x55\x07\x75\x46\xa8\xac\x23\xf6\x41\xf3\x0d\x65\xe1\xef\xd5\xb8\x56\xee\xea\x81\x18\xbc\x4c\x7a\x85\xa3\xac\xcc\xf2\x2c\x11\x11\x7c\xf4\xb1\x90\x66\xcb\x71\x8b\x03\xd6\xc1\x6e\x31\x19\x98\x1c\x31\x36\x6e\xe2\x04\x71\x75\x2e\x50\x4d\xfd\xed\x16\x11\x83\x97\xba\xaf\x98\xb1\x49\x6d\x21\xb5\x04\x2f\x65\x15\xfc\x3c\x28\x6f\x1c\x67\x45\x39\xce\x52\x7d\xe7\xe8\x00\x5c\x44\x55\x40\x4e\x88\xbb\x97\x16\xf6\x11\x86\x6a\x5c\x75\x19\x09\xe2\x3c\xb4\xa5\xb0\xf2\xdf\x9e\x86\x22\xcb\x4e\xac\xda\x08\x50\xef\x13\x36\x19\x4e\x58\xd8\x43\x1e\xc1\x6c\xc7\x0c\xff\x17\x53\x52\x5f\x3e\x1a\xd5\x4c\xec\x09\x25\x71\xd6\xd3\xfd\x8b\x72\x22\xc9\x17\x16\xe0\x4f\x68\x31\xae\xf7\xa4\xd2\x55\xe3\x72\x44\x4c\xe6\x53\x3c\xb3\x4f\x35\x02\x7d\x48\xdd\xc6\xe9\xaa\x9f\x3e\xf8\x4a\x28\xd4\xca\x71\x40\x28\x65\xa9\x29\x41\xcb\x47\x92\x72\x3d\xa2\x71\x7f\x69\xca\xf6\xeb\x6f\x7b\x9f\xa6\xa2\x17\x77\x08\xa8\x78\x26\x62\x3f\x80\xe0\x10\xdd\x37\xa9\xd0\xc5\xd1\xd3\x3d\x35\x65\x01\x92\x0b\x35\x20\x58\x23\x07\xa8\xe2\xed\x4c\x72\x00\x0c\x3b\x88\x22\xc9\x71\xed\x01\x99\x55\xfb\xa4\x2b\x9f\xeb\xc0\x73\x09\x15\xc6\xcd\x2c\x48\xb1\xa8\x6e\x3e\xbc\x19\xb0\xf9\x30\x05\x00\x40\xe4\x91\xcd\xe0\xce\x7d\x85\xa8\x3b\x77\xd9\xa9\xf2\x59\x57\x4f\x43\xa9\xee\x77\x90\x2c\x60\x0d\xdc\x02\x0b\x5c\x79\x21\xd5\xfc\xd6\x6c\x91\x5a\xfd\xef\x48\x90\xee\xd1\xd4\xd5\x62\x83\x19\x7a\x79\x4a\x4a\xc6\x5b\x6d\xe1\x4b\x2f\x2e\x15\x35\x88\x48\x02\xb6\x57\x5e\x9c\x3c\xb4\xb2\xb7\x1a\x81\xef\xd2\xc1\x25\x67\xc6\xba\x3e\xb4\xc9\xa8\x53\xab\xea\xd7\x6a\xff\x21\x7f\x29\x27\x79\x95\x75\xef\x24\xe0\xda\x45\x32\x3f\x83\xc2\x9c\xbb\x8e\xbf\xf2\x94\x5b\x68\x74\x29\xe7\x48\x36\xa4\xf4\x8f\x6f\x86\x42\x86\x19\x8f\x6d\x52\x05\x22\xb3\xa1\xec\x20\x04\x30\xdc\xfe\x49\x34\x58\x14\x51\x39\x13\x7c\x50\xef\x34\x38\x40\x0b\x87\x9c\x20\x71\xea\xd4\x05\x32\x8d\x09\xa5\x4a\x47\x5a\x57\xc7\xda\xf4\x4f\x12\xef\xaa\x8d\xe5\xf0\xfb\xb4\x34\x7e\x9f\x15\x74\x4d\x5a\x16\x73\xd5\x4b\xc5\x3e\xa9\x08\x33\xdc\xa7\xe8\x45\x28\x89\x23\x64\x39\x62\xfd\xac\x4e\x5a\x2d\x06\xb9\x89\x59\x2e\x66\x42\x88\xf0\x2f\x18\x8b\x8d\xb1\x8e\xf5\xb2\x6e\x3d\xf3\x6a\xe9\xda\xe2\x5b\x17\xab\x49\xb7\x75\xb1\xd1\x29\x3a\x70\xa0\x1b\xa7\x6b\xb6\x28\xc5\xaa\x8d\xbe\x73\x4a\xda\x95\xe7\x69\x39\x5d\xcf\xec\xb2\x1d\x64\x29\x26\x9b\xba\x5a\x75\xbc\x98\xc1\x1b\x54\x5b\x72\x7b\x7c\x27\x24\x91\x3f\x23\x4f\xbe\x9f\xb1\x1f\x13\x60\x74\x24\x2f\x73\x1e\x85\x47\xbd\x96\x16\x96\xe4\x5f\xfe\xc6\x7f\xbe\xf4\x8d\xaf\x2d\x3e\x4a\xaa\x24\x37\x5d\x1f\x5d\x5a\x97\x6e\x48\xe9\xfc\x77\xdf\xec\x8d\xb5\xab\x75\x18\xab\xf8\xf1\x69\x58\x2a\x9f\x24\x60\xc3\x25\xc6\x36\x4a\x92\xad\x52\xeb\x6e\xc4\x69\xc9\x3a\xc0\xb0\xae\x73\x12\x73\x95\xea\x61\x45\x19\x97\x93\xd2\x8a\xf0\x3f\xfe\x7d\x66\x13\xc3\x02\xfb\xbf\xec\x1f\x68\x65\xed\xd9\x0c\x48\xa0\xc7\xd0\x40\xd7\xbb\xd8\x3e\x2c\xbe\xd2\x1d\xc5\x79\xdd\x2a\xef\x1a\x72\x42\x39\x69\x0f\x1d\x07\x49\x96\x8d\x36\xc8\xfd\x0a\xa3\x5f\x8e\x6b\xea\x18\xc6\x5d\xf9\x4c\xf5\x58\x7d\x01\xdd\x1b\x7a\x5d\x64\x92\xc9\x0f\x3c\xc9\xa4\x97\x25\x89\x1d\x58\xe9\x2e\xe8\xa8\xe4\x69\xf0\x21\x06\xaf\xfc\x13\xbe\x45\xfe\x85\x6a\x83\xeb\x66\x35\xeb\x04\xf8\x1a\xaa\x77\x72\x3c\xdd\x16\xea\xfe\x8d\x2a\xd5\x7a\xa6\x7a\x97\x62\x68\x80\xc5\x0a\x48\xc1\xdb\xe8\x52\x29\x80\x9c\xc2\xa0\x2d\xb7\xfc\x62\x59\x75\x53\x44\xae\x69\x2b\xda\xa6\xcd\xe6\x43\x00\x59\x3d\xf1\x2b\x37\x11\xb7\xe9\x4f\xa2\xb1\x26\x6a\xaf\x53\x2a\xeb\x45\x81\xac\x0d\x87\xce\x60\xbb\x50\x3d\x07\x84\x8a\xc7\x5c\x78\x27\x79\x9c\x1b\x03\x62\xf2\x38\xa5\x52\xd8\x89\x29\xc1\x3b\xbe\x1d\x05\x9d\x88\x61\x36\x29\x6c\x2f\x81\x95\x3f\x76\x72\x05\x18\x55\x5f\xa5\xf1\xff\x83\xea\x23\xe3\x3c\x5e\x73\xcb\xac\x17\xb5\x42\xd4\x8d\x07\x88\x32\x1e\xca\xd1\x62\xa1\x20\x36\x15\x8d\x45\x56\xbf\x70\xcd\xa4\x83\x89\x9b\xfc\x8b\x8b\x5e\x39\x94\x6a\x55\x27\xc9\xf6\x85\x24\xa5\xab\xc7\x81\xd0\xe0\x0f\xdd\x9a\x26\xc7\x84\x7b\x4b\x12\x07\xf5\xf1\x72\x9c\xc8\xb5\xe4\x38\x0a\xd0\x87\xe5\x18\x10\x55\xad\xd0\x85\x4f\x5d\x20\xff\xa9\xd5\xb8\xb7\xba\x6c\x7a\xca\x09\xf2\xa2\xe7\xac\x6d\xde\xe2\xab\x5c\x0c\x4d\x9f\xfd\x47\xa4\x60\x2f\x27\xbe\x60\x9f\xf5\xac\x71\x80\xa3\x17\x7c\xa9\x93\x22\xf5\xcd\x80\x12\xf9\x98\x73\x9f\x47\x48\x19\xe6\x72\xab\xcf\x7e\x51\x9a\x95\x95\x6d\x00\x90\x19\x36\x4c\xd6\xa2\xc9\x38\xcf\x7a\xb6\x28\x6c\x7f\x36\xc0\x5b\x45\x68\x0a\xd1\xe6\xef\x92\x07\x84\xf0\x8b\x50\x8e\xdb\x6a\xa4\xc9\x0b\x87\xaa\xdb\xce\xc7\xc5\x30\xcb\x14\xb7\x8a\xec\x47\x20\xd5\x72\x42\xad\x57\xe7\x02\x3f\x1b\xdc\xc3\x81\x40\xc5\x5a\xfd\x43\xea\x15\xfe\xd0\x95\x57\xe4\x33\x2d\xc8\x8b\xc3\x0b\x87\x70\xb3\x04\x58\x0c\x62\x9e\x2d\xef\x67\xd8\x5b\x51\xd4\x37\xa2\x81\xfb\xe4\xf3\xf3\x36\x9b\x80\xdc\x6e\x74\x63\x0e\xee\xed\x0e\x33\x29\xe3\x33\x65\x4d\x8e\xa3\x5a\x74\x92\x67\x6b\x0a\x78\x44\x95\xfb\x1c\x29\x1c\x9c\x6b\x4c\xb7\xfd\x8b\xdd\x9e\x49\xe2\x95\x2c\x4f\x63\x93\x2a\xbb\x4a\xe9\x51\xa4\x12\x76\x69\x1a\xd8\xd4\x63\xe5\x1e\xab\x62\x44\xc7\x2b\x30\xb2\xa7\x61\x92\x15\x85\x75\xe2\xf8\x6a\xff\x37\xe3\x0c\xf8\xb6\xde\x80\x29\xf0\x1b\x11\x85\x18\xd0\x1a\xc4\x5e\x74\x9e\x80\xd4\x1f\x4f\x83\xb0\xce\xf1\x88\xf6\x15\xb1\x90\xf0\xba\x27\xde\x1e\x6f\x87\xeb\x4d\xc8\x5f\x4c\x03\x67\x1f\x7a\xfe\xa8\xe2\xbd\x45\x2a\xea\x79\xb6\x1c\xa3\x38\xe3\x0d\x7c\x03\x12\xf9\x54\x14\x84\xa0\xd6\xb2\x81\x4d\x8a\xd2\xc6\x29\xd8\x1c\x6a\x60\x1b\x18\xb1\x9f\x52\x2b\x06\x14\x7c\xf9\x4c\xc8\x9a\xaa\x01\x8b\xe4\x03\x71\xeb\x0d\x77\xaf\x72\xdc\x88\x7d\xbf\xd2\x1d\xc6\x83\xa1\x0b\xf5\x74\x57\xc5\x4e\x87\xb2\xa6\x1c\xd7\x93\x89\xd2\x3c\xec\x36\x01\x92\xa8\x57\x84\x8b\x00\x96\xd4\x30\x07\x2f\x5b\x50\xa3\x11\xb7\xa5\xa8\x92\x70\x83\xa6\x88\xf4\xf7\x84\xd3\x8e\x48\xb7\xc6\x76\x07\x30\xb0\x4d\xda\xc3\x87\x47\xbb\x43\xf9\xed\xed\x29\x49\x6b\xc3\x7a\x14\x17\xf0\xaf\xdc\x6f\xaa\x77\x96\x1b\x6a\x48\xba\xfe\xa7\x29\x69\xf0\x89\x2b\x2d\xa2\x84\x4f\xdc\xa3\x07\x44\xe1\x0e\xed\xd9\x2b\x59\xde\x7f\x94\xd3\x67\xe1\x28\x61\xff\xf9\x16\xee\x54\x05\x49\xab\xa1\x86\xbb\x46\xea\x8e\xc5\xfe\x5a\x44\x4a\xdb\x7f\x0f\x57\x80\x75\xed\xc9\xf9\x00\x8d\x3a\xe2\x06\x30\x2e\xe0\x84\xbb\x18\xbc\x7b\x00\xe6\x14\x17\xe9\xde\x8c\xb8\xc7\xb5\x19\x71\x67\x63\x9b\xea\x9b\x56\x9f\xce\x0e\x19\x78\x3e\xeb\x47\xa3\xe9\xb9\xc6\xa0\x3a\xcb\xea\xc8\x3e\x35\xa5\xd6\xf0\xa9\x1a\x42\xce\x26\x76\x86\x8c\x6f\xef\x47\xa1\x8a\x75\x8d\x06\xeb\xf1\x5a\xbc\xbe\x61\xfb\x8f\x54\x9f\xc3\x23\x7a\xc8\xdd\x0c\xb6\x88\xcb\x08\xec\x20\xf5\xf9\xe7\x51\xe8\x65\xc3\xdb\x04\x81\xe4\xfb\xd0\xd2\x54\xd7\x97\xea\x11\x01\xb8\xb1\x63\x9e\xc4\xee\xfe\x08\xcf\x05\xdb\xd0\x35\x04\xda\xc8\x66\x1f\x9a\xa7\x3a\xf9\x7d\x52\xd7\xc9\x27\xcb\x71\xcf\x8c\x3a\xdb\x1f\xba\x1c\xfb\x09\x97\x9a\x55\xcd\x3c\xb1\x19\x5e\x25\x50\xf5\xfd\x88\x46\xed\xc9\x46\x34\xfb\xf2\xcb\x4e\xf7\xba\x13\x30\xc3\xe7\xdc\x33\x53\xb1\xac\x07\x11\xb4\x7a\xb9\x89\xa1\x2d\xd9\x9a\xb9\x3c\x08\x3e\xb4\x1c\x0f\x66\x42\x7b\xf6\xdb\x64\xe8\x23\x78\x3c\xb5\xc1\x0b\xa6\x66\xe3\xac\x88\xcb\x59\x9e\xc7\x5c\xe9\x7d\xd2\x15\xa3\xf1\x44\xe6\x36\x09\x5f\x71\x6a\xfa\x58\xa0\xe7\xd8\x04\x6a\x0f\x5e\xee\xac\x7a\x61\xf8\xa3\x87\x36\x83\xdd\xa9\x58\xaa\xc8\x3f\xcc\x3f\xc3\x64\x90\xc9\x5a\x9c\xc6\xc5\xa8\xc3\x30\x89\x80\x99\xbc\x4a\xcc\x91\x6c\x65\xc5\xc9\x7d\xee\xc6\x35\xab\x1b\x79\x18\x3c\x68\x8f\x7b\x86\xfe\x61\x8f\xf6\x64\x8a\xda\xf5\x28\x8c\xb0\xcf\xb8\x6d\x06\x07\x26\xb1\xd9\xa2\xe2\xfe\x72\xf6\xea\x0c\x8d\x56\x80\x7c\x80\xed\xbf\xeb\xd0\x63\x6a\x30\xd2\x62\x53\x3f\xb2\xe5\xd0\xa4\x35\x1f\x5d\xd6\x78\xff\x9c\xda\x81\x23\x93\x0e\x4d\x59\x9a\x74\x67\x20\xd9\x0b\x01\x42\x3b\x9d\xc1\xeb\x05\x5a\x5b\xe2\xd4\xec\x1e\x17\xca\x0d\x3f\xc5\x1b\xd0\x66\x63\x80\xa8\x14\xc8\xf8\x7d\x8c\x07\xd5\x1a\x39\xde\xac\x29\x65\x14\xb6\x37\x71\xfa\x61\x6e\x2a\x09\xc3\xda\x3d\x40\x8c\xa1\xfb\x04\x37\xbc\xe3\x76\x58\xd4\x85\x5e\x67\xd5\xc9\xf7\x6b\xea\x1b\x76\x64\xca\x49\x6e\x93\x8d\x99\x80\x42\xba\x82\x4b\x95\x52\x02\x69\x87\xb5\xea\x34\x2e\xc7\x62\x21\x89\xc5\xf3\x94\x7b\x89\x72\xdc\xe2\x84\xbb\xd4\x2d\xb2\x91\x2d\xe3\x11\xf8\x4b\xba\xd3\x1c\x23\x94\x5a\x53\xf9\xfc\x2b\xdd\x49\xda\x4b\x4c\x3c\xd2\x49\x8f\x5b\x41\xf2\xa3\x4c\x25\x26\xa9\x92\xbd\x05\x24\xaa\xd9\x21\xe9\x2c\x39\xb5\x9d\xa5\xe6\xe1\xd8\xf4\xca\x5d\xa1\x51\x70\x14\x4f\x4d\x5c\xa8\xa7\x14\xa4\x80\x38\x23\x48\xf0\x29\xd5\xa3\x8e\x47\xa4\x8a\xfe\x2e\x36\x18\x85\x17\x86\x08\xaa\x67\x52\xd3\x37\x6e\xc7\x44\x6c\xf3\x3d\xe6\x8a\x0b\xe5\x17\x4f\x1c\x60\x06\x0c\x86\x4d\x97\xc5\x6d\xdd\x8d\xb8\xd2\x3a\x65\x6e\xc3\xdf\x9e\x86\x61\xb4\x49\xc5\xa2\x24\xcb\x0a\xbb\x3b\x40\x91\xce\x39\x51\x62\x39\xc6\xf5\x0b\xeb\x20\xa2\x08\xfb\x13\x92\x32\xdb\x01\x88\xbb\x00\x07\x51\x59\x44\x6f\x17\x82\xeb\x0f\x12\x02\x5e\x5c\x7c\xa1\x6b\x96\x8b\x2c\x5f\xd6\xed\x4f\x18\x03\x11\x81\x72\xcf\x10\xd1\x71\x25\x2e\x86\x68\x24\x6b\xdb\xf0\x2a\x53\x52\xae\xd6\x4d\x9a\x92\x72\x67\xc7\x6b\xec\xde\xc6\x77\x62\xc8\x7f\x8a\xf7\x85\x45\x0e\xe9\x90\x42\xef\xdd\xd7\xc9\xa7\xf0\x8a\x80\x4c\xdc\x41\x24\x93\xc4\x9a\xbe\xcd\x8b\x5d\xee\x4b\xd0\x66\xbe\x3d\x25\xd1\xe9\x77\xc8\x90\xeb\x8f\x90\x5d\x63\xe4\x7d\xc2\x69\xeb\x25\xf7\x6c\xe4\x53\xec\x35\xb5\x8b\x94\xb6\x5f\x10\xb9\x33\x4f\x08\x61\x85\x95\x16\x81\x94\x81\xc9\xfb\x36\xc5\xc3\x54\xf4\x3a\x21\xd9\xa9\x60\x3a\x9e\x8c\xc6\x71\x3a\x70\x18\x67\xef\x91\x7b\x50\x85\x0c\x8f\xd3\x2d\xbc\x4f\x14\xf6\xf7\x7d\xad\x3c\x9f\xa4\xa9\x58\x1c\x2a\xb2\xc7\x5d\x9c\xc8\xe3\x62\x77\x57\xd1\xde\x30\xe1\x46\x71\x95\x3b\x3b\x81\x3c\xb1\x11\x8a\x02\x83\xea\x0e\x91\xbd\xb1\x44\xa9\xd5\x50\x4b\xc3\x6d\x9c\x95\x64\x26\xa3\x48\xda\xd0\x90\xf8\x69\x23\x27\xdb\xb7\xaf\x6b\x46\x66\x28\x7f\x21\x76\x0b\x11\xc5\xf5\x67\x69\xac\x25\xa6\x70\xf5\xeb\x6a\xb1\xf3\x90\xc0\x83\x7b\xe5\xf8\x0a\xee\x4f\x33\xc7\x16\xe1\xfe\x61\x96\x7b\x9d\x5e\xf5\xf0\xa6\xf4\xf1\x4c\x63\x19\x5b\x38\xd4\x35\xf9\xc8\x56\x39\x59\x87\xb4\x85\xaf\x90\x86\xf4\x95\x06\x02\xb4\x0a\x57\xb2\xb1\xdb\x20\x90\x15\x1d\x25\xac\xe3\xd1\xb6\x4a\x6b\x3f\x2e\x9c\x2f\x9c\xaf\xd0\xf8\x22\x62\xc0\xc0\xd2\x72\x94\xc7\xc5\xaa\x88\x0e\x20\x27\x07\x7d\x43\x8e\x7d\x81\xd1\xbe\x3a\x4e\xe2\x5e\x5c\x26\x1b\x9d\x10\x1e\x9f\x75\x0f\x4c\x8e\x5b\x6b\x08\x2b\x89\x29\x86\x1b\x0f\x14\x62\x6a\x96\xc0\x0f\x76\x47\x46\x6c\xa3\xd5\xbc\x27\x44\xaa\xc7\xbc\x77\x6e\x2f\x1b\x8d\xe2\xa2\x88\xb3\x54\x97\x0b\xec\xbf\xe8\xef\xc9\x31\x49\x7a\x98\x57\xe3\x6c\x24\x78\x17\x44\x12\xbf\x3d\x0d\xb1\x9c\x00\x15\x3c\x67\x8a\x15\xf9\x82\x56\xd4\x72\x9e\xf5\x56\xd7\xaa\xe1\xed\x0a\x43\xc0\x68\xdf\x21\x5b\xc6\x3b\x51\xd0\x52\xac\x72\x42\xc1\xa8\xaa\x09\xab\x7b\x19\x72\xc2\x1a\x4c\xfd\x2c\x4f\x6d\x7f\xa6\xb3\x4d\xdd\x5d\xab\xf4\xee\x9a\xb1\x8d\x5c\xf5\x92\x5e\x76\x92\x67\x63\x57\xf6\xa9\x2e\x1c\x5b\xc7\x6e\xf4\xda\xb1\xfd\x6c\x05\x34\xfc\x17\xbb\xf3\xa1\xa2\xdf\xd9\xac\x32\x32\xac\x69\x67\xb7\x89\xcd\x89\x64\xa4\x38\x03\x45\x0c\x09\x3f\x3f\xad\x8f\x1e\x6f\x07\x97\xad\x9b\xbc\x8f\x86\x9a\x57\x2b\xf0\xe3\x53\x40\x36\x6a\x84\x1a\x20\x0a\x7d\xb5\x7b\x68\x1b\x9b\x8f\xd3\x56\x19\xe7\xd9\x8e\x80\x1e\x5a\xb5\x69\x56\x0c\x0d\x56\x3f\xf4\x3e\x8f\xb2\xa5\xe9\x51\x62\xcb\xf6\xf2\x78\x3c\x86\x1e\xfc\x7e\x6d\x06\x48\x23\x51\x4e\x28\x94\x2c\x6d\xfa\x28\x19\x17\x7e\x71\xde\xfb\x8b\xfc\x54\xe4\x20\xb0\xc3\x43\xc6\x08\x41\xed\x33\x4e\x07\x1e\xb9\xed\x69\xc4\xd1\xde\xa7\xf2\x57\x14\x5c\xb3\x49\xee\x9a\x12\x58\xa1\x24\x06\x9f\x5a\x14\xfb\x81\x2f\x41\x02\xff\x29\x12\x25\xd5\x5c\x6d\xd3\xc3\x30\x45\x11\x17\x55\x8e\x08\x65\x1b\x36\x15\x52\x68\x4b\xc7\x1b\xd7\x7f\xcb\x53\x2f\x93\xac\x2c\xdc\x66\xa0\xcd\x3a\xf7\xe0\x3c\x0b\xad\x7a\x1b\xa8\xc3\xee\x9c\x0f\xb3\xef\x02\x0d\xd4\x15\xdb\xb7\xb9\x49\x1e\x0f\x36\x30\x20\x6e\x01\x5b\xbd\x67\x9e\x82\x9f\x39\xb0\xce\x48\x51\x68\x21\x54\x04\xf6\x2b\xba\xe3\x1a\xca\xcc\x58\xfa\xee\xb9\x28\x5a\x8b\x1f\x1d\xaf\xa1\x7b\x83\x45\x39\x77\x80\x22\xa2\xc2\x5b\x64\x62\x70\x0b\x0f\x97\x0b\x29\x5a\xde\xe0\x41\x3e\x98\x6c\xcc\x04\xc9\x9e\x6b\xa4\x63\x2a\xf1\x9e\x86\x35\x61\xd0\x89\xff\xbd\x9b\xca\xc2\xf7\xc7\x90\x50\xf2\xff\x33\xa4\x9b\x3b\x36\xb9\x6b\x72\x3d\x0c\xc5\x9a\x8b\x04\x86\xff\x10\x77\x8b\xe8\x4a\xcc\x92\xb0\x74\x5e\x25\x3e\xef\x91\x29\x31\xe9\x3e\x24\xcf\xb6\x7b\xb8\x5b\x49\xe7\x31\x4a\x10\xc6\xdc\x88\x28\x86\x3b\xd6\xc0\x99\x2f\x2e\x56\xe1\x73\x96\x08\xed\x48\xd6\x7a\x92\x13\x5a\xf0\x39\x28\xa1\x45\x33\x87\x71\xe6\xe5\xe5\x9a\x0b\xed\xf5\x61\x55\xab\x08\x36\xff\x33\x53\xae\x50\x77\x0e\x2f\xe9\x67\xa2\x2f\xd4\x74\xe6\x7a\xf1\xd8\x69\x05\x75\xa8\xfe\x0b\xa2\x95\x1c\xb3\x02\x53\x9c\x38\x38\x5d\x75\x93\x32\x6e\xa2\xda\x20\xf2\xda\x12\x93\x24\x99\x0d\xb5\x18\xd8\xf5\x78\x97\xdb\x80\x6e\x3d\x35\xad\xa1\xb5\x9f\x60\x21\x0b\xfb\x9a\xe5\x15\xe5\x24\xf1\x88\x4e\xfa\x05\x77\x25\xee\xdb\x24\x2e\x37\xdc\x32\x8d\xef\xbc\xe7\x46\xa9\x34\xa9\xd8\x10\x69\xd7\x7c\xc8\x1e\xab\x74\x67\x7d\x68\x95\xb1\xac\xbe\xbe\x6c\xf2\x4b\xbb\x46\x9c\xf6\xb2\x91\x7d\xd4\x67\xa5\xff\xf0\x99\x4d\xc7\xe5\x54\x63\xc4\x99\xe0\xd8\xfc\xbb\x64\xa2\x7f\x9f\x83\xe4\x9f\xb9\xd1\x84\x7f\x38\x86\xd1\x84\x80\x4b\xbc\x62\xb4\x82\x5c\x73\x9c\x0f\x58\x5f\x08\x9d\xa3\x9a\x35\x37\x4f\x50\x83\xa3\x5c\xef\x1f\xc6\xcb\xb1\xea\xee\x63\xd5\xbb\x5d\xf7\x7d\x74\x37\xa8\xb2\xe8\xcd\x8e\xa2\x73\xb8\x98\x09\xad\xdd\xb3\x51\xcd\xe1\xc2\xd3\x8f\x7e\xa7\x0d\x6e\xd9\xdf\x48\xcd\x28\xee\x49\x98\xa7\xf0\x2d\xf7\x08\xe4\xa4\x11\x46\x1d\x5e\xaa\xe2\xd9\x4e\x58\x73\x65\x97\x57\xa3\xa2\x67\xb7\x7d\xfe\xeb\x87\xbb\x69\xe6\xfc\x04\x75\x81\xac\x56\x3d\xed\x82\x84\xe8\x69\x1d\xfc\xfe\x8e\x17\x66\x15\xed\x36\x39\xa1\x32\x7e\x3f\x2e\x7a\x49\x56\xc0\x7a\xf0\xa5\xb0\x52\x7b\x79\x95\x77\x01\xdf\xf0\xfb\x6d\xf0\xf8\xa9\xa9\xfe\x07\x67\xd1\x77\x3d\xe3\x7c\x64\x26\xc9\x4c\x6d\x39\xaf\x6e\x54\x05\x1d\xdd\x8d\x4a\xf7\x8f\x02\xf5\x95\x89\x4d\x6c\xdf\xed\x08\xe2\xb6\x81\xca\x8c\xb7\xde\xf0\x44\x11\xc4\x6c\xca\x93\x7f\x10\x6c\x32\x89\x57\xad\xb8\xbc\xfa\x81\x78\x50\x19\x3e\x3f\xf3\x83\x07\x6b\xa4\x0f\x4e\xa5\x41\xee\x16\x6c\x6d\x96\x07\x06\xe2\x20\x1e\x8d\xe2\xde\x6a\x81\x28\xdd\xbb\x4a\x79\xa1\xbb\x8f\xdd\x55\xa2\x88\xfb\x61\x40\xf9\x94\x36\xb7\xd9\x5c\xa8\xf0\xdd\x22\x4a\x86\x54\x0a\xd4\x78\x35\xc0\x67\x24\x7a\x07\x3a\xe3\x73\x62\x60\xf6\x27\xe5\x06\x52\x41\xa4\x06\xa7\x48\xf2\xff\x14\x16\x75\x6d\x6a\xbb\x6f\x40\x88\x77\x8d\xb8\x24\xbf\x53\xb3\xcb\x21\x2f\x98\x5b\x04\x09\x1b\x8d\x36\x76\x85\x82\xd1\xff\xee\xfc\x0d\xd4\x91\xc3\xbd\x42\x75\xca\x0b\xc1\xf4\x16\x5a\x54\x5e\xdd\xaa\x9a\x01\x28\x34\xbe\xe7\x7e\x5d\x8e\x1f\xd8\x8f\xed\xd9\xb4\xcc\x05\x48\x2b\xb4\x6c\x2e\x01\x3c\xb8\x91\x0b\x06\x9c\x4c\x40\x75\xea\xa6\x15\xf0\x3c\xe9\x7b\x98\xb4\x34\x83\x2c\x8d\x0b\xad\x69\x8b\x60\x6b\x44\xae\x43\x67\x6b\xdd\x8e\x22\x2e\x1d\x3d\x92\xe5\x82\xb0\x61\xcf\x6c\xa2\xfb\xcd\xf5\x7c\xbc\xe2\x3b\xa4\xe1\x29\x82\x00\x4a\x66\xa4\xe6\x55\xfc\xcd\x49\xdc\x9f\xa1\x35\xf1\x14\x7b\xd4\xb9\x39\x27\xba\x5f\xe4\x3b\x3b\xdc\x18\x67\x83\x64\xa3\x67\x47\xb1\x71\x7b\x8d\xac\xad\x11\x49\x08\x1c\x43\x00\x88\xd6\xdf\xbf\x75\x0f\x5f\x8e\x29\x92\x18\x99\xa4\x97\x25\x23\xb7\xec\x11\xfb\x7f\x29\xe8\xa5\xf9\x44\xf0\x44\xe8\x45\x67\x59\x7f\x54\x65\x8c\xe0\xfc\x8b\x82\x6c\x5b\x5c\xd8\xcb\xd2\x5e\x32\x71\x1c\x2f\xbf\x21\x9e\xc3\xf8\x94\x93\x36\xe6\x46\xb5\x94\xea\x64\x44\xa0\x0e\x45\x3b\x39\xf6\xd7\x91\xc4\xcb\x55\xf4\x07\xf1\x0e\x6d\x43\x75\xbc\x4e\x2b\xf8\x07\x68\x3c\x9c\xc0\x50\xd0\x8a\x7a\x9b\x82\xa3\xc9\x7b\xc3\x0e\x19\x40\x9c\x8f\xd8\x63\xb7\x86\xa4\x2d\xe2\xfe\x04\x9a\x37\x2f\xd5\xe8\xc4\xfa\x04\x6b\xc4\x92\x34\x9b\xa9\xe6\x8d\xe7\x97\x7b\x7c\xa8\xa4\x78\x1a\xae\x37\x7b\x72\x24\xe4\xe5\x9e\x1f\xf6\x22\xf1\xa3\x95\x13\xb2\xfc\x2f\xd6\xe3\xf2\x35\x9b\x27\x26\xed\xcf\x3a\x9d\x06\x0d\x18\xaa\x31\x04\x48\xc5\x19\x16\x65\x10\x58\x82\xfc\x4b\x63\x57\x5b\x38\xd4\xad\xb2\xf6\x74\x50\xa5\xb3\xd5\x5a\xc7\x5b\xa1\x32\x16\xfc\xab\xb0\xc5\xa4\x8c\x6b\x0e\xf1\xac\x59\xf7\x66\x23\x13\x5f\x38\xd4\x8d\x8b\xdc\xd8\x24\x9e\x61\xa5\xcd\xcf\x88\xe6\x2e\x85\x31\xc5\x03\x07\x0d\x9d\xc2\xbe\x3a\x1b\xa4\xb1\x3e\xaf\xd9\xf0\x04\x8e\xca\x7b\x6c\x6a\xf9\x39\xa9\xb4\x39\x7f\x4e\xa5\x29\xb6\xb5\x96\x9b\x58\xd1\xa5\xee\x24\xa5\xcd\x44\x2a\xee\x11\x57\xdf\x9f\x21\xe7\x92\xb5\xb8\x34\x9e\x0f\x2a\x3a\x17\xee\x17\x54\xf3\x82\x07\x48\x9a\x6e\x88\x67\x06\x52\x60\xb4\x34\x50\xe5\x7c\x13\x93\x11\xe3\xea\x18\xc9\x0f\xdd\xe6\x1c\x5c\xf4\xd1\x51\x2b\xff\x9c\x84\x56\x87\xd6\xf4\x5d\x53\xb7\x20\xeb\x52\xf1\x4f\xd1\xa8\xa8\xc9\xb4\xe8\x16\x36\x5f\xb3\x04\xb9\xc5\xde\xad\xa2\xdf\xdb\x9f\xce\x2f\x38\xc5\x85\x2c\x0b\xf8\x1b\x20\x14\x21\xe9\x23\xc7\x51\xe0\x95\xd9\x57\xcd\x60\x60\x25\xec\x7f\x51\xab\x91\x82\x5b\x92\x13\x22\x28\x17\xc3\x78\x45\x40\x9d\xaa\x66\xfd\x83\x1a\x73\x84\x25\xc9\xaf\x34\x96\x93\x83\x7b\xbb\x66\x25\x37\xb1\x14\x7b\xb1\x91\xfd\xb3\x69\xc0\x30\xfe\xb3\x36\x53\x85\x95\x38\x35\xa9\x27\x74\xb4\x7a\x2e\x3e\x4d\xeb\x81\x49\xe0\xdc\x10\x72\xa6\x9b\xe4\x28\x7c\xb3\x4d\xc4\x37\x5b\xb3\x79\xf5\x7a\xdc\x0f\x78\x57\xea\x83\x7b\xbd\x2b\x75\xd8\x85\x7f\xf9\x17\xff\xba\x93\x62\x43\xa9\x1f\x81\x83\x1c\xd7\xfc\x72\xd6\x6c\x51\xc6\x03\x11\x44\xf4\x04\xd2\x4f\x09\x89\xfd\x29\x15\x23\x8a\x78\x90\xba\x4e\x8b\x60\x31\xb0\xb3\xfd\x63\xcc\x39\x39\xf1\xc8\x36\xe7\x2d\xbf\x26\xd8\x17\xac\xdc\xef\x11\x4c\xe9\x3d\x32\x7e\x5a\x7c\xde\x15\x5a\x95\x2a\x59\xc5\xd0\xa8\x1c\x00\x6b\x8f\x31\x7e\x91\x21\x1f\x7c\x17\x0e\x59\xf2\x6a\x3c\x32\x65\x35\xd7\x6a\x46\x7d\x61\x86\x5e\x08\xb2\xce\x93\xd1\x72\x22\x6c\xef\xe7\xe4\x62\x1e\x9d\x0f\x01\xec\x4e\x07\x64\x56\xd7\xfb\x10\x68\x16\xe3\xdc\x71\xe5\xbd\x85\xd1\x25\x22\xa1\xbc\x81\x0d\x4a\xa3\x2e\x8d\x12\x37\x4c\x31\x19\xc5\xbd\x61\x8c\xcb\x42\x73\xfa\x24\xf3\x39\x4f\x92\xa6\xc2\x28\x4e\xc7\xb6\x97\xc1\x92\x11\xd5\x9d\x4d\xba\x85\x87\xd0\x26\x55\x5d\x31\x37\xb8\x55\x47\x88\x15\xc1\x9a\xcd\xfb\xc5\xc5\xea\xea\xcd\x86\x94\x79\xc9\x68\xc0\xbb\x0e\x50\x04\xf7\xc2\xd7\xbf\x26\xeb\xab\x8f\x4f\xfc\xfe\x23\xd7\x8e\x77\x7d\x87\xc4\xbf\x8b\xa1\x35\x79\x91\xa5\xb3\x81\xcc\x2f\x30\x2b\xac\xc5\x10\x20\x43\x05\xe9\x06\xae\x5d\x89\x52\x4f\x93\x98\xc9\x7a\x6e\xd3\x22\x4b\x65\x7c\x21\x86\xfc\x31\x7e\x53\x4e\xb6\xf3\x76\x0e\x3d\xdf\x3d\x70\xe0\x99\x2a\x5f\xf7\x8c\xb8\x6a\xe3\x91\x59\x1f\xd5\xb5\x42\xbc\x8c\x9b\x78\x97\x22\x9d\x38\x85\x55\x5f\x9d\x2f\x08\xe1\x7e\xc1\x31\xed\x11\x64\x9f\x85\x8c\x0c\x06\xc6\xc7\x58\x7a\x54\x07\xd7\x0d\x25\x5c\xe0\x3d\x17\xc1\x61\xc8\xfe\x37\x08\xa7\x10\x17\xfd\x0c\xb1\x81\xd6\x2c\xab\xd9\x29\x6d\x18\xf7\x68\x10\x19\xde\x22\x99\x96\x7b\x2e\x59\xc3\x1f\x5f\x74\xcd\x2e\xbc\x83\x1d\xa4\x97\xba\x3c\xc9\x97\x9d\x2d\x72\x75\xcf\x8a\x70\xe9\x78\x19\xac\xf3\x6d\x56\xbd\x43\x93\xac\xd9\xfe\xce\xc0\xd6\x12\xf7\x6e\xc4\xbc\x1f\xbb\x3f\x07\xe2\xf3\xcd\x29\xb9\xa2\x0b\xe2\x0d\xd7\x09\x44\x8c\x8a\xb9\xb6\x71\x9b\x6d\x51\x02\xcc\x87\x46\xcb\xc3\xf3\x2e\xbc\xf0\x05\xab\x03\x07\x82\x0d\xac\xcf\xca\xb6\x98\x68\x7d\xbe\xb1\xa7\x2e\x1c\xea\x8e\x87\x1b\x45\xdc\x8b\x85\x7a\x89\xc7\x0f\xf0\x94\x1c\xb7\x08\xfb\x72\xd3\xb9\xc3\xba\x3d\x11\x01\x76\xce\x11\x10\x7b\x25\xcb\xfa\xc5\xce\x0e\x59\xac\x13\xe0\xf0\xa2\x14\x94\x95\x52\x1c\x3a\xce\xc7\xd8\x3b\x44\x48\x08\x32\x83\xda\xe8\x70\x69\x96\xda\x72\x68\x13\x5b\x14\xb3\xee\x41\xe1\xb6\xff\x35\x31\xbf\x41\x29\x46\x34\x7a\x65\x1a\x5a\xd2\x17\x88\x04\x6e\x5f\x1d\x27\x90\xdd\xaf\xfe\x0e\x35\x0e\x18\x89\xc9\x71\x2b\x8d\x45\xb4\x49\x65\x87\xc3\x98\xfe\x51\x14\x16\xbe\x1f\x91\xc9\x60\x15\xd0\x15\x03\x9b\xc6\xbd\x9a\x72\xb1\x40\xf0\xe4\xa4\x11\x0a\x1e\x7a\xde\x11\xf6\xdd\x0e\xe0\x66\x94\x80\x3a\xa3\x6a\xaa\x2a\xc0\xd3\xa7\xba\x93\xb8\xcc\xd0\xa4\xc3\x2c\x46\x12\xa1\x63\x6d\x26\x38\xfd\x9f\xf0\x35\xb3\x57\xac\x57\x5c\x57\x97\x59\xf7\x72\xe5\x24\xd2\x96\x4f\x3f\x2e\xcc\x78\x5c\xad\x4e\x78\xf9\x3e\x18\xaa\x96\x42\x39\x69\xbc\x9f\xfd\x8b\xdd\x81\x4d\x6d\x19\xf7\x8c\xca\x48\xa8\x4c\x6d\xb8\xc8\x9b\x6d\x90\x0c\x67\xfb\x5e\xc0\x3f\x0c\x9b\x8b\xc4\xa4\x72\xc2\x25\xd9\x34\x2b\x87\x36\x7f\x3c\xec\x7d\x02\x8b\xc7\x3b\x80\x4e\xab\x1a\xb7\x77\xbc\xc9\xfc\x59\xac\xab\xd8\x9e\xaf\xa0\x2e\x82\xfb\x98\x41\x5d\x19\x5b\x87\x2b\xc1\x2e\x6c\xa1\x02\xa2\x5d\xf9\x20\x22\x22\x65\x12\xaf\x52\xb9\x3f\xd8\x6f\x04\x24\xd4\x87\x11\x89\x66\xcc\xcd\xb7\xb0\x18\x87\x4e\xf6\x63\x43\x9e\xad\x68\xa7\x44\x41\x78\xf4\x27\x2d\x78\xbb\xe7\x9c\x93\xe4\x58\x5b\xa2\x9e\x82\xe0\xbd\x1f\x9b\xaa\x1f\x5f\xe9\x16\xa5\x1d\x77\x02\xe2\xfa\x26\xd5\xbc\x6f\x4e\xbf\x50\x2b\x3d\xe6\x63\xa9\x10\x33\xb3\x32\x22\xc9\xfc\xf3\x8d\xef\xdf\xb7\xaf\xdb\x9b\x80\x88\x8e\x4c\xf8\x4f\x91\x16\x7b\x3e\x55\xf5\xc7\xa8\x88\xdc\xc1\xd6\xa1\xeb\xf8\xb6\xed\xe8\xaf\x55\x39\xec\x23\xec\xba\x14\x11\xb5\x68\x13\xdb\x86\x04\x17\xee\x31\xa1\x87\x00\x99\x0e\x6c\x5a\x10\x8e\x65\x71\x21\xbf\x7f\xf9\xba\x8a\x14\x6c\x74\x0b\x75\x37\xaa\x16\xcf\x44\x89\x3b\xed\x6b\x6b\xab\xf1\x3a\x04\xa0\x7c\x68\x44\x7d\xba\x16\x1b\x9f\x95\xd8\xe6\x3d\x76\xd5\x02\xac\x5d\x8e\x37\x43\x59\x69\x60\x0d\x26\x2e\xf2\x64\xa0\x4a\x50\xde\xbf\xca\x30\x82\x1b\xad\x09\xf4\xb2\x88\x60\x2e\x79\x84\x4a\xa8\xa0\x9d\x6d\xa3\xaf\x8e\xad\x75\x36\x48\x33\x0c\x3c\xa9\x9e\x23\x10\xc7\x7f\xe2\xfe\x5e\xb5\xf1\x5a\x98\x41\x7d\x47\x7c\x53\x99\xc0\xbf\x09\x32\x90\xd6\x5e\x5b\x80\x0a\xd9\xca\x4a\x61\xcb\x0e\x59\x07\xd7\xdc\x58\x54\x0d\x6d\x92\xf6\x6d\xbe\x52\xfd\xaf\x2c\xa9\x92\x7e\x91\xd4\xe0\x31\xda\x61\x46\x55\x82\xf5\xa4\x7b\x3a\x88\xf7\xe7\x30\x73\x51\x5b\x03\x81\x1e\x2f\xbd\xb3\x49\x8d\xb4\xf3\x88\x4d\x90\x9e\x3e\x3c\xdf\xf9\xda\xaf\x79\x35\xb2\xea\x36\x50\x58\xfc\xc3\x88\x44\xaa\xaf\x91\xf9\xfa\x9f\xb8\xae\x86\x84\x3c\xb2\x8b\x21\x38\xbb\x1a\x85\x5c\x61\x66\x93\x44\x38\xdc\x88\xc3\xe1\x97\xe6\x89\x87\x3f\xb3\x59\xad\x59\x78\x08\xb7\x5a\xf0\x32\x4b\xdd\xdc\x3a\x08\xa8\x4c\x71\x45\xc0\x91\xe5\xfd\xb1\x88\x65\xb8\x33\xc7\x6a\xe8\x77\xa8\xfc\x74\x1d\x81\x9c\x9c\x3c\x10\xd0\xe8\x2c\x5f\x67\x03\x30\xef\x02\x62\x2e\x74\xf6\x8e\xbb\xe7\x82\xb9\x70\x91\xcb\x39\x27\xb6\xcf\xdb\xc3\x4b\xdd\x7d\xfb\x40\x3a\x42\xb5\xf2\x9a\x7b\x09\xe2\x7c\x81\x47\x8a\x00\xe0\x21\x97\x93\x78\x4b\x8c\x6a\xa6\x2b\x3f\x53\x27\x5b\x5c\xda\xc4\x55\xdd\x5b\x2d\xbd\x42\x4a\x31\x4e\x26\xe9\xc0\xee\x22\x96\x0a\xa4\x2d\xb1\x0e\x74\xe6\x43\xf5\xf0\x9c\x7b\x43\x5a\x39\x76\xa3\x40\x05\x92\xaa\x17\xec\x85\x29\x7d\xbf\xf7\x86\xcf\x41\x7a\x99\x30\xcd\xdd\x20\x46\xc2\x70\x92\x2c\x2d\x4f\x52\x99\x6a\x60\x8b\x2a\xbd\x43\xea\xef\xf9\xde\x8b\x8b\x9e\xef\xdd\xa6\xe2\x3d\x19\x65\xb9\xfb\x03\x8f\x90\xf7\x3b\xe4\x79\xe2\x98\xf4\xb2\xaf\xee\x0e\x09\x93\xe8\x74\xe0\x7b\x51\x81\xc3\xda\xf2\xf0\x66\x70\xfc\xbf\xc0\x7a\x55\x77\x59\x22\xfa\xe9\xf9\xce\xdf\x5c\x90\x1e\xd0\x43\x92\xfd\xe0\x27\x77\xb4\xf8\xb3\xbc\xd0\x2d\xca\x38\x5d\x45\xa3\x19\x7b\x06\x5c\x1d\xd4\x21\x20\x24\xde\xec\x00\x3e\xce\xe2\x14\x99\xb1\x97\x59\xfa\x09\x49\x03\xff\xa4\x45\x0a\x62\xa1\xbb\x9c\x4d\x06\x43\x31\x30\xd0\x32\x8e\x1b\x24\x5a\xc7\xd9\x1e\x6a\x1c\xdc\xdb\x9d\xa4\x62\xab\xaa\xab\x87\xa2\xda\x42\x25\xf5\x1c\xa7\x49\x71\x51\xda\xd4\xa5\xb0\x35\xc3\x33\xdf\x0f\x05\x21\x59\x0b\xed\x6d\x62\x24\x0a\x78\x27\x7a\xd7\x13\x58\x82\x30\xb0\x3b\x6e\xb5\x47\xa4\x70\x39\xa2\x38\xfe\xd8\x36\x8b\xdb\x7d\x0b\xf2\x42\x8f\x90\x05\xfc\x0e\x46\x46\xff\x29\x85\x92\x8e\xed\xe6\x30\x3d\x73\xd5\x33\xc5\xc2\x08\x9a\x01\x1a\x68\x57\x89\x1b\x79\xd5\x0d\x67\x85\x29\x57\x93\x0e\x33\x73\x66\x3e\xd4\x2f\x87\x66\x34\xb2\xb9\x23\x3e\x74\x82\xef\x09\x34\x0a\x54\x0f\xa9\xcd\x16\x79\xd9\x19\x8f\x78\x61\xe8\xf7\x20\x52\x8b\xb9\x36\x33\x4f\xe1\xf8\x45\x8c\x53\x5d\x5b\x34\x60\xcd\x72\x3b\xa8\x92\xdd\xe0\x8d\xef\x7e\xb2\x26\xce\xa0\xf0\x51\xae\x95\xfc\x0f\xb5\x0e\xc1\x64\x5c\x76\xdc\x0f\x8b\x9b\x1d\x1e\xb4\x5a\xdb\xd1\xd4\x99\x8c\x67\x42\x96\x74\x1d\xe9\x26\x56\xe2\x13\x14\x20\xec\x98\x7f\x8c\xbe\xbc\x67\x1e\x76\x6f\x41\x91\xeb\xb8\x0c\x2c\x2d\x1f\x90\x0e\xd0\x2d\xb7\xb4\xa0\xe6\xf6\xd0\xa6\x5b\x5a\x7c\x77\x7e\xe9\xe0\x92\xfe\xcb\x3c\x6f\x94\xa1\x73\x74\x63\xca\x86\x21\x6e\xf5\x52\xa8\x7e\xcb\x6e\x3a\xce\xe2\x2a\xbb\x77\xd7\x85\xa4\xe9\x02\x25\x50\x17\x5a\xe8\xd9\x4b\xdd\x7e\xa6\xf0\x34\xa1\xa4\x72\x1d\xe8\x73\xea\x81\x8f\x6c\x6e\x13\x28\x52\x02\xda\xb2\x45\x28\x66\x69\xbc\xe3\x9d\xdc\x89\xc8\x18\xf1\xc3\x29\xe9\xd0\x63\xc3\xd0\x19\xb5\x3d\x7e\xd8\xb7\xaf\x5b\x66\x03\x83\x7e\xb1\x42\xac\xab\xdf\x43\x22\xfc\x2e\xb1\x78\x9a\x55\xc5\x2a\xed\xca\xad\xe9\x6f\x30\x83\xe2\x14\xe5\xfe\xa7\xbc\xd9\x63\x6e\x8b\x32\x9f\xf4\x4a\x27\xd4\x81\x3a\x15\x72\xf0\x8e\xe3\x38\xb8\xe5\xe7\x00\xcc\xf0\x10\x9a\x77\x36\xb7\xf1\xc0\x5e\xdc\x5b\xc5\xd9\x3b\xab\x49\xe6\x13\x88\x50\x95\xc4\xce\x8a\x08\xf6\xef\x03\x21\x88\x37\x0b\x31\x66\x6c\xd0\x3f\xa6\x28\xe4\x2d\xaa\x52\xf5\x26\x65\xa9\xfe\xba\x78\x9c\xbb\xe7\x43\x7e\x24\xb2\xc5\x40\x84\x40\xcf\x46\x8e\xa7\x44\xdb\x9d\xd9\x0c\xc5\x5a\xe7\xba\x9e\x63\xcb\xc1\xb2\x72\x9b\x28\x64\xb7\x1b\x3d\xf0\x2a\xb1\x8c\x11\x91\x89\x5c\xfb\x34\xac\x55\x77\x3d\xd2\x61\x32\xce\x49\x6a\x46\xad\xe3\xc3\xea\x72\xba\x31\xd8\x9c\x28\x8f\x73\x86\xf3\x5c\x8d\x33\x64\x34\xde\xd4\x8c\xaa\xfe\x20\x89\xcb\x32\xb1\x33\xa1\x36\x2c\xac\x12\x2f\x41\xea\x75\x15\xde\xa7\x02\xf5\xc8\xe4\x83\x58\x85\xab\xb4\x25\xee\x2e\x94\x75\x45\xf0\x6e\x91\x0a\xa3\xe3\x53\x47\x01\xa5\xc9\xc6\xd3\x04\xc7\xd8\xe1\xb8\x2d\x40\xb0\xbc\x81\x6f\x43\xa1\x12\x5b\xb8\xe6\xcf\x0e\x89\xe1\x85\x50\xab\x19\xae\x36\x2b\x6e\x58\xe3\x63\xbb\x1d\x7c\x02\x4b\xe0\x23\x9b\xa4\x71\x88\x50\x11\x53\xfc\x34\x1b\x96\x01\xfd\x85\x84\xe4\x73\xc4\xa9\x5a\x8f\x22\xe1\x12\x61\x3f\x62\xac\x7c\x9f\xc0\x63\x9f\xca\xfa\x24\x11\x30\x15\x8a\x6f\x35\x3d\x73\xf7\x75\x87\x36\xed\x59\x84\x6b\x78\x62\x68\x81\x63\xf3\x02\x35\xc4\x15\xce\x2e\x3f\x53\x6d\x64\x5b\xb7\x09\x6f\xf0\x71\x5b\xba\x03\xfb\xce\x4e\x20\x9c\xc2\x31\x46\x8e\x9b\x36\x2d\xcf\xbf\xd0\x2d\xf3\x2c\x1b\x4b\x7c\x8b\xc1\x77\x9c\x84\xad\x8f\x37\x46\xcb\x81\x03\xdd\x95\x2c\x1f\x4d\x12\x01\xfe\x79\xc1\x87\xa0\xb2\xd6\x48\x78\x0e\x2f\x1c\xea\xa6\x36\x2e\x87\x36\x77\x85\x67\x74\x78\x8f\xb9\xaa\xa4\x57\x58\xf3\x2f\xea\x26\xc1\xa6\x4d\xda\x8b\xd5\x78\x06\xef\xe1\x63\x26\x14\x7d\xec\x63\xd5\x61\x36\x10\xf2\xa7\xc7\x1e\x79\x3f\x09\x09\x5c\xb1\x3a\x5f\xa2\x38\x51\xdd\xaa\x77\x31\x5a\x03\xe6\x0a\x88\xe8\x5e\xc7\xaa\x82\xdb\x12\xb7\x37\x80\x29\xef\x92\xf4\xeb\xe7\xee\xe2\xe5\x2f\xdc\x83\x50\xb1\x4c\xa5\x48\x95\x71\x99\xd8\xb9\xea\x15\x7e\x01\x31\x05\xeb\xc9\xa0\xc2\x80\xb7\xed\x3d\xe2\xf7\xab\x2e\x4e\xb3\x27\x77\xe0\x80\xf3\xb3\x2c\x9c\xd3\x1b\x79\x13\x22\x1a\x96\xe3\xe9\x53\x84\x75\xc9\x6d\xaf\xcc\xf2\x3d\x18\x9a\x82\x6c\x9c\xd6\x30\x14\x24\x02\x71\x14\x4f\x0b\x31\x00\x82\x77\x44\x56\xe7\x31\x19\x91\x95\xa2\x9b\xeb\x9d\x86\xaa\xe7\x27\xdf\x45\x6a\x70\x7f\x3f\x0a\xd4\x9a\x6c\x3d\xb5\xf9\x5c\xc0\x6b\xfd\x00\x3f\x03\xa4\xbc\x50\xd5\xd0\x8f\x3d\x47\x7a\xbd\x42\x25\x94\x7f\xa0\x9c\x63\x39\xc3\x82\xf5\xe2\x5e\xa9\x13\x5d\x45\x72\xc3\xec\x5d\x65\x01\x3c\x45\xbe\x07\x59\x62\xcb\xd2\xcc\x92\xec\xcd\x1f\x44\x01\x5b\x03\x08\xb5\x58\x92\x91\x70\xfe\xbf\xa4\x5f\x4e\x27\x79\x61\xfb\x4e\x05\x18\xeb\xc7\x77\xdc\x1f\xa1\xc4\x72\x09\x8f\x42\xc1\x25\x61\x57\x77\x89\xe4\x78\xa6\x1a\x28\x58\xcd\xae\x60\x9c\xa1\xba\xf9\x23\xf7\xc2\xb5\x4a\xd3\x34\xd9\x19\x67\x45\x29\x84\x6e\x92\xd5\x5f\x08\x6d\xcd\x00\x13\x91\x22\x8f\x3a\xd1\x6d\xdf\xfb\x0f\xee\xed\x0e\x4d\xb2\xb2\xa7\x7a\x70\xea\x5b\x58\x5d\x14\x62\xd2\x3b\xb8\x28\x4f\x44\xd8\xb7\xe0\x19\xf1\x6e\xec\xab\x72\x61\x28\x2a\xdf\x99\xd6\x74\x8c\x82\xbf\x35\x20\x08\xd8\x33\xae\x13\xa8\xce\x45\xfd\xfd\x9d\x54\x96\x7a\x8b\x60\x87\x58\x7b\x30\xc4\xfe\xcc\x7d\x9b\xd4\xb1\x30\x42\x25\xcf\x8a\x88\x23\x7b\x8e\x2a\x91\xcb\x93\xbc\x6f\x53\xb4\xe2\x15\x9b\xc8\x40\xc5\x96\x1a\xf2\x62\x77\x92\x16\xf1\xc0\xd7\x90\x95\x89\x44\xac\x24\xea\x29\x99\x35\xfb\xa8\xbb\x5f\xcc\xd9\x9d\x9b\x94\xcb\xc1\xa7\x18\x21\xdb\x51\xb7\xb4\xe1\x55\x9d\x47\xaa\x41\x73\x48\x1a\x2e\x3b\x7f\xde\x01\x9b\xbd\xd4\x7f\x18\xbe\x7b\x36\xbd\xab\xdb\x9e\xbf\xe4\x16\x32\x94\xe9\x6f\xb3\xda\xfb\xce\xcd\x10\xe3\xed\xde\x6c\x53\xdf\xcf\xb3\xbe\x45\xc8\xe9\x0d\x65\xaa\x3f\x97\x13\x1a\xd2\xbd\xdc\x9a\x91\x04\x74\x6d\x3d\xc7\x67\xa8\xe2\xd3\xcb\xb3\xf1\x30\x13\xb2\x1e\x5e\xce\x35\xca\xd9\xae\x79\x5c\x44\x9e\x4d\xca\x38\xb5\x73\x34\x70\xce\x91\xe9\x3a\x04\x95\xbc\xd8\x86\x92\xe9\x0f\x7c\x69\x3e\x28\x9e\x1d\x25\xbc\xb3\x23\x18\x20\x0e\x0a\x0a\xa4\xee\x7e\xe4\xa4\xb1\x1f\x1e\x7a\x1e\x64\x2b\x60\x11\x04\xbc\x15\x05\x2c\xf3\x19\xc2\xb6\x0f\x33\x5f\xc7\x55\x87\xc8\xd0\x8d\xb9\x40\x5c\xce\x65\x9b\x24\x73\x2c\x52\x75\x3f\x22\x0b\xee\xe3\x62\x26\xdd\xf1\x46\xdc\x82\x03\x7b\x90\x9a\xcb\xe2\x62\x77\x25\xce\x2d\x5a\x0b\xff\x6f\xf2\xe8\xbf\x34\x31\x1d\x5a\x9b\x6f\x4f\xd9\xea\xf5\x76\x14\x2e\xd2\x15\x6e\xdc\x65\xe1\x4e\x4f\xd0\x5d\x9f\x60\x93\xb1\x2c\x2d\xe2\xbe\xcd\x77\x87\x15\x10\xaa\x4c\x08\x18\x3e\x72\x2b\x83\x58\xe8\x61\xce\x21\xef\x7a\x4b\xa2\x1c\x72\xa9\x78\xce\xeb\x68\x54\xaf\x15\x35\x90\xdf\xa3\xd7\xfd\xd0\x66\x5b\x95\x61\x25\xce\x47\x36\x9f\x75\x9b\x2c\x16\x1d\x69\x38\x01\x62\xfb\x43\xca\xd0\x7e\x63\x4a\xf6\x31\x97\x48\x53\xb0\xb4\x45\x59\x08\x8c\x04\x7b\xff\x8d\x88\x99\x36\xbc\x21\x93\xca\xb8\xd0\x9e\xe5\x2f\xf0\x96\x50\x54\xfc\xc0\xd7\x9c\xca\x3c\x9e\x8c\xc6\x43\x5d\x1b\x90\x5c\xec\x40\x1c\x29\x27\xf3\x4f\x7b\x24\xe5\x9a\x29\x14\xfb\xe2\x6b\x32\xd2\x34\x91\x93\xc6\xeb\x7f\x71\xef\x73\xdd\x0d\x0b\xf7\x34\x5f\x97\xf5\x6c\x96\x73\x24\xf0\xde\xcb\xd2\xd2\x8e\xc6\x59\x6e\xf2\x0d\x88\xec\x88\x25\x20\xb7\x5a\x4e\xd6\x78\x21\xd5\xbd\x22\xaa\xfc\x90\x62\xf6\xf5\x2c\xed\x3b\xa9\xeb\x25\xdf\x5b\x03\x5c\xc5\xd5\x3f\xfe\xd1\xd3\xf3\xd5\xa2\x8f\x9b\x7b\x72\xf3\x89\x6d\x32\xbc\x2e\x7d\x47\x1e\x01\xd1\x02\x15\xe4\xaf\x2e\x1a\x7d\x97\xa3\xb5\xd8\x7e\x68\xd6\xa5\xb9\xa5\x88\x25\xf7\x3c\x14\x99\x14\x56\xd6\xbd\x06\xac\x57\x2c\x74\xd7\xb9\xd7\xf4\xe9\x36\x3b\x84\xb6\x3a\xed\x38\xcf\x4a\xdb\x2b\x25\xc3\x56\x45\x41\xb7\xf4\xa8\x02\x5a\x78\x04\xe2\xcb\x30\x17\x7c\xea\x66\x5c\xd4\x0f\xc2\xc5\xbb\x0c\x3c\x82\xe6\x81\x42\x4e\x02\x3a\xe9\x3c\xe9\xc9\x8c\x6d\x5e\x45\xc4\xd5\x38\xae\x2e\x5a\x1f\xbf\x1b\x32\x08\x40\xaf\x34\x33\x78\xf9\x07\x12\x0a\x4d\x62\xf1\x01\x05\xc3\xe0\x52\x0d\x73\x23\x8f\x00\x7b\xee\x8e\xf9\xed\xc9\xe4\xc2\xa1\xee\x78\x52\x02\x28\x84\x02\xe0\x65\x80\x51\x95\x11\x18\xba\x4c\x3f\x6a\x35\x48\xb7\xaf\xd9\xd5\xd8\x82\xe9\x85\x44\xee\x18\xc3\x15\x8e\xd1\x7c\x1b\xc5\xaf\xda\x3e\x02\x28\x8f\x42\xf2\x1d\x38\x81\x1d\xc8\x89\x5b\x76\x34\x59\x6f\x69\xe1\x17\x76\xcd\xe6\xe8\xce\x20\xe5\x81\x44\x86\x1c\x73\x4d\xc4\xe4\xbd\x2c\xaf\xb7\x49\xb9\xa7\xc7\x2a\xb3\xd6\x14\x8f\x79\x78\xf8\xe2\x93\x98\xe6\xae\xf9\x7c\xf3\x2f\xcc\x13\x7b\xe8\x38\x91\xa9\xef\x45\xe4\x39\x74\x02\x94\x5a\xbc\xa1\xcf\xe9\xa5\x7f\x71\x93\x9a\x94\xc7\x5d\xc8\x86\xed\xfe\x7a\x44\x33\x12\x90\x31\x44\xac\x2a\xf9\x55\x03\x58\x90\x2b\xb8\x67\xaa\x68\xe1\xd4\xd5\x68\xbd\x8e\xe4\x41\xaf\x29\x39\x0d\x33\x31\x35\xe5\x50\xcc\x4d\xb0\xc5\xdc\x64\xeb\xc4\x9b\x35\x17\x94\xb5\x58\xf4\x28\x54\xd0\x25\xdc\xf2\x9d\x1a\xee\x8f\xc4\xec\x6c\xda\xdf\xa8\xb7\x41\x6b\x7e\x12\xe1\xa5\xd8\xfe\xc0\x31\x5a\x0f\x2e\x79\xc8\x93\x5b\xc8\x91\xd1\x9d\x20\xbc\xf9\xcd\x88\xdc\xbb\x4f\x78\x08\x53\x61\xd2\xfe\x7a\x0c\x8f\xd0\x20\xbd\xd4\xf1\x86\x97\x5b\x11\x37\x05\x5a\x90\x64\xb9\x1d\x27\xa6\xa7\x22\x72\xde\x20\xbb\x7a\x95\x72\xd2\x48\xba\x17\x0e\x75\x37\xb2\x49\x39\xa4\x91\x2e\x6d\x11\xad\x5f\x04\x11\x9e\xe5\x49\xe1\xde\x07\x1e\x1e\x90\x0b\x72\xdc\xd2\x93\x5b\xea\x0e\x33\x85\x16\x60\xff\x13\xdd\x04\x39\x21\xd8\x5c\xdf\xae\xd8\xb4\x88\xd7\x2c\x7d\xfd\x07\x51\xf8\xfa\x0f\x08\x52\x69\x27\x79\x06\x80\x37\x99\xde\x9f\xe7\xc1\x7f\xde\x97\x73\x07\x79\x30\x09\xc3\x23\x14\x7c\x80\x9c\x50\x88\x60\x26\x65\xb6\x33\xe0\xe0\x45\x63\x4c\x5b\x29\xee\x1b\x94\x08\x44\xfd\xbd\x5f\x97\x75\x08\x9d\x03\x51\x6d\x41\x64\x7b\x92\xa0\x6c\x55\xb2\x93\xa2\xf6\xa7\xed\x6b\x04\x69\x67\x28\xbc\x6f\x16\xa2\x1c\xec\x36\x1e\x4d\x92\xd8\x6d\x05\x3e\x3d\xf1\x74\x3c\xa1\x5f\x62\x23\xb8\xd8\x28\xa9\x7d\xa5\xbb\x6c\x8a\xa2\xc3\x7e\xa5\x1d\xf2\x31\x0d\x13\x23\xb1\x66\x4d\xad\x48\x91\x45\x7c\x3a\x25\xe3\x8a\x1b\x6e\xe8\x6a\xc8\xda\x72\x95\xa9\x5d\xf7\x1a\xe8\xde\x8c\xb2\x7a\x4a\x72\xe2\x41\x1b\x76\xc3\x0e\x12\x53\x78\x66\x32\x7e\xec\x23\x4e\x66\x3e\x22\x25\x9d\xde\x24\xb7\xa4\x37\x29\x25\x27\x39\xa1\x97\x37\x9e\xa4\xab\x0c\xc1\x86\x3a\x80\xee\x58\x5a\x74\xe8\x9b\x6a\x26\x57\x4f\x03\x65\xb2\xb3\xe4\x62\x7f\x96\x9c\x0a\x21\x81\xd0\x61\xb1\xbe\xb7\x59\x9f\xef\x6d\xda\x3a\x8b\x49\x3e\xb0\x60\x8d\x2d\xf9\x02\x45\xc8\xb5\x3f\xa7\x6e\xe8\x72\x9e\x99\x7e\x51\x9a\x9c\x5c\xdd\xc5\xb0\x49\x79\xfb\x4d\x85\xc7\x17\xba\x3d\x93\x24\xc0\xbc\x2e\xc9\x9a\x03\x34\xf3\xd6\x4d\xac\xd1\x58\xbd\x2e\x11\x8f\x60\x14\xa7\xae\xf0\xfa\xe2\x5e\xcf\x59\x71\xbf\xa2\x64\x96\xed\x0b\xc7\x81\x03\xdd\x61\x56\x38\xd7\xfb\x07\xaa\xd8\xff\x95\x07\xb4\x69\x6d\x51\x9a\xe5\x24\x2e\x86\xbe\x24\x8b\xe7\x79\x04\x0f\x4c\x4e\x68\x91\x2c\x86\xd6\x0a\x06\x19\xfb\x06\xb0\xa0\x72\xbc\xa9\x03\x45\xa4\x86\x1c\xc9\xaf\xfa\x56\x80\x20\xbe\xe0\xea\xe4\x80\x56\xfc\xff\xe7\xc3\xdb\x7b\x78\x93\xe6\xe4\xae\x79\x8e\x7d\xef\x84\xd5\x35\xb1\xfd\xbe\xd2\xa1\x94\x6d\x43\xcc\x1b\x12\x55\x29\x6c\x1a\x67\x79\x5c\x6e\x00\x80\x27\xed\x1f\xd4\xbe\xb4\x17\xd4\x32\x0d\x92\x2c\x1d\xa8\x1e\x79\x00\x7d\x78\x4d\xd5\xa6\x5b\xf0\xbe\x7d\xdd\xe1\x64\x24\xa8\x37\x65\xf9\xbb\x5b\x91\x93\x96\x11\x51\x0d\xb9\x35\xab\xc8\x1c\xf5\x0e\x08\x1d\x8a\x63\x5e\x87\x68\x39\xc9\xb2\xbe\x0b\xea\x94\xd6\xed\xfe\xc4\x57\x76\xfc\x62\xf7\xa8\x7b\x94\x48\x31\xef\x62\xbb\x90\x32\x4f\x7b\x6d\xdc\x16\x4e\xfb\xce\x2b\xd7\xbe\xcd\x24\xe4\xb7\x09\xdf\xed\xb1\xd3\xc2\xcb\x17\xc9\x9b\x28\x04\xb6\x9f\x4d\x6b\xae\xf5\x19\x46\x20\x5a\x0b\x1f\x32\x0b\xf5\x43\x32\xc7\x7b\xc5\x48\x5f\x01\x4f\x09\x1e\x0d\x72\xdc\xe2\x03\xd8\xb5\xfd\x49\xcf\x25\x22\x02\xe2\x46\x94\x2f\xd0\x21\x39\xa1\x39\x6d\xd7\xe2\xbe\x55\xfe\x32\x67\x21\x3a\x0e\x3a\xde\xb3\x82\x6d\xd0\x97\x27\x1b\x71\x3a\x78\x24\xa8\x01\x9d\x72\x1e\x96\x18\x5d\x3b\x49\x3d\x52\x26\xae\x60\xb7\xa6\x81\x00\xfe\x8f\x22\x52\x68\xf8\x5e\xa8\x01\x7c\x5f\xb4\xf0\xd5\x8e\xc8\x5d\x37\x43\xbf\xe4\x37\x36\x09\x59\x71\x9c\x52\x9c\xe5\x3c\x4b\x7b\x19\x1e\x99\x94\xcb\x5c\x29\x4b\x4b\x67\x8f\xd2\xc0\x37\x6e\x13\x54\x20\x9f\xbb\x50\xe4\x4c\x6f\x47\x24\xbf\xfc\x36\xc1\x13\xde\x63\x65\x58\x11\x48\x53\x50\x60\x28\xa9\x94\x93\x7c\xd9\xa4\xc8\xd4\xa0\x5f\x2a\xdd\x64\xe9\x5c\x6e\xc3\x0d\x10\x89\x9b\xca\x59\xd6\xe4\x71\x31\x74\x0d\x5e\xe5\x88\xb8\x5b\x46\x9e\x0a\x75\x31\xc4\x00\x27\x11\x7a\xa9\xd4\x6a\x8b\xb7\xcf\x38\x8f\xd7\xe2\xc4\x0e\xb0\xc1\x60\xf0\x9f\x8c\x08\x11\x7a\xb2\x31\xf8\xf7\x2f\xba\x9d\x3c\xd7\x90\xc2\x0b\xb5\x07\xd1\xf6\xc6\x14\x7f\xf9\xe5\xea\xbf\xe5\x70\x26\x28\xdc\x9c\xa0\x9e\xc6\x05\x6a\x5d\xdd\x26\xdc\xf5\x8a\x83\x5d\x8f\x2c\x8b\x81\xdf\x79\x70\x6a\xdb\x82\x8e\x8d\x93\x64\xe2\x54\x9e\x75\xaf\x45\xca\x2f\x8e\xca\x72\x42\xbe\xe2\x66\xf4\x88\x2f\xb2\xfd\xb7\xb3\x9b\x61\x8c\xdf\x27\x55\x94\x39\xe8\x4e\x6b\x61\xb6\x1a\x44\x88\xe6\x4e\x02\xbc\x22\x5c\x45\xf4\x9f\xbc\xc4\xf5\x7e\x45\x87\x5c\xc6\x8f\xcb\x9f\x30\x41\xfe\xbe\x7b\xe5\x80\x6a\xdf\xac\x35\xd3\x93\x72\x6d\x96\x06\xd8\x95\x29\x91\xa1\xcf\xd3\x30\xbc\x42\x14\xbb\xf3\x7e\xcf\xef\x25\x99\x59\xed\xd0\xba\x77\x84\x70\xc9\x47\xda\xac\x6b\x7a\xf9\xc4\x62\x99\x40\x19\x13\xb6\x65\x72\x4c\x1c\xf4\x61\x36\x5e\x8d\x53\x4c\x2a\xec\xc1\xbf\x8f\x89\x20\x27\x64\x73\x3f\x32\xa9\x13\xe6\x40\xea\x81\xa6\xce\xbb\xd4\x20\xff\x53\x92\xc5\xfb\x5e\x6b\x53\x6a\x38\x19\x58\xc1\xab\x7a\xe1\x40\x52\x41\x78\xba\xde\x25\xde\xbf\xd8\xfd\x05\x37\x8d\x55\x75\xd1\xbd\x0e\xd4\x93\xae\x92\x5a\xf3\xbb\x78\x1d\x80\xa2\x9f\x65\x51\xb3\x9f\x8a\x8e\xaf\xfc\xcd\x03\x59\xb5\xb9\x1d\x5b\x53\xce\x74\x0e\x3d\xef\xa1\x3d\x1d\xaf\x31\x2a\xa4\x36\x94\x57\x8f\xb7\xc1\xbe\x4b\x13\xaf\xc3\xc2\x20\xd4\xa1\x3e\x8e\xa8\x0f\xf2\x71\xa3\x42\x74\xe8\xf9\xee\xaa\x15\xc8\xa8\x6f\x50\x05\x58\x46\xb3\xb9\x2f\x52\xee\x9d\xa0\x76\x74\xde\x2d\xb9\xca\xa4\x0c\x89\xf2\x8b\xbf\xb8\x77\x96\x24\x46\x76\x6c\x92\x40\x33\x9c\x99\x10\x52\xa0\x43\x8f\x09\x7f\x9f\x12\xd1\x22\x9b\xe4\x3d\x3b\xeb\x56\x24\xd4\x2c\x90\x5f\x62\x4a\x89\x9b\x36\xfa\x74\x77\xc9\x87\xae\xf4\x86\x94\xd9\xba\x73\x6e\x0b\x29\x01\xca\x30\x4a\xac\xd9\x86\x4f\xd3\x72\xc3\xa5\x69\x20\x5a\xaf\xda\x3d\xf5\x42\x84\x6f\x76\x76\x50\xa5\xab\x31\xac\xd0\xad\x7b\x06\x08\x40\x64\x37\x37\xdd\xda\x04\x58\x22\x60\xea\x78\x18\x37\xdc\xaf\xd7\xdc\x19\x44\x0a\x9c\x48\xe4\xbd\x2c\x5d\x8b\xd3\x9e\xed\xef\x71\x1f\x50\xe7\x84\xa0\xc1\xb5\x63\xbe\x73\x78\x29\xbc\xb6\xea\x41\x49\x6f\x69\x4a\x29\xef\x8c\xdb\x2b\xd1\xf9\xeb\x00\xb9\xe2\x89\xe3\x5e\x39\xe4\x52\x35\xdd\xb7\x2e\xb3\x56\x9d\x49\x8c\xab\xc3\x04\x01\x9f\x40\x8f\xc2\x22\x86\x26\xba\x68\x8b\x60\x15\x7a\xdf\x53\x48\x7b\x71\x19\xbf\x66\x51\x48\x10\x9d\x0d\x37\x57\x54\x73\x23\xbc\xe8\xdc\xae\x64\xf9\x68\x17\xb5\x1a\x8f\x62\x0c\xe2\xe4\xb6\x4c\x1e\xbc\x04\x75\x5a\xc2\xd2\xf8\x0e\x45\x6a\xf0\x32\xc1\xec\xbb\x1b\x05\xb2\xe3\x47\x8d\xa9\xb2\x6f\x5f\x37\x1e\x8d\x6d\xbe\x62\x7b\x40\x48\x60\x9f\x44\xdf\x49\x8e\xb9\xa5\x64\x06\x99\x74\xbd\x75\xa2\x87\x22\xc2\xbb\x3e\x3b\x1e\xe7\x71\x91\xa5\xae\x65\x88\x95\x1e\x52\x9b\x6e\x83\xff\x75\x08\x39\x0a\x91\xbb\x45\x2a\xef\xb9\xee\x38\xcf\x5c\xc0\x2b\xaa\x77\xde\xf4\xc4\x03\x7d\xc5\x5e\x50\xfc\x3d\x88\x72\x55\xe6\x36\xed\x17\xb3\x81\x1c\x0f\xd4\x1e\x16\x8a\xcb\x6e\xbc\xa8\x69\x0d\xed\xc7\xdf\x9d\x3e\xe2\x23\x81\x57\x00\x9c\xc2\x6c\xb8\xe4\x62\x20\x14\x2b\x3f\x23\xcc\xdf\x0f\xc3\xab\x35\xe3\xd2\xc4\x69\xcd\x28\xc5\x6d\x17\x0a\xe4\xdc\xfe\xc0\x5f\x7e\xb9\x6b\x6c\x9e\x15\x63\xd3\x43\x7c\xa0\x6e\xa9\xee\x7a\xe4\xa4\xd1\x60\xd9\xb7\xaf\x9b\xc7\x7d\x91\x06\x79\x29\x58\xd4\x06\x14\x77\x93\xe3\x7c\x70\x6f\xd7\x14\xc5\x64\x04\x18\xa7\x7a\x91\xba\x0b\x95\x93\x46\x69\x65\xff\x62\x77\x4d\xf5\xbf\x55\x0d\x29\x20\x41\xee\x37\x5e\xd6\xfe\xc5\x6e\x2f\x1b\x8d\x13\x1b\x74\x0d\x84\x81\x51\x63\x63\xa8\x55\xc9\x37\x7f\xf9\x3f\xc5\xf5\x93\xe9\xc8\x92\xdf\x76\x42\xd1\xa0\x8a\x92\xb3\x99\xf0\xba\x3f\x24\x79\xf1\x0f\xa6\xa1\x55\xfa\x77\xc2\x80\x73\xc5\x29\xc0\x3b\x10\xd5\x1f\x27\x5d\xa0\xbb\x53\xea\x79\x3f\x3c\x1f\x46\xaf\xf4\xbc\x95\xe5\xdc\x1c\x8b\x0b\xdd\xb5\x38\x9f\x24\x36\xed\x71\xb5\xe0\x8f\xf0\xb2\xe4\xc4\x5f\x04\x02\xd1\x4e\x48\x1e\x81\x1e\x52\xe4\x4c\xb3\x8e\xf5\x42\x77\x3d\x4e\x5d\xf8\xe6\x7b\xa1\x5e\x2e\xfc\x1e\x4a\xea\x5a\x9e\xf8\xa2\x7f\x38\x4e\xe6\x2c\x5e\x9e\x94\x0e\x94\x50\xfd\x18\x20\xd9\xa7\x31\x27\xe4\x84\xaa\xb4\x93\x7c\x65\x8e\x54\x8e\x6e\xba\x8b\xd2\xf2\x36\x91\xa2\xc8\x6a\xe5\x4f\x6a\xf8\xe3\x16\xd4\xea\x73\x5d\x93\x67\x23\x03\x50\x3d\x56\x63\x91\x36\x16\x9d\x63\x97\xa0\xe8\x5b\x6a\x38\xc0\x3e\xff\x82\xdb\x39\xff\x03\x30\xac\x8f\x87\x17\x3c\x98\x68\xf9\x51\xd9\xf2\xc4\x9e\x3a\x4f\x78\xb3\x57\xb2\xa1\xa3\x04\xce\x04\x73\xb5\x4f\x98\x40\xf8\x49\x14\x6a\x7e\x4e\x93\xa3\x37\x49\x4c\xce\xaa\xfe\xbf\x4d\xba\xad\xbf\xdd\x98\x58\x5f\xa9\xfe\x13\x2c\x7d\xbc\x04\xbe\x17\xcd\xbf\xc0\x86\xa7\xc3\xb8\xb7\xea\xbc\x85\x99\x0b\x58\xbd\x67\x39\x26\xce\xf8\xd0\xe6\xb6\xef\xb4\x76\x48\xbf\x3b\xf8\x65\x8b\x68\x82\x54\x1f\xa2\x20\x9c\x5b\xe6\x59\x5c\x52\x2b\xec\x3e\x2b\x62\xdc\xaf\x69\x47\xbe\x92\x6d\xec\x0c\x68\xb5\x7f\x1a\x51\x1a\x76\x9c\xd3\xb0\xe3\xe8\x2e\x88\xfe\x0e\x81\xda\xfe\xa9\x0b\x71\x54\x97\x87\x65\xd9\x96\xb3\x14\x7e\x04\xda\x92\x20\xf2\xe9\x91\x46\x4d\x79\xdf\xbe\x6e\x51\x9a\x7e\x3c\x19\x49\xca\x23\x72\x5e\x4e\xc0\x56\xa5\xbd\x18\x07\x3c\x1a\xdb\x24\xf1\x10\x66\x5f\x65\x5f\x5c\x94\x7d\xee\x38\x11\x39\x6e\xd0\xc3\xe9\x25\x71\x6a\x77\x87\x25\xf0\x0a\xed\x08\x92\x74\x20\x74\xb9\x59\x47\x0f\x54\xcb\x0c\xe1\x3c\x34\xe8\x10\x0f\x40\x8c\x3a\x10\xb0\xc5\xc2\xa8\x0d\xea\xbe\x62\xf2\x91\xac\xd9\xa2\xd7\x3a\xa5\x92\xf1\x67\x8d\x88\x7c\xdf\xbe\x6e\x62\x7a\xab\x4a\xae\x06\x32\x4c\xa4\xb1\xe4\x84\xbc\xc1\x52\x29\x3d\x3c\xd6\x61\x16\xfd\xaf\x48\x0f\xe6\xd5\xf7\x50\x69\x66\x7b\x54\x55\x21\x47\xe0\x00\x55\x81\xd3\xd3\x9a\xfd\x3c\x3d\x91\xa3\x0c\x65\x9e\x81\x16\x2a\xd8\x10\x70\x17\x42\x82\x7d\x09\xb7\x24\x5f\xe6\x22\x0f\x81\xc6\xd6\xc8\x99\x8d\x69\xf4\xf2\xcb\xdd\xe5\x49\x51\xaa\x8e\xa1\xb7\x4f\x0a\x5a\x9b\x4d\x14\xc9\xe2\xe2\x52\x77\x92\xc6\x6b\x36\x17\x52\x8e\xb6\x37\xdd\x25\x68\xe3\x33\xac\x7d\xbf\xf8\xcb\xbf\x3c\x43\x88\xb4\x3f\x75\x11\x80\xea\x36\x85\xae\xed\xcd\xa0\xf6\x91\x2d\x2f\xc7\xba\x20\x29\x17\x93\x44\xff\x2f\x34\xf6\xc0\x03\x07\xba\x36\x1d\x24\x71\x31\x1c\xa9\xbe\x25\x06\x27\x12\x29\x39\x9e\x32\x93\xff\x9b\x93\xb8\x88\x4b\xdc\x00\x02\xb6\x0f\xdc\xc5\xc8\x71\xad\xad\x9b\x8f\x32\x2c\x33\xc8\x7c\xfe\x39\x9e\x8f\x9c\xb4\x6d\xe0\xcb\x59\xd2\x47\x71\x11\xeb\xfd\xc7\xe4\x34\xf2\x71\x9b\x0c\x01\xb8\x8e\x7e\x39\x93\xd0\x9f\x1a\x8a\x97\x82\x4b\xe8\xaa\x1d\x3b\x86\xa3\xd3\x16\xc4\xf6\xfe\x09\x01\x92\x3f\x89\x38\x8b\x4d\xfa\x0a\xdb\xc7\x2e\x76\xd4\x3d\x7d\x6f\x37\xb3\x5f\xc7\xac\xf4\x3f\xc5\x89\x5e\x00\x0f\xea\x4b\xdf\x12\x72\xf4\x63\x33\x48\xb3\xa2\x8c\x7b\x24\x0f\xfa\x26\xc9\x83\x06\xf1\x96\xde\xd0\x9a\xb1\xcd\x77\x06\xb0\xd4\x49\x12\xf2\x78\x16\x99\x0b\xae\xe8\x2c\xa6\x3f\xda\x74\x7f\xc9\x79\x3b\xc8\x38\xee\x50\xae\x34\xd3\x00\x57\x54\x9b\xd9\xd8\xe4\x6a\xde\xad\xae\x92\xa1\x0d\xfd\x9b\x6d\x9d\xb1\xf5\x4c\x47\x30\x80\x7d\xf2\xeb\x72\xd2\x58\x17\x5c\x7d\xa8\xcc\xad\x11\xaf\x0a\x75\x89\xef\x04\xc7\xf8\xc6\xab\xd5\x4c\xfa\xff\x03\x5e\xb3\x56\xa7\x2e\xab\xa8\x87\x35\x3d\xb0\x72\xca\x71\xbd\x92\x62\x47\x8f\x74\x16\x17\xb7\x3a\x35\x70\x21\x5a\xb5\xca\xcd\xee\x2c\x1c\xf2\x17\x40\xc0\xcc\xe3\x92\xd2\xe8\x9c\xc1\xdb\xc7\x73\x78\xc3\xed\x35\x12\xf2\x73\xf5\x1a\x4e\x81\x98\x2e\xd7\x88\x0c\xd2\xd4\xb7\x59\x38\xd4\x1d\x4d\x92\x32\xae\xf6\x79\xe7\xd5\x15\x10\xce\x3e\x7f\x3e\xd3\x16\x6e\x9b\x41\x6e\x75\x1d\xc0\xd5\x88\x1f\xb0\x9c\xb4\x69\x82\x9b\x7e\x2c\xb0\x21\x31\xf2\x88\xc2\xf8\x3c\x59\xd7\x1c\xcd\xbf\x4a\x40\x5b\x49\x7b\x95\x81\x1f\xca\x3b\xe3\x3c\xeb\x4f\x7a\x56\xf1\xa4\x48\x4a\xee\x23\xbd\x55\x1f\x1f\x37\x50\xb1\x78\x8b\xd6\x02\x7b\xf2\x60\x49\x3c\xe6\x76\x55\x55\x36\xaa\x1e\x2a\xfb\x1d\x6d\xbd\x31\xa5\xe5\xf3\x0e\x27\xbe\xeb\x66\x0c\x8c\x9f\x3a\x03\x76\xbc\x90\xc8\x9d\x56\x9e\x6e\x6a\x57\xb3\xac\x90\xa7\xa0\xad\x86\xea\x0b\xb4\x07\x11\x6e\xce\x25\x27\x4e\x20\xc3\xd7\x29\xff\xbd\xdb\xa4\x3c\x89\xbb\xfa\x0e\x85\xd5\x87\x6a\x78\xdf\x91\x1c\x76\x87\xbb\x7b\x0b\x28\x02\x44\xbe\x00\xc8\x68\xfd\xb9\xba\x55\x3f\x23\x3d\xee\xeb\x37\xb9\xe7\x76\x36\xc2\x00\x94\x3f\x27\x2b\x92\xcd\x46\x3f\xab\x4a\x08\x7a\x26\xf4\xb3\xf0\x75\x78\x2a\x72\xcc\x39\xb0\x2d\xca\x19\x17\xf6\x29\xda\xa1\xe3\xf5\xa5\x30\x34\x14\x6f\xd5\x52\x2c\x2c\xad\xe9\x0d\x67\xea\xce\xd2\x3e\xa7\xbf\x5c\x67\x26\x86\x17\xb6\x9e\x67\xa5\x9d\xab\xf5\xc2\xab\xdb\x56\x89\xcc\xea\xd1\xa8\x0e\x27\x21\xe9\xe9\xba\xde\xe4\xaa\x93\xed\xe5\xb6\x44\xf4\xe2\x89\x84\xd5\x40\x51\x9c\xc0\x53\xcc\x65\x2d\x7a\x59\x6e\xd1\xd9\x40\x3e\x05\x3b\x22\xc4\x7f\x1f\x12\x9c\xbe\x15\x9a\x97\x1b\x41\xa7\xb4\x55\xbe\xb7\x8b\x14\xee\x5f\xec\x7e\x59\xa2\x2a\xb0\xce\xcf\x46\x4e\x42\x50\x4e\xfc\x76\xb5\x6e\xe3\x42\x9c\xd0\xab\x60\x56\xdd\x34\x02\x54\x4e\x64\xc7\xb1\x0c\xdc\xa2\x8e\x2a\x92\xac\x5e\x59\xc0\x1c\x07\x37\x71\x16\x31\x31\xa6\xd7\x29\x44\xcb\xf2\x2f\x6e\x37\x93\x7f\x68\x13\xb7\xc8\x27\x7d\xdc\x9e\x76\x03\xa8\x33\xe0\x2f\xd7\xe9\x8e\xaf\x79\x02\x8f\xfa\xbb\x12\xf8\x8b\x9e\xca\x9d\xb6\x96\xdf\x20\xcf\xd6\x81\xc1\xf4\xa2\x8c\xd5\x45\xaa\x28\x23\xf5\x6d\x4c\x6f\x35\xc9\x06\xe4\x1d\x78\x96\xbc\x03\xcf\xfa\x8c\x7d\xb2\x92\xcd\x32\xcd\x42\x4a\x0e\x58\x92\x8f\x50\x11\xf0\xa3\x29\x55\x64\xb7\x7c\xdd\x71\x68\xd2\xbe\x95\xd2\x19\x42\x73\xb4\xab\x14\xee\x4a\xe6\x05\xb7\x10\xad\x2a\x53\xf2\x49\xe2\xbc\x9a\x0d\x9b\xc3\x2f\x1c\xe9\x29\x26\x0f\xee\xea\x7f\x66\xf5\x42\xa9\x5e\xaa\x1c\x58\xcb\xbe\x9b\xc4\xe9\xaa\xec\x86\x58\x91\xee\x63\xe3\x45\x70\xfd\x36\x21\x18\x3b\xf3\xad\x5a\x73\x26\xb7\x2b\x13\x55\x78\xc0\x27\x7f\x12\x85\xbf\xfa\xc9\x03\x69\xc7\x8e\x80\x32\x13\x3a\xd2\x37\x6b\xa8\x20\xf7\xf4\x54\x2d\x2b\xc4\xaf\x6b\x71\x32\x3b\x73\xd8\xcb\x7b\xa0\x4c\x89\x7d\x02\x84\x4b\xc4\xe6\x82\x60\xc3\xc9\x0f\x7c\x9b\x76\xe4\xd4\xe6\x42\x37\xf6\x53\xf6\x18\xfd\x34\x0a\xf6\x3b\x45\x69\x6d\x32\x32\xab\x1e\xf5\x8b\x90\xe8\xfa\x94\xe2\xa3\xeb\xd1\xd3\xdb\x4d\x01\x17\x0e\xed\x22\xb2\xf6\xa9\x3a\x52\xa6\xe3\x2d\xf6\x5e\x8f\x48\x14\xf5\xcf\x31\x6f\xb4\x28\x12\xb2\x9c\x1f\x32\xd7\xfb\x14\x41\x67\xa1\x39\x95\xe5\x8f\x04\x41\x7f\xd7\x16\x56\x55\x40\x19\x74\x67\x23\xca\x92\x00\x6e\x17\x07\xda\x88\xca\xe3\x9f\x4d\x89\x0a\xfd\x36\x79\xa4\xaa\x22\x92\xaf\x6f\x1f\xdc\xab\xff\xb2\x49\x1e\x4b\xc7\x28\x5d\x5f\xce\x4d\xda\x1b\x3a\x1d\x15\x4d\xb6\xc1\xf5\x57\x92\x70\x08\xa7\xfa\xd6\xdb\x5e\x11\x13\x3b\x0a\x77\x54\xb7\xbd\x7a\x2d\x4e\x1c\x7f\xc1\x83\x53\x0e\xfb\x45\xfc\xf3\x69\xc0\x52\xde\x6b\x8c\xf0\x03\x07\xba\xeb\xd9\x24\x95\xc2\x29\x12\xd3\xf3\x24\xd7\x2b\x22\x50\x08\x7f\xef\x34\x0a\x5e\x0b\x87\x34\xbb\x8a\x25\x5a\x02\x4a\xe3\xa1\xf9\x80\xd8\x68\xc2\x8b\x1d\xe7\xd2\x2e\x1b\xc9\x68\x44\xfc\x27\xa2\xa0\x3e\x10\xdd\x6d\x31\x4e\x49\x77\xe6\x33\xf6\x93\xf9\xac\x85\xcd\xf9\x42\x95\xf9\x3b\x64\xbb\x4a\x66\x5e\x77\x19\x26\xaa\x23\xe2\xae\x84\xa7\x71\x03\xef\x19\xb9\x2f\x78\x8f\xa8\xca\x6f\x4d\x1f\x21\xee\xe0\xff\x23\xc7\x95\x19\xab\x0f\xe2\xb8\x32\x63\xb5\x43\xa4\xd8\x3a\xf7\xf5\x41\x7c\xd7\x2f\xc6\x3a\xaa\x4b\x9b\xc3\xcb\x33\x36\x25\xf8\x80\x88\x81\x77\xcd\x87\x4a\xce\xdc\x66\xc0\x78\xbf\xd9\x6a\xd5\xdd\xb7\xc2\xa9\xa8\xbe\x00\x5b\x86\x18\xf5\xca\x49\x4b\x55\xb3\x1b\xa7\x76\x2d\x2e\xcd\xb2\xaa\x9f\x21\x44\x05\xa7\x44\x8e\xb9\x2c\x95\x8d\xec\x7a\x96\xaf\x62\x50\xa9\x59\x4d\xc7\xab\x76\x7c\x67\x4a\x9b\xe4\x87\x54\x8d\x7f\xc5\xa4\xa9\xdd\xe8\xb0\x61\x99\xbc\x70\x39\x69\xe4\xaf\x0b\x87\xba\x1b\x26\xb1\x08\x1f\x81\xe3\x40\x8d\x52\x8e\x37\x03\x32\xcb\x9a\xdc\x99\x3f\x1e\x94\xb6\xe8\x2d\xf7\xf6\xb0\xfa\x38\x9f\xbd\xad\xb3\x88\x8d\xe5\x9f\x9d\x48\x8d\x16\x46\xc2\x0a\x9b\x4d\x12\x97\x1d\xaa\x5e\x01\x05\x9d\x37\x64\x74\x60\x15\xfb\x88\x6a\x3d\x68\xb1\xa2\x8e\x70\x11\xbf\xa2\x0b\xf9\x33\x0d\x46\x91\xe8\x29\x7b\x13\x1e\xef\x4a\x7c\x96\xf4\x3d\xe2\xd2\x8e\x8a\x6d\x54\x1d\x1f\x22\x5c\x9e\x36\x6c\x7c\xb0\x7e\x76\xea\x9a\x8c\xd5\xc4\x50\xa5\xc8\x27\xc8\xff\x33\xcb\x72\x91\xa0\xf5\xcc\x39\xdf\xdd\x79\xbd\x91\x6b\xfa\x0e\xac\x99\xa9\x6b\xb5\xfb\x46\xc0\x3b\x6e\x0d\xd2\xe6\x63\x00\xb4\x3a\x5d\xa9\x0e\xd7\xbc\xb9\x16\x1e\xae\x68\x1c\xf7\x56\x6d\x39\x13\xd8\xf4\x10\x1d\x61\x35\x32\xa1\xc6\xfa\x40\xc4\x9a\x7c\xb6\x26\x53\x1c\x3e\x84\xf4\xbc\xb6\x91\xaa\xcc\xd7\x13\x8c\x1c\x1f\xc5\x25\x02\x11\x35\x4a\x77\xef\x0d\x03\xeb\x28\xe9\x29\x0b\xd8\x05\x5f\x3e\x3b\xbf\xfd\xf1\xbc\xfc\x72\x77\x94\x65\x69\x6c\x55\x4b\x0a\xf3\xec\xcd\x88\x0c\xfa\xdf\x6c\x08\x08\x57\x6b\x64\x9c\xf6\xed\xd8\xa6\x7d\x2d\x15\xe0\xe5\x9e\xe7\x4e\xd4\xf9\x46\x16\xbf\x7f\xb1\xbb\x66\xd2\x5e\x36\x59\xb3\x8a\xca\x56\x11\x35\x4a\x1a\xbf\x1b\x29\x39\x22\xb7\xa3\x38\x8d\x8b\x9e\xfe\x08\xa2\xae\xdd\x9b\xa1\x38\xba\xbb\x71\x4b\x68\xe3\x8c\xb2\xb4\xc0\x1b\x57\x59\x7c\xfc\x1c\xa2\xfd\x7b\x6c\xf7\x73\x81\x8d\xa6\xcc\x64\x30\x2c\xdc\xcb\x84\x62\xc1\x7d\xac\xc3\x1a\x30\x86\x50\xed\xa2\x17\xbf\x19\xc5\x85\x49\xcb\x61\x9e\x8d\xed\x36\x47\x18\xbf\x9e\x5e\x69\x24\x5f\xce\x5c\xb9\xb4\xa3\x31\xd6\x07\x65\xe3\x80\xfa\x22\xc7\x8d\x22\xa3\xfb\xa3\x6a\x01\x9b\x09\x5b\x13\x7a\xdf\x58\x16\xee\xf3\x5a\xf9\x7e\x4b\x09\x77\xa9\xbb\xe2\xad\x78\x54\x37\x94\x34\x67\x4f\x12\x6e\x63\x25\xcb\x6d\x3c\x48\x77\x85\x7c\xf9\x13\x37\xae\x41\x22\xbb\x8b\x72\x88\xfe\x12\x95\x81\xbf\x8b\x2f\xd4\xc2\x3b\x9e\x3a\x96\x20\xb4\xe6\x95\xfc\xa3\x55\x2d\x93\xe7\xf1\x9a\x15\x15\x7a\xc4\x25\x1d\xd4\x54\x10\xbd\x5c\x9b\xb2\x39\x7f\x0b\xce\xe1\x95\x2c\x76\x69\xc2\x96\x5b\x4c\xb6\xce\xfa\x4c\xce\xf4\xd7\xb2\x9e\x09\xdd\x3c\x6c\x93\x27\xa2\x40\x73\x3e\xc1\x96\x47\x26\x2f\xd5\x95\x04\x57\x7f\x96\xa8\x30\x67\x1b\x1e\xb7\xd5\x76\x9e\x4d\x4a\x61\x71\xc8\xf5\x2b\x60\xda\xed\x21\xda\x46\xaf\xd6\x17\x95\x5a\x6c\xaa\x71\x2c\x39\x67\xc9\x59\xb2\xf3\xc3\x90\xc3\xda\x87\x46\x80\x94\x16\x5d\x88\xa5\x3c\xda\x67\x48\x5a\x06\xb2\x22\x59\x3a\x43\xea\xfd\xe7\xf0\x35\x1e\x4b\xe8\x13\xaf\xbb\x41\xc5\x3d\xae\x42\x51\xef\xff\x8f\x6f\xfe\x74\x1a\xa4\x08\x44\x66\x1d\x6b\xf5\x1b\x34\x3a\xe4\xae\x77\x56\x17\xe4\x1d\x24\x17\x0e\xa9\x54\x17\xa6\x97\xfc\x43\xe4\x62\x7e\xd4\x41\x8e\x91\x65\xe6\x31\x70\xf1\x55\xdd\xeb\xd9\x1a\x3e\xc2\xe6\x65\xbc\x9c\x58\x57\x18\xd1\x88\x81\x64\xc5\x44\xc2\x02\x19\xde\x4d\xf2\xf4\xc4\xd3\xc6\x74\x38\x47\x3c\x80\xdd\x80\xbe\xa2\xbd\xfc\x51\xf4\xd0\xcf\xeb\x21\xe9\xb0\xda\x72\xb6\xb3\x6f\x9f\xe0\x66\x6f\x11\xfa\x12\xf8\x29\x00\xfd\x6f\x38\x49\x77\xe1\x14\x35\x6c\x3a\xdc\x0c\x15\xce\x15\x35\x03\xd5\x6d\xb1\x43\x2e\x8c\x41\xb4\x6d\x92\xe6\x76\x64\xf2\x55\xb3\x9c\x58\xaa\x1f\x9d\x9e\x06\xa6\x23\xea\xfb\xaa\xd5\xf8\x20\x98\x11\x3a\xe4\x4e\x32\x5f\xe4\xeb\xa7\x35\x10\x7e\x80\x3a\xef\x42\xff\x43\x19\x2d\xee\x45\x68\x56\xd6\x16\xb7\x26\x56\x39\x52\x12\x86\x23\x56\xd5\x98\xfc\x31\x0a\x49\xf3\xc4\x89\xa0\xa2\xce\x73\x01\xf1\x22\xf9\xa1\xab\xd5\xcd\x05\x54\x39\xb4\xbc\xf7\x24\x11\x49\x8a\xd2\xe6\xa9\x13\xef\x40\x8d\x05\x3c\x33\xdc\xc4\x7f\x89\x8d\x4e\x87\x56\xf5\x4b\x84\x49\x54\x85\xcd\xfb\xac\x31\x7b\x9e\x20\x1f\x03\x33\x5a\x4e\x2c\xe0\x4b\x18\x3c\x6f\x6c\xcb\x47\x3c\x75\x18\x44\x17\xcc\x83\x3a\x39\xad\x30\x1b\x4f\xb9\x27\x86\x75\xf1\x1a\xcb\xe3\x1d\x73\x02\x8f\x28\xbf\x89\xfd\x39\xba\x15\x27\xa7\xc1\xb2\xfd\x33\xa6\x8a\x5d\x88\x3a\x5f\xfb\x35\x6f\x76\x55\xdd\x90\x7a\x3c\x77\x7e\xf5\x1b\x52\x0b\x9d\x9d\x0f\xc4\x86\xb7\x31\x27\xbd\xa6\xd8\x61\x2f\x80\xf0\x19\x17\xb4\x80\xf6\xc0\x60\xfb\xd1\x94\xca\x5e\x97\xdc\x44\x45\x1c\x34\xe7\x76\x52\xc1\xb2\x51\xbb\xa3\x97\x15\x58\x36\xab\xd8\xc1\xfb\x4a\x04\x2b\xb5\xb3\x8d\x21\xe8\xb4\xe9\x9c\x70\x4b\x16\xaf\x9a\x19\x8a\x6e\xee\x93\xf2\xff\xac\x73\x5b\x72\x4b\xef\xeb\x4f\xcd\x3f\x41\x2b\x58\x5a\x0a\x9a\x50\xad\x58\x3b\xe4\xd1\xca\x0f\x3f\x49\xec\x4e\x12\xaf\xbd\xc0\xc6\x18\x17\x08\xc9\x24\x36\x0e\x80\x68\xfd\x49\x44\xad\x2c\xac\x41\xf2\x0f\xd4\xca\xb2\xaf\xda\xde\xa4\x8c\xd7\xec\x63\x6e\x64\x52\x22\xee\x7b\x47\x48\x8b\x84\x72\xee\xc6\x0a\xc2\xe9\x6b\x0e\x27\xac\x54\x74\xf7\x5b\x5e\x0b\xd2\xc7\x82\x08\x3a\x91\x58\x48\x31\xc2\xfb\xb7\x1e\xf6\xf2\xb6\x9f\x4d\xc3\xec\xf9\x64\x4a\x2c\x6c\xe0\x29\x94\x4e\xd5\x22\xa3\xd5\xcf\x4d\xc1\x8a\x9d\x08\x55\xff\x2e\x85\xad\x7f\x97\x0d\x1d\x7a\x68\xdc\xc5\x59\xfa\x48\xdd\x3d\x2f\xb8\x31\xb8\x91\x82\x28\xf9\x23\x87\x81\x40\x6e\xfa\x0e\x41\xec\x20\x03\x2f\xde\x48\x10\x70\x52\xb7\x58\x6c\xfd\x68\xee\x7d\x18\x91\xf7\xb1\x68\xd4\x69\x41\xdd\x3d\x2e\xa4\xe3\x77\x29\xf2\xb3\xaf\x9a\x51\x1c\x14\xd2\xb1\x07\x01\x01\x25\xc7\x2d\x12\x4b\xcf\x75\x47\xd9\x60\x92\x40\x48\x8f\xc5\xee\x49\xd3\xde\xb7\x23\x6c\x61\xd3\x12\xa8\x0f\x2c\x34\x77\xdd\xcd\xa3\xf0\x7a\x3a\xa2\xba\xda\x05\xaa\x36\x0e\xb2\x7e\xdf\x16\x75\x05\x0d\xd2\x6d\x3f\xe9\x35\x27\x73\x6b\xfa\x7b\xdc\xe8\x71\x13\xe1\x6f\x0b\x80\x50\x9f\x2d\x99\xf2\x9c\x67\xce\x26\x32\x1f\x6d\xfd\x87\x40\xef\xf1\xcd\xb0\x05\x48\x15\x07\x71\xe2\xc3\xdc\xcb\x7e\xcf\xa3\x18\x4c\x9e\x4d\x82\x02\x90\xe8\x66\x46\x61\x23\x73\x4e\xc3\x9e\x58\x66\xfa\x75\x36\x75\xd0\x55\x07\x60\x98\x09\xa9\xf2\x99\x68\x9b\xe8\xd2\xc1\xbd\x55\x84\xf9\x64\xc7\xfb\x19\x5c\xc5\x32\x87\x65\x60\xa7\x13\x2d\x10\x5e\x29\xa2\x47\x4c\x8b\xa7\x5c\xda\xb7\xb5\x53\x28\x8f\x5a\xb9\x0f\x12\x55\xff\xeb\x5f\x46\xc9\xc2\xe3\xac\xaa\xeb\xc4\x4b\xba\x88\x69\xe4\x1e\xdc\xe1\x9f\x73\x0c\x19\x2c\x92\xbb\xe6\x49\x05\xf2\xc4\x94\x2c\xdb\xfe\x98\x6c\xba\x7e\x7d\x4a\xee\xb5\xff\x24\x0a\x54\x89\x3d\x9b\x4f\x72\x37\x60\x5d\xa5\x64\x30\xc3\x45\x4e\x41\x4e\x1a\x51\xfa\xc2\xa1\x6e\x6e\x97\x27\x2b\x2b\x9d\xb0\x11\xe3\xc1\x6b\x39\x70\x7b\xca\x72\xe8\x79\xc7\x56\x71\xc4\xbe\x17\xf7\x4a\xa5\x0f\x4d\x3d\x39\x0e\x8d\x18\x53\x14\xb6\x3f\x47\x08\x67\x0c\x24\x3c\xb6\xf3\x8c\x0d\xdb\xed\x32\x03\x64\x2e\xb3\x18\x30\x78\xfc\x37\x6a\xea\x00\xaf\x89\x07\x05\xa0\xb8\xb7\xa6\x64\xc6\x7c\x8b\x68\xc6\x83\xc9\x06\x02\x00\x49\x85\xea\x82\x25\x5c\xef\xdb\xb0\xf6\x91\x00\xcf\x80\x42\x1b\xea\x50\x90\x8b\x56\xcc\x2f\x89\x76\x9f\xc4\xe6\xa2\x6e\xdf\x14\x83\x5f\x46\x21\x54\x2a\x21\x11\x21\x52\x01\x4f\x96\xe3\x28\x08\xa4\x9c\xe0\xca\xed\xc7\xf5\x8d\x3b\xee\x3d\x1c\x42\xfa\x23\xe4\xea\x77\x82\x1d\x74\x7f\x8a\x65\x17\xe5\x95\x5b\x11\x95\x6f\x54\x3a\x01\xc5\x12\xa7\x3e\xf3\x9c\xf7\xb8\xaa\xee\x0d\xf3\x59\x98\x2b\x35\x46\xb7\xea\x1d\x05\xc0\x4b\xb5\x58\xaf\xc6\xe2\x10\xa0\xea\x11\x4e\x0f\x4f\x69\xbf\x4d\x0b\xe5\x32\x37\x6b\xd6\xb9\xaa\xe1\x42\x6a\x46\xdb\xea\xc6\xfd\x1f\x3d\x20\x3c\x5c\xce\xed\x6b\x43\x57\x2c\x43\xfb\x46\xfd\x5f\xdc\x1f\x2b\x06\x5e\x97\x8f\x5e\x6e\xed\x58\x69\x60\xde\xd7\xb6\xba\x5f\xf5\xb5\x0d\xa5\x92\xd5\xb8\xb7\xaa\x57\x84\x5e\xac\xc8\x0b\xc8\x09\x67\x64\x55\x60\x5f\xd8\xbe\x6b\x80\xe8\x4e\xe1\x9e\x16\xe0\x09\xc0\xdd\xe3\x59\x49\x0d\x14\x6f\xe8\xde\xb4\xd6\xd0\x12\x79\xd5\xea\x0d\x8a\x8f\xc5\x34\x60\x30\xae\x10\x43\x64\x38\x49\xfb\xb9\xed\x17\x4e\x18\x0f\xbb\x80\x60\x60\x30\x26\x8f\x46\xa4\xd1\x70\x94\x25\xbd\x00\xfb\x94\x3f\x99\x86\xc0\xac\x05\x3b\xbf\xb7\x6b\xbc\x88\x80\xf0\xbf\x11\x97\x28\x19\xbc\x26\x7b\x58\x6e\xcc\xd2\xba\x73\x8a\x04\xce\x3e\xa4\xd0\xc4\xad\xf1\xa1\x4e\xe6\x41\x20\x59\xb6\xea\xbb\x6a\xb8\xea\x19\xb7\x33\xa0\xc6\x7a\x82\x35\xe7\x1a\x25\xe8\xaf\x74\xcb\x61\x3e\x29\x4a\x07\x66\xf6\xa2\x85\x3e\xcf\x79\x9f\x5b\x58\xd7\x1a\xb5\xb4\x97\x5f\xee\xe6\x46\x54\xe5\xb8\x9b\xed\x2e\x45\x55\xe2\x3c\x7e\xd4\xa4\xab\x40\x43\x2d\x7a\xf8\x4b\xd8\xcc\xce\xd1\x46\xdc\x4b\xe2\xd4\xc1\x70\xdc\xe3\x13\x5e\x52\x44\x62\xe6\x27\xc9\x30\xb6\xca\x0c\x0b\xef\x40\xb8\x24\x2b\xda\xb7\x09\x06\xfa\x6d\xea\xae\x3b\xdf\x9a\x62\x86\x3e\x79\xa9\x16\xac\xbb\xad\x56\x5a\x90\x51\xd8\x0e\x87\x93\x64\xd5\x8d\x7b\xf5\x17\x73\xb7\x2b\x27\x44\xb0\x2b\xe2\x14\x9f\x63\xdb\x20\x75\x0a\x0a\x7c\xf0\x32\x1b\xb9\x4f\x79\x49\xa4\x40\xdc\x38\x4f\x89\x8f\xe3\xc8\xe6\xc2\xa5\xf4\xa8\x2b\x1f\xd0\x36\xc1\x5a\x8b\x8b\x4b\xdd\x24\x1b\xc4\xd5\x42\xa2\xd3\x0f\x99\xc0\x6f\x31\x58\xed\xb7\xe8\x8a\x5d\xf9\x27\xd4\x3e\x65\xee\xcb\x49\xa3\x80\xed\x94\xe6\x92\x1a\x6e\x44\x48\x01\x0a\xed\x69\x69\xd9\x98\x49\x3f\xce\xdc\x6f\x78\xe7\xaf\x03\x07\xf4\x98\x84\xbd\x96\x93\x89\xc5\x04\x16\xf3\x40\x5c\x8b\x3a\x09\x3e\x5e\xd3\xf2\x4c\xbf\xe8\xc6\x03\x62\xce\x5d\xf3\x55\x9a\x2e\x15\x5b\x8c\x3e\x94\xd9\x44\x2d\x5a\x05\xdf\x42\x61\xec\x89\xf9\x20\xbb\x7f\x13\xc1\x07\x92\x3c\x38\x9f\x23\x20\xba\x36\xad\x12\x31\x3c\xb3\x93\x82\xa3\xa8\x51\x67\x5c\x6c\xf0\xdb\x5f\x72\x0a\xbd\x60\x02\xcc\x6d\x56\x51\xb1\x77\x9e\x0b\x3b\xe2\x99\xa8\xf3\x2b\x2f\x78\x74\x3e\x5e\x8d\x67\xfe\x7c\xfd\x70\xe0\xc8\x57\x4f\x16\x69\xce\x55\x50\xc3\x34\x10\x0e\x11\xe5\x55\x37\x4a\x51\x59\xfa\xd7\x2e\x18\x43\x22\xf7\xbd\xda\x33\x4a\xfa\xc5\x93\xd5\x85\x31\x5f\x0e\x8f\x68\x06\xb8\x50\x6f\xf0\x56\xed\xb4\x08\xe4\xef\x63\xa3\xf3\xf0\x99\xea\x11\x8b\x11\x2b\x23\xf3\xde\x26\x7f\xbd\xd7\xdd\x03\xc3\x93\xdc\xc2\x6a\x89\x01\x7f\x11\x5b\x17\xc6\xea\x5b\x30\x0b\xf1\x7a\x9b\xd5\x5d\x62\x9a\x9d\x72\x59\xad\xe2\xba\x3b\x5e\x36\xf9\x21\x98\x70\xa0\x38\xf8\x81\x8f\xa1\x7b\x26\x97\x06\x37\x02\x9c\xeb\x94\x2d\x3c\xf3\xb4\x84\x8c\x58\xed\xf6\xcc\xb7\x54\x9b\x4d\x9a\x66\x93\xb4\x27\x1a\x68\x78\x69\x33\xf3\xd5\x1b\x40\x14\x72\x81\x09\x35\x3f\x62\xfb\xab\x2b\xad\x3e\xf8\xcb\xb6\x88\xed\x40\xcb\x3a\x78\x56\x62\xbf\x2a\x27\x8d\xf2\x89\xe3\x50\x66\x19\xa2\x41\x31\x70\x74\x43\x53\xcd\x1c\x35\xd4\x1c\xe4\xa6\x3f\xa9\xb2\xb7\xd9\x50\x26\xbd\x41\xba\xba\x9f\x91\xbe\xdd\x11\x5e\x44\xfe\x38\x98\x0e\x99\xc2\x26\x71\xca\x82\x9c\xff\x9d\xfb\x2b\xac\xce\xe7\xea\x39\x7c\x30\x73\x74\x5d\x37\x2d\x0c\x8b\x1e\x66\xc4\x9d\xae\x93\xc4\x9b\x5f\x1f\x66\x49\xb2\xe1\x90\xfe\x1e\x5e\xec\x9d\x5a\xb0\x7f\xe3\x8d\xbc\xdd\x02\xaa\x7a\xa9\x5b\xf4\x62\xcf\x40\xc0\x98\xba\xc7\x76\xfe\xf7\xa8\x9d\x95\x8c\x8b\x5d\xd5\xd0\x0b\x09\xb7\x77\x9a\x9b\x86\x5c\x7a\xf7\x26\xe9\xb9\x0e\xa7\xe1\x81\x6d\x61\x78\x63\x10\x7f\x69\x9e\x58\xa1\x4d\xac\x32\x54\x91\x7b\xd9\x48\x2c\x5e\x7d\x1f\xa4\x1a\xd4\xda\x07\x69\x0a\xec\x35\x1c\xce\x8e\x90\xc3\xd9\x11\xba\x95\xf5\xa4\xd8\x49\x2c\x42\xe8\x75\x6a\x1d\x34\xe0\xbe\x85\x56\xae\xf5\xb2\x50\x89\x3d\xca\x86\x1d\x4f\xcf\x13\x93\x20\x4d\x6d\x7f\x17\x81\x93\x22\x42\x5f\xfc\xe3\x28\x00\xee\xf1\x33\x82\x5b\x41\x3a\x20\x6a\x69\x98\x9f\xc8\xcd\x1f\x41\x32\xa9\x5b\x55\x0b\x96\x70\x18\x0f\x86\x36\x9f\x71\x23\x09\x25\xc3\x6b\x08\xe5\x31\x43\x1f\x9a\x0f\x5b\xf1\x99\x69\x33\x45\x3c\x7c\x70\xaf\xc3\x3e\xa8\xab\x74\xf5\xb8\xb0\x4e\x1c\xc3\xf4\x53\x77\xe6\x6a\x2f\x55\x1b\xaa\x6a\x61\x56\x48\x77\x75\xab\x18\x77\x47\xa3\x60\x86\xf6\x47\x53\xf6\xa5\xf9\x8c\xe2\xa8\x8b\x88\xc4\xd4\x2f\x9e\xb6\xf2\xb7\xfd\xbc\x19\xc5\x69\xdf\xdb\x2a\xa0\xb6\x78\x9f\x84\x3a\xaf\x10\xc7\x7c\xcf\x7c\x93\x39\xff\x92\x6b\x80\x0f\xf2\x50\xf0\x45\x95\xf5\x34\x19\xa2\x9e\xa6\xd6\xe2\x20\x5e\xb3\xe9\xee\x30\x68\x6e\x53\x8a\xfd\x90\x93\x9e\x15\x67\x0b\xac\x4e\x58\x0a\xa4\xa6\xa9\x2c\xf3\x00\xe9\x00\x1d\x4d\x8c\xc1\xf0\x2e\xb5\xe7\xd5\x26\x94\x51\xac\x5b\x3b\x96\x58\x55\x61\x82\x44\xb6\x39\x3b\x7d\x7a\x9b\x02\xa8\x53\x26\xf3\x96\xb2\xd0\x1b\x95\xe3\xf9\xc7\xd8\xbc\xaa\xd8\x1d\x6e\xf7\x3b\xdc\xd0\xbb\x2c\x6b\x89\xc7\xbb\x2e\x2e\xaa\xc3\x0a\x77\xdb\x8f\x00\x0b\xea\x45\xcc\xf7\x2d\x78\x53\x26\x46\xeb\x53\xb5\xb9\x1f\xab\x4e\x4c\x1b\x86\xb8\x59\x1e\x5a\xe8\xda\x6f\x4e\x44\xdd\x40\xfa\x50\x11\xf7\xa4\xda\xa0\xb3\x45\x31\xc9\x45\x0e\xd1\x6b\xd6\xbe\xb8\xd7\x6b\xd6\x92\xb0\x41\x9e\xad\xda\xd4\xe1\x67\x3c\x90\xce\x03\xa4\xce\xb2\xb6\x87\x53\xa6\x00\xbf\x4b\x69\x8d\xee\x26\xd4\xff\xc2\xbd\x43\x21\x64\x4e\x6b\x91\x63\xf0\xa3\xba\xef\x33\x82\x38\x5d\xcb\x92\x35\xbb\x33\x28\xae\x5e\x8d\x28\x8e\x17\x96\x1c\x12\xe5\x47\xe6\xc3\xf2\xf8\xd0\x66\x90\xec\x3b\xc1\x86\x2a\x17\xc8\x38\x72\x38\xe9\x77\x02\x03\x10\x46\x1b\xaa\x5e\xcb\xa5\xd3\x71\x6e\x8b\xc2\xf6\x67\x58\x5a\x10\x1b\x96\x6a\x15\x90\xd8\xd4\xdd\x86\xe1\x90\xeb\x9b\x38\x18\x79\xa8\xf8\x21\x2a\x05\x39\x43\x8e\xdb\xd0\x88\xa5\x59\x45\xd9\x04\x3d\x19\xe1\xec\xca\x49\x23\x40\x7d\x71\xef\x62\xb7\x1c\x9a\x72\x36\x60\xfe\xef\xb9\xe2\x81\x0a\x66\xb9\x20\x0c\xa4\xda\x5b\x6e\x09\x10\xe1\xff\x46\x2f\x7b\xe9\xe0\x52\xd7\x94\xa5\x55\xd3\x93\x50\x84\xae\x95\xa7\x9b\x29\xd8\xc8\xc4\x69\xb5\x7f\x1e\x54\x02\xf1\x16\x91\x5a\xc5\x58\x58\xf9\x19\x8f\x7b\xe8\x61\x5e\x4e\x24\x19\x47\x5b\x51\xf8\x28\x72\xd2\xd8\xcf\xbe\xd2\x2d\xec\xd8\x54\x2b\xd2\x6c\x78\x7e\xbb\xb1\xb8\xb3\xd3\x99\x46\x72\x01\x35\x72\xa2\x4d\x20\xba\x88\xcb\x9e\x64\x31\x1e\x1b\xe6\x73\xce\x73\x6d\x4a\xf1\x23\xd3\xb7\xce\x50\x48\x45\x27\xdd\xa0\x46\x44\xfa\xed\x28\x44\x32\x6f\x4f\x49\x9e\xe7\x5e\xad\x32\x55\x85\xb4\x54\xb6\x3a\x17\x75\xbe\xfc\x65\x59\x25\xa5\xef\xa1\xc6\xd0\xa4\x3b\x75\x13\x09\x81\xf8\x13\x45\xc1\x40\xf1\x26\x1a\x4e\xf2\xf7\xd8\x14\x50\x31\xb9\x4d\xec\xca\x8e\x8b\xe8\x85\x2a\xe1\xf2\x6a\xa4\xc9\x7f\xe8\x6a\xe1\x5a\x1a\x0e\xb1\xcf\xc5\x96\xca\x15\x34\x20\xee\xd5\x0b\x5c\xcf\x72\xef\xb4\x18\x57\xeb\xea\x9a\xc4\x1a\x3e\xe5\xad\xee\x55\x53\xde\xa7\xb8\x1d\xea\xd4\xa6\x9f\x70\x31\x35\x6a\x7b\x27\xf0\x4b\x58\xb2\x77\xb9\x49\x8d\x80\xf6\x11\xf4\x39\x31\xb0\x1e\x85\xa7\x85\x37\xd7\x0a\xfe\x1f\xe7\x31\xdf\x81\x11\xf9\xaf\x65\xef\x14\xc5\x1b\xf2\x75\xbc\x0e\x63\x08\xf9\xcd\x28\x98\x50\x9c\x60\xce\xf2\xbb\xae\x38\x82\x38\x45\xb0\x00\x88\x98\x1e\x73\x9a\xac\xc8\x15\x8f\x90\x82\x40\x6e\x93\x99\x80\xa8\xbc\xef\xbe\x17\xbb\xee\xad\x1a\x2e\xa9\x6d\xfb\x82\xfb\x47\x87\x6c\x81\xd0\xdb\x96\x63\x0f\x17\x1d\x66\xa9\xdd\x98\x0d\x0b\xd0\x9e\x79\xb2\x5d\x38\x55\xb7\xb5\xa8\xfe\x5e\x92\xc3\x29\x37\xa5\x92\x2c\x47\x48\x80\x76\xcc\x3d\x5a\x8a\xce\x4d\xd9\xcc\x9c\x60\x04\xf6\xd5\x9e\xad\xd2\x0d\x1f\x77\xc1\xe3\x00\x45\xf0\xb9\xf9\x10\x97\x3c\x85\xfa\x0e\x22\xf3\xd9\xf9\x36\xb0\xc6\xba\x49\x51\xaa\xd1\x82\xa5\xbb\x6b\x5c\xf5\x8d\x88\xac\x26\xa7\xa1\x6d\x52\x58\x93\xf7\x86\x36\x2f\x6a\x4b\xf1\x5d\xae\x12\x8b\x41\x07\x1a\xe6\x0f\xcd\x07\x6c\xdc\x20\x2b\xcb\x24\xb6\xcb\x33\x94\xd7\x5d\x25\xc7\x37\xa9\x0f\xa9\xf7\x44\x73\x69\x5b\xce\xac\xaf\x0e\x89\x79\x20\xa6\xa3\x3a\x09\x7a\xcd\xa5\x49\x2e\x25\x75\xdc\xc1\x15\xd2\x7f\xba\xd2\x46\x93\xca\xf2\x81\x49\xe3\xd7\xb6\x11\xbb\x3e\x27\x62\x57\x9b\x09\xf1\x4b\x5d\xb3\xb2\x62\x7b\x3e\x2c\x43\xa6\x0d\x2c\xbf\x1c\x4f\x9f\x65\x5a\xe6\x72\x9c\x1a\x2f\x85\xaf\x46\x4c\x1d\x2f\xd5\x71\x9d\xd8\x09\x63\x93\xda\x64\x57\xe8\x87\xbc\xef\x5e\x88\xc0\xeb\xdc\x96\xa2\x50\x3b\x37\x52\xd0\x22\x9b\x73\xb1\x1a\xbd\x4e\x5d\x77\xfe\x35\xd6\x11\xf9\x54\x03\xd4\x54\x85\x2e\xe2\xc5\xe5\xfe\x48\x29\x97\x81\xfd\xfd\x19\xb9\xc0\x8d\x4d\x5e\xa6\x36\x2f\x86\xf1\x58\xa0\x72\xd8\x5c\x6e\xd1\x46\x73\x8b\x92\x93\x43\x07\x9f\x9f\xe1\xee\x0b\x36\x6e\x7c\xee\xd1\x79\xca\x34\xe7\x36\x43\x55\x2b\x89\x85\x20\x88\x00\xe7\x87\x78\xd1\x72\xd2\x18\x1b\x0b\x87\xba\xe3\xd8\xf6\x04\xec\xe4\xe1\x54\xc1\x50\xbf\xa1\xca\xb7\x6f\x5f\x77\x43\x10\x19\x9e\x76\xe1\x23\x9c\xf7\x65\xc9\xd2\xd2\x58\x30\xbf\xb9\xd7\xa6\xdb\xe6\x18\x10\xbe\x69\xa7\x44\x95\x10\x36\xff\x46\x9b\xd7\x5a\x3c\x1a\x4f\x52\x27\x6e\x16\x4c\x22\x91\x77\xca\x31\x41\x38\x5c\xe7\x3b\x76\xb1\x72\x01\x57\x21\x2c\xcd\xb7\x5d\x8a\x82\x2b\x3b\x47\x84\x87\x1d\xa8\xc9\xc8\x3f\x60\x20\xc8\x02\x1a\x91\xa1\xfa\x51\x12\xee\x71\x2d\x9c\x97\x7c\xa8\xfa\x40\x53\xff\xb8\x28\xe2\x4c\x5e\x4d\x9b\xc0\xff\xf6\xdd\xfd\xf0\x52\x17\x48\xbe\x4e\xcd\xd7\xc5\x5d\x85\x9c\xb0\xe8\x5f\x6e\x4d\x69\x67\x6a\x34\x85\xc0\x88\xba\x45\x0d\xf8\x59\x5a\x58\x72\xbb\x42\xbd\xc8\xb6\x47\xf9\x24\x35\xa6\xdd\x53\xdc\xe9\x66\x8d\xc2\x2d\xdd\xd5\x20\x01\x43\x40\x28\x4a\xd1\x35\xad\x53\x37\x83\xb0\x54\x4b\x1e\xa4\xea\x09\x4f\x92\x75\x43\x3c\x32\xf9\x06\x4b\x76\xff\x00\x7b\xa1\x9c\x10\x23\x39\x89\x4b\x9b\x9b\x9e\x0c\x00\x64\xd4\x70\x6b\x92\xe3\x68\x3b\x97\xe7\x2b\xdd\x61\xb6\xde\x71\x78\x27\x25\x77\xb8\xf7\x20\x27\x04\x91\x5d\x45\x12\x76\xd8\xb7\xad\x00\xb6\x57\x18\xea\x63\x14\x06\x8d\xec\x63\xee\xf6\xb5\x53\x15\x40\x60\xb3\xf3\xa4\x6b\x79\x72\x1a\x6c\x27\x6f\xb8\xa9\xe2\x31\x25\x5e\xbd\xe0\x8f\xa3\x40\x2f\xbc\xce\x96\x40\xd2\x55\x15\x3b\x3d\xac\x58\xea\xad\xe7\x2e\x52\x25\x81\xdc\xa3\xd2\xe0\xba\x5a\xe4\x80\xa2\x39\x4e\x59\xa3\x93\x60\x89\x13\xdb\x77\x59\xa3\x5f\xeb\xaa\x2b\x95\x13\x2a\x7a\x57\x31\x6a\x3f\x7b\xb5\x53\x17\x91\x23\x8b\x41\xd2\x8d\x4d\x07\x71\x6a\x67\x49\xeb\xf8\x73\xbc\x65\x84\x24\xff\x47\x14\x0a\x5d\xff\x94\x45\xae\x1a\x23\xde\x21\x44\x1d\xe0\x84\x31\xa1\xe7\x58\xae\xa7\x59\x0b\xdf\xbf\xe8\x48\xc0\x73\xd5\x83\xc5\xaf\x5f\x8b\x02\x36\xf2\x1e\x52\x57\x5f\x7c\xf5\x01\xc5\x55\xcc\x6d\x24\x14\x4d\x31\xda\x83\x7b\xbb\x66\x2d\x8b\xfb\x7e\x6e\xa0\x0f\x74\x9a\x7a\x42\xad\x34\xd0\x49\x3a\x4e\xac\x29\x8c\x6c\xa2\xd8\x36\x8e\x13\x16\xe3\x38\xed\x54\xa9\xb5\x62\xe8\xab\xba\xfb\x6c\x7d\xcd\x50\xa9\xa3\x6e\xdc\xa8\x17\x99\xbb\x20\xd4\x18\x6e\x93\x34\xfd\xc3\x0d\x23\xd4\x03\x07\x94\x3e\xc2\xad\x64\xa9\xad\xca\x49\x03\xb9\xbf\x7f\xb1\x6b\x92\xd8\xa6\x04\xd0\x54\xf7\x8f\xc0\xd5\xf8\xfb\x2d\x72\x1d\x2f\x75\x73\xdb\x33\x49\xd2\xa1\x68\xe8\x5b\x51\xa8\xdc\x7c\x8b\x35\x3e\xed\xc0\xa4\x12\x66\x23\xa8\x97\x62\x87\x9c\x90\x9c\xe1\x5a\x5c\x3a\xe8\x8c\x1b\xee\xac\xc9\x26\xc7\x6d\xaf\xa1\x1a\x46\x71\x3a\xf1\xfd\x38\xac\x37\xcf\xce\xfb\x80\xf4\x89\xa7\x36\xc3\x83\x3b\xdd\xb6\x2b\x96\x79\x2c\xd5\x69\xac\x5c\xa8\x9f\x61\x14\x4a\x25\x00\x5b\xd4\xc7\x53\xf2\xef\x3d\x4b\x7d\xe4\xe5\x24\x2b\x4b\xed\xd4\x7a\x05\x6d\x5f\x79\x38\x42\x53\x73\x25\x17\xad\x3b\x92\x1b\x90\xe6\x86\xf6\x39\xb5\x28\xbc\x92\x4f\xe2\x32\xa9\xf6\xcc\x00\x4e\xdf\xb1\x19\xea\xca\x3b\xe6\xb7\xcf\x90\xc3\x4b\x3f\xdf\x35\xa2\x6e\xab\x95\xf1\xea\xf3\x5a\x18\xf7\x9d\x65\x3b\xb2\xa5\x13\xe6\xf1\x4e\x10\x42\x9a\x97\x13\xdf\x83\x56\xbb\x9a\x0e\x75\x65\xeb\xda\xbc\xe4\x56\x93\xad\xa7\x65\xb6\x2e\xee\x6a\x8a\xb8\xef\x90\x31\x55\x78\x0c\x45\x36\xb2\x65\x3c\xb2\xc5\x9e\x80\x05\x39\x8d\x67\x0d\xf0\xe7\x09\xae\x99\x1c\xe5\x4c\xfb\xf6\x94\x1d\xf6\x89\xad\xfd\x94\x7b\x6f\x88\x4e\x20\xc1\x2d\x7e\xb9\xd3\x60\x88\x7e\xb5\xb5\x24\x55\x8c\x4d\x2e\xb2\xbc\xde\x05\x93\x9c\x2f\xb7\x4f\x80\xc3\xd5\xb8\xcb\xab\xab\xc7\xad\x22\xdb\x94\x9e\xb6\x9c\x70\x9c\x5d\x94\x0e\xa5\x8b\x35\xfb\x3c\xeb\xda\x00\xe9\xeb\x8d\x94\xf4\x35\xff\xdc\x93\x70\x00\xd4\xbd\x28\xd8\xf4\x06\x09\x6e\x33\xca\x26\xa9\x07\x0e\x0b\x65\x89\xbd\xec\xb8\x08\x32\x33\x4f\xb0\x72\x93\x8f\x6c\x5e\xec\x21\x54\xdd\xa9\x69\x95\xd7\x6b\x06\x1d\xe0\xbb\xbf\xef\x62\x27\x35\xe6\x71\xdf\x87\xfc\xfb\x3b\xc8\xe4\x3d\x74\x24\xa4\xb5\x27\x29\x45\xfd\x7d\xa6\x60\x9e\xa0\xc6\xe3\x28\x4e\xb3\xbc\x26\xfd\x1d\x91\x91\xe4\xe7\x6d\x82\xe1\xe3\xdc\xf6\x63\xdf\xe1\x17\x04\x76\x44\x02\xd5\xe7\x68\x21\xe9\xe5\xa6\xb7\x2a\xb0\x0e\x51\x58\x73\xf3\x40\xd5\xd6\x28\xb3\xcf\xab\x08\x23\x36\x6c\x3c\xe3\x3e\xaa\x50\x5c\xe2\x97\xaf\xd9\xdc\x0c\xac\x34\xc3\xb4\x63\xda\xf1\xea\x0f\xe2\xb3\x81\x3f\x3c\x46\x59\xec\x20\xee\x5b\xc9\x67\x3c\x0a\x97\x79\xf5\xdb\x97\xa4\x2f\x7f\xb9\x5b\x8c\xb3\x55\xb7\x66\x2e\x04\x65\xc4\xe0\x61\x76\x2e\x0c\x82\xa2\x97\xc7\xcb\x2a\xba\x4c\xd5\x46\x05\x8c\xdc\x8a\xc8\x77\xe6\xb4\x47\x81\x24\xd9\x24\x2e\x9c\xd2\x63\x27\xb0\x1d\xce\xb3\x7d\xd4\x79\x7a\x5d\xfd\xf8\xd5\xd8\x76\x1c\xf0\xd2\x13\x6d\xab\x4f\xaa\xe1\x8c\x62\x03\xfa\xb9\x19\x19\xc6\x3f\xb2\x0c\xad\xaa\x11\x2b\x03\xe7\x95\x4c\x42\x40\x2c\xee\x18\xfd\x72\x4c\x40\x80\x41\x66\x92\x59\x0a\xe7\x21\xde\x2f\xb2\x7f\x9b\xa1\x82\x07\xd6\x8e\x7c\x86\x84\xb9\x27\xa5\x19\x92\x84\xd6\x59\xcc\x3e\x95\xd2\x0e\x0b\xd2\x24\x2d\xca\x8d\xc4\xf9\xa6\x93\x82\x78\xf5\x5b\x72\x4c\x0a\xb1\xb9\x1d\x67\x79\xf9\xb8\x7b\xb2\xa8\xb5\x8b\x22\x18\x1a\x24\x3b\xe6\x69\xe9\xfa\x1f\xdd\x7c\xc0\x2c\xbc\xc7\x34\x7b\x01\x6d\xa8\x47\x7e\xa0\xdb\x5d\x26\x24\x15\xdb\x3f\x3c\xbc\x49\xad\x88\xb7\x5c\x27\x0e\xf3\x6f\xc7\x26\x95\xc6\xaf\x20\x0c\x02\xc7\x16\xae\xea\x0a\x90\x0d\x1d\x2b\xdb\xf7\x62\x78\xf8\x3a\xa4\xa5\x18\xc7\x67\x18\x5f\x70\x3a\x90\x44\xfe\xd6\x2f\xad\xfe\xad\x5f\x12\xeb\x49\xff\x7c\x5e\xd4\xd6\xd1\x07\x64\xd6\x78\x2d\x0a\xcc\x08\x93\xf7\x86\xb1\x33\xf8\x98\x09\xde\xe6\xe8\x3f\xa0\xcf\x7f\x95\x30\x3e\x1f\xf8\x81\x3d\x30\x45\x86\x36\xaa\x77\x22\x47\x4a\x8c\x38\x1e\x3a\xd0\x00\x0d\xcc\x6d\xea\x90\xea\x67\x03\xde\x7b\xae\x13\xa9\xeb\x7a\x1b\x35\x70\x25\x31\x63\x37\xfe\xbd\x2c\x5c\x90\x88\x6b\x41\xb6\xbe\xd4\x5d\x4d\xb3\xf5\xd4\xf9\x87\xe9\x8e\x4a\x61\xcd\x71\x2e\x62\x35\xf6\x8c\x03\x07\x0e\x76\x8b\x61\x9c\xeb\x0a\xe6\x5d\xd4\x83\x81\xc1\xa9\xed\x70\xce\x03\x07\xaa\xdd\xe9\x19\xf7\x11\x44\xa2\xff\x0a\x79\x01\x86\xfc\xd5\x28\xc0\x9f\x77\xce\xd3\x00\xbc\x8e\x54\xc2\xab\x71\x1e\xf6\xd2\xa6\x6e\x68\x89\x27\x8a\xeb\xee\x60\xe7\xfd\x5f\xdc\x3a\x8f\x52\xec\xd1\x29\x8b\x83\xdc\x99\x86\x3e\xf9\x5b\x2e\x8d\xd1\xbe\xa2\x1b\xca\x88\x2c\xef\x60\x28\x23\xd8\x7f\x08\x8d\x4d\xc0\x41\x5e\xa7\x51\x71\x09\x69\x0c\x3b\x6c\xaa\xe0\xaa\x9b\x2f\x22\x26\x4d\x73\xb2\x6f\x57\x62\x93\x96\xc9\x06\x62\x53\x31\x96\x24\x7d\xcc\x37\x6a\x6b\x7e\x95\x16\xf7\x77\x33\x25\x1d\x25\x6a\xf4\x1d\xd1\x38\x51\x3c\x44\x27\xfc\xff\xb5\x50\xdc\x3d\x08\x25\xb4\xbb\x47\xaa\x31\x7a\xf5\xb4\x94\xcc\x1d\xd2\xea\x32\xce\x6d\x15\xcb\xb8\x61\x84\x8d\xee\x4c\x44\xbb\xde\x19\x8a\x12\xfb\x71\x31\xce\x0a\x91\xfa\x90\xc2\x27\x15\x5e\x2f\x90\x46\x41\x12\x2f\xdb\xdc\x24\xb3\x4c\xa0\x75\x6f\xde\xe7\x02\x5e\x08\xe6\x3c\xeb\x47\xdf\x6e\xd0\x61\x16\x17\xbb\x7d\x3b\x72\x9e\x0e\xa6\x0c\xbe\x83\x7e\xab\x23\xbf\xb5\x67\x38\xcf\x13\x01\x2a\x4c\x77\xc5\xa2\x52\x9f\x0f\xbd\x6c\x2d\xfe\xb4\x24\x55\xb9\x4d\x62\xbb\x26\x44\x62\x65\x66\xd4\x78\x13\x7f\xb5\x99\xc3\xd8\x7e\x5c\xc5\xd1\x7f\xeb\x97\x6c\x62\x7b\x65\x9e\xa5\xa2\xc9\xa4\x71\x32\xc5\xcc\x7e\xa9\x70\x61\x72\x2c\xf2\xa0\x58\x5f\xde\x22\x9c\xc6\x87\xa4\xcc\xf3\x6d\xb2\x03\x4b\xe2\x55\xfb\x18\xa9\x4f\x9c\x8e\xb6\x35\xce\xc8\xc0\xb9\xe3\x3d\x1a\xfe\x60\x4a\xe4\xfd\x0b\x60\xed\xa8\xea\x94\xb7\xae\xf9\xd1\x9f\xbb\x56\x05\xe2\x3d\xc1\xcb\x60\x41\xbe\xca\xb5\xd8\x33\x00\xeb\xeb\x48\x20\x79\x41\x60\x1d\x75\xd9\x0b\x55\xc2\x7e\xbf\xd8\x1d\x70\xbd\x77\xa6\xe1\xed\x39\x1a\xc9\xd6\xd6\x34\xe8\x86\xcc\x6c\xd2\x4a\xfd\x18\xca\x14\x58\x2b\xbe\x80\x7a\x22\x46\xf9\xdc\x26\x83\x46\x67\xe6\x6b\xbb\x9c\x89\xfb\xd0\x19\xd4\xd9\xe1\x7a\x11\x3a\x23\x18\xfb\x94\x4f\xd2\x87\xab\xdf\x46\x96\xfd\x3b\x08\xfc\x50\xf1\x38\xe9\xe0\x56\xc8\xcb\x40\xa8\xd2\xd6\x5a\xc7\xcb\x55\xbd\x11\x51\xd3\xef\x77\x30\xce\x00\xae\xde\x81\x8b\xf5\x26\xdc\x2f\x2a\xa3\xe6\x5d\xf7\x5e\xf1\xa1\x53\x8d\xa8\xfe\xeb\x87\xbb\xcb\xd9\xc4\x69\x62\x7d\xfd\xb0\xa4\x61\x57\x59\x41\xf0\xea\x03\xcb\x77\xcb\x99\x29\x47\x56\xb2\x18\x44\x51\xb2\xda\xc9\x89\x4f\x8e\xb2\x5e\x6f\x32\x36\x42\x8c\xf5\xd6\x3f\x07\x0e\xf8\x72\x98\xc7\x15\xd9\xb4\x9a\xce\x12\x15\xa1\xb1\x23\x57\x23\x27\x75\x82\x4d\x5c\x3e\x4c\xde\x06\xf7\x31\xc3\xc5\xe5\x8d\x11\x52\xe8\xdb\x00\x4a\xd1\x01\x7c\x4b\xbd\xe0\x9c\xa0\xc5\x11\xac\xe5\x5b\x47\x88\x74\x80\xbd\x57\x6b\x46\x21\xd6\x3f\x43\xab\xda\xe4\xab\xc5\x57\x8b\xaf\xe6\x5f\x85\x2d\x15\x76\x1b\xe1\x44\x22\xee\xfd\x37\x78\x20\xda\x86\x50\xac\x58\x99\xdb\xd5\x0e\x11\xf2\x61\x29\xa7\xfd\xae\x07\x29\x99\x98\xe5\x49\x61\xa5\x10\x04\xf5\x0a\x84\xd5\x72\xcc\xa5\x2a\x38\x3f\xef\x64\x0a\x05\x73\x44\x08\xd2\x73\x8b\x92\xa6\x3b\xd4\x40\x39\xea\x16\x72\x05\xca\x90\xa5\xc3\x24\x97\x7c\x18\x83\xf0\x8c\x93\xb8\x92\x63\x5a\x99\xfb\xb6\x67\xfa\xd6\xe9\xf8\x2c\xf9\xe4\xa5\xe3\xb5\x9b\x3e\x27\x82\xe1\x51\xd6\x07\x3f\x4a\x68\xd4\xec\x95\x18\xa3\x4b\x09\x93\xd4\x0c\x3a\x1b\x3d\x4b\xac\xc4\x75\x93\xe7\x26\x2d\x55\xa8\x54\xbc\xb6\xe7\x09\x99\xdb\xd9\xa4\x64\xc6\xf4\xe3\x24\x31\xbd\x99\x10\x6f\xa3\xc4\x2b\xb3\x84\xd4\xfc\xef\x44\x54\xa1\x31\x85\x97\x37\xc5\x56\x7d\x0a\xab\x9c\x9c\x04\x40\xba\x29\x0a\x5b\xd6\x4a\x17\xa7\x28\x7a\x3b\x45\x45\x5e\xd3\x5f\x8b\x8b\x0c\x19\x98\x9a\x47\xb9\xbb\x54\x8b\x29\xb2\xde\x98\xa4\x7d\x33\xb2\x69\x69\x92\x39\x56\x8f\x70\x5b\xb1\xdf\xe3\x42\x67\xe3\x2c\x66\x40\x0d\xf2\x89\xac\xf4\x76\xf4\x73\x6d\xa0\x06\x85\xbc\x6b\x81\x46\xdd\x6e\xdd\x77\xaa\x8d\x6e\x9b\x26\x6d\x6e\xed\x72\xb6\x4a\x40\x5a\x31\x90\x90\x93\x46\xe2\x76\xe8\xf9\x6e\x12\x8f\xc4\x1a\x1c\xb3\xea\x06\xf9\x37\xde\xf0\xeb\x41\xb6\x66\xf3\xe5\x49\x9c\x94\xb3\xbe\x94\xbd\xfa\x24\x22\x38\x50\x64\x10\xeb\x4a\xd7\xdc\xfd\xe8\xd6\x5d\x86\xaf\x94\x26\x7d\xcd\xb8\xd7\x8c\xf5\xe3\x6e\x4d\x64\x9f\x00\x3d\x2c\x93\xb0\x62\x4d\x0e\xb0\x4e\x90\x94\x24\x8b\x31\xf6\xd9\x1b\x19\x08\xd2\x76\xbc\xf6\xc2\x1b\xd8\xbb\xe5\x64\x1a\x12\xac\xe5\x4c\x9c\x8f\xc4\xc1\x82\xb5\xd0\x9a\x51\xf4\xc1\xbd\x07\xbb\x89\x35\xab\xec\x8a\x72\x8c\xe7\xf0\x31\xaf\xf5\x54\xc4\xa3\x71\x62\x77\xb9\xfd\x47\x5b\xcb\x54\xe2\xfd\x80\x53\x2e\x78\x3a\xab\x00\x96\xfb\x3a\x34\xd6\xc1\x27\x43\x5d\xcf\x39\x71\x7b\xae\x6a\x9b\xee\xe2\x37\x27\x56\x53\x62\xe1\x2f\xb3\x51\xc2\xb9\x48\xc5\x56\xec\xab\x65\x6e\xaa\x15\x43\xa4\x7e\x3b\xde\xae\xe4\x7d\xf7\x22\xe4\x78\xfa\x85\x98\x4d\x84\x07\x69\xfc\x9a\x59\x4e\x2c\xa2\x59\xf5\x5c\xec\x78\xad\xb4\xa3\x0d\x4c\x0e\xea\x9b\x0e\x7a\xe0\x62\x31\x92\xe7\x66\xa7\x65\x37\x07\x75\x95\xdd\x1e\x8a\xc1\xad\x7e\xd8\xcf\xcd\x7a\x27\x68\xa9\xfe\x8c\xbc\x22\x7e\xc6\x7d\x48\x33\x9e\x09\xf3\x0e\x8d\x57\x4f\xeb\xf6\x78\xb7\xa6\xfc\x6e\x75\xa5\xa6\x1c\x66\x89\x04\x6c\x28\x54\xbc\xc7\xc4\x96\xf7\x88\xae\x62\xe2\x22\xb1\x2e\x91\x52\x2b\xa0\xe0\x88\x7b\xcf\x6d\x4a\x48\x0d\x66\xe6\xb7\x0f\xa0\xc5\xc5\x17\xba\x69\x26\x2b\xa2\xda\x4b\xbf\x13\x11\xe9\xea\x1d\x82\xf9\x39\xeb\x6a\x77\xdb\x2a\xba\x4e\x7c\xe0\xcf\xa8\xd1\x14\xa7\x80\x11\xed\x0c\xa5\x82\x31\xf9\xa9\x9e\x73\x09\x03\xea\x1d\x10\xce\xc3\xe6\x04\x9f\x44\xf9\x3c\xb2\x0d\x6d\x79\xb4\x28\xa3\xda\x65\x9b\x16\xcb\x93\x7c\x40\xc2\x91\x27\x58\x32\xee\x04\x21\x34\x96\x44\xfa\x5b\x88\x24\xec\x30\x74\x97\x0c\xe9\x0a\x93\xc4\xd5\x77\x4a\x31\xc5\xdb\x9a\x2f\x06\xc0\x98\x56\x22\xc7\xf1\x58\x1f\x1b\xea\x41\x57\xf1\xd8\xe4\xa4\x0d\xd9\x35\xb4\x79\x86\x8d\xc1\xdb\x98\x2c\x06\xeb\x92\xed\xb7\x78\x70\x6f\xb7\x97\xe5\x39\x75\xfb\x55\x1a\xa5\xe3\x05\x4f\xcf\x90\x84\x41\xb1\x51\x94\x76\x54\x3c\xcc\xe2\xe0\x51\xd8\x31\xa4\x76\x85\xa4\xeb\x2d\x24\x89\x68\x82\x3d\xb4\x49\xa8\xf9\x73\x4c\x74\x42\x49\x02\x51\xf8\x4f\xa7\x54\xe2\x7c\x0b\x11\x26\xee\xf5\x88\x1b\x62\x72\x4c\xc4\xd2\x38\x2d\x4a\x6b\xfa\x8f\xd0\x06\xf3\xe8\x7c\x10\x58\x78\x2b\xa2\xd2\xdf\x65\xb7\x3f\x91\xfd\x90\xb2\x89\xfe\x80\x3c\x52\xde\x9b\x86\xc8\x63\x07\x6a\xba\x54\x39\x50\xaa\x02\x0c\x95\x89\xff\xf4\x92\x7f\xdc\x0f\x8a\x99\x96\x6d\x59\x6c\x74\x28\x08\x3b\x45\xbc\xf5\x56\xc9\xc0\x2c\xed\x09\xeb\x5e\x34\x1f\xdd\x94\x83\x73\xf3\x93\x6e\x65\x14\x35\x55\xd7\x61\x50\x6f\xbc\x07\x05\xc9\x63\x9b\xe7\xb1\xcd\x67\x42\x71\x4b\xa4\x72\x34\x68\x23\x81\xd8\x7f\x40\x3b\xd7\x30\x9b\x14\xb6\xd8\x49\x24\xc2\xbb\x18\x84\x72\x32\x25\xa4\x30\x4a\x7a\xcc\x13\x62\x2d\x38\x95\x41\xdd\xbe\x12\x1d\x5e\xea\x9a\x91\xcd\xe3\x9e\xcc\x1f\xfd\x5c\x4d\x47\x35\x74\x81\xc7\x79\xb6\xf2\xd5\x19\x6a\x62\x42\x61\x06\x95\xe2\x7f\x8b\xcd\x4c\x1d\x10\x83\x3f\x76\x6f\x35\xe8\xf5\xe8\xbf\xb2\x59\x22\x6b\x9e\x0e\x0d\xa4\xae\x96\x64\x6f\xff\x98\x88\x21\xd7\x48\xea\xb3\x89\xe6\x39\x70\xa0\x5b\x9a\xa2\x14\x15\x4c\x95\xa5\xa2\xee\x47\x3d\x09\xd7\xcb\x7b\x65\x52\x94\x71\xcf\x02\xdd\x8a\xb5\xe9\xf8\xb4\xa1\x72\xae\xd6\x56\x9d\x20\x92\x39\x25\xc4\xc2\xbb\x24\x6a\x5f\xac\xd9\xbc\x9f\x64\x6b\x05\x62\x21\x15\x26\x21\x91\x12\x22\x32\x63\xc9\x08\xad\x66\x68\x59\xaa\x9c\xcb\x83\x74\x33\x12\xb3\x6c\x4a\x24\x52\xaa\xba\xe2\x2e\x46\x4e\x7c\x08\x3a\x32\xaf\x58\xaf\xd4\x8c\xf5\x5e\x1c\xa0\xe5\xa4\xb1\xaf\x1f\xdc\xdb\xcd\x56\x56\xe2\x5e\x9c\x81\xd6\xe5\xc5\xad\xbe\x7e\x58\x8f\x29\x16\x5e\xce\xcd\x6b\x71\x82\x56\xa2\xba\x37\x86\x6e\x97\x88\x79\xe0\xd1\xfd\x8c\x44\x2d\x96\xed\x20\x4e\x0b\x91\xb6\x44\xe9\xeb\x0e\xb9\xe8\xff\x1e\x95\x77\x7f\x6f\x4a\x0a\x45\x77\xea\x2a\xbe\x63\x75\x21\xc5\xf0\x93\xc4\x40\x4e\x08\x02\x32\xb6\x79\x9c\xf5\x9d\x3e\x07\x1e\x10\x4a\x9d\x28\x7e\x48\xfc\x87\x93\x2b\x2c\x2b\xfa\x43\x37\xe5\x81\xa3\x42\x69\x18\x31\x57\x95\x07\x05\x3b\xf5\xa4\x5f\xcc\x55\x97\xab\x5e\x9d\xee\x1a\xd0\x63\x87\x47\xa0\x18\x03\x51\x82\x85\x2e\xad\x1c\xd3\x58\x58\x1d\x8f\x06\x72\x47\x58\x28\x4f\x72\xab\xfb\x64\xc4\xd6\xb8\xe3\xd5\x18\x13\x56\x11\xa5\xd5\x4f\xc9\xb1\x1f\xda\x63\x33\x49\xe2\x94\xc1\xc6\xef\xe2\x1b\xe5\x84\x04\x34\xd6\xe3\xd1\xd8\xa9\x01\xfb\xae\x05\x98\x66\x78\xf0\x90\x1c\x43\xaa\x78\xc9\xef\x90\x2b\xb1\xa3\xd5\xf8\xdc\xf3\xba\xcb\x5f\x11\x62\x7e\xc6\x3e\xa3\x4d\x18\xf4\xe2\xe2\x52\x37\xcd\xbe\xea\x82\x27\x74\x21\xae\x93\xcb\xc8\xb7\x22\xda\xe3\x6e\x10\x7c\xbe\x58\x37\xe3\xd9\x50\x76\x3e\x42\xa4\xfb\x8f\x10\x5c\xa8\xaa\x30\x95\xff\xce\xb6\x35\xc2\xcb\xdc\xa4\x45\x2f\x8f\xc7\xe2\x45\x8d\xa5\xee\x33\x72\x83\x82\x39\x2a\x0a\x04\xc7\x09\x3a\xde\x1b\x9a\xc9\xca\x8a\x9d\x08\x55\x54\xbb\x3a\x1d\xaf\x82\x76\x81\xf6\xec\xde\xa4\x28\x33\xd5\x5a\x92\xca\x80\x5b\x9b\x31\x29\x3a\xe8\x7d\x20\xb0\xbc\x4e\x19\x45\x6e\x07\x79\x36\x19\x63\x65\x90\x2a\x57\x44\x3e\x08\x17\x7c\x6f\xca\xae\x99\x64\x62\x7c\x45\x8f\x17\x4d\x34\xf1\xaf\xd6\xb4\xb6\x5b\xb4\x8e\x5d\x7b\xd1\x3d\x55\x4c\xf0\xfb\x0c\x01\x23\x93\x27\x04\xd1\x08\x06\xff\x98\x00\xa4\xd5\x52\x94\xd8\xdd\x41\x13\xfc\x73\x6c\xca\xf8\xb6\xb7\x30\x10\x90\x78\x6d\xb9\xaf\x56\x23\x43\xf6\x4f\x3a\x47\xda\xaa\x47\xc9\x1c\x5b\x48\xc5\x4a\x70\x6e\x1b\x47\xb9\x1d\xcb\xac\x41\xd9\x4b\x66\x8d\x9c\xf8\xd1\x2a\xe0\xc2\xea\x62\x50\xce\xb9\x4d\x9a\xbb\xb7\x03\x23\x4d\x0a\xb1\x10\xab\x03\x3a\x49\x5c\xb3\xb5\x2a\x5a\x53\x4a\xa5\x4e\x2c\xeb\xb2\xc5\xa3\xd1\x24\x45\x6e\x84\xd7\xfe\x26\x81\x7e\xdf\x6c\x6b\xd9\x0a\x2b\xa2\x3f\x17\x4a\xfd\x92\xbb\x23\x81\x06\x13\x02\x7b\xba\xe8\x75\x21\x6a\xda\x03\x12\xa9\x36\x4b\x9b\x04\x82\x85\x6e\x91\xc5\x09\xf9\x5f\x5d\x20\xff\xab\xa6\xc7\xe0\xfe\xc5\xee\xf2\xa4\x88\xd3\x2a\x8d\xd2\xc2\x5e\x5b\x81\x2a\x2c\x47\xe5\x30\x8f\x57\xca\x59\xaa\xeb\x44\x81\xb0\xf2\x39\x6b\x4e\x5e\x96\x76\x09\xa6\xdb\xe5\x36\xd7\xa4\x62\x98\xad\x6b\x40\xac\x83\x9d\xec\x63\x2e\x34\x74\xcd\x74\x53\xec\x0d\x4d\x9a\x8a\xb5\xbb\xaf\x7d\x84\x12\xe6\x59\x6a\xd1\x0e\xcc\x64\xc0\x8a\xd0\xb8\x31\x55\x04\x6c\x92\x00\xab\x3b\xb4\xa6\xb4\x50\x77\xf6\xe8\x48\xaf\xe4\x7e\x8e\x6a\x39\xd5\x65\xf4\x34\x68\x53\x70\x01\x03\xbe\xab\x3f\xf3\x96\xcf\x2f\xaa\x8c\xf1\x19\x77\x09\xdc\x68\x50\xb0\x78\x0d\x58\x5f\xc4\x85\xb8\xec\x2a\x9f\xa7\xb3\x18\xb4\x1a\x9e\xa0\x8f\x4e\xd2\x72\x03\x0c\x3e\xac\x35\x37\xb1\xa8\x6a\x90\x49\x5d\x95\x69\x67\xdf\xbe\x20\x1b\xe0\xc3\xd9\x1d\xf3\x64\xea\x79\x93\x56\x40\xd7\x6e\x29\x63\x71\x27\x40\x79\x7a\x07\x60\xfc\x72\x42\xf8\x89\xec\xcb\xab\x71\x6f\x35\x9e\x25\xec\xd3\x85\xfa\x8f\x87\x96\x8e\xeb\xb1\xe9\x71\x88\x32\x9c\xf3\x02\x38\x8b\x48\x68\x24\xbd\x93\x93\x3a\xab\x78\xb9\xe8\x6c\x07\xc0\xcb\x71\x6b\xc6\x96\x55\x3b\x98\x27\xf5\x7e\x9f\x1a\xc8\x22\x86\xa5\x5c\x84\x27\xb9\xd2\x9f\x18\x0d\x18\xb1\x40\x08\x15\x59\x4e\xa2\x70\xa5\x3b\x1c\x9a\xca\x77\xf4\xaa\x2f\x94\xb5\xa2\x45\xdd\xbe\x5b\x58\x53\x64\xaa\x26\x8b\x85\x56\x1c\x61\xe4\x84\x52\x83\xdc\x16\xbd\x09\xb8\x32\xbe\x90\x53\x5d\x10\x42\x4c\x81\xcd\xc8\x09\xeb\x9d\x47\xc1\x19\x74\x6d\xd2\x09\xdc\x4f\x04\x9e\xaa\x5f\xda\xc4\x89\x96\x43\xeb\xe0\x91\xc2\x8e\xc2\xbd\x28\x55\xaa\x25\x8a\x34\xe3\x71\x12\x3b\x75\x66\x6d\x95\x8a\x44\x8e\x9c\x34\xe0\xd3\x55\xc6\x3f\x16\xd1\x53\x44\xde\x97\x64\x87\x40\x3f\xed\xa7\xd3\x10\x21\x36\xf3\x98\x17\xf7\xbe\xd4\xed\x25\xd6\xa4\x36\x47\xe0\xea\x0b\xae\x07\xf7\xfa\x82\x2b\x47\x8f\xd6\xa4\x8f\xbb\x31\xa9\x91\xb0\x0b\x62\x51\xc1\x06\xce\x08\x39\xd6\xd5\xe9\xf6\xb5\x9f\xa0\x49\x07\xf7\x1e\xf4\x76\xfa\xee\xc2\x95\x1b\xce\x38\xcd\x3f\x74\x8f\x5f\x24\xef\xdd\x53\x56\x2e\x00\x75\x99\x5e\x8f\x82\xda\x1a\xe8\xc9\xc0\x93\xbe\xe7\x7a\x63\xd8\x80\x3f\xaa\xf5\x90\xb2\xf1\xc6\x9e\x6d\x3c\x7d\xef\xf4\x3f\xc5\xa5\xe1\x6a\x60\xfe\x21\xc7\x78\x6f\x68\x8f\x1f\xc7\xad\x11\xa1\x6e\xb1\x26\x39\x29\xdf\x85\xcb\xc4\xf0\xb9\x1d\x05\x55\x6d\x70\xc9\x4c\x5a\x0a\x14\x1f\x25\x44\x34\x23\xb0\xa9\x5f\x8b\x48\x0f\xf6\x83\x46\x75\x73\x71\xb1\xfb\xcd\x89\x9d\x08\x06\x13\xe0\xec\x1f\xb0\xa0\xfc\x0f\x48\x06\x79\x9c\x67\xcb\x66\x39\xd9\xd8\xe3\xee\x0c\x37\x00\xa1\x67\x35\x5d\x74\x37\x83\xc7\x7c\x0d\xf1\x1f\x1e\xa7\xf4\x80\xb0\x59\x5e\xa3\xa0\xfe\x9f\x33\x38\x58\x02\x56\xaf\x86\xf0\xe2\x5e\xd9\x84\xaf\x73\x4f\xda\x56\xa9\x91\xfa\x12\xa0\xc1\xf5\x13\xd6\xc6\xfb\x83\x88\xd0\x44\xd0\x52\xd3\x4e\x68\xd3\xc7\x6c\xd5\x26\x49\x36\x10\xf6\x89\x8b\x1d\xbf\xfa\xa4\x5b\x2f\xe4\x78\x9e\x9e\x75\x62\x5f\x35\x69\x5f\x40\x5a\x08\xb7\x21\xb1\x28\xc7\xd3\x2f\xd4\xc1\x10\x2f\xee\x7d\xae\xfb\xe2\xde\xa5\x67\xaa\x78\xde\x47\xe7\xbf\xfa\x8d\x20\xb4\x5c\x3d\x45\x94\x22\xc4\x79\x17\xe5\xf0\xdf\xc4\x93\xc3\x33\xf9\xd8\xd5\xf1\x80\x50\x16\x93\x62\xcc\xde\xef\xd7\x2d\x3c\x42\xb0\xf9\xd0\x7c\x10\x38\x3c\x1a\x05\xca\xc0\x53\x4f\xa1\x9c\x83\xfc\xfa\x5f\xa0\x33\x2a\x27\x53\x52\x11\xff\x33\x54\x05\xd5\xb9\xb6\x7a\x0b\xbe\xc7\xeb\x15\xe2\xae\x93\xa8\xd7\x17\x36\x03\x2e\xe3\x74\x0b\xa1\xa6\x3b\xce\xed\x8a\xcd\x73\x59\x54\xf1\x32\x04\x88\x22\x27\x04\xbf\xd1\xba\xb3\x2d\xe6\x08\x44\x7e\x9d\x72\x5a\x81\xad\xa9\xb8\x78\xf5\x7c\x30\xee\x51\x24\x53\xc4\x59\x33\xbe\x5b\x7a\xa1\x6b\x47\xcb\x59\x7f\xa3\x43\x7c\x75\xf8\x77\xca\x31\xd5\x95\xbf\xf1\xab\xdf\xe8\x84\x52\xd8\x67\xbc\xb6\x7c\xd6\x28\x7b\xfb\x22\xd7\x24\xdb\x50\x76\x31\xf6\x8b\x77\x71\x9f\x72\xd2\x00\x3b\xe8\x1f\x22\xe1\x37\x49\x31\x47\xfb\x2f\xa6\x03\xd6\xc3\x77\xa8\x6e\x0b\x8d\x59\x05\x4c\x91\x6a\x4b\xa7\x95\x67\x9e\xdb\xf1\x64\x39\x71\xe5\x25\xda\xb3\xff\x88\xb6\xc8\x3f\xa2\xd8\xc9\x81\xca\xd2\x01\xfb\x21\xbb\xc7\xaa\x26\x95\x61\x13\x5e\x8f\xd3\xd4\xe6\x85\x23\x2f\x7b\x94\x8a\x5f\x5a\x9b\x51\xf0\xc2\xa1\xee\x4a\x96\x4f\x46\x44\xe1\x02\x30\x57\xed\xfc\x6b\xf2\x2d\x59\xbe\xdb\x8d\x5d\xd5\x41\x74\x8f\xd1\x2f\x1a\x41\xc0\xf2\x68\xcd\x3d\xb7\xfa\x7d\x7f\xbc\x70\x48\x32\x90\x9b\x51\xc8\xcb\xb0\x13\xeb\xb4\x6b\x67\xd0\x25\xab\x1d\xea\x96\xde\xe2\xa0\xe1\x56\x8b\xed\xd1\x0b\xdd\xb1\x91\x31\xa5\xce\xc7\xe1\xd9\x9e\x27\x62\xf4\x7a\x9c\xee\xe9\x90\x17\x2d\x6d\x3e\xe7\xa6\xec\xfa\x25\x5b\xa1\x52\x2b\x3a\x5e\x0c\xf3\xa7\xdb\x34\x11\x83\xa0\xad\x50\x35\xa5\xe2\x1f\x51\x1d\xe6\xc8\x94\x0a\x63\xa5\x29\xed\xc8\xa6\x25\xd2\xb0\x2d\x14\x4b\xb6\x2e\x4e\xb7\x87\x02\xd5\x83\x30\x23\x84\x02\x3a\xe5\xdd\x0f\xa0\x12\xb2\x73\x9e\x95\x1a\x9b\xce\x7f\xfb\x16\xaa\x48\xaa\xc4\xb6\x82\x5e\xe7\xbf\xc2\xed\xca\x09\xc5\x96\x45\xb6\x16\xdb\xf2\x71\x32\xd2\xb8\x14\x85\xfe\xd4\x9b\x2c\xb5\x1e\x51\xc0\x77\x07\x23\x5f\xf1\xd6\xd5\x1b\x16\x2f\x10\x3c\x23\x95\xed\xad\x26\x14\x2a\xd5\x72\x07\x08\x27\x61\x5d\x80\xe5\xf3\x62\x54\x85\xdf\xa8\xae\x8b\x26\x8d\x6a\x7e\x54\x83\xcb\xcb\xd2\x06\x03\xcb\xcf\x5a\x6c\x7b\xbb\xeb\x36\x49\xe0\xc3\xda\xa1\x18\xe5\xa1\xcd\x50\x9b\x7a\xa8\xa1\x37\x53\xa5\x86\x7d\x6b\xaa\x29\x27\x99\x71\x0d\x5d\xa3\x2b\x41\xd0\xd4\x5b\x1f\x8f\x67\xc9\x56\xec\x22\x23\xe7\xce\xd1\xe5\xfe\x78\xea\x00\xcf\xd8\x7f\xdf\xa5\xc6\x51\x7f\xa3\x28\xb3\x71\x6c\x3a\x81\xa8\xfc\xa9\x9b\x13\x72\x4c\x25\x10\x93\xda\x51\x6c\x8a\x4e\x88\x8b\x20\x90\xa4\xe4\x82\x50\x15\x32\x71\xbf\x66\x47\x38\x0d\x4d\xf6\xd0\xce\xc9\xe3\x35\x93\xcc\xd5\x18\x69\x1d\x75\x3f\x79\xe4\x59\x60\x04\xa4\x30\xe1\x5e\x0e\x98\xe2\xb3\xae\xd7\xa0\x4a\x52\x2d\x4d\xaa\x38\xed\xe5\xd6\x14\xea\xc5\x8f\x56\x8c\xf0\x55\xe4\x84\xaa\x6c\x79\x66\xfa\xeb\x66\x63\x36\x30\x61\x4f\x61\xbc\xe0\x97\xcf\xf2\x42\x73\x76\xca\x4b\x55\x0b\x99\xff\xe7\xbb\x45\x96\x7b\x1e\x85\x62\x4c\xdd\xdc\x55\x10\xee\x53\x35\x0b\x94\x35\xef\x60\xac\x44\x9d\xe0\xc7\x78\x3a\x62\x6c\x60\xb6\xee\x34\x02\xaa\x97\xeb\xe3\xfd\x2a\x2c\xd0\x78\xbf\xc5\x56\x39\x31\x69\xbf\xe8\x99\xb1\xfd\x0f\x02\xae\xb6\x84\x82\x7d\xb7\xa2\xf3\xbd\x80\x61\xaa\x37\xb6\x7d\xe9\xfb\x6b\xdd\x91\x59\x81\xe3\xdb\x0b\xc1\x59\xc1\xd3\xa7\x5f\x6f\xa1\x2e\xbc\xd4\x5d\xce\x63\x69\x74\x20\xb8\x7b\x83\x3d\x6c\xde\x68\xe3\x50\x8d\x27\x62\x8d\x85\x25\xf8\x1a\xa1\x57\xae\xb5\x8a\xbb\x4f\x46\xe8\x09\x63\xae\x5e\x8d\x28\x05\x3f\x4b\xfd\xc0\x77\x69\xdb\x43\x42\x2d\x3d\x49\x59\x5e\xc9\x4f\xbc\x4d\xe1\xda\x09\xe9\xc8\xdb\x04\xc1\xfb\x1e\x06\x9d\x9c\x34\xba\x8d\xd5\xdd\xaf\xdb\xbc\x1c\xda\x78\xd4\x21\x73\x63\x09\x2e\xe4\x84\x4c\xb8\x72\x33\xb6\x85\xb5\x7d\x21\xe4\x62\x98\x7c\x07\xc3\x55\x4e\x28\x62\x59\xb5\xfd\x27\x3a\x5f\xfe\x32\x0b\x2f\xbe\x24\x75\xcd\xa7\x37\x21\x4d\x86\x25\x15\xe0\x94\xad\x8b\xd3\x90\x7a\xee\xda\xac\x9e\x17\xaa\x34\x5b\xc4\x80\x41\x9f\xcd\x4d\xbe\xbf\xf7\x97\x37\x3b\xfb\x17\xb7\x24\x94\x77\x6b\xf0\x7f\xf1\xd5\x79\xca\x2e\x9e\x06\x8e\xd6\x95\xca\x7e\xe1\x3f\x41\x59\x15\xd7\x02\xf9\x33\x75\xd7\x23\x00\xf1\x85\xe9\xb3\x44\xbb\xca\x7b\x43\x93\xf6\xe3\xc2\xee\x0e\x9b\x24\x84\x36\xb0\xc8\xcf\x6c\x52\x66\x0a\xc9\x5b\x91\x6d\xc3\x94\x93\x24\xc7\x2d\x82\xa2\x6c\x48\x1a\x7f\x3f\x01\xf6\x51\xbe\x8a\x84\xa4\xcb\x8d\x9e\x5a\xba\x03\xbf\x72\x9a\xc8\x64\xa7\x1b\x0d\xc5\x85\x43\xdd\xc2\x7e\x73\xe2\x14\xc7\x3d\x89\x4b\x4d\xbb\x18\xad\xe3\xd7\xb6\xff\xfe\xc3\xb6\x2f\x99\xa4\x2b\x49\x95\xbf\xe5\xea\x75\xab\x1a\x99\x2c\x98\xd9\x56\xa5\xec\x65\xd5\x82\x27\xa0\x26\xb4\x39\x7e\x1c\x05\xed\xdd\x1f\x4f\xb7\x63\x8a\x16\x17\xbb\xb9\x1d\xc4\xdb\x00\xb5\x6d\x21\x5b\xf3\xd7\xaa\xd8\xa6\xb7\x6a\x06\x16\x03\x16\x11\xc9\x0f\x08\xc7\xf9\x83\xb6\x2a\x42\x7f\x22\x9c\x4b\x44\x20\x1f\xba\xcf\xab\x72\x67\x75\xaf\xa8\x2c\x5f\x71\x23\x10\x71\xd2\xec\x3c\xd1\x79\xcb\xc4\xa4\xa5\x71\xd5\x4c\xb5\xb8\x27\x15\x81\xdf\xe0\x0e\x8a\x28\x51\x29\x27\xdb\xf7\x5d\xf2\xac\x67\x0b\x57\x02\x5c\xf2\xce\x64\x54\x6d\x9c\x52\x24\xf1\xbd\x69\xa0\x5e\xc1\x36\xc9\xbd\xb5\xb3\x4f\xcf\x13\x72\xf1\x82\x57\xa9\x2c\xca\x7c\xd2\x5b\xdd\x45\x2b\xc5\x2d\x8c\x3f\x44\x72\x00\xdf\x62\x40\x38\xb1\xbc\x85\x7b\xff\xd5\x53\xf8\x26\xd5\xe5\x77\x0b\x39\x2e\x44\x64\xdd\x15\x05\xf1\xc5\x10\xa9\x8d\xb3\x55\x5b\x8c\x6d\x5e\x64\x69\xe1\xbc\xb0\x80\x8f\xbb\x1c\xb9\x61\x2c\x5e\x62\xe4\x13\x11\xda\xa9\xcb\x89\x1d\x39\x5e\xc8\x22\x29\xcc\x53\x63\xba\x55\x48\xc7\xbe\x3a\xb6\x69\xe1\xf4\x45\x42\x14\xf2\x81\x7b\x64\x72\x1c\x3d\x53\xcf\x6f\xab\xc1\xf1\x0b\x9d\x30\xc1\xae\x44\xa4\x99\x79\xa5\x6d\x7f\x19\x99\x7c\x15\x34\x8e\x05\xc9\x2f\xff\x3d\x56\x13\x2c\x42\x97\xdd\x28\x56\x13\x9c\x00\xd8\x1a\xdb\x7c\xe2\x7e\x47\xa0\x66\xee\x66\x14\x76\xf6\x04\x55\x06\x7a\xaa\xb9\x8c\xa6\xf6\x47\x6e\x1e\xcb\x71\x4b\xff\xcb\xc5\xed\xb3\x01\x62\x28\xfa\xab\x48\xa3\x8f\x50\xc6\xf9\xd3\x29\xc1\xc0\x2f\xb4\x88\xfc\x39\x5b\xbc\x2c\x89\x53\x23\x85\x18\x45\x23\x50\xc1\x7f\x4a\x54\x9a\x7b\xbe\x3d\x1c\xa7\xbd\x64\xd2\xb7\xfd\xb9\xa0\xca\x30\xb7\x49\xd9\xf8\xa7\x78\x40\x3a\xb5\x43\x51\x5a\x74\x35\x10\xf8\x3d\x3e\x1f\xb0\x9a\xaf\xfc\xc7\xcb\xee\x61\x89\x76\x22\xdb\x49\x9f\x8a\x02\x9a\x7c\xdd\x9a\xd5\x59\x8a\x91\xa0\xaa\xa6\x05\xfe\x80\x69\x39\x43\x3e\xc5\x17\x88\x8c\xde\xcb\x26\x79\xb9\x27\x60\xc1\xae\xbb\xbf\xc7\xc3\xbe\xc3\x1b\x9a\xaa\xac\x21\xc5\xfe\xdf\x30\x55\xc4\xe1\x94\x86\x65\x67\xbe\x8e\x53\x0f\x40\x98\x7b\x78\x2d\x9a\xd7\x2b\x74\xb7\x48\xb2\xf5\x9d\x33\xc1\x8a\xfc\x36\x66\x12\x32\xbe\xf7\x49\xdd\x01\xc4\x76\x57\x87\xfd\xf5\x27\x5d\xb9\x0a\x7d\x5f\xd8\x8c\xe1\xea\x1f\xdd\x0c\x71\x5a\x31\x36\xa9\x37\x20\x57\x32\x5b\x67\x71\x91\xb8\x6c\x1e\x0f\x34\xae\x56\xef\xd9\x10\x3d\x43\xe2\xc8\xab\xe4\xfa\x6b\x38\x43\x9e\xb3\x67\xa2\x2f\x91\x18\x59\xd1\xcb\xe3\x91\x28\x88\x38\xa2\xb8\x28\x24\x00\xfd\xa3\x91\x76\xf0\x49\x79\xcb\x4d\x12\x2f\xa3\xe0\xe9\x5e\x7f\x16\x05\x7a\x01\xae\x7f\x86\x9e\xf4\x29\x5a\xb1\xaf\xb8\x6b\x44\x45\xf7\x93\xc6\x62\xf0\x15\x87\xf5\x5c\x1f\xda\x64\x54\xdd\x9a\xe3\xd0\x79\x0d\x36\x4f\x1b\x47\x25\x4b\x44\x4c\xf0\x4a\x55\x57\xd2\x43\xc8\x4d\x92\x64\x63\xcf\xd3\x66\x5b\x42\x39\xf6\x0d\xbf\x57\xac\x49\xb2\x49\x01\x34\xb3\xf0\xe1\xa3\xb0\x4d\x30\xcf\x24\xcd\xf2\x95\x2c\x59\x25\x82\xdc\x52\x14\xca\x52\x4b\xd3\xf0\x1a\xc7\xc3\x8d\x02\x4e\xdd\xde\xb2\xf4\x4e\x44\xfe\xa5\x77\xda\x34\xab\xb2\xd7\x4c\xbe\xaa\x32\x38\x28\x57\x82\x5c\x2d\x2a\x4e\x53\xc2\x23\x5d\xaf\x15\xb3\xd3\x7e\xf1\x85\x50\xbe\xbf\xce\x1a\xa1\xbf\x3b\xad\x0b\xe7\x05\x80\xe6\xbd\x29\x23\xac\x48\xa4\xe2\xf1\xf9\x80\x96\xbc\xca\xb8\xd1\x77\x91\xef\xa1\x20\xf8\xe4\x7c\xe7\x6b\xbf\x26\xfd\x48\xa0\xbb\x50\x67\xfa\x11\xde\x88\x17\xce\x3a\xb8\x24\x15\xb2\xd3\x54\x14\xb9\x88\x6d\x08\x9b\xc7\x1e\x97\x64\xa9\xeb\x2f\x75\xb9\x2f\x21\x1d\xf6\x18\xb0\x20\xaa\xff\xd0\x66\xa3\x62\xb1\x20\x3b\xed\xcc\x26\x3f\x99\x49\x52\xee\x26\x82\xd1\x7b\x0c\x4b\x78\x0f\x4f\x83\xb5\x08\x34\x34\x70\xdf\x87\x4b\xfd\x3e\x7e\x57\x55\x94\xaa\xc7\x04\x3a\x15\x54\xb5\x54\x8a\xb8\xa5\xe0\x54\x0c\x33\xed\x38\x7b\x90\xb6\x87\x62\x35\x9d\xa1\xfe\xe6\x42\x17\xa4\x87\x17\xf7\x0a\xaa\xe8\xa8\x1b\x5d\x72\xdc\x92\xf4\xbf\xd4\xcd\x6d\xdf\xda\x91\x1f\xe7\x68\xbf\x41\x06\x4c\x8e\x29\xd6\x1c\x64\x79\x9c\x95\x33\xa4\x5a\x7c\x31\xaa\xd9\x35\x7f\xfd\xb0\xaf\x7b\x04\x54\x4a\x9c\xf6\xbe\xfa\x44\x75\xa7\x18\x85\xc7\x51\x06\x11\x0d\x79\xf7\xf7\x22\x07\x3c\x25\x73\xcb\x1b\x30\x1e\xc1\x3c\xbf\x11\x91\x10\x00\xb4\x79\x35\xc5\x65\x77\x5b\x08\xef\x8b\xdc\xa8\x8b\xbc\x71\x7c\xbb\xae\x23\xe9\x6e\x14\x1b\xf0\x75\x22\xb7\xcd\x01\x28\xa0\x2e\x95\x6e\x14\x21\xce\xff\x3f\xd9\x09\x34\x37\xcb\x71\x5a\xac\x6e\xcc\x50\xbb\x52\x9d\x06\x3d\x65\xd6\xbb\x47\x7e\x4e\xf5\x33\x8b\x87\xfc\x92\x07\x6a\x31\x6a\xab\xf1\x32\x5f\xdc\xdb\xb5\xc5\x58\x41\x6f\x6a\x5a\x5c\x3d\x2d\xf5\x29\xe6\x82\xe3\x72\x0c\x6c\x3b\x1e\x1e\x44\xb7\x94\xf6\xe3\x9e\x2a\xc6\xe5\x29\x72\xd4\x66\xae\x75\x8e\x94\x40\xc6\x5a\x9b\x87\x33\x55\x60\xf2\xd8\x2d\xd0\xb3\x54\x28\xd8\xb9\x59\x43\xb6\x86\x14\x7c\xe7\x7c\x0d\xff\xfa\xac\x8f\x1b\xcc\x78\x9c\x67\xe3\x1c\xde\x99\x2f\x7a\xeb\x16\xf7\xe8\x50\x2d\x81\x03\x10\xe0\x33\xb3\x9b\x64\x6d\x5f\x9a\xd2\x16\x23\x9b\x62\x87\xc0\xf3\x03\x20\xdf\x6b\x23\x79\x58\x53\x50\x67\x1f\x9a\x7c\x39\xcb\x01\xed\xc3\x9e\x7d\x0b\x4b\x88\x56\x30\x3b\xde\x1c\xff\x04\xbd\xb4\x51\x39\xea\x90\xe3\x28\xb6\x52\x39\x6e\x43\x65\x97\x93\x7c\x94\xc5\x89\x3c\x49\x2d\xca\x75\xbc\x4a\xc9\xc5\x29\x71\x60\x6c\xdf\xa8\x29\x20\x36\xa3\xef\x73\x5f\xfa\xfb\x3e\x1d\x18\xc5\xe9\xa4\xf4\x00\x48\xac\x92\xb7\x23\xaa\xd3\xdf\x26\x32\x91\xb2\xc2\x51\x67\xc3\xa5\x9e\x99\x92\x4d\xda\x3f\x26\x18\x0e\x2a\x62\xb2\x38\x37\x72\xa1\x85\x43\xdd\x15\x81\xdb\x7b\xa5\xc7\xea\xfa\x54\xe9\x71\xfb\xee\x7b\xe0\x40\xb7\x98\xe4\x79\x36\x49\x83\xbc\x8b\xb2\x99\x42\xec\xd7\xc4\x6a\xbf\xfc\xb2\xfa\xd6\x8a\x52\x29\x21\x7f\xd4\x1e\xf3\xad\x06\xd2\x70\xff\x62\x77\x7d\x98\xd9\x35\xa9\xf9\xa0\x2a\x72\xdb\xd1\x6f\xe5\xb8\x56\x93\xcf\x2d\x10\x00\xd8\x4b\xc0\xf2\xd0\x93\xe8\x59\x36\xc9\x49\x5c\x48\xa3\x10\x6f\xe9\xce\xb8\x1b\xd0\x4e\xcd\xa3\x44\x32\xed\x3f\x5d\x8d\x5f\x1f\x26\xd7\x7c\x5b\x82\x3b\xc2\x05\xae\xe8\x7d\xcf\xcd\x63\x6e\x8d\x78\xd7\xb5\x7d\xfb\xa4\xba\x28\xfa\x3a\x0a\x62\x44\x05\x44\xbe\x8b\x05\xb3\x90\x91\xaa\x5e\xa1\x7b\xe4\xda\x82\x24\xc7\x1c\x69\xdb\xaa\x00\x65\xb5\x36\x6a\x21\x19\x83\x0a\xa4\x83\xcb\x5c\x93\xdf\x74\x8b\x05\xfe\xe4\x7a\xa3\x1c\x54\xa5\x0d\xcb\xb9\x2d\x87\xb9\x4d\x49\x30\x45\xd4\x10\x55\x81\xa4\xc5\xe4\x7c\xec\xb4\xb0\xdd\xa7\x94\xbf\x1f\xf2\xeb\x1d\x9b\x61\xb7\x19\x66\x79\x9e\xe5\xa4\x5c\x0b\xe2\x97\x82\x82\x7c\xbe\x38\xe9\xad\xfa\xd1\xe6\x7d\x2c\x16\x83\x77\xc5\xf6\x51\xfd\x37\x1c\x36\x9b\x68\xe5\x68\x0d\x4a\x61\xc6\xed\xc9\xa8\xb8\xff\x09\xc9\xb2\x24\xd6\x14\x92\xe7\x20\xe6\x16\x4b\x1c\x7c\x72\x6e\xb3\x66\xfa\x16\x2a\x7c\x92\x0a\x20\x04\xfd\x0b\xad\x22\x77\x36\xcd\x26\x03\x68\x26\xe0\x25\xa0\xb2\x25\xc7\xa4\xb8\xd6\x33\xa5\x29\xca\x3c\x1b\x0f\xe3\x1e\x4a\xab\x5e\x13\xaa\x1a\x29\x6a\x32\xa3\xd7\x5c\x4c\x1c\x80\x42\x4a\x7c\x98\x44\x52\x57\x96\x13\xf2\xba\x59\x36\xb9\x2b\x6d\x87\x96\x0a\xe9\xc8\xb0\x8b\x85\xdb\xe3\xc5\x05\x8e\x9a\xeb\x85\xcd\xd7\xe2\x9e\x2d\x76\x57\x73\x41\xd8\x61\xe4\x06\xfa\x04\xb6\x01\xcd\x7a\x67\x82\x85\xf8\x55\x8c\x65\x71\x07\xa0\x3c\xe3\xca\x94\x71\x63\xdc\x2d\x79\x93\xa4\x21\xfa\xf1\xca\x8a\xcd\x31\x9a\x44\xd0\x29\x0a\xb2\x00\x47\x1b\xc5\xa4\x03\x07\x0e\x76\x7b\xb9\xed\xc7\xe5\x7a\x96\x97\x43\xac\x08\xa2\xa0\x4d\xb6\x20\x4d\x67\xe3\x7d\xfb\x9c\x45\x1c\x7e\xc9\xcb\x31\x2c\xd6\xe4\x2a\xbc\xe3\x5e\x9c\xda\xfe\x2e\xf7\x52\x7c\x2d\xd6\x6b\x7c\x9e\x74\x03\x0c\x19\xf6\xec\x66\x10\x2a\xfb\x3b\x84\x2b\xc0\xd6\xa7\xf2\x75\xee\x55\x6b\x21\xd7\xbb\x22\x65\x79\x6f\x08\xd5\x7b\xdf\xe7\xf4\xd9\xfa\x29\xe6\xcd\xdd\x09\x7c\x42\x41\x7f\x01\x4c\xea\xde\xe7\xdc\x5f\x9c\xa7\x28\xe4\x8b\x9b\x94\x0b\x36\x30\x39\xd5\xee\x96\x8d\x63\x23\xbc\x4d\x95\x2f\x08\xcd\xae\xa3\x35\x2d\xdb\x95\x2c\xff\x8b\x14\xee\x5c\x74\x23\x47\xac\xd5\x88\x35\x22\xf1\x09\x5e\xed\x75\x0c\x0d\x0c\x20\xf4\x2f\x30\x80\x04\x2e\x84\xaa\xd3\xc7\xae\xe1\x85\xf9\x7a\x6a\x4a\xfe\x41\xc7\x1c\xd9\x14\x5f\xf5\xb7\xa3\xc0\x39\xb9\x3a\x25\x4b\xa5\x9b\x11\x79\x32\x7e\x3e\x75\x61\xa6\x87\x90\x7a\xac\xcf\x07\x28\x54\x69\xbb\xc1\xbd\x03\xf9\x62\x59\x31\x11\x00\x1f\x89\x88\xb0\xfd\x53\x59\xa6\xd5\xe9\xc4\x6d\x06\x58\x21\xde\x77\x6b\xae\x6f\x07\x57\x63\x03\x2b\xde\xd5\x88\x37\xac\x4e\xb0\xa5\x62\x77\xc7\x1f\xd7\xe1\x81\x59\x19\xf7\x76\x06\xca\xba\xd0\x35\x81\x62\xbe\x19\x85\x2a\xee\x25\x14\x8d\x91\x6e\x0b\xa3\x07\x6f\x03\x1c\x36\x6c\x01\x97\x9b\x25\xb5\xe7\x5f\xe8\x2e\x9b\xb4\x57\x0c\x4d\xee\xc3\x0e\x6d\xf9\x10\xfe\xe7\x34\x11\xa3\xd6\x4d\x69\xf3\x81\x29\x45\x7a\x4c\x45\xe5\x3a\x5e\xda\xeb\x5c\x63\x32\x7a\xdc\x65\x96\xc6\x45\x99\x61\x1b\x51\xa6\xf4\x4c\x30\xac\x6c\x6a\x3d\x2f\x2e\xbe\xd0\x8d\xd3\x22\xee\x5b\x57\x74\x10\xb5\xe4\x29\x55\xf0\x3e\x9d\x12\xda\x04\x78\x28\xa0\x58\xc0\xd9\xc7\xf1\x53\x0d\x0d\xda\x43\xcf\x77\xcd\x20\xb7\x40\xbc\xb3\x29\x92\x6e\x26\xdb\xff\xa0\x7a\x54\xaf\x99\x11\xfa\x91\xe4\x4f\xb6\xe4\x21\x07\x6d\x76\xfb\xab\x59\x6e\xa5\x8d\xe4\x1d\x43\x82\x1f\x5e\x53\x95\xbd\x0a\xac\xbe\x39\x31\xc2\xfc\x94\xde\x98\xbb\x2e\xed\x93\xb5\x84\x62\x4e\xb0\xca\xc4\x69\x99\x8d\xa9\x61\x75\x96\x94\x40\xce\x92\x70\x4f\x6e\xe0\x29\xec\x6d\x62\xdc\xc3\x94\x13\xc2\x4d\x8c\x4c\x6a\x06\xb6\xef\x82\x76\xc4\x73\x37\x79\xa4\xa2\x68\x08\xd8\xe0\x49\xaa\x35\x25\x71\x59\xbd\x61\x0c\xa5\xd6\xc6\x91\xee\xe7\x1b\x26\x5d\xb5\x7e\xd4\x21\x48\x9a\x41\xa7\x46\x4e\x36\x75\x11\x9c\xa4\xaf\x4c\x8a\x92\x22\x46\x79\x8c\x0a\x9a\x0d\x1d\x49\x21\x76\x77\x42\x8d\x02\x14\x0e\x39\xa6\x1d\xa5\x18\x66\x93\x52\x5a\x56\x35\xaf\x42\x39\x69\x33\x00\x4a\x26\x79\x6f\xd8\xa1\x8d\xec\xed\x9a\xdc\xf7\xe3\x7e\x47\x4e\x97\xe3\xbc\xcf\x7a\x24\xf8\x6a\x42\xac\x06\x61\xde\x51\x96\x3e\x1a\xa8\xa1\x47\xb1\xce\xd0\x84\x57\x25\xf3\x3d\x9b\x61\x0f\x9b\x73\x56\x0a\x01\x95\xbb\x20\x53\xfc\x08\x9e\x8b\xb6\xa1\x99\xf4\x82\x14\x58\xf8\x57\x58\x4c\x3d\xd2\xaf\x5a\xf4\x90\x42\xff\x0c\x4b\x96\x9c\x34\x66\xf2\x8b\x7b\x9f\xab\x82\x41\xb3\x5a\x0e\x73\x44\x33\x1e\xf3\x01\x1d\x18\x1d\x1c\x44\x6c\x30\x4e\x1f\xd5\x65\xad\x98\xe6\x57\x39\xf8\x84\x08\x33\xa6\xe9\x77\xc0\x43\x96\x93\x88\xad\x77\x93\x64\x77\xcd\x22\x85\x34\x00\x43\x66\x7f\x3b\xea\x1c\x7a\xde\x07\xc2\xa1\x54\xfd\x5d\x04\xe8\xbe\xad\x58\x8d\xe2\x1a\xca\x51\x9f\x76\x48\x7e\x47\x93\xbc\x6f\x1d\x16\xcc\x7b\x83\xa2\xf4\x2c\xc7\x8d\x30\xf9\xd0\xf3\xdd\x7e\x5c\x98\xf1\xd8\x9a\x9c\x68\xdb\x40\xa6\x29\xfc\xad\xcd\x76\xcc\xf6\x27\x1e\x8a\xa1\x46\x20\x6e\xa7\xd4\x46\x54\x8d\xf2\x36\xb6\x73\xee\xd5\xe1\x3d\xce\xce\x07\x58\xf8\x2d\x0c\x1c\xf9\x07\xb7\xc1\x4b\xe4\x1f\x85\x90\xf3\xa1\xcd\x96\xcd\xde\x8e\xe3\x22\xeb\x5b\x36\xfe\x41\x21\x56\x8b\x11\xad\xfe\x00\xe9\x46\x39\xd4\xaa\x32\x86\xae\x4c\x5e\x4c\xb5\x8b\xdb\xc0\x7a\xd5\xc6\x85\xef\xbb\x42\x3c\xe2\x5e\x62\x8a\x62\x37\x35\xcd\x24\x8e\xf6\x2b\xb2\x97\x16\x3a\xe5\xea\x3c\xa8\xd3\xdc\xc7\x5b\xc3\x7d\xff\x5f\x32\xca\xd5\xd0\x2c\x44\xee\xff\xcc\xdd\x84\x96\x30\x43\x07\x66\x25\x71\x9a\x14\xee\x57\x89\xaf\x1f\xca\x0a\xa1\xfd\xd0\x37\x39\xca\x16\x88\xf2\x67\xe6\xeb\xd0\x1c\x5f\x3c\xbb\xf7\x40\x02\xde\x2b\x36\x77\xae\xf6\x2f\xee\x95\x9c\xf0\x53\xb2\x7c\x3e\xcd\xe2\x90\x4d\x57\xba\xfd\x8b\xdd\x38\x37\xa9\x02\x11\x10\xbc\x7c\xca\x96\x42\x9f\xd2\xca\xbb\x3c\xd9\xb0\x79\x31\x17\x80\x14\xc0\x99\x21\x95\x95\xd7\xe1\x0b\x57\x07\x97\xa4\x6e\xbc\xc3\x59\x8b\xa2\x7a\xf0\x29\xd1\xa4\x17\xbe\x5a\xcc\x52\x41\x12\xe5\x65\x2d\x9b\xb8\x2b\x40\x71\xf7\x9e\x3c\x7e\x04\x60\x6f\x13\x44\x12\xe2\x2c\x65\x96\x03\xfd\x8f\xbc\xe2\x53\xb2\x7d\xe5\x8b\x37\x69\x3a\x31\x89\x63\x89\xab\x2b\xaf\xfb\x75\x7c\xf2\x8c\xd4\xdd\x44\x55\x0b\xa3\x09\xaf\x9f\x5d\x01\xcf\xba\xf5\x63\xeb\x22\x23\x7e\x64\xc1\x7e\x49\x12\x8c\x1f\x71\xb6\xf1\x23\x0a\xe6\xb3\xb1\x4d\x6d\x7f\xce\x2d\x85\xa8\x29\xef\x9c\xef\xf8\xa6\xc2\x27\x58\x16\xf1\x33\x97\x89\x27\x7b\x9b\xe8\x7e\x6d\x5d\x8a\x24\x4b\x07\x45\x69\xa8\x4e\x82\x07\x75\x99\xba\x14\x97\xc9\xef\x24\x2e\x63\x93\xcc\x84\x2c\xe2\x3a\x59\x16\x88\x33\x96\xc6\xb0\x4d\x5f\x8c\x34\x5b\xb3\x49\x5c\x80\xee\xa9\x64\x11\x6a\x2d\x93\xd7\x6a\x56\x6a\x13\x12\xdf\x7d\x91\x7e\xe7\x62\xa3\xde\xa5\x83\xb9\x3f\xee\x81\x04\xa7\x1a\xb3\xd5\x17\x60\x1c\x5c\xc1\xc5\xa1\x8c\xb7\xa3\x11\x6f\x55\xe1\xd3\x7a\x9c\x00\x5b\x8b\xa7\x0f\x27\x23\x39\x6e\xe3\xe8\x0e\xe3\x65\x51\x3a\xf1\x9a\xb1\x41\xc6\xf8\x0c\x91\x74\x50\x5f\x0b\x3d\xe0\x1a\x6d\xa4\x05\xdf\xf2\x5c\x77\x79\xd2\x1f\x58\xcf\xa6\x97\xa2\x0c\x96\x5d\xad\xd0\xd4\x28\x00\x2b\x22\x68\xed\x39\x7c\xfb\x3d\x9f\xaf\x01\x9a\x10\xa6\x99\x80\x59\x0b\xa0\x59\x15\x41\x8c\x71\xac\xe0\xe2\x47\x89\x55\x99\x3a\xc1\x7d\x6f\x8e\xb8\x5f\x11\xfa\xc7\xdc\x64\x45\xae\x00\xe7\x73\x84\x03\x1f\xb3\x26\x29\x92\x18\x5d\xbf\xdc\x2b\x0f\xb1\x91\x54\xa5\x5f\x1d\x27\x59\xee\x87\xa1\xee\x63\x01\xc3\x72\xa6\x05\x14\xbd\xe4\x80\xce\x79\x5f\x9f\x54\x9b\x2d\x45\x0b\xc4\xb0\x1f\x8f\xe2\x34\x2e\x86\x55\xf8\xe8\x63\xb6\x4b\x0d\x6e\x5c\xe0\x47\x3c\xec\x1f\xc4\x5f\x7d\x8a\x44\x99\x6e\x23\x20\x40\xd2\xb5\x63\xbe\x8a\x73\xb4\x65\x4d\x80\x7c\x98\x65\x61\x83\xdb\xb1\x59\xa5\x8c\x62\x01\x3f\x4f\xec\xf0\x3f\x46\xc9\x0c\x4b\xed\xbf\x74\xcf\x0e\x49\xda\x77\xb1\xf6\x8b\x95\x87\xdb\xe3\x7d\x0b\xd3\x27\xf0\x62\xfa\x8a\xac\x5d\xad\x72\x3d\x90\xc2\x3b\x68\xed\x9a\xa7\x52\xdc\x6d\xf7\xe2\x54\xb2\x6a\x7b\x9d\xc1\x6d\xfd\x32\xd5\x31\xa3\xf7\xb8\x25\x16\xd9\x84\x98\x14\x22\x04\xb8\x49\xfd\xec\x81\x8f\x6e\xdb\x12\xaf\xa7\x7c\x00\x5a\x38\x98\x84\xa4\x5a\x5a\x3e\x0a\x0d\xd5\xcf\x89\x93\x67\x7a\x43\xc7\xe7\x3d\x70\x40\x90\x68\x40\xa9\x7a\xd6\xbe\x87\x89\xdc\x68\xc8\x00\xed\x5f\xac\x82\x9e\x38\x2d\x9d\x3f\xbe\x0e\x12\xaf\x05\xe1\x57\xb8\x23\x51\x28\x86\x8f\xe2\xb4\x5f\x38\xe3\x25\xd5\xc7\x63\x3a\xdb\xf6\x21\xe8\x91\xe7\x4e\x65\x21\x40\x4a\xf0\x57\x9c\x4d\x23\xb8\xb8\xe1\xd6\x63\xd1\x9a\xa3\x68\x7f\x38\xa9\xd2\x92\x19\x12\x40\xbb\x83\x21\xe4\x75\x15\xd8\x75\xe5\x31\xaa\x77\x25\xc9\x53\xd5\x4f\x61\x0c\x7f\x80\xc1\x82\xb1\xf6\xb6\x7b\xc1\x35\x09\x0b\xc4\x3e\x27\x49\xbf\xf3\x73\x97\x9a\x6f\x9d\x46\x65\x01\xfb\xec\x35\xf4\xbc\x3c\x7a\x73\xbf\xa2\x77\xfe\x54\xd6\x07\xb5\x0e\x20\xd3\x30\x78\x03\x20\xe6\x15\x82\x1e\x14\x99\xef\x62\x37\xc4\xa7\x6e\x11\x2d\x0d\xce\xd1\xca\x4a\x0b\x73\xe7\x14\xbd\xfb\xa1\x59\x8e\x51\x27\x7a\x4e\x1a\x05\xc0\x01\xab\x50\x48\xc7\xdb\xf7\x1d\x27\xd8\xe7\x28\x2b\x12\x3b\xc2\xb6\x8e\x21\x7a\x94\xc7\xeb\xd1\xe8\x4b\xc4\xc8\x33\x69\x31\xce\xf2\xd2\x21\x07\x76\x57\x57\x84\x60\x58\x12\x7f\x74\x68\x7e\xec\x1e\x98\xd7\xbb\xa8\xae\x06\x01\xd7\x31\x37\x88\x04\x1c\x40\x40\xc7\x3b\x51\x70\x04\x80\x6d\x80\x7c\x6b\x1d\x9d\x3f\x29\x76\x56\x9f\xc3\x32\xf1\x5d\x3c\x35\x71\x1d\xc6\xaf\xe0\xb1\xe3\x57\xd4\x34\x26\x04\x50\xbf\x15\xd5\xf4\x2b\xf6\x68\x21\xba\xec\xb0\x81\xe4\xf9\x69\x4d\x99\xed\x31\x46\xb1\xe7\x3b\x1d\xbc\x19\x5b\xc5\xe7\xac\xa6\x73\x06\x59\x17\x8a\xdc\xa7\x9c\xff\x93\x7c\x6a\x1a\x6c\xdb\x4e\x51\xcd\xff\x0c\x45\x4b\x2b\x71\x12\xa7\x83\x9d\xd4\xa2\x87\x45\x00\x16\xb1\x7f\x83\xdf\x51\xff\xac\x1a\x0b\x23\x54\xaf\x2f\x45\x64\x8a\x7a\x89\x12\xb6\xa1\x19\x8f\xe3\x64\x63\x2e\x04\x07\xec\x9b\x74\x96\x01\x3d\xb7\xdc\xca\xab\x1a\x82\x6e\x0a\xa1\x38\x75\x9c\x96\xac\x72\x98\x5b\xfb\x54\x20\xe8\x9c\x62\x37\x28\x89\xa8\x59\x5d\x4f\x12\xc3\x7f\x14\x71\xe3\x5e\xe0\xca\x40\xec\xde\x99\x92\x6d\xc5\x09\xb2\x92\xbc\xea\x66\xa4\x77\xd9\xf3\x65\xde\xdf\x8b\x6a\x00\x86\x1a\x56\xa0\x1a\x3c\x62\x0f\x46\x90\x4c\xa9\xa8\xa9\xb0\x40\x30\x09\x94\xb9\x87\x65\xf4\xcf\x43\x73\xc2\x0c\x06\x66\x60\xc9\x52\xfc\x1e\x61\x6c\x9a\x8c\xd2\x2a\x48\xd0\x4c\x51\x6a\x9a\x4c\x81\x3b\xd6\x56\x19\xea\x65\xa3\x6d\x38\x95\xbb\x84\x53\xb9\xcb\xea\x07\xd9\x0a\x36\x09\xf5\x5e\x0f\x3f\x13\xf4\x3d\x27\x69\xb5\xee\x4b\x85\x87\x6a\xb4\x8a\xc6\xbb\x47\x42\x90\x4d\xe9\xf0\x17\xf7\xbe\xd4\x5d\x99\xe4\xe5\xd0\xe6\xb3\x21\x4b\xfb\x1c\xcb\x9c\xb2\x27\xc2\xe4\x95\xde\x05\xf6\xe2\xdf\xc5\xe3\xc0\xee\xe3\xfb\xc3\xa2\x86\xff\x92\xcf\x8d\x28\x4f\x22\x59\x3b\x35\xbc\x59\x99\x24\xb3\x64\xf5\x79\xb9\xe6\x3d\x3d\x0d\xda\x28\x1f\xe2\x9e\x70\x32\x3b\x1f\x90\x37\x2e\x44\x29\xf3\x8d\x39\x16\xd2\x10\x14\xb6\x88\x7c\xd0\xba\xb0\xe5\x2e\x87\xcc\x2b\xb5\x50\x34\xdb\x70\x0b\x38\x70\xa0\xbb\x9e\xa9\x86\xbd\x77\x6c\xf6\x01\xc7\xc7\xfe\x0d\x0c\xcd\x60\x90\x28\x2c\x9f\xc8\x95\xcf\x79\x72\x65\x8b\x6b\x63\x31\xce\xad\x81\xad\x42\xcd\x95\x0f\x33\xe0\xa1\xf9\x60\x8f\xf2\x11\xee\x1c\xc9\xf0\x49\x2a\x92\xad\x54\x81\x60\xdf\x74\x02\xc8\xe0\x02\xd9\x19\x5c\x68\x64\x16\x07\x0e\xbc\xd0\x45\x65\xc3\x8d\x15\xa5\x6e\x93\x73\xcd\xa5\x29\x7d\x17\x55\x2c\x6c\x3c\x18\x96\xf0\x78\xf1\xce\x19\xd5\x35\xa9\x8c\x59\xf5\x57\xa8\x0b\xa2\x5d\x22\xc7\x75\x3f\x08\xf7\xb0\x31\x10\x66\x1d\x30\x0e\x4f\xe7\x0e\x51\x63\x3e\x8c\x48\x9b\xef\x72\x44\x7c\x84\x77\xdc\xce\x87\x9c\xf2\xd2\x94\x9c\x66\xcf\x32\x51\xe1\x9d\x16\xd2\xa5\x37\x84\x0f\x46\x73\x17\xa9\x9a\x7e\xf1\x81\x1a\x4e\x36\x5d\x89\x9d\xb7\x78\x58\x28\x3e\xa1\x82\xff\x27\x6d\xaa\xbe\xfd\x2c\x49\x6c\x7f\x32\x9e\x09\x9d\xeb\xe3\x11\x31\x99\xbe\xcb\xa4\xdb\x8f\x90\x38\x68\xbf\xbb\x53\x6d\x1e\x22\xa6\x02\xff\x00\x55\x56\x09\x8b\x7a\xf5\xc6\x47\x1e\x84\x80\xbd\xea\x76\x44\x1b\xd7\xed\xe9\x33\x41\x45\x6e\x52\x66\xa3\xac\x8c\xd7\xec\x5c\x90\x99\xc6\xbe\xa4\x96\xbd\x1d\xef\xf5\xf5\x43\x5e\x10\xef\x90\x38\xc7\xae\x86\x99\xca\xe2\x62\x17\x73\x77\x9b\x8c\x19\x6f\x29\x67\x68\x03\x1d\x4f\x92\xf1\xdc\x4c\x30\x05\xbb\x4e\xa2\x7e\x33\x6e\x24\x60\x0b\xf8\xf6\x34\x54\xf1\xff\xc9\x94\x44\x3c\x3f\x6b\x59\xb6\x16\xba\xe3\xdc\xf6\xe2\x02\x5c\x0d\x34\x6d\x80\x5a\x90\xe3\xe9\x17\x42\x79\x2a\x73\xbd\x87\xdc\x2c\x27\x76\x96\x58\xc3\xd8\x5b\xa8\x17\x4f\xa6\xbf\xa1\x49\xdf\x4e\xc5\xe9\x0d\xcd\xb8\x44\x2b\x53\xcb\x63\x08\xe2\xd5\x25\x93\x13\x4f\x93\xf4\xc1\x44\xc2\x22\xb7\x15\x71\x45\xf7\x2e\xb8\x53\x08\x76\x6f\x52\xce\x2b\x42\x1a\x62\xf5\x38\x4f\xd1\x6c\x5c\x5a\xc8\x4d\x28\xe0\xc9\x5d\x3b\xe6\x10\x2a\x41\xd2\xf2\x65\xb5\xb4\x93\xee\xa6\xb4\x17\x1c\x56\xe5\xab\x0c\x63\xcc\x4d\xaf\x8c\x7b\x76\x67\xb5\x53\x62\x43\x3a\x12\xd1\x02\x88\xef\x40\x5e\x06\x9c\x3d\x1e\x18\x94\x76\xd5\x60\xa1\x1a\x6d\xf2\xc7\x6d\x98\x9b\xbe\x4d\xcc\x86\x87\x8c\x62\x9b\x7f\x67\x1a\xa2\x42\x10\xf2\x14\x51\xdc\xcc\xcb\xdd\x92\xdf\xcb\x46\xe3\x89\x7b\x01\xd5\x22\x81\x40\xef\x33\xa2\x1f\x7d\xd6\xd0\x5b\xf8\x4a\x70\x55\x99\xa9\xf5\xaa\x3b\xbf\xfa\x8d\xb0\x59\x79\xf5\x9b\x3b\x91\x5a\x16\x9a\xa4\xb4\x79\x6a\xaa\x89\xe4\xe6\x35\xda\x1a\xaf\x53\xc0\x8f\x4a\x85\x34\xc2\x29\x5d\x81\xdb\x20\xf9\x28\x9f\x66\xf1\xcd\xe3\x0c\x47\x54\xa1\x14\x2c\x0d\x78\x89\xca\x1e\xa8\xbe\x5c\xd5\xa3\xaa\xbc\xd8\x6b\x98\xec\x5b\xf0\x7e\x07\x5f\x20\x95\xbe\xd2\xe6\x85\xd8\x22\xe3\x4b\xb1\x54\x1e\x67\x81\xe7\xe3\xd3\x6d\x00\xfb\xfd\x8b\xdd\x97\x5f\x7e\x94\xb6\x62\xe9\x5a\x60\x5c\xc2\xb7\x04\x1b\xd2\x1c\x74\x42\x70\x45\x22\x2f\xa6\x93\xce\xbd\x52\xf5\xfb\xab\xee\x5b\x43\xbd\xea\x21\x63\xc5\x7d\x03\x03\x0a\xf3\xe4\xf7\xa3\xce\xd7\x7e\x4d\xc2\x96\x53\x32\x2d\x3c\x57\xc4\x37\xc8\x3f\x69\x23\x6a\x25\x59\x0f\xc8\x5c\x75\x83\xaa\x3e\x2f\xc7\xde\x5e\x66\x3c\x49\x12\x69\xa0\x23\xaa\x96\xe0\x54\x71\x3a\x54\xac\xf1\x41\xe0\xc8\xe4\x71\x29\x3a\xf4\x08\xe6\x01\xb0\x94\xe3\x16\xcd\xcd\xee\xc8\x38\x2e\x9b\x7b\x60\x0a\xc1\x23\x38\x1e\x73\xed\xb2\xd1\xd8\xf4\x4a\x6c\x47\x78\x84\xc0\x98\xca\x31\x91\x07\xed\xab\x63\x9b\x97\xc5\x9c\x7b\x27\x64\x6f\xa6\x4b\xc2\x23\xae\xb2\xc9\x04\x53\x24\x9c\xb7\x09\x96\xf1\xfa\xf6\xd7\xfc\x95\xee\xe1\x83\x7b\xc9\xc4\xe3\x1d\x42\x75\xbf\xd3\x4a\x22\x4b\xe2\x55\xbb\x1e\x17\x76\x26\x38\x2b\x5f\x60\x51\x42\xcc\x3a\x8c\x99\xef\x36\x16\xcb\x83\x7b\x83\xf7\x72\xa7\x3e\xa0\xbc\x0a\xf3\xc9\xe9\xa3\x21\x95\x8d\x8b\x67\x3b\xaa\xc9\xf5\x17\x9e\x22\x96\xd7\xf0\x89\xf9\x6a\xf0\xab\x9d\x8d\x9b\xf7\xd8\x2c\x2e\x4d\x43\x1b\xed\x2d\xd7\x46\xf3\x96\x41\x2f\x6a\x19\xe8\xff\x66\xec\x4f\x63\x24\x49\xd3\xfb\x30\xbc\x3b\xab\xaa\xaf\xb9\x7b\x66\x76\x29\x51\xff\x3f\xc3\xd4\xca\x23\x1a\x23\x5a\x02\x0c\xdb\x5a\x1b\x8e\xdc\xea\xda\x9d\xed\x06\xb7\xa6\x50\xdd\xec\xa6\x06\x06\x3c\x51\x91\x6f\x65\xc6\x56\x64\x44\x6e\x44\x64\x55\xd7\xc0\x1f\xf4\xc1\x36\x04\x0b\x30\x0c\x03\xbe\x64\x48\x22\x2c\x99\x96\x2c\x11\x24\x45\x52\x5c\x92\x5a\x46\x2e\x97\xcb\xbd\xb5\x33\x3b\xe7\xce\xb1\xd3\x3d\x7d\xdf\xd5\xf7\x5d\x6d\xc4\xf3\x7b\x9e\xf7\x7d\xa2\x22\x86\xf2\xa7\xc9\x9c\xae\xbc\x22\xde\xf7\x79\x9f\xe3\x77\x40\x4d\x09\xdb\x9c\x2d\x92\x50\x42\x4e\x4f\xa8\x44\xc0\xe5\x9a\xe9\x2a\x2a\xc0\xb7\x70\x72\x03\xd1\x00\x11\x4a\x14\x38\xf0\xa5\x46\x4d\x42\x95\xcf\x4b\xd8\xd1\xf7\x9e\xe9\xea\x2e\x21\x55\x31\xd6\xca\xce\x01\xcd\x76\x4e\x3a\x47\x9c\x6c\x1d\xad\x4d\x56\xac\x57\x1d\x8b\x41\x90\xf4\xc8\x86\x1e\x95\x58\x07\x88\x25\x14\x83\xef\x95\x75\xeb\x1b\x97\x8a\x5d\x02\xa0\xcd\x62\xd5\xed\x06\x7c\x9b\x2e\x91\xe0\xd6\x95\x53\xca\x75\x02\x6c\xf3\x87\x50\xd4\x41\x17\xea\xaa\xef\x80\xe8\x77\x6a\x89\xca\x6b\x94\xa8\xe0\xaf\x6e\x23\x51\xe1\x27\xb6\x49\x59\x98\x24\xa9\xee\xb8\x61\xc9\x3f\x9c\xef\xc7\xe9\x82\xe0\x72\x9e\x53\x8a\xb6\x27\x34\x6b\xe4\x91\x9a\xaa\x56\x79\x9b\xc9\xa6\x1c\x91\xea\x96\x42\x66\xfe\x9e\xaf\x40\x33\xb7\x95\x12\x52\x10\x66\x69\x0e\x37\x39\x44\xe7\x87\x8a\xd2\xbe\xbd\xeb\xfc\x96\x37\x29\x57\xb5\xdd\xd6\xea\x9a\x88\xc3\xbc\x3a\xd5\xdf\xb6\x1c\x90\x5e\xba\x96\x3c\xe3\x0c\x57\x9e\x9a\x54\x31\x4d\xac\x22\xe9\xf6\xb0\xe0\x70\xb9\xfd\x73\xb6\x3f\xd1\x11\xb3\xa4\x93\x90\xfa\xc0\x2a\xfd\xec\x44\x11\x6d\x3e\x0b\x13\x64\xf4\x81\xb8\x0d\x81\x4c\xf7\x6d\xba\x62\x74\x95\xd6\xfe\x83\xae\x92\x7b\x45\xdf\x8c\x56\xc3\xd4\x5f\xeb\x76\xbe\x74\x84\x5b\x03\xb7\x90\x4b\x48\x8d\x48\xeb\x17\x0b\x6d\x8a\xd6\x2c\xdd\xa8\xf7\x7e\xa1\xab\xc5\x82\x14\xae\x78\x94\x45\x09\x14\xe4\x95\x9a\x01\x7d\x39\xf4\xd7\x76\x4d\x5c\x8b\xee\xa9\x6e\x5d\x17\xc1\x0e\xb5\xeb\xba\x08\xcf\xd5\xcf\x25\x93\x17\xa2\xf7\x80\x81\x03\x38\x2c\xfc\x58\xf1\x4b\xa3\xb5\x80\xaa\x14\x6e\x5b\xe9\x41\x26\xae\x10\x3e\xec\x56\xe3\x98\x97\xf4\x7d\x2d\xa8\x45\xce\xe9\x2e\x99\x5e\xe2\x68\xfa\x0d\x35\xee\xb9\x8a\x2d\x23\xf8\xbf\xea\x33\x45\xc8\xf8\xd3\xd4\x65\xf3\x22\x58\x5e\x9e\x72\xcd\x14\x50\x9d\x51\x4f\x7d\x5c\xaa\xf6\x54\xab\x9f\xde\x6a\x5a\x48\x55\x69\xad\x57\x6c\xee\xd3\x94\x94\x25\x6d\x04\x93\xa5\x49\x30\x2e\xa2\x50\xd8\x22\x68\x6f\x30\x3e\x10\xe8\x1e\x5e\xb5\xc8\x4e\xb6\x77\xdd\xaa\x4d\xb3\x1d\x78\x91\xc5\x69\x59\x81\xd5\xc7\xbb\x4a\x0c\x13\x94\x1b\x85\xb7\x3d\xc8\xbf\x89\x19\x56\x68\xee\xde\x56\x27\x54\x6e\xb2\x28\x1d\xe7\x34\x3c\xc6\x72\xf9\x23\x05\x50\x46\x2d\x88\x60\xf8\x31\xe5\x0f\xe8\x5c\xde\xb4\x0d\xee\x51\x54\x14\xa4\xf8\x3c\x98\x72\x05\xc7\x69\x55\x10\xbe\xa5\xb3\x8b\x8d\x16\x09\xad\x79\x6f\x39\xcd\xd6\x82\x0c\x13\x0a\x06\x9f\xd1\xae\x41\xcb\x06\xb5\x29\x7e\xf8\x8d\x06\x60\x7a\xff\xbc\xf7\x55\x53\x4c\x39\xe8\xc1\x0d\xd5\x66\x7b\x0f\x9f\x8d\x44\xf6\xa2\x4a\xb0\xaa\x72\x22\x8d\xa3\x5e\x40\xf7\xd1\xa1\x7e\xcf\xd3\x67\xf1\x63\x2d\xde\x99\x92\x5a\x23\xd1\xa0\x31\xd8\xb6\xba\x8b\x76\xf4\x73\xbd\xc5\x4a\x7c\xe1\xa0\x17\xe4\x2b\x72\x6c\xe2\xbe\x9e\x42\xe8\xe7\x27\x56\xec\x60\x29\x4b\xd7\xb8\x2d\xae\x08\xd9\xd2\xe1\x3e\xab\x32\xff\xfb\x6d\x18\xdf\x30\x58\x11\xe9\x6b\xe4\xf3\xc7\x75\x35\xd4\x54\xf3\x3c\xb2\xe0\x65\x63\x61\xa3\x23\x71\xb9\x8a\xc3\x92\x9f\xd4\xc8\x0e\x51\xf8\x1a\xe5\x52\x92\x16\xd2\x65\x15\x7f\xe8\x96\x0d\x12\x8c\x7b\x11\x86\x9f\x6c\xb2\xe5\x3b\x96\xc1\x59\x15\x22\x4c\x55\xa7\x58\x24\xf0\x2e\x65\x4b\xf9\xd3\x1a\xa5\x43\x41\xfb\x77\x4c\x14\x2e\x11\xd6\xc7\xdc\x5f\xb5\xd9\x5f\x9c\xa6\xe0\xb3\x55\x7f\xc8\x6d\x6a\x0d\xd8\x7b\xb0\xc5\xc8\xd3\x1e\xd8\xe3\x61\x90\x70\xc8\xc1\x7a\x85\x78\x30\x76\x2a\x8c\x0e\x64\x9f\xd1\xc5\xe5\x3f\x9a\x38\x89\xc5\x4f\xda\xf4\x8c\xf2\xb5\x20\x8e\x9d\x42\xa2\x9d\xbf\xbb\x59\xbc\xf3\xad\xcc\x4c\xbe\x66\xe2\xb8\xe3\xe4\x49\xfe\x58\x23\x96\xfe\xb8\x35\xbf\xcb\xc7\xa3\x51\x9a\x8b\xe1\x19\x4e\xe1\xfb\xf4\xfe\xca\x5d\x62\xce\x72\xba\x5c\x7b\x72\x29\x2d\x06\x04\x79\x12\x93\x34\x25\xdc\xff\x13\xfa\xbd\x38\xd2\xee\xe8\xce\xd6\x65\xca\x37\x78\xfc\x47\xa3\x0d\xd5\xc9\x7f\xc5\x8a\xd6\xb9\x66\x30\x03\x7d\xac\xe6\x5d\x15\xac\xf1\x81\xb8\x74\x52\x2b\x3b\x89\x8d\x99\xee\x73\xca\x8f\x64\x98\xf6\xb3\x00\x18\x6c\xe7\xa8\x8c\xec\x5c\xda\xaa\x4f\x2a\x3d\xa2\x60\x38\xea\x58\xe5\xef\xef\xbf\x81\x86\x94\x10\xee\x5b\xe4\x1f\x56\xc9\x27\xf4\xf0\xac\xf5\x42\x71\x54\x81\x73\x1a\xa6\x16\xa6\x99\x01\xaa\x03\x7d\xf1\x8b\x94\xa7\x22\x68\x32\xe2\x46\x84\x02\xe9\x7b\x22\x45\xf9\x3a\x2d\x64\xfe\xab\x49\xdb\xd1\x30\x4a\xe3\xa8\x88\x14\xa4\x5e\x52\x98\xea\xa3\x84\x04\xb8\xf5\xb6\xef\x9f\xf7\x96\xa3\x24\x48\x42\xfb\x2a\x6c\xc7\x9d\x13\xb7\x4f\x77\x36\xea\x9c\x7d\xfb\xbc\xb5\x34\xb5\x2f\xb1\xac\x5a\x9b\x5c\x5d\x69\x00\xcd\xe6\x0e\x79\x85\x89\x0d\x51\xb1\x0b\x5b\xf2\x5b\x61\xcc\x79\xc7\x57\xa8\x7e\x27\x66\x20\xcd\x70\xb3\xf0\xf2\x41\x6f\x64\x10\x12\x70\x2d\xce\x2b\x83\xfc\x26\xe8\x60\x7e\xfe\x20\xe9\x6c\x4f\x51\x8d\x20\x8c\x2d\x57\x4e\xde\xf4\x95\x37\xe1\x87\xad\xde\x26\x5f\x0d\xe0\x0f\xed\xd4\xbf\xf1\x1a\x29\xee\x3e\xad\x69\x48\x99\x6f\x98\x76\x5c\x41\x72\x42\xef\xc0\x13\xbe\x1c\x7d\x3d\x53\x98\x6c\x18\x25\x02\xf8\x47\xdb\xec\xaa\x16\x86\xbf\x5a\xfe\xe2\xa7\x21\x70\x07\x59\x94\x17\xe9\x68\xc0\xd9\xb1\x15\xb8\xb1\x72\xcc\x9f\x68\x70\xcf\x5d\x85\x07\x0d\x07\xd5\x67\x1a\x4a\x8f\x75\xfa\x81\x63\xeb\x27\xd8\xaa\x82\xe3\x55\x00\xbf\x93\xa5\x33\x2e\x3d\xa5\x6d\x22\xfe\xc4\x3a\x92\x2c\x67\xe9\x6b\x26\x99\x51\x03\x7a\x6c\x33\xb4\x34\x1e\xd1\x1b\x80\xd7\xf6\x2d\x25\xeb\x71\x1f\xed\x1e\xfe\x23\x7f\x6f\xbd\x5c\xfd\x25\xaf\xaa\x56\x0f\x4b\x90\x3f\x81\x53\x86\x9f\xe8\x5e\x78\x16\x99\x04\xd2\x25\x2f\xb9\x3b\x7e\xe0\x80\x25\xef\x7d\xa6\x76\x7c\x87\x55\xda\x92\x90\x77\xb0\x95\xca\xfe\x19\xfd\xbd\x08\xe1\x89\x69\x67\xf8\x9a\x09\x07\x69\x1e\xa7\xab\xc1\x0a\x5d\x6b\x76\xe1\x40\xf5\x81\xf5\x74\x9d\x7b\x37\xe0\xb0\x9d\x6a\x6b\x0c\x53\x90\xb5\xee\x86\x62\x3d\x51\x7d\xb8\x88\x31\x3c\xa7\xad\xfa\x7a\xd1\x52\x14\x47\xc5\x3a\xad\x23\x94\x76\xe7\x94\xde\x9c\x46\xcd\x98\xa3\x47\xd3\x64\xca\x11\x68\xae\xd3\xbb\x62\x05\x1d\xd7\xd4\xdc\x53\xaa\x8f\xdc\x8b\x32\x13\x16\x48\xdc\x58\x07\x10\xc5\x82\xd0\xf0\x14\x4e\xe2\xc3\xd2\xf5\xaf\x6e\x34\x0c\xe5\xff\xba\x57\x64\x2c\x47\x86\xae\xc4\xb1\xd2\xd9\xa8\x1c\x53\xc8\xac\xa5\x2c\x4a\xfa\xf9\xb4\xd3\xe0\xb8\x41\xe9\x21\xea\x27\x3e\x22\x84\x35\x51\x1d\x11\x80\x3c\x5f\x53\x58\xb6\x7d\xc1\x1a\x05\x50\xb6\xdc\xd7\xaa\x63\xd0\x5c\x13\x73\x62\xdc\x0d\xe1\xa2\xd3\x52\x13\x93\xa5\xa6\xa2\xd3\x41\x6f\x69\x1c\xc5\x3d\x99\xdf\xa0\xc2\x7f\x1d\x67\x19\x3f\x51\x68\xfe\xd5\x28\x1f\x07\x71\xae\xc0\x84\x3c\x0a\x41\xd0\xbc\xa7\xec\xeb\x4f\xb6\x78\x64\xce\x79\xc3\x28\x93\xa3\x1c\xd5\xe9\x75\xa5\x5e\x75\x5d\x39\x2f\x10\x6f\xf2\x49\x4a\x2f\xed\x11\x67\xed\xe3\xdf\xf0\xd5\xf8\xf0\x1e\xc6\xa2\xf8\xf5\xe7\x30\x16\xe5\x27\x0a\x5e\xf1\x80\xd6\x0f\xca\xb5\x69\x0d\xf1\xfc\x84\xdb\x6e\x56\xe0\xba\xba\x13\xd6\x84\xad\xfa\xa2\xc2\x6f\xa4\xb3\x17\x07\x93\xb6\x58\x04\xd0\x44\x84\x91\x95\x43\x5e\xba\x64\x32\x11\x0b\x45\xdb\xe6\xb8\xaf\x69\x5f\xa5\x52\xd8\xf9\x40\x29\x11\x85\x51\x16\x8e\x63\x32\x01\xb7\x25\xdb\x27\xf4\xf5\xf9\xb1\xf2\x3c\x0b\x83\x3c\x0c\x7a\xf8\x4b\x2b\x7f\xea\xa8\x16\x8d\xc6\xe1\x8b\xde\x1a\x5c\x8a\x2d\xa7\xe6\xbf\x65\x21\x25\x5c\xcc\x1d\x24\x68\x29\x0b\xd1\x25\x12\xc1\x70\x29\x5a\x0d\x62\x43\x54\x34\x3b\x3d\xe3\x16\x3d\x3f\xa1\x86\x6c\x53\x1b\x20\x31\xe1\x0a\xa9\x27\x6b\x62\x6a\xa9\xe8\x9e\x97\x7c\xb1\x68\x1d\x8c\x21\xa7\x21\x63\x20\xad\xaf\xdf\xd4\xf9\x7e\xc5\x0b\xd3\x21\x6b\xe5\x00\x67\xc8\x3d\x5b\x7e\xa2\xe8\x1e\x51\x52\x64\x69\x6f\x1c\x1a\x04\x20\x14\x4a\x33\xe8\x03\xf0\x93\x89\x5b\x7b\xd1\x72\x94\xd4\x27\xcf\x6a\xa8\xad\xb4\x69\x8c\x19\x9a\xde\x0e\x05\xf4\xb8\xa2\xda\x3a\x57\x94\x0e\xcf\x69\xac\x2a\xea\x22\xbc\xff\x5c\x57\x09\xe9\x63\xd4\x84\x70\x71\x56\xa1\x7b\x73\x13\xa6\x49\x8f\xec\xcf\x05\x60\x44\x6f\x61\x7d\x70\xf6\xed\xe3\x45\x7a\x87\xae\x92\x85\x1a\xcf\x1d\xe2\xdb\x71\x46\x79\xb3\xde\x56\x8a\xc8\x97\x81\x09\xe0\x28\x42\x8b\x05\xeb\xf8\x4e\xe3\x12\xbf\xe8\x0d\xa2\xfe\x40\x14\x86\x19\xe5\xe6\x3b\x2c\xca\xe5\x46\xee\x70\xa4\xaa\x5f\x88\xc9\xd1\x71\xd9\xcd\x0f\x29\x3a\xf1\xe3\x16\xa9\x9a\x05\x6f\xd5\xf4\x03\xc8\x17\xa2\x5c\x60\x8c\x24\x3f\x69\xe4\x6f\x64\xb0\x6e\xcc\x28\x32\x79\x01\x07\x4a\xd6\xb1\x51\xf3\xe9\x56\x59\xf3\x74\xd5\x64\xb9\xa9\x3e\xca\xf6\x72\x21\x1d\xc5\x8f\x5b\xaa\x50\x2f\x0f\x86\xa3\x58\x76\x0c\xa3\x98\x34\x5b\xe7\x9a\xc2\x6d\x9d\xb0\x65\x94\x49\x7a\xf0\xe6\xb7\xd2\x19\x37\x94\xa8\xe8\x8d\x72\x6f\x83\xe5\x09\x90\x9b\x28\xc1\x2a\xe9\x8b\x8b\x8d\xf9\x39\xa9\xe7\xe7\x51\xcf\x4c\x3b\x5a\xcb\x69\xa5\xab\x84\xf1\x16\x46\xae\xb7\x94\xe9\xe7\x19\xed\x0c\x65\xc8\x7b\x19\x39\xe9\x16\x19\x6d\x1c\x7c\x0f\xd4\xbb\x9c\xb7\x5d\xc0\xa0\xd7\xcb\xa7\x6a\xde\xa1\x35\x53\x51\x47\x25\xba\xee\x7c\x1f\xd3\x5e\xaf\x53\x23\x3e\x55\x7f\xc5\x4f\xfc\x4f\xed\x32\x0d\xd2\xac\x98\xd2\xc8\x56\x5a\xd0\x98\x4e\x5d\xc7\x8e\x44\xff\xfc\x27\x2d\xa3\xfe\x45\x6a\xce\x48\xd0\x69\x63\x40\xd6\x54\x33\x82\x18\xe2\xd8\x42\xfc\xa0\x1f\x88\xfd\x35\x41\x8f\x57\x12\x6f\xc6\x66\xd3\xa6\x47\x90\xdd\x41\xd3\x11\x9c\x38\x37\x15\x24\x93\x61\x94\xb8\x98\xff\xc6\x57\xaa\x72\xf7\x6a\x60\xff\x0f\x69\x47\x89\x78\xa2\x23\x31\x9f\xf5\x95\x86\x27\x63\xec\xc5\xd2\x4d\x71\x0f\xd6\xc3\xd8\xec\x74\x46\x9f\x6f\x29\x4b\x8f\x73\x34\x2e\x13\xf7\x4b\xfa\x19\x88\x0d\x90\xa8\x02\xca\xe4\x06\x5a\xf0\xfc\x0f\xf8\x61\x32\xc4\x76\x4d\x9c\x95\x34\x5e\x32\x99\x22\x66\x9d\xd5\x4a\x82\x67\x95\x68\x3f\x29\xe2\xc4\x51\x32\xad\x95\x88\xee\xd0\x07\xa2\xa9\x75\x56\x19\x97\x9c\xd5\x78\x97\x3b\x8d\xd8\x70\x64\xc1\xcb\x4c\x9e\xc6\xbd\x8e\x92\x2e\xff\xc8\x57\xde\x6e\x1f\x95\xcf\x2a\x06\xf6\xd0\x90\xa5\x5b\x4e\xfb\x42\x14\xa4\x94\x86\x02\x00\x22\x98\x82\x7c\xa8\x66\xc0\x1f\xb6\x9c\x2e\xf3\xde\x6a\x1a\xf5\x3a\x9d\x5f\xfd\xb2\x75\xb1\xe8\x28\x77\x8b\xad\xcb\xf6\xc0\x01\x82\x4b\x67\xe1\x20\xe0\xa1\x3c\x50\x36\x40\xe2\xf1\xe3\xc9\xd3\xca\x4a\xc8\xac\x41\xf3\x67\xee\x10\x37\x61\x2e\x2a\x1c\xd4\x31\x80\x2b\xf9\x1f\x9c\x74\xe7\xdf\x3f\xa6\x3a\x10\xfd\x68\xd5\x4c\x6b\x0a\x3f\x56\x4c\x9b\xa8\x8f\x52\x15\x6e\x1b\xe8\x7b\xe3\x24\x8e\x56\x0c\xbc\xb4\x5f\x71\x06\x28\x76\xc3\x5d\x52\x94\x88\x30\x1d\x27\xb9\x01\xe4\xc7\x66\x3e\xa7\x94\x25\xf2\xa9\xb6\x88\xfd\xd5\x71\x2f\x0a\x2d\x1d\x97\xd1\x18\xbe\x3b\x64\x2f\xa8\x46\x3c\x91\xb3\xe4\x3e\xa2\x51\xc4\x83\x26\x0c\x25\x6e\xaa\xb3\xed\x8c\xda\x72\xef\xd8\xb3\x39\x33\xc3\x74\x15\xf1\x11\xb3\x04\xb6\x9e\x41\x4b\x00\xa8\xac\x9a\xe2\x88\xb3\x27\xb2\x07\x70\x66\x8a\x19\x7a\x91\x00\x93\x95\x54\x3b\xbe\x01\x7a\x37\xd0\x6d\xc4\xe3\x0d\x2c\x68\x29\xf1\x9f\xd0\x17\x6d\x84\xee\x98\x25\x79\xda\x8e\xed\x5d\x28\x13\x01\x89\x75\x1e\x91\x02\x03\x04\x50\xab\xf9\x1f\x1c\xe2\x2a\xcd\x8b\x2a\x8b\xd3\xea\x71\x67\x54\x5f\xae\xe9\xf0\x56\x9d\xcb\xb1\x24\xde\x8a\xcd\x34\x27\x4f\xb6\x9a\xcb\x1f\x59\xf8\x9c\xb7\x7f\x5e\xcb\x82\xa0\x83\xc0\x8f\x6d\xe7\x75\x25\x58\x1a\xc7\x74\x9c\x8a\x60\x90\x9a\xdf\x5c\x6a\x74\xac\xf7\xcf\x7b\xeb\xc1\x30\x88\xc2\x41\xd4\x71\xcb\x93\x47\x1a\xfc\xa4\x41\x20\x3a\x3c\xeb\xad\x05\x18\x9c\xd0\x1a\x90\xd0\xa1\xc2\x48\xdb\x76\x2c\x4c\x38\x48\xa2\xaf\x8d\xe5\x3a\x49\x7f\xa9\xa3\xe4\x0e\x1a\x36\x9f\x8b\x0b\xde\x28\x8d\x92\xa2\xd6\x96\xb8\xe4\x2b\x68\xcf\x25\x75\x53\xd7\xa2\x62\xf0\x97\xe8\xdf\x2c\xab\xdd\xe1\x13\x70\x53\x51\x80\x9f\x64\xaa\x35\x1a\x9d\xb7\x68\x1a\x89\x03\xf0\xb6\x92\xb1\xdc\x81\x99\x92\xa4\xc8\x1d\xab\x6b\x7d\x4d\xb1\x27\x6e\xfa\x9d\x5f\x11\x3e\xd3\xf7\xb5\x20\xf9\xae\x49\xe7\x4b\x47\xb4\xcb\xbc\xfc\xcc\x47\x9a\x42\xfe\x2e\x02\x0b\x96\xfb\x47\xbe\x13\xb3\x79\x15\x48\x32\x74\x78\xee\x62\xad\xb3\x76\x04\x90\x68\x0c\x90\xa5\x2c\x1f\x05\xc2\x0c\x0d\xd5\x78\x04\xe9\x6b\x4f\x22\x96\x29\x13\xc5\x0c\x95\x3b\x81\xfc\xc1\xc3\xa2\xc6\xad\x3e\x70\xc0\x5b\x32\x81\xe3\x77\xb0\x06\x53\xe9\x86\xb1\x27\x5b\x75\x6e\xc7\x59\x5f\x3a\xf8\x36\x93\xa9\x2e\x80\x34\x5d\x6d\x81\xb1\xf2\x39\x08\xcd\xa0\x8c\xbb\x58\x6e\xff\x1c\x2f\xe9\xa7\x68\xa7\x09\x23\x88\x2e\x2b\xc6\xb6\xdb\x26\x6e\x2a\x1d\x2e\x87\x39\xf5\x24\x2c\x1c\xc1\xa9\xe6\x5f\x6e\xe8\xcb\x54\xf5\x6e\x95\x40\x8f\xb2\xc8\x72\x23\xd1\x4d\xc2\x44\x82\x1f\x37\x7e\xd0\xfe\x79\x6f\x29\x1d\xf7\x07\xc5\x16\xc0\xc0\xbc\x7d\xfc\xa9\xfd\xb7\xcc\x50\x9b\x05\xa3\x10\x11\x54\x70\x09\xc1\x25\xad\x8b\x78\x4e\x61\xe5\x32\x53\x44\x19\x69\x95\xef\x70\x20\xb4\xfb\x8a\x73\x7c\xc7\x57\xf8\x53\x56\xc1\x40\xff\x0a\xc3\x06\x81\xb0\xd1\xfb\x8b\x5b\x59\xcb\xbc\xa9\x48\xd7\xa6\x9d\x76\xe1\x43\x5f\x19\x0f\x9e\xd0\x0d\x2b\x65\xe8\xf5\x9e\x62\x32\xe6\x63\xd3\x9b\x72\x45\xfd\x1d\x55\xd7\x6c\x94\xca\x03\x8d\x64\xd8\xe5\x35\xce\x9f\x70\x4a\xd9\xa7\x95\xaa\x09\x7a\xac\x11\x3f\xaa\x40\x40\x0e\xf1\xf1\xaa\xb4\x28\x71\x86\xb3\x04\x03\x3f\x71\x7d\x32\x85\xb1\x9b\x72\x44\x1e\xdc\x68\xec\x96\x47\x8a\x29\x76\x4d\xc9\xc4\xaf\x45\xd5\x59\x13\x84\x2b\x68\xab\xe0\x4e\x41\xdd\xd6\xa2\x79\x1d\xd8\xed\x8a\xea\xc6\x2c\x99\x20\x1c\x18\x66\x38\xb6\x85\x37\x7a\x9d\xa5\xc0\x38\x3a\x8c\xea\x2a\x0d\x83\x41\xc7\x0d\x7d\xb9\xa0\x17\xa4\xbf\x54\x33\xcb\xe9\x38\xb1\xec\x29\x8e\x68\xf8\x52\x12\xde\x5c\xa3\xcb\x8c\xfb\x86\x9d\xc0\x44\x4b\x42\x0d\x31\xdf\x6f\x74\x24\x5e\x7d\xd5\x2b\x4c\x1c\xd3\x6f\x07\x99\x13\x6c\xbf\xcd\x09\x15\xb3\xf8\x5f\x97\xe0\xd0\xc3\x6b\x60\x64\x32\xf2\x0f\xcf\x3b\x35\xbe\x8b\xa6\x73\x29\xa6\x4e\xb0\x62\xf2\xa7\xea\x1d\xca\x2a\x9a\x4a\xd3\x82\x6e\x27\x2a\x4d\xb8\x79\x60\x69\xfd\x5b\xed\xb5\x87\x11\x9c\xcc\x24\x68\x35\xb0\x34\x23\xe2\xa4\xb4\xd2\xeb\x4d\x51\x8a\xf8\xfc\xce\x13\x87\x2e\x67\xc8\xb1\x68\x75\xb8\xae\xdb\x36\x14\x0c\x16\x15\xe2\xfc\x28\xcf\x34\x66\xf1\x2f\x7a\x66\x38\x1a\x04\x79\xf4\x9a\x8d\x95\xac\x37\xa7\x18\x36\x6f\xb5\x89\xa2\x2c\x05\x71\x90\x84\x46\x99\x77\x8f\x7c\x57\xa5\x8e\xb6\xe8\xb4\x05\xbb\x1c\xf3\x1b\xa5\x05\xde\x7a\x43\x23\xa0\x6f\x23\x1e\xa0\x3b\xf5\xaf\x4b\x47\x06\xdb\x36\x71\x7e\x02\xd7\xe9\x76\x0a\xea\x4a\x11\xd6\xaf\x69\xac\x6c\x96\xf2\x72\xe6\x61\x38\x7d\x35\x9d\x1e\x4b\x46\x4c\x6f\x20\x13\xf3\xcf\x28\xf5\xbe\xbc\x88\x8a\x71\x11\xa5\x49\x10\xef\xa4\xeb\x69\xdd\x8b\xaa\xef\x28\x50\x1c\x0a\xdc\xd8\xc4\x8f\xd4\x30\xe5\x8e\x12\x60\x7d\x84\x1b\x2d\xa6\xb9\xf4\xad\xc4\x4d\xb7\xa5\x22\xcf\x4c\x31\xce\x60\x4a\x28\xde\x30\xca\x24\xe2\x84\xba\x76\x77\x5a\x44\x6d\x0f\x7a\xbd\x28\x1f\xc5\xc1\x3a\xaf\x69\x6c\xf6\x1f\x6b\xfd\xee\x1f\x7f\xaa\x13\xdc\x5a\x9a\xb9\x01\x18\xb2\x69\xf8\xf4\xf2\xe3\xae\xdb\x0d\x71\x50\x44\xc9\x8c\x9a\xec\xef\x60\x65\x49\x49\xa0\x15\xb7\x0c\xdf\x59\x9a\x69\xae\x04\xd9\xd1\x30\x56\x38\xf4\x32\x51\x94\xc9\x73\xa0\xe3\xac\x78\xd1\x25\x15\x0b\xbf\xa7\x1d\xad\xaf\x20\xcd\xa1\x29\xc7\x93\x66\xf5\x2f\xc4\xbb\x7b\x5a\x85\xea\x42\x9b\x8f\xfe\x72\xd4\x1f\x14\x74\xa9\xd1\x0f\xc6\x2d\x44\x84\x79\xa0\x22\xe7\x9f\x97\xae\xab\x0a\x22\x77\x1c\xaf\xef\xa9\x6e\x31\xe2\xc4\x26\x6e\xb1\x75\xa1\x3b\x2c\xde\x07\x77\x4a\xa5\xa8\x3e\xa5\x46\xeb\x6f\x20\xa6\x62\xb2\xcb\x9b\x00\x49\xfc\x6e\x65\xce\x74\x1d\xe9\x0f\xbf\xc4\x77\x72\x2e\x17\x6b\xdb\x6b\x9c\x14\x4f\x39\x6b\xd4\xed\x24\xdc\x8e\xc4\xee\x01\x9a\xcd\x22\x8b\x49\x1f\x23\xb2\xf7\x55\xfe\xc5\x74\x22\x1c\x9f\x08\x91\xa7\xd4\xfc\xe6\x0e\x27\x63\x48\x06\x99\x75\x24\xe9\x75\xe7\x88\x9c\xd0\x77\x94\x9d\xcb\x0d\x5f\xc9\x9b\x9c\xa6\x4b\xc1\x3d\x7d\x04\x22\x81\xa2\xbb\x11\xee\xb6\xee\xcf\x69\x82\x5c\x2f\xc2\xa6\x23\xc9\xa6\xea\xe5\xcc\xa5\xc7\x35\xc2\xbe\x07\xdc\x1d\xf8\xe9\xed\x13\x97\x47\xa7\x23\x93\xec\x76\x0c\xfe\xb7\x91\x70\xa2\x19\xf3\x31\x7e\x3d\xf6\xd4\xd7\x91\xa4\xf2\xbf\x50\x1c\x17\x2d\x2e\xba\x2f\xac\x0c\x80\x78\x64\x01\xce\x56\x4b\xe1\x8f\x4a\xdd\x5e\xf9\x0b\x04\x7e\x8a\x2c\x08\x01\x8c\x41\x9b\xe1\xae\x62\x9d\x9e\xd0\x72\x07\x57\x4a\x3d\x3d\x27\x3a\xe1\xbc\xa2\xdb\x56\xd7\x9d\x9f\xb4\x71\x33\x4c\x68\x04\x55\x8d\x01\xe4\x03\x3a\xa5\x39\x47\xf0\xb5\xd8\x81\xea\xf9\x57\xdb\xdd\x64\xf9\x63\x8a\x66\x76\x16\x4d\x1c\xc9\x2e\xb5\x04\xd2\x35\xd5\x6e\x41\x54\x60\xf5\x27\x0a\x75\x38\x9e\x00\x4d\x14\x93\x31\xfa\xd6\x96\x44\xbb\x28\xe6\xad\xbc\x2d\x6b\xc2\x4a\x3c\x41\xf0\xf7\x6a\x41\xc2\x30\xca\x4d\xbc\x4e\x45\xa1\x9d\xc3\xd8\x0e\xd9\x39\xd5\x83\x1c\xa4\x71\xbc\xbe\x96\xa6\xbd\x69\xb5\xdb\xb8\xcc\xae\x71\x17\xb1\x5b\xff\x54\x35\x60\x36\xec\xd8\x35\x0f\xb3\x60\x84\x51\x1e\x5e\x73\x4d\x6b\x17\x02\xf0\x68\xe3\x99\x3d\x1a\x3f\x54\x19\x42\x3f\x4d\x7b\x78\x03\x16\x02\xf2\x95\xa8\xc6\x09\x44\x02\x91\x08\x52\x0a\x1b\x27\x14\xbe\x21\x33\x61\x10\xc7\x4a\xc4\xfa\xaa\x12\xb1\xbe\x5a\x4a\xf9\x31\xfa\xe5\xe1\x94\xd2\x6d\x81\xc9\x3a\x80\x49\x8f\x94\x6b\xde\x39\x35\x08\xe8\x47\x3d\x93\x26\xd3\x35\xcb\x53\x17\xec\x7e\x42\xd5\x98\xed\xa5\x39\x0b\xce\xdb\x35\x0a\xe9\xb0\x18\x4e\x55\x77\x5b\x0d\x5f\xe6\x38\x3a\x01\xa5\xc3\x8e\x8d\xaa\x22\x10\x9f\x5d\x6e\xf2\x88\x50\x76\xc7\x5a\x48\x5d\x29\xf7\x2a\x98\xc9\xb2\x09\x0b\xea\x46\x39\xed\xe1\xbb\xda\xa0\xe3\x14\xb6\xb4\x95\xe5\x5b\x94\x8c\xf3\x61\x4b\xb9\x3f\x0f\x0c\x94\x88\x2a\xb1\x74\x4a\xa9\x9c\x14\xce\xa8\xd6\x64\x2f\x8b\x56\xd9\xa9\x14\xd7\xfb\x54\xa9\x34\xcc\x9b\xec\xb3\x2a\x07\xca\x8c\x79\x0d\x29\x90\xcc\xa2\xe9\xcd\x65\x18\xfd\xbc\x72\x06\x30\x61\xb4\x1c\x55\x77\x77\x7d\x86\x0a\x7a\x6e\xa7\x62\xce\x28\xbd\x55\xb7\x83\x6f\x28\x59\x0d\x2e\xcf\x71\x16\xdd\xf9\x74\x23\xb3\x34\x2f\x22\x98\xa7\xb7\x8e\xd5\x84\x88\x01\x65\x9e\x2c\xb5\x15\x09\xce\x2d\x96\x5e\xe3\x27\x75\x4f\xd4\x51\x8c\x5f\x89\x23\x8a\x81\x36\xfc\x64\xf2\xa4\x9d\xba\x25\x7d\xea\xcb\x59\xd2\x0f\x23\x1e\xf9\x89\xb2\xd5\x09\xd3\x64\x39\xca\x86\xb9\xea\xf8\xe0\xec\xe5\xc7\x6a\xe1\x8e\xb3\xbe\x0c\x95\xb9\xe9\x46\x7f\x28\x0d\x38\x27\xc6\x18\x84\x5f\x1b\x47\x99\xe9\x3d\xe6\xc4\x9f\x7f\x46\x71\x1a\x31\xfb\xfb\xfa\xe7\x3d\xd4\xb5\xc4\xee\x2e\x1d\x06\x40\x66\x61\xbc\x82\x23\x6b\xb3\x54\x4e\x3a\xe7\x4a\xd5\xfd\xd8\x8e\x0e\x8b\xb5\xa9\xb5\xf8\xab\xef\xd2\x2d\x14\xf7\x6b\x05\xb2\x8b\xb2\x5d\x8e\xae\xf5\xfd\x52\x0f\xe4\x5c\x33\x7c\x52\xd7\x4e\xed\x68\x15\x0b\x25\x87\x5d\x2a\x8e\xd9\x0c\xbb\xc4\xd0\x51\xf6\x0f\x7e\xbe\xeb\xb0\x1c\x90\x4e\xcb\x31\xfa\xd0\xb2\x85\xd2\xeb\xa2\xdd\x8b\x58\xf7\xe7\x9f\x2a\x72\xf2\xd5\x00\x8d\x56\x14\x68\x67\xb5\xa6\xf4\x59\x85\xb3\x5f\x1e\x27\xbd\x3d\xd5\x9b\x5b\x2f\xa8\xfd\x12\x06\xef\x95\x6a\x33\x7f\x13\x67\x19\xb2\xef\xed\x13\x17\x88\x77\x60\x9a\x29\x67\x3a\x5d\x5e\xc9\xa7\x94\xf6\xf8\x37\x4b\xe5\x2e\x8e\x5f\xc0\x2f\x69\xe0\xac\x0e\x1c\xf0\xaa\x24\x42\x10\x79\x96\xde\x62\x5d\x6b\x19\xa5\x23\x1e\xb1\xcf\xe8\x22\x95\x08\xb8\xd3\x2e\x4a\x7d\xa0\x04\xcc\x6f\x94\x0a\xfd\x28\x9e\xa5\x42\xe6\x72\xd3\xdf\x51\x9a\xf4\xf2\x29\xd7\x9d\x7c\x13\xe9\x93\xf5\x90\x52\x44\x2d\xb7\x31\xe2\x60\x9c\x84\x03\xd3\xdb\xa1\xe8\x78\xa5\xca\xce\xce\x69\x4c\xbd\xa8\x0d\x59\xd7\x9d\xc5\xd9\x1a\x85\x4f\xca\x60\xd7\x23\x20\xcf\xf2\x88\xa6\xe8\x78\xa9\x5d\x0b\xd5\x47\x48\xfc\x57\xc6\x5b\xd4\xcf\xe1\x69\xb7\x18\x29\x76\x94\xc3\xa2\x22\xb6\xa7\xe3\x8c\x27\x7a\x72\xbe\xd0\xef\xc5\x4e\x04\x21\x0f\x5f\x6e\xba\xab\xe6\xd3\x83\x94\x1a\x16\xd6\x36\x15\xce\xbf\x58\xae\x5c\xf1\xe3\xd2\x36\x99\xc5\x8b\xb3\x2c\x69\x6b\x61\x83\x38\x10\xd8\x77\x8e\x96\xa0\x90\xb7\x1d\x72\xab\x1f\xc5\xc3\x94\x25\x05\xb9\x4d\xe7\xbb\xd9\x79\x3d\xb1\xce\x4d\xef\xf9\x2a\xcd\x45\xbb\x03\xb6\x74\xa2\xb2\xa2\xb5\x6b\x40\x68\xc5\x1e\xde\xdd\x55\x2c\xc2\xce\x84\x22\x08\x2b\x25\x21\x19\xc7\xef\xbc\xed\x3b\xa8\xf6\x5f\xc1\xbc\x13\x87\x00\x9c\x2f\xd0\x61\x80\x62\xb2\x28\x5f\x3b\x9a\xc5\xf5\x52\xcd\xda\x18\x99\x4b\xc1\xf8\x37\x7f\xae\xab\x5c\x55\x01\x0c\x15\xc0\x72\xe7\x2b\x73\x56\xef\x84\xee\x8c\x9c\xbf\x4a\x89\xf4\x3c\x35\x9e\x85\xd0\x58\x53\x79\x72\xc0\xaa\x61\x50\x84\x83\x61\xb0\x22\x3a\x29\xec\x27\x88\x14\x4b\xea\x13\x77\x26\x7e\xac\xf0\x65\x90\x51\xcc\x76\x3b\x64\xed\x95\xb2\xf3\xc2\x0b\x6e\xb0\x6a\x7f\x2e\xfb\xca\xda\xe1\x9b\xe3\xe6\x3e\xf0\xd5\xd0\xf4\x31\xca\x44\xb1\x01\xd0\xa1\xc4\xe5\x9d\xe9\xd2\x98\x52\x86\xb4\x2d\x4b\xc7\x1c\x65\x74\xb4\xd2\xa5\x5f\xb0\x6d\x43\x09\x06\x41\x9e\x47\x79\x61\x1b\x1d\x08\x22\xf0\x7c\xe6\xc7\x6d\xd4\x4c\xd1\xb8\x02\x4e\x13\xdf\xe8\xae\x1a\x83\x5f\x56\x5a\xed\xa7\x5a\x80\x93\x73\x5e\x8f\x30\x21\x35\x26\x9c\xa2\x73\x5e\x51\x3e\x03\xe9\x30\x89\x3a\x0a\xee\x78\xa9\xd6\xa7\x75\x4a\x97\xcb\x41\x68\x76\xd2\x02\xb4\xa6\x6a\x36\x61\xbb\x4e\x7b\x85\xff\x7f\xcd\x79\xcd\x77\xa0\xc1\x2b\xca\xa1\x18\x3c\x72\x91\x67\x92\x8b\x15\x47\xcb\x26\x2f\xd6\x63\x93\x23\x7f\x43\xe6\x74\xbc\xd4\xec\xc9\xb7\x4a\xd5\x53\xbe\xa4\xb9\x01\x0f\xd4\x34\x7a\x94\x45\x43\xb3\xab\xf3\xab\x5f\xb6\xa2\x99\x1d\x2d\xc8\x63\xe5\x72\xde\xa4\x15\xce\x8f\xeb\xc2\x9a\x5b\x99\x9f\xfc\x62\x5f\x33\x3f\x1d\xfc\x6f\x60\xe2\xe8\x28\xdd\x62\x80\x04\x98\x0d\xce\x4f\x5a\x25\xef\x07\x29\x89\x3e\x4e\xb9\xe1\x26\x6e\xb1\x3d\xd6\xf7\x5b\xcd\x41\x95\x4c\x7d\x35\x8d\x12\xd3\xa3\x93\x05\x5b\xe5\x18\xdd\x57\x24\xec\x77\x6b\x2c\x50\x5f\xe5\xbd\xdf\x56\xa5\x51\x95\x3c\x99\xcc\x18\x96\xeb\x44\x9f\xf1\x1a\x0e\x43\x7e\xa2\x35\x92\x62\x16\xf6\xb4\x50\x63\xc5\xe3\xba\x62\xbb\x29\xa3\x8c\x48\xee\x82\xe3\x50\x39\x8f\x74\x04\x1f\xf8\x0e\xb7\xe9\x84\xb4\x82\x24\x49\xc7\x49\x68\x7a\x8f\xd5\xf8\x3f\xca\x49\xe5\xdf\xe2\x47\x21\xda\xdc\x2f\x1d\xfd\xea\xc8\x5f\x46\xb0\x52\x34\x2b\x29\x79\xef\x2b\x60\xfe\xdb\xb4\xdb\x30\xe5\x3a\x87\xc0\x87\x03\x01\xf7\x15\x2b\xe9\x11\xe9\x2c\x8b\xaa\x82\xbb\xaf\x6b\x59\x9a\xf4\x77\x76\xec\x68\x9b\x95\x89\xf0\x6e\xa8\xc6\xa5\x49\xed\x78\xaa\x50\x29\x92\x57\x28\x45\xa6\x13\xf8\x78\xf9\x91\x1a\xfa\x11\xe5\x2b\xb8\x02\x58\x7f\xf0\x5a\xc6\xc0\x95\xbb\x43\x5c\xc0\x50\x78\x67\xbb\x39\xfa\x01\x56\x84\xd4\xf1\xd2\xae\xfa\x8a\x3f\x79\x15\x89\x27\x5e\xc2\xe3\x6b\x1c\x56\xbf\x4d\x57\x86\x5b\xbb\x7e\x6d\xd2\xd6\x86\x72\x5b\x36\x71\x41\x09\xb7\x20\x61\x15\xfd\xf1\x9c\x5d\x08\x3d\xd3\x8b\xc2\xa0\xe0\xb6\x1a\x3a\x01\x1b\xbe\xa2\x80\xb1\xeb\x85\xd0\x38\xb6\xf6\xf0\xf6\xcd\xb1\xfb\x9c\xed\x24\x4a\x0c\xef\x58\x6b\xb3\xa6\x87\x02\xf1\x55\x0a\x70\x0c\x24\xee\x61\x53\xdd\x54\xe8\x81\x9b\x76\x92\x40\x52\x99\x51\x48\xdf\x91\xae\xf8\x2f\x3c\xad\x04\xc3\xee\xeb\xae\x42\x67\xd2\x26\xe2\x8f\x09\x97\x7c\x94\x35\xa3\x57\x03\x12\x8d\x8e\x4c\xb3\x6c\x3c\x2a\xa6\xf5\xdd\xf7\xb5\x1e\xf6\x45\xa0\x62\xd4\xea\x5f\xb0\x67\x45\xd3\xa5\xd7\x1b\x9a\x62\x5a\x87\xec\x52\xf1\x80\xd1\x9d\xc0\x5d\x61\x43\x1d\xc4\xdc\x8e\x52\x6b\x19\x99\x38\xe8\x99\x60\xac\xf4\xf3\xd9\xee\x85\x9f\x28\x20\x8d\x39\x1a\xf1\xd0\xfb\x88\x55\xc0\xda\xf0\x5d\x74\xda\xa8\xad\xe3\x78\xd5\xe0\xd4\xc2\xc5\x3b\xa1\xfc\x8d\xa0\xf4\x88\x72\xff\xb8\x0b\x1c\x71\x50\x2c\xa7\x55\x2d\x47\xbf\x08\x4d\xb1\x0f\x95\x12\xf0\x87\xb5\xf7\x4f\xc7\xc5\x5f\xa6\xf7\xe7\x42\x01\x2b\x5d\xac\xbc\x69\x88\xc2\x3c\x3c\xc0\x71\x79\xe3\xf9\x4e\x73\xe8\x18\x35\x99\x2c\x81\xe1\xf0\x2c\x47\xe9\x4d\xec\x5a\x56\x2c\x42\x5d\x2d\xdb\xb6\xfa\xb5\x78\xdb\xb7\x70\xdf\x36\x37\xca\xce\x17\x7f\x8d\xdb\xbe\xdb\x27\xca\x85\x0c\xca\xe4\x68\xdf\x6e\xfa\x6e\x4d\x9d\xf0\x15\xf1\xe5\x07\x38\x1e\x84\xac\x47\x49\x1e\xf6\xf7\x76\x32\x56\x47\x55\x75\x0b\x5d\x46\xe1\x66\xa0\x50\xb3\x2c\xc3\xea\xce\x8a\x31\x31\xdd\x1a\x74\x02\x77\x4e\x5c\x1d\x7c\xdc\x57\xae\xc1\xef\xa8\x40\xf4\xd0\xb6\xad\xb2\x71\x4f\xec\xed\xb9\x90\xa1\x3b\x26\x45\x4d\x9b\x40\x76\x50\x0c\x0c\x79\xa5\xf0\x2d\x13\xd1\x37\x77\x26\x5d\x54\x29\xdb\x52\x96\x06\xf4\x09\x8b\xb3\xd6\xcd\xd0\x71\xce\xaf\x95\x4a\x66\x7f\xd5\x64\x62\xa6\x23\x5e\x29\x9d\x79\x67\x75\xa8\x90\xc9\x69\x52\x18\x9a\x04\x56\xb7\x95\xf1\xf1\xb4\x24\x05\x2b\x2f\xab\x2b\x34\x59\x11\x2d\x47\xb2\x4f\xb1\x02\xfe\x65\xe9\xe0\x57\xff\xd2\xea\xfc\x07\x59\x7f\x3c\x34\x09\xda\xad\xb8\x67\xe8\xa5\x8b\xf5\x15\x9c\x50\x9b\xde\x08\x5e\x62\xa2\xfe\x60\x29\xcd\x06\x69\xda\xe3\x99\x37\x36\xef\x03\x45\x94\xbe\x58\x3a\xc0\x41\x53\x78\x7c\xe1\xe5\x83\x5e\x38\xa8\xf2\xc4\x38\x4e\xd9\x99\xc1\xf2\xd7\xe7\x9d\x67\xbe\x3b\x97\x93\x71\x96\x23\xa9\x14\x9b\xa0\x8e\x55\x08\xbc\xa1\xd5\xab\x82\xa4\x0f\xd5\x13\xab\xdd\x5f\x2d\x56\x0b\x08\x56\x8e\x96\x7e\x8d\xff\x54\x2d\x63\x09\x48\xd2\xfa\xc9\x0b\xb3\x16\x64\xbd\x7c\x10\x8d\xf0\x1d\x2d\xd1\xcf\x91\xfe\x94\xbf\x45\x92\x66\xc3\x20\x8e\xd7\x77\x38\x7c\x68\x47\x35\x42\xef\x96\xca\xd5\x96\x1b\xf4\x96\xda\x52\x7d\x49\x46\x46\xf9\x0e\xc6\x76\x46\x73\x93\xe3\xfc\xb1\x6a\xb3\xd4\x4c\x35\xd9\xfa\xaa\xee\x28\xe3\xcc\xe2\x58\xf9\x03\xc7\xc1\x2f\x72\xed\x8d\x8f\xd9\xde\x75\xcb\x12\xa9\x01\x81\x03\xfe\xea\x2f\x4e\x28\xaa\x88\x6e\x1c\x5d\x4a\xdc\x8e\xbf\x82\x3e\x16\x2a\xba\xa7\x26\xcf\xd7\x1c\xfe\xd2\xa4\x88\x92\xb1\x2c\x3c\xae\x00\x4b\xc7\xaf\xfa\x48\x91\x32\x46\x69\x94\x8b\x9e\xa2\xd5\xa2\x76\xf2\xec\xa5\x82\xc6\xde\x53\xf0\xb4\x95\xa0\x6f\xd6\x83\x61\x30\xe3\x98\x21\x30\xdc\xc1\xd7\xfb\x03\x0a\x5b\x7c\x41\x7d\x77\x0b\xde\xc7\xc5\x91\x2b\xdd\x06\x5a\x1d\x65\xe9\x32\x97\x37\x12\xf6\xaa\xcf\x90\x3b\xf5\xb4\xf2\x71\xa7\x89\xfc\x74\xb5\x0f\x51\x37\x77\xba\x6e\xd6\x0a\xc1\x0e\x8c\x95\x4e\x61\x75\xf1\x13\x0b\x50\x0e\x07\x81\xd3\x85\x12\x41\x26\x47\x57\xfa\xc8\xdf\x1d\x79\xa3\xcc\x2c\xff\x2d\xef\x85\x67\x71\xb7\x70\x51\x4e\x94\x6a\x48\x7d\x13\xc7\x27\x0d\xc6\x9f\xfd\x1c\xe0\xf4\xd8\xde\x17\xd1\x82\xb3\x77\xf5\x85\x17\x70\x3c\xff\x17\x7b\xbb\x74\x57\x91\x55\xee\xe8\x3a\x9a\xd6\xff\xf2\x2c\x34\x1e\x78\xe0\x4f\x65\x2f\x86\x4e\x8f\x77\xdd\x9c\x07\xd5\x0f\x9a\x88\x4f\x4e\x3a\xf3\xf3\x0f\xff\xee\x67\x48\x2c\x15\x09\xcf\x03\xdf\x49\x3d\xbd\xe9\x3b\xc4\xc3\x36\x9c\x14\x28\xdb\x9f\x9a\x38\x09\xf4\xc7\x29\xec\x23\x7a\xee\xed\xba\x42\x26\x09\xa2\x55\xc0\x38\xd9\x1a\x54\x89\x1b\x1d\x6f\x81\x89\x1f\xf4\x8a\x2c\x1a\x31\xf6\x43\x84\x46\xe9\x33\x91\xd9\x9d\x57\x2a\xde\xa7\x14\x39\x42\xec\xaf\x76\xd0\xb1\x27\x6a\xa8\x74\x82\x5a\xd4\x61\x75\x21\x11\x8b\xdf\xc4\xa9\xcb\x9a\xd1\x74\x29\x44\x3f\x5a\xf9\x0b\xbe\xd9\x36\xf6\x4f\xd2\x61\x94\xb0\x52\x2b\xb2\x17\x18\x19\x41\x1f\xe3\xae\xe2\x89\x7f\x58\x3e\xe6\xfa\xbd\x9f\xeb\x38\xda\x0c\x86\x41\xfc\xd8\x1e\x64\x61\x90\x17\x31\x3b\x24\x31\x56\xa8\x86\x1b\x92\x22\x73\x98\x26\x14\xe6\xd9\x33\x4b\xf4\x0b\x5c\xe9\x76\x4b\x8d\xd2\x86\xc6\x14\xa0\x8b\x8a\x3e\x71\xf5\xd1\xf6\x70\xfa\xe2\xaf\x69\xd5\xb8\x57\x18\x28\x7f\xac\x54\x47\x40\xb3\xdd\x5e\x85\x7a\xf3\xb5\x31\x68\x2c\xd8\x63\xd8\x14\xf0\xe8\xe4\xc7\xca\xfe\x32\x8c\xa3\x21\x3b\x84\x2c\x88\x67\x1f\x7d\x5f\xf1\xef\x73\x82\xd7\xc4\x7e\xee\x38\x9e\xf6\x77\x95\x90\xe5\x77\xad\x1a\x4f\x7f\x6c\x72\x1c\x73\x08\xaa\x0f\x95\xf8\xc3\x4d\xc0\x05\x05\xbe\xe4\xea\xff\x15\x63\x46\x4f\xb9\xa0\xa4\x11\xe6\xec\x2a\x29\xde\x68\x8a\x38\xfb\xcf\x4a\xa5\xc4\x72\xa5\xac\xf6\x92\x15\x51\x3c\x3c\x6b\xf5\x56\x68\x69\xf1\xcb\x71\x0c\xd8\xae\xe9\xdc\x21\xde\x71\x27\x7d\xd7\x49\xbb\xa4\xe0\x11\xdf\xa9\xa9\x99\x6f\x68\x7e\xe8\xa3\x52\xc9\x4c\x37\xad\x3f\x0f\xcf\xce\x79\x59\xd4\x1f\x14\x84\x04\x43\xfb\xfe\xbf\x29\x5d\xfb\xfe\x9d\xd2\x91\x3a\x1f\xf9\x4a\x62\xed\xae\x02\x7b\xf7\x4c\x6c\xfa\x90\x5b\x74\x9a\x05\x5c\xfd\xcb\xbc\x52\x08\x08\xc3\x20\x2b\x30\x41\x43\x65\x76\x42\x35\x16\x1e\xd0\xca\x12\xd3\x55\x75\xae\xec\xee\xd6\xd2\x6b\xd3\x9f\x56\x94\xf8\x37\x4b\x05\x09\xe3\x12\x4e\x0e\x4a\xd7\x20\x7e\xb3\x51\x43\xbc\xe8\x0d\xd3\xbc\x98\xa6\x5b\xcd\xa6\x4a\x5d\xda\xf9\xc2\x51\x74\x65\x5e\x6d\x4a\x77\xa9\x14\xa0\x59\x4e\xe0\xdf\x95\x74\x35\x0a\x07\x1d\x5d\xd8\xd7\x72\x88\xad\x65\xe4\xfe\x79\x4f\x29\x7f\xe1\x93\xef\xe2\xd2\x5a\xaa\xea\x3e\x29\x14\x3f\x51\x0e\x12\xcb\x26\x4b\x82\xa4\x97\xd2\x47\x09\xc9\x4a\xc3\x42\x9c\x29\xd7\x28\xc8\x3a\x8e\xfb\x08\x7f\x51\x7e\xdc\x4a\xfa\x21\xb4\xcb\x94\xd2\xa0\x7c\xa7\x64\x4f\x2f\x2c\x2c\x19\xc6\x3c\xa3\x2d\xc5\x4c\x3f\xcd\x40\x0b\x6d\xb3\x54\x7f\xdc\x4e\xb4\x86\x92\xcc\x71\xd7\xb6\x74\x2d\xc6\xdb\xb6\x04\x0a\xa3\x7e\x90\x99\xa2\x30\xd3\x6e\x4f\x02\xa2\xa0\x54\x24\x04\x54\x70\x4c\xa7\x6c\x4d\x10\x3d\x09\xbb\x2d\xb3\xab\xb7\xc3\xf1\x9f\x55\xb8\x99\xb3\x2d\x94\xa4\x79\x2f\x33\x81\x93\xd5\xc7\x3a\x84\xef\x05\x3f\xee\xba\xa6\xc8\x72\x9c\xae\x81\x52\xc4\x2a\x42\xbe\x9b\xed\x9d\x53\x8d\xde\xbc\x88\x86\xe3\x98\x37\x87\x55\xac\xc5\xc0\x4a\x4c\xa7\xb7\x62\x89\x16\x67\xbd\x71\x62\x8e\x8e\x4c\x58\x98\x1e\x4f\xef\xb9\x7e\xa1\x9f\x20\xb5\xcc\xf3\x75\x9c\xf8\xe1\x59\x52\xea\x98\x56\xea\xab\xbe\x1e\x5c\xd1\x6b\x6b\xd6\x59\x32\xd1\x6a\x91\xca\xcf\x07\x51\xc6\x9e\x65\xda\xcb\x4d\xdc\xf9\xdc\x78\xa3\x48\x29\x1b\xee\x38\xca\x01\x0b\xf7\x8b\x06\x5d\xcb\xcc\x37\x2f\x4c\xd0\x5b\xc7\x06\xb0\x0d\x49\x2b\xe3\x0f\x24\xa9\x74\x3c\x5a\xa8\xff\x3d\xb3\x4a\x22\x60\x87\x67\xad\xf2\xa6\x9b\x0b\x9e\x57\xf9\xe5\xef\x37\xc0\xf7\xd5\xab\x23\x19\x67\x69\xd3\xcf\x1a\xb3\x0f\x55\x02\xe9\x3f\x59\x6e\x67\x36\x32\x05\x24\x16\x11\xd6\x07\xbc\x35\xf8\x99\x63\x9b\x0d\x97\x82\x3c\x5f\x9f\x51\x39\x32\x62\x1c\xb0\x3d\x9b\x38\x27\x04\x19\xed\xb8\x3f\xa7\xb5\x5a\xcf\x7b\xbe\x25\x6c\x05\xf9\x0a\xdd\x51\x2c\x2d\x26\x88\x0a\x7b\xcb\x25\x42\x4f\x74\x5d\x3b\xfc\x52\x8d\xeb\x90\x25\x8f\xd1\xd9\xc2\x74\xc5\x52\x89\xa3\x00\x07\x68\x79\x8c\x87\x67\x6b\xa3\x07\xf4\xf1\xb7\x4d\x28\x28\xda\xb1\x69\x15\x2e\xc5\x52\x58\x69\xe9\xc3\x59\xc5\xb9\xa1\x59\x57\x09\x2d\xae\xe6\xef\xe1\xdb\xe1\xbd\xf0\xc2\xf3\xf4\xa5\xac\x2c\xd6\x57\xe6\x2c\x59\x10\xd7\x15\xff\x72\x81\x62\xa1\x08\x30\x3a\x3c\xcf\xc7\x38\xe3\x10\xf9\x36\x7c\x25\x61\xc5\xea\x2f\x76\x22\x51\x9d\x7e\x62\x0c\xec\x20\x1e\xef\xd2\xaf\x65\x78\xa9\xef\xb6\xf1\x47\xd4\xdb\xc6\x9a\xbc\x06\x0f\x04\xab\x68\x60\x0b\x89\xff\x19\x2d\x05\x01\xd3\x75\x2c\x4f\x80\xc9\xea\x4a\xbe\xfa\x25\xce\xbd\xfe\x4f\xbf\xf3\xa5\x23\x16\x11\xab\x8c\x2d\x2e\x2a\x87\xe0\x70\x9c\x17\xe9\xd0\x64\xf9\xd3\xd5\xf5\x63\x53\x06\x05\x08\xbd\xa5\x63\xe0\x77\x4b\xa5\x9c\xf5\x00\x77\x15\xb5\xc9\x0d\xc5\x82\xdc\xdd\xa5\xcb\x2c\x4a\x75\xd5\x6f\x10\x99\x4c\xfa\x76\xa8\x1b\x11\xed\xb9\x71\x00\x1f\x47\xa7\x76\x75\x58\xf2\xf3\xbb\x18\x66\x21\x80\xde\x21\x67\x24\xcb\x9e\xae\xae\xb2\x53\xcc\x76\x8e\x12\x2e\x83\x8b\x4d\xd2\x13\x1a\x11\x76\xaa\x1e\xb0\xde\xa6\x9d\x60\xab\x58\x27\xc2\x76\xb3\x0d\x73\x58\x0c\xb2\x74\x8d\xc2\x29\x12\xcc\xf7\x94\xe0\xe2\x7b\x8d\x3d\xff\x79\x2f\x31\xab\x26\x03\x3b\x4b\x9a\x0f\xd5\x97\xc4\x71\x8b\x91\x97\xc8\xd0\x2a\xf3\xb8\xd7\xb7\x0a\x16\x1e\x38\xe0\xed\xdb\xf7\xbc\x42\x76\x9e\xd0\xee\xd2\x17\x7d\x87\xa4\xb9\x59\x2a\x45\x80\x1b\x34\xe8\x61\x67\x54\x2c\x1d\x51\x50\xae\x16\x85\x10\xc9\xe9\x46\x59\x69\xa5\x23\x8e\x8a\x86\x8e\x1e\x47\x37\xec\x39\x9c\x1c\x27\xe8\xc0\x15\x45\x18\x87\xeb\x3a\xae\xfc\x97\xa7\xbb\xaa\x39\x7b\x42\xa9\x99\x1f\xa7\x75\x8b\x6f\x05\x0f\x75\x80\x66\xde\xaf\xe5\x92\xdb\xa1\x7a\x88\x0d\x7f\xad\x54\x18\xef\xce\xe4\xaf\x36\x71\xfa\x9f\xf3\x4c\x52\x64\x66\x94\x99\xc4\x8c\xb3\x88\xeb\x0b\x5e\x7d\xbe\xed\x27\x9c\xb8\xa4\xca\xe7\x74\x5c\xe4\x51\xcf\xec\xae\x59\xf0\x39\x52\xf0\x77\xfc\xce\xe2\xc2\x26\xaa\x68\x64\xc1\xd7\xea\xae\xa2\x56\xe1\xf5\x69\xb2\x30\xc3\x92\xfc\xd8\xaf\x99\xf8\xd5\x6c\xf5\x9a\x27\xff\x82\xb7\x64\xe2\xc8\xac\x72\x7d\x61\x8d\x6f\x17\x94\x41\x98\xeb\xb9\x1c\x2d\xd6\xa7\x3a\x73\x87\x36\x37\x28\x36\x09\x30\x87\x3e\x42\x8c\x37\x9b\x32\x30\x0b\xde\x38\x17\xac\x90\xf8\xc8\x38\xcd\x20\xa7\xf8\x39\x8a\x83\xbc\x88\x42\xb8\x4d\x5b\x15\x5b\xdb\x55\xfc\x85\xae\x45\x9f\x9c\xff\x79\xeb\x66\x17\x47\xc4\x75\x50\x5f\xfe\x5f\x29\xb5\x9e\xd3\xaa\x91\x7c\x52\x17\x76\x2f\x2c\xa5\x6b\x35\x3e\x56\x3d\x71\xdd\x5a\xb9\x1e\x7a\xd9\xcb\xc7\xd9\x72\x10\xc2\xe3\x90\x05\x7f\xd5\xc0\xf8\xb7\xb4\x07\x48\x51\x04\x9c\x15\xdb\x61\x9e\x1b\xec\x29\xf7\xc0\xd8\x04\xbd\xc7\xdc\x0c\xe7\xac\x96\xdf\x60\xf1\x77\xdc\xb8\xdb\xa5\xce\x91\x7d\xc7\x74\xb9\xae\x88\xf3\x30\x72\xe3\x17\xe0\x24\x40\x53\xe8\x22\xb6\x94\x3d\xb9\xaa\x5f\x8d\xe2\x62\xc3\x77\x9c\x0b\xe7\x78\xba\x16\x15\x83\x41\x1a\x43\xcb\x1e\x95\xa0\xee\x2e\x02\x7b\x82\x41\x41\x53\x59\x98\x58\x43\x59\x96\xae\x09\x5f\x1f\x75\xe5\x71\x25\x9b\x71\xbc\x06\x0a\x24\xb3\x9e\xaf\x88\xd6\xc5\x59\x5f\x6b\x55\x9e\xf2\x95\x0c\xc6\x59\xd5\xb6\x65\xf3\x05\x54\xec\x9f\x68\x6d\x31\xd6\xaa\xc3\x51\x79\xa5\x01\xae\x25\x7e\x2c\x72\xd2\x7c\x10\x8d\x80\x93\x15\xe4\x04\xbd\x0d\x3f\x69\x93\x44\x23\xdc\x36\x25\xe9\x38\x49\xa7\xa8\x99\x69\x95\xa4\xec\xbc\x8b\xbd\xa5\x24\x47\x6f\xee\x08\x2f\x5f\x33\xa3\x62\xda\x35\x16\x1e\xea\x2a\xeb\x7b\xa5\x93\x5c\x7c\xbd\x54\x33\xfc\x4e\xc3\x09\xea\xf0\xac\xb7\x9a\x46\x8c\x2e\x60\xe9\x4a\xed\x67\x72\xb9\xad\xe4\x39\xe8\x0d\xd2\x91\x99\x72\x79\x0e\x0f\x7f\x2d\xe9\xdf\x2d\x9d\xd7\x15\x40\x2e\xcc\xa2\x22\x0a\x83\x18\x4e\x19\x82\x51\xc5\xed\x52\xb8\x54\x01\x86\xa0\xd6\xc1\x72\x04\x38\x0f\x5f\xe9\x56\x4d\x2d\xd1\x7f\x46\x91\xbf\x56\xa2\xa4\x17\xa3\xdd\x85\x7e\x10\xcf\x18\xf9\x49\x23\x9d\x5e\x5c\xf0\x7a\x69\xaf\xcf\x84\x70\x61\x62\x2b\xcc\xe0\x47\x8d\x8d\xbc\x38\xeb\x05\xbd\x60\x64\x27\x77\x48\x40\x7f\xa6\x88\xe8\x3f\xab\x6b\x86\x17\xaf\x75\x34\xc7\xc3\xd7\x34\x85\xd3\x0d\x3e\xcc\xfe\x79\xcf\x24\xfd\x28\x31\x26\xe3\x29\x3d\xd6\xeb\x7f\x4d\xf1\x52\xb6\xb9\xab\x17\x78\x74\x87\x71\xcd\xfd\x4f\x85\x82\x13\x20\x24\xc8\xa0\x84\x85\x23\x17\x2d\x2b\x7e\xdc\x56\xc5\xfc\x7b\x7f\xe7\x8b\x5f\x58\x9c\xaa\x3e\x16\xd5\xef\x0d\x15\x0a\x99\xb7\x82\x88\xf0\xbe\x25\x1b\x2f\x65\x26\x28\x06\x4a\xfa\x84\x83\x85\x33\x4f\xd4\xd8\xa6\x78\xc6\x5d\xf5\x5d\xca\xd1\x8e\xc1\x91\x2c\x85\xaa\xa6\xef\xd4\xef\x5f\xd8\xdc\x28\x9d\x41\x78\x9f\x04\x66\xa6\x9c\x02\x20\xfb\x0c\x0b\xd0\xa8\x63\x05\xbd\x4f\x29\x61\xe8\xc4\x69\xc7\x30\x8a\xb1\xeb\x40\x4f\x0c\xdc\x06\xbe\xe7\x81\x6a\x97\x0f\x4d\x90\x14\x11\x94\x5a\x5e\xaa\x29\x9a\x8a\x29\xcf\x33\x5a\xab\x9e\xda\xf7\x4f\xd6\x94\xbb\x15\xfc\xf1\x87\xb8\x71\x38\x7d\x7f\x58\x23\xb5\x51\x99\x20\xc9\x8c\x9b\x93\x5e\xc3\xe6\xb0\x5f\xb2\xfa\x99\x22\x20\xa9\xeb\x07\xa5\xb8\xcf\x87\x37\x0a\x96\x9b\xca\xec\x8f\xb5\x07\x70\x2e\x5e\xa3\x6c\x46\x48\x4c\x8e\x70\xb8\x1c\x84\x51\x0c\xb0\x5e\x15\xff\x37\xc9\x1b\x69\xf3\xa2\x9a\x4b\xe7\xa3\x20\x5b\x61\x26\xa3\x9c\xf5\x14\xb3\x11\x03\x81\x6f\x10\xfd\xb4\x16\x16\x25\x77\x25\x9d\x90\x3f\x7d\x5d\x01\x8f\xef\x55\x9a\xb3\xab\x50\x9c\x25\xa1\x48\xab\xb0\xeb\x20\xb0\x10\x89\xb1\xfa\xfd\xb6\xda\x78\x44\x32\x85\xb8\x64\x6f\x94\x8a\x79\x7f\xc9\xae\xd9\x41\x1a\xc7\x55\x82\xeb\x60\x6b\x38\x6d\x2d\x0f\xdc\x99\x69\x43\x13\x0b\xff\x30\xd5\xfd\x4c\xcd\x98\x00\x4a\xa2\xd4\xa9\x58\x94\xd4\xfa\xbb\x0a\xa7\xf5\x5d\x3b\x52\x1c\x04\xa3\x91\x49\x08\xbc\x66\x4b\xb2\x99\xc9\x96\x6e\xcd\x4b\xbc\xb7\x1e\xef\xba\xab\x1d\x47\x49\x98\xc6\x89\x7a\xd9\x15\x8d\xd7\x2d\x4b\x07\xd0\xba\xda\x46\xc6\x2d\xa2\xde\x12\x0f\x65\xec\x8c\xae\x86\xa8\xb1\x13\xfb\x20\x1b\x06\xd9\x8a\xf2\x1b\x07\x29\x91\x1f\x6f\x4d\xed\xbf\x74\xc4\xfb\xd2\x91\x69\x85\xa4\x7a\xcb\x57\x4a\x4c\x6f\x29\x5e\xed\xef\xf8\x6e\x97\xff\x4e\xe9\x32\xb0\xbc\x30\xcc\x9d\xb0\x49\x67\xb5\x39\xd0\x30\x81\xe4\x37\xc2\xc4\xdb\x9a\xc1\xbe\x63\xb2\xd7\xce\x7e\x47\xeb\xd4\x89\x95\xa8\x8c\x3d\xb6\xa9\xd4\x3a\x36\x9d\xaa\x75\xb0\x62\x48\x40\x47\x09\x44\x72\xf1\x29\xa4\xf3\x16\xeb\x4f\x18\xbd\xe4\xca\x41\x8f\xc1\x38\x58\x5c\x57\xf1\x06\x18\xfe\x6b\xa4\xb9\x39\x4a\xae\x03\x31\x19\x87\x33\xf5\x09\xcb\x9c\x7f\x04\xcf\x10\x91\xdc\x6d\x83\x86\x34\x4a\x91\x87\x74\xe5\x30\xcc\xd8\xf0\x1d\x52\xfd\xa1\x8d\x7f\xd5\xcf\x88\xd3\xa0\xa7\x92\x90\x0b\xbe\xc2\x72\x5e\x50\x19\x6b\x9a\xf5\x4c\xb6\x47\x77\xcd\x1d\x87\x89\xd1\x00\x76\xba\x6d\x63\x0e\xeb\x95\x6b\x23\x47\xc4\x8c\x1a\x6e\x02\x5f\x8e\x5f\xd1\x55\xd0\xab\xff\x41\x23\xc5\x6f\x2b\x72\xed\x78\xb4\x56\x9d\x46\xf4\xa7\xd6\xa0\x5f\x99\xef\x37\x5b\xed\x0b\xc0\x45\x53\xa4\x57\x22\xfa\x92\xd3\xfe\xae\xaf\xd4\x4d\x2f\xaa\xe6\x93\x39\x1a\x9a\x51\xb1\x63\xab\xc0\x90\xc5\xe7\x5b\xbb\xd2\x63\x88\x5c\xda\x81\x47\x04\xa4\xab\xeb\x81\x02\xef\x9a\xe2\xca\x24\xe9\x52\xda\x5b\xa7\x9a\xdc\x9a\x1c\x5b\x99\xbf\xeb\xbe\x8e\x89\x4e\xf2\xef\xba\x22\x81\x0f\xd3\x14\x07\x32\x4a\x0d\x68\x64\xf0\xe3\x89\x4b\xf2\x8b\x34\xee\xed\x51\x84\x07\x64\xc2\x98\xc9\x4c\x77\x15\x84\xfc\x3c\x8a\x2e\x9c\x95\xa8\x69\x11\x4a\x67\x26\xaa\xf1\x75\xca\x77\x1a\x0c\x90\x3a\xe3\x17\xe0\xe0\x14\xf4\x6b\xf5\x95\xe5\x10\xdd\x7a\x37\x5e\x7d\xd5\xcb\xd3\x78\x55\x36\x9b\x74\xde\x95\x06\xf5\x95\x46\xfc\x79\xd1\x1b\x04\xe3\xd8\x36\x88\x91\xc8\xff\x73\xdf\x25\xf5\xff\xbc\x31\xed\x3b\xf4\xb2\xb7\x66\xf2\x6a\xfb\x74\x1c\x98\xed\xbc\xaf\x3a\xed\xe7\x15\x4e\x24\x37\x45\xc1\xd2\x20\xaf\x68\xcd\x9c\x39\x8b\xf9\x72\x55\x68\x18\x24\xbb\xb1\xed\xb0\xb2\x1f\xba\x71\xfd\x89\x27\xb0\xe4\x6d\xe7\xca\x5a\x0f\x40\x14\xc3\x72\x23\xa4\x07\xfd\xf7\xff\x7a\x57\x8b\xd2\x54\x57\x7a\x93\xd5\x53\x64\x32\xb3\xd7\xa6\x2b\x69\xd6\x0f\x92\xe8\xb5\xea\xc8\x54\xc6\xc0\x6a\xc2\x7f\x5d\x29\x57\xbf\xde\x26\x26\xed\xc1\xca\x14\xf0\x2d\xcb\xff\xb0\xb2\x91\x18\xc5\x61\x75\xbf\x83\x6f\x21\x6d\x7f\x65\x73\x1e\x24\x41\x2f\x78\xac\xa3\x98\xbc\xd5\x6a\x95\x21\x87\xa3\x7d\x30\x57\x09\xe9\xdb\xf6\x49\x75\x2d\x34\x05\x0d\xf7\xfa\x51\x0d\x78\x81\x55\x24\x90\xa5\xea\xca\x60\x7b\xed\xe9\x2a\xb5\xac\x53\xbe\x96\x3f\x9f\xee\x6e\x1d\x71\x56\xbf\x93\xe8\xf1\x41\xdf\x24\x05\x52\x04\xb9\xe3\x1d\x27\x24\xa3\x9d\xdb\xd1\x63\xee\xbc\xf0\x82\x83\x95\x2f\xbc\x7c\xd0\xf2\xbd\xdc\x5f\xc6\x26\x4d\x4c\xbc\x45\x6d\xcf\xf5\x1f\x2e\x37\x82\xff\xfc\xbc\x97\x05\xbd\xaa\x70\xa1\x65\x88\xd5\xf4\xae\xea\xb3\xbf\xab\xfa\x1b\xfb\xbe\xb4\xaf\x53\x0b\x51\xd5\x3b\x8b\xb0\x46\x43\xb2\x7b\xce\x5b\x32\x41\x01\xff\x4d\x29\xf6\xf4\x74\x46\xc5\xb1\x62\x9c\x24\x26\x9e\x52\x81\xbe\x54\x1a\x8c\xf7\x95\xfa\xdb\x85\x46\x32\xbf\x6f\x9f\xb7\xec\xf4\x2a\x51\xf3\x9e\x2f\x95\xbf\xee\x79\xdf\x59\xc0\xe5\x26\xc9\xa3\x22\x5a\x45\xe2\x57\xad\x0b\x81\xe6\xd3\x25\xe3\x27\x8d\xfd\x7d\xe8\x65\x8f\x6e\x16\xa4\x58\x71\x63\x2f\xe9\x43\xf1\x92\xef\xc6\xf1\xe3\xfc\x71\xda\x64\x48\x78\x18\x37\x84\x12\xf0\x0e\xed\x38\xec\x8c\x6d\x04\x98\xc0\xb5\xf8\x40\x0b\x9b\x02\xdd\x62\x07\x95\x56\x27\x12\xa8\x6b\x64\x4e\x18\x3e\x61\x87\x70\x75\x0c\x8c\xc1\x14\xf9\x8f\xd4\x12\x0d\x9c\x69\xcd\x2a\x68\xff\xbc\x37\xca\xd2\xa3\xa0\x94\x69\x7b\x53\x7e\x5c\x2b\x68\x4c\x2f\xe8\x38\x1a\xc6\x16\x5d\x31\xb7\x42\x06\xc5\x60\xda\x01\xd9\x41\x29\xc5\x41\xf3\x88\xa2\xb1\xf4\x9a\x94\x5c\xf6\x27\x2d\xae\xbe\xf3\x5e\x51\xa5\xc4\xc3\x34\x59\xef\x28\x1d\x46\xc4\x02\x31\x46\x76\xb9\xe3\x20\xca\x8b\x34\x5b\xdf\x55\x7d\x02\xce\x7f\xe6\x93\xb1\xba\x3a\xad\x1f\x54\x13\x53\x14\xcf\x2c\xfc\x72\xee\x90\x3c\x56\x00\xcf\x9f\x7f\x8e\xe9\xf6\xe8\x57\xec\xe9\xba\x08\x74\xa1\x11\xb5\x3e\xef\x85\x55\x8e\x1d\x8a\x18\x91\xf5\x20\xac\x7e\xa1\x28\xd5\x29\xff\xe8\x6c\x9c\x0f\x94\x7f\xf4\x9b\xca\x4b\xeb\x4d\x65\x5d\x3b\x1e\xe5\x06\x78\x62\x2b\xf3\xb5\x7f\xde\xca\x7c\x49\xb1\x17\x8c\x46\x71\x64\x7a\x3b\xe9\x1a\xe1\x4d\xa6\x95\xa0\xfb\x1b\x14\xed\x6a\x2c\x0f\xab\xf4\x6e\xfb\x74\x40\x6d\x60\xc5\xfc\x44\x2b\xf7\xdf\x6e\x11\xa2\xf5\x46\x26\x1b\x06\x89\x18\x7a\x5b\xfc\xa8\x6d\xe0\x9d\xb0\x89\x2f\x6c\xd6\x3b\x8e\xfd\xf3\x9e\xaf\xac\xc2\xde\x6b\x5c\xc8\xc5\x59\xaf\x18\x98\xa0\x30\x19\x65\x1d\xd2\x9c\x73\x28\x95\x8e\xfa\x65\x20\xb3\x08\x0e\x63\xeb\x76\x5d\x78\xf9\x20\x51\x01\xf0\x25\xb1\x0f\x01\x0a\xe1\xc7\x6d\x92\x52\x9f\xf3\x7a\x19\x89\x41\x5a\xd8\xfb\x4f\x7d\xd7\x39\xff\xa9\x1d\x5b\x07\x71\x9a\xf4\x1f\x53\xca\x4d\x57\xdc\xf0\xe4\x3f\xfb\x1c\x54\x94\x70\x35\x1f\xe0\x6a\x62\x02\x74\x17\x00\x5a\x9b\x91\x3b\x2e\xf5\xfd\xd2\xb1\x29\x1e\xe0\x1a\x89\x31\x49\x15\x21\x70\x26\x3f\xde\xb5\x63\x90\x7f\xba\x77\xe2\x3a\xab\x3b\x26\x2d\x30\xa2\x61\x30\x1a\x09\xad\x53\x1a\x76\x6a\x72\x7d\xbb\x51\xad\x7e\xde\x8b\xcd\x32\x2b\x19\x81\x9c\xc0\x1e\x0e\xfc\xc4\x0e\xe3\xc7\x49\xcf\x64\xfd\x34\x31\x1d\x45\x28\x3c\x49\x5b\x9b\x1f\xb7\x8d\x65\xfb\x41\xd6\x33\x09\x55\x17\x22\xc1\xe9\x7a\x1a\xaf\xfb\x6e\xae\xff\xae\xa2\x92\xb1\xd4\xc6\x94\xb2\x41\xba\xa8\x04\x7d\x31\x23\xc2\xcd\xf9\x1d\x95\x7c\x67\x26\x49\x22\xc3\x04\x3c\xcb\x95\xab\x2e\xaa\x24\xbf\x32\x40\x4d\x7b\x3d\x78\xf6\x72\xc9\x80\xa0\x84\x52\xec\xf9\xae\x42\x99\xdf\xe1\xc1\x23\x5a\x2d\x84\x3d\xd8\xdc\x54\x4d\xeb\x99\xc9\xd6\x36\xef\xc2\xe2\x82\xd7\xcf\xa2\x5e\x4f\xf4\xae\xac\x33\x9a\xc5\x30\x1d\x6f\x93\x5d\x0b\x96\xf2\x34\x1e\x17\x68\xf2\x31\x20\x5b\x29\x20\x36\xfb\xc9\x8b\xb3\x8b\x9e\x49\xfa\x41\x5f\xce\x3f\x96\x61\x46\xc1\x20\x9a\xcc\x4f\xaa\xa1\x6f\x1a\xb3\x1f\x88\xc6\x72\x4a\x8a\xdf\xd2\x8b\x25\x61\x55\x25\x2a\x0e\x1a\x0e\x9b\xc3\x95\x35\x59\xb5\xe7\x5a\x50\x07\x07\x1f\x57\xf4\x5f\xc0\x78\x70\x85\x21\xe3\x63\x31\x61\xd5\xfb\xb0\xdb\x54\xe9\xd8\x29\xf7\x15\xad\xe1\x04\x5a\xfe\x48\xfa\x6b\xb2\x2d\x4c\x6e\x61\xab\x4e\x0a\xea\x32\x5e\xa7\x5b\x6a\x9d\xf4\x17\xa5\x2e\xfd\xdf\x1b\x87\xe1\xe2\xac\x97\x04\x43\xe6\x65\x58\x8a\x9e\x63\xc0\x4e\x61\x5a\x86\xa5\x72\xb5\x71\x64\x1d\x38\x40\x66\xb1\x70\x2b\xa0\xf7\xb0\x73\xdf\x6a\xdf\xe1\x97\x9d\x54\xad\x97\xdb\x0d\x31\xab\xf9\x79\x2f\x1a\x56\x59\x21\x3c\xfc\x6c\x15\x74\x8b\x8e\x7d\xdb\xbc\xb1\x3a\xdc\x1f\x28\x2c\xc9\x28\x4b\xf3\x11\xc8\xfd\xa8\x40\xb0\x30\x2f\xa8\xc0\x7c\xa1\x74\x2d\x9d\xc2\xc4\x66\x35\x48\xfa\x26\x8e\xf2\x61\x47\x69\xe6\xe0\x05\x72\xd4\x3d\xab\x18\x11\x41\x68\x96\xc7\x71\x0c\xba\xb2\xe5\xc2\x59\x98\xe2\x25\x45\x6b\x0d\x07\x24\x1c\xa3\xd9\xef\x9c\xf8\xc9\x8c\x67\x0b\x3c\xa5\xda\x2d\x47\xe6\x0e\xed\xd4\xe6\xc0\xd5\xbd\xd2\xfa\xfc\xca\x9a\x79\x8e\xff\xe8\x5d\x64\xe3\x4c\x76\x53\x33\xd6\x2b\x18\xa5\x22\xb5\x3a\xa1\xb2\x93\xd5\x40\x04\x4f\x11\x54\x01\xbf\x68\xb3\xac\xa7\xdd\xcf\x7f\xa4\xcd\xbe\x46\x24\xe0\xef\x6e\xe3\x71\xc5\xab\x3f\x5e\x5a\x10\xc3\xaf\x1c\xc4\x6e\x44\x01\xc2\x93\x2b\x7e\xe2\x0e\xef\x38\x36\x7d\xd3\x9b\x51\x70\x2c\xfc\x21\x9f\xd1\x58\xd5\x98\x97\x6f\x2a\xef\x89\x73\x54\x78\x00\x89\xe2\x8e\xdb\x5e\x3a\x0c\x22\xc8\x13\x73\x75\xe7\x77\x94\xeb\xc2\xd6\xc0\x71\xe0\x80\xf5\xba\x52\x1d\x6d\xd6\x97\xe1\x27\x0d\x1c\xbe\x34\xdc\x07\xe3\x5e\x9e\x26\xe8\xfc\x5b\x9b\x00\x27\xd3\x60\xf9\x9d\xd4\x98\xcf\x8b\x28\x8e\xa7\xd4\xee\x41\x14\x44\xc8\xd9\x41\xb9\x15\x28\x79\x9d\x89\x4b\x7f\xf2\x51\xba\x62\x3a\xae\xbd\x09\x41\x42\xe9\x46\x3d\xe5\xd2\x1f\x13\x64\x02\xda\x41\xf5\x05\xa1\x5f\xc4\x98\xdb\xa5\x12\xf7\x7d\x46\xb1\xf7\xb3\x20\x8e\xa9\x00\xb0\x37\x0f\x33\x68\x69\x8b\xca\x59\x6f\x82\xac\x18\x4c\xb9\x4d\xb4\xa3\xeb\x2a\x91\xab\x9a\x36\x7b\x4f\xf5\x73\x87\x41\x3f\x49\xe3\x28\xc8\xa7\x54\x8e\xae\x64\x15\xd8\x8e\x9e\x4b\xe2\xc6\x79\xb9\xbf\xaa\xc8\x92\x30\xcd\x3a\x8a\xa2\x53\x9f\x91\xaa\x5a\x3f\x4c\xa7\x5d\x86\x05\xc9\x4a\x55\x9d\xc9\xa4\x90\xf0\xa8\x9b\x4f\x36\x4a\x51\xb9\xa1\x71\x54\x14\x31\xcc\x13\xd1\x5b\xbf\xa6\xa5\xbb\x3e\x51\xd8\xb2\x4f\x6a\x92\xcc\xb9\xe9\x3d\x5b\x7d\x24\x26\x73\xa7\xd0\x64\x92\xb6\x3d\xed\x4e\xb4\x1d\x76\x80\x25\x80\xbe\xd9\x3f\x42\x4c\xb4\x1e\x7b\x96\x60\x7e\xd7\x57\xc8\x9f\x0f\xe8\x8e\x0b\x54\x6c\xca\xb9\x4b\x7d\x44\xc3\x22\x45\xd7\x78\xa5\xee\x4a\x87\xa2\xf8\x3a\x7e\x3e\xde\xeb\x26\xb3\x83\x04\xfa\xe3\x5a\x1a\xdf\x2a\x9d\xb3\xe0\x9f\xd1\xcf\xb4\x4a\x08\x16\x28\x31\x85\x36\x94\xe0\x89\xb7\x9a\x4b\xfc\xb2\x37\xce\x31\xf7\x96\x72\x53\x91\x5b\xcf\xd7\xc6\x65\x5f\x1b\x1b\x76\x39\x13\xd0\x71\x47\xeb\x00\x1e\xb1\x83\x0a\xe8\xb7\xdb\x3e\xb6\xb3\x0a\xc0\x4f\x14\xf8\xb2\x6b\xd7\xf5\xe3\x34\xcf\xb9\x56\x02\xa6\x89\xc5\xba\xf8\x49\x63\xff\x53\xc2\x4b\x34\x21\xd0\x9b\xb8\xf3\x43\x97\x40\xba\x40\x5b\xcf\x48\xd2\x5d\x8d\x03\xc8\xa7\x21\x8b\xe1\x44\x56\x28\xe2\xf4\x91\x62\x70\xf6\x59\xa7\xf9\x5c\xed\xa3\xb5\x20\x1b\x46\x49\x5f\xd4\x8b\x15\x0e\x71\xce\x46\x7d\x17\x00\x4c\x5e\x18\xc9\xe2\xfe\x3f\x89\xd6\x1e\x38\xe0\x2d\xc7\x69\xe0\x0c\x7c\x80\x9e\xc1\xec\x12\x8b\x1a\x5d\x58\x16\x5c\x6a\x6d\x3f\x15\x83\xcc\x04\x08\x88\xc8\x32\xf9\x66\xf2\x93\xc6\xb1\x4f\xd6\xfa\x47\xc3\x41\x75\x96\xa2\xdb\xa9\xd4\x19\xe6\x6c\xc6\x29\xca\x42\x51\x16\xcc\x68\x9a\xc6\x05\x05\x78\x65\xc3\x2d\xfb\x0f\x8b\x02\xec\x83\x91\xcd\xe6\x9e\xae\x12\xe0\x8b\xc7\xf9\xce\x6a\xe1\x02\xfd\x75\x4c\x1d\x63\xdf\xa1\x3e\x1e\x3a\x0f\x2c\x1a\x80\x69\xca\xbb\xa5\x5b\xdd\xa7\x68\x49\xf1\x8b\x51\x19\xa0\x60\xbf\x5b\x5b\xae\x26\x4a\x76\x53\x9f\x09\x1d\x84\xb3\x9a\xd7\x80\xd2\x9e\x41\x39\x28\x76\xed\x54\x72\x71\xd6\xa1\x75\xac\xb0\xcc\xb6\x89\xea\xa0\xb2\xd8\x2c\xde\x97\xf9\x25\x98\x87\x6c\x7e\xaa\x6a\x6a\x1e\x24\x59\xb0\x32\xee\xa8\xa6\xd3\xf7\xb9\xd3\xc6\xcf\x1a\x8b\xbc\xba\x3d\xcc\x86\xfb\x74\xe5\xa1\xe7\xeb\x9e\x36\xc5\x5a\x9a\x15\x83\x75\x58\x36\xe3\xb7\xde\x05\xb4\x8a\x9f\xb4\x7e\x4a\x1c\x0c\x97\x4c\x56\xf0\x82\x15\x0d\x00\x35\xe9\xbd\xf8\xa9\x12\xfa\x66\x94\x99\xa3\xf8\x38\x04\xeb\x73\x5a\xd8\xf6\x9c\xc3\x9d\x98\xbc\xa0\xb9\x42\x75\x7d\xdb\xa6\xdc\x2d\xad\xbd\xd8\x04\xc5\x80\x77\xb8\xc5\x16\xed\xb7\x8f\x55\xd7\x94\x7a\xb7\x38\x10\x85\x18\x53\xbd\x88\x1f\xbb\x13\x7d\x14\x9b\xa4\x17\x11\xf6\x58\xb9\xcb\xe8\x68\xa5\x57\x50\x38\x66\xb1\xa9\x9a\x73\x81\x35\x59\xb3\xb2\xb0\x50\x90\x14\xfb\x34\x27\xec\x54\x64\x41\x92\x33\x1e\xa5\xe3\x28\x15\xe7\x71\xd0\xf0\x93\x96\xaa\xe5\x60\x15\x72\x0a\xb4\x41\xd1\xa4\x42\x23\x81\x1f\x37\x14\x2b\xbe\x32\x47\x68\x23\x0a\x6c\xe8\x94\xde\x53\x4a\xdd\x17\xb0\x9b\x85\x24\xbf\xf5\x3a\xdb\x1b\xc9\x36\xfc\x08\xd5\xa7\x95\x92\xcb\xe9\x46\x27\xe5\x45\x2f\x2f\x4c\x16\xc5\xd1\x6b\x52\xb8\x89\x61\x90\x03\x75\x9e\x55\xc2\x06\x69\x3f\x8a\x57\xd7\x77\x28\xc9\xb3\x2b\x28\x87\x44\x25\xa2\x63\x15\x6d\x58\x3f\x4a\x2a\x00\x3d\x80\xbb\xa0\x74\x62\xa6\x26\xad\x43\xd4\x70\x85\x3d\xcc\xd0\xfb\xfa\x75\xdf\xe1\x76\x7e\x5d\x75\x82\xbf\xf0\x37\xfe\x16\xfd\x95\x4c\xe2\x5d\x90\xbd\xdc\x66\x60\x99\x8d\x49\x1c\xed\x25\xdb\x4c\x71\x80\x92\xcb\xa5\x43\x6b\xb3\x64\x31\xce\xf9\xdf\x6c\x70\x83\x0e\x1c\xa8\x0a\x9d\xd5\x28\x27\x09\x43\x5a\xab\xcc\x45\xf1\x35\x2f\xc5\x8d\x27\x57\x4d\x52\x8c\x33\x03\x9f\x5d\x2a\xc8\x16\x9f\xa3\x84\x13\x7b\x72\xb3\x54\x08\xc8\x7f\x4c\x8b\xd8\x72\x0a\x9d\x0e\xd0\x5d\xa4\x2b\xe8\x84\x1c\x6f\x11\x08\xa4\xd9\xa3\xdc\x46\x34\xef\xd9\x8e\x90\x9f\xb4\x4d\x5c\xbf\x9a\xf6\x1d\x87\x5f\xfc\x54\x3a\xce\x5b\x45\xe1\xe0\xd2\x24\x5e\x7f\x9e\xf2\x27\xeb\x46\x7b\x44\xb4\x47\xd1\xc2\xd4\x47\x1d\xe4\x90\x1e\x9b\xa8\x25\x7b\x1d\xa0\x0b\x41\x7a\xd6\x87\x03\x4e\x34\xa7\x66\x71\x7c\x95\x6e\x0b\xe6\x75\x8f\x77\x95\x34\xe5\x4d\xc2\x2b\xcb\x28\xb3\xba\x66\x42\x4a\x57\xe2\x86\xef\xf1\xb2\x43\xb4\xdf\x3e\x51\x8a\x03\x00\x7d\x60\x63\xdd\xa4\xec\x0b\x70\xe7\x63\x5a\xbb\xf5\x5d\x65\xa5\xbb\x03\xdc\x1b\x31\x2d\x70\x88\x95\x38\x58\xcb\xc7\x51\x91\x4f\x57\x6f\x88\x41\xf2\xef\xe1\x4d\xb4\x4c\x93\xc8\x3c\x39\xea\xdc\xef\x35\xb6\x3f\x05\x8c\x88\x7d\x04\x04\x67\xa1\x1a\x5c\x00\x07\xc9\x39\x4a\x57\xd6\xb6\x27\x0f\xcf\x5a\x7d\x9d\x16\xe7\xc5\xd8\xac\x22\x52\xe2\x8d\xce\xaa\xb1\x74\x93\x68\xb2\x6f\xae\xfa\xef\xca\x9a\x31\x2b\xaa\x8e\xfb\x40\xd5\x71\x1f\xb4\x90\x53\x16\xbc\xcc\xf4\xb3\x74\x3c\x42\xb8\x13\xea\x88\x62\x3b\xe9\x38\x0f\x65\x86\x27\x3a\x56\x47\x6d\x17\xb2\x5b\xab\x06\xb2\x38\xbb\x79\x47\x89\x3b\x9d\x29\x9d\xbc\xc7\x3f\xc1\x02\x41\xd7\xf5\xa4\xaf\xe5\xb1\xa0\xa4\x88\xc4\xf1\x89\x09\x45\x67\x8b\x51\x76\xd4\xb0\x53\x00\xdd\x4b\x21\xac\xec\xa8\xcf\xea\xbb\x7f\x45\xeb\x2b\xc4\x69\xd2\x0f\xb8\x23\x86\xb4\x86\xf9\x10\xfc\xc4\x0a\xef\x99\xde\x38\x0c\xa0\x6e\x3a\x55\xdb\x8a\xaa\xa3\xe3\x2b\xfe\xc9\xdb\x8d\xf2\x76\xdf\x3e\x2f\x08\xc3\x30\x1d\x27\x2e\x8b\xb4\x60\xe2\xf9\xf9\x9a\x4b\x0a\x1a\x92\x27\x15\xae\x64\x64\x92\x24\x48\x8a\x29\xa7\x21\xfd\x01\x5d\x47\xcc\x00\x80\x4f\x92\x36\xa6\x83\x78\xc5\x51\x9f\x60\x35\x8a\xc9\xaf\xd4\x35\x9c\x82\x4c\x11\x44\x6b\x41\x62\x98\xdc\x62\x4d\x92\x2d\x6e\x85\x49\x75\xc2\x61\x92\x0f\xc8\xc3\x41\x1a\x07\x19\x53\xca\x98\x58\x50\x23\x7d\x29\x13\x9d\xd7\xdb\xae\x08\xb0\x5e\x4c\x09\x3d\x3c\xeb\xbc\x4a\x9c\x6f\x49\x63\x5c\xb6\x6f\x9f\xb7\x9c\x99\x84\x51\xbe\x28\x1c\x99\x3c\xc0\x4f\x14\xca\xbb\x97\xa5\xa3\x91\xe9\x4d\xab\x96\xcb\x34\x02\x0e\xee\xf0\x06\x7d\x94\x78\x11\x74\x2c\x21\xf4\x91\x3a\x8e\x82\x21\xa6\x58\x62\x65\xe0\x3a\x1a\xdb\x2c\x8c\x26\x1f\x19\xd3\x4b\x87\xa6\xe0\x7c\x48\xb9\xb1\x58\x04\xb8\x92\xd6\x0c\xd3\xe1\xd2\x38\xb7\xd4\x45\xec\xa4\xab\xd4\xe9\xe6\xc7\x75\x65\x8f\x95\x7c\x57\x75\xe7\x2d\x7d\x67\xbf\x20\x7c\xfe\xfb\x52\x65\x15\x14\xf0\x24\x91\xe8\x58\x62\x3a\xdc\x76\x14\xf2\x63\xce\xb2\xfb\x95\xb0\xe9\x4c\xb7\xc5\x89\x01\x49\x2b\x0b\x43\xa0\x41\xf2\x53\x7a\x37\x7e\xdc\x9a\xae\xe6\x85\x09\xb2\x24\x47\xbe\x22\x20\x7c\xed\x81\x77\x49\x2d\xec\xcc\x04\x55\x9e\xb2\xcb\x61\xa9\xdf\xc7\xd6\x15\x61\x72\x45\x69\x3d\x46\x85\x2b\x8e\x90\x8f\x95\x36\x03\xc4\x0c\x36\xcf\x92\x2e\x88\xcc\x10\x1d\xe9\x6e\xa6\xa1\x2f\x38\x77\xc8\x63\xaf\x1b\xd7\x64\x04\x12\x90\x1f\x2b\x80\x95\x59\x32\x59\xa7\x5e\x57\xd1\x0f\xe3\x27\xda\x0b\xbc\x08\x7a\xd1\x78\x38\x5d\xdb\x6e\x4e\x3f\xf1\xba\x06\x4a\x01\xac\x20\xfb\x50\x56\x11\x35\xcd\xe2\xd4\x8e\x57\x10\x1f\xb8\xcd\xcb\x4f\xd4\x60\x7b\x2d\xc8\x12\x93\x41\xe2\x5c\x82\x1b\x05\x27\x16\x53\xf2\x5d\xb4\x60\x5b\xd5\x9a\xed\x20\x06\x44\x10\xe9\x41\xf3\xec\xae\x1a\x81\x5e\x70\xb4\x6d\xa7\x3c\xd8\x44\x7e\xf3\x93\x06\x99\x90\x5a\x00\x81\x8d\x77\x48\x45\x30\x79\xba\xa3\x78\x69\x77\x94\x90\x17\xc1\xd0\x76\x3a\x80\xfb\x8e\x89\x32\x2f\xf8\xbf\x94\xdb\xce\x31\xda\x00\x62\xa4\x5a\x6d\x00\x1c\xe6\x77\xa9\x09\x8f\x0b\x0c\x2e\x07\x3a\x34\x53\xdd\xe6\xc1\xf6\x8a\x17\x9a\x2c\x18\x46\x21\x2d\x01\xd1\x0d\x72\x15\xf3\x95\xf2\x39\x97\x23\xad\x9a\x6c\x39\x4e\xd7\xc4\xb7\x1f\xa1\x1a\xaa\x7e\xfc\xb8\x05\xeb\xed\xf5\xcc\x92\xe5\x8e\x5b\x5f\x4f\xcb\x0c\x76\x85\xfb\x52\xba\x4e\x3c\x77\x74\x53\x18\x0e\x27\xc8\xaa\xce\xaf\x7e\xd9\xe6\xaf\xce\x5c\xfd\x7d\x8d\x0e\x3b\xe3\x86\x4e\x6b\xec\xb0\x2c\x93\x2b\x67\xf2\xcf\xae\x96\x00\x72\x5d\xc6\xba\xc4\xdc\x64\x17\xa6\x1d\xec\x10\xdf\xb4\x1e\x5e\x5c\xf0\xd2\xe5\xe5\x19\x85\x66\x3b\xa1\xfa\x5a\x3b\xba\x4e\xda\xe6\xba\xda\x93\x10\xee\xc1\x6c\xf5\x7d\x15\x4c\x7b\x4b\xd8\x74\x96\x4d\x6e\x35\x11\x2e\xb5\x78\x7f\xbf\x62\xad\x49\x71\x60\xf2\x0f\xa6\xcf\x61\xdd\x48\x45\xa0\xff\x5e\x5b\xd2\x93\x0f\x52\x37\xaf\xe4\x65\xee\xeb\x25\xdf\x26\x31\x65\xc6\x59\x3a\x32\xcc\xe7\xc7\xc5\x64\x63\x13\x7e\x52\x2b\x44\xa3\xd8\x3c\xdb\xb1\x6a\x4e\x6f\xa9\x9b\xcc\x4c\x2d\x0c\xa2\xae\x29\x44\xed\x43\x4a\xad\x71\x79\xd8\x97\x40\x4c\x27\xaa\x20\x06\x8a\xc8\xbf\xf6\x5d\xa3\xe6\x1c\x35\x26\x95\x5f\x95\x44\xc8\x05\xf4\x0f\xa4\x4b\x81\x48\x25\x52\xae\x4a\xa8\x83\x49\x2d\x48\x18\x58\xa5\x0c\x79\xdf\xed\x3a\x4e\xdc\xb5\x8f\x67\x00\xa9\x44\x2f\x83\x75\x73\x59\x05\xb1\xf6\xfb\x8b\x62\x7d\x07\xfd\x4e\xed\x55\x86\x95\x06\x52\x2d\x26\x54\x1f\xa2\x1e\x40\x1c\x43\xb8\xc5\x85\xf9\x2e\xad\x15\xfe\xff\x4a\x53\xba\x9f\x45\x66\x35\x48\x42\x2a\xf3\xad\x17\x7e\x8d\x37\xeb\x34\x0e\x19\xe5\x02\x5e\xdf\xf6\xae\xab\x6e\x07\xc4\x14\xe6\x10\x2e\xbd\x36\xdd\x78\x53\xd5\x50\x18\x15\xeb\xbb\x9c\x72\xfd\x45\xba\x63\xe2\x27\xed\xce\x8a\xdd\x5d\xd7\x7a\xe2\x1c\x14\xed\x85\x29\x88\x8c\xc8\x78\xae\xfa\x89\x22\x86\xe2\x38\x73\xb7\x95\x91\xda\x28\x4b\x0b\x02\xea\xe5\xca\x69\xfb\xc7\x8a\x48\xf7\x63\xc5\x02\xc9\x06\xa6\x48\xb3\x2a\x64\x59\xed\x5d\x66\x7b\xf2\x13\xd5\xbb\x8f\x4d\xf6\x94\x9a\x62\x3e\xc4\xb5\x97\x17\x55\x6f\x80\x8e\xd3\xe3\xdd\xaa\xe2\x12\x3d\x4b\x5a\x4a\x94\x74\x97\xcf\x10\x82\x48\x99\x75\xc8\xd1\xb5\x7d\xa2\x90\x16\xdb\xbb\x75\x90\xf7\xbe\x39\xcb\xc4\x9f\x72\x1e\x66\xd7\x4a\x37\xd9\x78\x72\xe2\x9c\xf9\xce\xa0\x41\xcb\x7c\x31\x2c\x50\x64\x9c\x9d\x86\xc1\x44\x55\x8b\xe4\x83\x74\xec\x4e\x13\x3b\x1c\x52\xf8\xad\x36\xd6\xf7\x28\x4d\x57\x38\x47\x45\x53\x67\x53\xf1\xb6\xb9\xe9\x2d\xf3\x6a\x27\x74\x65\xe2\x60\x29\xcd\x82\x82\x35\xd5\x34\xf5\x19\xbb\x13\x4e\xc7\x6c\xab\xa9\xf5\x5c\xcc\x30\x0d\xb3\x00\x14\x23\x6c\xa4\x6f\xe3\x43\x2c\x1f\xd8\xc2\xb4\x7e\xa6\xf8\xe7\xe7\xb5\xee\x48\x3a\x5a\x97\x98\x85\xca\x90\xc1\xc9\xfc\xa4\x4d\x7b\xa0\x9f\xc6\x26\x59\x4a\xc3\x15\xa5\x85\xc9\xbf\x8e\x9f\x34\x0e\xe9\x7d\xfb\xbc\x28\x09\xd3\x6c\x44\x3f\x94\xd1\x04\x32\xbb\xa0\xfb\xc7\x4f\xd4\xc2\x9a\xff\xc2\x57\x14\x94\xee\x8a\x02\x4d\x9c\xae\xcd\xac\xac\x3f\x5c\x3c\xce\xc2\x01\x4e\x41\x01\x71\xbb\x69\xd8\xc3\xc6\x1d\x5b\x9c\xf5\xf2\x22\xed\xf5\xd7\xa7\xdc\x50\x0b\xe6\xd6\x56\xba\xbe\x5a\xa4\xa2\x47\xe3\x9a\xfa\x6b\xd5\x56\xda\x53\x6d\x39\xdc\x93\xeb\xb4\x79\xf9\x31\x15\x9a\x0a\x5a\xb7\xb0\x49\xec\xed\x97\xf0\x1f\x09\xeb\x34\x0a\x9a\xdb\xdc\xa0\xcd\xca\x79\xa6\xef\x0c\x0e\xa9\x87\xb2\xb9\xa1\x8c\xa5\xc8\x27\x22\x5a\x1a\x17\x66\x86\xbe\x15\xc6\x43\x67\x28\xb6\x59\xbb\xd0\x6a\x55\xf3\x3f\xa8\x18\x72\x93\x3e\x04\x31\xed\x98\xbd\x58\x4b\x71\x90\xac\x4c\x2b\xc5\xf0\x07\xf4\x12\x1a\x2b\xfc\xe7\x68\x2f\xe1\x32\x74\x26\x0a\x09\x7f\x49\x5f\x86\x80\x90\x84\xf3\xaa\x44\xfd\xd2\x11\xdb\x2c\x6a\x01\x5d\x05\x45\x11\x15\xe3\x1e\x2b\xbf\x6e\x32\x7c\x0e\x21\x9b\x81\x09\xc2\xae\xa8\xbe\xb1\x3c\x76\x84\x9d\xd5\x74\x18\x55\xbb\x72\x46\x6d\x31\xd4\x28\x76\x11\x56\xb1\x47\x16\xa1\xe3\x31\x30\x7a\x11\xd7\xfe\x94\x12\x8e\xcf\x82\x90\x48\xbc\x16\x59\xfb\xba\xd2\x79\x7e\xbd\xb1\xf8\xa5\x47\x3a\x1c\x87\x03\x27\xc8\xf5\xcd\xbd\x5d\xc5\x46\x42\x8f\x86\x47\x81\xb4\x8b\x6b\xaa\xdc\x58\xe7\x37\x95\x8d\x50\xcf\x40\xa8\x72\x19\x1b\x51\xb7\x14\x6d\xb5\xde\x6c\x47\xce\x1d\xf2\x96\x03\x54\xdc\xac\xaf\xa0\xe8\x6d\xda\xa5\xe8\xab\xe3\x2c\xca\x47\xd9\xb8\x67\x92\xd0\x40\xdf\x91\xeb\x77\x3a\x8d\xa5\x96\x6f\xc1\x8f\x8f\x47\x83\x28\x86\x8a\x13\x72\x36\xd8\x3f\x0b\x75\xb5\x63\x1d\xc6\x4e\xab\xce\x4c\xcf\x14\x41\x04\xd6\x18\x2b\x11\x68\x5f\x21\x6e\xf7\x62\x4c\x73\x5d\x15\x01\x37\x91\x5c\xf0\x3f\x28\x79\xb9\x7e\x1c\xe4\x49\x9a\x03\x36\x6c\xa5\x10\x17\x5e\x16\x61\x8d\xf3\x75\x73\xdd\xc2\x3c\x5d\xdf\x06\xb6\xa5\xff\x41\x59\xdf\x38\xfb\x44\xf2\xeb\x67\xbe\x13\x06\xfb\x0c\x50\x09\x48\x57\xa6\x26\x2a\x8d\xb8\x8e\x62\x11\xd1\xf9\x77\x7c\x25\x3c\xfd\x2e\xe5\x06\x18\xd5\x5f\x52\xc5\xc3\xd7\x91\x14\x61\x2d\x4d\x10\xe5\x34\x1e\x08\x29\x16\xcb\x39\xb0\xaf\x8e\xd2\x5a\xb8\xaf\x0a\xbe\xd1\x38\x5c\x89\xf2\xc1\x5f\x40\x0b\xe2\x08\x68\x92\x7e\x31\x30\x09\xd7\x4f\x48\xe1\x37\xf0\x65\xf9\x89\xea\xc6\x8f\x32\x93\xe7\xac\xa6\x65\x37\x90\x03\x1c\x5f\xf6\x1d\x00\xa2\xde\xe4\xb7\xb4\xff\x03\x07\xe4\x71\x9b\x69\xd8\xaa\xc9\x62\xed\xa5\x89\xa3\xf3\xb6\x3a\xa2\x6f\x37\x7a\x98\x47\x16\xbc\x01\xb1\x4e\xaa\x9b\x68\x75\x9d\x17\x67\xad\x64\xf3\xf3\x35\x46\x97\xc9\x56\x41\xe8\x9a\x72\x66\xa3\xc7\x4b\x65\x36\x7a\xdc\x69\x87\x91\xc5\x5e\x47\x03\x67\x6a\x00\x19\xe7\xaf\x97\x19\x41\x21\xc5\xeb\xd4\x07\x43\xa4\x81\xb6\xb1\x90\xba\xdc\x58\xe9\x9c\x5e\xfd\x41\x12\x99\x98\x98\x2c\xa2\xe2\xad\x94\xd3\xff\xd4\xaf\x69\xb8\xd2\x8d\x97\x34\xb7\x63\x8d\xcc\x78\x42\x2c\xf2\x22\x2d\x89\xc6\x5a\x90\xe5\xc1\x5a\x47\x55\x66\x57\x14\xec\xc7\x99\xc6\xa7\xe3\x22\x36\x05\x68\xf3\xb8\xa7\xd7\xea\x8a\xe9\x1d\x6b\x75\xb9\xad\xeb\x72\x82\x35\xb8\x62\xd2\xc6\x67\x4c\x41\xe9\x30\x20\x57\x7c\x3d\xb5\xd2\x4a\x40\xe3\x7e\xdf\x50\xab\x29\x6f\x5a\x69\xa3\x85\xfe\x01\xae\x06\x9a\x33\x37\x55\x83\x21\x36\x05\x35\xb4\x0e\x0b\x84\x17\x73\x27\x7e\xac\xd6\xec\xd0\x14\x41\x9c\xef\x50\xf5\xfa\xf1\x52\x41\xab\xaf\x63\x37\x21\x19\xfc\x13\xfa\x64\x7c\x18\xc6\xcf\xbc\xe3\xff\x44\x59\x91\x2e\xa8\x84\x8a\xfc\x9f\x57\x4d\x6f\x9a\xe2\x0b\x4e\xbc\x47\x65\xed\xce\x38\xa3\xd6\x47\x9a\xd0\xa9\x34\x3b\xf3\x51\xc0\xce\x01\xf8\xfd\xa7\xe9\xef\xf8\x71\xb3\x6e\xdc\x67\x69\xa8\x9d\x9a\xb6\x65\xf5\x0d\xf9\x71\x9b\x73\xe9\x72\x9a\x16\x41\x9f\x37\x2f\xc2\x15\x22\x32\x3f\x56\x18\xec\xe5\x71\x96\x66\x53\x55\x8a\x22\x82\xaf\x14\xd6\xa4\x63\xed\x88\x98\xf7\x6d\x72\x90\x0f\x4c\x1c\xef\x70\xf0\x6e\x04\x2c\xe4\x19\x7b\xba\xce\x06\xe8\xa4\x92\xca\x63\x66\xbd\x98\x9d\x2a\x04\xd6\x2d\xbb\x07\x83\x2c\x58\xe2\xaa\x82\x3b\xa1\xda\x7d\xe6\xe3\x16\xbb\x55\x2f\x4f\x57\x23\x03\x04\x34\xc3\x0f\x7d\x25\x3d\x72\xd2\xea\xae\x8d\xb3\xbe\x01\x3d\xd1\xf2\x3a\x9d\x54\x2d\xed\x0e\x91\xfe\xa1\xb5\x23\x84\xcf\x27\x94\x35\x26\xdf\x36\x1c\xdd\xff\x50\xa1\xed\xff\xa1\xdd\x51\xab\x86\xe6\xcb\x4a\x26\xe9\x58\xa9\x65\x92\x8e\x35\x00\x1d\xfb\xf6\x59\x19\x69\x54\x06\xb5\x62\xae\xd6\x32\xc1\x12\xbe\xdb\x48\x9d\x5e\x7d\xd5\x8b\x92\x65\xd1\xd8\x9a\x77\x9e\x50\xf4\x35\xc4\x3a\x4a\x7b\x83\x45\xe1\x0a\xdd\x70\xe4\xa1\xd7\x95\x99\xe1\xeb\xaa\x3c\xbc\x64\x2f\xde\xc0\x98\x7c\x4a\x6b\x55\xdf\x2b\x95\x1f\x3c\xd7\x61\x78\xb3\xa7\xba\xcf\xaa\xe2\x61\x38\x4a\x13\x93\x14\x39\x31\x27\x95\x40\xf6\x2b\xce\x10\xcd\xd6\xb8\x08\x22\xd8\x75\xec\x79\x87\xc3\x78\x67\x57\x4d\x8b\x15\x1f\x22\x49\xb3\xc8\xf4\x03\x1a\x15\x40\x1d\x00\xcd\x4c\x91\xa9\x73\x8d\xcb\xb7\x1b\xd3\xec\xfd\xf3\xde\x38\x89\xd3\x70\x25\x47\xad\x81\x77\xbf\xa8\xfb\x19\x17\x7d\xa7\xa9\x18\xc6\xe3\x9e\x21\xf3\x1d\x80\xb0\x76\x4e\x9a\x76\x8e\xc8\x7b\x20\x50\x82\xe3\x7a\x17\x68\x68\xf6\x77\xeb\x3c\xc7\x95\x5e\xdb\xa9\xbe\x15\x6c\x90\x83\x78\xe7\x51\x3f\x31\xbd\x9d\xd5\x95\x43\xbd\xd6\x01\x05\xb0\xe6\x35\x61\xfd\x46\x17\x05\x02\x00\xfd\x21\x1c\x43\xc0\x1d\xa2\xf9\x0e\x5e\x01\x06\x97\xbb\x26\xee\x26\x05\xd9\x52\x54\x64\x41\x9f\xe7\x05\x38\x7c\x18\xa0\xcf\x4f\x9c\x96\x5d\x10\x0b\x01\x44\x1a\xe8\xf4\x95\xa4\xb7\xde\x82\xf5\x36\x47\x47\x71\x14\x46\xd8\xa1\xb8\x2c\xdf\x53\xba\x47\xdf\x53\xb1\x3b\x27\xbf\x8a\x69\x87\xd4\xfe\x44\x89\x2f\x31\xfa\xc6\x42\x31\xec\x64\x6f\xa3\x26\x24\x12\x64\x59\x47\xe1\x4a\xc0\x23\xe7\xc7\xba\x81\x21\x32\x13\x8a\x7f\xf5\x1d\x7a\x53\x7e\xdc\xe4\x79\xed\xf3\x82\x25\xb6\x71\xdf\xbc\xe1\x86\x35\xff\xd5\x33\x5d\x07\xf0\x80\x57\x14\xc2\xe8\xf4\xa4\x39\x7f\x5d\xf0\xf2\x60\x1d\x8e\x97\x68\xb2\x3d\xf0\x15\x5c\x88\xc9\xc8\x22\x92\xe5\x68\xbe\x8f\xb0\xc0\x90\xd0\xde\x6b\x99\xeb\x7a\x69\xdc\x63\x2d\x04\x81\x07\x28\x5c\x20\xda\xef\x22\x61\xf8\xbc\x36\xd0\x5a\x35\x09\x66\x89\x04\xaf\xc4\x76\x9b\xee\xba\xab\x7e\x4e\x09\x56\x23\x1d\x10\xcd\x68\x3b\x97\x48\x83\xa4\xce\xd8\xe6\x66\x9f\xcc\x4f\xb7\x5e\xc8\x17\xbd\x22\x2a\x62\x69\xe1\xdb\x00\xe7\x54\x57\xce\xf8\x7b\x75\x0b\xc3\x04\x49\xca\x4d\x29\x9e\x34\xd1\xf2\x91\xa9\x53\x9b\x9a\x63\x1c\x14\x26\xa3\xcc\x0c\x97\x6c\xd3\x57\x0c\x15\x16\xb1\xc5\xf5\xbf\xdc\x28\xe1\xf6\xcf\x57\xa7\x9b\x29\xb2\x34\x5c\xd1\xd6\x29\x27\x14\x54\xf2\xc4\xa7\xda\xa7\x8d\xd2\x38\x0a\xd7\xa7\xdc\x44\x1e\x63\xd4\x9a\xe0\x06\x4e\x82\x93\x8d\x4f\xa6\x41\x45\x96\xc6\xf1\x16\xc7\x71\x7e\x19\x3f\x69\xa1\x36\x1e\xf4\x82\xe5\x65\x13\x62\x8b\x29\xaa\x81\x68\x98\x1d\x6b\xa3\x43\x2e\xc1\x71\x43\x2b\x53\xbf\x5d\xaa\xb4\xe9\x6d\xd5\x8c\x5c\x4d\x0b\xb3\xcb\xb1\x92\x8e\x97\x4e\x79\x15\x1d\x78\x91\xe3\x52\x8b\xee\x4d\x5f\xd9\x90\xdc\xa0\xc5\xcc\x8f\x81\xc4\xc3\x93\x5b\x8a\xb4\x7b\xd7\xd7\xb2\xde\xe6\x39\xc5\x8e\x7d\x0a\xdd\x4c\x69\xae\xab\x59\xfb\xc3\x72\xea\xc8\xe2\x6c\x2d\xc3\x41\xcb\x79\x3b\x06\xfe\x88\x32\x8f\x54\x9d\xf7\x58\x4d\xf0\x9b\xbc\x44\x5e\xda\xdc\x70\x56\x1b\x9f\x7d\x06\x56\x6e\x62\x2d\xed\xb2\x99\x8d\xb2\x73\x64\xc1\xc2\x46\x69\xf9\x22\xfd\x9d\x21\xb7\x7b\x9c\x0c\xef\x97\xce\x38\xfb\x0f\x49\x4c\x0f\x8f\x6f\xd3\x45\xa3\xbf\xf9\x1f\x3d\xc2\x7a\x08\xc3\x18\x27\xea\xeb\xad\xb2\x5c\x71\xda\xb7\xa4\x55\x3e\x6c\x68\x33\xcb\xc1\xe3\xb2\xb8\x62\x10\x25\xfd\x9d\x8a\x2f\x7b\xbf\xac\x13\xbb\xab\x9c\x0e\x17\xfd\x34\x05\x45\xb6\x0c\x41\xd9\xca\x2f\xa1\xf2\xb2\xa6\xba\x23\x54\xf0\xe7\x54\xe8\xec\x99\xe1\x08\x58\x35\x7a\x53\x5c\x9c\x7b\xf4\xfb\xf8\x71\x5b\x46\x9a\x9b\x62\x29\xa8\xf6\x94\x6b\x29\x9d\x2f\x35\x04\xb5\x6d\x27\x86\x03\xd3\x1b\xc7\xb2\x4c\x51\x43\x43\x52\x81\x1f\xab\x3c\x36\x1f\x57\xa7\x79\xb5\x1c\x6d\xf9\xb2\x38\x6b\x89\xe3\xcf\x28\x45\xd2\x0c\xb3\x54\xba\xfa\xc2\x35\xec\x58\x83\x10\x87\x8b\xff\xea\x38\x8e\x4c\x87\x30\x49\x58\x54\xbc\x15\xf9\x89\xff\x98\x02\x2f\xfd\x3c\x5d\x0b\x74\x90\x9e\x41\xbf\x07\xe3\x8a\x6f\xd2\x82\xb0\xab\xed\xc0\x81\x83\x56\x2e\x16\x70\x6d\xdb\x25\x58\x14\x23\xee\xbb\x10\x01\xc0\x3f\xdc\x44\xdf\x0e\x5b\x0c\xce\x10\xc8\x34\x6e\x62\x23\x89\x83\xac\xd2\x6c\x61\xf0\x0e\x7b\x5d\xa3\x1b\x82\x78\x7e\x5b\xf9\x3f\x9c\x41\x2d\x04\x90\xd8\x49\x5f\x21\x24\x8e\xd1\x3a\x90\x16\x09\x11\xfa\x34\xbc\x50\xfa\xd5\xd5\xa2\xc7\xe2\x3e\xee\xd3\x2e\xc4\x07\x7e\x93\x33\x5e\x50\x98\xee\xfb\x8a\x22\x02\x7f\x06\x2c\xb0\xa7\x49\x2a\x5d\x32\xcd\x8e\x95\x7b\xfa\x86\xf6\x2f\x7a\xbf\x25\xe5\x9f\xf3\x96\xa3\x58\xd8\x10\xd8\xdf\x57\xe9\xf6\x61\xf2\x34\x33\xd1\xf6\xcd\xb6\x64\x59\x4b\xb3\x95\x9c\x82\x18\xbe\xd7\x29\x6c\x60\x08\x4f\x3c\xd7\x55\x4e\x2a\x6f\x68\x58\x1c\xe6\x82\x35\xb2\x20\xca\x99\xbb\xb8\x95\x4a\x4e\x56\x4c\x88\x9a\x9d\xe4\x7d\x73\xde\x52\x6a\x6c\x58\x17\x94\x62\x0d\xc0\xd8\x60\x6a\x2d\x78\xcb\xd1\x51\x59\xf9\x2c\xba\x56\x13\x60\x6b\xc1\x61\x55\xf9\x19\x15\xc9\x2c\x49\x44\xf7\x51\xe4\x89\x9c\x68\x45\x16\x0d\x41\x73\x16\xad\x7d\xfa\x26\x22\xb6\x6f\x15\x89\x03\xb2\x2e\x67\x9d\x03\xe9\x1d\xd0\x25\x40\x2e\x71\x0f\xb7\x56\xae\xa7\x53\x6c\x8d\x57\x76\xd3\xbf\xd8\x63\xcf\x69\x73\xfe\x59\xa9\x9c\x82\x79\x3b\xa1\xf2\xb8\x47\xfb\x04\x81\x6d\x27\xe5\x54\x78\xf9\x33\x5d\x45\xf2\x43\xe2\x27\x9a\x9f\xd8\x3f\x32\xeb\x6b\xf2\xab\x17\xbc\x28\x49\xd2\x90\x18\xed\x1a\x20\x7a\x46\xf3\xb4\xce\xd4\x14\x9f\x86\xa3\x88\x73\x93\x05\xab\x32\xe7\x98\x89\x67\xfd\x2d\xe4\xbf\x23\x8b\xb3\xde\xfe\xf9\x3d\x8e\xef\x77\x55\x39\xb4\xb1\x5c\xa9\x05\x8c\xef\x57\x11\xec\xb0\x93\x8c\xa3\x35\x81\xd0\x73\xae\x74\x16\x35\xec\xa1\x86\x0a\xf3\x47\x1a\x4e\x81\x41\x13\x76\xe4\x4c\xb7\xe6\x91\x1f\xa0\x2a\xd7\x8c\x5d\xd1\x68\xeb\x58\x85\xd2\xd3\x35\x8a\x01\x3e\x1f\x1d\x49\xf8\x32\xca\x2f\x79\x4c\x33\xd7\x14\x28\xca\x77\xcc\x94\xdb\xd8\x05\x62\x81\xd3\xf9\xd5\x2f\xf3\x5c\xf7\xc7\x64\xb3\x80\x2b\x3c\x0d\x9b\x05\x1c\x9c\x8c\x32\x67\x29\x16\x5c\x21\xe4\x94\x7b\x30\xfe\xb7\xc1\x69\x71\x56\x0a\x8b\x6f\x2b\x3c\xcd\xeb\xbe\x4b\xb1\xff\x44\x71\x28\xdf\x26\x46\x00\x92\xa4\xb3\xbe\x96\xf9\xc4\x2a\x41\x64\xde\x36\x51\xc3\xa4\x37\x91\x09\x0a\x57\x9c\xc2\x24\x7e\xd6\x95\xb2\x73\xe8\x65\xa7\x08\xb3\x28\xfe\xe3\x1b\x84\x49\x45\xea\xf9\x0f\x6a\x93\x1c\xed\xe4\xc8\xaa\x0e\x68\x32\x4d\x75\x3b\x5f\x99\x13\x55\x63\x5a\x4a\x68\x11\x73\x31\x27\x74\x62\xc5\x0d\xb8\x83\x88\x8b\xb4\xe0\x9f\x01\x4b\xc8\x4d\xb8\x89\x42\x4b\x5c\x6b\x3b\x30\xd3\x55\x93\x2d\x8d\xa3\x98\x72\xc1\x4d\x54\x71\x9b\x0f\x6c\xff\x77\x98\x26\x51\x91\x66\xa6\x07\x0c\xa8\x88\x3b\xd1\x35\xb1\xa6\xea\x16\x85\xf2\x8f\x6b\xc3\xe9\x52\xb1\x5e\xb6\xd5\x56\x9d\x09\x79\x34\x89\xbf\xbc\xa1\x5c\x29\x7f\x46\x0b\x4a\x34\x54\x9e\xb7\x11\x48\x1c\xdf\x86\x26\x29\x66\xaa\xeb\x8b\xf1\x13\xb7\xa2\x15\xb8\x40\x62\xef\x4d\x7a\x53\xfe\xab\x52\x15\xdf\xef\x34\xa2\xed\xa1\x97\x59\x6b\x4c\x89\x6c\x9d\xa1\x1d\x67\xad\xd0\xab\x35\x8b\x2f\xf5\x33\x5d\x70\x9b\xa4\xc8\x02\xd4\x25\xd6\x35\xc6\x7a\xff\x34\xf1\x7f\x87\x5e\x66\xc1\x9a\x9a\x5d\x11\x7d\x92\xe0\xa9\x1a\x04\xfc\x97\x0f\xea\x8e\x15\xaa\xc6\x4d\x5c\x67\x7e\xa2\xe8\x4e\xc5\x9a\x49\x0a\xe6\x68\x88\xb0\xa1\x0b\x35\x1f\x35\x0a\xc1\x7d\xfb\x28\xf8\x4e\xb9\xfa\xed\xc9\xae\xf2\x6d\xbf\xa8\x78\x2a\x3b\x27\x4f\xab\x9e\x69\x9e\x07\x7d\xb3\xd3\xe9\x84\x9c\x2e\x1d\x76\x92\x1b\x62\xe2\xfb\xa7\x38\xc8\x97\x94\x60\xdb\x43\x5f\xc9\x42\x80\x83\xcc\x6f\xd5\x58\xa6\x73\x87\xbc\x81\xc9\x92\x28\xb0\x4a\x5f\x38\xf8\x3f\xf2\x5d\x12\xf0\x51\x0b\x18\x86\x2d\xea\xed\x31\x2a\x32\x9b\x0e\xc6\x7f\xac\x6d\x0a\x16\x44\x68\x6c\x08\x13\xab\xa3\x44\xe0\xed\x91\x95\x45\xc3\x1d\x4a\xdb\xf7\x9e\x8a\xb0\xd7\x74\xa3\xe5\x9e\x4a\xe6\x30\x5c\xc5\x66\x7c\x4b\x35\xc0\x9b\xd4\x99\xb9\x43\x9e\x49\xe2\x20\x13\xf6\x94\x94\xc6\xb5\xa2\x59\xef\xa8\x7e\x3a\xc2\x6f\xb4\xb3\xb4\x03\x07\xe4\xb1\xd2\x0e\x18\x55\xdb\xbd\x58\x47\x03\x1f\xe1\x95\xb3\x45\x0b\x07\xb7\xd3\xa6\xf7\x6c\xc5\x5e\x0c\x0c\xf9\x16\xd8\xae\xc5\x65\x45\x4b\xb9\xdc\x38\x46\xa5\xb4\x25\xdd\x53\x65\x18\x32\x35\x71\x0c\x9d\xb3\x3a\x52\xec\x6e\xe0\x37\x09\x13\x90\x45\x71\x8c\xac\x03\xb1\xff\x5f\xe1\x35\xfc\xa4\x36\xa5\xcb\xd2\x6c\x46\x4d\x4c\xcf\x6f\x69\x48\xeb\x4e\x75\xb5\xe8\x10\x08\x6e\x29\xf7\x85\xab\xca\x57\xa9\x67\x56\xa3\x2a\x40\x39\xf5\x5b\x00\x68\xb0\x54\x3b\x13\x67\xeb\xb6\xa3\xeb\x4a\xde\x25\x51\x8c\x61\x09\x49\x45\x73\x79\xd0\x2a\xc4\x11\x66\xe3\x1e\x07\x02\x69\x91\xa8\x76\x89\xb2\x25\x5d\x4d\xab\x82\x8e\xee\x92\x80\xfd\xe9\x44\x14\x85\x4b\x6d\x9c\xdc\x5b\x4e\xb3\x1e\xa8\x45\xc8\xfa\x20\xec\x64\x9b\x95\xd5\x89\xc5\xff\xe0\x3b\x7f\xab\x8b\x8d\x48\xf5\x4b\x6c\xa7\xa8\x0d\xd8\x2f\xf9\x4e\x55\xdf\x29\x29\xc6\xe3\x70\x45\xb6\x25\x17\xa6\xba\x21\xfe\xba\xc2\xac\x17\x59\x14\x24\x7d\x96\x6a\x15\x3e\x87\xe2\x76\x94\xda\x6d\x74\x38\x1c\x27\x51\x5e\xec\x76\xf7\x9f\xf1\x0e\x5a\xb6\x58\x90\xb6\x2e\x6d\x39\x8f\xb0\x62\xb5\x30\x16\x05\x24\x7c\x5e\xeb\xea\xe9\x41\x2a\xd3\xf7\xf8\x49\x59\x9b\xbb\x44\xc9\x8c\xc6\xd8\xe8\x46\x44\x93\x45\x81\x9b\xfd\x7d\x25\xa4\x77\xb6\x05\x17\x38\x4f\x02\x1e\x69\xce\x3b\x5b\x46\x60\xd5\xa5\x15\x92\x8d\xe2\xd5\xa7\x43\xaa\x3b\xab\x2f\x88\xef\xc0\xa7\x2a\x3f\xf1\x1f\xb7\xab\xe4\xb5\xa5\x25\x6a\x60\xa1\xa6\xb9\xa5\x68\x5a\xec\x4b\xc9\x7e\xe0\x6d\x26\x98\x5f\x1b\x07\xbd\x6c\x3c\x72\x7d\x24\xc4\x54\x34\xc4\xf9\xb1\x3a\x65\xe2\x60\x9c\x99\x64\x5a\x61\xb4\xbe\x83\x63\x18\xb3\x2b\x2e\x94\xf8\x89\xd2\x8a\xfe\x4e\x8b\x4c\x87\x67\x56\xd3\xd8\x85\x68\x69\x97\x39\x44\xd9\x09\x2b\xa4\x16\x2c\x2f\x47\xd9\xd0\x19\x83\x88\x2b\xb1\x6b\xb3\x69\xed\xa3\x20\x59\x27\xa5\x3e\x24\x73\x22\xfc\xe4\xf8\x58\x50\x61\x56\xd5\x98\xa0\x4e\x7e\xd6\x26\x49\xb7\x6a\x0a\x93\x31\xc3\xd7\x1e\xdb\x16\x72\x7f\xbb\x26\x04\x6c\xbd\x09\x83\x22\x88\xd3\x7e\xae\x30\x6f\xec\x2f\x2d\x3d\xf8\x16\x22\xd7\xaa\xe9\x9b\x22\xa8\x36\x8a\x54\x20\x72\x2f\xe8\x95\x72\x33\x9e\x50\xc1\x2f\x88\xf9\x2f\xb1\x35\x6f\x97\x4a\x36\xf0\xb6\x9d\x94\x2d\xf1\xec\xa2\x7a\x17\x4b\x79\x74\xf4\x47\xad\x53\x91\x0e\xab\x2c\x6b\x87\x6b\x8d\xdd\x42\xde\x8b\x79\xd7\x5b\x08\xae\xd6\x52\xca\x76\xe9\xaf\x2b\x29\x26\x78\x01\x21\x37\xde\xd9\x6d\x1a\x09\x8d\x73\x93\x4f\x69\xc6\x25\x2d\x19\x64\x1a\xf7\xb0\x98\x70\x98\x9e\x6c\xb0\xad\x8f\x2c\x50\x39\x8f\x76\xf0\x26\x69\x91\x6f\x6e\x68\x07\xfc\x38\x88\x7a\xd4\x9d\xc6\x51\xc3\x29\xa2\x13\xd0\x90\x8d\x76\x5d\x49\xbc\x5c\x6b\xd0\x50\xab\x10\xbd\x64\x92\x70\x30\x0c\xb2\x95\x19\x55\xfb\xd2\x2f\x46\xa7\xe5\x11\x22\x92\xcc\xed\xa8\x00\xb1\x1a\xbc\xd5\x15\x13\xec\x74\xcb\xf9\x36\x4e\x8a\xcc\x3a\x4c\x02\x7e\xfb\x67\xa5\x83\xe2\xfe\x59\x23\x13\x9c\x3b\xe4\xe5\x66\xd5\x24\x2c\xb5\x8c\x28\x0e\xc7\x5f\x7e\xac\x04\x39\x46\x71\x10\x9a\x7c\x86\xf2\x56\x54\x22\x30\x2d\x45\x42\x7b\xa2\xae\x33\xe6\x92\x32\xb0\x71\x84\x48\xd9\xd2\x93\xeb\x99\x30\x8e\x12\x9e\x2c\x23\x5f\xdb\x50\x52\x54\x1b\x9f\xaa\x45\x6d\x82\x2c\x89\x92\x3e\x83\x19\x01\x6d\xbb\xaf\x5a\x25\x0c\x66\x12\x81\x27\xcb\xd3\x59\x31\x45\x38\x30\xb9\x16\xdd\x87\xa6\x86\x40\x83\xdd\x88\x26\x18\x56\xd5\xca\x78\x38\xad\x78\x31\xe8\x24\x60\x1a\x76\x4a\x39\x37\xdf\x47\xc3\x0c\x95\x60\xd3\x12\x6f\xee\x90\x37\x8c\x62\xc3\xf3\x70\x99\xf2\xe3\x97\xf2\xe3\x46\x96\x3a\x3f\xbf\x40\x2c\x88\xa4\x27\x77\xb5\x55\xe5\xc4\x41\x14\x96\xb3\x60\x68\x40\x5b\x46\x99\x02\x58\x3e\x3f\x56\x1b\x52\x03\xf8\xdb\x08\xce\x8e\x0b\x95\x17\x26\x36\x39\xf4\x6a\x01\x10\x98\xa1\xc6\x08\x36\xe2\x7d\x82\xe4\x4b\x3c\x69\x29\x06\xb3\x20\x8a\xb3\x34\xe8\xf1\xe5\x16\xa6\x75\xc7\x4a\xf9\x36\xf5\x12\xf6\xed\xf3\xaa\x0d\x42\xec\x21\xca\x4a\xd0\x90\xc4\xf0\x83\x1f\xb7\x2d\xe5\xa5\xcc\x04\x2b\xe3\xd1\x94\xaa\xd8\x8e\x2b\xba\xfe\xf5\xfa\x81\xe2\x32\xd8\x20\x8e\xd3\x35\xc3\x29\x0e\x32\xd8\x33\x2a\xc5\xbe\xa0\xa1\x49\x80\x7c\x08\xf5\xc5\xcd\x0a\x92\xd0\xec\xa5\xd7\xa3\xa2\x7b\x62\xa2\xc0\x9f\x4c\xb1\x92\x31\xbd\x1d\x1c\xfd\xc2\xbf\x4f\x68\x63\x81\x08\xd2\xd7\xc6\x2b\xd8\xc7\x17\x81\xec\x6e\xe9\x2c\x14\x9f\xe8\x52\x59\x2e\xc4\x95\xce\x3e\xc1\xa9\x3c\x2a\x35\x45\xb0\x4a\x8b\xa5\xab\xfc\x48\xf3\x63\xa1\xd8\x82\xae\xfb\x46\xa9\xfc\xf1\x3b\x94\x48\xa3\x8b\xf5\x74\xd7\xd1\x8f\x6e\xa1\xa9\x2a\x12\x20\xca\x5a\x22\x89\x86\x3c\x13\x10\x83\x0c\x45\x69\xbd\xe0\x2b\xcc\x42\x10\xaf\xd0\xfe\xd1\x2a\x58\x32\x6c\xac\x7e\x1a\x3f\xd6\x42\xb7\x2d\x3e\x71\x71\x50\x30\x76\x02\x77\x02\xe6\x8b\xb8\x78\xf7\x94\x96\xc6\x6f\xd1\x91\x21\xda\x10\x6d\x82\xa0\x51\xd2\x8b\xc2\x62\x28\x9e\x87\xe2\xe9\x52\xbd\x85\xb8\x57\x29\xbf\xb7\x34\x1b\x9a\x8c\xb9\x51\x2c\x1f\x81\x62\x4c\xb4\x24\xda\x84\xfd\xc3\x70\x9c\xb3\xc0\x95\x32\xa0\x9f\xd3\x66\x12\x82\xe1\xf8\x86\x55\x1d\x88\x86\xa3\xc0\xa9\x6b\xe2\x75\xb0\x5c\xe1\xc7\xdd\x67\xd4\xc0\x1c\x1e\xc1\x1d\x45\x63\xc0\x15\xe4\xc7\x8d\x12\x6a\x71\xd6\x1b\xd1\x5c\xcf\x95\xbc\x4c\x15\xa0\x5f\x2e\xb4\x01\xa9\x46\x47\xe1\x52\x4e\x9a\xfd\xb6\x03\xef\xe4\x44\xaf\x6a\x7e\xe1\x3b\x5a\xf2\x6c\x9c\xad\xae\x77\x54\x5b\x07\x8a\x6a\xfc\xb8\x71\x33\x16\x67\x61\x50\x3b\xce\x44\x54\x6d\x8e\x43\xd5\x7b\xa5\xe2\x38\xbc\xd7\xd8\xec\x87\x67\x5f\xf2\x06\x26\x1e\x71\xc2\x2b\x5f\x84\xde\x40\x3c\xda\x5a\x20\x69\x69\x66\xfa\xcc\x31\xc4\x3a\x7b\x5f\xc3\xdd\xdf\x6f\x11\x37\x58\xf0\xe2\x20\x41\xc0\x06\x36\x7a\x6e\x73\x43\x49\x05\x07\x49\x31\xc8\x82\xa3\xd3\x4a\x76\xf4\x3c\xbe\x39\x66\x72\xc7\x54\xa7\xf8\x3c\xe6\xbf\xfc\x0f\xb6\xc1\x1d\x25\xc1\x52\x14\x47\xc5\xba\x02\x29\xc3\x0b\x8b\x1f\x5b\xa3\xc3\x30\x88\xa3\xe5\x34\x4b\xaa\x3c\x8e\x71\x30\xe8\xf5\x4f\x77\xab\x18\x2c\xb4\x21\xfa\x2e\x08\xe3\xf7\xec\x10\x69\x29\x8b\xcc\x32\x91\x26\xad\xb1\x87\x85\x61\xb1\x87\xaa\x68\x08\xd7\x40\x05\xfb\xe5\x70\xe3\x5c\x11\x4b\xf6\x9c\xf6\xce\x9a\x9a\x38\x3d\x9e\xd3\x8d\x6e\xd0\xe2\xac\x17\xa7\xab\xd0\xec\x01\xad\x02\x1f\xcd\x8f\x2d\xba\xa5\x9f\x8e\xb3\x21\x60\x80\xaf\x70\x78\xfd\x96\x9a\xf3\xb0\x9b\x26\x16\xe9\x05\xc5\x4b\xc8\xd3\x30\x0a\xe2\x28\x2f\x76\xe2\x8a\x80\xc6\x01\x30\x91\xe0\x37\x94\x79\x12\x47\x59\xc6\xb7\x57\xbf\x75\x73\x07\xc6\x2e\xc8\xba\xdf\xc6\x2f\x13\x55\x36\x29\x13\x7a\xa6\x37\x0e\x8b\x68\xc9\x22\x06\x2c\x3e\x4a\x81\xa5\xec\x94\x67\x18\xac\x07\x09\x50\xeb\x32\xe0\x77\x40\x77\x88\x73\x8b\xac\x9c\x02\xf5\x5e\x6f\x64\xa5\x55\x61\x97\x16\x45\xfa\xe9\x8c\x65\xe7\x30\x37\x8a\x46\x66\x4a\xfd\x1b\x44\xb0\x30\x3e\xbe\xa1\xe1\x9d\x9f\xb4\xe9\x71\x7a\x41\xbe\xb2\x65\xe0\x7f\xd2\x77\xb5\xed\xc9\x72\x17\xff\xed\xd1\x29\x07\xf9\x7b\xb7\xec\xfc\x8a\xe8\xd5\x7c\xe8\x4f\x1d\xfc\x3b\x5f\xe1\x9f\xf5\xbb\xfa\x5c\x2c\x52\xf2\xd4\xb1\xa2\xcb\x8b\x12\x38\xaf\x2a\x2d\x54\x9c\x09\xd6\x77\x75\x61\x4b\x85\xcd\x2c\x26\xea\x92\x50\x03\xe6\xef\xfd\xa5\xae\xee\xad\xc4\xc1\x3a\x23\xa8\x44\x1e\x40\x45\xd0\x26\x20\x88\x4c\x26\xa3\xd4\x61\x7e\x85\x37\xab\x38\xb4\x8a\x94\x94\x17\xd9\x38\x24\x6d\x0b\xa5\xaa\xf9\x03\xd4\xed\x18\xb7\x83\x41\xc3\x23\xff\x89\x05\x24\x0f\x52\x33\x0c\xdc\x75\x15\x5b\x11\x87\x73\xbb\xa3\x3c\x41\xc2\x34\x4e\x87\x4b\x51\x30\xa5\x7a\x4e\xdf\xf7\x1d\x6d\xf9\xa2\xd2\xe0\xbc\xaa\xd5\x41\xfa\x01\xf5\xc3\x44\x5a\x5c\xeb\x85\x33\xcd\x18\xcd\xbd\xb3\x2d\x8a\x4a\x5e\xd0\x5b\x35\x59\x11\xe5\x5b\x24\x2d\x4b\x2d\x69\x69\x43\x15\x09\x69\xaf\x46\x79\x2d\x55\xbf\xec\xab\xc5\xa5\x0d\xba\xfe\xf6\x7f\xfa\xb7\xe9\xfc\x40\x23\x06\x9e\xe6\xd8\x9d\xec\xcb\x26\xc0\x64\xcd\x7e\x86\xb8\x42\xb5\xc6\x98\x06\x81\xb6\x94\x70\x22\x9e\x54\x1a\x3a\x3d\x93\xed\x76\x91\xe4\x0d\x8c\x28\xb0\x52\xa0\x14\x88\x48\x7b\x96\x66\x4e\xe8\x9d\x30\xa0\x0c\x55\xe0\x9e\x89\xc3\xd7\x6e\x00\x76\x8f\xaf\x3a\x03\xb7\x3e\x69\xeb\x74\x8e\x08\xf0\xfd\x78\x63\xda\xf9\xa2\x17\x2c\xa5\xe3\x82\x60\x8c\x88\x4d\xd3\xd4\x02\x40\x82\xb5\xad\x6b\xdb\x36\xbf\xbe\x77\xe2\x16\xac\x19\x8e\xe2\x74\x1d\x8b\x02\xf3\xaf\xbb\x4a\xad\xf2\xae\xff\x5c\xad\x65\x15\xe5\x39\x24\x79\xb4\x4a\x99\xd2\x03\x6a\x4e\x1c\x5f\x21\xb4\xae\x15\x86\x14\xec\xdd\xeb\x6a\x35\xbd\x5e\xeb\xf4\x06\x7d\x06\x2b\x23\x63\xfc\xb6\xa6\x43\xfe\xa0\x54\x6e\xcf\xdf\x56\x46\xc4\x53\xa0\x43\x8a\xf6\x9a\x5b\xd5\x8f\x35\xc8\x6a\x04\x2f\xcd\x8b\x20\xb3\x99\x87\x78\xa2\xd5\x08\x6f\x4f\x6b\xe7\xdc\x68\x29\xc8\x77\x53\xac\x45\x37\xf5\x82\x66\x26\x9d\x52\x9c\xff\x3b\x48\xcf\xf9\xaf\xb0\xb4\x70\x68\xfc\x84\x73\x62\x7e\x86\x1d\x8b\xdf\xbf\xe1\x6f\xff\x9c\x7d\x89\x83\x27\x6e\x68\x63\xb6\x20\xcf\x7f\xb9\xe3\x7e\xd6\xbd\xda\x9c\xd8\xdf\xab\x90\xac\x69\x5c\xbc\x46\x76\xd7\xee\xb6\xf8\x35\xd1\x62\xb7\x2b\x4c\x52\x3c\xab\x06\x73\xa7\x71\x75\x91\x01\x83\xbc\x2d\xbc\x17\x7c\x77\xf0\x8b\x9e\x23\x15\x62\xb4\xe1\xfe\xff\x20\x21\x21\xf1\xbd\x81\xd6\x24\x62\x12\xbb\x33\xd0\x1d\xf9\xcd\xff\xdf\x84\x0a\x75\x1c\x6b\xd3\x64\xca\x87\xbf\xba\x80\xb5\x2e\x3d\x57\xdb\x75\xff\xa7\x5e\x57\x61\x16\xf6\x52\x69\x82\x90\x76\x03\xed\x7c\x9c\xca\x1f\x94\xd6\x30\xef\xaf\x3d\x3f\x71\xc5\xe5\xcc\xa4\xb3\x6f\x4e\xd0\x44\x82\x27\x90\x50\xb8\x9c\x05\x49\x38\x88\x72\x29\xe8\x44\x7d\xaa\xa3\x54\xa9\x5a\x8c\xa3\xc2\x81\x09\x46\x1d\xa7\x7b\x73\x56\x19\x47\x9d\x55\x49\xc0\x72\x14\x47\xa3\x28\x49\xf3\x99\xba\xbb\xe4\xfe\x79\x57\xc2\x69\x35\xa7\xea\x32\xb3\xe1\x48\xa9\x46\x53\xdb\xba\xb6\xcd\xc6\x68\xf7\x9d\xca\x1c\x77\x53\xa1\x84\x9f\xe8\xba\x23\xf9\xf1\x89\x02\x64\x30\x06\x83\x0a\xbd\x74\x6f\xd7\x19\x28\xb2\x7a\xa2\x48\x01\xd5\xe8\x40\x79\xf1\xac\x83\x74\x43\xf6\x02\x07\xf7\x03\x44\x3f\x66\x00\x29\x0d\x07\x9e\xc1\xa2\x07\xb1\x63\x52\xdd\x5c\x31\x40\xaf\xbe\x24\xc6\x41\xbb\x71\x3f\xd1\xa3\x9d\x9a\x50\xe1\x88\xf2\xf2\x9a\xef\xd8\xe8\x77\xb4\x70\xc1\x69\x6d\xa0\xd8\x99\x28\x64\xc5\xce\xae\x92\x8b\xba\x8f\x76\x1d\xde\xf9\x0c\xcf\xb6\x11\x55\xc1\x23\xe4\x6f\xf3\x0e\xad\x15\x74\x26\x37\xd0\x1d\xe1\xbf\x2a\xdd\xf6\x19\xa4\xab\x49\x50\x25\xb5\x53\xee\x22\x80\x92\x6e\x21\x2a\x87\x67\xe7\x37\xb5\x42\x57\x38\x48\xd3\x5c\xeb\xf6\x3e\x50\x92\x9f\x1c\xcb\x31\x9e\x3c\xd7\x62\x00\xf3\x8a\xd7\xcb\x82\x61\xa0\x94\x83\x3f\xd2\x7a\xed\xba\x43\x7d\xb3\x25\x77\x78\xa5\xda\xc3\x4e\x84\x0a\x09\xcc\x2d\x65\x6b\x74\xab\xa5\x43\xef\xa5\xcb\xcb\xf9\x20\x4d\x45\x3c\xc4\xb2\x21\xab\xaf\xca\x4f\xda\x58\xac\x40\xe5\x0b\xf7\x15\x6b\xf6\x9a\xea\x0c\x5f\x43\xd2\xc8\xa7\x67\x3e\x4a\x93\x3c\x92\x72\xe2\xf0\xac\x1d\x35\xa9\x21\xc7\x27\x6d\xe0\xff\xb5\x28\x5c\xb1\x26\xd7\x28\xaf\x51\x0f\xf3\x63\xdb\x0e\xea\x9b\xa4\xfa\xf5\x4c\x2c\x44\x2c\xbc\xa6\x11\x84\x37\x38\xe6\x22\x83\xfe\xbf\xb1\x50\x90\xf9\x42\x73\x0b\x71\x67\x4f\xab\x06\xc5\x20\xcd\x8b\x88\x15\xb0\x91\x63\x32\x50\x43\x9a\x32\x74\xc5\xd1\x46\x51\xca\xb7\xab\x26\xeb\xc5\xe9\x6a\xbe\xd2\x51\xd5\x56\xa9\x6b\xb2\x36\xf3\xbd\x22\x53\x36\xe3\x16\x53\x6a\x27\x47\xc7\x7d\x57\xe6\x2d\x45\xaf\x05\x59\x66\x50\x6b\x23\xdf\x60\x2a\x20\x3f\x51\x1c\xd8\xcc\x84\x69\x9f\x9c\x59\x3a\x0e\xe0\xf8\xa1\xef\xb2\x82\x0f\xed\xc5\x5c\x0e\xe2\xc2\x64\xf6\x3b\xe0\x5a\xff\xa9\xef\xa6\x53\x7f\xaa\x34\x72\x82\x9c\x4a\x9d\xc2\xd0\x51\x3d\x6f\xa1\x2f\x4e\x5c\xe0\xbc\x96\xd7\xb9\xeb\x3b\x85\xe7\x13\xa5\xeb\x0b\x5c\x51\xe8\xd4\x26\x2c\x7a\xff\xbc\x17\xac\x05\x2b\x9c\xe0\xe1\xbc\xf8\xe3\xd2\x65\xbd\x7f\xec\x3b\x19\x10\x71\x17\x64\x35\x8a\xba\x3e\x1d\x10\x25\xdb\xbb\x4a\x95\xf1\x5a\x2d\xe5\xe8\x45\xc1\x0e\xc7\xb4\xd8\x44\xc2\x59\xe3\xca\x63\x6b\xbe\x5d\x3a\xcc\x75\x87\xf2\x29\xd4\x18\xd3\x5d\x45\xb0\xb9\xa7\x8e\xed\x91\x29\x4c\x36\xad\xba\x6f\x37\x14\x68\xe3\x5e\xe9\x26\xa8\x9f\xe0\x4c\x10\x38\xaf\xb5\x1c\x08\x33\x56\x0d\xb1\x3e\x18\xce\x15\x04\x41\xdc\x3e\x51\x6a\x46\x48\x42\x50\x0c\xdd\x53\xd3\x71\x73\x94\xe6\x72\x14\xab\xf0\x51\xa8\xcc\xd0\x25\xfe\x36\xdd\x25\x84\xf1\x47\x2a\xc0\x2d\xa5\x69\x31\x40\xca\xc7\x44\x0b\xfa\x16\x42\xba\xf8\x34\xe0\x77\x3e\x08\x32\xe9\x6b\xa3\x2b\x7f\x53\x7b\x90\xde\x54\x98\x76\x11\x12\x81\x70\x32\xdb\x3f\x2b\x0a\xff\x89\xb2\x46\xb0\xdf\x82\x38\x9b\x9f\xf7\xe6\xe7\x0f\xee\xed\x7c\xf1\xd7\xf4\xc5\x14\x2d\x9c\x6d\x5a\x15\x11\x13\x11\xcc\xb6\x8f\x21\x1c\xc8\xea\xa3\x45\x86\x95\x82\x00\x8e\x6a\x19\xfc\x05\x1c\x04\x0f\x7d\x25\x37\xf0\x90\xe6\xce\xd6\x5a\x77\xd1\x09\xff\xd2\xc6\xb4\x1a\x02\xd6\x47\xeb\x9a\x32\x98\x7e\x13\x77\x08\x7f\x34\x85\xa3\x0d\x93\xd6\xed\x5d\x3d\x14\xfb\x48\x93\x21\xce\x34\x7a\xd3\xaf\xbe\xea\xe5\xc6\x10\xce\xb9\xe3\xe8\x1f\x27\x69\xd3\x0a\xb9\xe1\x19\xdb\xda\x21\x8a\x66\x9a\xd5\x98\xae\x77\x74\x3b\xf9\x4e\xe3\x03\x5e\xa4\x25\x93\x91\x06\x86\x3a\x99\xcf\x93\x14\xa0\xfc\xde\x4f\x95\xc5\x8c\x3b\xaa\x35\xf9\x63\x25\xe0\xf3\x63\x85\xbc\x1c\x8d\x63\x6a\x92\x5b\x7c\x2a\x36\x1c\x7a\x7b\xd4\x9f\xd8\xbc\xd8\x26\xda\x5f\x64\x56\xf4\x48\x44\x7b\xb4\xc7\x90\x9a\x2e\x98\xa3\x23\x93\xe4\x06\xdd\x1c\xdc\x8b\x1b\x1a\x49\x78\x5c\x39\xb1\x9c\x29\x9f\x50\xe6\x32\x3d\x76\xbb\x40\xf8\x3f\xa1\x18\xa3\x27\x6a\x36\x8e\x79\x11\xc4\xb1\x61\xe3\x37\x06\xdc\x29\xdd\xc1\xb3\x8a\x97\xdc\x27\x1b\x95\xf5\x1d\x94\x7f\x68\x6d\x7f\x20\x85\x99\x2f\x69\xff\xe1\x2b\x73\x4e\x2f\xb9\x4a\x99\xf8\xaf\x80\xcc\x93\x7f\xf9\x8c\x2a\xd1\x92\xe5\xac\x2a\xb7\x30\x43\xde\x3f\xdf\xaa\x22\xde\x14\x06\xf3\xa2\x3c\x8d\x83\x42\x20\xc4\xd6\xf2\xdf\x62\x6c\xfe\x85\x36\xd7\x3f\xaf\xa0\xe3\xa3\x20\x4e\x87\x51\x92\x76\x1c\x65\x95\xcb\x1e\x7e\xd2\x08\xeb\x0b\x2f\x1f\xf4\x96\x83\x28\x9b\x72\x53\xb5\xcb\x8e\x6b\xf0\xbf\x9e\xde\x5a\xd9\xd8\xce\xca\xb8\x88\xe0\x44\x40\xdf\x11\x7f\xc0\x06\x12\xfc\xc4\x36\x07\xfa\x59\xb0\x6a\xd6\x49\x33\xd7\xda\xef\xdd\x50\x1e\x62\x37\x6a\xe1\x3f\x8e\xc2\xa7\x69\x67\x23\x9f\xbe\xe1\xab\xb2\xe0\x13\x6c\x67\x7e\xe2\xeb\x53\x94\xee\x01\xaf\xd3\x89\x82\x02\x9e\x03\x02\xd4\x4a\xfb\x54\x37\x14\xc7\x38\xbc\x5c\xac\x6d\xb3\x3a\x85\x69\xb2\x2a\xd3\x3f\xfa\x7d\x80\xca\x33\xd7\x1d\x41\xea\x87\x38\x53\xd1\x5c\x81\x54\x09\x2a\xaa\x1f\xa9\x73\x74\xcf\xc4\x5d\xb2\x91\xc9\xf2\x71\xd0\x93\x7d\x82\xe4\xf9\x38\x72\x6c\x7e\x52\xa3\x8a\x25\x2f\x14\x4f\xd2\x3f\xa2\x4c\xe0\xfe\x0d\xa2\xd4\xe3\x93\x6a\x31\x72\x87\x8c\x3e\x9b\xad\xd7\xf1\x0d\xa9\xf7\xb4\xf0\xf3\x5d\x47\xfd\x3d\xc7\x60\x64\x1c\x91\x17\x4a\x2d\xe9\x0d\xd0\x9e\x5d\xe5\x5f\x3a\x52\x97\xc0\x93\x38\x46\x17\x42\x86\x27\xd5\xa5\x57\x1d\xb5\x57\x2c\x67\xa0\x65\xce\x37\x32\xbd\x28\x28\x32\x56\x10\x13\x50\x51\x47\xb9\xe6\xba\x22\x78\xc8\xc8\x6f\xf6\x86\xa3\xe4\x48\x7c\xe2\xb6\xe6\xeb\xf0\x41\x8a\x52\xac\x2b\xac\xf0\x4e\x57\x2d\xf7\xce\x44\x8e\xee\x2c\x58\x67\xee\x29\x86\x50\xd7\x15\xe4\xe3\xba\x62\x50\x0f\xd3\x22\xcd\xd2\x38\x00\x1c\x4b\x52\x5c\x07\xc1\xba\x46\xe7\x0c\xba\x06\xdb\xba\xae\x1b\xb3\x36\x30\x99\xa1\x86\x4f\xde\xc1\x85\x96\x61\x17\x85\x16\x19\x83\x3d\xaf\xc2\x54\x61\xe2\x38\xea\x9b\x24\x34\x33\xae\x05\xcc\xe3\x13\x11\x11\xa7\x2b\xab\xc8\x4f\x0b\x96\x3b\x4a\xcb\x5d\x98\x50\xcf\x2a\x3e\xda\x28\xcd\xa3\x22\xcd\xd6\x75\xb4\x7f\xa4\x40\xb3\x8f\x1a\xf3\xb3\xf9\xf9\x83\x5e\xc4\x8b\x12\xd9\xd4\x65\xac\x22\x7e\xd2\x66\x25\x94\x57\xe7\x10\x33\xfa\x00\x65\xfa\x6d\x5e\x52\x52\x5c\xd1\xc7\xf3\x6c\x50\xe1\x64\x32\xd3\x1b\x87\x06\xa9\x05\x70\x71\x37\x54\x6a\xc1\x5d\x6f\x49\xe3\x5b\x71\x6c\x71\xc0\xee\x50\x38\x94\x1f\xe1\x8a\xf1\x93\xb2\xae\xb6\x25\x72\x09\xa8\x88\x66\x30\x79\xe5\x27\x5d\x35\x29\x18\x8f\x46\xb1\x95\x11\x62\x58\xa9\x12\x52\xb9\xd8\xda\x18\x1f\x05\xb9\x0c\xf2\x44\x67\x5d\x11\x0b\x1f\xe0\xe4\x94\xf4\xf4\x53\x81\x0a\xab\x11\x84\x4d\x54\xfb\x02\xbf\x48\x7a\x19\x6d\xd5\x50\xba\xbc\x5c\x1d\xa2\x1d\xa7\xdb\x73\x41\x49\xf5\x5e\xf0\xb5\xd0\x6c\x52\xb0\x31\x2c\xa6\x75\x3f\xd0\x83\x85\xfb\xa5\xf3\x2c\x85\xba\x6e\x4d\x86\x00\x49\x17\x1a\xed\xfc\x6a\x0b\xf0\xc9\x83\xa4\x97\xa1\xbf\x2c\x17\xc9\x61\x52\xcf\xea\x29\x50\x2b\x21\x34\xe3\xe3\xfc\x95\x7f\x87\xe7\xe2\xc8\xa4\xa3\xd8\x3c\x4f\x67\x80\x48\xc9\xd0\x96\x12\x20\x3c\xbd\x07\x33\x99\x10\xa2\x58\xaf\x9f\x7e\x0e\xd0\x2d\x77\xfc\x1a\x45\x83\x0e\x04\x24\xa7\x1b\x0a\x6e\xbb\xad\xdb\x39\x22\xbd\x5a\xb8\x80\x5b\x4e\x23\x45\x03\xab\x1d\x3c\x77\x88\xcf\xe4\x5d\xd4\x27\xc6\x67\x9c\xe5\xf5\x2f\xfc\xd6\x2a\x70\x31\xf9\x07\xe7\x09\x7f\x20\xe2\x3d\xb6\xf1\x71\x00\xf1\xf1\x53\x20\xe9\x82\x30\x70\x9f\x8e\x36\x1c\x27\xbb\xba\x8a\x07\xb6\x7b\xf2\xa4\x83\x04\xaf\x46\x3c\x65\x6f\x73\x0d\xd2\x1b\x61\xdd\x24\x3b\xaa\xa5\x62\x5b\x0b\x0e\x73\x80\xc4\x9e\xfd\x6d\x95\x60\xcf\x27\x0a\x63\x88\x00\x28\xad\x08\xd7\x68\x1f\x46\x45\xc6\x93\x25\x74\xef\x7f\x8a\xab\x26\xc9\xae\x5b\x1b\x1b\x8a\x9f\x17\x25\x3d\x33\x32\x49\x8f\x30\x5f\x0e\x63\xee\x2b\x8c\xd0\x1d\x2c\x1f\x71\xb7\xc2\x85\xb5\x79\xc3\xfc\x3c\x5f\xbe\x37\x4a\x75\x1c\x9f\x2d\x1f\x73\xd0\x1c\xce\x75\x05\x94\x56\xc7\xab\xb9\x60\xf4\x55\xb3\x66\x62\x96\xed\xc0\xfa\xc6\x36\xe2\xc7\xba\xa2\x3d\x3a\x88\x96\x22\x16\xc0\xb7\x63\xe5\xff\x8e\x8e\x27\x7e\xdc\x36\x55\x5f\xce\x82\xfe\xd0\x24\xb6\xb7\x2d\x00\x6c\x07\xc5\xbc\x6b\xb3\xa4\xe5\x38\x0a\x57\x5c\xf3\x48\x9c\x20\x68\xe5\xf2\x93\x46\x75\x37\x3f\x5f\x9f\x03\x58\xec\x0d\x93\xf9\xf9\x89\x62\x10\x65\x26\x34\x49\x11\xaf\x93\x8c\x2c\xde\xf6\x2a\xf6\x90\x60\xa1\xe8\xca\xb1\x7d\x23\x5f\x39\xa4\xe9\x7f\xea\x3b\x5e\xe3\x47\x4a\x9d\xe2\x43\x6c\x0f\x7e\x33\xba\x24\x98\xaf\x5c\xd4\xce\xb9\x10\x57\xe1\x78\x8c\xc8\xcf\xf0\x44\x7e\xa2\xa0\x4a\x4b\xe3\xcc\x04\x63\xf4\x83\xb1\xee\x7f\xbf\x54\x9b\xe0\xf7\xfd\x9a\xf3\x90\xa5\x5f\x8a\xfb\x8e\x42\xdb\xde\xda\x4a\x88\x3a\x3c\x3b\xef\x7d\x65\x8e\xca\x67\x44\x37\x90\x4d\xf9\x71\xa9\x0f\xaa\xe5\x34\x1b\xe6\xd3\x0a\x97\x7d\x59\x3b\xe6\x00\x8a\x28\xde\x20\x0e\x15\x73\xb9\xcd\x12\xc5\x0c\x47\x83\x20\x8f\xb8\x6c\x43\x73\x14\x4b\x8d\x1f\x37\xee\xec\xe1\xd9\x05\xcf\xc4\xd1\x50\x63\x32\x18\x0d\xa4\xe8\x2b\x35\x19\xbe\xa1\xc9\xaa\x74\x62\x1d\xa7\xb2\x15\xb6\x74\xb3\xe6\x77\x4a\x87\x8e\xbf\xe2\x3b\xf1\x6b\xc2\xb1\xd4\x7d\x96\x55\x54\xb8\x52\x0b\x25\xbd\x28\xd8\xe3\xa6\xbf\xc7\x70\x4e\x58\x91\x9d\xfd\xf3\x56\x91\x9d\x3e\x17\xc1\xf0\x37\x7c\x75\xee\x4e\x75\x9d\xaa\xe1\xed\xd2\x9d\x7a\xdb\x6b\x80\x27\xe7\xb8\xf9\xed\x52\x4f\x2a\xef\xb4\xa9\xe0\xb1\x55\x88\x83\x79\x5f\xf2\xb5\x27\xac\x92\xf8\x89\x92\x65\x93\x4b\x3d\x66\xeb\x8f\xcb\xca\x16\xfc\x72\xf3\xa8\x7f\xf9\xa0\x97\x91\x28\x98\x12\x3f\x3f\xaf\xc5\xcf\xcf\xbb\x43\x31\x4c\x33\xc3\xa0\x43\x1c\x17\xb7\x6a\x3a\x57\xf4\x22\xf4\xb5\xde\x6b\x63\x61\x66\x63\xe0\x08\xaa\xd7\xdb\x3b\x31\xef\x48\xd2\x2d\x3c\xf9\x22\x0b\xa2\x04\x64\xe1\x83\x4e\x15\xdc\xae\xac\x2b\xfe\x73\x5a\x4f\x21\x8f\x7a\xb6\xad\xb8\x60\x41\x1e\x0a\xf0\x51\xca\xf9\x92\x9b\x30\x4d\x04\x9a\x87\x7f\x3c\xa3\xfe\xf0\x8c\x6a\x49\x65\xe3\x24\x5d\x5e\xa6\xab\x83\xa6\x27\x24\x58\xf9\xb1\x62\xcd\xff\x97\xff\xe1\xac\x6a\x56\x6f\xa8\x66\xf5\x86\xd2\xb4\x5b\x49\x47\x23\x13\x13\x9a\x40\xaa\x15\x3a\x40\xd9\xfc\x59\x39\xc4\xfe\x1f\x77\x54\x64\x0b\xc2\xd0\x8c\x0a\x51\x30\xc7\x02\xfb\xd8\xd7\x5d\xa5\xd2\x41\x69\xe1\xb7\x2e\xdd\xa6\xa7\x55\xfe\x1c\x07\xeb\x8c\x92\x94\x46\x46\xc7\x29\x11\xb7\xba\x15\x05\xfd\xcc\x48\xad\x8e\xb8\xf9\x53\xd5\x2c\x7e\xa4\x8b\xa8\x4e\xa3\xb7\x7d\xe0\xc0\xa2\x17\x9b\x28\x1f\xb3\x78\x8f\xe5\x39\xda\x4b\x73\xde\xf6\x1f\xa3\x3c\x08\x50\x43\xb1\x05\xbd\x3e\x26\x2f\x36\x4a\xfb\xc3\xb3\x5e\x18\xa7\xb9\x99\x76\x4a\xcc\x0f\xa8\x54\xc4\x21\xfb\xe7\xd8\xbb\x16\x5e\x6e\x0d\xdb\x9b\x73\xe3\xf9\x79\x2f\x4f\xe3\xa8\x17\x64\x51\xc1\x85\x85\x74\xcf\x75\x5b\xfd\x69\xdd\x00\x8e\xa3\x7c\xb0\xab\xe6\x2a\xa5\x00\xfc\xd7\x55\x4f\xef\x72\x59\x37\xa2\x72\x2e\xf2\xc7\x4b\xc5\x6c\x7a\xbc\xab\xcd\xd4\xef\x2b\x61\xd6\xbb\xaa\x4b\x44\xaa\x18\x2e\xa5\x83\x50\x3d\x3f\xd6\x10\x81\x51\x16\x0c\xa6\x9c\xe5\x19\x07\x0c\xd4\x78\x17\x55\x1a\xf4\x8f\x34\xac\x31\xcc\xd2\x3c\xdf\x53\x5d\x28\x66\x58\xd2\xbb\x03\xe7\x71\x9e\x8e\x11\xb1\xcd\x50\x26\x2b\xdf\xf4\x15\xd7\xfe\x1c\x9d\x8e\x80\x65\xbe\x8d\xa4\x14\x25\xf8\x4d\x54\x0b\x18\x53\x01\x10\x51\x1b\x56\xa0\x17\xf2\x40\x5d\x62\xb8\xbc\x87\xca\x24\xeb\x27\x9a\xe4\xf4\x13\x0b\x39\x32\xab\x26\x5b\xa7\x12\xd3\x0a\x91\xce\x1d\xe2\xf5\xf8\x0b\x5d\xd7\xf6\x99\x99\x38\x2d\xac\xab\xda\x62\x62\xf7\xc4\x11\x65\x0a\x33\x1c\xa5\x59\x90\xad\xb3\x81\x9a\x26\xee\xe1\xc7\x3f\xf2\x95\x5e\x11\x93\x5d\xc4\x48\xc7\xe5\xaa\x8f\xea\xf0\xa8\x67\xb4\x0d\x41\x2a\xc4\x10\xf1\xee\xbe\xa4\x3c\x83\x2f\x35\x8c\xdf\x3e\xef\x85\x63\x50\x29\x45\xb2\xa9\xee\x0c\x62\xbb\x79\x0f\xf5\xc7\x10\xb6\x30\x29\xa6\x1d\x14\xea\x2c\xbe\x38\x3f\xa1\x08\x66\x15\xf2\x9d\xe3\xb6\x6a\x1e\xa6\xe3\x22\x4c\x87\xb5\x2a\xe6\x32\x6e\xb6\xe8\x89\x2a\x66\x0d\xb5\xdf\x9f\xa3\xca\x45\x30\x37\xd5\xe5\xb6\xf2\x02\xfb\x64\x4c\x3c\xdd\x45\xff\xa0\x8e\xd3\x41\xd4\xfa\xb1\xf2\xbc\xb8\xe5\x6b\x91\x37\x8c\xe1\xf1\x0e\xdb\x09\x11\x40\xf7\x7a\xe7\x5e\x12\x31\x00\xe4\x8f\x25\xbb\x90\xa7\x7d\x83\x22\x01\xa8\x04\xd7\x7c\xa5\x49\x3d\xc1\xe2\x15\x5c\x26\x5d\x13\xc6\xd1\x10\x65\x5a\xc9\x8b\xc8\x60\xef\x22\xad\x28\xb4\x17\x4a\xb4\xeb\x10\x2f\x79\xc8\x83\x0d\xfc\x89\xcd\x38\x98\xdd\x92\x4f\xab\x5e\xc7\x05\x4c\x09\x64\x0c\x8f\x5f\x8d\xeb\xc8\x5a\x41\x42\xd8\xb5\x1a\x6f\x6b\x51\x9e\xd3\xba\x46\x9d\xf4\x99\xae\x16\x00\xfb\xae\x16\x61\xc1\xdc\x56\x1e\x2b\x91\x9b\xc7\x5b\x35\x90\x46\xc1\x3a\x79\x5f\xe3\x16\x30\x0e\x03\x44\xb9\x6b\x8a\x86\xc5\x13\x71\xd6\x28\xfb\x54\xc3\xb4\x91\x49\x82\xb8\x00\x33\x11\x71\xe3\x9e\x1a\x61\xd7\x1c\x06\x4e\xb5\xe0\xfc\xbc\xaf\x8d\x23\xf6\x82\xc2\xb0\x0c\xc7\x26\x3f\x6e\x81\x1d\x85\x41\x2e\x1a\x58\x62\x10\xab\xc4\x23\x2e\x35\x82\xfb\xfe\x79\x6f\x34\x88\xe2\x68\x34\x8a\x12\x0c\xce\x45\x02\xaf\x63\x1d\x5b\xfe\x8d\xaf\x24\x7e\xce\x2a\x6e\x56\x16\x24\xbd\x74\x48\xdf\x0e\x43\xc4\x8f\x7d\xc7\x5d\xfc\x58\x39\x03\xc0\xd2\xcf\x24\xb4\xb5\xb5\x50\x96\x06\xc3\xb4\x0d\x1d\x47\x59\x94\x66\x9d\x6a\x7f\x68\x29\x0e\x7e\xdc\xd2\x3c\x3f\xe8\x15\x83\x74\xdc\x1f\x14\xda\xb1\x9e\xe5\xb3\xf9\x49\x1b\xff\xa2\x37\x5e\x8a\xd2\x71\x5e\x27\xc9\x39\xcd\x48\x3b\x98\xc5\xdd\xb4\xc3\x0e\x24\x80\xbc\x42\xf9\x49\x0b\x55\xc3\xab\x92\xa9\x74\x18\x49\x6e\x87\x48\x05\xbf\x2c\x7e\xac\x0c\xdb\xa3\x61\x10\xef\xc2\x62\x16\xa3\x7e\x07\xcd\xc7\x9c\x12\xd3\x9e\x67\x81\xbc\x90\xde\x76\x15\x50\xb0\x1a\x99\x13\x27\xab\x4a\xbb\xce\x94\xaa\xb9\x74\xb2\x81\x84\xae\x6a\xd6\x71\xd2\x93\x74\x06\xcd\x6d\x9c\xd6\x88\x08\x1f\x22\x22\xf0\x71\xd6\x70\x30\x7f\xd1\x5b\x36\x41\x86\xec\x12\xc5\x27\x79\x9e\xca\xe3\xc6\xb0\x7d\xdf\x3e\x6f\x2d\x8b\x8a\x2d\x84\xbc\x0b\x4a\xd6\xfd\x82\x4a\x34\xfb\x04\x5c\x9b\xa6\xd9\x0b\xab\x00\xf9\xae\x13\x78\x4e\x39\xd4\xb0\x6c\x3f\x3f\xb1\x77\x2f\x1c\x98\x61\x14\x06\xb1\x80\xa4\x71\x77\x67\xba\x8a\xfd\xc1\x80\x0f\xf4\xdc\xb7\x4f\x04\xf3\x9e\xac\x5b\xed\x55\xfc\x76\x56\x61\xe1\x27\x5b\xcb\xcc\x85\xb9\x43\x55\x99\x49\xd7\x41\xd0\xd7\x55\x48\x11\x33\x07\xb9\xd9\x6b\x91\x1b\xf2\xa3\x83\xbe\x8d\xa2\x37\x3f\xee\x6e\xdd\x10\x2f\xbc\xe0\xe5\x83\x74\x8d\x3b\xaf\x82\x3d\xa4\xaf\x8f\x8e\xde\x4d\x5f\xa5\x9b\x6d\xb8\xce\x05\x6f\x94\xa5\x43\x8b\x70\x7d\x45\x93\x10\xc4\x5e\x4d\xe7\xec\x5f\xc8\x70\xb8\x22\x15\xe7\x88\x2e\x49\x18\x2e\x88\xec\xf6\xad\x11\x70\xff\xbc\x37\x58\x1f\xa5\xfd\x78\x3d\x34\xc3\x08\x7d\x7d\xeb\x7d\x64\x07\xa4\x17\x6b\x10\xb8\x75\xd0\xdc\x91\xaa\x3c\x52\x49\x15\x8f\x6e\x6c\x4b\xfe\xf0\xac\x6d\x56\x3b\x70\xd0\x8f\xb0\x3a\x45\xe3\x56\x89\x08\x86\xe1\x38\x2f\xd2\x21\xa8\x3c\x2f\xf1\xd4\x07\x21\x8e\x1f\xfb\x6e\x0e\x7f\x93\x0e\x47\x7e\xdc\x58\xe3\xfb\xe7\xbd\xdc\x1c\x9d\x52\x04\x32\x56\x9b\x44\xca\x01\x4b\x7a\x1c\x93\x8f\x77\x5d\x59\x13\x8e\xb3\x22\x42\x80\xc1\x81\xf8\xbe\x4e\x6f\xdf\xf7\x1f\x77\xc9\x42\x80\x02\xc4\x9a\x0a\x2a\x92\x5c\xb3\x1b\xfc\x92\x17\xf4\x7a\x99\xc9\x39\xb4\xb0\xa4\x9e\x22\x44\xb5\x86\xd5\x95\x24\x1d\x2d\x77\x94\x84\xd9\x9b\xda\xac\xe7\xcd\xe6\x9c\x90\xf4\x7e\x92\x5e\x47\xb1\x8f\xae\xd4\xdb\xaa\xee\x36\x7e\xd9\x64\x4c\x84\xc5\xa1\xbd\xa7\x4b\x4c\x21\xc9\xe0\xe8\x83\xb8\x3c\x2e\x6b\xd2\x14\xee\x86\xf5\xc7\x41\x16\x24\x85\x61\x77\x68\xa9\x71\x3a\xd6\xf4\xbe\xbd\x27\x4f\x46\x3f\xec\x79\xae\x4e\x98\xb9\x4f\x3d\x61\x5e\x78\xc1\x1b\x45\x71\x5a\x10\x3b\x94\x0b\x23\xac\x34\x1c\xf8\xe8\x4b\x23\xfd\xde\xf0\xdd\xa0\x7c\xcd\xe4\xc5\x9e\x6a\x95\xe0\xcf\xfe\x9c\xb7\x02\x3e\xe6\x5b\xbe\x92\x8d\x61\xec\x0d\xfe\xe5\x7a\xb9\xd5\x75\xf7\x25\xfe\xf1\x17\x54\x47\x6d\x3b\xac\xdb\xac\x9f\xb2\xf3\x9e\x3a\xaf\xd4\x7c\xa7\xbb\x4f\xaa\xb4\x79\xdc\xcf\x77\x38\xef\xf5\x13\xaa\x3e\x7a\x03\x57\x80\xd5\x22\x70\xe0\x5a\x3b\x6f\x8b\x7f\xf9\xba\xaf\xd6\xf0\x45\x25\x60\xde\x33\x61\x94\x47\xab\x28\x4f\xb1\x27\xa6\xa8\x40\xe1\xc7\x93\xc7\x1d\xa2\x25\xe9\x3d\x46\x6f\x2f\x9d\x7a\xc7\x1e\xba\x8e\xbc\x90\xc9\xa1\xa5\x73\xab\xbe\xaf\xcd\xe0\x3e\x2a\x5d\xd5\x7f\xb3\x74\x1e\x56\x1d\x4a\x63\x59\xf1\xae\x74\x8b\xe0\xf7\x90\xf7\x0a\xe5\x94\x7e\x01\x5b\x8a\x34\x18\xb6\x00\x3f\x0f\x87\x51\x61\x1b\x6a\xb6\x0b\x65\xfb\x02\x4d\xad\xe2\xaa\x8a\x0e\x46\x51\x51\x6f\xb5\xab\x82\xe7\x82\x4a\x87\x96\x02\x52\x27\x70\x89\xc3\x19\xdf\x25\x14\x67\x4a\xeb\x63\xc4\x76\xf3\x48\x99\x3b\x13\xdb\x96\xfb\xc1\xcf\x75\x9d\x19\xd3\xb7\x94\xe8\xd8\x39\xdc\x36\x84\xaa\x9d\x93\x86\x8d\x34\xf5\xa8\x62\x13\xe4\xb8\x4d\x38\x18\x2e\x29\xb6\xf4\xa5\x76\xeb\xf9\x5e\x14\x5a\xe7\x25\xc1\xc3\x76\xac\xba\x31\x4d\x11\x04\x7f\x61\xb2\xe2\xb5\x8e\xd2\xf7\x61\xfd\x27\xd9\x8d\x0e\x8e\xd6\x4f\x33\x93\xe4\x85\x89\x92\x0e\x6d\x7b\x2e\x90\xb1\xed\xa5\x5a\xde\x63\xdf\xf8\xd5\xdd\x54\x15\xd5\x86\xc9\xd6\x8b\xd9\x41\x4e\xef\x29\x8f\x47\x30\x79\x91\xe8\x3f\xde\xa5\x3a\x08\x39\xeb\x1d\x2a\xa4\xf0\x8b\x1f\x52\xb9\x82\x33\x82\xa5\x9b\xf8\xd5\xfa\x5c\xc8\xf3\xa8\x9f\x0c\x4d\x52\x4c\xb9\x4a\x10\xa6\xb3\x16\x05\x6d\xab\xe2\x26\xe4\xa7\x5a\x53\x6b\x83\xa8\x88\x0d\xda\x8f\x22\xd0\x57\x53\xee\x7b\x5a\x59\xd2\x67\x6b\x11\xdb\x8e\xb4\x8a\x8c\x38\xe8\x6b\xcf\x84\x66\x54\xc8\xb6\x43\x24\xb9\xac\xd5\xa8\x2e\x2b\x30\x46\x38\xc8\xa2\xbc\x88\x82\x84\x33\x14\xe1\x00\xd5\x62\xab\x0b\x16\xcb\x41\x58\xa4\x1d\x27\x03\x89\x75\x22\xf5\x81\x0b\xe3\x4b\x29\xce\x6c\x2b\xab\xe5\xbc\x06\x6d\x9b\x30\x4c\xab\x6a\x0e\x53\x50\x76\x67\x41\xf0\x43\xf7\x83\xc5\xcd\x81\x27\xf8\x49\x6b\x3a\x52\x95\xe2\x71\x9a\xd7\x35\x5a\xcf\xea\x51\xea\x59\x25\xf5\x39\x10\x63\x70\xf1\x10\x76\x43\xc7\xa6\x07\xc4\x81\x03\x5e\x48\x88\xdc\x4e\xcd\x86\x53\x77\xc1\xdb\x9c\xb4\xc2\x34\xc9\x8b\x20\x81\x04\x12\x43\xfd\x7c\x0d\xfb\x73\x0a\x74\xd9\xc8\x14\x5b\x50\x9a\x53\x13\x77\x7b\xa7\x94\x5b\x78\x16\x24\x2b\xe8\x0c\x33\xfb\xa4\x74\xdd\xa3\x6d\x5d\xd7\x6f\xbf\xa9\xe5\xf8\xd3\x38\x0e\xb2\x5d\xae\xbc\xe2\x6e\x22\xca\xeb\x0f\x10\x53\x71\x83\xef\x23\x14\xb2\x91\x21\xce\x0c\x31\x8a\x72\xcd\xb6\x19\xc2\x49\x5a\xa5\xb3\x6a\xed\xe1\x28\xd8\x35\xd9\x3a\xa1\x26\xb9\xd7\x3c\x5d\x35\x99\x89\xfa\x09\xfa\x7e\x07\xc5\xf2\xae\x66\x7f\xd7\x42\xa7\x5c\x0a\x72\x72\x30\xfe\xd2\x11\x87\x2b\x51\x1a\x47\xd2\x09\x58\x0a\xc2\xc2\x64\x51\x40\x9a\xca\xc8\xda\xb6\x4d\x3a\xca\x2c\xa8\x5a\xa4\x10\x89\xe5\x89\x02\x22\xe0\x13\x0d\xa3\xc2\x23\x73\x87\x88\x19\xce\x75\x19\xdb\x51\x60\x77\x89\x37\x85\x56\x16\x1e\x0e\xd3\x64\xcd\x04\x71\x31\x98\x52\xa3\xc2\x1f\xd1\x72\x42\x1b\xf0\x2d\x9a\xc7\x0a\x57\xdc\xc9\x78\x8e\xb2\x28\x34\x4f\x29\x63\xf9\xab\x58\xe3\x56\x89\x62\xee\x10\xc7\x91\x0f\x55\x72\x33\xf3\x0c\xb7\x27\xd8\xe7\x49\xa1\x7e\xc1\xf3\x97\xbb\xd8\x51\x0e\xdc\x0e\xd8\xc9\xb6\xbe\xb8\x89\xa0\x1b\x58\xf7\x21\x27\xce\xc3\x53\x6b\xbc\xe4\x5a\xa9\x34\x7c\xf8\x5e\xa3\xaa\x79\x57\xd1\x69\x06\x06\x50\xe7\xea\xeb\x88\x04\x86\xdb\x52\xad\x30\xe0\x34\x5b\x8a\x0a\xe2\x6f\x09\x43\x8f\x7e\xa6\x75\x5f\xb3\x82\xb9\xf7\x95\x5e\x4c\x1e\x60\x3c\x29\x24\x1d\xed\x67\xd3\x58\x40\x55\x15\x4f\x46\x09\x4a\x04\x12\xba\x00\xe2\x17\xd6\x62\x9a\x3d\x0a\x32\xa1\x6d\x23\xb7\xbc\xa3\x5c\x7e\xef\xd8\x80\x35\x48\xc7\x71\x15\x29\x55\x12\x7a\x52\xfd\xe1\x49\xbc\x35\xef\x58\x68\x4f\x47\xaf\xb1\x47\xc7\x91\xb9\x43\x76\xc8\x58\xdd\x1b\x99\x31\xb6\xc8\x8a\xe7\xe9\x72\x91\x98\x5c\xff\x68\xfc\x02\x7e\x6c\x25\x27\x86\x41\x16\xa6\xb9\x0c\x8d\xd8\x4d\xad\x54\x43\x75\xd1\xee\x43\x27\xe6\x41\x9b\x74\xed\x52\x90\x65\x91\x01\x86\x0f\x79\xcc\x76\x68\x04\xa3\x8c\x84\x20\xad\xc0\x88\x9e\xaa\x35\x30\xb3\x75\x2d\x5d\x7b\x49\xc9\xb7\xe9\x83\xab\x10\x37\xb1\xea\x3b\x5a\x0d\x35\x1b\x95\xae\xa8\xbe\x74\x1c\x85\x80\xa6\x58\x6d\xaa\x4f\xb0\xf6\xf8\x49\x1d\xeb\x67\xb2\xa7\x3b\x96\xc9\xbb\x0d\xbc\x24\x9e\xe7\x63\x3c\x81\x4b\x0c\x5e\x83\x34\x5b\xaa\x4b\x2f\x94\xe4\x9a\xd8\x0a\x7d\x8e\xf8\xf6\xe1\xaa\x61\x2b\x9d\x87\x5a\xa3\x20\x05\x28\x5a\xb3\x9e\xa0\xef\x56\x3e\x77\x80\xd1\xf4\xb8\xa9\x6d\xbd\x7e\x97\x62\x01\xa6\x12\x6f\x60\x2b\xf2\x17\x00\x18\x85\xff\xa5\xd1\xbe\xa3\xf1\x50\xd4\xc3\x21\x6e\xc5\x31\xf7\xdb\xc7\x8a\xe4\x19\xf4\x56\xa3\xdc\x64\xf9\x4c\xf5\xcf\x22\x17\x37\xe5\x8c\x54\x7e\x44\x81\x45\x34\xe5\xf0\xe3\x10\xba\xd1\x9e\x91\xe6\xbe\x74\x16\xbe\x36\x4e\x2d\x82\x14\x61\xe3\xb1\xae\xbb\x88\x0c\x91\x14\x67\xa7\xad\xdf\xfb\xf3\x5e\x91\x16\x41\xcc\xc1\x54\x2c\xa8\x95\xf5\xca\x99\xc6\x9e\x7d\xd1\x0b\xd3\xbc\x18\x0f\x0d\xd4\xde\x90\xb6\xe2\xe8\x41\x3c\x82\x1d\xb0\x58\x7a\xed\xd5\x53\x49\x22\x54\xe5\x7b\xdc\x0f\x7c\xbd\x74\x95\x03\xb7\x9a\xd9\xff\x0b\x30\x71\x04\xcb\xeb\x7e\xe7\x8b\xbf\x66\xab\xac\xea\x3e\x02\x2e\xff\x53\xba\xc4\xca\x02\xfe\x15\xb1\x6c\xc7\x9d\xb7\xe8\xfd\x79\x09\xaf\xdb\xbb\x6e\x34\x30\x0a\x22\x18\x4f\x57\x87\x17\xde\x7c\xd3\x57\xfa\x15\x57\x18\x49\x29\xd3\xab\xc6\x49\xb4\x38\xeb\x2d\x47\x59\x5e\x50\x4c\xb5\xca\x60\xd6\xfc\xad\xf9\x8a\x17\xbd\xf1\x28\x0f\x03\x56\x2a\x43\xea\x7d\x5b\xa5\xe1\xb7\xdb\xdc\x21\x32\xb3\xec\x58\x9c\x62\x1c\xd4\xb1\xd2\x3a\xc7\x5b\x91\xbe\x98\x62\x2b\xab\xbc\x8e\x75\x04\x6a\x3a\xe5\x1d\x9e\x5d\xf0\x96\x4c\x1c\x99\x55\xf9\x18\x39\xe2\x14\x21\xf4\x94\xaf\xec\x34\xe2\x20\xcf\xb3\x34\x1d\xf2\xba\xc1\xb7\x3f\xa1\x35\x33\x4f\x28\xc3\x92\x17\xfe\xe3\xbf\xc9\x3d\x0b\xdc\xe8\x6d\xa4\x1d\xcd\x8f\x1b\x9d\xaf\xea\xdb\x0c\xd3\xcc\x4c\x29\xbd\xe1\x8b\x38\xfc\x50\x34\xdf\x42\x02\x84\x7a\xe4\x58\x8b\xee\xfe\x41\x2f\x4f\xc7\xc5\x80\x6e\x0b\x76\xce\x25\xe5\xd0\xdc\x66\xaa\x3a\xef\x8d\x32\xd3\x4f\x02\x3e\x56\x2c\x38\xc1\xe1\x2f\x1a\x57\x79\xee\x90\x97\x17\xc6\x8c\xa6\x5c\xd7\xf3\xc7\xd8\x38\xd6\x91\xd5\xd2\x64\xaf\xf8\x6a\xb0\x96\x05\x09\x81\x2a\x15\x48\xf5\x8a\x96\x4d\x69\xca\x7b\xce\xcf\xf3\x48\x92\x7a\x17\x2c\x24\x4f\xdb\x40\xcd\x68\xe6\x6c\x43\xc8\x65\x95\x61\x96\xae\x89\x1d\x83\xe0\x79\x55\xf2\x88\xdc\x44\x4c\x9e\xf6\x2a\x0a\x36\xd3\x97\x94\xb2\xcb\x96\xaf\xd8\x32\x5b\x88\x92\xa0\x67\xbe\x36\x16\xef\xf8\xb6\x9e\x56\x03\x38\xb5\xe0\x65\x26\xc8\xf3\x71\x26\x54\x0a\x90\x11\x98\x40\xc8\x4f\x6c\xa4\x1b\x05\xd9\x8a\xc9\xa6\xea\xf6\x1b\xf3\xf3\xdc\x15\x00\x05\x6d\x73\x7b\xd7\x9d\x66\xcc\x25\x9b\x76\x39\xec\x19\x3a\x53\xe4\x84\xa5\x10\xc3\x4f\x74\xc4\x38\xa3\x54\x1b\xc3\x41\x9a\x9b\xa4\xa3\xa6\x98\xc7\x94\x7a\xe9\xb1\x96\xba\x62\x81\xb3\x4e\xd6\x8b\xb1\x01\x72\x51\xcc\x61\x4e\xe9\xb7\x4f\x93\x7c\x8c\x8e\x03\xde\x11\x12\x4c\xfc\xb8\x4d\x57\x26\x33\xab\xd1\xaa\x04\x7c\x54\x18\x60\xce\x88\x44\xa7\x92\xfa\xb9\x5c\x3e\xa1\x45\x99\xd7\x3f\x3b\xe5\x5c\xd1\xfe\x12\x9d\x12\xb8\xfb\xff\x13\x31\xdc\x9d\xe8\xa0\x34\xfe\xb6\x29\x57\xd7\xc7\x08\xb7\x83\x32\xfb\xff\xc1\x87\xa0\xf6\x79\x76\xa2\x86\x13\x57\x11\xb7\x65\x60\x4f\x4b\x8f\x1d\xf3\xb1\x3b\x00\x31\x63\xac\x23\xfe\x65\x1b\xa1\x2b\x79\x86\x81\xcd\x8d\xc3\xe1\x1e\x6e\x0a\xfe\x85\x93\x06\x5b\x30\xec\x97\xa9\xc5\x0f\x68\x19\xe3\xf1\x7d\x9c\xff\x48\x7f\xbf\xe3\x6b\x0f\xb5\xeb\x88\x21\x72\xb6\x3b\xf9\xca\x7b\xd4\x4b\xc0\xe1\x7b\xbf\xd5\xd3\x64\x0d\x97\x5b\x74\x65\xfe\xbc\x54\xb1\x18\xf1\x1b\x97\xf1\x46\xa3\x6f\xf0\x4b\x96\x1b\xc2\xa1\x52\xd4\x0b\x6b\x32\x54\x0e\x96\x1e\xaf\xa7\x49\x12\x44\xb9\x0a\x43\xef\x60\xe7\xf1\x93\xc6\xf7\x23\x7b\x45\x81\xef\x88\x8c\x9f\x5b\x77\x97\x4a\xa7\x0f\xd2\x5b\x37\x19\xad\x34\x2b\xdb\xe9\x50\x4a\x17\xd5\xbc\x7b\x39\x08\x5d\x1a\x8c\xd0\x76\x9d\x4e\x5a\x7e\xac\xbe\x6f\x31\xc8\xa0\x21\xa6\x74\xcc\xeb\xac\x97\x27\x6b\xe6\x1d\xbd\x1d\xce\x80\x1d\x57\x8e\xc5\xc7\x29\xef\xb2\x12\xb6\xb6\x11\x3c\x45\xbc\x66\x04\x02\xee\xaf\x8a\xfe\xb0\x2b\xd4\xe2\x74\xd5\xe0\x8a\x61\x90\xfb\x8e\xaf\x04\x30\xde\x69\x91\x9b\x3b\xe8\x2d\xc1\xc6\x8d\xd6\x9a\xed\xd1\x56\xcb\x43\x32\x4c\xa9\xfc\x7b\x51\x46\xf4\xad\x75\x35\xfa\xbc\xe9\xab\xfc\xf3\xa6\xd5\xe6\x19\x27\xe6\xe8\xc8\x84\x85\xe9\xc5\x70\x6a\xad\x49\x12\x59\xd9\x78\x0b\x17\xbe\xe9\xeb\x0e\x4c\x0e\x6e\x12\xee\xc6\xaf\xd3\x25\x50\xda\xf4\xac\x6d\x70\x64\x2f\xf6\x8d\x90\x24\x5d\xef\x97\x4d\x36\x44\x5e\xab\xe5\xb4\x4a\x82\x20\x1c\xa9\x4e\xc7\x19\xdc\x7e\x89\x78\x4f\xda\x32\x25\xb1\x16\x4c\x08\x08\xe7\xb5\x0f\x42\x93\x46\x4b\x1c\xfd\x20\xe9\x8b\x6d\x98\x6a\x66\xcb\xc0\xee\x1b\xaa\xa3\x74\xa1\x41\x4b\x38\x3c\xeb\xe5\x41\xd1\x51\x1e\xab\x67\x4b\x15\xa7\xce\xaa\x81\x49\x1c\xac\x77\x34\xfa\xfa\xbc\x46\x1f\x6a\xd7\xea\x17\xfe\x93\xbf\xc9\x85\x16\xe6\x76\x37\x35\x6a\x9e\xf6\xbb\x94\x4f\xd2\xaa\xed\x19\x9c\x5b\x80\x04\x33\xf5\x91\x9f\x38\x27\x82\x34\x59\x35\xd9\x96\xb6\xf2\x19\xa5\xdc\x78\x46\xeb\x5d\xa2\x58\x9b\x76\xc5\xe0\x5d\x5a\xf1\x62\x7f\xad\x2a\xe3\xbb\xf8\x1d\xa2\xb7\xdf\x32\x57\x8e\xcd\xaa\x21\x85\x2c\x04\x22\xa4\x45\x68\xa1\x20\x32\x7c\x42\xef\x2d\x31\xc9\xad\xac\xe5\x31\x9f\x98\xa2\x09\xd6\x71\x0e\x73\xbe\xc6\x14\x3d\xb5\x65\xc5\x4f\xb9\x93\xfb\x03\x2d\x28\x75\xab\xee\x7f\xe5\xb5\x93\xe3\x33\x33\xca\x4c\x62\xc6\xc2\x7b\x44\x38\x38\xa1\xfd\x0e\x4e\x34\xca\x69\x3a\xdd\xc2\x34\xb3\x4a\x87\xad\x6c\x33\x17\xd0\xc2\x38\x1a\x4d\xbb\x46\x0e\x67\x89\xa8\x24\xa1\xb1\x83\xbb\x72\x02\x59\x8f\x88\xef\xb9\x8b\xf3\xc5\xb9\x43\x4a\x48\xfa\x82\x62\xcf\xfc\x56\xdd\x7b\xc3\x1d\xd8\x89\x09\x0a\x90\xe1\x64\x38\x7e\xbb\x54\xcc\x31\x36\x0a\xa5\x3f\x8d\x92\xc2\x64\xb9\x09\x95\xd3\x24\x6a\xe3\x7b\xbe\xeb\x35\x73\xf2\xc6\xe6\x27\xaa\x61\x33\x1e\xf5\x08\x11\x8c\xf5\x6e\x2d\xa3\x9c\x41\xc6\xa5\x36\xd9\xf5\x61\xb0\x02\x6c\x87\xb6\x83\x47\x51\xc4\xbd\x71\x7c\x85\x8e\xc2\x7a\x45\x49\x18\x8c\x82\xa5\xd8\x4c\xab\xee\x26\x5c\x7a\x81\xb8\x81\x97\x04\x5b\xb5\xe3\xd7\x4a\xa8\x76\xab\x26\x58\x32\x05\x33\xbf\x6a\x08\x04\x19\x04\xff\x5c\xfd\xba\x24\xdc\x73\x89\x59\x04\xc7\x7a\xe5\x39\xdf\x3c\xb5\x9f\xf3\x81\xe9\xed\x74\xec\xb7\x93\x94\xa3\x68\x2d\x41\x56\xea\xa7\x2f\x6d\x9d\x01\xab\x85\x87\x33\xeb\xee\x16\x3d\x7f\x27\x56\xa0\x89\xda\x61\x3a\x1e\xa5\x09\x9f\xa5\xe2\x4a\xd1\xb1\xaa\x3c\x97\xda\x62\x5f\x55\x7e\x67\x69\xa2\xf5\x3c\x19\x1c\x26\x5c\x78\xab\x68\x1d\x25\x26\xc8\x54\xaa\x77\x51\xa5\x7a\x4d\xd7\x10\xb8\x70\xb1\xbf\x3d\xb6\x30\xb2\x0c\x4c\x2a\x71\xb8\x20\xf3\x13\xfe\x96\x72\xcc\x4d\x73\x6e\x0a\x08\x71\x1a\x15\x3a\xee\x2d\xb8\x15\x28\x02\x4e\xaa\x04\x21\x4e\x93\xfe\x2e\xba\x6a\x38\x7a\x6e\x68\x8f\x94\x1b\xbe\xc2\x53\x0d\x68\x05\xe3\xe8\xd9\xd5\x75\x93\x8b\x8d\x52\x03\xd8\xe9\x23\x45\xe1\xd3\x51\x4b\xbe\xdf\xa6\xa9\x3f\xac\xaa\xf1\x20\x12\x47\x60\x19\x08\xe8\xe9\x80\x82\x0e\x87\x59\xd0\x8b\x41\x8b\xb2\x98\x10\x6b\xe8\x73\x4e\x0d\x35\xd7\x23\x13\x43\xe2\xa1\x0a\x0d\xf8\xf2\x7f\x0f\x39\x26\x3f\xb1\xa8\xdb\xe5\x28\x91\x62\x09\x65\xce\x43\x5f\xa9\xc2\x5d\xc2\x3e\x45\x97\xf5\x92\xfa\x2a\xa3\x34\xcd\xaa\xf3\xd2\x2a\x64\x02\x19\xc5\x8f\x55\x59\x65\x12\x56\x39\x54\x26\x5a\xb0\xa5\xe0\xc7\x8d\xcb\xb2\x38\xeb\x8d\x4c\x36\x34\xd5\xde\xa4\x31\x8e\xed\x10\xd9\xd9\xf0\x8f\x14\xe5\x6e\x39\x85\xe2\x24\xdd\x75\x69\xa6\xbb\xe5\x8b\xf6\x11\xce\x98\xb7\xda\x46\x28\xcb\x69\x16\x0a\xde\xc9\x12\x21\x9c\x49\xd6\x65\x5f\x37\xb1\x82\x11\xf5\x4e\xe8\xdf\xb1\x0e\x00\xcb\x41\x54\x7b\xa4\x14\x2c\xae\x35\xb2\x91\x17\xbd\x3c\xb0\x2c\x3c\x41\x68\x68\xb8\x86\xca\x1a\xbf\x3a\xee\xf5\xcd\x13\xd5\x8f\xd7\xea\xd2\x48\xf0\xd9\xeb\xc1\xa6\x56\x73\x87\xf8\xc0\x7a\x13\xdf\x1b\x9d\xd0\x87\x58\xb8\xe8\x09\xbe\xe5\x3b\x77\xb0\x63\xbe\x72\x7b\x06\x75\x12\x7f\xc4\x4d\x33\xe4\x62\xbf\x0d\x84\x11\x52\x81\x0f\x50\x33\x82\xc5\x0b\x4f\x42\x54\x17\x27\x9c\xb9\x7f\x34\x8c\x8a\x9d\xd5\x97\xc4\x2d\x00\xdf\xc1\xea\x2e\xb9\x5e\xe3\x89\x52\x21\x60\xc0\x72\xb7\xef\x7b\x58\x34\x83\x3e\xf6\x35\x80\xe9\x8a\x92\x25\xae\x32\x82\x98\xda\x57\x8b\x02\x37\xba\xae\x56\x13\xb8\x5c\xf8\x0a\xef\x69\x7e\x4e\x64\x86\x26\xc9\x3b\x4e\x5f\xe1\x1b\xbe\xf3\x81\xff\x86\xdd\x0d\x49\x5a\x98\x7c\x27\x7d\x43\x21\x09\x5b\xd1\x27\xd1\xd5\x46\x61\xf6\x87\xd8\x26\x80\x02\x3c\xd5\x55\x51\xe2\x0e\xb7\x2f\xb1\xed\xdf\xaf\xe9\x82\x2b\xb7\x93\x34\x5b\x1a\x23\x7f\x07\xd8\xff\x18\x5d\x0b\x7e\xdc\x10\x0c\x15\xb8\xe5\x60\xdc\x67\x01\xe7\x05\xdb\xe2\x55\x71\xf7\xbc\xea\x3c\x9a\x98\x0f\x61\xe5\xce\x8b\xe0\xcb\x8f\xf5\xf5\x09\x46\x91\x61\x8a\x15\xae\x09\x4b\x59\xf0\x93\xc9\xd3\x96\x4e\x53\x64\x91\x59\x05\x05\xed\x20\x5f\x69\x60\x16\xf8\xb1\x13\xcd\x1b\x44\xc3\xa1\x63\x7c\x61\x00\xf1\x16\x02\x0a\x3f\xf1\xb7\x62\xaa\x8e\x2c\xce\x7a\x61\x1a\xc7\xf0\xf7\xe6\x5d\x29\x0e\x5a\xf4\x89\x62\xad\xa5\x04\x3d\xa8\x89\x17\x25\xfd\x69\xcd\xda\xee\xb8\xa1\xbb\xea\x9d\x9e\x43\x68\xe5\x27\xaa\xa4\x1b\x65\x69\x6f\x1c\x9a\x1e\x03\x13\xb1\x70\x11\x3b\x10\xfc\xce\xa1\xc4\xe7\x48\xe8\x3b\x7d\x2b\x90\xc5\x71\x9e\xdd\xa1\xdd\x88\x5a\xe0\x13\x5f\xb3\xdb\x7d\xc5\x65\xf8\xd0\x8d\x97\xc7\xbd\x9e\x65\xc4\xc8\xc1\x5e\xf3\x48\x78\xa6\x16\x12\xa0\xdc\x7b\x78\x96\xd3\xae\x4b\x18\x22\xf0\x13\xed\x30\x66\x56\x7f\x19\x6b\x04\x7b\xeb\x7b\xbe\xf6\x84\xfb\x9e\xea\xcb\x17\xe9\x5a\x92\x0f\xa2\x11\xae\xb4\x15\xe9\x75\x82\xd5\xa7\xda\xc4\x99\xc2\x34\xe9\x45\xd6\xef\x18\x35\xd2\x27\x74\xb1\xf8\x71\x9b\x1e\xf6\xc0\x64\x4b\x51\x18\xf5\x90\xa9\x21\xf5\xbb\xa1\xf8\x43\x6f\x6a\x68\xe2\x15\x2d\x7a\x95\xa6\x7d\x3b\xfc\x17\x41\x03\xfa\x5b\x7e\xd2\x82\x93\x5d\x90\x3b\x4a\x81\xc2\xaa\x46\x5b\xae\xcb\x07\xa5\xf2\x9b\xb9\xd5\xe8\xec\xa1\x9d\x3a\x34\x44\x7c\xef\x28\x77\x39\x94\xb2\xfc\xd8\x17\xf8\xe4\x5a\x2a\x37\x51\xe3\xa8\xf9\x71\xf9\xbc\xce\x39\x33\x13\xe4\x51\xd2\x67\xc5\x29\x94\xb4\xd0\x21\xe6\xc7\x8d\x33\xea\xd5\x57\xbd\x25\x63\x46\x3c\x00\x43\x2a\x08\xde\x95\x38\xac\x3b\x96\x73\x53\x4a\x6b\xdf\x9c\x37\x8a\x83\x82\xd8\x7e\xf8\x8a\x78\x87\x0f\x95\xa2\xdc\x87\x5a\xfc\x2f\x1d\x04\x60\x8f\x09\x42\x44\x0d\x90\x9b\xc9\xf7\x81\x03\xde\x52\x9a\xa4\x38\x11\x51\x83\x1c\x53\xce\xcf\x97\x94\xde\x42\x73\x90\x58\x5d\x65\x13\x64\x71\x64\xb2\x19\x25\x43\x79\xbb\x54\x2e\xf1\xac\xfd\x8f\x8a\xf1\x26\xed\x3b\xac\xf7\x87\x74\xa6\xe1\x63\x6a\x66\x27\x41\x96\xc6\x51\x12\x88\xe3\x03\xc3\x36\x4a\x25\x8c\x74\xde\xc6\xa8\x22\x1b\xe7\x45\x98\x66\xa3\x2d\x6e\x94\xd6\x92\xe1\x52\xdb\x70\x82\x66\x28\x75\xf7\xa4\x9b\xaa\xfb\x74\xb3\x71\xf4\x2f\xbc\x7c\x90\xba\xfb\x7f\x81\xef\x8c\x66\x21\xa6\x83\x04\xe4\x01\xc1\x03\xe1\x97\x08\xd2\xc8\xad\xe2\x3f\xf6\x6b\xea\x51\xcf\x36\x1d\x5f\x72\xd2\x9a\x62\xa7\x31\xfc\xb5\xe5\x36\xed\xdb\xe7\x1a\x0a\xd5\x2f\xb1\x18\x3c\x6b\xb8\xc6\x67\x8b\x18\x95\x6d\xbd\x14\x5f\x3a\xe2\x0d\xc6\x49\xaf\x0a\xf1\x9d\x7d\x73\x1a\xf6\xe7\x68\x51\x7b\x35\x29\xa5\x60\xa3\x75\x27\x0a\xbb\xa9\x9a\x03\xbb\x26\x0e\xaf\x77\xad\x89\xa5\x9e\xf3\x7a\x26\x8f\xfa\x52\xa9\x58\x73\x13\xe7\x0b\x5c\x3a\x1a\xb6\x39\x6a\xb2\x30\xca\x29\x87\x54\x8c\xba\x8b\xfe\xf6\xcf\xc9\xc3\xb6\xc0\xb6\x36\x88\xb2\x78\x2d\x4a\xa0\xae\x8d\x50\x74\x86\x04\x88\xf8\xb1\xfa\x88\x5e\xd4\x4f\xa2\x22\x10\x69\x20\xa9\x85\x7f\xaa\x21\xe4\x3f\xb5\x58\x90\x38\x58\xcb\xc7\x51\x91\xcf\xa8\xb4\xe1\x46\xe9\xba\x17\x33\x5d\xe7\x1b\xfe\x07\x9a\x04\x78\x16\x59\x07\x4e\xcc\x63\xb5\xf9\xf2\x38\xe9\x3f\xb1\x15\x09\x2f\x21\x5f\xc8\xcd\x56\xda\xcf\x96\x88\x5f\x2f\x15\xba\x83\x47\x23\x4c\x3e\xc4\x92\xb4\x4c\xc4\x23\x56\x37\x11\xb0\x6d\x64\xb9\x10\x12\xa8\x49\x69\xa0\xc9\x75\x9d\x56\x0e\xee\xe5\x06\xed\x4e\x14\x61\x57\xd5\x10\xad\x67\x96\x4c\x42\x92\xc2\xbb\x9d\xb6\xff\x4d\xfc\x44\xab\x1a\xa0\x24\x04\x70\x6e\x8a\x4e\x6a\xf5\xfe\xe2\x2b\xd3\xb1\x44\x79\x16\xa6\x40\x2c\x7b\x0b\x89\x2b\xa7\xb4\x5d\xd7\xdb\xf8\xb1\x3a\x4b\x8b\xa8\x08\x92\x68\x3c\xd4\x74\x85\xcb\xbe\x26\x59\x6d\x3d\x10\x5e\xf4\xc6\xc9\x20\x20\x12\x49\x0e\x79\x0f\x5c\x25\x46\xe2\xdb\x99\xab\xad\x4b\xff\xa8\x7c\xb6\x8e\x99\x7f\xf5\x55\x6f\xff\xfc\xde\xea\x47\xa3\x04\x7d\x8f\x96\x15\xae\xdc\x09\xfc\x4c\xab\x31\xbf\x38\xbb\xb8\xb9\x81\xda\x00\x3f\x84\x55\xc0\xd9\x06\x11\xdb\x95\x53\x68\xdc\x26\xd1\x1d\xad\xae\x10\x6a\xa4\xdf\x44\x99\x80\xed\xb4\x49\xdd\x3f\x2b\xde\xf0\xab\x5f\x66\x4c\xc2\x1f\xf9\x3a\x73\xeb\x7c\xf1\xd7\xb8\x48\xf8\xa1\x56\x75\xbb\x41\xc6\x4f\xda\xfa\x1d\x91\xe2\x1e\xc5\x49\x44\xe6\x47\x2a\xb5\x4d\x52\x0c\x98\xad\xfa\xf0\x2d\x7c\x47\x99\x52\x3b\x46\x7a\xa7\x21\x98\x3b\x77\xc8\xeb\xc7\xc1\x30\xcd\x84\xad\x82\x26\x15\xb8\xb9\xfc\xb8\xb6\x07\xf2\xb1\xd9\x59\x67\xb6\x2d\x8a\x84\xf2\x1b\xbe\xc2\x74\x41\x3a\x98\xff\x01\x97\x56\xa4\xc8\xdd\x58\x19\x05\x1c\x2e\xd3\x83\xba\xc6\xc4\xc8\x28\xfc\xc9\x94\x5a\x57\x17\xb4\x16\xcc\x5d\x5d\xf9\x66\x59\x9a\x98\xea\x77\xd4\xb4\xf3\x3a\x56\x87\xef\xbc\x5a\x91\x71\x3a\xca\x23\xea\x00\x2e\xcc\x1d\x92\x09\xa7\xf2\x76\xb8\x52\xee\xb1\xb9\xea\xdf\x78\xac\xa3\x4c\xcd\xab\xf7\xc3\x44\x69\xb3\x24\x29\x72\xb4\x21\x9e\xea\x76\x7e\x45\x6a\xd4\x3d\x04\x8b\x43\x90\xf8\xa9\xaf\xfa\xd5\x0f\x34\xfd\xf2\xcf\xe8\x36\xf3\x5f\xe1\x08\xb6\x5d\x0c\x5b\xf1\xc1\x92\x43\x64\xd0\xb7\xa6\xef\x74\xa0\x1f\x1d\x99\x2c\x32\x49\x28\xd3\x3a\xb4\x29\x3f\x54\x7b\xe3\xfd\x52\xf1\x95\x2e\xf8\xd2\x8c\x2e\x4c\x30\xe5\x9c\xbb\x18\x90\x81\xd4\xed\x8c\x32\xf8\xbb\xdd\x62\x4a\xcc\xcd\x78\x7a\x39\x00\xb5\x9b\xaa\xd2\xb9\xa1\x7c\x24\x4f\x34\x38\x65\x73\x87\xbc\x3c\xad\xd6\xab\x05\x80\x6b\xf9\xa4\x2b\xda\x1b\xf4\xfb\x8d\xe4\x0c\x03\xf1\xcc\xa4\x4a\xb3\xe7\xbe\xca\x05\xee\xb7\x70\xde\x5e\xaa\x12\x08\x08\x23\xb6\x14\xc8\x57\x95\x65\xfd\x0f\x1b\x67\xd4\x81\x03\x70\x23\xb2\x1e\x1e\x1c\xc6\x95\xca\x90\x96\xa3\x1b\x04\x79\x11\xc5\xeb\xb8\x11\x22\x45\xe2\x30\x78\x3f\xc3\x8d\xc0\x8f\xbb\xd5\xb8\x32\xfb\xe7\x3d\x13\xe4\xfc\x6a\xf1\x8d\x70\x20\x8e\xeb\x5a\xb2\xab\x29\x83\xf3\xf9\xea\xca\xb0\x01\x02\xae\xe5\x19\x3d\x4e\x3f\xa3\x84\xdd\x96\xa2\xa2\x20\xab\x11\x32\x66\x7f\x8f\x1c\x42\x37\xdf\x6b\xcc\x15\xf7\xcf\x7b\x4b\x41\x18\xc5\xf1\x38\x9f\xc6\xe9\x86\xf3\x03\x5e\x44\x68\xf5\xef\xe9\x3a\xb4\xef\x1b\x5a\xa8\xb2\x33\x71\x8d\xd5\x7e\x16\x71\xf6\x26\x12\x38\x1d\x2b\xfa\x70\xb1\x51\x7b\xcf\x1d\xf2\x46\x19\xab\x55\x64\x18\x6f\xe3\x60\x43\xe7\x81\x1f\xab\x06\xfb\x38\x48\x66\xf0\xfd\xa4\x1c\xa2\xa5\x8c\x49\x02\x9c\x31\x80\x53\xfa\x6c\xd7\x01\xed\x79\xf8\x82\x1b\xf3\x4c\x83\xb9\xf9\xea\xab\xde\x57\x83\x15\x43\xcc\x4d\x9b\x5b\xdb\xfb\x0f\xd9\x60\xc1\x3f\xd2\x1b\x89\xad\x83\x82\xe8\x9a\xa8\x47\x77\x03\xe1\xe2\x34\x6e\x3e\x3f\x69\x94\x40\x07\x0e\x78\x6b\x41\x61\x32\x72\xee\xe6\x5c\x5a\x34\xf7\x3a\x56\xb4\xe1\x82\xef\xf8\x11\xcb\x01\xb8\x54\xb6\x06\xb2\xfd\xba\xed\x13\x55\x1c\x5d\x6e\xb7\x65\x25\x41\x06\x9a\x6b\x20\x68\x5d\xd5\xcc\xf2\x37\x14\xbe\x76\xdb\xc4\x61\xda\x6e\xb4\x69\xfa\x8e\xd2\x38\x2a\xa2\x30\xd7\xf0\x85\x6b\xaa\xeb\x7c\xad\xad\x0d\x98\xaf\xe7\x85\x19\xaa\xb9\xc8\xf5\x1a\xa8\x89\x2e\x29\x5e\xfe\x7a\xf9\x59\xad\xb9\x9a\xa5\x96\x76\xd7\x51\x4c\xd4\x3f\xf4\x1d\x1e\xec\x0f\x75\x69\x6e\x7d\x2a\xd9\xd2\x43\xb1\x48\x9c\xb2\xef\xd7\xc6\x29\x74\x3c\xf8\x3d\x91\xe8\x9c\x42\x9a\xc0\x4f\xca\x5a\x0b\x3f\x29\xaa\x02\xd1\x5e\xbd\x4b\x4a\x67\xf2\x5f\xf8\x0a\xa1\x73\x41\x59\xf6\x93\xa7\x28\x75\x19\x85\x6f\xab\xdb\x6e\x27\xd4\xfa\xba\x09\x45\x36\xcb\x1f\xb3\x7a\x5b\x8f\x7c\x25\x1a\xf3\x23\xea\xba\xe0\x92\xbd\xaf\x44\x4e\x1e\x22\x7b\x91\x4d\xa3\xc0\x56\xe7\x60\x79\x21\x6a\x8c\xee\x52\x9c\x29\x95\xda\xe6\x07\x1a\xdd\x13\x8c\xfb\x03\xd0\x19\xe4\xa2\x75\xac\x81\xd9\x09\x3d\x75\xbe\xad\xf8\x4c\x03\x13\x64\x3b\xea\xae\x67\x5b\x52\x1a\x6b\x30\x60\xcd\x06\x20\xa3\x6e\x75\x4a\xe6\x0e\x59\x9d\x12\xe5\x8b\x18\xf7\x4d\x16\x05\x1d\x75\x54\x6d\x87\x0c\x1b\x3f\x69\x20\xb9\xe7\x0e\x79\xbd\x20\x8e\x03\x64\x37\x4c\xb5\xd6\xb3\xe6\xd3\xb6\xa7\x3a\x30\xf1\x28\x9f\xf9\xd4\xf9\x8f\xf5\xf2\x01\x25\x0f\xaf\xee\x4c\x94\x3c\xce\x67\xbb\xad\x04\xc9\x68\x64\xe2\x2a\x8f\x05\x34\x5c\x60\x06\xb8\xf5\xec\xec\xad\xe5\xaa\x2e\x2b\x65\x89\x2c\x88\x47\x03\x42\x16\x89\x50\x92\x1a\x09\x7f\x4c\xdf\x49\x90\x0a\x74\x27\x44\xa7\xe4\x69\x85\x94\xae\x92\x68\xa6\x14\x80\xeb\x0f\xaa\x00\x3f\x6e\x6c\xe8\xcf\x7b\x43\x13\x24\x6b\x83\x28\x36\x53\x75\x19\x0b\xab\xe0\x75\x99\x70\x14\xec\xd8\xad\x9a\x7a\x41\x0c\xb2\xf4\x0e\xd7\xa2\x07\x84\x06\x99\x1b\x6e\x2a\x3f\x2e\x9d\x73\xdc\x26\x79\x99\xf3\x63\xfc\x40\x7e\x71\x8b\x4f\x92\x37\x8a\x4d\xd0\xa3\x4b\x02\xd6\xf2\x65\x95\x21\x73\x88\x15\xbf\xf3\xea\x56\xe2\x02\x6f\xaa\x59\xf5\x5a\xc4\x40\x12\xfc\x98\xf7\x55\x86\xf8\x7e\xcd\x97\x77\x60\xf2\xa7\x1c\x49\xeb\x0f\x7c\xad\x48\xc8\x72\x1b\xc8\xe4\xcf\xfa\x0e\x43\xcc\x86\x8d\x80\x4c\xa1\x51\x6b\x81\x30\x55\x8a\x87\x7c\xff\x16\x7e\x26\xbf\xbc\x54\x92\xc6\x97\xb5\x0a\xcb\x5b\xbe\xc3\x2c\xdd\x2e\x55\x67\xcd\xaf\x19\x34\x2a\x8d\x04\x78\x51\xa3\x31\xfe\x5d\x95\x98\xe4\x01\xf5\x68\xd0\xe6\x40\x22\xfe\x90\x0a\x22\xeb\x80\x6d\x73\x7f\x34\x58\x85\x88\xe8\x52\xe6\x7e\xb4\x6a\x82\xb5\x60\xbd\xa3\xf4\x81\x11\x20\x45\x2c\xb8\x0d\xaf\xdc\x0b\x8a\x80\x93\x07\xc0\xf8\x6f\x97\x0d\x79\x5e\x24\xa6\x7c\x8e\x22\xca\x4c\x75\x1f\x73\x9c\xe1\xde\x4c\xb5\x70\x84\x59\xec\x6e\xfd\xee\xae\x9b\xe3\xde\x56\x92\xab\x3f\x2c\x15\xd2\xb9\xde\xea\x09\x4d\xb6\x93\xb6\x82\xb8\xfe\xbb\x8c\x82\x3b\xce\x38\xf4\x90\x15\xb2\x66\x2c\x5d\x10\xfe\xff\x5a\x98\xfb\xb2\x06\x29\xfc\x13\xdb\x9d\x0c\xa3\xa5\x60\xca\x29\x04\xa3\x64\xc0\x2d\xf9\xba\x16\x8b\xdf\x68\x43\xfa\x2f\x8d\x73\xaa\x79\x3b\x8a\x4d\x03\xa8\xbf\x88\x21\xb9\x95\xfc\x95\x2f\xec\x9b\x56\x34\xb8\x5b\xca\xb8\x07\xe0\x5d\x7c\xe8\xff\x46\xdf\x1f\x9b\xe2\x82\x1d\x14\xaf\x99\xd8\x22\x20\xf8\x0c\xa3\x05\x21\xe7\x99\x5b\x3b\x41\x9e\x8f\x87\xa6\x37\xdd\xb1\xed\x89\x7b\xb8\x54\x58\xd8\x7f\x57\x31\x2b\xb7\x57\x95\xcf\xe6\x31\x75\xfe\xc6\x66\xb9\x78\xbc\xe3\x4c\xc8\x71\x7e\x21\x03\x3e\xaf\xb1\x61\xbf\x4d\x0d\x32\x1c\xe0\xdf\x2b\x55\x47\x1c\xcc\x4d\x0b\x46\xb2\x6d\x0e\xd8\x81\x69\x38\x21\xce\xd1\x27\x95\x0a\xcd\x06\xfd\x24\x44\x30\xde\x66\x68\x9a\xde\x53\x60\x8b\x22\x0b\xc2\x15\xcc\x62\x44\x76\xb6\x86\x7f\x7a\x5c\x79\x5f\xa1\x6c\xb1\xba\x02\x16\xca\xf3\xa6\xee\x05\x1d\x6f\x61\xa6\x1d\xf4\xf2\xf1\x52\x1e\xf5\xa2\xd7\xb8\xbf\x8d\x1f\x07\x1e\x3f\x3f\xd6\x84\x3d\xc2\xc7\x10\x61\xef\xc0\x01\xeb\xdd\x43\x9f\x21\xe6\x3d\x2d\xea\x5d\x4c\x2d\xa5\xac\xce\x7a\x5a\x54\x91\x42\x06\x30\xca\x40\xfc\xb4\x72\xc2\xea\x74\x65\x42\x42\x4e\xa7\x7d\xce\x82\xf0\xd3\x38\xd8\xf0\x93\x36\xb7\xf7\xdc\x24\x79\xb4\xc4\x80\x73\x34\x2f\xcf\x2a\x3b\xbe\xb3\x6d\x0a\x19\x41\x1c\xe4\x2b\xdc\xf9\x46\x18\xbc\x83\xab\xce\x4f\xf4\x21\x38\x5e\x8a\x12\x65\xe0\xbe\xa1\x33\xf7\xe6\x26\x7a\xd1\x1b\x65\x41\x58\x44\xe1\x56\x38\x3b\x45\x6c\xc1\xb3\x2b\x2b\xc1\x20\x37\x39\xc1\x3e\x18\x87\x53\xba\xa9\xf2\x69\xa8\x7b\x22\x02\x9f\x03\xec\x93\x9f\xa0\x86\x44\xf2\xb5\xa1\x0a\xd8\x8f\xf1\x33\xc4\xc6\xa0\x89\xdc\x7d\xc9\xeb\x45\x79\x50\x55\xb1\xca\x5b\xf9\x27\xf4\x0e\xfc\x58\xa5\x5f\x69\x56\xd5\xd9\xd3\x0a\xa9\x7c\x9e\xae\x2c\x3f\x56\xd5\x21\xd7\x33\x82\x92\x6f\x91\x83\x1b\xa5\x51\x52\xe4\x54\x91\x58\xff\x03\x67\x68\x74\x45\xef\x08\x92\x57\xa1\xa5\xae\xb4\x9b\x95\x9e\x81\x55\xf4\x7e\xa7\x4d\xce\xb7\x17\xad\x46\x5c\xe0\xa3\x69\x76\x41\xe9\xa2\x7e\x8c\x66\x90\xc0\x16\xdb\x4c\xb5\x8f\x86\xf1\x58\x7a\x33\xe8\xcb\xcd\x6f\x6e\xb4\xac\xf7\x83\x5e\x61\x72\x4b\x4b\xc1\xfc\x02\x13\x2e\xc4\xe7\x9f\xe0\x96\xcb\xb1\x26\x43\x08\x93\x64\x69\x1c\x1b\x19\x77\x22\x7b\xe5\x61\x3e\x3f\xf1\x95\x1d\x46\x6f\x18\x25\x11\x6e\xd7\xe1\x59\xa7\xb3\x53\x9d\xb9\x02\x3f\x55\x60\xb1\x00\x18\xdc\x97\x6c\xfb\xa7\xfa\x3a\xd2\xe4\x71\xef\x1a\xa6\x49\x41\xdf\xa2\x37\x43\x5f\x02\x4d\xa4\xd3\x5a\x9b\xe8\xb4\xaa\x68\xce\x29\xe2\xf7\x15\x3d\xb7\xfb\x8e\x4a\xba\xd3\x24\x34\x4f\xba\x24\xe1\x0f\x10\x6a\x71\x3a\xdd\x54\x16\x87\x9d\x09\x6d\x68\x54\xb5\x0f\x35\xae\x6c\x37\xa9\x29\x5a\xcb\xc1\x6a\xe9\x23\x52\xb3\x6c\x3a\x3a\xe4\xdb\xc9\xe3\x09\x89\xcc\x45\x88\xe9\xf1\x5f\xe1\x9b\x21\xbe\x5c\x56\x75\xf7\x1e\x18\x04\x61\x31\x7c\x47\x3b\x38\x34\x07\x68\x55\xd2\xc0\x78\x7d\xf4\x32\x24\x79\xa4\xb7\x90\xec\xd1\x75\xb8\x23\x9a\xbc\x38\x0d\x1d\xbb\x3d\xab\x2b\x29\x1b\xd7\x31\x44\xa3\x38\x5a\x5e\xce\x3b\xb5\x4e\x25\xd5\x44\xd2\x52\x6e\x81\x66\x57\x95\x6a\xa7\x2e\x61\x3c\x2f\x2d\xd5\xf3\xca\x7f\xb6\x9f\x45\xec\x09\x8c\xdc\x18\x10\x03\xc4\x5e\x36\x36\x67\x4d\xbc\x96\xb0\xe0\x2d\x1b\x2c\x34\xec\x50\x99\x01\xe9\x81\x90\x4a\x62\xf7\x2d\x7e\xa1\xa3\x10\xdb\x40\xf8\xf0\xe3\x46\x1e\xb6\x7f\xde\x5b\x8d\xcc\x5a\x8d\x1e\x73\xe5\x2f\x34\xcb\x26\x26\xfa\xbf\x23\x41\x78\x4a\xdd\x82\x91\x61\x56\x1a\x50\x5c\x13\x3a\xb2\xf9\xb1\x82\xbe\x2d\x9b\x2a\xee\xa1\x29\x82\x00\xc0\xa3\x30\x7e\xd2\x36\xee\x1c\x8d\xe3\x58\x13\xae\x2f\x28\xc2\x75\x93\x2c\x5c\x05\x85\x9e\xa9\x6a\x73\xa5\x2c\x72\x5f\x05\x57\x00\xf9\x44\xd0\xe6\x09\x55\xd2\xb3\xd2\x82\xb5\x59\x71\x95\x44\xb5\xdc\x6c\x8d\xd3\xcf\x0c\x75\x03\x51\x29\x2a\xd7\x2f\x5b\x63\x2b\xb5\xd3\x6f\xf9\x6e\xa5\x6c\x68\xa2\xd3\x39\x35\x02\xce\xe3\xa8\x67\xe8\xdd\x90\xc3\xcf\x00\x42\xc9\x4f\x60\x7e\x87\x80\x76\x5a\x51\x2f\xc1\x9a\x40\x4e\x7d\xd3\x66\x75\xeb\x69\x3e\x88\xd2\x4e\x23\x5a\x88\x08\x95\x2a\xec\xe9\x57\x4c\x29\x42\x3d\x18\xae\xb8\x15\xbf\x81\x2f\x8b\x4d\x7a\x47\x21\x57\xfa\x41\x1c\x1b\x06\xaa\x33\x33\x82\xbe\x94\xb0\x24\xdc\xcd\x5e\x8d\x1c\xa4\x9d\xb3\x34\x05\x59\xa8\x19\x38\xfe\xf2\x7f\x44\x03\x4d\x3b\x39\x70\x44\xf9\xc6\x76\xdc\xb7\xcf\x5b\x4d\x58\xc1\xcc\x82\xc0\x5d\x0e\xdc\xa4\x50\x55\x07\x6e\xd4\x8b\x45\x6e\x09\x6d\x3a\xa0\xc8\xf8\xb1\xaf\x11\x8d\xd5\x11\xb9\xab\x8a\x6f\xc8\xfd\xb7\x77\x6b\xc7\xa5\x1b\x63\xdc\xa5\x25\x8e\x64\xf2\x75\x25\x08\xf7\x3d\xaa\x8d\xe5\x48\x75\x58\x38\xd8\xa3\xf3\x9b\x4e\x9e\x6d\xca\x08\xbf\xf8\x84\x62\x50\x91\x17\xe2\x4b\x9b\xef\x29\x9f\xe5\xbb\xca\xf0\x7f\x93\x3e\x44\xb4\x8c\x5d\xdb\xe4\xc4\xff\xcb\xd8\xbb\xc7\x48\x96\x9d\xf7\x61\x33\xd5\x3d\x8f\x7d\xcf\xcc\x2e\x49\xc9\x48\xe0\xa2\x43\x64\xa3\x78\xbd\x96\x80\x18\x31\x92\x20\xb7\x34\xd3\xe4\x72\x06\x62\x6f\xa3\x77\xb8\x4b\x2f\x1c\x80\xa7\x6e\x9d\xae\xba\xec\x5b\xf7\x16\xef\xa3\x7b\x7b\x11\x04\x41\x90\x3f\x0c\xc3\x7f\x04\xb0\x2d\x18\x50\x2c\x48\x89\x11\x19\x0e\xe5\x48\xa4\x64\x3a\xa2\xac\x2a\x52\x5a\x8a\x12\x43\x71\x77\xb9\x6f\xee\x63\x76\xde\xcf\x9e\xf7\xab\x67\xa6\x27\xb8\xdf\xef\xfb\xce\xf9\x6e\xd7\x1d\xc1\xff\x10\xf7\x72\xa7\xab\x6e\x9d\x7b\x1e\xdf\xe3\xf7\xa0\xec\x0f\x9d\x83\x31\x65\xdb\x35\x1b\x5d\x69\xdb\xaa\x5d\x75\xac\x2c\x62\x36\x11\xe8\xe9\xde\x1a\x1a\x52\x6f\x39\x81\x29\x6a\x36\x14\x3b\x94\x32\x24\xab\x48\x88\xdc\x2d\xcd\x5c\x3c\xc0\xbb\x4a\x83\x7d\x43\xa1\xd7\x8f\xd5\xb0\xb0\x59\x15\xe7\x52\x95\x55\xec\x4f\x7c\x69\x78\x43\xa1\xf0\x38\xf8\x15\x60\xd7\x93\x35\xed\xc5\x32\xcf\x09\x8f\xe4\xac\xc8\x41\x84\xc2\x94\x38\xa9\x64\x69\x90\xa9\x63\xd1\x9c\x51\x98\xd4\x2c\xea\x8a\xd3\x82\x88\x44\xd2\xa1\x20\x1a\x43\x9e\xb7\x90\x87\x26\x33\x0f\xc6\xee\x3e\xa1\x4a\x55\x4b\x19\x6f\x29\xe8\x09\x63\x5f\xe0\xeb\x06\xa5\x3d\x42\x39\x00\x19\x2a\xaf\x80\x46\x53\xf3\x58\x50\x98\x3a\xd2\x70\x48\x2d\xb4\xcd\xa8\x98\x51\x5a\x19\x67\x94\xc3\xcb\x39\x0d\x4e\xfc\x56\x13\x08\xb8\x3d\xca\xd2\xd0\xda\x9e\xa8\x1d\x89\x08\xbf\x12\xbf\x3e\xaf\x25\x42\xd8\x43\x36\xc1\xbf\x46\x82\x75\x4b\xcb\x9e\x7a\x8a\x7c\x38\x88\xc2\x65\x9b\xa0\x98\x24\x89\x9f\x8f\x61\xd1\x33\xc6\x94\xb9\xd3\x40\xa3\x11\x3d\xaa\x19\xaf\x75\x0a\x18\xae\xb6\x47\xc1\xc7\x5e\x72\xa5\xbc\x30\x8b\x86\x60\xe4\x61\x0e\xec\xea\x28\x1e\xc4\x75\x2e\xbb\xa2\xc6\x72\x7a\xac\xeb\x94\xaa\x9f\x98\x44\xe1\x72\x62\x86\x7c\x5c\x09\x1e\x41\xc5\x5e\xa7\x9a\xb4\xb9\xf3\x41\xaa\x0a\x6e\x78\x77\xa8\xec\xf2\xb5\x6b\xbf\xe5\xcb\x6b\xdc\xb5\x70\xc5\xa2\xaf\x7e\xb9\xa6\xe6\xc1\x76\x5d\x81\x6f\x7e\xde\xc1\xf7\x63\xbf\xbe\xa2\xe2\x81\x72\x19\xe7\x6f\xe3\x63\xfa\xf7\x66\x86\xdd\x32\x36\x49\x68\x81\x09\x51\xa6\x84\x52\x6c\xfe\x0b\x9a\x67\xa2\x43\xf7\x84\x6b\x15\x92\x50\x2b\x28\x84\xa2\x07\xd3\x52\x66\xd1\x7e\x29\x0d\xa2\x38\x9e\xd1\x78\x63\x55\xd5\x81\x3d\x00\xd3\x55\x15\x2a\xae\x9f\x16\x45\x1c\xd9\x2e\x06\xcd\xf9\x0f\x28\x81\x24\x5d\xc3\xb1\x2b\xf6\x71\x4d\xc0\x43\xa0\x2a\xf1\xb0\xc7\x2c\x6c\x8c\xfd\xcc\xba\x87\x99\x8c\x00\x76\x83\xe6\x8f\xe8\x12\x28\xd8\xe0\x65\x95\x13\x3f\x0c\xf7\x53\xb4\xb9\x37\x69\x33\x45\xe4\xf3\xfb\x81\x52\x6e\x38\x3f\x6e\x7d\xf1\x6b\x1c\xe9\x9c\xa6\x6a\x9d\x64\x1b\xb4\x30\xf8\x63\xd5\x8b\x5a\x8e\x00\x67\x40\x3a\x7d\x79\xec\x39\x4b\xc7\x74\xac\xb7\x31\x75\x8e\xbd\xb4\xf0\x85\xf6\xc0\x44\x59\x2d\x88\x1b\xab\x20\x6e\x2a\x16\x3a\x74\xa8\xfd\x6a\x34\xca\x39\xcf\x94\xfe\xb5\x12\x6c\x9c\x16\x79\xae\x76\x82\x38\x4d\x97\x75\xaa\x13\x68\xa2\x87\x86\x02\x84\xcb\xf9\x93\x94\xa2\x9d\x46\x39\x08\xd9\x05\x86\x0a\xef\xf8\xde\x58\x31\x0a\x58\xa0\x0e\xcb\x60\xef\xc4\x77\x7b\xae\x01\xd4\x82\x9e\xc8\x8f\x02\x5f\x4d\x7a\x17\x99\x02\xe6\x18\x90\x47\x74\xcc\x7c\x69\x6f\x87\x5e\xb9\xec\x06\xf4\xa2\x90\x5d\x3e\x4c\x46\xb1\xa8\x52\xb1\xa9\x29\x8a\x6d\x3f\xa0\xd5\x25\xd2\x3e\xd5\xcf\xc3\x0b\x3c\xcd\x65\x5d\x57\x91\xaa\x66\x20\x16\xe1\x6e\x64\x2d\xf8\x29\xe7\x54\x41\x8c\x74\xb9\x32\x46\x21\x29\x3d\xc1\x39\x37\x75\x1b\x84\x57\xf3\x91\x4d\x70\x1c\x34\x29\x38\x4e\x5b\x31\xbc\xd0\x1e\xa6\x49\x54\xa4\x5e\xd1\x51\x20\x87\xbe\x6a\x70\x56\x53\xbe\x07\x69\x99\x9b\xa4\x97\xef\xd4\x3a\x4d\xd8\xf8\xf1\x2d\xe2\x5c\x81\x77\xf9\x3d\xa4\x87\x4e\x06\xd5\x8b\x12\x8f\x75\xf9\xc8\x69\xd1\xa7\xb1\x03\x08\x23\x9e\x65\xc0\x2d\xdf\x38\x8e\x4e\x99\x44\x44\x23\xdb\xa1\xb8\xb7\xb3\x04\x88\x70\xe4\x1b\xd7\x3f\x3a\xa5\xf8\xca\x3f\x21\xc8\x8c\x98\x15\x37\x2b\xb1\x5a\x43\x7c\xca\x6a\xb6\x38\xb0\x96\x42\x6e\xd5\xfc\xae\xb2\x22\xff\x45\x9c\xe8\x4e\xfe\xa2\x9a\xa4\xe8\x9c\x01\x78\x82\xd7\x4c\x2e\xdc\x2f\x6c\x5e\xa2\x4d\x01\x6b\xff\x06\xc1\x28\x1d\x26\xaf\xfa\x3e\xd4\x86\x66\x27\x9e\x75\xc1\x6c\x1f\x94\xa5\x6f\x53\xf5\x52\x74\x36\x95\x73\xff\x7b\x81\x0f\x26\xaf\xd1\xcf\x45\x6e\x88\xea\x25\x4a\xd4\x9f\xf2\x8b\x91\x8d\x91\xa6\x2d\xea\x60\xbb\x61\x11\x8e\x15\xf4\x18\x72\x01\xc7\x2f\xf2\xae\xb0\x1f\x50\xe0\x87\x69\xbf\x1d\xd3\x56\x1c\x76\x28\x8e\x11\xa1\x0f\x1a\x2d\xfc\xae\x6d\xf0\xe9\xc5\xd4\x80\xc4\x3e\x82\x98\x4f\x1b\x74\xc9\xe6\xda\x5d\xd3\xef\x13\xab\xc4\xe5\x33\xeb\x35\xd5\xf5\x06\x09\x9d\xa2\xcc\x96\x2d\xe2\x7f\xc4\x76\x30\xb9\xe0\x6b\x17\x1f\x54\xab\x29\x8e\x20\x8f\x85\x40\x14\xa9\x0d\x5f\x4f\x7c\xa2\x14\x9a\x2c\x5b\x7b\xb8\x1a\x43\x2e\x31\x04\x6a\xd1\xbd\xab\xf0\xfc\x7f\x36\x56\x90\xc5\x8b\x78\x81\xf8\x57\xb7\x31\xb8\xc8\x41\x3e\xc0\x12\xc0\xc6\xf3\x1e\x4d\x09\x14\x70\x59\xad\x05\x6b\xe0\xe7\x08\x8b\xf9\x4f\xa6\x82\x27\x61\x0a\xc4\xd5\xc3\xcd\x28\xb6\x2b\x30\x02\xa2\xfa\x5c\x4d\x28\x01\x8e\x3f\x51\xf3\xf4\xe3\xfd\x59\x01\xd7\xbd\x47\xdb\x63\x0a\xe4\x95\x72\x08\x85\x03\xed\x13\x5a\x46\xc0\x2f\xb2\x8c\xaa\x78\x2c\xfa\x01\xfb\xfc\x3f\xf8\xe2\xaf\x2e\x7e\x06\x93\x0b\x68\x88\xe3\xa8\x07\xb3\xe0\x85\xd6\x53\x07\xea\x0c\xbf\xff\x71\x22\x44\xbb\xce\xa2\x17\x6f\xbf\xa2\x62\x7a\x36\x87\xc3\xa6\x71\x84\xb6\x57\x3c\xd9\xa9\xb1\xf6\x57\xa2\x6d\xae\x66\x9e\x87\x69\xf6\xda\xd8\xeb\x4c\xb4\x3a\xaa\xee\xc5\x4e\xe3\x38\x47\x2f\x07\x4a\x48\xf6\x35\x1a\x51\x44\xf8\x7b\x26\xca\x57\xf2\x63\xac\x6d\xa1\xf0\xfb\xd6\xe2\x6c\xa7\x9a\xd7\x48\x69\xf7\x76\xa4\x00\xd8\xcd\xd2\x64\x69\x68\x12\xd1\xed\x15\xe1\x2c\x35\xf4\x1c\x41\x61\xdd\x4c\xab\x24\xcd\xcf\xb7\x7b\x59\x3a\x1a\x09\x1d\xb9\xe6\x27\x8b\xdf\x77\x53\xf7\xc6\x67\xa6\xfa\xd2\xcf\xb4\x4d\xd6\x2f\xdd\xde\x0e\x74\xee\xeb\x34\x07\xf9\x5a\x35\x56\xc9\xdb\xb5\xcc\x00\x89\x43\x29\x00\xf2\x3b\x18\x24\x6e\x81\xe3\x38\xbc\xda\xe4\x24\x1a\x25\x4b\x51\x12\x15\x11\xcd\x34\x24\xb0\xfc\x0b\xf9\x26\xd0\xc2\x1c\x31\xa0\x10\x8f\xd4\xc4\x38\xaa\xaf\x93\x9a\x9f\x5f\x29\x24\xc4\x29\x9c\xe2\x6f\xa1\x18\xe8\x3e\xbf\x1a\x0c\xfc\x97\xe3\x88\x10\xf0\xb6\xd6\x29\x09\x63\xd1\x1d\x9a\x1e\xfc\x59\x18\x31\xfe\x0b\x8a\x03\x58\x86\x48\xf9\x3d\x55\x59\x92\x5d\xb5\xdd\x2e\x2f\x1b\xf0\x70\x8e\xe2\x4f\xf9\x66\x2a\x2e\x9f\x3b\xdc\xb6\xaf\x84\x36\xcf\x85\x36\xc0\x50\x42\x65\x5b\x7a\x4e\x91\x9e\xf2\x51\x94\x45\x24\x43\x38\x77\xb8\xc6\x65\xc0\x66\x77\x17\x87\xaa\x40\xe1\xf7\x28\x77\xb1\x6c\x18\x71\x61\x48\xba\x75\xaa\xef\xfe\x9e\x92\xe8\x03\xa2\x91\x19\x62\x4a\x66\xf2\x8c\x02\x70\xf7\x4d\x19\xa7\x51\x6e\x91\xfa\x38\x41\xb4\x2f\xbd\xa4\xa7\x9b\xf4\xa0\xef\xd6\x0e\xbf\xbe\x49\x1e\xa9\x1e\x1e\x1f\xfa\xbe\xe6\xcc\xe1\x89\x90\x60\x5f\x52\xb5\xb4\xef\x8e\x55\xb4\x73\x0c\x3b\x03\xdf\xe0\xe5\x61\x15\x41\xf2\x0f\xfb\x0e\x87\x77\x02\xd9\xd0\xc9\x0c\xbb\xce\x21\x98\x3d\x3f\x55\xd7\x3b\x38\xdf\x8e\x32\xa6\xb3\xa0\x72\x84\x70\x9f\xaf\x95\x50\xe8\x28\x4b\x57\x80\xc2\xc2\x6e\x7c\x8f\x1e\x19\xe8\xec\xc7\x11\xa2\x8b\x47\x95\x2f\xfc\x4f\xdb\xee\x90\xd9\x2d\xc9\x26\xcc\xa8\x4e\x06\x7c\xf3\xd5\x79\x2a\x01\xc8\xa3\x93\x06\xf2\x68\xbe\x6a\x6d\x61\x13\xf9\x08\xec\x43\xd7\x55\xf5\x8b\x71\x37\x92\xa4\x7b\xa4\x56\xb7\x5c\xdb\xeb\x47\xfa\x0e\x4d\x6d\x76\xbb\x1a\xd7\x1c\x15\xaa\xb5\x84\x1d\xe3\x37\x70\xea\x60\x2f\xb8\x55\x17\x09\xf3\xf2\xf5\xef\x53\xdf\x53\x5a\x89\x4a\xae\x0f\x6e\xa4\x98\xbb\x60\x6e\xe0\xd8\x60\xc6\x39\x7e\xfe\xfd\x6a\xf1\x6d\x6e\x9f\xd0\xaa\xc5\xda\xf9\x2b\xec\xdd\xfc\xb5\x63\x55\x26\xdf\x3e\xc1\xfb\xc5\xab\xbf\xda\x64\x34\x3b\xca\xec\xc8\x64\x32\x3e\x58\x1f\x38\xcb\xf1\x9b\x18\x2e\x84\x60\xe6\xc6\x14\xee\x8f\xc0\x32\xb1\x59\x5b\xcd\xa2\xfe\x00\x15\x3e\x8e\xbd\x55\xda\x78\x6e\xaa\xba\x5d\x25\xdd\x85\x1d\xb1\x12\x83\x98\x04\x56\x7f\x8d\x91\x00\xa5\x10\xb3\x67\x5a\xac\xff\xd0\xa1\x76\x66\x97\xca\x5c\x18\x76\xce\xc0\xc6\x27\xb7\xaa\xc5\x12\x15\x76\xb8\xcb\xf7\xfa\xae\x2b\x59\xad\x53\x1a\x64\x7b\x11\x07\x12\xc6\xf4\x1d\x55\xc5\x3b\x46\xa7\x1e\xff\xff\xb4\xf7\x49\xad\xa7\x61\x3c\x07\x26\xe9\xc5\xee\x88\xc0\xb6\x7a\x4c\x49\x71\x1f\x6b\x52\x48\xfa\x8f\x82\xb2\xe9\x74\x3a\x33\x91\x26\x7e\xff\x2f\xd8\xb7\x1d\x16\x44\x39\x18\x6c\x7d\x61\x5f\xff\x7a\xbb\x67\x57\x0c\x59\x60\xc1\x9b\xfd\x39\x8e\x77\xd0\xa4\x74\xd6\x24\x87\x0e\x71\x72\xf8\x6f\x94\x65\x75\x61\xb3\x95\x6a\x35\xcd\x7a\xff\x78\x2e\x47\x3a\x24\x4c\xf5\x20\x38\x82\xdf\xd3\xf9\x7b\xab\x41\xce\x6b\x9e\xf4\x3a\x55\xb1\xf9\x03\x0d\xf2\xfa\x60\xaa\xe1\x22\x61\xdb\x4a\x94\x43\x96\x16\xeb\x83\xd1\xe5\x7c\xe3\xea\x9e\xa3\xc8\x86\x72\x76\xa0\x42\x8b\x0c\x82\xaf\x1b\x5e\xde\x42\x7b\x64\x93\xc4\x24\x05\x61\xa4\x91\xa2\xe3\xdd\x69\x08\xac\x10\x89\x7d\xd9\x30\x8f\xfa\x49\x35\x17\xbd\xa1\x16\x9c\x18\x64\x25\x48\x9a\x15\xa6\xc3\x51\x9a\x33\x49\x0d\xd9\xd4\xfd\x69\x73\x30\xb9\x71\xed\xfd\x57\x6c\x58\x16\xe8\xab\x21\x3e\xbb\xa1\xbc\xa1\x6e\xa8\x9a\xfc\xaf\x2e\x7e\x71\xc6\x77\x4a\xa0\x00\xa0\x7c\xf6\xbc\x9d\xab\x5f\x1c\xa1\xc9\xc0\x32\x41\x72\x0a\x44\xb8\x74\x50\x94\x77\xc1\x65\xfa\x41\x98\x10\x67\xf1\x5e\x31\xde\x37\x71\xea\x20\x3f\xf9\x18\xa7\x0e\xe6\x13\xcc\x99\xf1\x27\x6f\x52\x46\x25\x3a\x54\x5b\xe3\xaa\xc3\xcf\xb7\x4d\xd2\xb7\x71\x8a\xf6\x18\x76\x59\x54\x66\xf8\xba\x4e\xe9\x89\x0d\x25\x1e\xce\x50\xc9\x15\xbf\xce\x34\x11\xe5\x49\xcb\x37\x2b\xa5\x2d\x86\x95\xff\x53\x6c\xfb\x7c\xa3\x5c\x79\x0b\x1b\x0e\x92\x34\x4e\xfb\x91\xcd\x77\x61\xf7\x94\xb3\xa6\xe5\x3c\xa1\x4e\x06\x0a\x16\xbc\x1e\x28\xeb\xc1\x4d\x0c\x9a\xc8\xa2\x56\x8f\x29\x54\x09\xfa\x6d\x28\xa7\x3f\xd1\xd9\xa3\xd8\x3e\x2b\x69\xc1\x1a\xf7\x6c\x76\x16\xf8\xed\x62\x7a\xeb\x14\x8f\x38\xd5\xe9\xdf\xa8\x79\xf5\xd1\x84\xc7\xeb\x3c\x39\x7e\xc4\xd3\x97\xd3\xa7\x3c\xb0\x6d\x14\xa8\xee\xdc\x0e\xe4\xab\x52\x5f\x22\x14\x2b\x12\xde\x4d\x65\x91\x7f\x39\x50\xf2\x0b\x57\x54\xc7\xfe\xa9\x89\xb2\x0a\x66\x47\x1c\x11\xe8\xa9\xde\xba\x04\x17\x5e\x6d\xfa\xfd\xb1\xde\x76\x30\x9b\xc4\xfe\x9a\x8e\x53\x14\x51\x2f\xe8\x22\xd1\xb9\xa0\xf5\xf4\xd3\xce\x96\xb3\x9a\x66\x9b\x1b\x4a\x7a\xea\x13\x3a\x54\x5d\xf9\xd2\x0b\xcd\x6f\x36\x91\x13\x7b\x16\xe6\xb9\x5a\x41\xe5\x23\xad\xa0\xf2\x51\xe0\xe9\xc7\x79\x91\xf6\x90\x11\xe3\x27\xbe\xa9\x94\x35\xde\x54\xce\x82\xd5\x2e\x10\x2d\x45\xa1\x49\x8a\xc7\x3c\x12\x9b\xcf\x4f\x47\xd5\xaa\x8e\x6d\x77\xde\x54\xc3\xee\x72\xc8\xea\xb7\xa2\xd3\x70\x1d\x93\xc8\x71\xa7\x9d\x2e\xc8\x69\xe5\x4a\x01\x06\x26\x82\xaa\x3f\xa3\x91\xc0\x1a\xb8\x8f\x2a\x26\x77\x4b\x6b\xf4\x1e\x7a\x9b\xe2\x30\xfc\xa8\x6b\x8f\x64\xcb\xf9\x23\xde\x65\x03\xc2\x30\x6e\x4c\x3c\x42\x55\x54\x2f\x45\x70\x46\x97\x85\x15\x3a\x60\x1b\xf2\x42\x44\x12\x4f\x22\xcb\x95\x18\x5c\x59\x5a\x8c\x3d\x36\xa8\x35\xa9\xe2\x63\xf9\xa8\x06\x7f\x18\xf6\x4f\x7a\x60\x5f\x66\xeb\x12\x59\xdc\xdf\xce\x63\x33\xe2\xca\x17\x3b\xc9\xd1\xd0\x89\xab\xdc\x5e\x47\xd5\x37\x79\x9a\x98\x2e\x53\x8d\x39\x4d\x0f\xfc\xd9\xf2\x89\x2b\xa6\xf5\xcb\xc4\x89\x6d\x0a\x05\x86\x46\x87\x6f\x9c\xda\x57\x37\x4d\x7a\x83\x94\xb4\x45\xf8\xf4\x71\x84\xf8\x17\xf7\x3b\x99\x90\x26\x63\xeb\x5e\x66\xcd\x50\x59\x07\x5c\xac\x21\x48\xbc\x5b\x27\xb1\x5b\xc8\xc6\x64\x4e\x7b\xd4\xbf\xac\x2d\xee\xe7\xfd\x8f\x71\x05\xf5\x4f\x6a\xdb\x68\x37\x5d\x6d\xa9\xd2\xc7\x31\xd5\xc2\x3d\xf6\xc0\x8a\x09\x87\x79\x6e\x57\xa8\x9b\x53\x6e\xdd\x7d\x11\x6c\xd8\x38\x1d\x49\x80\xa9\x31\x50\x52\xe1\xa4\xdf\x81\x0e\xd4\x71\xa7\x32\x11\xc6\x65\x17\x59\x19\xf2\xa1\x37\xc6\x35\xbb\xb9\x40\x49\x2b\x3c\xd6\xf1\x38\x99\x9d\x13\x85\xb0\xb8\xe5\xde\x89\x4d\x8a\x41\x99\x47\x26\x17\x21\xa2\xa6\x7e\x88\xef\xb3\x2f\xd9\x6c\x25\x85\x20\x8f\x23\x3e\x2e\xee\x77\xc4\xc7\x46\x82\x53\x1a\xdb\x64\x96\xd6\xad\xf8\x21\xb4\x9c\x65\xdd\xb6\x09\xfd\x78\xd4\x60\xee\x2a\x15\x98\xab\x4a\xcf\x64\x94\x96\x49\x6f\x57\xb5\x10\xf9\x90\x19\x7b\x07\x32\x68\xdb\xca\xe1\xe3\x0f\xa2\x8f\x03\x95\x7e\xff\xef\x28\xee\xc8\xb6\x5a\x7d\x0b\x68\x94\x47\xdc\x7c\xcf\x47\x36\x2c\x63\xef\x27\x2b\xaf\x43\xd5\x65\xa6\x75\xdc\xa8\x70\x42\xf0\x30\x04\xb5\x9a\x3d\x21\x20\x13\x85\x72\xf9\xd5\x5f\x9b\xf1\xd0\x8d\x19\x6c\x00\x48\x70\x66\x38\x1d\x41\xee\xf3\xdb\x8a\xf4\x5f\x85\xf3\x59\x37\xca\x07\x4e\x31\x50\xfb\x51\xf3\xb5\x8a\xe9\x97\x32\x6b\x77\xfa\x61\xbc\x38\x9e\xd6\x91\x40\x55\xf8\xe8\xd8\x23\xda\x6e\xa3\xb7\x80\xbc\xef\x67\xd8\x7d\x85\xfc\xb6\x4f\xd9\xa5\x87\x36\x5a\xb1\x19\x5a\x3e\xe8\xc5\xc3\x8e\x91\x55\xce\xc6\xbe\x08\x7c\xa6\xc9\x8e\x35\xa2\x20\xaf\x66\xd8\xcb\x86\x08\x7c\xe3\xe1\xbc\x64\xf7\xac\x24\x0b\x6e\x29\xcc\x1d\x97\x94\xe5\x0d\x3a\x11\x19\x6b\x96\x09\x12\xfe\x02\x17\x65\x77\x75\x7c\x96\x0a\x5b\x69\x47\x7a\x55\x72\x49\x4d\xa9\xca\x52\x94\x44\xf9\x40\x42\x64\xf4\x59\xdf\x57\x78\xe4\xf7\x55\x9c\x98\xa7\x71\x6f\x77\x4b\xf1\x4b\x75\x33\x27\x50\xf5\xd9\xa3\x18\x57\x54\x3e\x20\x43\xa7\x61\xc0\x40\x37\xbf\x47\xa7\x35\xb6\xef\xef\xd3\xd4\xc6\xd8\xce\x76\x9e\x50\xbd\x91\x28\xeb\xe5\xdb\x9a\xf6\xc9\x38\x5d\xb5\xd9\xac\x4a\x8e\x40\x32\x73\x15\x96\xea\x69\x90\x77\x43\x70\x03\xc5\xbd\x33\x53\x9b\x5a\x95\x81\xe4\xe1\xc0\xf6\x4a\x67\x20\x2d\xb2\xbc\xfa\x70\x7b\xd4\x6d\xbc\xc3\x28\x9c\xd1\x1e\xa4\x90\xf2\xe5\xbc\x52\x5b\x95\x6c\xeb\x34\xe4\xac\x79\x3a\xca\x4c\x02\x16\xa4\xd3\xf4\xaf\x86\x5e\xbc\x02\x1e\x24\x68\x93\x58\x93\x75\xd7\x76\xb4\xbe\xfa\x65\x1e\xa7\xd3\x2a\x3d\xbe\x1c\xa8\x4d\x1c\x95\x0d\x54\x8a\x37\x03\xed\xcd\x75\x4e\xc9\x62\x76\x0d\xa7\x2b\x2f\x3b\x87\x35\x55\x7b\x3f\x17\xec\x73\x73\xad\x1f\xe5\xb1\x29\xa2\x15\x96\xf4\xc6\x8c\xfb\x54\x71\x90\x90\x52\xb1\x44\x88\x42\x78\x14\x83\x34\x4b\xcb\xfe\x80\xa5\x6e\x19\x0a\x15\xf8\x5a\xe8\xc9\x26\x53\xad\x30\x59\xe5\x98\x4c\x4c\x46\xe8\xb7\x89\xfb\x88\x9c\x80\xfd\x2c\x4a\x7a\x6e\x3b\x72\x68\x3a\xa7\x78\xf8\xf1\x78\x8b\x17\xdb\xb3\x55\x72\xf7\x02\x66\x8c\xe8\x92\x68\x72\x24\xb3\xa0\xf9\x66\xec\x2b\x5c\x17\x1b\xf8\x11\xed\x6e\x9c\x86\xec\xe3\x21\x00\x6b\xdf\xd2\x45\xbb\x1c\xab\xe4\x93\x07\x1e\xa3\xcb\x99\x4d\x5e\xc5\xba\x93\x82\x87\x22\x19\xac\x6b\x59\xc9\xc2\x8a\x19\xdf\xcb\x7e\x54\xbc\x33\xdf\x9d\x40\x49\x20\x9e\x56\x7c\xb7\xd5\x28\x8e\x23\x33\xdc\xe1\x4f\x21\x28\xf2\x38\x9d\x00\xc7\xbf\xfd\x89\x16\x8a\x39\x1e\x68\x0d\x99\xe3\x9a\x55\x96\x0e\x09\xb0\xf3\xa2\x68\xbb\xb0\x3e\x0c\x36\x0b\xd4\x8c\xd0\x71\x7b\x4d\xb9\x05\xde\xd5\xb0\xcf\x24\x2f\xa2\x3e\x4e\x1f\xcf\xb6\xc3\x21\x2c\xc6\xc3\xfe\x3c\x34\x49\x61\xb2\x5d\xca\xcd\xed\x3a\x62\x64\x51\x74\xa1\x2f\xc7\x7e\x72\x9a\xf6\x16\xb6\x22\xa5\xb8\x58\x6c\x49\x69\x86\xb8\xff\xe0\x2c\x83\xa6\x85\x2d\xe0\x54\x67\xb3\xd0\x64\xe8\xf8\xca\x34\x55\xce\x05\x27\x03\x9d\x27\x0e\x47\x36\x33\x24\xd3\x40\x63\x82\xe8\xf7\x06\x1e\x8b\x6f\x68\x1c\x10\x1f\x5e\x56\xe6\x72\x97\x35\xf4\x22\x85\xce\xe1\xcb\xbc\x4b\xb1\xb0\x10\xdf\x34\xb1\x30\x6d\x54\x0c\xaa\x53\xe3\xc0\x01\x5e\xf4\x88\x57\x35\x0f\x5d\x14\xcd\xb6\x2e\xb1\x5f\xa2\xe0\x94\x7e\x1e\xf6\x88\xd3\x9a\xdc\x7e\xda\xb1\x61\x8a\x34\x4b\x76\x56\x41\xb9\x28\x96\x2b\xee\xf5\x6d\x55\x04\x81\x4b\x9e\xe8\x71\x79\x10\xc0\x39\xa5\xbe\xad\xe5\xb6\x4c\x31\x88\x6d\x11\x85\xac\x79\xc9\x62\xa3\xca\x1e\x12\x42\x9b\x98\xae\x77\x82\xcf\x6c\x45\xdc\xbd\xdc\x7e\x71\xff\x1c\x69\xfb\x61\x16\x1f\x55\xda\x81\x47\x6b\x3c\xb0\x9e\x1d\xf2\x4e\x82\x92\x2f\xef\x92\x7c\x53\x8b\x83\x8b\xcc\xee\xac\x72\x5e\xa0\xd6\x45\x96\xf2\xb8\x92\xfc\xe4\x02\x13\x46\x78\x1b\xa1\x0b\xb1\xde\xc0\x15\x43\xe6\x7f\x29\x78\x4a\x85\x33\x79\x91\x95\x61\x41\xed\x1f\xc7\xe9\xb9\xa2\xbc\xeb\xfe\x15\x3e\x12\x0b\xf0\xb2\x22\x4e\x24\xe4\xd9\xd0\x72\xec\xa3\xe3\x9a\x9f\xfd\x4f\x39\x08\x16\xad\x68\x1f\x75\x45\x89\xdd\x47\x63\x8a\x53\x78\x27\xf5\xd3\x90\xa9\xed\x21\x78\x05\xf2\xeb\x0b\xe0\x92\xa2\x3c\x21\xce\xc2\x38\x53\x36\xc6\x4a\x93\xa6\x35\xa9\x0e\x1b\x01\x2f\xa8\x94\xfe\x3c\x62\x4c\xca\xe3\x7f\x71\x0f\x75\xea\x90\x76\xa2\x39\x82\x08\x19\x6c\x1e\x1c\xcd\x7b\x3b\xd5\x44\x45\x68\x79\x14\x8d\x4c\x91\xb9\xad\xc6\x11\x61\xff\x3e\x60\x43\xf0\x15\x77\x75\x87\x62\x2f\x7c\xf0\xb0\xaf\x6f\x34\x45\xde\xdd\x32\xeb\xd9\x84\xe8\x33\x58\xdb\xec\x7c\x24\x8d\x71\x55\x0e\x01\x8e\x18\x7b\x76\xab\xe3\xa7\x65\x99\x84\x03\x0b\xdb\x36\xd7\xeb\x3f\xad\x76\x8b\x9a\xbe\x64\x3a\xb4\xbd\xb5\x5d\xf4\xbc\xce\x09\xe9\xc0\x9c\x73\xb5\xf1\x95\x18\xc6\x1a\x70\x8f\x88\xc7\x5a\xe3\xa1\x99\x67\x31\x56\x35\x81\x26\x14\xca\xcb\xe4\xe7\x8b\xf0\x04\xf9\xeb\xf7\x15\x03\xee\xfb\x5e\x68\xd5\xc6\x14\xb7\xb6\x94\x77\x21\xb3\xdd\xc4\x3c\xcc\x13\x03\x87\x26\x1c\x44\x89\xcd\x77\x79\x2c\xd3\x43\xd4\x58\x11\xe1\x1f\x3f\x55\x8f\x07\x0a\x56\xbc\x89\xe8\x4a\x1c\x05\xe8\x7d\x8a\xc7\x24\x3d\xa1\x04\x61\x8d\xae\x08\x84\xb5\xaf\x1e\x08\x55\xa8\xe3\xaa\x2f\xf4\x67\x5a\xf5\xf8\xcc\xd4\x30\x54\x29\xfd\xc8\x99\xe7\x22\xef\x3b\x82\x08\x97\x6f\x54\x37\x74\x64\xb3\x3c\x4d\x12\x0b\xe8\x9b\xd3\x62\x76\xd2\x24\xa7\x1a\xac\x21\xda\xa3\xb8\x4c\xfa\xa8\xb2\x4a\x0b\xcd\x77\x33\x8e\xb9\xad\x71\x29\xca\x86\x0f\xb5\x9c\x07\xf7\x1e\xe0\x46\xc4\x04\x47\xa9\x0a\xcc\xd0\x12\x74\x78\xc5\x29\x1b\x7c\xc4\x52\xb3\x60\xfd\xb3\xd9\x29\x7d\x23\x5e\xd6\x2f\xa2\x4f\x26\x1e\xe6\x7b\x95\x83\x5c\x51\x0c\xec\x6a\x4e\x1b\x0b\x02\xf0\xdd\xa4\x3c\x24\x69\xbc\x2a\x22\xcf\x74\xfc\x9e\x34\x5a\xcb\x5f\x5d\x8e\xec\x6a\x14\xbe\xda\xf2\x44\x47\x9c\x9c\xe2\xea\xdc\x44\x06\x0d\x8d\x2b\x94\x49\x6d\x9b\xbe\x41\x8a\xdb\x9f\xab\xf3\x63\x0c\x9b\xd6\x81\x9b\xc7\x3c\x64\x0a\x3c\x84\x93\xec\x27\xa1\x61\xe5\x6a\xfa\xa7\xd8\x93\x2e\xd1\x3f\xe5\xeb\xa9\x80\xf8\x99\x6a\x67\x1d\x81\x64\x17\xc3\x4f\x1b\x31\x1b\x8e\x3d\xec\x12\x77\x95\xa5\xc9\x45\xf5\x6d\xab\xd6\x2e\xc7\x6e\x0a\x71\xbf\x82\x66\x85\xf4\x2e\x1a\x5a\xd0\xa3\x2a\xe8\xb7\x19\x24\xf2\x10\xf4\x5f\x56\x7a\xb9\xff\x87\xf2\x09\xbc\xdc\xe4\x82\x96\xa7\x61\xc8\x5d\x6f\x0c\x32\x52\x49\xbe\x9e\x28\x72\x91\x19\x8e\x4c\x62\xb3\x68\x8b\x2b\x87\x57\x80\xc2\xde\xc2\x64\x4e\x37\x1f\xbb\x65\xbc\xbc\x53\x31\xd1\x2f\xd1\x5f\x88\x30\x5b\xf5\xbd\x38\x1e\x19\xb0\xe7\xe4\x8d\x1c\xa8\xff\x8a\x82\x49\x7e\x5f\x0b\x74\xc4\x76\xa7\x52\x97\x78\x52\x61\x9f\x7e\x97\x7e\x35\x22\xc4\xcf\x11\x12\xcb\x21\x4a\x68\xd2\xa2\x29\x75\x97\xbe\x04\x07\xe5\x35\x8f\xf2\x1d\x98\x34\x9f\x51\xf0\x2c\x78\x53\x6f\x5e\x52\x47\xe9\x34\x90\xf2\xd0\xa1\xf6\x52\x9c\xae\xf2\xde\x86\xda\xc7\xbf\x55\x75\x90\x7f\xab\xe2\xc6\x38\x5a\x2a\x72\x0a\x12\x70\x68\x42\x72\x8b\xaf\x6b\x41\x42\x3e\x88\x76\xfb\xe6\x01\x43\x19\x50\xa2\xbe\x87\xdd\x0c\x6f\x1c\xdd\x1c\xc7\xcd\xa8\x1e\xc1\xd1\x2c\x75\x16\xa0\x70\xbe\xa2\x15\x80\xb0\xe6\xdd\x06\x7d\xe8\xc5\x36\x84\xae\x55\xfb\x8b\x8b\xe7\x22\x78\xe0\xb9\x7d\x3d\x1b\x92\x85\xd4\xa1\x43\x1c\x91\xfd\xb9\xb2\x90\xfa\xf3\x69\xbe\xc5\x5c\x7b\x10\x81\xd3\xb6\xe0\x35\xcc\x7c\x1f\x6c\x1a\x76\xfa\xd2\xe2\xfe\xb6\xc9\x97\xab\xc8\xe3\xc5\xfd\x3e\xf4\xad\x86\xc0\x85\x40\xd5\xe0\x60\xde\xde\x52\xfa\x18\xf9\x20\x5a\x2a\x76\x55\xa3\x8d\xad\x1b\x9c\x6e\x1c\x73\x2d\x25\xdd\x72\x67\xac\x7a\xe3\xc7\x03\xd5\xb1\x46\xa4\x85\xbc\xf9\x87\x34\x7b\xa5\xe1\xf0\xa0\x7c\xb8\x6b\x4d\xc8\x03\x57\x03\x2c\x8b\x72\xf2\x13\x35\x67\x89\x0c\xe4\x2c\x4c\x57\xd0\x3e\xf8\x5a\x49\x2e\x84\x03\x9b\x95\xdd\x5c\x67\x94\x27\x15\x3f\xeb\xe4\x78\x9f\x42\xb3\x64\x66\x98\x96\x49\xc1\xa5\x00\x31\xf2\x52\x92\xd0\xb7\x35\x81\x67\xa6\xe3\x17\x95\x11\x19\x48\xe1\x78\x78\xd0\x1c\x36\x06\x6c\x5b\x37\x1b\x6d\x32\xb3\xb4\x6b\xb3\x22\x4f\x13\xfe\x62\x8c\xd8\x29\x85\x50\xe1\x50\x8d\x8b\x41\xaa\x5e\x36\x32\x59\xf1\x30\xf5\xe6\xa4\x6c\x4b\xff\x10\x80\xab\xf3\xc0\x6b\x21\x37\x39\x43\x1b\xb0\x28\x94\xb7\x9c\x21\xf1\x15\x9c\x5a\x38\x64\xa0\xfb\x82\xb2\xc5\x5d\x55\xd7\xf9\x17\x58\x1c\xf8\xeb\x93\x5a\x74\xf7\xe4\xf8\x61\xfe\x45\xed\xaf\x7e\x79\x97\x57\x78\x03\x64\x88\x41\x64\x4a\xa7\x8b\x45\xf3\x44\x89\x9c\xa2\x56\xec\x17\x7f\xa8\x33\x57\xfc\x0c\x74\x98\xfe\xac\x49\x84\xdd\x24\x6b\xb0\x8c\xaa\xe6\x9b\xdb\x53\x17\xf7\x8b\x8f\x22\xad\x23\x41\x18\x37\xe8\xe4\x44\xc3\x51\x96\x8e\x58\x36\x06\x45\x3a\xcc\x6a\xd1\x41\xf7\x42\x6d\xeb\x1e\x1d\x19\xc5\xdd\xcc\xae\xa1\xba\x8e\x49\x7e\x5e\xa1\xc4\xce\x8f\x9f\x72\xf3\xae\x1b\xa5\x99\xcd\xad\xc9\xc2\x41\xcb\x67\x71\x60\xa0\xf2\xb5\x42\x17\x65\x69\xb7\x6b\x49\x4c\xd1\xf7\x46\x3f\xc4\x8b\xe1\x9b\x06\x87\x88\x85\xb6\x49\x92\xb4\x4c\x42\x26\xb1\x3b\x70\x98\x72\x99\x9a\xe6\x12\x2e\xb4\x7b\xd6\x8e\xb8\x2f\xc2\xdd\x40\xa5\xa1\xbf\xe9\x4a\xca\xfd\x74\xc5\x66\xe4\x9f\x3b\xdb\x9a\x9f\xdf\xdc\xc0\xc6\x89\x6a\xfc\xba\x12\x15\xdb\x36\x51\x6c\xfb\xeb\x8a\x7e\x9b\x26\x45\xba\x5b\x2f\xfb\x6a\x33\x71\x12\x17\x3e\x88\xa8\xab\x22\xd7\xf4\x92\x6b\x1b\xc8\x41\xd9\x4e\x37\xd0\x14\x11\x8d\xd4\x2d\xd9\xe4\xa1\x43\x2f\xb4\x5f\xdc\x3f\xdf\x52\x80\xe8\xf5\xb1\x46\xca\xea\x1c\x31\x4d\x93\xc7\x7c\x7a\x0b\x70\x0e\x1b\x21\x41\x4c\x46\xf0\x0b\xd5\x59\x8a\x0d\xe1\x26\xa6\xbf\x43\xad\x7a\x64\xf5\x07\xb4\xc9\x89\xa1\x89\xaf\x06\xfe\x7f\x63\x55\xdf\xf8\x08\x68\x14\x8c\xf6\x0d\x92\x1d\x14\x9c\x54\xf5\x6b\x9d\x34\xf0\x4b\x02\x0c\xda\x36\x05\x7f\xaa\xa6\xff\xd0\x66\x51\xe8\x51\x93\x88\x7f\xcf\x05\x0a\x76\x73\x5c\x93\xb4\x7e\x3c\x75\x96\x1c\x7e\xbe\x3d\x4a\x19\xa4\xd1\x64\x8d\xaf\x44\xe6\xad\xc9\x5c\xf9\x5e\xc4\x97\xbd\x16\xed\x05\x57\x47\xa5\x3a\xcb\xac\x3f\xcc\xee\x2b\xe0\x0f\x94\x55\x5d\xee\x56\x1d\x19\xa2\x49\xe7\xa9\x27\x79\x98\x95\x45\x94\xac\xed\xa8\x3e\x43\xc4\xdf\xf1\x03\xc5\x2c\x92\xd6\x3b\x6b\xf6\x29\x99\x27\x3e\xa3\x31\x6f\x2e\xa9\x13\x76\x60\xb3\xae\xc0\x89\xb4\x9c\x1e\x5f\xbb\x92\x28\xf9\xbc\x24\x24\xdd\x47\xdf\x8e\x4f\x6a\x51\x4d\x40\x8a\x8f\xd5\x2f\x40\x6d\x1b\xa2\x6b\x62\x0d\xa9\x48\x35\xd3\x56\x7b\xf3\xf3\xed\x30\xca\xc2\x32\x36\xd9\x5f\x13\xa1\x7a\x8c\x1d\xa9\xdf\xef\xf1\x36\x07\x3b\xa9\xd4\x8e\x0e\x08\xbf\x5f\x24\x07\x68\x7c\xd6\xfa\x10\xae\x52\x5f\x0d\x92\xe2\xad\x39\x01\x3b\x7a\x6d\xc8\xd1\x1e\xee\x78\xa1\xdf\x13\xdc\x01\x96\x27\x53\x22\x4e\xe0\xaa\x23\xb3\xff\x27\x8a\xea\x75\x35\x50\xc2\xd0\x57\xb1\x8f\x3b\x0d\xa0\x97\x16\x36\x8f\xab\xd4\xba\x0a\xdc\x2c\x64\x82\x44\x2f\xcf\xef\xba\xe7\x03\x75\xa4\xde\x1e\xeb\x46\xd2\x05\x55\xa4\xcc\xd2\xb2\xb0\xc8\x8d\xb8\x58\x1d\xf8\xd8\x9b\x73\x4c\xe9\x41\x6c\x35\xa8\x91\xf0\xc2\xd1\x85\x67\x94\xb8\x05\x3b\x0f\xa1\x90\x00\xfd\x21\x84\xe2\x57\x6a\x1b\xc5\xa0\xc8\xf7\xb6\x94\xa9\x1c\x8d\xb7\xa8\x84\xab\x8e\xd3\x5b\x63\x05\xb3\xd8\xa8\x49\xf9\xcf\xa2\x81\x8e\xc8\xf1\x26\xed\x28\x38\xa7\x7f\x34\x56\xa7\xdd\x15\x1c\xda\xd8\xdc\x90\x35\x81\x99\xb3\x41\xa6\xe7\xa8\x00\x1e\xc7\xd9\x80\x11\x9c\x9d\x28\xbb\x82\x9f\x21\x8f\xe7\x87\x09\xbc\xfe\xe0\xc5\x80\x28\x06\x02\x85\x6d\x39\x11\x9b\xdb\x8a\x92\xf6\xcd\xd2\x64\x24\x46\xb8\x53\xe3\x47\x8f\x8c\x15\x41\xed\x6d\x1a\x77\x3c\xc6\x15\xec\x65\x1a\xcf\x80\xb3\x7c\x66\xa2\xe8\x18\x33\x1d\xef\x28\x9e\x2c\x95\x39\x72\x71\xb1\x82\x6d\x39\x0f\x86\xd3\x5a\x22\xa9\xec\xf7\x6d\x5e\x90\xcc\x8d\xe8\x27\xfa\x80\x02\x88\x36\x67\x52\x70\x70\xde\x75\xcb\x25\x7b\x2a\x73\x3e\xda\xa5\xa0\x51\xfd\x31\xa0\x1d\xff\x78\xec\x0b\x40\x97\x5c\xeb\x81\x3c\x5a\xd3\x6c\x6d\xd6\xff\xc7\x47\x70\xb0\x39\x68\x8a\xd7\x2e\xc6\x56\x8d\xb9\xf7\x48\x47\x55\xd2\x07\x51\xaf\x3a\xc3\x9d\xe4\xfe\x05\x25\x3a\x70\x41\x6d\x74\x9c\xed\xa2\xc0\xcc\xe0\x2b\x2c\x28\x87\xc4\x9a\x7f\x80\x23\x77\x03\xcd\x71\xa5\xca\xfe\x1d\x28\xc1\xf5\x04\x7c\x7f\x60\xac\x7d\xea\x07\x4b\x69\xf9\xaa\x32\x85\xfb\x7a\xe0\xe1\x43\x5f\x6f\x80\x64\x2e\xb6\x33\x5b\x94\x59\x82\x20\xc3\x75\x19\x5c\x02\x7a\xb2\xb6\x4e\x96\x6d\xef\x31\xfa\x87\x18\xa9\x77\x94\x52\xd9\xb6\x8e\x87\x9a\x33\xbf\x8e\x2d\x4b\xb0\x05\x38\x41\x34\x87\x87\x7b\x07\x6b\x01\x9b\xcc\xed\x71\x8d\x01\xa6\xf4\xa1\x38\x75\xc3\xe3\x9c\x55\xea\x59\xc0\x27\x03\x99\xf1\x28\x29\x37\x8b\xf0\x91\xf4\x61\xe2\x34\x64\x7c\xa6\x3e\x66\x8e\x8f\x95\xa4\xfb\xf1\x26\x04\x7b\x9a\x45\xfd\x28\x61\x0e\x26\x92\x67\x84\x8f\x7c\x3d\xd9\xa7\x2b\x72\xcb\x36\x79\x35\x42\x9a\x87\x22\xd0\x06\x7e\x31\xdf\x34\x24\x05\x6d\x93\xe7\x69\x56\x38\xa5\x53\xf1\x7f\x6a\x39\xa3\xec\x69\x53\xd3\x2a\xf0\x11\x60\x35\xaa\x8a\xf8\x97\xe8\x1d\xf2\x75\x2d\x4f\xfe\x46\x9a\x3d\x4c\xdb\x85\xd4\x11\x5b\xce\x86\xef\x9f\x05\x4a\x1e\xfa\x16\xef\x63\x58\x65\xdf\xd1\x34\x10\x74\xa9\x99\xb8\x86\x53\x08\xef\x61\x73\xac\xca\x86\x57\x11\xb1\x21\x1e\xdf\xc4\x76\x87\x57\x71\x5f\xc9\x3e\xf4\x4c\xb6\x8c\x0a\x82\x93\x06\xac\x3e\xc2\x29\x12\x3a\x0a\xf5\xed\x46\xd3\x03\x33\x8a\x6d\x52\xac\xa1\xcc\x22\x1c\x78\x0f\x08\x47\x2f\x19\x6b\xf1\x8d\x5a\xa3\xc0\x24\xc9\x83\x8d\xe0\x1a\xd8\x83\x4b\x69\x99\xf0\x08\x3b\x3c\x8f\xc7\xf6\x34\xf2\xc1\xfb\x69\x01\x03\x31\xb1\xe5\xc0\x80\x8a\x61\x47\x93\xd2\x2d\x84\x3c\x79\x8a\x09\x68\x50\xd1\x44\xce\x05\x9f\x9f\x26\x8c\x7e\xa1\x9d\x97\x23\x9b\x85\xe9\x70\x54\x92\xf0\x46\xf5\x76\x71\x92\x7f\xa2\xce\xb6\x6b\x2a\x0f\x99\x6e\x9f\x1f\x9c\x6f\x0f\xa3\xde\xaa\xcd\x0b\x9b\x25\x8a\xe6\xb2\xad\xe3\xbb\xe7\x2c\xa1\x82\x70\xfe\xe8\x58\x37\x2c\x5e\x6d\x69\xb8\x6b\xe0\x31\xb1\xda\xcb\x66\x34\x88\xe2\x68\x34\x62\x81\x7a\x69\x51\xb6\xbe\xf4\x92\x6b\x50\xfa\xc2\x4f\x61\x46\x52\xdd\x13\x71\x2e\xff\xf8\xda\x98\x29\x31\xa3\xe5\x48\xcc\x32\x44\x13\x5b\xe1\x54\x4e\x4f\x65\x92\x2f\xee\xaf\x06\x6c\x94\x66\x94\xe4\x78\x98\xbc\xd3\x72\x47\x37\x83\x11\x0d\x38\x75\xbd\x31\x8f\x2a\x90\xe6\x51\xcf\x66\xbb\xa9\x7b\x20\x03\xe4\x61\x2c\xef\x6a\x54\xe6\x29\xad\x1c\x2c\xc8\x19\xc4\x34\x67\x14\xcf\x06\xaf\x0b\xe9\xc0\x0c\x6a\x71\xfc\xc1\x53\xc6\x31\x12\xdf\xe4\x26\x4e\x87\x69\x32\xe3\x4b\xff\x17\x95\xdc\xdd\x79\x8d\x83\xbc\xa7\x5a\x4c\xe9\xc8\x3e\xd2\x3a\x30\xe7\x0e\x0b\xfa\x91\x58\x9d\x4f\xd2\x96\xed\x98\x27\xd5\xc2\xc2\x01\xb5\x31\xf6\x7a\x6f\xbb\x68\x5a\x20\x99\x9b\x9d\xf8\xb4\x67\x6f\x47\x95\x96\xd0\xb8\x12\x65\x67\xe5\xc5\xc1\x7c\x29\xf0\xdb\xae\x36\xf5\x45\x4d\x56\x44\x79\xa1\x34\xc7\x3e\xae\xa9\x38\x3f\xa1\xcc\x70\x96\xd2\xcc\xee\x25\x05\xf9\xf7\x28\x2c\x40\x61\xe0\x32\x7e\x12\xfa\xd6\xcc\xa3\x60\xc2\x50\xa0\x84\x80\xe4\x5d\xa0\xa7\xb5\xad\xa3\x42\xea\x0f\x00\x8b\x71\xae\x20\xde\x88\x77\x03\xc1\x36\x23\xf4\x29\xc5\x15\xd1\xc4\x6a\x84\xa4\xec\x43\x3b\x26\x93\x9f\x15\x2e\xe6\xe1\x89\xdf\xdc\x1f\x57\xc3\x78\x5e\x93\xad\xaf\xba\xfa\x43\x5e\x58\x13\x17\x28\x28\x60\xeb\x60\xdb\x03\xbe\x09\x3c\xf0\xaa\x17\xe5\x69\xd7\xf6\x28\xa1\xd9\xe5\xd1\xca\x3b\x3b\xbe\x81\xbb\x73\xa2\x00\x7a\xa7\x03\xa5\x57\x0e\x18\x0a\xb2\xac\x5b\x94\x13\x63\x01\xc0\x6d\x45\xe8\xe7\x0d\x10\xa9\x7c\x39\xea\xf5\xb6\x40\xa4\xc6\x1a\x22\xd5\x24\x2a\x94\x57\x87\x9c\x22\xeb\x9d\xa0\x2d\x43\x1a\xe5\x4d\xad\x8b\xbe\x61\x0d\x3a\x0e\x01\x03\x55\xa0\x5d\x1f\x6b\xe7\x6d\x6b\xfc\x19\x8a\x57\xf9\x03\xa5\x7b\xf3\x83\xa9\x46\xc4\x81\x03\xb4\x98\xd3\x38\xea\x19\x86\xe6\xb3\x08\x8c\xa2\x18\xfc\xb8\x09\x74\x95\xc6\x6b\xc3\x51\x14\xe6\x35\xab\x9e\xe3\x58\xf8\x1e\x73\xc1\xc1\x66\x1c\xe5\x26\xeb\x99\x96\x06\xa4\xd4\x40\x2c\x7e\x4f\xcb\x4c\xb5\xb3\xb4\x68\xfe\x21\x12\xbe\x83\xc6\x22\xdf\x4c\x7b\x85\x1c\xa8\x82\x59\x9b\x71\x9c\x2d\x2a\x88\x2d\x67\x36\xf6\x69\xe0\xe5\x3c\x9f\xe7\xe3\x52\xb4\x31\xf0\xf0\xb5\x0d\x03\x99\xc8\xad\x5a\xe0\x50\xa4\x2b\xa8\xd8\x8b\xba\x8c\x22\xc3\xbe\xab\x1e\x7e\x29\x8d\xf3\x14\xc8\x57\x57\x2e\x73\xbd\x83\xf3\x6e\x5e\x0f\xd2\xb8\x67\x25\x3d\x16\x71\x18\x55\xc8\x3c\xad\x34\x9f\xaa\xa3\x2d\x36\xe4\x8f\xaf\xd2\x7f\xa2\x61\x49\x29\xc0\x9f\x1c\x3d\x1b\x17\x66\xb6\x75\xe0\x80\xae\x35\x89\x44\xca\x5b\x5a\x71\x8f\x4f\x7d\x34\x75\xef\x05\x0f\xbb\x39\x14\x3c\x44\xf3\x17\x9b\xc7\xf1\x40\x21\x70\x6f\xea\x8e\xc1\x65\x5a\x26\xe2\x14\xa4\xb6\xfb\x8b\xba\xab\x76\x8a\x07\x98\xf9\xcf\x0a\x36\x75\x56\xf1\x45\xee\x35\xcd\xaf\x30\x1d\x76\x23\xc7\x77\x63\xd9\xf4\x3a\xcd\xba\x7a\x4e\xec\x2b\x1f\x4e\x45\x14\xcf\x38\xc0\xae\x34\x92\x71\xbe\x7d\x88\x41\xe0\x1b\xa5\x06\xb4\x3a\xb0\xc5\xc0\x66\x4f\xd0\xd7\x39\xbe\xe3\x41\xe5\xbb\x39\x77\x98\x77\xae\xcb\x84\xfa\xc3\x3c\xf9\x93\xa0\x55\x77\x28\x7e\xd9\x3f\xab\x13\xe4\xc0\x73\x4b\x5f\x41\xe1\xe8\xcf\x60\xe4\xf0\x75\x1f\x8d\x6b\x22\xbf\x48\xac\x51\x44\x7b\x0d\x3b\x3a\xff\x51\x4d\x0d\x59\x21\x3a\x76\x4c\x51\x93\xe6\x0e\x57\x91\x0d\x1f\x26\xa2\x39\x41\x7f\xc1\x37\xea\x34\xf9\x86\xc9\xfa\xdc\x8c\xc0\x4f\x03\xea\x87\xaf\xb5\x24\x2b\xba\x9d\x8f\x78\x1c\x3a\xef\xf7\x68\x5b\xfc\xbb\xc0\x93\x06\xbe\xab\x60\x8b\x4f\x76\x14\x8e\x93\xd7\x1a\x37\x3a\xc7\x9e\xa3\xf6\xae\x1e\x1e\x06\x4a\x31\x01\x9b\xde\x06\x6a\x03\xb7\xe8\x0d\x60\x26\xff\xa9\x02\x04\xe6\x23\xaa\x76\x54\x7b\x07\xbb\x91\x80\xa8\x50\x43\xd7\x0a\x7b\xf1\x31\xb5\xc0\xcd\x6a\xab\xf5\xd5\x2f\x0b\xf7\x25\xf0\xc3\xb5\xa9\x90\x68\x5d\x13\x2e\x47\x49\x9f\x15\x85\x51\x38\xe7\x1d\x8f\x6f\x94\x1e\xd0\x7a\xcd\xb7\xd4\x57\x89\xcd\x3f\xfc\xbb\x68\x29\x8b\x52\xd2\x5f\x0b\x17\x78\x71\xff\x73\xed\xae\x35\x88\xd6\x50\x1a\x47\x54\x2a\xd4\xa6\x6a\xe4\xd0\xd9\x7a\x97\x0e\x2b\xd1\xa2\x7e\x28\x6a\x8f\x32\xbb\xf4\x2b\xed\x57\x66\xc8\x28\x04\x31\xf4\x77\x6a\x8e\x1e\xad\x5f\x7b\xc1\x95\xdb\x1b\x20\x4a\x2f\x2d\xee\x27\x97\x3d\x77\xd6\xcf\x1d\xd6\x02\x33\x0b\xce\x9e\x8f\x8a\x61\x62\xdc\xb7\xf5\xc0\xfb\xca\x5c\xbb\x18\x98\x82\x54\x94\x99\x5c\x85\x2a\x0a\xc2\xca\xab\xaa\x08\x7b\x87\x7e\x0d\x80\xf1\x3f\x52\x4e\x7b\x3f\x6a\xb6\x51\x8e\xed\x8a\x61\x8b\x3c\xcc\x1d\xa0\x58\xf9\x3a\xd8\xab\x8a\x30\x51\x36\x24\x51\xd0\x43\x87\xf8\xed\x03\xa1\x80\xe4\xf5\x3f\x60\xf6\xb2\xe1\x80\x2f\xde\x94\x59\xe6\x6a\x67\xbc\x8e\xe9\x0b\xd0\x58\xdd\xae\x7a\x82\xb7\x55\x3e\xf0\x5f\xff\xbd\x5f\x26\x3d\x39\x49\x07\x6a\x54\x38\x5f\x97\x30\x2b\x69\xd4\xb3\xbd\x19\xe5\x2d\x18\xa8\x9e\xf3\x59\x45\x2b\xf9\xa1\x9e\xe0\x45\x94\xa1\x27\x5c\xa3\x83\xf3\x8d\x82\x5f\x7d\xb3\x34\xcb\x96\x2a\x33\x58\xa2\x17\xa8\xfe\xc6\xd7\x8d\xf8\x88\xd4\x38\xeb\x07\x24\x8d\x0c\x79\xe7\x9b\x89\x32\x90\x1c\x58\xe8\xb1\x54\x91\xa0\x98\xf0\xb7\x9c\x25\xca\x85\xc0\x33\xfe\xe8\xe8\x9a\xf1\x9a\x92\x9b\x14\x0c\x6a\x5b\x63\xfc\xde\x75\x05\xb9\xcd\x6c\xbf\x84\x0a\x00\xcd\x7a\xa1\x4d\x78\x36\xcf\xa7\x48\xc8\x05\x2e\xe7\x97\xc3\x39\x45\x7b\x7e\x35\x1a\xed\xa8\x69\x37\x2f\x8a\xca\x0f\x5a\x15\x2c\x55\xad\x76\xe6\x4f\x69\xca\x09\xf6\xc2\x6f\x8c\x45\xd4\xeb\xb2\x44\x88\xcb\xf1\x0e\xfa\x1c\xaf\x01\x80\x49\x4e\x11\xb1\x2d\x11\x09\x60\x77\xc7\x37\xf1\xb5\x02\xa4\x53\x53\x42\x8b\x3f\x28\xdd\xb9\x53\xda\xd0\xe3\xd9\xe8\xd9\x96\x87\xfe\xdc\x56\xa2\x76\xb7\xa7\xb2\x88\xa7\x9f\x6e\xf7\xb3\x74\x35\xce\x67\xfc\xea\x38\xb6\xc5\x0a\xac\xda\x8c\x71\xba\xdc\x56\xda\xcf\xa3\x2c\x1d\xa5\x39\x63\x92\x05\xcd\xf8\x53\x6d\x7b\xf4\xd3\xa6\xa4\xb2\x9b\x45\xf9\x72\xbc\x46\xd3\x19\xd1\x14\x4e\x0f\x94\xee\x3f\xa2\x91\x95\xfe\x95\xb4\x4f\x46\xb1\x59\x13\x6a\xa2\xc3\x2a\xba\xfa\xd5\x19\x3c\xae\x98\x4a\xf9\xee\xdd\x8f\xf4\xa3\x73\x8d\x19\xf3\x82\xb3\x1b\x11\x07\x7e\x44\x29\x9d\xd0\xc8\xa1\x92\xcf\x72\x6c\x7c\x33\x69\x52\x1f\x0d\x07\xd6\xb2\xf9\x0b\xea\x07\x27\x95\x5f\xd8\x49\xd5\x2a\x4a\x29\xee\xb4\x2d\xda\xd0\x44\x1e\x5f\x53\xd0\xa6\x4d\x93\x16\xc8\x1b\x2f\xb3\x79\xbe\x54\xa2\xd6\xc1\x35\x56\x3c\xbc\x14\x5c\xf7\xaa\x98\x6e\x98\xc6\x51\x3e\x68\xd5\xe4\x71\xab\x97\x23\x14\x22\x29\x02\x2f\x47\x3d\xbc\x70\x55\x3d\x11\xfc\xe1\x2c\x6d\x57\xac\xef\x55\x57\x34\xcb\xf3\xcf\x54\x11\x23\x5e\xdb\xeb\x38\xcf\x98\xed\x8f\xe2\xba\xa3\xa5\x2f\xee\xe7\x2d\xe9\x46\xe0\xd3\xe1\x93\x35\x42\xd3\x2d\xaa\x69\x20\xa5\x3c\x89\x46\x81\x73\x69\xfd\xe2\xd7\x78\xb5\x7f\x5b\x35\x56\xee\xa9\xc0\xea\x27\xe3\xd6\x57\xe6\x34\x3e\x45\x94\x8c\xdf\x40\x7e\x88\x83\xee\x1e\xed\xc2\x00\x0a\x7c\xa0\xb1\x33\x28\xc7\x61\xbf\x60\xbb\x54\x14\xf7\x18\xce\xc3\x5c\x79\x1c\x3f\x38\x07\xae\x06\x4a\x67\xe4\x94\x0b\xd0\xa3\x24\xa1\x02\xb3\xdf\x84\x77\x74\x14\x36\x69\xc7\xd4\xac\x01\x93\x3f\x0d\x4b\x74\xb4\x11\x09\xfd\x50\x99\x15\xff\x70\xec\x65\x2c\x43\x3b\x2a\x1e\xad\x46\x80\x02\xa3\xdf\xfa\x2f\x11\x18\x39\xb1\x6b\xed\x7b\x41\x4f\x87\x12\xc4\x95\xba\x0b\xc8\xe2\x16\x6b\x1f\xa7\xa5\x75\xe0\x80\x07\x24\x55\xc3\xcf\x52\x73\x18\x02\xc4\x23\x77\xc7\x5b\x15\xc7\x11\x46\xeb\x4d\x3e\x34\x09\xd9\xd5\x56\xff\x55\xdc\xb1\xe9\x8b\x44\x7a\xd3\x9f\x35\xcb\xb1\xcd\x96\x67\x94\xb6\x1b\xd0\x08\x6e\x97\xff\xd2\x4b\x4e\xae\x72\x9f\x2a\xcc\x67\xcb\xb6\x88\x92\x3e\x61\x6e\xf0\x6a\xae\x2b\xf5\x2f\x9c\xaf\xa8\xa0\xbe\xa7\x7b\xf1\x6f\x2a\xd8\xc3\x3a\x9d\x6a\x98\xac\xbf\x8e\x57\xc9\xad\xbb\xa9\xc4\x7b\x71\x7f\x5b\xaa\xfa\x2f\x3b\x9f\xb5\x6a\x18\xc4\x7f\xad\x21\x76\xa6\x74\x8a\x0a\x82\xc8\x39\x58\x25\x1e\xcb\x4b\x94\x1c\x59\x58\x5a\xd7\xef\x32\x9b\xf4\x76\x7b\x3c\xe2\x71\x9c\x57\x88\x36\xae\x07\x0a\xfa\xb5\x4e\x05\x14\xfe\x57\x63\x5f\xe6\x60\x08\x97\x6c\x06\x34\x95\xd1\x34\x3a\x5f\x63\xf4\x4c\x6f\x5e\xcf\xb5\xe3\xa8\x28\x58\x0e\x1f\xc1\xdd\x86\x92\xfc\xd8\x68\xc2\x06\xf6\xb3\xb2\xd7\x77\x22\x0a\x4e\x29\xcd\xe9\xf1\x6e\x2a\x1e\xf7\xc5\x9a\x13\x51\xb2\x62\x33\xf8\xf3\x60\xc2\xb6\x00\xf6\xc4\xc9\xbc\xa1\xdc\x32\x4e\x7a\x2d\xb7\x41\x9a\x15\x35\x25\x9c\x53\x4a\x63\xf2\xd4\xf8\x11\x25\x62\xaa\xd2\x96\xe3\x4a\x36\xef\xb8\x72\xbf\x27\x35\xbc\xa1\x68\x81\x2a\x5e\xc9\x9c\x63\xdb\xf8\x33\xb4\x1b\xf5\xf2\x1d\x1e\x0c\x7b\x59\xf1\x88\x8f\x28\x1a\xf0\x65\xda\x92\x50\xa2\xbc\x89\xdd\x42\x50\x98\xba\x8c\x1e\x75\xbb\xa8\xe6\x22\xac\x60\x2a\x27\xdf\xd4\xb6\x58\x93\xa4\x33\x9e\xac\xc9\xbd\x20\xc4\x62\xb7\x55\xb6\xd4\x0c\x5f\xc9\x0b\xb3\xc6\x3a\xa0\xea\xec\xf6\x66\x70\x0f\x02\x97\xa5\x23\x87\xca\x43\x78\xcd\xfe\x9a\x7c\x33\x55\x68\xfa\x6f\xda\x4b\x65\x5c\x70\x39\x55\xef\x0d\x88\x88\xde\xd1\xd5\x91\x6b\x55\xbe\x20\x75\x37\x33\x22\xe5\x62\x6a\x34\x7b\xbc\xfc\x1d\xe5\x52\xc6\x75\x7c\xec\x57\xd3\xaa\xeb\x87\x0e\xb5\xc3\x74\xb4\x46\x94\xdc\x19\x25\x84\x82\x16\x88\xc8\x60\xb5\x9c\x6a\xeb\xba\x96\x4b\x4a\xe3\x5e\xe4\xf4\x10\x59\x7b\x51\x01\x4c\xef\x06\x4f\x4d\x59\x73\xbe\xb8\x7f\x81\x92\x57\xd9\xd6\xfc\x83\xb2\x5f\x15\x0e\x9d\x7b\xd8\x3f\xc5\x62\x55\x19\xc5\x7f\x80\x37\x28\x5c\x25\x5a\x36\xc8\x0a\xd0\xa5\x47\xb1\xf5\x0e\xa6\x21\xce\xd5\xc1\xd8\x13\x19\x7e\xa2\xe3\x94\xf5\xe0\x41\xed\xfb\x34\xeb\x9b\x24\x7a\xd5\xf6\x66\x6b\x68\xca\x99\x97\x16\xf7\xd7\x55\x4a\x70\xe2\xdd\xa7\x4d\x57\xba\xf2\x1e\x60\x11\x3b\x83\x11\x20\xd8\xc0\xcd\xe4\xeb\xa6\xfa\x33\xb1\xd2\xb8\x68\xc2\x6d\x25\x4c\x6d\xe9\x31\x35\xa8\xd4\xdb\x7e\x1f\x7d\x60\x67\xe4\x5c\xfd\x01\xdf\xd4\xb8\xc1\x99\x38\xe8\xa2\xfd\x79\x5e\xf9\x41\x4d\x4b\x82\xbe\x34\x77\x98\x9c\xb1\x34\xe0\xeb\x9c\x02\x7c\x9d\x1b\xff\x67\x0f\x18\xbc\x51\x5a\xf6\x07\xcb\xd6\x8e\x72\x6e\x44\x72\xeb\x75\xac\xa0\x10\xe7\x9b\x6a\x89\x43\x9b\xe7\x59\xfe\x2c\x67\x42\x98\xfb\x1c\x9b\xf1\x8d\x82\x50\xf6\x4c\xd2\xb7\x59\x5a\xe6\xb3\x4a\xf1\xfd\xff\xc6\x8f\x17\x80\x97\x4f\x72\xbe\x1d\xf8\xa5\xf5\xb6\x12\xe2\x1b\xa6\x45\x9a\xe5\x3b\x69\x1a\x39\xd9\x68\xd7\x65\x7c\x03\xd3\x88\xff\x03\xe6\x24\x3b\x54\xa2\x16\x2f\x76\x95\x5e\x99\xe9\x0d\xa5\xd4\x42\xf2\x38\xf4\x7c\x2f\x73\x99\xea\x84\x46\x78\xa2\xf8\xcc\xd7\x18\x1c\xfe\x57\x81\x07\xf7\x85\x99\xed\x45\xc5\xaa\x29\xc2\x41\x4b\x2d\x10\x76\x3f\x16\xb3\x89\x86\xa9\xd4\x2b\xc9\x1b\xc1\xf7\xf3\x2f\x8e\x6b\xe6\x07\x0d\xee\x8b\x99\x5d\x8a\x12\x93\x84\x8e\x16\x89\xd9\x0d\xb3\x26\xbe\x56\x6e\x21\x7d\x9b\x44\xdc\x33\x6c\xcc\xb8\xb7\xf6\xfa\x48\x47\x65\x38\x8a\x6d\x61\x19\x13\x88\x74\xe3\x8e\xb2\xff\xbf\xe3\x0e\xab\x25\x4b\x75\x5a\xcc\x05\x9c\xa0\x0c\x33\xe3\x9b\xc0\xaf\xb3\xd5\x2c\x2a\x38\x13\x60\x11\xbe\xc0\xc5\x78\x5f\xbf\xd9\xb4\xd0\x96\x6c\x1c\xa7\xab\x2d\xcf\x50\x81\x1a\x09\x5f\xbb\x60\xf4\x9b\x65\x5a\x64\x69\x32\xab\x50\xa8\xe8\xf3\x6a\x70\x2b\x0a\xc7\xff\xbe\x26\xb2\x39\x55\x0e\x3c\x74\x88\x74\xc4\x46\xad\x9a\xea\xb4\x6f\x58\x9e\x6b\x48\xed\xe6\x59\x12\x00\x2f\x5e\x90\xc9\x2d\xa7\xc8\xf3\xb1\xea\x3f\x98\x10\xe6\x84\xbd\x5d\x34\x31\x9d\xd8\xd0\xa2\x48\xd2\xed\x26\x0a\x17\xf6\x5a\x38\x79\x60\x95\x00\x3a\x2d\x3d\x2a\x4f\xa6\x39\x0e\x12\xb6\x78\x59\x3d\xa5\xf0\x32\xa3\xea\xd8\xaf\x42\xc8\x96\x32\x0f\xe4\xe9\x25\x76\x64\x5b\xb3\xaf\x03\x07\xda\x65\x92\xaf\x9a\x7e\xdf\x7a\x65\x5b\x86\xf9\x28\xd0\xc0\xdb\x0d\xc3\xf0\x72\x3b\x1f\xa5\x45\xb1\x36\xe3\x01\xc3\x88\x50\x9d\x95\xd2\xe2\x7e\x4e\xc7\xaf\x4e\x4d\x3a\x52\x09\x33\x49\x2f\x2f\xa2\x18\x73\x15\xb1\xf1\x9b\xf4\x53\xf9\xba\xd6\xd8\x4b\xa2\x7e\xd2\xf2\xdc\x68\x24\x95\xd2\x88\x6a\x52\xa7\x88\x96\x96\x2c\x95\xab\x5a\x4e\xda\xef\x96\x1a\xc8\x0f\x31\x31\x98\x69\xad\xa5\x96\x0e\x3f\x3f\xa3\xbb\x32\x1e\x81\x7a\x56\xab\x51\xdd\x53\x38\xd7\x5e\x56\xf6\x77\xb5\x9c\xff\xc3\x23\x80\x63\xa1\x1e\x3d\x0b\x09\x1e\x61\xfb\x78\x12\xd9\x8e\x8e\x52\x01\x60\x00\x8c\x14\x39\xb4\x95\x96\x2a\xbb\x0c\xa2\x64\x39\x9f\xf5\x29\xd4\x59\x0d\x8e\x3f\x4b\x1d\x10\xc4\x03\xb7\x00\xc7\xe3\x1b\x55\xcc\x30\x59\x1c\x25\xfd\x22\xad\x35\xcf\x34\xbb\x61\x5d\x35\x00\xba\x65\x96\x0c\x58\xb6\x04\x69\xde\x51\xda\x52\xf9\x3a\xf8\x9b\xd3\x75\x9e\xdc\x0e\xa3\x30\x4d\x7a\x65\x58\xa4\x24\x7f\xb0\x79\x5a\xe9\x09\x7d\x80\xec\x19\x08\xf9\xb7\xc7\xba\x7e\x66\xaa\xb7\xa5\x12\x8b\x0f\xf5\xb1\x74\x45\x59\x1c\x9d\x6c\x92\x91\x59\x2a\xe3\xa5\x28\x8e\x67\x74\xba\x3b\xf6\x9a\x2c\x0c\x55\x14\x79\xaf\xad\xcf\x2d\x27\x64\x68\x12\xd3\x8b\x0c\xe2\x3d\x3c\x06\xf8\x57\x28\x12\xb0\x5e\x2f\xc2\xf2\x47\x3b\xfe\x30\xc8\x6d\x92\x53\x75\xce\x68\x5a\xda\xbb\x8a\x96\xf6\xee\x54\x84\x50\x9d\xe3\xc9\x5a\x89\xa5\x2a\x35\x71\xad\xe4\xd5\xa4\xe8\x97\x0f\xd2\xd5\x5e\xba\x8a\x07\xc4\x34\x3e\xaf\x11\x32\xe0\xb5\x89\xe0\x84\xd3\x95\x48\xfb\x51\xd8\x52\x8c\xc5\xfa\xc9\xd1\x24\xde\xb6\x64\xe3\x02\x11\x86\xa4\xac\x34\xb2\x7c\xe3\x3e\xd9\x24\x79\x98\xb6\x7c\xab\x82\x3b\x5d\x7c\xa3\x4e\x82\x51\x6c\x92\xfc\x71\xfa\x0c\xec\x44\x3f\xd6\x5a\x12\x1c\x63\xe2\x5d\xc1\x45\x55\xd0\xeb\x2d\x17\xd9\xfd\x00\x1b\x99\xd0\x06\xaa\xa4\x5e\xf8\x07\x2d\x27\x68\xc7\x90\x6d\xe8\xa4\xdc\x42\x30\xc0\xdf\x81\x98\x14\xf9\xe3\x9f\xd0\xdc\xc0\x40\xdf\x52\xf0\xfd\x23\x98\x27\xe8\xeb\x5f\x0a\x9c\xec\x8f\x09\x97\x47\xb6\x67\xbc\xf8\x1f\x8a\x59\xbf\x13\xf8\x82\xf7\xef\xd4\x12\xa1\x41\xba\xba\xd7\xb7\x5b\xef\x01\xaa\xe6\x5a\xd5\xd5\x23\x42\xc3\xe4\x2e\xf2\x60\xc9\x08\xb5\xf6\xc7\xc4\x83\x73\xff\x30\xf0\xc5\x21\xae\xe8\x71\x36\x12\x78\x4e\xe3\xa3\x48\x34\x51\x9b\xde\x01\xe1\x2e\x14\x3a\x7e\x42\xa3\x88\x36\x48\x6b\x52\x8d\xae\xc4\x44\xbe\xea\x7b\x02\x2f\x18\x67\xd2\x4d\xaa\x58\x89\x34\x14\x35\xdd\xb0\x19\xcd\x76\xa6\x7d\x32\xac\xe9\xdb\x0c\xc1\x14\x9e\x10\x79\xb2\xd3\xde\xf6\xe5\xb2\x63\x0a\x32\x78\xb4\x49\x37\xb2\x97\x91\xc3\x9e\x43\x2d\x5e\x57\x6e\x5d\xd7\x5d\xeb\x7c\x29\x8a\xa3\x51\x94\xa4\xbb\x54\x1b\x62\x67\x47\xb9\xff\xa8\xf9\x70\x49\xc1\x44\xaf\x20\x50\x74\xff\xe8\xc0\x1c\x43\x1e\x17\xc6\x5e\x76\xf4\x5c\x43\x28\xff\x42\x3b\x33\xab\x2d\x25\x88\x80\xa2\x0c\x5f\x37\x79\x47\x99\x12\xb0\x0b\x4e\x19\xf0\xf3\x7f\x3c\x56\x89\xdc\x8f\x75\xc0\x96\x59\x93\xb3\xbb\x2b\x3b\xfe\xea\xf2\xc8\xef\x8e\x7d\x74\xff\xae\x2a\xe7\x2f\x59\x74\x33\x30\x5b\xaf\xd1\x1c\xe1\x6b\xd5\x1e\x59\x8a\x53\x83\x4a\x3d\xb6\x85\x6d\x0a\x85\xb3\xad\xe3\xeb\xb6\xab\x69\x96\x45\xb6\xc7\x9d\x3c\x94\x8c\xae\xe8\xf6\xf8\x9d\xc0\xe3\x46\x3e\xc6\x24\xc4\x76\x70\xa9\xd1\xa8\x3c\xcd\xb2\x74\x55\x70\x20\x2c\x59\x87\x6a\x99\xd7\xaf\xe3\x9f\x6f\xf2\x11\xe5\xf2\xe8\x95\x9c\xc1\xbf\xe2\x9b\xa6\x20\x31\x34\x49\x2f\xea\xb5\x3c\x7e\x19\xf1\x91\xe0\x9a\xfd\x79\x59\xfd\x0f\x33\xbf\x99\x94\x45\x13\x4a\x08\x5a\x2a\x76\x5a\x4b\xc2\x41\x96\x26\x69\x99\x2b\xdd\xf3\x1f\xd0\xc7\xf2\xb5\x1a\xd2\x91\x89\x87\x9c\xb1\x39\x3c\x97\x37\xb6\x3b\xa5\x70\x55\x43\xd3\xdb\xe1\xcf\x92\x47\x3a\xbe\xb8\x76\x0c\xdb\xb6\xb8\xe4\xfb\x5a\xfe\x11\xcc\x52\xf9\x57\x1e\xce\x63\x5f\x19\xd9\xa4\x17\x91\x2a\x45\x4b\x83\xca\xb9\xa8\xcd\x37\x0d\x2c\xa1\x76\x6e\xe2\x62\x15\x5a\xfd\xde\x5e\xe8\x4d\x45\x50\x7b\xb3\x89\x95\x99\x99\x28\xb7\x33\xbe\x2c\xfa\x87\x28\xba\x09\x72\xa3\xe5\x68\xee\x17\x1b\x29\x90\xc5\x6a\x54\x25\x47\xb5\x66\xd2\x8b\xfb\x5d\x93\x69\x4f\x1d\xce\x61\x5f\x79\x98\xa6\x3c\xfb\xb2\xaa\xfa\xd7\xbd\xb1\x0f\x90\x6b\x1c\x8f\xb7\x18\x41\xe9\x98\x42\xae\x4d\x7f\x17\x2d\x6e\x41\xd2\x50\xf3\xdb\x61\x6c\xaa\xd1\xc5\xc2\xba\x83\xf3\x41\xf8\x48\x4f\xfa\x35\x83\x74\xcb\xd5\x50\x9c\x66\xab\xef\xc3\x4f\xcb\x77\x3c\xd3\xae\x66\x5b\xc6\xaa\x38\x2e\x9a\x75\xbd\xbd\x37\x6b\x07\xc4\x2b\x51\x86\xc4\xc8\x11\xd7\xfc\xf5\xd4\x70\x52\xca\x6f\x7a\xab\x66\xad\xa5\x7a\x3b\x60\xa0\xf0\xf5\xd6\x9a\xce\xfc\x7c\x7b\x61\x71\x01\xc8\x1e\xe6\x51\x07\x0a\xf5\xf6\x5a\xa0\xc4\x57\x2e\xaa\xc4\xfb\x9b\x51\x52\xd8\x57\xb0\x6d\xe1\x55\xfd\xbe\x3a\x25\x7e\x5f\x85\x6c\x5d\x43\x1d\x81\x59\x5f\xac\xfb\x84\xb6\x20\x04\xa3\x1b\x54\x30\xe4\x6b\xdd\x4d\xf6\xaa\x7b\x79\x14\x13\x2e\xcb\xd9\x12\x02\x99\xc6\xd7\x93\x9a\x2c\x68\x39\x9c\xf1\x33\xe2\x72\xa0\x69\x38\x4a\xc1\xe2\x43\xd5\x32\x8d\x6d\x3f\x2a\xa2\x21\x41\xb8\xe6\x3d\xd9\x9e\xfe\xb5\x84\xdc\xbe\x5e\x3f\x32\x59\xb1\xb6\xdb\x83\xce\x3e\xc2\xa9\x27\xed\xfc\x96\xb3\xb4\x6e\x4d\xd4\x8b\xc2\xa7\xe1\x7c\xda\xd5\xf1\xb6\x44\xe7\xc6\xda\x61\xf9\xc2\x58\x49\xca\xb7\xf4\x96\x1b\x25\x4b\x99\x5d\xa3\x25\x86\x3d\xe9\x42\x50\x6b\x75\xf8\x46\xce\x6f\x36\x15\xa9\xbf\x59\xda\xbc\x8a\x3a\x01\x98\x46\xa4\xfc\xba\x02\xdb\xb2\x5e\x80\x34\xc8\xfc\x81\x13\xda\xcc\x9a\x78\x07\x7d\x97\x34\xa8\xe9\x19\x85\xc4\xa6\xf4\x09\x20\x96\x81\x65\x79\x04\xfb\x1c\xff\x87\x06\xa5\x85\x85\x76\xb7\x8c\x62\x56\x34\x12\x49\x3d\xcf\xd0\xdd\x08\x94\x21\xd6\x09\x37\x11\xba\x69\xd2\xb3\xda\x8b\xe5\xaa\x66\xcb\x4d\x4b\x5b\x3b\x8b\x07\xcb\x50\x04\x86\x29\x8e\xbd\x95\xff\x4c\x47\x65\x8a\xaa\x3e\x8f\x95\x6d\x77\xd1\x88\x61\xcc\xef\x28\xd3\x56\xee\x01\x3b\xcf\x3d\x5f\x91\x47\x51\x5a\x7c\x0f\xe8\x67\x20\xae\xdc\x8e\xb0\x0b\x8f\x70\x45\x99\x13\xc7\x66\x15\x11\x8a\x18\xb3\x7b\x53\xb5\x9b\x63\xad\x18\xf2\xee\x58\x31\x93\xd1\x20\x93\xac\xc5\xd3\x61\x2f\x63\x66\x20\x8d\x3d\xae\xc0\x33\xab\xd6\x64\x18\x6f\x0d\x3b\x40\x85\x18\x24\x2b\x1c\xdf\xa7\x54\xfd\x33\x2f\xe3\x35\xa3\x94\x90\xd6\x55\x8a\xd6\x28\x95\x10\x47\x85\xcd\x0c\xf7\x7f\xc5\xc7\x9b\x7e\x9c\xc8\xd5\x34\x88\x7a\x98\x6e\xba\x62\x77\x56\xbf\x5a\x2a\xa0\x9e\xc9\x74\x23\x50\x0e\xa4\x48\xb1\xd1\xef\x06\xc8\x05\xcb\x79\x43\x59\x17\x35\x35\x02\xe6\xda\xa3\xb2\x1b\x47\x61\x95\x35\xde\xfb\x9f\xf7\x4c\xbc\x16\xc0\xcf\x3c\xb9\xe9\xbb\x7b\x3b\x5b\x4b\x6a\x2f\xee\x5f\x68\x87\x69\x12\xc6\x65\x6f\xab\xf0\x21\x0d\x84\x88\x20\xaa\x92\xfa\x30\x4d\x8b\x01\xd4\x9c\x24\x06\x3a\xaa\xe2\xa1\xa3\xe3\x7d\xf5\xed\xf7\x99\xf6\x81\xb9\xcf\xd1\x07\x63\x47\xb8\x1e\x6c\xff\x82\x27\x75\x1f\x98\xf3\x46\xc5\x5f\xfc\x9a\x6b\xa8\x2b\xd9\xc6\x75\xf4\x58\x64\xf1\xfb\xa2\xff\xae\x89\x32\xb2\xba\xa7\x00\x48\x7f\x8e\x84\x0a\x85\x8a\x5b\x3c\xc1\x30\xc3\x3f\x1a\xab\x52\xec\xd5\xc0\x93\xf8\xff\x3c\x50\x21\xf4\x77\x03\x8f\x6c\x9a\x85\x34\x0f\x76\xec\xab\x41\xeb\xab\x5f\xe6\x17\x7d\x19\x3b\x00\x8a\xd3\xaf\x53\xab\x0e\x14\x50\x50\x5f\xf0\xde\xfe\x58\x73\x14\x5f\x1b\x7b\x27\xcd\x47\x27\x55\xd6\x06\xa6\xc9\x2d\x57\x90\x8d\x92\x24\x0d\x1d\xac\x48\x10\x9c\xbe\xec\xf7\x44\xc7\x2f\x89\x5d\x13\xdd\x44\x4a\xd3\x6c\xb7\xf2\xe6\xfc\x1e\x56\xaf\xf2\xd3\x78\x41\xb4\x91\x02\x05\x29\xbb\xca\x83\x83\x6d\xec\x16\x76\x3e\xbd\x78\x50\x67\x38\x8b\x23\x80\xfd\x7a\x95\x9e\x40\x3e\xb2\x61\x64\xe2\x9d\xd5\x8f\xe7\x52\x52\x35\xa6\x2c\x73\x81\x2f\x84\x5f\x3d\x5f\xd3\x94\xd6\x45\xa7\xcd\x4b\x4e\xc9\x3c\x0d\xc3\x32\xcb\x77\xb6\x9c\x38\xcc\x59\x9a\x1e\x82\x50\xa2\x5f\x27\x45\x76\x5f\x8e\xbd\xa0\xc8\xf8\x37\xf6\x74\x14\xa8\xe1\x98\x82\x62\xb0\x52\xed\x6e\x25\x5e\x8e\x84\x1a\x69\xcf\x69\xbd\xbf\xd5\x84\xd6\x7f\xca\x91\x95\xb3\xe5\x70\x74\x2a\x48\xc1\xd5\x20\x04\x2c\x50\xea\x6a\xb3\x85\x7d\xa5\x88\x62\x2c\x7c\x9c\x99\x1f\xa8\x84\xb0\x35\xf1\xa8\x28\xd8\x3d\x20\x39\xfb\x23\x1a\x24\xe7\x20\x5a\xfd\x3a\x81\xda\xab\x2a\x51\x61\x87\x43\x58\x34\xbb\x5e\x91\xee\x1c\xde\x51\x5d\xd9\x53\x81\xb6\x19\xf0\x0c\x8e\x69\x1d\xf1\xb9\xc3\xbe\xd7\xd6\xf2\x18\xb8\x8f\x02\xbf\xd9\x7d\xa4\x18\x26\xc8\xd6\x5a\x8a\x55\x41\xff\x50\x00\xd3\x9e\xe1\x37\x34\xdf\x48\xb3\xa8\x58\xdb\x49\x23\x8b\x5a\xc5\xa6\x92\x01\xe2\x9a\x0a\xf3\x6f\xb1\xfa\x71\x56\xbc\xae\x3e\x71\x30\x56\x78\xd8\xfb\x53\x1d\x85\x85\xc5\x85\x76\x5a\xf6\x07\xc5\x6c\xeb\x2b\xa2\xd7\xb5\xab\xa3\x8e\x37\x94\x61\x1d\x45\xba\xfa\x46\x09\x85\x9d\x72\x6c\x5a\x26\x3d\x72\xdd\x57\xca\xfb\xc7\x94\xb8\xf0\x31\xa5\x6a\x40\x42\x7f\x45\x49\x71\x87\xcf\xc0\x6e\xaa\x62\x2f\x37\x63\x11\xef\xcc\x78\x97\x9f\x28\xcd\xd3\x32\x0b\x6d\xab\x66\xa9\xa4\xca\x9e\x17\xa7\xfc\x13\x0e\x3f\xdf\x36\xd5\x02\x31\xae\x35\x81\x08\xe5\x4d\xaa\x7b\xf0\xf5\xd4\x0b\x7d\x71\xff\xcb\x6d\xb2\xc5\xed\x47\x61\xcb\xbb\x28\xbd\xa1\x00\xf0\x6f\x34\xa5\x49\xe1\xc0\x0e\xa3\xbc\x60\x8f\x5c\xc4\xc6\xdf\x55\x8a\x43\xdf\x6d\xd2\x28\xfb\x46\x39\xec\xa6\x6c\x76\x81\xb1\xb8\xa0\x84\x83\x4e\x28\xa9\xde\xd7\x1b\x89\xe1\xcc\x1b\xe2\x4a\x01\x8b\x99\xe9\x44\x79\xdd\x25\xca\x4f\xff\x57\xbf\x9c\xcf\x56\xbb\x03\x3e\xfb\x8e\x56\x07\xe5\x24\x50\xc9\xa4\xcd\x71\x6e\xf7\xed\x26\x95\xf4\x91\x35\x49\x29\x98\x03\x41\xb3\xd6\x8c\x26\xfc\x36\x92\xd8\x55\xf2\x72\xc0\x9e\x20\x92\xd8\xaa\x71\x7e\x55\xc9\xe3\x8d\xd2\xc2\x26\x45\x64\xe2\x78\x0d\xd8\x09\x69\x32\xb6\x0e\x1d\xda\x3c\xad\x7a\x78\xdf\x0f\x3c\xa0\xbf\x5b\xe6\x51\x42\x76\x40\x0f\xd3\x03\xe1\x00\xbe\xae\xda\x30\xdf\xc1\x9c\x72\x9e\x37\x87\x0e\x39\xe0\x26\xa5\x7a\x08\xcc\x3e\x02\x47\x87\x6f\x30\x3c\xd8\xab\xfe\x20\xf0\xd2\x49\x6f\x23\xde\x02\x8e\xe6\x75\x9a\xb8\xd2\x9d\x56\xa2\x31\x36\x29\x32\x13\xef\xf0\xdb\xdd\x5b\x5a\xc1\xe7\x16\xbd\x57\x41\xda\x2b\x90\xc8\xa7\xb4\xed\x60\x0b\xba\xec\x8e\x38\xfb\x4a\x61\x33\xa9\x0e\xe3\x29\x5e\x1b\x2b\xd5\xc2\xd7\x54\x85\x9e\x9c\x38\xba\x26\xc1\x62\x44\x29\x15\x0a\x7c\x7c\x3d\x51\x5a\xc9\x69\xbc\xac\xc8\x81\x3f\x53\x66\x24\x3f\x53\x65\x88\x5e\xc9\x6f\x1a\xc1\xf1\x2d\xc5\x2b\xbb\x35\x15\xb9\x1d\x7e\xbe\x3d\x28\x87\x26\x99\x55\x12\x27\xa7\x15\x90\xfa\x06\x1d\x50\x0e\xc9\xe4\x5a\x44\xbb\xa7\x74\x71\x0f\xce\xd3\x8f\x49\x72\xb4\x9b\x11\xd9\x68\xd4\xc2\x5d\x05\xe6\xb4\x26\x4b\x76\x7a\x59\xb5\x0f\xc7\xbe\xbd\x73\x0f\x47\x34\x5e\xfe\x0f\x55\x79\xf8\xa6\x3a\x12\x41\x3b\x43\x11\x64\x67\xc7\xe7\x3a\xb6\x17\xe5\x69\x02\x54\x0a\x93\x3e\xf8\x74\x13\x0a\x88\x14\xb3\xf3\x38\x5d\x65\x85\x2e\x74\xd7\x58\xee\x5e\x34\x14\xbd\xd0\x59\x95\x67\x6e\xc1\x86\xcf\xb5\x7f\x69\x87\x17\x3d\x64\x29\x45\xc5\x38\x79\xce\x41\x45\x69\x22\x8b\x5d\x86\x3f\x59\x8f\x35\x21\xba\x97\xcc\x4a\x4a\x3d\xd4\xea\xa3\xa5\x7f\xab\x1b\xbb\x4a\xd7\x3c\xcd\x86\x50\xfe\x7d\x4e\xda\x15\x4a\xaa\xf5\x48\xa3\xd1\x8e\x89\x72\x17\x00\x33\xf5\x3a\xf0\xd8\x83\xd3\x8d\xd8\x9b\x95\xb4\x70\x7f\x23\x1d\x49\xd5\x9d\xd4\x4b\x08\x6d\x20\x7a\x76\xc5\x34\x59\x70\x4c\x13\x89\x18\xd8\xeb\x78\xa6\x3a\xc1\x90\x2a\x1c\x1d\xfb\xb4\x01\x91\x25\x2a\xd9\x77\x54\x4c\x2e\xf2\x3d\x78\x14\x0c\x28\x84\x3d\xf8\xda\xad\xbe\x41\x3a\xb4\x31\x59\x16\xbb\x91\x3b\x55\x2b\xed\x79\xcd\xfb\x63\x75\xb5\x70\xaa\xe8\xf0\x9c\x70\xbe\x1f\xf3\xf3\x8c\xa3\x42\x90\x27\xb1\xe7\xc3\xee\xc9\xfe\x8b\xbd\xad\x2f\xbd\xc4\xb5\x8f\xa3\xa8\xf6\x4b\x08\x47\xbf\x1f\xdd\x09\xd8\x0d\x21\x14\x00\xb8\x01\x0d\x6b\x96\x2a\x15\x23\x35\xdf\x00\x81\x23\x26\xc3\x87\x03\x15\xf3\x49\x3a\xc9\x96\x51\x5a\x3d\xe2\x4a\xa0\x94\x43\xd7\x29\x90\xc7\xca\xbd\x01\x8a\x82\x08\x70\x54\x3f\x44\x18\x84\x0a\xc1\xb0\x6d\x52\xad\x75\x54\xac\x7f\x3e\x15\x7b\x1c\x38\x40\xda\x5a\xd9\x1a\x0a\x10\x72\xdc\xb4\x9c\x40\x07\x4c\xb2\x81\x0b\xb8\xd1\x60\x63\xb9\xd0\xb6\xb1\xe2\xaa\x3b\x63\x59\x85\x0b\xf3\x38\x99\x72\x94\xdb\xa2\xa5\x50\x27\x27\x15\x14\xeb\xe4\xd4\xc3\x2d\x2e\xb4\xbb\xb6\x70\x04\x68\xc7\x95\xf4\xc5\xd5\xdb\x81\x37\x26\xf4\x44\xb4\x30\xae\x8e\xc6\xd1\x0e\x7a\x22\x34\x34\xfe\xc3\xd8\x37\xf2\xee\x69\x30\xf0\x0f\xc7\xea\xb3\x2f\xa8\xa3\xfe\xb8\x72\xa1\x80\x02\x14\xab\xfa\x0a\x69\xa2\xc6\x0e\x6b\x79\x91\x77\x55\x16\x8d\xa3\x24\x4c\x63\xd0\xd2\xa5\x4e\xa7\x8b\x76\x6a\x7f\xff\x95\x5f\xfe\xfb\x2d\x05\xbf\x7a\x8f\x76\x68\xbe\x6e\xe4\xc9\xe7\xe9\xd0\x0e\xd2\xd5\x96\x17\x14\x3e\xae\x34\x3d\x8e\x4f\xf5\x66\x9e\x69\x0f\x6d\x61\x62\x0e\x52\x90\x89\x9e\x1f\x2b\x9a\xcf\x34\x4e\xa9\x7a\xbb\xdd\xb4\x18\xb4\x7c\xca\x07\x68\xaa\xa8\x97\x36\x59\xca\x86\xb1\xc9\x07\x20\xb8\x79\x3e\x16\xbd\x09\xbc\xa6\x1b\x1a\x3f\xb6\xbd\xe3\x27\x47\x16\xe5\x36\x27\x6a\x8e\x98\xbc\x54\xc3\x26\x0d\x37\xdd\xea\xf6\x98\xb3\x8f\x54\x54\x1b\xa6\x29\x49\x3e\x57\x5b\x9b\x8f\x12\x39\x28\xe7\x9b\xa9\xce\xd0\xd7\xbf\xde\x4e\xa2\xc4\x52\x48\x86\x22\xf2\xb6\x8e\xd6\xd6\x55\xa3\x5b\x13\x14\x50\xad\x84\x30\x1d\xda\x7c\x97\xf7\xb7\xb9\x16\xf8\x68\x7d\xa6\xe3\x81\x8a\xb7\x11\xd9\xa0\x10\xff\x11\xea\xd6\x8e\xa8\xeb\x5a\xe3\x90\x2c\xc3\x02\x6f\x6c\xb0\x15\x69\x1a\x73\x28\x20\xe2\x06\x2d\x27\x9b\x7b\xcc\x75\xd8\xaa\xe9\xd1\x4d\x7b\x6b\xb3\xca\xfb\xe5\xec\xd8\xef\xe3\xe7\x95\xb2\xd5\xc3\x1d\x5f\x32\xb9\xad\x71\x60\x51\x3e\xb2\x59\x6e\x7b\xad\xea\x99\x9c\x2e\x90\x07\xea\xa9\x8c\xba\x9f\x45\x71\xcc\x15\x40\x16\x0a\xa6\xf7\x27\xa2\xc1\xb5\x9c\x7f\xb8\xf6\x98\x62\x6d\xfc\x0c\x85\x12\xd6\x31\xa0\x7a\x88\x68\x1a\x28\xa5\xa5\x2b\xe3\x29\x39\x79\x84\xcd\xf7\x03\x05\x83\xbf\x37\x56\x99\x32\xea\x24\x78\x7d\x1f\x52\x69\x04\x25\xbe\x3f\x08\x14\x07\xfe\x28\x85\x95\xd8\x77\xe1\xc5\x8a\x2a\xd6\xb4\x06\xf9\xe1\xe7\x89\x19\x91\x59\xc3\x27\x22\x1e\xff\x94\xe2\x14\x9f\x1a\x3f\xe5\xf9\x59\xfd\xcc\x14\xda\xcd\x43\x30\x0d\x35\x3c\xbf\x8f\x72\x32\x6b\x7a\xd2\x85\x15\x4c\xa0\xd6\xfd\x57\x88\xf6\x2b\x9a\x25\xaa\x3d\xeb\x07\xa6\x78\xca\x99\x49\xfe\xe3\xbf\x41\x58\x24\xfa\x57\xff\xe4\x0b\x1d\xa5\xd4\x8c\x89\x40\xcb\xde\x7e\x86\x94\xa9\x28\x9f\xdc\xf9\xf9\x09\xbd\x09\x8a\x37\x7e\xfc\x74\xc7\x9d\xa9\xdf\xd9\xdb\x51\x4e\x39\x0f\x4f\x94\x54\xd6\x63\x4c\xb7\x77\xea\x41\x52\x3f\xf9\x6f\xdb\x13\x95\x1b\x3f\x34\xa1\x5d\x5b\xc4\x84\xab\xd5\x82\xac\xe2\x06\x68\xd0\x48\x74\x59\x35\x1e\x8b\x75\xf7\xa4\xf5\x12\x57\xe6\x7f\xe3\x0b\x1d\x65\x5c\x77\x8d\x38\x17\xae\x19\x54\x8d\x17\x8e\xba\xfb\x4d\xfe\x62\x3d\xbb\x04\x45\xda\x9a\x6c\x7c\x4b\xb9\x1e\x34\xb4\x27\x09\xa4\x9a\xd7\xb2\x5c\x2a\x94\xc9\xaf\x6c\x20\xcd\x8f\xb2\x74\x18\xe5\x16\xdb\x2b\xea\x14\xef\xd3\x68\xf0\xf5\x54\x62\xbc\xf0\xfc\x0b\x44\x66\xac\x66\x14\xcf\x10\x1c\x49\x80\xb2\xf2\xf5\xd4\x91\x2b\x95\xf3\x6f\x18\x9c\x2b\x8d\x49\xb8\x6e\xbc\x24\xe9\xea\x5e\x65\x15\xf7\xcf\xbd\xfa\xcc\xe2\x3e\xea\x84\x88\x9b\xbb\xe2\x6d\xef\xea\xf8\x5d\x48\x5c\x2a\x59\xc3\x32\x50\x30\xd7\x1b\x81\xaa\xd6\xf1\xd1\x86\xf6\xf5\x79\xc0\x25\x70\x43\x22\x0c\x82\x25\x3e\xa1\x4c\xda\x5f\xa3\x89\x20\xf6\x44\x4e\xae\xe3\x99\x3d\xb4\x6d\x22\x7e\x98\xe9\x54\x91\x98\x60\x49\x94\x42\xd8\x76\x4d\xeb\x88\xb2\x30\xb6\xac\x0f\xea\xcc\x4b\x9d\x6e\xfd\x45\x57\xab\xcb\x6c\x92\x46\x10\xfc\xc5\xe3\x5c\xc0\x47\xf2\x8d\xc2\xf4\x12\xa2\x7f\xa6\x7a\x3e\xe7\x70\x76\x50\xc2\xcd\x6f\xd3\x26\x25\x1b\xa2\x73\x7e\x4a\xd3\x21\x35\xab\xea\x1a\x53\xae\x01\xb4\x3e\x85\xdc\xab\xce\x71\x9b\x17\xa6\x1b\x47\x38\x33\x3d\x6b\xe7\xa2\x56\x74\x65\xd5\x46\x14\x9c\x4f\x36\x18\xa5\xbc\xec\xa5\x04\x39\xc7\x77\x24\x0b\xf5\x2c\x53\xe7\xf5\xc1\xf9\x76\x5e\x80\xfe\x8b\xa1\xd3\x2c\x76\xbe\x6e\xa8\x78\x2c\x54\x71\x75\x56\x46\x05\x87\xd5\x08\x07\x7e\xa8\x4d\x9f\x4e\xd7\x74\xf1\x94\x22\x58\x91\xae\x98\x98\xdd\x4d\xdc\xd9\xee\x4a\x88\x1a\x29\x37\x48\xd3\x15\xcb\x56\x04\xa2\xd7\x56\x3d\x17\x76\x4e\x76\x0c\xc0\x2a\x79\x67\xaa\xaa\xb3\xb8\x1f\xb2\x11\xac\xb2\x8b\xd4\xe3\x36\x36\x0b\xbe\x51\x0e\xc8\xbd\x28\x2f\xa2\x84\x77\x09\x27\x21\xc4\xc5\x19\xbe\x19\x3f\xe6\xa6\x86\x5d\x89\xf8\x17\x08\xa8\x98\xca\xcc\x82\x43\x6e\x10\xe2\x49\x6c\xb1\x9a\x66\x34\xce\x1e\xdd\xb5\x81\x28\x9f\x6f\x54\x79\x72\xc5\xe6\x39\xab\xa3\x63\x34\x2f\x05\x0a\x48\x77\xa9\x09\xa9\x3e\x4c\xa5\x12\xe4\x14\xb7\xbf\xf4\x92\xeb\x1a\x3b\xc5\x8a\xa2\xc8\x4c\x28\xaf\x0d\x83\xca\x19\x32\x76\x0e\x70\x47\xa4\xeb\xe7\xcf\x15\x9b\xad\xed\x51\xd1\xf4\x7d\x25\xbe\xb8\x8f\xd6\x27\xf6\xef\x13\x63\xe7\x28\xf8\x3f\xfc\x27\x1d\xe5\x26\x70\x04\x1b\x3b\x6a\x01\xd7\x31\xb5\x1d\x85\xf5\xc0\x9c\x56\xcf\x78\x81\xb3\xb4\x5f\x20\x45\x6b\x6c\x3a\x77\xc7\x7a\x52\xff\x26\xf6\x16\xd1\xad\xf4\x4f\xbc\xb7\xa3\x70\xc2\xff\xd7\xd8\x17\x60\x5f\x07\x7e\x40\x18\x7f\x53\x3b\xf1\xe2\xc2\x17\xda\x26\xcb\x6d\x62\x24\xb4\x12\xdc\x81\x06\x91\xfa\xe6\x5b\xdf\x64\xac\xdf\x82\x32\xfc\xef\x61\x13\xe1\x1b\xc7\x22\x19\x46\x61\x96\x52\x66\x9c\xe7\x29\x3b\x22\x49\xb6\x86\x1f\xc4\x77\x0a\xf2\x77\x5e\x8b\x2a\x3e\xd8\x19\xdf\xf6\x99\x47\x84\xf6\xdb\x29\xe5\x2c\xa5\xc1\x2b\x7f\xef\x97\x7f\x99\x42\x5b\xe4\x6f\xd0\xa6\x41\xa1\xec\x9e\xf2\x00\x79\x47\x43\x32\x36\xc6\xfb\x5c\x53\xa7\x88\x86\xa4\xa0\xd2\xd3\xc2\x2e\x1f\x29\xf5\x83\x8f\x1a\x34\xe0\x07\xd6\xf4\x58\x81\x90\x93\x0d\x11\x58\xf4\xc0\xe2\x13\xc1\x5e\x8d\x1d\x19\xda\xa4\xc8\xc9\x30\x0c\xc8\xb2\x0f\xb0\x50\xf1\xd4\x6f\xa9\xd4\x8d\x75\xae\x25\xd1\xaf\x9e\x6a\x73\x13\xab\x8f\xff\xb1\x92\x41\xcc\xcb\x50\x0c\xca\x3d\x05\xfd\x56\xa0\x0c\x93\x6f\xa9\x29\xbe\x62\xf3\xc7\x3c\x82\xe9\x36\x4d\x2b\x14\x5e\x76\x01\x0a\xec\x0e\xda\x6a\x26\x23\xe0\x80\xa1\x17\x22\x9c\xa7\x26\x5e\x08\xe2\xdf\xfc\x52\xc7\x97\x72\x5f\xff\xdb\x1d\xaf\xc4\xf9\xd8\xdf\x9a\xa8\xca\xd5\x7f\xf7\x64\xa7\x3a\x60\x44\xac\xd5\xc7\xf1\x4f\x4f\x14\xce\x72\xe7\x84\xf2\x7c\xe4\xb1\x9f\xe9\x34\xba\xf8\x2d\xd9\x24\x8f\x56\xe0\x3a\x0a\xb0\x00\xa8\x65\x6c\x4c\x49\xcf\x29\xfa\x17\x0d\xdb\xc7\xaa\x35\x19\x76\x4a\x71\x27\xf3\x73\xeb\x98\xaa\x50\x25\x36\x5b\xb1\x44\xbb\x78\x8e\x77\xec\x99\x89\x4b\xf5\x77\xec\xeb\xf8\x5f\x70\x5b\x91\x31\x3f\x9a\x0a\x62\x0e\x3f\xdf\x2e\x32\x93\xe4\x4b\x36\xab\x22\xe9\x4d\x6c\x70\x9b\x97\x54\x53\xbc\x97\xda\xfc\x09\x65\xc1\xf4\xe6\xd8\xf3\xed\x3f\xa4\x7d\x46\x82\xbe\xea\x01\x44\x2a\xc0\xc5\xc8\xbf\xb6\x0f\x1d\x14\x67\x96\x5b\xbd\x02\x76\x02\xd0\x5a\x46\x6c\x0f\xeb\xfa\x73\x07\x0e\xf8\x45\xe1\x01\x9f\xd0\x12\xc3\x9c\x87\x00\x22\x36\xfb\x7b\xbc\x31\xc9\x8e\x49\x2c\x26\xe9\x57\x36\x8a\x24\xc5\x4b\x2d\x7a\x9b\xd2\x81\xf7\xcd\xaa\x13\x35\x6d\x9e\x32\xe9\x7d\x56\x91\x62\xae\xe8\x78\xea\xb4\x36\xf4\xbc\xab\x2d\x5d\x8f\xd4\x4c\x2c\xab\x95\xef\x24\x67\xab\x0d\x10\x0f\xfd\x06\xce\x1d\x96\x3f\x27\x30\xa9\xf3\xa7\x5b\xdc\xcf\x4b\x63\xb6\xb3\xfd\x0b\xde\x99\xe9\xe0\x3c\x57\xbc\x66\x3b\x5a\x96\xed\x8a\xa6\xea\x70\x9d\x0a\xd5\x93\xdd\x13\x65\xd6\x73\x9e\x5e\x17\x46\xef\x35\x44\x09\x98\x18\xd7\x11\xfc\xf3\x63\x69\x64\xca\xee\x8e\x2f\x37\xdf\x52\xb0\xb0\xf5\xad\x65\xdb\x97\xe6\x0e\xb7\x7f\xa9\xa5\x50\x6d\x48\xbf\xf9\xda\xc5\x66\x23\x13\x2e\xaf\xa6\x69\x4f\x69\x0d\x9c\xd2\x96\xbf\xa7\xa6\xb2\x80\xf9\xf9\x76\xcf\x0c\x4d\xdf\x6a\x52\xe7\xff\x43\x8f\xc2\xd7\x8a\xaf\x39\x8a\x46\x36\x8e\x12\xe4\x18\x2c\xae\x1d\x78\x4b\xe6\x75\xb7\xa7\x0a\xde\x67\x0b\x2f\xf5\xa6\x72\x16\x44\xa2\x87\x79\x77\xb4\x8e\x7b\x89\x4d\xc2\xbe\xa2\x38\x93\x8e\x29\x61\xc4\x63\x0a\xe4\x73\x5c\xc7\xc9\xc7\x35\x1b\x20\x5d\x15\x00\xf4\xcb\xae\x23\xa6\xba\x63\x81\xa4\xaf\x3d\x5b\xd8\x2c\x4a\x33\x65\x43\xee\x5c\x92\x9c\xe0\xc3\x09\x65\x10\x73\x64\x0b\x34\x2e\x44\xcd\x8e\x15\x2c\x54\x65\xea\x8f\xe9\xfb\x24\x5d\xf6\x80\x3d\x13\x47\x36\xe1\xea\xcd\xdc\x61\x5e\xd0\x40\xc4\xf2\x75\xad\x86\x50\xf6\xd6\xa8\xb1\x83\xcd\xe1\x96\x86\xf5\x8f\x83\xd6\x57\xe6\xe4\x7a\xac\x74\x9f\x36\x75\x2d\xe8\x7d\x25\x46\xc0\x8a\x1e\x79\x4b\x51\x31\x4e\x2a\x36\x90\x16\x47\xc8\xa3\x64\xcd\x64\xc0\x84\x4a\xf4\xe9\x85\x06\xbf\x85\xef\xe3\xff\x10\xd4\x41\x54\x07\x25\x6f\xba\x34\x35\xdb\xaa\x10\xbe\x9b\xad\x19\x70\x3a\x9c\xe6\x9a\xaf\x94\x9e\x6d\x2e\x02\x9a\x15\x62\xf4\xeb\x5d\x88\x37\x04\x21\x8d\x4e\x23\x67\xd0\xd2\xc9\x6c\xee\x0e\x76\x14\xa4\xa1\x40\xc0\xd7\xb5\x14\x72\x6d\x38\xa4\x97\x82\x88\xf1\x36\xbd\x14\xbe\x1e\x7f\x56\x1d\xe4\xc9\x8a\xcd\xc0\xa2\xc8\x77\xf8\x72\x34\xe0\x23\x68\xac\xfe\x45\xa0\x1a\x77\xc7\x75\x47\x10\x99\x92\x88\x19\x4f\x29\xba\xcd\x4d\x53\xe8\x1c\xda\xc8\xd5\x6c\x7e\xd4\xb0\x8a\x17\xda\x79\x68\x62\x56\xa8\x74\x0d\x43\x47\xc2\x7f\xbd\x59\x7f\x73\x68\xc2\x2c\xb5\x61\x9a\xa4\x43\xb6\xa4\x75\x2e\xc1\x0e\xc8\x32\xed\x12\x4c\x92\xb2\x26\xe9\x8b\x23\x0f\x76\xb9\x4f\xc7\x0a\xee\xff\x69\x23\x27\x84\x60\xc1\xf2\xbb\xb0\x16\x6f\x8f\x7d\x07\xfb\xb6\x63\x6b\x2c\xa5\x29\xa3\x21\x9d\x18\x45\xf5\xd9\x7c\xe3\x8d\x09\xb3\xa8\x88\xc2\xe8\x55\x74\x9d\x90\x9f\xdf\x44\x43\x8b\x6f\x94\xd0\x41\x91\x99\x08\xc1\xa4\x14\x82\x3d\x56\xe9\x7c\xd3\x6f\x1c\x46\xbd\x9e\x01\x90\x0c\xbb\xf5\xcc\xc4\xe3\x33\x67\x3a\x0d\x3a\xb8\xdd\xcc\x9a\xe5\x5e\xba\x2a\x35\x15\x87\xba\x50\xba\x96\x8f\x2b\x8c\x48\x16\x8d\x30\x33\xc5\x1d\xd3\xf7\x4e\xcf\xa9\x08\xaf\x4c\x72\x1b\x96\x99\x83\xbc\x3b\x04\x60\xf5\x1d\x4e\xe1\x6c\x7e\x9e\x31\x77\xa8\x48\xf2\xf5\x54\x5e\xbb\xb0\x08\x48\x99\xcd\xe4\x29\x1d\x04\xd3\x9b\x37\x1f\x6b\x6a\xc2\x75\x61\xa6\x49\x43\x88\xae\xc9\x89\xc0\x77\x50\xa6\x13\x42\x62\x86\x67\x99\xf5\x09\xa7\x23\x20\x2a\xcf\x94\x06\xbb\x0b\xc8\x09\x8b\x7a\x1c\xdb\x08\xaa\x36\xf6\x35\x04\xb7\x92\xe7\x7c\x56\xc1\x88\xca\xdc\x52\x5b\xc4\x59\x00\xb0\x80\x46\xe0\x3b\x73\x17\x54\x8a\xbb\x1c\xc5\xf1\xae\x3a\xc8\xa3\x9a\x9a\xa8\x40\x9c\x55\x60\x5a\x68\xad\xf3\xff\xaf\x4f\x70\x06\x55\xa2\x8a\xf0\x97\x74\x18\x0a\xdc\x67\x9f\x72\xd7\xcf\xc3\x2c\xea\xca\x2f\x42\x8f\x0b\xda\xcf\xd8\x4f\xef\x06\x5a\xf4\x40\x4f\xda\xd4\xe4\x00\x1e\x8b\x18\x74\x4b\x29\x0e\x34\xd9\xd2\xe6\x31\x99\xf4\x38\x37\x16\x48\x48\xf2\x75\x4d\x0f\x2d\x4b\x4c\x06\xa1\x7b\x44\xf9\xb0\x77\xe6\xeb\xb1\x07\x3b\xf3\x06\x2d\xff\x68\x2b\x25\x8d\x56\x4a\x12\x25\x22\xe3\xdb\x52\x80\xbc\x7b\xea\x71\xef\x35\xe0\xd0\x43\x33\x2a\x4c\xc4\x6a\xdd\xae\x02\xa9\x40\xf4\x4a\xae\xdc\x64\xc3\x34\xa1\x1e\x8d\x68\x67\xd3\x63\xf1\xcd\x54\xdd\xd1\x71\xc9\xb3\x68\x68\xa9\x61\xeb\x64\x11\x5c\xc1\xe1\x86\x56\xb7\x6d\x75\x94\xce\x5b\x34\x04\xbd\xa2\xc9\x65\x5a\x40\x2e\xd6\xe4\x6b\x0f\x55\x61\xfd\x69\x45\xe2\xe5\x2c\x0a\xe9\xd5\xd5\xb1\x5a\x60\x17\xf5\x97\x6d\xd0\xe1\x2d\x18\xec\x6a\xdc\x51\x2a\x3c\x11\x28\xd0\x24\x1a\xe8\x88\x4e\x3f\xab\xfc\x7b\xfe\xce\x73\x5f\xa1\x06\x31\x12\xaa\xfb\xca\x7a\xe7\x07\x63\xa5\x43\xb4\x4d\x89\xbd\xe7\x85\xb5\xf1\x5a\x4b\x89\xbd\x7d\xc8\x36\x0a\x7c\x37\xcd\xa6\x9f\x6b\xaf\xa6\x89\xc7\xfb\x20\x4b\x62\x70\x2f\xdf\xd4\x42\x95\x24\xb7\x64\xe0\x2f\x21\xa4\x42\x9c\xdf\xc7\x09\xa8\x04\x3e\x44\x17\x07\x24\x5a\x4c\xad\x5b\x68\x90\x20\x71\x07\xbe\x55\x1c\xfa\xe8\x09\xb0\xae\x2e\xe9\x6e\xc1\x45\x4e\x4c\x1c\x0c\xba\x5a\xbd\x02\x6c\x68\x72\xef\x1b\x9a\xac\x20\x1d\x7b\x24\xe8\xdf\x1f\x2b\xfc\x27\x7c\x06\xc4\xfc\xab\x7a\x27\xdc\xf2\x1e\x2b\xd0\x50\x96\xf6\xca\x10\x22\xec\x2d\xa7\xe8\xf9\xbd\xb1\x57\xf4\xfc\x9e\xca\x23\x7b\xab\x40\xea\x39\xe1\x80\x13\xfa\x8c\x9c\x86\x22\x1f\x9c\x6f\x17\x83\x72\xd8\x05\x46\x0b\x1b\xdf\xb7\x14\x56\x13\x32\x64\xe8\xee\x1c\x69\x58\x4e\xf9\xc8\xac\x26\x12\xed\x60\x3e\xbe\x87\xcd\x8a\x6f\x94\x19\xd3\x4a\x64\x57\x77\x2a\xd7\x18\x56\xf1\x77\xfd\x4f\xe5\x6a\xa7\x8a\x5a\x33\x1d\x7a\x47\x78\xc7\x30\xd3\xc6\x6b\xb9\xa2\x65\x5d\xa2\x2c\xcc\xcc\x52\xf1\x28\xfd\x5b\x40\x59\x19\x07\xea\x1a\xd0\xce\x79\x1b\x0c\x4f\xf1\xcd\xa1\x87\x15\xd9\xf3\xea\xd3\x91\x74\x1d\xc5\x9b\xe5\x7f\x45\x65\x69\x64\x14\xef\x63\x40\xd1\xc7\x7c\x93\x67\x83\xb8\xac\x29\x96\xe1\x1b\x81\xcf\xf9\x66\x3a\x9e\x99\x96\xa5\xab\xe4\x01\x83\x8c\x13\x7a\x0f\x7c\xad\xf5\x14\xae\x52\x6c\xc7\xd7\x53\xa1\x8d\x74\xcc\x68\xe3\x7d\x71\x3f\x4f\x27\x34\xed\xf9\x7a\xca\x67\xba\x3a\x4f\xbb\x75\xf5\xef\xf3\x5a\xfd\xfb\x7c\xe0\xe3\xf6\xdc\x64\xbd\x34\x01\x7a\x9c\x87\x13\x15\x4c\x5d\x15\x43\x09\xfd\x6e\x93\xbe\xdb\x52\x99\x15\x03\x9b\xed\xf0\xd9\xc9\x0d\x95\x9d\x7c\x0f\x70\x6c\x97\x3b\x54\xbb\x37\x48\x10\x13\xa5\xac\x7c\x44\xe5\x11\x79\x11\x65\x59\x39\x82\x94\x21\x4e\x61\xe4\xd4\x7c\x3d\x15\x9e\x1e\x9c\x6f\x67\x51\x98\xda\x9e\xea\x58\x33\x3b\x94\x6f\x94\x3f\x73\x59\x6d\x3a\x85\x59\xb6\x48\x12\x58\xd1\x88\x66\xbe\xa8\x1b\xf9\x1a\x72\xb7\xcc\x12\x9b\xb5\x7c\xff\xe2\x22\x8d\xba\x1c\x90\x0d\xee\xde\x89\x2d\x54\xf1\xfb\xe7\xaa\xab\xfc\x73\x47\xf3\x58\x8e\x7a\x89\x01\xd3\x8f\x3d\x0c\xb1\xe9\x88\xa1\x61\x83\xcc\x7e\x61\x5e\x91\x85\xd7\xd4\x5d\xd8\xa7\x14\xe1\x46\x59\xb4\xc2\x25\xf2\x4d\xd2\x57\xd8\x3c\xaf\xd8\x40\x61\x1a\xc7\x36\x84\xfa\xcf\x41\x09\xb4\xce\xd0\x82\x11\xdd\x75\x65\x65\x9c\x85\x83\xa8\xb0\x61\xf1\x1f\x27\x7c\x3f\x4d\x89\xcd\xca\xcc\xc4\xca\x99\x0e\xac\x7f\xbe\x56\xbb\xc5\x20\x1d\xa6\x28\xa7\xcb\x5e\xa9\xbc\xb3\xe1\x45\xc9\x4e\x0a\x4d\x7d\xc6\x22\x8b\x62\x29\x39\x0b\x75\xd2\x83\xab\xcf\x8c\x9f\x72\x3f\x28\x4a\xec\x92\x34\x32\xe9\xeb\x90\x49\xb2\x50\x2b\xdf\x4c\x09\xf3\x39\x4d\xf9\xa2\xec\x89\x90\x91\xd8\xcf\xb7\x9c\xc3\x13\x1f\xc0\xd8\x76\xa6\x5f\x62\x15\xbf\x47\xcb\xa2\xdd\xcf\xd9\xac\x92\x0e\x6c\x94\xce\xe9\xad\xc9\x1f\xe0\x0c\xdb\x50\xe7\xd9\x86\x92\xd0\x2e\x87\x51\x52\x0e\xb1\xaf\x4b\xeb\xd0\x73\xb8\x66\xe9\x95\xe1\xd7\x6d\x8c\xbd\xbd\xf7\x52\x19\x0f\xa3\x84\x3d\x3f\x5a\xce\x70\x8b\x53\x5f\xbe\x51\x6c\xa9\x28\xcf\x4b\xdb\xdb\x41\xdb\x2e\xde\x21\xea\x18\xe2\xac\xda\x72\x26\x44\x70\x5c\x45\x1a\xfa\x86\xc2\x5d\x9f\x53\xa8\xf0\x51\x96\x0e\x47\x45\xbc\x36\xeb\xd5\x5f\x6f\xc0\x97\x87\x6f\x68\x52\x22\x49\xdc\x3e\xf1\x6a\x2c\xdb\xa7\xa8\xd7\x68\xc0\x65\xd0\xd9\x71\x1e\xdb\xee\xf8\x84\x1c\xa6\xc0\xb3\xe9\xb7\x71\x0f\xd0\x01\xef\xb8\x02\xb0\x03\xfb\x25\x45\x6f\x57\x98\x4d\xe0\x28\x3b\x4e\xfa\xa1\xd5\xf1\x63\xc5\x8a\xfd\x08\x10\x1e\x9e\x4c\xd7\xf1\xab\xd8\xd5\x14\x65\x16\xbd\x2a\xeb\x17\x0f\x78\x1b\x21\x39\xdf\x34\x09\x85\xf6\xca\x51\x1c\x85\x51\xb1\x46\xdb\x8f\x88\x46\xfa\x96\xd1\xb4\x2a\x1d\xa5\xe9\xa3\x92\xe3\x5d\x65\x61\xe0\xfc\x0c\x9a\xea\x73\xb0\xbc\x47\xd2\xcc\x45\xef\x40\x17\xc0\xb7\xae\x86\xc3\xcf\xb7\x43\x13\x47\x4b\x69\x96\x44\xce\x74\x6d\xf3\x16\x41\xea\x10\x65\x5e\xd0\x83\x7c\x54\xe9\x99\x66\x51\x68\x77\x28\xb9\x50\xd1\x58\xe7\xbb\x60\x6b\xaa\x24\x31\xc2\xcd\x40\xd1\x8a\x3f\x99\x5a\x5a\x07\xe7\xdb\x9f\xff\x07\x5f\xfc\xd5\xc5\x1d\x55\x98\x44\xd3\xfc\x8d\xcf\x76\xb4\x15\xa8\x42\x10\xa0\xd0\x2d\xa3\x49\xcf\x22\x1e\xfe\x7b\x5c\x75\x20\x8e\xd3\xd5\x28\xe9\xcf\x7a\x6f\x97\xcf\xa3\x2a\x8f\x02\xc9\xde\x89\xef\xdd\xf0\x39\x83\xcc\xf1\x3c\xd6\xb0\x3f\x67\xfa\x99\xe9\x95\xc2\xbc\xc4\xf4\x7d\x5b\x89\x09\xbd\x5d\x17\xdb\x4c\x44\x59\x4a\xca\x96\x4a\x8d\xe4\xa8\x2b\x5e\xac\x1a\x6e\xe8\x8a\x5e\xf6\x11\x6c\x96\x02\xb3\x6c\x39\xd9\x98\x6f\xab\x96\x71\x97\xcc\x11\xf3\x19\x2f\x0f\x0c\xfe\x3b\xc2\xab\x1d\x1d\x6f\x6c\x70\xc2\x95\x59\x97\xa2\xa4\x6f\xb3\x51\x16\x31\x39\x15\x31\xda\xcf\x69\x34\xf9\x3a\x78\x52\xaf\x67\xea\x8b\x56\xf3\xdc\xdb\x0d\x7e\xac\xec\x06\x3f\x56\x35\xd4\xa4\xcc\xf2\x28\xe9\x2b\x58\xf9\x11\x25\x70\xc4\x02\x23\x02\x0e\xc6\xa8\x60\xcb\xbd\x1b\xe8\xc4\x7b\x4a\xc1\x64\xee\x70\x7b\xd5\x9a\x2a\x1e\xe9\x5a\x53\xd8\xa4\x06\x62\xf3\xa1\xee\x89\x26\x0a\x82\x7d\xc5\x86\x65\x75\x36\xcc\x2a\xf3\xea\x0b\x0a\x23\x8e\x47\x74\x36\xc0\xde\xab\xe3\x82\xea\xc4\x15\x99\x59\xb1\x59\x9e\xaa\xf0\x82\x6d\xf1\xf8\x66\xaa\xa5\x31\x77\xb8\xbd\x14\x47\xa3\x96\x4f\xba\xf0\xa8\x7c\xad\x0a\x0a\x83\x34\x91\xaa\x18\x83\xd1\x30\xfd\x04\x99\xb6\x47\x71\x6e\x8a\xc2\x32\x9f\x0a\xc9\xc8\x1b\xc0\x68\x8a\x01\x17\x45\x65\xda\x99\x8b\xff\x15\xe5\xc7\x78\x52\xd0\x8b\xf9\x5a\x9d\x03\xa3\x28\x5c\xb6\xbd\x9d\x7e\x1a\x70\xce\x85\x65\x8c\x78\xd1\x61\xe5\x1c\x11\xfa\x61\xea\xd2\x01\xfa\x71\x8d\xce\x04\xfc\xfb\x4f\xb4\xc1\x43\x09\x33\x83\xb9\xc3\x22\x60\x1a\x68\x31\xd3\x06\x3a\x78\x2f\xcd\x86\x26\x61\x69\x40\x67\x70\xe6\x94\x0b\xae\xa8\xe2\xd8\x8f\xa6\xaa\xb8\x72\xb0\x0f\xbc\x95\x08\x10\x91\x37\x03\xe5\x0f\x73\xb3\xb6\x4a\xf3\x02\x1e\x22\x50\x32\x38\x4e\xad\x22\xbe\x56\x22\x9d\x17\xfe\x1a\x23\x4f\x6a\xb4\x3a\x2b\xfd\xa7\x9f\x76\x71\x6d\xa3\xad\x69\x6f\x25\xca\xbd\xce\x98\x90\xdc\xd5\xe3\x9d\xd0\xc0\x90\x10\x26\x27\xaa\xa2\xb2\x59\x33\xe5\xbf\xa8\xed\x67\xf1\x8c\x62\xa9\x4d\xcf\xc8\x37\x28\x13\xb8\x06\x71\x35\xb6\xe2\x11\xff\x84\xe2\x5c\x64\xfd\x2a\xda\x75\xb6\x74\xef\x06\xde\x3e\xf4\x5d\x05\x58\x8e\x56\xd2\x6c\x0d\x24\x7f\x51\x6b\xf2\xd3\xe2\xac\xd6\xe0\x4c\x8b\xc1\x1e\x9a\x98\xd8\xc0\xae\x8c\x55\x61\xfd\x04\x0d\xb5\xec\xdc\x5a\xf1\xe0\x06\xa9\xb4\xe0\x07\x5e\x47\x69\x9c\x69\xd6\x34\x13\x70\x90\x3d\x0a\x26\x27\x10\xcf\x97\xd1\xc9\x43\xcb\xf0\x82\x76\x0d\x67\x37\x32\x54\xdf\xd8\x7c\x1f\x61\xc4\x29\xad\x5a\x02\x82\x09\x76\x08\x76\xc7\x41\xf4\x0e\xda\x0b\xca\x6e\xa7\x1b\x22\xf9\x05\xca\x8c\x71\x42\xe3\xb7\x9c\x53\xda\x39\xe7\x54\x45\x0a\x5a\xc0\xd8\x8a\x40\xf1\x39\xa1\x58\x2d\x7f\xaa\xaa\xb0\x7f\x4c\xab\x09\x89\xdd\x71\x85\x5b\x58\x35\xc9\x0e\xcd\xf0\x64\xa0\x32\xc2\xf5\x1b\xaa\xe4\x08\x31\x2b\x8c\xd9\x11\xad\x23\xf0\xb0\xe2\x8f\xe4\xd1\x70\x14\xdb\x19\x5f\x37\x41\xe1\xd9\x19\x09\x52\xa2\xd1\x50\xb5\xee\x97\x26\x33\x49\x61\x2d\xb3\xe1\x51\x12\x9f\x60\xcb\x00\x62\x8c\xf5\xbc\xc5\xd8\xcd\x67\x33\xd2\x3b\x00\xf8\x60\x13\x74\xae\xcd\xd3\x35\x0e\x6a\x94\x45\x45\xae\x88\x6a\xbf\x83\x03\x82\x6f\x1c\x67\xcc\x14\xff\x79\xb1\xd3\x23\x59\xcf\xab\x53\xec\x98\x32\x5e\x3c\xaf\x0b\x4b\xdb\x49\xca\x00\x07\xf0\xc9\x9a\xa4\xef\xbb\x0d\x9c\xff\xf6\xa0\xca\xad\x98\x83\x8e\xb7\x71\x44\x71\x7e\x81\x70\xc5\x32\xfa\xf1\xd4\x56\xf6\xf4\xd3\xed\xcc\x8e\x20\x7f\xeb\xf9\x6f\xd7\xf0\x5b\xf8\xc6\x25\x90\x71\x9a\x2e\x83\xfd\xe9\x88\x72\x2a\xe3\xe6\xd0\x09\x85\xae\x1d\x74\xca\x03\x65\xca\x68\x38\x5a\x77\x5f\xfe\x6c\xa7\xa6\x57\x9b\xe5\x8f\xa3\x60\x27\x42\x9e\xf4\x4f\x31\xc1\xef\x8d\x95\x91\xc8\xef\x07\x3e\xfa\x45\x4f\x5b\x29\xe1\xbc\xe0\x0c\xf9\x14\x10\x0e\x21\x09\x1a\x09\x3f\x45\x11\x0e\x15\xaa\x33\x58\x5e\x12\x4a\xd4\xce\x35\xa0\x52\x6e\x10\x5e\x54\x68\x67\xd5\x4e\x23\xa2\xa3\x9e\x56\x60\xf2\x34\x31\xdd\x18\x02\x2d\xc0\xaf\x1c\x51\x2a\xe0\x20\xea\xa2\x66\x73\x5b\x9b\x52\x13\xcd\xd5\x26\x82\x26\x03\xf6\xea\x5f\x2a\x5d\x9c\x7f\xd9\x00\x50\x5d\x68\x0f\x6d\x62\xe3\x98\xb7\x63\x57\xb1\xf7\xf1\xee\xd9\xa9\x6d\x9c\xc4\xa2\x47\x99\xcd\x73\x49\x01\xb0\x84\x7f\x3e\xf6\x84\xb5\x69\x4e\x09\x69\x2f\x47\x23\xcb\xd8\x3b\x56\xb1\x1f\xd7\x24\xed\x6b\x89\xed\x2b\x23\xa0\x57\x76\x54\xef\x04\xf1\xe5\xa7\x04\x19\x00\xc4\xeb\x36\x16\x9c\x33\x8d\x73\xda\x47\x75\xa9\xc2\xa6\x96\x6a\x92\x16\x75\x1f\xab\x77\x68\x94\x44\xfb\xd7\x77\xd5\xd6\xc4\x9c\x09\x71\xf2\x69\xd5\x54\x3c\xad\xf6\xa5\xc3\xcf\xb3\x23\x35\xb6\xaf\x0f\xc7\xbe\xb9\xf4\x61\xb0\x05\x99\x30\x77\xb8\xbd\xb8\x7f\x5f\xcb\x8b\x86\x8d\x3d\xea\xf4\x0e\x4a\x4b\xae\xc1\xe4\x29\x28\x9f\x82\x25\x80\x8a\xf0\x1d\x55\x9c\xfb\xc1\x58\x9b\x23\xa9\x52\xef\xf5\x40\xeb\x3d\xfd\x8f\xaa\x34\xfe\xaf\xb1\x14\x30\xf1\x4e\xe2\xac\xc0\x56\xd9\x9a\x28\xac\x06\xf3\x88\x70\x73\x0d\x33\x02\x3f\x9d\x55\x5f\xf0\x1a\xae\x02\xac\xc1\xe7\x4b\xa0\x6a\x1e\x97\x5d\x36\x2a\x31\xcd\x83\xc2\x98\x5a\xac\xd3\x94\x39\x12\x1c\x7a\x4b\x52\x07\x2a\x35\x5f\xeb\x6a\x5b\x99\xf5\xa3\xd0\xc4\xb3\x1a\xce\xa3\xc4\xcf\x7f\x8a\x79\x83\xd3\xed\xaa\xca\xf1\xff\xd5\x54\xf9\x8b\x7a\x6b\xa6\xa5\x70\xed\xc7\x78\x54\xf9\xce\x71\x8b\x96\x4a\xbb\x55\x42\xee\x93\xc0\x27\x66\x9f\xa8\x82\x15\x62\xb3\x15\xcb\x46\x45\xac\x90\x5b\x53\xcb\xf5\xf1\xf1\x92\xc9\xbb\xd4\x33\x77\x75\xe6\x03\x73\xbc\x7d\x30\xdc\x47\x18\x53\x4a\xcf\xeb\x67\x34\x3f\x30\x8b\xb6\x39\x96\xf6\x72\x9a\x59\xd3\xa7\xdc\xcd\xb1\xb0\x38\x61\xe4\x9b\xc0\xb3\x57\x38\xd5\x70\x88\x24\xac\x2f\xbe\x56\x4c\xba\xea\x4c\xcf\x73\xce\x30\x5e\xe6\x69\xf4\xba\x36\x46\x7b\x7d\xec\x0f\xd8\xff\x0d\x13\x87\x6f\x02\xff\x33\x87\xd6\x24\x3b\xbc\x1b\xe1\x75\x5a\xe6\x02\x33\xa2\xd7\x25\xa9\x03\xed\xb6\xac\x09\x14\xe8\xfc\xa2\x61\xda\x08\xf8\xd9\xb4\x94\xa2\xf3\x36\xc0\xee\xf8\x66\xf2\xa8\x03\x65\x26\x09\x2c\x47\x6a\xd0\x30\xbe\x69\x32\x0a\x1d\x99\x24\x0a\x67\x14\x37\x1b\x27\x30\x7e\xf5\x2d\x35\x39\x8f\x2b\xee\x4c\x66\x47\x16\x68\x16\xfa\x43\x8e\x56\x94\x11\xf4\xd1\xa6\x9c\xc0\xe4\x79\x39\x94\x1d\x4b\x8a\x93\xd5\x17\xf0\xb5\x0a\x1f\x86\xd1\xf2\xc0\x44\xf1\x4e\x9f\x93\xff\x44\x05\x06\x3f\xc3\xd2\x97\xd8\xac\x8a\x32\xf9\x3f\xd0\x23\x48\xfc\x46\x3f\x9d\xff\x5a\x6d\x73\x7f\xe7\x57\xfe\x5e\xcb\x27\x56\x77\xf4\x21\x7a\xc7\xad\x75\xa6\x57\xb3\x75\x3d\xc2\x8e\x4f\x55\x8d\xe2\x77\xc6\xb5\xe5\xe4\xc3\xc3\x74\x69\x29\x0a\xed\xa3\xda\x3b\xf5\x8c\xd6\x57\xc2\x7a\xc7\x2f\x7e\x53\x33\x0c\x7e\xa6\x51\x7c\xf7\x29\xa8\x46\xd4\x7f\x56\x39\x54\xfd\x11\x7e\x39\xfe\xe2\x18\xfd\x72\x01\x11\x50\xfa\x82\x29\x75\x8d\x84\x56\x59\x7c\x9c\x66\xf1\xe6\x34\xae\xfa\xe9\xa7\xdb\x4b\x99\x45\xe0\x88\xd8\x0f\x27\x0e\xbe\x68\x83\x96\x28\xea\x03\xd3\x4c\xad\x83\xf3\xed\x35\xeb\xcc\xe2\xb1\x6d\xff\x46\xa0\xe4\x51\x7e\xa3\x29\x0e\x23\xf0\x08\xc7\x51\x78\x2d\x33\x9a\x79\x33\x33\xd9\x1a\xa5\xd2\x09\xbd\x14\x25\x91\x83\x12\x20\xa6\xb9\xa5\x94\x6d\xa6\x39\x24\x73\x87\xdb\xf6\x15\x3b\x1c\xc5\x06\x54\x08\x96\xc6\xa5\x71\x17\x99\x5c\xa5\x37\x3b\xb4\xd5\xe7\xcb\x79\x8e\xd0\x08\xd2\x73\x7c\x3d\xd5\x5b\x59\xdc\xdf\xee\x45\x71\xe9\xa0\x0a\x4e\x63\xc5\xd5\x5c\x8f\xe8\x09\xfa\xdd\xa6\x45\x4d\xc2\x40\xf9\xc0\x66\x33\x08\xef\xb4\x2e\xb4\xcc\x45\x55\xcd\x9a\xfa\x91\x8b\xfb\xdb\xa6\xf7\x8d\x32\x2f\x2c\x7e\xa4\xf8\xca\x78\x37\x2e\x8d\x39\x31\xc3\x2a\x10\xa3\x81\xc7\x0c\x01\x5f\xde\x59\x53\x57\x2f\x01\x85\xfc\xbb\x53\x01\xcf\x57\xe6\xda\x03\x93\xf5\xe2\x35\xea\x17\xf0\xf4\xa4\xcc\x46\xa6\xea\x56\x8c\xd1\xdc\xe1\xf6\x52\x99\xf4\xaa\x91\x2d\x4c\x1c\xe5\x85\x64\xc9\x8d\x76\x7e\x0d\x6c\x23\x62\x95\x73\xdb\xc8\x61\xfe\x3c\xaf\xf2\x78\xb0\x4f\xf9\x59\x0c\x47\xc4\xad\x6c\x69\x42\x4c\xcb\xd9\xda\x36\x2a\x2f\x87\xe9\x70\x58\x26\x51\x0e\xe1\x60\x39\x04\x6b\x0b\x5a\xb1\xc4\x89\x7d\x03\x6c\x25\x33\xbc\xe8\xf3\x85\xed\xd5\x30\x3b\x4c\x1c\xa7\xab\xb6\x47\x91\xaf\xab\xeb\x54\x33\x05\x81\xc7\x0d\x5d\x63\xfe\xc4\x67\x42\xd9\x30\xdf\xad\xe0\x98\x4f\x75\x94\xfe\xf3\xcf\x6b\xb6\xa6\xf4\xf7\x52\x8d\xd4\xad\x8e\xea\xf0\x71\x6d\x8f\xea\x75\xa3\x04\x72\x85\x4e\x22\xb6\xdc\x69\xe2\x5d\xe6\xab\x69\xa6\xad\xbb\x2e\x28\xe1\x02\xa6\x72\x63\x33\x62\xfb\x02\x44\x85\x37\xa6\xe0\x17\x5f\xff\x7a\xdb\xae\xd9\x7e\x6c\x04\x99\x2e\xaa\x5f\x1f\x8d\x55\x1b\xe8\x23\x55\x5b\x08\xd9\x59\x55\x7c\x2d\xd1\x22\xe2\xeb\x07\x5a\x05\xbc\x12\xff\xc3\xbf\xdb\x33\x85\xa9\x5e\xbf\x12\x8a\x3e\xa9\x4b\xb3\x27\x9b\x25\xc1\x43\x43\x12\x2f\xfe\x0c\x5a\x57\x67\xd0\xba\xe2\x37\xe7\x51\x3f\x31\x31\x73\x74\x70\x3e\xdf\x53\xe6\xe6\x27\xc6\x2a\x8a\xbb\xd2\xc4\xbd\x1d\x96\xe1\xa0\xe5\x63\xdc\x0f\xd4\xce\xff\xc1\x78\x8b\x79\x1f\xe1\xf2\x9e\x7e\x9a\xba\xd2\xc2\xfd\x50\x45\x8e\xef\x8d\xd5\x4e\xfb\x3d\x1a\x22\xfe\x57\x53\xaf\x00\x76\x55\x8c\xbf\x9a\xf1\x20\x91\x1b\x4a\xa2\xfa\x28\x82\x47\xc4\xe1\xe7\x5c\xf8\x67\xfa\x36\xe9\x19\xde\xd5\x31\x73\x70\x26\xf0\xf5\xa4\xe6\x7f\x30\xb0\x19\x49\x8a\x3b\x83\xb5\x03\x07\x24\x1a\xc7\xc7\x63\x2f\xbc\x55\x33\xd2\xac\x26\x28\x0a\xb5\xa7\x15\x9a\x1b\x7d\x6d\x9c\x42\xbf\xa7\x24\x14\xc2\x34\x89\xf2\x02\x3a\xfa\x0b\x9b\xe7\x91\xea\x6f\xea\x02\xc7\x59\x65\xd9\x78\x76\xea\x25\x1c\x7e\xbe\x3d\x88\xd8\x6f\x90\x59\xc7\xaa\x0e\x7f\xb4\x09\xfe\x17\xdb\xa4\x5f\x0c\x10\x10\x89\xda\x53\xf5\x27\xce\x56\xc7\x71\x0d\x3c\x37\x2e\x34\x25\x9a\x75\x2a\x94\x65\xc0\x0a\xdf\x28\x8d\xa8\xcc\xc4\x71\x64\x7b\xbb\xd4\x4c\xbd\xa6\x78\x74\x1f\x07\x0a\xd9\x7f\x0a\x81\xa2\xa8\x98\xb6\x9c\xf3\xd8\xc7\x34\x90\xa2\x4e\xa7\x2a\xef\xdb\x3a\xde\x8c\xe7\xe9\xde\x4e\x05\x1d\x67\x38\x8d\xa8\x5f\x2a\x55\xaa\x13\xb5\xc3\xc0\xc3\x05\x36\x28\x8c\x90\xe2\x85\x2e\x4b\xac\xda\xde\x13\xd8\xd2\xb9\xf8\xa0\x61\x1e\x6c\x8f\xc9\x72\x92\x93\xda\x41\x53\xfd\x1a\x0c\xfe\x43\xa0\x4d\x3a\x4f\x28\x97\x47\xed\xeb\xf8\x32\xee\x2d\xfa\x99\xd8\x35\xa9\xa5\xe7\x35\x24\xbc\x8a\xcd\x45\x50\x64\x00\xd9\x7d\x77\xac\xb4\x26\xa1\xcf\x57\x6b\x5c\x49\xaf\x6a\x6b\x8e\xf4\xd5\x2f\xb7\xe3\xb4\x50\x9b\x3c\x8e\x52\x91\x30\xdf\xa7\x1a\xf5\x65\x52\x64\x91\xcd\x1f\xa5\x54\x16\xdd\xdb\x7f\x8f\xb2\x3d\x0b\xe4\x06\xe4\xde\x29\xbe\x37\x5e\xf3\x7e\x5d\x69\xfc\xdc\xe1\xb2\x15\xc0\x25\xf7\x03\x8f\xf6\xfe\x40\x97\x7f\xcf\xe2\x3d\xa1\x15\xc6\x35\x30\x27\xda\x59\xe5\xd5\xa8\x05\x7f\x27\x68\x29\x17\xcd\x69\xb9\xa9\x85\xb6\xb1\x59\xda\xa5\x82\x9d\x17\x71\xfe\xb1\x12\x23\xf9\x71\x43\xd7\xb2\x4d\xa5\x18\x72\x64\x44\x35\x0b\xfa\xa7\xc2\xb3\xf0\x80\x3a\x66\x6c\x3b\x1f\x19\x4d\x9b\x6d\x2a\x9e\x03\x4e\x65\x73\xda\x9d\x9c\x4c\x9a\xf7\x78\xbe\xaf\x35\x2c\x2e\x3d\x50\x0d\x3f\x2f\x7b\x3d\x9b\x40\x77\x6b\x13\x1e\xb9\x9b\xd3\xb5\xdd\xb9\xc3\xed\x7c\x60\x96\x81\xe8\x6d\x82\x21\xe8\xa5\x19\x25\xdd\x74\xb5\xe5\xe9\xf7\x1c\x15\xf0\x8d\x43\x20\x9b\xa5\xc2\x66\x43\x53\x0c\x34\xe0\x77\x43\x4d\xe2\x0d\xed\x5d\xdf\x37\x08\xbd\x1c\xdc\xf7\xc5\xfd\xae\x48\xe3\xdf\xc0\x55\x87\x30\xac\x0e\xb6\x87\x7c\xb0\x75\x07\x53\x5a\xd4\xa3\x3d\x83\xee\x09\x72\xe6\x70\xaf\xa0\x7a\x12\x94\x37\x7f\x91\x79\x2c\x68\x1c\x3e\x3c\x2d\x89\x87\x96\xdd\x69\xfc\x38\x09\x31\x9b\x10\x1c\x66\xc5\x66\x89\xaa\xc3\xfd\xae\xaa\xc3\xfd\xae\x92\x89\x20\xea\x14\xb6\x3f\x67\x7a\xe3\x77\xd0\x93\xde\xd8\xd5\xe4\x45\x6c\xe3\x68\xd9\xaa\x41\xbe\x4e\xaf\x83\xaf\xeb\x5a\x0a\x45\xc1\xa1\xa3\x78\x18\xd2\x13\xf3\x4d\xbd\xff\x53\x46\x2d\x2f\xf1\x76\x8c\x36\x0e\xbe\x76\xbc\x8f\x70\x60\xa8\x13\x9a\x45\xaf\x6e\x89\x4e\xb0\xe9\x4a\xa8\xd2\xc0\x6d\x8a\xd3\xb4\x68\x29\x0a\x30\xb2\x64\xf1\x24\x52\xe9\x84\xd8\xa9\xec\xa8\x33\x59\x16\xf7\xfb\x1a\x8e\x37\x17\x52\x91\xc7\xb7\x03\x05\x96\xbc\xad\xb4\xc7\xfa\x69\xf5\x0e\xaa\x58\x7a\xaf\x6e\xae\x6c\x8e\x3d\xb9\xee\x82\x92\xad\xd8\xc4\x4b\xa5\x1d\x77\x7e\xdf\x04\xd9\x05\x4e\xdf\x16\x1a\x22\x28\xd2\xbd\x8f\x9f\x8c\x97\x7f\x8f\x76\x29\xd1\x6e\xad\xa6\x1e\x8a\x1b\xad\x0e\x15\xcf\xd8\x1d\x9b\xc6\x54\xc5\xe3\xcf\xf1\xee\x73\x27\x50\x55\x1b\x74\xf9\xa8\x0a\xf0\xdf\xb7\x3b\x3e\xbe\x66\xc9\x5c\x4c\xc9\xab\x14\x8f\x02\x60\x53\x77\x6d\x37\xd9\xf0\xa1\xea\x87\x39\x63\x7f\x97\x67\xb0\x01\x80\x24\x65\x74\x94\x20\xb8\x3e\xa3\x50\x62\x3b\x27\xf4\x60\xd8\x4a\xb7\x4d\x7c\x0b\xe7\x09\x8d\xd8\x7e\x93\xbe\x9f\xff\x5a\x61\x5f\xcc\x68\x14\xaf\x91\xeb\xf0\x8b\xd2\x30\xbb\xaa\x14\x37\x41\x94\x13\x24\x8b\x3e\x10\x9f\x8e\xe3\x96\x0f\xb1\xcf\x52\xfd\x9d\xaf\x55\x4d\xaf\x1f\xa5\x2b\x26\x49\xa2\x1d\xd5\x2f\x04\x34\x61\x27\x88\x7c\xe2\x72\xab\xe9\xb9\x63\xaf\x9d\xcf\xf9\x24\xfb\x95\xa9\x66\x54\x94\x67\xc6\xc6\xbb\x54\x25\xf4\x2c\xc5\x61\x48\x14\x78\xcc\x9d\x37\x4c\x75\x60\x60\x60\xdf\x1a\x7b\xf1\xc9\xab\x81\xdf\x46\xb8\xcd\x26\x54\xe6\x29\x6f\xaf\xc5\xfd\xed\x61\x9a\x17\xa8\x26\xe3\x8c\x7e\x0b\x02\x77\x7c\xa3\x50\x25\x2b\x26\x81\xb5\xa9\x6a\xbd\x8a\xd8\xf0\x2d\xed\x4b\x79\xd4\x41\x3c\xaa\xac\x3d\x5d\xb3\x19\x7b\x5f\x89\xcc\x17\xe6\x3d\x42\x85\xbf\xd2\x1b\xdd\x79\x4d\x0f\xfc\xe3\x29\x05\x02\xb2\x9c\x4e\x7a\xf6\xd5\x95\xb4\xcc\xd9\x8f\xcf\x85\x22\xd5\xf7\x0b\x78\xb0\x21\x0e\x2c\x06\x76\x68\x59\x36\x91\xdb\x2d\x81\xdf\xac\xf1\x72\xc4\x8d\xc9\x73\xa7\xab\xbc\x37\x7f\xc4\xe3\x53\x7e\xfb\x35\x8c\xba\x60\xb6\xe9\x7d\xa0\x05\xf6\xae\xea\x0e\x1e\xa1\xa5\x85\x89\x75\x9d\xa2\x04\xed\xc6\x83\xd5\x7b\x47\xa9\xa9\x5f\xc5\xf0\x21\x85\x7e\x0b\xe5\x76\xfe\x0a\x2c\x6b\xd0\x1f\x4f\x6d\xb5\x08\xa7\x2c\xe3\xc0\x81\xdd\x0a\xc3\xf3\x7d\x0a\xf2\xf0\x18\x28\x61\x20\xc9\xd8\xde\x51\xc4\x90\x8b\xba\xc7\xca\x35\x45\x90\xe5\xd9\xb5\xc4\x59\x9b\x3b\x50\xc9\x0d\xad\x36\x51\x98\x65\xfb\xb0\x4a\x97\xa0\xb1\x87\xf0\xf5\x1c\x3d\x80\xb8\x8b\xa9\x06\x2c\xb2\x59\x80\x34\x2f\x2a\x81\xd4\x13\x0a\xc8\xb0\x0d\x54\x62\x16\xdc\x08\x94\x2a\xf7\x6b\x63\xcf\x94\xbc\xa4\x20\x8d\x65\x12\xbd\x82\xfa\x76\x13\xe7\xa9\x81\xff\x92\x17\x65\x2f\x72\x8e\x06\x18\xb4\x13\x81\x52\x23\x38\x31\xd6\x4e\x19\xd4\x1a\xf2\x1a\x4e\x67\xc6\x5e\xf3\xe9\x8c\x3b\xe1\x47\x26\x64\xa5\x30\x4e\xd6\xe9\x21\x24\x71\x6f\x64\xf0\x67\x26\x8a\xb3\xd4\x30\x88\x47\x30\xf5\x2d\xa7\xf5\x76\x51\x41\x5d\x56\xa2\x7e\x9a\xa5\x25\x48\xe7\xf8\xd4\x53\x88\xaf\xb0\xcf\xb0\x2a\x82\xe0\x5f\x6b\x8a\xbb\xd5\x70\x4a\x6a\xa9\x3c\x2b\x2f\x8f\x6b\xfa\xc2\x49\x8f\xe0\xb7\x22\xb9\x78\x4b\x71\x66\xa6\xfd\x09\x0f\xcc\xb5\x4d\x3f\xe3\x46\xb3\x24\x14\x38\xf4\xa5\x22\x54\x0d\x92\x54\x1e\xf4\x71\xb0\x92\x66\x48\xd5\x85\xd5\xda\x72\xee\x45\x5a\x09\x20\x4c\xb3\x59\xda\x92\x5c\x81\xc4\x0f\xd2\x39\x85\xcd\xe3\x9a\xb0\x28\x7c\x3d\xc8\xc5\xd1\xc4\x69\xd2\xcf\xa3\x9e\x85\xce\x17\x66\xfa\xa7\x34\x4e\xae\x36\x77\x70\x9e\x4f\xbf\xab\x53\x21\xae\x8b\x4f\x07\xe9\xa8\xae\x8e\x56\x7d\xb9\xa8\xa3\x6d\xdd\x5b\x0f\x1c\x68\x93\x5b\xdf\x6c\x4b\x89\xea\x57\xb3\x1e\x5f\xf3\xa7\x58\x1a\xc8\x91\x4f\xd7\x65\xf8\xfd\x01\x86\xea\x06\xa4\x4d\x9d\x07\xb0\x5a\x2f\x27\xd5\x0a\xdd\x98\xda\xf6\x9e\x69\xf7\x74\x3b\x94\x51\x83\x81\x5a\x62\xd3\xf8\x59\x74\x51\x8b\x67\x5b\xb5\x21\xa7\x5f\xca\x37\x53\xf9\x88\x8c\x4f\xb5\x59\xb6\x7c\x8f\x71\x83\x06\x95\xaf\xa7\x0a\x9e\xe4\xd6\x3c\x22\x82\x98\xf6\x0d\x65\x27\x65\x51\x28\xdf\x62\x32\xb1\xb8\xbf\xfd\xe2\xfe\xb9\xa7\x68\x0b\xc6\xb6\xf6\x38\x21\xea\x90\x9c\xcc\x90\x78\x20\xa6\xe0\x06\x4a\xf1\xc2\x9e\xf0\x8e\x07\x0f\x4d\x7c\x4f\xf5\x89\x8e\xea\x08\x5d\x42\xce\xc7\x7a\x90\xa4\x93\x8e\x8a\xfb\xb5\xb1\xd2\x55\x7f\xa2\xe3\xfd\xfc\xe1\x51\x8b\x70\x68\xd7\x44\x03\xc4\x02\x5f\xbc\xbc\x3c\x56\xa8\x76\x65\x33\xb0\xfd\x6f\x20\x52\x40\x44\xfd\x38\xb4\xac\x1c\x33\xbf\x1a\x03\xfa\x93\xd5\x7d\x13\xc2\xea\x32\x1c\x42\xf5\xc2\x06\x36\x8c\xa1\xa9\x8f\xfa\x0b\x67\x93\x7c\xa3\x4a\xaa\x36\x87\x2d\x45\x6f\x97\x6f\xe9\xfe\x05\xf6\x02\xd7\xc5\xad\x9e\x44\x54\x79\xab\x1f\x08\xfa\xcc\x15\x5a\xc7\x7c\x1d\xd4\x25\x04\x3d\xa1\xb8\xc9\xb5\x99\x70\xa2\x33\xd5\xeb\x40\x40\xfa\x04\x15\x01\x50\x29\xe0\xa1\x12\xcd\x1f\x69\x75\xd9\x84\x84\x90\x9d\xa4\x29\x84\xbb\xc5\xd3\x58\x12\x0e\x82\x7b\x26\xd6\x14\x03\x6a\x74\xe0\x0d\x41\x2a\x15\x55\xd6\x9f\xd2\x33\x23\x41\xdf\x54\xec\x0b\x53\xc4\x26\x29\x58\x9f\xd9\x21\xa9\x17\xf7\x3b\x24\xf5\x67\x14\xc1\x3a\x1c\x98\xa4\x6f\x4d\x37\xb6\x14\x05\x0a\xc5\x45\x01\xcf\xb5\xff\x65\x1c\x11\x39\xb9\xfa\x5e\xbc\xc0\x2b\x4a\xe6\xe5\xca\x14\xd3\xce\x99\xbf\x65\x69\x19\x0e\x18\x86\x57\x2b\x6a\x34\x09\x63\x8d\xe2\xb4\xe5\xe1\x33\xdf\x52\x1c\xf5\x6f\x29\x60\xda\x52\x96\xd2\xb3\x68\x47\xff\xcd\x40\x35\xc9\x37\x6b\xdb\x71\x64\xbb\xd8\x12\x1d\x81\xdd\xb5\x49\x3e\xa8\xf7\xe4\x1a\xa4\x76\xf3\x32\xeb\x93\x45\xbf\x93\xf7\xd7\xca\x92\x17\x5d\x8e\x18\x25\xbd\x28\x34\x5e\xc4\x15\x33\x1e\x94\x31\xbe\x6e\x74\xf6\xc8\xca\xea\x50\xd2\x5c\xa0\x73\xba\xfb\x79\x4e\x63\x41\x07\x65\x96\xf7\xcc\xda\x6e\xaf\xfd\x70\x83\x16\xa7\xf3\x3e\xf2\x94\x1c\x0a\x95\x37\xd1\x72\x92\xe6\x89\xa2\xc1\xff\xba\xa6\x79\xff\x7a\xa0\xb0\x01\x6a\x98\x87\xfd\xe1\x3f\xfc\xbb\xa5\xe1\x87\xc3\xb4\xde\xd0\x16\x55\x1b\xae\x0b\x10\x47\x23\x2e\xd2\x20\x4a\x04\x0c\x8d\xaf\x55\x4b\x7d\x35\xb5\x79\xb5\x60\x36\x5b\x9c\xec\x73\xb3\x49\x53\xa6\xb7\x4f\x1a\xe8\xd8\x69\xb7\x30\x51\x62\x7b\x33\x4e\x4a\xef\x61\x9e\x46\xe8\x5a\xdf\xc1\x7e\x2f\xf6\xfa\x0d\xc6\xcf\x65\x52\xa5\xfb\xa2\x44\x89\x7f\x78\x47\x39\xfc\xde\x51\x5c\x86\x5e\x94\xa7\x5d\x0b\xb3\xb1\x19\x12\x10\x91\x23\xda\xf3\x2c\xaf\xea\xce\xe1\x8f\x15\xcd\xc7\xe4\xb9\xcd\xd8\x2c\x14\x2d\x58\x06\xda\xf0\x8d\xc3\x5e\xd3\xf6\xb1\xbb\x06\x2d\xf7\xf2\xdf\xbf\xbe\x87\x55\x69\x50\x21\x85\x6b\x28\xf6\x89\x3d\xb4\x67\x20\xac\xdd\x89\x50\xd2\xd9\x3b\x1c\x98\x03\x54\xeb\xe3\x67\x69\x0b\x47\x0e\x70\xbf\x01\x3a\xf8\x72\x3b\x4c\xd3\x18\x87\x92\x23\x79\x38\x72\xd9\xf9\x06\x35\x84\x85\x76\x37\x4b\x97\xa9\x5e\x32\xe7\x80\x46\x74\x48\x09\x02\xe9\x29\xb5\xb9\xd8\x2c\x8c\x72\xda\x5b\xe8\x9f\x88\x86\x7d\xcb\x69\x7d\x5c\x54\xf8\xed\x1e\x91\xb5\x0b\xed\x69\xfb\x91\xf2\xb4\xfd\xa8\x69\x61\x66\x56\xe9\x38\x3a\xe8\x82\x63\x13\x5d\x77\x0a\x5b\x79\x5c\xf6\xfb\x51\x3e\x98\xf5\x8c\xc9\xc7\x3a\x5b\xe1\x65\x52\xaf\x45\xf2\x2d\xea\x48\x1e\x6b\xd1\xb3\xb4\xbc\x05\x8e\x2e\x7d\x17\xc5\x58\x5a\x9f\x8a\x80\xe7\x0e\xb7\xcb\xd1\x20\x8d\xf3\xc2\xb2\xf8\x3d\xd7\x8d\x69\xbd\x49\x0d\xd9\xd7\x4c\x96\x32\xfb\xcd\xd2\x26\x45\x15\x08\x55\x87\x34\x6a\x67\xc0\x4d\x63\x9b\xe5\x6c\x58\x72\x4a\xbf\x39\x17\x76\x90\xb1\xf8\x20\x7e\xc7\x7b\x81\xaf\x41\xbf\xa7\xa2\x60\xe4\xaa\xc8\x70\x05\xc7\x57\xfd\x15\x02\xa5\x9a\xd3\x83\x0e\xd0\xaa\x10\x66\x0b\x4d\x1d\xf8\x51\xbe\x6e\xac\xde\x8e\xca\x2c\x2f\xdd\x86\x28\x38\x17\x0d\x80\x91\xed\x23\x2f\x6d\x4f\xab\x6c\x5e\xd4\x65\x17\x70\xc4\xc4\x1f\x4c\x6b\x79\xa8\x52\x5e\x61\xe2\xe5\x1c\xfe\x43\x08\xe8\xa1\x66\x8f\x60\x0e\xf2\x40\xf8\xa3\x6d\x54\xda\x47\x71\x61\x43\x39\x38\xae\x2b\x89\x17\x0e\x4d\x44\xad\xe0\xb3\x6a\xf4\xba\x26\xcb\x4c\x9e\x0f\xa9\xff\x57\x85\x2c\x4d\x7e\xca\x2a\xe9\x88\xa3\xd1\xc8\x82\xb8\xee\x98\x96\x4e\xd1\x63\x06\x31\x02\x42\xb6\x9b\x94\x41\x4b\x21\x50\x9f\x5f\x99\x59\x7b\x48\x93\xce\x55\x95\x90\xfd\x09\x5c\x65\xb4\x7a\x6c\x4c\xde\x9a\x04\x2b\x36\x06\x4e\xaf\xe9\x7d\xa3\x8a\x74\x15\xf1\x23\xff\xb9\xda\x0c\xdf\x55\x8b\x33\xb3\x45\x99\x25\x90\xf9\x76\x1c\xa8\xc5\xfd\x7c\x60\xcc\x00\x09\xcd\xf6\x75\x8d\x62\x1f\xe1\xc0\x86\xcb\x2d\x27\x6f\x7a\xe2\xb7\xb0\x6c\xf8\x46\x85\x24\xd5\xfc\x8f\x32\xcb\xd2\x63\x6e\x34\x2e\x2b\xe7\xf6\x87\x3a\x0a\x8e\x7a\x02\xcb\x01\xf3\x98\x6b\x08\x5c\x27\x54\xde\x47\xbb\x26\x0f\xf3\xc3\x24\x19\xb3\xda\xc4\x18\xb6\x75\xe8\xd0\xe6\x71\x4d\xbd\xb8\xad\x8a\xa2\x5d\x13\x17\xd1\x30\xcd\xac\xce\x79\x2f\x73\x59\x87\xef\x54\x4b\x78\x35\x8a\xe3\x5f\x54\x8a\xfa\x3b\x69\xa2\x21\xcc\xb8\x4b\xe5\x2d\x34\xb1\xde\x09\x50\xdd\xe4\xdc\x15\xe7\x16\x60\x0c\x50\x72\x46\x11\xe5\x3d\x20\x00\x5d\x86\x5b\xed\x8c\x4c\x7b\xa3\x97\xb6\x79\x89\x42\x6e\x24\x1e\x68\xc5\xb1\xcb\x09\xa6\x04\xe2\x83\x4d\x70\xe0\x10\xee\x9f\x25\x91\x56\x81\xba\x54\x93\x08\x25\xe9\x8f\xc7\x5a\x1a\xe5\x0c\xd0\x8e\xae\xf2\x5e\x8d\x30\x32\x81\xab\xba\x10\x74\x0c\xe1\x34\xf6\xa5\x0d\xa5\x75\x77\x8c\x26\x07\x7e\x04\x93\xff\x84\x0b\x4a\x25\x37\xce\x3f\x51\xfe\x41\x90\xb3\xb3\x23\x7b\xf5\x37\xec\xaa\x8d\x3d\x41\x01\xcb\x91\xeb\xe7\x7c\xd3\x20\x9f\xff\x5c\x7b\x10\xf5\x07\x00\x4b\xcf\xbb\xf5\x4c\x5f\x80\xe3\xec\xcf\x70\x4e\x21\x4f\x3a\xed\x1a\x22\x89\x49\x8a\x32\x5c\xb6\xe8\xa0\xb1\xcd\x08\xa6\x83\x78\x8e\x78\x7b\xfb\x24\x1f\x45\x99\x6d\xa9\x49\x06\xfc\x22\x5f\x37\xf0\x55\xc9\xef\x81\xe6\xbd\x04\x2c\x2a\xad\x56\x91\x75\xba\x9a\x44\x09\x8c\xae\x45\xdb\xa8\x5a\xae\x52\x26\xa6\x79\x20\x55\x5f\x3f\xad\xa1\x4a\x2d\x02\x4e\xf4\xd0\xcc\xe0\x52\x62\xd7\xb7\xbd\x1b\x40\x1a\x7b\x90\x24\xba\x79\x37\x69\xd6\xf0\xb5\x76\x15\xce\xd2\x9c\x8f\x6d\x36\x2c\x0d\x94\x6e\xe4\x95\xb1\x92\xae\x34\x55\x68\xbf\x43\x8b\x60\x54\x3f\x57\x50\xe4\x34\xb5\x91\xaa\x5d\xd1\x45\xdd\xed\x1d\x5f\x20\xbc\x10\xf8\xd6\x6f\x14\xb5\xfc\xc9\xb8\x03\x9b\x23\xdf\x28\x51\xf2\xd0\xc4\x71\xbe\x0b\x13\x04\xcb\x63\x14\x28\xe8\xe7\x45\xa5\x07\xc6\x76\xa0\x08\xbc\x4e\xa8\xc1\xe3\x30\x96\xff\x9c\x1e\x9a\xff\xc2\xb7\x5d\xd2\xe1\xc8\x64\xa6\x88\x56\xa8\x32\x51\xad\x29\x2d\x6f\x09\xd6\xcb\x5d\x05\x35\x3c\x3f\xde\x92\xc7\x1f\x3a\x54\xc5\x59\x4f\x55\x1f\x8e\x2a\x11\xb4\x38\x65\x1e\xe3\x17\xa0\x33\xf1\xaf\x09\x14\x87\xe0\xe4\xf7\x30\x73\x15\x79\x46\x46\xf7\x1e\x2d\x60\x4c\x85\x13\xaa\x79\x7a\x1b\xdb\x83\xc0\xcc\xea\x38\xd8\x45\x49\x25\xfe\x29\x3d\x37\xfe\xd1\xee\x8e\xc7\x25\x6e\x9f\xd0\xba\x94\xa6\x97\x4f\x86\x67\x3a\xb4\x13\x20\x34\xb8\x8d\x9d\x00\x87\xcb\x6f\x8f\x5b\x2f\x2d\x38\xe6\x30\x8d\x0d\xfa\x3b\xa7\x35\x97\xe8\xd3\x29\xc9\xa8\x2a\x2a\xc8\x47\x36\xd4\x12\xdc\xa8\x4b\xf0\x3e\xc8\x37\x0f\xe4\x56\x95\x09\x4a\xe2\x8e\x34\x70\x03\xe3\xc3\x37\x8d\x02\x42\x26\x1c\x44\x76\x45\xbe\xce\x49\x0c\xfb\xd6\xc4\x05\x27\x45\x1c\xc6\x36\x5b\x66\x4c\x9d\xc8\xcd\x2b\xce\xc4\x59\x55\x98\x18\x46\xe4\x0e\xe5\x16\xd0\x3d\x1a\x5d\x6c\xb4\x1f\x6b\xd7\x79\x2c\x09\x6c\xc7\x33\x6e\xa3\x2b\x32\x13\x79\xc5\x39\x3c\xfe\x8e\x89\x4f\x4c\x3f\xdb\xf1\x71\xd2\x4e\x85\x60\x09\x07\x65\xdf\x44\x2d\xef\xd3\xb4\xae\x66\xe3\x7a\x03\x76\x68\xae\x6d\xba\xb9\x18\x82\x62\xb2\xfd\x23\x85\xff\xfe\x47\x2a\xca\xcb\x6c\x35\x54\xd5\x33\xcd\x3b\xbf\xf4\x3d\x93\xed\x5f\xe0\x22\xc6\x2d\x25\xf8\x3f\xeb\x7e\xc8\xc0\x8c\x46\x36\x11\x50\x21\xa2\x07\xa8\x96\xa1\x6a\xb1\x7d\xe2\xf5\x8f\x76\xec\xe9\x34\xc0\x1e\x57\x07\xe9\x68\xe4\x86\x02\xe7\x0e\x24\x2c\x71\x4d\xfd\xfb\xcd\xf7\xc6\x3e\x11\x1e\xc5\xd6\xe4\x65\x06\x14\x28\x0a\x50\xef\xd6\xb4\x86\xd4\x5c\x3a\xee\x76\xfb\x5e\x9a\x24\x36\x8e\x2d\x42\x71\x54\x53\x3f\x1e\xab\xd2\xea\xc7\x4d\x0e\xb1\xa3\x28\x34\x39\xf3\x2f\x1d\xd4\xa1\xfa\x1b\xbe\x99\x12\xd8\xa8\x8e\xa3\x7c\x14\x15\x45\xcc\xde\xd3\xd2\x6f\xf1\x7d\x98\x7b\xb4\x43\xb3\x7b\x88\xea\x8b\x15\xe9\xaa\x8d\x73\x05\xef\xbb\xa8\xe1\x7d\x17\x15\xb5\xb1\x30\xa5\x88\xb5\xb0\x95\x90\xb2\x5b\x3f\x3d\x96\x80\x67\x94\x19\xbc\x4c\xc4\x6a\x37\x18\x40\x8f\x3c\xfb\x28\xed\x39\x62\x76\xec\xa7\x01\xf1\x6e\xd3\x0c\x24\x7e\x99\x58\x9a\xe8\xd7\x60\x6d\x54\x64\x11\x87\x78\x18\x4a\x70\x3a\xf8\xba\x89\x1d\xeb\x75\xe3\xfc\x46\x74\x07\x25\x48\xbe\x51\xee\x57\x03\x1b\x47\x61\x3a\x22\xf5\x5a\x3d\xdb\xd5\x03\xaa\x5c\xe8\xd5\xd4\x2b\x6a\x49\x97\xa1\xda\x05\xa5\xfb\xb0\xf5\xa0\x5e\xdc\xdf\xce\xcb\x70\x80\x70\x1e\x0d\xc5\xf7\x14\x4c\xe4\xbd\x26\x1f\x6e\xfb\xca\xc8\x90\xbb\x2a\xcd\x7a\xec\xaf\x7f\x4a\xb3\x9e\xaf\x6b\xed\xe1\x9e\x29\xb4\xbc\x39\x7d\xb8\xec\x43\x0d\x83\x19\xc6\x69\x89\xb6\x9f\x94\xc8\x6a\x3a\x4b\xba\x5e\xd6\x4b\x87\x8f\x78\xb4\x30\xc3\xeb\xc1\x14\xb8\x8a\xde\x89\x03\x48\xb9\xf2\xdb\xbb\x81\xdf\x90\xae\xd1\x1c\x70\x2a\x07\x07\x0e\xc8\xbf\x19\x2b\x59\xc6\x33\x4a\x09\x73\x67\xc7\xb7\xb7\x6e\x62\x6f\x94\x43\xd4\x57\x21\xe3\x34\x34\x10\x05\x59\x94\x2f\xc2\xe6\xc1\xd7\x4a\x05\x6d\x94\xc6\x6b\xa3\x2c\x1d\xad\xc5\x36\x61\x28\x86\x8a\xc3\xbc\xf7\x9b\xe2\x9e\xc7\x29\x1d\x1e\xbe\x06\x52\xcf\x29\xb5\x3d\x51\x96\xa6\x40\xcb\x62\x27\xd9\x18\x2b\xef\xb2\x8d\x29\xe6\xf4\xc1\xf9\x76\x9a\xc4\x6b\xb3\x34\x11\x10\xa6\x71\x7e\xc5\x04\x35\xe5\x09\x72\x23\xf0\xf6\xe7\x6f\x07\x4a\x87\xc2\x0c\x47\x96\xcd\x03\x9e\xab\x51\x1b\xf9\x7a\x6a\x31\x1c\x98\x6b\xe7\x21\xf1\xab\xeb\xd3\xe9\x98\x9a\x4e\xd3\x2e\x56\x73\x87\x89\xb7\x51\x44\x43\xab\x46\xe2\x9c\x1a\x89\x73\xae\x3f\x1d\x89\x27\x2b\x21\x97\x94\xae\xb7\x84\x95\x0c\x0a\xc5\x52\xd2\x20\xa0\xa8\xbf\x36\xa3\x2a\xfe\x0f\x75\xfc\xaa\x06\x6e\x08\x8f\x77\x73\xfc\xa8\x7b\x3d\x3d\xb8\x82\xbd\xa0\x2d\x35\xe7\x5c\xd7\x52\x82\xab\x28\xcb\x6c\x3e\x4a\x93\x3c\x12\xae\x9d\x13\x7b\xf0\x94\x36\xc4\xcb\x68\xd1\x6f\x36\xec\xb3\x0b\x6d\x9b\xf4\xe3\x28\x1f\xb4\x94\x28\xfc\xcf\x69\x08\xa4\x49\xb8\xb5\x2a\x4d\x4d\xc9\x51\x96\x0e\xd3\x6a\x7e\xb2\x73\x9c\x53\xed\xf1\x0a\x3e\xba\x64\x69\xa2\x02\xef\x05\x65\x56\xae\x34\xf2\x4d\x43\x65\x6d\xbe\x5d\x18\x94\xc9\x16\x20\xa2\xfc\xc2\xe6\x25\xd5\x6c\x8f\x53\x93\xe4\x0f\xd1\x67\x60\x4a\x6c\xe2\x37\xf3\x8d\xda\xd4\x2e\xd5\xc2\x88\xc0\xdb\x69\x5d\x54\xb5\x8a\x87\x3a\x0a\x07\xff\x47\x81\x87\x80\x3c\x32\x51\xca\x95\xcd\x88\xb6\x2a\xdd\x2e\x22\xcb\xb8\x05\xb1\x32\xd5\xe6\x21\x37\x03\x45\xd7\xbe\xa8\x9f\xe7\xe6\xf4\x44\x3e\xd0\xb6\x71\x44\x1a\x30\x78\xa5\xd8\xc8\x51\xbe\xc1\xc1\x77\x47\xe9\x67\xbd\xd3\xa4\xa6\x18\xae\x85\x71\x14\xf2\x7b\x41\x1e\x8d\x36\x13\x5f\x37\xea\xec\x3f\xbb\xfa\xac\xd2\x37\xe3\x99\xcd\x37\xca\x8c\x3c\x1c\x98\x28\x9b\x51\x94\x33\x5d\x86\xa3\xb0\x57\x3e\x60\x9f\x86\xf2\x86\x25\x99\x81\x54\xfb\x27\x3b\x76\x51\xe2\x25\xee\x5d\x1e\x87\x37\xb2\x89\x89\x0b\x72\xf7\xf1\x52\x06\xad\xba\xac\xc1\x9c\xdc\x04\x4a\xa7\xec\x62\xf0\xb7\x1a\x62\x08\x12\x84\x25\x81\xa5\x7e\x44\x23\xea\x20\xd9\x6f\x2a\x79\xc9\x2b\xca\x0b\xec\x7c\x53\xfb\x71\xc9\x12\x39\xae\x26\x9f\x79\x31\xf0\xad\xb7\x9b\x4d\x53\xe3\x85\x76\xbc\x36\xaa\x36\xd0\x1e\x96\x16\xbb\xa6\xe1\xcf\xc4\x42\xad\xc9\xb7\x2c\x5d\x5a\xb2\x56\x9b\x66\x01\x71\x26\xd5\xa1\xcf\x69\x85\xc4\x5e\x94\xae\x98\xbc\xca\x05\x58\xe7\x9c\xb7\x5c\x65\x0d\x7a\xce\x19\x7e\x8d\x6c\xb6\x94\x66\x43\xa7\xf0\x87\x5d\x81\xa1\x47\x7c\x13\x68\xaa\x57\x98\xae\xd0\x8e\x5a\x0d\x1b\x26\xdf\x7d\x85\x84\xb9\xef\xd0\xe3\x2b\x51\x96\x7e\xb3\x44\x8b\x51\x79\x7e\x3a\x03\xd0\xc0\x0b\x2d\xe6\x65\xb2\x86\x6f\x77\xd6\x9e\xba\x59\xf8\x90\xc4\x99\x25\x4d\x32\xc0\x2c\xde\xd7\xde\x74\xac\x84\x20\xed\x9a\xad\xc0\x1f\x52\xc4\x34\x61\x16\x2d\x45\xa1\x8b\x87\xd9\x1d\x92\x9e\xdd\xe9\x6b\x1d\x3a\xc4\x19\xc9\xd1\xb1\xf6\xbd\x8f\xe3\xc8\x0c\x1f\xf1\xf5\xcd\xb3\xbc\x96\x19\x8a\x13\x78\xe9\xc6\xdb\x9a\xcd\x72\x4b\x8b\x53\x7e\x40\xb3\x9b\xff\x95\x3a\x4e\x7e\xa6\x6c\xe1\xce\x62\x22\x48\xe8\xa8\x1c\xb2\xd9\x8a\x46\x50\xeb\x4d\xb6\xba\x4b\x26\x1b\xf2\x4b\x44\x2e\xca\x9f\xc6\x37\xaa\xa6\xdb\x8f\x4c\x52\x3c\xa4\x64\x8e\x3e\xa1\x54\x0a\x5b\xb4\xe6\xe1\xde\xc5\xd2\x42\x58\xdb\xa2\x08\x85\xd9\xc8\x13\x6d\xdf\x42\x63\x28\x3b\x28\x65\xcc\xda\x10\x5e\xf2\xbd\x3d\xca\x32\x74\x25\x2a\x6c\x4e\x4b\x1f\xf5\x3e\x9e\x1a\x7c\xd3\x28\xb1\x91\xaf\x46\x45\x38\x10\xa0\x26\x36\xce\x73\x7a\x17\x3d\xf7\x40\xe4\x45\x16\xe5\x21\xd6\x9b\x40\xc4\x15\x5c\xdc\x75\x90\x57\xd2\x82\x0b\xca\xac\x11\x81\x1f\x4f\x21\x4a\xf9\x54\xc7\x57\x69\xb9\x88\x8e\xdf\xf5\xe8\x44\x93\x74\xbb\x45\x6c\x8b\x35\xfa\x61\x8e\x71\xb9\xe0\x6f\x5c\x53\x73\x64\x32\x9b\x14\x03\x11\x69\x67\x48\x1c\x8e\x01\xc1\xc7\x29\xb5\xb8\x28\x1f\x95\x85\xe9\xa1\x85\x2b\xfe\x9b\xf4\x8f\xc5\xa0\xcf\xc7\x09\xc3\xfc\xd9\xd9\xd6\x4b\x0b\x6e\x13\xc2\x4c\x75\xbe\x5a\x5f\x7a\x89\x37\xb8\xbb\x18\x72\x8c\xdd\x63\x9d\x2d\x84\xee\xf9\xf9\xf6\xe2\x02\xd5\x9f\x98\x2a\x8d\x91\x66\xec\x4b\xa0\xfc\x51\x00\x84\xc1\x9b\x3b\x86\x29\x2b\x45\xe4\x07\x15\x1b\xf2\xa8\x27\xd9\xa2\xd4\xaa\x75\xe1\x5a\x6d\xfd\x76\x85\xa9\xff\x4e\xf1\x12\xaa\x57\x7c\xad\x52\xbc\x7c\x90\x91\x07\xad\x5b\x63\x17\x30\x13\x05\xb5\xf2\x94\x6a\x23\x16\x69\x12\xe5\x03\x01\x76\x3a\xdc\x93\x7b\x11\x8c\xa7\xc3\x34\x98\x26\xdb\xcd\x1d\xae\x22\x3f\xb2\xd5\x9e\xa9\x01\x6f\xaa\x74\x1a\x71\x86\x1c\xf9\x52\xff\xc8\x47\xd6\x2c\xb3\x1c\x14\x42\x3e\xf8\xd0\x39\xc5\x8f\xea\xfb\x20\x86\x3a\x33\x69\xe8\xb1\x3a\xef\xac\x59\xbf\x87\xdf\x0c\x94\x16\xcc\xa6\xc6\x7e\xe1\xe3\x50\x6b\xba\xa1\x46\x73\x39\x49\xc3\x65\x8e\xf0\xa5\x1d\xa9\x5a\x93\x7a\x34\x43\x62\xdc\x61\xee\xa0\x41\xc0\xe0\x4a\xbe\x99\x1a\x94\x67\xda\x6c\xfe\x22\xc1\xb6\xab\xa2\xa8\x64\xd7\x07\xc0\xfd\x48\xda\xdf\xd8\x75\xce\x68\xed\xa5\x33\xca\xc2\x6a\xc5\xb2\x34\xa1\x22\xcf\xca\x1a\x39\xa3\x60\x2a\x99\x1d\xda\x61\xd7\x0a\x09\x15\x63\x09\x21\x3e\xbe\x1e\x6f\x25\x26\xca\x74\xec\x46\x69\x9c\x12\xbb\xbe\xa5\x0a\x10\x10\x3f\xe6\xeb\x29\x5a\xd5\xdc\x61\xc1\x76\xbb\x03\x05\x75\x4e\xe0\x4e\x68\x35\xf4\x9f\xec\x78\x7d\x82\xd9\x89\x26\x8d\xb0\x7d\xfb\xac\xe7\x39\x61\x5e\xf3\xb5\x56\x5d\xe1\x7c\x4d\x52\xdc\xad\xe3\x5e\x9d\x6d\x5d\x93\x2c\xbb\xc7\x60\x1b\x0a\xfa\x38\x9c\x3c\x47\x95\xc6\xf4\x5b\x4a\x7c\xca\x84\xd4\x15\x7a\xa8\xfa\xaf\x38\x72\xae\x2a\x5d\xfa\x4f\x75\x33\xe9\x16\x1d\x10\xc2\x18\x04\xef\xea\x38\xea\xa1\xe8\xb8\xbd\x1d\xa8\x48\xfe\x32\xa9\xcc\x89\xea\x65\xf5\x1b\xd1\x01\xb9\x3c\x95\x19\xbe\x54\x1d\x5b\x30\x98\x52\x31\xbd\xcf\xfa\xe2\x72\xd9\xe4\x39\xeb\x83\xb1\xa7\x9a\x6a\x0e\x9c\x70\xd1\x46\x1c\x85\x36\xc9\xad\xea\x07\x5e\x55\xb6\x89\x97\xc7\x7a\xf7\xa7\xdf\x82\x8d\xf3\x9c\xaa\xce\x13\x6a\xe0\x33\x1e\xb0\x73\x95\x62\x7e\x54\xf3\x98\xd1\x03\x50\xed\x2c\x5a\x65\x4c\xd6\x02\xf4\x1c\x0d\x35\x2e\x0d\x38\x63\xdb\x43\x87\x16\xb9\xff\xd5\xc2\x81\x89\xae\xc2\x69\x2e\x17\x61\xe7\x39\x47\xfd\x26\xb1\x30\xa0\xa5\x8b\xf2\x40\xab\xd3\x3a\x70\xc0\xf1\xb6\x5b\x5f\xfc\x9a\xc3\xb5\xf9\x0a\x35\xf0\x4a\x4c\xdc\x22\xe8\x2c\x3b\x3d\xea\x38\x64\x86\xd4\x65\xb0\x72\xd1\x87\xc7\xae\x78\x13\xf3\x0c\x80\xfa\x4f\xf1\x3a\x11\xf1\x6e\x9b\x72\xde\xa9\x82\xd0\xa8\x6f\x32\x5b\xb0\x4e\x9e\x68\x15\x56\xcf\x22\x22\x86\x5b\x57\xc9\xe2\xfe\x6a\x57\xe8\x67\xd6\xf3\x3f\x99\x55\x10\x28\x65\x91\xe3\xae\xb4\x20\xdb\xea\x6e\xa2\x4c\x89\xe6\x2c\x3d\xa4\x23\x72\xfc\x9a\x17\x0d\x72\xd4\x82\xff\xe9\xb1\x49\x7d\x23\x7e\x91\x3d\xd2\x7f\x13\xee\x7a\x88\xae\xb6\xd3\x78\x4a\x7c\xb7\x2f\x52\x4d\x99\xb0\xa4\xc2\x1c\xbd\x23\x46\x00\xea\x01\xdc\x68\xa8\xff\x3e\xd7\xee\xda\x30\x1d\x32\x77\x14\x8f\x04\xf1\x20\xbe\x6e\x4a\xa9\xca\x67\x93\x67\x5b\x1e\x2b\xce\x29\x95\x77\xc7\x76\xc9\xbe\xad\xa2\x11\xb4\x8a\xd8\xba\x3c\xf0\x10\x38\x5d\x94\x0b\xd3\xb8\x1c\x26\x78\x08\xc4\x69\xef\x04\x2a\x68\x7b\x47\x59\x96\x77\xc9\xf8\xa8\x9a\xad\x6e\xbe\xf8\xb9\xe3\xde\x41\x6c\x7a\x3d\x5f\x32\xc1\x92\xff\x93\xb1\xe7\x1a\xfe\x89\x2a\xca\x88\xf1\x2a\x91\xc2\x30\xd1\x6f\x06\x9e\xcd\x80\xba\x0e\x66\xd4\x69\x95\x4f\x9d\x56\x28\xe8\x4f\x1b\xda\x8e\x73\xd5\x07\x77\x6d\xd6\x52\x6b\xe6\xf8\xd8\xc3\xd7\x8e\x2b\x3d\xc3\xa1\x8d\x4d\x12\x0e\xd2\x78\xad\xa5\xa0\x68\xeb\x41\x8d\x4e\xe8\xc7\x20\x2f\xec\xe8\x21\x45\xbf\xba\x8d\x89\x88\x30\xf8\xe6\xd8\x27\x35\xdf\xc3\xea\xe5\x92\x1f\xfa\x74\x52\xff\xf3\xcc\x7e\xf4\x0a\xc5\x52\x9b\xbe\x13\xa3\xb4\xa9\x0c\xbb\x4f\x3e\x30\x10\xea\x9a\xcc\x82\xb0\xc6\xd5\xa3\x53\xd8\x74\xf9\x66\x6a\x3d\x1d\x98\x6b\x0f\xcb\xb8\x88\xf2\x42\xd4\x2a\x9b\x28\xee\x0d\xf3\xce\x9a\x2c\x01\x54\x0f\x8f\xb7\x11\x28\x5b\xba\x53\x63\x4d\xcb\x78\x4c\x4d\xad\x72\x84\x72\x1b\xe2\x8a\xeb\x2a\xc6\xb8\x3e\x75\x10\xbd\x34\x77\x98\x6d\x5d\xb9\xcf\x23\xb2\x90\x8a\x62\x78\x4e\xf5\x79\xba\x26\x8f\x42\x80\xb4\x30\xae\x1f\x8d\x55\x45\x6c\x63\xac\x4d\xef\xd9\x54\x53\x5b\x76\x38\x8a\x82\x97\x01\x09\x14\x34\x1c\x8c\x0c\x09\x44\x7d\x7d\x7f\x50\xf6\xf2\x34\xd1\x06\xe0\x27\xe9\x15\x22\x42\xb9\x82\x61\xc1\x9f\x7d\xd4\x40\x81\x5b\x6c\xaf\x44\x2b\x11\xfa\x64\xf8\x22\xf4\x47\xf8\x7a\x6a\x2e\x1f\x98\x6b\xe7\xab\xb6\x17\xe5\x83\x96\x7f\x43\xc7\x14\xbe\xf7\x58\x4d\xf6\x38\x2f\xa2\x82\xb8\xc3\x3b\x3c\xec\x80\x81\xb9\xb8\x39\x1e\x68\xec\x1a\x87\x06\xc2\x8e\xf7\x02\x11\xf7\x95\x3a\x74\x5c\x86\x68\xb6\xb6\x68\x0e\xb3\xd3\x39\x9a\x8e\x62\x7b\xee\x08\x37\xc9\x40\x9b\xce\xe0\x28\x01\xa7\x9a\xaf\x15\x1b\x3b\x0d\xa5\x82\xe3\xd8\x6c\x47\x69\x2c\xf9\x1a\x2c\x0b\xa1\xee\x65\xbf\xa0\x98\x28\x20\x19\x48\xf7\x54\xe1\x62\xb9\x65\x2a\x8b\xa1\x3a\xcf\x38\xe8\x08\x74\xb4\x78\xa2\x6e\x2f\x0d\xdc\x87\x23\x9e\x3b\x34\xda\x69\x3a\x59\xf1\x01\x27\x69\x92\xa3\x67\x0e\xd8\x12\x66\xcd\x65\x8c\x04\x77\x6e\x74\xfd\xe6\xaa\x52\xdf\x78\x9f\x12\x27\x36\x25\xc0\xa8\x03\xfc\xc9\x6c\x1b\x27\x2d\xf9\xc5\xaf\x71\x1d\x9b\xbb\xc5\xd8\x5d\xbf\x8f\xfa\x04\xfe\xfe\x6d\x82\x96\x22\x80\xb9\x4c\xad\x01\xc9\x6c\x94\x62\xff\xb4\x7c\xf2\x8b\xfb\x5f\x6e\xc7\xe9\xea\x8c\x0f\xa7\xfe\x30\x98\xaa\xe9\xe2\x28\xbf\x50\x6b\x92\xac\x84\x29\x88\xdf\xce\x7b\xc8\x95\x00\x99\x66\xcb\x37\x9a\x66\xbb\xae\x8a\x83\xeb\x1a\x1b\xb6\xee\xd5\x98\x49\xd3\x0d\x59\xbc\x82\x59\x3a\xcc\x65\xed\x21\xa2\x6c\x99\xe3\x7d\x67\x71\x51\xbd\x75\xbe\x71\xd5\xa8\xbc\xcc\x46\x59\x94\xbb\x60\x16\xf5\xad\xbf\x39\x71\xc8\xd2\x3f\xfe\x7c\xc7\x17\x94\x7c\x4f\x62\x64\xb3\x72\x25\x62\xa0\x1e\x8a\x0f\xf7\xb5\xe0\xcf\xfd\x06\xc5\xb4\xe7\xda\xb1\x21\xbf\xfd\xea\x05\x62\x35\x6e\x27\x6c\xa7\xf2\x9d\x9e\x77\x34\xc6\x07\x6d\xe1\x85\x89\x46\x36\x9a\xa9\x06\xc1\x31\x1e\x15\x32\x59\x75\x7c\xaf\xb9\xac\xa6\xbb\x36\x32\x79\x4e\x59\x8d\x03\x4c\x39\x09\x83\x75\xef\x60\xda\xcd\xcc\x30\x4f\xc5\x1f\x40\x36\x36\xfa\x48\x81\x7a\xca\xcb\xf8\xfc\xdc\xc1\xe7\x0e\x1e\x7e\xe1\xb1\x2a\x3c\xc2\xec\x78\x02\x8c\x2d\x94\xa8\xce\xe8\xbf\x7a\x04\x7e\x75\x92\xc9\x69\x41\xbf\x6d\x13\x3f\x80\xbb\x27\x0e\xe3\x3c\xfc\x05\x34\x9b\xb1\x51\xdf\xc1\xc8\xe0\x1d\xdc\x21\x48\x0d\xa0\x47\xbf\xd2\xf1\x4d\x44\xd8\x6e\x0b\x62\x8b\xe6\x05\x02\xe6\x5b\x4d\xcd\xe0\x61\x99\xbb\xea\x34\xd6\xee\x84\x26\x20\x5f\x37\xc6\x08\x43\x13\x31\xdb\x9b\x6b\x64\x1f\x2b\x4d\x9f\x8f\xa7\x28\xfd\x8b\xfb\xdb\x59\x99\x40\x8d\xd1\xe1\x72\x5f\x94\x83\xf7\x36\xea\xc6\x38\x55\xd8\x82\x98\xff\x8b\xd6\x58\x3a\xa5\x8e\xc7\x41\xd4\x1f\x3c\xe2\xfb\xcd\x6f\x06\xaa\xf6\x40\xa9\x03\xa2\xdb\xb7\xc6\x0a\x36\xf2\xdd\x29\xf2\x0d\x4f\x1a\x6c\x3c\xd8\x2d\xce\x60\x7c\xc5\x23\x5e\xc9\x27\x5c\xc2\x7a\x15\x58\x4c\x4d\x65\x70\xaa\xe8\x3f\xd7\xb6\xaf\x98\x61\x94\x88\x0c\xb5\xb8\x35\xd1\x5f\xa1\x28\x78\x54\x3b\x40\x78\xe5\x99\xbe\xed\xcd\x78\x48\xcf\x25\x0c\x00\x66\x27\xf7\x54\xf0\xa0\xbb\x3a\xd3\xab\xaa\x9d\x0f\x4c\xb7\x0b\x7a\x3d\x87\x17\x0a\xb2\x7e\x4a\x35\x33\x47\x59\x3a\x4a\x73\xcb\xd2\xe4\xde\x6e\x69\xbe\xa6\x64\x21\x90\xf8\x1f\xa8\x5c\xbf\x18\x64\x24\xe5\x96\x2b\x4f\xa4\x4f\x14\x4e\xe1\x13\x57\xd3\x1b\x99\xbc\x30\x33\xaa\x9a\x7c\x4a\x81\x6b\x51\x85\x05\x06\xe0\x9c\x2a\x8f\x7e\x23\x5d\xe6\xe2\xa4\x83\xa3\x1d\xf4\x70\xb4\xc7\x3d\xd0\x24\xc9\x23\xf4\x9f\x9d\xa5\x95\xb7\xb7\xd2\xce\xb2\x36\x8e\xa3\xbe\x65\xe1\x11\x11\x25\x6c\x39\x8b\x85\x56\x67\x6b\xc1\x7a\xee\x30\xe1\xe2\xd2\x98\x1d\x69\x3d\x16\xea\x47\x98\x9a\x7c\xa3\xba\x69\x79\xd4\x4f\x66\x95\xe5\xf3\x09\xf5\x6a\x7f\x4c\xc7\x2d\x5f\x63\xa6\x09\xbc\x78\xaa\x9c\xb0\xb8\xd0\xfe\xfc\x97\xff\xc1\xc2\x97\xbf\x38\xbf\x53\x51\x07\x8e\xaa\x5c\x8b\xe7\x03\x8e\xb9\xb3\x90\xe8\xc5\xec\x9e\x81\xef\x3e\x67\xac\xf4\xa5\x28\x08\x4c\xc7\xa4\xc4\x13\x33\x3d\x2a\xe8\x0b\x2f\x8d\x5e\x13\x7a\xc8\x1f\x2a\x7d\xbd\x1b\x8d\x72\xf8\xa6\x74\x29\x25\x62\x82\xff\x17\x13\x9b\x6f\x9a\x24\x6e\xa3\xe1\x28\xcd\xa9\x31\xaa\x42\x67\xa0\x76\xf9\x7a\x6a\x6b\xaa\x22\xbe\x6e\x6a\x5d\x44\x04\xa0\xda\xf7\x31\x31\xf9\x46\x75\xc2\xf2\xa1\x89\xe3\xc7\x7c\xec\x76\x17\x71\x8a\xa8\x9b\x55\x3b\xa5\x68\xf7\x53\x1e\x26\x72\x9e\xd5\xfc\x12\xc9\x4f\xc5\x51\xf9\x3f\x69\x83\x42\x34\x02\x68\x30\x42\xab\x99\x8e\xf2\x44\x3b\x8f\xfc\x58\x24\x23\x5b\xce\x6f\x64\x27\xb9\x9d\x02\xa7\x7c\x13\xef\x8c\x05\xe7\xa7\xea\xeb\x0b\xcf\xbf\xd0\x0e\xcb\xb8\x80\x0f\xc8\xa1\x43\xce\x00\x4e\xa5\xa7\xc7\x14\x24\x37\x1f\x94\x89\x12\x53\x5b\xd7\xc6\x3c\xeb\xc1\x93\x1a\x51\xc8\x0e\x04\x8f\x55\xcf\x82\x82\xf1\x4d\x25\x8c\xf1\x3a\xe1\x77\x11\xf2\x6c\x62\x0b\x46\xe7\xfc\x36\x8d\x09\xff\x81\x56\x9c\xda\x08\xb4\xd2\xcc\x05\x0d\x28\x67\x50\x22\x3e\xed\x0a\x05\x8f\xfc\x37\x63\x6f\xc2\x73\x53\xdb\x85\x5e\xa2\x7d\x5a\x94\xf8\x14\x50\xb3\x8c\x63\x26\x7b\x23\x63\x45\x9e\xa1\x95\xdd\x64\x0f\x9e\xc6\xe7\x7b\x08\xce\x8c\xaf\xc1\x01\x99\xc9\x74\x4d\x0c\x17\xce\x9a\x1b\x5b\xa5\x9f\xaa\x5f\xd7\x3e\x38\xff\xb0\x8e\x96\xce\x28\xd5\x4d\x76\x9b\x05\x20\xee\xaf\x02\x25\x04\x85\xc8\x03\xe3\xf7\x17\x63\xd5\x4c\x7f\x37\x50\x9b\x36\xa4\xaf\x25\x9d\xa0\x05\xc4\xe0\x3a\x6d\x4b\xb5\xbd\xe3\xdb\x35\x45\xb5\x6a\x92\x3e\x51\xdf\xdc\x0b\x5f\xf0\x37\x4a\xf2\x72\x29\x62\x44\x8e\xf3\x14\x57\x86\xe7\x0d\xb4\xfa\x95\xc8\x26\xa2\x64\xa9\xe4\xe7\xbc\x8f\x4f\x83\x77\x4f\x91\x8e\x76\xf8\xa2\xf2\x2d\xb5\x39\xc3\x45\x0a\x3f\x93\x13\x7b\x77\x86\x57\xcf\x2b\xc3\xe4\x3b\x8f\x4b\x26\xb4\x3b\x95\xe4\x02\x2a\x16\x52\xda\x52\x1c\x69\x6e\x88\x8a\xc5\xb4\xa7\x13\x7d\xf6\x42\xa0\x15\xa7\x8f\x35\x6c\x21\xed\x70\x8d\x74\x85\x81\xf8\xc0\x12\xbe\xa2\xea\x66\x67\xc6\xbe\x6a\xf9\xb6\x42\xe3\xe5\x85\x71\x4e\x99\x2f\xf3\x3c\x6a\x75\x48\xdd\x88\x6f\x26\x7e\xca\xae\x19\xea\xa8\x39\xa9\xe2\x8b\x8a\x71\xa2\xbd\x04\x13\x93\x17\x08\x9a\x9a\x0a\x78\xbe\xd1\xdb\x5f\xcb\x8c\x53\xb1\x9a\xe7\xbc\xed\xba\xee\x4f\xd6\xb5\x59\x2c\xb2\x6a\x41\x2a\x9e\xd3\x01\x0d\xa7\x3f\x92\x24\x34\xf4\x37\x86\x51\xaf\x17\xdb\x21\x5b\xc2\x8a\x77\x12\x8d\x97\x94\x91\x7d\xc9\x27\x4a\x20\x68\x56\x05\x7f\xca\xc2\xda\x83\x70\xdf\x51\x7a\x29\xa3\xcc\x0e\x23\x9b\xb9\x61\xe4\x63\x0b\xaf\x53\xce\xb0\xad\xa7\xd3\x81\x03\xed\x81\x89\x97\xc8\xf3\x46\xc8\x1d\xd4\xc7\x43\x00\xfd\x53\xa5\xf0\x7e\x9f\xc6\x4f\x20\x64\x7e\xfc\x7a\x51\x1e\xc6\x69\x6e\x7b\xbb\x5b\x8e\x7f\x7b\x53\xab\xe0\xc0\x33\x59\x06\xc8\xb3\xbc\x8f\xa2\xd4\xcc\xff\x41\x15\xde\x8e\x06\x5e\xe4\xeb\x66\xa0\xc4\x75\xd6\xa7\x9a\x31\xce\x3a\x3f\x02\x94\x51\x74\xab\x68\x40\x45\xd0\xaa\x01\x3c\x98\xd9\x21\xd0\xb3\x38\xed\x50\xc7\xbe\x42\xcf\xc0\xd7\x53\x8d\x90\xc5\xfd\xed\xae\x09\x97\xfb\x59\x2a\xf4\x6d\x69\x66\xb6\x9c\x29\xee\x34\x18\xaf\x5a\xc6\xab\x51\x08\x38\x0b\x9b\x21\x62\x84\x81\x7d\x06\xf8\x16\xf5\xf1\x1d\xca\xc1\x70\x25\x5d\x33\x7d\xfb\x40\x2b\xcc\x86\x4e\x5d\x96\xa6\xc3\xa1\x29\x18\x3b\x21\xac\x61\x3f\xdc\xeb\xb5\x34\x75\xd9\xae\x91\x61\x86\xe2\xd3\xca\x24\xe6\x7e\xa2\x43\x9e\x1d\xf4\xc8\x33\x15\x51\xff\xbb\x40\x35\xb2\xef\x35\xf8\xdf\xbe\xd0\x1e\x42\x11\x08\xeb\x4a\xc1\xe9\xe7\x1c\x52\x5e\x0b\xba\xc4\x26\xe9\xed\xe0\x86\x8b\x66\x92\x83\x23\x81\x72\x8f\x76\xb3\x64\x4d\x6b\x74\xe3\x6f\xbb\x86\xf3\x4a\xd4\xb3\x69\x61\x46\xac\x8c\x89\xe2\x27\xe7\xeb\x7c\xa3\xea\xba\x40\x84\x88\x6e\x00\x42\xb2\xf3\x8a\xa2\x09\x48\x17\xce\xa6\x7f\xae\x88\xad\x2b\x26\x0c\x23\x81\x1b\xba\xaa\x5c\xf5\x1d\xa2\xd4\x3b\x7d\x5c\xbe\x5c\x2d\x15\x12\x84\xd0\x65\x43\x86\x80\x88\xbc\x8a\x47\xdc\x45\x45\xe4\x21\xee\x80\x09\x9e\xc1\x5e\xc3\x37\xe3\x47\xdd\xe8\x95\xf9\x2b\xbb\x55\x04\x73\x53\x71\x28\x4e\x62\x2c\x05\x76\xa1\x92\x48\x0d\xc7\xc0\x2b\x47\x93\x16\x05\x68\xfe\x24\x7a\xfd\xa8\x84\xde\xd3\x48\x28\x43\xce\x00\x55\x10\x8c\xcc\xf5\xc8\xd8\x67\xb1\x47\xd4\x39\xf9\x8d\x32\xb1\x8f\xd0\x87\x8b\xf8\x44\xf5\x04\x58\x2d\xd7\xc7\xaa\x83\x79\x32\x50\x6b\x76\x03\xd3\x04\x13\x97\xa5\x8d\x30\xb0\xe7\x14\x12\xf2\xf7\x02\x55\xb9\x07\xac\x14\x4a\x56\xb7\xa9\x1c\xc6\xd6\x81\x7c\x6a\x89\x7f\xbb\xef\xcc\x76\x63\xbb\x97\xde\x1f\x9a\x50\xbb\xd1\xb8\x42\x18\x74\x0d\xc5\x32\x27\xfc\xe2\x3d\x96\x4f\xd1\x82\x15\xb5\xb3\xea\x7b\x90\x61\x7c\x44\x63\x4e\x8f\xff\x2f\xf6\x74\x94\xa6\xd5\xe7\x26\x4a\xb3\xe6\xf1\x49\xb5\x49\xa2\x1e\xcb\xc1\x24\x96\xd3\xba\x9f\x74\x27\x7f\xa5\xa3\x34\x43\xff\x06\x14\x0f\xa4\x8d\x52\xfd\x48\xfc\x94\x3f\x52\x9c\xb6\x23\xe4\x38\x82\x80\xe6\x8e\x0a\xef\x7a\xd6\x0e\xb1\x0e\x84\x2b\xe6\xb3\x8d\xd3\xaa\x0b\xbe\x1a\x25\x89\xcd\x66\xab\x0f\x97\xb8\x47\x9b\x1b\xd4\x41\x84\x6a\xd7\xf0\x39\x6e\xda\xcd\x0b\x13\xc6\x2c\x24\x2e\x45\x9b\x6a\x48\xb4\x63\xb3\xb3\x72\xae\x46\x44\xca\x3c\x5b\xe3\x88\x67\xda\x03\x93\x99\x5c\x58\x1a\x52\x01\xa3\xbf\x11\xb9\x9c\xa6\xed\x26\x2d\x8b\x3c\xea\xd9\x1d\xf4\xb2\x50\x92\xb8\xa5\xe2\x61\x2c\x65\xa9\xc0\x57\x3f\xd5\x29\x63\x3a\x69\xb7\x8f\xa6\x0e\xc8\xf9\x79\x72\xb7\xc0\xcf\xc2\x3f\xba\x40\x6f\xda\x39\x4e\xcc\x0b\x40\x06\x08\x40\x61\x04\x37\xaa\x33\x47\xb9\xef\xa2\x63\x7a\x42\xa4\x0e\xc7\xf3\xec\xc4\x23\x2a\x4e\x4d\x9d\x24\xcf\xb4\xe3\x72\x38\x92\x0d\x01\x95\x95\x75\x6c\x08\x7c\xa3\x79\x00\x66\x34\x62\xe1\x27\x11\x92\xa7\x61\xe1\x9b\x89\x8f\x79\x47\xb1\xc9\x0b\x9b\x91\x11\x17\x9e\x1d\xb8\x28\xe7\xe3\x71\x50\xb8\x92\xd3\xf8\x10\x52\x1f\x48\xbb\x1e\x8c\x80\xfa\xee\x15\x4c\x18\xbe\x99\xfa\x21\xd5\x41\x5a\x46\x31\xa8\x2f\xae\x3d\x58\xfd\x0e\xa7\xe2\xed\x54\x48\xb8\x42\x24\x54\x24\xcf\x7d\x29\x93\x5e\x2c\x69\xb1\x40\x17\xe8\x11\x04\xd3\xa0\x31\xee\xa1\x41\x74\x20\xc6\xbb\x2d\x6f\xc2\xab\xc0\x47\x4b\x36\xeb\x55\x09\x4d\xaf\xe6\xf3\xce\xd5\x55\xbe\x51\xc1\x59\x66\xc3\x34\xa9\x26\x5c\xa6\xa1\xa3\x81\x46\x4f\xf9\xbd\x66\x14\xdb\xcf\x54\xa3\x8a\xda\x52\xab\xa3\x7d\x16\xb0\xd5\x60\xb3\xf8\xf9\x78\xfb\x17\x5c\xf2\xa4\xc3\xed\xdb\xb4\xc2\x6b\xec\x14\x87\xbb\xaa\x32\x6f\xc7\x35\xaa\xc2\x7f\xe4\xeb\x27\x88\x62\x05\xdc\xe0\xc7\x63\xdf\x31\x87\xb8\x28\xf7\xc2\xc7\x9e\x54\x7b\x9e\x52\x54\x87\x3e\xa9\x62\x33\xe5\xd3\x22\xe8\xbe\x6b\xd8\xb4\xf1\x27\xbb\x3a\x3e\x0b\xff\x0c\xcd\x64\xb4\xb1\x38\x6f\xc7\x5f\xec\x9c\xa8\x6e\xf3\x34\xf9\xf2\xc0\x81\xf6\x12\x29\x82\xaf\x11\xe4\x07\x65\x98\x1f\x6a\x39\x87\xb3\x75\x0f\xe4\x96\xf2\xae\x53\xaa\xc5\x2b\x36\x29\xec\xb2\x4e\x0c\x6a\x58\x88\x26\xad\x33\xe6\x7c\x56\x1f\x88\xfc\xf1\x3e\xde\x05\x72\x46\xfc\x38\x80\x30\xa7\x15\xb2\x0e\x1c\x68\x77\x33\x12\x03\x6e\xd5\x34\xc2\x34\xa9\xe0\x41\x26\xdd\x3d\x13\xc5\x6b\x33\x3e\xe0\x7d\xbc\xe3\xed\x64\x51\x8c\x46\x65\xfe\x74\x93\x9b\x40\x38\x30\x19\x2d\x58\x07\x75\xc1\x84\xc6\x9f\x1c\x1f\x2b\x7b\xdb\xf3\x0e\x96\xd5\x2d\x73\x29\xaf\x89\xb1\x89\xd2\xb3\xfe\xb0\x29\x63\xa5\xd6\xab\xd0\x68\x9d\x99\x83\xef\xd0\x35\x55\x04\xe6\xdb\x79\x99\xf4\x4c\x12\xa2\xf0\x84\x41\xfd\x04\xef\x81\x6f\xbc\xa8\x42\x99\xad\x44\xce\x3a\x10\x29\xe6\x4e\x9c\x7c\xd8\xcf\xee\xaa\x38\xe4\xa2\x2a\x47\x8f\x4c\xf5\xf1\xce\xcf\xe2\x0c\x6d\xbb\x7c\xed\x99\xa5\x61\x98\x66\x3d\x21\x95\x71\xbc\xa1\x90\x05\xec\x6a\x8f\x71\x3a\xa2\x56\x6a\x61\xf3\x3d\xd5\x5e\xe8\x70\xf2\xf2\x96\xfe\xfe\xde\x89\xe7\xd4\xb2\x0a\xad\xf4\x0a\x3d\xd3\x7c\x2f\x21\x50\x10\x44\xec\xa4\x57\x49\x38\xd2\x7f\xf4\x9f\x62\x11\x10\xd2\x6e\xff\x67\x26\xf4\x9b\x11\x2c\x3c\x83\x9d\x99\x96\xe9\xb3\x7b\x27\x5e\xa6\xe9\x3b\xaa\xfd\xf6\x77\xfe\x36\xab\x9d\xd0\x9e\x11\xb6\xa1\x68\x89\xe5\xb9\x73\x52\x65\xca\x9b\x97\xea\x6d\x1c\x19\x88\x2a\x67\x89\xd3\x7e\x0e\xe3\x2e\x71\xb2\xa6\x4f\x46\xec\x30\xdb\xd1\xc0\xe5\xea\xeb\x85\xec\xea\xf7\x3a\x6b\xb2\x62\xf0\xcd\xd2\x2c\x5b\xe2\x18\xe3\xec\xbb\xa5\xc1\xdc\xeb\x9a\xee\x03\x09\x7f\x0c\xc8\xce\x89\x92\x31\xb9\x1a\x28\xf2\xfc\xf6\x89\xdf\x7b\x6e\x4c\x9d\xe8\x87\x0e\xb5\x43\x93\x98\x5e\x64\x92\x19\xb5\x7f\x5c\xa3\x17\x82\x4d\x0d\x1a\xdd\xe2\xda\xdf\xf0\x01\xa3\xa8\x08\x07\x43\xcb\x74\x12\x74\x65\xfe\x52\x71\x10\xff\xd2\xb5\xe3\xba\x99\x29\xaa\x14\x64\x85\xed\x62\x58\xdb\xa7\xa6\xf3\xd3\xa0\x20\x32\x48\x13\x9b\x17\x6b\x2d\xc5\xed\x45\x8d\x83\xaf\x35\xdb\xd3\xe4\x69\xd2\xaa\x47\x47\x5e\xc9\xa4\x11\x7a\x39\x1c\xd9\x2c\x32\xf1\x8c\x82\xa7\x1d\x51\xf5\xb1\xdf\xa1\x6f\x02\x52\xea\xe3\x06\x7f\xdf\x17\xaa\x28\x1d\x0b\x11\x1d\x11\xf8\xa9\xf3\xb5\xfb\xe9\xc3\x28\x89\x86\xd1\xab\x2e\x2e\x41\x74\xb8\x11\xf8\xfd\x05\x08\x7c\xa6\xe7\x6a\x77\x78\x9b\x8d\x6c\x91\x39\x2e\x95\xae\xc7\x4b\xd9\x5d\x69\x01\xa5\x03\x33\x34\xbd\x56\xeb\xab\x5f\x76\xba\xe5\xaa\xdf\x72\xd6\x6d\x0c\x43\x50\x33\xf3\x1d\x4a\x48\xfc\x6e\xa0\x9b\xa1\x33\xde\x12\xef\xbd\xb1\xb2\xeb\xff\x04\x85\x55\x04\xe7\xe7\xc7\x9e\xf3\x9a\x12\xc1\x74\x97\x4f\xef\xff\x8a\x36\x0d\xae\xc7\x07\xaa\x10\x77\x8e\x82\x0f\x87\xbc\xaf\x06\x84\xb1\x15\xf4\x04\x28\x20\xde\x42\x06\x2f\xb0\xd9\x9a\x71\x59\xda\x7b\xa8\xe6\x83\xa6\xd2\xb2\x9f\x69\x2f\xc0\x2b\x34\xa8\xa2\x28\x4c\x9b\xb6\x48\xe4\x2b\xbd\xd2\x6b\xd8\xa6\x45\x60\xcd\x23\x69\x99\xb4\x23\xc5\x3c\x8f\xf1\xb2\x59\xda\x07\x0a\xa2\x35\xef\xfd\x13\xab\x3f\x14\x63\x45\x69\x19\x85\x83\x28\xee\x61\x5b\xa8\xa1\x2c\x90\x8a\xde\x54\xb4\x0b\xb0\xb6\x30\x72\x67\xc7\x8f\xb8\x57\x9a\x13\x6b\xa6\xda\x79\xe6\xe7\x17\x36\x2f\x35\x28\xfe\xbc\xdc\xae\xf2\x5d\x74\xab\xb1\x09\x63\x1c\xf9\xba\x31\xa2\x1c\x96\xbd\x5e\x2c\x32\x39\x8d\x7a\x5f\x4a\x59\x24\xc2\xbf\xf5\x4d\xbc\x23\xf4\xf9\x7c\xdd\x70\x44\x3d\x27\x70\x56\x0e\x1e\xb1\x1c\xde\x1f\x2b\xc1\xd3\xf7\xa7\x4a\x9b\x07\x0e\x54\xb9\xfb\x30\xe2\x5e\xb6\x80\x72\xfd\xaf\x3a\xf3\xc0\xb6\xf9\xd0\x64\x75\x79\x08\xa6\x58\xf2\xcd\xa4\x41\xba\x7f\x98\xe6\xc5\x0e\x82\x87\x38\x5b\x6e\x87\xcf\x3c\x8d\x70\xcf\xe5\x9f\x87\x0e\x6d\x5e\x22\xc8\x86\xd0\x0b\x1a\xaa\xb2\xc3\x32\x5b\x8e\x60\x85\xb6\x28\x6a\x93\xca\x6d\xe2\xc2\x78\xaf\xea\xe0\x25\x5c\x0b\xf5\xfa\xde\xaf\x28\xb2\xf7\x2b\xae\x2b\x98\x57\xb1\x4f\x77\xad\xa5\xf4\x8b\xb0\x5d\xca\x2c\x56\x56\x17\x69\x96\xec\xf0\xed\x60\x46\x88\xd6\xde\x2c\x56\xf6\x6d\xfa\x00\xfe\x57\x38\xe2\x04\x6e\xaf\x6b\x57\xc3\x51\x39\xa3\x54\xd3\x8f\xd5\x74\x10\xb8\xf6\xc7\x0b\xd5\x21\x11\xf2\x30\x2d\xc2\xc1\x8c\x22\x73\xa0\x5b\x2b\xd8\x3c\xdf\x50\xff\xa1\xaa\x9a\x77\xad\x5d\x6a\x39\x70\xc0\x85\xe3\x94\x19\xf1\xb5\x8a\x19\xd2\x78\x0d\xb6\x06\x58\xda\x37\x94\xb4\xea\x4f\xb0\xc7\x01\x9f\x07\x17\x41\xe7\x28\x52\x85\x13\x6c\x56\x38\x56\xa2\xd4\xb4\x81\x6e\xde\x6d\x72\xcf\x09\x4d\x31\x48\xe3\x28\x94\xb0\x4c\xf6\x2c\xd5\x56\xd0\x3c\xec\x30\x4d\x0a\x13\x71\xf7\x18\x88\x20\x98\xc2\xf2\xb5\x3a\x9e\xaa\x5d\x3c\x7f\xbc\x0a\x7c\x10\x73\x83\x9d\x8a\x82\xd9\x3d\x25\x1b\xbf\x6b\xa2\x88\x56\xbb\x3a\x2a\x88\x7c\x4b\x11\xb6\x59\xee\xc3\xd9\x11\xbe\x34\x77\xd8\x49\xa7\xb4\xbe\xf8\x35\xa7\x2b\x5f\x73\x8e\xab\x26\xb9\x44\x2f\xca\xe8\x85\x1b\xaf\xce\x3a\xdb\x49\x96\xec\x9e\xec\x71\xa4\x03\x93\x2d\xc7\xee\x04\xc3\x2a\xbe\xaa\x34\x84\xf1\x0b\xa4\x04\x29\x9b\x65\x15\xfe\xc7\xe4\xba\xc8\x49\xb5\x33\xe8\x70\xc3\x75\xba\x89\xba\xdd\x8d\xd3\x50\x60\xe8\x0b\x9e\x0d\x5b\x7d\x35\xa6\xd3\xbd\x9a\x76\xdd\x13\x0a\x09\x98\x2c\x57\xeb\xb0\x1a\x1b\xe4\x7b\x57\x69\x98\xf9\x5a\x89\x85\x91\xd0\x7e\x92\xa6\xc9\xce\xea\xf7\x4a\x29\xdf\xd3\x88\xd8\x10\xd8\x89\x32\x1f\x3a\xc4\xa1\xec\xf6\x0e\x0d\xb6\xd0\x46\x7c\x5e\x71\x55\xb7\x3c\x4c\x1c\xa7\x23\xea\x74\x39\x50\x27\xe0\xac\xb2\xf7\xef\x51\x6c\xdc\xb2\x1b\x33\x7b\x91\x57\x58\xe0\xf5\xd0\xcf\x4f\xf5\xbb\x0f\xce\xb7\x6d\xb2\xb2\x36\xeb\x59\x92\xad\x8e\x06\x46\x8e\x7d\x71\x01\xc4\x03\xcc\xb7\x93\xca\x62\x4f\x88\xbd\x2b\x0c\x39\x46\x44\x72\x4d\x75\xca\xaf\x05\x0e\x74\x30\x34\xfd\x28\x31\xce\x28\x8b\x03\x5c\xf5\xbe\xa7\x5b\xf2\x2f\xee\x6f\x0f\xca\x8c\x29\xb9\xa0\x79\x1d\xc7\x84\xe5\x9b\x26\xb1\xd7\x70\x60\x52\xde\x16\x19\x7b\x46\x2b\x49\x70\x68\xd3\xdf\xb1\xd0\x8e\xd9\x52\x81\xfd\x21\x70\x94\x8b\x59\x44\x4d\xee\x7f\x94\xef\xac\x9d\x76\xd5\xab\xc0\xe2\x81\x2e\x12\xcb\xba\xd0\xaf\x02\x7e\x10\x12\x32\x68\x1b\xdf\x53\xc1\xcc\x46\x4d\x0c\x33\xca\x45\x3c\x1f\xd5\xd3\xdb\xf8\x99\x98\x1d\x6c\xcd\x87\xde\xc3\xa9\x60\x5a\xf6\xda\x89\x67\x38\xf0\x10\xdc\xea\x5d\x50\x70\xd0\x39\x2a\x00\x43\x8c\x80\xe8\x36\xcd\xd3\x1a\xd3\xcb\x59\xb2\x7a\xac\xf2\x5f\x8d\x3d\x63\x65\xd7\x44\x63\x3d\x80\x18\x90\x86\x8a\x17\x69\xbe\xa6\xf1\x49\xb7\xdd\x2a\xb6\x49\x98\x96\x59\x35\x0b\xfa\xc4\x32\x71\x53\xdf\xf9\xf7\xa0\xa0\x4f\xcf\xf0\xbf\xfe\x42\x47\x15\xdf\xf6\x4d\x31\x90\xe6\x0e\x8b\x11\xab\x88\xbd\xa3\xfd\xfe\xa9\xb2\x24\xff\xb4\xb6\xf3\x2f\xef\xaa\x86\x87\xc9\xd3\x63\x5f\x6a\xdd\x44\x76\x24\xfd\xc6\x6a\xaf\xc7\x0e\x7a\x41\xd9\xac\x72\x9f\x0c\xe3\xf6\x76\xa0\xf5\xc5\x9b\x6c\x5b\xf3\xb4\x2c\x06\xab\x36\x2f\x66\x7c\x5b\xe7\x1a\xfe\x8a\x65\xec\x11\x1d\x20\x6c\x78\x67\x2a\x8c\x39\xfc\x7c\x75\x24\xac\xd8\x0c\x00\x1d\x20\x48\x3e\x55\x2e\x02\x9f\xaa\x98\xb9\x4a\x1c\x9d\xae\x28\x77\xd1\xeb\x08\xdd\x06\xe3\x8c\x5e\x56\xa5\xf4\x2d\xa5\x1f\xb6\xae\x64\x1b\xd6\x1b\x24\xae\x94\x99\x2b\x02\x6d\x46\x70\xf0\x4d\xe0\x81\x8f\xbd\x5e\xb5\xc5\xcf\xd2\xfb\x63\x35\x7f\x25\xb2\x01\x06\x14\xfb\x73\xd1\x59\x82\x38\x62\xda\xc4\x8f\xda\x7f\x26\x1c\xcc\xfa\x96\x1c\xdb\xa8\x22\xec\xff\x54\x71\x1b\x3e\xc1\xc3\x48\x39\x66\x8f\x22\x04\x64\xfd\x41\x39\xac\x05\xa9\x75\xcd\x9e\xad\x22\xdb\x40\xf2\x25\xe5\x92\x09\x8b\xd2\xbb\xa1\xb2\xe2\x96\xf2\x9c\x3d\xd2\x84\x1b\x8c\x32\x93\x08\xec\x93\xed\x01\x34\x4d\xed\x74\x03\x16\x7e\xa1\x1d\x9b\xd5\x96\xc6\x65\x2a\xf0\xe5\x35\xed\xcb\x9d\xe4\x0f\xf9\x12\xe6\x67\xd0\xaf\x90\xee\x91\xb6\x42\x52\xfb\x78\x1b\x51\x2c\xe3\x51\xb8\xc7\x52\x43\xa7\x08\x6e\xc4\x9f\x4d\x1b\xc8\xd5\x00\x41\xba\xdd\x84\x1f\x18\x5a\xeb\xf5\x6f\x11\x21\x9f\x50\x4c\xad\x13\x81\x6f\x79\x3d\x6d\x87\xb3\x6a\x6f\x79\x27\xf0\x2a\x69\xe7\xc6\x75\x32\xb8\x0b\xb3\xde\x51\x9e\x37\x83\xa8\x80\x1a\x8c\xcb\xf0\xb7\xa9\x62\xe6\x36\x17\x5b\x50\x13\xb3\x0a\xa2\x66\x94\x8a\xf9\x4d\x0e\x39\xf1\x53\x58\x56\x5e\xfc\xf4\x14\xb9\x70\xd5\xda\x51\xae\x84\xcd\x45\x27\x0f\xc1\xc5\x04\x03\xca\x37\xda\xe5\xaa\xa9\x58\x99\x5b\xcb\xd5\xff\x97\x05\xab\x83\xc9\x29\xc0\x9d\x06\xf7\x96\x2e\xe1\xa8\x5d\xdb\xe3\xb6\x02\xf4\x80\x9a\x22\xb2\x7e\x4e\xa0\x3f\x4a\x90\x38\xba\xe8\x5c\xb7\x7e\x1a\xf7\x93\x2c\xb3\x21\xf6\x13\x44\x8b\x97\x15\x69\xeb\x72\xa3\x2d\x39\x2b\xed\x55\x27\x91\x6b\x9d\x56\xc7\x07\x6a\xec\x27\xb0\x71\x4a\x8f\xec\x49\xd5\xcc\x5a\xb1\x71\x3a\xb2\x59\xbe\x43\xe9\xe9\xb3\x0e\x82\x0b\x0f\x1d\x65\x6e\x77\xc7\x23\x33\x99\xc5\x2d\xd3\xa3\x41\x1d\x78\x94\xc6\x51\x11\x85\x8c\x85\x12\xf6\x5a\xcb\x31\x70\xff\x80\x92\x2c\x49\x5b\xf5\xe1\x5d\x16\x64\x7c\x21\xd1\xfb\xdb\x38\xe4\x5c\xbf\xda\x71\x1d\x2f\x69\xb6\x12\x97\xcb\x1c\x27\x7c\xe1\xf9\x17\x6a\xa6\x2e\x48\xc8\xaf\x53\x45\x1e\xc3\x72\x7d\xdc\x7a\xfa\x69\x2f\xe2\xb7\xb8\xdf\x7b\x3a\x2d\x2e\x48\x1d\xd3\xa1\xa4\x4d\xb2\x56\x44\x43\xb0\x04\xd9\xb7\x8a\xf6\x44\xe7\x82\xe9\x60\x31\xf7\x94\xb3\xdb\x59\xc5\x1f\x29\x93\xa8\xb0\xbd\x87\x94\x7a\x14\xd4\x89\x70\x06\xce\x74\x3c\x17\x9a\xf7\x05\xb1\xf9\x51\xc4\x82\x9a\x78\xde\xbd\xb1\xf6\x5e\xfe\x53\x7a\x6c\x8c\xd2\xcd\xc0\x97\x2a\x3e\x9e\x9a\xc6\xcf\xb4\x97\xa2\xac\x3a\xf2\x16\xf7\x33\x0c\x04\x86\x82\xe2\x66\x4c\x4f\x28\x0d\x22\xc9\x64\xd3\x15\x9b\xad\xda\x48\x14\xae\xa4\x43\xe4\xc5\x5a\xcf\xba\x44\xb6\x17\xa5\xaf\x44\x3d\xab\x15\xe2\x55\x02\x70\x5e\x5b\x53\x8f\x4a\xd8\x58\x57\xff\x94\xa5\x0b\x02\xcf\x29\x3d\xd7\x34\xd9\xcd\x68\x64\x4d\x4c\x6b\x10\xa3\x05\x18\x8d\x6b\xe7\x3a\x61\xde\xf5\xa9\x5a\xc5\xe2\xfe\x76\x18\x97\x2c\xeb\xe3\xe7\xf2\xb9\x40\xd5\x79\xcf\xb9\x6a\x8e\xb1\xfd\x88\x0f\x5e\x51\x3a\xf1\xc4\x86\x69\x13\xf8\x83\xf3\xed\x5e\x34\x8a\xd3\xa1\x29\xf8\xaf\x58\xf4\x52\x39\xb2\xad\xab\x34\xa0\x5b\xe6\x11\xc5\x44\xd5\x3f\x75\x44\x3d\x67\x29\xb8\x3e\x7e\xaa\x01\x86\xca\x25\x16\xae\x2e\x05\x4a\x25\xf5\x42\x13\x36\xca\xc6\x76\x34\x30\xae\x32\x83\xf3\xfb\x83\xb1\x6a\x09\x7c\xa0\xa0\x1b\x5d\x6b\x8a\x2c\x12\x4b\x4b\xd5\x52\x77\x7b\x87\x8b\x1d\xe2\x72\xd9\xae\x9a\x6c\x58\x23\x4d\xf8\x1c\xfd\xbe\xca\xf8\x97\x4d\x01\xc7\x7a\xf1\xb4\xf3\x03\x7f\x3d\xf0\xb6\xd6\xec\x27\x86\xb8\xfc\x3d\x9a\x57\x5c\xfa\x6e\x0a\x37\x8a\x34\x8d\x79\x94\x05\x4a\x57\x7d\xbb\x98\x58\x89\xd6\x5a\x6e\x56\xc9\xfe\xcc\x91\xdb\x17\xe6\x0e\xd7\x82\x46\x65\xfd\x20\xcd\xe8\x9f\xd0\x14\x72\x7d\x08\xd7\x07\xba\xa1\xd4\x10\x7f\xeb\x17\xd0\x62\xc0\x8a\x79\x74\xa2\x2a\x87\xef\x35\x75\x98\xba\x59\x54\x44\xf9\x60\x07\x55\xf5\x3e\x37\xd1\x09\xc4\x6c\x47\x65\x06\x70\xd6\x44\xce\xf4\x38\xd5\xe2\x11\x45\xde\x77\x93\x92\x6c\x35\x5a\x1e\xab\x88\x0e\x0c\x5f\x37\x34\xfe\x85\x66\x49\xc7\x89\x2e\x3e\xf3\x75\x83\x48\xf4\xcb\xed\x95\x74\x18\xf9\xa8\x01\x89\x0a\xb6\x14\xbe\x6e\xac\x8d\x13\xb2\x97\x66\xa4\x82\xf6\x2e\x28\x68\xaf\x16\xf0\x89\xcb\x3c\x4a\x13\xed\xc8\xf2\x6e\xa0\x30\x0c\xef\xba\x3e\x5b\x11\x15\xae\x2d\x8d\x9a\xf4\x29\xcc\x5f\xbe\x69\xa0\xd7\xb6\xf3\x28\xe9\xbb\xc7\x6f\x42\xd3\xd4\x6a\x5f\x51\x41\x34\x76\xb1\x7e\xf2\x10\xd7\x59\xc4\x6d\x48\x48\xdf\x0e\xbc\x84\xc9\xc3\x1d\x3a\x6a\x9d\xa9\x5e\x75\xd4\x8a\x1d\x11\x7d\x27\x2a\x33\x97\x54\x49\xf0\x3a\xa6\xb7\x78\x10\x35\xe8\xf4\x80\x12\xbc\x53\xc1\xa6\xfe\x19\x0e\x62\x6c\xf6\xe8\x00\x39\x09\xa3\x17\xf7\x6f\xbe\x4e\x1f\x8f\xe4\xe6\x0c\x96\x29\xa6\xf6\x4f\xa6\xb6\x82\x67\xda\x99\x85\xff\x35\xef\xb5\xcc\x02\xfb\xff\x19\xfb\xd3\x18\x39\xd2\xf4\x3e\x10\x27\xb3\x8a\x6c\xb2\xbb\xd9\xe7\xf4\x68\xf4\xff\xcb\x52\x5a\x1e\x68\x20\x6c\xab\x77\x61\xec\x97\xd5\x87\xcd\x74\xb1\x46\x3d\x2c\x68\xaa\x0b\x45\x0e\x7b\xdc\xc0\x02\xfd\x66\xe6\x9b\x99\xd1\x15\x19\x91\x13\x47\x15\xab\x3f\x0a\xbb\x86\x21\x18\x86\x17\x10\x56\x58\x78\xd7\xb0\x0d\x03\x6b\x49\xb6\xd7\xf2\x68\x74\x8c\xac\x89\xea\x99\xd1\x8c\xe6\xee\xfb\x3e\x78\xdf\x64\xf1\x28\xde\x64\x71\x11\xcf\xef\x79\xde\xf7\x89\xca\xe0\x62\x3f\x75\x66\xb3\x32\x33\xe2\x8d\xf7\x78\x8e\xdf\x81\x12\x8b\x50\xc2\x64\xff\x1e\x98\xa4\x67\x23\xee\x16\x20\x6b\xb8\x0a\xc5\x5b\xb4\xf0\x58\x71\x05\x3f\x36\xbd\xa6\x3a\x30\xa7\x0a\x6d\x2c\xb7\xab\xbd\x15\x82\xfb\x5c\x73\x64\x7a\xbc\xbf\x20\xc8\x3a\xde\x52\x11\xd7\xf1\x1a\x73\xea\xc5\xf2\xdc\xec\x07\x92\xd1\x08\xd1\xa9\xe1\xbc\x5a\x2f\x7a\xa5\x0c\x0a\x0e\x1b\x9a\xe7\x82\x6f\x97\xc0\xf9\x41\x2e\x3d\xdd\x38\xca\x82\x88\xf4\xce\xcb\x1b\x13\x68\x24\xfd\x20\x16\x20\xc8\x4d\xb8\xfd\xdd\xa8\xa3\xa2\x2a\xfb\x5d\x15\x9c\x26\x76\x14\x27\xa6\xa1\x55\xa4\x0a\xcf\x16\x5c\x6f\x3d\xec\xcb\x88\xd3\x8a\x17\x89\xd3\x87\x69\xcf\x4a\x75\xe2\xac\xce\x94\xce\xab\xa2\x57\x6a\x43\xb3\x1c\x73\x1e\x29\x26\x82\x2a\x67\x3d\x5f\xef\xe4\x6b\x33\x9b\x80\x4a\xe2\x6a\x1e\x4c\xa5\x13\x37\x2c\x99\x00\x36\xc9\xc7\xce\x93\x1c\x87\x2c\x90\x34\xae\x20\xec\xf5\xe3\x1e\x99\x90\x0f\xdd\xbb\x17\x74\xd4\xa8\x9b\x29\xd1\x99\x73\xca\xa1\xe3\x9c\x02\xd9\x8a\x2d\x7b\x1c\xed\xa0\x45\xc5\x36\xa4\x85\xe7\xc6\x5c\x54\x8a\xf0\x1f\xaa\x02\xd7\xa7\x85\x92\x43\xde\xac\xc1\x19\x2d\x34\xb3\x60\xdc\x50\x5a\x37\xc8\x5c\xe4\x7a\x5c\xdd\xfd\x1b\xb9\xd9\xa2\xf3\x07\xd0\x89\xc0\x41\xb6\xee\x30\x0b\x2f\xec\x6f\x46\x26\x49\xe2\x15\x1a\x4a\xe7\xa0\xe5\xb4\xed\xd7\x9d\x9d\x44\x3f\x08\x47\x29\x31\x72\xc1\x1b\x9b\x5a\xf3\x09\xca\xec\xe7\xda\x1e\xa9\x7a\xae\xd0\x43\xa5\x16\xc8\x79\xdf\x77\xb6\x49\x36\x8c\x43\xbe\x50\x6c\x51\x7f\xa9\xeb\x07\x7f\x59\xe7\x87\xb3\x6c\xc2\xa0\x37\x45\xab\xd7\x09\x9a\xcf\xcd\x39\x48\x78\xc3\x39\x5a\xd5\x9d\x1e\xdd\x38\xea\x87\x41\x17\x53\x46\x7a\x7b\x9e\xce\x53\xc6\x28\x12\xdb\xf6\xe3\x24\xcb\x23\x93\x11\x29\xdd\xb1\x89\xa1\xf0\xc3\xaf\x55\x82\x7c\x28\x00\x4f\x99\xaa\x46\xa7\x9f\x6e\x2b\x2e\x37\x64\x66\x05\x6e\xe1\xd1\x66\x27\x70\xab\xd8\x81\x2f\x39\x58\xa7\x09\xed\x21\x43\x26\x62\x15\x6d\x7d\x95\x4b\xaf\x2b\xf0\xe4\xd0\x0c\xa1\x80\x89\x8e\x05\x03\x29\xf8\xcd\xc4\xf0\xcd\xcd\x11\x5f\xcc\x92\x9d\x90\xc3\xb9\x79\xb7\xce\x42\x11\x51\xaf\x29\xee\x8a\x0d\x6d\xb7\x8c\xa4\x4c\x88\x23\x08\x81\x38\x48\x7b\xfc\x7a\xe2\xd8\x7a\xb6\xd9\xb3\xdd\x30\x88\xe4\xac\xe3\xa2\x24\x0a\xfa\x52\xa1\xfc\xbc\xda\x6b\x96\xe3\x90\xf8\xde\x26\x01\xf0\x85\xb1\x07\x84\x90\xc0\x9c\xba\xa5\x75\x9e\xd6\x95\x8b\xde\xca\x30\x08\xed\xe3\xae\x84\x37\x7d\x54\x81\x9a\x37\xb5\xa0\x10\x4b\xd5\xa3\x8c\xc1\x24\x79\x64\x6f\xdb\x11\x00\x61\x84\x7f\x41\x67\x23\x8a\xc3\xa7\x70\xa6\xe0\x70\xb8\x56\x11\x2e\x64\x55\x32\x21\xa0\x79\x6d\xe6\xef\xe0\x44\x47\x4f\x76\x1a\x75\x10\xa4\x9c\x7f\x45\x39\x96\x32\x8c\x97\x16\xd5\x5b\x4a\x13\xac\xdc\xbe\xed\xa1\x6c\x4a\x2d\x60\x50\x9e\xb4\x72\x95\x98\xd7\x6d\x1d\xf7\x32\xa3\x40\xfb\x92\x52\x0a\xd7\x9a\x5e\x9c\xd1\xfd\x34\x91\x0d\x7a\xc7\x19\xef\x65\xc3\x3c\xdd\xa5\x48\xd4\xe7\x8a\xc6\xd7\xbe\xe2\xb0\x8a\x1e\x16\x74\x9e\x8e\x80\x8a\x1b\x10\x9a\x0f\x9b\xa4\x47\x82\xa2\xd0\x87\x34\x18\x48\x7a\xfe\x5e\xdb\xb7\x89\xef\xaa\xd3\x25\xb4\x03\x92\x6f\x75\x20\x02\xf6\x67\x95\xfd\xef\x81\x87\x5b\x62\xd3\x6c\x14\x47\x9c\x69\xc8\xae\xa2\xa0\xb9\xe7\x15\xe5\x7f\x9c\x77\x42\xc2\x8e\x91\xe3\x1f\xfa\x45\x6f\x6a\x3d\x93\x0d\xed\x68\x74\x5c\x39\x49\x3e\x86\xa0\x88\x5b\x4c\xd8\x9b\x45\xa0\x49\x33\x37\x83\x38\x09\xb2\xd5\x9d\x9e\x3a\x77\x5f\x61\x42\xae\xd3\x40\x08\x9b\xc1\x7b\x9f\x1e\xc5\x3a\x60\xc4\xb3\x16\x7c\xfa\x40\x71\xcb\x06\x71\x64\xa7\xb4\x6d\x13\xd2\x41\x9c\xd4\x53\x4a\xf3\xf2\xc6\x44\x00\x56\x66\x6f\xd6\x8e\xa5\xa7\xeb\x7c\xd2\x17\x67\x1c\xa3\x54\xd5\xa8\xb3\x6c\x1a\x3f\x83\xf5\x73\x45\x89\xa2\x5e\x57\x27\x17\xfb\x5f\x79\xcf\x67\x67\x72\x9c\x77\x43\x6b\x12\xbe\x56\x5d\x96\xc3\x4e\x7e\x45\x4b\xb6\x4f\x8a\x49\x1c\x9c\x59\x68\x66\x43\x9b\xd8\xa9\xc6\x97\xbf\xce\xbf\xf5\x03\x05\xc5\xda\x46\x90\x29\xf1\x99\x7f\xa0\x94\x5a\x18\xf4\xa4\xb2\x8c\x0a\xfb\xbf\xd0\x0a\xfc\xff\xa2\x6e\xa9\x0c\x81\x24\x80\xfd\x22\x4a\xd0\xcc\x78\xc6\xea\x3f\xa7\xaa\xae\xa7\x95\x8d\x4e\x2f\x48\xd9\xcd\x98\x76\x5f\x80\x79\xd0\x9c\xe6\xd7\xb5\x4e\x3d\x51\x3f\x09\x6c\xd4\xe3\x23\xc5\x49\x35\x2f\xce\x38\x81\xab\x9a\x66\xd9\xd0\x76\x97\xd0\x48\x74\x56\x02\x5f\xfb\x0a\x37\x92\x5f\x57\x6d\xac\x5f\x68\xdc\x86\xed\xef\x52\x65\x8f\x06\x75\x68\x78\x7a\xd2\x1c\x42\x44\xfe\x76\xe1\x5b\xd7\x87\x35\x2f\x72\x13\x9b\x84\x68\xb7\x35\xc4\xbb\xeb\x1b\x4f\xb6\x2b\x3a\xae\x5b\x73\xfa\xaf\xce\x36\xa3\x78\xca\xab\x43\xe2\xc9\x21\x2b\xdd\xdd\x6e\x38\xd2\xc8\x95\x3a\x16\x6c\x96\x27\x9c\x41\x21\x53\x46\x6d\x8c\x5f\x4f\x24\x76\x73\x73\xcd\x11\xba\xac\xcc\x7c\x47\x32\x74\x5e\x91\xe5\xcf\xd7\xa5\xda\x23\x3b\x8a\x59\x8d\x56\x99\x7d\x0b\x9f\x0d\x62\x35\x08\x6e\xde\xa6\x8d\x56\x60\xc6\x2e\x2a\x0f\xe3\x15\x99\x31\x18\xb9\x6d\x6d\x75\xd1\x97\x0b\xd5\x64\xac\xd4\x26\xc3\x60\x99\xc9\x57\xde\x2a\x11\x0d\x3b\x7e\xad\xa4\x1f\xc8\x48\x54\xd4\xfe\x44\xfa\x5b\xf9\xc9\x7e\xaf\xb5\x75\xe4\x9f\x6d\xa6\xf6\x50\x43\xe1\xbd\x5a\xbe\x1e\xf0\xa9\x6a\xda\x8c\x82\x54\x9c\xa2\x30\xdf\xdf\x6d\x29\xf5\xd0\x77\x27\xb4\x02\x5e\x7e\xb9\x99\xc5\xf1\x54\x39\xe5\xf0\x48\x41\x66\x46\x46\x78\xb3\xa5\x54\x91\xcf\x3d\xd0\x8e\x3e\x8a\x93\x91\x09\xf9\x31\x31\x90\x43\x0b\xa0\xde\xaa\xfa\xf3\xd9\xf0\x21\x7f\xe8\xaf\x6b\x79\x1e\x2e\xe5\x6a\x3f\x6d\x91\xcd\x20\xbf\x1a\x6a\x3f\x91\x1c\x9b\x17\xa4\x7f\xb3\x6e\x4d\xe5\x99\x19\xd2\x66\x23\xbc\x25\xdf\xa9\x7d\x07\x57\x86\x34\x77\xb2\xc9\xb6\xaf\x9c\x41\xbd\xa0\x4b\x91\x8d\xde\x9b\xbf\xa9\x2d\xf5\xbe\x59\xcb\x3f\x78\x25\xce\x93\x08\x41\x94\x2f\x73\x79\x5c\xdc\x85\xca\x30\xf4\x7a\x29\x0d\x83\x98\x11\x53\xe4\x82\x79\x55\x00\x2f\xa1\x95\xd3\xf9\xaf\xa8\xb1\x8a\x4d\xfc\x24\xae\x87\x39\x9b\xdc\x7f\x11\x06\xe7\xd3\xea\x00\x33\x83\x91\xc9\x82\x34\xa3\xa7\x83\x38\x1a\x36\xdd\xfc\x7a\x22\x89\x3d\x38\xf3\x52\xb3\x1f\x27\x76\x99\x9d\x6e\x5d\x8d\xcb\xf5\xa1\xdf\xaf\xd5\xfb\x1d\x84\x71\x87\xa6\x01\xdd\xbf\x00\x6b\xcb\x6f\xd8\x5a\x9c\x7e\xc5\x46\x4b\x41\xc4\x91\x63\x05\x27\x27\x44\x8a\xad\x87\x40\x99\x1d\x8d\xf3\xa4\x3b\x34\x5e\x31\x05\x07\xfc\x3f\x53\xe0\xa4\xbf\x6b\xf9\x5c\xc1\x43\x3b\x4d\x9a\xda\x51\x27\x0c\xe4\xf0\x40\xb6\x7f\x1c\x73\x8d\xdf\x54\x0a\xfa\x26\x5c\xdd\x51\x0e\x34\x47\x10\x78\x34\xda\x9b\x1c\x99\x3c\xe9\x26\x6f\x22\x60\x42\x0e\x7e\x54\x01\x38\x46\x71\x9e\xda\x2c\x31\x63\x9c\xd0\x78\x98\x47\xd0\x7e\xe7\x37\x8a\xab\x9a\xc5\x87\x82\x2e\x45\x74\xe2\xc6\xe3\x35\x0d\x4e\x21\x38\x11\x33\xc7\xa7\x7d\x0e\x13\x92\xe6\xbb\x2b\x1d\xb9\x56\xb3\x22\xf6\x6e\x1d\x48\x52\x2f\x07\x24\xcd\x0d\x24\x22\xc2\x63\x85\xaf\xb4\x60\xd2\x09\x12\x5f\x7e\x71\x64\xbe\x91\x07\xa1\xe9\xc5\x89\xe1\x36\x89\xa3\x2e\xb9\x83\xf1\x3e\x6d\xaa\x88\x80\x1f\x6a\x7b\x09\xa5\x6c\x98\x04\x61\x58\xf1\x4e\x86\x1c\x15\xbf\x9e\xa0\x3f\xff\x76\xb3\x13\x67\x43\x52\x9b\xc1\xbd\x30\x23\x17\xcf\x01\x46\x03\x08\xe7\x3f\x9b\xd8\x01\x0e\xbc\xd0\xcc\x4c\x0a\x33\x09\xac\xfa\x7b\x6a\x07\xb8\x37\x91\x7b\xcf\x1e\x68\xa6\x2b\x80\x19\xef\xf7\x95\x79\xf7\x30\x38\x2e\x92\x50\xf4\x11\x87\x1e\xea\xd9\x69\x75\x8e\x1e\x2b\x14\xff\x6f\x5d\x89\xb8\x9d\x57\xae\xba\x53\x13\xf5\x07\x7a\x22\x7d\x03\x22\x41\xf9\xa0\x5d\x50\xee\x62\xd5\x0b\xaa\xed\xd9\x31\xc9\x74\x25\xec\x61\x25\x49\x5f\x57\xbd\xac\x04\x8d\xfe\xbc\x78\xd4\x1d\x0d\x4b\x4b\xc9\xb4\x52\xf0\x03\x10\x47\x6a\x13\xde\x0b\xf6\x53\x8c\xb3\x34\x4f\x6b\x58\xff\xc1\xa8\xdc\x22\x49\x97\xed\xa0\x28\x34\x01\xf4\x2b\x0d\xbc\xc7\x94\xa2\xb9\xe9\xda\x5d\xe5\x9c\x70\x2a\x74\xde\xb2\x9f\x63\x31\x4d\xed\xac\x34\x75\x70\x66\x37\xd6\xbc\xc4\xcc\x66\x4b\xa1\xac\x80\x24\x15\x93\xf8\xcf\xa9\x21\x0a\xc3\x38\x8e\x82\x34\x4b\x15\x2e\xf4\x92\xc2\x85\x5e\x52\x8e\x71\xfd\xc4\x74\xa1\xe4\xcf\x71\x1b\xf6\x8f\x93\x54\x7c\xe1\xd7\x13\x33\x6c\xef\x5e\x8a\xbf\x77\x94\x57\x06\x58\xec\x86\x96\x3f\x46\x79\x04\xa8\x8e\x9d\x6d\xdf\xab\x3b\x52\xa8\x2d\xef\xbb\x8a\x7a\x94\xd8\xcc\x04\x61\x10\x0d\x76\xd0\xfd\x21\xe5\x3a\x89\x09\x85\x12\x13\x4c\x09\x90\x1c\x5f\x53\x9e\xac\xec\xdb\x25\x21\xd5\x16\xff\xa8\x83\x33\xcd\x17\x67\x0f\xd0\x73\x92\xbe\x63\xf9\x51\x7e\x3d\xd1\x65\x2e\xc3\xd1\xc0\x75\xb8\x70\xf6\xbe\xa3\xf5\xab\xde\xa9\x51\x1b\x59\x68\x66\xc1\xc8\x66\x46\xd4\x46\x44\xab\xcc\x4f\x88\x4f\x54\x5b\xd1\x9a\x34\xb0\xc9\x23\x15\xf1\x3f\x9a\x05\xcc\xb7\x68\x69\x9b\x3a\x9a\x96\xc8\x87\x2e\xd1\xd9\x87\xb8\x84\x55\x63\xdd\xcc\x5b\x9c\xf1\xcc\x2e\x3f\x23\x5b\xbe\x06\x8a\xd5\xec\x84\x07\xcb\x55\x26\x55\xce\xc7\x94\x79\x7c\xca\x24\x72\x66\x88\xa8\xf6\xd6\x59\x84\xc2\x9c\xbf\x27\xe3\x98\xe8\x02\x99\x12\x75\xb9\x5d\x29\x34\xd1\xed\xe1\xcd\xc9\xe2\x61\x1e\xb2\xe6\xde\xbd\xbf\x46\xa8\x5e\x34\x64\x5f\x2b\x94\xf6\x32\xd3\xf3\xe4\xc1\xd0\x34\x71\x04\xec\x2f\x7f\x9d\xf3\x4d\xa6\x78\x20\xaf\x3c\x4a\xf4\x2e\xd6\xa1\xa5\xd1\xc1\x39\xfb\x53\x62\x8a\x21\xe8\x3c\x0c\x3e\x98\xdb\x18\x5c\xd7\xf7\x2a\xa6\x2b\x94\x25\x3e\xc4\xaa\x42\x49\xe6\xb8\x0a\xcb\xb7\x29\x86\xc6\xae\x36\xc4\xe7\x10\x02\xb0\xac\x0b\xca\x5b\x37\x09\x24\x02\xf8\xe9\x29\x0e\x45\xa4\x0d\x41\x78\x24\x86\xf8\x29\x4a\xc1\x5d\x6a\xff\xe2\xe7\x3f\xb7\xe6\xd5\x4a\xbf\x5b\x6c\xff\x22\x1f\x1f\xd7\x21\x92\xcb\xea\xdd\x32\xf3\xe9\x00\x15\x82\x9c\x57\xf5\x3c\x53\x34\xbe\x3a\xeb\x5b\x33\xe5\x13\x46\x4c\xb0\x41\x0a\xbd\x28\xad\x14\x35\x00\xf5\x26\x44\xd8\x70\x82\xca\x1c\x6c\x28\x95\xf7\x7a\xc5\xa2\xcc\x8e\xca\x49\xc0\xa1\xb6\x0b\x9d\x1d\x88\xf8\x64\xcb\x17\x7c\x06\x36\x2b\x0f\xdb\x3d\x1e\xb0\xf7\x37\xf4\x0b\x78\x5c\x8d\x76\xf9\x18\x9d\x35\xb9\x1f\x2e\xc6\x0b\x4a\x56\xed\xf9\x8b\x3f\x2f\x2a\x22\x13\xe5\x40\x8a\x30\xa2\xb2\x4d\xd8\xe0\x07\xc1\xef\x0a\xef\xba\xcd\xce\x75\xd8\x76\xcf\x28\xee\x92\x2f\x32\x27\xb6\x9f\x47\xbd\xad\x7e\xcc\xbf\xf3\xa2\xeb\x3a\x7b\x1c\x4d\x1f\x02\xe3\x84\x24\x15\xd6\x4b\x79\xad\xc2\x86\x51\x8e\x53\xc3\x24\x5e\xe1\xdc\x0c\x20\x00\x96\x2e\xc1\x2d\xfe\xac\xe5\xb5\x9b\xb0\x60\xd9\x24\xde\x9d\xb8\x9d\x78\x95\x2f\x09\x9b\xfe\x54\xdb\x1f\x00\x53\x6b\x52\x78\xee\xd9\x34\x0e\xe5\x74\x12\xa7\xc9\x86\x13\x13\x3f\xa6\xe4\xb5\x46\x41\xd4\xb5\x23\x6b\xb2\x69\xfa\x56\x4c\xc7\xa3\x88\xb7\xc4\x6f\xa6\xe1\x04\x58\x8e\x62\xf2\x89\x2b\x8d\x2f\xb0\xd8\x1c\xfc\x17\x6c\xdb\xec\xb9\xc2\x6f\x54\x55\x81\xa0\x77\x04\xaf\x9f\xae\xc2\xa5\x1a\x4a\x1d\xcd\xb7\x9b\x2b\x55\xe1\x63\x0e\xf0\x6a\xf2\x2c\x1e\x24\x66\x3c\x94\x8e\x87\x8e\x18\x01\x0f\xb9\x8c\x05\x20\x43\x59\xb7\x65\x9b\x28\x0b\xb2\x24\x4f\xb1\xe1\xa1\x3c\x06\x3a\x15\xbf\x5e\xf3\x75\xaa\x57\xe2\xd4\x2a\xe6\xe0\x4f\x71\x7f\xfc\xa6\xce\x82\x25\xed\xe6\x59\x16\x4a\x8f\xc2\x09\x29\x78\x51\x85\x5a\x33\xe9\x5e\xbc\x12\x4d\x97\x93\x19\x1b\xfe\x4d\xec\x75\xec\x60\x4c\x9b\x3c\xf6\x85\xc7\xda\xca\x6c\x7f\xeb\x81\x37\x3f\xdf\x3c\x38\x33\xfb\x84\x92\x65\x38\x87\xc7\x89\x1d\x10\x1a\xdd\x00\xa0\x32\x1e\x87\x4b\x28\x6b\xf4\x6c\xf9\xaf\xb0\xb9\x21\x7b\x45\x2b\x09\x05\x1c\xd6\x03\xc4\xde\xba\xa6\x18\xed\x8d\x76\x79\xe1\x52\xa2\xa0\xf1\x41\x24\xf3\x0e\x2d\x2f\x76\x7d\x6c\xa9\xfe\xe5\xdf\x6a\x1a\xed\xdd\x96\xd7\x2e\xf8\x84\xb6\x72\x7c\xe2\x5a\x5d\x59\xc4\x8c\xc7\xa1\x0d\x83\x25\x78\xd7\xe1\x67\x6e\xb4\xf4\x7a\x29\xbf\x8c\xd5\xb7\x14\xe8\x3b\xee\xa4\x36\x59\xb6\x09\xad\x40\x69\x08\xbe\xd9\xf2\xa8\xfb\x7b\x3a\xfd\xbe\x87\x5b\x15\xbb\x98\x3a\x9e\x4e\xba\x9a\x66\x76\x24\xaa\x76\x2c\xa5\xd8\x56\x4a\xc6\xdb\xd1\x6c\x15\x24\xef\x33\x1e\x53\x6e\xc3\xa0\x63\x13\x6a\xbf\x50\x39\x09\x1b\xd3\x4d\xec\x78\xa2\xd2\xed\x69\xf9\xdb\xd6\xbe\x50\xad\xcd\x51\x03\x14\x06\x61\x0a\x54\x0d\x84\x38\xbf\xd6\xcc\x0f\xd7\x2f\x13\xa5\x41\x0f\x64\x9a\x24\xee\xec\x9b\x6f\x76\xe3\x78\x5c\x5e\x9e\x44\x42\x2c\x28\x58\x28\x76\xc1\xa4\x5f\xf5\xb3\xcd\x71\x62\xd3\x7c\x64\x3a\x21\x7b\xbc\x78\xd5\x73\xd7\x37\x9b\x68\xa4\xbc\xb8\xd0\xec\xd8\x30\xb0\xcb\x16\x45\x40\x04\x0d\x37\x11\x01\x60\x4c\xb1\x45\x4b\x47\xc0\x43\x55\xe2\xa8\x6b\x1f\xf3\xa8\xa8\x69\x20\xff\x71\x46\xa0\x3e\x84\x7a\x02\x0b\x5b\x38\x20\x89\x0b\x06\xdf\xa5\x43\x18\x25\x70\x0e\x2d\x98\xed\xdc\xf2\x2a\x9f\x8c\xde\x77\xad\x97\xbd\x7b\xb9\x6d\x78\xac\x50\x88\xf1\x6d\x6a\x2b\xde\x09\xe5\x26\xbc\x99\x26\x42\x2b\x8a\xbe\x3b\xd7\x1c\x58\x29\x5d\xb2\xbd\xdd\x3e\xfa\x3f\xfc\x04\xe2\x1f\xe7\xf8\xb3\xa8\xbc\xc5\x95\xe0\x28\xdd\x08\x96\xef\x5d\xba\x11\x81\xfd\x94\xbf\xce\xe2\x6a\x85\xa2\xc6\xc2\x97\x00\x99\xdb\x4d\x95\x6f\xa7\xc3\xa0\x8f\x36\xa1\x48\xdb\xf9\x23\xeb\xb5\xe2\x29\xcd\x70\x24\x85\x98\xde\xb4\x0f\x32\xbf\x83\x63\x00\x71\x1b\xd4\xce\xf8\x1f\x0a\x05\x82\xdf\xbe\xa6\xba\x14\x36\x49\xc9\x39\x92\xbe\x05\x1b\x0e\x76\x7d\x74\xca\x6e\x60\x63\xc0\x25\x5f\x53\x99\xa3\x2f\x99\x74\x93\x78\xa5\x87\x8e\xbf\xc4\x8f\x47\x0a\xa5\x0c\x83\x0d\x40\x6c\xdb\x7c\xf6\xf1\x2d\xef\x1b\x10\xaf\x9a\x30\xe3\x99\xa9\x7d\x6e\xf9\x75\x1d\xe7\x2d\xb4\xd1\x20\x1b\x22\x2d\x62\xb5\x35\xfa\x1d\x51\x5e\xdb\xfa\x91\xc5\x99\x66\xdf\x44\x7d\x61\x9d\xca\x37\x7b\xca\x6a\xd5\x7a\x70\xc8\x0d\x22\x57\x95\xf2\x15\xaa\xc2\xb7\xff\x86\x36\x14\xf0\x94\x9b\x9d\xae\x70\xa6\x8f\xe1\xf9\xe7\xe6\x1a\x1e\xb9\xcd\xb0\x0f\xc9\x63\x7d\x38\x46\x25\x52\xae\x56\x62\x81\x1d\xa1\x1d\x93\x5f\xab\xb6\xef\xc8\x26\x8f\x96\x93\x0c\xeb\xeb\x6c\x51\xed\x18\x95\x83\x8f\xca\xde\xfd\x42\xc9\xf6\x6d\xc3\x6a\xc3\xec\xbf\xa1\x22\xe3\x73\xdc\x5d\xc4\x96\x7a\xa5\xe5\xe7\x02\xa8\x96\x9c\xe7\x50\x98\x25\x3a\x75\x7e\xf6\x1e\x56\xea\xcd\xff\x4b\x53\x09\x45\x8d\x03\x9b\x74\x71\x3e\x3b\x63\x22\xaf\x8b\xa4\xfb\xa8\xe9\xd0\x26\x76\x9a\x36\x09\x49\x30\x1b\x5e\x39\xad\xd5\x50\xc2\x09\x9e\x74\x74\xb2\xe5\x33\x9f\xa1\x1d\x05\xe9\x78\x68\x93\xa0\xdb\xd0\xc1\xe5\x15\xad\xdc\x7a\xc5\xcd\x38\x56\xd7\xfc\x65\xd5\x70\xf9\x7b\x6b\x5a\x5a\x83\xb5\xb9\x91\x77\xb0\x28\xa2\xb4\xc9\xca\x9d\x09\xb9\xd7\x5d\xe4\x30\x92\xfa\x95\x03\x8a\xbd\xf0\x57\xda\x4a\xab\xfe\x0c\x6b\x63\xab\x9c\x52\x2c\xbe\x9e\x58\xab\xe0\xf6\x16\x67\xa4\x5e\x82\xec\xe5\xbf\xa1\xad\x0b\x21\xe8\x33\x14\x5b\x20\xf9\x79\x7c\x4d\xf1\xce\x3e\xc2\x12\xc5\xd5\x35\x81\xb4\xa2\x5a\xc2\x7f\xdf\xa4\x1c\x09\xf1\xc1\x35\x54\x6e\x85\xa1\x52\x66\x1e\xe2\x9d\xe1\x7d\x29\x18\x42\x87\x21\x78\x02\xe7\x25\x8e\xbc\x6b\xad\xc6\xcb\x2f\xcb\xd9\xd9\x16\xc8\xc0\x38\xb1\xbd\xa0\x9b\xd9\x1e\xce\x6d\xf4\xf7\xb6\xb7\xd5\xfc\x7b\x47\x35\x70\x21\xee\xc1\x42\xbd\x4a\x62\x2f\x88\x96\xe3\xa0\xcb\xc2\x79\x2c\xef\xdd\xf2\xca\xf1\x17\x34\x6b\x70\x68\xbb\x4b\x71\xbf\x3f\xe5\xb7\x91\x3b\xaa\x6f\xc2\x9a\x80\x82\x9a\xdb\xe3\xf8\x19\xc9\x88\xf3\x67\xd6\xdb\x41\x96\x2e\xe2\x3b\xca\x1d\xd6\x46\x3d\x1b\x75\x01\xf2\xc3\xf6\xf5\x7f\xd2\xf7\xf3\x6b\x85\xcc\x1d\x44\x41\x86\xbf\xab\x71\xc3\x9b\x28\xc2\xff\x66\xb3\x13\x27\x49\xbc\xe2\xf2\x39\x3c\x2e\xa8\xf9\xf3\xeb\x3a\xd0\x49\xda\x8d\xc7\xd8\xb1\x74\xd0\x2f\x71\xbe\x2e\x0d\x27\x29\x9b\xf3\x49\xdb\xa8\xa1\x24\x85\xb4\x36\x17\xa6\x0b\xff\x8b\xda\x7c\x52\x93\x05\x69\x9f\x05\x03\x18\x35\xa2\x92\xc1\xf3\xae\x6a\xdd\xb3\x49\xb0\xec\x69\x6d\xb8\xe5\x7b\xca\x04\xe0\x5e\x0d\x97\x26\x5e\x0a\xcd\x73\x24\x15\x58\xab\x80\x52\x43\x65\x34\xa3\x51\x1c\x05\x39\x2c\x4e\x99\xe5\x42\x77\x2f\x8c\x17\xbd\x5f\x27\xf9\x90\xbe\xdc\xf9\x72\x7a\xd9\xf1\x0b\x2d\x6d\xfa\x93\x8e\x6c\x16\x74\x41\x2a\x11\x51\xaa\x72\x5b\x93\xf2\x88\xf7\xa1\x14\xee\x2e\x86\xed\x72\x4b\x55\xf6\x6f\x2b\xa5\x87\x9f\xd3\xac\xe6\x8f\xb4\x94\x78\x05\x1b\xfb\x8b\x4e\xe3\x93\x3a\xd9\x62\xea\xab\x53\x26\x3d\xa9\xda\x03\x27\xcb\x14\x44\xdc\x81\x7a\xa3\x20\x0a\xd2\x0c\x32\x90\xbb\xe8\x12\x50\x6f\x01\xca\x5d\x8c\x5c\x5c\xe7\xf1\x1f\x3c\xb5\xa6\xba\x56\x77\x34\x1e\xfb\x8e\x32\x56\x3c\xae\x78\x92\xef\xe3\xa2\x59\x2a\xcc\xc7\xa6\xf9\x78\x1c\xae\xee\xa6\x85\x82\x9a\xd7\xbf\xd4\x51\xd5\x39\x8a\x71\x78\xd9\x55\x37\x68\x89\x77\x0e\x7c\x01\xf8\x3e\x87\x35\x28\x77\x54\xd7\x41\x73\xfe\x2b\x5c\x9c\x46\xb5\x7d\x6a\x4d\x2d\xf6\x20\x0b\x5e\xb5\x51\x4a\x10\x3f\x69\xc6\x7a\x63\xda\x13\x6a\x61\x9e\xa8\x96\x1a\x5d\x3b\x1a\x95\x3f\x27\x08\xcd\xf4\x6e\x7e\x33\x21\x9c\x3d\x3f\xdf\x4c\xcd\xaa\x44\xd6\x0c\xcf\x59\x53\xa4\xae\xed\x6d\x27\x3c\x3d\x24\x59\xb2\x29\x8f\xed\xe0\xfb\x93\x8e\x80\x8f\x45\x3e\xa8\x75\x27\x1d\x05\x91\x4d\x4c\x98\x22\x6c\x12\xd9\x0d\xba\x3c\x6e\xaa\xb7\x2a\x4a\x64\x98\x8b\xd2\x6f\x9f\x84\xea\xce\x37\xf3\xa8\x97\x73\xec\xc0\x98\x12\xe5\xd1\x71\xbc\x4e\x46\x67\x64\x12\xe2\xd4\x38\x94\xd8\x4d\xb5\xde\x6f\xd6\x38\x6f\x34\xfb\x24\xc8\x35\xed\x97\x3a\x2b\x44\x39\x19\xb3\x45\xa9\x6b\xfc\x05\x42\x12\xd4\x00\x7f\x51\xe9\x2f\xc6\xc9\xea\xd3\xb8\x1d\xec\xe0\xd7\xe8\x44\x55\x4a\xeb\x42\x5e\x42\x6b\x44\x64\x56\xe9\xfb\x1c\xd6\xb5\x3c\xcc\x30\xf0\x77\x31\x6a\x22\x6c\x44\x8f\x0b\xf0\x75\x24\x53\xaa\x3c\x2f\x3d\x9d\xe9\x35\x9c\xc8\x4e\x65\xed\x45\xc9\x35\xee\x52\x4c\x8f\x6c\x75\xa3\xf0\x7a\x1b\x88\xc3\x10\x13\xbf\xa6\xe1\xd8\x9f\x16\x5e\x41\x14\xde\x4f\x00\xc6\xfc\x09\x0a\x1d\x88\x9c\x36\x1c\x8c\x91\xda\x13\x0d\x7f\x7a\xf1\x4e\xc5\x6f\x5a\x8f\x6b\x2b\xb5\x98\x85\x32\xb0\x35\x7d\xa8\xd4\xbf\x3f\x9c\xe8\x49\xcd\xcd\x35\x57\x0c\x2b\x1e\xb0\x9d\xa4\x32\x38\xf9\x4c\x85\xa2\xfb\x7e\xf7\x77\xa7\x1a\x5f\x9d\x65\xad\x0e\x24\x09\x28\xfd\xf1\x22\xc2\x0d\xdf\x50\x26\x23\xe3\x3c\x0c\xb2\x57\xf9\xb9\x2b\x6f\x52\x51\x7e\xd9\xe4\xd9\x89\x66\x13\x48\x56\xac\x76\xa8\xcd\xa3\x59\xf7\xfb\x21\x7a\x76\x72\xa0\xfa\x29\x0a\xee\x36\xe0\x21\x7f\xd6\x52\xd2\xb0\xef\xe2\x99\x22\xf8\xb8\xae\x48\x05\x7f\x4c\xf3\x03\x79\xd6\x77\x5b\x9f\x57\xca\xd8\x26\xb1\xc3\x38\xec\x91\x35\xac\x2a\x61\x55\xb6\xa0\xd6\xd6\xf2\xa9\x13\x6c\x35\x2b\xab\x36\x61\x52\x1d\x8a\x3c\x1f\x70\xc5\x12\x9d\x22\xde\xb1\xb0\xdb\xfc\xa8\xa6\xe1\xbe\xd0\x34\xc9\x08\xa9\xbd\x87\x03\x9c\xd4\xe4\xb1\x93\x0f\x94\x8b\xed\xa3\x8b\x26\x31\xfb\x59\xd5\x43\x00\xf0\x4a\x09\xa2\x88\xdb\xf7\xe9\x5a\x31\x91\x60\x34\x4e\xe2\x65\xa9\x2f\x60\xe6\xfc\x58\xcd\xa2\x1f\x6b\x2d\xcc\x38\x0a\x1a\x4a\x0f\x66\xbd\xa5\xed\x2b\xf7\xb8\x44\x2d\xef\x49\x2f\x10\x5b\xd1\x2d\x2c\x73\x7e\xa3\x23\xfa\xcc\x8a\xfc\x98\xf8\x2b\x96\x0f\x82\x5f\xab\xde\x46\x2f\xa1\x79\xee\x60\x56\x9f\xd2\x34\xe0\xd7\xc5\x33\x9e\x53\x13\xc4\x36\x1a\x04\x91\x85\x4f\xfe\x82\x63\x12\xfb\xea\xf1\xbb\x75\x9b\xdc\x70\xb5\x93\x04\xd0\xb8\xc7\x16\x03\xa6\x21\x62\xe7\x63\x15\x58\xa5\x46\xa6\xfd\x56\x10\xd1\xe6\x8e\x9d\xe4\x8f\xf0\xc4\x71\x70\x80\xcb\x22\x88\xbf\x1a\xe9\xa5\x34\x0e\x97\x5d\xa0\x87\x4b\x43\xc7\x86\x5f\x4f\xd4\x18\xe7\xe6\x9a\x49\x9e\xa6\x71\x43\x35\x67\x40\x61\x92\xb0\x64\x12\x09\xf1\x7c\x93\x4a\x3a\x5b\x6d\xd5\x95\xfc\xde\xa4\xaf\xba\xf3\x62\x95\xad\x42\xe4\x77\x3d\x3e\xf0\x62\x0d\x46\xae\x99\x47\x49\xce\x2d\x48\x11\x33\xf7\xbe\x02\xef\x55\x02\xb1\x3c\xc8\x76\x35\x0e\xce\x6c\x82\xa0\x88\x06\xe4\x77\x30\xf3\x91\x26\x9d\xd7\x0e\x3b\xa0\xe0\x8a\x77\x80\xd7\x73\x65\xde\x1e\x66\xcb\x75\x4c\x75\x24\x0e\xd7\x1d\x73\xaa\x1b\x87\xa1\x19\xa7\x76\x87\xf2\xd5\xbf\x46\x5b\x36\x3e\xc6\xe8\x2a\x2d\xef\x8d\x87\xfe\x58\x5b\x01\xcc\xd5\x23\x1f\xc5\x63\x55\x1b\x80\x21\x17\xbf\xae\xd1\x69\xde\x2f\xc5\x31\x7e\x00\xdc\xec\xa9\x7a\x88\x28\x4e\xaf\x89\x80\xf7\x5b\x9c\x11\x1b\x8c\x5b\xe8\x40\x21\xfb\x3b\x4d\x17\x28\xe2\x13\x5e\xc8\xca\x46\xfd\x38\xe9\xda\x91\x38\x57\xd4\x25\x1b\xbe\x90\x1a\x19\xf4\x8b\x59\xeb\x54\x38\x9c\xe5\xc0\xe2\x54\x67\x80\x12\x96\xd7\x06\x45\xbe\x98\xe1\x97\x8b\x2d\xe6\xb3\x7b\xf7\x36\xf7\xee\x6d\xe8\x5a\x1f\xf6\x64\x29\xfc\x29\x47\xd3\x38\xb1\x26\x62\xe3\x3e\xa7\xe1\x33\x37\xe7\x34\x7c\xa4\x49\x92\xc4\xa6\x47\x35\x55\x54\x89\xd0\x98\xe7\xfe\x97\x56\x73\x3f\x33\x81\x0d\x21\xcd\xbf\x60\x94\x87\x86\x2c\x02\xb1\x68\x2b\x8f\x99\xdf\x3c\x50\xd7\xd0\x1e\x3a\x14\x47\x53\xda\xb8\xeb\x84\xaa\xcc\x6d\xd7\xce\x90\x0f\xb5\xeb\x78\x0a\x2b\xd6\x2e\x85\xab\x53\x53\xda\xfd\xdf\x67\x94\x40\x36\xe0\xcb\xfe\xae\x82\xd2\xb5\xdd\x20\xce\xd3\x9d\xd4\xd3\x44\x2b\xed\x36\x38\xb5\x58\x1b\xef\x6a\xb7\xca\x77\xa9\xb8\xc9\x7f\x85\xe1\x16\xe5\x73\xcf\xeb\x3c\xa5\x9e\xb7\x3d\x44\xfc\xaf\x65\xfb\xe0\x22\xd4\xa4\x47\x6c\x1a\x0c\x22\x13\xba\x0d\xca\xf9\xb0\x78\x4f\x96\xe2\x0b\xca\x26\x9a\xa4\x44\xd3\xcc\x46\xdd\xc0\x62\xe7\x45\x49\xe0\x72\xcb\x6b\x75\x5e\xae\x83\xba\x75\x87\xac\x50\x54\x57\xc6\x51\xa0\xf3\xa1\x89\x06\xb6\x07\x07\x00\x86\x4f\x28\xe4\x12\x5b\x92\x38\x6c\xf8\xc1\x99\x0a\xc6\x82\xff\x3f\x96\x9d\x88\xba\x3f\xa6\x12\xfa\x43\x99\xb4\x01\xa4\x89\xac\x1d\x7b\x30\xed\xb0\x17\xdc\x70\x8d\xac\x5e\x3c\xa2\x83\x46\xdc\x89\x95\xce\xef\xf3\xae\xcf\xe8\x83\xb8\x7b\x2d\xed\xa9\x3f\x1a\x13\x80\x89\x82\x25\x94\xa6\xa7\xd7\x34\x24\x89\x86\x01\x0b\xb0\x41\x49\x9c\xa8\xd7\x39\x7a\x4a\x79\x16\xd8\x30\x9d\x9e\xd0\x8e\x92\x86\xe7\x55\x0a\x0a\x2a\x95\x67\x84\xa6\xbb\xdb\xaa\xa7\x69\x92\x8c\xb5\xfc\x85\x6d\xe6\x2b\x71\xe7\x5a\x3e\xbc\xeb\x86\x71\x0a\x13\xfd\x83\x33\xf3\x9b\xef\xd3\x50\x6e\xbe\x5f\xd3\x57\xd9\x4f\x6a\x46\xae\x63\x21\x7e\x6b\x34\xf4\xfc\x46\x45\x00\xbd\xc0\x84\x88\xbe\xdc\x29\xe3\x54\x04\x2e\x7a\xd6\x49\x36\x0c\x29\x23\x27\x4a\x27\x37\x64\x6e\xb5\xb4\xe0\x12\x86\x81\xff\x45\x1b\xf1\xde\x53\x21\x6e\x1d\xc3\x79\xa1\x99\x66\x71\x77\x89\x1f\xbf\x76\x06\x13\x81\x7b\x55\x0f\xbd\xdf\xaa\xea\x9b\x87\xe1\xea\x94\xef\x8e\xe0\xa7\x70\x04\x89\xf1\xbc\x4c\xe5\xa7\x75\x35\x5d\x7c\xfc\xcb\x7b\x45\xf0\xff\x7b\x4a\x7a\xec\xf7\x8a\x67\x74\x19\x20\xcd\x92\x9c\x10\x3e\x0f\xa9\x80\x92\x01\xaa\xdc\x79\xc6\x9c\xc3\xfd\x7e\x40\xdf\x04\x24\xe5\x75\x1c\x1e\xf8\x5a\x20\x82\x50\xe4\xbc\x49\x4f\x99\x0d\x95\x2a\x79\x97\x4d\x56\x9f\xa6\xe3\x87\xeb\x86\xca\x91\xf8\xa1\xb6\x2f\x98\x3c\xf9\xc4\x9a\xda\x92\x3e\xa5\xe4\x4c\xba\x08\xbe\x5a\xf5\x46\xa1\xac\x3d\x8e\x69\x1e\x1b\x5f\xb2\xab\xc4\x78\x67\xde\xcf\x5a\xde\xe5\x71\x8a\x2a\x9f\x90\xe4\xbd\xab\x54\x95\xef\x73\xa4\x8d\xed\xeb\x0d\xa0\x0e\x10\x45\xdc\x47\x61\x1b\xa7\xca\x65\xd4\x64\x11\x91\xbd\xab\x8c\x26\x6f\x90\x30\x01\x8e\xc6\x1b\x2d\xbf\x1c\x3a\x26\x89\x59\x6e\x4c\x82\x50\x15\x90\x56\x62\x98\x41\x36\xdc\x49\xf7\x80\x73\xfa\xaa\xd2\x36\xdc\xa6\x38\x25\x6b\xda\x76\xe9\x6a\x4b\x35\x25\xa1\xed\x2d\xaa\x66\x35\x26\x68\x61\x90\x01\xc7\x0d\xfe\xd3\x5d\x0a\xa7\xb0\x95\x9e\x29\x3c\x98\x61\xbd\xf0\x8e\xe9\x19\x09\xc3\xd8\x24\xce\xd3\x29\x0f\xe6\xb8\xa2\xf4\xcf\x2e\x60\x7c\x90\xcc\xfd\x4c\x09\xc2\x24\xb6\x63\x32\x9b\x4e\xf9\x0e\xc4\x65\x05\xd9\x3a\x46\x7b\x2a\x1e\xd7\x27\xb5\xb5\x8a\x71\x62\x14\x12\xc5\xf9\xbc\x39\x74\xc9\xa7\xb5\x6b\x6f\x1c\x1a\x16\xec\x40\x01\xe8\xac\x12\x61\x3b\x5b\x53\xc1\x78\xbe\xd9\x8d\xb3\x2c\xc6\x8e\x85\x69\xf9\xb1\x82\xe5\x7c\x5c\xe7\xf2\x53\xee\xb6\xa1\x75\x2a\x3d\x58\x26\x90\x31\xe0\xd7\x0a\xc9\xb6\x14\x84\xf1\xc8\x66\x20\xb8\x89\x58\xd3\xd5\x42\x51\x8f\xae\xd6\xe9\x06\xa5\x79\xaf\x67\xa3\x69\x8f\xd2\x3c\xb3\x45\xe3\xda\xd3\x3e\x0e\xd3\x4c\x41\xad\xa8\x31\xe1\xde\x5c\x7e\x57\xdc\x0d\x4c\x18\x30\xb6\xc1\x29\xf7\x79\x15\x3f\x15\x56\xa5\x36\x0c\x6d\x82\xea\x17\xda\x01\x1b\x0a\x50\xfc\x4f\xb5\x72\xf1\x7b\xf4\x08\x45\xfb\xd8\xfb\xdd\xc7\x49\x56\xe1\x10\x2a\xbb\x8a\x23\x75\x4a\x23\x9d\xc4\x9a\x25\xf7\xa0\x71\x4f\xc7\x95\x70\xd4\x71\x6d\xb3\xd5\x35\x11\xbc\xd3\x11\x34\xdc\x69\xd1\xde\x82\x55\x7c\x44\x19\x38\x80\x26\xc9\xc9\xf2\x44\x4b\x7b\xef\x5e\x48\x47\xd9\x24\xb2\x2e\xb2\x93\x22\x25\x0d\xad\x88\x47\xd7\x81\xc1\xc7\x26\x0b\x28\x32\x9e\x9b\xe3\xbd\xe4\x6d\xba\x47\x7e\xed\x0a\x81\x49\x90\x09\x1d\x50\x28\x84\x2a\xc7\x3e\xe9\xad\xee\x4d\x2f\x88\x21\xa4\x89\x5e\xfa\x35\x2d\xbe\x79\xad\xa5\x1a\x1f\x69\xd0\x93\x4a\x21\x5a\x62\x97\xb0\xef\xf1\x9b\x96\x6f\x86\xa7\x79\x77\xf8\x38\xcd\x32\xec\xca\x37\x90\x33\xe3\x39\x5c\xc3\x3e\x86\x4a\x14\x20\x0f\x7c\xa0\xb5\x14\x02\xfa\x1c\xa6\x9c\x48\xf8\xa9\x6b\x7a\x4a\x29\x81\xef\x56\xb6\xe2\xdb\x40\x97\x91\x18\xb9\xdc\x6c\x91\x22\xb1\x0a\x1f\x56\xee\x34\xb1\x64\xf0\x4d\xd0\x77\x66\xee\x15\xaa\x57\x7c\x89\x6a\x2b\xe1\x60\x6d\xda\x9f\xcf\xdf\xc3\x08\x89\xcb\xb3\x3f\x26\xe1\xae\x04\x9d\xbd\x7f\xa7\x32\x9a\x65\xd3\xa5\x2c\x45\x48\x26\x02\x12\xa2\x3b\xe4\x37\x6a\x9e\x65\x89\x09\x58\x66\x19\x29\x0c\xa8\x43\x28\x49\xff\x44\xd1\xd7\xbf\x5d\x43\xd6\xde\xdf\xcc\xa3\x9e\x4d\x46\x54\xe6\x54\x4e\x9f\x34\xe6\xc2\x80\xf7\x55\x90\xfc\xb9\xf4\xb9\x27\x15\xc3\xe1\x47\x4a\x56\x06\x4a\x76\x98\xeb\xf7\x34\x5f\xf5\xaa\xce\x8b\x3e\xc1\xe3\x44\x99\xf1\x12\xc1\x20\xb1\xb2\xcf\xd3\x39\x0a\xe8\xcb\xa5\x96\xc2\x0f\x1d\xa1\xb3\x1b\xe7\xd8\xcd\x96\x27\xf9\xfe\x2d\x4d\x64\x47\xf9\x3e\xe8\x3d\x3d\x69\x5e\x60\xe1\x9f\x2b\x94\x66\xc0\xce\x35\x45\x0d\x7a\x1b\xdc\x00\x3e\x1f\x5b\x5b\xb0\x48\x2f\xce\x1e\x68\x2e\xce\x80\x0e\x51\xb1\xd9\x11\x39\x25\x89\x45\xe3\x3c\x4b\x60\x45\xb9\xb8\xe0\x85\xfc\x3d\x54\xfb\xb3\x96\xef\x84\xbc\x3b\xb1\x7b\x2e\xce\xc0\x58\x82\x7b\xe4\xa2\x56\x4d\xd7\x2c\x32\xd6\x2a\x60\x8d\x57\x4c\xd2\x7b\xc4\x13\x38\xd7\x31\x0b\xf1\xa8\xff\x1a\x83\xe6\xbc\x8b\x5d\xdd\x10\x82\x14\xac\x3d\xa9\xd7\xc9\x11\x42\x84\x38\xca\x6b\xb9\xe6\x50\xd8\xbd\x89\x27\x86\x83\xf2\x82\x96\xb6\xbb\x80\xc1\x05\x14\x7b\x63\xa2\xb6\x33\x3f\xdf\x4c\xcb\x73\x78\x84\x1b\x82\x70\xc4\xe6\xeb\xaa\x54\xca\x64\x2b\x36\xed\x41\x43\xf4\x87\xba\x92\x83\x44\x05\x17\x75\xa5\x0e\xa5\x60\x97\x83\x9e\x8d\x32\x40\x6e\x9c\x37\xa1\x83\xde\x01\x4d\x81\xbc\xa3\xce\xb6\xbd\x3c\x45\xc7\x63\x36\x7e\x70\x36\xc2\xca\x6c\x58\x19\x05\xd9\x28\xcb\x13\xc8\xa6\x63\xab\x66\x80\x0a\xde\xb0\xbe\x33\x56\xe4\x7f\x28\x3c\x8f\xf7\x4e\xcb\x9b\xb1\x70\xfa\x2a\xce\x42\x5a\x0f\xa7\xce\x96\x60\x64\x0e\x05\xa3\x7c\x44\x49\x95\xb6\x81\x92\x6a\x71\x79\xa1\x42\xe2\xf4\x39\x15\xf5\xbf\xec\x20\xe8\xee\x50\x92\x84\xdf\x6a\x69\xcb\x52\xf6\x9a\x47\x38\x75\x5c\x95\x1a\xd7\x34\xc5\xf5\x8d\x3a\xc9\xd4\x5e\xb0\x1c\x90\x84\x8a\x87\x18\x32\xbb\x8c\xdf\xd4\x91\x38\xc2\x98\x77\x2f\xcc\xbb\x1f\xb6\xbc\xe6\xd4\x0f\xeb\x6c\x2f\xed\x37\xf2\x60\xd9\x84\xe5\x83\xf5\xc1\xc9\xbd\x96\xc7\xdd\x82\x54\x21\x49\xbb\x82\xf9\x24\x36\x4d\xf3\x84\x0d\x53\x1c\xee\xda\xc9\x8d\x9e\x2f\xb4\xf3\xd1\x68\x8c\x8c\x8b\x01\xb4\x2d\x7f\xf6\x9f\x71\xad\xeb\xae\xc9\xba\xc4\xe8\x58\x58\x5c\xf0\xfe\x9b\xde\x8b\xb3\x0e\x6d\x03\xf6\x28\x9f\xa0\xc2\x1b\x57\x09\xe9\x5b\x8a\xf8\xdc\x33\x49\xd6\x89\x4d\x02\xe0\x29\x1e\xd6\xd5\x96\x6a\x73\x68\x31\x59\x7b\x28\xb3\x11\x8d\x3e\x9e\x66\x45\x17\xc5\xa7\xaa\xfe\xcf\xc9\x4c\x17\xbe\x18\x08\xbc\x99\x9b\x8f\xb3\x01\x88\x48\xa5\x1d\xc1\x11\xfd\xab\x36\xdd\x5d\x8e\xb5\x6b\xd5\x95\x8b\x4b\x64\xae\x3d\x00\xf7\x2a\x7e\x97\xfb\x18\x5b\xba\x1a\x0a\xbb\xd5\x40\x86\x44\xcb\x21\xfe\x35\x80\x26\x28\x47\xf9\x1f\x9f\xa2\xfc\x00\xbb\xee\x2f\xad\xed\x51\x8f\x26\x1d\xee\xa1\x6f\x60\x7d\xa2\x42\x81\x3a\x6f\xe2\x7a\x44\x53\xa7\xbc\x50\x84\xc9\x6c\x35\x8c\xe0\xe0\x64\x4b\x09\x5c\xc1\x49\x1d\x4d\xfc\x1d\xca\xd6\x72\x43\x23\x60\x19\xa7\x2a\x42\xec\x0a\x6c\xca\xc6\xe8\x38\xa8\xbf\xab\x96\xe0\x11\xfd\x20\x6d\xdf\xb2\xa8\x98\x8b\xf2\x3e\x51\x12\x70\x9f\x54\xf0\x07\x81\x19\x71\xa2\x2d\x92\x63\xbe\xf1\xf2\x3d\x4d\x75\xbf\xa4\x9c\x51\x46\x79\xda\x0d\xe1\xb3\x21\xc6\xd8\xdb\x55\x75\xf6\x86\xaa\xb4\x6b\x4f\xa8\x34\xce\xa3\x5e\x4a\xce\x80\x28\xa9\xff\x1c\x0d\x41\x7e\x53\xf8\xc2\xfd\x5f\x29\x35\xab\xbf\x2a\x74\xcd\x23\x88\x82\xae\x09\xb9\xc6\x82\x50\x80\x83\x42\xac\x83\x29\xc2\xdb\xb0\xe4\x03\x9e\x03\x5a\x8c\xa7\x26\x12\x11\x92\x3f\xe5\xc0\x1e\x91\x8a\x73\xb9\x99\x9b\x63\x18\xee\xad\x4a\x39\xbf\x4e\xf5\xa9\x1f\x44\xa8\x8e\xb2\x72\x42\xa1\x4e\x00\xe6\x26\xc9\x96\xf9\xcc\x56\x2a\xcd\x7c\xf3\xe0\xcc\xc2\xe7\x94\x30\xfa\xbf\x57\x24\x31\xe6\xe1\x70\x64\x8e\x91\x12\x87\x5e\x0f\xe0\x40\x39\x0f\xb3\x6b\x03\x18\x4f\x4c\xa9\xb5\x96\x17\xd9\x3d\x86\x94\x57\x8a\x3d\x34\xbd\x10\x89\x70\x50\x2b\x7b\x48\x19\xd3\x60\x96\x70\x87\x18\xc7\x0f\xa8\x32\xb8\xa7\x3f\xc5\x1c\x44\x4e\x05\xaa\x0c\x3e\x7d\x8c\x7a\x4f\xd2\x27\xa3\xac\x42\x95\x9a\x44\x64\xe4\xbd\xc2\x5b\xa1\x7e\xda\xf2\x74\x67\x93\xa6\x36\x4d\xa9\x5e\x4e\xd7\xca\x00\x67\x45\x04\x9c\x54\x44\x9e\x9b\x6b\xae\x04\x21\x94\xec\x24\xfa\xd6\xa5\x25\x49\x0f\x86\xd6\xf4\x00\x76\x62\xe5\x92\x2b\x4f\xd0\x6c\x65\x8d\x0f\xcd\x9a\xb9\x46\x25\x4c\x49\xe3\xfd\xc4\x4b\xec\xb2\x35\x22\x5a\x8d\x2d\xfc\x6e\xe1\x7d\x0c\xef\xb6\xfe\xfe\x03\x0a\xd8\x23\xdb\x0b\xe2\x8e\x89\xba\x86\xf6\x55\xc4\xd5\x6f\xe3\xd1\xf2\x9b\x8a\x1a\xd7\x8a\x49\x1e\x56\x66\x14\xc2\xc3\x75\x45\x73\xc5\x58\xd4\x4e\xeb\xe7\x50\xb0\xc1\xcc\x39\xae\x88\xce\xdf\x2a\x7c\x72\xf1\xad\x16\x55\xb0\x1d\x88\xd2\xe9\x9e\xb3\x97\x6d\x2d\xa2\x32\x18\x3f\x4a\x47\x0e\x2a\x95\x1f\xa8\x92\xcd\x3b\x45\x95\xde\x78\x70\xc6\xb7\x81\x55\x19\x46\xc1\x19\x4e\x2b\xa7\x06\x86\xea\x29\xa7\x2d\x39\x68\xfe\x56\x3b\x3a\xfe\xdf\x3a\x6c\x3d\x45\x58\x3d\x6c\xb8\x1b\x95\x61\xb3\x76\xbc\x47\xc5\xa7\x67\xb5\x86\xe3\x5f\xd0\xa5\x09\xd9\x52\x9d\xfe\x18\x33\x6e\x63\xd3\x14\x47\x89\x6d\x1b\xed\x21\x2e\x6a\x5a\x94\x60\xfb\x72\xa1\x98\xf8\xb7\x71\x93\x82\x2e\xf5\x85\xfe\x5d\x00\xd2\x61\x79\x6e\xa7\x4c\x8d\x1b\x47\xae\x7a\x0a\x77\xaa\x91\x8d\x14\x8f\x8e\x6d\x55\xc5\x9f\xca\x1f\x82\x79\xd7\xee\x76\x79\x44\x1b\x33\x17\x00\x9e\x27\xb4\x72\xfe\xe3\x6d\x0f\xff\x5c\xaf\x28\xc4\x29\xb9\xdb\x0f\x10\x9a\x8b\x9c\x8e\x92\x59\x62\x52\x14\x2b\x7b\x2a\x2d\x9f\x91\x09\x08\xf7\xc4\xa1\x0c\xf2\xa5\x3b\xc8\x97\xf8\x8d\xcb\xd7\xed\x68\x9c\xad\x4e\x6b\xf9\x1e\x85\xb8\x7a\x94\xce\x58\x86\x41\xd1\xb0\x60\x37\xfb\x91\xb7\x94\x0a\x42\x13\xbd\x8a\xf4\x06\xb1\x3c\xe3\x15\xf8\x4d\x5d\x60\x9f\x04\xe9\x52\x40\x66\x73\x33\xce\x6c\x93\xee\x11\xbd\xbc\x3b\x95\x06\xee\xd3\xca\xa5\x5a\x53\xbf\xc5\x59\xf8\x36\x0d\x15\xbe\x06\xf4\x3b\xbc\xce\x3c\x63\x39\x8e\xb2\x41\x1c\xf6\x03\xcb\x88\x64\xec\xed\xd3\x6b\x8d\xdf\x79\x51\x5e\x3b\x9c\x65\x3a\xcc\xb3\x5e\xbc\x22\xde\x17\xec\x85\x4a\x57\x24\xbe\xa8\xbe\x9e\x9e\x95\x83\x57\x66\x6c\x73\x73\x52\xb0\xd6\xf2\xae\x24\xd1\x38\xbf\xb9\xa6\x00\x69\x3d\xdb\xb5\xa3\x8e\x4d\xa6\x14\x11\xe1\x4f\x0b\x0f\x3b\xff\x80\x42\x12\xd4\x61\xde\x56\x5c\x89\xf2\x97\x6c\x62\xca\x24\x02\x4a\xc2\xce\xa7\xde\x75\x35\x1a\x9a\x3c\x78\x94\xf8\x82\xfc\x0f\xca\x36\x79\x18\x8f\x46\x06\x35\x27\xfc\x48\x43\x19\x8d\x4d\xd6\xd1\x88\x91\x43\xac\x54\xa9\xfb\xe1\x7c\xbf\xa1\xce\xfd\x1b\xaa\x11\x91\x94\x91\x77\x43\x99\x62\x5d\xd4\xe6\x9e\x17\x5d\xf1\xa7\x67\xc7\x79\xb6\x0a\x8b\x1c\x57\x76\x29\xff\x50\x7c\xb5\x34\x56\x00\x25\xef\xcd\xf3\x98\xfa\x48\xcd\x39\xae\x14\xa9\x84\xf2\x6a\x90\x32\x3f\xde\x56\x56\x24\x27\xd5\xd1\x7c\x45\x5d\x26\x09\x64\x3d\xa9\xce\x70\x10\x11\xd1\xd3\x7a\x93\x4e\x54\x59\x54\xb4\xdd\xb8\x2a\xbe\x73\x41\x04\xd8\x16\x0b\xf4\x16\xfd\x0a\x16\xcc\x34\xd0\xc8\x98\x0c\x8d\x36\x8d\x04\xbf\x59\x53\x84\xed\xd7\x69\x7b\x13\x2b\x2a\x35\x65\x18\xd1\x8b\xa4\xe5\x8f\x0a\xef\x92\xfa\x89\x16\x92\x12\x10\xb9\xdb\x06\x7c\x4c\x77\x43\x41\x78\x5f\x31\xdd\xb8\x93\xba\x5e\xac\x70\x47\xe8\xbe\x2b\x52\xee\x18\xc6\x6b\xee\xf1\x8c\xe3\x88\xc5\x0b\xbd\xa4\x72\x45\x6c\xf9\x09\xd5\xb4\xcc\x6c\x12\x8c\xb0\x81\x38\xf6\xae\x67\x2c\xb3\xb3\x8b\xc3\x1a\x94\xdf\x22\x49\xc3\xd6\x02\xe5\xe2\x0c\xd5\x90\xa0\xef\xcc\xf3\x4d\xf8\xcd\x0d\xa5\x76\xa9\x3a\x0d\xa4\x3f\xb9\x9b\xbe\xd5\x25\xf0\x7b\xb7\x88\x42\xbb\xc0\xd8\x7b\xbf\x5f\xc4\x25\x8a\xcc\xa5\xb6\x58\x7c\x8f\x7e\x0a\xad\xa8\xb7\x0a\xe5\xaf\xf1\x27\x4a\x1a\xe1\xaa\x2b\x4f\xa6\x99\xe9\x04\x61\xf0\x2a\x13\x77\x10\x3d\xa1\x4e\x22\xb3\xd7\x9f\x17\x57\x5a\x95\x5e\x6c\x32\xb0\xe9\x2e\x5f\xc5\xfb\x50\x4f\x84\xdb\x18\x37\xdc\x08\xd2\x0e\x34\x39\x38\x21\xc2\x3f\xdc\x69\xa9\x87\x79\xba\xf0\x5c\xc7\x1f\xa2\xba\xc2\x68\xd2\x07\xb6\xea\x57\x86\x36\xb1\x3b\x3d\xed\x6c\x0b\xb8\xb3\xf1\xd5\x59\xbf\xde\x5e\x5c\x14\xbb\xd3\x67\xda\x9e\x6f\xb4\xa9\xe2\xda\xf5\x4a\x96\xd2\x35\xc9\x6e\xf5\x6d\xdb\x19\xf4\x2f\x46\xfe\xbe\x37\xc8\xd5\x0f\xf4\x1e\x8e\x57\x56\x5c\x4b\x85\x79\x20\xbf\x72\x62\x40\x81\x10\x32\xb7\xeb\x85\x52\xb2\x3d\xad\x0f\xe1\x0e\xb6\x7b\xa7\x53\xec\x48\xdd\x17\x55\x4f\x1c\xe8\xbf\x1e\x22\x58\x8d\x3a\xe2\xd7\x13\xc8\x9e\x72\x4f\x24\xf1\x1e\x96\x18\x14\x5a\x58\xc3\xb9\xaa\x9d\xa8\xd3\x96\xb0\xbd\x01\x1a\x04\x5c\xda\x6b\x69\x10\x8a\xca\x04\xc9\xea\x3d\x88\xd1\x05\x41\x7d\x67\xa7\x06\x1a\xdf\x52\x56\x20\x6c\xb0\x89\x71\xd8\xac\xe3\x35\x0f\xe3\x50\xac\x49\x1d\xad\xd9\xc1\xae\xd7\x8b\x07\x45\xc0\x66\xd4\x31\x69\x6a\x7a\x31\x3e\x5a\x01\x8e\x08\x8b\xda\x0f\x74\xb0\x12\xd0\x9f\x89\x2d\x6f\x43\xf9\xf5\xd6\xb5\xb6\x7b\x41\x3a\xce\x33\xf8\x5f\x03\xbd\xb4\xe9\x5b\xf2\xd9\x30\xce\x53\x13\xa1\xee\x8d\x73\x83\xb5\xdc\xc4\xf6\xd4\x2d\xc3\xe2\x19\xf2\x62\x04\xec\xe8\xff\xd7\xf6\x14\x95\x71\x1c\xae\xa6\xd9\x6a\x62\x23\x3b\xa5\xce\xba\x9f\x16\x5b\x5b\x64\x22\x7a\xb2\x47\x0b\xbf\x64\x5f\xa0\x6d\x1b\xe1\xfb\xe1\x02\xf8\x55\xc9\x8c\x95\xad\xb0\x36\x65\x79\x1d\x5a\xb3\x38\x4d\xfe\xb2\xa5\x7a\xcc\x47\x0a\xc5\x4f\x39\x82\xa4\x0e\xa7\xdc\x3d\xca\xf6\x64\x46\x96\x77\x82\xa1\x15\x1f\x05\x65\xd1\xf9\x3c\x1f\xe5\x1f\x2b\x43\xe6\x1f\x20\xfe\xc6\xfa\xdc\xa0\x56\xac\x74\xbe\x1b\xfb\xe6\xcb\xe3\xb2\x4c\xe7\x70\x2a\xb0\xfc\x2b\x62\xbf\x7b\x5a\x8f\xfd\x02\xb6\x45\x41\x3e\x94\xc7\x20\xbe\xfd\x23\x1a\x2c\xfc\xd1\x8f\x94\x5d\xf7\x11\x54\xbb\x05\x0e\xbf\x35\xbd\xde\xbb\xb7\x99\x66\x49\x3c\xe4\x22\x13\xf7\x0e\x30\x73\xa4\x91\x20\xa1\x67\x3c\x16\xce\x01\x7b\x4d\xd2\x33\x11\xdf\xc9\x6a\xaa\xd0\x47\x3c\x86\x0c\x98\xf5\xa2\xf8\x4d\x25\xe5\x33\x69\x9a\x8f\xf8\xa9\x23\x57\x03\xdc\x0b\xd8\x21\x28\x4f\x63\x65\x1f\x75\x65\xba\x28\xce\x88\xae\xa9\xcb\xe1\x0d\x27\xe8\xbe\xee\x3c\x66\x22\x9b\x67\x89\x29\x37\x7b\x2e\xcf\x21\x78\xfc\xb9\x42\x5b\xfc\x7c\xb2\x05\xbd\xd0\x8c\x23\xa0\x2e\xf1\x78\xce\xd2\xa3\xe6\xd7\x0a\x1b\xf2\x4a\xde\x0b\xba\x81\x09\xb7\x39\xcf\x09\x4b\xa8\x05\x13\xd2\xb6\xc1\x1d\xbe\x96\xee\xf6\x6d\x69\x35\x2c\x2c\x2e\x34\xf7\xcd\x3f\x53\x3e\x43\x44\x23\x67\x15\x62\x9a\xfb\xfb\xe2\x34\xe6\xfd\x17\x2f\x2a\x01\x85\xab\xc0\x4b\x21\x41\xba\x44\xfb\x3f\xb6\xa8\xa3\x74\xb6\xe0\x01\x72\x1f\x0d\x7b\x1d\xc7\x38\x6c\x40\x8e\x53\x07\x63\x7d\x06\x09\x2a\xfa\x83\x0f\xb7\x95\x5a\xe6\x9b\x78\x7c\x48\x88\x36\x34\x91\x12\x6d\x53\x04\x6c\x97\x90\xea\x49\xcf\xdf\x17\xd6\xb7\x11\x9e\x01\x17\x7c\x0b\xad\x50\xe5\x2c\x24\x8d\xa3\x27\xd7\xbc\xad\x59\x3a\x8a\x97\xac\xd6\x62\x3e\xaa\x3d\x27\x8f\xaa\x42\x5c\x62\x43\xea\x98\xa5\x3b\xcb\x87\x24\x9d\x7a\x8f\xb0\xbb\xa1\x70\x15\x8c\x69\xc1\x39\x08\xb3\x19\xbc\x86\xa9\x23\x40\x1d\xd3\x6d\xa7\x48\x60\xc8\xa4\x8a\xe5\x96\x70\xc0\x3d\x4a\x15\x51\x40\x9d\x9f\x68\x37\x94\x6f\xde\xd6\x13\x64\x11\x7b\x39\x55\xad\x10\x58\x5c\xc5\x63\xc0\x24\x67\x49\x6a\x7c\x7a\x53\xa1\xe2\x12\xdb\x5d\x0a\x6d\x8a\xa4\xa1\x92\x69\xa2\xe4\xf4\xaf\x5b\x9e\x57\x01\xb7\x37\xc1\x03\x7b\x97\xed\x60\x30\x70\xde\xde\x2c\xd9\x50\x54\xf4\x1b\xb6\xa6\x0d\x2f\xce\x1e\x68\x06\x51\x37\xcc\x7b\x12\x45\x22\x6c\x3a\x82\x61\xe7\x37\x75\x2e\xeb\x9d\xc4\xb0\x4f\x2b\x0e\x90\xcf\x0a\x7f\xb0\x7c\xa6\x9e\xd3\x8a\xc9\x6c\x32\x20\x7d\x07\x67\xb4\x0b\x25\x10\x7e\xdd\xf2\xb9\x93\x86\x33\x4f\xa9\x16\xf0\x51\x5d\xa6\xe0\xd0\x14\x73\xf2\xa6\xd2\x7a\x4e\xec\x20\xc7\x9c\x78\x48\xb5\x4d\x51\x93\xc0\xd8\x5f\xa7\xde\xa3\xeb\x77\xc2\x04\xb3\x7c\x4e\x78\x1a\x5c\x74\x70\xa9\x8a\x03\xc7\x9e\xd2\xea\xb6\x26\xcd\x58\x47\x0a\x18\xa9\x13\xda\x66\xe7\x4f\x14\x3b\x83\x75\x3b\x84\x4e\xff\xa8\xc7\x3f\xfe\x06\x5a\xe4\xa8\xed\x9c\xd2\x96\xa3\xa7\xea\x48\x0c\xe9\x6f\xb0\xce\xb4\xf3\x42\x75\x93\xf6\xe7\x0a\xaa\x9b\x44\xe9\x23\x1e\x33\xb4\x7d\xcd\x85\x12\xdf\x64\x02\x24\xd7\x70\xd7\x3c\xc7\x15\xcc\x51\x3c\xb4\x7b\x98\x29\x08\xf9\x7f\x5d\xdb\x17\x1f\xbb\x57\x28\x3f\x02\xc4\x4f\xa8\x40\xdc\x57\x11\xdd\xb7\xbe\xa8\xb9\x91\x17\xb6\x76\x57\x0f\xce\x3c\xdf\x9c\x9f\xff\x1c\xce\x68\x91\xce\xc5\x8f\x20\x9e\x84\x36\x3e\x1e\xeb\xf6\x35\xdf\x57\xc6\x8d\x70\xed\x08\xc6\x63\x98\xf8\xff\xa4\x50\x1c\x2d\x76\xe9\x64\xaf\x9c\x96\x66\xa7\x23\x4e\x45\x4c\xb6\xb3\x4d\xa7\x3f\xb6\xc7\x5b\x2a\xfe\xf9\x21\xf6\x40\xd1\x75\x29\xf7\x2d\x54\xa2\x1a\x6b\xe5\x2e\xcd\x55\x5f\x5d\xcc\xbc\x40\x07\x39\x32\xeb\x6b\x38\x6a\xc5\xd4\x5a\xed\x93\x57\x51\x2f\xc1\x9f\x6d\x9b\x90\xac\x9f\x9b\x6b\x9a\x80\x85\xe1\x25\x34\xf7\x2e\xd2\x17\x38\x93\xd6\xe6\x34\xc8\x0d\x77\xb6\xbd\xde\xc7\xca\xd0\x8c\x48\x11\x12\xe3\x78\x49\xa1\xf2\xbe\x8b\xb9\x25\x22\xef\x72\x5e\xc5\xdd\xae\x49\xbd\x6d\x28\xc7\x5c\xb4\x61\x4a\xfc\x55\xd3\x13\x1c\x99\xd0\xac\xa6\x01\x3b\x2e\x73\x05\xa8\xf0\xf5\x96\x3b\x9e\x26\x97\x99\x24\x4b\x81\x41\x47\xc9\xfa\x51\x94\x3c\x10\xa9\x5d\x41\xd4\x05\x48\xd0\x23\x54\xac\xd2\x08\x6e\xe4\x48\xef\x4f\xa0\x62\xe6\xe6\x16\x49\x93\x25\x88\xba\x0e\x8e\xe3\x18\x8a\x5e\xcc\xa9\x26\x0d\x98\x6d\x5a\x93\x84\x81\x65\x12\x89\x33\xd5\x2e\x1f\x13\x36\x95\x5b\x8a\xde\xfd\x1e\x0e\x27\xb1\x40\xab\x41\x58\xd9\x43\x5d\x1b\xba\xbe\x25\xea\x41\xe8\x5b\x4a\x20\xd2\x50\x46\xd7\x35\x62\x64\xa3\x60\x9c\x4e\x79\xf9\x4d\xde\x02\x10\x01\xde\xc3\x04\xc0\x69\x3c\xdd\x96\x10\x2c\xb3\x21\x2b\x8a\xe2\x7c\x7b\x43\xa1\xc9\x27\x5b\xb8\xcf\x36\x6d\x9a\x05\x23\xe3\x50\x60\x52\x87\xa5\x09\x2c\xdc\x22\x5f\xed\x1a\x27\x76\xd9\x46\x59\xfa\x40\x57\x9d\x47\x1d\x0e\xd7\x5a\x36\x21\x16\x8b\x97\x29\x6d\x93\xe8\xa1\x3f\xdc\xd5\x97\xc6\xb7\xef\xc8\x9a\x60\x64\xc1\x3d\xd1\xa6\x18\xcc\xa0\xc4\x16\x2c\xc3\xe8\x6a\x97\x61\x1c\xf7\xe0\x51\x49\xcf\xeb\xf7\x9f\xa0\x0d\xc2\x11\x97\xe7\xb5\xa1\xbf\x2b\xf7\x7c\xc1\x0d\xde\xd0\x24\xc9\xaa\xe2\x3c\x72\x05\x5b\x12\x47\x85\xcf\x4d\x82\x30\x9c\x52\xf5\x7a\x66\xaf\x8a\xb6\x62\x43\x0c\xe2\x77\x7d\xac\x24\x0f\x3a\x36\x18\x54\xd0\xe6\x67\x54\xe3\xfa\x8c\xfa\xfa\xd0\x9a\xd4\x52\xbe\x84\x64\xe4\xb4\xde\x58\x6f\x28\x9b\xa4\x1b\xca\x50\x64\xb2\x32\x7b\x70\x86\xdc\xfe\xdc\x2a\x10\xc1\x82\xf2\x33\x62\x31\xbb\x35\xdc\x7f\x71\xa1\x69\x3a\x71\x9e\xe1\xe6\x9c\x25\xe6\xa2\xb7\xaf\xf1\x2e\x3a\xb5\x09\x6a\x9a\xe5\xe3\x00\xed\x20\x57\xb4\x29\xef\x58\xca\x4e\x12\xa3\xaf\xc4\x49\x12\x48\x43\x48\x04\x84\x7c\x0a\xb7\xab\xed\xb7\x73\x3e\xca\xb1\xb9\x4e\x02\x3f\xe6\xe7\x17\x9a\xc1\x68\x6c\xd8\xe9\xa1\xa2\x35\xc8\x6f\x5a\x5e\x18\x70\x6c\x92\x2c\xe8\x06\x63\x13\x65\xe9\x2e\xda\xf2\xb5\xb0\x1c\xb6\xa1\xeb\x74\x93\x22\x44\x07\x29\xc6\x16\x5b\x62\xfb\x30\xf3\xdb\xa8\x06\xdf\x6d\x29\xb5\xc8\x9f\x20\xf3\xe4\xa4\x35\xcd\x48\x61\x5c\x40\xea\x0d\x6f\xb7\x8e\x28\x17\xe7\xdb\x35\xe4\x90\xfc\x46\x09\x3d\xff\x41\xe1\x59\x7d\x7f\xe0\x1d\x13\xe3\x34\x1b\xc7\x0c\xca\x72\xac\x85\x45\xf7\xba\xce\xe5\x34\xcb\x47\x65\xe6\xef\x9a\x16\xa8\x67\xf1\xeb\x9a\xa7\xf8\x7c\xb3\x9f\x58\x86\x0a\x20\x65\xd7\x2a\x68\xac\xab\x8e\xca\xe7\x4d\x25\x7d\xbe\x64\xc7\xd9\x43\xb4\x5d\x0a\x9e\xb2\xe1\x7c\x45\xaf\xd3\xb9\x21\xd0\xe4\xf2\xb0\xe4\xd7\x2d\x6f\x66\x8b\x0d\x11\xa5\xba\x8f\xf0\x23\xfc\x45\xad\x0a\x2d\x64\x6c\x12\xa2\x53\x88\xf1\xd9\xc7\x34\x50\xfc\x5a\x29\x9c\x07\x51\xcf\x1e\x62\x71\x04\x65\xd0\xe6\xdc\xda\x94\x37\x7d\x66\xc6\xc3\x98\x49\x77\x8e\xfa\xe3\xce\xd1\x2a\x18\xdc\x84\x3d\x52\x92\x15\xa4\x88\x5a\xfa\x17\x95\xf4\xf8\xcd\x96\xaf\x0e\x41\x46\x5e\xe0\x24\x5b\x8f\xac\x83\x33\x2f\x35\x83\x24\xb1\xa1\x5d\x36\x8c\xc8\x94\x74\xd2\xa7\x10\x93\x27\xc4\xbe\xf9\x66\x98\x77\x97\x68\x33\x46\x14\xf2\x7e\x4b\x29\x59\xbd\xef\xf6\x45\xb2\xd2\xc1\xf7\x22\xa4\x81\x49\x36\xbf\xae\xc8\x49\xa4\x79\x28\xce\xd2\xc8\x07\x91\xc1\xf1\xeb\x9a\x53\x6e\xa1\x69\x0f\x0d\x83\x4e\x20\x40\x35\x19\xb0\x29\x6d\x84\xf7\x79\xe9\x4d\x45\x59\x62\xc7\x89\x8d\x6c\x9e\x04\x65\x1e\x3c\xef\x77\x67\x4f\x08\x9a\x6c\x32\xcf\x1e\x20\x5f\x30\xe0\xbe\xb1\x75\xfd\x85\xea\x58\x4c\x2b\x97\xaa\x0a\x0b\x3e\x8e\xba\xb6\x67\x7b\xe4\x52\x2e\x94\x98\xf2\x41\x20\x2a\xbe\xd8\x52\x0c\x96\x5b\xc4\x1f\xe2\x7f\xa8\x78\xda\x1d\x53\x6a\xab\x7d\xdb\xdb\x43\x13\xdc\x69\x47\x95\x93\xd4\x01\xeb\x1c\x92\xf8\xdf\x23\x22\xc3\xa6\xf0\x96\x4e\x18\xd6\x95\xf1\x15\xab\xb7\xe3\x7c\x81\x98\x08\xb2\x11\x16\x8a\x92\xc9\x4f\x03\x2b\x0d\x78\x84\xc6\xd2\x8d\xf1\xfd\xb1\x4d\xdd\xe1\x3f\x56\xab\xb5\x4c\xb5\xfd\x41\x12\xe7\xe3\x86\x86\x9b\x30\x0d\x46\x2a\x25\x75\x15\xbe\x6e\x1c\x65\x49\x1c\x22\xdb\x42\x5c\x70\x5d\x01\x9f\x1e\xd2\x4d\x9a\x9b\x15\x87\x10\xf0\x34\xc8\x19\x75\x37\xd5\x22\xd8\x85\x82\x16\x07\xc6\x67\xba\xed\x49\x76\x6f\xeb\xea\xd8\x79\x55\xa1\xff\x16\xe2\x04\xf1\xae\x52\x2c\x9a\xd3\x64\xa1\xe8\xcc\x2d\x5e\x74\x92\x99\x6f\xbb\xc3\x66\x18\xa7\x59\x10\xda\xdd\x9e\x03\xc2\x4e\x6f\x60\x9d\x6d\x14\x4a\x8a\xbe\x50\x2e\x5f\xeb\xca\x5d\xf1\x3a\x9e\x35\x7e\xe7\x14\x4d\x23\xf9\x23\xba\x79\xd4\x70\x7e\xa0\x24\x68\x7e\xa5\xed\xb3\xae\xb4\x1b\x3f\xa4\xfe\x6c\xb3\xa5\x05\x32\x2e\xd0\x7e\xa8\xcb\xa1\xce\x19\xc9\x9b\x9d\x7c\xac\xdc\x21\x4f\x60\x7e\x60\x9d\x9f\x9f\xa0\x10\x2c\xce\x34\x3b\xb6\x1f\x27\xf6\x21\x27\x2a\xf0\xfb\x4f\xd3\x20\x63\xbd\x9c\xa0\xc4\xc5\x59\x83\x1c\x9c\xd1\xda\x2e\xb3\x9e\xd2\x5e\xfe\xb8\x83\xb8\x96\x37\x2f\xf4\xce\xba\x23\x38\xc9\x3d\x2f\x4e\x52\x70\xcf\x9a\x58\x6f\x3d\x3d\x21\xe9\xf7\xe2\xc2\x0e\x8c\x82\x58\x25\x96\x7f\x8e\x31\x85\xa8\xa9\xe0\x82\x1b\x4e\xb7\xe5\x13\x8c\x35\xe2\x82\xbf\xf6\x9d\xdb\xee\x30\xb0\xcb\x82\x29\x17\x1c\x3d\x5d\x8a\x40\x77\xfc\xae\x90\x06\xa3\x71\x18\xf4\x57\xd1\xd6\x44\xca\x7f\x18\x45\x2b\x7e\xa3\xd4\x2d\x23\xbb\x62\x12\x6c\xb1\xb2\x1a\xcb\xab\x91\xf3\xcd\x8b\x0e\x04\x69\x9a\xdb\xf4\x31\x05\x61\xde\xa4\x51\x56\x66\x69\x7c\x2d\xd7\x5a\x5e\x3b\xed\x24\x7e\x57\x95\x08\x16\x9c\x3f\x7e\x39\x27\xb0\xb4\xbf\xdf\xf2\x86\x0c\x7c\xf8\xf2\x27\x68\x73\x46\x90\xf3\x37\xde\xf0\xe1\xf2\xbf\xd5\xb0\x94\x8f\x78\xae\x55\xa4\xf9\xa5\xa1\x3d\xc9\x3e\xd9\xdf\x8c\xac\x15\xbc\xa2\xe0\xd1\x14\x9f\x52\xfb\x66\x2d\xe7\x61\x64\x13\xd3\x09\x2d\xc8\xb9\xa8\xa3\x31\xbf\x0a\x21\x3d\x7a\xe6\xbc\x95\x9e\x9a\x08\x4e\x16\x67\xca\xa8\x7b\xc4\x3f\x27\xac\x5c\x9d\xeb\x79\xbc\xc0\x28\x8e\xe2\x71\x1c\x06\x36\x05\xe7\xcb\x95\x3b\x9d\xaa\xc1\x45\x15\x0f\x1f\xc7\x0f\xa3\x92\x78\x16\x9b\xa3\xb3\xc4\x9b\x9b\x73\x23\xa8\x98\x0d\xb7\xeb\x2c\x9a\x33\x6b\x23\x33\x80\xd4\x07\x6b\xd4\xd1\xa8\x8b\x5e\x5d\x8d\x65\x48\x27\xef\x74\x20\xe6\xd8\xf0\x34\x5d\x88\x4a\x88\xe5\x53\x4d\xa9\xac\x9f\x18\xe8\xce\xe2\xa1\x1f\x6f\xf9\x48\x70\x52\x82\xa4\xcc\x56\xc7\x26\x64\x34\x75\x6d\xa7\xa6\xda\x1e\x5f\x69\xf8\x62\xc5\x61\xda\xbd\xf8\xb5\x4a\xef\x06\x65\xfa\x64\x4d\x42\x7f\x8a\x34\xf3\x0e\xfd\x29\xbf\xae\x1b\x9e\xb4\x0b\x3e\x6c\xc3\xf9\x16\xb1\xee\x9d\xd8\x7e\xbb\x6c\xdf\xa6\x66\x64\x95\x75\xd0\x69\x6d\x1d\x74\x7a\xe2\xcc\xdf\x37\xdf\xcc\x92\x60\x34\xe5\x61\x54\x40\x6d\x88\x2c\xbb\x36\x44\xf9\x9c\x62\x06\xb2\xc6\x23\x8b\xd0\x49\x99\xc9\x53\x90\x2e\x4c\x3c\x31\xe7\x45\x33\xb4\x61\x48\xf9\xb6\xab\x6e\x96\x17\xc8\x5d\xc9\x96\x82\x17\x9c\x57\x61\x7e\x3a\x34\x2b\x0d\xcd\x6a\x3c\xa7\xe5\x99\xce\xa9\xb6\x5a\xdc\x8d\x1b\x1e\x8a\xc3\xd5\x66\xb1\x53\xaf\xd5\x98\x71\x8a\x31\x28\x70\x6e\x47\x6d\xde\x49\x28\xaa\x2e\x85\x52\xde\xd6\xac\xca\x15\x1b\x96\x4f\x87\xa8\x61\xae\xd0\xcc\x5b\x80\xec\xec\x1e\x69\x3b\x0a\x50\x55\x7f\x49\x76\x64\x60\xd5\x64\x7b\x56\x4a\x9f\x41\x9a\x25\x41\x27\xcf\xe2\x04\x05\x0a\x80\xc7\x37\x5a\x3e\xdd\x79\xbb\xc2\x43\x7e\x46\x75\x74\xba\xf1\x68\xc4\x46\x29\x74\x58\x8b\x9a\x4b\xf9\xf7\x52\x33\xf3\x20\xee\xae\x25\x40\x42\x9c\x68\x37\x04\x04\xa5\xfc\xba\x42\xf4\x33\x51\x0a\xe1\x77\xf2\xef\x97\xa4\xcc\x9f\xfb\xaf\x17\xaa\xd3\x74\x0b\xf5\x38\xc9\x89\x68\xbf\x40\x26\x72\x0c\xfb\x85\xc8\x2f\xf9\xdb\xba\xe4\xbc\x88\x71\xc2\x0e\x4d\xd4\x53\x2a\x5b\x8d\x35\x0f\xf7\x69\xb4\x95\xcf\xae\x09\xc2\xa0\xdf\x47\x91\x05\x3b\xcf\x1b\xb8\x12\x7e\xd3\xf2\x3c\xa1\x38\xcf\xfa\x61\xbc\xd2\xf0\x82\x40\xb7\x68\x6c\xa4\x04\xe5\x27\xd4\x52\xd0\xdb\xa1\xca\x09\x1f\x28\xe1\xbf\x8f\x2a\x38\x77\xfa\x25\x36\xf1\x41\xba\x8a\x9d\xfa\xcd\x3a\xd5\x8f\x9e\xcd\xe2\x1c\x7d\x62\x7c\xef\x2d\x65\x56\x72\xcb\xb5\x11\xc6\x26\xcd\x82\x91\xd8\x6f\x70\xa9\x56\xed\x71\xe7\x8a\x5f\x9f\x8c\x12\xf6\x6f\x91\xe5\xa2\x5f\x41\xf6\x7f\x46\x83\xdf\xce\x38\x89\xcc\x74\x29\xe8\x71\xd7\x41\xd8\x15\x6c\x56\xc9\x6f\xea\xf2\xdd\x6e\x18\xe7\x99\xf2\x73\xae\xb6\xff\x1e\x24\x5e\xd3\x35\x54\x92\xa0\x96\x8c\xd4\x42\xe9\x97\x00\x7d\xbb\x82\x65\x83\x38\xfc\x0d\x45\x06\x89\x6c\x99\x8f\xa2\xca\x27\x8e\xf4\xaa\xe0\x82\x30\x08\xcf\xf9\x9a\x02\x70\x77\xc3\x38\x1b\x5a\xd2\xed\x7d\xde\xb1\x5a\xca\xef\xc0\x62\x3a\xad\xec\xb3\x59\x8a\x91\xff\xa1\x78\xc4\x83\xfa\x9f\xdb\x31\xe5\x2d\x5d\x6f\x28\x23\xf8\x4d\xcd\x2b\xe6\x9d\x0c\xdb\xda\xfd\x96\xd7\x81\xbc\xa8\xa9\x0d\xc3\xb8\x67\xd5\x36\x71\x4a\x81\x5e\x4e\xa9\x2c\xff\x15\x13\x3d\xa7\x72\xce\xeb\xb8\x57\x7e\x33\x51\x50\x7a\xf9\xe5\x66\x66\x7b\xbd\xd5\x69\xef\xf9\xf1\x23\x5c\x8d\xb4\x3f\x94\xea\x16\xf1\x77\xd9\x21\x47\xb1\x4f\xb3\xc4\x9a\x2c\x48\xd1\xa5\xf5\xe8\x05\x25\x81\xa1\x2e\xaf\x3c\x34\x76\xf8\xbe\x09\x47\xe7\x4c\x12\x44\x70\xaf\x5a\x3b\xd2\xd5\xbf\xaa\xfd\xbb\xeb\x80\x4c\x44\x97\x0d\xba\x54\x2a\xf5\x3f\xdc\x58\x53\x57\xd4\x98\x10\xbf\x38\xf0\x82\x93\x06\x2c\xc7\x15\xf9\xff\x09\x45\x2d\x39\x31\x11\x4a\xff\x66\xd3\x64\x99\xe9\x0e\x19\xea\xe9\x7c\x74\xca\x87\x29\x3e\x3a\x5b\xdb\x03\xb3\x07\x9a\x83\x1c\x3f\xe1\xc6\xc6\xa3\x3c\xea\xda\x72\x7d\x13\x55\x16\xee\xba\x5a\xb8\xeb\x4e\x74\x04\x02\x8a\x4e\x74\x04\x38\x7c\x7e\x5d\x13\x91\xbc\xd4\x5c\x0d\x6c\xc8\x0d\x42\xe7\xe8\xe2\x00\xf0\xe7\x26\xce\xb8\xf9\xf9\x66\x3a\xf6\x4e\x37\x4e\x17\xd9\x49\x36\x9e\xd1\x14\xb7\x3c\x89\x6c\x0f\x91\x9f\xaa\xbc\x08\x49\xf0\x36\xe7\xec\x4e\xff\xde\x31\x92\xb6\x41\xb8\x98\xa9\x1c\x34\xf8\x2c\x8e\x85\xd9\x20\x1c\x0f\xbf\xaf\x2e\xfc\xa3\x79\xe5\xb6\xf9\x1f\x31\x83\x34\x47\x16\x69\xd4\x1b\xc5\xa3\x6e\x0f\x08\xcd\xca\x93\x74\x13\x82\x8c\xf4\xa6\x0c\x67\x14\x0a\x82\xf9\xcf\xdc\xbb\x40\xec\xe9\x4a\x32\xfb\xa4\x86\x71\x99\x6a\x11\x38\xe6\xdf\x2a\xbc\x69\x36\x4a\x88\xa2\xfc\x46\x67\x97\x53\x84\x2c\xa7\xa1\xd8\xe5\xd3\x03\x90\xb8\x0a\xc3\x82\xbc\xe0\x28\xe0\x00\xc8\xb1\x38\x57\x66\x0b\xe1\x96\xf7\x84\xfd\xfe\xfb\xb8\x63\xe9\x6c\xf9\xc3\x38\xb5\x63\x93\x18\xe7\xca\x8b\x10\xef\x8e\x52\x59\xe6\x0c\x52\x1c\xab\xb6\x3e\xf0\x85\xc5\x85\x72\x7a\x07\x5d\xc5\x6d\x3f\xa9\xb8\xed\x27\x6b\x24\xe4\x67\x9b\x69\x1e\x60\x33\x17\xb0\x48\xc3\x89\x29\xad\x2b\xd2\xf7\x38\x89\x3b\xa1\x1d\x3d\x82\x02\x09\x07\x49\x7c\xfb\x08\xfc\x5f\xa7\x73\x14\xc7\xfd\x75\xca\xce\x80\xcb\xe4\xae\x20\x86\x05\xc2\xde\xe8\xd3\x42\x63\xd4\x09\xbc\x7a\x30\xc2\x05\xc5\xae\x67\xa6\x91\x90\x04\x69\x1c\xf1\x1b\xc7\x95\x64\x45\x9a\x27\xcb\x36\x08\x43\x13\x75\xb9\x07\x80\x99\x7a\xb9\xf0\xa4\xb3\xcb\x2a\x0a\x18\x05\x83\x72\xa4\xe9\x30\x52\xb2\x65\xfb\xbd\xaf\x93\xc3\x4f\xdc\xac\xe9\x65\x2d\x34\xd3\x71\x9c\xa7\x72\x3c\xa3\x9e\x70\xa4\xa5\x60\xe1\x47\xaa\x14\x24\x9b\xfe\x32\xa5\xa2\xa8\x80\x6d\x6f\x97\xf3\xbf\xc2\x7e\x42\xbb\x66\xfb\x1a\xcd\x20\xd9\x35\xa8\x4d\xea\xf8\xb4\xe5\x84\xc4\x83\x64\x16\x20\xfe\x65\x67\xdb\x2b\x9d\x37\x20\xbf\xeb\x94\x82\xcb\xd9\x82\x73\xf9\x7b\xad\xc6\x97\xbe\xe4\x3c\x20\x7d\x6c\xfb\x30\xa1\x43\x90\xd3\xed\xa2\xf0\x0a\x0b\xe6\x0e\x86\x03\x29\xfb\x4d\x5e\xfd\xe8\x67\x32\x8c\x8e\xa5\x08\xd1\xd8\x45\xa1\xea\x1a\x46\x40\xf6\x6b\x5f\x36\x6c\x50\xa7\x08\xa5\xea\x4b\x64\x2e\x22\x5a\x10\xb4\xaa\x45\x28\x8f\x56\x16\x0e\xdb\xdd\x64\x0e\x80\x79\x72\xcc\x85\x2b\x65\x70\xb3\x24\xa3\x2e\xe7\x3f\x8d\x05\xbf\xa9\x2d\xcc\x99\x34\xcd\x93\x72\x66\x08\x8b\x1f\x35\xc9\x53\x5a\x62\xe7\xd4\x84\x7b\xe0\xbe\xf9\x66\x2f\xa6\xfd\x99\xa3\x0e\x5c\x9e\x84\x20\x9e\x3e\xd0\xb3\x23\x98\x4b\xe0\x8c\xc0\x53\x69\xb4\x15\x05\xa9\xb1\xa6\x00\x02\x71\xb8\xdb\x6f\xfa\x0f\x11\x36\xd4\x41\x9e\xcb\x1f\x90\x3b\xa1\x7b\xc4\x29\xbe\x6b\xad\xaa\xeb\xe2\x1a\x07\xff\x07\xb8\x12\xd8\x1d\xd8\x39\x00\xc5\xa6\xab\x9a\x7f\x73\x7b\xe2\x90\x7a\x71\xa1\x99\x19\xa4\x23\xa2\x0d\xcf\xad\x42\xa1\xcb\x2b\xbc\xa2\xed\xed\xf1\x29\x2b\x6a\x2d\xb8\xaf\xa7\x15\x2a\xe0\x4b\x6b\xde\xe5\xfd\xc3\xdf\x6a\x6b\xbf\x20\x6c\x9f\x50\x81\xfd\x6f\xe9\x86\x51\x73\x7b\x7c\x4d\x81\xb4\xb9\xe3\x8a\xdf\xd8\xb3\xe6\x3b\x5c\x4f\xa1\x6b\x4d\xe9\xe5\x3f\x7f\x66\xcd\xa3\xaf\xee\x69\xe6\xc4\xeb\xb5\x62\x87\x2b\xd6\x8c\xe3\x48\x1e\xbb\x58\x87\x54\x2c\x42\x1e\xf1\xd5\xe7\xe7\x76\x2a\xd5\x6d\x9e\x57\xd8\xc2\x8e\x14\x9e\xfe\x76\xa1\x82\x26\xff\xbe\x42\xa8\x30\x17\x8e\x3f\xaf\xcd\xa2\x47\x1d\xfb\xea\xab\x52\xc0\x9b\x77\xf9\x5f\xc3\xd9\x51\x5e\x74\x51\x41\x94\x67\xd8\x8e\xa1\xe2\x71\x4a\x5b\x28\x4e\x02\x53\xe6\xe7\x9b\x03\xcb\x94\x6c\xa6\x0a\xd2\x11\xea\xa8\x12\x8e\x9a\x7b\xbc\x86\xda\xb7\x40\xd4\xbe\x46\x65\x13\x54\x3e\x8c\xad\x87\x1d\x16\x2b\x53\x12\x2d\xef\xa9\xb2\xf8\xdb\x5a\x25\xf4\x84\x8a\x13\x53\x6b\xa3\x1d\xaa\xc8\x75\x4c\x7d\x68\x43\xf9\x91\xc2\x0d\x95\xff\xa6\xe5\x51\x64\x67\x6a\x9e\x67\x79\xb8\x25\xa6\x9b\xa5\xd5\x2c\xda\x57\xef\x2e\x4e\x14\x1f\x0e\xbc\x50\x1e\x5c\x5d\xdb\xcb\xa9\xa7\xe5\x6a\xb1\xac\xd6\xc4\x6f\x5a\x1e\xfb\xd6\x89\xe3\xa5\x94\x2c\xca\x10\x91\xb0\x28\x85\xd3\xa9\x72\x8a\xe4\xd7\x15\xc8\x08\x3c\x39\x9c\x82\x77\x6b\xe3\x30\x6b\x47\x38\xd6\x9f\xaf\x78\xe5\xc9\xb9\xac\x0a\xc3\x77\xea\x38\x80\x5d\x1b\x86\x0a\xad\x74\x0e\x5b\x91\xe8\x1d\x4f\x2a\xe3\x34\xcb\xb8\xaf\x1b\x8c\x19\x0c\x09\x50\xc6\x86\x22\x7a\x6e\x54\x18\x70\xcb\x36\x7a\x86\xae\xcd\xd1\x3b\x5c\x3d\x87\x0f\x11\x94\xfc\x1f\x07\x2c\x51\x56\x1c\xcd\x65\x44\x64\x1c\xfa\x60\x7e\xdc\x27\x38\x17\x4a\xb0\x8f\xb4\xe9\xdc\x72\x9a\x4b\xe5\xf1\x24\xd2\xa0\xe5\x0e\xcf\x7e\xb3\x38\x38\x40\x22\x63\x33\x00\x44\x91\x3f\xe7\xd5\xe6\xb2\x58\x0f\xe2\xdb\x49\x47\x17\x52\xb8\x06\xe1\xa9\xb8\x1b\x48\x98\x20\xac\x80\xd7\x10\x85\x69\x84\x0a\xc2\xe5\xab\x8a\x05\x89\xc7\x0a\x14\x47\x43\x75\x15\xe2\x55\xa8\x71\x53\x7d\x6c\xfb\xe7\xd7\x94\xf5\x0d\x3b\x86\x8b\x85\xb7\x12\x91\x60\x71\x7a\xcc\x9e\xe3\xca\x28\x0a\xca\xd2\x8e\xe5\x37\x37\xe7\x1b\x1c\xe5\xbd\xd3\x9f\x7c\xe9\x57\x27\x15\xfe\x16\x17\xbe\xd8\xec\x9a\xc8\xe8\x09\xf0\x91\xca\xa7\x3e\x52\xf0\xc5\x6e\x10\xd9\x71\x68\x0f\x41\x24\x0a\xe5\x21\x90\xa8\xb1\x40\x60\x54\x8b\xcd\xbb\xa0\x12\x38\x26\xf6\x37\x29\x5c\xc3\x13\xbb\xdd\xf2\xf2\x92\x93\x73\x6b\xdf\x7c\xd3\x74\x4c\xd4\x8b\x23\x01\xb5\x08\x2e\xd5\xf7\xbf\x37\xea\x22\xd3\x2f\x36\x3b\x36\xcd\xa6\x69\x02\xa0\xe0\x38\xd5\x56\xba\x3c\xff\x51\x99\x4d\xde\x57\x15\xa1\x8f\xeb\x5c\x91\x43\x02\xbc\xbb\x30\xf5\x9c\x96\xe1\x7c\x13\x6b\x03\x09\xc1\x07\x95\x1e\xc9\x1e\x35\xe5\x43\x03\x3e\x34\x7a\x49\xe7\x95\x84\xca\xcf\x28\x4d\xc6\x1c\x27\x8f\x53\x27\xd3\x15\x75\xe3\x46\xf9\x6f\x62\xce\xa4\x2a\x2a\x17\x26\x35\x25\x66\x9b\x9d\x3c\x1d\x5a\xb1\xe1\x60\x56\x86\x12\xc9\xf8\xc4\xe1\x79\x7a\x41\x24\x41\x3f\xc0\x59\x37\x71\x92\xa8\x52\xbb\x74\x65\xce\xd5\x69\x38\xa4\x59\x62\x82\xc1\x90\x04\xa4\xbc\xdd\x06\x4e\x02\x7e\xad\x50\xdf\x24\x7c\x42\x1d\xeb\x79\xe9\x1c\x4c\x53\x18\xc1\xaf\xd7\x7c\x56\xd8\x0f\x57\x83\x68\xb0\xd3\x07\x72\xd7\x0a\xa5\xd3\x76\xae\x50\x66\x0f\xe7\x68\x02\x60\x0f\x7c\x1f\x0b\x02\x00\x20\x76\x70\x12\x94\xf3\x64\x30\x3d\xdf\xb4\x54\x8a\x45\x49\xd9\xb5\x97\x34\x33\xdc\x17\xdb\xfb\xd6\x24\xe9\x0e\xdf\x9c\xe6\x94\x08\x1b\xd7\x15\x7a\x8c\xa2\x9e\xa3\xa5\x74\xb4\x07\xd5\xeb\x4a\x35\xa8\x67\x97\x83\xae\x4d\x1f\xa6\xbb\xc2\x50\x1d\xa5\x03\x45\x5c\x08\x3c\x1b\x69\xb3\xd0\xdd\x03\xba\x73\xfe\x00\x30\x6c\x42\xc8\x6f\x7c\xf9\xeb\x8e\xa8\xd2\xf0\x42\x16\x2a\xa5\x39\x0f\x8a\x2a\x7f\x40\x55\x1c\x17\x9f\xdb\x57\x89\x50\xd7\x75\x84\xba\xae\xa8\xe4\x69\x66\x32\x9b\xae\xd8\x34\x6b\xd0\x95\x03\x39\xc2\x9d\x21\x7e\x53\xf8\x43\xad\x17\xbb\xea\x0e\x16\x09\xc7\x7a\xfc\xa6\xae\x4c\x99\xda\x6e\xce\xfc\x4f\xc7\xc1\x73\x25\xcf\xd7\x1f\xc8\x05\xef\xc5\x2b\xd1\x20\x31\x3d\xd9\x1c\xd0\x05\x3d\xac\xe4\xce\x0f\xd7\xb4\x37\xf7\x37\x13\x1b\x12\x2f\xde\x97\x85\xab\xa2\x6c\x9e\xac\x12\x8c\xc6\xb6\x17\x8c\x08\x27\xa7\x38\x5f\xa7\x94\x76\xf2\x29\xc5\x57\x8a\xf2\x90\xba\x91\x1e\x28\x8f\x8b\xe1\xd7\x95\x2c\x2d\xea\xe5\xf4\x77\xe2\x3b\xdc\x70\xea\x60\x47\x26\x86\xe8\x59\x32\x07\x09\x97\x59\xcf\xd6\x3d\x7c\xa7\x7d\xc1\x2a\x09\xd8\x5f\x21\x1d\x21\xa8\xff\x9a\x8a\x91\x09\x7a\x18\x6c\x94\x5b\x7e\xda\xf2\xf0\x9b\x9f\xaa\xbb\xe9\x24\x79\x16\xa4\xc3\x86\xdf\xfd\xcf\x69\xdc\x5e\x6d\xe7\x38\xcd\x12\x6a\x95\x39\xd0\xe2\xfd\x96\xd2\xc3\xbd\x3f\x11\x16\x2e\x2c\x2e\x50\xf5\x79\xca\xb7\xf1\x70\x58\x62\x05\x6f\x6b\xfb\xe0\xe8\xbc\xba\x34\x72\x87\xb2\x3d\xd5\x22\xbe\xd3\x52\x6b\xf8\x4e\xd5\x14\x63\x35\x6c\x78\xbf\x84\x0b\xda\x05\xe4\x82\x4b\xf6\x06\x09\x89\x69\x70\x17\x1b\xe1\xc0\x76\x44\x20\x6c\xf5\x43\x1b\x9c\x50\x34\x94\x73\xd1\x35\x1c\xa9\xd2\x82\xdf\xba\xe5\x2c\xce\xb0\x66\x6f\x0e\xa8\x25\x77\xe4\xe9\x79\x4b\x77\x7e\xeb\x2e\xbb\x6f\xbe\x39\x0a\xd2\xd0\x9a\x9e\x2b\xa8\xf1\x11\x41\x1f\x93\xe3\xc2\xaf\xe5\xcc\xda\x87\x69\x06\xb8\xa2\x4f\x19\x88\x38\xd5\xac\xc5\x99\x6a\x9e\xe1\x6c\x4d\x9c\xb9\xfd\xf4\x9a\x2b\x10\xc7\xbf\xd2\xae\x96\x9b\x3d\x3c\x03\x28\x69\x55\xe3\xdf\xef\xe4\xff\x6a\x5a\x7e\xe5\xee\x49\x1d\x2f\x04\x41\xf7\x5a\x3e\x20\xba\x57\x91\xd9\x2a\xb4\x00\x97\xca\x64\x3a\xb6\xd7\xb7\x61\x18\xaf\xa4\x7a\xad\x5e\xc4\x86\x26\xfd\x1c\xbf\xf1\x90\x03\x57\xa3\x12\xf6\xd2\xaf\x3c\xa8\x12\xec\x7a\x85\x59\xdc\x5d\x4a\x81\x92\x74\xcb\xc9\xdb\x74\xde\xae\x38\x3e\x6e\x7d\x54\x7b\xf7\x0a\x0b\x21\x4e\xf8\x3b\x30\x79\xd8\x95\x0d\x59\xe9\x2d\x5d\x1d\x39\xa5\xce\xf9\x95\x38\x2e\x0f\x63\xdf\xf8\x79\x43\x83\x59\xee\xaa\xce\xcf\xcd\x62\x8f\x3a\x29\xcd\x0a\x1a\x6e\x0e\xbd\xbe\xcf\x83\x78\xfd\xb4\x18\xc6\xe1\x94\x5f\xbd\xdb\x88\x54\x8f\x49\x71\x4a\xc1\x55\x77\xb6\x6b\x0a\xfd\x61\xbc\x62\x93\x86\xdf\x61\x7e\x86\xca\x11\xbf\xa9\xeb\x1e\x27\x36\xb2\x2b\xb2\x15\xa3\xae\xb3\xad\xed\x71\x6a\xdb\xd6\x26\xeb\x81\x0b\x04\x6a\x9d\xd6\x21\xa0\xf7\x4a\xfd\x11\xcd\x5b\x76\x98\x52\x53\xf5\x94\x6a\xd8\x2e\xd9\xee\x52\x83\x92\x01\x5d\xad\x10\xa1\xe5\xc7\x03\xef\xac\x18\x93\xda\xe4\xd6\x56\x82\x4c\x8d\x1a\xd4\x4d\x8a\x11\xa0\xbb\xd6\x92\xc5\xe2\xa8\xbe\xf5\x6e\xf6\xcd\x37\xc3\xc0\x08\x15\x87\x6f\xa7\xe5\x99\x3d\xe7\xbc\xfe\x77\x9e\x0e\xf1\x57\x0e\x93\xeb\x3b\xda\xaa\x6c\xf8\x8d\x3c\x88\x42\x13\x51\x32\x8c\x70\xff\xa2\x12\xb5\xfd\x08\x53\x0a\x20\xa2\x6b\x0a\x13\xd3\xb3\xdd\xb0\x0c\xf1\x76\xf8\x66\xf3\xc6\x16\xd3\x19\x47\x8d\x5c\x43\x5a\x05\x92\xd3\xba\xe2\x28\xef\x6e\x2b\xe9\x41\x7b\xc8\xa4\xbb\x94\x45\x22\xcd\x36\xb1\x4b\x54\x3c\xab\xb3\xea\xe4\xbd\x5b\xf8\x06\xc3\x09\x5c\xaa\xb4\x49\x14\xce\xee\x16\xe2\x26\x69\xa6\xf8\x7b\xef\x9b\x04\x7e\xeb\x65\xb0\x23\x14\x8f\xf2\x12\xf8\xf5\x44\xaa\x30\x37\xd7\x34\x23\x1b\xf5\x46\x12\x6b\xca\x3d\xd1\xf5\xf1\x9b\x89\x6c\xf7\xd9\x32\x1a\x94\x8e\x24\x5b\x14\x69\x81\xbd\x6b\x75\xc7\x67\x1a\x0c\xd0\xec\x14\x30\x79\x79\x5d\x82\x32\x97\x87\xdc\x8f\xe3\x70\x4a\x55\x35\xbf\x8f\xb8\x4d\x00\x1d\x9e\xcf\x73\xa5\xf5\xb8\xd2\x0c\x73\x86\x96\xce\x65\xcd\x19\x03\x7c\x50\x3c\xe2\x36\x00\xd3\x99\x52\x82\xc8\xff\xbb\x02\xa9\x5f\xa7\x4f\x80\x81\x74\x6d\x62\x94\x16\x67\x16\x89\xfc\x15\xb8\x84\x4a\xec\xd6\x1b\xca\x86\xdd\x6f\x20\x66\x69\x75\xca\x07\x26\xbb\xa9\xc8\x8a\xa4\xe1\x36\xad\x4e\xf1\x51\xf3\xda\x11\xcb\x41\x98\x36\x34\x9b\x5b\xa9\x75\x5d\x9c\x20\xa3\x51\x33\x2e\xea\xda\x24\x63\xb9\x51\xb5\x3a\x9d\x12\x4e\xeb\x61\x37\x40\x7f\x7f\xcf\xd4\xfe\x7f\xfc\x55\xdf\xd1\x2d\x87\xd4\xc9\xab\x2e\x4a\xf5\x89\xb1\x15\x88\xd9\x3f\x40\x6d\x13\x21\xd8\x69\x50\xe5\x45\x47\xc9\x47\xf6\x1f\x68\xb7\x40\x2e\x4c\x89\xc8\x4f\xe3\x6b\x5f\xe1\x49\xbd\xb3\xad\xca\xbf\x8f\xaf\x79\xe0\xf5\x23\x38\x32\x25\x0f\xac\x99\x9c\x39\xdd\xa5\x09\x90\x77\x30\x51\xa4\xa5\x49\x23\x4f\xa8\x1e\x29\x19\xf8\xd3\x80\xb8\xeb\x2e\xaf\x88\xdf\x38\xd6\x4d\xd7\x8c\xc7\x16\xc9\x29\xb0\x27\x9f\xb6\x94\xb8\xda\x9f\xd1\xb4\x40\xe9\x91\xcb\xa2\x28\xdc\x1f\x9b\x78\x0e\x07\x67\x9a\xde\x4f\x95\x66\x96\xc8\x2f\xf8\x48\xee\x5a\xcb\x83\x33\xfa\x71\x62\xbb\x26\xf5\x7f\x8e\x3d\xfe\x9e\xc2\x22\xdf\x9b\x38\x2a\x29\x2f\x1f\x99\x20\x4a\x33\x46\x47\xa1\x75\x70\x46\x19\xd1\x9f\x71\xca\x30\x74\x2a\x83\x22\xcf\x7b\x2a\xb6\x7f\x81\xc0\xf1\x3b\x15\x04\x75\xf3\x64\xa7\xd2\x5f\x80\xb8\x83\x63\xb6\x38\xa2\x04\x47\x05\x62\x2e\x4b\x03\x0b\xd2\xf7\x2e\x2a\x17\xa3\xa5\xe2\xc1\x11\x3d\xb3\xd2\xf3\x70\x48\xd4\xe0\x8e\xb6\x7c\x3d\xee\x68\x2d\xf0\xae\x13\xc6\x2b\x11\x4a\xa5\x58\x98\xa7\x8b\x4a\x35\x96\xae\x41\x30\x2d\x35\x2e\xff\x83\xc4\xbc\x2a\x6b\x94\x35\x9d\x70\xdd\x22\xf0\xe4\x37\xfc\x78\x14\x05\xdd\x38\x11\x20\x30\x0a\x40\xc7\x5a\x8a\x60\x74\x4c\xd9\x86\xd3\x21\xbd\xc3\x83\x51\xff\xea\x99\xb6\xdf\x8c\x2e\x6a\x12\x28\x08\xb0\x8e\x07\xe3\x06\xf3\x74\x0d\xe8\xfd\xf9\x66\x2f\x20\x30\xc8\x50\x2e\x5a\x9a\x76\xfe\xc4\x9a\x0c\x9e\x66\x0f\x34\x49\x22\x31\x89\xe3\x11\xa2\x63\xa9\x5e\x55\xec\xc0\xb6\x86\xd4\xd4\x7a\x1c\x93\xab\x0f\xaa\xbe\x52\x76\xf0\xba\x54\x0c\x8d\x61\xaf\x03\x65\xa9\x72\x4e\xf3\xa1\x7e\xaa\xa2\xc7\x6c\x18\x24\xbd\x69\xf5\x75\x47\x69\x7b\x40\xae\x7f\x49\x49\x4e\x5f\xd2\xd0\xce\xa3\x9a\x49\x14\x2f\xdb\x84\x9a\xcd\x00\x77\x9c\xd7\xf2\xb8\x77\x2a\x9a\x12\x5b\x83\x87\x67\xcb\x53\x3b\x60\xc8\x06\xeb\x91\xb7\xbc\xd2\xd5\xb1\x49\xac\xe5\x02\x18\x52\x34\x68\xd8\xb7\xcf\xab\xdc\xa0\x36\x0d\xb1\xbd\xbc\xeb\xe9\x61\xac\x93\xa0\x8e\xec\xdb\xc5\xe7\x04\x0f\x94\x58\xf2\x7e\x30\x51\xc6\xf2\xff\x5a\xfd\x49\xa0\x05\x3e\x2c\x3e\x55\xfc\x92\x4f\xcd\xba\x81\x8d\xb2\xa0\x1f\x74\x4d\x18\xae\x36\x74\x49\xac\xe1\x14\x26\xd7\x55\x08\xdc\x1d\x9a\x20\xda\x49\x4f\x85\x05\xe5\xb1\x52\x44\x5d\xde\x73\xa0\x3f\x6c\xe9\x26\x7f\x4b\x49\x8b\x00\x5d\xce\x7f\xe5\x2a\x5d\x83\x24\x5e\x89\x76\xf8\xcc\xfe\x07\x54\x60\x41\xa3\xf5\xac\x92\xe6\xbe\xa9\xe0\xd8\x2c\xe2\x85\xf4\x73\x97\x82\x7d\x25\x96\xa8\x5c\x3b\x3c\xb0\x19\x3e\xc0\x48\xac\xde\x6b\xa9\xe3\xfd\x06\x3d\x3a\xa8\xef\x7e\xa2\xbd\x07\xd7\x9d\x79\x64\x66\x43\xab\xf4\x56\xc5\x5f\x57\x81\x69\xce\xd6\xef\x9f\xb2\xf3\xd2\xc7\x18\xf9\xdb\xf2\xeb\xf4\x64\xe1\xbb\x22\x9d\x38\x8e\x76\x6a\xe6\x3b\xf6\x07\xcc\xc7\x23\xaa\x25\x70\x57\x61\x8d\xd8\x17\x84\x2b\xe5\x98\xc1\x52\x74\xf5\xe2\xd5\xbd\x20\xed\xe6\x29\x08\xa5\x0d\x27\xc9\xf3\x13\xb4\x8d\xf9\x8d\x4b\xad\xc7\x79\x32\x8e\x53\x6e\xff\x69\x59\x26\x7e\x5d\xd3\x67\xda\xdf\x1c\xa0\x1b\x8a\x87\x72\x03\xab\x99\xdf\x28\x49\xdc\x91\x89\x86\x26\xcb\x8c\x56\x64\xd9\xa1\x9a\x7e\x48\x8c\xc4\xdc\x80\xbe\x44\xfe\xe1\x69\x25\x93\xd4\x0b\xba\x94\xbf\x01\x91\x82\x01\x7a\xa7\x50\x88\x94\xd3\x85\x02\x84\x20\x57\x46\x86\x76\x1a\x25\x4a\xb4\x8e\xd7\x51\xa2\xe4\x37\x34\xa8\xd4\xc5\xfb\x57\x4f\xb6\xeb\x98\xad\x65\x80\x6b\x4d\x3f\x2b\xf3\x2c\x17\x4b\x1d\x53\x76\x2e\xc7\xd4\xc3\x5c\x8d\xf3\x64\x4f\xf9\x67\xa8\x31\xb2\x96\x59\x45\xa4\x47\x44\xf5\x7c\xaf\xe1\x2d\x9a\xf0\xb8\xe3\xef\xf3\xb9\xc9\x50\xee\x96\x92\xba\xbb\xac\x08\x1c\xe7\xb0\xc6\xd0\x7d\xe4\xc6\x95\x50\x7f\x68\x40\x10\xab\xef\x20\x8e\x34\x02\x34\xb8\x3c\xe2\xd7\xdf\xab\x08\x7e\xf4\x83\xc8\x26\xab\xd3\x3e\x5d\x60\x6b\x47\xa9\xd5\xfa\x9c\x82\x0f\x65\xfe\x87\xad\x26\x4c\xf3\xf3\xcd\x7d\xf3\xbf\x5c\xee\xac\xa8\xd3\x6f\xf0\xbd\xb0\x63\x70\xcb\xa3\xc3\xff\xe7\x27\xd0\x42\x43\x96\xb6\x9d\x32\x5e\x16\x53\xc0\xbd\x88\x85\x00\x2d\x57\x1c\xc6\x97\x5a\xda\xe4\x58\xcb\x64\x6c\x5b\x53\xac\x7f\xcc\x2b\x71\xef\x2a\x07\x96\x91\xe6\x78\xea\x88\x7a\xd6\x89\xc0\x22\xbd\xdb\xc6\xec\x01\x8e\xc5\x30\x5e\x88\x59\xbe\xa9\xa0\x3f\x67\xf4\x92\xff\x31\x29\x75\x63\x4f\x3a\x49\x22\x71\x4e\x03\xdd\xe1\x69\x8f\xe0\xc1\x6b\xeb\x28\x67\x3f\xed\x65\x4f\xde\x05\xda\x57\x8a\xa0\x12\xca\x88\xe6\x3c\x6d\x1e\x6c\x0f\xdc\xaa\x78\x05\xd7\x28\x02\xc6\x79\x16\x9a\x55\xae\x6d\x60\x93\x78\x5d\xfb\xc0\xc1\x27\x5b\x4c\xae\x1e\xd7\x65\xe3\x24\x83\x53\x12\xeb\x60\xd0\x36\x2b\x9a\x18\xbe\xc8\x6a\xba\x4b\x51\xbc\x12\xda\xde\xc0\x12\x5a\x1d\x83\xf1\x21\xdd\x34\xbf\x9e\x50\x6e\xa1\x10\x20\xc0\x96\xe2\xa8\x55\x1e\x8e\x35\xc9\xa3\x29\x3f\x90\x25\x81\xe4\x7a\x72\x28\xab\x40\xff\x8e\xd3\x92\x29\x8f\x3f\xdb\xb5\x69\xca\x12\x4b\xac\xfb\xd8\xf2\x6d\xb4\x7a\xda\x4c\x9a\x77\xf2\xa4\x43\x1f\xc1\x38\xf1\x35\xf1\x1b\x15\xaa\x0e\x03\xa3\x2c\xa1\x3e\xd2\x28\xf3\x8f\x94\x0b\x43\xb4\x24\xa7\xb5\xd0\xd2\x54\xa2\xfa\x51\x0d\xd9\xf3\x25\x32\x58\xe3\x96\xb5\x78\x69\x28\x75\x81\xe3\xaa\xba\x36\x4e\xca\x90\x3f\x0b\x6c\x4a\xd4\x22\xa4\x78\x37\x70\xc5\x4e\xf7\x61\xef\xac\xf7\x57\x52\x82\x10\x4a\xcb\xf1\x0f\x5a\xde\xce\xfa\x26\x6e\x44\x9c\x25\xb7\xac\xe2\xdf\x2c\x37\xf6\x9d\x1e\x6d\xb0\xae\x75\x49\xcf\xe1\xfb\x31\xaf\x77\x62\x11\x6b\xf2\x04\xd6\xe0\x05\x45\xa3\xad\xc7\x18\x7c\x23\x0f\x00\x1f\x50\xa9\xdc\xac\x06\x4f\x8b\x63\xe2\xdd\xba\xd6\x77\x9e\x8a\x7c\x90\xe8\xf1\xaa\x3a\xcd\x89\x8a\x42\x6a\x64\xbb\xbb\xbc\x70\x10\xb8\x88\xfc\xba\xa5\x08\x30\xb7\x10\xa6\xb0\x61\x2b\x1f\xc1\x80\xd0\x9c\x51\xee\x75\x1c\x96\x02\x0f\x73\x1b\xd3\x52\xbe\x59\x4a\x0a\x4b\x51\x9c\x61\x36\x20\xb4\x40\xdd\x88\x5f\x4f\x4c\x86\xbd\x7b\xa9\x2f\x9f\xf1\xc2\xc5\x4f\x5e\xe3\x8d\xd3\x69\x4d\x94\xd7\x86\x8d\xff\xa3\x1a\xb7\xea\xee\x30\xb0\x7d\x8a\x78\xe4\x91\xaa\x42\x0e\xab\x53\xe1\xd3\x3c\x3d\xe4\x8d\x2f\x94\x6d\xb6\x1e\xf1\x1d\xa7\x7f\x34\xe5\x01\x72\xef\xd0\x88\x81\x7b\xc9\x0c\x6f\xd9\xdc\x9b\x93\x0f\x66\x64\xa2\xa0\x6f\xd3\x0c\x02\x40\x0d\x95\xd2\x6f\x28\x59\xa2\x0d\x05\x21\x0c\x6d\xc7\x44\xbc\xd5\x61\x37\xe7\x13\x9d\xdf\xb8\x65\x66\xa2\x2c\xe8\xf2\x57\x3a\xd7\x4f\x55\x28\x54\x29\x42\x92\x77\x97\x68\x02\x23\x36\xdd\x86\x26\xbd\xa4\xca\xca\x96\xe9\x9a\xc2\x89\xb2\x05\x09\x26\xed\xc7\x98\x0e\x08\xeb\x3f\x53\x74\x07\xd2\xc6\x1a\xe3\xee\xca\xb3\x05\x27\xe1\x19\xa5\x6d\x70\x46\x01\x47\x7a\xf0\xef\x29\xbf\x4a\xac\xaf\xe8\x47\x44\x5a\xf3\x71\xa5\x31\x34\x36\x41\x42\x41\x30\x72\x9e\xed\x6d\x1f\xbd\xdc\x56\x64\x84\xcf\xf0\x38\xd1\x34\xfc\x0f\x98\x19\xfc\xc6\xf1\x24\x12\xdb\xc9\x83\xb0\xb7\xc5\x33\xef\x82\x12\x43\xbf\x50\xd7\x08\x58\x89\x93\x25\x5c\xac\x78\x77\x94\x97\xc0\xaf\xeb\x54\xca\x42\x93\xd9\x64\x87\x17\xc3\xbb\x8c\xe3\x1a\xb3\xf6\x61\xba\x01\x59\x42\x74\x74\x23\x97\xbf\xa3\x24\x93\x37\xd5\x41\x34\x34\x49\x8f\x6b\xd9\xc2\xc5\x6c\x78\x5e\x66\x5d\x3f\x72\x60\xc6\x4e\x0c\xca\x91\xc1\x5d\x47\x15\xf6\xd0\x48\x27\x8f\x6d\xd5\xf9\xda\x37\xdf\x3c\x38\x33\xfb\xcb\x5e\xd6\xfa\x7a\xcb\x63\x0b\xa7\xd4\xa5\x7f\x00\xc0\x25\x6a\x7b\x57\x81\x00\x46\x99\x12\x3c\x2d\x2c\x86\x87\xda\x8a\x27\x7d\x4e\x09\x1b\xfd\x3b\xb4\x78\x30\x88\x3f\x6e\xa9\x7c\xf9\x17\x28\x8b\xe1\x50\xbb\x45\x61\x84\xc8\x48\x63\xf1\x0b\xbc\x5f\xd9\x6e\x9e\x67\x25\x3d\xbe\x1a\x2c\x66\x5c\xff\x02\xa2\x23\xc4\x3a\xbb\xd7\x2a\x2a\x1a\x54\x4c\xe3\xda\x2f\xa6\x3f\x57\x08\x5a\x6a\xcf\x39\x51\xf8\x91\x3f\x43\x27\x8a\x53\x93\x2c\xc7\x57\x50\x1c\xe5\xd3\xc6\xfd\x6f\x5f\xab\xd9\x99\x87\xf1\xc8\x4e\x2b\xf2\xf4\x7d\x9a\x43\x08\x86\x3f\xa4\x09\x88\x12\xf9\x9b\xda\x33\xe1\x9e\xf2\xbc\xcf\xcc\x92\x2d\x13\x74\x38\x49\xa1\xe0\xf3\xa3\x96\x22\x60\x9e\x51\x66\xe5\x3f\x2a\x14\x97\xf3\x8c\xe2\x87\x74\xe3\x18\x22\x1c\xca\x9a\x98\x80\x64\x62\x53\x5c\x07\x0c\x0c\x06\x51\x9c\x00\x73\xe1\x81\xff\x34\x5c\x18\xfd\xbf\xd4\xea\xda\xe7\xea\xe4\xc5\x56\xc8\x64\xca\x29\x12\x6e\xe2\x80\x40\xac\xf7\xaf\x68\xe8\xa4\xcc\xd7\x70\x2e\xe6\xe7\xd5\x65\x77\xf2\xde\xc0\x66\xe9\x0e\x9a\x33\x0e\x17\xe0\x55\x62\x6e\xd2\x21\xce\xff\x80\xa3\x08\x67\xde\x11\x4c\x05\xd1\x74\x50\x60\x0d\x13\x45\x81\xe5\x92\x13\xe6\xc3\x45\x2d\xb1\x72\x71\xc2\x57\xba\x8c\xc0\x1c\xa1\xcf\x84\x0d\x2f\x67\x78\x4c\x41\xa5\x8e\xa9\xea\x73\x18\xaf\xee\x28\x23\x62\x67\x53\x58\x5e\x0a\xbf\x69\x29\x2f\xc9\x4f\x95\x37\x17\xa0\x41\x78\x8a\x67\xea\x4c\x7c\x81\x8e\xd3\xec\xad\x0f\x5a\x8a\xbd\xf5\x41\x21\x38\xc4\x6e\x9e\x3d\x5c\x0e\x39\x26\x25\x08\x13\xf8\x8d\xff\xac\x45\x7d\xa7\x80\x2b\xc5\x02\xbf\x81\xec\x41\xe2\x1b\xdf\xfb\xe7\xa3\x02\x85\xb5\x27\x00\xd7\xc5\xe3\x7b\xaa\xed\x25\xff\xcf\xe9\x58\x6d\x6a\x6d\xeb\xd5\x7f\x75\xb6\x69\x83\x32\x6b\x9c\x2e\x47\xc5\x35\xa5\x66\x0f\x70\xf8\x75\xbb\xf0\x15\xe3\xff\xaa\xa8\xb4\x67\x55\x63\xc5\xf4\xcc\x58\x3a\xe7\xe2\x04\x5a\xce\x5f\xa9\x94\x39\x8d\xff\xd8\x24\x12\x48\x0a\xbf\x68\xca\x9b\x91\x4f\x3e\x5e\xc7\xbc\x8a\x93\x24\xe6\x73\x17\xbb\xd3\x95\x42\x89\x61\xea\x76\xc7\x20\x31\x51\x04\x91\x1e\x79\x78\x4a\x87\x79\xa3\x86\x40\xf0\x7c\x73\x68\xc2\xac\xa1\xe0\x94\x17\x94\x82\xe4\x05\x95\x54\x74\xe3\x28\xb3\xa3\x71\x48\x32\x74\x4e\xb0\xea\x04\x9e\x8f\xf8\xd4\xcb\xb9\xc6\x86\x95\xe4\x73\xea\x4d\xb5\x0a\xc5\x52\xbc\xa0\x24\x65\x4e\x2a\x49\xd8\x8e\x49\xb9\xd0\xa5\x05\xb0\x29\x62\x15\x21\x42\x27\x4c\x12\x47\x26\xe9\x0e\x51\x12\x13\x8b\x56\xad\x66\x51\xb3\xeb\x85\xa6\xb7\x3a\x45\xfb\xb4\x93\xd5\x71\x78\xdb\xdd\x6d\xdf\xc7\x6b\x4c\x6c\x99\x07\x67\x66\x9b\x91\xcd\x48\xdc\x04\xf9\xc7\x61\x3c\x3f\x59\x4c\xbe\x7e\x04\x05\x63\x7c\x29\xb7\x9f\xa5\xaa\xe6\x93\xf9\x28\xce\x82\x7e\x99\x3e\x95\xb7\xe6\x84\xf0\xf7\xf9\xe4\xa8\x16\xd6\x93\x04\x36\x9d\x52\xc1\xda\xa5\xc2\x43\x5e\x58\x0d\x1c\xc5\xfa\x87\xd6\xea\x12\xaa\x8c\xac\x82\x68\xc0\x50\xfb\xf9\x99\x32\xd5\xff\x99\xcb\xd7\xf2\xa8\x1f\x27\x59\x1e\x11\xc7\xc2\xf9\x3d\x1d\x55\x10\x48\x28\x8c\x08\x4d\xbc\x46\xe9\x6c\x9c\xc4\xa3\x20\x95\x3d\x9a\xed\x28\x0b\xc5\xc7\xdb\x49\x83\x24\x75\x1e\x9d\x08\x98\xee\xf0\x89\xf2\x57\xd1\x54\xfa\x18\x9b\x89\x28\xbf\x2a\xa1\xfa\x7b\x85\x27\x2e\x9e\xd3\xe2\x2e\xa7\x0b\x8a\x04\x70\xe0\x6f\xa3\xed\x40\x5c\xea\x69\x9f\x11\x73\x22\x4a\xe9\x31\x05\x3f\xc4\xc1\x05\x88\xc6\x3b\x2d\x25\xbb\xf6\x21\xad\x66\x9c\x2b\x37\x29\xf4\x10\x2a\x16\xcd\x66\x86\xd2\x68\x63\x27\xc1\xfb\xe3\xf8\xf9\xc3\x32\x2d\x72\xb1\x23\xf5\x6a\x32\xd8\x6e\xd3\x15\xe3\x68\xc1\x26\xcb\xaf\xd5\xa1\x90\x66\x66\x55\xf6\x56\xc1\x67\xd0\x70\x08\x72\x63\x8b\x63\xcb\xdc\xdc\xfe\xe6\xc2\x0b\xfb\x77\xf9\x12\x2d\x6a\x6b\x42\x8f\xa5\x99\x8f\xd1\x7b\x0d\x0f\x43\xd2\x18\x1a\x18\x77\xe6\x39\x21\xb7\xcf\x30\xc7\x99\x22\x84\x00\x03\xcd\x87\xcb\xbe\x69\x96\xc4\xf1\x52\x25\xde\x3f\xa7\xe2\xfd\x73\xc5\xd6\xec\x63\xef\xde\x0a\xd1\x75\x19\xbc\x77\x77\xf6\x3b\x62\xe7\xd9\x3a\x43\x1c\x7b\xa8\x6b\xc2\xa0\x93\x27\x7c\x52\x2a\x1d\x43\xb1\x1f\xff\x27\xca\x23\xd1\x24\xa6\xd3\x50\x9d\xba\x53\xca\x5e\xe3\x94\x22\xd0\x51\xee\x1e\x3e\x70\x2d\x7a\x80\x44\x3f\x88\x7a\x8f\xd0\x5c\xa9\xa8\xad\x38\x88\xf2\xde\x59\xae\x88\x31\xac\xd8\x55\xb1\x9c\x60\x45\xa6\xec\x92\xd1\x2a\xc2\xd3\xb9\x87\xf8\x15\x35\xf7\x6f\xd3\x8e\x87\xc9\xf5\x71\x51\x11\x6a\xf3\xe0\xa5\x2b\x35\xc7\xf1\x42\x73\x14\x44\x20\x84\xfb\xfe\x5c\xf9\x83\x42\x4c\xd9\xba\x56\x5f\x7e\xb9\x99\x8e\x6d\x37\xe8\x07\x5d\x7a\x0e\x5a\x9b\x56\xec\xe0\x5c\x0f\xfe\x39\xfb\x5c\x43\x77\x0b\xdf\xd2\xfc\x86\xb7\xb4\xe0\xbb\x49\x06\x41\x18\xa2\x9e\x84\x43\xf3\xdb\x9e\xf8\xf2\x2b\xdf\x56\x42\x54\x83\x24\x08\x43\xde\x07\xa5\xc2\xe2\xb1\x74\xc7\x9d\x0e\x55\xfa\x8d\xdc\x50\x37\xac\xbc\x4a\xec\x0d\x48\x1c\xf8\xb5\x4a\x50\xc6\x36\x89\x5f\x8d\x1b\xfe\xf7\x7e\x4c\xeb\x8b\x5f\x7b\x49\xbc\xc4\xe3\x6b\x38\x20\xa3\x2f\x94\xe0\x6c\xeb\xe8\x1e\x78\xa1\xcc\x2a\x83\x34\x9b\xaa\x44\x8e\x0b\xce\xd7\x11\x05\x08\x20\xe1\x2e\xfb\x16\x61\xdc\xe9\xb8\x0c\xcf\x2d\x10\x8f\x01\x9c\xa8\xc5\xcd\x1e\x68\x9a\x81\x99\xd2\xc2\xd8\x60\x37\x8a\x86\x81\x12\x47\xb8\x5b\x6b\x26\x38\x8c\x57\xdc\x2f\x4a\xab\x47\x37\x74\x14\x95\xae\xbc\xa3\x65\x6c\xf3\x98\x22\x53\x6d\xdf\x9f\x42\x79\x88\x4d\x24\x5d\xaf\x25\xcd\xc7\x64\x1f\xc7\xcf\x02\xab\xee\x7f\xc3\xc6\xc4\x6f\x54\x50\x12\xe5\x09\x17\x81\x66\x79\x83\x39\x87\x35\xc3\x6f\x14\xed\x64\x68\x02\xa4\x95\x5a\x0e\x4a\x08\x39\x8f\xab\x3e\x4c\xd2\xb3\x11\x9e\x1b\x36\x79\x16\x8b\xe2\x37\x6a\xfd\x77\x82\x5e\x0a\x61\x7e\x94\xe9\x59\x0b\x19\xf5\x64\x60\x44\x91\x48\x6d\x27\x09\x20\xc9\x18\xbc\x13\x53\x72\xbb\xaa\x79\x44\x43\x0a\x34\x08\x9c\x34\xd1\xa1\xda\xde\x2e\x23\x48\x21\xd1\x3f\xed\x38\xc2\x11\xfb\xe8\xb3\xe0\xb6\xe8\xa7\xfb\x40\xe3\xf5\x89\xc2\x67\x19\xd6\x27\x76\x60\x92\x1e\xba\xdd\x2c\x2d\xdb\xf2\x88\xcb\x77\x70\x13\x0c\x36\x57\x25\x9a\x8e\x0d\x07\x81\x01\x22\x82\xc5\x38\x5a\x0a\x60\x7d\x7e\x62\x43\x3d\xf0\x42\x33\x8f\x48\x06\x9a\x9f\xa5\x24\x53\x9a\x5e\xfd\x79\x65\xbd\x4e\x08\x85\xdc\x75\xa5\x5f\xe2\xab\x7b\x0f\x67\x29\xbf\x51\x82\x74\x1d\x92\x0d\x48\xd2\x9d\xde\x95\x1b\x0c\x05\xc4\x68\x1b\x2d\xc5\x9d\x39\x82\x6e\x17\x2a\xd4\x1b\x38\xaa\x05\x9d\xe4\xed\x64\x3f\x50\x8d\xa6\xae\x89\x7a\x41\xcf\x64\x16\x98\x72\xf4\x51\x2f\x57\xc5\xb0\xb6\x34\x5b\x37\xd7\x94\x02\xf8\x9d\xda\xec\x72\x25\x4e\x96\x6c\x22\xee\xfe\x78\x4c\x8c\x5c\x45\x53\xff\xdd\x42\xc9\xb7\xde\x53\x51\x53\x2f\x48\xbb\x61\x2c\xeb\x42\xf9\x72\x38\x93\x0e\xa5\x27\x97\xd8\x34\x18\x44\xb6\x37\xed\xf3\xa0\xdb\x2d\xc5\xb9\xe2\xb9\xc6\xff\x52\x68\xbd\xf6\x1a\x31\x4b\x56\xa7\x9b\xf2\x21\xda\x7a\xa1\xdb\xd7\x1e\xb9\x72\x4f\x95\xac\x49\xba\xcc\x74\xb3\x18\x05\x2d\x40\x21\x20\xbb\xce\xaf\x0b\x65\x7c\x7a\xa1\xa5\x5a\x16\x97\xf0\x80\xf0\x4c\xff\x6c\xc2\x74\x63\xef\x5e\x32\xa2\xb7\xdf\xc8\x49\xe3\x55\x89\xbf\x79\x00\x16\xfa\x5c\x88\x92\x6a\x59\x27\x65\x90\x6c\xb9\xde\x8a\x4a\xe8\x7d\x04\x2a\xe2\xb7\xe8\x19\xaf\xeb\x13\x61\x46\xf9\x28\xcb\x07\x92\x58\xca\x8f\x59\xbc\x14\x89\xdd\x51\x25\xf0\x7b\xd4\x1d\x6f\xe3\x38\x64\x88\x19\xd6\xd9\x09\x45\x3f\x86\x7c\x84\x18\x75\x6f\xa9\x51\x1d\x78\xa1\xf9\xe2\xe2\x0c\xdd\x25\xee\xe6\xa6\xda\x1a\x30\x05\xa5\x49\xfc\x79\xa5\x27\xd8\xb3\x63\x1b\xf5\x6c\x94\x85\xec\x49\xc5\xbe\x09\x94\x75\xb2\x8c\x17\x02\x5e\x31\x54\x28\xbf\x49\xf4\xbd\x6a\x98\x24\xdd\xa1\x09\x43\x1b\x0d\xa4\xe6\x0e\x34\xdb\x05\x5a\x70\xfc\xda\x9d\x4a\x00\x96\xa7\xd0\xf9\x06\x22\xfb\x3f\xd1\x95\x2a\x66\xc6\x4b\x7e\x49\x79\x5f\xb1\x47\x88\xdb\x2b\x8c\xee\x72\x54\xb4\x70\xad\x10\xf4\xea\x9c\xdb\x57\xe3\x3c\x1a\xf0\xb2\xe2\x2e\xbf\x92\x84\x3c\x8d\x18\x5a\xe0\x63\x8f\xba\x3d\xb4\x1b\x9b\x69\x1f\xe9\x1f\xc3\x85\x29\x11\x5a\x69\x30\x9f\x51\x52\x36\xdb\xdb\x1e\xa0\x93\xe6\xa1\x08\x30\xe2\xea\x18\xda\xce\x6f\x54\x17\x29\x4f\x87\xbb\x94\xe2\x2e\xc2\x39\x05\x16\x92\x06\x2d\xea\x2b\x00\xfb\xf2\xce\xc0\xa7\x71\xe1\xe1\xf5\x1f\xb7\xfc\x73\xbf\xa0\x5c\x93\xa6\xda\x3e\x09\x34\x9d\x94\xd6\xdf\x03\xe5\x58\xbc\xe7\x7a\xd0\xb3\x12\xf3\x56\xda\xc7\xa2\x29\xe9\x77\x69\x9b\x66\xa6\x13\x06\xe9\x50\xa0\x9b\x9b\x84\x72\xdf\x3c\x5e\xfc\xda\x03\x4b\x0c\x51\xd7\x26\x51\x95\x99\xdd\xd2\x1a\xe7\x1a\xfe\x3f\xfe\x8d\xc1\x34\x35\xe9\x31\xa5\x4e\xd0\x86\xea\x04\xcd\xca\x0c\x83\xff\x81\xb2\x25\x69\x8f\x7f\x41\x63\x1d\x9c\x40\xd2\x30\x18\xe3\x1c\xc7\xa6\x72\xbb\x50\xfd\xbd\xdb\x75\xb1\x6a\x77\x68\x6d\x12\xc4\x42\x0a\xc6\x2e\x7f\x0d\xf3\x93\xdf\x4c\x94\x39\xca\xbc\xdf\x2e\x5b\x5e\xdb\x2e\xc9\x71\x89\xff\x7d\xad\x6f\x52\x78\x90\xb3\x09\x43\xea\x6f\x7a\x5f\x1f\x71\x4f\xe2\x77\xb5\x72\x90\x66\x3c\x0e\x03\x09\x2b\x79\x23\x69\x29\x8a\xc4\x09\xe5\xc2\x1b\x44\x7d\xc8\xed\x3f\x5a\x5e\x0d\x70\x05\x6f\x17\xca\xdd\xe0\x43\x55\x26\x3f\x5f\x15\x68\x69\x1c\x9c\xd9\xbc\x4b\x73\x0c\x53\x9e\xbb\xee\x28\xa2\x5d\x45\x81\x5f\x1c\xc6\xaa\xa1\x52\x39\x0a\xa2\xd8\x44\x67\x0c\x16\xe0\x4f\xa9\x5b\xce\x6d\xf4\x3a\x0b\xe9\x74\xc9\x66\x54\x6f\x71\x00\x95\x63\x0a\x71\x70\xac\xc6\x35\x7a\xbe\x09\xbe\x41\xc3\x6f\xf4\xd8\x32\xa4\xe8\xa5\x2d\xa2\xac\x19\xdb\x64\x8a\x6e\x02\x13\x00\x4c\x56\x97\xf8\x94\x37\x84\x3c\xeb\xac\x22\x4d\x8e\xe3\x15\x9b\xf4\xf3\x70\x87\xc7\x3c\xa2\xb4\x88\xf2\xf5\x49\x1d\x2b\x41\xcf\xb1\x96\x2c\xbd\xb5\xdc\xf3\x9b\xcd\x9e\x09\x18\xab\x85\x21\xb9\xa3\xb0\x98\xeb\xca\x81\x75\xb2\x75\xbd\xf0\x02\xb9\xae\xda\x14\xb2\xb2\xce\x02\xbc\x5c\x1a\x62\x0e\xbe\x35\x12\x2b\x93\x62\x9b\xc4\xe9\xd8\x74\xd9\x5d\x0b\xb1\xc6\x59\xa5\x48\x8d\x26\x18\x0a\x57\x93\x1e\xdd\xf3\xf3\xcd\x91\x89\x72\x23\x94\x45\x64\x3b\x88\xfb\xf9\xf5\x44\xb8\xf3\xd5\x59\x31\x1a\x04\x52\xce\x39\x6f\x2a\xff\x8c\xa7\x95\x4b\x72\x37\x4f\x08\xa3\x34\x35\x51\x95\x45\x70\x86\x91\x17\x8c\xe4\x93\xaa\xd1\x67\x82\xd0\x95\xf9\x9d\x9d\xee\xde\x59\xe7\xb3\xeb\x6c\x72\x56\xac\x63\xfc\x8b\xb6\xaf\xd2\x4f\x3d\xab\x82\x97\xa4\x3c\x3c\x5f\x5d\x8e\x73\xbe\x61\xa5\xcf\xfe\x92\xd3\x67\xdf\xa3\x83\xd7\xa1\xe2\x37\xa1\xe5\x2e\x4b\x52\x52\x9b\x95\x20\xea\xc5\x2b\xa1\x4d\x01\xc3\x62\x16\xb3\x8a\x53\x7e\xee\xa2\x85\x15\x33\xb0\x60\x33\x48\x11\xab\xfc\x2b\xc1\x2a\x79\x14\x63\x37\x31\x2b\x60\xff\xa2\x5c\xc6\xc6\xd2\xfc\x46\x5b\x3e\x9a\x34\x2d\x0f\x6f\x81\xe7\x8a\xfb\x6a\x43\xd9\xb2\x6e\xdd\xc1\xe7\xe6\x10\x66\x25\xcb\x54\x49\x91\x91\x43\x0f\xfc\x54\x4b\x31\x66\x4e\xa9\xa4\x6f\x40\xa2\xc7\xe9\x0e\xef\xbd\x7e\xad\xa5\x38\xc7\x57\x14\xef\xf6\x9a\x2a\xff\x7f\x40\x3b\x3d\x50\x15\x97\x6b\x43\xe7\x7e\x1c\x75\x03\x21\x79\x48\xd2\x41\xb7\x2b\xe9\xc8\xd6\x5c\xf7\xe5\x97\x9b\x71\xbf\x4f\x93\x4f\x10\x2f\xe5\x8f\xf0\xeb\x96\x17\x2f\x74\xa7\x5a\x19\x31\x2f\xce\xf0\xe4\xfb\x9e\x6e\x38\x1d\x51\xe0\x6a\xde\x2f\xe4\x7c\xa8\xe1\xa3\xf4\x43\xb3\x62\x7b\x53\xf4\x67\x4e\xce\xbc\xdc\x27\x85\x7f\xab\xe4\xcc\xff\xd8\x1d\xc4\x7d\x50\xc8\x1a\xce\x4b\xfa\x0e\x46\x8e\xdf\x28\x18\xa6\x27\xc5\xb2\xc3\x25\x3d\x48\x71\xbb\x7c\x52\x09\x90\x8c\xe3\xa4\xcc\xbf\xf0\xe8\xd0\x1d\x61\x1a\x08\xbf\xd1\x42\x3e\x36\x1e\x87\xa8\x01\x0b\x50\x67\x83\xe2\x3b\x3c\x65\x44\x26\x42\x5f\x9f\xdc\x90\x67\xcb\x48\xc2\x81\x60\xb8\x87\xa8\xd2\xe0\x33\x13\x61\xe5\xdc\xdc\x62\x33\xee\x94\x33\xcc\x4d\x4c\x6f\xae\xb6\xe0\xcc\xd5\x14\x14\xc7\x44\x3b\x95\x86\x0f\x43\x11\x78\x37\xa6\x31\x40\xbc\x78\x92\x98\xda\x52\xd2\xf0\xc5\xe0\xb7\x0a\xdf\x3a\xdb\xde\x56\x9e\xde\x36\x4d\xcd\x80\xdd\xae\x30\x9d\x5e\x2f\x3c\x01\xf0\x32\x7d\x05\x6a\xb3\xd7\x2a\x92\xe4\x41\x18\xfe\x52\xb9\xd5\x20\x52\xba\x4a\x0d\x5c\x56\xd5\xa0\x5e\x0f\x36\xba\x1f\x52\x89\x4e\xe4\xf9\xca\x19\x86\x60\xff\x2a\x8a\xc9\x78\x43\xe2\x06\xe2\x97\xd2\x20\x2e\x25\x57\x7e\x30\x0b\xf0\x10\x1a\xe8\x4d\xe1\xbb\x76\xac\xa9\x62\x02\x5b\x50\x62\x8a\xde\xc1\xdc\xc5\x9b\xcb\xac\x5d\x2d\x96\x8b\xd4\x58\xa4\xab\x3c\xfa\x54\xbb\xf1\xa2\x50\x0c\x37\x95\xa8\xed\x0e\x12\x67\xd8\xbc\x54\x78\x83\xed\x3d\x6b\x5a\x34\x78\x0a\xda\x2b\x80\xa2\xbd\xeb\x85\x5d\x4f\x3f\xb1\xa6\x12\xb9\xc6\x9a\x07\x4d\xe4\x51\x9a\x8f\x31\x1d\xa7\x14\x01\x16\x55\x53\x44\x72\xb7\xe9\x0a\x04\x90\xf7\xab\xd5\x44\x48\x02\x4a\xfc\xf7\x1f\xfe\xd6\xaf\x6f\xff\x22\xaf\xa0\xdf\x57\xa5\x3a\x02\x20\x6d\x72\xbc\xaf\xb0\x2f\x92\xd7\x5d\x29\x1a\xbf\xbb\x9f\x8b\x2c\x27\x74\x27\xfe\x14\x1a\xe4\x88\xfd\xff\xbc\xd5\xf8\xea\x2c\xa7\x0b\x7f\x84\xa1\xc4\x20\xff\x1d\x59\x14\xb9\x02\x65\xb9\xbe\xb1\x3a\xbf\x47\x21\x2d\xb7\xfb\xa9\x41\xeb\xb4\x30\xf6\xff\xe3\xaf\x7a\xa1\xa0\x85\xd9\x03\xbc\x4e\x3f\x2e\x94\xc8\xc1\x3b\x28\x9f\xb3\xd6\x19\xcd\x5e\xf4\x7e\xbe\x83\x23\x47\xb4\xf9\xcb\x28\x0a\x53\xfc\x3b\x95\x87\xfa\x0e\x11\x5f\x44\xb1\xbb\x71\xe0\x85\x0a\x8a\x9a\x81\x80\x8a\x87\xff\x77\x2d\x85\x86\x39\xa3\x69\xa3\x87\x31\x3d\x44\xc2\xd8\xdb\xe4\x9d\xa4\x35\xe9\xce\xcd\x72\xe2\xe2\x16\x0f\x73\xe0\xaa\x18\xb6\xcf\x3b\x96\xbc\x52\xe2\x5e\x82\x47\x27\xad\x94\xc1\xaf\x61\x1e\xa3\xce\x71\xbf\xf0\xbb\xee\xba\xde\xa3\x0b\x25\xe7\xf2\x68\xdb\x2b\x7c\xfd\x4f\xff\x80\xd6\x87\xf3\x49\x77\xe2\x8d\xc7\x7d\x07\xcf\x0c\xcc\xab\x41\x64\xa7\x55\x3d\xe5\x83\x42\xab\x7f\x53\x0a\xbe\x09\x50\xbd\xa4\xd0\x75\x61\xe6\xd8\xac\x8a\xaa\x25\x9e\xcf\x61\x7a\xbe\xfc\xda\x57\x7c\xad\xc9\xb3\x55\x65\xdd\x30\x45\x5d\x28\xec\x00\x2c\x96\x82\xda\xc4\x85\x89\x0c\x76\xef\x6c\x33\x41\x59\x55\x27\x6b\x15\xaf\x15\x0f\x8e\x30\x59\x66\xa3\x1e\x81\x0c\x1c\x12\xf8\x5a\x4b\x09\xd1\x7e\xc4\x00\x11\xe9\x09\xd0\xd3\x15\x7f\xe8\xc7\xb5\x99\xca\xb2\x45\xef\xd7\x6d\x5f\xae\x81\x71\x55\x31\x58\xb3\xf2\xf6\x69\xf0\x59\xf8\x1d\xb5\x1a\x51\x81\xaf\x39\xff\x22\x93\x24\xf1\x0a\x05\xb8\xd8\xcf\xce\x54\x02\x39\xba\x20\xb1\x62\xa9\xc1\xc2\x8d\x0c\xf1\x09\x75\xbc\xc1\x19\x29\xbf\xa9\xe3\x44\x99\x31\xd1\x10\x03\x66\xe8\x4a\x8d\xc9\xf7\x18\xd1\xe9\x45\x23\xff\x9f\x7b\x85\x0d\xe3\xca\x40\x98\xc0\x57\x91\xc4\x60\xbc\xd8\x46\xf8\x41\x84\xe2\x97\x5f\x6e\x2e\xc7\x65\x96\x15\x06\x19\x7a\xc5\xa8\x3d\x9c\x6a\x29\x3b\xe0\x53\x13\xb7\x38\x37\xd7\xec\x27\x79\x90\x71\xbb\x15\x47\xed\x95\x8a\x56\xb2\x0a\x34\x7f\xea\xc2\xc2\x91\x35\x00\x03\x28\xb8\xe2\x82\x63\x2d\x3f\xa1\xcc\xb1\xd3\x71\x90\xc1\x8f\x16\xf7\x7e\xbd\xe5\x1d\xde\xaf\x56\x45\x8b\x15\x6b\xf3\x3a\xd6\xbe\xf7\xb0\x9c\xe1\x03\xf0\x1d\x17\x43\xd3\x75\x2b\x59\xf6\xd7\x69\x50\xf9\xb5\x22\xfb\xf6\xf2\x28\x6a\x28\xc7\x32\x56\x2d\x13\xf5\x0a\xa5\x0a\x3f\x0e\x6d\xd4\x0b\x18\xea\x2b\x1a\xc6\x2a\xa9\x7c\xdb\x59\x04\x27\x96\x04\x49\x25\xc2\x40\x67\xf9\x8c\xa6\xd6\x9e\x99\x08\xc6\xf6\xcd\x37\x53\xb3\xec\x1a\x16\x5a\x91\x44\xa4\x4a\xb6\xa6\x67\x65\x8a\xe5\x6c\xba\x55\x77\x72\xd6\xa9\x19\xca\xf3\x88\x83\x30\xdd\x41\x83\x09\xd8\x3a\x63\x34\xb1\xf7\x3d\x0c\x2f\x33\x37\xff\x1d\xe3\xf1\x74\xa1\x31\x48\x4f\xe9\x82\x69\x64\xbb\x99\xed\x4d\xd3\x81\x83\xed\x10\x97\x8a\xbd\xe6\x34\x9e\x15\xff\x83\xee\x11\x9f\xf6\xb2\xbd\xc1\x68\x1c\xb2\x83\x8c\x03\x7b\x95\x5f\x27\xd6\xd4\xbe\x70\x7b\xb8\x26\x1e\x6b\x46\x41\xd7\x24\x66\x90\x73\xa5\xbf\x22\xf8\xf9\x20\x1b\x95\xf9\xf9\x66\x62\xe3\x64\x60\x22\xef\xe8\x29\x12\x26\x34\x6e\xa2\x81\x31\x89\x7b\x78\xbe\x69\xc2\x70\xaa\x9c\x9b\x5c\x68\x40\x9d\x5e\xc2\x5f\x4f\x22\x3e\x5e\x3c\xec\xa6\xcc\xa1\x86\x07\x5a\x02\x21\xc9\xaf\x27\x58\xeb\xcf\x36\x07\x61\x9c\xa6\xab\x4a\x16\x63\x9d\x36\x6f\x8f\x17\x75\x19\x5f\x9e\x98\x70\x47\x25\xa9\xf1\xbd\x54\xfc\x8a\x13\x08\x53\xfe\x05\x45\x35\x29\xf2\x69\x29\xd5\x40\x83\x68\x30\xad\xd0\x67\xa8\x7e\x33\xa9\x85\x9e\x84\x10\x5c\x68\x7c\xf9\x8f\x5c\xc2\x38\x1e\x06\x61\x30\x1e\x07\x91\x9d\xf2\xd4\x81\x27\xdb\x9e\xdd\xc6\x9f\x43\x33\xe5\x91\xb5\x1a\xc2\x6e\xcf\xf6\x6d\x92\x08\x56\x86\x23\x1d\xcc\x1c\xc4\x17\x30\xcb\x01\x94\xf9\xac\xdb\x14\xfb\x41\x3f\x1b\x36\xfc\x94\x3d\xae\x00\x55\xc7\x95\x70\xf9\x2b\x79\x9a\x3d\xe5\x05\xf0\xa6\xd8\x96\x50\xb4\x2c\x68\x01\x08\x65\xb6\x3c\x6c\x77\xe3\x0c\x17\x98\x8e\x52\xc4\xde\xb5\xa6\x79\x51\x9e\xbc\xb1\x1d\x22\xb2\xd8\x86\x38\x50\x41\x3c\xfa\x5f\x68\x4b\x93\xfd\xb6\x5c\x52\xa8\x9f\xfc\x75\x4b\xd5\xbb\x39\xf7\xac\x48\x4c\x30\x78\x06\x7b\x9d\x36\xd7\x43\x90\xf0\x30\xb1\x3f\x26\x97\xe7\x38\x47\x8a\x98\x4c\x79\x96\x24\xba\x0c\x95\xf8\x5b\x12\x10\x8f\xff\x25\xb1\x12\xac\x0a\xdc\xdf\x86\x76\x2e\x9a\x6c\x4e\x50\xa1\xaf\x13\x2f\x5b\xe2\x83\x21\x54\xbd\x45\x19\x04\x8a\x45\xdf\x2a\x94\x77\xf2\xf5\xc2\xdb\x38\x6d\xa3\x3e\x23\xb6\x87\xfb\x18\x05\x29\x36\xd7\x28\xcf\x75\xe3\x7c\x1c\x5a\x05\xfd\x62\x60\x2a\xbf\xa9\x01\xec\x37\xd3\x30\x18\xf3\x59\x29\xb5\x26\xfa\x88\x20\x03\x69\x78\xb1\x14\xde\x2a\xaa\x9d\x20\x13\x44\x36\x49\x77\x28\x18\xe3\xdb\x0a\xe6\x73\x4b\x13\x3d\xdf\xd6\x45\x0c\x14\xde\x71\x98\x4f\xb5\xb7\x6e\x20\x5f\x9d\x6d\xae\x98\x64\xd4\xa8\x90\x87\x17\xdd\x6b\x75\xcc\x94\x27\x47\x9a\x27\xab\x54\x0c\xc5\xfc\xbc\x81\x3a\xa6\xab\xb0\xec\x9b\xaf\x9a\x55\x21\xba\x7c\x0d\x61\xba\xa2\xdc\x4a\xc9\x0c\xcc\x41\x11\xea\xf3\x09\xeb\xa9\x42\x61\xc2\x31\xff\x34\x40\x1c\xeb\xe1\x28\x6e\x92\x73\x9d\x96\xb2\xdf\x1b\xd8\x28\x83\x36\x39\xd2\xb2\x8f\x95\xdf\xc0\xa7\xaa\x0e\xd4\x00\x24\x0b\x0f\xe2\x5a\xdd\x13\x86\xa9\x3f\x0d\x0e\x5b\xf2\x63\x3b\x16\x7f\xfe\xa7\x55\x73\xd7\x89\xb7\x78\x78\x0f\x76\x2b\x81\x06\xf9\x6a\xea\x18\x26\x02\xd3\x0a\xdb\xf0\x96\xee\x96\xe1\x47\xf8\x1f\xb0\xc6\xa5\xb2\xe9\x91\x19\xe9\x8a\xed\x05\xe9\x70\xba\xcc\x74\x70\x3f\x3f\xc1\xe1\x89\xa4\x0b\xf8\x5e\xc7\x7e\xdc\x3b\xeb\xd4\x13\x9c\x6e\x7a\x9e\x66\xf1\x28\xdd\xe9\xf1\x27\xe7\x74\xf7\xe6\x24\xbe\x0d\x49\xdf\x33\x18\x2a\x91\x67\xc4\x26\x85\xe2\xd4\x39\x25\xb6\xae\x43\xa8\xa1\x0d\x46\x36\x49\x55\xe3\x7a\x53\x6f\xb6\x9b\x75\x11\x68\xcf\x2e\xdb\x30\x1e\x4b\xe8\xe0\xc0\xaf\x9e\xfc\x37\xb9\x10\x9f\x6d\xf6\x83\x2c\xa2\x9a\xa0\x03\x61\x9c\xc2\x47\xf8\x8d\x97\x22\x09\xfa\x38\x08\x30\x4b\xdf\x45\x18\xed\x08\x1a\xce\xdd\xea\x9f\xb9\x4f\x74\x12\x2e\x8f\xa3\x3b\x04\xb9\x09\x7e\xad\x1e\x68\x68\x4d\x1a\x44\x83\x1d\x4a\x3f\x9c\xb7\x4a\x7e\x43\xbb\x2b\x20\x6b\xff\x45\xf5\x36\x38\x2c\x10\x73\xa2\xba\x28\x37\x34\xcb\xcc\xcb\x72\xd8\x1f\x8f\x03\x72\xa9\xd3\x38\x8f\x44\xbb\x0a\x61\xf7\x4d\xc5\x0e\xb8\xe9\xc0\x60\xf6\x50\xd7\x4a\xf1\x00\x61\x2d\xac\x9e\x95\xe1\x8d\xd0\x92\x1f\x59\xf3\x20\x11\x3b\x1a\x9a\x04\xe5\x72\x85\x11\x71\x80\x11\x85\xd4\x0a\xed\x70\xc4\x81\x8f\x6b\xf1\x2b\x3a\xa4\x43\x0b\x75\x87\xb6\x97\x87\x70\x8a\xc4\x7c\xbd\xac\x09\x8b\xe8\x88\x63\x69\x03\xaf\x29\xe7\x5a\x4d\x5d\xbd\x1f\x27\xa3\x3c\x04\xc3\x8c\x79\x12\x4a\xd7\xbb\x0e\x15\xbd\xd0\x24\x20\xc0\xb4\x92\xff\x3f\xac\x75\xc8\xd1\x14\x46\xdc\xf9\x89\x92\x93\xbc\xaf\x80\x33\xf6\x50\x37\x4f\x75\x58\x71\x5b\x89\x24\x30\x3d\x40\xde\xd4\x1d\x04\x41\xb8\x6c\x94\x06\xc0\x16\x01\x83\x09\x4b\xd5\xd9\x66\xd7\x24\x69\xb5\xc5\xd8\xd2\x2d\xc6\x1a\x37\xd9\xa6\xcd\x93\xb8\x17\x87\xa1\x49\x38\x4f\x42\x19\xf1\x35\x85\x86\x15\xc3\x38\x24\xc1\x97\x27\x7a\x66\xbf\xdd\x4c\xe3\x91\x5d\x19\xda\x04\xdb\x20\x26\x07\x20\x1f\xfc\xba\x06\xf0\x30\xdb\x8c\xf3\xd4\xa5\x19\xa2\xe9\x58\x7e\x46\x80\xbd\x5e\x88\xcc\xf4\xdd\x1f\x02\xfa\xb9\xad\xad\xcc\x9c\xb7\xad\xf9\x2c\xda\x9a\xd4\x42\xc9\x11\x39\xde\x27\x8a\x97\x77\x1d\xd3\x47\xac\xe9\x5d\x67\x36\xef\xf7\x6d\xd2\x50\xbc\x56\x18\xea\x08\xbf\xae\x46\xba\x24\xcd\xf2\x51\x27\x94\x80\x0f\x93\x93\x81\xee\xdc\x96\x53\x3d\xb2\xa9\xb6\xba\xbc\x4e\x87\x43\x77\x44\xe2\x37\x35\x65\xff\xa6\xaa\x29\x77\x6c\x18\x47\x03\xdb\x6b\x94\x4b\xc3\x09\x44\x97\xb1\x94\x08\x44\xfb\xd0\x67\xd9\x84\x41\x6f\xa7\x17\xb2\xbe\xa8\xf8\x87\x17\xf5\x76\xfd\xae\x26\xa9\xbe\x8b\x43\xb3\x4e\x25\x4a\x46\x26\xb3\x87\x4c\x94\x56\x60\x6c\x6c\x14\xe4\x0c\xf4\xcb\xd9\x25\x45\x8f\xad\xf8\xf7\xd9\x03\xcd\x3c\xea\xd9\xa4\x9b\x27\x89\x80\x96\x19\xba\x4a\x4f\x45\x60\xac\x4f\x3a\xa0\xc0\x68\x64\xa3\x6c\x8b\xc0\x1b\x32\x76\xc1\x4b\xd6\x74\x86\x13\x13\xa0\x63\x26\x30\x79\x49\x17\xf8\x5d\xeb\x51\x0d\x2b\xdc\xa1\xcb\x22\xca\xfa\x85\x0d\x5a\x50\x85\x83\xd6\x24\xa2\x4f\x52\xb8\xd9\xbf\x39\xa9\x1f\x31\x3f\xdf\x0c\x4d\x1e\x75\x9d\xbe\x07\x1e\x7d\xa3\xad\x72\xec\xc6\x9a\x70\x27\xa2\xe7\x5e\x51\xca\x0f\xe7\xb4\x5c\xde\x39\x85\x4e\xed\x24\x76\x05\x13\x04\xc9\xc7\x71\x6d\xcc\x74\x5c\x4b\xbb\x05\xcb\x41\xb8\x13\x37\x8a\x28\xe0\x27\x4a\x4f\x83\xc5\x3e\x9c\x3d\xdb\xdc\x9c\x57\x96\xf3\x5a\xb9\xac\xae\xc0\x1f\x2f\xfc\xc6\x85\x63\x1f\x77\x85\xdd\xf6\x8a\x72\xfe\xbb\x32\xb1\x9a\xcb\xfc\x3f\x4f\xfa\xa6\x6b\x55\x79\x06\x80\x1b\x7e\xad\x9a\xf2\xa3\x38\xea\xb1\xda\x0d\x63\xf2\x30\x13\x05\xa0\x37\x09\x8b\x59\x68\x8e\x4c\x77\x48\xcc\x79\xfa\x18\x10\x5d\x9b\x2d\x0f\xc8\xd3\xe4\xb6\x34\x5e\x0e\x6c\xf6\x68\xb9\x13\xe1\x14\xbe\xc9\x2c\x2f\xc7\xd4\x2e\x87\x17\xe8\xfb\x4d\x0c\x2f\x9f\x22\xa4\x85\x8d\xf5\x05\x4b\x53\x01\x05\xd3\x30\x21\x9f\xda\x4e\x29\x94\xf4\x0c\xca\x74\x6b\x5a\x2b\x1d\x5d\x45\xbc\x80\xf5\xc1\x64\x79\x71\xb5\xd7\x10\xf9\x81\x49\xf7\x94\x5f\xc4\xbe\x4d\xe5\x8a\xdd\x7c\x1d\xd9\x04\xeb\x90\x15\xaa\x53\xf3\x4d\x85\xb8\xfb\x2e\xf6\x19\x67\xb3\x55\xfe\xb6\x5b\x8e\xe5\xcf\x89\x4d\x7b\xe3\x6b\x5f\x11\xf7\x77\x85\x3d\xdb\xd6\xf6\x5b\xd6\x11\x52\x6a\x76\x5c\x16\x7f\xe1\x87\x55\x8a\x3d\xb6\xa6\x6b\xfb\x79\xd8\x50\xf2\x5a\xd0\xf5\xe5\xd7\x0a\xd7\x99\x8e\xad\xed\x0e\x1b\x4a\x56\x9e\xeb\x7c\xfc\xa6\x86\x9f\x3d\xdb\x1c\x06\x61\x28\xa7\x96\xd0\x8a\x95\x89\xfe\x89\xe2\x51\x5f\x4c\xcd\xed\x6e\xfa\x72\x7e\x48\x2d\xd5\x99\xfc\x4b\xba\x26\x76\xf5\x40\xdf\xc4\x91\xb0\xca\x3b\x13\x2f\x03\x55\x7d\xc5\xc3\x47\x8b\xee\x17\xbc\x69\x60\x2a\x30\x40\x13\x93\x64\xd7\x9a\x8f\xa8\x7b\x41\x9a\xd2\x5e\xf6\xe5\xaf\x4b\xef\x81\x06\x57\xfa\x10\x1e\x1d\x98\x76\x87\x49\xdc\x03\x27\x75\x41\x6b\x54\xb8\x37\x75\x95\xa1\x71\x12\x67\x36\xcd\xa8\x53\xa7\x3c\x03\x0b\x55\x32\x59\x9f\x88\x8a\x67\x0f\x34\xc7\x71\x18\x64\x9d\x3c\x01\x66\x1a\xfd\x83\x37\x75\xdf\xfd\x4d\x15\x81\x75\xec\x60\xc8\xb2\x5b\x6c\xf8\x49\x5b\x87\x98\x7f\xd6\x84\x22\xfd\xc0\xd5\xea\x10\xad\x32\x0b\x93\xdf\xd4\x94\x84\x10\x46\xe2\x54\x75\xc5\xc9\xf2\x23\x52\x9c\xd4\x56\x51\xd6\x24\xe1\x2a\xd9\x32\x60\xcf\xe5\xb0\x85\xdf\xf0\x93\x61\x67\x13\x6a\x90\x60\x2e\x5f\x56\x76\xf3\x97\x95\x84\xc4\xdf\x2a\x04\xd6\x2d\x2c\x77\xe7\x0d\xe7\x4d\x0e\x26\xe1\xe1\xfb\x08\x80\x97\x0c\xac\x96\x45\x6c\x35\x5e\x74\xaa\x88\xaa\x03\xdf\x31\xd1\x52\x10\x0d\x1e\xf2\x94\xed\x13\x2a\x23\x05\x5c\x0c\x25\x94\x9b\x5a\xd9\xea\x1e\xf6\x07\x7e\x53\x28\x01\x18\xc4\x3e\xa2\x88\x5e\xc7\x1d\xca\x92\x80\x5d\xc0\xb1\xd7\xdc\x50\x3e\x71\x37\x26\xc2\x94\x85\x17\xf6\x37\x7b\x76\x9c\x67\x81\x03\x15\x60\x71\x6f\x14\xea\x08\xdf\x98\x20\x1b\xcf\x1e\x20\x09\x4a\xee\x14\x0b\xcc\x87\x1a\x67\xde\x55\x4b\xf5\x66\xd3\xe1\x93\xf8\x76\x11\x41\x52\xac\x18\xb8\x0b\xe0\x80\x3d\x41\x51\x89\x53\x99\xf0\xf8\xbd\x1b\xca\x2f\x7f\x9a\x1a\x56\xe5\x4e\x58\x86\x3a\x18\x8c\x8f\x0a\xdf\xe3\x9d\xa6\x8e\x14\x52\x05\x94\x0e\x01\x6c\xb8\xa6\x77\xb2\x56\x75\xd2\xcd\xcd\x2d\xf2\xf2\xbc\x4e\xf5\x03\xa4\xc9\x37\x50\xe6\xe5\x7f\x68\xa9\x76\xda\xd5\xd6\x16\x70\xe8\x97\xbf\xde\x9c\x9b\xdb\x8f\xf5\xe8\x6c\xfd\x17\x5e\xd8\xef\x60\x93\x52\xd0\x5b\x36\x61\x0e\x2e\x0c\xf6\xe0\xd7\x0b\x55\xb6\x7e\x5d\x25\x06\xe9\xd0\x2c\x31\xfe\x7d\xf3\x52\xb9\x7f\x6c\x5e\x72\x41\xd7\x92\xb5\x11\x83\xcd\x1d\x25\x4e\x79\x0d\x6e\x8d\x42\xe6\xe6\x9a\x61\x30\x0a\x7c\xd4\xc4\x89\xa2\x42\x00\x9d\x52\xed\xa8\x65\x13\x86\x76\x75\x5a\xed\xaf\x9f\x28\x5c\xec\x27\x85\x17\x6e\x7c\x57\x31\x07\xde\x6d\x79\x54\xc4\x30\xc8\xba\x43\x8a\xf3\x1d\xcc\x50\x09\xc9\xed\x51\x6a\x03\xfd\xec\x11\xd5\x0e\xb8\x0a\xf8\x94\xb0\xe9\x7d\x5c\x5b\x81\x07\x81\x0e\x87\x73\x77\xaa\xad\xa1\xcb\xa8\x10\x21\x44\x3d\x85\x87\xc7\x4f\x12\xcf\x1b\x6d\xd9\xbf\x2d\x54\x90\x4c\x3a\x94\x9b\xaf\x4f\xec\x97\xf3\xf3\x4c\xbb\x8d\x05\x10\x21\xca\x2f\x0d\xaf\x02\x53\x0b\x67\x4e\x97\x82\x84\x65\xb2\x1d\xc2\xd4\xe5\xc6\x17\x27\x32\xa3\xd9\x03\xcd\x38\xc9\x86\x71\x2f\x3e\xa4\xd4\xde\xd7\x95\x66\xe9\xba\xeb\x29\xb0\xcf\x5e\x83\x46\x09\x85\x28\x56\xa2\xe1\x37\x13\x8f\x7e\xf6\x40\xb3\xdc\x38\x03\x9b\x66\x60\x44\x62\x5d\xdc\x87\xfd\x3e\x06\x07\x95\x17\xd6\x0c\xa8\x90\xf4\x96\xe2\x68\x4a\xc9\xf4\xfc\x44\x41\x86\x58\xf2\x04\x1b\xe8\x55\x6d\x03\x1c\xa5\x41\xcf\xee\xc6\x7a\x47\xb7\x7d\x43\xf9\x1a\x5f\x2b\x14\x35\x1f\x2d\x00\xa5\x89\x2a\x89\x3b\x7b\x96\xf0\xc7\x5b\x7e\x41\x9f\x53\x61\xca\xf7\x0a\x0f\xbc\xd3\x32\x0f\xdd\x38\x8c\x93\x69\x8d\x40\xe6\x3d\x5d\xcb\x88\x8a\x5f\xac\x6a\x0f\xae\xd7\x08\xcc\xf5\x4d\x14\x31\xd2\x5f\xf4\xb4\xe9\xfa\x85\x11\x28\x4f\x26\x1b\x26\xd6\x48\x1b\x11\xf3\xf7\xae\x96\x93\xa7\xcb\x96\xd7\x93\x92\x21\x89\x79\x35\x4e\xa6\xd4\xee\x71\x56\x91\x8c\xe0\x3e\x89\x8d\xe7\x8c\x1a\x69\x13\x8c\x82\x68\x30\xed\xfd\xe5\xd6\x95\xb5\x1b\x24\xf2\xf9\x75\xb5\xcf\xa8\xb7\xe6\xcc\x62\xd6\x49\x25\x98\x16\xa3\x54\x7f\x6b\xb6\xfd\xa1\xe1\x4e\xf5\xe6\xfb\xb4\x70\xde\x2f\xb6\xca\xcc\x13\x03\x35\x31\x51\x3a\x8e\x93\xcc\xeb\x26\x09\xdd\x4a\x65\x13\x7e\x5e\x07\xd1\x2b\xb9\xa3\xfa\xa3\x11\xb0\x6d\x4d\x49\x8b\x1e\x51\x3c\xe2\x9b\xae\x03\x9a\x25\x52\xab\xaa\xad\x0b\xd6\x28\x64\xf4\x4d\x1e\x99\x86\xaa\x47\x5e\x54\x84\xa9\x8b\x35\xde\xfe\xcd\x9e\x0d\x83\x65\x9b\x54\x03\x9b\x75\xa5\xc9\xbd\xae\x00\x90\x69\x18\x0c\x86\x59\xb8\xfa\xb0\x67\x19\xfd\x21\xcd\x5d\x97\x23\x94\x3b\x12\xd7\x06\x71\xc8\x23\x44\x3f\xaa\x0a\x45\xcc\xbf\x70\x7e\x77\x8b\x0b\xbe\x83\xee\x8e\xf5\x3b\x2d\xd5\x40\xf9\x00\x7d\x30\xe1\x75\x6c\x4d\xb1\xe7\xe6\xf6\x97\x21\x63\x3a\xb6\x5d\xe2\x61\xaa\xe2\x62\x55\x42\xe0\x49\x4f\x1a\xb0\xd1\x20\x1b\x8a\x3b\x10\x8a\x1c\xff\x2b\x85\x2e\x88\x90\x4f\x61\x3b\x65\x10\x05\xb0\x34\xb8\x5f\x7c\xa3\x90\x47\x26\xca\x4f\x7b\x9b\x83\xa0\x0f\xa6\x88\xd8\x99\xfb\x2d\x05\x82\x6a\xa2\xdd\xe8\xd7\x73\x14\xfc\x7f\xdf\x87\x1e\xe4\x6c\x1c\x99\xa8\x8b\xc4\x50\x54\x4f\x68\xae\xf0\x1b\x25\x78\x41\x1a\x31\x03\x62\xee\x7a\x01\x0f\xac\x46\x21\xaf\xfa\x16\x41\x9a\x19\x04\xe1\x72\xa4\xfe\xb0\xe5\x91\x26\x3f\xac\x29\x31\x8f\xf3\xee\x12\x4d\x5a\xd5\xf9\xd4\x1d\xd1\x9a\x15\x97\x66\x26\xe8\x4d\x79\x28\xe2\x7a\x4b\x59\x2a\x1c\xa3\x0b\xc3\x49\xf6\xee\x56\xc2\x0a\x19\xcc\x7f\x71\xe7\xc4\xd6\x87\x89\x72\x52\x53\xf9\xd8\x50\xd6\x89\x3c\x3a\x9a\x10\x2b\xe4\xc8\x6e\xe9\x63\x5b\x0e\xc8\x29\xb6\x15\xcd\xa2\x32\x06\x43\xc8\x78\x5e\xb9\xbd\xa3\x52\x86\x03\x8a\x09\x16\xce\x53\xc0\xdb\x2f\xfe\x5b\xd5\x5c\xf9\x8e\x82\x2f\x44\x5d\x63\xea\xf6\x72\x07\x2f\x9e\x9f\xe7\xc2\x29\xf7\x60\xb9\x59\x34\xa1\x5b\x4f\xae\xe4\x89\x35\x79\x37\x31\xc2\x14\x91\xbf\xf5\x25\xdf\xd7\x54\x35\x3e\xb1\xe9\x38\x8e\xb0\xf9\x4b\x15\xa2\xf1\x3b\x2f\xba\x22\x84\x3e\x29\x63\x13\x91\xc4\x11\xea\x92\xaf\xd1\x7a\x96\x7e\x6b\x05\x4e\xa9\x2c\xdf\x36\x5b\xca\x59\x0f\x83\x8e\xd0\xf7\x72\xcd\xcc\x49\xf3\x4e\x1a\xf4\x30\x85\xf1\x98\x20\x60\xc9\xaf\x27\x0a\x6b\x24\x7b\x99\x66\x26\xea\xa5\x59\x10\x86\xba\x08\xa9\x88\x89\x6c\xef\x8b\xe4\xe4\x88\x8e\x01\x03\xd3\x8d\x47\x53\x4a\xbf\xf1\x4d\x1a\x25\x3c\xde\xd3\x9a\x89\xfd\xa9\x0e\x5a\xad\x49\xba\xc3\x0a\x35\x51\x37\xc9\xb7\x46\x27\x64\xc0\xa3\xa5\x91\x90\xe6\x40\x69\x88\x5f\xab\x03\x2f\xcb\xa3\xc8\x86\x48\x96\xb9\x69\xa4\x44\x14\xcf\x55\x1f\xc8\x4a\xfa\x68\x39\x1f\x51\x9e\xfe\x73\x3c\x04\x41\x6f\x68\xaf\xb9\x53\x94\x2c\x82\x3a\x30\xdd\xf6\x11\x18\x37\xcc\x30\xcd\x20\xc9\x8f\x09\x38\x0d\x5c\xa5\x53\x13\x3b\x38\x53\x41\x49\xa0\xba\x70\x13\x73\xdb\xed\xdc\xce\xba\xe8\x48\x45\x16\x27\x8a\xe2\x0c\xd9\x00\x9b\x3f\xd1\xfd\x88\x11\x94\x1f\xd7\x0e\xd8\xf7\xe5\xf7\xa3\xa2\x72\x83\xbe\x92\x5f\xab\xd8\x27\x8b\xe3\x30\xd5\x64\x9b\x0d\x4d\xb6\xd9\x98\x88\x3e\xe7\xe6\x9a\x26\x48\xc2\x20\x72\x09\x20\xda\x58\x9f\x68\xa0\xc9\x27\x95\x45\x01\xe2\x8b\xa2\x74\x61\x32\x08\xbf\xeb\x71\x45\x3d\xeb\x66\xe1\x2a\xa2\x1a\x71\x90\x52\x98\x77\x08\x1b\xca\x7d\x6f\xbd\xb0\x2f\x7d\xa9\x99\x76\x13\x6b\x46\xa2\x3d\xa8\xaa\x23\xf3\xae\x3a\xe2\xf0\x58\x71\x62\x1f\xf3\xf0\x87\x3d\x6b\x3e\xdc\x7a\x86\x0a\x6c\x9b\x97\x54\xb0\x38\x45\x0e\x85\xc8\x0a\xef\xe3\xf0\xa4\xcc\xe0\xb3\xff\xae\x4d\x27\x34\x6d\xdf\xef\xfd\x56\x5b\x49\x93\xb1\xf5\x21\x4e\x5f\xa8\x28\x11\x1e\xe0\x48\x73\x4d\x09\x48\x72\x15\x10\x79\xd8\x34\xc9\x68\x3a\xaf\xa4\xf2\x1e\x84\xe5\xe2\xb1\x98\x36\xb5\x8f\xfa\xa2\xc4\xf6\x35\x9a\x35\x78\xac\x7f\xa4\xd9\xa0\xf8\x79\xcc\x52\x36\x6b\xc5\x47\xfe\xff\x6b\xda\x06\xa4\xf0\x40\x33\xe2\x0e\x71\x7c\xb1\x63\x4d\x03\x43\x1b\x6d\xd7\x7d\x7c\xfb\x4b\x6d\xa5\x5c\x02\x3c\x14\x1e\xe4\xa4\x4e\xe0\xde\xbd\x4d\x1b\x39\xd7\x20\x16\xca\x2a\x94\x2e\xe4\x2d\x45\xf2\x5e\x89\x63\x58\x29\x20\x46\x60\x6e\x14\x96\xc3\x8e\xb5\xf2\xca\x54\x00\x2e\x4d\xfd\xa3\xda\xc5\xe3\xa6\x57\xc2\x4d\xe2\x5e\xde\xb5\x0f\x35\x44\x19\xf6\x57\x6f\x15\xde\xe9\xf9\x6a\xcb\x0b\x59\xac\x2b\x6d\x3f\x46\x07\xa1\x55\xc5\xe4\xa8\x8a\x73\x0a\xce\x9d\xa7\x55\xe7\x65\x64\x6d\xb6\x43\x4d\xe6\xc3\x2d\x1d\xf2\x94\x43\xcb\xaf\x11\x26\xbb\x9a\x85\xf3\x4d\xb8\x5a\x37\x68\x89\x59\xe5\x18\xd8\x5d\xb0\xa3\x31\x5f\x55\xa2\x38\x89\xcd\x3c\x7f\x46\xb8\x68\x80\xd4\xf2\xeb\x3a\xff\x90\xcc\x24\x41\xbf\xcf\xe7\x19\x6a\x96\xc8\xb6\xf9\xb5\xae\xd8\x13\x0f\x78\xaa\xaa\x65\xe8\x4f\xdd\x4d\x2c\x79\xcc\xb1\x4b\x8a\xbf\xd6\x4f\x82\xe5\x38\x8c\x73\xf4\xe0\x25\x04\xd6\x6d\xe9\x62\x8b\x42\xc9\xde\x59\x3a\x7f\x1e\x6a\x38\xd1\xbf\x0d\xa4\xe6\x38\xa9\x4f\x23\xcd\xe7\x37\x4a\x04\x63\x8a\x70\x33\x12\x13\x2b\x9c\xe2\x47\x8a\x50\xfc\xa3\xca\x3e\x6f\x0f\x65\x8f\xd0\x57\x2b\x10\xe2\x7c\x05\x5d\x08\x64\xd7\xb6\xb6\x2a\xe4\x72\x6b\x05\xe0\x94\xe3\xf4\x94\x45\xfb\x0a\xa3\x83\x1d\xea\x3c\x9e\xb3\x8c\xa4\x3f\xff\xb8\xb2\xc9\x52\x75\x85\xb2\xd9\x39\x59\xd3\x02\xda\xdf\x1c\x9b\x2c\xa0\x8a\xf0\xdc\x9c\xa3\x7e\xf8\x59\x73\x6e\xe2\x33\xfb\xe6\x9b\xbd\x20\x25\xc7\x35\xe5\x76\x75\x46\xb9\x5d\x9d\x51\x7b\xc8\xe2\x97\xf7\x63\xd6\x02\xa1\x34\xdd\xd6\xe2\x1d\xe7\xb4\x1d\x33\x9c\x50\xc5\x4f\xa7\x1c\x6b\x6e\xf2\xe8\x1d\x69\x90\x22\x64\x44\x73\x70\x67\xdb\x03\xce\xb6\x03\x2a\x8e\x95\x7b\xac\x50\x80\x92\xab\x0a\x76\x72\x4c\x93\x8a\xef\xd5\x28\x57\xec\x6f\xae\x98\xc4\x59\x69\xa0\x94\xf2\x03\x6c\x24\xfc\x46\x31\x06\x43\x33\x18\x10\x1c\xdb\x69\x8a\x71\xf5\x50\xcc\x49\x94\x69\xb9\x89\xf9\x0c\xab\x98\x78\xf3\x1b\x07\x5e\xed\x05\x69\x1a\xf4\xe4\x71\xf0\x73\x57\x2a\x76\x67\xb4\x50\x55\x9c\x08\x1c\xdc\x35\x23\xa1\x9a\xc2\xaf\xeb\xea\xf3\x1d\x93\x0c\x4c\x10\xb9\xa0\x46\xb8\xc5\x3e\xf6\x3e\xab\x94\x51\xa2\xc0\x86\xa9\x8d\xf8\xca\xa5\x4f\xaa\x9b\xa6\x4a\x41\xbc\x1b\x07\x51\xb7\xbc\xf8\x2e\x44\x7f\x1d\xbe\x7d\x9f\xc3\xba\xd7\x48\x42\x11\x50\x7d\x34\x46\xde\x85\x64\xe1\x24\x06\x51\x3c\xc4\xcb\x4b\xc3\x38\xdd\x9e\x20\xf9\x1f\x9c\x99\xa5\x34\x78\x30\xcc\x2c\x12\x11\xc0\xec\x10\x2c\x39\x87\x2c\x4f\x35\xba\x55\x78\x9c\x70\x3f\x27\x88\x12\x02\x49\xac\xaa\x8f\x95\xf4\xe8\xdb\x8a\x63\xfd\x5a\x4d\xfe\xfd\x52\xb3\x2f\xf6\x08\x1e\xbd\xc1\x0d\x2d\x7e\x53\xe7\xe5\xda\x49\xbc\x9e\x2f\xd6\xe5\x6d\x2c\x03\x7e\xe3\x8e\x96\xb8\xb7\x9a\xa6\x16\x51\x35\xee\xff\x70\x4b\x4d\x9a\xc3\x75\xf5\xb4\x30\xee\x74\x56\xdd\xc3\x95\x16\x7a\x63\xde\x1b\xf7\x79\xb6\x5f\x3f\x4e\x6c\x30\x88\x2c\x4c\xae\x3c\x7c\xdd\x97\x5c\x7e\x4a\x47\x19\xd6\xea\x55\x37\x47\xd9\xde\x45\xd6\x08\x06\xfc\x8a\xa2\x57\x5c\x69\x3d\xaa\x9c\x86\x10\x42\xd6\xd5\x5a\x6b\x54\x67\xc2\x4e\x3c\xa5\xa6\xd7\xd4\x9a\x07\x32\x40\x1c\x0d\xeb\xfb\x54\x5d\xf6\xbe\x4c\xed\x55\x8d\x46\x75\x2a\x74\xc7\xf1\x5b\x38\xb1\x87\x41\x18\xa7\xf1\x78\x68\x93\x74\x5a\x39\x63\x72\xee\xea\xda\xc5\xfb\xe6\x9d\x64\x06\x3d\x52\xe9\x1d\x3b\xd8\x94\xcd\x04\x5a\x80\x93\xf7\x4f\xb4\xce\xfe\x25\x95\x58\x5e\x54\xcd\xe3\x6e\x90\x74\xf3\x74\x67\x95\x69\xe7\xf3\x84\x1b\xd8\x9f\x98\xfb\x83\xf8\x03\x39\xd8\xa5\x2a\x1f\xaf\x7c\x30\xc8\x5c\xfe\xa9\xca\x8c\x5e\xc9\x47\x63\xd6\xf3\xc0\xa3\xe0\x19\x83\xd8\xea\xff\xe2\x03\x04\x39\x04\xaa\x21\x92\x65\x3e\x59\x6d\xcc\x93\x86\x8b\x9b\x35\x70\x81\xe2\xd7\xaa\x87\x34\xcc\x93\x5e\x68\x19\xbb\x50\x47\xae\x7e\x52\xa7\x13\x5d\x5b\x06\x68\xe5\xce\x80\x88\x0a\x52\xb5\xfc\x5a\x35\x1e\x47\x41\x2f\x0d\x5e\xe5\x55\x85\xa1\xc5\x10\xf1\x6b\x55\xa3\x1f\x99\x8c\xe9\x78\xa8\xff\x4f\xaf\x79\xb6\xe3\x79\x25\xbb\x7f\xcb\x8b\x20\xe6\x89\xeb\x04\x3a\xae\xb1\x2b\x8b\x68\xae\x31\x75\x32\xbb\x59\x10\x47\xbb\xcb\x3f\x40\xe8\x21\xb0\x40\x94\x5b\x3e\xa5\xf4\x4c\xd8\xd5\xbe\x50\xfd\x08\xce\x73\x89\x75\x15\xb4\xe3\x65\x7a\x70\x7c\x1c\xb7\x14\xc0\x8c\x37\x29\x1c\x85\x6f\x4f\x40\xc0\x66\x0f\x34\xd3\x3c\x49\x2c\xbb\xf8\x72\x63\x8e\xc6\x5a\x9a\x74\x3a\xd1\xed\xc6\x51\x0f\x66\xe4\x02\x8f\x21\x90\xb5\xa8\x96\x37\x9c\xb6\xea\x74\xdb\x13\x6a\xd7\x99\x2b\x26\x42\xe7\x0d\x47\x61\x9f\x5e\x53\x2a\x8c\xd6\xa4\x36\xb4\x69\xca\x3d\x1e\x27\xa6\xeb\x81\xb1\x0a\x0e\x92\x0d\xed\xe8\x73\x1e\xcc\xb7\x6d\xcd\x83\x45\xdf\x25\x9a\x9a\xeb\x87\x94\xf1\x70\xe5\xf0\x66\x02\x9b\xb2\xcc\x3e\xae\xc9\x0c\x10\xf1\xc1\x44\x7b\x17\x0b\x85\xad\x58\xa8\xd4\xc3\xf6\xcd\x2d\x25\xae\x7d\x86\xa2\x64\x0e\x8c\x11\xe5\x09\xa4\x80\x8a\x84\x7c\x59\x5a\x2e\xfd\x02\x95\x38\x91\x26\xdd\x07\x10\xd8\xe1\xc2\xcb\x75\x2a\xe6\x2f\xf4\x84\x71\xf7\x47\x8b\xc6\x57\x67\x9d\xf3\x88\xf2\xb7\x5c\xb1\x10\x19\x9b\x9b\x73\x20\x64\xb5\x9b\x9f\x57\xc2\xd1\x63\x9b\xb8\x82\x68\x79\xf7\x28\x36\xa0\x34\xc2\xaf\x27\x26\xc8\xb3\xcd\x91\x89\xcc\x80\x6a\xee\x62\x33\x7b\xfb\x49\xda\x32\x51\xe0\xe5\x3a\x3b\x52\xda\xa3\x18\x49\x64\xaa\x0f\xaf\xd5\xc4\x09\xa3\x38\xb2\x65\xf8\xce\xb6\x24\x6c\x6b\xa4\x5c\x25\x7e\x32\x71\x22\x3e\xdb\x1c\x98\x70\x99\xe8\x1d\xb8\x4d\xe1\xb1\x69\x52\xdb\xc4\x09\xbe\x38\xb3\xd8\xb4\x87\xc6\x36\x82\x08\x98\x8b\x7a\xee\xd0\x7a\x92\x0c\xa9\x1c\x06\x81\x4a\x6e\xdd\xfa\x7f\xbb\xd9\x0f\x92\x34\x43\x4f\x50\xd8\xab\xde\x77\xf7\x6c\xe1\x91\x65\x47\x55\x59\xea\x62\x51\x91\x16\xed\x87\x41\x37\x73\x02\x01\xbc\xb5\x52\xf8\x2f\xdb\xac\x02\x39\xd9\x34\x7b\xd4\xb7\xda\x20\x17\xec\x20\x1d\x3e\x7f\xfb\x3d\x9c\x08\xd2\x0c\x2b\xaf\x09\xe5\xc8\xb3\xaa\xe5\xc2\xed\x75\x5c\xf8\xe5\x96\x8a\x3b\x37\x68\xa1\x62\x2a\xbd\x43\x93\x57\x5c\x67\xe9\x56\xf1\x5c\x6f\xe2\x51\xa2\x47\x7b\xa5\x78\x46\x67\x54\x29\x8c\x9a\xc3\x55\xea\xc3\x38\x38\x6e\x79\x81\xce\x2b\xab\x9c\xd3\xc2\x35\xf1\x16\x52\xff\x43\x1d\x5c\x6c\x3f\xc5\x4c\xa9\x6c\x9f\x2a\x61\x75\xbe\x9f\x15\xda\x73\x38\x36\x0d\xe5\x36\x73\x5b\x59\x7c\xdf\x56\x9d\x09\x52\x72\xcb\x13\x86\x3d\xe2\xe7\x21\x01\x8f\x72\xd5\xfb\xf8\x05\x29\xa4\xfa\xd3\x6e\x10\x87\x3d\x8b\xdd\x59\x59\x7f\xbd\x24\xd6\x00\xb4\x39\xf3\xee\xda\xaa\x78\x06\x94\x43\x89\xbd\xe6\xb3\x42\xd1\x27\xaf\x6a\xad\xda\xc3\xf4\xec\x71\xe8\x1f\xf6\x35\x95\x7f\xa3\xd7\x74\x77\x68\xa2\x81\x4d\x9f\x50\x0c\x81\x53\x85\xdf\x14\x37\xe8\x87\x44\xb5\x81\x2e\x0d\x77\x74\x17\x1d\x4e\x59\x12\x8d\xdf\x79\x91\xab\x9c\x37\x80\x53\x70\x0b\xa7\x9c\x3d\x58\xa4\x77\xb5\x0c\xf1\x47\x34\x3a\x62\x97\x46\x5b\xa7\x60\xe0\x7c\x2a\xc2\x30\x7e\x99\xa2\x4a\x58\x60\x03\x53\x00\x38\x52\x78\x62\x09\x07\xfa\xa9\xad\x7e\x40\x50\x9f\x11\xc9\xce\x5b\x5a\x77\xec\x96\x4a\x14\x3a\xa1\x89\x96\x6c\xf6\xc0\x0a\xb0\x6e\x4b\xe4\xdd\x25\x1d\x12\x56\x7b\xae\x35\x90\x16\x93\x0e\xe3\x04\x3b\xa1\xf0\xc5\xca\x71\x15\xba\x98\x0f\x1c\x4c\x27\x27\xc6\x6b\xc3\x37\x44\x4e\xd2\x23\xe0\xd7\x13\x12\x2b\x2f\x2e\x34\x43\x6b\x7a\x5b\x90\x4a\x0a\x78\x88\x93\x4c\x54\x61\x47\x84\xf0\xc1\x18\xbe\x59\x28\xc1\x1f\x86\x8a\xa3\xbe\x7e\x07\x27\x39\xf2\x4d\xb4\x8d\x50\x66\x80\xbb\xb8\x68\x08\x2b\xb0\x2d\xd8\x28\x4e\x09\xc8\x29\x7e\x5d\x53\x5a\x0e\xa3\x20\x1a\xc4\x0d\xdf\xb4\x85\x96\x03\xbf\x2e\x74\x12\x16\xf5\x83\xc8\x3a\xcf\x4c\x57\x47\xfe\x7f\x51\x8b\xd9\x3b\xdb\xcc\x82\x7e\xdf\x44\xc8\x35\x1c\x4f\xc2\x1b\x23\x9e\x9b\xc8\x94\xe7\xe6\x38\xcc\xe0\xea\x0e\x0e\x05\xa0\x36\xf8\xb5\x0a\x14\x33\x1b\x86\x41\x34\xd8\xe1\x59\x06\x67\x71\x9a\x8a\xdf\x9e\xa7\x1c\xf0\x61\x8a\x98\xff\x35\x0e\xb7\xb0\x83\x9e\x54\xb6\x91\x5d\xed\xc9\x82\x8f\x48\xdc\xe2\xd0\xbf\xf1\x8a\x49\x00\x40\xc6\xee\x78\xbd\xa5\xe0\x2c\xd7\xeb\x0a\x1b\x29\xb3\x56\xe8\xcb\x2b\x8d\x10\x7e\x53\x07\xaa\xf8\x62\xb3\x17\x8c\x79\x18\x24\xf1\x6f\x28\xbb\xd2\x3a\x99\x92\x34\x0a\xfa\xfd\xf2\x98\xfc\xda\x57\x5c\xbd\xb8\x52\x49\xae\x03\xf4\x13\x77\x79\xaa\xdc\xd5\xd8\xf1\x97\x9e\x2a\x6a\xc0\x47\x68\xdf\x41\x35\xe8\x87\x0f\xec\x34\x76\x92\x9c\x21\xae\x98\xab\x6f\x60\xe4\xf8\x8d\x2a\x91\x9a\xa4\x83\xc9\xe0\xf8\xa5\x2e\x11\x9c\xc4\x76\xed\x9b\x6f\x26\x36\xca\xca\xd8\xd4\xe1\x42\xa0\xc3\xc3\xaf\x8b\x47\xdd\x46\x61\xc3\x11\x57\x13\xc4\x40\x94\xae\x40\xac\x45\xb7\xa6\x84\xcf\xd2\x26\x3f\xe5\x2b\x43\x4c\xb5\x16\xbe\x51\xf9\x83\x08\x21\xaf\x56\x2a\x6f\xa9\xc9\x88\xd7\x8c\xdd\x0f\x9e\xe3\x52\x84\x6b\x38\x65\x66\x2c\x3c\x3c\x27\xd8\x27\xb3\xa6\x0b\x7d\x2f\xf6\xc7\x0d\x45\xee\x13\x03\xcb\x11\xb8\xb7\x18\x6d\xe6\x57\x63\x8d\x1f\xc6\xb4\xe6\x7f\xe1\xd9\xcb\xff\x34\xd1\x06\x23\xbd\xa4\xcc\x26\x81\x09\x3d\x25\xb6\xce\x66\x78\x8f\xaa\x38\xf5\x0c\xcd\x68\x61\x44\x94\x37\x23\x54\x89\x87\xfd\xc4\x27\xd2\xbf\xc8\x11\xf9\xda\xe0\xfb\x34\x4b\x50\xe9\xbf\x87\xa0\x59\x92\x41\x3d\x7a\xc3\x20\xda\x55\x86\x34\xa8\x6f\xde\x2f\x94\x2c\xf0\x86\x62\x07\xfd\xbc\x50\xce\x27\xeb\xba\x29\x73\x8f\x53\x09\xfe\x4c\x05\x00\x09\x6d\x5d\x26\xd8\xab\x7e\x75\x18\x9b\x28\xdd\x5d\x06\xcf\xce\x72\xc6\xb5\x71\xae\x20\x4e\x11\xa9\x17\x45\xaf\xbb\x8f\x19\x2c\x6e\x75\xe5\x73\x16\xb1\x1b\xb5\x6e\xbf\x8f\x43\xd2\xc9\xc6\xb8\x7a\xd9\x13\xed\xa7\x14\xaa\x34\x32\xdd\xa5\x78\xd9\x68\x31\xa7\x8f\x55\x39\xe4\xe3\x89\x03\xe4\xe0\xcc\xf3\xcd\xb8\xd7\x6b\x78\x27\x30\xb4\xcc\xf9\x75\x6b\xab\x58\xd2\xc1\x99\x72\x8f\x31\x49\x37\xcd\xb6\xba\x76\x5d\xd1\xf8\xfd\x2b\xae\x53\x35\xb0\xd1\x38\x89\x3b\xb6\xa1\x42\xbe\xc6\x9a\xc7\x98\x35\xda\x4f\x29\xf1\xda\x74\x48\x62\xa4\x4a\x85\x82\x1b\x60\x42\x00\xf7\x49\x62\x68\x56\xb2\x38\x9a\x2a\x73\x30\x2d\x29\x88\x45\x72\xab\x62\x97\x53\xc3\x59\xc8\x56\xc7\x96\xb7\x3c\xb4\x9d\xee\x29\x2c\xe7\xbd\x3a\x33\xcc\x38\xef\x64\x3c\xc5\xd1\x43\x39\xae\x85\xbd\x8f\x2b\x80\x1e\xda\x84\x1e\x94\x7c\x5b\x09\xa5\xdc\xae\x31\x2a\x9d\x6f\x76\xcd\xd8\x74\xbc\xba\x42\x1d\x10\xe6\x73\xba\x73\x4e\xdd\x3f\x91\xfd\x06\xf6\x0d\x4a\x6f\xfc\xda\xc9\x83\xd8\x71\x10\xda\x71\xba\x3a\xad\x8a\xe3\x85\xaf\x6d\xfe\x31\x6e\x41\xf4\x51\xfc\xa6\x7f\x47\x55\x7e\xad\x59\x7a\x58\x01\xee\xb0\x17\x41\x0a\x01\x25\x2d\xac\x32\x18\xc9\xa0\xd7\x75\x05\xa1\x1b\xc2\x96\x69\x28\xfe\x60\x8f\xde\xb1\x46\xa9\x2a\xf0\x29\x17\x30\xab\x85\x91\xe1\xe9\xd0\xa7\x11\x6c\x22\xe7\xb9\xa4\xf2\x9c\xc4\x7e\x23\x0f\x12\x16\x7f\xf7\x66\x33\xc8\xde\xc5\xe9\x60\xe2\x88\x23\x20\x6e\x47\x70\x09\xe0\x2c\xe1\x88\xe3\xd7\x93\x5e\xa6\x33\x8b\xcd\x30\x58\xc2\x00\x0b\xbd\xa8\xfc\x0d\xe9\xf2\x57\x02\x96\x8a\xab\x83\xf0\x8a\x3c\xb9\xe0\xa6\x53\x33\x1e\x27\x71\xdf\x92\x47\xa5\x09\x95\x5c\xec\x4d\x6c\x3d\xd8\x87\xd8\x00\x4e\x88\x03\xaa\xc1\x00\x52\x0c\x4e\xff\xf7\x2b\xfb\xdd\x72\x20\x0d\xe6\x0a\x49\x9b\xdf\xd4\x9c\xc5\xcd\xe1\x6a\x27\x09\x7a\x4a\x87\x05\x32\x2e\xfc\x7a\xcd\xa7\x8a\xaf\xc4\xc3\x68\x5a\x35\x40\xee\x30\x97\x43\x54\x17\x7c\x5d\xeb\xaf\xf1\xd0\xa5\x0a\xbb\x75\x9e\x3b\xa5\x4c\x2f\xef\xcb\xe5\x12\x84\xf6\x52\x3b\xf9\xbc\x4a\x6a\x47\x63\x03\x7d\xfb\x70\xb5\x41\x19\x87\x2e\x00\x49\xb8\x54\xa3\x03\x38\x4e\x82\xa8\x1b\x8c\x4d\x38\xe5\xed\xe3\x01\xc4\x44\x2e\x7c\x57\x89\x99\x7b\x33\xb3\x34\x0c\x46\x53\x0a\x9f\x8e\x0d\x05\x85\x14\x6c\x28\x62\x7f\xe6\x21\x01\x69\x16\x74\x97\xa6\xcb\xed\x13\x29\x13\x3a\x3a\x48\x99\x90\x24\x4b\x74\x54\xce\x1e\x84\xc8\x97\x27\xc2\x1b\x2a\xfe\x96\x07\xa9\x13\xd9\xc5\xe6\x08\x58\x08\xbf\x56\xf9\x7b\x9a\x99\x84\x4b\xb0\x82\x3d\xa2\xb1\x47\x72\xce\xed\x07\x7e\xa3\x0d\x6a\x6f\x6a\x88\xc0\x9f\x15\x4a\x01\x6d\x47\xfb\x49\x25\x77\x10\x2d\xad\xb2\x78\xf6\xf3\xa2\xa4\x44\x63\x81\x1c\xff\x9a\xca\x6d\xaf\x78\x65\x7b\x33\xb2\x28\x47\x23\x9e\xc1\x78\xa3\x51\x05\x90\x25\x8e\xcc\xff\x44\x67\x1c\x77\xae\x6b\x6d\xa6\xe3\x34\x0d\xc6\x58\xab\x28\x76\x41\x95\x8e\x5f\xb7\x94\xba\xe8\xc0\x46\x19\xd7\xc0\xf1\x90\xdf\x2b\x7c\x1f\x1b\x3b\x3a\x3e\x75\x41\x3b\xa7\x1e\xae\x2b\xbe\xbb\xd5\x8e\x43\xe3\xa3\xc2\xa3\xc8\x3e\xaa\x73\xe7\x48\xcd\x28\x5e\x36\x4c\x9d\x06\xfa\x84\x9d\xf9\xf8\xcd\xc4\x59\x5b\x86\xcd\x26\x0c\xa7\xcb\xed\x57\x31\x00\x17\x1c\x30\x8c\x76\x46\x4c\xa3\xcd\xc2\x67\x54\x8d\xb6\x4a\x3e\x6d\x9c\x87\x54\x82\x16\x02\x43\x79\x99\xc2\x6c\x98\x34\xa7\x69\x9a\x28\xed\xc6\x0d\x1f\x25\x32\x46\x54\xc2\x7c\x55\xde\x1b\x9b\x28\x48\x87\x0f\x6b\xcf\xb9\x42\xd3\x5d\x15\x4a\xfd\x08\x55\x3e\x31\xf3\xae\x81\x29\x80\xf4\x1d\xc5\x03\xad\x40\xc2\xff\x9f\x4a\x9a\xfc\x81\xa2\xe2\x09\x5e\x28\xae\xe8\x91\xba\x9d\x2a\xb5\x87\x72\x8e\xcc\x11\x95\x9c\x52\xc5\x83\xda\x3e\x4a\x4c\xf0\x7d\x85\xbd\x2c\x2f\x4a\x30\x99\xfe\x8e\xed\xaa\x05\x73\xdc\x1b\x2d\xd3\x37\x4b\xe9\xb3\x46\xf0\xc9\x74\x72\xd9\xbb\x70\x10\xbc\x81\xbd\x8b\xdf\xe0\xa0\xaa\x54\xf6\x48\xe0\x89\x42\x49\x91\xee\xa1\x58\x54\x42\xf9\x1a\x67\xba\xd0\xa6\xe9\x34\x45\x8b\x08\x46\x4e\x14\x9a\xc5\x47\x07\x26\xee\x65\x57\x5b\xcf\xef\xc7\xaa\x16\x29\x54\x30\x43\x02\x70\x56\xb9\x46\xbc\xa9\x88\x39\xe7\x68\x5c\xd0\xa7\x7a\xdb\x51\x28\x5e\xc9\x47\xe3\x74\xa7\x92\xf1\x78\xa8\xad\x84\xa2\xf8\x60\xd1\x66\x8f\xca\xcb\x45\xb2\xbf\x37\xb5\x19\xd5\x2f\x54\x81\x63\xd9\x42\xfc\x94\x24\x3f\x50\xa6\xfa\xd7\x85\xb2\xb4\x03\x42\x4b\x68\xe4\x4a\x5e\xe0\xa4\xee\x87\xdf\x51\x36\xe4\xeb\x35\x64\xf3\xfd\xcd\xc4\x2e\x53\xa7\xc1\x09\x8b\xb0\xa7\x3e\xbf\x51\x88\xd4\xbe\x85\x8d\x0a\x1c\x0e\x59\xb1\x05\x7f\x2c\xf2\x2d\x8f\x38\x72\x49\xb2\x0a\x56\x3e\x1e\xc6\xe3\x74\x62\x8a\x57\x90\x77\xcc\x9a\xbc\xa4\xbd\xb3\x4d\x62\x4f\xa6\x96\xfb\x6d\x18\x26\x6e\x9b\x56\xfa\xe9\x28\x1b\x6c\x6b\xfb\x06\x64\x19\x9e\x2b\x10\xec\x1f\xaa\x6e\xcf\x1f\x96\xe9\xa6\x13\xf2\x0f\xbb\x79\xc8\x5e\x94\x0d\x27\xb3\xfb\x2f\x31\xbc\xfc\x46\x47\x75\xb6\x3f\xed\xa1\xfa\xbb\x94\xea\xdc\x27\xa7\x15\xa1\xee\x76\x45\x75\xee\x29\x15\x84\xf6\x72\xea\x2d\xed\x54\xe2\xc0\xa7\xf1\xc8\xf8\x0d\x5d\x28\x46\xfc\x93\x42\x45\x10\x9f\xb4\xbc\xa0\x00\x38\x57\xa2\x97\x5e\xf7\x28\xd3\xa1\x19\x57\xfd\x7b\xb8\xed\x24\x90\x90\xa7\x14\xb9\x38\x32\x61\x16\x58\x4c\x7e\xa9\x80\x35\x9c\x90\x18\x52\x1b\x64\x57\xb7\xb1\x70\xf9\xcd\x44\x2b\x80\xc4\x69\x7a\xa3\x20\x73\x5d\x62\xf4\x19\xdf\xd0\x9a\x29\x6f\x4c\x48\xb1\x2e\xce\x34\x6d\x0a\xaf\x57\xcc\x6e\xe4\xab\x15\x78\x2a\x0b\xa3\xb8\x05\x17\xc6\xf1\x28\x85\x78\x3d\x8e\xd7\x3d\x6d\x85\xa1\xdf\x44\xe2\x88\xfc\x0d\x16\x26\x68\xa7\x7a\xfd\xa4\xa1\x0d\x83\x6e\x3c\xce\x6c\xb2\x83\xfe\x56\xcc\x6b\xbd\x04\x3e\x8e\x62\xd4\xde\x77\x92\x37\x89\x68\x49\xf8\x47\xf4\xce\x84\xfa\xff\xc1\x99\xd9\x66\x10\x99\xf1\x38\x89\xc7\x49\x60\x32\x7d\x3c\x5e\x53\xf9\xd5\x35\x4d\x8a\xb6\xa4\x83\xec\x72\x77\x28\x2a\xf1\x6b\xc5\x23\xb5\xab\xf6\x21\x45\x53\xbb\xde\x52\x94\xe0\xdb\x2d\xb5\x2c\x8e\xd3\x6d\x08\xbf\xc1\x6f\xcf\x67\xb4\x1e\xf8\x27\x18\x24\xd4\x44\xee\x16\x8f\x2a\xa9\xd7\xe4\x11\xfa\x66\x7c\xd9\x4d\xbd\xe0\x6e\x52\xd9\x1a\xf1\x20\xb7\x30\x44\x69\x9e\xbe\xcd\x59\x40\x2c\x7a\xbe\x9b\x62\xbb\xde\x2d\xfc\x79\x78\x55\x69\x35\x70\x7d\x87\xbf\xaa\xa5\x12\x1c\x3a\x6d\xdd\x39\x4e\x59\xc0\x4e\x5a\x9c\xe2\xca\x51\x7e\x09\xd6\xce\xae\xb6\x92\xa6\x60\x93\x41\x81\x11\xfb\xc0\x99\x71\x8b\x28\x3d\x7d\xd7\x4b\xfd\x25\x79\xb4\x04\x60\xa8\x58\x55\x7b\x90\x35\x1e\x9c\x08\x3c\xa8\x4e\x00\x24\xe7\xc8\x5d\x10\x11\xdf\x75\x0e\xf4\x45\xac\x53\xb9\xab\xbe\x83\x63\xc8\xf9\x5b\x95\x97\xe7\x40\x8e\x6e\x4f\x3c\x46\x89\xa6\xb8\xf4\xfa\xbe\xe9\x46\xcb\xbb\xc1\x73\x88\x81\xbd\xfc\x87\x4a\xa7\xac\x9f\x27\x71\xd2\xa0\x88\xc8\x99\x0a\x3a\x03\xdf\x2a\x01\xb2\x3f\x34\x38\x2f\x9d\x3e\x93\x3f\x23\x8f\x51\xe0\x21\x6a\x83\xe5\xef\xf2\xeb\x89\x90\xae\xcc\xf8\xc6\x89\xed\x06\x3c\x7f\x59\x23\x5c\xe9\x61\x68\x04\x77\x3a\x4e\xcc\x2a\xf6\x59\x07\x0e\xf5\x14\x7f\xc5\xf4\xed\x99\x90\xf8\x15\xe5\xd3\x60\xdd\x0b\x9a\xd1\x38\x8e\x39\xf1\xc3\x71\x7a\x44\xe1\xc4\x92\x38\xdd\xe1\xf9\x14\xa0\xbc\x8b\xec\x92\x02\xe2\xef\x64\xe8\x29\x06\x9f\xa5\x0a\xe8\x5f\xcc\xe7\xda\x35\x50\xa5\xc4\x92\x0a\x31\x65\x45\xb8\xa9\x3f\xc5\xd3\x73\x44\x2a\xe5\x03\xa8\x44\xe3\x4c\x90\xda\x47\x95\x3f\x1b\x2e\x48\xd2\xf3\xc6\x97\xbf\x2e\xe2\xa9\xc8\xdb\xc5\x33\x96\x7a\x41\x4e\x73\xd1\x73\x04\xd1\x0e\xc5\xa1\xb2\xd9\xf2\xf0\xaa\x6f\x63\x42\x63\xfa\xdc\xa2\x63\x82\x6d\xef\x50\x0b\x63\x2b\xea\xc2\xcf\xa5\x9b\x4a\x5b\xa2\x93\x67\x5f\x28\x97\x34\x1e\xc2\x29\x0e\x33\x9d\x31\x4e\x39\x29\xd0\x40\x78\x0f\x57\xe9\x1a\x75\x8e\x04\x04\xa5\x77\x8c\xf3\x35\x7a\x4c\xd8\x27\x37\x14\x5f\x10\x64\x58\x8c\xd7\x7f\x05\x0b\x15\x1b\xc2\x34\xb0\xc2\x48\x78\x6e\x68\xa1\xd2\x6d\xed\x32\x77\xdd\xe4\xad\xdc\x71\x80\xcb\xc1\xc1\xc9\xb7\xa7\x4d\xb7\x87\x91\xda\x2c\x54\xed\xe4\x21\x6c\x04\x4e\x14\xb9\x1c\x1e\xd9\x00\x1b\x7b\x67\x1d\xb4\xd7\x97\x26\x7e\xa4\x4d\x78\xaf\x20\xda\x74\xfa\xc1\x8b\x02\xc5\xbc\x31\x31\xff\x49\x02\x36\xce\x13\x87\xbd\x42\x51\xf6\x86\xa2\xeb\xdf\xa8\x2b\xa4\x75\x92\x3c\x62\xd9\x54\xb7\x12\xfc\xaa\xd0\x93\xc8\x9a\xee\x90\x60\xc6\xd8\xc9\xce\x14\xca\x84\x71\x7b\x5b\x15\x5f\xf1\xe4\x35\x30\x14\xa0\x81\xfb\x18\x19\x11\x75\xa7\x91\x11\x55\x77\xff\x3b\x69\xe8\x18\x28\x75\x8e\x64\x8e\x87\x35\x8c\xbb\x4b\xe3\x24\x8e\xfb\x2a\x9c\x47\xf3\x8a\x5f\x6b\xec\x43\x4e\x78\x86\x06\x3d\x40\x89\xa4\x69\x46\xf1\x9b\x1a\x45\xdd\x97\x9a\xdd\x38\xcb\x64\xed\x8b\x6d\x58\xf9\xfd\xd8\x07\x20\x53\x25\x84\xd4\x1a\xb1\xc9\x9e\x4d\x02\xd1\xa4\xa7\xdb\x11\x9a\x3a\x7d\xa1\xd0\xdc\x9f\x54\xfd\x72\x93\x05\xd1\x20\x55\x4d\xb6\xd3\xaa\xc9\x76\x7a\xe2\x1a\x0f\xbc\x40\x46\xe3\xdf\xc8\xb5\x77\xd9\x67\x8a\x5c\x74\x95\xe6\xbd\x04\xdd\x75\x31\x12\xd7\xe3\x7a\x68\x7d\x03\xf1\x72\x85\xb8\x8b\x97\x0a\xa5\x7c\xfc\xda\xc4\x6f\xef\x9b\x6f\x9a\x65\x9b\x98\x01\x7e\xdb\x21\x0c\x1c\x03\x1f\x1b\x2a\xf6\xbf\x7f\xa3\xa6\x51\x27\xee\x74\x56\x41\x1f\xc3\x7d\xfd\xb4\xe5\xa1\x08\x3f\x55\x8d\x9a\x28\x5e\x79\xa2\x5c\x16\x5c\xcb\x69\x29\xfa\x22\x2b\x78\xb0\x63\x3a\x96\x18\xe7\x44\x58\x3d\xa8\xb8\x5c\x29\x94\xd4\xc5\x63\xed\xc6\xd7\xbe\xe2\x5c\x20\x94\x71\xd3\x63\x6d\x9f\x8e\xa3\x62\xc4\xed\x6b\x05\x07\xe6\x99\x4b\xa3\xfa\x0f\x3f\x8f\x65\xec\x50\x22\x07\x67\x78\x57\xbd\x44\xba\xea\xb8\x65\x04\xc6\xd2\x93\xf1\x11\x4d\x3f\x5c\xdd\xe9\x65\x00\x2f\x29\x4f\xbb\x53\xf8\x0d\x99\x90\x2a\x51\xd9\x4e\x89\x8a\xe2\x71\xed\x77\x0a\x6c\x92\xdb\x44\x71\xd2\x55\xda\x5c\x17\xf4\x21\x73\x61\xa2\xae\x30\x3f\xdf\xcc\x86\x36\xb1\x3b\xca\x2b\x11\xa9\x6c\xe7\x2f\xb6\xfb\xe9\x76\x79\x1f\xda\xb2\x10\xb9\xc4\x4e\x62\x86\x48\x41\x5b\xc1\x20\x02\xf2\x6d\x2e\xbf\x80\x63\x5b\x3c\x2c\x09\x74\x9d\x2b\x7e\x27\xc9\xc7\x9a\xdf\xf8\x4e\x51\x09\x93\x3c\x31\x6a\x43\xf5\x09\x46\xdd\xae\x09\x43\x95\x12\x71\xcc\x21\x32\x7e\x35\x7a\x6e\x89\x8d\xe2\x00\xe0\x70\xf1\x7c\xa2\x8f\x88\x19\x94\x8b\xbc\xe3\xb1\x43\x92\x39\xd6\x17\xb2\x27\x7e\x5d\xd7\x76\x1e\xda\xde\xc0\xed\xb2\x0e\x2e\xee\xa1\xe3\x2d\xe5\x7a\x18\x67\x41\x17\x7f\xa8\x57\x85\xc4\x54\x4f\x39\x82\x4e\x94\x0d\xe2\xb0\x1f\x88\x8a\x96\x43\x26\xf8\x0e\xf8\xba\xea\x54\x45\x36\x18\x50\x94\xb3\x79\xbb\x68\xfc\xce\x8b\x9b\xb7\xeb\x60\xbe\x66\x3c\xb6\x06\x5e\x82\x08\xac\xd1\x39\xe3\xd7\x6a\xa1\x85\xf9\xa1\x29\x3f\x0d\x6f\xd0\x15\x62\xa4\xfe\x8a\x14\xde\x45\xc5\x59\x39\x80\x5a\xc3\xe5\x7b\x7d\x7e\xf1\xeb\x89\x9e\xd3\xdc\x5c\x93\x55\x77\x39\xbb\xd5\x25\xaa\x8a\xef\xd0\x83\xfc\x9f\xbf\x91\xc7\x59\x12\x47\x68\x41\x89\x37\x45\xc3\x71\x93\x4f\xaa\xc0\xeb\x6b\xfb\x0f\x4c\x7b\x39\x5e\x46\x9f\xe2\xca\x24\x20\xd6\xee\x47\x12\xcf\xd4\x24\x82\x66\x10\x93\x32\x38\xea\xf5\xff\x99\x86\x45\x63\x3a\x24\x4b\xae\x61\xa5\x66\x79\x3f\x43\x03\x49\xa4\x10\x54\x6b\xed\xa2\x06\x4a\x2e\x05\x61\x98\x4e\xfb\x88\xe4\x6d\xd0\x85\xa5\xba\xea\x41\x6c\x27\xd4\x2e\xf9\xb6\xab\xd9\x0e\x6d\x88\x90\x1f\x9b\xc3\x0e\xea\xcb\x21\x5a\x78\x7c\x4d\x6d\x8b\xbf\x04\x39\x1f\xfc\xd5\xf6\x35\x0a\x2a\xd0\x84\xe5\x53\x5c\x20\x17\x5e\x2a\x94\xc3\x18\x10\x2a\x7e\xb5\xed\x27\xc5\x1b\x85\x42\x8e\x5f\x54\x43\x1f\xd9\xa8\xa1\x0b\xa8\x34\xc0\x52\x4c\xad\xb1\x5d\x34\xc9\x20\x1f\xd9\x88\x4b\x37\xe2\xe9\xa4\x20\x47\x17\xeb\x74\x7a\xd2\xd5\xa8\x17\x74\xa5\x59\x83\x58\x17\x9c\x2d\x7e\x5d\xa7\x2f\x1c\xf0\x67\xb8\x16\x20\xb4\x5e\x0f\x10\x3a\x3b\x59\xf3\xd9\xeb\x3c\xf6\xcb\x3f\x53\x9c\x97\x59\xe7\x4b\x44\x5f\xc6\xe7\x40\x0d\x33\xe0\xa5\x66\xdc\xef\x03\x57\x58\x21\xc8\x17\x9a\x29\x34\xb9\x37\x2f\x34\x97\x6d\x16\x2b\x1d\xb0\x2d\x3a\x0c\xfe\x2c\x1d\x05\xa1\x89\xd0\xf1\x90\x16\xbf\x3e\x80\x95\xe9\xe7\x4d\xd5\xde\x7c\x35\xb6\x99\xb8\xec\xcb\x96\x47\x7f\x2a\x7b\x9e\xec\xd7\xbd\x38\xca\x25\x14\x13\xdb\x3f\xa5\x7b\x72\xc6\xb3\x19\x4d\x68\x92\x80\x47\x0a\x88\x35\xca\xc8\xe7\x37\x91\x91\x60\xcf\x39\x5e\xa7\xc9\xd3\xb3\x1d\xa9\x4c\x88\xd9\x66\xc3\x89\xb0\x5d\x9c\x18\x1d\x22\x90\x90\x7c\x8a\x2b\x21\xa3\x4e\x2d\xcd\x6f\x77\xd6\xa4\x69\x3e\xb2\xb0\xb2\x73\xde\x61\xe5\xd2\xaa\xa0\xac\xf0\x54\xd1\x3a\x73\x7f\xe5\x41\x09\x3c\x84\xa2\x57\xea\x21\xef\xbb\xa9\x74\x2b\x5d\xbd\x3d\xca\x8d\x73\x64\x77\xfa\xde\xd6\x95\x96\x0a\xf8\x59\xb2\x07\xd1\x08\xa3\xe9\x9c\x9c\x89\xf3\x70\x61\x2e\xa0\x58\x90\xd5\x8c\xd8\x38\xe8\x46\x41\xb7\x1c\xea\xcd\x0d\xda\x9f\x9d\xc5\xb1\x2b\xae\x6c\x6f\x3f\xa8\x79\xa7\xbc\xfe\x9d\x0d\xef\xec\x01\x2e\x0e\x5f\x02\x76\x04\x90\x6b\x38\x4b\x0a\x2c\x46\xf9\x63\x0c\x57\x1f\x52\x52\xf6\x7f\xa3\xb5\xae\x2f\x6a\xe0\xf4\x59\x15\x4b\xb1\x2f\xbb\xd0\x35\x3d\x18\xf4\x42\x25\x60\xf7\x25\xb5\x9c\xc5\xd0\xdd\x23\xf6\x8f\x5b\x29\x36\x7b\xad\xaf\x29\x5f\xc0\x01\xca\xd3\x55\x9c\x16\x67\x18\xc3\x4b\xa6\x73\xae\x0d\x3d\xc8\x43\x93\xc5\xc9\x74\x39\x77\x70\xf7\xa7\x11\x3a\xf2\x1b\x64\x27\x88\xd2\xd6\xf0\x4c\xf8\xcd\x44\xf3\x6f\xdf\x3c\x54\x1a\x47\x41\x24\x74\x5c\x39\xdc\xe8\xae\xe5\x74\xab\x91\x3f\x1c\x27\x76\xd9\x04\x21\x8b\x55\xa3\x6e\x33\x85\xf2\x21\x56\xfb\x2d\x7a\xaa\xa2\x69\xe5\x31\x04\x44\xd1\x0a\xfa\xab\x42\xfe\xc2\x86\x79\x45\xab\xa3\x5d\x51\xa9\x45\x6a\xa9\x11\x0b\x78\x33\x56\xe3\xf5\x42\x9d\x0f\xeb\x8a\x53\xfe\x41\x45\x66\x2f\x1f\xa5\xbb\x1b\x2e\x05\x3d\xaa\xa5\xc9\x99\x36\x8a\xf3\xf1\x74\xcb\xcb\xfd\xb1\x26\xa0\x90\x57\x3c\xe8\x16\x0c\x3b\x18\x72\x6c\x60\xb8\xd9\x7b\x8b\x9e\x13\x12\xfa\x1d\xed\xc7\xfd\x1a\x76\x3e\x3c\x55\x4e\x14\xca\xbe\x1b\x5a\xc2\x79\x52\x8c\x8c\x28\x0b\xe3\x71\xb8\xda\x50\xf1\x3a\x7a\x1e\xfc\xba\xf5\x8c\x12\xff\x1e\x8d\x6d\x94\x7a\x50\x8c\x4b\xd6\xca\x47\x28\xc9\x9a\x43\xf6\x0d\x4d\xb4\xc4\x4f\x0d\x75\x98\xed\x6b\x4a\x40\x1f\xb0\x0a\x79\xee\x4f\x6a\x85\xf1\x6e\x62\x79\xbb\x63\xd4\x97\x66\xd5\x9c\x52\x30\x55\x93\xc4\x29\x62\x6a\xb7\x52\x5c\x3e\x75\x61\xa2\x51\xf5\x6c\x33\x0d\xa2\x29\xe5\xac\x74\x46\x79\xbb\xfd\x8c\xb6\x09\x94\x48\x8e\x16\x8f\xeb\x1d\xd2\xb1\xcf\xf0\x97\xd7\x2a\xa6\xdc\x0a\xaf\xff\xe9\x44\x84\x74\x70\xa6\x19\xe7\xd9\x43\xe5\x05\xa2\x00\xfd\x10\xed\x89\x28\x85\xdd\x41\xb9\x06\x35\xf4\x05\xd5\x7a\xbe\x4a\xa1\x53\x85\x03\xe0\x94\x3e\x16\x17\x9c\x79\xa1\x30\xbd\x46\x41\xaf\x17\xda\x91\x04\x16\xcc\xc2\x50\x5a\x0b\x93\x67\xca\xdc\x5c\x93\x84\x5f\xd9\x46\x11\x83\x71\xa5\x12\x66\x2a\x84\xdc\x24\x52\xf1\x59\x98\x73\x9a\xae\x17\x04\x43\x8b\xee\xaa\x62\xe3\x5d\x75\x67\x64\x62\x47\x26\x59\x9a\xaa\x68\xba\xfa\x49\xbe\xd9\xf2\xdd\x97\xeb\x35\x4d\x8a\x05\x42\x3a\x64\x02\xf8\x94\x4a\x29\xfd\xaa\x94\x4a\x55\x26\x64\x82\x28\x5c\xdd\xe1\x2d\x45\x39\x02\x41\xf5\xf0\x36\x56\x83\x74\x0f\xe8\x8a\xf8\xcf\x5a\x0a\xfe\x73\x76\xa2\x67\x79\xe0\x85\xf2\xbf\x4b\x53\xbe\x6e\xd0\x50\x58\x92\x75\xa5\x54\x79\xad\xea\xdd\x9c\x87\x19\x6b\x1d\x20\x17\x3b\xa5\x55\xd4\x4f\x55\x00\x2e\xa1\xb5\x3b\x94\xa6\x0c\x84\xf7\xf8\xb5\x66\xff\xbf\xd3\x52\x00\x7a\x70\x8f\xe5\x8c\xfc\x25\x2f\x92\x29\x0b\xd5\x84\x41\x3a\x9a\xf2\xae\xe0\x20\x8f\xbb\x26\x60\x19\xe5\x02\xdb\xf4\x56\x6d\xa3\x36\x58\xb2\x3b\x7c\xf1\xf2\xc7\x54\x90\x73\x9e\x4b\x5b\xf4\xe5\xd9\xb4\x41\x77\x10\xde\xaf\x81\x82\x95\x3b\x8e\x4d\xca\x29\xc1\x58\x74\x79\x02\x1e\xe8\x75\x56\xf9\x1d\x0e\xf2\xa0\x67\x49\x5f\x62\x9a\x06\x01\x98\x0c\xb2\x58\x13\x60\x07\xd3\xac\xf9\x0d\x7d\x0f\xff\x55\x7b\xeb\xd4\x5d\x78\x61\x3f\xcb\xb2\xb9\x65\x2d\x76\xf0\x1e\x2b\xf5\x9e\x42\xa5\x9d\xf3\x4e\x1a\x26\xc8\x86\x3a\x31\xfb\xa8\xf0\x0d\xa2\x8f\x14\xcc\xa0\x6f\x92\x91\x4d\xc8\x33\x59\xa6\x28\x6e\x0e\xd1\x37\xd2\x32\x14\xc8\x7e\x40\xdb\x8e\x08\x26\xd0\x6e\x8f\xb4\x1f\xa2\x04\xfc\x01\xda\x10\xfe\x1f\xc6\xfe\x3d\x48\x8e\x2c\x3b\x0f\xc3\x81\xea\xc6\x63\x06\x98\x5d\x0c\x66\xb8\x14\xf9\xe3\x4f\x2a\x49\x94\x86\x52\x8c\x36\x24\x59\x61\x39\xf8\x87\xb3\x0d\x34\x77\x76\x10\xbb\x3d\x1d\x00\x16\x43\x8f\xff\xc1\xad\xac\xdb\x55\xb9\x9d\x95\x59\x9b\x8f\xee\xe9\xb1\x15\xe1\x90\x23\x14\x76\x84\x83\xe1\x08\x2b\x14\x21\x5a\xb6\x19\x34\x43\x12\x65\x59\x5a\x72\x49\x91\xa2\xc8\xad\x1e\xee\x72\x9f\x5a\x72\xde\xef\xdd\x01\x06\xef\x6e\xbc\xdf\x68\x00\x0d\x47\x9e\xef\x9c\x7b\x4f\x76\xe6\xc8\xfc\x2f\x13\xe8\xaa\xca\xbc\x8f\x73\xcf\xe3\x3b\xdf\xc7\xff\xae\x39\x68\xa3\x78\xc9\x66\x3b\xbd\x08\xfb\x55\xca\xf3\x0a\x57\x94\x87\x47\xff\x46\x0d\xbe\x4f\xe7\x88\x04\xac\xd5\x37\x4b\xe9\xaa\x8d\x37\x15\x9d\x00\xb4\x85\xda\xf8\x58\x3e\xab\x9a\x0b\xd2\x94\xd9\x65\xd8\x95\x55\xa1\xf4\xe9\x96\x7d\xad\x54\x38\xc8\xd8\x38\x79\x68\x97\x36\x3f\xad\x08\x92\xef\x29\xb5\x78\xe2\xe9\x5d\x64\x6e\x51\xc1\xcb\x57\x0b\x53\x70\xf4\x3e\x6e\xef\xdb\x98\xcb\xd1\x58\x58\x6f\xd0\x57\xc2\xfd\xbe\xaa\x6b\x95\x67\x27\x4f\xa8\x32\x33\xd7\x37\x91\xd8\x63\x6e\x7c\x97\x92\x76\x5d\x11\xf7\x6a\xdc\x0b\xd2\xa8\x5c\x7d\x10\xd0\x97\xe9\x19\x0f\x7f\x03\x49\x25\x76\xcb\x27\x0a\x74\x9f\x2e\xd9\x8c\x00\x33\x2e\xe1\x73\x32\xa8\x15\x32\x0f\x1d\xe2\xec\xd3\xc6\x44\x81\xb0\x37\x5a\xd5\x64\x33\x3b\xc8\x78\x4f\xb9\xd2\x8e\x92\x82\xdd\x1f\xa9\x73\xbc\x88\xdc\x31\xce\x85\xd7\x40\x15\x3f\xce\xeb\x3a\xcd\x62\xfe\x19\xd5\xee\xbb\x8f\x58\x49\x04\xfe\x4b\x19\x7e\xb7\xb0\x8e\x1d\xe0\xc3\xed\xc7\x13\x85\xfa\xd9\xb1\xea\x4b\x43\x67\x7f\x56\xd1\x28\xbc\xf4\x57\x67\x80\x1b\xd1\x58\x0b\x14\x17\xf6\x71\xd5\x87\xfc\xd2\x7f\xf4\xd4\x8c\x4a\xb4\xa2\x7f\x14\xf1\x25\x88\x58\x34\x59\xbe\x98\xc2\xfd\x8a\x68\xca\x44\x23\x23\x31\xb4\xab\x30\x29\xdd\x42\x25\xff\x1a\xa6\xb1\x70\x00\x38\x89\x1d\x0f\x10\x3a\xa7\xba\x69\x32\x1b\xda\x68\xc9\xee\xf4\xcd\xcc\x5f\xd7\x55\xb9\x2b\x81\xaa\xd7\xc1\xc1\x43\x05\x10\xc7\x3b\xce\xc8\x0e\x89\xa4\x33\xe5\x7d\xa3\xf2\xf0\xfc\x5c\xb7\x9f\xa5\x8c\x80\x65\xaa\x24\xcd\xb9\xf5\x13\x17\x5c\x26\x69\x52\x26\x34\x9d\x2e\x05\x81\xf0\x8b\xaf\x1b\xf1\x3e\xa5\xde\xf3\x22\x4b\x57\x24\xde\x87\xbb\x77\x06\xdf\xcf\x37\x0a\x4a\xf1\x85\x83\x07\xa7\x34\x7b\xf2\x3d\x7a\x23\x64\x6b\xb8\x6b\x51\xf4\x95\xb6\xfe\x96\xc4\x55\x0b\x69\x99\xed\xf0\xfa\x1f\x7b\x66\x74\xa6\x94\xa4\x15\x5d\x9b\xaa\x52\xdd\xa7\xaf\x16\x16\xa4\x7d\x2a\x45\x3e\xea\x71\x53\xbc\xa8\xaa\x76\xe8\x8d\x51\x14\x42\x60\x85\x68\xe4\x76\xe3\x60\x3b\x74\xa8\x72\x60\x16\x69\xf1\x73\x20\x46\x1b\x45\x82\x32\x87\x2c\x1e\xac\x8c\x8b\x88\x65\x24\xb0\xf8\x5e\x0f\x54\x73\xd5\xeb\x6d\x8a\x77\x10\x0f\xec\x78\x9c\xf1\xc7\x81\x77\x65\x3f\x56\xe4\x4d\x23\x33\x5c\x48\xcb\x57\x00\xb7\x76\x8b\x6d\xfe\x05\x2f\x63\xd9\x92\xa5\xb1\x2f\xdb\xb0\x2c\xa8\x0b\x53\xf1\x96\xf9\x9c\xc2\x69\xdd\x66\x73\x57\x33\xcd\x0d\x4d\x1f\x2b\x09\xf3\xc4\xec\xc7\x7c\xd3\xd6\xcb\x9c\x95\x89\xa7\xa0\xe0\x92\x1f\xfd\x92\x94\xff\xfc\x6c\x2c\x5a\x3b\xa6\xf3\xb4\xda\xda\x28\xc2\x03\x4c\x8a\x94\xcb\x69\xfa\x98\x6c\xf2\x36\x76\xfd\x74\x64\x84\xc0\xc2\x89\x1e\x55\x8f\xc7\x37\xed\x59\x91\xc2\x44\xc8\x79\x3b\xb4\xf3\xa1\x43\x0e\x9f\xe4\x25\x81\x4d\x92\x44\x4b\x36\xcb\x05\x76\x2a\x10\xe4\x6a\x29\xf2\xb5\x02\xe4\xda\x97\x43\x3b\x86\xe3\xc4\x29\x6f\xe6\xcd\xa4\x03\x59\x38\x34\x9f\x52\x0c\xdc\x11\x85\x99\x51\xa8\x12\x34\x37\x75\x25\xe6\x66\xad\x92\x6f\x47\x85\x92\x05\xfe\x10\x7f\x28\x1c\x35\x9f\x55\x00\x37\x32\xe5\x64\x43\x64\xeb\x57\x0f\x20\x3b\xdf\x3f\xf0\x28\xca\x33\x3b\xce\x6c\x4e\x69\x42\x32\x6b\x00\x9c\x70\x07\x2a\xdf\x28\x3c\x58\x3e\xb6\x61\x64\xe2\x02\xaf\x27\xe4\x0b\x94\xf9\x11\xa7\x52\x73\xfe\xc4\x69\xa2\x73\xff\xdc\x11\x2d\xf4\x6f\x2d\x45\xaf\x91\xcd\xb2\x88\xcb\x11\x38\xbb\x1e\x04\x8a\x7d\xf7\x41\x5b\x91\x6e\x79\x98\xda\x25\x9b\x91\x83\x2d\x94\x32\x1e\xa1\x75\x9a\xb4\x5a\x11\xb5\xdd\xd1\xb9\xe1\x71\x9a\x59\x40\x14\x84\x17\xc5\x1f\xb9\x6b\xb5\x71\xef\xd9\xfe\x1e\x9f\xf4\x86\x40\x2e\x86\xe6\xfa\x56\x3a\xbb\x97\x34\x8e\xf4\x88\xac\x5b\x44\x1c\x8e\x88\xd3\x97\x9e\xae\xc0\x6f\x13\x7a\xde\xca\xaa\x09\x6d\xaf\x22\x9a\x13\x18\x03\x82\x9e\x1d\x33\xde\xdd\x48\x8b\x02\x4d\x83\x48\x68\x31\x8e\x8c\x6f\x1a\xf0\xab\x67\xbb\xb1\x95\x1e\x0d\x47\xbd\xe8\x89\x0c\xc8\x73\x76\x53\x57\x66\x85\x29\xe3\x7e\xde\xe9\x3c\xf3\x0c\x53\xb5\x9c\x82\x89\xe1\x9b\x36\x3a\xb7\x7c\x65\x34\x2e\xd2\x11\x27\x35\x31\x01\x17\x95\x3e\xc6\xc5\x56\x24\x59\x3f\xca\x47\x66\x45\xc8\xd8\xb1\xf2\x19\xde\xc8\x37\xaa\xc0\x49\x5a\x76\x1d\x85\x77\x58\xa3\xef\x17\xaa\xe6\xad\xf6\x7a\xf6\x68\x37\x4c\xd3\x78\x4a\xe5\xbd\xff\x60\xd2\x51\xda\xda\x1d\x2f\x9b\xde\xc2\x01\xf3\x5c\x77\x60\xf2\xb4\x0a\x21\x3a\x3e\x93\x06\x61\x77\xbe\x56\xde\x4e\x39\x1a\xef\xf6\xd5\x02\xc8\x3f\xb0\x48\xd8\xc4\x9f\x2f\x53\xe0\x79\x83\x39\x38\x83\xd5\x00\x44\xf6\x1d\x05\x09\x64\xed\x4f\x18\x19\x26\x80\x43\x20\x7a\xb1\xed\xe4\x18\x67\x55\x64\x82\xb7\x74\x2e\x8d\xeb\x4c\xbd\x1d\x78\x60\xdc\x07\x75\x76\xf4\x64\xf0\x97\x14\x47\x1f\x80\xff\x58\xa8\x1f\x10\x8a\x59\x24\x73\x69\x9d\x62\xe6\x77\xa3\x47\xc5\x15\xd1\xaa\xb7\x41\xfc\xb4\x93\xce\x65\x78\xaa\xfb\x66\x3c\xad\xec\x2d\xc5\x72\xf5\x3e\x97\x89\x58\x87\x06\x0d\xd1\x0a\x17\x2b\x2e\xf6\x86\xea\xc9\xbe\x80\x7e\x6a\x16\x39\x03\xb2\x00\x9b\x61\x43\x63\x51\x4f\x12\x64\x0d\x81\xcf\x1b\x58\xab\xd8\x40\x7b\x51\x92\xc1\xd6\xba\xad\x84\xc4\x1e\x06\xd5\xea\xc6\x4c\x4e\xad\x2a\xc5\x40\x56\x78\x40\xa4\x35\xb5\xda\xf9\xca\x17\x9d\x8c\x3d\xdc\x4e\xa4\xac\x76\xae\xd2\x42\xc4\xcf\xef\x20\x8f\x8c\x46\x7c\xea\x49\xb8\xaa\x28\x2e\x5d\x80\xa8\xb4\x83\xe0\xbf\x28\xb5\xdb\x4d\x02\xcb\x20\xd0\xda\xde\xe0\x4e\xa2\x54\xc9\xb8\x74\x19\x3a\x47\xe8\xed\x0e\xe2\x0f\x75\x6c\x7f\x4b\xd5\x20\x16\x4c\x9c\x5b\x6c\x12\x04\x36\x1f\x4f\x7c\xc0\xf3\x71\x9b\x3c\x4a\x91\xe6\xc3\xa8\x07\x35\x27\x01\x62\xa9\x21\xb8\xdc\x22\x90\x34\xdf\x0d\x4d\x39\x18\x16\x53\x0a\x50\xa1\x45\x3a\x08\xe8\xc0\xc3\xf6\x6e\x63\x6f\xcd\x1e\xed\xf6\x2c\x95\xb6\x25\x98\x06\x26\xf0\x82\x4a\xb4\xef\x9d\x51\xf9\x80\x9d\xab\x1e\xcb\x14\xf5\x8d\x52\xc0\x3d\xa7\x55\x81\xcf\xd5\x28\x0a\x06\xa2\x0b\xa2\x9b\x2e\xf8\xba\x51\xfd\xf8\xf2\x6c\xb7\x48\xa5\xcd\x95\x73\xa0\xaa\xe3\xb0\x49\x60\x39\x37\xd7\x2d\x4c\x36\xb0\x85\xd0\x47\x23\xcc\xf9\x36\x46\x01\x67\xd1\xf5\x1a\x8e\x45\x71\xd8\x9a\x8c\x54\x4b\xaa\xff\x85\xd3\xb6\xae\xc3\x85\x75\x15\x58\x98\x3c\x32\xd3\x0a\x01\x7a\x1a\xdf\xef\x7a\xbb\x5c\x6d\xfc\x14\x39\x26\x42\xdc\xbe\xf5\xf5\xe6\x0f\xcf\x77\x85\xdd\xe1\xa5\x3a\xf7\x91\x30\x24\x89\xf7\x9a\x66\x95\x67\x22\x0b\x0f\x8b\xed\xbe\x12\x8d\x3d\xaf\x00\x1b\xbf\x7d\xa9\x8d\xf3\xff\xab\xd6\x70\x99\x61\x6e\xce\x91\x07\x7b\xbb\x7b\x45\x81\x62\x49\x98\x6b\x8f\xef\x0b\x82\xea\xbc\x34\x09\x01\x43\x86\x4f\xad\x6b\x3b\x78\x5e\xb1\x9f\x5e\xc3\x09\xeb\x74\x6a\x7d\x54\xc2\xc8\x76\x60\x20\x36\x55\x1f\xfa\x4f\x74\x9d\xf5\x1d\x8d\xdb\xff\x91\x73\xe2\xe3\x68\xc1\x16\xd1\xc8\x2a\x4f\xf1\x96\xf2\x14\x6f\x55\x61\xb1\xa6\x1e\xfc\x85\xee\xc1\xd9\xdd\x64\x6a\x44\xdc\xdd\xf7\xf5\xdc\x9e\x78\xdb\xf8\x13\x58\x17\x98\x53\x70\x99\x48\xd7\x7c\x47\xe9\xea\x55\xd6\x8c\x3f\x30\x51\xb4\x21\x97\x75\x20\x90\xc6\x69\x91\x2e\x61\x4a\xf1\x7d\xef\x62\x90\xf8\x46\x61\x2d\x73\x53\x86\x22\x72\xed\x48\xec\x5d\xeb\xc3\x55\xe4\x37\x45\xd2\xc4\x6b\x66\xda\x97\x21\xd7\x4f\x21\x30\x6a\x08\x5c\xd0\xe4\x1b\xb5\x52\x07\x65\xbc\x40\x54\xc4\x42\xbd\x44\xdf\x89\xf9\xfa\x1e\x6a\xef\x7c\x33\xf1\x30\xfd\x47\x34\x32\xd8\xe4\x57\xc9\x22\x4a\x27\x65\x13\x84\xf7\x52\x37\x5c\x09\x63\x49\xe8\x8a\x77\x40\x93\x2f\x7e\x43\x0b\x56\x63\x98\x9a\x4c\x28\xd9\x9c\x9a\x90\x56\x0f\x69\x61\x5a\x1b\x9b\x70\xd1\x0c\x24\xc4\x85\x15\x44\xed\x8b\xaf\x15\x4d\xd5\x72\x9a\x2d\x7e\xd6\xa7\x5e\xfe\x10\x4b\x4b\xf6\x3c\xce\x3b\x4c\x30\x37\x6a\x88\x23\x42\xa7\x2a\xac\xe5\xef\x07\x3e\x7b\xf5\x1e\x8d\x42\xcd\x45\x03\xa4\xf9\xbb\x81\x92\x04\x7d\x0b\x47\x2f\x67\x03\x01\x65\x84\x0d\xbc\x13\xf8\xac\xdf\x25\xa5\xb9\xce\x30\x42\xd8\xbf\x6f\x4d\x7c\x0f\x4c\x53\x7e\x76\xf6\x68\x77\x31\xcd\x2c\x07\xb0\x82\x14\xd4\x04\xfa\x2d\x3a\xce\xf3\xdd\x45\xbb\x42\xc7\x01\x73\x49\x23\x91\xe1\xf6\xab\xcb\x9f\xbd\xd5\x30\x19\xc7\x0e\xcc\x76\x17\xa2\x41\x99\xd5\x75\xf4\xea\x81\x99\x1f\x71\x13\x9b\x64\xba\xa3\x84\xa2\xc8\x27\x90\xd5\xd9\xf1\xc2\x41\x58\xa9\x0c\x81\x6a\xe0\x78\x66\x8f\x76\xa1\x78\x4a\x6f\xc9\x90\xac\xc0\x6f\x8a\x3f\x98\xe8\xd4\xac\x23\x48\x3d\xc2\xe1\xc8\x76\x66\xbb\xe4\xbb\xd5\x16\x02\x80\xa1\x35\xfd\xaf\x95\x26\x83\x62\x92\xd7\xf2\xba\xa3\xd4\x21\xef\xb4\x1d\xc8\x23\xf3\x72\x34\x2a\xb9\xe1\x52\xea\xbf\xde\x98\xde\x57\xc0\xd3\x73\x6d\x4c\x81\x61\x6c\xc6\x45\x66\xc6\x75\xa9\x20\x55\xa6\x71\x99\x8a\x97\xc7\x69\xee\x82\x75\xa1\x52\xe9\x28\x8a\x95\x36\x52\xc6\xcc\xe6\x51\xec\x78\x45\x99\x78\x5d\x55\x8e\x2e\xb6\x64\xef\xe7\x5d\x17\x8e\x4c\x32\xe0\x2f\xef\x2b\x6e\xd1\xf7\x95\x3f\xfd\x77\xfe\xf6\x7f\xa6\x47\xfb\x2c\x39\x6e\x7c\xdd\x38\xdd\x0e\x1f\xe8\xe6\x43\xcb\xa1\x23\x77\x7d\x05\x5e\xdd\x47\x83\xf9\xd3\xb2\x80\x47\xef\x8b\xd7\xf4\xe4\x52\xc8\xf6\x4f\x10\xa7\xcb\x9f\xa9\x89\x20\x38\xa3\xf3\xc7\x64\xb4\xe8\xdf\xff\xe7\x9f\x9b\x21\x27\x56\x9d\xa8\x42\x40\xb1\x7d\x46\x01\x6d\xf7\xae\x2a\x02\x88\xfd\x94\xd4\x85\xe3\xc8\xcd\x61\x58\xca\xbb\x56\x7d\xc7\xdf\xaf\xec\x5b\x75\x4e\xfc\xd4\xd3\x33\xbe\x59\xf7\xe9\x19\xa5\xe6\x7e\x85\x10\xe6\x38\x28\xbe\xa3\xd9\xb2\x4d\x14\x2f\x1b\x2e\xcf\x62\xd5\x9c\xd3\x39\x83\x73\x8a\xa3\x69\x31\xcd\xd2\x22\x12\x69\x34\x18\x08\x0e\xf7\xf8\xa6\xc5\xf9\x99\xef\x2e\x94\x99\x03\x3c\x88\x6e\xb9\xcf\xa4\xde\xc2\xf6\x47\x38\x7a\x4d\x35\x28\xdc\x55\x27\x6c\x68\x93\x5c\x4e\x25\x78\x4c\x1f\x4c\x54\x47\xdd\xed\x7a\xd7\x74\x4b\x9d\xc9\x13\x56\xa1\x88\x84\x13\x9a\xaf\x55\x4f\x4d\xb8\x80\x34\x8b\x08\x6e\x28\xc2\xa4\x26\x10\xe6\xe0\xc1\xee\x30\x2d\x2c\x56\x13\x82\xa8\x55\x45\xf5\xb3\xda\x02\x68\x9e\x67\x76\x46\xad\x4a\x78\x31\x50\xd4\x92\x17\x27\xde\x81\xcd\x87\xf6\xb3\x34\x15\x48\xe0\xae\xab\x8a\xcb\x09\xaa\xc4\xc0\x94\xed\x02\x68\x1e\xa7\xf5\x87\x13\x84\x1e\xd8\xc0\x90\xdc\x43\x05\xe2\x36\x9d\x17\x48\x7b\x7e\x80\xf3\x42\xba\xbf\x95\xb4\xdc\xe3\xab\x4a\x8b\x6f\xdb\x0c\x9d\x17\x9c\x05\x0c\xbc\xc5\x44\x5d\x07\x86\xe9\x0c\x8a\x63\x22\x94\xed\x5b\x7d\x34\xff\x41\xfa\xb7\xfe\x0e\x8d\x2b\x02\x32\x84\x9a\x7c\xad\x63\xe3\x6c\x80\x0a\x25\x7e\xfe\x01\x7d\x99\xf4\xe9\xe8\x56\x6d\x0c\x85\x0e\xb4\x85\x43\x48\x70\x9f\xac\xb5\xc8\xc2\x0c\x0e\x06\xe1\x26\x0a\x8d\x87\x58\x69\xd7\x35\xa2\xea\x61\x5b\x63\xb9\x49\x4c\xbc\x52\x44\x21\xf7\x43\x3a\xc5\x5f\xaf\xfe\x1b\xf8\x8c\xdd\x28\x2d\xd2\xac\xf2\x40\x04\xe0\xe5\x60\xd1\x1e\x7f\xb3\xae\xd3\x65\xac\x11\xcc\x3a\x1d\x58\x07\x40\x9d\xf3\x75\x8b\x9a\x64\xd7\x64\xbd\xa8\xc8\xcc\xc0\x66\x1d\xcf\x3f\x79\xa6\x86\x62\xfa\x9c\x37\x66\xe3\xca\x3d\x2b\x93\x88\x74\xd4\xaa\x57\xd0\xf1\xbf\xf8\x61\x2d\x24\x00\x43\x9b\xf5\xa2\x30\xea\x5b\x34\x6d\xc2\x5b\xc0\xaf\xe0\x53\xd8\x48\xf2\xef\xbe\x5e\xb5\x14\x85\x45\x15\x20\x00\x49\x8f\x8c\xee\xc7\x81\xaf\xbf\x7c\x5c\x67\xea\xb1\xe1\x63\xd5\xff\x61\xa5\x7e\x13\xdb\x0e\x11\x2b\x94\xbd\xe4\x94\xa9\x86\x70\xf3\xea\xc4\x0b\xf4\x72\xd7\x99\xb4\x30\xd0\x53\x0a\x2d\x0e\x99\x0b\xac\xb2\xab\x58\xf0\x48\xf7\xfe\x5f\x13\x2d\x62\x96\x2e\xdb\xfe\xe3\x98\x28\xf8\xd4\xbf\x05\x8f\x8b\xc3\xa8\x40\xb7\x0d\x79\xfa\xbd\xd3\xf8\x76\xa9\xb3\xab\x54\x13\x8c\x9b\xb0\x69\x76\x14\x6f\x31\x3d\x82\x2b\xd3\x7b\x9c\xc8\x25\x67\xe9\xf2\xb2\xdf\xb7\x84\x2f\x70\x95\xa4\x75\x85\x01\xc3\xa2\x85\xa3\xf3\xb1\xd6\xf3\xbc\x8f\xa7\x11\x66\x07\xbf\xa3\xfe\xde\xdf\xfa\xcf\xa7\x95\x3b\x07\x8c\x0f\x66\x00\x00\x03\xa9\xcd\x56\xa7\xa6\xb4\x31\x37\x53\x82\xcb\xd6\x64\x53\x1d\xd5\x31\x5e\xd3\x94\x70\xfc\xa3\x4d\xb9\x31\x6a\xf2\xf7\x5c\xc4\xb0\xdd\x3b\xa8\x90\xc2\xd7\xab\xfb\x95\x30\x57\x98\x59\x93\xdb\xfc\x31\x5d\x46\xe8\x1c\x3b\xb0\x79\xb3\x26\xd5\xa9\x32\xc9\xe7\x31\xe3\x22\xd6\xdd\x71\x29\x27\x4e\xba\x38\x55\xcd\x83\x07\xd9\x08\xec\x45\xab\x82\x80\xe4\x5b\x54\x1d\x42\x93\x65\x2b\x12\x3d\xb8\x62\x46\xf5\x6d\x32\x23\x4f\xa8\xe4\x81\xe9\x91\x8b\x80\x71\xe4\x94\x38\xdf\xa8\x84\x64\x68\xe2\x68\x81\xbe\x10\x13\xf6\x7d\x3d\x7b\xdf\xaf\x65\x9c\x33\xe2\x48\x7b\x5e\x74\x1d\xb6\x2b\x36\xdb\x29\xf4\x38\xa1\xa6\xf5\x61\xe0\x7f\x77\x53\x29\x35\x5e\x77\xc8\x9d\x32\x09\x87\xc6\x73\x34\x4b\x8f\xaa\xcf\x1f\xbe\xdd\xda\x8f\x22\xd3\x00\x4e\x08\x46\x8d\xd1\x42\x66\xda\x94\x80\x8a\x69\x38\x7c\x4e\x4c\x3a\x5f\x3a\xe2\xa8\x85\x9b\x61\xd5\x7c\x37\x8c\x8a\xfa\xd9\xcb\x44\x79\x7c\xd3\x16\x56\xf5\x23\x33\xf2\xac\x72\x98\xc3\xf3\x0a\x17\x70\x7e\xb2\xc7\xa3\xf0\x92\xbf\xe2\x37\x0b\x33\x21\x20\xcf\xf4\xcf\x02\xe5\xa7\xbc\x49\x2b\x1f\xee\xe3\x49\xf2\x85\xc4\x2f\xc2\x79\xe9\x62\x9f\x6a\x80\x11\xe2\x3f\x22\x58\x26\x06\xbb\x33\xe3\xa9\xa0\x1f\x5b\xd5\x85\xa4\x2b\x48\x4e\xc2\x72\xa1\xde\x8a\xa3\x90\x45\x30\xa4\x01\xc3\xb3\x3d\x4c\xaf\xd2\xf8\x61\x0a\xee\xc1\x7e\xc1\x64\xbd\x4b\x83\x29\x48\x02\x5a\xe6\x8c\x47\x84\xec\x06\x86\xf9\x06\xb2\x1d\xa8\x21\x30\x31\x10\x9e\xf8\x6d\xca\x54\x22\x5a\x43\x5f\x32\x46\x02\x68\x2d\x6c\x9f\x33\x94\xfe\xc1\x37\x71\x96\x14\x96\xf4\x35\xd2\xda\x45\xd4\x78\x9e\x60\x23\xd2\xe1\x4a\x4e\x00\x3e\x71\x0a\x2a\x09\x98\xfb\x0d\xb8\x6e\xa8\x94\x3f\xc0\x4e\x44\x71\xee\xbb\xa4\x37\xca\xac\x06\xc1\xf6\x9f\xe7\x91\xfb\x50\x19\x5e\x93\xe7\xb6\xc8\x77\xa9\xd6\xbc\xba\x04\x62\xe0\x91\x09\x1f\x4c\x54\x26\x64\x37\x79\xb8\x48\xc6\x5f\x80\xdd\x45\xf6\xf0\x91\x6a\x26\xb8\xd3\xc6\xeb\x17\xe5\xa6\x67\xe3\xd8\xc0\x7d\x15\xf4\x8d\xea\x31\x6c\x5d\x8b\x69\x59\x2c\xc4\xe9\x32\xaf\x45\x8d\x98\x15\x1c\xe0\x67\xdd\x76\x23\x99\xf0\x62\xda\x57\x4b\x3f\xc2\x7a\x44\x3e\x8c\xf4\xe8\x7c\x49\xdb\xbb\x59\xa7\xdb\x3a\x5c\x7a\x99\x5d\x76\x76\x13\xf9\xe6\xb7\xe9\x0d\xf9\x5a\x95\x5e\x17\x62\x33\x60\x49\x1d\xa1\xe5\xed\x78\x8a\x5e\x25\x89\x95\xa7\x66\x91\x20\x24\xca\x13\x53\x15\x94\xcb\xaa\x5b\xe0\xc7\x8d\x11\x94\x32\x7b\xb1\x94\x4f\x75\x8e\xbe\xe0\xd0\xe8\x9e\x4c\xee\x6d\x1c\xcf\xd7\x6b\xe0\x55\x1b\x7e\xbe\x53\xad\x38\x40\x56\x40\xe9\xc4\xd7\x9a\x44\xdc\x24\xe9\x12\x4a\x36\x73\xae\x68\x4a\x43\x24\xd5\xd4\xb6\xc8\x82\x08\x14\x84\x33\x0f\x16\xe0\xcd\x40\x89\x59\xbd\xa9\x60\xe1\x36\x59\xc2\xb1\xea\xe8\x9a\xab\xed\xe5\x52\x86\xd5\xef\xf2\x4d\xe0\x9b\x1a\x3e\x50\xbe\xe5\x07\x4a\x22\x7a\x64\xf2\x1c\x9d\xe7\xd2\xac\xba\x3e\xf1\x39\xda\x8f\x27\x1e\x34\x02\x6c\xb7\x70\xf8\x79\x51\x18\xfc\x0a\xff\x7d\xe0\x13\x69\x44\x15\xb0\x64\x01\xa6\x16\xac\x01\xed\x52\xa7\xa3\xea\x78\xc8\x57\x27\x9f\xdb\xaa\xa7\x36\x7f\xa4\xfb\xe2\xe1\x03\x1d\x65\xb9\xcf\xc3\xc0\x08\x2b\xc5\xd6\x61\x9c\x7f\xe1\x48\xf7\xab\xa9\xd2\x82\xc0\x49\x03\xbd\x7a\xbe\x56\x21\x60\xbf\xda\x44\xb1\xf0\xc1\xe2\xa8\x7d\x97\x5d\x73\xbe\xab\xa5\xd6\xc7\x79\xa4\xd4\xc9\x3e\x86\xd7\xc3\x37\x6d\x52\x34\x44\x03\xac\x08\x48\xef\x2b\x38\xd4\xfd\x16\x29\x8b\xc3\xdd\x28\x59\xb2\x49\x91\x42\x54\x7d\xf3\xbd\xea\xef\x37\xdf\x73\x7b\x32\xb3\x10\xfc\xaa\xc9\xff\x6f\x5f\xf5\x05\x0c\xd6\x94\x41\x1e\xf8\x75\xdf\x4d\x11\x9b\x7c\xe8\xc6\x84\x45\x28\x94\xbe\xb4\x56\x7e\x1e\xd9\x6c\x40\xf0\x77\xa5\xfe\x43\xeb\x89\xed\x67\xa0\x63\x95\xad\xef\xfc\xe2\x3c\xf5\xe0\xb0\xe8\x21\xb7\x42\x91\xa1\x90\xb6\x28\xef\x53\xe7\x65\x5e\x98\x28\xb1\xfd\x69\x3a\x72\xe0\x07\x9e\x52\x60\xea\xef\x07\x0a\x5d\xf3\x7d\x98\x6a\xfe\x2b\xd7\x10\x17\xa6\x71\x39\x92\x06\x30\xb7\xa6\x7c\xcb\xba\x32\xd1\x7d\xea\x64\xde\x5f\x1d\x05\xf0\x2c\xcf\x4f\x74\x8d\xab\x5a\xe4\x48\x45\x6e\xf0\x0a\x40\x1d\xf0\x92\x37\x53\xff\x76\xdf\x8c\xa2\x8e\x60\x8a\x56\x45\xa9\x3a\xcb\x67\xc4\xb6\xd5\xca\x44\x80\x59\x8a\x29\x01\xf1\x8b\x9d\x19\xa5\xaa\x78\x45\xeb\xd8\xfc\x24\xf0\x42\xd5\xf7\x27\x3e\x08\x81\xfe\xbd\x6c\x90\x5a\x4d\x8d\xe6\x52\xf1\x22\x0b\x31\xee\xf6\x99\xbd\x0e\xeb\x2c\xbd\x46\xcc\x27\xaa\xf3\xdd\xb7\x30\xab\x92\x00\x94\x06\xc6\xb0\x1c\x11\x67\xcc\x92\x9d\xd2\xe9\x62\x55\x4b\x7b\x7c\xc6\x83\xd9\xa7\x5a\xa0\x52\x47\xba\x66\x94\x96\x89\x73\x93\x14\x03\xbe\xd3\xb2\x69\x55\xb8\x8e\xd3\xe5\x84\x0c\x85\x8b\x78\x7c\xeb\xd7\x05\xdd\xd7\xb9\xe1\xd1\xdc\x36\xe9\x9b\x50\x48\x12\x91\x0d\x38\xab\x94\x1d\xce\x4e\x3c\xaa\x7a\x10\x8d\xf8\x9d\x9c\x78\x98\x4f\x87\x9c\x9d\x78\x0b\xd1\xda\xfb\x38\x8e\x6c\x28\x6f\x84\x71\x38\xa5\xb5\x0e\x4e\xb5\x29\xb4\x8f\x6c\x52\xe6\x0a\x33\xc8\x6b\x41\x78\x50\x7c\xed\x32\xb6\xa6\x9f\xef\x52\xf4\xfd\xe7\x50\xfd\x95\x56\x50\x5a\x28\x22\x6f\xe8\xf1\xdf\xdf\x43\x9c\xc4\xc9\x11\xd5\x03\x73\x52\xd5\xde\x37\x14\xc7\x88\xb1\x59\xda\x8b\xc2\x3f\x5f\x82\xb5\x85\x3a\xac\x67\xf2\x28\xd4\xf9\x49\xac\x0b\xbe\x76\x08\x76\xfb\x72\x91\x19\x58\x10\x47\x76\xef\x72\x8d\x27\x31\x08\xb8\xb9\x13\x7c\xce\x0d\x42\xe2\x00\xd8\x45\x84\xce\x63\x4d\x50\x25\x4d\xcc\x7e\xd0\x06\xa9\xd0\x2f\xc3\x3b\x99\x5a\x55\xd9\xa5\x37\x03\x5f\xba\xd9\x3b\xa3\xb6\x20\x32\xe5\x80\xae\x9d\x55\x55\xa5\xc4\x5a\x91\x45\x94\xd3\x1d\x14\xce\x7c\xdd\x68\xc6\x7b\x7e\xae\x6b\x47\x3d\xfb\xca\x2b\xb1\x33\xac\xac\x23\xa7\xdc\xd3\xdf\x54\xbf\x80\xfe\xb1\x1c\x5d\xae\xee\x98\x7d\x7e\xce\x1d\xa1\xb2\x05\xc7\xb1\x09\x89\xcf\x92\xe5\x8d\x71\xfa\x7f\x0b\xe6\x46\x08\xd6\x61\xa2\xc4\xbf\xdd\xba\x0b\x0f\x1d\x3a\xd2\xb5\x2f\x87\x90\x20\x57\xc5\x58\xc5\x60\xdc\x4c\x2c\x56\x5b\xb7\x57\xae\x80\xbe\x09\xab\x8d\x91\x3b\xd8\x30\x7b\x67\x3c\x2e\xed\x6d\x5a\x6d\x52\xe8\xd6\x7d\xa9\xd5\x2f\x48\xfb\x75\x4d\x20\x32\x1f\xd2\xe6\x56\x9d\x8e\xd2\x0b\x7a\x66\xa2\x68\xf2\xef\x06\x4f\xa9\x68\xc8\x2e\x45\x85\xe9\x31\xb4\x0c\xa7\xce\x2d\x9c\x71\x7c\xd3\xc8\xb9\x53\x7d\xc3\x14\x43\x9b\xc5\x74\xf8\x1e\x3a\x24\x99\x0c\x05\x9a\xb9\xec\xd0\xbd\x79\x61\x6d\x3c\x62\x47\x72\x4e\x82\xa2\x47\xba\xcb\x77\x0d\xa6\x16\xc1\xc7\xf5\xb6\x84\x1a\x10\x65\xbe\xa2\x20\x3c\x61\x3e\x42\xbe\xa4\xaa\x8b\x69\x18\x96\x59\x66\xfb\x44\xf7\x89\xe3\x63\xcf\xaa\x47\x00\x74\x10\x69\xb9\x94\xd6\xc1\x59\xd7\x0e\xa3\x4e\xb9\xb5\x96\xfd\x39\xd7\x5d\x1e\x4a\x1b\x35\x02\xb5\xb3\x81\x47\x5e\x9c\xdd\xaa\x57\x5b\x7d\xe0\xf9\xb9\x27\xaa\x18\x0f\x9e\xfb\x6b\xe4\xdd\x71\x7f\xcb\x44\xc1\xa4\xfe\x11\x7c\x36\x57\x93\x70\x6d\x74\x37\x50\x8f\x93\x02\x45\xf5\xac\x5a\x82\x53\x2c\x13\xbd\x10\x46\xf6\x87\xc8\x3d\x80\x47\xe0\x86\x52\x96\xdf\x85\x86\x62\xd4\x0c\x41\xfb\x80\xd5\xf1\xba\xf2\x54\xa1\xce\xa3\x24\xb8\x59\x58\x45\x54\xc5\xaa\xef\x7e\x44\x63\x89\x53\xf2\xa1\xe2\xff\xce\xd3\x64\xb0\x53\x67\x0b\x3c\x9e\xf5\xf1\x99\xca\x2b\xc0\x3e\xe4\x63\x19\x1e\x26\x70\xe8\x08\xd3\x4f\x68\xd1\x9b\x71\x2b\x05\x7a\xdf\x8e\xd3\x3c\x2a\x54\xeb\x20\xf3\x16\x20\xee\xfd\x7d\x76\x2c\xe0\x31\xae\x3b\xd9\x2e\xca\x92\x2c\xc6\xe2\xfa\xa3\xa4\x7f\x06\xae\x3f\xdf\x28\x6e\x84\x30\x1d\x8d\xd2\x64\x8f\xc2\x7f\x3c\x8e\xec\x10\x8e\xea\xb3\x5a\xbc\xe2\x0e\xe2\x02\x44\x6c\xd3\x33\xd5\xfc\x60\xf9\x20\x19\xed\xd8\xab\x5d\x8d\x60\x3b\x1d\xee\x98\x04\xa6\xc1\xc0\x48\xfe\x9e\xce\x91\xd3\x3a\xc1\xc2\x7e\x6c\xd5\xcf\xce\x38\x36\x89\xe5\xd0\x0d\xa7\x0b\xf7\xd3\xf1\x4d\x7b\x7d\x2c\x8b\x8a\x28\x74\x02\x2b\x78\x23\xce\x7c\xf0\x4d\x43\x62\xdb\x05\x6f\x99\xe9\x33\x90\x56\xba\xf8\x79\xb3\xc2\x4f\x84\x36\x0f\x0e\xb7\x5d\x0d\xf6\xa3\x67\xbb\xbd\xb4\x4c\x42\xb7\x6b\xd9\xb1\x0a\xfc\xf2\x79\xf7\x53\xc3\xc6\x90\x33\x88\x52\xf3\xf2\xfd\x2a\xdc\x78\x80\x6a\xf0\x8f\x15\x43\xeb\xb2\x19\x58\xd4\x7c\x70\xf6\xbd\x1a\x28\x80\x9e\x26\x1f\x58\x6b\xeb\x40\x1b\x44\x26\x71\xe2\x5c\x8a\xc0\xe4\x88\x2b\x3e\xd2\xcf\x62\xa6\x5f\x53\xb5\x8a\xc1\xb0\xf8\xe9\x6a\xea\xe0\xa7\xdc\x27\x29\x1f\x4c\xe3\x4f\xa3\xa2\x86\x03\x8e\xbd\x21\x24\x4f\xfe\x7f\xb4\x0a\xb8\x63\x38\xe8\x1c\x3c\xe8\x54\x10\x3b\xbf\xf4\xcb\xbc\x24\xff\x84\x92\x2a\x18\xa7\xef\x2a\xa7\x64\xcf\x8c\x97\xd5\xff\xdd\xfd\xab\xe4\xd4\x38\x19\x84\x6a\x67\xc1\x05\x7c\x72\xd5\xe3\x25\xff\xde\xcf\xe1\xe8\x86\xab\x07\xa8\x31\x02\xfa\x29\x42\xd4\x61\x90\x91\x2a\xa1\xb3\xf0\x1b\xfb\x57\xc9\xee\xe0\x48\x17\xb5\x55\x3c\xe3\x43\x02\x9b\x39\xe2\x21\x07\xbf\xd0\x8d\xf6\xff\xee\x2f\xa3\x14\x24\x78\xbe\x16\x38\xf7\xc8\xe6\xb9\x01\x25\x46\x2d\x10\xe0\xeb\x06\x95\xeb\xc1\xd9\x6e\x1c\x65\x96\x0a\xf4\xc8\xbe\xed\xa1\x54\xa7\x00\x01\xe8\xd5\x5d\x0a\xaa\x7a\x75\xfc\xd5\xd3\x33\xcd\x36\xc8\xe7\xba\x92\x2c\xc4\xdf\xb0\x88\x0b\xdf\xa8\x2e\x22\x93\x0c\x6c\x8c\xe0\x1a\x93\xc5\xcd\xa5\x52\x0b\xc6\xb8\xc0\x52\x3e\x54\xd9\x03\x13\xdb\x97\x15\xac\xfa\x8a\x2e\x91\x36\xfd\x82\xf9\xc3\xf3\x5d\x93\xa3\x9b\x0f\x6e\xc1\xd5\x89\x92\x15\x7f\x48\x96\x01\x55\x9a\x0b\x5a\x9d\x3f\x34\x49\xdf\xc4\xb5\x7c\xc6\x15\x9d\xcf\xa8\x2b\x7a\xdb\x2c\xd9\xa7\x0e\x5d\x74\xd0\xe3\x95\x5f\xc5\xda\xc4\x42\xdd\x89\xa9\x83\x3f\xb8\x46\x80\x21\x84\x47\xa7\xb5\x52\xce\x7c\xa0\xc6\xef\xcc\xc4\x07\x51\xaf\x91\x63\x28\xfd\xa8\x1e\x47\x76\x0d\xcb\x03\x3b\x10\x32\x6e\x0c\xa7\x20\x63\x27\x7b\xbb\x2e\x95\xa6\x74\x91\x3e\x41\x99\x45\x82\x55\xdf\x7e\x35\x4e\x8b\x61\x1a\x0b\x61\x93\x30\x55\xf9\xda\xe7\x5b\x2e\xba\x2f\xb2\x72\x61\xc1\x94\xe8\x48\x72\x88\xad\x6a\x48\xf8\xa6\x96\x89\xca\xd3\x11\x46\x56\x90\xd4\x64\xc3\x04\x30\xb9\xd5\x62\x1e\x3b\x00\xf1\xa4\xbe\xcd\x4c\x2f\xb6\x54\x34\xc3\x16\x83\x43\xcc\xd7\xaa\x6d\x6c\x6c\x56\xb2\x34\x16\x71\x6b\xc6\x5b\xd2\xdf\x0a\xf6\xb2\xa9\x04\xf0\x52\x37\x4c\xb9\x5d\x70\x49\x4e\x33\x9c\xf4\xec\xf5\xf3\x4d\xe0\xa5\x0b\xed\xa8\x67\xb2\xcc\x90\xf3\x34\xa5\xba\x05\xd7\x11\xd2\x8a\x6c\x90\x2f\x6f\xfe\xf3\x36\xe4\x48\x1e\x0e\xed\xc8\xd6\x30\xd8\xaf\x29\x0c\xf6\x6b\xaa\xcf\x9d\xe1\xfc\xa4\x4e\x51\xfd\x05\x93\x96\x04\xfe\xcd\x2e\xa8\xc3\xb6\x6f\xed\x88\x3b\x52\xf1\xe8\x5c\x5d\xe5\x9b\xda\x8c\x24\xd6\x90\x67\x82\xa3\x83\xf3\xbf\xd2\x4d\xa6\x09\x3c\x03\x75\x2a\xad\x7a\xbf\xb0\x1c\x0f\xad\x59\x32\x31\xb3\x03\x4b\xc2\xab\xe3\x9a\xdd\xcf\x2b\xa4\x83\x96\xb8\xc5\x5e\xb8\xae\x40\x3c\xd7\x5d\xe5\x38\x8e\xc2\xc5\xba\x9e\x2a\xa7\x99\xa5\x5b\xcf\x65\x52\x08\xda\xc2\x21\x07\x32\x1c\xd7\x51\x72\x90\xa5\x88\xb5\x0f\x6f\xad\xa9\xbb\x7b\xf4\x85\x6e\x6e\x63\x1b\xba\xb8\xdf\x6d\x1f\x85\x4c\xd2\x65\x65\x2f\xc6\xe6\x04\xd2\x2e\x29\x59\xd8\x26\xf7\xeb\xf1\xe3\xd5\xa2\xb7\x69\x62\xa7\xab\x13\xc2\x09\x06\x8a\xea\xf5\x7b\xfb\x14\xfd\x2e\x8b\x68\x48\x29\xd7\x87\x61\x45\x69\xf3\xbe\x59\x41\x39\xc8\x8d\x88\x27\x0e\x80\xa6\xb7\x90\xd5\xa9\x46\xba\x0b\x6d\x72\xd0\x83\x61\x9a\x93\xe8\x7a\x2d\xa2\x76\x84\x4c\xf7\x15\xc8\xa6\x49\xed\x7c\xf0\x60\xb7\x9f\x2e\x27\xd3\x4a\x5e\x4b\x75\x77\x5f\x55\x18\xc1\x07\x04\x90\x80\xd9\xdc\xb6\xaa\xeb\xd2\x59\x19\x43\x9d\xd6\x7d\x0e\x90\x24\xbe\x6e\x43\x8f\xe4\xb2\x6e\xf0\x5e\x67\x34\x2d\xdb\x99\x36\xbc\x58\x11\x8d\xa4\x80\x08\xa7\xef\x4e\xa0\xc2\x9c\x3b\x35\x74\xbd\x19\x99\x69\x3f\xa1\x8c\xbe\x13\x9e\x0d\xc5\x22\x78\x4a\x41\xe3\x9a\xda\xe7\xb3\x47\xbb\x69\xd6\x67\x35\x66\x91\x01\x56\xad\x64\x27\x1d\x69\x5f\x98\x8e\xc8\xe7\x16\x73\xe3\x5a\x9c\xab\x09\x91\x16\xe7\x36\xdd\x37\x33\x4a\x6c\xce\x89\x23\x8e\x59\xb4\x68\x7a\x9d\x50\xd4\xda\x11\x08\xb0\x51\x66\xfb\x3f\x27\xea\x18\xfb\x06\x8d\x37\xca\x9b\xd7\x40\x7d\x8e\x7a\xce\x19\xd5\xa2\x0d\xf1\x55\xfe\x77\x9f\x94\x32\xbd\x5e\x54\x68\x00\xba\x42\x5b\x5e\x6e\x91\xa0\xe8\x66\x9e\x25\x42\x38\x03\xe9\x51\xa4\x64\x4c\x3b\x4f\x38\xed\x65\x8c\xcc\x60\x90\xd9\x81\x29\x2c\x93\x0a\xcb\x06\xa3\x4f\x32\x1d\x1d\xbd\x04\x0e\xf4\x3f\xa2\x98\x53\xfe\xa8\x09\xf0\x9b\xaf\x8e\x92\x41\x15\xf0\x8e\x4c\x82\x51\x87\x43\x79\x41\x01\xfc\x2e\x34\x9c\x76\x92\x95\xea\x95\xd9\xc0\xa6\x3e\x3f\xdf\x56\x81\x7a\xc2\xc1\x07\x46\x23\x9b\x75\xb4\x7e\xfa\x46\xa0\x48\xfb\x9b\x1c\xcd\x95\xa7\x22\xc7\x1c\xb9\x2b\xc8\x7b\xde\x87\xbb\x22\xe5\xfa\x1a\xb1\xef\xd6\xa5\xf1\x6c\xb7\x30\x79\x41\x1c\x6e\x53\x9d\xaf\x7c\xd1\x51\xbf\x77\x1c\x81\xf3\xaf\xd5\x80\x32\x4e\x34\x3f\x0a\x8b\x32\xe3\x2a\xb3\x34\x91\xf9\xa4\xe4\x4d\x05\xea\xbc\x37\xf1\xac\x9b\xdf\x9f\x68\x0e\xb6\x6c\xc9\x4e\xfb\xd6\x26\xde\x98\x92\xba\xa1\x6f\xe6\xff\xc1\xe1\x28\x89\x1c\x9f\xe3\x1e\x9a\xa4\x1f\x5b\xf4\xc1\xe1\x09\xb7\xcf\x78\x08\xd3\xf6\xd5\x26\xc5\x6d\xd7\xc6\x76\xc9\xa3\x13\x71\x02\xfe\x89\x6e\xb2\xf8\x93\x60\xb7\xac\xa3\x3d\x9d\x63\x07\x36\x11\x2e\x22\xfd\x02\x7a\x30\xd4\xa0\xb6\x21\x9c\x90\xe4\xaa\xaf\xf9\x5f\x98\x38\x3a\xc4\x6f\xfd\xe5\x19\xd5\x70\x29\xee\x94\x83\x61\x7c\xe5\x8b\xa2\x62\xa5\x58\x76\xee\xd3\x3a\xdd\xbc\xda\x86\xf8\x2c\xb2\xb4\xec\xc5\x16\x6a\x5a\x2e\xf3\xe0\x2a\x34\x2c\x3d\xc9\x82\xc0\x8d\xfd\x74\xfc\x78\xb7\x3a\x71\x57\x48\xb2\x4c\x64\xfd\x3a\x5e\xe2\x4f\xd5\x1a\xc7\xd1\x60\x64\x93\x62\x5a\xf1\xb3\x5c\x08\x94\x88\x0d\xe7\xa7\x19\xcf\x15\x78\x35\xc6\xa6\xd8\x7c\xb5\x81\x06\x59\x5a\x26\x7d\x51\x68\x71\xe5\xeb\x39\xa7\x6b\x7c\x4b\xa1\x5e\x8e\xbe\xf8\x5f\x75\x74\x4a\x28\xa8\xb5\x3c\xa9\xc2\xa9\x35\x59\xbe\x9b\xe6\x5e\x0e\x69\x95\x57\xbb\xae\x44\x03\x3e\x0e\xea\xca\x8d\xd5\xf7\xf1\x8d\x46\x72\x9c\x09\x3c\xe1\xed\x6f\x4f\x14\x33\xce\x39\x15\x5f\x3e\xf7\xc2\xfc\xb4\x62\xb4\xe9\x50\x94\x86\x2f\xbb\xa8\x7e\xb2\x06\xf7\x6b\x23\x2e\x4a\x17\x16\xa2\xca\x31\x23\x1a\xaa\xed\x2a\xef\x02\xc2\x2f\xb8\xdc\xbb\x1d\x93\x4f\x3e\x32\x59\x61\xf3\xa2\xa3\x2b\x2a\xc8\x9a\x4b\x79\xa5\x25\x8a\xa6\x2c\x3e\xbb\x89\x9a\x86\x5a\xb0\x96\x7e\x30\x8b\xcc\x84\x2b\x1d\x45\xb2\xf7\x13\x7a\x0c\xbe\x56\xcd\xbc\x4b\xd1\x52\xd4\x8f\x57\x3a\x5b\xc3\x0a\x71\x63\x1f\xe7\xa7\xe8\x1e\x9c\xfd\x39\x42\x3a\x60\x0c\x4e\x4f\x3c\xde\x65\x3b\xa2\x64\x90\x87\x9e\x20\xd4\x03\x60\x59\xd0\xfb\xa4\x2f\x7a\x73\x1f\x02\x66\xec\xbb\xdd\xd8\x46\x08\x69\xe0\x4f\x02\xee\x74\x97\xa2\x75\x7c\xd3\x47\x1c\xff\xc1\xd3\x9c\x9e\x51\x0a\x0e\xef\x00\xeb\x80\x82\xed\x2d\xda\xab\xcc\xc7\x02\x34\x0c\x7e\xfe\x3a\x4e\x33\x84\xe5\xd3\xb0\x9b\x30\x61\xec\xdc\xc2\x9f\xfd\x04\xcb\x0c\x9b\xfd\x16\x0e\x79\xce\xe5\xaa\x66\xaf\x07\x93\xce\xf1\xe3\xae\x4d\x8a\x26\xca\xd5\x97\xbf\xf0\x22\x1f\x43\x6f\x2a\x01\xef\xf7\x29\x0f\x80\x50\xf6\x21\x12\x90\xac\xb8\xcc\x34\x08\x52\xe2\x73\xf0\xb9\xa9\x7d\xab\x5b\x83\xe9\xe7\xe7\xaa\xad\xdb\x51\x9a\x56\x30\xe5\x7c\xdd\xf0\x0c\xaa\x13\x44\x66\xb4\xd6\x33\x54\xcd\x96\xb4\x0c\xb5\x2c\xac\x91\x49\x22\x13\x76\x3c\x71\x0c\x50\x85\x7c\xdd\x00\x26\x1d\x3a\x24\xb4\x12\x9c\x76\x46\xc6\xfc\xac\x1e\xbc\x0d\x25\x4b\xd7\x54\x11\x3c\x7e\xbc\x9b\xa4\x59\xa7\x9a\x6d\xe9\xe8\xa0\x25\x21\xf5\xba\x26\xc6\x72\x9e\x48\x2f\x3d\x1d\x15\xb6\xf2\xba\x6e\x70\x58\xd7\xbc\xfd\x71\x34\xea\x4d\x29\x6b\x72\x57\x31\xc5\x60\xf5\x02\x40\x75\x51\xb1\xa0\xe5\x86\x64\x31\x0b\xbb\x43\x29\xf8\x9e\x60\x33\x8f\xed\xfc\xbd\x89\x82\x41\x7d\x4f\x89\x01\x9c\xd0\x3d\xec\xff\xab\x3b\x58\x2b\xd7\x25\xcd\xb4\x7a\xcb\x16\x94\x8b\x54\x3b\x07\x65\x14\x17\xd3\xaa\xac\xc0\x0e\x0e\x4b\x51\x29\x0e\xea\xfb\xaa\xe5\xb3\x19\xc8\x54\x23\x15\xdb\xbc\x2c\xa2\x5c\xd3\x83\xbe\xa1\x32\x74\x6f\xd4\x48\x85\xb3\x5d\x2a\x0f\x00\x8c\x05\xde\x6e\xd7\x8c\x67\xc3\xfd\x60\x0b\x35\xd5\xdc\x1c\x9f\x51\x4c\x04\xcc\xdc\x77\x38\xb0\x84\x08\xaf\x21\xee\x3a\x7b\xb4\x1b\x96\x05\xaa\xeb\x52\xb8\x56\xe9\xde\x5b\xaa\x9d\x39\x4a\xf2\x22\x23\x36\x4c\xb8\x8b\xf0\x99\x98\x3f\xd0\xc9\xf4\xba\xa2\xe7\xb6\x46\x25\x17\xf2\x9c\x63\x6b\x5c\x7f\x0a\xcb\x01\xd3\x1b\x8a\x34\xb0\x0e\x80\xcd\x98\x91\xf7\x22\xc4\x52\x7d\xbd\x48\x29\x36\xfd\xc8\x23\x7f\x4e\x96\x5a\x7f\xd6\xcc\xbd\xf0\x62\xc7\xb7\xbc\x7f\x42\x8b\x90\xaf\x9b\x3b\xf9\x85\x23\xdd\x61\x1a\x47\x7d\x03\x1f\x5f\x6a\x7a\xf4\xd5\x52\xd4\x6b\x72\xf8\xcc\x75\x4d\xcf\x84\x8b\x84\x42\x16\x42\x8c\xea\x67\xf8\xba\x51\xb8\x3e\xfa\x42\x37\xcc\xca\x7c\xa8\x22\x95\x0b\x64\x91\x24\x68\x6c\x0b\xc0\x22\x96\x0b\xd6\xb0\x5a\x51\xb5\xdf\xba\xd1\xe7\xe6\xba\x26\x2c\xa6\x7d\x8b\xc7\x36\xf2\xe8\x60\x17\xde\x51\x44\x68\x2c\x7c\x0d\x26\xb4\xcb\x8a\x12\x6a\x39\x4d\xfb\xe1\xb0\x0c\x17\x19\x92\x2d\xa4\x51\x1d\x45\x26\xe5\xcb\xaa\xa6\x28\xa4\xc6\xeb\x10\xc0\xbe\x6e\xd6\x18\xe6\xa3\x2f\x74\x7b\x26\x24\xc5\xcf\x8e\x67\xe7\xe7\xf8\x4b\x02\xd2\x3d\x6e\x55\x0e\x46\xbb\xbc\xd0\x0f\x22\xd5\x5a\x86\x14\xa6\xef\x77\x26\x9e\x26\x86\x39\x06\x9c\xa8\x7e\xf5\xbd\x7c\xa3\x0d\xc6\x7a\xe0\x65\xc2\xa3\xa4\xa8\x5c\xe9\x84\x4c\x1d\xad\x5c\x6c\xbb\x8e\x22\xd1\xeb\xac\x7a\x53\x17\xdb\x25\x1b\x3f\xee\xcb\x41\xff\x06\xf9\x00\x04\xaa\xbb\x66\x7c\x3e\xe0\xbb\x78\x16\xe0\x6e\x38\xe3\xee\x48\xe9\x0f\x8b\x9a\xcd\xb5\x89\x57\x88\xb8\xa7\x8c\xe6\xd7\x03\x15\xf2\x9c\xa4\xa3\x51\xe2\xa6\xa7\xd4\xb3\xf7\xab\xe3\xa7\x34\xf1\x13\x7e\x9b\xbd\x19\xa8\xe4\x24\xeb\x5e\x63\x42\x6e\xd3\x21\x09\x7f\x95\x75\xda\xa5\xa9\x88\xd2\xa4\xfc\x3f\xf4\x63\x4c\xbb\x83\xa7\xe0\x1a\x54\xa0\x28\xb6\xc9\x0d\x40\x77\xc4\x5b\x81\xee\xcb\x25\xc7\xdc\xb5\xe9\xb9\xd3\xea\x7a\x5b\x72\x21\x4a\x16\x73\xd5\x73\xb2\xa6\x13\x5f\x6b\x41\x0b\xa7\xfd\x56\x35\x19\x91\x49\xa9\x1e\x4c\x82\x34\x9f\x54\x1e\x99\xca\xae\x99\x15\xb4\x4f\x73\x0a\x28\x50\xbc\x1f\x6b\x4a\xb0\xe2\xac\xcb\x82\x2d\xc4\xd6\xa5\x30\x44\x42\x56\x61\x9b\x2f\xaa\xfe\x85\x5e\x5a\x0c\x2d\x69\x1e\x68\x01\x49\xfa\x63\xe9\x3e\xf6\x06\xe9\x88\x7d\x79\xca\x77\x75\xf0\xc1\x84\x45\xb4\xa1\x30\x0f\xd3\x2d\xb5\xa7\x32\x89\xb2\x74\x85\x3b\xaf\xb1\xa2\xfe\x10\x9f\xe7\x9b\xc6\x60\x39\xc5\xe3\x34\xeb\x5b\xa6\xae\x76\x6c\x6c\xcf\x4b\x2d\xea\x44\x2d\x71\xb1\x68\x8b\x27\xe9\x0f\x91\x69\x61\xbd\x08\x64\xc5\xee\xd7\xb8\x5e\x69\x51\x31\xa9\xc0\x44\xb5\x5c\x3e\xc1\x0d\x7f\x4e\xff\xdd\x91\x46\x23\x41\x25\x2a\x60\xd5\x3a\x74\xeb\xe5\xd8\x01\xf6\xc2\xff\x6f\x95\xd1\x7b\x14\xa8\xc6\xeb\x75\x78\x74\x58\xac\xf7\x02\x15\x36\xef\x86\xa3\xca\xd2\x80\x94\x7d\xc7\x6f\xff\x3b\x85\xb6\x7c\xc7\x65\x09\xa2\x2c\x4d\x18\x2f\x82\x8f\x7c\x53\x75\x20\x7f\xb3\xd6\x0b\xbc\x12\x25\x83\x9d\x34\x1a\x92\x5b\xd5\x22\xbe\x60\x69\x77\x6c\x6c\x4e\x25\xe1\x0f\x09\xec\x2c\xcc\x6c\x1e\x86\xfc\x87\x0a\xbb\x32\xce\x57\xc2\x61\x4a\x7d\x35\x79\x01\xc7\x11\x89\xd8\xb3\x58\xff\x7c\xd3\x4a\x3e\x1c\x65\x82\x5f\x73\xfd\xb2\x3e\xe7\x7f\xd6\x41\x9d\xf2\x32\xab\x1c\x53\x61\x0e\x40\xf8\x07\xda\x20\xa9\xe0\xf9\xb6\xc4\xd3\xad\x58\xca\x63\x07\x66\x3b\xaa\x9b\xfc\x34\x56\x35\xdf\x38\x06\xf0\x38\x4d\x59\xbd\x43\x6c\xb9\xca\x27\xb6\x88\x84\x90\xac\x7e\x5a\x26\x45\xc7\x4b\xc9\xaf\xd5\xca\x99\x5b\x3f\x53\xb9\x31\x26\x4b\xcb\x5c\x92\x76\xa2\xf5\x50\x43\x67\xa9\xba\xb2\x89\x4d\xc8\x72\xc1\xac\x58\x0b\xa8\xb7\xc8\xd7\x6e\x01\x36\x1c\x9c\xed\x1e\x3a\x74\x44\x49\xf1\xbc\xab\xa4\x78\xde\x55\xd2\x09\x99\x61\x21\x53\xa6\xc3\x0d\x3c\x40\xe5\x32\xac\xac\xf0\xe4\x76\x1c\x87\xda\xe5\x46\xd6\xe9\xd9\x6e\x3e\x8a\x8a\xe1\x22\x35\x58\x92\xd5\x85\x39\xe0\x9e\x16\xbe\x51\x22\x95\x20\x73\x7c\xb2\x1a\x2e\xec\x1e\xa4\x77\x61\x86\x19\x4b\x8d\x83\x90\x15\x9f\x99\xec\x8f\xd6\x3f\x92\x2d\x1f\x20\x34\x73\xe0\x35\x27\x20\xc9\x82\xf0\xd8\x30\xdf\xd0\xba\x59\x98\x47\x64\x82\xae\xa1\xcf\x51\xf4\x94\x9d\x50\xc3\xff\x74\x92\x2c\x09\xaa\x7c\x4c\x17\x00\x47\x66\x1b\x28\x5c\xe0\x82\xdc\xd3\x6c\x0c\x77\x71\x72\xc3\xa5\xfc\xf7\x81\x26\x65\x32\xfd\xca\xb1\xfb\x34\xbc\xd3\x7e\xf5\x97\x61\x61\x92\x41\xcc\xa4\xe6\xc2\x33\x47\x03\x21\xcd\x4a\x5b\xcf\x9a\xe3\xc7\x59\xd5\xd1\x69\x97\x81\xea\x80\xaf\x03\x4d\x55\x9c\x14\x36\x09\x2d\x61\xc5\xb0\x3f\xae\x82\x89\x0f\xf9\x61\x66\x66\x76\xdd\x60\x0e\xb6\xf6\xb0\x6e\xb0\x5a\x36\xef\x28\x75\x75\x2e\x1c\xeb\xaf\x4e\x14\xb0\xfe\x55\x27\xa6\xb1\x3c\x34\xa3\x69\x8a\xac\xe1\x6d\x5f\xa4\x23\x15\xd8\xf7\x87\x9a\x29\x79\xa2\xb6\xe4\x09\x75\xee\x15\xc3\x8c\x36\xff\x0e\x5f\xe1\x58\xc7\xb8\xe3\x4b\xae\xa9\x2f\x41\xd7\xa2\xc4\x5e\x00\xb1\xab\xcc\x46\x99\x2c\x44\x05\x06\x9a\x11\x2f\x81\x6f\x6a\xf3\x3d\xd2\xa3\x28\x89\x46\xd1\x2b\x28\x15\x8a\x2b\xee\xe1\xcb\x57\x14\x28\x79\xc1\x66\x4e\xf0\x05\x91\xcf\x69\x45\x48\xff\x43\x2c\x68\x99\x75\x5f\xfa\x1b\xdb\x7e\x64\x8a\x2c\x0a\x23\xc3\x6e\x1a\xb7\x3d\x62\xd8\xa5\x07\x52\xd1\x32\x24\xfd\x34\x13\xb5\x4d\x27\x2f\x3a\xe7\x25\x45\xfd\xb3\xc7\x51\x61\xb8\xca\x81\x11\x3f\xa1\x62\x9d\x13\x6d\xdc\x81\x89\x49\x47\x51\x47\x9b\x53\x15\x29\xd4\x14\x16\x56\xf2\xc2\x8e\x9e\xc0\xd1\x01\x9f\xea\xba\x42\xd0\xfc\x81\xd6\x8b\x01\x17\xa9\xe3\x5f\x38\x7c\x40\xf1\xc0\x7b\x5d\x44\x64\xbb\x9c\xfc\xfd\xec\x51\x3e\x09\x37\xb0\xfb\x5d\xaf\x81\x4b\x83\x3d\x3d\xa3\x88\x79\xef\x4d\x7c\xca\x87\xf9\xec\x80\xd0\x68\x66\x37\xa8\xee\x11\x86\xbe\x7d\x18\x0f\x73\x4e\xe3\x82\x9b\xc0\x4f\xc2\x05\xa6\x19\x83\x57\x1c\xd9\x57\xb5\xf8\x10\xa8\xde\xc2\x0c\xc3\x1c\x74\x66\x5a\xba\xe6\x86\x65\xe5\x92\x77\xbc\x01\xba\xa2\x35\xee\xaf\x04\x8a\x47\xbd\xf2\x89\xa8\xaf\x93\x7e\x40\x4a\x19\xba\xae\xd1\xd2\xe6\x45\xc1\x7f\x6c\xb3\x51\xaa\x1c\x01\x2e\x9e\xf3\x4d\x2b\x03\x90\xed\x47\x69\xc9\xa7\xaf\x23\xa9\x3f\x74\x48\xae\x83\xba\x2b\xb5\xb2\x4b\xf9\x5c\xa7\x31\x68\xd8\x7e\x3f\xc2\x03\x62\x63\x32\x5e\x17\xa6\xbd\x20\x43\xbd\x79\x95\xbe\xd6\x39\x11\x4e\x06\xf7\x91\xaa\xb8\x9b\xfe\x57\x4d\xc8\xf1\xfa\x7c\x4d\x06\x06\xd9\x2a\xee\xb2\x13\x61\xda\xb6\xc9\x5d\xce\xaa\x88\x9d\x59\xc5\x78\x15\x60\x72\x64\x49\x68\x1c\x59\x1a\xdb\x8c\x94\x42\x9c\xdf\xe6\x35\x13\x02\x9f\xd8\x47\x60\x20\x1c\x3d\xce\xa5\x8e\xa8\xa5\x60\x4a\xa5\x35\x00\xb7\x42\xc0\x8f\xe6\x4e\xa4\x4b\x1f\xd4\xe9\x45\xb3\x68\x21\x92\x24\x2c\xa6\xf4\x7c\xa0\x52\x14\xe7\x9b\x64\x5f\xb3\xdd\xd8\xf4\x6c\xcc\x9f\x91\x34\x78\xc7\x93\xae\xb4\xa9\xad\xc4\x16\xc2\x40\x4e\x9a\xbf\x1a\x13\xac\xf1\x47\x5a\x2f\xf4\x66\x9b\x35\x28\x86\x76\xa1\x50\xe2\x13\xe7\x27\x8a\x92\x04\x89\x0d\xee\x55\x75\x03\x82\xda\x0b\x17\xe7\x1c\x62\xb3\xfa\xd1\x1a\xef\x10\xb2\xa9\x8f\xda\x30\x47\x83\xcc\x78\xd8\x3c\x2b\x72\x07\x1e\x24\xfa\x3b\xad\xa9\x2a\xbb\xb0\x60\xc3\x82\x53\x55\x48\xe2\x6e\x63\x40\x14\xdf\xcd\xf8\x39\x07\x75\x13\xa9\x45\x03\xc7\x7b\x8d\xe6\x96\xaf\xdd\x71\x95\x17\x76\x0c\xa1\x0b\x98\xae\x07\x2a\xa2\xdd\x0e\x4a\x07\xd1\xc2\xd4\xb3\x88\xf5\x89\x90\xf5\x14\x05\x01\x40\x05\x3d\x5e\xad\x85\xcd\xeb\x5e\xab\xde\xee\x9b\xf1\x05\xf9\xd8\x2c\xaf\xd8\x2c\x7f\x8c\xde\x1a\x66\x6c\x07\x1a\x04\xa5\x96\xdb\x79\xe6\x19\x4d\x38\x28\x55\x30\x00\x8f\x58\xe3\x2e\xf0\xa2\xa0\xc8\xbf\x23\x8a\x7a\x0b\x83\xce\x5f\x3b\x43\x5e\x8f\x10\x33\xfa\x9c\xc7\xf2\x30\x8d\x29\x65\xe9\x09\x7d\xe9\xbd\x44\x3c\xbd\xe3\x64\x38\xa9\x23\x87\x9d\x88\xf7\xe0\x6a\x89\xa8\x7a\xb3\x9d\x07\x89\x88\xbc\x30\x85\x9d\x52\xd8\x74\xac\x5c\xb8\x1b\xf7\x54\x63\xc5\xa9\x36\x71\x9a\x70\x68\x32\xca\xaf\x74\xfc\x43\x5c\x0c\x3c\x9e\xe9\xe2\x64\x2b\x0c\x47\xc2\xc4\x45\x1b\xc7\xcb\x69\xca\xcb\x49\xea\x98\x35\x13\xf2\x53\x52\xbc\xb4\x45\x96\x86\x43\x3b\x8a\x42\x13\xe7\x5a\xac\x60\x52\x93\x99\x53\xf4\x3f\x99\x19\xd3\xf6\x80\x9b\xb1\x4a\xaf\x84\xf3\x88\xf9\x67\x30\x17\xbe\x53\x27\xed\xc5\xd1\x40\x9c\x25\xd1\x2d\xd2\xc0\x71\x8f\xd4\xb5\x71\x64\xa1\xe7\xc6\xe4\x62\xaa\xc0\xf1\xed\x36\xda\x9e\x38\xca\xdd\xbe\x81\x03\x72\x5d\xa5\x61\xaf\xb7\x29\xf1\x84\xb1\x35\x99\xd0\x07\xe2\x54\xe5\xce\x34\xa6\x2f\xa4\xdf\x14\x1e\x02\x45\xf0\x69\x92\x7e\xd4\x27\xaf\x13\xa3\x02\xe4\x10\x5f\x4f\x3c\x9a\xa6\x32\x73\xa8\x0a\x71\x31\x0c\x31\xae\x54\xc6\x5a\x10\x0f\x43\x1b\x09\x61\x0e\x16\xef\x47\x81\x5f\xc8\x1f\xb9\xaf\xce\xc7\x51\x16\x15\x35\x10\x00\x47\x99\x58\x11\x37\x55\xdd\xe0\x13\x45\xaf\xdf\xb7\x79\x1a\x9b\xc2\xa2\x62\x86\x90\x7a\x0d\x3e\x09\xdf\xb4\x15\x36\x16\xd2\x3e\x39\xf1\xd5\xf7\x63\xcf\x63\x7b\xf1\xb5\x6e\x2e\x81\xfa\x33\xad\x0a\xd8\x5c\xe4\xf7\x70\x1e\xbc\x8b\x55\x81\xe3\xf2\xa4\x92\x8d\x0e\x87\x59\x94\x17\x51\x42\x8d\xac\x73\x9b\xa0\x19\xdf\xbc\xda\xac\xed\xbf\x70\xa4\x1b\x46\x45\x14\xa6\xd9\x58\x31\xb1\xce\x6b\x54\xf6\x7c\x8b\xde\xfd\x6c\x77\x68\x96\x98\xf0\x01\xc7\xfa\x0f\x54\xe7\x1b\x7a\xff\x11\xd0\x9f\xf8\xd4\x8c\xcb\x57\x4d\x98\xf6\xf2\x69\x1f\x04\xae\x51\xba\xc3\x65\x2e\x3d\x35\x70\x67\xa6\x86\xda\x56\xb4\x3a\xf1\xca\x67\xab\x08\x6a\xf3\xaa\x46\xac\xef\x5e\xf5\x47\xcc\x03\x4f\xaf\xb3\x97\x65\x89\x81\x7f\x9e\x66\x73\x2e\x19\x62\x5a\xa5\x02\x56\xa2\xdf\xa6\xa4\xdd\x07\xfb\x66\x54\xd3\xec\x15\x6a\xbe\x46\x50\x06\x45\x41\x3a\x0d\x7e\x66\x3f\x31\xa2\x6c\x76\x56\x95\x90\x21\xcc\x3b\x99\xc8\x7f\xfc\xf7\x67\x5c\x1e\xf4\x77\xf7\xaf\x7a\xc8\x68\xcf\x98\xbf\x4b\xe8\x36\x2c\xc7\xdb\xf8\x61\xc4\x49\xdb\xe8\x2d\x90\xf0\xd9\x4b\xe9\x52\xec\xe9\xef\x34\x36\x1e\xe5\x3b\x62\x47\x66\x06\x1b\xf8\x23\x45\xba\xf1\xa3\x36\xb6\xdb\x30\x4d\xfa\x69\x82\x48\x04\x1b\xed\x75\x15\xee\xbc\xae\xbc\x0b\x13\xc7\x76\x60\xfb\xf1\xca\x34\x0d\x92\x8e\x6f\x24\x99\x4d\x61\xac\x04\x3b\x3a\xb3\xfd\xa4\x83\x61\x9a\x24\x1f\xa7\x99\xd0\xc6\x22\xbb\xfe\x63\x84\xd2\x7c\x33\xd9\x42\x71\x50\x4c\xa9\x7c\xe9\x34\xa8\x37\x31\x06\x7b\xc8\x0f\xe2\x72\xae\x47\x2d\xd9\xd8\xf6\x32\x0f\xbb\xc0\xf3\x4c\x14\x5f\xf4\x44\x79\x6a\x4b\x51\x1e\x15\x5a\x5a\xf8\xe3\xc0\xe7\xa4\x3f\x6e\xe1\x15\x7b\xae\x3b\xb6\x26\x1c\x8a\x93\xd5\xd6\x8e\xd2\x46\xc5\x5d\x16\xd5\x39\x43\x23\xa7\xbb\xe2\x44\x1e\x4f\x97\x7a\x46\x51\xb8\x57\xb1\x93\x5c\x41\xaa\xa0\xd6\xe6\x06\xef\x83\x65\x6f\xb1\xc3\xfe\x3b\xae\x04\x22\xed\xfd\x48\x91\xc2\x3c\xbe\x85\xdd\xe9\xd0\x21\xaf\x20\xe0\xfa\x0e\x38\x2f\x29\x75\x33\x7f\x78\x3c\xd0\x1d\xcf\xa7\x14\x40\xba\x4c\x6c\x1e\xa6\x54\x3c\x81\x33\x21\x90\x13\x27\xdc\x52\x13\x0e\x3c\x7c\x40\xfe\xac\x8d\xf7\x92\xd5\x49\x6b\x40\xb3\xdb\x1a\x68\x76\xbb\x0d\x3c\x17\x9a\x25\x6b\x0a\x15\x96\x80\x74\x99\xaf\x6b\xf5\xb3\x5e\x5a\xa3\x2e\xc3\x16\x93\x87\xf3\x15\xc7\x67\x2c\x14\x4a\xb0\x70\xff\x94\x06\x4b\x64\x19\x14\x91\x76\x93\xbf\xf4\xd9\x6e\x3e\xb6\x24\xbb\x40\x3f\xa3\xfa\x45\x5c\xf3\x48\xe0\x0b\x88\xa3\xb4\x72\x46\xa3\x3c\x4d\x6a\x10\x2c\x4e\x9c\xf3\x4d\x4b\x3e\xf0\xb9\xee\x42\x9a\x2d\x9b\xac\x3f\xe5\x53\xc5\xa8\x1d\x63\xb2\x90\xa1\xc7\xfb\x9f\x6d\xeb\x9a\x26\x4c\x0e\x55\xc5\x1d\xf5\x62\x35\xe0\x1a\x5d\x89\x73\xf9\xbe\xab\xfd\x96\x49\x54\xc0\x3e\x30\xeb\x0b\xfd\x9e\x30\xc0\xb4\x70\xd4\xc5\xa6\x97\x66\x86\x39\x7d\x74\xf8\x47\x6b\x52\x42\xc1\x96\x48\x36\xab\x9c\xa4\x5c\xf7\x91\x76\x54\xb3\xc4\x49\x3d\x01\x0f\x54\x57\x75\x58\x0d\x66\x5e\xe0\x73\x08\xe8\x31\x0e\x12\x97\x55\xcf\x0b\x2f\xf5\x77\x14\x91\x00\x54\xc5\xb2\x1d\x34\x00\xe2\xa5\x78\xa4\xc9\x37\x26\xba\x6d\xcc\x6f\x9a\x4b\xf5\xc3\xb6\x05\x7d\x50\xd9\xb7\xcc\xac\x98\xb8\xa3\xe2\x1a\x9c\xec\x82\x61\xfa\xac\xb3\x55\x49\x0e\xd1\xc2\x63\xde\xe9\x54\x19\xb3\x3b\xba\x38\xf5\x89\xd2\x52\x0b\xd3\xd1\x28\x22\x51\xfb\xdd\x0a\x69\xc8\x80\x03\x0a\x69\xfe\xc1\x3e\x2e\x2e\x30\x3f\x81\x02\x5f\xed\xa4\x58\x52\xba\x4c\xe1\x1a\x4c\x48\x45\x18\xb1\x22\xb3\x71\x68\xc0\x42\x3a\x92\xc2\x25\x53\x28\xd7\xe8\x94\x35\x9d\x76\x0f\x35\x74\x69\xde\x5d\xd7\xed\xd3\xeb\x0a\xbb\x3f\xb0\x89\x75\x22\x67\x00\x6f\x9e\xd4\xd4\x4b\x57\x14\x88\xf5\x23\xb5\x75\xc6\x65\x16\x0e\x4d\xee\xa8\x13\x99\xdf\x3a\xf0\xcf\x73\x49\xa5\xb7\x13\x53\xe6\xd6\x20\x90\x56\x3c\xc4\x47\x36\xa1\xfb\x04\xc7\xe2\x8e\xa2\xe4\x0a\xd3\x51\xaf\xcc\x0b\x51\xb0\x90\x96\x14\x7a\x09\xe9\x55\x69\xd9\x57\xe1\xd0\x2c\x70\x67\x3e\x0c\xf5\x5b\x0a\x7d\xf1\x56\x23\x8e\x38\x7c\xe0\x70\x37\xcc\x6c\x3f\x2a\x96\xd3\xac\x18\xa2\x8a\x8e\xa7\x3f\xa9\x58\xbb\x4f\x2a\x6c\xbd\x49\x8a\x28\x8c\xc6\xc6\xd1\xe8\x4a\x82\xde\xa3\x7a\xa6\x67\x54\xe2\xe7\x7e\x23\xab\xfb\x2c\x55\xf8\xc0\x3e\x0b\xa3\xfa\x2f\xb1\x96\xf9\x46\x4d\xe3\xa0\x34\x19\x90\xf9\x28\x79\xbf\x83\x01\xe0\x9b\xc6\xa2\x3f\x4c\x85\x0a\x00\x1a\xa6\xfc\x39\x0b\x71\x6b\xc1\x92\xab\xc1\xd9\x36\xf3\xa4\x72\x7e\xb2\x30\x16\x75\x7f\xe1\x23\xf3\x76\xe8\x8c\xea\x4a\x1e\x0f\x53\x7e\x7c\x27\x00\xe4\x02\x91\x56\xfa\xff\xdc\x8c\xca\xcc\x44\x53\xaa\xe0\x14\xf8\x92\xe0\x5d\xaa\xd1\x01\x74\x7c\x5b\xe5\xb4\xa3\x64\xc9\xe6\x45\x9a\xed\x52\x1c\x04\xbf\x13\xf8\xee\x83\x2b\xaa\x09\x99\xe1\xed\xa2\x19\x56\x7d\x39\x4a\x0d\x77\xe9\x6c\x65\x16\x21\x2a\xb4\xd5\x70\x70\xc2\x97\x1e\xaf\x3c\xdd\x11\x79\x8e\x5f\xdd\xbf\x4a\x31\x34\xb2\xec\x9f\xa0\xf2\xca\x02\x98\x08\x70\x10\x1b\xdf\x45\xea\x12\xdb\xe4\x54\xa0\xfb\x1a\x6b\xfc\x1a\xeb\xf4\x7e\x4e\x06\x56\xd3\x36\x56\xcf\x26\xcd\x19\x0a\xfa\x7d\x87\x26\x0c\x3e\xc0\x29\xaa\xba\x33\x0b\x23\x8d\x1a\xcb\x66\x4f\x14\xc6\x77\x6a\x86\x5e\x1f\xbf\x7e\x07\x8b\x04\xf9\xf9\x29\x38\x1d\xa2\xdf\xd9\x71\x29\x87\xd7\xc8\xb7\x60\x91\xcd\x9a\x18\x67\x5e\x74\x88\x84\x01\x0b\xfb\x54\xe0\x06\xe6\x67\x4f\xb5\xe1\x0d\x73\xbb\x64\x33\xd4\xb5\xdd\xf9\xe2\x30\x2b\x97\x5b\xe8\x64\xe7\xba\x43\x9b\x4d\x01\xdf\xc6\x98\x03\xaa\x0d\x39\xd5\xdf\xca\xb3\x14\x25\x77\x45\x48\x18\xf5\x09\xbf\x80\x53\xf9\x0f\xe9\xf1\x91\x34\x7c\xa8\x65\xdb\x70\x78\x62\x8c\x1e\x47\x0e\x59\x11\xf8\x48\x91\xf8\x66\xd0\xf9\xca\x17\xf9\x0c\x7b\x63\xd2\x10\x68\x40\x8b\x20\x58\xc2\x11\x5f\xdc\xd1\x6d\x43\xa9\xa8\xcf\x39\x69\xbb\xd7\x27\x1e\xbc\xf2\x7a\xf0\xb4\x36\xd8\xe3\xd8\x80\xac\xa5\x7a\x60\x9c\x69\x37\x54\xe7\xf0\x0d\x55\x23\x1a\x57\xa6\x88\xba\x4b\x7c\x81\xe6\x42\xad\xbd\xc2\xcf\xd3\x62\x99\x15\xec\xb4\x20\x41\xf8\xdd\x89\x02\xd0\x7e\xb7\x85\xdf\x61\x9e\x84\x75\x01\x1a\x97\xac\x27\x0d\x09\x76\xf8\x8f\xe8\x15\xb0\x6b\xb8\xe9\x07\x86\xc1\x26\x20\x10\x7d\x4e\x52\x83\x81\x3f\x42\x9b\x7d\x85\xc7\x0e\x74\x97\x4d\xe4\x65\x00\x9d\xe3\xa9\x9c\xbe\x36\x1c\x53\x56\x26\x66\xd9\x80\x66\x98\x9b\xdd\x02\xaf\xce\x71\x5a\x81\xd3\x8f\x2b\xc2\xe0\x91\x49\x56\x3e\xa3\x54\xe6\xf7\x23\x1b\x89\x1f\xba\xe6\xd5\xe4\xa7\x3e\x87\xa0\xd5\xbd\x77\x35\x54\x40\x2e\x9e\xa4\x0d\x26\x7e\x49\xc7\x31\xbf\x4c\x23\x41\xe7\xa4\x1a\x7c\xe3\xdd\x58\xa9\xbf\x4e\xaf\x56\xc3\x89\x16\xac\xab\xd8\x78\x48\x4b\x74\x56\x3d\x84\xfc\x0e\xcd\x37\x5c\xa9\xff\x43\xa5\x2b\x06\x76\x3c\x34\x59\xbf\x98\x56\x91\xfb\x9a\x12\x42\xdc\xa8\xb9\x4c\x95\x15\x11\x0e\xbd\x16\xb2\x2c\x3b\x8e\x62\x3b\xce\x57\x28\xdb\x8d\x62\xfc\xbf\x9a\x28\x50\x28\x5c\x05\x6c\xe4\xfb\x4a\x80\x68\xdd\xf1\x04\x44\xc9\x42\x5c\xda\xa4\x88\x18\xb1\x01\xd7\x14\x38\x01\xbe\x76\xfd\xdc\xbd\xd8\x84\x8b\x23\x92\xdb\x39\x76\x80\x99\xa5\x10\xe4\xf2\x75\x0b\xbd\xf0\x9c\x68\x15\xa5\x49\x4d\xcd\x5c\x61\x89\xaf\xa8\xda\xd9\x20\x33\x45\x19\x15\x69\x29\x4a\xf3\x6d\x31\x9e\x5f\xa7\xc5\x72\x94\x08\xda\x1c\x86\x90\x7b\x4a\xf9\xa6\x4d\x81\x76\x39\x1d\x99\x24\x7a\xc5\x2d\x56\x91\x10\xf0\x60\xb5\x75\x07\xc2\xf8\x6a\x39\xea\xa5\x39\xc5\x59\xc8\x12\x83\xc3\x86\x5b\x2e\x27\xaa\xc6\xce\x21\x17\xdc\xb7\x5d\x33\xbe\x16\x3f\x4e\xc7\x70\x73\x31\x46\x6f\x4f\x94\xbe\xf8\x45\x6d\xc4\x00\x77\x86\x03\x01\x85\x25\x66\xc1\x50\xbd\xfe\x36\x1f\x73\x49\x91\xd3\xb6\xea\x71\xde\x6b\x13\x8a\xa2\x0c\x70\x9e\x8e\x2c\x59\x00\x7c\x21\x51\xd9\x6f\xde\xa6\x83\x48\xba\x61\xf4\xc1\x98\x44\x76\xb7\xaf\x3e\xb2\xae\x8d\xe0\xd4\x7c\x86\x76\x83\xbe\x40\xea\xbe\x8a\xc5\xf3\x22\x5c\x49\xbe\x21\x78\x34\xf2\x04\x68\x27\xc7\x76\xbc\xae\x53\x0d\x51\x66\x13\xa0\xab\x9c\xb4\x73\x35\xb2\xe2\x85\x78\x98\x5d\xf2\x79\xb2\xa8\xc8\x47\x9c\xd2\x22\x0b\x4d\xea\x9d\xf9\xc3\xf3\xdd\x91\x11\x4e\x54\x27\xd2\x53\xd9\x0d\xf8\x1d\x1b\x38\xbe\x71\x9a\x9e\x69\x63\x6f\xb5\x84\xdd\xb7\x49\xc8\xf8\xcf\xff\x54\x6d\xb6\x6f\xc7\x91\x6f\x12\xc4\x52\x7d\x5f\xa9\x6c\xbe\x3f\x51\x7f\x99\xe6\x91\xb4\x24\xc2\x8c\xdc\x55\xba\x93\x77\x26\xea\xb9\x7e\x57\xd5\x89\xf3\x72\x3c\x4e\x73\xee\x0a\xc1\x42\x79\x93\x8e\x2b\x60\x1c\xae\xa9\x7c\xd3\x85\xb6\x44\x6c\x62\xb3\xbe\xb4\xda\x4b\x66\x46\xc1\xd8\xb8\x09\x09\x86\xe3\xae\xea\xc9\x1c\xa6\x71\xdf\x66\xf9\x1e\x1a\x3b\x51\xb9\xad\x26\x9f\x53\xa0\xd0\x44\x01\xda\x88\x57\x02\xb2\x90\xeb\x5a\x8e\x9d\xe9\x57\x5d\x0a\xd5\xf7\x0d\xd1\xbb\xf3\xbf\x4f\x3c\x07\xc6\x9b\x58\x79\x9c\x73\x0b\xbc\x06\xcd\xc9\x56\x1a\x73\xd3\x5f\x32\x49\x61\x06\xb6\x53\xf7\x0c\x1c\x1a\xb4\x29\x92\x5f\x2d\x11\xe0\x8f\x24\x5a\x56\x67\xe4\x4b\x2e\xdf\xa0\x20\x17\x45\x16\x2d\xca\xb9\xce\x24\x2f\xf4\xf4\x42\xf8\x52\x6b\xae\x5b\xc9\x09\x9a\x21\xb2\x5e\x4a\xfc\xea\x1f\x62\x1d\x2a\xc2\x26\x45\xd3\xe0\xa8\xa9\xaf\xaa\x76\x0c\x93\x65\x26\x19\x60\x1b\x33\x04\x0d\x09\x53\x97\x85\xf7\x02\x02\x6b\x2a\x3f\x9b\x9a\x64\x97\x22\xc0\x43\xa7\x33\x6c\xd9\xae\x55\x65\x2a\xdf\x26\x27\x1b\x85\xdc\xa9\x19\x9d\x98\x45\xf4\x8c\x3c\xc0\xee\x99\xce\xc1\x83\xbc\x04\x9a\x39\x8e\x63\x07\x58\xad\xc6\x13\x04\xa0\xa4\x23\x4c\x05\x3e\x81\x35\x2c\x7b\x36\xe3\xec\xa2\x10\xc6\x56\x2b\x0a\x13\x0c\x19\x66\xe9\xd9\xf2\xb6\x34\x5d\x4e\x76\xc1\x87\x64\x84\x8f\x6a\x7a\x47\x2b\x83\x93\x13\xaf\x9c\x79\x71\xb6\xc8\xb9\x84\x0b\xf9\x1f\xeb\xf2\xc6\x9e\x66\xea\x46\x6d\xea\xfa\x51\xff\x89\xea\x4d\x85\xe5\x52\x35\xfe\x22\x89\x47\xab\xf5\xe8\x93\xab\xb4\xf2\x11\x05\xfd\x4b\xf2\x10\x80\x8f\xf8\xc1\x44\x25\x28\xef\x31\x1c\x0f\x01\xef\xe3\x44\x3e\x8a\xca\x04\x68\x58\x10\xa4\x21\xdd\x82\x9d\xdc\x81\x6b\x8f\x1d\x05\x43\x8d\xad\x76\x0b\x8b\x08\x21\x4f\x67\x75\xaf\xab\xca\xac\xf4\x29\x38\xdb\xbc\xca\xdc\xcb\x1a\xd7\x61\xc3\x32\x03\x43\x3e\xf6\xd8\xd5\xc0\x97\x32\xae\xd6\x81\xee\x09\x8b\xd3\x70\x4b\xba\xae\x16\xfe\x73\x9a\x49\x2c\x96\x1f\xd3\xee\xe7\xeb\x36\x5a\xcc\x32\x19\x5b\x13\x22\x5e\x64\x66\x57\x8d\xdf\x7a\x53\xd7\x49\xd2\x64\x21\xca\x46\xb6\xbf\x53\xa1\x75\x34\x27\xec\x14\x22\x6b\xa4\x4f\xbe\xa3\xc8\xa9\xaf\xd0\x2a\xe1\x7f\xd7\x04\xf7\x53\xaa\xf9\x3c\x4a\x16\xb2\x28\x19\xe0\x51\x1c\x71\x9f\x03\x97\x5f\x72\xf0\xc0\x9e\xb5\x0b\xd3\xbe\xdb\xf8\xb4\xca\x19\xed\x86\x1f\xa9\xe1\x94\xb0\xda\x1b\x8d\x14\x9c\x67\x70\xa1\x06\x3e\xda\x09\x88\xbd\x50\x26\xe6\xeb\xc6\x98\x51\x13\x29\x35\xc1\xc2\x0e\xb9\x42\xe2\x9c\x97\x8a\xf9\xac\x6a\xe2\xb2\xa6\x80\xdb\x8c\x63\x60\x7a\xb5\x9a\xfc\xeb\xba\x70\x7b\x3b\xd0\x04\x36\xd1\x60\x28\x91\x03\x3e\xb1\xae\x81\x2a\xeb\xea\x6f\xfb\xb6\xb0\x21\x30\x8f\x02\x12\xae\x7e\x47\x30\xc2\x5b\xe5\xd4\x7f\xb1\x5b\xe6\x9c\x7c\x41\x22\xe4\x12\x59\x70\xbe\x76\xa7\x63\xe5\xa7\x2e\xe5\x8b\x2b\x8a\xff\xec\x5f\xe1\x09\xf8\x46\x25\x40\x46\x69\xda\x5f\xd9\xa9\x28\xe5\x36\x27\x35\x40\x67\xf5\x38\x38\xc1\x9f\x9e\xf1\xc9\xb4\xed\x10\x5b\x40\x1d\x0b\x2a\x89\x08\x8b\xfe\x85\xca\x30\xd1\x09\x4a\x02\x1e\xd3\xb0\x23\x28\x2a\x9d\x53\xaf\x08\xd6\x7b\xbe\x46\x5c\xca\x7f\xa4\x9a\x63\x52\xce\x7c\x2b\x31\x95\x23\xce\x5f\xda\xeb\x00\x64\x63\x83\x4a\xe9\x9f\x27\x86\x9a\x3d\x2a\x8a\xd1\x3c\x4f\x40\x37\x32\xf2\x89\x6f\x74\x59\x72\x1c\xdb\xa4\x58\x99\x52\x3d\x43\x37\x26\x4a\x79\x73\xdb\x4c\xe7\xc5\x79\xd7\xc5\xe9\xb3\x97\x69\x16\x0d\x22\x92\xb5\x24\xb6\x01\xd5\x61\x78\xd8\x29\xef\xf9\xb2\x17\x57\xe5\x44\x9e\x6f\x6b\x80\x59\x05\x71\xa3\x34\xb1\xdc\x51\x88\x19\x7a\x8d\xed\x1d\xdf\xa9\xf8\x75\xa5\xcc\x40\x34\x8a\x24\xc9\x29\xdd\x0f\xe3\x2b\xea\xe0\x8b\xed\xef\xf2\xc0\x80\xeb\x38\x2e\xf1\x32\x67\x34\x7b\x34\x23\x51\xe0\x03\x5e\x51\xa0\x83\x3b\x81\xcf\x9a\xeb\x2d\x7b\xd1\xf9\xf6\x26\x2e\x86\xd6\xf0\x60\xe3\xac\xe1\xfc\x32\xdf\xb4\xe8\xa4\x3d\xd7\x1d\xdb\x24\x8c\x58\x83\x10\x48\x3e\x96\xba\xc3\xa8\x5f\x51\xfe\xc6\x4d\xa5\xa6\x34\xb4\x26\x43\xb6\x58\x76\x9c\xee\xab\x54\xdd\x71\xb7\x15\x47\x38\xc7\x96\xea\xb4\x12\xf8\xc1\x0d\x7d\x8c\xc1\x58\xca\xb6\xde\xea\x1a\xcd\x1e\xed\x52\xcb\x88\x92\x6a\x01\x6e\x07\xdf\xc1\xd7\x8d\x24\x0f\x95\xa5\xd3\xbc\x60\x7b\xa4\x0b\xdf\xe2\xa9\xb5\xf5\x18\x66\x76\xe0\xf5\x99\x84\x59\x55\x4d\x5e\xb3\x40\x77\xe8\x50\x37\x8b\xc2\xd4\xf6\xa7\xb6\x34\x4d\x3b\x59\x79\x3e\x00\xe0\x9b\x3c\x50\xcb\x69\x58\x26\x05\x62\x38\x9e\x7f\xdd\xdd\xe1\x81\x9c\xe5\x38\xaf\x0c\xe6\x88\xac\x7b\x0d\xce\x2a\x39\xeb\x8e\x23\x2a\xb8\x4b\x4b\x05\x7e\xd9\x74\x43\xc3\x78\xf6\x68\xb7\x4c\xc2\x74\xc9\x66\xc2\xad\x8b\x53\xe4\x8c\x6a\x57\x3a\xa3\x00\xd1\x83\x38\xed\x99\x78\x5a\xa5\x0c\xef\xe1\x87\x11\x88\xa1\x8f\x18\x2e\x0f\x68\xdb\x44\x3c\x79\xeb\xca\x3b\x7c\xa0\x9b\x49\xe5\xb3\x1a\x59\x60\x91\x38\x33\xc9\x37\x93\x9f\xf2\xe5\x62\xc9\x57\x4b\x49\x0c\xbf\x81\x83\x8f\xaf\xdb\xd0\x61\xe1\xd0\x86\x8b\xd3\x5a\x00\x41\x29\x56\xc3\x0f\x14\x61\x84\x6a\xf9\xf2\xbf\x37\xdd\xea\x17\x8e\x74\xa3\xd1\x38\x8b\x46\x51\x3e\xa5\xe8\xd5\x61\x5a\xa5\xf9\xc5\x63\x1d\x4e\x7c\x2a\xd6\x67\x9c\xa5\xf9\xd8\x86\x40\xac\x71\x4c\xa1\x38\x40\xb9\x2e\x08\x2f\xeb\xae\xb2\xf3\x36\xc9\xd2\x38\x1e\xd5\x35\x8d\x4e\x4c\x54\x22\xf7\x84\xa2\x63\xcc\xec\x42\x1a\x96\xbe\xac\x21\x86\x5c\x5b\x78\x31\x4e\xbd\x2c\x2a\x8a\x98\x09\x57\x11\xd6\xfe\x6b\x45\x8c\x72\x8e\x5e\x51\x1a\x1e\xda\x70\x6d\x4b\xb6\xb0\x19\x2b\x5e\xfd\x7f\x65\x7c\x6a\x29\xa2\x16\x65\x3e\xea\x2d\x77\x6a\x54\x58\xcd\x67\x54\x35\xa6\x96\xc0\xb7\x05\xba\x11\x05\xa5\xb4\x16\xa8\x44\xe9\xda\xe4\x71\x07\xc3\x59\x99\x56\xf2\xbb\x81\x72\x01\xd1\x2a\xce\xd7\xf8\xb4\x3c\x9c\xf2\x1f\x4c\xdc\x33\xc2\x6e\x21\x41\x07\x4d\x13\xdf\xb8\xa1\x74\x3e\x92\xf2\x8b\xb4\xbf\xe4\x3b\x44\x16\x16\xa8\x73\x09\xa5\x24\xa4\x45\x5f\x57\x2c\xeb\xdb\x28\xaf\x00\x47\xe2\x81\xca\x0e\x7d\xd5\x8c\x98\x0c\x49\xa1\xfa\x84\x89\xe0\x8a\x03\x46\x2c\xa7\x69\xbf\x97\x45\xfd\x81\x9d\x22\x77\x1e\xcb\x1a\x44\x2e\xd8\x5b\x77\xb4\x2a\xe5\xb6\x19\x2d\xde\x1d\x9b\x08\xfe\x8f\xe7\x37\xf4\xbe\xf1\x99\x89\x6f\xde\x1b\x9b\x0c\x9b\x32\x29\xf2\x69\xdf\xb6\xc6\xf4\x6d\x52\xdd\x50\xcd\x19\x20\xec\x91\x8e\xc2\x9f\x56\xc0\x0c\x1b\x46\x0b\x51\x48\x1d\xcf\x39\x8c\x0b\xc8\x38\x2e\xab\x6a\xf4\x3b\x8a\xa4\x83\x53\x9f\xfc\x1f\x93\xcf\xd5\x1a\x0a\xe3\xd8\x86\x45\x69\x62\xc0\x80\xf0\xbe\xeb\x8a\xa6\xf2\x4e\x0d\x2b\xa1\x42\xce\xaf\xab\x49\x0f\x99\x2d\xa8\x7a\x16\x64\x1e\x4f\x4e\x5c\xb6\xf1\x57\xf7\x91\x9b\x86\xb7\xda\xbb\xfa\x54\xa3\x34\x36\x0e\x69\xc5\x31\x63\xa0\x6a\x30\x47\xed\xd7\x15\x4b\x3d\x05\xf8\x19\x97\xbf\x1c\xa7\x05\xb2\x97\x31\xfc\x61\xfc\xf1\x55\xc5\xca\x00\xce\x0d\x84\x7f\x9b\x35\xe4\x73\x5c\xf6\xa6\x54\xfe\xfc\xdc\x44\xb7\x4d\x21\x00\x40\x87\xca\x6d\x15\x4e\xc5\x69\x9e\xdb\xfc\x33\xb4\x35\xf1\x03\x8f\xcd\x28\x8d\x40\x24\x33\x30\x6b\xac\x2d\x81\x23\x96\x89\xd8\x70\x0c\x3c\x9c\x78\x85\xc0\x3d\xab\xaa\xe9\x64\x8d\xaa\x35\xc8\x0e\x9e\x98\xf8\x90\x9c\x29\x0b\xb0\x02\xd7\xd5\x36\x81\xe4\x05\x7f\x20\x50\x74\x4d\x8f\x81\x3c\x13\xc5\x9e\x7a\x62\xa2\x97\x96\xb5\x2c\xd5\x44\x65\xa9\x9c\xc7\x1e\x25\xfd\x6a\x8d\x71\xfa\x0c\xc3\xbe\x87\x26\x12\x38\x53\x24\xc1\x25\x8f\xd9\x6c\xb2\x7e\xa9\x1b\x8d\x46\x51\x22\x26\x18\x5e\x19\x9f\xd0\x7c\x53\x17\x17\x62\x01\x55\xe4\xfe\x71\x54\xf0\x75\x1b\x34\xb2\x67\xed\xd8\xa2\xe0\x09\xdf\xf8\x84\xf2\xbc\x3e\x81\xd7\x2a\xdc\x45\xfb\x5c\xe2\x2d\x8e\xe8\xec\x46\x11\x17\x90\x34\xb0\xff\xc2\x81\xe6\xf4\xa0\x68\x76\xf8\xa1\x28\x6c\xd2\x67\x62\x5b\x24\xb3\x1e\xc1\xe9\xa3\xec\xe7\x97\xb0\xbe\x6b\xfb\x19\x73\xf0\xc6\x44\xe9\x10\xeb\xbc\xf5\x8a\x35\x59\xfe\xa4\x2a\xc4\xfc\x11\x2d\x08\x64\x8a\xa6\x50\xc1\x92\x5e\x4f\x9a\x78\x78\x42\x97\xb1\xff\x9c\x1a\xba\x0b\x84\xd6\x00\xff\x02\x00\xe3\x6a\xd0\x99\x3d\xba\x79\x31\xe8\xfc\xd2\x2f\x3b\xee\xa1\x6a\x91\x28\x5a\xac\x97\x34\xb9\xc2\x11\x7e\xa7\x1b\x35\x79\xcb\x35\xaa\xcf\x39\xc7\xda\xc5\xa1\x9f\xc0\x46\x49\xd6\x54\xf5\xf4\xad\xa9\xa8\xbe\x4c\x42\x9b\x15\x26\x4a\xa6\x08\x95\x89\x65\x72\x13\xa8\x4c\x97\x56\x72\xf5\xc6\xed\x0d\x4f\xab\x5a\x3f\x99\xcd\x6d\xb6\x54\x97\xed\x44\x63\x38\x5f\xd7\x90\x5b\x9f\xcf\x3f\xbf\xcf\x17\x2d\x2e\x22\x03\xc4\x99\x6a\xfa\x29\x29\xeb\xd3\x10\x8a\x66\x82\x47\xfe\x9d\x9f\x28\xa0\xc2\xdd\x89\xaf\x6e\x6f\xc3\xf6\x46\xdc\x76\x1f\xc7\x1e\xfc\x99\x5f\x87\xff\x05\xbf\xe4\x63\xdd\xf9\xc2\x38\x47\xc4\x28\x37\x03\x0f\x66\x7c\xe9\x23\x1e\x64\xa1\x0f\xa0\x79\x73\x6a\x0e\xcf\xcf\x39\xe3\xda\x44\x10\xc4\xd6\x48\x13\xa6\x44\xe3\x34\xb8\x12\xa6\x37\x93\xa2\x00\x6a\xdb\x5c\xaa\x8b\x30\x38\xd7\x31\x83\x7c\xa3\x60\x0e\x95\xb7\x65\xc3\xb2\x48\xb3\x7c\x47\x35\xf9\x28\x6d\x4e\x91\x85\x61\xde\x61\xac\x46\x91\x94\x53\xbd\x14\x41\x2d\x7d\xba\xd5\xb7\x7c\x96\x40\x78\x4c\xd0\x21\xa2\xf3\xde\xa7\x3b\xa5\x12\x96\x07\xcc\x88\x08\xaa\xb8\x17\x57\x1d\x63\x7f\x8c\xc5\x26\x15\x87\x76\xff\xd5\x2e\xea\x1e\xcf\x13\xaa\xc7\xf3\x44\x9b\x6e\x4c\x94\x14\x99\xe9\x1b\xc0\xb2\xb0\xc9\x80\x63\x43\xeb\xc0\x49\x5d\xa0\x79\x43\x71\x0f\x84\x69\x92\x97\x71\x61\x04\x21\xa9\x84\x08\x1c\x0a\x9c\x67\x1a\x29\xbd\xd7\x6b\x84\x58\x4b\x96\xc8\x35\x66\xf9\x3f\xd1\xd9\x86\x73\x62\x9b\xd2\x30\xda\xb6\xaa\x98\x43\x6f\x12\xc5\x2d\x7f\x80\xbf\x1b\xc7\xf5\x43\xe5\xd7\x9f\x6c\x6b\x5e\xef\x45\x8c\x28\x41\xc2\xfd\x9a\x4a\xbe\x5f\x6b\x18\x57\xe2\x8a\x88\xd3\x64\x30\x5d\xad\x01\x94\xce\x4f\xd0\x7e\xc0\xca\x04\x6f\x04\xbc\xc0\x35\x32\x2c\xa2\x99\xee\x0f\x49\xf0\x40\x4d\x2b\xf6\x78\x34\x04\xc0\x47\x03\x50\x59\x6a\xfa\xb4\x18\x81\x75\xb8\xeb\x4c\xf5\x38\x4b\x47\xe3\x42\x54\x70\x90\x7e\x40\x06\x0d\xf9\xbe\x77\x34\xed\xc8\x9d\x40\xbc\x01\x93\xe7\x69\x18\x79\x2e\x18\x9c\xc9\x37\x94\x6e\xf7\x8d\x96\x8d\x65\xa2\x70\x18\x21\x87\x85\x8d\xfd\xdb\x13\x15\xb5\xfc\xb6\x6b\x1f\x59\xc8\xd2\xd1\x2e\x1f\x44\xc2\xaa\x82\xff\xeb\x2f\x6a\x39\xde\xc7\x57\xab\x99\x72\xe9\x62\xa7\x3a\x7e\x02\x67\x03\x86\x8e\xeb\xf0\x42\x29\xe2\x50\x69\x26\x4b\xe3\x28\x31\x53\x9a\x42\x0b\x31\x8f\x48\xe7\x2a\x56\xaa\x87\x8d\xaa\x17\x75\x4b\x55\xcb\xb2\xfa\x59\xa9\x05\xd1\x2f\xc1\xc9\x61\x03\x86\x65\xa4\xd9\xdb\xe5\xbc\xa7\x92\x85\xeb\x16\x77\xee\xf0\x95\x9a\xe1\x55\xd9\x9e\x4d\x7c\x3b\xdf\xa8\x5a\xc9\xb2\xb5\x8b\x96\xe4\xc1\xbc\xa2\xea\x3a\x08\x92\xa4\xd1\xd3\xf7\x81\x8e\x63\xaa\xdd\xa4\x40\xff\x23\xe1\xf6\xa1\xc2\x57\xdc\x22\x3e\x08\x41\x01\x7a\xf2\xe9\xbe\x71\xfa\x8d\xec\xba\xea\x66\x9d\xf5\x56\x76\x96\x7e\x15\x09\x8d\x9c\x98\xce\xbc\xe3\x2d\xaf\x11\x48\xfc\xe5\x4f\x63\x29\xb0\x89\x05\xa3\x57\xc7\xe3\xe6\x99\x7e\x85\x6f\x3e\x15\x6f\xbf\xac\xfa\xa0\x60\xb5\x99\x48\x9c\x6f\xda\x1c\x9d\xc4\x64\x59\xba\xdc\x51\x87\x2e\x42\x67\xe1\x93\x68\x69\xcf\xb1\x26\x2b\x86\x5f\x2b\xcd\xa2\x0c\x8d\xe3\x80\x73\xfb\xe7\x6c\x1b\xe9\xa7\x59\x5e\x04\xbe\xd5\xa3\x25\x29\x1c\x75\x7b\xfd\xd0\x21\xae\xfd\x6c\x28\x8c\x4e\x91\x01\x88\xac\x18\x52\x44\xe7\x7f\xc7\x4c\x5d\xd8\x93\x8c\x29\xe3\x9f\x15\xba\x7d\x1c\x25\x8b\x36\x2b\xd2\x64\xa7\xf7\x68\x6e\x6b\x32\x69\xe0\x61\xb8\x7b\x1b\x23\x26\xfd\x39\x74\x9a\x63\x3f\x4e\x83\x3c\x9b\x6f\x66\xbc\xc6\xe8\xd0\x14\x23\x49\xf4\xc1\xd1\x3b\xa7\xa9\x96\xce\xa9\x3c\x5d\xaf\x0c\x17\x31\xd6\x22\x51\xe6\x33\x3b\x77\x5a\x85\x8a\xc7\xae\xb3\x51\xc0\x70\xea\xe3\x2c\x07\x8c\x83\x65\x43\x01\x6c\xf2\xc2\x8e\xf3\xdd\xf4\x10\x78\xdf\x9b\x13\x2f\x4e\xfc\xc1\x44\x51\x92\xb1\x5f\xc1\x37\x08\x03\x10\x75\xbf\x41\xdb\x13\x7b\x1c\x61\x80\x30\xa1\x54\x31\x84\xe4\x23\x15\xcf\x42\x96\x0e\x84\x8d\x04\xc1\xd8\x29\x85\xac\x3b\xd5\xd6\xd4\x10\x25\x7d\xfb\xb2\xd4\x46\x59\x3a\x43\xcd\x45\x93\x8e\xcb\xed\x92\xac\x4c\x52\xc5\x80\x7b\xa6\x16\xbd\xa9\x14\x99\x09\x4d\x3f\x32\x53\x2a\xcb\x70\x59\xb7\xb7\x4a\x29\x52\x50\x83\xf2\x36\x26\x09\x87\x69\x36\x32\x30\xf3\xc2\x5b\x5d\x8d\x01\x5f\xbb\x00\x91\x10\xca\x49\xe1\xfb\x61\x5d\xd2\xcf\x41\x3d\x2f\x79\xdd\x1d\xd2\xa3\x75\xd0\x10\x18\x35\xa4\x64\xf9\x5a\x19\xb8\x41\x66\xf2\xb1\x14\x83\xa5\xf5\xcc\x03\x97\xb5\xbf\x3f\x8a\x92\x41\xda\x51\xbd\x04\x5c\xaa\xe1\x9b\x3a\xd3\xec\x72\xac\x78\x99\xe1\x8d\x08\xe3\xc4\x67\xfd\x39\x67\x47\xbd\x98\xab\x24\xba\x3f\x6d\xf3\x2a\xbb\x06\x08\x15\x3f\x9c\x78\xcc\xe5\x55\x05\xbb\xfd\x4b\x44\xb6\x44\xeb\x32\xda\xbf\xaa\x0a\xdc\xc3\x68\xbc\x62\x32\xb6\x51\x4e\xed\xdd\x13\xbe\x37\x78\x9f\x7e\xb1\xda\x02\x8c\xa2\x96\x7e\xba\xea\x77\xf0\xfb\x6f\x62\x29\xe3\xec\x39\xa5\xc5\x42\x44\xb0\xaf\xfa\x6e\x20\xa8\x81\x3a\xe4\x6b\x55\xb1\x30\x79\x1e\x0d\x12\x61\xfc\x9a\x73\x7a\x66\x1e\xb6\x75\x8d\x66\x1e\x35\xd5\xa6\xc6\xb9\xac\xc9\x74\xd0\xb7\x40\x16\xe3\x54\xbd\xa6\xd3\x41\xd7\x54\x23\x42\x1e\x46\x1d\x55\x49\x43\xd4\xcb\xd7\xab\x4a\xf8\x86\x9a\x72\xf2\xa9\x6a\xb7\x09\xf7\x14\x6d\x4f\x77\xf2\x3f\x2f\x44\xdd\x0f\x1a\xe6\xf6\xf0\x81\x6e\x34\x02\x9a\x43\x21\x37\x1f\x2a\x88\xec\x79\x0c\x1d\x5c\x8a\x6b\xaa\x76\xde\x33\xc9\xd7\x4a\x31\xed\x48\xc6\x7f\x0f\xaf\xc2\x37\x2a\xb5\x99\x97\xbd\x38\x1a\x45\x09\xf8\x27\x79\xb8\xee\x07\x0a\xc4\x7c\x45\x45\x9e\xe7\x5c\xed\xaa\x88\xfa\x26\xd6\x00\x95\xf7\x94\x12\x3f\xc4\x34\xe0\x94\x3f\x68\x88\x5f\x80\x03\x70\x64\x92\x3e\xe5\x5f\xe9\xc1\xe0\x43\x3c\x52\xc4\x69\x8f\xda\x0e\xae\xcc\x52\x72\xbd\x09\xcd\x72\x9c\x62\xeb\x6d\x7c\x19\x2b\xd6\x0c\x29\x66\x80\xdf\x00\x6e\x2a\x51\x68\xa2\xdf\x97\x68\x55\x83\x34\x93\x82\xb2\x13\x68\x15\x90\xe4\xde\x9d\xda\xee\xd1\x32\x4e\x14\x4a\x89\x96\x13\x9a\x88\x61\xe3\x39\x15\x00\x8f\xe3\x96\xca\xe5\x7e\x1b\x91\x36\xe3\x62\x02\x45\x0f\xf8\xfb\x81\xfa\x49\x49\x3b\x09\x67\x40\xa7\xd6\x1b\xe9\x03\xdc\x32\xcf\x77\x29\x29\x99\xb3\xa8\x4d\xc2\x3d\xe2\x38\x85\x95\x22\x02\x95\x6e\x3d\x57\x87\x48\xcc\x09\x59\xf3\x25\x56\x54\xe5\xcf\x07\xde\x15\x8b\xcb\xde\x8a\x49\x16\x4d\x9d\x41\xba\xfa\x7a\xcf\x20\xcd\x7f\x69\x4d\x3f\x5d\x58\x50\x74\xf3\x27\x15\xba\xf9\xa4\x22\xed\x8b\xcb\x5e\x16\x85\x26\x29\x98\xaa\x0d\x75\xb9\xdf\xa0\xe7\xe1\x6b\x5d\xda\x8c\x17\x32\xdb\x4f\x3b\x1e\x70\x80\x6c\x22\x5f\x2b\xda\x35\x53\xfc\x05\x72\x00\x10\x75\x9f\x20\xc6\x08\x87\xb0\x99\x9f\x3d\xca\x03\x79\xba\x7a\xac\xcd\x8b\x08\x97\x71\x06\x3d\xd4\x54\x9d\x8f\x91\x82\x0c\x06\xec\x94\x56\xbc\x7b\x48\xe9\x38\x87\x40\xf2\xc2\xc0\x81\x47\xd7\x5f\xd6\x63\xcf\x8d\x32\xe2\xdc\x61\x8c\x11\xf9\x9f\xd7\x54\x54\x97\xe8\xb8\x67\x89\x60\xcc\xa4\x2c\x0d\x95\xab\x40\x76\x80\xdb\x5d\x02\x7d\x12\x7e\x04\x1c\x3a\xfc\xf4\x8f\xe0\x82\xe3\x7f\x36\x68\xa8\x90\xa3\x7b\x0d\xf1\xa8\x38\x26\x7a\x35\xf5\x6d\xfe\xb9\x6a\xae\x10\xb1\x3f\xc6\xc7\xac\xc8\x17\xd1\xa0\xea\x4e\x7d\x0c\xfd\xa3\xc0\x53\x06\x9e\xa6\xfc\x90\xac\xc5\xca\x4d\x44\x35\xe4\x36\xe0\x36\x4e\x44\xb8\x1a\x1b\x0c\xc7\x1b\xc4\xe1\x8a\xa3\xe0\x11\x5e\x8d\x35\x78\x74\xab\xd6\xd4\xaa\xe2\x4c\x80\x06\xa4\xd3\x7c\x3a\x26\x79\xdc\xab\x13\xd5\x14\x72\x0b\xaf\x8f\xcc\xea\xae\x99\x8e\x43\x2b\xee\x02\xa6\x5f\xe0\x4a\x34\x33\xf0\x1b\x59\x6e\x53\xf8\xb7\xc8\x6a\x0b\x4c\x4b\xb5\x47\xc4\x29\x8b\x0c\x28\x46\x86\x8e\x92\x62\xdf\xaf\x4a\x91\x19\x2d\x70\xbb\xbb\x1a\x54\x95\x76\x17\x0b\xcd\xdd\xb4\x30\xc0\x78\x2d\x4c\x32\x8b\x17\x4a\x06\x5f\x49\x13\xdd\x0f\x54\x64\x05\xc0\x1c\x12\x2f\x97\x54\xba\xe4\xf9\x83\x7f\xde\xa6\xad\x27\x5c\x16\x74\x54\x66\x5c\x47\x74\xe0\xb1\xea\x0f\xa5\x85\xfb\xa9\x3a\xeb\xd4\xe1\xf9\xee\xa1\x43\xe4\xe1\xa3\x6a\xf9\x16\x89\xe5\x08\x0d\x64\x1d\xd3\xeb\x14\x37\x4e\xb8\x16\xb6\x71\x16\x09\x93\x28\x9e\xe4\xac\xa7\x5a\x7b\xf6\xe7\x80\xac\xc1\xce\x03\xb6\x96\x1b\x2f\x69\xb3\xe1\x9d\x9e\x40\x82\x1c\x7e\xf2\xe5\x89\x67\xcf\x6d\xb2\x9c\x1f\x3b\xd0\xcd\x8b\xb2\xef\xa5\xcc\x39\x3f\x4d\xdf\x26\xb9\x6a\x55\xbe\xb1\xa3\x9e\xcd\x72\xa2\x6e\x44\x68\x0b\x6d\x3c\xac\xc4\x77\x34\xc1\xcf\x1d\x00\x8c\xb0\x7c\xbe\x3e\x51\xa4\xe2\x3c\x4d\x6c\x3d\xe8\xe5\x70\x0e\xdd\x0a\xba\x2d\x6d\x93\xe9\x68\x54\x26\xae\x7a\x83\x6d\x07\x9f\x87\x61\x24\x48\x76\x68\x89\xa7\x6b\x81\x8a\xa9\xfe\x47\xad\x9a\x1a\x0d\x12\xdb\xdf\xa1\x68\x53\x61\xe2\x6b\xdc\x77\x4c\xa0\xac\x14\x0d\x7f\x5d\x97\x22\xf6\xaa\xb4\x0d\x75\x11\xc5\x3b\xf1\x50\xe2\xb9\xf8\xaa\xef\x0d\xb8\x37\x9c\x3b\x50\xa7\xec\xeb\x64\xf6\x25\xa7\xa0\x8a\x4d\x6b\x0d\xef\x40\x9c\xb1\xcc\x96\x3d\xf6\xc6\x90\xa6\xe7\x08\x81\x6f\x2a\x6f\xcc\x11\x17\xae\x4c\xeb\x76\x5f\xbc\x15\x86\x0c\x95\x3f\xce\xaf\x63\x23\xc1\x0a\x6e\x5b\x6d\xc1\x19\xc4\x36\x11\xed\x05\x07\x7b\xa9\x7e\x53\xa0\x2e\x4f\xaa\x16\x83\x6c\x90\xc6\x11\xbc\x53\xa9\xa5\xd2\xdf\x4a\x91\xd5\x9f\x56\x0b\x51\xe2\x84\x65\x59\x4e\x4a\x89\x0e\xdc\xc3\xc7\x58\x09\xbb\xe1\x06\xce\xcd\x75\x4d\x7f\x29\x72\xc4\x45\x32\x6c\xba\x34\xab\x80\x31\x26\x2c\xd2\xac\x56\x30\x55\x4d\x64\x94\xca\x95\x02\x78\x6c\x43\xa2\xa0\x2a\x56\x10\x9c\xe2\xec\x86\xee\x94\xa6\xb1\x95\xee\x29\x57\xdf\xb6\xc6\x97\x5a\x05\xb3\x50\xfd\x21\x12\xa2\x90\x2f\x92\x52\xc7\x3e\x15\x37\x94\x0b\x0b\x5c\xcb\x65\x07\x23\xf0\xcd\x85\x97\x54\xf7\x46\x96\xe6\x2b\x1d\xda\x4b\x8e\x48\xa8\xb2\x44\x7c\xa3\xb2\xa4\x59\x5a\x16\x76\xa7\x5a\xdb\x1f\xd3\xde\x42\xb4\xfa\xad\x89\x5f\x71\x8f\xcf\x28\x4c\xc5\x79\xdd\xfb\x8e\x03\x5f\x6e\x9a\x00\xef\x23\xdd\x9e\x09\x17\x17\x22\xc7\x04\x0c\x97\xf8\x9c\x2e\x03\x9d\xd3\x1c\xb2\x03\x29\x67\xc1\x6f\x78\x17\x6b\x91\x6f\x3e\x55\xce\x2d\x1c\x9a\x64\x20\x51\x34\xfc\xc4\x0f\x03\x95\xa6\xfa\x50\xf3\xb3\xd3\xc3\x54\x2f\x0a\xe4\xc1\x34\x0d\x38\x5f\xaf\xba\x4a\x56\x94\x67\xe5\xd8\xb5\x23\x22\xb5\x89\xe0\x01\x35\x33\xad\x0a\xb6\xa4\x39\x07\xed\xa8\x97\xf6\xd1\x5a\x01\xeb\xca\xc9\x3c\xbe\x69\x11\xcf\xec\x2e\x58\x56\x0a\x72\xe2\x31\xd5\x07\xc4\xde\x7c\x9a\x92\x5c\x1e\xbd\xbc\xb3\xf3\x65\xc1\xda\xff\x2a\xcd\x9d\x6c\xb4\xca\x84\x63\x11\x3e\x06\xd5\x2b\x84\x4f\xe8\x93\x95\x4e\x4f\x05\xc5\xba\xd0\x48\x8c\xcd\xcd\x75\xd3\xb1\x4d\x64\xde\xb0\xef\x6e\x69\xf1\xcd\x5b\x2a\xab\x53\x98\xb1\x9d\x56\xcd\xfb\x08\xfe\xf9\x9a\x7c\x1a\xac\xee\x0b\x8a\x35\xe8\x42\xf0\x53\x4d\x59\xc9\xf9\xc3\xf3\x3b\xab\x3f\xc7\x69\xcd\x59\x3f\xa9\xff\x54\xa7\x88\xb4\x0c\x56\xbe\x11\x4e\xc2\x6f\x4f\x7c\x07\xe4\x7f\xc4\x51\x81\xed\xf3\xbf\xb4\x19\x83\x38\x4d\x47\xee\xf0\xd2\xe1\xb4\xf0\xd6\xb4\xc8\xf1\x12\x78\x45\xb1\xad\x5f\x85\x21\x44\x3c\xf1\x43\x7a\xac\x66\xce\xed\xab\x76\x61\xc1\x66\x79\xad\xd5\xf6\x24\xfd\x92\x28\xd1\xfc\x95\x4f\x5f\xcd\x51\x36\xe6\xcf\xba\x36\xb5\x33\x9a\x38\xa3\xa9\xb6\x43\x3a\xf0\xd1\x60\x08\x0d\x49\xc4\xd2\x1b\xca\xd5\xe5\xe9\x16\xda\x97\x27\x75\x87\x4f\x8e\x3a\xc0\xe1\x79\xcf\xf8\x5f\xad\x19\x60\xe4\x4f\x28\x65\xfb\x47\xca\x82\x9b\xa4\x88\xe2\xd8\x0a\x98\x12\xbe\xcd\x55\xed\xe8\x5c\x6d\x5b\x54\x55\xb0\x2c\x1c\x34\xc8\xb2\x7d\x30\x51\xcc\x35\xb7\x03\x5f\x02\x6e\x2e\xfd\xea\x25\x0d\xe1\x95\xf2\x1a\x90\x28\xd0\xdd\x34\x6a\x55\xda\xbc\xd8\xed\x01\xe0\xd7\x03\x8f\x0a\x99\x87\x47\xcc\x94\x3d\x4a\xf9\xe3\xbb\x2a\x08\x79\x1f\x3e\x34\x76\xee\xaf\xc0\x09\xc6\x52\xfc\x33\x1c\xd4\x42\x1e\xd3\x5c\x67\xf3\xdd\xbc\x30\x03\x98\x8f\x59\xc7\x83\xaf\xa0\x94\xa7\x6a\x84\x7b\x0a\x46\x94\x0f\x4d\x66\x89\xe2\x13\x93\x78\x17\x19\x58\x41\x29\xf8\x0e\x4b\xb8\x79\x28\x1f\x4d\x83\x64\x93\xff\x08\x4f\x8a\x95\xb2\x63\xb5\x9a\x57\xd4\xad\x19\xe5\xe9\x62\x82\x39\xa7\xfb\x78\x93\xf6\x25\x9f\x46\x81\xaa\xfc\xb0\x54\xa4\x56\x01\x96\x5e\x48\xdf\x5f\xbc\x06\xff\x1e\x8f\xf2\x16\x4c\x36\x0b\x25\x07\x3e\x56\xda\xb1\xda\xd2\x00\x44\x94\xc4\x85\x8d\x63\xd3\x51\xc0\xfb\x3a\x73\x6c\x1b\xe1\x99\xc9\x7a\x86\x31\xe7\x52\x8f\xf6\xcd\x75\x17\xdb\xd2\xfc\x85\x89\xe9\x6c\x71\xe9\x43\xf0\x2f\xc9\xc6\xf5\x21\x6f\x39\x7e\x5a\x69\x54\x5c\x26\x67\x5c\x70\x12\xd5\x02\x82\xdb\xf1\xbf\x63\xf8\x84\x87\x9b\x86\x9f\x55\x90\x02\x8f\xcf\x66\x25\x1e\x18\xc2\x47\x58\x34\xca\xf7\x7d\x4e\x3a\x1b\x26\x1e\x0e\xb4\x8b\x42\x65\xe6\xc7\xd1\xfd\x95\x6b\x58\x08\x88\xcf\xee\xaa\xee\xf0\x97\xc9\x39\x14\x30\xf0\x94\x57\xbf\x3b\x83\xb8\x17\x33\x79\x9f\x02\x62\x26\x84\xe5\xdc\x04\xff\x0f\x4d\x2b\x42\xb5\xa6\x5c\xf5\xdc\x1c\x81\xba\x63\x3b\x92\xe1\x73\xba\xae\x2e\xd1\xf7\x7b\x8d\xd4\xf6\xe1\x03\x5d\x9b\x0c\x0d\x09\x8c\x1d\x3b\xe0\xba\x49\x68\x60\x85\x3c\x76\xeb\x24\x1d\x3f\x0e\x3e\xae\x44\x95\xd6\x50\xb8\xd5\x95\xa7\xcd\xd3\xce\x3f\x5f\x48\x33\x3b\x4a\xf3\x62\xda\x23\x9e\x41\x67\xca\xd7\x4a\x2e\x89\x7d\x57\xe9\xc6\x73\xe9\xe8\x28\xcc\xd2\x3c\x5d\x28\x70\x78\x61\x9a\x5f\x53\xc0\x89\x2b\xaa\xbf\xf3\x8a\xae\xbc\x6c\x9f\x51\x78\xfa\x28\x66\x74\x17\x4b\x42\x06\x1e\xef\xba\x86\x0f\x89\x56\xa4\x0f\x84\xd6\x34\x29\x9a\x8d\xe3\x3d\x3e\x7c\xf8\x87\x0a\x19\xa5\x28\x96\x8a\xcf\xcd\xa8\x3e\xea\x8b\xb4\xcc\x14\x71\xa4\x54\x27\xd8\xcc\xc0\xe6\xac\xd1\xda\x80\x10\xcc\xe7\x10\xf8\x73\x79\x3f\x50\x8c\x22\x2c\xfd\x2b\x39\xd6\x96\xce\x36\x8a\xf8\xe0\xb3\xe2\xe7\xd1\x4c\x89\xa9\xbc\xeb\xa1\x68\x3f\xfb\x6e\x83\x51\xf1\xd9\x6e\x61\x92\x45\x38\xc9\xba\x67\x4c\xd4\x20\x15\x59\xef\x87\x2a\xee\x36\x71\xfc\xd3\x95\x17\x0b\xf6\x0e\x06\x95\xf2\x86\xa0\x13\xf4\x6f\x3c\xb5\xda\x39\x78\xd0\x0b\x4d\xcf\x3b\xb6\xe0\x9f\x85\x35\x94\x8e\x4a\x1c\x50\x8e\x2b\xeb\x2b\x5f\x64\xa8\xf4\xfb\xfa\x0c\xb8\xa2\x6a\x7e\xb7\x54\x9e\x7c\x3b\xb0\x42\x48\xbd\xec\x5a\xad\xf6\x26\x9c\x80\x0f\x74\x86\x84\x58\xb1\xe6\x19\x51\xf4\x06\x9d\x33\x30\x93\x7f\x7d\xa6\xf3\xa5\x23\x4e\xbe\xcd\x4b\x9f\x3f\x36\xe3\xeb\xfa\xbb\x56\x15\xe8\xe8\x3c\x65\x7a\x9c\x7b\xed\xf9\x6b\xb8\x99\x0c\x69\xec\xc7\x57\x95\x3c\xf0\x30\x1d\x4d\x2b\x26\xe5\x4b\xf5\x66\x2a\x7a\x7c\xbe\x09\x7c\xeb\xfd\x25\xe5\x12\xaf\x98\xac\x9f\x4f\x7b\x10\x1f\x38\x47\xf9\x5a\x21\xd2\xcf\x93\xd7\x25\xe9\x16\xdf\x3a\x27\xf4\x93\xd5\xb7\x8b\x02\x59\xf5\x6d\xa2\x39\xe6\x51\x1d\x43\x9b\xf5\xa2\x30\xea\x5b\xa6\x9d\x14\xfe\x42\x0f\x60\x3b\xd5\x24\x20\x99\xed\xe6\xcb\x51\x8e\xf8\x0f\x96\x00\x49\x18\x71\x35\x55\x58\x7b\xab\x61\x88\x7e\xb1\x3b\x4a\xb3\x62\x40\x12\xca\xbe\xcf\x63\x83\xa6\x02\xa3\xfc\x8e\xc2\xb5\x6d\x6b\x00\xc3\xe7\xe6\xba\x61\x99\x17\xe4\xd2\xcf\x49\x8e\xe4\x8d\xc0\xd7\x51\xdf\x68\xf3\x72\x28\xcb\xce\x29\x20\x4a\x9d\xbe\xba\x7f\xc6\x33\xed\xbd\xba\xbf\xa1\xa7\x46\x84\x9c\x4b\x36\x71\xbb\x0c\x93\x0e\x2d\x00\xbc\xe8\xfd\x40\x71\xf3\xfc\x3f\xbe\x50\xd7\xaf\x7e\xca\x64\x2b\x8a\x01\x6a\xbb\xd2\xab\xd8\xbe\xea\x7d\x8b\x5e\x19\x0b\x17\x2a\xfc\xe5\xb7\x10\x1b\xf2\x8d\xaa\xa7\x2d\x9a\xe4\xab\x51\x9d\x59\xc6\xa7\xcd\x37\x6b\x62\x83\x3e\x78\x26\xcf\x6c\x47\x35\xb2\x48\xc9\xbf\x05\x47\x44\x44\x7b\x7d\x84\xf3\x99\x19\x5f\xeb\x60\xb2\x73\x0c\xe6\xb6\xd5\x4f\xed\xf7\x1a\x46\x36\xcb\x56\x80\x27\x80\x43\xc1\xba\xea\x7c\xd3\xaa\xc8\xd4\xb3\xa1\x29\x73\x3b\x5d\x6d\x36\xb8\x53\x9f\xd0\x81\x82\x60\xf8\xa6\x6a\x08\x5f\xc7\x46\x91\x44\x9b\xe2\x8e\x0e\xd3\x24\x65\xd6\xb2\x97\x3c\x06\x51\x77\x9a\xd0\x30\xc1\xde\x5e\x56\xcd\x4d\x4c\xb5\xce\x29\x5f\x32\xc4\xdc\xa1\xb8\xea\x79\xd3\xaf\x91\xb1\x90\xca\xbb\xef\x0b\xba\x81\xe7\x91\x3c\xbe\x4a\x34\xfd\x86\xce\x5a\xbe\xa7\x1a\xcb\xd2\xac\xb0\x03\xb3\x53\x15\x76\xd0\x48\xed\x44\x4f\x2a\xa3\xe8\xd4\xe5\x2b\x93\xc3\x37\x13\x1d\x9a\x2b\x12\x83\x73\x2a\x13\xd6\xa7\x5c\x58\xc7\xf1\x01\xfe\xd3\xdf\x54\x44\x31\xbf\xe9\xc0\xed\x7d\x07\xac\x81\xc5\x3c\xad\x66\x7d\xcf\x8c\x4a\x10\xef\x5c\xf5\x21\x48\x99\x40\x9a\xbe\xa3\x29\x4e\x3a\x9e\x4e\x2b\xd0\x2b\x38\x8a\x11\xe2\x60\xf1\xe8\x74\xc9\x71\xac\x07\x18\xd5\xa9\xd5\x16\xee\xce\xaf\x95\x51\xb8\x08\xee\xce\x79\x2f\xc6\xe2\xe5\x24\xa6\x55\x72\xf7\xbe\xaa\xae\xf4\xa3\xbc\xc8\xa2\x5e\x09\xf0\xce\xe6\x09\xd8\x65\x1c\xca\x50\x1e\x53\x9a\x58\x52\x00\xb9\x00\x3b\x2c\xd4\xb2\x5b\x97\xe7\xc1\x83\xdd\x32\x59\x4c\xd2\x65\x11\x71\x10\x91\xb0\xea\x88\x11\x3c\xc7\x1e\xfe\x50\xf7\xc5\xf9\x9f\x07\xcf\xad\x2b\x89\x78\xc2\x21\x5e\x8d\x08\x25\x98\xf2\xc6\xa1\xf3\x8e\x1d\x70\xc4\xe1\x9e\xf0\x1e\x40\x15\x9c\xfd\xc8\x7f\xb0\xf9\x0c\x54\x5b\xf6\xd9\x7a\xd1\x7c\x69\x85\x42\x29\xec\x36\x8e\xf3\x98\x79\x3c\xa8\x95\xa6\x5d\x52\xea\x75\xcf\xdb\x7b\x66\x63\xa2\x8e\xd1\x8f\xb0\xe0\xf8\x86\x5e\x58\x38\xcc\x5b\x7a\x30\x46\x86\x44\x82\x50\xb3\x47\xea\xe0\xbe\x42\x10\xde\x6f\x6b\x78\xea\xdb\x41\x66\x11\x1e\x48\x67\x9d\x87\xb9\xad\x29\x3b\x67\xaa\xbf\x9b\x52\x35\x28\x1a\x25\xec\x98\x0f\x15\xdd\xf6\xa9\x86\x79\x79\xb6\x9b\x97\xc4\x8a\x27\x29\x12\xd7\x83\xe8\xfb\x11\x1b\xa7\xd1\xdc\xdc\x11\x42\xdd\x26\x2c\xc5\x25\x88\x0f\x1a\x1c\x81\x7c\x6c\xc5\xef\x1f\x3a\xd4\x7d\x66\xaa\xf3\xcc\x33\x92\x41\x07\xf2\x56\xd2\x5c\xaa\x29\xdb\xb5\xda\xbe\x32\x34\x29\x0e\x58\x17\xb8\x1d\x3e\xa0\x55\x3f\xe5\xe0\x36\xc5\xd0\x66\xe8\x48\x16\x1f\x85\xd6\x92\xe8\xd0\xd2\x8b\xc9\xdc\xd0\x43\xca\x94\xb7\xd0\x1c\x16\xcb\xd6\x2c\xba\xdc\x0a\x60\x22\x1b\x4a\x83\x71\x43\x25\x8c\x96\xa3\x7c\x08\xdc\x1a\xf6\xee\xe9\xc0\xef\xe3\xd3\x4a\x17\x2e\x2d\x8b\x65\x93\x89\x4c\x22\x5c\x92\xdb\xca\x3d\xb9\xed\x69\xc5\xcb\xac\x7a\x99\xcf\x7a\x39\x19\xac\x78\x4c\xeb\x4e\x30\x36\x79\x59\x77\xd7\x99\x4b\x5f\x46\x23\xff\x5f\xfe\xb5\x19\x1f\x08\x7d\x8e\x9c\x4b\x96\x7d\xa3\x6d\x84\xb8\x6d\xef\xaa\x4a\x03\x80\xfa\x49\x51\xe7\x89\x60\xcb\x26\x79\x71\x52\xd1\x22\xc3\x0b\x47\xf1\xff\x0f\xaa\x55\x54\xa9\x2e\x4c\x54\xe3\xf5\xa6\xca\x01\x50\x5f\xe0\x13\xf4\x31\xec\xf7\xb5\x49\x0d\x9e\xa6\xd6\x0e\x74\x47\x25\xfb\xdd\x71\xcd\xb4\x6f\xd2\xa3\x61\x27\x13\xde\xfd\x39\x29\x86\xd2\x5a\xe0\x2d\xae\x14\x9f\x77\x11\xbf\xab\xcf\x2d\x3f\x2f\x65\xc1\x6d\x70\x4f\xf9\x41\x68\x79\x0b\xca\x41\x53\xd0\x8f\xa2\xc2\x41\xef\x84\x16\xdc\xef\xd2\x6b\x8a\x9b\x90\xdb\x92\xa8\x47\x07\x76\xe7\x75\x78\xef\x7c\x43\x6f\xc1\x85\x57\xa5\x4f\xf4\x91\xea\xcf\x1e\x47\x79\x91\xc6\x58\x68\xf8\x01\x74\x08\xf2\x75\x43\x61\xfe\xf0\x81\x6e\x9e\x8e\x87\x51\x5e\x10\x04\x93\x1f\x93\x89\x46\x55\xae\xf2\x4e\xe0\xfd\xea\x22\x8d\xf9\x17\x90\x8e\xfa\x33\x95\x9a\xfa\xb3\x46\xd9\xa5\xda\xd9\x79\x98\x99\x51\x2f\x76\x5b\x40\xa8\x8e\x7d\xd0\xbc\xae\xe4\xa7\x93\xb0\xcc\x32\x49\x77\xbb\xd1\x75\xbd\xa9\x6b\x00\x61\x4a\x35\xb9\xaf\x8c\xd9\x3b\x58\x37\x7c\xd3\x02\xc1\x9c\xef\x46\xc9\x42\x9a\x8d\x3c\x4e\x17\xd6\x99\x95\x62\xf9\x46\x65\xca\xb2\xa8\x30\x8a\x4b\xa0\x0e\x08\x79\xdc\x0d\xc9\x3f\x78\x82\xd6\xb8\x02\x10\x8a\xf0\xda\xf9\xc0\xd7\x91\x2f\xd3\xbe\x93\xc2\x44\x35\x81\x2c\xce\x16\x28\xaa\xd6\x7b\xb0\x2d\xd2\x41\xae\x94\x0b\xbe\x05\xb7\x89\xe5\xa1\x02\x25\x3e\xfa\x1d\x5a\x7c\xd8\x2e\xff\x44\xcd\xda\xf7\x61\x9a\x44\x2c\x6d\x6b\x00\xf1\x0b\xdd\xc2\x44\xcb\x86\x85\xaf\xf0\x57\x27\xe8\xd4\xe1\xeb\x1a\x59\x42\x1c\x9b\x31\x83\x86\x9e\xf3\xca\x9f\x87\x0f\x30\x40\x10\xb3\xc9\x55\xca\x40\x4a\xbe\xa3\x95\xdc\xc6\x0b\xba\xb1\x13\xba\x6e\xae\xc7\x7b\xfe\xb0\xe4\x5e\x9f\x22\x23\x03\x7f\x63\xe7\x6a\x4b\x35\x60\xd9\x2c\xe1\xe4\x92\x9e\x5b\x5f\x0e\xd1\x15\xb4\x74\x31\x36\xc3\x74\x64\xe0\x3c\x70\x4e\x80\x06\x45\xf2\x03\x7e\xc7\x11\x9b\x66\x32\xa0\x14\x85\xe3\x67\xaf\x86\x1f\x37\xf7\x14\x4d\xfa\xef\x04\x4a\x21\xc4\xc3\x95\x06\x59\x34\x1a\x91\xdf\x85\x8a\xc7\x75\xb2\x22\x88\x45\x2e\xe8\xee\xc3\x77\x6b\x5e\xc3\x20\x4a\x88\xe6\x43\x98\x0b\x6a\xad\x36\xd5\xca\xe0\x6b\xdd\xb4\xcb\x6e\xbd\xab\xf4\x1d\x16\x5a\x25\x64\x3c\x58\xc6\x2b\x50\x4a\x63\xb7\x55\xe9\xfe\x4f\xe8\x5d\x58\x2d\x16\x2f\xc9\xbd\xb1\x54\x14\xc1\xa9\x79\x2d\x50\xd9\x88\xb3\x8d\x7a\xfc\x81\xee\xec\xd1\xa7\x3c\x3f\xc3\x8e\x55\x2f\x84\x71\xe2\x67\x60\xff\x71\x18\x5c\xc7\x8a\x46\x4c\xc9\xfc\xa2\x30\x56\x1b\x94\x1e\x85\x9d\xfc\x4d\xec\x3a\xc9\x8f\xa8\x45\xf2\xbf\x91\xf3\x0f\x7f\xf3\x12\xb2\x11\x4c\x6f\xab\x54\x34\x3e\x33\x43\xe7\xa4\x98\x78\x42\xd5\x88\x8d\xa7\xf7\xc3\x88\xec\xa1\xca\x23\x10\x53\xd3\x94\xf4\xd5\x24\xd9\x98\x35\xd6\x62\x92\xf6\xfb\x6a\x40\x80\x41\x99\x6e\x0d\x48\x87\xd2\x88\xed\xe9\x31\x6f\x4f\x14\x47\x51\x93\xb6\xf8\xe0\xc1\x6e\xdf\xe6\x36\x43\xa2\x50\xd0\xda\x1a\xc6\xdd\xa2\x85\x34\xb6\x49\x68\x6b\xd2\xca\x13\xdf\xce\x78\x25\xd0\x12\x87\x49\xba\x44\x36\x6d\x87\x6a\xe8\x0d\x14\xc7\xed\x46\xe0\x85\x53\x79\x51\x09\xaa\x81\x66\x4a\xc4\x63\x15\x74\x79\x21\x2d\x5f\xe9\xf8\x70\x79\x5d\x93\x27\xaf\x2b\x7d\x99\xc4\xbc\x42\xc8\x34\xec\x4d\xd7\xc2\xf8\x85\x17\xe5\xda\x19\x83\xcc\xda\x58\x46\x0d\xe5\x2a\x56\x32\xe2\x9b\xb6\x84\x76\x68\xc6\x51\xc1\x3e\xae\x4e\x9d\xf3\x75\xa3\xfd\x4f\xc2\xe2\x7e\x56\x0e\xa8\xb7\x53\x13\x93\xc3\x0e\xee\x23\xc7\x5e\x43\x7e\x37\x3b\xab\x5b\x0f\xc6\xd9\xa3\xdd\xdc\x8e\xa2\x30\x4d\xfa\x25\x4a\xdf\x4e\xe0\xf6\x13\xfa\x2e\xbe\x6e\xcc\xf4\xb3\xdd\x61\x3a\xb2\x0b\x5c\xb8\x04\x5c\x84\x0d\x01\xdf\xb4\x54\x45\x8e\x74\xcb\x24\x4a\x13\x96\xe8\x69\xe5\xc0\xd9\xef\x65\x07\x58\x1d\x2e\xa7\x8c\x82\xf4\x14\x6b\xb0\x6e\x47\x37\x1e\x57\xd3\x8b\xdd\xcd\x4d\x42\xa2\xf7\xe7\x70\x32\x26\x89\x42\x82\xd9\xc0\x52\x20\x09\xe1\x18\x2a\xab\x27\x12\x06\x7c\x55\x5b\x7a\xa8\x52\x92\x5f\x3e\xfa\x65\xaa\x92\xc1\x0d\x03\xf5\x9f\xc8\x25\xa8\x37\xbf\xd5\x80\xf0\x1e\x3f\x5e\x1d\x2c\xe6\x53\x51\xc7\x7b\x15\x71\xf0\x88\x14\x64\x9d\xca\xf1\xf3\x73\x4e\xfe\xb8\xe5\xac\x28\x86\x11\xea\x8b\x2c\xde\x4a\x66\xa3\x29\xe4\x9a\x17\x99\xc9\x5f\x19\xda\x68\xb4\x8b\x8c\x0c\x2c\xe2\x55\xb2\xad\xa2\x30\xd8\x71\x84\xc4\x6f\xe1\x68\x16\x41\x40\x8f\x19\x82\xe6\x0b\x56\xd7\x27\x30\x6a\x02\x49\x69\xd3\x14\xfa\x6a\xe5\x11\x66\x2b\xc8\x4d\x32\xf9\x16\x7d\x1b\x1b\x3c\xfa\x49\xd8\x9f\xdf\xd0\xdc\xe0\x27\x34\xff\x60\x39\x4a\x33\x6c\x25\xd0\xfb\xdd\xc7\x56\xe2\x9b\x16\x16\x71\xaa\xbc\x65\xae\x72\xef\xd6\x8a\x47\x95\x4d\x54\xc6\xf9\xa1\xdb\xb5\x36\x4b\x9c\x2a\x3c\x46\xfc\xbc\xce\xf7\x6b\x92\xc0\x38\x5d\xe6\x0a\xa6\xf0\x0b\xd0\x2b\x3a\x85\xb6\xe7\xc5\xa7\x3e\xdf\x46\x8f\x98\x5b\x93\xa7\xc4\x0f\xd3\xf1\xf5\x89\x93\x4a\xee\xf2\x64\xed\x08\x0d\xd3\x84\xf1\x42\x48\xfd\xde\x50\x73\xcc\xd6\x58\x54\xdf\x7c\x05\x62\xfb\x8c\xa2\xfe\xd9\x46\x8d\xc4\xfc\x47\x2d\x42\x17\xcf\x75\x47\x76\xc0\x1d\x02\x5a\x1d\x18\xd9\x97\x6d\x33\xde\xb3\xdb\x98\x7c\x46\x51\x1b\xc7\x90\x3a\x7f\x4e\x60\xb6\xb4\xa4\x05\x72\xab\x5f\xe1\xaf\xc7\x39\xa6\x50\x50\xb7\x1e\x83\xfd\x91\x33\xc5\x26\x8e\xcd\x8a\x98\x4d\xc6\x16\xd3\x02\x15\x9c\xb1\xff\xe9\x38\x7a\x65\x18\x29\x17\x69\x5d\xb9\x48\x9e\x5a\x72\x48\x71\xe3\x94\xea\x10\x47\xab\x18\x96\x0e\x54\x00\xb0\x93\x77\xcd\x68\xe0\xe6\xdf\xfd\xfb\x7f\x1b\xce\x1f\x36\xc0\x45\x95\x2b\xb9\xa9\xf4\xbf\x3f\x98\xf8\x43\x24\x31\x03\xdb\xc7\x3a\x77\x3c\x37\xd5\x6b\x70\x4a\x3f\xf0\xae\x6a\x07\xbe\x04\xfe\x6a\x6a\x66\xab\xeb\x4e\x1d\x21\x4b\x36\x2f\xa2\x81\x11\x20\x12\x36\xce\x87\x81\xef\x2a\xf9\xb0\x8d\xdb\x28\x31\xe3\x61\x31\x84\x8d\xc1\x3e\x42\x4c\xcd\xd7\x6e\x58\xc6\x65\x96\x97\xa0\xb9\xc3\x99\xb1\x6d\x46\xf5\xc9\x5d\xab\x35\xc2\xf9\x0c\x58\x31\xcc\xd2\x72\x30\x4c\x4b\x84\x2b\x58\x8a\xbf\x35\x51\x25\x89\xdf\x6a\xd3\x28\xcd\x87\x69\xb8\xd8\xf1\x1e\x19\x03\x21\x65\x64\x9b\xa5\xa2\x30\xe5\x43\xd0\x09\x3d\x2b\x34\xd4\xd6\x43\xf0\xe8\x0b\xdd\xc4\x0e\xd2\x22\x22\xa6\x75\x77\xf0\x3f\x08\x14\x6b\x3c\x4e\x44\xf8\x9f\x4d\x94\x0b\xeb\x89\x26\xfd\x69\xaf\x09\x81\x8a\x07\xdc\xb8\xbb\xb4\x99\x95\x7f\x37\xef\x78\x8f\xdb\x6a\xfe\x61\x1a\xa7\x09\x12\xf1\xa2\x15\xe5\x73\x66\x17\x55\xc5\xa4\x0f\x51\x46\x68\x88\xba\x42\xb3\x63\xa4\xbb\x38\x51\xf4\x74\x17\x95\x24\xea\x65\x8f\xfa\x34\xc5\x90\xcf\x51\x19\x4d\x7a\x6b\x19\xe7\xe6\x79\x9d\xd9\x71\x1c\xc9\x06\x93\x3a\x30\xad\x46\x51\x09\x95\x25\x52\x8e\xfb\x32\xa2\xac\x74\x86\x57\x97\xac\xbe\xdf\xe7\x94\x72\xe2\x7d\x33\xcf\x26\xc4\xe1\xaf\x1d\xa7\xeb\x05\xdd\x23\x70\xbf\xcd\xfd\x49\x7b\x4b\xd4\x3f\xd4\x71\x02\x44\x6b\x8a\xe7\xa5\x49\xcd\x32\x47\xad\xc8\xa4\x3a\x85\x1f\xd5\xe0\x4c\x0c\x37\x76\x1d\xab\xec\x69\xf2\xb3\x6a\xaf\x6a\x3d\xf3\x3a\x83\xa5\xc7\x01\xf4\x3f\x4f\x8f\xc3\x35\x3d\xbc\x82\x14\xf8\x9a\x25\x9f\x23\xdd\x71\x6c\xa2\xbe\x16\xbd\xd4\x48\x51\xd5\xce\x57\x26\x66\x47\xe5\x36\x4a\x37\x8d\x6a\x5b\xd8\x08\xb4\xcb\xe5\xc1\x78\xeb\x0a\x8c\x77\x46\xe1\xa7\x47\xe9\xc8\x26\x45\x39\x22\xaf\x06\x8b\x1f\x09\x1a\x21\x11\xa2\x69\x13\xa6\x21\xfa\x21\xfe\x2b\x85\x17\x0c\xe3\xb2\x37\xd5\x51\x54\x1c\xff\x09\xc6\x8e\xc7\x5c\xbc\xbb\x03\x08\x02\x5a\x6d\xff\xc5\xcf\xd2\x19\xe1\x8c\xec\xe1\x03\xb5\xa2\x2a\xfe\xfd\xa1\x06\x4b\xef\x50\xd9\x7f\xe1\xc8\x9f\x52\x0d\x5b\xd4\x4f\xc0\xbe\xc1\x5b\x35\xa9\xe2\xad\xf4\x78\xb3\x47\xbb\x36\xd6\x04\x18\x13\x4d\x80\xa1\xfb\xe0\xfa\x4b\x51\x68\xa7\x28\x7c\xc2\xb1\x4d\xc8\x9a\x23\x5e\xcd\xc4\x97\xa1\xd6\x1a\x86\x02\x8d\x88\x06\x4a\xf8\xb3\x8e\x11\x83\x9c\x00\xbe\x71\xdb\xa7\x28\xb3\x22\x86\xf4\x83\x28\x43\xd0\xd0\xcb\x8d\xaf\x5e\xdc\x0f\xb6\x08\x10\xcf\x1f\x9e\xef\x7e\x79\x96\x1c\x7a\xac\x88\x9d\x30\xce\xac\x69\x4d\x43\x5b\xdb\xba\x88\x30\x1f\xb6\x58\x23\x16\x0b\x16\x7c\x16\x1c\x92\xef\xe9\xea\xc0\xf7\x3e\x15\x3b\x9c\x9b\xd1\x68\x85\x29\x98\xe0\x27\x7d\x4b\x69\x8e\xbc\x3d\x51\x34\xb6\x3f\x51\xbc\xec\x26\xfc\x5a\x19\xe5\x51\x15\xa0\xed\xa5\xa7\x13\x5a\x78\x8a\x3a\x91\x9b\xeb\xe8\x04\xe8\x7d\xd8\x39\x97\x2e\xf4\x8a\x82\xb5\x84\x40\xa0\x7b\x27\x50\x61\x40\xc5\x12\xfa\xa7\xfc\xc5\x40\x37\xd4\x72\x08\x2e\xed\x50\xed\x76\xbc\xc8\x8e\x46\x85\xf7\xd8\x81\x97\xba\xbd\x2c\x5d\xb4\x50\x20\x73\xce\xd4\xf3\x1e\xa9\x47\x8f\x8c\xf6\xff\x6b\x0d\xe7\xbe\x3a\x7b\x23\x0e\x0b\x31\x26\x9f\xe8\x01\xfa\x44\x35\xa5\x9a\xb2\x48\x73\xad\xf2\xbd\x11\xa8\xa4\xf1\x86\x3a\x20\xf2\x90\x50\xc2\x3b\x7c\x8d\x8d\x1b\x3a\x5c\xd6\x57\x48\xd8\xff\x07\x4e\x42\x08\xf4\xc9\x7b\x28\x77\x5b\x00\xb9\xf3\xdd\x91\xa5\x5c\x90\x15\x06\x29\x8c\xd1\xeb\x7a\xc0\x5e\x6f\x23\xba\x5e\x88\x12\x93\x84\xae\xa5\x5b\x95\x0e\x9f\x73\x45\xc5\xa7\x94\xe2\x6e\x91\xd9\x24\x1c\x0a\x8d\x1b\x16\xed\x9a\x02\xb6\xac\x29\xee\x5d\x0a\xf5\xb2\x7e\x47\x69\xde\x52\x12\x58\xf4\x6f\xdb\x00\x29\x76\xc4\xa9\xcd\xb6\x70\x59\x8a\xe3\x65\x92\x99\xa5\x2a\x1a\xa7\xd4\x97\x30\xc1\xa8\x1c\xf5\x05\x55\x23\xa8\x71\x57\x6f\x36\xd2\xaa\xc4\x20\x2a\xfc\x07\x0e\xf7\xc8\x7a\x12\xd8\x57\x22\x2e\xd1\x06\xce\x5c\x88\x8d\xa0\x16\x1d\xfe\xcc\x63\xd1\xdc\x13\xc7\x76\x60\x93\xbe\xc9\x56\xe8\x89\x81\x3b\xdf\x3e\xa3\x58\x05\x71\xac\xc0\x89\xfd\xf1\x44\xed\xac\x33\x1e\x62\x6e\x32\xdf\xe2\x87\x52\xd4\x39\x45\x8d\x79\xae\x61\x44\x9f\x9f\xeb\xf6\x2d\x9c\x11\xc1\x00\x55\x53\x21\x62\x49\xd5\x69\xc5\x3c\xfb\x81\x06\x10\xfb\x3e\x8f\xa1\x49\xfa\x95\x6f\xa8\xcb\x9f\x30\x8e\x52\x0b\xdd\xaf\x39\xb1\xb2\x28\xc9\x59\x7a\x1f\x8d\x65\xe7\x95\x30\x65\x13\x18\x46\x95\xfc\x32\x8a\xd1\x03\x2b\x99\x74\x5a\x86\xc8\xd0\x21\x92\xe5\xce\xb1\x36\xad\x94\x22\x33\x7d\x37\x22\x8c\x2c\xa3\x71\x14\x94\x59\x9b\x37\x67\x32\x33\x8a\xfa\x53\x5e\x31\x0d\xe5\x74\x84\x5e\x08\x05\xa4\x0f\xa8\x45\x39\xc0\x2c\x2c\xc4\x51\x28\x5a\x70\x58\x98\xbc\xdd\xf9\xc6\x53\x52\x0c\xd3\x34\x77\x8f\x87\x93\x17\xf0\x3a\xbe\x56\xbd\xa9\xb6\x18\x26\x51\x38\xad\xc9\x2b\x3e\x9e\x28\x91\xc5\x8f\x69\xa2\x5d\x8f\x8f\xef\xf7\x69\x5b\x94\x47\xba\xe4\xb3\xd0\x13\x2a\x5b\x39\xe7\x4c\xad\x4f\x4c\x8c\xcb\x02\x74\x4a\x40\x66\xdf\x0d\x14\x3f\x1f\x8b\xa2\x03\x68\xfc\xe3\x40\xb7\xe7\x93\x4d\x17\xfe\x44\xfa\x1d\x3c\xce\x3d\xca\x7c\x32\x61\x52\xa0\xe8\x27\x89\x68\x97\xdf\xe5\x5f\xe8\x48\x7d\x1d\xdc\x46\xfc\x23\x58\xf8\xc2\xf2\x48\xa7\x08\x42\xd4\x37\x14\xd3\xcb\x87\xe4\x0b\xc1\x87\xfc\x49\xa0\xaa\x92\x3f\x51\xbd\xb6\x57\x5a\xe7\x3e\x31\x45\xb4\x64\xa7\xfc\x79\x8b\x0c\x02\xdc\x9a\xdf\x53\xd4\x78\x97\x02\x5d\xa6\xc9\x4c\x87\x2a\x59\xae\x53\x47\x51\x81\xa8\x73\xa0\x9f\x46\xc9\x60\x0f\xfd\xa5\xd3\x84\xf6\xb5\xd0\xaf\xc3\xa0\x0b\x36\x8a\xde\x54\xc0\x51\xd5\x03\x69\x31\x68\x27\xb7\xe7\xea\x35\xd7\x90\x21\xe6\xaf\xaa\x89\x82\xfb\x02\xcf\x35\x0c\x99\xb8\x12\x2d\x69\x5c\x84\x45\x1d\x4f\x80\xf0\x36\xfd\x1e\x5f\xb7\x31\xfd\x90\xe4\x93\x50\x32\x63\xc3\xa0\x58\xc2\xd7\xaa\x76\x31\xce\x28\xc4\xb5\x53\x2a\x18\xbe\xa5\x24\x59\x34\x01\xc7\x8f\x55\x5d\xd4\x2e\xd9\x6c\x65\x0f\x2d\x23\xe4\xf0\x6e\xd1\x32\x12\xb2\xa6\x6a\xb6\x85\xc9\xc8\xff\xf0\x77\x03\x45\x6f\xb5\x73\xc6\x83\x09\x37\xe9\x8d\x5c\xf7\x70\xf5\x28\x98\xdf\xfb\x7a\x74\xfe\x4d\xa0\x9b\xb4\xb1\x54\x85\xe1\xd3\x3b\xf5\x47\xac\x99\xf2\x3d\x49\xf7\x75\x8b\xd6\x0e\xfa\x49\x81\xe3\x79\x3b\xe8\x0a\x74\x64\xe9\xe1\xf7\x72\x42\x07\xe7\xd1\x2d\x05\xb7\x66\xa5\x31\xd4\xbe\xd6\x7c\xab\x61\xb4\x14\xf5\x6b\x0c\x72\x77\x54\x22\x09\x75\x2b\x11\x64\x69\xb1\x51\xe9\xb8\x88\x46\x51\x3e\xa2\x83\xd7\xf1\xe3\x39\x00\xd3\x9a\x5a\xb2\x45\x34\xb2\xf9\xde\xea\xef\x1c\x71\xe9\xc1\xd9\x5a\x76\x0d\x5b\x6b\xf7\x8c\x6f\x71\xb8\xa4\x61\xa5\x0f\x90\xa2\x85\xff\x7f\x15\xab\x1a\x3d\x53\x6b\x78\x37\xc0\x2a\x7f\x10\xa8\x4c\xec\x9b\xb4\x99\x99\xa7\x0d\x65\x41\x57\x0f\xd7\x3c\xa2\xfb\x54\x13\x79\x3e\x8e\x32\x3b\xe5\xc1\xa9\xe7\x69\x59\x60\x3b\xfc\xf7\x13\xc5\x2a\x78\x5e\xc1\x11\x72\x6b\x13\xaa\x47\xbb\x0e\x9c\x17\xfd\x8d\x72\x7d\xef\xa8\x5e\xdd\x3b\x9f\xee\x3e\xdb\x24\xe2\x54\x3a\x3c\x82\x6b\xda\x3d\x68\x12\x42\x55\x06\x07\x04\xe2\xbe\xc2\x0c\x76\x4c\xbe\x6e\x93\x87\xcc\x8b\x72\x1c\xf5\x55\x9f\xd1\x65\xd5\xd1\x79\xb9\xce\x3a\xbf\xb4\xb2\xdb\x77\xaf\xac\x29\x76\xfa\xdf\x87\x4d\xc6\x74\x6d\x5f\xa5\x41\xc5\xe2\x7b\x14\x28\xfa\xf2\x1b\xc4\x8c\x25\x6a\x35\x38\x7b\x80\x26\xd9\x06\x68\x81\x10\x78\xcb\x89\x36\x48\xcb\xb8\x9f\x46\xfd\x8e\x02\x2c\xdf\x54\xc5\xc9\x9b\x2d\xe4\x04\x47\x94\x90\x8d\x2f\xb1\x20\x8c\x17\x66\xf8\x7d\x5b\x3a\x29\x41\x3e\xca\xcd\x4d\x81\xcf\xe7\x7f\x30\x51\x54\xb5\x26\x2b\x86\xcb\x69\x36\xca\x55\x63\xd9\x1d\x25\x4d\x7f\xa7\x46\x73\x67\xe3\xd1\xae\xca\xf7\xd4\x08\x3a\x20\xbd\xd6\xb1\x68\xe1\x66\x70\x0b\x37\xdf\x60\xb0\x9c\xd0\xa4\x6b\x08\xfa\x23\x1e\x2c\xfe\x9f\x36\x92\x0a\x43\x0b\x96\xd3\x32\xf8\xa1\x1b\xba\x7d\xf4\x86\x8a\x61\x8b\x74\xd9\x64\xfd\xc7\x55\x8f\xf8\xc4\xc1\xbb\x8f\xac\x93\xad\xe7\x6b\x9c\x76\x98\xf0\x4d\xa5\x20\x74\x03\x67\x0b\xf6\xf0\x7f\xd0\xac\xab\xa7\x02\x4d\xcc\x70\x4a\x71\xf3\x4e\x81\xf6\x87\x3f\xe3\xc2\xdc\x9e\x35\x21\x4f\x15\x82\xf3\x9f\xe0\xeb\xf8\x26\xf8\x0b\xf5\xd0\xf6\x97\x7e\x59\xf6\x07\xfc\x0d\xac\xa6\x8f\xd0\xf5\xcb\x37\x8d\x75\xfe\xfc\x5c\x77\x31\xcd\xac\x41\x91\x43\xbe\x59\xff\xcc\x44\x9f\xaa\xcb\x8c\xd2\xc5\x20\x9c\xc3\x20\xf0\x8d\xe2\x3b\x29\x6c\x38\x4c\xd2\x38\x1d\xac\x3c\x4e\x7f\xc1\xd0\xf0\x06\x84\x01\xff\xbe\xa1\x29\x18\xff\x94\x26\x97\x4f\x26\x1a\x57\x26\xb3\x0d\xb6\xea\x8d\xcc\xb9\xca\x0a\xd9\x1c\x78\xf2\x37\x51\x9a\x92\x7e\x02\x8d\x43\x33\x51\xf2\x98\x8f\xf6\xfe\x29\xbe\x82\x95\x9b\xc9\x8b\x12\x62\xed\x6a\x96\xd1\xa8\x00\xd3\x86\xdf\x04\xb3\x2f\x6c\x30\xf7\xf9\xb8\xbc\x8b\xe7\x4e\xba\xab\xca\xf6\x3f\x52\xde\x5d\x56\x84\x1d\xa5\x08\x71\x25\x20\xdf\x44\x74\xa3\xdb\x4a\x06\x79\x5a\x66\x74\x70\x01\x43\xc1\xc0\x7c\xbc\xe5\x69\x1a\x3d\x0d\xfb\x95\x94\xb9\x47\xbf\x10\xcc\x42\xe8\xe7\xc4\x43\xe8\x38\x42\x8c\xed\xab\x0a\x41\xb3\x7b\xc6\x6f\x81\xd0\xc4\xb1\xed\xef\xed\x38\x19\xda\x4d\x2a\x63\x23\x4f\xf6\x90\x5e\x0f\x83\xf0\x1d\x98\x36\x6c\x81\x4f\x70\x5e\xe0\x10\x9e\x60\x42\x99\xbc\x96\x29\x24\x04\xb1\x47\x3f\x8b\x93\x03\xb1\x34\x1c\x8d\xfb\x80\x70\x48\xce\xc3\x67\xa7\xd0\x5f\xc5\x6a\x23\x33\x7e\x8d\x45\x23\x33\x88\x12\x43\xfe\xd0\xb1\x03\x4e\x0c\xa3\xe3\x85\x31\x1a\x3e\xd4\xc1\x83\xc2\x5d\xcd\x41\x83\x00\xf6\x6a\x2d\x58\x1e\xbd\x87\xe6\xfa\x9d\x6a\x91\x83\xf6\x40\xc2\x28\x9a\x43\x31\xda\xd5\x0f\xe3\x89\x77\xcd\xa8\x44\x09\x67\x8d\xb1\x22\xee\x28\xee\xa5\xd0\x8c\x4d\x18\x15\x2b\x3b\x3d\x24\x6e\x03\x6b\x5c\xb8\x29\x95\x2c\xdb\x4d\xcd\x8b\xac\x8a\x84\x9c\x1e\x80\xd3\xd8\xda\x5a\x59\xa4\xa5\xb0\x6b\x23\x96\x40\xb6\x8f\xaf\x1b\x25\xcf\xc3\x07\xba\xb1\x01\x81\x98\xc3\x95\x07\x7a\xb1\x79\x24\x4f\xba\x64\xb3\xe5\xa1\x8d\x47\x2a\x31\xc3\x40\x4b\x01\x9d\x6c\x65\xa0\x7b\x91\x92\x89\x36\x2c\xb2\x34\x89\x42\xa9\x6f\xbd\xe4\x1d\x89\xc3\xbe\x93\x69\x4b\x9d\x9a\xe0\xfe\x9d\xb9\xb9\xba\xb4\xbb\x50\x3a\xed\x75\xee\x5a\x56\xa0\x35\x58\x37\xd4\xc9\x34\xab\x14\x71\x56\x7c\xc6\xc3\xe8\x25\xff\xc5\x3c\x66\x38\x85\x60\x9b\xb0\xd3\x1c\xfb\xd4\x41\x8f\xb0\xed\x08\xe3\xf0\x7f\xf3\x39\x34\x8e\x60\x0e\x41\xfb\x8b\xf0\x8e\x99\x0a\x61\xa6\x6e\xc3\x09\x43\x86\xe4\x49\x5d\x12\xfa\x2e\x4e\x3a\x47\x33\x56\x8d\x08\x1c\xe0\x1f\x4f\x94\x06\xf0\xfd\x36\xec\x6e\x58\xc6\x45\x99\x09\xa9\x7e\x2d\x11\x2d\x29\x6a\x49\x7c\xa4\xc3\x9e\x59\x31\x39\x17\xf6\xa4\x52\xa8\x90\xda\x1f\xd5\x54\x4c\x87\x36\xb3\x09\xcb\x22\xa3\xd2\xf3\xa6\xea\xda\x41\xe4\x8b\x45\x78\xd3\x73\x2e\x0d\xa3\xac\xbf\xbb\x1a\x58\xe0\xb7\x40\x5c\x0d\x83\x73\x55\x49\xda\xfe\xc5\xd5\xce\x97\x8e\xf0\x2a\xc1\xe1\x49\xa5\xdd\xbd\x7f\x85\xa8\x4f\x6a\x5c\x7b\xb0\xe4\xdc\x9b\x23\x3a\x4b\x5b\xd3\x2b\x73\x73\x5d\xf3\xf9\x8e\xdf\x48\x9c\x6b\xe6\x9b\x96\x8a\xac\x16\x86\xc0\xb8\xbf\xaf\xdc\xfa\xf7\x5d\x1a\x3e\x4d\xa6\x3c\x9e\x81\x1b\x61\x60\x4b\xaf\x11\xfc\x0c\x96\x66\xdb\x8c\x5f\x59\x2f\x30\xd5\x3f\x5e\xfa\x0d\x25\x00\x39\xaf\xd5\x62\xde\x68\x64\x00\xab\x68\x61\xc9\x66\x09\x5a\x8c\xbf\x3c\xeb\xb0\x12\x7e\xa0\x1f\x9b\xf1\x6e\xdb\x76\xa5\x10\x64\x93\x02\x94\x53\x1d\xa7\x37\x7e\x59\xeb\x0a\x5c\x0e\x94\xb0\xc2\x78\x1c\x0b\x77\x07\x19\x4e\xcd\xfa\xc4\xd7\x0d\x4d\xa0\xd9\xa3\xdd\x68\x34\x26\x90\x78\x94\xbb\x8c\x77\xab\xf5\x6c\x11\x28\xfb\x79\x96\x1c\xe1\xf1\x76\xa0\x25\x0f\x60\x52\xc5\x92\x5e\xd9\xcf\x55\x53\xf6\x7d\xc5\xd1\x71\xdf\x45\x65\x0b\x99\xcd\xc3\x14\x1e\x9d\xb8\x39\x1d\xd7\xa9\xfa\x51\xc3\x0b\x3c\x7e\xbc\x6b\x32\xd3\x8b\xd8\xcd\x41\xc0\x76\x03\x43\xc4\x37\x35\x17\xd5\xf4\xed\xe7\x3c\x77\xf4\x7d\x1c\xd6\x58\xf8\x52\xb0\xc1\x34\xde\x84\x07\x24\xb4\x4e\x4a\xdf\xe4\x43\x44\x38\x22\xb3\xeb\x41\x76\x57\x15\x85\x18\x0b\x7b\x61\x53\x6c\x68\xb0\xf2\x4f\x90\x7f\x71\x41\x44\x65\x20\x90\x92\xbf\x48\x90\x28\x94\xe0\x90\x7d\x70\x8d\x99\x6e\x06\xef\x4d\x54\xfb\x37\x3b\x2b\xb8\xf9\x24\x50\x09\xd2\x1b\x94\xbe\x81\xeb\x70\x9b\x4e\x15\x91\x18\xc3\x91\x0d\xdf\xfb\x1a\x0c\x97\x2c\xc7\x16\x0f\x72\x21\xb2\x71\x9f\x67\x57\xf8\x78\xbc\xe7\x72\x51\xf5\xfa\x8c\xb3\x94\x18\xe3\x1e\xaf\x7e\x18\x3e\x16\xba\x0f\x85\x95\xa6\x7a\x08\x11\xfe\x54\x26\xf2\x14\x5e\x08\x36\x79\x0f\x5c\x21\xc4\xed\x0f\x6b\xf3\xb1\x36\x51\x6e\x39\x9a\xb4\x90\xcc\x79\x8b\x46\x9d\x09\xaa\x94\x0c\xd2\x82\x31\xbb\x69\x76\xe1\xee\x5f\x84\xb7\xcc\x37\x98\x4f\x51\xfa\xf1\x99\x1a\xe6\xd3\x96\x8f\xf8\x0c\xc9\x75\xda\xac\x38\x2a\x81\xf9\x14\x70\x9c\x5f\xe0\xd5\x81\x8c\x3c\x24\x7c\x82\x6b\x13\x5f\x46\xbd\xd6\x82\xfa\x9f\xef\xf6\xed\x52\x14\xba\x7c\x38\x4c\x4e\x07\xf8\x13\xbe\xf1\xac\x1a\xa6\x1c\x0c\x0b\x39\x2a\x6b\x24\x4e\x42\xcf\xe4\xdb\x99\x86\x69\x99\xdb\x1c\x04\x8c\xae\x9c\xe8\x24\x87\x1e\xa8\xbe\xc4\xf7\x74\xaf\xd4\x3f\xc6\xb0\x08\x22\xcd\xc7\xba\xef\x05\xbe\x9b\x09\x20\x0b\x60\x78\x5c\xb3\x80\x6b\x6d\x7a\x44\x59\x25\xaf\x72\xe3\x60\xf9\x59\xc9\x5a\x14\x22\xcb\xc9\x14\x82\x7c\xa3\x8a\xbc\x61\x91\x3f\xe1\x33\x4d\xd3\xa8\x4d\xd1\x39\xf6\x37\xff\xe6\x4c\xf5\x4b\x60\x5a\xb8\xc2\xcb\x83\x1c\xd3\xff\xf6\xaf\x92\x72\x9d\xeb\xb7\x93\xc8\xfe\xe5\xbf\xb6\x4a\x6b\x40\xbc\x52\x1a\x5a\x64\x06\x7e\x7a\xd5\x67\x6b\xfe\xea\xaa\x1a\x85\x9d\x80\xa9\xe2\xbb\xa6\x57\x69\x1f\xab\x02\xa9\x28\x52\x7e\x7e\x46\x3b\x1d\x66\xda\xe3\x6d\xee\x28\x74\x5d\x8d\xef\xee\xa1\x92\xf2\xda\xde\x20\x01\x3a\xfa\x42\xf7\x95\xd4\xf3\x7b\xc2\x25\xdc\x54\xec\xf6\x9a\xc0\x78\x10\x9b\x3c\x49\xf3\x82\xb2\x8c\x02\xd1\xa8\xb6\x18\x5f\x7f\x2a\xcd\x6f\x51\x66\x89\xcd\x3a\x2a\x6d\x7c\x91\xa2\x00\xbe\x56\xec\x16\x4c\x78\xb8\x82\xb2\xad\xe3\xe4\x57\x04\xfd\x9f\x9a\xc5\x59\x8a\x4c\x98\xc2\x7b\x94\x9e\x34\xfa\x41\x69\x4a\xdb\xfa\xb9\x63\x07\xe6\x89\xb5\x9c\x5a\xd8\x29\x95\xb3\x49\xd0\x8d\xcd\x8b\xaa\xe3\x46\x74\xbd\x0f\x4b\x8f\x10\xe4\x28\xf9\xba\xad\x95\x69\x99\x50\x74\x1d\xb2\xb7\x4e\x63\xd5\xaf\x00\xd6\xf6\xad\x4f\x41\x3f\x42\xd4\x81\x62\x3f\xb0\x7d\x7c\xad\x40\xff\x79\x5a\x4d\x53\x65\x50\xe0\xc5\x5f\x9e\x74\x9e\x79\x46\xae\x1b\x27\x25\xf0\x2d\x24\xd4\xc0\xee\x1c\x5c\xcd\x07\xba\x12\xf0\x40\x0d\x3d\xa7\xe2\xc0\x76\x0c\xcb\xbd\xa1\x74\x35\x50\xb3\x81\x75\xdf\xe1\x84\x16\x7b\xe5\x68\xcc\xa6\x5a\x57\xff\xf9\xba\x71\xf2\x13\x39\x41\x2f\x8f\xfa\x91\xc9\x22\x21\x00\x12\xf2\xb8\x8e\x22\x95\xdb\xa7\xa4\xd8\xb3\xea\x4f\x77\x50\xc2\x5d\xe8\x7b\x28\x65\x0e\xbb\x7e\x56\x29\x76\xa3\x37\x0e\xa6\xe4\x7d\xdd\x67\x7c\x52\x31\x64\xf7\xd2\x51\x6f\x4a\x29\x94\xdd\xa2\x2f\x70\x7e\x4e\xb5\xee\xe0\x7d\x74\x1a\xa5\x67\x3a\x9c\xf2\xa1\x30\xe0\xe1\xfc\xf8\x68\xa2\x92\x12\xda\xe9\x45\x05\xd6\xa2\x11\x1a\x79\xb4\x0d\x25\xf8\xc4\x04\x31\x92\x13\xf5\x13\x61\xc6\xe3\x2c\x35\xe1\x70\x4a\x21\x9b\xb9\xd6\xc9\xfc\x27\x2a\x91\xf1\xb1\xaf\x44\x46\x5f\x2b\xa3\x7e\x54\x20\xa5\xe2\xba\xdb\xbe\xf0\xa2\x8b\x95\xf7\xd7\x33\x3c\xc7\x8f\x77\x7f\xe1\x31\xfa\x5a\x15\x81\xcf\x6d\x32\x2e\x5e\xa8\xa0\x69\xdc\x45\xf0\x4a\x15\xae\x18\xb2\xc8\x2a\x4f\x64\x8d\xf9\x6b\x82\x06\x55\xb0\xa4\x9d\xb7\x8e\xa7\x6c\xdd\xa1\x9d\x52\x0c\x36\xdb\xd4\x41\x8b\x88\x62\x53\xd5\xde\xd2\x7c\x64\x8b\x28\xec\xf8\x24\xfc\x47\x2a\x14\xf8\x48\x33\x47\x65\x26\x42\x8a\x16\x58\x7c\x1c\xa1\x7c\xfd\xa9\x08\xed\x15\x6b\x86\x9d\xce\x57\xbe\xc8\x4b\xf1\x9a\x86\xd7\x5c\x9b\xe8\xd9\xb5\x71\xdf\xb5\x7f\xb3\x58\xbb\x82\x5a\x01\xf7\x09\xf7\x4b\x7b\xa4\xe3\xb2\xc8\x77\x75\x66\x8f\x6e\x9e\x0f\x6a\x8d\xdd\x7e\x91\xa0\xa4\xe6\xba\x49\x0e\x1f\xf0\x6d\x1f\xcf\xcf\x6d\x9e\x9f\xd4\x5a\xc0\xb7\x02\xc4\x41\x65\x93\x86\x8b\x04\x91\x90\x58\x9d\xd1\x38\x35\x64\x4e\x0b\x77\xb7\x49\x06\x19\xe2\x5d\x98\x07\xc0\xe1\xf8\xda\xf5\x0c\x0f\xfa\xe3\x8e\xcf\x7c\xb1\x14\x94\xf4\x63\xb5\x95\xfe\xcb\xc4\x8a\xca\x32\x1e\xfb\x36\x5e\x9d\x29\x4c\xf0\x05\x38\x60\xbd\x0e\xfb\xc8\x16\xaf\xd8\xa4\x67\xca\x91\xb8\x2a\x12\xe0\x29\xb0\xc6\x66\x1b\xd2\xac\x9f\x2e\x27\xcb\x26\xeb\xef\x50\xd4\xf9\x70\x17\x04\x0b\x58\xbd\x15\x4e\xc7\x1d\x14\x03\x89\x67\x59\x9d\x65\xf8\xf7\x3f\xab\x9d\x49\x45\x16\xd9\x25\x00\xec\x34\x55\x9c\x63\x6d\x72\xcd\x0d\xa7\xdb\x88\x55\x32\x3b\x4a\x97\x80\x6f\x16\x09\x85\xb3\x13\xc5\x71\xfc\x6a\xbd\x53\xd3\x53\x9a\x25\x69\x6e\x5c\xba\x85\xad\x5d\xe0\xb3\x23\x4d\x39\xb5\xc3\x07\xba\xe3\x28\x8e\xc6\x51\x92\x76\x3c\x6a\x69\x5d\x6b\x0c\xad\xab\x24\x66\x62\x6d\x3f\xa7\x2e\x61\x3c\xd5\xae\xd5\x6a\x00\x58\x30\x94\xde\x0a\x46\x0d\xf4\xc6\x52\x09\xa0\x93\x0d\xae\xef\x09\xdd\xa5\x71\x02\x8e\x9c\xb3\x25\x9e\x42\xf4\x5c\x1b\x14\xde\x2c\x46\x09\x75\x67\xdf\xd4\xd9\xd7\x0f\x74\xd1\x79\x5d\x89\xce\x3c\x4e\x55\x39\xf1\x12\xb7\x6e\xde\x67\xbb\x83\xd2\x10\xab\x85\xb0\x3f\xc2\x84\xbf\x39\xf1\x61\xe1\x65\x2d\x4b\xb9\xee\xd3\x04\xe2\x14\x22\x66\xb8\x1e\x78\x03\xd2\x4b\xc9\xd9\x71\x15\x9b\xb3\xaa\x62\xe3\x31\x2b\x23\x93\x87\x65\x1c\x25\x56\x71\x37\x02\x2b\x2f\xdd\x68\x2d\xda\xb6\xdd\x85\x34\x0b\x2d\xa3\xd3\xc4\x73\xd5\xee\x6d\x63\x23\x1d\x3c\xd8\xcd\x7c\x2b\xa4\xdb\x47\xd5\xe7\xf9\xa6\x01\xcf\x9d\x3d\xda\x1d\x46\xd8\xab\xf0\xd0\x10\x96\xf3\xb5\x92\x47\xf4\x6e\x50\xbc\x42\x74\x6e\x40\x92\x60\xde\x1d\xb8\xde\x37\xa0\x5d\x52\x13\x73\x5e\xb5\x9e\xbe\x41\xc1\x8b\xb4\x78\x68\x48\xf9\xd0\x66\x7f\xb1\xfa\x3f\x0c\xde\x03\xe4\x3a\xb9\x4c\x33\x99\x3a\xf2\x5f\x7f\x59\x03\x94\x66\x1d\x33\x4e\x75\x7a\x61\xd3\x22\x5f\x4e\x3f\xf3\xb5\x27\x41\x63\x2b\xa8\xe7\xce\x97\x84\x09\xe8\x34\xed\x72\x84\xcf\xdb\x49\x99\x1b\x0b\xe6\x55\x38\x0c\x28\xa9\x5c\x23\xd7\x93\xd9\x25\x68\xcb\x13\xb8\xed\x9f\xec\x87\xc6\x34\xce\x1d\x6a\xa2\x75\x9f\xc0\xbb\xa3\xae\xb9\x03\xce\x39\x4c\xc6\x79\x6c\x00\x6c\x93\xbb\x98\x40\x44\x2f\xbb\x29\x36\x80\x73\xbf\x0b\x11\x26\xa2\xbd\x1d\xab\x88\x86\x99\xb5\x00\xdb\x09\xf1\xf7\x2a\x95\xed\xa4\x3a\xa8\x93\x88\x1f\x4c\x94\x22\xea\xa6\x92\x7c\x7e\x37\x70\xdc\xb1\xff\xfa\xa3\x40\x55\xef\xb6\x21\xa0\xe0\x92\x88\x6a\x93\xcd\xa2\x30\x9d\x56\xa9\x23\x2e\xcd\xa2\x76\x70\x47\x89\x6e\x7e\x8b\x46\x5c\xfe\xc8\xc7\x1d\x36\x63\x45\x21\x2d\x0b\x28\x55\x15\xef\xad\x2e\xc4\xe6\xf3\x53\x5a\x36\x5d\xab\x97\x5c\xd2\x42\xb7\xb7\x94\x98\x5c\x18\x15\x95\x5f\xd8\x51\x6c\x84\xea\x78\xb9\x34\xd9\x42\x41\x78\xe8\xd0\x91\xca\x8f\x67\x78\x4d\xab\xf8\x70\x9d\xd9\xdd\x71\x65\x5c\x69\xe0\xc5\x8e\x1f\xef\x96\x49\xd4\xb7\x49\x11\x2d\x44\xac\x0f\xa5\x3b\x5f\xa4\xed\xef\xa9\x2d\xc2\x83\x2b\x92\x2a\xd3\x95\x38\xa9\xd1\xb5\xb5\x1d\x9b\x30\xb4\xe3\xa2\x72\x0d\x71\x24\x88\x30\x80\xdf\xa7\x68\xe7\x16\xe2\x7f\x3f\x77\xb1\x81\xbf\xf1\x92\xb0\x45\x4d\x7c\xad\x82\xa9\xcb\x00\xce\xb8\xa3\x5b\xbd\x49\xe6\x22\x81\x82\x35\x56\xcd\xba\x66\xe8\x6d\x92\x38\x3c\x5b\x0d\x44\xb2\x14\x39\x6b\x23\xc5\xd1\x8e\x23\x60\xfb\x23\xd5\x5e\xb3\x92\x66\x8b\x4f\x6e\x21\xb7\x12\xc1\xb7\x1d\xa8\x45\x62\xfa\xfe\x3d\x25\x39\x99\x6c\x45\x57\xe9\xce\x6a\x7a\xbe\x13\x81\x2a\x31\xbe\x15\xf8\x84\xf9\xc5\x1a\x2f\xfc\x35\xb8\x99\x70\xb0\xae\xab\x5e\xef\xfb\x4a\xef\xf3\x4e\xad\xa7\x10\x6f\xcd\x4f\x19\xa8\x96\xf2\x93\x64\x06\x38\xc4\x27\xf7\x77\x73\x55\x6b\x93\x78\x28\xa0\x53\x42\x75\x7c\xa4\x57\x14\x56\xbd\x18\x66\xe9\xf2\xb4\xea\xf6\xff\x26\x5e\x8c\xf5\x0b\x94\x50\xc8\x37\x29\x65\x21\xba\x06\x3e\x65\xd1\x8b\x4d\xb8\x98\xef\xee\x38\x15\xbf\xd7\xf0\x06\xb0\xbb\xef\x07\xaa\x01\xe1\x0d\x9a\x7c\x01\x14\x61\x68\x84\x64\x81\x06\xdd\x99\xa8\xea\x45\xf9\xdb\x74\x4b\xf7\xbf\x6d\x13\x2c\xfe\xf9\x2a\xc2\x09\x8d\x96\x1e\x3c\xa1\xa4\x07\x4f\xa8\x92\xfe\xb0\xcc\x7b\x26\xe9\xef\x52\xfe\xe8\x79\x3a\x00\xa4\xd6\x01\x43\x87\x0a\xff\x5d\x1c\x55\xf0\x78\xde\x9f\xa8\x8e\xb5\x8b\x13\x95\xb5\x44\x0d\x4f\x1a\x5d\x14\xe8\xdd\x8c\xc6\xec\x06\x22\x15\x7e\x16\x43\xc1\x37\x0a\x70\x97\x87\x59\x34\x2e\xb0\x6e\x1d\x24\xab\xfa\x69\x81\x64\xb5\xb1\xde\xa6\x63\x9b\x19\xb0\x6a\x3a\xa4\xd8\xdb\xb0\xb9\xc0\x9e\xdf\x44\xfe\x55\xf2\x6f\x4d\x4c\xf2\x3c\xa5\x2e\x32\x40\x1e\x25\xcf\xea\x11\x25\xef\xaa\x36\xf4\xd7\xd4\x18\x86\x86\x00\x14\xd3\x8a\x35\xfc\x14\xe6\x08\xdf\x71\x37\x50\x89\x5b\x3e\x60\xf8\xcf\x94\x23\x57\x66\x3d\xb4\xcb\x1f\x69\x05\x72\x49\x9e\x3b\x34\x99\x5d\x16\x6f\x9a\xdb\x3e\x02\xc5\xc1\x73\xa9\x76\x64\xbf\x62\xb1\x0e\xc1\x12\xfe\x6d\x32\x49\x2c\x25\x4e\xb3\x8c\xb3\xed\xc4\xa4\x0e\x2c\xf4\xc1\x12\x32\x52\x30\x17\xac\x4a\xee\x88\xad\xab\xb1\xc4\xd9\xba\x6d\xa6\xa5\xac\x0a\x39\x2a\xee\x2c\xe2\xa2\xda\xc4\xe3\x4a\x4e\xa8\x56\xf9\x22\xa2\x0c\x65\xa7\xc6\x50\x53\xe3\xae\xf1\x4b\x63\xa1\x8c\x0b\xe6\x77\x55\x45\x21\xd7\x6d\x16\xe8\xa4\xc3\x92\x4d\x98\x90\x46\xf2\x47\xbe\xc5\xee\xb2\xa2\x8d\xa5\x96\x57\xea\xba\xf6\xd5\x92\x3f\x55\x1b\xfd\x4f\x9d\x9f\x38\x40\x3d\x46\x22\x46\xb8\xb8\x70\xb1\x24\x78\xa8\xbe\x42\xd8\xc9\x5b\x4a\xa9\xa3\x32\x1c\x4e\x4f\x79\x51\x45\xd6\x43\x76\x42\xeb\x8e\x09\xe7\x1b\x13\xe7\x2c\x5d\x7b\x10\x3c\xad\xda\x98\x0c\x31\x6a\xc4\xf1\xca\x0e\xa5\x9c\xb1\x06\x53\x2a\xcd\x3b\x3e\x22\xba\x1a\xf8\xfa\xc6\x19\x4d\xa0\xf9\xb6\x0a\xb3\xa3\x91\x19\xd8\x1d\x8a\x75\xf8\x92\x62\xcd\xbd\x83\x4d\x84\xcd\x0d\x6c\x90\x13\x17\xab\x1c\x2c\x2e\x77\xab\xe3\xaa\x6f\x63\xe3\xe9\xea\xb9\x9f\x86\xbe\x51\x7a\x6b\x7c\xd1\x3e\x8c\x06\x26\xb3\x45\xc1\xa2\xc6\xc2\xa7\x57\xfd\x8a\xb0\xe6\xb5\xa0\xe8\x16\xec\x28\x4a\x22\xf6\xec\x71\xe0\x82\x48\x8a\xaf\x57\x9f\xd6\x05\x86\x51\x0a\x85\x13\x9c\xd5\x82\x59\xa6\x87\xe7\xde\x17\xd5\x70\xb8\xa6\x52\xca\x2f\x7c\xe9\x0b\x1d\xef\x4d\x71\x1e\x81\x6f\x94\xf6\xc0\x82\x85\x2e\xa0\x47\x99\xf8\x3e\xae\xef\xe0\xc4\x82\x3d\xc2\xb9\xc6\xe2\x07\x8d\xe5\xf1\x8b\xdd\xa1\x35\x4b\x2b\x8a\x3c\x04\xaa\x2f\x7c\xad\x0a\xed\xe3\xb2\x17\x47\xf9\xd0\xf6\x09\x40\x27\x4e\x3c\x39\xe4\xe2\xea\x57\x1f\x04\x0a\xf6\xd5\x89\x6a\x1b\x7e\x55\xed\x90\xdc\xc6\x31\x15\x06\x7c\x07\xd8\x44\xaf\x22\xc5\x57\x9f\x47\x1a\x75\x74\x59\xa3\x8e\x2e\xb7\x01\x53\x47\x69\x62\xb2\x70\x88\x77\x81\xc5\xc4\xee\xe3\x6b\xf5\x2e\x83\xcc\xf4\x4b\x48\x1d\x1f\x96\x73\x11\x89\x4a\x66\xd7\x52\xfd\x80\xaf\x6d\x01\x1b\xb8\x42\xb7\x54\x36\x3e\xd1\xc2\x13\x9f\xa8\x3d\x9e\x86\xa1\xc9\x5d\x85\xd3\x65\xd6\x5c\x1e\xb8\x49\x7c\x7c\xf0\x60\xb7\x1a\x61\x8f\x61\x17\x38\x6a\xf5\x21\xd1\x0f\xda\xaf\xe4\xe9\xd3\x64\x65\x14\x15\x2b\xb0\xe1\x22\x97\xa9\xb5\x33\x6b\x05\xc5\x10\x0c\x92\x2f\x31\xa5\xcc\xd9\x40\xab\xca\xfd\x70\xa2\x54\x13\xce\x6a\x0b\xf7\xc3\x40\xd1\x5d\xa7\xc3\x24\x2f\xd2\xe5\x84\x46\x0e\x5e\x14\xb8\x4b\x91\x78\xde\x41\x84\x97\xbe\x13\xd2\xed\x87\xd0\xe6\xb9\x00\x04\xb0\x9a\xef\x07\xaa\xf1\xe8\x7e\xe3\x7c\x3d\x76\xa0\xbb\x90\x99\xb2\x5f\xc6\x42\x9e\x83\x14\x01\x3a\x06\xf9\x5a\xa5\xdc\x7b\x59\x99\x58\xa0\x0a\x1c\x73\x67\xf5\x0e\x7c\xa3\x82\x85\xdc\xc6\xfd\x74\x84\x47\x71\x0a\x0f\xaa\xfc\xa4\x64\x9f\xd0\xf3\x9b\x45\x26\x9e\xf2\xa6\xe4\x9c\x92\x73\xfc\x3d\x78\xad\xd2\x7d\xab\xb3\x3f\xe3\x34\x2b\x6c\x36\xa5\xb8\x3d\x01\x19\x94\xbe\x7d\xd5\xd8\xb0\xd9\xd2\xe0\x3e\xd7\xb5\x26\x8b\x23\x9b\x4d\xd3\x51\x8e\xa1\xbe\x1b\xf8\xa8\xe9\x1c\x82\x48\xb8\x93\x3f\xa4\x39\xc0\x4a\xfe\xa4\xa6\x1f\x9c\x87\xa6\x18\x8a\x47\xae\xd2\x48\xb3\x4e\x0e\xc6\x17\x46\x85\x8b\x61\x87\x07\x73\xad\x29\x21\x8e\x2b\x9a\xcc\xfa\x86\x2a\xae\x72\x9b\x80\xa0\x9f\x9a\x2f\x33\xdb\x5d\x36\x59\xb2\x65\x59\xc3\xb1\x15\x3e\xd4\x7d\x7a\x26\xf3\x21\xdb\x66\x38\x2d\x8c\x25\xe1\x9b\xb6\x0e\x64\xca\x8b\x50\xc6\x5c\x35\xf9\x78\x05\xd9\x8e\x93\xcb\x7d\xd4\x28\xcb\x53\x33\xf6\xd7\xca\x88\xa9\x35\x1d\x97\x8f\x52\xb4\x68\x51\x07\xed\x2e\xa5\x85\x54\x22\xb8\x62\x17\x28\x14\xd1\x45\x05\x56\x0e\xe9\x7d\xfa\xaa\x1a\xb4\xae\xac\xc0\xba\xc7\xad\x64\x65\x5e\xec\xf2\x8f\xba\x67\x46\x31\x40\xc2\xba\x62\xb8\xf7\xae\xaa\x1e\xcb\x4d\x2a\x9f\x8b\xe8\x15\x76\xb4\xa3\x2d\x3b\xec\x39\xea\x5a\x5e\x21\x33\x51\x6e\xa7\xfd\xc7\x99\x2f\x47\xc2\x26\x1f\xbd\x82\x9e\x47\x12\x27\x5b\xea\x01\x7f\xa3\x7b\x70\xf6\xf1\x1a\xbb\x2f\x2d\x35\x4c\xd6\x0d\x7c\xa5\x30\xf2\x29\x42\x2b\x04\xa1\xf0\x76\x18\x5e\x8c\xc3\xf7\x56\x1d\x8b\x5b\xad\x71\x01\x81\x76\x14\xb9\x5f\x65\x67\x04\x29\xda\xd6\xda\x31\x30\x3d\x8b\x76\xbd\xcd\xab\xac\xe8\xa7\x72\x74\x43\x6b\xfa\xf9\x54\x8d\xa8\xca\x67\xcf\xd7\xe9\xd1\x30\x88\xe7\xdc\x99\x6b\x16\x32\x13\xf5\xa7\x7d\x66\xf0\x01\xb6\x11\x1e\x02\xe4\xc8\x08\x67\x7e\x06\x8d\x5c\xc8\xc8\xec\x5e\xf5\x4e\x8a\x2d\xb3\x74\x6c\x4d\xb2\x53\x2d\x9b\x0d\xcd\xd8\x7f\x59\x51\x4a\x5f\xd6\xfc\x09\x0a\x17\xc1\xe0\x52\xaf\xae\xe0\xba\xb3\xa2\xc1\x90\xf0\xe5\xb4\xcf\xaa\x57\x83\xd7\x75\x03\xc1\x00\xdf\x34\x8a\x6b\x5e\x6a\x32\x2a\xa2\x7c\x38\xa5\x10\x69\xf4\x04\xce\x69\xac\x1e\x13\xe8\x91\x9b\xca\x5f\xc9\xd2\x21\x87\x06\xd8\x2c\x3f\xd4\x3b\xe7\x87\x2a\x83\x94\x9b\xa4\x4f\x1c\x2f\x68\x4b\x65\x0a\x73\xc4\x6c\x60\xfa\x95\xdd\xd6\x71\xf4\xa8\x5c\xbf\xc2\xd9\xb2\x4d\x75\x13\x87\xc3\x74\xcc\x9a\x91\x8e\xed\x3c\xd0\x6d\xb3\xde\x7d\x5f\x4a\x0b\x69\xb1\x44\x30\xba\x11\x28\xb9\x89\xfb\x81\x6a\xdc\x92\x78\x58\xaa\x04\x35\xee\x6c\x69\xbb\x8b\x92\xdc\x63\xdd\x98\xc1\x59\x2b\x0e\x5d\x76\xf0\xd7\x71\x66\x17\x6c\x46\xb4\x47\xde\x4f\x3c\xa9\x92\xa9\x27\xdb\x98\x0a\xe2\xa8\xb7\xc2\x10\x21\x38\xf5\x5c\xba\xe0\x9b\xb6\xe2\x31\x09\x6c\xe5\x5b\xcd\x97\xe3\x28\xf3\x2d\xcb\x43\x3b\x12\xb1\x02\xe6\xa2\xc5\x2c\x60\x6b\xa3\x13\x05\xe3\xb2\xde\x48\x96\xcf\x1e\x25\xae\x0d\x2a\xb4\x4f\xf9\x9f\xba\x83\x2d\xaa\x69\x16\xc5\xc1\x6d\xdb\x96\x63\x93\xe7\x1c\xf5\xd4\xc4\x9c\xf9\x46\xad\x97\x71\x14\xc7\x3b\x69\x90\x6b\xb2\x4e\x8e\xef\xe1\xd8\x01\x77\xad\xba\x69\x4e\xe1\x85\x90\x94\xb9\x17\xf8\x2a\xc5\xaf\x2b\x95\x31\xbb\xb0\x10\x85\x11\xf9\x15\x8e\xb7\xe1\xeb\xf4\xf2\x82\x68\x72\xd2\x7c\x69\xaf\xe7\x2a\xce\x0e\x89\xea\xe0\x35\x1a\xdb\xbd\x60\x92\x90\x15\x96\x30\xb6\x6b\x9a\x61\x42\x51\x49\xdf\x05\xaa\x4a\x5a\x42\x5b\x20\x78\xfd\x28\x1f\xab\x56\x41\x94\xc5\x1f\xa8\x12\xf9\x83\xb6\x4f\x2d\x10\xe5\x68\x54\x62\x21\xc8\xf1\x4d\x6b\x47\x58\xe2\xb7\xba\xff\x87\x0e\x75\xe3\x34\xc7\x79\x0f\x83\x7d\x0b\x39\x6f\x79\x38\x1a\x4c\xcc\xed\x9b\x81\xaf\xf0\x4d\x81\x2e\x5d\xe4\x02\xb7\xfa\x6e\x07\x0f\x56\xbe\x5b\x12\x0e\xa3\x5c\xc6\x4e\x5c\x42\x9a\x50\x61\xcd\xf8\x8c\x0b\x67\x42\xd3\xb7\x39\xd9\x56\x09\x4b\xe9\xb9\xd5\x63\xbc\xc4\x9e\xce\x0d\x5d\x4d\xde\x3d\xb3\xf5\x8d\x2a\x5f\x63\x6c\xb3\x8e\xa7\x7d\x01\x37\xa1\xc8\x3c\xbb\xb0\x5a\x0a\x3f\x3b\x95\x4c\x21\xb7\x80\x23\x77\x73\x71\xa2\x2a\x6f\xe0\x9e\x53\x14\x1c\x22\x3a\xa8\x01\x34\x53\x0a\x66\xb3\xbc\xb8\x32\xa5\xfa\x8c\x3f\x50\x41\xfa\x55\x75\xd4\x9c\xaa\xe5\x4e\xa2\x81\x9d\xee\x7c\xe1\xc5\xcd\x0d\x85\x6b\x85\x80\x99\x53\xe1\xd4\x9d\x74\x2d\x38\x83\xaf\x95\x69\xe1\xd6\x0d\x1e\xf7\xbc\x7a\xf4\xf3\x8d\x3d\x49\xf5\xa1\x95\x5e\x99\x25\x53\x5a\xe1\xe5\xa2\xce\xb4\xdf\x0b\x7c\x0e\xb8\x59\x94\x3b\x76\xe0\xb9\x6e\xba\xb0\xb0\xb3\xae\x60\x77\x98\xa3\x87\xc1\xbe\x19\x8f\xf4\x7e\x80\xf1\x75\xc5\x50\xd7\x7c\x71\x5b\xa5\x89\xee\xd7\x9a\x9a\x86\x85\xe9\x78\x3a\x9f\x33\x70\x27\xf8\x46\x55\x17\x96\x6d\xbe\x43\x35\x7d\xdd\x54\x0a\x9d\xbf\x45\xf3\x8f\x65\xc5\x49\x66\x78\x4e\x1c\x29\x61\x52\x76\xcf\x6c\xdd\x51\xc4\xe6\x35\x1a\x97\x85\x2b\x87\x33\xe1\x1c\xcc\xb1\xb0\xcf\xa9\xc6\x94\x2c\x5a\xb2\xa4\x81\x27\x7d\xa1\x1d\x97\xa0\xdc\x35\xa3\xe9\x32\x28\x91\x85\x81\x7e\xcd\x03\xc0\x7e\xff\x57\x26\x5e\xf4\xf0\x8f\x29\xd3\x2b\xb9\x8b\xe6\x98\x77\x7b\x69\x31\xdc\xd1\x39\x78\x50\xc4\x17\x29\xb9\x26\xbd\x44\x14\x96\xc3\xb3\xfe\x1e\xb5\xd8\xd7\x5c\x33\x71\x51\xfd\xa3\x0f\x6c\x36\xca\x3b\x75\xac\xa8\x53\x8a\x39\xd5\x70\xe8\x67\x8f\x76\xf3\x95\xd1\xd8\x14\x1c\x6d\x83\xe6\x01\xf8\x12\xbe\x6e\xc3\x09\xf4\x4d\x14\x03\x27\x20\x72\xa8\x1e\x98\x7d\x79\xf2\x53\x2a\x97\x13\xc6\x26\x03\x3a\x78\x4a\xc3\x7b\xe8\xe9\x5d\x0f\x88\x43\x7b\x68\x29\xc2\xa8\xb2\x3a\xec\x17\x20\xa7\x80\xf0\x94\xaf\x5b\x08\x73\x96\x0d\xa0\x39\xb4\x65\x04\xae\xee\xcf\xb7\x73\x9f\xea\x30\x0d\xd3\x38\xea\x9b\x95\x69\x8f\x16\x3f\xc7\xb9\x6b\x04\x42\x6f\x4f\x3c\xda\xe7\x6e\xa0\xd0\x0a\x1f\xba\xe3\x05\x09\x64\xbb\xa3\x26\x2f\x5a\xad\x20\x58\x87\x47\x81\x16\x44\x57\x8c\x18\xd7\x95\x5a\xd3\x85\x66\xa1\xf8\x85\x23\xdd\xd8\x38\x21\x17\xa4\xd4\x6e\xa8\x9e\xfe\x1b\x2a\x50\x5d\x4c\x20\xce\x09\x8c\x3d\xd2\x8b\xa7\x34\x73\x37\x70\x35\xb0\x89\xb7\x35\x2b\x4d\x94\x44\x4b\x46\x58\xfe\x9c\x9e\xab\xea\xd0\xf7\x4c\x89\x23\xcb\x2d\x5b\x22\x77\x59\xfd\x19\x5f\xab\xb4\xf6\xa0\xfc\x6a\x35\xef\x40\xfc\x61\x93\x83\xbe\x92\xaf\xdb\xdc\xa5\x7e\x64\x73\x8b\x94\xaf\x90\x20\x76\x3c\x21\x62\x1b\x81\xb5\xc9\x32\x93\x0c\x24\x24\xe6\xe4\xba\x56\xc3\x7f\xcd\x31\x6c\x9b\xe5\x6c\x85\xd0\x92\x70\x9e\x1f\x72\x7c\x85\x7d\xa1\xd1\x1c\xd0\xbb\x14\x9a\x63\x4f\x27\x39\xce\xd2\x7e\x19\xda\x2c\x9f\xf6\xed\xa9\xf3\x13\x95\xd5\x66\xfa\x78\x27\x18\xeb\x41\xd2\x1f\xd4\xf2\x10\x51\x92\x17\x99\x35\xa3\x8e\x6f\x99\xbe\xa0\xd9\xa2\x2f\xb4\xc5\xa8\xa4\x8e\x0f\x47\x15\x07\xc8\xfb\x78\x4d\xbe\x51\x35\x49\xe8\x90\xa1\x17\xa6\x72\x4e\xd8\x8e\xc3\xb7\x13\xa3\xde\x02\x52\x09\xcd\xd8\xf4\x62\x8b\x2c\x87\x23\x5a\x3a\xa6\xb8\xd5\xdd\x5c\xdc\x6e\x60\x0d\x7f\xd1\x25\x1c\xd8\x23\xac\x09\x15\x08\xdb\x48\x13\x80\xf9\x5c\xd7\x94\x79\x91\x99\x58\xa0\xf4\x92\xed\x53\xe4\x4d\x97\x5b\x8d\x56\x51\x26\x89\xd4\x5d\x61\xa8\x1e\x05\xde\x80\x3d\x72\x09\xab\x25\x9b\x0c\x2c\x64\x8d\x9c\x46\xd0\xba\xd2\x08\x5a\x57\xdd\x9a\x4b\x26\xee\xdb\x57\x94\x64\xc2\x49\xa5\xe6\x71\x32\xd0\xe7\x7b\x19\xf5\x95\xc8\x3d\x5a\xed\xf9\xda\xa1\x96\xfb\x69\x3a\xca\xfb\x06\xdb\x05\x40\xfa\x53\x0a\x54\x7f\x4a\xd9\xba\x22\x33\x7d\x9b\xe5\x24\x95\x0b\x1f\x0d\x80\x3a\x9c\x81\xa7\x03\x9f\x0b\x63\x21\x4c\x1c\x2d\xd7\xb1\xe4\x60\x77\xc1\x97\x2b\xfa\x0e\x2a\x27\x05\x8f\x05\x88\x8e\x7b\xb5\x34\x62\x52\xbc\x02\x00\x0a\xab\xcc\xe9\xc6\xfb\xb3\xea\x4c\x8e\x32\x66\x2d\xc6\xb2\x5f\x85\x4b\xc1\x37\x2d\x69\x98\x23\xdd\x3c\x5d\x8a\x2c\x92\x7d\xb5\x46\x7c\x49\x7d\x7a\xab\x35\x5e\x21\xd6\x0e\x46\xc2\x38\xda\x6b\x8f\x35\xb9\xa5\x30\x77\xd0\x75\x08\x21\x20\x85\x80\xfa\xad\x40\x85\xb3\xb7\x03\xaf\xc5\x05\x91\x4e\x8c\xe0\xb7\x35\xf5\x49\x5a\xe6\x45\x9a\x30\x64\x00\x27\x28\x13\xae\xc3\x24\xff\x33\xd5\xc9\xcd\xde\x2b\x66\xec\x8e\x1a\x92\x5e\x54\xec\xf1\xc5\xb1\xdb\x70\x65\x61\x5b\xa6\x91\xd4\xc1\x5e\xe1\x0c\x9d\x83\x82\x7b\x3d\xad\x8b\x81\x82\x80\xdd\x40\xa3\x80\x63\x8c\x71\x6f\x71\x87\xd6\x01\xdc\xec\x9b\x64\x6c\x81\xc6\x45\x9c\x0d\x44\xf4\x7e\xd5\xc6\x38\x30\x71\xbe\x9c\x66\x72\x9e\xb7\x72\xe4\x8a\x35\x8f\xcd\x52\x94\x0f\x3b\xbe\xbf\x0a\xa9\x0f\xbe\x76\x0e\x76\x54\x44\x89\xcd\x4c\xb6\x32\xe5\x3b\x10\x1e\x04\x7e\x4d\x5d\xa0\x0e\x12\x61\x02\x6e\x09\x36\x43\x1b\xdb\x5e\x26\xc0\x54\x61\x41\xf7\x29\xa0\x77\x14\xb1\x8a\x4d\xa2\x38\x66\x72\x61\x61\xe7\xf1\xc1\xc4\xa9\xc0\xcf\xe3\x20\x33\xbd\x1e\x9b\x1b\x0c\x22\xb4\xc7\xf8\x5a\xa1\x26\xc2\x38\x1a\x93\x1b\xe1\x5a\x85\x0e\x1f\x70\xad\x42\x02\x37\x2c\x93\xbe\xcd\x96\xd3\x6c\xd1\xa2\x84\xab\x72\xf0\x3e\xdb\xea\x9b\x9a\x37\xda\x5a\xfc\x89\xc1\x8b\x4f\x23\x6c\x4a\x9c\x26\x7c\xdd\xde\xcc\x34\xc8\xd2\x65\xe7\xb5\x28\x04\x8b\x47\x06\x6f\xdd\x60\x47\x5f\xa8\x69\xb5\xc1\xa9\xe8\x28\xac\x56\xc7\xc1\xb3\xf3\xa1\x19\xf1\x68\x62\x3d\xae\xa9\xa3\x6e\xad\xd1\xd4\x7f\xec\x00\x1d\x35\x59\x14\xbb\x5a\x84\xe6\x54\x10\xb2\x05\xdf\x4b\x69\x5f\xb6\x59\x48\xb1\xa1\x6f\x0b\xbe\xa3\xfe\xf6\x8e\x02\x47\x10\x23\xd0\x67\xaa\x79\x10\xe9\x11\x65\x6e\xde\xc1\x0e\xc2\xc1\x73\x53\x37\xfc\xbe\xc5\x47\x35\xf3\x5d\xe2\x20\x03\xc6\xe9\x2e\x6d\x0e\xcc\xe4\x1a\x72\x63\xfc\x1f\x81\x52\x4e\xfb\xa8\x86\xaa\xf2\xf8\xeb\x1f\x07\x8a\xed\xe5\x46\x35\x51\x9b\xef\x91\x21\x17\x8c\xdb\x53\x4a\xfd\xa2\x6f\xf3\x71\x66\x4d\x9f\x4e\x7f\x58\x31\xde\xcd\x7c\x43\xeb\x19\x7e\xdc\xdb\xf4\x23\x7c\xdd\x26\x8f\x15\xdb\x25\xcb\xf5\x44\x69\x2b\xa9\x3e\x81\x32\x15\xa0\x2c\xe2\x79\x3d\xed\x0b\x2f\xb9\x0d\xcb\x22\x85\xb2\xca\x16\x94\x31\x5f\xb7\x9d\x94\x83\x2c\xa2\xfc\xda\x94\x02\x65\x23\x1d\x88\x9e\xd0\x7b\xaa\x2f\xe7\xaa\xce\xdd\xdb\xb8\x58\x36\xac\xdf\xe4\x70\xb3\xcf\x4b\x5b\xc8\x27\x81\x78\x56\xa3\x68\x11\xd2\x10\xd2\xec\x48\x73\x07\xd3\x70\x46\xf1\x23\xfe\x80\x3e\x8d\x9c\x54\x13\x79\xf2\xe2\xec\xd1\xae\x29\x0a\x3b\x1a\xb3\xd2\x0a\x53\xd7\x05\x9e\xca\xfd\xf8\xdb\xcd\x84\xf5\x33\xcf\x50\xa9\x00\x3e\x0a\x5e\x45\xa1\x5e\x66\x1d\xd3\x82\x5f\x85\x89\xcd\x96\x6c\x47\x29\xa8\x9c\xd4\x0a\x2a\x27\xdb\x18\xd2\xf3\x22\x8d\x6d\x82\x6d\xcd\xe2\xac\x78\x2c\x51\x6a\x6d\x71\xd8\x86\x36\x16\x87\x0d\xbb\x1f\xc8\x7f\xbe\x9e\x78\x0e\xbe\xd0\x66\x45\xb4\x40\x2a\x17\x08\xdb\xb8\x6f\x97\xc2\x36\xe9\xe1\x6d\xc2\x67\xe7\xbb\xb9\xb5\x1d\x45\xf0\x84\x10\x4c\x5a\xb4\x3e\xe3\xf6\x7f\x9a\x15\xf1\x0a\xda\x1d\x30\x27\x97\x54\x2e\x18\xed\xc8\xa8\x63\xdd\x75\x33\x3a\xb6\x03\x7e\x74\xf1\x48\xe9\x77\xc4\x57\x6d\xe1\x9a\xb3\x61\x68\x93\xea\x64\x9e\xd6\xe8\x9d\xad\x80\x1f\x0f\x12\xaa\xa1\x7f\x9a\x46\x88\x1a\x57\x96\xa2\x24\x04\x98\x77\xd6\x41\xef\xb4\xde\x14\xad\x67\x38\x4b\x1c\x0d\x73\x8f\x93\xd2\x52\xfb\x46\x1b\x1c\xbd\x97\x45\xf9\x22\x6d\x21\x2d\xaa\x22\x1a\x4a\xde\x1d\xec\xd9\x3c\xea\xdb\x0e\x81\x93\xb8\x8b\x44\xa1\x7a\x4f\xb6\xe2\x88\x06\x36\xa1\x38\xb0\x5f\x67\x93\xac\xde\x01\xd4\xaa\x53\x33\x5a\xf9\xb1\x05\x47\x34\xdb\x2d\x4c\x16\x2d\x2c\xa0\x21\x02\x80\x8a\xd7\x55\xb7\x21\x0b\x9c\x0b\x26\xdf\x47\x71\xe3\x34\x2b\x32\xb3\x82\x9c\x21\x36\xc1\x7b\x13\xa5\xa0\xf1\x5e\xb0\x57\x21\xb7\xfa\x3b\x7c\x67\xcf\x45\x05\x16\xba\x37\xf1\xb2\x67\x57\x28\x73\x21\xf9\x51\xa5\xbd\x78\x4e\x31\x51\x98\x81\xa5\x6c\x9f\xf0\x98\xf8\x66\xf9\x75\xad\x4e\x4e\xcb\x59\x94\xca\xb5\x27\xbd\x1c\x71\x89\x43\x40\x38\x64\xc6\xc5\x11\xf2\xfb\x36\xcd\x43\x93\x29\x4c\xe6\x36\xb4\x9f\xf0\xcd\x6a\x8b\xdb\x31\x4a\x63\x1b\x96\x31\x7f\x0a\x26\x02\x70\x1b\xbe\x6e\xd1\xb7\x3d\xd2\xcd\xec\x18\x82\x4f\xe4\x05\xc0\x0b\x7c\x17\x96\x1e\x37\xeb\x5a\x70\xe3\x63\xd5\x8c\x9a\x2f\x47\x23\x48\x55\x7b\xf2\xd0\xfb\x35\xf2\x50\x3f\x59\x49\x9a\xe4\x36\xc9\xd9\x10\x49\x96\x99\xa6\x9c\x6f\x3e\x35\x59\xb1\x68\xe3\x38\x1d\x70\x94\x8f\x53\x0d\xcc\xff\xd8\xfb\x5c\x85\xc2\x50\x6f\x9f\xd1\xf9\x94\xa5\x34\x5e\xb2\x53\xca\xcf\x40\x38\x82\xfc\xd7\xf5\x89\x47\xd0\x9c\x74\x2e\x22\x89\x1b\xb3\xf6\x23\x52\xa3\xb7\x02\x95\xb5\xbd\xd5\xd6\x81\xd0\xcb\xca\xc8\xa7\xbc\x9d\x94\xa6\x6b\xc3\x39\xe3\xe8\x15\x16\xe2\x88\x33\x1b\x38\x72\x4f\x4e\x94\xdc\xcd\xc9\x5a\xa8\x32\x8a\x5e\xc6\x58\xd5\xb4\x22\x24\x8f\xa7\x50\xc7\xd6\x16\x8f\x79\x3e\x9f\xfb\xca\x79\xbc\x33\x51\x58\xd6\xfb\xb0\x69\x70\xdf\x3b\x84\x75\x40\x61\xfe\x6a\x53\x33\x5e\x32\x26\x95\x57\xce\x5f\x45\xc6\x96\x3f\xd0\xd8\xc4\xa4\x81\x96\x18\x97\x98\xe0\xce\x16\xac\x1b\x69\x73\x69\x2b\xa9\xa4\x0b\x0b\x11\x94\x35\xe6\x1d\xec\xa3\xe3\x3a\x31\x2f\x37\x2c\xaf\x17\x0e\xb2\x4c\x0a\x28\x4e\x87\xca\x2e\xbf\xad\x60\x01\x63\x13\x25\x05\xf1\x58\x7b\x52\xa1\x1b\x13\xa5\x12\x7b\x1a\x15\x0d\xf8\xe5\xd8\x2c\x78\xe0\x37\xb5\xda\x55\x96\xe6\xf9\xce\x7a\x17\x78\x35\x98\x7c\x33\x51\x07\x11\xfc\x30\xd5\x38\x2c\x55\xf0\x8b\x35\x30\x93\x0a\x35\xcd\x70\x4a\xc5\x52\x97\x54\x04\xfe\x9b\xda\x2b\x6e\x13\x34\x3b\x02\x9a\x89\x88\x3d\x08\xc1\xed\xd1\x1b\xc9\xa9\xe1\x7f\x69\x85\xb9\x90\x60\xdf\xde\x54\xb5\xa0\x37\x15\x32\x67\x9c\xa5\x4b\x29\x44\xd2\xaa\xaf\x71\x3c\x6d\x87\x0e\x39\xa1\x62\x95\xf5\xb2\x89\x2d\xa2\x70\x5a\x65\x08\x59\x9c\x9b\x91\xc9\xda\x8b\xa6\xef\x90\xde\x86\xa7\x5d\x77\x5b\x92\x53\x32\xd2\xe7\xfe\x5d\x4a\xc4\x0b\xd6\x5e\x56\xf9\x1e\x47\x70\x8a\x82\x36\xaa\x91\x3f\x08\x94\x12\x02\x9a\xb8\x84\x60\xd9\x37\x48\x6e\x6b\x34\x03\xcf\xcd\x55\xe6\xcf\x44\x19\xd9\x3e\xc0\xfe\x30\x03\x08\xaf\x1f\x28\xc5\x80\x75\x15\xc3\x0f\xd2\x6c\x60\x85\x0e\x1c\x73\x0a\x15\x02\xbe\x6e\x48\x3b\x52\x03\x4c\x34\x18\x0a\xdb\x26\x0c\xc3\x9d\x40\x29\x9a\xdd\x69\x01\x9f\xcc\x57\xa1\xdc\xa8\x27\xfb\x4a\x1a\x6a\x69\xbd\x48\xbc\xee\x91\x01\x8b\xa6\x57\xc6\xf8\x4b\x51\x6d\x57\xce\xe4\xa5\x40\xd7\xa0\x41\x4d\xbe\x9b\x1e\x46\xe6\x67\xea\xc5\xc3\x07\xe4\x65\x03\x1d\x0b\xe9\x36\x8b\xd7\xb8\xd0\xcc\x77\x98\x6d\x29\x51\x78\xd7\xfc\x5a\xad\x5c\xd1\x68\x3d\x38\x38\xdb\x1d\x9b\xac\x88\xc2\x68\x6c\x12\x86\x9a\xa3\x0f\x73\x76\xf3\xaa\x42\x87\xf7\x89\x85\xbe\xe3\x55\xb5\x60\xf9\xf9\x5a\xc9\x6e\xc6\x65\x12\x0e\x15\x7e\xee\xac\xc2\xcf\x9d\x6d\x67\x16\xcd\xad\x5d\xd4\x22\x87\xdf\x0c\x14\xe5\xc7\x37\x5b\x38\xa5\x66\xab\x8b\xc5\xea\x61\x36\xcf\x57\x8f\xb1\x79\xbe\x96\x22\x4b\xd3\xf8\x31\x05\x06\xb9\x13\x28\xee\xfb\xd3\x9a\x9b\xe2\xf2\x44\x77\xba\x70\x67\x9c\x80\x5d\xaa\xc7\x46\x7a\x75\x37\x19\x69\xc6\x2f\x05\x0a\xe6\x85\x44\x8f\x30\x9e\xfb\x0d\x9e\xe6\xc3\x29\x5f\x71\x7b\xa4\xc5\x67\x77\xcc\xe0\x27\x51\x31\x3a\xef\xdc\xe5\x70\x25\x8c\x25\x56\xda\xdc\xb5\xea\x7d\x05\x68\xcf\x08\xe0\xcb\xef\xf8\xaf\xa6\x51\x52\x80\x76\x48\x12\xd0\xbf\xa6\x13\xd0\xbf\xa6\x9e\x27\xcb\x57\x00\xda\x43\x8e\x92\x55\x01\x11\x79\x31\x8a\x5a\x84\x13\x54\x28\x3f\xb3\x4f\x91\xe8\x10\xb8\x09\x60\x17\x4d\xe7\x82\xca\x04\x83\xaf\x91\x8c\x7f\xd4\x88\xed\x9f\x9f\xa3\xe4\xf3\x42\x66\x46\x52\xca\xc5\x88\xff\x40\x31\x4b\xfc\xc0\xcb\x14\x87\x61\x6c\xa2\x11\x27\x58\x04\xa3\xe2\xe9\xbb\x5b\xcb\xdd\x69\xaf\x30\x91\x47\x87\x71\x05\x38\xd0\xd5\xe0\x96\x58\x69\x21\x2d\x93\xfe\x8e\xda\x2e\x56\x58\x86\x77\x55\xb7\xd3\x3d\xd5\xa7\xc1\x6e\x35\xd6\x50\xb3\xe8\x57\x59\x8b\xc2\x9a\xd0\x57\x84\x50\xcb\xf9\x5d\xda\x09\x7c\xdd\x08\xac\x9e\x9f\xa3\xa6\x48\xc5\x74\x8c\xc0\x9e\xaf\xdd\x42\x29\xb2\x68\x30\xb0\xd0\xfb\x90\x86\x42\x95\xb3\x6a\x1e\xef\xd5\x76\xc9\xd2\x9e\xb3\x5d\x52\xd5\xd0\xd5\x0e\x75\x4e\xa7\x71\x14\x46\x36\x9f\xee\x7c\xe1\x45\x69\x0f\xa2\xe7\xc0\xab\x9f\xd2\x4a\xb5\xe7\x6a\x79\x4e\xc9\xa4\xf5\x62\x9b\xf4\xa5\x4f\x5d\xe9\x10\x3f\xe7\x14\x8a\xb7\x66\xe3\x0f\x1d\x82\x34\x75\xa1\x9c\x37\x59\x58\xbe\xfc\x75\xb5\x41\x5f\x70\x90\xca\xf4\xa4\xd8\xcc\x14\x2a\xf4\x52\x4e\x5c\x47\x8b\x22\x38\x3f\xfc\x1b\x2a\xce\xa2\x6a\x6b\xb2\xa3\x73\x78\xde\x29\x73\xd1\x0a\x87\xb5\xda\x50\x5a\x77\x6f\xc1\x3b\xe1\xff\x98\x78\xfd\xb4\xb7\x6b\x8c\xa2\xd4\xb8\xb4\x93\x2a\xa7\x58\x1d\x90\xc7\x41\x6e\x69\x83\xca\xab\x58\x4e\xb7\x74\xa7\x18\xc8\x87\x91\x9b\xbd\xad\x24\x26\x36\x1a\x6f\xfc\x0b\xdd\x91\xc9\x34\x2d\x18\xe7\x57\x25\x04\xda\xba\xa8\x0e\xce\x76\x47\xa6\x0f\x8e\x53\x3c\x10\x67\x85\x31\xf1\xcc\x16\x8e\xec\xcf\xed\x86\xdf\x7f\xe8\x10\xd1\xef\xa2\x31\x8d\x73\x3f\xb0\x8e\xa7\x14\x47\xf8\x29\x75\xf0\x2d\x9b\x81\xcd\x3b\x9d\x83\x07\x79\x42\x1e\x29\x7d\xfb\x47\x8d\x6d\x7b\xec\xc0\x73\x5d\xfb\x72\xa1\x84\x71\x19\x95\x0a\x3b\x26\x10\xd5\xad\xfb\xf6\xd9\xae\x05\x5b\x1e\x59\x31\xa0\x2e\x10\x7a\xf3\xb5\x42\xcb\x45\xc9\x42\x6c\x8a\x5a\xae\x16\x64\xea\x7c\xdd\xd6\xc4\x9d\x98\x2c\x4b\x97\xe5\x91\x30\xb4\xdc\xc8\xc3\x37\xca\x01\x19\x95\x39\x22\x3d\x9a\x4f\x44\xda\x08\xd6\xf9\x5a\x99\xe1\x03\xe9\x0a\xb5\xf7\xa3\x40\x7a\x0e\x53\xc7\x37\x6d\x49\x5d\xd0\xe5\xd0\x3e\x12\xc2\xec\xea\x35\x84\xd7\x5a\x22\xa5\x81\xcd\x0c\x13\x9e\x3b\x41\x15\xdf\x40\xa8\x41\x18\x0f\x1b\x79\xe0\xd9\xa3\x04\x63\x8c\xa3\xc4\xd1\xf2\x48\x3a\x82\x5e\x48\xf2\x14\x6d\xac\xb2\x89\x19\x8f\xb1\x16\xb9\x96\x19\x78\xd0\xe5\x95\x9a\xfc\x13\x65\x69\x8f\x1d\xe0\x77\xe5\xf3\x98\x6f\x14\x82\x60\x58\x8e\x8c\x28\x58\x09\xff\x62\xb5\xd3\xa4\xab\xd7\x97\x15\xae\x29\x34\x3b\xf3\x12\x0a\x09\x86\xe2\x29\xfd\xb0\xb1\x1f\x8e\x1d\x98\xeb\xf6\x4b\xb4\x4b\xc3\x89\x7e\x3d\xf0\xca\x5a\xaf\xd7\x54\x15\x86\x69\x1a\xe7\x3b\x3d\x06\xe4\x82\x06\x99\x5d\x9c\xd4\x95\x16\x3d\xcf\x0f\x7c\x5e\x94\xcc\x6e\x52\xee\x81\xaf\x7d\x2f\x54\x9a\xc6\x95\xd9\x52\xf8\x50\x4a\xbf\x39\x44\xc9\x56\x44\xa9\xd0\xbc\x37\xf7\x4f\x37\x2d\xb3\xdc\xc6\x4b\x72\xac\x22\xcf\x76\x12\x6d\x6d\x7c\xd3\x8a\x6c\xcd\x6d\xdf\x71\x47\x62\x78\xcf\x69\x4c\xd4\x39\x95\x3c\xcf\x97\xa3\x85\x82\xd7\x86\xa3\x54\xaf\x06\x59\xd6\xe4\x56\x73\xfe\xe2\xec\xd1\xae\x43\x2d\xd6\xdc\xec\x57\x75\xc2\xf3\x55\x05\x00\x1d\x8f\x23\xc4\x9e\x52\xa0\xf2\xad\x49\xfe\xe4\xeb\xdb\x05\x1b\x16\x39\x82\x34\x0f\xce\xf3\x34\x48\xf4\x4b\xc2\x89\xec\x3d\x52\x92\x53\x98\xf2\x95\xb5\x53\x08\x3b\x55\xf6\x9d\x9f\xe8\xa1\x0a\xa8\xe2\x28\x94\x2c\x89\x14\x61\x3e\x50\xad\x4d\x1f\xb8\x3c\x45\x5a\x16\x0b\x11\x74\xe6\x81\xe6\x7a\xb3\x06\x74\xae\x66\x99\x7b\xcf\x5a\x29\xb1\xf2\x71\x16\x25\x03\xd9\x7b\xc8\x3f\x7c\x5f\x6b\xef\x7e\x5f\xeb\x00\xb3\xb4\x3c\xed\x75\xe9\x5f\x52\xce\xed\x4d\x45\xdf\xb3\xa9\x16\xf3\x20\x8d\xfb\x23\x93\xec\xf6\x99\xb0\x53\x98\x09\xaf\x89\x30\xef\x29\x9f\x9d\xd2\xdf\x0f\x26\xbe\x7e\xfc\x1f\x26\x8a\x79\xfb\x2e\x7e\x14\x7f\x05\xac\x04\xff\x87\x43\x3d\xe4\xc3\x32\x41\x9d\x01\x55\x2b\x44\xf4\x08\xff\xb8\x9f\x0b\x29\xd9\xbb\xce\x71\x18\xa7\x71\x9c\x17\xec\xda\x70\x8b\x1f\x3d\x8d\xb4\xfb\xe9\x6a\xac\x89\xd3\x01\x6f\x64\x46\x10\x06\xde\x73\xd2\xad\xa2\x79\x91\x99\x32\xcf\x95\xda\xd2\x29\x6d\x12\x4f\xb9\xdc\x73\x9e\xa6\xc9\x4e\x7a\x49\xcd\xfc\x8f\x08\xe0\xb6\x66\x1a\x81\xc6\xb7\x63\x9f\x11\xce\x82\xab\x3f\x43\xaf\x08\xef\x7b\x5b\x43\xae\xf7\xd0\xa1\xee\x20\x4d\xfb\xd3\x8a\x22\x7e\xa3\xc6\xc5\xef\x93\xf4\xac\xab\x24\xfd\xef\x1e\x09\x52\x26\x79\xb1\x12\x93\x1e\x7a\xf5\x2d\x52\x11\xf0\x07\xc4\xa5\x1a\x67\x53\xdc\x7f\xa2\x9a\x71\xd7\x2c\xe2\xf3\x56\x77\xb5\x99\x7c\x53\x09\x4c\xde\x55\x92\x21\x0c\x94\x13\x1d\xdc\xea\x45\x05\xcc\x45\xf6\xca\x09\x49\xce\x1e\x75\x3e\x36\x96\xb1\xf2\xa5\x67\x7d\x1a\xee\xe0\x41\xe7\x96\xd3\x30\x23\x44\x7f\x2d\x78\xd2\x79\xb6\xa6\x6f\x47\x26\x5b\x64\xc5\xc4\xda\x4a\x45\x26\xec\x81\x52\xbd\xbe\xae\x4e\xe1\xb4\x97\xdb\x6c\x89\xfb\x23\x60\x37\xde\x22\x87\x9d\xaf\xdb\xce\xaf\xcc\xe6\x65\x5c\x4c\xa9\x24\x09\x4e\x18\x8c\xe4\x23\x25\xaa\x71\x65\xf2\xb4\xe6\xab\x58\x4a\xc1\x3a\x39\xe5\xd3\x28\xe0\x4a\x95\x92\x40\xe5\x3a\x0b\x4c\xcf\x47\xd0\x0b\xa6\x5a\xdc\x3b\xc8\xba\x23\xf9\x07\x88\x26\xa2\xad\xd7\x68\x21\x21\x24\x83\x12\xbe\x93\x07\xac\x66\x0a\x9e\xcd\x8d\xc6\x81\x76\x78\xbe\x9b\x0f\x53\x10\x6d\x30\x24\x52\x31\x34\x5d\x71\x31\x95\x7d\x79\x1c\x9b\x28\x11\xa9\x4b\xf8\x31\x40\xd6\xe0\x44\x7d\xa4\x27\x6b\x6a\xc6\xf3\x0a\xa6\xe0\x7b\x16\xa6\xe3\x0d\x65\x9a\x37\x1a\x14\x40\x8e\x75\x2d\xb3\x26\x2f\xb3\x95\x29\xbf\x3f\xb7\xaf\xaa\xc4\x10\x4a\xc6\x2c\xc3\xac\x0b\x1f\x59\xba\x2c\x68\x30\x57\x27\x72\xdb\xfa\x74\xb0\xdf\x9b\x8a\xa8\x88\xc2\x45\x17\x2e\x48\xd6\xd4\x23\xf4\x2f\x3a\x14\x41\x2f\xb6\xa3\x08\xdd\x40\xb3\xff\x2f\x63\x6f\x1a\x23\x49\x7a\xa6\x87\x75\x67\x55\xf5\x31\xdd\x73\x0f\xc9\x5d\xad\x6d\xa5\xd7\x94\x46\x02\x06\x03\x03\x92\x0f\xed\x9f\xcc\xad\x2e\x72\xd8\x05\xb1\xa6\x50\xdd\xec\x21\xc6\xb0\x31\x5f\x45\x7e\x95\x19\x53\x91\x11\x39\x71\x54\x4d\x0d\xfc\xc3\xd0\x0f\xc3\xf0\x2f\x59\x82\x0d\xc3\x92\x01\x5b\x2b\x43\x90\x56\x2b\xad\x56\x36\x77\xb5\xe6\x32\x8b\xc7\x92\x5c\x0e\xc9\x1d\x92\x73\x73\x8e\xbe\xaf\xea\xea\xfb\x3e\xaa\x8d\x78\x9f\xf7\xfd\xbe\x37\x2a\xa2\x0d\xfd\x8b\xe8\xae\xcc\x8c\xf8\x8e\xf7\x7b\x8f\xe7\x7d\x9e\xc3\x4e\xb5\x46\x15\x7d\xcf\xeb\x3e\xfa\xe4\x4d\xae\x25\xa1\xb8\x3b\x49\x44\xae\xf0\xd3\x77\xc0\x5d\xe6\xff\x58\xf7\x8d\xf8\x3b\xd6\xfd\x17\x0c\x92\xd8\xae\x4d\x69\xba\x00\xf6\xf5\xf9\x06\x76\x14\xce\xd9\x8d\xb1\xef\x36\x7a\xd0\x51\x3a\x58\x47\x6b\x84\x2a\xbf\xd3\xb6\x2b\x2c\x3b\x25\x29\x2b\x2d\xab\x5d\x5a\x24\x2c\xdc\x53\xe3\x67\x5d\x93\x41\x6e\xa3\xc8\x06\x79\x61\xa2\x09\x8f\xfb\xfb\x69\x45\xf6\x41\x75\x01\x9d\x6e\xea\x88\x1c\x24\x99\x97\x1b\x76\xe2\xda\xb3\xb3\x8e\x14\xda\x77\xcf\x99\x6c\x64\x03\xc0\xe1\x45\x3a\xae\x75\x60\xc6\x89\xcd\x39\x32\xf8\xc4\xa4\xbd\x4c\x43\x05\x1f\xd2\xf9\xa3\xeb\xd1\xd2\x80\xb5\xdd\xb5\x38\x38\xd7\xce\x4c\x90\x86\x4b\x61\x20\x11\xa6\x53\x2d\x2e\x97\x81\xc4\xb6\x4d\x31\xb0\xe9\xa7\x56\x9c\x7a\xd4\x85\x99\xe3\x99\x6f\xaa\x52\xaa\x61\x34\xa9\xd3\x6b\x27\x15\x2e\xf5\x2f\xc6\x3e\x79\xfb\x6f\x31\x80\x42\xca\x27\xe5\x85\xa1\xcd\x32\xd3\x2a\xed\x00\xd6\xfb\x7d\x9d\x15\xbd\xef\x90\x1f\xe5\x89\x1e\xc6\x7d\x1b\x07\x00\xa8\x30\x2f\xaa\x02\x69\x5e\x68\xc8\x5a\x1c\x6a\xbf\x5e\x0c\x47\x74\xa0\x29\xcf\x74\xde\x39\xa3\xdb\xc3\xb8\x83\x73\xed\x38\x49\xf3\x81\x25\x03\x14\x6b\xc2\x10\x55\xc2\xaf\x4b\x51\xcd\xce\xb6\x23\x6b\x5c\xc7\x25\x0a\x3e\xbc\x71\xf8\xc6\xed\xb1\x91\x4d\x87\xd6\x51\x98\x33\x6b\xbc\xe2\x03\xfd\x59\x83\x0e\xe2\x7c\xfb\x8d\xc2\x2c\x73\xd1\x41\xfa\x5e\x3c\x4e\xe7\x62\xcd\xd8\x1d\x9c\x6b\xe7\x49\xbc\x86\xa5\x83\x43\xfa\xb8\xa2\x03\x42\x27\x35\x1c\xd8\x7a\xe2\x77\x61\xba\x9d\x0d\x93\x7c\x50\xfa\x17\xae\x48\x73\x8e\x86\x5a\x3a\x04\x14\x93\x43\x6e\x52\x70\xa5\x09\x27\x2d\xe6\x19\x67\xf5\xf7\x3b\x1e\x9d\xf8\x7d\x2c\x3c\x60\x6d\xaf\x28\x54\xfe\x15\x32\xe8\xcc\x42\xd5\x69\xbd\x32\xcf\xab\xe7\xa3\x06\x62\x96\x79\xf2\x52\x72\xdb\xa7\xd6\xf0\x23\x6a\xff\x28\xb1\xc6\x7a\xd6\x64\x01\xd0\xa1\x2c\x4f\x12\x5e\xd7\x2c\x78\x45\x6f\x25\xe2\x57\x0d\x7a\x7f\x26\xcf\x6d\x26\x19\x70\x91\xd5\xa2\x51\x95\x46\xad\x06\xe5\xba\xc5\x24\x42\x18\x0d\xd7\x16\x69\x76\xbe\x5e\x57\x5a\x35\x45\x1a\x53\x8f\xf7\x84\x87\x8c\xc1\xf9\x63\xca\x1d\x9a\x31\x16\xde\x74\x1b\xa6\x97\x9a\x7e\x36\xa1\x8e\xa0\x4d\x78\xf3\x0a\x54\x33\xdf\xd8\xee\x10\x24\x39\x4e\x00\xf1\x96\xb5\xeb\xac\x22\x8c\x15\x9b\xfe\x66\x39\x09\x38\xaf\xf7\x77\x7d\xd3\xf6\x93\x5d\x8f\xed\xfe\xad\xae\xa2\x17\xfa\x22\x89\x21\x03\xeb\x77\xb2\x43\x39\x79\x7a\xec\xff\xe4\xa9\xae\x02\xd3\xed\x5a\x27\x67\x88\xde\x6d\xf5\xb7\xbb\x74\xbc\x0b\x0c\x90\xe6\x04\xde\xca\x2e\xf0\xba\xc2\x81\x9a\x58\x2f\x57\x16\x7e\xe5\xe1\xd8\xe3\x82\x8e\x11\x88\x10\x89\x83\xd6\x7a\xeb\xeb\x33\x0e\xb0\x09\x5b\x84\x7c\x36\x07\xa2\x18\xfa\x7b\x63\x8f\xac\xde\x07\xe6\x28\x57\x03\xff\xc6\xd7\x7c\xcf\xc7\xc2\xf4\x02\xa3\x61\xcf\x8f\x5b\x5f\xf9\xa6\xef\x9f\x38\x28\x8e\xc3\x93\xdd\xd2\x5e\x55\xd8\x29\xb8\xb3\x72\x5d\x39\x95\x2f\x9a\x17\xa7\x94\xb0\xd1\xcf\x88\x27\x4b\x53\x25\xb3\xe9\xa6\x9d\x00\xde\x54\x28\xe3\x8a\xfa\xf9\x53\x4a\x94\x20\x26\x37\x4a\x89\x5b\xa1\x04\xea\xe4\x2b\x0e\x4a\x12\x7c\xa3\x76\x12\x90\xf2\x16\x2b\xfa\xb2\xfa\xb1\x2c\x7e\x15\xd4\x6e\x28\x8b\x9c\xf6\xed\x94\x9f\xd0\x2d\x2c\x29\xae\xf5\x75\xbc\x23\x8e\x03\xc8\xf1\xa4\x7b\x19\x83\xa6\x9e\x64\x62\x5f\x8f\x42\x9b\x02\x48\xc0\x9a\x4b\xf4\x6d\xa2\xbf\x54\x3f\x8a\x5e\x6a\x53\xff\x1b\x13\xc5\x08\x5b\x44\xcb\x33\x47\xb8\x90\xa4\x97\xf4\x33\x3e\x86\x14\x9c\x52\x78\x68\xd0\x15\x03\x97\x9a\xbd\x2b\xf1\x63\x7d\xa3\xfa\x6a\xd8\xb3\x11\x65\xff\x67\x1c\x47\x06\xbd\xb9\x54\xe5\x34\x7b\xc6\xb8\xa5\xc4\x51\x1b\x02\x98\x51\x64\x59\xb9\x57\x18\xd3\x7d\xc6\xe7\x21\xf9\x23\xe2\x30\x3f\xe1\xf7\xf5\xaa\x83\x80\xb1\xdf\xae\x30\xc5\x4c\xc0\x08\xd7\xe8\x44\xed\xac\xa3\xc2\x41\x1c\x06\x13\xde\xc8\x73\x53\x91\xb0\x8e\x63\x70\x58\x8c\x7e\xec\x89\xa1\x32\x6b\x87\x8a\xca\xe8\xa8\xc2\x96\x9c\xe8\x28\x7a\xef\xa3\x1d\x8f\xaa\x7b\x87\x7a\x6d\xe0\x18\x3d\x20\xeb\x8d\x78\x0f\x44\x8d\xa8\x49\xfe\xef\x18\x2f\x56\xc8\xa9\x80\xd6\xb2\xb0\x27\x47\x25\xbc\xf5\x73\x1d\xc5\xbd\x76\xae\xf6\x72\xb3\xb3\xed\xc5\x34\x64\xcd\x6b\x36\x6d\x4a\x9d\xfc\x84\x5b\xba\x8b\x49\xbf\x00\x93\x2b\xa6\xf7\x8a\xca\x4b\x9f\xa4\x60\x03\x6e\xcf\x67\xee\x13\x54\xc8\x9d\x54\xcd\x28\x98\x28\x84\xa6\x7b\xc9\x71\x15\xd7\xb4\xfc\x5a\x14\xc9\x77\x77\x9f\x76\xbd\x16\x71\xcf\xbe\xb5\x92\x70\x17\x20\xc6\xfa\x81\x8a\x2b\x9a\x44\x64\xe7\xdb\xab\x26\x62\x0c\xaa\x80\x63\xd8\x52\x49\x03\xb8\x0a\xca\x57\xc3\xa5\x3c\x82\xd3\x83\x81\x3d\x87\x73\x94\x6f\x9a\x8e\xfe\xc5\x24\x1f\x90\xec\x8d\xf0\xe5\x96\x01\xa5\x93\x96\x9a\x77\xe2\xb0\x3f\x43\x02\x4d\x94\x04\x4b\x4b\x0b\xa3\x7f\x9e\xac\xab\x40\xf6\x95\x76\xd8\x99\xb1\x2f\x4d\xa3\xd3\x4f\xf0\xaf\xdb\x5d\xa9\x85\x72\xc7\xc7\x84\x38\xf3\x84\x88\xcc\xc5\xa9\xda\x14\xee\x2a\x68\xff\x6a\x98\x0f\x4d\x8c\x75\x21\x80\x4d\x1a\x15\xc9\x5e\x3e\xae\x1a\xca\x83\x65\x30\xef\xc2\x9e\xdf\x25\x13\x8e\xa3\x72\x8b\x52\x89\xd2\xef\xf5\x9c\xcf\x84\xd8\x0c\xfd\x3f\xe5\x68\x3a\xc5\xbf\xa3\xf4\xd7\x7c\x5d\x9b\xac\x17\x20\xbf\xcb\x52\x52\xa2\xcf\xf0\xb6\x66\xc7\x7f\xbb\xe6\x0d\xbe\xd0\xce\x93\xb4\xf4\x8b\x68\xd2\x90\x3c\xfb\x48\x53\xb4\x7c\xa4\xe6\x77\x94\x96\xc1\x47\xaa\x5a\x96\xbf\x3b\xf6\x2d\xcb\xdf\x55\x24\x4a\xa3\x22\x58\xa6\x84\x86\x3b\x44\x6f\x41\xc3\x48\x1a\x46\x9a\x14\x3e\xcb\xf0\x12\x8e\x52\xa5\x1b\x86\x6f\x6a\xae\xe6\xec\x2c\x3e\xc1\xb8\x62\x09\x2e\x54\xa0\x51\xf3\x99\x25\x90\x0d\x4c\xd4\xb7\xcc\xaf\x09\x6b\xf0\x0b\x9d\x0a\xfa\x85\x87\x2b\xe5\x26\xb7\xd9\x94\xd2\xc0\xfe\xaf\x9f\xe9\x2a\x09\xcf\x7d\x5d\x0f\x55\xdb\xb5\xae\xe8\xc8\x1f\x5f\x57\xbd\x35\x77\x54\xb7\xc0\x52\x6a\x6d\x69\x3a\xd1\x0e\x26\x84\x79\x94\xd9\xc5\xa6\xbe\x83\x62\x15\x03\xe3\x6a\xa7\xd3\xdf\x6c\xdb\x38\x48\x8a\xd4\xf4\x91\x2f\x44\x1e\xee\xba\xe2\x06\xfe\xac\xca\xa5\xa0\xdd\x2a\x6b\x97\x68\xf2\x98\x94\x84\x6c\xbb\x10\x94\x6c\x13\xa2\x3e\x70\xa0\x8c\x49\xbe\x48\x2d\xbf\x92\x47\xa7\x07\x73\x9d\xe7\xe5\xc6\xc6\x78\x41\x75\x09\x51\xdf\x7e\xb0\x59\x62\xd2\x2e\x77\x94\xe3\xb5\xbb\xeb\xd7\xfa\x73\xeb\xb4\x2a\x45\xda\x84\xe6\xd9\xa9\x4c\x94\x03\x87\x81\x61\x19\x2a\x11\x5d\x22\x3f\x08\x1b\xec\xa8\x6e\x83\xd8\x09\x67\x4d\x20\x39\xce\xba\xbd\xfd\x1c\x30\x7d\x28\x45\xff\x92\x0e\x05\xa9\x0f\x90\xeb\x84\x08\xf9\x3e\x05\xb4\x82\x7f\xc0\x5c\xe3\x65\x3e\xef\x78\x80\xfe\x79\xca\x88\xe1\x80\xfb\xd3\x26\x7e\x9e\xd4\x8e\xac\x37\x1f\x70\x71\x19\xf0\xc5\x37\x4d\x14\xac\x51\x52\x64\x8f\x2e\xb7\x34\x61\x92\x98\x20\xac\xa5\xb2\x69\x97\x54\x55\xf4\x92\xeb\x17\x1a\x9a\x98\xa8\x8c\x54\xec\x7e\x51\xa5\x92\xeb\xa4\x73\xaf\xbd\x46\xcb\xb3\x97\x0c\xa9\x4e\xcc\x73\xa0\xe2\xe2\x9d\xe4\x54\x3b\xaa\xde\x72\x6c\x45\x86\xae\xd2\xcc\x94\x2e\x4e\xf9\x93\x89\x19\xe7\x10\x8e\x7d\x3a\xf6\x5d\x4e\x9f\x76\x14\xbf\x05\x00\x25\x70\x81\x5a\x8a\x30\x8b\x28\x31\x59\xd6\x85\x96\x9c\x86\x98\xf2\xb5\x3f\x21\xcb\x00\xef\x31\xdd\x98\x45\xeb\x0f\xa9\x80\x8a\xc0\xfb\xbf\xa0\x13\x56\x94\x71\x15\xc1\xef\x93\xb4\xa3\x61\xa9\x4f\xc2\xa4\x2b\x58\x9b\x00\x6d\xb7\x28\x35\x83\x69\xdd\xdb\xf5\xe0\xf7\x7a\x80\x3a\x73\xb8\xbd\x64\xa2\xc8\x69\x23\x4b\xfe\x4f\xe5\x02\x1b\x98\xf6\xdb\x26\x8e\x93\x22\x0e\x2a\x88\x80\x33\x5a\x44\xb2\x6e\x19\x66\x67\xdb\x99\x8d\x4b\xbf\x59\xb8\xb1\xb1\xa3\x7e\x8a\x4d\x88\x22\xf7\x4d\x2d\xf3\x7d\xad\xe3\x65\xb2\xb9\xca\x3d\x51\xa3\xe7\x84\x7d\x60\x0a\x3c\x14\x9f\xa8\x07\x41\x12\x63\xd6\xa4\xf9\xaa\x49\x87\x61\xdc\x8f\xd8\x14\x0b\x5b\x92\x0f\x0f\x2f\xb9\x32\x99\xe4\x1e\xca\xbf\xe3\x58\x07\xae\xbd\x04\x3e\x75\x5c\xd0\x7c\x3b\x4a\x92\xe5\xd2\xda\x6d\x1d\xc5\x54\x61\x7b\xdc\x52\xd4\xd5\x17\x95\xd3\xf6\x96\x19\x25\xb9\x0d\x54\x07\xc9\xbd\x8e\x52\x46\xba\xa7\xfe\xd4\xc6\xc4\xba\x4e\x48\x37\x2d\x1c\xe5\xa8\x24\xbe\x3e\xe3\xa9\x24\x14\xc7\x84\xe2\x2d\x1b\x98\x55\x4f\x8b\x8e\xff\xfe\xb5\x12\xa2\xfa\x75\x6d\x9e\xe4\x10\x32\x29\xb7\xb3\x0a\x7a\x58\x21\x89\xbb\xdb\x47\xe1\xf0\xcb\x00\x9f\xa8\x8e\x77\x54\xbc\xf9\xda\x71\xa9\x2f\x45\x45\xcb\x9f\x05\xef\xab\xa0\xe5\x7d\x15\x3f\x0c\x89\x6b\x63\x42\xf5\xa2\x4d\x32\x82\x89\xcf\x13\xbc\x2d\x4a\x5c\xd7\x1a\x91\xe9\x3d\x1b\x85\x2b\xd6\x09\x57\xc2\xf8\x32\x29\x27\xdf\x34\xc9\x0a\xa7\xc5\x30\x49\x51\xb7\x61\xe1\x5d\xfc\x94\xa8\xf0\xfa\x81\xa5\xbf\x64\xe8\x0c\x7c\x91\x73\xda\x31\x39\x57\x4b\x07\x1e\x38\xd0\x5e\xb4\x81\x29\x32\x4b\x8d\xb9\xd8\xc3\x48\x68\x08\x53\x9c\x26\x6f\xa3\x55\x27\x3a\x04\x5f\xf0\x04\x9a\x49\x9c\xd9\x74\x85\xe4\x9f\x77\x7b\xc5\xe3\x9f\x91\xf9\xe7\x6b\x25\x04\x07\x0f\xc0\xad\x91\xd2\xd2\x21\xd2\x3f\x87\x73\x9c\x6f\x68\x2b\xc1\x40\x4f\xac\x6f\xcf\xaf\xbf\xf6\x5a\x3b\x4b\x46\x83\x90\xa8\x14\x73\xa1\x61\x91\xae\x21\x55\xa1\xbb\xa8\x5c\xda\x07\x9d\xed\x5f\x73\x64\x7a\xae\x6d\x82\x20\x19\x8e\x40\xc7\x87\x89\x81\xb1\xff\x23\x85\xcc\xfe\x23\x8f\xc9\x2a\xf2\x41\xe2\x1a\xe9\x84\xc7\xd8\xdb\xcf\x7a\xf7\x5d\xf9\x1b\x8b\xa9\x35\xdb\x73\xf4\x27\x15\xa5\xeb\x49\x17\x27\x2e\x87\xbd\x9e\xe3\x48\x71\x78\xfc\xf2\x14\x97\x84\x84\x77\x8c\x52\x4b\xa2\xd8\x08\x44\x61\x4d\xef\xd1\xa3\xc0\x60\x53\xd6\x6c\xeb\x82\xe2\x18\xaf\x80\x58\xc8\x01\x40\x76\xe0\x1a\x39\x9a\x7c\xad\x70\x08\xd9\xc0\x46\x4b\x2d\x55\x18\xba\xa2\xfa\x32\xaf\x34\x34\x49\x1f\x6a\x67\x83\x64\x95\x2a\xfa\x4a\x96\x55\x3c\xab\xfb\x4a\xbd\xff\x67\x1a\xd7\xfd\x6e\x63\x2f\x12\xba\xbd\xb8\x06\x86\x2c\xe7\x69\x5d\x41\x78\x5b\x91\x3e\x7e\xa6\xb0\x37\x41\x62\xb2\x1c\xe5\x45\x47\x5a\xe2\xc8\x14\x3f\x52\x58\xda\xa3\xb0\x71\x22\xb7\xef\xab\x68\xab\x03\x93\xdb\x15\x9b\xee\xd2\x66\x41\xb5\x1c\x70\x42\x0b\x86\xe4\x18\xf9\x42\x48\x29\xdd\x86\x5b\xca\x37\x4a\xe1\xf1\x7e\x1d\x91\x74\xa0\x9d\x9b\x65\x78\xa4\x18\xab\xa9\xae\x2a\x33\xde\xa3\x6f\x95\x2c\x82\x02\x67\x47\x90\x15\x10\x50\x0d\xbd\x81\xa0\x6d\x1a\x41\xa5\xb1\x19\x5a\xae\xaa\xbb\x1e\x1e\x4f\xa5\xad\x32\x83\xbf\x9b\xda\x3d\xf8\x3b\xc0\x73\x3f\x55\x6c\x75\x1b\x98\x47\x3a\x0e\x92\x67\xba\x3e\x9f\x0d\x76\x47\x56\x4b\x1b\x7b\xf6\x06\xc6\x63\x89\xea\x77\xf9\x96\x58\x5f\x3f\x52\x27\x61\x9e\x9a\x38\x1b\x25\x69\x4e\x65\xc4\x5d\x65\x1c\x8b\x79\xbe\x08\xb3\x20\x66\xab\xa5\x19\x50\x7d\x73\xfc\x69\x7a\x40\xbe\xee\xf8\xfe\x8b\xf3\x2a\x00\x4b\xed\x52\x91\x31\x64\x8b\x75\xc3\x3a\x3e\x3c\x7c\xd7\xf9\x41\x83\x24\xcd\x00\x0f\x83\x87\xf3\x1b\x5d\x7f\x0c\x3c\xb1\x4e\x76\x09\xd0\x82\xd6\xfa\x63\xe2\xf0\x1f\x99\xfe\x6d\xc5\x00\xf0\x1f\x52\x2e\x13\x56\x60\x27\xe2\x70\xd8\x3e\x90\xdd\xe3\xd0\xbd\xcc\x89\x1a\xa1\x08\xa7\xbd\x25\x55\xe6\x9d\x5f\x16\x11\x7e\x25\x7d\x77\x52\xe7\x79\x76\x13\xa1\x3e\x20\x41\x7f\x49\xb9\x74\x67\xa6\x17\xa4\x4e\xfe\x93\x4e\x19\x2c\xc3\x03\xfb\x47\xe8\x67\x81\xa3\xd0\xea\x52\xea\x16\x16\xe7\x2a\x6d\x79\xcc\xe1\xb1\x4e\x79\x68\x3b\x3e\x95\xf2\x5d\x41\x2b\xb6\xd5\x69\x3d\xff\xbc\x6b\x46\x2f\xdd\x3f\x69\x7a\x2f\xe7\x13\xa1\xc0\x75\x56\x96\x83\x8f\xf5\x23\x34\x51\x63\x41\xff\xde\x58\xc5\x32\x9f\x43\x63\x5f\xb0\x3d\xad\xaf\x7c\xd3\xe5\xcc\x15\xb3\xff\x2f\x15\xab\xf7\xaf\x00\x2d\xc2\x31\xc7\x99\x6f\x94\x68\x9e\x40\xf4\x82\x06\xac\xeb\xaa\x78\xcc\xba\x39\xd8\xf6\xbb\xc0\x7b\x0e\x58\xe6\xe5\x8a\xbb\x1d\x71\xe3\x01\xac\xfb\x75\x4d\x42\x73\x7d\xdc\x7e\x84\xf7\x91\x85\xc3\x30\x32\x29\x11\x9d\x4a\x42\xff\xae\x4a\xf5\x32\x8e\x0d\x25\xed\x0b\x0d\x08\xef\x76\xcf\x66\x61\x3f\xae\x12\x8c\xaa\xe6\x12\x17\x43\x17\xa3\x81\x8d\xb8\xef\x0e\x51\xf3\xdd\x6d\x5d\x1c\xe5\x58\x60\x6f\x71\x1d\x15\x0b\x4a\xf3\xae\x37\x69\xa6\x1f\x6a\xe7\x03\x9b\x32\xe7\xbd\xd0\x96\x97\x53\x81\xbd\x89\x52\x0d\x13\xf2\x35\xd4\x59\xda\xa9\xcd\x06\xc5\xd2\x52\x24\x35\x47\xbc\xf8\x3d\xa4\xac\xf8\xa6\xd2\x33\x94\x9a\x78\x6f\xf9\x9d\x98\xc4\x2d\x64\x56\x5c\x7e\x79\x76\x96\x17\xda\x0e\xc4\xfe\xd8\x08\xef\x69\x70\xd4\x26\x95\x44\x1d\xa2\x6c\xce\x7b\xda\x34\x3a\x42\xd2\x59\x2e\x66\xf6\xb4\x55\x4e\x25\xb2\x26\x8d\x4b\x7f\xc8\x75\xbd\x5e\xa2\x4d\xc3\xd7\xaa\x64\x5b\x06\x71\xd1\x1a\x07\x01\x42\x09\x4f\x8f\x81\x85\xf5\xe3\x0a\x5a\x5e\xf1\x9f\x46\x76\x98\x30\xf5\x19\xd3\x46\x8e\x3d\x83\xc4\xa5\xa6\x31\xf4\xd2\x03\x5c\xdf\xaf\x68\xcc\x49\x36\xda\x37\x0a\xa6\x45\xfc\x58\xcb\xf5\x07\xbf\x03\x12\x74\x58\xc3\x3f\xd0\x6d\x25\xf8\x3c\x76\x1e\x77\xe6\x39\x17\xc8\x49\x5e\xbf\x4f\x65\x0a\x18\xbf\xb3\xf4\xa4\xfc\x4d\x63\x55\xda\x44\x93\x3d\xbe\xe9\x4c\x03\x6a\xee\x50\xe9\x79\xf4\x40\xc7\x2a\x84\x81\xe7\xc7\x8a\x5c\x12\xd8\x08\x6c\xef\x8d\xa6\x72\x6a\x8a\xc6\x13\x0c\xb7\x14\xd3\x15\x89\x44\x7d\xf7\xbc\xd0\x2e\x5d\x4c\xe7\x42\x09\xab\x4b\xcb\x91\x83\x7f\xac\x7c\xf5\x6c\xd5\xf6\x6c\x4c\x28\x07\x96\xa2\x26\x6b\x27\xb2\xd4\x4f\xa8\x03\x68\x2d\x89\xe1\x60\x60\xf5\xb0\x3c\x2f\xb6\x00\xc8\x1e\x04\x27\xe1\xd3\x93\x99\xe1\x64\xb5\xa3\x20\xf3\x74\x64\x0a\x41\xbe\x6a\xa3\x28\x48\x86\xa0\x3d\x41\xca\xff\xbc\xe2\x22\x3b\xaf\x3a\x90\x53\x9b\x8d\x92\xb8\xf4\xcc\x98\x0d\x59\x5a\x01\x14\xeb\xd9\x4f\x94\xdc\xc3\x52\x18\xd9\xdd\xd4\x21\x71\x59\x29\xa7\x7d\x86\xb5\xa1\xc9\x91\xb1\x3f\x2e\xd2\xc1\xec\xe4\xba\xb9\xb3\xa5\x1c\x6e\x4c\xf8\x67\xa5\x77\x22\x4d\x9e\x69\xdf\xc4\xe1\x5b\x20\x8c\x42\x87\x99\xe3\xaf\x29\x9f\xcc\xf9\xed\xe5\x74\x4b\x7e\xbf\x7c\x43\xd8\xd9\x4f\x68\xa4\xd9\x33\xa2\xe9\x01\xb4\xee\xbe\xf3\x70\xcd\xa2\x89\x7b\x49\x3c\xe5\x39\x5e\x1e\x74\x54\x87\xfb\x0f\x3b\xbe\x7f\xf9\x92\xd2\xda\x85\xa8\x28\x16\xe5\x3f\x74\xb1\xf1\xc0\x9a\x48\xdc\x76\x18\x0c\x50\x33\xf1\x75\x0d\x3d\xb2\x30\x5d\xce\xf9\x84\xaa\xf7\x82\x22\x0a\x63\xf3\x23\x4d\xb0\x7a\xba\x06\x3a\xa7\xdc\xbb\xa1\x99\x17\x9d\x0a\xdf\x10\x70\x49\xf5\x01\xaf\x9a\x9c\x9a\x1e\x26\x2b\xa2\x07\x15\x39\x84\xf2\x65\x9c\x47\x7a\xd0\xe5\x91\x9b\x68\xe8\x32\x13\x25\xc3\x24\xe6\xdd\x22\x20\x05\x85\x5b\x3b\xa1\xba\x5a\x83\xd4\x9a\x61\x28\xb9\x2e\xc7\xf5\xe5\x25\x01\x2a\x5a\x19\x61\x1e\xd9\x5d\xe5\xfb\xe3\x60\x39\x0d\x27\x57\xec\x33\x1d\x9f\x15\xdd\x0e\xfe\xb3\xb1\x97\xe6\x7c\xfd\x72\xb5\xf7\xeb\x69\x87\x51\x5d\xb1\x51\x32\xb2\xa9\xa4\x82\xa5\x0e\xa9\xba\x5e\xb6\x54\x93\x0d\xe7\xc6\x60\xe8\x1f\xef\xaa\x56\xf5\x4f\x1a\xd2\xf6\xe4\xd5\x39\x63\x00\x47\xe9\xa6\x72\x9a\x6e\xba\xca\x61\x64\x16\x19\x62\xc3\xc6\x90\x46\x5e\xce\xe8\x96\xeb\xd3\xfe\xc3\xda\x52\x99\x9b\x93\xfe\x7e\x2f\x60\xa6\x6a\x25\x97\x94\xe7\xbc\x9a\x30\x06\x5f\xb2\x63\xde\x8f\xbc\xa4\x7d\x51\x33\x0a\x7b\xac\xee\x84\x3d\x75\x0f\x11\x2f\x12\xb4\xf7\x31\xe0\x7c\x53\xa9\xf4\xab\xb2\x2c\xfa\x6f\xc4\x82\x37\xf0\xec\x65\xc9\xd0\xe6\xe1\x50\x5a\x86\xe1\xd5\x1c\x57\xb4\xe2\xc7\x1b\x38\x47\x66\xda\x41\x12\x45\x66\x94\x55\xe5\x66\xaa\xb0\x10\xf1\x95\xd3\x24\x59\xe2\x08\x55\x30\x13\x2d\xa5\xa1\xdf\x90\xe8\x7d\xdd\x44\x66\x64\xe3\xa4\xe5\x4b\x67\x1b\x8a\x7d\x7b\x43\x41\x3b\x6d\x96\x87\xc3\x32\xa4\xdf\x55\x7a\xcd\xa8\x80\x3f\xe8\x28\x5a\x86\x63\x74\x3a\x39\xd4\x8b\x0b\x5c\xaf\x50\xba\x01\x33\x7b\x94\x66\x00\x30\x93\xeb\xb5\xb3\xe4\xc8\x74\xbb\x17\xa6\x04\xd1\x72\x36\xe8\xa3\xb1\xaf\x6c\x7c\x54\xdb\xf9\x2f\xb4\x6d\x1e\xbc\x38\xe9\xb3\x47\x28\xf7\xc3\x4f\xe5\x6c\x9c\x33\xb5\x2e\xb1\x7f\xa9\xa1\x42\x70\x64\x7a\xee\x29\x9f\x11\x7e\x07\x06\x1e\x1d\x34\x40\x30\x20\x96\xfb\x2e\x76\x15\x90\xa1\xf7\xe1\x5f\xa1\xab\xec\x18\x16\x21\xde\xf9\x0e\xb9\x33\x42\x29\x4a\x8f\xe1\xe8\x0a\x14\x64\xa7\x74\xef\x51\x3d\x03\x8a\x10\x4e\xf8\x63\x70\xbc\xe9\x3f\x4e\xb4\xbb\xe5\x70\x4b\x3b\x67\x39\x2e\x48\x2c\x4f\xac\x7b\x27\x61\x13\xd3\xc0\x3f\x37\x7e\xd6\xab\x95\x73\xca\x39\x5a\x9b\x52\x9d\xef\x97\xb0\x84\x11\x89\xfc\x3e\xbd\x1c\x1c\xaf\x9d\x9e\x38\x29\xde\xb9\x5e\xfe\xae\xd4\xfe\x9f\x74\xc9\xd5\xdc\x8c\x46\xdc\xad\xa2\x81\x14\x52\xb2\x7a\x2a\xdc\x16\x41\xe2\x87\x91\x79\x3d\xab\x1c\x9e\xfb\x1c\x70\x61\xf7\xff\x64\xec\x0d\xf6\x19\x95\x3e\xf8\x56\x43\xbe\x6e\xde\x81\x37\xc5\x51\x91\x66\x24\xfa\x29\x69\x65\x6a\xa2\xce\x58\x4a\x8b\x30\x5f\x4c\x56\x23\x5a\x31\x88\x6c\x20\x8a\x2f\xce\x44\xb9\x04\x00\x0a\x61\x59\x70\xc9\x03\x79\xa3\x12\x07\xf9\x2e\xd5\x63\xc6\xe6\xd8\x39\xed\x6e\x60\x9e\x03\xd4\xc6\xb5\xcc\xfa\xe0\x02\x9d\xa9\x48\xb1\x6c\xd5\x1e\xf4\xb5\xd7\xda\x43\x33\x30\xa9\x79\xdd\x0c\xc0\x16\x2b\x8a\xb1\x5e\xf1\xed\xa2\x6e\x29\xc1\x1b\x20\x8e\xd5\xf0\x95\x37\x0a\x93\xe6\x36\x87\x2c\x6e\x53\xe5\xf2\x19\xd5\x85\x94\x97\x5e\x9c\x5d\xd5\x5c\xbc\x17\x34\xd5\xd0\x05\x55\x31\xee\x85\x59\x6c\xd7\x94\x00\x0d\xd8\x57\xf9\xba\x29\x55\x9a\x0d\x92\x22\xea\x91\xd6\x3e\x12\xb1\x08\x88\x14\xf0\x7b\x9e\x03\xb7\xb3\xca\x5d\x1c\x99\x7e\x12\xf7\xab\x74\x21\x5e\xad\xf1\x9e\x72\xb2\x37\x6a\xa3\x08\xb5\xe1\x41\x2f\x35\xab\x26\x6a\x29\xa2\x68\x30\xdc\xf1\xb5\x3a\x73\x7b\xa9\x19\x9a\x6d\x94\xb2\x73\x73\x8e\x52\xd6\xc3\xa4\x4d\x40\x5a\x46\xb4\x87\x90\x55\xb8\x03\x0f\xcc\x11\x26\xba\x5a\xe6\x71\xf5\x32\x83\x24\x59\xb6\x29\xbd\x8c\xa4\x6e\x3c\x3a\xf4\x7d\xcd\xa5\x76\x4d\x45\x4a\xd9\xd0\x44\x91\x4d\xf7\x61\xa1\xbb\x54\x80\x5f\x99\x3b\xbb\xea\x41\x1e\xa8\xd4\x28\x77\x9b\x54\xaa\x47\xae\x9a\xa1\xc5\x3a\x17\xa6\x9d\xb6\xaa\xea\x6a\x7b\x88\x13\x50\x9a\x49\xe8\x05\x19\x02\x55\xa1\xae\x35\xa3\x6c\xbf\xf7\xe7\x91\xc8\xc7\xfa\x7a\x00\x92\x65\x61\x32\xa5\x67\x96\x63\x93\xbe\x5b\x60\x24\x8a\x5a\x93\x35\xc9\x04\x20\xed\x53\xeb\x13\x5d\xca\x39\xf0\x97\x01\xde\xcf\x3f\x39\xf6\x8e\xc3\x0f\xe8\xd8\x11\x51\xa6\x3a\xb0\x69\xae\xdd\xb7\x71\x1e\x41\x43\xc1\x69\x17\x2d\x08\xc7\xf6\x86\xe6\x9a\xfc\x7f\x6a\xe5\x9b\x99\xc3\x6d\x13\xf7\x6d\xaa\xf9\xfe\xfe\xbe\xf2\x84\xff\x7e\x13\x28\x64\xc9\xb0\x26\x38\x4c\xe0\xd1\x8e\x2f\x44\x1d\xf5\x54\x44\x36\x5d\x11\x25\x79\xec\xe9\x4a\xcf\xd8\x85\x5a\x02\xf1\xb5\xd7\xda\x8b\x36\xcd\x43\x0b\x17\x4a\xbe\xaf\xe5\xb4\x7e\x2f\xe8\x0a\xe1\x4d\x45\x38\x1e\x85\x4b\x9c\x66\x60\x11\xb9\xb1\x52\x50\x3d\x4e\xd3\x27\x30\x02\x6f\x1e\x72\x93\xe5\x36\xb2\x19\x58\x0c\x24\x86\xf6\x1d\x05\xba\x99\x2e\x32\x3d\x1b\x4f\x28\x9e\x64\xf4\xb6\x62\x69\xdf\x51\xd9\xc0\xd3\x4d\x03\x9c\x25\x45\x8e\xd6\x74\xb1\x26\xac\x71\xdc\x72\x7a\x3d\x13\xdd\xe7\x34\xa3\x67\x19\xb4\x93\xfe\x0c\xcd\x9d\xd3\xd1\xf1\xa2\x05\x17\xb5\x80\x52\xb8\x92\xa4\x81\xed\x4d\xf9\x16\xb8\x9f\x50\x42\x17\x33\xf8\xda\x58\x29\x7e\x81\xab\x4d\x84\x29\xe8\xdb\x11\xea\x4f\x74\xb7\x71\x6d\xbd\xd0\x5e\x98\xdf\xeb\xd1\xce\xff\x53\x47\x79\xbf\x88\xbb\xe0\x48\x1c\x53\x34\xc8\xdf\xe9\xa8\x58\xe7\xa4\xc6\xb6\x9e\x54\xcd\xbb\xc7\x14\x03\xd9\x87\x63\xd5\x48\xf5\x63\x65\x90\x08\x33\x9c\xed\xa1\x8c\x22\x40\x8c\x20\xf2\xc6\xf5\x67\xf8\x6e\xac\xf6\xfb\x5a\xf2\x06\x6d\x42\xf0\x5e\xf6\xd3\xd1\x8f\x84\xe9\x77\xc7\x4a\xfe\x8f\x09\xae\xf0\xd0\x93\xeb\xde\x32\x2d\x59\xd2\x1e\xa7\x35\xeb\x72\x38\x0b\xd3\x2e\x87\xe3\xe8\xf8\x57\x4d\xca\x59\x3d\xf1\x01\x55\x3a\xee\x68\x43\x6e\xfc\x50\xdb\x69\x02\xcf\x55\x94\x5f\x94\xea\x89\x74\xba\x5e\x53\x09\x99\x28\xb4\x80\x94\x49\x40\xa5\x75\xff\xbe\x3d\x56\x3b\xe5\xdb\x15\x3d\xf5\x06\xdc\x5b\x14\x0e\x25\x3c\x71\xf5\x1b\x87\x8e\x39\xa3\x33\xbf\x97\x54\xfe\x61\x98\x24\x20\xc1\x93\x46\x17\x1a\x3a\x67\x68\x5d\xd8\x0f\xce\x7c\x11\xfe\x6e\x02\x46\x8c\xa2\xc2\x93\xf7\x56\x9a\x95\xc4\x13\x54\x2d\xcd\xe5\xd1\xfa\x85\xd2\xdf\xc4\xf4\x5d\xc1\x84\x03\x46\xf6\xcf\x3b\xad\xaf\x7c\xd3\xf1\xa6\xe9\xce\xea\x75\xa5\x4c\x31\x86\x75\x96\x1c\x4f\xb9\x62\x91\x5c\x7e\x9c\xbc\x40\xce\xde\xeb\xb5\xc3\x9e\x3f\x6e\x9e\xec\xd2\xda\x53\xad\x77\xaf\xf2\xff\x3c\x1c\xfb\xa6\xdf\x6b\xe4\xbf\x28\xdc\xea\x7c\xa5\x45\xcd\xf5\x4b\x3a\xb1\x4b\xe1\x0f\x41\x95\x73\x17\x78\x48\x91\x01\xda\x52\x1d\x08\x13\xeb\x3e\xaa\xfb\x7c\xac\x99\x4b\x4c\xb4\x2c\x2c\xd9\x2c\xbb\xd8\xf1\x6c\xec\x27\x9b\xe2\xa1\x20\x89\x7b\x49\x2c\x03\xcf\xe4\xc5\x18\x78\x61\x32\x6e\x40\xab\x67\xc5\x70\x68\x52\x86\xfd\x6b\x7f\x1e\xb5\x9c\x5b\xca\x3f\x3b\x3f\xf6\xf4\x60\x99\x89\xf7\x95\xc3\xe3\x68\x91\xcb\x13\x8e\xc9\x0a\x80\x16\x42\x12\xf6\x2c\x0e\x52\xa1\x31\xa0\x47\xc3\x49\x5e\x29\xe6\x5c\xe1\xe1\x42\xa0\xf2\x6f\xe8\x01\x90\x3c\x63\x21\x03\xe9\x9c\xf5\x5c\x21\x1b\xf0\x11\x60\xc4\xef\x75\x9e\x54\x46\xbc\x48\x2d\x13\xc4\x88\xbe\x86\xd6\x0a\x1a\x7f\x51\x73\x0a\x94\xa1\x61\x9f\xd0\x1a\x44\x76\x08\x94\x23\x52\x7b\x4e\xa9\xe3\x15\xa7\x8a\x78\x75\x5c\xae\x55\xac\x89\x7a\x5e\xa5\xf4\xef\x7b\x36\x0e\x05\xa7\x29\xa9\x52\x7a\x03\x49\x15\x34\x40\x0a\xfa\xa9\x61\x5e\x32\x44\xa0\x5b\x5c\xfe\x70\xad\xd9\x8e\xd9\xa2\x0e\x93\xa6\x5e\xbb\x3c\x4c\xb7\xf1\x0a\x7d\xaf\xe3\xa3\x84\xef\x29\xc6\xcb\x30\x7e\xbd\x88\x83\xf2\xd0\x69\xd1\x2c\xc1\x91\xbf\xac\x70\xee\x97\x15\x09\xdc\xb0\x3f\xa4\x15\xe8\x48\xe0\x0e\x3a\x42\x38\x8d\x82\xb6\x61\x7f\xc0\xe4\xf4\xae\x6d\x51\xb5\x46\x36\xe4\x6a\x7b\x36\x37\x61\x84\x51\x12\x86\xaa\x96\xd3\x22\x3f\xe9\x98\xc4\x82\x28\x1c\x55\xb4\x3d\xce\x28\x21\xe3\x33\x2e\x79\x60\x86\x61\x9c\x4c\xf8\xc4\xcb\x49\xad\xfc\x0d\xe9\x51\xe9\x75\x90\x5c\x92\x96\xbf\xd0\x8a\x17\x15\x2d\x0c\xa5\xee\x1f\xf6\xb3\x5d\xe5\xf7\x54\xda\xa1\x91\x2a\x63\x0e\x3d\x67\xb4\xe6\x44\xf4\x7c\x0b\x46\x0b\xf1\xd9\xc7\x30\x1b\x7c\xe3\x49\x19\x29\x4a\x50\xc1\xc0\x23\x23\x06\xd5\xf3\x1f\x59\xb3\x4c\x13\x23\x4a\xa0\xe5\x70\x8b\x42\xa8\xd2\x3b\x28\x32\xc6\x14\x20\xdb\xb2\xa9\x32\x2f\x9b\xca\xed\x31\x69\xbf\xb0\x54\x97\x46\xee\xf5\xbd\x8e\xca\x7d\x9e\x53\x88\xb0\x9b\x3a\x49\xc7\xb5\x0c\x1c\x05\x1c\xc0\x32\x3d\xa8\x2a\x9c\xaf\xd8\x15\xbb\xa6\x11\x2e\x58\x45\xd2\xb0\x50\x9a\x55\x0c\xd6\x2f\x55\xae\xd3\xf4\x12\x72\x8c\x76\x7b\xad\xba\x9d\xeb\x5a\x69\x86\x32\x11\x30\x1d\x13\xdd\x32\x32\x83\xfb\x71\x9f\x0a\x3b\x12\x4d\xd2\xe0\x8b\x73\x48\xab\x53\x3e\xed\x79\xc0\x06\x49\x14\x85\x99\xa8\x87\x0a\xbb\x69\xe5\x5d\x9e\x56\xda\x88\x2b\xd6\x6f\x34\xf6\xb4\x68\xbe\xc5\xeb\x6a\xc2\x69\xa4\x96\xc0\x56\x6c\x97\x5d\x2c\x3b\xe7\x63\x59\x3f\x13\xfd\x82\x1c\x55\x57\xe6\x3d\x37\xf6\xb3\x72\x4e\xf1\x40\x05\xc5\x30\x64\x47\x55\x88\x3c\x3c\xd0\x1d\x19\x64\x0c\xdb\x3b\x8a\x41\x25\x4f\xcd\x8a\x8d\x00\xfa\x81\x75\x66\x22\x49\xbe\x51\xc9\xc7\x70\x94\xed\xa7\xf1\x86\xdb\xf2\xa5\xae\x47\x14\x20\xea\xd2\x1d\x65\xd8\x8d\x7f\x05\x11\x18\x62\x36\x46\xe9\xe1\xc1\xef\xa9\xd6\xfe\xd6\xba\x9f\x52\x22\xd4\x66\x46\xb8\xff\xe6\xaf\x75\xd5\x1a\xb9\x41\x99\x30\x87\x17\x2c\xf7\x8d\x30\x43\x3c\xe3\x7b\x1f\x44\xf2\x94\x42\x14\x09\x63\xca\x9f\x92\xf0\xe6\x69\xdd\x72\x16\x45\x21\xca\x32\x2f\x71\x3a\xeb\xd4\x58\xcd\x5c\xc7\x93\x56\x9c\x53\xad\xf0\x84\x6d\x29\xd8\x53\xe4\xda\x13\x3c\x23\x29\x44\x3d\xa9\xb2\xe4\xc9\x6a\x0f\x93\xe7\xf8\xbe\x17\xa6\x1d\xde\xa6\x01\x91\x18\x24\x43\xa7\x01\x81\x14\x20\x1a\xa3\xf9\x7a\x7b\xa6\xef\x95\xf9\x2f\xb7\x8f\x4c\xc3\x1a\xba\x7a\xcc\xdc\xdc\x23\x05\xe4\x28\x66\x4c\x12\x24\xbc\x04\xfb\x5a\x41\xc5\xaa\x0e\xae\x30\xc7\x72\xd2\x45\x12\x24\x93\xa6\xba\x7e\x6b\x68\xd0\x5e\x60\x62\x13\x5b\x4e\x3b\xe0\x19\x6e\xa8\xe7\xb9\xa1\xe3\xaa\xb0\x3f\xc8\xf7\xf9\x08\xf1\xa7\x63\x25\x64\x3d\xd9\x55\x40\xff\xd3\xb4\xb3\xe1\x1c\x5d\x47\x2c\xe2\x14\x6b\x1c\x2d\xfb\x44\xd7\x8b\x87\xb3\x76\x32\xcc\x32\xc7\x0b\x8e\xe5\xb1\x3c\xe1\x9c\xe3\x5d\x86\xed\x38\x84\x6f\xaa\x4d\x61\xf2\xdc\xc6\xd2\x31\x0b\x2c\x19\x28\x33\x91\x9e\x84\x40\x15\x7c\xbd\x5f\x8f\x35\x04\x24\xb0\xe1\x8a\x9d\x54\xf1\xc9\x79\x38\x8f\x7c\x03\xaf\x01\x66\xee\xa2\x32\x79\x17\xb5\x22\x66\x91\xf6\x6d\x3a\xa1\xe2\x27\xe0\x0e\x84\xfd\x93\x76\x84\xb0\x3a\x28\x42\x52\x96\x56\xa3\xfc\x1a\x83\x61\x3a\x1e\xfc\xba\xa9\xf3\x31\xcc\xa8\x26\xfd\x1a\x3e\x25\x0e\xd5\xe2\x24\xe5\x7a\x31\xa6\x9d\x89\x78\xf8\x46\x1d\x7f\x4b\x26\x05\x4c\x1f\x5f\x04\x64\x25\x5f\x37\x18\xbd\x99\x76\x6a\x57\xa8\x8a\x86\x0d\xe7\x68\x5d\xca\x89\x16\x8c\x0f\xfd\x14\x1c\xc3\xbb\x35\xaf\xe8\xeb\x33\xed\x20\x4a\x32\xd4\x39\xf1\x3c\x0f\xc6\x5e\xe4\xe8\x81\x53\xa6\x0a\xa2\x24\x2f\x52\xf0\xf8\x38\xd1\x1a\x2f\x60\xd3\xf8\x70\xd9\x88\x49\xb4\xe8\xe1\x84\x44\xb0\xfc\x06\xe1\x10\x6c\x40\x88\x17\x31\xd1\x05\x39\x0e\xef\x53\x3a\xde\x3e\xa5\xd2\x5e\xc5\x28\xb7\xc3\x11\xdc\x11\xac\x51\xf0\x2b\xba\x75\xfc\x8d\xaf\xb9\x04\x81\xaf\xbe\x06\x26\x8d\xe0\x89\x60\x8d\x9f\x05\xe8\x85\x6f\x6a\x0f\xf4\x02\x89\xd7\xcb\xa1\x82\x72\xe8\x55\xcc\x1e\xdf\xb8\x4e\xf5\x2c\xb7\xa3\x60\x10\x46\xbd\x54\x72\x1b\x70\xe1\x6e\x28\x76\xd9\xdb\x1d\xaf\x7e\xf4\xa3\x2a\x25\xe8\x2a\xc2\x42\x6c\xcf\x6f\xc1\x18\xc3\x19\xc6\x69\x2b\x3e\x90\xf7\x37\x4f\xbb\x4c\x7a\x90\x86\x79\x18\x84\xd9\x50\x09\x6e\x9f\xc7\xe9\x2a\xdb\x44\x15\xd8\x07\x36\x5c\x46\x2b\x16\x9c\xfa\x9d\x5d\xc5\xe1\x74\x47\x2f\x9e\x63\x1a\xb0\x58\x0c\x47\x54\xae\x2d\xdf\x0c\x9b\x05\xa7\x26\x5f\x3b\x5f\xb2\xc8\xa9\x69\xc6\xe7\x30\x69\x11\x4b\x30\xe1\x33\xc4\x51\x92\x64\xa8\x75\xce\x73\x55\x1d\x39\x6f\xbe\x56\xb4\xab\x26\x4c\x83\xd4\x2c\xe5\x53\x8a\x08\xfa\xc1\xd8\x5b\xf0\xf7\xc6\x15\xbe\x24\x95\xa0\x7b\xa0\x94\xc4\xbf\xa3\xcc\x8a\xc9\x20\x5d\x58\xce\x06\xce\xf2\x13\x8a\xc4\xb9\xde\xc3\xb7\x30\xdd\xb6\x6f\xe6\xa9\x69\xf9\x4e\xb3\x8b\x5a\xed\xb8\x2e\xb2\x42\x38\xee\x22\x58\x76\x6d\x95\x88\xf3\x8e\x21\x8a\xe6\x9b\xda\xae\x99\x7f\xf9\x50\xdb\x44\xa5\xd3\x51\x60\x2e\x91\xca\xff\x4c\xa1\x11\x3f\x73\xec\x34\xcb\x6b\x91\x9d\x50\x4a\x2f\xa7\x15\xf5\xee\x3b\xe4\xf1\x09\x16\x50\x36\xf1\xb0\x48\xe9\x81\x5a\x8e\x86\x7b\x13\xf6\x9a\x6f\x6a\xc5\xc5\x85\xe9\x85\x76\x66\xe3\xd0\xa3\x66\x99\x7f\x4e\x15\x35\xff\x6d\x05\x9d\x95\xd9\xb5\xa9\xd2\x0a\x3b\x2d\xf1\x99\xc3\xd2\xac\x5a\x65\xac\xf1\x5f\x06\x3f\x4a\x22\xee\x2a\x23\x37\xba\xf1\x9d\x62\xe0\x5d\xc5\xb5\x78\xd7\xf9\x28\xc6\xa6\x49\x6c\x8a\x3c\x0c\xa4\x15\x00\x59\x8e\x1b\x63\xad\x4a\x8b\x9f\xc7\x71\xb3\xb3\xeb\x6d\x6e\x3f\x35\x8b\x13\xad\xc3\x2f\xf3\xc2\x42\x0b\x28\x83\x5e\xc7\x8a\x4b\xf8\x87\xe3\x6a\x9b\x46\x11\x11\xce\x62\x9f\x97\x1b\xbf\xdb\xf1\xdd\x1e\x37\x74\x46\x80\x7b\x89\x38\x4e\xc2\x12\x90\xa0\x89\xd6\x3f\x93\x2e\x51\x7c\xc1\x1d\x1b\x34\x72\xae\x7b\xc3\x01\x56\xae\x2a\xc6\x4a\x86\xdd\x70\x6d\xb1\xe3\x1f\xcf\xbe\x39\xb2\x69\x68\xe3\xc0\xb2\x34\xba\xfb\xb1\x72\x3c\xe4\x31\x7c\xba\x14\x29\x79\xbe\xf6\x56\xc5\xa4\xd6\x7a\xc1\x7d\xc1\xf2\xf9\x0e\x8d\x2b\x4a\xd0\xe3\xb3\x5a\x73\xf3\x91\xe9\x57\x59\xd6\x0b\xa9\xd7\xf2\xa7\x1d\x93\xa1\x53\x3c\xd9\x68\xa8\xd7\xae\x9a\x88\x78\x51\xbd\xe4\xe0\x9c\xd0\x57\xdd\xac\x3a\x8d\x36\x5d\xb1\xd9\x1e\x1a\x05\x01\x9f\x96\x9f\x93\x46\x19\xff\x56\x0f\x3b\x4a\x9e\x9a\x0f\x48\x44\x29\x57\x30\x03\xae\xcf\x66\x76\xd6\x47\x95\xe5\x23\xc3\x69\xbf\xa0\xb2\x19\x44\x61\x65\x7a\x61\x90\x27\xe9\x1a\xf9\xa1\xcc\xc2\x85\x84\x8c\x50\x72\x6d\x4b\x00\xff\x4e\xfb\xc8\xf4\x13\xb4\x3a\xb7\x6e\xd2\xdc\xb2\x5c\x05\x96\x98\x30\x37\x7a\x1d\xbb\xe3\x80\x23\x3b\xed\x7a\x77\x3e\x7f\xae\xc3\xe0\x4d\x55\x9a\xbd\xa4\x99\x2c\xa9\xb8\x0c\xcf\xfe\x38\x61\x58\x31\x7e\x1c\xa0\xc1\xf1\xfb\x97\x80\x13\xdd\xa4\x65\xc7\x5f\xde\x48\xe1\x67\xc2\xe5\x10\x91\x9b\xe2\xcf\x98\x77\xfc\x19\xfe\x1c\x4b\xa2\x1e\x74\xba\xa5\x41\xf1\x0c\xf0\xef\x02\xb2\x2c\xbf\xc2\x39\xed\x07\xe7\x9c\xd3\xfe\x98\xab\x1d\x07\x2d\xef\xcc\x6f\xe8\x6c\xe2\x46\x85\x1d\xd7\xe6\x6b\xfb\x68\x18\x84\x7c\xae\xe5\x84\x32\x2e\x63\xe7\x09\x45\x3b\xed\x3c\xa4\x9b\x36\xb1\xf3\xf8\x06\xf3\xce\x7f\x36\xae\x31\x4f\x20\x81\xc0\xa0\x54\xa4\xdf\x36\xa9\x0c\xc0\x98\x39\x8d\x3b\xfd\x07\xaa\x83\x32\x0c\x96\xc1\xd3\x86\x15\xf5\x27\xf0\x9b\x1d\xe9\x41\xb9\xa4\x18\xc1\xe2\xde\x7a\x31\xcc\xa7\x3c\xc6\x79\x6b\x9b\x96\xd1\x11\x91\x33\xff\x53\x05\xb9\x01\xd3\x12\x96\xf3\xde\xae\x93\xcc\x5a\xcb\xf2\x64\x14\x02\xe6\x04\x8f\xe9\x18\x5e\x80\x6f\x1e\xc9\x8a\x1f\x85\x8b\x36\xcd\xd1\x99\xd7\x98\x82\xd7\x8a\xd1\x4b\x39\x6c\x3c\xb0\xaa\x28\xae\xe1\xd4\xfe\x23\xcd\x6e\xff\xb9\x02\x7b\xa0\x63\x13\xff\xfe\xcf\x9a\xd8\x3c\x16\x8b\xb4\x67\x63\x6e\x18\x80\x49\xb9\xa9\xab\x12\xd0\xb9\x16\xea\x4a\xef\x5f\x2f\x85\xd9\xc0\x52\x91\x41\x95\x02\x36\xf4\x12\xa8\x13\x8a\x1e\x99\x6e\xc7\x49\x6c\x15\x0a\xf6\x92\x66\x7d\xa8\x25\xd2\x16\xa6\xa9\xf8\xcd\x11\x24\xe6\xff\x3b\xf4\x09\xbe\xae\x55\x96\x67\x0e\xb7\x47\x49\xb0\x6c\xf3\xc5\x24\x01\xdc\x10\x9b\x1a\x00\x39\xbe\x56\x2c\xe4\x45\x1c\x96\x6e\x66\x6a\x38\x9f\x8a\x18\xe6\xfc\xd8\x97\x68\xce\xd7\xec\xe4\xef\x50\x4e\xab\xa5\x72\x57\x58\xb8\x92\xd4\x92\x25\x39\x1a\xd8\xc8\xa0\xb8\xe2\x32\xf9\xe5\x67\xf8\xa6\xf4\x5f\xb5\x9d\x7a\xed\xb5\xf6\xdc\xdc\x33\x38\x46\x91\x3f\x58\x57\x2a\x27\xef\xd3\x72\xde\x62\xa2\x15\x2c\x8e\xeb\xf4\x98\x58\xee\xe8\x3f\x42\x50\x70\xbd\x53\xa1\xe9\x52\x8e\xde\x55\x44\x6d\x48\xe7\x3f\xa0\x99\x75\x2a\x2f\x0e\xbd\x72\x1c\x61\x29\x5c\xb2\x1b\x74\x64\x20\xcf\xf1\x50\xc3\xdc\xaf\x93\x2d\xe5\x6f\x62\xc6\x6f\x6c\x73\xfe\xff\xb1\xd2\xfb\x38\xda\xa4\x26\x14\xa4\x26\x1b\x4c\xfa\x5a\xc1\x7f\x5b\x39\x10\xc6\x15\xfa\x83\x96\xeb\x26\xbe\x5b\x6b\x63\x7c\xfe\xf9\x76\xdf\xe4\x03\x64\xae\x5a\x4e\xe2\x71\xb3\xa3\x00\x40\x9b\x2a\xae\x5f\x2a\x28\x38\xda\xe5\x21\xd6\x20\x78\xe0\xeb\x8e\x52\x9d\x62\xf4\x83\x4e\x3b\xf1\xb5\xc2\x07\x5c\xd4\x42\x05\xec\x3a\x91\x21\x82\x99\xbe\xab\x80\x9e\x17\x14\x7c\xbb\x8e\xc5\x28\x0f\xee\x6c\x90\x24\xac\x03\xe0\x90\x0e\x47\xa6\x1d\xd2\xc1\xa7\x1c\x46\x69\xb2\xf4\x22\x72\xd2\xf0\x3c\x41\x94\xc2\xd7\xaa\x5c\xd0\xb3\x41\xd8\xb3\xbb\x14\x63\xe3\x4f\xc6\xfe\x89\xae\x2a\xc4\x05\x6b\xd3\xe2\x8f\x6e\x63\x11\x39\x2d\xb3\xd9\x59\xf9\x84\x02\x72\xa7\x49\x69\xbd\x88\x2a\x43\xa4\x40\xcb\x87\x80\xf3\x75\xab\xa3\xd8\x85\xcf\x28\x58\x4d\xab\xab\xe4\xb2\xaf\xe0\x77\x50\xde\xba\x8c\xbc\x89\xd0\xb6\xd0\xdb\xf1\x97\x35\x0a\xb4\x85\x2b\x61\x14\xba\xd4\x23\xe2\x90\x5b\xf4\xac\x7c\xed\xce\x07\x54\x42\xa6\x7c\x3b\x2d\x63\x33\xe0\x96\x7e\x8a\xd3\x92\x8b\xb2\x8a\x53\xe7\x1e\x0d\x15\xff\x51\x8d\xd4\x64\x61\xba\x6d\xf2\x04\x64\x5a\xac\xea\x47\xef\x2f\x0a\x7f\xf5\x84\xd5\xab\xed\x25\x57\x17\xc0\x2b\xff\x14\xdd\x26\x7c\xe3\x2b\xb3\x61\x94\xdb\xde\xa4\x52\x9e\xb8\x89\x81\x42\x32\x12\x69\x74\x00\xfd\xb8\x74\xc8\x24\x9e\x2a\x72\x7c\xa3\x08\xe3\x08\xec\x11\x33\x9e\xb4\xcf\x95\x4a\x7f\xdd\xf1\x76\x30\x0d\x7b\x61\x50\x44\x49\x91\x4d\xa8\x90\xee\x6d\x35\x94\xd7\x3a\x1e\x81\xa9\x33\xba\xc1\x20\x8c\xcd\x6e\x9f\xa1\xc4\x32\x94\x96\xe3\x2a\xdd\xcb\x91\x69\xdf\x97\x3c\x3b\xcb\xc1\x02\x88\xb7\x38\x69\x82\x57\x91\x0c\xca\x93\x4a\x97\x95\x28\xa7\x50\x36\x12\x16\x69\x1a\x38\xa1\x91\x6e\x88\x1c\xb3\x41\xb2\xca\x07\x1b\x2c\x3f\xd3\xf6\x08\x77\x86\xe6\xab\xf1\xe1\xf1\xa8\x78\xeb\xad\x32\xf6\x39\xa8\x68\xee\x3c\x90\xd2\xeb\x77\x8f\x4c\xb0\x6c\xfa\x94\xa6\x72\x2e\xc4\x65\x2d\xcc\xcd\x65\x13\x58\xc0\x27\xd7\xbd\x0f\xf1\xa5\x5a\xdb\x2d\x29\xdb\xc7\x3d\xb8\x01\x58\x6d\x90\x05\xe5\x6b\x25\x0a\x18\x25\x86\x88\x46\x5f\x62\xc7\x12\x67\x15\x56\x2b\x3a\x0d\x19\x0c\x49\x2b\x57\x44\x79\x2a\xea\xf1\x0a\x39\xb6\x55\x71\xee\x72\x13\x3d\x47\x8b\xcc\xf9\xb2\xae\x97\x6d\xf7\x3a\x4e\x26\x84\x64\x5b\x63\x6f\x0a\x77\x10\xdf\x02\x7c\xbb\xc7\xb0\xb3\x25\x67\x44\xc7\x05\xdc\xed\xb3\x70\x87\x90\xc1\x7b\x6f\xac\x5a\xec\xef\x8e\x15\xd1\x2b\xb1\x1f\x6c\xbd\x83\xa2\xaa\xd3\x1b\x28\x6d\x02\x7f\x0d\xe6\x42\x32\x73\x4a\xdd\xe2\x73\x78\x6f\x48\xa6\x6c\x90\xd1\x74\x32\x7a\x73\x1e\x1e\x45\xfb\x9c\xbf\x18\x03\x81\x84\xfe\x2d\xd5\x11\x3c\x4a\x93\xc0\xda\xde\xa4\x87\x35\xdc\xea\x28\x88\x09\x8e\x5d\xa4\x70\x76\xac\x2b\x71\x9c\x07\x35\x57\xe1\xc8\xf4\x4c\xbb\xf4\x43\xbe\xf1\x35\xa7\x69\xa2\x05\x4e\x54\x19\xc9\xa4\x36\xe6\x54\x33\x7b\x77\x8a\xad\xfb\x9c\x93\xd3\xa3\xf8\xa7\x8c\xeb\x4c\xc4\x2d\x55\x58\x05\xdc\x8d\x05\x6f\xf7\x23\xda\x69\xd2\xd7\xeb\xc9\xd5\x02\x93\x0f\x92\x28\x0c\x04\x9a\x29\xd4\x4b\xf4\x51\xbe\x69\x32\xb3\x8b\x45\xaf\x6f\x73\xa1\x8e\x87\xe7\xfd\x4b\xc5\xf0\xf0\x4b\x85\x46\x02\xf3\x31\x9d\xc4\x8e\xc6\xe2\x26\x91\xed\xf0\x75\x67\x5b\xd2\x7f\x6e\xae\xbd\x30\xbd\x40\x6e\xad\xd4\xcf\x68\x14\x98\xbf\xb5\xb3\x3d\x53\x84\x0d\x7b\x4d\xe7\x80\x37\x54\x42\x2f\x0a\x63\x1b\x53\x42\x4f\x52\x65\x34\x73\x58\x77\xa7\x14\x8d\xcc\x1d\x4d\xba\xf0\xff\x56\x60\x73\xf1\x5b\x66\x42\xb1\x75\x9f\xa5\x4f\x21\x97\x7f\xbf\x42\x9b\xb1\xdf\xe7\x44\xb3\x37\x29\x5b\x8d\xef\x3e\xa5\x77\xfe\x49\xcd\x8c\x03\x50\xba\xe0\xb0\x1b\x40\x0e\x59\xa4\x65\x0f\x11\x8b\x80\xb2\x09\x15\x00\x6c\x77\xe9\xfb\x6b\xa8\x3c\x83\x4a\x66\x52\x89\x3a\x54\x75\x2c\x68\xdc\xa4\xd8\x8e\x75\xc0\x77\xaa\x97\x37\x8c\x7b\xd4\x22\x3e\xe5\x3d\xe8\xf7\x95\x07\xfd\x3e\xd9\x78\x6c\x8d\x13\xe4\x07\xe2\x24\xfa\x05\x82\x5c\x6c\xd5\x7a\x3b\xd2\x91\xe9\xf9\xb6\x89\x50\x0f\xae\x62\xec\x91\x19\x01\x4b\x91\x54\x57\x9e\xad\x38\x55\xa9\x59\x03\x5c\x64\xda\x91\x9c\x96\x7f\xcc\xd7\x4a\xd9\x33\xb7\x69\x9a\xa4\x61\xc6\x04\x69\x12\xd3\xfb\x87\x3f\xee\x88\x4b\xfa\xa9\x89\x7b\x59\x12\x13\x32\xc1\xe9\x92\x38\x63\x71\x5f\xc1\x01\xcf\xd6\x22\x8d\xf9\x85\xf9\xb6\x89\x6d\xd0\x4b\x88\xdf\x74\x41\x0c\xc9\x07\xf4\x53\x7c\xdd\x24\xe3\x47\x2a\xb7\x2d\x05\xec\x3b\x4d\xbf\xc9\xd7\x9d\x2f\x29\xd9\x94\xa5\xd4\x64\x79\x5a\x04\x54\x00\x50\xb9\xa0\x0b\x0a\xd2\x7b\x41\x57\x01\x8b\xb4\x1f\x06\x88\x65\x5e\x62\x37\x13\xb8\x03\xbe\x76\xee\xd0\x6a\x18\x2d\x16\xa9\x52\xc2\xe7\xcc\x02\xdf\x74\x3c\x80\xed\xf5\x72\xf3\x67\x7b\x26\xb4\x36\x2c\x19\x6c\x59\x43\xbe\xdd\xeb\xe2\xb8\x22\xc2\x4d\x5f\x08\xb3\xfe\x3e\xd9\x63\x7c\xe2\x9c\x8a\x5a\x76\x77\x15\x94\x7f\xd3\xc5\xe5\xa3\x22\x7f\x9c\xbe\x0a\x6b\x61\x0a\x8c\x47\x88\xf9\xf6\xae\xd3\xcb\x39\xe0\x96\xdb\x19\xbb\x88\x99\x4c\x0c\x26\x65\x84\x1c\x09\xb2\xe7\xe5\xfe\x52\x57\x21\x57\xfe\x14\xbc\x8c\x48\x1c\x7d\x57\xb3\xe3\xed\x20\xf6\x46\xac\xae\xc7\xa9\x3e\x88\x45\xfd\xf8\xba\xea\xa0\xfc\x8f\xba\xdb\x37\xf0\x0b\x4e\x58\xb6\xa7\x97\x1f\x17\x2e\xf8\xa6\x21\x65\xfd\x6a\x3b\x4a\x92\xa1\xe8\x82\x0b\xeb\x1c\xbd\x28\xdf\x34\x41\x9b\x06\x61\x7f\x40\x52\xa7\xba\x26\xd8\x52\x1c\xc6\xcf\x2a\xdd\xbe\xdc\x0e\x28\x49\x04\xdf\x53\xe4\x5e\x94\xdc\x8d\x06\x56\xe4\xa9\x09\x79\x03\x89\x76\x94\x67\x39\xb9\x34\xde\xe7\xf3\xb1\xc9\xd3\xe5\x40\xc1\x2d\xfc\x3d\xca\xa2\xa1\xf8\x7c\x07\xae\x16\x26\xf0\x56\xa7\xd2\x58\x55\x6e\x5c\x4c\x26\x47\x8c\x02\xab\x6d\x7d\xe5\x9b\x8c\x21\x3b\x0d\xdf\x01\xe6\xf4\x81\x6a\x52\x79\x57\x91\x29\xec\xc4\xea\x41\x15\xf7\x2e\x66\x19\x19\xb9\x07\x63\xd5\x09\xc2\x12\xde\x02\x18\x2b\x5f\x04\xf9\xf9\x5b\x30\x57\x8e\x6a\x67\x41\xf0\x49\x13\xeb\x1e\x40\xf1\x46\xe9\x79\x86\x49\x8c\xc2\x0d\xd2\xd3\x5b\xd5\xae\xbe\xf2\x83\xe2\xab\xf8\xb8\x6b\x14\x41\x06\xa4\x7c\x0f\xae\x71\xe2\x6d\xa5\xe0\xe9\x6d\xd6\x90\x5a\x26\x4a\xab\xef\x81\x9e\xd4\x92\xb7\x05\x88\x2d\x1b\xa4\x7a\x53\xd7\xfc\xcb\x87\xda\x8b\xe9\x9a\x89\x21\x59\xce\x44\x3c\xf8\x8c\xb0\xf2\xd4\x0c\xd7\xcb\x87\xda\xd6\xf4\x6d\x1a\x13\x14\xe3\x11\xa9\x18\x1f\xd2\x0e\xc2\x6c\x64\xe2\x10\x3c\x37\x38\x7d\x6f\xa9\x93\xf8\x56\xed\xa1\x66\x0e\xb7\xc3\xe1\x90\xf4\x0f\x7c\x99\xea\x96\xa2\x14\xb9\xd5\xfc\x4c\x6f\x06\x36\xcb\xc2\x15\x94\x1d\x98\x8e\x5a\xb5\x66\x9f\x52\x19\x68\x5b\xa4\xc9\xc8\x9a\x78\x9f\x72\x5d\x1e\x5b\xf7\x3d\x79\x10\x5b\xc0\xc4\x5e\xc7\xe6\xc3\xcc\x9e\x57\x9d\x6c\x68\xe5\x45\x7e\xe0\x14\x9c\x0e\xfc\x11\x8a\x1d\x7c\x3d\xf6\xfd\x3e\xbf\xb7\x17\x5d\x23\xfc\x55\x54\xc9\xe7\x8f\xab\x80\x68\x98\xf4\x2c\x08\xaf\x99\x4e\x60\xac\xc0\x79\xff\xa8\xe3\xfb\x57\x73\x1b\x0c\x62\x20\x3c\x26\x3c\x40\x19\x3d\x55\x40\x5f\xdc\xa8\xc8\x2c\x35\xa9\x28\x52\xd3\xa4\x75\x4c\x4c\xf0\xf0\xd9\x2f\x76\xb9\xd7\xf2\xe7\x01\x78\x3e\xda\x08\x68\xcd\x4d\xda\xb7\x79\x36\x51\x0e\x87\xa8\x32\xd0\x37\x60\x9b\x5c\xc3\x00\x62\x2f\xfe\x62\x3b\x68\xe3\xe0\x5c\x79\xae\x7f\xc9\x17\x47\xb6\xc6\x3b\xbf\xec\x15\xfc\x0e\x0a\xe3\xf9\xcf\x11\xae\x31\xd2\x40\x31\xb9\x6d\x94\xde\xea\xd6\x05\x9d\xfc\x39\x39\xf6\x64\xbb\x50\x08\x10\xc0\x9a\x6f\x23\x2d\xc3\xbf\x97\x0f\x39\x80\x18\x05\x0c\xc8\x5c\x9c\x27\x58\xad\x08\xe0\x21\x64\x14\x80\x03\xcd\x32\xb2\x10\x3f\xc0\x69\xa5\x98\x7f\x5d\xe1\xb8\xa3\xa6\x99\xc3\x6e\x6e\x3d\xd4\x1d\xed\xff\x3d\xca\x0e\x58\x01\x57\xb0\xb7\x61\xe2\x38\xf9\xce\x8f\x53\x29\xd3\x8d\x46\x42\xef\x8e\x24\xc1\x8e\x2e\x7d\x0e\x91\x05\xaa\xd4\x30\x25\x1c\x3d\xf1\x7f\xd0\xa2\x90\xd3\x50\xfb\xaa\x36\x5c\xfc\xff\x01\x22\x7b\x22\xfe\x7c\x35\x79\xda\xa3\x94\xe0\xbd\x8b\xf3\x44\xaf\x2e\xdd\xc7\x78\x38\xd8\xb9\x9f\x8f\xbd\x40\xca\x55\x6c\x04\xa1\xc1\xd2\xc1\x65\x39\xc9\xf0\x75\x7f\xaa\x93\xde\x9b\x08\xb6\x18\xbd\x0f\x26\x0b\x07\xe5\x2f\xdf\xcd\xc9\xc7\x96\x33\x8f\x63\x83\x4d\xba\x63\xcf\x2b\xed\xb3\x90\xae\xd0\xdc\xb9\xa1\xf7\x35\xc5\x7b\x15\xe7\x3d\x09\x99\x09\x1a\x79\xd3\xf3\x8a\x30\x88\xa3\x73\xcc\xeb\x0f\xb1\x13\xab\x7d\x1b\xc9\x00\xc7\xa3\x94\xab\xca\xc0\x8d\xaf\x9b\xc4\x8f\x7a\x96\xd4\x0f\x05\x68\xe1\x6a\x49\xce\x39\x3b\x59\xd3\x38\x58\x98\x6e\x0f\x6d\x1a\x94\xd1\xbe\xd2\x2b\x13\x91\x9f\x96\xe3\xb6\xbd\xae\xda\x42\xf2\x41\x18\x13\x7a\x11\x0b\x0a\x65\x25\xec\x82\x87\xb4\x30\x44\xd9\x4e\xe1\xe5\x38\xca\xc7\x0e\x7e\xd0\x51\xcc\x92\x9f\x9e\x6c\x52\xc0\x63\xa4\xb0\x3c\x10\x72\xd4\x10\x5a\xe0\xeb\xf5\xa7\x54\x2a\x2d\xce\x93\x74\x8d\xc2\x2c\x69\x32\xa1\x8f\x09\x9d\x53\x6b\x6e\x6e\xeb\x4b\xe4\x36\xe1\xd4\x7d\x62\xdd\x47\x88\xf6\xcd\x20\x2a\x7a\x4e\x99\x14\xb5\x23\xac\x7c\xbe\x76\x85\xd0\x2c\xe0\x42\x28\x1e\x4a\x31\x34\xc9\x75\x43\x1f\xd1\x7c\xbb\x17\xba\x36\x48\xc9\xd6\xd2\x8a\x90\x34\xae\xd2\xe9\xb1\x06\x9c\xee\xb3\xb3\x0e\x4a\xed\x2d\xf7\xa5\xca\xc2\x0a\x97\xd6\x26\x1f\x09\x29\x2e\x9f\x1e\x3e\x36\xe2\x12\xbe\xee\x28\x41\xd6\x24\x1f\x25\x45\x9a\x86\x2d\xd5\x7e\x53\x85\x49\x2a\x20\x66\x9e\x16\xfd\x7e\x64\x27\x15\xf3\x41\x47\x21\x8d\x58\x69\xce\xe1\x7f\x1d\x96\xed\xb8\x72\x40\x96\x8b\x70\x54\xc1\x1c\x30\xaf\x99\x80\xe5\xeb\x6e\xe8\x4c\x3b\x19\xa9\xf1\x16\x72\x4c\xcd\x2d\xb0\x3d\x05\xfa\xda\x6b\xed\xc5\xa2\x9f\xd1\x01\x26\xbd\xcc\x8a\x61\xff\xae\x82\x18\x5c\x50\x30\xed\xd7\x93\x22\x8d\x89\x6e\xb1\xe5\xf1\x67\x27\xc6\x4a\x62\xa8\xf6\x78\xb3\xb3\x6d\x13\xa6\x8b\x49\xca\x84\xaa\x8e\x1c\xdf\x1d\x09\x75\xae\xc2\x99\xc3\x54\x4c\x77\xdd\x51\x8c\xe5\x51\xc2\x05\xbe\x2b\x36\x8c\x57\xc2\x2c\x14\xd8\x03\x8a\x5f\xa7\x15\x57\x46\xbd\x25\x8a\x14\x05\x72\xe6\x49\x82\x99\x00\x3d\x35\x5f\x2b\x0f\x6f\x44\x92\x56\xa9\xed\x4d\x79\x49\x27\x66\x11\xc6\xc4\xb1\x04\x05\x9a\x8c\x77\xaf\xfb\x20\x7f\x37\xed\x41\x54\x48\x2e\x2b\x24\xcd\xc0\x8c\x46\x36\x66\x54\xba\x2b\x93\xbc\x32\xef\xc0\xb4\x4d\x1d\x72\x51\x68\x63\xc5\x76\xbe\x83\xb6\xa8\x68\x1e\xfc\xf6\x23\x4a\x94\xa9\x1d\x15\x8b\x51\x18\x98\x38\x03\xa8\x41\xb2\x6f\x30\x2a\x58\x91\x7b\x40\x57\x8b\x50\xea\x9e\x16\x06\xb9\xa8\xb2\x5c\xd9\x6a\x98\x65\xb4\xa8\xa5\x01\x4b\x81\x9e\xee\x28\xf9\x86\xf7\xc7\x8a\x54\xe1\x96\x2a\xb0\xac\x98\x80\x35\x86\x3d\x19\xef\x2d\xd5\xe5\x7c\xcb\x91\x29\x8c\x52\xbb\x12\x26\x45\x16\xad\x21\x8b\x8e\x14\xc5\xa6\x62\xc4\x40\x4b\x35\xab\xa3\xd3\xda\x43\x0e\xfd\x43\x87\xf4\x59\x31\x59\x3e\xa5\x73\xa7\xf4\x69\x24\x5b\xef\x28\x70\xc8\x13\xeb\xaa\x85\x1b\xae\x2e\x0d\xd1\xda\x5f\xad\xe9\x7b\xce\xcd\x11\xd9\xc0\x2a\x51\x0a\xb5\x14\x17\x1b\x0d\x2d\xc2\x22\x1c\xaf\x18\xd8\x9b\xbe\x57\x20\x29\x46\xb6\xa5\x08\x6b\x34\x81\xfa\xa5\x8e\xf7\x8e\xb3\x28\x59\xed\x25\xab\x0c\x06\xc6\x91\xbb\x3e\xae\x44\xf0\xbe\xd0\x7e\x5a\x7f\xb0\x18\x8d\x22\x92\xef\x74\x0d\x61\x17\x3a\x4a\x72\xe8\xbe\x4a\x3e\x71\xdb\x29\x42\xec\x4f\x9b\x28\x38\x22\x6b\x3c\x08\x91\x19\x81\x14\xed\x94\xee\x92\x0b\xe3\xd7\x6d\x00\x19\x34\xf8\x63\xa7\xb4\xbc\xe1\x35\x05\xbd\xd9\x52\x51\xaa\xc9\x32\x9b\xd3\x6a\xc2\x1e\x6a\x75\x95\x22\x38\x14\x3c\x35\x40\x03\x39\xc0\x4f\x9b\x6a\xc6\x8b\x61\x12\x25\x48\x9d\xf8\xa3\xe0\xf7\xd5\x51\xf0\xfb\xb5\x02\xfe\xc1\xb9\x72\xb8\x6c\x3a\x34\xe9\xb2\x15\x35\x0c\xc5\x32\x7f\xc8\xf9\xc0\x4f\x29\x24\xe7\x20\xb4\xa9\xa4\x5f\x61\xf6\x7f\x8d\x37\xe5\x1b\x35\x19\xa3\xa2\x74\x13\x32\x8b\xd4\x0b\x56\xe6\x6d\x35\x7e\xb7\xe1\xb7\xc1\x3b\x7b\x5f\x73\xda\x7d\x57\x45\x4d\x0f\xe0\x6a\x21\xd9\x76\x17\x4e\x2a\xdf\xc0\xe3\x96\x20\xd6\x9f\x1b\x78\xa3\xdf\x24\xc3\x02\x67\xe4\xaa\xaa\xbf\xb6\xd6\x55\x70\x71\x8c\xf2\x3a\xf0\xae\xce\x92\x5b\x02\xaf\xf6\x2a\xbe\x1b\x91\xec\x39\x2c\x6d\x9c\xbe\x3b\xc1\xa7\x26\x0a\xca\x8a\xf1\xed\x18\x9e\x14\x2f\x37\xc0\x69\x47\xcf\xf6\xfd\xe7\x48\x5b\x42\x16\x46\xcb\xf5\x5e\xed\x20\x1d\x0e\x58\x99\xef\x29\x6a\xe2\x3b\x1d\xe5\xe7\x3d\x0e\x42\x33\xec\xd9\x73\xca\x57\xfd\xb6\x6e\x0c\x07\xaa\x11\x9e\xf7\x95\x8e\x12\xe8\x7d\x1f\x65\x05\x1c\x7f\x57\x28\xc1\x21\xc5\x79\x72\x68\xd9\x9f\x1e\x6b\x0e\xc0\x3f\xaf\x61\x79\x5e\x68\x2f\xda\xd8\x2e\x85\xf9\x64\xf9\x05\x9c\xe2\xc0\x18\xf1\xc3\x28\xf6\x93\x7b\x34\xc9\x72\xb6\xfb\xc0\x92\x7a\x09\xbf\x44\xd3\x02\x3f\xeb\x2f\x3b\x9e\x11\x61\x0f\x5e\x13\x66\xf5\x2e\x3f\x0e\x86\xe9\x32\xa1\x67\x04\x4b\xa7\x32\xd3\x93\x9a\x1d\x9b\xeb\xa1\xf8\xb3\xa9\x75\x6f\xa3\xa7\xd0\x40\xc8\x10\x12\x2c\x3a\x21\x91\xa3\x21\x90\x3e\x12\x9a\x3e\xa1\x01\xa2\x21\x84\xa5\xb8\x8c\xf9\xc7\xda\xfc\x05\x85\x73\x70\x1a\xaf\xa9\x75\xba\x9b\xe6\x18\x8b\xf1\xfb\x54\x2f\x10\xfd\x7e\x0a\x22\x30\x64\x13\x5d\x05\x7f\xfa\x39\x55\x39\x10\x43\x4c\x52\xd7\x05\x02\x85\x9d\xdd\xa7\xb4\x78\x63\x36\xb0\x80\x05\xc1\x14\x40\xf8\x4a\xb7\x7d\x22\x2b\xf7\x59\x9d\x2a\xfe\xe5\x43\xed\x55\x13\x2c\x03\x7e\xa9\xeb\xf7\x42\xba\xd0\x14\x4b\x2f\xa6\x89\xe9\x41\x58\x7b\xde\xbb\xc3\x9e\xe9\xb4\xf3\x9c\xaf\x9c\x5a\x93\x91\x6b\x12\xad\xb1\x45\x10\x61\x64\xa5\xee\x7b\xa6\xe3\xeb\xb9\x43\x33\x1c\x26\xf9\xa0\xa5\xc4\xaa\xde\xd7\x3c\x05\x4e\xe0\x8c\x84\x7d\x46\x61\x1c\xb3\x17\x8c\x82\xe7\x49\x1c\x01\x7c\xe3\x05\xce\x6c\x1c\x0c\xca\x3d\xbf\x4b\x89\x51\xfd\x68\xec\xe1\x24\x57\x31\xcd\x98\x02\x26\x99\x14\xbc\x3d\xbd\xa6\x90\x11\x95\x3f\x85\x30\xee\x96\x4a\xc8\x07\x69\x58\x9e\x2a\x71\x9f\xa4\x96\x51\xe7\x3e\x09\x43\x24\xb4\x4c\xe5\xf8\xf0\x7f\x60\x15\x09\x45\xd3\x13\x2a\x45\xd6\x0b\x8d\x72\xb4\xb8\x1f\x8b\x6f\x54\x0e\x3c\x37\xcb\x36\x59\xb1\xe9\x5e\x1a\x44\x2e\x82\x91\x99\x42\x26\xf5\x32\x76\x80\x50\xbe\xb5\x1c\x59\xe9\x96\x6e\x0a\x03\xc2\x12\xae\xc1\xbf\x1e\x7b\x91\xd7\x73\x5a\xd3\xe5\x0a\x16\xb6\xa8\x55\x3c\xa1\x52\x66\xa9\xed\x4d\x6a\x72\xec\xa3\x8a\x8e\x73\x53\x55\x76\x37\x75\xae\xee\x68\x93\x77\xbd\x64\x42\xc4\x27\xb0\x92\x48\x09\xf1\x75\x45\xd3\x32\xb5\x41\x9e\xa4\xfb\x14\xf1\xeb\x67\x78\x55\x21\xae\xf0\xde\x15\x52\xe5\xb0\x36\x3f\x52\x4c\x5a\x9b\x58\x79\xb0\x69\xac\xf2\x88\x94\xdd\x64\x57\xb7\xc9\xd2\x18\x38\x83\xe2\xd3\x30\xdc\x54\x2d\xa4\x3e\x0d\xea\xc8\x3d\xbb\x64\x8a\x28\xaf\xb4\x3c\x5e\x52\x2d\x8f\x75\x26\x60\xe2\xc7\xcd\x53\x6b\x86\x92\x53\x87\x55\xe1\xae\x53\xbe\xd1\xbc\x52\x21\x28\x8a\xb0\xa0\xee\x2b\xea\xda\xfb\x8a\x0c\x6e\x68\xe2\xb5\xa7\x68\x78\x34\x63\x02\x5c\x87\xdd\xb0\x8b\x30\x12\xbb\xa8\xcb\x1a\x8b\xff\x3c\xe5\xb3\x1c\xf2\xd1\x99\x1f\x70\xaa\xe2\xac\xfc\x98\x72\x26\x1a\x23\x85\xa3\x7b\x6f\x57\xe1\x11\xef\xe8\xde\xe0\x4f\x35\xaf\xc6\x44\xd7\x67\x7a\x58\xc9\x1a\x2e\x66\x8e\xb1\x75\x02\x24\xe5\x31\x80\x89\xba\xab\xda\xfd\x8a\x38\x5c\xb1\x69\x26\xac\x2a\x38\x1b\xcf\x2b\xfe\xa2\xf3\x8f\x14\xab\x48\xed\x8a\x8d\x0b\xa8\x1c\x61\x32\xae\x51\x1c\xff\x5b\xd4\x8c\xe4\xfc\x5f\x07\x24\xdd\xd0\x3a\xbe\x8f\xaf\x3f\x5e\x91\xaa\x9c\xa2\x97\x45\xf2\x8a\xdd\x21\x3c\xf9\xbf\x1b\x2b\x18\x09\x6d\x8a\x8a\xd2\xb4\xe4\x7a\x9e\x56\x3d\x44\x61\xd4\xb3\x29\xd2\xef\x00\xe8\xb0\x92\xa2\x70\x28\xfa\xee\xb2\x26\x06\xf1\xf6\xd0\xac\x2d\xda\x28\x0a\x63\xd6\x8a\x43\x86\xf8\xb8\x22\xbb\x38\xde\x40\x96\x86\x9a\xb7\x2c\x39\x64\x1b\xf8\x54\xe3\x9b\x4a\x72\x20\x5f\xe1\xd8\xc8\x25\x5d\x7d\x8f\xfa\x26\x1d\x39\x0a\xfc\x3a\xe3\x7a\x00\xfc\xaa\xed\xf7\x51\x5d\xc7\x9f\x21\xf1\xc2\xd7\xaa\x18\x91\x16\x59\x1e\x91\xe2\xaf\x22\x0f\x3d\x53\xa1\x53\xf5\x89\x96\xd4\x9a\x40\x41\xc0\x05\x4f\x4d\x8f\xc9\x37\xb5\x44\xbc\x2c\x86\x51\x64\x62\xf1\x53\x99\x99\x5f\x73\x34\x7c\xa2\xf6\x9b\x29\x22\xe2\xd7\x40\x88\x0a\x34\x0f\x9c\xe6\x1b\x5a\x25\x0b\xb5\x77\xa4\x08\x3e\xac\xc0\x64\x30\xaa\x8e\x3e\x67\xde\xa7\xfc\xc6\x48\xde\x3a\x38\x8d\x0e\xc4\x7c\xf0\xd0\xa3\xd2\xc9\x1e\x1a\x11\xf8\x22\x9b\x1a\x6c\xb6\xae\xca\x58\xd7\xc8\x47\x95\x7a\x57\xcb\x89\x66\x7d\xa4\xb5\x0b\x4e\x77\x14\x00\x57\xb8\x87\x05\xc3\xe4\xc5\xcc\xf2\x34\x1c\xb6\x14\x35\xeb\x1d\xa5\xc7\x7b\xc7\xb5\x6f\x25\x69\xcf\xa6\xc2\x97\x81\xec\xf0\x8f\x14\x53\x28\x67\xa6\x30\x76\x57\x5d\x79\x76\x39\x4e\x02\x08\xd9\xce\xeb\x22\xe6\x8c\xcf\xac\x96\x93\x08\x43\xf4\x40\x45\xc7\x29\x89\x00\xda\x74\xaa\xe5\xf5\x70\x68\x2c\x60\xdf\x99\xf6\x56\x9a\xb3\xca\x59\x63\xb9\x38\x30\xf8\x08\xc9\x9c\x3c\x46\x4a\x50\x5a\xc5\x22\x02\xa1\x12\xbe\x56\x4d\x86\x23\x9b\x2e\x25\xe9\x70\x42\xa9\x19\xde\xe9\xf8\x48\x0a\x6c\x4a\x70\xee\xce\xd4\x0e\xb9\x72\x8f\x86\xd1\x32\x56\xa9\xab\x11\x7a\x0e\x10\xd5\x7a\x46\x21\x94\xcd\xa6\x94\xac\x03\xf7\x4d\x89\x5a\x85\x47\xcc\xf2\x01\x01\x53\x7a\xa7\xa3\x24\x94\xee\x76\x3c\x8c\x39\xb5\x24\xe6\x61\x7b\x8c\x2d\x03\xcc\x83\x29\xc9\xf9\xc6\x45\xe0\x8b\x26\x0b\x63\xd5\x8d\x73\x49\xeb\x3a\x5e\x52\x81\xfa\x30\x0c\xa6\xaa\xd0\xb7\x85\x69\x4e\x23\x81\xbf\x11\xde\xf4\x1f\xc3\x4c\x08\x68\xa4\xe5\x34\x83\xf7\x75\xf7\x3b\x8c\x82\xb5\xcb\x2d\x5f\x31\x7f\xb6\xab\xf8\xb8\x9e\x5d\xdf\xbe\x7f\x0f\xce\xb5\xc3\x9e\xa5\x60\x56\xf8\xf0\xa5\x4d\xcc\xd7\xdf\xce\x35\x01\x4f\x56\xc2\x24\xb2\x71\x80\x9c\x84\xe8\x8e\x96\x8f\x2d\xb6\xca\x9f\x4b\x1b\xca\x6e\xd9\x28\x69\xa9\xed\x02\xb4\xaa\xd4\xd7\xfc\x9f\x65\x36\x7d\xaa\x5c\x93\xc2\xab\x52\xa9\xc3\xb4\xbe\xfa\xca\xd6\x51\x38\x7e\x54\xe8\xfc\x5f\xff\x03\x9c\x95\x70\x91\x6e\x68\x71\x95\xfd\xeb\xaa\x33\x61\x57\xd7\x93\xf1\xa0\xc1\x99\xb6\xc7\x7f\xf5\x9b\xeb\xbe\xb0\xb7\x49\xb1\x84\x98\x05\xf2\x3a\x69\x1d\x7e\xe1\xb7\x70\x88\xe0\xf8\x9a\xa0\xda\xa1\x3e\x50\xf0\xad\x9f\xc2\x82\x09\x2a\x7c\xfb\xd1\x39\x3b\xdb\x5e\x2c\x52\x6b\x8a\x20\x35\x39\x57\x48\x1d\xbb\xab\xef\x6b\x6f\x5a\xf1\x91\xc9\xed\xa4\x4f\x20\xdd\x57\xba\x96\x50\x95\x63\x41\x75\x5a\x39\x78\x95\x1d\x5d\x7f\x2a\xbe\x5e\xf4\xc2\x20\x34\xd1\x44\x39\xa8\x0e\xbd\x5b\xfa\x04\x08\xda\x2e\x77\xfc\x10\xfc\x42\xb9\x89\xa3\x34\x19\x25\x59\xa5\xdf\x1b\xc7\x07\x5f\x57\x0e\x35\xdb\xb7\x7b\x2a\x7d\x13\x34\xf6\x9c\xaf\xa4\x17\x14\x0d\x66\xda\x69\x70\x60\x7e\x8c\xfd\xc8\x4d\x36\x0a\xac\xcf\xe8\x10\xc7\x22\x3a\x73\x98\xbf\xaa\xae\x72\x08\x71\xbb\x3c\xcc\x06\x34\xa4\x70\xbe\xf6\x60\xe5\xf3\xcd\x7a\x5d\x47\x61\xbe\x3d\x34\x91\x55\xdb\x73\xa3\xa3\xb6\xe7\x86\x92\x68\x28\xe2\x30\xcf\xf6\x79\x14\x1f\x90\xf0\x8c\x5b\xa1\xd1\x67\xdb\xa2\x73\xee\x20\xd2\x46\xec\x39\xb5\xae\x10\xf6\x4c\x92\x86\xac\xca\xdf\x83\x67\x06\x13\xf9\xaf\xb5\x2a\xf3\x04\x69\x41\xf3\x7f\x54\x7a\x6b\x15\xa7\x71\x90\x84\x71\x10\xf6\xca\x8d\x88\xcc\x2e\x3c\x79\x80\x6a\xf9\xba\xd6\x56\x31\x73\xb8\x8d\xde\xdd\x39\x29\x54\xdf\x56\xcb\xe9\xb6\x42\x36\x06\x03\x93\xf6\x2d\xcb\xc8\x63\xa5\xe0\xb5\x44\x42\xc9\x77\x8f\x32\x91\x12\x32\x1a\xf7\x14\x14\x77\xc9\x46\x91\x45\xcf\x2c\x46\xe9\x92\xc2\x4b\xb7\xba\xbe\x78\x7f\x47\xab\xa9\xfe\xc2\x11\x82\x2c\x86\x51\x34\xa1\x1a\x4c\x2e\x2a\x8d\x22\xce\xdc\xe0\xb4\x3a\xa5\x7c\x99\xac\x48\x49\x57\x30\x45\xd1\x88\xc5\xdf\x15\x09\xd8\x3b\x2e\xf8\x5d\x0c\x93\x2c\xa0\x1e\x3c\xa9\x8a\xc3\x5a\xb0\x90\xb6\xf3\xc3\x54\xd6\xcd\xf1\xac\x50\x56\x76\x37\x65\xa8\x10\x32\xfc\x06\x99\x18\x26\xa3\x24\x7c\x0a\x8e\xea\x93\x0a\x19\x0d\x40\x0b\xba\x0f\x39\x6f\xe9\x14\x31\xbf\x2e\x70\x7a\xdd\x16\x9f\x2c\xe6\x26\x8c\xf7\x78\x5c\x16\x18\xd4\x98\x9e\x56\xd5\xcc\x4f\xe3\xd4\xc2\xd9\xf6\x39\x6d\x19\x97\x3b\xf2\x0c\x74\x67\x15\xd8\xf5\x02\xbb\x2b\x32\x40\xf5\x8e\x9a\x43\xed\xcc\x41\x33\x44\x51\xd0\xe7\x08\x2e\xa8\x31\x0f\x06\x26\x8a\x6c\xdc\x67\x3a\x5f\x04\x7f\x3b\xd6\x29\xde\xe3\x9b\x6e\xa3\x3e\x69\x79\x4a\x26\x4a\xf2\xfb\xac\x92\xfc\x6e\x06\xd2\xf5\x53\xd3\x2b\xa4\xdd\x7b\xc6\x91\x3f\x28\x0c\x58\x3d\x30\x3c\x70\xa0\x1d\x92\x98\x22\x41\x46\xe6\xe6\x24\xc1\xaf\x44\x60\x37\x15\x18\xbe\xc8\xc3\x28\xcc\xd7\x76\x55\x98\xc6\x94\xd0\xd5\x1d\x1e\x39\x97\x7f\xf6\x0e\x36\x32\xfd\xd2\x8e\x41\x9b\x1d\x19\x97\x1f\x3a\x39\xa4\x2c\x0d\x55\x21\x8b\xf7\x0e\xdf\x74\x14\x09\x7a\xf8\x16\x78\x68\x10\x43\xfc\x6f\x30\x16\x02\x08\xf2\xb6\xf2\x74\xc7\xd3\x7c\x1d\xa7\x79\xc7\xe2\x60\x98\x2f\xac\x56\x63\xb9\xab\x18\x21\x58\x26\xc3\x89\x2f\xb8\xad\xe0\xa3\xb7\x5d\x4b\xf2\x20\x1c\x66\x36\x5a\xaa\x6c\x91\x4b\xe4\xf6\x6c\xf1\xaf\x88\x5c\xe4\x3e\xe7\xd6\x44\xe0\xe6\x63\x92\xfb\xb1\xe2\x9d\xdc\x52\xd5\xd0\xc7\xba\xb5\x73\x02\x25\xcc\xbb\x4d\x5d\x40\xd9\x20\x1c\xe1\x38\xc2\x89\xc7\x4b\x9b\x6f\x3a\xbe\x3a\x17\x27\x01\x51\xbd\x6b\x46\x6f\x4e\x95\xf1\x4d\x4d\x38\xe0\xe0\xdc\xf6\x8e\xdc\x19\x2f\x21\xe1\x55\xe8\xe1\x85\xc1\xdb\x78\xaf\xe3\xeb\xa5\xbf\x18\x3f\xeb\x96\x8f\x3f\xe7\x5b\x15\xfa\x44\x5a\xa2\x7c\xd3\x84\x28\x88\x93\xa9\xd6\x37\xbe\x26\xb0\x89\x8e\x47\x69\xbd\x8b\x35\x82\x13\xf4\x3d\x9a\x63\x98\x90\x1d\xeb\xbe\xf8\x73\xbf\x82\x02\xb0\x6b\x4f\xab\x5e\xae\xe7\xc8\xd4\x62\xf1\x82\x70\x58\xe0\x79\xad\x85\x79\x27\xea\x4a\x5e\x95\xa4\x38\xcb\x2f\xc6\x76\xfa\xbc\xa3\x34\x9d\x99\x55\xc4\xf1\x9e\x97\xa3\xe1\x58\x08\x67\x0e\x7b\x4a\xd7\x23\xd3\x1a\x3b\x33\xc3\x81\x04\x13\x8f\xc3\x80\x6c\x8d\x15\xe7\x04\x18\x68\xb0\x0d\xf6\x92\x22\xb5\x43\xc1\x2f\x4c\x1f\x72\x42\x2a\x0d\xa5\x15\xe2\xbc\x1d\x86\x59\x16\x32\x3d\x61\x13\x45\xee\x93\xba\x5e\x4e\x8c\x51\x73\x72\x8a\x5f\x57\xad\xa4\xd7\x55\x66\x6e\x94\x86\x43\xce\x03\xf0\x46\x57\xdd\xd8\xa7\xb4\x5f\xbb\x8a\x78\x1c\xe3\x78\x5c\x01\xb1\xea\xd9\x82\x85\xe9\xf6\x52\x91\xe6\x03\x66\x90\xc5\xfc\x5e\x1d\xfb\xfe\xb2\x4f\x30\xda\x22\xc7\xb4\x7d\x99\xce\x1c\x6e\x87\xf1\x52\x54\xb0\xc6\x94\x4f\xb1\xbc\x4d\x3f\xcb\xd7\x4d\xda\x28\x99\x4d\xe9\x13\x8e\xce\xee\x9a\x4a\xa9\x5c\xab\x38\x73\x45\xdf\xee\xc6\xd6\x81\xa3\x72\x1a\x13\x85\x83\xff\xff\x50\x0c\x06\x97\x55\x80\x82\x9e\x7c\xe1\xea\xa7\x55\x52\x01\xe0\xf0\x57\x29\x0b\x17\x15\x21\x73\xa8\x23\x61\xaa\x89\x87\x6e\x39\xe3\x13\x24\x71\x90\xa4\x3d\x85\x92\xbb\xa2\x51\x72\x57\x54\x7a\x21\x5a\xce\x48\xb7\x97\x8e\xdd\x7f\xfc\x9b\x3a\x35\xb7\x31\xf6\xa4\x1e\x1c\x8a\x89\x4c\x5d\xcb\xb5\xd3\xee\x5a\x57\xe4\x15\xa7\xe8\x08\x77\x25\x33\xbf\x6c\xa7\xa8\x7c\xfd\xa0\xfb\xe5\x86\x7a\xed\xbc\x0b\xab\xd9\xf6\xb8\x86\x13\x2f\xf6\x57\x6f\xdf\x7e\xfe\xf9\xf6\xd0\xa4\xf9\x00\x49\x6b\x87\xce\x9a\xf3\x3a\xdb\xb5\xfa\xc1\xc2\x74\xbb\x17\x66\xa6\x0c\xf9\x5a\x1e\x55\x7b\x46\x91\xab\x9c\xa9\x11\xee\xbf\xf6\x5a\x3b\x89\xed\x04\x85\xab\x4e\xa1\xc4\x51\xfa\xdf\xa6\xd2\x0f\x12\xc0\x2d\x15\x3e\x98\xa1\x8d\xc1\xf0\x70\x64\x7a\x8b\x44\x22\xb6\x2e\x77\x3c\x53\xfd\x9a\x89\xf8\x55\x85\x7c\x4b\x91\x6a\x9e\x71\xf8\xf9\x38\xa1\x45\x8f\x0d\x8a\xf8\x0c\xc0\x4b\xbe\x56\x2e\x5f\xce\x85\x6b\x31\xdb\x1e\x80\x71\x46\x61\xcd\x97\xc2\x45\x9b\x02\x1f\x20\x9d\x25\x64\xf0\x1c\xbb\x9b\x6f\x39\x41\x59\x5a\xa8\xde\x1e\x57\x94\x70\x51\x44\x21\x2c\x5e\x1a\xcb\x0f\x6c\xa9\x9b\x58\xf1\x70\xe0\x8e\x36\x10\xe7\xbc\xda\xb6\x26\xcb\x57\x4d\xb9\x30\x7d\xc6\xae\xe3\x53\x71\x9b\xca\x3b\x7a\xbd\x78\x33\x37\x65\x2c\x35\xa1\xbc\xa3\xcb\x63\x95\x6a\xdb\xd1\xd5\x42\x20\x1a\x05\x11\x46\x11\xc0\x53\x58\xae\x8c\x95\x06\xf4\xf2\xe3\xb1\x7f\xfa\xb7\xc7\x0a\x37\x7e\x51\x59\xa7\xb4\x3f\x98\xf0\x07\x3c\x1a\x08\xa4\x01\x51\x25\x39\x2f\x37\x91\x31\x8e\xd2\x64\x05\xeb\x4b\xda\xb4\xcb\x4f\x4b\xff\xf6\x93\x0e\x3d\x91\x04\x91\x09\x87\xf4\x98\x42\x5c\xab\x70\xff\xc7\xc6\xaa\xfa\x8c\x07\x10\xe1\xfd\x06\xbd\xc4\x30\x5e\x49\x96\x2d\x50\x42\xb0\x38\xeb\x5a\x8a\x88\x43\x43\x1c\x40\x57\x54\xc5\x2b\x48\xe2\xd2\x55\x6e\x79\xe8\xf5\x71\x55\xc6\xd0\x60\xa7\x3c\x0d\x83\x65\xe0\x68\xb1\xae\xc0\xdc\xa0\x39\x0f\x84\x05\x7e\xfb\x4e\x25\x85\x92\x94\xb4\x6f\x5c\x02\x66\x9b\xfa\x87\xce\xb0\x05\x36\x1c\xe5\x19\xe2\x10\x2e\x70\xd3\x4f\x49\xb1\xdb\x83\x9c\x82\x24\x49\x7b\x61\x6c\x72\xf8\xa7\xd2\xc0\x43\xdf\xcc\x37\x8a\x21\xb7\x57\xd8\xdd\x2a\x28\xb9\xc7\x35\x5c\xd4\x08\xce\x29\x89\x2f\xec\x1e\x6e\x01\x57\xc7\xd7\x31\x8c\xa2\x4b\x2c\x96\xf3\x83\x13\x70\x7f\xad\xe1\x70\x76\xb6\xbd\x64\x56\x92\x94\x52\x10\x40\x88\xfc\x77\x63\x2d\x8f\x0c\x97\xc0\x31\x41\x95\x46\x17\xbb\xfa\xa2\x82\xa9\x01\xd1\xc0\x5d\xd7\x8e\x17\xdc\xc9\xa5\x5d\x50\x4a\xe3\x7d\x1b\x3b\x46\x92\x72\x92\xe0\x5c\xea\xd6\xaa\xb3\x95\x56\xc4\x70\x29\x67\x9c\x2c\x7e\x16\xc0\x2a\x69\x73\xa4\xe7\x41\xed\xe5\x7d\xdd\xa5\xd3\x51\x27\xfb\x35\x95\xab\x35\xab\x66\xed\x31\x1f\x66\xfe\xf9\x58\x91\xff\x82\x0b\xb5\x22\xa8\x22\xda\x1d\x9e\x14\x90\x3b\x25\x58\x2c\x0e\x63\x2b\xb5\x0a\x1f\xf1\xbe\x47\x84\x51\xfc\x55\x1d\x55\x1c\xdc\xac\x91\xb4\x1c\x38\x40\xb6\x7e\x34\xb2\xc6\x69\x9b\x62\x03\x3d\xc4\xce\xe0\x9b\xc6\x1e\xe2\xa1\x59\xc6\x0e\x86\x37\xc6\x31\x09\xdf\x34\x92\x3c\x90\x84\xe5\x76\x2e\x18\x07\xb6\xdb\xa8\x9d\x5e\xb4\x27\x8a\xb4\x8c\x13\xbf\xfa\x8a\xa0\xb2\x3b\x2a\xf5\x78\xb2\x5a\xfe\xb0\xd9\x6f\x28\x75\x5d\x26\xc1\x17\xf7\xba\x3c\x73\xa5\x67\xd7\xf7\x7e\xec\x47\x02\x0e\x55\xc8\x1b\x63\xa5\x54\xb7\xaf\xab\x71\x6c\x9e\x09\x53\xe3\xb5\x1e\x87\xfe\xb7\xd0\xe2\x95\xe7\xd8\x7e\x74\x06\xc1\x36\xdc\x44\xea\xc5\xd1\x66\xea\xd0\x6a\xc1\x53\x56\x95\x8b\x55\xe2\x46\x1d\x09\xdd\x1a\x57\xe4\x43\x91\x1b\x46\x5a\xe2\x16\xf2\x6c\x58\x3c\x8c\x86\x41\xbc\x7f\xae\xa3\x5b\x9e\x28\xf1\x88\xa0\x91\xab\xda\xd8\x67\x57\x2b\x23\xb7\x98\xa4\x7b\xb6\x25\xe8\x67\x3c\x57\xab\x2f\x9f\xe0\x20\xe3\x94\xcd\x58\x69\xa7\x6c\x61\x31\x22\xaf\x74\x4d\x4f\xd1\x55\x7e\x23\xfc\xec\xd1\x26\xdc\x53\x6c\x57\xb3\x91\x19\x79\x4c\x92\xa4\xd1\x55\xfb\xe0\x19\x97\x59\x31\xd1\x62\xf1\x46\x61\xd3\x37\x0a\xd1\xc6\xc4\xf2\xf9\x95\x0e\x77\x7f\x55\x5b\x4b\x65\x80\xdf\x4b\xcd\x2a\x63\xa4\xe0\x70\x9d\xc5\xfc\xf0\x8d\xe6\x0c\x4c\x86\x8b\x8c\xc8\x75\xb2\x96\x8a\x66\xa8\x49\x9e\x3f\xb5\xa3\x24\x45\x99\x02\xa9\x74\x96\x7b\xe1\x9b\x46\x31\xb6\xb0\x1f\x27\xa2\xe9\x07\x9e\x2a\xf0\x34\xc0\xa8\x5c\xa6\xcd\x21\x14\x35\x0d\x8e\x77\x1e\xe6\x26\xe6\x17\x42\x16\xe6\x13\x9d\x92\xf9\xc4\xf9\x48\x72\x5e\x4c\xa9\x90\xfa\xba\x56\x7f\xb8\xc4\x76\x1e\xbb\xf7\x3e\xec\xae\xeb\x62\x76\x75\xdb\x8f\x9b\xb6\x35\x47\x1d\x53\x9e\x92\xe6\x6a\x47\x71\xd6\x5e\x54\x34\x71\x40\xf4\xe0\xed\x7e\x8e\x70\x04\xc6\xac\xd5\x7d\x4e\x55\x0c\xdf\x28\xc2\xd4\x12\x67\x27\xed\x25\x67\xa5\x1d\xf3\xf0\x59\x45\x3a\xb4\x4c\x95\xc8\xd2\x0e\x55\x3a\x77\xa5\x29\xf7\x19\x25\x14\xc8\x5c\xc4\xe4\x4d\x38\xc6\x1a\x1f\xcb\xfe\xd1\xd8\xc7\xb2\x9f\xeb\xac\xcc\xe7\x2a\x6b\x1b\xa4\x49\xc6\x26\xcc\x11\x21\x1e\x98\x71\x44\x88\x2a\x52\xb6\x66\xb8\xbb\xfc\x25\xe4\xed\xae\xd2\x8e\x67\x5e\x3a\xe5\x2a\x9d\xc5\x66\x83\x73\xc8\x34\x14\xcc\x0f\x8c\xf5\xc3\x1f\x57\x98\xcf\x07\x2a\x97\x9a\x8d\xc2\x38\x59\x5a\x6a\x29\x05\xc2\x0f\x34\xa1\xf1\x07\x2e\x77\x91\xe5\xe1\xb0\x88\x0c\xd3\xd8\xc0\x12\x5e\xe9\xf8\x7a\xca\x15\x17\x17\xe5\x54\xa8\xe6\xe6\x5f\xe4\x88\xfe\xc7\x8e\xc7\xe8\x02\xe8\xca\x05\x8f\x86\x36\xc2\x76\x6a\x7b\xd6\x3a\xa0\x84\x68\xf4\xb6\x14\xf5\xab\x3c\xd3\xc0\x0c\xb3\x3c\x2d\xb8\xe3\x10\xd9\x86\x16\x2c\x32\xdf\xac\x6f\x4f\x33\x3f\xff\x7c\xdb\x64\xcb\xbc\xe8\x2b\xb5\x5b\x29\xd0\x6a\xd0\x4f\x92\x65\x91\x89\xe1\x49\xc3\x0a\x1e\x55\x10\xdb\xa3\xb5\x76\x0a\x27\x18\x9a\x44\xc9\xa4\xef\xd1\x9b\xa4\x04\xac\x20\x8e\xcb\xd7\x97\x1e\x77\xc5\xcc\x52\x57\x73\x9f\x9b\x83\x4e\x41\xb5\x58\xa7\x74\xda\xd4\x06\xcd\x4a\xdf\x31\x9f\x54\x62\x9a\x90\xde\xc5\xc6\x6b\x75\x95\x15\xfe\x54\x6b\x0b\x5e\xac\xd5\x75\x9e\x7f\xbe\xbd\x6c\x47\x39\xfa\x4f\xf0\x9c\xf7\xc6\x8a\xb5\x63\x27\x51\x25\x30\xf4\x79\x7b\x23\xd5\xc2\xf4\xa1\xf6\xcc\xe1\xbd\x5e\xf4\xf7\xc4\xd8\x47\xff\x97\x00\xb3\x61\x14\x63\xa7\xca\x2b\xee\xf5\x16\x3b\x0a\x56\x72\x0e\xbb\x11\x99\xe0\xbd\xeb\xde\x4b\x99\xea\xaa\x62\xf4\x07\x0d\x6d\x00\x2f\xb5\xed\x9b\x81\x57\xe9\x47\x22\x6f\x4b\xc1\xbb\x1e\x6a\xb1\x82\x6f\x8d\xb5\xb0\xe7\x8a\x8d\xb2\x7d\xe5\x5b\xc2\x6d\x3b\xaf\xb9\x84\x76\xac\x3b\x18\xe9\xf0\xb9\xae\x92\xb2\x46\xfe\x1b\x25\xa3\x9b\xf0\x9b\x64\x88\x2b\xc4\xf6\xe5\xd8\x60\x87\x4e\x41\x5d\x58\x7a\x7c\xc8\x9e\x49\xbb\x15\x3d\x34\x5e\xfb\xb2\x0a\x2e\xf3\x22\xcd\x23\xf0\xad\x36\xd0\x8f\x6f\x28\xac\x19\x11\x64\xee\xf5\xa4\x2e\xe8\x07\x54\x38\xfd\x19\x8e\x07\x6f\x90\x73\xa2\x00\x2c\x87\x78\x79\x5f\x60\xa3\x0e\xdb\xcb\x72\x3d\x58\x79\xcc\xc7\x84\xc9\xe3\xf6\x4e\xe1\x4f\x6b\x88\xd6\x16\x6d\x94\xac\x92\x8d\xc5\x0e\x86\x92\x1d\x5f\xab\x67\xce\x9d\xde\x87\x94\x9c\x15\xf9\xce\xa5\xc6\x86\xcb\x22\xce\x6c\x9e\x3b\x25\x48\xc9\x6e\xe9\xac\xd7\x7f\xfc\x88\x4d\x1a\x0c\x4c\x6a\x82\xdc\xfb\x0d\x8d\xc8\x45\x1f\xaf\x26\x6f\x01\x45\x29\xd0\x2d\x0f\x23\xd7\xc8\xad\xb4\xe8\xb3\xcf\x8f\x09\xff\xd5\x58\x3b\x57\xb4\x1b\x70\x66\x82\xe0\x0c\x81\xe4\x24\xb2\xcd\x38\xcc\x2e\x8f\x9f\x53\x72\x32\xd9\x1b\x45\x68\x73\x69\xab\x15\xda\x80\x4a\x51\x41\x29\x5d\xdc\x52\x27\x5b\x36\x08\x97\xf2\xdd\xbe\x9c\x3b\xd1\x55\x0a\x8c\xff\xa2\xca\x6c\xa5\xd4\xe9\x7f\xac\xe8\xc2\xef\x61\xa1\x60\x97\x31\x7f\x08\xdf\x8c\xf7\xab\x40\xa7\xc7\x19\x78\x98\x0b\x0e\xab\x55\xc6\x4d\xfa\xde\x6f\x6b\xe4\x68\x32\x1c\xda\x34\x08\x4d\x84\xb6\x16\x69\xa4\x6b\x39\xce\xd5\xba\x72\xc9\xec\x6c\xbb\x97\x82\x5b\x42\x75\x80\x30\xa7\x21\xdf\x34\x7a\x4a\x59\x6e\x96\x44\xb9\xd0\x91\x8b\x3a\x3b\xac\x69\xf6\x83\x17\xc3\x17\x97\x26\x7c\x36\x01\x3e\x2b\x32\x6f\x8c\x5f\x41\xfc\x75\xcc\xa5\x19\x82\x64\xd5\xa4\xbd\x68\xad\xda\x9d\xb3\x30\xed\x4a\x6b\xdb\x5f\x43\x56\x60\x1c\x0e\xb4\x2e\xa2\x4e\x50\x6d\x74\x9c\xd8\xf8\x37\xbe\xf6\x38\x6d\x3d\x31\x46\xe5\x76\x85\xa3\xf4\x53\x72\x94\xb6\x8e\x92\x4d\xc1\x54\xfe\xcb\x8e\x6a\x48\x63\x90\xa3\xa3\xf4\x7d\xc5\x7f\x12\x06\xc6\xb1\xe3\x2d\x54\xa8\x46\x5e\xf5\x8c\x13\xdf\xf8\x1a\xa7\x61\xbe\x47\xe3\x80\xa4\x10\xda\x79\xb0\xbf\xae\xd7\xde\xee\xe0\x5c\x3b\x48\x6d\x2f\xcc\x13\xf4\x6d\x71\x07\x0d\x7d\x5e\xba\x69\x3c\xd4\xb5\x97\xac\xc6\x39\xe7\xb3\x0f\xb1\x71\x67\xb2\x03\xbe\x69\x6a\xcb\x58\x4a\xad\x75\x6d\x19\x38\xeb\xdf\xa5\x09\xe5\x6b\xe5\x71\xe5\x03\x1b\xa6\xfb\xe9\x0f\xb1\x0f\x1e\xa3\xda\x04\x3c\xc1\xa9\x75\xef\x8c\xec\xe9\xaa\x03\xe1\x22\x62\x27\x58\x60\x4e\xf5\x57\xf8\x3f\x11\x52\x4b\xc1\x0d\x59\x4b\x4e\x38\x30\xa1\x3e\x0c\x26\x00\x43\xbf\xea\xa8\xac\xc8\x8e\x75\x8f\x2a\x3a\xa3\x80\x41\x23\xb3\x96\x14\x39\x0c\x20\x0b\x29\x8e\x55\xb0\x7b\xa9\x16\x46\xbf\xb2\x30\x4d\x5a\xc3\x2a\x25\x85\x76\x4f\x56\xd0\xa6\x79\x85\x0f\xfa\x40\x25\xa4\x7a\x61\x16\x14\x99\x10\x51\x61\xde\x8f\xa1\xb3\x99\x6f\x1c\x2d\x75\x11\x9b\x22\x1f\x24\x69\xf8\x96\x58\x58\xc1\x4d\x29\x0c\x95\xf2\x27\x2b\x3c\xcf\x8e\xaf\xc6\xf5\xad\x9c\x52\xb4\x6b\xc5\x68\xd1\x9a\x7c\x17\x0d\x33\x82\x97\x9b\x18\x66\xbe\x41\xb8\x29\x7c\x24\xb4\xaa\x85\x90\xc4\x3b\x93\x00\x25\xf1\xb5\xea\x3b\x21\x67\xdd\x84\x59\x4b\xb5\x63\x30\x87\xaf\x54\x6f\xbe\x50\xf7\x5c\xe6\x17\xe6\xc9\x6b\xc3\xf9\x77\x9f\xb6\x95\x22\x42\x9f\x77\x04\x5f\xde\x1f\xbc\xaf\x54\x0b\x33\x1b\xa4\x36\x9f\xf0\x88\xbc\x4d\xdd\x42\x06\x48\x0e\xb2\x32\xf7\x6a\x9e\x63\xe9\xb0\x24\x2b\x36\xcd\x92\xa8\x37\xe1\x61\xeb\x17\xb1\xd8\xf0\x0d\x97\x55\xe3\xcc\x9f\x68\xe0\xda\xc0\x48\x17\xae\x38\x66\x67\x55\xa4\x7d\xb6\x06\xf9\x99\x39\xcc\xcc\xf2\x65\x90\xc4\xc5\x1a\x58\x6b\x6e\xe4\xe1\x9b\x9a\x5b\x35\x73\xb8\x1d\x25\x71\xbf\xdc\xaf\x13\xea\x58\x03\xae\xca\xb9\xfa\x0e\x34\xb4\x59\x43\x79\xcc\xce\x52\x1a\x6b\xc2\xa7\x35\x7f\x5d\xc1\x82\xb7\x1c\x69\xed\x66\x2d\x48\x3e\x30\xd3\x5e\x4c\xad\xc9\x30\xc2\x70\xb4\x4e\x8e\x95\x6a\x37\xf5\x11\x6c\x5d\x56\xa9\xfd\x55\xd3\x33\x6b\x2c\x1b\x80\xc3\xf5\x3a\x2d\x18\x81\xe0\xaa\x90\xd0\x2d\xf9\x61\xd8\x0b\x92\x38\x0f\x63\xcb\x84\x14\x8e\x5c\xd2\xcd\xca\xdd\x5a\x47\x74\xb9\x93\x40\xed\x9b\x50\xf0\x03\xc3\xe4\x0a\xa6\x73\xbe\xe7\xdc\x2f\x97\xc1\xda\x62\x1a\xf6\x26\x54\xb2\x9d\xdb\xf4\x5d\x09\xd4\xe5\xa3\x3f\x6a\x80\xa1\xcf\xb7\x53\x3b\x8a\x58\xc6\xe8\x55\xaf\xea\xe7\xc1\x3a\xf5\xe6\x0e\x39\x78\xec\x88\x01\x6f\x08\x3d\x36\x60\xb7\xf8\xa6\x09\xc0\x3f\x4c\xb2\xbc\x45\x5b\x55\x62\x48\xda\xaa\x12\x8f\x36\x34\x95\x52\x97\xe4\x84\x4e\xc8\x80\xee\x0f\xc7\x14\xef\x45\x60\xbb\xee\x29\xf2\x69\x13\xe7\x61\x10\x8e\x4c\x6e\x7b\x53\x74\x5e\xb9\x5c\x86\x2b\xcf\xe0\x24\x91\x44\x6e\xe9\x49\xa2\x9c\x77\x93\xea\xbc\x70\xa0\x27\xba\x5e\x50\xb6\x74\x34\x92\x18\xcd\x2c\x0e\xad\xa3\xe4\x19\xbd\xef\x76\xe8\x77\xff\xae\xa2\x5b\x3d\x0e\x9b\x2d\x47\xe1\xb3\xdb\x29\xbf\xe6\xdb\x7f\x63\x9f\x3f\x49\xb6\x3a\x8a\x73\xf0\x1e\x1f\x0b\xae\x5d\x73\x4e\x58\x59\x9f\x58\x6f\x7d\xf5\x15\xde\x2a\x5c\x18\x72\x35\x81\x83\x73\x0e\x98\xa3\xd4\x8e\xd6\x31\x39\x78\x8c\x6f\x51\xfd\x5a\x2a\x07\x2d\x47\xd2\x54\x67\x6d\xfb\x1b\xed\x4c\x4e\x06\x0c\xe1\x45\xad\xb7\x79\x51\xa9\x4a\xce\xab\xc3\x72\xc5\xf6\x4d\x36\xa5\x7f\x9d\x8c\x20\x42\x94\xe3\x9d\x2a\xe1\xd3\xec\xac\xb8\x89\xaa\x7f\xf9\xd6\xa3\x18\x41\xd3\x9c\x76\x3d\x83\x7f\x3b\xbe\xf2\x73\x7c\xac\xc2\xa0\xf7\x9b\x0a\xd3\x45\x1c\x2e\x85\x72\x00\xe1\xb0\x06\x46\x8b\xaf\xd7\x1d\xe1\x64\x5a\x64\x39\xb2\x39\x22\xe4\x41\x8f\x2c\x0a\x1f\xde\xed\x20\xa1\xde\xa5\x02\x65\x67\x6e\x1f\xc4\xeb\xf9\x5e\x42\xf6\xee\x06\x36\x58\x4e\x96\x96\x5a\xde\x53\x60\x3a\x12\x21\x8f\x72\xc8\xda\x24\x2e\x70\x7a\x63\xc1\xe3\xa0\xe2\x6b\xdd\x59\x93\xa4\xd2\x85\xcc\x84\x6a\x34\xc8\x38\x1a\xfe\x0c\x8b\x02\x06\x11\xfd\x2e\x70\x2e\x8e\xd6\x46\xe6\xc8\xf4\x7c\x3b\x37\x23\x67\x6e\xa4\x42\xd8\x72\x12\x9b\x9b\x9d\x2f\x28\xc2\x73\x97\x17\xa3\x19\x7e\x89\xf3\x04\x7b\xd7\x4b\xa3\xab\x49\xcf\xc9\xe1\xfb\xd9\x33\x5d\x0f\x05\xff\x55\xb9\x38\xb7\x2e\x3f\xd2\x91\x4d\x87\x61\xcb\xb7\x22\x9c\xd7\xe5\xbb\xf3\xce\x1c\xdb\xf8\xf5\x24\x74\xd2\x77\xc0\xc6\x1c\xa7\x21\xe2\xeb\x4a\x4e\x39\x5b\xe2\x23\x06\x0b\xf6\xf4\x58\xe1\x71\xa4\x35\x10\xe7\xfe\x44\xad\xdc\xfd\x02\xd4\xa1\x95\xf6\x06\xcb\x22\x77\x14\x7a\xe6\xb8\x5a\xf6\x59\x9e\xa4\x76\xd2\xe7\x35\xce\x76\x14\x0c\xf5\xac\x4e\x61\x54\x0a\x72\x4f\x2a\x61\xc6\x95\xd0\x66\x93\xb4\x90\x11\x96\xdd\x53\x22\x31\x9f\x8d\x55\x57\x1a\x70\xe4\xd8\x5d\x1f\xd6\x35\x1c\xca\x83\x64\x45\xd8\xe1\xdd\x90\xc2\xe6\x89\x5c\xc4\x93\x6e\xc1\xe5\xb9\x4f\xb5\x21\xbf\x04\x21\x20\xa1\x2f\xf6\x65\xdf\x1b\x4a\xc6\x24\x7b\x31\x78\x51\xe7\xb1\x31\xed\x02\xa4\xdb\xee\x2d\x1c\x38\xd0\x4e\x6d\x90\xf4\xe3\xf0\x2d\xb3\xc8\x42\x4e\x5c\x86\xa4\xa7\x92\x92\x64\x43\x2a\xaf\x17\x66\xa3\xc2\x4d\x02\xb7\x55\x8e\x7d\x21\xf4\xb4\x32\xbe\x7f\xe7\x6f\xff\xed\x56\xeb\xc0\x8c\x6b\x05\x57\xac\x48\xdb\x38\x2c\xb2\x90\xcf\x15\x40\xc8\x4e\x60\x8f\xc3\xd6\x32\x3d\x04\x1c\x02\xdf\x76\xbe\x42\xcc\xab\xf4\x77\x42\x81\x5a\xbe\xb2\x70\xa3\x3a\xb6\xeb\x24\x0a\x03\x4b\x12\x72\xc8\xe9\x22\xdb\x03\xcb\xc6\x34\x99\x12\x75\x7b\x58\xf9\x15\x3c\x00\x6d\x95\xff\xfc\xaf\x68\x6c\xfb\x87\xba\x26\x40\x2e\xa9\x92\x03\xfa\x14\xa7\x3d\x4e\x5d\x38\xd4\xae\x97\xca\x33\x7d\x7c\x5e\xf3\xfa\x17\xa6\x09\x78\x4d\x4c\xf9\x0b\xfc\x6c\xc8\xb2\x33\xfd\x0d\xec\x29\x37\xb5\x8f\xbd\xfa\xf0\xf7\xbd\xca\x4a\xda\x17\x49\x3d\xfc\xca\x19\xed\x01\x9c\x51\x45\xc7\x6c\xc4\xf9\x47\xa7\xfb\xb0\x30\xdd\xd0\xd6\xfb\x7a\x12\xe5\x99\x6a\xd3\x84\xb4\xb5\x2f\x8c\x78\x6d\x89\xa4\xc7\x36\x52\xca\x7e\x1e\x73\x77\x56\xb1\x8e\x27\xb1\x54\xfa\x9c\x20\x9d\x43\x14\x6c\x28\x06\xf7\x2c\xb7\x2b\x36\xce\x92\xb8\x52\xfb\xb9\xa1\xd3\xef\x37\xc6\x9a\x08\x30\x0e\x93\x54\x4b\xf8\x00\x3a\x2c\x80\xee\xba\x89\x7d\xb5\x3d\x8a\x6c\x9c\xaf\x61\x09\x63\x3f\xe3\xf4\xe4\xeb\x5a\x78\xba\x30\xdd\x5e\x31\xfd\xc2\x62\xab\x6c\x91\x08\x40\x69\x3c\x1b\xca\x93\xd9\x28\x0a\xa5\xed\x5e\xdc\x61\x7a\x69\xbe\x51\x65\xea\x61\x91\x1b\x28\x42\xfa\x82\xe3\xe7\x58\x28\x7c\xa3\x28\x61\x40\x02\xb2\x36\xe1\xf1\xe9\x3f\x47\x4f\x92\x78\x5f\xde\x8a\x5d\xa9\x97\xba\x5e\x3e\xd4\x8e\xc8\xcf\x56\x04\xb6\xd7\xc0\x06\x25\x5d\x29\x7e\xb1\xfe\x4c\x79\xb4\x8b\x45\x14\xd9\x5c\x71\xd6\xa0\x3e\x2b\x4e\xa6\x3f\x7d\x17\x4d\x9a\x86\x36\xa5\x43\x50\x00\x58\x17\x61\x73\x1d\x55\xdf\xc2\xb4\xd3\x19\xd7\xb8\xc0\x67\xaa\xa2\x60\xe5\x90\xec\xf2\x65\x92\x2d\xd5\x48\xc7\x6d\xae\x02\x5d\xa1\x71\xc3\xca\x05\xbb\x11\x36\xc5\x8e\xae\xc2\xf4\x5c\x52\xd1\xdc\xaa\x49\x87\xd1\x1a\xb2\xc7\xdc\xcf\x3f\xd6\xed\x27\x2a\x15\x74\x4e\xb3\x8e\x96\xfe\xff\xbf\x3f\x7f\x53\x93\x5f\x1f\xdb\xe5\x24\xc9\xa0\xc3\xe0\xb8\x7f\x34\x85\xbb\x52\x6f\xcf\x8b\x5e\x68\xb3\x3d\x58\xfc\x5c\x31\x53\x58\x18\x4e\xd4\xe2\xc4\xbb\x4a\x2e\x26\x1a\xbf\xff\x69\x47\x95\xef\xce\x90\xe7\xcc\xff\x81\x9f\x72\xc5\xb7\x23\xd3\x12\xd8\xd5\x60\x5b\x33\x87\xdb\xa3\xff\xec\x6f\xd1\x63\x0a\x0a\xb2\x1c\x20\x51\x7f\x92\x53\xca\x04\x79\xb8\x62\x72\xae\x53\x0a\x83\x42\xf9\x97\xae\xb1\xc8\xf9\x60\xd7\xc6\x5f\xf0\x78\x87\x7e\x3f\x05\x99\x5e\xb4\x36\xa5\xba\xef\xf7\x83\x21\x43\x5e\x96\x6a\x0a\x68\x40\x69\xad\xfb\xf3\x88\x3d\x3f\x04\xe2\xd7\xd4\xb2\x61\x7e\x90\x94\xdb\x0f\xe1\xc4\xdd\x53\xfd\x32\xf7\x1a\x15\xa3\x83\x41\x91\xc6\x95\x8e\xf8\x8e\xea\x88\x57\x20\x11\x53\x7e\x7d\x80\xbd\xea\xe1\x51\xa7\x94\xe2\xd4\xa9\x5a\x26\xfb\xf0\xcb\xed\x91\x4d\xb3\x30\x83\x4e\xc4\x11\xc1\x60\xdf\xa0\x4f\xf1\xb5\x4a\xb3\x44\x49\x9e\xdb\x74\x4d\xab\xfa\x7d\xa0\x6a\x71\x1f\x34\x54\x7b\xe7\xdb\x23\x45\xdb\xe1\xfa\xf1\xca\xb9\x16\x9e\xf3\xba\x96\x4e\x56\x04\x83\xa9\xca\x2e\xf2\x1d\xe0\x3b\xbb\x64\x51\x98\xd4\x47\x15\xf5\xae\x90\x75\x41\xdb\xec\x55\xc7\x64\x63\xd2\x30\x1f\x0c\x2d\x75\x18\xb9\x8e\xa1\x77\xe9\xa1\xf9\xba\xf1\xa1\x83\xc8\x64\xdc\x43\xa8\xa1\x65\x40\x1a\x7c\xa4\x01\x9c\x7f\xaf\x76\x50\xce\xce\xb6\x87\x49\x6c\x59\x36\xd9\x51\xbd\x3a\x09\xfb\xa3\x1d\xc5\xa9\xf3\x51\x2d\x57\x71\xe0\x40\xbb\x67\xd2\x65\x0a\xa1\xb4\x04\x0d\x22\x18\x34\x47\xc1\x8d\xfb\x43\x25\xcc\xb0\x62\x82\x20\x8c\xed\x84\x62\xaf\x05\xe1\x02\xdc\xfb\x3b\x8a\x7b\xf9\x8c\xdb\x22\x59\x02\x0c\x12\x65\x36\xf0\x9e\x20\x69\x56\x58\x89\x97\xb6\x2e\x8c\x1f\x73\x3f\xd3\x79\x86\xc6\x04\x89\xbe\x7b\x38\xf1\xf1\x22\xff\x27\xbd\x21\xfe\xe3\x06\xd8\xfd\x30\x79\xdf\xc7\x56\x71\x33\xe9\x40\xd1\x3b\x48\x38\x14\xa3\x38\xd5\xc5\x02\x71\x42\x60\x0b\xf2\x23\x77\xc6\xad\xc3\x2f\xb3\x5b\xc4\xb6\x5a\x08\x09\xcb\xf9\x86\xc3\xb3\xa5\xd9\xb9\x26\xd6\x55\x5e\x7e\x6f\xd7\x2f\x1d\xee\x3c\x12\xb6\x60\x5a\x60\xe8\x6e\x7b\x8f\x6c\x3d\x32\x80\xd7\x55\x87\xe3\xd0\x04\x61\x9c\x27\xd9\x00\x66\x55\xb4\x41\x55\xc6\x0b\x0d\x02\xdc\xe2\x5e\x61\x2b\xec\x45\x4c\x3f\x23\xf9\x48\xf2\x9b\x44\xbd\xce\xa7\x83\x6e\x12\xce\x14\x81\xd7\xa7\x28\x29\x38\x17\xc1\x39\x36\x57\x15\x5d\xd1\xf7\xc7\x4a\x39\xf8\x7c\xe7\x8b\x4a\xad\x82\x80\xdf\xb1\xf1\x12\xce\xce\xd4\x79\xb3\x57\x85\x8a\x2d\xda\x49\x75\x62\x5c\xe4\x04\x82\xf4\x9b\xd0\xf3\xbb\x96\xd0\x72\x88\xa5\x2b\xc5\x35\x6f\xfc\xf5\x68\xd2\x65\xdb\x9f\x7c\x46\x85\xc7\xb7\xf0\x01\x0c\xea\x4e\xa6\xc0\x67\xb7\x51\x51\xa4\x2e\x45\x09\x91\x52\x21\x30\x95\x34\x81\x0a\xc1\x78\xd2\x1d\x9b\xce\x41\x09\xe2\xae\x3a\x70\x4d\xb2\x18\x85\x7d\xc3\x4c\xb3\xea\xf4\xd2\xfd\x3c\xdc\x49\x8f\x2d\xb8\xa5\x52\x3f\xa3\x41\x18\x25\x59\x32\x1a\x84\xc1\x36\x9d\xc0\xaf\xbe\xe2\x1a\x40\x9b\x6a\x01\x85\xd2\x89\xc4\xd7\x5e\x50\xbb\xfc\x42\x93\x03\xdd\x33\xab\x82\x7c\x41\x6e\x95\x57\x21\xdf\x34\x12\x38\x98\x5e\x2f\x0c\x5c\x30\x23\x42\xce\x2d\x47\x29\xbc\xd1\xd0\x81\x3f\x4a\x93\x95\xb0\x67\x7b\x13\x1e\x2e\xf8\x87\xba\x7e\xc0\x45\x68\xd8\x89\xad\xc6\x52\x4a\x32\x5c\xf4\x51\x33\xf2\x8f\x08\xa1\xf8\xba\x96\x4a\x5e\x98\x6e\x27\x45\x9e\xe5\x69\x38\x62\xcb\x29\xca\x9e\x9e\xd4\xef\x2c\x32\x4c\x5c\xb9\x56\x0c\x7f\x76\x68\xd3\x3e\x75\xee\x79\x1c\xe9\x99\x8e\xc2\x91\x9e\xa9\x25\xfb\xe6\x49\xf8\x81\xe1\xb8\x4a\x35\xc2\xf7\xc6\x3f\xab\x04\x34\x87\x23\x13\xdb\x34\xd4\xea\x89\x97\x08\x02\x53\x77\xf0\x52\x1b\x98\x11\x74\x43\x0f\xce\x79\xaa\x3c\x07\xe6\x3f\xa3\x5c\xcf\x70\x38\x22\x21\x52\x27\xc4\x03\xfb\xc9\xd7\xba\xde\xc4\xba\x6f\x13\x64\x32\x51\xc1\xf8\x40\x41\xeb\xfe\x55\x47\x99\x87\x5f\xd7\xce\xa4\x99\xc3\xed\x61\x91\xd9\x62\x48\xeb\x1b\x80\x8a\x07\x1d\x15\xde\x5e\xac\xb0\x4b\xe8\xe2\x4e\x1e\xca\xe1\x2e\xd2\xad\x2d\xc7\x49\x78\x42\x1d\xee\xaf\x9b\x60\x99\xd7\xb3\x43\x69\x28\xe5\xc2\x8b\x2a\x93\x94\x87\x43\x9b\x3d\x4e\x06\x06\xe5\x24\x6a\x58\xdf\xba\x0b\xe7\x0e\x29\xf2\xdb\x54\x30\x14\xd5\x50\x55\x4f\xba\xa6\xd4\xe7\x2f\xd2\xb0\xc2\xf6\x3d\xd0\x18\x93\x33\xc4\x16\xa5\xf0\xa3\x52\x01\xda\x89\x1e\x3a\x11\x55\x2a\x67\x10\xe7\xcf\x31\xf2\x19\x61\x14\xbf\xd7\xc0\x65\x41\x67\x7a\x38\x34\x71\xce\x39\x30\x1c\x2f\xd7\xc6\x9a\xa8\xe1\xdb\x08\x83\xf8\xbf\x34\x4d\xce\xb7\xc7\xfb\x7c\x12\x4f\xba\x41\x5c\xa9\xd9\x4b\x7e\x1f\x53\x7c\x21\x1f\x77\x7c\x15\xfc\x14\xed\x02\x07\x54\xf3\x90\xed\x13\xba\x81\xa8\x8e\x97\x3b\x32\xdd\xce\x6c\x40\x8b\xd1\x69\x04\x1e\xed\xf8\x93\xef\xa8\x4f\x03\xda\x28\x4a\x94\x93\xc3\xb9\x6e\xbe\xa9\xf9\x7e\x73\xb4\xc7\x47\x49\x16\xe6\x12\x93\x57\xd4\xa3\x44\x5b\xd0\xd7\xef\x98\xe2\x71\x42\x21\x45\xa1\x90\x86\x67\x47\x79\x11\x1e\xd2\xb9\xce\xf6\x4a\x85\xa4\xec\xcc\xd0\xa6\x61\x60\x62\x22\xf3\x72\x0c\x73\x0b\x7e\x07\xfb\x56\xf4\x67\xd1\xaf\x8e\x3f\xfa\xad\xae\xa0\xaf\x96\xc3\x60\x79\xd1\x04\xcb\x1c\xa7\x4b\x38\xac\x42\x63\x15\xa7\x0f\x8a\x32\xe2\x63\x52\x29\xa1\x63\xfd\x40\xb1\x72\x7e\xa0\x80\x57\x36\xcb\xc3\x21\x29\x40\xf8\xde\x9a\x87\x4a\x34\xfc\x43\xed\x65\x9c\x1a\x57\x2a\xc7\xdb\x31\xca\x0e\x92\x65\x4d\x1a\x71\x95\xd9\x65\xd9\xcb\x6f\xe1\x1b\x05\x9c\xe8\xa7\x49\x31\x7a\x4a\xc9\x48\x21\x37\x8f\x20\x0a\x08\x4b\x8c\xf4\x43\x14\x4d\x9d\x6a\x94\x07\xc6\x8d\x55\x6e\x86\x7b\x0c\x51\xa4\xf8\x5f\x90\x85\x17\x63\xa6\xde\xe3\x23\x42\xf8\x09\xdb\x8c\xa6\x57\xfe\xb6\x46\xdb\xa0\x1b\x1d\x89\x90\xbd\xeb\x8a\x8e\x67\x77\x57\xb9\xb9\xd8\x84\xd2\xed\xda\x00\x37\x8d\x13\x52\x99\xa7\x8f\x88\x0c\xa1\x6f\x59\xf9\x07\xf5\xfe\x87\x99\x72\x58\x02\x0a\x3a\x1e\x45\x71\xd1\x80\xd6\x20\x84\xaa\x3b\x9c\x61\x2e\x91\xfb\xe7\x6b\x87\x1a\x1c\x65\x6b\x01\x9d\xfc\xe5\x1b\xe9\xfe\x46\x61\xd0\xae\x47\x27\x26\xc8\x59\x19\x09\x60\xf9\x1b\x9a\x04\x1a\x35\x49\xcc\xdf\xc7\xee\x57\x4c\x9e\x17\x71\x79\x1c\xbb\xda\xc5\x03\x9a\x4f\x81\xe7\x28\x4e\x9e\xcb\x8d\x5c\xe5\xb2\x34\x11\x09\x32\x25\x03\x15\x65\x84\x9e\x61\xfb\xfe\x3e\x32\xfd\x6a\x3b\x8c\x83\xd4\x1a\x27\xa8\x00\x4b\xf6\xae\x02\xfd\xbf\x5b\x3b\x55\x5f\x7b\xad\xbd\x08\xdd\x7c\x9f\xcd\xc7\x82\x95\xd4\xfe\xf6\x95\x3e\x3b\x5b\xba\x1b\xb9\xcd\x72\xe3\x5b\x4c\xa5\xdc\xa2\x5a\xf5\x37\x9b\x20\x5a\xe5\xee\x58\x23\xd3\x86\x6a\xc3\x05\xd5\xcd\xdd\x68\xb3\xb2\x22\x08\xac\xf5\x8e\x97\xab\xcd\xf9\x3a\x9d\xea\xf5\x59\x4d\xe2\xc7\x94\x4f\xf7\x8b\xb1\x37\x51\x13\x94\x62\x05\xc6\xfd\xe6\x58\x71\x6f\x4d\x61\x75\x63\x9a\x1e\x2a\xa4\x3f\x30\x74\x62\xa8\x69\x9f\x82\x0e\xe3\xaf\x02\x14\x88\x26\x96\xfd\x5d\x8d\x92\xf3\xd0\x00\x30\x43\x32\x3a\x1b\x2e\xd9\xd1\x8e\x2f\x04\x1f\x55\x59\xcd\x95\x72\x34\x5b\xde\x37\x40\x8c\xc1\xd7\xdb\xa1\x8f\xe5\xea\x78\x65\x1e\x89\x0a\x19\x37\xcc\x01\xb6\x21\x97\x13\x19\x55\xa4\x57\x1a\xc3\xf1\xf8\xa6\xa3\x19\x45\xb3\x22\xb5\x13\xde\xc5\x04\x90\x14\xa5\xc0\xbb\x58\x0d\x42\x25\xf4\x28\xbb\xb7\x6a\xd3\x18\x8c\x03\x87\x9a\xb9\xfc\x35\x60\x2c\x09\x96\x49\x05\x06\xc6\xf4\xd3\xb1\xd7\xe9\xfc\xb4\xa3\x78\x0c\x82\x41\x38\x5c\xb4\x29\xcb\x47\xa2\xbc\x78\x73\xec\x81\x5b\x37\x6b\x2e\xf7\xc1\xb9\xf6\x5a\x52\xe4\x03\x2d\xa3\xff\xa1\xd6\xb4\xea\xf8\xe5\x76\xd2\xd7\x37\x8a\xb4\x1f\x19\x2e\x84\xc0\xca\x82\xc3\x8d\xaf\x6b\xe8\xde\xdf\x69\x87\x2b\xd4\xcb\xe7\xca\xbb\x5c\x8b\x12\x08\xd4\x93\x0a\xdc\x6b\x7b\x61\xfe\x84\xef\xb1\xfc\x04\x7f\xc9\xaa\x44\x9a\xd3\x97\x39\x8e\x71\x80\xff\x80\xdc\x29\x14\xd8\x7f\xda\xf1\x92\xcb\xe7\x11\x83\x8b\xbe\x6b\xf9\xc4\xb0\x08\x7f\x46\x84\xc6\x4e\x95\xef\x88\x70\xd6\xdd\xe8\xe8\x6e\x1c\x78\x22\x92\xe2\xc0\xba\x71\xd4\xf4\xce\x40\x3d\x70\x86\x8c\x5a\x91\x98\xad\x05\xa7\xed\x6d\x75\xf2\xde\x56\x19\xfc\x9e\x35\x2c\xf0\xcf\x2d\x02\x63\x0f\x9f\xd9\xdf\xf5\x20\xb8\x07\x35\x9b\x5f\xc6\x56\xe0\x9e\x6c\xa9\x56\xa3\x4b\x55\x86\x76\x49\xd9\x0f\xcd\xeb\x49\xca\x07\x0a\xbc\xdf\x87\xaa\xf1\xf7\xa1\xb2\x05\xc3\xd0\x4c\x7a\xc0\xda\x55\x7c\x9d\x2e\x44\x01\x55\xb0\x87\x66\x1a\x87\xde\x65\x05\x8c\x4f\x62\xcb\x61\x0d\x7a\x54\x4e\x83\xc3\x94\x4b\xd4\x63\x4f\x75\x71\xbd\x96\xd1\xa1\x26\x22\x93\x53\xbe\x18\x89\xbb\x1b\x8a\xb6\x6f\x27\xea\x3b\xac\x00\xd8\x51\xac\x90\x67\x95\xd2\x03\xda\xf0\x44\x4d\xfd\xb9\x8a\x9a\x47\x2f\x89\x22\x93\x66\x53\xa5\x33\x2c\x9a\x7c\x7e\x5d\xc3\x5b\x44\xd4\xd6\xea\xaa\x02\x05\x37\xe0\x4b\x82\xaa\xe1\xa9\xed\x8a\x8d\x49\xc6\x0a\x01\x37\x0e\x46\x0c\xd9\x51\xad\x0d\xb6\xa9\x38\x9a\x1e\xeb\x6a\x02\x5f\x57\x5a\x49\x6d\x2f\x89\xed\x44\xeb\x1b\x5f\xf3\x1d\x62\x0e\x70\x7b\x87\x22\x31\x78\x44\x67\x55\xf0\xb2\x94\xa4\x76\xc5\xa6\xbb\x7c\xf6\xe2\x9e\x4a\x32\xdf\x82\xfd\xc2\x74\x1c\xc7\xf3\x38\xf0\xe4\xc2\xb4\xab\x75\x2a\xc7\xe1\x8c\x0a\xf3\xa2\x62\x91\x3c\xd1\x9c\x82\x64\x40\x42\x3e\xd2\x64\xc7\x2a\xab\xfc\x07\xde\xcb\x0e\xd3\x1e\x2f\x37\xac\x6b\x18\x71\xbe\x56\x6c\x34\x3d\x9b\x91\x8e\xb8\x8d\xd6\x50\x6e\x90\x93\x4a\x01\x86\xd9\x02\x8b\x14\x6a\xf9\x1c\x72\x86\x79\x74\x72\xcf\xf6\x13\x60\xa5\x50\x36\x64\x9a\x14\xbe\x69\xca\x32\xe4\x83\xd4\x72\xa3\x3e\xf6\xd8\x29\x1a\x5f\xbe\x56\xbc\x1e\x79\x6a\xc2\xa8\xb4\xd2\xe5\xeb\x48\x2f\x78\xf9\x3a\x7c\xdd\x94\xda\x5c\x09\xfb\x09\x7f\x42\x03\x86\x24\xa4\xf6\x89\x9d\x2c\x48\xf2\x3c\xcc\x06\x93\x4a\x68\xe8\xb8\x16\x7f\x3f\xd5\x51\x10\xf9\xe3\xf4\x2d\xa2\x08\xf3\xa4\x2e\xd9\x2c\x32\x11\x3f\xb2\x3a\xd7\xc6\xaa\x64\x78\x4d\xc5\xaf\x44\x5e\x2a\x3d\x25\x58\x07\x97\x54\xe7\xe7\xa5\x1a\xc3\xc4\x81\x99\x76\x31\x6a\xf9\x8e\x36\x70\xa9\x0a\x7d\x6a\x13\xb4\x7f\xd1\xc6\xd6\xe4\x03\x5a\x30\x98\xb4\xf3\x94\xa9\x84\x49\xf9\x44\x69\x02\x5f\x6f\x48\x8f\x2c\xb4\xed\x90\x30\x73\x40\x8a\x08\x56\x4f\xe1\x81\x1d\x66\x61\x60\xd2\x20\x29\x52\x84\xed\x0c\xe5\xc4\xb4\x0b\xae\xd3\x55\x39\x38\x9e\xda\x53\x89\xa1\x0e\xce\x55\x5a\x59\xb7\x2e\xeb\x35\x73\xa7\xa3\x33\x26\x2e\x6d\xd0\xff\x0d\xb2\xca\x38\x0b\x76\xad\xeb\xf8\xec\x09\x2d\xfa\xb0\xcc\xe8\x46\xe4\x3f\xb7\x3a\x8a\x3b\x79\xcb\x6d\xf7\xd8\xda\x9e\xed\x4d\xa9\xae\x58\xc6\xaf\x22\x1a\x7e\x96\x1c\x0a\xe0\x0a\x7e\xa9\xd1\xc2\x3f\x19\xfb\x30\x63\x7f\x8d\xa1\xed\x05\x92\xc0\xce\x07\x2c\x4a\xb0\x30\xed\x72\x9a\xba\xac\xa3\x5a\xa0\x8b\x28\x2f\x52\xbb\xab\xf5\xd5\x57\x04\x36\x8c\x64\x22\xc2\x8d\xf3\xaa\xfd\x74\x93\x06\x8d\xff\xbd\xc2\x8d\xe0\xd3\xda\xf5\xcd\x76\xf8\x65\x70\x6c\x4e\x78\xb4\xd2\x56\xa7\xd6\x7e\x27\x41\x8b\x67\x44\x61\x87\x99\xab\x41\xf3\x3e\xfb\xe0\xf5\xfe\xbf\xed\xf8\x71\x22\xcb\x50\x42\x4c\xe9\x0d\x9c\xf8\xce\x27\xfd\xea\x2b\x1c\xfd\xb5\xba\x4a\xbf\xa2\xb4\x3c\xa0\xd4\x10\x31\xfe\x6a\xb2\xc8\x81\xfa\xab\xf6\x36\xcb\xc2\x32\x3c\x9b\x9f\x39\xcc\xa9\x94\xab\x8a\x0c\xe4\x6a\x83\x66\xe2\x42\x7b\x58\xc4\x21\x3f\x20\x22\xca\x1b\x15\x85\x3d\x5f\x4e\xf8\xa4\xa9\xd3\x28\x1b\x98\x00\xe4\x23\xf0\x67\x3e\xc6\x90\xf1\x4d\x13\x5d\xd7\x20\xc9\x72\x12\xc8\x64\xc0\xe6\xd8\x17\x02\x1b\x83\x93\xa1\x89\x6d\xb1\x62\x7d\x38\xa8\xe1\x35\x82\xbb\x69\xc0\xc3\xb4\xc3\xa1\xe9\x4b\x0a\x74\x86\x41\x63\x6c\xbe\xf9\xa6\x49\xf0\x73\x29\x8c\xc2\x51\x18\x27\x48\x22\x08\x1b\x97\x2a\x18\x5d\x1f\x6b\x2a\x11\x0e\x9f\x65\xed\xfa\xca\x4c\x14\x3a\xd5\x50\xe4\xc1\x6f\xd2\x41\xc3\xd7\x0a\x3a\x92\xe6\x62\xc1\x1b\x89\x32\x84\x47\xe2\x75\x23\x6e\x12\x9a\xc3\x80\x44\xe1\xeb\xf1\x76\xdb\x78\x70\xae\xcd\xcc\x42\x2e\x07\xe7\x71\x31\x1b\xb5\xa0\x98\x84\x19\xde\x6c\xe9\x9e\xab\x0a\x37\x92\xe2\xa4\x25\xe2\xff\x30\x49\xc9\xb4\xb1\xe4\x05\x9c\x1e\xd1\xbf\xf0\xc2\x4b\xe6\x4d\x83\xc0\x5c\xba\xf1\x14\x92\xe6\x9c\x2a\x7e\xbd\x51\x84\xc1\x72\x39\x0a\xe5\xc6\x68\x12\xee\xac\x08\xf5\x26\xac\xf1\x08\x80\xd2\x29\xa5\x02\x74\x4a\x95\x7e\x82\x24\x86\x5a\x2c\x42\x7d\xb8\x67\xac\xb4\x85\x34\x0a\xa4\x45\xe1\xf4\xfc\x48\x1d\x59\xb9\x89\x7b\x76\xc8\x81\x30\x1a\x9c\xae\x74\x14\x43\xef\x95\xb1\xeb\xb1\x58\x98\xff\x12\x99\x4f\x6c\xe6\x1d\xc4\x44\xe4\xa0\x24\xe5\x2f\x21\x46\xb8\x89\xb6\x69\x40\xbf\xdf\x51\x25\xb4\x13\x70\x42\x25\x43\xeb\x9f\xe7\x4a\xc7\xf3\x15\x3d\xc4\xb0\xc1\xf3\xbc\xd6\xd1\xdd\x55\xdf\x45\x30\x80\x7c\xcf\x05\x98\x1f\x60\x15\xf6\x21\x0a\x86\x5f\xf3\x03\x3a\xe5\x00\x1a\xdc\x00\x22\x03\xcb\xeb\x04\x35\x6a\x2b\x15\x0e\xd9\x1a\x97\xc7\x3b\xbf\xec\x28\x1c\x55\xab\xd8\xe7\x74\xf6\x60\xd5\x9d\x53\x80\xfa\x3b\xa8\x18\xf2\xcf\x21\x59\x25\xcd\xdb\x4d\x6c\x85\xc5\x48\x26\x06\xdf\x85\x02\x1e\x5c\x59\xce\xdb\xc2\x7e\x6f\x8c\xbf\xa0\x3c\xa9\x2c\x48\xc3\x11\x13\x29\x78\xdd\xf5\x8e\x8f\xf3\xce\x55\xba\xa9\xb3\x3c\x89\x99\x8a\x9c\x79\xf3\x15\x5d\xf0\x09\xa5\x9c\x72\x62\x5c\x21\xd7\x6f\xb2\x26\xd9\x28\x0d\xe3\xe5\xc8\xb6\x54\x83\x23\xc3\xfb\xf9\x06\xbb\x8a\xbd\x65\x56\xb0\xa0\x8e\xa3\x23\xd2\x42\xbb\xa9\xf4\xaa\xeb\x40\xf5\x72\x5c\x0c\x18\x58\x9c\x34\xca\x71\x5a\x07\xe2\x22\xd7\x9e\xeb\xe5\x43\xed\x9e\x59\xed\x45\xdb\xc4\xb4\x40\x14\x22\xf0\x48\xb5\x77\x4d\x5e\xa4\x3d\xb3\x46\x91\x0c\x5e\xb6\x72\x56\xaa\xda\x31\x61\x89\x67\xb6\xee\x2b\xd2\xdb\x0f\xe0\xb9\xa1\xb3\xdc\x67\xe0\xfa\x49\x96\xc5\x66\x11\xfe\x2a\xa3\x2e\xc9\x5f\x15\x04\xa6\x2f\xe3\xac\x14\x51\x6c\x53\x21\xdf\xe1\xf4\x1b\x08\x8b\xf8\x5a\x11\xf1\xb8\x0c\xb1\x20\xfb\x5a\x4a\x7d\xf8\x09\x95\xf4\x1d\xa5\x56\x8f\xd8\x58\x11\x11\x1c\xd7\x86\x6b\x14\xa6\xd2\xd8\xf9\x2a\x1f\xa4\xf7\x79\x37\x55\x88\x4f\xb0\x6e\xcf\x21\x76\x64\xa3\x33\xb0\x4f\x96\x4f\x8c\x64\x2c\xb8\x18\x9c\xdf\xf1\x75\x11\x71\x05\x91\x12\x2f\xa9\xa7\xd7\x3d\x79\xc3\x39\xe4\x75\x91\xb1\x3e\x83\x45\x83\xd3\xfb\xb1\xf5\xd6\xec\x6c\xe9\xde\xcd\xbf\xcc\x48\xc0\x6f\x7d\xbf\xe3\x83\xb1\xbb\xd8\xd2\xb0\x3b\x4f\x74\x55\x1d\xe5\x06\x6d\x18\x6c\xbe\x07\x63\xaf\x3d\xfb\x07\xcf\x70\x25\x5e\x50\xa3\x8a\xd4\x66\x94\x64\x4c\x98\x85\x4c\xd9\xd5\x8e\xc2\xec\xd4\x9d\x83\xb9\xb9\x76\x94\xac\x58\x6e\x50\x73\xa9\xf7\x85\x69\x97\x7a\x97\xc9\x5a\x4a\xd2\x21\xbb\x10\xfc\x74\x1d\xdf\x1b\xa2\x09\x8f\x4e\x28\x1f\xaa\x67\x47\x84\xd3\xe1\x36\xec\x26\xd1\xa9\x06\x4e\x3b\x13\x04\x36\xcb\x12\x74\x7c\x3e\x8a\xb2\xa6\x81\x85\xe1\xcb\xed\x45\x72\x54\x16\x24\xbd\xfd\x43\xd5\x5e\xf1\x43\x45\x5c\xd3\xb3\x2b\x36\x4a\x46\xb6\x8c\xc7\x3d\xf7\x3b\xb9\x9d\x5b\x17\xc6\xad\xbf\x7b\xc8\x23\xdc\x9d\xb5\x26\xbc\xda\xd6\x85\xce\x7e\xf7\x2d\x45\xf6\x66\x95\xf7\xc6\xbb\x20\xe7\x15\xaf\x5d\xe9\xe0\xb6\x2a\x9b\x6e\xce\xe9\x55\x9e\xec\x54\xf8\x68\x57\x00\xec\x12\xde\x22\x95\x14\xdc\x70\x8d\xed\x49\x10\x14\x23\x13\x07\xc8\x7c\x89\x31\x2e\x87\x49\xce\x81\x67\xb5\xb4\x69\x9e\xa4\x21\x09\x5b\x95\x07\x82\x93\x1d\xf4\x29\x92\xf7\xd1\xad\xc1\xff\x43\x0b\x4e\xf8\x3d\x1a\xc8\x0c\x49\xdd\xba\xa5\xa2\x21\xfa\x80\x44\x46\x8a\x33\x3d\x5b\xde\x53\xa1\x76\x52\x1d\x16\x3f\x51\x94\x3e\xf8\x3c\x92\x61\x2c\xef\xe7\x68\x8d\x8f\x4c\x73\x1e\x72\x47\x57\x37\x4c\xb6\x9c\x86\x52\xab\xdb\x54\x81\x4d\x8a\x7c\xc0\x46\x85\xbf\x0a\x87\xa1\x7c\xaf\x6a\xb2\x09\xfb\x03\x9b\xee\xf6\xad\xb6\x1f\x8e\x7d\x63\xf7\x45\x1c\xc8\x4e\x0b\xc7\xeb\xc5\x8d\xc9\x9a\x62\xb0\x4f\x2a\xf5\x85\xcb\x1d\xa5\xbc\x7c\xba\x92\x1c\x58\x2c\xf2\x49\x74\xd4\x31\x12\x19\xc5\x21\x81\x25\x7b\xf4\xcb\x7b\x15\xaa\x46\xe5\xf5\x33\x55\x20\x20\x87\xec\xce\x74\xbc\xdf\xc9\x10\x78\x81\xda\xf9\x92\xb6\x8d\x6c\x00\xa4\x49\xf9\x36\xaa\xc5\xfb\x55\xc7\x5f\xf9\x8c\x8e\xe3\x73\xf8\xe0\xa5\x2b\x81\x00\x0f\x8c\xe3\x7c\x5d\x6d\x48\x84\x8d\x3f\x30\xe3\x35\x71\xca\x67\x10\x24\xb7\x5f\x0c\xdf\x38\x74\x48\x59\x17\xe6\x5a\xe3\x9b\xa6\x3c\x5c\x90\x04\x20\x95\x93\x4c\x83\xca\x3a\x34\x92\xaf\x10\x99\x3f\xd0\x3f\x40\xa4\xfe\xf3\xb1\x52\x09\xe1\x99\x44\x59\xf7\xc2\xf8\x51\x2a\x70\xd9\xc8\x06\x45\x64\x72\x11\xe8\x75\xfe\x56\xf9\xb4\x7c\xd3\x44\xfd\x95\x2c\x2d\x79\x02\x7c\x36\x15\x34\x33\x80\xb4\x9c\xd5\x8c\x37\x7f\xe8\x0e\x54\xfb\x66\x6e\xe3\x1e\x97\xa8\x44\x61\xd5\x63\x55\x21\x90\x86\x34\xc5\xf7\xea\x44\x0a\x0b\xed\xb9\x39\xb2\x5c\xf0\x78\xdf\xd1\xbc\x24\x6f\x2b\xc5\x1c\xf0\x1d\xbb\xe4\xcd\x41\x8f\x13\xaa\x83\x99\x67\x08\xc9\x9f\xa2\xc3\x10\x21\xc1\x09\xc5\x9c\xfd\x97\xf0\x1c\x51\x08\xf9\x50\xe9\xf4\xd9\x37\x47\x61\x6a\x11\xe9\x4b\xb3\x8c\xcf\x88\x5c\x6a\xa8\x79\xcd\xb5\x4d\x1c\x27\x45\x1c\x48\xcd\x4b\x5a\x70\x68\xa4\xa4\x39\xa7\xd1\xbe\xf7\x4c\x6e\x5a\xaa\xfc\x0f\xc8\x9c\x80\xd0\xfc\x92\xfb\x4f\xf3\xc1\xa4\x6b\xa4\xfd\x6b\x7f\x55\x49\x0c\x9e\x25\x38\x02\xda\x58\xfe\xca\xba\x12\x7b\x7a\xb7\xda\x48\x30\x64\xed\x03\xd5\xe3\x39\xe3\x7a\x3c\x7d\x19\x26\x0a\xe3\x65\x86\xf0\x60\xe6\xa6\x14\x11\xc5\x3d\x5a\x3c\x5b\x75\x96\xba\xd7\x5e\x6b\x07\x03\x6b\x46\xb4\xd0\x58\x2a\x8c\xde\x44\x64\xc3\xb6\x3b\x81\x87\x5f\x6e\xa7\x36\x8c\x97\x92\x34\x80\x5b\x25\xf2\xe2\xbe\xe8\x74\xb9\x12\x40\xbd\x69\xb3\x7d\x5e\xe8\x84\x3b\x26\x1c\x31\x96\xb3\xdf\x53\x50\xe7\x15\x0a\x7c\x72\xe9\x31\xc5\x10\xb6\x94\x22\x73\xb9\x74\x5c\xbf\xf3\x91\xe9\x97\xb6\xce\x52\xb4\x21\x18\x2e\xcf\xe1\x7e\x0b\x46\x1c\x89\xec\x2b\xaa\x5e\x96\x05\x26\xc5\xc6\x12\x82\x14\x7a\x24\x61\x4e\xf1\x29\xc9\x38\xc9\xc3\x20\x34\x08\x6c\x45\xaf\x50\xfd\xed\x87\x0a\xcb\x1e\x24\x41\x92\xe7\xf8\x5a\xce\x58\xd3\x88\x48\xf6\xda\xdb\xc1\x24\x5a\x1b\x8e\xc2\x00\xdf\xca\xb4\xec\x1d\x95\xf4\x3c\x3f\xfe\x82\x82\xaa\x67\x61\x6c\xb3\x2c\x0a\x97\x19\x14\xa0\x79\xc0\xf9\xba\xa3\x3d\xc7\xc8\x4c\xe9\x16\x83\xcf\x31\x08\x3a\x87\xce\x3a\xf1\x78\x11\x80\x6f\xae\x77\x7c\x5a\xe8\x56\x0d\xbc\x76\xe0\x40\x7b\x68\x87\x8b\x56\x12\x02\x28\xfe\x33\x45\x19\xdf\xf8\x04\x83\xc9\xf2\x74\x6d\xc2\xa3\x1c\xef\x77\x94\x70\xc7\x25\xed\x7c\x8f\x3d\x2f\x8c\x09\x06\xae\x41\x08\x19\x45\x24\x92\x5c\xd6\xca\x6d\xad\xef\xd6\x7c\x81\x99\xc3\xed\x95\x50\xfa\x83\x1d\x4b\xa0\x13\x77\x3f\x57\x59\x8c\x01\xd2\xeb\x33\x9e\xea\xcb\x75\xe3\x9f\xc4\x83\xf2\x7f\xd0\x83\xf2\x7f\x34\x69\x38\x0c\xc3\x3c\xec\x0b\xdd\x20\x06\xe1\x26\x39\x0a\x7c\xed\x10\x8f\x83\x62\xd0\xf2\x4e\xe6\xb6\x42\x9f\x37\x13\x0b\x5f\x3f\x34\x41\xff\x85\x48\xfb\x0e\x27\x44\x60\x8e\x8f\x8f\x95\x07\xb0\xb3\xdb\xd0\xae\xbc\x68\x99\xf2\x48\x68\x62\x3d\x4a\xe2\xb4\xc2\xb7\xa4\xc5\x70\x91\x45\x6d\x5e\x99\x39\xec\x00\xaa\xe5\x9e\xe2\xeb\xa6\x5e\xe8\xbc\x48\x39\x4f\xce\x62\x49\x6a\x1d\x69\xea\x91\xf9\x22\xdf\x43\x84\xee\x48\xcd\x7c\x77\xec\xc3\x24\xe6\x88\x13\x1e\x2c\x8a\xde\x95\xda\xca\x5c\x55\x57\x59\xc9\xe0\x08\x27\xc7\xde\x75\xcf\x67\x75\xbf\xf3\x84\x4a\xe3\x67\xcb\xd9\xae\x32\xf6\x41\x1c\xb4\xd1\xf1\xc1\xe6\xbf\x52\xbd\xec\xa7\xd0\x59\xc2\x7f\x04\x27\x10\x5b\xe4\x1e\x8a\x9a\xd2\xc5\xe1\x9d\xea\x41\xc1\x2a\x2b\x98\x2d\x16\x81\x74\xbd\x90\xca\x73\xf4\x65\xcc\xf8\xc5\xb5\x17\x55\x74\x78\x5a\x47\x87\xa7\x5d\xb4\xb9\x1a\xf6\xa4\x31\xca\x71\x89\x55\x4a\x97\xb3\xb3\x0b\x5b\x1f\x2a\x2a\x9c\xe3\x4d\x02\x5f\xc3\x50\x92\x7e\xae\xa4\xfd\xbe\xd7\x43\xbd\xf3\x7e\x13\xe9\xed\x52\x92\xda\xc0\x64\xf9\x94\x1f\x25\x56\x23\x14\xd6\x5e\xf2\x50\xe1\xed\xe2\xfc\xe6\xeb\x8e\xa2\xa1\xa6\xc2\xad\xb8\x94\x66\x2d\xdb\xe5\x81\x09\xd7\xe9\x50\x43\x11\x12\x59\x25\xc4\x7b\x93\x40\x67\x61\xf4\x58\x1c\xde\xb1\x37\x8b\xdb\x6b\x9f\xee\x8a\x1d\xe9\x59\x13\xd9\x14\x15\x54\x89\x3b\x7c\x60\xf7\x40\xa9\x27\xd4\x85\x92\x67\x0e\xb7\x97\x88\xca\xc7\x9d\x48\xdf\x51\xd0\xc9\xef\x34\xa1\x25\x7b\xd6\x8e\x24\x23\xa8\x4b\x87\x7c\xad\x02\x99\xc8\xf6\x43\x80\x6b\x26\x54\x7a\xf8\xaa\x62\x9a\x38\x81\xa1\x62\xa6\xd0\x26\x16\x3d\xd3\x5b\xb1\x29\xe4\x98\x1d\xb7\x89\x37\x11\xae\x58\x5d\x8c\xb2\xb0\x67\x27\xcb\x3f\xc3\x19\xf9\x90\x2a\xf9\xc2\x37\xde\xf2\xb2\x27\x1d\xdf\xe9\xd4\x5a\xaf\x97\xa2\x5e\x25\x85\x5e\x13\x46\x2d\xd5\xdc\x82\x5e\x35\xe9\x80\x52\x42\xdd\x26\xed\xdb\x68\x6d\x5f\x79\xaa\x22\x0b\xf7\x97\x8a\x08\xf6\x3c\xac\x24\x50\x06\x7b\xbb\xaa\x35\x1c\xa9\x1d\xfe\x04\xce\x6f\x25\x41\xf3\xaa\xe3\x3f\xa1\x5d\x24\x04\x28\xe5\x73\x23\x1b\xc4\x10\x19\xb8\x1d\x93\x90\xd8\xe4\xcf\x77\x7c\xb8\xdc\x4f\x4d\x00\xa5\x61\x24\x80\xc4\xcb\xd5\x9d\xb6\x75\x6a\x80\x99\xc3\xed\x51\x92\xe5\x4a\x9b\x72\xa3\xa3\xb8\xc2\xa8\x61\x62\x6b\xdd\xb1\xef\x2f\x1a\xf3\xb7\xb6\x51\x05\xf9\x22\x3f\xd7\xc4\x45\xa5\xb7\x01\x42\x62\x72\x11\xa8\x41\x34\xc6\xfa\x89\x7c\xe3\xa2\xe7\xd4\x92\x28\x37\xff\x29\xc7\x04\x34\xd2\x12\x1f\x78\xbb\x3d\x4a\xa2\x30\x5f\x2c\x52\x00\x36\x5d\x5f\x48\x39\x60\xa2\x67\xe8\x27\x70\x2d\x29\xe2\xbe\x4d\x5b\x1e\x63\x70\x93\xd6\x0d\x5f\x6b\x76\xe4\x41\x12\x2c\x53\xe1\x01\xc1\xf1\x6d\x8c\x0a\xba\x2a\x6e\xaa\x33\x64\xe7\xba\x02\x02\x9c\x71\xdd\x32\x44\x3d\x97\x26\x46\x4a\xdc\x88\x72\x50\x79\xe0\xeb\xf1\x17\x2b\x82\x38\xa6\x4f\x6a\xfc\xdc\x85\xe9\xd2\x19\x3e\xb5\xd1\x44\xe6\x91\x27\x45\x7f\x60\x85\xda\x01\xc7\xfa\xa6\x3a\xe2\x37\x95\xcf\xd6\xb3\x41\x28\x70\xaf\x57\xf5\xa1\x7b\x48\xa3\x6b\xe4\x8f\x93\x62\x31\xcf\x20\xd1\x02\xf3\x85\x09\x80\x7f\x79\x52\xc5\x4e\xcc\x75\xc0\x7f\xd4\x80\xb9\x6b\x2f\x25\x49\x9e\xe5\x76\xc4\xe0\x58\xa7\xc7\x5b\x7e\xb7\x78\x25\x4a\xfe\x39\x37\x71\xcf\xa4\xbd\xc7\x68\x0e\xe5\xec\xa1\xd1\xc7\x76\xf8\x63\xd5\xfc\xf7\x18\xc9\xd9\x20\x11\xfa\x0b\x72\x32\xb0\x14\x77\x28\x92\xd6\x3d\x54\x0c\xe0\xbf\xd1\xa2\xbc\xe7\xa9\xe4\x87\xbc\xc6\xcf\x70\xee\xc1\xe9\xfb\xd0\x45\x80\xab\x61\x3e\x48\x8a\x9c\x3a\xcb\x91\xd3\x7a\x12\xd2\xc1\x88\xfa\xb0\xb1\x99\x51\x1f\x07\x1a\x72\xca\x13\xeb\x5a\xf3\x23\xb7\x69\xb4\x46\x25\x44\x27\x81\x5f\xbe\x1b\x12\x08\x0c\x3e\x87\x3b\xd3\x8c\x59\x4c\x16\x5f\xb7\xbe\x71\x41\xea\xe5\x0a\xf1\x70\xbe\xe6\x99\x1e\x99\x6e\xf7\xd2\x64\x34\x2a\xc3\x9e\x05\x2f\x82\xae\xe0\x75\x8c\x96\x41\x44\xb0\xa7\xc6\xcd\xfc\x37\xdb\x51\x92\x2c\xcb\x6f\x3a\x76\x39\x9f\x04\xf5\x35\xf6\xa1\x89\x4d\x9f\x9a\x41\x15\x3d\x8f\xd6\xa4\x90\x1a\x16\xc6\x86\x51\x9e\xf0\x84\x8e\xd5\x0a\x86\x33\x87\xdb\x8b\xa9\x79\x2b\x8c\x42\x03\x1c\x18\x20\xa0\x6c\x2a\xf8\xa6\xa1\x00\x4a\x54\x0a\xbc\xc4\x30\xd9\x5c\x2b\xe2\x9b\xc6\xd6\xe0\xa1\x4d\xb9\xcd\x97\xcf\xb3\x0d\x55\x00\xaf\xf7\x83\x1c\x99\x7e\xa9\x3d\x34\x69\x18\x6b\x99\x23\x74\x17\xf1\xb5\xaa\x7a\x04\x83\x24\x0c\x40\x36\x8a\x65\x75\x56\xaf\x31\x40\x92\x60\x5c\xce\x93\x9b\xc9\xd7\xd5\x64\xe3\x62\xfe\x04\x8d\x39\x22\x86\xdb\x48\x5f\xbb\x1e\xae\xf2\xeb\x58\x4a\x03\xe3\x0d\x37\xe9\x84\xea\xc7\xf8\xa0\xb3\xad\x77\xc7\x8b\x93\x83\x53\x94\xbf\x4c\x31\xee\x5d\xd4\x5b\xf3\xbb\x58\x33\x40\x18\x4c\x76\x3d\x50\xf6\x81\xd2\xa3\x01\xa5\x24\xd2\x3a\x37\x3c\xa2\x82\x13\x08\x93\x3e\x61\x7f\x17\xcf\x8c\xbc\x12\x0a\x09\x58\x80\x0f\xe8\x59\x24\xfc\xd1\x43\xb0\xcc\xed\xe6\x8d\x35\xd9\xba\xc4\x35\x11\x95\xf0\x94\x0a\xba\x97\xde\x40\xe0\xbd\x5f\x72\x13\x14\xc6\x2b\x36\xcb\xa5\xdf\xa9\xa5\xb2\xe6\x08\xab\xf8\xba\x32\x21\x51\x92\xef\xab\xc0\xe7\x7c\x5f\xd0\x3b\xba\x99\x9b\xc9\xa7\x11\xb2\x6c\x6a\x9d\x80\x5d\x5d\x0a\x30\x34\xfe\x1a\x56\xe1\x1a\x96\x07\x77\x27\x2a\x39\x62\xe8\x6e\xb9\x12\xa4\x9f\xe7\x4b\xdb\x93\x4e\xf3\x0b\xf3\xed\xc3\x2f\x4f\x96\x36\x91\x1b\xa5\xe9\xa3\x82\xbc\xa4\x1f\x56\x64\xf7\x5e\xef\xd2\x3b\xad\xb9\x4d\x87\x50\xb1\x84\x6b\xfe\x2d\x25\xfc\x00\xb4\x21\x72\xa7\x53\x30\x1f\x4c\x4d\x03\xa7\x06\xc7\xe8\x7e\xa4\x2b\xf0\x1e\xe8\x25\xc5\xe2\xbb\xaf\xb5\x2a\xea\x6d\x48\x07\xe7\xda\xfd\xd0\x30\x67\x13\x62\x45\xb0\x10\xf0\xb5\x82\x10\x8e\x2c\x1d\xe2\xf3\xbc\xeb\xf0\x96\x7c\x5d\x99\xae\x30\x0a\xe1\x0d\x09\x48\x07\x9b\x41\xfa\x9a\x7c\x81\x7c\x64\x62\xc5\xf7\xda\xe2\x26\x3b\xe7\xf9\x7b\xb2\xfc\x1f\x62\x96\x98\x7a\xa5\xeb\x51\x70\xc3\x22\xed\x51\x5e\x16\x49\x46\x78\xe0\x37\x94\xe2\xf2\xa7\x5a\x0a\xb2\xc9\xb6\x20\xdd\x24\xbe\x36\x76\xd3\x47\xf4\x05\x7c\xad\x6a\x36\xac\x49\x40\x42\x15\xcf\x3f\xef\x96\xad\x6e\xfd\xc3\x56\x73\x7d\x80\xf3\x2f\xbb\xd5\x0d\xa5\x14\x89\xfb\x13\x40\x9e\xa5\xd7\x05\x6f\x8e\xe3\x75\xa2\xab\x21\xa9\x2d\x27\x62\x71\x4d\xcb\xb2\x5d\x53\x65\x94\xa5\x70\xc5\xee\x55\x52\x98\xb7\x14\xe8\xe5\xb6\x86\xc8\x9e\xd6\x71\xfb\xde\xae\xea\xe3\x3d\x37\x56\x91\x25\xbc\x7f\x78\xd1\x7c\x60\x21\xcc\x01\x31\x81\xfc\xd1\x13\x0e\x6f\x9c\x07\x03\x19\x40\xe7\x48\x7b\x56\x41\xf5\xa4\x76\xcd\x72\xa8\x0f\x17\xe3\xb8\x82\x2d\x55\x8a\x95\x6b\xc3\x91\xc9\x07\x10\x75\xc0\x13\xde\x51\x6a\x52\xd7\xc7\xba\x07\xa0\xc1\xf9\xc9\x72\x93\xdb\x6c\x68\x39\xb9\x2f\x30\x2b\x7a\x15\xc1\xaa\x3c\xa1\xb4\x47\xde\xb4\xbd\x5d\xad\xaf\x7c\x53\xca\x2d\x8a\x31\x0e\x49\x14\x87\x43\x76\x89\xe5\x3f\x54\x04\xdb\xa7\xb4\x54\xe4\x67\x4e\xff\x35\xb0\x71\xce\x6c\x0d\xaf\x32\x4d\xc0\x0f\x78\xa2\x11\xf9\x31\xd6\x14\xf5\x92\xb3\x5a\x50\xb4\xb5\xde\x00\x51\x19\x18\x11\x16\x17\x94\x6c\x0d\xc6\x08\x27\x81\x5b\xd1\xb0\x83\x9f\xe8\x7a\x33\xb3\x64\xa2\x88\x8a\x3a\xb0\x26\x7b\xba\x9e\xea\xfc\x4e\x55\x41\xa2\x34\x66\x48\xe7\x41\x69\x47\x58\x2b\xbc\x67\x7c\x09\xa0\x0e\xac\x46\x2f\x7a\xdb\x0b\xb3\x51\x64\xd6\xa6\x14\xa7\x3f\xbb\x1e\x18\x9e\xab\x8a\xd5\xeb\x2a\x26\x04\x03\xfd\xe1\x58\xe3\x47\x1d\x35\x55\x68\x87\x23\x44\x19\x4c\x0a\x81\x61\x12\x86\x88\x26\x1d\xfe\x20\x4c\x83\x22\xcc\x35\xa8\xfa\x52\x85\x8c\x48\x22\x9e\x28\x2c\xe3\x12\x21\x89\xe5\x46\xc6\xb1\xea\xcb\x00\xbe\xde\x93\x15\xb0\x6b\x19\x8f\x52\x1b\xd8\x5e\x39\xbd\xec\xa9\x01\x9a\x7f\x5b\xe9\x1c\xdf\x2e\x83\x44\x27\x60\x9f\xa7\x09\xa9\xd8\x4f\xf8\xaa\xc1\x0d\xbc\xbc\x63\xac\xf4\x49\xa7\xf7\x54\x44\xb4\x3a\xb0\x16\x35\x6b\x1c\x1a\x67\x28\x72\xe2\xeb\x46\x7a\xbb\xd8\xe6\xab\x49\xba\xac\x92\x30\xec\x23\xf3\x4d\x67\xdb\xe9\x35\x3b\xbb\xd0\x9e\x9d\xdd\x55\x7e\xad\x03\x0e\x2f\x78\x7d\xf2\x72\xf2\x5d\xbd\xa7\xdc\xe0\x72\x04\x57\x12\x44\xaa\x2a\x54\xdb\x8e\xc4\x44\x16\x0c\xa0\xb4\xab\x18\x4a\xdf\x1b\xb7\x94\x7a\x86\xcc\x09\xb4\xfa\x42\x9b\xed\x51\x52\x8c\x20\xba\x76\x1c\x6c\x4e\x8e\xfe\xa2\x66\xf4\xdd\xc0\x76\xc0\x11\xcc\xbc\x72\xd2\x3d\xe6\xdb\xba\x2e\xf2\x0e\x64\xf1\xd7\x9a\x07\x7e\x70\xae\x1d\x99\x8c\x21\xbb\x38\x42\xce\xa9\xe3\xe4\x9c\x2a\x92\x8e\x6c\xb9\xbd\x77\xd1\x40\x20\x29\xd5\xc2\x61\x0f\x88\xf9\x8f\xc7\xbe\xe5\x0d\x98\x56\xfe\x77\x58\x64\xa7\xad\xeb\x08\x7a\x7e\xad\x4c\x12\x51\xe1\xe8\x12\x10\xa0\x3b\x7c\x5d\xa3\xa6\x5c\x98\x26\x19\x31\x33\x1c\x9a\x3c\x49\xd7\x26\x5b\x8a\xff\x4c\x85\x2f\xdf\x1a\x57\x08\xb6\x7d\x65\xfc\xb6\x6a\xf1\xb0\xf9\x20\xae\xe4\x0b\xb6\x74\xeb\xfc\xd6\x23\xd9\xdb\x7b\x21\x4a\x7d\xb2\xa1\xff\x07\x2d\xd5\x72\xb1\x22\x20\x5b\x3b\x86\x4b\x17\xca\x47\x3e\xaf\xea\xc8\x69\xc6\x31\xe1\x3e\xa5\x32\xa1\x8b\x8b\x22\xd5\x04\x27\xe9\xf7\xc6\x5e\x1d\xee\xf7\x6a\x5c\x5c\x73\x73\x6d\x93\xe6\xe1\x12\xe9\xe6\x32\xa0\xc3\x55\x50\x5d\x81\xe6\x94\x6a\xd6\x81\x66\x4d\x14\xad\xed\xf1\xa8\x83\xc7\xc0\x74\x2b\x0a\xc7\x34\xef\x18\xca\xdb\x14\x56\xe0\xfa\x26\x96\xa1\xc8\xe0\xa8\xa1\xc3\x51\x02\xaf\x02\xb0\x3d\x09\x8f\x95\xac\x4e\x12\xe7\xa9\x61\x84\x28\x2b\x9c\x8c\xbd\x20\xe4\x67\x0d\x9a\x30\x2f\xb5\x93\x91\x8d\xe9\xa4\x14\x54\x5d\xb9\x81\xe1\x33\xdc\x21\x7b\x21\x47\x5e\x43\x25\x25\xcb\x93\xd4\xf4\xad\x92\xec\xbc\xa0\x24\x3b\x2f\x78\xd9\x36\x93\x05\xa6\x27\xe2\x1f\x68\xe4\x60\xc3\xc2\x37\xb5\x68\xf8\xf0\xcb\xed\x60\x10\xc6\x36\xb3\xf4\x70\xdc\x19\x4d\x2f\xce\xdc\xfd\x1d\x55\xef\xd6\xbc\x70\x80\x1f\x3c\x4e\xeb\x07\x31\x18\x47\x47\x2e\x0f\xec\x80\x09\x27\x55\xe5\xe9\x21\x75\x5d\xe3\x68\x60\xa4\x34\xfc\x05\x92\x39\x63\x37\x03\x14\x0c\x18\x91\x5f\x61\x2b\x62\x7a\xdf\xa6\x16\x25\xfe\x34\x4d\x15\x8b\x50\x77\x14\x7a\x85\x93\xd3\x18\xe8\x87\x8d\x01\xf1\x62\x9a\x48\x1b\xa1\xe4\x6d\xe8\x35\x25\x71\xa3\xd2\x5d\x23\x1b\xf7\x48\xaf\xdd\x85\xef\xe5\x33\x23\x1e\x03\xcc\x9d\x39\x99\x14\x4f\xd9\x39\x7a\x7e\x51\x67\xaa\xc8\xfc\x45\x66\x52\x95\x0e\x6e\x77\x54\x2b\xfc\x75\x6c\x46\xbe\x01\xa5\x09\xff\x99\xb2\x68\x49\xd4\xb3\x19\x50\xfb\xce\x11\xf0\xa8\xb3\x8e\x6f\x35\x1e\x58\x93\xe6\xab\x61\x66\xf5\xf1\x77\x56\xeb\xee\x9c\xad\x65\xb5\x0f\x1c\x60\x58\x3d\xb9\xea\x5b\x48\xe7\x49\x91\xb3\xe2\xa4\x3f\xa7\xaa\x98\x71\x60\x81\x78\x9c\xf4\xed\x47\xf7\xb0\xf7\x1c\x32\xc5\xe1\x8a\xc1\xe2\x87\x8a\xd9\x29\x95\x14\x88\x93\x3c\x8c\xfb\xa0\xe4\xc1\x8a\xb8\xad\x7e\x7d\x8b\x76\xaf\xb4\x52\xd1\x0b\x39\xa5\x5f\x17\x6c\x6f\x35\xf4\xe4\x3b\xea\x5a\x39\xd8\x5c\x91\xdf\xb3\x63\xd6\x3e\xf6\xca\xcc\xe1\xf6\x1b\x85\x89\xc2\xa5\x50\x1a\xd7\x65\x03\xd1\x12\x97\xad\xb5\x1d\xfc\x45\x14\x00\x66\x64\x82\x30\x4f\x1c\x21\x11\xdc\x7a\xee\x69\xe4\x9b\x4a\x09\x7e\x99\x32\xe7\xae\xdf\x63\xb2\x4b\x90\x26\xa1\x62\x57\x07\xd1\x5f\x8c\x15\x04\xfe\x2f\x10\xbc\x3b\x69\x23\xcf\x8d\x7e\x5a\xc9\x35\xdc\x27\x3b\x23\x7c\x95\x9e\xa5\xf4\x9e\x52\xcc\xdc\xb7\x4e\x39\x52\xfe\xc1\x9a\xf5\x9a\x39\xdc\xce\x02\x89\x3e\x5d\xc1\xcc\xe1\x52\x37\x9a\x20\x70\x41\x12\xc7\x49\x98\x65\xb6\x40\x33\xea\xa3\xf4\xf8\x79\x57\xac\xd9\xfc\x31\x55\x5c\x22\xc0\x21\xf8\xce\x00\xec\xda\x4d\xad\x22\x58\x58\x50\x95\x47\x06\xfb\xb7\xb5\x73\x7e\x9b\xbd\x06\xaf\xe9\x2f\x30\xb5\x9d\x5d\x95\xb8\x7f\x02\xca\x54\x42\x87\xe2\x6b\xec\x41\x1a\x0e\xc3\xd8\x44\x13\xca\x79\x3d\xad\xbb\x1d\x3b\x1e\xee\x70\xbe\xf6\xd2\xb3\xb3\xed\x30\x8a\x8a\x2c\x4f\x3d\x35\xa7\x6a\xbd\x9e\x71\x13\xd5\x20\xf3\xb4\x18\x8e\xca\xa3\x2f\xe3\xb4\x1e\xb6\x18\x10\x9c\x7c\xbd\xfe\x74\x25\xbe\x4d\xa9\x82\xe7\x28\x84\x7f\xae\x94\x05\x7e\xae\xf2\xda\x59\x5e\xf4\x88\x13\xd5\xfb\x49\x7f\xd6\xf9\xf7\x13\x0c\x54\x82\x58\xef\x34\x90\xbf\x64\x61\x3f\x36\x11\x94\xca\xe7\x3d\x75\xe0\x41\xa9\x33\x7c\x82\x2d\x8a\x9b\x49\x9c\xc9\x48\x06\x5f\x55\xa0\x8a\x30\x5a\x5e\x36\x8a\xa6\xf6\xfb\xba\xff\xe8\xfb\xd5\xec\x52\x0a\x44\xb0\xb0\x72\x57\x31\xb1\xe5\x57\xf0\xff\xe0\xb4\x70\xd0\xf5\xf2\x9d\x10\x0b\x71\x0d\x46\x80\x6f\x75\x29\x85\xf9\x76\x52\xe4\xbd\xb0\x87\x7a\x97\x20\xf7\x95\x9c\xc8\x29\x57\x8b\x25\x3e\x1f\xa4\x4f\x90\x08\x39\x46\x33\xc0\xd7\x2e\x30\x2a\x7d\x7c\x9b\xd2\xe8\x23\x3b\xfb\x38\xd9\x3e\x21\x4d\x57\x68\xe4\xdb\xaa\x7b\xf6\x73\xdd\x29\xee\x23\xf8\xb8\x08\x22\x6b\xd2\x49\x95\xa6\x27\x56\x70\xe9\x99\xee\xf8\xc6\xff\x0d\x95\x22\xfb\xa4\x11\x29\x9e\x5a\xa0\x33\xf0\xae\x8e\x00\xf6\xeb\x33\x2e\x16\x13\x28\x82\xed\x27\xe4\x19\x20\xe7\x79\x0a\xcf\xa6\xc7\x5d\x04\x09\x1b\x85\xbf\x4c\xcf\xa6\x4a\x2b\x15\x55\x1b\x91\x63\xf6\xfb\xff\xbf\xfc\x3b\xbf\xdb\x52\x2d\xca\x7b\xba\xad\x03\x33\x72\xbd\x5e\xe9\xf7\x8d\xf6\xaa\xa4\xeb\x65\x3c\x8d\x14\x74\x3c\x70\xfd\x8a\xa6\xf5\x99\xe8\x6a\x62\x1a\xaa\xe8\x3b\xe2\xcd\x6f\x7c\x6d\x5b\x63\x72\x45\x8b\x48\x20\x05\x1e\x36\xd8\x4b\x6d\x96\x89\x08\x00\x52\xad\xd0\x7f\xe5\xeb\xda\x49\x72\x70\xae\x9d\xdb\x60\x10\x27\x51\xd2\x5f\x6b\xe9\xdc\xd9\xb1\x71\x65\xfd\x7c\xd1\xf7\x76\xc8\xdf\x87\x81\x89\xf0\x4b\xc8\x40\xa1\x9d\x88\xaf\x5d\x30\x66\x96\x22\x93\x27\x6f\x86\xe8\xa2\x85\xe3\xfb\x54\x57\x95\xd6\x6e\x6b\x2d\x6d\x5a\x19\xb0\xf4\x9c\xbc\x03\xc8\xbb\x5e\x5e\x79\xed\x35\xd2\x31\x09\x73\x67\xce\x30\x84\x1b\x8a\xdb\xa7\x51\x98\x30\xcb\xad\xe9\xc1\x7f\xc7\x66\x43\xc9\x89\xaf\x6b\x8c\x1d\xc4\xdf\x97\x86\x49\x4a\x1c\xda\x78\x1a\x30\xd2\x33\x20\x60\xdc\x52\xcc\x8b\xaa\xa5\x7f\x68\xb8\x1c\x2e\x35\x09\xef\x33\x6e\x28\x4a\x99\xa1\xe9\x85\x9e\x44\x55\x84\x62\xe9\xd5\x45\x41\xb6\x81\x1e\x2f\xb7\x51\x34\xe9\xd7\xcd\x19\xad\x86\x06\x46\x21\x97\x3e\x2c\x57\x0a\xd2\x87\x67\xdc\xce\x8f\xac\x59\xb1\x0c\x8f\x14\x48\x93\xdf\x45\xac\x45\x24\x4c\x4a\xdb\x8f\x92\x23\xd3\x73\xa5\xf3\x16\xe5\x83\x15\x2a\x60\x7a\x86\x9a\x33\xc0\x02\xcb\xaf\x35\x60\x12\x46\x91\x59\x93\xf9\xe2\xe4\x6a\xc7\x5b\xff\x4f\xab\x5d\xaf\x69\xb2\xca\xc3\x22\x8d\x3b\xf4\x5b\x7c\x33\x7e\xba\x9a\x84\x78\xa1\xfd\x37\x1f\xa7\x17\x82\xe3\xf5\x6d\x72\xc5\x19\xbd\x30\x56\x38\xb3\xbf\xa4\x93\x17\xb9\x34\x3e\x07\xe0\x8b\xbc\x03\xd7\x59\x00\x0f\x1e\x7e\xbf\x41\x01\x10\x76\xc2\x8e\x75\x45\x28\xfd\x90\x06\x0d\x8e\xf7\xdd\xb1\xef\x54\x7f\xac\xeb\x43\x21\x4e\xb7\x33\x5f\xb1\x8a\x91\xb3\xa4\x8c\x24\xa7\xe8\x24\xd3\xa5\x1c\xd8\x95\xd3\x63\x95\x8c\x6e\x75\x7d\x84\x7f\xa7\x5a\x49\xf2\x46\x6a\xd1\xa6\x4f\x6a\x0b\x59\x7e\x17\xde\x72\x6a\xbd\xb4\x57\xc8\x56\x1c\x53\x60\xad\x3f\xfb\x6b\x5d\x9d\x33\xde\x50\x74\x07\xa4\x91\xfa\xea\xd6\x6e\x42\x28\xe1\xd0\x7d\x9a\x1e\x02\xeb\xed\xe1\x58\x89\x10\x9c\x83\xd1\xaa\x98\x26\x1c\xcd\x27\x81\xbc\x41\xa4\x76\x62\xac\xfa\xfa\x99\xfb\x15\x0e\xde\xde\x1a\x9b\xc4\x81\x03\xed\xd7\xed\x6a\x36\xa1\xf0\x35\x1b\x6c\x01\x61\x34\xc0\x05\x84\xd7\x3b\x3b\x6e\x10\x14\x39\x32\xfd\xea\xa4\x22\x79\x3e\x53\x59\xd2\x1d\x3f\x36\x27\xe9\x8b\xe0\x63\x9c\x73\xdd\x18\x79\x32\x0a\x83\x09\x0f\x6b\xbd\xab\xc0\x28\xd0\x75\x15\xd1\x87\x06\xcd\x7e\x03\xb4\x2e\x06\x92\xeb\xd6\x7c\x53\x47\xdd\xcd\xb4\x5f\x37\x23\x53\x06\xb8\xaa\xcf\x91\x33\x1d\xb2\x85\x05\xc3\x91\xa7\x05\x28\x49\x90\x6b\xc0\xaa\x50\xf2\x91\xf3\x2e\xce\x90\x42\xde\x52\xb8\x62\xd7\xac\x81\x93\x8b\x73\xed\x57\x1d\x7f\xc6\xfd\x4a\x61\x7a\x93\x10\xea\x1e\x95\x5c\x0b\xec\x01\xe8\x24\x10\x93\xed\x5e\xf7\x85\x93\x51\x64\x4d\xcf\x89\x38\x62\x6c\x7f\xa5\x07\xfa\x57\x15\xa2\xc5\x22\x5e\xde\x47\xab\x1d\x63\xda\x82\xee\xbf\x3b\xeb\x16\xa6\xf9\xac\x03\x9f\x09\xe2\x80\xfd\xe0\xab\x84\x7b\xf2\x13\xac\x20\xd8\xd0\x87\xaa\x75\xee\x9f\x91\x6d\x45\xb1\xe1\xe7\x1d\xcd\x5d\x3d\xf6\x58\xe9\x5f\xd3\xbe\xc7\x08\x5d\x6d\xe8\x6d\x9f\x6b\x97\x01\xe9\x80\x53\x3b\x12\x4f\x95\x8f\x22\xe1\x54\x43\x91\x60\x94\xda\x15\x95\xc3\x15\x14\x02\xed\x01\xbe\x69\x6a\xac\xfd\x72\x3b\xb6\x26\x75\xf0\x0f\x21\xf0\xaa\x78\xab\xbe\x64\x14\xc6\xb9\xed\xc3\x6f\xf7\x84\x34\x88\x71\x1e\xc5\x7f\x78\x64\xfa\xa5\x76\x5e\xa4\x8e\xbd\x10\xae\xc6\x1f\x77\x94\xa8\xd8\x1f\xbb\xd3\xc0\x84\xbe\x33\x98\x8b\x34\x1d\x8f\x4b\xdb\x50\xf4\x60\x8b\x69\xd2\xb3\x69\x18\x2c\xb7\x7c\x8f\x3a\x77\x1c\x48\x0f\x83\x4f\x4d\x04\x83\x70\x84\x16\x60\x04\xff\xff\xb0\xe3\x4f\xd0\x0b\x04\xa9\x13\x82\xec\x96\xa3\x24\xba\xa2\x3e\x3f\xb2\x51\xfe\x16\x79\x0d\x38\x08\xc1\x5c\x8c\x92\xed\xfa\x58\x71\x3b\x08\xb3\x26\x62\x9f\xcb\x38\x84\x24\x55\xbb\x9d\x85\xed\xc0\x81\xf6\x28\x4d\x32\x1b\x14\xd4\xbb\x03\x88\x2d\xca\xea\x40\x27\xf2\xb5\xe2\x2d\xca\x4c\x0c\x50\x22\x7e\x06\x1e\x25\xd7\x5a\xf8\xa6\xb6\x9e\x0e\x1c\x68\x0f\xcc\x5b\x36\x8a\x8b\x7c\xb2\x42\x5e\x4f\x8b\x5e\x74\x7d\xcb\xd5\x89\xfc\xf7\xe7\x63\xdf\x4b\xb5\xa3\xeb\x63\xa4\x81\x49\x7b\xab\x26\x45\x29\x1e\x26\xeb\x2e\xb6\x01\xdf\x60\xb9\x4b\xd8\x47\xdf\xce\x37\x0d\xdc\x51\xf3\xed\x22\x8e\xac\x23\x96\x79\xd5\x09\x5f\x97\xdf\xce\xd7\xe3\x0a\x2d\x91\xcd\x26\x1c\xd2\xff\xff\xba\x84\x98\xde\x75\x62\x2e\x4c\xf3\xa9\xf8\x6f\x9c\x8d\xca\xec\x9b\x6b\x8f\x14\x95\x6b\x8e\xc4\xf3\x30\xee\x5b\xe9\xb8\x82\x6d\x40\xfe\x90\xaf\x95\x53\x30\x0c\x7b\x11\xe7\xd5\x9d\xca\x88\xea\x6a\xe8\x78\x88\xc0\x30\x0c\xd2\x64\x94\x26\x68\x75\x9b\xac\x16\x30\xe7\x5f\x96\xb4\xc7\x69\x14\x24\xb0\xf8\xf8\x68\xe5\x1b\xc5\xe3\x11\x24\x71\xaf\x08\x58\x1f\xcc\x89\xd8\x29\xb1\x29\x1f\x03\x2c\xda\x2c\x7f\xdc\x2b\x82\x5f\xaf\x64\xcb\xc9\x25\xc1\x1c\xbf\x8f\x1a\x11\xbc\xe5\xff\x5b\x9d\xbc\xdc\x06\xec\x04\x43\xe7\x9d\x44\xc8\x24\xf2\x86\xb8\x41\xf9\xd2\xd1\xba\x1d\x99\xe6\xa6\x00\x98\x77\xac\x8d\xa3\xd4\x9a\x8c\xd5\xf0\x43\x42\x96\xf0\x17\xd5\x9c\xdc\x23\xd3\xed\x28\x89\xa5\x4f\x11\xe7\x1c\xfa\xc2\xf8\xba\x56\x4b\x5c\x98\x6e\x4b\x21\xd0\x09\x49\x97\xcf\x8d\xed\xb9\x03\x19\x0d\x9c\x53\xc7\xc6\xbe\x65\xf0\x36\xcb\x99\x94\x03\x21\xa0\xb7\x4a\x05\x52\x75\xbe\xf7\x51\xea\x72\x2c\x1d\x5f\x7d\xc5\x73\x9c\x7a\x64\xc0\xc3\x9a\x7b\xbc\x30\xdd\x5e\x22\xa0\xcf\x91\x69\x4f\x74\xe0\x35\xb9\x1a\x39\xc6\x89\x7b\xb5\xa5\xa4\x5a\x37\x3b\x0a\x52\x5f\x67\x06\x9a\x9d\x6d\x47\xa1\x8d\x5b\xfe\xa4\x42\x85\x47\x30\x20\xdb\xcd\xc1\xe1\x97\xdb\xa3\xc1\x5a\x46\x21\x93\xdf\xf4\x70\xd2\xa4\x1a\x56\xd3\x78\x9f\x69\xdb\x38\x1f\x14\x59\x68\x32\x91\x2a\x10\xd8\x87\xa6\xab\x69\x80\x90\xcd\x80\xe9\x93\x3f\x24\x25\x41\xfa\x10\xdf\x28\x47\xb4\x17\xc6\x31\x6f\x2a\xa0\x34\xaf\x2a\x65\x88\xab\xce\x27\xca\x22\x87\xd2\xe2\x79\xed\x78\xd6\xa0\x63\x8d\x75\x44\x1b\xf7\x8d\x93\xbb\x80\x37\xf3\x4f\x3a\x8a\xd7\xf8\x9f\x28\x2e\xa2\x5e\x01\xf2\x76\xab\xe4\x25\x2f\x55\xf4\xe6\xea\x8b\x76\xbe\x9d\x86\x99\x65\x61\x06\x26\x03\xa3\x8f\x08\x31\x98\x12\x97\x2c\xc7\x63\x17\xcd\x29\x56\xe2\xf9\x8e\x5a\xaf\x97\xc7\x8a\x16\x9b\xdb\x29\xf1\x88\x90\x96\x46\xbe\x66\xaa\xeb\x45\x5d\x6f\x2b\x51\x97\xd7\xcd\x5b\x6f\x4d\xfa\x7c\x25\x33\xcd\x30\x82\xae\xe3\xe1\x59\xd0\xa3\x70\xd0\xba\x67\x14\x8a\x94\x6b\xc1\xb4\xfd\x44\x2e\xbf\xfc\x46\x51\xcb\xf7\x32\x4b\xe1\x28\xb2\x7b\xc9\x2a\xa0\xf2\x73\x6a\xec\xd7\x39\x78\xae\xe0\xe8\xc3\x3b\x54\xc4\x33\xd2\x3b\x79\x9d\xac\x02\xfe\x08\xcd\x91\x1a\x0a\xe6\x84\x4c\xca\x29\x83\x49\xf1\x0d\xd0\xa5\x2b\x19\x25\x4c\x96\x8e\xbf\xbc\xa7\xce\x4c\xae\x54\xc9\x57\x37\xa4\x20\x83\x24\xa6\x93\x97\xba\x00\x1d\x7f\xe5\xbd\xb1\x6f\x43\xbe\xe7\x92\x58\xb1\x5d\xb1\xe9\xee\xf2\x85\x58\xb2\xbf\xab\x5a\xcb\x3f\xa5\xb5\xe7\xd0\x05\x4e\x1f\xee\x38\xde\xd4\xa1\x6a\x5e\x71\x3c\x11\x1b\x24\xcf\x28\x01\xee\x33\x8a\xe9\xaf\x74\xe0\x92\x94\x7a\x68\x5e\xe2\xe8\xeb\xae\x42\xaf\xdc\xed\x54\x9c\xae\x83\xfe\x38\x6b\x3f\xaa\x8a\x69\x87\x49\x90\x1a\xa8\xb6\x4b\xf8\x03\xed\x4b\xc7\xa1\xe1\x55\xac\xae\x69\xca\xe0\x93\x1c\xe5\x20\x69\xf6\xb8\x42\x29\x99\xa2\x17\xda\x38\xb0\xd9\xa4\x62\x4f\x38\xd5\xf1\xc9\x2b\x3e\x9c\x85\xe2\xca\x7b\xfc\x97\x9a\xca\xe9\xf6\xcd\x0a\x87\xa4\x68\xf5\xb7\x9c\x6c\xd6\x99\x9a\x4f\x79\xf8\x65\xe6\xe1\xe5\x6e\x4c\x24\xb9\xae\xaa\x26\xc8\xf7\x71\x1a\x4b\x9c\xe4\xe1\xdb\xa6\xc8\x72\x9b\x42\x3d\x19\xc5\xcb\x73\x0a\x1e\x75\xae\x89\x44\x66\xd1\x44\xd1\xc8\xa4\xcb\x15\x62\xbb\x4b\x8a\xd8\xee\xd1\xe2\xae\xbd\xbf\xbe\xa8\x5a\x98\xee\xeb\xa6\xae\xfb\x9a\xc8\x89\x98\x6d\xbc\x7f\xb9\x49\xbb\x47\x32\x30\xfe\xe1\xfb\xa9\x21\x0f\xdf\xa7\x5b\x36\x34\x18\x72\x43\x23\x47\x13\x50\x3e\x7a\xbe\x4d\x60\xba\xf9\x5a\x67\xea\xec\xa2\xd9\xce\x3a\xdc\xd1\xac\xc3\x4d\x8c\xe4\xa3\x34\x59\x4a\x8a\x98\xc2\x80\x2d\x32\x10\x5b\x27\x1b\x8a\x3c\x87\xda\xa9\xed\x87\x34\xe2\x3c\x55\xc8\xbb\x7e\x9f\xc6\x5c\x54\xf5\x68\xaa\x60\xe4\x3e\x56\x3c\xe1\xa9\xed\xd9\xe1\x08\x1a\x1a\x0e\x01\xc0\x0b\x56\xc8\x35\x7d\xf6\xaa\x6f\xd2\x9e\x8d\x33\x18\x56\x6c\xc7\x33\xf0\xaf\x38\xd5\xdb\x69\x3d\xff\x7c\x25\xed\x0b\x40\xd7\x51\x4d\xa1\x89\x0d\x8c\x09\xda\xd1\x15\x46\xfb\xd2\x56\x24\x51\xd8\xa3\x23\xc1\xc5\x97\x6f\xab\x15\xf0\xb6\x8f\xd7\xd3\x50\xd2\x59\x98\x94\xc9\xae\xd2\x41\xbd\xa3\x78\xf6\x2e\x55\xf8\x48\x73\x5b\x86\x00\xbb\x14\x94\xfe\xe6\xd8\x63\x82\x01\x62\x44\x3a\x9c\x8b\x9f\xf0\xd7\x50\xed\x03\x2a\xf4\x18\xc5\x9e\x7c\xed\xa8\x86\xf2\xa4\x6f\x26\x94\xce\x0b\x02\x51\x24\x52\xde\x57\x78\x8d\x6b\xb5\xc3\x7b\xfe\xe5\x43\xed\xa5\x30\x0b\x4c\x34\xe1\xa5\xba\x27\xba\x1a\xe2\xd8\x72\xd4\x19\x7f\x5e\x53\x86\x29\x03\xbf\x62\x34\x59\x86\xba\x04\xe4\x9a\x7e\x86\xdc\x38\x57\x92\x76\xad\x9c\x9b\x8a\x8d\xbb\xb5\xfe\x9c\xee\x68\x88\x6c\x6e\xd2\xd0\xb0\xe6\x0a\x0e\x01\xd4\xdc\xf9\x5a\xb3\xd6\xbf\x51\x84\xa3\xa1\x8d\xf3\xfd\xe5\x0b\x3a\xb6\xdc\xd2\xa6\x38\x01\x1d\xd5\x2b\x09\x5b\x87\x80\x9c\x69\xbf\x59\x91\xb1\xa3\x49\xc8\x91\x07\x16\xba\x5d\xdf\xd3\x73\xa6\xa3\x64\xdf\x4f\x62\x17\xf2\x8d\xea\x12\xbb\xad\x21\x86\x2e\x11\xdd\x33\x69\xbe\x98\x98\xb4\xd7\x52\x24\xac\x0f\x55\x3b\xd8\x43\x9f\xb3\x8e\xfb\x36\x5a\x0a\xb3\x01\xa5\x80\x90\x7f\xba\xa3\x44\x67\x90\x63\x46\xae\x4f\x53\xe1\xe7\x69\x32\x1c\xe1\x64\xc3\xe1\x7c\x87\xbc\x56\xbe\x76\xf8\xb6\x91\xcd\x6c\x6e\xd8\xb0\x61\xa9\xdd\x54\x9a\x26\x37\xab\x64\x73\xbd\x8c\x4a\x69\x98\xfc\x1b\x74\x00\xf1\x75\x0d\x3a\xb0\x30\x0d\xf9\x28\x64\x15\x9c\xde\xa3\xd7\x7e\xac\x50\xfb\xf4\x4d\xca\xb1\xa9\x84\xbf\x74\x5c\x22\x1f\xfc\x1d\x4c\x9b\x04\xc3\xe5\xaf\xf2\x7f\xd4\xf2\x19\x07\xe7\x10\x6d\xad\x9a\x15\xdd\x3a\xfa\x61\xc7\xc3\x81\x3f\x54\x9e\x98\x8d\x22\xd1\x68\x02\x4a\xe1\x61\x45\xbb\x48\x71\x9f\xdd\xac\x40\x13\xac\x4d\xf7\xf9\x26\x9c\xd3\x1d\x15\x48\x73\x2c\xae\xb4\x49\xe6\x7d\x45\xc7\x91\x40\x9d\xa0\xb7\x40\xa8\xb8\xb3\xab\xe4\xf6\xcf\x76\x74\x60\x7f\xb7\x53\xc1\x27\x3b\x87\x8c\xa5\x53\x84\x4a\x71\xfb\x28\x1c\x38\xd0\xce\x06\x26\x57\x46\x57\xe0\x3b\x1e\x67\xca\x1d\xa3\xe2\x32\x3b\x5c\xcc\x20\x59\x76\x27\x31\x76\xe7\xa7\xaa\xd1\xfa\x53\xa5\xa2\xd6\x37\x51\xc4\x96\xb9\x99\xd2\xdb\x69\x68\x85\xd2\x41\xc2\x6d\x32\x2a\x61\xfa\x4f\x69\x20\xf0\xee\x3f\x56\x5c\x81\xab\xa9\x35\xcb\x52\x3d\x12\xb6\x50\xef\xa6\x9d\xa9\xbd\xf3\xec\x6c\x7b\x34\xb0\x71\x32\xb4\x31\xea\xa4\x08\x7a\x6f\x8f\x15\xff\xe9\x6d\x85\x88\xca\x07\x49\x91\x99\xb8\x97\xed\x2d\xff\x98\x03\x56\x2c\x34\x37\x45\xdf\xf8\x1a\xef\x97\x7b\x2a\x5d\xb4\x8f\x3a\x81\x80\x4c\x65\x2e\x2f\x27\x5d\xe6\x99\x39\x36\x69\xe6\x24\x0f\xd9\x72\x08\xe1\x8b\x6a\x00\xb3\x3c\x0d\xe3\xfe\x2e\x8a\xfa\x25\x2f\x5d\xfe\x8e\x62\x23\x7d\xb5\xe2\xba\xa3\x32\xf1\x70\xbb\xb2\xd7\xcc\x23\x9d\xab\x72\x29\xb5\x83\x81\x49\xfb\xc2\x9b\x87\xf4\xd7\xaf\x3b\x4a\x7d\xe4\xd7\x8d\x14\x11\x8b\x45\xea\xc4\x56\xb1\xe8\xfe\xa4\xe3\x17\xe0\x9f\xd4\x3e\x33\x3b\xdb\x1e\x86\x04\x32\x6b\xf9\xf0\xe3\xaa\x8a\x38\xae\xd6\x9e\xce\x89\x10\x14\x79\xa2\xb4\xf6\x91\x5b\x93\x96\x7a\x1a\x53\x38\xd4\x37\xdd\x19\xdb\x2f\xe2\x78\x4d\x89\x2b\x5c\x56\x0a\x52\x97\xb7\xa7\xe0\x69\x10\x0e\xcc\xec\xa6\x25\x8d\x7c\xd1\xff\x5c\x01\x65\xd0\x3b\x0a\x9a\xdf\x23\x64\x59\x0f\xb9\x12\xe7\xc3\xc0\x7f\xc2\x9e\x31\xdf\xa9\x3c\x61\x9e\xf4\xcc\xda\x7e\xfc\x2f\xc8\x26\xee\x8e\x95\x2a\x2b\xf2\x18\xd2\xe2\xe2\xfd\xfa\x9f\x63\x33\x02\x93\xc2\x71\x03\x96\xe4\x2d\xf2\xaa\x91\x7d\xfa\xa4\xa3\x6a\x8b\xd7\x54\xcb\x2d\x98\xea\x90\x98\x3e\x8f\xa7\x16\x41\x0f\x5f\x21\x7a\xf1\xe9\xf5\x27\x75\x2a\x2f\x32\x31\x19\x73\x38\x52\x5b\x64\xcc\xf9\x5a\xf3\x46\x27\x7d\xf4\x12\x0a\x2b\x9a\x4f\x3b\x9d\x6b\xa2\x98\xea\x91\x7a\x50\x4b\x09\xed\x9f\x52\xd2\xde\x9a\xed\x96\x9a\x1b\x4b\x57\x76\x61\xde\xb7\x4d\xf9\xb2\xa4\x82\xcf\x05\x51\x92\x71\xbf\x25\xce\x0e\xd0\x7f\xf3\x75\xad\x1f\x77\xe6\x70\x3b\x2a\xe2\x60\x60\xd9\x38\x35\x1d\x01\xfe\xcb\x49\xec\x73\xed\x09\xa2\xef\xd8\xb5\xae\x18\x12\xce\x93\xb1\xc4\x9e\x9f\xec\x2a\x95\xcc\x4b\x95\x2e\x23\xdf\x34\x82\x9a\x33\xd6\xc4\xd3\xdd\x32\xb0\x85\x11\x3f\x39\x56\x32\xb2\x2c\xcd\x8d\x02\xc6\x75\x32\x0c\xc8\x59\x31\x78\x9e\x65\xa4\x14\x4a\xff\xe7\xda\xdb\x7b\x77\xbc\xdf\xcd\xe1\xf3\x29\x58\xcc\x5c\x57\xbb\xef\x77\xff\xe9\x58\xc1\x55\xfe\x7c\xdc\xfa\xca\x37\x5d\x59\x4f\xb5\x99\x5f\xa0\x9f\x67\x91\x76\x2c\x53\x96\xb7\x52\x6c\x30\x4f\x75\x7d\x7f\xd5\xa6\x6e\xe3\xba\x3d\xf6\x13\xc2\x62\xa3\x38\xa1\xd1\x0d\x0b\x03\x79\x8c\x0a\x1d\x22\x90\xd3\x3a\x30\xe3\xc6\xca\xf5\x77\xa5\x69\xe9\xe2\x70\xf4\x21\x62\x4d\x4a\x1c\x4a\x77\xc3\xc5\xe1\xf2\xb2\x0d\x69\xc9\x38\x1e\xf6\x83\x32\x36\x3f\xd0\x1c\x24\x51\xb2\xca\x5f\x89\x1f\xbf\x86\xaf\xe4\x1b\xd5\xaa\xb4\x5c\x0c\x6d\xab\xb4\xf4\x58\x77\x4c\x1d\xc8\x37\x4d\xdd\xb2\x26\x08\xc2\x9e\xd0\x41\xc0\x25\x46\xbb\x3c\x5f\x7b\xad\xbb\xd1\x28\x4d\x4c\x30\xb0\x3d\x6a\x31\x57\x44\x7c\x52\x63\x3e\xa5\xf2\x74\x1f\x8d\x55\x42\xa8\xce\x2d\x30\x37\xd7\xce\x46\x26\xf2\x51\x32\x52\xa9\xac\x29\xcc\x37\x4d\xfc\xac\x41\xc2\x16\xd9\xc9\xd0\x2b\xb8\xb9\xdf\x8d\xd4\x3c\xcc\x1d\x89\x8d\x89\x3d\xcf\xdb\x60\xde\xc2\xbb\x63\x45\x9d\x87\x89\xe1\x9b\x2a\x0d\x4c\x0c\xd0\x01\x5c\xc4\x5b\xca\x5d\xbc\xa5\x32\x56\x4b\x91\x59\x9d\x54\x69\x07\x86\x2c\x02\x5e\xfa\x63\xd5\x23\xfc\x63\x5d\xca\xba\x50\x73\x00\x0e\xbf\x4c\x20\x8c\x22\x0e\x33\x70\x88\xcb\xc2\x6e\x39\x7d\x23\x9c\x2c\x12\x7f\xd4\xe9\x8c\xed\x70\xb1\x5c\x8e\x59\x56\x15\x8c\xfe\x61\xc7\x57\xe1\x7e\xd8\x40\xcc\x3e\xdf\xce\x0d\x72\x96\xc2\xc1\x53\xbe\xa9\x48\x32\x78\x38\x5a\x66\x83\xd4\xe6\x22\x7e\x23\x24\xc3\xde\x25\xfb\x76\x83\x78\xf2\x5c\x7b\xc9\xb0\x0c\xf4\xec\xac\xe7\xd1\x9e\xf3\xce\xdf\xb3\x8a\x39\x2c\xb2\x59\x4e\x9a\xb9\x3e\xf1\xc8\x2d\xaf\x7c\x33\xde\xe7\x8a\xac\xbf\x3b\x4d\xe6\x1f\x91\x03\x13\xca\xf2\x4d\x23\xc7\x67\x6c\xca\x8d\xe2\x78\x45\xa0\xac\x24\x40\x48\xf5\x92\xc5\xe2\x28\xb1\xb1\xa1\x03\x1d\x76\xe6\x5d\x9d\x62\x42\xf8\x08\x2b\xb0\x63\x5d\x25\x45\x6d\x9c\x67\x8f\x95\x3b\x1b\x4b\x69\x8a\x42\x4b\x89\x52\x69\xc4\xb0\x51\x6e\xc1\xd0\xb9\xd9\x75\x49\xc3\xfb\x38\x44\xf9\xaf\xc8\x63\xc3\xef\x3f\x4e\xd9\x44\xe4\x4a\x5b\xeb\xaa\xd2\x7b\x0b\x46\x01\xa6\xfc\x94\x33\x49\x49\x91\x2f\x96\xee\x67\x4b\xad\x4a\xf0\x03\xf2\xb5\xd6\xab\xfe\x2f\xfe\x16\x97\xe2\x10\xdf\xbf\x47\xc5\x44\xbe\x56\x8e\x81\x89\x24\xcf\x88\x99\x38\xad\x72\xc3\xa7\xb7\x7b\x2c\xb3\xb3\x87\x4a\x1f\x0c\xeb\x44\xce\x0d\x5f\x36\xb8\x50\x2b\x1b\x1c\x99\x6e\xf7\xac\x2b\x34\x30\xe3\x65\xc7\x7b\xe6\xe7\x14\xd2\x31\xb0\x71\x96\xa4\x58\xe1\xa2\x9f\x0a\x86\x51\xbe\x56\x56\x61\x29\x49\x40\x46\x5a\x0e\x93\x23\xab\x5e\x98\x96\x6b\xed\xf9\xac\x86\x81\xdd\xeb\x53\x92\x77\x3b\x3e\x51\x02\xc1\x12\x38\xff\xbb\xd7\x15\x7b\xdb\x8d\x4e\xa5\xa7\xa2\x9c\x7d\x21\xa3\x54\xcc\xbe\x28\x4d\xc0\x08\xdc\x84\x57\x2c\x83\xf2\x4c\x8d\xe8\xb1\xb7\xbb\xd2\x5d\x74\x40\x88\x09\x2f\x83\x88\x8f\xcb\xbf\x8a\x70\x02\x01\xa5\xb4\x20\xb5\xbc\xf8\x30\x56\xad\xc4\xa3\xdb\x13\xac\xb3\xb3\xed\x30\xee\x15\xa5\x0f\x6f\xa2\xf0\x2d\x09\xb4\x90\x54\xc5\x22\xc7\x77\xde\xaa\xc8\xab\xd6\xb6\x38\xe8\x4a\x8c\xa7\x48\x83\xaf\xf7\x8f\xc7\xbe\xea\xf8\x8f\x3b\xbf\xa5\x3a\x6b\x23\xcb\x66\x0e\xea\xb2\xd9\x6e\xcf\x5e\x0f\x02\x2a\xf8\x84\x9f\x21\x23\x81\x43\x1c\x86\xcf\xd1\xa2\x1d\x9c\x73\x4d\x60\x4a\xf6\x98\x59\x28\x85\x96\xce\x1f\x91\x23\x93\x0f\x5a\x7e\xf9\x69\x4d\xd2\xfb\xaa\x72\x90\x86\x2b\x36\xcd\xc2\x1e\xd0\x23\x48\x7b\x83\xda\x84\xaf\x2b\x21\xb4\x49\xd7\x48\x76\x05\x39\xce\x5b\x63\x0d\xd1\x55\x6d\x18\xb7\x2b\xcd\xb6\x77\x54\x6a\xa2\x05\x01\x60\xd0\x56\x3d\xd4\xd9\xde\x5d\xb4\xdf\x05\x31\xa0\x64\xb5\x77\xac\x2b\x30\xe2\x24\xea\x82\xe8\x61\xba\x0f\x1f\x0d\xe9\xe6\x13\x64\x3b\xe0\xc8\xbd\x4b\x8b\x52\x78\x4c\xb6\x4f\xde\x0b\x2c\xcc\xe8\x4e\x65\x69\x29\xf7\x38\xc7\x4b\x35\x1a\x42\x56\xc4\x4f\x93\x51\x92\x96\x33\x68\x72\x4b\x5d\xc3\x82\x77\x2f\xe7\x53\x5c\x50\x7a\x44\xc1\x5f\xfb\x9a\xf4\xb7\x15\xdb\x76\x2f\xcc\x92\x45\xbb\x86\x04\x19\x42\xad\xd3\x9a\xd6\xa1\x2e\x0d\x29\x71\x57\x54\x04\x38\x56\xc4\xe5\x56\xae\x4f\xfd\x0c\x38\x70\xa0\xbd\x94\xa4\x0c\x71\xc5\x74\xdc\xea\xa8\xc4\x0c\x28\x86\x1d\xe7\x88\xea\x2b\x1b\x84\x51\x38\x42\xa6\xcb\xb9\xb7\x73\x73\x4e\x31\xb5\x21\x92\xe4\x46\x84\x09\xdf\x38\xdc\xea\x7a\xd4\x2f\xaf\x5a\xf8\x5b\x37\x6a\x93\x42\x0d\x7a\x68\x15\x50\xd0\x90\x6b\x1d\xcf\x6e\x79\xad\x01\xa6\x1d\x0e\x47\xd6\x61\x30\xc4\x12\x2a\x42\xdd\xe3\x8d\x10\x86\x6c\x94\x2c\x53\x63\x2e\xe0\x61\x42\x58\x45\xcf\x87\x50\xf3\x56\x47\xc1\xa2\x8f\x55\xb3\x48\x2b\x2f\xf2\xd9\x81\x6c\xd1\x5f\xe8\xd4\xd1\x5f\xb8\xfc\x6d\xbf\x10\x5e\x01\x1d\xa3\x4a\x58\x5a\xc7\x12\x1f\x6a\xc7\x49\x98\xe1\xb0\xc1\xd4\xa0\x16\xc7\xd7\x6a\x66\xa2\xf0\x8d\x22\xec\xb5\x74\x5a\xc5\x57\xbf\xce\x80\x1f\xa7\x32\x48\xcf\x4f\xb4\x9e\x7f\x5e\xb6\x4c\xa7\x52\x97\xa3\x44\xbb\xf4\xb9\x3d\xa3\xe1\x0a\x79\x18\xdb\x38\x9f\x50\x14\x20\xe0\xf9\x44\x42\xe4\x63\x55\x7c\xf9\x45\xc7\x1b\x1d\x1b\x65\x76\xd2\x47\xe9\x3b\xbb\xaa\x27\xe4\x97\x63\x50\xac\xba\xa6\x1e\x87\xdf\xa9\x93\x49\x96\xab\xa9\x8c\x1f\xd9\x3e\xf3\x0f\x8d\x7d\x71\x89\x51\x82\x70\x1b\xae\xd5\x36\x0b\x15\xb0\x93\xb8\xf4\xdc\x70\xba\x22\x74\x7b\x67\xec\x71\x68\xef\xd4\x96\x30\x71\x7f\x17\xbd\x50\x94\xe9\x84\xd1\x96\x66\x11\x63\xb0\x97\xfc\x1b\xb0\x53\x3e\xd5\xf5\xe7\xd8\x20\x8c\x7b\xcc\xcc\xea\x71\x96\x4a\xed\xef\x4e\x2d\x8d\x72\x70\xae\x9d\xa7\xd6\x64\x45\x6a\x79\x9d\x38\x72\x90\xaf\x7c\xd3\xb1\x86\x28\x85\xdd\x24\xcb\xc2\xc5\x30\x0a\x73\xae\x33\x62\x0a\x91\x54\x76\xb2\x79\xba\x41\xcb\x75\x01\xaf\xd7\x84\x24\x0f\xce\xb5\x7b\x36\x48\xe2\x2c\x4f\x0b\xcf\x2e\x23\x94\x07\xe5\x27\xf9\xba\x66\x4f\x88\x85\xdd\x2c\xe1\xb4\x70\x64\xf6\xe5\x54\x08\xc8\xf2\x29\x5f\x7d\x89\x89\xba\x06\x53\xc8\xb6\x9c\x8e\x34\x69\xcf\x57\xa9\xf8\xfb\x2e\x97\x99\xe5\x6b\x7d\xe1\x7f\x91\x12\x50\xa5\xd4\x53\x9f\xeb\x57\xdb\xc3\xb0\x7c\x95\x0c\x21\x0e\x4e\xf3\xb3\x4a\x74\xf2\xac\x7b\x2a\x92\x77\x4e\xa5\xd9\x47\x92\xaa\xe5\xa7\xf8\xba\x16\x60\xcc\xce\x72\x1f\xa6\x4f\x91\xa0\xe7\x0b\x18\x6e\xbe\x1e\x3f\xa7\xbb\x27\x03\x4b\x6c\xc0\x19\xd1\x71\xb0\xd2\x36\xac\xae\x74\x40\x94\xb3\x26\x12\xdc\x8a\x3b\xe4\x73\x15\xb1\x45\x79\x6f\x17\x0c\x0d\x30\xef\xb7\x95\x12\xea\x3d\xc5\x9f\xf2\xdd\xb1\xaf\xcf\x7c\x36\x56\x62\xfb\xa7\x74\x78\xf0\x50\x4b\x16\x25\x69\x12\xe7\xc9\x94\x6e\x42\xde\xd4\xcc\x2f\xd8\xea\x18\x91\xdb\x1d\x55\x93\xdf\x04\x93\xad\x28\x5d\x3e\xa9\xe8\x86\xd3\x30\xe7\xe3\x4c\x10\x00\x7e\x35\x1e\xeb\x78\xa9\x8d\x4c\x34\x55\xa4\x4a\xec\x43\x30\x24\x6c\xa5\xf4\xbe\xdf\xd7\x52\xa2\x44\x9d\x09\x6f\x6b\xb8\xe0\xdb\x8a\x06\x6d\xc5\xc4\x3d\x1b\x93\xb8\x9d\xc7\xf9\x41\x39\x59\x78\xac\x1a\x4e\x9d\xac\x48\x57\xc2\x15\x49\x65\xe8\xc4\xad\xe4\x67\x1b\xce\x54\x82\xbf\x93\x61\x41\x8e\xfe\xc7\xf0\x7c\xf9\xc6\xbd\xed\x4a\x98\x15\x26\x82\x35\x11\x66\x5f\x6f\x38\x91\x12\x96\x44\xd0\xf6\x08\xb5\x74\x38\x8a\xf2\x64\x5b\x10\x66\x4c\x7c\x96\xaf\x5d\xa9\x29\x4e\xd2\x7c\xb0\x2a\x8d\xc8\x42\xff\xd0\x72\x7d\xda\x9f\x29\xaf\x23\xb5\x91\xc9\x6d\x8f\xa0\x80\xa2\x6f\xaf\x1a\x85\x41\xf2\x22\x0a\x2b\x3e\x3b\x52\x3f\xad\xa1\x57\x49\xf2\xd8\x2d\xa5\x3c\x74\x1c\x8b\x9c\x6f\xc6\x55\x91\xf4\xe1\xa4\x47\x69\xb2\xfa\x3f\xdf\x60\x07\xe0\xc4\xfe\x18\x5f\xc1\x37\x0e\x15\x68\x7b\x7d\xf8\x05\xdc\x5b\xa4\x0a\xab\xe7\x9b\x8a\xff\x41\x12\x2f\x59\x9f\x12\x60\x9c\x39\x2c\x95\x80\xce\x7d\x86\x6a\x94\x14\x71\x8f\x29\xcf\x50\x1d\x82\xe6\x03\x02\x59\xc8\x6a\xf1\xbf\xab\x3e\xe8\xe3\x4d\x12\x2e\xb6\x07\x23\x84\x69\x65\xef\x8c\x6f\x9a\xb4\x38\xc3\x38\x4f\xc3\x7e\x11\x32\x26\x06\x7e\x1c\xc8\x57\x50\x54\xbc\x32\x56\xe6\xbe\x5e\xb1\x3b\x38\xd7\xee\xa7\xd6\xe4\x13\x15\x0c\xad\x5f\x64\xff\x4e\xc9\x14\x9d\x54\x68\xed\x30\x48\x5a\x7a\x91\x57\x10\x47\x3e\xcf\x93\x26\x86\x7b\xe0\xb8\xdf\x01\xc1\x37\xf6\xee\x07\x63\x9f\x2e\xf8\x84\xce\x73\xf8\x91\x1f\x34\x34\x88\xbf\xda\x1e\x99\x90\x67\xc3\x91\xd5\x39\x6e\xda\xcd\xf1\x3e\xcf\x36\x91\x3c\xe1\xcb\xfc\xdc\x8d\xec\x78\xe8\xbe\xf2\x4d\x61\x46\x54\xb8\x50\xd6\xcc\x46\xa8\xfa\x9e\x12\x26\xbe\x45\xb3\x05\xf3\x39\xb5\xee\xa3\xc4\x0d\x8d\x21\xfb\x78\xec\x5b\x8d\x4f\x70\xe0\x22\x69\x1a\x1a\x7a\xfe\x11\x64\x30\x30\x95\xb7\x3a\x0a\x3d\xbc\xa9\x74\x38\x4b\x3f\xe0\xff\xe3\xeb\x4f\x63\x24\x39\xd3\xfc\x30\x9c\x9d\x55\x7d\x90\x6c\xce\xf0\x9e\x95\xfe\x1f\x94\xfb\xc7\x58\x94\x60\x6a\x20\xd8\x80\xb1\x5a\xc0\x88\x44\x55\xcd\x72\xba\xa0\x29\x16\xaa\x7b\x9b\x2b\xfa\x0b\xdf\x8c\x7c\x2b\x33\x58\x91\x11\xc9\x38\xaa\xba\xe8\x0f\xb6\x05\x41\x10\x0c\x7d\xb0\x24\xcb\x80\x60\x58\x90\x64\x59\xf2\x5a\xe7\x4a\xda\x63\x66\x77\x95\xb5\x1c\xce\x70\x66\x67\x76\x86\x6c\x92\x33\xbc\x86\xec\x66\xdf\x47\xf5\x7d\x1f\xd5\x46\x3c\xbf\xe7\x79\xdf\x27\x2b\xa2\xfd\x2d\xa2\xbb\x32\x33\x8e\xf7\x7d\xce\xdf\xf3\xfb\x1d\x7a\xdc\x43\xec\x79\x78\x03\xf9\xce\x26\x10\x8e\x42\xe2\x40\xcf\x02\xdd\x83\x1d\x9d\x6a\x9b\x0b\x88\xb4\xba\x7d\x91\x17\xf5\x8d\xb6\x69\xa4\x4e\x78\x60\x37\x09\x09\x2a\xd4\x10\x0a\xb0\x7e\x6a\xac\x4a\x25\xa7\x14\x17\x73\x37\x4b\x8b\x81\xcd\x76\xaa\xb8\x69\x93\x23\x32\xc4\x36\xac\x20\x24\x4b\x85\x12\x6f\xfe\x9f\xb1\x9f\x2c\xb8\xd5\x80\x7e\x6c\x2f\x47\x71\x5c\x59\x75\x57\xfb\xb9\xa4\xe4\xab\xd8\xcf\x0b\xef\x7e\xc3\xf4\x6d\x51\x66\xa2\xe8\x8f\x0c\x97\x55\x4e\xf8\xe4\x21\xb9\x46\x2e\xe5\x5c\x31\x09\xf4\x19\xb1\x09\x4e\xc3\xc4\x8e\x2c\x06\x9d\x90\xb9\xfc\x07\x4d\xb5\x75\x1b\x9f\x11\x7e\x30\xc0\x61\xea\xc4\x62\xa1\x19\x8e\xac\x29\x11\xa6\x09\x76\x4b\xd1\x99\x9c\x6d\x5c\xef\x26\x0b\x07\x70\x88\x30\xfd\x18\x62\xe5\xe3\x9a\xb9\x3f\xf0\x72\xbb\x48\x4b\xd4\x40\xb1\xfa\x4e\xa9\x52\xd0\xf7\x15\x4d\xdc\x97\x3e\x54\x1a\x99\x2c\x13\x13\x27\x28\x86\x09\x7c\x83\x4e\x5c\x8a\x34\x6e\x69\x6c\x18\xeb\x01\xf0\x89\x6a\xae\x98\x18\x3e\x54\x11\x87\x4c\x28\x7b\x6c\x77\x06\x2f\xbc\xd0\x1e\x46\x49\x4a\x01\x80\x07\xd2\x5d\xd3\x4d\xc0\x6b\x81\x8f\x64\xcb\xc4\x24\xd1\x10\x74\xa5\x3e\x0c\x3a\xa7\x44\x82\xcf\x05\x93\x18\xab\x64\x4a\x41\xd4\xbf\xa4\xc5\x88\x97\x79\x43\x61\xa3\xce\x28\x6c\xd4\x5a\x14\x0f\x6c\x3c\x44\xf6\xca\x8e\x8e\xfe\x54\x9c\x9e\x87\xf0\x74\xe3\x34\x5c\x31\x3d\x8b\x9f\x70\x4c\x2f\x8e\xc6\x08\x51\xbc\x70\x9d\x35\x94\xea\x0b\x6b\x86\x1a\x25\x0b\x7a\x22\x3e\xae\x91\x80\x54\x61\xff\xc0\x24\x2b\x79\x3f\x5a\x75\xf1\x24\xfa\x37\xcc\xa2\xce\x27\x81\x26\x24\x35\x99\xfd\xaa\xe2\xd5\xbd\x44\x8f\x00\x36\x65\x37\x95\x4d\x60\x39\xf6\x74\xa8\xa1\x23\x52\x52\xd5\x52\x42\x0e\xc3\x5c\x05\x12\x82\x68\x2e\x74\xc0\xa2\xd1\x5a\x60\xf5\x29\xd7\x04\x9a\x15\x11\x75\x90\xdf\x0b\xb3\x70\x6b\x76\x96\x63\x8b\xb3\x81\x6a\x92\x5d\xd1\x1a\x55\xa7\xc6\x8a\xc3\xf3\xda\x43\x95\xec\xbb\x99\xb5\x3d\xe6\x50\x5f\x74\xa2\x64\x5a\xa1\xac\x89\xd0\x23\xb7\x85\x0f\xc6\x61\xb8\xe1\xf2\xf8\xb8\x16\xc3\xcf\xce\xb6\x4d\x6f\x35\x0d\x55\x0c\x2f\x13\xcf\xbe\x9a\x75\x42\x41\xc7\x13\x33\x04\xf4\x52\x13\x0e\xb8\xcc\xd3\x13\x70\xb3\xce\x35\x2a\x08\x3b\x79\x18\x0e\xd1\xf1\x9d\xe0\x39\x05\x5b\xd8\xfe\xca\x1d\xe6\xc8\x35\x1f\x8f\x2b\xf1\x8e\x15\x9b\xa4\xf9\xc0\xb4\x54\x9b\xe8\x82\x1a\xce\xd7\x65\xbe\xae\xe9\xe7\xe0\x5c\xd6\x55\x1a\x54\x0d\x1e\xef\xf8\x12\xec\xf4\x46\x43\x94\x54\x59\x06\xe6\x9e\x9a\x9f\xe7\x20\xf0\x16\xe2\x0d\x24\x4e\x47\x94\x30\xe0\x23\x8a\xc3\xcb\x1e\x8a\xc0\x8c\x2a\xad\x3f\x4f\x59\xc0\x9d\x20\x2c\xe3\x6b\x4a\xed\xf6\x5a\x20\x3d\x36\xaf\xdc\x38\xa5\x31\x5b\x7f\xa4\x2b\x30\x97\x83\x89\x1c\x5c\xcc\xb9\x5d\x25\x29\x11\x4f\x04\x29\x0f\x1d\x11\xc2\xf4\x86\x5a\x3b\x3f\x6a\x80\x94\xef\x6f\x9b\x21\xb5\x8a\x40\xa2\xed\xdc\x8d\x27\x10\xb9\xa6\x05\x24\xcf\x37\x60\xc6\xdb\xab\x51\x58\x44\x43\x25\xa7\x8a\xd2\xa3\x80\x41\xfc\x6b\xcc\x4d\x9c\x0e\xb9\x9f\xed\x48\xed\xbc\xbc\xb5\x03\x2a\x5b\x93\xdb\x09\x86\xdc\xf7\x02\x95\x8c\xbd\xa7\xa8\x48\x46\x26\xb6\x79\x11\x25\x8c\xad\xf3\xda\x46\xd5\xd7\x8a\xb4\x91\x6f\xeb\x0c\x6d\x2f\x82\xae\x83\xeb\xa8\x73\xc0\xcf\x27\xaa\x0f\x55\x26\x28\x62\x30\xa2\x15\x25\xcb\x6b\x6a\x8c\xe6\x9a\xda\x1f\xe1\x9a\xd1\x1c\x49\xdb\x7c\xaf\x8e\xfb\xd7\x8a\x01\x61\x75\xa4\xab\x4d\x16\x0a\x20\x8b\x7f\x8d\xc7\x2e\x0c\x30\xad\xf9\xf9\x2d\x7a\xf8\xaf\x6e\x5d\x0a\x14\x57\x4f\xa0\xb0\x80\xbf\x80\x59\x11\xec\x22\xbd\x43\xec\x89\xfa\x70\xdd\xe2\xcb\xfb\xdb\x85\x89\xe2\x74\xbb\x8b\x54\xc3\x09\xc7\x55\x0a\xdb\x2b\xbb\x5d\xdb\x9b\xaa\xe2\x2a\xed\x80\x11\x3d\x1e\xd7\xe3\x62\xdf\xd1\x71\x74\x06\x14\x0c\xee\x0f\x7a\xc7\x18\xd5\x7d\x4f\x7b\xcd\x77\x9a\x48\x1f\x7f\xf5\x5b\x7f\x63\xf1\x5b\xdf\x5c\x20\xe0\x23\x6e\xe9\xd1\x8e\xaf\xd2\x7f\x80\xc7\x83\xe2\xd9\x4e\x9e\x50\x73\x4a\x20\xde\x1b\xec\xd8\xf0\x1a\x3f\x3b\xc0\xfd\x21\xfa\x13\xd5\xc5\xc0\x82\x1d\xc6\x98\x92\x4c\x08\x55\xd1\xa6\x9a\x42\xdb\xcf\x65\x85\xdb\x08\x09\xb0\x97\x76\xd7\x24\x15\x66\xe7\xda\x03\x1b\x4f\x74\x59\x59\xa4\x83\x4f\x6a\x60\xd2\xbf\xdc\x8e\xd3\x9c\xc7\x62\x38\x06\xa6\xbd\x22\xf1\x70\x03\x06\xae\x17\xe5\x43\xb3\xee\x84\x2f\xe0\x91\x31\x7f\xe3\xe0\xf4\x8e\x58\xff\xfc\xf8\x57\x1b\xe0\xab\x51\xb2\x9c\x19\xd4\xb6\x4a\x2c\xfe\x2d\x7a\xe9\x5b\xc7\x5d\x1d\xa8\x6f\xe2\x55\x93\x44\x6f\x22\x89\x77\xcc\xfc\x6a\x28\xdf\x2f\x8c\x22\x5d\x73\x32\x1f\x4d\xba\xa7\x3e\xc6\xce\xcc\x30\xca\xec\x9b\xad\xd6\xb7\xe7\x1c\x1f\x81\xe2\xde\xaa\xd7\x1f\xc8\x06\x13\xc5\x33\x7f\x3f\xd7\xca\xd5\x95\x5c\x54\xa3\x1b\x26\xe4\x31\x1b\xe9\xea\x29\x45\xa7\x0b\x35\x1c\xc1\xbe\x85\xf6\xb2\x8d\x0b\x24\xe8\xcc\xf1\x49\x1b\x4b\xf8\x3e\xc5\x1e\x0f\x6d\x61\xba\x69\x1c\xe5\x30\x6a\xcc\xbd\x11\x4c\x10\x71\x6c\x0f\x64\x90\x63\x17\x59\xd4\x2d\x0b\xf7\xb2\x90\xb1\x9e\x52\x84\x06\xd7\x95\xb2\xfd\x97\xaa\x12\x31\xb2\x49\x1e\xa5\x09\x4a\x99\x28\x16\xbf\xaf\x2a\xe4\xef\x93\x98\xdb\x25\x28\xbe\x5d\x52\xc8\xa6\xbc\x30\x19\xc1\x9a\x51\x20\xf8\xee\xd8\x1b\x8a\x73\x94\x12\x09\x9e\xb3\xa1\xa2\xbc\x6c\xe2\x90\xad\xb1\x20\x66\x54\xc4\x75\x45\x75\x5b\x33\x6a\xd2\xf1\xa4\x95\x7b\x72\x0e\xac\x76\x7e\x52\x8a\x28\x1b\x7e\x95\x6c\x21\x32\x9c\x2d\xd8\x42\x38\x13\x16\x78\x50\xd8\x65\x41\x9f\xdc\x44\xed\x1d\xef\xee\xcb\xc0\x0f\xfc\xfd\x1d\x64\xbc\x7c\x12\xf8\x54\xf8\x06\xbd\x3b\x86\x39\x92\x36\x0d\x62\xeb\x0b\x3a\xe4\x9f\xea\x28\xc6\x90\xa3\x63\x35\x9a\x81\x9a\x16\x7e\x0f\x65\x6c\x04\x8d\xef\x35\x2a\x0a\x8f\x52\x59\x91\xdc\x2a\x08\x3c\xe0\xb2\x5e\x82\x75\x98\xc0\x84\x79\x31\x64\x46\x57\x11\x70\xd4\xb1\x1f\x0b\x54\x85\xce\x94\xf7\x73\xc8\x5c\x5f\x88\x39\xd9\x00\xaf\x58\x6c\x9b\xd0\xf4\xec\xd0\xb6\xc8\xda\xe1\xe9\x1e\xa3\x3d\xc9\xc7\xb5\x8d\xb6\x6f\xa1\xdd\x35\x59\x18\x9b\xf5\x09\x99\xe5\x13\x9a\x90\xe7\x32\xa3\x78\x11\x73\xd4\x01\x96\x0b\x0b\xed\x7e\x66\x2a\x27\xd1\x52\x72\x79\x3c\x07\x21\x05\xb0\xa6\x90\x23\x2b\x93\x44\x08\x3e\x1d\x4c\xa7\xfa\x06\x2c\x85\x8f\xf1\x9a\xf0\x6a\x6e\xd4\xa6\xf8\xaa\x5c\x32\xb3\xcb\x99\xcd\x07\x2e\x7c\x84\xf5\x23\x1e\x29\x39\xee\xf8\x84\x21\x5d\x4b\x6c\x6f\x7a\x62\x8e\x49\x15\x56\xe9\x4d\x82\xce\xf6\xe3\xb1\x62\xdf\xfd\xb8\x3e\x49\xb0\xb4\xd8\x1e\x98\xd1\xc8\x32\x90\x1f\x70\x48\xc4\xcc\x7c\xdc\xd8\xd7\x88\xc8\xa0\xc4\x56\x69\x1f\x5f\x54\xf1\x79\xbd\xfd\xb5\x34\xd3\xa6\x80\x90\x7b\x05\x5a\x34\x51\x66\xd4\xe8\x21\x33\x9b\x64\xf0\x9c\x1f\x6a\xea\x0d\xa3\x84\x27\x55\x54\x31\x00\x0c\x26\xd2\xd8\xaa\x2f\xbc\xfd\xed\xcc\xe6\x36\x5b\xc5\x63\xf2\xd5\x77\xd5\xc3\xe6\x21\x3e\x58\x6e\x26\xb0\x14\xf2\xf2\x89\xc1\xde\xd7\xa9\x85\xe3\xcd\x1c\xb3\x04\xca\x48\xbe\x6f\x0c\x98\xb2\x18\x54\x59\x72\x64\xf3\x3d\xd5\x7e\xc7\xef\x5c\xc2\x6a\x47\xbc\xbd\xa8\xd1\xeb\xe0\x4c\xc2\x2e\xdd\xe4\xb5\xc9\x7f\x16\xf8\xc4\xf9\x7b\xb8\x34\x84\x29\x00\x9c\xb0\xae\xb0\x2b\x43\xc7\x65\x31\xb0\xa0\x70\x40\xc3\x8d\x39\x13\xf9\xa4\xc9\x71\x64\x69\x0e\x02\x4f\x58\x92\xeb\x78\x18\xc0\x81\xfd\x12\x37\xa8\x1b\x4d\xc8\xab\xa7\x3b\x0d\x75\xe2\xa1\xc9\xb2\x88\xc8\x1d\x55\x77\xbd\xe5\x59\xdd\x5d\xc7\x34\x2f\x93\x15\x84\x16\x58\x5b\xef\x05\x7e\x84\xe3\x3d\x4d\xfa\x15\x47\xfd\x41\x11\xe3\xf2\x10\x9a\xde\x50\xca\x37\xef\x07\xde\xa3\x33\x4a\x58\xd8\x49\xea\x21\xd8\x42\x3b\x5d\xb5\x19\x17\x22\x1c\x06\xdc\x79\xaf\x4d\x15\x05\x0c\xa2\xb8\x48\x93\x87\x37\x9a\xbd\x8f\x2a\x6c\xc2\xb5\x64\x2e\x27\x4c\xea\x9d\xb7\x1c\xb3\x0b\x17\x6b\x44\x15\xdd\x07\x95\x0b\x33\xfb\x38\x33\x02\xfe\x09\x79\xa2\xe3\xf1\xf7\xd0\xbd\x5b\xb5\x92\xb2\xcb\xac\xd3\x75\x8e\x15\x1c\x53\xb2\x97\x86\xb9\x58\xc7\x09\xcc\x01\x09\x82\x8d\x8e\x07\x86\xd6\x0c\x1f\x07\xbe\xaf\x17\xae\x98\x22\x4d\xd9\x3d\x20\x94\x47\x21\x86\x8f\x27\x11\x23\xcb\xc5\x13\x95\x5f\x46\xe4\xcc\x06\x07\x1b\xf3\x30\x17\x22\x60\x15\xae\xd2\x34\xda\x2d\xed\x23\xdf\x0b\x3c\xf2\xef\x0e\xd5\x87\xb0\x31\xbe\x24\x7c\xaa\xf2\x71\xaf\xfa\x26\x56\x65\x1d\x1d\x00\xd0\xf1\x6d\x4e\x81\xa1\x4d\x54\x54\xc9\xc3\x4a\x0c\x2a\x00\xb2\x6e\x04\xb5\x0e\x5a\x0b\x22\x41\xe7\xf7\x4c\xbd\xcd\x70\x70\x66\xae\x5d\xd8\x6a\x6b\xd9\xde\xb4\x6f\x57\xde\x0e\x14\x44\x05\x32\x21\xd8\x9c\x6f\x8f\x95\x98\xcf\x97\x2e\xac\xcb\xec\x30\x0a\x59\x41\x03\x9e\x5e\x82\x7d\xac\xfd\xdf\xd6\xac\xa3\x20\x06\x92\x0a\xcd\xe3\x6e\x83\xff\x7f\x61\x42\xa4\x5c\x58\x98\xa4\xef\x58\x22\xe1\x5d\x3f\x0f\x14\x73\xdd\xe7\xb5\xba\xc9\x6b\xaf\xb5\xe3\x68\xd9\xe6\xc5\x7a\x6c\x99\x42\x1c\xf6\xf8\x28\xbf\x3a\xd7\xc9\xf5\x92\x8f\x9b\x3a\xe2\xbd\xd7\x34\xe5\xb2\x5c\x66\x49\x24\x91\xb9\x07\xdf\xb8\x39\xdd\x46\xed\xaa\x3c\x8d\xed\x34\x95\xcf\x9d\xe6\xb3\x9b\xa0\x42\x37\x14\x86\xf2\x84\x52\x76\xf9\xe3\x06\xba\xcc\xfd\xdb\x1b\xd3\x6e\xd8\x79\x7e\x5e\x68\x24\xb5\xb3\xb9\xe5\xd6\x47\x5c\xb9\x19\x99\x73\x6f\xea\x13\x3e\x6c\x2b\x66\x65\x2c\x01\x8e\xa3\xed\xad\x9e\x17\x9f\x4c\x14\x69\x07\x29\x66\x5c\x1d\xe7\x9d\xe7\xbf\xab\x99\xaf\xa5\x99\xf6\x28\x8b\xc2\xc8\x66\x53\xbe\xbe\x7d\x16\x19\x36\x32\xd8\x9b\x60\xcd\x94\x74\xd0\x8d\x8f\x45\xab\xa9\x68\x03\xc2\xf8\xdc\x0a\x7c\xed\xfe\x96\x9a\x5c\x2d\xd2\x32\x64\xaa\x8f\x97\x3c\x8e\xd5\x63\x5a\x55\xad\x21\xb3\x51\x3f\x11\x04\x04\xa2\xd7\x77\xe9\x4f\xf9\xb8\x11\x89\x93\xd9\x37\x4a\xc5\x1d\x83\xe7\x8f\x6a\x23\x1f\xeb\x8b\xa9\xd6\x4d\xf5\x03\x73\x07\x5c\x6b\xa1\x32\x0a\x7c\xdc\xc8\xeb\x39\x34\x31\xee\xb3\x91\xb8\xbd\x5e\xdc\x59\x68\x17\x59\x29\x60\x5f\xb9\x84\xea\x85\xc8\xa5\xc9\x33\xcc\xd2\x74\xd9\x5d\x37\xb0\x6d\x98\xf9\xe6\x63\xf7\x87\x6b\xd6\x14\x24\x63\xec\x50\x28\x47\x54\x01\xe2\x6d\xfa\x0c\x96\xda\xde\xce\x04\x95\x17\x19\x29\x6d\x45\xb0\xf3\x6e\x8d\x5b\xaf\x2c\xca\x37\x35\xce\xee\xda\x24\x4c\xcb\xcc\xf4\x99\xed\x87\x69\xaa\xb0\xa8\x85\xb3\xca\x17\xc0\x4d\x58\xbd\x02\xdb\xdb\xe3\xe9\xdb\x8e\x4e\xd0\x7c\x2b\xd4\x17\xae\x09\xb5\x02\x40\xb3\xb0\xd1\xd0\x67\x43\x9e\xb1\x83\xfa\x6c\xa8\xc9\xff\x49\xa0\x28\x00\x77\x75\xdc\xb3\xe3\x34\x59\x57\xee\x78\x9e\x97\x4f\x6a\x61\xf4\xfc\x7c\x3b\x1f\x44\xa3\x75\x51\xe6\x97\x86\x20\xdd\x94\xd4\x02\x7c\x43\xb7\xca\xff\x45\x0c\x42\xfb\x5d\x71\xb5\x4d\x5c\x13\xa3\x28\x4d\xac\xcd\xf8\xaa\xd0\x3d\x65\x63\xc6\x27\x4d\xad\xaf\x6e\x16\x75\xc5\xa6\x4a\xb1\x58\x8d\x05\x9d\x74\x92\x38\x61\x9c\x16\x55\x00\x3f\xad\xf6\xd2\xb3\x94\x87\x21\xaa\xfa\xf3\x1d\x8f\x57\xff\x72\xec\xa1\x05\xe7\x6b\x76\x65\xee\x40\x7b\xd9\xf6\x6c\x46\x4a\x69\x53\x3e\x9d\xbd\xa6\x88\x0b\xc7\xb8\x70\x09\x8f\x24\xd3\xcf\xed\xc8\x20\xb9\x55\x48\x99\x23\x0a\x29\x73\xc4\x19\x09\x53\x14\x26\x1c\x58\xfa\x7e\x94\x8d\x30\xbc\x04\xa4\xe9\x27\x64\x66\xa5\xe0\xa7\xc6\x0b\xb3\x68\x58\xb9\xd0\xd9\x39\xcf\xd3\xe4\xfa\xcf\xe7\x55\x88\xb3\x62\x23\x0e\x71\xb4\x9c\x29\x1e\xc5\x09\x1d\x05\x37\x12\x6f\xf6\xec\xb2\x35\x2c\xae\x80\x25\xfd\x9f\xe8\xf3\x7c\x5c\x6b\xcc\xcf\xce\xb6\x07\x2b\x5f\x07\x10\x43\x68\xae\x77\x7c\xdd\x49\xb3\x29\x9c\xcc\x17\xaa\xda\x9a\x8f\x6c\x18\xd1\x53\x06\x0b\x15\xdc\xd3\x17\x7a\x51\x9f\xd0\x22\xb5\xd2\x59\x91\xf2\xf3\x57\x54\x1b\xbd\x1b\x21\x76\x94\x52\x08\x7d\x8c\x4f\x1a\x97\xe3\x72\x59\xb9\x48\x86\xa2\xb1\xa2\xe1\x58\x07\x85\x97\xf4\xe4\xe2\x9f\x35\x15\x3c\x56\x6d\xbc\x6a\xf9\x29\x89\x93\xd2\xce\xeb\x49\x4d\x6e\x92\xe7\x51\xa8\xb9\x0c\x34\xd9\xcb\x66\xf0\x28\x7f\x6b\x14\xf1\xfe\x10\x82\x6d\xba\x06\xa1\xde\x6e\xd8\x1f\xaf\xa7\x20\x49\x50\x4d\x34\xad\x1e\xe4\x6a\xe0\x59\x5a\x39\xc9\x6a\xd9\x2b\x20\xb7\x63\xf5\x69\xa2\xe8\x19\x9a\x6c\xa5\xa5\xd2\x12\x7e\x15\xb2\x84\x9e\x91\xe2\x56\x94\xf7\xec\xd0\x9a\x24\x95\x1a\x1e\xf7\x14\x14\x43\xd9\x45\x25\x65\xb9\x6c\x42\x16\x7f\xd8\xe5\xbb\x27\x80\x9b\x8b\x1d\xa3\x7b\xe6\x65\x84\xea\x34\xaa\x09\x8f\x6c\x78\xa1\x0a\x88\xcf\xc8\x5a\xf3\xd9\xcb\x1b\xa5\xcd\xab\xfd\xb7\x53\x09\xbe\xff\x5c\xed\x11\xa0\xee\x91\x91\x6f\xea\x56\xd3\x0e\x1a\x17\xe4\xff\x70\x49\x93\xed\x9b\xde\xb4\x37\x01\xc7\x75\x42\xff\x4f\xb5\x60\xff\x55\x1a\x8c\xc5\xf5\x6c\x05\x8f\x7b\xc0\x42\xa4\x79\x81\xce\xe9\xf1\x21\x4d\x60\xfb\x57\xf8\x1d\x8a\xde\xa5\x2f\x42\x9e\x6d\xa2\xf9\xb0\xc9\x72\x64\x63\x30\x5e\xe0\x4d\x7f\xae\x1b\xe6\x9f\x2b\xff\xf3\xba\x4d\x92\x68\x99\xd3\x53\x07\xf8\xab\xde\xe4\xc3\x00\x7f\x04\xe1\x15\x46\xb5\xea\x53\xac\xe9\xa7\x14\x16\xcf\xea\x59\xc1\xd8\x24\x16\x14\xd1\x80\x55\x5e\x42\x54\xc4\xea\xf3\x64\x34\x11\x5c\xff\xab\xf1\xe4\xec\x68\xe5\x3d\x44\xa3\x5e\x48\x25\x6c\x5e\x98\x6e\x1c\x09\x01\x9a\x1f\xd7\xa3\xa7\xc8\x27\xb5\x4a\x0a\x71\x60\xc7\xf1\xb6\x8e\xef\x0f\xc7\xfe\xcd\xfd\x50\x81\x6e\xfa\x99\x20\x65\xb0\x3e\xee\x68\x23\x73\x47\x59\xdb\xa1\x59\xb1\xe5\x08\xd7\x21\x1a\x58\x3e\x06\x39\xae\x41\xc3\xa6\xec\x59\x40\xc4\xa4\x86\x49\xef\x43\x8a\x9b\x92\xdd\xd9\x43\x6f\x94\x51\x1e\xb1\x66\xb7\x8c\x91\xe9\xc2\x55\x4d\xbe\x61\xae\x3d\x1a\xa4\x36\x89\x0e\xb5\x7c\x0e\xc8\xde\x9c\x4f\x5c\x2c\x94\xa7\xf1\xaa\x90\x14\xc1\x77\x5c\x52\x40\xae\x4b\x4d\x74\x04\x69\x18\x96\xac\x78\x2b\xc2\xa1\xfa\x6a\xaa\x1b\x92\x12\x91\xfc\xca\x72\x66\xfa\x51\x6c\x55\xf0\x73\x64\x82\xd3\x4c\xcd\xab\x47\x49\x8f\x0a\x73\x4b\x42\x06\x86\xa8\x06\x76\xf9\xe7\xb4\xe9\xc5\x0b\xef\xe1\x6f\x5f\xd1\xed\x0f\x44\x15\x7c\xac\x38\xef\x4d\x96\xd9\xbc\x98\x9e\xd4\x95\x73\x55\x33\x90\x69\x03\xa2\xc3\x10\x69\xc4\x51\x77\x55\x8b\xcd\xf6\xfb\x34\x81\xc8\x1d\x1f\xfa\x88\xeb\xfe\x78\x50\xd9\x55\x2e\x0c\xf1\x99\xf2\x39\xc3\x17\xba\xe9\xda\x94\xaf\xc6\x5e\xa3\x5b\xc3\xed\xbc\x3b\x81\xf7\xaa\x3d\xf7\x03\x2f\xb7\x63\x6b\xb2\x84\xf6\x2f\xd6\x34\x06\x82\xf9\xb8\x49\xfb\x1b\xbd\x64\x09\x85\x54\x9f\x6a\xce\xdd\xc2\x76\xf7\x70\xe0\x65\x96\x4e\xa3\xdf\x71\x4c\x9c\xae\x66\xf1\x2f\x6b\x66\xbf\x0a\x6f\x73\x53\x60\xc5\xab\xf1\x56\xa1\x44\xd8\x54\x3e\x6d\x94\xa5\xbd\x32\x2c\xbe\xaa\x98\xea\xef\x42\x73\x82\xb5\x82\xe9\x79\xc0\xc8\xfc\x47\x14\xe1\x1c\xc3\xed\xfc\xbc\xa4\xb3\xbf\x33\x56\x6a\x32\x2c\x6d\x29\x13\xc2\xd5\xb2\x01\x72\xe2\xc6\xa4\x18\x70\x95\xa6\xc2\x27\xa2\x6c\x01\x10\xcf\x51\x6a\x50\xe0\x61\x3c\x18\xfb\x1c\x80\x89\xdb\x19\xd9\x0b\x62\x5c\xfe\xf1\x06\x8c\xfa\xfe\xf6\x5a\xd4\xef\xc7\x90\x33\x51\x11\xa7\xf4\x81\xb8\x82\x02\xa7\x51\x37\xce\x84\x8c\x37\x45\x11\xb3\x74\x3e\xfa\xdc\x47\x14\x04\xfa\x88\x5a\x43\xa3\xc8\x86\x76\x97\x9e\x8c\x47\x29\x0a\x35\x8c\x2b\x63\x85\x69\x3e\xa6\x12\x72\x26\x66\x11\x9e\x7b\x65\x0b\xee\xb8\xa2\xa4\x89\xe3\x48\x72\x70\x99\xb2\xf5\x71\xe8\x47\xf8\x10\x78\x0b\xde\x6d\x0a\x2c\x46\x59\x94\x84\xb6\xa5\x95\x65\x54\xd5\xa3\x8e\x52\x9a\x9f\x6f\xf7\x63\x93\x27\x29\xa3\xc4\x01\xdc\xbe\x44\x71\x2c\x1f\x37\xfd\xcc\x30\x45\xed\xd4\xb3\xb8\xd2\xb2\x11\x46\xd7\xaf\x28\x6c\xad\x5d\xce\xe9\x72\x30\xff\x76\x4a\xf1\x3f\x9f\x52\xa9\xc9\xc0\x64\x26\xcf\xa7\xbc\x78\x24\x0b\x63\x0a\x6f\x7f\xcb\x4f\x89\xd6\x65\x3b\x96\x66\xda\x3d\x1b\x47\xab\x7e\xa3\x49\x80\x44\xab\x54\x42\xa7\x87\x55\x22\xd2\xb8\x27\x59\x11\xcb\x9c\x28\xaa\x81\x7f\xdb\x4c\xd4\x1d\xa6\xc3\xa1\x4d\x9c\xaf\xc5\x3e\xbb\x39\xf6\xf8\xf3\x9b\x81\x27\x0d\xe9\xa5\x69\xc6\xd4\x2c\x13\x4a\xa5\x48\x4a\x7e\x36\x41\x4f\xed\x0a\x8a\x66\xd5\x66\x49\x5a\xe6\x8a\xbf\xf8\x2d\x5a\x8f\x7c\xec\xca\x5c\xe1\x72\x11\x72\xf8\x89\x37\xc6\x4e\x8c\x4f\x94\x13\x0b\x4d\x1c\x75\xcb\x6c\x4a\xd3\xba\xfe\x6d\xa5\xec\xc9\xe9\x11\xeb\x9c\x36\xc9\xfb\xf7\xa2\x49\x48\x38\x43\x46\x85\x14\xa6\x81\x6f\xba\x1b\xf5\x72\x3d\x7c\xca\xf3\xf0\x32\x1f\x2d\x17\x57\x44\xfd\x41\x61\x1d\xaf\x2e\x9a\x86\x77\x34\x46\xf2\xce\x43\x8b\xba\x43\x93\x73\xe6\x26\xaa\xed\x2a\x40\xfc\xcf\x4d\x4a\xc0\xb9\xcd\x56\x2b\x5f\x48\xbf\x85\xa4\xfc\x63\x7a\x0b\x7c\xfc\x90\x6e\x53\x5e\x64\x91\x1f\x0c\x11\x8d\x6c\xff\xf6\x6e\x28\xb5\xa8\x68\x38\x4a\x49\x56\xad\xe5\x74\x6a\x80\x07\xe2\xe3\xc6\xba\x29\xba\xfc\xb2\xff\xb1\x11\xc0\xe3\x8f\x58\xa0\x45\xb0\x36\xd1\x17\x91\x24\x61\x39\x4e\x53\xc0\x4c\xf1\xca\x4f\x63\xf9\x72\xb1\x41\x13\xa2\x1e\x9f\x28\x42\x87\x65\xf1\x55\x3f\x95\x74\x2c\x50\xee\xe3\x04\x61\x21\xd0\x49\xe5\x38\x0b\x85\xc4\x3f\xd1\xf0\x0b\xae\x7c\x08\x0d\x31\xbd\x58\x51\xe6\xf4\xe4\x20\x27\x10\x58\xc2\x02\x9d\x52\x13\xaa\x4c\x51\x81\xff\xf8\x5e\x95\xdc\x6f\x5d\x22\x18\x1d\xd2\x8f\x3f\x54\x7a\x36\x77\xc8\x49\x48\xc1\xe1\x29\x57\x9b\x16\x01\x15\x3c\x30\x21\x67\xa9\x3e\x87\x8d\xf6\xd8\x84\x9a\xca\x76\x87\xfe\x62\xbb\x6b\xc2\x95\xc9\xf7\x79\x0d\x6b\x8e\x4f\x54\x4f\xab\x0a\xb9\x46\xd5\xf2\xf7\x6c\x47\x97\x02\x3f\x5c\x70\x69\xfc\x8c\x02\x15\x97\xf9\xa0\xfa\x6a\x18\x34\xb8\xed\xcb\x81\x12\xdd\xf8\x74\xec\x7b\x94\xc7\xb5\xd8\xac\x09\x57\x08\x96\xeb\x24\xb4\xab\xcf\x08\x73\x6e\x75\x2f\x88\x95\xfe\x91\x2e\xc6\x36\xc1\xb1\x16\xdb\xd6\x14\x42\xe1\xd9\xd4\xc2\xf1\x78\xac\x6e\x96\x12\x51\x29\xac\x82\x10\x02\xd2\x12\x12\x46\xc0\xed\xfb\x9a\x34\xe1\x0c\x0f\xb6\x20\xad\xba\x89\x2b\xe2\x93\x66\xf1\x47\x93\x79\x1e\x1e\x98\x0c\x96\x30\xe5\x93\xce\xf6\x1d\xfe\xed\xb9\x76\x94\xd8\xd5\xa8\x4a\x2e\xd0\x81\x70\xdc\x65\x8a\x15\xed\x79\xef\x45\xd2\xac\x88\xc2\x32\x2e\xca\xcc\xc4\x2d\xc5\x73\x72\x8a\x6b\x04\x42\x77\xe6\x5f\x6b\xd7\x64\x45\x6c\x8b\x62\x67\xf5\x8d\x9e\x50\xcf\x23\xfb\x01\x06\x77\xb4\x7b\x4b\x32\xa0\xfc\x31\x86\xb0\xe5\x23\x5a\x27\x2e\x4e\x93\x48\x7e\x5f\xea\xbc\x8a\xa4\xff\x5d\xe5\x1f\x13\x9b\x0b\xa4\x80\x73\x6a\xa5\x2a\xff\x91\x4b\xd7\xcb\x24\x4a\x0a\x9b\x51\x37\x18\xcf\x4f\xfa\x57\x2d\xcf\xe4\xaa\xa2\xbc\xbc\xcc\x96\x4d\xc8\x06\x4e\xba\xff\x2d\xa7\xc8\x74\xcc\x39\x8f\xb2\x30\x83\xa9\xd6\x37\x7f\xcb\x31\x68\xfa\xf1\xa4\x0f\x61\x46\x59\x8b\x59\x7d\xf9\xeb\x65\x5e\x44\xcb\xeb\x3b\x95\xa6\xe3\x47\x34\xf3\x8c\x8a\xfa\x1f\xc0\x2a\xf0\x49\xa0\x60\xfb\x0a\x97\xec\xd5\x72\x88\x69\x89\x1f\x01\x17\x8c\x26\xab\x47\x4d\x32\xe5\x79\x68\xb2\x49\xda\xf6\xb1\xf2\xfb\xf5\x91\x92\xb9\x03\xed\x2a\xa9\x59\x8d\x30\x3c\x34\x3f\xcf\x1d\xb0\x5d\x1b\x7e\xb6\x67\x57\xc7\x15\x25\x79\x05\x4d\x6b\x46\x2c\xc5\xf1\xb7\xbb\xe3\xdf\xd1\x1d\x9d\xc1\xff\x5c\xb3\x0d\xd9\x64\x7d\x67\x65\xcd\x24\x3b\xa8\x16\x18\x6c\xdd\xa7\xf4\x2a\x50\x92\xf9\x70\xec\x13\xb7\xdf\x27\xe3\x28\x99\x85\x0f\x8e\xe2\x34\xe9\xa5\xc9\x93\x7e\xd8\xeb\xd8\x58\x01\x6c\x5b\x1d\xc5\xba\x75\x15\x95\x17\x47\x36\xe0\xee\xee\xef\x23\xc8\xe7\x8f\x6c\x28\x12\x8a\xf7\xc8\xd6\x4b\xc4\x84\x7d\x82\x6d\xcc\x96\x9b\xbf\x99\x2e\x6e\xa2\x0c\x05\xf3\xc3\xee\x06\x8b\x10\x33\x7c\x02\x6a\xa3\xf7\xc8\x95\x9f\x40\xc3\xdd\x9a\xea\x72\x26\x8e\xed\x7a\xae\x5b\xad\xfc\x33\x22\xdd\xf6\x55\x35\x4f\xb2\x1c\x97\x87\x5a\x2d\x2d\x25\xb2\x20\x21\xe6\xb9\x09\xa4\xe5\x1b\xa5\x05\x5b\x16\xa2\x88\x4b\x4a\xbc\xe8\x1a\x69\x12\x82\x7e\xef\xe7\x63\xaf\x10\x8f\xfe\x15\x5e\xc3\xef\xd2\xc2\x46\x67\xf1\xfb\x81\x16\x3a\xf7\x04\x5e\xd1\xaa\x4d\xc0\xd4\xe9\x60\x19\x55\xaa\x03\xef\x79\x56\x51\xc0\x94\x7f\x8e\xca\x58\x42\xaf\x4b\x8f\x8d\x05\x9f\x37\x5a\xdf\x9e\x73\xb0\x55\x2d\x3e\x9e\x80\xa6\x90\x75\x10\xc7\x5e\x15\xf8\xc7\xaa\x5a\x64\x93\xd5\x88\xa0\x25\x13\x1a\xa2\xf4\xf2\x84\x22\x7d\xfb\x8e\x58\x9a\x69\x9b\x30\x2c\x33\x53\xd0\x6c\xf9\xc1\x19\x9f\xbb\xbb\x40\xfe\x42\xb0\x5d\x86\xe3\xc5\xb6\xc9\x57\x5a\x1e\x42\x8f\x06\xa5\x94\x0b\x9b\x20\x53\x85\xc9\x60\x5b\xb1\xf2\xee\x13\x44\x4b\x30\x7c\xd5\xbb\xe0\x62\x1f\x3d\x73\x27\x28\xe9\x69\x4f\x7f\xd6\xc0\xcc\xb5\xbf\x9d\x17\x65\xb8\x82\xfa\x07\x4f\xf3\xe2\x31\x3b\x7e\x0c\x05\xee\x53\x13\xdc\x79\x49\xba\x8e\xb6\x37\xe5\x9b\x7c\x3f\x50\x58\xbc\x2b\xb4\x0a\xb8\xf4\x1e\x3c\xab\x19\x4d\x07\x76\x68\x8a\x28\x04\xa4\x85\x61\x25\x74\xcd\x02\x31\x51\x6d\x16\x13\x65\x9c\xbd\x37\x15\x55\xb7\xdf\xcf\xaf\xb7\xd7\xac\xf1\xdd\x3e\x19\xf8\xf3\x90\x8a\x4f\x5c\x0d\xc7\xc6\x65\x4e\xdc\x2b\xbe\xa9\x4d\x5f\x2d\x0d\xee\xa6\xbc\x78\x60\x92\x5e\xb5\x32\xaa\xc5\x80\x52\xed\x26\xa2\x0a\x3e\x51\xcb\x28\x8c\x8a\xe8\x4d\x9b\xe4\xd3\xbe\xc4\x7b\x44\x0b\x64\x1e\xa1\xcd\x20\x43\x1c\xb4\xc8\x65\xba\xc3\xdf\x7d\x9e\x96\xfd\x41\x01\xfd\x1d\x36\x43\x44\x5d\x22\x04\xd3\x6a\xbc\x66\x2b\xd0\xca\x58\xb7\x75\x6d\xfb\x6e\x43\x7c\xbc\xd8\xce\xd7\xac\x1a\x56\x80\xeb\x3d\xa6\x46\x65\x8f\xb9\xc2\x79\xd7\x1a\x61\x1a\x60\x12\xed\x09\x42\x6d\xd7\xce\x89\xb2\x35\xb3\x2e\x92\x8d\x30\x34\xef\x07\x0a\xfd\xf6\x7e\x53\x4e\x53\x99\xf6\x29\x45\xbe\x0e\x8a\x33\x18\x8c\xbb\x04\x5a\x04\xbc\xb9\xfe\x42\x48\xa3\xe4\x8d\x32\x2d\x4c\x4b\x0d\x52\xa0\x5e\xc6\xc7\x6a\x6c\xce\xbc\x59\xd8\x50\x39\x39\x16\x65\x95\x27\xe4\xeb\x87\x43\x9b\x26\x76\xba\x7a\xca\x0c\x80\xa1\x2f\xa4\x38\xe5\xa3\x27\xa9\x83\x86\x48\xee\xc1\x58\xd5\x54\xea\xf5\xaa\xf9\xf9\x76\x1e\x66\x65\x11\x55\xb7\xa7\x86\xef\xc7\x7e\x48\x08\xe3\xd6\x6c\xf8\x1b\x05\x34\x1d\x4b\xb7\xa6\xb9\xbd\xc8\xf1\x17\x9f\xd5\x9a\xd2\xfb\x16\xa8\x20\x8d\xbe\x9d\x53\x4d\x77\x37\xce\x45\x0c\x9c\x3c\x68\x42\x4f\xd8\x43\x23\x5b\xa5\x02\x76\x4a\x8d\xeb\x21\x9a\x41\x09\x01\x38\x51\x14\x14\x8f\x56\x71\x15\x7d\xde\x69\x5c\x2d\x2c\x2c\xfe\x79\x45\x7b\xfb\xf6\x58\x55\x00\xf6\x76\x68\xa9\xa3\x22\x7d\x07\x65\x30\x6c\xe6\x53\x44\x47\x87\x70\xe9\xbe\x9e\xed\xf9\x9b\x8a\x7c\x82\xc9\x79\xd1\x2c\x06\x3b\x11\x2e\xef\x31\xf2\x06\x82\x19\xf0\x4d\x81\x93\x64\x85\x60\x82\xef\x91\x3a\x1f\x0a\x3e\xa7\x91\xca\x39\x51\x95\xa5\x45\x47\x72\x48\xa1\x28\x90\x5e\xf7\xc7\x4a\x02\xea\x16\xe5\x53\x98\x1d\x79\x92\x5a\x25\x32\x64\xad\x81\x73\xb7\xc6\x13\x00\x43\x0a\xdf\xf0\x65\x7b\x3b\x7e\xc7\xdf\xa4\xa2\x90\x50\xa2\x92\x3d\x91\xea\x15\x6d\x76\xb8\xf6\xf7\x94\x3d\x89\x86\xa3\x32\xce\xd1\xad\x5b\x9c\xe0\xcb\xc0\xe6\x42\xeb\x14\x9f\x3b\x5a\xa3\x7d\x27\xc1\xde\x28\xf5\x3a\x7a\x4a\x3a\x1b\x1d\x1d\xc0\x97\x78\x18\x8b\x57\x18\x10\x09\x9f\x34\x71\x7a\xc6\x76\xb9\x88\x72\xd4\xd9\x79\x02\x4c\x19\xe6\xbb\x35\xf7\x45\x1f\x31\x19\xc3\x3c\x61\x8b\x2f\x20\x06\xe0\x93\xf1\x73\xfe\x5e\x13\xc2\xec\x46\x49\x3f\x5e\x9f\x56\xb8\xd0\xdf\xa6\xe9\x5c\xac\xaa\x23\x8a\x8c\xe7\xc8\xd8\xa7\x30\xbf\xdd\xd4\xcc\x16\x06\x58\x2e\x6d\x34\xe1\xad\x9f\x52\x5a\x13\xb9\xc9\x0b\x9b\x4d\x7b\x3c\xf2\x75\x2c\x54\x87\xf0\xf0\x94\x3e\xc8\x04\x50\x51\xa8\x0f\xae\xbe\xd8\xee\x66\x76\xcd\x19\x59\x5c\x21\xd8\x98\xf8\x58\x35\x2e\xc8\x6f\x4d\x2b\x59\xfe\xa7\xc8\xda\x20\xbe\x82\x94\x2b\x96\xd8\x1d\x8d\xad\x6c\x54\xac\xf1\x2d\x24\xce\x70\xd0\x00\x02\x37\x06\x1f\x6f\x78\xd8\xcb\x30\xcd\xa0\x17\xbe\xa4\xbc\xec\xbe\x05\x3d\x1a\xc5\x11\xe0\xa8\x04\x89\x36\xe2\xed\xfb\x28\x04\x63\x6b\x3e\x43\x8a\x93\x1c\x07\x68\x31\x87\xef\x06\x4a\xbd\x7e\x27\xc6\xa7\xb0\x23\x1e\x47\xd1\x42\x0b\x8d\xc0\x4a\x3e\x41\xa9\x04\x16\xf3\xdf\xd3\xfa\xa1\xcf\x75\xbc\x7a\xc4\x19\x3d\x9b\xf0\x79\x53\xc3\x20\x1c\xd8\x21\xe4\x4c\xdc\xcc\x28\x86\xdc\x04\xd6\xae\x75\xc2\xaa\x24\x85\x08\x26\xaa\xeb\x93\x12\x6f\x6b\xe1\xe1\xaa\xe2\xd4\x24\xb4\x99\x23\x76\x60\x16\x50\x45\x05\xae\x9b\xbe\x66\x68\x93\xde\xd0\x26\x45\x3e\x45\xdb\x5d\xd6\x92\xef\xd8\x43\xde\x50\x10\xc5\xcf\x28\x71\x68\x29\x8f\xd2\x8a\x14\x19\x71\x7a\xf4\xcc\x36\x1a\xa8\x09\x1b\xc0\xd6\x90\x74\x5c\x56\x5a\xd6\xa1\xcd\x73\xc6\x65\x38\x92\x8f\x5f\x2a\x0e\xd6\x5f\xd6\x16\xd2\xd2\x4c\x3b\x34\xa3\xa8\x00\x8f\x19\x16\x92\x4c\xe0\xf9\x95\x59\x67\x9d\x7b\xed\xb5\x76\x94\x38\xc2\x2f\xd4\x23\x4e\x29\x49\xb7\x3a\x5f\xd6\x81\x97\xdb\xe9\xf2\x72\x3e\x48\x59\x44\x0a\xd5\xfa\x5b\x8a\xc4\x6f\x4b\x71\x43\x03\x93\x85\xec\xed\x5f\x35\x51\x33\xd8\x43\x61\x5c\x7a\x4a\x4c\x46\xb8\xd2\x9b\x17\xb4\xab\xa4\xa7\xbd\x28\x2f\x4c\x12\xf2\x70\x2e\xae\xef\x98\x1a\xce\x3d\xa3\xe4\x26\xde\x51\xeb\xa5\xf2\x91\x21\x85\x4f\x1a\x61\x7a\x5b\x61\xd0\x6f\x6b\xa6\xda\xea\xce\x72\x52\xdf\x45\x1f\xf8\x26\x97\x42\xb8\xf5\x07\xa3\x0f\x96\xb2\xcd\x40\xb5\x5a\xce\xc2\x1b\x4d\xa8\xec\xc3\x6b\xdc\x9e\xc8\xcc\xcc\xaa\x7d\xd6\x0f\xf4\xfd\xed\xe7\x3b\x5e\x7a\x64\xca\x13\x0a\x7d\xfb\x16\x65\x69\xd8\xaf\xac\xe3\xea\x5a\xd1\x95\xa3\xc2\x42\x7c\x8e\xcc\x04\xae\xe6\x01\x61\xc1\x84\x4e\x41\x4f\x9f\x1e\x47\x62\x80\x60\x68\xcf\x06\xdd\x81\xc2\xc8\xbe\xea\xdb\x50\xfb\x98\x68\xe2\xbf\x78\x66\x43\x51\xde\xdd\xa4\xe4\x08\x7b\xff\x3e\xf4\xd0\x1c\x8d\x97\x2f\x6a\x5d\x45\xaa\x2d\xde\xbf\xb2\xff\xe8\x87\x9d\xa4\x2a\x26\x9e\x05\x11\x2a\xba\x1a\x54\x21\x43\xf1\x58\x21\x0f\xc8\x39\xf0\xf1\x04\x2a\x0d\x19\x1b\xa2\x79\xb8\x81\xff\x15\x2f\x82\x4f\x9a\xc2\xd5\x2c\x0a\xc1\x79\x87\x87\xf0\xae\x16\xee\x78\x17\x4a\x8b\x28\x33\x44\x5d\x82\x4f\xbd\xc9\x55\x6b\x79\xb7\xfe\xc9\x6e\x36\x4d\x7f\x8c\xb2\x74\x39\x8a\xa1\xa0\x08\xea\x85\xff\x83\x9e\x1f\x57\x92\x55\x92\x77\xb2\x36\xf8\x2d\x25\xfc\x30\x1d\x8e\x4c\x66\xa7\xaa\x57\x2d\x11\x46\xf5\x08\xf0\x0c\x59\xa0\x14\x51\xd3\x07\xf5\x5e\xfb\x6c\xdb\xc4\x61\x3a\x48\x61\x34\x5d\xcb\xda\xcd\x4d\xd5\x39\xd2\xe6\x0e\xb4\x69\x74\x24\x5e\x27\xf9\x59\xe1\xd5\x6d\x69\xc5\x5c\x17\x19\xbc\xaf\x8a\xa5\x0e\xc2\xe1\xd8\xe1\xf9\xe2\x84\x8d\x57\xb1\x87\x46\xb1\x25\x2a\xc4\x2a\x50\x13\x25\x4c\xa5\x8a\xe9\xc0\x13\x26\x84\x9a\x5a\x64\xf3\x9d\x13\xa4\x38\x58\xba\x30\xcb\xac\xb5\x0a\x27\x76\x5b\x87\x97\x93\x34\x04\x6e\x7a\xb6\xd7\x97\x71\x5e\xac\x23\x5e\xa2\x92\xb0\xd1\x46\x90\x66\xf9\xf6\xf0\xe3\xe0\x4c\xdb\x14\x45\x66\x42\x28\x0a\x1d\xf4\x94\x07\x3a\xac\xf5\x2e\xd6\xda\x95\xc7\xaa\x38\x95\x27\x44\xe9\xd5\x61\xc5\x5c\x55\xae\xe5\x67\x81\x1a\xbe\x79\x44\x73\x44\xc3\x6a\xd2\x8a\x3c\xf0\x1c\xf9\x64\x17\x76\x2c\xcd\x38\xd5\x29\x7a\x36\x40\x91\x6d\x2a\xae\xe0\xdd\x4f\xd6\x86\xb8\x2b\x37\xd7\x4f\xd3\x5e\x62\x73\x24\xec\x1c\x40\x07\x4a\x16\xe6\xb4\xaa\xd5\x25\xdf\x18\x7e\x43\x71\x94\x5d\xd4\x5c\x4a\x17\x27\x90\xc8\x51\x1c\x3f\xaf\x58\x3b\xb7\xfc\xd4\xe5\x3f\x79\x6e\xa3\x8a\x8f\x85\xb7\x01\xef\x4e\x56\x05\x6d\x51\xa1\x17\x21\x03\x8f\xc7\x73\x5f\x57\x2a\xfe\x39\xde\x10\x0c\x1a\xab\xd2\xc1\xb5\xbe\x45\x63\xc0\xcc\xb5\xe2\xc0\x46\xb3\x73\xd2\xf0\xa1\x07\x8e\x40\x6b\x0f\xb1\x75\xbb\xee\xdc\x2b\x8e\x8a\xf2\x2c\x19\x1f\x56\x2a\xa0\xe4\x01\x71\x0f\x24\x5f\xd5\x5c\xa6\x90\x79\xec\x80\xe5\x43\x78\xfd\x08\x75\x9e\x90\x21\x5c\x19\x57\xef\x1a\x3e\xee\xa3\x86\xa2\xcf\x62\x7b\x68\xa2\x78\x4a\xb9\x84\x6b\xf4\x98\x30\x0c\xf6\xc9\x58\x89\x65\x9e\x53\x71\x5a\xb7\x5c\x7f\x6c\xa2\x49\x4f\x5f\x40\x4b\xf4\xc7\x4f\x76\xbc\xd6\xdd\x34\xe5\x31\xc2\x12\x4a\x17\x8c\xba\xd1\x23\xa4\xaa\x8b\x17\xf0\x3c\xf9\x03\x14\x16\x2e\xab\x12\xeb\x2f\xf0\xc0\x59\xeb\x14\xef\x45\x52\x54\x1f\x5c\xf6\xd2\x42\xc6\x37\x5f\x75\x4d\x10\x35\x42\xf8\xb1\x22\x27\xbd\xd1\x54\x5a\xa3\xf8\x27\x0b\x85\x83\xd1\xe1\xe2\x97\x9c\xaa\x94\xeb\x7c\xe6\x6b\xd6\x52\xe7\x13\x93\x04\x4e\x62\xcb\xb7\xd9\xbe\xa4\xdd\x8e\x42\xe1\xbf\xd7\xc3\x31\x9f\x2b\x0d\x08\xc7\xde\xd8\xf2\xc5\xcb\x0f\x95\xb9\xf9\xb0\x81\x08\x79\x7f\xbb\x10\x20\x38\xfe\xe8\xbe\x52\xed\xbd\xef\xae\xd0\xe4\xb9\x89\x62\x62\x87\x3b\x28\xca\x94\x7f\x42\x4f\x80\x8f\x9b\xd8\x28\x2c\xe5\x23\x09\x35\xc0\x10\xd8\x61\x26\x0a\xaf\x6a\xba\xa3\x90\x36\x77\xd5\x04\x6c\x68\x93\xc2\x66\xf9\x6e\xef\x67\x2f\x2a\xd9\x5a\x34\x69\x91\xda\xfe\x0b\x72\x32\x22\xf2\x47\xcf\x0e\x21\xc7\x69\x4d\xc6\x74\x5f\xe9\x32\xff\xb7\xb7\x26\x74\x73\xfb\x69\xac\x09\x36\x4e\x28\xe2\xf3\x13\xaa\x04\x1b\x25\xcc\x09\x25\x84\x2a\xf4\x02\xf8\x44\x29\xf6\x0c\x6c\xd6\x8d\x42\x8a\x20\x3d\x5c\x73\x12\x80\xd0\xc0\x6e\x33\xb0\x06\x78\x40\x98\xce\xab\x0a\xe8\x70\x55\x19\xd8\xbf\xf1\xf2\x6f\x62\xaa\x13\x1e\x89\x89\x96\xf8\xa4\x11\x0a\x38\x32\x59\x91\x78\x2e\x09\xc4\x77\xf7\xf5\x0c\xe9\x16\x1e\x0d\x3f\x4d\xdf\x54\x2d\x33\x6b\xca\x30\x33\x85\x5a\xba\x93\x0a\xfe\x0e\x79\x60\x32\xbb\xc7\xff\xd1\x1e\xe4\x49\xd8\x80\xad\x0d\x45\x72\x79\x52\xa9\xa0\x7f\x85\xa9\x29\x84\xc2\x53\xcb\xb7\xf9\x9c\x67\x4f\x67\x62\x98\x54\x9a\x45\xcb\xa6\x9b\x45\xe1\xb4\x47\x09\xb1\x91\x12\x46\xa6\x09\x2e\xa2\x96\x23\x0a\x7a\xa6\xf3\xd0\xc0\xe3\x4d\x9b\xc7\x66\x4d\xe9\x7c\x9c\xd5\x8f\xe5\xac\xea\xe8\x17\x65\x96\xa4\xab\x36\x9b\x52\x42\x71\x77\xb1\x4f\x51\x7d\x84\xd2\x1f\x1c\xc3\x67\x13\x9d\xf6\x81\xc9\x9f\xf5\xb5\xe2\xe3\x14\x9f\x3a\x3d\x20\x4f\xf9\x36\xb5\xe1\x69\x2b\xaf\xea\xe6\xc9\x57\x36\x54\xf9\xf6\x3e\x2c\x11\x8a\x3a\xb7\x61\xc2\xe0\xaa\x40\x2c\x8b\x2b\xff\x39\x99\x5c\x58\xcc\x4b\xa8\xd5\x4a\xf2\xed\x55\x2a\xae\x92\x13\xe1\x5a\x16\x3a\x47\x00\x17\xdc\xd4\xd3\x55\xc7\x90\x32\xa3\xf7\xf5\xab\x54\x11\x42\x31\xf0\x87\x81\xa6\x21\x53\x82\x5d\xbb\x41\x00\x83\x45\xf7\x7f\xba\xa5\x55\x26\x3d\x9b\x85\xd5\x33\xa4\x98\x48\x43\x00\x65\x0a\xb7\x5e\xf5\x5d\xa8\xd2\xac\xc8\x99\x52\x07\xbe\x5c\x5a\x7c\x28\xf8\x72\x61\xa1\x9d\x45\xfd\xd2\x96\x99\x42\x3b\x7e\x46\xe5\x2b\xe9\xea\x3e\x1d\x79\xb5\x00\x6b\x42\xcc\x10\x57\x37\x03\x57\x7c\x2b\xa8\x5e\x11\x1f\x4f\xc2\x94\x7a\xd5\x0a\xa8\xde\x06\x0a\x1e\x70\x9f\x8e\x2c\xb7\x7a\x19\x78\xb1\xa7\xdc\xa2\x0d\xcd\xaa\x35\x85\x9a\x85\xc5\x00\x1d\x1f\x2b\x0f\x68\x5e\x8f\xe8\xaf\x44\x49\x8c\x96\x06\x9f\x28\x53\xbf\x96\xd9\xbc\x20\xd4\x6c\xf5\x35\x42\x0c\x53\x7d\x90\x8f\x1b\x06\xbc\x16\xdb\xa6\x9f\x59\x3b\x14\x76\x30\xbc\xb3\xd3\x7a\xbc\xe4\x74\x03\xea\xa5\x9d\x66\x51\x3f\x4a\x54\xd1\x5d\x88\x98\xfd\x86\x39\xa9\x55\x34\x97\xab\x44\xc0\xf5\xb8\x76\x74\x3c\x00\x10\x31\x1e\x46\xe3\x8e\x37\x0a\x6b\xe7\xa3\xcc\x71\x26\xb8\xc1\x5d\x07\x05\x46\xe5\x19\x9b\xe3\x84\xf7\x4d\xfd\x7e\x66\x56\x4d\x01\xe0\x1f\xda\x14\xd7\xf4\x8c\x32\xea\x47\x42\x50\xd1\x30\x0c\x35\xca\xd2\x12\xf1\xbc\x28\x06\xb4\x1c\xcb\x84\xe7\x6d\x35\xbd\x5e\x66\x73\x47\xbd\x2b\x9b\xcf\xa3\xa4\xff\xf7\xb1\x32\xf5\xb7\x15\xb1\x57\xbe\x9e\xf4\x98\xdf\xbc\xa5\xe4\x79\x91\xbc\x4a\x92\xea\x43\x8f\x94\x34\x02\xf3\x9d\x2d\xc7\x55\xf8\xff\xdb\xf0\x44\xf8\x8f\xa0\x14\xed\x34\x4f\x04\x74\xb8\xfb\x99\x8e\x9f\xff\x3a\x3f\xe1\xe6\xa2\x2c\xc5\x14\x25\xb6\x18\x00\xf3\xc2\x40\xe5\x0d\xee\x1d\x6a\xcc\x21\xc5\x3a\x5d\x63\x2c\x59\x7c\x79\x7f\x7b\x84\x41\x08\x35\xed\xec\x46\x9f\xfd\xb4\xb2\x49\xfa\x3b\x95\x2c\xcb\x2e\x88\xcd\x88\x00\x52\x75\x23\x9c\x0a\x6b\x96\x9a\xcf\xe9\x39\x4a\x5b\xb4\x8e\x6e\x6d\x17\x69\x4a\xf1\xe4\x4b\x5b\x97\xd4\x64\xd8\x9d\xc0\x23\x91\x8f\xfb\xa9\xcf\x68\xd5\xee\xf1\xb5\xfe\xcb\x0a\xba\x0c\xb6\x77\x2c\xa7\x47\x37\x14\xbb\x2f\x58\xbd\xf0\xad\x6f\xe3\xca\x68\x01\x7e\xf2\x4c\xc7\x97\xde\xf6\xc0\xa8\xc1\x40\x6e\xba\x95\x61\xc3\x34\x49\x87\x91\x4c\x82\x2a\xd4\xe5\xfe\x09\xc9\x58\x24\x75\x3f\xd7\x1a\xcb\xf5\x88\x60\x76\xd6\x11\x42\xce\xb1\x1d\xb9\x0c\xeb\xcb\x27\x8d\x2d\x3e\x7b\x28\xb4\xa3\x62\xda\x17\x4a\x4f\x22\x53\x90\xa4\xbd\x7a\x02\x08\xe3\x4f\x92\x91\x06\x08\xa4\xd5\x51\xb2\x66\x83\x28\xb6\x5f\xa1\x9d\x87\x1e\xf6\x8e\x0e\x7d\x03\x98\xa0\x2e\x2b\xbd\xa1\x2b\x08\xb5\x26\xfa\x32\x8c\xd8\x84\xf5\x43\x69\xfc\x4f\xe1\x18\xd1\x8e\xfa\x84\xae\x00\xde\xe0\xee\x04\x9d\x04\xe2\x0a\xa7\xfe\xf7\xcd\xdf\xe2\x1b\xf8\x3d\x7a\xb5\x4e\x86\x42\x49\x8e\xa9\x99\xda\x7f\x8a\x81\x26\x94\x83\x41\x1a\xcd\xc5\x4a\x2f\xd8\x7a\x53\xf5\x51\xb9\xaf\x8c\x64\xf4\x8b\xa6\x72\x7f\x18\x5b\x43\xe5\xf6\xad\x23\x94\x71\x1d\x51\x7e\xa2\x6b\xe2\x22\x1a\xa6\x19\x2a\x84\x8e\xe1\x4b\x89\x01\x6b\x8f\x9f\xbc\x50\x3c\xad\x71\x3a\xb4\x0a\x61\x9e\xde\xa5\x44\x0c\xab\x73\x7a\x63\xb2\x63\xef\x0b\x33\x47\x02\x9f\x26\x3d\xf1\x0c\xb6\x3d\xe0\x43\x37\x50\xd8\x17\xe2\xaa\x6a\xe5\xc2\x5a\xde\x43\x74\xc7\x4b\x20\xf0\xe1\x71\x6b\xc3\x6f\xbc\xa7\x3b\x3e\x84\xfe\x01\x96\x09\x9a\xb1\x67\xb5\xce\x52\x6b\xa3\xf2\xaf\xb2\x7e\x68\x5d\x20\x14\x3b\xac\x86\x8a\xef\xd6\xcc\xc4\xec\x6c\xbb\x6b\xfa\x84\x90\x13\x03\xaa\x8c\x69\xad\xe8\x3a\x77\xa0\x9d\x95\xb1\xb3\xf9\x02\xa2\xac\x3e\xc2\xd0\xc1\xb1\xaf\xc8\x9c\xae\x6d\x96\xd7\x5e\x6b\xe7\x69\x9a\x4c\xfb\xac\xef\x14\x2d\x34\x20\x02\xe0\x7b\xf0\x30\x2e\x28\xdf\xf3\x59\xad\x01\x4f\x4e\x20\x4a\xb3\x48\x4d\xff\xed\xa0\x64\x9e\x8f\x3b\xdb\xef\x73\xee\x40\x7b\xb9\x07\x69\x3e\x04\xb8\xb7\xc6\x2a\xda\xbd\xd5\xa4\x37\x30\xa4\x86\xf4\x84\xbc\x0a\x82\x78\x59\xe4\x4a\x7e\x64\x60\x73\xfb\x2c\xfe\xd4\xa1\xf9\x5f\x51\x30\x2a\xc5\xfe\xfe\x9d\xb1\x42\x15\xbe\x1f\x68\x92\x3a\x32\xe8\x6e\x44\xd5\x93\x6f\xc0\x06\x20\x81\x79\x12\xf6\x19\xd5\x4d\xd4\x6a\xf0\xe9\x2b\x54\x75\x95\x26\x22\x11\x0e\x4d\x6f\xf8\xf9\xd7\x1b\x9a\xb1\xe0\x93\xc0\x83\xee\x11\x0e\x31\xb4\x09\x61\x27\x76\xf7\x53\x9d\x89\x54\xa8\x5a\x5e\x18\xc3\x84\x72\x17\xde\xdf\xb3\x1b\x0e\xe9\x80\x3a\xdb\x94\x02\x54\x8f\x55\xce\xf3\x20\xd0\x33\x54\x4f\x29\x05\xb4\x35\x9b\x2d\x97\x10\xd0\x77\x6a\x37\x1e\xd9\xc3\xd4\xae\xa2\x7d\x43\x43\x05\xb0\x5e\xf7\x50\xce\x75\xc2\x97\xd5\xc6\x80\x09\xb9\x8c\x02\x2b\x9f\x28\xa0\x9f\x2d\xb3\xb4\x67\xbb\x05\x12\x02\x85\x5d\x11\x92\xe2\xbb\x81\x5f\x76\xa7\x1d\x5e\x68\xbd\xba\xb1\xbd\x2d\x27\xda\x72\x7e\xec\x7b\x28\x8f\x13\xe3\xad\xd6\x66\x03\x71\xe4\x4d\x4f\x75\x51\x3e\xdf\x51\x45\xec\x9d\xc8\x7f\xd0\x9b\x7a\x64\x43\x11\x7b\x5c\xd4\xe4\xdb\x90\x0d\x72\x24\xad\xb5\xa1\x7b\xfc\xe2\x03\x05\x4c\x5c\x1b\xd8\xcc\x3e\xe1\x07\x14\x49\x6f\x64\x71\xeb\xf8\xd8\xd3\xb2\x71\x6d\x7d\xeb\xb8\xe6\x62\x06\x4f\x2f\x3e\xd3\xea\xe8\x1a\x15\xfd\xaa\xcc\x44\xd2\xaf\xa2\x5a\xfc\x6f\x54\xda\xb7\x17\xf7\x06\x07\x75\x99\x56\x09\xd3\x58\xe1\xb9\xc2\x9e\xbd\xe3\xc6\x25\x06\x65\xbf\xcf\xd5\x6a\x27\x50\x57\x7d\x01\x9f\x34\x8e\x90\x0e\x4d\xe2\xd5\xf3\x11\xe2\x33\x7f\x33\x9f\x78\x06\x30\x4a\x0c\x68\xd0\x95\xfe\x18\xef\xeb\x34\xd7\xf6\x14\x3f\xa9\x50\x3e\x3c\xd6\x51\xd0\x91\x1d\x0d\x65\xc9\x76\x66\xf3\x51\x9a\xf4\xf8\x9a\x9d\xdd\xaf\xae\x59\x90\x5a\xbe\x20\xbf\x1c\x25\x26\xa9\x32\x9f\x78\x9d\xc2\x5b\x84\x1e\x47\x03\x45\x07\x73\x57\x4d\xcc\x5c\x09\x7c\xf7\x66\x40\xfc\x01\xbb\x95\x44\xc0\x29\xa5\xf2\x80\xf4\xc6\x31\xfa\x2c\xbe\x2c\x85\xd8\xc3\xe4\x35\x10\xdd\x7e\x38\x56\xb8\x85\xc3\x63\xaf\xaf\x78\x44\xfd\x4e\xd7\x24\x89\xed\xed\x52\x23\xc7\x6f\xeb\x8c\xf6\x44\x65\x0e\xb6\xce\x4f\x32\x51\xcc\xcf\x6f\xf1\xc8\x10\x7f\x42\xb1\xba\x96\x49\x54\xe4\x8f\xd1\xca\x85\xd7\x78\x07\xcf\x17\x25\xa4\xa3\x81\xe2\x03\xa1\x6f\xbd\xff\x3f\x3e\x8f\x45\x8f\xe8\xf1\x2e\x25\xb4\xac\x27\x4a\xbb\x4f\xf0\xa9\x8a\x36\x6f\x0f\x15\x13\xc5\x33\xd0\xb3\x47\x83\xf2\x0b\x68\x76\xb0\x0b\x4f\xc1\xdb\x8b\x2f\xfe\x02\x77\xc5\x27\x7e\x7c\x3d\x4d\x0a\x13\x8a\x34\x06\x76\x11\x4f\x8b\xe2\x2b\xef\x07\xfe\x3b\x3c\x67\x5d\x37\x7d\xd3\xc6\x5c\x7d\x42\x4d\xf5\x08\x87\x45\x7c\xa6\x3a\x0e\x83\x32\xf1\xd9\x97\x23\xb6\x74\x53\xfb\x67\x6b\xe5\xc7\x03\x2f\xb7\x87\x26\x8e\xfa\xd5\xda\x59\x9f\x52\xa3\x10\x17\x68\xef\x32\x4c\x83\xbe\x42\x38\x66\x3c\x1c\x3a\x36\x24\x37\xc9\x74\x60\x58\x2d\xe7\x15\xf0\xfc\x3b\x13\x8c\x55\x7e\x1d\x24\xe9\xb0\xcc\x4c\x4b\xe9\x46\x9d\x56\x73\x4b\xa7\x55\x9d\x6c\x68\x49\x60\xc3\xc4\x34\x5f\x88\x5f\xb8\x41\x46\x03\x68\x92\xd3\x9a\x35\xc1\x91\x23\xe4\x65\x92\x89\x10\x0c\x33\xc0\x07\x3e\xf9\xba\xdc\x3c\x7a\xd7\x2d\xb3\x2e\x6b\x66\xc0\x8a\x7c\x3a\x56\xc4\x73\x9f\xba\xb7\x38\x4c\xb3\xa2\x6f\xfa\xe8\xe3\x22\x5b\xfd\xb9\xa2\x56\xbc\x32\xf6\xa5\x14\x1e\x4c\x94\x70\xa3\x8e\x32\x59\x6a\x87\xb1\x29\xf9\x4a\xe1\xac\x80\xb7\xe0\xe3\x1a\x65\xe0\xc1\x19\x99\xc9\x8b\x56\x5d\x2f\x1f\x2f\x09\xbd\x33\x3e\xae\x65\xe7\x84\x25\x8b\x92\xd0\x26\x85\xe8\xb1\xc1\x24\x81\xb9\x80\x8f\x9b\x58\x63\x12\xb3\xba\x4e\xed\x3a\xa4\x5f\x67\xf5\xb8\x3a\x72\x24\x49\x72\x74\x22\x99\xc6\xf9\x5e\x0f\x2b\x7b\xa6\xa3\x8c\xd6\xbd\x49\x31\x4d\x35\xb9\x75\x5e\xc9\x47\x01\x1a\x07\xd3\xfc\x93\xb1\x6a\x5e\xdf\x1c\x7b\xf0\xfd\x7f\x1c\xd7\xe9\x3e\xf8\x23\x81\x9a\x64\x63\x9c\x33\x3c\xc8\xee\x26\xdd\xd4\x68\x38\x8a\xa3\x30\x2a\x34\x48\x3c\xf0\xf0\x32\xdd\x79\x78\xe1\xd7\xfe\x9b\x29\x8d\x0e\xa4\xdf\x11\xea\xfb\xca\xa0\x70\x51\xac\x0e\x3c\x9b\x53\x70\x37\x6c\x60\x84\xc9\x4c\xd6\xc7\x27\xe3\xed\x44\xcf\x20\x79\x89\x92\x55\x9b\x17\xae\x24\x23\x93\x0a\xf4\xeb\x32\xa8\xa0\x4b\x4f\x51\x2c\x96\x56\x31\x02\xca\x83\xde\xd1\xf1\x53\xf6\xe0\xa7\x45\xb6\x80\x6e\x89\x70\xb9\x6b\x3e\x41\x87\x27\x18\x65\x36\x8c\xd2\x92\xd9\xb9\x1c\x24\xd1\xd1\xcc\xc1\x86\xe1\xdf\x3f\xd1\x08\xc2\x5f\x36\x89\x80\x2c\x9b\x43\x52\x25\x71\x7a\x64\xd5\x4a\xc1\x25\xec\xec\x28\x65\x8d\xf3\x4a\x58\x3b\x2f\x4c\x61\x9f\xf2\xef\xea\x3e\x2d\x16\x00\x70\xde\x21\xe7\x23\x34\x9a\xca\x10\x5e\x19\xab\x4a\x1c\x2f\x16\x58\x91\x3f\x0a\xd4\xcd\x7c\xa9\x39\x21\x4e\xb0\xfb\x96\xee\x8d\xdf\x62\x3c\xdb\x04\x87\xf7\xd6\x04\x50\x99\xee\x00\xcb\x7b\x4f\x47\x4d\xbb\xde\x19\x7b\xe8\xc7\x7f\x52\xac\x94\x3f\x41\xab\x53\xc0\x48\x3e\x66\x1c\xa6\x49\x91\x59\x0c\x87\x08\x39\x35\xe6\x22\xf8\x58\xfd\x6d\xcf\x16\xf4\xce\x5b\xde\x7b\xa2\x19\xcf\xc7\x4d\x43\xe7\xbf\x3a\xb7\xef\xa5\x7d\x07\xf6\xef\x54\x0d\x73\xa6\xd2\x43\xd7\x73\x6b\xec\xb1\xc3\x0f\x02\x5d\x97\xa8\xd6\xb9\x88\xcf\x68\x22\xdf\xde\x63\xd5\x2d\xca\x64\xa1\x77\xaf\xd7\xc7\xad\xbf\xbe\x9f\xad\x22\x90\x2e\xc2\x03\x58\xbd\x2c\xd7\x34\xab\xae\x03\xcf\x07\x74\x74\x78\x71\xf7\x94\xf6\xf2\x6d\x54\x14\x5c\x9c\xe7\x09\x5f\xf7\x6e\x28\x7e\xbb\xca\xa1\xc5\x3c\xf3\x81\x87\xcf\x4d\x24\x3e\xa9\x4d\x77\xbd\xf6\x5a\xbb\x5b\xbe\xf9\xe6\xba\xd2\x81\x65\x45\x5c\xd1\xca\xd8\xeb\x0a\xb4\x45\x38\xd8\xe5\xe7\x3b\x80\x3d\x40\x5a\x3c\xdd\xf1\x15\xd9\x13\x5a\xd7\xf6\x82\xee\xa7\x33\xa4\x5a\xb0\x9c\x0d\x13\xb3\x61\x1c\x0d\xbb\x1c\x47\x22\xa1\xc1\x3c\x97\xa6\x32\x12\xe5\x22\x45\xdf\x73\x5c\xb3\xc3\xa6\x79\x41\x70\xbb\xca\x40\xa2\x10\x7a\x1d\x13\x1a\x52\x53\xf4\xa2\xfc\x5f\x04\xad\xdf\xfc\x96\x7b\x6b\x4e\x11\xdf\xe0\x1b\x5a\x8e\xa7\xb7\x35\x99\x96\xd1\xaa\xe4\xac\x0e\x6f\x42\x5e\x8b\x84\x2e\x51\x52\xb0\x02\xda\x4b\xbc\x85\x20\xe6\x07\x53\xb1\xab\xe3\x9b\x68\x8f\x6c\x78\xe7\xdd\x8d\xa3\x21\x48\x73\x90\x52\x4e\x6f\x78\x1d\x85\x2f\x94\x24\xe6\xee\x4e\x03\xa0\xab\x4c\xd6\x48\x59\xd9\xcd\x3e\x49\x38\xe5\xab\x86\x17\x6b\xc8\x12\x42\x50\xa6\x45\xda\xcf\xcc\x68\x10\x85\x53\x1e\x15\xf7\x3d\xdc\x18\x5e\xef\x2d\x35\x2c\x58\xe7\xd4\xd9\x57\xbd\xb7\xb4\xec\xe5\x13\x6c\x31\x0a\x16\x76\x51\x6b\x03\x46\x71\x5a\x00\x30\xe5\xf4\x89\x55\xec\x47\xcf\x59\x29\xa8\xf8\x79\x66\x25\x6e\x79\x4e\x49\x1a\x9f\xad\x59\x57\x1a\xbb\x4b\x51\x2e\x59\xf4\x0c\x4e\x4b\x33\x7c\x03\xd7\x94\x22\xc9\x8e\xce\x57\x15\x5f\xd9\x3a\x21\xce\x7d\x4f\xe6\x62\xa0\x26\x37\x2f\xaa\xd1\xf6\x7e\x69\xf3\x82\x62\x03\xa4\xed\x68\x48\xc2\xff\x31\x4d\x21\x02\xc1\xdb\x4d\x33\x56\x45\x66\x92\x3c\x72\x44\x4a\xf0\xe8\x80\xd5\xf0\xb1\x1f\xfb\x22\x8a\x83\xdd\x3c\xf4\x29\xb0\x9d\xdf\xf8\x95\x4e\x65\x76\x51\xec\x3b\x3c\xd6\x33\xd9\x30\xf5\xb0\x31\xe0\x52\x46\xd2\xcb\x0e\x13\x29\xe9\xd4\x46\x03\x6b\x67\x92\xf2\xf5\x00\xdb\x09\x16\x54\x3e\x6e\xec\x9d\x86\x69\x12\xa6\x2e\xaa\x67\xe9\x53\x0e\xd0\x61\x46\x8f\x4c\x80\x6e\xc6\x13\xcc\xa7\xab\x55\x4c\xb6\xcb\xcf\x9d\x1e\x0b\xd4\x6d\x1c\x83\xd5\x70\x95\x59\x0f\xad\x0a\x3c\xaa\x61\x33\xf0\xdc\x90\x9b\x8d\xe3\xe7\xdd\x28\x05\x8b\x3d\x9a\x62\xa2\xa4\xe4\x4b\x7e\xe7\xd4\x35\x91\x7a\x5f\x9a\x49\x84\xe2\x20\xaa\xd5\x1d\xf0\x49\x83\x54\xcb\x4b\xed\x28\x33\xf2\x19\xa5\xac\xec\x4e\x9c\xf9\x8c\xa3\xd5\x88\x3d\x3e\x02\xbd\x5f\x8c\xfd\xa8\xda\x75\x78\x1f\x79\xdc\x4f\x2b\x66\x00\x9a\x0d\x9a\x9c\xf8\x86\x94\xb0\x88\xe2\x6c\xf7\x6f\xfb\x16\xda\xd6\x64\x09\x71\x88\xcc\xcf\xcb\xbb\x38\xaf\x7a\xe6\x10\x87\x65\x1c\x00\x56\x8c\xcc\x1b\x3e\xee\x4a\x06\x49\x7f\x17\xfd\x24\x6b\x72\xc0\x55\x8b\xe0\x4b\xb5\x36\x50\x0e\x3b\x83\x68\x09\x85\x89\x93\x0a\x85\xf0\x9e\xae\x23\xdf\x0d\xbc\x05\x48\x52\x5a\xfa\xb4\xb5\xe0\xa3\x8f\x8e\xbd\x0e\xc9\xd1\x5a\x04\xbf\x34\xb3\xd4\x26\xa2\x4c\xb3\x5c\x50\x4f\xd4\x4f\xce\xf9\xa8\x64\xd3\x5d\x79\x16\x85\x66\xca\x27\x55\x1c\xa7\x22\xfc\xbb\x17\x4c\x12\xb4\x79\xfc\x82\x59\x79\x33\xdd\xe5\x55\xec\x37\x03\x35\x96\xfa\x43\xbc\x1c\x3e\x19\xab\x56\x3a\xf7\xa7\xe4\xa4\xba\x34\xf9\x7c\x03\x96\x2e\xb6\x49\xbf\x18\x80\x0a\x01\xb5\x3f\x90\xb9\xf0\x71\x53\x0e\xd2\x2f\xe3\xe5\x96\xaa\x57\x23\xa7\xe5\xe3\xe0\x19\xf7\x4c\xd3\xcc\x24\xaf\xdb\x61\x99\xf4\x5a\x0a\x30\xcc\xef\x86\x4f\x14\x50\x22\x2e\x87\x48\x5d\xd1\xa1\xbe\xa1\x70\x0b\x20\xb3\x14\xba\xad\x09\x0d\x20\x93\x10\xf5\x30\xa7\xbb\x58\xe5\xd8\x96\x67\x10\x3a\x8a\xdd\x9e\xd0\xc1\x52\x1c\x80\x3b\x01\x57\x10\x29\x67\x82\x6a\xf0\x17\x8c\xbd\x60\x7e\x7d\xe8\xff\xdb\x73\x6d\x1b\x47\xc3\x28\x31\x50\xe4\xdc\x42\xb0\xb6\x75\xc9\x05\xe7\x66\x34\xa2\x7c\x72\x4a\x8d\x42\x7e\x3a\xf6\xc5\xa3\x29\x04\x41\xb8\x8c\x47\x9a\xe4\x4c\xba\xa6\x6b\x89\xad\x0d\x5f\x01\xb7\xc1\x79\xac\x14\x78\x71\x5f\x52\xa1\x79\x5a\x55\xa0\x32\xdb\x35\x71\x9c\x63\x51\xc3\xc9\x9f\x21\x3b\xc3\xc7\x93\xb1\xad\x2d\x4c\xb6\xbe\x9b\xec\xdd\x04\xa5\x37\x96\xf2\xc7\x14\x32\x8a\x1c\x4d\xf5\x5c\xa4\x68\xac\x4a\x46\x9b\xaa\x4a\xf1\x31\xc2\x1b\xe9\xf9\x3f\x4c\x2f\x27\x8c\x8a\x28\x4c\xb3\xd1\x94\x92\x44\xc6\xdb\x41\x18\xfa\x63\x5d\xbc\xb9\xda\x00\x84\x6a\xd3\xcc\xda\x74\xeb\xdb\x22\xd8\x79\x7b\x42\x4d\xc1\x53\x8f\x32\x43\x1d\x12\xc5\x8d\xb1\x20\x38\xf3\x95\xf5\x2c\x0d\x57\xac\xa3\x4f\x95\xbe\x97\xe2\xa0\xbf\x01\x3b\x03\xa3\x73\x51\x61\x0a\xba\x66\x65\x05\x14\xc3\x12\x2c\x30\x2a\x90\x4f\xd4\x13\x5e\x37\x43\x13\x85\x83\xa8\xe5\x13\xfc\x4b\xaa\xa7\x79\x49\x35\x11\xd6\xa2\x55\x9b\x53\x2b\x9e\x79\x8e\xc8\x26\xa3\x46\x8b\xd6\x88\x20\x7b\x1a\xf8\x87\x32\x3b\x4c\x19\xf8\xc9\xd7\x4b\xbf\x22\xd7\xde\x10\x69\x9b\x6e\xba\x8a\x1e\xbc\xab\xea\x3b\x84\xec\xf7\x35\x5a\xe9\xd4\x43\x69\x3c\x8a\x41\x66\xed\xce\x2a\xc1\xa0\xdd\xf2\x9d\x67\x69\xbf\x22\xb4\xbd\x4f\x6f\x13\xbd\xa9\x4d\x3d\x0c\x76\x9f\x56\x8b\x10\x20\xfb\x38\xc6\xe6\xa3\x0c\x9c\xb1\xd8\xac\xc7\xd4\xe4\xec\x31\xa5\x29\xd4\x4d\x15\xb6\xc1\xb1\xfe\x38\x11\xd4\x23\xe3\xbd\xfe\x2b\x7b\xc0\x92\x22\x49\x3a\xa7\xc4\x8f\xce\x35\x12\x12\x65\x36\x4c\x33\x26\xc5\x77\xec\xbc\x0b\x0b\xae\x78\xae\x60\xdd\xbd\xd7\x4b\x9a\xec\xaf\xae\x17\xc1\x33\xec\x27\x1f\x2b\x0c\x7f\x3f\x36\xc3\x34\x13\x5a\x18\x09\x48\x27\x68\xab\xea\xc9\xc7\x62\x3b\x8f\xe2\x55\x83\x5a\x20\x4a\x26\x7f\xa6\xc8\xf5\x4e\x07\x6a\x99\x1e\x69\xc2\x4a\xaf\x99\xac\x67\x22\xf0\xfd\x20\x36\x63\xae\x74\x3e\x51\xf7\x32\x2c\xe3\x2c\x4d\x2c\x7c\x81\xa3\x86\xf0\xf4\x7b\x37\x27\xc0\x09\x45\xc2\x35\x43\x29\x28\xd0\x95\xc8\xa0\xc7\x57\xbc\x0d\xcc\xd2\x55\xc4\x54\x70\xc7\xf7\x74\x99\xff\x27\xaa\x63\xff\xea\x67\x64\x9c\x98\x2e\x05\xdd\x55\x74\x7f\x4f\xd2\x4a\xc1\xf6\x7e\xba\x23\xdd\x7b\xd0\x5b\x57\x31\x2f\x45\x14\x28\x48\x33\x36\x59\x7a\x6f\x1e\xe9\x78\xb5\x36\xa4\xe6\x34\x1e\x8a\x22\xcd\x12\xbb\xce\x2a\x4c\x68\x65\x72\xdb\x0d\x0f\xe9\x06\x85\x9d\xb8\xfc\x2f\xc7\x5e\x05\xab\x4c\xec\x70\x14\xa7\xeb\x43\x9b\x14\xd3\xaa\xf0\x7d\x51\xb5\x4e\xb5\x08\xfb\x54\x47\x45\x5a\xf5\x78\x77\x7e\xbe\x6d\xfb\x42\x43\x8e\xb4\x75\x87\x4a\x61\x77\x6c\x3c\xad\xa9\xc0\x0a\x1b\x16\x69\x46\x0d\x5b\xac\x05\x8c\xa8\xf1\x71\x93\x8c\x01\x8a\x56\x3e\x9a\x64\xf8\x05\x96\xa0\x60\x31\x1a\x18\xeb\x56\x92\x74\x2d\x21\x88\x02\x82\xa8\x1f\x51\x07\x4f\x38\x1e\xb4\xb6\xa3\xc2\x65\xdc\x6d\xca\xc8\xba\x6a\x58\x1a\x6b\x96\x23\x21\x3e\x69\x62\x3c\x36\xbd\x9e\x98\x66\xe0\x68\x3f\x52\xec\xae\xff\x24\x50\xd4\x4c\x9f\x28\x22\xbc\x9e\xcd\x47\x51\x61\x1f\xa5\x55\xe4\xb4\xc9\xe6\x0e\x38\x80\x3e\x5d\x03\x1a\x7f\xc4\xb3\xb8\x75\x04\x03\x2a\xa2\xef\x4b\x97\x05\x6c\xd8\x5d\xba\x47\x54\x0b\xae\xab\x8c\x97\x9b\xf6\x70\xc4\x8f\xd4\xa4\x02\x68\xf3\x16\x99\xb5\xae\xc0\xe8\x18\xa4\x3c\xdf\xfd\x64\x34\xb3\x1c\xaf\xef\x9c\x80\x60\x39\x55\xa3\xd6\x86\xaf\x72\xde\x19\xfb\x79\x8d\x3f\x0e\x94\x57\xbb\xa3\x98\x3e\xba\x26\xcb\x6c\x9c\x93\x5d\x82\x2b\x05\x7f\x0f\x1f\x6f\xc3\x19\xad\x2b\x5a\xbd\x4b\x78\x25\xd8\x42\x0f\x90\x01\x89\x52\x5e\x03\x5c\x6f\x22\x15\xe0\x26\x9f\x1e\x51\x78\xa7\x16\x3b\x57\x4e\xbb\x1b\x47\x7d\x02\x56\x09\xca\x55\x69\x01\xec\x97\x21\xc4\x89\xd9\xb6\xfa\xb0\xe3\x5a\x14\x2f\x13\x6d\x58\x75\xb9\x32\xd7\xac\xc8\x75\x4e\x37\xb0\xed\x11\xbd\x4a\x4b\x55\x11\x10\xbc\xf2\x71\x93\xa2\xcb\x28\x4b\x47\x36\x76\x34\xf3\x88\xd9\x99\xde\x8a\x4f\x94\x24\x46\x94\x65\xc4\x48\x4c\x62\x21\xae\x0d\xff\x73\x5a\x41\x82\xee\xac\x2f\x94\x2a\xfe\x4a\x47\x69\xbc\xae\xb4\x90\x58\x88\x4a\x06\xb3\xb6\x7f\xe8\xc5\xf6\x20\x2d\x73\x3b\x48\x63\xde\x1c\x8e\xc3\xcf\x35\x2f\x6e\x07\x8a\xb7\xb9\x2e\xf5\xf8\x97\xda\x26\x0f\xcd\xa8\xa5\x25\x42\x38\x4a\x96\xf6\xe2\xf6\xc7\xb1\x34\xb3\xbf\xda\x59\x69\xcc\x31\x2f\x43\x64\x8e\x29\x2a\x9b\x63\x4a\x81\xcd\x14\x85\x4d\x7a\x26\x09\xd1\x9e\x01\xec\x05\xc6\x54\x08\x59\xe9\xd2\x85\xaa\xb5\xe5\x44\xdd\x6e\x3c\xd4\x5a\xdb\x38\xb7\xd4\xe0\x9e\x6a\xfd\xe6\xb7\x04\xd9\xa2\x52\xbf\x07\xba\xd5\x50\x1f\x0c\xde\xb7\xd0\x1e\x44\xdd\x14\xfe\x50\xe4\xe8\x14\x75\xda\x7b\x6a\xb6\x6b\x2d\xcd\xb2\xf5\x47\xab\xc8\xd2\x51\xfa\x7b\x7a\xff\xb1\xba\xf2\x8b\xd8\x24\x30\x49\x1b\x70\x69\xc0\x29\x1c\x51\x85\x2e\xcc\x38\xc0\xbd\x5d\x03\x64\x01\x1f\x7f\x07\x97\x2c\xe4\x0c\x0d\x6e\x21\x8f\xa3\x11\x16\xad\xd4\x97\x7c\x5b\xeb\xac\x6a\xe9\xe6\x45\xd9\x8b\x52\xa6\x37\x74\x01\x7a\x65\xe9\xd0\xf5\xba\x4e\x9f\x63\xde\xc3\xc0\x97\x8a\xee\xc2\x92\xb9\xce\x4d\x75\x39\xfc\xf1\x26\xba\x97\xd0\x24\xab\x86\xfd\x94\xeb\xb5\xb8\x9e\xe4\xb1\xe0\x31\x99\x76\xfc\x8b\xdd\x96\x06\xc5\xab\x7c\xec\xea\x44\x7f\x2a\x4b\xd7\xbe\xa2\xda\x0e\x17\x50\xe2\x42\xb4\x75\x02\x26\x41\x9a\xd2\x64\xd0\x25\xdb\x51\x0d\x8d\x33\x6a\x8a\x92\x83\x70\x57\x11\x9e\x3b\xc0\x9e\xeb\x32\x61\x8f\x25\xd1\x06\xa0\x04\x15\x8b\x3f\x55\x82\x42\x20\x3a\x74\xe0\x5c\x47\x77\x79\x13\x4e\x83\x87\x60\x35\x21\x6f\x66\xbb\x69\x32\xe5\x87\x31\x36\x55\x97\xf7\xe7\x9a\xd2\xee\x9a\x7b\x36\x6f\x76\xbb\x4a\x96\xf0\xbc\x66\x37\x6f\x74\x83\xf9\x20\xcd\x50\xdd\x43\x4c\xd2\x52\x91\xc1\xe3\x1b\x8a\xc6\xe7\x6a\x63\x96\x6f\xca\xa4\x57\x59\xf9\x6d\xaf\xdf\x29\x3e\x55\xeb\x17\x18\xa3\x7f\xdb\x38\xcd\x3f\x34\x49\xb9\x6c\xc2\xa2\xcc\x44\x11\x41\xc2\x1b\x7a\x26\x12\xf7\x28\x7e\xe5\xbf\xf6\xd7\xa6\xd4\xeb\xf9\x90\xda\x0f\xe8\x71\xdd\x53\x3a\xd9\x37\x9b\x98\x67\x56\x53\x97\x8d\xb9\xe6\x85\x12\x09\x51\x63\x40\x37\xd5\xe2\x8f\xcd\x5a\xce\xe3\xc6\x92\x8e\xea\xdc\x54\x01\x75\x87\x36\x8b\x6c\x79\x68\x3b\x39\xf8\xa2\x23\x07\x57\x6c\x5c\xb6\x5f\x45\x77\x3b\x3d\x54\xe3\x03\x6c\x5d\x80\xa9\x18\xd0\x85\x7a\x01\x28\x09\x00\x24\xbb\xa3\x6b\x74\xd7\x15\xcc\x29\xb3\xb1\x35\xb9\xc5\xe4\x88\x30\xc5\xab\xe1\x8b\x7a\x07\x82\xc4\xa1\xd3\x11\x73\x76\x2a\x91\x43\xa7\x78\xd8\x48\xd9\x96\x17\xd6\x93\x6a\x8a\x13\x55\xd5\xaf\x3a\x05\xf9\xdc\x81\x76\xb7\x8c\x57\xa6\x54\x9f\x12\xf5\x5d\x78\xff\x07\x6a\xc5\x5c\xa8\xc9\x14\xd2\x1c\x74\x91\x99\x34\xeb\x45\x89\xc9\xa2\x78\xbd\xa5\xd1\xa2\x40\x44\xc9\xb4\xff\x43\x85\x45\xac\xe9\xad\xe3\xc5\x0b\xd7\x62\xf5\x9b\xe8\x3f\xb2\x96\x23\x0c\x68\x5d\x45\xed\x85\x17\xda\xa3\x34\x2b\x32\xb3\x8e\x04\x4b\x72\x3d\x32\x18\x92\xec\x35\x25\x58\x3d\x13\xc5\xeb\x98\xde\xc4\xfa\xc4\x8f\xf2\x31\xbd\x53\xe6\xd8\x0c\x26\x92\xbc\xdf\x78\xc5\x59\xa8\x06\x79\x5e\x55\xfc\xaa\xe2\x00\x57\xfb\x52\x16\x0b\x2f\x80\xc3\xd5\x24\xa5\x52\x12\x45\x44\xd5\x4f\x3a\x11\x81\xa5\x19\x4f\xb3\xb8\x4f\x82\x83\x2b\x6a\xd2\x3e\xb7\x49\x11\x0d\x5d\x67\x07\xad\x52\x4c\x6c\xb1\xc0\x06\xdd\x03\x2a\x85\xa7\x55\xa2\x5d\x0c\xd2\x9c\x91\xc3\x08\x4d\xae\x29\xd5\xa9\x1d\xe8\x2e\xc1\xa4\x33\x01\x22\x36\xe0\x57\x3a\x6a\x34\xf1\x9e\xe2\x66\xb9\x1e\xf8\x81\x5c\xae\x55\xc2\xa3\x30\x0b\xc3\x04\xe7\x98\x50\xab\xd1\xcb\x76\x63\x1e\xfb\x24\x00\x78\x7c\xc3\x45\x42\x3f\x7f\x86\x04\x38\x64\xcc\xd1\x33\x15\x8c\x06\x51\x9c\xe6\xe9\x88\xab\x97\xf8\x2d\x14\x55\xf8\xb8\xb6\x48\x08\x0c\x9f\x45\x43\x21\x7f\x45\x4e\xf7\x96\x02\xd3\xbf\xd5\x04\xec\x5e\x33\x09\xd7\xad\x11\x75\x9f\x50\x11\xf8\xa6\x62\x10\x3a\xaa\xe9\x99\xea\x9c\x88\x07\x89\xb8\x2b\x1d\x8e\xe2\x28\x1f\x90\x01\x40\x25\x6e\x53\x09\xc3\x6d\x3a\xb0\xe1\xc0\x52\x33\xe2\xe0\x0c\x73\x31\xed\xd8\xf0\xe5\xa2\xaf\x50\x13\x8e\xb6\xe2\xff\xfc\x17\x3a\x9e\xd6\xf2\x73\xcd\xe7\x7c\x5a\x27\xef\x75\xca\xa0\x7d\x0b\x34\xc0\x38\x92\x8c\x6c\xeb\x3c\xf0\x5d\xaa\x22\x90\x76\xf3\xc2\x84\x31\xcb\x12\x3a\x6c\xe3\xac\xb7\x21\x52\xeb\x1c\x18\x8d\x75\x42\xc3\x04\x69\x30\x1f\x2b\x6e\xa4\x22\x2b\x8b\xc1\xb4\x42\x32\x9e\xd7\xf2\x41\xcc\x4e\x80\x1d\xfb\x05\xaa\x88\x7c\x32\xde\xce\x69\xb6\x6f\xa1\x6d\x86\x2d\xcd\x4f\xc4\xd4\x6c\xa2\xf1\xf8\x35\xaf\x55\xc7\xba\x7a\x10\x0b\xd9\x4b\xb9\x9e\x2b\x37\xba\x65\x7b\x46\xb9\xfb\x33\x14\x38\x88\x46\x36\x7e\x44\x4b\x52\x23\xbd\x39\xa5\xc5\x51\x0e\x13\xf4\x16\x13\x02\x0f\x02\xb5\x1d\xb1\x60\x10\xdd\x5c\x19\xab\xa6\xf9\xfb\xb8\x5e\xac\xbd\xc7\x3b\xcf\xf2\x8d\xbd\x5e\x66\x51\x3e\xca\xca\x9e\x25\x4a\x68\x47\x85\xb4\xa7\xa3\x1a\x07\x7b\x36\xbc\xbb\xfd\xf6\x81\x83\xea\xcf\xde\xd6\xfd\x85\xb7\xbd\x5e\x56\x56\x56\x5e\x41\x4b\xb9\x7d\xa0\xd8\x61\xee\xd3\x32\x14\x28\x17\x7d\x83\xb0\x48\xc9\x6b\x4e\xbb\x85\x89\x12\xdb\xdb\x59\x3d\x26\xc7\x63\xe9\x78\x27\x37\xc7\x6a\xdc\x6c\x37\x15\x01\x51\xcc\xff\x48\x63\xf5\xea\xd8\x2b\xea\x8b\xd9\xa2\x90\xf9\x2c\x57\xfc\x70\xfd\x51\x56\x81\x82\xf1\xbf\x31\x56\x3c\x23\x83\x2c\xca\x8b\x88\xb1\x62\x48\x5a\xcf\x20\x50\xe3\x93\xc0\x37\x54\xf2\x28\x81\x73\xd0\x83\x76\x92\xa2\x3d\xa7\x7c\x74\x6e\xb3\x55\x18\xe3\x96\xd7\x28\xe5\x82\xb8\x2c\x68\x5f\x6c\xc8\xa2\x6e\xb7\xfa\x53\x95\xb0\x71\x60\x20\xb2\xb6\x5f\x55\x8a\xba\xab\x51\x82\x57\x8a\xd6\x2c\xa7\x1f\x7c\xd2\xa4\xf3\x99\xa4\x49\x99\x08\x93\x0a\x9e\x00\xea\x42\x7c\xbc\xf1\xac\xc2\x60\xf6\x6c\x96\x87\x29\xa7\xc5\xfb\x9d\x6c\x51\xcb\xd1\x77\xfe\x89\xf2\x00\x79\x5c\x0e\x47\xf4\xb5\x08\x6a\x01\x2b\xe1\x63\xd7\xef\x1d\x45\xfd\xbc\x80\xbd\x94\x78\xb1\xe5\x66\xc2\xbf\x9c\x98\xb1\xb7\x79\xf1\x35\xc5\xa5\xf5\x89\x9e\x38\x39\x87\xbd\xec\xfc\x93\x9b\x65\xda\xc1\x63\xa5\x70\x73\x5c\x24\x43\x30\x3a\xd5\xf1\xc5\xfc\xaf\x74\xc8\x0a\x89\xb4\x9b\xe7\x1b\xdf\xb9\xa1\x8a\x39\x3f\x85\xab\xc2\xee\xba\x4d\x5b\x18\xd1\xd9\x2f\x69\x88\x10\x51\xfd\x19\x00\x67\x99\x4c\x2d\xf0\x8a\x76\xb7\x02\x2f\x3d\xfd\x25\xb2\x10\x18\x5c\x80\x6f\x10\x8d\x1e\xd7\xc0\x6b\x16\xcf\x21\x23\xbb\xf2\xd4\x06\x81\xfd\x85\xcc\x92\x3c\x86\x23\xf6\xae\xd6\x2f\x50\x7b\x3f\x70\x13\x48\x23\x93\x30\xc9\x5f\xf5\xf5\x68\x8a\x72\x33\x8f\x4f\x1c\x5e\xba\x6b\x92\x15\x9b\x01\x1d\x24\x3c\xe2\x13\x63\xe7\x78\x88\x8e\x65\xd4\xcb\xc6\x1f\x55\x23\xef\xad\x8e\xa6\x54\xec\xe6\x51\x2f\xb2\xd0\x02\x72\x84\x7f\x8e\x99\x13\x86\x91\x73\x54\x45\xfe\xfc\x4e\x0d\xb1\x51\xc5\x9b\x51\x52\xd8\x3e\x4b\x31\x29\x22\xd0\x73\x8a\x34\xec\x9c\x8a\xd6\x8b\xcc\x10\x88\xc0\xc9\x80\x7d\x57\x31\x9e\xbe\x45\x3e\x46\x46\xe2\xe8\xdb\xa4\x02\x55\x5d\x1e\xec\xda\x07\x58\x5c\x8a\x38\xdd\x3d\xec\xc6\x9e\x78\x3e\x4a\x0b\x45\x35\x0e\x6a\x26\xa9\x5c\xd6\x22\xb8\xb9\x36\xa2\xb1\xb5\xa8\x67\x15\x02\xe5\xae\x1a\x53\xd9\x50\xc9\xfd\xfd\x5a\xd6\x45\xcc\x76\x66\x48\x9b\xfd\xe0\x8c\x53\x9d\xac\x3e\x22\x6a\x94\xcf\x2b\xc2\x91\x7e\x12\x2d\x47\xa1\x49\x8a\x78\x7d\x77\x6d\x2c\xd5\xcd\xc3\x39\xc9\xb5\x7b\x81\x9a\x33\xfb\x77\x6a\x9e\x9e\xe4\x16\x96\xb6\x4e\x6b\xa4\xf9\xa6\x02\xeb\x75\xe3\x34\x5c\x99\xf6\x80\xa9\x9b\xba\x25\x73\x11\x63\x1f\xfc\x3f\xb4\x2f\x04\x5e\xe4\x55\x0e\x14\xeb\x62\x63\x32\xd2\xc0\xa9\xb0\x5c\x39\x9e\xcc\xb8\x32\xa1\x2b\x48\x3a\x7a\xc3\x53\xb5\xe7\x57\xf9\xf6\xde\xaa\x11\xff\xe7\x9a\x59\xb3\x73\xae\x99\xe5\x86\x57\x4d\x34\xb2\xd1\x94\x1f\x46\x81\x4f\x42\x25\xff\xb0\xd6\xde\xba\xd6\xb0\x32\x5e\x25\x60\x0e\x15\x4a\x91\x7f\x23\x3f\xe5\x63\x17\x8e\xbd\x9e\x0e\xdc\x14\x10\x72\x03\x46\x92\xf0\x49\xcd\x72\x4b\x52\x33\xb0\x19\x3c\xae\xf4\x9e\x51\x77\x40\x75\xe0\xb1\x0e\x59\x0c\xc7\x2f\xe2\x4b\x99\x37\x14\xe0\x62\x64\x8b\x2c\x8d\x6d\x39\x54\x18\x82\xd7\xc8\x56\x03\xc6\xc2\x2f\x51\x34\x12\x7d\xfa\xba\x62\xe3\x38\xed\xf7\xe9\x7d\xbb\xf9\x01\xb7\x80\xc1\x35\x29\x14\xe3\xb4\xa0\x84\x63\x7c\xfb\x4b\x9c\x9f\xd7\xac\x76\x74\x3b\x28\x1d\x5d\x54\x63\x80\x75\x72\xc8\x85\x85\x76\x91\x59\xe8\x9b\xbc\xca\x1e\x03\x94\x9b\x7c\xdc\x50\xa2\x5d\x6c\xaf\x42\x47\xfd\x55\x06\x21\x6c\x2a\x12\x4b\x74\x74\x61\x7a\x8f\xe9\xde\xf0\x54\xa7\x89\x30\x2d\xb3\x3d\x6b\x87\x2d\xcf\x64\x71\x42\x89\x45\x9f\x50\xe5\x0a\x6b\x06\x54\x50\x44\xc2\xbe\x53\xf5\x2f\xf9\xa5\x00\x41\x7a\x6f\x42\xab\xa8\x0a\x58\xf6\xa8\x7e\xd3\x19\xfd\xfe\xde\xa6\xdb\x84\x0d\xe3\x31\x1b\x94\x06\x5a\x1d\xdf\x4d\xd2\x25\x6e\x28\xa8\xc0\x71\x5d\x1f\x2b\xb4\xa1\x06\x49\xa4\x45\xba\x53\x45\xf5\x67\xf4\xa4\xd0\x79\x3d\x6f\x71\x46\x65\xee\x7b\xd4\xed\x1c\x7d\xa8\x96\x46\x51\x66\x09\x8f\xd6\x30\xe3\x9d\xd6\x90\x39\xe3\xb0\x2c\x5d\xd3\x5d\xdf\xa5\x4a\xb5\x9a\x96\xe5\x53\x22\xad\x84\x5b\x7e\x57\xe1\x55\x19\x7e\x84\x1d\xf9\x96\x1e\x3d\x7d\x77\x22\x7e\x48\xd7\x4d\x13\x72\x0b\x09\x15\x03\x3a\x00\x47\x6b\x6d\x34\xd0\x44\x86\xa6\x1b\x25\x16\x56\x9e\x65\xfd\x26\x24\xfe\x26\xe8\x80\xf2\x91\x1a\xe4\xc1\xdf\xf1\xb1\x9a\xa5\x2a\xd2\x35\x56\xf2\x42\x8b\xe5\x5d\x4d\xe4\xf9\x6e\x43\xf3\x78\xb1\xf2\x33\x99\x00\xd0\x60\xb8\x45\xe6\x8e\xc9\x72\x71\x1b\x32\x5b\xd5\x04\xb0\xc9\xcc\xba\x0a\x53\xcf\xaa\x30\xf5\xac\xa2\x3e\x8a\x23\x9b\x53\xbb\x08\x41\xcd\x26\x95\x24\x5c\x57\xc3\x15\xac\xd0\x56\x45\xb1\x18\xf3\x10\xa8\xad\x1c\x57\xcb\xaa\x97\x1e\x42\x05\x04\xeb\xf5\xb3\xb1\x67\xa3\x38\xab\xc8\x5c\x6f\xaa\x09\x83\x8f\xe9\xe7\x84\xe0\xae\x2e\x63\xd0\xa6\xc6\x6f\x4f\xcf\x95\xe8\xce\xdd\x47\xe3\x27\xbc\xf7\xb3\x36\xdf\x43\x0f\x05\x63\x5c\x32\xa6\xc5\x67\xf4\xa3\x48\x57\x18\x35\xce\xc5\x37\x3d\xb0\x07\x59\x06\xa4\xe1\xd3\xc0\x79\xf3\x63\xc1\xd2\x93\x67\xe4\x93\x81\x5e\x19\xae\xd0\x0a\x70\x79\xbc\xcf\xe9\x1b\xa5\xfd\x51\xa1\x91\x5b\x12\x82\x47\x5a\xfd\xc2\xf0\xa8\x8b\xda\x44\x6a\xe6\xc6\x9f\x0f\x2b\xf1\xe6\xc3\x4d\x73\xac\xcb\x76\xcd\xe6\x45\x8b\x62\x46\xa7\xfa\xe0\xcd\xb3\x02\x12\x0c\x4d\xb6\x62\xab\x64\x9b\x76\x21\x87\x94\x81\x1a\x59\xbe\x8b\xc8\x15\x45\x59\x74\x2c\xe1\x6d\x1e\xd9\xf0\xf3\xbd\xd7\x91\x9f\xc2\x81\xbc\x53\x5b\xc9\xaf\x2c\xcd\xb4\xbb\x29\x72\x15\x57\x49\xfa\x2e\x5d\x91\xc4\x6b\xdb\x6f\x62\x76\xb6\x3d\x4a\xe3\x28\x64\x21\x26\xec\xef\x47\x54\x04\xff\x48\x6d\xcf\xce\xce\xb6\xab\x00\x2b\x61\x5a\x6f\xd4\x5f\x7f\xa9\x2b\xbc\x97\xf1\x92\x81\xcd\xbf\x55\x63\x35\x5f\x58\x68\xe7\xe9\x74\x75\x57\x78\x4e\x57\x11\x2d\x3a\xea\x9b\xa5\x19\xf6\x4d\xbf\xd0\x3d\x81\x13\x63\x2f\xb8\xcf\x24\x00\x21\x28\x49\x67\x67\x39\x49\xbd\xa9\x70\xf1\x37\x95\x4e\x45\x98\x26\x9c\x1c\xae\x5a\x70\x1d\xc1\x93\xdd\x50\xc5\xab\xa9\x8e\x72\x77\x00\x2f\x60\x29\xa3\x1d\xc4\x1f\x40\x1d\x19\xfb\x95\xb5\xf9\x11\x73\x7c\x30\x29\x88\x17\x25\xfd\xaf\x56\xff\xbb\xf5\x28\x30\x11\x08\x71\xa6\x36\x54\x65\xe4\x3e\xdd\x28\x8e\x8f\xd1\x76\x67\x80\x6d\xe0\x63\xea\xbf\xb9\x4d\x47\x83\x02\x4b\xa7\x3a\x5b\xbd\x30\xb4\xd7\x37\x60\x9e\x1c\xed\xe1\x41\x16\x83\xf9\xdf\xc0\x46\x8d\x4f\x70\xff\x0a\xdf\xfc\xcf\xc6\x8a\x76\x98\x87\x3c\x24\x0e\xf3\x58\xa9\xd0\xc4\xd1\xf2\x37\x76\xe2\x22\x90\x43\x5f\xc5\x45\xa0\xdc\x82\xde\xd4\x04\x7f\x19\xfe\xea\xb1\x4e\x4b\xb1\x49\x7b\x78\xa1\x3d\x84\x29\x21\xe6\xc0\x67\x41\x15\x44\xb0\xa2\xae\xa2\x34\x1d\xb2\xb2\xff\xa8\x62\x9d\x3f\x8f\x8b\x76\x95\xaa\x25\xcf\x32\xeb\xa7\x57\x18\x9e\xc3\x38\x52\x6c\x18\xb4\x13\xae\x2a\x4d\x09\x24\xa9\x70\xdc\xac\x8a\x22\x48\x9b\xed\xad\x6f\x2a\xb1\xe7\x51\x62\xf3\x7c\x08\xba\x02\x6f\xe3\xbd\xbd\xd7\xbc\x32\xf1\x90\x7a\xa7\x58\xdd\xff\x46\xd1\xc9\x5e\x09\x3c\x2e\x1a\xe2\xb5\x48\x8b\x4e\xbb\xe4\x72\x68\x0a\xd3\x4f\xb3\x9e\x99\x92\x61\x5f\x8f\xe1\xe0\xde\x19\xa0\x52\xd7\x6a\xb1\x2b\x78\xd0\x46\xb1\xd3\x7c\x11\x75\xa5\x96\x57\x5a\x6a\xe4\xb3\xe8\xd9\xd5\xb4\xb0\x48\x00\x61\x5a\x4e\x29\xc2\xc3\x53\x63\x3f\x7d\x39\xb0\x8e\x0f\x5f\xa2\x47\x15\x49\xd6\xa2\x94\x03\x2f\x3b\x76\xd8\x7c\x48\x0f\xce\x69\x4f\x7b\x1d\x6a\x2f\xc1\x55\x66\x3c\x80\x43\x57\x8f\xd7\x71\x56\xd3\x7c\xd7\x87\x2f\xab\xcb\x1f\x95\xe0\x31\xce\xc8\x12\x08\x98\xb8\xfa\x35\x3e\x6e\x70\x0c\xfb\xdb\xc3\x2a\x2c\x2e\xca\x61\x4b\x01\x26\x8f\xaa\x01\xc0\xa3\xba\x04\x65\x56\x50\x82\x12\xaf\x43\x9f\x11\xb7\xf3\x84\xea\x08\x98\x04\x5c\xa1\xae\xe1\x5c\xbd\x30\xe9\x44\x37\x90\xe0\xae\x57\xb1\xfe\x9a\x2a\x6b\x9f\x55\xb0\xa5\xb3\xe3\x67\x27\xe0\xdb\x99\x89\x9c\xb6\x39\x02\x2a\xa4\xd6\x7c\xdc\xc0\x27\x34\xd7\x8e\xe2\x98\xd3\x38\xdc\xa8\x70\x0f\x55\xbf\x22\xa4\x44\x6e\x6e\x64\x54\x66\xae\xfb\x84\x20\xe1\xb4\xa6\xc5\xaa\x13\xd0\x57\xa1\x93\x3d\x34\x02\x55\x4f\x4b\xcf\xd1\x04\x2d\x25\xb8\xe4\x43\xb3\x7c\x10\x8d\x80\x6f\x81\x6f\xff\x87\x63\x3f\x00\xfd\x0f\xb5\x84\x9b\xb5\x19\x5f\x31\x6a\x9b\x68\x9d\xf2\x71\x0d\x85\xf5\x62\x3b\x19\x16\x5d\xd3\xf2\x2a\x58\xdb\x34\xb3\x9d\x4e\x41\x14\xc7\xf9\x4e\xcd\x51\xcb\xe3\x5a\x40\x0c\xef\xe9\x78\x60\xc9\x05\x9d\x29\xee\x98\x24\x0e\x71\x4f\x6c\x90\xae\xd1\x80\x8f\x9b\xc2\x01\xe6\x07\xf5\x4f\x86\xa0\x0a\xa2\x9d\x2c\x11\x62\xe4\xdb\x8a\x5e\xca\x1e\x0a\xcd\xaa\x21\x58\xd8\xfc\xbc\x03\xb5\x28\x80\x4b\xed\xa9\x57\xc9\xb9\x89\x63\x43\x53\x84\xad\x89\xc9\x47\xef\xaa\x4e\xd6\xb2\xb4\x17\xdb\xc5\x20\xca\x30\xd1\x85\xe7\x72\x46\x71\x7f\x9c\x71\x63\xf8\x34\x55\x12\x66\xd1\xa8\x98\x52\x43\x7d\x67\x55\xd1\x19\x7e\x56\xc4\x7e\xb7\xbb\xf7\xd9\xd9\xb6\xf9\x06\x27\xdd\xc2\x37\xad\x5a\x68\x9b\x0a\xad\x51\x66\xcc\x0c\x20\xba\x86\x57\xb0\xde\xf8\xa4\x2e\x84\x45\xad\x20\xf0\x03\xa2\x84\x76\x9d\xac\x28\x1f\x3b\xed\xbd\xc2\xc6\x76\x39\x4e\x33\x70\x86\x4c\x70\x81\x4b\x9a\xd4\xd4\xae\x5f\x89\xb8\x61\x8b\x3f\xba\x1e\x28\xc6\xe2\xeb\xaa\x1e\x9c\x13\x8c\x0f\xb3\xa1\x4e\x29\xb2\x7a\xbb\x78\xd5\x9f\x04\x7e\x87\xc2\x11\x52\xe6\xd1\x81\x22\x80\xf4\x9a\xab\x30\x93\x8f\x15\xfc\x26\xb3\xa3\xb2\xa0\x22\xd6\x54\x6b\x76\x8e\x91\x6f\x58\x54\x88\xad\x30\x72\x81\x6c\xe0\x87\xae\x95\x93\xdb\xa1\xcd\x0b\xbe\x7a\x2e\x4c\x04\xde\x73\x6c\x2a\xef\xd4\x8f\xd7\xf7\xaa\xa6\xec\x61\x6f\x29\xc3\x5f\x21\x16\x16\xc5\x9b\xba\xa8\xc9\x2d\xe6\xf4\xff\x4c\x8a\xdf\xd2\x6d\xff\xb3\xff\x1a\x21\x94\x92\x8d\xde\xcf\xb9\x09\x18\x53\x65\x24\x07\x4b\x43\x38\x99\x5a\xc2\x32\xb7\xf0\x2b\x1b\x1e\x7a\xbd\x1a\x65\xfd\x28\x8e\xd2\x29\xf7\xf8\x36\xae\xc1\xb1\x23\xa9\x00\x9f\x3f\x00\x68\xde\x7b\x96\xc9\x28\x26\x86\x84\x96\xe2\x24\x42\x92\x20\xa3\x3e\x4d\xbe\xa0\x48\x2b\x17\x25\x8d\x30\x44\x51\x9f\xab\xd1\xb0\xcf\x9d\x0b\xcc\xcb\xee\x28\xb5\x09\xcb\x89\x08\xb8\x41\x01\x1d\x82\xbd\x6e\x95\xac\x44\x85\x22\xc3\xdd\xb1\xe1\xab\xc5\x3b\x3a\x3e\x58\xec\xc6\x86\xe2\xf5\xb9\x03\x6e\x24\xb5\x5a\x25\x32\xaa\xba\xdd\xc9\xbf\x42\x9b\x3f\x1b\x3a\x0d\x2f\xe1\x8b\x50\x63\x09\x87\x55\x31\xc9\x24\x87\x22\x5b\xac\x2b\x9f\x71\x2c\x98\x50\x73\x51\x50\x62\xd3\x4f\x6c\x11\x85\xd3\x3e\x13\x3f\xa9\x41\x81\x17\x03\xcf\x10\xcb\x54\xfc\xfc\x57\x6a\x7e\x24\x2f\xfb\x7d\x68\x8b\x63\x84\x41\xa8\xe8\xab\x7b\x92\x81\xd5\x26\x85\x31\x03\xa6\xf4\x96\xe3\x91\x61\x4d\x73\x11\xae\x7c\x56\xd5\xd5\xb2\xd0\x8e\xb8\xe9\x7e\x70\xc6\x75\x35\x15\x4b\xe3\x09\xc5\x3d\x5f\xe7\xaf\x9e\x3b\xd0\x1e\x98\xd1\xc8\x4a\xe1\x44\x00\x3c\xbe\x80\xa8\x27\x38\xe3\xbe\xe5\x74\x0a\xb6\xef\x3d\x3d\x95\xf7\x9e\x56\xfa\xb5\xd9\xb2\x0d\x59\xe8\x5e\x50\x59\xde\x19\x5c\x70\xc6\x49\x66\xd6\x7a\x10\xb1\x42\x61\xf4\x36\x36\x15\x0a\x66\x57\x02\x9f\xa3\x80\x45\x42\x7a\x7a\x8a\xf9\x05\xc9\x33\x62\xf6\x69\xd5\x21\x30\xc3\xca\x10\xf4\xcc\x90\xbc\xa1\x42\xab\x2c\x3a\xb4\x8a\xa3\x73\x31\xab\x56\x64\x7b\xd0\x3e\x78\x5f\x09\x7b\xbd\xaf\x66\x61\x2d\x8f\xb4\xd1\x45\x3a\x99\x9a\x25\x77\x61\xd5\xb2\x97\xdf\x3f\x64\x14\xb7\xf3\xa7\xd4\x15\xe0\x63\x25\x29\x96\xa4\x85\x4b\x3a\xb1\xc9\x6e\xa1\x7c\xc6\x27\x7a\xc6\x28\xed\xef\x54\xd4\x8c\x27\xf4\x84\xdb\xbd\xb1\x9f\xf9\x7c\xa2\xe3\x43\xb4\xd6\x86\x5f\x70\x3f\xd3\xa5\xa1\x81\x1d\x5a\x6c\x73\x16\x85\xa0\xd7\x2e\x02\x11\x0d\xd8\xd3\xf8\xaf\xfd\xda\xaf\xa9\x98\xff\x02\xdd\x0f\x1f\xd7\x22\xba\x83\x33\x2f\xb5\xbb\x51\xd2\x47\xf9\xdb\x71\xbc\xcc\xcf\xbb\x6d\xba\xd7\x95\xbf\xf3\xc2\x4e\x6b\x66\x51\xdc\x96\xd8\xc8\x96\x62\x1c\xa9\x3e\x0f\x3b\x7a\xaf\x86\xbc\xaa\xf6\x4e\x62\xd7\x30\x2a\x21\x55\x6d\x5d\xe2\x7e\x08\x61\x74\xc6\xe0\x77\x2c\x09\xfc\x1e\x2a\x34\xf7\x54\x5e\xca\x9d\x79\xf4\xc0\x1f\xed\x34\x50\xb8\xad\x46\x76\x0d\xe0\x17\x47\x2a\xbb\x34\xb3\xc5\x2c\x3d\x28\x71\x5e\x53\xbc\x71\x89\xed\xa7\x45\x84\x2e\xed\xb4\x0a\xf3\x0f\x07\x2a\xcc\x3f\x4c\xd6\x02\x2f\x98\x35\x4f\xf9\x24\x98\x9c\x67\x4c\x05\x99\xbe\xe0\x29\xa6\xaa\xaf\x11\x26\x2a\x17\xa6\x11\xc4\x92\x07\xb2\xd0\xa4\xc4\x74\x9a\xa3\x59\x77\xb4\x57\xd7\xb7\x4d\xaa\x1d\xda\xeb\x92\xe9\xe7\x29\xa9\xd8\xda\xa5\x47\xb8\x1f\xe0\xf2\x94\x0d\x7a\xd5\x31\xcc\x68\x35\xc3\x40\x19\x8d\x9b\xec\x00\x19\x14\x05\x3b\x27\x35\x3c\x45\x77\xf9\x0f\xe9\x45\x30\x7c\x9f\x1e\x89\x80\x39\x1a\x2c\x5a\x91\x19\x88\xc8\x3b\xc3\x77\x0d\xc6\x02\x09\xf2\x5d\x85\xd3\xdd\xad\x8c\x85\x4d\x5e\x4f\xd7\x01\x7c\x3e\x38\xd3\x3c\xdf\x22\x61\xe1\x72\x4c\xb5\x73\x49\x40\xf0\x18\xff\xb1\x12\x27\xf9\xc7\x8a\x85\x33\x4c\xcb\xa4\xb0\xd9\xc8\x64\xd0\x98\xc2\x1d\x7d\x9f\x6c\x99\x26\xa1\x44\xf9\xe2\xb8\x8f\xcf\x63\x6b\x56\x54\xe7\xe3\xd1\x8e\xe7\xbf\x3a\xea\x49\xb9\xae\x83\xba\x17\x4b\xfc\x8f\x6a\xbc\x78\xfb\x16\xda\xa3\x6e\xae\x35\xb5\x8e\xab\x0d\x75\x4d\x2f\xea\xad\x49\x8c\x4b\xb8\x32\xad\xe8\xd9\x03\x05\xba\x38\x3f\x56\x15\xc4\xb3\x2a\xa7\x3f\x5b\xa3\x98\xa9\x76\x58\x62\xcb\x2c\x8d\xd3\x7e\x94\xb3\x47\xd0\xec\xda\xe2\x4f\xeb\x9b\xb9\x9d\x17\x69\xda\xd3\x33\x3a\x27\x94\xfe\xca\x89\x26\x4a\xeb\xe5\x28\x06\x54\x1b\x59\xf8\x54\x67\x6a\x69\x66\x3f\x0f\x79\xa3\x02\x77\x45\x8d\x6f\xff\x58\xcb\xf3\x15\xa6\x28\x8b\x34\x5b\x57\xb0\xf0\x8b\x4a\xf9\xfe\xa2\x1e\xdc\x8a\xc8\xaf\xef\xd2\xe9\x3e\x55\x6d\x64\x6a\xb6\xe5\xa4\xa5\x18\x46\x86\x5c\xe9\x24\x2c\x01\x9f\x60\xad\x4b\xe9\xc0\x9b\xf8\x24\x32\xbb\xe9\xef\x04\x78\xe8\x5b\x63\x3b\x9f\xec\xe8\xf2\xd3\x45\x05\x63\xb8\x42\xd5\x6c\xb8\xec\xe3\x68\xba\x0a\xcd\xbd\xc7\x96\xdd\x51\xe3\x95\x61\x3a\x1c\x95\x85\xcd\xf2\xbd\xca\xa8\x30\x68\x0e\x80\x83\x1d\xa8\xd0\xb9\x5d\x5b\xbd\x07\xdc\x15\x17\x29\xb9\x23\xbf\xe1\x8b\x94\xa7\xa8\xf6\x84\x68\xf6\x53\x85\x2b\xbb\x1d\x50\x97\x10\x30\xb9\x1b\x48\x25\x9c\xb6\xa9\x2b\x77\x5d\x1b\x4f\x0c\x51\x36\x20\x49\x96\x6d\x96\x95\x6f\xbe\x19\x29\xb1\x8d\xf7\x35\xab\xe9\xfb\x81\xd7\xc0\x08\xb3\xa8\xda\xa2\x3c\xe4\x05\x9f\xf3\x09\x6c\x22\x9f\x34\x38\x90\x45\x82\x70\x4e\xb7\x14\x29\x8a\x56\x87\xc5\xba\x87\x3f\x98\x56\xe2\x76\xc7\xc6\xcf\x4e\xaa\xba\x1d\x9c\x59\x68\xbf\xf0\x42\x4b\xb1\x71\x01\x98\x20\x21\x60\x5d\x0e\x1a\x02\xdf\x53\x8a\x90\x01\xed\x65\x54\xb8\xee\x28\x1e\x9c\x0b\xea\x2d\xf6\xa2\x55\x9b\xf5\x25\x5a\x14\x8d\x45\x3f\x35\xb6\xa9\x46\xc4\x87\x25\x09\x4e\x7b\x96\x3f\xf0\xf3\xf0\x71\xe7\x09\x4f\xc4\x55\xf6\x73\xc5\xb7\x7b\x5b\x49\xc6\xde\xae\x8d\x54\x1c\x78\xb9\xdd\x8b\xde\x7c\x93\x4a\x82\x14\x83\x22\xe8\x00\x6b\x20\x92\x95\x3b\x81\x07\x52\xfd\xd0\x13\x91\xd9\x38\x15\xc6\x5e\xa9\x1b\xd3\x66\x81\x4d\xbc\xa0\x30\x01\xc7\x34\xd3\xe4\xce\x8e\x2f\x6c\xd7\x19\x7b\xe7\xe7\x89\xee\x92\x76\x31\x6c\xd2\x61\x65\x9f\x0e\xab\x10\xbf\x6f\x68\xfe\x9d\x71\x46\x52\x61\xf3\xf5\xe6\xb3\x2a\x48\xcd\x32\x4b\xe2\xeb\xd5\x37\xa1\x7b\xc4\xec\xeb\x7c\xa2\xd2\x78\x93\xf4\x6d\x86\x78\x42\x31\x9b\x28\x0a\x3a\x4f\x47\x37\xc1\xd0\x5f\xc3\xa4\xcc\xce\xb5\xb3\xb2\x6b\x13\x9b\xbf\x51\x92\x4e\xaa\x63\x27\xf8\x44\xb1\x48\x7c\xa2\xa0\x11\x85\xc9\x57\x58\x2e\x0b\x05\x98\xbb\xf4\x87\xe8\x9b\x9e\x19\x4f\xec\xba\xed\x6e\xf3\x85\x17\x98\x3c\x8c\x43\x60\xe1\x36\xa1\x37\x22\x3c\x22\x7b\x55\xeb\xee\xcd\x29\x2d\xda\xcd\x11\x9b\x18\x40\xda\x92\xf0\x30\x27\x75\x31\x38\x13\xa9\x6f\x95\x17\x4b\x2b\x78\x53\xd9\xc0\xc2\x1e\x9a\x52\x74\x69\xf7\x27\x84\xc5\x7c\xee\x78\x5e\xed\x04\xd4\x30\x4d\xb6\x8e\x44\x86\x79\xfa\x34\x43\xe2\x79\xc5\xa8\x1b\x96\x59\x66\x93\xa2\x4a\xff\xfd\xe4\xc0\x85\x40\x49\x9e\xef\xed\xf8\x6e\xf6\x2e\xda\x28\x08\x02\x1e\xe9\xa8\x64\x1b\x36\x5c\xcf\x05\x21\xf5\xdd\x03\x62\x40\x98\x35\x20\x7a\x11\x56\xf3\xdc\x15\x4a\x16\x8f\x6f\x28\x26\x01\x1e\x61\x41\x16\xf9\x65\x13\x5b\x78\x1e\xa5\x2c\x3c\x2c\x89\xa0\x82\x38\x3e\x64\xe6\x22\x5a\xc6\xcc\x85\xa8\x5d\xd0\x6f\x38\xe5\xd0\x05\xaf\xf8\xe2\xab\x2e\x76\xd5\x26\x45\x69\xe2\x78\x7d\xb7\xa2\x1c\xba\x17\x28\x9a\xb5\xb3\x8a\x1e\xf4\x67\x81\x07\x56\xfd\x82\xc6\x53\xf0\xef\x98\xa9\xc2\x3a\x04\xe3\x1f\x0a\x59\x75\xe0\xfb\xec\x5c\x3b\x1f\xd9\x30\x5a\x8e\x42\xac\x3d\x98\xbc\xe3\xca\xfc\x1d\x6f\x08\x0f\x16\xdb\x79\x19\x0e\x5a\xe4\x78\x59\x00\x8d\x76\xba\x88\xa1\x39\x0a\x7c\x12\x13\x6b\x29\x79\x86\x1b\x08\xea\xf8\xa4\x49\xae\x31\x1c\x98\xc2\x9a\x12\x45\x57\xa7\xa2\xb6\x20\x40\xef\x0f\x54\xaa\x3b\x28\xf3\xae\x49\x7a\x2d\x80\x62\x98\xb2\x08\xfa\xec\xc2\x5f\xf4\xb4\x12\xf4\x78\xa3\x8c\xb2\xc8\xe6\x53\x3e\xac\xdb\x9a\x50\xe8\xad\x1e\xac\x98\xf1\xa7\x54\x25\x8c\xa4\x0b\x50\xba\x60\x1a\x09\x42\x12\x09\xa5\xc4\x76\xe3\x41\x04\x7d\x61\x3a\x1c\x46\x9e\xe4\x0d\x41\xfd\xd1\xc0\xe3\x4c\x8f\x2a\x30\xfa\x5a\x94\xdb\x30\x33\xe1\x4a\xde\x52\x7a\x8d\x7a\xfa\x57\x37\xc3\xde\x28\xcd\x7a\x8c\xcc\xce\x81\x05\xab\x67\x2a\x92\xd8\x7e\x2b\x7f\xeb\x9b\x0b\x53\xe4\xfc\x61\xaf\xc0\x89\x3f\x41\x3a\x8d\x76\xee\xe5\xf1\xa3\x7c\x0f\xed\xaf\x4f\x2b\x16\x3c\xc0\xb5\x51\xb1\x7a\xa0\xfa\xef\xaf\xd1\xfb\x10\x74\xb3\x64\x37\x23\x9b\x98\xb8\x20\x15\x4c\xaf\xe2\xee\x31\x73\x8f\x2b\x8e\x96\x7b\xf8\x75\x69\x27\x35\x90\xf7\x2c\x9b\x0c\x9d\x1a\xad\xcd\x2d\x46\xdd\x87\x8e\xa1\xc9\x46\x24\x1d\x33\x5d\x85\x32\x8e\xc0\xd4\x17\x12\x3e\x55\x85\xfd\x0f\x61\x51\xf9\x3f\x6a\x25\xad\xb9\x03\xed\x38\x5a\x26\xcf\x88\x4e\x3a\xd3\x9e\xd2\x5e\x10\x0a\x54\x1f\x89\xbe\x9e\x52\x17\x64\xa7\x22\x7e\xf8\x0f\xf5\x26\x19\xfa\x5d\xb7\xc9\x3e\x01\x6c\x80\x56\x15\xe0\x56\xf7\x9b\x02\xad\xd0\xc6\xd1\xd0\x26\x28\x4a\x6c\x61\xa2\x76\xeb\x52\x43\xb5\x6a\xb1\x5a\x65\xae\x5c\x08\x43\x7b\x44\x71\x0f\x1f\xf1\xfe\x3e\xca\x07\x29\x4f\x01\x3a\x51\x59\x0f\x14\x3d\x1d\x78\xba\x83\xac\x4c\x1e\xd3\x44\xb7\xef\xd2\x2b\x84\xd9\xe2\xca\xa7\x83\xbe\xbb\x18\xec\xc7\x63\x45\xfe\xff\x19\x62\x4c\x97\x37\x57\xcf\xc7\x41\x43\x5c\x3d\x69\xaa\xe3\x27\x8a\x8f\x05\x4a\xc9\xf2\x91\x0d\x15\x62\xd9\x55\x1b\x63\x7c\x69\x7e\x9e\x8b\xd0\x9f\xe3\xca\xf9\xa4\x51\xf2\xbf\x30\x71\x64\x12\x52\x87\x70\x90\xe4\x13\x7a\xc1\xa3\x03\x8b\x91\xe5\x2d\x45\xb6\x98\xd9\x51\x9a\x15\x5f\xa9\xae\x6c\x42\xf7\x15\x5b\xf6\xe3\x40\x8f\x1b\x33\x9a\x07\x27\x80\xf8\x22\x35\x80\xf4\x80\xe3\x9e\x5f\x7c\x79\xbf\x13\xf3\xa0\x4b\x60\xd5\x2a\xa5\x7b\x78\x0e\x8f\x0f\x89\xf8\x59\x58\x7b\x3e\x51\x28\xbb\xfb\x3a\x12\xfb\x43\xc4\x6b\x88\xd1\xbe\x68\xa8\x26\x2f\xa2\x74\x9d\x44\x46\x19\x2e\x9e\x27\xe4\x93\x87\xa2\x0e\x7b\x16\x95\x46\x14\xf8\x8e\xe9\xb1\x88\x63\xb5\x9f\x9a\x3b\xa0\x4a\x7d\x78\x40\xa2\x53\x41\x9f\x13\x24\xee\xb3\x0a\x97\x20\xf3\x80\x56\x91\xb8\x5f\xc4\xa3\x66\xec\x6a\xe0\x31\xea\x17\xa8\xb5\x22\xf1\xb7\x9f\xc4\x7b\xdd\x24\x36\xca\xd2\x29\x2d\x60\xa1\x45\x2e\xe8\xd7\x99\x55\x7f\xec\x61\xee\xa2\x90\x34\x88\x46\x3b\x7d\x3e\x3a\xad\xf5\x1e\x77\x03\x46\xee\x78\xfb\x17\x64\x01\x5f\xc2\x8b\x12\x73\xf2\xec\xa4\xf0\x29\x09\x7f\xc1\xbd\xc0\x0f\x5f\xc6\x35\x08\xe2\xa8\xe5\x98\x8e\x7e\x30\x01\xf6\x29\xfb\xdf\x00\x97\x38\xb6\xcc\x53\x08\x60\xb0\x1b\x20\x70\x29\x39\xa7\xca\xb0\xd2\xa4\x88\x92\xd2\x12\x8a\xc4\xa9\xa9\x3a\x14\xc9\x69\xa2\x12\x63\xa8\x37\x75\xb9\x1d\xb7\x5a\xb5\x68\x11\x4a\x20\x37\x70\x82\x4c\x0e\x9d\x73\xb6\xe6\x96\x97\x66\xda\x45\x16\x8d\x5c\x4f\x1c\xf3\x60\x87\xf0\x34\xf8\x64\x82\x15\x20\x5f\x59\xdf\xe9\x0b\x5b\x22\x8b\x27\x3c\x11\xe4\xa1\xb1\x9e\x40\x4f\x8d\xba\x2c\x2b\xb0\xc3\x75\x6c\x35\xcd\x32\x32\xdd\x70\xf5\x11\x81\xf2\xd3\x47\xf8\x24\xd8\x5e\x80\x59\x58\x68\x9b\x7e\xba\xbb\x8a\x8c\xb0\x05\xff\x98\x2c\x10\x8c\x39\xe6\x20\xf0\xd1\xdd\x78\xe6\x22\x09\x47\x1b\xcd\x8d\x00\x3b\xbe\xe1\x1f\x6b\xad\xa3\x8e\xcf\x3b\xac\xa9\x62\x77\xbf\x98\xb8\x6e\xc0\x27\xb5\x1b\x99\x9d\x6d\xe7\x66\xdd\x19\x6e\x7c\x1f\xe2\x6c\x3e\x56\xa9\x92\xc9\x73\x3b\xec\x8a\xb8\xb4\x43\xb2\x3b\xcf\x08\x88\x84\x90\xcb\x28\xb8\xe9\x49\xe7\x98\xd3\x6e\x1e\x4a\xf3\x00\xb9\x1b\x28\xff\xf9\x58\x8b\xbf\xa6\x65\x56\xe4\xd3\xbe\x96\x06\x9e\x54\x59\x53\x6a\x3f\xdf\x18\xab\x9a\xd4\xe9\x9a\x1b\x73\xb8\xd0\x2a\x71\x9b\x3b\xc0\x79\x25\xb3\xc7\xf0\x49\xa0\xa6\xf1\xb2\x74\x98\xa2\x18\xeb\x63\xec\x6b\x63\x25\x77\x8a\x02\x3b\xff\x87\x96\x3e\xbd\xa7\xca\x0e\x94\x85\xc4\x31\x4f\x81\xe2\x65\xde\xa4\xf7\x87\x1d\xc2\xac\x97\x02\xe2\xd9\x7e\xd1\x07\x67\x2a\x07\x10\x9b\x90\xb3\x4d\x74\x73\xbf\x80\x07\xe3\x93\xda\xcb\x7c\xe1\x05\x48\x2c\x71\x13\x47\x40\x51\xd5\x42\x11\x1e\x29\x1f\x33\xf4\x6c\x16\xad\x32\xb3\xab\x13\x51\x70\x83\x39\x9f\x28\x50\xff\xc4\xcc\x34\x01\x35\x35\xbf\x95\x04\x88\x74\x65\xf0\xe1\x57\xc6\x13\xd9\x49\x75\x9f\x30\xa5\x8f\x38\x32\xed\xcc\x76\x4d\x21\x17\x8a\xa8\x6e\x0a\xd3\x95\x7c\xd2\x00\x83\xde\xdf\xce\x8b\x75\xb7\xef\xe1\xba\xae\x05\x4a\xf9\xe0\x9a\xea\xce\xbc\x6e\x92\xd2\x64\xeb\xc0\x5f\x73\x2a\x02\xab\xee\xf2\x12\x37\x10\x7b\x3d\xd0\xcd\xf3\x06\xc6\x99\x30\x4d\x12\x53\xf6\x07\x08\xa0\xd5\xf4\x8c\xc0\x5f\x8f\xd7\xde\xc5\xe2\xcb\xfb\xdb\x79\x74\xa8\x18\x50\xcb\xc9\x51\xd1\xbb\xa1\xee\x13\x0d\x50\xd3\x97\xda\xa6\x4f\x51\xba\xb3\xda\xec\xef\xe4\xfa\x7d\xaf\x28\x8b\xfa\x83\x22\x7f\xa2\xb2\x26\x58\x7b\x1f\x04\x0a\x79\x07\x59\x22\xfe\x0f\xec\x0e\x2d\xfc\x82\x54\xee\x06\xd9\x62\xd8\x79\x50\x73\x71\xf7\x5b\xf5\xbb\x1e\xe9\x28\x71\x50\x66\x96\x41\x83\x9e\x83\x29\xd1\xbf\xf0\xac\x03\x13\x83\x18\x97\x6b\x77\xb9\x34\x43\x2a\xd7\x79\x01\x68\x0c\xf2\x5c\x86\x0d\xf2\x89\x93\x72\x8a\x2d\x0f\x11\x33\xf1\x84\xee\xa5\xb3\xec\x26\xf2\xec\xab\x0a\x07\x69\xc2\x37\xca\x08\x0c\xa0\xf9\x6e\xa5\xf0\xa4\x35\xc3\x7f\x4e\xd5\x46\xd1\x92\xd7\xd5\x58\xf8\x24\x37\x43\xb4\xe0\x78\xab\x69\x22\x52\x24\x61\x1b\x60\xaf\xa1\xc9\xec\x5a\xde\x52\xb9\xc4\x26\x7b\x1a\x81\x1e\x6c\xcf\x2c\x0e\xce\xcc\x55\x11\x2e\x15\xcb\x90\x22\x9e\x1a\xab\xf6\x0f\x4a\x7d\x92\x03\x6e\x0f\x2d\x29\xb1\xeb\xd9\x30\x72\xe0\x33\x91\xb5\xf0\x90\xb2\xba\x86\xd6\xdc\x81\xf6\x28\x4e\xa7\x54\x5a\x75\x79\x82\xb4\x11\x09\xba\x44\xcb\x35\x5f\x31\xd7\xb6\xc3\x81\xc9\xb0\x40\x95\x78\x87\x10\x5f\x9d\x0e\x3c\x4e\x71\x54\xe6\x83\x69\x35\xcd\xc1\xf8\x57\xfc\xea\x3f\xa0\x8d\xc0\xff\x11\xa8\x01\xed\x7f\xa0\x5e\xa4\x9e\x25\x57\x14\x13\x6c\xfa\xf9\xc4\x39\x96\x37\xca\x94\xf4\x52\x5b\x8e\x0f\xe5\x8c\xd2\x41\xe7\x2e\x31\x3e\x74\x4b\x01\x12\x32\x33\xa4\xbb\x71\x73\x9f\xd5\x77\xf3\x89\xca\x5e\xcb\xbe\x9d\x56\xc3\x41\x5b\x93\x92\x25\x6a\xf6\x21\xf0\xcd\xa6\x2d\xf5\x34\x8a\x41\x89\x60\x0c\x85\x03\x60\x1e\x91\x8b\x5e\xd2\x55\xb2\x1f\x34\x36\x33\xd7\xd2\x6c\x85\x96\x89\xb4\x3c\x68\x59\x6b\xb1\x7d\x34\xc7\xde\x6f\xf8\xf4\x5c\xbb\x48\x8d\x16\xd3\xfe\xa5\x12\xd3\xfe\xa5\xf2\x07\x23\x9b\x8e\x62\xb1\xc8\xae\x67\xe0\x46\x73\xce\x29\xe3\x13\xa7\x79\x6e\x49\x22\xe3\x25\x2f\xc8\xbf\x24\x7a\xcb\xd7\x15\xcc\xff\xb1\x0d\x8f\x20\x38\x32\xd6\x68\x76\xbc\x75\xa1\xe7\xa5\xb5\x81\x5d\x77\x57\xc1\xfc\xbf\x1c\xab\x94\x87\x0d\x0b\x8c\xd4\xad\x5a\x0e\xba\x34\xd3\x5e\x4f\xcb\xa4\x6f\xb3\x16\xb9\x64\xd4\x9f\x3f\x0c\x7c\x03\xfc\x43\x87\x89\xe9\xd9\x2a\xf2\x2e\x33\x24\x65\x30\x8d\x88\x40\x1d\x6f\xeb\x82\x53\x65\xdd\x54\x30\xe6\x51\x16\xe5\x98\x0b\x14\x07\xc4\x70\x10\x3e\xd1\xd8\x87\xcc\xae\x9a\x28\x46\x4e\xce\x4f\x29\x50\xe2\x8c\xb7\xd5\xc8\x0c\x27\x5d\xee\x59\x3a\xd2\xc3\x53\xaa\xbe\x10\x25\x79\x11\x15\x25\xc8\xc0\x16\x1d\x83\x37\x3d\x54\x98\xe1\x2f\xc9\xac\x39\x5c\xb0\xef\x2b\xe1\x45\x22\x5a\x7a\x1b\x1b\xd1\xfd\x87\x9b\x36\xf8\x7e\xa0\x08\x48\x03\x55\x31\x38\xd1\x34\x13\x48\x13\xba\xfd\x74\xda\x57\xc3\xfe\xb9\xd6\x05\x06\x44\x03\x1e\xe1\x67\x63\xc5\xba\x70\x35\xf8\xf3\x3e\x56\x4d\x56\xa3\x2c\x4d\x10\x2a\x89\xc6\xcd\xa2\x5f\x21\x9e\xe9\x17\x09\xbe\x63\xa2\x73\xdd\xd3\xcd\x86\xc0\xe9\xd5\xb6\x59\x33\x91\x9b\x6f\x90\xc8\x47\x21\x31\xcf\xd7\x12\xc7\x03\x2f\xb7\x7b\xb6\xb0\xd9\x50\x66\x9a\x1d\xbf\xb7\x4b\x8c\x2f\x6a\xa5\x63\x43\xf3\xc9\x32\x41\x86\xd6\xe0\xbf\x1c\x2b\xf6\x9a\x7f\xa9\x32\xf9\x7e\x66\xde\x94\xfe\x82\xeb\x95\x3a\xa2\x86\xb3\x6a\x3e\xae\x1f\x97\xe1\x8a\x43\x54\x23\x65\xe2\xea\x18\x9f\xd4\x0a\xa0\x8b\x4b\x8b\xed\x5e\x24\xfb\x56\x88\x49\x26\x1a\x87\x4f\xab\x72\x5d\x5a\xb0\x3d\x3d\x38\xe3\x08\x80\x7c\x61\x42\xcf\x98\xaf\x24\x69\xa1\xaa\xcc\xa8\x5e\xf3\xb1\x0a\xd3\x89\x8c\xbd\x37\x51\xce\xff\x38\x50\xf3\x5b\x1f\x37\x11\x2f\x2d\xa7\xd9\x50\xde\x8f\x23\x2a\x77\xd0\xb2\x7a\x19\xf3\xc5\x76\x95\xd1\x0e\x4c\xd2\x8b\x72\x69\xb6\xcb\x5b\xf1\x3c\x73\x3a\x27\x35\x43\x9b\x45\xa1\x49\x9e\xa0\xdf\x10\x5c\x1d\x6d\x3f\xd9\xd5\xd5\x23\x90\x5e\x02\x2e\x1f\x99\x3b\xc6\xf5\x35\xc1\x2e\xfe\xfd\x1e\xb5\x56\x27\xd2\x4d\xa5\xcd\xe0\x67\x7e\x5a\x4e\xa2\xec\x73\xaa\x59\xaa\xec\x50\x78\x8e\xff\x0e\xb6\x17\x92\x9e\x9d\x1d\x27\x2d\x1c\x97\xcb\xcb\xe8\xf0\x38\x8a\xc0\x05\x47\x17\x58\x03\xe1\x57\x99\x70\x34\xec\xda\x2c\x36\x49\xaf\xde\xaf\xd1\x9a\x3f\xae\x5f\xf3\x8d\xd1\x37\xe8\xfb\x65\xde\x49\xc1\x62\x8e\xab\xb6\x7f\x6c\x57\x6d\xfc\xb8\x0f\x06\x50\xf7\x90\x7e\xbd\x22\x06\x3b\x8f\x5f\xe2\xf8\x85\x5e\x86\xeb\xd5\xcc\xce\x39\x62\x42\x55\x53\xfb\x9e\xe2\xd7\xe6\xa9\x23\x54\xe1\x58\xbc\xd1\x69\x37\x57\x09\x17\xac\xe0\x17\x0e\x9d\x15\xc6\x69\x2e\x6b\x1d\x5e\x9a\xc3\x37\x3e\xa9\x95\x6f\x0f\xce\xb4\x07\x26\x5e\x46\x7b\x80\xc5\x55\x50\x95\x17\xa5\x95\x06\xa1\x84\x91\x25\x49\x2f\x85\xc1\xbd\x35\x56\x18\xdc\x5b\x81\xef\x91\x0e\xd3\xb4\x37\xad\x74\x2a\x7f\x01\x13\xcf\x27\x8a\xbc\x86\xe3\x65\x3e\x51\xdf\x90\xa4\x05\x4c\x0e\xd6\xe5\x19\xa5\x01\x7e\x66\xfc\xb8\x5b\xd0\xd9\x37\xf0\x82\x1b\xa1\xdc\x4d\xe3\x7b\x44\x53\xce\x37\xe1\xb8\x40\x7d\xc8\x5d\xe7\x08\x9c\x3b\xd0\x2e\x93\x32\x2f\xa1\xf5\xe5\xc4\xcf\x6f\xaa\x89\xc2\xb3\x8a\xcb\xfa\x98\x1b\xa4\x4c\x6c\xc1\xaf\x44\xca\xd9\x13\x45\xef\xc6\x19\x76\x3b\x21\xfa\x0e\x40\x87\x50\xe9\x3c\xad\xfb\x1d\x80\x35\x4e\x79\x41\xf3\x73\x8a\x79\xfa\x8e\x8a\x65\xce\x4c\xf0\x19\x27\x2b\x36\x23\x75\x27\x74\x66\x2f\xeb\x11\xdb\x5f\x28\x0e\x80\x9b\xb5\xc4\x6d\x69\xa6\x9d\xbf\x51\x9a\xcc\x2a\xdd\xf8\xcb\x14\xde\x60\xef\x6e\x4d\xfc\xe6\x33\x93\xfd\xfe\x85\x85\xf6\xdc\x81\xbf\xd0\xfa\xe6\x6f\x71\xda\xf0\x67\xe4\x53\xf1\x25\xef\x51\x57\x4c\x58\xcb\xe8\x11\xd1\xc5\xfd\xf7\xcf\x6e\x90\x08\x20\xbe\xfe\x5d\xe4\x71\xd8\xf3\xef\x8e\x7d\x8a\x76\x87\x23\x75\xf8\xe4\x4d\x1a\x50\x75\xed\xd3\x6a\xcd\x21\x2f\x3b\x3c\x56\xd0\x06\x0c\x49\x8b\xc4\x16\xb5\x5f\x50\xde\xfa\x57\xa4\xbe\x86\x4f\xfc\x3f\x44\x97\xc3\x50\x43\x3c\xa1\x9b\x01\xda\x58\x12\x90\xa8\x42\xdd\x5e\x52\x47\x40\x13\xff\xdd\x71\xeb\xdb\x73\x1c\x88\xfc\x0e\x26\xa9\x64\x42\x75\x6a\xff\xdf\xf8\xb6\x2c\x1a\x7a\xb9\x28\x1b\xee\xd8\xa0\x1a\x34\x8a\x38\xf7\xc8\x44\x20\x74\xbd\x4b\xa1\x8b\x6c\x77\xda\x50\xd8\xa0\x1c\x1e\xc3\x44\xfc\x69\xa0\x10\xa1\xe7\x83\xd6\x0b\x2f\x4c\x8a\x49\x08\xd9\xbb\x62\x0f\xcf\x4c\x12\xa6\x22\xdb\xd5\x48\x52\xe7\xf9\x4f\x96\x4b\xeb\x34\xad\xb9\xfc\x06\x03\x25\xb5\xb8\x27\x54\xe5\x36\x2f\x76\x6a\x95\x19\x5f\x50\x9d\x10\xbb\xf9\xbf\x69\xb5\xc0\xbb\xfe\x88\xde\x06\x1c\xf9\xe1\x26\xc4\xc2\xb2\x89\x63\x84\x40\xb8\x11\x94\xc6\xf0\xe3\xef\x93\x2d\x91\xd9\xe7\x6a\x59\x08\x23\x4d\xd3\xfc\x4f\x98\xc6\xb1\x19\x39\xad\x68\xc7\x22\xee\x76\x1c\xcf\x26\xe2\x75\x5f\x6f\x30\x20\xed\x28\x59\x76\xf4\x98\x4d\xec\x2b\x13\x24\xbe\xab\x51\x8f\x64\x61\x7c\x01\xe7\x76\xa0\xb5\xba\x15\xdc\xfc\xf6\xd8\xa7\x07\x27\x1b\xfb\xb9\x50\x59\x73\x3c\xde\x7f\x77\xec\x5f\xdd\xdf\x55\x39\x59\xd7\x64\x3b\x55\x75\x02\xb2\x90\xe8\x36\xdd\x81\xb3\x15\x50\x4e\x4b\xf8\xe6\x7e\x04\x31\x65\x78\x67\x2f\x0e\xd3\x4d\xa9\x77\x35\xa5\x50\x87\x47\x94\x8e\xc9\xde\x8e\x37\xcf\x9a\xab\xc8\xf6\xcd\xae\x6a\xeb\x3c\xd1\xf1\xd1\xda\x9d\xb1\xd7\xcf\x07\x63\x23\x2b\x33\xe1\x8a\xf0\xcb\xdc\xfa\x10\xca\xc9\x06\x0b\x34\x4a\xa3\x44\x8c\x2a\x36\xe1\x4f\xb1\xaa\xf8\x44\xe5\x6d\xc5\xc0\x9a\x42\xc8\xdb\x59\x14\x0e\xab\x56\x14\xe2\x94\x36\x29\x05\xad\x26\x7e\x9c\x7e\x9f\xa7\xd1\x15\xa4\x12\x59\xd9\xd6\xbb\x63\x35\xee\xf4\x19\xac\x8b\x63\xb8\x52\xa2\x07\x74\x7f\x8c\x17\x55\x6c\xf5\xef\x6a\x56\x9a\x33\xd8\xcc\xc2\x89\xe5\x26\x1b\x7e\xfa\x4e\x4d\x92\xac\x4a\x56\xf3\x32\x0c\x6d\x9e\x2f\x97\x71\xbc\x8e\x3c\xce\xcb\xb5\x3a\x12\x8f\x5a\x6d\x7d\x7e\xbe\x1d\xa7\x6b\x53\x1e\xfb\x84\x1c\x14\xb6\x0e\x1f\x15\x4d\x3d\x3f\x99\x36\xb2\x05\x83\xad\x27\x94\xa2\xf8\xc4\x85\x1c\x85\xcd\xb2\x34\x9b\x52\xd8\x0d\x04\x6f\xbf\x41\xc1\xea\x09\xa5\x1b\xe7\x89\x3c\xfa\xb6\xca\x0f\x54\x65\x87\xc7\x66\x84\x1a\xcd\x2d\xc8\x7d\x9f\xa9\x26\x52\x94\xac\xa6\xf1\xaa\x25\xb4\x25\xdc\x16\x68\xbc\x84\x66\xc5\xeb\x6f\x9e\x01\xc4\x56\xb8\x58\xd4\xe4\x44\x99\x45\x5c\xd3\xc5\x6e\xfb\x0e\x6e\x8a\x4f\x1a\xc5\x48\xf3\x28\x31\x45\x66\x26\xb8\x9d\x59\x63\x8d\x4f\x9a\xda\x1f\xc3\xb4\x88\x96\x39\xe8\x74\xc3\x35\x7e\xd0\xa6\x8a\x5c\xf8\x9a\xd2\x01\x19\x4a\x60\xc0\xae\xc0\x50\x03\xce\xf1\x93\x71\xeb\x37\xbf\x25\x99\x68\xe0\xe1\x83\xe7\xc8\x41\xcb\xc8\x99\xcc\x99\x74\x4d\xd6\x37\x91\x4c\x28\x48\x43\x5c\x31\xf2\x3d\x9c\xba\x64\xdd\x16\x8f\xfa\xf5\xf3\x28\xed\x57\x27\x96\xeb\x1b\x8a\x37\xe9\x77\x19\x04\x34\xd6\xf1\xf4\xd8\xeb\xdf\x9f\x21\xcf\x8b\x2c\xf7\x09\x88\x62\x6b\x82\x01\x6e\xac\x37\x0d\x95\xf7\xac\x29\x06\x00\xc7\x71\x13\x77\xac\xf4\x44\xb0\x64\xe1\x64\x2f\x28\xb0\x54\xcf\xac\x3f\xaa\xae\x71\x07\xb1\xef\xc2\x0f\xa0\xba\x42\x6b\xca\x3c\xa7\x86\x77\x6f\x06\xaa\x9c\xc0\x60\x45\xec\x85\xcb\x94\x91\x30\xb5\xe1\x78\xa2\xd3\xed\x23\xbe\xbd\x35\x0a\xf0\x7d\x0b\xed\x91\xc9\x4c\x2f\xca\x51\x31\x41\xe5\x8a\x45\x1b\x61\x00\x2e\x4f\x84\x27\xef\xa9\x54\xac\x17\x01\xd3\x08\x62\x86\x09\x5a\x7a\x09\x45\x7d\xc1\x19\x92\x9a\x1c\x79\xea\x0a\xfb\x47\x0a\xee\x90\xa4\x49\x5e\xa4\x23\xd5\x51\x3f\xaa\x46\x6f\x98\x96\x43\x26\x23\x9e\x99\x80\xba\xc6\x91\x49\x42\xdc\x84\xf0\xe0\xb7\x1c\xf9\xd1\xd5\xc0\x93\xe7\x1c\xd7\xdc\x6c\xd5\x07\x4d\x94\x00\x43\x85\x9e\xe0\x4f\x15\x44\xf0\x4b\x4d\x7e\x77\xd6\x95\xaf\xbb\x69\x96\xd0\x66\xc6\x52\xbb\x35\x56\xa3\x83\x87\xf1\x56\x60\x38\xe0\x40\x10\x52\xde\xf7\x0c\x45\x61\x98\x66\xbd\xdd\x1e\xe6\xc6\x7d\xae\x09\x62\x3b\x98\x24\xb0\x57\x72\x61\x9e\x5f\x84\x83\xcd\x2c\x2c\xf0\x25\x03\x1b\x0c\x7f\x54\x27\xc8\x7f\xed\x35\x35\x0b\x29\x98\x3d\x0d\xe0\xab\xc1\x1b\x66\x67\x27\xa8\x2b\x5d\x63\x77\x12\x3d\x59\x0f\x4f\xda\x99\xcd\xd3\xb8\xa4\xb8\x5e\x4d\x1b\x9d\x1e\xfb\x81\xac\xff\x38\x09\x23\x52\x80\x3d\x53\x98\x38\xed\x97\x56\x77\x8e\x80\xa6\xe4\x63\x15\x21\xcc\xcc\x2c\x4c\x10\x3c\x9d\xd7\x04\x4f\xe7\x35\x6d\x48\xc9\x82\x66\x78\x9c\xb7\x34\x06\x82\xbb\x0e\xd8\xa4\x47\xb7\x07\xfc\x2f\xb6\x5f\x99\x3b\x40\x45\x30\x89\xc5\x3d\x9d\x37\x0a\x79\xc8\x19\x21\x4f\x08\x22\x93\xb7\x9d\x68\x8b\x09\x43\x1b\x5b\x45\x28\x85\x57\xf8\xa7\xd8\xbf\x7c\xa2\x5c\x96\xc9\x86\x39\xc1\x14\x26\x0a\x0f\xcc\xd3\xe8\x71\x7c\xbf\xf6\x34\xe8\x15\x99\x3e\x5d\x6b\x77\xd8\x74\x68\xab\xdd\x88\x58\x87\xb5\x29\xc7\xbe\xfd\x75\x7b\x42\x59\xee\x6b\xbe\xab\x32\x1a\x65\xe9\x28\x8b\x14\x99\xa0\xc4\xcf\xaa\xef\x74\xbe\x56\xa3\x00\x00\xcd\xd8\xdc\x64\x96\xb9\x0d\x51\xfe\xbc\xaf\xf1\x3b\xf7\x5d\x65\x36\xcd\xc2\x01\x8d\x75\x4f\xf9\x16\xf4\x26\x3d\x3b\x47\x07\xe4\x86\xa8\x37\x54\x3c\x1e\x9a\x0c\x6e\x4f\x3a\x29\x1e\xb5\x79\xaa\xd6\x79\xf9\xf5\xb6\x71\x54\x59\x42\x11\x5f\x59\x7e\x21\x8f\x57\xb3\x51\x6b\x16\x31\xf4\xab\xbc\x89\xd1\x34\x73\x04\xe3\xd5\xad\xa3\xef\xfc\x59\x23\x47\x6b\x1e\x66\xd6\x8d\x93\x69\x49\x3e\xa9\x74\x69\xa0\x42\xd2\xe3\x76\x25\xec\xf3\x6d\xea\xd5\xe1\xe5\x5e\xc7\xd6\xe7\xff\x18\x7b\x74\xfd\x75\x25\x9c\x3c\xb4\xc4\xa6\x42\x55\xd4\x97\x3c\x0b\x69\xb5\xae\x50\x00\xc7\x6c\xb3\x8a\xe4\xe6\xe4\x3f\xd4\x93\x4c\xd2\x04\xaa\x35\xf8\xaf\x5f\xd2\x8f\xf1\x71\x13\xb9\xd9\xc8\x64\x2b\x6b\x66\x5d\xf5\x91\xdf\x52\x7d\xe4\xb7\x3c\xee\xab\x5c\x67\x88\xda\xa2\x56\x81\x7f\x69\x22\xb9\xc0\x63\xc1\xd4\x1a\xfc\x1d\x30\xb7\x32\x2a\xd6\x80\x93\xab\xdc\x4b\x94\x84\xa8\x55\xba\x05\xe3\x17\x4f\x23\xbd\x03\xd4\x85\xc8\x15\xc3\x69\x5c\x0b\x14\x01\xd5\x69\x2d\x17\x7b\x54\xb9\xb2\xc4\x76\x33\x93\xaf\x98\x69\xad\x97\x38\x56\x75\x99\x13\x0a\xa1\xfc\xbe\xd2\x5c\xfe\xc3\x6a\xcb\x6b\xbb\xb1\x34\xd3\xfe\xcb\xc8\xcd\x10\x13\x42\x44\x1d\x79\xf1\x35\xfc\x3c\x92\x88\x3d\x1d\x1f\x20\x3a\x11\xcb\x83\x4a\xb8\xd2\x35\xa4\xaf\x4d\x50\x6f\x3c\x4c\xa8\x6a\xb9\xcc\xca\x15\xb3\x66\xd4\xc0\xd2\x4f\x61\x16\xf9\xa4\x56\x17\xda\xb7\xd0\x5e\x2e\x93\x90\x37\xbe\x63\x30\x63\xf6\x48\x3e\xa9\xc1\xd6\xe5\xf7\x78\x51\x02\x5e\xa2\x81\x1c\x7c\x5c\xf3\x43\xf3\xf3\x6d\x3b\x1c\x31\x4f\x27\x92\xaa\x93\x81\x4f\xb0\x4e\xd6\x22\xab\x57\xe6\x0e\xb4\xbb\xd6\x64\x1c\x18\x62\x5f\x30\xd3\x33\x9f\x34\x28\x5e\xcf\x41\x38\x3d\x4a\x86\xd2\x71\x77\x49\xb2\x97\xdd\x52\x53\x13\x79\x6a\x32\xdb\xa3\x59\x1f\x37\x07\x5c\x25\x36\x30\x05\x5f\x06\x1e\x80\x88\xe8\xd5\x6b\xd9\x2c\x3a\x2d\x1b\xaf\x6b\x73\x49\x3b\x1f\xbb\x86\xb1\x2c\x17\x55\x79\xee\x59\xa4\x0a\x70\xff\xf7\x02\x19\x3b\xb3\x49\x98\x96\x99\xe9\x4b\x7a\x8f\x1d\xfd\x81\x9a\xd6\xfd\x40\xcb\xa9\x1c\x1f\x6b\x0e\x80\xd5\xc8\x95\x05\x44\x0f\xd9\x87\x5c\xcc\x02\x0c\x5f\xf0\x40\x0d\x89\x56\xc1\x5f\xda\x52\x31\xcb\xcd\xb1\x6a\xe0\x69\xfa\xfa\x37\xa3\x75\xc3\xb6\x55\xaa\xeb\xb4\xbc\xa4\x5d\xa9\x58\x99\x97\x97\xa3\x30\x32\xf1\x6e\x3f\x87\xf6\x39\x6e\x5e\x50\x39\x6e\x8e\x1e\x38\xa8\x57\x45\x2d\x47\xb7\x5f\x59\x82\x17\x99\xf5\x4f\x03\xdf\xf3\xad\xf2\x7b\x3f\xb6\x68\x92\xfe\x1e\xfa\x0a\xa1\x6e\x50\x33\x46\xe7\x34\xc9\xfd\xef\x04\x7e\x2e\xff\xf2\x58\x53\x36\x9c\x51\x0a\x64\xc7\x70\xfb\xc0\xe8\xdd\x0c\x14\x40\xfc\x52\x8d\x73\x64\x7e\xbe\x6d\xe2\xc2\x66\x89\x29\xa4\x59\x8f\xcf\xc1\x5a\xf0\x71\x4d\xae\x80\x5c\x67\x7f\x90\xe6\x45\xb7\xcc\xfd\x1e\x42\xfd\xe6\xaa\x52\x23\xbb\x5a\x8b\xb1\x7e\xe3\x15\x42\x01\x96\x49\x94\x17\x93\x5c\x8f\xc7\xf5\x20\xec\xf1\x49\x22\xb9\x24\xdd\x33\xe5\x45\x29\xcf\xc1\xbb\xe1\x27\xd0\x13\x71\xef\x73\x7e\x7e\x69\x0b\xf5\x16\x44\x68\xa7\x94\x57\x06\x02\x01\xcd\xbe\x0f\x41\xe2\x79\x3c\x78\xda\x81\xf0\x4d\x16\x9b\xc2\x24\x8c\x61\x97\x20\xdd\xdb\xee\x3a\x02\x9b\x20\xfe\x16\x15\x21\x66\xe1\xd3\xda\x28\xe7\x54\xdd\x17\xa4\x9e\x3b\x3d\xca\x86\x27\xd3\x01\x5a\xfd\x10\x60\x3f\x36\xeb\xa8\xa7\x60\x30\xf5\xb3\xc0\x9b\x51\x4d\xe8\x16\x9b\xf5\x9c\xaa\xc8\xe8\x8a\x5e\x1b\xfb\x02\xde\x49\xda\xe5\x58\x3f\x0f\x82\xbd\x1e\x2c\xd5\x1f\x6a\x38\xbc\xa2\xa1\x3d\xa7\xb6\xd3\x72\x99\x24\xeb\xd3\xd5\x37\xa3\x21\x70\x58\xe1\x74\x0f\x6b\x1c\xe1\x0d\x5e\x81\x7c\xa6\xc4\x1f\x2a\xbf\xc7\x14\x36\x32\xd1\x7a\x46\x29\x5e\x9e\x69\x12\xa4\x28\x32\xc3\x5c\x71\x42\xfa\xeb\x59\x28\xbf\x70\x50\x8a\x15\x9b\xc5\x69\xa2\xe7\xb5\x2f\x68\x2a\x85\x0b\x1a\x17\x91\xac\x23\x3a\x12\xc4\x49\x75\xbb\x08\x88\xae\x29\xac\xea\x11\x55\x2d\x34\x79\x6e\xb3\x42\x68\xa0\x61\x76\xee\x03\x59\xc4\x27\x7a\xc4\xd2\x64\x19\x11\x90\x38\xf0\x03\xe8\xb5\x24\x65\x7e\xd6\x57\x73\x24\x13\xa9\x62\x5b\x3f\xdd\x02\x2a\x0f\x84\x18\x67\xc6\x5e\xeb\xe0\x72\xa0\x91\x86\x23\x69\x2a\xb2\xda\x4d\xe0\xfb\x9e\x47\x6a\x5c\x2e\xbf\xde\xee\xdb\x82\xae\x08\x34\x6f\x27\xb0\xfb\xf9\xa4\x41\xcd\xb7\x9d\xd9\xe5\x18\x83\x63\xca\xe3\x5f\x85\x05\xe1\x93\xe0\x31\xdf\x42\xf8\xba\xf7\x25\x7f\xa8\x1b\x85\xd7\x03\xdf\x05\xb9\x4a\x3a\x96\xae\xf1\xec\x31\x86\xef\x07\xd4\x4c\x00\x60\xfe\x23\x2d\xe8\xf3\xbf\xa0\x68\x84\x97\x38\x45\x1b\x1a\xa9\xe4\x4f\xa8\x28\x80\x37\x78\x9c\xde\x1a\x9e\xd1\x87\x28\xe1\xa2\x8a\x0f\xca\x3d\x78\xfb\xd3\xa4\xec\xcd\x38\x54\x6e\x15\x08\x21\x75\xeb\x15\x11\x37\xbf\x1e\x78\x74\xda\x1d\x7a\xf4\x08\x6f\xce\x6f\x33\xbd\xaf\x2c\xcd\x70\xee\xf6\x1e\x55\xf4\x71\x53\xbf\xaf\x45\x62\xb7\x02\xaa\x28\x0a\x61\x98\x86\xa1\xa1\xbc\x28\x5c\x55\xd4\x76\x40\x86\x7b\x04\xcf\x17\x28\xd5\xbb\xc1\x8e\xaf\xbb\xc1\xea\xd6\xb7\xe7\xd8\x3c\x7c\x4c\x15\x4c\xa1\x64\x22\xeb\xe0\x18\xf7\x66\x67\xf9\x95\x5e\x0d\x5a\xdf\xfc\x2d\x07\x35\xc5\x76\x84\xcd\xbe\xaa\x99\xb1\xb7\xb4\x66\xc2\x7b\x13\x96\x35\x29\xf2\x5f\x51\xfd\x43\x14\x8a\xf0\xe5\x00\xfe\x4a\x85\x4f\x91\xb9\x3c\x4a\xcf\x9b\xf9\x2e\xe8\x49\xa2\xe0\xf8\x5e\xa0\x46\xa7\x41\x92\xec\x60\x16\x78\x13\x58\x2c\x77\x03\x45\x26\xfe\x25\xb2\x00\xc1\x18\x55\x4f\x59\xe4\x20\xe9\x29\xf3\x58\x42\xa0\xd5\x99\x37\x35\xd3\xf7\x49\xac\x1d\xac\xbd\xe9\x8e\xaf\x6b\xe3\xc5\xa2\x9c\xc7\x8d\x55\xc4\x5c\xe7\x14\x24\xf0\xb6\x66\x05\xfc\xd7\xa8\x0e\xe3\x5a\xae\xd0\x92\xc6\x4a\x7a\xac\x53\xad\x2a\x71\xcf\xdb\xad\xd7\xec\x1c\x8a\xe2\x48\x20\x64\x25\xb5\xdc\xe0\xb3\x8e\x62\x8e\x8d\x27\xc6\x7b\xbd\xa1\x3e\xd5\x00\xba\x7c\xb5\xdd\xcf\xd2\xb5\x84\x3a\x9e\x12\x74\xa9\x59\x73\xb4\x3f\xe1\x40\x8e\xd6\x3e\xbe\x6f\xa1\xdd\x37\x7e\xee\xc5\x09\x8f\xfa\x5e\x93\x32\x96\x26\x29\x9e\xa2\xab\x77\x9d\xb4\xa5\x19\x8e\xed\xf6\x6e\xf8\x8b\xbc\x89\x55\x85\x6d\x70\x0e\x6f\x61\x42\xf7\xc6\x61\x08\x3c\xf2\x67\xc7\x06\x5e\x9d\xe3\xb5\x97\x3a\xd5\x2f\x7e\x15\x2a\x27\x0e\xfc\x4e\x4b\x44\xe6\xda\x69\x29\xd1\xbd\xfd\xbb\xe7\xa9\xae\x88\xc8\x69\x67\xc7\xa3\xe8\x1e\x43\x78\x85\xb0\xf5\x27\xb4\x2d\x54\x44\x26\xf3\x20\xff\x46\x29\xc4\x86\x03\x93\x24\x36\x66\x62\x14\xf8\x3e\x0c\xb9\xf0\x71\x2d\x5c\x79\xed\xb5\x2a\x8b\xb4\x49\x31\x48\xd3\x9e\x92\x7f\xe0\xb9\x09\x3e\x99\x10\xee\x0e\x49\x9f\xa7\x3f\xad\x81\xc6\xad\x05\x4f\x14\x4e\x77\xc6\x27\x81\x62\xc3\x38\xef\xe8\xa1\xba\x65\x1c\x57\xa9\x09\x15\x1a\x60\xb1\x2e\x53\x43\x52\xcd\xc1\xbc\xea\xd8\x72\x1b\x78\x61\x97\x9d\x9a\xde\xab\x93\x0a\xfb\x82\xc1\xa8\xab\xce\xb5\xcb\x24\xb7\x45\x11\x33\xa8\x9b\x1d\x25\x3e\x25\x5e\xb3\xae\x32\xb8\xd8\x4e\x47\x36\x63\x4d\x1d\xf5\x44\x8e\xf3\x7e\x85\x15\x3f\x4f\x3b\x91\xa5\x55\x03\x25\x89\x1c\x85\x03\x1b\x47\x49\xcb\x4f\x67\xfc\x92\xda\x0a\xa2\x77\x3a\xa1\xa0\x68\xe3\x5d\x7e\xbd\x6f\xea\xe8\x69\x93\xb6\xaa\xa2\xf9\x14\x6a\x92\xb7\x02\x85\x5a\x7d\x6b\xac\xa4\xcc\xeb\x54\x4d\x4b\x33\xed\xbc\xc8\xd2\xa4\x1f\xf3\x7c\xae\xab\x9a\xb9\x0a\xcf\xa6\xba\xf6\xb4\xfb\x3a\xfb\xcd\x05\xa7\x62\x79\x7b\xec\x3b\xaa\xb7\xd5\xee\xca\x0c\x17\x17\xc4\x48\x29\xba\x95\xd3\x58\xab\x0e\xbe\xef\xcc\xef\x87\x63\x0f\xb0\x79\xb7\xd6\xe6\x98\x3b\xd0\xce\xc3\xac\x5c\x66\xa1\x45\xcd\xc9\x2e\x73\x42\xdb\xdf\x96\x1f\x5b\x1a\x9a\x04\x6b\x19\xc5\xd7\x93\x7a\xa0\xe4\x64\x2d\x3d\x5f\x58\x68\xa7\xa3\x51\x9a\x15\x65\x12\x15\x91\x95\xa0\x5d\xa8\x30\x55\xac\x7a\x5a\x49\x26\x99\x3c\xaf\xa2\x40\xa8\xb6\xbe\x2a\x66\x58\x61\x96\xee\xc0\x71\x8a\x7d\xf6\x93\x66\x77\x14\xa8\xb1\x9f\x99\x9e\xcd\xa7\x7d\x28\xf8\x33\x7a\x42\x7c\xac\x43\x08\x7c\x35\x1f\xab\xe4\xd8\x92\x22\x3e\xdd\xad\x10\xf4\xd1\xdd\x0a\x73\x9f\x47\xbb\xbc\xf0\x6b\x7f\x95\x0d\x83\x14\x2a\x68\x25\x09\x79\xa8\x94\xce\x97\x4b\x4e\x10\x84\xf0\x43\x91\xe5\x9d\x50\x95\xf9\xcc\xe6\xa3\x34\x91\x89\x17\x99\xef\x6e\x39\x9a\x8f\xf3\xae\xfc\x14\x47\xab\x32\x3d\xcf\x96\x35\x70\xd2\x43\x8f\xe9\x1c\x02\xc3\x45\x53\x5e\xd5\x08\xd5\x65\xac\x9d\x7f\x8e\x06\x69\x1d\xee\x3f\x3f\xbf\xbf\x3d\xb2\x66\x85\x4b\x7d\x82\x99\x55\xf8\xd9\x5a\xed\x0a\x80\xd5\x2c\xb7\xf1\x32\x45\x93\x8e\xe7\xa3\x72\xa2\x02\xe4\x9b\x64\xfa\x1e\x3c\x07\xfb\xad\xcc\xcd\x4b\x5c\x8e\x98\x06\x61\x2b\x5c\xcb\x97\xb4\x57\x85\xf8\x4b\x81\xe0\x2f\xc0\x69\xc8\x5d\x57\xe6\x4e\x6d\xf5\xfd\x6c\xf3\x1f\x50\xa3\x80\xdb\x47\x08\xb0\x9c\x12\x9d\xd7\x34\xbb\x02\x77\x8f\x02\xc8\x23\x34\x42\xe9\xc0\x18\xde\x6c\x1c\x0d\x34\xb6\xee\x86\xe2\xdc\xb9\x44\x2f\x00\xf9\xe5\xef\xc2\xcd\x89\xc4\x9d\x5f\xa7\xbb\x36\x14\x27\xef\x39\x0a\xd7\x24\xb3\x6a\x60\xfc\xa9\x8c\xab\x73\xc6\xe8\x44\x82\x21\x87\x8f\x55\x66\x91\x17\x99\x2d\xc2\x01\x5e\x97\x1b\xec\xf5\x43\xbe\x4a\x46\x27\x34\x23\xd3\x8d\x62\xec\x4b\xda\x4f\x1c\xec\x2a\x7d\xc5\x33\x63\xbf\x1b\xe2\x34\x5d\xb1\xbd\x5d\xd5\xdd\x21\x48\xbd\x46\xf6\xd6\xe5\xfc\x07\x67\x5c\xce\x5f\xc5\x75\xfc\x37\x8a\x65\xfe\x22\x9e\xac\xa4\xdb\x0a\x69\x11\x8d\x2a\x53\x2e\x08\x38\x3c\x95\xab\x63\x35\x8e\x55\x77\xae\xc4\x0f\x59\x25\x5d\x04\x8d\x6e\x69\x09\x0a\x37\x66\x52\x6f\x57\x2e\x2e\x11\x23\xd6\x0a\xff\x92\x22\x73\x72\x9a\x59\x93\xac\x50\xb6\xf7\xb5\x6a\x35\x21\x44\x6f\x75\xe8\x75\xc2\x48\x5f\xe7\x0c\x01\x0d\xe0\xb3\x74\xcf\x30\x0c\x3f\x40\xda\x87\x32\xfd\x34\xad\x20\x07\x60\x7d\xc5\xe5\x83\xd3\x1b\xba\xf7\xde\x52\xcc\x57\x9e\x16\xf6\x13\x5e\x65\x30\x74\x10\xbe\x00\xac\xfb\x78\xa0\x84\xf3\x1e\xe8\x5e\xe8\x63\x1b\x8a\xb2\xf6\x32\x79\x4f\x14\x91\x4e\x62\x0b\x4e\x74\x98\x11\x07\x7c\x84\x95\x2d\xe8\x27\xb5\xfd\x78\x1a\x13\x7f\x86\x26\x01\x6a\x2c\x7b\x01\x64\x44\x6d\xef\x4e\x93\x43\x1c\x91\xd2\x2e\x33\x87\xa3\x04\x80\x7e\x1e\x7e\xe6\xc8\x58\xe1\x10\xaf\xa9\xe1\xd1\xea\x9d\xe6\xf9\xd0\x26\x05\xac\x1f\x4a\x71\xe7\x14\xd1\xe6\x39\xb5\x74\x08\xde\x9c\x99\xa4\x68\x79\x31\x2a\x90\x8a\xf1\xb1\x62\x9a\xcd\x07\x66\x64\x5b\x94\x47\x3a\xb8\x61\x15\x92\x3e\x0c\x6e\xf8\x0a\xb8\xfe\xdf\xb4\x2c\x35\x0f\x7f\xca\x55\x74\x3e\xd1\x8c\x3c\xa6\x18\xa4\x71\x14\xb6\x7c\xa5\x75\x43\x4b\x29\x6c\xd4\xac\xeb\x8b\xed\x2c\x4d\x97\xdd\xce\x16\x99\x88\xea\xf3\x7c\x5c\xab\x3f\x57\xcb\xde\x26\xbd\x34\xcb\xad\x63\x3e\xc0\xe2\x3a\xa7\xea\xf2\x75\xab\x5c\x25\x04\x40\x99\x32\x87\x3d\xe3\xa5\x94\xb1\xfa\x65\x2d\xc7\xff\x4b\x6d\xd3\xcd\x8b\x28\xd9\xa6\x72\x76\x9e\x3e\xc4\xc7\xae\xbc\x62\xd7\x6d\x37\x4b\xd7\x5a\x13\x0d\x2e\xdf\xbb\x68\x08\x35\x17\xdb\x51\xb6\x22\xd5\x03\x18\xf2\x2b\xf4\x11\x3e\x46\x08\x87\x57\x67\x57\x6d\xf2\x84\x17\x26\xb9\x02\x58\x9e\x60\x93\xe9\xf5\x60\x8d\xfd\x29\x96\x2f\xcc\xec\x79\xec\x12\x24\x65\x53\x1b\xbe\x30\x85\x1a\xac\x74\x22\xab\x4b\x46\x1a\x7a\x5f\x17\x8a\x99\xf5\x05\x35\xbf\x4d\x9d\xdf\x4d\x29\xce\xf3\xeb\x64\x05\x81\x7c\xb8\xeb\x48\xff\x92\x28\x29\x06\xb4\x7e\x91\x76\x42\xba\x8b\x8f\x9b\xb0\xe3\x43\x93\x75\x99\x72\x02\x79\xe3\xb1\xc0\xe3\x2e\x8e\x35\x75\x88\xfa\x71\x9a\x0e\x23\xd1\x64\x83\x21\x41\xde\x2d\x72\x07\x64\xad\xf0\x0d\x57\x1b\xc9\x01\x07\x5e\x2b\xc8\xe5\x65\x1e\xec\x7f\xce\x71\xb5\xe5\x66\x75\x75\x7d\x97\xc2\x9c\xbf\x4f\x91\x2d\xda\xb5\xdc\x29\xd2\x8a\xa0\x28\x52\x81\xfa\x83\xff\x1d\xfe\x56\x86\x59\x3d\x1f\xcb\x30\x2a\xf2\x72\x25\xcd\x07\x51\xcb\x83\xa8\xb0\xdb\x45\x77\x5a\x13\x85\xe4\x69\x99\x85\x96\xaf\x19\xbd\x96\x6b\xba\xcf\x73\xad\x96\x9e\x10\x51\xa3\x09\x99\x2c\xcb\xf7\x76\x10\x4f\x89\x6c\x8d\x77\x73\xcb\x69\x36\x34\xf1\xce\x6a\xad\x09\xfd\x88\x57\x65\xb8\xa8\x08\x8e\x20\xa0\x87\xf5\x78\x6b\xac\x12\x98\x23\x4d\xfd\xc4\xcc\xf6\xca\x90\xad\x21\x16\xcb\x7b\x7a\xb6\xf4\x0f\x14\x9a\xf4\x17\x4d\xf9\xf8\x72\x59\x94\x19\xaa\xec\x58\xb6\xcf\xd2\xab\xe6\xe3\x0d\x89\x30\xd7\xd2\x6c\xe5\x09\x8f\x59\xf8\x2a\x5d\x23\x22\xdb\x3d\xe4\x70\xe8\x9e\xd6\x9f\x26\xaf\x24\x53\x78\xf4\x6a\x90\x6e\xfd\x6b\xec\x25\x74\x39\x77\x23\xc9\xc6\xc7\x47\x63\x0f\xa5\xe1\x14\x1b\x76\xe3\x3e\xee\x1d\x38\x8f\x07\x30\xa9\x52\x86\x69\xbd\xb2\xe8\x30\xd6\xb4\x15\x85\x6f\xc0\xd7\x8c\x47\xb1\x79\xd3\x10\x6d\x97\xcc\x53\x55\x97\xc6\xc7\x35\xc7\x42\xdd\x03\xbc\xa2\xd6\x43\x07\x69\xa4\x2c\x5f\x25\x88\x61\x3a\x2a\x6c\x26\xab\x1c\x6f\x8b\x13\x70\x3e\x51\xb0\xda\xb4\x2c\xd2\x95\x72\x38\x2a\xa7\x94\x94\x83\xb0\x18\xa3\x3e\xc1\x60\x0b\x38\xbe\x5b\x2a\x59\x08\xd3\x24\xb1\x42\x00\xc5\xad\x1a\x14\x19\xa4\x6f\x33\xc1\x4e\x37\x8c\x0a\x56\x51\x7e\xc9\xd7\xcf\x5c\x05\x1b\xe5\x19\xfc\xe2\xf1\x5a\xab\x77\x76\x96\xde\xb3\xcc\x05\xa2\x32\xd6\x52\x95\xa2\xab\x63\xa5\xf3\x79\xd9\x41\xcd\x6c\x31\x88\xc2\x28\x07\x4f\x23\x9c\xd2\x8d\x09\x01\x1e\x45\xfb\x51\xd7\x5c\x3b\x38\xb3\xd0\x4e\xd2\xac\x18\xac\x11\x28\x61\x69\x46\xc6\x41\x02\x3d\x1a\xb2\xfd\x5a\x25\x73\x34\x3d\x82\xcb\x09\x41\xb7\x2f\xc2\x3f\xda\xf1\x20\xda\x9b\xb4\xc6\x04\x45\xa7\xc2\xed\x13\x0a\x4f\x08\xf9\x47\x3b\x8d\x27\xad\x39\x8a\xb1\x50\xff\x3d\x7d\x39\x06\x5d\x78\xd0\x58\x46\x4f\xeb\xb2\x59\xfb\x29\x82\x08\xd1\xc1\x72\x49\xe0\x86\x62\xe2\xf1\xdc\xa2\x45\x16\x0d\xdd\x7c\x8f\x63\x9a\x51\xe0\xb8\x26\x18\xe2\xc8\xc4\x43\x9b\xa5\x13\x30\xc4\x2f\x35\x0c\xf1\xcb\x9a\xb5\xa8\x7c\x7c\x37\xa3\xe1\x17\x7c\x4a\x49\x0c\xb8\x13\x85\x8e\x34\x65\x31\x48\xb3\x69\x55\xb1\x39\x87\x6a\xb9\x14\x6d\x69\x4b\xf2\x49\xa0\xf0\x7f\xe7\x6a\x93\xb4\xb3\xb3\xed\x51\x16\xa9\xb1\xca\x3f\xd3\x9b\xfb\xcf\x9a\x9a\xe8\x42\x93\xd1\x9b\x56\xa8\xe5\xbf\x85\xe8\x0e\x8b\x19\xf3\x22\x28\xc4\x5f\xa2\x1c\x0c\x4f\xb6\x49\x96\x68\xb1\x6d\x22\xf7\x8c\x45\xbe\xdf\xeb\x1c\xd6\x85\x27\xc0\xd1\xc3\x97\x80\xfe\x2f\x2e\x16\x05\x15\xc4\xed\x4c\x9e\x83\x07\x7e\x4f\x71\xb0\x9b\x62\x98\xe6\xa3\x01\x2b\x10\x34\x57\x3a\x1b\x44\x42\x12\x5b\x0c\x78\x3e\x89\x79\xe2\x90\x0d\xff\x02\x4f\x17\x81\x38\xdb\x45\x18\xc9\x9b\x35\x4b\x56\x45\x64\xe9\xc8\x26\x2e\xfc\x73\xa3\x59\x6e\x86\xf8\xa2\x93\x86\xed\x65\xd1\xaa\x83\x72\x63\x83\x9e\x54\xad\xd2\xdf\x1d\xab\x94\x2d\x78\x46\xab\xe1\xac\x46\x49\x48\x18\xf6\xca\xac\xcb\x2c\x8e\x02\x55\xa3\xe3\x2a\x83\x39\x0a\x60\x7d\x55\x15\xac\xec\xa1\x34\x0b\xa3\xdc\xb6\x14\x6d\x0a\x06\x9e\x44\xfb\x7a\x1b\x0e\x64\xdf\x42\xfb\xd7\x9f\xa1\x3f\x46\xe1\xfb\x5a\xa0\x84\x8f\x8f\xa0\x86\x8f\x64\x11\xa0\x16\xac\x9a\xb7\xc7\x2a\xaa\x2b\x90\xae\x38\x6a\x6c\x4d\x93\xad\x5b\x08\xb3\x73\x9c\x3a\xdf\x54\x2f\x7c\xc7\x06\xa5\x60\xc8\xc7\x7e\x6f\x3c\x41\x7b\x43\x51\x11\x2b\x05\xc3\x11\x20\xf1\x62\xa5\x34\xa7\xca\x35\x3b\xeb\x26\xa6\x2b\xcb\xe5\xa2\xff\xca\x59\x8a\xd0\xf0\x04\x60\xc6\x0d\x0e\x99\x28\x56\x12\x28\x77\x94\xa4\xdf\x1d\x85\x80\x5d\xe1\x72\x0c\xe2\xcb\x33\x68\xb7\xc1\x0e\x9e\xc1\xa5\x60\x51\xdd\xae\xb5\xea\x96\x66\xda\x26\xdf\xe9\xd9\x28\x37\x15\x8a\x7c\x07\x88\x75\x04\xea\xe6\x17\xd3\x29\x7a\x6c\x88\xcc\x3e\x69\x9a\x14\x85\x8a\xbd\xcc\x46\x08\x8d\xab\x9f\x4a\x3a\xa9\x10\x43\xc3\x28\x1c\x44\x7d\x93\x4c\xab\xb2\xd0\x5d\x45\x99\x72\x4e\x91\x89\x71\xc9\x99\xff\x48\x33\x07\x9b\xc2\x66\xa3\x28\x8e\x4d\xa6\x86\xa6\xce\xe8\x6d\x73\xa6\x81\x93\xab\x5d\xed\x3d\x33\x5a\x7f\x38\xd9\xae\x2f\x87\xac\x65\x95\x9b\x4d\x76\xfa\x9a\xdb\xed\xb1\xe2\x8d\xe6\x41\x41\x98\xa3\x9d\x1d\xc5\x36\x0e\xe4\x8b\x3c\x45\x45\xa4\x1b\xc5\xab\x36\x93\x51\x56\xee\x50\x29\x9e\x8d\x9f\x8d\x7d\x51\x70\x39\x15\xb5\x7e\x24\x34\xe8\x5f\x60\xe9\xdc\x08\x74\x03\x77\x7b\x6c\xbe\x6f\xa1\x6d\xca\x1e\x4b\x22\x60\x6f\x42\xc5\x88\x9b\x60\x63\x3f\xa2\x73\xaa\x96\xb5\x91\x5a\x73\x5a\x26\x3d\x67\x59\xf8\x66\x55\xfb\xd7\x63\x67\x72\x9b\xe4\x91\x03\x70\x60\x91\xe3\xb7\xf8\xb8\x26\x0a\x06\xb1\x56\xe3\x58\x07\x79\x0a\x95\x6e\x48\x26\x52\x1b\x28\xc3\xf2\x32\x1b\x65\x34\xe7\x3a\xe5\x03\x95\xcb\x81\x2f\xea\x32\x99\x01\xc0\x80\x1f\xba\x4c\x6a\x39\x4a\x4c\xac\x9a\xea\x9c\xa2\xf0\x49\xcd\x3a\xef\x5b\x68\xe7\x83\x74\x14\x47\xcb\xbe\x64\x86\x0a\x3c\x26\x74\xf8\xb8\x66\x8e\xe7\xe7\xdb\x99\x8d\xa3\xbe\xb0\x32\x88\x35\x56\x5c\x0f\xf5\xd6\xc7\xc2\x42\x3b\x0f\x89\x2b\x5b\x5c\x16\x2c\xc6\xf5\x40\x41\xdd\xae\x6b\xa0\xaa\x29\xe3\x34\xca\x2d\xe0\xae\xe2\xd3\x94\xfc\xe8\xfb\x4a\xae\x9b\xcd\x31\xb2\x85\x47\x1a\x98\x63\xda\x55\x24\x66\x13\x16\x33\x44\x04\xc6\xdc\x02\xb8\xcd\x9b\x0a\xb4\xb2\xa9\xc4\x9d\x12\xaa\xae\x4f\x79\xe3\x00\x98\x3d\x52\x91\x27\xc1\xd3\x85\x4e\xc2\xf5\x49\x1a\xad\xfc\xeb\x14\xf8\xc1\x8e\xff\x84\x32\x5f\x3e\x6e\x0a\x52\xfb\x36\xb1\x99\x89\x15\x26\x6f\x7a\xc3\xb3\x95\x4c\xd7\x48\xe6\x5f\xac\xd6\x6d\x7f\x50\x10\xf0\x78\x82\x8b\x5b\x50\x08\x0a\x3c\xa7\x55\xe8\x5a\x1d\x0f\x7b\x58\x31\x49\x7f\x3d\x9d\x56\x85\x7a\xe2\x24\x92\xe1\x33\x94\xbd\x61\xe4\xcf\x93\x49\x64\x6e\xe7\x09\xe6\xaf\xb2\x3f\xa0\x85\xba\xb4\xc8\x35\xfc\x2b\xaa\xac\xfe\x05\x7d\x0c\xd7\x77\x7c\xfc\x98\xf3\x92\x7f\x05\xee\x59\x10\x49\xde\x1a\x5e\xa5\x9d\x07\xac\xcb\x56\x6d\xbf\x2e\xcd\xb4\x7b\x36\x17\xd3\xeb\x2a\x26\x67\x14\xda\xf3\x8c\x6a\x6b\xe4\xa1\x21\x3e\x0b\xaf\x57\x73\x46\xf1\x53\x9d\xa9\x85\x74\x55\x10\x1a\x7d\x43\x99\xab\x47\x91\x95\xf0\xc9\x86\xcf\xae\x8b\x32\x4b\xd2\x55\x9b\xe1\x36\x70\xaf\x88\xa2\x50\x5c\x98\xee\x28\x23\xab\xb8\x35\xc3\x81\xc9\x28\xc1\x96\x78\x15\x5f\x7d\x4c\xe1\xaf\x8f\x29\x28\x51\x66\x18\x18\xa8\xf9\x9c\x51\xb2\x40\x85\x53\x08\x5c\x9b\xea\x71\x55\xc4\x24\xd0\x65\x84\x16\x27\xf5\x04\xf2\x54\x47\xd5\x2b\xef\xa9\xf6\x47\x39\xca\xa3\x1e\x00\xc0\xc8\x8a\xa6\x15\xeb\xdb\xb4\x9a\x7e\x8b\xe2\xf5\xbd\x1e\x4f\x83\x39\x28\x2c\xa3\xdd\xdc\x8c\x76\x5c\xa6\x0e\x51\xbe\x77\x43\xb1\x99\x3d\x42\x4b\x1c\x39\xcc\xa3\x1d\x15\x94\xdf\x1f\x7b\xbd\x90\xbf\xfa\xf4\x86\x02\xac\xdd\x20\xff\x4d\xbf\xf8\x3f\xfd\x57\xb8\x03\x41\x1b\xa8\xc6\xc4\xae\x8d\x1a\x78\x60\xb6\xfd\xba\xb5\x23\x89\x41\x1d\x83\x91\x4f\x13\xee\x22\xc0\x11\xa1\x5e\xa7\xfb\xb4\x3e\xb2\x6b\x44\x20\xde\xf2\x33\x0d\xe0\x2a\x10\x06\xe5\x09\xa9\xcc\x28\xff\x15\xaa\x04\x00\xf4\xfb\x1c\xa6\x5d\x1d\x33\xea\x2b\x4b\x22\x46\xfa\x2f\x38\x55\x9e\x30\x6c\x48\x02\x76\x40\x05\x1e\xaf\x69\x17\x3d\x7c\x88\xb2\x3f\x4b\x65\x39\x57\xe1\x76\x93\x2a\xa0\xcb\x13\x0a\x3b\x55\x96\x7a\x1c\xb1\x1d\xf9\x89\x7f\xfc\xe7\x3a\x14\x8f\xa1\x2d\xb6\xa7\xa3\xc0\x9b\xbb\x10\x08\x49\xaa\xa1\xa0\x8c\x47\xa8\x2c\xe1\x9a\x87\xb3\x73\x9e\x3b\x61\x9f\xf4\x35\x9f\x40\xa9\x1f\xa6\xf3\xfe\x58\x41\x70\xa7\x08\x26\x02\xfb\xfa\xe4\x86\x1f\x64\x7e\xaa\xe3\x35\xe9\x36\xc7\xcf\x6b\xe2\xb5\xd5\x34\x24\x8c\x64\xbc\xde\x52\x1a\xfb\x1c\x89\x4a\xa3\xca\x9b\x9f\xcc\xf6\x2b\xbb\xde\x9b\xf2\x44\x7a\xe7\x15\x92\x0f\xcc\x67\xb2\xc4\xf5\x7b\xb2\x39\x3a\x81\x68\x49\x00\x91\xcf\xc7\xaa\xb9\x68\x0f\x85\x03\x93\xf4\x6d\xfe\x58\x75\xf1\x48\x96\x28\x82\xdc\x3a\x8f\xe0\x56\x49\xb6\x0b\x7b\xf5\xef\x70\x23\xc2\x85\x4d\x7e\xfc\xf6\x08\x6e\xc3\x5d\x9b\x8b\x58\x08\xe8\xbf\xc5\xca\x0a\x08\xc4\x8f\x35\xc9\xe9\x9a\xa1\x3d\xd4\x52\x69\xfa\x97\x81\x1e\x41\xf2\x3b\x33\xb7\xf9\x13\x7e\x2e\xef\xbf\x7b\x11\x66\x8c\xda\x21\xe5\x73\xbc\x37\x01\x19\xfe\x9a\x57\x90\x1b\xfc\x45\x12\xba\x82\xb1\xfe\x00\xd7\x8d\x48\xf4\x01\x6d\x3a\xb4\x97\x1e\xd0\x9b\x77\x90\xf5\x83\x33\x9e\x1b\x54\xd4\x80\xfe\xdc\xf3\xe8\x44\xc2\x38\xed\xde\x50\x73\x35\x5b\x58\x1e\x14\xb1\xfe\x0f\xff\x65\xa7\x81\x21\x31\xb7\xc5\x2e\x45\xd2\x76\x71\x3c\x41\x51\xa6\xd4\x90\xe9\x27\x9c\xc8\x66\x75\xb1\xb4\x4c\x87\xcf\xc0\x85\x89\xa0\xfb\x84\x4f\xee\x01\xf4\x8e\xdd\xcf\xa5\x05\x3e\x71\xa8\x90\x28\xe9\xa5\x79\x69\xdf\x6c\x69\x3d\xbc\x1f\x8e\x15\x7f\xe7\x0f\x7d\xd5\x6c\xbd\xf2\x45\xa1\x8b\x09\xdd\xcc\xa6\xd3\x16\x3e\xe3\xda\xcf\x99\xcd\x4a\x89\x3f\x64\x72\x94\x6e\x14\x25\x11\x8c\xdd\xc0\x79\xd7\x3b\x00\x14\xaa\x65\x26\x59\x69\x69\x7e\x1c\xcd\xff\xb9\xa9\x60\xd5\x99\x5d\xb5\x49\x69\xf3\x47\xb7\xc3\x50\xb9\x1d\xa7\x87\x2b\x03\xbf\x34\xae\x7f\x14\x78\xf1\xa2\x0d\x7c\x39\xea\xb7\x9c\x06\x0b\x6f\x37\x19\x38\x9e\x6e\xa7\xf8\x1a\xd5\xb7\x6d\x0f\x3b\xa7\x32\xf8\x4b\xae\xfb\xe1\x31\xb9\x1f\x03\x93\x20\x2c\x12\xd5\x8f\x62\xec\xe3\x12\xed\x57\x69\xdb\xd2\xa3\xe2\x3f\x52\xcc\x24\x44\x50\x31\x8d\x8e\x22\xc2\xe1\x0f\xb4\xaa\xcc\x5b\x68\x9d\xf2\xff\xa8\x41\xb4\xb7\x14\x37\x60\xdf\xa6\x59\x3f\x32\xc4\xd3\x8c\x9f\xbb\x1f\x28\x6a\x60\x5c\xac\x70\xc5\xfa\x6b\xba\xdf\x90\x41\xcc\xb5\x6d\x52\x44\x45\x6c\x27\x67\x7c\xb4\x6e\xd3\x85\xda\xb8\xf2\xdc\x81\xb6\x1d\xe6\x8a\xf4\x63\x73\x82\x6f\xca\x15\x33\xe2\xb4\xb2\x3e\xc5\x14\x25\xfb\x6c\xe0\x27\x49\xe4\xab\x4f\x21\xec\xad\xab\xb8\xcd\x1d\xa8\x4c\x2a\x7d\x07\xd7\x7b\x9c\xa2\x82\x13\x8b\x86\xa8\x32\xea\x08\xad\x4e\x13\x23\x61\x31\x88\x92\x15\x4a\x74\x51\xac\x39\xa5\x26\xab\x4f\x35\xf6\x4a\x96\x4b\x1e\xdf\x87\xe3\xc0\x4b\xe0\x63\x55\x06\x1e\x99\xc2\x26\xc5\x4e\xc5\xde\x72\x53\x11\x7c\x82\xf5\x1d\x5e\xff\x03\xed\xd4\x58\x8a\x80\x3f\x51\x0b\x7d\x88\x44\xb1\x9b\xa5\x2c\xde\x21\x1c\x09\x2a\x90\x03\x30\x11\x65\x69\xb0\x90\x0b\x60\xda\x57\x4e\xbb\x51\xb8\x1e\xc6\x88\x82\xdc\x14\xad\x2a\xf9\x06\xbe\xe1\x36\xb0\x26\x2b\x76\xfa\x69\xb3\x47\x3a\x1e\xa3\x70\x8a\x7e\x4a\x44\x94\x14\x5c\x5e\xe1\x42\x4e\xa9\x8e\x4a\xcf\x9a\x5e\xbc\xae\x2a\x22\xf0\x12\x42\xe8\xa5\xaa\x71\x49\x61\xb2\xb0\x88\x42\xd3\x9a\xe0\xe2\xf1\x10\xe6\xf3\x63\x0f\x8d\x8e\x32\xea\x30\x9b\x2e\x8b\xe2\x38\xfb\xe3\xf1\xfd\x6c\x8c\x70\x49\xbf\xaf\x40\x1a\x37\x9c\xb5\x23\x09\xcc\xb8\x0c\x65\x5c\x46\x18\xf9\xfd\xdb\x3d\x0e\xe4\x3c\x5b\x80\x65\xbb\xbb\x06\xc3\xd0\x3c\xa3\x02\xe6\xa9\xf6\x17\xb2\x8c\x7b\x81\xaa\x7f\x30\x59\x27\x9f\x70\xb8\xc4\xbc\x8c\x4d\x18\xeb\xe5\x34\x8e\x49\x78\x74\xca\xaf\xe8\x0f\xc6\x6a\xea\x08\xde\x12\x00\x97\xf7\xc6\xcf\xf0\x27\x45\xe0\x0f\xaa\xd9\x4e\xef\xe9\x7b\xf4\xe6\xf8\xb8\x61\x6a\x7e\x7f\x7b\x60\x46\xb1\xcd\x91\x9e\x62\xdf\xfe\x08\x41\x81\x58\xc3\xea\x0b\xd0\x9c\x3e\xe2\x9d\xe3\x3f\xba\x39\x81\xe8\x59\x4f\xcb\xa7\x94\x1e\xea\xd3\x1d\xba\x5e\xd4\x2b\xae\xa2\x2b\xe9\x44\x25\x0e\x0a\xad\xc4\x87\x84\x06\x16\x26\x89\x96\x23\xd3\xb8\x33\x56\x7c\x5a\x5b\xf0\x90\x30\x14\x67\xe9\x21\xe3\xe1\x5f\x9b\xcc\xcf\x3c\x8b\x00\x4c\xd6\x04\x15\x02\x4c\x60\x6b\xa3\xf5\xed\x39\xee\xc8\xfe\x3d\x74\x27\xf1\xf1\x53\x70\x05\x42\x23\xed\x1b\xd2\x7f\x3b\xd0\x31\x9a\x89\xa3\x37\x99\x93\x40\x4c\x95\xef\xed\x6d\x2a\x21\xec\x61\x94\x44\x79\x98\x45\x5d\x3b\xad\x88\x2f\x78\x7e\x5d\x4e\xaa\xaf\x71\xc8\x24\x35\xe5\xde\x88\x9b\x2c\x32\x6b\xf2\x32\xf3\x09\x97\xd0\x20\x6b\x4e\x64\xe5\x18\x06\xd1\x30\xb7\xf1\x32\x68\x45\x26\x9a\x09\x8e\xe6\xc5\x55\x86\xa0\x3f\x83\xa8\xf0\xc3\x40\x59\xa8\xcb\x4d\x5a\x64\x26\x89\x86\x26\x96\x04\x04\x85\xe3\xef\xe1\xab\x01\xd1\xbe\x32\x31\x78\xdb\x30\x80\x4f\x22\x1e\xae\x52\xd3\xa4\x89\xab\x75\x53\x0a\x4a\xc9\x5d\x71\xd3\x81\x1f\x76\x20\x18\xc4\x3b\xbb\xd2\xb0\x91\x7c\x93\x00\x6d\x0a\x57\x6c\x3f\xe8\xcb\xca\xb4\x64\x51\xeb\xdc\xd5\x51\x70\x07\x4d\x15\x1d\x0e\x22\x2b\xf4\xc2\x3c\xba\x1b\xb8\x5c\xe6\x5c\xbd\x92\x77\x70\x66\xa1\x6d\x68\x8e\x74\x49\x20\xf0\xd3\x1d\xaf\x3b\x36\xad\xd2\xef\x2a\x8d\xee\xcb\x4e\x77\x64\xa9\x4b\x33\x5c\x88\x7b\x64\xc3\xdf\xee\xa7\x6a\xcc\x23\x0f\x4d\x66\x7b\xd3\xe4\x4c\x1d\x94\x73\x69\xa6\x51\xeb\x92\xba\x42\x82\xf1\xdc\xeb\xca\x41\x26\x2f\xa6\x7d\x9a\xcf\x84\x65\xb0\x35\x9f\x8d\x7d\x33\xf9\x8a\xd2\x29\x78\xb4\xe3\x9a\x8a\x59\xd7\x0c\xd3\x04\x4d\x45\x07\xd5\x74\x96\x94\xd3\x08\x91\x59\x71\xbd\xb4\xb4\xec\x0f\x6c\xb6\xc7\x57\xbb\x78\xf2\x0e\x11\xd8\x11\x18\x1d\xd4\x1a\x98\x65\x84\xae\xfb\x95\x67\x91\xd6\xb9\x42\xa8\x6b\x43\x22\xef\xdd\xba\xc4\x58\x70\x44\xc0\x17\x14\x54\x28\x1f\x99\x6c\x05\xda\xaf\xd5\xfa\x6c\xaa\xb2\xd4\x37\x9b\x57\x35\x17\xde\x1a\x55\x85\xdc\xef\xaa\x90\xca\xc7\x9a\x38\x4e\xd3\x84\xf8\xa4\x61\x68\xe0\xf3\x65\x46\xbe\x4a\x3d\x01\x38\xc2\x0b\x15\x88\x28\xd9\x1c\xfe\x8f\x8e\xd3\xc8\x4b\xd7\x39\x45\x57\xd0\x76\x1f\x32\xf8\xe9\xe6\x5e\x9a\x30\x49\xaf\x00\x87\x5a\x8e\xf5\xf3\xbc\x2b\xfc\x8d\xe2\xca\xc3\xf6\x53\x45\x1a\xd5\xea\x28\xd2\xa8\xba\xda\xf6\xc2\x02\xb1\x08\xb5\x94\x9c\xa2\x16\xd6\x39\x5b\xf3\x21\xfb\x16\xda\xf6\x50\x61\x93\x1e\x43\x1d\x24\xfd\xa4\x77\x8b\x1c\xf1\xb4\x2e\xe9\xdd\xad\x81\xa2\xf6\x2d\xb4\x13\x9b\x17\xb1\x55\xe8\x2f\xce\xff\xf9\xa4\xce\xd8\x30\x47\x5c\x16\x59\x3a\xa4\x1e\x55\x75\xad\x8e\xa0\x49\x91\x32\x29\x29\xa9\xcc\x9a\x62\x5a\x89\xea\x5e\x51\x23\x8b\xdf\x1f\x7b\x6a\xeb\xf7\x14\xd5\xe1\x49\x8d\xa6\x8d\x0a\x06\xc9\x4b\x97\xfd\x9c\x02\x70\x9c\x1b\xfb\xc0\x7e\x64\xa2\x6c\x42\xb9\x1b\x69\xb9\xd8\x9c\x7a\xa0\x37\x47\x74\x96\x52\x4f\x16\x7e\x4c\x5f\x17\xbb\xa0\x48\x92\x32\xb3\xde\x2d\x33\x8c\x9c\x61\x17\xc0\x62\xf0\x71\x6d\x3e\x78\xee\x00\xc9\x87\x45\x49\x1f\x4c\x44\x0a\xab\x35\x56\x83\x22\x7a\xf8\xde\xf4\xa3\x30\xe2\x76\x87\x00\x1f\x75\xd6\xf5\xb8\x22\x15\x60\xb5\x75\x4d\xaa\x87\xb0\x81\x25\x89\xa4\x0d\xa2\x44\x03\xcf\x06\xca\xea\x9e\x55\x65\xce\x01\xa9\x4a\x72\x93\x1f\x0b\xe7\x06\xe2\x1e\x54\xd3\xbe\xa0\xab\xe0\x63\xcd\xa8\x72\xa3\x11\x01\x34\xca\xd2\xe5\xb4\x4c\x7a\x8a\xa1\x1f\x48\x69\x51\x5a\x7b\xdc\x79\x99\xbf\x6e\x90\x56\x00\x10\xf3\xd9\xd8\x63\xab\x4f\x69\xaa\xde\x2b\xb5\xb5\x3f\x3b\xdb\xce\x6c\x6c\x4d\x3e\x49\x7b\x01\x36\x3f\xd1\x02\xaf\xb3\x43\xbd\xda\x4e\xec\xaa\xcd\x8a\x81\xad\x22\xaf\x96\xaf\xe5\x6e\xfa\xb2\xe0\x3f\xdd\x6c\xd2\xd2\x49\xd2\x84\xe4\xac\x14\xe2\xf0\x7c\xa0\x67\xbe\x9f\x56\x0c\xbf\x69\xc1\x22\x6f\x5e\xf5\x43\x11\x1a\x5c\x18\xff\xff\x1f\x02\xdc\x00\x7d\xac\xa7\xab\x86\x93\xe0\x14\x9b\x4f\xc6\x5f\xf3\x6c\x4f\xc3\x51\x4c\xd0\x44\x4f\xc8\xca\x18\x69\xd5\xea\xb9\xa1\xf0\x3f\x83\xc8\xa9\xd4\xc1\x11\xa0\xca\xcf\xc7\x8a\x79\x38\x34\x59\x91\x82\xa5\xf8\x25\x47\x1d\xdf\x52\xa3\xcb\xbe\xf3\x96\x97\x62\xe5\x91\x10\x9d\x54\x22\x49\x27\x9b\x9e\xa4\x29\x06\xb1\x2d\xdc\x7c\x02\x42\x0f\x16\xb4\xe4\x93\x60\x7b\x17\xf6\xc5\x76\x6e\xd6\x77\x79\x1e\x39\xd1\xae\x71\x21\xdd\xec\x2c\xd7\x25\xb9\xfa\x88\xe8\xe4\x02\x4d\x19\xa2\x50\x75\x05\xd9\x00\xa6\x1a\xcf\x37\x75\xcd\x46\xf6\xf5\x34\xf3\x03\xd6\x6e\x50\xd1\x25\x81\xa7\xc7\x7b\x15\x91\x42\x32\xad\x2a\x48\x27\x29\x0e\x96\x63\xc5\x50\x71\x92\xb2\x7f\x39\xf6\x34\xaa\xfd\xd4\x82\x98\x5e\x78\xcf\xe9\x1d\xa3\x94\x03\x4a\x65\xd4\xac\xbe\xab\x58\x80\x87\x76\x98\x66\xeb\x53\x8a\x05\xf8\x82\x22\x6f\xf8\x48\x71\xf3\x5d\xd7\xc0\x84\x41\x96\x0e\xd3\x3c\x1d\x82\xb3\x08\x7e\xef\x47\xb4\x1e\xf1\x96\x20\xbe\x8c\x40\xef\x94\x23\x2d\x5b\x33\x45\xce\xcb\xb0\xd1\x21\x6e\x7f\x80\x80\xa7\x2c\xa7\x99\x9b\x65\xdb\x22\xc2\xdf\xad\x4b\x93\x16\x9a\x73\x3f\x54\xb7\x7e\xa4\x2a\x5d\x3f\x02\x83\x08\x5b\x86\x10\x6d\x14\x44\x46\x1c\xd8\xf0\x89\x8b\xa6\xb2\xb4\x2c\xec\x4e\xaf\xb9\xf3\x3d\xcd\xa6\xc2\x13\x2f\xb2\x6b\x28\xac\x41\x31\xe0\xbc\x62\x44\xd8\xd5\xf1\xb9\x73\x44\x57\xaf\x60\xbe\x57\x03\xc5\x81\x73\xd5\xf7\xf4\x62\x93\xe7\x51\x98\xb3\xa2\x15\xd5\x7d\xb6\x2e\xa9\xdc\x7a\x90\x96\xb9\x1d\xa4\x71\x2f\x6f\xa9\x69\xbb\xf3\xb8\x3a\x3e\xa9\x59\xce\xf9\xf9\x76\x2f\xed\xf5\x48\x0a\x78\xca\x37\x7f\xce\xc1\x10\x63\x01\xfd\xe7\xb1\xf7\xd3\x55\x48\xe2\xc6\x05\x22\x01\xd5\x34\x41\xf4\x3c\xb6\x24\x8f\xfa\x89\x89\xab\x08\xd6\x73\x4e\x9f\x53\x8a\x22\x9b\x4a\x15\x77\x73\x12\x9e\xea\x29\x2e\x73\x33\x2c\x33\x13\x4d\xa9\x92\xd9\xdf\x44\x98\xa1\xf1\x61\x48\x09\xeb\x6a\x31\xf3\xf3\xed\x22\x23\x0e\x36\xc4\x8e\x92\x5f\xd0\xb7\x89\x52\x72\x53\x15\x89\xe4\x2a\xe8\xc1\x60\x40\x05\xbd\x1f\x61\x46\xae\xac\x37\x52\xfb\xe9\xce\xd3\xae\x10\xbb\x6a\xf3\x22\xea\x8b\x72\x96\xce\x43\x60\xb5\xef\xc0\x23\xf2\x2c\x9c\x86\x1e\xa4\x61\x64\x0b\xe6\xc4\x5e\x74\xb5\xaa\xd6\x92\xaf\x61\xf9\x54\xe9\x37\xf7\x7f\xab\xe5\xab\x31\x37\x35\xa5\x59\x9d\x1b\xb6\xb2\x33\x34\xa8\xd8\xf2\x43\x72\x0f\x94\x2c\xd6\x04\x11\x80\x01\xc0\x5d\x86\x88\xe8\x8b\xf9\x24\x68\x72\x6e\x65\xe2\x51\x48\x58\x0f\x18\xa7\x01\xb9\x02\x1f\xd7\x2e\x89\x7a\x7d\x6b\x89\x40\xef\x9d\x8e\x81\x6f\xab\xfb\x7a\x62\xb7\xf2\x9b\xe2\x73\x1d\x17\x8b\x17\xd8\xf1\x54\x7b\x69\x59\x44\x6f\x94\x40\xfa\xc1\x94\x1d\x56\xb4\xcd\x87\x6b\xd1\x18\xa1\xed\x0f\x8d\xd2\x0c\x2e\x56\x44\x67\x5b\x4a\x8c\xb6\x81\xe5\x32\x34\x65\xce\xa3\x90\x02\x21\x54\xad\xa8\x8d\x1a\x6f\x13\x89\x15\xad\x88\xef\x81\x2d\xfc\x6d\xcd\x84\xfc\xdb\xaa\x50\x3c\x8a\x8a\x70\xd0\xf2\x84\xf8\xc7\xc7\x9e\xde\xfe\xf8\x43\xe7\xf6\x46\x26\x2b\xaa\x78\xcf\xa9\x14\x7f\x00\x33\x22\xe2\x8f\xf5\x4e\xfc\xc0\x44\x4e\x93\xc6\x61\x29\x7d\xe6\x7c\xec\xa1\x3f\xb5\x5e\x16\x66\xc5\xb4\x2a\x27\x87\xe6\xfc\x31\x4d\x94\x72\xac\x61\x54\x64\x7f\x7b\x60\x92\x9e\xfb\x35\x96\xf2\x47\x19\x44\x74\xfd\xeb\x31\xdd\x62\x3b\x4a\xc2\xb8\xec\xc9\xc7\x90\x81\xb3\xea\x2c\x9f\x34\xcc\x23\x2e\x12\xb5\x7b\x1c\x47\x7d\x37\xd5\x80\x5e\xc3\xff\x85\xcb\xe4\x93\xfa\x4b\x9a\x6b\x17\x69\x82\xfe\x9a\xee\xc9\xf1\xb1\x5b\x63\x66\x34\x8a\x4d\xd9\xcb\x51\xeb\xc1\xfe\x69\xa9\xc1\x63\x88\x5d\xf1\x78\x0f\x9e\xa8\x30\x33\x36\xd5\xe3\xec\xa1\x81\x71\x4f\x46\xca\xaf\xf4\x29\xa9\xb9\x7a\x8b\xdb\x4d\x93\xde\xe3\xf4\x87\x08\xa7\xbf\xab\xca\x3a\xb7\x02\x95\xf4\xb2\x88\x15\xe3\xc2\x50\x9e\x84\xd1\x3a\x3b\xd1\xfc\x52\xc4\xb1\xe7\x15\x3d\xf5\x61\xcd\x1e\xfc\x29\xcc\x15\xba\x28\x9f\xd3\x62\x14\x39\x19\x65\x9e\xa3\x64\xdd\x64\x3d\x3c\x13\x6c\xf9\x4f\x83\x09\x93\x57\x5d\x1c\xba\x5b\x37\x70\x7b\x28\xcc\x9d\x70\x9d\xa6\x28\x09\xab\x68\x41\x8f\xf2\xbf\xa7\xa6\x5c\x2f\xe1\x96\xa4\x4a\xe9\x6b\x1b\x65\xc2\xaa\xec\x18\xec\x07\x1b\x1f\x1f\x2b\x20\x28\xb3\x26\xd9\x8c\xf5\x41\x85\x71\xb6\x7a\x82\x42\x38\xeb\x4b\x7a\xfd\x32\xea\xf9\x89\x35\x29\x06\xa3\x12\xc4\xc7\x13\xfd\xdc\x2a\x9d\xcd\x11\x5a\x89\xab\xf5\x45\x9e\xbf\x0f\x1f\x2c\x0c\x0d\xd2\xa3\xcf\xcb\x7c\x14\x85\x51\x5a\x6a\xd9\xb3\x63\x81\x6f\x5a\x1e\x53\xf9\x68\x6e\x8d\x08\x38\xb3\x90\x9d\x4a\x47\x2f\x8e\x3d\xe6\x6e\x35\x8d\xcb\xa4\x30\x59\x84\x49\xe5\x97\xb8\xa9\x7d\x4c\xa1\xb7\x8e\xd5\x20\x24\xc4\x60\x9b\x4e\x79\xf1\xd6\x07\x14\x40\x0a\x87\xfe\x04\xe0\x70\xfb\xbe\x59\x9a\x69\x8f\xca\x84\xc7\xa2\x35\x9d\x8a\x08\xfb\x88\x15\x5f\x4e\xd3\xc2\xf4\x39\x7d\x77\x83\x91\x0b\x0b\x72\x1c\x3c\x26\xf0\x4a\x1e\xa6\xc7\x22\xc0\x43\xe7\x63\xf7\xde\x33\xf3\x66\x9a\xa1\x2d\x29\xf4\x53\xbe\x3b\x74\x5b\x71\x1f\xd4\x45\x8f\x08\x08\x56\x94\x59\x02\xea\x44\x56\x25\x9c\x0c\xd4\xfd\xc6\x7f\x5b\xab\xa8\x44\x71\x5a\x58\xc4\x20\x82\x80\xf0\x35\x10\x70\x0d\x21\x04\xb9\x5a\x3d\x26\x87\xad\x2d\x32\x43\x63\xff\xac\xee\x2c\x23\x7a\xc7\x35\x09\xec\x71\xd5\x9b\x31\x59\xbf\x94\x9d\x80\xc2\xcd\x25\x8a\x02\x64\x98\x59\x15\xb9\xb5\xf2\x66\xb7\xcc\x5d\x59\x41\x98\x7d\x15\x5e\xe2\xa2\x9b\x52\x1e\x99\x3c\xa7\xbc\x06\xde\xe1\xed\xc0\x17\xe9\xb8\xbb\x82\x84\xe7\x41\xe0\xfd\xc9\xdb\x48\xea\x11\x88\x7c\xaa\xb5\xb9\xfc\xac\x72\x58\xe6\x45\x3a\x54\xea\xf3\x3b\x80\xb8\x74\x16\x66\x69\xc6\xf1\xa8\x6a\x23\x59\x97\x32\xd8\x5f\x25\x83\xfc\xb4\xb6\xb0\xf5\xb7\x2e\x35\xcd\x48\xc5\x51\xd7\x66\x26\x16\xdf\x0a\x38\xd6\x3b\x63\x35\x1d\xfb\x4e\xf0\xbc\x9a\x91\x36\x49\x4e\x45\x32\xae\x12\x2e\x32\xc6\xe8\x0e\xbd\x71\x3e\x56\x3d\xe9\x30\x8d\xd3\x61\x37\x62\xe2\x3c\xb7\x95\x54\x73\x4b\x6f\x2b\xad\x43\x53\x1f\x05\x8c\xf2\xcc\xd8\x18\x53\x50\xb0\xa6\xcc\xc8\xcc\x27\xaa\x0a\x2d\xbd\xd9\x69\x3f\x39\x71\x62\xac\xd4\xac\x91\x81\x89\xf4\x54\xf5\x58\x91\x64\xdc\x51\xac\xb1\x43\x93\x88\xd7\x6d\x2d\x2d\x3a\xbe\x48\x6a\x33\x0b\x61\xa4\xaf\x2f\xae\xad\x27\x48\xbb\x04\x74\xaa\x38\xa5\x4f\xa9\xee\xe7\x5a\x9a\xc6\xc2\x81\x00\xdc\xcf\x31\x0d\x02\x3a\x56\x23\x46\x5f\x5a\x6c\xe7\x45\x5a\x65\x0a\x55\x2e\xa4\xd9\xe1\xc4\x55\xd5\x01\xff\x2f\xb5\x4d\xe5\xbf\x4d\x91\x66\x2d\x3d\x1a\xd0\x5a\xf0\x23\x03\x6a\x3a\x22\x59\x5f\x33\xeb\xd3\xad\x87\xf1\xe4\x4f\x8c\x25\x55\x5f\x27\xc5\x91\x06\xc5\xf1\xd7\xd3\x28\x29\xa6\xd5\x5c\x0a\x54\xa7\x00\x6a\x7a\xa6\xa3\xb4\x3d\x2e\xaa\x2a\xe9\x53\x1b\x0a\xbd\x17\xf5\x13\xdb\x43\x0b\xd1\x81\x10\x3d\xcd\x6a\xa0\x44\x7e\xb9\x4e\xca\x27\x81\x6f\x1c\x5f\xd2\x03\x6f\xc2\x8b\x8b\x4d\xfc\xbd\xda\x55\x2f\x2c\xb4\x07\xe9\x68\x52\x3b\xf1\x5d\x58\x33\xa1\x35\xaf\x3f\xe1\xb9\xf6\xc0\x66\xdd\x28\x8c\x7a\x16\xb5\x30\xec\x15\xd0\x32\x32\x30\x94\x80\x53\x52\x1b\x68\x40\xe1\x86\x59\x34\x8c\x12\x13\x47\xc5\x7a\x4b\x03\xc3\xe9\xda\x05\x19\xae\xd9\xf6\x49\xf5\x2d\x4d\x60\x3f\xf1\x23\xa0\x45\x45\x76\x71\x5d\xb5\x81\x8f\x34\x74\x78\xf6\xb7\xd3\xb2\xa8\x7c\x32\x9b\x38\xa6\xc9\x09\x26\x38\x73\x7c\x1a\x16\x15\x11\x95\x55\xf2\x29\xc5\xa9\x72\x17\x30\x0b\x66\x7c\xa3\xbb\x05\x3a\xd4\x4b\x70\xbf\x5e\xe6\x45\xb4\xbc\xae\xa9\x0d\x74\x46\x7e\x51\x15\x16\x08\xa9\xa9\xf8\x1e\xb9\xb3\x27\x65\x5c\x95\x02\x97\x71\x1c\xad\x9a\x04\x26\x87\x45\xbf\xe9\x76\x45\x00\xbc\x61\xa0\x30\x4c\xd3\xd8\xa5\x54\x8e\xd4\x74\xc1\x93\x9a\x3e\xa9\xc4\xcf\xe3\x38\x32\x43\xba\x66\xdc\xe8\x77\xe8\xdb\xf9\x58\x0d\xc0\x61\x94\x28\x2a\x40\xe2\xe6\xd4\xf3\xe6\x0e\x70\xc3\xf6\x0f\xd0\x1b\xe5\x13\x8a\x02\xf8\x8f\xd4\xcf\x99\xd0\xf4\xec\xd0\xc2\x97\x09\xab\x86\x76\x50\x4f\xe8\x01\x15\x2e\x8e\x8b\x13\x6a\x2d\x78\xef\xd4\x84\x4b\x19\x94\x49\x2f\xb3\x3d\xc0\x4c\x26\x18\xbf\xf9\x44\x55\x0c\xd7\x06\xa9\x5d\xb5\xd9\xb4\x1f\x5c\x7c\xa0\xa3\x55\x8e\x5c\x98\xd5\x98\x36\x18\x6e\xe6\xbe\x9a\x3c\x36\xbd\xb4\xcb\x73\x2f\x5c\x8d\x82\xa5\x95\xd2\x94\xb7\x7d\x69\x3f\x8a\x57\x99\xea\x96\xe7\x32\xb0\xcf\xdc\x90\x86\x83\xe0\x1e\xd3\xc8\x8d\x63\xea\x8a\x79\x20\x68\x5a\xb9\xbf\x40\x65\x37\xbf\x43\xdf\x81\xba\xcb\x15\xdd\x13\xd1\x92\xf4\x49\x5e\xec\xf4\x58\xa8\x5d\xb0\x4a\x22\x58\xab\xa2\xe4\xf3\x24\x73\x22\xb6\xc6\xf3\xff\x7e\xd2\xbc\xb9\xc2\xb0\xcc\x1c\xcc\x1d\xd0\x80\xbb\x78\x14\x7c\x32\x01\x01\xc8\x6d\xfe\xec\x94\xd7\x31\xbe\x81\x1f\xd6\x9a\x5b\x08\xd9\x2e\x6b\xbf\xc5\xf3\x34\x92\x34\xd1\x5e\x74\x92\x21\xce\x32\x1f\xa6\x71\x1c\x0c\x62\xdf\xc2\x28\x11\x16\xf2\xc7\x68\xa2\x39\xb2\x89\x09\xe0\x52\xf5\x10\x58\xaf\x44\xb5\xf4\x7f\x8f\x40\x07\x80\xb8\xdc\xc6\x84\x37\x32\xce\x8b\xc4\xd9\xc6\xc7\x8a\x2b\xf8\x0c\xd5\x25\xf1\x34\xcf\x32\x03\x04\x5f\x22\x3d\x42\x54\x4e\xbd\x2c\xfc\x9a\x35\x23\xd1\x53\x93\x09\x91\x96\x9a\x1c\x69\xc0\x43\x2e\xc7\x06\xac\x7d\x4c\xc8\xaa\x26\x34\x4f\xd6\x3a\x3a\x34\x0f\x5b\xd8\x70\x90\xa4\x71\xda\x47\x7a\x2a\x26\x8b\x1e\x39\x9f\x28\x4a\xc1\xbe\xf5\xd0\x10\xc5\xb3\x0a\xec\x35\x1f\x37\xf4\xa5\xda\x49\x5a\x0c\xa4\x0e\xe8\x64\x64\xfc\xf8\xd4\x77\x91\x2e\xe2\x59\x9e\x1b\x4b\xb4\xde\xb3\xc0\xff\x33\x50\x9f\xd0\x98\x75\xd0\x3e\xd5\x60\x73\x3d\x75\xfb\x20\x50\x93\x33\x97\x14\xdd\xbb\x16\x11\x78\xe9\x2f\xbe\x04\x9b\x29\x44\x1e\xd5\x2b\x10\x1e\x0f\x45\xb7\x18\xf5\x7a\xa4\xf1\xeb\xdc\xd0\x7d\x25\xa2\x79\x87\x3c\x19\xd6\xfe\x7f\xa0\xb5\xc5\x6a\xe2\x9a\xef\xe5\x8c\xea\x2e\x74\x4d\xb8\xf2\xa4\x62\x8e\x38\x0a\xf4\x88\x08\xc4\x54\x2b\x15\x95\xb6\xfb\x63\x3f\x20\xc1\x09\x2a\xb2\x91\xcf\x15\xe5\x21\x83\xc7\x99\x5c\x19\x61\x34\x97\x0a\xd0\xf7\xc6\xb3\x3e\x37\xde\xf1\x75\x27\x50\xa2\x38\x2c\x8e\x62\x03\x31\xc5\x87\xd7\xa8\xfc\x5b\xcf\xfd\xbf\x8c\xfd\x59\x90\x24\xd7\x75\x26\x08\x57\x45\x66\x56\xa1\x50\x24\x50\x00\x08\xb6\xd8\xad\xb6\x3f\xd4\xbf\xda\xa8\x31\xa3\x6a\x46\xd2\xc8\x46\xc6\x17\x0f\xcb\x4c\x0a\xac\xb4\x66\x56\x4e\x56\x11\x50\xe3\x65\xe0\xe1\x71\x23\xc2\x91\x1e\xee\x41\x5f\x32\x91\x78\x9b\x79\x9a\xa7\xb6\xb1\xb6\x19\xeb\x51\xdb\x4c\x77\x5b\x9b\x96\x99\xd6\x32\xa2\xd4\x92\x9a\x2d\x89\x91\x24\xc5\x15\x5c\x00\x62\x21\x40\x6c\xb5\xef\x55\x59\x7b\x65\x6d\x89\x31\x3f\xdf\x39\xf7\x1e\x4f\x77\xb4\xcd\x13\xdc\x51\x91\x11\xbe\xdc\x7b\xd6\xef\x7c\x1f\x1a\xe5\x40\x30\x83\x8a\x14\xc5\xd7\x87\x78\x51\xd8\xb5\x77\x54\x56\x6b\xfc\x34\x1f\x7e\xa5\xf0\x57\xcc\x1e\x47\xf4\x81\xcd\x8a\x9e\x06\x93\xf1\xc8\x38\x11\x7d\xbf\xd4\x4b\x14\x5b\x34\x83\x31\x10\xc0\xdd\x98\x7c\xca\x61\x92\xc2\x8c\xc6\xf0\x23\x2e\x45\x49\x69\x55\x43\x44\x54\xa8\x64\x7c\x4b\x44\x26\x13\xb6\x95\xd1\x5b\x0d\xcb\x1a\x1d\xe4\x10\x5f\x09\x31\x2c\x59\x21\x06\x6d\x99\x86\x32\x39\x2e\x8a\x01\xae\x20\x70\xca\x7b\x52\xc9\xb4\xe6\x7e\x08\x07\x5b\x1a\x15\x9e\x86\x20\x7d\x29\x99\x8c\x70\x3d\xac\x2c\x48\x52\x3c\x34\xc4\x9f\xd3\x40\x8f\x33\x40\x1a\xc6\xc7\xa2\xa5\xcb\xb7\x2d\x30\x71\x17\xde\x70\x25\x95\x79\x94\xb5\xb8\x4d\x02\xd5\x5f\x90\xd8\x5a\x4d\x92\x85\x05\xee\x27\x5d\x80\x09\x44\x9b\xf0\xbe\x8a\x59\xee\x12\xf7\x8b\xe5\xa3\x2a\xd7\x2b\x9a\x90\x0f\xb0\x5e\xb9\x1a\x8e\x2e\x04\xde\xdc\xdd\x5a\xf8\xf8\xdb\xcf\xb5\x47\x45\xdc\x03\x64\x00\xfb\x85\x61\x87\x7c\xa2\x8a\xf0\xbd\x34\x8c\x57\x4c\xda\x2a\x2d\x27\x36\xc3\x0d\x60\x62\xf9\x44\x79\xd5\xdc\x50\xfa\x56\x1a\x78\xb4\x70\x21\x52\xcf\xc7\x0d\xba\x4d\x47\xda\xa9\xe9\x27\xe9\x08\x49\x39\xee\xe3\xe7\xf0\xfb\x42\xfc\x5e\x7e\x01\x12\xf4\x9b\xde\xd3\xf6\xd5\x84\x71\x6e\xd2\x71\x0a\xb6\xee\x72\xd1\xb1\xdf\x21\xc3\x2f\x3e\x48\x32\xdf\x15\x9f\x45\xeb\x2c\xcf\x6f\x79\xa7\x7c\xa2\xbe\xd4\x1f\xa4\x61\x50\x44\x79\x91\x96\x8b\xa9\x7c\x98\x48\x8f\xdf\xc7\x8e\xe5\x93\x06\x8a\xf6\xa5\x76\x14\xe6\x82\x6d\x40\x66\xcf\x5d\x36\x3e\x51\x35\x1d\xa2\x6b\x01\x23\xab\xc8\xa7\x94\xd7\xcf\xc7\x96\x35\xbb\x9f\xa4\x86\x3e\xca\x68\x58\x6c\x24\x8c\x1c\x09\x4e\x4e\xa5\xf9\xef\x36\xa1\x0c\x09\xed\xed\x20\x2e\x22\x30\xa4\x86\x99\x9d\x70\x50\x96\xa4\x86\xf7\xaf\x74\x46\xcb\x9f\x92\x96\xe9\x53\x7a\xce\x00\x2a\x77\xd9\x14\x6d\x21\x3d\x92\x0a\x74\x05\x48\x51\xc4\x5d\x29\x43\xf4\x52\x10\xe6\xd4\x44\x9e\x52\x12\x94\x0f\xb4\x9e\xca\x44\x3b\xc5\x4f\xa8\x3a\x58\xfe\x58\xcb\x52\xa8\xfc\x0d\x5e\x07\x22\xf3\xd7\xf1\x14\x10\x51\xff\x8c\xac\x34\x56\x0b\x4f\xcc\xda\x81\xbf\xf2\x09\x28\x15\xe8\x23\x96\xa7\x5c\x8d\x94\x5d\x27\x67\x2f\xb1\x93\xe6\x7c\x40\x71\x0b\xde\x64\x77\x47\x95\x90\x2e\x4d\xaa\x4f\xe1\x9f\x1d\xb1\xf5\xbf\x26\xb5\xb0\x9c\x18\xf1\x97\x67\xed\xa5\xb4\x2c\x9b\x38\x63\xfc\x11\x76\xdc\xaa\xb7\x4e\x96\x48\x41\x1b\xa9\x9b\xbd\x60\xba\x61\xfc\xc9\xb7\x2b\x65\x1f\x37\x09\x3a\x36\x41\xe8\x47\x39\x72\x65\xc0\xf7\x66\xdc\xa0\xce\x45\xee\xbe\xa8\xe4\xf4\x79\x8b\x5c\xd5\x06\xd6\x14\xe3\x96\xd2\x3f\x79\x0f\x0f\x91\x4f\x6a\x01\xcf\xc2\x42\x7b\x60\x46\x9c\x04\x20\x8e\x7b\x8d\x38\x02\xf8\xb8\xb6\x5c\x17\x16\xda\xe3\xe1\x7a\x06\x54\x8a\xaa\xb5\x9d\x55\xf9\xff\x59\x35\x02\x2c\x82\x6f\x74\xf1\x95\xc1\x24\xa9\x15\xec\x7c\x80\x47\x0f\x33\x09\x15\xed\x3d\x61\x98\x2b\x9f\x9f\x20\xcd\x1d\x92\x68\x64\xfc\x38\xdb\x4f\x0f\xda\xaa\xa3\x58\xc8\x1e\x7a\x33\x88\x3a\x77\x77\x14\xf2\x7f\xb3\xa2\x03\xa3\xc0\xea\xe8\xec\x23\x62\x98\x41\xe4\x6e\x15\x11\xe6\x8f\xb2\x91\xd8\x9a\x38\x0e\x85\x73\x30\xdf\xfc\xa1\x9a\xf9\x9e\x9b\x6f\xaf\x1b\x3f\x65\x7e\x4d\xe4\x40\x3f\xe3\xf5\x2a\xc4\xe4\xf4\x2c\x00\x54\xb8\x8a\xba\x49\xee\x0f\xa4\x9d\xf3\x4f\x4a\x87\x27\x75\x9e\x72\xcd\x22\x3a\x7b\x9d\xe8\xce\x84\x60\xb2\xbc\x1c\x14\x33\xae\xa3\x80\x64\x09\xef\x94\x12\x09\x0d\x6d\x89\x9e\x34\xbd\x0c\x69\x5a\xa9\x38\xe5\x7d\xdc\x8e\xed\x10\x7e\xf9\x8b\xdc\x98\xf8\x0e\x82\x73\x61\xad\xa2\x99\x33\x56\x34\x02\xd7\x05\x82\xd0\xab\x44\x6a\x2c\x6a\xa4\x8a\xed\xe7\x55\x4f\x89\x4d\x5d\x83\x37\xe4\xb1\x63\x78\x64\xdb\x4d\x9b\x9b\xe7\xe2\xc3\x8f\x88\x02\x00\x3b\xf9\x9b\x94\xea\x22\x1d\x78\x38\x51\xd4\xb3\xdf\xa5\xf7\x62\x87\x9f\x6c\x9b\xfe\x75\x8a\xf0\x64\x92\xb1\x4c\xb4\xb0\x3c\xae\x72\xce\xc0\xca\x1f\xa8\x3e\xc1\xa4\x03\x3f\x8e\x68\xe0\x3c\x62\x06\x91\xc8\xd5\x5c\x83\xd7\x11\xbe\xc1\x76\x9d\x23\xd2\x63\x69\x88\x36\x54\x61\x2c\xc1\x45\x18\xb4\x5c\xa9\x0a\x18\x34\x3e\x6e\xec\x3b\xa5\x26\x30\x04\x3a\x79\x76\xd6\x0a\x40\x29\x48\xf7\x05\x05\xef\x27\x2e\xff\xac\xe5\xf0\x63\x0f\xe9\x61\xf1\x71\x53\xe9\x22\xf2\xd7\x93\xbe\xa8\xac\x89\x6c\x91\x5b\xf8\x97\x14\x49\xe1\x8b\x45\x1a\x66\xbd\x90\x64\x3a\x5a\xca\x1a\x9f\x82\xfd\xe1\x13\xa5\xa4\x64\x5e\xf2\x47\xe8\xe3\xb8\xc1\x84\x4d\xdd\x31\xdb\x54\x29\x7b\x37\x19\x75\x4d\xfa\xf1\xe4\x87\x2e\xd3\x38\x72\x70\xcc\x01\xa6\x15\x5d\x2e\xd7\x93\xcc\xbe\x37\x95\xd0\xfa\x61\x6a\xba\x7e\x14\x65\xaa\x70\x5a\x85\x5d\x37\x88\x48\x1d\x69\xf7\xc2\x6c\x1c\xf9\xeb\x92\x69\xc3\xfc\x9f\xc2\x1d\xf0\x89\xa7\xd9\xaa\xb2\x2c\x8c\xa6\xdd\xf0\xca\xbb\x74\x03\xb6\x0e\x5f\x3e\x24\x58\xec\x9b\x13\x55\x6c\xbf\xd9\x04\xdc\xcc\x72\xe3\x47\x96\x65\x04\xd6\xf1\x3e\xbd\x17\xc1\x8c\xb7\x2c\x83\xfb\x59\x35\x50\x98\x25\x23\x53\xa6\x86\x9f\x85\xd9\x87\xc3\xf9\x00\xa1\x1f\x9f\xd4\xac\xf8\xa1\xc5\xf6\x5a\x98\x05\x49\x9c\x85\x80\x2f\xda\x68\xb4\x7c\xac\x02\xd4\x70\x76\xb6\x1f\xf9\x6b\xd9\x54\xb9\xd7\x38\xa1\xc1\x26\x44\x7a\xbf\xe5\x39\x69\x92\x4b\x8a\x82\x6d\xc5\x02\xba\x60\x84\x98\x8f\x89\x4f\x36\xf6\xab\xd1\xc2\x29\x35\x9e\x87\xb6\x93\x68\x49\x94\xc6\x0d\x36\x68\x4b\xc1\x20\x32\x7f\x0d\x95\x37\x9e\xfd\xa8\xcc\x81\x7c\x5a\x35\x08\xe2\xc0\xc4\x79\xea\xbb\x8e\x82\x8c\xe6\x39\x50\xe0\x09\x15\x34\x65\x3e\x35\xa7\x73\xa6\x7e\xc5\xfa\x7a\x45\x75\xe7\x5e\x51\x22\xe5\xe3\x34\x19\x9b\x08\x75\x36\x81\x7e\x2b\x06\x97\x4d\x55\x58\x1a\x25\x71\x98\x27\xe9\x74\x69\xde\x14\x98\x62\xd1\x51\xd4\xdb\x1e\x0f\x17\xa1\xf9\x1f\x6c\x63\x3b\x19\x97\x99\x88\x14\x1c\x2d\xb5\xa8\xa5\xf9\x68\x1c\x5f\x49\xba\x54\xa8\xcf\x13\x45\x1f\xf8\x06\xe5\xdb\x7c\xac\xf0\x2d\xdd\x22\x4d\x93\x62\x30\x84\x29\x91\x08\xae\x7c\xb3\x7c\xac\x72\xc3\x62\x3c\x4c\x22\xb4\x01\x91\xba\x6d\xd1\x95\xf0\xb1\xad\xbe\xf4\xfd\x30\x2d\xf7\xb7\x8b\x02\x41\x26\x24\xb5\x5a\xd7\x3b\x5f\xf3\x57\x0c\x35\x42\x60\xe3\xa1\x8c\xcc\xc7\x4d\x7b\xc5\x8f\xc2\xcc\x4f\x7b\x7e\xab\x62\x06\x5a\x8a\x02\xa3\xc1\xee\xad\xad\x27\x8e\x54\x1d\xfb\xeb\x2e\x16\x3c\x9f\x68\xd3\x14\x19\x3f\x00\x83\x20\x62\x06\x2d\x61\x76\x77\xf2\x28\x7f\x7b\xfb\xd0\xe2\x2f\xc1\xa3\x60\xfc\x89\x6b\x60\x48\x51\x7f\x06\xa7\x2b\x5b\xbe\x7c\x94\xd2\x9d\x50\x5a\x5a\x4f\x75\x5c\x28\xf7\x2f\x0f\x6c\xb8\xee\x15\xb0\xc4\x52\x04\x26\x87\x04\x44\xf9\x23\x1b\x0a\xc1\xfd\x08\x4d\x86\xb1\xc2\x1c\xea\xe7\x48\x4c\xdf\xf2\x14\xf7\xee\x1e\x64\xc4\x68\x85\xce\x10\x25\x3e\x0b\x43\x4f\x9c\x2b\xe2\xc2\x01\x76\xff\x27\x3b\xa5\x01\xc7\x57\xed\xdb\x20\x87\x6f\x9b\x83\x5f\xf8\x1d\x21\x68\xc7\x5a\x45\x3f\xf2\xd3\x98\x4b\x47\x43\xf2\x12\x3b\x4d\x7c\xc1\x19\xcf\xf1\xf9\xdf\xa6\x24\x9e\x29\xf5\x29\x0d\xc4\xc3\xba\x4b\xbe\x5f\xbb\x6c\x99\xa4\xa1\x68\xc1\xca\xc6\x3a\xda\xe1\x3d\x1b\xbb\x7f\x99\xab\x21\xf7\x28\x58\x60\xb5\x1e\xd4\x67\x10\xf7\x4d\x6d\x68\x5a\xe7\x48\x7a\x0e\xe5\x55\x0b\x58\x9c\x1e\x26\x7e\x0b\xd8\x6a\xa9\xe6\xab\x5a\xc8\x38\xc9\x73\x2e\xd7\xb1\x91\xc2\x9d\x8b\xc5\xfa\xa4\x03\x3c\x8c\x19\x21\xc9\x6a\x64\x08\x7c\x44\x9a\xec\x80\xfd\xdc\x68\x5c\xe4\x26\xe5\xf6\x87\xf0\x54\xa8\x9e\xe7\xae\x8d\x0a\xab\x80\x22\xbb\x5e\x31\x69\x0a\xa3\x83\x18\xfd\x86\x6a\x26\xdc\x68\xb2\xf4\x45\x1c\x98\x34\xf7\xd9\xd2\x33\xb1\x07\xfd\x91\x90\x7c\x38\x47\x1b\x99\x68\x0f\x7d\x37\x4c\xfb\x07\xe4\x73\x10\x3b\x6d\xef\x60\x79\xb6\xba\xc8\x98\x4a\xc3\x72\xdc\xd5\x71\xf0\xfa\xed\x1a\x1a\x81\x84\x61\x0f\x8a\x28\x2c\x9e\xf3\xdf\x61\x0b\xf2\x89\xea\x63\xe4\xc3\xf5\xcc\x44\xfd\x29\xc5\xe1\xf0\x21\xfd\x2a\x6a\x2a\xac\xd0\x84\x98\x7c\xd7\x86\x6b\x96\xe6\xa9\x41\x15\xa1\x69\x16\xa3\xa1\x3f\xe7\xf7\x7a\x92\xbc\xcb\x43\x74\x20\xf0\xe9\x8e\x22\x81\xb9\xa5\xea\x42\x5d\xd3\xf7\xa3\xc8\x00\x62\x6d\x1b\x21\xe5\x93\x93\x46\x88\x33\xad\x7d\xd3\x33\x29\xca\x6e\x8e\x47\x87\xec\x81\x00\x3a\x9d\xd3\x0c\x86\x86\x0a\xa5\xd8\x53\x8f\x76\x94\xa2\x29\x0a\x10\x42\x99\xd9\xd2\xd2\x60\xf3\x47\xb7\x4f\x29\x73\x9a\xe5\x66\xbc\x87\x2c\x86\x08\x95\xb8\xf0\x70\x5f\xc7\xa9\xff\x72\x3c\x24\x91\xa8\x1b\xee\x42\x36\x07\x10\xee\xee\x0d\xd5\xd2\x09\xf3\xb8\xcc\xcc\xe8\x9d\x48\xa9\x5e\x21\xc5\x36\x15\x93\x70\x6a\xbe\x52\x84\x28\x9e\x29\x71\xa0\x87\xf4\x3a\xf8\xd8\xa2\x6d\xcc\x4b\x26\x28\x54\x3f\x10\xe1\xf5\x54\x47\xb1\xdb\xdf\x43\x34\x85\x37\x71\x5e\x39\x2e\x25\xfd\xb3\x2c\xf4\xe4\x37\x54\x1c\x59\xe7\x5e\x2d\xc3\xc3\x71\x92\xf4\x15\xa6\xf6\x1a\x8a\x72\xc8\xf0\xf1\xa0\x65\x66\x7d\xe7\x5f\x2f\x1d\x3e\xd2\x8e\x8c\x0f\xf7\x27\xed\x37\xd7\xbd\x7a\xcd\x65\xf4\xc3\x64\x2d\x4d\x12\xc9\xae\x85\xc6\xdc\x81\x03\x36\x9b\x64\xea\x52\xbf\xe7\x63\xe8\x88\x6d\x61\x85\x94\xa5\xe1\x0f\xfc\x28\xe9\x83\x7f\x19\xef\xf1\xa6\xca\x2e\x6e\x36\xa2\x37\xba\x66\x10\x32\xbe\x06\x51\x1b\x88\x3f\x98\xa1\x8d\xf6\x98\x68\xf4\x2b\x0e\x60\x3f\xe2\x7b\xb6\x33\xba\xd6\xa6\x9f\x6a\xe4\x5e\x34\xa3\xae\x9f\x65\x0c\x47\x80\x8b\x3d\xa9\xaa\x04\x27\x6b\x99\xff\xe2\x62\x9b\x93\x07\x7a\x60\xdc\x70\xc0\xfa\x92\xee\x83\xab\x02\xf6\x92\xb5\x78\xec\xaf\x3b\xaa\x6a\x58\x23\x10\x7b\xf3\x71\x47\x57\x46\x92\xc8\x6f\x29\xf9\x9f\x63\x70\x90\x7c\xd2\x44\xa4\x5f\x06\x78\x89\x85\xb6\x2a\x6d\x9b\x79\x3b\x16\xb2\xdf\x1a\xf4\xc0\xa7\x8b\x00\xea\x66\x8b\xee\x93\x8f\x2b\xf5\xef\x20\x5e\x6b\x29\x5b\xf3\x0e\xbe\x4e\x3a\x68\x4d\x33\x9e\xfd\x34\x0c\x58\xe4\x14\xac\x23\xc7\x60\x31\xf9\xa4\xf6\x14\xe7\xe6\xda\x43\x3f\x8d\xcc\x88\xe1\xd4\x88\xca\x18\x76\xc1\x27\x0a\x89\xe2\xf7\x7a\xb4\x47\xfd\x08\x89\x07\xea\x81\xc0\x1a\xa0\x5e\x80\x79\x76\x40\xcf\xee\x36\x59\xd0\xd4\xf8\x3d\xd8\x36\x96\x30\xf5\x14\xdf\xe3\x15\x15\x5e\xbb\x59\xdc\x56\x65\xca\xb6\x32\x8b\xeb\xa6\x9f\xd6\xc2\x38\x36\xf9\x0a\xa2\xbc\x6d\x22\x72\xd8\xbe\xaa\x70\x8d\x14\xde\xf7\x0c\x31\x9b\xa2\x98\xf7\xf3\x89\x9b\x43\x06\xe3\x1e\xea\xfe\x50\x04\x6a\x9a\xa0\xdb\xe9\x2f\x5f\x78\x81\x4a\xdd\x41\x61\x2b\xba\x32\xfa\x5c\xde\x1f\xc2\xe6\xeb\x3a\x1d\x3c\xd7\x48\x57\x30\x28\xd6\x33\xdd\x76\xdc\x44\x3e\xc6\x27\x55\xda\x98\x30\x9a\xc1\x9b\x92\xc1\x84\x72\x63\xd9\x5f\xb5\x1b\xee\x87\x9e\x1b\xeb\x64\x76\x56\x31\xba\x4d\x74\x82\x26\xce\x4d\x1a\x26\x50\x39\x83\x37\x61\xfc\x3e\x9f\x34\x94\xf9\xdb\xdd\xa8\x88\x2d\x4a\x0d\x53\xc8\xdc\xe1\xe2\x93\x0a\x0e\x2e\xf5\xd7\xa7\x1c\xd5\x01\xf8\xa9\x84\x34\x91\x7e\x49\xcc\x69\xc3\xb2\x8e\x8c\xbf\x6a\x83\x71\xcd\x45\x29\xbd\x99\x9d\xad\xd6\x43\x8b\xed\x91\x1f\x17\x7d\x3f\xc8\x0b\xdb\x08\xc7\xbe\x79\xa8\x46\xe1\x1f\xaa\xe9\xb9\x30\x8a\xc2\x38\x09\xd9\x5d\xa1\x78\x75\x59\xf3\x1b\x5e\x56\xd3\x37\x5d\x63\xfa\xf8\x52\x6c\x2c\x78\x58\x3e\x6e\x1a\x5a\x1a\x25\xbd\xb0\x1f\xca\x95\xb0\xf6\xba\x1a\x42\x7f\x47\x8d\x80\x97\xfe\x22\x8c\x07\x7b\x5c\x0b\xf4\x2e\xf6\x88\xf5\xc3\xe5\x77\x48\xde\xed\xb2\xba\xbb\x70\x7a\x88\xa2\x4f\xc0\x60\xf1\x89\x06\xb0\xe4\x7e\xe4\x26\x6b\x59\x11\x41\xd1\x0f\x5d\xa8\x01\x84\x2c\x2d\x70\x34\x4a\xb2\x7c\xc6\x45\xdb\x88\xeb\x2c\x67\xb4\x83\x2b\x6c\xd1\xce\x42\x6c\xfa\x78\x47\x0d\x30\xd5\x5e\xee\xc2\x42\x7b\x25\x4e\x02\xa6\x96\x9f\x77\xf5\xab\x45\xa7\x66\xde\xd0\x9b\x69\x07\xa9\xf1\x73\x41\x4a\x59\x61\x11\xd7\x85\xbe\x52\x5b\xe6\x73\x73\x6d\xb3\x6a\xd2\xf5\x6e\xd2\x63\xe8\xa6\x34\x65\x9d\x6b\x3e\xee\x7d\xaa\x52\x0e\x48\x58\x72\x96\x92\x0a\x5e\x9f\x9e\x2b\xee\x5f\xb1\xcd\xa8\x2c\xe1\x96\x35\x6d\xd9\xff\xe1\x33\x1d\x45\xa4\xf4\x50\x41\x68\xa7\x49\xe3\x1e\xf1\xe9\xcf\xf0\xc4\xd0\xe8\xbd\xdb\x48\xe1\x6c\x19\x25\xb0\xf2\x19\xf3\x41\x57\x20\xf8\x8f\x06\xe4\x9b\x79\xc9\x67\x2d\x62\x58\xc9\x07\xaa\x2d\xfc\xa0\xe6\xba\x16\x16\xda\xc1\xd0\x04\x2b\xa2\x3f\x28\xd2\x51\x6e\x64\x53\xb7\xe7\xfb\x58\x3c\x14\x0c\x61\x5b\x7c\x7b\xe2\x20\xcf\x2d\xba\x3d\x78\xdf\xa9\x26\x09\x7f\xf3\x52\x60\xd2\x71\xce\xd6\x4e\xc8\x66\xca\x3f\x12\x16\x1a\x97\xba\x8c\x13\x56\x2f\xaa\x10\x42\x48\x39\xae\xa2\x5a\x1d\xc6\x6a\xce\xe5\xb8\x9e\x73\x39\xae\x95\x22\xa3\x68\x8f\x03\xb2\x3f\x50\x15\x60\xe6\x80\x84\x51\x98\x86\x5c\x86\xc5\x37\x5a\x5e\x15\x86\xc0\x62\x9b\x3c\x50\x41\xe5\x9a\x9f\x9b\x74\x20\x94\x80\xb0\xb3\x67\x55\x15\xfa\x6c\xed\xe5\xce\xcd\x11\xdc\x3d\x33\x0e\x16\xc6\x08\x5c\xcf\xc5\x02\x97\x6c\xc4\x3b\x2e\xd2\x60\xe8\x67\xcc\x0d\xfc\x0c\xd7\xd5\xee\x2a\xfe\x49\x44\xca\x32\x20\xab\x46\x6c\x4f\x59\xd0\x76\x19\x61\xa5\x83\x64\xca\x69\xcb\xa2\x78\xc6\x94\x93\x14\xa1\xa1\x88\xfd\x67\x8e\x46\x3b\x19\x8f\xa3\x2a\x8d\xf6\x49\x3c\x2b\x11\x3b\xb0\xe5\x9b\x68\xdd\x5e\x1e\xd2\x50\xf0\x54\x22\xd3\x7b\x6c\x43\x15\x47\x26\x4a\x4a\xeb\xfb\xb5\xba\xaa\x95\xaf\x4a\x8b\x41\xd6\xaa\x70\xf3\xd0\xdf\x09\x03\xc1\x13\x6e\x88\x23\x09\xe3\xdc\x88\x31\x80\x6f\xe7\x79\x50\x3e\x69\x18\x33\x6e\x47\xa5\x35\xf0\x07\x3c\x65\x8b\x1a\x3f\x70\x35\x7c\xac\xc8\x78\x7a\xa6\x4f\x03\x04\x2d\x4b\x4a\xc3\x1d\x46\x3e\xb1\xcf\x6b\xe4\xc7\xfd\x54\xc4\xc2\x44\x7d\x88\x9e\x97\xc8\xf7\xd5\xcb\xc8\x4b\x47\xda\x59\xd1\xcd\xc3\x28\xc4\x0f\xc0\xe3\x72\xaf\x87\x4f\xb4\x32\x4a\xee\x0f\xcc\x1e\xba\x55\xe1\xaf\x41\x40\x80\x05\xff\x0d\xd5\xa7\x3d\x8b\x1c\x13\x1e\xe6\x34\xda\x3d\xfc\x29\x35\x63\xb7\xab\xe3\xaa\x1e\x34\x0c\x0c\x18\xa8\xf2\x67\xe5\x37\x8a\x9f\x53\x1c\x6f\xd9\xfa\xde\x72\x8d\xdb\x36\x99\x8e\xdc\x15\x4d\xea\xa6\x06\xbf\xbd\xab\x94\xac\xde\x40\x03\xc9\x4e\xa2\x0a\x3b\xfb\x3f\x7d\xa2\xa3\xd0\xcc\x49\xda\x9b\x6e\x7d\xf6\xb3\x02\x3b\xf3\x1c\x6a\xea\x24\xc2\x24\xc1\xa3\xb9\xfb\xd6\xd3\x16\x03\x13\x87\xd2\xf8\x17\x0c\x0b\xfd\xac\x5c\x76\x83\x54\x72\x90\xc4\xb9\x89\x73\x9a\xe7\xa0\x1b\xb1\x33\xde\x6e\xde\xdb\x92\x12\xa5\x26\x1b\x16\xfd\xbe\xdb\xc8\x28\x2a\xde\x57\x05\xc6\xfb\x4d\x70\xf7\xf5\xa4\x50\xd4\x5a\xe8\x8f\xdd\x56\xa6\x1d\xb8\x7a\x38\xd7\x13\x0a\xa9\x9a\x26\x49\x3f\x9b\xa2\x5b\xb0\x35\x36\xab\x73\x71\xd7\x73\xc0\xf5\x73\x6a\x17\x17\x69\x98\x8d\x54\x81\xf2\xac\x62\xc4\x3c\xeb\xb9\x9e\xfc\xcb\xe1\x18\xa0\x48\x5b\xb9\x77\xaa\x2a\xa7\x95\x66\xfa\x9f\x6a\x5a\xa3\x3f\x6d\xe0\x4b\x6f\x87\x71\xe9\xa2\x99\x86\x8b\x45\x13\xe8\x0b\x44\x40\xa1\xa2\x14\x62\x52\x21\x6a\xb1\x2d\x39\x2b\x90\xf3\xba\x2d\x6b\xf7\xc2\x6c\xe4\xaf\x9b\xde\x0c\x99\x23\xa0\x03\xd0\x91\x85\xe1\x9b\xa1\x50\x43\x78\xef\x94\x38\x06\x5b\x03\x61\x16\xb4\x36\x2b\xf5\x03\x9f\x5f\x31\xc2\xe9\x0f\xe8\xb9\xf0\xb1\xd6\xcd\x0c\x07\x6a\x10\x91\x99\xb8\xf8\x44\x4d\x75\x8d\xfd\x2c\xdf\x8b\x7a\x95\xd2\x96\x7b\x46\x40\x6a\x8a\xc5\x10\x2f\x00\xb1\x0a\xe8\x4d\x51\xb3\x9c\xda\x50\x8d\xd0\x2d\x18\x19\xa1\x1d\x79\x5a\x37\x13\xfa\x26\xcb\x28\x11\x6b\x55\xdc\xa2\xf6\x97\x0d\xa6\x86\x40\xbc\x61\xcf\xd6\x12\xad\xda\x54\xf9\xce\x51\x8c\xdd\x62\x90\xba\x94\x8b\x1e\xb7\x06\x3e\x8c\x41\x79\x63\x49\x66\xce\xe0\xee\xd0\x12\xbd\x47\xbf\x2d\x13\xe1\xaa\xf6\x95\x14\x71\x8f\xc6\x65\xca\x25\x8b\x98\x10\x44\x58\x7c\x5c\x1b\x61\xfa\x5c\xbb\x1f\x46\x8c\x88\xc0\xfb\xc3\xd0\xd9\x36\x46\x67\x50\x32\x3b\xad\x22\x85\x72\xb3\xc2\xf8\xb3\xca\x8d\xa7\xe4\x46\x2e\xd6\xc2\xc7\xcf\xb5\xb3\xb5\x70\x34\xb2\xdd\x33\x99\xbc\x72\xd1\x0f\xbc\xa9\x14\x2f\x9f\xa8\xf2\xe5\xff\x57\xed\x83\xe0\x15\x64\xc2\x00\x15\x5d\x5d\xd5\x5c\xf0\x08\xa1\xe0\x21\xce\x4d\x54\x37\xeb\x8a\x1a\xdc\xbb\x52\x85\x63\x64\xc3\xbd\x4a\xb9\xe7\x5d\xac\x61\x3b\x65\xbf\xb0\xc0\x4e\x7d\x03\x2f\x4c\x90\x0b\xea\x6e\xef\x7a\x4a\x11\xec\x8a\x32\xb6\x5b\xcd\xc9\x6b\xee\x87\x11\xad\x86\xf2\xfb\x10\x76\x08\x46\x06\xdf\xbe\xa1\x87\x5b\x2f\xa3\x14\xa0\xbe\xe4\xf3\x34\x6c\x66\xcb\xe9\x8f\xa8\xc1\xa9\xbb\x94\x52\x0b\xa6\x58\x96\xd1\x6a\x98\x85\x79\x92\x0a\x0d\x95\x98\x2d\xba\x05\x18\xbb\x1f\x78\x6a\x28\x4a\xf3\x02\x9b\x97\x92\x3c\x0c\x5a\x6a\xd2\xea\x9c\x1a\xeb\x3c\xd7\xa0\x50\xb1\xd8\x1e\x25\x44\x6a\x6d\xa9\x84\xd1\x17\x95\xb9\x3b\x4d\x18\x20\x5e\xdb\x02\x1d\x2d\xa7\xc1\x66\x6d\x34\x75\x79\xb6\xed\x07\x41\x32\x1a\x25\x3d\xdf\x11\x62\xa1\x0b\x07\xbc\x1f\x1f\xab\xac\xae\x57\x5a\x39\x89\x7c\xad\x27\x52\xbf\xa8\x59\xf8\xd2\x70\xb5\x8c\x67\x9e\x9b\x3f\x6a\xcb\x1e\xe5\xc3\x94\xaa\x47\x13\xe5\x60\xe0\x17\x34\xe0\xbe\xb0\xc0\xd9\xc9\x3d\x3d\xec\xf7\x91\xa2\xe9\x7a\xcb\x1a\xc0\x6c\xe8\x77\xbb\xf0\xf5\x76\x88\xd2\x2a\x8b\xd6\xd9\xea\x17\x17\xdb\x3d\xb3\x6a\xa2\x64\x6c\x78\x3e\x54\xf5\xae\xe5\x3d\x5c\x9d\xec\x00\xc4\x4b\xed\xe3\x6a\x0d\xf1\xf2\xf9\x76\x5e\xe6\x2a\x89\xd2\x3d\xbf\xa4\xc1\xe7\x97\xbc\xc7\x34\x23\x54\x60\x88\x05\x57\x64\x9b\xb1\x80\xd0\xb2\xba\x35\x51\xd8\x72\x2e\xad\xf3\xe7\x26\x0e\xe3\xcb\xcf\x1b\xf1\x1d\x78\x8d\xf9\x1f\xd4\xc4\xec\xbf\x86\xb6\x37\x16\xe6\x35\x2c\x4c\x51\x10\x77\x4d\x1e\xd3\xef\x9b\x20\x7f\xb4\x65\xe9\x94\xff\x0a\x4d\x6e\x8b\xfe\x5b\x58\x60\x95\x7f\xf0\xd5\x0a\x12\xd0\x89\xea\xdd\x73\xf8\xdf\xe9\x2d\xea\x48\x09\xcf\x9e\xd2\x26\xfd\x0e\xf5\xb9\xa4\x20\xe3\x66\x3b\x6e\x37\x8e\xbf\xfb\xd1\x9a\x13\x09\x13\xfe\x59\xba\x65\x3e\xf1\x9e\x54\x0c\x2d\xa3\xb1\x1f\x0e\x62\x96\x42\x15\xde\x07\x7a\x5f\x4e\x9b\xc9\x51\x5b\x64\x79\x98\x17\xb9\xd9\x4f\x77\x69\x91\x29\x0b\x0b\x0c\xeb\x38\x47\x77\x29\xbd\x01\x65\x32\xce\x7b\x9a\xb9\x98\x7e\x4b\xe2\x1b\x7a\x4b\xfc\x2f\xfa\x39\xff\xbd\x12\x79\xbb\xef\x29\x05\xbf\x8d\x0a\x23\xab\xda\x2f\xc9\xd8\xc4\x11\x8d\x73\x2c\x72\xae\x76\xcd\x73\x8c\x0e\xb7\x70\x57\xfc\x0f\x74\xa1\xfc\x0f\x0d\x81\xcb\x7c\x3b\x1b\xda\x7a\x84\xf8\x03\xc8\x95\xf0\xb1\xd7\xae\xe3\xfa\xcb\xd0\xa4\x34\x04\x45\x98\x0d\x05\x07\x8d\xdf\x3b\xab\x7f\xfc\x6c\x6d\x0b\x3c\x3b\xfb\xbc\xe3\x9c\x13\x87\xa5\xf4\xda\x6a\x05\xdb\xf2\xc7\x32\x13\xbe\x8c\xc0\x0a\x0f\x9f\x99\x41\xf8\xe4\x63\xa7\xfd\x89\x87\x35\x45\xe8\x28\x74\x47\x6a\x3a\x8d\x07\x2f\x44\xb2\xb5\xf6\xc3\x87\xcb\x3c\x25\x95\xa9\x5f\x7c\xec\x2f\xe9\x55\xf1\xb1\xe5\x55\x89\x4d\x26\x86\x0e\xf7\x8d\xb8\x84\x8f\x6b\x66\x65\xfe\xa8\x8d\x16\xf9\xa9\xa3\x6a\x05\x40\x23\x1f\x5b\xd5\x34\x7f\x14\x42\x9e\x4a\x1c\x28\xdd\xbb\x0d\x48\x96\xec\xbf\xfc\x94\x9e\x23\xac\x00\x86\xdd\x11\xb0\x4d\xd5\x48\x66\x69\x30\x63\x8d\xe4\x83\xad\x73\xe0\xe1\x37\x49\x94\xeb\xef\xed\x99\x76\x9c\x30\x02\x59\x9a\x74\x5a\xec\xa2\x31\xfa\xca\x72\xbf\x8c\x85\xac\x12\x11\x12\x38\xd8\x66\x5c\xdc\x19\xad\x72\x72\xb3\x89\x84\x31\xf2\x57\x4d\xdc\x13\xa4\x04\xb6\x0f\x34\xba\xf8\xb8\x3e\xb7\x39\x4b\x08\x85\x95\x69\x37\x5d\xfa\xb7\xb4\xa0\xb1\xc5\xee\xd2\x0e\x45\x5a\x73\x5c\x29\x0c\x5d\x6e\x08\xcc\xba\x49\x3e\xdc\xe3\x3a\x46\x17\x88\x38\x09\x01\xd9\x0d\xd8\x4d\xf4\x4e\xa1\xc5\x6b\x29\x0e\xe7\x8f\xb2\x45\x7f\x5b\x8f\xf3\x6a\xad\x16\x96\x17\x8f\x07\x8f\xb8\xf9\x9d\x3f\x99\xa8\x2c\x97\x2d\x44\x85\x5b\x06\x21\xea\xdf\x78\x3b\xc3\x6a\xc1\xf6\x90\xad\xe2\xef\x52\xf3\xfe\xdf\xb7\x54\xdb\x59\xee\xa3\xf0\x45\xde\x43\x0f\x97\x09\x40\xb4\xae\x42\xd6\x4e\x56\x4d\x4a\xfc\x8f\x66\x5a\xa9\xb7\x9e\xd7\xea\xc5\xdf\x98\xb8\xc6\xf6\x03\x25\x93\x59\x2f\x65\xce\x1f\x6d\x17\x65\xea\xcf\x83\x97\x15\x85\x42\x3e\x51\xcc\x07\x59\x9e\xc4\x66\xe4\x13\xaf\x92\x0a\x63\xd4\x4a\x6d\x90\xd1\x3d\x7c\xa4\x3d\x48\x8d\x59\x41\x78\x03\x18\x3d\x6a\x92\x7c\x6c\x1f\x47\x6e\x22\x13\xf8\x92\x92\xa2\x9f\x73\x45\x65\x8a\x5c\x81\xc1\xb2\x39\xfe\x31\x99\x73\x56\x44\xb9\x1f\xcb\xfe\x17\x35\x96\x96\xe2\xcf\x69\x28\x59\x76\xc1\x3a\x6c\xe7\x4c\x2e\x2a\x00\xcd\x45\x05\x5f\x73\xe2\xf5\x74\x89\xa8\x21\x9d\xd6\x18\x8e\xd3\x16\x6c\xbf\x1a\x9a\x35\x93\x66\xc3\x70\x4c\xa6\x12\x05\x98\x1f\x29\xaa\x9c\x1f\xa9\x04\x6f\x64\x5e\x9e\xd2\x91\xd9\x44\xcf\xb9\xa8\x28\xed\xa3\xa6\x5c\xb7\x47\xf8\xf7\xd0\x57\x0c\x25\xe7\x3d\xd7\x5f\x3e\xdf\x48\x24\x17\xbc\x6c\x82\x61\x92\x45\xc9\xaa\xbf\xc2\xe6\x40\x6e\xc7\xe5\xe9\x0f\xf1\xc4\xe1\x79\x6e\xa8\x2a\xbe\x54\x0f\xf4\x10\xc0\xc9\x89\x22\x1b\x3a\xa9\x60\xd5\xe3\xd4\x04\xa6\x87\xea\xa4\xf8\xf6\x8a\x20\xe3\x93\xba\xd2\xe5\x17\x51\x2e\x7c\x89\xc8\x84\x6f\x2b\xc6\xef\xdb\x4d\x36\x29\xf0\x47\xdd\xa4\xc7\x0f\x40\x34\xa3\x15\x93\xcc\x66\x03\x7f\xf1\x12\xd7\xf0\xd9\xe4\x4b\x67\x55\x11\x5e\x1d\xab\x01\xd0\x8f\x1e\x6e\xe7\x43\x3f\x9f\xb2\x9c\xc1\x4f\x1f\x80\xec\x25\xea\x3e\xd3\x1b\xae\x89\xb7\x35\xd1\xd9\xbb\x3f\xa5\xe9\xe1\x26\xae\x75\xc4\x0a\x56\x70\x9d\x5b\x0d\x2f\x77\xa9\x1d\xf9\xc1\x8a\x59\xaf\x20\x60\x41\x13\xc8\xc7\xaa\xed\x1d\xa4\xfe\xcb\x46\xb5\xe3\xd1\x0c\xe5\xe3\x8d\x9d\x5f\x2e\x7e\x79\x6d\x3c\xc6\xde\x94\x86\x68\x79\x7b\xae\x1f\xea\xa6\x9c\xe2\xa4\x00\x35\x93\x8b\xb0\x6f\xea\x4e\xc9\xcd\x1a\x86\xe6\x73\xed\xd5\xb0\x67\x92\x56\x69\xa6\x85\x0a\xcd\xe5\x84\x97\x94\x8e\xff\xc8\x4f\x57\x4c\x6e\xd2\x6c\x46\xcf\xc1\xaa\xfb\x44\x19\x10\xd0\xf1\x63\xf8\x55\xd1\xce\xd3\xc3\x94\xae\x81\x52\x86\x44\xa9\xc9\xb2\x7e\x11\x4d\x55\xc2\x8c\xf2\xf6\x60\xc7\xef\xab\x51\xe3\x73\xb5\xb8\xe0\x73\x34\x10\x34\x48\xfd\x5c\xba\xab\x30\x58\x77\x95\xe2\x23\x83\x6d\x45\x09\x65\xa7\x79\x3d\x7a\xb8\xdd\xf5\xd3\x01\xc1\x99\x2c\x7b\xb5\xae\x9b\xd7\xc5\xa5\x28\x1a\x19\x1a\x4b\xb1\x85\x27\xf1\x23\xba\x7b\x3e\x56\x95\xe1\x20\x0a\x4d\x9c\x67\xfb\x48\x93\xff\x6d\x0d\x0f\x3b\xa9\x46\x05\xb6\xe8\x95\x62\x61\x5e\xd5\xd2\x59\xef\x13\xc7\xac\xb4\x5c\x88\x22\xe3\x6d\xcf\x69\xaa\xfe\x1f\x2a\x6b\xfb\xc0\xe2\x7e\xf2\x61\x31\xea\x4e\x39\x47\x7d\x43\xe1\x29\x59\x2b\x1c\xad\xe3\xb3\x0a\xe5\x33\x48\x93\xb5\x69\xa7\x2a\x77\x01\x45\x50\xe9\x28\x6a\xd4\x88\x1e\x38\x53\x16\x72\xbd\x6b\x1e\x71\xe5\x69\x66\x00\xb6\x28\x10\xab\xac\x89\x39\x4a\x65\x03\x2c\x91\xd1\x44\xad\xd4\x7d\x1b\xba\x73\x58\x2e\x02\xaa\x2f\xcf\xfd\xb2\xa5\xd3\x0d\x86\xc9\x38\xd3\xd2\xf8\x67\x95\x48\xd3\x59\xb5\xb9\xff\xfb\xff\xf6\x37\x5b\x8a\xab\x88\xed\x8e\xe0\x67\x1a\x58\x82\x0d\xa6\xcc\xc2\x4c\x3a\x06\x78\x15\xdf\xd6\x93\xe9\xdf\xae\x99\x9e\x43\xa4\xe0\x35\x9a\x52\xb3\x90\x13\xd7\x34\xbd\xa9\x18\x17\x5b\x9d\x7a\xe8\xd7\xf6\x83\xc0\x8c\x73\x5f\x68\xac\x1a\x5b\x5a\x3b\x49\x2b\x3f\xdf\x4e\x62\x33\x55\x26\x80\xa8\xcc\xdd\x44\x05\x1f\x4e\xe5\x4d\x7a\x1c\x42\x26\xde\x30\xa9\x93\x0a\xd9\xa8\x6e\x14\xcb\xfb\x7e\x42\x19\x7c\x50\x39\x3c\xaa\x48\x3d\xde\xf7\x14\x25\xea\x0f\x14\x9b\x05\x83\x49\x90\x40\xdf\xe3\x0c\x1c\x4f\xe0\x07\x28\xc6\x8b\x2e\x3e\x2d\x22\x21\x14\x76\xad\xfe\x3f\x44\x48\xc7\x9f\x9a\x54\x74\x56\x1a\x3b\x23\x66\x34\x8e\x12\x0b\xb0\x17\xec\xae\xd6\xb2\xab\x99\x0d\x31\xab\x2f\x1e\x0c\x0e\x52\xb1\xd2\xd2\x4f\x6a\x8e\x41\x45\xdf\xf0\x51\x13\xc9\x60\x66\x02\xe9\x3f\xa2\xce\x77\xcc\x73\xb0\xa1\x63\x15\x4c\xc6\xc8\x8f\x3f\xa5\x5e\x24\xe2\x69\xc6\xd5\x72\x2d\x4d\xf0\x9d\x0e\xfb\x7f\x0d\xce\x1a\xe9\xfc\x31\xd5\x2f\xdf\x9e\xa8\x0a\xf0\x25\x32\x96\xb8\xcc\x87\x4a\x3a\xec\x0e\x75\xeb\x6c\x7c\x52\xc6\x42\x28\xf9\x6d\x23\x16\xb2\xac\x44\xe5\x4b\x85\xd5\xbc\xa1\xa4\x88\x2e\x55\x78\xeb\x69\x5c\x07\x3c\x94\xcf\x58\xc1\x90\xd2\x63\x08\x39\x18\x3d\x38\x2b\x95\x36\x37\xcf\x71\xf4\x3b\x95\xa7\x10\x9a\xb5\xfd\xe5\x2f\xd8\xb0\x71\xfe\xa8\x15\x8f\x73\xf3\x6c\x0f\x61\x77\x90\x95\xf1\x98\x0a\x96\x06\x0a\xf9\x1c\xa1\x6b\xa4\x35\x34\x39\xf0\xb5\x57\x61\x76\x60\xeb\xa6\x00\x6d\x06\xe0\xff\x2d\x44\xfb\xf8\x97\x7b\xb5\x28\x78\x6e\xbe\x0c\xf6\x73\xc3\x95\x4e\x98\x62\xae\x9c\xb2\x76\x41\xa5\x76\xee\x2a\x3d\x91\xbf\xb6\x6e\xd2\xbd\xe5\x6d\xdb\x5d\x5b\x5e\xb5\x8c\xae\xb7\xbe\xf0\x3b\xfa\x1f\x64\x42\x68\x3f\x9a\xc5\xd2\x7b\x73\x93\x19\x5c\x10\x90\x29\xf8\x7a\x62\xd9\xf6\xbb\x49\x41\xaa\x24\x02\xef\xfd\xc1\xc4\x8d\xf6\x9c\x21\xfb\xca\xd9\x14\x21\xa2\x61\x90\x5f\x23\x57\x0a\xb7\xfa\xa3\x26\xb4\xce\x8b\x49\x91\xc6\x2c\xf0\x07\x77\xb9\xad\x88\xcd\xb6\x9b\x14\x7f\x00\x5b\x05\x58\x02\x8b\xe8\x38\x92\x3c\x3e\x51\x71\x63\xbe\x16\xf6\x7a\x91\xb4\x07\x30\x5e\xf9\xbd\x89\x42\xc8\xb0\xa3\x06\x36\xe0\x42\xa3\x54\xc2\xd8\x0f\x86\xeb\x3d\x93\x8e\x24\x3d\x96\x04\x4a\xb5\x72\xff\x5c\xd7\x96\xea\x7d\xb5\xa3\x87\xdb\x83\xc8\xcf\xe2\x24\xcb\xe9\x42\xb0\xbd\x10\xf3\xa0\xf3\x79\x99\x00\x53\xd2\x34\x7f\xcc\x36\xf1\x62\x7f\x24\x51\x06\xf0\xa4\xb7\xab\xc3\x39\xe5\xaf\x4a\x3e\xdb\x24\x0f\x1c\x24\x69\x6a\x82\x1c\x61\x33\xcf\xd4\xa9\xf1\xd9\xcb\x9a\xf4\x23\x48\x5a\x2d\x45\x4b\x49\xdf\x2d\x7c\x95\x3b\x2d\xf9\xc1\xb6\xf1\xd3\x68\x7d\xca\xe9\x10\x5c\x52\x2c\xd7\x7f\x88\x3f\x46\xcb\xcb\xb1\x6c\x16\x71\x9e\x5a\xb0\x91\x65\xb3\x77\xcc\xf6\x96\x9f\x2d\xec\x87\x1f\x3f\x15\xd1\x84\x65\x1d\xf9\x3d\xa3\xd1\x54\x00\xb3\xca\xfc\xe7\x01\xfb\x38\x57\xf5\x78\x92\x9d\x71\xb7\x80\xe6\x87\x4a\x67\xe7\xd5\x3a\x9a\x72\xa9\x3d\x4a\x8a\xd8\x55\xd6\xa5\xd3\xe6\x9c\xec\x15\xad\x90\xd9\x2b\x02\x21\xa4\x10\x7e\x0c\x5a\x32\x52\x84\xa7\x95\xb7\x53\xf9\x37\x0c\x98\x84\x4f\x10\xaa\xf4\x29\x81\xa8\xba\x95\x1d\x9b\xc0\x64\x99\xb4\xc4\x45\xeb\xbe\x65\x29\xaa\xaa\xbe\x60\x3d\x29\x1e\x2b\x5f\x15\x92\xa5\xb7\x3c\x05\x21\xfd\xbf\x28\x08\xc4\xb6\xdf\x4b\xf1\x0f\x5e\xdb\x35\x58\x41\xf4\xc7\xaf\x29\xa4\xf7\x63\x9d\xaa\x0d\xb0\x9a\x3c\x0f\xc8\x3a\x23\xf8\x3b\xed\x29\x16\xc9\x7f\xed\x29\xb1\xc6\x6f\xa8\x00\x94\x75\xf8\xd0\x50\x05\x8f\xcb\xf6\x55\xcb\xfb\x91\x0f\x0d\x24\xcf\xec\xfc\xa7\xf3\xf2\x53\x1b\x40\x17\xd8\xd6\x95\x83\x08\x4d\x1c\xf4\xec\x1a\x99\x7b\x7c\xe6\x33\x1d\x17\x5d\x0c\x92\xa4\x17\x8b\x46\x0d\x96\x6c\x8b\xbc\x81\xee\x71\x03\x27\xf9\x5e\x85\x03\xa5\xa9\x48\x58\x1d\x4d\x60\xd0\xb1\xea\xbe\xd5\xab\x2b\xe5\xc6\x4c\x4d\x90\xa4\x70\xe4\x2c\x17\xad\x76\xc2\x7b\x9e\xc5\x5f\x27\x45\x3e\x5c\xa3\x7e\x7c\x79\x19\x5c\xa3\x87\x6b\xb5\x4e\xda\x9a\xce\xdd\x36\x4e\x1d\x06\xfd\x20\xd3\x1a\x99\xa8\xe6\x81\x90\xfe\x0d\xad\xf0\x76\xcf\xf6\xe3\xb3\xa1\x89\x56\xcd\x7f\x69\x80\xdf\xb5\x8d\x4c\xcf\x44\xc2\xa3\x6d\x67\x5c\xca\x95\x2a\xa1\xdf\xe3\x5a\x58\xa2\xc8\x33\xa2\x74\x90\x21\x38\x8a\xc9\xf8\xa4\x96\x1c\x2e\x2c\xb4\x07\xa9\x0f\xc2\x6a\x11\x73\x51\x69\xf2\x05\x45\x9a\x11\x44\x26\x5d\xc1\xbe\x17\x50\xb0\xcb\x39\x2e\xa9\xdd\x32\x2e\xba\x51\x18\x54\x01\x24\xe7\x14\x80\xa4\xde\xa5\x23\x8c\x79\x9a\xac\x80\x83\x6a\xfb\x01\x16\xe7\x83\x06\x31\xe9\x67\xca\xa4\x20\x15\x4c\x06\x7c\x10\x98\x9a\xf8\x58\x69\xfe\x14\x63\xd7\x99\x7b\x5e\x54\xdf\xf0\x8c\x45\x02\x6e\xa7\x0b\x2a\x17\x4b\x3f\x2d\xb2\x3c\xb5\xfc\x9c\xd8\xa0\xef\xc0\x8f\xf1\x49\xcd\x63\x2f\x2c\xb4\x47\x49\xce\xd4\x39\xf0\x7c\x90\x6f\xe6\x63\xd5\xc1\xc4\x04\xa8\x2e\xad\x5c\x57\x80\x83\xeb\x15\x50\xdb\xd0\xac\x7f\xa6\xdc\x54\xa8\xb6\x7d\x54\x21\x21\x50\x63\x42\x37\x91\x4e\xa2\xa1\x71\x17\xc6\x00\xe5\x2d\xd8\x5b\x6c\xf9\x7d\x1b\x65\x9e\x89\x98\x74\x0b\x46\x09\x8b\x7a\x57\xa7\x0c\x6c\x50\xb4\xdd\xbd\x41\xb1\x19\x3e\x75\x8f\x23\x57\x24\x52\x0f\xb1\xe6\xe0\x80\x6e\x7b\x8a\xe9\xe1\x9e\xa7\x44\x3d\x31\xdc\x89\x2f\x78\xb2\xd3\xfa\xd2\x7c\x25\x05\xe0\x72\x01\xd6\x98\x45\xc9\xd9\xb1\xfd\x7b\x14\x4a\xd9\x91\xdd\xe7\x5c\x31\x79\xa3\xda\x66\xb3\xe6\x15\x83\x5c\x88\x8b\x7e\x8a\xad\x2a\xf5\xa6\x7a\xcf\x7f\x9c\x86\xca\xa3\xb0\xf1\x54\xe5\xee\xd3\xd6\x14\x28\xfd\x05\x5b\x67\xf9\x26\x9e\x2c\x9f\x38\xee\xd2\x64\x24\x59\x2a\x67\x48\xb4\xd6\x25\x5b\xb2\x93\x5e\x51\x18\x87\xc1\x94\x6b\x0c\x7f\x0d\x4b\xd1\x4e\x90\x2c\xca\x53\xbb\x6a\x7d\x78\x10\x25\xf9\x50\x46\x5c\xf0\xc1\x9b\xb4\xac\x44\xa2\xb1\x65\x89\x17\xdf\x54\x04\xb6\x7e\x94\x87\x79\xd1\x33\xad\xf2\x61\x0a\x6b\x82\x9b\xa3\xd8\x54\x35\xc4\x61\x92\x91\x5e\xce\x1e\xc7\xcf\xc1\x29\x19\x2b\x7b\xe9\x11\xb3\x33\xbc\x1e\x10\xd0\x6a\xd0\xec\x65\x3c\x1a\xe1\xef\xb1\x55\x8a\xb4\x88\xd6\xf7\xd2\xd7\x09\x8e\xa7\x7c\xd7\xf8\x36\x40\x61\x84\xfc\xc8\xe1\x7e\x38\x49\x03\xca\xe1\x01\x02\x6d\x30\x5a\x1c\x9f\x68\x34\x85\x6b\x1c\xd8\xc0\x53\x4f\x9c\xa3\x56\x25\xcd\xb1\x27\x77\xe2\x37\xe6\x8f\xa2\x79\x82\x18\x1c\xb5\x66\x3e\x6e\x84\xe1\x76\xfd\x4c\xe4\xd9\x14\x78\xad\xbc\x03\x3e\xae\x45\x6d\x65\xa8\x34\xec\xbe\xd8\xaa\xb0\x04\x38\x54\x6a\xbd\x47\xf3\xdc\x52\xbb\x97\x1a\x7f\x84\x60\xbb\x09\xcd\xe3\x42\xd5\xaf\x14\x26\xcb\x09\xc9\x6a\x65\xb2\x1d\x4d\x8b\x73\xd0\xef\x7d\xaa\x43\x5b\x42\xe6\xcd\x5c\xf7\x87\x9b\xec\x88\x75\xce\xd5\xc2\xaf\xb9\xb9\x76\x14\x0e\x86\x6e\xb3\x20\xa3\xf9\x29\x5d\x0e\x1f\xd7\xcc\xf8\xd1\xc3\xcc\x0c\x4e\x85\xb6\x26\x92\x65\x45\xc4\xf1\xd9\x6e\xb2\x06\xf5\x0b\xec\x70\x26\xb9\x6c\xa8\xbd\x7b\x4e\xc3\xee\x55\xbb\x9d\x86\x7e\x96\xf9\x31\x1c\xb5\x1e\x7f\x15\xe1\x06\x87\x4a\xbc\xa8\x7e\x75\x58\x8c\x92\x14\x98\x0a\xd1\xf2\x2f\x3f\xc8\xc7\xb5\x57\xb8\xb8\x58\xbe\x91\x35\x8a\x5c\x84\x8c\xc3\x01\x25\x70\x91\x15\xca\x02\xf4\xa8\x5b\x1a\xbb\xe8\xaf\x1a\x3d\xa2\x46\x0a\x1b\xdb\xdb\x4a\x68\xf5\x8e\x2a\x64\xfd\x56\x8e\x11\x62\x44\x57\xfb\xc9\x30\xf3\xf1\x86\xe2\x47\x2b\x7a\x03\x93\x67\x94\xdd\x08\x47\x6a\xcb\xea\x76\x68\x11\xd7\xd3\x93\xa7\x14\x9f\x70\x14\xf5\x92\x97\x89\x6a\xc1\x46\x5f\xdf\xa4\xfb\x17\xd2\x0c\x37\x2b\x35\x5c\x1f\x27\x83\x68\x3d\x30\xa3\xd0\x9f\x76\x80\xc4\x07\xb0\x0d\x7c\xe2\xa9\x60\xe0\xef\x55\x30\xf0\xf7\x4d\x53\x67\x79\x98\xb2\xc6\x14\x22\x35\x4c\x9d\x59\xea\xce\xb9\x79\x4e\x5c\x8f\x5b\x54\x6f\x6a\x06\x45\x44\xb2\x34\x53\x0e\x9a\x71\x45\xe3\xe1\xfe\x40\x30\x61\xfb\xc2\xf6\x38\x35\xfd\x5f\x6b\xcf\xfe\x23\x25\x33\x7f\x97\x5a\x93\xdc\x15\x84\x8f\xc2\x0e\x39\x4e\x3e\x0a\xb9\xf8\x93\x1d\xed\xe4\x7e\x91\xa6\x98\xd1\xa5\xba\x88\x4e\xb2\x05\x7e\xfe\xf6\x73\x52\x91\x21\x66\x15\x5b\xe2\xfd\xf2\x17\x79\x83\xbe\xee\xa9\x3e\xf4\x37\xa9\xac\x6b\xa3\xe9\xd2\x63\xc1\x41\xbe\x37\x51\x14\xa0\xbf\xb0\xa1\x26\x67\x6e\xc0\x7f\xe1\xba\x7e\xa2\x06\x81\xbf\x76\x90\x86\xb6\xa5\xb6\xa4\x50\xc1\x77\x51\xeb\x41\x24\xbb\x45\x85\x19\x84\x9d\xb7\x51\xf7\xb1\xdb\xc1\x0e\x18\x3f\xba\x61\x47\xf7\xfe\xfa\x1f\x6d\x50\x35\x51\xc3\xa2\xf0\x12\x48\x2f\xf9\x79\xe1\x87\xdb\x70\x7c\xe4\x23\x33\xea\xa2\xa1\x96\x69\xfd\x86\x2b\x6a\x44\xea\x8a\x72\x5f\x7e\x91\x89\x24\xad\x2a\x70\x3f\x6f\xb3\x87\x26\xe1\xbf\xcc\xf8\xdd\xc4\xe7\x70\x5d\x38\x67\xca\x87\x2f\x94\x2f\xe2\x5d\xd6\x92\x34\xea\x01\x05\x8d\x56\xf4\x89\x8a\x02\x88\xd6\xd0\xf8\x99\x12\x1e\xda\x85\x76\x11\x7a\x3f\xc7\x95\x78\xd1\x9b\x8a\xaa\x21\x4e\xd2\x91\x8f\x75\x27\x20\x14\x0d\x74\xa9\x94\xce\x34\x7a\x2f\x36\xeb\x8f\xb9\x69\x81\xbf\xd0\x11\xc3\xfe\x8e\xc2\xe5\x52\xd5\x46\x2c\xa4\x02\xbe\x5d\x40\x0a\x0a\x0f\xb9\x97\x5e\x15\xf3\x14\xa2\xb0\x84\x5b\xf8\x90\xcb\xae\xa0\xc7\xb9\xaf\x24\xa9\x39\x2e\x13\xb1\x11\xba\x53\xcb\x2a\xb6\x68\xf5\xe6\xee\x4d\x34\xa7\x41\xad\xff\xf1\xc2\x0b\x98\x93\x49\x62\xc3\x33\x81\x52\x58\x6f\xb9\x59\x54\xcb\x30\x36\xf0\xbb\x26\xa2\x9a\xf6\x36\xa8\x8e\xb7\xaf\x36\x14\x9f\x96\xda\x69\x32\xb0\xa3\x9a\x42\x94\x5b\x61\xd0\x6d\x68\x0a\xa7\x7e\x37\x44\x0c\x86\xd7\x70\xcd\x73\xaf\xe4\x5a\xcd\x6b\x7d\x8e\x1a\x4e\x49\x6a\x3b\x8a\x08\xbf\x5f\xc5\x43\xe5\x93\x26\x09\x90\x70\x34\x4e\x52\x66\x2f\x43\xf9\x60\x4b\xb5\x5d\x4e\x28\x51\xc5\x2b\x76\xf9\x0d\x92\xff\xef\x0d\xe3\x06\x61\xb7\x64\xd5\xa4\x6b\x43\x13\x39\x86\x09\xa1\xe2\x74\xeb\xa7\x0e\xfd\x99\x3f\xda\x5e\x35\x69\xd7\x8f\x54\x58\x81\x31\x38\x29\x6d\x35\xcc\xc8\xf6\x0b\x13\xa1\xb0\x35\xcf\xcb\x9e\xab\xfb\x08\x5d\xfe\x57\x9d\x0c\xdb\x18\x23\x2e\xd2\x2c\x8c\x07\x33\x0a\x31\x00\x05\x44\x18\x85\x7f\xdc\x51\x31\x34\x66\x7e\x98\x12\x8b\xbe\x0d\x01\xdb\xae\x8d\x46\x66\xc0\xd0\xf1\x92\x60\x43\x61\x04\x97\x8f\xad\x52\x65\x3f\x8c\xfd\x38\x90\x57\xc9\x5a\xb1\x78\x95\x22\x1c\xdb\x50\x21\x20\x14\x56\x14\x71\xe4\x8e\x28\x76\x0b\x21\x25\x9f\x34\x22\xbe\xba\x49\xe2\xe8\xf6\xe1\x25\xbe\xe1\xb9\x98\xea\x1b\x95\x0a\x4f\xd7\x87\xd6\x32\x5a\x29\xef\xd2\xf3\xc7\x36\xfd\xbe\xa7\x2a\x18\x98\x8d\x53\x73\xbb\x4e\xbe\xa1\x8e\x06\x98\x27\xe0\x44\x12\x85\x3d\xd7\x10\x47\x9b\x07\xe4\x79\x7c\xac\x88\x61\x03\x8a\xb5\x28\x4c\x23\x5b\x89\x86\xdf\x87\x14\x06\xf1\xb1\x92\xc9\xfb\xcd\xdf\xc0\x74\x9d\xe0\x6e\x4a\x57\x21\xac\x30\x2e\x1f\x20\xd2\xe0\x38\x58\x07\xe3\xb9\xe8\x6c\x2a\x03\x75\x86\xb2\x35\x5b\xdc\xd4\xe4\x61\xd6\x47\xff\x67\xac\x2e\xf8\x31\x74\x6a\xf9\xb8\xca\x93\x99\x85\xdd\xc8\x7c\x92\x1c\x98\x70\x9b\xab\x2c\xfb\x38\x28\xc4\x58\x85\x0d\x7d\x2f\x5b\x2e\x75\x43\x8e\x57\xc8\xe9\x31\x3b\x2a\x5d\x04\x4a\x6d\x3c\x73\xcb\xdf\xe5\xa9\x7a\xc1\x37\x26\x8e\x1b\x6e\x1f\xc1\x05\xf8\x18\xb1\x32\x8c\xe2\x43\x4f\xd3\x61\xdb\x4a\x63\x38\x1a\xa7\xe1\x28\x84\x36\x88\x28\xe0\xbb\x56\x34\x37\xc7\xd0\x46\xbd\x5d\xdb\xbd\xcb\xb3\x4c\x28\x8f\xbd\x88\xda\x36\x33\x46\xa3\xd4\x06\x9e\x21\x69\x50\x29\x4c\x46\x91\x87\x4e\x03\x52\x16\xb2\x5e\xe1\x0d\x96\x22\xcc\x22\x3f\xee\xe9\x06\x2a\xa6\xbd\x84\xda\x7d\x67\x9e\xb3\x3c\xdb\x2e\xe2\x70\xd5\xa4\x99\x60\x91\xd8\xc1\xd0\x0f\x89\xb3\x39\x50\x15\x29\xcc\x72\x85\x5a\x3a\xa3\x80\x53\x67\x1a\xc0\xd8\xf3\x6d\x3f\x0a\x4d\x3c\xe3\xc6\x5a\xa6\x3b\x0a\x37\x7d\x5a\x63\xd8\xe8\x2d\x01\x8e\xce\x5d\x04\x81\xf6\x3e\xa1\x07\xa1\xd2\x9c\xad\x94\x74\xd8\x7e\xac\xb8\x26\xa1\x13\xca\xff\xdf\x73\x39\xc1\x59\xcf\x89\x57\x6c\x4f\x3e\x65\x97\x7f\xec\x13\x47\x68\xf8\x32\x5e\xd1\xf3\x36\x3f\x2a\x17\x3d\x5c\xf7\x75\x4f\xf3\x52\x36\x4d\xf5\x90\x2c\x45\xdf\xa4\x78\xf0\x56\xd0\xcc\x82\x04\x75\xbd\x2e\x8c\x7b\x46\xe4\x14\x9b\xac\xb9\x7b\xd8\xa3\x24\x8a\xc2\xfe\x3a\xda\x13\xb8\x14\xb4\x27\x44\xbe\x8c\x2e\x0b\x78\xe3\xcb\x8a\xb2\x3d\x4f\x0b\xf3\x88\x0b\x72\xa0\x94\x8c\xb0\x74\x1a\xc1\x27\xfa\x31\xd0\x3f\x43\xf0\xb8\x7b\xa3\x0c\x37\xf9\xb8\xa3\x08\x07\x39\x6b\xc4\xaf\x9c\x9e\x38\xa5\xf2\x87\x15\x89\xc1\x3c\x0d\x83\x0a\x11\xb0\xe7\x28\xa2\xf4\x24\xa9\x79\x69\x1c\x25\x29\x8f\x79\x58\xaa\xa3\x32\x4e\x47\xb7\xfb\xb6\x4a\x2a\xde\x6b\xc2\x8c\x0d\x93\xd8\xac\xab\xe2\xe5\x96\xe2\x36\xdd\x52\x15\x82\xc0\xcf\x87\xc4\xa8\x02\xbb\xca\x1a\xe4\xb4\x50\x44\x8f\xbc\x01\x95\x37\x48\x93\x22\x66\xea\x7a\x24\x1c\x1f\xe8\x6e\xe1\x07\xc8\x17\xe1\xab\x8a\xb8\xe7\x63\x72\x8e\x15\xdc\x51\xd1\x3e\xa7\xd5\xe1\xce\x59\xbd\x77\x9a\x2e\x1b\x8d\x23\x67\xea\x79\x52\x53\x0d\x78\x9c\x6a\x98\x58\x5c\x84\xf0\x9d\x75\x9f\x0c\x9b\xa1\x25\x23\x10\x9a\xa7\xaa\xa5\x8e\xcf\x7e\xb6\xbd\xb8\xf8\x78\xb9\xf4\xb1\xe1\x38\x85\xe3\x9a\x20\x15\xe2\xb1\x5f\xd1\xfc\xc4\x6a\x62\xaa\x7d\xdc\x67\xab\xa3\x34\xdd\x8e\x2b\x19\xb8\x93\x5a\x94\xec\xd2\x44\x39\xf4\xff\x84\xd5\x28\x38\xe2\x32\x0d\x93\x99\x39\x7a\xbd\x32\x15\x4d\x6b\x84\x67\x85\xa9\x1d\x02\xbf\x35\x41\xe0\x2a\xea\x99\x5a\x51\x7c\xfc\x88\xea\x21\x3e\x98\x38\x8d\xa3\xdd\x1b\x8a\x6d\x88\x4b\xe9\xb2\x7b\x15\x52\xe9\x24\x2d\x5a\x2c\xe0\x47\x3b\x65\x2e\x7e\xdd\xe9\x5f\x9a\x03\x9d\x9d\xcb\x60\x6e\xae\xdd\xf7\xbb\xa9\x48\x35\x4a\xe5\x4d\xe5\xd8\x97\x1b\x06\xda\x97\xdb\xd9\x38\x94\x4e\x2b\xae\xef\x9a\x92\xa1\xbb\xd6\x40\x74\xd4\x06\x11\x94\x2d\xd7\x82\xc5\x5e\x58\xd0\x1a\x02\x1d\x3f\x0d\x86\x61\x6e\x02\xd8\x5f\x44\xad\xf7\x14\x29\xfc\x3d\x55\x57\x18\x15\xa3\x7d\x8e\xd0\x02\x84\x11\x62\x66\x29\x4f\x04\x0a\x90\x87\x45\xe1\x8a\xce\xb8\xfa\xdc\xf4\xf6\xc4\xad\xb0\x17\x40\xe0\x09\x0b\xf5\x0e\x2d\x07\x94\x36\x7e\x11\x96\x02\xd9\xe4\xfd\x26\x8e\x89\xb1\xc9\x72\xa8\x94\x94\x17\x83\xf2\xef\x0d\xc5\x15\xbf\xab\xe3\x46\xe3\x1d\x47\x56\x6a\x02\x3f\x8a\x08\x68\x4b\xc6\x4b\xd2\x55\x25\x66\xc0\x11\x01\xb6\xd9\x7f\x6c\x46\x97\x67\x45\x94\xdb\x76\x24\xcc\x37\x22\x2b\x00\x98\x10\x3b\xc0\xb0\xbe\x3d\xd1\x24\x60\x01\xc6\xec\x66\xdc\x67\x5f\xf3\x14\x44\xf1\x3a\xfc\xb7\x44\x30\xe5\xb7\xa0\x40\xfa\x10\xeb\x0e\x0b\xff\xb4\x22\xaa\x62\xe5\x6b\x52\x8d\x40\xf9\xe8\xa4\xa7\x36\xcf\xab\x6a\x6e\xe1\xa4\xd2\x19\x7d\x55\xc9\xaf\x84\x71\x50\x8c\xba\x04\xef\x99\x3f\x2a\x3b\x50\xe9\x3b\x5d\x52\xb9\x6c\x90\x8c\x43\x1e\x5c\x66\x0f\xaa\x1a\xb6\xf5\xd5\xbb\x3c\xdb\x1e\x9b\xb8\x67\x1f\x15\x97\xf5\xd5\xf8\xc3\x54\xa7\x5c\x3f\x28\x82\x5d\xb4\x1a\x2d\x23\x3f\xcb\x4d\x3a\x0e\x4d\x80\xfa\x9f\xed\xf9\x3b\xee\x99\x53\x95\xee\x46\xe6\x8f\x5a\x0a\xe9\xce\xd2\x3e\x12\x71\x39\x44\xe5\xc0\xc4\x26\x23\xb8\xbf\x90\xc0\x51\x5d\x86\x4f\x14\xf9\xe3\x0f\x15\xad\xc7\x0d\x58\x30\xec\xb7\x3b\x4d\x94\x80\x2f\xfa\x63\x3f\x36\x99\x28\x73\x69\xd9\x5c\xac\xcc\x9f\x79\x0a\x81\xf2\x61\x13\x8c\x8c\xc8\xca\xa3\x64\x6c\xed\x31\xea\xac\x10\xa9\xe7\xe3\xa6\xc0\x6c\x6c\xa2\x55\x26\x78\x85\xad\x47\x9c\xc2\xc7\x6a\xdf\x26\xa3\x2e\x6d\x15\xb8\x62\x60\x18\x50\x9c\x02\x12\x48\xe4\x32\x9e\x0e\x9d\x78\x1d\xb8\x90\x47\x3c\x0f\xb9\xa8\x9f\xc7\xbc\x65\x80\x53\x11\x48\x96\x15\x32\xae\xa2\xd4\xdb\x8f\x58\xf5\x76\x47\x9f\x23\x5a\x3a\xf4\xf8\x91\x2f\x5e\x55\xb9\x63\x3d\xeb\xa7\xa9\x83\xc4\x39\x39\xab\x9e\xba\xb0\x60\x51\xe1\x92\x6f\x8e\x29\x91\x61\xb1\x54\xbc\x36\x1e\x3d\xe6\x13\xc5\x68\x17\x25\xf1\x60\x3f\x3d\x70\x98\xe0\xbb\x64\xaa\x80\x51\x9d\xea\xec\xa8\x86\x2c\x5a\xac\x5a\xcb\x12\xea\x12\x82\x66\x7b\xcb\x53\xaa\x40\x13\x25\x3c\x74\x0f\xfe\x07\xa5\xf5\xe3\xd4\xd7\x46\x13\xeb\x9e\x66\x18\xff\x9e\x16\xd2\x32\xfe\x8a\x89\xa7\x77\x0e\x43\xe1\x26\x5f\xa7\x6a\x0f\x1f\xd3\xa5\xf2\x67\x6a\x75\x01\xc0\xe7\x07\x51\x32\x32\xa9\x70\xdb\xa3\x16\x84\x11\x02\x3e\xfe\x18\x7e\x1c\xb7\x67\xd1\xc9\x38\xd0\x71\xdd\xea\x99\x0d\xb7\x37\xee\x28\xf0\x2a\xc8\xd0\x60\x1d\xf0\x30\xaf\xa9\x0e\xd3\x35\x9d\xb0\x85\x51\x38\x0e\xe3\xa4\xe5\x78\x29\x21\xc9\x2e\x9c\x86\x4f\xa9\xb8\x8e\xd8\xd9\x88\x4a\x5e\x69\x2d\xa9\x69\xb7\xa9\x0d\x87\x90\xb8\xad\x60\xea\x5d\xa2\x14\xcd\xf7\x29\x8f\x8d\xc0\x00\x25\x9f\xd6\x46\x95\xf8\x48\x25\x85\x77\x95\x3c\xfc\x26\x85\xfa\xd2\x98\x29\x1f\x3e\x7f\x55\xc7\x79\xab\xd6\x86\x83\x6e\xce\x74\xdc\x96\xfb\xf5\x5f\xfd\xcd\x56\x99\x51\x5a\xd8\xbb\xe5\xe5\xaf\xc3\xde\x9f\x9b\x3f\x4a\xa1\x5c\x9a\x44\xd8\x40\xa8\x09\xdf\x80\x1b\xe5\x13\x2d\x17\xd4\xef\x87\x81\x49\xf7\xa8\xaa\xd7\x35\x5a\x83\xb0\xab\x1f\x29\x0c\x2d\x34\x48\x91\x36\x4f\x04\xac\xa1\xda\x4d\x35\xb3\xf2\xf9\x76\x90\x44\x91\x09\xf2\xe9\x96\xa2\x80\x77\x33\x57\x67\x29\xf0\xc1\x8f\xde\x47\x54\x8a\xf0\xec\x7f\xd3\xae\x62\x68\x82\x95\x6c\xda\x2d\x86\xe3\xf4\x57\x28\x0a\xbf\x8f\xdb\xd2\x9b\x18\x6c\x70\xbb\x3a\xae\x80\xe0\xc7\x79\x12\x85\x71\x38\xe5\x72\x53\xd6\x33\xc0\x97\x3c\xc4\x96\x44\x5d\x5a\xeb\x66\xbc\x68\x48\x0d\x2c\xe5\xd1\x45\x45\xb9\xb6\x64\x07\x03\xdc\xcf\xf4\x8d\xcf\xac\x4e\x4a\x52\xc2\x73\x81\x50\x9d\xb8\xf1\x4b\xf3\xed\x6e\x6a\x37\x88\x86\xb2\x08\xcf\x93\xd3\x78\x79\xd8\x20\xcb\x76\xa4\x9d\xac\x55\xe1\x54\xef\x21\x0a\x90\xc2\xd9\x4e\xff\x60\xd7\x46\x99\x50\xaf\x53\xc1\x00\xd9\xec\x6d\x4f\x15\xd7\x2f\x57\x31\xa0\x3b\x0d\x82\x00\x59\x83\x70\xd4\x8f\xcc\x4b\xe4\x32\x6c\xe5\xdf\x71\x73\xdd\xd5\x72\x5e\x65\x5c\xc8\xfa\xf3\x08\x4a\x36\x54\xab\x65\xa3\x16\x7a\x3e\x3b\xdb\xee\xa7\xc6\x4c\xab\xb9\xcc\x33\x13\x97\x46\x81\x23\x07\x76\x11\x2d\x5b\xa1\xe1\x74\x7c\x14\xc4\x28\x88\xcc\x54\x8b\xfb\x61\x79\x41\x38\x1a\x7f\x74\xdf\xa2\xce\x56\x06\x5d\x85\xc7\xd9\xc6\xcd\xf0\x49\x93\xe2\xb2\x83\xe5\x60\xfb\x7e\x4f\x21\x61\x4f\xab\xe6\xf6\xc5\x8a\xca\x6a\x1a\x72\xa5\xd4\x62\x32\x1c\x3e\x43\xc9\xa8\xd9\xb8\x74\x0f\xf5\x69\x24\x00\x75\x38\x27\x90\x6f\xca\xb1\xca\x6c\xff\x08\x0e\x81\x4f\xd4\x5e\xbe\x58\x7b\x95\xcf\xce\x3e\xdf\x8e\x93\xd8\xe4\x43\x13\x31\x25\xe6\x33\x96\x04\xbb\x7c\xae\x7c\xac\x18\xd3\xf2\xa4\x08\x86\x14\x00\xc0\xc6\x9e\x55\x74\x02\xa7\x2a\x03\x39\x0d\x24\x7b\xd9\x28\x59\x81\x07\xe1\x6a\xa4\xa2\x4d\xd1\x4f\x09\x25\x88\xe9\x32\xa4\xc3\x92\x44\x8d\x9d\x8f\x15\xc0\x8b\x55\xd0\xf8\xa4\x41\x18\x9a\x85\x58\x65\x97\x08\x22\x4b\x35\x4b\x2e\x34\x05\x62\xa3\x30\x18\x86\x03\x3f\x26\xb3\x63\x25\xbc\x2c\x2c\xf5\x8c\xee\x9a\xb7\xb8\x5b\x27\xba\x6c\x8e\x41\xa4\x1b\x21\x68\x55\xfd\xf9\xdf\xf3\x1c\xfa\xed\xf7\x9a\x94\x6e\xb3\x61\x91\x4f\xa9\xcc\x61\xbb\x2a\x58\x44\x17\x2e\x09\x5f\x83\x54\x43\x36\x34\x51\xbf\xe5\xec\xf4\xa6\x2a\x75\x6a\xf8\xf0\x38\x0d\x79\x4c\x6b\xa9\xd2\xae\xe7\x63\x4f\x69\x51\x97\xd6\x82\x61\x8c\x0c\xf8\xf7\x54\x4a\x76\x45\x8b\x73\xfe\xac\x89\x13\x2d\x8c\xfb\x51\xb2\xc6\x88\x11\x14\x4e\xb0\x81\x2d\xe6\xbd\xfc\x6a\x78\xcc\xf3\x13\xc7\x8f\xbe\x6e\xf2\xc7\xe9\x9f\x98\xa1\xdd\xe5\xc4\xa7\x21\xf0\xbc\x3d\xbd\x41\x31\x91\x85\x76\x5b\xea\xca\x4b\x80\x73\x03\x93\x79\xdd\x53\x04\xb1\xf7\x34\xf3\x09\x28\x43\xed\x74\xf8\xf2\xac\xfd\x13\xe5\x98\x3e\x84\x77\x40\x93\xe2\x09\x6a\x7a\x5a\x16\xd8\x43\x8b\xae\x08\xe5\xb0\x47\xc7\xbc\x1d\xf5\x8e\xb9\xf9\xf6\x67\x3f\x3b\xd5\x7a\xe1\x05\x5b\xbf\x6a\x2d\x56\x23\x4f\x54\x7c\xae\x2b\x68\x1b\x15\x55\xa6\x35\xfb\xa2\x02\x2b\xed\xee\xb8\x01\xa8\xf7\x74\xc3\xea\xac\x03\x23\xac\x9b\x58\x48\x64\x98\x33\x45\xe1\x36\xea\xec\x23\x73\x73\xed\x6e\x6a\xd6\x08\x2a\x6d\x19\x96\x8f\xe1\x69\xb1\x4a\x14\x5d\x00\x16\x62\xd3\x88\xfa\xf3\xed\x5e\x9a\x8c\xc7\x55\xa5\x71\x48\xd9\x4a\xe2\xe8\xc2\x8e\xa1\x49\x33\x5a\xa9\x76\xde\x06\xb4\x97\x7c\xac\x0c\x4e\x37\x4d\x12\x9e\xab\xb4\x1c\x70\x0a\xec\xe9\xe2\x5d\xea\x8f\xc2\xb4\xe2\xf7\x1e\x2a\xb5\x9f\x87\xb6\x5c\xfe\x95\xc2\x4f\x73\x93\x0a\x1f\x81\x90\x2a\xd3\x83\x12\xb6\xe5\xfd\x2e\xbf\x38\x88\x7c\x90\x91\xf9\xdc\xe4\x14\x9c\x7e\x4d\x37\x87\x28\x15\x2d\x86\x92\x67\xc1\xb0\xfe\x64\x30\xcc\x85\x75\xff\xf5\x6f\xfc\x3a\x8d\xd1\xf0\xac\x0e\x3e\x66\xa1\xe1\x16\x94\xf5\x4e\x53\xba\xd6\xf3\x47\x63\x93\x2a\xc3\x72\x4e\x19\x96\xfa\xcc\x1a\x0d\xad\x44\xe1\x28\xb4\x79\x8f\x00\x51\x54\x4f\xf0\xa2\x27\xb5\xc0\xd8\xac\x9a\x94\x9d\xc2\x8c\x55\x10\xfa\xf9\x2f\x76\x5c\x5d\xe4\x93\x1b\xce\xd9\x31\x56\x1c\x84\x30\x0f\xa8\xb4\xc6\x93\x14\x0d\x03\xea\xed\x7e\x92\x06\x3c\xad\x8f\xe7\x88\x1c\x92\x8f\xeb\x46\xad\x5c\x98\x45\x8e\xfa\x8c\x8d\x21\x17\x16\x78\xa6\xf9\x7e\x05\xb3\xe1\x6c\xaf\x85\x0a\xa9\x31\xa1\x0a\x08\xae\x21\x77\xce\x48\x3e\x00\x26\x9b\x16\xbe\x55\xe8\xb5\xc3\xb9\xef\x4f\x76\x8e\x43\x7d\x69\xbe\xdd\x4b\x68\x1d\x0b\x6f\x20\x99\x02\x29\x02\xd5\x1b\x0e\xed\x2c\x8c\x64\x8a\xaf\xa9\xbe\xee\x6c\x40\x37\x35\xa6\x37\xe5\xba\x2b\xb7\xd5\x66\xda\xd4\x68\xe8\x9f\x2b\xcb\x9e\x0f\x4d\x1f\xb0\x73\x29\x83\xfe\x1e\x3d\x5f\x61\x4c\xa5\x3f\x93\xa1\xcb\x9d\x37\xb3\xb8\xd8\xf6\x33\x9a\xc7\xb3\x6d\x16\x5b\xcd\xbc\xa1\xf4\x55\xb6\xe1\x41\xc5\xaf\xec\xfc\x9a\xe5\xd9\xf6\x20\x99\x76\xfa\xdf\x6f\x4c\x94\xbc\xd1\x96\xa7\x00\x3b\x5c\xd5\x45\xe1\xef\x47\x5a\x0f\x6f\x68\x0c\x68\x63\x60\x61\x91\x43\x23\xe6\xb8\x4f\xa6\x42\x14\x7e\x1a\x74\x26\x53\x53\xee\x42\xb4\x5b\x61\xb0\xce\x6a\x37\x7a\xd6\x13\x41\xc1\x5e\x98\x05\xa9\x19\xfb\x71\x10\x56\x41\x21\x95\xe8\x4a\xb5\x07\x58\xe1\x6a\x5f\x4b\x4d\xb0\xd1\x37\x0b\xe5\x30\x35\x08\xb9\x6f\xe0\x55\x9a\x08\x2d\x45\x5d\x57\x9a\x87\x6d\x94\xbd\xb7\x1f\xa0\xd0\xa6\x58\x54\xe7\x79\x9d\xbf\xa3\xd6\xf3\xc8\xf4\xc2\x20\x8c\x59\x4c\x59\xc7\xc4\xe8\xec\xfd\x39\xfe\x10\x15\xf1\xf3\x3a\xc1\x2b\xf2\xd4\x8a\xe2\x23\x50\x3d\xa6\x84\xee\x8e\x79\xae\xa6\x49\x22\x57\x8e\x17\xe5\xb8\xa6\x42\x39\x5e\xab\xf7\x12\x7e\xc2\xf4\x8b\x81\xa9\x62\xc6\x2f\x6a\xcc\xf8\x45\xc5\x4e\xbb\x12\x27\x6b\x9f\x20\xc7\x8c\xcc\xf9\xb2\x8a\xc2\xaf\x29\xfd\x95\x1f\xd2\x44\x82\x25\xe6\xfb\xd2\xbc\xb5\x0d\xe5\x6b\x17\x18\x02\x55\x7c\x2d\x70\xd0\x0d\x4c\x32\x90\x97\x4f\x26\xaa\xda\x5d\x85\xe2\x52\xe8\x80\xde\xf7\x59\x07\xa0\x48\x43\x83\xf0\x09\x9e\xfa\x1c\xbe\x8c\x4f\x9a\x12\xb8\x9e\x89\x7c\x74\x57\x2c\x1d\xdd\xb2\x3d\x56\x3c\xcf\x63\x13\x67\x61\x12\xef\x55\xe3\x57\xfb\x3a\x0a\xd3\x8f\x2a\xad\x50\x12\x95\x26\x54\x2a\x58\xca\x9b\xf2\x8c\x17\x36\x55\x45\x3f\xed\x51\x25\x10\x3e\x88\xc4\x05\x49\x92\x74\x41\x11\x48\x5e\xd0\xa8\xdc\x7c\x18\x99\xdc\x60\xc7\x23\xcc\x3a\xe1\xb9\xb1\x69\x8e\x6a\x6c\x2a\xbb\x3c\x2b\x1f\x6a\x2a\x67\x0b\x57\x3e\x02\x7c\x54\xc4\x4f\x2a\x5e\xab\x93\x8d\x08\x9c\x81\x89\xc3\x82\x6b\x32\x58\x16\xa7\x2b\xbf\x4a\x8f\x45\x34\x7a\x1a\x6a\x4c\x23\x7f\x10\x06\x7e\x04\xe4\x2c\xdc\xd1\x79\x45\x88\x58\x07\x50\x1e\x3d\xdc\xee\x16\x29\x06\xaf\x6d\x16\xe2\x32\x92\x89\xa6\xb5\x48\x0b\x10\x35\x4f\x39\x3a\x79\x8e\x13\xb1\x41\x6f\x21\xce\x14\x3c\xbe\xd6\x77\x1d\x64\x33\xe5\x1f\x89\x42\x9e\xe2\x9a\x64\x83\xc1\x33\xad\xca\x95\xdd\xd1\x40\x92\xcd\x89\x03\x6c\x0e\xfd\x55\xf3\xa4\x12\x39\xde\xb5\x41\x2b\x59\x68\x12\x1c\x2f\xcf\x34\x85\xa7\xf8\x10\x53\x81\x22\x57\x40\xc1\x8a\x4b\xe5\xac\xca\x81\x62\xf9\x94\x8a\x45\xef\xa0\x8a\x6d\xb1\xee\x15\x2d\x48\x11\xd1\xf9\xa7\x4f\x11\x68\x5f\xf4\x65\xcb\x95\x0a\x40\xdb\x49\x02\xca\xe3\xc7\xcf\xb8\xf6\xfc\xff\xf4\x24\xa2\x74\x2a\x69\x4c\x58\x29\xc6\xf2\x3a\x95\x06\xf0\xf1\xce\xd3\xd5\x78\xf9\xd9\xd9\xa5\xf6\xc2\xc2\x91\x29\x37\x85\xf3\x86\x6a\x27\x82\xc5\x19\xee\xf8\x86\xf7\x94\x96\x46\x29\x02\xcc\x32\x93\x11\xb6\x98\xc5\xf2\x07\xf9\xa4\x29\xec\x05\x67\x05\x13\xd7\x34\xf5\xd2\x74\x83\x20\x1d\x98\xc7\xe9\x83\x22\xbc\x47\x6b\xd5\xd2\x52\x96\x4f\x0c\x75\x9c\xb7\xa8\xd8\x2a\x1c\x70\x4a\x39\xee\x15\x4c\xbf\xe0\x99\x4d\x75\x34\xa9\x1d\x9a\xa6\xf0\x51\x3c\xc9\xae\x95\x4a\xf0\xc8\xef\x2a\x2d\x85\x7f\x4f\x7b\x12\x06\xfa\x9a\xa7\xe4\xcc\xb6\x34\x4d\xeb\x71\x44\xf1\x22\xcd\xe4\xe0\xb7\xfd\xd4\x8f\x83\x61\x98\x19\xc3\xc1\x30\x03\xec\x71\xb9\x82\xb6\xff\xb8\xfa\xcf\xc8\xa4\x41\x91\xa2\x8a\x64\x55\x21\xcb\x3f\x14\xaa\x2b\x85\xd9\x6f\x52\x88\x63\x3e\xd3\x1e\x3b\x0f\x3b\xa2\x5d\xfe\x95\x4c\x62\xbb\x76\x79\x96\x8c\xcc\xda\xd0\xa4\x46\xc9\x40\xbd\x37\x71\x32\x50\xef\x79\x8e\xca\x2f\x89\x4c\x9e\xfb\xb4\x7c\x2c\x5c\xa8\x7c\x98\x42\x24\xa8\x46\xf1\xef\xaa\x4e\xee\xaf\xff\xd6\x7f\xd3\x72\x37\xc3\xda\x2c\x7c\xb2\xf1\x98\x9b\x1f\x18\x8d\x0d\xe3\xf2\x84\x02\xd3\xe1\x17\xbe\xe3\x39\x83\xa7\xf3\xed\xbe\x89\x92\x18\x7e\x02\x8e\x9e\x65\xe4\xf9\xa4\xce\x9b\xb6\x5c\x3a\x57\x41\x00\x3e\xaf\x73\xe5\x25\x4e\xce\x6e\x2a\xf6\x9a\xd7\x6b\x06\x79\x79\xb6\x6d\x8a\x34\x19\x1b\x3f\x96\x54\x07\x6b\x86\xf9\xc8\xf9\xa4\x81\x77\x7b\xb9\x5d\xc4\x8a\x14\x1e\x3b\xe7\xa2\xaa\x23\xd4\x93\x47\x9a\x46\x28\xd6\x6d\xdc\x2c\xd2\x84\xe5\x16\xe0\x63\x5d\x03\x0b\x6d\x51\x44\x12\x2e\xfa\x2b\x49\xc5\x1a\x6a\x08\xd9\x30\x59\x23\xa0\xa6\x2b\x8c\xb0\x28\xa8\x7b\xfb\xbf\xea\x08\x3e\xfc\x74\xd4\x52\x6d\x5b\x45\x1a\x7e\xd1\x6a\x49\x87\x71\x6e\xa8\x38\x5d\xf8\x11\x17\x27\x60\xbb\x58\x66\x13\x49\xfe\x49\xa5\xd6\x73\xaf\xf1\x61\x65\xe5\x4b\x0a\x11\x34\x58\x10\xbe\xed\x45\xd6\x11\xa4\xc4\xea\xf5\x62\xc0\xdc\x2a\x02\xbf\xd1\xf5\x90\xa7\x54\x9b\x74\x44\x14\x3e\xac\x3b\x8c\x88\xed\xba\xe7\x3a\x06\xd7\x1b\x24\x3f\x96\xdb\xe6\x25\x25\xf9\x81\x60\x01\x7f\xc4\xc7\x3a\x69\x26\x30\xfb\xa3\x74\xc7\x92\x6e\xd2\xb3\x40\x98\x74\x47\xb9\xdf\x0f\x60\xde\xd8\x54\x91\x79\x63\x87\xed\xb9\xfe\xd1\xf7\xa8\x33\x85\x8a\x45\xab\xa3\x06\x10\xce\xc1\xec\x31\x1b\x07\xa2\x2f\xfe\x98\xc6\x72\xfb\x50\xf7\x16\x22\x39\xd8\xac\x5b\x13\x85\xf6\xa8\xab\xd5\xd2\x13\xcd\x86\x09\xc7\xb8\xf0\xd3\x27\xe8\xca\xf9\xb8\x16\x38\xcc\xcd\xb5\xc7\x26\xed\x17\x23\x98\x93\x66\x70\xa5\x93\xe8\x70\xfc\xb9\xc2\x50\xe3\x42\xc4\x3f\xc6\x46\xc6\x9f\x9d\xd7\x58\xf2\xbb\x9a\x48\x82\x85\xb1\xa4\x48\xe8\x10\x8b\xe7\x11\x55\xb2\x0b\xcb\xc3\x38\xe9\x46\x7e\x96\x27\x23\x7f\x4a\x25\x4d\x57\x14\x24\x01\xce\x15\xc7\x3f\x56\xf1\xb5\x5f\x0c\x0e\xe2\x9d\xa3\xa4\xc5\x34\x97\x7c\xa2\xba\xd7\x23\xff\xe5\x9e\x0f\xa6\x4c\x35\x52\xe5\xcc\xbf\xab\xe2\xb2\x0a\x8a\xf4\xb6\x1a\x8a\xe0\x83\x70\xd5\x4c\xbb\xbb\xd9\x05\x60\x8e\xf0\x51\xb8\xe4\xfb\xaa\x22\xf8\x39\xa6\x42\xd0\x71\x6a\x7a\x44\x80\x50\x06\x12\x52\x06\xaf\x00\xf2\xcb\x05\xc5\xf2\x6a\x96\xdd\x3a\xf3\xcb\x2c\x3d\xcc\x72\x3f\x9b\x56\xac\x1b\x77\xd4\x48\x27\x77\xf9\xe1\x00\xa6\x39\xe6\x41\x04\xf1\x40\x11\x0c\x99\x97\x82\xa8\xc8\x48\x1a\xb4\x74\xeb\xa0\x77\x05\xe6\x89\x8f\x35\xdf\xf2\x5a\xb6\x47\x91\xba\x4c\x01\x5d\x82\x5d\xf0\x78\x47\xb7\x12\x15\x1f\xc4\x83\x89\x92\x60\xd9\xa2\x7d\x23\x15\x57\x37\x98\xfe\xa2\x81\x3e\x69\xf9\x24\xad\x54\xa6\xaa\xe2\x56\xa2\x52\xe3\x8f\xa2\x32\x15\x6c\x3d\x3b\xbb\x7d\x55\x7d\xec\x23\x4f\x75\xb1\xb5\xc6\xcc\xd0\x8f\x07\xa6\x37\x4d\x51\xa3\x15\x68\x59\x96\x26\x16\xb4\xcf\xf0\x88\xbf\x35\x51\xc2\xab\x56\x19\xc8\x5f\x09\xe3\x19\x45\xbe\xf2\xf3\x89\xa6\x35\xa6\x87\x85\xaf\x7a\x94\xd0\x32\x76\x8e\x69\x71\x71\xbb\x4e\xfe\xb4\xb8\xd8\xce\xc3\x7e\xbf\xa5\xaa\xb2\x17\x94\x82\xdf\x05\xdb\x7e\x5f\x33\x66\xc5\xc4\x15\xd6\xfa\x37\xb1\xd9\xf8\x44\x85\x07\x04\x7b\x30\x59\x9e\x3d\xaa\x79\x03\x2a\x4a\x04\x14\xdb\x5a\x69\xad\xb9\x79\xc6\x60\x7e\x5d\x8b\xf7\x32\xe0\x83\x4f\xb0\x7f\x81\xaf\xe1\x20\x4a\x57\xd5\x11\xa4\xdc\xa6\x05\x2a\x32\x5d\xae\x52\x60\x2b\x9c\xf3\x47\xed\x80\x6a\xf9\x6c\xf9\x58\xc5\x06\x41\x94\x04\x2b\x19\x51\x6d\xda\x99\x86\x43\x6e\xa6\x41\xcf\x72\xa4\xfe\x4b\xf0\x81\x22\xec\xd5\xb2\x14\xb5\x1b\xaa\x65\xdd\x4f\xc3\x32\xb0\x42\xff\x0c\x15\x9b\x53\xf4\x51\x59\xd2\x2d\x2b\xf5\x85\xb9\x23\x19\x9f\x74\xf5\x17\x9a\x8c\xa0\xa1\x6d\x5b\xe3\x2b\xed\xb7\x40\xe6\x1a\xf2\xbf\x91\xf1\xe3\xb5\x61\x18\x19\x8a\x08\xd1\x5a\xbd\xc6\x05\x53\xee\x15\x4d\x94\x26\xd6\x5b\x13\x67\xf6\x41\x66\xe0\xa7\x61\xb4\xde\x72\x02\xad\xef\xd3\x63\xe0\x63\x3b\xc0\xe9\x47\x26\x85\xa4\xbd\x90\x78\xaa\xa0\x73\xd3\xd6\xbf\xc7\xc6\x5f\xa9\xf2\xf3\x5c\x44\x10\xc8\x27\x8a\x73\x36\xc9\x87\x26\x5d\x0b\x33\x33\xad\xe8\x81\x2e\x78\x6e\xd0\xe5\x96\xea\x6b\x01\x74\xc4\x1c\xdb\x0a\xd3\xfa\xa2\xff\xf2\xcb\x33\x0e\x7c\xba\x83\x43\x99\xbe\xd8\x16\x82\x14\x57\x13\x19\x1d\x24\x93\x1f\x29\xbc\x6a\x37\x29\xd2\xcc\x4c\x95\x71\x04\x5a\xf6\x0c\x79\x15\x80\x93\x6a\x4d\xd6\xd9\x38\x9f\x9d\x7d\xbe\x74\x87\x69\x6e\xd2\x69\xfa\x7e\x98\x55\x80\x4d\xe0\x80\xfe\x9f\x89\x8a\x0d\x90\x63\xa3\x0e\x73\xba\xb6\x5d\x8f\x1e\x6e\x67\x09\x3f\x71\x44\x68\x48\x53\xf8\xb8\x21\x5a\x5b\x6a\xf7\xfd\x28\x48\xe2\x56\x25\xb7\xa1\x1f\x91\x58\x60\x27\xcc\xfb\xd0\x62\x3b\x0b\x47\xe3\x48\xc5\x9d\x48\x90\x80\xfc\xe0\x63\xb5\x3c\x4b\x8b\x06\x84\x08\x2c\xd2\x19\x4f\x51\x1a\xd4\x61\xde\x54\x97\xcf\xc3\x55\x03\x0e\x49\xfb\x26\x2c\x03\xd4\x7d\xf5\x70\xce\x6a\x34\xf7\x30\x2d\x06\xa4\xc6\xb1\xbc\xc4\x8d\xa6\x0f\x3c\xc7\x27\xf4\x41\xad\xa5\xba\x3c\x7b\xa4\x8c\xbf\x4c\xb9\x03\xed\xa0\x08\x0a\x50\x5f\x9d\x38\xb8\xe5\x57\x6b\x8f\x60\x61\x81\x45\xed\x1c\x94\x96\x67\xfe\x54\x9c\x7f\x51\x01\x23\x32\x3f\xf2\x39\xfd\xe2\x39\xc4\x89\x02\x62\xa3\x45\x84\x8a\xc3\x0d\x3b\x41\xe3\xa7\x83\xc2\x7e\x3d\xfc\xe4\xab\xca\x67\xbe\xda\x50\xaf\x7f\xbe\x1d\x25\x42\xe8\xa8\x08\x85\xec\x04\xb0\xf2\xa5\x7e\x6f\x14\x12\x2e\x11\x80\x06\x91\x7d\x69\xed\x20\xeb\x03\xe2\xe7\x77\x55\x84\xd5\x37\x7e\x9a\xed\x29\xf7\x85\xf0\x6c\xb8\x8a\xfb\x2d\x4f\xc9\x34\xa3\xc9\x67\xe7\xd3\x6d\x9d\xfa\x23\x7a\xfd\xdb\x6f\x57\x72\xf5\xcc\xa4\x8f\x3a\xf9\xd9\xaf\x69\x31\x1d\x26\x8f\xe2\x99\x4c\xcf\x76\x3e\x8f\x1d\xd8\x70\x71\x2d\xda\x74\x78\x84\xfb\x37\xdc\xb8\x1f\x03\xa8\x65\x05\x94\x06\x4b\xc6\x7d\x69\x11\x22\x67\x9f\xa9\xe1\x76\x09\x65\xa7\x50\x8c\x64\xe0\x6f\x62\xce\x9c\x1e\xe6\xe0\x09\x6a\xaa\xa0\x8f\x72\x5d\x15\x7f\x01\x5e\x12\x31\x2a\x51\xef\xa1\x5b\x10\xc2\x02\xf7\x30\x07\x7e\x18\x67\x7b\xca\x70\x8a\x35\xe5\x11\x3d\xdb\xb1\x01\x1b\xd9\x5c\xf7\x94\xd8\xf6\x15\x05\x42\x66\x6d\x18\x91\xa4\x7f\xd4\x5e\xc7\xaf\x3c\xed\x0c\xe1\x5b\x8a\xed\x85\xb1\xae\xdc\x62\xa5\xf2\x2d\xe6\x57\xb8\xd6\x2f\x0a\xd7\x40\x4a\x89\xac\x63\xe9\x83\x11\x90\x2d\x79\x3b\xa6\x92\x96\xb8\xbe\x72\x03\x6a\xc0\x6c\xb4\x3c\x27\x69\xb9\x1b\x62\xc0\x4c\xe6\x3d\xd1\x00\x9d\x57\x51\x5f\xc3\x3f\xb1\xfc\x26\xda\xf6\xd7\x91\x67\x62\xe4\xe6\x34\xdc\x01\xf6\xd5\x35\x4a\xd9\xb0\x8d\x98\xb2\x41\x08\x93\xdd\x84\xc6\x5f\xa8\xdc\xfe\xc0\xc6\xce\xfe\xd1\x0b\x2f\xb4\x83\x24\x5e\x35\x31\x6d\x7c\x42\xe6\xa2\xfa\xd3\xea\x38\x7a\x78\x4c\x34\xa0\x90\x73\x5a\xe1\x72\x5f\xd3\xb4\xa4\x75\x5a\xe7\xa3\x87\xdb\x41\x5a\x30\x79\x94\x04\x3f\x6a\x05\x5f\x54\x52\x8d\xd7\x2b\xb3\xae\xbd\x30\x51\x78\x8b\x9f\x68\x32\x9b\x9f\x38\x66\x89\x22\x8a\xba\x3e\xc5\x20\x16\x63\xc3\x7d\x7d\x3e\x69\x00\x1f\xb1\x98\xa6\x22\xc1\xfa\xb9\x62\xa2\xf9\xb9\xa7\x85\x54\x30\xa2\x3b\xa5\xd0\xca\xaa\x25\x75\xba\xa2\xb3\xe7\x39\x08\x0f\xf9\xb0\xbd\x0a\x60\xa3\x15\xfe\x77\x6f\x28\x7d\x46\xa6\xc1\xb0\x22\x32\x96\xa8\xf6\xbe\xa7\xa8\xd9\x5f\xd7\x1d\xd6\xef\x35\x01\x16\xcb\xff\x5a\xf3\x08\x84\x20\x1e\x2d\x1f\x37\x4d\xa5\xae\x9a\x21\xf1\xec\xb6\x54\x81\x44\x29\xde\x5f\x54\xc9\x76\x3f\xec\x72\x11\x43\xd2\x81\x7b\x9e\x2a\xeb\x3a\x26\x9e\x61\xd2\xef\x8f\x7c\xb0\xeb\xa0\x3d\xc0\xd9\x0c\x9f\xa8\x94\xc4\xc4\x31\x5a\x42\x12\x1a\x28\x37\xab\xe5\x32\xef\x79\x3b\x8a\xac\x4b\xcb\x4b\xed\x67\x67\xe7\x9f\x2a\x1d\x1b\x16\xe1\x0c\x05\xef\x00\x12\xcc\x40\xf0\x05\x21\x06\xba\xd1\x18\xeb\xa7\x01\x9d\x67\x04\x1f\x40\xfb\x16\xc0\xd6\x56\xa7\x3a\x1b\x57\x5e\x13\x62\xb7\xdd\x1b\x0e\x28\x71\x9b\xfa\x39\x08\x6d\x6f\xc0\x8e\x32\x8c\x81\xac\x06\xb6\xe6\x1d\x98\x13\xdc\x2c\xca\x5c\xb8\xa3\x19\x54\x14\x60\x34\x5e\xc5\xdc\x06\xea\x4b\x57\x29\xa2\xc7\x33\x60\xc2\x18\x61\x48\x55\x50\x9d\xfb\x0d\x2d\x88\x23\xed\x3c\xf5\x7b\x32\xff\x26\x62\x8c\x74\xf9\x48\x10\xf6\x76\xdc\x00\xc3\xf5\xc9\x27\xac\xb7\xeb\xf7\x7c\xbc\x4a\x84\xba\x37\xd4\xac\xfa\x8d\x9a\x77\x7f\x76\xf6\x99\x76\x66\xe2\x5c\x05\x05\xd2\x57\xd3\xd2\x94\xb5\xe8\x6b\xfe\x68\xbb\x5f\x86\x2d\xe5\xdd\xe1\x39\x23\x8c\xab\x94\x32\x85\x70\xc1\x01\xee\x62\x3f\x4d\x93\x35\x06\x74\xc9\x2b\x69\x59\x3a\x97\x2b\x8d\xf3\xa6\x48\x13\x19\xea\x03\x27\x44\x82\x4a\x4b\x98\xa1\x96\x9a\xe1\xd5\x5a\x45\x18\x93\xd4\x45\x96\x13\x45\xa0\x94\x1b\x11\x5c\xde\xd3\x03\x39\xf7\x6a\x96\x6d\x79\xb6\x8c\x2e\x53\x10\xc9\x31\x99\x80\xa2\xc5\x3b\xad\x50\x7f\xad\xce\xce\x87\xf3\xdc\x52\x7b\x44\xb1\x49\x69\xaf\x65\xaa\x9e\xfa\x82\x7c\xa2\xb0\x9c\x23\x3f\xf6\x07\x96\x8f\xc5\x6e\x16\x4b\x07\x7f\xb1\x49\x8c\xcd\x1f\x19\x12\xae\xe5\xd6\xb0\xd0\x2b\xe0\xfe\xf8\xac\x19\x74\xe6\x67\x89\x05\x9d\x71\x64\xad\x74\xd9\x4f\xdb\x86\xe3\xd8\x1f\x9b\x74\x8f\x43\xdd\x73\xce\x29\xfb\x4e\xe1\x29\x8f\xd3\x3e\x60\x9e\x5a\x9a\x76\xb0\x1f\x52\xd1\x58\xad\x15\x7f\xf4\x70\x3b\x86\xb8\x9e\x65\x86\x5c\x9e\xb5\xfc\x81\xe5\x9e\x43\x3a\x76\xdb\xba\x0d\x3f\x36\xa3\xd0\xcf\xe8\x8d\xa0\xa8\xf3\x1a\x2e\x0a\x3b\xed\x7a\x85\x97\xc6\xa5\x2c\x41\x52\xa4\x4c\x00\x82\x6f\xff\x23\x38\x72\xab\xf9\x56\xee\x49\x38\xef\x7a\xfc\x4f\xa1\x51\x1a\xe6\x49\x6c\x18\xc2\x03\x58\xf9\x96\x52\x64\xda\xb2\x0f\x2d\x4b\xa2\x72\x4b\xd8\x5a\x07\xaa\x94\xf0\xfe\x6f\x53\x1c\x23\x65\x46\x27\x84\x19\x25\x33\x2a\xfd\xd1\x35\x70\x14\x1f\x90\x23\x5d\xf7\x5c\xfd\xe2\x16\x56\x2e\xee\xf4\xbe\xca\xd7\x93\xb1\x89\x4b\x6f\x66\x19\x70\xc1\xa7\x0d\x13\x75\x0f\xef\x0c\xfb\xf9\xfd\xc6\x8a\x31\x20\x89\x59\xcb\xc1\x98\x2f\x4f\xb4\x8a\x40\xc3\x4a\x7c\x5e\x06\x74\x78\x49\x71\x98\x0c\xdb\x21\x31\x73\x45\x90\x37\x1a\x3f\xe2\x24\xce\x6e\x7b\x2e\xe7\x7c\xdd\x73\x51\xed\xa6\xa7\x04\xe8\x76\x6d\x28\x01\x3a\xae\xe3\x69\xea\x77\x54\x7b\x6e\xd1\x9e\x11\x18\x64\xd3\x84\x62\x64\x4c\xbf\xc0\x4b\x94\x14\x41\xf3\x09\xab\x07\xd9\x2d\xd6\x4d\x9a\x41\xae\x40\x53\xd1\xb2\xda\x15\xfd\x2a\x52\xb5\x93\x74\x03\x80\xd3\xfe\xac\x49\x73\x3b\x2b\x46\xa3\x10\xf1\x11\xbe\x09\xe6\x0e\xd7\xff\x11\x65\x6c\xd2\x73\x6c\x58\x7b\x41\x32\x1a\x15\x71\x98\xe5\xd9\x34\xf6\x36\xe2\x8d\xc7\x3b\x0a\xa9\xd2\xa2\xd8\x5c\xb4\x5f\xb5\x02\x9a\xaa\xb4\xad\x25\xe9\x0a\x69\xe4\x7e\xe1\x77\xac\xd2\x4d\x79\xe5\x32\xa7\xeb\x34\x77\xbe\x49\x05\x38\x04\xa9\xff\xb7\x1a\x51\xbe\x3d\x71\xdb\xeb\x9a\xdd\x93\xdd\x22\x8d\x05\x9a\x87\xb2\xd3\x4d\xfa\x9c\x22\x89\x7c\xc6\x4a\x92\x4b\x23\x6c\x64\xe2\x6c\xcd\xf8\x29\xd1\xac\x0b\x3e\xb0\xfc\x2b\x3e\x56\xa1\x56\x3e\x4c\x8d\x79\x42\xd3\xfd\x9f\xf7\x94\xaa\xf1\x5d\xcf\xdd\x10\x71\xff\x6e\x5f\x22\xcf\x8f\x9f\x3f\xa6\x80\x81\x1c\x96\xc1\x8f\xdf\xa7\xfb\x45\xfd\xed\x7d\xcf\x69\xb0\xfe\x18\xf5\x10\x54\x10\x40\xdd\x8b\xa8\xfa\x96\xa7\x60\xa6\x6f\x78\x4a\xaa\xe1\xae\xde\x56\x4c\x52\x8c\x28\xe2\x0e\x62\x3f\xec\xe5\x33\x4a\x40\xf2\xa3\xca\xbc\x59\x1c\x31\x5b\x21\x73\x97\x60\x4d\x0a\x91\x49\xdd\x5d\xb7\x03\xbf\x20\xa9\x45\x16\x80\x10\xf9\x82\x96\x65\x5f\x3d\x69\x47\x67\xc3\xd8\xf4\xfb\x61\x50\x06\xfe\xeb\x2d\xd5\x3d\x41\x1a\x2b\x80\x13\x57\xac\x34\x71\x2f\x59\x73\xd3\x50\x4a\x19\x50\xc8\x01\xce\x37\xa0\x6d\xda\x61\x1c\x84\x3d\x63\x35\x2c\xd0\xf9\x3a\xe5\xa9\x9e\xd8\xa9\x06\xb6\xea\x23\xa4\x6e\x9b\x65\xe1\x2a\xa8\x0c\xdd\x54\xa0\x05\xe3\xbf\xea\x52\x06\x3f\x4d\x43\xd3\x9b\x71\xff\x76\x69\xa2\x74\x42\x1f\x57\x54\x44\x0f\xd5\xdc\x3e\x57\x04\x90\xf3\x7d\x67\xe7\xb8\xef\xe7\xca\xab\xf8\x45\x15\xe8\x9e\x99\x28\xee\xde\x3b\x94\x07\x8a\x4a\x28\xb9\x72\x24\xd0\x27\xd5\xf4\xe3\xbe\x8e\x4b\x10\x5f\x43\x74\x88\x17\x7e\x82\xb6\x11\x2b\xb4\x51\x12\x67\x49\x0b\xe6\xe6\xb8\xce\x3e\xd5\x29\x57\xaf\x1d\x0f\x3a\x24\x40\x82\x7f\xa7\x33\x68\x96\xb4\x60\xbd\x00\x44\x11\x76\x00\xfa\xcb\x5f\xb4\xea\xab\xad\xe7\x96\xaa\x2a\x94\xb8\xa5\xa9\x8e\x1a\xcf\x7a\x73\xe2\xc6\xba\x7e\x8a\xb5\x0e\x5e\x9d\x5d\xdc\x86\xc0\x92\x38\x4b\x21\x2f\xb3\x02\x60\x6e\x08\x51\xd7\x3d\xb2\x19\x98\x01\xe1\x61\x58\x54\xe4\xaf\x4d\x14\x8f\xef\x3b\xe0\x82\xc2\x4f\x3a\x15\xff\x35\x3f\x5a\xd9\x43\xcf\x17\x0e\x69\x1f\x39\x27\x5b\xd1\x2e\x1f\x9d\x0d\x72\xcb\x3b\x96\x7d\xeb\x3a\x0f\x04\xb6\xdf\x3e\x55\x51\xea\x48\x7a\x45\x60\xf6\xd2\xa5\x60\x5d\xec\xc5\x0d\x73\xe8\xa9\x78\xce\xae\x2a\xa1\x80\x4b\x4a\x84\xf9\x86\x82\x62\xdd\xc0\x43\x41\xca\xb7\xa5\xdb\xe4\x61\x16\xf8\xd1\x7e\x45\x58\xcd\x80\x00\x3e\xd1\x58\x67\x1e\x50\xd5\xce\x42\xd8\xab\x1d\x6a\xff\x9a\x12\xd3\xff\xeb\x89\x92\x08\xbe\xe8\x29\x40\xe0\xc5\x89\xae\x31\xd1\x0d\xa0\xd0\xfd\xbe\x7a\x08\x3d\x93\xa7\x49\x98\xef\xa5\x8b\xab\x30\xd6\x61\xdd\xff\x01\x45\x1e\xb8\xc1\xfb\x5c\xf7\xb6\x18\x6f\xab\x41\xf9\x75\x5c\x84\x14\x2a\xcb\xab\x66\x0e\xf1\x06\xba\xf7\xe5\xf6\x5a\x48\x9a\x4a\xe5\xeb\xb4\x10\x80\xf2\x25\x48\xdf\x58\x66\x57\x46\x83\xd1\x94\x62\xcf\xbb\xea\x69\x3f\xf6\xaa\x62\x6b\x39\x5f\x33\x11\x87\x16\xdb\x79\x6a\xfc\xde\x28\x8c\x22\x36\x2d\xc2\x9a\xd5\x72\x0c\x5a\x2e\x62\x35\x7e\x60\x66\xe8\x26\x2a\x95\x02\x4d\x38\x84\xd5\x3e\xd3\x51\x74\x57\x7f\x4d\x4f\xe7\xe3\x68\x38\xe6\xe6\xdb\xfd\xd0\x69\xd5\x62\x89\xdd\x56\xd0\xde\xdb\xb6\x57\x56\xc4\x19\x51\x27\x00\xdd\xc9\x41\x97\x96\x63\xbb\x57\xc3\x42\x50\x83\xb8\xeb\x07\x2b\x51\xc2\xf1\xbf\x16\x9a\x16\x61\xad\x7a\xe9\x73\xa9\x9d\x15\x29\x66\xa2\xf9\x15\x63\xc9\xa1\xab\xfc\x16\xcc\x87\xae\xea\xc3\x26\xdd\xb4\x7b\x71\x35\x10\x45\x53\x98\x0f\x4c\xd0\xc1\x81\x9f\xd0\x6b\xf9\xbe\x82\x85\x47\xd1\xc1\x56\xeb\x90\x22\xae\x72\x6e\x9a\x5e\x11\x1a\x71\xa8\x2d\xdd\x53\x74\x1b\x4c\x42\x6f\xc7\x77\x2c\xb5\xf1\x5d\xc5\x38\x72\xd3\x3e\x47\x4c\xce\x86\x92\xef\x21\x99\xb8\xed\x39\xb8\x03\xd3\x77\x88\xcc\x67\x3d\x63\x7c\xa6\x1d\x46\x91\x19\xf8\xd1\x94\x43\xc3\x9e\x9c\x28\x92\xab\xff\xa4\xb4\x82\xcf\xd8\x87\x12\x14\x11\x02\x35\xbd\x39\xf0\x96\xdf\xf6\x14\x34\xe7\x64\x2d\xcf\x2c\x93\xd4\xa1\xf1\x7b\x0c\xe1\x87\x64\x9c\xc0\x5f\x1d\xc2\xf1\xaa\x1a\xea\xbc\xd2\xa4\x71\x9e\x0f\x13\x9a\xe9\x8c\xd6\x21\xc0\xac\xa9\x28\xf9\x58\x49\x3c\x06\x49\x92\x02\xcc\x27\x7a\xc1\xf4\x5c\x44\x30\xb8\xe5\x74\xa8\xf4\x54\xd0\x69\xf8\x65\xf9\x93\x86\x86\x84\x79\x69\xcc\xcc\xec\x82\xa6\x43\xc1\x99\x8f\x37\x1a\xc9\x0a\xd2\xb1\xc9\x8b\x32\x45\x7a\x76\xd6\x8e\x32\xaa\xb1\x46\x5b\xd2\x1b\x85\xbd\x5e\x64\x84\x2f\x8e\xd5\x28\x35\x72\x6c\xa2\xea\xa2\x37\x6d\xd7\x6c\x35\xf4\xbb\x91\x51\xb8\xe9\x77\x15\x24\xed\xdd\x06\x56\x89\x76\xdf\xf4\x4c\xca\x39\x5b\x23\xd8\x51\xa8\x13\x73\x13\x0c\xe3\xf0\x2b\x85\xe0\xac\x79\xee\x57\x75\x04\xee\xa8\xee\x69\xd7\x4f\x83\xc8\x5f\x9f\xaa\x54\xb0\xdc\x86\x3f\x37\xd1\xe3\xfe\x72\xf5\xeb\x26\x62\x52\x31\xf1\xa4\x3f\xd6\x2c\x3d\xaf\x4d\x94\xec\xe7\xb1\xda\x2b\x39\xb4\xd8\x0e\x12\x82\x22\xc0\x76\x4a\x01\x58\x55\x38\x59\x01\x0d\xdb\x6a\xca\xb2\x82\xa1\xda\x22\x25\x24\xd4\x0a\x39\x2c\x45\x08\x71\x8c\x92\x26\x19\x5e\xd0\x79\x5a\xb1\x8e\x2e\x16\xec\xcb\x19\xed\x4f\xce\x78\x4f\xbb\x16\x31\x55\x96\x73\x52\x56\x9e\xa1\x3a\x9b\xed\x70\x2f\x4b\x66\xf5\x8a\x42\xbc\xfc\x98\x1c\x32\x3e\x73\x57\x4d\x1e\x9f\xb2\x25\x46\x22\x9f\x08\x31\xe0\x86\x04\x72\x4f\x47\x41\xc4\x2f\x29\xbf\xb9\xa9\x08\x35\x2e\xd5\xec\x00\x19\xd7\x28\x5c\x15\x48\x97\xc8\xf1\xbb\x35\x74\x52\xb3\xde\x44\x26\x1d\xac\x97\xeb\x52\xc1\xda\x78\xf6\xd7\x12\x53\x3a\x4e\xb0\xb3\x93\x0a\x36\x68\x68\x46\x7e\x4e\xbc\x27\x4a\xbf\x15\xaf\x58\x90\xd3\x0d\x4b\x94\xc7\xd0\xe1\x5a\x78\x80\xcc\x73\x25\x97\xfa\x0c\x35\x91\xaf\x61\xea\x1b\x11\xba\xb4\x45\xca\xfb\xe3\x63\x65\xb0\x5f\x4c\xd6\xf7\xea\xa2\x43\xcb\xd2\x01\x5e\xf6\x34\x28\x1f\x51\xaf\x50\xed\xba\x22\x35\x4f\xc0\x89\xde\x88\xc2\x94\x5c\x6e\x62\x2d\xed\xa5\x7e\x3f\xc7\x1e\xb2\x12\x25\xb6\x8f\x79\xd1\x5a\x80\x38\x89\xc7\x69\xd2\x0f\xc1\xc5\x82\x6d\xb3\x6b\xc3\x6d\xa1\x5d\x1d\x45\xc8\x94\xf4\x7a\x53\xe5\x2a\x41\x59\x71\x77\xa7\x5c\x55\x22\xfa\xe7\x80\x74\x67\xd5\xb4\x73\x98\x25\x44\x15\x34\xad\x56\xec\x09\x8e\x3a\xf8\x8c\x96\x4d\x93\xc6\xfa\x01\xdb\xca\x0f\x92\x61\x12\x31\xed\x04\xbc\xd8\x19\x45\xf9\x53\xaf\x2f\x90\xf0\x59\xf8\x95\x22\x64\xa1\x5f\x5b\xd3\x72\x44\x04\x6a\x62\xe5\x38\xc2\x4c\xe9\x6d\xba\x99\x88\x22\x2e\xb2\xc2\x8f\x08\xb7\x24\xea\x66\xb8\x74\x7c\x16\x9c\x4d\x88\x20\x4f\x6a\xb2\xfc\x6d\x3d\xdd\x99\x60\xd7\xef\x71\x33\x6c\x57\xbc\x4a\x37\xb6\xfc\x71\x84\xd4\x77\x00\x14\xe7\x13\xc5\x57\xb4\x43\x17\x4a\x9b\x86\xc1\x30\xff\x8c\x2a\x19\x7a\x65\xe6\x01\x97\x79\x16\xbe\x05\xd7\xf7\x08\x08\x53\x51\xb3\x12\xbc\x85\x28\xa1\xa0\xe1\x86\xbd\x9f\xeb\xc6\xda\x43\xc0\x39\x44\xbd\xa4\x4c\xc1\x98\x79\x1d\x85\x7f\x98\x04\x4e\x8a\x00\xed\xbb\x4a\x46\x0c\x76\x75\x0f\x6a\x45\x30\x36\x0f\x88\x0a\x55\xa6\xac\x15\x48\xf0\x14\xd5\x17\xf1\x5e\x6e\x4e\x14\x8b\x28\xea\x51\xb8\xc8\xa9\x8e\x63\x66\xbe\x8b\x7a\x14\x80\x75\x8f\x6e\x94\x69\x9b\x74\x5e\x94\xb0\xff\x55\x4f\x89\xeb\x1d\xa0\xb5\x0a\x07\x77\x5e\x81\xe4\x2e\xa8\x8e\x28\x01\x6c\xa6\x1d\x97\x58\x0b\x45\x0a\x9e\x1b\x25\x32\x06\xfe\x87\x0e\x5d\xbd\x0c\x94\xfe\xff\x3f\x06\xf9\xec\xc7\x79\x18\x84\x63\xa5\xb1\x8d\xbf\xb8\x80\xc7\xc5\x27\x0a\xc7\xe9\x17\x65\xc8\x11\xbe\x6c\xc0\x20\x8b\x94\x0f\xbc\x7a\x7c\xac\x6a\xf7\xd9\x30\x41\xaf\xd7\x45\xe2\xff\x42\x71\xd9\xfe\x8b\x26\x4e\xd2\xb5\xd4\xcf\x87\xad\x8a\x88\xa9\xca\xce\x1d\x6c\x8e\xa8\x14\x7b\x26\x95\x56\xb2\xcd\x78\x14\x71\x4b\x8d\x97\xfc\xb9\xa5\x96\xea\xe6\xb0\x6e\x09\x9f\x28\x6d\x83\x20\xf2\xc3\x91\x14\xa9\x10\xcf\x3d\xa0\xab\x90\x87\xe3\x68\xad\x2f\xdb\xa1\xa3\x38\x0c\x56\x58\xa3\x40\x14\xe0\x5a\x4a\xf4\xcd\xcd\x40\x84\xa9\xcf\x9d\x33\xb5\x22\xe6\x6d\x93\x4e\xe5\xaa\x21\xcd\x6c\x80\x2d\x12\x46\xf1\xbb\x0a\x44\xf2\x5d\xe4\x4f\x1c\x19\x63\x8f\xda\xf9\x05\xbb\x28\x19\x03\x8c\x64\xea\x6f\x35\x73\xd7\xdf\x3a\x69\x8e\xa2\x9b\xb1\x74\x9a\xd2\xcd\x6f\x59\xa1\xd7\xa6\x26\xcb\x22\xc0\xa4\x1c\x2f\x89\x9c\x78\x4b\xe9\x8c\xef\x64\xe1\x94\x35\x97\x9a\x55\xc5\x51\x2a\x48\x14\xb5\xde\x3e\xa8\xca\x5e\xc5\xf9\xe3\xe5\xe6\x43\x44\xbc\xa5\x55\x64\x6e\x7b\x8a\x65\xfe\x23\x18\x05\x91\xd6\xa0\x07\x2c\x62\x32\xaa\xbd\xc6\xe2\x0c\xba\x27\x6e\x75\x8b\x6c\xf4\x79\xc6\x53\xec\x82\x2c\x3b\x0c\x43\xbe\x87\xaa\x0b\x4c\x75\xe9\x29\x3f\xbc\xa5\x48\x19\x6e\xa0\x04\x02\x27\xb1\xbf\xe3\x8a\x77\x69\x92\x58\xe5\x4f\xc0\x3d\x50\xc6\xe4\xe3\x86\x72\xf0\x52\xdb\x0f\xf2\x04\xe3\xb1\x76\x50\xc5\xce\xd9\x5c\x9e\x3c\xed\x36\x5b\x6e\x4c\xb4\x96\xa4\x2b\xc4\x41\x6e\x5d\xf2\x8e\xb9\xd8\x26\xfd\xcd\xd4\x8f\xa2\x50\x26\xdf\x90\x43\x7e\x77\xa2\x92\xcb\xef\x36\x85\x22\x71\x92\x53\x80\x4d\x06\xcc\x66\xcc\x2e\x12\x50\xdb\x69\x9c\x64\x61\x4e\x1c\x5f\xb6\xde\xfe\x00\x6f\xc1\xca\x45\xce\x1f\xb5\xfd\x7f\xfa\x42\xa1\x40\xa5\xe7\x28\x42\x92\x3b\xf3\x1f\x47\xdf\xb1\x1a\x46\x53\x44\x2e\x61\xd9\xdd\x2c\x3c\x89\xd1\xca\x88\x68\x5e\x51\x2d\xec\xae\x1f\x45\x49\x4e\x8e\x53\xf1\xa3\x5a\xde\x68\x05\x1d\xde\xd5\xd1\xa2\xed\x4d\x73\xb0\xc5\x78\xcd\x4f\x7b\xd3\x8e\xf9\x74\x0f\xd9\x72\xae\x1d\xd3\x57\xe9\x32\x92\x08\x0e\xb9\x6a\x7b\x79\x2d\x4c\x80\xb2\xe4\x2a\x91\xca\x08\xd6\x96\xc6\xaf\x54\x87\xa0\xa5\x1b\xa7\xdd\xac\x04\xc8\x23\x3f\xcf\xb9\x3b\xf1\x3c\x27\x93\x57\x2b\x41\x02\xb7\xea\x98\xe7\xdb\x53\x20\x86\x33\x6a\x12\xac\x17\xa6\xb9\xae\x09\x5f\x44\xb0\xc7\x27\x4e\x96\xc2\xf4\x7a\xeb\x44\x28\x56\x91\x9a\xc3\x52\xc2\x8c\x96\x94\x89\x1d\xaf\xd4\x29\xca\x82\xe4\xff\xbb\xb9\x9e\x51\x12\x17\x20\x7e\x24\xd3\x84\x22\x37\x4f\x73\xf2\x89\x9d\x80\xcd\x82\x61\x92\x44\xb9\xf1\x83\xa1\xcc\x40\xa1\xe6\x7f\x59\xc9\xd1\x5e\x6e\x90\xbd\x59\x6a\x77\x4d\xf9\x84\xa8\x3c\x62\x09\xab\x1c\xdc\xf0\x7b\xaa\x26\xf8\x00\xb6\x44\x72\x96\xba\xc4\xcd\x3c\xe1\xc0\xc3\xc0\x79\x54\xc6\x86\xd0\xb6\x15\x9c\x88\x1a\xc3\xa5\x62\x3b\xc0\xfb\xc0\x6b\xfe\x9c\x3e\xc9\xc7\xca\xf5\x8e\x4d\x1a\x94\x8f\x62\xc0\x93\xb3\x88\xb4\xbe\xa5\x08\x59\xcf\x4c\x5c\x03\xa2\xce\x6e\x4d\x75\x77\x07\xc9\xc3\x3e\x7d\x57\x65\xfd\xef\x36\x6a\xe1\x07\x3e\x15\xd3\x5c\xa1\xe0\xca\x44\xd5\x03\xae\xa8\x71\x15\x3f\x1a\x25\x59\xbe\x5f\x55\x4a\x14\xa5\xda\x26\x50\xcb\x42\x36\x54\x5e\xa8\xe5\x4b\xb4\xb3\xb0\xd7\x26\x6e\x76\x76\x2f\x45\x53\x2c\xba\xea\xa9\x06\x2c\x70\xf4\x32\xf3\x4b\x0b\x12\xf9\xe8\x69\x6d\xf4\xff\x58\x21\x4b\x0e\x2f\xff\x73\x05\x1d\xba\xa5\x59\xa4\x6f\x35\x31\x97\xc4\x21\xbb\x42\xe6\xe0\xa8\xf0\x71\x7c\xd2\x02\xf7\xbb\x61\x6c\x5a\x3b\x1a\xde\x4b\x16\x6b\x56\x87\x53\x2e\xb7\xcb\xcc\xb7\x48\x4d\x96\x8c\x8c\xea\x2a\x82\xe8\x4b\xe8\x2c\x14\xd8\x3d\x2d\x82\xd0\x8f\x50\x76\xd3\x3a\x3f\x58\xf9\x00\x7a\x4a\x76\xf9\xb8\x82\x6b\xf7\x63\x93\x52\xab\x47\x84\xc4\x4b\x63\xc4\xc7\x35\x0f\xb0\x74\xf8\x48\xbb\x67\x46\x3e\x8d\xaf\xb9\x91\x5e\x0c\x0e\xf2\xb1\x4a\x11\x0f\x87\xd1\x4c\xeb\xcb\x5f\xb4\x5e\xde\x21\x4a\xf8\xfe\x6d\x22\x63\x5f\xfd\x27\x91\x8e\x73\x79\xdf\xd6\x38\x00\xa5\xd2\xc4\x0f\x13\x35\xd1\x7f\xae\x76\xa1\x62\xee\x23\x91\x11\x44\x35\x1e\x72\x60\xb0\x5d\x28\x34\xda\x6b\x73\x69\x92\x1f\xa6\x6b\xfe\x3a\xfc\x22\xf2\x9f\x07\x3a\x19\x7a\xe0\xb9\xf0\x2c\x2f\xd2\x18\x8f\xdc\xce\xe0\x3a\xc2\x1e\x05\x37\x7f\xcd\xf2\x70\x24\x45\x3e\x48\x2c\x16\x12\x2b\xf9\xa4\xa2\xf6\xb9\xa3\x66\x6c\x2e\xa9\x47\xb9\x78\xf4\xa8\xe2\xf8\x38\x8b\x0b\xe2\x13\x6b\x4e\x47\x61\x6c\x04\x87\x82\x96\x3f\xe5\x35\x82\x24\xdc\x55\xc3\x66\x2e\xcf\xb6\x7f\xe9\x8b\xff\x7c\xe9\x8b\x5f\x58\xdc\xe7\xd2\x91\xcb\xb4\xc4\x10\x35\xed\xd9\x50\xd3\x70\x2c\x84\x21\x49\x8b\xc3\xb2\xdd\x52\x72\x17\x3f\x9c\x28\xdd\x83\xbb\x4e\xab\xe1\x7f\x39\xb0\xa1\xf4\x87\xef\x78\x4f\xef\xb8\x94\xcf\xd1\xbc\x2f\xed\x24\xd6\xf0\x98\x28\xf5\x9d\xd7\x15\x4f\x62\x56\x84\x12\xe5\x08\x89\x7b\xf9\x2b\x7c\x5c\xaf\xd4\x1c\x06\xd6\xa9\xca\xf1\xf2\xc3\x89\x62\xbb\xbe\xaf\xba\xca\xdb\x8a\x44\x60\xc5\xc4\xb1\xe9\xad\x4f\xb7\xbe\x34\xef\x78\x7f\x4a\x7b\xc6\x27\x5e\x45\xfb\xad\xa5\x44\xe1\x1c\xa3\xd5\xc8\x8c\x92\x14\xe5\xc5\x43\x8b\x0e\x1c\x6c\x5b\x35\x17\x1d\x5a\xc3\x84\x5d\x4c\x7d\xc8\xb8\x45\x85\x6d\x42\x0d\x85\x96\xfe\x22\xf5\xd7\xb3\x29\x07\x50\x40\x6c\x88\x9f\x07\x01\x9f\xe2\x97\x92\xd5\x1a\x8a\xc4\x81\x2d\xa4\x4f\x1c\x60\xf3\x9e\x62\x2e\x1b\x90\x18\x7c\x3a\xe3\x06\xfc\xdf\x87\x55\x45\xd9\xe0\xa7\x13\xc7\xe2\xb1\x87\xd8\xfb\xf8\xff\xd3\x0f\x23\xaf\x68\x75\x9e\x50\x63\x2a\xab\x49\xb4\x6a\xb2\x69\x8a\xd7\xb4\xee\x3b\x12\x12\x6c\x15\x3e\x26\xb3\xce\x9f\xb1\x65\xd4\x6e\x12\x65\xb9\x49\xad\x43\x12\x69\x3e\xd7\x97\xde\x54\xb9\x64\x14\xc6\xbd\x8c\xe9\xa8\x65\x5c\xa2\x65\xb5\x1c\x36\xd5\x5e\xcf\x46\xc9\x8a\x15\xa6\xb3\x2e\xc3\xce\xc8\x6f\xaa\x82\xb8\x1f\x06\xc3\xb0\x6a\x89\x15\xb1\xd0\x2f\x35\xd5\x07\x47\x7e\x5c\xf4\xfd\x32\x31\xb3\x17\x2e\xed\x51\x67\x87\x7e\x5a\x9b\xd5\x9f\x3f\xda\x1e\xf8\xe5\x6a\xb5\x6e\x1e\x85\x3b\x06\x85\x4c\x2a\x06\xc7\x49\xbc\xaf\x26\x51\x11\xe7\x18\x27\x51\xe3\x68\xf7\x94\x54\x72\x7d\x96\x73\x71\xf1\x88\x9d\xe5\x54\x7f\x84\x4a\x33\x1f\xd7\x5c\xfd\xdc\x5c\x3b\x35\x99\x34\x34\x90\x88\x9d\xc1\x02\x81\xe7\x78\x4d\xc1\x47\xdf\xb5\x22\x9f\xe3\x70\x34\x6e\xa9\x41\x67\x2c\x01\x3e\x56\xc8\xd9\x6c\x98\xac\xa5\x49\x32\x6a\xe9\x9c\x58\xe7\xca\x0d\x72\xe0\x51\x92\xe5\x33\xd4\x46\x17\x31\xcb\x29\x27\x30\xbd\x97\x22\x49\x51\x6e\xa7\x26\xb7\x54\xab\x5c\x8d\xf7\x94\x12\xf5\x5a\x25\x26\x4e\x55\x6e\xe2\xbd\x28\x9c\x68\x6e\x55\xd0\x50\x21\x9b\x5c\xc4\x22\xec\x99\xf8\xa4\xe6\x99\x16\x16\xda\x45\x1c\xe6\x49\x91\x4a\xc5\x5d\xa0\xdd\x2e\x37\xde\xc0\x57\x20\xe6\xd9\xb5\x61\xbb\x1b\x26\xcb\x0c\x0d\xed\xbb\xda\xf9\x09\xaa\x42\x49\xe9\x51\x3e\xd9\x33\x71\x52\x38\xcc\x25\xbe\x68\x0b\x25\x0c\x3e\x51\x5e\x2c\x33\x7e\x3e\x4d\xab\x53\x9a\xa5\x2d\x4b\xd4\xb7\xaf\xe3\x56\x21\xf7\x01\x24\x6b\x6e\x88\x19\x8b\xb8\xef\x87\x29\xbd\xb7\xa6\xc8\xc0\xc5\xea\x3d\x33\x4e\x4d\x86\xcc\xbe\x8c\x91\xed\x40\x9c\x45\x10\x5c\xa8\x05\xdf\x87\x16\xdb\xe3\x34\x0c\x42\xde\x19\xb0\xe3\xd7\x95\xfe\xee\x49\x4d\x7c\xfe\xc0\xda\xd5\xae\x61\x4c\x71\x93\x32\xc2\xe3\x8a\x6e\x62\x3c\x36\x31\x0d\x62\x59\xe2\x95\x43\x96\xa0\x69\x52\xf7\x57\x71\xd2\xe3\x3c\x09\xe1\xde\x2e\x84\x2e\xc8\xcf\xdf\x9d\x28\xba\x0b\xf4\xd8\x84\x16\x7e\xe7\x8a\xf8\xed\xe7\xda\x59\x9e\xfa\x50\x0f\xb1\x78\x2f\x58\x2c\x29\x2f\x3e\xa5\xe7\xbc\xf3\x30\x0e\xf2\x68\xbd\xa5\xe8\x15\x50\x5c\xe5\x63\x35\x1c\x1b\x14\x5d\xa4\x0b\xe8\x4b\x61\x26\x9c\x8f\x6b\x36\x4b\x82\xa6\x24\xf5\xe3\x17\xcd\xa8\x88\xb9\xcc\x8d\xc2\x8e\xd6\xe1\xb9\x40\xe0\x10\xa4\x87\xdf\x99\xb8\x91\xb1\xe3\x93\x7d\x52\xe4\xce\x1e\xa7\xbf\x05\x9c\xe3\x91\x0d\x25\x79\xb3\x67\x43\x23\xb3\xe8\x99\x89\x61\x2e\x1f\x38\xad\xc1\xe3\xbf\x86\x52\x14\x82\xf5\x87\x13\xc7\xbc\x48\x20\xe5\x67\x98\x82\x15\x37\xfc\x99\x8e\x7a\xd6\x1f\x51\x00\x2b\xbd\x4d\xb2\x49\x36\xb3\x9b\x3f\x6a\xe9\x4c\x5a\x76\xfe\xf9\xc9\x0d\x17\x3d\xb4\x6a\x32\x39\xf3\x47\xdb\xb9\x3f\x96\xd2\xa1\xdc\xff\x5f\x29\x80\xee\x5f\x29\x88\x53\xcf\x64\xe1\x20\x66\xbc\xad\x04\x41\xd7\x28\x3a\x12\xa1\xf9\x06\x5b\x1a\xf8\x59\x18\x27\x2d\xc5\x14\x88\xb1\x31\x3e\x56\x25\xdd\x5e\x98\xad\x64\x53\xe5\x7d\xc0\x67\xdf\xf4\x94\x82\xde\x69\x7a\x7c\xc8\xc5\x4f\xd4\x7e\x87\x1c\x52\x6c\x82\x15\x0a\x1a\x64\x64\x9f\xee\x89\xd5\x4f\xd4\xa8\xf2\xed\x26\xce\x99\x28\x29\x13\x5f\x78\x55\x3c\x52\xb4\x73\xf8\xb8\x91\xd6\x51\x34\xc8\x11\x44\xdc\xf5\x14\x4f\xc2\x55\x05\xca\x3b\xa9\x22\xdd\x6e\xc8\x88\x2d\x4b\xc6\x57\x3e\x4a\x41\xde\x37\x44\xb0\xe1\x20\x4e\xec\xfb\x61\x6d\x28\x25\xa6\x7e\xc5\x8d\x81\xc5\x2f\x85\x26\xc7\xec\x98\xa6\xb9\x57\x35\x14\xc1\x7e\x5e\x53\x35\x58\x3f\x08\x7b\x2d\x87\x2b\xd8\x54\x16\x67\x53\xbd\x9b\x6e\x6a\xfc\x1e\x4a\x5c\x96\x84\x54\xd8\x63\x7e\xff\x8f\xaa\xb3\xdf\xab\x61\x52\x30\x4c\x1d\x2e\xe5\x27\x2a\x22\xfc\x49\x43\x6c\x8c\x59\x44\x25\x0d\x5c\x5e\x4f\x5d\x19\x38\x4f\x72\x3f\xda\xe7\xd2\x4c\x04\x67\xf0\xc3\xaf\xc0\xfc\xc3\x87\x6e\x79\xe8\x91\xc8\x60\xab\x8b\xdf\x2f\xc1\x8f\xc3\xa3\xf0\x40\x03\x6a\x53\x37\x34\xdd\xea\x2b\x74\x05\xac\x0b\xa1\xde\x5e\x3a\x5a\xdf\xa3\x72\xd0\x13\x9a\x1b\x65\xd3\xab\xe8\x24\xda\x0e\x38\x37\x42\xe1\x98\x20\x1a\x23\x35\x93\x06\x5d\x31\x13\x44\xbe\x8b\xa7\x1a\xc1\x09\x0d\x64\x7a\xb9\xff\x92\x54\xff\x71\x03\xf7\x3d\xd7\xbc\xbc\xaf\x2a\x57\x03\x93\x67\xa0\x85\x46\x88\x80\xe6\x21\x7c\xd2\x0f\x54\xc0\x72\xa0\x43\x35\x0a\xcc\x94\x41\x14\xd7\x6a\xd2\x95\xf7\x8f\x17\x70\xd5\x73\x1a\x8a\x59\xee\x17\xa9\x1f\x83\x16\x1a\x49\xd4\x5e\xa4\x67\xe8\x1b\x5d\xc2\x4d\xe0\xeb\xef\xa9\x08\xf1\x93\x8a\x14\xbb\x67\xd2\x03\xb6\x4b\xf7\xe0\x89\x0d\x57\x7a\x3d\xf8\xc4\x86\xa3\xe8\xf9\xe9\x3f\x01\x92\x19\xe9\xe7\xae\x4e\x05\xb3\xa3\x6a\x76\xf7\x26\x0e\xd0\xba\xdf\x4d\xb1\x2f\x3c\x05\x83\x0d\xcb\xff\x18\x4d\x01\x62\x11\xa0\xad\x2e\xe4\xa1\x3a\xee\xf9\x24\xad\x35\x98\xb9\xc7\x3b\xe4\xd5\xe9\xe4\xdf\xff\xc3\x4e\xeb\xb9\x25\xc7\x92\xe6\x66\x5c\xb6\x6a\x90\xa5\x85\x85\x23\xed\x20\x32\xea\xfd\x5a\x80\xab\x0d\xff\xca\x48\xd1\xd1\x18\x98\x34\x08\x33\xb3\x47\xc5\xd6\x08\x22\x60\xe7\x3f\x50\x82\xd4\xf7\x81\x6e\xb4\x34\x09\x65\xac\x28\x62\x08\x6e\x5e\xf2\x9d\x26\x1e\x96\x60\xe8\xc7\xb1\x61\x66\x71\x44\x8b\xe7\x14\x99\xdc\xb9\x5a\x40\x4a\xf3\xa3\x52\x7a\x10\x26\xeb\x96\xe5\xb6\xe4\x66\x92\xec\xb1\x27\x77\xe8\x89\xda\xf2\x00\x6c\x11\x4a\x92\x62\xf0\x5b\x96\xde\xe7\xcd\x86\xdd\x41\x30\xb5\x3c\x1c\x61\x1a\x1d\x5e\xf0\x0e\xbd\x32\x74\x1b\x98\xb9\x09\x1b\xe5\x84\xaa\x1f\xad\xc4\x45\x2f\x4b\xe2\xea\x2d\x52\xb3\x54\xee\x71\xe7\xbb\xfa\x5c\xbb\x88\xf2\x70\xe4\xe7\x86\xb1\xc2\x52\xbb\x6b\x29\x36\x06\x3d\xc5\x9f\xa4\xa1\x1a\x5d\x3e\xa1\x6b\x2a\x27\x54\x01\x2e\x1c\x18\x82\x67\x00\x6b\x78\x4a\x11\xc5\x9e\xa1\x58\x17\x25\xcb\x3b\x9e\xb2\x32\x5b\x8d\x69\x4d\xb2\x4a\x42\x43\x53\x2d\x45\x35\xa6\x42\x21\x0a\x20\x84\x35\xa5\x21\x05\x8b\x8c\x0f\x95\x54\x86\xd1\x00\xa4\x8b\xdd\x89\xf8\x01\x83\x0b\xa7\x15\x60\x45\x89\x0f\x61\xd0\x81\x39\x64\xe9\x99\x08\x9f\xec\xce\x05\xf6\xc2\x0b\xed\x28\xa1\x34\x14\x6f\x1d\x26\xe5\x81\x82\x20\xfd\x8d\xd6\xcd\xb9\x6f\x65\x59\x89\x95\xb1\xbf\x2e\x10\x14\x80\x95\x2f\x4f\x14\x87\xe7\x65\xcf\x05\x8e\x43\xe3\x47\xf9\x30\xf0\x53\x03\x4f\x59\x11\x6f\xe1\x13\x25\x31\xd1\x35\x39\x18\x78\xe6\x8f\xba\x12\x83\x9d\x27\x20\x2e\x49\xdd\x2f\x5d\x9e\x3d\xd2\x3e\xb4\x48\xab\x0e\xb5\xe6\xbf\x50\x62\xc1\x60\x5e\x90\x3a\xaf\xc4\xe5\x2f\x26\x26\x52\x10\x08\x5e\x10\x7c\xa2\x16\xc4\xfa\xaf\xfe\x46\x4b\x0d\x1e\xc0\xb7\x0b\xce\xcd\x0e\xc7\xe4\x61\x8c\xd0\x06\xfe\xe5\x1c\x16\x3a\xde\x2f\x04\x95\xa4\x0d\x66\xb9\x12\x92\x2c\xf7\xb1\x3c\x10\xa5\x02\x88\x86\xb2\xc6\x23\xb0\xcc\xd8\x75\x97\xec\x70\x81\x88\x71\xce\xa8\xf1\x2e\x04\x32\x80\xa2\x43\xc6\xc9\x52\x4b\xcf\x09\x89\xe3\xb1\x49\x55\xbd\xb3\x81\x52\xa6\x5c\xae\x33\x6e\xe1\x5f\xd2\x2d\xc6\x89\x43\xa9\x5c\x9a\x54\x28\x16\xca\x9f\xc3\x82\xd9\xdf\xd1\x9d\xd0\xf5\xae\x21\x7a\x43\x36\x21\x84\x0b\xb7\xe2\x0f\x5a\x6b\xa3\x8c\x57\xc4\xce\xc8\xc3\x5c\x49\x7a\xfe\x0a\x70\x86\x62\x36\x5c\x96\xf9\x1d\x4d\xc3\x70\x55\x51\xb4\xf4\xc2\x2c\x28\x68\x10\x9e\x96\xbe\x8c\xd2\x39\x10\xf0\x9f\xd6\x92\xe1\xc5\xc5\xa5\x76\x3e\xa4\x5a\x13\x2d\x61\x46\xb1\x6b\x92\xd7\x3a\x8b\xd1\xe2\x62\x3b\x37\x8a\xae\x96\x8b\xa8\x9e\xab\xf6\x9c\x54\xac\x3f\x44\x6d\x4b\x2e\x17\x6e\xe0\x16\x62\x50\x5c\xd1\x55\xc5\x2e\xfd\x47\x2a\x8f\x79\xcd\x49\x1e\x25\xc1\x0a\x1b\xf2\xed\x57\x75\x9b\x7b\xa2\x6a\x7f\x37\x14\x71\xf3\x20\x4d\x8a\xf1\x01\x35\x2a\x7f\x81\xf2\x0e\x6e\x91\xa1\x82\x2a\x8a\x16\x70\x9f\x22\x99\xef\x26\x69\xcf\xc2\xd6\x58\xbd\xe3\x65\x19\x63\xbb\x36\x51\xad\x50\xe8\x24\x60\xbf\x80\xbd\x08\xab\xe5\x03\x74\xba\x2d\x93\xa8\xe6\x7c\x29\x6d\x26\xd6\xe0\xbb\x78\x0e\x08\xfa\xee\x81\xa6\xca\x32\x4d\x5b\xc2\x96\x7b\xb6\x70\x8d\xd4\xc6\xa4\x33\xf4\xe5\x82\x54\x72\xe1\xf3\xcf\xe8\x6a\xb4\x3a\x2d\x96\x28\x53\x78\xc0\xbb\x7e\xdf\x6e\xfe\xd2\xdc\x4d\xab\xe2\xc4\x19\x35\x1a\x7d\xc7\x53\x53\x2f\x77\x70\x9d\x88\x5d\x76\x6f\x28\x03\x25\x02\x25\xe5\x7b\x50\x90\xb2\x45\x07\x73\x5e\x5e\xe2\xfe\xe6\xe3\xa4\xf8\x8b\x27\xb2\x6f\x83\x62\x13\x9b\x08\xda\xbe\xe2\x55\xc2\x1a\x59\x22\x93\xf2\x36\x85\xc5\xcd\xad\xcd\x9f\xd6\xd6\xf0\xdc\x5c\x69\x88\xd5\x7a\x44\x67\x12\x25\x30\x3e\xb6\x15\xfa\x20\x89\x92\x94\x60\x73\xa2\x75\x81\x35\x80\xfc\xe8\x2f\xd5\x1a\xc0\x33\x84\xb5\x7d\x14\x4d\x65\x5b\x9a\xb3\x1d\x20\x46\x69\xf1\x5f\x6b\xeb\xed\xa7\xa9\x29\x7d\x90\x65\x63\xbc\xad\x4a\xbd\xb7\xbd\x9d\xf3\x92\x0b\x0b\xed\x9e\xd1\x08\x55\xa8\x6c\x8b\x4a\x95\x2b\x28\xf4\x42\x9f\xa5\xfb\xd0\xc8\x39\xa5\x9a\x3a\xa7\x3c\xd5\x58\xf2\xa3\x55\xc6\xfd\x20\x3f\x7c\x53\xe5\x8a\x6f\x4e\x9c\x5e\x1f\x51\xed\xbf\xc4\x71\xc4\x4c\x4b\x8d\x71\x97\x0b\x17\x45\xa8\x63\x9a\x56\xe6\x1a\xe2\x6b\x3c\xbf\xbf\x54\xa0\xb2\x3b\x3b\x09\xe8\x9f\x9d\x9d\x6f\x7f\x7e\x7f\xf9\x08\xb0\x31\x76\x6d\x28\x38\xd5\x15\x65\x3a\x21\x02\x8f\xc2\xe1\xcf\x2b\xe8\x31\x76\x23\xe0\xc4\x7c\x13\x10\x03\x5e\xef\x74\x3f\x88\xb0\x1e\xe9\x38\xd2\xe7\xff\x48\xc0\x2a\x78\x00\x16\xf7\xc5\xda\xbd\x55\x26\x19\x7c\xd3\x45\x3a\x30\xe4\x59\x11\x42\x60\xba\x90\x8f\x3d\x37\x6b\x9d\x25\x2f\xb5\x5c\x91\x99\x03\x77\x99\x2e\x7c\xc2\x4e\x06\x0c\x43\x07\x6e\x12\xbc\xed\x1d\x25\xfe\x7b\x47\x39\xd3\x38\x1f\xee\x2b\x6f\x1c\x86\x0b\x8d\x08\x45\xac\x2b\xd1\xd9\x7f\x98\xa8\x36\xdc\x7d\xfc\x30\x2b\x5e\xd3\xb6\x92\xd4\xba\x7c\x47\x56\x22\xaa\x7c\x52\x88\xd1\xbf\xa9\xc4\xa8\x3e\xdd\x69\x0a\x53\xd3\x2c\x29\x43\x6a\x32\xcc\x16\x28\xea\x68\x92\x76\x75\x5a\x5f\xfe\xa2\xa3\x7a\xb5\xad\x9e\xd7\x6b\xcc\x33\x0b\x0b\xed\xac\xe8\x12\x83\x01\x01\x33\xdd\x68\xc9\x7e\x64\x3d\xd6\x9d\x5a\x96\x86\x9f\x6a\xd2\xe8\xd6\x86\x56\x1f\x49\xfb\x49\x3a\x32\xbd\x29\x37\x5e\x75\x5d\x71\x57\x9c\x27\xcb\x88\xe4\xe5\xed\x26\x4d\xd9\x7e\x92\x0e\x0c\x48\x83\x98\x9b\x9d\xa2\x20\xe1\x69\xff\x07\x2a\xcb\x4c\xd3\xf5\x91\x5f\xbe\x37\x0a\xb2\x9e\x9d\xe5\x07\x0f\xc8\x28\x1f\x37\x21\xcf\xe3\x30\xcb\xfc\x98\xe7\x2b\x90\x64\xbe\x5a\x41\x53\xb2\x45\x41\x8e\x70\x43\x8d\x51\xa4\x49\x32\x82\xa2\x10\xaa\xe2\x37\x68\xd5\xa9\xd2\xa9\x0c\xdb\xdc\xa0\x25\x2c\xe3\x68\x0d\xe4\x0f\x03\x7f\xd4\x8d\x6c\xbc\x8a\xa2\xf1\x2d\xd5\x6d\x6e\x75\xdc\xc4\xe6\x95\x26\x56\xa2\xaf\x14\x61\xba\xb2\xde\x52\x19\x91\x52\x6e\xbe\x5c\x43\x4a\x2c\xcf\xb6\x7b\x66\x60\x62\x92\xe2\xea\x69\x8a\xe7\x7b\x15\xb1\xb0\x5a\x8e\xb2\xb4\xbc\xd4\x1e\xa7\x66\xec\xa7\x02\x59\x92\xdd\xe3\xfa\x8c\x9b\xb6\x6a\x1e\x98\xc8\x74\x53\x61\x03\x87\x81\x79\x93\x2e\x8c\x8f\x9b\x78\x74\x57\x93\xa8\x18\xc9\xb7\xa3\x7c\x7f\x0c\x2b\x99\x4f\xd4\xe6\xfb\xe2\xe1\xa3\x53\xad\x2f\xcd\x73\xd9\xf2\xa2\x1a\x83\x62\x08\x3c\x82\xc8\x2d\x1b\x6e\x06\x49\x9c\x85\x3d\x93\xee\x55\x3d\xd5\x99\x8e\x4b\x4a\x8e\x4f\x74\x36\x4e\x5f\x81\x55\x7d\x7f\xe2\xe0\xb9\xff\xb0\x63\x73\xc1\x7f\xc3\x79\xbd\x30\x62\xd6\xe1\x49\x4b\x6d\x62\x33\xa0\x0d\x00\x96\x9b\x77\x68\x03\xc0\x71\xec\x21\x4e\x0b\x38\xe6\x7d\x0a\x49\x3d\x4c\xd6\x38\x3b\x76\x73\x41\x96\x02\x5e\x51\x25\xf5\x53\x93\x81\xf9\xba\x34\x7e\x88\x2d\xbf\x85\x18\xd4\xaa\x5c\x1d\xb2\x21\x81\xa2\xc4\xf3\xc7\x89\x25\x74\x55\x6d\xb0\x25\x3b\x28\xfd\x49\x0b\xae\x7e\x31\xf4\xa1\xde\x89\xbd\xf1\x53\x7c\x8e\x4f\xbc\x4f\xb8\x5c\xad\x1b\x4e\xab\x4d\xc4\x63\x91\x32\xaa\xef\x9a\x31\xe7\x34\x54\xe3\xdf\x39\x4f\x1e\x15\x86\x77\x21\x02\xcb\x8f\x54\x00\x8a\x1a\xa1\xf4\x13\x1d\x87\x5b\xc8\xe0\x9d\x4a\x5a\xc7\x27\xca\xee\x8f\xb2\x83\xd5\xb0\xc6\x35\xe4\x8f\x79\x0e\x85\xb8\xb7\xa3\xe6\x44\x90\x2f\xd8\xd1\xe4\xb9\x79\x1b\x61\xd0\xe3\xe5\x91\x03\xc4\x8f\x28\xf8\x82\x36\x5b\x98\x8a\x25\x30\xfb\x2f\x93\x14\x3e\xad\xf4\x92\x41\x14\x1e\x96\x2f\xc6\x85\x2a\x10\x46\x92\x84\x51\x5e\x60\x92\x0e\xfc\x98\x01\xef\x78\xb9\x6f\xa9\x29\xbb\xb7\x94\x9c\x26\x63\x86\xf3\xf5\x47\xc8\xb6\xc0\x27\x9e\x57\xbd\xe2\x3f\x24\xa1\x0d\x56\xb5\x87\x85\xc7\xae\xc1\x03\xb0\xaa\x57\xf3\x47\xb9\x17\x79\x03\xbb\x11\xfb\xe2\xb4\xce\x9e\xa6\x3a\x3b\x9d\x09\xf1\xb9\x07\xa9\xf1\x31\x73\xd2\x72\x03\x84\x50\xc3\xe0\xe3\xda\xbe\x59\x9e\x25\x54\x82\xd8\x26\xab\xb0\x5b\xbe\x43\x89\xe2\x95\x84\x78\xb2\x6a\x72\x3f\x8c\x00\x31\x91\x4e\xb3\x03\x1d\x6d\xaa\xf1\x0f\xa1\xf7\xce\xa3\xf5\x29\x37\x0c\xcc\x9a\xe8\x96\x80\xe8\x90\x38\xf1\xdb\x8a\xa9\x65\x9c\x26\x53\x0e\xe2\x07\xb9\x69\x8c\x71\x3c\xac\x44\x12\xb5\x72\xe9\xa1\xc5\x76\x6a\x46\xfc\xba\x50\x48\xf8\x13\x4f\xd1\x51\xfe\x49\x03\x5f\xda\x62\x1b\x52\x5a\x65\x68\x2d\x24\xcb\x6a\x50\xed\x8a\xd3\x5b\x20\xb6\x15\x18\x0b\xbc\xfe\x56\x47\x61\xbe\x5b\x1b\xca\x61\x99\xcc\xf0\xa4\x18\xd2\x94\x63\xb0\xf6\x7c\x52\x4b\x0c\x5f\x78\xa1\x9d\x9a\x7e\x64\xc7\xcb\x2c\x83\x88\x05\xd3\x1d\x9f\x38\x9c\x63\x14\x24\x11\xcb\x9e\x0a\x12\x03\xf6\x45\x30\x1a\xaa\xb4\x4f\x44\x6d\x6a\xba\x18\xbb\x10\xd3\xc5\x0c\x12\x66\xa9\x02\xa4\x58\xa2\x5b\x50\xbe\x31\x0c\x18\x5c\x27\x8b\x28\x5f\xad\x88\x58\xe3\x41\x18\x1b\x93\x66\x75\x35\x3c\xe6\x92\xd4\x14\x48\x7a\x7a\x65\xe8\x47\xfd\xc7\x5c\xbd\xe5\x1a\x9e\x0d\x72\x9c\x47\x50\x7f\x45\x41\x7a\x0a\x18\x1e\x94\x9f\xbe\xe3\x39\x74\xc3\x7d\x94\x8a\x04\x10\x57\xde\x12\x20\x77\x2f\x21\x1a\x60\xb9\x42\xdc\x1f\x56\xce\xdf\xa9\x01\x9e\x5b\xd8\x58\xfc\x0f\x78\xdb\xfc\x8b\x54\x05\xe1\x69\x08\x0a\x26\x78\x22\x57\x29\x87\x16\x07\xb3\x83\x4f\x93\x69\x12\xad\x60\x0a\xae\xb1\x5c\xb6\x27\xae\x4f\xf9\x17\x34\x2f\x8e\x27\xca\xec\xe4\x08\x8f\x00\xaf\x46\x51\x82\x2d\x01\xd3\x37\x53\x3b\x03\x4f\x8c\x75\x42\x11\xee\xde\x47\x2e\xa9\xa4\x27\xb6\xdf\xd6\xa4\x6f\x5b\x00\xc6\xe3\xe4\x26\xb7\x48\xb4\x90\xa5\xd0\x4f\xd3\xbd\x4a\x8d\x53\x8b\x23\xa1\x11\x80\xc6\xe2\x69\x2a\xba\xe0\x8d\x5e\xf7\x94\xba\x03\x33\xfd\xb2\x92\x4b\xad\x78\xfc\xb9\x76\x37\x4c\x7b\x15\xba\x03\x68\xf8\xf0\x71\x23\xc2\xa9\x9b\xa4\xa6\x97\x8c\xc8\x12\xa3\xa0\x80\x3e\x37\x1f\x37\x51\x96\xf4\x93\xd4\x84\x03\xf8\x4a\xb8\x77\xc6\xb9\xf1\x89\x12\x19\x18\xf9\x59\x16\x06\x49\x9e\x1b\x4d\x24\xc4\x2e\x98\x4f\x1c\xd8\xd1\xf8\x69\x64\xe0\x1a\x51\x8c\x3b\xa5\x12\x68\x0e\x53\xe0\x21\xee\x7a\x1f\x07\xfc\xcf\xf2\x82\x48\x1f\xf0\x35\xd8\x69\x28\x7e\xc3\x4e\x9c\xd0\x24\x41\xa7\x9b\x04\x97\xb2\xa8\x18\xf1\x43\x14\x40\xbb\xa3\x83\xb9\xe8\x06\xbb\x13\x11\x5d\xb5\xd3\x00\x8e\x01\xee\x82\xe7\x92\x83\x28\xcc\xf2\x32\x04\xe5\x79\x0c\x89\xe1\x68\xf9\xf0\x89\x85\x1c\x84\xfd\xfe\xba\x0a\x22\x21\xd5\xce\xc7\x0a\xfc\x9c\xe5\x19\xe1\xdc\x2b\x92\x70\x08\x82\xbf\x4f\xfb\x54\x08\x35\xe8\x92\xe0\x7c\x10\x5b\x23\x34\x3b\xae\x26\xd3\xca\x37\x34\x88\x65\x80\x46\x26\xab\x9c\x62\xd0\xa6\xa5\x80\xf7\xa3\xdc\xa4\xb1\x9f\x87\xab\x52\xb9\xe7\x18\xc0\x53\x02\x08\x57\x6c\xe1\xa7\x1a\xec\xc3\xff\x80\x1a\x16\x25\xa2\xf7\xd4\x5b\x79\x60\x35\xa8\xfb\x86\x84\xfe\xc9\x29\x38\x74\x3c\xf0\x36\x42\xb2\x2d\xb6\xd8\xc4\x59\x61\x7f\x00\xc6\x1d\xf4\x67\x1a\xa1\x8f\x86\x99\x03\x52\xf6\xc3\x38\xcc\x86\xd2\x63\x41\x9d\xe5\x86\xe7\x3c\xd6\x43\xbc\x19\x6e\x87\xdb\xdf\xca\x72\x7f\x7d\x47\xf3\x70\x4b\x4d\xe9\x6d\x4d\x3e\xad\x86\x36\xfd\x34\xec\x87\x01\x05\x03\xf0\x6c\x96\x09\xb3\xdc\xff\x7c\x32\xd9\xcf\x6b\xaf\xfd\xdc\xf2\xec\x67\xc8\xa2\x89\xd8\x16\x15\xd5\x44\x32\xa3\x7c\xd0\xa8\x3a\x9e\x80\x93\x10\x3e\x87\x32\xd3\x45\x08\x29\xd5\x20\x54\xcd\xdf\x9e\xa8\x07\xf2\xc7\xb0\x53\xf8\xe6\xdb\xb0\x95\xa8\xea\x71\xea\x80\xd5\xf1\x97\xb4\x6c\xec\x30\xeb\x17\x7e\xc7\x92\x6e\x50\x45\x11\x19\xf9\x1b\x9e\x4a\x8c\x51\x9b\x47\x0b\x8f\xe7\x7f\x30\x12\xa5\x09\xd1\x3f\x81\x66\xa7\xcc\x98\x51\x23\x8d\xbf\x6b\xa2\xd8\x55\xfe\x6c\xe2\xba\x05\x53\x9d\xd2\xfa\x21\x36\xdd\xa6\x78\x54\x64\x41\xcb\x15\x8f\x3a\xd0\xde\x8d\x32\x1b\x12\xc6\xba\x06\x13\x15\xa4\xc9\x5a\xcf\xf4\x54\x18\xf3\x7f\x2a\xac\xf0\x45\x84\xec\x42\x4e\xef\x9c\xea\x60\x3d\xf5\x21\x7a\xec\xd0\xf1\xd7\x15\xc7\x12\xef\x5a\x5c\xdc\x1b\x2a\x64\x5a\x0b\xe3\x3d\x4e\x79\xe9\x1c\x07\x04\xd8\xdd\x77\xf1\x06\x24\x97\x57\x38\xd0\x13\x13\x05\xdd\x78\x03\xaf\x03\x1b\xf4\xf4\x64\xbf\xe3\x5b\x5e\xd7\xc8\xcb\x4b\xaa\x1c\x77\xc9\xf1\x59\x24\x23\xe4\x24\x58\x28\x17\x14\x79\xc8\x74\xc7\x0d\x98\xbd\xaa\x49\x14\xee\x34\xc9\xde\xb5\xc3\xb8\x57\x64\x79\xba\xce\x39\x93\x14\xf5\xe8\xef\xa4\xaa\xf7\x84\x26\xd5\x35\xd9\xc8\x8f\xb5\x88\x2f\x70\x83\x7c\x5c\x8b\x78\x7f\xa5\x3d\x8e\xfc\x75\x63\x41\x6c\x30\x6e\xdf\xd6\x3c\x6e\xd7\xab\x04\x58\x72\x8f\xdd\x70\xac\x00\xf6\x1f\x6a\x6e\xce\x0f\x6b\xc5\x86\xf9\xa3\xed\x9e\x89\xca\x3d\x88\xc4\x89\xb9\x45\x37\x5a\x8a\x67\xd4\xe5\xd7\x07\x9f\x3d\x38\xa5\xa2\xa5\x99\x4e\x65\x44\xa6\x65\x35\x1d\xee\xd5\xdc\xe1\xa1\xc5\x76\x3e\xa4\x82\xf2\x94\x03\x52\x6d\x2a\x44\xcc\x1b\xb4\x6c\x11\xd2\xdc\x54\x10\x61\xc6\xfb\x4c\x2b\x9d\x69\xa6\xa8\xd5\xcd\x5b\xfe\x07\xac\x20\x69\xc9\xe8\xde\xe8\x9a\x9f\x7d\x9a\x76\xa8\xa4\xef\x88\x3d\xb0\x2d\x99\xe8\x0a\x28\xba\xa7\x51\x0b\x46\xd4\xf5\xc4\x86\xba\xc3\x8b\x0a\xcc\xb8\xbb\xe3\xaa\x9b\x0f\x3c\xe7\x63\x4e\xc2\x74\x71\xc8\x05\x3b\x80\x30\xef\x17\x28\x1b\x84\xf3\x39\x8d\xf9\x0b\x36\xaa\x00\x4c\xa2\xed\x71\xd3\xab\xea\x40\x95\x9b\x00\x09\xce\x47\x74\xa3\x82\x3e\x52\x51\xf0\x47\xb4\xf9\x91\xaa\x5c\x60\x03\x87\x6c\xfc\xca\xa4\x3a\x10\xb6\x2c\xac\x98\x8f\x6d\x54\x7a\x5c\xf5\x00\x69\x3d\x1c\x94\xd9\xd9\xdc\x9c\x95\xcc\xa1\x3f\x10\x31\x1d\xb7\xa1\x5f\x4c\xba\xfb\xe8\x11\x09\x49\x83\xc3\xfe\x6d\x79\x15\x4a\x40\x8b\x46\xb9\x36\x51\xed\x93\x4d\xcd\x33\x75\x49\x6b\xaf\x5c\xc2\xea\x96\xa6\x22\xbd\x21\x14\x46\x9a\x98\xec\x16\xdb\x49\xbf\xcf\xb5\x3e\x4b\xce\xff\xa6\xa7\x14\x8a\x74\x4d\x7c\x95\xa0\x88\x7d\xbf\x9b\x86\x2b\x2b\x5a\x08\xe0\x16\xbd\x4a\x3e\xae\x71\x7c\x2c\x2d\x2f\xb5\xb3\x82\x9a\x11\xcc\x13\xa3\xa8\x90\x1d\xb1\xb1\xdb\xf6\xfe\x78\x1c\xf9\x45\xc6\xb1\x9a\x7d\x44\x96\x36\x85\x59\x2c\x61\x40\xeb\x31\xe4\xa1\xc5\xb6\x1f\x0d\x42\x0a\x89\xca\xcf\x31\xf2\x56\x0b\x1d\x5e\x98\x38\xfc\x0b\x64\x5d\x44\xf8\x08\x3d\x8b\x5b\xf8\x30\x9f\x34\xb5\x45\xb3\x95\x10\xe8\x4d\x21\x7d\x73\x65\x8e\x53\x8d\x96\xcf\x0f\xf2\x70\x35\xcc\xd7\x15\xec\xf1\x75\x4f\x71\x73\xbc\xde\x94\xef\x06\x69\xc8\xa2\x28\xf8\xea\x37\x3c\x45\x2b\xf4\x46\x93\x60\x64\x31\xde\xe3\x0a\xe1\xdf\x24\xef\x8e\xbe\x13\x44\x9b\xb1\x25\x3f\xa4\xf5\x86\x7d\x34\x45\x3d\x28\x84\x34\x1f\x4d\x94\x42\xed\x26\x1a\x03\x6c\x09\xfa\x6c\xc2\xb0\x48\x1f\xa8\xc0\xff\x5c\x55\x7d\x52\x31\x06\x1b\x3f\xcf\xa6\xcb\x5d\xc6\xd2\x14\xd8\xd7\x56\xa7\xc2\x36\xd6\xde\xd1\x41\xf3\x3b\xaa\x30\xb9\xf4\x85\xb9\x19\x35\x28\xb2\xa7\xe3\x86\xd8\x50\x38\x87\x45\x3f\xa5\x2a\x96\x50\xfa\x92\xcf\xd8\x98\xd6\x5f\x31\x31\xfa\x7a\x58\xd6\xac\xf6\x27\x32\xc4\xad\x7f\x26\xd1\xcd\x29\x7a\x64\x12\x73\xbb\x02\x10\xad\x7a\xb2\xf7\x8a\x97\x03\x6c\xed\x42\xeb\xb4\xdf\x5e\xf7\x6f\xfd\x77\x0a\x90\x7f\x96\x0c\x0d\x1f\x37\x0c\xaf\xb6\xc3\xb8\xdc\x82\x49\xda\x52\xca\xb4\x60\x06\xe7\xe3\x0a\x11\x41\x56\xa0\x58\x6e\x47\x44\x16\x16\xf8\xd2\x5f\xc5\xe2\x90\xa1\x36\xd5\x9f\xfc\x50\xe5\x0b\x5d\x3f\x2a\x53\x86\x30\xc0\xcf\x61\x11\xa0\xce\xcd\xc7\x55\x74\xcc\xaa\x79\xca\x81\x52\x5b\x48\xe0\xd1\xf1\xdb\xdb\x51\x5a\x3b\xa7\x61\x34\xf1\xe0\x5b\x08\xd8\xb0\x5b\xa1\x61\x28\x1e\xce\x61\xe7\x51\xb4\x45\x74\xc2\x3c\x07\x30\xd9\xdf\x86\x33\x90\x61\x72\xba\x29\x1e\xa6\xa5\xa4\x1d\x7f\x82\x17\x85\x20\xe4\xa3\x0a\xf5\xa6\x96\x00\xdd\x84\x05\xc4\x16\x38\x4b\x71\x20\xea\x75\xf7\xc1\xd7\x26\x53\xcb\x14\xb8\xe2\x91\x9e\xb7\x4d\xf6\x70\x34\x26\xd8\xb8\xc3\x25\x90\x6d\x96\xf0\xdf\x41\x31\xfb\x49\x92\x13\xc6\x04\xd5\xe2\x7d\xa8\x6c\xa0\xcc\x7d\x41\xd9\xf6\x03\x1d\x97\x18\xa5\xc6\xa7\x2a\x25\x75\x86\x10\xb3\x5f\xd5\x92\x01\x57\x95\x1f\x40\x15\xae\x3e\x50\x32\xf6\xc3\xb8\x5f\x44\x2d\x45\x91\x8e\xa1\x23\x3e\xae\xa1\xc3\x17\x16\xda\x49\x0f\x36\x18\xe3\x30\xff\x4a\x8d\xc6\xfc\xab\x06\x71\x98\xa5\x76\x91\xc1\x00\x59\x04\xab\x1d\x80\xae\xb3\x39\x51\x07\x2d\xcc\x86\x7e\x37\x12\x26\x2b\x04\x04\xef\xc3\xb0\x60\x8b\xde\xa4\xdf\x14\xfd\xcb\x03\x4a\x64\x3b\x1c\x47\x86\x8d\x36\x22\xf1\xe3\xf8\x3b\x3e\x69\x28\x49\xf8\x2f\xe7\x26\x98\x2a\x53\x15\x84\x0b\xef\x2a\x5d\xf8\xdd\xd8\xe3\x30\x79\xf7\x15\xfb\x70\x64\x56\x0d\x54\x58\x1d\x6d\xc6\x05\x4f\xb5\xdf\x2f\x34\xf8\x76\x7f\xec\x8b\xfc\x1b\xd3\x63\x69\x95\x71\x6d\x36\xea\xb4\x37\xcb\xb3\x6d\xbf\x97\x8c\x73\x4e\x19\x10\x45\x33\x07\x07\x4a\x5b\xff\x33\x5e\x3d\xe2\x94\x9b\x8d\x56\x22\xf3\xbb\x26\x8a\xfc\x96\xcb\x40\x79\x2e\x9c\x4f\x76\x12\x3d\x7e\xbe\xfd\xec\xec\xf3\x8f\xd0\xae\xb4\xec\x00\xcb\xb3\x8c\x2d\x3c\x47\xef\x11\x68\xa5\x3f\xf0\x54\x0b\xea\xa2\xa7\x99\x2e\x68\xeb\xf2\x5f\x70\x8c\xa4\xcd\x2f\xca\x6a\x97\xd4\x34\x52\xdf\xcf\xfd\x21\x3c\x29\xd6\x14\x6b\x0e\xf0\x49\x53\xe7\x30\x0c\x4c\xd7\xa4\x03\x8d\x33\x3f\xa5\x70\xe6\xa7\x14\x94\x87\xc6\xdd\x47\x44\xba\x59\x3e\x47\xe1\xf2\x6c\x39\x5e\x4f\x35\x1c\x3f\x2a\x88\x9b\x4b\xfd\xbc\x96\xed\xba\xd2\x34\xc7\x61\xe2\x7e\x68\x22\xc0\x03\xac\x02\x70\xf9\x88\x45\x5c\xd8\x6d\xdf\x20\x0a\x63\x92\x3a\x75\x13\x50\x1f\xd2\xd7\x8b\xc5\xad\xd8\xec\x6c\x7d\xca\x95\x00\xd0\x91\x81\xad\xbb\xa3\xc5\xba\x3f\xa8\x6d\xa8\xa3\x87\xdb\x3d\xd3\x0f\xe3\x90\xd4\x52\xca\x97\x61\x45\xed\x6c\x53\x01\xe8\x41\x6c\xe1\x0f\x2b\xb6\x7b\x9c\x67\x7b\x69\x8d\x81\xaf\xf1\xe7\x58\x63\x42\xe7\xa7\x58\x5b\x6f\x79\x4e\xc4\xf3\xf2\xa4\xca\x99\x6a\x2f\x5b\xf7\x42\x6f\xd5\x7a\xa1\x52\x20\x23\xc9\x14\x58\x0c\x4b\x3e\x5f\xde\xa1\x50\x9d\x3b\xbc\xb9\x4c\xdf\x11\xdf\x36\x72\x46\x04\x79\x08\x08\xdf\x46\x7c\x8f\x04\xee\x3e\xea\x04\x7c\x42\xeb\xd8\xc6\xea\x2e\xb3\x6b\x75\x2a\xf3\x28\x50\xb4\xcc\x35\x55\x05\xd0\x58\x7c\xdc\xa4\xd2\x18\x8e\xc6\x69\xb2\x6a\x2b\x31\x16\xa6\x66\xb5\x12\x2e\xdb\x52\x7d\x2f\x0d\x57\x89\xa7\xe2\xd9\x59\xb6\xb7\x1f\x4e\x14\xe5\xc6\x87\x2a\x8e\x29\x4c\xef\x13\x2d\xe1\x22\xfa\xff\xfd\x23\x34\x3b\xe9\x06\x0e\xfc\x0a\x2a\xc4\x54\x26\xd9\xfd\x6b\xf0\xa8\xf4\x2f\x4b\xbf\xb0\xe1\x4a\x6d\x77\x15\xa1\x1e\xe0\xa6\x22\x60\x4f\x26\x4c\x90\x12\x8e\xbc\x61\x66\x43\x25\x08\x9f\x86\x77\x45\x79\x7a\x66\x43\x55\x47\xf7\x6c\x34\x48\x49\x8c\x49\x7c\x42\x75\xe4\x98\x4a\x44\x66\x93\x76\xda\xc6\x85\x85\x32\xe9\xe6\x24\x5d\x47\xeb\x3b\x49\xe7\xfa\x26\x0f\x86\x61\x3c\x88\xb8\xe4\x60\x9b\x62\x6a\xba\x48\x59\xe9\x30\x30\x71\xc6\x60\x1d\xec\xaa\x9f\xe8\xe6\xea\x4f\xd4\x68\xde\x9a\x31\x2b\x51\xc2\x59\x8c\x30\x09\x69\x5a\xa1\x26\x21\xa5\x55\x93\x83\x8b\xdd\xf2\x3e\xdb\x76\x21\x50\x34\x22\x94\x62\xf1\x87\xeb\x51\xf8\x52\xcb\xb5\xb9\xef\xaa\xf4\xec\x6e\xa3\x9e\x72\x16\x24\x79\x30\x6c\xb9\x21\x0a\x9e\x90\x16\x9d\x18\xcd\xe0\x15\x11\xec\xa2\xe5\xf0\x31\x5f\xa5\x0b\xe2\xe3\x06\x69\xa3\xb6\x9f\xe5\x69\x12\x27\x23\xd8\xa1\x67\x67\xb7\xa9\x7a\xb3\x7d\xc9\xfb\x94\x06\x3f\x86\x71\x69\xab\x4c\x4f\x49\x38\xbe\xef\x39\x7c\xcb\xfb\xb5\xad\x3c\x7f\xb4\xdd\x0b\x53\x13\xe4\x49\x2a\xf5\x0d\xa0\x5c\x5e\xc1\xc5\xf3\x49\xd3\x7c\x68\xbf\x78\x31\x9c\x81\x9f\x10\x92\x32\x5a\x15\x28\x92\xe9\x1a\xf1\x2d\x0d\x55\xd6\x38\xe2\x77\x1d\xfd\x71\xb9\x7f\xb3\x9c\xc0\x57\x88\x38\x9f\xec\x54\x9b\xf9\x56\xe6\xff\xb8\xe6\x3d\xf9\x3e\x40\xf4\xb0\xd9\x7b\x37\xb4\x80\x67\xbc\x1a\xc6\x01\x51\x82\x2f\x2c\x54\xa8\xc9\xf9\x18\x41\x00\xb8\x4d\xae\x20\x0c\xe5\x13\xcd\x6b\x07\x3a\x3e\x11\xe2\xd6\x16\xb7\xcf\x74\x8d\x4d\x53\x86\x3b\x1f\xf3\xc2\x42\x3b\xf0\x73\x7a\x87\xe3\x21\xe7\xba\xda\xfd\xa1\x8e\xb4\xed\xb9\x54\xcd\x29\x47\x81\xee\xa6\x37\xa3\xea\x85\x07\x60\x3b\x84\x12\x43\x95\x72\x19\x7e\x28\xe1\xa3\xca\x9d\xef\x59\x8c\x09\xa9\xbb\xe4\x26\x1d\x21\x26\x12\xaa\x99\x96\xa5\x0d\x7c\xa5\x01\x68\x3f\x4e\x93\x40\xa6\x25\x4b\x6b\x29\x74\xec\xae\xd9\x73\x41\x85\x06\xa5\x8d\xc8\x1f\x73\x38\xe4\xcb\xaa\xe2\x7a\x9c\x02\x0d\xe4\x05\x20\x9a\x55\xa2\x24\xf3\x5c\x44\xfe\x7d\xdc\x14\x8a\x68\xdf\xa3\x54\xc0\x46\x89\xaa\x22\xcd\x71\x8a\x2d\xaf\x59\x42\x94\x57\xf0\x1c\xf0\x42\x2f\x78\x0a\x17\x76\x1b\x65\xd3\xca\xc0\x95\x40\xcf\x9b\xf4\xdc\xca\x5b\xb1\x82\x12\x56\x79\xca\xe6\xa0\x1f\xb8\x19\x4f\xdf\xff\x75\xf2\xfc\x08\x3a\x3e\xd9\x71\x7e\xf1\x82\x6e\x76\xef\xa9\xf1\x8b\x96\x3f\x43\x1a\xee\x69\x55\xa1\x04\x1c\x2c\x7c\x6c\xd7\x03\x73\x26\xcd\x68\x9e\xe3\x69\xf4\xaf\xe1\x1b\xfe\xde\x73\x48\xd3\x4d\xa2\xcd\x46\xe6\x74\x7e\xa2\xa6\x35\x37\xed\xf7\x75\x23\xdf\x92\x87\x21\xa7\x79\x7f\xa2\x8a\x7d\xe8\xb3\x08\x82\x4d\xcc\xfb\x9a\x9f\xe5\x66\xcd\x27\xa1\xbb\xf2\x4b\xd1\x3c\x38\xaf\xf4\xe9\xa6\x3a\x6e\xc8\x6f\x8a\x84\xcb\x85\xf4\xc5\x15\xc9\x5f\x2e\xd2\x95\x62\x18\x99\xb8\xa5\xd1\x7d\x74\xf9\x12\x66\xa9\x12\xc3\x1a\xcf\x08\xcb\x24\xde\x25\xd5\x01\xc2\x36\x45\x0d\x07\x23\x81\x7c\x5c\xab\xb4\xcc\x1f\x6d\x77\x23\xe3\xaf\xb4\xdc\x14\xcb\x0d\xfa\x22\x3e\xb6\x1e\xa0\x67\xfc\x88\xd5\xa6\xad\x18\x83\x85\xa1\x6c\x23\xa0\xc7\xd6\x9a\xee\xec\x98\x44\x28\xdd\xc1\xd1\xc3\x8f\x4f\x39\x45\x58\x6e\x97\x60\xd9\xbe\x47\x17\xcb\x34\xd9\xb0\x3c\xc8\x0c\x18\x58\x0f\x0b\xf0\x50\x4d\x87\xdd\xc2\xcf\x21\x63\xc1\x24\x3e\xb7\xc9\x15\xe3\xee\x6d\x58\x34\x6c\x20\xce\xb2\xb1\x48\xbf\xce\xfb\x84\xdb\xf4\xb4\x9d\x2c\x78\x6d\xe9\xf0\x11\x8e\xf4\x18\xda\x8d\xf7\xb7\xbb\xf3\x29\xd5\x7b\x4d\xb3\xe1\x88\x48\x9f\xe8\xb1\xa1\xb0\x76\x46\x41\x56\xcf\xd4\xa9\x9f\x0f\x1f\x69\x07\x43\x7f\xd4\xe5\xda\xdc\x11\xbb\xcb\x5a\x8b\x6e\xf2\xa3\x09\x8d\x4f\x51\xb0\x90\xd5\xca\x3c\x5d\x85\xd3\xd7\x45\x5b\xc3\xa4\xd2\x5f\xfd\x96\x42\x7d\x7f\x4b\x41\x81\x57\x93\x3c\x8c\x07\xd3\x6a\x62\x51\x69\x1b\xc1\x55\xa9\xd6\xab\x40\x2c\x5a\x1b\x9a\x8b\xd8\x2f\xdd\x93\x05\xe3\xa0\x3c\xc1\xcc\x97\x88\xcc\x90\x1d\xbe\xa7\x12\x8f\x0f\xc8\xec\x09\x3d\xe6\xce\x3e\xf3\xe2\xe2\x91\x76\x2f\xec\xf7\x4d\x6a\xe2\x3c\xe4\xf4\x42\x66\xd4\x5c\x11\xa0\xce\x8c\x34\x7f\xb4\x1d\xf8\x23\x93\x22\x3f\xb4\x8c\x29\xb6\x43\x79\xd9\x76\x28\x23\xe3\x0f\x0a\x2b\xdf\xcd\x32\xf8\x13\x35\x23\xfe\x8a\x92\xbe\x0c\xe3\xc0\x64\x4c\x99\x85\xd5\x75\x53\xc9\xbb\xdc\xac\xf1\x99\x2d\x2e\xd2\xc0\x48\x3e\x4c\x93\x35\x96\xc2\x52\x34\xf6\x1c\xa7\x43\xae\x1a\x31\xc1\x9b\x76\x6f\x75\xc3\x54\xa4\x7d\x64\xbc\x44\x35\x7e\xcf\x28\x4f\x32\x0a\x07\xc3\xfc\x13\x8a\xb4\x63\x5b\xc9\x7a\xdc\x9b\xb8\xb6\xc2\xfd\x89\x62\x03\x02\x19\x93\x45\xb1\x5b\x20\x07\x22\x11\x54\x18\x37\x2b\xb5\x4c\x4f\xb1\x67\x7f\x8f\x44\x37\x2c\xcf\xef\xfc\xd1\x6d\x2e\x21\xa2\x9b\x50\x97\x43\x3a\x7a\xb8\xbd\x96\xfa\x63\x8a\xcb\x4e\x79\xad\xe7\x96\xb6\x4f\xd5\x42\x80\xc5\xc5\xb6\x1f\x04\xc9\x68\xec\xc7\x56\x69\xd3\x06\x1f\x8e\xa0\xf3\x8a\xe2\x6d\xf1\xd3\x3c\x8c\x22\x93\xea\x71\xe1\x2d\xa5\x93\x73\x59\x39\xbc\x93\x8a\xd9\x80\x7c\x75\xaf\x20\x72\x68\xb5\x8c\x54\xe0\x75\x51\xc1\xbb\xc2\x28\x2a\xb2\x9c\x60\xad\xe4\x03\x84\xa8\xa7\x65\x55\x6b\xa7\x37\x2a\x54\xb3\x3b\x97\xe3\xd1\xc3\x6d\xf3\xd2\xd8\x8f\x11\x75\x5a\x11\x57\xcb\xd9\x70\xa1\xd1\x36\xf8\xab\x21\xba\xda\x2d\xcb\xc1\x58\xa1\x43\xba\xda\x84\xfa\x05\xb9\x03\x43\x06\x04\xdb\xe9\xb2\xf2\x66\x7b\x92\x9a\xdc\x0f\x63\xde\x03\x96\xd9\xe0\xd9\x59\xc5\x6c\xb0\x03\xb3\xbf\xd8\xfe\x15\x7a\x14\x08\x3f\x2e\xc1\x76\x0b\x45\x47\xf9\xd3\xd8\x12\x5b\x95\x78\x30\x48\x13\xee\x74\xc2\x42\x1c\xf7\x54\x53\xbc\xae\x2f\x56\x86\x84\x89\x2c\x04\x98\x8e\xdf\x53\xcd\xbe\xdf\xb3\x00\x5c\xbf\xe7\x8f\x1d\x3b\x9b\x40\x9d\x1c\x92\xee\xef\x6a\xb3\xda\x73\xf3\xed\x9e\xe9\xf2\xc5\xa0\x7f\xc0\x9e\x85\x4f\xec\x77\x47\x45\x77\xdd\x8f\x57\x7c\x05\x83\x66\xa4\xbd\x70\x76\x1d\xd0\x62\x82\x7e\xba\x02\x0c\xda\xf6\xdb\x6a\xc2\x75\x1b\x29\x23\x0b\x52\xd2\xfa\x54\xe2\x94\xc2\xf6\xf1\x75\x4f\x81\x5b\xef\x29\x9e\xb8\x2c\x09\x42\x3f\x0a\xb3\x9c\xa7\xd1\x59\xc8\xbb\x22\xea\xad\x86\xbb\xc3\xde\x5e\x37\xfc\xfe\x0f\x10\xf7\x08\xc3\xbe\x02\x30\x1f\xa3\x8c\x41\x6c\xf5\x8e\x30\xd1\xe6\x7e\x7b\x37\x54\xcc\x79\xb9\xf6\x8e\x9e\x9d\x6d\xa7\x61\xb6\xd2\x52\x16\x5d\x89\xe9\x7c\x50\x5b\x6d\x2f\xbc\xd0\x1e\xf9\xc1\x30\xa4\x7e\xd1\x6f\x3f\xd7\xc8\xd2\x23\x3d\xe8\xf5\x62\x05\x06\x50\xe8\xfb\x5d\x21\xea\x64\x65\xa4\x3f\x34\xfd\x19\xfa\xa0\x32\x5b\xcf\x33\x28\xe2\x81\xa7\xc6\xcf\x36\x95\xe6\x07\x1e\x1f\x7c\xf3\x6e\xcb\xde\x92\x0f\x89\x54\x29\xe6\x7a\x2d\x6e\x83\x63\x47\xd8\xc1\xbb\x15\x34\xb7\x2c\x13\xd4\x49\x02\xd3\x52\xf9\xc4\x15\xb5\xc3\xaf\x28\x39\xe6\x7c\xe8\xe7\xff\xb8\x7c\x48\xf8\x92\xff\x4c\xd8\x12\x54\x95\xf8\x97\x98\x42\x91\x8c\x2c\x62\x8d\x69\x6a\x0f\x20\x4a\x9d\xa2\x49\x6f\x18\x9e\x63\x7a\x1e\x84\xa5\xcf\x79\xea\x88\x10\x79\x80\x76\xbd\xa7\x0a\x10\xd7\x50\x3c\xc2\xba\x79\x8b\x1e\x88\x55\x52\x73\x03\x17\xa0\xc3\xb0\x4c\xe1\xa5\xf3\xe6\x89\x51\x84\x43\x58\x1c\xdf\xc5\xbe\xe7\x99\x1c\xb2\x18\xcc\xef\xa1\x15\xcd\x2f\x6b\xaa\x6b\x16\xa8\x65\x92\x3b\x3d\xcc\x85\x90\x5a\x16\x91\x12\x3d\xf9\xc0\x73\x3a\x90\x37\x08\x58\x2c\x53\xee\xf4\xb0\x99\x33\x9f\x9b\xf1\x08\xf0\x6f\xf2\x7a\x66\x69\xa0\x8d\x4f\xa9\xac\x37\x1d\x27\x00\x9e\x90\xcf\x80\xdf\xfd\x3b\x45\x4e\x76\x16\x5f\x2b\xe8\x15\x87\x45\x8f\x7a\xe3\x69\x6d\xda\x1c\x14\x73\x6b\xa2\x28\x79\x59\x1b\x4a\xba\x92\x22\xc4\x14\x85\x71\x90\x44\x71\x36\x0c\x53\x54\x11\x14\xb7\xca\x92\x95\xbd\x52\x2a\x03\x45\x1e\x0c\x4d\x3a\x53\xfe\xa2\xa4\x8f\xe5\x73\xb0\x69\xe5\xc2\x82\x6d\x72\xb7\xac\x9c\xd8\x69\x1d\x25\xfc\x58\x35\xe1\x66\x8f\xb2\xb5\x93\x91\x3a\xfa\x1c\x9f\x78\x4e\xec\x3f\x0c\x86\x23\x3f\xe6\x74\x83\xbf\xb3\xf2\xfd\x4f\x58\xb4\x78\x38\x08\x63\x3f\x92\xf2\x95\x90\xaa\xb9\xb9\xa5\x4d\x47\x47\x1c\x0c\x4d\xaf\x88\x04\x51\xac\xd8\x05\x8f\xd8\xc2\x41\xd3\x70\x78\xe4\x77\x4d\x24\x1e\x40\x1e\x02\xad\x52\x79\x0a\xf5\x82\xdd\x52\x9b\xae\xc9\xd9\x0a\x20\x0a\x65\x44\xd6\xd2\x5c\x25\x49\x34\x55\xe5\x69\xb7\xa9\x12\x50\x3c\x68\x13\xdc\x6d\x62\x4c\xe9\xf9\xa3\x98\x1c\xac\x90\xbf\x94\x9f\x17\x52\x18\x5d\xea\x3e\x38\x3a\x38\x53\x6e\x24\x04\x06\x8f\x61\x77\x33\x5e\x44\xb1\x1e\xdc\xa2\xb7\x29\x85\x00\xc5\xdf\x77\x59\xb5\xb7\x98\x1e\xef\x80\xe2\x41\x3d\x8f\xa5\x86\x9c\x69\x0f\x60\x26\xd2\x5d\x2e\xbf\x11\xff\xf0\x04\x59\x3a\x11\x21\x28\xf7\x8f\x70\xc9\x28\xb5\x86\xfb\x30\x24\x78\x18\x55\x19\x49\xf4\xc4\x05\x9b\x5d\xde\x8e\x0c\xd7\xa9\x5a\xf6\x13\x54\x9f\xc5\x2d\x80\x07\x16\xff\x7f\x8f\x96\x45\x65\x4c\xad\x08\x82\x35\xd5\x80\x92\x38\x0f\x63\xf0\xc3\x2a\x4a\x19\x00\x0a\xf8\x58\xb1\xa9\x65\xb9\x9f\x53\xfb\xb6\x0c\xe4\x96\x45\x05\xe5\x03\xfa\x34\x1f\x2b\xf4\x65\x96\x1b\xbf\x17\x46\xeb\xc4\x98\x87\xf8\xf8\x14\x4a\x65\x7c\x82\xc7\x89\xf0\xe2\x18\x55\x0f\xb7\x54\x3b\x61\x53\x35\xc0\xb3\x20\xf5\x47\xdd\x88\xeb\xb1\x32\x59\xe9\x0a\x61\xa7\xec\x42\xcb\xc6\x3e\x94\x2c\xd0\x86\xfb\x97\x8a\x52\x99\x79\x1e\xf0\xed\xb7\x3c\xd5\x90\x7f\x5f\x4f\x08\x04\xd9\x8c\xaa\x5d\xb0\x64\xb6\x34\x20\xc9\x98\x73\x5e\x45\xb7\x0d\x33\x0b\x2c\x32\x8a\x66\x57\x15\xf7\x8c\x9f\x26\xdc\xc1\x64\x49\x3f\x4f\xe1\x18\x6e\x4f\x9e\x52\x9c\xa3\x51\x18\x24\x63\x92\xb2\x29\xaf\x4b\xea\x76\x6e\xc0\xe2\x4d\x05\x96\xbc\xe9\xb9\xb1\xc9\x24\x8e\xd6\x9f\x74\x74\xe5\x77\xc9\x2d\x48\x4b\x42\x0f\xd2\x52\x2d\x64\x7b\x0b\xae\x42\x9a\xfb\x53\x4e\x2c\xf9\x13\x1b\xe5\x5a\x93\x24\x89\x1c\x82\xa8\xab\xd3\x9a\x42\x56\xb3\xab\x43\x3e\x08\x96\x0c\x33\xf8\x70\x93\x2d\x9d\xdf\x7f\x00\xef\x02\x77\xf8\x06\x7c\x10\x4e\xb8\xda\x25\x63\x02\xa5\xd3\x84\xe9\x66\x9c\xb5\xcc\x44\xbb\xe2\xcf\xad\x06\x39\xa6\xe7\xdb\x5d\x93\xe5\x53\xd4\xa4\xe1\xef\xa5\xfb\x66\x01\x61\xd4\x60\x25\x3c\x69\x10\xce\xe8\xfa\x59\x18\xb4\x5c\x9f\xef\x3d\x65\x52\xde\xab\xf5\x09\x97\x67\x45\x76\xbd\xe5\xa6\xcb\x3f\x50\x7a\x4b\x1f\x34\xc1\x67\xd6\x86\x49\x04\x69\x52\xc4\x9b\x18\x36\x81\x35\xda\x56\x44\x1b\x57\x54\x49\x69\x4c\x50\x0c\xa5\x22\x01\xa3\x2d\x92\x12\xb6\xd8\x15\x66\x26\x48\xd1\x29\x71\xa1\x12\x8b\x6b\x4a\x92\xe9\xf2\x68\xd3\xef\x9b\x20\x7f\xc4\x3d\xd2\xcb\xd8\x79\x3c\xda\x4e\x81\x29\xef\x39\xcf\xed\xaf\x63\x5e\x85\xb5\x5b\x49\xcb\xbe\xab\x37\x12\xd3\x25\x08\xd1\xbd\x44\x93\x99\x1f\x4c\xa9\x21\x77\x4c\x2b\x09\xe3\x55\x19\x50\x09\xf8\x6d\x67\x6b\x61\x6e\xae\xed\xd3\xf5\x86\x49\xec\xe7\x06\xf5\x2e\x6b\xc3\x2d\x80\x83\x79\xec\x95\xdd\x96\x6e\x4c\x18\x45\x61\x3c\xd8\x57\x2e\x66\x64\xb0\x2c\xa8\x87\xb5\xc1\xd4\x59\x68\x4a\x82\x9b\x53\x90\x27\xb4\x64\x85\xa2\xd0\x4d\x38\x5e\xd6\x99\x38\x20\xaa\x58\x28\xd3\xbc\xbd\x24\xd8\x6d\x12\xf9\xf7\x83\x15\x7f\x60\x94\x20\xf8\xcf\xe8\x41\xf0\xb1\xf7\xa4\xc2\x1f\xf8\x31\x71\x4e\xce\x38\xc4\xc6\x3e\x62\x0f\x42\x70\xc1\xac\xe2\x78\x65\x8c\x49\x16\x36\x53\x05\xce\xbf\xa9\x88\xd7\xb2\x62\x5c\x7e\xa1\xe9\x4d\xd1\x76\x40\xa8\xf8\x23\x65\x52\x8e\x2b\x98\xf3\x1b\x4d\xee\xc1\x8f\x63\x6a\x33\xfa\x29\xe6\x52\xb9\xe5\x5e\x69\xbf\xb7\xeb\x29\x47\x2f\xcc\xfc\xf1\x38\x09\xe3\x1c\x6a\xe8\x16\xfa\x75\x51\x31\x2e\xbb\xd8\xa0\x1f\x19\x7f\x4a\x05\x71\xc7\xd4\x58\x32\x58\x62\x50\x1a\x7a\xbd\xd9\x83\x8d\xd7\xd3\x70\x30\xcc\x19\xdd\x27\xc5\xe9\x4a\xd5\xda\x8e\xdc\x75\x33\x93\xae\x1a\xd2\xb7\x11\x60\x01\xad\x2f\x6c\xe3\x9b\x0a\x8f\xf2\x61\x2d\x10\x79\x6e\xa9\x1d\x25\xa2\x9c\x89\x6c\xe7\x2d\x2c\x42\x3e\xf9\x58\xc1\x86\xd5\x30\x1d\x84\x71\xe8\x53\x04\x8c\xfa\x29\x52\x23\x99\x96\x51\x6d\xfe\x8f\x6a\x9d\xad\x85\x85\xe5\xf6\x98\x44\x86\xe7\xb4\xac\x96\xa2\xc5\x3b\x24\x78\xd5\xfb\x8a\xda\x66\x14\x12\xed\x88\xcf\xe4\x74\x96\xc2\x41\x83\x48\x1d\xd1\x63\x6c\xfc\xb4\xcb\xa1\xa5\x25\xd1\xb4\x62\x77\x27\x94\x7f\xcc\xfd\x6e\xcb\x39\x69\xe0\x6b\x45\x70\xc8\x7d\xdf\x20\xf4\xe3\x3c\x23\x61\x64\xa9\x24\xbb\x98\x0b\xd4\xa3\x58\xe3\xbb\x36\x6c\xd9\x3f\x0d\x7b\x76\x0a\x8e\xfb\x2c\xd5\xa6\x8b\x93\x26\xeb\x19\x29\xb3\xc2\x91\x81\xcc\x86\x8f\x27\x3b\xe4\xed\xcb\x07\xb8\xb4\xbc\x44\x57\x8d\x7d\xcf\x94\x23\x7c\xa2\x18\x9f\x52\x13\x85\x66\x15\x1e\x9b\x79\x3f\x69\x4d\x08\x07\x68\x9d\x9b\xab\x9d\x9a\x41\x11\xf9\x69\xb4\x8e\x25\x6c\xc7\xf3\x97\x67\xed\xe4\xb2\x6b\x49\x9d\x68\x90\x97\x5d\x6a\xe7\x69\x52\x74\x9d\xe4\xa1\x66\x06\x17\x5d\x90\x06\xbc\x08\x01\xe9\xe4\x6f\x78\x5e\x60\xe2\x72\xac\xfa\xec\xc0\xd2\xf2\x52\x7b\xe8\xa7\x3d\x93\x82\xa1\xd3\x8a\xc6\xd9\xaa\xfe\x1f\xa1\x6e\xcc\x93\x70\x9e\x52\xe6\xbc\xa0\xd6\xca\xc8\xbc\x14\x06\xc9\x1e\x07\x3d\xd8\xf4\x94\xb7\xc7\x4c\x81\x40\xfd\xd5\x9c\xed\xa6\xaa\x8d\x6e\x6a\x75\xbf\x3b\x8a\x7b\x7d\x9c\x44\x91\x89\x5b\x8e\x9c\xeb\xa4\x4a\x27\x4e\xaa\x0f\x06\x49\x14\xf9\xe9\x94\x82\xfa\x5d\xa1\x1b\xc1\x1a\x68\x75\x94\xc0\xd6\xad\x46\x26\xac\xbe\xf1\xf3\x02\xbc\x4f\xcf\xdb\xe1\x10\xfa\x2b\x3e\x69\x22\xf3\xff\xe5\xb6\xe9\x0d\x8c\xd2\xa8\xb9\xe2\x39\xb1\xc7\x2b\x4d\xf6\x89\x81\x26\xa5\x21\x9c\xaa\x3a\x5d\xdb\x67\xdc\x54\xed\x93\xa1\x63\x77\x0f\x7b\x6b\xfe\x3a\xed\x7a\x3b\x5e\xa1\x59\xe0\x5d\xb1\xe3\x5e\xad\x10\x0e\x09\xff\x30\xea\x0d\x93\xa4\xa7\x10\xbc\x3f\x54\x40\xe1\x1f\x2a\xea\x8d\xfe\xc1\xb5\x83\x88\xff\x6d\xef\xf8\x90\x8b\x41\x5d\x20\xd1\x4b\x06\x03\xd3\x6b\xe9\x1e\x3b\x43\x24\xf9\x44\xd5\xc9\xc3\x9e\xf1\x79\x52\x8d\x49\x0f\xe8\xc7\x41\xd8\x74\x4a\x35\xa7\xef\x36\x91\xe6\x8e\xfc\x34\x67\x8c\x33\xe2\x5a\xce\xb4\xf9\x44\x35\x5c\xe6\xfc\x54\x09\x1b\x42\xe2\x16\x8d\x3d\xd6\x5f\x47\x18\x78\x47\x45\xe5\xe3\xd0\x04\xe6\x51\x87\xac\x6c\x91\xd8\x88\xa4\xaf\x14\x54\x22\x31\x3b\x8b\xc8\x15\x27\x37\x14\x54\xe4\x67\xb4\x96\x51\x45\xb8\xa6\x24\x55\x8f\xab\xf6\xf3\x4f\x11\x69\x03\x3c\xf0\x43\x84\xa4\xfc\xb5\xae\xd5\xe9\xe7\x61\x37\xc9\x31\xdf\xc2\xb2\xc4\x4a\x28\xe9\x0c\x11\xce\xa0\xaa\xca\xb2\xd7\xd8\x3f\xfb\x3a\xfb\xed\x24\x5a\x9e\xb7\x5c\x93\x97\x0b\x0d\x02\x33\xdb\x59\x88\x7d\xe1\x85\xf6\x30\x59\x83\xd4\x0b\x0a\x96\x1f\x21\x14\xb4\x04\x4e\x0e\x20\xb2\xa9\x18\x2c\xcd\xaf\xfe\xda\x94\xab\xaf\x9e\xd1\x25\x9b\x16\x05\x29\xb8\xb1\xbb\xb5\x3e\x7d\x19\x03\xa5\xe1\x6a\x18\x99\x01\x83\x97\x45\x8f\xcc\xbd\xda\xe3\x4d\x90\xc5\x5f\x9a\x3f\xf4\xcc\xa1\xa3\x47\x08\xc1\x8d\xf0\xf7\x3f\x68\x0c\xfd\x23\x84\xc6\x96\x72\x7e\x79\x69\x68\x08\xeb\x0e\x59\x96\x14\xf9\x70\x5f\x99\x61\x20\xe7\x66\x0a\x25\xc4\x3b\xef\x79\x42\x99\x6b\xa1\xce\x7f\xa6\x82\xdf\x9b\x14\xf4\x6d\x8b\xcc\x8b\x44\x5a\xe5\x8f\xda\xd4\xec\x90\x40\x53\xee\xa8\xad\x94\x1a\xbf\x47\xf9\x27\x58\x70\x90\x9b\x8b\x46\x3e\x99\x49\xfe\x07\xcf\x21\xe5\xcf\x34\x35\xd4\xb2\x3c\x89\xab\x02\x99\xbf\xab\x04\x32\x7f\xb7\x81\x7b\xb9\x7f\xd0\x1c\x6c\xe9\xbe\xea\xeb\x9a\x03\xe5\xf5\xda\xbb\x59\x9e\x6d\x17\x71\xea\xaf\x9a\x88\x1b\x2d\x78\xb4\x57\x95\x60\x24\x87\xfd\x8c\x51\xaa\x39\xaf\x85\x05\xa2\x5e\x2e\xd2\x2e\x0d\x71\x58\x54\xe0\x7d\xba\x52\x3e\xb6\x30\x8f\x35\xea\xd7\x5a\x97\x85\x87\x7e\x55\x79\xee\xab\x2a\x13\x22\xc4\x6b\xcb\x31\x88\x5e\x9a\xa8\xe9\xed\xba\x6d\xfe\x9c\x8c\x2a\xb5\x1c\x4a\xff\x9e\x42\xe3\xdf\x53\xe3\x49\x3d\xd3\x0f\x83\x30\xdf\xeb\x8a\xd3\x98\xbf\x43\x8d\xf6\xcc\xc4\xe9\xde\xa2\xa1\x2c\x9b\x56\xf1\x53\xde\xf3\x54\x96\x7e\x1e\x56\x42\x46\xf9\x9e\xb4\x08\xa2\x41\x9c\x64\x81\x89\xf3\x10\x6f\x11\x2b\x74\x4b\xc1\x17\xb6\x54\xe8\x11\xc6\xfd\x28\x0c\x72\xcc\x54\xb2\xec\xad\x22\x72\x3a\x59\x6d\xed\x14\xd9\x27\xca\xcb\x14\xfc\xae\x0b\xb1\xef\xe0\x39\x09\xe2\x91\xbc\x1b\x4c\xd0\x7b\x5a\xb6\xe5\x22\x3c\xbd\x42\x49\x1e\x61\x2f\xb6\x63\xc9\xab\xf8\x9b\xc9\x72\x99\x02\x08\x4f\xc0\x22\x42\x6d\x90\xf4\xfb\xb5\x74\x7d\x79\xb6\x9d\x99\x38\x43\x16\x64\xd1\x07\xe5\x23\xe3\x13\x35\x54\x2d\x0d\x01\xd3\xab\xb4\x18\x50\x9f\x06\x6b\xc0\x31\x3d\x8b\x44\x8f\x68\xfb\x6d\x2c\x74\xfe\xf7\xda\x05\x50\xe0\x63\x7c\x24\xd6\xa8\x3c\x1c\xd3\x85\xa8\x63\x15\x69\xef\x51\x12\x87\x01\xc2\x02\x91\x3c\x52\x38\xf0\xcb\x8a\x99\x14\x21\x04\xf5\xf1\xb5\x38\xe3\xf2\x52\x85\xf2\x0d\x75\xa4\x37\x2a\x58\x77\xe9\x63\x84\x71\x36\x0e\x53\x19\xd8\xb5\x68\x08\xab\x4d\x70\xae\x3a\x94\xa9\xaa\x93\x86\x82\x3f\xda\xb6\x88\xe3\xee\x55\x74\x35\x1d\xae\xf3\x7f\x3c\xaf\x68\x96\x03\x3f\x4d\xd7\xe9\xef\x96\x97\x38\xa3\xbd\xaa\x54\x32\xbf\xaa\xe0\x01\x57\x2a\x95\xd5\xd5\x24\xdd\xe3\xc6\x94\xcf\x68\x41\xa8\x4a\x29\x83\x9e\x94\xb4\xea\x14\x72\xe1\xcf\x68\x57\x49\x7b\xd9\x31\x03\x9a\x32\x75\xdb\xeb\x0a\x69\x90\x8c\xc7\x17\x7c\xcd\x53\xe3\x13\x28\x2b\xc3\x4e\x6c\x50\x25\x6b\x37\x5a\x65\x58\xc2\x67\x26\x8a\xcf\xe1\x4c\xa3\x4a\x1b\xcb\x7d\x4d\x29\x74\x06\x9b\x37\x84\x0e\xef\x78\x7a\xb7\xb9\x48\x33\x1f\x86\xb1\x40\x52\xf1\x56\x4e\xe1\x36\xf9\xa4\x16\x7d\xcd\xcd\x95\xc1\x4f\x4c\x92\xda\xfc\x66\x2d\x6b\xe1\xc2\x82\xa5\x6f\xa1\xab\x47\xd0\x71\xbf\xf6\x1d\x0c\x56\x29\x83\x61\x2e\x1f\x68\x92\x76\xe9\x23\x3c\xa5\xd0\x20\x71\xbf\xfc\xd1\x80\x05\xe5\xec\xbb\x39\xe4\x84\xbb\x5c\xb5\x31\xe9\x46\xe1\x80\x9a\x32\x7b\xca\x0f\x48\x49\x9e\xde\x17\x4e\x3e\x54\x96\xef\x43\x5c\x2a\xb0\x06\x77\xf0\xc8\xf8\x04\xfb\x52\xb4\xf6\xeb\x30\xb2\xa5\xb6\x9f\xe7\xa9\x1f\x88\x70\x04\x3e\x78\xcd\x53\xca\x6c\xd7\xd4\xf2\x94\x8a\x31\x2d\x35\xc6\x10\xa9\x16\x34\x30\x4e\xdb\x5b\x9e\x6a\x51\x1f\xa3\xe5\x27\x12\xfd\xb4\x60\x80\x5a\x7e\x68\xd3\xc5\x41\x92\x86\x49\xce\x9e\x51\xe6\xf6\xf4\x10\x5f\xc5\xb4\xa6\x79\xf6\x94\xe2\x73\xf8\x16\xe1\xd5\x98\x07\x19\x19\x91\x50\x41\x38\x59\xe4\x0f\xd1\xb2\x43\x68\x0e\x7e\x71\x94\x1e\xc0\x4b\x85\x00\x6e\xf7\x86\xa6\xb6\xfc\x26\x9e\x23\xf7\xc0\x60\x8d\x2c\x00\xd3\x0e\x8c\x13\x85\xc7\x33\x42\x74\x89\x6a\x03\x4c\xe2\x47\x78\xf4\xa8\x5f\xa3\x5d\xc9\x2d\x3b\x32\x40\x48\x19\xb8\x01\x80\xc0\x92\xd1\xfe\x68\x70\xde\x9e\xb8\xe1\x8a\xab\xde\x93\x3b\x87\x37\x96\x67\x81\x70\x41\xc1\xee\xa1\x6a\x07\xfc\x50\x11\xeb\x9c\xf2\x1c\xfb\xce\xd7\xa8\xd3\x81\x47\xf3\xf7\xb0\xd0\x76\x36\xab\x7c\x68\x42\xff\xa1\x6c\x02\xca\x2d\x30\xda\x6f\x4f\x1c\xd0\xf6\xba\x7a\x00\x5c\xea\x90\xa4\xc9\xc9\x57\xc4\x88\x7a\x51\x44\x40\xeb\x97\x8f\x55\xd8\xea\xa7\xe1\x54\xf9\x1b\xc8\x61\x3f\xc0\x03\xc0\x5b\xc2\xe0\x82\x14\x60\x5c\xd3\x22\x36\xdd\xd4\xcf\x18\x80\x20\x43\x81\x0e\xe1\xf2\x8e\x4a\x41\x7b\x45\x96\x33\x2d\x1e\xfc\xf0\x39\x15\xf6\x40\x42\x14\xdb\xe4\x5b\x4d\x15\x65\x42\xde\x48\xfe\x29\xe2\xbb\xaa\xd7\xf0\xe7\xca\x2b\x46\x61\xdf\x64\xfe\xaa\x9b\x2c\x87\xaf\xe1\x69\x09\x51\x43\x54\x54\xc1\xd7\xd5\xcc\x1d\xeb\xbf\x9b\xb8\xa5\x1a\x56\x67\xf5\x38\xe4\x59\x1b\xa2\x99\x08\xc8\x6b\x40\xbf\xb0\xec\x6e\x29\x53\x70\x4b\xd7\xaa\x23\x3f\xec\x69\x71\x0e\x98\x09\xc1\xb3\xa8\x41\xca\xb9\x0c\x28\x49\x54\x20\x4f\xab\xea\xd5\xd7\x7e\xb1\xe3\x8a\xf0\x0f\x14\x0b\xca\xa5\x27\x37\xd4\x24\x7e\x91\xae\x86\xab\x12\x0c\xe3\x45\x9c\x57\x0c\x46\xe7\x55\x8a\x3a\x2c\x46\xe3\x7c\xbd\x55\xbe\x14\x8e\xea\x95\xce\xc8\x9f\x59\x9b\x50\x8c\xf3\x22\x45\x7e\x89\x52\xc5\x6b\x08\xe2\xf8\x44\x05\xf4\x2b\x61\x8f\xd9\x4d\x9a\x6a\x98\x0d\x10\xb4\x22\xee\x99\x74\x14\xc6\x62\xfb\x61\x22\xb4\x94\xcd\x75\x3c\x29\xc9\xd8\x76\x16\xfc\x3e\xdf\x5e\x4d\x2c\x6d\x96\xe2\x28\x9b\xb7\x1a\xe9\x1f\x37\xff\x62\x5e\x0a\xcc\x38\xa7\xea\x09\x20\x0a\x4c\x37\xc0\x27\x93\x03\x15\x1a\xa9\x74\x15\x49\x30\x07\xae\x9e\x9b\x8e\x3f\x87\x0d\x2c\x11\xad\x6a\x38\x83\xef\x5a\x10\x5e\xb4\x76\xd5\xce\x96\x52\x1d\x9a\xad\x88\x20\x6f\x68\x41\xb0\xb3\x4a\x72\xea\x5b\x4d\xea\xc5\x91\xf1\xb3\x7c\x9a\x52\x70\x71\x31\xe5\x57\xc1\x48\xcc\x6c\xe8\xf1\x42\x4a\xa8\xb1\xe7\xb7\x2b\x03\x4f\x41\xc8\xa8\x5c\x51\xd9\x77\x45\xb1\xf3\x8a\x0c\xe5\x4d\x2c\x37\x71\x1d\x8a\x8a\xcc\x2f\x06\xc3\x5c\x54\x60\x85\xf0\xc9\x89\x2c\x9e\xb5\x66\xa8\x67\x5e\xf4\xd1\x84\xd2\x48\x1e\xf8\x5b\xbc\x70\x3c\xc2\x1b\xca\x6a\x80\xa3\xa5\xe5\x1a\x0f\xa7\xd5\xf8\xeb\x69\x35\xd7\x39\xf0\xc3\xf8\x11\xba\x49\xdc\xfd\x25\x4f\x2d\x08\x0c\x4d\x21\x2e\xbf\xef\xa9\x26\x10\xd7\x63\x04\x30\x53\xbe\x5f\xc4\x18\xbb\x37\x76\x16\x60\x61\x37\xf6\x6c\x34\xe8\xb1\x12\xa4\x9b\xa5\x21\x14\xca\xc7\x22\x15\x6d\x9b\x27\x0d\x7b\xd3\x1a\xd7\x64\x2b\x59\x4f\x3d\xd9\xb1\x50\xcd\xa7\x9e\xac\xa2\x9a\xf6\xbb\xb2\xb3\xbf\xc7\x41\x65\xd8\x0b\xb2\x0a\x3b\xc5\x4a\xe8\xd9\x54\xf8\xaa\x4e\x2a\x75\x86\x73\x70\xf8\xcc\x61\x5c\x53\xf2\x5b\x58\x28\x0d\x9a\xed\x41\x30\x78\xce\xd3\x40\xba\x9d\xdd\x27\x82\xfb\x86\x7e\x99\xb9\xe5\x61\x20\xec\x8a\x58\xef\xd7\xf4\xc4\xe3\x35\xd5\x72\x4a\x0b\x92\x05\xa5\x30\x16\xef\x6a\x4f\xc7\x09\xa4\x73\x50\x6c\x47\xfa\x9c\xe4\xf1\xdb\x8a\x1e\xf4\xf8\x44\x71\xf6\x30\x3f\x21\xff\x7d\x9d\x5d\x79\xbe\x9d\x91\xa5\xae\x32\xfd\x7c\x9f\xee\x0c\x9e\xff\x3a\x76\x1d\x5e\xf7\x2d\x95\x93\xc6\x59\x1e\xe6\x85\xb8\xcf\x26\xb8\xf9\x13\x0e\x63\x35\x36\x69\x1e\x1a\x71\x3a\xb0\x0d\xef\x79\x8a\x6a\x98\xab\x72\x78\x33\xaf\xa8\xf9\xba\xd5\x70\x90\xa4\x49\x81\x2d\xc4\xa3\xfa\x95\xb1\xfd\xca\x84\xe2\xd0\x3c\x46\x5f\x8a\x10\x83\x51\x97\x88\xff\xae\xd3\xeb\x46\xda\x01\x2d\x7e\xac\x8f\x9b\x8a\xdc\xfb\xc7\x9e\xa2\x66\xbb\x46\x90\x09\x40\x99\xce\x78\x3b\xdb\xd8\x82\x1a\x7a\x40\x9d\x67\xdc\x32\x87\xe2\x3c\x58\x8b\x5d\xc6\xb2\xa9\x0a\x5e\x73\x43\x05\x3e\x8f\x76\x76\x86\xba\x73\x73\xed\xac\x18\x0c\x4c\x96\xcb\xb6\x41\xed\xf9\x3c\xbe\x8e\x4f\x26\xff\xe4\x63\x0c\x77\x90\xc4\x83\xd4\x64\x59\xe9\xa5\x5b\x5f\xb2\x9c\x05\x13\xd5\x52\xb8\xa8\x68\x3a\xe3\x24\xff\x05\xba\x33\x66\x23\xa5\xe7\xc2\xcd\x76\x0a\x9e\xd8\x2c\xd2\x33\x12\x90\x08\x35\x41\x2d\x7d\xa9\x9d\xe6\x6c\x75\x54\x55\xea\xb4\x16\xba\xb9\xe9\xe9\x36\x3a\x21\xd4\x10\x30\xde\x56\x72\x84\xf7\x10\xfa\x56\x2a\xae\x28\x26\xde\x66\x54\x0b\xde\xf8\x1b\x14\x47\x4b\xc1\x9f\xde\x04\x02\x78\xe0\x87\x51\x22\xde\xd5\x01\xaa\x4c\x84\x4a\xe8\xd9\x09\x01\xbb\xca\xdb\xae\xa1\xb4\x8a\x4a\x1e\x57\x86\x60\x69\x99\x4e\x06\x46\xf2\xaf\x89\x3e\x05\xff\x30\xbd\xa1\xe1\xc8\x7e\x90\x93\x68\x5a\x4b\x83\x3b\x54\xdb\xb1\xbe\xe7\x16\x16\xda\x7e\xd4\x4f\x4d\x16\x24\x64\xbb\x79\xfd\xab\x3e\xf1\xe9\x26\xc1\x8c\x22\x0e\xb1\xd3\x2a\xfb\x45\xfe\xf8\x80\x12\x6d\xc9\x41\x03\x52\xbe\x55\x4b\xa6\x7d\x68\xd1\x12\xc9\x4b\xe0\x12\x0c\xc3\x28\xc2\x40\x2f\x0c\x11\x60\x05\xa2\xf7\xdd\x5a\x9e\xdd\xde\x56\xe1\xec\x8b\x7e\x90\x74\xb3\x84\xe8\x27\xe6\x79\xeb\x9c\xd0\x33\x46\xf7\xe9\x57\x2c\x97\xb7\x13\xf7\xd7\x65\x03\x33\x32\xe9\x40\x4a\x7c\x70\x98\x28\xe0\xf2\xb1\xce\x96\x93\xf5\x24\xf7\xa7\xab\x84\x6b\x73\x6a\x45\x3b\x96\xbf\x4d\xcd\x7a\xa7\x5b\x07\xfd\x28\x49\xd2\x7d\xca\x65\x30\xa9\x0e\xf3\x29\x61\xc5\x09\xcc\x81\xde\x20\xd6\x18\xf4\xcf\x10\x13\xb6\x28\x25\x42\x31\x77\x57\x47\x81\xfe\x6e\x28\x32\xd6\x5b\x4a\x9f\xf4\x7e\xad\x4b\x34\x37\xd7\x0e\x92\x60\x25\xf7\xc3\x88\x26\x35\x2d\xa3\x90\x0c\xd3\xfe\xdb\x7b\x6a\x1e\xea\xfc\xe4\x13\x0e\xf6\x13\xf7\x7e\xa9\x4c\x87\x58\x40\xad\x43\x17\x2c\x5c\x2d\x6a\xd6\x7e\xaa\xa3\xe4\x25\x7f\xe8\x29\x2f\x57\x61\x67\x61\xe9\x67\xf6\xfc\x18\x4d\x46\xe5\x6a\x77\xa7\x7c\xb6\x22\x64\x4d\x8b\x07\x5f\xb6\x45\x66\x00\xb9\xde\x25\x6f\xf7\x2f\x4b\xd6\x49\xd0\x0b\x04\x28\xdf\xa6\xec\x0d\xbb\xfb\x06\xad\x02\xd1\x7c\xd0\x9b\xf0\xc7\x9e\x62\x25\xfd\x37\xaa\x27\x7c\x05\xf2\x08\x48\xe5\xa6\x41\xcd\x81\x8a\xd2\xae\x8d\xd6\x17\x7e\x87\xc3\xde\x3d\x5a\xe4\xee\x4d\x62\x97\xbc\xed\xb5\x3e\xfb\x59\x0e\x49\x7f\x40\xc9\x2a\xb2\xeb\x27\x88\x26\x12\xfd\xa1\xad\x49\x69\x05\x11\x2d\x0b\xb8\x14\xb9\xda\x47\x30\x4a\x80\x47\xee\xde\x68\x7d\xf9\x8b\x55\xe2\x20\xfc\xfd\x39\x95\xb5\xef\xda\x20\xcb\x87\xdd\x72\x47\x55\x5c\xd7\xfc\xf5\x35\x3f\x45\x7f\x8c\x39\x3a\xe8\xfe\x84\xaf\xa3\xde\x55\x5b\x2c\xa3\x37\x9f\x86\x38\x5b\xae\x67\x77\x4a\x0d\xa5\x9c\x52\xe3\xaf\xe3\xd4\x64\x65\x36\x42\x4c\x79\xe5\x45\x5b\x49\xab\xf2\x05\xf2\x49\x0d\x39\xf4\xb9\x76\x16\x24\xfd\x3e\x78\x56\x58\xa3\x42\xd3\x98\x6e\x6a\x37\x76\x93\xde\x21\xde\xdb\x2b\x0d\xd2\x47\xdd\x24\x4d\x55\xc9\x1d\x0d\x6f\xcc\x48\xf2\x71\x6d\x08\x88\xba\x9c\xe3\x34\xe9\x09\x8f\x31\xad\x4a\x18\x08\x8c\xd3\xf1\xb1\x0a\x80\xc2\x38\x88\x8a\x9e\xd9\x8f\x17\x55\xa9\xad\x61\x9b\xfe\x5b\xac\x4d\x99\x9d\x76\xf3\x74\x3f\xc1\xdd\x48\xdb\x51\x8f\x75\x28\xcd\x33\x90\x16\x60\x39\xbc\x8a\x1d\x8f\x70\xea\xec\xc4\x51\xc9\xbf\x0d\x6f\x89\x31\xb2\x3f\x57\xf5\x7e\x51\xb4\x77\xdd\x9d\x4b\x8a\xc6\xed\x92\xb2\x96\xd4\x33\x4d\x4d\xfc\xa8\x6b\x0d\xdc\xd5\x95\xea\x1f\xd0\xcf\x09\xa5\x93\x73\x82\x0f\xb0\x49\xa4\xb7\x5d\xbe\x13\xfe\x03\x85\x49\xbf\xae\x5d\x13\xeb\xe3\xe3\x37\xde\xa5\xcd\xca\x5f\xa5\xab\xb5\x69\x41\xa0\x47\x90\x40\x62\x63\x5f\xc2\x63\x45\x0a\xc3\x91\x0b\x82\x92\x7b\xb5\xb4\x90\x8a\x88\x84\xf0\x74\x54\x92\xcc\x52\x36\x71\xa4\x02\x50\xf8\x61\x32\x7f\x35\x0b\x39\x0e\x93\xd8\x90\x84\x42\xcb\xf2\x0c\xed\x81\x25\xe5\x93\x0d\x65\xf6\x4d\x1c\x87\x55\x3a\xf9\x89\x1b\x32\xd8\x54\x6f\xa3\x9f\x1a\xd3\x13\x4a\x3f\x19\x0b\x76\x53\x41\x9b\x1a\x92\x45\x8f\x58\x42\xe2\x06\xf3\xcc\xd2\xa7\xfc\xbb\x80\x2e\x5e\xd2\xa4\x0c\x97\x14\x20\x66\xb5\x0c\x66\x03\xa0\x95\xad\x1b\x3b\xaf\xf9\xa8\xeb\x72\x8d\x5f\x9a\x6f\x8f\xfc\x15\xa3\xb4\x7b\xd0\xf0\x97\xc8\x7e\xe7\x13\x7f\x8e\x5c\x7e\xcf\xa4\x59\x4e\x6c\x4d\xe5\x65\x89\xb6\x9f\x02\x41\x5e\xd2\xb4\x22\x34\x83\x15\x51\x4e\x68\xb1\x82\x5f\x57\x4c\xe0\x5f\x6f\xd8\xd7\x23\x3f\x8c\x79\x86\xc8\x4d\xb8\x9f\xc7\x5e\x92\x4c\x57\x17\x87\x47\xa3\x30\xcf\x8d\x54\x50\x90\xa3\x9c\xf2\x54\xd3\xe4\x54\xad\x44\xf5\xec\xec\x52\x7b\x98\x24\x2b\x52\x88\x40\x53\x18\x12\x1a\x7c\x5c\x2b\xf8\x3a\xd6\x01\xc1\xf1\x60\x63\x7f\x55\x8f\xc2\x7d\x55\x95\xff\x47\x61\x9c\xa4\xe4\x5c\x51\x15\xc7\xb0\x8e\x9d\xd8\xb2\x98\xea\x07\xb5\xcb\x83\xea\xfe\xb8\x60\x4e\x33\xf8\x00\x2c\x6b\x3e\x6e\x20\xec\xc9\xfc\xbe\xc1\xcf\xd9\xb9\xe2\x72\x17\x4a\xb8\x5b\x7e\x11\xea\x67\x17\x54\xa9\xe4\x2b\x85\x1f\x85\xb9\xae\x49\x23\xad\x96\xe6\xb5\x96\x4c\x73\x8e\xe0\x7f\xc7\x57\x4b\x68\x49\x2f\x1f\x85\xe9\x8f\x14\x4c\xaa\xef\xc7\x71\x68\xa6\xf5\xf2\xf5\xf4\xf2\x85\xd9\x94\xb2\x83\x03\x7a\x9d\x6d\x54\x75\x18\x25\x79\xb8\xca\xeb\x6e\xc9\x6a\x35\xd0\x02\x17\xb1\x06\x87\xe5\x16\x6a\x97\x24\xe6\x31\x27\x84\x31\x30\xb5\x7c\xec\x26\xf4\xf3\x34\x89\x07\x34\x8c\x59\x3a\x32\xa4\x5d\x50\x88\xe1\xe3\x5a\x3f\x7a\x71\xb1\x4d\xf5\x41\xcb\x97\x7a\x46\x83\xe5\xce\xd4\xe8\xe3\x5e\x78\xa1\xdd\xc5\x46\x63\xc2\x20\x2c\x4f\x61\x0f\x72\x6b\xe6\x2b\x45\x98\x9b\xbd\xf4\x94\xf0\x5d\x27\x26\xaa\x19\xfb\x0d\x84\x25\x88\x1b\x19\x7f\x64\xad\xac\x25\x47\xf8\x06\x3d\x4b\xfe\xff\x9e\x52\xd5\xd5\xaa\x55\x2f\x86\x3e\x93\x7a\xa0\x52\xf7\x63\xcf\xe1\x2c\x7e\x3c\xf9\xd4\x4e\x90\x59\xb9\x24\x0f\x94\x5f\x6b\x05\x48\xca\xaf\xb5\xce\xc2\x06\x16\x17\x11\xa8\x60\xd8\x67\x6f\x47\x0d\xa1\xdd\xf6\xaa\x4d\xd9\xf2\x2d\xda\x4a\xef\x73\x16\xe3\x7f\x85\xdc\x85\x3d\x9e\x9b\xb7\x74\x9c\xf4\x50\x98\x62\x8c\xd6\x25\x47\x77\x13\x57\xee\xb9\x80\xc7\x8a\x70\xf0\xff\x25\xec\x5d\x83\x24\xb9\xb2\xf3\xb0\x99\xea\xee\xc1\x0c\x80\x19\x3c\xf7\x65\x49\xa1\xe2\x7a\x23\x20\x45\xac\x20\xdb\x11\x0c\xd3\xfa\x93\xa5\x9e\x5e\x82\xd3\xc1\x6d\x4c\xf4\x0c\x01\x09\xc1\x08\xe3\x56\xd6\xad\xae\x44\x67\x65\xd6\x66\x66\xf5\xa0\x11\xfa\x61\x2b\x64\xff\xf0\x0f\x85\x2d\xc9\xb2\x23\x48\x87\x69\x51\x41\x99\x14\x2d\x53\xa4\xc8\x15\x49\x91\x55\xcb\xe5\xbe\xb0\xaf\x59\xbc\xdf\x98\xf7\x7b\xba\x7b\xde\xd3\xf3\xe8\x71\xe4\xf9\xce\xb9\xf7\x54\x67\x82\xfe\x85\x4c\x4c\x57\x55\xe6\x7d\x9c\x7b\x1e\xdf\xf9\x3e\x09\xd1\xf0\x67\xdc\xd3\x8d\x11\xff\x99\x4a\xa3\xcf\x72\x3f\xfc\xd6\xa9\xd2\x20\x6f\x9d\x1a\x79\xee\x93\xae\xc9\x8b\xb6\x89\x63\xc4\x17\x4e\x48\xc4\xf1\xcf\x71\x1b\xab\x3b\x12\x16\xbd\xc2\xc8\x17\x95\x14\x3e\x69\x7a\xe4\x85\x4d\xc2\xc8\x72\x10\xc4\xdc\x33\xd4\xb2\x24\x3c\x34\x2a\x8b\x66\xe3\x38\x3d\xc2\x89\x09\xe9\xdf\x9a\xe0\x0f\x54\x68\x99\x77\x95\xe0\x4b\xdb\x46\xc9\xd2\xa3\x34\xb4\x4e\xff\x70\x51\x18\xe2\x2e\x60\x02\x90\x2c\xfe\x0d\x8c\x14\x8a\x37\xb0\x2c\x30\xc8\xfb\xa8\xc0\x83\x13\xf8\x63\x2c\x6a\xa1\x75\x2b\xa7\x1f\xb1\xf7\x06\x66\x59\x94\x5c\x68\x14\x60\x6a\x37\x50\x45\xc2\xf7\x1e\xa7\x10\x15\x6b\xaa\x8a\xe3\x22\xd1\x81\x28\x59\x71\x69\x05\x57\xf5\xa2\x21\x96\x0a\xd8\xf6\x8f\xd1\x21\x64\xfb\x83\x38\x5d\xe5\xd3\x5b\xa4\xb4\xe8\x8d\x44\x19\xab\x86\x58\xb2\x33\xec\x53\xd3\x30\x8f\x0d\x8c\x1b\x5f\x2b\x00\x55\x16\xe5\x36\x99\x9a\x80\x9e\x97\xbf\x02\x5b\xcd\xe7\x0a\x72\x2b\x9b\x35\x2c\xe4\xcf\x35\x97\xd2\x18\x68\x5d\x04\x0c\xd0\x90\xe3\x6b\x47\x05\xde\xb3\x71\x2c\xa9\x27\x3c\x32\xd7\x3b\x10\xf6\xff\x08\x2f\x83\x40\xea\xaa\x3a\x50\x4b\x8f\x27\x8b\xda\xc3\xc2\x42\x96\x0d\xf1\xe0\x5d\xf5\x2a\xe7\x47\x13\x74\x6b\xde\x2c\xdc\x0a\x7c\x2e\x73\x53\x75\x67\x0c\x13\xfb\xea\x80\xf2\x6d\x10\x3c\xc0\x0e\x3f\x46\xfb\x50\x90\x6f\x3e\xa3\x82\x08\x11\xc8\xf4\x3f\x26\x04\x17\x5c\x98\x5b\x54\x22\x13\xd8\x5c\x4d\x57\x42\xd8\x33\x59\x1f\x47\xb4\xe0\xda\x1b\xaa\x9f\x7e\xfb\x34\x4b\xf2\xa8\x6b\x42\xdb\x21\x4c\xb3\xa2\x1d\x14\x88\xc9\x16\x16\xa8\xf4\xbf\x7a\x1c\xaf\x89\xb2\x87\x7c\x69\x95\xe9\x50\x11\x47\xff\xa5\xce\x45\x9e\x87\x0d\x95\x91\xf3\x8e\xf3\x55\x5a\xed\x22\x02\xa5\x9a\x37\x76\xb7\x9c\xf0\x4c\x3b\x1f\x66\xc0\x16\x49\xf4\xe6\xa1\x93\x57\x31\x9b\x42\x05\x52\xcb\x60\x34\x30\x99\x94\xde\xa5\x07\x82\x7e\x48\xba\x23\x9c\x26\x50\xcf\x12\x11\xd1\xb4\xa6\xd2\x65\xd6\x7a\x9d\x9a\xa7\xb4\xde\xea\xcf\x29\xb5\xa0\xbf\xa6\x5a\x79\x87\x03\x2e\x54\xe1\x05\x19\x70\x89\x06\xa3\xbf\xd9\xf2\xfb\x68\xef\xd8\x97\x80\x1e\x01\x89\x15\x17\x55\x7a\xa6\x1d\xc5\x51\xa1\xd8\xd1\x35\x97\xae\x70\x0c\x69\x6a\xd3\xc2\x68\xe0\xe5\xbf\x67\x83\x2c\x9e\x92\x0c\x64\x27\x7d\xcd\x26\xf9\x94\xcf\x62\x4f\x8f\x15\x33\xc6\x39\x5d\x07\x7c\xb8\x55\x85\x53\x1e\x2a\xd7\x48\x81\xc4\x55\x9d\x94\x5d\x15\x2e\xb1\x00\xc9\x61\x9b\x81\x92\x07\x5b\xe2\x9a\xd2\x7b\xb9\x36\x91\xc1\x35\x51\xf2\x85\x72\x71\x8b\x7a\x51\x79\x28\xa1\x7e\x73\x17\x7e\x10\x8c\xe2\xeb\xb0\x83\xc8\x22\x5e\xc5\x01\x09\x63\xfb\x32\x76\xf3\x44\xc3\x06\x53\xb8\x8c\xb4\x68\x02\x6c\x27\x7f\xdb\xc8\xcb\x4f\x30\xe9\x33\xd2\x88\x1f\x50\x56\x01\x2b\x6e\x53\x75\x94\xdd\x27\x1b\x80\x13\xf5\x21\x6e\xde\x10\x2e\x89\xc9\x42\x4b\xb9\xe2\x71\x72\xff\x85\x52\x56\xbd\x4e\x1b\x9e\x29\x53\x68\xc3\x4b\x8b\x1c\x32\x26\x4a\xb2\xe0\x39\x49\x53\x63\xfb\x61\xe6\xcf\x06\x4f\x3b\x13\xba\x92\xc6\xc3\xa4\x30\x59\x94\xf7\xa9\x33\x1b\x7b\x82\xc9\x85\xf9\xa6\x36\xe4\x19\x66\x61\xcf\x70\x53\x19\xb3\x94\x2a\xf1\xd2\x8b\xf0\xab\x38\x7c\x8c\xfa\x51\x42\xce\x2b\xcd\xbc\x08\x2c\x79\x05\xf6\x3f\x55\x07\x63\x98\x99\x04\xf2\xa8\x8e\xee\x74\xee\xb0\xcf\x2b\xba\xf8\xfb\x98\x92\x81\x3a\x56\xb1\x62\xd4\x70\xfe\x0a\xe8\x64\xe5\x5c\x83\x85\x15\x9e\x7c\x9f\x7f\x19\xd8\xac\x1f\x01\x19\x22\xb5\x3a\x64\x15\xf9\xba\x62\xf0\xbe\xda\x34\x1d\x8a\xe2\x3c\xeb\x13\x36\x24\x16\x26\x5f\x2b\xc7\x65\xce\xe0\x98\xc1\xb2\x38\xa3\x09\xb1\xcf\xd4\x06\x2f\x7d\xb3\x64\x5e\x8b\x12\xee\x2b\x77\x9d\xdd\x2e\x90\x3d\x59\xd7\x61\x4f\x45\x15\xc3\x15\x15\xe9\x59\xa3\x2f\xe0\x9b\x1a\xe2\xc9\x43\xc4\xef\x1a\x16\x4a\x0c\xf2\x86\x12\x83\xbc\xa1\x92\x12\x7d\xf3\x6a\xd4\x8f\x5e\xb3\xd3\xaa\xf5\x1c\xfe\xa4\x28\xe2\x35\x16\x16\xb6\x10\xf6\x12\xfd\xda\x84\x5f\xfa\xf5\xb9\xe6\x8b\x8b\xb3\x14\xf3\xc0\xb8\x03\x50\xc3\x16\x4e\xe9\x35\x9e\xae\x60\x2a\x0f\x2c\x34\xc3\xb4\x28\x52\x3e\xe9\xb5\x1d\x75\x89\x4d\xdf\xb8\x72\xc3\xcb\x08\x45\x9d\x23\xd4\x9d\xe7\x11\xcf\x3b\xc8\x65\x82\x67\x79\x3f\x50\x38\xa3\x3a\x5d\xff\xd8\x76\x8b\x86\x96\xfa\xa2\x34\x80\xef\x59\x91\xf4\x44\x1c\x0d\xa2\x24\xc5\x54\xc1\x7f\xbb\xad\xf8\xec\x6f\x7b\xed\x95\x65\x7b\x44\xdc\x27\x9c\xbe\x0f\x68\x45\xf2\x75\xa0\x9b\x0a\x86\x59\x91\x4f\x79\xb9\x08\x30\x21\x63\x4e\x60\x49\x44\xb9\x42\x89\xf6\x64\x4b\x68\xf3\x43\xdc\x89\x74\x8a\x68\x58\xd2\xc3\x09\x14\xd8\xff\x50\xdf\x26\x26\x64\xcd\x69\x38\xf2\x1b\x23\x85\x66\xdb\x70\xcf\x1e\x97\xae\x1f\xef\x26\x1c\xe8\x6f\x05\x1e\xed\xfc\x56\x2d\xbd\x48\x3f\xcd\x63\xdb\x97\xda\x25\x03\x79\x03\xc5\x9e\xe7\xa9\xb6\x96\x32\x6b\x13\x9b\x41\xd6\x18\xfb\xe7\x96\x0a\x00\xb9\x8d\x4a\x84\x17\xfc\xc6\x8a\xed\xab\x7b\xca\x51\x82\xcf\x76\x87\xfc\x7a\xe4\x2a\x3f\x19\xa9\xb6\x1c\x46\x74\xc0\x12\xef\x45\xd3\x1a\xde\xf0\x0e\x1f\x74\x92\xd4\xf2\x0e\xe0\x3d\xcd\xd1\x01\x62\x33\xb8\x08\x4f\x57\x34\x33\x0f\x50\x9f\xc0\xb2\xed\x30\xff\x0a\x5e\xe0\x63\x65\x0c\x3e\xae\xe9\x58\x3f\xd4\x5c\x8a\x56\xb4\x9c\xe1\x1f\x8e\x54\xbc\xfc\x87\x81\x66\x49\x2e\x4c\x14\x97\xc3\x5f\x9e\x07\x38\x9b\xce\x28\x88\xe4\x99\x0a\x82\x81\x8e\xda\x28\xeb\x4f\x2b\x81\xae\x29\x34\xc6\x6a\xfc\x1e\x72\x94\xd7\x95\x02\xfa\x8e\xd6\x17\x27\xf7\xed\xe1\xe7\xc5\xbf\x9b\x60\x89\xa4\x42\x80\x56\x51\x90\x98\x72\xbb\x33\xff\xf2\xcb\xcd\xd7\xa2\x24\x9c\x88\xbf\xcb\x53\x59\xc2\x6f\x1f\xe6\x86\xd1\x52\x62\x68\xfc\x1c\x93\xa7\x2b\x74\x9e\x53\x25\xdd\xa5\x38\x2a\x0a\x9b\xad\xa2\xe7\xc6\xb1\x1d\x7a\x72\x26\x6c\x16\x84\x42\xeb\xea\x64\xe9\x96\x87\xd0\x43\x9e\xff\xe8\xa7\xf4\x77\xb2\x4b\x7d\x46\xf9\x01\x15\x27\x04\xea\x45\x23\x88\x9c\xe8\x77\x47\x9e\x21\x76\x27\xd5\x75\xb0\xbc\x06\x0a\x64\x94\xe7\x29\xb9\x47\xf8\x79\xb4\xa5\x49\x7c\xa4\xa2\x9e\x1b\x0e\xb9\xd0\x19\xc0\xf8\x22\xd9\xf4\xba\x06\x04\xbe\x1e\x3c\xe2\x4d\x42\xe7\xe1\x49\xa0\xb3\x83\xa7\x6e\xc2\x7f\xe1\x7f\x08\x14\x66\x10\xb2\x0d\x02\x6c\x53\x5d\x54\x67\xf0\x56\xf2\x57\xb4\xeb\x44\x04\xdb\xb3\xd4\x3c\x44\xaa\x13\xf2\xbd\xae\x55\x24\x8d\x4b\x53\x30\x43\xdf\x80\xf0\x7d\x6d\xa4\x18\x23\xcf\xa8\xa2\xec\x27\xf8\x6a\x38\xf0\x28\xf6\xa2\xf8\x35\xdd\xaa\x91\x11\x35\x49\x11\x85\xd1\xc0\xcb\x88\xf2\x7e\xa7\xe5\x29\x7b\xdf\x11\xcf\xda\x7c\x10\x15\x76\x1a\x1e\x8f\xe0\xe7\xca\x9f\x86\xd3\xbd\x15\x78\xaa\x15\x3e\x70\xa5\x03\x66\xfb\xf9\x32\x3f\xdf\x5c\xca\xa2\x9c\xab\x99\x88\xf1\x71\x92\x3b\xc6\x64\xa7\x96\x7f\x74\x82\x5b\xd8\x64\xc5\x13\x34\xf8\xf0\xbf\x50\x02\x45\x42\x05\x60\x3d\x9c\x55\x0f\x8f\x4b\x9f\xd4\xe1\x85\x7c\x8f\xcd\xba\x56\x76\x7d\x17\xee\x9e\xd2\xb6\x58\x70\x9a\x74\x5e\xd1\xee\xa8\x52\x47\x05\xb4\x07\xab\x60\xe7\xb8\x9c\x6b\xc4\x98\x3f\xc3\x7c\x70\x1f\x0f\x3c\x3f\x8c\xfb\x45\xad\x04\x77\x49\xa3\xd5\x2f\x21\x4f\x80\xc1\xbb\xaa\x58\x65\x6d\xd6\x36\xfd\x94\xbd\x0a\xbc\xdb\x0d\x7c\x25\xdf\x28\x4e\xf1\xbc\x30\x9d\x68\xd8\xcf\xb5\x30\xb2\x4e\xc2\x28\x72\xa3\xcc\x84\xb6\x97\x66\xb9\x65\x50\x1b\x96\x1c\xe2\x3a\xbe\xae\x13\x1d\xa2\x9e\x3f\xd6\x10\x65\xa0\x91\xee\x36\xf7\xd2\x61\x45\x2f\x5a\x02\xe7\xac\x00\xab\x7c\xb2\xbd\xca\xf6\x5a\x9e\x01\x94\xcc\xee\x66\x86\xb5\x26\x84\x78\x7b\x02\x11\xfb\x79\x65\xad\xb2\x70\xd8\x2f\xfd\xad\xd0\xe6\x04\x3d\xc2\xc6\x3e\x4e\xbe\xb9\xe4\xb8\x1a\x8e\x6f\xf1\x38\xd1\xfd\xf0\xff\x9f\x58\x44\x49\xb1\xba\x47\x75\x09\x5e\x56\xba\xed\x27\x31\x5d\x4e\x69\x46\x25\x22\x03\x5f\x96\xfb\x04\xd3\x01\x57\xfa\xda\x48\xb1\x0a\x9f\x45\x98\xe2\xba\xd6\x5d\x1d\xff\x64\xc5\xc9\x2a\x0f\xec\x5e\x3a\x10\xc6\x7a\xda\x05\x6f\x3e\xde\x52\x45\x37\x74\x81\x4b\x6c\xb1\xfd\xc4\x39\xfc\x7c\xb3\x97\xf6\x2d\x7a\x1b\x9c\x1e\xa1\xe7\xe2\xaa\x6b\xae\xeb\xa6\x99\x59\xe5\xb0\x1a\x7f\xf6\xb6\x96\x2d\x7c\xbb\x4e\xce\x9d\xb2\x2a\x69\x9c\xcf\xf8\x6e\x51\xa6\xd7\xc5\x69\x04\x12\x17\x61\x51\x2c\x1f\x80\xb3\x72\xb0\x92\xc0\x0e\xfd\x65\x0d\x5e\xf2\x60\xf3\x95\x61\x27\x0a\x23\x69\x54\xc6\x77\x43\x49\x80\xaf\xdd\xe2\xca\x86\xb1\xcd\x67\x74\x0d\x92\xa6\xc6\x69\x7e\x79\xb6\x1b\x21\x8c\x67\x77\x2d\x50\x99\xd1\x5b\x2a\xff\x5e\xa4\x59\x26\xa4\xff\xae\x4b\x71\x61\xc1\xc9\x34\x3f\xa9\x34\xde\x99\x17\x91\x8b\x9c\xa8\x33\xef\x68\x29\xd4\xe8\x23\x04\xfa\xc2\xa1\x73\x87\x96\x23\xb2\xff\xff\x18\xbf\x0e\x3b\x72\x55\xf5\x00\x6c\xaa\xde\x27\xe6\xef\xe4\x12\x01\x16\x13\x62\xde\x63\xaa\xe8\xc8\xe9\x0f\xe1\x47\xff\xfc\x64\xdb\x0a\x91\xe6\x11\x83\xdd\x0b\xb3\x3e\x5a\xf3\x91\x9b\x8a\x0d\x59\x0a\x2b\x32\x31\x2d\xbc\x39\x7e\x9f\xeb\x30\x8c\x30\xfa\xef\x68\xca\xda\x3b\x75\xd2\xde\xf9\x70\x30\x00\x21\xd1\x41\x9e\x61\x78\x72\x7c\x3d\x81\xab\xcf\x53\x6e\x3b\x86\xc3\xc3\x72\x48\x7c\x03\xab\x2b\x25\x69\x45\x1b\x5f\x27\x86\x10\x75\x2c\x13\x09\x02\xc5\x71\x52\xe3\x48\x4e\x06\xca\x12\x71\xfa\x5e\xe4\xf3\xe8\xcf\xf8\xc6\xc5\x11\xf9\xb2\x1d\x14\x51\x98\x73\xea\xc8\xc5\xf0\x7e\xca\x30\x86\x0a\xcc\x77\x90\xcb\x33\x37\x2b\x5e\xd7\xe2\x6c\xf3\x15\x13\x2e\x93\xcb\x06\x14\xd4\x05\x45\xee\x76\x2d\xf0\x7c\x56\xef\x55\x6c\x21\x71\xfb\x66\xb6\x13\x85\xbe\xad\xdb\x55\xc5\xdc\x9a\xf1\x54\x9a\x02\xca\x99\xf6\x40\x3e\xc0\x91\x00\x0d\xd8\xd2\xbe\xf7\x87\x23\x75\xca\x54\xa7\x72\x7e\xbe\x69\xda\x29\x61\x21\x9c\x23\xbf\x46\x66\x4b\xa8\xa9\x9d\x1c\x78\x86\xb6\xe9\x09\xc1\x22\xce\xcb\xf2\x4d\x25\xa2\x9b\x3b\xdc\x4c\x4c\x9f\x8e\x0e\x71\x55\x54\xb2\xe7\x8c\x3a\xf3\xe2\xa8\x6b\x8b\xa8\x6f\x51\xaa\x76\x8c\x1b\x8e\xb6\x18\x1e\x33\x3e\xf7\x81\x3a\xff\x3a\x51\x3e\x88\xcd\x6a\x3e\xad\xd4\x03\x80\x67\xe6\xeb\x91\xcf\x9c\xb1\x39\x17\xa0\x72\x85\x7e\x64\xae\xd9\x31\x85\x61\x00\x84\x04\x51\xc8\xc7\x71\xf7\x02\xdf\x38\xa0\x64\x37\xcd\xfa\xc3\xd8\xbb\x4f\xec\x82\x06\xde\x1b\xbe\x58\x89\xd3\x5e\x98\x9d\x6b\xe6\x36\xe9\x6c\x4b\x64\xfc\xa1\x3a\xb9\xfe\x70\xf4\xb0\x04\x03\x8b\xb3\x3f\x47\x7f\x04\xdf\x18\x11\x1a\xe6\x12\x80\x1e\xc7\x23\x71\xf0\x79\xe1\x51\xa5\xbc\xdb\xa1\xad\x3b\x10\x97\x71\x4a\x0b\x4e\x29\xeb\xc7\xd8\xdc\xec\x48\x13\x5c\x06\x4e\x1b\xa7\xe5\xa4\x4b\xb6\xe1\xb8\x5d\x76\x11\xac\x07\xe3\x76\x6f\xb4\xf3\x2b\x6c\xe0\x2f\x01\x8f\x84\x78\x00\xe0\x4b\x78\x36\xdf\xe7\xac\x18\x82\x9d\x9d\x48\xd0\x21\x79\xf8\x1d\xb8\x5c\x30\xd5\x4f\x8d\x7d\xf3\xe0\xc7\x9a\xa4\x4c\x3a\x11\xb1\x61\x8e\x06\x3e\x6a\x60\x1a\x25\x91\x17\x2e\xbd\x3c\xf8\xba\x3f\x43\x80\xc4\x90\x7b\x52\x52\x74\x99\xfd\x5f\xf9\x25\x0f\x78\x38\xfc\xfc\xa4\x1e\xb5\x4b\x23\x2d\x0a\xdb\xe7\x0c\x11\xb6\xb2\xbe\x4a\x30\x21\x81\x4b\xbe\x01\xfb\x75\x95\xa3\xf2\xf0\xf3\x84\xfb\xb1\xd9\x0a\x97\xff\xb5\xec\xb1\x3c\x70\xb5\x51\x8a\x95\x54\xdd\x72\xc0\x1b\xdc\x50\x1a\xdf\x37\x94\x4e\x70\xf9\xc7\x53\xda\x15\xf3\x1d\x1a\xb7\xb0\xd3\xe1\xc0\x9e\x74\x5c\xe0\x9d\x88\x4d\x26\x72\x19\x3b\x5a\x3e\xaf\xb1\x63\xec\x12\x25\xc3\x25\x3a\x85\xdd\x93\x9e\xa5\xc3\x8a\xaf\x6b\x15\xdc\x32\x93\x74\xd2\xbe\x9c\x01\x42\xbb\x5f\x4e\x28\x5f\x7b\x41\x53\xaa\x47\x4d\x0a\x6e\xd0\x00\x51\xaa\xe1\xa7\x4f\xd0\x78\x3b\x72\x38\xd7\x5a\x75\x56\x8b\x39\xe0\x74\x82\xff\x7b\x5e\x75\x43\x9a\xbe\xcd\xa2\xd0\xec\xf1\x98\x2c\x86\x8c\x4f\x74\x41\x38\xc5\x16\x2f\x22\xab\x1b\xc6\x34\x78\xff\x6d\x2c\x50\xc7\x71\xb2\x7f\xce\xe9\x33\x95\x5b\x48\xf8\x4e\xbc\xe5\x5a\x8a\xfa\xfd\x28\x5c\xce\x41\x57\x24\xf2\x42\x0d\xa7\xc8\x08\x56\x0c\xa1\xda\xa9\xb1\xbf\xed\x72\x24\xa5\xdc\x85\x33\x6a\x47\x4b\x65\xbe\x39\x95\x82\xbc\xcc\x8f\x2b\xdf\xf0\xf7\x48\x1c\x38\x12\x56\x14\xc7\xe6\xe4\xc8\x59\xd6\x55\x39\xab\x1d\x0d\x4c\x56\x44\xb9\x49\x66\x68\x06\x26\x46\x17\xb3\x7d\x72\xa4\xa2\x5e\xb4\x0b\xf0\x3f\x68\x42\xc0\x1d\xe3\xaa\x68\x53\xb3\x3b\x4c\x3a\xbb\x28\x19\xb9\xa1\x3b\x2c\x8e\xd3\x08\x00\xaa\xb5\xa7\xa5\x24\xb3\xce\xea\x8e\x42\xac\x89\xad\x8d\xd1\x84\x70\x02\x61\xd6\x05\x4f\x23\x08\x0d\x7a\x51\xbe\xa9\x40\x9f\xf6\xef\x6f\xd2\x3b\x22\xae\xa5\x25\xed\x04\xa8\x1d\x5c\xf6\xf4\xc8\x53\xda\xbe\x42\xcd\x5c\xd3\x0d\x45\x05\xae\x0c\x24\xbc\x5b\xb8\xa3\x6f\xa2\x0b\xf1\xfa\x48\x77\x94\xb7\x4d\x61\x49\xe9\xfd\x90\x17\x87\x9f\x9f\x77\x37\x75\xd2\x43\x2b\xb6\xb0\x19\x87\x54\x75\xfc\xf1\x8a\x9e\x23\x4e\x8f\xa0\xc0\x2e\x9d\x96\x8a\x3c\x10\x9b\x05\x8b\xe4\x3a\x19\x78\xbe\xae\xac\x11\x62\xe9\x2e\x0a\x91\xa1\x46\xe2\x61\xa7\xe2\xe2\xb9\xa7\xd4\xc2\x3e\x50\xd9\xca\x24\x85\x57\xf9\xe2\x41\x07\xc6\xf6\x95\xcf\x5a\xa9\x7c\x93\x2c\x49\xe9\xa8\xae\x92\xe9\xbf\xda\x44\x99\x80\x29\xb9\xaa\xa8\x48\x18\xae\x7a\xfc\x89\x50\xf2\x22\xb1\xe6\x14\xe1\xe7\xe7\x79\x11\xcd\xd0\x6b\xc0\xd6\xb3\xc8\x0c\x4e\xaa\x2a\x6b\xf3\x81\x05\xea\x93\xca\x39\x04\x7e\x69\xeb\x28\x52\xe7\x47\x1d\xbd\xda\x30\xe9\x94\x73\xe3\xfa\xb2\x71\x30\x42\x60\x15\x59\xc2\x19\xad\xe0\xf7\x46\x65\xa4\x0f\x2e\x1e\x2c\x2f\x32\x36\x8b\x98\xd1\x73\xd8\x39\x7c\x53\xa1\x12\x7a\xf9\x65\x7e\x2c\x49\x4e\xca\xf1\xea\xfb\x60\x2e\xb9\x27\xec\xd8\x38\x5a\x81\x74\xa6\xe2\x52\xf8\x3d\x15\x4f\xfc\x9e\x12\xa3\x4a\xa2\x70\xd9\xc6\x70\x4e\x50\x5a\xba\x80\x68\x83\x6f\x9c\xcb\x9c\xa7\xc3\x98\x2d\x08\x32\x07\x60\xed\xe5\xeb\xb1\x4f\xe9\x75\xd2\xa5\xbe\x21\x2f\xd7\xf5\x58\xcd\xcf\x73\x2d\xf8\xae\xda\xe8\xe7\xea\x30\xf1\xa5\x63\xde\xf0\x58\xab\x33\xf4\x59\xbe\xae\xcb\x3d\xd8\x57\x07\xa0\x0f\x70\xd1\xe1\x59\x15\x1d\x9e\x75\xd0\xf8\x04\x84\x3e\xde\x39\xfa\x20\xf0\x64\x30\x1f\xd4\x16\x98\x0b\x02\x58\xd2\x51\x2a\x04\xb2\xfe\xa5\x36\x95\x9c\xc0\xf5\x8a\xbb\xbe\x7f\x7f\xd3\x26\x61\x3a\xcc\xcc\x92\x9b\x06\x11\xd6\x6e\x28\xd5\xd7\x1a\x0b\xb9\x64\xfb\xdb\xed\xb4\x62\xbd\xdc\x0e\x8c\xfa\x6a\x33\xb7\x16\xd9\x01\x58\xdd\x0f\x46\x1e\xb8\x7d\x72\xa4\xa4\xa6\x37\xea\xa8\x17\xb2\x54\x78\x0b\x5d\x43\xf3\x82\x18\xf6\x6f\xab\x6a\x5c\x91\x45\x4b\x4b\x2c\x01\x84\x60\xf0\x1e\x8e\x4d\xbe\x51\xf6\x28\x4e\x43\x50\x50\x0b\xa0\xb9\xb4\x40\x82\x67\xae\x99\xf0\x8e\xe9\x0f\x14\x39\xdb\xa6\xaa\x30\x6c\x8e\xf6\xc8\xda\xb3\x94\xbf\x65\x01\x6e\x2a\x4f\x63\x4d\xb0\x88\x9b\xb0\xe3\xd4\x79\xd2\xe9\xb0\xc8\xa3\x8e\x9d\xf1\x5c\x4c\x30\x6b\xc2\x6a\x53\x5a\x45\xb4\xc1\x80\xac\x87\xf9\xe4\xe8\x8b\xb7\x8e\x29\x43\x1e\x47\xc9\x32\xcd\xa6\x6f\x3a\xde\x41\x10\x7b\xbe\x1e\x3f\xad\x8a\xfd\x83\x61\x3b\x8e\x42\x93\x30\x68\x00\x05\x2a\xf0\x55\x61\xc7\x5c\x53\x4c\xbe\x4c\x3d\x2e\x4f\x24\x6b\xb6\x1d\x75\x3a\x9c\xbc\x41\xf9\x08\x15\x50\xbe\x0e\xa4\x6f\xcb\x84\x61\x3a\x4c\x0a\xd3\x16\xe3\xad\x95\x04\x98\x46\x69\x82\x28\xcb\x7d\xd0\x17\x4c\xe9\x6c\xa3\x48\xe1\x6b\x5f\x6e\x79\x53\xb6\x77\xac\x38\xee\xc7\x70\x88\xe8\x0b\xbf\xf1\xf9\x71\x4d\xdb\x72\x3e\x48\x0b\x17\xe9\x20\x27\x76\x5c\xe3\xc6\x8e\x3b\x97\xb3\x0c\xe6\x1a\x3e\x75\xc5\x3c\xcf\x7c\xa3\xea\x9b\xb6\x33\x0c\x11\x3c\x95\xc7\x05\xcb\x05\x23\x93\x2a\xda\xc1\x3e\xcd\xdf\xb5\x0c\xfd\x03\x86\x80\x53\xa9\x82\xbd\xd7\xf1\x02\x78\xf1\xa5\x81\xd0\x47\xf0\x8f\x21\x65\xe3\xa2\x73\x87\x83\x3e\x5e\xbb\xb4\xbe\x31\x2c\x8d\x67\x46\x41\xb6\x08\xd2\xd3\xb3\x61\xff\x41\x53\x1a\x5f\x76\x02\x59\x43\x66\xb8\xf2\x44\x5e\x66\x29\xb1\xac\x62\xe1\x98\xd0\x7c\x46\x4f\xd5\x9b\x4a\x27\x3d\x5d\x1a\x42\x6b\xcf\xf5\x0b\x7a\x09\x95\x07\x08\x3d\xa4\x33\xfe\x61\xe7\x22\xfd\xed\x27\xfd\x9e\x7e\xa8\x55\x6e\x1d\x97\x1f\xf3\x54\xce\x6b\x41\xe3\x97\x0f\xf9\xcc\x93\x4b\x76\x5e\x21\xa7\x01\x2e\xeb\x6d\x44\x0f\x18\x29\x89\xbf\x30\xaf\xb7\x91\x91\x85\x57\x7e\x92\x5c\x62\x98\x4c\xae\x5c\xa2\x48\xc7\x15\x4f\xc9\x99\x93\xd5\x82\x3f\x75\x83\x8a\x22\x82\x25\x6b\x38\xe2\xc9\x3d\x63\x85\x04\xbf\x8b\x70\x95\x1b\xbb\x02\x0f\x0c\xbe\x5b\x27\x57\xd0\x37\x11\x82\x1a\xa9\x95\x34\x9c\xc0\xcf\x7a\x4d\xde\xf3\x50\xd3\xc4\x29\x73\x9f\x20\xbb\xf4\x17\x81\x67\x4e\xbe\xaa\x0a\x7b\x1b\x0a\x3c\x7d\x24\x2a\x12\xe8\x4c\x4d\x79\x5e\xf4\xe3\x4a\x30\x07\x5c\x60\x48\x9d\x56\xa1\x34\x2f\x1e\x6c\x0a\x76\xac\xa1\xf0\xaf\x6b\x70\xe1\xf8\x46\x61\xfe\x3b\x69\x3f\x4a\x0c\xc8\xe2\x0e\xba\x59\xf1\xc6\x13\x27\xb2\x68\x58\xeb\x04\x5b\x6c\x32\x5a\x06\x4e\x7b\xa7\x9c\x49\x37\xde\x73\x87\x39\xea\x3a\x89\x49\xc1\x6e\xdd\x39\x56\xfd\x9b\x57\x46\x9e\x15\x06\x92\x3e\xf8\x99\x3b\x74\xde\x80\x91\x6c\x27\xc3\x66\x00\x99\x3e\xa3\x8d\xdd\x24\x44\x95\x56\xaa\x63\xb7\x28\xd7\x30\x92\x82\x4c\xde\x21\x72\xdd\xe5\xd0\xe1\xc5\x40\x75\x0d\x9f\xf6\xa2\x56\x42\xd9\x84\xfd\xc7\x5f\xdd\x55\x1a\x7d\x83\x34\xcf\xa3\x76\xbc\x4a\xfd\xee\x08\x1f\xd0\x16\xcd\xd7\x0a\xc3\x6d\x5f\x1d\xa4\x59\x91\xef\x2e\xff\x15\x5b\xe3\x7e\xa0\x9c\x60\xce\xea\xe1\xa1\x8e\x8f\x3c\x40\xfc\x6d\x55\xc9\x03\x58\x02\x99\xe1\x2d\x45\xbf\xb7\x11\x28\xf2\x9e\xdf\x0c\x84\x80\xbe\x1d\x9b\x70\x79\x82\xa3\xd1\x71\xb2\x78\xee\x9c\xe0\x73\xfe\x6d\xb2\x34\xb7\xe1\x90\x00\xd9\x33\xbe\x9e\xf5\x10\xda\x33\x15\xad\xf2\x41\x0f\xf7\x2f\xdf\x00\x33\xfc\xad\x91\x67\xe7\xb9\x5d\x59\xfb\x2f\xcc\x3e\xd7\x0c\x33\xf3\x1a\x73\x54\xe2\x28\x05\xa4\x15\xae\x0e\x70\x79\x28\x4f\x9d\x52\x75\xfe\x4e\x64\x58\xd6\x4b\x68\xff\xe9\x0b\xb0\xf0\xa1\x6e\x8f\x43\x7a\x4d\x39\x71\xdc\x05\x0a\xab\xfa\x74\xcb\xe7\xd0\xdb\x36\xb1\xdd\xa8\x0c\xb3\x28\xba\xc6\x70\x23\x20\xc3\x2b\x31\xc7\x1d\xdf\x50\x90\xc1\x7f\x54\x79\xa5\x67\x9e\x69\x9a\x61\xd1\x4b\x33\x04\x85\x82\xaa\x2c\xbf\x4b\x10\x99\x75\x16\xa0\x9d\x59\x83\xf4\xac\x94\x7a\x55\xeb\x30\xd7\xd7\x70\xf8\x56\x91\xab\x87\x9f\x27\x69\x32\x4d\x02\x7d\x47\xf5\x0c\xdc\x19\x79\x74\xd7\x20\x2d\x20\xa1\x14\xaf\x4e\xf9\xba\xe1\x45\x25\x3b\x88\x36\x44\x91\x0d\x77\xfc\x1b\xb4\x4e\x9d\x40\x15\xe7\x11\x28\xc7\x27\x39\x85\xba\x02\x52\x56\x46\x9f\x9c\x3b\x00\x52\xe0\x78\xa0\x48\x81\x1f\x6e\x29\x6e\xf7\x7d\xe3\x9f\xab\xc9\xe3\xbc\x32\xcc\xa2\x9c\x52\xcf\x69\xc2\x99\x22\xac\x8c\xd3\x6a\x95\x9c\xae\x52\x8a\x3e\x7f\xa8\x49\xc0\xed\x4c\x79\xe7\x57\x94\x77\x7e\xa5\xd2\x17\x70\xf8\xf9\x66\x7a\x04\x25\x0a\x16\xe4\xa0\x5f\x10\x71\x8e\xed\x0f\xe7\xa8\x2d\x56\x6c\x52\x0c\xd1\xbd\xe3\xb0\x6c\x8c\x6a\x11\x4a\xdd\xed\xb6\x97\x5a\xd9\xc2\xd8\x44\x7f\x95\xbb\xfd\x88\x62\x7e\x9f\xf1\xf3\xc3\x6c\x39\xae\x35\xd8\x65\x96\x1e\x6d\xf9\x64\xc2\xfb\xd8\xfa\xcc\xf3\x5a\x7b\xe4\x10\x11\x2e\x8a\xf6\x8e\x94\x7f\x22\xb5\xe4\x1a\x2a\xff\x88\x1e\x0b\x7b\x73\x67\xcb\x77\xbd\x57\xd5\x8a\x88\x75\x36\x1c\x66\x3e\xfe\x03\x1e\x16\xe2\x85\x7c\xad\x40\xfa\x99\x85\x82\x99\xc6\xb1\x9c\xa0\x94\x2f\x5f\xbb\x24\xdd\xb0\x30\x3d\x93\x48\xd6\x1b\xab\x67\x4d\x2f\xa5\xb5\x5a\x2e\xd5\x25\x9b\xf5\x9d\x1f\x0c\x43\x78\x96\x0b\x70\xa8\x94\xb0\x48\x07\xb3\x8b\x04\x8a\x65\xf2\x5d\x25\x13\x15\x25\xdd\x78\x68\x93\xd0\x76\x1a\xe5\xd6\x97\x3c\x1f\xa5\x74\xf9\x26\xd8\x9e\xaf\x97\xf5\x31\xc8\xd2\x50\x96\x21\x1f\xe2\xba\xca\xb0\xa1\xda\x8b\x8b\x2c\xb2\x9d\x5d\x0d\xd7\x68\xbd\x1e\x4c\xe2\xdb\x9c\x21\x65\xdd\x4d\x39\xb1\x7d\x9f\xc0\x27\xe4\x32\xf1\xb5\xc6\xc5\xa7\xe1\x32\xc5\xfc\xcf\x6d\x11\xdb\xc1\xd6\x39\xc5\xe7\x11\x47\x36\x99\x52\x4a\xa1\xe7\x15\x75\xf2\x5d\xcd\x37\xee\xac\x41\x37\x33\x7d\x53\xa4\x5c\x18\x67\x60\x0d\xde\x4a\x50\x36\xb5\xdd\x9b\x51\x52\x6e\x96\x34\x8b\xa4\xe1\x8b\x1d\x57\xfa\x11\x71\x62\x3f\x8b\x43\xa6\x1d\xe5\xbd\x74\x80\xcf\xe1\x40\x38\x87\x9f\xe4\x1b\x07\x4d\x33\x99\xe9\x47\x9d\x29\x9f\x72\x00\x2c\x02\x68\x8f\x9b\xaa\xe8\x7d\x56\x1f\x28\x43\xfb\x30\x19\x59\x40\x8f\xef\x8f\x54\xe8\xc4\xd6\x1f\x01\xdc\xbf\xd2\xb2\x2e\x1f\x8d\x3c\xd1\xd4\x6f\x93\xeb\x85\xff\x8f\xc4\x24\x8e\xe4\xbd\xd0\xbd\x47\x18\xba\xe5\x21\x46\xbf\xfd\x65\xe0\xce\xb8\x5b\x7e\xbc\x27\x6a\x0e\x32\xdb\xfd\x2f\x9b\x73\x5f\x54\x2d\x98\x9b\xa3\xa9\x43\xff\xf0\xeb\x9c\xfb\xba\x30\x6a\xfc\xca\x2f\xf1\x76\x17\xa1\x1b\x38\x26\xf7\x47\x5e\x13\xe6\x83\xd1\xce\xaf\xb8\x3e\x2d\x9f\xb4\xba\x07\xf0\xb2\x02\x9a\xcc\xb9\xbd\x43\xef\x87\x84\xf0\xb3\xe4\xa6\xb3\x6c\x1a\x0e\x21\x21\x16\xf1\x3c\x2d\xbb\x81\xf2\xc6\xc8\xef\x20\x58\x90\x23\xdd\xf7\xdb\xfe\x77\x60\x85\x90\xa0\x7e\x7f\xe4\xca\x5e\x6f\x3e\x49\x8a\x0e\x8e\xc9\xb3\x1c\x4f\xd1\xaf\xf2\xc9\xf6\xb3\x24\xf1\xc3\xd2\x36\x8a\x07\xf3\xea\x48\x51\x4d\xfd\x57\xcd\xd6\x13\xba\xc1\xa2\xeb\x34\x7d\xe1\x48\xdf\xa1\x87\xe6\xeb\xe0\x51\xe7\xcd\xe6\x06\xfd\x27\x52\x92\x53\x79\xf8\xda\x0e\x08\xe2\xe8\xc3\x26\x71\x53\xe1\x52\xcf\x77\x03\x25\x61\x55\x31\x8a\xfb\xf7\x37\x13\x7b\x24\x1f\x64\x11\xd3\xbd\x60\x38\xd1\x4f\xca\xd7\x2e\x26\x7b\xc5\x66\x69\x1f\x09\x07\x64\x4b\x79\x8d\xb3\x28\x5f\xa0\xc5\x7d\x6b\xd2\xa8\x3d\x33\x18\xd8\x84\x4e\x76\x7c\xfc\x8e\xca\x2a\x5f\x56\xf2\xe8\x3a\xce\xcd\x6d\x98\xd9\x22\x86\x76\x9e\x0b\xf6\x5f\x98\x65\x73\xc0\x94\xd5\xf0\x77\xee\x3b\x55\xae\x01\x67\x88\x1d\x31\xcc\x82\xd3\xe3\xbc\xec\xf2\x76\x6d\xdb\x4e\x91\x61\x71\xbd\xd7\x8a\xe6\x5d\xf7\xc6\xd8\x84\x3a\x75\xf9\x88\x17\x01\x4c\x5a\xa4\x92\xf6\xae\xb0\x67\x52\xca\xce\x14\x53\x3e\xe7\xfb\xa9\x92\x6c\xff\x71\xe0\xeb\xc4\x67\xd4\xa1\x93\x94\x81\x8c\xb5\x90\x28\x57\xd8\xd0\x83\x0e\x3d\xe3\xca\x4e\x36\x5b\x61\x06\x5a\x04\x6f\xf7\xb1\x6b\xb0\x9f\x1e\x6f\x29\x94\xec\xce\xb1\xee\x3a\x58\x4a\x8b\x3d\x54\xf2\xe4\xf6\x39\xd5\x31\xfe\x26\xad\x64\x54\xc5\x2f\xa3\xce\x84\x08\xf3\x24\x07\xb5\x58\x5e\x60\x91\x41\x3a\xe8\x16\x2c\x0e\xc0\xba\x4c\x5e\x09\x14\xf0\x3d\x5a\x0f\x38\xaf\x36\x15\xf2\x37\x4e\x0d\x36\x81\xaa\x25\x1e\x74\x5c\x8f\x75\xd4\x42\x99\xcd\xcb\x58\xd0\xb4\x59\xaa\x99\xb3\xa4\x13\x19\xd3\x3a\xda\x01\xd3\xb1\x49\x1a\x0a\x59\x81\xee\x94\x96\x0e\x6a\x27\x71\x40\x4d\x05\x29\xfd\x9d\x6b\x12\xf7\xc1\xcd\xf9\x3a\x18\x47\x3f\x8a\x05\x42\x2b\x52\x52\x8d\x05\x2f\x31\x25\xf3\x54\x64\x36\xe9\xac\x62\x77\xc2\x46\x5c\x50\x2a\x06\xa8\x4a\x23\x1a\x39\x5d\x9b\x6c\x1d\xa4\x71\x14\x32\x0b\x34\x2c\x22\x38\xa2\xf8\xda\x95\x21\xbb\xa6\xe8\xd9\x6c\x57\xf9\x38\x1a\x4f\x84\xc7\x99\x69\x95\xe6\x4a\x0a\x00\x64\xc1\x59\xd3\x84\x9e\x05\x66\xf7\xec\xe4\x21\xa9\xa3\xe4\x8e\x89\x1f\x52\x2c\xef\x90\x0d\x74\x04\x98\x9e\x9c\x84\x79\xb1\xf9\x86\xf6\x29\xce\x99\x0b\x23\xdf\x44\x82\x04\x1f\xfc\x80\xb5\x8a\x73\x5c\x46\x5d\xdd\xcc\xe4\x82\xdf\x56\x48\x6c\x07\xcb\x56\x31\xea\xc0\x90\x60\x03\x65\x9a\x70\xc2\x6c\xe9\x5e\xcd\x2d\x18\x70\x16\x1b\xa1\x1f\x16\xe1\x11\xc9\xb8\x99\xa4\x83\xde\x76\x47\x8c\xe3\xf9\xae\x2f\xa9\x3c\x93\x09\x21\xed\xfc\x90\x0f\x74\x8f\x2b\x92\xb4\xff\x03\xeb\x98\xff\x41\x57\x42\xd7\x95\x26\xf7\xaf\x05\xbe\x12\xca\x7e\xb8\x14\xbb\xea\xfc\xe0\xa8\xef\x90\x42\xf0\x16\x2e\x29\x42\xd7\x4b\x2a\x74\x22\xe1\xf5\xfe\x20\x16\xf5\x77\x16\xfe\x0f\x7c\x69\xea\x4c\x45\x68\x63\x7e\xbe\x39\xb0\x45\x96\x4a\x1b\x18\x0d\x02\x02\xa6\x0d\x05\xb8\xde\x50\xda\xb2\xfd\x74\x45\xe0\x41\xf0\x88\x40\xa2\xc4\xd7\x95\x57\xf8\x2a\x11\x7b\x47\x78\x85\x97\xf8\xa4\x03\x40\x95\xaf\x2b\x99\x9f\xc5\xd9\xe6\x91\x2c\x02\x0a\x89\x4e\x6b\x64\xf4\xde\xa4\xa9\xe3\xeb\xda\x68\xae\xb0\x71\xcc\xf8\x1a\xae\x90\x62\xc9\x48\xb9\xd4\x2f\x99\xc2\xbc\x5a\x9a\x92\x19\x9a\x22\x39\x71\xc8\x5c\x22\x09\x79\x54\x51\xee\x1f\x25\x8b\x88\xac\xe5\x45\xca\x07\x49\x83\x94\x2f\x14\xc5\xd1\x0a\x25\x8a\x17\x45\x94\xfb\xa4\xa2\x99\x63\x04\xad\x70\xca\xc0\x8c\xf2\x9d\xe2\xbe\x69\x47\xc5\x8c\x6f\xb5\x04\x26\x8e\x65\xa2\x47\x8a\x84\x68\x0d\x6e\xbd\x54\x0d\x7c\x9a\xe5\x3f\x56\x6c\xc7\xd7\xe7\x9a\x65\x30\x5d\x70\xa1\xc6\xd1\xf0\xb8\x6c\x13\x24\x2c\x84\x75\x58\x76\x43\x9a\xbe\xc6\xc6\x86\xd5\xdb\x54\xe2\xe5\xbc\x3b\x3a\x29\x3c\xdc\xdd\x70\x3a\xda\x7b\x5a\xf4\x5c\xf2\x11\xd5\x9b\x74\x5e\x91\xdf\x30\xd6\x10\x39\xcf\xcb\xa3\x8a\x9a\x92\x70\xe7\x78\xd1\xba\x4b\x75\x0d\xf2\x71\x7a\x04\x2a\xfa\x42\x3d\x4e\xdf\x2a\x12\x96\xe5\xc8\x09\xd0\xbb\xe1\x54\x82\x6f\x28\x5a\x84\xeb\xc1\xd3\x82\x8c\x4c\xe3\xd8\x66\xa4\x09\xcd\x35\x1c\x66\x35\x9a\x60\x38\x72\xae\x7b\xb2\x64\xe3\x94\x8e\x2e\xd5\xea\xe8\xfa\x1e\xdd\xb7\xf6\xa3\x24\x4a\xc2\xb4\x3f\x18\x16\x52\xce\xc5\x8b\xdd\x57\x4c\xa7\xf7\x47\x5f\x70\x31\x4e\x94\xb1\x1c\x4a\x54\x44\x96\x79\x05\x24\x11\xa0\x13\x04\x35\x45\xa2\x95\xc8\x1e\x99\xf2\x68\xbd\x7b\xf4\x9a\x13\x68\x3c\x69\x41\xdd\x7e\xb0\x52\xcc\x43\xd9\xb6\xa1\x7b\x7b\x29\x1d\xf9\xf4\xcc\xed\x89\x86\xc5\x61\x5e\x3c\x55\x8e\x2f\xd6\xdf\xe3\x63\xa5\xe6\xbd\x41\xa7\x3d\xdc\x80\xa9\x96\xd6\xba\x98\x86\x8b\x86\xf9\xd9\x4d\xc0\xef\x09\x30\x02\xf3\xac\x63\x07\xc2\x38\xbf\xa9\xc1\xe5\x0f\x90\xdd\x66\x06\x5e\xa5\xfa\xf1\xbf\xd3\x7e\x44\xba\xf3\xec\x36\x4c\xca\xa2\xd0\xf4\x36\xa8\x10\x85\xe8\x81\x8b\x36\x8c\xf2\x01\xee\x0b\x19\x68\xac\x72\x44\xcb\xf7\x75\x73\xfa\xbf\xf1\x81\xdb\x60\x10\x5b\x96\xe6\xc0\x72\xde\x52\x02\xec\xac\x6c\x8e\x6f\xbb\xa2\x91\xe3\x69\xd1\xcb\x89\x21\x87\xba\x04\xe1\x73\xf1\xc2\x41\xb7\xce\x3b\xaa\x6a\x07\xb9\x66\xa1\x59\xf4\x6c\xb4\x52\x33\xb5\x33\x1e\xb6\x78\x8d\xf6\x8c\xd3\x3e\x5f\x9c\x9d\x48\x95\xca\xb1\x4b\xcb\x0f\xce\xd5\x69\xa5\x47\x5b\x0c\xb3\x04\x1a\xc0\x6c\x20\xdf\x55\x88\xf3\xd3\x81\xef\xc8\x9f\xa6\x09\x73\x30\x6e\xa7\xf3\x09\xde\x0f\xfe\x7b\x25\x73\xb3\x94\xa5\x47\x8a\xde\x1e\x45\xc0\xfc\x2e\x66\x16\x39\xa1\xdb\x23\x45\x95\x47\x35\xec\x2d\x6a\xf6\x7c\x69\x0b\x0b\xc8\xf1\x86\xba\xc0\xfe\x3b\x23\xc5\x35\xf3\x1d\xbc\x0f\x16\xfb\xef\x8e\x9e\xda\xb6\xa6\x7f\xf1\xc5\xe6\x33\x8d\xc6\x33\xcf\x48\x4f\x3d\xa6\x58\x1a\xec\xa5\xba\x37\xb0\x59\xd8\x8b\xd3\xcc\x14\x76\x9a\x96\x16\x56\xed\x71\xe5\x0a\x7d\x3a\x52\x08\xe5\xd3\x4a\x75\xe3\x6e\x4d\xf3\xd2\xc1\xe6\x52\xda\xe1\x9c\x81\xc3\xe1\x97\xf3\x2b\x38\xfc\xed\xa6\x79\xff\xfe\xd2\xc3\x49\x42\xc1\x50\x4b\xc1\x0e\xbb\x46\x6a\x79\x7e\x4c\x7b\xe9\x30\xb7\xf9\x6e\x1a\x46\x14\x17\xc6\xf4\xac\x42\x28\xe4\x23\xdc\x4f\xb1\x0d\x50\x48\xda\x52\xa3\x78\x85\xe0\x7e\x22\xd2\x45\x83\xe8\xa8\x18\x16\x67\xdd\xcd\xe8\x73\x1a\x40\x14\x46\x71\x64\x8a\x34\x5b\x45\x53\x36\x2a\x68\x57\x74\x39\xed\x8a\x8a\xd4\x96\xe2\xc8\x76\xfa\x26\x51\xfd\x08\x97\x94\x40\xe0\xa5\xfa\x44\xa3\x19\x76\xa8\x9b\xd5\xf5\x8c\x77\xe0\xa5\x49\xec\x59\xd3\x5e\x19\x95\xd1\x58\xa1\x42\xb1\xfb\x8a\x27\xe4\x7e\x1d\xb0\x26\x8b\xf2\xe5\xd5\x86\x62\xd9\x87\xdb\x2b\x34\x13\x4f\x28\xfd\x8c\x41\x96\x9a\xb0\xb7\x4b\xe9\x81\x32\x83\xac\xf4\x0e\xfa\xaa\xfd\x31\x9d\x5f\xa1\x47\xc0\x59\x7c\x5d\x21\x19\x6e\x6e\x97\xd5\x2a\xe3\x92\x85\x85\x43\x4f\xa8\x98\xee\x3a\xd2\x12\x4e\xb1\xce\x23\xc5\xfe\x22\x50\x95\xc8\xbf\x40\x41\x08\x26\xee\xdb\x0a\xf2\xfa\x00\xb5\x29\x17\x84\x38\x47\xfb\x06\x5c\x52\x21\x13\x2b\x37\xb5\x3b\x25\x17\x05\xa2\xf0\x7d\xcc\x27\xcc\xeb\x29\xc5\xc2\xf5\x46\xe0\xf3\xd9\x2c\x53\xe9\x3c\x7e\xcf\xa2\x89\x22\x99\xa4\x54\xb6\xaf\xf4\xc3\xcf\x37\x8f\x58\x0a\x4c\xb4\x8a\x04\xb1\x93\x88\xa2\x84\x0e\x33\x86\x26\x99\x56\x5e\xf4\x69\x0c\x0c\x22\x1d\x44\x4d\x7c\xad\xfa\xdf\x4e\x57\x90\xd3\x2f\x1e\x6c\xe6\xb6\x00\x40\x1f\xeb\xfa\x41\xa0\x2a\x40\xcc\xc5\x0f\xe7\xe1\x13\x17\x02\x42\x8f\x05\xd9\x0d\xac\xd8\x3b\xc1\x84\x70\x8d\xeb\x3a\x3c\x53\xb7\xa1\xf3\x7e\xba\x2c\xae\xb1\x44\x9a\xf4\xf4\x12\x6a\x3a\x80\xbd\x4d\x0a\xb4\xfa\xb0\x57\x49\x33\x29\x1e\x66\x0d\x81\x26\xb5\x0b\x44\x08\x87\x54\xd3\xa0\xe3\x4c\x3a\xa7\x64\x4d\x73\x6b\xfb\x54\xae\x93\xa3\xb3\x1c\x75\xa4\x06\x01\x18\xc2\xef\xfc\x34\xf0\x38\x8f\xdb\x58\x56\xf2\x47\xb4\x18\xf8\x26\x50\x64\xfb\xeb\xc1\x04\x39\xb4\x07\x35\xc5\x71\xba\xda\xc1\xb3\xd5\x33\x33\x8b\x53\xf4\x57\x46\xcb\xfb\xf4\x2b\x74\xf2\x29\x5f\x68\xe7\x64\xa0\x6b\x5a\x28\x1f\x09\x5b\x7d\x73\x42\x9d\xc6\xc4\x36\xcb\x1f\xa6\xc7\x07\x7e\xf5\x9e\xca\x0f\x70\xb5\x1d\x07\xfc\x0f\xf0\xc6\x8e\x28\xc1\x13\xee\x7d\xaa\xe2\xa5\x37\x68\xbf\xa8\x76\xb3\x97\xb8\x48\x74\x77\xa4\x14\x3a\x41\x90\x22\x94\xdf\xdb\x1d\xb4\x72\xf9\x53\xb5\xfd\x05\xc7\x11\x1e\xf8\x4e\x8f\x73\x15\xe3\xf6\x22\x89\xbe\x98\x8c\xcf\x85\x89\xa2\x14\xdf\xd4\xd1\xd6\x90\xae\x3b\x64\x2c\x7c\xdf\x0a\x27\xf2\xf9\xc6\xb5\x22\xa4\x2b\x36\x3b\xd2\xb3\x71\x7f\x7a\xa2\x15\xc1\xab\xa2\xff\x19\x26\x5a\xda\x12\xca\xd7\xe3\x7f\x50\xd0\xe1\x81\x09\xa3\x6e\x14\x12\x38\x06\x6d\x87\x1b\x5a\x11\x7a\x1f\x3b\x80\x0e\xfd\xeb\x56\xde\x8e\xf1\x3e\xe5\x2a\x98\xd0\x4e\x4f\x00\x74\x69\xc7\x30\x83\x8a\x82\xa1\xbd\xa1\x84\x82\x2f\xd5\x44\x99\xf9\xb0\xfd\x8a\x0d\x0b\x12\xd7\x13\x2d\x97\x86\x97\x6f\xc4\xe4\x4f\xb4\xc8\x3a\x45\x16\xd7\x6d\xf0\x64\x8b\x31\xb4\x9e\x8a\xb2\x13\xe5\xcc\x89\xc3\x81\xa5\x80\x95\x14\xa9\xee\x49\x95\xa6\xff\x3b\x6d\xdd\xd2\xbe\xbb\xe5\x91\x59\x3b\xc6\x13\x7a\x61\x35\x8a\x50\xe1\x90\xba\x21\xa2\x15\x58\x20\xa1\xc8\xa0\x8f\xb9\xc6\xce\xf9\x79\x0e\x81\x37\xeb\x10\x13\x4c\x5a\xc8\x80\x5f\x97\xec\x51\xd0\x4f\xe7\xcc\x2e\x47\x9d\xc4\xae\x92\x4c\x98\x83\x13\x3a\x44\xc8\x7d\xd5\x2f\x72\x41\x4b\xb5\xbf\xb3\xad\x79\x24\xcd\x39\x69\x20\xa8\x34\x85\x50\x53\x2d\xd0\xf6\x55\x9b\x85\x11\x43\x11\xe1\xf3\x42\xd5\x8e\xaf\x15\x46\xae\x88\xfa\xf6\x71\x9a\x2d\x46\x0f\x60\x00\xa4\x13\xcb\x2f\xc6\x6b\xaa\x6f\xf7\x8f\xe8\x08\x62\x09\x64\x00\x88\xa5\xb6\xa9\x68\xb4\xfe\x14\xeb\x1a\xe1\xfb\x8e\xb1\x22\x2b\x79\x83\x56\x3f\x57\x53\xd4\xc9\x32\x33\x56\x84\xcb\x97\xb4\x26\xc0\x9f\x60\xa1\xa2\x9c\x72\x49\xa5\x0b\xa6\x48\x13\x0f\x7b\x67\xda\x11\xfa\xe4\x85\xa3\x52\xd8\xa2\x9c\xff\xd6\x1d\x65\xb3\x3b\x99\x3d\xf2\x90\x2f\x04\x40\xda\x0b\x27\xd0\x4d\xad\x21\xa3\x79\xc0\xd0\x93\x82\x23\xec\xbb\x13\x69\x6b\x3a\xd9\x31\x2e\x57\x83\xcf\x29\x49\xed\xa2\xdc\xb0\x91\x23\x72\x74\x7d\xc7\x0e\xf7\xb9\xa5\x89\xc2\x4c\x3f\x1d\xe6\xbb\xe8\x8b\x99\xdd\x88\x8e\x12\xec\x21\xc9\x06\x8b\x94\x8f\xcf\xaa\x7d\x7b\xa4\xb0\x00\xa7\x47\xaa\xbd\xe1\xa4\xab\xcf\x45\x49\x3e\x8c\x21\xc3\xe4\xf0\x5c\xf7\x31\xa0\x38\x0d\x1e\x1a\xfb\x20\xe7\xc9\xd6\x53\xee\x00\xc9\x4b\xc7\x2f\x1b\x64\xb6\xa0\x1a\x82\xc8\xd4\x2a\x72\xc6\xef\x2b\xc4\xda\x27\x0a\xa0\xd8\xb6\x49\xe9\x85\x68\x34\xd9\xd9\x91\x22\x1f\x3d\xab\x9a\x1b\x3b\x59\xb4\x62\x19\x1f\xe1\x48\xf5\x1d\xa2\x75\x2d\x10\xf0\x7b\x9c\x1e\x21\x28\x31\xba\xae\x98\xe2\x9b\x86\x02\xd9\xcf\x0f\x35\x97\xda\xfa\x76\x37\x70\x71\x96\xd4\x55\xa7\xfc\xd2\x41\x31\x44\x9d\x79\xfe\x0c\x75\x05\x8b\x28\x2b\x7a\xf4\x11\x04\x53\x57\x47\x5e\xa6\x05\x0f\x89\x99\xdc\xd1\xf2\x36\xa9\xe8\xe5\xbb\x1d\x84\xf1\x7f\xf8\x1b\x63\xda\x1e\xe2\xd3\xd0\xfc\x68\x89\x66\xec\xc8\x87\xd1\x42\x41\xe1\xc5\xf5\xff\x1c\x30\x08\x7c\x73\x83\x4a\x60\xf8\xf8\xfb\x6a\x3b\xde\xf0\x8d\x81\x85\xe9\x0f\x6c\x47\x5b\x31\xe4\x2c\x75\x90\x85\xdc\xef\x3b\x2a\x4c\x4e\xa2\xd0\x64\x66\x69\xc8\xe1\x03\x8b\xf2\x28\xa0\xe6\x35\x05\x67\xcc\x12\x88\x02\x8b\x8e\x60\xc3\xf1\x52\x81\x38\x0c\xb1\xc3\xa6\x0a\x77\xed\xab\x51\x6c\xb5\x0d\x87\x9b\x2c\x7b\xe6\x49\x55\xa5\x63\xd2\xcf\xc7\x7d\xa2\x6c\x83\x36\xb8\x26\xab\x44\x9d\xb1\x81\xda\x29\x6c\xcd\x87\xf0\x9c\x50\xd9\x3c\xa6\x39\x05\xd1\x3a\x03\xdf\xf3\x63\x8d\x20\xdf\x49\x49\x79\xc4\x12\xe7\x34\x22\x99\x09\x2c\x01\x05\x3a\x4f\x3b\x5a\x7a\x43\x7d\xd5\xe8\x13\x82\x22\xf0\x07\x02\x05\xe7\xe1\x32\x16\x6c\xc0\xce\xd6\x53\x8a\x92\x33\x05\xc7\x16\x58\x92\x5d\xb7\xbe\xa3\x26\x45\xf3\x9f\xfc\x7f\x7a\x20\xf9\x87\x1a\x85\xca\xb4\xdb\xb5\x09\x70\xf7\x2e\x25\xf3\x5e\xe0\xfd\xd2\xf7\xdc\xba\xcd\x7b\x66\xd9\xce\x28\x79\x02\x56\x80\x76\x34\x26\x4e\x54\xe9\xf6\x64\x03\x7b\x79\x3e\xf1\x27\x26\xf2\x50\x36\xb1\x0f\xd1\xb6\x73\x02\x6c\xee\xf0\xe2\x26\x60\xac\x3c\xa6\x86\x44\xfc\xc4\x34\x12\xa2\x77\xe4\xb1\xbc\xac\x04\x22\x02\xce\x8e\x1d\x2d\xd5\x64\xb1\xa8\x07\x6c\xe8\x36\x3f\xcf\x37\x33\x48\x87\xe4\x7c\xb9\xbd\x71\x59\x29\xb5\xea\x48\xbe\xf4\x27\xc2\xa2\xe1\x0b\xa5\x37\x94\xee\xef\x8d\xd1\x84\x32\x19\x13\x10\xa3\xd9\x08\x50\xd6\x29\x6c\x4c\xbe\x19\x2b\x04\xdd\xba\x6e\xf8\x0a\x54\xf4\xfa\xdf\x29\xb5\x74\x9b\x17\x51\xdf\x14\x96\x13\x3f\x1a\xff\xc9\xc4\xd0\x93\x98\x0e\x55\x9e\x40\x52\x49\xa0\x35\xd4\xca\xb3\x31\x69\x34\x49\xed\xcd\xc3\x17\xd7\x55\x59\x71\xbd\x86\x54\x36\x1d\xd8\x04\x55\x4e\x49\x0f\xd0\x7b\x4a\xde\xe0\x71\xd7\xb2\x11\x52\xa2\xa6\x83\x70\x0e\xd9\x8f\x9b\xda\x67\x07\x7e\x42\xf6\x8a\x27\x2e\xe6\xe9\x8b\x92\x25\xb8\x98\x48\xec\x80\x96\x4a\x48\x63\xcb\xe5\x0e\xbf\x01\xb0\x3e\xf6\x21\x26\x1a\xd8\xf3\x9c\x64\xe9\xa6\x14\xcd\xfc\x7d\x05\xdb\xc3\x09\x8a\x7a\xf6\xef\x6e\xa7\x37\x9d\x3b\xdc\x7c\x61\x76\xee\xe9\xf2\x67\xe0\x81\xdd\xc1\x1a\x94\x2e\x07\xca\x3e\xc1\xd9\xb8\x42\x65\x7a\x91\xa9\xa1\x00\xc5\xa9\xa5\x97\xa3\x8a\x6d\x00\x71\x4e\x81\xf8\x94\xdb\x03\xd5\xf3\x6f\xe9\xbe\xf0\x0d\xa5\x95\xf9\x9f\xb4\xbc\x14\xb3\x2d\xb0\xbc\x09\x08\xd5\xe1\xe6\xb1\xea\xae\x68\x18\xd0\x21\x01\x67\x15\x3d\x8f\x30\x58\xbf\x8f\x15\x01\x5b\x74\x6a\xe4\x11\x5d\x92\xba\x52\x69\xfe\xe7\xd8\xb8\xfe\xc1\x68\xbb\xd4\xfd\x0b\xb3\x2f\x31\x08\x31\x2a\x4c\x16\x71\xa5\x5e\x72\x60\xe5\x58\x49\x06\xcc\x97\x6c\x18\x66\xf3\x65\x7a\x7e\xb6\xb1\x81\x97\xc6\x78\x13\xdd\xb4\xb0\xb1\x6f\xd3\x48\x2a\x0e\xf8\xe7\x5c\xaa\xab\x7c\x62\x66\x46\x51\x42\xb2\x54\x9b\xdc\x3a\x87\x41\x67\xed\xb1\xa0\xf1\xf5\x39\x4f\x1f\xf4\xa2\x53\xc3\xfd\x30\x50\x6a\x68\x13\xfc\xb2\x7f\xa4\x85\x8b\x3f\xa2\xb9\x01\x1b\xd0\xbf\x86\x4b\xea\x04\x3d\x7e\xe5\x97\x1c\x69\x52\xe9\xb7\x62\x61\x9c\x09\x76\x7e\x85\xb3\x28\xff\x93\x5a\xa2\xa7\x08\x7d\xee\xb2\xb2\xfb\xf7\xb3\x73\xf3\xe7\x81\x27\xf1\x3b\x1a\x10\x08\x67\xc2\xb2\x3a\x10\x98\xcf\xda\x9c\x0d\x00\xc9\x51\x04\xc7\xbe\x79\xd9\x27\xaf\xbe\x8f\xa3\x04\xc5\xab\x0f\x47\x8d\xc3\xcf\xf3\x69\xfd\x5d\xa4\xe1\xf1\x9b\xc7\x18\xe6\x22\x0d\xb7\xb4\x44\x45\x7d\x5e\x43\xe8\x08\x98\xc9\x64\x40\x58\xe8\xb7\xb0\x05\x5c\x8d\x7a\xee\x30\x8f\xf9\x0c\x8c\x1b\xe6\x84\x7b\x95\x91\xae\xfa\x40\x79\x1a\xb7\x70\x36\x6a\x88\x37\x5c\x9b\x1f\x96\x5b\x63\x0b\x07\x10\x0e\xc2\xbb\xc1\x5e\x6f\x4f\x87\x6d\x43\xd6\x86\x99\x9f\x26\x58\xa0\xb6\x1f\x6e\x02\xea\x5a\x4a\x57\x0d\xb9\x23\x70\x2e\x58\x86\x84\x6f\x14\x34\x6e\x98\x2d\xd9\x0e\xd1\x82\x62\x71\xdd\x0b\x14\x19\xd7\x09\x85\x82\xdc\xd9\xf2\xc2\x91\xef\x06\x4a\xbc\x87\x0b\x02\xf0\x31\xa6\xa9\xb5\x5b\x92\xe7\x3e\xe8\xee\x99\x24\xa4\x1e\x22\x47\xa5\xce\x98\x61\xbe\x51\x75\xda\xd8\x64\xb9\x4d\x08\x0f\x28\xe2\xd3\x9e\x70\xfb\x4c\x1d\xa1\x4c\xf3\x95\x74\x98\x25\x26\x26\x66\xc5\xcf\x68\x0e\xa8\xa1\x28\xe8\x9a\x62\xca\x27\x01\xde\xd1\xa9\x11\x98\x54\x2c\xfb\x3b\x9e\x5f\xe2\x48\x14\xda\x47\x54\x53\x1d\x47\xa8\x38\xc9\xef\xe3\x0b\x84\x58\x5e\x11\x21\x5d\xf2\x89\xd7\xf0\x6f\xa3\xda\x28\x8c\x0b\x34\xd8\xae\x8e\xe3\x62\x9b\xb5\xc0\x27\x70\xee\x91\xb1\x62\x15\xe2\x91\x07\xb2\x3e\xa6\x78\x4c\x97\xa3\x02\x1e\x22\x0e\x19\xe8\x53\xf0\x75\x25\xc7\xf8\xcc\x33\x4d\x13\xc7\x34\xc0\x92\xce\xa2\x67\x92\x7c\x96\x02\x30\x7d\x63\x58\xc6\x2d\x9c\x22\x13\x9d\x3f\x2d\x00\xe8\xcb\x3c\x5e\x3c\x80\x06\x48\x00\x7e\x1e\xa2\xb4\x19\x6c\xb7\xa6\x54\x7e\x18\xb6\x6d\x96\x98\x22\xcd\x22\x0e\xc8\x99\xa4\x97\x36\x83\x10\xf6\x6e\xef\x90\x2b\x3f\xd9\xa6\xb9\xc6\xce\xba\xab\x19\x88\xef\x2a\x71\xc0\xdc\xc6\x31\x13\xc0\xa3\x31\x88\x8b\x38\x70\xd9\x8e\x62\xfc\x71\xdc\xdc\x53\xf2\x8b\x2b\x69\x6c\x8a\x28\x8e\x8a\xd5\xdd\x34\xac\x4c\x98\x08\x8b\xcc\x0d\x21\xb4\xbc\x90\x33\x7a\x64\xec\x60\xb8\x7f\x93\xd1\x4b\x2c\xe0\x89\x2a\x8e\xf0\x2d\xfa\x58\x02\x5d\xe5\x22\x0c\x3e\xe1\xc3\x0f\xa2\x98\x00\x04\x5e\xd4\xf5\x7c\xe0\x45\x5d\xcf\xd7\xb5\x92\x17\x26\x2f\xac\x60\x78\x91\x64\xe7\xda\x3d\xdf\x28\x6b\x92\x98\xa5\x5c\xe9\x19\xdd\x57\x85\x96\xfb\x95\xf3\x6e\xff\xfe\x66\x68\x06\x51\x61\xe2\xe8\x35\x26\x9a\x71\x4c\x7b\xe7\x55\x1a\xff\x7c\x19\x23\x4e\xe6\xe8\xa2\x64\x89\x73\xa6\x82\x1f\xf0\x46\xe6\x92\xca\xc1\x92\xea\xf9\x2e\x6f\xf9\x58\x75\x5b\x8e\x37\x55\x7f\x03\xc9\x93\xb0\x0c\x94\x43\xc2\xa1\x64\xe0\x99\x77\xae\x56\x36\xfa\xfe\xb9\x66\xb7\x78\x96\x56\xf0\x16\xa5\x9e\xb7\xce\xa9\xf1\xb6\xf9\x20\x36\x89\xe9\x30\x33\x23\x4e\xbd\x8f\x02\x25\xb2\xf1\x91\x06\xf9\x67\x36\x26\x86\xd5\x8c\x51\x21\x5c\xd9\x0b\xd4\xce\xff\x8e\x47\x4f\xd9\x57\x4d\x08\x8e\x3a\x24\x81\x18\x9e\x23\x0a\xc0\x98\x2e\xf8\x53\x9e\x6e\x6d\x60\x3b\x26\x96\x5d\x04\xdf\xec\xd7\xf1\x3c\x7c\xe3\xfe\x32\x8f\x5e\x73\xb0\x32\x17\xae\x29\xd8\xb0\xb7\xbe\x79\xdf\xc6\x02\x95\x66\x77\x4f\x09\x88\xfd\x6e\x05\x59\x29\x87\x48\x3f\xcd\x40\x10\xeb\xe8\x46\x4a\x37\x03\x0b\x71\x06\x1a\x47\x4e\x7e\x5a\xbb\x16\x9a\xe8\x3d\x2f\xb2\x61\xdf\x26\x88\xde\xe0\x89\x62\x27\x7e\xa4\x18\x92\xaf\x29\x21\xbb\x73\x2e\xdb\xf2\x8a\x89\x62\xaa\x1f\xd2\x83\x33\xc1\x3f\xfd\xa5\x90\xfd\x57\x09\x2a\xe6\x9a\x99\x5d\x8e\x92\x4e\x8c\x90\xc6\x89\x40\x7a\x41\xc8\x3a\x78\x67\x01\x25\x79\x7a\x3a\x58\xe0\x33\x2a\x27\x71\xa6\x62\xb9\xf6\x97\x3f\x43\xac\x1f\xf4\x62\x1c\x47\xa2\x1a\x8d\xb0\x88\xaf\xd5\xe2\xb1\xaf\x0e\x6c\x16\x11\xd8\x1d\x71\x11\x53\x69\xd2\xea\x85\x09\xba\x34\x9a\x10\x84\x2a\xbf\x13\xe3\xf3\x80\xcc\x05\xff\x91\x6a\x88\x2a\x7a\x59\x7a\x84\x74\x2b\x1d\xd9\x2a\x06\x88\xaf\xdd\x5a\xb1\x49\x27\x75\x94\xa8\x48\x46\xbf\x85\x55\xc5\x37\x2a\x15\x1c\xa6\x31\xe6\x09\x1e\x0c\xd2\x06\x2c\xd4\x17\xf8\x73\xf1\x23\x95\xa4\x62\x7c\xd9\x43\xb4\x24\xf4\x11\x8a\x0e\xb4\xbb\x58\x1e\xdc\xc1\x89\xda\x92\x74\x70\xfa\x04\xdc\x2d\x3c\x10\xc2\xf6\x3d\x2d\x45\xcb\xb7\x67\x5c\xd7\x83\x90\x66\x1d\x7f\xde\x20\xdf\xb4\x13\x34\x13\x7c\xa3\x0e\xc8\xb6\x59\x52\xfc\x51\x17\xc9\x7a\x88\x40\xd9\x17\xbc\xa7\x55\xb5\x75\x7c\x1e\x4f\x9c\xcd\xaa\x21\x0d\xec\x4d\x18\x7f\x57\xad\x76\xd1\xf9\x95\x4a\x55\x65\xff\xfe\xe6\x50\x68\x08\x3c\xb2\xcf\x89\x8e\x6a\x74\x60\x6c\xdb\x26\x49\x11\x61\xc0\x6c\xee\x18\x2b\x3d\xe7\x1d\x2d\x27\x29\x9f\x67\xc6\xc6\x91\xd8\x7f\x0c\xf9\x66\xa0\x14\xd0\x36\xdd\x96\x0a\x6d\x6c\xdb\x59\xc4\x1a\x2a\x12\xa5\xf9\x06\x88\x77\x2a\x4f\x7c\x60\xa1\xd9\x33\x2b\x16\xb5\x4d\xd7\x82\x5e\x2e\x0f\xe1\x0d\xf1\x43\x03\x08\x08\xec\xe6\x25\xe5\x4b\x0f\xac\x8d\xdb\x86\x5b\xc8\xb1\xfb\x41\x2a\xcd\xd7\x75\xa2\xba\x69\x16\x2d\x45\x89\x70\x2c\x49\x1b\xe6\x95\x40\x29\x7f\x5c\xa9\xfd\x1c\x95\x53\x20\x1e\x5c\x0e\x32\x6b\xc0\xe1\x91\x45\x10\x6e\x82\xc9\x7c\x60\x1f\xf6\x0e\xe6\x05\xda\x69\x70\x6f\x6e\x51\xa0\x85\x8e\xad\xb5\x09\x25\x85\x91\x5a\xe8\xe7\x11\x63\x09\x5d\x34\x2d\x6e\x64\x21\xb0\x05\x34\xeb\x06\x00\x4d\x2c\xeb\x8d\x2a\xf2\x1d\x65\xa7\xb9\xf3\x94\x18\xf7\x10\x4e\x73\x2a\x4b\x3a\x8c\x1b\xf3\xf3\x5b\xd0\x10\x15\x1a\x27\xb5\x22\xb6\x54\x62\xfe\x35\x9b\xa5\x0a\x76\x7e\x19\x81\xb8\x58\x99\x86\xa3\x4a\xfd\x17\x0a\x35\x91\x87\x59\x34\x28\x8e\x64\x91\x40\xaa\x70\x3c\x7c\xa4\xb2\x04\x1f\x55\x8c\xe7\xe2\x6c\x33\x4f\x57\x22\x0b\xd6\x4a\x71\x11\xb5\x2e\xb4\x5a\xd2\xed\x28\x8e\x85\xfc\x83\xd5\x30\xb4\xe4\xc6\x71\x85\xb4\xce\xa2\x90\xed\x31\xa6\x02\x8c\x47\x7c\x3d\x91\x50\x4b\xfb\x2c\x3e\x28\x0d\xe2\xe5\xb7\x8b\xa9\xf1\xc4\xb6\x3b\x08\x6a\xc2\xd7\xad\x27\xb4\x54\xd2\xc0\x64\x88\xf3\x9e\xe3\x9c\x00\x2b\x18\xa3\x60\xb2\xa6\x1f\xf1\x6d\xad\xbc\x7b\x43\x55\xb2\x8f\x61\x61\xc2\xdf\x7a\x53\x09\x20\xbe\xab\x32\xb0\x57\xb1\x6e\x94\x08\xa9\xa7\x63\x74\x8c\x87\xd1\x8a\xcd\x76\x7b\xec\x09\xd7\xd1\x90\x1e\xbb\xa8\x09\xcd\x51\xfb\x81\xe1\xf8\x03\x0e\x6a\xf1\x60\x27\x95\xfc\xcb\x93\xad\x09\xf5\x34\x5a\xab\x88\xfa\x6f\x56\x19\x2e\xe6\x34\x7d\x00\xaa\x03\x38\xd3\x51\x18\x77\xe0\x0a\x6f\x0c\x55\x37\x5d\x7f\xf5\x51\xdf\xdf\xf4\x3d\xbc\x1d\xe2\xef\x1d\x63\xdf\xf5\x30\xdd\x22\x97\x98\xff\x01\x56\x1e\x37\x27\xb0\xd6\x59\xe1\x95\x92\x0d\xae\x4a\xb5\x38\x2b\xea\x16\xf4\x6a\xd8\x3a\xe7\x46\x4a\x83\xe6\xa2\x3a\x22\x19\x46\x2d\xe2\x1c\x8f\x2b\xad\xf0\xac\x13\x5b\x68\xd4\x62\x5f\x9f\xc1\x9f\xf2\x8d\x6b\xc2\xc8\xad\x99\xf1\x0d\x1e\xcc\xcb\xa4\xe3\x34\xec\xf0\x1d\x63\xaf\xb9\xc3\x39\x47\x1c\xd8\xf7\x83\xa7\x2a\xec\xce\x0b\x0b\x5f\x54\x65\xbc\x75\xca\x81\x63\x5b\xfd\x68\xa4\x44\x1d\x69\xcd\x0a\xf5\x1f\xa5\x5f\x18\xce\x37\x52\xa8\x90\x1d\xe3\xc6\x2f\xbe\xc8\x87\x32\xb7\xda\x71\x36\x2d\xf0\xc0\xf5\xd7\xd9\xc5\x74\x1c\x42\x3e\xa1\x3c\xd3\xa2\x85\x00\x1c\x01\x3a\x3e\x71\xda\xbf\x81\x1c\x0a\x8b\x77\x50\x8a\x43\x54\x04\xe8\xf5\xf0\x90\x17\xe1\x09\x62\x83\xbc\x01\x9b\x27\xc9\x6e\x9a\x51\xb8\x85\x80\x31\xc0\xcf\x01\x6f\x02\xeb\xbc\x52\x3a\x08\x16\xe8\x5f\x03\x16\xcc\x4d\x1c\x94\xd8\xdb\xda\x50\x31\xa8\x19\x0c\xac\x21\x4d\xba\xf9\x79\xce\xeb\x5d\x55\x10\x90\xab\xaa\xdf\xae\x6d\x0d\xca\x6b\xf0\x1a\x46\x13\x54\xd5\x3a\x33\xa5\x20\x1b\x2b\x51\xc7\xa6\xd3\xaa\xdc\x75\x51\xf9\x4f\xdf\x0a\xbc\x5f\xf5\x2d\x9a\x23\xb1\xca\x3e\xc2\xcc\x88\x60\x89\x4e\x36\x51\x92\x9d\xe8\x23\xad\x21\x68\xe9\x59\xb3\x02\x0a\x64\xa4\x01\x6e\xc2\x76\xb0\xa9\x56\xdd\x6e\xc7\x54\xfa\xbd\x1f\x95\x91\x2c\xc0\xc3\xd2\x7b\xd3\x70\xaa\x8e\x1f\x60\xd8\xa5\xc9\xdc\x83\xf6\x7f\x88\x69\xe3\xbf\x72\x6d\x9f\x51\x66\x12\x49\x5f\x62\xe2\xaf\xeb\xac\x55\x95\x4a\xea\xc5\xb9\xc3\xc4\x95\xc2\xa7\x2a\xe7\xd8\x90\x89\x93\x84\x5b\xa5\x8f\x68\xf1\xe0\x57\x9a\x69\x62\x1b\xe5\xc8\x61\xe8\xf5\x34\x54\xa9\x82\xf6\xef\x6f\xe6\x71\x7a\xa4\xe1\xed\xda\xa4\x73\xa4\xcd\x7e\x61\xf3\xcf\x6b\xad\xee\x3f\xc5\xf2\x66\x24\x1a\xf6\x0a\x2c\xe8\xa3\x28\x98\x23\xcd\x33\x45\x39\x61\x98\xc9\x77\x35\x23\xc0\x1d\xea\x8a\x13\xd5\x9c\xf2\x89\x71\x7e\x6d\x06\xde\xae\xdc\x84\x85\x82\xcb\x7c\x2e\xf0\x29\xaa\x9f\x28\xac\xc9\xc7\x13\x32\x45\xd8\x28\xc2\x3e\x46\x1b\x85\x55\x2d\x21\x5b\x06\xc3\xb3\x15\x78\x6e\xfd\x86\xf6\x7c\x2f\x62\x3b\x0a\xa6\xcc\x83\x76\x21\xea\x80\xd2\xc1\x54\x6b\xa2\x95\xb1\xa6\x8b\xfd\x1b\x43\x1b\x03\xca\xe3\x98\x41\x5c\xcf\xc9\xda\x48\xca\xd4\xe9\x60\x90\x66\xc5\x30\x89\xf2\x82\xa7\xd9\x75\xc5\x7a\xed\x35\x0f\xc4\x18\x44\x61\x12\x85\x53\x84\x83\xa5\xda\xa5\x1c\xf8\x3e\x2f\xb3\xb3\xb5\x1d\xba\x3d\x3f\xbf\x58\x7a\xcd\x7d\x62\x6e\xe2\x04\x81\xc4\x35\x0d\x27\x73\x70\x49\x39\x0d\xbd\x34\x2f\xcc\x92\x05\xb4\x1c\x76\x05\x87\x00\x5f\x57\x0a\x34\x65\x10\xd8\x19\x22\x24\xc3\x79\xff\x56\xe0\xc9\xee\xdf\xaa\x43\xc0\x95\x5e\x09\xf5\xe0\x97\x2f\xcd\x8d\x62\x58\x1c\xd2\x35\x56\x93\x75\xc9\xad\xed\x4b\xf8\x21\x2b\x94\x96\x9d\x2c\xdd\x2a\xd8\x27\x6d\xe7\x21\x31\x56\x39\x90\xc0\x65\xa5\xc4\x7e\x59\x99\x95\x30\xca\x42\x6e\x7f\x40\x33\xe8\x51\xec\x4f\xc7\xde\xed\x02\xda\xe3\x6e\x53\x0f\x32\x5b\xd8\xa4\xa3\xa8\x9f\xd6\xf5\x41\x58\xcb\xdb\x96\x87\xe9\xc0\x36\x74\x9f\x04\x7d\x42\x92\x4d\x4f\x2b\x69\x04\xd3\xed\x46\x59\x9f\x1c\x03\xcf\x17\xf6\x43\x25\x8e\x7c\x35\xf0\x50\x90\x35\x47\x96\x1a\xa6\x49\x8e\x4e\x7e\xfa\x19\x76\xaa\xe8\xc8\x11\x07\x6b\x7b\x77\x8f\xe4\x1f\x62\x73\x24\x1f\x46\x05\xd8\x31\x84\x87\xcd\x33\x45\x7e\x53\x53\xf3\x9e\x83\xc3\x81\xbd\xc9\x45\x6c\x64\xb1\xaf\x57\x66\x7c\x71\x56\x3a\xd8\x69\x26\xf0\x99\x53\xba\x59\xf7\x54\xa0\x9b\xd4\xed\x4a\x44\x1d\x7c\x33\xe5\x8e\x47\x64\x7f\x17\x39\x53\x27\xd6\x57\x2e\x02\x16\xe3\xa2\xc5\x86\xc3\x0d\xca\x0a\x22\xd2\xf5\xa4\xa6\xfe\xe8\xda\x9c\x08\x92\x1d\x5a\xe1\x3f\x40\xcb\x84\x4e\x9b\xef\x3d\xde\xf2\x35\xbd\xbb\xb4\xb9\x04\xcf\xf1\x99\x5d\xdc\x59\x64\xbb\xf9\xb4\x67\x46\xe1\x28\x8d\xdb\x4b\x03\xdf\x59\xc5\xc9\x1a\x0c\xfe\x07\xdb\x75\x2f\xbb\xc0\xd8\x4c\x90\xe3\x0b\x5d\xa4\x1f\x93\x61\xd2\x35\xfd\x28\x8e\x4c\x36\xa5\x94\xa8\xa0\x96\x0b\x33\x80\x38\x58\x62\xc1\xc7\x94\x98\x63\x5a\x18\x96\x00\x92\xdc\x97\xc7\x1c\x5f\x08\xbc\x5e\x65\x61\xfb\x83\x34\x33\x59\xc4\x66\x02\x49\x9f\xe3\x2a\x01\x74\xbc\x16\x30\x6d\xdb\x36\x46\xe8\xe0\x78\x8d\x17\x3c\xaf\xf1\xe7\x7d\x43\x58\x94\x97\xde\x6e\x02\x76\x63\xaf\x0e\xf2\xb1\x8a\xe0\x3f\x9e\xc0\xf8\x46\xaf\x01\x5b\x21\x84\xbb\xe5\x60\x63\xb9\xdf\x44\x05\x8e\x95\xf7\x91\xe1\xd0\xe6\x10\x1e\xee\x75\xcd\x1e\x71\x93\xac\x39\xb7\x03\x04\xaa\x57\xfb\x51\x64\xd6\x44\xc5\xdf\xcb\x68\x30\x49\x8e\xe8\x79\xd1\x02\x94\x4e\x25\x5a\xfc\x1a\x2d\x8b\x75\xbc\x35\x09\x7d\x2d\xd7\x2f\x4a\x5d\x37\x55\xa1\x78\x60\x8a\xc2\x66\x09\xfb\x58\xc2\xfa\xd9\xf0\x0c\xa0\x2a\x39\xf4\xdc\xd7\x16\x55\xaf\xf5\x2d\x58\x0b\x51\xda\x9e\xcc\x63\xa7\x79\x54\xd8\x3d\x13\xec\x7a\x8b\xb3\x8e\x99\x80\xde\x91\x91\x13\x88\x4a\x5c\x97\xa0\xe6\xe6\x73\xd2\x1f\xe8\x18\x13\x2e\x83\x86\xe2\xe9\xa3\x91\x17\x0c\x86\x9e\xae\x2c\x27\xd1\x08\x81\xa7\xbf\xa3\xe8\x36\xde\xa5\x42\x2b\x7c\xb4\x37\xd4\x3c\xae\xc1\x8a\x88\x74\x95\xf7\xd1\x98\x3f\x91\x79\xd2\x51\x16\x75\x3a\x3e\xe5\x18\x20\xb4\xbf\x36\xd2\xd5\xe4\x0b\x2a\x70\x39\x16\xe8\x43\x54\xcd\x2a\xa7\x34\xb0\x10\xde\xa2\xc8\x11\xf6\x9a\xab\x8d\xa8\x21\xbd\x15\x28\xc5\x68\xd5\xd9\x99\x33\x2c\x06\xbc\x95\x5a\x7e\x0b\x36\xf2\x7b\x13\x9a\xbf\xae\x55\x2e\x4f\xe3\x0e\x4d\x0d\x3e\x71\x8f\x06\x14\x51\xe1\x97\xc6\xbe\x41\xed\x9f\x7c\x11\xd1\x23\xaa\xda\x33\x04\x6e\x83\x2f\xf3\xc8\xb8\x71\x60\x61\x0b\xfa\xfb\x0c\x02\x83\x11\x44\x85\xfd\x99\xd6\x04\x69\x9d\xa4\xaa\x32\x0b\x44\x02\x2d\x34\x27\x5b\xe1\x25\x2c\x6a\x34\x89\x17\x9a\x26\x5f\x96\xa4\x01\x0c\x11\x73\x9b\xf3\xcd\x67\x12\x84\x98\xd8\x64\x7d\xd6\x49\xc4\xbc\x9d\xd0\x76\x1a\xe8\x21\x38\x11\x37\xeb\xa4\xb0\x0a\xb3\xec\x3a\x39\x19\x0d\x4c\xcf\x2a\xc8\x60\x05\xea\xea\xe7\x8f\xaa\xa6\x08\x84\xbb\xd2\x05\xe2\x72\x5e\x3f\xf8\xeb\x18\x59\xa4\xb9\x1f\x1e\xfb\x76\xe7\x07\x0a\x1a\x71\x17\x2b\x10\x5e\xde\x7f\x46\x0c\x10\x38\xc6\xfe\x9d\x2a\x50\xfe\xcb\xbf\xd5\xd2\x4d\xed\xf7\x54\xaf\x0a\xd3\x6e\x0b\xa5\xc3\x63\x13\x32\xdc\xaf\x31\x66\x59\x64\xca\xe8\xdd\x98\x9c\x84\xde\x4d\x13\x95\x88\xb0\xd9\xf6\xdc\xeb\xdc\xe1\x66\x37\xb6\xaf\x46\x6d\x0e\x7b\x9c\x1a\x8d\xa7\x7b\x9f\x48\x91\xa6\x03\x9b\x15\xab\x7b\x7c\x3d\xef\x1d\xa5\x3d\x72\x3f\xf0\x4a\x32\x57\x27\x78\xbf\x34\xa0\xfa\x07\xd8\x23\x2e\xb5\x50\x9a\x0b\xa1\xcb\x2b\x47\x08\x9e\xf3\xf7\xb1\x47\x11\xed\x7e\xcf\xf5\x4c\x95\xe7\x88\xcd\x3c\x55\x28\xea\xa2\xe7\x14\xdf\xd9\xb9\x3a\xdd\xbd\xfc\x88\xb5\x03\x59\x78\x4c\x4d\x1d\x28\xaa\xee\xb3\x75\x84\x14\xf6\xd5\xb0\x67\x92\xa5\xc9\xfa\xcd\xa9\x91\xaa\xdf\x9c\x0a\x74\xbf\x40\x22\xcd\x57\x30\x78\xa7\x14\x9d\x7f\xb5\xf7\xea\xc0\x42\x73\x60\xd5\xa2\xe4\xea\x32\x7d\x46\x2a\xcd\xe2\x75\x11\xd7\x30\x2a\x55\x7e\x5e\x80\x45\xe7\x6b\xb5\x34\xa8\x3e\x13\x37\x14\xe3\xfc\x4f\x55\xad\xed\xa7\x0a\x3a\x9d\xd9\x38\x32\x84\x17\x9b\x9f\xe7\xad\x7e\x4c\xb5\x05\x1c\x53\xc9\xcc\xcc\x76\x86\xa1\xed\x00\xab\x2f\xe3\xe7\x59\x48\x98\xfd\x82\x6f\xc6\x9a\xff\xbb\x66\xc1\x85\x69\x12\x96\xde\x2d\xfd\x2e\xd2\x50\x17\x54\x4a\xea\x42\xad\x98\x79\x3e\xb0\xb6\xb3\xda\x50\xf5\xd8\xb3\xaa\xf9\xff\xac\xa2\x42\xed\x9a\xa4\x6b\xca\xe5\x71\x60\xc1\x3d\x05\x2d\x32\x79\xee\x2a\xbb\x01\x31\x77\xe5\x32\xd1\x08\xc4\x4e\x63\xa2\xf9\xa6\xa2\x66\x38\x77\xb8\x99\xa7\xc3\xa4\x53\x64\x92\x0b\xe7\x7c\xba\x6a\xa3\x39\xe9\x66\xb0\x1d\xa5\x71\xba\x14\x85\x26\xa6\x44\x2e\xc2\xf9\x7f\xab\xe9\x40\xde\x1f\xf9\x44\xea\xc7\x81\xcf\x83\xf4\x87\x79\xb1\x97\x9e\xc4\xe5\xd2\xf6\x8b\xde\xc7\xde\xb1\xda\x3c\x4c\xbe\x88\xe3\x06\x60\x34\xac\x3d\x96\x04\x70\xf9\x1d\xaf\x4d\xb3\xb7\xa5\x49\xc7\xae\xe8\xc2\x0e\x50\x07\x22\x79\x4e\xc3\xc2\xbf\x4f\x7b\x9c\x7f\x12\xdb\x5a\xc8\x72\xea\xd0\x1c\x61\xda\xef\xdb\x2c\x14\x3c\x00\x46\xf3\x7d\xc5\xac\xfa\xfe\x24\x79\x00\x48\xf4\x56\x30\x7b\x70\x81\xde\x20\x67\x81\xaf\x95\x4b\x59\x9e\x3f\x4b\x09\x4a\x91\x1e\x3a\x78\x51\x75\xdb\xbc\x87\x14\x2d\xe6\xfd\x53\xb5\x47\x90\x87\x22\xa4\x0c\x92\x73\xa7\x27\x51\xa6\x0a\x6c\x02\x67\x0c\x83\x72\x6e\x34\x21\x44\xe3\x65\xe4\xbf\x45\xbe\x01\xec\xed\x83\x1a\x0a\x90\x83\x4d\x93\x98\x78\xc9\xe6\x51\xd8\xf0\x65\x04\x70\x52\x09\x6c\xba\x4e\x5b\x27\xb3\x79\x3a\xcc\x42\xc7\x0e\x87\xf4\x17\x53\xea\x62\xb7\x70\x2d\x03\x67\xc7\x09\x45\x1b\x9d\x99\x30\xca\xfb\x53\x9a\x22\x1e\x9f\xd3\x64\x41\x92\x70\xf6\x4d\x12\x45\x96\x0e\xdb\xb1\xe8\x4b\x39\x58\x5b\xb9\x00\xf9\x46\x75\x54\x98\x95\x34\xe9\x98\xd8\x72\xb5\x0a\xa3\xce\xc9\x27\xbe\x19\x7d\x4e\xd5\x8f\x0b\x9b\x85\x69\x92\xd8\xb0\xd0\xfd\xcb\x88\x19\xb8\xd2\xa8\x1a\xc7\x3f\xad\x19\xc9\x97\xca\x45\xb2\x12\x81\x65\xcc\x9d\x6b\xac\x74\x28\x8d\x78\x7e\x10\xc2\x9e\xcd\x58\x99\x08\x29\xc6\x0f\x30\x5c\x7c\xa3\x5e\x25\xb3\x0a\x13\x2b\x52\x7a\xf4\x90\xa2\xa5\xb7\x4f\xe9\x0e\x0d\x97\x7a\x53\x2a\x2b\x05\xae\x53\x5c\x1f\x9b\xe8\x9b\xf0\x98\x9a\xa8\x0c\x80\x0a\x93\x14\xbb\x3c\x70\xfe\x36\x7e\x01\xf1\xe5\x13\xbc\x1b\x15\x13\xc4\x73\x9c\xbb\xbd\xe6\x69\xa1\x58\xe8\x80\xf5\xa9\xd5\xf9\x93\xbe\x96\x26\x76\x5a\x21\x5c\x8e\x2b\x5a\xab\xdb\x8a\xfd\xe0\x5f\x8e\x14\xfb\xf9\x9a\xf2\x7c\x96\x87\x83\xdd\x0a\x3a\xac\xa0\x69\x8f\xb4\x94\xbc\xe5\x19\x0c\x36\xeb\x02\x68\xd4\xd4\xcf\x14\x17\xe0\x89\x40\x71\xf6\x6d\x6a\xa2\xdf\x57\xeb\xf8\x03\xf2\x1e\x48\xf2\x45\x08\x08\xc2\x11\x70\xbb\x1e\x6a\x79\x17\x63\x53\xc9\x29\x9d\x50\x25\xa6\x24\x4a\xec\x6e\x7a\x48\x27\x52\x53\x46\x12\xc0\xc6\x6e\x8c\x14\x6b\xe9\x5d\xf2\xca\xb9\x04\x43\x3b\x90\xff\x48\x03\x3f\x2e\x07\x8a\x50\xea\xa2\xa2\x0b\xdd\x1a\x3d\xae\x7b\xd7\xdb\x51\x62\x15\x4c\x0d\x09\x49\xbe\x1e\x6b\xcc\x86\xc9\x04\xb3\xc1\x2a\x8a\xf4\xcb\xa2\xa8\x28\x59\xb8\xa5\x8c\x0e\xb9\x86\x13\xd4\x43\xe4\x26\x28\xa0\x4a\x8a\x75\xae\x49\x40\x00\x8f\x9c\xe7\x86\x0d\xbe\xf9\x4c\x40\xe1\xc0\x64\x85\xea\x10\xdd\xd7\x52\xd5\x8e\x7d\xe3\x47\x15\x23\xde\xea\xb4\xf7\x92\x4f\x07\x8a\x53\xec\xf7\xa7\x5a\x8a\xed\x73\x0a\x8e\x2a\xff\xdd\xc8\x23\x94\x8e\xd8\xa4\xd8\xa3\xb2\x50\x37\xf8\x3b\x90\x64\xba\x8e\xf5\xcf\x37\xf4\xae\x38\x65\xb8\xf6\x2f\xc5\x18\xef\xb5\xed\x20\x01\x49\x2c\xe4\xdf\x82\x07\xe7\x24\xb1\x9d\xd7\xf1\x6e\xc5\xcd\x95\x17\x2f\x6c\x32\x55\x4e\x3f\x50\x19\x40\xaa\xa0\xfe\xc4\x78\x1e\x6c\xc5\xb7\xb6\x03\xa8\x5f\x7e\x99\x9a\xa5\x7d\x2c\xfe\x16\xc5\x9c\xd2\xa4\x5f\xfe\x34\x13\x98\x50\x30\x88\x2c\xdf\x55\x6c\x61\xc4\x11\x3f\x51\x6c\x08\xfb\xb4\x9a\xce\x66\xa0\xd0\xea\x9c\x22\x66\xac\xbb\x86\x6f\xfe\x3b\x1c\xc2\xae\xe8\xec\x29\x58\x6f\x69\x81\xb2\x0d\xe4\x2e\xf8\xdb\xc8\xc6\x63\xb3\x9c\x51\x7c\xac\xcc\x8e\x29\x5d\x07\x1e\x2a\x97\xdb\xa2\x88\x6d\xe9\x41\x3e\xa4\x68\xbb\xb8\x19\x82\x0b\x54\x23\x9f\xc4\xbf\x3b\x52\x9c\x76\x81\x8a\x9c\xef\x2b\x8a\xec\xef\xe9\x2e\x80\xab\xc1\x23\x9e\xc8\xf1\x59\x9c\x31\x42\x11\x44\x7f\x26\x1c\x41\x13\xa1\x7f\x0a\xa9\x40\xb8\x33\x3f\x82\xc5\xc1\x9e\x98\x6e\xf9\x76\x83\xb3\xba\xa8\xb5\x59\xe7\x70\x77\xe8\x68\x63\x59\x08\x90\xf7\xed\x1c\x7b\x54\x1b\x97\x20\x85\x88\x7b\x9f\xea\x32\xcd\x0b\x83\x93\xd4\x49\xa4\xbb\xec\xe7\x46\xa0\xa4\xdf\xbc\x92\x62\x98\x0d\x6d\x4c\x7e\x09\x16\x09\x9e\x14\x15\x82\x3b\xf8\x21\x69\xa7\x9c\xc8\x4a\x25\xd1\xb4\x82\xf2\x5c\xc2\xcb\x6a\x12\x16\x44\x39\x5c\x15\x95\xa6\xff\xa7\x14\x04\xcf\x14\x51\x5e\x44\x61\x0e\x5e\x21\xc7\x6a\xb7\x28\xc9\xd5\xb7\x60\x23\x6a\xa5\xa8\x0f\x2c\x38\xf2\xfb\xaa\x97\x7c\xa8\xbc\x58\xb6\xd9\x94\x82\x6c\x5f\x50\x82\xd2\x9c\x40\x92\x38\xe9\x09\x95\x60\x8c\xba\xab\x12\x7d\x21\x0d\xf5\xa1\x4a\x49\x7d\xa8\xce\xa0\xc4\xae\x3e\xa4\xe8\x6e\x77\xf1\x99\x28\xca\xf2\x1e\x2d\xf1\x58\x4b\x35\x3d\xad\x8f\x26\x3a\x48\x1d\x94\x91\xe9\x02\xe0\x3b\xde\xae\x6b\x6a\x2f\xa7\x36\xea\x0b\xd3\xa6\xf3\xff\x54\x5b\x52\xd5\xab\x3d\x44\x74\xa5\xc2\x2a\xee\x90\x20\xdf\xd2\xd5\xe7\xb5\x40\x05\x60\x57\x6a\x08\xd5\x9a\xbd\x34\xee\xb8\xc2\xbc\x74\x95\xfb\x43\xef\x4d\x2d\x3e\x7d\xb9\x62\xc9\x0f\x3f\xdf\xcc\x87\xfd\x3e\x27\x54\x5f\x98\x65\xbb\xf9\x09\x99\x22\xbe\x56\x81\x7b\x1e\x15\x43\x82\xdf\x94\xff\xcc\x35\xeb\xc0\x63\xd6\xd7\x47\x8f\xfa\x12\x8d\xc9\xbf\x58\xae\x03\x71\xcf\x29\x3b\x06\x37\xe0\x7b\x81\xe2\xad\xdc\xd0\x7c\x50\x00\x97\x63\xc3\xa3\xd0\x2c\x89\x3e\x75\x48\xdc\x25\x08\x0e\x59\xbd\x9d\x8f\xb7\x94\xda\x0e\x73\xf2\xb3\xc0\xf8\xc8\x13\xe5\x9c\x82\x03\x0f\x73\x8f\x4c\x0c\xce\xe7\x1d\x63\xdd\xb2\x86\x35\x02\x97\xea\x5f\x29\xe1\x9f\x2f\x13\x79\xe8\xc1\x2d\xb0\x88\xb1\xb9\x45\xb3\x0b\xf7\xe2\x8e\x7c\x9b\xc7\x26\xf7\x25\x08\x67\x29\xed\x1e\x66\xc0\x81\x55\x56\x07\xc5\x21\x4e\x42\xfd\xa4\x1e\xc2\x6e\xbb\x5d\x9b\xe5\xa9\xa3\xe2\x45\x02\x88\xe1\x09\x7c\x53\x47\x94\xd5\x1d\x66\x45\x8f\x21\xce\x70\x51\x67\xc6\x34\x34\x48\x39\xdf\x0b\x74\x85\xad\xc2\xe6\xbc\x78\xb0\x19\x96\x7e\x06\x83\xac\x44\x23\x8f\xa6\x49\xd4\xf3\xaa\x20\xcb\xe7\x9a\x99\x7d\xc5\x31\xdc\x4b\x46\x61\x4d\xf5\x5e\xaf\xa9\xf3\x1c\x15\x26\xa7\x79\x74\x4a\xe1\x09\x4f\x05\x55\x64\xf7\xa1\xe6\x33\x68\xde\x75\x2d\x81\x07\x9f\x97\x44\xd7\x13\xad\xc6\x33\xcf\x38\xf4\x27\x3d\xb2\x44\x92\x8d\xf9\xf9\x2d\x6e\x71\x13\x06\xf1\x7d\xaa\x4f\x39\x5d\xe1\x2e\x3e\x97\x75\x5c\x94\xfa\xc3\xf5\x09\xe1\x5c\x4d\x41\x52\xae\x69\x54\xe5\x67\xc6\xbe\xc1\x18\x5e\xf9\x74\x43\xb1\xf2\xd3\x78\xa1\x2a\x70\x11\x27\x38\xff\x0b\x7d\x35\xff\x83\x4b\xbe\x76\x8d\x64\x7d\x5c\x0d\xd0\xd7\x03\x2b\x1e\x5b\x39\xdc\x83\x61\x41\xc7\x19\x7c\xe6\x4d\x9c\xeb\x98\x6d\xa0\x71\x1c\xdf\x6c\xf9\x20\xc2\x13\xb3\xd7\xf7\x30\x0e\x84\xfe\x89\x59\xdd\x95\x74\x08\x93\x20\x62\xc3\x7c\x12\xf8\xe8\x83\x35\x16\x6d\x67\xba\xfc\x63\xc7\xff\x78\x40\x54\xcd\x30\x6e\xdc\xe6\x12\x28\x74\xa5\x47\x1b\xa6\x49\x77\xe8\xa1\x44\x32\x5a\xe5\xc7\x90\xb1\x7b\x52\xf1\x0c\xec\x1d\x3f\xa9\x54\x59\x4c\x9b\xe0\xf7\xf8\xa0\x10\xee\xa9\x00\xf0\x8c\x6a\x14\xbb\x53\xb1\xd2\xcf\x3c\xd3\xec\xa4\x61\x91\x89\xab\x2d\xe5\x29\xc5\x0f\xfd\x7a\x05\xd4\x7b\xf0\xf9\x43\xcd\xcc\xae\xa4\x31\x51\xf2\x4b\xe6\xcc\xad\x05\x57\x70\xbd\xa1\x54\x55\x07\xb1\x35\xf9\x30\x23\x1c\x36\x2d\xc7\xba\xb6\xeb\xcf\xf2\x2c\x4d\xbb\xdd\x50\x1e\xe4\xb9\x89\xc2\xe1\xf6\xca\xd6\xdc\xe1\xa6\x2d\x7a\x22\xf7\x06\x20\xdc\xb7\x15\x53\xc4\xb7\x2b\x9b\xfb\xc0\x42\x33\x34\x43\x87\x64\xc5\xb8\xb1\xc4\x0f\xdf\xa8\x8a\x5e\x27\xca\xc3\xcc\xe2\xaf\x17\x67\xa5\x60\xa0\xba\xab\x4e\xe9\x1e\x9d\x28\xe9\xd8\x04\x9b\x1f\x6f\x79\x3b\x50\xa6\xfd\xb6\x8a\xb2\xc2\x34\x7f\x76\xc6\xa3\x09\xdf\x42\xca\x49\x9a\x85\xfd\x0e\x43\x49\x1b\x1e\xd6\x71\x1a\x09\xfe\xff\x13\x60\xcd\xb0\x93\x3f\xa4\x42\xd1\xd7\x95\x7e\xd9\x4d\xa5\x85\x75\x0f\x87\x00\x12\xfd\xd3\x54\x32\xc6\x2f\xb2\x40\x09\x0a\x52\xc7\x47\x8a\x98\x73\xb3\x46\x43\x61\xa1\xf9\x8d\xa1\x40\x1b\x9d\x8d\x73\xcb\x69\x4d\x15\x74\x09\xa6\x5e\xba\x3a\xa0\x9b\x92\x3a\x0c\x3d\x85\x14\x93\x6a\x5c\x89\x30\x8e\xfa\xa6\xe0\x0c\x0f\x92\x2c\xc8\x05\xf0\x75\x1d\x56\x1d\xac\xc2\x0d\x5d\xbc\xf0\x68\x88\x9b\xaa\xd2\x3a\xc8\xd2\x6e\x54\xec\x55\x12\x35\x77\x02\x25\x64\x73\x11\xa7\x1e\x8c\x29\x38\xa8\x11\xe2\xec\xa5\xa2\x83\xb4\x76\xd2\xaa\x46\xde\x1e\x5d\x49\xfc\x0f\xd8\x4b\x98\xaf\xfb\x14\xc1\x08\xb5\xad\xa2\x43\x40\x63\x0c\x3c\x81\x1d\x3a\x21\xb0\x46\x68\x1b\x21\x87\xf8\x9c\xea\x75\x13\x2a\x11\x2e\xfa\x6a\x52\x35\xbe\x56\xf4\xeb\x51\x52\xd8\x18\x76\x1d\x06\xe5\x7a\xa0\xca\x74\x77\x26\x18\xe9\x4f\xe1\x7d\xa5\xe1\xac\xe1\x58\x53\xab\x89\xf6\xc5\xd9\x66\xd8\x33\x89\x3b\xdf\x84\xf3\x86\xbe\x5b\xc8\x70\x9c\x2a\xaf\x53\x33\x2a\xff\x14\x45\x9c\x06\x05\xf5\x7c\x5d\x11\x55\xda\xbf\xbf\x69\xda\x43\xd7\x7e\x5e\xcb\xc9\xec\x97\x56\xda\xb6\x51\x4e\x39\x77\x22\xe1\xd8\x28\xf7\xc6\xd6\x86\xea\xa0\xa1\xb6\xb4\x69\x9f\x46\xc1\x7a\xd7\x19\x19\xb1\xdd\xb4\xf6\x05\x15\xa9\x43\x88\x22\x5b\x7d\xb2\x9c\x42\x89\x71\x69\x99\x88\x1e\x33\xbd\x17\x02\xfd\x3d\x63\x45\xf8\xff\xcf\x31\xd3\x8c\x66\xd5\x70\xa6\x9f\xc0\x13\x72\x1a\xc8\xfe\x68\x86\x05\x65\xaa\x5d\x96\x7e\xe1\xf0\xde\x91\xfa\x2e\x0a\xce\xfc\x41\xe0\x45\x6c\x2e\x6a\x82\x5f\x50\x81\xc2\xa7\x44\x7b\x02\x7c\x52\x2e\x90\x63\xb5\xee\xa2\x86\x45\x84\xd5\x77\xea\x29\x24\x4d\xb7\x4b\x34\x71\x32\x79\x28\x43\x6d\x28\x7c\xeb\xc6\xc8\x27\x8f\x07\xa5\xfb\xde\xa7\x40\x69\xda\x17\xad\xee\x8c\x14\xa9\x3c\x84\x50\x45\x74\x99\x46\x91\xff\x41\xb5\x5c\xe6\x85\x5d\x41\x5b\x8d\xe3\x3d\x71\x71\xcd\xb7\x69\x1f\x4e\x28\x4f\x23\x89\xb5\xa3\xe5\x51\xac\x45\xda\x36\x61\x98\xa2\xa7\x89\x3a\xa6\xb7\x36\x14\x8c\xa3\x63\x07\x36\xe9\x90\x36\xc3\x73\xce\xab\xf0\x4e\xc2\x63\x74\xe6\xc2\xa6\x73\x13\x26\xac\xcd\x75\x95\xd2\x0d\x7b\xd1\x60\x20\x9c\x60\x8e\xe7\xd4\x89\xbc\xae\x07\x5f\xfe\x8c\x33\x8d\x54\xe3\x8d\x12\xb4\xc6\xda\x43\x5f\x37\x5f\xd7\xc8\x6e\x2d\x34\x8b\xcc\xf8\xd8\x06\x80\x18\x4d\x5e\x81\xa0\x11\x96\xfe\xf5\x89\xb5\x9b\x76\xbb\xfb\x68\xb9\x49\x67\x9d\x5a\xaf\x70\xd6\x85\x77\x4c\x2b\x18\x97\xbf\x82\xb8\x60\x86\x78\x6f\xe4\x57\x68\xce\x80\xd0\x7b\x8f\xb2\x7e\xa8\xcb\x5f\xd2\x44\xf6\x3b\xc7\x1e\x78\x39\x21\x0e\x0c\x75\x23\xe6\x7d\xa2\x90\x06\xf1\x25\xea\xb3\x78\xbe\xef\xa8\xb2\x53\xcf\x24\xe9\x8a\xcd\xd8\xe3\x77\x02\x02\xbe\xe5\x7f\xbd\x72\xa8\x7f\xb5\xd9\xb7\x9d\x28\x34\x11\x88\xc1\xb1\x82\xde\xd4\x34\x3a\x6f\x56\x0e\x1a\x5a\xeb\x7d\x93\x49\xc1\x56\xf7\x5c\xf1\xb5\x3a\xb0\x8f\x08\xe9\xb8\x2a\x60\x48\x89\xe7\xdc\x67\xa6\x07\xdb\x86\xdb\xb4\x30\x75\xfc\x29\xbe\x09\x04\x56\x1d\xdb\xe2\x51\xda\xa2\x08\x7f\x67\x5a\xaa\x62\x70\x4d\x35\xe5\x30\xc3\x0d\x66\xeb\x1e\x8e\x69\xe1\x7a\x51\xc9\x78\x50\xba\x60\xf5\xfe\x8d\x96\x47\x97\x40\xa7\x08\x25\x51\x4e\x33\xb2\x92\x2b\xbd\x33\x7c\xe0\x4b\x34\x41\x08\xfa\x8f\xab\x58\xa1\x9b\x0d\xd1\x4d\xfb\x1c\x47\x97\x37\x3c\x2e\xeb\xb9\x1b\x81\x46\xfe\x86\xd4\x71\xec\x4a\xef\x77\xe0\x97\xf3\x8d\x02\x26\xe7\xc3\xa8\x78\xc8\x23\xb3\x26\xb4\xe6\x6f\x96\x67\x27\xc4\x43\x1c\x61\xbd\x62\x91\x62\x06\x47\xbe\x19\xf9\x1f\xdb\xa8\xf4\xf5\xfe\xad\xe6\xc0\x84\x12\x3e\xe2\xab\x38\xbd\xc2\x37\x95\x73\x6e\xee\x70\x33\x1d\x16\x61\xda\xb7\x13\x08\x68\x3c\x9e\xf6\x64\xe9\xdd\xcd\x13\x2d\x6f\x45\xa6\xc7\x7e\xc5\x14\x3d\xdb\x7f\xa2\x9c\x09\xcc\xea\xad\x40\xb9\x3d\x1b\xc1\x24\x51\xcf\x01\x0f\x52\xa6\xad\x26\x25\x9f\x29\xaf\x08\xcc\x55\x76\x11\xac\x54\xfe\xea\x19\x3a\x1c\x1c\x83\xe5\xfc\xbc\x9c\x01\x5a\xd3\xfb\x96\xae\xdc\x82\xf7\x1a\xc7\x09\xa4\xca\x11\x78\x0a\x09\x00\x43\x79\xe9\x25\x71\x00\x01\xa7\x2e\x11\x87\x5f\x16\x7d\xb3\x9a\x66\x28\xe0\x28\xbe\x97\x97\x38\x3d\x7b\x46\xc3\xde\x2f\x28\x2a\x8f\x8e\x2d\xa4\x1d\xa9\x0c\x5d\xa5\x85\x9f\x0e\x4b\xe9\xe1\xaf\xa1\x65\x3d\x54\x86\x7c\x0d\x05\xf6\xfe\x24\xd0\xaa\x0a\x95\xd0\x85\x08\x91\xd3\x64\x29\x2f\x0c\x49\xcc\x4f\x79\xa8\x13\x2b\x87\xa0\x6e\x30\x52\xe2\x4e\x57\x1c\x92\x37\x1b\x0e\x2c\x67\xf7\xe1\x28\xbe\x87\x5d\xc6\x37\x0a\x6e\x44\xf5\x38\x9b\x17\x4f\x2a\xe6\xd5\x1f\xd3\x18\x0b\xc6\x54\xb5\x9d\xed\x1e\xfb\x1c\xca\xc7\x81\xaa\x28\xdf\xe6\xbc\x89\x6b\x2b\x2d\x1f\x50\x28\x25\x69\xf1\xe0\x5f\xb8\x08\x8f\x95\xb8\x31\xf2\x04\x42\x3f\xd1\x65\x49\x68\xc5\xe8\x6e\x1b\x38\x7c\x9c\x65\xc5\x76\xf9\x4b\xac\x43\x58\xf3\x63\x23\x65\x77\xfe\x80\xce\x08\xac\x6a\xa9\xa7\xe1\xc5\x2f\x4d\xf6\x19\x15\xbd\xbd\x8a\xdf\x94\xa3\x51\x49\x20\xd2\xb7\x0b\x0d\x85\xd7\xab\x42\x3a\x1d\x09\x00\x1c\x34\xbc\x2e\x69\x3a\xf1\x33\x3b\x20\xf8\x26\x54\x1c\x1a\x99\xdd\x70\x04\x3b\xcc\xfa\x06\x6f\x02\xbd\x4c\xce\x20\x7a\x8d\xec\x33\x75\x64\x47\xb9\x29\x6c\x1c\x47\xcc\xae\xef\x44\x97\xbd\x00\xb3\xc2\xed\x81\x36\x30\x2c\xd0\x83\x26\xa0\x12\x7a\x39\x2c\xf4\x3b\xd8\x9c\xb0\xd2\x70\x77\x1c\x0c\xc5\x69\x01\x5d\xd2\x9c\x98\x85\xe9\x76\x77\x29\x61\xfc\x8b\x81\x92\x7f\xbc\x38\xf2\xca\x6c\x67\x94\xfa\xee\x19\x78\x72\xd8\xea\xb7\x47\x4a\xe8\xe7\x76\xa0\x21\x26\x65\xf8\x6d\xa7\x7d\x8d\xec\x56\xa0\x10\x5e\x40\x7b\xf0\x3f\x60\x61\x0a\xbd\xbe\x40\xa6\xc3\x5e\x9a\xe6\x36\x47\xa2\x9e\x7d\x22\x3c\x1f\x3c\x55\x46\x74\x88\xa3\x56\x91\x7d\x7e\xfe\x50\x73\x10\x9b\x24\xd7\x9a\x74\x9f\x6a\x76\xf8\x4f\x27\x88\x3e\xf3\x22\x4b\x57\x29\x1a\x66\x4d\x38\x22\xfe\x00\x8b\x94\xa8\xc4\xd1\x3c\x23\xbf\x78\x8d\x1c\x60\x66\x3d\xd1\x31\x75\x96\x0e\x66\xfc\x3a\x61\xb2\x53\x26\xf3\x52\xd4\xb7\x57\x54\x36\xeb\xcf\x68\x25\xf2\xf5\x04\x4c\xd2\xc4\xf1\x93\x9a\x3a\x00\xf5\x52\x94\x09\xf0\x04\x72\xe2\xa8\x97\x9c\xd1\xf5\x3f\xe0\x7a\x94\x26\xca\x9c\x6b\xfa\x57\x41\xd1\x26\x3c\x65\x69\xf6\x2a\x1f\x07\x47\x20\x6b\x90\xc2\x96\xcf\x8c\x2b\xc2\x6d\xbc\x69\x31\x32\xf8\xab\x3b\x48\xc9\x0a\x65\x40\xb9\xb1\x80\x83\xf9\x33\xcd\x94\x05\xc6\x75\x64\xf9\xbe\x5b\x71\x8b\x0e\x3f\xdf\x8c\x92\xd2\x97\xe2\x9d\x81\xfa\xb8\x56\xe8\x39\x5e\x51\x99\x5f\x58\x38\xd8\x8c\x4d\x3b\xcd\xc0\x2d\xed\x8b\xbc\x27\x46\xaa\x7d\xe6\x44\xb0\x8d\x32\xef\xc5\xc5\xd9\xd2\x46\x4f\x37\xfc\xc1\x14\xe8\x21\xff\x70\xf2\xcc\x52\xbe\xe6\x87\xca\x5d\x6c\xdb\xe2\x88\xb5\xc9\xe3\x5e\x8a\x07\x94\x74\xd2\x2c\x06\xa3\xca\x12\x9c\xb0\xa3\x8e\xe1\xbd\x1c\x53\xb8\x30\x0c\xbc\x72\x44\xfb\xe5\x38\x3a\xd9\xce\xf2\x29\x78\x15\x10\x47\x91\x5b\x11\xfb\xe7\xf8\x0c\x7e\x87\x4f\x4e\x25\x64\xf5\x1c\x7b\xcf\xb7\x35\xc3\xed\xa7\xda\x6f\x1c\x97\xbe\x37\xdc\xf0\x4b\x8a\xb6\x91\x84\xa3\x5c\x6f\x68\xe7\x51\x2f\xaf\xf4\x8f\x68\xe6\xa4\xf4\xe8\xb1\x18\x17\xb4\x6f\x74\x15\x10\x68\x44\x15\x6b\xe4\xad\xc3\x05\xf8\x98\x2c\x30\x56\xdd\x15\x5a\x68\x72\x64\x97\x13\x80\x24\x2a\xe3\x3f\xb0\x9c\x1e\x6a\x4d\x48\xf4\xa9\x56\xdf\x5b\x35\xf2\x77\xcd\xcc\xe6\xb6\xef\x52\x7e\x78\x97\x0b\x2a\x6a\xbc\xf0\xd9\x28\x7d\x5b\x14\x36\x9b\xd2\x69\x18\x4c\x94\xb4\x71\x95\x0f\x8b\xf5\xfe\x91\xab\x0b\x76\xd2\x23\x9d\xd5\x69\x8f\x11\x03\x98\x5f\xc8\x16\x3c\xa5\x0e\x07\xf8\xd2\x1c\x51\x75\x2b\x4a\xc3\x71\x84\x25\xe9\xf0\xe2\x7f\x42\x63\x8b\x5c\xc1\x69\xd5\x07\x7e\x42\x13\x6a\x0e\x8b\x61\x66\xf7\x68\x06\xc2\x91\x4f\xcd\x9c\x24\xb7\x1d\x05\xe7\x7f\x3a\xf2\xdd\x5d\x1f\xc1\x72\x0a\x0a\x96\x06\x5b\x48\xd2\x69\xcd\x09\x86\x0d\xab\x96\xef\x02\x5f\xb6\xbf\x38\x21\x53\x52\x14\xb1\x7d\x52\x35\x75\x5c\x50\x36\xf3\xc7\x30\x2c\x0e\x92\x5e\x4e\x25\x96\xcb\x19\x5a\x14\xf8\xab\xe3\xba\x82\xfd\x87\xf0\xc0\x24\xe9\x4f\x23\x82\xf4\xf4\x55\xd5\xde\x89\x50\x19\x23\x35\x21\xa0\xbf\x86\x38\x51\x88\x03\xe9\xe5\xa4\xe5\xbf\x1c\x1a\xc6\xa3\x06\x9e\xe4\xe5\x6d\xcc\x0d\x8b\x87\x8d\x3c\xd5\xea\x0c\x65\xdb\xf8\x71\x6b\xca\x8d\x8b\xcd\x9f\x9b\x3b\xf0\xdc\x81\xc3\x87\x1a\x4a\x9e\x68\x5d\xd7\xad\xab\x41\xe2\xfc\x7c\x79\x2a\xad\xba\x18\x1c\xf0\xa0\x6f\x2a\x09\x8f\x6f\xba\xe2\x40\x46\xd8\xcf\x69\x6c\x6a\xe6\x8b\x55\xae\x35\xd4\x87\xe5\xb4\x52\x1b\xe3\xed\x4a\x34\x41\x4e\x68\x9e\x0e\x8b\x1e\xc5\x44\x98\xa7\xdb\x81\x92\x8b\xb8\x5d\xab\x15\x9f\xa6\xcc\x0f\x8e\xc1\x81\xb4\x1e\x5f\x2b\xe6\xcc\x30\x36\x53\x9a\xd3\x86\x06\x7a\x82\x58\x05\xa7\xe1\x6d\x7f\xb8\xc7\x26\xea\xa3\x76\x2f\x70\x23\x26\x50\x47\x9a\x8a\xa7\x14\x47\x55\xa3\x55\x85\x90\xce\x95\xfe\x41\x2e\x89\x6e\xfe\x90\x92\x71\xbd\x30\xda\xa7\x34\x07\xa2\x24\xa7\x2a\x9c\x94\xf5\x1b\xdb\x9a\xff\x71\x56\xde\x70\xe2\x4d\xa1\x8d\x63\xaa\xea\x00\xc6\xf6\x60\xa4\x94\x11\x81\x1f\x42\x74\xb2\xaf\xe5\x93\xdc\x5e\x47\xfe\x48\x3a\x4c\x3a\x02\xf2\x83\xd9\x39\x31\x52\xaa\x41\x9b\x13\x52\x04\x02\x2a\xed\xd9\x7e\x94\x0f\x7a\x36\x03\xc9\x29\xb3\xa1\xd2\x2b\xb1\x03\x3d\xf2\x61\xf4\xff\xa5\x8c\x40\x2f\x5a\xea\xd9\x6c\x2f\x91\xc6\xc1\x09\xe5\x64\x9b\xa8\xf4\xd3\x86\xc0\x3a\x79\x10\xf8\xc2\xc9\xff\x43\x7b\x80\x3f\xa1\x5b\x20\x2e\xc0\xee\xa1\x06\xf5\xe1\xc8\x9b\xfe\xdb\xf4\x04\xc8\x1c\xd0\x5a\xd8\xda\x0d\xb6\x48\xfe\x25\x38\xf2\xb0\x7e\xf7\x69\x7f\xf3\xc6\xd5\x6c\x91\xc3\x2c\x6d\xa7\x04\xae\x2e\x77\x9d\x14\x5e\x75\x15\x56\x05\x35\x45\x2f\x4a\xd0\x62\xf0\xc2\xac\xc3\x3d\xaa\x26\x28\xe5\x79\x75\xad\xcd\x1f\x52\x24\x2d\x58\x85\x38\xf1\xae\x28\x59\x91\x69\x40\xfd\x99\xe7\x17\x8b\x4e\x48\x7f\xfd\x91\x7d\x4b\xab\x1f\x68\x92\x26\x93\x45\x06\x8f\xae\xb8\x02\xe6\x5c\xaa\x55\xd6\x40\x48\xbd\xc7\xd3\x7e\xf3\x7c\xb5\xd9\xf2\xc5\xd5\x2f\x8c\x3d\xc4\xf5\xda\x68\x02\x1c\xf5\x98\x6f\x73\x6f\xa7\x59\x82\x3e\x43\x9c\xb6\x8d\x96\xaf\x26\x5c\x1f\x29\xfe\xfa\xf5\xba\xcd\xdb\x8f\x38\xa7\x84\xc0\xee\x75\x05\x0d\x79\xbd\x0e\x54\xdf\x4d\x33\x1b\x9a\x9c\x43\x5b\xe1\x69\xa1\x19\x15\x06\x17\xbf\xe3\x9f\xfd\xf9\x9f\xa7\xd6\x61\x29\xd9\xea\xfa\xed\x24\x02\xa6\x6f\x9f\x9a\x60\xc8\xd6\x4c\xd6\x13\x04\xdb\xde\x06\xff\xa3\xc0\x47\x43\x1f\x05\x93\x94\xda\xbe\x34\x11\x54\xc8\xb2\xe1\x37\x6d\xc2\x0f\x81\xf9\x99\x82\xcb\x8a\x65\xf8\x7b\xa3\x09\x16\x6f\xef\x88\xec\xa4\x64\x95\x20\xab\x14\xef\xc1\x16\x2d\x62\x8e\xe6\x54\xb7\x31\xe7\xd0\xf0\xec\xd2\x58\x24\x32\x00\xd5\xa2\x7c\x33\xcd\x96\x4c\x12\xbd\x66\x3b\x53\x0e\x33\xf1\xdf\x5f\xd6\x91\xee\xa6\x12\x3c\x3b\xad\xd5\x4f\x6c\x62\xb3\x74\x88\x1e\x38\x64\x67\xc0\xf7\xc0\xd7\xaa\xd6\xb0\x6c\x7a\xdc\x34\x89\x15\xf2\x8e\xaa\x3d\xbd\xa3\x91\xc4\xb6\x18\x66\x09\x05\x91\xac\xd1\xa3\x6d\xd3\xbb\x81\xcf\x14\xe2\xb0\x41\x24\x8c\x76\x49\x38\x93\x77\x14\x4b\x57\xcf\x9a\x8e\x09\x7b\x16\x3c\x3b\x13\x0c\x7b\x7c\xa3\x6b\x93\x69\xba\x6c\x3b\xd3\x8d\xaf\x0b\xc1\xe8\x2d\xac\x62\xbe\x09\x3c\x63\xc3\xa7\x4a\x20\xed\xd3\x4a\x78\x70\x60\x81\xba\xd8\x62\xe9\x3a\xc0\x22\xb8\xa9\x3a\x34\x6e\x8e\x1e\x55\x29\xbe\xfe\x94\xee\x5f\xf6\x09\x48\xf0\x69\x62\xd4\x6f\x54\x72\x3d\x2f\xcc\xbe\x44\x4a\xd7\x53\xde\x8e\x40\x57\x51\x53\xd1\x22\x9d\xf2\x69\x65\x43\x1d\x58\x68\x9a\xce\x8a\x21\x64\xb3\xaa\xc5\xa2\xff\x8b\xaf\xeb\x3a\x9b\xa0\xfa\x86\x54\x3b\xd2\x74\x33\x63\x97\x30\xfa\x6f\xd1\x7b\xca\x7d\x8d\xaa\x4d\x10\xb2\x60\xfc\x41\xdf\xf2\xdc\x70\xe2\xb5\x77\xb5\xfa\xd4\xd9\x3a\x00\x53\x27\x8a\x6d\xbf\x6f\x94\x42\xec\xd9\xc0\xc3\x94\xab\x1d\x35\xa5\xcb\x6a\xfa\x03\x13\x2d\x25\x98\x7b\xa9\xf9\x28\x0c\xe8\x89\x40\x95\xe3\x57\xf3\xd7\x96\x23\x7b\x24\x0a\x5f\x6b\xa8\x76\xe0\x73\x38\x78\x24\xd9\xa7\x12\xb3\x03\x93\x34\x14\x75\xe7\x3f\x0b\x3c\xd0\xfa\x9f\xd5\x0d\x77\xde\x8b\x06\xab\x92\x20\x97\x94\x83\xce\x32\x88\xcf\xfe\x8d\x61\x14\x2e\xef\xf2\x58\xd1\xbd\x2d\x6f\x6e\x76\xe2\x3c\xc3\xac\xc2\x44\x20\x9a\x3a\xad\xdb\x40\x3f\x19\xf9\x8a\xdc\x59\xe7\x34\x14\xab\xcb\xac\x71\x27\x99\xeb\x86\x63\xe4\x3b\xae\xd4\x80\x3a\x11\xc9\x6a\x74\xa8\x75\x5a\x0e\x91\x89\x66\xfb\x17\xa4\x8f\x95\xdd\x5f\xe7\x57\xbb\x0e\x99\xbb\x95\x3d\xb1\xb0\xd0\x1c\x64\x69\x67\x18\x16\x92\x67\x66\xa9\x85\x40\x21\x2b\xaa\x0c\x04\x14\x35\x47\x71\xa1\x18\x1b\xcf\x2b\xcc\x8b\x6e\xa5\xfb\xd5\xbf\xcb\xa8\x49\x11\x55\xf5\xcd\xec\x1f\xd2\x76\xc5\xbe\xa8\x76\xa5\x2d\x2c\x1c\x6a\xe6\xc3\xa5\x25\x2b\x87\x0b\xd6\xe4\xe6\x48\xb9\x0b\x9b\x95\x78\x7e\x71\xb6\x99\x0f\x6c\x18\x99\xb8\x34\x9c\xd8\x44\x02\xc0\xf3\x1d\x50\x57\x54\x37\x78\xc7\xc6\x5a\xcf\x15\xf5\x45\x38\x78\x7c\x3d\x7e\x5c\x43\x68\x0a\x93\x14\x38\xa1\xb9\xc3\x73\xe4\x91\x82\x28\x13\x0b\x14\xb0\x34\x13\xd8\x3b\x3b\xc7\x4a\x44\xfc\xbf\xf9\x85\x5f\xa0\x5f\x72\x61\xae\x2b\xa4\xad\x8d\x7c\x3b\xe7\x11\x06\x86\xe0\xb8\x3f\x19\x28\xa6\xc1\x93\xde\xe3\x4c\x0d\x53\xbb\x39\x67\xcf\x25\x18\xf7\x28\x2d\xef\x5d\xe3\xed\x5d\x14\xd4\x57\xdd\x4f\x3b\x36\x76\x41\x85\x63\xbe\x70\x7d\x7d\x3f\xa9\x39\x95\x16\x9a\x47\x7a\x36\xb1\x24\x4b\x50\xfa\x8e\xdc\x42\x40\xc7\x9c\xb4\x13\xf8\xb2\xa3\x34\xfc\x4f\xa9\x2c\xde\x5d\xd5\x48\x7e\x55\xf3\x7a\x1c\x1b\x3d\x55\xa1\xac\x3e\xb0\xf0\x05\x72\x2b\x85\xaa\x8d\xce\x75\x11\x0e\xa2\x31\x71\x80\x82\xfd\xfb\xbd\x4e\xc8\xe2\xac\xb4\x1d\x1e\xd7\x2d\xda\x28\x40\x62\x7e\xde\x47\xd4\x2a\xc9\x4e\x3a\xe4\xe1\xd1\xff\x90\xf6\x15\x26\xff\xbd\x40\x95\xb9\x6f\x04\x3e\xb4\x03\x67\x0d\x0e\xe5\xff\x95\x80\xe0\x12\xb3\x97\x0b\x1c\xd9\xdb\xc6\x58\x91\x85\xcc\x90\xf8\x1f\xa0\x5c\x7f\x4c\xc3\x05\xcf\xe3\x9a\x6e\xf2\xf8\x70\xa4\x2c\x2e\x17\xe7\xf1\x1e\x0f\x8d\x55\xd3\xd6\x71\x4e\x36\x61\xbf\x9f\xad\x34\x53\x2c\x2c\x34\xfb\xa6\x63\x69\xd4\xb7\x8e\xd2\x93\x22\x71\xc4\xa8\x63\xa6\x1c\x99\xa4\x4d\x1b\xb6\xb1\x0e\x9c\x70\xa6\xe2\x8d\x98\xc8\x2f\xae\xa4\xab\x80\x39\x09\x91\x85\xdf\x2b\x47\xeb\x34\xd2\xda\xb6\x67\xe2\x6e\x43\x29\x40\x02\xc5\xc0\xd7\xc1\x53\x13\xdb\x8b\x1a\x2a\x00\x13\x16\xdc\x32\xfd\x98\xb0\x7b\xd7\xd9\xa2\x5e\x3a\xe0\xdc\x0d\xe2\x23\xf8\xbc\x7c\x5d\x81\x6b\x94\x71\xe0\x30\xe9\x0c\x19\x91\x82\x27\x87\x33\xc8\xd7\xa3\x87\xfd\x12\xfc\x32\xf2\x19\xae\x9e\x5c\x2e\x40\x8c\xfb\x7d\xac\x0d\x67\x80\x17\x16\x38\xde\xbe\xad\x09\x9c\x4e\x07\xb4\x4f\x84\xb7\x0d\x13\x07\x3b\xc9\x09\x54\x1c\x35\x9b\x88\x83\x50\xb7\xb8\xad\xd2\xf9\xa7\xb0\x50\x85\xf7\xb9\x5c\xe7\xc2\x0c\x49\x8b\xd6\x61\x9f\xca\xc9\x03\x62\xf7\xd1\xb1\x67\x50\xbd\x87\x29\x77\x44\xe5\x4e\x30\x78\x27\x56\x27\xfe\xea\x1f\x13\xc9\x38\xd6\xff\x95\xa0\xf1\xcc\x33\x9c\x7e\xdd\xa4\xcc\x06\xd3\x5d\x2b\xbe\xdb\xb7\x47\x0a\xa1\x7d\x6a\xd4\xf8\xda\x3f\xe0\x0f\xfc\x98\xf6\x02\x93\xca\x93\x09\x44\x52\xe5\xff\xa6\xf4\xa3\x53\x85\x3c\xb0\xe0\x5a\x99\x14\xbd\xf0\x6f\x22\x8b\x83\x80\xf2\x36\x18\x39\x24\xe1\x48\x7b\xda\xb5\x13\x1c\xfa\x87\x5f\x97\x3c\x4e\xd0\xf8\x95\x5f\x72\x10\x28\x41\x2a\x9a\x4e\x27\xb3\xb9\x63\x66\x14\xd9\x39\xd5\xc4\xfe\x7f\x3a\x5e\xff\x70\x98\x17\x69\x5f\xf0\x81\x9c\x33\xa4\xe9\x94\xfc\xe1\x5f\x01\x8e\x48\x6c\x58\x44\xe1\x10\x47\x21\xc6\xe6\x63\x0d\xdb\xd6\x7d\x9c\x69\x1f\xc8\xfe\x83\x5a\x94\xe6\x39\xb9\x51\x6d\xbf\x6c\x16\xf9\xc6\x3d\xa8\x19\x0c\x6c\x1c\x9b\x02\xe0\x20\xac\xd5\x19\x5a\xea\xd2\xbc\xa0\x1c\x02\x7c\x85\x84\x2d\x9e\x49\xd0\x3c\xdb\x7f\x76\x97\xf7\x70\xfe\x5f\x4d\x1e\xb2\x45\x5f\x00\x33\x7e\x5b\xe5\x1b\x4e\x42\x65\x81\xe9\x2e\x10\xd9\x1c\x55\xb0\x2d\x4a\x68\xea\xd4\xd4\x49\x95\x9a\x3a\x59\x69\xe1\xa3\x2a\x4b\x96\x92\x90\x3a\x1f\x73\xba\x3c\x20\x4a\xd5\xf2\xda\x83\xde\x6a\x1e\x85\x11\xfc\x00\x49\xeb\x1d\x55\x8d\x10\x47\xab\x08\x89\xe7\x0f\x35\xf3\xa8\xf0\xa8\x95\xba\x4e\x07\x7f\xac\x47\x79\x3e\x2c\xfd\x60\x6c\x4e\x6e\xa8\x98\x54\xeb\x56\xa3\xb4\x56\x71\x24\x17\x67\x9b\x1d\x1b\xc6\x86\xd9\x4b\xe7\x3c\x7d\xaf\xa7\xf2\xf5\xaf\x93\x45\x49\x18\x0d\x0c\x72\x45\xae\xac\xed\xec\xdd\x5d\xe5\x11\xfc\x51\xa0\x7a\x70\xd6\x6a\x49\x8b\x8a\x2c\x1a\xf0\x2a\x77\x8d\xff\x8e\xc8\xba\x2a\xb5\xbb\x7f\x7f\xf9\xdf\x65\xa1\x99\xc0\x90\x22\xd5\xc9\x14\xfd\x7c\xe3\x30\x1e\x45\x3a\xd8\x43\x16\xc8\x85\xc0\x6e\xf1\xfd\x75\x82\x64\xe1\x6c\xbd\x3a\x52\x1d\xa9\xd3\x63\x2f\x33\x07\xbe\x49\xd7\x24\xbb\x7f\x8e\x27\xf8\x7f\x43\x06\xd5\x31\xe3\x79\xf6\xf8\x2d\xc5\xf0\x97\xa4\x47\x90\xdd\x5a\x74\xca\x61\x8a\x94\xe6\x9b\x64\x49\xb0\x4f\x36\x82\xc7\x15\xd9\x7f\x77\x98\x9b\x98\xd2\x77\x3c\x92\xf4\x29\xee\xa8\xa1\xe3\x57\x68\x1f\x7c\x4e\x6c\x98\xc4\x36\xcf\x41\xc9\x86\xea\x28\xd3\x87\xc0\x04\x71\x77\x20\x40\x86\x60\xd8\x80\xed\x85\x2e\x05\xd7\xc5\x95\x90\xd0\x20\x8d\x63\xa6\x3c\x55\x1a\x82\x58\x4a\xa2\x6b\xe2\xfb\xfb\xf3\xd8\x76\xb3\x68\x79\xb9\xa1\x41\x8e\x97\x34\x25\xd2\x25\x27\xeb\x3c\x4c\x48\x35\xd6\xf3\xa9\xca\x00\x5f\x51\x29\x81\x2a\x5b\xed\xdc\x61\x4f\x24\xaa\x83\x59\x61\x45\xf4\xad\x4a\x9b\x9e\x69\x18\x70\xc8\x86\xc7\x83\x80\x45\x8f\xaf\x95\x15\x58\x1a\x0e\x06\xab\x1a\x35\x79\x43\x0b\x40\xdc\xa8\x16\x5b\x17\x0f\x36\x4d\xbe\x2c\xbd\x0a\x42\xf7\xa9\x20\x19\x97\x02\x55\x23\x8d\x0a\x0e\x94\xf0\x7d\xc7\x95\x4c\xf2\xf1\x0a\xe3\xd4\xc2\x42\x73\x39\x49\x8f\xc4\xb6\xb3\x64\x9d\x6f\x2f\xbd\xc1\x1e\x1c\xe2\xf5\xac\xa8\x75\x76\x46\x7b\xb1\x0d\x47\xbd\xfd\x98\x4a\xd8\x5e\xa7\x01\xc3\xbc\x9f\x9e\xec\xa2\x55\xd2\x97\x26\x66\x63\x05\x47\xf0\x13\xfc\x21\xdf\xa8\x1c\xf8\xd7\x0e\x1f\x9a\xe8\x9b\x3e\xa7\xfb\xa6\x75\x60\x3b\x18\x26\xcb\x8a\x91\xf5\x53\x65\x5f\x3f\x75\x53\x15\x13\x6d\x7c\xd1\x20\xb7\xc0\x51\xde\x2c\x78\x1a\x19\x0f\x42\x8d\xd3\x76\x7b\x95\x78\xe1\xca\x7f\x47\xa6\xf0\x86\xaa\xd1\xdd\xa8\x23\xc3\x08\x7b\x26\x8e\x6d\xb2\x84\xc5\x20\xe2\x55\x0a\xbf\xbe\xbe\xdd\x83\xff\x7b\xcd\xf9\xf9\x43\x0d\x8f\x94\xfa\x90\x5c\x08\x69\xf9\xf2\x2a\x6c\x85\xcd\xda\x26\x59\xde\xe5\x7d\xea\x47\x09\xb6\x83\xe3\xe7\x2c\x4c\xcb\x04\x9e\x4e\x40\xe6\x9a\x23\x19\x56\x94\x19\x46\x5c\x90\xd4\x59\x95\xd6\x2e\x60\x4d\x20\x6e\xc6\xd7\x0a\xd9\xd3\xb5\x1d\x9b\x81\x28\x5a\x09\xae\x9d\xd0\xe0\xa9\x13\xc1\x3e\x65\x62\x96\x22\x3b\xa5\xe8\x5b\x6f\x93\xe7\xa3\x32\xc4\x2f\xb9\xfe\x09\xbf\x8a\x53\x1b\x76\x68\xfb\x49\xdf\x92\x97\x5f\x62\x09\x34\xe9\x50\xae\xa9\x6e\x9b\xbc\x6d\xf3\x22\xcd\xa7\xbd\x81\xff\x19\x7d\x01\x72\xa8\xb7\x46\x8a\x8d\xfd\x18\xad\x5f\x64\x1b\x1a\xad\x1a\x5e\xe5\xbe\x89\x48\x94\x48\xd4\x20\x30\xd4\x3f\xd4\x55\xbe\x1f\x56\x72\x4d\xa5\xb3\x9d\x17\x69\x66\xa1\xda\x84\x97\x20\x04\x33\x4f\xc1\x49\xcc\x8e\xe4\xaa\xbc\x08\xe6\x77\x55\x27\x3a\xf7\x23\xc1\xf2\x7f\x5c\x5f\x77\x2a\xdd\x1c\xae\xab\xba\xa1\x5a\x9c\xe5\x1e\xa6\xf7\x46\x3e\xad\x73\xb5\x8e\xcf\xa6\xb3\x9a\x98\x7e\x14\xf2\xbc\x33\xb1\x94\x82\xa3\x5c\x57\x85\x9e\xce\x30\x01\x60\xe4\x39\xaf\xe8\xeb\xf8\xc2\xee\x2b\x95\x83\x99\xb1\xdb\x68\x51\x17\xa2\x81\x4e\x7e\x9f\x11\xa8\x4c\x73\xa5\x20\x1b\x9e\xcd\xaf\xf3\x8c\x89\x2d\xf7\xaf\x4c\xf0\x36\x48\x08\xed\x53\x9e\xdf\x18\xda\xa1\x85\xaa\x83\x34\x02\x79\x89\x49\x2f\xfb\x57\xb0\xec\x1f\x5c\x1c\x21\xba\xd3\xac\x77\x35\xfa\xa4\x6d\x1b\xa6\x7d\xcb\x07\xbf\x8b\xb0\xca\xd5\x2a\x11\x96\x37\x4f\x73\x5f\x5b\xdc\x35\x91\x08\xf2\x4d\x05\x67\x95\xff\xc5\xbd\x22\x88\x3d\x50\xc0\x16\xd2\x08\xcf\x83\x74\x4d\xe1\x7c\x06\x36\x8b\xfb\x26\x61\xd3\xe7\x32\xdb\xe5\x2f\xf1\x8d\xea\x5b\x0c\x57\xc3\x38\x0a\x4d\x8c\x4e\x0c\xd1\x82\xa5\xc8\x49\x14\x63\xf7\x29\x45\x87\x28\xcd\x30\x1e\xf8\xa6\x07\xaa\xef\xef\x41\x85\xc1\xa5\xf4\x13\xa3\x24\xb4\x09\xf8\x46\x14\xe7\xab\x5f\x60\x6b\x23\xdf\x59\x3b\x48\xf3\xa2\x6f\xb2\x65\xca\xc9\x8b\x50\x1c\x23\xc6\x59\x94\x09\x85\x33\x01\x79\xd7\x09\x70\x00\x51\x6d\x07\x8a\xd4\xdc\xb9\xd9\x7e\x27\x9e\x0c\x9e\x54\xc9\xe8\x7c\x60\x93\x8e\xed\xec\x52\x15\x73\x46\xa8\x48\xdf\xad\x3f\xa2\x80\xa0\x97\x6e\x3f\xa5\x46\x85\x84\xa1\x48\xd9\x3f\xad\xa5\x91\x4c\xc6\xb4\x63\x98\x12\x56\x08\xd3\x71\x2c\x38\xa4\x44\x5d\xb8\xe6\x74\x70\x02\x0a\x0d\xbf\x2d\xae\x62\x65\x08\x2e\xad\xa6\x07\x2a\x2f\xec\x80\xb7\x29\xb3\xf0\xd1\xe6\x11\x46\x3e\x5f\x42\xeb\xa5\x29\x3b\x0a\x02\x05\xa0\xaf\x96\x42\xbb\x02\x61\xa7\xab\xb1\x59\xb6\xc8\x3a\x0a\xbd\xa6\x6e\x49\x38\xae\x07\xee\x46\x25\x85\xf8\x22\xe9\x47\x98\x24\xef\xa6\x59\x9f\xe7\x87\xd9\xb7\x82\x09\x2a\xae\x9a\x5e\x1e\xd3\xed\x9a\x88\xab\xdf\xe2\xf7\x7b\x3f\x62\xbd\xb2\xfe\x16\x16\x9a\xb1\x49\x96\x86\x51\xde\x93\xd0\x01\x8d\xbb\x1b\x9a\x6f\x67\x43\xc1\xef\x96\xd2\x6c\x99\x9d\x2c\x78\x70\xe7\x74\xac\x78\x4e\x6d\xde\xd7\x5e\x33\x3a\xb1\x7c\x5e\x25\x96\xcf\x2b\x28\x46\x9a\x99\xf2\x44\xa7\xbc\x06\x60\x38\xc7\x46\x8a\x62\xee\x98\xda\x89\xb6\xdf\x2e\x17\x6e\xae\xfa\xa7\xce\xe8\x16\xbc\x33\xc1\x53\xfe\x44\x8f\xfa\x51\xc7\x14\xae\x2c\x81\xc3\x1b\x25\x55\x57\x1c\x72\x85\xd3\xb7\xeb\x78\xe8\x63\x33\x70\x7c\x4c\x4c\x10\xae\x89\xf6\xab\x92\xd5\x0b\x0b\xcd\x25\x3a\xd1\xa6\x14\xd7\x07\x8a\x64\xd2\xa9\xae\x14\x29\xce\xd6\x82\x17\x86\xcb\xb0\x03\xf0\xcf\x99\x4f\x80\x6f\x2a\xd3\xf7\xc2\x2c\xd5\x7a\x7a\xa6\xdc\x9b\x54\x2e\x62\x8b\xc0\x78\x58\x25\xf3\xec\x40\x39\xbe\x56\x9b\xc6\x51\xc8\xb9\xd1\x97\x38\x99\xcc\x3b\x4e\x0a\xf2\x0d\x27\xe0\x7c\x5e\x85\x44\x69\xb7\x1b\x85\x36\x9f\xf1\x45\xf9\xb7\xc9\x0b\x40\xcd\x81\x9b\x49\xa5\x03\xbf\xdc\xf1\xf0\x4f\xae\x4f\xb2\x96\xd5\xb0\x0a\x87\x69\x5e\x18\xa4\xf6\xf8\x9c\xa5\x03\x5c\xce\x5c\x6f\xbf\x63\x1b\x12\xfb\x1a\x39\x9a\x4c\x87\x38\xf2\xfd\x9b\xc7\xea\x5a\x17\x97\xe2\xf4\x88\x3b\xab\x18\x0e\x49\x2f\x28\xd0\x48\x17\x70\xa0\x13\x79\x4a\x45\x35\x48\x19\x4f\x28\x68\x8b\x7c\x98\xaf\x15\xd1\x9e\x0d\x4d\x62\x3a\x06\x14\x38\xc2\xfe\x89\xbd\xcf\x22\x7c\x18\x60\x74\x15\xde\xd4\xea\xa4\x17\x2a\x50\xdb\xf9\x79\x8a\x23\x09\x7f\x4d\x6b\x42\xd8\xb7\x14\x07\xe5\x4f\x54\x84\x52\x98\x65\xbb\xd7\x97\xda\x40\xff\xca\xe4\xa9\x23\x2f\xf1\xca\xf0\x60\xf8\x6f\x57\x08\x6b\x8d\x54\xcc\x59\x0d\x8d\xff\x2d\x4a\xbc\xa1\x6e\xf3\x29\x4e\x3b\xd5\x57\xb6\xc0\xd9\x36\x82\xeb\x51\x73\xfb\x81\x05\xc7\x8e\x43\x6f\x08\x7b\x70\x47\xd3\x98\x1e\x9f\xd4\x2d\xb5\xc5\xbe\xc6\xfe\xfd\x9c\x5b\xf8\x64\xa4\x0e\xd4\xb7\xb1\xcd\xa4\xf3\xc3\xdb\xe3\xa9\xb1\x3a\x83\xdf\xc6\xb2\x46\x6e\xf0\xb4\x92\xb4\x02\xdb\xb6\xf0\xa2\x4c\x64\x05\xb0\x2d\x18\x8a\x8b\xbc\xa6\xc2\xe5\x3e\x27\x85\x72\x0c\x04\xaa\x02\x8f\xb4\x7c\x56\x6e\x57\x6b\xe2\x0d\xfa\xf9\xd3\xf4\x29\x58\xaa\x0d\xd5\x02\xa8\x7d\xbd\x0b\x5a\x6d\xe9\x1c\x3d\x9b\x50\x49\x60\x65\x20\xe9\xf0\x08\x74\x0c\x04\x22\xef\xe5\x10\x79\x68\x26\x6c\x23\x5c\x52\x20\x00\x5c\xcb\xce\x8b\xae\x3f\xe8\x26\x5e\xcd\x79\xe2\x07\x7c\x13\x09\x0d\x87\x4b\x2e\x94\xa3\xe9\x9a\x62\x26\x48\x94\x5c\x1e\x8e\x96\xcb\x4b\x1e\xc7\x5f\x8e\x39\x03\xe0\xdc\x96\xe9\x99\x7e\x3f\x4d\x3a\xec\x4f\xb9\xee\xc6\x05\x27\x90\x79\xae\xd2\x5c\x52\x7a\xf2\x1d\x26\xca\x47\xa6\x72\x73\x02\xba\x4d\x4f\x03\x3b\xb4\x19\xa8\xe3\xf9\xac\x8b\x98\xe3\xd2\xba\xcf\x78\xc6\x97\xff\xf1\xf1\xb1\x52\x53\x84\xf1\x82\xbb\xff\x78\x4b\x5b\x54\x3c\xa4\xe4\x78\x6b\xe4\x69\xc2\x94\x89\x1d\x45\x8f\xa5\xe1\xa8\x93\xab\x62\x4f\x14\x2c\x14\xd6\xf4\x71\xd6\x39\xb6\x20\x47\xc6\x57\x8b\xa6\x2b\x32\x33\x18\xc8\xd9\xe2\x78\xa0\x1c\x42\xa8\xea\xdf\xcc\x1d\x6e\x96\x3e\xd2\x52\x66\x06\xbd\x86\x47\x6b\x02\xfc\xc3\xd7\x3e\xc3\x97\x66\x45\x66\xc8\xb4\xfb\xd8\xf8\x9a\xe2\x1a\x7d\x7f\xa4\x70\x42\x17\x15\x1c\xa3\xf4\x75\x99\xc0\x4b\xd7\x4b\xb9\xf9\x4d\xa9\x17\x1c\x9f\xa8\x9d\x6e\x3f\x97\xf6\xef\x6f\x0e\x13\xfb\xea\x40\x51\x3a\x38\xed\x27\xd7\xe2\x7f\xa2\x3c\x02\xc4\xaf\xed\x99\xac\x6f\x42\x3b\x2c\x88\x9f\x90\x1e\x1b\x45\xda\x37\x89\x88\xe1\x98\xca\x76\x9d\x77\xf1\xc7\x60\x98\x44\x4e\x2c\x4b\xa4\xb1\x1b\x4a\x32\x7b\x1b\x6a\xfa\x20\x69\xd0\x3e\x47\xfe\x21\x0e\x67\x38\x25\x7c\xad\x49\x88\x86\xed\xbc\x88\x8a\x61\x61\x49\xd6\xb0\x4e\x27\x7b\xfb\x0c\x31\xbc\xc3\x16\xdb\x38\x5e\xef\xab\x71\xbf\x3f\x61\x01\xdb\xa6\xf3\x50\xe3\x57\x7e\x49\x54\x4f\x15\x48\xf2\x77\x46\x3e\x65\x71\x03\xc6\x48\xc8\x20\x3c\xc3\x14\xf3\xfa\x2b\x31\x66\x9f\x0a\xaa\x11\x42\x48\x07\x36\x69\x78\x8c\xeb\x71\x05\x1b\x3b\xae\x72\x86\x5e\x60\x0d\xf3\xe6\xd4\x2e\x9c\x70\xe7\x39\xaf\x65\x3d\xb0\x66\x99\xb2\xc8\x78\xec\xd7\x03\x55\x30\x3c\xad\xe4\x6b\x4f\x2b\x52\xf7\xd7\x9d\x26\x4a\x31\xe0\xc3\x1e\xe6\xf0\x4e\xe0\x4d\xe3\x9d\x3a\xd1\x01\x52\xa3\x9f\xf2\xc0\xbe\x2d\x95\x84\x5a\x1f\xe9\x82\x9d\x87\x2d\xe4\x83\x34\x33\x1d\x6e\x88\x67\x20\xa5\xe2\x33\xbb\xa8\xe2\x70\xb0\x6f\x96\xff\x26\xfa\x26\x5e\x7a\x74\xbd\xa6\xc5\x74\x8e\x72\xdf\xcb\x12\x42\xc1\xa6\x9e\xd0\x06\xf6\x84\xc2\x4f\x98\x78\xd8\x8f\x92\x61\x1f\xde\x28\x17\xba\x46\xdb\x51\x1f\x88\xf8\x3e\x70\x0a\x0a\x79\x69\x8b\x96\x99\x37\x96\x3e\xe9\x98\x13\x5d\x53\xff\xa5\x1a\xc1\x82\x97\x9a\x69\x82\x2a\x0d\x8e\x44\x66\x9c\x81\xa9\xbf\xae\x2a\x2b\x3b\xc7\xe5\xa0\x23\xbf\x30\xad\xe8\xa6\x9c\x34\xc7\x73\x4e\xb7\x5a\x83\x88\x3c\xfc\xd3\x74\xe2\x68\xa9\x27\x65\x14\x01\x10\x37\x16\xbc\x18\xb7\xa7\x72\x6b\x9b\xce\x1e\x58\x5f\xe6\xa0\x56\xc7\x0c\x4b\x9f\x72\xc2\x68\xec\x01\x47\x57\x51\xe5\xc4\xc1\x74\x1e\x47\x01\xdf\x8c\x14\x47\xf2\x05\xf2\x57\x24\x95\x41\x27\xae\x24\x9f\xb6\x0f\xcf\xfc\x3c\xe5\x66\x11\xcc\x21\x8d\xfc\x40\xa5\x94\x1f\x54\x75\x47\x9e\x3f\x54\x86\x49\x1d\x25\x37\xc6\x79\x71\xbe\xa9\xc4\x70\xe5\x0c\x64\x36\x2f\xcc\x30\x33\xcc\x4e\x8d\x23\xfb\x92\x3e\xbf\x2f\x05\x3f\xf7\x19\x85\x3d\xcf\xa0\x35\xad\x68\x11\x04\xb3\xe7\xea\xb2\x3e\x3a\x86\xaa\x88\x64\x28\xb7\xbf\xf1\xe2\x6c\x73\x98\x8b\x4b\x2b\x22\x06\x1e\x97\xf3\x53\x0d\x3e\xdc\x70\x41\xd4\xc0\x64\x45\x14\x46\x03\x92\x1c\x6f\x38\xe6\xf2\x77\x46\x4a\x7e\x9c\x3b\x6e\x31\x72\x53\xe3\x47\x75\x0f\xe7\xdf\xf0\x8d\x19\x57\x83\xc6\xd7\xfe\x81\xd3\x52\x28\x1f\x15\xa9\x82\x0f\xd8\x39\x86\xab\x7c\x03\xae\x25\x30\x0d\xb7\x48\xcf\xc8\x21\x25\x1d\xac\xf9\xca\x44\xa5\x58\x91\x7f\x70\xef\x39\x00\xf5\x0f\x83\xdb\x49\x98\x8f\x29\x50\x40\x34\xb4\x49\x69\x52\xee\xeb\xc0\xa2\x43\x3c\x77\x6a\xd4\x78\xe6\x19\x4e\x55\x43\x76\x18\xde\xe0\x6d\xdd\x2e\xfc\x7d\x0d\xf9\x3c\x46\xa4\x3f\x28\xd7\x1d\x87\x33\xe5\x8a\x9f\xa5\xcb\x86\xf3\xea\x81\xd6\xc8\x42\x6e\x0f\x99\xaa\xcd\xc0\x4b\xe6\xb2\x84\x1b\x42\x81\x33\xa8\x3c\x3b\x2c\xba\x6f\x1d\xbe\x86\x02\xb5\x8b\x2c\xf7\x4b\xbc\x3e\x35\xf6\x61\xf2\x4a\x64\xcb\x48\x07\xa9\x75\x8c\xc0\x1d\x45\x82\x7f\xa7\x6e\x79\x2c\x27\xf6\x08\x9a\x51\x11\xef\x81\x59\x16\xbe\x35\xf3\x6b\x72\xe3\xba\x22\x6f\x8e\x92\x3c\xca\x9d\x9c\xaf\x24\xc3\x7c\x98\x7f\xb9\x16\xef\x65\x8a\xc8\x26\x0e\xef\x25\x5a\xe7\x8a\xa9\xfb\x72\xa5\xdb\xa5\xf4\x7e\xb2\x74\x25\xca\xa3\x34\x61\x16\x5f\xe1\x5c\xf6\xf6\xfa\x6c\x3d\xb9\x49\x1c\x33\xe9\xa5\xb0\x28\x97\xd3\x2f\xf4\xca\xdb\xd3\x63\xae\xb0\x6e\xb3\xc2\x44\x49\xbc\x0a\x57\x44\x83\x6f\x71\x64\xde\xa7\x01\x15\x7e\x36\x9f\x1e\x29\xec\xab\x26\x7f\x08\xaf\xe6\x6a\xbe\xaa\x23\x86\x86\x58\xb4\xd3\xbc\x59\x60\x51\x36\xd7\x3e\x52\x2e\x64\x76\xb4\x38\x94\x17\xc9\x01\xed\x40\xac\x0e\xd0\x20\x20\x50\x7e\x4f\xfe\x01\xc8\xa7\x70\xb0\xd6\x01\x50\x4c\x98\xa5\x79\x3e\xe5\x17\xf0\x1f\x07\xbe\x43\x00\xb8\x59\xd1\x7b\xd6\x3f\xd9\x8f\x5e\x9d\xa2\x3d\x07\x47\x15\x62\x8d\x18\x06\x0d\x33\xbd\x58\x27\x8a\xc3\x6a\x98\xba\xe9\x62\x5d\xa5\x0a\x77\xb7\xfc\xbc\xee\x18\xfb\x21\x35\x51\x66\x3b\xd3\xca\xee\xdf\xa0\x83\x59\xfa\xb7\x54\x2f\x17\xc6\x8d\xff\x48\x51\x11\x89\x0c\x27\xcb\x79\xd7\xb1\x8b\x7d\x16\xe7\x7f\x91\x45\x49\xba\x62\x94\x44\x05\xf3\xc8\xf2\x8d\xf3\x45\x4b\xbf\x29\x4a\x42\xe0\x30\xb4\xf2\x97\xf4\xc0\x3f\xea\xab\x73\xd6\xee\xa3\x75\xe0\x24\x22\x4a\x63\x81\xc9\x62\x04\x3f\xe6\xfe\xfd\x09\xcd\x65\xdd\xc5\x87\x36\x57\xf9\x7c\xf9\x93\x08\xfc\x6e\xd3\xc4\xc1\xa1\xbc\x1a\x28\x92\xac\xa3\x23\x45\x1e\x02\x8e\x7b\x2d\x4e\x02\xd3\x38\x85\xae\x35\x96\xd8\xa7\xd5\x0e\x6b\x7a\xa7\x26\x71\x78\xb0\x99\x87\x99\xe9\x83\xa7\x79\x02\x29\xe8\x39\x2a\x4f\xaa\x9a\x64\xc7\x1a\x1c\xa0\x42\x3c\x4d\x43\x20\xcc\xd3\x35\xd0\xd8\xbe\x29\x2c\x44\xbc\x17\x84\x86\x1b\xfd\x97\x7c\x5d\x51\x66\x9e\x9f\x3f\xd4\x34\x5f\x21\xeb\x80\x25\x7d\x7e\xb4\xf3\x2b\x72\xa9\x9c\xfb\x7e\x18\x9b\xe1\x52\x2f\x8e\x12\x55\xd1\xe4\xe1\x15\xf8\x48\x15\x6b\x7c\xb0\x59\x18\xef\x86\x61\x54\x7f\x43\x15\x21\x7e\x43\xe1\xcb\x1d\x0f\xcc\x04\x9d\xdd\x48\x71\x03\xaf\x29\x2a\xe7\x7e\x14\xc7\xcc\xae\x02\x93\x01\x07\x0d\xa7\xd2\x51\x05\xd8\xe6\x6c\xa0\x54\xde\x6a\xea\x4e\x71\x3a\xc8\xa3\x8e\xc4\x5c\xc0\x3b\x4e\x91\x33\xc5\xd7\xad\xaa\x45\x3e\xd8\xa4\x0c\x6c\x26\xb9\x77\x11\x1c\xac\x5a\x24\x78\xb5\x17\xea\x7a\x05\x26\x74\x0a\xe6\x7c\xc3\x41\xf9\x18\x92\x54\xa9\xd3\xe2\x28\xa3\x12\x79\x5c\xcc\xd4\xa6\x16\xa5\xd9\x74\x88\x03\x9b\x84\xe9\x30\x33\x4b\xc4\x0c\x4b\x4b\x02\xa7\xfe\x6d\xa5\xf4\x7c\x5b\x79\xf3\x7d\x4b\x8e\xd7\xdc\x61\x4e\xaf\xec\x44\xbf\x3b\xdf\xa8\xa6\x90\x5f\xf8\x85\xff\xa2\xd1\x50\x4a\xe2\xde\x1f\xd6\xcd\x62\x7f\x7f\x61\x4e\xa5\x1a\x76\xed\x21\x80\x1b\x32\x65\xec\xb9\x0a\x5f\x37\x06\x51\xa8\x90\x1b\xfb\xf7\x73\xb2\xef\x0b\x2d\x5f\xc6\x71\x2f\x03\xde\x64\x49\xbf\xf9\x68\xe0\xec\x24\x23\x4d\xd1\x7b\x4c\x77\x6b\x9c\xf7\xfa\xff\xbf\xf9\x7b\x13\x62\x8d\xa3\x09\xe5\x44\x4f\x58\x7b\x8a\xbc\x63\x4c\xc4\x5b\xea\x04\xe4\xe6\x6a\xbc\xc8\x77\x11\xbe\x09\x51\xa6\xd2\x21\x38\x3f\xf2\x2a\x32\xeb\x23\xcf\xcc\x79\x5a\xc3\x92\x40\x3c\x8d\x38\xf5\x87\xf4\x2e\x08\x4d\x77\x8d\x9f\x52\x51\x50\x6c\x97\x5c\x8d\x5b\xd4\x38\xd0\x90\xcb\xd7\x1a\x7d\x9f\xa5\xc4\xc5\x9f\x66\x04\x8a\x59\x70\x71\x8a\xe7\x43\xc0\xd3\xf0\x35\x5e\x06\x27\x08\x83\x57\x25\xd5\xa7\xf8\x03\xca\xa0\x75\xca\xd7\x08\xd7\x15\xc7\xf8\xd9\x91\xd7\xca\xbc\x3b\x81\x39\xb5\xed\xd5\x5d\x3e\x6d\x70\x0b\xa6\x15\x13\xfb\x3f\x07\xde\xe4\x3f\x04\x24\xbe\x74\xe2\x96\x03\xc2\x7f\xa4\xa5\xda\x4f\x3a\xe6\x46\x93\x85\xbd\xa9\x0a\x3b\x8a\xa0\x9f\xe9\x0d\x70\xd0\x5e\x53\xa2\x03\x61\x6c\xb2\x28\xb1\x65\x80\x40\xcb\x07\xa0\xcf\x9b\x0a\x00\x7a\x73\x22\xcf\xd0\xb1\x9d\x2f\xc1\x89\x80\x03\x0f\xe8\x10\x76\xc2\xd3\x2d\xdf\xfc\xfd\x54\xab\xf1\xc2\xec\xd6\x31\x85\x1b\xbf\x88\x86\x68\x9c\x46\xcc\x90\x8a\xb5\xc2\x7e\xbf\x53\xd5\x2f\xf7\x16\x86\x00\xb2\x0f\xa8\x43\xfc\xb5\x31\x1d\x06\xae\x49\xc7\xe5\x34\xaf\x06\x8a\x3d\xe1\x2e\x70\xa4\x38\xcd\xb6\x34\xf7\xe5\x83\x91\xe2\x98\x7c\x0c\x2e\x3d\x66\xed\x4a\xe0\x0f\x3a\x26\xe7\x43\xa4\xfb\x80\xc4\xcd\x38\x53\x34\x52\x4a\xcf\xf7\xcb\x2d\xb0\x75\x1b\x81\xb0\xc4\x1b\x65\x28\x21\xd4\x20\xd8\x61\x52\x35\xab\x92\xf7\xbd\xd4\x1c\x64\x51\x07\x99\x41\x47\xfa\xa9\x88\x3e\xeb\x24\x17\xba\x51\x62\x12\xa7\x3c\x01\x2c\xdf\xa6\xc6\x8d\x6f\x6a\x52\x51\xdb\x1e\x16\x33\x2a\xf9\xc6\x36\x58\x3a\xeb\xcb\xaf\x90\xf6\xa4\x72\xd6\x38\x55\xaa\x38\xa2\xd6\x14\x5b\x5f\x6c\x0d\x55\xa2\xca\x6f\xc0\x8a\x3e\xaf\x9a\x88\x80\x99\x60\x0e\x43\x17\xce\xe7\x61\x16\xb5\xdb\x31\x2b\x17\x0a\xfb\xc0\xc6\x48\xa9\xb7\x6f\x28\xbd\x82\x30\x36\x7d\x90\x7a\x2d\x1e\xe4\x0c\xf9\x37\xe9\x7b\xf9\x5a\x41\x0e\x6d\x9e\x93\x2a\x9a\x52\xb2\x60\xc0\x1e\xdf\xd4\x11\xf2\xf7\xd3\x0c\x24\xab\x5b\xfc\x08\x92\xeb\x51\x4c\x3f\x4f\xb7\x3c\xc0\xe8\x36\x16\x02\xcc\xdf\xed\x0a\x6a\x76\xee\x70\x33\x31\x79\xc7\x7c\xe3\x57\xff\x2e\x24\x3b\x26\x04\x41\xb8\xfe\x2f\x76\xb1\x9a\xef\x39\xd8\x1c\xd8\x8e\x89\xe5\x88\x43\x08\xf8\xeb\x23\x55\xed\xfa\x75\x45\x76\xca\x5d\x20\xc5\x2a\x26\x54\x34\x85\xe9\x35\x10\xcd\xbf\xaf\x84\x61\xa1\x46\x82\xe8\xef\xbb\xa8\x99\xb0\x57\x5e\x09\xd6\xbe\xda\x24\xb2\xe8\xe9\xf2\x64\x41\x2e\xf2\x61\xb8\x6d\xd2\x6b\xad\x92\xe5\xf7\x91\xe7\x95\xfc\xf0\xe7\x14\xed\x4e\x98\x66\x83\x34\x03\x36\x70\xc1\xf7\x0e\x29\xb6\x9d\xf5\xc0\x23\x13\x97\x4c\x96\xb0\x88\x37\x7e\xe6\xaa\xe2\x16\xbd\xaa\x8a\x60\x59\x1a\x2e\xdb\xae\x0f\xba\x98\x12\x56\xc7\x3d\xeb\xa3\x87\xbd\xc2\x2e\xd2\x1b\x72\xe8\xd1\xa3\x3b\xc9\x28\xd7\xfa\x8f\x93\x45\x28\xab\xea\x30\x41\x71\xd4\x45\xb6\xfb\xa0\xeb\xb1\x55\x94\xc3\xe7\x34\x51\xe1\x5d\x65\x49\x85\x16\x36\xb2\xf9\x0c\x0d\xba\x93\xa0\x77\x7e\xea\x09\xac\x29\x57\xe7\xdc\xbf\x9f\x41\xe7\x5b\x81\xcf\x38\xbe\xaf\x33\x8e\x36\x1c\x66\x51\xb1\xba\xdb\xf7\x3d\xa3\xc8\xe6\xf8\x4a\xcb\x97\xc4\x77\x4c\x90\x8f\x81\xd4\x8d\xaf\xe9\x09\xa4\x98\xab\xfc\x46\x56\x1c\xe3\x9b\xc9\x06\x8a\x8e\xfd\xbc\x57\xf7\xba\xa3\x71\x63\x37\x61\x72\xf0\x34\x9c\xa9\x80\x87\xf2\x2e\x5e\x0f\xcb\xe5\x86\x16\xf7\xdb\x1c\x29\x47\x7e\x13\x16\x1e\xaf\xf0\x9f\x68\xb1\xc2\x5c\x6f\x20\x03\x23\x0e\x93\x66\x3b\xda\x82\x33\x82\x70\x8c\xf3\x1b\x02\xd2\xf2\xd8\xba\x46\xcb\xf3\xb6\x1c\xd5\x64\x3b\x17\x41\x00\xc9\xd2\xc4\x81\x97\xb0\xdf\x04\x14\x5f\xa4\xe0\xe8\xec\x40\x92\x16\x07\xae\x14\xb7\xca\x73\x80\x15\xf5\x94\x4f\xd1\x37\x45\xcf\x12\x47\x6a\x8e\x3e\x7e\xac\x8a\x93\xca\x05\xb9\x4c\x6b\x1b\xa9\xbd\xb7\x14\xb0\x63\x10\x9b\xa4\x34\xa9\x3e\x0b\x88\x7e\x2b\x16\x12\x1d\xd3\x18\xc3\x91\x78\x57\x05\x03\x51\x7f\xc0\xad\x00\xe5\x1f\x63\x38\xfe\x3d\x0d\x21\x5f\xab\x6e\x35\x9b\x74\xf6\x96\x4b\x0c\x61\xf8\x5f\xe2\xfc\x02\xc1\x44\xb3\xe5\x7d\x16\xb0\x40\x31\x67\xf8\x48\x55\x94\x9f\x1c\x7b\x4c\xf7\x97\x94\x2e\x01\x0b\xd0\xe3\x66\x1a\x4f\x2a\x0d\x16\x34\xcd\xf8\xae\xbd\x63\x4c\xa0\x8b\x00\x9d\xff\x72\x8e\xbc\x02\x01\x0a\x2a\xaa\xff\xd5\xa4\xe8\x59\x1a\xcd\xf2\x97\x15\xf6\xff\xa0\x57\x69\x3c\xb0\xe0\x80\x94\x12\x2e\x13\x86\x20\x32\x31\x21\x2e\x71\x3c\x7d\xa9\xe5\xb9\x15\x79\x63\xe0\x8c\x7c\x40\x8e\x2c\x8c\xe3\x09\x72\x64\x75\xce\x9f\xa9\x3d\x2b\x49\xdb\xfd\x73\xd0\xe2\x6e\x4c\x78\xa5\x8e\x3c\xeb\x87\x9a\x9c\x32\xb3\x44\x11\xdb\x50\xd6\xf9\x38\xcd\x10\x5f\xd7\xda\x9c\x4e\x16\x75\x0b\x14\x30\x1c\x75\x8a\xa7\x51\xa9\x20\x82\x49\x74\x2c\xcb\x6c\x3e\x48\x3d\xa3\x1a\x3c\x9b\xc6\x58\x15\x9f\xef\x8d\xfc\xb1\xf0\x78\xcb\x63\xb0\x12\xf3\x1a\x1d\x59\x96\x60\x79\xd2\x42\x4f\x3f\xcf\x37\x95\x20\xfd\xc0\x42\x33\x33\x83\xa8\xc3\x31\x93\x57\x54\x9e\x28\x9c\xd4\x64\xcd\x0a\xdb\x1f\x88\x64\x33\x33\xce\xab\x90\xb4\xde\x04\x0f\xb2\xf4\x55\x10\x18\x31\x3b\x13\x6d\x46\x61\x6a\xf2\x0a\x4c\x89\x25\xd9\x82\xc2\x30\xc6\x42\x98\xe4\x90\x51\x73\xc8\x13\xaf\x6d\xa1\xb6\x47\x11\x31\x65\x07\x16\xc3\x86\x6a\xe3\xba\x1f\x78\x49\xd7\xf3\xaa\x0d\x67\xc5\x24\xa4\xf6\xec\x7b\xd0\x98\x68\x8d\x6f\x46\xa2\xea\xd7\x89\xf2\x28\x09\xe3\xc8\x85\xa3\x48\x84\x22\x3f\xc2\xd7\x75\x0c\x04\x6d\x93\xdb\xd8\xe6\xf9\x94\x3f\x1c\x77\xb4\xc8\xc2\x3a\xd0\x9b\x7b\x97\xeb\x8a\x19\x2d\x2f\xd2\xb8\x78\xad\x6f\x98\x0c\xc4\x11\xe1\x78\xa0\x89\x4a\x59\xd8\x15\x9b\xad\x16\xbd\x28\x59\xda\x53\xae\x7f\x81\x83\x35\x1c\xcb\x33\x88\x91\x5d\x27\x7b\xb9\xd9\x61\xed\xa7\xe0\xa8\x0b\x2d\x54\xb9\x01\x70\x90\xbe\x07\xf3\xec\x52\xc9\x6e\x8b\x9d\x51\x74\x73\xd5\xa6\xeb\xb9\xc3\xcd\x41\xb4\xe4\x82\x70\x29\xcb\x78\xd3\x76\xbe\xb2\x13\x5f\x98\x2d\xfd\xae\x02\xed\x4d\x8e\xd7\x61\x71\xf6\x33\x79\x1d\x28\xb9\x34\xcc\x56\xa2\x15\x4b\xd5\x45\xac\xd4\x5b\x7c\xba\xe0\xac\x41\xff\x0d\xec\x3e\x53\x43\xc1\xeb\x3c\x5b\x93\x17\x6a\x76\x59\xa1\x82\xc1\xb2\x8a\xaa\xe1\x52\x25\xf5\xb7\x38\x7b\xc8\xfb\xed\xdc\xa3\xc7\xb4\x57\xf4\x9a\x42\x81\xb5\x3d\x49\x3d\x3f\xdf\xec\x44\x2b\x36\xcb\xa3\x6e\xc4\x81\x3d\x96\xe3\xdb\x1a\x59\xfa\x76\xf0\xb4\xa2\x32\x4f\xf2\xa8\x43\x10\xda\x5d\xaa\x7b\xee\xbc\x52\xf8\xbd\x47\xc1\x3a\x33\x54\x4e\x74\xe8\x29\x08\x32\xd3\x71\x31\xd6\xb0\x92\x67\x99\x3b\xdc\x3c\x62\xb2\xc4\x41\xe1\xa4\x4b\xbb\xe1\x98\x3d\xa6\x5b\x9e\xd9\x63\xb3\x32\x7f\x5f\x6d\xda\xa8\xe8\x59\x68\xd5\xb9\xee\x84\xfd\xfb\xb7\xae\x8f\x14\x17\xe7\x7b\x88\xac\x24\xa1\x57\x8e\x1a\xbc\x94\x3d\xc4\x98\x81\xcf\xb1\x08\xba\x24\x2e\x3d\xa2\x2b\xb4\x99\x35\x71\xae\x1a\xba\x27\x45\x0c\xb6\x5b\x9c\xfd\x73\xcd\x74\x98\x84\x0c\x52\x76\xdd\x7b\x1e\xee\xf0\x9b\x15\x38\x15\xfc\xc4\xa5\x9e\xc7\x04\x8a\x0b\xef\xf3\x2e\x6c\x50\xf1\x46\x1b\x95\x20\xe0\xab\x65\x24\xd3\xb5\x59\x36\x09\x0b\x04\xc5\x13\x5f\x57\x90\x2e\x65\xe4\x68\xf0\x9c\x58\xa1\x53\xe4\xf2\xf0\xf5\xd8\x7b\x8e\xdd\x34\x2d\xda\x26\x8e\x67\x7c\x9f\x3e\x4b\xf6\xea\x5e\x0a\x2c\xf9\x93\x81\xae\x31\xfc\x8e\x6e\xa2\xfb\x9d\x3a\x38\x46\x52\xbe\x78\x18\x0f\xdb\x9c\xac\xad\xb3\xea\xfb\x94\x6d\xb2\x06\xf4\x13\xa2\x23\x56\x3e\x12\x36\x1e\x24\x45\xa5\x0a\xa2\x79\x19\x87\xdd\xee\xb4\xe7\x46\x3b\x47\xc5\x31\xc7\xf9\xeb\x39\x94\xd1\xcc\xe7\xb8\x69\xbd\x94\x2f\x7a\xe6\x29\xcd\xe2\xb4\xa3\x5c\x9e\xef\x28\x3e\x85\x35\xce\x12\xc7\x28\x90\xed\x69\x29\x28\xf9\x5d\x9a\x0a\x1c\xdb\xb7\xd4\x11\xdf\xb1\xa1\xed\xb7\x6d\xb6\x8b\x9c\x4a\x84\xb2\x9c\xb8\x43\xa0\xf5\xbe\x42\xa6\xac\x21\x87\xed\xd2\xb6\xe5\xd8\x4a\x46\xa1\x7c\x22\x38\x4b\x3b\x5b\x9a\xca\x22\x59\x89\x3c\xd8\x85\xd5\x08\x02\x25\xcf\x7b\x69\xa2\xdb\x24\xc9\x85\x8f\x1e\xf8\x28\xb4\x3e\xf1\xf5\xf8\x31\x7f\x7a\x45\xb9\xcd\x72\x00\x72\x84\x81\x5a\x43\x89\x99\xe0\x41\x8a\x02\xaa\x56\xfc\xb3\xe0\x09\x87\x06\x12\xcc\x38\x1e\x0e\x65\x54\xce\xfc\xf1\x4d\xad\x4e\x72\x9e\xa6\x89\xf4\x40\xa0\xfc\x74\x27\xf0\xca\x77\x2c\x46\x00\x2f\xf2\xbc\x6a\x31\x89\xa3\x2e\x18\x34\x45\x5b\x4a\x35\x36\x2b\x04\x0d\x3f\x2d\xe7\x50\x95\x87\xfe\x4a\x3a\xcc\x12\x13\x47\x79\x19\xd1\x95\x51\x87\xd4\xa1\xfc\xb1\xf4\x6b\xe4\xc8\xa1\xc8\x78\xba\x56\xb5\xd2\x35\x39\x36\x3c\xaa\xe6\x82\x42\xa1\x5c\x98\x08\x9d\xba\xa6\x68\x28\xc9\xf0\x53\x4a\x26\xfc\x54\xf0\x39\x67\xa4\x86\x89\x19\x16\xbd\x34\x23\x6a\x87\xd2\xa8\xb1\x10\x00\x3d\x8d\x88\x02\x38\xb9\xd5\xcc\x74\xf2\x22\xb3\xb6\xe0\x4a\x27\xb2\x7a\xdc\x8a\xc5\x37\x95\xac\xc7\xfc\x7c\xb3\x67\x56\xb8\x99\x5c\x12\xe7\x1e\xd9\x7a\x4e\x75\x0b\x16\x3d\x9b\x66\xc8\x4a\xea\x96\x31\x05\xa7\x58\xf0\xec\x08\xce\xf8\xec\x24\xe3\x23\x4a\x4d\x8a\x15\xfb\x9c\x2a\x98\x11\x25\x45\x96\x26\x51\xb8\xbb\x1c\x3e\x39\x71\xe9\xc9\xf9\x86\x1c\x06\x11\xa5\x21\x6b\xca\x2a\xa6\xca\x3c\x30\xd9\x29\x62\x96\xb3\xc8\xf2\x29\x85\x1b\xe1\x9b\x3b\x5b\x39\x82\x17\x16\x0e\x35\xfb\x26\x19\x76\x0d\xe3\x7c\x49\xa8\x80\xb8\xbb\x36\x82\xcf\x7b\x0d\xcc\xcc\x24\x39\x29\x5a\x12\x77\xa2\x17\x9d\x5b\xd7\x7a\x76\xeb\xaa\xf4\x16\xa6\xcf\x3e\x5e\x4e\x9c\x74\x3f\x2a\xda\x76\x74\x2e\x62\xcd\x32\x5b\x2c\x8e\x29\x74\x91\xc3\x1e\xbf\x49\xe7\x9a\xab\xcc\xb8\xd4\xf3\xaf\x05\xba\x75\x97\x02\x81\xad\x73\x74\x74\xbb\xca\x4d\xb9\xbc\xa4\x13\x45\xb5\x06\xdc\xd2\x58\xd3\xab\x98\x35\x3c\x1d\xdb\x7e\x97\x41\xf1\xb9\x91\xf7\x55\x9e\xa9\x3b\x4c\x42\xd5\x49\x8b\x23\xe0\x4f\x02\xef\x73\xfe\x49\x0d\x74\xe9\x60\x33\x36\x4b\x4b\xae\x98\x85\x77\xd8\x41\x75\x22\xbe\xae\xd4\x89\xca\x0f\xd9\xb8\x63\x33\xb6\x5b\xc2\xf0\x59\x7e\x46\x18\x42\x95\x73\xdb\x33\x71\x9c\x1e\xb1\x19\xcd\xca\xd6\x4d\x9a\x8f\xad\x9b\xca\xfd\x35\x6d\x93\x74\xd2\x84\x1d\x25\xe4\xec\xaf\xa8\x6a\xfe\x15\xd5\x2c\xd8\xb6\x4b\x51\x52\xfa\x2f\xbb\xbc\x71\xe7\xd2\x03\xbc\xa4\xab\x4a\x01\xee\x06\xd6\x99\x13\x70\x28\x17\x02\x52\x22\x8c\x77\xe5\x1b\xd5\xee\xb4\x34\xb4\xd4\x89\x38\x77\xd8\xf5\x97\x94\x53\xcb\xd7\x13\x96\x22\xed\xac\xee\x6d\x38\xee\xbd\x7f\x8b\xf9\x12\xe3\xa6\x3a\x2e\xd1\x30\x85\xf4\xc3\x3e\x20\x68\xb9\x7b\x18\xcf\x8d\x61\xbe\x35\xf2\x2a\x5b\x5b\xbc\x84\xb0\x41\x76\x02\xa4\x0d\xcc\xc5\xef\x2a\xe9\xd5\x47\xc7\xaa\x53\xe2\xa8\xd2\x1c\x9f\xa2\x92\x94\x24\x42\x6b\xed\xb9\x81\x54\xa8\xfb\x08\x47\xd9\xb2\x8b\x9f\x50\x2a\xb9\x2b\x69\xbc\x62\x3b\xf0\x4a\x71\x86\x1f\x53\x24\xa1\x37\x94\xfc\xc3\x1a\x25\xb7\x84\x98\x5f\x39\x17\xac\x0c\x24\x28\x6e\x55\xfd\x7a\x75\x60\xb3\xc8\x26\xa1\x9d\xa1\xef\xc7\xd1\x8a\xe8\x19\x9e\xd7\x55\xcd\x5b\x74\x46\x45\x60\x68\xee\x42\x94\xf5\x4f\x6a\x3d\x3c\x49\xbf\xa1\xab\xc1\x71\x4a\xb9\xce\xaa\x37\x46\x4a\x21\xef\xba\xd6\x95\x8f\x87\xfd\x36\x6f\x09\x21\xa3\xe2\xac\x15\xdf\xb8\x3e\xd7\xc1\xb0\x1d\x47\x79\x8f\x22\x0a\x27\xb5\xe4\xa2\xbf\x6a\x5f\xc8\xfc\x7c\xf3\xb5\x34\x11\x14\x3f\xbc\x96\x3b\xb0\x3d\x7c\xa3\x48\x1a\xb2\x34\x5c\x9e\xda\x8e\x3e\x16\x05\x2e\x35\x5f\xe3\x40\xa3\xf5\x96\x7a\x05\x09\xe2\x63\x5d\x9d\xc4\x52\x74\xc6\xb0\x1c\x0a\xbc\xfe\xef\x53\x11\xc6\x41\xfa\x9c\xab\xc5\xaa\x68\xfc\x47\x23\x1f\x0e\x7c\x5b\x01\x7d\x59\x67\x40\x1a\xcd\xb7\xaf\xb1\x17\x0f\x36\x4d\x3f\x1d\x26\x92\x39\xc0\x89\xc8\xf0\x29\xbe\xa9\xb4\x7d\x90\x34\x8e\x0d\x01\x23\x15\xb1\x6d\x7a\x7a\x8c\x3a\xe4\x71\x51\x49\xfc\x68\xe4\xd7\xee\x78\xa2\xc4\xb5\x1c\x25\xc8\x24\x63\xa0\x76\x70\x1e\x0b\x8b\xe6\x38\x1f\x1c\x1a\x79\x55\x8d\x71\x7a\xd6\x74\x04\x22\x87\x59\x61\x81\x21\xb1\x47\xe5\x38\x48\x09\xb4\x0e\x35\x6e\x62\x68\x37\xc0\xc8\xa3\x8d\x8c\xaf\x27\x9e\xd5\x44\x9d\xcf\x29\x9c\xc5\x0e\x0a\x8f\xf8\x0c\xc6\x7a\x93\x0e\x39\xd5\x7d\xda\x18\xfb\x8c\xdf\x6e\x7e\x3b\x8c\xd6\x34\x88\xb3\x11\x28\xed\x68\x29\xa8\xd6\xee\x31\x45\x64\x4e\xd0\xce\x89\x8c\x7e\x9f\x92\x68\xc8\x1a\x7d\x8f\x4e\x37\x7c\xf1\xdb\x81\xd2\x2a\xff\xa6\xea\xec\xbd\xab\x02\x9c\x99\x31\xad\x14\x05\x3b\x96\xbc\x69\xa3\xa5\xf6\x1c\x97\x3a\x30\x03\xbb\x60\xcd\xb0\xba\xae\x8f\xbc\x95\x7f\xbc\x55\xb7\x87\xdb\xc3\x3c\x4a\x6c\x2e\x10\x31\xe6\xb1\xd1\x34\x3c\xb5\x5a\xf8\x2b\x91\x2d\x12\xd3\xb7\xb9\x56\xf5\x7f\x23\x50\x3d\xae\x6f\xf8\x4a\x97\x89\x57\x4c\x27\xcd\x4c\x32\xe5\x7b\x84\xd1\x5f\xca\x6d\x2c\xf8\x9c\xf4\xb8\x09\x26\x32\x1d\x16\x03\x9b\x75\xd3\xac\x4f\xa4\x0a\x13\x2c\xe1\xd2\x14\xf3\x67\x8a\x0a\xb4\x74\x63\xa3\x64\x09\xf4\xf7\x58\x56\x37\x15\x07\x39\xd0\x0b\x30\x80\xf7\x47\x7a\xa5\x53\xd9\xab\xaa\x24\x45\xed\x06\xdd\xd8\xb2\x60\x17\x52\x4c\x9b\x4a\x4c\x6e\x53\xb7\x2c\xda\xcc\xee\xa3\x69\x80\x7b\xc1\xdc\xb9\x2e\x6f\xec\xb3\x5c\xe7\x55\x93\xcd\xdd\x40\x69\xd6\x5c\x0a\x94\x5d\xb8\x4e\x08\x49\xbe\x56\xb4\xb5\x7f\x4e\x47\x80\x64\x6e\xbd\x0c\xf9\x25\xac\x27\x85\x63\x14\x16\x35\x5e\xa7\x70\x13\x77\x8e\x55\x43\xd2\x71\x95\x14\xe8\x9b\x64\x39\x4a\xe0\x6a\x63\x22\x7e\xa4\xf8\x36\x7e\xe4\x68\x4b\xa9\x51\x8f\x8d\x0e\x0b\x0a\x6b\x2a\x11\xaa\xf8\xb8\x56\xd3\x30\x5d\x4a\xa2\xd7\x84\xe2\x09\x75\x53\x96\x5b\xe0\x1b\xd7\xd6\xd2\x8e\x53\xcf\x6f\xc1\xda\xd1\x23\x0f\xaa\xbe\xa1\x34\x98\xba\xcf\xa6\xcf\xb6\x1b\x7e\x97\x68\x08\xcf\x75\xa5\xc0\xee\x88\x64\xa7\x26\x08\x5d\x1a\x4e\xd4\x79\x0b\x26\x40\xfe\xa1\x76\xfe\x7b\xd6\xac\x20\xd5\xca\x8a\x58\xf4\x79\x51\xc7\xaa\x29\x18\x66\x26\x5c\x6e\xe8\xa6\x5c\xdf\xca\x7e\xca\x33\x01\x46\x09\x94\xb6\xb1\x57\x9e\x18\xfb\xfd\x7f\x51\x57\x80\xd1\xc3\x41\x86\xf4\x9b\x5f\x68\x79\x74\xf7\x30\xb7\x4f\xd0\x44\x6a\x2e\x1d\xd1\x58\xa0\xb9\x11\x98\x9e\x17\xca\xfd\x64\xd4\xf8\xc5\x17\xb7\x80\x08\x46\xbe\x92\x11\xde\xa8\x17\xdc\x0d\x26\x0e\x6b\x98\x03\xae\x68\x60\xca\x5c\xf7\xd7\xdc\x61\xf9\x02\x25\x3f\x3b\xd5\x2a\xdf\x81\x2b\x39\x8a\x60\x6b\x6a\xac\xaa\x83\x97\x46\x0a\x75\xbc\x67\x4c\x4b\x16\x1f\x3f\xa1\xfc\xec\xa2\xdc\x4c\xdd\x34\x23\x85\x77\x4f\x67\xe6\x03\x2b\xf8\x8c\xc2\xde\x44\xdf\x22\x0e\x64\xc3\x89\xdc\x5e\x54\x80\x31\x66\x21\x40\x02\x76\x0f\x52\xc6\xe2\x7e\xfa\xf6\xd8\x88\xc2\xb0\xe9\x72\xc8\x60\x1a\x2e\x21\x94\x90\x06\x7b\x8f\xb3\x01\xab\x8c\x74\xe1\x6f\x5f\x38\xd4\x5e\x19\x97\x71\x1d\xb9\x2d\x2e\xa1\xe9\xd2\xe2\x55\x58\xd7\xdc\xe1\xa6\xcd\x8b\xa8\x6f\x0a\x11\xb4\x50\x55\x62\xc1\xfb\x3d\x60\xb9\xb0\xea\x81\x3a\x30\x43\xb7\x2b\x61\x53\xaf\x05\x2a\x4f\x79\xad\x8e\x4f\xde\xe4\x84\xb0\x70\xf0\xce\xb5\xc0\x3b\xc8\x6b\xdb\x05\xd1\x0f\x2e\x1e\x6c\xbe\x30\xfb\x79\xd5\x13\xfd\x30\xf0\x26\xf0\xc3\xa6\xc7\x1e\xe5\xf8\x1d\x3a\xf1\x34\x63\x15\xec\xde\x26\xce\x58\x18\xe0\xf7\x27\xda\x06\xc6\x8a\x51\xf7\xd1\x96\x6a\xae\xfb\xae\x0e\xc5\x58\xa4\x5f\xb8\xfd\x1b\x5f\x9f\xf3\x20\x85\x32\x0c\x41\x95\xf5\x8a\x12\x79\xdf\xd9\x6a\xbc\x78\xd0\x8d\x01\x9d\xd0\x0e\x2e\xba\x38\xcb\x7e\xd2\x3d\x15\x5e\x5f\xa5\x79\xc5\xb9\x77\x05\x6e\x9a\x34\xd5\x95\xab\x42\x90\x1f\xb4\xe2\xd8\x33\x56\x36\xb4\x9d\xd9\x23\x36\x5b\x45\xab\x2c\x32\xf4\x48\x75\xf1\xb5\x33\x76\x59\xda\x6e\x13\xf0\xc3\x43\x4e\xf8\x0c\x94\xb2\xeb\x23\xce\xdc\x86\xcb\x33\xe5\xb3\xaa\x52\xbb\xf8\xf9\xf7\x68\x45\x89\xa2\x4d\x43\x49\xcf\xd0\x40\x03\xa9\x7c\x61\xe4\x63\xaf\x57\x86\x71\x34\x44\xde\x97\xc1\xa9\xaa\x0e\x54\x05\xd5\x94\xee\x41\x68\xb2\x4e\x94\x98\x58\x00\x8b\x28\xf8\xde\xd4\x31\xc3\x6f\x69\xcd\xe7\x1b\xb5\x05\x06\x6b\xf2\xc2\x66\x24\xc5\xbf\xb5\xa1\x9a\x21\x1e\xe0\xa5\xa5\x91\xef\x89\xc9\x1a\x0c\x91\xf4\xcc\xcf\x7b\xec\xd8\x01\xe1\x71\xdf\xd9\xf2\x62\x1c\x77\x75\xe2\x63\x3d\x50\x5a\x10\x9f\xaa\x2f\xcc\x6d\xdf\x96\xcf\xd0\xf0\x89\x87\x4f\x46\x3e\x71\xf6\x89\xa7\xe5\x8e\x4d\xd4\xcf\xf7\x4c\x30\x6e\xd3\x70\x0a\x66\x91\x96\xaa\xa0\x11\x15\xc3\x35\x36\x2a\x9e\xef\xaf\xd3\xb2\x07\x4a\xf1\x89\xb1\x52\xe0\x59\x9b\x48\x99\xd2\x06\x42\x49\x6d\x6f\xcb\x17\xa0\xd2\x01\x15\xb1\x49\xcd\xd5\xe1\x6b\x01\x19\xff\x2c\xa0\x0a\xe9\x8b\xf7\x39\x2f\x83\x67\x78\x87\x5e\x8f\xaf\xb5\x34\x78\x2f\x1d\xc6\x1d\x9b\x69\xbe\xd4\x4f\x15\x5f\xea\xa7\x9e\x2b\x4f\x5a\xec\x90\xc1\xa7\x2d\xf5\xad\x27\x7d\x7f\x67\xfa\x04\x65\x31\x60\x54\xab\x5d\xfd\x5f\x6d\xae\xd8\xc2\x66\x4c\x39\x8d\xc0\xf6\xba\xc2\x5a\x5c\x57\x16\x7f\x25\x0a\xa3\x74\x98\xc7\x4c\x2c\x87\x3f\x38\x15\xf8\x0f\x9e\xaa\x6b\xe0\xcf\x0b\x93\x4d\xf9\x5a\xdc\x94\x12\xee\xbc\xac\x33\x9e\xb7\xb5\xa4\x51\x68\xda\x39\x79\x93\x88\xf1\xdf\x54\xfc\x84\x6f\x2a\xda\x12\xca\x75\x45\xdd\x29\xd5\x6a\x75\x03\xfb\xde\x41\x33\x7f\xf1\x45\x46\x20\x34\x5a\x4f\x7a\x57\xd7\xe6\x03\xd2\x02\x6f\xf8\x10\x1b\x11\x2b\x5f\xbb\x8e\xbe\x76\x16\x99\xa4\x0c\xc5\x78\x4b\x00\x3a\xf7\xe4\xd8\x23\x1c\xbf\xa7\xe1\xef\x5f\x68\x79\x67\x93\x64\xfe\x14\x95\xe8\x0d\xa5\xa3\x79\x43\x51\xe9\x9b\x7e\xb9\xe6\x3b\xa6\xbf\x8b\x9e\x1c\x36\xe4\x16\xd6\x33\xdf\x20\xbb\xcf\x79\xec\x91\xcf\x4a\x31\x1e\x4e\xb0\xe5\xb4\x1f\xc4\xfc\x4d\xe0\x65\x8f\xf0\x93\x4c\x74\xec\x4b\x55\xf5\xb3\xa0\xfe\xdd\xcc\x24\xcb\x9c\xdd\xd2\x78\x12\xbe\x56\x24\x2f\xdd\xa8\x5b\xf4\x1a\x0a\x5f\x7a\x59\x09\x14\x5c\x56\x0c\xd7\x9d\x72\xb1\xf5\xa3\xc4\x72\x47\x08\x4e\x93\x4f\xb4\x2e\xff\xba\x4a\x4a\x6f\x05\x8a\x74\x7b\x4d\x79\x9a\x97\x27\x14\xf4\x74\xe6\xeb\x93\xba\xf2\xfd\x91\x34\xe9\xd8\x6c\x4a\x15\xe7\x8e\x2a\x16\x1a\x08\x12\x61\x66\xcf\x07\xbe\x30\xcf\x44\xcc\xd1\x4a\xc4\xa5\x5a\xf8\x4d\x8c\x16\xe1\x9b\x4a\x5e\x90\x40\x75\xc3\x22\x8a\x87\xa8\x80\xb3\x6a\x09\x1c\x20\x56\x73\xa2\x1f\x47\xda\xed\x1d\x97\x44\xe9\x9b\x72\xad\x31\x45\x08\xc2\x08\x2e\x09\xf0\x8d\x8a\xa2\x88\x33\x88\xf2\x7f\x8e\xf4\xe6\xb6\x4a\x71\x6e\x10\xf9\xae\xc3\x16\xa9\xfd\x5f\xee\x23\xbe\xc6\xa0\x4b\x8b\x5f\x4d\x0b\xd4\x37\x86\x51\x31\xa5\xf2\xbe\x53\x3a\x9c\xbd\x45\x5f\x2b\x92\xb2\xd5\x66\xf6\x66\x2c\xb9\x03\xb8\x02\x58\xfd\x4a\x30\x4f\xe0\xd3\x8d\x96\xec\x35\xd3\x26\xaf\x7c\x51\xc5\x85\x8b\x07\xe5\xba\x56\xd3\xdf\x14\x85\x4d\x3a\xc6\x37\x4f\x21\x0b\xc8\x74\x05\x7c\x53\x63\xf3\x32\x6b\x7c\x6d\x4a\x82\x4d\x7a\x26\xbe\x51\xb4\x62\x71\x19\x79\x83\xe6\xc7\xf1\x89\x7b\x7c\xa0\xa6\xd3\x61\x8d\x45\xbe\x51\x25\x86\xf5\xc0\x7b\xc2\xeb\x95\xb1\x7a\xf9\xe5\x66\x67\x50\x28\xa5\xab\xd7\xb5\xd2\xd5\xeb\x95\x9a\xeb\x8b\x73\x87\x9b\xe9\xc0\x66\xdc\x4d\xf1\x92\x47\x08\x95\xcb\x5b\x34\xa0\xb6\xcf\xe7\xe1\xe7\x9b\xfd\x61\xd8\x9b\xf2\xed\xf1\x60\x8f\x45\xdd\xe5\x84\x3a\x24\x2f\x2a\xd2\xfd\xde\xb0\xaf\x5a\xc5\x2e\x8f\x1a\x87\x9f\x77\x80\x50\xef\x92\x83\xbb\x17\xb3\x8d\x05\xf8\x01\xad\x0e\x47\xa8\xbd\x38\xcb\xe7\xec\xb1\x89\xc4\x4f\xb6\x0a\x45\x04\x49\x00\x96\x9f\x91\xfc\x9f\x3f\x0b\x4d\x7f\x60\x32\x93\xa4\x0d\x72\x0d\xa5\xe9\x8e\x86\x48\xa4\x63\x3f\xa7\xf0\xf4\xa5\x0f\x63\x58\x0f\xf2\x85\x59\xa6\x35\x78\x07\x7f\xcf\x37\x75\xb4\x31\xe5\x39\x9a\xa5\xfd\x28\x07\x97\x1e\xe0\x46\xe7\x55\x83\xff\xf9\xfa\xb2\x9a\xcb\x7d\xa8\xba\x34\x57\x4b\xf8\xa6\x32\x15\x2f\x1e\x6c\xc6\x69\xce\xed\xe4\x52\x13\x54\x9f\x58\xab\x24\xe3\xf6\xef\x6f\xe6\x3d\x1b\x77\xa7\xfc\x22\x99\x84\x5e\x28\x7c\xcb\xff\xe2\x20\x65\x1d\x3b\x30\x99\x5b\xe6\x8e\x92\xae\xfc\x53\xbe\xd1\x18\xfa\x34\x29\x6c\x52\x44\xa4\x52\xb1\xe8\xb5\xe6\x3c\xc6\xfa\xb2\x42\xfe\xf5\xa3\xb0\x67\x6c\xfc\x70\xf9\x97\x98\x84\x1f\x8d\x14\x13\xd6\xed\x91\x97\x8d\xbd\xc9\xf5\x59\xa4\xc4\x36\x69\xf3\xa0\x92\x38\x18\x29\x29\xf1\x35\x98\x7a\x27\xcc\x5c\x8e\x26\xc2\xb8\x47\x5b\x7e\x2d\x71\xb1\x10\x71\xea\xbd\x8a\x46\x72\xb9\x95\xa2\x7c\x90\xa5\xe4\x17\xa4\x89\x29\xac\xc6\x34\xbe\xa9\x8e\xce\x2b\x2a\x7b\x7f\xfe\xb3\xdb\x1e\x87\x59\x66\x93\x82\x0f\x41\xb8\x9a\xef\x8e\x94\x3f\xfc\x6e\x65\x2d\xb9\x8e\x65\xd3\x89\x57\xa7\x1a\xbf\x7c\xc8\xe1\xe9\x3d\xc0\xfc\x0e\x0c\x94\xb4\xae\x7b\x26\xa1\x7c\x40\x9d\xaa\x0d\xd5\xe2\x14\x78\x6b\x33\x21\xcc\xde\xb1\x26\x6e\xf8\x7e\x59\x06\xa4\x0a\x41\x48\x75\xad\x1e\x6a\xf6\x4d\x1c\x2d\x25\x26\x29\xa6\x94\x82\x1f\xd7\x45\x31\x10\x6f\x8f\x7c\x0e\xeb\xba\xf2\xb3\xfa\x84\x09\x36\x4a\x96\xe4\x82\x92\x25\xb9\xa0\xa4\xb1\x97\x6c\xbb\x47\x7e\x4f\xf9\x30\xc0\x0b\xbc\x4e\x87\x0e\x5f\x3b\x12\xdb\x30\x39\xc2\x36\x5b\x49\xf6\x1e\x74\xaa\x30\xda\xfe\x2e\x4f\x36\xd4\xc1\x09\xe1\x6b\x1d\x3d\x30\x83\xee\x94\x8f\x1e\xb8\x01\xd2\x51\xfa\x2a\x5d\x3c\xa5\x2b\x15\x31\xf0\xee\x25\x36\xd1\x80\xbe\x0a\x86\xb0\x9c\x35\x1c\xc0\xef\xaa\x28\xad\x4b\xc8\x57\xb2\x8d\x32\x8b\x7a\x4a\x55\xe5\x2f\xb3\x83\x18\x12\x88\xf4\x13\x4e\x01\x58\xc7\xb9\xaa\x0a\xd8\x59\x49\x43\xca\x2f\xa8\x9a\x62\xb0\x5d\x36\x09\x41\xf4\x5d\x27\x55\xb5\x92\xe6\x4b\x56\xa2\x3f\xe9\xf2\x57\x7e\xc4\xfd\x91\xd2\x92\xfc\xd0\x21\xfc\xfa\x69\x52\x2c\xa5\x71\xd7\x45\x0f\x0e\x46\xea\x32\x63\xb7\x55\xad\xe9\xb8\x92\x6a\x8f\xed\x52\x94\xc7\x64\x67\xa7\x7d\xb1\x1f\x29\x25\x3e\xf0\x03\xdf\xf7\x7c\x63\xe4\x23\xf9\xb7\x54\xf5\xb9\x63\x56\xd1\xf8\xc9\x7d\x2b\x08\x0c\x85\x5b\x97\x16\xa6\x44\x16\xe5\x8f\x38\x6c\x8f\xef\x08\xfd\x99\xae\x58\x9f\x47\x95\x07\x5e\x1d\xbb\x69\x88\xc2\xdf\x43\xd6\x16\xab\xe2\x9e\xaa\x44\x4c\x83\x40\x49\x1a\xf9\x3c\xa2\xf8\x9f\xc3\x9e\xb9\xf2\xde\x0b\xb3\xec\x4f\x4c\xb7\xaa\xc5\x79\x02\x7b\x86\xd6\x76\xa8\xcb\x9c\x3e\x28\xf4\x38\x4a\x61\xe8\xbc\xe2\x43\xe6\x58\x0a\x40\x16\xa7\xd7\xa5\xc4\xbb\x46\x7e\x15\x73\x67\xa8\x9c\x14\xde\x0a\xc7\x69\x9a\x5b\x39\x78\x5d\x69\xc7\xd1\x0e\x32\x0b\xa4\x20\x63\x9d\x1e\x5d\xd4\xe1\x7e\x96\x97\xd8\x15\x64\x6f\x9a\x6f\x2a\x1c\xa3\x2f\xcc\xce\x35\xbb\xe9\x30\xe1\x83\x44\xaa\xa3\xe5\x58\x49\xd9\xd4\xe3\x8a\x44\x2e\x87\x79\x2d\x38\x1f\xae\xd2\x6a\x27\x74\x0a\xf3\xcf\x31\x7d\x52\x8e\x2e\xbf\x12\x7e\xf8\xb7\x14\x77\xd4\x31\x72\x9f\xb0\xe6\x7f\x3a\x52\x0d\x54\xeb\x5a\xf2\x68\xbd\x72\x6a\x1e\x58\x68\x76\x4d\x28\xdd\xf8\x4a\x8a\x45\x12\xfb\xeb\x4a\x10\xac\x6f\xa2\xf8\x91\xf2\x77\x60\xad\x4f\xd2\x9e\xc3\x90\x5f\x27\x3f\x54\x0a\xb1\xbe\xa9\xec\x3f\x04\x13\x4d\xcb\x5e\xd3\xf5\xb8\xf2\x8d\xb9\xe5\x0a\x37\xac\x51\xc8\xca\xbc\x93\x32\xbd\x34\x2a\x92\xf4\x78\x4a\xe5\xe7\x93\x74\x98\x84\x54\x87\x2d\xff\x1c\xed\x8b\xe0\x00\xe3\xeb\x3a\xbe\x55\x52\x09\xa4\x6c\x8e\x63\x90\x06\xef\x0e\x82\x61\xee\xd9\x86\xb3\x75\x74\x22\x56\x3c\x92\xe4\x0f\x97\xef\x2b\x19\x13\x9f\xb6\x3f\x85\x3a\x08\x03\x61\x69\x80\x60\x30\xff\x0d\x62\x6e\x41\xc8\xd2\x0b\xe3\xab\xd1\x15\xe3\x1a\xab\x9d\x58\xe3\x71\xe4\xbf\x19\x4a\xaf\x30\x13\xeb\x0a\xdc\x6c\xa2\x6c\x77\x63\x7e\x7e\xeb\xba\x22\x0c\x78\x1a\xe8\x5d\xe7\xd5\x95\x3f\x05\x4b\x75\x8c\x26\x00\x68\xcb\xeb\x23\x55\xe4\x79\x0c\x86\xc0\x89\xa3\xba\x04\xf8\x75\xad\xd0\x95\x59\x9b\x44\x79\x8f\x72\x59\x68\xb1\xd8\xd1\x52\x2a\xc3\x67\x47\x8a\x2a\xe4\x9f\xaa\x7e\x41\xf6\xbd\x10\x96\x1e\xaf\xd1\x57\x3a\xd8\xcc\x43\xaa\xed\x4b\x8c\x02\x84\x69\xa3\xa5\xf4\x1a\xea\x24\x31\x9a\xed\x2c\x1d\x2e\xf5\xd8\x4d\x94\x4a\x4c\xf9\x8e\x52\xa2\x79\x4c\xe1\x7e\x2c\x49\xf1\xcd\xcf\x1f\x72\x68\x8e\x86\x53\x88\x5c\x53\x0e\xc6\x52\x66\xda\x6d\xe9\x82\x73\xec\xa4\xf3\xf3\x9c\x84\xd9\x41\x89\x23\x04\x41\xb7\xb4\x42\x69\x66\x88\xa2\xb6\x9c\x66\x96\x36\x08\x54\xc2\xed\x9c\xf2\x00\x6c\xbf\x6d\xb2\xa5\x94\x5f\x16\xf3\xc1\xa4\x94\x7c\x53\xa7\x8e\x52\x7a\x33\x54\x78\x44\xbd\xfa\x07\x18\x6e\x57\xa9\x5d\x90\x26\x98\x6b\x81\x1c\x5e\x45\x2f\xb3\xa6\xb0\x1e\xc5\x8b\xa1\xbc\xae\x4a\xe2\xbb\xe9\x6d\x58\xd2\xb5\x4e\x2d\xab\x97\xc6\x51\xc7\xa0\x72\xa4\x4f\x30\x39\xa9\xf6\xea\xf3\x1e\x25\x4b\xd7\xe8\xb8\x78\xd0\xb3\x2c\x94\xcf\xea\xe8\x17\x9c\xc3\xfc\xb1\x36\xfe\xc7\x5d\x4a\xa9\x88\xfa\xdc\x0b\x56\x37\x55\x3a\x3e\x8a\x32\xfb\x48\xc3\x69\x06\x9d\x42\xc0\x8e\xa4\x2c\x7c\x14\xb8\xde\x37\x09\x57\x05\x83\xfa\xc9\x48\x31\xbc\x33\x8d\x30\x76\x0e\x6f\x79\x24\x56\x76\xb6\xd0\xff\xca\x36\x0a\xa7\xa3\x02\x69\x4a\xc6\x9a\xbb\x43\xc5\x94\xd5\x91\x00\xe4\x51\xb2\xc4\xef\xc3\xf4\x7c\x30\xf0\xc2\xd5\xe7\x5d\xd6\x57\xd2\x65\x59\x43\x88\x21\x7f\x80\x35\xc4\x37\x0a\x31\x79\xc4\xda\x65\x56\xcc\x86\x89\x40\x42\x43\x72\x67\xd4\xee\xe4\x8e\x21\x8f\x4c\xc4\xeb\xc2\x90\xfc\x30\xf0\x84\x10\x37\x71\xca\xc0\x82\xef\x20\x26\x1b\xac\x26\x96\xb2\x75\x72\x60\x8e\x7e\xe4\x3d\xb5\xe4\xde\x55\xb0\x35\x3e\x71\x30\xd7\x1f\x80\x95\xc6\x89\x75\x56\xd0\x7c\xc0\x23\x6c\x51\x2d\x4e\x69\xda\x1f\x74\x01\x95\xdf\x60\xfd\x34\xe9\x98\xd5\x47\xca\x67\x16\x49\x04\x75\x32\xee\x1e\x7b\xe8\xf7\x5d\xd5\x49\xfe\xa3\x60\x22\xe5\xa7\x2c\x05\x82\x6e\x01\x2a\xd1\x8f\xf2\x01\x1a\x78\x44\xf2\x31\x24\x19\x71\x8c\x5c\x87\x11\xe7\x9b\x4a\x52\xf0\x85\xd9\x66\x37\x05\x84\x2d\xef\x45\x03\x24\xb1\xb9\x3d\x6c\xa2\x55\xac\x6a\xc9\x0e\x96\xae\xb9\x50\xfe\x8b\x8e\x80\x4f\x31\x5f\x52\x13\x5f\x0c\xb3\xe4\x11\x2f\x9c\xf6\xa1\xa6\x15\xa7\x5f\x41\x9a\x75\xc7\x58\x65\xa2\xae\xe0\x1c\x15\xcf\x9b\x46\x04\xa7\xcc\xb5\x40\xd1\x28\xfc\x36\x9c\x43\x97\x50\x5e\x9c\x75\xe8\x84\x72\x44\x44\x7b\x9b\x86\x4a\x3c\xa1\xc7\x14\x5c\x3a\x8f\x96\x92\x5d\x0d\x27\x76\x75\x32\x50\x6e\x1e\xa2\x5a\x7c\xc5\x19\xd2\xd5\x71\x12\x32\xce\x49\x3a\x4a\x3f\x23\x3a\x33\xca\xb2\xc4\x56\x78\x22\xf1\x0a\xb7\x75\x70\x78\xdb\xb9\x6d\x71\x94\x2c\x33\x00\x6d\x6b\x63\xa4\xc4\x4f\x7f\x8c\xb7\xc4\xaa\xff\x52\xab\xf1\xcc\x33\x52\x8a\x1b\xf9\x4e\xaf\x7d\x63\xd5\xf1\xb9\x5e\x89\x77\xe7\x0e\x37\xed\xab\x51\x4e\x19\x00\x42\x1a\xd3\x7e\x16\xad\x29\x9f\x77\x3d\xef\x6a\x5e\x99\x35\x31\xa9\x33\x38\x3f\xc1\xf1\x43\x9d\x52\x5c\x9f\xd3\xb4\x72\x29\x74\xf9\x83\x2f\xb5\x54\x5a\xee\x91\xb1\xd2\xb2\x8c\x06\x36\xc9\x81\xab\x46\xf6\xec\xb6\x12\x79\xde\xd1\xa2\x85\x89\xf3\xfb\x98\xcb\x6e\xf4\x0c\x49\xcb\x0f\x14\x31\xe5\x71\x45\x4c\x59\x6d\x51\x5b\x9c\x6d\x0e\x86\xb1\x6b\x57\x96\xbe\xc4\x29\xaf\xa8\xfe\xee\x67\xe7\x01\xb2\xa8\x88\x42\xe1\xcb\xe1\xa2\x1d\xe6\x49\x2a\x78\x8f\x2b\x57\x92\x50\x1a\x33\x3e\xd3\x71\x49\x11\x1f\x5c\x82\x95\x12\xf8\x86\x52\x1f\xe2\x6a\xb0\xe0\x95\xa5\xc2\x63\xe3\xd8\xe6\x7d\x9b\x61\xff\x60\xf5\x9d\xd5\x39\x88\xb3\x35\xbd\xd9\x2f\x35\xad\xc9\xe2\xc8\x66\xb0\xb7\x08\xab\xcf\x2a\xb1\x87\xb3\x5a\x68\x21\x33\x49\xd8\x8b\xa8\x23\xf3\x80\x78\xb7\x5b\x0a\x59\xb8\x15\x3c\xae\x91\xfd\xa1\xcd\x92\xdd\x7e\xee\xef\xc3\x28\x3a\x45\x38\xdf\x30\x82\x9e\x1c\x6c\xd3\xbd\x63\x1f\x03\x34\x5a\x13\xc9\x56\x55\xe4\x82\x3a\x32\xbe\xb7\xd1\xaa\xe9\x28\x32\x71\x7b\xf8\x8d\xa1\xcd\xbe\x31\xb4\xbc\x6b\x24\xb7\x43\xbf\xcb\x37\xaa\x0d\x83\x3c\xbb\x69\xfa\x09\xa1\x6d\x68\x78\x92\x63\xda\xb8\xf0\x39\x76\xb5\x94\x98\xc9\x69\x05\x51\xc9\xd3\xbe\xa5\x16\xf3\x19\x45\xc3\xb9\xae\xe4\x6b\xce\x51\x17\x34\xbc\xc6\x35\x95\xfa\x9a\x02\xa8\x07\x5e\xcc\x4f\x15\xa4\xb1\x48\x93\x7c\xda\x4b\xe1\xdc\x81\x69\x12\x4f\xd3\x63\xae\xee\x52\x5a\x56\x88\xd2\x14\x7f\x53\xcf\x0c\x57\xa2\x84\xd6\xa3\x83\x06\x5c\x57\xed\xd2\xd7\x3d\xa9\x75\x2f\xca\x96\x1d\xb0\x19\xee\xda\x31\xa5\xa1\x70\x4c\xcb\x20\xad\x44\xb1\x5d\x62\xb9\x63\x8e\xff\x47\x0a\xfd\x89\x0c\x0a\x36\xf6\xee\x96\x52\x50\x39\x53\xf1\x0c\xe6\xe7\x9b\xe0\xbf\xe1\x70\x18\xb1\x01\x98\x26\xf9\xba\x06\x92\xfb\x12\xc1\xb0\x25\x63\x29\x40\x6f\x9f\xee\xa9\xe2\x0c\xe7\xe7\x9b\xbd\x88\x45\x53\x94\x72\xbb\x27\x5e\x7c\x4c\xf5\xf0\x64\x69\xb2\xf4\xa8\xca\x84\xc0\x47\x10\xe8\x7f\x39\x92\x4c\x44\x8e\x43\x04\x05\xa5\x3b\x48\xac\xc1\xb4\xdd\x51\x75\x71\x16\xdc\x85\x5d\x62\xe7\x4c\x37\xc5\xc0\x30\x6c\x69\x21\xe2\x3b\x74\x06\x60\xe0\x6f\x22\x04\x12\xd8\x85\x8f\xa0\x33\x1b\x9a\xa4\x28\x0f\x05\x72\xd1\x90\xcd\x60\x6e\x66\xbe\xa9\x43\x8a\xc4\x5e\xbc\x40\xe5\x29\x0f\xb9\x3c\xa5\x67\x39\xe7\x36\x3e\x02\xa2\x6f\x94\xaf\x4d\x3d\x04\x95\x8c\x73\x37\x1d\xc6\x53\xde\x86\x21\x4a\x83\x1b\xc3\x2c\xd6\x42\x2c\xec\x5b\x55\xec\x52\x66\x97\x50\x24\x9e\xf2\xe5\x52\x2d\x09\xbc\xae\x11\xe2\xc7\x1c\xfc\x30\xb6\x4b\x11\x90\x35\xb4\x2f\xf0\x33\xa8\x22\xd0\xfc\xfc\x8b\xcf\x93\x2f\x8f\x13\xfb\x49\x60\x92\x3e\x4b\x52\x63\xff\xfe\xe6\x30\xf3\x60\x7e\x01\xd8\xf9\x7c\xef\x8e\x8a\xfa\xe6\x8b\x73\x87\xcb\xd0\xa8\x33\x74\x0d\x8e\x4e\x30\xc5\x0b\xfd\x2a\x10\x52\xde\x8b\x6c\xdc\xd9\x05\x03\x04\x97\x09\x24\x00\x30\x82\x37\x47\x1e\x4a\xc7\xf3\x8c\xe4\xfc\x35\xcc\x09\xdf\xc0\x54\xf2\xc7\xf5\x28\x96\x21\x54\x66\x72\xa1\x5f\xfd\xff\xd1\x2c\xca\xb2\xd5\x47\x68\xc1\x22\xd9\xc6\xfd\xef\xb0\xdc\x8f\x8f\x49\xec\x10\x5e\xff\xda\x48\xc3\xdc\x7c\x50\x7d\x8d\x3c\x5c\x47\x6a\xe3\x03\xdd\x2d\xcd\x81\xfd\x44\xcb\xc7\x29\x3f\xc1\xb3\xe0\xb0\xde\x4b\xa0\x32\x4c\xcd\xb5\x1a\x85\x9a\x66\x3f\x2d\xa2\xee\x84\xf4\xcb\x6d\xe5\x22\xdc\x9e\x2c\x55\x77\xf2\x47\x14\x0c\x8c\x1f\x87\x19\xdf\x10\xa7\x88\x5b\x42\xcf\x86\x95\x72\x86\xde\x0c\x21\xd0\x06\xc5\x66\x08\x66\xae\x63\xf3\x3a\x7e\xc1\x03\x42\xd3\x70\x66\xe4\x9b\x03\x38\x1b\x2f\x1e\x4e\x43\xd1\xd9\x28\x22\x82\xbf\xf3\xf7\x29\x37\x80\xd1\xe3\xdc\x80\x43\x2b\x3a\xfc\xee\x2e\x8a\x2e\x84\xb1\x43\x15\xa9\xa6\x5b\xdb\xf7\xec\xb3\xcd\xa8\x3f\x48\xb9\xde\x84\x59\x65\x97\x82\x6f\x14\x20\x62\xc5\x2c\x0d\x91\x68\xe5\x99\x84\xab\xc0\xbd\x66\x58\x61\xd2\x78\x56\xbe\xbd\xcc\xb7\x12\xed\xb6\xa6\x63\xb3\x5d\xaa\x50\x74\x8b\xc6\x4c\x0e\x27\xfa\x0a\xe9\x55\xa5\xa7\x40\xd6\xe6\x96\x22\x51\x04\x50\x4c\x54\x42\x7d\x79\x80\xa4\x98\xe3\xd5\x47\xcb\xe7\x03\x48\xe1\xf2\x88\x96\x1d\x60\x59\x8c\x7a\xc5\xf3\x71\x5a\x96\xff\x85\x0e\xcb\x09\x0d\x7f\x44\x6f\x57\x46\x8a\xd7\x9e\xfb\x19\x85\x7b\xc7\xc3\x34\xfe\xe3\x24\x0f\x4f\xf9\xe2\xfc\xf3\x30\xe0\xac\xe7\x1a\xec\x9b\x10\x80\x5b\x9d\x29\xa7\x9e\xe9\xfa\x35\x43\xe2\xa6\x1e\x54\x26\x77\x12\x64\x62\xf9\x6a\xc2\xf0\xef\xbf\xae\xdc\xa6\xc8\x1e\x48\x43\xaa\xca\xd4\x5e\x50\x6a\x61\x45\x2f\x4a\x1a\xbe\xdc\xba\xa6\x34\x7d\xd7\x2a\x39\xa3\x97\x5f\x6e\x9a\x22\x4b\x43\xd4\xe2\x1c\x1c\xfa\x32\x1d\x1e\xd2\x1b\xa2\x6a\x71\x69\x9a\x44\xa5\xeb\xf6\xcc\x33\x1c\x21\xaf\x63\x9f\xf0\x8d\x32\x5b\x83\xcc\x16\xc5\xea\xb4\xf7\x13\x58\x18\x55\x02\x31\x6f\x1e\xbe\xaf\x12\x8c\x1f\xd5\x30\x39\xbd\xd4\xec\x99\xc1\xc0\xba\x1e\x0e\x61\xa9\x26\x8b\x2b\xf4\xd5\x4a\x5f\x28\x4a\x13\xcb\xc0\x2e\x9c\xb7\x3b\xb0\x0e\xf8\xa6\x42\x49\xbc\x38\xdb\xcc\x6d\x52\x4c\xfb\x86\xfe\x4b\x9a\xc0\xe6\xfb\x81\x27\x02\xf9\xf9\x35\xcd\xaa\x77\xa7\xd2\x04\x73\x60\xa1\x99\x9b\xc2\xc6\x71\x54\xd8\x29\x25\xc5\x70\x49\x41\x4f\xc7\x2a\xed\x73\xae\xa6\x17\xa2\xe8\x99\x64\x99\x31\x9f\x38\xb1\x77\x42\xfe\x17\xe6\x07\xd2\xce\x02\xae\xf1\x2e\x47\x66\xe0\x54\xfb\xde\x4f\xd5\x53\xe7\xc5\xa5\x97\x13\x6b\xa7\x1a\xce\xc9\x98\x68\x0e\xfe\x70\xe4\x51\x6a\x57\x95\x3d\x7a\x35\x02\x85\x83\x42\x5d\x3a\x08\xa6\x73\xe9\x96\xed\x6a\x62\xf3\x88\xd1\x5d\x4c\x56\x02\x1b\x23\xcc\x25\x35\x0e\x55\x3b\x5d\x65\x63\x8d\x5d\x0a\x7c\x3e\x5f\x57\xbc\xb6\xaf\x8a\x28\x38\x3b\x1f\x6e\xcf\xfb\x2f\xb8\xa4\xec\x50\x94\xe7\x43\xdb\xa1\x18\x5f\x70\x2b\xba\x53\xf0\x07\xa3\x6d\xdd\x92\x07\x9d\x66\x9b\x6a\x18\x64\x8b\x27\xe4\x7f\xf4\x53\xe0\xd8\xf9\xfe\x48\x25\xc9\xd6\x95\xb7\x06\x0c\x06\xff\x11\x86\x80\x7f\x51\x75\xda\x86\x69\xd2\xcd\xd2\x04\x52\x62\xae\x16\xf1\x80\x26\x0d\x85\xa4\x4b\xaa\xdf\xf9\x4a\x0d\x22\xa0\x19\x9b\x61\xd2\x51\x22\x60\xae\x27\x6c\xa1\x2a\x17\x66\xf2\x41\x94\x6d\x23\x32\x87\xeb\xc0\xd7\x81\xf2\xe2\x07\x03\x97\xe9\x44\xd4\xb0\x35\xf2\xcd\x53\x38\x9b\x91\x80\x98\x1e\xd7\x20\xa0\xba\xa6\x9d\x31\xe9\xbb\x8b\x82\x1c\xb4\xa1\x4a\xee\x75\x60\xa1\xd9\x8d\x3a\x36\x16\xe4\x93\xd3\xc7\xf0\xac\x97\x6b\x55\x8d\xd7\xc5\x83\xcd\xcc\x76\x86\xa1\x38\xf0\x4e\x49\xd4\x8b\xcb\x5d\xae\x6c\xcf\xf2\x53\xb6\x3f\x88\xd3\x55\xce\x22\x32\xff\x50\xe0\xbb\xed\x4f\xd6\xad\xd2\xee\x30\x01\xf3\x10\xf3\xdd\xa8\xbf\xe7\x10\x40\xb6\xd9\x64\xb3\x43\xbf\x4f\xc2\x5d\xf4\x53\xd2\xa4\xe7\xe7\xf7\x9c\xca\xaa\x1f\x49\xa9\x47\xbc\x5c\xaa\x8e\x11\xad\x5c\x90\x9f\xc5\x88\x76\xf8\x79\x34\xa8\x93\x4d\x7c\x61\xd6\x51\x5e\xd2\x9c\xf1\x4d\x5d\xad\x26\x29\x9d\xbd\x22\xc5\xdb\x23\x35\xf8\xb6\x4a\x23\xbf\x3d\xf2\x8c\x00\x09\xc3\x03\x16\x7c\x9f\x8a\x52\x2c\x3e\xaf\x8e\xa6\x7c\x39\x4a\x72\xe5\x3d\xc2\xf2\x48\x2f\xa6\x4f\x3f\x0d\x9f\x5d\x7e\x16\x1b\x57\xe4\x44\x3c\x25\xd0\x59\x45\xb8\xd2\x0d\xdb\xbf\xfa\x77\x63\xdb\x06\x26\x55\xca\xaf\x57\x02\xc5\xcc\x7c\xa5\x8e\x1b\x25\x4d\x96\x52\xb7\x70\xc5\xe8\xf8\x22\x0b\x84\xc1\x91\xb2\xb9\x55\xf7\xf9\xb6\x09\x97\xe5\x95\x15\x51\xee\x73\xce\x57\xf9\xac\x94\x8d\xeb\x4f\x98\xf6\xb2\x0b\x33\x68\x2a\x70\xd6\xc1\x99\x9a\xf3\xa3\xc6\x2f\x1f\x72\x62\xe3\x4f\xb9\xf1\xce\x8b\x6c\x48\x1d\xd7\x9d\x29\x25\x54\x75\x1f\x06\x1a\xfb\x00\x94\x57\x72\x52\xfa\x96\x51\x3b\x1c\xf4\xd2\x2c\x32\x54\xd5\xd0\x1d\x9d\xc8\x36\xec\x6c\x29\x33\x7c\x4d\xf5\x01\xdb\x57\x6d\x38\x2c\xa2\x15\xbb\x47\xf9\x12\xb7\x03\x55\xe9\x82\x46\x25\xa6\xfc\xc7\x18\x0c\x38\xfb\x90\x39\xe4\xde\xb3\xb1\x62\xef\xe3\x72\x0a\xaa\x66\xa8\x90\xc0\x75\xbd\x07\x43\xca\xdf\xeb\xa0\xef\xfd\x28\x19\xd8\x30\x9d\xd2\xe4\x57\x77\xe9\xe1\x51\x39\x3b\x35\x52\x1e\xb3\x07\xd6\x76\xa2\x3c\xcc\x6c\x27\x2a\xb8\x89\xd9\x65\x66\xca\x1f\x97\xcc\x4c\x0d\x03\x3a\x11\x40\x74\x64\x8c\x91\xff\xe2\x46\x3a\x24\xab\xa0\x46\x20\xf9\x33\x7f\xbe\xb6\x87\xdd\xae\x2d\x14\x47\xca\x69\xc5\x91\x72\xba\x12\x18\x1e\x7e\xbe\x99\x0f\x07\x83\x32\x36\x7d\x61\x96\x9f\x1e\x2c\x4b\xba\x2d\x56\x56\x81\x84\xa6\xe9\x8a\xcd\xc2\x9e\xc9\x96\xec\xb4\x42\xb8\xf2\xa9\x23\xa2\xbb\x3e\xe0\x07\x6b\x1d\x4c\xf1\x85\x3a\x61\xea\xcc\x86\x36\x5a\x91\x34\x24\xcc\xce\x31\x64\x09\xf8\xa6\x4e\x47\x2d\xef\xa5\x47\x6c\x67\xda\x1b\xc8\x75\xcd\xff\xb1\x0b\xd0\x4c\x41\xe6\xaa\xc2\xf2\x7a\x1d\x77\x7c\x27\xca\x8b\xcc\xe6\x79\x77\x08\x3a\x08\x78\x31\x1c\x7d\xf0\x8d\x16\x59\x64\xda\x59\xb6\x9a\x30\xb8\xa0\x35\xe5\xeb\xb1\x0e\xe1\x42\x63\xa6\xb1\x72\x98\x43\x06\xbe\x80\x90\xb8\x36\x14\xd5\x90\xb2\x1e\xdf\xaa\xa5\x98\xce\xd3\xc4\x14\x86\x33\x7d\xbc\xca\xf1\x29\x59\xf2\xde\xc9\x0e\x7b\x16\x08\x39\xc4\x81\xf7\x02\x95\xba\x5a\xf7\x3d\x5a\xff\x75\x15\xc9\x37\x3f\xdf\x5c\xb2\x89\x2d\x20\x6a\xee\xe7\x72\x4d\x89\x38\xae\xd5\x22\x50\x3b\xe9\x91\x24\xe7\xee\xb9\x05\xa5\x8a\x57\x3e\xa1\xa8\xe2\x09\xe4\x29\x19\xbe\xda\xf0\x01\x14\x17\x80\xf9\x66\xbc\x7d\xa1\xbc\xfc\x72\xb3\xff\xff\x31\xf6\xae\x41\x92\x64\xd7\x79\xd8\x4e\x75\xf7\xcc\xee\xce\x3e\x66\x1f\x00\x49\x53\x0e\x97\x24\x9a\x6b\x87\xd7\x90\x48\x2a\x6c\x99\x7f\xb2\x3c\xd3\xe0\x62\x26\x8c\xde\x76\xcf\x60\x17\x5e\xeb\xc7\xde\xaa\xba\xdd\x95\xdb\x59\x99\x85\xcc\xac\xee\xed\x0d\xff\xa0\x1c\x0e\x07\xc3\x3f\x1c\x96\xc2\x0a\x49\xb6\x6c\x4b\xa4\x6d\xd2\x26\x45\x93\x10\x03\x84\xf8\x40\x35\x00\x82\x20\x01\x02\xd8\xf7\xfb\x31\xef\x57\xcf\xfb\xdd\xf3\xe8\x75\xe4\xf9\xce\xbd\xf7\xab\xae\xdc\x90\xfe\x55\xed\x4e\x57\x65\x65\xde\x7b\xee\x39\xdf\xf9\xce\xf7\xc5\x9d\x3c\x5b\x31\x29\x0d\xb6\x81\xfb\xe4\x32\xa2\x40\xa4\x59\xb4\xab\x0f\x92\x8c\xe2\x54\x8b\xb4\xbb\x75\xa1\x20\x2c\x9c\x41\x59\xe3\xbb\x59\x55\x61\xe6\xa8\xac\x8d\x7d\xb3\x8a\x41\x02\xa7\x53\x47\x8a\x11\xc1\xb3\x9a\x85\xb1\x36\x97\x3b\x43\x79\x05\xa4\xd9\xea\xe3\x8d\xaf\x7c\x69\x8c\x0c\x0a\x12\xd6\x55\x96\x1c\x38\xca\x94\xd5\x5d\x2d\xe2\x8c\x5d\x19\x35\xbe\xf8\xd5\x71\x41\x08\x14\x2c\xdf\x91\xe5\xa3\x93\x56\xac\x65\x70\x94\x47\xa9\xee\x8c\x68\x42\xe1\xbe\x16\xa1\x89\x1b\x23\x62\xdc\x3c\x22\x13\x2a\xaa\xc4\x27\x58\x20\x50\x83\x75\xdc\x31\xd9\xe8\xbf\xf8\xf9\xf5\x90\x38\x62\x4e\x10\x93\x47\x37\x89\x8e\xdd\xb3\x26\x07\xf5\x27\xa8\x55\x5c\x25\xae\xfc\x55\x2a\xe5\x07\x89\xe9\xd8\x07\x49\x58\xef\x0c\x93\xd4\x30\x24\x08\xe2\xc2\x61\xc1\x28\xd4\xb6\x8d\x47\xb1\x8e\x61\x65\xeb\x1b\xb9\xbb\x58\x46\xd7\x25\xc9\xc5\x0d\x39\x29\x40\x00\x9e\xc0\xd1\x51\x50\x12\xfc\x0b\xda\xd8\x10\xdf\x2b\xe2\x15\xcb\x2c\x83\xb3\xdc\x55\x3c\xeb\xf9\xe9\xb9\x35\x9d\x9e\x2d\xd8\x00\x62\xc7\x3a\x4d\xd2\x6b\x99\xee\xc2\xce\x98\x58\x74\x6e\x1e\xe4\x88\xf0\x0e\x6e\x30\x22\xcd\x8d\x11\x35\x9c\x6f\xc8\x1d\x46\x78\x50\x6b\x37\x2c\xb0\x1b\xf2\xe0\x81\x03\x4d\xb5\x1a\xbf\xf2\xbc\x46\xf9\x33\xe8\x50\x3b\x10\x8d\xcc\x41\xd5\xba\xd1\x81\x29\x35\xbd\x84\xc5\x7c\x58\x94\xb9\x78\x62\x36\x08\xe7\x63\xab\xba\xba\x00\x9e\xe5\x5d\x13\x54\xf1\x54\xbc\x87\x0c\x11\x37\x98\xc3\x62\xd3\xc6\x98\x1f\xb7\xfc\x24\x37\x79\xf1\x53\xa4\x3f\xdb\xad\xae\x25\x86\xe4\x53\x23\x4c\x54\x1d\x23\xeb\xa0\x63\x84\x12\xdb\x35\xdb\xce\xb3\x55\xd5\xec\xf4\xa2\x96\x9f\xa5\x9c\x3d\xa1\xd3\x37\xdb\xec\x24\x36\x17\x1b\xdf\x86\xd7\x92\xfd\xa6\x7c\x99\xbe\xae\x1b\x7f\x2c\x3a\x3d\xdb\x1d\x7a\x6a\x3f\x32\xa0\x9d\xd2\xe3\x03\x64\xf6\x00\x9a\x75\x78\x80\x1f\x12\x2d\xc4\x14\x03\xdb\x51\xa0\xde\x4b\xad\x93\xbe\x70\x6d\x37\x40\xa4\xc9\xb7\xcb\x2e\xfa\xc1\xc1\x73\x94\xab\x0f\xcc\xc0\xe6\x05\x14\xe9\xa1\x62\x86\xaa\x15\x08\xc1\x35\x64\x49\x08\x74\x9b\x4c\x01\xbb\x4a\xe5\xd6\x1f\xf8\xa1\xaa\xd5\x2c\x2f\x80\x6d\x10\x82\x7c\x84\xac\xe5\x8e\x8c\x2d\xef\x3c\xee\xce\xb0\x8d\x93\xa2\x83\xc8\xaa\x6e\x44\x14\x14\x2e\x92\x6d\xdb\x7b\x23\x1a\xa8\xbf\x6f\x7d\xcc\x08\x2d\x4b\x66\x42\xe7\xfb\x56\x44\x53\xc4\x1b\x18\x78\xc4\x46\x00\x39\x78\xcc\xe1\x5c\xff\x87\x67\x9b\xf4\xab\xa5\x2a\x58\xbc\x93\xdd\x0a\x39\xce\x6f\x8d\x98\x8d\x10\x05\xaf\xa2\x7e\x8a\x52\x71\x6c\xc2\x49\xdf\xf8\x9a\xb4\x93\xf5\x07\x71\xe2\xb6\x01\x96\xc2\x15\x12\x9c\xbd\x42\xf4\xaa\xd5\xb8\x1b\xb0\x22\xef\xb9\xb1\xb0\xd7\x8f\x38\xba\x3b\x9f\xda\xd5\x62\x90\xc7\x69\x39\x13\x14\x71\x71\xce\x20\x72\x28\x7c\xe8\xff\xc7\x9c\xdb\x80\x9f\xc3\x3d\x77\x8c\x84\x9a\x13\x1e\xa5\x5f\x69\x14\xb1\xf3\x34\x11\xcf\x3d\xfb\x21\xed\xdb\xb6\x41\xe1\xeb\xf4\x85\x02\xd4\xf2\x1e\x79\x2a\x74\xcc\xb0\xb0\x24\xfb\x78\x82\x64\x1f\x4f\x7c\xa6\x85\x4a\x27\x4e\x3a\x59\x8e\xc6\x35\xa0\xd8\x4d\x96\x23\xde\xa4\x5d\xd3\x8f\xbb\xab\x56\x55\xed\x81\x54\x1d\x26\x4a\xc1\xe1\x3a\xcf\xbd\x62\xd8\xef\x9b\x3c\xd6\x36\x86\xc3\x7c\x08\xff\x21\x16\xaf\xb8\xfa\x19\xe9\xf9\x3f\x2c\x6b\x4c\x25\x79\x10\x9e\x55\x65\x12\x47\x3e\x96\xe2\x51\x48\x0d\xbb\xf8\x25\x67\xb9\x7a\x22\x01\xe4\xc5\xf6\xb8\xc3\x06\x49\xb7\xb1\x01\x9c\x66\x65\x50\x97\x40\x76\x85\x60\x7d\x89\xc0\x0c\xe0\x90\x8e\x63\x53\x9d\x68\xfa\xe5\x75\x42\x8e\x39\x8e\xde\x06\x4d\x90\xa1\x4d\xe9\x32\x99\xba\x21\xee\x6e\x5c\x66\xde\x49\xc5\xd9\x7b\x54\x17\xa3\xaf\x27\x82\x91\x78\x19\xa6\x65\x9e\x25\xd3\x41\x22\xe6\x0d\xc2\x82\x60\xc1\xe3\xd2\x9a\xc0\x5d\xfd\x70\xe2\x11\xcd\x3f\x7b\x50\x06\xcf\xcd\x40\x97\x8e\xa3\xbc\x57\x7f\xe4\xb8\xf0\x35\x72\x2a\xab\x71\x82\x73\x01\x65\xd0\x15\x2a\x89\xae\xd4\x8d\x9a\x26\x26\x1e\xdb\x9a\xef\xcb\x1f\xe8\x6b\xf2\x37\x84\x82\x9b\x70\x7a\x02\x3a\x8b\x4f\xd7\xd7\x1e\xa7\x1c\x0e\xb2\xf4\x01\x12\x50\x7f\x6b\x14\x58\x70\xd8\xf9\x48\x0b\x1e\x5f\xa7\xa6\x0d\xf6\x39\xa2\xfc\x7b\xf2\xf4\x91\xab\x9c\xa0\x09\x3c\x68\xc9\x60\xb9\xfc\x35\xce\x5d\x37\x6a\x1b\xbe\xb6\xc0\x39\x32\x26\x51\xe9\x6a\x8d\xbf\xf9\x19\xbb\x6e\x98\x02\x65\xaa\x62\x80\x54\x09\x88\x67\x28\xdf\xfd\xdc\x0e\x8f\x77\x73\x88\x8f\x97\xd2\x3d\x41\x2a\x56\x7b\xc2\x4e\xf1\x7b\x8c\xf0\xc3\x0c\xa1\xea\x56\xe1\x96\x7c\xa0\x28\x27\x4e\xae\x1b\x72\xe3\x5c\xdf\x82\x58\x1f\x97\xa4\xb4\x07\x07\x4d\x7d\xc4\x71\x87\xfe\x2f\x64\xb4\x6e\xc4\x27\x90\x24\x7e\x18\x31\xd4\x16\xd1\x68\xe2\x71\x12\x8b\x3c\x37\x0a\xcc\x98\x4d\x52\xe9\xe8\x5a\x93\x14\x0f\x04\xd3\xdc\xdf\x88\x68\xf4\x0c\x19\x04\xca\xe4\x8f\x90\x13\x7a\x39\xc8\x60\xd0\x74\x15\x51\x40\xdf\x8c\x02\xdf\x58\x55\xdd\xfc\x67\xed\x9b\xf5\x1e\xa3\x8f\x73\x47\x62\xc5\xa6\x3a\xa4\xf4\x8c\x96\xb6\x9f\x8e\x42\x99\xfb\x69\x14\x1c\x93\x56\x7b\xa6\x7c\xac\xba\xc1\xaa\x2a\x47\x9a\xe1\xf7\x40\x0a\xc4\x19\xf9\x0e\xc2\x0f\x6e\xd6\x7d\x92\xbf\xe3\xc0\x83\x44\x3d\x40\xe9\x2b\x23\x12\x21\x3b\x49\xd9\xff\x56\x14\x46\xf9\x6f\x82\xd5\xa7\x1f\x8b\xb6\x0a\x96\xc0\x83\xeb\x84\xdf\x7c\x8a\xbb\x83\x53\x49\x59\x67\xce\x94\x5e\x56\x8a\xc2\x43\xd1\x58\xda\xdf\xd8\xb7\xcf\xf7\x36\xea\x86\xfc\x4c\x51\xc4\x4b\xa9\xa6\x3f\xd4\xf4\x9c\xf5\xad\xca\xc9\x9c\xe9\x99\x66\x7f\xad\xb0\xc9\x22\x86\xe5\x50\x28\x22\x4b\xd0\xd7\x75\xb4\xa8\x32\x37\x71\xa2\xdf\x33\x36\xa2\xef\x18\x15\x93\xac\xe6\xe6\x30\xcd\x6d\x62\xbc\x2d\x38\x90\xf2\xd7\x68\x72\x5e\x7b\x70\x5a\x38\xf1\x9c\x4e\xdf\x14\x3d\x41\xd8\x7d\x52\x72\x9a\x78\x2e\xdf\x90\x87\xaf\x1e\x96\x41\x79\xc6\xda\x45\x1f\xe6\x01\xfb\x23\x4f\xd7\xd7\x74\x28\x9b\x55\x93\xeb\x90\x3d\xaa\xe1\x37\xb1\x5c\xf5\x0d\x41\x6d\x65\x55\xbc\xf7\xe2\x41\x31\xc5\x12\xf3\x01\x1b\x82\x99\xb7\xb7\x6f\xa6\x91\xed\xb4\x63\xab\xca\x21\x19\xa3\xc9\x8d\x75\x91\x43\xee\xb3\x6c\x96\x87\x7d\x93\x0f\x31\x21\xe8\xac\x27\x48\x26\xfd\x44\x8d\x6e\x5b\xd3\xf4\x25\x3b\x4f\x1d\x6b\x1c\x6b\xeb\x18\x8b\xc1\x1c\x1b\x3d\x31\xae\xff\xf1\x74\x73\x7e\x61\xfe\x21\xf9\x17\x4a\x6a\xc1\x35\xa9\x8d\x86\xfc\x32\x9c\x18\xff\x3c\x6a\x90\xee\x80\x3c\x41\xb5\xd3\x8e\xc2\xb4\xf7\x3d\x39\x7b\x11\x4c\xb0\x5b\xb6\xee\x92\x16\xc5\x3d\xd6\x84\x3c\x8b\x2d\x87\x22\xf6\xe6\x88\x8a\x7f\xea\x59\xc5\x36\xdd\x49\x46\xc0\x27\x68\xe0\x13\x1c\x7f\x2d\xf5\x98\xb6\x09\x81\x3b\xdf\xdc\x61\x5f\xc5\xa0\x1f\xbb\x92\xc5\x1d\x97\x5d\xba\xf1\x3e\x12\x72\xbc\xec\x4f\x30\x6b\x0a\xb8\xc0\x3a\xfd\x72\x6e\x4d\xc8\xfd\x01\xe7\xf7\x18\xd9\x9f\x4e\xea\x47\xcf\xcd\x55\x35\xa0\xf5\xa2\xc7\x40\x13\x34\x6b\xd2\x37\x13\x72\xf7\xfb\xe7\x9a\x69\x96\xea\xbc\xa8\x5f\xca\x0e\x50\x0e\x53\x5d\xf7\x22\xe6\xf5\x9b\xce\x72\xb1\x33\x30\x5f\x3e\xc5\xbe\x54\x04\x90\x3c\x88\x5f\x8e\x58\x8d\x6d\xfb\x8c\x8c\xaf\x38\x27\x8e\xd3\xf9\x85\xf9\xe6\x60\x58\x4e\x93\xb5\xc5\x77\x47\xa1\x79\x31\xc2\x0e\xc0\x6e\xfc\x71\x44\x3a\xc5\x3f\x9c\x08\x0a\xe2\xce\x9f\x60\x06\x6f\x9a\xe8\x11\xef\x8f\xc6\xc8\x8f\xc1\xc6\xc0\x49\x36\x23\x86\x9e\x20\x8e\x21\xd4\xc6\xad\x08\xf8\x79\xf5\xb4\x20\xf6\xb1\x03\x88\x8e\xc3\x1e\xab\x05\xa2\xab\x50\xb6\xc7\xd6\x25\x1d\x39\xc5\xd1\x09\x20\x06\xad\xd5\xfb\xd7\x89\x9b\xfe\x00\x44\xd8\x70\x72\xbd\xe5\x89\xb6\xab\x71\xd1\xcd\x40\xf4\x44\x6d\x86\xd4\x46\x5f\x7b\x38\x24\x5b\xb1\xb9\x49\x12\xe9\x64\x7a\xa5\x2f\xa7\x98\xfc\xab\x3f\x2f\xd0\x12\x08\xe0\x3b\xd7\x49\x7b\xe5\x8c\xec\x0d\xa7\x3b\x43\x13\x26\x17\xa5\x05\x81\x33\xeb\x04\xcd\xb2\x20\x15\x03\x19\xe3\x09\xc8\x34\xb9\x27\x5b\x45\x2d\x00\xcd\xff\x7d\xad\x03\x81\x20\x36\xd2\x8a\xf2\xd3\xbc\xbe\xc3\x74\x9e\x68\x01\xa2\x3f\x89\xa4\x08\x11\xff\x26\xb2\x0d\x3c\xf6\x6f\xc9\xcf\x72\x85\xca\x63\x34\xab\x2a\x3c\x57\xd5\x87\x24\xf6\xd0\xac\x6f\x2b\x3e\xe9\xa9\x85\x59\x12\x2f\x5a\x82\x5a\x90\x15\xbc\x8f\xef\xd1\x37\x24\x40\xba\xa8\x16\xca\xa1\x05\x30\x9e\x1f\x87\x18\x5e\x5d\x79\x9c\x5a\xf5\x14\xd6\xe1\x08\x92\x4d\x3d\x46\xd0\xdb\x6a\x96\xe7\xe0\xd8\x2b\x25\x1c\x00\xa2\xcf\xe9\xaa\x87\xa1\x64\x4b\xb6\x87\x3e\x4e\x4c\xd8\x0f\xa3\xa0\xcc\xf5\x6d\x49\xf6\x98\x2f\x81\x23\xf6\x03\x79\x30\xc8\x66\x95\x62\x8f\xdb\xba\x03\x10\x27\x7e\xc4\x26\x9d\x6d\xdd\xc5\x2c\x07\xb6\x8e\x34\xf0\xfd\x11\x69\xf4\xbd\x1f\x85\x40\x27\x20\x4a\x06\x3d\x15\x44\x75\x0d\x96\x4e\x0f\xb3\xba\x09\x58\x37\x1f\xd3\x91\xdb\x49\x62\x71\x78\x69\x84\xee\x08\xd6\x82\x53\x93\x0f\xa6\x9d\xa5\xcd\x6d\x51\xce\x48\xda\xc3\x8c\x28\x80\xa1\x7f\x4d\xb2\x65\xdc\xa3\x0b\x4c\x6f\x7a\x0c\x74\x08\xd7\x59\x0b\x5f\xdd\x35\xab\xdd\x44\x57\xc9\x0b\x5a\x20\x4d\xb5\x24\x91\xd2\x37\xeb\xe1\x80\xe8\x0f\xca\x07\xc2\x08\xc4\x83\xad\xb0\xf2\x61\x41\x83\x93\x78\x7a\x9d\xfa\x1b\x63\xa3\xad\x22\x46\x77\xef\x57\xf7\xb4\x48\x59\xef\x2d\xc0\x3d\x18\x61\xd1\xc2\xd4\xcd\xa6\x4c\x06\xf6\x83\x32\x46\xec\x58\xab\x58\xc7\x27\xb8\x4d\x71\x82\x94\x09\x3a\x59\x7f\x60\x72\xdb\x7d\x48\x1e\xab\x9a\x58\xe1\xeb\x5c\xd6\x1f\x4e\xd0\x6b\xb2\x5a\x1c\xf7\x95\x12\xc1\x69\x84\x21\x7f\xdc\xf9\x76\x94\x66\xd6\xb8\xc1\xa7\x65\x11\xe2\x70\xb9\x21\x11\xda\xa9\xb1\x37\xfc\x54\x9f\xe2\xf9\xfa\x07\xb5\xf6\x92\xa9\x35\x79\x1b\xd0\x80\x9a\x39\x53\x74\xbc\x45\x29\x4e\x6a\xe3\xa5\x5e\x3b\xcb\x95\xf4\x82\xf0\xfd\x22\x1b\x0a\x6c\x90\xc3\xf6\x06\x31\x3c\xfa\x26\x2f\x2d\x3a\x1d\xae\x02\x64\x83\x5b\xd2\x1e\x94\x92\x3a\x6e\x0f\x4b\xdb\xdd\x45\x3d\x42\x6d\x32\x20\x5e\x7e\x24\x37\x04\xcb\xfb\x9e\x94\x89\xfa\xdf\x59\x26\xfa\x36\x23\x64\xc7\xc8\xd5\xed\x76\x1d\xb1\x75\x30\x4c\x92\x46\xc8\xf7\x31\x0e\xac\xaf\xd9\x81\x21\x4b\x3b\x76\x50\x0a\x5b\xcc\xf7\xd0\x7d\xba\xf7\x3d\xec\x3b\x50\x86\xfe\x4c\x2e\xd2\x69\x8d\x55\x17\xe9\x1a\xed\x8f\x84\xa1\x2f\x11\x13\xc3\xc1\x04\xec\x51\x67\x3e\xf5\x4d\xc4\x36\xd2\x8b\xa6\x2f\xe4\xaf\xd9\x43\xc1\xa4\x7b\xbf\xc3\x34\x36\x27\xd6\xed\xc2\x7c\x33\x1f\xa6\x1e\x60\x03\xf1\x6b\x33\x22\xf1\xa1\xcd\xed\xb9\xe2\xbe\x7d\xcd\x2f\xcf\x4e\x55\x1f\x8a\xc2\xe0\x72\xc4\x94\x85\x60\x50\xf1\x47\x41\x0a\x49\xc6\xd2\xf1\x03\x50\x4e\xa9\x49\x33\xbd\x71\x92\x72\xd7\x28\x96\x77\xe3\xa2\xe7\x98\xc9\xce\x16\x4b\xf6\xa7\x13\xeb\xda\x43\x28\xf8\x62\x92\xad\x16\xd3\x01\xfe\x06\xe5\xd0\xf3\x06\xc8\xd1\x86\xe6\x65\x2f\xd4\x35\x4c\xbb\x71\xba\xcd\x9c\xf6\x55\x22\x7c\xbd\x3a\xc1\x53\x9d\x3d\xd4\xb4\x69\x29\x84\x17\x0f\x51\xbf\x47\x12\xb9\xef\xd1\x24\x9b\x49\x97\xf2\xb5\x9d\x81\x41\xfa\x63\xa6\xdc\x42\xaa\xd4\x67\xa9\xb8\x61\xa8\x06\x6f\x60\x62\xcc\x69\x98\x84\x2a\xfe\xb2\x37\xc0\x2c\xac\xd2\x60\xc6\x9c\xfb\xdd\x4c\xc8\xa4\x94\x4d\x3f\x4e\xba\x76\x15\x60\x25\xbe\xe4\xa8\xac\x52\x7d\x3d\x1a\x53\xf8\xa8\x6a\x96\x38\x2d\x0b\xa2\x83\x01\x86\x71\x29\x58\x38\xdd\x07\x59\x51\xc4\x6d\x45\x11\xb1\x9a\x8f\x12\x85\xe4\xe8\x04\xc2\x3a\x7b\xa8\xd9\xb5\x79\xbc\x02\xe3\x28\x3a\x26\xe4\x72\xdc\x91\xe1\xf6\xc3\xa2\x29\x4a\x5b\x94\x53\x72\xce\xe0\x7f\xee\x6e\x05\x70\x18\x63\x43\x28\x62\x26\x09\x92\xcf\xed\x9d\x6d\x96\xbd\x3c\x5e\xf1\x0f\xd8\x71\xf2\x42\x6a\xbf\xa3\xc5\x6d\x2e\x53\x64\xa9\x69\x27\x76\x27\x37\x92\xcf\x91\x63\xce\x31\xc4\x1c\xd7\xfb\x0e\xdc\x75\x14\x41\x63\x0d\x72\x3c\xd9\xb7\xd8\x1e\xc4\x26\x89\x1a\xe6\x39\xbd\xf1\x90\x4c\xdd\xe1\xe0\xa4\xf6\x72\x8e\xd5\x51\x7d\x0f\xaa\x8f\xeb\x6c\x7a\xb6\x64\x1f\xa8\x6e\x3b\xca\x21\x1d\x6b\x24\xf3\x0d\x1a\xce\x08\x67\xdf\x55\xd9\xc0\xfa\x27\x9a\x59\x8f\xe9\x79\x52\x22\xed\x32\x9b\xdb\xf2\x6c\xf4\x50\xa9\x19\xf9\x7b\xa1\x29\x64\xb6\x15\x93\x0c\xc7\x9d\x3c\x0e\x93\xc9\xf0\xe1\x71\xfe\xf6\xf0\x15\x6c\x75\xe7\x41\x2f\x47\xbd\x33\xa7\xaf\x71\x42\xca\x33\xd3\xd5\xe3\xd6\x0f\x4b\x11\xd9\xe3\x81\x58\x2c\x66\x7e\xa1\xf9\x55\xd1\xba\x47\x63\x69\x4a\x66\x89\xdc\x0c\x64\x70\xd6\x01\xab\xdb\x29\x28\x10\x39\xf8\x2c\x53\x9a\x1f\x6f\x71\xaf\x65\x60\xd6\xee\x6f\x7c\x79\x56\x8b\xbd\xab\xd1\xb8\xb5\xda\x5e\xed\x20\x5d\x62\xba\x1c\x6e\xa1\xa3\xd7\x56\x97\xe5\x38\xde\xf2\x95\x80\x24\x74\x10\x4a\x3f\x76\x02\xe0\x99\x7f\xf6\x20\xcc\x7f\xdd\x8d\x45\x35\xf3\x93\x28\xb0\x2a\x7e\x42\x8a\xff\x83\x78\x60\x45\x89\xaa\x11\x00\x36\xa4\xb9\xfa\x9a\x44\x9b\xda\x45\xda\xa0\xb2\xed\x6d\x39\x90\xf4\x35\xed\xf0\x4e\x96\x2e\xe5\xb6\x28\x1e\x69\x90\xfa\x32\x25\x2f\x9a\x59\xa1\xf4\x3e\xac\x2b\xca\x29\x68\x50\xca\x82\x1d\x82\x0f\xd8\x12\x12\xb6\x17\xe9\x3f\x70\x00\xcd\xb8\xa7\x55\x5f\xd1\xc1\xd5\x44\x14\x9d\x59\x0f\x0a\x50\x97\x10\xec\x80\x91\x1e\x06\xd4\x81\xfa\xe6\x68\x14\x0c\x9e\xdf\x8d\xc8\x39\xde\xa4\xd3\x2c\x34\x71\x96\x1c\xf0\xae\x0a\xa1\xc1\xb5\xd2\x49\xef\x60\x3d\xd0\x2a\xcb\xdc\x9a\xbe\x7b\x02\x4e\xab\x84\x66\x29\xae\x7b\xd3\x18\x53\xba\x54\x05\xce\xcb\x48\xb2\xdf\x96\xc7\x85\xef\x38\xce\xa3\xd7\x10\x21\xdf\xba\x34\x0a\xed\x8b\x6b\x34\xe7\xda\xc9\xf2\x01\x9a\x95\x4e\x17\x07\xbf\x02\xad\x4b\xc5\x09\x1d\x74\x16\xf8\xd5\x67\xc9\xa2\x9f\xe9\xe5\x55\x9d\xf7\x68\x68\x77\xde\x1d\x91\x95\xfc\xd1\x51\x50\x8b\x46\xe2\xa8\x4a\xe5\x04\xe5\x68\xbd\x87\x7b\xfd\x0d\xd4\xfc\x40\xc1\x8f\xc9\xc3\x05\x4a\xb9\xa3\x85\x8b\xf4\x52\x9f\x3e\x23\x3f\x8e\x75\xe3\xc3\x4d\x15\x4a\x69\x28\xf9\x05\x8d\xf0\x3b\x5a\xd5\xea\x70\xd4\x1a\x52\xc1\x7f\x93\x30\x8f\xdc\x96\xc3\x3c\xbd\x9f\x45\xa3\xee\x61\xb9\x29\x03\x37\x0a\x83\x5a\x60\x4b\xf8\x29\xc4\x90\xe7\x43\x95\x5a\xb5\xcd\x68\x7d\x2a\xfe\x80\x90\xfb\xa3\x1a\x19\xd4\x83\xe2\x4e\x99\xad\x60\x2a\x03\x00\x86\x62\x5b\xfa\x66\x22\x71\x10\x05\xea\x62\x39\x46\x01\xe7\xac\x6c\xd9\xd7\x76\xe2\x00\x5b\xd8\xdb\x6c\x67\x65\x8f\x68\xc2\x0e\x58\x6f\x78\x81\xaf\x0b\xa3\xed\x08\x92\xeb\x64\x98\x36\xd4\xad\x88\xa8\x74\x94\x67\x51\x8f\x52\x5f\x7c\x25\x46\xbd\xe8\x1b\xa8\x9f\x90\xb8\xe7\x15\x00\xa3\x40\xe5\x4f\x78\x00\xc4\xe4\x2b\x71\xda\x6d\x90\x8a\x3e\x46\x0f\x42\xb1\xe8\xc5\x5e\xf2\x6c\x98\x76\x77\x05\x3a\xea\x1d\x12\x90\xfa\x56\x14\x7c\xd1\x55\x89\xc0\x77\x7e\x67\x0f\x8d\x93\x00\xf0\x93\x6f\x47\x3b\x7e\xce\x7b\x87\xd4\x78\x37\xf6\x4d\x9c\x62\xcb\x4a\x01\x0c\xe0\xe6\x53\x56\x36\x3f\x42\xfd\x87\xa9\xd6\x76\xa5\xbd\x43\xcf\x36\x97\x2d\x7c\xef\x50\x50\xbc\x46\xc5\xc5\x6b\x04\x54\x26\xe6\xe5\x69\x76\xc7\x23\xd3\xed\x73\xa4\x2f\x81\x93\xca\x8d\xfc\x7f\x96\x10\xd8\x62\x92\x65\xf9\x14\xd1\x34\x8f\x53\x1e\xaa\x54\x31\x2c\x94\x6f\xd7\xe9\xa7\x2e\x99\xa2\xdd\x20\xd4\xea\x28\x29\x6f\x1d\xa5\x9c\x34\x35\xdd\x38\xa7\xd3\xe1\x14\x9d\x0e\xa7\x68\x45\xe4\xc3\xa2\x88\xcd\xce\x30\x91\xf7\xff\x49\x8c\x42\xe4\x39\xce\x9e\x02\xdf\x96\x9f\xaa\x32\xbd\x51\xc8\x8a\x11\x58\x41\xa6\xd8\x20\x76\x75\xd7\xe6\x76\x69\x98\x98\x71\x9e\xe0\x3d\x3a\xd1\xee\x8d\xf7\xd4\x06\x48\x5b\x55\x3b\x85\x8a\xab\x23\x44\x50\x2e\x73\x33\xc0\x1e\x71\x6a\x9f\x81\x9e\x53\x97\x10\x83\xa6\xa4\x6d\x09\xc4\x9d\x1b\x2a\xc9\x4d\xf0\xe5\x07\xa3\xe0\x3a\x98\xad\xd8\xbc\x67\x86\x89\xc3\xa6\x50\x4c\x1f\x23\xb9\x9c\x63\xb5\xec\x94\x81\x95\x59\xd5\x00\xc2\xfe\x13\x84\x20\x7d\x53\x63\x65\xb5\xd0\x1c\x64\xaa\x14\xe8\xca\x83\x86\x17\xc9\x3a\x4f\x0b\xb0\xcc\xd7\x1e\x92\xbd\x49\x82\xad\x6e\x2e\x0c\x14\x29\x0f\xf8\xf8\xd1\xbb\x1d\xad\xc0\x86\xf8\x59\x61\x48\xe9\x38\xfe\x68\x8c\x07\xc9\x64\x1a\x6c\x1d\x95\xe4\x19\x11\x07\xe1\xc8\x68\x9b\x7d\x93\x3f\x76\xf6\xac\x07\x81\xfb\xb8\x2c\x7e\x7a\xfc\xb3\xab\xc0\xef\x64\x9e\xaa\x4d\x8e\x83\xe3\x43\x24\x81\x08\x0b\x17\x30\xc9\x8a\xfe\xda\x06\xf8\x04\x38\xb6\x6e\xcb\x42\xc4\xb9\xb3\x73\x9d\xdc\xd8\xce\x54\x59\xc5\xd6\xbb\x51\x18\xc9\xd8\x1c\xb7\x2c\xa5\x61\xf8\x9f\x8c\x02\x20\xfb\xcd\x11\xe7\x06\xb7\xe1\x83\xe4\x80\x01\xb9\xa3\xc0\x42\xef\xc7\x90\x24\xfe\xd9\x49\x76\xf5\xbf\x22\x4b\x1d\x40\xd2\xfd\xa0\x36\xe1\x48\xfa\x14\xcd\x4d\xa4\x43\xd0\x34\x76\x38\x72\xf5\x14\xb0\x81\xae\x8e\x68\xd7\xef\x5a\x27\x91\xac\x74\x6d\xb5\x67\x73\x0c\xfd\xe0\x49\x42\xa5\xdf\x29\xa8\x04\x02\x01\x1f\x8d\x45\xcf\x26\x6d\x55\x5f\xf6\xd6\xcf\xd4\xb1\x26\x44\xd1\xe4\x71\xd1\x9b\x26\x7b\xcc\x0b\x81\xac\xf9\x77\xf6\xc8\x4a\x01\xc8\x36\xb5\x4e\x7c\xff\xed\x82\xf2\x87\x9e\xad\x16\xed\x74\x68\xda\xdf\x21\x12\xc1\x6d\x52\x53\x3c\x86\x93\xc4\x65\x2c\x84\xe8\xd9\xf4\xa1\x90\x51\x9f\xd5\x07\x82\xd4\xf9\x1e\x09\x90\x6a\xf3\x04\x2b\x7c\x7a\xbd\xf1\x95\x2f\x8d\x53\x63\xd0\x40\xbd\x25\x7a\xf2\x8e\xfe\x1a\x9a\xf8\x9f\x5f\xaf\x1e\x93\x13\x56\x0f\xc5\xdb\x98\x65\xb7\xc2\x50\x92\xc3\x7f\xff\x3f\x98\xd0\xed\x5d\xd8\xdb\x94\xf2\x78\xa9\x07\x28\xd9\x51\x2d\x43\x51\x7a\x6c\x2c\x7a\x99\xfe\x1a\x91\x8d\xd1\x23\x40\xc1\xba\x63\x3d\x18\x3c\x5f\xa4\x21\xb8\x25\x93\xe7\xb6\x54\x87\x64\xaf\xfd\xe3\x09\x9b\x3c\xad\x39\xb0\x79\x3f\x2e\x67\xe8\xe1\x1e\x23\x09\x3d\x8c\x3a\x62\xf1\x7f\x5d\x6e\x03\xd2\xb0\xad\x51\xa8\x7f\x37\x89\xce\xd5\x4d\xcd\x74\xb0\xc1\xd6\x09\x6c\x97\xac\x05\x6e\xae\x8a\xd9\xea\xff\xa0\x0b\xcf\xda\x2f\xd9\x4e\x29\x62\x75\xcf\x78\xdb\xf5\x86\xd3\xf5\xf8\xa5\x69\x0a\x3c\x17\x59\x68\xf5\x42\xd0\x3c\x32\x69\x77\x4d\xc1\x2f\xcc\xb2\x69\x26\xa6\x6f\x7c\x46\x3e\xc8\xb3\xfe\xc0\xe9\x6d\x3a\x73\x66\x59\xc6\x8e\xcc\x1c\x98\x2b\xc2\x62\x57\x21\xdf\x2a\xf0\xe0\x4c\xf8\xba\xdc\x52\x7d\xed\xf1\x86\xa5\x2c\x8f\x93\xc4\xc8\xb9\x84\xae\xcc\xd7\x71\x01\xfa\x66\xa2\x32\x3d\x70\xa0\xd9\x8e\x93\x44\x2b\x53\x75\xbb\x8f\xa8\x91\xf3\xd6\x04\xbf\xeb\xc5\x17\x9b\x7d\xf3\xb5\x61\x9c\x88\x8f\x4e\x31\x55\x85\x60\x30\x85\x36\xd9\x06\x0c\xc7\xbf\x4b\x85\x42\xd9\xb6\x6a\x7a\x53\xcc\x22\xfc\x2b\xf9\x77\x7e\x88\x68\xce\x9b\x39\x5d\x25\x4d\xf6\xc4\xa4\xdd\xa2\x63\x06\x56\x9a\x84\xb8\x9b\x1f\x32\xfd\xe1\x3d\x6c\x01\x37\xdd\x24\xd7\x81\x44\x6e\x93\xa7\xe0\x4e\x8c\x05\xfc\x13\x11\x69\xc8\xe6\x6e\x58\xc1\xb1\x75\x36\x23\x22\xa6\x6c\xd6\x56\xb6\x48\xe2\x1d\xdc\x39\xa6\xd9\xed\x5a\xeb\x61\x80\x75\xc5\xf6\xe2\x4e\x62\xd1\x83\xc4\xa7\x7e\x2f\x22\x63\xad\xef\xe1\x5c\xf1\x23\xc3\xfb\xe7\xfc\x90\x21\x3b\xb4\x15\x36\xf7\x3c\x12\xdf\x87\x9e\x9b\x73\xaf\xc7\x5c\xeb\xda\xc3\xa4\x41\xba\xa7\xe7\xd9\x8a\xe7\x7c\x8d\x3e\xd9\x7c\x73\xd5\xac\x35\xa8\x29\x73\xdf\x7a\xc0\xe8\xee\x6b\x3d\x1a\x06\x60\xca\x61\xde\x56\xb0\x13\xd1\xf0\x34\xf3\x20\x4e\x07\xcb\xb4\xc4\xa4\x5e\x9b\x57\xc9\xa1\xf8\x97\x8e\x29\xfa\x18\x89\xaa\x56\x1f\x6b\x19\xb6\x83\xba\xa6\xbe\xae\x53\x40\xe8\x99\xdc\x14\xf0\xa0\xf7\x9a\xb3\xd5\xaa\xc0\x89\x7c\x9c\xb4\xe8\x2f\x4e\xa8\x49\x2c\xec\x6d\x0e\xb2\xc2\x5d\x9c\xeb\xe9\x90\xf7\x17\xcb\x6a\xb4\x6d\xc7\xa8\xc1\x14\x76\x3d\x3c\x51\xf5\xf5\xc4\xa5\x3d\x3f\xdf\x1c\x64\x82\x41\xd2\xbc\xc2\x39\x9c\xa6\xfa\x66\x22\x0b\x7e\x5a\x34\xd3\xf4\x72\xbc\xdc\x56\xe0\xc3\x6f\xd4\x08\x3a\xcf\x36\x21\xe7\xec\x2b\x2c\xac\x25\x14\x28\xfa\x9a\x74\xa3\xbb\xf1\xe2\x62\xdc\x19\x26\x65\x0c\xa8\xfa\x19\x0d\x83\x38\xe4\xf4\x35\x11\xa7\x7a\xc3\xbe\x49\x77\x12\xf1\xec\xff\x88\x42\xca\xfb\x13\x5c\x9c\x73\x6c\xa1\xad\xf3\x8f\x88\xca\xfa\x13\xac\x71\x17\x94\xf7\x78\x9a\xfd\xc0\xac\xc1\x4e\xfc\xb9\xbd\x2e\x5b\x19\x6b\x69\xd4\x30\x1a\x65\x02\x7f\x25\xb6\xab\x8d\x80\x47\x9c\x1e\x51\x87\xe4\x34\x2b\xf8\xe4\x6b\x45\x69\x12\xe4\xa1\x4e\x95\x3c\xa4\xfa\x17\xc7\xfd\x1d\xf3\xee\x1e\xe2\x56\xe2\x6c\x73\xa6\x71\x0d\x3f\xb0\xf1\xbe\x08\xb4\x51\xfc\x79\x21\x4c\x8c\x54\x57\x01\x08\xe4\xd7\x65\x69\xe0\x7e\x9d\xc4\xcf\x77\xdd\xe8\xa0\x26\xf9\x8f\x89\xfd\x35\x23\x72\x56\x8e\xef\x23\x61\x00\x69\x16\x64\x09\x90\xe6\xfd\x1a\x78\x59\x8e\x09\x24\xe9\x1b\x04\x02\x0e\xb3\xbc\xd2\xe4\xc0\xe6\xd3\xcd\x6e\x6c\xda\xb6\x8c\x3b\xba\x63\x9d\x6c\x82\x5c\x99\x53\x5a\x78\x94\x60\x96\x3c\xb5\x5d\x85\x26\xf0\xbf\xc1\x5b\xf1\xe2\x1e\xa1\xb9\x78\x92\x83\x16\xe6\x46\x74\xce\x89\x02\xd8\x71\x86\x25\xcf\x0b\xf4\x08\xd8\xe4\x3b\xbe\x18\x2f\xb3\x3c\xf6\x6d\x17\xfd\xed\xb8\x73\x20\x9e\xaa\x82\x01\xf2\xa3\xc3\x3c\x7b\x6e\x65\x3d\x10\x3b\xeb\x26\x65\x46\x37\xa9\xd8\x58\x2b\xca\x99\x31\xf1\xed\x00\xb4\xc2\x65\xcf\x6b\x55\x55\xdf\x84\x62\xe3\x23\xd2\xf1\x7e\xb4\x15\x00\xb9\xe1\x4a\xbb\x41\xbe\x02\xef\x8d\x02\x8f\xe6\x3d\xda\x3e\xa2\x6c\x49\xb6\xde\x9b\x08\x4e\x88\xa7\x40\xac\xf0\x5b\xc1\x84\x40\x92\x09\x73\x19\xfd\xef\xbe\x61\x32\x30\x49\xd6\x08\x15\xd1\x6b\x7c\x52\xbe\xe6\x1d\x63\xfe\x4d\xde\xe8\x75\xb3\xcc\xc5\x50\xda\xed\x02\x9e\x20\xfb\xf8\x64\x14\x72\x59\xd5\x28\xd7\xd1\x55\xff\x45\xb6\x3a\x03\x32\x49\xec\x1d\x5f\xbc\xe1\xb5\xe1\x3e\x66\xc7\xe0\x73\xb4\xb2\xfa\xb6\x34\x89\xb2\x66\x7c\x5f\xd7\xb7\x50\xd0\x04\xf3\x32\x7d\x01\xc1\xfa\x28\xb0\x51\xda\x2b\x71\x36\x2c\xa6\x02\x6d\x17\x62\xc6\x58\x24\x67\x48\xc4\x63\x33\x7a\x9c\x5a\x42\x43\x69\xf8\x77\xc7\xa4\xb4\x94\x64\xe6\x66\xaf\x1f\xe3\x25\x65\x73\x39\x17\xaa\x64\xdf\x73\x41\xab\xfd\xe6\x30\x2b\xff\x54\xb2\x7c\x59\x0e\x1f\xdc\x9f\xeb\xa3\x71\xe9\x2c\xcf\xfc\x6d\xb4\xc8\x23\x77\x60\x3b\x02\x1f\x4c\x49\x97\xcc\x39\x87\x79\x14\xf9\x77\x7e\x47\x36\x9b\xab\x7c\xa9\x57\x95\xdb\x2e\x9a\xf6\x61\xb7\x8b\xc7\xa5\x7b\x1d\x85\x2c\x6b\x29\xeb\xce\x50\x5f\x54\x65\x28\xf4\x0d\xf8\x19\x5e\x05\xdb\x37\xf5\x5f\x93\x95\xe7\x8c\x1d\x6a\xac\x15\x96\xb2\x04\x83\xe2\xc0\x22\x37\x89\x0d\xb2\x49\x99\x4e\xd1\x1f\x2e\x2d\x25\x56\x9c\x6d\x74\x1a\x4b\xb2\xd5\x30\x99\xe5\xc7\xad\xb3\xdc\xc6\x4b\xa9\xcd\x71\xe8\xab\x28\x31\x9d\xda\xc7\xa2\x80\x26\x67\x69\x99\xcd\x50\x52\x7f\x7a\x34\x91\x90\x3b\x9e\x69\x20\x3b\xeb\x78\x94\xa3\xf2\x07\x35\xb8\x76\x6e\x5e\x89\x93\xd8\x38\x07\x65\xe7\xad\x25\x67\x9a\xe3\x42\x6e\x9f\xa6\xf2\x60\x97\x49\x3a\x59\xda\x20\x55\x95\xf7\xe4\x17\x3a\xc2\x53\xcd\xf4\x2f\xa4\x15\xdd\xf1\xee\x95\xc0\x49\x16\x7c\x22\x89\x78\x6e\x6f\xb3\x6b\xed\xc0\xe6\x33\x34\x01\xf8\x36\x8d\x06\xa9\x84\x06\x12\x8a\xc3\x24\xcd\xfc\x97\x38\x1e\x5c\xd7\x35\x4c\x5a\x0c\x7a\x6b\x45\xdc\x41\xc2\xe4\xa7\x53\xab\x9f\xef\x74\x8d\xc2\x72\x7a\xcb\xef\x3a\xdb\xc9\xd2\xac\xbf\x36\x45\xa3\x87\xaf\x8d\x42\x6d\x7d\x9a\xa5\xae\x3f\xa6\xaa\x38\x4b\x97\xf6\x08\x18\x81\x4c\xfc\x26\xae\x16\x7f\xf4\xe8\x3a\x7d\x2d\xba\x23\x9e\xe7\xbe\xb0\x37\xa0\xef\xd8\xb1\x48\x2b\x71\x0a\x61\x15\x4d\x03\x39\x41\xbf\x67\x6b\x44\xc6\xb3\x0f\xcb\x5a\xdf\x7a\x75\x14\xaa\xc7\x9d\x2d\xaf\x9b\x74\xe3\x67\x5b\xb2\xed\x3c\x3b\xd9\x69\xfd\x3f\xf5\x39\x71\x48\x07\x74\xf0\x04\x5a\x5c\x00\x7c\xee\x4d\x64\x8e\x10\x86\x59\xb1\x53\xc1\xad\xed\xf7\x70\x1b\xbd\x9b\x81\xaf\x50\x4f\x90\x86\xcd\x4a\x5c\x42\x93\xac\xba\x0f\xe8\xa0\x1c\xe1\x76\xca\x91\x89\x0c\x4f\x84\xdf\x8a\xea\x74\xec\x28\x0d\x17\xf7\xff\x3d\x92\xcf\x7b\xcf\x47\xe5\xa5\xdc\xbc\x02\x4c\x70\x9e\xd9\xf5\xbe\xb1\x8b\xef\x42\x64\xd9\x64\x41\x90\xdc\x76\xa1\x89\xa9\x64\x34\x64\x6b\x6a\x83\xac\x6f\xea\xd2\xef\x45\x13\x46\xa3\x90\x29\x1c\xc5\xdf\xe8\x1b\x02\x6e\xfb\xd6\xa4\xe5\x4c\xc0\x52\x4e\x8d\x48\xaa\x73\x03\x10\x92\xaa\xe0\x72\x14\xdd\xa0\xf9\xb6\xbb\x24\x64\x5e\x98\xc4\x8a\x12\x13\x0e\xd3\x93\xf8\x5a\xaf\x04\x5b\x3d\x62\xd4\x39\xca\xa2\x74\x52\xb0\x61\xb8\x6d\x07\x34\xf1\x71\x6b\xbe\x83\xde\x8b\x9f\x31\x0b\x13\x99\xa7\xa9\xe1\x7c\x5a\xd6\x14\x12\x1c\xe8\x4a\xa9\xf9\x10\x0f\xa8\x91\xa9\x43\xb1\x1a\xe7\x18\x3c\x44\x92\xfc\xba\xfc\x3b\x7d\xfd\x99\x83\x53\x2b\x26\xf7\x9a\x48\x6e\x3a\x52\x2e\xc8\x8d\x47\x3a\x21\x82\xf6\x30\xb7\x66\xd8\xc9\x4d\x39\x46\xe4\xfa\x36\xd9\xb9\x7c\x7b\x92\x44\xb3\xb7\xd9\x36\x49\x92\x65\xa9\x44\x72\x07\x3e\x10\x10\x41\x3b\xf8\x8b\x49\x3c\x15\x6c\xbe\x35\x54\x78\x77\xa3\x40\xba\xde\xa2\xf9\xf4\xb8\x9b\x58\x84\x69\x77\x37\x03\x49\xe0\xbb\x58\x81\xde\x85\xd2\x67\x60\xe7\xb0\x00\x5c\x27\x62\xfb\x36\xd8\xb7\xaf\x8a\xd7\xdd\xa2\xcc\xad\x2d\xf5\x14\x07\xa2\xa6\xb9\x86\xbe\x99\xc0\x37\x66\x0f\x35\x57\x65\x64\xb9\x41\xf3\xc6\xa4\x9a\x7e\x98\x24\x34\xc5\xe9\x4e\x00\x06\xdc\x88\xab\x11\xd9\xb3\x40\x3d\xc5\x0b\x61\x7a\x9b\x86\x6b\xb2\x3c\x10\x81\x61\x0b\x1a\x64\xf4\x3c\x55\x3f\x2f\x7b\xc3\x7c\x9a\x9c\x3f\x4e\xc9\x69\xe1\x94\xa8\x1b\xde\xb9\x0a\xf5\x36\xfe\xcd\x07\x94\x48\x0e\xf2\xb8\x63\x1f\x61\x62\xbb\xdc\x47\xc7\x52\x20\xaf\xcd\xd7\xc0\xbc\xd0\x4c\x02\x37\x07\xc1\xe5\x3d\xa4\x30\x2e\xc7\x90\x27\x84\xdf\x06\x42\x09\x88\x6b\x1f\x08\xe8\xe6\x0a\xce\x30\xbb\x08\x91\x71\x8a\x23\xcf\x68\xbc\xfe\x74\x34\xa6\x56\x57\xfd\x2e\x57\xbb\x7e\x56\xab\xc8\xc6\x55\x5a\x2c\x97\xa6\x24\x02\x49\x42\x10\xe4\xcf\xc9\x90\x84\x0e\xa5\xb7\x68\xb2\x0b\xa9\x22\x58\xac\x33\xeb\xdb\xab\xc3\x7d\xb3\xcd\x81\x49\x7b\x26\xed\xaa\x02\x33\x1a\x6c\x7f\xc1\x74\xad\xbf\x98\xe0\x0a\x3e\xf5\x54\xb5\x89\xda\x89\x23\x6e\x39\xe9\x95\xc6\x97\x67\xbd\xf2\x4a\x4d\x23\xb4\x69\x92\x2c\x85\xe2\x8a\xd3\xfb\xa8\xee\x1a\x40\xac\x8d\x51\xf8\x7a\x4c\xe7\x3a\xa1\xb4\x1a\x51\x1c\xd3\xb5\x5f\x1b\x9a\x12\x97\x8c\xa7\x71\x8b\x94\xaf\x6f\xb1\x6c\x29\x46\x25\x1a\x54\x8d\x6f\x44\x3c\x6e\xbe\x11\x02\x43\x9e\x99\x6e\xc7\xc0\x64\xd2\x5b\x44\xbf\x25\x8f\xd3\xc1\x7a\x35\xcd\xda\x97\x86\x45\x19\x2f\xc6\x2e\xa0\x3b\xcd\x0e\x8f\xa8\xff\xc1\x61\x9a\x3f\x69\x5b\x93\x17\x6c\x80\x83\x06\xb4\xc3\x4d\x1d\xa1\xe0\xa5\x6c\x98\xa7\x41\x6b\x59\xb3\x7e\x6a\xf0\x5f\xa0\x86\x6c\xb5\x4d\x24\xde\x38\xa2\x67\xa0\x64\xdf\x63\x5d\xf7\x9d\xad\xed\x72\x38\x22\xa2\x61\xfb\x71\x27\x4b\xbb\xc3\x8e\x53\x19\xc2\x7d\x39\x85\xfd\xa1\x6f\x26\x0e\xf3\x43\xcf\x36\x3b\x46\xee\xd4\x73\x7b\x6b\x05\x5c\x9d\xb0\x45\xd7\x74\x49\x25\xea\x24\xab\x44\x9d\x9c\x88\x58\xcf\x2f\xec\xad\xb2\xdb\x72\x98\xba\xa7\xeb\x77\x3b\x8d\xab\x85\xa8\xb9\x18\xbf\xfc\x32\x0d\x76\xfc\x31\x3e\x5d\xdf\x44\xdc\x8b\x5e\xce\xfa\x00\x78\x7d\x3b\x2a\xcc\x1a\x5c\x24\xa8\xb0\x6b\x4b\x39\x9d\x77\x06\x70\x0c\x78\x18\xb3\xbf\x90\xa3\xa8\x83\xbb\xef\x51\x04\x1d\x93\x0b\xe3\x62\x29\x0e\xe8\x5e\x31\x49\x2c\x22\xdd\x73\xde\x17\x44\xda\x5d\x7e\xa7\x2e\xec\x1d\xf3\xb8\x46\xc2\x0e\xbf\x4e\x14\x3c\xd7\xc5\xb3\x12\xdd\x83\x0f\x26\xa0\xb0\x43\xcf\x36\x7b\x71\x57\x75\xec\x78\x3c\x1a\x50\xfc\x29\x29\x50\xd1\x31\xb8\xe3\xb3\x9f\x7f\x13\x15\x92\x06\x9a\xb3\x2c\x2f\x76\xca\xda\xf5\xfe\xcc\xfb\x1d\xd9\xe5\x96\xe0\x3d\x63\x9c\x68\x7c\xc0\x2d\x9a\x16\x3d\x39\x0a\x4a\xfd\x1b\x54\xa3\x15\x36\x2d\x6d\xda\xc1\x28\x3a\x62\xfa\x11\x36\x79\xb8\x49\x19\xc0\x05\x66\xca\xd8\x24\x99\x21\x1b\x03\x0c\x10\x03\x85\xfc\x14\xe1\x56\xf7\x04\xd1\xc6\x7e\x35\x22\x2e\xff\xc7\x7e\x1f\xb5\x87\x49\x62\x31\xe7\x80\x0f\xb8\x33\xa6\x26\x50\xfd\x52\xe0\x9b\x1b\xb5\x3e\x1e\x8b\x59\x56\x56\x19\x42\x23\xe0\xf2\x3f\x19\x8d\x49\xeb\x3f\x4c\xe4\xaa\x65\x8b\x73\xcd\xf9\x9a\x84\xb1\x6d\x58\xa6\xfa\xe1\x98\xfd\xae\x54\x3b\xe5\xc9\x46\x4e\x0d\xc2\xaa\xa2\x81\x6b\xcf\xb1\xea\xbd\x16\x00\xf8\x8d\xf7\xb7\x48\x57\x56\x58\x0d\x5b\x97\xea\xd2\xd2\xc1\xb0\xe8\xb9\x28\x06\xb2\xc8\x0f\x90\x78\xe8\x1b\xef\xae\xd1\xc9\xfa\xfd\xac\x1b\x03\x0e\x0d\x3f\xe3\xaa\xc6\x55\x7d\x57\x27\xaa\xd1\xb5\x62\x9a\x19\x8e\x0e\xef\xc9\x5b\x5d\xa1\x83\x3e\x1c\x4e\xb0\xb6\x92\xa5\x53\x10\x3a\x46\x27\xe6\x2c\xb9\xdc\x9e\x62\x7e\xe3\x66\xdd\x94\x5c\xd7\x0e\x6c\xda\x75\xbc\x67\xaf\x7f\x5b\xad\x0a\x7d\x53\xf3\x57\xf3\x07\x65\xee\xd5\xe6\xea\x39\x8f\x93\xea\xbb\xfa\xd3\x50\x1a\x5e\x8f\x88\x91\x78\x8b\x28\xca\x89\x59\x5d\xb3\x79\xf1\xa0\xdc\x42\x20\x3c\x37\xa3\xb0\x93\xe1\xdc\x8e\xfc\x6e\x57\x8b\x00\xde\x0d\xbe\xaa\xf3\x94\x3f\x3c\xb0\x1e\xf6\xfe\xf7\x65\xf3\xe0\xaf\x3f\x8d\x28\xa7\xd4\x20\xef\x6c\xe0\x6a\x88\x2d\xe9\x2b\x3f\x37\xb5\xe3\xe7\x34\x1e\xdd\x8d\x68\x34\x03\x72\x61\xa1\xab\xa0\xc7\xe6\xb0\x9d\xc4\x98\xc3\x94\x0b\xc3\xb1\xba\x45\x56\x3c\x9b\x14\x23\x76\xb7\xb8\xf5\x39\x54\xae\x13\x2e\x1a\x35\x9d\xbe\xa6\xe4\x4e\x55\x7f\x83\x22\xc2\xef\xd3\xbc\xee\xef\x13\xde\x5d\x1a\x8a\x4f\xb8\x5b\x7f\x18\x85\xce\xcd\x1f\x52\xda\x9d\x66\x5d\x92\x4d\x80\x33\x81\x73\xb9\xaf\x93\x8f\x1a\xc4\x49\xe6\xcd\x41\x9d\xdf\x28\x3d\xf4\x06\xb1\x19\x0a\xb3\x3a\x13\x08\xf7\xd7\x75\x39\x20\x69\xbd\x16\xd1\x40\x1b\x90\x35\xfd\x67\x6c\x61\xfc\x71\x8d\x2e\xf7\x7c\xb3\x17\x2f\xc1\x76\x13\x30\xea\x0c\x10\x27\x87\x49\x07\x45\xfe\x7b\x13\xcc\xb2\x85\xbd\xcd\x4e\x92\x79\xcf\x78\x27\xf2\x27\x97\xe2\xe4\xff\xd8\x29\x6a\x90\xe5\xa5\xed\xa2\x8c\x7e\xc1\xd3\xba\xc8\xdb\xeb\xc4\xc4\x57\xec\x9b\x6d\xb6\xe3\xbc\xec\x69\x9d\xe4\x65\xaf\x16\xf6\x7a\xd9\xab\x47\x7c\x2b\xd0\x24\xfe\x31\xd5\x8d\x4e\x04\x08\xa9\xac\x32\xac\xc5\x61\xe2\xbc\xc9\xd0\xfb\xb8\x4e\x6c\xfa\x33\x2c\x4a\xc5\x74\x9f\x64\x18\xbb\xe7\xe5\x5a\x03\x63\x22\x25\x35\x53\x87\xfd\x6c\x25\xb6\x45\x69\xf2\x06\x35\x34\xff\xa9\xac\x5e\x7d\x4d\x60\x77\x16\xe7\xd3\x4c\xc9\x57\x9a\x30\x0e\xeb\xd7\x49\xa6\xf3\xcf\xb9\x3d\x7a\x7e\x82\x1c\x2d\xd2\x13\x71\xba\x62\x8b\x12\xcd\x9a\x39\x07\x37\xfd\x95\xfc\x4c\x7d\xed\xf7\x5b\x27\x4b\x17\xe3\x6e\x75\x02\x4e\x53\x6b\xf3\x53\xea\xde\x03\x8b\x01\x73\x44\xb5\x61\x9c\xf1\x37\x19\x28\xbb\x3e\xd5\x34\xcb\x0a\x4a\xa4\xc0\x4e\xdd\x8a\x48\xc8\xe3\x6d\x22\xfb\x1d\xf7\xc7\xe0\x52\x12\x97\x9d\x1e\x1e\x38\xb6\x3d\x98\xf0\xfa\xba\x46\xc1\x7b\xbe\x59\xc2\x60\x2a\xcc\x95\xaa\xeb\x8a\xbe\xa9\x13\xa4\x2f\x7a\x59\x67\x99\x34\x2d\x3f\x62\xef\x9b\x8f\xb6\x0d\x26\x0c\xfb\x83\x32\xce\x52\x49\xc9\x94\x9d\x4f\x21\x00\x5a\x73\xc0\x30\xdf\x94\x92\x08\x2b\xea\x83\x11\x59\xbb\x9d\x62\xa4\xf3\x16\x75\x42\x86\x83\xb6\x35\x78\x42\x9e\x01\xc1\x8a\x5b\x01\x86\xea\x98\x3c\x8f\x6d\x77\x26\xa8\x3d\x43\xd0\xc1\x0b\x06\xfb\x99\x40\xe8\x7c\xe3\x13\xbe\x3f\x0a\x34\xfe\x07\xc6\x02\xe5\xdf\xfb\x5b\xbf\x38\x45\x6e\x68\x87\xe5\x36\xab\x24\x17\xee\x86\x73\xe7\x77\xcf\x66\xd0\x8b\xdb\xb9\x33\xcf\xc2\x91\xf2\x2a\x7b\x9e\xbe\x1a\x7d\xde\xdf\xb7\xb4\x0a\xb0\x71\x07\x13\xb7\x8d\x50\x9e\xa3\xce\xd2\xd7\x44\x96\xee\xdb\xf4\x7e\x52\xd2\x7e\x9f\x64\x38\x15\x2c\x40\x6f\x65\x73\x14\xf0\x8f\x4f\x23\x9a\x04\xfd\x58\x1e\x09\x92\x41\x85\xcc\xb0\xb6\x5e\x45\xd1\xec\x7e\x99\x27\x73\x58\x9b\x27\xb6\x80\x23\x27\x30\xc8\xe9\x56\xb0\x8c\xbd\x42\x10\xfd\x4d\x56\xce\x4c\x97\x86\xc9\xa2\x92\x08\xbd\xdd\x68\xb0\x1e\xad\x53\x67\x19\xa6\xdd\xdc\xc9\x82\x78\x1f\x1e\xaf\xc3\x78\x92\xa0\xc6\x32\x13\x25\x5d\x99\xad\x02\xf6\xb2\x01\x54\x4c\xdf\xd0\xbc\x68\xdf\xe4\xf9\x9a\x66\x27\x38\x13\xd5\xb7\x13\x2b\xf4\x96\x84\x49\x17\x66\x27\xf9\x44\x0b\xcd\xfe\x30\xed\x9a\xd4\xd2\x61\xb9\x41\x8d\xd6\x0d\x9f\x6d\x15\xc3\x76\xd1\xc9\xe3\xb6\x0f\xaf\x0e\x15\x23\xe5\xbb\xd7\x89\x1e\xb4\x6a\x92\x65\x67\x39\xec\xfc\x77\x64\x27\x38\xdd\xfa\x49\x5a\xe4\x92\xc9\x7d\x9c\x02\x50\x7c\x85\xc6\xc7\xaf\xd4\x65\x72\x32\xfb\x51\x1a\x2f\xbf\xea\x55\x37\x0e\x1c\xf0\xc4\xc0\x1a\xea\xc0\x62\x92\xad\xa6\x48\x31\x9d\x1c\x79\x68\x61\x5c\xac\xb3\x67\x5f\xb6\x65\x99\xe0\x2e\x01\x00\xbb\x46\xe6\xc6\xd7\x48\x0e\x69\x90\xf8\xb9\x60\xcf\x54\xc4\xc3\x73\xb4\x45\x1a\xdf\x13\xcb\x9e\x62\x8a\x1c\xbe\x00\x43\xf9\x56\xc8\xfe\x39\x4f\x60\xaa\xe1\xdd\x26\x59\xba\x34\x1d\x06\x9e\x9e\x94\x12\x0d\xe0\xc5\xb4\x6c\x7e\xe7\x63\x24\xcf\xc8\xe1\x23\x0f\xd3\xe0\x6b\x69\x65\x64\x05\xad\xef\xef\x10\xd3\x73\x17\xd0\x1b\x35\x2d\x1d\x91\x70\xd2\xf7\xc8\x81\x14\x9d\xf3\xad\x4b\x74\x38\xae\xda\xa2\xdc\x1d\x88\xe9\xff\x2f\xcd\x6e\xfd\xe5\x18\x79\x0b\xb2\x25\x58\x0d\x50\xf4\x45\xda\xa5\x22\x15\x3a\x0a\xa4\x29\x0e\x30\xe4\x93\x38\x45\xfc\xa8\xdd\x57\xbe\xa4\xa1\x0e\x7a\x28\xfa\xf7\x23\xf2\x28\x7d\x3b\xe2\x3d\xbb\x12\x17\x8e\x93\x0e\xec\xea\x86\x3c\x44\x7d\x4d\xc9\x81\x1a\x08\xb9\x55\xa5\x62\x68\xb8\x30\xa7\x8c\xb6\xfd\xb4\x9d\x5f\x98\x6f\xc6\x69\x27\xcb\x73\xdb\x29\x91\xe0\x38\x0a\x2d\x3a\xc4\xfa\xba\x66\xe6\x55\x6e\x9a\xcd\x21\x81\xae\xb3\x56\x11\xf5\x50\xaf\xd3\x94\x4d\x92\x69\x34\x95\xd3\xd5\x31\x9c\xa9\x7f\xb1\x81\x70\x08\x40\x0e\x52\xdd\xfa\x7a\xe2\x9b\xf7\xcf\x09\x39\xcb\x6f\x69\x67\x8c\x10\x86\x04\xce\x8f\x69\x66\x9a\x3c\x41\xc1\x88\x9c\x68\xb7\x1c\x79\xf8\x87\x9b\x64\xc8\x8b\x75\xeb\x36\xbd\xcb\x2e\x86\x69\x6e\x55\x3a\x90\xb4\xf0\x61\xbf\xe4\xe6\x7c\xb7\x03\x31\xf3\xcf\x56\x75\x50\x3f\xeb\xe4\xa6\xb3\x46\x8f\x02\x1b\xdc\xa5\x16\xdb\x77\xc6\x73\x7b\x9b\x6d\x6b\x07\xd3\x61\xf6\x00\x0a\x4a\xe8\x64\x5d\x1e\x05\xaf\xf7\x37\xe5\x18\x71\x1e\x89\x93\x9d\xa2\xb9\xa6\x59\xcd\xd7\x44\x67\xdd\x5b\x9a\xd3\xe0\x62\xf5\xa1\xc0\x67\x5f\xab\x93\xb0\xcd\x6d\x6a\xe2\xa2\x30\x69\x07\x81\xc3\x35\xba\xe5\x16\xea\x1b\x5a\x9f\xd9\x20\x4e\x71\x4c\x2e\xec\x0d\xc7\xb9\xe7\x36\x9c\x23\xb6\x64\xcf\x74\x9f\x94\x47\x8e\x86\x3b\x4e\x7d\xc4\x97\x3b\x51\x38\x19\xaf\x02\xbd\xc0\xa5\xff\xac\x1c\x6b\x40\x90\x77\xb6\x48\xdb\xe5\x2a\x16\x8c\xf7\x2b\x5d\xd8\x7b\x30\x28\xb1\x56\x91\xc9\x8b\x64\xed\x77\x2d\xf1\xb7\x24\xe5\x90\x2f\x3c\xfd\xb8\x10\x5b\xf1\xb9\xff\x2c\x22\x73\x9f\x8b\x2c\x5d\xd0\x58\x0f\xa7\xe3\x16\xc0\x6c\x4f\xbc\xae\xe2\x00\x8a\xc2\xd7\x59\x3b\x06\x44\x5e\xd7\x1f\x25\x37\xb9\x87\xd7\x6b\x6c\x74\x93\x61\xda\xe9\x91\x43\x01\xf2\x45\x60\x5a\x77\xc7\x9a\x15\x75\xad\x30\x9b\x24\xd9\xaa\x74\x04\x5d\x99\xd4\xf0\x46\x8b\xf0\x8a\x73\x3c\xbf\x50\xcc\x98\xc2\xa5\x84\xd3\xe1\x18\x57\x2a\x95\x03\x14\xc2\x59\xaf\xec\x61\x07\x2e\xd4\xe4\xea\xfd\xb8\xe8\xda\xbe\x35\x69\x96\x6b\xa9\xe3\xf8\xb9\x0d\xef\x2a\x18\x2c\x92\xbb\x71\xd1\x37\x30\x3f\x72\x8e\x4e\xf2\xcd\x78\x10\x70\x42\x72\x9c\xeb\x10\x9d\x5f\x1a\xe6\x18\x68\xc0\x33\xc5\x2d\xd6\xd7\x63\xbe\x9e\xbd\x61\x3e\xfd\x6f\xd3\xe6\x18\xeb\x8b\xd4\x91\x12\x7b\x06\x8a\xd0\x38\x30\x4e\xe1\x2e\xb0\x75\x22\x8d\x0f\xb8\xed\xba\xa3\x55\xeb\xef\x9c\x5b\xdb\x95\x5b\xed\x7c\xb5\x29\x71\xc7\x2a\xa2\x29\x37\x3f\x66\x85\xab\x52\x80\x8f\x41\x66\x9a\x27\x3b\x4b\x0f\x6a\xcc\xc4\x2c\x4b\x8b\x58\x54\x74\x76\x55\x37\x03\xeb\xe1\x9a\x64\xf7\xfa\x3a\x22\xad\xc7\x37\x46\xac\x83\xf4\x46\x14\xa8\x4c\x18\x06\x75\x1c\xff\x70\x18\x9c\x21\xe5\xb0\xa5\x2c\x81\x75\xa2\xee\x44\xa8\x50\xe3\x64\xbe\x14\x85\x74\xff\x0c\x20\x36\xe4\x2a\x5a\x5d\xb8\x80\x24\x17\xe3\x98\x9a\x04\x50\x9a\xbe\xdd\x1d\x1a\x50\xb7\xc8\x38\xe5\x78\x44\x3a\x8a\x1b\xd2\xbe\x71\xe1\x06\x3f\x06\xf8\xd1\xa7\x51\x40\x85\xcf\x62\x89\x23\xdf\x3e\x1a\x35\xbe\xf8\x55\x2d\x4d\xa1\xda\x0e\x94\xff\x8f\x24\x5a\x78\xcf\xf3\xea\xba\xf4\x93\xa8\xea\x29\x6c\xd2\xcd\xfa\xd3\x55\xf0\x42\xc9\x7d\x19\x91\xc1\x4f\xfe\x7a\x55\xbe\xcb\x88\x25\xfa\x3f\xa8\x93\xd1\xcd\x63\x45\x3b\x41\xb9\xbf\x4a\xea\xd3\x57\x99\xe4\x8f\x09\x1d\xf7\x4b\x8f\x8d\x88\xb0\x7d\x8c\x9e\x78\x31\xec\x74\xa0\x3a\x0e\x6d\x7b\x6f\x77\x32\xff\xec\x41\xad\x09\x1e\x5d\x0f\x07\x88\x0e\x3e\xeb\xff\x68\x51\x7b\x80\xa6\x8f\xb5\xf5\x8a\x7c\x14\x2a\x09\xfa\xd7\x12\xab\x9d\x9c\x4b\x4d\x6f\x23\x8f\x97\x62\x90\x76\x80\xe8\x5f\xa2\x99\xc1\x4b\x51\x28\xb9\x97\x6c\x6a\x73\x19\x6a\xa2\xbe\xee\xb4\xce\x42\xea\xbb\x75\xea\x69\xb6\x87\x85\x45\xc9\x83\x4d\x02\x89\xfe\x2d\xc4\x2b\x44\xdc\xe3\x24\xf6\x60\x3a\x65\xbc\x12\x97\x6b\xbb\x08\x51\xfc\xd7\x72\x29\xa0\xb5\xa8\x3e\xa0\xd7\xf2\xae\xae\xc1\x2d\x7c\x59\xd1\x78\x73\x86\x78\x27\x8f\x61\x52\xc5\x89\x06\x3c\x4a\x5b\x6e\x30\xd0\xce\x17\xc0\xc7\x53\x00\x19\xf5\x4d\x68\x38\x89\x26\xe4\xf4\x18\x8d\x73\xcc\xeb\xd3\xeb\xa7\x3e\xd4\xa2\xbc\xed\x4e\x5d\xef\x6c\x90\x67\x2b\xd9\xf2\x36\x97\x93\x73\x24\xbb\x3b\x09\x38\xbc\xf8\xa2\xf7\x2b\xf1\x39\xf3\x1d\x9e\xbd\xbf\x13\x74\x35\xb2\xb6\xe9\x74\xb2\xe9\x20\x58\xa1\x5d\x1a\x5c\xd1\x75\xb9\x54\x74\x29\x76\xb6\x02\x2e\x73\x98\x8e\x9a\x2a\x3b\xb4\x59\xb9\x36\x40\x37\x4a\x51\x06\x09\xde\x0e\x71\x78\x9c\x67\x0e\x06\xca\x81\x0b\xed\x1f\x9d\x65\x75\xf3\x27\x35\xc4\x82\xbe\x29\x4b\x6f\xba\xef\xf3\xed\xea\x8f\xf4\x4d\x9d\xc6\x58\x51\x66\xb9\x59\xc2\x24\xaa\x1b\x9a\x08\x2c\xff\x73\x44\x53\x19\xa6\xa9\xad\x76\x96\xc9\x95\x8b\x84\x87\x86\xf6\x86\xf7\x7e\x0b\xbc\xa4\xda\xf6\x46\x99\x2d\xd9\xb2\x57\x2d\x8f\x05\xa7\x70\x7a\x31\x1a\x6b\x61\x78\x8d\x8a\x38\x5d\x96\xab\x72\x60\x55\x18\x79\x7a\x2f\x7a\xc8\x37\x05\xe3\x55\xed\xc9\x6a\x1d\x42\xc3\xba\xa7\xfc\x67\x75\x87\xcb\x48\xe0\x10\x59\x4f\x71\x98\x3d\x45\x33\x28\xc5\xb2\x2d\x3b\xbd\x35\x29\xdb\xb1\x17\x4e\x8d\x02\x35\xe3\xd4\x98\x41\x69\xe6\x4b\x56\xe5\xc8\xca\x7d\x70\x7c\xd9\xed\xa1\xa0\xaa\x2d\x7a\x71\x6e\xa7\x68\xc6\x4e\xc9\x3a\xde\xdd\xe1\xcb\xb3\x7a\x13\x3e\xa8\x87\x78\x4d\xa2\x74\x6a\x6f\x3b\x57\xfd\x0a\x7d\x43\xec\xc3\x5e\x5c\x3e\x44\x63\x76\xd7\xe5\x93\x1d\xed\x28\x50\x80\x60\x4b\x8a\x2a\xed\x3a\xb6\x28\xd2\x00\xa5\x66\xba\xfa\x8b\x60\xe1\x13\x92\x6d\xeb\xbf\x42\x22\x80\x86\xdc\x51\x28\x63\x22\x4a\x28\xe7\x07\xa1\xfe\x86\xdc\x40\x74\x57\x6e\x92\x64\x93\x7d\x79\x90\x64\xdd\x6d\xae\xc4\xaa\xf5\xa2\x6f\xbc\x24\x55\xcf\xa4\xdd\xce\x70\xd1\xb9\xfb\x61\x11\x40\x5b\x4a\x5f\xd7\xc5\x84\xdc\x0e\x72\x2b\xfe\x5e\x54\x5b\x61\x50\x14\x31\xf3\x26\x7e\x81\x4e\x0c\x8e\x82\xe6\xee\xb1\x1a\xff\x90\xf9\x2a\xae\xad\x6d\x43\x29\x46\x63\xe8\xed\x63\x6c\x9d\x1a\xe7\x7d\x93\xee\xe6\x68\x4c\x8c\xb9\xdb\x32\xf1\xe7\x38\xc2\xc1\x6e\x1f\x93\x5a\x78\xed\xf4\xe5\xd0\x38\xbf\x4c\x8d\xdc\x87\xd7\x49\x44\xf3\x37\xb8\xcc\x14\x2d\xc9\xb9\xad\xe3\x38\xae\x9c\x05\x84\xdb\x2c\x26\x71\x7d\x76\x9c\x3f\x50\x06\xd1\xd7\x74\xd2\xc6\x2b\x98\xe4\xc2\xd3\x3c\x2f\xad\x62\xb4\x2c\x41\x43\x41\xb5\xa5\xb9\x0a\xb0\xd9\x4d\xea\xa5\xf7\xad\x29\x77\xf2\x24\x58\x95\x1d\x00\xf4\xfb\xde\x88\xe4\x3d\xde\x05\xcc\xc5\xfd\x70\x44\x91\xb3\x51\x38\x06\x6e\x4e\x70\x8a\xf6\xed\x6b\xb6\x93\x4c\x5b\x34\xda\x49\x95\x1f\xe2\xba\xaa\x35\xfa\xcd\xa5\x69\x27\x59\xdc\x9d\x1a\x9b\xe7\x6c\x90\x32\x36\xd5\x0a\xd4\x86\x6b\xdb\x24\xb6\x8b\x85\xdc\x32\x64\xac\x67\x88\xdc\x75\x86\x9d\xd5\x6d\xbe\x64\x73\x61\x2f\xa1\x97\x76\x9d\x25\x75\xd4\x24\x04\x59\x3a\x84\xec\x31\x3a\xf0\x2e\xbb\x8a\x9d\x63\x29\x8c\x73\x63\xb6\xe0\x76\x90\xac\xc9\x2d\x75\x3e\xd0\xd5\x17\xe1\x7a\xd5\xb1\xce\xdb\xd2\x06\xc6\xce\x51\xec\x69\xe7\x23\x5d\x7d\x2b\x2e\xe7\xda\xc4\x39\x00\xb6\x44\x3b\xee\x16\xac\xe9\xa1\xb2\x0a\xfa\x86\x30\xde\x8e\x49\x77\xcb\x85\xfb\x06\xc0\x73\x7b\x35\x90\x3c\x0e\x9d\x31\xe0\xb0\xc7\x47\x8d\xa7\x9e\x72\x2b\x24\x1a\x47\x7e\x16\x5c\xa1\xf6\x7f\xcb\xa1\xef\xc6\x76\x1b\x5e\xa2\xf2\x22\x4d\xa6\x4d\xaf\xd3\xb8\xac\xca\xac\xe0\x6e\x4e\x36\xd1\xe1\x3c\xb3\x34\x8c\x8b\x71\x9c\xe2\x4f\x08\xa7\xf8\x93\xda\x59\x9e\x6e\x5c\xe4\xc3\x81\x9f\x97\x72\x85\x5e\xf5\x67\xae\x1a\xac\xd7\xb5\xed\xba\x49\x70\x17\x4c\xc3\x9c\xd2\x8f\x47\x64\x42\x7d\x39\xd4\x7e\x36\x19\xbe\x2c\xa9\xc0\xd6\x25\x9d\x1b\x27\xdf\xd7\xd2\x24\x56\xfb\x6b\xae\x75\x22\x9f\xe2\x7a\x27\x93\x4e\xdc\xb3\x4d\x93\xeb\x08\x5d\xf5\x5c\xe8\xf9\xcd\xfa\xe7\xf7\x38\x09\x83\xc0\x81\xae\x80\x80\xad\x43\x9d\x43\xc2\xb5\x11\x05\x5d\x23\xbb\x62\x3a\x43\x01\xac\xb8\xa3\xff\x3a\x77\xf4\x5f\xe7\xa1\xf2\xac\xb8\x9f\xd4\x06\x5e\x93\xb5\x01\xdc\x66\x6a\x1d\x11\xcd\x97\xd6\x0b\x7b\xc3\xee\xf7\xa7\xf6\x06\x16\x8a\x27\x7a\x78\xc9\xa9\x5b\xd8\x2c\xb2\xec\xff\xe6\x4f\x4d\x14\x98\x07\x0e\x54\x37\xae\x9d\xf0\x41\x3f\x6e\x8f\xb2\xbd\xa1\x3d\x37\xd7\x5c\x1a\x02\x94\xc2\x7a\x85\x2e\xad\xbe\xa6\x38\xb0\x62\x4b\x9b\x9b\x74\x3a\x70\x0d\xf5\x81\xb8\xc1\xb2\x50\x29\x1c\x8f\xe8\x50\x66\x41\xe2\x8e\x59\x31\x49\x6c\xa1\xaa\x08\x68\xfe\x37\x47\x63\xa1\x1b\x37\x07\xc9\xd3\x39\x5c\x2c\xc2\x76\x5a\xc6\x9d\x78\x00\x59\x4b\xc9\xb9\x3d\x0b\x20\x30\x02\x98\xad\x98\xad\xda\x7c\x4f\xc3\xfb\x59\x3f\xb0\xde\xd8\xb7\xcf\xcd\x6b\x20\x12\x39\x70\x68\xcc\x40\x89\x34\xfe\x3e\xc1\xa4\xb5\x23\xab\x55\x1b\x14\x29\xe4\x8e\x75\x0a\xfa\xc7\x46\x41\xe5\xf2\x9f\x22\xde\xa1\x05\x75\x17\x70\x39\x4a\x8b\xff\x91\xa7\x6e\xce\x4a\xe5\xad\x13\xcc\xad\x70\xf0\x3d\x04\x0a\x14\x0a\x93\x23\x11\xc9\x4f\x1d\x26\x0d\x05\xc9\xf2\x01\x9e\x36\xe8\x80\xc2\x57\xbb\xd3\xca\x6d\xb1\xbe\xc9\x97\x95\xc6\x5b\x2b\xe1\xbe\x3d\x6e\x38\x7a\x64\xdb\x74\x96\xa7\x83\x47\xe9\xae\x56\x00\x98\x8f\xca\x9d\x70\x53\x50\xf2\x69\xd8\x5c\x93\xc3\x03\x5f\xfc\x6a\xd3\x0c\x06\xd6\xe4\x48\xf8\xdc\x53\x95\x5f\xa9\x5e\x40\xa3\xc0\xba\xdf\xa4\xcc\x12\x2c\x5b\x0d\xc4\x64\xc5\xe3\x7d\x79\x3c\x0d\xac\x28\xcd\x22\xbc\xa8\x90\xdb\xbc\x23\xeb\x50\xad\x7c\x58\x68\xe1\xdb\x3c\x82\x00\x2d\xf4\xe9\x30\xad\x70\x3e\x28\xca\xae\x1f\x25\x6d\x98\xa3\x72\xf0\xbb\xe4\x66\x32\x60\xce\x35\xb3\x76\x61\xf3\x15\xeb\xc0\x2e\x3c\xe2\xd7\x85\x8c\xa9\xaf\x3d\x76\xdc\x8d\x8b\xd2\xa4\x1d\xcf\x04\x51\xec\x42\xd6\x1c\x40\xcc\x9b\x94\x99\x9d\x81\x4f\xf5\xf8\xee\x5e\xec\x23\xd1\xc7\xb9\x77\x98\xf0\xbd\xc3\x5e\x93\xa0\xca\x14\xb3\x21\x1a\x50\x2e\x4d\x24\xb1\x91\x49\x03\x98\xd9\x43\xcd\x81\xcd\x17\x6d\x07\xf3\xf8\x8e\xb4\x1e\x2e\x6b\xc7\xba\x5b\x50\x79\x96\x24\xb6\x3b\x2d\x8f\x02\xd5\x91\x1a\xaa\x81\x7c\x8b\x58\x43\x1c\xfa\xf9\xad\xd3\x35\x93\x28\xf3\xd5\x13\xe8\xc7\xc3\x7e\x83\xcc\xd4\x6e\x92\x48\xdc\x64\xc6\x23\xda\x3f\xed\x21\x0c\xe5\xc6\x64\x06\xb0\x29\xcf\x92\x5a\xcc\x5d\x4f\x7a\x4a\xe2\x04\x2c\x34\xfc\xc5\x4d\x32\xad\x53\xa0\x11\xc0\x4c\x90\xe4\x19\x24\x50\xae\xf6\x09\xe2\x23\x2d\x62\x11\x6c\x06\x85\xd6\xaf\xdf\xe1\xb9\xfa\xc3\x63\xb0\x63\xdf\x76\x1f\x93\xe0\xe1\x3a\xb8\xd5\xc7\xa1\xa3\x75\x97\x7c\x69\x3e\x87\x1a\x01\xfb\xea\x63\xcc\xcb\xe8\x5f\x20\x5e\xe0\x9f\xdd\x43\x8e\xe8\x08\xa9\x88\x57\x4e\xca\x58\x16\x92\xf3\x0f\x09\x89\xc3\x4f\xad\x93\xb1\xfe\xc7\x11\x99\x28\x00\x8f\xc2\xeb\xfb\x65\xde\x04\x70\xa3\x66\x5e\xde\x3e\x7f\xf6\x90\x57\x4e\x91\x1b\x80\x95\xb0\xab\x45\x78\xca\xb0\x1b\xdb\xb4\x63\x67\xd0\xb7\x55\x9d\x11\xc0\xf0\xee\x1e\x57\x3f\x16\xe9\xc6\x87\xc1\x62\xfe\xc9\x6b\xe3\xca\x24\xae\xc4\x71\xcc\x45\xcd\x3d\x70\xe2\x4d\x41\x62\x56\xdf\xac\x3f\x46\x4d\xf9\x7e\x9c\x5a\x3f\xb1\x39\xa6\x0f\x39\x26\xee\xeb\x0c\x23\xea\xd0\x58\xd3\xce\x56\xac\xb0\x10\x70\xe2\x41\xf2\x05\xad\x5a\x49\x4a\xbc\xab\xd5\x18\x59\x2e\xc8\xb8\x4f\xa6\x43\x07\x0e\x34\xfb\x81\xf7\x5c\x27\x27\x56\x47\x35\x35\xc9\xa2\xc0\xfe\x4e\xe2\x33\xc0\xfe\x5b\x02\xaf\x39\x47\xc9\x1a\xff\xd8\xae\x79\xe5\x95\xc4\x07\x15\x6c\xa0\xeb\x24\xcf\x06\x78\x1c\xb0\xf7\x5b\xa3\xcf\x91\xf8\x29\x48\x7d\x42\x16\x25\x3f\xab\x93\xf8\x7d\xd8\xc5\xaf\x8e\x42\xce\x7c\xa1\x0e\x3b\xe9\xda\x95\xcc\xa7\x8b\xd8\x0c\x3a\x53\xa6\x6f\x88\x62\xda\x37\x89\x15\x18\x1d\xa7\xe2\x35\x24\x10\x8e\x15\x2d\x9f\xe0\xf8\xd2\x01\x96\xbb\x46\x13\x73\xa5\xed\xf4\xd2\x2c\xc9\x96\xc4\x87\xff\x05\xef\x44\xcd\x96\x19\x23\xe2\x81\xa8\x42\x9a\xd7\xfc\x5a\xd8\xab\x41\xf7\xb4\x94\x57\xde\x31\xe3\xb9\xf1\x73\xc0\x75\xb5\xc2\x66\xff\x53\x44\xb9\x31\xc2\x12\xee\xee\x29\x2f\xe9\x3c\x4c\xd3\xea\x24\x10\x86\xf6\xd6\x2d\xf9\x6d\x5b\xb7\xea\xc6\x41\xd6\x62\x9b\xa0\x9d\x80\xda\x61\xcc\x37\x0f\x24\x63\x65\x4a\x62\x01\x3b\x1a\xf3\x1e\x9a\x43\x14\xaf\x57\x70\xdf\xbd\x97\xcf\x7e\xef\xeb\x43\x47\x69\x62\x05\x10\x23\xe9\xb0\x06\x44\xa1\xd5\x8f\x35\x9a\x98\x6f\xd0\xa9\x92\xea\xf3\x20\xe5\xf4\x82\xf7\x6e\x95\x55\xe2\x5c\x89\xfd\x11\xbc\x6a\xd2\x65\x62\x5e\x68\x8e\xe1\x66\xdc\x7d\x64\xcd\xb2\xbc\x2a\x0f\x9f\xf3\x73\xe9\x04\x19\x4e\xaf\x57\xe7\xac\x97\xae\xaf\x62\x27\x7e\xca\xcf\xb4\x42\xff\x41\x67\x5b\x5d\xf6\x19\x8a\x85\x32\x37\x2b\x36\xb9\x9f\xa4\x61\x1d\xee\xef\xf5\x47\xfd\x1c\x28\xa8\x09\xb8\xd7\xc7\x88\x78\xf9\x2e\xe2\xaf\xf3\x42\x09\xd5\x0b\x54\x1d\xf1\xfa\xd2\xc4\x0e\x90\x73\x29\xb7\x85\xe5\xb3\xf3\x32\x1d\xe9\x97\x6b\x4c\xce\x17\x6d\x92\x18\x4c\x40\x82\xd6\xa3\x72\x21\x58\xfc\x57\x23\x8a\x78\x1f\x93\x89\x60\x3f\x2e\x8b\x61\x3b\x2e\x7a\xb1\x7a\xfc\xa1\x16\xba\x42\x9d\xb5\xc6\x7a\xf8\x75\x7a\x3e\xd2\x9b\x79\xdf\xe7\x0d\xd5\xfc\x4c\x8b\xdc\x51\x8f\xb3\x3b\xaa\x22\x28\xda\x19\x07\x04\x86\x5e\xdc\x24\xbe\x70\xe0\x40\xb3\x9d\x67\x69\x27\xd3\x34\x48\x27\x26\xd8\x6d\xeb\x1e\xc1\x23\xcb\xa6\x7c\x85\xc8\xdd\x23\x26\x77\x8f\xa8\xea\x5f\xcc\xf2\xbe\x43\x80\xb5\x5e\xd0\x07\xeb\xaa\x87\x50\x74\x7d\xd9\x74\xa6\x88\xe9\x75\x3b\x62\xda\x36\x56\xb6\x63\xd4\x3f\x4e\x1a\x88\xc5\x20\x83\x23\x6e\xe8\x40\xfd\x39\xe9\x05\x6f\xf0\x20\xde\x25\x9f\x58\x74\xbf\xd0\xf9\x02\x33\x11\xf1\xaf\x1c\x2d\xb1\xa6\x8b\x3e\x30\x89\x2d\xca\x38\x8d\x4d\x2a\x1d\x0b\x27\x8d\x13\xa2\xc0\x9f\x23\x5f\x7a\x75\x22\xcb\x84\xc1\xc0\xe2\x90\x28\x0e\x8e\xda\xd9\xf0\x52\x71\x67\xa8\x51\x96\x64\x4a\x5e\x71\xbd\xaa\x6a\x6f\xb9\x3f\xc1\x61\xed\x07\x1a\x7c\x43\xee\x0e\x3b\xf7\x7d\x42\x1e\x90\xd7\x79\xee\x5c\xcd\x82\x9d\x66\x67\x60\xdd\x68\xcf\x5b\x65\x35\x47\x34\xb7\x7e\x89\xa6\x11\xfb\xf1\xcb\xb6\x2b\xbf\xdf\x39\x96\x35\xbc\x0d\xa2\x96\x55\x68\xaa\x1e\x8b\xc6\xbc\x33\xad\xc9\x83\x23\xa6\x36\xd9\x47\xe1\x4f\x2f\x61\x9d\xb9\xa6\xb1\x4f\x56\xe3\x15\x93\x14\x98\x69\x40\x42\xa2\x54\x6f\x24\x73\x1f\x51\x2d\xfd\x1b\xef\xb2\x97\x10\x70\x31\xb4\xdf\x2e\x52\xd8\xcd\xad\x64\x87\x0a\xd7\xba\xd4\x51\x3e\x45\xdf\x50\xe0\xb5\x2f\xcb\x34\x9f\x04\x5e\xe8\x4e\x5c\x87\x2e\x1a\x30\xe1\x0f\x69\x42\x5c\x41\x26\xc5\x07\x23\xd2\x8a\xfb\x1e\x16\x16\x4a\xa7\x5b\xc8\xf6\x90\x36\x6d\x4e\xc4\x95\x6a\x9d\xa4\x5f\x58\xc1\xba\xf4\xee\x0a\xd5\x9f\xeb\x9b\x28\xd8\x9b\x2f\xc6\xa9\x75\x2d\x0c\x1c\x6a\x1f\x8f\xc2\x85\x22\x8d\x77\xd9\x0e\xb5\x06\x06\x59\x59\x7a\xb8\x9a\x66\x75\xe6\xfd\xac\xce\xf6\xa5\x5f\x95\x48\x62\x19\xd9\xce\x4c\xde\x6d\x04\x25\xd3\x73\x44\xc8\x65\xa0\xaf\x3d\xcc\xbb\x36\x45\x47\x0c\xc9\xd0\xe9\x88\xc4\xcf\x4f\x93\xd8\xc2\x79\x9a\x79\x3d\x4f\x9b\xba\xb4\x89\x1d\xf4\x64\x3c\xce\x93\xdb\x6e\x8f\xc9\x65\x61\xad\xab\xba\xda\x98\xcc\x61\x20\xb2\x14\x09\xdc\x93\xe4\xa0\xc6\x01\xa8\xce\x8f\x9e\x18\x52\x5d\x96\xbe\x21\x81\xe9\x13\x5c\x69\x0e\xf1\x19\x14\x14\xef\x6b\x05\x72\x36\x58\x08\x58\xf2\xe3\x03\xb0\xdb\x73\xc4\x17\x5f\x6c\x76\xad\x41\x17\xd5\x63\xca\x24\x28\x16\x68\x97\xdd\xa1\xf8\xb8\x0b\xdd\x07\xeb\xe6\x3e\x29\xe5\x58\xda\x03\xbf\xfc\x12\x4f\x0d\x95\xb9\x4d\x97\xca\xde\x2e\xc9\x0d\xb0\x27\x1a\xc8\x4b\x74\x8c\x1b\x5b\xc7\x89\xcd\x86\xc2\xf3\xf4\x88\x24\x85\x1e\x94\x31\x7a\xa7\x5d\x24\x77\xd9\xa1\xfa\x35\x55\x67\x6f\x58\xb4\x4d\x0a\x14\x1b\xa7\xa5\x52\x97\xf5\x4d\xad\x27\x5d\xbc\xd4\x93\x47\x82\x2a\xf9\x2d\xea\x94\xdf\xa4\x36\x8b\x72\x3a\xdc\x6c\x5c\x9d\x41\xb9\xed\x64\x69\x97\x64\x08\xae\xe0\x81\x7a\xff\x50\x3f\x4e\xb1\xa3\x55\x17\x92\x93\xb8\x6d\xf3\x30\xb6\x03\x26\xc3\x0f\xc7\x74\xf7\x7e\x48\xc2\x23\xed\xc4\xbc\x62\x21\x1b\x8a\xfb\x86\x75\xa7\xaf\x7d\xcc\xea\xf4\xac\x55\xbb\x42\xe4\x2e\x20\x7d\xe9\xeb\xf5\x1a\xd6\x8f\xc9\x97\x86\xe3\x25\x93\x62\x9e\xfa\xa6\x06\x29\x9d\x6f\xe6\x26\x49\x62\xe7\x8c\xae\xa4\x16\x9e\xf0\x3e\xc5\x36\x62\x43\x72\x94\x05\x66\x8f\x51\x64\x7d\x4d\x67\xf0\x7f\xf6\x1f\xff\x27\xf2\x0b\xb1\xad\x6f\x09\x11\x43\x5f\x13\x47\x24\xc9\xd2\xa5\x87\xab\xfb\xee\xb8\xa4\x61\xf2\xf4\x12\x1b\x81\x41\xd3\x19\x3b\xe2\xfb\xf2\x59\x9a\x09\x23\x20\x38\x56\x21\x4d\x99\x1c\x8b\xe8\x78\xc4\xd4\x37\xee\xdc\x16\xc2\xbb\x3a\x68\xe2\x78\x72\x43\xe4\x01\x05\xba\x87\x24\xc7\xb5\xb7\x27\xba\x2e\xb3\xcd\x81\x59\x72\x96\x25\x6c\xe0\xed\x5a\xf7\x64\x47\xbc\x8c\xfe\x11\xa2\xcf\x49\x61\x79\xe2\x3c\x85\x8d\x34\xb6\xc8\x4d\x5c\x3c\x6a\xb3\x9d\x13\x4a\x89\xf3\xcf\x1e\x6c\xf6\xe3\x6e\x99\xad\x82\x54\xe9\xc4\x34\x02\x50\x7c\x79\x02\xd0\x7d\x6e\xef\x0b\xcd\xa5\x0c\xed\x3e\x37\xcb\x5e\xfd\x7b\xc8\xc3\xa0\xbe\x71\x49\x67\x75\x81\x2e\x7d\x20\x86\x69\xbf\x9d\x9b\x8e\xed\xce\x34\x48\xe1\xb7\x31\x2e\x03\x1c\x9c\x95\x83\xd0\xcf\xc5\x71\x7d\xe0\x49\x85\xcb\x85\xbd\x0b\xb2\xdd\xc6\x92\x04\xaf\x7e\xed\xa5\xa8\xbe\x5b\xeb\xca\x3f\xc8\xad\xe9\xb2\x07\xf3\x1b\x44\xac\xbb\x82\x94\x19\x37\xf8\x66\x1d\x6d\xbd\xec\xd9\xdc\x0c\xd6\xc8\x2c\x05\x0d\x33\xd7\x41\xa9\x6b\x27\x94\xbd\x3c\x1b\x2e\xf5\xa6\xaa\xe2\x41\x6f\x59\x14\x5a\xf6\x53\xad\xd0\xa1\x7b\x60\x9d\x2c\xeb\x96\x72\x6b\xfb\x36\x2d\xa5\x13\x86\x3c\x4f\xb5\x21\xf4\xb4\xc7\x5a\x04\x7e\xfc\x8e\x3c\x10\x9c\x00\x3f\x8c\xa8\x71\xf1\x2d\x6c\x47\x05\x6d\x26\xd6\xe2\xd3\xcd\x4e\x62\x86\x85\xdd\x29\x2b\x16\xc8\x9e\x8e\x8a\xa2\x35\xbd\x31\xda\xe1\xb8\xf4\xa7\x68\xe8\xe4\xfe\x16\x8d\xb0\x1c\x27\xe9\xa3\x6f\xf8\x3a\x16\xe2\xcf\x06\xf7\x0a\xe7\xfa\x6d\xea\x92\xde\xae\x99\xff\x6a\x76\xe2\xbc\xe3\x65\x38\x9c\xbf\x9f\xfc\x66\x7d\xc3\x9e\x63\x89\x29\x4b\x9b\xb2\x14\xbc\x96\x3c\xfa\x66\xc4\xa1\x62\x05\xc1\x10\xa7\xc8\xeb\x51\x80\xcb\x5f\x27\x5b\x88\xc5\x78\xb1\xec\x89\xd2\x32\xfa\x2a\x2a\xb0\xe0\x40\x66\x12\x87\xb9\x16\xb1\x63\x19\xb4\x8b\xb4\x13\x8e\x6b\x70\x8d\xb7\x9a\x03\x78\x90\x67\x1a\xec\x75\x58\x66\x9d\xc6\x0e\x77\xb4\x3e\x37\xbe\xe0\x9f\x9f\x3d\xd4\x9c\x9b\x3b\xf8\x28\xe9\xf1\x3f\x00\x2c\x11\x87\x03\x6a\x4c\x84\x5b\xe0\x8a\xae\x84\x23\xab\x0e\xe5\x14\xe8\x1b\x09\x55\x60\xa3\x1d\xe1\xb6\xfb\x7d\xad\xa0\x96\x75\x63\xc4\xce\x37\x17\xb1\xd6\x10\x68\x7f\x5f\xe2\xe9\x18\x91\xd3\x4d\xc5\xc8\x56\xf4\x34\x86\x30\x04\x7c\x8f\x48\x6a\x10\x8e\x61\x38\xa8\x11\xdc\x53\x46\x41\xc7\x12\xe4\xcf\x06\x25\xd7\xa7\xa9\x57\x7b\x9a\x55\x9a\x86\x9d\x8e\xb5\xc8\x0a\xd5\xc2\x43\x2e\xd1\xd9\x79\x4c\x26\x93\xcf\x34\x4d\xb7\x1f\x97\x18\xbe\x0b\xa5\x2e\xa2\xb0\xbe\x26\xc5\x97\xb6\x49\x12\xed\x22\x38\x5c\x40\x7e\xb6\x83\x05\xd8\x31\x71\x48\xda\x36\x67\xc8\xc6\xf9\xcc\x44\x6c\x78\x5a\x84\xac\x0b\xef\x1f\x8f\xb5\x74\x9e\xc5\x3a\x27\xc9\x18\x07\x0e\xa8\xd9\x9e\x47\xea\x80\x2c\x7e\x4c\x5c\xec\x5b\x34\xe0\xc9\x0c\xc3\x4e\x96\x26\xca\xf8\xc7\x63\x45\x0e\xa9\xaf\xd7\x3d\x10\xd3\xcb\x56\x0d\x59\xda\x68\xf6\xaf\x6f\x88\x1c\x33\x48\x3a\xc8\x48\x7d\x36\xe7\xbb\x5e\x1b\xe3\x74\x0e\xac\x25\x97\xa5\xd7\x69\xa2\x98\x62\xd9\xca\xb0\xf6\x74\x98\xd5\xdc\x20\x8d\x9b\x13\x34\x14\x0b\xbc\x05\xa5\xdf\x8e\x56\x6d\x48\x8b\xfb\xea\x83\x85\x20\xff\x29\x42\xa2\xa7\xa7\xec\x9b\xf5\xd4\xb8\xb0\x30\x8b\x8e\xe0\x8a\xb3\x87\x14\xca\xfe\x10\x8b\x1e\x75\x2d\x30\x7f\x7d\x3d\x0a\x78\xf7\x87\x3e\xe5\xb2\xb9\x70\x70\xe4\x6f\xbc\x29\x73\x30\x68\xa6\x31\xa5\x24\x2e\xca\x42\x7e\x27\xf9\x4a\x79\x93\x29\xc1\xcc\xdd\x74\xae\x20\x73\x6e\x6c\x37\xac\x78\xd3\x37\xaf\xc4\xe9\x92\x8c\xbf\x72\x0d\xce\x1c\x69\x87\xcb\x54\xd7\x00\xb4\xf2\x2e\x1e\x8a\x13\x35\xa9\x61\x83\x2c\xc6\xb9\x9a\x97\x63\xc6\x1e\x28\xbf\xbe\x9e\x08\xd8\x2f\xbe\xd8\x4c\xb2\xd5\x60\xab\x59\x27\xb3\xb1\x27\x8c\x53\x96\x59\xee\x11\x5e\x77\xb8\x34\xbc\x47\xe0\x46\x34\x79\xd2\xcf\x2f\xcc\xdf\xdf\xf0\x72\x37\xd7\x00\xad\xe1\x6e\x28\x07\x16\x61\xf6\x13\xb2\x05\xb8\x23\xf7\xcf\x6b\xa0\x56\x37\x76\x6c\xf4\x1f\x28\x49\xa3\x15\x2a\xa0\xdf\x8c\x9e\xf0\x2b\xdf\xe4\xb6\x97\x25\x5d\x3f\x6a\xee\xaa\x1d\x2c\x60\xb5\x38\x1f\xd1\x62\xba\xe1\x35\x00\xfa\xb6\x1b\x97\xc6\xfb\x3c\x00\x5e\x78\x5f\x6e\x86\xbe\xae\xf7\x7c\xcc\xda\x71\xca\x12\xd3\x4a\x65\x73\xd6\xe4\x35\xdd\xbb\xa7\x8a\x86\x94\x57\x4e\xa2\x4b\x16\xba\x1b\x35\xdf\xfe\x1d\xfb\xe7\x9a\xf6\xe5\x41\x96\x97\x88\x16\x0e\x0e\x6c\x78\x8b\xd2\x4d\x6a\xec\x5f\x9e\x14\x07\x5e\x98\xff\x39\x1d\xe3\x6a\x84\xe8\xfb\x2e\xb1\x7c\xde\x0d\x4d\x2f\x9b\xc7\x4e\x80\xd9\x33\x3e\xe6\x02\xff\x3f\xa8\xe5\x75\x86\x79\x6e\xd3\x4e\xac\x12\xb9\x5e\xb1\xae\xba\x0b\x4e\xb1\x8e\x4a\xe8\x52\x1c\x2e\x40\x17\xf3\x7e\xb8\xbe\x43\xf8\xcf\xe9\xa0\x2f\x56\x0d\x6c\xd1\x81\xe8\xe8\x47\xea\x9b\x89\x05\xbc\x6f\x5f\xb3\x67\x95\x0c\x50\xdd\x1c\x80\xf4\xe7\xa9\x3b\x77\x9e\x54\x95\x8a\xd5\xb8\x80\x60\x23\x20\xe0\x1b\x34\xb0\xa8\xb8\x00\x96\xdd\x4f\x6a\x30\x95\x66\x1e\x17\xcb\xc8\x85\xb0\x9d\x30\xeb\xa3\xaf\xa3\xdd\x21\xa8\x16\x52\x96\x02\x2e\x3d\x21\xbb\x9a\x74\x89\xdd\x58\xd2\x89\x28\xb8\xec\x9e\x26\x6e\xec\xa2\xed\x8a\x6b\xa7\x63\x98\x00\x55\xfb\x3a\x6b\xba\x7e\xbd\x6e\xe6\x4a\xec\x71\xf5\x58\x56\xe1\xbd\x88\x45\xf8\x1c\x60\x99\x9a\xc2\xb0\xb9\xc5\x9f\x47\x8c\x3c\x4e\x98\x62\x0b\x93\x36\x8f\x4d\x6a\x1a\x84\x4c\x6f\x8c\xc6\x94\x7f\x42\xce\x5b\xc4\x25\xe8\x31\xa4\x5d\xb5\xc1\x7c\xf1\x3b\x63\x93\xb2\xd5\xbd\x51\xcb\xb1\x28\xf4\x5e\xee\x48\xd3\xdc\x59\x91\x71\x3f\xb5\x93\x15\x33\xa1\x3f\x7f\x52\x88\x83\xfa\x5a\x74\x1c\x50\xa6\x2b\x13\xd1\x49\xde\x8f\x2b\x62\x4f\x96\x49\xcd\x55\x5b\x4e\x55\x65\x19\x50\xd2\xbf\x94\x2b\xf4\x0e\x5f\xfb\x66\x3d\x14\x43\x62\x6a\x89\xb5\xcb\x58\x71\x8e\xd0\x48\xe4\x46\xae\xfe\x52\xb3\x93\x85\x64\x31\x3a\x87\xb6\xc7\x96\xac\x52\xcf\x15\x3e\x70\x20\xc8\x9c\x56\x77\xda\xa9\x20\x12\xee\xf7\x60\xab\x2e\x11\x4a\x4c\x67\x39\x19\xa2\xd1\x48\x5a\xbf\xe1\xc3\x4f\x12\x72\xd7\xcd\x86\xed\x44\x07\x7d\x1d\xc5\x28\x54\x94\x1b\x23\xe7\x1f\x9b\x66\xa9\x4e\xaa\x39\x13\x53\x57\xe7\x49\x6c\x73\x85\x5e\xc0\x8d\xda\x71\x92\x78\x75\x33\x00\x02\xaa\xb5\xab\x6f\x18\xda\x33\x69\xaa\x29\x93\x63\x70\x8f\x71\xbb\xeb\xb0\xc3\xc2\x94\x71\xb1\xb8\xe6\x77\xba\xd3\x4a\xa8\x3e\xc4\x69\x28\xf0\x52\x59\x31\xc9\xc3\x5e\x69\x71\xe5\x2e\xd6\xa0\xb7\xf1\xf5\xe6\x11\x1f\xc9\x5a\xf3\xc9\xde\xec\x21\x0f\x89\xc9\x43\x40\xf2\x71\x39\x1a\x53\x40\xaa\x56\x2a\x58\xb9\x37\xc8\x39\x5d\x4b\x3b\xfd\x8a\x88\x0a\xa0\x73\x0c\xb5\x21\x06\xe0\xe1\x9e\x27\x42\x79\x31\xb0\x9d\x58\xc4\xa9\xd0\x0f\x02\xe1\xe6\x38\x8f\x42\x6e\x92\x5f\xcb\x79\xa2\x86\xbf\x02\xf1\x47\xac\xbe\x0f\x49\x85\x61\xaa\x45\x45\xca\x7d\xeb\xe1\x01\x74\x6c\x51\xa4\x1a\x06\x90\xdf\x03\x4b\xd0\xd7\xd4\x51\x8b\xd3\x6e\xec\x1d\xbf\xf0\xd5\x77\x46\x01\x45\xfc\x21\x51\xa8\x7f\x88\x87\xa8\xff\x68\x52\xdf\xf7\xd9\x83\x02\xf8\x58\x95\xdf\x72\x14\x25\xba\x88\x49\xbd\xe8\x2a\xec\xda\xce\x5a\x55\x52\x82\x54\x88\x66\xe0\x71\x9a\xff\x57\x83\x7e\x3c\xa9\xef\x4e\x94\x6b\xcf\xcf\xcb\xec\xb6\xdc\x21\x00\xee\xa7\x47\x54\x89\xdd\xc6\xd9\xeb\xea\x80\x1a\xa4\x47\x32\xaa\xa9\x30\xc8\x00\x65\x69\x80\x1b\x97\x47\xc4\xb6\xff\x80\x1c\x38\x5f\x1a\x76\x97\x6c\x71\x3f\x09\xdb\x01\x29\x43\x7a\x77\x53\x02\x9f\x97\x68\x7b\x6e\xaf\x0f\x76\xd5\x47\x83\x2e\xf7\x2a\x29\xef\x9e\xc0\x38\x98\x93\x60\x91\x4a\xf0\xb3\x34\x58\x66\x0f\x35\x87\x69\x31\x70\xf6\xcc\x40\xa5\x37\xb8\x51\x3d\x89\x71\xa0\x77\x69\xe2\xae\x72\x15\x70\x37\xde\x8c\x02\xe0\xf8\x66\x8d\x1d\xcf\x5c\xb3\x28\xf3\x78\xa0\xe9\x82\x03\xd4\x83\x12\x7d\xd0\x31\xe9\x67\x69\x91\x69\x56\xe5\x08\x98\x0d\xaf\x84\x70\x81\x96\xdb\xc0\x14\x85\xed\xce\x54\x7b\xd2\xc9\x75\xc8\xa7\x03\x1c\x7a\x47\x56\x1e\x98\x29\x6f\x8f\x02\xa6\xff\x3e\xcd\x95\xde\xdf\x72\x1a\x69\x03\xe3\x54\x1d\xb0\x68\xde\xc5\xc3\xd2\x37\x13\x23\x8b\xde\xeb\xab\xe8\x0d\xab\x1c\x9a\x3a\x91\x17\xe9\x79\xb1\x24\xe5\x2f\xff\xd2\xdf\x9e\x26\x4d\x8f\xe3\xc4\xa2\x06\xef\x02\xcc\x87\xff\x73\x14\xbc\x52\xee\x6b\x85\xc3\xd2\x0e\xf3\x6c\x60\x55\xf5\x77\x96\x47\x43\xfd\x9c\xe8\x98\x43\x7b\x99\xda\xa2\x90\xf1\x32\x97\xf6\x06\xe0\xff\x37\x51\x68\x60\x25\xde\x11\x62\xa1\xbe\x0e\x3a\xd9\x8b\x8b\xa2\xad\xed\x19\x4d\x27\x49\x7b\x45\x27\xff\xb0\x0f\x8f\xf0\x51\x57\x65\x9e\xdb\x8c\x22\xaa\xed\x83\x94\xf0\xd5\x71\xd7\x88\x90\x2b\xbe\x4a\x1f\x31\x28\xfe\xde\xdf\xfa\x45\x49\xbb\x70\x3e\xe3\x10\xf4\x02\x1d\xfb\x66\x15\x1c\xbb\x42\xac\xdc\x76\x5c\xed\x7a\x1f\xed\xc1\x25\x3e\x45\x43\x1a\xa7\x88\x66\xfb\x4b\x7f\xe7\xef\x92\xac\xdd\x69\xf9\x48\x7d\x3d\x91\x2a\xb9\xc7\xdc\xcd\x44\x0c\xdd\x03\x6e\xd5\x6f\x02\x2a\xfc\x60\x0b\xad\x51\xe7\xde\x19\x32\x99\x53\x9c\x58\x7c\x5a\xeb\x50\x65\x92\xb6\xcd\x4b\xa4\x6e\x6e\x83\xd3\x4a\xda\xa8\x0d\x8b\x1d\xd3\x8e\x53\x5b\x92\xce\xd2\x79\xd2\x59\x3a\x4f\x52\x1a\xdd\xb8\x53\x8a\x88\xdf\xec\xa1\xd0\x9f\xd8\x1f\xec\x2c\x3c\x83\xca\x0b\x7b\x57\x3f\x12\xd9\xf3\xab\xf8\x91\x9e\x01\xe7\x73\xd4\x3b\xb5\xa2\x62\x71\x21\x5a\xe5\xce\xa2\xab\x8e\x17\xfd\x08\x29\x21\x99\x2e\x72\x4f\x15\x71\x61\xe5\xfa\x13\x35\x7c\xc9\x17\x9a\x45\xd6\xb7\x65\x2f\x4e\x9f\x6a\x84\x95\x71\x39\x0a\xcd\x96\xcb\x13\x9a\x9d\x07\x0e\x34\x73\x2b\x2a\x5a\x1d\x93\xa2\xba\x03\xb0\xbd\xa5\x39\x1e\x33\x95\x5c\xc9\x4b\x5e\x4e\x65\x96\xda\x62\x9a\xc0\xbd\x11\xfa\xa8\x88\xe5\x60\xcd\x01\x1d\xff\x34\x0a\x7d\xdf\x77\x7c\x4e\xd4\x37\x9d\x3c\x83\x00\xb5\xe6\x44\x8e\xad\x1c\x3a\x83\xe7\x49\x3b\x22\x8f\xbb\x76\x26\xe4\x85\xea\x0e\x81\xb2\xf0\x7f\x27\x65\xce\x6f\x46\xec\x6f\xf0\x3a\x02\x80\x13\xc3\xad\x91\x60\x33\x45\x31\xcc\x31\x86\xff\xdc\xde\x50\x67\x84\x9a\xa3\x96\x13\xbf\x64\xe2\xd4\x0f\xc4\x01\xec\x7f\x8d\x5b\xd6\xaf\xd5\x19\x77\x17\x46\x7d\x19\x11\x25\x6e\x45\xe4\x6f\x75\x6b\xc4\x16\x42\x59\xa9\x74\x6e\xaf\x3a\xe3\x27\x05\xb6\x50\xe9\x23\x00\x9e\xac\x3b\xb1\xfa\x71\x37\x71\xfd\x3f\x3c\x8d\xb7\xd8\xa7\xe1\x2d\x3a\x59\xc5\xc4\xb1\xd8\x1d\x5a\xb5\xd7\x46\x41\xdf\x46\x1d\x4c\x91\xce\xa9\xec\x18\x12\xb2\x0d\xc9\xf3\xd0\x57\xf8\x00\xd7\xa3\xff\x63\x44\x70\x86\x1a\x1f\x21\xf9\x47\xd4\xc7\xcf\xd1\xde\xa6\xc3\xf4\x1a\x5e\xae\xe1\x3a\xd5\xc4\xba\x34\x8a\xb2\x98\x96\x60\x0c\x96\x95\x4a\x26\xe2\x4c\x44\xcd\xa8\xaf\xe5\xf3\xf5\x1f\x85\x96\x7c\xcf\x8a\xc4\x36\x5a\xf2\x28\xf8\xce\x52\x03\xeb\x81\x56\x00\x5e\x1b\x13\xd2\xb3\x2f\xbe\xd8\x34\xd0\x66\x4d\x1d\x1f\x12\xe9\xf7\x35\x7e\xd4\x2a\xc1\x0f\x5c\xee\x41\xf2\x03\xb0\xdd\x61\xc7\xf8\x2d\xef\xcc\x86\x1b\x73\xc1\x84\xd8\x5d\xe6\x72\x9c\x2e\x0d\xe2\x54\x97\x93\xb3\x81\x97\xef\xd0\x37\x91\xf7\x11\xfe\x2f\x1f\x11\x06\x3c\x76\x24\xe4\x88\x9c\xea\x24\x2e\x31\x34\xe0\x7c\x3b\x89\x68\xf6\x67\x19\x5c\x7b\x60\x9d\x58\x1c\x5a\x1c\xc9\x2f\x7c\xec\xe7\x5b\x61\x26\xe8\x86\x1c\x01\x48\x1a\xbe\x8f\xe4\xc9\x11\x96\x04\x81\x42\xf9\xff\xae\x3c\x0c\x40\x9f\x18\x69\xc7\x7e\x9c\x59\x0f\x77\x64\x31\xcb\x6d\xc7\x14\x6a\xe0\xad\xcc\x77\x79\x70\x8e\x05\x1f\x7a\xfc\xa2\x59\xdb\xb1\xd3\xf2\x15\xc8\xe8\x00\xea\xfa\x2c\x82\xe7\x79\x16\x5c\xd6\xf7\xf1\x84\xed\xe8\x73\x7b\x9b\x71\x0e\x46\x52\x11\xb7\x13\xdb\x98\x62\xcb\xbf\xea\x53\x9c\xc4\xea\xf6\x2d\xbb\x7f\xae\xd9\xc9\x86\x03\xa4\x64\x28\x02\xde\xa3\x82\x80\x0d\x41\xd2\x78\x79\x39\x23\x77\x2e\x28\x00\xe9\x6b\x8f\x08\x65\x8b\x8b\xb1\xea\x7d\x80\x32\x76\x22\x22\xfe\xd8\x89\x51\x70\xd8\x5b\x8d\xcb\x5e\x37\x37\xab\x72\x36\xf9\xea\x60\xbf\xaf\x14\x46\x63\x6c\xae\xaa\x0a\x90\x7d\xa1\x7d\xb1\x11\xf7\xc8\x6a\x8c\xe2\x86\xe9\xa2\x89\x73\xc5\xfa\x91\x15\x1f\x89\x02\x66\x78\x64\x22\x73\x9f\x3d\xd4\x2c\xb2\x61\xda\x95\x98\x84\x3a\x4c\x03\x02\x56\xd5\x0d\x76\x23\x99\xd4\x87\x96\x94\xb8\x63\x4a\x93\x64\x4b\x9a\xe1\xaa\xae\x0a\xa9\xa6\xb2\xb0\x76\xc7\x0c\xab\xcc\x95\x88\x98\xef\x46\x63\x9c\x8e\xe7\x3d\xdd\x08\x25\xa0\xfe\x0f\x59\xe8\x2e\x14\x6d\x0f\x8d\x87\x9e\x15\x8a\x60\x9c\xc6\x12\x84\x5d\x8f\x92\x47\xbe\x48\x0d\xa3\x6f\x72\xdb\x90\xc5\xae\xa4\x70\x6a\x49\x5f\xa4\xc9\x91\x38\x2d\xab\x0f\x5d\x92\x69\xd0\x79\xe2\x77\x07\xf5\x98\xad\x88\x30\x9b\xff\x07\xb7\xca\xfd\xab\x40\xc8\x6a\x0f\xf3\x2a\x45\x2b\x9d\xfd\xc4\x78\xb3\xc0\x11\x69\xb7\xc7\xa8\xfd\x73\x4d\xb3\xb8\x18\x77\xcd\x4a\x5c\x36\x08\xde\xe5\x19\xb7\x8b\xd1\xe7\xdc\x02\x5c\xb1\xb9\x13\xeb\x52\xca\x98\x0a\x39\x22\x70\xa3\x02\x00\x5d\x1b\x6d\xd5\x8f\x09\xee\xb0\x2f\x0f\x12\x13\xa7\xb2\x26\x01\xa1\x7f\x88\x44\x59\xdf\x78\x1e\x5f\x96\x76\xec\x23\xf2\x9b\xd1\xfe\x80\xac\x8e\x70\xf0\x77\xfe\x42\x4b\xcc\x2a\xbd\xbb\x52\x20\x1c\x9f\xe3\x46\xeb\xf4\x7a\x15\xbf\x70\x97\x3e\xa5\xe3\xfd\xb6\xdc\x57\x9c\x64\xf7\xe4\x37\x0a\xd0\xf4\x5f\xff\xcd\x75\x62\x3d\x5f\x1c\x91\x03\x8b\xb2\xf9\x01\x60\xfe\x6f\xb2\x42\xe4\x69\xbf\xf1\x33\xad\x2a\xae\xb9\xc4\xaf\x86\x70\x2e\x6c\x0e\x0d\xca\x63\x8e\xa3\xfa\x66\x82\xff\xf2\xcb\xcd\x81\xf8\xb0\xe2\x94\x47\x7b\xf1\x6d\x26\x8b\xbd\x5d\xe3\x20\x3f\xd7\x0c\xd3\x91\x34\x4e\xe4\x87\xa7\x6a\xf4\x0c\x9b\xed\xac\xf0\xb2\x9a\x5e\xba\x3d\xb0\xf8\xce\xd6\xe4\x2c\xcd\xb8\x0f\x7d\x4d\x94\xfe\xde\x84\xc1\x67\xc6\xff\x62\x44\x40\xfb\x59\x9a\x51\xd3\x11\x57\xc4\x4d\x24\x66\x47\x88\x98\x75\xc4\x4f\x0d\x0d\x12\x93\x16\x0f\xc8\x0f\x41\xf0\x71\x47\x92\x53\x1c\x6a\x78\x4d\x96\x5d\xec\x8f\xaa\x5b\xc2\xb9\x31\xd1\x8c\xdf\x0e\x21\x3e\xd1\xcc\xe1\x9c\x87\x4d\xe4\xb7\xcb\x9f\x1c\xfd\xe9\x31\xd1\xc2\x2f\xc4\x5f\xd0\x4a\xd5\xcb\x4b\x06\x89\x87\xf3\x04\xaf\xbe\x62\x3a\x3d\x93\xc7\xa6\x98\x22\x67\xb9\x37\xb1\x5a\x54\xb5\x46\xae\xd8\xb1\x54\x49\x87\xc2\x14\x71\x9a\x4d\x07\x95\xd1\xbb\xb2\x42\xd1\x7a\x3c\x39\xc6\x17\x90\xa0\xed\x5c\x14\xdd\x79\x2f\x76\x67\x12\xb4\xab\xf8\xa2\x69\x89\xc4\x17\x97\xa2\xd4\x0e\x9d\x77\xaa\xed\xeb\x5a\x46\xce\xa4\x5e\xee\xa3\xbe\x21\x7a\x67\xcf\xa4\xdd\xaa\x28\x48\xd4\x6f\xd5\x99\xfa\x87\x9a\xff\x02\x71\xfb\x24\x0f\x5c\x8d\x0b\x64\xd8\x48\x65\xae\xb3\xa5\xc3\xfb\xe4\x6b\x70\x09\x9b\x5e\xdf\x90\x92\xcd\x79\x4f\x5e\x1f\xa6\x71\xc7\x4e\x85\x6c\x1d\x7a\x19\x80\x84\xb5\x9a\x71\x1e\x6c\x8f\xd0\x30\xb2\x78\x48\x55\x5f\x8a\x67\x81\x7e\xac\xb3\xc5\x94\x5f\xad\xff\x63\x3d\xf8\x31\x7c\x7d\x44\xd3\xa7\xa2\x99\x17\x17\xfd\x9d\x21\xa7\xdc\xa4\xd1\xa0\x4d\x71\x79\xc3\x81\x72\x03\x93\x84\x0a\x5c\x8e\x02\xd2\x32\xd5\x0a\x83\x84\xbb\xeb\xd4\xa4\x16\xad\x58\xb6\x78\xbc\x15\x4f\xce\x6d\xc3\x9a\x12\x43\xc4\xe5\xcc\x92\xb6\xe4\xbd\x7c\x56\x10\x90\x1d\xe3\x09\x99\xbc\x8a\x3a\x00\x9c\xbc\x66\xf8\x5c\x30\x41\xab\x41\xf5\x3a\x49\xdc\xf7\xd0\xb2\xb7\x3c\x9f\x0b\x96\xe7\xa1\xba\x9f\xcd\xe0\xb1\x07\xec\x4c\xfd\x77\xf5\x4d\x9d\x06\x9c\xa8\xdd\x75\x2d\xc2\x93\xd3\x9b\x6c\x78\xcd\xa6\x8d\x7a\x07\x6b\xc7\xa9\xf6\x63\x42\xd8\x55\x6e\x66\xc8\x35\x18\x83\x87\x80\x5e\xbb\x17\x5c\x24\x77\xc7\x70\xed\xfb\x67\xbf\x88\x44\x5e\x87\x39\xe5\xc9\x22\x01\xb9\xc6\x52\xdb\xf7\xea\xdc\x50\xfb\xc3\xd2\xb9\xa9\x80\xef\xf6\x47\xf2\x2d\xfa\x9a\xb0\x77\x58\x4d\xa8\x71\x15\x31\x5b\x67\x3d\x12\xf7\x18\x57\xea\x00\x99\x25\x1a\xe1\x54\xfa\x5e\x44\x64\xcf\x57\x99\x42\xf5\x41\x1d\xc1\x7f\xd5\xe4\x41\x3d\x5a\x75\x15\x24\x7d\x76\x1a\x0b\x9f\x65\xb6\xd1\xcf\x52\xbb\x36\x4d\x5c\xe3\xb3\x64\x56\x07\xc5\x59\xef\xee\x32\xe7\xcd\xf5\xdf\x9f\xe8\xa0\x3e\xdd\x6c\x0f\xd7\xa6\x83\xd7\xd9\x6e\x70\x99\x54\xfc\x47\x3e\x13\xab\x74\xc7\x7a\x68\xb2\x71\xf7\x72\x69\x68\x73\x71\xa7\xd5\xdb\xeb\x3d\x49\x43\x59\x74\x9e\x28\x9b\x03\x9b\x17\x59\x3a\x13\xb0\x89\xf7\x22\xb2\x99\x9e\x02\x3b\x96\x3d\x92\xb1\x15\x1f\x16\x29\x39\x14\x90\xb7\x6b\xd9\xfc\x6d\x9b\x76\x7a\x7d\x93\x2f\x93\x8a\xea\x51\x6a\x4a\x1e\xad\x11\x03\x9c\xaf\x0e\x79\x19\x11\x43\x3a\x79\x66\x44\x51\xe1\x3c\x8d\x36\xfd\x09\x41\x70\x6d\x53\x76\x7a\xb2\x97\x71\x93\x4e\x48\x70\xd4\xd7\x13\xcf\xf8\x69\x3f\xa0\x4d\xd0\x8f\x76\x7e\x9c\x32\x8d\x97\xad\xaf\x0a\x77\x99\x68\x00\xd6\x84\x36\x07\xc6\xe4\xd4\x93\x80\x8e\x89\x5f\xa7\x89\x64\x51\xbe\x61\x89\xb1\x0d\xde\xda\x1b\x1e\xcb\x2a\x87\x79\x7b\x98\x38\x40\xdb\x85\xc2\xea\x33\xf5\xf5\x28\x88\xf8\xaf\xd8\x14\xda\xbc\x63\x4e\x6b\x63\x2d\xab\x27\x28\x0f\xb6\x2b\x71\x98\x92\x57\x37\xf1\xa8\x41\xce\xe2\xdb\xbb\x85\x07\x0e\x34\x73\xa3\x9d\x59\xc7\x45\x61\xdd\x94\x5a\x2e\x7e\xcf\x18\xd9\x2c\x32\x45\x25\x02\xa3\x94\xb4\x9b\xc4\x76\xf0\x79\x48\xf7\x3e\xa2\x61\xb3\x49\xde\xf3\xfc\xc2\x7c\x33\xd1\x78\xe8\x7d\x9c\x7c\x3d\xfd\x3a\x49\x3c\x0f\xd3\x22\x4b\xe2\x4e\x5c\x62\x4a\xd7\xd1\x0b\x2e\x8e\x88\x78\xc0\x32\xb1\x2a\x65\xa7\x6f\xa2\xc7\x88\x9b\x95\xaf\xc4\x2b\xd5\xf1\xe1\x79\xe4\x68\x68\xe9\x6b\x4a\x4f\x72\x5b\x64\xc9\x8a\xf2\x9a\x5c\x91\x74\x49\x76\x04\xf9\x4f\xcc\xea\x26\xda\xa4\x2f\xd1\xd2\x59\x2d\xbf\xd4\xc9\x0a\xff\xd8\xd9\x5a\xd1\x50\x78\x9c\xac\xd8\x7c\x8d\xe6\x9a\x31\xa7\xe0\x2c\xe0\x89\xcc\xd5\xe9\xed\x66\x61\x67\xc8\x2c\x78\xda\x3e\x1b\x43\x49\x82\x80\x3d\x7c\x3f\xe6\xef\x5d\xb5\x45\xd6\x54\x34\x26\x36\xbd\x1e\x4e\xae\xc7\x5b\x55\x75\x37\x46\x7e\x75\x06\xe3\xb2\xa2\x9d\xb3\x7d\xc0\x71\x07\x79\xb6\x12\x77\xed\xc3\x02\x15\x20\xf3\xdc\xc2\x3e\x56\xa2\x0f\x72\x07\xef\x3d\xb3\xdf\xc1\x3f\x37\xa4\x90\x74\xc0\x01\x5b\x15\x91\x53\xca\x59\xd4\xe8\x4c\xd1\xd7\x32\x69\x14\xc8\x38\x7f\x06\x59\x03\xfd\x72\x59\x45\xfa\x15\x02\x9e\x20\x0b\xda\x22\xb2\x58\x6a\xfa\xd3\xc4\x15\x3c\x3a\x22\xa6\xf9\x51\x52\x54\x3c\xc2\x5c\xe6\x23\xd1\x93\xd4\x22\x2e\xfa\x26\xef\x2c\xc7\xd8\x41\x2f\xe8\x3a\x38\x12\xd1\xa2\x38\x42\x4b\xd8\xcf\xfb\xe4\x05\x74\x5a\xb5\xbd\x1f\x85\x81\x91\xd3\x34\x1f\x7a\x56\x6e\x93\xc3\x79\x02\x2b\x0c\xea\xc8\x41\x5f\x63\x9c\xd1\x13\x8c\xbd\x73\xdb\x37\x71\xda\xb5\x39\x59\x38\xab\x95\x1e\xe0\xb6\x4b\xd1\x58\xc1\x16\x80\x1f\x53\x96\xa6\xb3\x0c\xa5\x53\xc0\x6d\xb7\x89\x17\x1f\x38\xfd\xa9\x5d\xad\x62\x3d\x35\x93\x2f\x93\xbb\xcf\xe5\x51\x18\xcb\x59\x8a\xa5\x9f\x8f\xb5\x8b\x7a\xef\x13\xd6\xe9\xfa\xc4\x0f\xf9\xab\x81\xda\x0c\xcd\xa0\xdf\xe5\x25\x0b\x44\x54\x0f\xa1\x11\x4f\x96\x34\xbc\xc1\xb1\x78\x4d\xf8\x69\xa5\x32\x37\xd8\x86\x40\xc9\xbe\x89\x5f\xad\x6f\x26\x80\x92\x85\xbd\x55\xc2\xb5\x12\x0b\x9f\xb1\x41\x50\xe7\x49\x82\x3a\x4f\x46\x4f\xd2\xb4\x71\x15\xa4\xc5\x63\x17\xcb\xc9\x77\x3c\x9e\x73\xf3\x3c\x47\x88\x05\xbb\x41\xe3\x51\x1f\x47\x9f\xa7\x20\xb0\x94\x8a\x16\x7b\x5a\x26\x6b\x33\x81\xf5\xa9\x9d\x77\x15\xa4\x94\x3f\xf6\x83\x8f\xd5\xb7\xe1\xb1\xaa\x1c\x10\xaa\xf8\xbf\xa2\x10\x06\xe3\xfd\x78\x45\x31\x37\xec\x46\x65\x95\xeb\x1b\xdf\xd6\x8c\xfb\x83\xa1\xe7\xc3\x01\x87\x3a\x43\x3c\xb6\x33\xd1\xf6\xd3\x63\xdf\xbe\xa6\x29\xa0\xe3\xe6\x59\xf3\x64\x1b\x3a\x59\x68\xcf\x36\xcd\xaa\x59\x9b\x0e\x4a\xb7\xff\xcd\x38\xfa\xd0\xf0\x72\x00\xf7\xf0\xb3\x5d\xd8\x09\x30\x9f\xb7\x11\x70\x39\x91\xd2\x53\xf5\x4d\x1d\xe4\xd4\xad\xd2\x61\xdb\x25\xbd\xb9\xab\x23\x8a\xaf\x13\xa0\xe3\x2f\x83\xaf\xc9\x7b\x1a\x0c\x2c\xb7\x5f\x27\x1b\x65\xb3\xaa\xe3\xd4\x20\xed\x4d\x74\xbf\x5d\x7f\xf8\x89\x71\x2e\xe1\x81\x03\xcd\xe7\xe7\x95\x4a\x83\xf1\x79\x30\x5c\x7c\xce\x37\x2e\xfe\xf8\x82\x33\x25\x88\x48\x43\xed\x16\x76\x90\xfe\xb9\x27\x36\xf6\x4d\x9e\xa5\x71\x69\x9d\x09\x06\xae\xe0\x4a\x44\x92\x26\x57\x26\x0e\xe2\xb9\x39\x31\x17\x6c\x34\xc8\x4f\x30\xd0\xb8\xbf\x5b\xd7\x4b\x49\xb2\xd5\x31\x6d\x90\x0b\xd1\x98\x66\x24\x7b\xd6\x7a\xf5\xc6\xb9\x40\x59\x99\xf3\xaf\xa3\x40\xc9\xec\xb7\xc9\xc8\xc5\xa1\x2f\x0d\x52\x79\x99\xac\x75\xbe\x36\x34\x49\x5c\xae\x11\x15\xef\x30\x51\xf1\x0e\x93\xf3\x45\x95\x98\xda\xd2\xe6\x05\xc9\xf4\xe0\xd3\xc9\x67\xfd\x19\xdf\xe6\x78\x88\x85\x2f\xe4\xe3\xbd\x34\x7a\x70\x53\x38\x37\xa6\x8e\x94\x3f\x4c\x6d\x95\xa9\x75\x1a\x1b\xb9\x23\x3a\x7d\xd8\xf6\x47\x09\x98\x3c\x4a\xf6\x2d\x4f\x48\xd1\x21\xff\xe6\xa7\xfe\x06\xa6\x97\xb1\x4b\x8e\x73\xcb\xf5\xc1\x96\xf0\x25\x9c\xea\xb3\xdc\x54\x3c\xa5\x5d\xeb\x63\xc2\x3e\xa4\x26\x08\xfe\x35\xea\xb4\xdf\x25\x21\xf5\x38\xed\xc6\x1d\x53\x66\x79\x31\x13\xfc\xeb\xfe\x74\x44\xbe\x1c\x20\xb2\x02\x31\xda\x24\x40\xf3\x4e\x44\x4e\x1e\x9f\x50\x38\xec\x54\xf9\xa7\x53\x72\xf7\x00\xbc\x26\x0e\xfa\x86\x70\x9c\x41\x6e\xcb\x72\x4d\xb4\x8c\xf1\x3f\xdf\x97\x24\x40\x5f\x47\x04\xad\x5c\x8a\x08\x74\xb9\x54\x6b\x1b\x10\x7b\x9e\x03\xb0\xab\xf7\xe4\x67\xeb\x6b\x92\x6b\x58\xb2\x20\x63\xbb\x24\x04\x2d\x21\xc2\x2a\x67\xb7\x6e\x45\x8e\x76\xb1\x68\x2d\x86\x8e\x1c\x46\x5e\xfd\x5b\x4c\xaf\x4c\xd1\xc4\x23\x54\xcf\x5c\xb7\x78\x82\x77\x38\x5f\x9d\xfe\xde\xa4\xd8\xab\x00\x23\x86\xbb\x6e\x77\x0d\xb5\x7e\x90\xe5\xe5\x62\x96\xc4\xe8\x6c\xe8\x9c\x37\xb6\xb2\x1b\xfa\x0e\x99\x41\xbf\xd3\x51\x07\x22\x1c\x17\x6f\x71\xd7\x9a\x2f\x10\x29\x87\x1f\xa2\x71\x78\xec\xc1\xcb\x35\xa8\xe5\x0b\xcd\x61\xba\x98\x98\xe5\x35\x7a\x9c\x27\x65\xd5\xba\x56\x47\x8d\x1f\x43\x27\x33\x79\x01\x35\x54\x6c\xa7\x4d\x72\x3f\xde\xa4\x24\xa5\x1b\x17\x65\x9c\xe8\x84\xcd\x0b\x3a\x8d\xb4\x8e\x15\xa8\x6f\x68\xcc\x7a\x35\x1b\x26\xdd\x27\x11\xd6\x70\xd4\x03\x28\x77\x47\x65\xc3\xdb\x51\x1c\x97\x82\x10\xf0\xa8\x8e\xf8\x3b\x60\x8f\xb0\xc8\x23\x51\x60\x8f\x4c\xb7\xc2\x83\x7d\x1f\xa3\xe1\xe8\x4a\x7d\x17\x71\x4d\xcf\xa8\xa8\x71\xe8\x59\x7a\xe4\xf3\xcc\x64\x3f\xa8\xcc\x84\xc3\xd8\x7b\xce\xab\x5c\x56\x1a\x2a\xfb\xbf\x14\x4a\x9e\x27\x52\x04\x54\xfc\x47\x58\x09\xb8\xa5\xb7\x85\xfc\x09\x2e\xc0\x87\x48\xa3\x01\x18\x5e\xa1\xd9\x89\x76\x96\x15\xa5\x02\xd0\x4e\xb2\x45\x6a\x21\x7d\x43\x9b\x6c\x25\xce\x12\x5b\x4a\xd3\x40\x01\x52\xb9\x6b\x0e\x2c\xdd\x7e\xac\x3f\xdd\x34\x89\xd1\x99\x74\xa4\x7c\x87\x69\xcc\xef\x3a\x51\xa2\xce\x4e\xa4\x4f\x73\x73\xcd\x5e\x36\x2c\x84\xb3\xae\xa7\x83\x4a\xe6\x10\x1a\x76\x66\xb2\x3d\xf5\xec\x41\xe7\x27\x66\xf3\x06\x89\x49\x63\x9a\x5a\x5f\x13\xbd\xd0\x74\xab\x12\xab\x6f\xd3\xb2\xa0\x71\xc4\xf7\x71\xe3\x1d\x60\x4a\x93\x0f\x67\x23\x12\x34\x3d\x4b\xa3\x0f\x2f\x55\xf1\xa7\x51\x2d\x16\xc7\x68\x95\xca\x49\xdf\x90\xf8\x40\x3b\x5e\xb6\x18\xb9\x77\x49\x49\xf5\x47\x7e\x56\xbc\xfa\x23\xef\xeb\x58\x7d\xaf\xff\x3f\x41\x3a\x6d\x8b\x06\xa8\x3b\xc3\xa2\x17\xa3\xd1\xe4\xaa\x2b\x34\x57\xf5\xb5\xcf\xca\xda\xc3\x3c\xb0\x44\xb5\xbd\x17\x05\x02\xeb\x06\xc5\xb5\x6c\x55\xb3\x1c\x30\x2f\xfe\x17\x2c\x75\x7d\x13\x91\xa0\xa5\x91\xde\x45\x68\x3c\xc0\x9b\x5c\x5f\x7b\x53\x4e\x5b\xb4\x65\xf4\x0c\xff\x5d\x0d\xa5\x70\x22\x3d\xd0\x62\x8a\xc7\xff\x30\x0a\x84\x7d\x00\xf6\x50\x7b\xba\x31\xa2\xa1\xd7\xe0\x1e\x65\x92\xd8\xa6\xba\xbe\x1c\x43\x5a\x6e\x99\x9b\x55\x67\x8e\x49\x9d\xce\x70\x27\xeb\xf7\x87\xa5\xeb\xbe\x60\x89\x2a\xc1\x55\xdf\xd4\x34\x79\x9e\x69\x96\xde\x7e\xd5\xe9\x06\x34\x48\x50\xe0\x71\xa2\x1a\xc5\xe2\x84\xa1\x98\xa2\x4e\xb4\xf2\xb0\xbe\x2a\x04\x02\xeb\x3c\x46\x05\xfa\xbe\x2f\x1f\x6c\x84\x89\xc2\x93\x2c\x21\x70\x72\x22\xbc\x57\x69\xe3\xc0\xac\xc9\x22\x66\xf1\xdb\xf7\x58\xd5\xec\xbd\xb1\x9e\x6c\x6e\x15\xc3\x42\xd4\xd8\x24\x70\x65\x93\x16\x35\x7a\xe1\x14\xfc\xff\x54\xdb\x40\xfa\x6e\x22\xcc\xbf\xf8\x62\xd3\x14\x6d\x5b\x94\x99\x8e\x99\xe8\xf8\xe9\x28\x30\x81\xa0\x31\xef\x30\xf6\xcf\xf1\x09\x5e\xc4\x6a\x71\x3e\x4d\xb7\x05\x6e\xc7\x60\xf3\x6d\xe2\xf9\xea\xff\x18\x05\xe3\xab\x4d\xc2\xf4\x4a\x6b\xfa\x22\x6a\x31\xef\x23\xbf\xac\x79\x44\xcb\x77\x48\xc0\xea\x34\x71\xd8\x3e\x21\x09\x9c\xd3\x13\x8f\x7d\xff\x5c\x73\x71\xf8\x52\x5c\x28\xe1\x17\xc0\xc5\x0c\xc4\xcd\xfd\x04\xb3\x5f\x04\xdf\x60\xb5\x93\x2d\xca\x1c\xed\x4a\x96\x0c\xc3\x0c\x83\x1a\x32\x8f\x02\x7d\xf9\x4c\xc4\xee\x34\x49\x62\xcd\xd2\x10\xeb\x67\x36\x78\x70\x55\xbf\xcc\xeb\xd6\x31\x56\x53\xc3\x7a\x18\x18\x75\x3e\x03\x80\xfc\x2a\x8d\x30\xbd\x5a\x05\x6c\x57\x35\xf6\xec\x8a\xc9\xbb\xa9\xe9\xbe\x02\x6d\x37\x2d\x07\x71\xb4\xd4\x35\x47\xe4\x17\xba\xa2\x31\x00\x56\x6b\xa6\x6f\xe2\x4e\x2f\x6e\x30\x83\x45\x4b\x74\x7d\x13\x05\xa3\xc3\x34\x5b\x7d\xbc\xe1\x87\x57\x1b\xe8\x24\xa2\x70\x7b\x07\x64\x24\x80\x4a\xeb\x28\xef\x50\xa1\xdc\xd5\x3e\x3a\x00\x9e\x6b\x51\xe3\x57\x9e\x67\x77\x09\x87\xb0\x5c\x1e\x11\xd5\x5c\x35\xa3\x9d\xc2\x1b\xa9\x0b\x42\x97\x13\x49\x00\x98\x47\x80\x2c\x1f\x90\xde\x11\xe2\xed\x7a\xc4\xd2\x6f\x92\x75\x63\xa1\xfc\x16\x68\x33\x7a\x91\x50\x91\xf3\xce\x1c\x0b\xce\xaa\x78\x7a\xdd\xd3\x0f\x87\x22\x79\x92\xa9\xe0\xa3\xe7\xea\x7b\x22\x11\x06\xeb\x9c\x2f\x76\x9d\x8f\x64\xd7\x26\x59\xee\x4a\x32\x84\x94\x63\x3c\xa2\x73\xac\xa6\xaa\x7c\xa1\x99\xc4\x65\x99\x68\xfe\x09\x30\x4f\xb5\xa2\xb0\x8e\xce\x8c\x82\x8d\x14\x88\x54\xa8\x04\x26\xdd\xf4\xf6\xcd\x62\x32\x0e\x67\x2b\xee\xc8\x5d\xdc\x05\x7d\x43\x80\xa4\xe9\x8a\x15\xda\x54\xe0\x4b\xff\x01\x51\xf5\xef\xd0\xcc\xc7\x64\x1b\x60\xff\x9c\xd8\x48\x56\x07\x8c\x8b\xb6\xde\x99\xd4\xcf\x80\x7e\x9f\x64\xd9\xab\x0c\x70\x98\xb7\xa1\x56\x8b\xfc\x00\xbd\x40\x7d\x5d\xc7\xa1\x57\x95\xc5\xb1\x04\x63\xbc\xdd\x46\x60\x56\xdb\xa4\xdd\x2c\x9d\x1e\x63\x66\xc8\x42\x42\x35\x76\x85\x78\x92\xf7\xe4\x33\xd4\x7c\x68\x52\x12\xeb\xd9\x83\xcd\x57\xb2\x50\x9f\xe2\x90\x83\x4b\x9c\xbe\x9e\xb0\x9d\x72\xad\xa2\x8e\xb1\x85\x71\x5a\x9a\xc8\x44\x8f\xf2\x0c\xd4\x51\xea\x3f\x76\xb2\xfe\x20\xab\xee\x5e\xb5\xaa\x91\x05\x5e\x92\xe8\xa7\xaf\x7d\xa5\xdf\x96\xa6\xb1\xbf\x1e\xaf\x06\x37\x17\x14\xe0\x68\x98\x34\xb6\xa9\x21\x5d\xed\x8b\x24\xfd\x7d\x91\x50\x4d\x99\xac\x5b\xb5\x98\xaf\xa3\x39\x19\xd6\x43\x70\xb9\x89\x4d\x5f\xca\xd6\x6c\x77\x3a\x68\x32\x29\x8b\xc5\xa9\x5d\xf2\x28\x0e\xb5\x5b\xde\xf0\x24\xee\x62\x90\xc4\x2e\x8b\x75\x63\x07\xe4\x43\xf7\x01\x9d\x7e\x4b\xb9\x49\x55\xac\x03\xab\x1f\xcd\x69\x7d\xbd\x5e\x23\xa9\xd2\x4e\xec\x2a\xce\x70\xa7\xa5\x13\x76\xec\xf1\x11\xb5\xb9\x6f\x51\x6c\x5b\x35\x6b\x8f\x54\x77\xc6\x7b\x87\x86\xb6\x2b\x4a\x25\x04\xbd\xef\x44\xe4\x5e\x78\x8b\x1e\xcf\x9f\x8d\x18\x03\x93\xe4\xdd\xe9\xdc\x91\x2a\xe6\x15\xd4\x24\x5e\x7c\x2a\x8c\x1c\xa8\xf9\x93\x87\xc4\x3c\xb8\xf6\xaf\x46\xe3\x75\x08\x09\xd5\x3c\x39\xb6\x76\x92\xaa\xa6\xc7\xe6\x7b\xc6\x33\xe0\x43\x2f\xfb\x08\x65\xa1\x66\xd8\x81\x43\xd2\x73\x24\x5f\xe4\x41\x38\x50\x27\x68\x7e\x3a\x4c\x4c\x87\x94\xe7\x40\xdc\x9f\xae\xca\x15\xc7\x17\x0e\x8f\xfc\x22\x45\x27\x05\x4d\x10\x7e\x77\xb6\xbc\x2a\x8c\x64\x34\xec\x38\x71\x91\x46\x90\xb6\xa2\x06\x49\x49\x05\xae\xc4\x62\x36\x4c\x4b\x13\xa7\x88\x50\x68\xa8\xdc\xc4\x9e\x46\x2f\x00\xf2\x43\x0e\x0c\x0e\x09\xf2\xc0\x24\xfd\x06\x9b\x34\x5f\xe4\xc5\x76\x71\x22\x70\x63\x90\x04\xdd\x22\x3f\xbd\xb2\x49\x3c\xbd\x4d\xe6\x63\x0f\xe2\x5c\xdb\x4a\xae\x05\x45\xed\xa8\xba\x40\xb9\x6a\x4a\x9b\xaf\x66\xf9\xb2\xc6\x05\x94\x39\x77\xa9\xe4\xb9\x3b\x36\x03\x66\xcb\x6c\x2a\x34\x53\xaf\x51\x4c\x56\x46\x87\x6b\x34\x4d\x8c\x95\xce\x36\x7b\xe2\x6f\xa9\xd4\x23\x27\x32\x37\xf6\xac\xf6\xcd\x7a\x9e\xcd\x76\xfe\x3c\x66\x6e\xb3\x12\x59\x1e\x91\x69\x6f\x93\x7d\xef\x6d\x5f\x38\x0c\xb2\xc1\x4c\x90\x1f\x52\x7f\x1d\x9a\xff\x3b\xe8\xa7\xc9\xc3\x63\xba\x42\x9e\xb7\xa7\x7d\x80\x11\xba\x66\x9c\x4d\xc9\xca\x77\x32\x08\x0d\xaf\x2b\xf0\xb1\xc4\x30\xb4\x48\xae\x93\x4d\x90\xc8\x69\xc6\x5f\x1b\x02\x92\x0f\x2d\xf0\xb1\x78\x46\xbb\xb4\xba\x58\xd7\x33\xaf\x01\x96\x96\xed\x9a\x3b\xcb\xd4\x6a\x5e\xee\x9c\xb3\x9d\x0f\x7b\x61\x60\x60\x38\x03\xb4\xf2\x18\x4f\x95\x1e\x9b\xb8\xa9\x92\x15\xc4\xb9\xed\x94\x7d\x13\x63\x81\x29\x28\x2e\xd7\xe9\x00\xf2\x47\xb9\x1d\xa9\x5d\xe3\xad\xd3\xa2\x2b\x7f\xba\x86\x32\x77\xb0\x99\x67\xc3\xd2\x8e\x0d\x31\xc9\x1d\x73\x3c\x0a\x56\x7d\x33\xce\x69\xeb\x85\x70\x32\xf2\x98\x50\xd0\x29\xef\x5b\x53\x1d\x7c\xe2\xc8\xdc\x20\xc9\x21\x45\xdf\xdd\xb1\x4b\x6a\x31\x4a\xdb\x36\x34\xb6\x85\xbd\xed\x84\xc5\x6a\xf5\x65\x97\xed\x70\x40\xb2\x59\x78\x64\xee\xd1\xd4\xe9\xb3\x0c\xcb\x30\x2d\x0d\x80\xf3\x2e\x91\x52\xee\x52\x01\x5f\x0c\xaa\x87\x78\xe0\xc0\x41\xcd\xfb\x34\x24\xe9\x1b\x32\xf8\x30\x9d\x72\x68\x92\x04\x8c\x0c\x67\xb4\x8a\xa8\x81\x15\x0d\x70\xc9\xd9\xb1\xd2\xe0\xc6\xf1\x89\xc9\x13\x19\x87\xc9\xfa\x7d\x9b\x77\xdc\xce\x41\x1f\x08\xda\x65\xfa\x7a\x9d\xd9\x73\x6b\xcb\x20\x2f\x22\x70\xdc\x41\x67\x47\xdf\x10\x27\x30\x4b\x4b\x93\xc7\x19\x1e\x86\xc2\x34\x78\x18\x0e\xb3\x71\x54\xb0\xdc\x74\xe3\x6c\x17\x7e\x80\x7b\x50\x81\xde\xf3\x50\xab\xda\x43\x8a\x7b\x8d\x68\x91\xeb\x9c\x33\xaa\xd7\xb7\x47\x63\x47\x79\xd0\x9d\xf9\x16\xcd\x7a\x0f\xf2\x4c\x14\xb5\x86\x70\xd5\xc0\xa1\x79\x8c\x4f\xd0\x63\xb5\xd6\xd0\xd9\x6a\xba\x8d\x53\xc7\xc0\xef\xef\x84\x7c\x47\xed\x30\xdd\x28\x00\xd0\xb2\x5f\x67\xe8\xed\xdd\x88\xae\xed\x6d\x1f\x47\x52\x33\xe8\x95\x3d\x33\x1d\x42\xc7\x0e\x92\xa1\x50\x47\x3a\xc5\x04\x47\x8c\xf0\x91\x2a\x74\x3b\xcb\xab\xb3\x92\x7a\x73\xd7\xe5\x80\x73\x8d\x86\x6a\x4d\x20\x9d\xba\x2e\xa5\xaf\xf6\xae\x71\x2e\x39\xff\xf2\x9a\xe8\x32\xc8\xb3\xd4\x4e\x05\xa4\x5a\x8b\x65\x5f\x64\x78\x82\xf8\x89\x1a\xe7\xa0\x83\xcd\xb6\x49\x96\xd9\xce\xf6\x7a\xc4\x53\x7b\x93\x5b\xe6\xa0\xca\x47\x4e\x4d\x2a\x46\xfa\xfe\x46\x15\x10\x80\xcc\x5c\xa7\xe8\xd6\xce\xd6\x66\x1a\x5f\xf9\x92\x76\x34\xee\x6b\x05\x0c\xf8\x7d\xde\x4a\xb7\x29\xdc\x1c\x45\xb8\x47\x31\x77\x18\x9d\x07\xba\x9a\x2f\x34\xcd\x17\xa6\x1a\x4f\x3d\xe5\xf5\x10\x3c\x00\xf6\x77\x1f\x5b\xa7\x61\xeb\x27\x5b\x0f\x91\xa0\xc0\xea\x03\x72\x81\x98\xf1\x3f\x4a\x62\x3d\x2a\xf9\x8a\xac\xe8\x16\xac\x32\x71\x38\xfc\xe1\x88\x20\x7c\xcc\xe6\x63\xc5\x5f\xe0\x91\xa9\xab\x3c\x5a\xf1\x87\x11\xb9\xa0\x1c\xf5\xbd\xec\xa2\x1c\xf6\xdb\xc9\x78\x69\xa3\x5c\x13\xa7\x8a\x52\x07\x6e\x66\x2b\x36\x6f\x0f\xe3\x04\x43\x71\xf8\xb9\x98\x50\xd0\xd7\x93\x43\xac\xcf\x1e\x6c\xe6\x76\x25\x38\x9d\x80\x56\xf6\x9a\x6c\x44\x7d\x4d\xe3\x0f\x1d\x53\x76\xa0\x1f\xe8\xf0\x56\x29\xa8\xb0\x95\x21\xcd\xe6\xf5\xe1\x83\x48\xdc\xb1\xb1\xfc\x22\x51\xa9\x0a\xdc\xc0\xdf\x23\x71\xa3\xdf\x9b\xb4\xfd\xdf\xd7\x1c\x24\xa6\x83\x8c\xc2\xf9\x90\xdc\x42\x56\xeb\x6b\xf7\xe0\x47\x77\x7e\x02\xf2\x9d\x3d\xd4\x5c\x8e\xbb\xa9\x51\x2f\x6d\xcf\x9b\x43\xc8\xd7\xd7\x54\xc7\x25\x22\xe3\xb8\xc6\x96\xd5\x3f\x24\x67\x91\x1f\x4e\x0c\xc0\xce\xcd\x35\xe3\xfe\x20\xcf\x56\xac\x22\x6c\xd5\xa5\x39\x0a\x9e\x3c\x5b\x7d\x43\x63\x9a\xfd\x61\x51\x64\x32\x9f\x20\xd7\x0e\xe0\x02\x8c\x13\x7d\x4d\xe7\x44\xdb\x74\x96\x65\x9c\x22\x28\xb7\x6c\xe2\xe6\x3a\xd4\xab\xae\xa4\x6f\x67\xb9\x1b\x48\xd2\x71\x32\xc0\x1a\x6e\xb6\xac\xa6\x8e\x59\x8c\xf3\xfe\x54\x20\xb4\xc0\x3d\x14\x0b\xf3\x56\x14\x52\xa8\xd3\xa3\x27\x89\xfc\x41\x5c\x93\x50\xe8\xfc\x19\x4e\x13\xe4\x16\x57\x46\x04\x86\x7e\x03\x81\xd3\x09\x90\x4e\x6a\xca\xcf\x35\x17\x4d\xa2\x3d\x1d\x26\xe7\xe9\xeb\xb1\x4a\x73\xd9\x3a\xc4\xcd\x51\xf2\xaa\xe0\x88\x70\x7e\x0e\x5f\xe4\x79\x7b\xb3\x87\xdc\xff\xa0\xb6\xd0\x62\x96\xf7\x55\x34\xa4\x5a\xc5\xd8\xab\xdf\x21\x85\xff\xef\xd4\x0d\xc8\x74\x7a\xb1\x5d\xa4\xd1\x76\xdc\x1c\x64\xcb\x77\x19\xcb\xfa\x09\x89\x36\x2e\x66\x39\x36\x25\x69\x81\xcf\xfb\x59\xfc\x1a\xdd\x94\x9e\x35\x5d\x5d\x4d\xce\x95\x4a\x56\x93\xb3\xab\xa2\x8f\x4e\xec\x6a\xa3\x3a\x0a\x30\x1b\x03\x0d\x30\x7d\xed\x09\x2f\xd9\x40\x8a\x7d\x4c\xae\xf8\xe9\x83\xea\xc1\xa0\x5c\x3b\x41\xd6\x73\x6f\xe1\x5c\x04\x64\xf0\x0f\x27\xb6\x94\x68\xfb\x65\x89\xcd\xbd\xa7\x31\xc6\x24\x4e\x93\x68\xd2\x69\x7f\x9a\x66\x9d\xce\x30\xcf\xbd\x6a\x17\x72\x3e\xb4\x34\x99\xb7\xad\xae\xa2\x35\x06\x3b\xf3\xcd\xa5\x0c\xdb\x51\x63\xe9\x58\x5c\xa5\x1e\x6f\x96\xc4\x9d\xb5\x87\xe4\x37\x79\x7b\x37\x5f\x58\x1e\xc3\x7a\x50\x74\x4b\xf3\x2c\xfc\xaf\x53\x54\x8b\x22\x84\xe1\x58\x86\x53\x19\x38\x40\x53\xeb\x72\xe3\x80\xd8\xbd\x81\xe5\x8d\xb3\xe7\x2e\x09\xa2\x7f\x30\xa2\x31\xd1\x33\x92\xef\x3b\x4f\x94\xd0\x16\x31\xe9\x5a\x96\xc2\x34\x41\xab\x2a\x84\x33\xa7\x0b\x1f\x58\x48\x6a\x7a\x09\xd0\xe8\x0e\x9a\x3f\xae\x10\x7b\x84\x14\xea\x4d\x8e\xd2\xda\xe9\x12\x91\x94\x34\x1a\x5b\xfa\x9a\xc5\x8b\x88\x4b\xd9\xb3\x9d\x65\x04\x22\x57\x49\x35\x82\x51\xb2\x67\xfa\x2f\xda\x3c\x57\xb0\x1f\x9b\xea\x3c\x31\x49\xce\x53\xb7\xdf\x14\x85\xcd\x95\x4e\x1a\x7a\x5c\xe7\x47\xa1\xf9\x75\x9e\x7a\xad\x9d\x2c\xcf\xd7\x84\x23\xec\x29\xb0\x0b\x7b\x43\x93\xc7\x2b\xdd\x80\xb7\xa2\xff\x46\x12\x1f\xf4\x23\xfe\x25\x6d\x84\x2c\xb1\x08\xf1\xe8\x00\xbc\x11\x11\x55\xfc\x0d\x76\x17\xed\x99\x7c\xc9\xee\x0a\x94\xe3\x8f\xa3\x49\x03\x34\x67\xf1\x26\x8f\xc0\x57\x73\x5e\xae\xee\x1f\x45\x64\xa0\x77\x91\xa7\xfb\x8e\xd4\x3a\xb6\xb4\xf3\xb8\x8c\x8b\x5e\x83\x74\x69\x20\xc7\xa1\xaf\xa3\x40\xb3\x5e\x89\xbb\x36\x2b\xcd\x40\xcd\x59\xf1\x7d\x27\xe4\xf7\x3b\xb9\x8e\x50\x45\x1f\x9e\x88\x50\x07\x0e\x34\x3b\xe8\xd9\xf2\x6c\x51\xa8\x17\x2f\x52\xf9\x94\x0f\x8b\x5e\x15\x99\x7a\x8d\x30\x65\xd3\xd6\x8a\x45\xdf\x50\x69\xd3\xcf\x8b\x2f\x4c\xd3\x90\xd4\x5d\xac\x4f\xaa\xe9\x9c\x67\xf8\x75\xf4\x88\x91\xb6\x1d\x8d\x02\xd3\xb8\xb4\xf9\x20\xb7\x8e\x47\x8f\x03\xec\x0e\x52\x20\xef\xd6\x45\x15\x73\x2d\x42\xd0\x0f\x67\x6d\xf5\x77\x20\x28\xe0\x3c\xd7\xd7\x13\x51\xe4\xd0\xb3\xcd\x25\x5b\x36\x82\x94\x9e\x3e\x31\xc7\x8f\x70\x90\x82\xe9\x94\xf7\xcb\x95\x39\x4b\x75\x76\xe0\x96\xfd\x0c\x11\x39\x74\xa7\xf5\xf5\xc8\x87\xc0\x6f\x3f\xd6\x92\x83\x84\x9a\xb2\x4e\x9e\x07\xf8\x2d\x8a\xd2\xc6\x3a\x89\x6b\x0d\xe2\x24\x21\xab\x44\x95\x58\xd7\x37\x58\x8a\x88\x75\x47\x91\xfe\xe9\x1b\x22\xdf\xc5\x69\x27\x19\x56\x05\xcb\x6e\xd2\xda\x3f\xac\xad\x38\xdc\xe2\x77\x90\x7f\xe2\x0c\xfe\x18\xd7\x85\xf0\x7e\x92\xdb\xd7\x97\x28\x81\x3b\x12\x4d\x8e\xc3\xe1\xbb\x77\xb5\x82\xa3\xca\x49\xd2\x3e\xd4\xfc\x14\xc8\xe1\xe1\x3a\xc1\xea\xc2\xa6\x45\xa6\x14\x64\xdc\x16\xcc\x53\xe9\xeb\x28\x38\x1c\x24\xf1\xb2\x7d\xa2\xda\xe5\xc8\xcc\xaf\xd0\xec\xf8\x4e\x41\xdd\x70\x98\xdf\x80\xaa\x8b\xcb\xd3\x88\xcc\xa7\xd3\x78\x7e\x12\xa9\xfa\xf9\xc8\xad\x7e\x10\x91\x0d\xc7\x03\xad\xc6\x97\x09\x5e\x7d\x6e\xaf\x87\xeb\x71\xfb\x70\xf7\x2e\x23\x63\xc7\xbd\x3c\x86\x94\x57\x07\xd9\xf1\xb8\x10\x8b\xe0\x46\xa6\xa2\xe1\xeb\xc1\x1b\xe0\x53\xdc\x4a\x54\x8b\x67\x59\xe6\xae\x01\x2e\x95\x1b\x8a\xf7\x12\xb2\x59\x37\x5e\x8c\x1d\x8c\x86\x0f\xbc\x41\xf3\x57\xef\x21\xff\x73\xeb\xf2\xf3\x0e\x27\x7f\xb9\xcc\x4d\x96\x77\xe3\xd4\xe4\x71\xb2\x36\xc5\x53\x02\x63\xd6\xea\x17\xc8\x2f\x74\x8b\x9a\x24\x1d\x5b\x6d\xd0\x62\x67\x68\x61\xfd\x1a\xee\x1c\x6a\x95\x47\x64\x2e\x04\xaf\x2f\xd2\x3e\x85\xbf\x99\x2b\x16\x68\x06\xe5\x96\x07\xe0\x57\x6c\x1e\x2f\xae\x35\x02\x23\xed\x6c\xc4\xd3\xc1\x23\x46\x26\xfa\x36\x7f\xb4\x7a\xf4\x88\x2b\xd7\xf5\x49\xa8\x00\x33\xb2\xd8\xb1\xe9\x7c\x37\x08\x23\xa7\x0d\x62\xb0\xba\x53\x61\xbb\xa9\x3d\x06\x6a\x07\x54\x43\x80\x3d\x77\xc9\x33\x42\xa1\x3e\xdd\xa2\xe5\xfe\x2e\x89\xf9\xdf\x64\x22\x6f\x0f\x24\x1d\x5c\xcb\x19\x09\xc3\x3e\xfc\x2c\xec\xd5\xd5\xb2\x39\x91\x5c\x3f\xdd\x5c\x4c\x86\x31\x86\xaa\x9d\x62\x6f\x75\x19\xba\x22\x24\xb0\x20\x01\x7a\x9f\x46\xc3\x5f\x32\x03\x93\xda\xc2\x3e\x24\x3f\xd9\xe3\x40\x81\x4c\xfd\x4e\x14\x04\x7c\xee\x8e\x28\x55\xbc\xc8\xdc\xba\x9f\x8c\x42\xdf\xe4\x2a\x89\xe6\x02\x1a\x22\xb6\xb2\x2b\x18\x8f\x33\x9f\xe2\x1a\x65\xc3\x4a\x34\xc0\x2f\xf8\x5e\xad\x30\x7a\x62\xda\xd6\x97\xad\xd8\x2f\x1b\xa4\xb7\x53\xeb\xac\x9a\x9a\x72\x98\x2b\x6a\x85\x72\xe3\x02\x4b\x56\x72\x2d\x34\x4c\xe3\xc4\xae\x58\x55\xc7\xd5\xcd\x1d\x8d\xed\xf4\xed\xa1\x7f\x61\xef\x42\xd3\x80\x64\xee\x88\x33\xcc\xa8\xf1\x1a\x8e\x26\x29\x73\x90\xcf\xd4\x02\x4a\x8e\x4c\x67\x07\x55\x53\x06\x94\x3d\xbb\x58\x52\x45\x79\x95\x2a\xca\xab\x1e\x15\xeb\x54\xe9\xd9\x83\x72\x43\x11\x7e\x6e\x07\xd1\xe8\x5f\xfb\xf7\x5b\x21\x48\xfc\x48\x1e\x13\x1e\xd9\xce\xf5\xc0\x38\x7f\x42\x1e\x13\xa4\x92\x7e\x7a\x9d\x48\xd3\xf7\x24\x6d\x45\xff\xe8\xa3\x11\x61\x15\x3a\x21\x8c\x8d\xb0\x45\x93\x3b\x9d\x5e\x95\xb1\x27\x49\x96\x93\xca\xed\x51\x56\xb9\x3d\x3a\xc1\xc0\x15\xe3\x04\x3b\x10\x72\x3f\x32\x82\xdf\x23\xc9\xed\xcb\x63\xf8\xf6\x63\x94\xe3\x9a\x64\xad\x88\xd5\x1c\x14\x59\xf3\x06\xf5\xbc\x37\x26\x48\xde\x0b\x7b\x9b\x3d\x83\x16\x9f\x9b\x4b\x20\x19\xb0\x37\x23\x86\x77\x69\x30\xe9\x66\xf4\xd7\x6b\x92\x2d\xd3\xed\xc7\x69\x5c\x94\xb9\x90\x4e\xb5\x15\x83\xf3\x4e\x15\x9b\xf4\x4d\x9d\xf3\xeb\x72\x96\x5b\xb3\x24\x72\x41\x61\x50\x91\x25\x8c\x2e\x52\x3e\xa3\xa3\x50\xf0\xd5\x23\x47\xe7\x83\xa1\xa8\x5f\x70\xde\x75\x5b\x11\x47\xb9\x3c\xce\x76\x55\x4f\xdf\x5f\x56\x20\x0f\x2a\xfd\x1a\xc9\xde\x31\xd6\xbf\xf9\xdd\x09\x6f\x45\x95\x49\x93\x50\x14\xec\x2b\x5d\x08\x59\x31\x85\x6d\x10\x25\xed\xda\x88\x4e\xfb\x49\x0f\x5f\x49\xaf\x16\x93\x38\xc5\xba\x46\x1d\x73\x84\xc7\x78\x8f\xd4\x2d\x90\x55\x93\x80\x9e\x8f\x13\x45\x55\x03\xf5\xcd\x04\x60\x22\x5f\x52\x0e\xf3\xd4\xe4\xd9\x70\x5c\xbd\x46\x9e\xb2\x53\xb2\x09\xeb\x56\xee\x58\x27\x96\xae\xc4\x73\x7b\x35\xdb\x40\xd7\x57\x5f\x8f\x9e\x24\x57\xf5\xb4\x63\xe3\x95\xea\xa1\x20\x4a\x38\x41\x53\xb9\xc1\x4e\xe9\xb4\x0e\x1f\x4e\xcd\x8a\x46\x21\x47\xf9\xaf\x9e\x8f\x63\xfc\x87\xbe\xe0\xc0\x74\x96\xcd\x92\x58\x9b\xec\x9b\x0d\x6d\x6e\x4f\x06\xbf\x2b\x0f\x49\x71\xeb\x88\x47\x29\x5d\x31\xde\xb5\x49\x32\xec\x83\x1a\x87\x52\xf5\xb5\x11\x91\xb1\x5e\xab\x1b\x6b\x4d\x4c\x19\x3b\x45\x41\x9c\x39\xef\x11\x58\x8e\x5a\x75\xcc\x9a\xde\xe9\x6d\x85\x03\x65\x31\xb6\x79\xc7\xba\xce\x8a\x37\x34\xf1\x52\x84\x17\x6b\x70\x88\x83\xcd\xe5\xd4\xae\xa2\xfe\x46\x88\xd5\x81\x66\x7d\xe3\xeb\x43\xd3\xcd\x06\xa5\xf4\xe3\x40\xbf\xdd\x25\xb1\xcd\x4f\x85\x07\xdf\x00\x0a\x03\x3a\xab\xe6\x32\x56\xa7\x2a\xb1\x94\x9b\xb5\x99\x40\x33\x3a\x39\xae\x39\xe2\x5b\xa4\xef\x3e\x26\x61\xd2\x91\x88\x7c\x7a\xf4\x1f\xfe\x3b\x2d\x86\x1b\xb3\xbc\xff\x48\xf5\x61\x5e\x08\x61\x2e\xb8\x87\xe3\x76\xaa\xb7\x1f\xec\x85\x90\x6d\xa9\x06\x36\xf2\x8c\x6f\x56\x0f\x71\xeb\x38\xf2\x3e\x25\xda\x0b\xa2\xa4\xf4\x98\x31\x08\x17\xf1\x05\x79\xcd\x4e\x9a\x76\xbb\x8c\xd4\xc1\xf3\xf4\xf7\xcf\x79\x76\x0d\x84\xd3\xf4\xfa\x68\xe8\x18\xd0\x89\xed\xca\x90\x3b\xd2\xae\x53\x24\x8c\x7b\x8e\x15\x4f\x41\x7c\x45\xda\xf5\x03\x50\x8d\x9c\x0b\xb8\x98\x45\x02\xa9\x7f\xcd\xab\x72\x65\x1d\x6b\xd2\x6c\x29\x37\x83\x5e\xdc\x69\x30\xeb\x82\xbb\x97\x84\x8b\xc6\x1d\x9b\x16\xb0\x1f\x74\x2d\x87\x6a\xf9\xfb\xd1\xb9\x6a\x77\x39\x02\x2d\xb5\x99\xcf\x79\x20\x68\x98\xc6\x2b\x36\x2f\x4c\x32\x15\x18\xa1\xff\x40\x9e\x26\x42\xe5\xeb\x58\xb6\xa8\xae\xdf\xd8\x3e\xc9\xf2\x85\xe6\xc1\xff\xea\xcb\x8d\xc6\x57\xbe\xa4\xf9\x8e\xe2\x7b\xfa\x66\x4c\xee\x36\x4b\xd4\xf8\x5a\x15\xd4\x23\x1a\x56\x3e\x31\xe2\x1a\x63\xd1\xee\xae\xce\x50\x4e\xe1\x5c\x05\x49\x33\x56\xff\x00\x04\x26\x8c\xe5\xfc\x3e\x12\x62\x35\x2f\xe4\x87\x7d\x56\x41\x25\x37\x02\x5e\xfd\x32\x64\x3d\xd7\x91\xae\xeb\x07\x44\x61\x38\xf8\x1e\x2e\xcd\x49\x29\x7b\x6d\x52\xeb\x78\xd1\x28\xd8\xd0\xb4\x66\x3a\x20\x48\x0c\xef\x10\x29\x37\xb5\x06\x72\x9b\x58\xda\xca\x6d\xf7\x80\x8e\xb7\x76\x98\xec\xba\x57\x75\x99\x49\x6c\x81\x71\xed\xcf\x74\xa9\x21\x39\xfd\x64\x58\x76\x7a\x1a\x8a\xdc\x9c\xf6\xf8\xbc\x9c\x1f\x1f\xc3\x7a\xd5\xd7\xd1\x4f\xfb\xcf\xe8\xc6\x05\xa4\x69\x4d\xc7\x11\x1e\x9f\x71\xc4\xdc\x6d\x86\x52\x6e\x37\xe8\x5a\x05\x28\xe2\x0d\x38\xbc\x07\x3c\x8c\x95\xc1\xa5\xbf\x5a\xe7\x4e\xbf\x6a\x4d\x52\xf6\xd6\x28\xc0\x9f\xc1\xaa\x75\x3a\x0d\x13\x7f\x33\xdf\x2c\x44\x46\x48\xfb\xbe\x38\x9c\x2f\xd0\x5c\x36\xfb\x5d\xad\xf6\x32\xe9\x31\xe0\xc1\xb1\x3f\x1d\x40\xaf\xcb\xe4\xac\x7c\xd1\xcf\x5e\x2f\xd9\xb4\x4c\x6c\x6a\x0b\x4d\x95\x78\x1c\x5e\x5f\x13\x74\xb8\x98\xc7\x5d\xb3\xf6\xa0\xac\xcd\x31\xc3\x7f\x27\x80\x52\xc5\x39\xc5\x88\x64\x35\x23\x7c\x7d\x0b\xa7\x3e\x2a\x8c\xdb\x22\xce\x8c\xa2\xf0\x81\xf5\x40\x96\x53\x14\x06\xf5\xc0\x3f\x21\x84\xed\x48\xc0\x37\xfe\xf3\x1d\x2d\x77\x84\x2d\xc6\x55\x2e\x09\xf8\xd7\x09\x1b\x36\x48\xf0\x70\xb7\x2f\xfc\x9c\xfa\x09\xd6\xef\x75\xa2\xb3\x5e\x9f\xc8\x02\x67\x0f\x35\x3b\xab\x46\x13\x36\xaf\x28\x31\x47\x2e\xb4\xdb\x8b\x8e\xd9\x43\xcd\x6e\xb6\x9a\x16\x71\x17\xf9\x1a\xa6\x0d\xc0\x45\xd0\xd7\x63\xcd\xa7\xd8\xe4\x33\x81\xfa\x83\xf6\xac\xbe\x16\xdd\x01\x2f\x41\x13\x88\x2e\x5a\x4d\x61\x7a\xea\xd3\xe8\x49\x1f\xcf\xf0\xf0\xfa\x26\x55\x01\x71\x7f\x83\x17\x5c\x39\x77\x9b\x7d\x00\xba\xb1\x17\xc9\x77\x20\x4e\xf5\x57\x0e\xdd\x79\x98\x1c\x5e\xb2\xd5\x5d\xb2\x34\xf5\x00\x8c\x48\xcd\x73\x87\xc0\x1f\x6a\x4d\x28\x1f\xe0\xc8\x75\x41\x2e\xf9\xac\x94\x06\x0e\x2c\x25\x1b\xcb\x9b\x94\x0d\x74\x7a\x26\xce\xfb\x26\x85\xdc\x2e\xce\x25\xe5\xa1\x91\x23\xc7\x0b\x1a\x43\xde\x1c\x11\x7e\x7e\x51\x90\x12\x27\xeb\x27\x17\xe7\xdc\xfe\x64\x6d\xea\x87\x41\x1f\x43\xff\x3e\xda\x1d\x76\x72\xb6\x47\x3e\xcc\xe9\xbb\x57\x1f\x06\xf1\xc1\x3d\x10\x85\x90\x0d\x33\xf3\xe4\x3a\xcd\x79\xa3\x3b\xe6\x9c\x35\x83\xff\xc3\x1f\x47\x41\x9e\xe1\x47\x28\xd5\x5d\x0c\xa8\x1e\x27\xea\xa9\xcd\x11\x85\xa7\xc3\xb8\x9b\xc0\xc4\xaf\xc9\x42\xc1\x73\x56\x03\x79\xb5\xc2\x1a\x91\xac\xd5\x55\x58\x48\xeb\x87\x51\x5a\x58\x2b\x24\x2c\xd4\x46\x15\xea\x06\x51\xec\x34\x36\xa0\xbe\xa9\x11\xea\x7e\xa1\xb9\x92\x25\xcb\xc5\xaa\x59\xb2\xe9\x74\xe0\xa5\xdc\xc1\x1d\xf4\xba\xb3\x7e\x68\xfb\x5b\x23\xc2\x91\xcf\xd1\x10\x64\x3b\x8f\xed\x62\x02\x84\x0d\xa8\xd6\xed\x11\x31\x08\x6f\x47\x7f\xe3\x33\x98\xa3\xa6\xd3\x11\xea\xb1\xd7\xc1\x22\x7b\x42\xef\x55\xe8\x75\x8d\x30\x17\xa3\xd2\x95\xb8\x7b\xf7\xe4\x41\x20\xdf\x53\x9b\x4b\x2c\x83\x33\x34\x9b\x5e\xe6\x26\x15\x69\x5c\x48\x26\x6f\x09\x1a\xb3\x75\x8d\xb1\xf9\x7c\xd8\xb5\x85\x1c\xf4\x88\xeb\xf8\xd9\xfa\xda\x0b\xca\x0c\x4c\x5e\xa6\x36\x2f\x7a\xf1\xa0\x98\xa6\x65\x7a\x7b\x44\x93\xab\xf7\x6f\x33\x06\xf6\x6e\x87\x1f\x4d\x40\xf4\xb3\x87\x9a\x7d\xd3\xe9\xc5\xcb\x71\x0a\x2e\x97\x9f\xa1\x24\x2b\xd3\x30\x9c\x79\x5c\x6a\x2f\x27\x5e\xe4\xef\x4a\x92\xd8\x25\x87\x6f\x22\x15\x03\xec\xab\xaf\x89\x56\xa3\xed\x80\x47\xaa\x8f\xc7\xfd\xbb\x83\xe7\xe4\x14\x02\xa7\x82\x75\xe0\x71\xc9\x35\x55\xe2\x85\x6d\xad\xbe\x23\x3b\x07\xa9\xf4\x4c\xab\xda\xf2\x6e\xf6\xb2\xba\x00\xc4\xab\xa9\x75\xce\x71\x4f\x88\x2e\x92\x57\x8b\xa9\x7e\x28\x30\x9f\x5b\x48\x6e\xa1\x2f\xf3\x36\x8d\x01\xa8\x9b\xb0\xfe\x8f\xd1\xe7\xc7\xb3\xb2\xaa\x3e\xa8\x92\xd7\x3d\xa1\x79\xf8\x29\x2b\x39\x28\x2d\x05\xb5\xd0\x98\xc1\xc7\xef\x8e\x08\xe7\x3e\x11\x35\xbe\xf8\x55\x6d\x86\xde\xa4\xf0\x09\x31\x2a\xa7\x0b\x28\x8f\xd9\x89\xfd\x07\x4c\xeb\x04\x52\x75\x84\x80\xcb\xf8\x1d\x3a\xf2\x20\xa7\x18\x72\x25\x38\xa4\xf9\x0a\x66\x61\xaf\x13\x08\xf8\x3e\x92\x65\x94\x6e\x3b\xbc\x19\x50\x3b\xc9\x3a\xcb\x3b\x49\x87\xe2\x6c\x14\xbc\xd7\xa6\xc8\xdc\xff\x7b\x11\x0f\x57\x92\x4f\xc3\x4d\x16\xe0\xbc\x38\x86\x70\x66\xa6\x94\xe9\x74\x14\xef\x20\x18\xeb\xeb\xf5\x40\x99\x52\xd6\xa8\x43\x20\xb6\x17\xde\xb3\x87\x9a\x2b\x41\xaf\xd4\x5b\xf3\x55\x7f\x02\x86\x0f\xee\xa4\x23\x18\x93\x8b\xac\xc9\x97\x8b\x5d\x0d\x6f\xd1\xf3\xe3\x51\xe0\x1a\x6d\x48\xd4\x54\x09\x5f\xf9\x7b\xf5\xaa\xa5\x3c\x4e\xa1\x52\x74\x3f\xf4\x70\xc4\x22\xbc\x5a\x67\x3d\xd7\xb6\x4b\xb1\x93\x96\xd1\x41\x0a\xa0\x55\x6e\xaa\xc2\xed\x69\x33\x18\xe4\xd9\x20\x8f\x8d\x57\x07\xa8\x25\xff\xb9\x13\x75\x31\x37\xe9\xf2\xe2\x30\x2f\xa7\x49\x7f\xe8\xf2\x98\x28\xf0\x35\xd4\x5c\x38\x5b\x4e\x50\x32\x76\x87\x44\x23\x8a\x32\x37\x71\xda\x20\xb3\xe6\x9b\xa3\xa0\x10\x7c\x73\xa2\x26\x96\x21\xc2\xc4\x9a\xc6\xf6\xf1\x6e\x37\xd9\x5b\x93\x7b\xb6\x6d\x12\xdb\x15\x18\xaa\x22\x44\xbe\x39\xf2\xca\x81\x5f\x7a\x02\x42\x4c\x58\x29\x0f\x55\x2b\x60\xeb\x92\xbf\xc0\x32\x37\x2b\xc6\xdb\xcb\xa8\xba\xb6\x2c\x66\xa7\xb4\x1d\xa8\x53\xdd\x64\x6d\x37\xf1\x99\xb6\x24\x7a\xc9\xef\x78\xe9\x3f\x6d\x11\x8c\xfd\xc8\x3a\x49\xe7\xec\x5c\x97\x6f\x47\xd9\x72\x6f\x44\x1c\x79\x7d\xb6\xf8\x3f\xbb\xd6\xbd\x50\xec\x9f\x7e\x7e\x3d\xa4\x7d\x3f\xbb\xde\xf8\x2f\x0e\x8e\x51\x91\x41\xaa\xde\xd3\x0a\xca\xa5\x85\xed\x56\x2b\x95\x18\x7a\x8c\x97\x34\x04\x29\x70\xa5\xd2\x63\xec\x00\x6c\x3b\xa5\xed\x3e\x5e\xfd\x0a\x64\xb5\xd3\x64\xc5\x7a\x4c\xc6\x57\x5d\x86\x54\xed\x74\x44\xbc\xcb\x3c\x5a\x79\x24\x22\x76\xd0\xbf\x96\xbc\x41\xff\x07\x4e\x50\xa7\x57\x12\x76\xc3\x25\x29\x6b\xb5\x95\x4b\xea\x1a\x9b\x48\x1b\x10\xf3\xcf\x49\x49\xb8\x75\x45\xe2\x13\x1a\xcc\x2a\x54\xe8\xf2\x02\xc6\x1c\xcf\x62\x19\xba\xc4\x9c\x6e\xea\xd5\x09\x00\xf2\x97\x9b\x59\x3b\x89\x97\x4c\x99\xe5\x6b\x72\xba\x82\x8c\xf3\xdf\x91\xbd\xca\x29\x72\xf1\x9b\xd4\x85\x3e\x70\x40\xb5\x87\x40\xef\x74\x7c\x22\xe2\x16\x8d\x9e\xf0\x6b\x3f\x4e\x4b\xbb\x94\x87\x0d\xe7\x6d\x02\xbd\xc2\xef\xeb\x13\x3d\xd8\x7d\xfb\x9a\xed\x61\x11\x57\x35\x4b\xdf\xaa\x24\x4d\x9d\x63\x3a\xf5\x95\xca\x9e\x35\xa5\xcd\x67\x02\xde\x79\x96\x0b\x46\x4c\x43\x79\xd1\x66\x3f\x5d\xdd\xc3\x61\xe7\xbc\x23\xa9\x69\xda\xb1\xa9\x7d\x50\x3e\x41\x07\x9e\xd9\x51\xe2\xd8\x28\x44\xea\x7f\x46\x74\x02\x9d\x19\xf3\xe2\x8d\xd5\x0f\x46\x0a\x7a\x85\x7d\xad\xef\x90\xae\xc3\xff\x44\x2e\xd9\x7f\x11\x11\x58\x75\xa5\x46\xfd\x2b\xb7\x2b\x36\x1d\x3a\x7f\x53\x3d\xa8\xe4\x59\xb9\x43\x6b\x22\x94\x2c\xcc\x4b\xf5\x22\x16\x99\x00\x89\x9f\x68\x05\xfb\x95\x3d\xeb\xa1\xbf\x73\x9c\xeb\x03\x93\xdb\x46\x88\xed\x67\x64\x15\xea\x6b\xe2\xc9\x0e\xd3\xc5\x3c\xb6\xa9\x58\xfd\xf9\x0d\x86\xc5\xa3\xaf\x89\xf7\xb6\x6a\xcd\xb2\x4d\x05\x92\xdc\xba\x2b\xf7\x7d\xeb\x6e\x9d\x54\x6a\x6e\xd2\x25\x97\x22\x62\x39\xfe\x31\x9e\xba\xbe\xa1\x01\xa3\x7e\xa7\x63\xf2\xdc\xa0\xe2\xa9\x15\xb8\x0f\x95\xed\x8a\x4d\xe3\x8e\xaa\xc7\x00\x46\x7f\x8d\x7c\x98\x5e\xf3\x41\x5f\x30\x7d\xbb\xa4\x2a\x82\xee\x37\xcb\x87\xba\x9b\x11\x6e\xc0\xd2\x30\xee\xda\xa4\x5a\xa9\xb4\x15\x2e\x11\xcd\xee\x12\xe9\x34\x95\x19\x9c\xe5\xbd\x3b\xf4\x42\xa8\x70\xaa\xdb\x87\x67\xb8\x35\x81\x7f\xcf\xcd\x35\x0b\x9b\x76\xa7\x48\xa8\x02\x4c\x01\x8f\x8c\x54\x4b\xcb\x91\x1b\x6a\x76\x6b\xdf\xa4\x43\xe3\xe2\x3b\x86\xc2\x8e\x47\xa4\x4b\x74\x9c\xf8\x1a\xdd\xb8\x18\x24\x66\x4d\x9d\x88\x10\x8b\x20\xcc\xa9\xaf\xeb\x6c\xd0\xf2\x2c\x49\x62\x4b\x73\xd8\x7a\xc3\x9c\x31\xca\x43\xa1\x24\x34\xf9\x03\xf2\xbf\x9c\x0e\x20\xd9\x8a\x7e\x84\x0d\xa3\x52\x21\x2c\x81\x46\xba\xde\x2a\x0f\xad\x92\x04\x7a\x16\x23\x82\xfd\xcf\x51\x28\xbb\xaf\x45\x64\xbb\xf1\x01\x51\x19\x24\x57\x48\xe3\x74\xe9\x81\xd0\xcf\xb8\x8a\x4c\xd1\xb5\x9d\xe5\x2f\x81\x65\xe1\x2a\x90\xf8\x37\x5a\x44\x27\xc6\x51\x8f\x0d\xf5\x6a\x14\x34\xd1\xdf\x8e\x68\x1a\x5c\xf3\x46\x1c\x1a\xd7\x3d\x05\xa4\x5c\x55\xcf\x2e\x2f\xd4\x51\xdd\x10\x77\xce\x07\xfa\xa1\x88\x98\xce\x04\x4b\x0e\x60\xdc\x2a\xf2\x20\xb8\x0a\x16\xc0\x43\xc2\x96\x70\x3d\x3e\x12\x40\xfc\xb3\x3a\x3f\xc8\x38\x35\x5d\xfb\xb5\xa1\x74\x9f\xc2\x58\x00\xcd\x34\x6e\x4c\xe4\x23\xbf\xf2\x7c\x73\xd1\x74\xca\x8c\xec\x0b\x51\x9e\xe8\x6b\x1a\xbf\x35\x69\x9a\x0d\x85\xb4\x17\x24\xd5\x59\x6a\xbd\x2e\x7d\x1b\x0c\x13\xe7\x7c\xe5\x10\x5d\x59\x15\x0e\xeb\xad\x91\x41\xcd\x06\xe2\xc5\x96\x2e\x4d\x35\xc8\x69\xb9\xe1\x2d\xd6\x36\x47\x34\x48\x38\xd3\xda\xed\xf3\x97\xa7\x8a\x3d\xc1\xff\xfc\x13\xee\x33\x7c\x2a\xfb\xd1\xa9\xd1\x84\xf1\xc2\x4f\x47\x41\xa5\xef\xb7\x9f\x68\x11\xa9\x67\x46\x0b\x1f\x9c\x46\xc7\x80\xe1\xfa\xd1\xff\xa7\x9e\xf2\x22\x0d\x81\x63\x75\x46\x36\x3a\x88\x5f\xd7\x24\x0d\x40\xea\x2f\x5c\x92\x83\x5b\x97\x04\x55\x41\x9e\xae\x22\x18\x72\x8b\xff\xfe\xdf\x68\x09\x3c\xe0\xb8\xa6\xdb\xf7\xf8\xf3\xb3\x87\xb4\x60\x06\x89\x19\xcb\xfa\xcc\x88\x9c\x84\x6f\x51\x57\x22\x8c\x25\xb5\xd9\xa3\xcf\x9b\xc0\x04\x43\x18\xe2\x65\x17\xa5\x49\x30\xdc\xe3\x1a\xed\xd4\x74\x9f\xb8\xa2\x17\x5f\x74\xf3\xaa\xd2\xb7\xc4\xc9\xfb\xdf\xe2\x82\x9c\x6c\x25\x2d\x11\x7f\x41\xc3\x74\x31\x7e\xd9\x69\xcb\x38\x5b\xa8\xc0\xa7\x90\xc1\x78\x47\x2a\x5c\x1b\xd8\x3c\x4e\x17\x13\x32\xe5\xc3\xa3\x7c\x2d\xa2\xe7\xfa\x1a\x65\xaf\x3d\x9b\xb0\x6e\x02\x8f\xcc\x9f\xa4\xf9\x80\xc4\xb4\x65\x5d\x21\xab\xff\x14\xa1\xd2\xa9\xfc\x53\x92\x7c\x91\x38\x89\xc3\xb4\x6b\xf3\x7e\x9c\xea\x42\xae\xe3\xab\x86\xec\xe2\x6b\xc3\xb8\x84\x3e\x32\xea\x6f\x88\x10\x03\x62\xc5\x59\xab\xaf\xe5\xa7\x63\x4d\xde\xdf\x0a\xa6\x7a\x17\x6a\xe4\x4a\xe6\x9b\x3d\xd3\x6f\x0f\xf3\x25\x9b\x03\xe8\x75\x52\xdc\x61\x8a\xe2\x5f\x10\xfd\x69\xd5\xa4\x4b\x72\x68\x2b\x33\x49\x12\x57\xc7\x52\x0a\x95\x9c\x38\x1e\x4e\x87\xf0\xaf\xc5\xba\xce\x71\x48\xf2\xea\x66\x3a\xaa\x9f\xa0\xff\xc8\xb7\xec\xfa\x36\x71\x4c\x3c\x07\x95\x36\xfc\x88\x3a\x66\x42\x9d\x4d\x52\x68\x4d\x24\xc9\x6e\x52\x1f\x3b\x89\xfd\xe7\x59\x08\xd5\xed\xf7\x10\x46\x78\x30\x6f\x8c\x82\x7a\xca\x4f\x93\x02\xce\x49\xec\x71\x2f\xea\xef\x5b\x4f\x57\xa3\x30\x9b\xbd\x07\x24\x29\xa7\x30\x2f\x8b\x0f\xa4\x9d\xad\xba\x46\x69\x7b\x98\x57\x3b\x2d\x8c\xaf\x1f\x21\x39\xf2\x9b\xe4\x4c\xcc\x64\x72\x29\xf7\xa7\x65\xa3\x01\x54\xbb\x44\x16\xad\xa2\x5b\xb2\xf5\x2a\xd3\x22\x7f\x8f\xb2\x51\xd3\x6e\xc7\x16\x20\x94\x9b\x2d\x20\x5e\xd2\xf9\x31\xd8\x88\x34\xbd\x8e\xd3\xf6\x5d\x1c\xa6\x4b\x71\x83\xd3\x7d\xf9\x04\x7d\x33\x01\x93\xef\x9f\x6b\x2e\x65\x1a\x4d\x50\x0c\xdd\x1c\x73\x63\x0f\xa4\x8c\x63\x75\x21\xbd\xec\x65\xc3\x25\xe8\xda\xb2\x9d\x82\xf3\x5c\xf0\xfe\x34\x71\xd9\xe9\xb9\xa9\x09\x27\xa0\x28\xb7\xc8\x49\x2b\x6e\x8f\xfd\x0e\x4c\x4c\x45\xd6\xd6\x7b\x40\x6e\x46\x81\x3d\xf2\xab\x64\x32\xba\xe9\xd9\x37\xa5\x49\x97\x12\xdb\x68\x7c\x79\xd6\x87\x68\x79\xcc\xae\x23\xb4\xfd\x47\x54\x01\x6c\x30\xb0\x26\x97\x53\xd2\x99\x44\x11\x1b\x75\x63\x0c\x6f\x29\x96\xd7\x66\x88\x9b\xb8\x15\x05\x76\xc3\x4d\x64\x01\xfa\x3f\x64\x9b\xa0\xde\x6b\xac\x87\x29\xec\xb3\x1c\x7e\x6c\x77\x4f\x20\xc0\x3c\x8e\xd2\x5d\x02\xc2\xf2\x93\xeb\xc1\xc4\x03\x87\x94\x9c\x2b\xdf\xfe\x79\x90\xc7\x7d\x8c\xaa\xbe\x50\x72\xbb\x8f\xfe\x36\x34\x42\x50\x53\x9c\x8e\xaa\x4a\xda\x19\xa4\x50\x24\x43\xe9\x8d\x6d\xf5\x1e\x1d\x78\xff\xd1\xa3\x98\x5e\xc2\x72\x16\x72\xd0\x33\xbe\x23\x2a\xbf\x57\xfa\x2c\x9d\x5f\x68\x79\x12\xc2\xf0\x73\xd2\xe5\x40\x24\x38\xed\xb7\x75\x3f\x4e\x96\x77\x86\x71\xd0\x5b\x72\xf1\x68\x6b\x3e\x2a\x83\x7b\xea\xae\x37\x0a\xfa\x6d\xff\x72\x34\x99\x25\xe1\x42\x26\xcd\x74\x9f\xdb\xfb\x4c\x73\x90\x18\xaf\xfe\x0d\xbe\x27\xcc\x63\xf4\x75\xab\x06\x35\x31\xed\x2c\x89\x8b\x9e\x3c\x63\x74\xd7\x21\x10\xaa\xaf\x59\xfb\xcf\xca\x7c\xe6\xfd\x92\x1c\xe2\x64\xb9\x49\x29\xea\x07\x12\xb5\x91\x34\x4e\x89\xdf\x04\xb2\xc9\x07\xe5\xc6\xe0\x88\x01\xf2\xe6\x8e\x1e\x8a\x38\x37\x91\x3a\x38\xd6\x09\xa9\xd1\x9a\x32\xcf\xd2\x82\x38\x29\x17\xb9\x69\xc0\xdd\x73\x21\xa5\x98\x04\x65\x93\x23\x32\x30\xab\x21\xda\x6e\x66\xe3\x0d\xd7\xec\xa2\xcd\x73\xed\x26\x28\x42\x11\x05\xe6\xfa\x25\xaa\x8c\x4c\x3b\x16\x89\x42\xe2\x2c\x6f\xb0\x24\x68\x9d\xbf\x44\x2f\x0e\xc2\x0e\x3a\x3e\x27\x9f\xee\x46\xe9\xb8\x75\xf6\xf2\x10\x8c\x15\xd4\x03\x47\x90\xc4\xe9\x9b\x89\x40\x3c\x7b\xa8\x59\xe6\xc3\xb2\x27\x35\x15\x20\xd8\x3b\xa3\x89\xb0\x88\x40\x32\xdd\xe2\xd3\x7d\x69\x26\xa0\x0f\x27\x89\x88\x39\xd5\x62\xfc\x08\x21\x16\x07\x2e\xb6\x2d\x2e\xf9\xb4\x8f\x29\x45\x36\xcc\x3b\x76\x7a\x6c\xf2\xbe\xe1\x4d\x7b\x77\xb6\xc2\x30\x84\x86\x65\x9c\x75\x57\xd9\xff\x3e\x5b\xb3\x39\x73\x19\x2f\x23\x77\xd1\x37\x23\xae\x06\x06\x59\x29\xfa\x82\xf8\xad\xa7\x44\x77\xc6\xb7\xab\xfc\xa4\xe2\x8f\x99\xe4\xf0\x5d\x1f\x6a\x4b\xd3\x59\x0e\x8d\x66\x4d\x73\xa3\x40\x9a\xf9\x0c\x26\x7c\x37\xeb\x94\xb9\xd4\xb7\x24\x6d\xf0\x09\xf9\xd7\x7c\x42\x6d\xfb\x97\xb2\xc2\x0e\x7a\x92\xf0\x91\xa5\x84\x97\x80\xc0\x2f\x73\x0c\x42\x8e\x9e\xf1\xa2\x4a\xc3\xa0\x7f\xf5\x26\xd3\x0b\x8f\x92\x83\xef\x95\xf1\xc2\xa0\x46\xb3\xad\x6d\x17\xb3\xdc\xf6\xc4\xb3\x6c\x61\xaf\x86\xaa\x46\x2b\xcc\x96\x35\xd6\xbd\xe1\xb2\x38\x5f\x2e\x38\x65\x74\x34\x74\xdd\x88\xcc\x36\xc7\xf4\xa7\x9e\xaa\x6e\x87\x1c\x53\x0a\x4a\x0b\x8a\xed\x00\xea\x3d\xa4\x99\x94\xe7\xb6\x53\xce\x84\x2f\xd7\xf2\xdc\x07\xcd\xc0\x0c\xff\x41\x14\xe0\x62\xd8\x52\xaa\xe2\xe5\x04\x02\xf0\xe5\x59\xf1\xc1\x91\x38\xe0\x6b\xc1\x50\x17\x12\x22\xb2\x64\xf2\xae\x4d\xd5\x2e\x54\x59\x1f\x63\x66\xda\x7b\x3c\x93\x7b\x60\xd2\x22\x76\x0e\x41\x75\xea\xb0\x8f\x7a\x0e\x22\x48\x42\x33\xac\x11\xce\x49\x92\x0a\x82\xe0\x6e\x3c\xd2\x0a\x3b\x18\xe3\x72\xc8\xe3\x8e\xd6\xb9\xe2\x97\xbd\x38\x05\xb1\x4f\xa9\x88\x34\x83\x72\xac\x46\x77\xf7\x99\x66\x61\x6d\x7f\x8a\x64\x9a\xb4\x8b\x0a\x6c\x1e\xee\x16\xce\x01\x7f\x7b\xee\xf0\xfc\xc2\xde\x66\x5c\x98\xb6\x4d\x12\x40\xeb\xda\xb1\x62\x59\xec\x13\xd1\x18\x99\x35\x87\x0c\xfd\x74\xe3\x8b\x5f\x0d\xa7\xae\x27\x97\xa1\x21\xee\xe0\x1c\x39\x19\xf4\x4d\x14\x26\x00\x57\xf3\x2a\xf3\x90\x9d\x57\xfd\x03\x67\xc5\x54\xfd\xa5\x63\x73\x92\x2d\x52\x5a\x7d\x9d\x8e\x35\x81\x01\x04\x0a\xb6\xbe\x26\xca\xe2\xda\x70\x29\x2b\x12\xb3\x12\x1b\x59\xc4\x3a\x4c\x14\x85\xfa\xf2\xc2\xa8\xf9\x19\x11\x3f\xb7\x5d\xc8\xa5\xc8\x5d\x70\x2a\x41\x04\x08\xbd\x39\xda\x1d\xc4\xf8\x8b\x7f\x57\x6a\x4f\x67\xba\xd8\xd8\xb7\xcf\x63\x20\x92\x74\x60\x31\xff\x91\xe8\x9f\x13\x9d\x61\x3e\x8c\x58\x7d\xf1\xab\xe3\xca\xba\xde\x5d\xbf\xfa\x95\x0e\x5e\xf5\x13\xd3\xdf\xfc\x5d\xb9\xc5\x38\x52\x76\x4b\xd5\x03\x4e\x8b\x1a\xfd\x48\xfc\xf8\x95\x27\xd6\x79\x96\x98\xa6\x2f\xb7\xa4\x86\x46\x5e\x7e\x07\x53\x15\xf8\xf2\x2b\x08\xe8\x08\x46\x1f\xa2\x41\x87\x0f\xd6\x76\x13\xd2\xb5\xa9\x75\x31\x95\xd2\xea\x01\xcd\x3e\xd4\x2e\x77\x23\xd2\xb9\xd4\xb4\xcc\xb5\xce\xaa\x58\xec\x21\xe5\xaa\x6e\x77\xd3\xc2\x81\xb5\xbb\x7b\x3d\x18\x82\x5e\x26\xe2\xd3\xfd\x63\x12\x84\xf7\xb5\x26\x57\x7d\x13\xb6\xc1\x6c\x36\x27\x7f\xef\xd2\xbd\x47\x3d\xe9\x73\x91\x54\x87\x51\x66\x1f\x23\x85\xd4\x63\xf5\x6e\x6a\x4b\xb9\x35\xa5\x27\xd1\xe0\x66\xdd\xa0\x69\xf4\x1b\x23\xc6\xd9\x87\x79\xbb\x3a\xb1\x9e\xf7\x37\xfc\x38\xcd\xc4\xf2\x90\x59\xb6\x62\xf3\x3c\xee\xba\x19\x61\x6c\xea\x53\xb4\xc1\x4f\xd5\x18\xb5\x36\x07\x82\x71\xc3\x0d\xd7\x9d\x88\x81\x9c\x78\x91\x9c\x71\xbf\x31\x1a\x53\x9a\x92\x79\xad\x19\x72\x7f\x3a\x17\x8d\xdb\x7f\x1c\x38\xe0\x3d\xdd\x65\x1d\x39\xf2\x13\xd1\x9b\x7e\x3f\x0a\x1c\xdc\xbe\xe9\xf4\xe3\x24\x71\xa6\x12\xde\xf4\xc8\xbb\x0d\x8e\x3b\xe0\xf7\x8d\xb2\x04\x5c\xf6\x50\xad\x48\x50\xfd\x54\xe9\xcc\xcf\xfe\x05\xcd\xdb\xeb\x34\xb1\x6d\x3a\x3d\x9b\xb6\xcd\xb0\x2f\x9c\x5f\x67\x14\x27\xdf\x8d\x0c\x6e\x93\x8a\xd7\x4d\x5c\xb5\x53\x1a\xaa\xf1\xe5\x5b\x8c\x57\xec\x62\x96\xe8\x80\x8f\xf7\xa0\x5a\x70\x53\x60\x50\x5c\x74\x78\x9b\x83\x5f\x3a\xb9\x29\x7a\xae\x55\x03\x88\xf6\x35\x76\x17\x7a\xed\x33\xb3\x48\x33\x18\x24\x66\x58\x58\x1c\x27\x88\x40\x48\x78\xf5\x75\xeb\x71\x9e\xdf\x1c\x86\xd1\x5e\x9c\x4c\x63\x8e\x0c\x17\x08\x05\xed\x64\xc3\x01\xe0\x44\xc4\xf8\x23\x51\xe8\x8c\x1f\xf1\x2c\xb7\x62\xd8\x2e\xe2\x6e\xfc\x8a\x3a\xd1\x01\xf3\xda\xd1\x0a\x54\xc3\x73\x38\xa3\x50\xa3\x5f\x1f\x6d\xe3\x7e\x3e\xdd\x3c\x70\xe0\xa0\xaa\x98\x23\xa4\xdc\x44\x80\x70\xad\x7d\x89\x74\xce\xf6\x57\xf6\x89\x42\xac\x24\xa6\xff\x31\x17\xe5\x37\x09\x14\x4d\x4d\x27\xce\x52\x93\x4c\x55\x1b\xc5\x9d\xb4\x34\x9d\x7d\x44\xc2\x87\x3b\xc2\x42\x7b\xb2\xda\xf6\xd5\xfe\x79\xb4\xda\x0c\x48\xe8\x36\x25\xcc\x22\x99\x78\x13\x4f\x06\xbb\xe1\x24\xae\x4a\xc7\x92\x51\x50\x78\xc5\xaa\x6a\xb3\x02\x31\xbf\x1a\x4d\xcc\x3c\xa0\xea\xbb\x3a\x0a\x74\xe3\xf3\xdc\xeb\x82\xa4\x2a\xb6\xd4\x40\x8e\x17\x2c\x9a\x37\x51\xc1\x38\x91\x5e\x1a\xc7\x3f\x07\x1e\x85\x03\x79\xfc\x7c\x78\xb2\xd6\x1f\x68\x79\x06\xee\x8b\x8a\x38\xea\x9b\x1a\x91\x81\xa6\x38\x1d\x57\xd9\x4c\xa0\x19\x44\x01\x6a\x99\x24\xd9\xcf\x1e\x6a\xb6\x6d\xcf\x39\xd9\x3b\x40\x4d\xee\x8c\x43\xd4\x26\x67\xcd\xe7\x9b\x83\x3c\x2b\xa5\x11\xdc\x20\xfd\x14\x94\x77\xfa\x9a\xfa\x58\xed\x3c\xee\xfa\x06\x15\x72\x1b\xc0\xb7\xee\x4d\xdd\xac\x7d\xdf\x2c\xc6\x66\xaa\x7a\xcc\x3c\x84\x0a\xe8\x0c\x2c\x0a\x27\x81\xe6\x57\x74\x3f\x2e\x7b\xcb\xe2\x00\x28\xe7\x2f\xd2\x1d\x55\xb2\xd4\x37\x63\xe3\x1e\x3d\xe3\x24\xc1\xc6\x88\x9b\x8e\xa3\x4d\xd6\x66\xbd\x38\xe9\xf6\xb2\x0c\x15\x1f\x80\xe9\x23\xd4\x8d\x3a\x42\x7d\xd5\x34\xcb\xb3\x6e\xd6\x6f\x90\xb3\x25\xb2\x1e\x57\x35\xd4\x70\x46\x8a\x78\x09\x8d\x2e\xdf\x50\xa9\xd6\x06\x22\xde\x99\x31\x4d\xb0\xdd\xbe\x38\x19\x58\x64\x97\x7e\xc0\x25\xb8\x5c\xe2\x89\xe3\x7c\xd9\xd3\x0a\xe0\xda\xee\xf5\x90\xbc\x1f\x1d\xf1\xbc\xab\xf8\x36\x2d\xec\x75\x6d\xdd\x51\x80\x39\x4f\xfb\x71\xc1\xb6\x49\x96\xc7\x9f\xf7\x55\x6c\x27\x7d\x53\x57\xca\x76\xcc\x70\xa9\x57\x22\xa2\x2a\x0f\x2a\x0a\xd5\xaf\x32\x13\x1d\xb3\xd1\x8f\x7d\x25\x26\x4e\xdd\x84\x10\x26\x36\x6e\x46\xa4\xa7\x75\x73\x14\xc4\xa9\x4c\xde\xe9\xc5\xd5\x4a\x1c\xe6\x3a\x54\x43\x3c\xc9\x39\xdf\x2c\x1c\x1b\xf2\x31\x4b\x12\x56\x40\x67\xba\x26\x2c\x05\xfc\xd6\xc3\xf2\x48\xf1\x25\xa7\x26\x92\xe1\x03\x07\x9a\x36\xb1\x9d\x32\x73\x73\x71\x75\x2e\x47\x7c\xc0\x0d\xe3\xa2\x41\x10\x0c\xc3\x9c\x37\xfd\x1e\x7f\x29\x2e\x4b\x9b\xaf\xa1\x98\x73\x83\xc1\xbe\x8f\xfa\xd7\x1f\x6b\x85\xfa\x62\x37\x90\x25\x8c\x41\x4f\xce\x98\x3f\x5d\x9d\x12\x71\x81\x79\x1c\x95\x6e\x40\x90\x71\x3a\x0e\x8f\x33\xbf\x26\x86\x37\x48\xe3\x2b\x5f\xd2\x50\x75\x9a\xe8\x1f\x93\x72\xba\x87\x9e\x6d\x96\xd9\xcb\x55\x30\xf2\x9d\x33\x54\x60\xfa\xba\x56\xdd\xe9\xa5\x61\x77\x09\x47\x96\x57\xa6\xa9\x7e\x81\x53\xa3\xa9\x21\xfc\x15\xc3\xc1\x20\x89\x6d\x3e\x1d\x80\x9f\xfb\x80\xc7\xa1\x27\x80\x47\x84\xbc\xf3\xc4\xd8\x80\x55\x0d\xea\x3c\xc8\xe3\x3e\xf8\x3d\x80\xcd\x6e\x13\x48\x73\x96\x91\xe3\x81\x76\x45\x91\x66\x6f\x10\x2f\x6b\xb5\x67\x73\x2b\xa3\x2a\xa8\x76\x76\x22\x89\xc5\x3f\x9c\x5e\x0f\x2c\x98\xcb\xd4\x6a\xbc\x20\x27\x03\x49\x69\x3d\xe3\x1d\xc3\xc3\x51\xfb\x6a\x14\x26\x95\xee\x45\x94\x03\xdc\x88\x58\xe5\xfe\x12\x8f\xe3\x9c\x06\xe7\x15\xa5\xfd\x5f\x91\x49\xd0\x45\x1c\x20\xb8\xc6\xf3\x13\xfd\xbf\x2a\xc8\x67\x49\x51\x06\x03\x4b\xdf\x6d\xf1\xfd\xc9\xd3\xec\xb4\xb2\x1a\x17\x25\xcb\xce\xc8\x8d\x43\xef\xf4\xf8\x18\xe5\xb5\xa6\xf3\x9e\x5a\xdb\x9d\x09\x53\xb5\xdf\x8b\x1a\x5f\x9e\x55\x91\x54\xf0\xf5\x9c\x24\x83\xdc\x49\x34\x84\xe1\xdb\xe1\x08\xfc\x34\xd6\x95\x67\x30\x94\x98\x62\xda\x5d\x14\xc6\xa3\xa0\x03\xe4\x28\x2b\x81\xdd\xd4\x8f\xd3\x61\xa9\x40\x93\xa7\x8d\xd0\xf2\x0e\xf3\x9b\xaa\xd8\x8f\xb4\xe5\x27\x94\xb8\x0f\x72\xdb\x8d\x3b\x5a\x44\xb8\xf6\x40\xf5\x19\xae\x6f\x10\x60\x9c\x22\x5e\x1a\xe6\xdd\x06\xb7\xd6\xf5\x2c\xd1\x37\x51\xb8\xb2\xaa\x80\x5f\x2a\x1e\x0c\x4e\xf4\x77\xa5\xfc\x72\xc2\x2e\x72\x31\xf8\xab\x4b\x28\xf7\x74\x5c\x0b\xa9\x92\x73\x6a\x6b\x78\xe7\x74\xe5\xd3\x39\xd7\xb6\xa0\x81\x70\x93\x6a\xed\xfb\x04\x05\x77\x83\x5f\xa1\x07\x37\xb0\x79\x31\x14\xc3\xc8\x19\x9a\x34\xf8\x2d\xea\xbf\xbe\x15\x79\xcc\xfc\xef\xab\xa9\x84\x73\x5d\xc2\xcf\x45\xd2\x72\xa9\x46\x36\xa8\x99\x64\x85\x75\xc2\xb7\x8e\x7e\x30\x15\xfc\x6f\x2f\x32\xaf\x2c\x2d\xe3\xb2\xaa\xe3\x43\x8b\x8f\xa5\x51\xce\x8d\x02\x21\x22\x1d\x96\x7a\xa7\x01\xf7\x5f\xc7\xe6\xd1\x37\x94\x76\x14\x36\x49\xdc\xe4\x3c\x6e\xef\x15\xf2\xdb\x3a\x27\xd1\xc3\x89\x9a\x92\xfa\xc2\x15\x32\x34\x3f\x3b\x0a\x76\xa4\x67\xc9\x46\x71\x39\x5b\xec\x64\x3d\xd2\x37\xbc\xcc\xc3\xed\x97\x27\x12\xb3\xa7\x9b\xdd\x3c\x96\xab\x61\xb3\x8b\x73\x6c\x76\xc1\x6b\x24\xb1\x2b\x36\x29\xa6\x83\xec\x39\x24\xe6\xf4\x35\x50\x41\x5f\x04\x54\xdf\xeb\x8a\x00\x52\x32\x8c\x73\x61\xd9\xec\x22\x08\xea\xdb\xa4\xc7\xa1\x6a\x9c\x1e\x9b\xaa\x6e\x21\x6e\xc6\x74\x2b\x6c\xd2\x13\x1a\x8b\xf0\xcd\x97\xc8\x11\xf2\xbe\xf5\xb0\xfc\xb3\x97\xd7\x96\x2c\xa0\x11\x2c\xe9\xa3\x58\xc6\xfa\x86\xaf\x2a\x29\xe3\xbe\xc9\xd1\x56\x03\x31\x47\x27\x23\xf5\x0d\xd9\xc9\xd8\x97\x25\x99\x97\x93\x3d\x00\x9a\x1f\x92\x58\xe8\x87\x75\xa3\xc2\x83\xdc\x76\x6c\xd7\x11\x1d\xc0\x29\xba\x81\x20\x8c\xa8\x8d\x99\x70\x14\xb6\x3f\x98\x58\xb6\x87\x9e\x6d\x9a\x4e\x27\xcb\xbb\x63\xc7\x68\x83\xd4\x90\xb6\x87\xbc\x43\xcf\x36\x07\x26\x46\xd7\x0b\x8f\xf2\x5d\xf9\x06\x7d\x5d\xab\x3c\xd3\x1b\x26\x55\x14\xd0\x75\xec\xb2\xae\xcf\x60\xd6\x0d\xb2\xc4\x16\x72\x20\x82\xfe\x0a\x11\x23\x3c\xb9\xfb\x70\x1e\xe9\x9b\x75\xcf\x2d\xfd\x01\x0d\x81\x96\x59\x1f\xb3\xf6\x0e\x08\x95\x27\xef\x90\xd0\x70\xd6\xf5\x32\xaf\xc5\x58\x27\xc1\xc9\x9e\xd4\x79\xbc\xb8\xa8\xd5\x3b\x96\x93\x92\x9c\xf5\xcd\x18\x73\x82\x38\x9d\xa7\x49\xb8\xa6\xb4\xa6\xbf\x8b\x66\xb8\xee\x03\x19\xd6\xd5\x2c\x54\x7b\x6a\x6d\xe6\x12\xdd\xf0\xf4\xae\xa0\xa0\x72\x49\x2f\x7b\x33\xd5\x22\xa1\x49\x56\x94\xd3\xf2\x59\x4e\x72\x83\x9c\xca\x8f\x61\x27\x61\xa5\xef\xc0\xc5\x60\x99\x1d\xaf\x4b\xd9\x7b\x6b\x03\x55\x5a\x45\x5e\x7b\x81\xa4\x47\xb7\x4d\x37\x2d\xdb\x27\xab\x6b\x46\xd0\x7b\x68\x7d\x4c\xf6\x24\x18\xf3\xfc\x68\x5c\x36\x65\x4c\xa9\x84\xf5\x48\x42\xf3\xe5\xa3\x09\xd5\x12\x92\x43\x09\x33\x2a\x1a\x22\x7c\x9b\x95\x04\x5c\xe4\x01\x2a\xee\x16\xfd\x5b\x8a\xae\x7c\xa6\xce\x0a\x79\x01\x4e\xc3\xff\x0a\x18\xda\xfd\xd4\x49\x5a\x33\xaa\xc6\xee\xe5\x69\x7d\xc1\x88\x4c\x17\xeb\xe4\x1a\x03\xcc\x8d\xf5\xb0\xf2\xfe\xfa\xec\xfe\x67\xf6\x1f\x3a\xf8\xef\xc9\x0f\x47\xe9\xfd\x70\x6b\xc7\xcf\x05\xc4\xa2\xfa\x6c\x24\x5e\xa7\x80\x40\x20\xa6\x6d\x61\xa5\x80\x0d\xf4\x51\x84\xe1\x5e\x75\x30\xc1\x29\x8b\x27\xf7\xe3\x28\x68\x52\x7c\x2c\x77\xc4\x4b\xe2\xfc\xca\xf3\xba\x1c\x74\x94\x5e\xb5\xe5\xc8\x78\xe8\x65\x41\xb0\x14\x3a\x15\xd4\x17\x01\xf0\xe3\x11\x09\xdc\xef\x5a\x6f\x7c\xf1\xab\xfa\xa9\x5b\x78\x4c\x08\x2c\x2e\xed\xc3\x97\x5c\x8b\xaa\xc4\x1c\x57\x78\x16\xd3\xc2\x2a\xdc\x34\x0a\x86\x07\x3f\x46\x58\xc3\x33\xff\x84\xe5\x42\x14\x50\x40\x58\xb8\x13\x85\xc1\xbb\xb7\xb1\xca\x70\x67\xaf\x4b\x0a\x8a\xed\xf3\x1e\xd0\x10\xa0\xd9\xb7\x25\x25\x41\x21\xf4\xd7\x50\x75\xe0\x81\xdd\xd7\x0a\x86\x92\x4c\x7a\x69\x67\xbe\xe1\x55\xe7\x3c\x31\xae\x34\x99\x3e\x12\x5a\xf2\xe2\x77\xfc\x8c\x96\xb7\xb7\xb1\x52\x91\xcd\x5d\x92\x1f\x8a\xc5\xad\xc3\x09\x9e\xdb\x5a\xdd\x7f\x30\x02\x7e\x14\xe8\xf4\x3f\x50\x10\x06\x69\xdd\x5f\xe9\xed\x74\x5e\x9c\x0d\x6f\x77\xba\x03\xf5\x84\x9f\x02\x0b\xa6\xd4\x3f\x20\xdf\xbb\x7f\x35\x22\x33\xdc\x2b\x5e\x5d\x22\xb7\xfd\x4c\xf8\xab\x0a\x19\xa3\x9d\x83\x5f\xab\xaf\x6b\x30\xda\x39\xa1\x8d\x59\x05\x46\x5d\xce\x51\x7d\x99\xcb\x45\x02\x08\x1c\x04\x41\x30\x43\x81\xcc\x79\xba\x15\xba\xfc\x3b\xd6\x43\x17\x7d\x73\xc4\xa5\xec\x1e\xf2\xbe\x1c\xd8\xb4\xb0\x33\xd5\x2a\x54\xad\x3a\x59\x9d\x6e\x14\x54\x2e\x5e\x6d\x50\x64\xcd\x6b\x82\x3e\x0a\xf8\xe3\xc9\xd1\x67\x22\x97\x69\xcf\x0e\x0b\x6d\x99\xe1\x19\xeb\x8e\xd5\x37\xfe\xec\xe9\xca\x18\x07\x8f\xcf\x04\x8d\xf4\x8b\xa3\x87\x98\x8c\xde\x94\x4b\xc2\x2f\xd9\xdd\x0a\xc3\xf2\xc3\xc7\x85\x69\x81\x3a\x67\xa6\x55\xfd\x20\xa0\xc9\x27\x65\xf5\x62\x19\xfd\xaf\xd2\xda\xc5\xed\x39\xa1\x11\xcb\xf1\x51\x65\x5d\x03\xba\xbe\x37\x22\xf3\x95\x8f\x24\xb7\x83\xe4\xec\x93\xeb\xd5\x5e\x77\x1d\x35\x84\x07\xa7\xb8\x29\x9b\x4f\xc5\x7d\x46\x61\x36\xec\x13\xf6\xb5\x7b\x00\x74\x28\x12\xf4\x70\xf4\x62\xf4\xb4\x11\xc9\x9f\x58\x6f\x3c\xef\x1a\x6f\x00\x09\xf1\x51\x3b\xd0\x40\x71\x66\x19\x12\xb7\xa0\x9a\xf0\x33\xad\xc6\x53\x4f\xe9\xff\xb8\x19\x51\xcf\xe5\xa1\x96\xac\x5b\xe4\xe5\xbb\x30\x94\x89\x85\x7f\x5b\x0c\xbb\x3c\xf0\x1a\xce\xd4\x47\x65\x1a\x0d\xc1\x51\x87\x18\x51\x88\xaa\x5c\xae\x1f\x8f\xde\xaf\x51\xe4\xd0\x9e\x09\xfb\xf3\x85\xbd\xcd\xc5\xdc\x0c\xbb\x62\x62\x2d\x88\x15\xc0\x32\xb0\x77\xc6\x7c\xaf\x5c\x93\x6f\x77\xe8\xc7\x67\x9f\x0b\x52\x32\x58\x75\xd8\xb8\x77\xf0\x8c\x00\x90\x7d\x17\x0d\x24\x2d\xcc\x47\x72\x67\xc6\x4c\x1a\x1d\xc9\x42\x7e\xc1\x98\x01\x32\xae\x05\xa3\x79\x6e\x50\x91\x64\x37\x4e\xe9\xc2\xc0\x49\x78\x9a\x5b\xf2\x11\xcd\xf9\x4d\xaf\x07\xfa\xd0\xc6\x75\x12\x5c\xbd\x20\x46\x8e\x8e\xbf\x49\x56\x8c\xdf\x95\x7b\x86\x32\x7a\x66\x5d\x96\x2e\x2e\x72\xa6\x45\x73\x25\xda\x33\x43\xa2\xfb\xce\x44\xea\x5a\x25\x9e\x55\x11\x94\x0f\x15\xc2\x71\xd3\xbf\x0d\xaf\xbf\x72\xde\xcf\x39\x77\x32\xf1\xc4\xee\x1a\xdf\x93\x74\x52\xf3\xac\x3b\x4f\xba\x0a\x4b\xb9\xe9\x53\x16\xfd\xe6\x88\xa6\x9e\x28\x6c\xf4\x4c\xbe\x62\xf2\xee\x14\x75\xb8\x5d\x09\xe0\x88\x06\xa1\x04\x78\x7b\xf4\xa0\xfe\x86\xe6\xf3\xf3\x9f\x23\x42\xce\xb1\x88\x4e\xc8\xc7\xb0\x97\x81\x5a\x7d\x48\x5c\x21\x55\xc7\x02\xa2\x3b\x05\xba\xae\xd3\x03\x91\x67\x8b\x70\x3d\x85\xb6\x25\x4e\xac\x47\xa5\x23\x88\x0f\x6e\x48\xa3\xd3\x59\x7a\x04\x62\xc0\x65\xac\x3f\x1c\xe8\x4f\x48\xc0\x20\x26\xa6\x63\x47\xbd\x23\xab\xc4\xe3\xa5\x0b\x7b\xbd\x14\x04\x0d\x6b\x9d\xc6\xce\xd0\xbf\x18\x91\x02\x90\xf2\x1f\x11\x23\xae\x8d\x42\x89\xf9\x0f\x27\xc0\x97\xfd\x73\x4d\xd3\xe9\xc5\x76\xc5\x1f\x1a\x3a\xc3\x4f\xc0\xe1\x11\xa2\xdc\x66\xdd\xee\xae\x6a\xa7\xfa\xa1\x2c\x1f\x1a\xfe\xf1\x28\x74\x26\x37\x10\x97\x5c\xe3\xbf\xe1\x35\xc4\xa7\x90\x88\x29\x2c\x16\x05\x15\xc3\x49\xec\xff\xc0\x81\x66\x31\xc8\xad\x51\xf2\x30\x5a\x5e\xc7\xa2\x40\xb2\x9c\xb4\x93\x98\x3d\xd4\x2c\xca\x6c\x30\xd0\xe0\xaf\x64\x9a\x88\xe7\xc0\x6b\x70\xd3\x38\xfd\xda\x30\xc6\x18\x73\x18\x46\x42\x9f\xd5\x51\xc1\x27\x81\xa4\xf9\xe6\x53\x56\x61\x74\xda\xff\xb3\xee\x4d\xcd\x31\x3b\xdb\x84\x7c\xd1\x54\x10\x79\xbd\x40\x3e\xd1\x7f\x28\x80\x88\x13\x46\x08\x85\x66\x6a\x87\x79\x96\x64\x4b\xb1\x36\x41\x6a\xc7\x62\x42\xe7\x34\xcf\xb2\x7e\xdf\x94\xb6\x81\x63\x02\x51\x17\x41\x47\x5f\x93\x33\x48\x55\x83\xe7\x40\x35\x10\x79\x59\x72\xe2\x72\xed\xed\x8d\x97\x52\xaf\xcc\xeb\xa7\xcc\x3d\xeb\xe8\x7a\x14\xa6\x59\x27\xef\xda\x81\x03\x55\xb9\x37\x20\xda\xcd\x31\x89\x4d\xfa\xba\x8e\x11\xd6\x96\x05\x10\x10\xb5\xdf\x1e\x85\x71\xbe\xdf\xa6\x1e\x48\x31\xd4\x69\x74\x09\xfb\x0e\xaa\x0c\x39\xfb\x61\xdc\x2f\x84\x89\x73\x63\xd6\x00\x82\xa3\x49\x57\xfb\xb9\x20\x1a\x2d\x4b\xce\x69\xcf\xd6\x91\xb3\xcb\x9e\xcd\xf2\xd8\x8b\xa6\x3a\xcb\x25\x4a\x8a\x4e\x4e\xfc\xfe\x7d\xfb\x9a\xb2\xcc\x10\xb2\x5c\x0f\x57\xfe\x44\xdf\x44\xe3\xaa\x34\xf6\x21\x7a\xca\x3a\x0a\x82\xe8\xb9\x89\xac\x9d\x64\xde\xfd\xa6\xc2\x69\xa3\x06\x02\x34\x66\xba\x9b\xdd\xf6\x8f\x8d\x48\xe2\x06\x4d\x02\x40\x54\x57\x51\x8b\x38\xc9\x78\x89\x8e\x4a\xc6\x93\x56\xa5\x23\xe6\x6d\xdf\x47\xc2\x3c\xb0\x26\x17\x78\x9c\xe0\xd0\x53\xf8\x3c\x64\x38\xd3\xad\xb0\x7b\x2f\xe2\x17\xe0\xc0\xd9\x20\x64\xb3\x6d\xd2\xe5\x38\x5d\xda\x15\x00\x92\x6b\x11\x35\x46\x2f\x20\xfc\x3a\x97\x63\xfa\xe5\x77\x46\x0d\x92\x09\x92\x1f\x3b\x66\x8c\xec\x0c\x2c\x1d\xbd\xa2\x13\xe7\x9d\x61\x5c\x8e\x51\xe1\x4e\xd1\xb9\x7b\xca\x4b\xf2\xf5\x4c\xac\x33\xfa\xa8\x40\x6e\xc9\x37\xe9\xeb\xcf\x70\xdd\x4e\x63\xdb\x9d\x26\x21\x82\x51\xa0\xfa\xa9\x24\xa3\xbe\x89\x08\x23\xab\xf3\x62\x7c\xa6\x59\xc4\x5d\xbb\x6a\xd6\xf4\x42\x59\xf5\xd8\x09\x76\x90\x23\xe0\xcb\xb6\x3f\x28\x1d\x49\x43\x47\x33\xd8\xe2\xea\x22\xcd\xd0\xc1\x70\x41\xbc\x34\x9d\x0e\x54\x75\x95\x58\x3b\x6f\x4a\x06\xea\xb3\xf0\xe7\xdc\xf0\xf9\x87\x52\x7e\x8d\x41\x69\xfa\x3f\x26\xe0\x2a\xf1\x5c\xeb\x67\xb9\xce\x47\xf9\xf2\x3f\xd4\x85\x93\x41\x62\x61\x6f\xb3\x9f\xe5\x76\x6a\x8a\x6d\xd6\x09\x49\x79\x0d\xeb\xc6\x89\x62\x8e\xa9\x93\xa4\x1d\xab\x33\xb0\x2e\x0c\x87\xfa\xf7\x34\x6e\x02\x3a\xf4\x77\xea\x62\x4d\x6f\x98\xe7\xca\x85\xf5\xa7\x9b\x77\x1d\xbf\xc8\x6e\x3a\xc3\x74\x86\x26\x52\xce\x47\xa4\x75\xa6\xdb\x0f\x0b\xf7\x0a\x85\xd3\x4f\xf0\x23\xc0\x26\x98\x74\xcc\xd8\xb7\xaf\xd9\xb5\xa2\x8f\xe1\x89\xef\x37\x22\x52\x03\x7e\x7f\x34\xa6\xc3\x4e\xf8\x9b\x49\x6d\x22\xb1\x4b\xb5\x38\x23\x12\x69\x38\x3e\x0a\xa4\xbf\x97\xa8\x23\xae\x6c\x52\xdc\x92\x40\x2d\xf5\xd2\x50\x59\xde\x37\xca\x24\x74\xd3\xb7\x63\xe3\xc9\x55\x6e\xa5\xff\xf6\x0b\xbb\x1b\x5e\x14\xf4\x65\x59\x32\xce\xcb\x93\x2c\xe5\xce\xb2\xcb\xd6\x25\x92\x62\xd0\xc1\x2e\x9d\x58\x95\x3a\xc9\x89\xee\x93\x75\xc5\x45\x9a\x55\xf8\x94\x14\x1e\xce\xe9\x55\x39\xd9\xd2\x87\xc3\xcc\xa7\x2d\x0a\x69\xf3\x80\xe7\x72\x8f\x74\xb8\x2f\x8f\x68\x2d\xe3\x66\xe1\x52\x3e\x66\x5e\xcf\xa9\x09\x62\xc1\x53\x4f\x51\x75\xd1\x08\xd9\xd1\x19\xa2\x7a\x9e\x81\x13\xf0\xb6\xb3\xe2\x95\x46\x98\xd9\x39\xc1\x93\x94\x27\x6a\xb6\xfb\x7c\x73\x30\xcc\x3b\x3d\x53\x00\x57\x66\x07\x69\x37\x33\xfd\x33\xe3\x64\x97\x85\xbd\x07\x5d\xf1\x8b\x47\x86\xc2\xe9\x1a\xcd\x64\x5f\xab\x75\x68\x49\xe2\x65\xbb\xb3\xba\x9b\x38\xb0\x77\x08\x7c\xa2\xb3\xe9\x6c\x49\x85\x47\x41\x16\x85\xae\x7c\xbc\x40\x62\x27\x17\xeb\x0c\xaa\x8a\x52\x68\x09\xcf\x39\x41\x4b\xdd\x84\xfa\x66\x22\x5e\xcc\x1e\x6a\xf6\xe3\x90\x5f\x20\xf9\x06\x89\x15\x15\x36\x0e\x10\x70\xee\x26\x45\x73\xe5\x37\xb9\x25\xae\xaa\x7c\xf8\x42\x27\xd1\xf7\x38\xf3\xeb\xa1\xae\x34\xdd\x08\x1a\xf9\xd1\x98\x60\x7e\x75\xd9\x08\x17\x27\xe4\x11\xeb\xeb\xc8\x51\x6e\xd3\xb8\x63\x72\xb3\x34\x34\x53\x3c\xbe\x3d\x0a\x67\xe9\x07\x78\xd6\x4e\xba\x2a\x48\xd6\x74\x6d\xdf\xa4\xdd\x87\x02\x27\x4e\xc7\xd0\xbc\x02\x41\xe8\xb7\x1e\x95\x68\x8b\x70\x86\xb9\x5d\x2c\x1d\xe4\xe7\x28\x04\xde\xc5\x8f\x04\x92\x72\x82\x55\x50\x75\x4c\x1d\xa7\xef\xcd\x51\x80\x52\x3e\x26\xd2\xc7\x1b\xd8\x83\x2e\x55\x0c\xb9\x64\x9c\xbe\x34\xac\x12\x96\xa9\x90\xa6\xbf\x87\x0b\xc5\xad\x80\xe0\x6d\xf0\x55\xf0\xc9\x58\xd6\xeb\xdb\x7c\x86\x32\xae\xe3\xa3\x6d\x4e\x8c\xf3\x21\x76\x06\x5d\xde\xf3\x63\x0a\xe4\x9b\x13\x3a\xa0\x0b\x7b\x9b\xdd\xb8\x30\x83\x41\x16\xa7\xa5\xd3\xba\x46\x59\x0d\x05\x39\x87\x46\x11\x9f\x78\xc3\x73\x19\x92\xa7\xb2\xdc\x9a\xa4\xc1\xec\x4c\xf5\x07\xd2\x37\x13\x53\x53\xfb\x66\x9b\xc3\x45\x38\xdc\x2b\x38\x3b\x22\x3b\x83\x8f\x88\x5b\x9c\x67\x65\xaf\x10\x22\x4e\x83\x90\xe6\x53\x1a\x9f\xf4\x1d\x89\x16\x15\x65\x9e\xa5\x4b\x0f\xc9\x85\xba\xee\xb3\x04\x78\xf5\xbe\x47\x52\x80\x48\xaa\xdc\x6c\xa0\x31\xdf\xe7\x39\x6a\xda\x19\x7a\xaa\xba\xf6\x6e\xf5\xa4\x81\x3e\xfc\xff\x7c\xbd\x79\x8c\x24\x67\x76\x1f\xd8\x9d\x59\xd5\xdd\x64\xb3\x49\x36\x39\x1c\x8d\xa4\x59\x3b\x05\xcb\xa6\x05\xd0\x63\xec\x5a\x0b\xc3\x03\xec\x46\xba\xab\x38\x9c\x2e\x68\x8a\xb5\xd5\x3d\xe4\xec\xac\x81\xe5\x97\x99\x5f\x56\xc6\x54\x64\x44\x4e\x1c\x55\x5d\x84\xff\x30\x16\x82\x20\x18\x5a\xff\x61\xec\x01\x2f\xb0\xbb\x5a\x7b\x0f\x59\x2b\xad\x4e\x5b\xb2\x64\x4d\xa6\x34\x87\x34\x1a\xcd\x0c\x87\xe4\xf0\x3e\xfa\xbe\xef\xfb\xac\x5e\xc4\xfb\xbd\xf7\x7d\x2f\x2b\x82\x02\x04\x4d\x04\xbb\x32\x33\xe2\x3b\xde\xf7\x8e\xdf\xfb\xfd\xee\x21\x31\x83\xb4\xc2\x9b\x1a\x33\xcb\x04\x5d\xb2\x6c\xca\x19\xe2\xdf\xa8\xf3\x5c\x07\x49\x84\x9d\xec\x30\x65\x5a\x36\xf8\x93\xe4\x45\xed\xd7\x49\xb1\xac\xe1\xa1\x08\x0c\x75\xe4\x1b\x95\x04\x88\xed\x3a\x9a\x79\x5d\x2c\xef\x20\x47\x6f\xeb\xd8\xea\xec\x58\x55\x1c\xae\x29\x92\x9e\xed\x13\xf2\x0c\x15\xb2\x41\x6a\x34\x4d\x0a\xc6\x85\x06\x52\x43\xaa\x55\x32\xe5\x77\xc6\x8a\x73\xfd\x1b\x81\x8a\x53\x7f\x07\x63\xcb\xfd\x18\x1a\x42\x8c\x8a\x36\x8e\x9f\x63\x18\x5b\xc4\xc2\x77\x15\x4a\xa3\x9f\x86\x86\xf9\xa7\x15\x93\xc4\x57\x9d\xe4\xbd\x2f\x40\xc6\x26\x4d\x93\xf5\x68\x63\x46\xe5\x21\xd5\x7c\x5f\x52\x0c\x91\x33\x6d\xd5\x81\x32\x33\x79\x46\xc1\xd9\xac\x59\xcd\x07\x29\x35\xec\x29\x68\xd3\x5d\x9d\x78\xb8\x1b\x6c\xc5\x92\x53\x4c\x93\x9a\x38\x33\x79\x64\x62\x6a\xbb\x72\x64\x35\xd7\x54\x14\x71\xad\xa6\x76\x35\xdf\x7a\x75\x60\x92\x86\xee\xb7\x9e\xc2\x97\xd5\xd5\x18\xbb\x66\x14\xe6\x2c\x5f\x89\x63\x66\x3b\x52\xf9\x7c\xd3\xf6\x0b\x23\xcb\x4d\xba\x53\x71\xc9\x5d\x53\x9d\xc6\xf0\xd7\xa5\x65\x55\x91\xb9\x9d\x03\x4a\x12\xc6\xe9\x75\xda\x0f\xf0\xc9\xde\x23\x47\x9c\xff\xbb\xd2\x16\xee\x26\x71\x66\xe3\x7c\x46\xd1\x1d\xff\x40\x71\xa0\xbc\x1e\x34\x34\xef\xa8\x27\x48\xfe\x81\x02\x84\x0c\x6c\xdc\x23\x4e\x4c\xa4\xa8\x04\x39\x5a\x7e\x0b\x6b\x1c\x50\x59\x5f\x0a\x87\x4f\xbb\xae\xda\x3c\x4d\x46\x49\x14\xe6\x26\x56\x80\xa0\x9d\x4a\x89\xaf\x39\x29\x5d\x23\xa1\xc5\x56\x38\xa5\x1f\xbb\xe3\xc8\x31\x3d\xcc\x78\x78\xf6\x31\x4d\x12\xcc\xf9\x56\x64\x52\x6f\xc3\xc2\xc0\x3d\xfb\xd7\x95\xe4\x0b\xf5\xdf\x85\xaf\xbe\xca\x9e\x3b\xbc\x6d\x80\xfd\xf8\x3a\x78\xca\xb5\x78\x97\xef\x9c\x1b\x67\x91\xb1\x4f\xe0\x7e\x60\x8d\xdf\xc4\x2f\x23\xae\xf8\x8f\x1a\x49\x6b\x73\x96\x19\xf5\x2a\x68\x67\x03\x3f\x04\x67\x55\xe9\x21\x8c\x49\xc3\x4f\x52\x8a\xb0\xd9\xaf\xab\x82\xeb\xeb\x95\x48\x6c\x6e\xae\xfc\x5f\xcf\x50\x87\xea\x17\xb3\x9d\xf3\x4d\xf0\x48\xd8\x1a\xa5\xb6\xff\x9f\xb6\xbe\xf0\x19\xda\xd9\xd2\x69\x5a\xce\x14\xba\x34\xf7\xb6\x9b\x07\xfe\xeb\x2f\xb9\x03\x5e\x29\x6c\x5c\x25\x87\x17\x27\xf2\x43\xe4\xbc\x60\xbd\x36\xc7\x53\xfa\x72\xe5\x92\x93\xb6\xc5\xc6\x97\xe6\x7d\x62\xb8\xb4\x64\xc8\xff\xf1\x18\x21\x31\xf4\x1e\xbd\x16\xbe\x8a\x38\x35\x58\x20\xec\x4f\x3e\x35\xf1\x15\x56\x90\x4e\xd1\xd7\xfe\xca\xde\x89\xef\x04\xbd\x4b\x94\x6d\x92\x15\xc6\x09\x04\xe6\xc3\xcf\xb4\x15\xf3\xe2\x95\x40\xc9\x28\x6e\x8e\xb7\xff\xac\x13\x9a\x2a\x97\x1a\x66\xf9\x0e\x6d\x1c\x21\xb4\xa6\xb5\x44\x88\x9a\xe7\xfe\x5e\xdb\xa7\x50\xd6\x08\x56\x5f\xd8\x35\x74\xe1\x70\x9b\x37\xcd\xa2\xb4\x7c\x7b\x26\x9a\xa1\x49\x57\x77\xd1\x9b\x4a\x1c\xab\x4e\xba\x3f\xc1\x80\x4c\x29\x1c\x3b\x01\x1f\xb7\xe7\xdf\x86\x6d\x16\x7f\x14\x2f\xa8\xd9\x81\xa5\x51\xab\x2e\xa3\xd8\x35\xd2\x1a\x09\x27\x94\xbb\xd8\xf8\xc6\xe7\x06\x52\xad\xa6\x87\xb1\x7c\x6b\xac\x1a\xde\xaa\xa8\xe0\x85\x85\xd6\xa0\x28\xc3\x26\x0f\xaf\x38\x4e\x46\x83\xaf\x95\x8a\xd8\x28\x4d\x86\x61\x4c\x3d\x20\x1e\xb2\xf4\xb1\x62\x82\xfb\x58\xed\x11\x16\xc8\x05\xc6\xc2\xe9\x32\x97\xe3\x84\xd1\xbd\x8a\x71\xe2\x7f\xc1\xe9\xc4\xff\x52\xd9\x10\x14\x90\xd3\x36\xc2\x8e\x83\x95\xc0\xb9\xc2\xd7\x53\x18\xe4\x43\x26\xdb\x89\x44\x22\x27\xd5\xd9\xa1\xd1\xc8\x13\x21\xe4\x53\xb1\x24\x58\xbd\x54\xab\xe4\x01\xcd\x0f\xb6\xe4\x80\x18\x55\xd5\x8b\x81\xa5\x36\x82\xe5\x7d\x53\x2e\x26\x5f\x8f\x7f\x62\x2b\x97\xe0\xd2\x01\xfa\x7f\xb4\xee\x84\x9d\x64\x6a\x71\x78\xa7\x74\x94\xc4\xa1\xed\x29\x47\xe4\x7d\xda\x95\x7c\x5d\xc7\x12\x6b\xba\x69\x38\x4c\xe2\x8d\x4f\xa4\x6d\xab\x21\xb6\x0f\x53\x03\x8a\x17\x00\xcf\x7e\x05\xef\x2b\x72\x6c\x18\x3c\xa4\x3b\xb7\xb5\x95\xfa\xd1\xbb\x63\x0f\xf9\x3b\xad\xb4\x3d\xe3\x24\xb7\x9d\x24\x59\xa5\x47\x90\x56\xa1\x29\xfa\x0a\x9f\x08\x58\x29\xc2\x88\xd3\x26\x08\x90\x20\x1a\xef\x06\xde\x4b\x20\x9c\x53\x7c\xff\x51\x18\x93\x5c\x88\x54\xfe\xce\xe0\xdc\x14\x52\x6b\xdf\x05\x7d\x9a\xb0\x19\xc2\x2f\x89\x37\x41\xb3\xfd\x4d\xb8\x47\x8e\x97\x64\x59\x98\x8c\xde\xa4\x07\x80\x79\x6b\xe0\x74\xe7\x4f\xe0\x69\x04\x6a\xaa\xea\xea\xc0\x7c\x22\xba\x7f\x6d\xfc\x98\xcf\x48\x3c\x9b\x7f\x46\x25\x04\x1e\x43\xd9\x05\x49\xfd\x27\xda\x1e\x96\xb7\x6b\xa2\xd2\x8d\x42\xed\x27\x6d\x35\xba\xfd\x18\xaf\x29\x0d\x51\x0d\xc7\x10\x74\x1e\x1b\x08\x7e\x34\xe7\x52\x10\x49\x7c\x96\xea\xa3\x1c\x95\x05\x8d\x83\x2f\x7a\x34\x50\xf9\x66\x02\x54\x68\x2c\xef\xdb\x6c\xea\xfa\xe7\xff\x35\xf6\xe1\xd3\xdf\xa2\x82\x0f\xcc\x37\x8a\x77\x38\x80\x77\x22\x37\x8b\xfc\xc8\x71\x0a\xf9\x1c\x11\xf8\x92\x8b\xff\x4e\x22\x07\x84\x04\xc5\xbf\x21\x06\x4c\x91\x34\x2b\xe7\x09\x3f\xb1\x6d\x52\xa3\x46\x3c\x4a\x6d\xe6\xf4\x3a\xe1\x00\x9c\x0c\x94\x37\x70\x12\x0d\x82\x42\xd0\xa9\x50\x80\x13\x94\xa5\x84\xb9\x12\xc6\x80\x29\x9f\x69\xd8\x60\x0a\x7e\x5d\xf5\x3f\xa0\x49\x0e\x51\xef\x15\x5a\x41\x4c\xeb\x4a\x09\x64\x56\x40\xa4\x77\x14\xc2\x38\x7a\x12\x60\xcf\xef\x61\x34\xa5\x08\x45\x15\x2e\x81\x5c\xd0\xfc\x49\x81\x76\xfb\xcf\x6e\x4e\x02\xaa\xbf\x3a\xb1\x90\xe7\xbf\x52\xfe\x27\x8f\x97\x7d\xa2\xad\xd4\x34\x6f\x22\xbe\xc2\xa3\xbf\x46\x99\x26\xe6\xc1\xc7\x09\xe4\x4a\xba\xe5\x78\x33\x28\x37\xf0\xb0\x86\x3b\x74\xa8\x3a\x36\xac\x72\x8d\x00\x16\xc2\xe0\x1d\x07\xf8\xfd\xf2\x17\xd9\xa6\x34\x50\x6b\x95\x7a\x7c\xe9\x4e\x48\x56\x1d\xcb\x92\x25\x6e\x69\xc5\x03\x9d\xf1\xef\x51\x36\xc6\x9a\xf8\x5d\x97\x7e\x36\x43\x33\xe0\xe4\x2f\x86\x82\x0f\x2d\xbe\x19\x6f\x69\x6e\x5e\x58\x68\x2d\xef\x3b\x00\x8f\x19\x19\x85\x6b\x8a\x4c\xe5\x2c\x76\x2b\x22\x8a\x6b\xb4\x06\xb9\xe7\x42\x55\x01\xa0\x4b\xe5\x70\x68\xde\x95\xf9\x56\x5d\x96\x27\x4a\xd6\x6d\x0a\xe8\x9a\xe3\xbf\x79\x69\x9f\x74\x66\x62\x46\x10\x55\xfd\xd6\x58\x35\x8c\xde\xab\x1c\xd0\xcb\xfb\x96\x5b\xd9\xc8\x32\xe7\x8e\xe3\xb8\x70\xe5\xbb\xd3\x5b\xfb\xbc\xe6\xe6\x5b\x8b\x8b\x8f\x35\xe6\xe6\x36\x21\x41\x38\xb5\xa0\x18\x41\x85\x9f\x84\x41\x3b\x81\xdd\x3d\xc5\xab\xc1\x79\x02\x9a\x6b\xc9\x7c\xab\xda\xef\xbb\x81\xa7\x8e\x7e\x5f\x51\x91\x37\x10\x80\xf1\x3f\x68\x72\xc2\xfb\x2e\x0f\x69\x87\x9d\xa4\xc7\xdd\x13\xf8\x99\x46\xdb\xab\x3e\x5d\x52\x68\x39\x24\x25\x91\xb4\x7d\x4d\x95\x5b\xd3\x38\x24\x7f\xc2\x41\xaa\x16\x9d\x88\xf4\x0f\x2a\x67\xd6\xd2\x8b\x07\x5a\x59\x68\x87\xd6\xf5\xa7\xc0\x24\xb0\x54\x08\xdf\x38\xb4\x50\x11\x87\xfd\x24\x1d\x86\x39\x52\xe6\xc8\x3c\x5c\xa1\x71\x10\x8b\xe9\x8d\xf1\x64\x5c\x95\xb1\x5d\x2a\x7d\xf2\x3c\x2d\x20\xad\xa7\xb1\xb8\xbf\xac\xf3\xbd\xbf\xec\x7a\x67\xec\xa1\x6e\x91\x59\x92\xec\xe1\x1e\x1b\x85\x08\xbf\x36\xf6\x80\x1d\x24\xce\x45\x52\x6f\x6b\x92\xf4\x39\xfa\xdd\x30\x2f\x5c\x3e\x5b\x44\x5a\x68\xde\x45\xbe\x45\xe9\x0f\x24\xfd\xbe\xb5\xb3\x5a\x65\x87\x16\x3b\x9c\x2d\x68\x6e\xc0\x77\xbe\x1d\xa8\x48\x05\x9d\xb0\x0c\x28\xaf\x6b\x20\xf2\x42\xc3\x12\xa7\x7d\x2f\xd0\x89\x61\xfa\x2e\x38\xd8\x47\x5d\x9c\xe6\x82\xc4\xc6\x54\x29\x5c\x11\x7d\x69\x3d\x9e\x41\x92\x91\xb2\xbe\x70\x0c\x60\x60\x85\x70\xa0\x66\x33\xc6\xd6\x8a\x0a\xac\x23\xc3\x2d\xdf\x5b\x29\xe1\x4f\xc3\xeb\x6d\x6f\x46\x41\x07\xe0\xe1\x38\xbf\x70\x59\xf1\x81\x7a\x6e\xd0\x5a\x71\xab\x70\x18\xc2\xb1\x96\x9c\x8d\x4f\x4e\xbd\xad\x7a\x1f\x4c\xbc\x62\xa3\x64\x46\x75\x84\xb0\xdc\x86\x74\xef\x97\xbf\x29\x65\x70\x55\xb7\x3a\xa7\xdc\xa2\x5e\x32\xb4\x59\x1e\x76\x77\x2b\xac\x1c\x38\x91\x71\xa0\xff\x91\x0a\x55\x7e\xe3\x03\x9c\x1b\xc2\xa1\xe6\xf3\x45\x27\x60\xc6\xe1\x2a\xfe\x90\xe6\x1a\xc9\x9b\x8f\x02\x7f\xb0\x9d\x1d\x2b\x1a\x20\x6e\x3a\x45\xbe\x87\xe5\xe3\x84\x72\x51\x35\x14\x26\x2c\x01\x51\x3e\x03\xba\x84\xa4\x7c\xc2\x77\x8a\xdf\xbc\x17\xf6\xfb\x36\xb5\x71\xce\x59\x1f\x69\xab\xa3\x5f\xe5\x1b\x1a\x7a\x85\xa8\xd7\x6d\xb5\xae\xdd\xd8\xe6\xb1\xc1\xb4\xb3\x23\x03\xb3\x2d\x5e\x8d\xa7\xb4\x48\x6d\x5e\xa4\x71\xd6\x2c\xdf\x11\x1a\x09\xdf\x1f\x2b\x21\x3c\xf8\x7c\x58\x60\x57\xeb\xd4\xb5\x57\xd2\x70\x24\x58\x09\x39\x8c\xe9\x77\xf9\xc6\x35\x72\x75\xcd\x70\x64\x80\x17\xd0\x1d\xec\xb7\x14\x4e\x44\x77\xd5\x0e\xcd\x4a\x6c\xf3\xb0\xdb\x50\x65\xea\x29\x3e\xe1\x3a\xb1\xa1\xd6\x20\xcc\xbb\x03\x3c\x8c\x74\x7e\xf8\x9d\x7d\x49\x21\xba\xd7\x4c\x8a\x34\x24\x96\xe4\xb9\xc0\xf7\x27\x69\x42\xe4\x43\x61\x77\x46\xd1\xc4\x02\xd1\xcc\x12\x81\x81\xc7\xb1\x3c\x08\x74\xa7\x59\x4d\xde\x21\xb5\x71\x12\x3a\x25\x31\x0c\x27\xc3\x03\xf8\xa6\x6e\x13\x45\xe1\xaa\x0c\x2d\x22\xd2\x3f\xa4\x5d\xc4\xd7\x15\x4a\x17\xc9\xb2\xf6\x4d\x3e\xb0\x69\x53\x87\xfd\x5e\xe6\xe4\x97\x34\x57\xcd\xa5\xc0\xef\xa2\xa4\xc8\xfb\x51\xb2\x0e\x8a\x1e\x0c\xd8\x15\x65\x16\xab\xf8\x8f\xfd\x8b\xa4\xf8\xed\xe6\x13\xa9\x77\xd0\xff\xf0\xb5\x32\x2f\xa9\xcd\x4d\x18\x91\xce\x77\xe9\x41\x62\xe9\x1f\x85\x47\xc7\x37\x34\xb8\xf0\xfb\xee\x68\x3e\xa8\x3b\xea\x29\xbb\x49\xb2\x5a\x86\x40\x4d\xb8\x9e\xd8\x6e\xdf\x82\x9b\x26\xf8\xd7\x86\x53\x14\xad\x72\x69\x13\x30\xc1\x44\xa1\x8d\x75\x2a\x0b\xc0\x35\xbe\x0e\x3c\xb5\xf7\x5a\x68\xd7\xe5\x50\x71\xf2\x4f\x0e\x1e\x7f\xae\x86\xa7\xef\x40\xab\x9b\x44\x91\xaa\xad\x22\xaa\xb9\x1a\xa8\x10\xe7\x6a\x45\x63\xf0\xf3\x44\xa7\xd0\xf4\xd9\x15\xd0\xa5\x63\xc3\x3f\x54\x08\xf7\x2a\xcd\xca\x73\xad\x51\xd2\x5d\xb5\x28\x41\xba\x63\x74\x61\xc1\xb5\xad\x56\xf1\x08\x2f\xb4\x36\x4c\xec\xda\x63\x91\x0d\xbc\x16\x28\x98\xfa\x35\xe7\xb2\x74\x6d\x9c\x15\xbc\x04\x5d\x9c\xbc\xe8\xe3\x64\x0f\x1e\x0a\x87\xae\xb1\xc4\xc9\xdd\x2e\xfb\x83\x5d\x71\x79\x17\xa9\x8d\xd8\x0b\x42\x00\x7a\x05\x21\x9f\x3e\x71\xf8\x1f\x60\xf7\xe4\xf8\x99\x96\x61\x01\xa4\x53\x28\x09\x1b\x8e\x90\x8d\x4b\xaa\x92\x8e\xf5\x16\x65\xcd\xe6\x36\x35\xa5\xa9\x73\x5d\xaa\x28\xd6\x4e\x61\x82\xe0\xb2\x5e\xaf\x18\x97\x57\x5e\x69\x45\xe1\x5a\xd8\x6b\x2a\xd4\x05\x27\xff\x1c\xde\xd6\x31\x6c\xdf\xa8\x54\x72\x51\xac\xea\x46\xd0\x50\x2f\xdf\x0a\xc7\x11\x77\xf4\xa9\xb0\x5c\x52\x66\x7b\xda\x7e\xa5\x6d\x57\x6d\x05\xbd\xd4\x96\xa7\x74\x73\x4a\x72\x6b\xbf\x80\x0e\x2f\x50\x24\x05\x4f\x6b\x33\x98\xa6\xb0\x88\x1e\xf1\x5c\xd6\x9c\x35\x56\xcc\x77\x2f\x70\x2c\xc6\x2d\x5b\x02\x49\xa3\x27\xe2\x9b\xc0\x83\x68\x21\x4f\x8b\x08\xe6\x06\x0c\xbe\x23\xb8\x74\x6e\xec\x91\x4a\x4e\xa4\xb4\x19\x91\x81\x0b\x23\x26\xc8\x57\x31\xaa\x39\x94\x97\xe7\x0f\xb6\x3a\x05\x74\x5f\xa5\x71\x92\x06\x4c\xf2\x03\xcf\x4c\x47\x00\x07\x5f\xe4\x0c\x90\x07\x47\x90\x65\x17\xa0\x84\xa3\x26\x04\x25\x40\x46\xce\xa7\x43\x20\x55\xc4\xa8\x65\x95\xd0\xfb\x31\x2d\x6c\xdb\x9f\x9d\xd6\x64\xf9\xd0\xc4\x6c\xd5\x51\x69\x7a\x1b\x03\xcb\x37\x6a\xdd\xf7\x29\x2e\xa2\x6d\x8a\xa3\xf1\x07\x1a\x87\xf4\x83\x4f\xac\x99\x75\x6c\x1a\x9b\xb4\xa7\x34\x41\x18\x3e\xc1\x37\x8a\x93\xa5\x6b\xa3\xa8\x88\x92\xb0\x07\x10\x1f\xf0\xfa\xa7\x15\x76\x9f\x08\xfb\x84\xeb\xdf\xcc\xa8\xf3\x07\xed\xc6\x38\xe5\x7e\x14\x4c\xe1\x88\xf7\x2f\x3a\x66\x95\xc7\x15\x6f\x50\x64\x86\xb0\xfb\x42\x5b\x5b\x7e\x88\xaf\x2b\x47\xd3\xfc\xc1\x96\xc9\xb2\xa4\x1b\x7a\x10\x30\x76\xca\xf7\x02\xbf\x6b\xbe\x57\x69\x3f\x2b\x43\x98\xa1\xb5\xb9\x90\x48\xba\xdc\xd3\xc2\x82\x5c\xab\xc3\x3a\x5a\x33\x4d\x9f\x1f\x6c\xb4\x55\x54\xcc\x9b\x1b\x11\xd5\xfd\x1a\x7e\xc1\xaf\xb6\x06\x26\xee\xb9\x14\xaf\x68\x6e\xd3\x57\x48\x3f\xf4\x33\x5e\x32\x3f\xec\xd8\x34\x37\x69\x68\xe2\x8c\xd6\x1a\x22\x84\xbb\x63\x1f\x35\xde\xad\xf3\xc6\x07\x26\xcd\x06\xb3\xbe\x27\x79\x06\x1d\x71\xa8\xc2\x71\xee\x1b\xf5\xdf\xa3\x2a\xd5\xfe\xdd\xb1\xd2\xec\xbd\xa4\x5e\xf8\x55\x0b\x9c\xb4\xb0\x0f\xd3\x3b\xf2\x4d\x1d\xcf\xf8\xc0\x44\x38\x27\x44\x74\x0f\x87\xa8\xc8\xf1\xd5\xa0\xbc\x57\xc8\x95\x70\x47\xbc\x14\x99\x7c\x97\xfc\x8f\xb7\xa6\x1b\xca\xe3\x65\x6e\x7e\x46\x45\xc3\xe7\x02\x5f\xb1\xf8\x2f\xb8\xda\x22\x6b\xd7\x1f\x54\xe7\xea\xd6\x4c\x18\xf7\xec\xa8\x0c\x90\x24\x37\x2e\x6c\x87\xfe\x8c\xa8\x12\x81\xbd\xb4\xaf\x65\x0f\xd9\xb4\x1b\x66\xec\x3c\x6d\x12\x52\x62\xf3\x72\x65\xda\x17\x16\x5a\x51\x92\x8c\x06\x49\x04\x74\x4d\x5d\xc5\xa9\x9a\x3e\x5b\x6a\x75\x07\x49\x2a\x8e\x19\xfa\x33\x38\xeb\xc7\x37\xea\xd0\x19\x51\xf9\x34\x5e\x61\x1b\xc1\x33\x8d\xbf\x96\x69\xdf\x3a\x53\xe5\x6a\x7c\x35\x1c\x35\x4a\x07\xae\xce\x8b\xdd\xda\xea\x42\x82\xfd\x71\x9e\x9a\xae\x1d\xe5\xe1\x9a\x85\x4e\x06\x4b\xfc\xd0\xa9\x84\x12\xc8\x5f\x05\x1e\xb3\xf8\xfb\xaa\xd4\xde\x4f\xd2\x1e\x68\xdb\xc5\x03\xf2\x0d\xdf\xdf\x09\x7c\xee\x65\x93\xfa\xc4\xf0\xf9\x0f\x60\x2d\x11\x31\xa0\xf7\xd2\x55\x01\xf6\x4b\x89\xe4\x36\x10\x34\xf0\x8b\x8f\x50\x7e\x10\x67\xb9\xa7\x94\xc8\x4d\x14\x39\x72\x2a\x87\x6e\xf2\x48\x27\x97\xf5\xca\xc2\x95\x41\xde\xd0\x78\x9f\x86\xe3\x7f\xbc\x03\x9c\x15\xfb\x21\x66\x25\x8c\x0d\x8d\x83\xb6\xfc\xde\x3d\xba\xf3\xd7\x82\xc6\xcb\xf9\x5d\x49\x4d\x9c\x73\xd4\x2c\x31\x01\x4d\xb6\x04\x0b\x8f\x29\x1e\x29\xdb\x54\xfd\x7f\x0f\x03\xcf\x05\x71\x71\xac\xe5\x5d\xe5\x85\xcd\xba\x49\x7b\x92\x25\x60\x6a\x73\x45\x17\xc6\x75\x79\x18\xaa\xc3\x75\x1d\xbf\xbd\x24\xee\x18\x90\x86\xc2\xa8\x1f\xd7\x0d\xd1\xc7\x15\x1b\x7f\xb2\x1e\xef\xf6\x44\x29\xef\x4c\xab\x8c\x96\x3f\x89\x4c\x0b\x8a\xe6\x08\x6a\x1e\x87\xd1\x74\x22\x76\xe5\x1c\x8b\xe4\xe0\x54\xaa\x81\xcc\x81\x60\x8f\xe8\x5d\xe0\x7d\x7d\x77\x3c\x95\x52\xf3\xfa\x13\xbb\x26\x1e\xd3\x1b\x99\x8d\xa4\xdf\xcf\x1a\x0a\xf9\x79\x4a\xf1\x8d\x9f\xaa\xa4\xb2\xe6\xe6\x5a\xb9\x39\x34\x32\x1b\x36\x6d\x2a\x78\x2e\x66\x15\x21\xd8\x0d\xa5\xba\xf1\x8e\x22\xd2\xeb\x98\x6c\xd5\xe6\x1d\x13\x45\xd8\x16\xcc\x1e\x36\x56\xfa\x58\xbf\xad\x01\xc5\x67\x3f\xf1\x20\x8e\x92\xae\x17\x3a\x61\xa0\x72\xa0\xfa\xc1\xcf\x29\xc6\xb2\xa1\xed\xf5\xa4\xf1\x4e\x34\x5d\xbe\x1b\xa8\x12\xcf\x77\x55\x52\xa7\x53\x64\x83\x3d\xaa\xdb\x6e\x16\xa7\x02\x9c\xb8\xf3\xaa\x82\xf2\xad\xc0\xa7\xcf\xaf\x29\xed\xae\x6b\x98\x0e\x0c\x04\x0e\x62\x17\xd7\xcc\xcd\x39\x5e\x66\xd5\x41\xfb\xa3\xf1\x54\xf9\xb0\x7c\x7d\xd8\x0b\xae\x54\xbb\x51\xf2\x2e\xf1\x8e\x89\xf6\x26\xcd\x7a\xb6\x8b\x9e\x52\x34\x9e\xbd\x93\xf1\xad\xb1\x82\xbd\x5f\xdd\xc2\x56\xe2\x2d\x10\x63\xf1\xb0\x3a\x0e\xa3\x6f\x98\x4b\xce\xd4\x2c\x87\x1c\xf8\x47\xf5\xd0\xf2\x30\x2e\xc3\x88\x1e\x4c\xb0\xe2\x7d\x73\xae\x4a\x1d\x98\x50\x84\x9a\xca\xcf\x68\x5d\x61\x21\xad\xa8\xe6\x9f\xcb\xff\x5d\xb5\xac\xcd\xa1\xea\x46\x02\xdf\x64\x6d\x7f\x01\x8c\xea\x06\x84\x74\x14\x15\x99\xcd\x90\x07\x17\x73\xe8\xf1\xbf\x2c\xe9\xca\xff\x30\xf6\x3a\xc4\x37\x94\x38\x78\x2f\xec\x1a\x10\xdf\x38\x1f\x09\xc6\x91\xaf\x55\x78\x9d\x99\x98\xc0\x10\xd9\xac\xcf\x7b\xdd\x9d\xa6\x2f\x2a\x7f\x4f\xd5\x38\x96\xdc\x08\xab\x4e\xb5\xa3\x81\xa7\x5c\x83\x9e\x2b\x53\x7a\xc9\x51\xee\xbf\xf1\x9c\xaa\x60\xd3\xd6\x28\x7f\x9d\x92\x56\x42\xac\xdf\x70\xe2\x1a\xe7\xc9\x10\xa0\xc8\xf0\x06\x2c\x84\xd4\x17\x1f\x57\x99\xa8\x30\x46\xef\x3f\xca\x6d\x6f\xd2\x87\xf8\x7a\x2b\x65\xeb\xdc\x5c\xeb\xe5\xe5\x7d\x64\x05\xa5\xf1\xdd\x4f\xe5\x71\x95\xec\xcd\xba\xa9\x65\xbe\x07\x2c\xea\xe3\xca\x50\x1c\x1f\x3f\xb5\x85\x0f\x34\x64\xad\x17\x9c\xb5\xe7\x30\x50\x7c\x53\xa9\x9f\xcf\x1f\x6c\xf5\x0b\xe2\x70\x83\x29\x73\x88\x09\xe7\x84\x9e\xd1\x09\x96\x7e\x9f\x5c\xa9\xdd\xf4\x9d\x4a\x2f\xd3\xd5\x16\xb0\x71\x70\xc8\xfc\xb9\xaa\xbf\x7c\x0f\x4d\x0e\x4a\x2f\x4e\xc2\xbd\x6d\xbe\x63\xf3\xf2\xd3\x6d\x45\x69\x7c\x56\x61\xfe\xb8\xda\x8b\xe1\x7f\x6c\x42\xb9\x12\xc4\xbc\xe7\x95\x33\x69\xfb\xd9\xac\x22\xe9\x63\x54\x1a\xdc\xa0\x9b\x5c\xab\x66\xf9\x8d\xc0\xa3\xd7\xfe\xcf\xa7\xdb\x2e\x70\xf8\x9f\xf6\x4e\x3c\xa4\x31\x0f\x87\x96\x65\x4d\xb1\x1a\x8f\x2a\xce\xc9\xa3\x63\xaf\xe4\x5b\xc4\x0e\x7c\x6b\xa2\x68\x83\xd2\x56\x52\x5d\xf2\x02\x04\x57\x82\xa9\xa6\x16\xdf\xa8\x39\xb4\xbb\x3d\x6f\xee\xa3\x6d\xdf\x1b\xb4\x0b\xad\x91\x30\x5e\x13\xcd\x70\xb3\x7d\xe2\x49\x6c\xa0\xdf\x09\x5b\x75\x97\xa0\x2e\x5c\x8e\xd5\x09\x9b\xcb\x81\xda\xf3\x54\xd3\x15\xad\x41\x5a\xa2\x30\xa9\x7b\x55\x60\xd8\x8d\x4c\x38\xb4\xbd\x59\x4d\x49\x51\xfe\x25\xe6\xe6\x2e\x25\x94\x1d\xf5\x4e\xe9\x22\x01\x1b\x86\x95\x23\x7c\x16\x0a\xac\x60\xb2\x8c\xe9\x66\x60\xd7\x99\xdc\x86\x6f\x14\x6c\x8d\x14\x22\xb2\x0c\x67\x94\xc0\xf5\x54\xa5\xbc\x2a\xb0\x57\xda\x45\x44\xa6\x64\x20\x98\x7b\x30\xf0\xc0\x99\x37\x2b\x16\x78\x71\xb1\xd5\x4b\xd6\x28\x9f\xc7\x4e\x12\xcb\x16\xd1\xa7\x44\xc2\xc8\x3f\x7e\x94\xac\xc9\x52\x10\x5d\xf0\x72\x30\x24\x79\x51\xc5\x03\x1e\x68\x65\x79\xd1\x0b\xc5\x4b\x92\x80\xca\x2b\xe1\x9f\xd6\x88\x81\xf3\xaa\x85\xad\x5b\xba\x93\x3d\x20\x18\x70\x12\xf0\x81\x26\x12\x19\xaa\xeb\xfe\xf4\x58\xeb\x6d\x3f\xa4\xaf\x17\x0f\x94\x7e\xd7\x09\x66\xbb\x66\x01\xcc\xb7\x74\x85\x79\xad\x8b\x5f\x51\x80\x8d\xfb\x81\x97\x35\x3f\x89\xd9\x15\xe2\xac\x1a\x6a\x8e\x34\xcc\x11\x7b\xc0\xe3\x03\xa6\x9b\xaf\xbd\xcf\x98\x67\x45\x36\x08\x15\xae\xe5\x98\x4e\xdf\xd4\xb6\xca\xf5\xa3\x90\xe5\x55\xf1\x7e\x70\x32\x11\xca\x72\x07\x0d\x76\xc0\x9f\x55\x02\xaf\x97\xf6\x2d\xb5\xb2\xdc\xac\xac\xa8\xc8\x0f\x79\xa8\xc6\xc4\xe7\xa4\x1a\x4e\xca\x99\x8e\x55\xa6\xe6\x44\x65\x64\x47\x5b\x79\x54\x9b\x38\x31\x65\xd4\xa4\x1e\xd0\x4f\xd2\x15\x9b\x13\x01\x73\x53\x31\xd9\x5f\x52\xc3\x7d\x4d\x71\x03\xfe\x95\x13\x58\x1a\x85\xac\x91\xed\x2a\x14\x2e\x73\x01\x2c\x28\x2c\xc6\x8f\x2a\x71\xd5\x73\x2d\xb3\x66\xb9\x73\x4b\xba\x1f\xd5\x7a\x38\x5e\x43\x0b\xf5\x02\xf4\x64\x95\x19\x7b\x4f\x99\xb1\xf7\x54\xe7\x60\x19\xaa\x1e\x62\xad\x9a\x72\x70\xf1\xd4\x6f\xa2\xc2\xcc\x37\x53\x5c\x80\x79\xd8\x0f\xbb\x21\xc1\xa1\x95\x2f\x7a\x1d\x2b\x5b\xb2\x90\xf2\xce\xc3\xb8\x8b\x00\x58\x32\x71\x58\xba\x92\xa4\xf3\x27\x31\xe1\x7d\x7b\xc9\x3a\x4e\x3c\xa9\x2c\xd3\x77\x0a\xab\xd5\xd6\xc5\xb2\x7f\x91\xd8\x74\x36\x9a\xaa\xdf\xf5\x14\xe6\x4c\x4b\x51\x00\xde\x72\x4f\xf5\x2d\xa4\xb6\x9b\xa4\xbc\xd9\x00\x1c\xd9\x54\x7c\x6b\x2c\xe9\x0f\x8f\xa3\xc9\x2c\xc8\xf0\x16\xdf\x0d\x7c\x16\xec\x2c\xda\x96\x61\x81\x6f\xa3\xb9\x9e\x6f\x28\x7e\xc2\x1a\xda\x36\x51\xa8\x9a\x1b\x78\x1f\xc4\x9b\x17\x49\xf4\x82\xff\xaa\xad\x44\xef\x3f\xd2\xbc\xed\xe9\x46\x96\x9b\x68\xb6\xa1\xd8\x0f\xe9\x0b\x45\xf5\x4c\xb1\x31\x32\x53\x8c\xf4\x1d\xe1\xb9\x45\x29\xad\x06\x4c\x63\x0f\x0d\xc2\x4e\x88\xbc\x8a\x63\x07\x5e\xde\xe7\x9a\xc6\xa4\xd0\x6b\xfa\x7d\xdb\xcd\xb7\x54\x4b\xde\x21\x4b\xc8\xd7\xca\x8e\x0d\x4d\xba\xba\xca\x9d\x24\x38\x6a\xbe\xaf\xe8\x67\x38\xdb\x80\xf2\xeb\x49\x25\xe2\x6f\x22\x93\xaa\x8c\x10\x4b\x6b\x0b\xcb\x64\x15\xaa\xfd\xd5\x56\x56\x74\x07\x0d\x82\xc2\x60\x06\x61\x80\xf8\x5a\x79\x07\x9f\xfb\xf9\x9f\x27\xbf\xc8\x61\x15\xe6\xfc\x82\xaa\x01\xcb\xe5\xdc\x76\xd8\xd4\x89\x65\x15\xe2\x81\xbb\x97\xd5\x5d\x2a\xe5\x90\x97\xf6\xb5\x06\x09\x48\xa2\x25\xff\x41\xcb\x51\xe6\xa4\xb1\xb0\xb0\xb9\xa9\x29\xc8\x92\x75\x21\x85\x95\xc6\x2b\x1a\x39\x29\xbc\x3b\xc5\xd7\x30\x1b\x58\x8f\xff\x85\x43\xc4\xa1\x3d\xdf\xa8\xb3\x74\x40\xa4\x05\x1b\x33\x0a\x43\x77\x6c\xac\xb4\x7a\x8f\x05\x9e\x19\x9b\x8f\x71\xbe\xa9\xc9\xbd\x2d\xb5\xd2\x90\xa3\x41\xe1\xff\xf1\x1d\x3b\xd5\xd0\xa3\x9c\x9a\xbe\x75\xa7\x32\x1a\x57\xdf\xa1\x6d\xc3\xd7\x35\x2d\x5c\x4b\xad\x6e\x32\xda\x00\x94\x13\x0b\x96\x75\x00\xf9\x66\x8a\x59\xd4\x86\xdc\x9b\x02\x4f\x90\x75\xaf\xf9\xa6\x0e\xcd\x9a\xc2\x3b\x73\x01\xf7\x3d\x5a\xe5\xa8\x45\xee\xd6\xbc\x3b\x77\xeb\x24\xdd\x7a\x61\x36\x0c\x3d\xe8\xcc\xe9\x1c\x95\xc3\x29\x82\x1e\x3f\xf3\x09\x81\xb7\x89\xf2\x64\xc5\xe6\x03\x66\x0a\x76\x8d\x2c\xe5\x4f\xf2\x8d\x4b\xec\x47\x66\x68\x63\x17\xa5\xe3\x14\x7e\x4b\x23\x2f\xde\xaa\xe1\xbb\xfb\x5a\x52\x64\x7e\x67\x72\x9d\x54\xe9\x2a\xfc\x92\xfb\x7a\x13\xe7\xe1\xc0\xa6\x09\x82\x48\x58\x69\x88\xdd\xf0\xb5\x5a\x3f\x79\x92\x76\x07\x96\x47\x59\x0e\xde\x72\xdf\xf0\x75\x5d\x72\xc7\x86\x28\xdd\xce\x1f\x64\xf7\xe5\xae\xaa\xf6\xdf\x24\xcf\x13\x91\xcb\x6b\x75\xec\xea\x5f\x2f\x42\x9b\x97\xe7\x49\xe9\xe1\x4b\x0e\xa7\xfc\x0c\x5f\xd7\x39\x20\x91\xe9\x6d\x28\x3c\xe9\x35\x45\x3d\x7f\x4d\x71\x1e\x26\x69\x9c\xe5\x36\x8c\x9b\x3e\x57\x84\xa6\xc0\xa9\x4e\x3e\x21\x55\x99\xca\x14\x84\x43\xf2\x0c\xf0\xa1\x1b\x81\x2a\x3a\x22\x87\x07\x2e\x92\xd7\x6a\x1a\xa7\xbf\xda\x32\xdd\x34\xc9\x32\xd2\x7d\x75\xf2\x45\x1e\x24\x7f\x5a\x15\xbb\x2e\x2b\x31\x36\x08\xdc\x48\x77\x7f\x4d\x1b\x72\x27\x49\x86\xb2\x46\x1c\x2e\xd9\x9f\xbb\xc7\x5d\x09\xb8\x9f\x14\x69\x6e\x6d\xdc\xa4\x5f\x75\x2a\x30\x0a\x80\x53\x4e\xa8\x64\x64\xaa\x8e\xd4\x22\x35\x92\x84\x3d\x4f\x66\xea\xb4\x25\x5c\xa0\xa2\xb9\x85\xb2\x81\x7d\xbc\xb1\xe8\x3b\x4e\x9a\x5e\xf6\xff\x30\x4c\x0c\xce\x46\x46\xe1\x39\xb5\xfc\x72\x89\x21\x9c\xbf\x4a\x4f\x07\x60\x2d\x3b\x13\xd8\xd4\xef\xe0\x5c\xc3\xd4\x5e\x19\x6b\xa4\x15\x99\x25\x78\xd9\xf0\x5e\x1d\x69\xd1\x7e\xc9\xd6\x3c\xda\x2e\xd7\xa4\x90\xe1\x96\x6b\x12\x9b\xfd\xf6\x54\x8d\x71\x25\x1e\x35\x55\xdb\xd3\x59\x45\xf5\xf1\xa7\x34\x27\xd2\x3f\x3e\xc5\xe7\x1c\xc6\x0d\x2f\x90\x7a\x71\x3c\xd5\xdd\x5f\x11\x0f\x9e\x6f\xf5\xc2\x14\xcc\xc6\xec\x39\x23\x58\xbc\x0d\x7b\xc0\x37\x3a\x03\x9f\x26\x2b\x69\x19\x13\x79\xfa\xba\x23\x81\x67\xac\x3b\xa2\xa8\x64\xbb\x03\x6b\x57\x9b\x8a\x5f\xe4\x9b\x4a\x08\x1f\x50\x38\x89\xe6\xb6\x56\xfe\x4b\x8f\x3b\x49\xfb\x96\x28\x20\x67\xa6\x98\x8c\x1b\x8e\x6e\x0b\x38\x4a\xd1\x90\x2f\xc7\x46\x3a\x42\xa6\x44\xa1\x72\x9b\xc6\x88\x7c\xe0\xdf\x43\xe0\x86\xdb\x20\x31\x3c\x4c\x1b\xa7\x90\x43\xa6\xb7\x66\xd3\x3c\xcc\x88\x1e\x55\xe1\xde\x70\x72\x22\xa7\x70\x0a\x79\x42\xa4\xe9\x70\x1c\xe3\xc4\xc2\x71\x8c\x58\xe6\xa6\x3a\xf5\xd7\x6d\xd4\x54\x7d\xdb\x17\x55\x3f\x45\xa3\xed\xd3\x28\x37\xe1\x6a\xb3\x1f\x0c\x2c\x1e\x85\xf3\xb3\x2a\xc3\xdb\x68\x6b\x3d\x4d\xd6\x5f\x82\x0b\xf1\x86\x62\xc4\x79\xa8\x05\x8e\xaa\xe8\x85\xc5\xc5\xd6\xc8\xc6\x26\xca\x61\xb4\xb0\xce\x98\x6c\x85\x6f\x14\xf6\xaa\xf4\x6b\xb3\x1c\x40\x1f\x04\x8b\xd7\x29\x82\xe3\xeb\xca\xea\x92\x13\x27\x1b\x98\x55\x61\x40\x73\x8a\x40\x5e\x1d\xa8\x56\x13\xaf\x48\x1d\x23\xa5\x7b\x93\xf2\xa9\xf8\x46\x41\x25\x7a\x76\x18\x66\xb6\xe1\x05\x40\xff\xf1\x69\xf8\xca\x42\x6e\xec\x20\x53\x83\x24\xb2\x59\x6e\xd3\x24\x6a\xfa\xbe\xbf\x87\xb4\xfd\x50\x92\x39\x4c\x23\x87\xad\xdb\x6c\x57\xcb\x9a\xad\x81\x19\x8d\x6c\x2c\x91\xb4\xeb\xd3\x76\x52\xaa\xdc\x25\x87\xba\xed\x9d\xe0\x19\x8d\xe7\x88\x42\xce\xea\x35\x3c\x62\x02\x32\xac\x7c\xed\x9b\xa5\x5e\xdd\xd3\xf8\xf2\x17\x1d\x2f\x70\xe9\x91\x8b\xfe\x16\xad\x00\xe1\x80\x2c\x3f\x8b\xaa\x17\xb4\xdb\x90\x52\x05\xef\xd1\x94\xa7\x87\xe7\xf9\xfe\x98\x3a\xad\xf0\x2f\xa7\xc8\x32\x21\xbe\x7c\xac\xed\xd3\x84\xd0\x99\x44\xd6\xe1\x8e\x56\xbd\xfb\xbd\x40\xb5\xbf\xef\x98\x6c\x9d\x6b\xf8\x4b\x54\x36\x73\xfe\x82\xd0\x63\xaa\xde\xc8\x8b\xee\x2c\x28\x43\x2b\x72\x42\x28\xa4\x03\x62\xed\x0d\x85\x5e\x7b\xa3\x72\xbc\x2e\x2c\x90\x2e\xe4\xac\xea\xba\x43\xa3\x36\x80\x3d\x57\x02\x45\x2f\x79\x54\xe3\xce\x27\x9e\x55\xfd\xff\x98\x26\x84\x8f\xd3\x0d\x2e\x25\x72\x28\x30\x56\x02\x27\x9e\x96\x3e\xcb\x4d\xbf\x9f\x61\xef\x22\x9b\x40\x21\xf9\xe2\x54\x3d\x11\xe9\xa3\x07\x4a\x85\xcc\xbc\x9a\xf4\xfb\x0d\xd5\x15\xc6\x55\x1f\xbe\x29\x5f\xd0\x35\x6e\x65\x99\xe9\x0e\x8a\xcc\xe6\x39\xb2\xbe\x08\xa2\x91\xe3\xe6\x6b\xfa\x15\xa0\xb2\x4e\x6a\xac\xf2\x49\x55\xaf\xcb\xf2\x70\x58\x44\xac\xf6\xeb\x96\x25\xe4\x3b\x9d\x10\x68\x79\xf8\x22\xab\x7c\x64\xca\xb7\x58\xb1\x11\x95\xdf\x5d\x6a\x5e\xc9\xa6\xd4\x75\x3b\x75\x07\x44\x49\xd3\x98\x62\x33\xf0\x75\xe5\x4b\x35\x9e\xeb\x92\x08\x0f\x66\x4d\x0d\xde\xbb\x8c\xb9\x73\xe4\xa2\xe5\x97\xa0\xbb\xb1\x59\xe9\xb8\x38\xf8\x22\x75\x63\x16\xac\xc9\xcc\x0a\xff\xb4\x10\x44\xed\xff\x49\x05\x70\x8b\x73\xe2\xab\x73\x80\xa6\xd9\x76\x43\x69\x16\x2a\x3e\x9e\x4b\x2a\xf2\x5b\x0f\x21\x21\x2e\x89\x7c\x74\xc0\xe3\xbc\xc6\xf9\x21\x5d\xe7\x7b\x74\x6f\xf0\xfa\xac\x2a\x60\xb0\xa4\x3d\xd2\x5e\x17\x94\x6c\xc5\x6f\x93\xd1\x94\x62\x59\x43\x11\x9a\x3f\xa5\x5b\xd8\x21\xac\xbe\xab\xfc\x1c\x36\xfc\xbf\x83\x67\xc1\x59\x68\x8c\x98\xa4\xa4\x4b\xcf\x0d\xde\x00\x42\x4e\xd1\x6c\xf6\x41\x1c\xe3\xb7\xe1\xea\xdd\xd6\x6c\x88\xdb\xda\x8a\x08\xd8\xc4\xbd\x0d\x2c\x59\x27\x22\xe4\xc5\x29\x5c\x39\x43\xd0\x27\x16\xfd\x58\xc2\x87\xa2\xd2\x3f\x57\x75\x2a\x7e\x27\x8b\x3f\x23\x3e\xdb\x8b\xbc\x02\x6b\x64\x05\x3e\x77\x9d\xda\xb5\x24\xc2\x59\x27\x61\xe5\x0b\xae\xa2\xe5\x0b\xef\x87\xd5\xa0\x27\x23\xdb\xa5\x35\x8b\xb3\xe4\x0e\xbc\x3a\xbe\xa9\x1c\x48\xcf\xb5\x4c\x6f\x18\xc6\xa1\xa7\xc3\x17\x16\xc9\x1b\x3a\x43\x73\xa3\x52\xb4\xa4\x2a\x59\xd2\xf9\x9a\x25\xe5\x04\xc6\x2a\xc0\x2b\x44\x2f\x26\x5f\x57\x92\xbb\xfb\x17\x49\x32\x52\x65\x2a\x70\xac\x9e\x0c\xfc\x79\x5b\x95\xa1\x9f\x9b\x6b\xf5\xc3\x98\x44\x7f\xc8\xf7\xc1\xc2\x83\xd8\x34\x5f\xd7\x90\x9b\x2c\xb6\xe2\x24\x0f\xfb\xa1\x98\xdf\x3a\x52\xb7\x27\x15\x22\x38\xca\x6d\x66\x9b\xbe\x2e\xc2\xda\xcd\x38\x0a\x85\xfc\x57\x94\x56\x1e\x77\xed\xd4\x03\x43\x4c\x3e\x2f\x2f\xef\xf3\xa5\x42\xcf\xf3\x70\xb1\x62\x28\x16\x16\x5a\xeb\x61\xd4\xeb\x9a\x9c\x14\x27\x84\xff\xdc\x37\x6f\x9e\xaf\xab\x04\xa5\x76\x54\x6c\x61\xd4\x41\x51\x9b\xaf\xb7\x56\xb0\xbe\xfc\xc5\xd6\x4b\xfb\xe6\xc9\x35\x71\x85\x05\xc7\xe7\xf1\x6e\xe5\x2c\xd9\xbf\xd8\x8a\xcd\xab\xa1\x2a\xc6\x31\x75\x02\xdf\xb8\x10\xb5\x1f\x76\x6c\x2a\x62\xde\x58\x57\x6f\xe0\x7d\xf9\xe6\x13\x0b\xdc\xe4\x29\x1b\x44\x6b\x82\xfe\x52\xb0\xa9\xf3\x0a\x9f\xfb\xc0\x9d\x8a\x76\xd8\x49\xa5\xed\x61\x9e\xf1\x20\xf7\x02\x45\x4f\x7d\x7e\x4a\x20\xbd\xea\x39\x1d\x68\x99\x28\xe9\xe7\x70\xbb\xdd\xb8\xb9\x4e\xab\x7b\x8a\x43\xee\x92\x72\xeb\xbb\xc9\x70\x94\x14\x31\xd3\x01\x62\x09\xe0\x09\xf9\x5a\x31\x45\x66\x05\x69\x2d\xf1\xc1\x09\x68\xf0\xdb\x5a\x6a\xe7\x6d\x6d\x27\x6c\x96\x0d\x85\xd3\x47\xd2\x28\x1e\x6a\xaa\x1b\x77\x8b\x78\x3d\x0d\xf3\x9c\xcb\x8b\x4c\x6c\x3b\xf6\x58\x98\xeb\x95\xd4\x18\x75\xdc\xe6\x4a\x33\x55\x12\x40\x1e\x01\x72\xbe\x96\x84\x7d\x64\xd2\x2c\x71\x8d\x3c\x52\xbd\x53\x09\x9c\xf3\x95\xdf\x72\xa4\x1b\x59\x67\x9a\x90\xdd\x61\x68\x30\xce\xb2\xfa\xe8\xcb\x70\xe4\x3c\x54\xf4\x56\xff\xe8\x1f\xfd\xc3\x86\x8f\xdf\xef\x28\xb0\xc8\x1d\xbd\x39\xc3\x78\x64\xbb\x20\x47\x71\x7d\x0a\x8e\xc0\xff\x4c\x1d\xba\xbd\x97\xba\x8d\xcf\xba\xd3\x53\x1a\xd4\x75\x59\xc5\x30\xb5\x59\x32\x44\xd8\xa7\x5f\x47\x68\xe4\xb7\x9a\xcf\xfd\x8b\x04\xac\x5e\x4f\xd2\x55\x37\xe2\xac\x6f\xa5\x04\xd2\xde\x54\xcb\xca\xe4\x36\x0a\x09\xa5\x5e\x8e\x06\xa6\x71\x93\xda\x03\x71\xfd\x3a\x4e\x09\xc7\xef\xbe\x7f\xd1\x91\x02\x69\x50\xd0\xc6\x53\x0d\x27\xe8\x7f\x04\x1f\x41\xf2\x00\x42\xe6\x30\xbe\xaf\xc3\x39\x86\x0f\x70\x6f\xac\xc4\x0f\x2e\x28\x20\xe1\x61\xaa\x33\x21\xcd\xf2\x6b\x9c\xf7\x87\x19\xde\xa4\x30\x16\xab\xe6\xe9\x89\x02\x97\xec\x44\x2f\x0a\x8c\x64\xb3\xdd\x78\xfe\x2b\x0c\xb8\x7b\x5d\x4f\xf2\x77\x15\x9c\x77\xd3\xa3\xa9\x92\x27\x49\xb0\x99\xb3\xce\x81\xe2\x70\x98\xea\x36\xf9\x68\x2b\xf4\x76\x69\xfe\x60\xb9\x52\x09\x51\xab\x88\xe6\x96\x1c\xd1\x9c\x96\x34\x55\xa4\x5d\x3e\x41\x1e\x85\x36\x2e\x4f\x68\xc0\x2d\x04\x0e\x4e\xef\x25\xa4\xa8\xe5\xe7\xd8\xbb\x77\x06\x7e\x60\x0a\xcf\xff\x83\x89\xd9\xd9\xf6\x8d\xd9\x6f\xeb\x3e\xfd\x99\x89\x87\x4c\xac\xd9\xd8\xbe\x5a\xd8\xc8\x34\xca\xf7\x05\xc2\xe6\x2a\x6c\x2a\xdf\x28\xbc\x6b\x37\x2a\x6c\xd6\xd0\x52\x88\x53\x1a\x89\x35\x92\xae\x1d\xd3\x85\xf6\xa9\x50\x9d\x7a\x0e\xe1\xe6\xa4\x02\x74\x5d\x5e\x6a\x75\x4c\x4e\xaa\x22\xf4\xf6\xaa\xbb\xfb\x80\x43\x53\x6d\xfd\x95\x9f\xd3\xed\x5d\x48\x67\x5c\x50\x2c\xfd\x9e\x52\xa4\x34\x96\x45\x6e\xd3\xf0\x55\xe6\x03\xc1\x9c\x6c\x47\x4c\x80\x89\x80\xb7\xee\xde\xae\x1c\x33\x24\x0a\xae\x2b\xef\x25\x0b\x7b\x2c\x54\xe3\xa6\x78\x69\x59\x4d\xb1\x3b\xee\xaf\x69\xf5\xa4\x6b\x1e\xee\x97\xac\x9b\xb4\x97\xcd\x28\xde\xa1\xe6\xc4\xd7\x0d\x3f\x18\x7b\x1e\xaa\x5d\x68\x82\x66\x61\x1e\xb7\x4a\x06\x61\x5c\xc6\xcf\x39\x54\xbd\x6b\x9d\x78\x45\x4f\x1b\x1f\x6a\x4c\x51\x14\x8c\xd5\xb6\x3e\x5b\xa7\x30\x6c\x4a\x73\xde\x33\x71\xce\xab\x50\x09\xe4\x88\x5a\xce\xfd\x40\x07\x9f\x75\x39\xbf\xf5\xb0\x67\x99\xac\xd6\x77\xab\x9e\x57\x48\xca\xf3\x40\x7f\x49\x2a\xbe\xfb\x88\x0f\x94\x3e\x0a\x94\x20\xe3\x09\x6c\x3f\xbe\x51\x41\xe1\x43\xd8\x14\x38\xd0\xef\xe1\xe9\x00\x0a\x6a\xb6\x1b\x2f\xed\xdb\x3c\x8e\xd6\x61\xfe\x77\x64\xfe\x18\xdc\xad\x50\x6a\x2b\x49\xd2\xdb\x20\x11\xfc\xe5\x25\x4f\xaa\xee\x98\xb3\xce\xaa\x76\xac\x32\x4c\x26\x1b\x5a\xfe\x29\xa3\x88\x02\x87\x3d\x19\x9d\x51\x2d\x7d\x49\x27\x37\x21\x24\xe2\x58\xbb\x81\x06\x4c\xc4\x28\x55\xab\xfe\x6b\xb5\x3c\x74\x03\x13\xf5\x1b\xca\xd2\x20\x83\xc6\xd7\xaa\x73\xcd\xf6\x78\x2d\x95\x7f\x8a\x4c\xe8\x69\xfa\x53\xd4\xc5\x6e\x2b\xba\x1e\xe6\xe4\xe7\x3f\x52\xbc\x6f\xa4\xd9\xe4\x44\x4c\x61\x3c\xb6\x51\xb8\xc4\xd7\x93\xad\x0c\x7e\x9f\x6f\x65\x06\xfd\x08\x38\x04\x19\x98\xc2\x37\x15\xff\x66\x6e\xae\xd5\x49\x92\x4c\xd0\xa4\x92\xeb\xa6\x09\xe3\x1b\x55\x44\xee\xd9\x7e\xd8\x0d\x6d\xdc\xdd\xd0\xc8\x87\xeb\xca\x61\xe7\x06\x44\x96\xa4\xac\xfc\x1c\x49\x83\xa6\x43\x8b\x46\x1c\xe9\xcf\xa4\x98\x51\x1a\x37\x5d\x3a\xa3\xe8\xad\x58\x67\x37\xb1\x38\x66\xe9\xd5\x9d\x24\xbf\xa7\x23\xbb\xab\x92\x04\x59\x12\x99\x74\x9a\xd2\x88\xbe\x02\x50\xaf\xe3\xba\xeb\xf6\x8c\x6b\x24\x32\x69\x57\xc4\xfb\xe1\x0a\xee\x9a\x28\xb4\xfa\xae\x76\xa5\xf1\x63\xa9\x15\x85\x6b\x56\xe3\x27\x99\x01\x86\x6f\xf4\x2e\x1f\x8e\x66\x55\x46\x1a\x7f\x26\xe9\x69\x5f\xad\x3f\xa9\xfa\x57\x4f\xea\x96\xd0\x9b\x15\x67\xfb\xf3\x2d\x13\x45\xc9\x3a\x0d\x22\x0e\xc8\xbf\xc0\x34\xf3\x8d\x52\xa5\xca\xbe\x5e\x98\x18\xf9\xfd\xf2\xeb\x85\x03\xa3\xb4\x63\xc2\x6e\xf1\x84\x42\x83\xdb\x38\xdf\x40\x4d\x4f\x40\x07\x8a\x0e\xff\xb8\x1b\x2e\x64\x13\x31\x35\xc8\x17\xc3\x4c\x62\xb8\xfe\x47\x8c\x31\x92\xca\x33\x6d\x99\x51\xa1\x86\x99\xa5\x41\x73\x29\xb4\xf2\x45\x95\xe8\x04\xe3\xc8\x0e\x3f\x55\xce\xf5\xe6\x0e\xa8\x2e\x0b\xa3\xd3\xd6\x73\xe9\xb9\x56\x18\x87\x79\x68\xb6\xb4\x56\x9f\x09\xa6\x26\x59\x4d\xc5\x28\x7b\x54\x35\x6c\x7e\xba\xad\x28\xb1\x67\x39\xa6\xe6\x3b\xf2\x32\x50\x24\xe7\xb2\x2a\x32\x75\x9b\xca\x41\x7d\x88\x07\xa6\x7f\x58\xfa\x9b\x44\x48\x09\x2b\x09\xc4\xa4\x53\xb0\x93\x4e\xf1\x5f\xf9\x49\x85\x40\x8b\xad\xc9\x05\x5c\xc1\x72\x70\x9a\x28\xe1\x78\x1d\x14\xaa\x57\x06\x71\x80\x2a\x49\x8a\xbd\xe1\xe8\xb0\x4f\xd5\x95\xff\xcb\x53\x7b\xab\x37\x3f\x55\xda\xad\x7e\xe6\x40\x0b\xb0\x52\x3c\x1a\x86\x80\x59\x0a\xf9\x66\xe2\xb6\x4d\xa7\x90\x2e\x06\xdf\x9d\xe0\x3b\x15\xd4\xae\x24\xf1\xbf\xdd\x1e\x0a\xf3\x6f\xf1\xae\x48\xe6\x7c\x08\xcc\xa5\x6f\x11\x93\xbe\xd7\x2b\x58\x1e\x42\x1c\x5d\x0e\x30\x52\x2c\x02\xd8\xc0\x31\x77\x5b\x69\xb8\xdd\x0e\x14\xba\xea\x22\x0c\x2b\x26\x82\x79\x4e\xe4\xa8\xfd\xa4\xe4\xba\xe9\x7a\x64\x00\xbe\xe5\xa4\x1a\x64\x8e\xe9\xf1\x82\xd7\xd5\xde\x59\xb7\xe1\xca\x20\x9f\xc5\x63\x09\xe6\x5b\xf5\x03\x9f\xc3\x3b\x4a\xc3\x21\xed\x31\x87\x7d\xf5\xdc\x93\x87\xd5\xf9\x97\x15\xe9\x28\x0d\x33\xcb\x3e\x02\x43\xf5\x03\x45\xd2\xe3\xe1\x1b\x61\xdc\x2f\xa3\x36\x86\x39\x09\x74\xa0\xe1\x94\x5a\x8e\xeb\xa4\xf1\xed\x60\xb7\xa2\x63\x05\xe0\x13\x89\xa5\x1b\x74\x16\xe2\xb5\x7f\x1d\x59\x7f\x29\xc7\xd0\xbb\x70\x2f\x21\x55\x7d\x11\x31\x9c\xda\xc2\xd0\xe1\xb2\x86\x3f\x0a\xa6\x39\x3d\x1c\xbf\x1a\x21\x6f\xe6\x37\x8f\xeb\x28\xfc\xfa\x54\xde\x34\x1f\x6c\x10\x6a\x12\x4f\x8b\x66\x00\x24\xe6\x76\x4d\x54\x63\xc2\xa5\x40\x11\x22\x62\xd9\x30\x09\x48\xa0\xba\x78\x2e\xaa\xa6\xe8\x23\x98\x04\x2c\xae\x1d\x6d\x65\xe8\xb6\x29\xde\x32\x7c\x5e\x0e\xcd\x6b\x8a\xde\xbe\x9f\x9a\xb8\x3b\x08\x49\x8a\xaf\xe1\x18\xc3\x2e\x06\x53\x5d\x09\xbe\x92\x62\xe2\x8d\x24\xb6\x3b\x14\xc5\xf1\x6d\x25\x67\x06\xa2\x35\xd7\x66\xe8\xf5\xfb\x95\x43\xc1\xb9\x7e\x69\x8a\x91\xd9\xce\xbe\x5e\xa0\xb5\x59\x53\xdb\xdf\x0c\x3c\xf7\xc6\xcd\xb1\x3f\x29\xff\xe7\xf1\xa7\x94\xd1\xe9\xda\x2c\x33\x69\x58\x5a\x9e\x32\x42\x90\xce\x75\xa5\xaa\xab\x89\xea\x47\xc9\xaa\xcd\x86\x26\x26\x0f\x90\x5c\xbb\x6f\xef\x6d\x7b\xbd\xe8\x0f\xa7\xda\x29\x02\xb5\x59\x1f\xd2\x74\x28\xea\x92\xf9\x4d\xa8\x04\x3a\x56\xc0\x72\x1e\x11\x36\xbe\x33\x95\xbf\xa8\x69\xae\x18\xa5\x61\xec\xad\x58\x9d\x48\x58\x4d\xfc\x3e\x4a\xc3\x84\xdb\x31\x60\xb9\xe1\x3b\xa2\x12\xf3\x40\x31\xa7\x5f\xaa\x54\x4b\xff\x6e\x6b\xb4\x41\x1d\x98\x83\x98\xa9\x25\xb1\xe0\xa0\xe3\xce\xd7\x75\xca\xa0\x43\x53\xee\x43\x33\x44\x0a\x9f\x95\x98\x54\x28\x7f\xb7\x4e\xa5\x20\x4f\x8b\xe1\x88\x3b\xa4\xb9\x2f\x9c\x06\x44\x7a\xc4\x5d\x00\x9a\x0e\x41\xc4\x3a\xeb\x33\x17\x60\xd5\x73\x4d\x44\xcb\x9e\xba\xd8\x9b\xac\x1f\xea\x92\xe5\xee\x76\x9d\xb8\x6c\x96\x87\x22\xa7\x28\xd4\x61\xb0\x39\xe2\x6b\xd5\x08\x51\xf4\xc2\xa9\xde\x3b\xc7\xa3\xb8\xe8\x38\x15\x5d\x73\x54\x14\x0e\x3b\x49\x53\xf3\x76\x8c\xfd\xa0\x3e\x98\xd2\xa6\xdc\x3a\x15\xaf\xbc\xd2\x32\x9d\x2c\x89\x8a\xdc\x32\x31\x2b\x8c\xc8\x77\x14\x61\xe3\x77\xdc\x0f\x91\x4a\xed\xec\x96\x96\x8e\x85\x05\x1c\xa9\x3f\xfd\x37\xc9\x7d\xa4\x7c\xd2\xe9\x4f\x4f\x54\xbf\xd0\xeb\xa4\x46\x23\x90\x77\x57\x35\xec\xfd\x0d\x25\x87\xd6\xf8\x05\xc7\x8c\x4b\x95\x3e\xd4\x31\xf6\x4c\x14\x1c\xe0\x26\x91\x8e\x01\x03\xde\x6c\x13\x6a\x8d\xa1\xb5\x98\x01\x4c\xcd\xcf\x01\xf8\xed\x98\xab\x1d\x5f\x0f\x07\xab\x72\x72\x29\x48\xfb\x4f\x3e\x33\x71\x75\xd4\xe1\x4f\x50\x39\xd2\x4d\xbf\x0b\x4e\x37\x49\x63\xcd\x51\xc5\x2e\x2c\x08\xbd\xcd\x00\x87\x8d\x90\x5b\x36\xbe\xfc\x45\x57\x68\xa5\x28\x4c\x42\x65\x4f\x04\x47\x41\x1a\x7b\x68\xbb\xdb\xbe\x93\xfa\x54\x40\x05\x4f\x41\x4c\xd0\xbc\x23\x4a\x68\x22\x54\x17\x23\x47\x2b\x09\xe8\xcf\x5d\x64\x2e\x90\x04\xe4\xc0\x02\xd1\xd5\x63\x6d\x42\x56\xe2\x1c\x63\x7d\x05\xa4\x80\xaf\x54\xb6\x16\x95\x0b\x52\xbb\x16\x3a\x84\x16\x3c\xcd\x3b\x8a\x29\xbd\x8a\xd3\x9b\x3f\xd8\xca\xfe\x4e\x84\x50\x00\xb1\xd5\x5d\x85\x85\x9a\x51\x6a\x52\x55\xc0\xc4\xdc\x5c\xab\x5c\xde\xd6\xf4\x73\x9b\xce\x78\xc7\x83\x7b\x53\xb8\x63\x91\xc6\x0c\x65\x65\xb8\xf2\x08\x32\x0e\xd7\xf9\x6e\x03\x93\xf6\x18\xf2\x8c\xe2\xc1\x39\x04\x3e\x52\x5b\x69\x78\x9a\x58\xc5\x40\x39\xb0\x78\xe3\x17\x7c\x35\xca\xe1\x54\x2e\xd7\xc9\x11\xf4\xa9\x21\x67\x6e\xde\xb3\x84\x7b\x56\xef\x13\x35\x98\xe3\x41\x92\xdb\xa8\xd1\x78\xf6\x59\xe7\xb4\xe9\x56\xd3\x27\x15\x2b\x51\x69\xa4\xec\x0c\x3d\xb3\xb3\xeb\xda\xfa\x7b\x76\xf5\x6d\xb4\x66\xf8\xba\xae\xde\xd8\x2d\xd2\xdc\x84\x11\x41\x28\x1d\xb0\xc7\xd5\x4d\x50\x22\x93\xb6\x5f\xdf\xd6\x3c\x4a\xa2\xdc\xa6\x2b\xd6\x0b\x99\x20\x84\xb9\x08\x4f\x82\x6f\x2a\x41\xfb\xfe\xc5\x56\x12\xd1\xd0\x3b\xe3\xcd\xed\x4d\xb0\x8f\x40\x97\x78\x02\x6e\xd7\xf0\x13\x46\x76\x8a\xc8\xec\x26\xd6\x35\xdf\x4c\xf3\x3d\x74\xcd\x23\xe5\xa0\xc3\x8b\xe2\x56\x67\x58\x20\x6c\x26\x9c\xe0\xd7\x55\x61\x7b\x06\x59\x50\xec\x2c\x98\x29\xd8\x9a\x5d\x8a\xbb\xe0\x5c\xa0\x7c\xd6\xab\xd8\x71\x72\x64\xd7\xac\x31\xd3\x4b\x93\x30\x9f\x72\x4d\x1a\x8e\xe4\xf4\xa2\x0a\x84\x0e\xbe\xb8\x4c\xe7\x0d\x4c\x12\xa7\x15\xf9\x66\xfc\xd4\x74\xe6\x74\xff\x62\xeb\xb9\xcf\x94\x8f\xc4\x3b\x80\x8f\x06\xb8\x4a\xb7\x31\x92\x1c\x28\x61\x80\x04\x57\xef\xb9\x91\x8e\x01\x45\x8d\x1f\x80\x99\xc4\xd9\x7b\x63\xac\x64\x1b\x2f\xea\x2e\xe5\xef\x83\x3e\x10\x5e\xc1\x66\xa0\x64\x4b\xff\x6d\xa0\xf6\x03\x0b\xc4\x71\xab\xe8\xd8\xa3\x83\xb7\xb5\x7d\x7b\xeb\x29\x58\x56\x21\x6a\x24\x93\x8d\x5d\x7b\x1f\x7e\x08\x8c\x31\x40\x64\xb0\x26\xdb\x28\x2d\x8d\x5f\x3f\x0c\xd8\x37\xce\x8a\xdd\x13\x8f\x45\xba\xac\x33\x5b\xef\xd3\x51\x2c\xbb\x59\x91\xa2\x6d\xa0\xec\xc0\xc8\xb8\x40\xa5\x2d\x2e\x56\x4c\xd6\xc1\x17\x5b\x71\xf2\x39\xda\x17\xb0\x52\xdb\xe9\xe7\x00\xce\x60\x12\x37\xfc\xf6\x7f\xd4\xcc\x02\x36\x7e\x14\x93\xc2\x24\x95\xc8\xdc\x8b\x69\x2d\x07\x85\xc9\xa8\x15\x6b\xd9\xce\x89\x16\x89\xa5\xc9\xc2\x1e\x60\x65\x3f\x3a\xa8\xb3\xbf\xd5\x56\x2a\xda\x9c\x67\xc4\x04\xdd\xd2\xaa\xef\x55\x91\xfb\x32\xf6\x4c\x93\x55\x8b\xc2\x9b\xb3\x0b\xce\x3b\xb8\x4a\x2e\x27\xe6\xea\x62\xc5\xbf\x90\x60\x2c\x37\xab\x40\x25\xe0\x43\x6f\x51\xe2\x82\xaf\x2b\x11\xdc\xfe\x45\x62\x09\x1b\xa1\xa8\x8c\x9d\x2b\x1d\x59\x0d\xc7\xfd\x7a\xa1\x06\x07\xd9\x32\x69\x27\xcc\x53\xf8\xc5\x8d\xe5\x7d\x9b\x54\xf1\xda\x3c\xaf\x83\x31\x9b\xe7\x91\x10\x3d\x48\x0b\x81\x6a\x27\x50\x74\xf9\x26\xde\x58\x37\x1b\x33\xe5\xa3\x62\xe7\xdd\xa4\xa5\x01\x07\x8c\x7b\xf6\xf8\x26\xf0\xf0\xd7\x9b\xca\xef\xee\x98\x6e\x6e\xd3\xb0\x18\x22\xc5\x02\xb3\x78\x4b\x29\xa6\xb3\xe0\x08\xaa\x20\x47\xa6\x20\x38\x6b\xd9\xe7\xc8\x00\x28\x51\x4e\x09\x2e\x4f\x4f\x65\xa5\xb2\x47\x54\x28\x8b\xdd\xea\x54\x8d\xcb\x3d\x2d\x19\x3d\x5f\xe0\x64\x2c\x3a\xa5\xd5\xbe\xf3\xb7\xdb\x9a\x25\xec\xbe\xef\x6f\xdc\xfd\xd3\x13\xc5\x38\x79\x7a\xac\xdc\xca\x9d\xed\x67\x6a\x48\x71\xe7\xe6\x1e\xc1\x57\x21\x5f\xf7\xae\x72\x08\x39\x6c\xe5\x50\x53\x09\x78\xe8\xfe\x62\x74\x88\xc3\xb3\xbc\x36\x56\x01\xe2\xa9\x40\xf1\x06\xbf\xaf\xab\xea\x7f\xa4\x29\x84\x72\x9b\x3e\xe2\x1d\x9e\x0f\xc7\xbe\xb2\xda\x68\xd3\x9b\xc8\x06\xa7\x61\x41\x3c\xdc\x9c\x28\x3f\xe0\x66\xe0\x41\x25\x8c\x68\x94\xc9\x2e\x5f\x45\x51\x30\x1e\x70\x28\x90\x27\x94\x60\x67\x6a\x4d\x3e\xab\x3a\xde\xc7\xaa\x7f\xe2\x2c\xc6\x0f\x95\xeb\x33\x2a\xa2\xbf\x8d\xae\x4b\xfe\x07\x25\x84\x21\x4c\x66\xbb\x7c\x19\xf2\x08\xac\x8e\xa3\x29\xf3\x9a\x00\x57\xc7\xaa\xc2\x79\x49\xd1\x60\x9f\xd5\x5e\xe3\xd5\x40\x31\x92\xbf\x47\xab\x59\xbe\xab\x06\x4c\x1f\x0e\x29\x6f\x2d\x91\x01\x3c\xc4\x49\xe0\xc1\xd4\x13\xd5\x7d\x37\x34\xbd\x94\xa9\xf8\xea\x90\x1c\x7e\x57\xad\xd8\x24\x5d\xb1\x90\xb9\x96\x68\xc1\x67\x1b\xde\xc5\x42\x11\x16\x0f\x0f\xd1\x78\x43\xa7\x80\xee\xe3\x38\x75\x2a\xd5\x9e\xd2\xf0\x9a\xc2\x7c\x0d\xc3\x2c\x2b\xff\x6f\x34\x0a\x75\xb7\xc2\x79\x45\x10\x7c\x7e\xbc\x5b\x41\xb0\x67\x55\xad\xfe\xd1\x49\x79\xee\xd0\x48\x99\x9f\x68\x7b\x95\xbc\x4b\xe3\x29\x5a\xf6\x86\xd3\x22\x39\xaa\xbd\x3d\x93\x83\x70\x12\xa9\x30\x76\x36\x9d\xc2\xf0\xc2\x02\x1b\xff\xdf\x50\x76\xe3\x68\xc5\x11\x78\xae\x35\x32\x1b\xa6\x13\x59\x55\xec\x7c\x03\x5f\x25\xc6\xaa\xfc\x2a\x98\x71\x54\xcc\x45\x7f\xa6\x06\x94\xb6\x4e\x10\xcf\x18\x00\x08\x7d\xa4\x20\xb3\xb3\x13\x87\x12\x26\x76\x73\xac\x65\x63\xec\xc8\xa6\xb3\x53\x68\x8d\x72\xdd\xc1\x5e\xbc\x35\x56\xfd\x62\x57\x95\x54\x04\x4b\x0a\xf3\x5f\x29\x58\x6a\x96\xa7\xe1\x08\x58\x3e\x86\x28\xd3\x80\x08\x5c\x99\x96\x31\xf3\x5e\xd1\x2b\x09\x07\x56\x8d\xee\x6a\x6c\xa9\x94\x99\x0c\x6d\x43\xa5\xb0\x01\x70\xe1\x6b\x25\x52\xb6\x92\x44\x36\xee\x24\xdd\xd5\x86\x2a\x6a\x31\xc2\x9d\x6f\xea\x32\xaf\x3d\x33\x34\x2b\x12\xae\x08\xdb\xa0\x52\x19\x3f\x59\x49\xeb\x2f\x2f\xa9\x7e\x27\xb8\x44\xef\x29\xb8\xc6\x7b\xe5\x12\x15\x95\x0e\xd3\x49\x19\xfe\x3a\xa3\x9a\x54\xae\xe0\xa9\x58\x61\x22\x50\xbd\x2c\x57\xe0\x5b\x89\xf6\x84\x3f\x07\xbe\xf4\xfc\x72\xd3\x1f\x63\xb7\xc7\xaa\xc7\xfa\xdf\xd3\xb4\x48\xcf\xcd\xa7\x94\x81\x21\x35\x8c\xf0\x55\x2e\x2a\x08\xd1\x7d\xb9\xd8\xf9\xba\xb2\x26\x5f\x79\xa5\xd5\x29\x36\x9c\x4d\x80\xff\xd3\x6c\x7b\xc7\xa8\x39\x51\x53\xbd\x31\xec\x24\xd1\xac\xca\xd4\x9f\x52\xf4\xd3\xb7\xe1\xff\x89\xe3\x4c\x56\x90\xff\x8a\x26\x1e\xeb\xfa\x84\x2a\x0b\xf7\xc2\x6c\x15\xe9\x2e\x07\x12\xf4\x80\x41\xdf\xc6\x1a\xf5\xcb\xff\x83\xdf\xe0\x16\xba\x63\x71\xb9\xe4\xd0\xab\xe0\xa7\x6e\xe8\x34\xc3\xc7\xda\xe3\xff\xb8\x12\xbf\xbe\xf2\x0a\x49\x38\x15\x5d\x0a\xce\x5e\xda\xe7\x29\x58\x16\x16\xe4\x5a\xc5\x5a\xb1\x5d\x4d\x92\xcc\xcc\x96\x96\x44\xb0\x2c\x3e\xd0\xbf\x8c\xf7\xc7\x6f\x71\x2f\xb0\xdc\xf8\xbd\x7c\xb3\xb6\xb1\xc4\xf6\x93\x94\x2b\xe4\x42\xb4\x56\xce\x20\x96\xc5\x9e\xb6\x6f\x90\x06\xc3\x1f\xdc\xe7\x5b\x75\x30\xf7\x7e\x18\xaf\xd8\x94\xe3\x23\xd7\x37\xbd\xe8\xfb\xa6\x9f\xae\x44\x11\x2f\xed\xfb\x49\x0a\x03\x5c\x69\xc9\x37\xab\x61\x7e\x91\x96\x60\xb1\x18\x27\xc1\x3c\x37\xc7\x87\xf6\x5f\x8e\x4b\x9f\x9c\x93\xc2\xda\x47\xb9\x3e\x56\xd9\x87\xfb\xe3\xc6\xcb\x4b\x9e\xa8\x78\xfe\x20\xaf\xc9\x07\x88\x21\x24\x27\xe6\x6b\xbe\xbb\x28\x52\x00\xe8\x04\x90\x19\x0c\xc7\x43\x24\x51\x5c\x2b\x6e\x39\xe8\x48\xbb\xbc\xab\x29\x48\xb7\xb5\x55\x7f\x0a\x8e\x24\x24\xc3\xb7\x21\x05\x84\x94\xc0\x07\x63\x5d\x19\xf8\xd1\x18\xd4\x56\xf0\x38\xae\x20\x3c\x71\xd5\x4a\x3f\x3b\xc7\xc8\xcb\x81\xf3\x9d\x57\x56\x55\x19\x48\x27\xa3\x8d\x34\x5c\x19\x00\x90\x8b\xa1\x07\xe9\x82\x40\x48\xbd\x08\xd2\xad\xba\x04\x49\x6a\x7b\x3b\x1a\x5f\x78\x99\xe9\xca\x5e\xc3\x40\x22\x59\xb2\xa9\x4e\x51\x66\x92\xc1\x20\xdd\xa2\x79\x66\x86\x8c\x69\x2a\x60\x0f\x14\x26\xf1\x65\x0b\x75\x04\xa0\x36\x4e\x8f\x3d\x3e\xe5\x74\xb0\xdb\xd9\xd7\xf5\xcf\x91\x4f\x8d\xc8\xe5\xcf\x30\xce\x7c\xe3\xb7\x5c\x18\x25\x8e\xb5\x59\x1a\xbc\xe9\x91\xa4\xf3\xbb\x4e\x29\xbe\x3c\x32\x56\x01\xc7\x42\x31\x92\xa3\x2f\xbe\xa9\xdb\x21\xaa\x10\x8c\xe3\x99\x4b\xb1\x7c\x13\x3c\x5d\x29\xc5\xe6\xeb\x4d\x8f\x99\x42\xa9\x08\xcb\x95\xd1\x1c\x42\xae\x52\x13\x20\xf5\x4d\xd7\x6a\xe6\xbc\x8b\xda\x89\xf1\xa5\x70\x92\xfe\xa4\xa2\x76\xb9\xd0\xa4\xdf\xdc\x67\xaf\x20\x3b\x81\x32\xc8\x15\x95\xc0\xc8\x4c\xdf\xa6\x33\x34\x9e\x12\x35\x78\x78\xe6\xfb\xb4\x03\x1c\x70\xc9\x41\x27\xb7\xb7\x75\x30\xd1\xb1\x11\x81\xf3\xa6\x88\x07\x10\x32\xde\xa8\x96\xfd\x11\xdf\xdf\x1e\x3f\xa9\x98\xe8\x60\x25\x7c\x45\xe3\xa4\x6a\x5c\xac\xb2\xca\x2e\x2c\xb4\x86\x61\x14\x65\x33\x3a\xb6\x38\x19\x28\x51\x8e\x63\x4a\x27\x82\x3d\x38\xfe\xab\x3a\x70\x43\xd7\xa6\x6b\xe1\xa1\xa6\xe2\xe1\xf9\xe7\xaa\x1f\xff\x5d\xd5\x94\xf7\x4e\xc5\x51\x58\x7a\xf1\x00\xf7\xa7\xb8\x63\x4b\x64\xe0\xbc\xa3\x70\x41\x95\x00\xf3\x64\x9d\xde\x75\xbf\x64\xde\xcf\x05\x5e\x26\xfe\x9c\x8b\x38\x46\x45\xba\x62\x7b\xd3\xa4\x02\x8a\x33\xa5\x89\x52\xab\xb4\x2e\x6d\xe5\x90\x9f\x6b\x2d\x2e\x7e\x96\x0c\x13\xce\xb9\x1f\x07\x8a\x31\xfe\xdd\xb1\x12\xb7\xf8\x55\xb8\x7c\xb8\x39\xad\x44\x95\x3f\xc0\x78\xe2\x1f\x1a\x6d\x2f\xb8\xcd\x7a\x2c\xb0\x51\x3b\xb8\x1e\xee\x0c\xdb\xb2\x80\x79\x1f\x60\xb6\x11\x15\x9d\xa3\xaa\x0e\xcc\x07\x2a\x5a\xa8\xd4\x9d\x22\x63\x2d\x46\xa2\xf1\xe5\x2f\xfa\xa5\xe2\x35\x0b\x5e\x09\xa6\xf0\xc5\x73\x73\x7c\x28\xbf\x46\x36\x5c\x32\xe1\x3e\xe3\xf9\xd3\x30\xa9\xc2\x34\x47\xb3\xef\x7a\xf9\xbe\xf0\x32\x27\xd0\x0e\xc3\xe5\x77\x9a\x0e\x5f\x9a\x77\x7f\x44\xe3\xcc\x3c\xd2\x81\x52\x97\xbf\x39\xf6\xe9\xd7\x5b\x2a\x4a\x2e\x3a\x4c\x43\x29\x9b\xa3\x1c\x2c\x2e\x63\xb2\x45\x17\xfd\x64\xef\x73\x6a\x2a\xc6\x30\xb6\x87\xa8\x53\xa9\x13\x6d\x34\x3c\xe1\xdb\x15\x9c\x20\x7c\x13\x3c\xae\xfa\x2b\x4c\x77\xd0\xf4\xa9\xb9\x9b\x63\x25\x11\x81\x70\x52\xb2\x96\x9e\xba\x27\x5b\xb7\x26\x97\x9a\x24\x0e\x1f\xd8\x68\xbe\x9e\xca\x0f\xf4\x6c\xef\x29\x1a\x45\xd8\x84\xcb\xb4\x30\x10\x24\xcc\x50\xec\x02\x5b\x7e\x27\xf0\x0a\x69\x37\x02\xc5\x02\xf3\x00\x6b\x0c\xbe\x08\xf7\x65\x8b\x22\xbd\xea\x71\xe4\xc0\x92\xb5\x52\x95\x1b\xfb\x3a\xad\x24\x96\x91\x52\xa2\xd7\x7b\x50\x0f\x10\x21\x39\x5a\xe2\xa2\x24\x47\xcb\x12\x3f\x32\x8b\xf8\x00\xc1\xd6\xb5\xb1\x6f\x01\xbd\x3a\xf6\x8e\xd5\xdd\x4a\x58\x3a\x37\xd7\xca\x43\x13\x9b\x78\xc8\x70\x68\x57\x77\x28\x1f\x59\x3c\x3c\x1f\x96\x6e\x14\xa3\x51\x68\xe1\x34\xd6\xb1\xc2\x48\x0f\x5c\x6a\x4d\x7f\x8a\x66\x9a\x05\x26\xa7\xc4\x26\x7d\xdb\x93\x35\xbd\x8d\x59\x8f\x6f\x40\x37\xe1\xe6\x65\x05\xad\xff\x29\xa4\x09\x98\xef\x4a\xd5\x2b\x76\x29\xec\x48\x66\xd6\xa4\x21\x49\xc8\xe7\x5d\x81\xf6\xf9\xef\x8c\x55\x99\xf4\xa4\xe3\x25\xe9\x45\x5f\xa3\xf5\x31\x75\x38\xf1\x8d\x5a\x80\xe5\x99\xc4\xf0\x62\x39\xed\x69\x10\x90\x7b\x3d\xa3\xea\xca\x7f\xae\x7a\x78\x3e\x54\x11\x45\xcf\x1a\x15\xce\xa3\x9e\xc0\xd7\x38\x04\xa5\x9e\x30\x2c\x62\x69\xe1\xdb\xad\x88\x00\xae\x06\x9e\x3c\x90\x49\x70\x36\x2f\x2b\x06\xe5\x7b\xc8\xea\x20\xf7\xf5\xe1\x78\x2a\x8b\x4e\x63\xe7\x14\x0e\x3d\x2f\xf6\x25\xc5\xa4\x7c\x39\xf0\x52\x4a\x97\x60\x2a\xa4\x81\xdd\xcf\x7f\x3f\xc9\x72\xae\xd6\x38\x3e\x9d\x97\xf6\x39\x01\x1a\xdf\x45\x76\x57\x65\x5e\xa2\x30\xb7\xa9\xe9\x6e\xe1\x12\x52\x44\xc8\xba\x64\x50\x74\x07\x4f\xfb\x22\xf4\x0f\x55\xf4\x74\x6c\xec\x89\x90\x77\xb4\x7d\x0f\xf9\x69\xf8\xbc\xb0\xa9\x37\x30\x81\x22\x28\x4a\xef\x2a\xda\x5d\x34\xff\x8a\x4b\x6d\x9e\x9d\x50\x26\x20\x81\xdf\xca\x34\x7e\xec\x36\x60\x92\x31\xa6\xbb\x27\xd4\x8c\x22\x2e\x8f\xca\x9f\xbc\xa5\x74\x15\x38\x37\xc6\x4f\xa3\x88\x81\xee\x93\xd3\x0d\x1f\x0b\xee\xbb\x74\xbe\xfa\xa3\xb2\x97\x14\x9d\x1c\x47\x25\x32\x1a\xff\x14\x0f\xc0\x37\x1a\xb9\x6f\xd3\x30\x4f\x52\x76\xfd\xf0\x52\xcc\xa1\xcd\x37\xca\x5c\x87\xb9\xd9\x51\x3e\x08\x16\xca\x03\x3c\xba\x53\xac\x2b\xdf\x9d\x55\x16\x34\xf1\x04\x8c\x3a\xb3\xe6\x2b\xfa\xf0\xc6\xc4\x33\xad\x67\x49\x91\x76\x25\xe4\x43\x1a\x8c\x9b\x4f\xf8\xa6\x96\xbb\xa0\x88\x22\x5a\x41\x38\x70\x6e\xe1\x74\x15\x69\x0b\xdf\xde\x7c\x58\x39\x4c\xc9\xb3\xab\x61\x77\x35\x24\xfa\x6c\x2c\xbc\x1f\x2b\x52\x27\x36\xc4\x82\x0c\x70\x76\x65\xe4\x23\x6b\xd8\x80\x8f\x68\x3e\xf8\xda\x45\xb8\xac\x21\x3f\xab\x1a\x73\x8e\x61\x33\x89\x82\xd6\x94\xfa\x59\xc3\x31\x65\x6f\xa7\x90\x42\x2a\xea\x5b\xd5\x38\xa9\x3a\xdb\x49\x13\xd3\xeb\x9a\xcc\x83\xa7\x44\x71\xbe\xe1\x14\xb7\x6f\x2b\xfd\xc3\xff\x45\x6d\xb6\x4e\x91\x5a\x53\xcc\xd0\xbb\x4d\xe1\x70\x9d\xcb\xe7\x2a\x77\xc7\x68\x34\xf8\x8f\x94\xa2\x44\xb6\x6e\x6d\x4e\xa1\xb5\x94\x60\x1b\x8e\xde\xef\x70\xe0\x75\xc5\xbb\x51\xd1\x13\x10\x3b\xce\x33\x46\x74\xf1\x8d\xd6\x2a\x8f\x4c\xcc\x09\x22\xbc\xca\x9b\x1a\x8c\xf3\x66\xa5\x8c\xb0\xb4\xbc\xd4\x0a\xe3\x3c\x4d\x7a\x45\x17\x79\x9f\xaf\x7a\x3a\x04\x55\xf4\xd1\x9d\x3f\xb9\x4d\xc3\x08\x68\x11\x27\xde\xec\xd8\xf9\x4e\x28\xc9\xde\xd2\x0f\x35\x29\x3a\xd8\x3c\xe6\xfe\x18\xfd\x35\x5f\x4f\x69\xe1\xc5\xdd\xc1\x63\x4a\x44\xed\x92\x52\xe9\x9a\x99\x28\x4e\x77\xcd\x92\x71\x5c\xf5\x51\x32\x23\x1d\x56\xd0\xae\xf6\x16\xae\x9b\x17\x1c\x50\x85\xde\x92\x3d\x51\xac\x1e\x49\xbb\x7a\x7a\x7d\xc4\x27\xb0\x6d\xd7\x5c\x23\x98\x3d\x64\x86\x61\x2c\xed\x14\x08\x51\x59\x5c\x05\xb6\xe3\xa8\x42\xdb\xfc\x71\xa5\xd8\x33\x37\xd7\x2a\x62\x33\x4c\xd2\x1c\x79\x28\x87\xb7\x39\x8d\x18\x4f\xaa\x0f\x8a\xd9\x9f\x68\x19\x66\x3c\x2e\x89\x15\x5b\xb0\x36\xef\xea\x5e\x06\x86\x27\xf1\xbf\x78\xd8\xeb\x46\x37\x49\x62\xcc\xac\x40\x56\x7d\x92\xfd\x42\x0d\x4d\xce\x3c\x50\x04\xcd\xd2\x17\xc6\x19\x75\x47\xb9\xbc\x5c\x2b\x00\x4e\xf5\xc4\x14\x5a\x32\x8c\xec\x1e\xe4\x08\xe0\xd1\xdc\xd6\x9a\xdb\x8c\xb6\x80\x43\xbd\x1d\x76\x5c\xe4\xdb\xc8\xbb\xe6\xcf\x28\xce\xf3\x47\x80\x6f\x93\x84\x4e\xb9\x1a\xe0\xd2\x9e\x50\xc1\xe3\xc3\x40\xb1\x8c\x6c\x9f\xf8\xf6\x9d\xe3\x9a\xa9\xe9\x1a\x79\x8c\xc2\x8a\xf3\x49\xdd\x7a\x26\xcd\xc3\x6e\x64\xe1\x49\x70\xdf\x9d\x82\x16\x34\x55\x8b\xfc\x2f\x8e\x7d\x9a\xfc\xd4\x78\x2b\x7d\xb4\x7c\x61\x37\x89\xb3\x62\xc8\x65\x7c\x9c\xe4\x9c\xad\x44\xdc\x84\xda\x26\xa2\xed\x59\x07\x3a\x1e\x9a\x30\x8e\x4c\xdc\x6b\xfa\x14\x03\xa7\x6e\x51\x3b\x3a\x46\x8b\x0c\x56\xee\x4e\xa0\x70\xd3\x45\x27\xcb\xcb\xed\xc6\x64\x85\x8a\x2b\x7c\xde\x31\x8c\xaa\x2c\xea\x97\x5e\x20\xe3\x83\x4a\x1d\xab\x17\xf0\x8d\x16\x97\x30\xc3\xc2\x46\x0d\xc5\x77\x76\x4a\x7b\x29\xa7\x6a\x71\x23\x45\xcf\x69\xf4\xc2\xe5\x40\xb0\xa2\x55\x96\x25\x94\xdb\x3a\x19\xf4\xf1\xa1\x89\x43\x90\xc1\x97\xbb\x64\x93\x7c\xee\xcd\x9b\x5a\x02\x28\x4d\xca\x55\x3a\xa3\x33\x54\x58\xd8\xd8\x00\xef\xd0\xef\x21\x2c\x38\xa2\xf5\x03\x1e\x04\x02\xbc\x4a\xcd\x68\x1a\x0f\x8e\xf3\xcd\x35\x80\x78\x49\xfe\x1b\xaa\x6b\x83\xda\x1e\x43\x51\x16\x47\xac\xd1\x80\x7f\x0f\x23\x7b\x18\x47\x26\xdf\x8c\x55\xaa\xf3\x01\xad\x19\xa6\xd5\x23\x87\x43\x7a\xd5\xcb\xdf\x75\x09\x2c\x05\x8e\x56\x04\x52\xaf\xd1\x1e\x14\x4e\x3e\x3a\x76\xa4\xeb\x9d\x76\x09\xa7\xec\x94\xa1\xce\x93\x6c\x10\x96\xb1\xa0\x97\x78\x62\xaa\x20\xd7\x04\xb2\xb0\xc0\x28\x08\x26\x76\x10\xec\xb8\xb6\xca\xd9\x00\xba\x49\x38\x02\xaf\xd2\x36\xe4\xeb\xc0\x43\x98\xff\x48\x75\x05\xfc\xd1\xd8\x27\xca\x86\x1b\x4f\x94\x7f\x84\x4d\x83\x58\x1b\xbf\xbe\xbd\xad\xb0\x75\x22\xdc\xe9\xd8\xca\x5d\x86\x1e\xe9\x76\xac\x75\x88\x8c\x33\xd9\x1c\x85\xe7\x28\x00\xdc\xa4\xcd\xcd\x15\xcb\x89\xe7\xaf\xbd\x3f\x56\xb2\x87\x67\xc8\xab\x83\x85\x3d\x8e\x59\xc1\xca\xfc\x2b\xdd\xb5\x7a\x85\x5e\x0f\x41\xdf\xdd\x1a\xcd\xe6\xc5\x56\x77\x23\x0e\xbb\xb4\x33\x15\x55\xf8\x01\x0f\xb9\x73\x41\xc4\xed\xad\xdd\x7c\x0b\x0b\xcb\xad\xc5\xc5\x03\x4d\x85\xbf\x78\x83\x46\x10\x5e\xdc\x45\xc5\xb0\x74\xbd\x0e\x73\xb9\x1e\xc6\xb1\x75\x82\x47\x4e\xc6\xaa\xfc\x36\x69\x0f\x75\x4a\xd5\x26\x37\xa4\xe1\x4f\x0f\x8a\xc1\xff\x7d\x0d\xa9\x14\x85\x44\x58\xc4\x13\x75\xdc\x3b\x5b\x20\x8c\x9c\x6b\x0e\xbc\xab\x7a\xa1\x2e\xc5\x4e\x4d\x1e\x52\x41\x12\x91\x37\xad\xf8\x16\x88\x63\xd7\xb3\x6b\x89\xeb\x81\xc0\x6e\xb9\x1f\x28\x67\xe5\xbe\x12\xd6\xf8\xc2\x97\x66\xb4\xb2\xeb\xf7\xf0\x2a\x70\xe3\x7f\x8c\x6c\x83\xa3\xd3\x71\x61\xcc\x2d\x45\x89\xb4\x1a\xc6\x5f\x0b\x1b\x1a\x85\x4e\xa3\x2d\x88\x74\x89\x37\x3b\x26\x87\xab\xe2\x14\xf2\xdd\x94\xbc\x59\xc7\xc9\x37\xb2\xe9\x9a\x4d\x33\xab\x14\x04\x31\x8d\x7c\xed\x70\xb0\xdd\x28\xb4\x71\x6e\x23\xf6\x84\x44\x4a\xb8\xa1\x18\xc3\xb7\x2e\xb6\x97\xe7\x0f\xb6\x7a\xeb\x26\xed\x37\x54\x66\x88\x1b\x76\x84\x4f\x42\x49\xa1\x98\x61\x18\x6d\xec\xc6\x28\xa9\x5e\x51\x29\x12\x80\x51\x7e\x73\x42\x66\x07\x29\x9f\xeb\x14\x1d\x8a\x7e\x1c\x1d\x96\x18\x0f\xc4\x72\x4c\xd5\x1a\xe8\x50\x98\xea\x56\x9c\x97\x85\x13\x8e\xf3\xe2\x7d\x55\x84\xff\x46\xad\xe4\x48\x37\x4a\x32\x09\xff\xa5\x67\x82\x7e\x12\xdd\xb9\x50\x01\xc3\x8e\xda\xde\xf6\xd1\xe9\xba\x89\x56\x93\x22\x47\x32\x16\x2e\x1b\x5b\x73\xbe\x51\x43\x10\x27\x79\xd8\xb5\xd4\xb6\x24\x24\x9e\xa5\xb9\x11\x3a\x87\x72\x63\x73\x0a\x95\x16\x89\x2b\xbb\xcf\xb9\x12\x7c\x5d\x0d\xcc\x1e\xea\xda\x28\xa2\xe6\x75\xc7\xd3\xfa\x3e\x0d\x0a\x5f\xd7\x75\x55\xaf\x44\x61\x9e\x0b\x2f\x2a\x07\xc2\x34\x44\x12\x14\x8b\x77\x46\x0a\x36\x7c\x08\x89\x07\x49\xb3\x86\x27\xe5\xc2\x8a\x10\x22\xfa\xec\x99\xe9\xe6\x85\x89\xa2\x0d\xc2\x4b\xc0\x73\x62\x95\x6a\x47\xe1\xf9\xfc\x57\x1c\x03\x68\x39\x9d\x42\x00\x4a\x5f\xc8\x5d\x3e\x81\xf2\x97\xcf\x52\x98\xcc\x9f\x56\x24\x0b\xd3\x87\xc1\x9a\x81\xd6\x93\x60\x22\xbc\x0b\xcb\x72\x30\xdc\xb1\x56\x09\x34\x16\x17\x5b\x71\x12\xdb\x7c\x60\x23\x26\x53\xfe\xea\x54\x13\x84\xb0\xed\x54\x19\x2d\x96\x5a\x91\x35\x69\x2c\x0d\x85\xc2\x59\x43\x8b\x87\x6f\x9c\x4d\x59\x49\x29\xa9\xd8\x50\xaa\x85\x6f\x6a\x30\xd1\x9b\x4a\xd9\xc7\x14\x59\x9e\x9a\x88\x5d\x0c\xf7\xe6\xaa\x9b\xf5\x62\x2d\x77\x8d\x59\x53\x8a\x3b\xc2\x4e\xaa\x3a\x8d\xaa\x20\x47\xe2\x99\x18\x45\x56\x4c\xb7\x13\xc2\xf5\x58\xb4\x91\xd2\xbf\xe8\x14\x1b\x8f\x50\x5a\x51\xd8\x0f\x28\xad\x28\xf4\x07\xaa\x0d\xfd\x7d\xca\xbf\x08\x85\xb9\xef\xde\x42\x06\x0e\x39\x1a\xf8\x8a\x7c\x1d\x28\xf2\xa2\xd3\x9a\x87\xe2\x74\x9d\x71\xa3\xcc\x5f\x28\xa3\x89\x20\x03\x2b\x9f\xaf\xab\x09\xcb\xf9\x72\x92\x47\x69\xd2\x67\x40\xa7\x44\x8f\x0a\x4b\x58\x43\xc5\xd0\x4a\x8a\x9c\x0a\x82\x0d\x45\x1b\x0a\x6c\xb7\x64\x56\x7d\x6e\xa5\x67\xfb\x36\xee\x65\x08\xd7\x35\xfc\x17\xcb\x10\x3e\x09\xd2\xb9\x6f\x2a\xc0\xd2\xc8\x6c\x24\x05\x69\xb2\x2f\x6e\x12\x91\xcf\xe6\xdd\x1a\x76\xc4\xc5\x96\x89\x4d\x94\xac\x28\x5a\x68\x9d\xe4\xfa\xa1\x22\xb6\xcb\x6c\xcf\x60\x0d\x60\x69\x7d\x30\xf6\x00\xb6\x0f\x2a\x99\x95\xb9\xb9\xd6\x4a\x12\xf5\xa8\xea\x86\x45\xfb\xdd\xb1\xd2\xe4\x44\x0a\x47\x78\x0c\xc5\x41\xed\x94\x86\x47\x69\x07\x5e\xa2\x7a\x81\x14\x12\x5c\xd3\xa9\xe9\xae\xae\x9b\x14\xea\x65\x70\x94\x1e\x4c\x21\x68\xbd\x4e\x40\x55\xd8\xe7\x95\x57\xd0\x9e\x5d\x2e\x68\x7a\x38\x14\x42\x66\x14\xe8\x71\x73\xac\xc0\x32\xc7\xc7\x15\x30\xdc\x81\xd2\xbe\xef\x2d\x3f\xeb\x1d\xd5\x25\xf6\x69\xde\xc2\xc6\x00\x78\xfe\x36\x1c\x63\xd1\xf4\xf6\xb1\xd4\x6d\x55\x87\xb8\x3f\x9e\x12\x6d\x57\xbd\xaa\x80\xd8\x21\x13\xb5\x7d\xd2\xf0\x7d\x40\x80\x16\x20\xc1\x77\x19\x95\x25\x01\x88\xd2\x66\x81\xab\x75\x45\xe7\xf6\x39\x9d\x20\x9e\x68\x39\x42\x88\xb3\x6e\x42\xf0\x1a\x1e\x08\xa1\x1b\x9d\x92\x42\x24\x72\x0c\x4e\x6b\xfc\xc8\x58\x65\x23\x8f\xa8\x6c\x36\x97\x6c\xa5\x1d\xaa\xaa\x2f\x38\x34\xab\x2e\xe5\x84\x24\x1e\x90\xfd\x78\x88\xbb\xca\xed\x38\x5f\x09\x56\x17\x16\x5a\x61\xdc\xc7\xd3\x90\xe2\xa6\x57\x65\x0e\x7c\xc0\xf8\xba\xd6\x6b\x29\xb2\x30\xb6\x59\x66\xb3\x47\xcb\x41\x47\x9a\x9e\x21\x00\x22\xd4\x56\xce\x19\xd2\xe5\x47\x68\x9c\x11\xfd\x7e\x08\x33\xcb\x92\xde\xf4\x58\xf0\x17\xee\x69\x1a\xcd\xf3\xe3\xa9\x9e\x36\xc5\x13\xfc\x9b\x63\xaf\xb3\x78\x72\xbc\xb5\xef\x7b\x6e\xae\x65\x90\x4f\x75\xfb\x78\x79\x9f\x83\xf1\xd7\x20\xc4\xa2\x22\x76\xe8\x24\x1c\x90\x27\xf4\x69\xa9\xb3\xaa\x2f\x3f\xbf\x0c\xbb\x85\x30\xf3\x2e\x8e\x3a\xbe\x81\x85\xe6\x98\x39\x4d\xed\x28\x0f\xf3\x30\x29\xb2\x08\x5d\xe8\x8e\xcb\x63\xd1\x4b\xf0\xd4\xb0\xce\x94\x7e\x81\x87\xf5\xd7\xc1\x49\x14\xa0\x7a\xc5\xee\x6e\x38\xb2\xf8\xfb\x1a\x09\x7b\x85\xea\x86\xaa\xa8\xaa\x32\x1e\x2f\x49\x77\xe0\x1e\x64\x4f\xa4\x69\x4a\x91\x0f\xec\x6a\x7b\x0e\xcd\xe6\x44\xe5\x8b\x37\xb5\xa4\x1d\x96\x14\x79\xfb\xbf\xf4\xe9\xb6\x02\xbc\xa5\xe1\x5a\x69\xe1\x3d\x1c\xeb\x08\xfc\x3a\xbe\xa9\x73\x6e\x32\xdb\x4d\x89\x13\xd7\xf7\x7e\xa3\x83\x56\xc0\x9f\x5b\x01\x15\xbd\x06\xb2\x42\x4e\x65\x7e\x69\x59\xf8\x40\x2e\x07\x9a\xee\x7d\xcd\x66\xf9\xd0\xc6\xf9\x5e\x3a\xf1\x5c\x15\x64\xbf\x23\x50\x2b\x97\xe9\xe6\x4d\xf2\x61\x11\x6a\xbe\xae\x44\x97\x80\x72\x67\x5a\x4e\x80\xf7\x85\x4e\x5b\x41\x6d\xb6\xb7\xa7\xb5\x18\x97\xe6\x0f\xf2\xb1\x09\x4e\x05\xf8\x95\xb3\x6d\xd5\xf5\xf3\x1a\x66\x05\x37\x7f\x41\xb3\x22\x55\x57\xda\x1e\x5c\x66\x42\xa3\x91\xf3\xd3\x3d\xe9\xc9\xb7\x2a\xf2\x62\x92\x1f\x0a\x63\xd2\x07\x3f\x84\xc8\x04\xb9\xb1\xdf\xa5\xb1\xe4\x6b\x95\xda\xed\x14\x61\x94\xef\x28\xdd\x3a\xd7\x2e\xb7\xbc\xcf\xe3\xf8\xf7\x4b\x79\x90\x29\x10\x9d\x57\xb7\x2c\xc4\xeb\xbf\xa1\x2c\xd4\xd9\x1a\x9a\x88\x96\x29\x7a\x21\x70\xff\x48\xba\xfe\x39\x0d\x2e\x5f\xd7\x51\x28\x1d\x80\xd6\x74\xd6\xd0\x4a\x67\x1c\xca\x8b\xee\xd9\xa3\x6e\x31\x3c\xfb\x18\x6d\x48\xa7\x33\xe5\x80\x62\x0f\xc6\x9e\x99\xf0\x06\xc6\x1a\x25\x22\xce\x95\xc1\x96\x70\xc2\xc0\xf1\x37\x38\x3c\xef\xa9\xb1\x76\xab\xb8\xe1\x04\xe3\x02\x9e\x3f\xd8\xe1\xc6\xc4\xa3\xe0\xb7\x51\x83\x97\x30\xcd\x54\xc3\x7c\xdd\xb4\xce\x36\xee\xaf\xe5\x3f\x7e\xae\x55\xc4\x91\x35\xd9\x00\xcc\x19\x70\x45\x36\x03\x5a\x5c\xf0\xd5\xde\x18\x4f\x01\x9c\xf6\x7b\xf8\x8c\x56\xda\x88\xbb\x36\x7d\x54\xb5\x7a\xb0\x4a\x0a\xdf\x8c\x7d\x5a\xe4\x14\x79\x25\x9a\x04\x1e\xb1\xd3\x07\x0a\x15\xc3\xc5\x32\x29\x76\x2a\xc1\xf2\x0f\x03\xdf\xac\x71\x9f\x26\x02\xf0\x80\x93\x75\x68\xab\x11\xf3\xdf\xd7\x49\xfd\xf8\x67\xb7\x87\x46\x49\x06\x9c\xa0\xc4\x0d\x5e\xfc\xe3\x98\x73\xd0\xb3\xbc\x18\x76\x22\xdb\xf4\x1d\xa0\x77\x60\x6f\x44\x80\xd9\x47\x66\xb7\x5d\xbd\x3a\x8c\x73\x22\x4c\x20\xfd\x39\x1f\x68\xeb\x80\xe3\x4d\x05\x4e\xbe\x5e\xd5\xd4\x9e\x6f\x8d\x92\xcc\x25\x1b\x10\x68\x9d\xd5\xb8\xaa\xb3\x4a\x3b\xcc\xa6\xdc\x40\x8b\xd0\x94\xe3\x4d\xbe\xf1\x6f\x92\xac\x85\x36\xcf\x76\x60\xed\xa1\x55\xe5\x19\x4a\x50\x69\xd1\x0d\x47\xf9\xe9\x51\x50\xa7\x71\x40\xc2\x68\xfc\x2b\x7c\x39\x7a\x18\x66\x26\x9e\xf3\x77\x44\xb9\xe8\x70\xe4\x43\x0d\xd7\x4a\x5f\x3e\xb5\x97\xc0\x73\x51\x43\x9a\xac\xda\x5d\xf4\x3b\xac\x70\xa4\x95\xbd\x51\x6b\x87\x73\x77\x4b\xb3\x56\xbf\x4f\x3e\xd2\xe6\xe9\x80\x8c\x32\xf6\x26\x7a\x16\x9c\xdc\xd9\xfe\xc5\xcd\xd3\x35\x8a\x90\x8b\x54\x09\x8a\x24\x2e\xe3\xea\x00\xce\x59\x29\x15\x3c\xbd\x55\xc8\x72\xa9\xf5\x73\x4d\x45\x54\x74\x1e\xeb\xdb\xf5\x90\x3b\xd7\xeb\xf7\x6b\x88\x84\x96\x5a\xa3\xc1\x46\x16\x76\xc3\x2c\x6f\x28\x94\xd0\x6b\x2a\x9b\xfc\x5a\xe5\x63\xa8\xf3\x95\x31\xa7\xf4\xc1\x20\x57\xfc\xae\x92\x1a\x7f\x57\x09\x37\xa6\xe1\x4a\x36\xe3\xfb\xda\x36\x03\xff\x4c\x10\xcf\x82\x61\xf9\x7f\xe9\x14\x80\x39\xb8\x5d\x33\x38\x5f\xa5\x86\x9a\x81\x4d\x2d\x2a\x9c\xd8\x07\xdf\x54\x7b\xe2\x9b\x81\x56\x1a\x8b\xf2\x57\x3b\x45\xba\xa2\xc8\xb7\xcf\x6b\x60\xca\x79\x55\x6d\x1d\x84\x2b\x2b\x61\xcc\x36\x17\xd6\xfc\xa4\xb2\xec\x27\x5d\x63\x71\xcf\x0e\x79\xe9\x30\xac\x42\x71\x05\x9f\xd4\x74\x2b\x45\xb7\x6b\xb3\xac\x5f\x44\x3b\xcb\xc7\x83\x51\x61\xe2\x09\x2c\x25\xa6\xb4\x10\x99\x04\x2c\x79\x89\x76\x3d\x39\x00\x1a\xb8\x71\xe6\xde\xa1\x04\x84\x34\xce\xfb\xc4\xc5\xba\x35\xab\xa5\x2f\x4a\x69\x1a\x06\xe0\x93\x2d\xc3\xa6\x6e\x90\x63\xcf\xd7\x64\xbc\x61\x25\xfe\xf7\xb1\xe2\x54\x79\xa0\x10\xfb\x91\x35\xab\x22\x5a\x07\xcf\xf1\xa2\x62\xf3\xb8\x58\x93\xa2\x3c\xd0\x82\x00\x2a\xd6\x10\xa6\xf9\x34\x7d\x86\xaf\xa7\x12\x1e\x69\xba\xf1\x0c\xbc\x17\x06\xad\x8c\x95\xb2\xdf\x45\xec\x1a\xf8\x5b\xe7\x03\x85\x12\x3f\xab\x79\x05\xfe\x80\xc8\xee\x30\x3d\xb7\x29\x0d\x2d\x35\x74\x3a\x10\x71\x28\xdc\xa5\x15\x05\xff\xf0\x28\x76\x28\xbe\xea\x7a\xa0\x8a\x8d\x3f\x0a\xf4\xe0\x03\xab\xc7\xa5\x38\x44\x57\xf0\xe7\xb9\x40\x80\x9b\x3b\x94\x1e\xc7\xe4\xfd\x05\x4d\x97\xa8\x05\x36\x1c\xb3\xe0\x0c\x3c\x47\x57\xf3\x72\x42\xb9\x57\x68\x72\x04\xca\xe5\x8a\x8a\x89\xe7\xe5\x84\x89\xe3\x71\xe1\x9b\x3a\x92\x46\x7b\x68\x04\x0d\xf7\x86\x63\xbb\xde\x0d\x66\x0c\xbe\xa9\x70\x6d\x2f\x2e\x96\x0e\x64\xdc\x73\x0c\x6e\x18\x9d\xb3\x70\x70\xf8\xa6\xae\x99\xc7\x46\x99\xc5\xe6\x2b\x5f\x04\x96\x16\x02\x39\x7c\x5d\x57\xb3\xfa\x9a\x5d\x67\x57\xe6\x00\x17\x0d\xbf\xcd\x83\xcd\x77\x95\xb5\xe4\xca\x86\x43\x62\x9f\xc5\xc6\xe1\x7c\x13\xdf\x28\x69\x1f\x93\x65\xc5\x10\x27\xa4\x0a\x5c\x97\x5c\x53\x92\xa4\x8a\x63\x93\xa6\xc9\xba\xc3\x46\x60\x71\x1d\x57\x8d\x34\xc7\xbd\x74\xc6\x9a\x4d\xcd\x0a\x0b\x97\x8b\x4e\x34\xcd\x03\x0c\xdb\x43\x98\x57\xb8\xca\xd7\x2b\x91\xe4\xfe\xc5\xf2\x7f\x57\xb3\x9c\x29\xc9\x35\x65\x0b\xc3\x92\xf8\x46\xd5\xbf\x52\xbb\x66\xe3\x02\x33\x22\x40\xe1\x9b\xf8\x1d\xbe\x71\xd0\x0d\x1b\xd9\x15\x13\x43\x54\x1e\x16\x62\x16\x61\x8c\x3b\x21\x9d\xab\x79\xaf\x4e\x48\x38\x4b\xa2\xb0\x1b\xe6\x80\x08\x4a\x33\x99\xee\x2c\x53\x09\xfe\xd8\xae\xc1\x75\x12\x5c\xc8\x36\x8a\x8b\x5c\x52\xa1\xfc\x14\xbc\x96\x7f\x86\x87\x85\x29\x79\x52\x85\xdd\xcc\x8b\x80\x75\xb5\x1d\x48\x21\x4d\x92\xc8\x65\x9d\xb1\xaa\x0e\x9f\x50\xf4\x3e\xdf\x0f\xbc\xb4\x87\xe8\x29\xec\x54\x2c\x5e\xe7\x69\x57\xc9\xb5\x02\xcc\x9d\xd4\x1c\xdb\x0f\x03\x45\x60\x79\x47\x79\x76\xb7\x95\x8d\x3f\xea\x30\xe6\xc3\x24\xce\x07\x4c\x4a\x0e\x1f\x0e\xef\x2d\xed\xa6\x8a\xcc\xf7\xae\xea\xd9\xca\x92\x78\x03\x34\xd5\xce\xd3\xff\xc2\xcb\xce\xd3\xa7\x0f\x21\x35\xf3\x3f\xf0\x16\x70\x00\x15\x97\x58\xfc\xb8\x56\x21\xcd\x0c\xb7\xa8\xb9\x2a\xfe\x92\x73\x35\x58\x83\x56\x16\x0e\x47\x11\xdc\x3a\x17\x9f\x95\x46\x11\xa6\xeb\x7d\x24\x6d\x90\x4c\xba\x5f\xa7\x11\xd0\x29\xfa\x7d\xa6\x66\x13\xe1\x02\x5f\xb0\xa8\xa2\xe5\x41\x1c\x52\xb0\x3e\x0b\x8b\xdd\x05\x5e\xcb\xa0\xca\x14\xeb\xba\x7a\x07\x76\x07\x0e\x02\xa7\xe2\xae\xd8\x58\x1a\x8e\x5f\x0b\xed\x1b\xe4\xde\x9c\x7d\xa6\xad\xf4\x81\xd9\x5f\x45\x1d\xde\xab\x35\x0f\x4d\xbc\x1a\xc6\x3d\xa5\xb4\x04\xb5\x59\x01\x58\x38\xbc\xd4\x20\x0d\x63\xb0\x5f\x22\xfb\x74\x2f\xf0\xfd\xc1\xf7\xea\x38\xa7\x47\x69\x32\x24\xf1\x0a\xe4\x99\x58\x94\x5e\xd5\xe1\x91\xe5\x43\xe3\xc8\x85\x3a\x58\x7b\x36\x4a\x2d\x12\x90\x38\x1a\xdf\x51\x2c\x5c\xef\xb8\x34\xa5\xc9\xba\x66\xc4\xc6\x63\xea\x55\xf9\xa6\xa6\xd1\x6c\xa9\xd5\x0f\xa3\x2d\x6c\xd8\x47\x15\xe8\xb2\x5c\xe0\x1e\xd5\x98\xf6\x1e\x6d\x38\x16\xcc\x3f\xa1\xbd\x88\xd2\xed\x61\x1c\x8d\x38\x0c\x4f\x21\x2b\x82\xc3\xe4\x5d\x05\xbf\xe2\x22\x0a\xf2\xa6\x7f\x80\x47\x93\x62\xa4\xcf\xb0\x08\x79\x89\xd4\x2c\x3d\xff\xfe\xe1\x3a\x19\x75\x3a\x5e\x4c\xc7\xd5\xa6\x98\xdb\x24\x50\xe5\xd8\x6a\x0b\xd2\xf2\xbe\x56\x6a\x09\x69\xd5\x54\x9b\x8f\x85\xe1\x24\xd5\xdd\x70\x0c\xb2\xaf\x29\xb1\xa0\x41\x18\x45\x60\x0a\x2d\xdf\x18\x4e\xd1\x29\x64\xe7\x30\xcc\x48\x82\xc3\xc3\xff\x2d\x1c\x02\x00\xb8\xdf\xad\x1c\xc6\x0b\x0b\xc4\xc9\x3c\xec\x44\x1b\x33\xbe\xcf\x84\xc1\x44\xf2\xd5\xe5\xfb\xeb\xce\x4b\xa6\x40\x73\xeb\xb6\x67\x36\xf2\x90\x49\x83\x00\x9f\x00\x64\x8a\xaf\xc7\x9f\x76\x8f\xbe\x16\xf6\x6c\xd2\x2d\x7f\x31\xcf\x59\x97\x10\x96\x78\x93\x3e\x20\xef\xaa\xf8\xfe\xef\x2a\x0d\xd9\x91\x4d\xb3\xc2\xf4\xd8\x6f\x70\xf4\x8b\xbe\xd9\xf8\xa2\x33\x86\xbd\x30\x22\x41\x00\x07\xfb\xbb\x44\xe6\x59\xfa\xcc\x24\x9c\x2c\xe2\xb0\xcf\x18\xde\x86\x07\x9c\x33\xaa\x5a\x66\xa1\x26\xfc\x38\xd0\x0a\x63\x92\x4c\x97\x93\x52\xba\x14\x54\x6a\xf1\x74\x1d\x8d\x7b\x6a\x3b\x26\x17\x1f\x06\xe3\x78\x0f\x07\x00\xdf\x54\x7e\x6d\x79\x5f\x19\xf4\xda\x95\xd4\x38\x36\x49\x07\x21\x59\x58\xd8\x9c\x6d\x2b\x1a\x84\x33\x75\x65\xf8\xa4\x93\x75\x8b\x14\x63\x21\x3e\x59\xf9\xae\xe2\xac\xf9\xb8\x31\xb5\x99\xcd\x81\x11\x11\x62\x03\xd5\xcc\x7a\x51\xa1\xbc\x99\xda\x16\x2e\xc1\x0f\x2b\xa9\x82\xfd\x8b\xad\x6c\x58\x4c\x71\xc3\xfe\xba\xae\xa6\xfd\x7a\x8d\x58\xde\x52\xab\x63\xb3\xbc\x49\xb9\x3a\xc4\xa3\xa7\x50\xed\xe2\x96\x61\x95\x18\x3a\x13\xb8\xee\x65\x6b\xd2\x47\x68\x2c\xdd\x2c\x3b\xaa\xf0\xcf\x62\x64\x60\xd3\x80\xb7\xe1\x0e\x15\x38\xb8\x82\x42\x55\x02\x62\xaf\xd3\x22\xc1\x96\xe5\x64\x04\x56\xe1\x6d\x25\xc1\xbf\x67\x52\x27\x34\x6a\x78\x84\x61\x41\xb0\x9c\xf9\x7a\x2a\x88\x30\x66\xa5\xc1\xa0\xf9\xf2\xb9\x37\x2f\x07\x8f\x79\xc5\xc7\x64\x7d\x07\x3d\xf3\x94\x8e\x34\x60\x31\xc7\x54\xc3\xd4\x99\x40\x29\x52\xa1\x58\xeb\x82\x4a\x97\xd7\xfa\xff\x54\xbe\x90\x5c\x3b\x12\xab\xc7\xf8\x5d\xd7\x7a\xe0\xb7\xd0\x9e\x80\x30\xe6\x11\x24\x8a\x10\x75\x7d\x03\x45\x13\x9c\x2b\x57\x14\xe1\xf8\x89\xb1\x27\x87\xb8\x4d\xf5\x02\x27\x41\xb3\xb8\xc8\xb6\x86\xcb\xcb\x52\x5a\x57\xfa\x24\xdf\xd0\x88\xe7\x0e\xbb\xd9\xc8\x65\x5d\x51\x50\xcb\x2b\x75\x89\xf6\xf5\x41\x98\xe7\xae\x10\xc9\xa8\xe2\xb1\x62\xea\xbb\xa1\xaa\xa7\xa3\x22\x7f\x8c\xcc\x22\x3c\x08\x00\x0b\xb8\x2e\x4a\x81\x10\x5c\xba\x99\x89\xe6\x18\x52\xde\xf5\xe5\x29\x76\x32\xac\x66\xee\x0e\x21\x3f\x01\xd7\x97\x01\x85\x80\x57\xfb\x9a\xa6\xc7\xb8\x84\xf1\x83\x03\x36\xd3\x56\x5c\xce\xd7\x54\x3b\x72\x6c\x57\x12\x4a\x69\xc5\x2b\xb3\xde\x08\x5e\x9f\xee\xec\x50\xc4\x34\xd7\x75\x52\xf7\xba\x02\xb9\xbc\x51\x5b\xa3\x8e\x4c\x11\x43\x28\xcf\xab\x8f\x5c\xd3\xec\x95\xd7\xc6\xc2\xce\x1f\x99\x78\xa5\x08\x33\xf7\xc7\xf0\x49\x59\xbe\x93\x6f\x2a\x8e\xdb\xc2\x42\x6b\xc0\x1c\xbf\x0e\x7a\x0e\xaa\x79\xc1\x73\xd5\x11\xee\x9b\x9c\x94\x81\xb4\xbe\xf1\x39\xa5\x34\x74\x6e\x0a\x0c\xdc\x4b\x56\x1a\x2a\x7a\xe1\x07\xe2\x1b\xe7\x7b\xf4\x8b\xaf\x85\xd9\xac\x87\xcc\x31\x8a\x91\xa6\xef\xbf\xdc\x4b\x58\x30\xe0\xf9\xa4\xf3\x09\x7c\x80\x3f\x05\x27\x93\xa5\xd3\xc6\xbb\xf8\xdb\x5e\x55\x59\x89\x89\x42\xc9\x5e\x09\xa6\xe4\x97\xb4\x80\x92\xca\xc2\x5c\xfe\x44\xb5\xc5\x6e\x12\xf7\x6d\x6a\xe3\xae\x55\x85\xe5\x07\xf8\x2c\xdf\x28\x1d\xdb\x6c\x64\xbb\x74\x42\x39\x1d\x5b\x95\x45\x9c\x77\xc2\x41\x2a\x7d\x44\x05\x19\x93\x6e\xec\xd4\x6a\x0c\x1a\x25\xfa\xf4\xc4\x1f\x74\xb3\x94\xa4\x54\x58\x68\x1e\xae\x6f\x8c\xc9\xda\x22\xd8\xfd\xb1\xe6\x99\xd8\xde\x56\xbd\x5e\x03\x6b\xd3\x19\xef\x5c\x5d\xc2\x8e\xc7\x26\xe7\xf0\x4e\xf3\xe5\xa1\xce\x72\xb2\x12\x7b\xce\x1f\x6c\x0d\x6d\x9e\x26\xa3\x24\x0a\x73\x86\x60\xd4\x32\x8f\xd7\xd8\xdd\x1e\x75\xa4\xbb\xb6\x6f\xd0\x90\x89\x5a\x95\xea\xe9\x29\x58\x53\x12\x01\xd4\xa6\x82\x18\x6d\x56\x76\x8d\x87\x00\x77\x10\x1b\x08\xb4\x9d\x1e\x46\xb0\xed\x35\x3c\x8f\xd9\x20\x19\x8d\x64\x27\xa8\xe2\xa8\x68\xe7\xdc\x53\xc9\xc5\xb5\x24\xcb\x14\x88\x85\x29\xb7\xf8\xa6\xf2\xe5\x8b\x8b\x07\x5a\x5d\x02\xb4\xf0\xd6\xc4\x72\xbd\x8d\x7d\xcc\x37\x75\xc5\x8b\x7e\x9a\xe4\x03\xbc\x05\xca\xdd\x80\x25\xf2\x75\x1d\x07\x24\xa7\x00\x13\x16\xe2\x12\xbd\x71\x3f\xc6\x97\x82\x3d\x4a\x10\x3d\x83\xdf\x28\x1d\x48\x8a\x7e\x81\xe9\xc6\x60\xc1\x3e\x86\x91\xe4\x1b\x35\x33\x4b\xcb\xff\x18\xd8\x60\x1c\x32\x37\x03\xb5\x37\x9f\x3f\x4a\x28\x07\xe1\xa2\xd9\x33\xc5\xac\xfe\xa4\x96\x0e\x3e\x0d\x4b\xcb\x2c\x79\x94\xa7\x62\xee\x5b\x3a\x1d\x45\x0f\xd5\x63\x4f\x98\xca\x02\x6e\xe3\xdd\xb1\x07\xb5\x9e\x84\xcb\x83\x08\xe9\x8f\x02\x45\xc2\x04\xae\x43\x1c\x6e\xac\x0d\xe2\xd8\x47\x1d\xe2\xed\x07\xf4\xc4\x4e\x04\xb9\x1c\x41\xfe\xaa\xb1\xa2\x23\xfe\x37\x63\x05\x98\xbb\xe5\x9c\xd6\x15\x6b\x52\xf6\xf1\x36\x6f\x2b\x74\xe5\x09\x4d\xe0\x7c\xb6\x9e\x58\xd9\xf4\x58\x03\x5e\xba\xaf\x15\x9d\xac\xae\x2b\x85\x69\xb7\x40\x98\xe2\x58\xfc\xca\x37\x91\x36\xf9\xc7\x14\x86\x3f\x79\x4a\x01\x28\xf8\x90\x85\x6f\x81\x83\x11\xd3\x0c\xca\x4c\x04\xec\xbb\xa9\x96\xe6\x52\x19\x4b\x2f\x1e\xd8\xbc\xac\x18\x09\x4e\x04\x0a\x84\x7b\x6f\x3c\x9d\xb8\x5f\xde\xb7\xb9\x49\xf5\x27\xa4\x50\x1e\x20\x4f\x23\xf6\x8b\xe6\x01\xa5\x91\xbd\x4c\xdc\x04\xd3\xf2\xa4\xd7\xa2\xd8\xf3\xd4\x44\xa3\x4a\xc6\xd3\xda\x27\xcf\x7f\x85\xd7\xef\x15\x95\x88\x0b\xe3\x32\x04\x6b\xaa\x68\xe7\xd8\x14\x40\x89\x9e\x81\xb1\xa5\x95\xd8\xb5\xf4\xcc\x87\x23\x88\x5f\xbe\xb4\xcf\x37\x57\x3b\x86\x97\x0b\x63\x0f\x31\x4b\xd6\x6c\x9a\x0f\x52\x91\x0e\x67\x28\x7f\xe0\x53\x4e\x55\x12\xb1\xf9\x83\xad\x0e\x61\x07\xc9\x2f\x2e\x5d\x61\x24\x6b\xb9\x0d\x4e\x53\x83\x21\xd2\xbd\x36\xe5\x69\x46\xdd\x41\xc3\x17\x6d\x41\xd5\xc5\xd7\x95\x25\xf4\xec\xb3\x2d\x1b\x27\xc5\xca\x40\x77\xcb\xd3\xb2\x46\x14\x89\xb6\x25\xa1\xa4\xf1\x0d\xa0\x33\xea\x38\xc8\x4c\x9c\x9b\x59\x7a\x34\x84\xe7\x77\xc8\x33\x54\x59\x2e\xdf\x07\x4c\xe3\x8a\xf7\x6e\x12\xe4\x86\xff\x2a\xd8\xc2\xdd\x37\x7f\xb0\xf5\xf9\x27\x68\xd1\xb8\x90\xdd\x13\x83\xfe\x85\x4e\x73\x3f\x1c\x2b\xa2\xb7\x9c\x28\x4e\x39\x2f\x87\x3d\x2c\xe0\x8d\xf2\x9d\xe0\x38\xdf\x56\xc5\x01\x56\x6e\x71\x44\xc4\xcb\xfb\x36\xdf\x19\x2b\x35\xcf\xab\x94\x14\x53\x2c\x07\x52\xdb\xf8\x66\xa0\x21\xd8\xb7\x60\x3c\xe0\x64\x7f\x47\xab\x1e\x15\x29\x9a\x31\xf0\xd7\x78\xe4\x53\x7a\xeb\x9d\x0a\x7c\xd5\xb1\x17\x66\x5d\xfe\x4b\x09\xa1\xe9\x2f\x25\xb6\x16\x88\x72\xb6\x1a\x7e\x62\xcb\x74\x9d\x7e\x75\x94\x98\x18\xb5\x22\xe6\xfa\x0a\xbc\x5b\x70\xa1\xc2\xad\xc9\xaa\x9b\x4d\x5f\xdd\xfa\x00\x63\x8c\x4a\xc6\x35\xfa\x39\xac\xc8\xd3\xaa\xaa\xb3\x62\x63\x9b\x26\x05\x04\x61\x61\x2d\x41\x90\xcc\xd7\xae\x26\x95\x8d\x6c\x14\xd1\xce\xc1\x86\xfd\x90\x56\x28\x5f\x2b\xe9\x55\xc4\xd9\xd6\xd2\xc1\x3a\x7f\x90\x93\xdb\x20\x68\xe6\xeb\x3a\x31\xc2\x51\x11\xf9\xb4\x92\xb8\xd1\x0d\xd5\x39\xfd\x98\xda\x2b\xaf\x10\x5f\x37\x8c\xf3\x03\x25\xc1\xf7\x7e\xa0\xf8\xed\xbf\x05\x0f\x49\x80\x95\xb4\xac\xe0\xf5\x6f\x63\x93\x04\xc7\x13\xba\xcb\x8a\xdb\x73\x9e\x2d\xcf\x43\x22\xaf\x45\xa0\xff\x5d\x7a\x5b\xfc\x0a\x73\x50\xd1\xaa\x7c\x6b\xef\xc4\x53\x37\xd9\x08\x52\xbc\x18\x26\x57\xdc\x29\x9f\x42\x72\x82\xba\xa9\xba\x6f\x51\x0e\x75\x5d\xc3\x81\xc7\x29\x57\x59\xa2\xf7\x2f\x32\xa9\x4f\xfe\xd7\x8a\x37\xd5\xa0\x7e\x5c\x3d\xb3\x34\xaa\x38\x5b\xcf\xd0\x74\xf0\xb5\x2a\x11\xf4\xc3\x9e\x8d\xc2\x7c\x03\x26\x56\x0c\x88\xea\xc1\xf9\xe1\x58\xf3\x10\x5d\x53\x1f\x4d\xd2\x1e\xf1\x33\xcf\x34\x5c\x0c\xc5\xc4\xe8\x4e\xe4\xd9\x8d\x20\x90\x41\xa2\xa3\x24\x2b\x6c\x3d\x5c\xb3\x42\xc5\x81\x88\xee\xb0\x86\x14\x5e\x83\x83\x82\x7f\xf9\x15\x3a\xd2\x44\xca\xc2\xdb\x6d\xdf\x11\x09\xea\x58\x47\xac\xe4\xfa\x20\x1e\xaa\x82\x21\x20\xa7\xc8\x97\x6c\x9b\xf8\x42\xed\xa8\xe8\x44\x61\x36\x20\x9d\xeb\x4d\x8e\x5f\x60\xaa\x4e\x07\x2a\xd4\xfa\x41\xc5\x21\xdb\xbf\xd8\x5a\x0b\x13\x08\x78\x62\x8e\x04\xec\xde\x70\x14\x68\x47\xb4\xbe\x71\x41\x7a\x09\xc4\x77\xce\x0c\xa3\xb0\x92\xb0\xe3\xe7\x14\x9c\xff\xc2\xb8\x31\x7f\x70\x13\x22\xdf\xd2\x44\xd0\x5c\x02\x00\x40\x71\x32\xc1\xa4\xf1\xc7\x03\x35\x8d\xaf\xab\x9f\xed\x26\xc3\x51\x64\x0f\xa9\xf3\xe6\x9e\xae\xe8\x28\x64\xd7\xa8\x88\xc3\x6c\x30\xb4\x71\xde\x54\x0c\xd6\x27\xc7\x0a\x38\x07\xde\x7f\xfc\xfc\x9d\x60\x6b\xb7\x6e\xb9\xfe\xfa\x49\x6a\x87\x40\xaa\x8a\x43\x0c\x3b\x0e\xbe\x31\xbe\xae\xa4\xd2\x16\x16\xa4\xe0\x2b\x18\x7e\xee\x45\x0a\x7c\x6b\xcc\x61\xd8\x05\xfa\xfb\xd5\xb0\xd7\x54\xb4\xfa\x77\x03\x0d\x2e\xe2\x13\x0d\x39\x80\xd3\xaa\x1b\x78\x34\x48\x4d\xc6\x42\x8d\x4c\x76\x43\x4e\xa8\x10\xdf\x6c\xb5\xcc\x07\x5f\x6c\xf5\xa3\xc4\xa0\xfb\xd7\x79\xad\xca\x21\x55\x61\x4c\xd8\xa5\xfe\x70\x1c\xbe\x3f\x09\x3f\x00\x6b\x96\x33\x2c\x88\x08\x6f\x8d\xb7\x70\x9f\xb8\x83\x6e\x76\xa2\x02\xe9\xf7\xd4\x0c\x76\x6c\xf8\x35\x5e\x63\x8b\x7e\xb6\xcb\x75\x2a\x2b\xc7\x83\x48\x57\x36\x86\x31\x44\x5b\x67\xb4\x75\xc3\x76\x82\x01\x3f\x81\x43\x12\xa7\xe7\x9b\x63\x4f\x7c\x7e\x71\xfc\xa9\x2a\x10\x64\xfe\xe0\x13\xe5\xfe\x45\x0a\xea\x2e\x0c\x1c\x20\x49\x5c\x17\xc7\xf6\x80\x4f\xec\xb8\xb8\x97\x1c\xf4\x8f\xed\x82\xd4\x44\x3d\x84\x78\x13\xaf\x20\x80\x75\xda\x09\x30\xcc\xcc\xef\x81\x2f\xdb\x3e\xa1\xf0\x01\x03\x7e\x74\xec\xd1\xd3\x77\xc6\xca\x44\x1c\xa7\x00\x00\x1b\x9d\x29\x6a\x05\x1a\xbb\x47\xb1\x61\x86\xd9\x33\x18\x7d\xd7\x70\xfc\xf2\xf2\x3e\xf6\x39\xfe\x6f\xbc\x8e\x60\x17\xe8\x3b\xb0\x2e\xee\x92\x05\x83\x1b\x0d\x44\x1b\xec\xf6\x39\x8c\x06\xbe\x8b\x55\x86\x85\xa5\xb9\xe1\xc8\xc3\x81\x77\x44\x76\xf0\x31\x2c\x0b\xcc\xc3\x8f\x03\xcf\x65\xfa\xdd\x27\x41\x3f\x03\xc7\x71\x0f\x31\x33\xe0\xc8\x7b\x1f\x53\x87\x1a\x07\xa8\x76\xb0\xc8\x9f\x40\x1d\x14\x08\x9d\xab\xe0\xaa\x73\x71\x83\xef\x3e\x98\x99\x94\x43\x86\x7f\xb8\x87\x5c\x06\x4e\xb9\x99\x0a\xaf\xd5\xdc\x5c\xab\x53\x9e\xcc\x22\xb7\x8a\x11\xbc\xa1\x80\xc6\x37\x54\xa9\x63\x64\xd3\xae\x0d\xd7\x2c\x6c\x05\xdc\xbe\x43\x54\x55\x93\x4e\x55\x95\x68\xaa\xa4\xa6\xa0\x41\x3d\x94\x74\xbb\x38\xc2\x34\x3c\xe2\x09\xd7\x50\xb5\xb3\x48\xb0\x28\xbf\xc9\x69\xa3\xd4\x61\x2f\x29\x51\xa9\x51\x9a\xf4\x93\x22\xa6\xf0\xcb\x91\xc1\x1c\xc7\x20\xf0\x8d\x2b\xd2\xe7\x49\xd1\x1d\x4c\x77\xaf\xa0\xa9\x91\xaf\x27\x9f\x52\xb5\xf5\x6e\x1e\x46\x61\x6c\x4d\xaa\x3b\x64\xfe\x74\xac\x84\x91\xff\xb4\x8a\x6e\x9b\x6b\x0d\x2c\x55\x48\x14\x9a\xe2\x8e\xd6\x3e\xbc\xa3\x4a\xd3\x24\x07\x92\x84\xc8\x43\xc0\x35\x7f\x7c\xa2\xfc\xf4\xc7\xdb\x35\x3d\x02\x79\x18\xaf\x42\x37\xa1\x7c\x70\x21\x51\x52\x40\xcb\x32\x88\xf4\x56\x25\x07\x07\x8d\x13\xbd\xd8\xef\x45\x2f\x34\xec\x68\x64\xd3\x2c\x89\xc3\xee\x54\xb7\x32\x6d\x64\xe9\x5c\xae\x6d\xa0\x17\x3d\x90\x8d\x86\xe2\x2f\x44\xe0\x22\xa5\x1e\x8f\x40\x36\xfd\x34\xec\x9a\x78\xc6\xa3\xbd\x1e\xc1\x7e\xc2\x86\x38\xa3\x8a\xa8\x17\xb4\xae\xd3\xae\x49\x0d\x25\x7b\x4e\x4d\x2a\x0d\xc7\xea\x08\x93\xcd\xd7\x2a\xf5\x6e\xf2\x3c\xec\xaa\x56\xb7\x7b\xd3\x92\x8f\xe5\x4f\xf2\xb6\x73\xe5\xb4\x7e\x19\xf4\x95\x9e\x5c\x19\xea\xc0\x54\x80\xe5\x94\xaf\xa7\xa3\xbc\x3c\x7b\xa4\xe1\xec\x0b\xbe\x50\x68\xe8\x15\x75\xca\xfd\xc0\xcb\x54\x62\x16\x38\x52\x22\xb7\x07\xb9\x8b\xcb\x5a\x68\xec\x3e\x7c\x7d\x98\x81\x25\x1a\x51\xe4\xef\xee\x6b\x12\xe6\x28\x01\x19\x07\x22\x9e\xb3\x2a\x62\xfc\x2d\x6c\x33\x64\x75\xce\x2a\x1e\x20\x34\x2f\x8b\xc2\x90\x84\x48\x59\x77\x60\x7b\x85\x77\xd8\x1d\xad\xf7\xe2\xa2\xeb\x12\x79\x52\x0f\xaa\x1d\x8e\x38\x7b\xcc\xbf\x4d\x23\x24\xcf\xb1\xf5\xe4\x3f\xf8\x62\x19\xea\x87\x6b\x61\xaf\x60\x67\x1a\xce\xd1\x7d\xd5\xe6\x7d\x5f\xe1\x93\xcd\x7f\xe2\x15\x00\x9a\x20\xba\xa7\x33\xf7\x7b\x4f\x11\x28\x0d\x51\xcf\x93\x93\xc6\x2f\x48\x1b\xea\x31\xc2\x72\x89\xf2\x21\x8d\x23\xca\xd7\xcc\xdb\x02\x07\xeb\x01\xf0\xee\x48\x53\x5d\x0f\x3c\x42\x94\x43\x41\x14\x07\x1e\x9f\x00\x5c\xc0\x7f\x36\xf6\x78\x8c\x73\x01\x95\xc7\x70\xfc\xff\x01\xd2\x4b\x18\xd5\x9b\x81\x62\xb5\xda\xd3\xf6\xe6\xf8\xfd\xb1\x22\xf2\xd8\xdd\xd6\xb2\x28\x8f\x4d\x68\x85\x39\x8a\x84\xd2\xb8\x23\xe1\xbd\x9d\xb2\xe5\x08\xd8\x1e\x69\x2b\x9d\xf0\x47\x29\xdb\x42\x13\xf2\x33\x3f\x35\x51\xdb\x73\xac\xf4\x9f\xef\xe2\x68\xc6\x5e\xf8\x74\x5b\x49\x15\xbc\x8d\xc3\x4c\xd2\x18\xbe\xbf\x7a\x47\xdb\xfb\x4f\x20\x9e\xdd\xe9\x61\x14\x08\x6c\x5d\xb6\x69\x6e\xde\x71\x27\x95\xaf\x29\xda\x02\xe5\x84\xf1\xb5\x26\x33\x3d\xa7\x31\xfa\x9a\xec\xce\x94\x66\x8c\x6c\x18\x13\x24\xd1\x11\x24\x64\x49\x3e\xad\x91\x27\xc3\x21\x4c\xbb\xa8\x53\x7b\x0c\xd3\xf9\x4a\xbd\x95\x30\xa6\x3d\xdb\x91\x56\x90\x3a\x41\x9c\xbd\xba\xe5\x82\x83\xd4\x72\x85\xb9\x5c\xb9\xa7\x77\x52\x7b\xcd\xf6\x36\x1e\xf5\x9a\x9c\xc7\xd8\xc3\xd3\x19\x48\xe4\xa9\x58\x1a\x94\x67\x35\x50\x5d\x53\xdc\x20\x8e\x9c\xe7\x7d\x1a\x3c\xb6\x7c\x63\x8f\x35\xdd\xdb\x56\x1c\x1a\xef\x8c\x55\x99\xf7\x54\xa5\xcc\x3b\x37\xd7\xca\x6c\x4e\x85\x12\x1c\xf7\xdc\x05\x25\xca\x8b\xf4\x61\xd8\x1c\x50\x24\x73\x7d\x5f\xeb\xc4\xdd\xad\x18\xf6\xe5\x7d\x07\xca\x73\x9f\xba\x21\xf8\xa8\x14\xda\x2a\x5a\xe3\x7c\x53\x27\xe1\x6d\xca\x18\x04\x03\x23\xd9\x6e\x1a\x0c\x49\x77\x6b\x76\xe7\x68\x68\x7b\x33\xbe\x04\xb3\x7d\x42\x5f\xce\x37\x6d\x95\x3b\x3c\xa6\x74\x93\x8f\x55\x2c\xcb\xc2\x42\x2b\x32\xdd\xd5\xa8\xc8\xf2\x72\x39\x39\x44\xe5\x71\x95\x1e\x39\xae\x78\xf8\xd7\x07\x61\x9a\x4a\xf7\x33\x2c\x1b\xd6\xb7\xb4\xdf\xeb\x8e\x8d\x4a\x4e\xe6\xa5\x7d\x2f\xb4\x42\xe1\xd0\x81\xd3\x70\x41\xc1\xfc\x2f\xb8\x4e\xc0\xaf\x15\xbd\x15\x27\xb3\x8d\xe2\x36\x74\x2e\xf9\x5a\x77\x2f\x86\x91\xc9\x14\x76\xe3\x5d\xda\x62\xc2\x29\xad\x50\xe5\xa6\x74\x89\x7c\xcf\xe7\x25\x6c\x73\xd1\x52\xf1\xe0\x24\x6b\x65\xf5\x3b\x5a\xf6\x45\x47\xd1\xee\x85\xd4\x6d\x96\x87\x6b\x06\x42\xea\x4c\xf2\x4d\x4f\x28\x84\xdf\xd5\x56\xb9\x9e\x5d\x0b\xa3\x2d\xd2\x29\x0d\x47\xe2\x59\x6d\x27\x7d\x69\xdf\x7c\xab\x0f\xfe\x14\x25\x7b\x70\x33\x50\x99\xec\x9b\x4e\xc4\x37\x4f\x4d\x9c\x99\x2e\xe0\x8f\x4a\xb5\xe4\xbd\x40\xc3\x18\xde\xab\x2c\x80\xf2\x47\x7a\x61\x96\x17\x69\x47\xdc\x2e\xa6\x26\x0e\x3c\x0d\xda\x39\x45\x57\x52\xc4\xdd\x64\x8d\x71\x6a\x22\x49\x42\xdb\x46\x14\x7a\x7c\xfe\xa7\x9f\x24\x39\xa1\x7d\x1a\xbe\x76\x7f\x92\xec\x03\x5f\x57\x1c\xc0\xf9\x83\xad\x28\xcc\xf3\xc8\x92\x97\x03\x37\xf1\x5d\x85\xad\xd9\x33\x71\xe9\xe9\xff\x66\x2f\xe1\x1a\x37\x2f\x2b\x6f\x65\x60\xe3\x74\x83\x77\x90\xea\xe1\x73\x0d\x7d\x81\x0f\x74\x56\x92\xd8\xee\xf0\xad\x5e\x37\x03\x4d\xd7\x04\xfa\x43\xfe\x17\x9c\x2c\xc8\x09\xdf\x1a\x4f\x55\xf7\x7c\x1f\xca\x2d\xc5\x43\x27\x38\x1f\x5a\x94\x98\xa7\x8b\xba\xfc\x50\x0f\x23\x5b\x0d\x73\xd3\x03\x75\x9f\xe0\xd1\x15\x91\xc9\xa5\x4a\x6a\xe5\xb9\x56\xd7\x46\xb6\x93\x7a\x3c\x8e\x10\xde\x28\xb8\xfb\x39\xaf\x83\x9d\xc4\x36\x93\x44\x96\x30\x6e\xf8\xea\xe0\x8e\xb6\x2f\xbe\x6c\xab\x08\x50\x97\x41\x6e\x96\xdb\xd1\x48\x96\x08\x7c\xa9\xf7\x02\xd5\x80\xf6\x5e\x65\xb7\x1f\x7c\xb1\x35\xf8\xdc\xca\xe7\x68\xa5\x20\xe6\xe3\x06\x14\xbe\xa9\xa0\x68\x4a\x13\xd8\x29\x32\x54\x44\xa5\xb1\xbf\xe1\xc4\x88\xa6\x99\x1c\x23\xa6\xae\xe2\xda\x01\xd6\xa0\x23\x39\x2d\xdf\x12\x9e\xdc\xdb\x53\xb4\x7f\x89\x19\x2a\x1b\x00\xdb\x28\x64\x5e\x35\x44\x25\x6b\xa1\xcd\x63\xfe\xc8\x94\x5c\xa4\x08\x49\xfa\x27\x32\x2b\xb6\x87\x7c\x82\x93\xb0\x71\xa5\x3b\x3e\x58\x84\x93\x42\x51\x7e\x54\x99\x47\xe6\x0f\xb6\xba\x03\x33\xca\xf9\x74\x97\x96\x5c\xb5\x8c\x8f\xb8\x0c\xe1\x4a\x6a\xd6\x40\x13\x81\x50\xed\xb7\xf1\x3b\x0e\x7f\xa3\x91\xb9\x1e\xda\x72\x53\x09\xfe\x7d\xab\x0e\xdf\x6e\x7a\xf6\xeb\x85\x61\xfc\x19\x53\xdb\x06\x1e\x1a\xf8\xae\x5b\x54\xa3\xd4\x76\xc3\xcc\x12\x8f\x02\xf2\x00\x4f\xd3\x06\x95\x76\x23\xd7\xf0\xbd\xf8\x4c\xbb\xe6\xe4\xb1\x45\x9a\xf4\x92\xc8\x09\x06\x23\x1b\x72\x77\x4a\x01\x44\x97\x11\x3f\x49\x33\xb4\x97\x14\xd4\x89\xb5\x2c\x68\x17\x70\x70\xe3\x30\xdc\x36\x51\xa0\xb6\x5f\xf5\xc2\x23\x26\xee\x85\x90\xeb\x84\x69\x6c\x50\x24\x8b\x1a\xdd\xdd\xb1\x0a\x0b\x8e\x2a\xb7\xab\x13\x82\x60\xaf\x74\x83\x31\xe4\x10\xd5\xc1\x26\xba\x43\x05\x40\xd9\x0e\x8a\x50\xbf\x88\x7b\x66\x4a\xd8\xf7\x03\x15\x39\x7d\xe0\xe0\x60\x51\x92\xac\xa2\x67\x0e\xce\xcc\xe6\x58\xf5\xcc\x9d\x55\x98\x86\x5b\x64\x44\x51\x3d\xb8\xa0\x70\x22\xdf\xb8\x47\xee\x22\x92\x47\x24\xe1\xeb\x58\x11\x7c\x2b\xec\x2f\x7d\x0a\xfd\xd2\x48\xc1\x83\x29\x0a\xc9\x9a\xd9\x89\x22\xb5\x8d\x4c\x36\x90\x30\x19\x55\x19\xec\x16\xbe\xf6\x86\xa5\xc8\xca\xa3\x75\x46\x2d\xea\x0f\xc7\xaa\x77\x10\xe9\x3b\x14\xcb\x40\x64\x28\xff\xdd\xb7\xa4\xf7\xcd\x5a\x92\x9a\x4e\x84\x9d\xef\x98\x8d\xca\xe5\xcb\x37\xaa\xbc\x34\x4a\x93\x11\x09\x8d\xb3\xb4\x2a\xb9\xce\x22\xb3\xfa\x49\x98\xe7\xcc\x1e\x52\x0a\x8f\x38\xdb\x44\x73\x6c\xeb\x0e\x7c\xae\xd5\x4f\x93\xd8\xc3\xb4\x04\xdf\x43\x6f\x28\x00\x9f\xbd\x53\xd2\x6c\x45\x6e\xd3\xc7\xa6\x08\xa9\x68\x04\x04\x71\x50\x3e\x21\xba\x5e\xc0\x79\x2d\x4e\x87\xb7\x44\xbf\x17\xa8\x4c\x15\x11\xac\x6c\x12\x85\xd0\x57\x37\x59\xe5\x4a\x9a\x81\x7d\x25\xe5\x0e\xb5\xcc\x88\xf2\xab\x22\x10\x3d\x53\x83\x15\x27\x55\xe1\xcc\xce\x50\xcc\x85\x2c\xd0\x1f\x6b\xbc\x0b\x43\x25\xe1\xbc\x3c\x9c\x4a\x25\x38\x70\x74\xd1\x0b\x93\xd9\x32\x7e\x14\x3d\x20\x7a\x47\xf4\xa1\x5c\x50\xf8\xfe\xdd\x6d\x5f\x51\x40\xbf\x81\xfc\x8d\x0f\x1d\xb2\xdc\xf4\xfb\x42\x4d\x2e\xdd\x0c\xbe\x1f\xf3\x9f\xd5\x31\x8f\x44\x49\xbc\xc2\x8e\x87\x03\xa8\x95\x0f\x2d\x54\x5b\xfe\x70\x5f\x0f\x7b\x9c\xc1\x16\xdf\x6a\xca\xe9\x7a\xd4\x45\x25\xaf\x36\xa7\x20\x50\x1a\x1b\x55\x3e\x98\x74\x6c\x39\x2a\x78\xd6\xf6\x99\x51\x65\x3f\x8e\x64\x1c\x1d\xb7\xcb\x2a\xdd\x08\x54\xf7\xc1\x2f\xea\x4a\x57\xd7\xc6\x36\x9b\x41\x94\x8c\xe9\xbf\x85\xc8\x9a\x6f\x00\x6f\xc4\xcc\xde\x40\x98\xcc\x37\x95\x23\x73\x69\x79\xa9\x15\x25\x59\x0e\x7d\x18\xc9\x0a\xd0\xe7\x9d\x34\x46\xb9\xb0\x10\x42\x6d\x6f\x6b\x07\x68\xc3\x00\x82\x8d\xd9\xe1\x42\x33\xdf\x28\xa2\x61\x44\x7f\x22\x45\x3a\xa5\x8e\xdf\x27\xa4\xcd\xac\x07\x55\xff\x28\x50\xf9\x3d\x86\x30\xc8\x14\x78\xab\xce\x2e\x2c\xcc\xd4\x5f\x2a\xad\x97\x7e\x6a\xe2\xd5\x7e\x91\xe6\xa0\xcd\xc7\x96\x61\x71\x19\xdc\x00\x99\xcd\xff\x10\x78\x75\x85\x1b\x15\xef\x63\xff\x62\x6b\x68\x7a\x56\xfb\x2b\x67\xb5\xbf\x52\xed\x1b\x5f\xde\xd7\x4a\x93\xc8\x02\x0e\xa1\x08\xaa\x9d\x1c\x49\xf0\xb3\xd5\xb3\x3a\xb7\x91\x9d\x26\x53\x86\x8b\x25\xbc\x2d\x1e\x4b\x75\x49\x95\xab\x4f\xa8\x8a\x73\xd7\x44\x36\xee\x19\x30\x2b\xc2\x80\xa2\xc1\x1b\x0b\xec\xdb\xb4\x83\x24\xdb\xea\x6b\x72\xeb\xd6\xae\xda\xb8\x37\x33\xad\x83\x52\x9a\x04\xfc\xdc\xc7\xf4\x39\xbe\x0e\xa6\xf4\x51\xf6\x38\x9f\x30\x59\xb5\xbd\x26\x16\xa2\xa3\x11\xf0\x8a\x7c\x0f\x69\x53\x23\x1c\xde\xd9\xf6\xa5\xcd\x75\x1b\x75\x93\xa1\xed\xcd\xfa\xa7\xfc\x10\xc8\x06\x14\xda\x99\x94\x0e\xa9\x25\x1c\xe1\xf0\x1c\x7e\xa4\x29\x94\x2f\x28\x9e\xf6\x9e\x8d\xc2\x8e\x2d\x7d\x59\xce\x43\xbb\x3e\xcf\xe5\x7d\xae\xcf\xd3\x85\x5e\x46\xeb\x11\x63\x8b\x6e\x2a\xe5\x87\x4d\x45\x8d\x64\x0f\x75\xc3\xdc\x0e\xa5\x60\x56\x47\x6c\x56\xd3\x4b\x96\xd2\x94\x82\x1d\xb1\xa1\x38\xfd\xc1\x7c\x25\xf8\xf8\x6a\xeb\x7c\x9a\x44\xae\x8b\x18\xa7\x33\x03\xe8\xf8\x46\x1d\x79\x9e\x5d\x08\x13\xa8\x3a\x17\x96\x1c\x7b\x73\x0d\xd4\xb0\x13\x92\x64\x5a\x1c\x87\x1c\x7b\x22\xcd\x86\xb4\x0e\x5f\x2b\xf4\x41\xd8\x4b\x93\xae\x49\x3b\x45\xca\x9c\x71\x82\x54\x69\x38\x7e\xde\xf3\x53\x0e\x72\x14\x59\xda\xcf\x12\xcf\x97\x3f\x21\x74\x11\xf4\x05\x0e\x22\x3b\x7f\xd0\x35\x2e\x96\x2b\x4d\x3a\x1a\xb7\x40\x60\x9e\x7d\xb6\xf5\x79\xc2\x60\xc0\xb0\x80\xcf\xc7\xc9\xc3\x38\x0d\x8c\xd3\x2a\xc7\x90\x14\x79\x3f\xb4\x51\x4f\xb5\xeb\x9c\x0f\xf4\x91\xa2\x0a\xd3\x36\x36\x51\xbe\x81\x80\x57\x7c\x72\xed\xac\x3f\xa5\xd4\xc0\x73\x45\xd3\x8f\x48\xe7\x75\x85\x73\x7f\xbd\xce\x1e\x90\x23\xd0\xf0\xd2\xbc\xd3\xcd\x8b\x0e\xba\x1b\x1e\xb2\xbd\x9d\x1e\x68\x82\xc5\x88\x7d\xf3\xf4\x44\x81\xc6\x2e\x04\x9e\x4c\xf0\x37\x5b\xe5\xc6\xd8\x64\x81\x3e\x49\x86\x4c\x31\x30\x2a\x49\xa2\x24\x5d\x4f\x12\x0e\xbe\x5c\x99\xd9\x85\xa2\xd5\xda\xd1\xfe\x45\xd6\x89\x6a\xaa\x93\xef\x2a\xbd\xae\x10\x12\xf9\xd3\xf6\xb4\xaa\xd1\x3e\xff\x0b\x5f\x68\xd0\x59\x04\x03\xb6\xad\xad\xca\xc4\xdb\x2a\x95\x84\x97\xf6\xbd\x50\x5e\xa0\x99\x4b\x9a\x97\x1a\x8e\x4d\xec\x54\x25\xd2\x7d\x79\xfe\x60\xab\x5f\xe4\x45\xca\xe7\xb3\x28\x91\x34\xbc\x2a\x89\xc2\x67\x8e\xcc\x0a\x82\x0b\x81\x8b\x34\x9c\x80\xca\xf7\x68\xf1\xa0\xa4\x76\x3e\xf0\xd6\x74\x68\xd2\x55\xdb\x8b\x36\x9a\xe5\x9a\x84\x6d\x42\x27\x36\x77\x1d\x2b\xdc\xcd\x4c\x45\x8c\x9b\x62\xaf\x22\xed\x0e\x66\x14\x7a\x9d\xb9\xc6\x34\xe1\xab\xd0\xa4\x34\x1c\x0f\xfd\x07\x4a\xe5\x3d\xb5\xc3\x30\x0e\xcb\x53\x3e\x57\xd8\xde\x73\x0a\xdb\xab\xbb\x56\xd6\x6c\xda\x0b\x1b\x2a\x95\xc0\x9a\x3e\x7c\x33\xb5\x39\x33\xd3\x6d\x2a\x4e\x8d\xb3\x8a\x50\xe6\x46\xe0\x75\xe1\x49\x91\xd2\x29\x18\x9b\x14\xf9\x17\x77\x0e\x2f\x3b\xb7\x28\xf8\xc9\x2a\x05\x16\x7b\xcc\x4f\x35\x1c\xc7\xdf\xf1\x40\x31\x35\xde\x52\x14\x7c\x1f\x8d\x15\xa6\xe4\x6d\x10\xd0\x20\x2a\x7a\x87\x9e\x8c\x95\x76\x69\xf8\xf1\xe2\x5c\x28\x70\x78\x8d\x72\x39\xc3\x9c\x5e\xa6\xb4\x1d\xf2\xec\xdc\x78\x00\x13\xb4\xb3\xed\x81\x05\xdb\x58\x14\x05\x41\xcd\x1f\x22\xa1\xea\xc8\x75\x9c\x00\xf4\x07\xf0\x79\xd0\x4d\xf6\x1d\xe4\x90\x85\x2c\x54\xa5\x1e\xaf\xd5\xe0\x94\x97\x5a\xd9\xba\x59\x13\xa6\x50\xd8\xb4\x93\xba\xc7\xe6\xe4\x14\xb4\xbf\xe8\x70\x16\x02\xd9\xe0\xe3\x70\x89\xb1\xbc\x90\x17\x95\x42\xad\x9f\x91\x7e\x6a\x0a\x10\x22\x23\xad\xb1\x49\x0b\x43\xc4\x2a\xca\x97\x15\x90\x7c\x4d\x17\x79\x36\xb2\x44\xb8\x85\x53\x09\x49\x9e\x53\xaa\x6a\x76\x2a\xf8\x94\xc4\xe6\x36\x4f\x93\xee\xc0\x0e\xc3\xae\x01\x0f\x3e\x7c\x81\xcf\xa8\x4c\xcf\x4f\x4f\x54\x6f\xff\xa9\x1a\xa6\xc3\x25\xf2\x6f\xd6\xc2\x4c\x3a\xcc\xf0\xc8\x27\x35\xde\xf0\xa4\xca\xf2\xaf\xd8\xf4\xc9\x72\x7d\x39\xa1\x00\xd7\xa7\xf3\x5f\xfd\x1d\x24\xa5\xe1\x0e\xcf\x4c\x14\x30\x61\x53\xa1\x67\xd6\xf7\x4e\x3c\x55\xc2\xcc\x64\x9a\x43\xfd\x0b\x2f\xb3\x8d\x38\x3a\xf6\x62\x62\xff\xed\x67\xda\x3e\x51\x79\x45\x59\x38\xee\x05\xc2\xfe\x04\x9d\x36\x2a\xf4\x0f\x69\x90\xe1\xa3\xee\xe2\x15\x85\xbf\xba\x3c\x56\x75\xef\xd7\x1c\x50\x31\x29\xf2\xc7\xdd\x51\xbb\xfb\x67\x50\x77\x92\x7e\x59\x25\xfd\x70\x9e\x63\x01\x41\x3a\x97\x23\x81\xdc\xc5\xcf\x69\x59\x91\xeb\x58\xb7\x53\x3d\x02\xf0\x95\xf8\x85\x1d\x47\x9e\x03\x88\xcd\x12\xca\x14\xdb\x71\xcf\x14\x35\x8b\xc4\x88\xe5\x40\x4b\xb5\x53\xfa\xef\x53\x9b\xe5\x69\xd8\xcd\x79\x8d\x62\x0b\xde\xc3\x16\x40\x05\x97\x71\xe4\xb2\xed\x24\x11\xd1\x4d\xa2\x10\x67\xaa\xa3\x32\x77\xe4\x9c\xb7\xd5\x61\xd1\x31\xd1\x0e\x8f\xcd\x9f\x01\x38\xc7\x35\xd8\x0a\x98\xea\x9f\x73\xf3\xf0\xd4\x0b\x0b\x6c\xb3\x9c\x0a\xac\xbf\x8f\x3d\xb4\xb2\x70\x2b\x1c\x01\xf1\x07\xb4\x45\xf8\xda\x73\x06\xd8\x34\xe9\x84\xdd\x8c\xca\x20\x68\x20\x7b\x0a\xbf\x84\x82\xf0\xe3\x94\x8b\x12\x6e\x53\x6f\xcf\xde\x51\xf8\xb8\x2c\x37\xb9\xcd\xd6\x6d\x06\x53\x2d\x3d\xbb\x0d\xc7\x7d\x7c\x54\x05\x6e\x7d\x93\xe5\x36\x9d\x51\x2c\x9c\x77\x31\x7e\x02\x3f\x6f\x38\x92\x25\x80\xf8\x05\x6b\x52\xa7\x4e\x91\x74\x57\xe9\x27\x39\x8b\xa3\xc8\xe2\x2f\xb8\xdc\x0a\x51\xf5\x59\x64\xa9\x60\x0d\x3f\xd3\xf6\xb2\x7d\xc9\x67\x31\xe0\x58\x22\x57\x82\x1a\xc6\xa3\xd8\x2a\xce\x82\xe6\x4f\xb4\xb7\x26\x1f\x60\xd3\x9e\x9e\xd4\xe8\x45\xe6\xca\xce\xc0\x5e\x22\x07\xc8\xd7\x75\x95\xa4\x2c\x4f\x8b\x6e\x79\xb6\xb3\xa3\x22\xaf\xa3\x5e\x2d\xd0\xc7\x99\x8d\xfa\x4f\xa8\xc5\x78\x56\xef\x25\x54\x44\x91\x30\xff\x17\x81\x32\xab\x3f\xa6\xaf\x83\xb5\xdb\xcd\xbb\x17\x09\x09\x86\x71\xa0\x68\xf5\x68\x5b\x75\x47\xa3\x6c\x80\xdd\xd7\xa4\xd8\x4a\x5a\xc5\xcb\xad\xe4\xc0\x99\xa5\xdb\x23\xc8\x06\xda\x31\xc8\xa7\x20\x93\x8b\x3d\xb2\x13\xe3\x8f\x03\x68\x47\x5b\xd5\x37\x4d\xbc\xdb\x81\x27\xbf\xf8\x37\xda\xaa\x83\x7b\xa6\xad\x58\x3e\x76\x4c\x94\xf6\xc9\x4e\x2a\x54\x0b\x5d\x02\xde\x45\x40\x2f\x1e\x0f\xc0\x3c\xba\x4e\x3e\xb8\xb4\x3e\x52\x61\x2b\x9f\x9f\x9d\x20\x32\x17\xa2\x35\xf8\x84\x52\xce\x5e\xb3\x29\x4a\x1d\x6e\x75\x3b\xb7\x9b\xcc\xe2\xe6\x6b\x63\x45\x99\x72\x22\x50\x24\xe2\xa8\xcc\x8a\x50\x8b\x4f\x1e\x74\xac\x8d\x1f\xf5\x95\xe9\x1f\xd2\xd3\x22\x7d\xcb\x36\x0c\x8f\x3e\xd3\xa6\xe2\x09\x5c\xb6\x37\x74\x76\xfa\xfb\x38\x96\xf9\x5f\xe8\x91\xf0\x78\xcc\x0f\x88\xc3\xaa\x41\xa7\x01\x86\xe4\x82\xce\xea\x7f\xac\xe2\x85\x51\x11\x87\x90\x1c\xf7\x44\xaa\xd3\xd4\x39\x5b\xd7\xea\x73\x54\xf2\x4a\xc3\x4e\xe1\x8a\x27\x30\xc0\xef\xc3\x38\xf2\x4d\x05\x5d\xf5\x32\x49\x36\x7e\xbd\x08\x53\xde\x94\x70\xd2\xb8\xc1\x05\x45\xe7\xd3\x9a\x94\xe3\xdf\x55\x7e\x5a\x12\x92\xa3\xc8\x74\x41\x1e\x26\x3d\xad\x1e\x25\xf0\x11\x4c\xa4\x50\x49\x7a\x5f\xb1\x17\x66\xab\x19\x41\x28\x51\x4a\xc0\x71\xe7\x38\xff\xe6\xe6\x78\x70\x2f\xe0\x7c\x14\x8c\x8c\xe2\xe6\x61\x0f\x05\xa5\xad\xaa\x00\xe0\xdc\x7c\x6b\x25\x4a\x3a\xc8\xc3\x4e\xc9\x61\xf3\x8d\x82\x5f\x75\x4c\x66\x3b\x26\x8a\x76\x79\xca\x7a\x2e\xff\x62\x73\x5d\x1b\x2b\xd4\xdb\x55\x5e\xdd\xac\x0e\x4b\xcf\x0d\x27\xf6\xbf\x53\x34\xb7\xa0\x93\x73\x3c\x97\xe5\xbc\x48\x6f\xde\xd6\xa9\x58\x58\x68\xc5\x76\x3d\x1b\xa5\x21\x7b\xd9\x38\x34\x91\xa3\xe6\xeb\xba\x0e\xdc\x7e\x18\x85\xa3\x30\x4e\x54\xe6\xff\xb2\x22\xfc\xbf\xaa\x9b\xf7\xbf\xa3\xc9\x7a\xd3\x64\x34\xb2\x3d\x2a\xb6\x38\x5f\x6d\xbf\xd7\xe7\xa5\x01\x07\x33\xd1\x75\xda\x89\x6e\x69\x94\x83\xcf\xff\x50\x81\xf4\x96\x01\xbd\x49\x57\x4c\x18\x53\x4d\xdd\x6d\xf9\x4d\x95\x68\x38\x0f\xb3\x86\xc9\xbc\xec\xce\xe8\xaf\x15\x59\xbe\xd3\x53\x1b\x7c\xb6\xad\x9c\x54\x48\x07\xe0\x20\x06\x4f\x12\x3a\xcf\x51\x6c\xc7\x90\x3e\x20\xc8\x8f\x83\xb4\x6b\x9a\xca\x67\x6a\x44\x0f\x97\x0e\xec\x69\x38\x4a\xac\x1b\x81\xe2\x97\x39\xab\xe8\xc0\x8f\x2b\x8a\xde\xef\xc1\x86\xe2\x97\x41\x2f\x23\x95\x77\xac\x05\xec\xf7\xeb\x9a\xa5\xf3\x01\x81\x23\x45\x0c\x4a\xc9\x0b\x1c\x0b\x14\x7f\x22\x5a\x2d\x30\x47\x47\x71\x68\x48\x26\x62\x2b\x31\xeb\x73\xad\x3c\xdd\xa0\x81\x15\xb9\xef\xf2\x39\x1c\xc3\x5b\xf9\xcb\x48\x2f\xbd\xe5\x51\x8e\x83\x30\x8e\x1d\x80\x8d\x99\x4d\x03\x5f\xe5\xb9\x52\xb7\x16\x7d\x09\xbd\xe1\xd4\xf3\x91\xb4\x10\xb1\x74\x7d\xf0\xad\x6e\x14\xd4\x0b\xc2\x4d\x38\x34\x68\xd2\x90\xe3\x04\x7a\xd6\x4c\x54\x98\x1c\x36\x02\x93\x7f\x33\x50\x31\xf3\x47\x63\x1f\x18\x57\x75\x60\xca\x48\x96\x75\xa2\xb3\x9c\x49\x00\xa5\x8c\xa6\x4a\x6a\x75\x84\x1a\x79\x4a\xe5\x34\x26\xf6\x60\x99\x1a\x8c\x32\x6a\x7c\x40\x62\x08\xda\x58\x92\x89\xe0\xcf\x6c\x62\x6a\x61\xd6\x7f\xa2\xad\xce\x95\x6b\x5a\xf2\xee\xa9\x1a\xc1\xd8\xf9\x56\x96\x24\x31\x97\x3d\xb1\x36\xde\x82\x1d\xe3\x9b\x5a\xf6\x8f\x6e\x37\x29\x62\x01\x6c\x08\xb3\x61\x43\x51\x1e\x2a\xa6\xf9\x3c\x32\xb1\xc0\x19\x91\x62\xbb\x49\x5b\x15\x03\xca\x14\x43\xf0\xa6\xee\x05\x3e\x87\x36\xb4\x69\x77\x60\xe2\x5e\x98\x59\x72\x35\x81\x84\xfc\x13\x5d\x92\xbd\x33\x56\x02\xa5\x3f\x52\xbe\xe6\x7d\x2d\x92\x65\x7b\x26\x6e\x7a\xa4\xf0\x3d\xe4\xf9\x1d\xfb\x9c\xd3\xcf\x39\x59\x13\xf9\x1d\x68\x8d\xd2\xa4\x4b\xcd\x7a\x8b\x8b\xbc\xf6\x3f\xd2\x1c\x0f\x1f\x8d\x55\xef\x49\x27\x37\x61\xcc\x8b\x51\xe0\x94\xe5\x22\xe3\x6b\x65\xc5\x87\x61\x6c\x53\x23\xb0\x14\xc7\xa1\xec\x1a\x2c\x2f\xa9\x9e\xca\x0d\x9b\xef\x2e\x63\x1a\x59\xaa\x9e\x02\x9c\x49\xec\x5d\xe3\x68\xf9\x58\x08\x0a\x0e\x07\x2a\x01\x0f\xfe\x7e\x1c\x25\xa8\x8a\xe1\xdc\xd8\x36\x99\xc2\x2c\xf8\x08\xf0\x6d\x85\xa0\x7c\x10\xa8\x36\xd2\x93\xce\x0e\x66\x89\x19\x35\x55\x73\xf4\x71\xd5\xed\x8e\xdc\x33\x56\xc2\x3d\xf7\x89\x41\xb1\x92\x34\xbc\xe3\x75\x49\xf7\xf6\x5d\xaa\xe3\x82\xa2\x20\xa1\xe9\x51\x40\x77\x54\xc7\x2c\x23\x3b\x60\x51\x66\xda\x8f\x48\xc8\xb8\x81\x98\x0b\x43\x25\x70\x37\xf1\xd4\xe8\x23\xb0\x3b\xb7\xeb\x9a\x98\x87\x36\x5d\xcd\xcc\xd0\xa6\xbc\x9d\x44\x81\x47\x61\x8d\xb4\xfc\xdd\xd9\x0a\x2b\xef\xdc\x5c\x6b\x58\x44\x79\x18\x83\x5b\x1b\x99\x62\xa7\x03\xed\xa4\xef\x4e\xd7\xa9\xa8\xfd\x6c\x69\xcc\x86\x61\x96\xf1\xc7\x04\xad\x51\x7e\x4c\x60\x1c\x3a\x07\xb2\x6e\x62\xce\x61\x73\x78\x8b\x8d\x21\xb1\xae\x53\xbf\x4b\x86\x23\x13\x6f\xcc\xe2\x4f\x9d\xaa\xa3\x64\xed\xff\xe6\x53\x6d\x1f\xe5\x3c\x18\x2b\x7d\x13\x6e\xb7\x14\x08\xb6\xd2\xad\xb3\x79\x6e\xd3\x9d\xaa\x72\x76\x4e\x01\x7d\xa1\xac\x2b\x69\x27\x7f\x02\xfc\x99\xa6\x95\x3b\x82\xa4\x15\x0c\xfb\x85\xb1\x2e\xc9\x9d\x0b\x3c\xc6\xac\xc8\x08\x77\x3b\x37\xe7\x62\x50\xc5\xfc\xf9\x81\xaa\x05\x87\xc3\x91\x09\x53\x91\x9f\x93\x5e\x66\xc5\x24\x72\x71\x2b\x91\xe8\xe2\x62\xeb\xf9\xaf\x34\x54\x43\x29\x73\x02\x4a\x0e\x41\x35\xe6\x24\xd4\x97\xa8\x18\xa0\xb0\x4f\x85\x45\xbf\x06\xde\xb8\x62\x73\x2c\x43\xe6\x28\x1d\x7b\xb7\xe0\xb6\xe2\x3a\x39\x5e\x29\x81\x97\x8e\x92\xed\x95\x86\xa1\x5c\xf6\xac\x90\x0a\xe3\x74\x54\xf7\x8e\xdf\xa9\xc3\xf0\x50\xd2\x9c\xd0\x18\xd8\x22\x70\x10\x44\x72\xd5\x3f\xf2\x15\x65\x1b\xf3\x41\x98\xf6\x76\x4f\x77\x51\xbd\xb4\xcf\xab\xfb\x3a\x10\x10\xf3\xf0\x63\xfa\x9a\x08\xb3\x10\xf4\x40\x7d\x03\x0e\xe6\x87\x0a\xa9\xff\x68\x5b\xa5\x5b\x40\xa2\x82\xd5\xf7\x6d\x1c\x6a\xfc\x55\x13\x45\x9a\x54\xcb\xfa\x38\x4a\x93\xdc\x3a\x92\x74\x4e\x99\xc0\xba\x49\xfe\xe4\x31\x07\xe4\xc8\x24\xae\x40\x3c\x79\x5f\x27\x5d\xee\xab\xf8\x3e\x0f\x53\x8b\x23\x9e\x55\x2a\x15\x96\x75\x4f\xdb\x77\x83\x6d\x9f\xec\x51\x22\xc5\xe9\x88\xc9\x7a\xe1\xc7\xa3\xe0\x8e\x0c\x27\x22\x26\x7c\xc1\xec\x44\x65\x43\xce\x6a\x08\xda\xa3\xb4\x39\x04\xb1\xbb\xd5\x08\x90\x70\x5e\xb8\x32\xc8\x95\xf6\xb6\x40\x8f\x34\x26\xc9\x1d\xfd\x59\x64\x2d\x1b\x61\x67\xc3\x97\xe5\x6c\xb8\x43\x86\x1e\x1e\x70\x95\x54\x8a\xa0\x65\xdd\x24\xb5\x5b\xc9\xe7\x15\xce\x4e\xbb\x4e\x26\x7e\x75\x97\x77\xdd\x2f\x6a\xf2\xe8\x40\xe1\xc1\x38\xcb\x85\xca\xd5\x69\xdd\x7f\xfc\x40\x51\xbb\x72\x77\x12\xdf\x68\x12\x86\xc3\xaa\xf8\xb2\x66\x53\xe4\x3f\x1d\x56\xf3\xa4\x22\x36\xf7\x27\x91\x71\x6a\x51\x58\x0f\xb3\x34\x15\x7c\xad\x52\x05\x23\x9b\xef\x54\x98\x1d\xa1\xe6\x91\x3b\x0f\x63\xba\xa4\x8e\xb2\x47\xb1\xd4\xe1\xb7\xfd\x88\x86\x87\x97\xbd\x6e\x08\xba\x53\x89\xe8\x68\x27\xaf\xb3\x6e\x9f\x4b\xaf\x97\x7e\x87\x30\x56\xf8\x05\xf7\x41\x5d\xc0\x54\xe7\x61\xfd\xce\x58\x0d\xf5\xef\xa8\xea\x4b\xc7\xc4\xdd\x34\xe9\xe7\xaa\xd3\xf9\x41\xe0\xb1\x4a\x0f\xea\x38\x3e\xd0\xb9\x4f\x09\x0a\x16\xd1\x98\x56\x64\xf0\x94\x86\x87\xa7\xa0\x3e\xde\xfb\x40\x86\x09\x21\xc0\x7b\xd3\xf9\xf9\x98\xf5\x22\xc5\x99\x99\xf2\x72\x9c\xd6\x0e\x34\x8e\xb0\x80\xf1\x0c\xf0\x22\x60\xe4\xae\x51\x69\x02\xc6\xe4\xe8\x78\xb7\xaf\xad\xe6\x3f\x45\x03\x89\x43\xf8\x28\x9e\x5a\xba\x2b\x1b\x2f\x3b\x3c\x1b\x7d\x1c\x03\x70\x4d\xe3\x3c\x2e\xe9\x62\xc8\xe3\x50\xfd\x65\xd4\x7f\xe0\x95\xdc\xf7\xb6\x29\x0e\x81\xd3\xf4\x50\xe3\x7c\x76\x51\x61\x05\x9b\xe4\xe9\x49\xc3\x29\x11\xb0\x26\x03\xd2\xb5\x8f\xb7\x75\xeb\x32\x49\xcd\x09\x13\x28\xed\x6b\x64\xdb\x76\x61\x75\x21\xe9\x33\xe3\x39\x29\xfe\xfb\x99\x89\x4f\xa8\x5f\x53\x7a\xfd\x8f\x53\x84\x29\x76\x8a\xda\x3a\xf8\x09\x03\x7d\xc0\x7f\x9b\x8f\x54\x47\x8b\xfd\x85\x97\xa7\x33\x6c\x30\x41\xbb\xdb\x7e\xb7\xf5\xac\x89\x6c\x9a\xd1\x7a\x80\x31\xbf\xa5\xa5\x57\x8e\xc3\x69\x96\xf5\x44\x63\x8e\xe3\xe4\x1c\xdc\x4e\x1c\x75\x7f\xa5\x18\xcf\xde\x53\x27\xf9\x9a\x89\xc2\x9e\x5a\x9d\xe0\xbb\x90\x44\xe5\xa7\xbd\xaf\x0e\xc2\x56\xa6\x93\x6d\x28\xc1\xc7\x29\x86\xc3\x27\x7c\xff\x4f\x38\x1c\xda\x88\x1d\x21\x9c\x75\x8c\x18\xe3\x1b\x75\xd8\xc5\xa6\x17\xa6\x38\x98\x5d\xbe\xa6\x7c\x74\x60\x9c\x4f\x63\xfa\x30\x32\xf7\xea\xf4\x77\x06\xe1\xca\xa0\xa1\x84\x33\x4e\x28\x5a\xc3\x13\xca\xb7\x37\xf1\x46\x19\xcc\xae\x3c\x36\x5d\xb0\x28\xc7\x4f\x58\x45\x3d\x27\x38\x57\xf9\x30\xed\xc7\xb0\x38\x90\x33\xe2\xae\x73\x61\xa1\xc1\x2b\x02\x97\xf7\x01\xd5\x38\xc4\x75\xf6\x27\x0f\x5a\x92\xe1\x7c\xbd\x1d\xa8\x20\x8e\x85\xba\x04\x2d\xe5\x43\x96\x3c\x15\xb8\x45\xf9\xc7\xac\x0a\x85\x67\x15\x89\xa8\x5a\x5f\x95\xa8\x41\x63\xc1\x77\xb8\x49\xf5\x89\x75\x85\xc3\x4c\xcb\xb8\x16\xb2\x37\x42\xca\xd3\x70\xea\x60\x60\x15\x74\xff\x7d\x6e\xde\xfd\x77\x39\xe6\xd2\xb0\x3b\x90\x63\x4a\x4b\xca\xf1\x75\x25\xcb\xff\xec\xb3\xad\x48\x50\xb4\x8e\x83\x70\x59\x44\xf2\x2f\x2a\x0e\xb5\x51\x6a\x7b\x61\x97\x45\x79\x96\xf7\xf9\xfc\xc1\x7e\x9f\x3f\x50\x28\xc0\x73\x0a\x55\x74\x2e\xf0\xf4\xab\x2b\x61\xd7\x44\x0d\xc5\x7a\x83\x1e\x5b\xbe\x0e\x3c\x2f\x57\x41\xaa\x3b\xb9\xef\x83\x84\x5f\xff\xae\x4e\xdf\xbd\xeb\xc5\x9b\x4c\xca\xe2\x3c\x92\xf8\xa2\x39\x14\xe2\xf0\x1a\x46\xb5\x3c\xcc\x8d\xb4\x21\xd4\x71\x57\xd4\x1c\x52\x99\xcd\x8b\x51\xc3\xf7\x19\xe1\x1d\x05\xae\x59\xe7\xa1\x8c\xc2\x98\x84\x21\xe5\xd0\x15\xe5\xbb\x86\x52\xc4\x53\x1d\x33\x84\x33\x7e\x4c\x55\x9c\x7f\x5b\xdb\x8b\xd9\xb6\xe7\xbd\x69\x52\xad\x10\xc6\xbb\x31\x51\xce\xe3\x1b\x63\x05\x9c\xfd\x4d\x5a\xfa\x22\xe8\x44\x5b\x16\xae\xda\xfd\xc0\x63\x1a\x27\x94\x94\xc5\x6a\x07\x85\x27\xfe\x06\x1a\xb2\x38\x5e\x66\xdb\x4f\xaa\x72\x14\x29\x52\x03\xa6\xe9\xb8\x1a\x1c\x12\x11\x22\x20\x58\x11\x57\xe9\xeb\x90\x66\x3e\x52\xd5\x2f\x9b\x6b\x8d\x6c\x3a\x34\x6e\x67\x20\xd9\xfa\x2f\x55\x9b\xe7\xbf\xac\x63\x62\xea\xa7\xc5\x70\xc4\x5d\x02\x42\x37\x57\x7e\x1c\xee\x9b\xce\x94\xfe\xa5\x62\x1a\xe8\x25\xeb\x14\x50\xe3\x08\xc0\xd4\xf1\xb5\x32\x7b\x2b\x26\x4f\xd8\x2b\x76\x34\x54\x9e\xdc\x95\xda\x9b\xa4\x8f\x23\xc9\x6d\x04\x79\x3e\x84\xbb\xb7\x34\xfd\xf3\x3b\x8a\xa3\xf8\x81\x12\xb6\x1a\x84\xd9\xc8\xc4\x61\x97\x09\xbd\x61\xfc\x31\x1b\x7c\xad\xaa\xf0\xa3\xc8\x6c\x60\xb3\x31\x1b\x7e\xa0\x7e\x01\xad\xf2\x7c\xad\xe4\x91\xcf\x8d\x3d\xdb\x65\x9e\x6e\xec\x56\xe7\xd2\x65\x4d\x1c\xfe\x1d\x95\x01\xfe\xb1\x4e\x83\xb2\x54\x1a\x0c\xe3\x35\xd5\x27\xcf\xba\xde\x48\x23\xdc\xa2\xd4\xac\x6a\x83\x95\x5a\xc0\x51\x45\xa9\x7b\x5d\x71\x85\xce\xb6\x3d\x3c\xba\x9f\x24\xbd\x1d\xf4\x65\x52\x9e\x57\xbe\x2a\xd6\xa9\xd4\x7e\x7d\x05\xe3\x02\x1e\x12\xf6\x9e\x6d\x8d\x10\x06\x7a\x85\xa9\x41\x92\xe6\x61\xb7\x88\xf2\x22\x35\x51\xb4\xd1\x54\x6d\x3f\xdf\xd7\xb5\xbb\x77\x54\x5b\xc5\x37\xa7\xbc\xf7\x30\x83\x24\x85\x88\xcb\xd1\x87\x90\x4f\x43\xc5\xcb\xb1\x7d\x7b\xde\x83\x5b\x95\x60\x8c\x9a\xdc\x4d\x41\xb4\xb7\xd3\x38\x6b\xcf\xf2\xe6\x84\x50\xd3\x64\x7d\x56\x53\x8c\x4e\x93\x92\x3a\x4c\xea\x6d\x05\xe6\xd9\xd4\x19\xa1\x2b\xd3\x25\xcb\xf5\xec\xc9\x72\x3d\x60\x6f\xc0\x9e\xe3\x17\x39\x43\xad\x64\x79\x5f\xe0\xb7\xf9\x01\x0e\x40\x26\x90\x08\x54\x26\x95\xc3\x42\x1c\x8d\xe0\xb3\x46\x41\xed\xa1\x3a\x58\xb8\xff\x5d\xaa\x41\x54\x50\x73\x14\x91\x5e\xad\xec\x77\xc6\x9a\x6d\x1c\xb1\x90\x10\x96\x7a\x68\xda\x9b\x74\xb2\x49\x43\xe1\xd6\xb4\x51\x69\x56\x89\x3d\x60\x38\x8a\x3c\x59\x1f\x22\xa2\xe3\x0a\x61\x78\x5c\x61\x00\x3e\xf7\x0f\x7f\xbe\xa1\xc0\x0d\x1f\xd1\x0f\xf0\xb5\x46\xed\x9b\x22\x9a\xd1\x07\xc2\xd8\xa7\xa4\xae\x6a\xc9\xe6\xdf\xe3\x70\x48\xf8\x9f\xc5\xc5\x0a\xe3\x81\x4d\x2d\xeb\x00\x23\x8a\x7d\x1c\xda\x77\x8e\xc0\xde\x75\x2f\xee\x6d\xd7\x54\xdc\x47\xc2\x22\xcc\xc4\xaf\x4a\x59\xf0\xb6\x72\x44\xa4\xf9\x85\x52\xbd\x8a\x0e\xc1\x25\x5d\x02\xe5\x73\xa2\x3e\x2a\x3c\x09\x9f\x52\x84\x32\x31\x11\x84\x0a\x18\xd4\x91\x3d\x7b\xd6\xbe\x8b\x75\x54\xc9\xc9\x28\x0f\x87\xc8\xd8\xd3\x9a\x41\xb6\x1c\x26\x98\xaf\x2b\x90\xba\x85\x85\xd6\xc8\xe4\xd6\x85\x68\xec\x6b\x2b\xf4\xd1\x25\x85\x98\x5c\x4d\x86\x23\xb3\x8a\x92\x19\x94\x8a\xc0\xc1\xca\xd7\x4e\x77\x39\x0b\x87\x45\x64\xf2\x04\xe9\x78\x21\x06\xa0\x79\x12\xc6\x80\x2a\x18\x70\xb1\x95\x9b\x68\x15\x8f\x21\xc5\xab\x86\x62\xa7\xf7\x39\xf5\x11\xd1\xc2\xa5\xc9\x6a\x68\x9a\x0d\xa7\x6c\xb8\x1d\xbd\xea\xce\x39\xdd\x2f\x2d\xa8\x57\x5d\xac\x96\xac\x24\xf1\x46\xb2\xda\x2c\x2d\x24\x40\xc5\xc0\x90\xa8\x9e\x27\xd9\xb9\xf7\x6a\x79\x28\x7b\x61\x16\x85\xab\x0c\x3f\xe4\xea\x62\xe0\xdb\xe5\x2f\xd5\x66\x28\xca\x4f\x30\x41\x21\x76\xfb\x13\x6d\xbf\xf3\x9f\x98\xf8\x63\xe5\xeb\x45\x38\xe2\x33\x4e\xa8\x48\x15\x3b\xdf\xb8\x46\xa8\x73\xa9\x65\xfa\xa9\xe1\x56\x24\xb4\x1f\x5d\xc5\x12\xd3\xfd\x33\xc2\xf3\xf6\xa4\x83\x9c\xa2\x8c\x29\xfc\x50\xd8\xdd\x7b\x11\xec\x21\x6b\xf6\x9d\xb1\x87\xca\x9f\xd0\x34\xf6\xbb\x95\x38\x53\x11\x8f\x52\xdb\xb5\x3d\x1b\x0b\xce\x84\xf5\x1a\x28\x68\x85\x39\x3c\x4e\x45\x39\xd9\xb6\x0e\x5f\x46\xe8\x65\xd3\x09\x89\x1f\xab\x9c\x02\x49\xf1\x34\x9c\xc4\x13\x48\x97\x11\xad\xfe\x58\x1d\xbe\x6b\x69\x92\x0c\x31\x03\x42\x20\xe0\xf3\x3d\xa7\x2a\x0b\x6b\x71\xb1\x55\x64\x36\xe5\x71\x85\x51\x3b\xab\xbb\x57\xea\x24\x16\xfb\xd6\xa4\x4e\x31\x00\xf6\xe2\xb6\x4a\x9b\x9c\x51\xa5\xd0\x53\x2a\x46\x58\x09\xd7\x6c\x19\xf1\xcd\x1f\xf4\x8a\x08\x4e\x36\xe6\x92\xe2\xf7\xfa\x9a\x89\xcc\xc8\xc6\x50\x99\xc3\xc1\xf9\x1a\x61\x30\xf9\xba\x4e\x85\x60\x18\x12\x2d\x8b\x76\x8b\xa7\x3c\x3d\x4f\xcb\x92\x15\x1d\x4a\x98\x77\xe1\xbd\x71\xad\x33\xf0\xb5\x9f\xa3\xda\x64\x45\x79\x38\x34\x69\xd8\xf0\x88\x0c\x3e\x1a\xf8\x46\x69\x10\x14\x23\x1c\x9a\x4e\x83\x1a\x2e\x81\xa7\xe2\x92\x27\xe8\xa6\x61\x1e\x76\xb3\x9d\x34\x7e\xd8\xf2\xef\x29\x8f\x01\x89\x54\xc0\x50\x36\x11\x3a\xe2\xf0\x87\xde\x80\x64\x4b\x4a\x1f\x99\xaf\x03\xa5\x36\x72\x24\xf0\x3f\x94\x5b\x02\xcd\x53\xc0\x0f\xb8\xce\x4d\x3c\xbc\x6e\x9b\x40\xde\x8b\x29\xcf\x44\x8d\x41\x4b\x33\x8c\x3d\x46\xe7\x54\x1d\x73\x7d\x66\x15\x09\x19\x4e\x31\xc0\xb4\xf9\xba\x62\x8d\x5f\x79\x85\xc8\x8e\xc3\x9e\x23\x3b\x16\xb5\x10\x65\x62\x34\x0c\x25\xb5\x2b\xa8\xb5\xd0\xc3\x03\xda\x08\x65\x43\xbe\x0e\x7c\x92\x23\x4a\x86\x1d\x93\xf6\x1a\xbe\x45\xf4\x84\x97\xb5\xdc\x71\xa2\x52\x13\x5a\xde\x57\x3e\x4c\xd7\xa6\x8e\x30\x4c\x94\xf0\x1b\x8e\x06\xec\xf7\x83\x27\x54\x93\x36\xfa\xc0\xcb\xc5\x25\x59\x05\xef\x3a\x9e\x76\x31\x63\x6e\x7b\xa1\x2b\x2a\x38\x7a\x15\x45\xc3\x2a\xed\xe5\xb6\x7c\xde\xd4\xb0\xf6\x98\x2b\x06\xdc\x0f\x94\x6e\xc3\xfd\xf1\x33\x53\x7c\xa1\xeb\x03\x1b\x0d\x79\xcc\x45\x09\xb4\x39\x21\xff\x85\x6f\xda\x2e\xb4\x4e\x92\xd5\xd0\x2a\xae\x46\x78\xb7\x38\x9d\xd1\x35\x28\x65\xd2\x9a\xe3\xcf\x84\xe9\x28\x49\x73\x2d\x81\x10\x28\xc9\x65\x65\x78\x48\xd3\x7f\x07\xbd\x2d\x93\x70\x92\x61\xdc\xbc\xcf\x59\x0d\x09\xe5\x55\x6a\x0c\xf6\x17\x3e\xea\x87\x4a\x03\xe6\x58\x2d\x7a\xb8\x9b\x0c\xfb\xf2\x28\x30\x67\xef\x07\x8a\x04\xfa\xfd\x0a\x09\xc5\xdf\x25\x35\xe5\x86\xff\x0d\xa0\xca\x45\x4c\x59\x27\x33\xc3\x95\x01\xf1\x3c\x22\x62\x7d\x13\x0f\xc9\xba\x5c\x2a\xa9\xcd\x54\x4f\x8e\x1b\x63\x59\x00\x2b\xaf\x07\x53\xb1\x57\xc3\x51\xc7\x9c\x84\xf3\x0e\x3f\xf2\x0c\x1d\x86\xe8\x33\xe5\xdc\x32\x32\x29\x4c\xdb\x8f\x51\xb9\xac\x3c\xc0\x8d\x18\xc5\x51\x81\x71\x36\x1c\x8b\xce\x58\x97\xd4\x8f\x05\x0a\xc8\x94\x9a\xa1\x69\xfa\x7c\x91\x8e\x99\xaf\xe2\xc5\x00\x82\x3e\xa6\x38\xde\x52\x33\x0a\x7b\xd1\xc6\x4e\x95\x38\x3c\x85\x53\x80\x6f\xc8\xcf\xe5\x53\x33\x50\x7c\x18\xc7\x30\x22\x88\xee\xaf\xe0\x70\xe5\x1b\x7a\x58\x46\xb6\x2b\xb5\xd7\x72\xf9\x9a\x28\xda\xa1\x9a\x71\xdf\x84\xe7\x8d\xea\xd9\x1f\x2a\x02\xfd\x37\x31\xac\xfc\x0f\xda\xf1\x87\x4c\x9d\x44\x5b\x4f\x6b\xef\x30\xcb\x4d\x9c\x47\x1b\x10\xd9\x44\x42\xe8\x2d\x3c\x18\xf2\xab\x68\xd0\xe1\x6b\x3a\x81\xf8\x8f\x6a\x32\xe8\xf3\xad\x7e\x6a\x99\x9d\xd1\xb1\xf1\x96\x1f\x47\x2c\xf0\x20\xd0\x4c\xc2\x8e\x30\xc2\x66\xb9\x21\x56\x47\x77\x48\xc2\x8d\x45\x77\xf8\x14\x07\x3d\xe6\xe5\x70\x05\x64\xf2\xd2\xbe\x17\xc0\x3b\xd1\xb7\x69\xca\x68\x03\xce\xc2\x6b\x54\xce\x7b\x35\xa7\xf3\x7a\x98\x0f\x92\x22\x27\xc9\x64\xee\x3c\xc3\xf2\x92\x36\x34\x87\x05\x1e\x24\xc9\xea\x8c\x62\x9c\x44\x5d\xd7\xb1\x3b\x96\xe3\xc7\x52\x73\xaa\x57\xe9\x74\x0d\xcf\xc5\x0b\xad\x6e\x94\x74\x3a\x36\x45\x9f\xfe\x22\x07\xdb\x40\x6b\x38\x8e\xf4\xf2\x87\xd8\xe7\xc4\xe2\x47\x14\xfd\x83\xba\x3e\xfd\x7e\x6a\x86\xa5\x5b\x02\xdb\x81\xbd\xf4\xbb\x63\x95\x3b\xf9\x5d\xa7\xd4\x42\xfd\x64\xe9\xab\x1d\x13\x03\xf5\x5b\xab\xd1\xbf\xdb\x41\x7f\x6c\xbc\xc7\xb3\x3c\xdd\xa5\x53\x94\x45\xe1\x15\xb6\x64\x13\x13\x8b\xa7\x7d\x64\xe2\x14\x0f\xbf\xf7\xb9\x76\xe9\xbe\x28\x0a\x99\x03\x3c\xb7\x9b\xba\x06\x08\x56\x2b\xf8\xfd\xdb\x00\xda\x44\x66\x8b\xb9\x88\x1d\x4c\x6c\xff\xa2\x23\x3f\xa4\x95\x8e\x7d\x7e\xce\xe9\x2e\x0c\x92\xa4\xb7\x1e\xc6\xab\xa2\xef\x82\xed\x8e\xc6\x78\x97\xbd\x2c\xbf\x1e\xe6\xfc\xaa\x83\x0c\xf5\x23\xb3\x5e\x7e\xa8\x3c\xa5\xa4\x2f\x52\xf1\x3b\x72\xb6\x02\x71\xcf\xaf\x2b\xd7\x64\xc5\xc6\x45\x18\x33\x8d\x8c\x50\xf8\xd2\xa3\xf1\x4d\x85\x75\x73\xe9\xc5\x03\x5e\xf7\x7c\xe0\x5c\x74\xb8\xdb\x87\x35\x3d\xf7\x61\x55\xcd\x1f\x86\x51\x44\x1d\x9d\x34\xc1\x9b\x97\x75\xf5\x08\x85\x6c\x89\xe9\x6b\x32\x14\x3f\xdb\x4a\x6d\x6e\xc2\x48\xb5\x00\x01\x8e\xc2\xd7\x15\xcc\xf5\xdc\x1c\x29\xe5\xc4\x90\xd6\x77\x1d\xce\xe5\x54\x60\x37\xa2\xa1\x44\x04\x17\x65\x65\xd1\x06\x1c\x19\x84\xc6\x2e\x84\x38\x1d\xf8\x3c\xf2\x61\xd5\x8e\xf6\x9a\x22\x33\x20\x1e\x17\xb8\xba\x22\x55\xaa\x64\x4b\x55\xaa\xab\x0f\x59\x67\xaf\x39\xe3\x53\xb3\x97\xea\xd2\xbf\xa9\x89\x7b\xc9\x10\x49\x44\x2d\xbc\x24\x7d\xd1\x7e\x44\x3e\x56\x2d\xe1\x79\x92\x0e\x11\xc5\x96\xc6\x48\x88\x49\x7d\x75\xf2\x74\xb0\x15\xdc\xf7\xec\xb3\xad\x38\x41\x5b\x23\xc2\xbf\x3f\xa1\x48\x85\xaf\x95\xaf\xde\xdb\x88\xcd\xc8\xa6\xf0\xa5\x45\xe3\xce\x17\x98\xbe\x5f\x27\xd9\x67\xf2\x3c\xcc\x8b\x9e\xd5\x75\xcf\x33\x8a\xad\xfc\x4c\x8d\x06\xdc\x52\x6b\x68\x4d\xcc\x24\xc6\x70\x58\x00\x48\xe5\x6b\xcd\x09\x91\x9b\x15\x8b\x2a\x17\x92\x25\x37\xa9\x38\xe6\x62\x0e\xaf\x8f\xac\x98\x35\x0f\xe3\x74\x61\xb9\x63\xa5\x68\xf3\x40\x55\x7d\x92\x22\xef\x47\xc9\x7a\xd6\xf4\x5d\x2e\x17\x28\x9f\xe9\xa8\x8e\xf7\x2f\xba\x6c\x98\x77\x19\xd7\xcd\x4a\xb9\xd4\xbd\x0b\x76\x7e\xac\xd8\x3a\x19\xf1\x09\xff\xfc\x03\x15\xa8\x84\xc3\x51\x9a\xac\x85\x99\x10\x62\xd6\x89\xc7\xd7\xc9\x34\xe4\x26\xcd\x3d\x5f\x1e\x43\xc2\x68\x95\x08\x3c\xcc\x7b\xcb\x76\xad\xf4\xc2\x73\xca\x1c\x32\x1e\x11\x71\x13\xa6\xef\x82\xea\x4b\x60\xbc\x2d\xff\x43\x0d\x29\xf8\x81\xd6\xc0\xa6\xac\xe2\xee\x68\xf2\x97\x96\x45\xa2\xf4\xa2\x6e\x66\x1a\x9a\x19\xb5\x86\x8f\xaa\x9e\x78\x24\xe2\xb1\x05\x6e\xe8\xa6\xa1\xd3\x53\xe9\xce\x94\x49\x80\x98\x03\x40\xf1\xf4\xfe\x62\x4d\xf7\x70\x39\x6b\x6e\x44\x04\x5d\xa6\x90\x66\x15\xab\x26\x58\xf2\x7e\x12\xe9\x8f\x4a\x76\x4f\x73\x87\x55\xe6\x60\x79\x5f\x2b\x2b\x46\xa5\xdb\x2c\x11\x05\x0c\x0b\x1c\x0f\xbe\xae\x55\xd2\x33\x6b\x6b\xdc\x70\xeb\x28\x1e\x7c\x6f\x6e\x25\xc1\xb1\xb4\xbc\xd4\xea\x27\xc4\x2f\xaa\xea\x8b\xc0\x87\xf0\x75\xe0\x39\x05\x4c\xaf\x97\xda\x2c\xb3\xe8\x8f\x13\x57\xae\xe1\x54\x06\x6e\x2a\x8c\xcf\x91\x1a\xc2\x54\xf0\x07\xf1\x0b\x71\x9d\x3b\x50\x04\x80\xe7\x55\xeb\xcf\x4a\x69\xfe\xe2\xa1\x1d\xc2\x2c\xb8\xc4\xa9\x27\xb5\x7f\x5f\x91\x06\x47\x26\xee\x65\x51\xd8\xb3\x19\x0a\x6c\x1c\x10\x60\x1d\x4a\x74\xb0\x57\x93\x23\x94\x8b\xb6\x37\xe3\xeb\x3c\xdb\xdb\x0a\x23\x79\x46\xe1\x90\xe0\xa3\x23\x93\x71\x54\xa9\xe7\x98\xee\xd7\x8b\x30\x0b\x99\x54\xe0\xe5\xf9\x83\x9e\xf7\xde\x39\xcb\x23\xf2\xd6\xa5\xa1\xfe\x09\x5d\xfa\x4d\x62\x74\x72\x33\xf3\x4d\xe0\x4b\x12\xb7\xb0\xb3\xf1\xeb\x40\xcb\xc2\xd3\x38\x4a\xb6\x41\x18\xad\xea\x04\x87\xbb\x49\x9e\x27\xb1\x96\x7e\x55\x40\x89\x4b\x8a\x3a\x35\xb6\xdd\x5d\x34\xe1\x48\x1d\x20\x53\xee\xae\xf7\x4b\x4a\xf1\xa2\x6e\x03\xb9\x83\x03\x16\x4d\x9c\xc7\xc7\x5a\x9a\xe0\x8c\x26\x53\x1d\xab\x2a\xc6\xdd\xba\xd6\xe7\xb5\x30\xcd\x0b\x04\xed\x22\x6b\x41\xdf\x2c\xba\x16\x3e\x2d\xfd\xb5\xa4\x93\xcd\xd2\x68\x08\xfd\xaf\xaf\xf5\xc3\xf2\x32\x36\x30\x50\x2d\xa5\x17\x35\x0a\xa3\xca\xe0\x44\x04\x02\x79\x98\x4e\xe7\xcf\xaf\xab\xfc\xf9\xf5\x4a\x18\xf8\x1c\x25\x9e\x9a\xbe\xfb\xf3\xa1\xea\x34\x67\x21\x5e\x9c\xe0\x77\x5d\x65\xe3\xd5\x84\x55\x81\x74\x6b\xb2\xc4\xbf\x5a\x09\x65\x63\x87\x8a\x00\x10\x1a\x63\x3b\xfd\x99\xa2\x9d\xdc\xa4\x0c\x8a\xcc\x4a\xe9\x71\xc2\xc7\xfe\xf3\xc0\xbb\x89\xef\xb8\xe8\xa1\x67\xd7\x6c\x94\x8c\xe8\xc0\x9e\xa5\x29\x44\xbc\xf9\x2e\x7d\x8b\xd0\xa6\x62\x06\x9d\x84\x8e\xc7\xcd\x31\xcb\xa3\xe8\xe9\xd4\xa9\xa9\x8e\x52\x67\xd0\x90\x30\x7f\x8f\xde\x8f\xaf\x9d\x63\xdd\x0b\xa3\x32\x2c\x34\x22\xc7\xec\x82\x09\x8f\x3a\xbe\xa8\x45\xd1\x93\x75\x08\x17\x8b\x85\xa3\xe7\x10\xd3\xe7\x98\xf7\x93\x34\xcb\x77\x2a\x3c\xcf\xaf\x8e\x7d\x0d\xf5\x31\xa0\xea\x90\xed\x7c\x4d\x47\xb8\x37\x14\x86\xfb\x71\x74\x89\xc2\xda\x7f\x16\x08\x19\xe0\xcc\x37\x2b\x48\xcd\xe7\x5a\x66\x68\x59\xda\x02\x41\xc9\x1d\x92\x5a\xe0\x6b\x2f\xd4\x3f\x2a\x52\x41\x75\xa3\x3a\x77\x46\x83\x59\xcf\x4c\x41\x9f\x46\x69\xb2\x43\x29\x13\xa1\xba\xe4\x60\xb2\x8b\x8b\x5e\x98\xf0\x0b\x2f\x73\xe6\x00\x49\x6d\x27\x72\x52\xbe\xa5\x78\x90\xfe\x54\x1c\x84\xa0\x43\x73\x6c\xdb\x4e\x5d\xf4\xb4\x4a\xb4\x74\xca\xd9\x43\x19\x12\x48\xfb\xb7\x68\x61\x48\xa3\x5e\x43\x43\x76\x5d\x4f\x22\x20\x18\x78\x6b\x08\xd9\x21\x0d\x71\xa4\x92\x0f\xfb\x7c\x19\x23\xa5\x40\xb7\x68\x5d\x01\x64\xd1\xa4\xc9\x68\x8f\x12\xa9\xeb\xae\xce\x7a\x0b\x74\x3d\xf0\x16\x08\x99\x26\x4c\xe0\x76\xe4\xcf\x35\xdb\x00\xa6\xf9\x76\x9d\x87\xd8\xb3\x99\x4d\xd7\x04\x11\xe2\x68\xf5\xbd\x3e\xf3\xf9\x4a\x5c\x20\xe4\xa0\x96\xf3\xba\x82\x90\x51\x68\x19\xc5\xb0\x43\xf9\xc7\x74\x68\x7b\x10\x38\x16\xb0\x8f\xd2\x22\x04\xab\x0e\xc2\x41\x66\x57\x17\x18\x50\xc3\x11\x28\x3e\xa8\x58\xa8\x83\x2f\xb6\xa2\xb0\x6b\xe3\x0c\x7b\x41\x90\x24\x0a\x55\xe2\x29\xe6\x22\xcb\x9a\x66\xdc\xf6\x40\xf3\x28\x2d\x10\x3e\xa3\x13\x25\xab\x16\x05\x12\x69\xe5\x52\xc4\x11\xc7\x35\xa7\x43\x12\xa1\x1d\x1d\x85\x06\x66\x91\xe7\x52\x8e\xe6\xc3\x54\xfe\x3b\xc8\x61\xa2\x0c\x44\xb3\x70\xbb\xc0\x6f\xc3\xd7\x75\xae\x40\x96\xa7\xd6\xac\xc2\x2b\xd5\xa3\x25\x1c\x30\x8f\xab\x71\x36\xdd\x01\xfe\x90\x17\xff\x94\x54\x7c\x0d\x5a\x65\x54\x3a\xef\x0d\x15\x36\x42\x76\x9f\xaf\x55\x8c\x15\x99\x72\x9d\x12\x19\x05\x52\xaa\x97\xe9\x15\x61\x5a\x4f\xd1\xde\x43\x7c\xfb\x7a\xdd\x31\x62\xd2\x61\xe2\x8e\x11\xad\x85\xc7\xd7\x75\xbd\x03\xfd\xc8\x64\x83\x8e\xe1\xee\x62\xac\x71\xe0\x06\xf8\x5a\x21\x5b\x57\x52\x13\x8b\xe1\x14\x35\x48\x1f\x70\x5d\x1e\x7b\xa2\xac\xe7\x1b\x7e\x6b\xb2\xdc\x1f\xdf\x68\x87\xc5\xa6\x49\x6c\x8a\x9c\x60\x48\xba\x25\x80\x0b\x87\x7c\xa3\x24\x43\x3b\x45\xfe\x99\x72\x5b\xc2\x46\xbd\x37\x6e\x3c\xff\x15\xce\xe0\xbc\x36\x6e\x7c\x49\x44\x12\x2f\xaa\xea\xd0\x2e\xa2\x5d\x76\xd2\xc6\xce\x76\x01\x2f\x2e\x4a\x37\xe5\x78\xbb\x4c\xdd\x97\xbf\xc8\xc7\xee\xe5\x40\x45\xfd\xef\xe0\x44\x47\x61\xee\xda\x58\x91\x5f\xfd\x87\x40\x57\xa0\x8f\x05\xaa\xb7\xbe\x39\x51\xf4\xde\xdf\x46\x70\x0e\xdb\x75\x25\xa0\xb5\x29\x34\xab\x65\xbc\xe5\x98\x07\x5c\xed\xe0\x4a\xa0\x78\x13\xae\xa2\xb9\x09\xce\xfd\x5b\x54\x36\x07\x9a\xe7\x06\x0e\x2f\x91\xfb\x52\x5c\xa4\xd5\x44\x03\x54\x70\x40\x27\xde\x70\xda\x91\xa7\x54\x0e\xef\x54\x25\x15\xb6\xf4\xe2\x81\x96\x3d\x64\xbb\x05\x35\xcd\x36\x1c\xa5\xca\x1f\x2b\xe6\x9c\x3f\xae\xac\x7a\x42\xb3\x65\x39\x67\x4e\x5c\x98\xb7\xdf\x87\x79\x0a\x06\x5c\x84\x51\xcf\xa6\xd9\x4c\xf9\xcf\xd2\x63\xa0\x04\x3e\xa0\x1a\x00\x97\x1c\xbd\x05\x72\x82\xd4\x38\x73\x79\x38\xec\x4c\x51\x5d\x7f\xa8\xa8\xae\x3f\xd4\x52\x06\xe0\x5d\xa5\x23\xa1\x9c\xb2\xda\x7a\xbd\xa3\x72\x1b\xd8\xee\xaa\x14\x33\x5c\xd4\xbd\xa8\x2b\x7d\x1c\x7c\xc6\x2b\x61\x6c\x6d\x0a\x2b\x2c\xcd\x48\x00\x68\xe0\x08\xfd\xa7\x9a\x04\xe0\x9b\xaa\x55\xe2\x32\x4d\x2a\xd6\xea\x69\xf7\xcb\x59\xd2\xcf\x89\xcc\xa7\xe1\xd4\x66\xae\xa8\x62\xfd\x15\x45\x12\x65\x7a\xbd\x90\x19\x7d\xcb\x95\x06\x8b\xc9\xae\x28\xdf\x8c\xb7\x72\x92\xa1\x53\x61\x64\xd3\x7c\xe3\x9f\xfc\xfd\xae\xc9\x0a\x22\x48\xf2\xc9\xfe\xdb\xca\xdf\xbf\xad\xa8\x22\x56\x8a\xc8\x4b\x34\x8b\x30\xba\x07\x02\x7f\x1c\x78\xe2\x81\x4b\xe7\x94\x3f\x30\x4c\x3a\xcc\x20\x26\x9c\x4b\x1e\xa0\x71\x5b\x71\x36\x1f\xad\x93\x62\x8a\x93\xdc\x76\x92\x64\xb5\xe9\x23\x1a\x16\xa1\x76\x1c\x83\x3e\x00\xff\x17\x53\x28\x8d\x64\x24\xf8\x9f\xaf\x3a\x06\x40\xfa\x63\xc9\x9c\xd5\x95\x67\x3a\xb6\x6b\x88\x60\x76\x79\x9f\x87\x6a\xed\x77\xb0\xad\x8a\x3d\x5d\x58\xa0\x9c\x5c\x3a\x4c\x7a\xa6\xe1\x5b\xd1\xf8\x0c\xe6\x9b\x1a\x20\xc4\x7c\x6b\x50\xa4\xf9\x8c\xcf\xc0\x20\x7e\x71\xf8\x2a\xdf\x21\x3e\x33\x45\x89\x59\x25\xde\x5d\x6c\xf5\x8b\x34\x1f\x30\x39\x37\x52\x5b\xe8\x7f\xe5\xeb\x4a\xcb\xeb\xc2\x42\x2b\x59\x6d\x94\x56\x0f\x6f\xf5\x51\xe0\xbd\xd2\x8f\x14\x4d\x11\x93\x94\x9b\xb8\x6b\x51\xe4\x85\xed\xba\xad\x18\x8e\x2e\xa0\x2f\x58\x08\xa1\x15\xab\x1b\x90\xb3\x70\x16\x20\x81\xa7\x30\xed\x07\x5c\xa3\xef\x53\x4a\x67\xc4\x66\xac\xb3\xeb\xca\xc3\x97\x03\xdf\xa5\x73\x59\x2d\xfb\xd4\x66\x96\x89\xd4\x96\x25\x1e\xba\x46\x7f\xcb\xd7\x9f\xd8\x55\x9f\x85\x2b\x82\x3b\x85\xd9\xb9\x8f\xd5\xc4\x37\xca\x58\xd8\x43\x24\x7d\xc8\xfe\xa3\x20\x92\x79\x09\x09\x60\xd3\x1f\x6d\x48\x73\x11\x91\x5c\xd6\x54\xea\x97\xa7\x94\x14\x2b\x8e\x76\x4c\xcb\x8f\x2b\x09\x17\x92\x5d\xcf\x36\xb2\xdc\x0e\xa5\x4b\x16\x29\x27\x48\x3f\x48\xbf\x97\xea\x99\xff\x65\x95\x18\x89\xc3\xae\x49\xcd\x4a\x61\x1a\x2a\x0e\x3d\x3b\xa5\x9a\x5f\x39\x1b\xe6\x0f\xb6\x86\x49\x9c\x8c\x12\x11\xdf\x95\x2c\xbe\xce\x5c\x57\x1f\xf3\x40\xab\x9f\xa4\xb6\x6b\x20\xc6\x26\xa8\xf4\xc3\xd8\xff\x7c\xa3\x81\xdb\xeb\x9e\x91\x48\x5c\xd1\xab\xb0\x88\xd2\xfa\xef\x1d\x8e\x61\x12\x67\xd4\x69\x51\xfe\xb3\x30\xc2\x61\x30\xa6\xe2\x29\xf8\xfd\x77\xc6\x9f\x94\xf1\x22\x66\x23\x50\xd6\x2b\x22\x57\x45\x5c\x51\xed\xe0\x3a\xf8\x22\x15\x9d\x06\x49\x84\x04\x3b\xaa\xa8\xd7\x15\x67\x0b\x92\xcd\x70\x21\x0e\xeb\x3c\x79\x94\x64\xb6\xf7\x48\xe9\x77\x30\xd5\x8a\x8a\x32\x1a\xc4\x42\x2e\xbd\x71\xf0\x15\x58\x65\x9c\x56\x2c\xa2\x9f\xcb\xba\x0a\x73\x5e\x9d\x78\xf7\x15\x22\x9c\xb9\xd6\x24\x63\xe7\x6a\xe3\xa6\x1b\x9a\x88\x72\xfb\xb0\x90\x8f\xd2\xe9\x09\x27\x82\xdb\xd6\x58\xb9\x63\x2a\xbf\x9c\x86\xab\x96\xb8\x22\x9c\xe8\xa9\x92\xa3\x51\xe5\xb9\x46\xdb\x33\x7a\x9d\xd5\x24\xa0\xcc\x2c\x0c\xe4\xea\x43\x95\xdc\x32\x61\xda\x49\xd2\xd8\xc2\xf8\xaa\x63\xd6\x53\x17\xf9\xf3\xa1\xbb\xca\xcc\x83\xb5\x42\x44\xae\xdb\xfd\x50\xd7\xa6\xa3\x3c\x9b\x51\xda\xa0\xcd\xb6\x4f\x9e\x5d\x52\x0d\x65\xfc\x5c\x78\xc8\x23\xfe\x5c\xcd\xcd\xc8\x67\x94\xb1\x9c\xd0\xc6\xc3\xd7\x15\x88\x87\x27\x07\x36\x29\x5b\x0d\xfc\xe9\x76\x8c\x2a\xdf\xb4\x75\x4a\xb7\xc8\xec\x67\xca\x53\x1d\x2f\x70\x6e\x8a\xa9\x03\x35\x67\xd8\x9a\xd9\x49\xe9\x9b\x0a\x6b\x2f\x0d\x94\x00\x62\x4b\xdf\x90\xf1\xbc\xd8\x27\x58\x23\x8f\x01\x1a\x81\x24\xc1\xe5\xf1\x14\x9b\xf5\x4b\xfb\xd8\x26\xbd\x41\x2e\xb2\xfc\x38\x76\x0e\x3c\x96\x6b\xfa\x54\xd9\xde\x6e\x3c\xfb\x2c\x9f\x84\xc7\x74\x39\xef\x8f\x91\xba\xe2\x47\x09\x3c\x90\xfa\xcf\x09\x73\x2c\x71\x6b\xb9\x72\x31\x09\xd7\x28\x56\x47\x81\xfd\x8a\x92\x26\x63\x99\x2e\x9c\x68\xbc\x09\x90\x7b\x6a\x40\x32\x05\xd0\xa0\x93\xb5\xa4\x62\x44\x7e\x32\x14\xc8\xa2\x7c\xfd\x37\x03\x55\xcc\xff\xe6\x78\xb7\xc7\x1d\xdb\x27\x68\x68\xe4\xa9\x95\xc8\xdb\x8d\xb1\x22\xf9\x7a\x74\x52\xc6\x0c\x48\x92\x02\xd0\x2f\xca\x77\xf4\x78\xba\x9e\x02\x5f\x0b\x74\x13\x22\x5c\xe0\x45\x81\xb7\xb7\xb5\xfc\x38\xe7\x1b\x31\xb2\x8f\x83\x3c\x9b\xfc\xa7\xdf\x64\xba\x29\x38\x0f\x7b\x15\x69\x2b\x75\xa4\x6d\x6a\x90\xc4\x9c\x89\xa1\x35\x04\xfb\xb2\x8b\x1e\x95\x7e\x6d\xe7\xa7\xd1\x7c\x25\x05\x7a\xfa\x7e\x2d\x8c\xc2\x0c\x18\x2e\x24\xa7\xae\x87\x5d\x8a\x9e\xeb\x2e\x3d\x3a\xe6\x6b\x47\xdb\x17\xe7\x76\x81\xac\x08\xc6\xe1\xe6\x58\xc9\xfa\x5c\xc4\xb0\xe1\xc1\xdf\x57\x28\xbd\x3b\x34\x3a\x58\x77\xa7\x54\xa4\x98\x15\xe9\x28\x2a\xd0\x09\x25\x54\x30\xe5\x5f\x0a\x47\x8c\x87\x4e\x44\xe1\x30\xcc\x6d\x6f\x47\xf9\xaf\x40\x6d\xbd\x8b\x4d\x82\x14\xe2\xaf\x05\x5a\x5d\xee\x9c\x6a\xcc\x66\xdd\x21\x6c\xeb\x7f\x45\x2e\x0e\x60\x42\x6f\x2b\x11\xac\x30\x8e\x93\x91\xe9\xd2\x73\xb0\x37\x45\x48\x45\xf1\xac\xb6\xc6\x0f\xcb\xfb\x5a\xc3\x10\x5d\xac\xe5\x33\x20\xf4\x3b\xaf\x82\x75\x4d\x43\x3e\xb0\x71\x8f\x84\xbc\x74\x41\xe4\x37\x60\xb0\xf8\xa6\xe2\xa1\x95\x3f\x60\xe2\xd8\xba\x30\xdd\x45\x80\xaa\xff\x6c\x6b\xc2\x6f\x61\xa1\x95\x25\x71\xd3\x43\x9c\x00\xba\x70\x5c\x0a\xe5\xd4\x4a\x11\x6e\xab\xd1\x5a\x5c\x6c\x8d\x92\x34\xef\x27\x51\x98\xb0\xd1\x92\xd6\xaa\xc6\xa2\x9f\xdf\x3a\x67\xbb\x08\x33\x43\x60\x36\x97\x1a\x42\x2d\x96\xaf\x15\xd4\x26\xb3\xe9\x5a\xd8\xb5\x3b\xcb\x7f\xc5\x7e\xe4\x8d\x26\x62\x56\x64\x45\xb4\x4c\x2b\x4c\x12\x16\x85\x6b\x69\xf0\x60\x54\x46\x3a\x08\x91\xbc\x4f\x07\x45\xe1\x9a\x7d\xa4\x5c\xbe\xf0\x2c\x6e\x2a\x1d\xac\x4d\xfc\x24\x8e\xaf\xff\x0d\xbe\x8e\xeb\xc2\x5b\xde\x27\xab\xff\x28\x9c\x54\xbe\xa1\x87\xc1\x23\xdf\x99\x8a\x4e\x95\x72\xea\x85\x60\xb7\x5b\xd8\xcf\xf6\x76\xfa\xa2\x37\x48\xc7\x60\x9b\x37\xc9\x36\xc8\xe1\xe6\x2d\xf0\x29\xac\x07\x78\xec\x97\x21\x22\xe3\xa4\x12\x3d\x6c\xf7\xb2\x0a\x87\xd3\x64\x48\xc4\x23\x33\x9e\x74\xe2\x1c\xfe\xd6\xa5\x9b\x1c\x23\xc9\x7d\xcd\x00\x7c\xbf\xd2\x9a\xbd\xb8\x08\x90\x40\x16\xf6\x43\x59\x71\x8a\x72\x7e\x5e\x6e\xea\xdc\x1f\x71\xeb\xc8\xfd\x71\xfd\xd3\x0e\x5d\x7a\x56\x35\x1a\x8d\x2b\x95\xd3\x2f\xcd\x13\x2c\x85\xf2\x85\xa2\x69\xe2\xd9\x87\x2e\xba\x26\xb9\x4e\x91\x6c\xd8\xde\x8c\x6a\x3c\x7f\x0b\xaf\xca\x37\x18\x3d\xf1\xb6\x75\x77\x54\x0d\x48\x68\x40\x5a\x30\x0d\xea\x8c\x15\x05\x23\xc5\x3e\x70\x2c\x78\x42\xa7\x08\x37\x4c\xac\x94\xe1\xb7\x54\xf2\x9e\x50\x49\x2f\x6b\xf2\x6c\xd6\x63\x25\xb6\xb7\x55\xc4\x79\x09\x59\x19\xb9\x29\x5f\x51\x83\xc4\x61\x25\xaf\x69\xef\x70\x90\xa4\x45\x06\xc2\x72\xb8\x4a\xa8\xa8\xf1\xf5\xd8\x93\x53\x22\x63\x29\xd5\x90\xc7\x95\x4c\x4e\xba\x92\x68\xad\x73\x0c\x98\x68\xa6\xf9\x33\xe4\x6f\xff\xbd\x7f\xd0\xf0\xcb\xfb\x0a\x19\x3e\x39\x99\xb7\xfa\xf1\xe2\xdb\xd8\x35\x9b\xee\xf0\x7d\xc2\xd3\xfb\x40\xa7\x92\xe1\x1f\x22\x59\x71\x78\xec\x1a\xa3\xbe\xb0\xb7\xed\xb5\xd3\xcf\x56\xea\x56\xf3\x07\x5b\xa3\x04\x7d\x7b\xd2\xee\x54\x7e\x0d\x5f\xd7\x69\xce\x9b\x22\x2f\x86\x12\xa4\x71\x8b\x59\xe0\xd3\x13\x67\x95\x7e\x50\x6a\xd7\x42\xbb\x2e\xc2\xd9\x18\x8f\x8f\xd5\xf1\xfd\xb1\x42\xbc\x9a\x38\x1c\x9a\x68\x97\xef\xe2\xfb\x0f\x1a\xae\x78\x9a\x4e\x48\xb8\x0c\x60\x6f\x11\xf9\xae\x86\xeb\xb0\xff\xd3\x29\x16\x37\xcc\x81\xa2\x74\x5b\xe2\x15\x7c\xb2\xb6\xc4\x6d\xd2\xa4\x88\x7b\xcd\xd2\x57\x82\xff\x0e\xe4\x2f\xae\x1b\x34\x84\xd2\xe6\x54\x93\x63\x58\x0b\xbb\x79\x92\x86\x9c\x68\x47\xd5\xea\xa4\xc6\xc3\x9d\x74\xfd\x0f\xeb\x03\xd3\x5d\x95\x9d\x2f\xc4\x48\x0d\x47\x57\x59\xc5\x07\x2e\x2e\xb6\x28\xe7\x31\xa5\xa9\x79\x25\x50\x9a\x9a\x57\xea\x3e\x13\x0e\x1d\xa4\xd6\x85\x06\xe5\x20\xf0\x4d\xcd\x47\x96\x5a\xd6\xa4\xd1\x46\xd3\x27\x14\x09\x77\xb9\xb4\x79\x5e\xa9\x4d\xff\x48\x75\xf9\x41\xe9\xe9\x49\x7a\x12\xa9\x6c\xd3\x6f\x08\x37\x28\x79\x42\x18\x75\x24\x31\x10\xfe\xbf\x0d\x1f\xd6\xc1\x95\xe7\xe6\x1d\x5f\x82\xea\xc1\xbb\xbc\x45\xee\xd8\xbb\x83\x88\x2b\xf8\xbb\x68\x57\xe3\xac\x7d\x9c\xfa\xe9\x19\xd4\x11\x28\x05\xb0\x6b\xd3\x5a\xc9\xe5\x52\x72\xcf\x5b\xfa\xa5\x38\x3f\x1b\x8a\x9c\x9f\xd2\x53\x16\xb0\x5e\x14\x64\xb8\x33\x85\x6f\xd4\x01\x94\x7e\x4e\xf5\xe2\xfc\xda\xb4\xab\x54\xd3\x21\x04\x58\x7e\xf8\xaa\x64\xea\xf0\x4a\x70\x37\x14\x17\xd3\xbc\xd3\x4f\x7a\x52\x11\xf6\xc5\xb1\x34\xfc\x22\x73\xf9\x81\x2a\x32\x7f\xb0\x95\xf6\xed\xa5\x7d\xf3\xad\x97\xf6\xbd\xb0\xb3\x5c\xd3\x08\x14\x8f\x91\x53\xe6\x60\x93\x8e\x11\x8d\x41\x37\x88\xa8\x0f\x6b\x3c\xa5\x52\x3e\x61\x3a\x37\x89\x02\x9f\x54\x50\x89\xb0\x1b\xc6\x2b\xb3\xaa\x70\x76\x53\x0b\xa5\xbf\x3f\xf6\x15\x82\x8b\x8a\xbc\xe8\xbc\x76\xcc\xce\xbb\x0d\x52\x2e\xdc\x8c\x7b\x59\xf0\x6f\xb7\x35\x1f\x02\x93\xd4\xa2\x16\xf2\x64\xbb\x56\x00\x31\x4f\x72\x13\x29\xe5\xbe\x7f\x4d\x8b\x8f\xaf\xb5\xe8\xb4\xe9\xae\x0e\x12\x64\x13\x11\xee\xc0\x9e\xf0\xb5\xf2\x2c\x21\x30\x5e\xba\xc5\x34\x52\xf8\xf5\xbb\x5a\x0a\xff\x7f\xa5\xb7\x44\x5d\x68\xcf\xc4\xcf\x26\x12\xcd\xfc\x37\x81\xa2\x75\xfc\xc5\x4a\xf7\xde\x73\xad\x55\x1b\x45\x1b\xff\xe4\xef\xaf\x99\x34\xb6\x51\xa4\x45\x65\xc1\xbb\xcf\xd7\x2e\xeb\xdb\x4d\x93\x2c\x73\xfa\x72\x48\xfa\x1e\x1e\x2b\x01\xc6\xc3\xea\xf4\xf9\x07\xff\xf9\x7f\xd6\xf0\xf1\xe2\x25\xda\x77\xd2\xc5\xe2\x13\x55\x61\xdc\xb7\xd4\xc9\xce\x18\x2b\x54\xb7\x98\x5c\x95\x6f\x5c\xc8\x9e\x8c\x46\x49\x16\xe6\x96\x1c\x23\xa7\x29\xeb\x38\xcb\x50\x26\x60\xee\x0f\xa0\xb4\x24\x39\xe2\x0b\x8f\xa3\xd0\x76\x2d\xcd\x36\x93\x92\x07\x1e\x53\x77\x7f\xac\xf0\x03\xd7\xab\x86\x9b\x50\xa1\x43\x93\xa2\x56\x86\x31\xfe\x98\xf6\x04\x5f\xab\xb8\xa6\x6b\x86\x23\x6b\x8a\x59\x9f\xa9\x7e\x8d\x86\x40\x1a\xac\x3c\x5e\xfb\xbe\x3e\x2e\x98\xd4\x96\xb5\x9f\x2b\x10\x2e\x82\x25\x27\x45\x9c\xdb\xb4\x1b\x99\x70\x38\x25\x0f\x78\x54\xb5\xee\x1e\xad\x03\x20\x0f\x8a\x95\x15\x97\xf1\xd0\x14\x8f\x7c\xad\x36\xff\x68\x90\xd8\x38\x3c\xc4\x99\x47\xc4\xb2\x67\x02\x05\xe3\x62\x92\x1c\x9c\xac\xff\x8f\x92\x90\xd8\xd2\xcb\xb8\x49\xd2\x90\x9b\xc7\x15\x92\x2a\x8c\x7b\x2c\x7e\xd2\xd0\x51\x8f\x97\x37\x7d\xcf\x27\x69\xa2\x70\x34\x32\x2b\xdc\x7e\xe7\xf0\xed\x8b\x1e\xf7\xee\x15\x1b\x06\x1b\xa3\xa4\x9b\x86\xd9\x86\xc6\x1b\xe8\x6a\x51\x85\x1b\x63\x61\x81\xf8\xff\xb5\xfe\xe1\x45\xd5\x26\x5d\x15\xde\xc3\xf0\x0f\x3b\x26\x57\x3a\x8e\x97\x94\x8e\xe3\x25\x87\x78\x31\xdd\xae\x8d\x6c\xaa\xba\x88\x98\x46\x20\xf0\x8b\xf4\xb7\xff\x7f\xc6\xfe\x34\x48\x92\xf4\xbc\x0f\xc3\x67\xaa\x7b\x66\x76\xf6\xc4\x1e\x00\x44\xfe\x83\x7f\x17\x25\x04\x20\x45\x00\x30\x45\xdb\xe1\x30\xec\x70\x96\x67\x06\x58\x4c\x07\xd9\x3b\x31\x33\x98\xa5\x36\xfc\x61\xb3\xb3\xde\xae\xca\xed\xac\xcc\x42\x66\x56\xf7\x36\xc2\x1f\xf4\xc1\x76\x28\x6c\x05\x83\xb6\xe5\xa0\x22\x24\xd2\x92\x6c\x53\xb2\x28\x45\xf0\x02\x49\x51\xb0\xb3\x48\x1c\x04\xb0\xe0\x62\x17\x7b\xef\xec\x31\xf7\xd1\x33\x3d\xf7\x7d\xf4\x38\xf2\xfd\x3d\xcf\xfb\xfe\xaa\x2b\x37\xe8\x6f\x99\x33\x5d\x55\x79\xbc\xc7\x73\xfc\x0e\xca\x98\xfb\x26\x19\x8c\xca\xfe\x0c\xb9\x5f\x9f\x25\xf1\xc9\xcb\x18\x24\x98\xe4\xaf\x4f\x75\xdb\xf6\x1c\x6c\x97\x99\x35\x0d\xf3\x2a\xc6\x48\x5b\xd5\x14\xff\x53\xe4\xa5\x94\xc7\x4b\x8a\x4b\x73\xf8\x7f\x57\x53\xbe\x40\xfd\xd6\x22\x7e\xf9\xe1\x96\x93\xf2\xfe\x63\xc2\xa6\x0a\xff\x1d\x3d\xc3\x07\x52\x59\x12\x5c\x99\x7d\x93\xc8\x8a\xde\x47\x92\xae\xe2\x8f\xf6\xe6\xb0\x63\xde\xc4\xfa\x8e\xcd\xe4\x56\xe0\xd5\xbb\x84\xcc\x2d\x1f\x69\xa2\xaf\x16\xe1\x72\x9c\xf6\x64\xe8\xe3\xef\xfe\x07\x7b\xaf\x72\xdc\x00\xe3\x6c\xa7\x46\x1c\x73\xb0\xa3\x3e\xa8\x7c\x4b\xe7\x9e\x0d\x11\x71\x27\x8f\x75\xa6\xa5\x23\x9e\xad\x9f\x58\x58\x9a\x5e\xac\x3d\x7c\x27\x60\xb2\xdf\x8b\x02\x3e\x49\x3a\x73\x49\x6c\x96\x8d\xe0\x9c\x10\x33\x9d\x0c\x5a\xcf\xef\xf3\x76\x91\x75\x14\x20\xff\x61\x07\x28\x6a\x31\xb3\x63\xb2\x3b\xbc\x1d\x10\x68\xd6\x99\x39\x3f\xec\xc3\x92\x0b\xc1\x04\x9b\xd9\x7e\x14\x03\x1d\x52\x3d\x1b\x97\x98\x15\x7f\x19\xeb\x0a\x2a\xca\xa0\xf0\xe2\x45\xfe\x2f\x68\x72\x63\x59\xba\x1a\x50\x99\xe8\x0a\xe9\x91\xde\x9a\x8a\x2d\xea\xc5\x30\x4e\xa3\xdc\x84\xba\x7b\xaa\xcb\x92\xfd\x55\xac\xc8\xaf\x54\x84\xab\x3a\xe6\x90\x68\x2f\xc9\xcc\x17\xb3\x39\x5c\xbb\x3a\xcf\x35\xbc\xbc\xc5\x4c\x9f\xbc\x8e\xb0\x09\x4b\xc4\x69\x38\xd8\xb3\xed\x24\x5b\x31\xf9\xac\x67\xb4\x9e\x45\x9e\x86\x64\x7b\xc6\x16\xfb\xb0\x74\xbd\x53\x91\xcf\xde\xb5\x09\x02\x95\x09\x87\x56\xf1\x81\xab\x40\x88\x1c\x91\x81\xcb\xb1\x1d\x3e\x5a\x1d\x6a\xc8\x60\xec\xae\x55\xe7\xb8\x75\xea\x3f\x11\x79\xe2\x6a\xce\x90\xde\xdd\x69\x8e\x3d\x2e\x10\x2a\xcf\xf4\x84\x17\x87\x4c\xff\x23\xb0\x8b\xe4\x64\xaa\x2b\xe3\x9c\x0e\xc3\x32\x9c\x61\x01\x9e\x0d\xbc\x60\x2c\x0a\x52\xb6\x46\xf8\xf1\xb6\x87\x8d\x99\xb0\x97\x8b\x89\x25\x8a\xd3\xe2\x6f\x28\x27\x4d\x59\x9a\x60\x83\x67\xc9\x38\x00\xde\x73\xf8\x4c\xab\x43\x12\x11\x27\x59\x51\xcd\x8d\x89\x7e\x5c\x3e\x51\x7f\x00\x70\x0e\x38\x32\x62\xe9\xdb\x32\xb6\x4f\x0e\x05\x9f\x1f\xe2\xc9\xa1\xc9\xfc\x64\xc7\x6e\xf2\xf8\xb3\xb3\x30\xe5\x56\x0d\x7d\x8f\x18\x10\x36\x09\xb6\xe8\xc7\x3b\x88\x33\x48\x46\x43\x4b\x46\xd7\xec\x7c\x56\x3d\x2f\x7b\x27\x78\x29\xf7\xed\xc6\x8d\x1c\xf8\x28\xab\x0c\x5f\x65\xcb\xd5\xdb\x3e\x4c\xca\x86\xab\x79\xdc\xeb\x8b\x6c\x1b\xe2\xdc\x3b\x41\xeb\x57\xf7\x78\xf7\xbb\x43\x5e\x7b\xbd\xbe\x52\x64\x14\xf7\xb0\x5a\x2a\x25\xd7\x07\x29\xa7\xd8\x53\xe6\x1c\xe1\x76\xa3\x6c\x35\x2b\x65\x77\xc4\x63\x38\x8a\x12\x93\x9c\x38\xb1\xb9\x61\x56\x94\x3b\x7d\x26\x72\xd4\x52\x8f\xe5\xca\x98\xa6\x8f\xfe\xb2\x34\x28\x71\xaf\xb2\xf9\xcb\x1a\xcf\xe0\x51\x3b\xfc\xfe\x5b\xf1\xd0\x46\x59\xe0\x0a\xde\x8f\x46\x8e\xdc\xa4\x8d\x4c\xbc\xac\xf9\x84\x13\x68\x73\x80\xe3\x23\xd5\xce\xb8\x3d\xcc\xcd\xe2\xdf\x6d\xff\xea\x2f\x78\xfc\xd3\x43\xd0\x39\xc3\xbe\x77\x1f\xf2\x9b\xa8\x61\xdc\x47\x74\xab\x6a\x16\xb8\x3a\x70\x16\x7e\xa1\xd3\xfa\xc6\xd7\x9d\x18\x02\x75\x25\xb7\x8e\x6d\x2a\xe8\x42\xc7\xfd\xbb\x24\xf5\x94\xbe\x98\x5d\x86\x7f\xff\x4b\x1d\xc2\x76\xcd\x8c\xeb\x95\x5b\xa7\xb7\x2d\x1d\xda\x5a\xc0\xff\xef\xe9\x4e\xfd\x08\x05\xe8\x8a\x78\x55\x64\xaa\x02\x8f\xe6\x81\x4c\xbb\x38\xbc\x02\x08\x8a\xb7\x7b\x1b\xcb\x0e\xbe\x77\x23\xb0\xb6\x82\xe4\xb1\xf1\xac\xcb\xb5\xed\xe3\x44\xf5\xe1\x0a\x06\x25\xde\xe0\xd3\x63\x2f\x9c\x71\x83\x38\xb8\x5b\xc6\xa4\xae\xf6\x86\x1d\x68\xe0\xb7\x7c\x4a\x7c\xf6\x31\x5a\xef\x5a\xc8\x2e\x2e\xec\xec\x54\x99\x66\x6e\xae\xdd\x4d\x81\x60\x50\x1b\x66\x72\x38\x15\x29\x07\xac\x4b\x89\x89\xca\x3c\x1b\x84\xbd\xd4\x94\x82\x3b\xc1\x80\x01\xa4\x50\x8e\x9b\x98\x01\x8b\x59\xae\xf1\xab\x64\x6e\x81\x87\x56\x1e\xf6\xfa\xda\xa2\x2f\x6d\x2b\x70\x36\x46\xde\x78\xaa\xe3\xc1\xa1\xb2\x94\xea\x50\x6e\x39\x97\x0a\x51\xcf\xd0\x47\xf7\x49\x4b\xe4\x20\x2b\xca\xed\xf6\x91\x61\xca\xdc\xc5\x1c\xd4\x8a\x97\xb7\x04\xb9\xc8\x01\xef\xa7\xc6\x3e\x60\xda\xc0\xa8\xb0\x00\xa3\xdf\xfe\x1b\x9d\x47\x7d\x8d\x29\x37\x3f\x67\xdf\x32\xb2\x90\x37\x6d\x85\x18\x6b\xe0\x6d\x0b\x45\xc3\xe3\xfc\x41\x35\xd1\x7a\xf2\x2a\xd1\xf7\x83\xd6\x57\x7f\xcd\xd9\xd9\xd5\x73\xc2\xae\x7a\x9f\x7d\xc6\x0e\x6f\x44\x4e\x47\xd0\x44\x44\xb1\xe8\x51\x40\x3a\xb1\x93\x42\xc8\x1d\x4f\xf3\x11\x8b\x82\x13\x83\x63\xac\x25\x48\x4f\x61\xa3\x84\x07\xb6\xb5\x43\x44\xe0\xed\x98\x29\x98\x03\x5b\xac\x7a\x1f\x06\xcb\x23\x63\x3b\xed\x50\xb1\x7b\x48\x1a\x5f\x6a\xf2\x61\x1f\x04\x22\xa9\x8f\xa9\xd3\xf6\x0f\x9e\x1c\x93\x5e\x10\x1c\x35\x30\xf2\xb7\x63\x6d\x97\xe6\x3a\xca\xf4\xf2\xf9\xe0\x33\x9b\x95\x6f\xf7\x59\x50\xc4\xc3\xbe\xf2\x29\x1a\x3a\x52\xc0\x93\x25\x00\x37\x23\xac\x60\x04\xf2\xc7\x10\x2a\xe1\x59\xfc\x6e\x40\xae\x68\x02\x18\xc2\x9c\x44\xd9\x5e\xf4\x99\xec\x48\x42\x67\xfe\x2e\x42\x1a\xed\xb0\x90\x47\xdc\xa8\x1b\x9b\x34\x32\xc5\xec\xa4\x1b\x38\x21\xde\xec\x04\x44\xad\x6d\x8d\xea\x6e\x6b\x14\x8f\x77\x2d\xef\xaf\xd8\x41\x26\x97\x97\x6c\x17\x15\x1b\xf3\x05\xfc\x3a\x86\xc4\xeb\xb6\x04\x8e\x57\x7f\x8d\x69\xd8\xaf\xdb\xf1\x21\x9f\xb0\x03\x0d\x95\xcc\x56\xe7\x49\x37\x8f\x4c\xd8\x1d\x58\x7b\x75\x02\x49\xa1\x0b\xa4\x15\x7a\x0f\xd3\x30\x2f\x97\x26\x8f\xb3\xbc\x55\x8f\x53\x31\xd4\xc0\xd3\x56\x77\x8d\x86\xba\x64\x68\xf2\xac\x18\x86\xd2\x32\x42\xe0\x39\x6b\x93\x72\x39\x1e\xfb\x1f\xb0\x14\xad\xb8\x5c\xb5\xd6\xbc\xea\x2c\x58\x4f\x04\x75\x1c\xf4\x36\xed\x8b\xf1\x62\xd9\xb7\x5f\x29\xef\x09\x33\x51\x5f\x9a\x4f\x57\x06\x03\x86\x0b\x9d\x9a\x98\x3e\x5e\x9d\x2e\x8d\x42\x02\x0a\x5d\x64\xa0\x21\x9b\xc2\x2e\xe6\xc6\xec\xf0\xca\x8f\x7f\x55\x91\x69\xe0\x1b\x2c\x4e\x8f\x47\x88\x80\x57\x04\x37\xdd\xe4\x52\x8e\xed\xff\xc8\x10\xf2\xb5\xca\xf7\xb3\xa2\xb0\x30\x8f\xd5\xbf\xa2\x8a\x61\xf5\x78\x91\x30\x1e\x50\x4e\x8d\x2e\xec\xdc\xc0\x9a\x77\x98\x74\x05\x2e\x22\x12\xc4\xdc\xbe\xc8\xed\x6d\xc1\x96\xcb\xff\xe0\xe5\x21\x9c\x38\x16\x30\xa0\xe8\x18\xa6\x8a\x13\xc5\x72\xc5\x57\x50\x72\x55\xef\x6c\x1a\xb5\xf6\x82\xe8\x15\xba\x27\x8e\x11\x2e\xc7\xae\xc2\x26\xbd\xe0\x99\x89\xf6\x9e\x1f\x14\x3b\x3a\xbe\x08\xb0\x65\xec\x93\x9e\xd4\xf4\xb2\x32\x86\xa4\xd0\xdc\x9c\xac\x95\x57\xa8\xdf\x77\x85\x9a\x34\xb9\x59\x0e\x07\xc3\x96\x7f\x11\x90\x92\x91\x63\x8f\x8d\x19\x2d\x2c\x98\x7c\x9b\x5d\x73\xd8\xd7\x08\xbd\x84\x9d\x1d\x2f\x7e\x20\xbb\x07\x2a\x37\x10\x8f\xc5\xf6\xec\x1d\x0c\x06\x59\xa9\x36\x67\xa2\xd6\x4a\xa6\x4c\x57\x27\x33\x89\xc5\xf2\x71\x72\xba\xbd\xee\x9d\xce\x5f\xbd\x48\x46\x2e\x6b\x36\x2a\x53\x87\xcb\x7a\xa6\x23\x5e\xfc\x51\x45\xd6\xa5\xf0\x09\x03\x56\xe3\xf1\x0e\x81\x55\x8f\x57\x13\x66\x23\xb4\x71\x79\x78\xc6\x0c\x16\x62\x24\x75\xb2\xd9\xe0\x1e\x7f\x8f\xcd\x01\xa6\x55\xa3\xe6\xe7\xdb\x65\x3f\xcf\x46\xbd\xfe\xb6\xfa\xdb\x10\xec\xed\xe8\x4c\x60\xff\xea\x71\xe8\xb4\x0b\x1d\x79\xe2\x5f\x54\x13\xae\x6c\x0d\xc9\x43\x62\xb5\xa3\xc5\x3d\x1b\x09\xc3\x19\x04\x77\x72\x42\x61\x64\x51\xe6\x59\xda\x53\xff\x2d\x84\x99\xc0\xb8\xcb\xf1\x54\x27\xf3\x8b\x56\xd9\x30\x2e\x4b\xb5\xa8\xc0\x80\x16\xd4\xb4\x36\x43\x5b\x4e\x4c\xfe\xe8\x54\xac\x32\x3f\xdf\xb6\xf0\x31\x24\x60\xaa\xd8\xe6\x19\x87\x27\xd8\xb4\x21\x89\xbb\x06\x45\x1c\x55\x20\xa1\xba\xfb\x29\xae\xb5\xdf\x99\x4a\xdb\xc8\x6f\x46\x55\x02\xb0\x92\x88\x46\xbe\x9c\x10\x2c\x31\x1c\x95\xd9\x20\x5b\x88\x13\x33\xc1\x1d\xc3\xcf\xe8\xca\xa3\x3b\x40\x98\x2f\xc4\x65\x6e\x67\x94\x1d\x8c\xce\x4c\xd3\x0d\xc0\x53\x4d\xc4\x88\xae\x19\x8e\xd4\x33\xd5\x09\x28\x3b\x06\xed\x7a\x40\x2c\xc2\xe1\x30\x31\x85\x1d\x20\x48\xa3\xce\x20\xeb\xc6\x08\xbb\x16\x78\x8d\x82\x35\xac\x93\xf2\x57\x80\xc1\x29\x42\xbb\x41\x8b\x6d\x61\xd4\x93\xf5\x03\xeb\xf4\x36\x1a\x78\x5b\xac\x92\x01\x32\xb5\xe3\x53\x1f\xde\xbd\xbb\xbd\x90\x2b\xd9\x18\xb1\xd7\x3a\xeb\xb8\xaf\x53\x4f\xb8\xc8\xa2\xc8\xc8\xb3\x71\x11\xc1\xfc\xbc\xdb\x75\x26\xb0\xb0\x83\xb8\x28\x62\x6b\x41\xbf\x7f\x9f\xdf\xec\x3d\x80\xa0\xc9\xbb\x27\x09\x47\x69\xd7\x78\xa2\x9a\x14\x5d\x48\x78\xeb\x2a\x49\xe0\x8d\xbe\x9c\x7e\x99\xeb\x4d\x3f\x0d\x3c\xde\xfc\xa7\xd4\x56\x10\x5e\x91\x2d\x8a\x23\x71\x7b\xb3\xa2\x07\x8a\xf6\xb2\xfc\x07\xa6\x95\xfc\x47\x93\x07\x76\x3f\x1b\x18\x00\x8f\x54\x8c\xd0\x55\x3d\xfe\xcb\xa7\x20\x2d\xad\xfb\x26\xf5\xba\x2b\x0f\xfc\xde\x3e\x25\x54\x30\x37\x67\x8d\x8e\xb5\x03\x05\x48\x08\x9a\x6a\x80\x51\x6c\xf0\x70\x65\x25\x75\xeb\x11\x63\x04\xe4\xe7\x9c\x88\x9d\x6f\x27\x80\x91\x6a\xd4\x43\x22\xb3\xc7\xdc\x90\x8f\xd3\x34\x5b\x0e\x1d\x71\x01\x21\xec\x4d\x4a\xca\xd8\xfa\xac\xcc\x46\xa5\xe9\xce\x7a\x46\xe2\x2d\xf2\x19\x03\xdc\x41\x65\x08\xec\x8f\xa1\x62\xff\x2a\x35\xf7\x01\xed\x21\xc0\xcc\x6d\x02\xcc\xdc\xa6\xf0\xaa\x27\x8c\x07\xcc\x5a\xd5\xa3\x21\x21\xe7\xd3\x4c\x0e\x0e\xf3\x32\x2e\xc2\xd4\x0e\x35\x57\xb6\xdf\xeb\xcb\xf6\xba\x23\x0d\x47\x79\x77\x64\x5a\x24\x23\x7d\x91\x6a\x4b\x17\x27\x8d\x90\xd3\x30\x2d\xb7\x91\x24\xe7\x03\x0a\x4f\x25\xdd\x93\x13\xa2\xc7\xc0\x12\x42\x73\xd3\x46\x92\x78\x31\x34\x69\x57\xdb\xc7\x18\x69\x62\xc5\x22\x27\xae\xe4\xd3\x1d\x46\x54\x92\xbd\xca\x9a\xad\x5b\x3a\x44\x27\xf4\xd8\xd6\x78\xe0\x89\x54\xb8\xf9\xbb\x04\x9e\xb8\x3b\x55\x09\x7c\x7e\xcf\xc1\xf6\x37\x47\x71\x69\x26\x4c\xdb\x2a\xef\x2a\x73\xb8\xd1\xbf\x65\x25\x2e\x8a\x59\x6a\xa7\xdf\xda\x54\xdf\x26\xe0\x19\xb4\xe4\x31\xbb\x6e\x05\xde\xa8\x61\x71\x54\xe8\x80\x47\xf6\xf7\xc4\x98\xe8\xa6\x15\x71\x89\x9e\xae\x23\x74\x4e\x74\xfe\x76\xfb\xcb\xdb\x28\xd2\xfe\x7d\x1b\x14\x88\xa6\x92\x5c\x08\x62\x17\xd0\x76\x44\x70\x86\xac\xdd\x5e\x6d\x82\x5d\x94\xd9\x2a\x36\x58\xf7\x10\x9c\xe8\xee\x61\xde\xbf\xfa\xf1\xb0\x40\x19\x4f\x60\x76\x88\x7b\x15\x73\xe7\xdb\xea\x18\x5a\xba\x18\x34\x59\xdf\xa9\x15\x00\xb6\x43\xa8\x26\x5d\x45\x98\x21\xdd\xe6\x8a\x68\xd6\xaf\x4f\x44\x4c\x83\x28\xde\xc6\xd2\xe9\x78\x62\xca\x56\xb6\x8f\x47\x53\x74\x3c\x12\xb4\x3c\xef\x23\xb9\x15\xc3\xae\x46\x9d\x8e\x3c\xaf\x97\x15\x19\x44\x4a\xa4\xa0\x9d\xfd\x7c\x83\x9e\xe0\x01\xbb\x82\x91\xa5\xcf\x77\x2b\xb2\xeb\x11\xac\x1b\x3a\x52\xb7\x82\xa7\x69\x65\x5e\x34\x69\x37\x4c\xcb\x02\x0a\x42\x82\x93\x0c\x3c\xea\x04\xea\x5d\x72\xcc\xa3\xe2\x74\x03\xbe\xa9\xcc\x43\xef\x30\x8f\xd5\xf6\x5f\xda\x17\x22\xc7\xd4\xe5\x2c\xca\x2c\xeb\x42\xa6\xc9\x89\x32\x3a\xa8\xd3\x39\xd2\x6c\xf8\x49\x03\x32\xe3\x40\x3b\xcc\x7b\x23\xa9\x2a\xaa\xc3\x89\x37\x6a\x3b\xd7\xc0\x46\x2f\x54\x37\x9a\x28\x2b\x0e\x65\xd9\x84\x80\xf9\x5c\x7b\x29\x35\x66\x02\xd6\x73\x81\x98\x46\xd3\x80\x44\x38\x0d\x99\x22\xce\xcd\x0c\x3b\xaa\xd8\xfb\x42\x49\xec\x2e\x19\x8d\x9d\x22\x75\xd5\xa1\xc9\x23\x33\x14\x69\xfe\xbd\x84\x1f\xad\x43\x10\x1d\xe5\x54\xb6\x49\xa3\x87\x7c\x13\x5d\xa4\x8e\x10\x3e\x4b\xe8\x80\xe9\x77\x3b\xf0\x68\xf9\x8f\xc8\x6a\x42\xd0\x08\xf2\x89\xc0\x63\x6d\x51\x4d\x42\x0b\xe6\x48\xe5\x01\x5d\x4b\xc6\x0c\x0b\x32\x9d\x43\xde\xc8\x5c\x46\xa9\x5c\x10\x76\x3d\x0f\xeb\xa0\x79\x1b\xd9\xc4\x40\x9f\x59\xf5\x12\x3d\xaa\xf7\xb1\x31\xa9\x26\x9f\x25\x93\xe0\xa7\x3a\x0d\x21\xca\x62\x12\x0e\x16\xb2\xd5\x50\x5e\x27\x16\x88\xe3\x81\x5f\x2c\x8e\x37\xf5\x1e\x97\xe3\x22\x2e\x49\x3f\xe1\x24\x0d\xeb\x93\x84\x6a\xee\x86\x29\x36\x73\x6c\xbe\xff\x6b\xd5\xda\xc4\x0c\x77\x31\xb3\xef\x37\xbc\x36\x15\x49\x89\x70\xde\x30\x4c\x63\xa3\x71\x32\xea\xb0\x47\x02\xc2\xc3\x1c\x21\x7a\x43\xd4\x0f\xf3\x9e\x79\x88\xba\x10\x47\xf1\x1b\x0a\xdf\xc2\xb7\x10\x7e\xeb\x59\xa7\x64\xe3\x19\xae\xb3\x63\xd2\x4c\x3e\xc7\xe8\xa1\xb7\xc9\x35\x71\x47\xa7\x21\x81\xe8\x86\x71\xb2\x6a\xbb\x49\x60\x09\xfc\x10\x83\xc4\x51\x6c\x1c\x45\xff\x3d\xa2\x20\x5c\x99\x42\x02\x5b\x56\x0a\x50\x95\x9a\xa9\xd9\x4b\x52\x48\x26\x2f\xa1\x05\x88\x33\xfb\x1c\x22\xa0\xe5\x4c\xfd\xae\x52\xff\x6a\xfa\x85\xd6\xcf\x37\x89\xd5\x91\x48\x7d\x1c\xd8\xd4\x61\x33\xf6\x67\x6e\xce\x96\xe6\x66\xa9\xdf\x81\x40\xcd\x19\x49\x39\x8c\x04\xda\x65\x72\x4c\x56\x30\x99\xe5\x2e\x1a\x41\xf8\x3b\x4b\x74\x97\x50\xdf\xac\x7c\x41\x68\x25\x37\xd1\x12\xc8\xdd\x92\xa0\xdb\xe9\xa7\xc9\x7a\x93\x9c\x67\x99\x87\xa3\x02\xc6\xf6\x13\xbe\xd2\x1a\xad\x3b\x9e\xe7\x28\x19\xe6\xb1\xee\x59\xce\x57\xc2\x5b\x0d\x5d\x27\x2f\x52\x2f\x3b\xb7\x90\x84\x03\xb3\xc3\x53\x39\x41\x13\x14\x35\x25\x7c\x1c\xd1\xcf\x5b\x36\x80\x42\x89\x04\x6d\x48\xac\x0d\x68\x8a\x61\x4b\x7b\x68\x4c\xbd\xfe\xed\x9d\x27\x5c\xe5\x2a\x09\xd3\x48\xa3\x0a\xed\x7b\xd4\xbf\xa9\xa1\x31\xc1\xf7\xd7\xa6\xbd\x5a\x77\x43\x65\x81\x58\x86\x4f\x74\x48\x3b\xe8\xd5\xca\x47\x10\xf7\x88\x48\xf0\x80\x34\xb7\x86\x19\x92\x1e\x68\x2a\xa2\xb6\xff\x7d\xdc\x1e\x10\x5c\x47\x31\x01\x51\xa0\x3c\x11\x78\x8b\x61\x6b\xe1\xba\xf1\x5a\xe5\x89\xc6\xb7\xc9\xf3\xff\xfb\x84\x1b\x9a\xff\xea\xf3\xdb\x5a\x7b\x0e\x4e\xd6\xfa\xa4\x8e\x4b\xc1\xd6\x8e\x89\x62\x4d\x6b\xf7\x1e\x29\x00\x7c\x3c\x85\x80\xdf\x3b\xef\xe9\x70\x29\xd9\x7e\x7c\x18\xd0\x50\xfb\x90\xec\x09\x22\x93\xcd\x10\xba\xec\x5a\x40\x16\x1e\x82\x96\x13\xc5\xb9\xa9\x87\x2c\x78\xb0\x21\xed\x85\xad\x8e\xa7\x72\xb6\xc8\x96\x2b\x2e\xcd\x60\x96\x02\xc4\x23\x44\x07\x44\xda\x80\xc5\x70\xab\x6d\xf4\x68\x2c\xd8\xe0\xc0\xbb\x9c\x39\x57\x62\xf1\x3c\xab\x48\x89\xf0\xed\x4f\xa4\x31\x0d\xb3\x91\x20\xb9\xc4\xcb\x36\x20\x8f\xc0\x2b\xb4\x6a\x27\x59\x4e\xad\x43\x0d\xb8\xd4\xb1\xd8\xb3\x08\x9e\x41\x03\x01\x23\xe1\x2e\x82\x22\xe7\xca\xe4\xd6\x1b\x4e\x1c\x8f\x57\xa4\x94\x2e\xe4\x28\xe9\xde\xb0\x2f\x4d\xf7\xa5\x11\xc8\x7b\x24\xfa\xdc\x9a\xf7\x35\xfc\x26\xa0\x56\x18\x6f\x96\x0b\x7b\x25\xf0\x3b\xda\x2b\xb4\xfd\x0e\xb2\xd4\xac\x3e\x59\xe7\x56\x18\x65\x57\x50\x9b\x40\x91\x11\xb5\x74\x27\x85\xe6\xca\x80\x33\x1d\x5b\x44\x54\xf7\x4f\x5b\xfb\xc2\xbb\x3b\x89\x62\x1d\x36\xdf\xbf\x24\x30\x22\x5a\x0a\xd4\x24\x50\xe5\x48\xf1\x35\x40\xf4\xf0\x1a\x81\xfb\xff\x18\xad\x04\x32\x44\xd5\x02\xb4\xc0\x81\x10\x90\x81\xeb\xaa\xd5\x1c\xea\x52\x4d\xdb\x7b\xcd\xcf\xb7\xc3\x95\x50\x43\x28\x76\xb5\x41\xeb\x00\x10\x3a\xcd\x7a\x7c\x65\x67\x21\x37\x61\x81\x90\xc0\xe1\x68\xe7\xe7\x1d\x12\xa5\x61\x9b\xea\xd7\xbb\xcf\xbe\xfd\xfb\x9c\x3a\x0a\xba\x8f\xc0\xd6\xdd\x09\x58\x11\x8a\x64\xde\x61\x6c\x13\x2e\x24\x06\x62\xc4\xa8\x85\x9e\x20\x0b\xf2\x13\x53\x91\xa1\x23\x79\x8a\x32\x05\xb6\x3b\x29\x6e\xca\x09\x29\x73\x99\x97\x2d\x1f\xc2\x06\x83\x4e\x42\x19\x71\xb8\xbe\xe6\xa6\x02\x60\x16\x4a\xcd\x51\xac\x28\x49\x54\x60\xdd\x9b\x8b\xf6\xe3\x61\xcb\xd3\x25\xde\x27\x33\x91\xf7\x59\x99\xd6\x2c\x26\x26\x2a\x11\xfc\x62\x9c\xad\xd9\x7e\xac\x1c\xbb\x7c\xb7\x6b\x06\x61\xda\x7d\xc4\xcb\xdf\x9c\x26\x60\xba\x98\x2e\x39\x7c\xa5\x1b\x36\x82\x21\x54\xf4\x24\x7b\xbe\xdb\x51\x83\x95\x0c\x30\x2d\xfc\xc7\xbb\x18\x5b\xd8\x95\x65\xc9\xc5\x0f\xde\xf7\xb6\xc1\xbf\xfc\x0b\x1d\x45\x38\x0c\x40\x85\x36\x79\x8b\x45\xb7\x5e\xc7\x07\xe5\x24\x78\x9a\x84\x31\x53\xeb\x9f\x6e\x0a\xfb\x70\x70\x95\xa7\x70\x31\x72\x42\x59\x53\x3d\xd4\x8a\xb8\x67\xa5\xab\xe7\xe6\x0e\x48\xe4\xba\x1e\xd8\x06\x88\x9c\x34\xbc\xa2\x03\xed\x22\x5e\x2c\x79\xe1\x7e\xd1\x3e\x2c\x27\x90\xeb\xe0\x2c\xe7\x2b\x8f\xab\x29\x57\xb2\xa7\xeb\xbf\x42\x55\xea\x2d\x44\x7e\x58\x78\x0f\x63\x8e\x49\x58\x16\x90\x13\xdb\x4d\xde\x11\x84\x15\x01\xc8\xce\x56\x74\xdf\xf1\x20\x8f\xe3\x3d\x60\xa9\x7b\x85\xa8\x33\x1f\xd9\x45\x05\x13\xf6\xd8\x84\x8b\xe8\x4d\xb4\x50\x11\xfe\xbd\x6b\x5f\x9d\x23\x9d\xd4\x37\xa6\x60\x6a\xee\xdf\xbc\x1d\x78\x3d\xb8\x1b\x14\xf8\x0b\x0f\x51\x9d\x37\x3d\x1f\x7e\xda\xe8\x7c\xcf\xc1\x76\x31\x08\xf3\xd2\x16\xb9\xeb\x1b\x50\xbe\xad\xbd\x1a\xc5\x60\x37\xf5\x04\xb2\x95\x30\xef\x16\x33\xde\x56\x51\x44\x53\x26\x62\x03\xe5\x9f\x36\x60\xf9\x96\xb2\xdc\x84\xa9\x46\xf1\x5a\xd0\x22\x22\xf1\x74\x12\x6f\xd3\x71\x16\x4c\x73\x2b\x9f\x27\x34\x9d\x9a\x5a\x92\xbe\xd2\x1e\x8c\xa2\x7e\xcb\xd3\x82\xcf\x12\x87\xee\x2c\xed\x76\xe6\xe5\xf2\x71\xea\xa2\xdd\xb1\x2b\xb8\x3a\x30\x7b\xa4\xe0\x53\x1d\xd2\xf5\xfb\xb7\x9c\xb0\x5c\xf1\xb2\x94\xdf\x7d\xa6\x33\xa9\x27\xf4\xb5\xe7\x59\x8a\x58\x2b\x02\x1f\xdb\x17\x4d\xac\xb0\x17\x64\xa0\x6c\x54\x64\x4b\xb9\x6d\x8c\x87\x84\xb4\x0a\xd6\x9a\x0a\xb3\xf3\x99\x7f\x1e\x96\x71\xb6\xad\xde\xc1\x36\x8e\x54\x5c\x5d\xf3\x80\x28\xb1\xa3\x45\xb9\xe3\x4e\xd0\xaa\xff\xd4\x55\x4c\x6d\xc9\x26\x5f\x15\x81\xb1\x03\xbe\x8e\xe8\xc4\x9e\xa6\xa9\x57\x56\xab\xa0\x6f\x12\x79\x1f\x28\x93\x09\x10\x50\x4e\xa6\x0a\x44\x87\x76\xed\x69\x2f\x98\xb0\xcc\xe3\x08\x72\xe0\x88\x83\xa1\x79\x8b\x80\xf6\x03\x3c\x55\x6c\x32\x1b\x4d\x66\x93\x49\x98\x76\x07\x61\xbe\x44\x5f\x20\x2e\xd9\xaa\xea\xe1\xe3\x8e\xd3\x8d\x03\x49\x74\x1d\x5a\xbe\x4d\x2f\xb8\x4a\x25\x46\x6e\x16\xb1\xae\x63\x0b\x0b\x71\xce\x12\x1f\x60\x60\xbd\xd9\x57\x79\xd2\xfd\x3e\x82\x6f\x5a\xc9\xdd\x58\xe5\x47\x54\x22\x55\x9e\x8f\x9c\x34\x99\x6b\x0d\xb2\xae\xc9\xe1\x00\x8e\x7c\xf9\x3a\x15\xae\x05\xbc\x27\xfe\xa9\xee\xf5\x41\x37\xc3\xa4\xa5\x3a\x7d\x60\x7d\xfd\x41\x40\x50\xae\x9b\x1c\xe8\xdd\xc0\x78\xc3\x38\xfe\xab\x06\x02\xa1\xdc\x6e\xbc\x30\x2a\x21\xff\xa5\x39\x1d\xd9\xa1\x9d\x0f\x3c\xba\x7b\xc1\x24\x59\xda\xb3\x00\xdd\xfa\xca\x51\x22\x43\xbc\x26\xc7\x53\x63\xe1\xc5\x17\xdb\xa5\xc9\xf3\x2c\x8f\x8b\x81\xfd\x10\x12\xf8\x1f\x92\xe2\xf4\x0f\x83\x69\x35\xf1\xf9\xf6\x30\x4c\x4c\x51\xc6\xa9\x52\xa1\x1a\x2d\x17\x1a\x96\xad\xdc\x0c\xc3\x38\x97\x96\x12\xc2\xb6\xbb\x6c\xc8\x75\x81\x40\x79\x4d\xda\xe0\xed\x91\xb5\xd0\x28\xad\xc9\xcb\xfe\x5d\x6e\x8b\x6a\x39\xdd\xb3\xe9\x1d\x6a\xcf\xc1\xf6\x42\x96\xa9\xeb\x0e\x76\xa5\x1b\xac\xd4\x78\x23\x78\x66\xca\xeb\xf9\xf9\xfd\xbb\x1e\xb2\xc3\x04\x40\x2f\x31\x0d\x95\x13\xbc\x01\xc4\xa3\xe8\x60\x62\x30\x9d\x0c\xa8\xff\x28\x90\x5e\x39\xa1\x08\x16\xb5\x5c\xf9\x84\x4b\x64\x53\x6b\xfe\x6a\x3f\xe2\x50\x04\xf5\x7c\x42\xfe\x72\xc7\xde\xa1\x9a\x05\x6a\x1d\x7f\x25\x2e\xed\xc0\xc0\x06\x70\x8f\x6c\x32\xee\x4d\x25\x1f\x73\x73\xed\x6c\x21\x89\x7b\x16\xfe\x4f\xaa\xad\x97\xa8\x76\xf7\xaf\x19\x6c\x76\xa1\xfa\xc5\x4f\x88\xf7\x92\x70\x21\xb3\xdd\xcc\xd5\x19\x4f\xc7\x40\x51\x0e\x9b\xb1\xc4\xc2\xd8\x4c\xcf\x4f\xd4\x46\xb2\xc2\x3c\x4d\x48\x0d\xd1\x6e\x47\xb0\x28\xe6\xa6\xce\x4e\xc7\xf5\x29\x01\x03\xc0\xae\x7f\x5f\xb6\x60\x7c\xe4\x12\x42\x31\x95\x04\xf7\xb4\x97\x9b\x40\x63\x3a\x19\x0d\x6f\x56\x79\x9f\x5d\x6b\xbf\x87\x49\x08\xcc\xfc\x29\x3c\x71\xc1\x54\x05\x1e\x87\xb4\x8e\x1d\x4e\x63\x7b\xef\xae\xfa\x88\x75\x20\xc4\xbe\x70\xd3\x06\x92\x28\xf3\xfc\xa8\x22\x3a\xc0\x11\xa7\x17\xbf\x12\xc6\xd0\x1a\x9a\xa0\x2b\x6a\x9d\xa7\xe5\x2c\x03\xcf\x58\x57\x5a\x2d\xf9\x34\x69\x23\x67\xa3\xd2\x6e\xfd\xc8\xd9\xee\x59\x64\x02\xae\xfb\x91\x8e\xe7\x7e\xdd\xad\x3e\xad\xab\x53\x3f\x2b\xb3\xc5\x3a\x1a\xec\x6f\x52\xeb\x3c\x45\x6a\x9d\xd3\x56\x51\x73\x73\x10\xe0\x6a\x79\x62\xd5\x35\x52\x0e\xbd\xe6\x1a\x2f\x51\x3e\x8a\x0b\x93\x23\x1b\xd6\x86\xa2\x1f\x8f\x47\xd8\x5e\x30\xcf\x56\x52\xab\xb7\x8b\xdd\x19\xf0\x5f\x6c\xf4\x68\x70\xab\xf4\x32\xc9\xab\xbd\x33\xa1\xd7\x9c\x2c\x67\x96\x6a\x8a\xb0\xea\x1c\x23\x89\xbc\x0d\x28\xda\xf3\x76\x15\xc7\x45\xc0\x7e\x1b\xb1\xc2\x43\x56\xf6\x03\x89\x9f\x67\xbd\x98\xe5\x2c\x59\x76\x0f\x48\x4d\x29\x3c\x00\xea\x38\x35\x2d\xbb\x26\x8a\xbb\x70\x1f\x53\x45\x88\x96\xd3\x3f\x3e\x45\xe2\xad\xa7\x2a\x9f\x73\x9d\x73\x63\x21\xcf\x86\x52\xe8\x47\x76\xff\x7d\xaa\xa7\x7f\x3f\x98\xa2\xf8\xbd\xd0\x3e\xb4\x6b\xdf\x0e\xca\x50\xab\xc9\x5e\xd8\xfe\x5d\xde\x12\x71\xaf\x56\x36\x6e\x58\x40\x2c\x76\x64\x40\x09\x95\xab\x6c\xef\x4f\x7f\x4c\x1f\x58\x91\xc6\x43\x11\x70\x23\xc1\xfd\x7d\x6e\x76\x69\x12\x62\xd2\x97\xb2\x55\x9b\x2a\xfa\xba\xc0\x45\x06\xf7\x4d\x3a\x81\xaf\xa4\x85\x85\x0e\x0a\x5d\xdf\xea\xfc\x21\xe9\x5d\xab\x26\x4d\x26\x7d\x15\x02\x1a\xb2\x08\xb3\x6f\x05\xa4\xaa\x79\xd6\x86\x72\xca\xf9\x99\x12\x2e\x46\xa0\xb4\xad\x43\xdd\x8d\x6b\xd4\xd0\xcd\x46\x65\x61\x92\xa4\x68\xd5\x61\x1f\x46\x9f\x98\x17\xc8\x09\x91\x9a\x4d\x1a\x65\xa3\x5c\x28\x50\xcf\x3a\xb5\xfd\xfa\xba\x54\x85\xbf\xa1\x08\xd5\xce\xe3\x05\xd9\x69\x54\xd1\xd8\x57\xe7\x9b\x42\xea\x7d\xed\x38\x2d\x46\xb9\x50\x39\x30\xd8\xd1\x5b\x75\xbe\x10\xf5\xf5\x29\xd4\xde\x8f\xbf\x85\xb8\xdb\x55\xec\x0e\x36\x99\xef\x62\x99\x93\x13\x47\x88\x2a\x46\x0b\x45\x19\x97\xa3\xd2\x19\x88\x20\xca\x03\xa4\xcb\x55\x41\x29\x49\xf2\x1d\x1c\xb3\x68\x59\x82\xcb\x26\x59\x7d\xa8\x1e\x3f\xf8\xa4\x68\x4c\x69\xff\xc0\xfe\xaa\x03\x23\xd5\xc3\x00\xf1\xc6\xdd\x80\x3c\x1c\xff\x90\x24\xe6\x66\xed\xb2\x29\xdf\x55\x91\x09\xdb\x39\x52\x10\x19\x8c\xba\xdd\xc4\xc0\x7a\xc9\x99\x70\x79\x31\xe2\x69\xdd\x38\x4b\x71\x4f\x92\x91\x13\x4a\x17\x6f\x9c\xca\xc7\x71\xeb\x0d\x30\x9b\x03\xed\xa5\x34\x5b\x49\x51\xb1\x57\x08\x1d\x29\x4d\xdf\x0f\x98\x4c\xa9\xd3\x77\x31\x51\x77\x12\x35\x75\xf2\x45\xc4\x0f\xf1\xca\x10\x8f\x48\xc1\x48\xd1\x90\x1e\x09\x30\xa8\x93\xed\x65\xb3\xdd\xfe\xb7\xe6\xad\xde\xd0\x56\x3c\x3c\xe4\x64\x92\x77\xe3\xdd\xa8\xa4\x2a\x2a\x38\xf7\x8e\xae\xc6\x61\x59\x86\xd1\x92\x84\x59\x22\xd2\x41\x36\x8a\x98\x2b\xda\x0a\x6e\x40\xee\xa4\x26\xcc\x67\xa9\x73\x8f\x70\x1e\xd1\xcf\xab\x95\xe7\xf0\xfc\x25\x81\x5f\x6f\x04\x4f\x4f\x2f\x5a\x7f\x67\x27\xf9\x53\xff\x69\xe0\xc1\x43\x67\xf1\x88\x35\xb1\xb1\x39\xbe\x43\x62\x3a\x62\xd6\x23\x1d\xa2\x45\x5d\x90\x84\x5d\x71\x91\xde\xb1\xeb\x5a\xe5\xa1\x71\x1f\xb9\x8e\x42\xd7\x0c\xb2\x28\x17\xc6\xa0\x28\x8d\x54\x24\x63\x74\x3b\xf0\xbc\x11\xb1\xec\xda\x5e\x7f\xa7\xab\x3f\xea\x2d\xff\xa3\x9f\x63\x3c\x26\x9e\x38\xde\xf4\x33\x68\xf1\x61\xe5\xbd\x16\x90\x07\xc8\xe9\xa6\xc7\x5a\x5a\x07\x29\x07\x75\x3e\x51\x4d\xf8\xa5\xeb\xcb\x33\x2f\x47\xa3\xc2\xa8\xf6\x9c\xd6\xa5\x49\xae\x0f\x1c\x1b\x95\xa6\xa5\x11\x15\x27\xc6\xae\x57\xde\x38\xfc\x55\xf6\xf4\x7e\xb5\x59\xeb\x2e\x09\x89\x9c\x2a\x16\x0a\x04\x4e\x3e\xe6\xf0\xa4\x8b\x71\x6e\x06\xa2\xdd\x81\x45\x57\x94\xd0\xe4\x64\xec\xd9\xc5\x45\x14\x9b\xb4\x8c\x8b\x72\xb6\x5e\xae\x45\x29\xba\x9a\xe0\x16\xfb\x91\xb3\x81\xd1\x0d\xa6\xc8\x6b\x0d\x6b\x64\x9d\x36\xe4\xb1\x59\x36\x98\xa4\x8a\xc4\x22\x39\xe7\xdf\x20\x4f\xa1\xd7\x08\x59\xb6\x1c\x9b\x34\x0d\x67\x49\x44\xe9\x5c\x35\xe1\x11\xda\x72\x5a\xac\x77\x31\xe1\xb0\x52\xdf\x6e\x88\x84\x0e\xb4\xfb\x61\xb2\x38\x63\xe3\x4a\x07\xac\x73\x14\x66\xe4\x01\x40\xf4\x7c\xd8\x74\x0f\x2b\x59\xda\x35\x5a\x2a\x55\x13\x0a\x3b\x00\xe4\xa4\x41\xe2\x6f\x0a\x95\x48\x76\x4f\xee\x84\x14\x4a\xb2\xb0\x88\x0b\xa2\xb9\xaf\x51\x85\x79\x2d\x98\x10\xac\x2e\x01\x16\xf2\xb1\xcd\x39\x82\xdc\x4d\x6b\x29\x7f\xed\x79\x58\x36\xb4\x7c\x39\x02\x70\x0a\xa5\xcf\x39\x1f\xa8\xf8\xe5\xb2\xbf\xcd\xa3\x8c\xe1\x77\xa4\xbd\x28\xea\x12\x9f\x47\xbd\xc0\xf1\x3d\xe6\xe6\x64\xc7\x9b\xed\x6c\x2e\x21\xd5\x0f\xc2\xe0\xa7\xa5\xd4\x4f\xc2\x9a\x27\x27\xd0\xc8\xbd\x30\x07\x90\x4c\x67\x31\x2d\x81\x17\xec\xa7\x50\xc3\xdd\x62\xb7\x20\x39\xee\x3c\xe5\x60\x4e\x83\xb8\x97\x4b\x8a\xe4\x5b\xbd\x04\xd9\x79\x25\x20\x90\xd7\xb4\xae\x73\xbd\xe6\xc5\x69\x1d\x45\x6a\xbb\x10\x0b\x19\xb2\x23\xb5\x94\x98\xf0\x7d\x6b\x6a\x02\x77\x33\xf1\x73\xc5\x4a\x75\x8e\x01\x6a\xe7\x88\xd0\x9d\x9b\xe1\xa8\xf4\x84\x6e\xb5\x6f\xa5\xae\xc6\x79\x92\x37\xea\xe6\x21\x24\xb6\xea\xc7\xa0\xe2\xdd\xbe\x70\x7f\x81\xec\x16\x8a\xa5\xb8\xc0\xac\x41\xe8\x8c\xfc\x13\x1b\x22\xdc\x98\x31\x81\xfe\x12\xf7\x22\x6f\x94\x8a\xfd\xb9\x79\x69\xb4\x6c\x52\xb5\xd5\xc7\xf6\xfe\x0e\x1e\x9e\x9c\xd4\x7b\xa9\x84\x88\xff\xd9\x2f\xcf\x40\x87\xad\x45\xc6\xd0\x9e\xb4\xff\x80\x55\x28\x2c\xa6\x58\x48\xd4\x98\x7a\x6f\x57\x7e\x1a\xbe\x4d\x0d\xcd\x2f\x95\x99\x0d\xaa\xb0\x87\x42\xf2\x41\xf7\x61\x52\xb9\xba\x48\x70\x85\xae\x59\x8e\xc5\x45\xd2\xf5\x93\x7d\x6f\x99\x92\x98\x70\x38\x4c\x56\x77\x60\x43\x72\x90\xd5\xdd\xbb\x55\x4d\x0f\x7c\x39\x55\xd1\xf2\x3e\x51\xe7\x2a\x66\x53\xd4\xd1\xb9\x6b\x38\x51\x5f\xc8\x25\x09\x2f\x65\x45\x9f\x48\xf5\x27\x98\x6c\x7c\xa2\x89\xa1\xbd\x98\xe5\x26\xee\x49\x05\xb1\xb1\xdf\x3e\x5d\x53\xd9\xd7\xee\xc6\x45\x6f\x54\xb8\xb8\xc9\x89\xd7\x52\x44\xd3\x80\x38\x04\x3f\x4c\xa5\x99\x51\xfa\x3e\x4d\x65\x70\x76\x6b\x35\x61\x11\xd7\x21\xa4\x53\xa2\x7b\x05\xab\xad\x8b\xdd\xf7\x1c\x94\x41\xf4\x1a\x66\x2c\xfb\x5b\xa8\x04\x2a\xe3\x5e\x6d\x0d\x01\xf1\xd0\x4d\x2a\xf0\xd7\xd1\x0c\xd1\x7b\x2c\x93\xc6\x29\x01\xec\xf3\x05\x98\xfd\xae\x18\x33\x31\x9b\xc2\x22\x4b\xeb\xc4\x66\xbb\x2f\xf7\x49\xee\x8f\x57\x76\x9d\x79\xa2\x82\x3e\x03\x42\xe5\x56\x40\xd2\x33\xb7\x50\x95\xd0\x98\x93\x34\x36\xc3\x7c\xc6\x35\xfb\xff\xde\x67\x6d\xc9\x15\x83\xe4\x19\x9b\x8f\x62\x9c\x9d\x72\x9e\x61\x56\xa3\x0f\x66\x68\xdb\xb8\xaa\x28\xf2\x9f\x78\x39\x37\x71\x51\xae\x23\xef\xc8\xd2\xa2\xc1\x25\xf6\xf2\x04\x82\xcd\x4d\x62\xd9\xe3\xb3\x9e\xb4\xb7\x16\x78\x87\xbf\x35\x16\x1b\x0b\xbc\xbe\xe5\x0c\xb1\x88\xa2\x2c\x5d\xcc\x33\xb5\xd0\x72\xe8\x74\x57\xd8\x5f\x9f\x32\x01\xab\xc3\xca\x6c\xc6\x67\xed\x3b\x3b\x1e\xaa\x04\x55\x00\xb5\x90\x6e\x68\x6a\x16\x06\x95\x2e\x54\xc0\xa4\x64\x28\x27\x9f\x28\x3e\xeb\x9d\x58\x3d\x46\xe8\x36\x3e\x2a\x27\x13\xa5\xa9\x85\xb8\xf7\x08\x1e\x32\x31\x51\x9e\xf5\x6c\xe1\xfd\xbb\x64\xc0\x9d\x64\x89\xa0\x16\xc8\xa5\x58\x7d\xb6\x77\x3c\x30\x1a\x85\x15\x80\x1c\x66\x3a\xf5\x62\x86\x84\x40\xb2\x22\xd7\x18\x7c\x9e\x2c\x00\x7d\xea\x7e\xbe\x49\xe2\x7a\x25\x4e\xbb\x8b\xa1\x23\x92\x09\x10\x8f\x34\xe4\x2f\x92\x83\x4a\x2f\x4b\x16\xe1\x27\x83\xf0\xeb\x26\x86\x2b\xd2\x15\x78\x35\xc9\x7f\x04\x13\x6e\x54\x2d\x27\x85\xf4\x23\x4e\x2e\x6e\x53\xe3\xde\xbc\x1c\x17\xe5\x0e\xbf\x7a\xfd\x0e\xe9\x8d\x8a\x88\x8f\x2e\x01\xf6\x02\xc4\x1f\x9f\xdd\x87\xdf\x25\x71\x2f\x94\x2c\xb0\xbb\x1d\x26\xc9\xc1\xdc\xa4\x62\xee\x82\xa7\xb8\x65\xec\x4b\x8c\x37\x58\x7c\xf1\x4c\x60\xb9\xca\xea\x79\xef\x95\x7a\xd1\x95\x53\xcf\x39\x7b\x61\xf2\x55\x53\x82\x42\xf5\xb6\xbb\x1c\x26\x23\x5d\x04\x01\x76\x11\x68\x8f\x9c\xb0\xce\xe6\xd0\x44\xf1\xe2\x2a\xa1\x38\xb6\xd8\x77\x2c\xc7\x63\xd2\xbd\x09\xd3\x18\x3a\x98\x02\x44\x0a\x7c\x33\xfb\x2d\xc2\x56\x8d\x8a\x38\xed\x3d\x6a\xb7\x35\xe5\x9e\xd7\x8b\x9f\x1a\x6e\x4c\x08\x01\xd4\xdf\x20\x8b\x1f\xee\x0a\x95\x26\xe4\x41\x28\x73\xbe\x41\x15\x63\x29\x45\xab\xf0\x85\x7d\xdd\x6a\x97\xe4\xa7\xf7\xfd\x8a\x08\xb8\xaf\x23\x71\x90\x2b\x21\xaf\x13\x95\xe4\x88\x66\xfc\x5e\x0d\x5a\x15\x82\xac\x8f\x58\x0e\x6d\xcd\xb5\x47\x16\xb3\x7c\xd1\xc4\xe5\x28\x37\x08\x2b\x14\x2c\xd5\x52\x36\xfb\xec\xd6\x0e\xa1\x73\xed\x17\x62\x31\x3d\x32\xd5\x06\xa8\x13\x7d\x93\x17\x26\xf2\xa9\x3e\x02\x39\x48\x02\xc9\x31\x75\x16\xcb\x41\x28\xf1\x33\xf6\xf1\xd3\x98\xc0\x72\xe2\x76\xdb\x2f\x94\x71\x82\x02\x26\xde\x0e\x80\x52\x72\x4c\x7a\x68\xf5\x9b\x32\x36\xb9\x56\xda\xe8\x2d\x0b\x15\x57\x6b\x1b\xfb\x15\x5a\x9a\xd4\x5a\xfd\x30\xeb\x32\x49\x1b\x85\x4e\x39\x26\x79\xbc\x28\xc9\x52\x29\x7a\x20\xc5\x46\xea\x2d\xc7\xee\x52\xbb\x59\xb4\x44\x95\x91\x2d\x96\xd9\x2b\xc7\xae\x0a\xb0\x38\x4a\xbb\x22\xd8\xb5\x8f\xe5\x15\x9e\x95\x21\xb2\x63\xec\xaa\xba\xdf\x7c\xda\xae\x5c\xa8\x6a\x8b\xfb\x28\xa6\xcd\xd1\xa6\x30\x23\x37\xc3\x2c\x57\x8b\x09\x24\x97\x77\x2a\x92\x38\xbd\x43\xdc\xa4\x97\xc2\x38\x31\x72\xef\x4e\x60\xc1\x67\x1a\x53\xeb\x9c\xed\xf3\x85\x79\x52\x66\xa9\x60\x12\x11\x18\xdc\xab\x18\x70\x7a\x8f\x76\xd5\xf4\x4b\xbf\xdc\xf2\xe8\x99\x8d\xc0\xe3\xfd\x37\xbc\x34\x44\x38\x18\x86\x5e\x74\x1e\xb5\x48\x80\x6e\xe4\x78\xac\x65\xd0\xb0\x97\x1b\xd3\x7d\x88\x2e\xf8\x53\x63\x27\xb3\xf8\x03\x70\x8d\x50\x77\xd8\xa8\xa8\xdc\xbd\x7d\xec\x2d\x19\x6f\x11\x96\xf4\xb3\xc0\x31\x63\x1e\x7f\x01\xbc\x41\xc4\x1e\x9f\xa9\x13\x1d\x27\xf8\xd3\x4b\xe3\xc5\x38\xb2\xba\xaf\xf6\x1d\x49\x7e\x3f\x61\x43\xd3\x24\x00\x92\x84\x45\x5f\xa7\x81\xd3\xdd\xae\x7f\xd1\xd3\xc4\x64\xd5\x2e\xd0\x3a\xdb\x5e\x5f\x27\x2a\x32\xf0\x54\xb2\x31\xf1\xb7\x9f\xec\x10\xea\xe2\x24\x2d\xcf\xd2\x0b\x07\xf1\x5c\x40\x17\x98\xa6\xef\x05\x6c\x4b\x99\x17\xe1\xca\xac\x7f\xa0\xa7\x28\xec\xfd\x6e\x45\x95\x40\x81\xcf\x60\x8f\xf9\xbf\x5c\xf5\xb9\xac\xb3\x13\x61\x40\x28\xbe\x0c\xf1\xb5\xc6\xb1\xac\xa7\xf2\x66\x45\xc2\x1c\x5b\x9c\x3f\xf9\x42\x66\x85\x48\x89\xfb\x43\xfe\x4a\xb7\x69\xb5\x8d\xb2\x3c\x5f\xdd\xe6\xc5\x8f\x44\xad\x02\x27\xd7\xb0\x23\xb2\xec\xbf\xfb\x2b\xaf\xfc\xfe\x41\x83\x0b\x84\x35\xc9\x2f\x43\x94\xc6\xc5\x88\x76\xe3\x92\xeb\x2f\xe4\x26\xca\xf2\xae\x48\x2a\x60\x0c\x7d\x87\x6d\xc7\x05\x9c\x80\x1f\x7b\xa8\xd3\x22\x86\x38\xa9\x2f\x5e\xa5\x2a\x75\x69\x12\x33\xec\x67\xa9\xd9\x4e\x64\xcf\xd3\x93\x4c\xfb\x96\x53\xce\x6f\x75\xa8\x01\xbd\x16\xf8\x01\xdb\x12\x88\x83\xfc\x4f\xa3\x79\x75\x14\xbb\xe5\x16\xcd\x1a\x3c\x5b\x39\xae\xfc\x58\x0e\x97\xc3\x38\x09\x17\xe2\x24\x16\x43\x13\x91\x00\xb7\x0f\x52\xe5\xc0\xc9\x63\xdc\x2c\x00\xf6\xab\xd2\x68\xd7\xa9\x98\x83\xc4\x13\x8d\xb4\x37\xa7\xc6\x3f\x34\xa2\xc2\xa1\xb4\x22\x18\x71\xa4\x92\x65\x9f\xa6\x70\xa2\x28\xf3\xd8\x6a\xde\x15\xd6\x24\x80\x91\xf9\x5a\xe7\x64\xdc\x5f\xe0\x4d\x16\xc5\x13\x12\x51\xc5\x25\xbc\x32\x04\xc8\xa7\x30\x10\x1d\x54\xd0\x63\x20\xce\x51\x57\xfa\xee\x44\x47\x64\x30\x34\xb2\x1f\x29\x2f\x9d\xca\x68\x6b\xc1\xdf\x6c\x58\x11\xeb\x91\x33\x18\x98\xb4\x1b\x8a\xcf\x8c\x17\x84\x43\x1d\x5f\x8e\x3f\x51\x6e\xa3\x37\x08\x23\x3b\x3b\x55\xa0\xa6\xe5\xfc\xa9\xff\xb1\x5d\xd2\x44\x5e\x0c\x97\x22\x2e\x9e\x4d\xa8\xd7\xd4\xac\x48\xf3\x5d\x60\xa5\x01\x43\x4c\x7d\x90\x58\x18\xd3\x2d\x66\x3d\xfa\xe0\x2a\xd5\xa2\x8e\xd9\x84\x4f\xab\xfa\xf5\x77\x69\x5e\x43\xd2\xd6\x51\x3f\x5c\x74\x40\x37\x3c\xec\x89\x27\x7f\x69\x6a\x94\xee\xdb\xbf\xaf\x5d\x98\xb4\x2b\x1b\x93\x22\x68\xec\xcc\xf0\x54\x3c\x5d\x00\x44\xe9\xd1\x96\x08\xf0\xc6\x9e\x1a\x53\x30\x75\x8a\x33\x85\x27\x3a\xd3\x73\xfd\xd9\x76\x5c\x14\xa3\x38\xed\xd9\x48\x48\xac\x40\xb0\xb6\x61\xec\x22\xc8\x56\xfe\xde\xa4\xc3\x78\x14\x87\x89\x60\xdd\x91\x3a\x48\xa5\x4a\x10\xa0\x44\xf7\x9a\xa6\x09\x1c\xda\x35\x5f\x2f\x74\xfd\x56\x6b\xf7\x6e\xdf\x31\xde\x73\xd0\xb5\x95\xb9\x0c\x33\x4c\xe2\xc8\x99\x2e\xa2\xe5\x72\x8d\xa8\x9c\xd7\x28\xff\xb5\x36\x76\x5d\xe3\x7c\x66\xb4\xcc\x47\xec\x28\xe1\x5e\x38\xed\xd5\x3a\x46\x54\x89\x9e\x96\x33\xd0\xbd\xc1\x1a\x3b\xe7\x39\x74\xfd\x61\xe3\x76\xdf\x0b\x07\x0b\x1e\xd3\xc3\x22\x68\x72\xcc\xa0\x61\xd3\x8d\xc3\x19\xdf\x25\x86\xbb\xb2\x72\x7b\x48\xea\xe0\x5a\xf5\x18\xbb\xb2\x60\x85\x70\xc4\x4a\x87\x9d\x3e\xd5\x54\xab\x4d\xc2\xb4\x37\x8a\x8b\xfe\x2c\x41\x74\x4e\x12\x84\x03\x31\x86\x6a\x2d\x7b\x40\xee\xfb\xe4\xac\x18\x97\x66\x50\x3c\x6c\x9f\x9d\x96\x1f\xed\xb3\x43\x20\x70\x99\x5a\x30\xc7\xc8\x16\xe0\xf5\xc0\xe3\xa1\xe1\xca\x84\x4d\xf8\x03\x06\x21\x43\x24\xd4\x39\x67\x90\xb1\x2c\x5d\xef\xfa\x14\x82\xea\xd0\xae\x76\x12\x16\x51\xbc\x1c\x67\xa3\x62\x62\x0e\x9f\x63\x89\xb5\x26\x1e\xf8\x20\x4e\x4b\x92\xbf\x3d\x11\x78\xb0\xd0\x89\xa9\x25\x07\xbe\xaa\x82\x03\xf7\x81\xd9\x0d\xec\xaa\x72\x42\x8a\x9d\xc3\x3c\x5b\x70\x6f\x1f\x53\x07\xc2\x4a\x72\x1c\x68\x0c\x3d\x2a\xe2\x59\x92\x00\x17\xce\x21\x20\x17\xeb\xe4\x54\x7c\xba\x62\x9e\x9d\x6e\xbe\x75\xec\x93\xc7\x61\xb2\x6d\xc2\x3a\xa5\xa5\x4e\x83\x37\x7e\xbe\xe3\x03\xc7\xc7\xc7\xa4\x44\x35\x81\xcb\xbd\x48\x49\x60\x94\x84\x45\x61\x8a\x6d\x24\xd5\x7d\x92\xea\x85\xa2\xa5\x0f\x36\xc7\x4d\xbc\x1b\xac\x06\x77\x44\x07\x44\xfe\xab\xc9\x1e\x30\x4a\xe2\xe1\x42\x16\xe6\x20\x0a\xa8\x9c\x8e\x97\xea\x3c\xd6\x84\x73\x8a\xc2\x38\xcf\x5a\x1e\xed\x7e\x8e\x6b\x7f\xe7\x5c\xbf\xab\x18\x86\xbd\xbe\x29\xcb\x98\xa5\x41\x1e\xeb\x78\xde\xd0\x8e\xb1\xef\x79\x4e\x77\xb2\xf6\x1c\x6c\x87\x49\xb2\x3a\xa9\xc4\x49\x01\x72\x83\xb7\x83\x35\x12\x91\x8a\x38\x56\xa9\x2b\x34\xb8\xa5\xc7\x0d\x48\xd4\xeb\x53\x46\x59\xf3\xf3\xed\x34\x6b\xf9\xea\xdf\xd6\x4e\xbd\xd8\xc9\xf1\x78\x33\x70\x6e\x6e\xae\x6d\x5e\x8e\x92\x51\x11\x2f\xdb\xf8\xc3\x79\x7d\xbc\x45\x19\xf1\x5b\x04\x0a\x58\xc9\xf2\xa5\x15\x63\x96\x66\xbd\x0a\x1d\xba\x03\x6a\x07\x5d\xcf\x48\xad\xd6\x7b\x20\xfe\xa9\x60\xc2\x6e\x66\xb0\x40\x82\xda\x70\x9b\xd2\x7a\xbd\xb7\xc2\xbe\x4d\xad\x29\xc4\x82\x3b\x3d\xfc\xfd\x21\x34\x13\xd1\x06\xbb\x44\x7e\xd1\x47\xc9\x63\x46\x5a\x3f\x18\xe7\x10\x39\xc2\x96\x7a\x8b\xca\xdb\x8f\xd9\x52\x84\x96\x87\x6c\x60\x8b\x35\xe1\x7e\xd3\xa0\x59\x8c\x13\x33\xa1\xe9\xf9\x3e\x69\x7a\xbe\xcf\x56\x5c\xcb\x26\x2d\x47\xf5\xab\x7f\x88\x90\x2e\xa8\x60\x39\xc8\xcf\xfe\x5d\x12\xa1\xdf\x0a\x3c\x36\xf9\x48\x40\x04\xc0\xf7\x02\x0a\x31\x4e\xc9\x4c\x70\x1c\xbc\xfd\x0a\x00\xbb\xe5\x26\xee\x8a\x49\x92\x28\x1b\x20\xac\xc7\x00\x15\xe9\x4a\x39\x21\x07\x52\x55\xc6\xdc\xc9\x8f\xcc\xb3\x34\xfe\xfb\xc0\xe3\xe5\xae\x55\x64\x03\x84\x15\x0d\x6f\xf9\x32\x9e\xb1\xd3\xe5\x71\x25\x8a\x2d\xc8\xde\x54\x49\xd8\x4e\x68\x0c\xc3\x37\x08\x46\x1f\x2e\x96\x26\x4f\x33\x71\x03\x7c\x56\x13\x27\xfb\x3d\x9a\x44\x7d\x9a\x99\x5d\xe5\x30\x4b\xad\xcb\x0e\xfe\x1e\xe9\xd3\xcf\x02\x9f\x4a\xfd\xac\x11\x37\x32\x30\x61\x37\x5b\x91\x58\xc7\xb9\xda\x7a\x61\x99\xf3\x6e\xdd\x4c\xba\xc3\x16\xe9\x26\x4d\xbe\xdf\xcd\x31\xf5\xf3\x56\xf6\x23\x4e\x34\x8a\xc2\x83\x43\xf5\x5d\x8e\xab\xcd\x8a\xd6\xf5\x8a\x30\x1c\xe6\xd9\xcb\x8c\xcd\x14\xc5\xa6\xc0\x4f\x8b\x37\xa8\x41\xc4\x7c\x57\x57\x43\x13\xc9\x2d\x45\x40\x3c\xe9\xb0\x91\x71\xaf\xbf\x90\x8d\x14\x38\x8a\xc2\x10\x2c\xc1\x5c\xf7\xd5\xe1\x46\x3f\x60\x65\x89\x78\x60\xd4\x55\x0d\x09\xe7\x3a\xa3\x89\x3c\x81\x64\x61\xd4\x9d\x60\xa6\x7f\x10\x78\x88\xe4\x07\x4d\x6c\xb3\x76\xd1\xcf\x56\x50\xd5\x50\xf1\x71\xfb\xc5\xaa\x3e\xde\x80\xbf\x1c\xe6\x71\x1a\xc5\x43\x37\xdb\x90\x95\x5e\x26\xa5\x8a\xcb\x4d\x76\x1e\x51\x56\x94\x2d\x0f\xea\xbb\x3c\x21\x4e\xec\xe3\xe5\xc5\x2c\x1f\x8c\x92\xb0\x45\x14\x94\x6b\x01\x29\xfa\x5e\xa3\x82\x58\x2f\x2b\xa5\xd4\xed\x6c\x90\xf6\x6f\xca\x41\xc5\x14\x15\xec\x07\x0c\x5b\x64\x4a\xe2\xfb\x53\x51\x07\x02\xfc\x2c\x84\x8b\x0f\xec\x12\x89\x3f\x82\xe0\x1c\xb6\xbc\x47\xc7\xfe\xd5\xfe\xf3\xcf\x75\x48\xf3\xe8\x02\xbd\xaf\x28\x2e\x2d\x53\x72\xde\xb1\x37\xec\xd7\xa1\x66\x3c\xc6\x84\x75\xf1\xb2\x77\x56\xb8\xd6\x60\xe0\xdc\x2e\xcc\x30\xcc\xb5\x01\xa9\xf8\x1d\xfb\xbb\x9a\x78\xf8\x60\x6d\x31\xcb\x7b\x80\x0a\x8a\xf5\x5b\x40\x9e\xc1\x48\x28\x01\x2f\xb9\x47\x35\x04\x8b\x83\xdd\xe1\xb3\xeb\xf3\x0c\xd9\x91\xaa\x09\xd2\xdd\xab\xdc\xf8\xbe\x32\x61\x78\x70\x84\xec\x3c\x3e\xc0\xe5\xa1\xe2\x78\x33\xf0\xcc\xf8\xee\x08\x1c\x57\x3c\x30\x90\xb8\x3c\xf4\x73\x97\x2c\x55\xa8\xab\xa9\x20\x8f\x7d\xdc\xaa\x18\x31\x21\x6f\x6a\x7f\x04\xc5\xe0\x9b\x53\xaa\xbf\x75\x3c\x5e\x2c\xad\x0a\xfa\x04\x85\x6f\x68\x18\x38\x7d\x77\x22\x2b\x92\x58\x5c\x62\x7a\x61\x82\xc4\x81\x62\x2b\xab\xd5\xe9\xdc\xc4\x9d\x27\x8a\xf0\x0f\x11\xa2\xdd\x08\x48\x00\xff\x9c\x3c\x1d\x75\x2d\xf6\x4b\x7b\x9a\x95\x71\x14\x87\x60\x8f\x89\x6a\xa3\x45\x03\xaa\x82\xa3\xd7\x07\x44\x75\x3e\x46\xc4\xf1\x82\x07\x82\x1d\xda\xe5\x9c\x85\xbc\x27\xce\xaf\x53\x2d\xe2\xa5\x51\xb7\x67\x76\xe0\x0a\xdc\x1e\xbb\x7f\x97\xe7\x10\x3b\x9d\xcc\xdf\x25\x58\x68\x55\x79\x07\xc1\xdf\xb1\x98\x4b\xa4\x09\xa2\x1e\x05\x1c\xe2\x1f\x04\xbe\xdf\xbd\xb7\xd8\x36\xa1\xcd\x35\x43\xb6\xff\xf6\xf7\x10\x04\x9c\xe0\x62\xdb\x23\x50\x10\xb3\xff\x33\xfa\x1b\x0e\xb2\x50\xf6\x4d\x1e\x0e\xcd\xa8\x94\x26\x83\x84\x9e\xe4\x25\x7a\xa1\xfa\xfc\x34\xec\x5f\xb4\xec\x73\xb3\x9c\x25\xa3\x32\xce\xd2\x30\x47\xad\x46\x09\xe2\x1e\xd9\x7d\xce\x6d\xc4\xa9\x59\xa9\xf7\x61\x40\x13\xd4\xcb\xde\x5e\xa2\xba\xdc\x37\x94\xea\x17\xc2\x74\x29\x1f\x0d\xcb\x68\x55\x52\xf9\x46\x2d\xc1\xcf\xb8\xd7\xfc\xd2\x28\x8f\x8b\x61\x3e\xb2\x89\x68\xab\xf5\x85\x2f\x38\x79\x10\xcb\xf5\x54\x74\xf8\x67\x7c\xfd\x28\x2e\xc2\xa1\xf5\x5a\x13\x6c\xc3\x86\xd5\x38\xda\x98\xa1\x26\xcc\xa8\x30\xb9\xe8\x82\xbb\xce\xf2\x9e\x83\xae\xfd\x4c\xfb\xf4\x6d\xf2\x1c\x1b\xdb\x77\xac\x06\x90\xd3\x58\x8f\xf9\x76\x99\xf5\x8c\x35\x7d\xb5\x99\x30\x66\x08\x1c\x65\xe4\xd8\xf3\xdb\xf3\xd8\xa6\x1f\xb3\x84\x32\x12\x82\x3a\xc2\x91\x67\x10\x5c\x28\x16\xc3\x03\xae\x77\x8e\xfd\xc2\x1d\x0f\x42\xcb\xd1\x76\x72\x48\xf5\x54\x56\x2b\xf8\x99\xe7\xf7\xef\xda\x38\x43\x7c\x76\x29\xd6\x22\x28\x7c\xa8\x43\xcb\x6c\x98\x97\x06\xb2\xec\xda\x8e\xb0\x37\x80\x5d\xf1\xdf\x55\x5e\x2e\xe1\xd2\x94\x2f\xa0\x38\x59\xab\xd3\x80\x7d\x74\x32\x8f\xed\x4f\xeb\x9c\xe6\xe8\x38\x2c\xe0\x9b\xa4\x5d\x4a\x92\xb0\xbf\xe8\x70\x6f\x20\x1f\x4a\xd4\x81\x96\xa1\x50\x75\xe4\xa4\x41\x99\x25\x4e\xa3\x64\xd4\x15\x20\x35\xf2\xf1\x53\x94\x9b\x9f\xa2\xd5\xba\x88\xbb\xa6\xb0\x15\x5f\x9d\xd8\xf6\x43\x48\xc7\x21\x96\xe9\x6c\x3f\xf7\xea\xfe\xf7\x66\xc0\xcb\x68\x9d\x99\x38\x9f\xbd\xa1\xc9\x17\xeb\xf5\x28\x69\x51\x66\x7e\x91\xa2\x9d\x8b\x0e\x38\x57\xe6\x71\xaa\xb9\x08\xaa\xbe\xff\x94\xe9\xfa\xff\xb4\x21\x53\x7f\xb6\x7e\xc8\xbd\xdc\x14\x85\x23\x84\x39\xdd\x59\xff\xc9\x23\x4d\x9e\xf7\x51\x96\x88\x3a\xa2\xb2\x84\x99\x3d\xec\xd0\xf1\x61\xde\x8b\xd3\x6d\xf5\xbe\xaf\xe8\x1d\xfb\x2b\xce\x15\xc9\x39\x3d\xbd\x4f\xdb\xdf\xa7\x3a\xa4\x00\xb4\x7d\xcc\x85\xa6\xd2\xa1\x8b\xf6\x3a\xe5\xb6\x80\xb0\x13\x17\x27\x0c\xa3\xea\x58\x48\x8d\x77\x14\xa0\xc0\x68\x85\x26\x3d\xbc\x24\x5c\xcd\x46\x08\x17\x15\x32\xc7\xf8\x39\xae\x8a\xf7\x73\x13\x96\x46\x98\xc6\x1a\x5b\x7a\x2c\xd0\x05\xea\x93\x97\xa1\x90\x04\xd0\x14\xbb\x6a\xef\xd6\x95\x73\x3d\xc9\x6c\x18\x7c\x7a\xe2\xfa\x4d\x61\xec\x8a\xb3\xc3\xd6\xba\x50\xa8\xfa\x88\x09\xc0\xd0\x85\x71\xba\x1f\x7b\xb5\x9a\xf5\x91\x5d\x7a\x04\x89\x6b\xf7\x21\x87\xca\x75\x92\x42\x1f\x53\x4c\xf4\x92\x59\x59\xc8\x56\x67\x26\xd6\x0d\xac\xa4\x58\x63\xee\x20\x56\xd1\x6c\x9d\xb4\xc6\xb2\x24\x8e\x0c\x9e\x01\xb7\xfd\xe5\xb8\x91\x8c\xda\x8f\xf3\x25\x37\xad\x91\x1a\x1d\x21\x06\xef\x11\x57\x3f\xad\xc7\x4f\x98\xc7\x29\xb2\x32\x71\x30\x0d\x7c\x2d\xf5\x38\x85\x9b\xbf\x12\xa2\x46\x2a\x5a\xe0\x1d\x9f\x68\x9f\x67\x2f\xe0\xeb\x94\x94\xf7\x4d\xfd\xe5\x3d\x49\xa1\x9c\x09\x9e\xb7\x08\x71\x80\xc3\xc5\xdc\x98\xdc\x42\xfe\x30\x74\xb7\x42\x2b\x06\x60\x12\x14\x35\xf0\x91\x53\x54\x9a\x59\xa3\xab\x8b\x8b\x2f\xdb\xc5\x49\x93\x1b\x7b\x45\x9a\xf5\x90\x79\xca\x00\x46\xd4\xcb\x66\x9b\x5d\x2b\x9d\x73\x92\x23\xb2\xfc\x3f\x28\x7b\xaa\xd7\x12\x19\xe1\x82\x42\xad\xe6\x22\x7e\xec\xf5\xc3\xa4\x9c\xa1\x31\x86\x3e\x2e\x3b\x24\x2a\xc4\x89\x81\x2a\x69\xfc\xb2\xa0\x81\x50\x55\x10\xf2\xb4\xeb\xe8\x3b\xbf\xa7\x75\xaa\xc9\x4a\xc6\xac\x82\xdf\x0d\xd3\xab\x6f\x92\xa1\xd6\x68\x64\x2e\x54\x1e\xb6\x20\xa8\x45\x7c\xf1\x03\xea\xef\x16\xc3\x6c\xc9\xa4\x24\x3c\xfc\x87\xa4\x31\xfb\x87\x04\xe8\xcf\x33\x5b\x11\x9c\x61\x1f\xe6\xca\xbb\x87\x42\x06\x0f\xdb\xfb\x0d\x12\x5c\x32\xc3\xa1\x23\x2e\x08\x5e\x84\x2e\xeb\x3e\x99\x72\x5f\x69\x20\x51\xee\x53\x14\x90\x1b\xd4\x58\x39\xff\x4d\xe0\x17\xe3\x7f\x33\x95\x75\xd5\xeb\x6f\x2f\x1c\x52\xf1\x12\x38\x28\x39\x26\x60\xdb\x68\xb8\x12\xe6\x5d\x6c\xea\xf8\xb6\xf3\x36\x3a\x97\x63\xac\x07\xd8\x8c\x7e\x4c\x1b\xd3\x8f\x27\x30\x87\x51\xdc\x05\xc3\x13\x00\x4b\x30\xcc\xe4\x98\x5a\xac\x2f\x85\xd1\x92\x11\xa2\x3d\x60\x2c\xeb\x24\x9f\x8a\xf6\x9a\xa2\x6b\x1a\x5a\x93\xb9\x29\x46\x89\x6b\xe1\xe1\x43\x27\xb1\x82\xca\x09\x8d\xcc\x24\x5c\xc1\x3b\x55\xef\xfc\x16\x99\xea\xfb\x0a\xe8\x4a\x1e\xa7\x4b\xd6\xf9\x71\xcf\x41\x8f\xec\x7e\xde\x2b\x34\x37\x74\xac\x73\x13\x46\xa5\x0e\x34\x29\xdc\x07\x9e\x44\x79\x93\xe9\xe4\x17\xea\x45\xd7\xb5\x27\xb2\xa1\xf5\xf5\x71\x16\x2f\x13\x44\x4b\x50\xd8\x2e\x10\x90\x18\x0b\x17\x3a\xdd\xaf\x55\x04\x72\x3a\x52\xf9\xa6\x73\x96\x0d\xb1\x42\x2a\x7a\x88\x42\xb2\x13\x54\x58\xea\xae\xa6\xe1\x20\x8e\x44\x38\x72\x42\xab\x58\x4e\xa6\xe6\xd4\xdc\x5c\xbb\xa8\xf7\x39\x19\xbc\x6a\x96\xea\x57\xc2\x6d\x1d\xf2\x10\x5d\x6b\x12\xcd\xeb\x9a\x30\xf1\x96\x3b\xce\xc7\x75\xde\x7b\xb7\x6e\x2e\xc5\xec\xde\xdd\x1e\xc4\x51\xdf\x24\x56\xc3\xd3\x01\xc7\x11\x42\x5d\x47\xf0\x20\x27\x8e\x21\x14\xa7\x42\x10\xca\x52\xa5\x1d\xe0\x02\xdf\x0d\xa8\xda\xf8\x2f\x03\xaa\xbd\x1f\xfe\xc4\x46\x63\x58\x7e\x1e\x24\x47\x95\xea\xa9\x07\xb3\x9a\xbf\xb5\x9c\xba\x8e\xa4\xc4\x68\xd3\xbe\x1b\x3c\xac\xac\x91\xbd\xf3\xbf\xd8\x72\xce\x5d\xc2\x2d\x42\x2e\xb8\x73\xdc\xfa\xea\xaf\x49\x5c\xb6\x4d\xdc\x44\xd4\x61\xae\xe5\xb8\x9e\xaf\x10\x4c\xf4\x76\x45\xa8\xda\x9b\x01\x95\xf4\x3f\xae\xb6\x7e\x4e\x99\x28\x50\xfb\x46\xa2\x5e\x05\x54\xef\xb8\x6f\xb3\x4b\x2d\xa5\x78\xd6\xe3\x85\xaa\xf5\x8d\xaf\xcb\xdf\x5c\xb6\xfe\x42\x68\x12\x9e\x64\x4f\xfc\x07\x80\xb7\xe3\xa2\x0e\x43\xa3\x19\x81\xf8\x05\x50\x53\x91\x80\xff\xb9\x45\x0d\x63\x89\xfe\x80\x1a\xc6\x37\x21\x7b\x81\x67\xf8\xbe\xc5\x42\xe3\x42\xae\x90\x59\xee\xe9\xca\x5b\x9b\x1c\xad\x88\x48\xf4\x53\x24\xfc\xd8\x03\xcf\x54\x75\x12\x25\x2d\x49\x54\x6b\x35\xba\xae\xa3\x3f\xb1\xe1\x86\x7e\x06\xba\x98\xb7\x26\x38\xb6\x6b\x98\x3a\x58\x8f\xae\x36\x88\x51\x1c\x68\x27\xb1\x47\x0f\x23\x56\xbe\xcb\x81\xf3\x64\xf7\x3b\x4b\xbb\x4f\xf9\xad\xed\xaa\x35\x42\xc0\xb6\x72\x16\x4f\x5f\x9a\x38\xf8\x06\x2c\xb9\xef\x43\x85\xdd\x79\x62\x78\x6b\xc0\x5b\xc0\xfe\x29\x42\x8f\x90\x4b\x60\x3c\x3a\x07\x5b\xc7\xd3\x9c\x19\xdb\x47\xab\xac\x43\xd2\x57\x0c\x30\xa8\xe4\x7f\x30\xf6\xf1\x78\xc4\x39\xd1\x01\x27\xf6\x7b\xa8\x48\x3d\xdc\x90\xca\xfc\xd4\x36\x61\x95\xdf\xf4\x49\xea\x4f\x51\x56\x94\xa1\x65\x17\x68\x0d\xd2\x13\x7f\xaf\xb0\xfc\xeb\x96\xce\xd3\x31\xfb\x12\x9a\x32\xb6\x0a\xd2\xf5\x23\x42\xe5\x62\x0d\xc3\x4a\x4e\x82\xa7\xa8\x0a\xde\x45\xd7\xd7\xe2\x6d\x11\x52\xa3\x5c\xea\x8a\x1a\x7b\xe7\x1d\x92\xc6\xa7\xc9\x2b\x59\xbe\x54\x48\xf9\x03\xe3\xf3\x6c\xe5\x3b\xd1\xd0\xa2\xc4\xce\x23\x86\x2e\x72\x42\x46\x9d\xe7\x2a\x32\xdc\x62\xd7\xfd\x7b\x53\x3e\x88\x20\x4b\x44\x59\x3e\xcc\xf2\xd0\x8d\x1f\x91\xe9\xc0\xdb\x57\xcd\x8e\x27\x48\xd3\x61\x35\x4e\x7b\xb3\x78\x53\x88\x94\x6e\x81\x58\x24\x27\xa4\x80\xf8\x1e\xa6\x81\x9c\x4c\x80\x7d\x47\xd1\x12\x7a\xb3\x0a\x39\xb1\x0b\x0d\x0a\xcb\xdf\xab\xfc\x57\x6c\xe9\x78\x04\x3a\xda\xc6\x48\xa4\xc4\xa2\x07\xa9\xf7\xc7\x15\x41\x05\xae\xdb\xa7\xe4\xc0\x21\xf5\xd4\xc1\x6e\x22\xe5\x41\x9d\xeb\x4f\xd1\xc6\x36\x58\x90\xd4\xc9\x71\xc3\x50\x73\xd4\x49\xcb\x2e\xc6\x66\x60\x5e\x96\x45\xbd\xb1\x17\xd2\x90\x11\x16\x2b\xe1\x50\x4a\xe7\x48\x6c\x6e\x92\x22\xd7\x45\x42\x22\x7e\x48\xbf\x94\x84\xc3\x42\x12\x34\xa5\x59\xd8\xdf\x51\x9e\xc5\x53\x93\x6c\xbf\x83\xcf\xb5\xff\xb6\xbd\x7e\xf5\xcc\xac\x7f\x41\x8e\x29\x99\x59\x8e\xc3\x28\x1b\xec\xf0\xc0\x88\x1f\xda\xc7\xa5\xec\x08\x72\x48\x39\x35\xc9\x5b\xc0\x1d\x23\x92\xff\x99\xdd\x53\x1c\xca\xc6\xd5\x98\x7f\x38\x15\x00\x3a\xc9\xb5\x3c\x5b\x8c\xcb\x19\xda\x45\x4f\x93\x7e\xda\x2c\xf6\x61\x3c\x8f\xfb\x14\x1c\x84\xcb\x26\xd9\x5e\x5f\x2b\x56\x8e\x1d\xe3\x69\xa7\x74\xf1\x21\xaa\x7c\xe0\x7e\x87\xab\xee\xff\x9a\x5d\x90\x66\x3b\x3e\xeb\xc8\x8b\xbe\xfd\x66\x34\x93\x20\xe8\x8f\x98\xe7\x6d\x96\xa3\x9d\x40\x84\x89\xf0\x84\x92\x54\xeb\x87\x80\x4c\xfc\x47\x9c\xcf\x8e\x52\x63\x97\x17\xa7\x8d\xee\x19\x27\x81\xdf\x5a\x7f\xa3\xc1\x63\xb1\x1d\x85\x85\x2f\xea\x60\x7d\xbe\x5d\x79\xb0\xf1\x6d\x8a\xe6\x23\x93\xd7\xf1\x50\x8b\xd8\xbb\x52\x51\x51\x58\x90\xb6\x56\x7a\x61\xda\x9b\xf5\xd5\x9f\xe3\xf8\x2b\xcd\x12\xed\x13\x55\x61\x8b\x96\x33\x65\xdd\xd2\x99\xc0\x07\x2c\xc7\xbd\xcc\x16\x16\x30\x36\x44\x42\x56\x4e\xdc\x0b\x0b\x17\xb2\x51\xda\x45\x69\x15\xf0\x96\x13\xf8\x31\x44\x99\x8f\xdb\xc4\x93\x1b\x46\x58\xe3\xee\xda\xd5\x10\xdd\xeb\xe3\x53\x71\x8d\x55\x16\x1c\x26\xe1\xaa\x0b\xe4\x90\x76\xbf\x4b\x92\x8a\xf7\xc9\x40\xe9\x66\xf5\xf4\xb4\x7f\xce\xdf\x99\xa5\xe0\x43\x25\x2c\xb0\xb5\x08\x13\x56\xfe\x0b\x51\x91\xfc\x8f\xc3\x46\x02\x4e\x01\x48\x2a\xf6\xe1\xef\xda\x5f\xb7\x7f\x76\xfd\x0b\x68\xd2\x08\xff\xd5\x56\xb9\x71\x93\x8f\x8e\x1d\x77\xe8\x1f\x7c\x66\x4c\xb1\xea\x29\x16\xc8\x02\xd3\x4a\x1b\xb8\x0d\x45\x81\xb0\xbb\x1c\x17\x99\xd4\x87\x11\x4e\x6f\x50\x68\xbd\xd1\x00\x50\x7a\xa1\x9d\x9a\x97\xcb\xd9\xfa\xb9\xaa\xa2\x95\x4f\xb1\x7f\xa7\x9a\x50\x70\xf2\x54\xbe\xcb\x84\x5c\x8a\xd3\xd2\xe4\xc3\xdc\x94\xc5\x66\x95\x01\xbf\xbb\xf8\x82\x4f\x98\x47\xfd\x3c\x5e\x0e\x93\x16\x03\xf0\x30\x43\x75\x9d\x78\x82\x84\x07\xf3\x3c\x2e\xec\x24\x51\xf1\x12\xfb\xbd\x28\x79\x9e\x21\x02\xc1\xb4\x9a\xe7\x9e\x83\x70\xe3\x6d\x11\x10\x0a\x8d\x17\x39\xf6\xf5\xcc\x3c\x5c\x50\x7d\x1c\x30\xff\x44\x69\x5d\x4e\xdc\x1f\xf6\xc3\xbc\xe8\x9b\xdc\x2a\x5a\x28\x7b\xd8\xde\x86\x9c\x50\x93\xaf\x67\xca\xd2\xd2\x04\xea\x59\xe3\x34\xfa\x0e\xed\x72\x72\x7b\xf5\x6e\x25\xd6\x53\x78\xe1\xce\x64\xdd\x77\x80\x6e\x07\xde\xeb\xfe\x7e\xc0\x46\x59\x04\x9d\x3e\x45\x4d\xe2\x0d\xd0\xd9\x1c\x9e\xcb\xdb\xbf\xc1\x38\x5a\xf3\x5b\x4f\xdd\xe8\x86\xcb\xc2\x43\xc6\xb8\x7a\x93\xb4\x40\xde\x24\x22\xea\x30\xcf\xe0\xe6\xb2\x7d\x22\x38\x71\x76\x0b\xd2\xb9\x92\xff\x98\xf0\xfd\xa4\xb6\xf7\xbb\x4c\x05\x7e\x77\x4a\x81\xec\xd0\xae\x76\x77\x64\x66\xea\x0f\xe3\x7e\xe0\x81\xc0\xaa\x39\xca\x50\xd6\xa2\x52\x36\xea\xf5\xcb\x1d\xde\x45\x68\xeb\xb8\x8e\xb4\x6d\xbc\xf4\x93\x5f\xb4\x9f\x56\xc1\x64\x0f\xbc\xbf\xcf\x0a\xa5\x1b\x15\x79\x46\xaf\x23\x40\x51\x9d\xb1\x4f\x13\x06\xc4\xd7\x11\xd1\x42\xc0\xc4\xbd\x13\x10\xbd\xf1\x0e\x47\x3f\x22\xf1\x5f\x0f\xa3\x26\x21\x72\xd2\xde\xce\x33\xcb\x90\x50\x0c\x16\x96\x14\xb8\x0c\xca\xf1\xb8\x01\xb8\x95\x9a\x15\x9b\xb3\xca\x5e\xe9\xd8\xb9\xae\xa6\x84\xd0\x01\x0b\xe7\xd1\xa6\x2e\x37\x14\xe2\x2c\x9c\xc1\x77\x22\xde\xab\xa8\x6e\xfc\x5e\xe0\x6a\x77\x59\x34\x2a\x1e\xf2\x37\x70\x7b\xd2\xc3\xb4\x5e\x97\xdc\x13\xf4\x86\x09\xd7\x49\x9d\xf8\x7e\xc5\x42\xe6\x76\xed\x43\x10\xb7\x45\x1c\xd2\x34\x4f\x7e\x92\x78\x81\x61\x37\x89\x53\xd3\xb2\x83\xba\x49\xe4\xe5\x61\xbf\x0a\x3d\x53\xa7\x67\xda\xd3\xb7\x39\x88\xeb\x46\xd5\x6f\x08\x21\xfc\xb6\x31\x15\x05\x7e\x86\x97\x8d\xa0\xfc\xb7\x51\x9a\xc3\x04\xd9\xb0\x69\x2a\x32\x95\x7b\x36\x87\x40\x32\x2b\x12\x18\x08\x3f\xee\x92\xbc\x10\x88\x51\x28\x25\xfd\xc3\x80\xcc\xc3\x7e\x9b\x03\xeb\x2b\x18\x77\x13\xd9\xac\xd3\x50\x72\x5d\xbc\xe3\x84\x96\x78\x9b\x3d\x59\xdf\x0c\x48\x4f\xec\x16\xb5\x96\x2f\x4c\x41\x43\xbe\x58\x8f\xaa\xee\x28\x52\x5b\x17\xf4\x4e\xce\x32\xae\xf1\xec\x54\x2f\xc3\x6a\x0c\xd4\xc3\x3c\xca\xe3\x05\x0d\xf2\xb1\xf3\x48\x8a\x27\x27\x6e\x1b\x5f\x09\x93\x44\xf8\x7e\xaa\x12\xd8\x72\xb6\x37\x67\xa7\x88\x85\x5f\x7b\xbe\x9d\x84\x98\x12\x2a\x01\x51\xe7\xed\xba\x1d\x36\xe8\xbb\x0d\xb3\x52\x65\xf3\x31\x5b\x01\xb6\x91\x63\x12\x24\x36\x49\x8c\x72\x9b\xd3\xfa\xdc\xef\x79\x39\xd4\xbf\x7c\x30\x95\xdb\xcc\xcd\xb5\x47\x69\x64\xf2\x32\x8c\xd3\xd2\xf9\x17\x8b\xf1\x7f\xe0\x6f\xe7\xe8\x44\x6a\x9c\x77\x8b\x27\x3c\xdf\xa3\xd5\x21\x23\xc5\x0f\xb0\xec\x8a\xa2\xa3\x7d\x4d\x68\x1b\x7c\x34\x01\xfc\xb2\x63\x5a\xb3\x26\x24\x49\xb8\xf6\xbf\x0c\x08\x8c\x68\xdd\xa8\x9e\x95\x50\x4b\x74\xea\x51\x7d\x7b\x6f\x42\xc4\x02\x45\x08\xf9\x02\x12\x19\xda\xb0\xfb\x8c\xba\x08\xd7\xa3\x1a\xf3\xf7\x5c\xf0\x8c\x8b\x58\xba\xb1\xc0\xed\x35\x6c\x52\x7a\x94\xbf\x79\xac\x25\x4a\x05\x9b\x32\x3a\xb6\x81\x57\x5e\xaf\x8e\x91\xe2\xe5\x89\xd5\xef\x74\xca\x48\xb0\x58\x1b\x93\x4f\xb4\x9c\x76\xd7\xf5\x80\xf4\x73\xfe\xa7\x80\xc4\x1f\xde\xb1\x0f\x51\xa0\x2d\x98\xa7\xd8\xd4\xde\xb3\x97\x85\xe5\x6e\xeb\x98\xfc\x26\x8e\x57\x8c\x4d\xf8\xe7\x18\xf7\xa8\xde\x5d\xc0\x02\x85\x7a\xd4\x77\x02\x2f\x3e\x7c\x8a\x90\xd9\xe7\x03\x96\x1c\x3d\x57\x91\xb2\xe9\x84\xad\xf7\xc7\x14\xab\xd4\xa9\x7c\x98\xda\x48\x0a\xb5\xdd\x23\x64\x32\x78\xc4\xfe\x90\x02\x9b\x5a\x4e\x74\x72\x9d\x8c\xee\x92\xac\x28\x76\x7a\xa1\xd2\x35\x84\x16\x62\x15\x8c\x5b\x70\xaa\x8f\xf5\xad\x22\xbe\x44\x85\xc0\x61\x5a\x1d\x71\xe3\x6e\x45\xd1\xf5\x07\x76\xa2\x21\xa8\x43\xc2\x87\x57\x72\x2f\x78\x8c\x71\x5e\x5f\xb6\x22\x20\x2a\xd9\xeb\x6b\x5c\x47\x49\x48\xe0\x34\xee\x5f\x75\xc8\x7c\x9e\xf4\x8d\x5d\x07\xc0\xb4\xd3\xda\xbf\x7d\x83\x4e\xa6\x7e\x7e\x5e\x35\xad\xa6\x60\xa3\x87\x76\xb5\xd3\xb0\xd5\x3a\xf8\x9c\x82\x9c\x08\xff\xb9\x4e\xb8\x12\xeb\x82\xa6\xb2\x08\x12\x0f\xda\xf1\xad\xb1\xe1\xd3\xbc\xa9\x76\x47\x96\x41\xb2\x9d\x2e\xe3\x24\x06\x0f\x6e\x04\xb6\xc2\x98\x1a\x78\x3d\xb8\x71\x94\x05\xf0\x7c\xde\xae\xa8\x86\x7f\xb2\x49\x5f\x33\x5b\x5c\x24\xbb\x2a\x7c\x33\x92\x0c\x39\xa6\xfe\xd5\xd2\x08\x86\xb1\xda\x5d\x23\x31\x95\xad\x63\xea\xa8\x85\x83\x38\x29\x45\x29\x42\xe4\xa4\xf0\xd0\x55\x5b\xca\xa5\x51\xc5\x6a\x32\x1a\xd8\x9e\xa8\x76\x26\xc9\xbc\x1a\x80\x25\x4c\x9b\x9b\x93\xc8\xcb\x64\xd4\x35\xc5\xa3\x2d\xa7\xc5\x39\x26\x87\xee\x33\x44\x5a\xbd\x6b\x8b\x9e\x58\x32\x1e\x60\x5d\x73\xf6\x25\x5e\xf3\xf0\x3c\x56\x1f\xd5\xb0\xad\x1f\x25\xbe\xf6\x0e\xca\x5e\xda\x36\xf6\xcb\xcf\x83\x09\xd5\x5b\xdc\x1c\xca\x2d\x25\xd1\x37\x07\xa3\x72\x14\x26\xdb\x36\xa3\xd9\x85\xa9\x16\x78\xe3\xf1\x4b\x95\x97\xd8\xfb\x19\xb7\xdd\xff\x21\x75\x6f\xe2\xb4\xde\x10\x5b\x3e\xe1\xfe\x6e\xe5\xbd\x0e\xbe\x4b\x03\xf9\xc0\xee\xe7\x66\x29\x93\xb1\xb5\x65\xf6\x2a\xd5\x1e\x16\x21\x38\x77\x52\xbd\x20\x5c\x2c\x1f\xa2\xb2\x27\x4a\x20\x0e\xbc\x51\x0f\x27\x27\x8a\xe6\xf5\x13\x84\x2f\xa3\x86\xeb\x2d\xe7\x2d\x30\x6b\x33\x43\x84\x25\x4f\x63\x9b\xc1\x88\x39\xe3\x42\xe0\xa8\x3f\x4a\xa1\xfb\x87\x2b\x43\xff\x5c\x8e\x9b\x94\x68\xdb\x69\x56\x1a\x21\xf0\x49\x91\x4b\xd6\x4b\xc4\xd0\x67\x70\x65\x18\x52\xd2\xfa\xd0\x7a\xf3\xa3\xbe\xe4\x92\xaa\x80\x2a\xfe\x4f\x0a\x6d\x08\x38\x6f\x23\x6f\xa5\x3b\xd5\xa8\xfa\x51\x7a\x54\x4b\x66\x60\x39\x8e\x08\x1d\xef\x92\xc0\x37\x7c\x0c\xdc\x0a\xe7\x1e\xc1\xfb\x95\xaf\x0c\xbc\xcd\xb2\xd2\xc7\x08\xe0\x56\x98\xf8\x5b\x70\x9d\x43\x7c\x7a\xd7\x0e\x15\x39\x9e\x28\x2e\x96\x11\xb0\x1e\x9f\x8c\x74\x9a\x08\xaa\x46\xc3\xc2\x94\x33\x9e\x8c\xf7\x66\x35\xb3\xd9\xaf\x0d\x31\xed\xd6\xb1\xb3\xea\xde\xfb\xb4\x6f\x9c\x7f\xf9\x4b\x1d\x3f\x18\xb6\x8d\x5b\xbf\x72\xc0\x29\x7d\xd7\x9f\x45\x9a\x28\x84\x79\xec\xf2\x0f\xe4\xc5\x60\x7d\xff\xf9\x0e\x81\xd1\x1e\x60\x30\x61\x9f\x9f\xe9\xd4\x13\x55\x8d\x67\xb1\x79\x29\xb8\xc5\xc6\x99\x8a\xcc\x21\xd5\x37\xa9\xef\x60\x23\x02\x85\x1a\x3b\xf1\x7b\x81\x47\x89\x3e\x3c\xa6\xfd\xf6\x81\x7d\x13\x08\x0f\xd0\x73\xc1\xed\x7e\x60\xa7\x36\xca\x49\x3b\xc6\x64\xf6\x16\x17\xb6\x32\xc9\x5b\x9f\x13\x2d\x58\x27\xb9\xf7\x28\x31\x61\x3a\x42\x1b\x57\x44\xbf\x03\x5f\x86\x38\xe6\x28\x59\xc3\xb0\xcc\xb3\x34\xfe\x96\x5b\x70\xb1\xbb\x62\x5d\x90\x63\xc2\x55\xf4\xe3\x52\x13\xb6\x03\x3e\xba\xaa\x9f\x80\x46\x4a\x9f\x8a\x37\xd7\xe1\xed\x7f\xa3\x4a\x09\x8f\x0f\xc4\xdb\x22\x01\x86\xd0\x7f\x66\xca\xbf\xc6\xf2\x1b\x6d\x73\xd8\x35\x35\x3f\x20\x6d\xc0\x0f\xbc\xbf\xaa\x49\xe2\x65\x81\x41\x21\xac\xbf\x46\xed\xf4\x6b\x13\x41\xa6\x89\x96\x1e\xa9\xdf\x8a\xb6\x1c\x7c\xb6\x7d\x1c\x2f\x15\x49\xf2\xb1\x09\x9d\xe1\xca\x3b\xa6\xac\xdb\x34\x06\xc5\x6e\xd9\x41\x5c\xdc\xcd\x52\xb2\xf5\xd3\x51\x05\x68\x7b\xfb\x18\x88\x7f\x64\xbb\x67\xf8\xf1\x8d\x29\x39\x9a\x17\x5f\x6c\x9b\x65\x93\xf7\x92\xb0\xab\x41\x33\x96\xb2\xf7\x03\xe2\x48\x4e\xa3\xd6\xe7\xe6\x0e\xb4\x87\x59\x5c\xc8\xfe\x86\xed\xe9\x43\xc2\xdc\x7f\xe8\xd0\x58\xc3\xb8\x28\x63\xd5\xd0\x70\x1c\x44\x97\xc6\x4f\xf3\x57\xea\xa4\x36\xec\xf5\x34\xeb\x71\x6e\x1a\x9e\xf6\x38\x05\x3f\xde\x3b\xdf\x8e\xeb\x50\xb4\x1b\xa2\x6a\x86\x65\xf3\x67\x04\x56\xf8\xd9\x54\xbc\xfb\xc5\x76\x3e\xea\xc6\x75\xe2\xac\x58\x4c\x55\x7f\x62\x32\x49\x03\xe7\xf1\x73\x96\x44\x30\xeb\xeb\x4c\xa2\xc2\x88\x1b\x17\xff\x64\xac\x0e\xc8\xa4\xf0\xee\x1e\x4c\x55\x80\x77\xef\x6e\x2f\x98\x28\x1b\xa8\xab\x89\xb6\x3d\xc8\x31\xe9\x94\x1b\x72\x8b\x26\xc9\xd2\xd5\x19\xc2\xf1\xde\xa1\x2f\x7f\xc8\x2e\x5b\xaa\xd5\xd1\x64\x24\xf5\x92\xa9\x63\x9c\x42\xa0\x6a\x28\x3a\x89\x99\xa4\x9c\x10\x3e\xdb\x96\x3d\x76\x62\x01\xd2\x2d\xc8\x17\x83\xde\xa1\x16\xc6\x65\xe4\xb6\xc8\x93\x77\x42\x2b\x1e\xab\x61\x6b\x4c\xa6\x2f\xd0\x8a\xb7\x2b\xde\x1b\x4f\x76\xbc\x6c\x86\xb4\x20\xf4\x37\x38\x0e\x2f\xac\xe8\x09\x89\xa8\xf2\x1a\x7a\x95\x4a\xeb\xa2\xd0\x8d\x80\xf9\x7e\xe5\x7b\x63\x17\xf9\x49\xfe\x80\xa5\xeb\x7f\xc8\x78\xa4\x34\x94\x1d\x50\x23\xdb\xd6\xfc\xfc\xc6\x9d\xca\x63\xd4\x44\x82\xdc\x2e\xbe\xd1\xb4\x9b\x98\x1d\x12\x45\x19\xa6\x5d\xa5\x8f\xa9\xd3\xb0\x0f\xcd\x7e\x8f\x24\x3d\xe2\x81\x25\x55\x96\x80\x72\x39\xaf\x3c\x12\x70\x27\x23\xa2\x3c\x1b\x66\x45\x98\x3c\x4e\x12\x03\x0f\xd0\xd0\x46\x31\xe3\x0a\xc6\x9e\x96\x86\xbd\xb7\xd8\x1b\xe4\x9c\x79\xd5\x2e\x21\x58\xf5\x24\x00\xd4\xd6\xae\x6f\x86\xfe\x1e\x91\xa8\xde\x40\x23\x0d\xdb\xcd\x4d\xe4\xa8\x78\x16\x17\x11\x32\xca\xc7\x95\x70\xcf\x18\x2e\x37\xf1\x7b\x79\x38\x18\x84\x22\xb2\x8d\xed\x06\x95\x2d\x14\x20\xa0\x80\x2f\xb8\xf8\xea\x33\x14\xd8\x96\x26\x49\x4c\x54\x47\x8d\x85\x45\x36\x68\x78\x48\xed\x8e\xad\x24\x9f\x2f\x74\x36\xed\x55\x35\x36\x14\xfa\x59\xd2\x75\x99\xb1\xa2\xff\xfd\x6a\x75\x95\xc4\xb7\xa6\x5b\xc9\x73\x73\x75\xa6\x5b\x8c\x12\x9f\x5c\xe3\x4f\x31\xd8\x98\x57\x82\x21\xc4\x25\x64\xf1\x19\x78\xb4\x0e\x64\xb4\x57\xef\xd3\xe5\x59\x54\x8d\x91\x94\xb6\x3a\xd4\x7c\x92\x66\x33\x5e\xa6\x6c\xf2\x98\x26\x7f\x01\x50\x81\x03\x34\x1c\xda\xe5\x9a\xa7\x76\x19\xc1\xb5\x09\x4c\x47\x2d\x6e\xea\xc1\xa0\xc4\x94\x7a\x90\xa8\xcb\xd3\x93\x6c\x7d\x53\xf6\x73\x83\xf5\x41\xc0\x02\x78\xd9\x8a\x1c\x68\x62\x45\x7d\xcb\x84\x49\x28\xf6\x4a\xa8\x83\x3c\xa8\x88\x5e\xc0\xc8\xb5\x61\x1c\x2d\x19\x50\x6b\x9c\x3b\xfa\x5e\xbd\xdd\x0b\x01\xeb\xe7\xc6\xdd\x38\xcc\x63\x23\x8c\x6d\x55\x3d\xb2\x37\x84\xf7\xbf\xdd\x36\xf0\xf0\xd1\xed\x63\x1f\x2b\x2c\x98\xdc\x7e\xae\xe5\x24\xd2\x6e\x92\x44\xda\x45\x56\x41\xfd\xb8\x01\xb4\x35\x0f\x09\x30\xa1\x6f\x63\x75\xff\x10\xb1\x86\x9c\x50\xf7\x3e\xcc\x4d\x58\x3c\xe2\xe7\xf0\x4d\xb6\xba\x80\x0a\x1d\x42\xb4\xc3\xb4\x76\x5e\xc7\x46\x8d\xec\xe7\x34\x02\x00\x39\xb1\xc8\x0c\x47\x10\x72\x8e\xa7\xc7\xec\xe4\x95\x4f\xb3\x1c\xe2\x69\xe4\xc1\x12\x2e\xd2\xea\x1d\x65\x69\x2a\xd6\xaa\x4a\x72\xb0\xcf\x51\x7a\x08\x15\x69\xc0\x5f\x20\x0c\x39\xe2\x2f\x0c\x8c\x07\x4d\xd2\xe4\x8b\x61\x1a\x61\xa7\xc4\x22\x0c\x08\x9c\x1c\x93\xbb\x51\x6e\x86\xa3\x85\x24\x8e\xc2\x54\xda\x36\x4e\x42\x76\x6e\xce\xc9\x82\x36\x16\x3b\x87\x99\x73\x93\x45\x4c\xfa\xe6\x04\x03\x94\xac\xea\xdf\x9d\x9a\xe7\x73\x73\xe0\xd1\xc1\x91\xc1\xd5\xb8\x2f\x4e\x30\x38\x1b\x41\x63\x7d\x6f\x57\x20\x70\x6c\x0a\xfa\xce\x38\xce\xda\xc0\x84\x40\x5a\xa9\xbb\x88\x57\xfb\x3e\x4c\x5d\x8d\x19\xa4\x5a\xf8\xa3\x5b\xb4\xee\x47\x26\x2d\x47\xb9\xf8\x0d\x3e\xeb\x0c\xae\xea\x4f\xca\xf1\xa4\x78\xe4\xca\x42\x18\x2d\xc1\x1a\x08\xc8\x22\x80\x14\xe4\xb8\x41\x33\xe4\xd9\x3a\x9f\x8b\x96\x5a\x14\x3b\xda\xeb\xd2\x38\xb2\x01\xcf\x3f\x20\x61\x21\x2d\xfe\x52\xe9\xf4\x2c\xf5\x8e\xcc\xcb\x65\x3e\x2a\xc4\xdc\xe3\x05\x2f\xd8\x55\xff\xb5\xc2\x81\x36\x97\x65\x3d\x48\x2d\x09\x53\x4b\x99\x71\x48\x4b\xe9\x16\xaa\x53\x6b\x43\x44\x67\x06\xc3\x24\x5b\x35\x90\xf0\xc3\xfe\xf1\x57\xb4\xa5\xfe\x7d\x9b\xba\x20\xe2\xfe\x09\x65\x21\xe2\xad\x35\xeb\xab\x4f\x1f\x12\x9a\xf2\x43\xda\x16\x2f\x57\x3e\xb2\xbe\x4c\x9a\x97\xcb\x61\x9e\x9a\x24\x91\x1a\x28\x0a\xfd\xa2\xa5\x2a\x27\xd4\x53\x0a\x93\xd2\xe4\x29\x60\x92\x2d\xda\x1b\xd6\x49\x0b\x6d\xdd\xe3\x6b\xa3\xd8\xa4\x91\xd1\x9c\x1b\x1d\xd0\x87\x21\xbb\xec\xa4\xc7\x7c\x79\x7f\x9d\x9d\x1d\x1e\x26\x82\x4d\x92\x2d\x8b\x4f\x1c\xba\x20\x20\x0d\xc8\x31\x35\x6a\xbb\x66\xd1\xe4\x46\x44\x8e\x5e\x98\xf4\xc5\x91\x93\xa9\x9c\x60\xef\x7c\xdb\x16\x93\x8d\x4d\xfb\x08\x51\x8b\x74\x5e\x8e\x37\x03\x52\xe6\xe7\xdb\x5f\x7c\xda\x9b\x66\x9f\xa5\x4d\xee\x32\x42\x0e\xa1\x04\x33\x0d\x58\xca\xbd\xc8\xd5\x1f\x05\x92\x1c\xab\xde\x5a\xe5\x69\xe0\x0f\x02\x72\xb5\x7f\x1d\xbc\x24\x67\x8f\xe7\x18\x43\xb7\x08\xa9\xb7\x7d\xec\xe7\xc0\xeb\x01\xc9\xc3\x3f\xdc\xb1\x7b\xa7\x60\xf8\x02\xc2\xc4\xc2\x84\x0a\x53\xf8\x3d\x6c\xb7\x78\x9c\x33\xe3\x7a\x94\x88\xdf\x2c\xde\x07\x42\xdf\x59\x62\xf8\x0c\xc2\x3c\xca\x8a\xed\x5e\x57\x53\x0a\xa7\x5a\x85\xd8\x44\xc5\xaa\x7f\x56\xd7\xed\xfa\x4a\x35\xe5\xaf\xef\x40\x8b\x64\xe4\x8b\x9e\x95\x61\x99\x39\x0b\x58\x51\x90\xb4\x53\x5b\xd5\x24\x37\x77\x81\x74\xe2\x7d\x73\x14\xa6\xe5\x68\xd0\x22\x20\x28\x6e\x41\x51\xa1\x4e\xbd\x3b\x37\x45\x37\x15\xae\x99\x62\xfe\xc9\x92\xf2\x02\xad\x04\x61\x77\x39\x4c\x23\xc9\xde\xf7\x78\x98\xac\x73\xc1\xe1\xf6\x9f\xcc\x62\x38\x37\x60\x13\xbd\x49\xea\xbc\x37\xd9\x11\x44\x74\x36\xe5\xa4\xf2\x90\xad\xd0\xe4\x59\x31\x0c\x45\x55\x04\xf1\xdb\x15\x36\xfd\xb8\x42\x68\xbc\xae\x29\x2c\x70\x19\x55\x42\x4c\xef\xa3\x94\x2b\x1d\x6d\xd2\x7f\x80\x9f\x90\xab\x48\xa0\xbf\x73\x89\x7a\x3d\x97\x18\xab\x95\xa5\x3d\x93\xef\xac\xd7\x1f\x05\x9c\x7a\x5a\xea\x1f\x05\xe4\x60\x26\xfe\xee\xe8\x2f\x1e\xa9\xbc\x65\xde\xbd\xc0\x0b\x92\x00\xa3\x8c\xbb\xbe\xc5\x51\xae\xa0\x52\x55\xa1\xf7\xe9\xcd\xfe\xe9\xf3\xf3\xfb\x76\xda\x87\x00\xfe\xe3\x47\x32\xcc\xd8\xdb\x07\xa1\xc2\x6d\x7c\x2b\x2a\x6e\x28\x71\xa1\xb4\xfa\xdf\x54\x2c\x7d\x47\xd3\xec\x72\x45\xb6\x2d\x72\x17\xa8\x10\xbe\x36\x61\xf0\x17\x76\xe3\x64\xd5\x96\xff\x54\x60\x6e\x9a\x08\xab\x74\xae\x49\x4d\xba\xbd\x13\xb0\xee\x17\x1c\xac\xfb\x09\x57\x37\x88\xca\x51\xee\x96\x4a\xf5\x57\x22\x4c\x19\xb8\xee\x13\xd8\x47\x05\xb9\x34\x10\x23\x97\x4d\x6a\xbe\x35\x32\x89\x40\x44\x90\x0d\x6d\x61\x28\xda\x96\x71\x83\x14\x86\x04\xc4\x78\xc2\x88\x58\xe5\x78\x2a\x44\xfa\xc2\x17\xda\x49\x58\x2a\x3b\xd1\xf9\x0a\xee\xdf\xa5\xc7\x54\x9e\x36\x19\x72\x1b\xcd\x5a\x08\x51\x71\x87\x72\xdb\x3b\x3c\x07\x7f\x36\x55\xcc\xdc\x3b\xdf\x0e\x8b\x25\x55\x5b\x9c\x70\x13\xd3\x96\xd1\x94\xaf\x97\xb4\xf9\xb4\x3f\xec\x41\x46\xe7\x09\x64\x74\xbe\xc9\x5c\x38\xcf\xb2\x45\x37\x43\x9c\x3f\x88\x2b\x05\x9e\x75\xea\x93\xf1\x20\xec\xc5\x29\xdc\x2d\x0f\xed\xda\xb7\x61\xb1\x5b\x1b\xef\x4e\x70\x14\x17\xca\x62\x07\x89\x60\x00\x4b\x20\x81\x5e\xf5\x89\xea\x64\x76\x08\x69\x38\xd8\x22\xa9\x32\x3b\x84\x94\x05\xc1\x45\x64\x33\x28\x1e\xa2\x62\xe1\x45\x86\x1e\xdd\x09\x3c\x75\xf4\x16\xb7\xe3\xce\xd9\xab\x51\x00\x49\xfd\x3b\xe8\x94\x41\xf5\x03\x7d\xdc\x1f\x60\xa4\x6b\x1c\xed\x27\xc5\x8a\x09\x87\xa2\x46\x31\x0f\x8d\xed\x8d\x4b\x0e\x82\x61\x95\x80\xb7\xf9\x49\x27\x7e\x15\xc8\xec\xe0\x03\x80\xfb\x7e\xcf\xfe\x2c\xba\x04\x47\x2a\x12\x24\x9f\x76\xcc\xdf\xbd\xa7\x1d\x99\xdc\x84\x09\x2d\xf3\xd8\x19\xe5\x98\x45\xa7\xe2\x5e\x98\x9b\xb2\x14\x8b\x4a\x07\xd7\x76\xad\x8a\x8b\x2e\x56\x59\xcc\x4d\x6a\xca\x38\x02\x83\x08\x2b\xc1\x11\x42\xe1\x5d\xb7\x29\x8e\x7a\xe5\x6f\x1e\x9a\x2f\xbe\xd8\x8e\xd3\xa8\xdf\x22\x1c\xbf\xbd\x3b\xc5\xf4\x13\xd3\x2b\x5d\x36\xa9\xb8\xd6\x3b\x6f\xb3\x07\xec\x6d\xf6\xc0\x5d\x53\x94\xa5\x8b\xa3\x62\xb2\xc0\x0b\x29\x2c\x2c\xb1\x02\x06\x45\x74\x71\xc6\x55\x9c\x47\x69\xd7\xe4\xb6\x44\x53\x10\x31\xf6\x1c\x5e\xb9\xea\xfa\x6b\x9c\xbf\x6c\xca\x6c\x3b\x29\xa7\xa3\x5f\xa4\xfa\x89\x2d\xa7\x32\xfc\x54\x87\xb8\x5b\x17\x49\x6e\xed\x06\xf7\x84\x6e\xb8\xfc\x21\x19\x45\x4b\x33\xd4\x31\x3b\x5c\x91\x00\x0d\xa4\x21\xc5\x1a\x61\x2a\x52\xdf\xbf\xab\x3d\x30\x49\x92\xad\x4c\x80\xf3\x5a\xf3\xec\x00\xe4\x84\x29\x92\x58\x0c\xa4\xd0\x52\x97\x9c\x51\x4e\xaa\x67\x36\xbb\x86\xec\x6b\x1f\xda\x65\x43\x6c\xc4\x83\xe7\xed\x9c\xd0\x82\xb7\x6f\x68\x7c\x40\xfb\xdf\xc0\xa4\x65\xa6\x52\x71\xb8\x19\xe9\x83\xca\xc9\x94\x4a\x90\xc6\x23\x65\x3f\x1b\xf5\xfa\xdb\xeb\x55\x54\xd5\xa6\xbc\x44\xf5\x45\xe6\x4f\x03\x3a\xe5\xa4\xdb\x3d\x2a\xbe\xf2\x68\xba\xcb\xa4\x6a\x25\xae\xe1\xdb\xeb\xb0\x91\x23\x24\x8c\x8b\x33\xa8\x64\xa8\x00\xac\x1f\x30\x67\x02\xdf\x74\x5c\x63\x4b\xcf\x26\x23\x30\x6b\x41\x8d\xaa\x3f\x0a\x0a\xef\x10\x12\xf1\x9d\xc6\x94\x39\x8b\x46\xc8\x46\xa5\x54\x1c\x30\xc8\xca\x6f\x07\x7b\xf6\x3e\x37\x43\x08\xf4\xc0\x17\x1f\xcf\xb1\xaa\xd5\xef\xb2\x3e\x83\xe9\xd9\xac\x03\x43\x0a\xb8\x66\xd4\x0d\xb0\x26\xde\x22\x49\x95\x13\xa4\xd3\x5e\x47\xf6\xc3\x32\x5b\x8a\xd3\xb0\x60\xb7\x80\xd3\x24\x4a\x36\xed\x21\x79\x68\x57\xbb\xec\xe7\xd9\x8a\x5b\xff\x05\xcc\x1a\x4c\x20\x5b\x3f\x45\x94\xdd\x30\x89\xbf\x85\xd7\x81\x75\xeb\x22\xbb\xfc\x48\x30\x80\x32\xe2\xcc\x98\xda\x84\xd8\xe0\xe5\x23\x81\xb7\x96\x98\x71\x3a\xbb\x71\x5a\xc4\x5d\x93\x6f\xe7\xce\x95\x7d\xbb\x58\x44\xd7\xa8\xe9\x78\x18\x0f\x0f\xc8\x82\x77\xc8\x49\x0d\x30\x44\x24\x0e\x4f\x4c\xf5\x81\xac\xc9\xee\x30\x14\x93\x22\x04\x07\xa2\x45\x8f\x3c\xe0\xc3\xca\xcf\xc3\x73\x34\x31\xea\x8c\xdd\x74\x77\xb2\xc6\xd2\x55\x90\x51\xc1\x4b\x86\xb4\x14\xa0\x15\x97\x08\xa1\xb0\x65\x4c\xb2\x0e\x57\x2b\xff\xd0\x2e\x53\x89\x65\x1d\x58\x33\xf9\x26\x14\x7f\x14\x30\xe8\xd9\xb9\x61\x1a\xd1\x78\xbb\x4b\xa1\xf6\x5d\xee\xa9\x8d\xd2\x5e\x98\xaf\xa2\xe8\xa1\x4e\xe4\x64\x08\xd6\xd4\x71\x3e\xd0\x2e\xfb\x76\x69\x71\x15\x99\x35\x62\x68\xac\xd1\x12\x64\xf2\xac\x0b\x00\x28\x6e\x55\x04\x0a\x95\xe2\x42\x1e\x39\x5b\x3b\x5e\x6a\x30\x4c\x56\x23\x33\xe3\xf9\x59\x7f\x44\x16\x63\x57\x6d\xe0\x85\x00\xf4\x5a\x93\x41\xef\x4a\x9c\x74\x23\x31\x1f\x42\x0b\xf1\x3c\xb5\x13\xcf\x4f\x89\xdc\xef\xde\xdd\x2e\x3e\x3f\x9c\xa1\x1a\xc4\x1b\x14\xec\xbf\x4a\xe0\x9e\xa3\x53\x0b\xc1\xf3\xfb\x77\xb5\x5f\x92\xce\x97\x82\xb2\xec\x17\xc9\xc9\x54\x31\x63\xcf\x41\x3b\x9c\x96\xd4\xbc\x01\x13\x54\x64\x6f\xe5\x64\x0a\xc8\xe7\x96\xcc\x3c\xac\x37\xaf\x19\x0a\x54\x15\x18\x85\x25\xec\x1a\xb6\x1b\x15\xe9\x6b\x58\x85\x56\xfa\xb1\xa8\xf4\x3a\x8b\x0c\xe7\x84\x70\x9c\xb8\x0c\x2f\x8d\x52\x63\xb5\x72\x51\x71\xbd\x44\x41\xfa\x06\x86\xbf\x02\x32\xbc\xa5\xb6\x54\xdf\x15\x35\xe9\x90\x05\xd9\x8a\xc9\x67\x49\x48\xe1\x3c\xc5\x71\x82\x93\x40\xaf\xf3\x03\xac\xba\x98\x97\xc7\x7c\xbf\x2b\x5c\xce\x72\x5b\x00\xde\x23\xc5\xbb\xfb\xac\xf4\xbd\xbd\x43\xa9\xe2\x85\xea\x19\x5f\x65\x36\xf9\xd0\x58\xd1\x74\x09\x12\x9c\x6c\xa4\xbb\x65\xc9\x51\xb0\x3f\xff\x8b\xea\x11\x77\xff\x5f\xfa\xd2\xa7\xed\xff\x20\x3a\x9c\x1d\xdb\x81\x8a\xad\xe6\x3a\xe7\x43\xdf\xb3\x9b\x16\x5a\x07\x8f\xe3\x42\x30\x56\x44\xb7\x16\xfc\x5e\x2b\xc1\xe4\x7c\x96\x2c\x2c\x02\x23\x6d\x66\xec\xc5\xe6\x9e\x9c\x04\xbc\xb5\x9c\x56\xfd\x96\x8e\x87\x68\x6f\x1b\xdb\x99\x8f\xc5\x4e\x0c\xdf\x35\x5d\xaa\xdf\x04\x28\x90\x97\x81\x91\xc5\x0a\xfe\xbf\x05\xde\x6a\x79\x9b\x60\x73\x45\x52\xc9\xa2\xc8\x50\xb7\xbc\x8e\xc5\x09\x09\xcd\xab\x76\x7d\x54\x09\x34\xe7\x93\x6c\xd2\xd2\xa4\x69\x2c\xd1\x25\xc2\x08\xf4\x6e\xe4\x78\x3c\xa1\xb5\x6b\xbe\xd5\x9a\x61\x6b\xc2\x09\x56\x91\x2f\x98\x58\x71\xbb\xe2\xd1\xd6\xf3\x5a\x29\x7d\xd3\x3e\x20\xb5\xec\xa9\xef\x0a\xd1\xdd\x9f\x06\xd4\x14\xb9\x11\x90\x62\x13\x5b\xd3\x9f\xad\x7c\x91\x46\x72\x3a\xf9\x0f\xbb\x85\x28\x18\x8e\x48\x6e\xc7\xc9\xfd\x61\x0b\xd8\x75\x72\x21\xd5\xa3\x6e\x30\xad\x9a\x62\x47\xeb\x1b\x5f\x97\xad\xf8\x3a\x91\xac\xb6\x76\xea\xef\x55\x21\x28\xfb\xd6\x55\x6a\xb9\x45\x42\xfd\xf6\x07\x1d\x0f\xb5\xbe\x11\x39\x21\xb5\xd4\x22\x1b\x98\xa7\xec\x20\x42\x69\x77\xc6\x72\xe0\x84\x4c\x8a\x77\xaa\x2f\x88\xf4\xcf\x1f\x25\xfd\xf3\x4b\x58\x49\xb0\xa4\x6e\x1b\x7b\x70\xed\x36\x7b\x63\x1b\xdb\xc7\xbe\x9d\xd0\xea\x78\x41\x9b\xd9\x0e\x87\x70\xc0\xfb\x0b\xc2\x16\x57\x0e\xf0\xd0\x1d\x5c\x39\x40\xdf\x5b\xa0\x25\x86\x55\x4b\xc8\x09\x18\xef\xef\xd9\x27\x8a\x65\x48\xe8\xc6\x58\x22\xee\xb8\x96\xe0\x42\x6e\xd2\xae\x58\x9a\x21\x46\x7f\x8d\xdb\xb2\xaf\x4d\xad\x9c\x87\x76\xbd\xd0\x5e\x30\x51\x38\x2a\x40\xb2\xc2\x14\x60\xca\xc8\x1f\xdb\x6d\x54\x68\xa3\xa4\xe1\x35\x08\xd3\x9d\x1e\xc3\xf6\xcf\xec\xe2\x2e\x50\x75\x4c\x39\xac\x0b\x12\xb7\xa2\x5a\x73\xbb\x62\xe7\xf1\x75\x42\x25\x9e\x43\x58\x82\xd4\xec\xbe\x85\x54\xc8\x47\x02\xcf\x2a\xbb\xeb\x52\x88\x85\xb8\x94\xde\xd5\x84\x3f\x3c\xee\xf2\x12\xe5\x41\xd3\x84\x17\x8b\x41\x19\x45\x7d\xc0\xe5\xf1\x4a\x2f\xd9\xc5\x4b\x8e\xa9\x10\x57\x9a\xa8\x9f\xc6\x51\x98\xd8\x52\x02\x9e\x81\x80\x11\xd4\x95\xd2\xf3\x0f\x44\x89\x4f\xbd\x2b\xb5\xdd\x36\xcc\x92\xd5\x28\x4b\x33\x4b\xb6\x67\x32\xba\xec\x69\x72\x32\x55\x25\xde\x73\xb0\xdd\x8d\x8b\x2c\xef\x9a\x3c\x41\x53\x48\xa8\xc3\xa4\xdc\xf0\x7e\x13\xbd\xa9\x97\x8d\x92\x6e\x16\xa3\xf2\x80\xed\x59\x84\xbb\xe4\x84\x64\x49\x4a\x93\x0f\xe2\xb4\x5e\x7a\x5c\xb8\x75\x9a\xd2\x9e\xd3\x2c\x2b\x1a\x96\x51\x3f\x4e\x7b\xdb\xa9\x74\x8b\xf6\xb6\xf3\x9b\xf7\x64\xc7\x35\xa6\x2a\x9d\xb6\x4b\x84\x7c\xc2\x7e\x3b\xfe\xfd\xf2\x54\x1a\xb6\x77\xfe\xaf\x53\xbc\x27\x60\x5d\x84\x60\xc4\x71\x79\x89\xb2\xdb\xa0\x9e\xd7\x0f\xf3\x41\x62\x0a\xb0\xa4\x9c\x34\x99\x73\xd2\x44\xcf\x18\x65\xa4\xd3\x0d\x1e\x66\xed\x85\xb0\x50\x18\x89\xd2\x39\xec\xfd\xca\xc9\x44\x1b\xb6\x97\x98\x12\xbe\x7a\x78\x1a\x1b\xec\x48\xf3\x26\x01\x6d\x6e\x37\x8c\xce\x7d\xed\x22\xcb\x4b\x52\x84\xbe\x45\xbd\xca\x57\x69\xe1\xbe\xc7\xe2\xe2\xa3\x85\x3c\x2b\x33\x5c\x1f\x56\x8b\xcb\x98\x51\x72\xe2\xb6\x9b\x41\x98\xc4\xbd\x34\x4c\xa3\xd5\x19\x4a\x06\x2f\x90\x08\xe3\xeb\x13\xaa\x06\x7e\x47\xb1\xa1\xaf\xd9\x4e\x84\x9b\x0e\x41\x8e\x2e\xe3\x8d\xbb\x36\x92\x93\xaf\xbc\x83\xd8\x14\x2b\xdd\xdb\x58\xcf\xe4\xa4\xc1\x85\x6b\x7f\xdb\x7c\x73\x14\x0f\x87\xda\x18\xc1\x2f\xdd\xa5\x69\x76\xd7\x15\x30\x47\xe9\xb2\x89\x13\x15\xc5\xe3\x32\x81\xc6\x3a\x04\x04\xbd\x35\x15\xd4\xee\xdb\xbf\xaf\x5d\x86\xc9\x92\xe2\xa0\xdc\x60\x75\x5d\xc7\xd3\x44\xf4\x1d\x64\x69\xd9\x2f\x1e\xf3\xd8\x9e\x4b\xe8\x2d\x8b\x90\xae\x8d\x06\x54\x0f\xc9\xce\x10\xdd\xec\x3c\x18\xe0\x24\xc5\xd8\xff\xc0\xae\x7d\x58\xf1\xe1\x2c\xc1\xce\xa4\xd8\xa5\x7f\x8b\xfb\xdd\x92\xb7\xa9\xec\x15\x2d\xea\xb7\x30\xba\xb4\xfd\xe6\xa1\xbc\x51\xdf\x98\x5c\x84\x96\x90\xd4\x5c\x0f\x88\x34\x8d\x5c\x56\x17\x92\xcd\x4f\xc7\x2a\xdd\xf5\x7a\x61\xcf\x10\x5e\x61\x9d\x34\x7c\xd6\xa7\x6a\xc0\x7b\xe7\xdb\xc3\x30\x2f\xe3\x68\x94\x84\xf9\xac\x47\xca\x1c\x0f\x48\x3a\xf2\x22\x65\x8f\x40\x80\x8b\x40\x04\x41\xfc\x87\x59\x96\x6f\x23\x21\x97\x3f\x67\xa3\xdc\xd3\x01\x89\x94\xae\x61\xfb\xd6\x04\xb8\x45\x2a\xcf\xbe\x72\x91\x9a\x95\x41\x98\x2f\xb5\x68\x93\xbd\x87\xb5\x5a\x4e\x3e\xc1\xb3\x50\xb5\xdb\x44\xc3\x27\x20\x39\xd5\x1b\x54\x5a\xc8\xca\xe2\xe1\x3a\xe2\x73\x02\x82\xf5\x37\xbb\x35\xb1\xbe\x3c\x8e\x90\xb1\x90\xbd\x4e\x2e\x0b\xf3\x7f\xab\x43\x4a\x61\x98\x89\x1a\x3a\x73\x69\xbe\x65\x21\x19\xb6\x11\xfc\x7f\xfc\xe2\xd8\x23\x1e\xcf\x53\x70\x9e\x9b\xae\x19\x0c\xa5\xd6\xe7\x42\xe8\x9b\xe0\x3b\x2a\xc6\xbd\xa1\x92\x98\xc4\x61\x6e\x57\x46\xe4\x93\x6f\x12\x8c\x08\xb5\x4b\xed\xcb\xf2\x4f\x81\xe7\x1f\x42\xe7\x77\x8f\xf3\xf4\xb1\x8f\x59\x3b\x1e\xfe\x31\x7d\xb5\xd7\xb3\x63\x62\x22\xa1\x43\xa8\x78\x99\x38\x34\xb0\x1c\x23\xfb\x05\x17\xf9\xc6\x61\xdf\x6e\x53\xf8\xbb\x59\x64\xf4\x72\xd2\x99\xd0\xae\xce\xcb\x47\xd8\x28\x2c\x20\x61\xbc\x75\x60\x7b\x10\x84\xbf\x1f\x70\x97\x58\xbc\xf7\x9d\x4c\xb2\x13\x8f\xc4\x83\xc7\xc3\x7e\x17\x6b\x8a\x23\x01\xbb\x41\x7e\xdd\x4e\x6e\xf9\xde\x8a\xd4\x89\xff\xcc\xcb\x4d\x86\x03\x53\x84\x4b\x98\x50\x4d\x85\x61\xbf\xd9\x76\xb3\xd1\x42\xb9\x38\x4a\xe0\x75\xa4\x3c\x7a\x1f\x77\x5e\xa0\x65\xe5\xac\xfd\x65\x27\x81\xe2\x4a\xa9\xd7\x83\x4f\x32\x92\x5b\xc8\xb3\x25\x93\x87\x3d\xf4\x0c\x51\x35\xd8\x62\x41\x83\xd8\x0c\xdf\xb2\x9a\x17\x13\xa2\xef\x5a\x1a\xff\xa4\xba\x63\x9a\x2d\x64\xdd\x55\x3b\x84\xd8\xd4\x57\x78\x8c\x01\x09\xce\xff\x61\x13\x83\x2d\x4e\xbd\xa0\x55\x13\xb2\x82\xd1\xe8\x2f\x4b\xc1\x0f\x81\xa7\x58\xc0\xc8\xc9\xd8\xe7\x9a\x61\x6c\xc5\x42\xa4\xa9\x8d\x19\xe0\xc0\x3f\xae\x75\x7e\x95\x88\x14\x45\x69\x56\xc4\x3f\xe3\xaf\x85\x36\x35\x14\x01\x12\x8b\x50\xf0\x45\x00\x01\x05\xc9\x49\x53\xac\xb3\x18\xa6\x69\x6c\x5a\x54\x42\xbb\x68\xf7\x11\x39\xf6\x45\xa7\xb0\x3b\xe9\x01\x7e\x92\x9d\xec\x4e\x06\x8c\xcd\xc8\x5e\x32\x51\xb9\x93\xc8\xc4\x5b\x3a\xac\xe2\x32\x41\x3f\xa6\x56\xfd\xd9\xc0\x4b\x5c\x4b\x24\x87\x60\x4a\xb0\x99\x40\x15\x5d\xc6\x56\x83\xed\xfb\x1a\x31\x60\x5a\x63\x0f\x89\x28\x22\x93\x86\x79\x9c\xc9\xea\x29\xee\xc6\x58\x3d\xd5\xea\xd8\x17\xca\x7a\x49\x3c\x18\x18\x91\x81\xf1\x82\x42\x5e\x5d\xa8\x69\x9b\x19\x64\xa9\x29\xc3\x3c\x2e\x40\x7a\xc4\xca\xf9\x91\x7d\xad\x72\xec\xdd\xa7\xbb\x71\x99\xe5\x85\x2d\x7b\xb9\x52\x75\x7d\x29\x98\x30\x77\xa9\x52\xc3\x13\x30\x0a\xd3\xb0\x1b\x87\xe9\xa3\xd4\x3d\xdf\x08\x26\x2b\xc1\x2e\x25\xf8\xb6\xdd\xcc\x91\xfd\xbf\x6a\x9f\x8a\x6c\xf8\xcc\xf6\xbe\x1a\x78\xd2\xda\xab\x56\xe8\x08\x41\x86\x74\x85\x81\x4a\xf8\x57\xa8\xdd\xe9\xad\xdb\xd9\x8f\x22\xea\x4f\x2a\xaf\x2b\x72\x9c\xf5\xbe\x46\xbd\x7e\x8b\x30\xbe\xb0\x69\x54\x31\xfa\xc7\x68\x45\x31\xc5\x63\xf6\xed\x39\x92\xce\x5e\xbd\xb4\x73\x13\xdd\x3d\xc6\x57\x1f\x45\x90\xe3\xd8\x4c\xf5\xed\x00\xcc\xb6\x11\x90\xef\xdd\x0d\xac\xaa\xba\xc4\xb6\x0e\xed\xba\xff\xf7\x3f\xdf\xf1\x04\xf5\x63\xf6\xa2\x30\x5c\x45\x0f\x4d\xf9\x02\xbe\x1a\xf6\xc4\xb8\x29\x42\x03\x14\x60\x86\xc8\xe4\xd0\x5b\x44\x7e\x2c\x6d\x07\xc4\x4b\xd7\x1b\x30\x6f\x71\x1a\x25\x71\xaa\xb3\x07\x48\x94\x6b\x2c\xb3\x79\x8d\xa0\x14\xa2\x01\x22\xd2\x32\xb8\x2a\x8c\x2a\xe7\x8f\xed\xf6\x9f\xb3\xd5\x04\x38\xc5\xb6\x62\x09\x69\x4d\xc8\xf8\x0b\xa4\x12\x5f\x8c\x86\xc3\x2c\x2f\x4d\x6e\x79\x45\xcf\x7a\x06\x82\x0b\x97\xdf\x24\x36\x05\x9c\x8f\x37\x6e\xd1\x74\x29\xe3\xa2\x18\x99\x82\xda\x0a\x1f\x07\x04\x68\xf8\xd8\x51\x35\x86\xc9\x68\x30\x30\x4e\x85\x08\x5f\x2e\x68\x58\x39\xe9\x34\x2c\x49\xb9\xc9\x47\x1a\xf7\x90\x0a\x98\x66\xe6\x27\x27\x5a\xcc\x89\x29\x1f\x61\x3e\x22\xd1\xf8\x7f\x33\xf0\x48\xb4\x07\xc4\xb7\x7c\x40\x0a\xd7\x6b\x76\x08\x22\x88\xbd\x56\x79\x35\xe8\xeb\xaf\x61\xa2\x29\xd1\x7b\x42\xbb\xd3\x0e\x34\xe9\xda\xda\xd7\x81\xee\xf2\x43\xec\x3d\x57\x66\xd1\x52\x3f\x4b\xba\x26\x87\x79\x38\x76\xe8\xc3\x64\x0b\x75\x78\xc2\xb8\xa2\x67\x71\xe5\xce\xb1\xf5\x86\xfd\x43\x39\x66\xd5\xf2\xd8\x7c\x22\x8d\xa1\xc1\x54\x70\x25\xcc\x17\xc3\xdc\x90\xbe\xeb\x09\x3c\x21\x39\x71\x72\x75\x83\x38\x8d\xa3\x6c\x30\x1c\x39\x68\x03\x36\x7c\xf4\xd7\xe4\x98\xe0\xa7\xc5\x8a\x49\x92\x99\x09\x3a\xf9\xfe\x5d\x9e\xf0\xbe\x57\xab\x63\xa7\x49\xdf\x77\x94\xda\x7a\xaf\x42\x06\x5e\x70\x66\x94\x64\x40\x70\x64\x4a\x69\x62\xcf\xc1\x76\x1e\x2f\xb4\x3c\x6c\x15\x30\x1f\x39\x9e\xda\xd2\x76\xef\x6e\xf7\xb3\xa1\xdb\xc8\x11\x58\xbc\x1e\xf8\x20\xe3\xf5\x26\x6e\xe8\x30\x4b\xe2\xd2\xcd\x3a\x95\x7b\xf7\xd4\x9b\x35\x52\x18\xbc\x41\x30\x24\xb3\xb8\x68\xa2\x32\x5e\x46\x4a\xca\x8a\x40\x88\x5c\xde\x66\x72\x1d\xba\x9a\x68\x06\x5d\xa2\x3c\xec\x5d\x84\x37\xc0\x57\xde\x09\x3c\x3e\xb4\x88\xc2\xb4\x1b\x26\x98\x69\xd2\xb9\xad\xb8\x8b\xdb\xe4\xa1\x00\x57\x0f\x47\x7e\xbc\xc4\xd8\x83\x69\x7b\xaf\xbd\xf3\x16\x66\x98\xac\xce\x7a\x94\xc4\x6b\xd5\x66\xfb\xbc\x3d\x13\xc2\x47\x78\x53\xad\x8e\x5f\xb4\x96\xc3\xd1\xcb\xfd\x30\x11\xd9\x66\xe5\xc3\xd9\x6f\x91\x13\x07\x1b\x19\xe6\xa6\x7e\x64\xa3\x5c\x7a\xac\x4e\x32\xce\x55\x0b\xcf\x4f\x0d\x81\x17\x5f\x6c\x0f\x8c\xd8\x22\x3b\x75\x42\xe7\x46\x74\xde\x83\x77\x43\x69\x8a\xab\x84\x0c\x09\xe1\x9e\x9b\xca\xbd\xbf\xd2\xee\x66\x03\x53\xa8\xc8\xbb\x50\xe6\x49\x0f\x77\xad\xf2\xf3\x6e\x38\x2a\x1f\x25\x88\xb8\xa8\x8c\x8b\x33\x39\xa6\x94\xae\x40\x88\xe7\x5d\xef\xd8\x61\xbb\xde\x21\xcd\xe8\x2d\x58\x04\x55\xc4\xcc\x73\x65\x5e\x21\x8b\xae\x59\x30\x6d\x10\xf4\xdf\x40\xd5\x42\x4e\xec\x48\x52\xdf\x37\x0f\xa1\x1b\x8e\xf2\xa8\x1f\x16\x62\x76\x8a\xb4\x5a\xa0\xca\x72\x32\x7e\xc4\x83\x5a\xd3\x4f\xd9\xff\xc1\x15\xfd\xb8\xf2\xa9\x17\xbe\xde\xf1\xad\x5d\xb9\x01\x1e\x38\x62\x79\x8b\xac\xd7\x6d\x1e\x7b\x7d\xbe\x85\x07\xa0\x00\x3f\x3b\x0d\x51\xec\x7a\x83\x6d\xe3\x1e\x01\x75\xc8\xc1\x46\xdc\x92\x0c\xe7\x72\xec\xb3\xaf\x22\x16\xc1\xcf\x5f\x20\x68\xea\xa3\xa8\xfb\x20\xd2\xba\xd3\x54\x82\x1c\x84\xe5\xc8\xd3\xbd\x71\x63\xdf\xb3\x37\x23\xc7\xe4\xc2\x33\x34\x79\x64\xd2\x32\xec\x99\x87\x5a\xbf\xa2\x8e\xb6\xd8\xe3\x45\xbf\x88\xbd\xe4\xef\xe3\x9e\x18\x5c\x8f\x62\xf2\xe5\xaa\x8e\xf0\x5c\x8f\x7b\x9f\x93\xa4\xbe\x16\xcc\x1c\xf8\x7b\xbf\x2a\xc1\xc7\x75\x4a\x48\xff\xab\xd2\xcc\x90\xc0\xe5\x6d\x96\x1d\xb9\x3f\x91\x19\xbe\xd6\x68\x59\x97\x1a\xdd\x5c\x35\x90\xf3\xa5\xcd\x8b\x24\xb4\x9c\x9a\x95\x22\x31\x65\x69\xf2\x19\x46\xa9\xde\x25\x4a\x8c\x80\x9f\x31\x56\x67\xc6\x4f\x4c\x08\x18\x9a\x7c\x9b\xaf\xba\xa0\xd0\x44\xe1\x81\x2f\x34\x91\xaa\xe5\x69\x0a\x5a\x4e\xd0\x18\xed\xc5\x49\x62\x1c\x9d\x44\x15\x3f\xed\x6f\xcb\xc9\x14\xc2\x7c\x7e\xbe\x3d\x08\x7b\x71\x01\xaf\x31\xb1\xc2\x69\x02\xc8\x50\xf9\x26\x8c\xbb\x0f\x51\xbf\x76\xeb\xd8\xa3\x0c\x4e\x11\x66\xe4\xdd\x80\x30\x0a\x8c\x36\xdb\xb0\x43\x1a\xb9\xe3\x0d\x3b\x22\xe5\x98\x25\x2c\xbf\xed\x96\x9e\x97\xc2\xf4\xcb\x3b\xb6\x7e\x4e\x0a\x49\x1f\xda\xc9\x84\xb4\xef\x41\xe0\x89\xc4\x67\x49\xda\xe8\x1c\xde\x35\xea\xe1\xe0\xaf\x62\x32\xfd\x79\x45\x31\xcc\x96\x06\x93\xc4\x7d\xb6\x90\xbc\x38\x4a\x5a\x44\xa2\x38\x43\x4b\xf3\x99\xa6\x5d\x71\x30\x2a\xa2\x44\x80\x24\x2a\xed\x43\xbd\xc4\xd3\xb4\xc3\xdd\xf1\x62\x42\x49\x38\x14\xd6\x84\xe6\x90\x9c\x5c\x36\x5d\x9b\x59\x8e\xbb\x2a\x54\x84\x09\x7d\x8c\xf8\x1d\xc7\x68\x50\x3a\xa5\xa6\x02\x5a\xc7\x28\x19\x40\xd6\x5d\x8e\x2b\xd5\x3e\xb1\x56\x48\xc3\x3c\xb6\x56\x9d\x2d\x8f\xba\x3f\x4a\x23\xf8\x68\x23\x83\x3e\x0f\xd3\xa5\xcd\xe6\x95\x7e\x93\x9f\x16\xfb\xdd\x3b\xdf\x36\x45\x19\x2e\x24\x71\xd1\x77\x8a\x4b\xe2\xbe\x42\x65\xa8\x75\x46\x2e\x47\x7d\x93\x2e\x84\xa3\x81\x4c\x2e\x95\xd3\xf2\xd8\x1c\xa9\x10\x60\x7f\xbd\x56\x7d\x86\x3a\x1a\x49\x12\x65\xcb\x86\x84\xd9\x9b\x76\x44\x5f\x48\x4c\xe2\x05\x93\x87\xc9\xc3\xf5\xa0\x42\xae\x73\x17\xfd\x5d\x15\x02\xa3\xe0\x6d\xb6\x33\x49\x33\xa8\xd3\x28\xd5\x0e\xb3\xaf\x5e\xfe\x6c\xcc\x12\x88\x81\x0f\x2f\x91\x9f\x61\x27\x13\xad\x1b\xd5\x49\xdc\xbc\x18\xc1\xfe\x24\x11\x19\x2d\xb7\x34\xfe\xaa\xc3\x4e\x52\x73\x22\x8c\x22\x33\x2c\xb7\x93\x56\x31\xd0\x7d\x2a\x6b\xe5\x4b\xff\xa2\xa4\x86\x1a\xda\x7a\x35\x19\x00\xb8\xbe\xdf\x91\x06\x8d\xf2\x03\x6d\xcb\x45\x89\x87\x61\x89\xa6\xa2\x6a\xcf\xd9\x5b\xc5\x2b\x14\x65\x2c\x55\xfc\x74\xf4\x8d\x6c\x60\xf2\xc2\x94\x13\x80\xdb\xf3\x0c\xb8\x3d\x5f\xe7\xb4\xee\x7d\x14\x0a\xcd\x55\x52\x34\xad\x65\x1f\x7a\x77\xf1\x3c\x1b\xee\xf0\x58\xf5\xcb\x04\x5c\x79\x97\x50\x13\x8f\x77\x48\x03\x4f\x00\x54\x48\x66\x50\x6e\x53\x2f\x3c\x32\xbb\xba\xcf\x06\x99\x83\x61\x04\xb3\x42\x2c\x38\xdf\xb6\x0f\x56\x8e\xa9\x46\x53\x66\x45\x51\xef\x8d\x60\xff\xe2\xd7\x8e\x43\x3b\x47\x4e\xa8\x03\x19\x65\x69\x6a\xa2\x52\xa2\x8a\x09\x6b\x55\x39\x99\x5a\x6f\xac\xd9\x46\x92\x15\x66\x3b\xf1\x32\xd6\xc9\xd2\x0a\x91\x24\x4a\xaf\xe0\xf9\xe1\xb9\xfc\x08\x2f\x19\xb3\x06\x2d\x60\x31\x50\x99\x8a\xdf\xf6\x1c\xac\x67\x8f\x77\x56\xd0\x22\x4f\xcb\x71\xef\x7f\x4a\x1b\x42\x14\x16\xfd\x47\x7c\xa7\xf0\x4f\xb0\x3d\xe3\xc9\xbc\xb5\xc9\x62\x62\xb7\x4a\x24\x5f\x08\x88\x27\x05\x8e\x3e\xe2\xd9\xd6\x98\x70\xdd\x44\x02\x9a\x19\x53\x4d\x7f\xcd\x4a\xb2\x38\x94\x9b\xa3\x07\xde\xa5\xe9\xdc\x1b\xa5\xa9\x4d\x11\xbd\x6d\x4c\x40\xf4\x93\xf5\x26\x01\xf3\x62\xb4\x30\xcc\x4c\x1a\xb6\x26\x8a\x24\xfe\xa5\x1f\xf5\xf0\xfa\x3c\xab\x57\xe3\xae\x6d\x1d\x23\xe5\xfb\x3d\xdc\xab\x28\x0f\xd9\x51\xa8\x26\x9c\xf6\xd2\x45\x00\x71\x6a\x4a\xd9\xbc\x3c\x5c\x5c\x8c\xf3\x81\x7b\xe2\x0e\x9e\x32\xef\x61\xfe\x9f\x9e\x86\x9e\xce\xcf\x1f\xf8\x0c\x31\x60\xaf\x23\x7f\x46\x11\xb9\x85\x3e\x3d\x5e\xca\x5d\xdc\x3a\x60\x20\x3f\xb0\x4f\x4f\x47\x9b\xcf\x86\xaf\x49\x58\xe4\x66\xc2\x26\x35\x60\xb2\xa6\xb4\xa0\x6c\xaf\x25\x7d\x9a\x14\x7a\x2f\x5b\x24\x8a\x03\xe9\x39\x07\x1b\x41\xf2\x61\xc5\xf9\x7d\x2c\xa6\x88\x64\xa5\xd7\x46\xc3\xd4\xab\xdb\xd6\x03\x03\x37\xf7\x46\x40\x70\xa8\x3b\x55\xeb\xab\xbf\xe6\x03\xe1\x7a\x29\xc3\x90\xf9\x33\xa7\x42\x5a\x94\x59\xae\x20\x26\x8c\x94\xab\x24\xbc\x71\xb4\x22\x4d\xb8\x93\xd5\xdf\xfa\x84\xc2\xf7\x30\xee\xf5\x56\x17\xc2\xc8\xcf\x05\xc7\x4f\x75\x68\xcf\xe3\x44\x52\x5c\x8a\xbb\x69\x68\xfb\x9b\x78\x94\x82\x70\xe1\x00\xf0\xdc\xd4\x00\xd8\xbd\xbb\x6d\x92\x78\x10\xa7\xa1\x97\xb3\x95\x1e\x27\x61\x1d\x8e\xd1\x62\x94\x98\x30\x4f\x5b\xe4\xdc\x40\xfe\x10\x93\x66\x53\xb9\xb1\x02\x50\x89\x29\x0a\x28\x5c\xe2\xc1\x1e\x26\x1b\xf1\xc3\x81\x27\xc6\x15\x7d\x5b\x7c\x70\x5f\x76\x82\xac\x52\x6f\xb2\x97\xda\xda\x74\x86\xfc\xdc\x81\xb6\xcf\x0a\x04\x44\x4b\x76\x71\xb7\xa6\xbc\x99\xbe\x52\xcf\xa2\xc8\x74\x47\x39\x42\x4f\x07\x47\x5a\x27\x17\xb3\x75\x2a\xe1\x9b\xc1\x30\xce\x61\x7f\x83\xa6\x99\x40\x87\xa4\x94\x34\xa1\xd5\x46\x44\xe3\x85\x51\x61\xec\x3c\x75\x4e\x6f\x8e\x1a\x80\xe6\x8f\x0b\x5e\xbf\xf6\xbc\x92\x83\x1b\x44\x20\x20\xf2\xba\x6c\xd2\x7a\x54\x4d\xc4\x7a\x1e\xda\x77\x86\x8d\xec\xa6\x81\xe8\x96\x3d\xb2\x1c\x1b\x00\xd1\x1d\x97\xc7\x89\xef\x9c\x9b\x28\xc0\x2d\xc5\xa1\x6d\x72\xa0\x81\xb4\x15\xdc\x3b\xb7\x65\xb9\x69\x7b\x85\x74\x1f\x7a\x61\xde\x35\xe9\x76\xfb\xa6\xa5\x29\x8c\xcb\x13\x71\x7c\x92\x1b\x7f\x9d\x83\xe1\x8f\xc9\x47\xec\x12\x32\x43\xed\x29\x37\xc8\x6e\x5a\x01\x7d\xdf\xd2\x51\xf6\x99\xa7\x61\xad\x39\xc8\xd2\x62\xdc\xeb\x97\x42\x42\xc5\x3b\x13\x05\x05\x75\x53\xac\x2f\x48\x7f\xd7\x67\x6f\xab\x89\xd9\x46\xb8\xfb\x9d\x96\x90\xe8\x6e\xdd\x0d\xcf\x0f\xec\x2b\x43\xee\xf4\xa1\x47\xdb\xff\x17\xcf\x74\xfe\xf6\xa6\xab\xfe\x72\xdb\xa4\x26\xef\xc5\xc6\x8a\xa2\x2d\x95\xb1\x59\x30\xdd\x3c\x7e\x69\xb1\xc5\xd6\x81\xe7\xb9\x5e\x74\x9e\xf8\x46\x91\x91\xf8\x1e\x59\xe7\x29\x92\xa1\xb9\x3d\xc1\xcb\xf6\xa1\x6b\xd9\x37\x59\x1e\x17\xa0\x07\x2b\x63\xf0\x76\x40\xf4\xc1\xdb\x9b\x29\x69\x5f\xac\x77\xf7\x87\xeb\xc5\x19\x53\xe6\x44\xa0\x24\x98\xbd\x0a\x17\xf9\x1e\x59\x30\x7d\x14\x90\x66\xee\x3a\x48\x42\x76\xc1\x54\x4f\x56\x7b\xc5\x28\x97\x7d\x84\x99\x82\x2f\xf9\x47\x95\x4f\x35\xae\x52\xe9\x31\x0d\x97\xd5\x20\x4c\xf9\x49\xf6\x72\x95\xa0\x44\x1c\xf9\x7e\x6c\x16\xb7\xe3\xd1\xf1\x9c\xc5\x77\xa2\x24\xac\x4d\xa5\x96\x73\x4e\x16\xe9\x50\x31\xaf\xc0\x77\x23\x1e\x99\xe9\xf8\xb8\x2f\x0a\xf3\xb2\xd5\xda\x3b\xbf\x71\xad\x6a\xed\xdf\xb7\x31\xed\x96\x79\x68\x57\x1d\x8d\x85\x71\xae\x19\x3a\xb6\xa5\xd6\xd8\x73\x96\x5b\x1d\xd7\x96\xcd\xf2\xd8\xf4\x84\xb5\x86\x49\x7f\x2f\x20\x68\xd6\x3d\xe2\x04\x88\x5e\x68\xb1\xcd\x13\x1c\x04\x32\xe9\x86\x47\x3d\xb1\x00\xd0\xb9\x45\x74\xf2\x3f\xaa\x48\x16\x6e\x83\x74\x8e\xea\xf9\x68\xe9\x4a\xa8\x2e\x6d\x05\xfa\x8f\x69\xf2\x08\x87\xee\x91\x34\xe2\xc3\x88\x74\xf0\xfb\xb7\xaa\x87\x1d\x7f\xbe\x7c\xc8\xc3\x83\x44\x9e\x1f\x5d\x8c\x6d\x63\x12\x8a\x04\x5a\x11\x79\x3b\xe4\xfd\xb0\xd3\xef\xc0\xd7\x22\x8f\xfd\xff\x23\x18\xc6\xeb\xfa\x74\x87\xb6\xdc\xad\xe4\xdf\xb7\xff\xab\x7b\xb6\x53\x0d\xe5\x71\x0b\x8d\x9c\xf0\xbd\xc1\x40\x7c\xa4\x43\x5e\x08\xf7\xf1\xc4\x9c\x92\xf2\xdc\x9c\xec\xec\xaf\xbb\xad\xd9\xa4\xdd\x51\x8e\x25\x19\x61\xff\xad\x80\x2c\xf1\xde\x9f\x60\x07\x78\xf6\xe0\xab\xc4\xef\x5f\x30\x49\x6c\x96\x4d\xb1\xdd\xae\x89\xc8\xee\xdf\x9b\xf0\xf3\xaa\xa7\x8c\xfc\x3b\x1e\x15\xb2\x9b\x23\x54\xc6\x39\x8e\x4e\xa4\xfc\x87\xab\xa3\xd6\x39\xe3\x82\x95\x54\xb6\x24\x78\x54\x92\xff\xd4\x66\x5c\x78\x8b\x27\x2a\x96\x9d\xb5\xb7\x8e\x4d\xd1\x9a\x7a\x3a\x94\x4b\x5e\x2e\x66\x49\x9c\x3d\xe4\x2b\x1f\xb0\x1c\x54\x5b\x63\x32\x0e\x5a\xc3\xb7\x60\x1f\xbb\x8e\x87\xe1\x3c\xbc\xf7\xef\xf2\xe8\x84\xfa\x65\xb8\x34\xcd\xd9\xf0\x9f\x0d\x1e\x63\xc7\x92\xfc\x33\x76\x38\x88\x4d\x19\x96\x5b\x54\x34\xef\x05\xad\x2f\x7c\x41\xe2\x10\x51\x11\x07\x16\xe5\x2f\x88\xcb\x7f\xd2\x8e\x45\x2c\xff\x3f\x62\xed\xd2\x1b\x95\x97\x93\x39\x61\x85\x38\x36\x2e\x49\x49\x52\x0b\x0c\xf6\x9e\xf0\xc3\x77\x03\xb2\x46\x3c\x6a\x83\x42\xa9\xfe\x8d\xfd\xe2\xd9\x42\x21\x16\x2b\xfb\x1a\xd2\x24\x31\x88\xb4\x41\x2a\xd6\x96\x0f\x6d\xe1\x02\x61\xe0\x5d\x2c\x64\xb2\x6c\xa0\xd2\x89\x6c\xed\x66\xe5\xd5\x0d\x66\xc6\x75\xaa\x81\x58\x60\x4b\x47\xa7\xd0\x4b\x9f\x47\x6c\x83\x30\xf8\x0e\x89\x27\x0a\x60\x05\xcd\xd8\xf3\x5e\xdb\x37\xcb\x9c\x66\x0d\x32\x00\x80\x9a\x94\x52\x4c\xcd\xbc\x26\x41\x8d\x41\x98\x2f\x75\xb3\x95\x54\xea\x3c\x62\xe6\x46\x4d\x8c\x35\x6a\x33\x16\xc3\x24\x2e\x0b\xbb\xe1\xa3\x8c\x85\x96\xb2\xcb\xd7\x5c\x93\xed\x63\xea\x38\xf6\xad\x3a\x74\xaf\xaf\x78\x59\xa7\xf3\xed\x5e\xd4\xbb\x88\xa7\xf1\x88\xae\xbb\xa4\xb9\x58\x8a\x53\x2b\x74\xaa\x32\x67\xd4\x5f\x58\xa7\x40\x0a\x4a\x41\xa2\x83\x44\x46\xe0\x96\x12\xb8\x62\x5d\x42\x21\x17\x83\x38\x62\xc6\xd6\xb1\x51\xae\xde\x3a\x26\xb5\xad\x37\xa7\x9e\xcf\xfc\x7c\xbb\x9b\x75\xbb\x10\x0e\xf5\x70\x9c\xe3\xe4\xe5\x7a\x9c\xbc\xbb\xfa\x71\x1d\xd0\xaf\x5a\x21\x4c\x14\xf4\xb1\xb3\xa8\xa5\x04\x49\x71\xbf\x61\xe7\xaa\x1c\x07\x54\x62\xb3\x7a\x64\x5e\xa9\xd6\x0c\xd2\x78\x31\x8e\x50\xf8\x22\x34\x83\x20\x24\x54\xd3\xfd\x11\x8f\x7d\x28\xec\xf0\x99\x20\x47\xb1\x7b\x22\x16\xda\x2b\x53\x21\xd3\xdc\xdc\x01\x2b\x25\x91\x0a\xc8\x74\x1f\x5b\x8b\x1e\x70\xd6\xa2\x4f\xb3\xd0\xbc\x28\xb7\x3e\x46\xb1\x38\x16\x09\x67\x3e\x54\x4f\x6b\x2d\x4d\x79\x2e\xcd\x6b\xc1\x84\x90\x3d\x15\xe4\xfe\xc4\x8e\x0a\x90\x2f\xdf\xc2\x2c\x52\xe9\x32\x7b\x27\xd8\xca\x3e\xb0\xf3\x4e\x94\x7d\xed\xaa\x80\xf8\xe2\x7a\xe0\x05\x95\x45\xc3\x1b\x71\x69\x13\xd9\x6d\xbe\xbd\x90\x25\x45\x69\xf2\x96\xb7\xfc\xff\xc8\x4e\x62\x39\x26\x2c\xc6\x62\x18\x27\xa3\x5c\xb0\x35\xe0\x09\x1f\xb3\x61\x9d\x1c\x37\x6d\xff\x45\x36\x30\x65\x3c\x30\x2d\x86\x50\x56\xde\x44\xff\x22\x35\x12\x07\xd9\x72\x2c\x55\xf1\x43\x93\xde\xd3\x9a\x9c\x35\xe1\x03\x7b\x59\x62\x7d\xf2\xb4\xa2\xf5\x1e\x99\x29\xff\x13\x7b\x79\x28\x4b\xfc\x15\x46\x81\xfa\xd3\x7d\x12\x0b\x29\x35\x2b\xf5\x86\x40\x2d\xb4\xd3\xdc\x42\x3b\xdd\x50\xe6\x11\x6c\x04\xb2\x36\xac\x83\x57\xf1\xd2\xe5\x84\x8d\xc8\xb3\x3c\x4b\x43\x62\x6f\x8d\x2b\x82\x84\x8f\x03\x85\x0d\x2c\x98\x41\x16\xfa\xc0\x5d\x30\x09\x13\xf8\x04\x4e\x40\x0a\x53\x3e\x69\x37\x58\x4c\x85\x9b\x01\x03\xdc\x65\x38\x2a\xac\xde\x2f\x13\x5b\x3b\xad\xe7\x95\xca\xfa\xef\xa9\x82\x71\x85\x2d\xe7\xa5\x42\x8e\xda\xe1\x84\x39\xcd\x0f\x31\x34\x51\xe2\xbf\x4f\xdb\x9f\xe8\x73\x21\x65\x3f\x8a\xbd\x5b\x4e\x2a\xea\x1c\x1c\xb5\x1b\x23\x5e\xc8\x59\x6a\x12\x42\xdc\x53\x85\x3e\x9f\x60\x79\x10\x87\xa3\xd0\xe4\x8f\x9a\x69\xa7\x5d\xc5\xde\x2e\x79\x33\x13\xb2\x70\x24\x17\x67\x3f\x82\x4d\x73\xba\xb4\xb4\xe7\x60\x7b\x94\x94\xf1\xc0\x96\x4c\xe7\xe6\xdc\x0e\xec\x03\xc0\x0b\xac\x2b\x72\xdc\xcb\xda\x86\xa3\xc2\x58\x7d\x08\x2c\x67\xac\xaa\x2c\x82\xeb\xf8\x4d\xd1\x9a\x55\xf7\xcc\x96\x53\x43\x5e\xab\xd8\xf0\xd7\x01\xc5\xfb\xd9\xa8\x30\xfd\x2c\xe9\xca\xde\xa4\xc2\xe2\xbe\x73\x74\x96\x7a\xb4\xd9\x4a\xfa\x38\x69\xb0\xff\xc0\x3e\x7c\xa9\x00\x69\x70\x57\x2f\x15\x58\x82\xe0\x35\xa3\xa2\x4c\x1e\xd6\xf8\x63\x0c\x00\xa7\xec\xed\x2b\xb0\xb7\x82\x7a\xc5\xd6\x6a\x59\xeb\xd0\xae\x8d\xed\xe3\xfa\xcd\x4d\x54\x88\xb1\x6b\x5f\x01\xea\x4a\x0d\x3b\xeb\xd7\x81\xf5\x78\xd6\x31\x5c\x87\x61\x32\x30\x79\xd6\x62\x5b\x38\xd1\x6a\x94\x93\xc0\x03\x5d\x0b\x13\xe5\x16\x6d\x26\xb0\x1b\xaa\x0f\x6b\x24\x73\x71\xaa\x72\xb1\x7f\xd7\x81\x76\x9c\x2e\x26\x23\x93\x46\x3a\x76\x34\x69\xac\xbf\x44\xd3\x85\x27\x1c\x06\x24\xea\xc7\xbd\x30\xdd\xd6\x22\x9d\x5d\xcf\x86\x82\xeb\xa0\x83\xb5\xfb\x05\x65\x87\x30\x8c\xb0\xf1\x1f\xaf\xbc\x27\x7b\xd6\x9f\xf1\xed\x39\xe8\x2d\xb8\xa5\xed\x1b\x5f\x77\x8c\x9a\x86\x1a\x67\x92\x2d\x2c\xac\xba\x25\xa0\x19\x8b\xe2\x5a\x22\x61\x21\xc6\xdb\x88\x82\x61\xad\x8f\x46\xfd\xff\x6d\x57\x41\xa5\x81\x4f\xeb\x04\x5b\xd6\xe4\x0e\xaf\x04\xff\x73\x1d\x2f\xe9\x76\xd1\xba\x7f\x4b\xc6\xc1\x94\x74\x74\x76\x10\x86\x48\xcb\x96\x81\xe5\x0a\xa5\x6d\x92\xd2\x2b\xca\x30\x77\x13\x59\xbf\xcd\x7e\x83\x4a\x57\x78\x65\xf4\x78\x30\xcc\xb3\xa1\xc9\x93\x55\x9b\xea\x81\x29\xb7\x75\x4c\xf0\xc7\x5b\x18\x66\xca\xb1\xf4\x31\x89\x2c\x0e\x2a\x62\x42\xdf\x99\xbe\x34\x4a\xed\x9e\xcd\xd4\xa5\x93\x12\x20\x3b\xad\xe4\x79\xf2\x12\x27\xbd\xce\x5e\x9a\x49\x65\x4b\xd7\xa0\xfa\xa1\x60\x45\xfc\xd3\xca\x33\x6c\xd6\x02\x6f\x9a\x32\x08\xd3\x78\x38\x4a\xc2\xd2\x14\xd2\x6e\xc0\x9b\xf9\x2b\xe8\xde\xc8\xc9\xd4\xc3\x3a\xf8\x9c\x35\xe8\x4b\xc2\x18\x25\x44\x15\xce\xf2\xb0\xd9\xf5\x89\x5d\x60\x10\x46\x33\x7e\x7c\xca\x42\xa5\x6a\x98\xad\x5f\x39\xe0\x00\xad\x0d\x6d\x84\x30\x49\x4c\x4f\x5f\x0a\x5a\x6e\x60\x66\xca\xf1\x78\xba\xf5\x6e\xdd\xab\xa4\xad\x88\x60\xe5\x2c\xab\xe8\x9f\xa5\x12\x7f\x38\xc8\x46\x69\x59\xec\xf0\x50\xad\xc3\x76\x41\x50\xdd\x40\xbb\x77\xe1\xb9\xdd\xb0\xe3\x07\x4b\xc8\xdb\xd6\x05\x53\xfe\xdd\xae\x5b\xf2\x01\x26\xf2\x9c\xa1\xaa\xee\x62\x1e\xf6\xe2\x24\x2e\x81\x80\x56\xb8\x24\x3f\xaf\x7a\x2a\x80\x77\x71\x7f\x42\x4a\x29\x8a\x0b\x6b\x53\x6a\xaf\x44\xf5\x93\x7c\xd7\xfa\xfb\x24\x59\xf5\x2e\xb5\x54\x52\xd5\xa0\x40\x74\xfe\xbd\x8a\x34\xf1\xbe\x47\x0e\x12\x2b\x7d\x63\xbe\x55\x67\x28\x1e\xfe\x24\xeb\x3d\xb6\x4f\xf4\x2e\xb0\x8a\xde\x70\x09\x6e\x6f\x64\xf2\x3c\x4e\x92\x50\xd6\x7e\xa7\xe6\x32\x3f\xaf\xc7\x53\x84\xef\xbd\xf3\xed\xe1\x7f\xf2\x1f\xe1\xef\x1d\xa9\xc8\x11\xbe\x9b\xdb\x54\xbd\x38\x57\xe1\x62\x44\x03\xb7\xc9\x78\xec\x76\x45\x9d\xbe\xf0\x5b\x90\x20\x77\xa9\x9f\x9b\x07\xe7\x9a\x2c\xad\x96\xc2\xf4\xa5\x78\xc6\xe3\x93\xaf\xd3\xe2\x70\x9d\x96\xa5\x6d\x9d\xcd\xf1\xd8\x8b\x2f\xb6\xbb\x71\x11\x0e\x87\x99\x18\xba\x3b\x17\x88\x35\x6c\x4e\xfa\x10\x37\xaf\x67\x7b\x0e\xb6\x87\xc9\x08\x40\x63\x04\xa6\x20\x7c\xe0\x2a\x2f\x93\xe9\xf8\x6b\x53\x9f\xfd\x4a\x7b\x29\xcd\x56\xd2\x16\xe9\x95\xfc\x30\xf0\xe5\xa8\x1f\xba\x74\x73\x21\xcc\x8d\x60\x30\x90\x2a\x8b\xcf\x84\x9c\x50\x7d\x34\xcf\x56\x1e\xf1\x59\xd7\xc7\x58\xac\x50\x91\x68\x59\xf2\x08\x52\x91\x7b\x28\x7d\xa8\x13\xb2\xfd\x32\x29\xfb\xd9\x35\xc5\xc6\x0e\x7f\xf2\x54\xc7\x17\x7f\x37\x26\x64\x34\xed\x16\x8d\x3d\x7f\x87\xc5\xec\x68\xf7\x85\x84\x0f\x6e\xb9\xcb\x8f\xfa\x71\x1e\x02\xf2\xe5\x04\x3a\x99\x27\xf8\x18\xe1\x5c\xd3\x55\x6b\x90\x27\x44\x9a\x80\xf5\x82\x7c\x3d\xce\xca\xc6\x0e\x4c\xbe\xbd\xe5\xf4\x28\xff\x12\x55\x05\xd5\xaa\xb0\xd7\x81\x41\x20\x48\x17\xdc\x86\xb6\xb2\xe4\x0c\x21\xa5\xea\xc6\x6c\x2e\xed\x1f\xda\xf5\x42\xdb\xbc\x6c\xed\xa7\x96\x81\x01\x45\x65\x1f\xaa\x80\x72\xec\x75\x68\xac\x8b\xbc\xb3\x1b\x59\x67\xaf\xa8\xf5\x86\x5c\xe2\x40\x7b\x38\x1a\x0c\xed\x4a\x2b\x64\x5a\x3c\x56\x65\xd6\x7a\xd8\xd8\x30\x82\x1d\x01\x82\x82\x7b\x01\xc9\xe0\x40\x70\x03\xc7\x17\xec\x1a\x27\xc7\x9f\x30\x50\xe1\xa2\xa5\x5d\x44\x66\xbc\x93\x5f\x50\x62\xd2\x16\xc9\x94\xff\x4c\x9e\x99\x5a\x36\xb8\xe0\xc5\x7a\xe7\xbb\xae\xbd\x94\xaf\x38\xfb\x7d\x3f\x60\x5a\x5a\x98\xf6\x8c\x35\x23\x43\xe6\x74\xb3\xf2\x08\x36\xe1\x8a\x29\x55\xc9\x7e\x05\x0a\x92\xe7\xf1\x8a\xc4\x09\x20\xa0\x97\x40\x77\xfe\x3f\x37\xf4\x6c\x0f\xb4\x57\xe2\xb4\x9b\xad\xc8\x8e\xa1\xec\x74\xfb\x3b\x72\x42\x0d\xf7\xdc\x44\xf9\x28\x2e\x4d\x77\xd6\x03\x69\xdf\x21\x11\x57\xd4\x61\x9d\x8f\x98\xd7\xc0\xac\x97\x21\x05\x59\x14\x45\x58\x14\xb6\x5b\x97\xa5\xc5\x2c\x71\x78\x3e\xaa\xc8\x9b\xa8\xd5\xf1\x98\x63\x11\xce\x57\x07\x2c\xb2\xa3\x1f\x2d\x58\x3e\xac\x2f\x5c\x75\x3c\xb6\x6b\x66\xfc\x28\xa9\xe5\x96\xb3\xdc\x52\xfc\xb8\xf2\x1d\x57\x60\x95\x35\x98\xa2\x56\xe3\xc7\xa4\x82\x18\xf5\xe3\xa4\x9b\x9b\xd4\x2e\x1b\x2a\x52\x57\x7f\x0e\x91\x1d\x6e\x5c\x62\x0c\xac\x1a\x08\x59\xe0\x56\xad\x45\x50\xfb\x58\xf1\x2e\xff\x84\xa2\x92\x53\xb8\x3f\x04\xf3\xa7\xc0\xc6\x51\x4e\xe1\x64\xfb\x69\xaf\x83\xd8\x7e\xa2\x62\xc7\x37\x47\x75\x20\x97\xcf\xda\x5c\x57\x71\xbc\xf5\x55\x23\xe6\x12\xf2\x31\x56\x22\xf8\x01\xe0\x7d\xb5\x3a\x8e\x37\x11\x46\x16\x7b\xea\x82\xed\xd3\x64\x98\xc6\xdc\xc1\x85\xb8\xd7\x33\x45\xd9\x9a\x70\xcd\xb2\x89\xa5\xc6\x8c\x9f\xa6\x1c\x7b\x30\x34\x69\x61\xdf\xfa\xac\xbd\x04\xd4\xd4\xce\x22\x93\xc5\x97\x5f\x26\x16\xa0\x94\x68\xe4\x3f\xa6\x76\xc8\xf9\xf9\x76\x61\x6c\xda\x81\xf7\x8a\x51\x73\x96\xb1\xbd\x67\xa9\x9e\xbc\x62\xba\xa9\x29\xba\xe1\xea\xf6\x3a\x55\xc2\x22\x7e\x9a\xaa\x4e\x58\x21\xb0\x35\xb5\x50\xd0\x77\xb6\x1a\xfb\x75\x71\xbd\x6c\x5f\x00\xae\xe8\xa7\x13\x41\x5e\x18\x2d\x3d\x63\x67\x20\x62\xe1\x63\x34\x34\xb6\x8e\xed\x13\x51\x14\xaf\x0d\x65\x84\x06\x80\x82\x2d\x12\xba\x53\x76\x04\xe1\x1d\x5d\xa9\x88\x96\x7a\x59\x7c\xa4\xe4\xcf\x58\xb2\xfe\x12\x9e\x9d\xd6\xd0\xec\xad\xab\x86\x13\x9b\x74\xa0\x54\x8d\x38\xe6\x12\x65\x9a\x37\x48\xbe\xfb\x32\xd1\x37\x44\xeb\xc7\xe9\xfe\x3a\xa9\x8a\xad\x63\x3c\x6c\xc4\x6d\x37\x79\x5a\x1e\x23\x32\x74\x6e\x0a\x93\x24\x24\x10\x7b\x8d\xa6\xc7\xb5\xa9\x90\x64\xf7\x1e\x5b\x4e\x7c\xb9\xe5\xcb\xfb\x6b\xbc\x3e\xae\xb1\xe8\x40\x96\x18\x4b\xb5\xb6\x7f\x2c\x8e\x45\x01\xf5\x16\x59\x0b\x2f\x1e\x0c\x93\x58\x48\x6b\x5a\x73\xb6\x6f\x49\xb5\x24\x7d\x3a\xc6\x54\x37\xc4\xc5\x3b\x3d\xb0\x1f\x76\x4e\x3a\x5e\xeb\xe7\x87\x81\x72\x0f\x11\xaf\x96\xb0\xed\xcb\xa0\xf4\x5c\xab\xf4\x57\x11\x49\xa3\x66\x0d\x4c\x82\x13\xc9\x7a\x5e\x9b\x63\xb7\xa6\xe2\xff\x3a\x2b\x33\x2f\x0f\x8d\xd4\xbd\xf0\x93\x17\xd8\x3a\xeb\x02\x85\x34\xbf\xf4\x4b\xff\xb1\x8d\x7c\x1c\xf9\x72\xb7\x23\x62\xba\xaa\xf5\xa2\x15\x86\xf0\xf4\x9d\x35\x36\x24\x11\x46\x1e\x8a\x45\xf7\xa6\x8a\xb0\x16\x41\x99\xc4\xbd\x58\x48\x12\xf3\xde\xb8\xd1\xa9\x85\xbd\x32\xd1\x7f\x37\xdd\xe2\x61\x7b\xb1\xe8\x55\x1f\x93\x54\xce\x65\xaa\x8e\x9e\x72\xc5\x3e\x12\xcc\x9c\x4b\x24\x29\xf3\x7f\x06\xde\xae\xfd\xae\x5d\x2e\x55\x5d\x86\xdc\x6d\x8f\x61\xa4\xcb\x09\x62\x03\xa5\xf0\x35\x48\xe9\x2f\x8c\x72\x13\x8e\xa2\x5c\xc4\x9a\xa4\x00\x10\x70\xcb\x6c\x73\x48\x50\xdf\xf9\xaa\xa2\xfc\x91\x27\xa1\xae\x26\xc7\x84\x5e\x33\x2f\x97\xc6\xaa\xfc\x39\xb7\xe9\x57\xed\xf6\x2d\xc7\x64\xa0\x35\x0c\xa3\xa5\xb0\x27\x21\x34\x26\xd7\x91\x8a\x2c\x2b\x8e\x4c\x95\x04\xf6\xef\x6a\x83\x7d\xe4\xe5\x96\x40\x90\x55\xf9\xb3\xcd\x9b\xfb\xbe\xe7\x0e\xd8\x66\x5c\x12\x22\x3b\xc0\x43\xfd\x76\xe0\x75\x1d\xbe\x4d\x0d\x82\x30\x2d\xe3\x6f\x8e\xe4\xd5\x2a\xaa\x94\x40\xdf\xeb\xcc\x9d\xcf\x8d\x2d\xc5\xed\x39\x28\x5b\xed\x10\x23\x5c\x84\x0f\xed\x6b\x53\xf0\xaf\xd7\xe5\x5a\xc8\xd2\x6e\x01\xee\xb1\x98\x62\x60\x31\x44\xd1\xee\xae\xfd\x94\xf0\x74\xec\x1c\x53\x9b\xef\xfa\x51\x6b\x08\x5e\xdf\x07\x12\x45\x01\xb4\xa9\x1d\x3e\xd1\xbc\x40\x67\x40\x86\x78\xdd\x0e\x1b\x4c\xf7\x2d\x1d\x82\x06\x5d\x98\xaa\xed\xd4\x8f\xab\x80\xe3\xee\x0c\x51\x3c\x65\xc5\x50\x77\x06\x1f\x4d\xdd\x23\x7c\x43\xcf\xc0\x41\x0d\x7b\xc9\xad\x6a\x52\x76\xd7\xf1\x36\xb6\x74\x7c\x0b\x36\x0a\xf3\x34\x5e\x0e\x93\xd9\xfa\x56\xd1\xb9\xbd\x54\x11\x6c\xfa\x3c\xc1\xa6\xcf\x93\xf1\xee\x25\xf2\x92\x0f\x87\x43\x13\x26\x48\x60\x75\x3f\xfd\xfd\xca\xf3\x65\x40\x5b\xc6\x9e\xb2\x65\xdc\x54\x23\x0f\x57\x16\x47\x58\xa8\xa5\xc2\x49\x82\xf0\x17\x09\x09\x55\xa7\x12\x71\xd7\xe4\x76\xfb\xb6\xb7\x8a\x2d\xf6\xea\x84\xaa\x26\xc9\x57\xbc\x3a\x35\x1c\x9f\xb7\x4c\x66\x0b\x10\x40\x13\x07\xef\xf7\x0c\x96\x1d\x39\x99\x9a\xb2\x16\x28\x6d\x8a\x61\x96\x3a\x96\x2f\x56\x58\x31\x4e\x97\x13\x07\x2c\x5c\x4c\x8c\xf1\x30\x30\x2c\x4b\xdb\xc6\x7e\x89\xda\x36\x65\xa0\x32\x37\xd7\x2e\xac\x0e\xfd\x8a\x09\x73\x68\xee\x61\xbc\xfc\x2b\x6a\x37\xaf\x91\x24\xdb\x59\xaf\x07\x1a\xe6\xa9\xe9\xc5\xd8\x8b\x04\x66\x57\x11\x9b\xfb\x0d\x2a\x51\xe5\x66\x10\xc6\xe9\x36\x3b\x32\xa4\xdd\x8d\x91\xe5\x9c\xed\xe6\x49\x95\xd2\x09\xee\x1c\x63\x41\xf6\xf7\x78\xa9\x49\x2c\xf2\xd5\xbe\x0b\x54\x1d\xae\xd9\xa5\xc6\x55\x46\xbc\x78\x44\x13\x73\x2d\x35\x2b\x33\x24\x54\x05\x0d\x11\xcc\xc4\xad\xb6\x09\x89\xe0\xff\x63\x02\x0d\x98\x30\x07\x18\xbc\xe5\x3c\x97\xd6\xa9\xe0\xbd\xce\x72\x38\x26\x5c\x4a\x4d\x51\xb4\x08\x67\x6a\xe7\xb4\x62\x4e\x3f\x45\x8d\xc4\xe5\xb8\x54\xf7\x27\x6c\xb7\xeb\xc4\x12\x5e\x27\x67\x87\x7a\x10\x96\xf9\x08\xb7\xed\xec\x1b\x1f\xd8\xbf\x66\x35\x18\x34\xef\x3e\xa0\x05\x6b\x68\xf2\x38\xeb\xee\xb4\xcf\x1b\x68\x53\x71\xae\xd1\x90\xc4\x8e\x5c\xb5\x9b\xf2\xf0\x15\xb1\x14\x42\x28\x7f\x0d\x61\x06\xaa\x0e\xe7\x29\x76\xf8\xb7\xac\x22\x7e\x81\x39\x6a\x6f\x34\x8b\x7d\x67\x83\x38\x55\x4f\x5a\xac\x32\x20\xd3\xcb\x71\x43\x47\x70\x8f\xf5\x41\x73\xcd\x74\xe0\x81\xd0\x5c\xd6\x56\xb8\x7f\x66\xd7\xab\xbf\x39\x3d\xc6\x31\x89\x8a\x78\x21\x4e\x62\xef\x51\xfb\x09\x5c\x15\xb7\x46\x89\xc0\x89\xd8\xd0\x07\x5e\x9d\xe4\xbb\xbe\xea\x92\xd5\xa3\x02\x8c\x5d\x94\x2a\x30\xdf\xec\xb6\xf1\x73\x9f\xed\x78\x62\xc9\x16\xc0\x0d\xb0\x64\x5f\xa0\xe1\x82\x80\xab\x9e\xdf\xde\x08\xfb\x58\x40\xac\xe6\x63\x13\xc1\xf6\xe2\x30\x41\xca\x21\x72\x0f\x01\x59\x71\x4f\x48\x9b\x0d\x33\x71\xb6\xe6\x92\x9b\x13\x8f\x9c\x9b\xdb\x18\x4f\xad\x37\x87\x76\x3d\xdb\xee\x9a\x65\x93\x64\x4e\x65\x07\x0f\xfb\x3c\x01\xb1\xce\x37\xb1\x0c\x16\x40\xe7\xf0\xf0\x77\xb1\x4b\xd3\xb0\xb1\x61\xdd\xe9\x9a\x41\x56\x87\x22\x71\x34\xe3\x87\xc2\xc7\x84\x8d\xbd\xc8\x9d\xbd\x23\xc1\x63\xa4\x37\x5b\x98\xed\x3e\x06\x81\x40\x25\x36\xea\x16\x08\x68\x92\x07\xd8\x0e\x9e\xdb\x55\x1d\xb2\xfd\x22\x21\x5e\xdf\x9c\x1a\xa4\xf3\xf3\x56\xea\xd8\xd3\x65\x90\xfe\xdc\x26\x41\xab\xdb\x54\x8e\x5a\x32\x43\x58\x93\x38\xc9\x6a\x07\x50\xc1\x10\x45\x7a\x7f\xaa\xa2\xbd\xff\x23\x0a\xd3\xfb\xf1\xa0\x30\xc9\xa2\x85\x67\xb9\x76\xc5\xde\x79\x8f\x31\xdd\xef\xca\xcd\xec\x0c\x75\x76\x02\x8d\xe9\xa3\x6a\xd1\xab\x96\xfc\x9b\x95\x13\xcf\x37\x44\xb5\xed\x30\x4d\xb3\x91\xef\x43\x89\x2f\xe4\x84\x81\x36\x17\x40\x7a\xa3\x24\xcc\x93\x55\x5b\x00\x41\x9b\xe8\xa4\x7d\x2c\xb8\xad\x4b\x01\xdd\xe3\x25\xbb\x15\xcb\x1f\x05\xbe\x18\x31\xf8\x7c\x68\xa7\xbe\x7e\xdc\xbe\x63\xff\x67\xae\x3b\x91\xe5\x2d\xa6\x7a\x4f\xf8\x7b\xfb\x20\xc0\x4a\x42\x0d\x4c\x5a\xee\xa4\xa1\x7e\xac\x22\xd0\xcd\xb7\x49\x49\xe8\x7e\xe0\x0b\x18\x20\x34\x39\x96\x95\xb3\x5f\x14\xa7\x6e\x57\xfc\xab\x73\x41\xc7\xc4\xf0\xba\x53\x27\x27\x6c\x30\x8b\xb2\x78\xb2\x1e\x03\x28\xb6\x5e\x27\x34\xc1\x16\x34\x5a\x71\x83\x8f\x75\xbc\x5d\xda\xbf\x7f\xd2\xbe\x5a\x25\xa4\x50\x1b\x70\x27\x24\x11\x51\xc2\xfa\x8b\xca\x47\xb9\xe8\x42\x63\x05\xf9\x75\x7b\xc9\x08\x00\x00\x0d\x53\x44\x85\x5d\x1c\x5c\x50\xed\x7d\x9b\xce\x61\x9d\x47\x20\x75\x01\x95\x0a\x11\x90\xb0\xc8\x2e\x15\x93\xa0\xb2\xeb\x77\x1b\x23\x92\x6e\x98\x97\x0b\x99\x1a\xae\xe1\x29\x5f\x65\x7a\xc4\xd5\x06\xbc\xce\x3e\xa8\x59\x0a\xec\xd2\x23\xd4\xec\xd3\x51\x24\x5a\x13\x51\xcc\xaa\x1a\x60\xc5\xd3\x86\x7f\xcb\x71\x71\xa7\x03\xd9\xbd\xf3\x2e\xb8\x9c\xf1\xd0\x84\x13\x15\x6d\xf7\xd0\x92\xd4\x02\x87\x36\x7e\x8b\x30\xcd\xc3\xa5\x91\x14\x54\xa4\xe9\xcc\xa8\xf5\x1f\x37\xd6\x67\x93\xac\x28\xb7\x91\x2c\xe3\x91\x8a\x4a\x4f\xff\xb8\xa2\x35\xf4\x44\x40\xc0\x97\x37\x08\x68\xf0\x9e\xdb\x4d\x5e\x1a\x0d\x86\xa6\xbb\xcd\x2f\x3a\xc7\xf1\x7c\x30\xe5\x1f\xe9\xf8\x25\x0c\x5d\x5b\x92\x09\xd1\x4e\xe9\x34\x97\x7c\x7e\xbe\x5d\x8e\xa2\x25\x9d\xe2\xb8\x19\x29\xba\xc9\x09\x95\xfa\xc2\x74\x75\xa5\x6f\x72\xde\xf9\xae\xd3\xce\x77\xbd\xfa\xac\xc3\xa7\xfe\x7f\xdd\x52\x9b\x1a\xae\xcb\x71\x92\xe8\xfe\x2a\x72\x3b\x78\xd6\xaa\xbd\x43\xba\x16\x79\xb8\xb8\x18\x47\xdb\xbd\xa6\x31\xba\x4d\x3a\xf6\x49\x48\xe5\x37\x2b\xdf\x91\xfd\x6d\x06\x6f\x49\x1e\x83\x28\xf8\x74\xc3\x8b\x6c\x2f\xc7\x5d\x03\x8a\x96\xc8\x8f\x04\x2d\xb2\x2e\x6d\xc0\x64\xc0\x80\x5d\xec\x2b\x11\xc0\x83\x94\x2d\xc7\x0d\xc4\xe0\x3d\x16\x96\x33\xe3\xeb\xd3\x82\x47\x50\xa5\x08\x5f\x26\xfa\x19\xd5\x19\x8b\x3a\xc9\x09\xb5\xd2\xa7\x3c\x2d\x32\x23\x9b\x36\xda\x05\x19\x55\xf8\x2b\x0e\xed\xe0\x1e\x8d\x64\x0f\x28\x77\xbd\x1e\x78\x19\xe8\x72\x35\x81\x72\xb0\x66\x01\x47\x88\x99\x8d\xc0\x1c\x8d\xd4\x75\x5b\x61\xf1\x02\xf8\x3a\x76\xc2\x64\xf5\x5b\xa2\x20\xa0\xfd\x06\xd2\xfb\xbd\xd0\xd4\x8f\xeb\x9b\x04\x8d\x3e\x47\xae\x92\x56\x82\x52\xad\xa6\x95\x5b\xba\x79\x36\xf4\x5a\x12\x58\xda\x61\x4f\x25\xc7\x44\x1a\x8c\xa3\x7e\x9c\x67\xf6\x25\x61\xc9\xf8\x01\x9b\x1e\xff\xa0\xc9\x58\xef\x40\x3b\x4b\xe2\x65\xf1\xe3\x69\x6c\xd4\x6c\xbe\xa4\xfd\xbb\xf6\x5b\x82\x87\x04\x0c\xa2\xd1\x47\xfa\xdf\xbf\x45\x52\x32\xa2\xa1\x5e\xcc\xc2\xc0\xd1\x2e\x9c\x1b\x97\x6c\x0d\x61\xc3\x0a\x93\x6f\x5c\xa2\x22\x7f\xd4\x37\x65\x19\x52\x71\xf0\x02\x59\xcf\x5e\xa0\x61\x12\x85\x45\xa9\x68\x48\xc5\xdc\x33\x00\xbf\x49\x87\x24\x31\xd6\x9c\x41\x9a\x03\xca\x31\x23\x75\xe7\xf7\x89\x97\xf1\x3e\x37\x92\x4f\x50\x72\x97\x98\xa2\xc8\xa4\x43\xe9\x82\xbf\xfa\xad\x6b\xf0\x47\xad\x47\xd3\x7d\xda\xee\xa8\xa8\xcd\xc2\x0e\xc7\x8e\xe2\x57\x9e\xea\x78\x95\x66\x99\xae\xe8\xa7\x5e\x0b\x1c\x57\xe9\x8b\x4f\x8e\x3d\xe1\xff\xd3\x9f\xb5\x38\x5d\xec\xe6\x8f\x74\x7c\xb5\xe6\xef\xfd\x92\xed\x9e\xd8\x27\xff\xcb\x7f\x63\x6c\x1b\x0a\xaa\xcc\xe4\x91\xeb\x5f\xfd\xa5\x0e\xc1\x04\x9e\x91\xda\xae\x1a\xd5\xb7\xbe\xf6\xbc\x57\xc9\xf5\xba\xc7\xbf\x60\xfb\xa3\x42\x45\xaf\x08\x2c\x29\x66\x31\x6a\x15\xdc\x52\xd2\xf6\xb7\x3f\x37\x7e\xdc\xb3\xfe\xbc\x78\x25\xee\xf3\x26\x9e\x93\x9c\x54\x1e\x9d\x61\xd2\xc5\x2c\x8f\x8c\x23\x3a\x63\xaa\x1e\xa5\x2a\xf5\x51\x6a\x2a\x59\x6e\x11\x5a\x4a\x61\x62\x66\x1a\x9c\xc8\xb1\xc2\x7c\x97\xfb\x03\xeb\x14\x50\x27\x66\x79\xf5\x93\x25\xd5\xa7\xcd\x18\xf6\xb5\xe3\x34\x95\x05\x09\x97\xf3\x5e\x45\x9a\x7b\xef\x05\xde\x33\x64\x30\x8c\x13\x55\x47\x45\xc4\xfd\x1d\xe6\xe2\x7d\xa7\x7a\xd8\x5d\xc5\x97\xff\x03\x1b\xf7\x38\x53\x1a\x97\x71\xdc\xb1\xa2\x73\x2a\xab\x6b\x03\x17\x2c\xfe\x13\xc9\xcf\x86\x8d\x88\x50\xef\x39\x06\x14\x0b\x8a\x65\x10\x46\x10\x31\x57\x1b\x42\x61\xf2\x6f\x85\xb4\xb7\xf0\x9b\x03\x4a\xcf\x8e\x59\xc4\x39\x5b\x90\x88\xcb\x13\x36\x77\xfc\xf8\x25\x59\xa7\x30\xca\xb7\x77\x26\x83\x00\xcf\x55\xb9\x58\xb5\x7e\x45\x2f\xb8\x65\x5d\xc6\x91\xea\x6c\xb1\x50\x76\xb4\x39\x76\x76\x5a\x5f\xfd\x35\xe9\x7a\x3d\x32\x26\x52\xfa\x0d\x14\xd9\x9d\x46\x5b\x3d\xe2\xd0\x53\x7f\xbb\x62\x65\xc9\x7a\xc0\xab\x0a\x3d\x89\xed\xde\x0b\x5a\xdf\xf8\xba\xd4\xdf\x5a\x1d\xb4\x52\x90\x33\xdc\x47\xa3\xcd\x21\xd6\xf6\xef\xd2\x86\xf7\x6b\x24\x75\x03\xbc\x97\x68\xa9\xe1\x46\x65\x29\x94\x93\x26\x6d\xe2\xa1\xe9\x9a\xa2\xcc\x63\xe1\xcd\x60\xec\x5d\x27\x4d\xa4\xeb\xd4\xa6\x37\x2f\x47\xc6\x74\x91\xfd\xaa\x65\xea\x1a\xd8\x9e\x72\x32\x05\x27\xf9\x4a\x3b\x0b\xcb\xc2\xb6\xd1\xb1\xde\x8b\xec\x8b\x9c\x34\x89\x58\x2e\x64\x49\x97\x1c\x6e\xde\x21\x36\xf2\x3b\x54\x29\x09\xbb\xe1\xc0\xc0\x29\x11\xcf\xec\x14\x7b\x40\x9d\x9a\xda\x2c\xf6\xef\x6a\x0f\x73\xc8\xa9\xb7\x48\x57\xef\x37\xd8\x2d\xf3\x37\x1a\xc1\xeb\x71\x11\xf6\x72\xa3\xfa\xb2\xea\xf3\xd6\x22\x03\x38\x8d\x09\xfb\xa1\x0a\xd9\xee\x71\x48\x18\xaa\xf7\x5e\xa4\x25\xed\xbf\x3b\x3e\xb5\xc1\xee\xdb\xbf\xaf\x9d\x5b\x5b\xf5\x43\xbb\x64\xdc\xbd\x83\x8f\xcb\xc9\xd4\xb6\x70\x68\xd7\xb3\xb0\x8b\x6d\xd0\xf0\x77\x22\x80\x7e\xd6\xdd\x03\xe9\x5e\x4b\xc1\xd9\x63\xf5\xc3\xc3\x10\xdb\x8e\xfa\x11\x12\xd9\x1d\x50\x33\x50\x50\xda\x8c\x37\xf4\x80\x93\x2f\x56\x8e\xbb\xc1\xd6\xcf\x79\x6b\xa1\x43\x0e\xc4\x66\xe7\x23\x76\x9e\x0d\x32\x6a\x5a\xc7\x7c\x44\x9d\x78\x9b\xad\xf7\xe2\x3b\xdf\xc2\xb4\x91\xf9\x8f\xe1\x81\x08\x71\xcb\xd8\xe3\x20\x9f\xcb\x2d\xbf\x06\xe3\xec\x0e\x49\x3f\xbd\xc6\x9f\xb8\xc0\x29\x2a\xc8\xf2\xfa\x1c\x3c\xd7\x65\x7d\x93\x1e\xd3\xee\xdd\xd2\xa5\xfc\xf9\x29\x87\x93\x7d\xcf\x1d\x68\x2f\x5a\xad\x4f\xd7\x21\xbc\xc2\x48\xe7\x69\x17\xe5\xe7\x0e\xb4\x07\x61\x1e\x96\xfd\x2c\x9d\xb1\xd3\x04\x6b\xc3\xbb\xc4\xeb\xb8\x4f\xb6\x35\x37\x1b\xaa\x2d\x07\xda\x51\x3f\x8f\x8b\x52\x27\x65\x13\x9d\xe4\x29\xaa\x35\x46\x4b\xb1\x2d\x61\x12\x84\x08\x14\x19\x39\x6e\x72\xae\xcc\xd5\xf0\x52\x26\x83\x73\x7a\xf2\x3c\x85\x73\x8d\x29\x5e\x91\x5a\x39\x93\xfa\x33\x88\xe3\x21\x34\x2e\xc7\x8c\x78\x88\x42\x9b\x40\xd6\x5f\xc8\xce\x21\x72\xec\xe8\x6e\x2b\xfd\x55\xab\x5f\x8a\x54\x5d\xa4\x1f\x50\x6a\xbe\x01\xf4\x28\xe2\x8f\x6d\xa0\xc5\xaa\xf9\xb8\x0f\xa6\x24\xe7\xd8\x49\x0e\x5a\x15\x39\xc7\x5e\x04\x90\x48\xf5\x34\x66\xbc\x5d\xd6\x75\x72\xfe\x93\xd4\xdf\x55\xf4\x7c\x81\xe5\x58\x45\xa6\x07\xe7\x49\x87\xe5\xca\x54\x68\xb9\x77\xbe\xdd\x8f\x7b\xfd\x95\x70\xd5\xe6\x0d\xce\xa1\x73\xf7\x1e\xd7\xc6\xf4\x5d\x99\x3b\x81\x27\xd9\x14\x43\x13\x59\x86\x8a\xd2\xa3\x1d\xc8\xd1\x15\xce\x0e\x37\xf9\x2c\xe5\x59\xb4\xd4\x22\xf6\xff\xc7\x95\x4f\x47\x3f\x6e\x94\x36\x2b\x46\x83\x89\xb7\xf7\x9b\x01\x39\x87\xfc\x26\xf9\xb5\x4e\x10\xe2\xbd\x54\x3d\xf8\xc8\x2a\xed\xd0\xd4\x08\x46\xfb\x00\x79\x85\x28\x1b\xdb\xf7\xae\x2a\xc7\x1c\x5c\x47\xc9\xa8\x6b\xba\x16\xf5\x85\x97\x2c\xc4\x07\x24\x96\x67\xd9\x43\x1d\x8b\x9a\x24\xe1\x81\x9f\xfe\xe7\x2b\x0f\x5b\x39\xdf\xe4\x78\xd3\x4b\xc3\x15\x57\x8e\xc6\x20\xbb\x5f\xf9\xa9\x04\x8b\x0e\x94\xda\x8f\x34\xf9\x21\xe6\x75\xdc\xfd\xad\xe5\x4c\xe4\x6a\x31\x5c\xee\x13\x72\xf1\x3e\x75\x0e\x85\xaf\xbf\xe7\xa0\x14\x75\x7e\x42\xee\x19\x3f\x99\x7a\x21\x7b\x0e\xb6\xcb\x7c\x94\x2e\xb1\xbd\xd0\xa4\x5f\xa9\xcf\xac\x53\x13\xe6\x46\x36\x77\x94\x18\xde\x0a\xbc\x78\xf0\x5b\x95\x4f\x0c\x87\x49\x98\x1a\xa4\x5b\x88\x1e\x11\x8a\xca\xf1\x54\x7a\xbc\x7b\x77\xbb\x9b\xc7\xa9\x17\x3e\x70\x4b\xac\xe3\x2c\xdc\x99\xa2\xbb\xd4\x49\x6b\x9c\x76\xe3\x45\xbb\x8a\x94\x76\xc7\x52\x5f\x7b\x5f\x47\xbd\xe0\x88\xa0\x0b\xa6\xce\xa3\x2c\x41\x16\x5b\xd1\xcf\xec\x83\xc1\x02\x75\xdc\xee\x18\x08\xed\x2e\xdb\x75\x1a\x9b\x84\x08\x7c\x0a\x35\xd0\x8b\xa5\x66\x89\xe9\x22\xfd\xc7\x7f\x1d\xe5\x82\xd1\xd1\x80\xe3\x95\x61\x98\x76\x4d\x17\xfe\x3a\x78\xc7\x60\xf3\xaa\x11\xa8\x47\x1b\x7d\x54\x91\xa8\xe3\x2d\x5a\x5e\xc2\x5e\x18\xa7\x45\xf9\x24\xd7\x9a\x2e\xb1\x8a\xfb\x35\x2b\xbc\x06\x79\xb6\x9b\xe4\x5f\xf0\x30\x7c\x7a\x85\x3c\x8e\xaf\xa7\x36\xcc\x1e\xf9\xc8\x2c\xd0\xe8\x60\x7b\xad\x07\xde\x5b\x06\x81\xad\x34\x71\xec\xbb\xc6\x22\xf2\xc7\x15\xed\xce\x1b\x24\x5a\x72\x1f\x93\x47\xd9\xea\xa4\x9d\xbd\x95\x54\xa1\xc5\x49\x56\xa1\x20\x4f\x6f\xaa\x18\xa3\x25\x59\x5f\xb8\x4a\xee\xd9\x2f\x55\x04\xdd\x74\x59\x7a\x5e\x50\x58\xe2\x3e\xe1\x90\x6a\x04\xfb\xdf\x3c\x7a\x76\xef\x6e\x2f\xc6\xb9\x19\xaa\x51\xa6\xaf\x88\xde\x45\x2c\x20\x27\xae\x58\xb1\x92\x5b\xad\x0d\xf4\x3c\x55\xb7\xde\xde\x9f\xe0\x82\x31\x52\xb0\x8b\x7b\x04\xe7\x20\x5b\x36\x90\x1c\x54\x1a\x9e\x57\x09\x94\xda\xab\x42\x12\x28\x8c\x3f\x61\x87\x20\x6e\x18\x04\x77\x3c\xab\xcf\x74\xec\x7e\xee\xa8\x2a\xf5\xb5\x20\x6f\x7d\xb2\xe3\xeb\xfb\x37\x27\x38\x85\x95\x17\x11\xfc\x31\xb7\x81\x2f\x51\xf3\xc7\x84\xc5\xaa\x5d\x02\x91\x2b\xac\x55\x08\xfd\x55\x7f\xdb\x26\x47\x72\x42\x75\xa1\x5f\xb7\x5f\x2d\xc7\x01\x71\x76\xd6\xa6\x48\x2c\xd2\x94\x2b\xc3\x25\x93\x26\xab\x33\xe4\xf6\x80\xa8\x08\x81\xd0\x03\x88\xbd\x4c\xbd\xe1\xfa\x65\x8d\xf2\x38\x1b\x15\x89\xf8\xa0\x39\xc9\xc5\xfd\xbb\xf4\xb8\x51\x2d\x2d\x5b\x76\xeb\x2e\x82\x3b\xe0\x10\xb1\x1a\xa2\x42\xa5\x0e\x12\x13\x64\xb4\x7e\xc8\x23\xa9\x22\xcc\x63\x43\xff\x67\x5f\x7b\x60\xc2\xc2\xf2\x0a\xe9\x85\x8a\xff\xad\x9c\x10\x3c\x60\x10\x96\x7d\x33\x08\xcb\x38\x8a\xc3\x54\xb2\x6f\x07\xd9\x70\x32\x68\xe2\xaa\x89\xec\xf6\x1a\x71\xc8\xfa\x61\x7d\x4f\x8f\xd6\x77\xae\xea\x8a\xf5\x90\xc2\xe5\x89\xa4\x94\x6e\x5e\xf5\xfb\x41\xe6\x75\xd2\xce\x64\xa7\x87\xe4\x7d\x9a\x8e\xd9\x6c\x17\x0d\xb0\x23\x18\x51\xda\x0c\xf2\x5c\x1c\x04\x9c\x18\x76\x82\x2f\x75\xa9\x94\x9f\x2c\xd7\x9b\x76\x97\x28\x2b\x4a\x3c\x4c\x6c\x55\xe2\x71\x29\x27\x4d\x3c\x8e\x65\x93\x77\x63\xb1\x64\x51\x65\x2a\xdf\x60\xba\x40\x30\x9c\x24\xcb\xd2\x58\xd8\x9c\x2a\x67\x5e\xdf\xb2\x57\x33\xd7\x65\xa5\x1c\xe5\x9e\x8a\x88\x9b\xc5\x2a\x2c\xc7\x53\x55\xf0\xb9\xb9\xf6\x42\x58\x2c\x99\xb2\x45\x72\x07\x17\x29\xb6\x99\x96\x61\x9f\x9b\x6b\x2f\xc6\x85\x2e\x42\x98\xee\x68\x55\xcb\x31\x3b\xdf\x67\xd1\x92\x41\x16\xe8\x27\x9d\x7d\xae\x3a\x83\x7c\x8c\x92\x2d\x9b\xbc\x1f\xaa\x4e\x20\x6c\x51\x2e\xe3\x8f\xe5\xa4\x71\x4c\x86\x71\x9e\xd4\x41\xb9\x8c\x30\x84\x70\x8f\xa1\xdf\x89\xf1\x7f\x8f\x2d\x17\xef\x4f\x3d\x82\x43\xbb\x44\x18\xd7\x32\x51\x18\x79\x81\x6b\x14\x2b\x20\x34\x63\x8e\x36\x3a\x5f\x0c\xb2\x30\x25\x33\xa8\x99\x0e\xf9\x4a\xb3\x5b\xf0\xa5\xa9\x71\xf0\xe2\x8b\xed\x5e\x1e\xae\xea\xd2\xcc\x60\x25\x39\x6e\x80\x9e\xb5\x93\x30\xed\xda\x36\x0e\xb6\xa9\xad\x64\xcc\x26\xfd\x02\x81\x69\xd2\x9e\xb3\x18\x2d\xfc\xd7\xff\x61\x62\x16\x8c\xba\xa4\x62\x5e\x9c\x62\x22\xe0\xa9\xa6\xa8\x6e\x21\x1f\x15\x7d\x6d\x64\xe8\x6b\xe3\x45\x94\xf4\x59\xcc\x60\x98\xe5\x61\x8e\x45\x16\xc9\xf7\x1b\x15\x69\x57\x40\x0f\xdc\x11\xe4\xfc\x16\x11\xb0\xe4\xa1\x5d\xee\x00\x1e\xff\xce\x84\x91\xc1\x70\x08\xe5\x5f\x17\xe2\xef\xd5\x47\x80\x2b\x12\xaa\x3e\x19\x0d\x4f\x33\xa8\x76\xef\x46\x4d\x5a\x9c\x46\x1d\xfe\xdf\x73\x01\xd8\x36\x32\x2d\x4d\xbe\xd3\x93\xac\xff\xd8\x86\xc0\x72\x1c\x4c\xfa\xe9\xdb\xad\x04\xbf\x2a\xc3\x16\x95\x8e\xf3\xd8\x57\x50\xd8\xbb\x41\x24\x95\x3b\x94\x66\x5e\x41\xca\xae\xf2\x47\x0d\x86\x0f\x5d\x53\x98\xbc\xb4\xd9\x8e\x9b\x48\xa4\x44\x4d\xd8\x9e\xeb\xd4\xba\x88\xc2\xbc\x0b\x5b\x6f\x2d\x2c\xda\xb7\xe1\x4a\x8e\xf5\x54\x13\xd1\xd8\x8a\x8c\x06\xcf\x04\x9b\x4c\x79\x7f\x75\x4f\x9d\x6f\x5b\xe8\x8e\x03\x0b\xec\x39\xa8\xc7\x8d\xbd\xac\x28\x1b\xe5\xb1\xb4\x0b\x9c\xde\x79\x7d\x93\xca\x84\xf1\xf5\xef\xbd\x5f\xdb\x6b\xff\x0c\x41\xaa\x84\x08\x72\x12\x6c\x96\xbc\x3c\xb4\xab\xdd\x35\x51\x12\x16\x45\xbc\xe8\x49\x97\x02\x20\xa1\x6d\xfb\x02\x89\xc0\xaf\x84\x8b\xae\x0b\x80\xf0\xef\x2d\x1b\x4a\xca\xf1\xd4\xa4\x3e\xf8\x5c\xfd\xe4\xf2\x55\x1b\x6d\x23\x5c\x3e\x8b\xd7\x2d\x27\x5e\x42\x26\xec\x6e\xf3\x25\xd9\x47\x2c\x21\x53\xa9\xa5\xf6\xe9\xa2\x93\x7d\x97\xb8\x87\xd2\x0b\xd5\xbf\xe2\x01\x3e\x4a\x92\xed\xf6\x76\xf0\x82\xa4\x51\x8d\xe8\xf5\x78\xe5\x63\xf7\xf7\x02\xbf\x17\xc0\x96\x18\xe9\x1a\x88\x21\x2a\x4d\xb9\xb9\x42\x68\x2b\x6c\xc3\x19\xcf\x31\x40\xcf\x18\x1d\xd2\x5b\x01\x61\x27\x8f\xb1\xc6\x7f\x1e\xdb\x98\xd3\xa6\x14\x9a\x0f\x71\x6b\xe4\x7c\x40\x7c\xb4\x7f\x62\xc7\x85\xa6\x4a\xf4\xee\xa7\xd6\xb1\xdd\xbb\xdb\xcb\x51\x5e\xb0\xee\x17\xa4\xc3\x50\x5a\x3b\xc6\x7e\x37\x77\xa7\xde\xd0\x17\x27\x84\xd3\xa5\xee\x35\x51\x03\xfb\x14\xf1\x91\x93\xc5\xb8\x80\x17\x0e\xba\x17\xef\x12\xb9\xec\x5d\x72\xcb\xb5\xc4\xf5\xbc\x45\x38\xed\xfb\x78\x2c\x72\xe2\xe2\xdd\xc2\xd9\xe9\xe1\x19\xa0\x1b\xa3\x0b\x08\xa9\x4d\xbe\xdd\xb4\xf5\x0f\x46\xc9\x62\x26\x40\x01\x41\xd7\x73\xa3\x60\xba\x7c\xfc\xfc\x9e\x83\xed\x9e\x49\x4d\x6e\x89\xa9\xf6\x77\x9d\x03\x6f\x3d\x9f\xb5\x1d\xf7\x8b\x9f\xc0\xff\x30\x61\x5e\xf6\xbf\x39\x0a\x97\xcc\x2c\xd6\x29\x27\xdb\xea\x3a\x0b\xa0\x27\x20\x26\xda\xc0\x96\x87\x71\x77\x78\x2a\xa9\x98\x9f\x6f\xd7\x09\x72\x3e\xb2\xca\xe8\x72\x3d\x2a\x5a\x40\x25\xc2\x4b\x8e\x73\x5f\x8c\x7a\x21\x28\x67\xa8\x4d\xcc\x62\x87\x74\x78\xa4\xb9\x39\x89\xba\xde\x6c\x30\xd6\x50\x1d\x5a\xea\xb3\x9d\x0f\x88\x72\x15\xc3\x21\x56\xe9\xc3\xf5\x2c\x41\xb5\xf8\xc7\xa4\x74\x04\x41\x52\xd5\x94\xf0\x4a\x6f\x1f\x4c\xbd\x9f\x83\xcf\xb5\x0b\x93\x2f\xc7\x91\x21\xc7\x00\xd4\x31\x54\xe5\xd8\x53\x23\x5f\x99\xfa\xf8\xfe\x5d\xed\x28\xcb\x73\x13\x21\x55\xc7\xfe\x76\x9c\x00\xf1\xc7\x27\xb6\xb4\x34\x32\x9f\xc5\x64\x12\x0c\xa2\x05\x9d\x40\xa1\x06\xf0\x32\x14\x52\xa4\x6b\xe9\xcc\x9e\x1d\x14\xea\x12\xc9\x3d\xff\x01\xba\x40\xf2\x69\x3c\x3d\xb0\x02\x7e\x1c\x78\x5a\xb2\xc8\xfd\xa8\x41\x95\x1d\xdf\xe8\x86\xde\x0d\xc8\x3f\x45\x88\x8e\x68\x77\xdd\x43\x81\x08\x9f\xb9\xcc\x9a\x98\xb3\x63\x1f\xb8\x9c\x43\x87\x02\xa5\x41\x01\x50\xaa\x27\xa6\xcd\xe8\xe4\x7f\x02\xe2\x2e\x5f\xb1\x0b\x31\x6a\x86\x7f\x61\x73\x59\x21\x7e\xd9\x80\x1d\x8d\xa3\x99\xce\x74\x32\xfc\x02\xb6\x71\x87\x00\x16\x16\xbc\x7d\x64\xca\x88\xa7\x12\xe9\x4a\x5c\x46\x7d\x0e\x72\x4f\x53\x90\x3b\x0d\x7d\xd8\x73\x50\xdc\x89\x38\xaa\xbc\x58\x4d\x38\x81\x37\x81\x80\xa2\x24\x2b\xfb\xb1\xc9\xf5\x83\x48\xf8\x0e\x33\xfe\xf3\x70\x13\xfe\x33\xca\x4d\x11\x99\xb4\x9b\xb5\xe8\xa5\x5d\xa8\x98\xe3\xa1\x45\x99\x61\x16\x17\xa0\x4b\x1d\x98\xd0\x51\xb7\x0f\xfa\xeb\x48\x90\x11\xce\xad\x31\x52\x70\x76\xdc\x60\x38\x5d\xc6\x90\xa7\x76\x8f\x7f\x6e\x4e\x8f\x27\xf6\xa5\xd2\x24\x3b\xec\xa0\xd1\x94\xa3\xe5\x54\x3f\xff\x5d\xe0\xe5\x44\x04\xb7\xad\x42\x82\xd4\xd0\xfc\x00\xc3\x57\x5d\x7e\xf0\x70\xd4\xe4\xaf\x01\x46\xd2\x8d\x8b\x32\xd7\xec\x88\x6c\x55\xf6\x39\x41\xad\xe9\x48\xf5\x40\x7b\x10\x16\x85\x8e\x07\xd2\x12\xdb\xe3\xfc\xc4\x9d\x06\x48\x9d\xad\xcd\x92\x3c\xc8\xe9\xca\xc7\x48\xd7\x84\x94\xa2\xe1\x9b\x4f\xea\x76\x74\xa6\x2b\xc3\x07\xda\x8b\xa1\xec\x18\xae\xe7\x51\x7f\xaf\x9c\x50\x5d\xb1\x6b\x8a\x61\x18\x23\x20\x42\xaa\xf4\x4e\x40\xda\x05\xef\x50\xc6\x37\x88\xf3\x30\x4a\xb0\x00\x11\x71\xd8\xc9\x34\xd9\x17\x8e\xa6\xfc\x83\xa6\xe1\x54\x64\xa3\xb2\xbf\x62\x1b\x5c\xf3\xa4\xdc\xe0\x3d\x01\x59\x28\xc1\xaa\xba\x16\x0f\xfb\x50\x67\x9d\x38\x70\x37\x88\x9a\x74\x06\x0b\x07\x0a\x41\x52\x0a\x54\xbf\xce\x7a\xd5\x55\x7f\x20\xbb\x08\x61\x27\x39\x62\x4b\xf2\xd8\x3d\x81\xe4\xd1\x68\xb3\x5e\xc1\xb0\xcc\xb7\x3a\x3e\x12\xfc\xbb\xbf\xf4\x9f\xce\xd4\x9f\xd0\xe2\x9f\x07\xa8\xc8\x60\x46\x9d\xe1\x15\x06\x24\x67\xc5\x97\x67\x7c\x23\x16\x2b\x35\x8a\x0b\xd2\xe2\xc0\xe0\x6c\x75\x98\x05\x9d\x64\x79\xd8\x55\x3d\x13\x11\x66\x0b\xe8\xc5\xfd\x88\xa0\xc8\x66\x94\x67\x43\x13\xa6\x3b\xed\x58\xd2\x02\xb8\x5d\x2a\x85\xaf\x6d\x37\x14\x1c\x6f\x54\x64\x9f\x7d\xb8\xf2\xd0\xa7\x1d\x40\x3a\xbb\x5a\xfa\x7e\xd5\xbb\x13\x97\x2c\xec\x53\x62\xcf\x81\x18\xe8\x4a\xf0\x94\xbc\x53\x3b\x1f\x4c\x51\x28\x33\x03\x4b\xfc\x6c\x87\xf4\x1e\x67\xa7\xc8\x1c\x7b\x0e\xb6\x97\xb3\xd2\x01\xb1\x15\x53\xe9\x91\xa9\x6b\xa4\x24\x73\x05\xcf\x0a\x45\xb3\x5b\xc4\x63\x29\x95\x1f\x86\x80\x75\x8b\x45\x91\x68\x83\xdc\x03\x70\x2e\x39\x74\xd1\xd0\x98\x64\x41\xcd\x4d\x14\x68\x58\xff\xa8\x1c\x07\x5e\xcb\x71\x21\x2c\xcd\x0c\x69\x79\xe2\x0b\x91\xd2\xdc\xb3\x17\x8a\xfd\xfe\x4c\x43\x3f\xf6\x85\x76\x94\x98\x50\xad\x97\xc4\x7b\x2a\x98\x30\xa2\xf2\x99\xe9\x20\x4e\xe3\x41\x9c\x88\x3b\x0d\x9a\x96\x90\x4e\x90\xe3\x89\x36\x5f\x5a\x86\x71\x6a\xf2\x6d\x3e\x3e\xbb\x4a\xc8\xae\xff\x9d\xeb\xd7\xe0\xa6\xb1\x95\xaa\x7c\x80\xa4\xc7\xc2\xe8\x9b\xa3\xb8\x80\x24\x9a\xd7\x65\x87\x12\xa9\xab\x36\x69\x01\x36\xcd\xd2\x28\x94\x60\x15\x35\x3b\xb0\x03\xe5\x98\x99\xb6\x59\x96\xd7\x61\xad\xdd\x66\xb1\x58\xbd\x0b\xa5\x32\x39\x99\x0a\xdc\xf6\xce\xb7\xd3\x7a\x30\x17\xa3\xbc\x67\x94\x72\xeb\xac\x7d\x1d\x92\x18\xf2\xab\xb8\xb0\xef\x59\x3c\x05\x8a\xe9\x1f\x56\x8f\x12\x04\xa2\xdc\x56\x07\x1e\x00\x47\x5c\x09\x68\x77\xb8\x6b\xe5\x72\x1c\x63\xc9\x25\x2a\x22\x98\xad\x5d\x89\x06\xef\xb2\xcf\x41\x9c\xa9\x35\x21\xaf\x44\xe4\x23\x37\x72\xa2\xb0\x18\x85\x52\x29\x72\xd0\x3b\x0f\xc3\x0b\x7e\x9e\x6c\x1b\xb0\x95\x2c\x8c\xea\xe7\x1f\x17\x03\x0c\x17\x07\xc8\x74\x1c\xbf\x8b\x53\x49\xf7\xf3\xfb\xda\x51\x3f\xcb\x0a\x41\xee\xb9\x64\xc7\x0b\x8f\x9f\x27\xfd\xe8\x7a\x49\xf9\xb2\x1d\xf2\xd8\x6f\x01\xe2\x92\x63\x32\xfb\x1b\x9a\x3c\x1e\x18\xc9\x32\x74\x31\x3d\x59\x51\xbd\xfd\xa4\x53\x15\xb1\xf2\x58\x45\x99\x65\xdd\xed\x24\xfe\x7f\x85\xe9\x3f\x8f\x23\x92\x96\xff\xa9\xbc\x6e\xfb\xc7\xa4\xce\xb2\x41\xcb\xd0\x8d\x26\xb1\xf4\xae\x81\xaf\xb5\x4b\xa8\x1c\xa8\xce\x03\xec\x9a\xba\xa2\xc3\x2c\x49\x08\xdb\x77\x12\xd3\x4f\x4e\x36\x4b\xf1\xce\xcf\xb7\xbf\xf0\x85\xc7\xa9\xfe\x70\x1e\xfd\x5e\x35\x80\xf1\xde\x66\xa2\xca\x89\x9a\x11\xdc\x46\x14\x9d\xe5\x59\x55\x87\x03\x22\xaa\x0a\xc1\x01\x0f\xf0\xfb\x36\xd8\x85\xf3\xcf\xef\x63\xdf\x54\x5d\xe8\xfa\xe6\x36\x2e\xa1\x0e\xe1\x82\x2c\xb7\x2b\x9d\xa8\x26\xec\xaa\x1b\x2a\xed\x51\x3f\x2b\x8c\xa8\x11\x69\xa2\x59\xff\x18\x10\xf6\xc2\x66\xc0\x28\xbc\x3d\xb5\x31\xa3\x2b\x9c\x2f\xc7\xcb\x46\x84\xf0\xb0\xda\x1e\x63\xdf\x2d\x21\x8b\xa9\xa7\xa7\xbd\x47\xa4\x2a\xf7\x88\xba\x0e\x9f\xf5\x6f\x8e\xcc\x0e\x7b\x29\xa8\x08\xdd\xc2\xe3\x17\x8c\x6a\xe5\x3b\x25\xb7\x83\x89\x30\xaa\xfe\x4a\xd7\x74\x71\x6d\x6f\xe8\xbb\xca\x71\x63\x78\xb5\x98\xe5\x03\x0d\xaf\xb0\xef\x9f\x62\xfd\xb9\x53\x54\x38\xeb\x87\x69\xb7\x98\xfd\x24\x39\x92\x3a\x58\x40\x48\xf1\x9d\xc0\x5b\x13\x7e\x67\x2a\xc9\xff\x8a\xa0\x42\x5b\xa4\x5b\x0d\xe1\x52\x39\xa6\x24\x7f\x29\x4e\x12\xd7\x04\x51\x0a\xaf\xbd\x54\xe5\x60\xf9\xed\xe4\x8f\x26\x52\xb0\x5e\x56\x3e\x6e\x1f\x9c\xe2\xed\xed\x1a\xaa\x04\x36\xfb\x15\x68\x78\x5e\x0e\xbc\x92\xe8\x69\x62\x98\x6d\x20\xd3\x71\xf4\xb7\xdd\x93\x0e\x64\xa8\x64\xde\x09\x08\x0a\x73\xdc\x6a\xed\xbb\xd0\xd3\x41\xb8\x5b\xb6\x7b\x88\xd9\xf1\x0f\xed\xc0\x92\x66\x65\xe5\xe3\xab\x1b\x9e\x65\x95\x84\x03\xc5\x4a\x39\x37\xb7\xbd\x5e\x0d\xed\x93\xac\x67\xcb\x78\xe0\x9e\x94\xda\xcc\x11\x5e\x24\xa0\xfe\xe9\x6f\x55\x4f\xb9\xb5\x68\x38\xb2\x36\x33\x3a\x02\x90\x27\x5c\xa9\x7c\xce\x30\x0d\xd3\xb0\x23\x3e\xc9\x86\x93\x50\xc7\xf3\x01\xc9\xec\x53\xd4\xbb\x90\x8f\x4a\x5b\xa7\x71\xca\x58\xa0\x58\xaa\x43\xbe\x06\x18\x2b\x61\xde\xcd\xb3\x05\xd9\x27\x10\x55\x9c\xa1\xf2\xc5\x99\x26\x4a\xcf\x30\x2b\xca\x61\xe6\x8c\x2d\x31\xe4\x3e\x20\x0f\xa5\x0f\x28\x04\x28\xb2\x64\x04\x29\x92\xfa\x65\x22\x18\xfb\x71\x45\x51\x10\x08\x86\x98\x5d\xa0\xb6\xa9\xe3\xd0\x53\x1e\xe3\xb9\x98\xe5\x65\xb8\x90\xa0\x8a\x08\xf2\x20\xe8\x3f\x72\xcc\xb9\x41\x1c\x2d\x19\x8d\x65\x50\x46\xfa\x83\x8a\x00\xe3\x7f\x30\xc5\xd7\x3c\xb4\xab\x1d\x8d\x90\x1f\xa1\xf2\x26\xf5\x46\x39\x71\x76\xae\x51\x16\x65\x65\x69\x5a\x34\x44\xc1\x58\x56\x79\xc2\xc7\x08\xb1\x9c\x76\x2d\x40\x48\x5d\x55\xea\xc1\x84\x25\xf5\x26\x96\x6a\x39\xc1\x0c\x51\xfa\xcf\xe6\x59\xfb\x7c\x9d\x80\x94\x66\x30\xe3\x59\x3d\xff\xf9\x45\xd2\xf8\xfd\x29\x56\x20\x1d\xfd\x4d\x6c\x48\x93\x0f\x4d\x39\x92\x16\x93\x04\x28\xf6\x1b\x34\x58\x69\x6a\xbc\x42\x1a\xdc\xdb\x32\x60\x4f\x3c\x42\x5e\x8f\x47\x1a\x71\x56\x69\xbc\xe4\x12\x7d\xdc\x93\xd0\x76\xe4\x84\xd8\xa6\xc3\xac\x10\x6a\xc7\x2a\x20\x67\x58\xf7\x11\xaa\xaa\xca\x43\x8b\xe8\xaf\x0d\x21\xf9\x4a\x36\x4a\xbb\xda\xae\x42\x1f\xfd\x18\x86\x16\x4b\x58\x6a\xf4\xf3\x04\x99\xaf\xc4\xa9\xe1\x16\xe3\x45\x6e\x31\x7a\x19\xca\x6c\xd9\xe4\xc3\x3c\x8e\x44\x47\x40\x15\x9a\x68\x70\x1c\x66\x87\xa6\xb0\xd7\xb3\xde\x3a\xf6\x72\x58\xa9\x44\x31\xbf\xbe\x25\xdb\x0b\x51\x71\x7d\x9e\x10\xb2\xde\x73\xe9\x22\x39\x84\x66\x79\x69\x7a\x21\xa4\x97\x10\xfc\x1d\x0d\xc8\xf2\xfc\x34\x5b\x9e\x9f\x46\xbe\x28\x7f\xd6\xc8\x91\xca\x16\x17\xad\xa6\x31\x46\x94\x13\x7b\xad\xd7\x2f\x95\xf1\x6e\xcd\xcf\x6f\x5c\x99\x2a\xe3\xec\xde\x5d\x8f\xc4\x70\xd0\xa2\x72\x23\x1b\x18\xbd\x4b\x5b\x6a\x94\xa5\xd1\x28\x77\x4c\x2c\xf4\x90\x2f\xe1\xcd\xc8\x49\x93\xab\xcf\x5f\x1f\xaf\x3b\x47\xd1\x61\x2f\x0f\xbb\x82\x17\xc2\xbb\x3e\x6e\x07\x8e\x1c\x53\x30\xb9\x60\xf2\x3c\xb4\xcb\x86\xa6\xeb\x9c\xbb\x93\xa7\x7c\x14\x0e\xe3\x32\x4c\xe0\x89\x50\x0f\x48\x95\x7b\xb3\x85\x38\xd5\x7b\x9b\x9e\x2d\x2f\x88\xf8\xb3\x05\x93\xf0\x3c\xb5\xcb\xb9\xce\x59\x6d\x2c\x97\x79\x98\x16\xf5\xee\x6f\x0b\x12\x88\x07\x6f\xb0\xd6\xb9\x94\x59\x54\xd8\x49\x37\xa8\x6e\x36\x5a\x48\xcc\xc3\xf6\x0f\x5d\x6e\xa0\xd6\x71\x7f\xe7\x53\x8c\xe8\xfe\x67\x14\x89\xfc\x2d\xcb\x79\x40\xd3\xf7\x43\x72\x45\xbf\xb2\x49\xbd\x72\xaf\xc2\x82\xff\x0c\x71\x1b\x7a\xb7\x17\xec\xbe\x29\x6a\x12\xd4\x8b\x8e\x12\x88\xc5\xda\x3f\x45\xd7\xed\x46\xc0\x76\x0b\x6f\xb1\xac\xeb\x65\x4f\xdf\x59\x59\xaa\x37\x1c\xc2\x19\xde\x21\x97\xf3\x73\x36\x3f\xd2\x86\x64\xd3\xe0\x15\xe1\x69\x69\x17\x20\x62\x38\x2f\x25\x26\xec\xbe\x57\xd9\xed\xfd\x0d\xc2\x40\x98\xc1\x30\xc9\x56\xb1\x61\x69\x22\x4c\x49\xf1\xd4\x70\xb4\x20\xe5\x2c\xd1\x5e\x47\x63\xdd\x47\x4b\x60\x49\x3c\x58\x90\xc4\x1e\xf5\x5e\x34\x5f\x90\x30\x5c\x9b\x20\x52\x11\x56\x31\xec\xe5\x71\x34\x4a\xca\x51\x1e\x26\xdb\x48\x0f\xf9\x35\x8c\x06\x27\x45\x4a\xaa\xc2\x72\xab\xf2\x77\x4c\xa3\xb9\xd5\x20\x71\xba\xe8\x2d\x28\x90\xc5\xbe\xc8\xbd\xd4\x17\x83\x4f\x4f\xa6\x46\x61\xda\xc5\x0e\xbb\x5f\xad\xc5\xd7\xa9\x68\xbe\x4e\x09\x6b\x16\x2e\x51\x03\xe8\x3c\x35\x80\xce\xbb\x36\x45\xb8\xb0\x10\x1b\xdb\x58\xc7\xcf\x09\x7d\x05\x9b\x8e\x18\x4d\x20\x29\x39\x32\x49\x3e\xef\x86\x2d\x12\x12\xbf\x5a\xf9\x3e\xe3\x55\x02\xc9\x59\x46\xbb\xb6\xfa\x05\xb9\xd6\x61\x14\x9b\x6f\xba\xe5\x71\xd4\x1f\x64\x69\x77\x42\xc8\x6a\xcb\x98\x88\x2a\x5b\x3a\xff\x2f\x63\xef\x16\x24\xc7\x95\x9e\x07\x02\xd5\xdd\x00\x08\x92\xe2\x75\x46\x23\x79\xb5\x2e\xc9\x13\x4b\x2b\x62\x96\xe1\x70\xc4\x7a\xd7\x7a\xc9\x32\x80\x11\x05\xac\xa7\x89\x00\x20\x50\xcb\xd8\x07\x66\x57\x9d\xae\x4a\x22\x2b\xb3\x26\x33\xab\xc1\x66\xf8\x61\x9f\x1c\x0e\x87\x1f\x64\xaf\x63\x77\x23\xec\x88\xb5\xb5\x11\xbb\xd6\xae\x76\x2d\xcd\xc8\x96\x2d\x59\xae\x9e\x8b\xe6\x22\xcd\x68\x78\xe7\x90\x1c\x92\x00\x88\xfb\xfd\x7e\x47\x63\x23\xff\xef\xff\xcf\xf9\xaa\x2b\xe9\xf0\x03\x23\xb2\x88\xee\xea\xaa\xcc\x73\xfe\xf3\x5f\xbe\x4b\x08\x17\x55\x3c\x72\x20\x4e\x79\x02\x82\x04\x69\x8c\x3b\x2e\x4c\x98\xa6\xd0\x7a\xc9\x94\x70\x2f\x34\x41\x89\x46\x71\xe0\x44\x62\x9c\xac\xac\x25\x7d\x41\x19\x77\x6f\x35\x8b\xcb\xfa\x20\x0c\x7a\x88\x28\x86\x7c\xef\xcb\xe3\x0e\x79\x24\xfd\xf5\x71\x5e\x29\x73\xd5\x08\x04\x84\xf6\x3f\x49\xe2\x12\xa3\x22\x5f\x71\xd9\xeb\x08\x84\x06\x30\xa2\x2e\x20\xcb\x1f\xf6\xf2\xbc\x78\xa4\x5e\x05\x08\x48\x73\x12\x42\xf0\x3d\xa1\xd8\x69\x14\x73\x12\xa5\x56\x0c\xb6\x09\x0b\x11\x4a\xe4\x4e\xc4\xbc\xa7\x1f\xb3\x2f\x9d\x7c\x2b\xf4\x46\xd6\x69\x84\x1d\xaf\x96\x8f\xd7\x1f\xd3\x54\x5b\xf0\xfb\x60\x64\x7d\xb1\x43\xee\x23\xdb\xd1\x06\xc4\x23\x3f\x27\xef\x0c\x98\xca\xdd\x09\xe9\x4a\xa8\x3c\xa9\x8c\x78\xc6\x3f\x2f\x56\x3d\xc8\xfe\xd7\x08\x34\xd0\x16\xa6\x97\x2d\x75\x59\x9d\xb6\x00\x43\x90\x7b\xee\xaf\xa2\x34\x96\x7b\xf1\xbd\xbf\xd6\xa1\x24\xd7\xc5\x45\x77\xa0\x25\xbf\x55\x0d\xef\x4f\xa8\x9c\x78\xbf\x41\x76\x5f\x12\x69\x78\xd5\x12\x58\x8a\x3a\x46\xc7\x1b\x91\x8b\x75\x56\x22\xf2\xf2\xf5\x57\x31\x1a\x71\x8b\x74\xac\x83\x42\xf2\xab\x2e\x3b\x54\xd2\x1e\xf9\x3e\xee\x85\xbe\x08\x6e\x9f\x45\xde\x57\x54\x0a\xd0\xa1\x50\x4b\xd3\x6b\x8a\x59\x66\x9c\x2c\x90\x6f\xf9\xaa\x26\xc4\x41\x15\xd9\xdb\x33\x53\x88\xaf\xb4\xcb\x51\x5c\x1c\x82\x94\xce\x9e\x3d\x8a\xef\x7c\x30\xe5\x52\x26\x47\x39\x3a\x88\xd7\x68\x31\x1c\xee\x69\x26\x8f\x35\x73\x4b\xea\x1d\xbd\x6e\x3c\x8c\xcb\x71\x9d\xb2\x95\xbe\xfd\x82\xc0\xb4\x6d\x2d\x04\xac\x6d\x5e\x8a\x3b\xc9\xca\x2a\x4e\xd3\x39\x6a\x33\x5f\xa2\x6d\x87\xca\xc4\xfe\x7f\x83\x83\x36\x80\x24\x53\x70\x1e\x42\x3b\xb1\x6d\xfa\xd2\xb8\x28\x2b\x94\x89\x3a\x38\x9d\x84\xa2\xf7\x76\x14\x8e\x98\x73\xfe\xc4\x4f\x93\x15\xed\x37\xef\xf5\xe0\x10\x79\x03\x84\x7f\x40\x9d\xd1\x5f\x41\xe8\x33\x42\xb7\x65\xaf\x3d\x37\xca\xcb\xa4\xca\x0b\x08\x03\x1b\x68\x34\xb0\xa4\xf0\x6b\xd8\x25\xad\xb5\x20\x38\x32\xce\xba\x6e\xa1\xde\x9b\x36\x50\x0f\xfc\xb4\xfb\x38\x9c\x10\x8a\xfe\x82\xb4\x82\x4f\xb0\xb7\xee\x54\x44\x4f\xaa\xd7\xe7\x03\xef\xf8\x22\x39\xdc\x9c\x9a\xf2\xa6\xaa\xff\x20\x36\xe0\x15\xaf\xa8\x36\xc8\x0b\xa5\x7d\x7a\x2d\x08\xdf\x67\x3e\x41\x2a\x37\x0a\xd6\x83\xfc\x8f\xf7\xee\xf2\x99\x37\x6e\x30\x5a\x3f\x42\x80\x65\x38\xad\x49\xc8\x5e\x64\x9a\xd6\x72\x9d\xce\x41\xc1\x07\x8b\xf5\x5a\xbd\xf0\xd6\x2f\x13\x49\xe9\x2f\x26\x61\x9f\x8d\xd2\xf8\xf5\x98\x74\x32\xf7\x62\x9f\xe9\x8b\x46\x7e\x63\xe6\x00\x8b\x57\x23\xd4\x28\xdc\xbe\xf3\x3e\x5f\x1a\x38\x31\x4f\x59\xa0\x36\xd6\x1f\x88\x01\x06\x5a\x1c\x3f\xd3\xd0\xa8\xff\x82\x10\x8c\xf2\x0c\x42\x9d\xf8\x87\x87\x93\x30\xef\xcc\x8b\x74\x75\x2e\xc4\xf3\x33\x84\xa5\xb9\x4b\x24\xfc\x73\x93\xa0\x56\x5f\x25\xa6\xa5\x83\x22\x03\x00\x45\xbd\x66\x68\xc8\x28\x71\x7d\xa7\x9d\x64\xdc\xa2\x7b\x74\xbb\xee\xd1\x1c\x64\xa9\x3e\x60\x16\x17\xf5\x43\x3c\x81\x98\x8e\x7d\xa6\x8f\x84\xbb\xe7\xa8\x18\x6e\x92\x4f\xf9\x55\xfd\xe2\xc8\x26\x1e\x20\xda\x23\xc9\x55\xa6\x9e\x49\xb1\xcb\x9d\xc3\x79\x7b\xa7\x41\xaf\x6e\x5f\xdb\x2d\x2f\x27\x5d\xff\x0d\x71\x27\xf0\x30\xf4\x7a\xf2\x0c\x8b\xc7\xa6\xa9\xcb\xfa\x8a\x1f\x55\x52\x0f\x0e\x3b\x63\xf8\x10\x17\xb7\x72\xdd\x4a\x90\x3e\xea\x48\x11\xd1\x37\x03\x81\xc3\x6b\xed\xfb\x34\xe9\xb7\x71\xdc\x20\x7f\x7d\xe8\xa1\x51\xf9\x70\x89\x95\xaa\xf5\xe8\xd6\x17\x24\xdf\x68\x76\x01\xab\xdb\x49\x89\xe1\x2d\xb9\x8b\xe8\x37\x3c\x00\x3a\x10\xd8\x07\x78\x51\xb0\x58\xa3\x2a\xbf\xa0\x09\x87\xf0\x3f\x95\xab\x29\xd9\x57\x7f\x9d\x59\x7a\x6f\xe1\x21\xe8\xef\xac\x35\xa9\xbf\x75\x8b\xfc\xb0\xc7\x18\xe0\x36\x80\xf1\xa5\xd7\x53\xea\x86\x95\xf9\x44\xe1\x73\x3f\x8c\x48\xc6\xf4\x1a\x63\x00\x36\x75\x82\xc1\x37\x60\x8c\x06\x4a\x20\xba\xf8\x07\x58\x55\xa6\x61\x24\x19\x1d\xfa\xd4\xb0\xf8\x46\xa6\xb3\x1e\x85\xac\xe7\x2d\xe8\xb2\xf8\x4c\x61\xe7\x2e\x5d\xad\x6f\x22\x08\x9b\x7a\x9e\xdc\x02\xe4\x10\xdf\xc3\xb3\xb3\xec\x28\xa0\xf0\x3e\x8a\xa6\x44\x5b\x01\x1b\xf2\xad\x18\x6f\xc4\x7a\x43\x26\xbf\xc8\x7a\x6e\xe3\x11\xd8\x6e\xc4\x72\xc7\x0a\x3f\x3a\xc3\xf7\x11\x9c\xcc\x50\x74\xaf\x4a\xf0\x30\x51\x85\x01\x5b\xa0\xd7\x4d\x78\xe5\xc3\x71\xe5\x0a\x3d\xf8\xd1\xa4\x04\xb1\x5c\xaf\x27\x4f\x86\x91\xa9\x98\xfa\x6a\xab\xdd\xd3\x0f\xea\x1b\x8c\xb6\xcb\x6d\x02\x8b\x6c\x86\x74\xa0\xa6\x62\xb3\x42\x80\xfb\xf6\xb6\x0b\x57\x9f\x32\x3d\xe2\x8c\x6e\xea\x10\x67\x74\xd3\xda\x53\xfe\x84\xee\x17\xae\x97\x18\x4b\xdd\xf7\x85\x83\x44\xda\x14\xb8\xc2\x39\xe9\x3f\xef\x5d\x7f\x83\xee\xe5\xcd\x09\xe9\xb3\xbe\x83\x87\x6f\x42\xcc\x81\xe8\x04\xc0\x3a\x72\xef\x1b\x13\x52\x66\xbc\x82\x81\x1c\x4a\x65\x35\x32\x31\x73\x3e\x79\xae\xa8\xa8\xd7\x27\x41\xa6\xe3\xb1\x0e\xe9\x67\x29\xb8\x14\xf7\x06\x3a\xe5\xc6\x41\xfc\xbc\xae\xf2\x21\x37\x1c\xb9\x62\x8e\x24\x2b\xf0\x5c\x4c\x22\x38\x28\x6c\x7f\x63\xea\xa8\x4d\x87\xe5\x1c\x1b\x43\x4c\x42\xcb\xf7\x26\x9b\x9f\x5d\xf2\x4f\xb6\x4c\xdc\x30\x71\x41\xfc\x03\x05\xd1\x09\xa6\xf1\x9f\x20\xe7\x76\xd1\x01\x28\xab\xb8\x52\xff\x4b\x6b\xb7\x84\xd4\xfb\x2a\x06\x27\x4d\x5e\xe6\xf5\x37\x37\x07\x25\x1a\xe2\x15\x42\xc4\xa9\xe3\x42\xfd\x60\xbc\x47\xd6\x4b\x7b\xbd\x47\xd6\x23\xbe\xa6\x14\x92\x9a\xe5\xfb\x94\xca\x9e\xa3\x86\xd9\x28\x2e\xbb\x83\xa4\x15\x66\xb0\x97\xa4\xaf\xa0\xd7\x84\x92\x17\x6b\xf9\x95\x38\xdd\x46\xe0\xd2\x3f\xc5\x5a\x01\xe9\xfd\x04\x8d\xcb\xfe\x3d\x02\xa7\xfe\x03\x62\x3e\x3e\xdf\x0d\x89\xa2\x68\xc1\xaa\xe3\xab\x16\xb6\x24\x6d\x71\x71\xc2\xf6\x59\xae\x97\x74\x05\x4c\x10\x46\x70\x37\x10\xe0\x10\xbb\x50\xcb\xe8\x3f\x20\x12\xe8\x3f\x50\x0b\xb1\x3b\x88\x8b\xbe\x7b\x54\xfe\x20\x7a\xa7\x00\x98\xa8\xac\x31\x96\xb0\x72\xac\x80\x9b\x36\x48\x74\x7d\x13\xd1\x9c\x50\xb9\x5b\xac\xed\x73\xca\xe1\xd1\x1f\x8b\xc8\x9f\xe2\xad\x49\x70\x5d\x07\x42\x03\x0b\xfd\x3a\x7d\xd0\x5b\xf5\x3a\xb1\x6e\x4b\xd6\x2b\xf2\x6e\x21\x5a\xf4\xbe\x60\x7c\x2f\x22\xb9\xda\xf7\x66\x26\xea\x07\x77\xbc\xd0\xce\xf2\xcc\xbd\x26\xf6\xad\x95\xc8\x9f\x22\xd2\xe0\x76\xa0\x61\x74\x3d\x0a\xf9\xe3\x47\xa4\x67\xa1\xa2\x72\x43\x97\x55\x62\xb8\x81\x91\xc8\xdf\xc3\x5d\xd0\x17\x98\x55\x9a\x7a\x8e\x3c\x75\x8f\xfa\x9a\x16\xf0\xde\x1f\x26\xa9\xfb\x76\x68\xa8\xbe\xd1\xa0\xe4\xd2\xee\x15\xda\xf4\x95\xc7\x60\x96\xf7\x01\x07\x76\xd1\x4f\x5a\xea\x14\xb5\xae\xdc\xb6\x72\xb4\xc5\x1a\xc6\xa2\xfa\x56\xd0\xd8\xfa\x9d\x67\x40\x1b\xc6\xb8\xeb\xb2\x4c\xb8\x18\xd0\x6f\x92\x43\xc1\x4d\xe4\xf3\x27\x54\x65\x55\xe4\x90\x5c\xb5\xa1\xf8\x3d\x68\x31\x78\x98\x88\x27\x3c\x2c\x74\xa6\x81\x6a\x23\x51\x44\xc2\xc6\x78\x44\xc6\x69\x5e\x0e\x2a\xc8\x6c\x5e\x94\x79\x1a\xce\xe2\x53\xa4\x77\xbe\x79\x4d\xee\x36\x66\xca\xf7\xa8\x69\xd1\x4f\x5e\x1f\xe6\x2d\xd1\x86\x40\xbf\xf2\x34\x69\x15\x9f\x9e\x96\xb9\x4e\xca\x6a\x2e\x80\x50\xef\xca\x97\x57\x14\x65\xc4\x6a\x9c\x61\x5a\x9a\xa7\x3d\x05\xca\x1b\xb8\x28\x70\x92\xce\xfb\x7c\x6a\x69\xbc\xba\x3d\xd4\x79\x5f\x94\x64\x0c\x0d\xc4\x2b\x58\x17\xd8\x50\xba\x16\x30\x8d\x80\x9a\x06\xf6\xe1\xfb\x11\x71\x21\x1f\x22\xf5\x31\xe0\x8a\x04\x10\xd4\x47\x4f\x76\x82\xf3\xc9\xbc\x08\xbb\x98\x8c\xfa\xc6\xc3\xf8\x2b\x36\x74\x65\xc5\xa1\x13\x24\x2c\x77\x62\x4a\xa8\xd3\xe6\x61\x4e\x1c\x3f\x90\x07\xde\xa0\xec\xe5\x2c\xdd\xd2\x23\x34\x77\x5c\xce\x8b\xbe\x94\x95\x2d\x22\x16\xa3\xa9\x65\x2d\xbf\xe0\x27\x98\x17\x5f\xa2\xe3\x1e\x34\x3e\x6f\x1f\xbf\xcf\x04\x9c\x16\x3a\x24\xe5\x72\x5c\xb0\x3d\x9a\x89\xcb\x13\x02\xa0\x6a\x01\xac\x52\x84\xe0\x85\x35\xd2\x66\xf8\x58\xbe\x23\x70\xaa\x7f\x1f\xe7\xa9\x5a\xdb\x8a\xc4\x01\x92\xf0\x7f\x45\x48\xf8\x13\x88\x65\x1a\xbf\x64\x45\x18\xae\x48\x1e\x96\x71\xfa\x5b\xbf\xf9\x1b\xa6\x45\x89\xbc\x0c\x08\x31\x3d\x07\xf1\xe0\xef\x20\x19\x40\x5c\x83\x6f\xaa\xe9\x2a\xca\xe2\xc5\x37\x7f\x5b\xec\xbf\xcc\x04\x94\x0d\x99\x9f\x80\xe4\xb1\x81\x28\x9e\x25\xc2\x9e\x20\x6a\xe3\xac\xeb\xe6\x03\xd5\xf5\xcc\x24\xe8\x05\x5f\x64\x47\x89\x4f\x48\xf8\x60\x73\x87\x4e\x28\x95\x4a\x9b\xa3\x39\x07\xd8\xf2\x48\x4d\x94\xf1\x87\xd6\xda\xad\x06\x85\xf3\x76\x4f\x70\x61\xda\x42\x41\x32\xab\x60\x66\x7d\x41\x7d\xbf\xa5\x71\x7a\x68\xfe\xf3\x01\xf1\x04\x05\xd5\x36\xa3\xbe\x98\xca\xc0\x86\x49\x3c\xc7\x80\x74\x79\xbc\xf8\x41\x08\x0d\xaa\x88\x75\x83\x0d\x4d\x95\x8f\xfb\x83\x05\x9c\x41\x36\x27\x0e\xdd\x3a\xe4\x12\x3e\x9d\x0f\x28\x86\x33\xf2\xb6\x58\x73\x2d\x36\x6a\xce\x47\xab\xad\x06\xdd\x29\x93\x97\x0a\xe3\x8c\xa5\x24\x5d\x2a\x1c\x3a\xdf\x68\xae\xe0\x63\xeb\xf5\xcc\x54\x76\xdf\x8e\xf6\x20\xce\xfa\x7a\x57\x35\x54\x44\x24\x0f\x39\xab\x28\x73\x70\xc7\xcb\xed\x18\x98\x26\x63\x56\x11\x64\x96\x67\x93\xe5\xb8\x58\x71\xab\x73\x21\x82\x1d\x61\xd9\x3a\x33\x39\xb4\x87\xf2\x8c\x75\x0a\x56\x47\x79\x35\x70\x65\xf2\xba\x15\x58\x5e\x70\x9a\x54\x55\x66\x85\x6f\xf7\xb6\xe3\x5e\x3e\xf2\xc6\x64\xfe\xd4\xf3\x26\x39\xaa\x57\x6b\x10\xfb\xfc\x49\xd9\x31\xde\x58\xca\x7b\x47\x9f\x46\x96\x8c\x6a\xe0\x2d\x01\xa2\x1b\x44\x45\x36\xb5\xca\x71\xad\x11\x1f\xe4\x7d\xd9\xd5\xa6\xcd\xc7\xc8\xfd\xdf\x9f\x90\xd4\xd1\xd5\x88\xbc\xf1\x2e\x12\xba\xe2\x3b\x4c\x2b\xbd\x85\xfb\x0f\x60\xce\x96\xb5\x70\x38\x3c\x94\x58\x85\x26\xce\xb7\x90\xc4\x21\xd2\x3f\xda\x09\xa7\x46\x55\x8c\xab\xc1\x42\xb0\xf5\xff\x18\x81\xc1\x58\xd3\xf5\xed\xc0\x93\xfd\x4b\x59\x18\x7a\x2d\xdb\x19\x4f\xf0\xc6\x34\x13\x61\x3c\x9c\xa7\xbf\xa4\xf2\x30\xfa\x02\x59\x88\x8a\x08\x50\x95\xf8\x59\x93\x95\xa8\x64\x43\x3e\x5e\xe3\x56\xc3\x2c\x4c\xaf\x67\x7a\x4b\xbb\x0e\xb4\xfb\x71\x92\x61\x13\xa2\xfd\xf5\x09\x91\x87\xae\x91\xa6\xfd\x29\x02\xe6\x96\x55\x3e\x1c\x59\x27\x1a\x60\x8c\x0f\x08\xf6\xf4\x41\xa3\x2e\xc7\x30\x2f\x2b\x0c\xef\x2d\x8e\x49\x66\x01\xbc\xe2\x65\x84\x0f\x3c\x9e\xa3\x3c\x3d\x1c\xc4\x59\xe6\x74\xe6\x85\x64\x53\x00\xbd\x2f\x6b\x13\xe5\x92\x54\xdb\x38\x2b\xf4\xb1\xea\x3f\x10\xaf\xfd\xa6\x6f\x5e\x67\xf1\xd0\x95\x0b\xf5\x61\x81\x0c\xf1\x13\xde\x2f\x73\x10\x05\xf2\x5a\x97\x81\xca\xba\x59\xcd\x0b\xb1\xc9\xae\x53\x1c\x2c\x2b\x37\x94\xca\x74\x4a\x9e\x4d\x5f\x34\x41\xc4\x5d\x6f\xac\x36\xbd\x01\x42\xf2\xcf\xa2\x80\x18\xf8\x67\x34\x3b\x2b\x7d\x50\x42\x61\xa0\x58\x6c\x7d\xc1\x1c\xde\xd1\x28\x2f\xa5\x46\xd8\x3d\x65\x18\x18\xc6\x8f\xb2\x24\xd0\xc5\x40\x70\xd4\x6b\x7f\x67\x4a\xf7\x9a\xb6\xaa\x70\xcf\xde\xe1\x0e\xe1\x3b\x54\x32\xc5\xbd\x61\x52\x95\x28\xc0\x10\x48\xdf\x95\xb5\xad\xd7\x4d\x89\xaf\xa5\xb3\xad\x40\x4f\x45\xb2\x6c\xb9\x69\x98\xd5\xa5\xe3\x43\xee\x70\x5c\x0c\xe5\x47\x4d\x56\x2d\xa0\x3c\x42\x8a\x3c\xcc\x45\x02\xdf\x51\x5f\xf4\xaf\x74\x42\x5f\xf4\xaf\xac\xcd\x96\x0c\xed\xb8\xdb\xcd\x87\xa3\x38\x0b\xf4\x45\x64\x3d\x6f\x50\x06\xf4\x46\x83\x7c\xe5\x62\x3b\xcf\x1c\x99\xb4\xbd\x3b\x21\x8d\x92\x49\x70\x19\x3b\xd1\xc4\x67\x71\xaf\xbd\x66\x00\x64\x54\xd7\x6f\x91\x4e\xff\x5b\x84\x29\x18\xc6\xa9\x5b\x8e\xbb\x55\x5e\x00\x2d\x6d\xdc\x1e\xe2\xf9\xcc\xb2\x6a\x77\x09\xdf\xb3\x34\x9e\xb0\x37\x19\xf7\xbd\x9c\x8f\x9b\x08\x80\xcb\xe3\x0c\x5e\xfe\x6a\x26\x8d\xdd\xa7\x92\x44\x11\x3d\xa5\x49\xa0\xcd\x02\x3a\x8f\x98\xf9\x41\x83\x9c\xe8\x0b\xed\x6a\x10\x57\x52\x05\xe0\x8d\xae\xa2\x28\xc4\x47\x87\xac\x16\x8a\x97\x0b\x64\x5f\x7b\x43\xe2\x3a\x56\x99\x8a\xba\x9b\xd7\xc3\xc6\xef\xfa\xb5\x5d\xa6\xa7\xd3\x22\x30\xeb\x6d\x62\x90\xdc\x9e\x41\x6b\x7d\x45\xe4\x20\xe7\xa8\x1f\x78\x6e\x03\xd3\xad\x8e\xaf\x66\x77\x48\x11\x2e\x75\x2e\xd0\x1c\xfd\xb4\x27\x4c\x78\x08\x43\x56\xb8\x61\xbe\x12\xa7\xad\x80\xb4\x04\x82\xcb\xe2\x48\x18\xec\x64\xf9\x92\xd3\x01\x92\x61\x3f\xc9\x2d\xe7\xf6\x94\x87\xee\xcf\x91\xc3\x47\x5e\x62\x45\x20\xed\xd6\x8e\xa6\xbe\xa0\xc1\xc6\x72\x9a\x1f\x76\xba\x78\x70\x8a\xff\x09\x61\x9a\xfe\x24\x68\x8d\xc4\xe9\x21\x0f\x44\xb4\x90\x1d\xa0\x15\x57\xb8\xf4\xbe\x3d\xd3\x40\x14\xbc\xb8\x59\x00\xcb\xdf\x62\x67\x51\x6b\x26\x35\xc8\x7b\x8e\x0f\x15\x71\x5d\xe4\xcb\xbb\x23\xf3\xfe\x8c\x94\xb5\x3e\xa3\x41\xde\x57\xb3\xde\x1c\x0d\x45\xd6\x69\x7c\x35\xd7\x21\xae\x5a\xf8\x4a\xae\xd7\x93\x01\x58\xfd\x4b\xb8\xb7\x57\x26\x54\x1d\xdd\x9a\x04\x6c\xd0\x63\x9d\x00\x13\xb8\x42\x7f\xb4\xca\xdd\x1c\x4d\xe7\xbe\x27\x55\x81\x97\x7f\xf4\x6a\x11\x57\x9b\xc6\xf7\x85\x4b\x93\x15\x5d\x97\xa8\x62\x40\xb9\xd7\x6b\xff\x39\xd3\xf8\xf0\xaa\x2b\x0c\x85\x66\x1d\x31\x62\x38\x4f\x91\x61\x3e\xa0\xa1\x60\x99\x0b\x2f\xfa\xa5\xbd\x5a\x13\xdc\x25\x95\x9f\xbb\xf4\x2d\x96\x2b\xe4\x83\x20\x08\xdc\xa5\xae\xd4\x02\x04\xf0\x6c\x31\x3f\x16\x40\x46\x5d\x87\x1b\x87\xb5\xf0\x43\xe9\x51\xa9\x5e\x94\xa6\x90\xfa\x2f\xf2\x6e\xa6\x24\xb5\xf1\x70\xdb\xbd\x28\x16\x49\x59\x99\xac\x38\xf1\x84\x00\x19\xe8\x02\xdd\xbb\x93\x34\xd1\xbf\xe3\x65\x39\x61\x58\x68\x85\x87\x51\x03\xe9\x2c\x3e\x45\x09\x41\xe1\x46\x69\xdc\x75\x5b\xd9\x6d\x8b\xec\x00\xae\x13\x74\xfe\x24\xe9\xa6\x9e\x9f\xb0\x45\x0d\x52\x0f\x94\x42\x1f\xa3\x58\x31\x21\xaf\x59\x99\x8a\xbd\xed\x58\x1e\x6e\x9d\x1a\x9a\x19\x64\xc8\x79\x4f\x45\xa1\x8a\x58\xcd\xc7\xc5\xb6\x30\x9f\xb9\x2c\x99\x2d\x56\xe3\x26\xdc\x7c\x26\x4d\x68\xfa\x3b\x45\xb6\x8d\xc8\x37\xec\xae\xa6\xb9\x06\x5d\xaa\x6f\xa9\x29\xca\x37\x9c\x33\xc3\xf8\xd5\xdc\x34\x26\xbc\x7b\x5d\xfd\x6e\xfa\x22\x9c\xf4\xa3\xc4\xee\x35\x92\x80\x23\x11\x79\xa7\x1e\x21\xe4\xdc\x72\x5c\x0c\x21\x8e\x66\x7d\xa7\xa3\x12\xd9\xcc\x91\x75\x4a\x23\xc2\x15\x8f\x93\x27\xc7\x11\x56\xb9\xfb\x84\xd6\x2a\xbc\x04\xc9\x01\xec\x65\xb3\x3d\x91\xbb\xa5\x51\x27\xa2\x56\xdc\x3f\x9f\x10\x2c\x49\x39\x04\xc8\x95\xfe\x02\x39\x0e\x3a\x2b\x70\xa5\x22\xbf\xe5\x17\xb4\xe9\xf4\xc7\x24\x7e\x21\x7a\x8b\x5a\xc7\x1d\x72\x18\x01\x7b\xf8\x9a\x97\xe8\xdb\xd2\x09\xa3\xc4\x63\x53\x63\xa2\x20\x33\xf0\x29\xdd\xa7\x41\x9c\xf5\x92\x14\xce\x4e\xe8\x6d\xbc\x21\xbf\xa5\xd7\xd4\xcf\x1a\xb8\x5e\x1f\x99\x04\x4e\x39\x38\xbd\xb1\xe2\xb6\x59\x55\x85\xf8\x3f\xc8\x2b\x97\x0a\x3b\x0f\xa3\x23\x6c\x22\xdc\xc1\xcd\x92\xf2\xa0\xc1\x70\x73\x42\x76\xbd\x49\x3c\xac\x3f\x94\xb5\xea\xf1\x13\x97\xf1\x50\xf4\x85\x87\x2a\x97\x95\x2b\x92\x14\xdd\x57\x7c\xe9\x47\xd6\xc2\x0d\x78\x64\xc6\xa5\xc7\xba\x85\x85\x4b\xd4\xa9\x5f\x25\xe5\xf1\xf6\xa6\x2f\xef\xfb\x67\xea\xcd\xb9\x7e\x5c\xe4\xa4\x8f\xcf\x9c\x0d\xbb\x17\x05\xd3\x34\x4c\xba\xcc\x71\x38\x4b\x03\x89\x59\xc5\xa7\x5f\x6b\x8f\xb3\x72\x5c\x8e\x5c\x37\x10\xed\x3c\x73\xc9\x43\x75\x37\xd1\xed\x79\x87\x85\x11\x4f\xcd\xce\xc5\xf6\xaa\xfb\xa6\x00\x99\x5b\xde\xf4\x07\x45\x5c\x78\x2a\x3e\x1e\x0f\x62\xbd\x65\x3e\x26\xec\xdc\xe5\x63\xc2\xcc\x11\xb1\xab\x3d\x4c\x7a\xbd\xd4\x21\x15\x61\xd6\x1d\xa6\xcf\xe7\xa8\x31\xf1\x20\x0a\xd2\x59\xaf\x8a\x34\xa7\x67\xfd\xfe\xee\x84\x44\xb4\x7f\x97\x9a\xe8\x7d\x97\x55\xa9\x83\xcf\xcf\xa2\x89\xa2\xc1\x95\x43\xaf\x1b\x52\xb6\x97\xdb\x3d\xf7\x6a\x4c\xae\x22\x28\xf8\xf4\x7a\xba\x89\x38\x72\x55\x52\x25\x2b\x4e\xe0\x19\x5a\x21\x23\x7b\x02\x70\xe0\x5b\xf2\x05\xd0\x6a\xba\x36\x25\xeb\x12\xce\xa6\x7d\x7f\xe7\xef\x0a\xb7\x0f\xc5\x2d\xd2\x40\xd3\x48\x97\xef\x85\x0d\xaf\xe0\x5f\x9b\x22\x87\x58\xbb\xb5\xc3\xe7\x9c\x74\x48\xd6\x4f\x4b\xf0\x5a\x9f\x65\x2a\x8a\xb0\xa1\x70\x7e\xe6\x42\x49\xae\x5e\x80\x38\x8d\x70\x56\xa0\xbc\xfd\x88\xd4\x28\x32\x68\xdc\xb6\xfc\x14\x04\x13\x0d\xc4\x86\x4d\x6b\xc1\x08\x8f\x19\xb4\x7f\xbb\x1a\xb0\x05\x35\xfa\x00\x56\x64\x35\x68\xee\x96\xe3\x62\x94\x8e\x4b\x8b\xc4\x66\xd5\x21\x6f\x61\xe0\xbd\x06\x81\x5f\x97\xf5\xc7\xe9\x32\x5a\x30\x2f\x7b\xbf\x10\x89\x96\x66\x18\xc2\x0a\xb8\xd5\xca\x56\x04\x00\x0e\x72\x9a\x1f\x45\xd4\xbc\x7e\x8f\xf0\xc7\x8a\x62\x33\x3d\x2c\xf9\x44\x68\xa8\xdc\xc4\xf1\x64\x9a\x2f\x8c\x02\xcc\x74\xc8\x17\xb4\x68\xa7\x19\x8e\xe8\x6b\x83\xb5\x89\x45\x02\x43\x34\xc4\x98\xab\x4d\xea\x50\xf9\xe1\xc0\x8b\xc3\xfe\x03\x8c\x49\xaf\x9b\x5c\x48\x25\x54\x96\xcc\x4f\xf9\x6e\x14\xf8\x29\xdf\x6d\x72\x18\xee\xbd\x9a\xc4\x2d\x56\x49\x53\xf2\xb2\xbe\x20\x20\x4a\x3c\xae\x90\x26\xe1\xce\x7c\x22\x69\x92\xba\x56\x4f\xc2\x46\x3b\x4a\xc2\x5f\x47\x66\xfe\xe2\xde\x17\xf7\xb7\x53\x87\xce\x09\x62\xdb\x37\x88\x6b\xf3\x0d\xe2\xc2\xc4\xe3\x2a\xaf\x53\x6c\x0c\xbe\xbd\xcc\x02\x81\xcc\x9e\xf0\x7c\xde\xae\x13\xd1\x04\x79\x6e\x18\xa2\xa8\x3d\xb1\xbe\x68\x32\x3c\xaa\xe2\xac\x0e\x1a\x89\xb2\x3d\x94\x89\x47\xce\xe9\xc7\xe9\x84\x7b\x35\xce\xc6\x71\x01\xa7\x1d\xe0\x36\x15\xf8\xe8\x25\xa1\xbc\x53\xa4\x3a\x15\x9a\x3e\x54\x18\xde\x26\xc3\x91\x2b\x96\x45\xa0\xc3\x4f\xe8\xde\x93\xbf\xa7\xd7\x4d\x45\x43\x99\xa7\x49\x4f\x81\xc6\x4a\x9e\x9e\x22\x52\xd3\x88\x33\xce\x2a\x9f\x00\x79\xb3\xcf\x10\xf2\xaf\x35\x08\x47\xec\x6f\xf7\xf2\x61\x92\xc5\xbe\xa7\x69\xba\x71\xf2\x15\x4c\x51\x2e\x1c\xc5\x43\x57\xc5\xe9\x96\x0d\x83\xd8\xfd\x1a\x8e\x2f\x00\xfc\xaf\x2f\xc8\xb9\xec\xe6\x84\x4d\xff\xf1\x99\xcc\xa9\x3d\x1c\x28\xf1\xb8\x52\xe1\x23\xcc\x31\x7e\x10\x91\x08\xe6\x0f\x1a\xc0\x9d\x2f\xb7\x87\x71\x16\xf7\x37\x54\xa9\xad\xb5\xb0\x44\x5a\x9d\x10\xd4\x5c\x52\x0d\x5c\xb1\x25\x88\x10\x5d\x47\x4f\x08\x8b\xf6\x0f\xea\xe7\xf0\x70\x8d\x7c\xe3\x55\xc5\xcf\xfc\xdb\x5a\x5e\xb3\xeb\xdb\x33\xd1\xec\x2b\x82\x32\x3d\x2c\xf8\x33\x79\xb6\xa6\xed\x1a\xb8\xf6\xfc\xa0\xca\x71\xaf\xe7\x32\xb9\x8b\x26\xc3\x4c\xdc\xde\xcb\x34\x5e\xbd\x18\xcd\x36\x46\x4d\x63\x90\xd5\x94\x42\x2d\x3e\x74\x71\x1d\x34\xd4\x42\x02\x23\xd1\x77\x68\xee\x7c\x8e\x88\xac\x0a\x0a\xd0\x1f\x8a\x9e\x9e\x66\xcd\xee\xd9\xd3\xfe\x32\xab\xd6\x5e\x24\xd5\xda\x8b\xd3\xde\xaa\x43\xf7\x68\xbd\x2f\xac\x6f\x11\x60\x07\xd8\xae\x68\xc1\x5d\xc1\xe0\x0f\x81\x54\xe7\x9d\xfa\xa2\x43\x26\xea\x6a\x16\x8c\xa5\x07\xac\x04\xc6\x1b\x5b\x3a\xb4\x96\x37\xa9\x3f\x84\x22\xd7\xa2\x30\x70\x3f\xcf\x38\xee\x71\x96\xc0\x07\xfe\xe0\x8e\x75\x39\x90\xd6\xcf\x7b\x9e\x5c\x39\x5e\xca\x8b\x9e\xac\x7d\x39\x1f\x01\xb6\xb8\x4c\x5e\x64\x3f\xc2\x0e\x47\xe9\x77\x66\x66\x1e\xf0\xdc\x73\x7e\xf3\x50\x03\xf4\x38\x37\x40\x8f\x13\xe1\x69\x34\x2e\xca\x71\x82\xf5\xa1\x9d\x66\xb2\x9a\xfd\x64\xca\x2a\x7f\x38\x1a\x57\x28\x27\xac\xee\xd8\xb4\x46\xb6\xf7\xff\x0f\x63\xc9\x36\x61\xfa\xed\x1f\x2f\xf1\x38\xc9\x74\x5e\x56\xd5\xfa\x36\x74\x8e\xb1\x84\x80\x05\x43\x31\x7b\x5c\x4b\x2d\xfd\x63\x9d\x50\x43\x7e\x88\x84\x81\x10\x1b\x46\xd1\xbc\x10\x31\x09\xbd\x9b\x0f\x25\xad\x37\xde\xa8\xfc\x16\x76\x12\xb4\xe7\x4c\x97\xc3\x77\x02\xd4\xde\x34\x64\x9a\xaa\xdc\xad\x3e\xd1\xa8\x60\x70\x54\xdf\x69\x14\x83\xcc\xcb\x32\x01\x0b\x9c\x3d\xd8\x0c\x95\xc7\x2b\xf4\xd0\xa1\x42\xc0\x30\x38\x64\x3e\x94\xbc\x4b\xaf\x3d\xd7\x48\x30\xe9\x95\xeb\x56\xf3\x01\x52\x7e\x57\xea\x1d\x43\x2b\xca\x77\x37\xac\x64\x78\x74\x8f\x76\x9a\x34\xb2\xd1\x95\xd4\x68\x6c\x90\x11\xc6\x8f\xd0\xd2\xe8\x0e\xe2\xe1\x92\x2b\xb6\xb6\xbc\x5f\xe4\x6d\xe9\x0a\x82\x1f\x73\x93\xe9\x76\x77\x10\xb4\x10\x63\x4f\xc8\xa9\x83\xa2\x08\x63\x0b\xac\x8f\xb9\xb5\xd6\xce\x9d\x2c\x15\x10\xe0\xc5\xd9\x73\x22\xca\x07\x7c\xcf\x14\xa2\xf7\x13\xda\x6b\xa8\xaa\x6c\x88\xf4\x14\xb1\xbf\x8b\xc2\x3c\x97\x77\x69\x75\x77\x1b\x6f\xa2\x2f\x9a\x98\x6a\x65\x9a\x1f\x16\x67\xf6\x40\x5c\x84\x2c\xb3\x5e\x4f\x02\x65\x54\x4c\x7b\xe6\x49\x66\x00\xa8\x22\x2c\x38\x6d\x21\xa0\x59\x79\x81\x9a\xf8\x47\x28\x77\x8d\x93\x02\x1e\xb4\xd6\xaa\xbd\x46\x54\xb7\xf7\xf1\x59\x91\xa3\x9d\x6b\x22\x49\xba\xee\x20\xb7\x5e\xb2\xe2\x66\xa6\x30\x34\x34\x7a\x1c\xe4\xe3\xb4\xf7\x58\x50\xd7\xfd\xce\x84\x04\x01\xcf\x32\x69\x57\x51\xaf\x78\x20\x47\x36\x08\x03\x84\x99\xfa\x11\x52\x85\xf8\x0e\x77\xb7\x64\x53\x63\xbe\xfa\xc8\x5a\x50\x4e\x3b\xab\xbd\x29\x2f\xaa\xf8\x92\x4f\xd2\x6f\xcd\x3c\x87\x9d\xbb\x20\xe4\x96\x74\x5b\xe1\x7e\x9c\x23\x76\xec\xb9\x99\xfa\x68\xcf\x9e\x76\x91\x94\x87\x4a\xd9\xd7\x68\xe4\xa9\xc8\x0c\x96\xd9\x39\xc6\xb7\x6e\xe9\x10\x9f\x3a\x17\xa8\x24\xfa\xab\xe8\x3b\x1c\x23\x3a\xdd\x4d\xb2\xfd\x3b\x43\x8f\xae\xac\xe2\xbe\xdd\x7b\x2c\xa7\x23\xbc\xb6\x8e\x44\xcf\x6e\xf8\x80\x5f\xfd\xad\xf6\x73\x4a\x6f\xc3\x1d\x9c\xeb\xc8\xf8\x14\x8d\xa5\x9b\x88\x92\x86\xbf\xe4\x6d\x90\xa6\xab\x5f\x0c\x2c\xbe\xf5\x09\x09\xe4\x7f\x7f\x42\x5c\x4f\x68\x69\xa0\x17\xf9\x30\x0a\x42\x6e\x47\x05\x6e\x61\xdd\x42\x39\xca\x10\xde\xe6\xd6\x08\xda\xf4\x0d\x46\x4d\x6d\xea\x90\x47\xc1\x5d\xf8\xe1\x58\x97\x0a\x8f\x11\xbb\xe1\x2a\x8e\x49\x8c\xee\xaf\x49\x18\xf0\xfe\x55\x5e\x25\x1a\x5c\x0b\xc9\xa7\xf6\x7d\x69\x8d\x30\x84\x97\xd9\x2a\xe8\x48\x14\x88\x9c\x0f\x81\xaa\xb5\x99\xc3\xdc\xde\x5d\x07\xd6\x2f\x03\xb5\x8b\xf3\xff\x67\x54\xa6\xae\x1e\x52\x8a\x3b\x1a\x95\x47\x49\x80\xfc\x28\xcd\x08\x86\xf1\x6b\x49\x37\x2e\xdc\x16\x7c\x7e\x44\xab\xe3\x11\xb5\x22\xde\x26\x67\x38\xad\x3c\x51\x17\x5c\x8d\xc2\x54\x56\xbb\x26\xfa\xeb\xd4\xf7\x59\x1a\xa7\x4b\xa8\xe6\x4d\x12\xb1\xe5\x2d\x63\x1e\x4c\xbe\x40\x7e\x4b\xd0\x04\x4c\xf2\x8c\xb1\xe6\xd8\xf8\x7a\x3d\x83\xf8\xaa\xeb\x10\x37\x2e\xf2\x5e\x9e\xa6\x71\x21\x4b\x5c\x6d\x88\x3a\xe1\xa3\x9d\xe7\x49\xc3\x8d\x99\x22\xe2\xe0\x8e\xc5\xfa\xb0\x1e\x26\x95\xcf\x9f\x4d\x3d\xb6\xe5\xf5\x17\xfe\xc3\xe4\xe7\x03\x95\xda\x15\xc5\xea\x30\xce\x7a\x60\x15\x87\x21\x17\x38\x90\x66\x8d\x4a\x26\x37\x67\x27\x1b\x17\xfd\xae\x03\xed\xe5\xa1\xec\x61\x93\xf8\x23\x78\xe5\x67\xa1\xa7\xfc\xf5\xb1\xf8\x00\xce\x53\x4d\x74\x69\xca\xf5\xfe\x16\x57\x48\x53\x44\xdf\x5b\x93\x50\xd9\x0e\xe2\x34\x9d\x0b\xc7\xc9\x1f\x52\x05\xfa\x97\x74\xae\x7f\x97\x7e\x25\x4e\xd5\xd5\x44\xf3\x90\x88\x5a\x1b\xff\x88\xf2\x9c\xc2\x55\x71\x92\xba\x62\x2e\xa0\xa1\x35\x13\xc6\x80\xf7\x24\xdb\xf1\xdd\xf1\x4c\x1d\x71\xd2\x10\xea\x31\x89\xd2\x1e\x63\x10\xc4\x69\xd2\x14\x6a\x02\x22\xee\x6d\x1f\x8e\xb3\x00\x14\x30\x98\x6a\xfd\x4b\x86\x65\xe5\xec\x61\x58\x3e\xff\x48\x50\x0b\x39\x22\xd1\x18\xa7\xd3\xd6\x4e\xbd\x3f\xa9\x51\xb0\x97\x9d\x5e\xd9\x7f\x86\xe8\x72\x75\xc0\xc7\x61\x0e\xc6\xc7\x94\x47\x15\x40\x58\xf3\x9d\x29\x05\xa9\xcc\x95\x79\x15\xe3\xc3\x22\x30\x41\xa9\x59\xaf\x9b\xc8\x56\x4b\xf5\x9a\xc4\x9d\x45\x4f\xed\x1a\x20\xb3\x5e\xff\x3e\xb8\x98\xd1\xc6\x1f\x17\xee\x89\xd6\xaf\xbf\xe4\x8d\x24\x5a\x3b\x77\xad\x43\x39\x02\xb1\xee\x5a\x44\x2c\xda\x5f\x00\x2b\x14\xc5\x09\xf0\x7e\x98\xb9\xfc\xb5\x8e\x3c\x37\xe4\x25\x0a\x56\xc0\x5e\x00\xec\x1b\x8b\x6c\xae\x43\x4d\x1b\xa0\x33\x0d\x9a\x15\x64\xd5\x37\x77\xc8\x96\xfc\x3d\x3c\x63\xfc\xc1\x2d\xd3\xc3\x1c\x62\x17\x56\x71\x25\x4e\x6d\xf3\x41\xb6\x1d\xe9\x9a\xd2\x61\x88\xa7\xfb\x31\x96\x26\x50\x0d\xc7\x67\x0e\xc0\xaf\xed\x6a\x2f\xb9\x7e\x92\xb5\xc8\x64\x28\x9a\xd2\x88\x6a\xb0\x3b\x1d\x15\xae\x2c\xc7\x85\x6b\xe9\xcd\x5b\x5c\x5c\xbf\x4c\x38\xcd\xc1\xb8\x57\x2a\xf6\xc1\x4e\x43\x82\x76\xdc\xf4\xb9\xd0\x72\x92\xa5\x71\xd6\x13\x1d\x10\x83\xbf\xc8\x0f\x5a\xb6\x86\xad\x8c\x02\xf2\x14\x89\x55\x3d\x68\x24\x50\xc5\x3d\xe5\x5c\xa3\x6f\xa0\x22\xb7\xd6\x7a\xc5\x7b\x19\x48\xc6\x42\x48\x9a\x8f\xca\xc4\x73\x50\x90\x25\xcc\xad\x85\xec\x61\x8e\xaa\xeb\x6e\x5c\xa4\xb9\x36\x60\x3c\x66\xaf\xfe\x13\x56\xc8\x6e\x0f\x4d\xd0\x39\xc2\xa3\x5d\xd0\xbf\x8d\x7c\x1b\x6a\xd2\x18\xa0\xdc\x6c\xb0\x05\xdd\xbb\xbf\x9d\xc6\x87\x5b\x01\xdd\xaf\x61\xcb\xa8\x41\x33\xc6\x06\xbb\xda\x85\x5b\xc9\xd3\xe0\x52\x80\x6e\xc2\x75\x12\xed\x7a\x38\x45\x16\x08\xdf\xa8\x18\x0f\xeb\x4c\x37\xb0\x07\x60\xd6\xa1\xd7\x33\x7b\xee\x95\x57\xda\xf5\xa2\xd3\x66\x92\xd5\xb2\x61\x16\x76\x7e\x7a\x84\x97\x17\x55\xf9\x48\x00\x17\xbd\x3d\x09\xdd\x80\x16\xca\x61\x4c\xbd\xe6\x60\x3e\xac\x4e\x63\x93\xc0\x87\x78\x9f\x30\x27\x5a\x1a\x23\x4f\x51\x0f\x5f\xfc\xc6\xbd\x88\xe0\xfa\x37\x1a\x80\xb4\x85\x1b\xa5\x4e\x2b\x60\x6c\x2c\x30\xd6\xcc\x98\xbe\xfe\x23\x40\x28\xbd\x43\x5f\xa0\x3e\xbf\xea\x85\x11\x26\x72\xf0\xfb\xd7\x6b\x2f\x97\x86\x81\x02\x72\x09\xe4\xaf\xa7\x49\xf9\x79\x56\x2e\x47\xfc\x0c\x44\xc3\xd6\x56\x9d\x21\xef\x5b\x5e\x53\x8c\xbb\x1d\x3d\xd7\x8d\x7b\xae\x9c\x0f\x79\xb3\x56\x69\xb8\x47\x37\x22\xc6\xce\x92\x31\xd3\x3f\x99\x7c\x61\xba\xd9\x71\x70\xc7\x0b\xf5\x7f\xd2\x9c\x47\x05\xf6\x0e\x0b\x87\x7e\x2c\x8f\xde\x86\x16\xe4\x7a\x7f\x9a\xc0\xf6\x17\x67\x66\x34\x12\x0d\xf2\xd2\x75\xc7\xe1\xb0\x41\xe4\xff\x23\xb9\xc9\x7a\xdd\x04\x45\x5d\x71\x65\xe9\x3b\xb9\x5e\x63\x7c\x31\x18\xd6\x07\x19\x4d\x71\x13\x2e\x08\x8a\x76\x81\xbc\xc8\x2f\xf8\x26\xe9\x38\x4b\xf3\x40\xb1\xc7\xc2\x39\xc1\x36\x07\x27\xa6\x9a\x3a\x59\x5e\xce\x07\xb2\xd7\x75\xea\xef\x62\xb8\xa1\xd7\xc4\xae\xb9\x4e\x18\xa9\xd2\x65\x49\x5e\x6c\x23\xb4\xd6\x45\xe2\x4a\xfd\xbf\x11\xe9\x69\xdc\xe0\xbc\xf0\x0d\x64\xbf\xde\x59\xda\x6f\xa5\xd3\xe8\x84\xf9\x59\x76\x10\xab\xbd\xeb\xe3\x55\x96\x74\x07\x79\x1a\xeb\x4d\xb3\x69\x2b\x45\xa1\xd6\x5a\xa8\x51\xfa\xae\x18\xc6\x59\xb9\x10\x40\x4d\x17\xb8\x5e\xc0\x84\x5b\xff\x81\xac\xc9\x95\xc7\x85\x09\xd1\xbd\x99\x05\xbc\x6f\x47\x3b\x1e\x8d\xf2\x24\xf3\x0b\x18\x75\xd3\x7d\x02\x43\xdc\x9f\xc9\x23\x9f\x7b\xae\x3d\x72\x85\xa8\x9c\x15\x1a\x43\x6d\x79\xc9\x57\xd1\x17\x5e\x83\xa2\x5b\xe7\xac\x95\x2b\xe2\x34\x79\x1d\x34\x33\x4b\xb2\x31\x1a\xc5\x47\x7d\x48\x1c\xad\x87\x08\xc6\xaa\x16\xd7\x04\x51\x03\xbf\xc7\x7a\xe8\x28\x33\xbe\x83\xc3\x4e\x5f\xd0\x38\x6c\x39\x2f\x5c\x37\x2e\x2b\xff\x71\xbd\x5a\x58\xe8\x00\x79\x5a\x32\xd4\x9d\xfc\xc7\xba\xc4\xae\x3c\xf0\xcd\xd6\x7f\x88\xa6\x00\xf4\xa1\x8d\x17\x57\xd0\x5b\x66\x70\x8a\xd2\x63\xd4\x7c\x45\x0f\x11\x53\xd8\x7f\xca\x93\xb3\x8b\x9e\xab\x5c\x9a\x62\xc4\x67\xea\x9b\xf2\x9b\x26\xbf\xb9\xf1\x09\x1e\x78\x11\xaa\x33\x75\x84\x96\x73\x1f\xf0\xd9\x53\xc4\xf7\x65\x24\xa8\xe0\xe9\x0a\x57\xb6\x02\xf9\xe3\x5d\x22\xdc\xbd\x4b\xe5\x4c\x3f\x8f\x55\x06\x14\xcb\xfb\x64\x14\x8a\x8e\x93\xc4\x78\x4a\xb2\xae\xcb\x7a\x89\x78\x59\xfb\xda\x47\xf3\x0e\xf3\x1c\x6a\xf0\x0d\xa8\x8a\x71\xc9\xd2\xdf\x97\xc8\x82\xf0\xd2\xcc\x92\x43\xa2\xb2\x12\x27\x41\xbb\x0e\x9f\xe4\x36\x19\xdc\x3f\x9c\x42\x34\x35\xa9\x2b\x40\x76\xda\x62\x9b\x07\x77\x78\x91\xe0\x0b\x8d\x5a\x84\x49\x56\x9f\xc9\xa6\x20\xd7\x24\xd4\xd7\x94\xb3\x27\x59\x09\xb9\xa1\x7a\xf9\x98\xfb\x98\x2c\x19\xb3\x25\x6b\xb2\xf8\x1e\xb8\x74\x34\x17\x2a\x67\x96\xf5\xbc\x41\xb6\x37\xcd\x72\xf9\xab\xf5\x12\x07\x9c\x08\x49\xc9\x6d\x69\x02\xa8\xb3\x0f\xca\x67\x03\x0a\x72\x7f\x21\x4f\x87\xf3\x61\x08\x76\x9e\x41\x2d\xe7\xb1\xfc\x31\x92\xff\x2e\xf6\xb7\xbe\x88\x1e\x25\xea\xe0\x5f\x25\xbd\x14\x90\x38\xb4\x4e\xc7\xc4\x05\x79\xcc\x71\x01\xff\xaa\x90\x91\xc0\x47\x94\x6d\xcf\xed\x43\x8e\x21\x0b\x62\x78\xeb\xed\x8b\x7e\xf3\x37\x14\x12\xa6\x48\x19\xd3\x8e\x62\x43\xd3\x88\x94\x20\x4f\x8b\x77\x2e\xea\x86\x1f\x4e\xa6\x9c\x9c\xeb\xa7\x87\x5f\x3f\x8b\x0e\x00\xfa\xab\xdf\x9e\x90\xf5\xee\x39\xa2\x8a\x6f\xef\x4c\xb9\xc0\xed\xdb\xb1\x3f\x40\x02\xeb\x23\xc0\xb3\x51\xf7\xbe\x68\xc3\xdb\x47\xd7\x5a\xcf\x3d\xe7\xe1\xb3\x92\x17\xa1\xc6\x7b\x6a\x2d\xcc\x9a\xe6\xd6\x02\x58\xe7\x04\xce\x7f\xe4\x35\xe0\x64\x21\x44\x9c\xc0\xe0\x1e\xf3\xba\x39\x31\xfb\xb5\xe1\x05\x22\x09\xda\x34\xeb\x4d\x23\xd6\x2a\xaf\xea\x7d\x2c\x5f\x0b\x5b\xe6\x26\xf6\xa6\xbe\xf8\x5c\x6e\xd9\xd2\x78\xd5\xef\x35\x8f\x2e\x5d\x5c\xf4\x32\x8d\x81\x16\x7a\x7c\x6a\x31\x95\x55\xbc\x40\xf2\xbd\xa7\x09\x8f\x63\x1f\xd7\x46\x6e\x72\x4f\xfc\x7e\xf2\x82\x4d\x77\x49\x0b\xa8\x3b\x70\x59\x92\xa6\xda\xe0\xc1\xd9\xfc\x6d\xe2\x5e\x7e\x7b\xf2\x38\x09\x98\x64\x6e\x5b\xc0\x28\xdc\x9a\x84\x6e\xd4\x26\xd1\xb9\x31\x3f\xfe\x80\xdb\xb9\x39\x09\x80\x93\xdb\x28\x39\x71\xea\x9d\xc6\x2d\x47\xfa\x02\xeb\x10\x34\xc6\x1e\x52\x4f\xf5\x50\xd2\xeb\xb9\x62\x7b\xfd\xd6\x2a\xe2\x24\xfb\x0d\x77\xe5\xb6\x7c\x71\xe4\x1d\x8f\x41\x5b\x06\x4b\x09\x62\x07\x88\xcd\x57\x88\xd5\xa9\x76\xb4\x5e\xea\xa0\x5e\xd4\xfa\x53\x13\x0a\xc3\x58\xa1\xfa\x56\xd1\xb3\x34\x86\xc9\x47\xae\x88\x2b\x8f\x6b\xc4\x3e\x5b\x93\x6f\xa8\xd7\x33\xae\x89\x7b\xf6\x08\xed\x37\x4d\x5d\xb7\x1a\xc7\xe9\x5c\x68\x83\xfc\x28\x6a\x6d\x74\xdd\xb0\x36\x87\x57\x96\x49\xf3\x22\x96\x5f\xf1\x6c\xc1\x69\x07\xc4\xfd\xeb\xb3\xd2\x55\x7b\xf6\xa8\xe3\x67\x60\x4a\x1e\xa5\x5c\xeb\x68\x93\x51\x44\x5d\xa9\x08\x02\xff\xe0\x8e\x30\x42\xf3\xde\x12\x97\x18\xe5\x13\xaf\xac\xac\xb6\x88\xc4\x0f\x8a\xa0\x79\x02\x3f\xc9\xcd\xdb\xfa\x2d\x05\x1d\xe3\x89\x31\x8b\xd3\x9c\x51\x63\x96\xd6\x81\xca\x28\xa7\x4d\xda\xe1\x49\xb7\x4a\x00\x80\x37\x31\x88\x80\xc2\x3e\x4e\x99\x6f\x16\x8f\xd4\xcc\xdc\x78\xe9\x6a\x26\xa4\x2f\xa2\x9f\xa3\x8a\x25\xed\x9a\xea\x3a\x92\x86\xa3\x6c\x9c\x7d\xd4\x27\x91\xd5\xa0\xc8\x83\x99\x28\x1a\x21\x0f\x10\x47\x58\x13\xc6\xb4\xe1\xc3\xb1\xdd\x73\xcb\x49\x96\x54\x2e\x5d\x85\xe4\x25\xfa\xa5\x17\xb0\x07\xf4\x45\x03\xca\x63\xb1\x5d\xc5\xd9\x21\x7d\x7c\x6a\x32\x17\xb1\xe1\x5c\xd0\xab\x00\x4c\x34\xc9\x33\x24\x42\x28\x47\x3e\x92\x3b\x6b\x70\x9c\xd0\x56\x58\x6f\x92\x4d\xae\x17\xa6\x3c\x74\x1d\xb8\x45\x61\xe3\x5e\x64\xbb\xc2\x55\xf4\x0d\xcd\xa5\x1d\xfa\x1b\xe8\x53\xfd\x08\xf7\x42\xff\x41\xba\x3e\xfa\x0f\x5e\x38\xa5\x88\xb3\x6e\x5e\x60\xdc\xd3\x24\xa6\xfd\x45\xff\x87\xf2\x51\x9d\x66\xc9\x94\xd6\x95\x0b\xf2\x17\x4d\x13\x95\x3b\x95\x0a\x10\xd6\x17\x11\xc9\xd2\x61\x58\x8e\xd2\xef\x16\xf1\x41\x7a\xae\x2b\xe6\x6c\x62\x28\x6d\x02\x5f\x21\xd8\xaa\x7e\x82\x59\x0e\x4a\xd8\xf4\xe6\x60\xe4\x6a\xd9\x0a\xff\x3f\x22\x7d\x0d\xdd\xbe\x98\xbe\x7f\xd8\x24\xd7\x5c\xc4\x85\x53\xd0\x06\x1e\x3d\x72\x0d\xbd\x9e\xfc\x4a\x13\xa4\xbc\x1c\x8f\x5c\x31\xad\xb0\x62\x80\x6b\x02\x5f\x37\xf1\xeb\x96\x93\xd7\xa6\x39\x69\xa7\x88\x93\x76\x8a\xed\x1d\x5c\x51\x24\x29\x00\x1c\xf8\xd7\xcf\x26\x41\x6d\xe8\xf2\x84\x94\x02\x7f\x86\x2f\xac\x2f\xf0\x85\xf5\x57\xe4\xcd\xf5\x57\xa2\xa7\xf9\x64\x19\x26\x5d\xc9\x71\x77\x1d\xd0\x16\xd1\x29\x1c\x49\xfa\xc2\x03\x2e\x07\x79\x9a\xf4\xe2\x55\xa5\x2f\xa2\x17\xf7\x2e\x49\x42\x6c\x46\x6b\x11\x49\xc7\x77\xa3\x40\x6e\x3f\x45\x53\xce\x6d\x33\x56\xde\xbb\x17\xe1\x3b\xd6\x9a\x32\x48\xa3\x6e\x91\xb7\x51\x5a\xca\x87\x4b\x73\x81\xe6\x81\xc9\x82\xe2\x3e\xe4\x34\xc1\x3a\xe1\x00\x67\x06\xa5\x81\x61\x8d\x64\xd0\x1b\x4d\xef\x5e\xf4\xe2\x8f\xb3\xdb\xfc\x85\x76\x9c\x78\x0d\x6b\x8c\xef\xfe\xa1\xfc\x51\xbd\xa6\x53\x37\x53\x8e\x80\x21\xb8\xfe\x90\x14\x86\xff\x90\x88\x98\x71\xda\xcd\x07\x79\x4a\x96\xc5\xa7\xe4\x03\xe9\xf5\x84\x85\x28\x04\x27\x9a\x17\xa5\x64\xa5\x1e\xe9\x40\x4e\xa3\x84\x6b\x53\xab\x51\xfd\x29\xc2\xd4\x8e\x8a\xbc\xeb\x4a\x45\xec\x99\x56\xd8\x55\xe2\xa9\x5e\xa5\x1d\xb8\x94\x17\x45\x7e\xd8\xdc\xc1\x9b\x64\xdd\x69\x66\x9b\xc5\x69\x0e\x7d\x07\x34\x8d\x55\xff\x10\x19\xe8\x3d\x8d\x05\xfa\x0a\x9f\x4e\x7f\x6e\xca\x2e\x22\x41\x5c\x44\x76\xfe\x38\x4d\x54\xb6\xae\x85\xb6\xf3\xa9\xa6\x44\x3f\x4e\x54\x23\xce\xcb\x0c\xfd\x64\x12\x96\xcd\x4f\x70\xe6\xda\x88\x5a\x10\x59\x60\xb0\x4d\x97\x22\xf5\x1f\xb7\x52\x64\x16\x6a\xd5\xce\x5c\x3f\xaf\x92\x78\xe3\xa8\x08\x27\x96\xcd\x8d\x9e\x22\xa8\x15\x3c\x4f\xb7\x84\x74\xe3\x2a\x76\x13\xbe\xd4\x5d\x4a\xf0\xb0\x45\x40\x37\x38\x31\x21\x22\x94\xba\x37\x11\x83\xd1\x6e\xf9\x8a\x2b\xe2\xbe\xeb\xcd\x07\x79\x8a\x37\x38\x5d\x82\xd6\x95\xfe\x43\x44\x92\x51\x67\x82\x38\xab\x4b\x5d\xbf\x88\x47\x83\x16\xfb\x26\x2b\x45\x4f\x5f\xcc\x94\x7f\x07\x5e\x6c\x97\x71\xb7\x48\x96\x93\x2e\x50\x33\x68\x34\x9e\x8e\x02\xb1\xe2\x74\x43\xf5\xb7\xbf\x3d\x4a\xaa\xee\xc0\xda\x13\x68\x6a\x20\x25\xb2\x17\x3e\xb8\x8c\x52\xf1\xb5\x9c\x27\xf9\xb7\x23\xb4\xd5\xee\xcb\x93\x05\x66\xf7\x41\x44\x04\x81\x63\x5e\xf0\xa0\x1b\x8f\xe6\xeb\x1c\x05\xfd\xd8\x9f\xe0\xcf\xa0\x20\x51\xa5\x7d\xef\xed\xe5\x87\xf4\xeb\x33\x13\xf7\xfa\xab\x8e\x5c\x2c\xbd\xb9\x83\x3b\x42\x82\x52\xff\x45\x4b\x50\x66\xb5\xff\xe2\x51\x5c\x54\x43\x91\xf4\x58\xb4\xd6\xe5\x05\xca\xb9\xd4\x1e\x16\xd8\x86\x37\x67\x4e\x83\xdd\x8b\xed\xe5\x78\x9c\x2a\xd1\x94\x4f\x5f\xd4\x50\xea\xb0\x66\xc0\xb1\x8d\xbf\xfe\xd7\xdb\xf1\xb8\x1a\xe4\xe8\x26\x22\x35\xba\xc7\x9d\x96\x7b\x53\xe3\xbb\x7e\x92\x67\x31\x02\x10\x6e\x21\x50\xb4\x7a\x5d\xa7\xd2\xd6\xd2\xe8\xb9\x3c\xcd\xfb\x70\xf3\xdb\x6d\x78\x1d\xb5\xaa\x65\xc9\x7a\xc4\xae\x4f\x85\xb7\xe2\xed\x7e\x02\x6f\xf9\x04\x4d\x9f\xc7\x85\x40\xbe\x57\xd9\xc9\xfa\x16\x3b\x59\xdf\x22\x29\xc6\x6e\x9e\xf5\xd3\x7c\x08\xc2\xa4\x6c\x22\xe5\xe6\x48\x44\x32\x9e\x4e\xc3\x34\xa7\x70\xdd\xbc\xe8\xc1\x97\x7a\xd1\x9f\xf8\xf5\x47\x45\xf2\x7e\x73\xfa\x3b\x3c\xe3\xff\xe2\x72\x92\xc5\x59\x37\x71\x85\x9b\xab\xbf\x0c\x16\x09\x48\xd0\x28\x35\xfe\x1d\xcb\xad\xbd\x4b\x14\x89\x61\x7c\xc8\x95\x8f\xc9\xea\x35\x43\x08\x02\x2a\x9f\x9c\x08\xcc\xc3\xf4\x9c\x02\x9a\xfc\x5b\xa8\x9b\x51\xe0\x5c\x9a\x3a\x77\x27\x81\xa4\x86\x2a\x18\x3f\x34\x27\xd3\x4b\xb5\x63\x93\xf6\x8b\xb2\xae\xf0\xc9\xb0\x5d\x6e\xcb\xf0\xd2\xd6\x5e\x08\x4f\x65\xd7\x65\x71\x91\xe4\xb4\x52\x30\x70\xd7\x6b\x42\x0d\x25\xd9\xab\xe3\x22\x31\x64\x87\x2e\x3d\xb9\xf1\xb6\x0c\x43\x14\xff\x3b\x2f\x7c\x75\xa1\xf5\xd2\x5e\x8d\xef\x17\xc9\xd8\xe6\x56\xc0\x1f\xfe\xa3\x2f\x90\xd9\xf9\xbb\x1c\x70\x66\xbd\x88\x84\xec\x59\x8d\x0b\x90\x4e\x50\x42\x03\xcd\x89\x2d\x04\x21\x10\x0c\x2e\xcf\x37\xf4\xb8\x4c\x22\xd3\xa2\x36\x22\xf1\x6d\x22\xcc\xde\xa6\x67\xb7\x9c\x26\xae\x68\x91\xb4\x86\x8a\xea\xe9\x0b\x12\xbd\xe8\xc7\x59\x7f\x69\x8c\x16\x6a\x30\x71\x82\xfa\x9c\x5e\xcf\x7c\x9a\xaf\xb4\x87\xae\x97\x54\x81\x3d\x8d\x1f\xfc\x90\x7e\xe9\xc3\x26\x88\x77\x1a\x17\xfa\xe9\x51\x98\x1f\xa1\x22\xfd\x08\x62\x10\x22\x67\x9c\xba\x3c\xab\x6c\xab\xa6\xab\x50\x30\xb3\xa6\x84\x2c\x49\x60\x07\x6f\x4f\x41\xed\x42\x41\xf4\x6f\x9b\x66\x19\x22\x3f\x6c\xf7\xcf\x2a\x47\xd9\xd5\x56\x52\x36\xb2\x56\xab\x05\x9a\x88\x9f\x94\xac\x0c\xd9\xe8\x11\xf6\x92\x7d\x07\x5d\x38\x53\xa5\x0c\xac\xa3\x39\xd2\x29\x3e\x1c\x67\x55\x29\x51\x58\xd7\x15\x27\x11\xb3\x51\x70\xdf\x8e\x76\xaf\x10\xdc\xa8\x1f\xb8\x9c\xa5\x6c\xe9\xec\xcc\xe9\xee\xa5\xc8\xf2\x5e\x7c\xa8\x55\xef\x77\xe4\x01\xdf\xc3\xd3\xd7\x17\x51\x20\x41\x66\xbd\x0d\xe8\x03\xec\x64\xbd\x26\x4a\x6b\x5f\x0c\xa1\x4a\x1e\xa1\xfd\x54\x76\xa4\x5e\x47\x8f\x05\x6d\xb0\x38\x6b\x31\x92\xe8\x22\xf7\xfc\xa7\x11\xbb\x55\x0c\xf8\xb1\xd9\x3e\x4b\xe4\xb0\x27\x13\x8c\x22\xce\x33\x54\xfb\x7b\x93\xa0\x95\xf7\xb1\x2c\x7f\x3c\x99\x4d\x4d\xf0\xc7\xfd\xed\x7e\x3c\xf4\xe6\x06\x3a\xa4\x66\xd3\xb9\x53\x93\x2f\x90\xfe\x55\x9a\xf4\x07\x95\x33\xb6\x83\x09\xaf\x7d\x8a\xb8\xa7\x2f\x68\xa8\x58\x0e\x9c\xc2\xbe\xbc\x5c\x5b\x7d\x7b\x0c\xcf\x10\xea\xbc\xf3\x4d\x16\x7f\x65\xbc\xb2\x92\x78\x3c\xa2\x79\x83\x05\x28\xcb\xf1\x99\x5f\xda\xb3\x47\xce\x01\x01\x74\xb6\x82\xa2\x05\x61\x18\xff\x92\x86\x23\x49\x56\x25\x75\x9e\x27\x0b\xc8\x03\xdd\xbe\x45\xf0\x92\x6f\x91\x99\x16\xe4\xf0\x57\xb7\x05\x3c\xc7\x8d\xa8\x0e\x80\x88\x67\xf7\xa5\x04\x35\xcb\x1a\x62\x97\x5d\xc7\x6e\x54\x14\xa1\xc4\x30\x20\x9d\xbe\x4f\x89\xab\xa2\x0b\xf5\xad\x66\x12\x94\xaf\xb4\xcb\x41\x32\x0a\x2c\x6f\xdc\xb3\x9b\x74\xff\x66\x05\x33\x76\x2f\xb6\x5f\x77\x05\xa2\xbe\x6f\x52\x79\xdf\xbc\x8b\x7e\x89\x17\x6e\xe4\x62\xd3\x9e\x57\xad\xb0\x28\x38\x95\xeb\x04\x0f\x7f\xe5\xf7\x7c\x03\x2c\xef\x82\xe9\xb7\x53\x63\x0e\x94\x1a\xbc\xab\x7e\x40\xcf\xfe\xeb\xc9\x33\xa4\x89\xe7\xca\x6e\x91\x2c\xb9\x9e\x04\x52\x65\x56\x46\xe4\x6c\x31\x0b\x0c\xd8\xbd\x68\xe5\x93\xe2\x21\x51\xb9\x61\x24\xa3\xd7\x93\x5f\x20\xfa\x57\x1d\xc1\x8a\xca\x15\x45\x5e\x24\xe5\x90\xac\xf0\xd4\x60\x52\x5f\xd0\x83\x1d\xd6\x7f\x20\x1d\x52\x4d\xa1\xf8\x5f\x7b\x66\x4f\x71\x61\xb5\x92\x1f\x52\xdf\x0c\x1d\x69\x45\xe1\x5c\x3d\xd1\xc8\x7d\x10\x75\xc1\xa4\x4e\xd5\x82\x10\x2d\x3e\x8b\xe9\x60\x6e\x7c\x76\x07\x5e\x6c\x83\xdb\x77\xd0\x74\xc1\x2e\x23\x67\xd0\x17\x54\x5b\xa6\x39\x54\xab\x39\xca\xcb\x66\x34\xa4\x75\x03\x5d\x29\x4d\xaa\x2a\x05\x92\x00\x6b\xf4\xbb\xe8\xd4\xf8\x61\xee\x3e\xf3\x94\x3c\x33\x13\xf0\x77\xee\x6c\x57\xf9\x48\xa0\xc9\x66\xf9\x26\xcf\x8f\x73\x43\x44\xeb\xfb\x72\x63\xd0\x19\x78\x67\x0a\xa6\xb5\x5a\x56\x5b\x83\x16\xca\x03\x8c\x86\xbc\xd4\x9a\x97\x04\x50\xc7\x2e\x83\x1b\x92\xd4\xdb\x9f\xc9\x47\xf4\x80\x24\xdf\x4a\xbb\xdb\x58\x90\xc4\x59\xdf\x79\xcb\x00\x73\x22\x99\x92\x8d\x24\x85\xe4\x71\x2f\xa9\x50\xc9\x99\x9d\x02\x5a\x1f\x96\xa0\xcf\x05\x27\xd9\x53\x84\x4d\xd9\xd4\xa1\x07\x7a\x45\xf6\x8f\x1a\xa1\x7e\xee\x11\xb4\x14\x17\xa6\xb6\x61\xe4\xbb\x7a\x57\x18\x29\x6f\xe3\x4a\xf2\xc2\x77\x71\xaa\xd2\xdc\x5e\xaf\x3e\x68\x20\x7c\x12\x3d\x1b\x10\xda\xa5\x2b\x56\x24\xb8\x95\x0b\x44\x26\x50\xae\xf6\x83\xff\xe9\x0b\x1d\x9a\xbe\xbf\x27\x77\x11\xb7\x5a\x2b\x1f\x7c\xb1\xd9\x3c\x6d\x71\x71\x6f\x3b\x5d\xcd\xe0\x95\xeb\x55\xa6\x71\x43\xed\x70\x0f\xb3\xd4\xe5\x38\x85\x3d\xde\xa2\xf7\xf8\x24\xbb\xec\x73\xbe\x46\x2d\x5c\x99\xa4\x89\x54\x53\x1e\xa7\xb1\xbd\x13\xba\xe3\x2a\xb1\x64\x68\xcf\x26\x1b\x0d\x37\x1e\x0d\xf2\x22\x89\xe7\xa8\x6f\x4a\x62\x0a\x7f\x89\x3d\x07\xc8\xf1\xc9\x26\xcc\x92\x90\x83\xe6\x5b\xfb\xf6\x7a\xe3\xa2\xfa\x81\x20\x95\x51\x94\x09\x96\xc1\x35\x2c\x59\x75\x9c\x6b\x3a\x85\xba\x71\x2f\x49\xd3\xb8\x2b\xe1\x17\xab\xe2\x1e\xef\xf9\x7b\x4d\xd9\x5f\xe1\xe2\x82\xb4\x76\x4e\x91\xd6\x0e\x37\x89\x20\x20\x18\x67\x5d\x25\x32\x92\x8a\xce\x0b\x53\xe4\x18\x2b\xef\x02\x5b\xe1\xfa\x84\xbd\x09\x23\x56\x74\x49\xc4\xd2\xd2\x2c\xf0\xc1\x89\xc3\x16\xd6\xeb\x20\x9b\xeb\x52\x55\x6f\x6a\x79\x8a\xe6\x47\x11\x91\x40\x3e\x6a\x9a\x15\x54\x8a\xd2\xf2\xf2\x18\xb7\x68\xec\x7d\x2b\xe8\x49\x26\x85\x2b\xf3\x21\x1f\xc8\x67\xe8\x40\x3e\xe3\x7f\x30\x4e\x53\xd7\x8f\xb3\x55\xe9\x61\x4e\x49\x24\x19\x93\x7f\xf6\x09\xef\x6f\x2f\xa7\x71\x35\x47\x22\x16\x20\xbf\x21\xd8\xdd\x93\xc3\xd9\x46\xae\x5c\xe6\xad\x2e\x19\x3f\x04\xa9\xd7\x69\x3c\x4a\x7d\xd1\x00\xd6\xaa\xf2\xa5\xb8\xdb\xcd\x45\xec\x93\x27\x44\x26\x29\x1a\x9e\xc8\x91\x86\x90\xe5\x7b\x3e\x73\x64\x2d\xf7\xae\xc4\x3c\x6c\x4a\x45\x03\x29\x92\xdc\xa3\x28\x96\xf3\xbc\x57\x56\xe3\xe5\x65\xcd\x42\xd5\x1f\x47\x6e\x9f\x79\xe5\x18\x32\x25\xc9\x7a\xe3\xb2\x2a\x12\x20\x53\x64\xd3\x61\xa1\xff\xd3\x09\xc1\xa9\x94\x1d\x64\x8d\x33\x4e\x9d\xca\xaa\x18\x0f\x5d\x56\x81\x74\x80\x3e\xeb\x5b\x13\xb2\x02\xf8\x80\x3c\x4e\x4e\x30\xe2\x28\x5e\x49\xb2\xfe\xd6\x3a\x77\xc0\x71\x76\x1e\xed\x2c\x76\x34\xf7\x15\x34\x63\x61\xf0\x04\xf4\x77\xb0\xde\xcc\x40\x20\x60\xc9\xff\xa8\x49\x39\xac\xcc\x97\xd1\xa5\x51\x20\x92\x74\x2d\x14\x83\x42\x02\x49\x0f\xc9\xf2\x78\xa4\x46\xd1\x61\x84\x7f\x9a\x66\xe2\xa7\x1b\x0e\xfa\x17\xda\xfd\x3c\xef\x1d\x4e\xd4\xef\xd2\xa6\x75\x04\xdf\xbc\x34\x75\x0a\x76\xc7\x29\xd1\xe5\x21\xf7\xa7\xd7\x33\x4b\xf7\xe0\x8e\xbd\xed\x43\x6e\x54\xf1\x19\x06\x06\x99\x79\x0c\x3d\x49\x49\x7a\x39\x96\xcd\xb9\xeb\x40\x68\x2b\xed\x0e\x43\x9d\x26\xec\x45\xe6\x5e\x03\x9b\x0a\x39\x3f\x76\x02\xe6\x18\x10\x1f\x37\x56\x8d\xfc\x7d\x1c\xbc\x9f\x4e\xb9\x51\xa7\x2e\xee\xbb\x6d\x02\x7f\x60\x3e\x10\x9e\xdd\x7f\x94\xf7\x30\x79\xf5\x90\x5e\x60\x0c\x66\x3e\xf9\x74\x2e\x5c\x12\xda\x86\xe6\x20\x13\x3a\x3d\x82\xc1\x6b\xdc\x0d\x70\x16\x7c\xd2\x63\x34\x7d\x39\x46\x0d\x90\x81\x2b\x92\x2a\xee\x3b\x22\x7c\x2a\x72\xdf\xbc\x99\xc3\xe4\x2e\xee\xad\xb8\xac\x12\x50\xf0\x41\x33\x9b\x52\xcd\x29\x93\xbe\x68\xd8\xaf\xcb\x2e\xae\x7f\x47\x7b\x9e\x38\xf8\xff\x2c\x22\xeb\x98\x3f\x9b\x84\x74\xbb\x3e\x96\xd1\xe3\xc0\x51\x04\x82\xa8\xaf\x04\x83\xd5\xf1\xff\x3c\x53\xee\xee\xdc\x69\xb2\x1c\x1e\x81\xf3\xfe\x24\x50\x2d\x80\xda\x40\x11\xf8\xc9\x4c\x54\xda\xb7\xa3\x3d\x1c\x8b\x65\x9e\x7c\x77\xec\x76\xb4\x73\xf5\xda\xc7\xd6\x5e\x11\x0f\xe3\x4a\x13\x6e\xb3\x02\x6a\x79\x67\x83\x0b\x4d\xbd\x83\xb8\xdb\x2d\xc6\x76\x0b\x6c\xba\xcd\xa3\xee\xc9\xb3\x1b\xcd\x5e\xf7\xb7\x77\x1d\xf8\x22\x71\x72\x5a\xe0\xe4\xe8\x71\x8d\x92\x08\x67\xec\x2d\x90\x62\xd0\xe8\x3a\x46\x82\x6c\x6f\x6f\x00\x7f\xfa\xb2\xe2\x4a\xd4\x7a\xee\xb9\xa0\x2e\x3c\x9d\xdc\x58\xbf\x75\xd3\x5a\xc8\x63\x4f\x00\xda\x82\xc3\xe3\x18\x16\xa3\x51\x60\xe4\xa1\x98\x0a\xb2\x7c\x41\x93\x8e\xa9\x93\x05\x75\x07\x9a\x1a\x84\x6a\xa2\x88\xfd\xbc\x40\x32\x4e\xf3\x42\x0b\x43\x77\xeb\x32\xc8\x45\x00\x4a\x5c\x90\x25\x8f\x1e\xdf\x1d\x12\x2c\xe8\xe7\x2b\xcf\x8b\xac\x8d\xa2\x33\xe4\xcb\x1b\x52\xa3\x81\x08\xd6\x7d\xbe\xf7\x7c\xa9\xac\x62\xdc\xd6\x77\x22\x02\x61\x82\x30\x68\xe5\x0a\x49\x74\x3c\x20\xde\x33\x68\x80\xb2\x46\xd5\xc6\x84\xd4\x36\xbe\x3f\x75\x10\x85\xa1\xd3\x20\xe9\x0f\xa4\x3d\x80\xc3\xc7\x6c\xe6\xc2\xd0\x6b\x96\xb7\xf6\x95\x76\xdc\x2f\x9c\xeb\x09\xd7\x1b\xbd\xdd\x33\xd4\x28\x55\x80\x34\x9a\x77\x37\x23\x92\xa8\x9f\x1a\x0b\x43\x3c\x1a\x1f\xf4\x12\x21\xfe\x84\xb5\x92\x61\xb0\x65\x77\xf9\x04\x41\x62\x4f\x78\xa2\x8a\x95\x8b\x86\x59\xc3\x14\xe6\x4f\xb0\x54\xf4\x85\x0f\x3c\x87\x5c\x5d\x3d\x11\x2f\x00\xfa\x59\x7a\x4d\x81\xf8\xd5\x71\x55\x59\x3e\xa5\x92\xbd\xf2\xd7\x4d\xbe\x77\xe3\x11\xf2\xca\x2b\xc8\xda\xb3\x72\x0c\x76\x54\x93\x05\x75\xa0\x4f\xf4\x92\xb2\x1a\x17\x4b\x0a\xee\x36\x51\x28\xa6\x44\x85\xba\x75\xa9\x18\x57\x75\x99\x88\x84\xc2\x00\xc7\xe1\x63\x7f\xc8\x9e\x4e\xb3\x44\x9c\xdd\x8b\xed\x5e\x7e\x38\xab\xf2\xc3\x2a\xc0\xe9\x45\x86\x3c\x50\xe6\x1e\x25\xab\x97\xa8\x4d\xec\xd2\xf4\x49\x59\xe5\xa6\x66\x23\x0f\x43\xe6\x47\xff\xe2\x0b\x9d\xa0\xbd\xf5\x34\x48\x26\xd8\xa4\xdb\x90\xec\xe3\x5f\x16\xc4\xc3\x0a\x3b\xfc\x0e\xe2\x23\x8e\xfa\xa7\x55\xea\x52\xe9\x43\x44\xf4\xbd\x1b\xb5\x7e\xf3\x37\x34\x6b\x79\xbc\x13\xc4\x2f\xa0\x96\x84\x5c\xe5\x19\x68\x37\x2b\xcc\x60\x8d\xec\x01\x37\xcb\x16\x35\xef\x66\x59\x03\xa8\x62\xb7\xcf\xf8\x7f\xec\xdc\x69\x10\x49\x5d\x39\x26\x62\xd9\x22\x73\xbd\x59\x95\xc6\x5d\x6d\x19\xaa\x79\x1d\xbb\xef\x13\x49\xe8\xfb\x33\x07\x0c\xdc\x52\xe3\xc2\x3a\xb3\xeb\xd0\x9c\x5a\xbf\xed\x0f\x15\x97\xf5\xeb\x74\x71\x0b\x51\xb2\xbe\x1d\xd1\x51\xbd\xd0\x21\xcd\xd2\x8f\xc9\x9c\xe4\x53\x00\x09\xd8\xc3\xc8\x66\xeb\x1b\x3f\x35\xdc\x38\xdc\x3c\xad\x20\xdc\x4e\xf6\x75\xc3\x2d\xdf\x0a\x75\x52\x95\x79\x6f\x82\xe6\x15\x24\x06\xe1\x25\x18\x7c\x9b\xfc\x2c\x1d\xde\xdd\x54\xe4\x42\xcb\xb9\x16\x69\xf7\xd6\xcb\x06\x4d\x71\x36\xf5\xbd\x3f\xd3\xac\xd8\xb3\xa7\x3e\xfc\x5b\xa8\xe0\xfd\x6e\xf2\x3c\xe0\x59\xf4\xea\xbe\x1d\x22\x15\xb5\x22\x4d\xc7\xfa\xce\x78\xab\x05\x4f\xc5\x66\xab\x85\x3a\xe4\x1d\x8e\x57\xa7\x24\xca\x7e\x30\x21\x6d\x9d\x1f\xf8\xa8\x31\xc8\xbd\x0c\x2d\x4a\x9e\x6b\x13\x1a\x1c\xcd\x2a\x7e\xd4\x15\x93\x18\xae\x87\x31\x34\xe6\x9a\x80\xf8\xe8\x35\xb9\xc6\xa7\x4e\x8b\x06\x91\x75\x33\x68\xe1\x94\xdd\x8a\x2c\x78\x53\x44\xab\x6f\x83\x04\xd6\xbd\x4f\xcb\x8c\x06\x3b\x07\xbe\x31\xbe\xa7\xe7\x7d\x4c\xd4\x01\xc2\xc0\x8c\x86\xce\x28\xf3\x24\x45\x39\xe5\x8d\xbb\x7d\xb8\xc7\xea\xc0\x11\x7a\x9f\xc2\xa2\x20\x91\x8d\xee\x88\x83\x4c\x9d\x42\x4d\xa1\x45\xde\x50\xff\x65\x12\xaa\xd1\xb3\x33\x18\xbe\x5d\x07\xda\xe3\x2c\xe9\xb9\xac\x4a\x96\x13\xed\xca\x29\xa2\x70\x0a\x5d\xb8\x71\x5d\x1c\x78\xb1\x1d\x77\x61\xbd\x62\xa0\xe2\xfa\xab\xea\xb5\xc7\xc3\xf7\x45\x30\xc2\x7f\xa1\x19\x37\xdd\x00\x2d\xcf\xca\x51\xa2\x39\x23\xf6\xcf\x7b\x84\x53\x79\x8f\x82\xf6\x72\xe1\xbe\x3e\x76\x59\x77\x95\x1b\xb9\xb7\xc9\x04\xfc\x36\xc9\x75\xc6\xd9\xaa\x80\x1d\x88\x76\x81\xf6\xb7\x5e\xd3\x47\x50\x00\x64\x57\x46\x98\xca\x82\x95\x5b\x80\x72\xe9\x34\x2b\x05\x1d\x9d\xf1\xa8\x90\x39\x40\xe9\xba\xe3\x42\xf0\x5d\x2d\x2a\xa3\x2f\x46\xd3\xaa\x4c\xb3\x73\xf0\x51\x5c\xc4\xe9\xea\xeb\xd3\xba\x34\x3c\x24\xbe\x44\xed\xca\xb2\x3b\x70\x43\xa7\x9a\xbc\x8a\x48\x96\xac\xcd\xd0\xc9\x34\x60\x3c\x70\x80\xc4\xcd\x2e\xb2\x42\xe0\xc5\x26\xf5\xda\x3a\x44\x2a\x75\x8e\xed\xd1\xbc\xc3\xa5\x07\x99\x1c\x0f\x79\x6e\x9c\x0c\xe2\xaa\x1c\xb7\x68\x34\x0c\x26\xf4\xe7\x59\xfe\xd5\x49\x6b\x37\x1e\x1b\xa6\xc4\x7a\x40\x5b\x24\xab\xd2\xeb\xb5\xd0\x83\x1b\x8e\xe2\x4a\xdd\xa0\xf1\xe3\x38\x55\x90\xe4\xe8\x75\xd3\xd6\x2f\x5c\x99\x8f\x65\xf4\x34\x47\x2e\x3d\x37\x48\xdb\x06\x79\x9c\xc1\xdf\x78\x7e\x3e\x1c\xe6\xd9\x61\x17\xa7\xd5\xa0\x15\xe6\x03\xff\x81\x15\x64\xfe\x43\x93\xf6\x83\x48\x3a\xd8\xac\x05\xb9\x22\x06\x0c\x7a\x3d\xf3\x31\x77\x2f\x02\x08\x57\xe6\x99\x56\x0a\xaa\xd6\x40\x4a\xae\xe7\x26\x7f\xf5\x73\xda\x98\x71\xf7\xeb\xe3\xa4\x70\x2a\x9e\x6a\x1c\x13\xd2\x93\x80\x4b\x3e\x76\xfe\xff\xd9\xb0\xec\xba\xf9\x68\xb5\x80\x8e\x4f\x18\xa3\x44\x53\x8a\x0d\x01\x54\x9a\xc6\x55\x17\x8e\xb7\xfe\xa8\xdb\xed\x87\xda\x33\x07\xd4\xae\x03\xed\x9e\x4b\x4d\x05\xda\x0a\xcf\x00\x21\x6b\x52\x9c\x6f\xd7\x1b\x3b\x38\xd3\x9a\xae\x70\x68\x66\x5e\x9d\x89\x42\xfb\x76\xb4\x47\x31\x74\x94\x54\xa0\x59\xee\x9c\x89\x35\xdb\x2a\xea\x8f\x97\x5c\x91\xc5\x55\x5e\x98\x00\x16\xde\xf0\x2c\x09\x52\x9d\x9d\x39\xae\x77\x2f\xb6\x0f\x25\x87\x93\x56\x48\x2c\x10\x9b\xad\xff\xdd\x50\xc1\x2d\xa7\x82\xa7\x65\x4d\x76\x34\x00\xf5\x9a\x6a\xd8\xb8\xe7\xbd\xb6\x51\xd5\x9f\xc0\xf9\x80\x6c\x72\xcb\x5a\xc0\x6a\x3c\xda\x69\xa8\x97\x93\xe1\x68\x9c\x7a\x41\x39\xb3\x77\x26\x75\xd1\x7f\x31\xd3\xc5\xd9\xb7\xa3\x5d\x3a\xb5\xd6\xf2\x8a\xf3\x81\x64\x7c\xa6\xa9\x23\xbc\xbf\x9d\xba\xb8\x3f\x36\x3c\xc3\xb4\x88\x83\x69\x8d\x7e\x1e\x09\xa0\x97\x14\xae\x5b\x49\xa5\xed\x29\xaf\x9e\x1a\x75\x23\x9a\x62\xe5\x3e\xe5\x37\x7c\x92\x75\xe5\x3c\x92\xfb\x8e\x5d\x0b\xe5\x60\xbd\x9e\xa9\x9c\x05\x50\xda\x73\x4b\x6a\xd4\x6f\x32\x53\xa1\x17\x73\xae\xb1\xd7\x5d\x8e\xeb\x6d\xae\x47\x1e\x79\x8d\x1a\x4d\xfb\x33\x92\x02\xeb\xc5\x2b\x49\x6f\x7b\x60\x7d\x4e\x01\xbf\xfe\x9c\xfd\xe4\xde\xc4\x2d\x65\x45\x6d\x84\xf0\x85\x35\xf2\x12\xdd\xdc\xa1\xce\xc6\xc7\x92\x48\x78\x75\x5b\xef\xe1\xb1\x19\xf9\xbc\xbe\x6f\x63\x93\xd3\x15\xf9\x52\xd2\x45\xff\x10\x5b\xf1\xa6\x6c\x32\x33\x07\x26\x39\xbf\x8b\x24\x5a\xb0\x94\xe7\x6a\x9e\x69\xf3\x2a\xf9\x3a\xfa\x22\xfa\xc2\xc6\x2e\xc3\xde\xfd\xed\x83\x3b\xb4\x7d\x8b\x6f\xa6\xf3\x6d\x7d\x41\xf8\x17\xc5\x10\x15\xa4\x4d\xf1\x3e\xde\x5d\x5f\x34\x9d\x3b\x4b\x85\x8b\x0f\x01\xdb\x64\xfa\x43\x2d\xb2\x51\x6c\xd8\x98\xaf\x3e\xdf\x7b\x7e\xea\x03\xe9\xbc\xd1\x24\xce\xbd\xca\x4e\x32\x5c\x4e\xdd\x6b\xd4\x0a\xbf\xc3\xce\x4a\x77\xd8\x38\x3a\x2e\xca\x41\x9c\x6a\x6f\x07\xb5\x30\xf8\xc1\x7a\x4d\xd6\x64\x3d\xa7\xda\x63\xd8\xe9\x26\xd3\x11\xfa\x48\xb3\xc4\xf4\x03\x2f\xca\x30\x19\xa2\x82\x46\x98\xab\xb7\x06\x9a\x2d\x77\x64\xb2\x0c\xa4\x1e\x2a\x6c\xe0\xa7\xaf\xcd\x54\x92\xaf\xbc\xd2\x5e\x8a\xd3\x38\xeb\xea\xd2\x55\x2b\x0a\xc4\x6d\xf3\xa5\x68\x38\x9d\x46\x71\x19\xbc\x6f\x31\xeb\xba\x4b\xa6\xcd\x77\x09\x6e\x96\x2f\xa1\xec\x97\x8a\x81\x55\x3e\xb1\xe3\x55\x78\xc5\xc4\xea\x1a\xe4\xaa\x46\xd4\xc5\xf0\x4a\x69\x5e\x07\x37\xf8\xa3\x1f\x8e\x57\x2c\xdc\x1b\xa4\x87\xfc\x63\x3e\x9c\x89\x2c\x10\x9b\xca\x96\x5d\xe1\xb2\x2e\x37\x10\xae\x4e\x48\x58\xe0\x6a\x9d\x7e\x6a\x0a\xd4\xfb\x7c\xbf\xb7\xf6\xe7\x9d\xab\xbd\x95\xbc\x0b\x6f\x9c\x30\xb7\xbf\x1b\xd1\xe9\x7f\x77\xaa\x0b\x5d\xe8\x5c\xda\x10\xf6\x9c\x55\xcc\xc2\x10\xf2\x71\x95\xa2\xa5\x12\xbc\xcc\x4f\x60\xf4\x67\x7c\xad\x26\x1c\x47\x95\x2c\x2f\xd7\xb9\x05\x37\xd0\xa7\x3a\xeb\x4f\xd1\x70\x6b\x79\xdc\x77\x0e\xf4\x4b\x8d\xaf\xd3\xc1\xd6\x2a\xaa\xb2\x8a\x57\x31\x22\xd9\x65\x0e\x60\x11\x1b\x02\x93\x8d\xe3\x49\x9a\xf6\x57\x71\x76\x48\xd9\xb0\xc6\xa4\x3c\x1b\x31\x51\xa4\xc1\x84\xa0\x2b\xd2\x2a\x5e\x50\xf9\x06\xc2\x24\x67\x96\xf8\x3b\x1f\xce\x68\xc0\x7c\xa5\x1d\xc3\xe7\xc8\x78\xac\x2a\x59\x6f\x54\xa7\xa0\x5a\xf6\xfd\xa6\xa1\x59\x9e\xf6\xa4\x11\xf7\xb5\x5d\x81\xd3\x5e\xdf\x37\x8c\x72\xd7\xa9\x66\xbe\xb8\x41\x3d\xac\xf7\x2c\x02\x0c\x8e\xc7\x7b\x24\x2c\xfd\x94\x80\x09\x91\xd5\x5d\x44\xfd\x6f\x43\x84\x30\xed\x5b\xc7\x8e\xf4\x3f\x15\x60\x86\x67\x65\x19\x5a\xcf\x34\xf4\xf5\x7f\x3c\x6d\x17\x56\x07\x72\x74\x4d\xd0\xbf\x41\x63\xe7\xbe\x18\x20\x62\xfc\xf8\x0e\xd8\x1c\x2a\x6b\x17\x91\x0f\xac\x8e\x32\xd5\x7f\x4a\x07\xf0\xda\x9b\x92\x8e\x2b\xfa\xd5\x15\xe6\x46\xd0\x04\xd1\x5e\xaa\x29\x23\x3c\xce\x4c\x8a\xae\x70\x9d\x90\x59\x28\x9e\x0d\x49\xf4\x4d\x02\x07\x6a\x0c\xd2\x7f\x98\x69\x25\xec\x3a\xd0\x1e\xba\x0a\x28\x19\x03\x18\x73\x9e\x4b\x3a\x7f\xb7\x09\xeb\x5e\x96\xb1\xa0\xcc\xf0\x21\xef\xb3\x8a\xc9\x7d\xef\x72\x34\xce\x12\x65\x89\x2b\x13\x05\x1b\x55\x44\xa8\xed\x3a\x2c\x7b\x91\xfc\xfd\x4f\x52\xa9\x68\xf2\xae\x6f\x68\xde\x87\xa1\xe3\x77\xd1\xab\xea\x77\xf3\xf1\x48\xa3\x85\x0e\xb4\xe5\xc7\x6c\xb8\x4d\xce\xbf\xc3\x5c\x05\x14\xd1\x3f\x7d\x93\x7a\xa9\x6f\x4e\xb6\xfb\xf3\xe5\x57\x9f\x0d\x38\xda\xb3\x51\xf0\xbf\xde\x0a\x89\x18\x35\x07\xe7\x73\xf5\x0b\xda\xc9\x33\x33\x9a\x30\x0a\x3b\xca\xe8\x92\x6f\xb2\x32\xfe\xb6\xb5\xd6\x6f\xfe\x46\x30\x37\xac\x9f\x0b\xa2\xc0\x0d\x90\x70\xb5\x7f\x47\xea\x9b\xf7\xa3\x40\x57\x84\xf0\x9e\x71\x03\x65\x4f\xe9\xd8\x2a\x22\x15\xc5\xcd\x6b\x33\x74\x42\x2c\xca\x79\x59\xd3\x4a\x9c\x95\xa4\x05\x91\xe1\x41\x14\xa0\x24\xa9\x4c\xd3\xe7\x08\xf1\x19\x6d\xb4\xfd\x32\xd0\x46\xe8\xbc\xaf\xc4\x82\xbf\x0d\x99\xd7\xe6\xb5\xc0\x14\xd9\x3c\xa3\x6f\x2e\xab\x72\x98\x17\x71\xd6\x1b\x0f\xe7\xc8\x53\x08\x76\x6a\x48\x9e\xae\x93\xca\xc4\x99\x86\xda\x5f\x60\x0f\x4b\xe3\x24\x0d\x50\x47\x7c\xcb\xcf\xe8\x1b\x7f\x36\x85\x82\x72\x2b\x2e\x43\xb3\x7c\xaf\x47\xe4\xb6\xbc\xac\xd0\xf9\x88\xf5\xb8\xb3\xaa\x48\x96\xc6\x95\x95\x7a\x48\x31\x1e\x22\x84\xe2\x0e\x5e\x9c\x4c\x09\x0c\x05\xa3\x77\xe1\xe9\x89\x47\x83\x6f\xa6\x6c\x95\xba\x57\x59\xef\x64\x6a\x3f\x6b\x64\x5f\xa7\x66\x69\x9e\xf7\xc0\x0a\x47\x7f\xea\x21\x96\x13\x27\xb8\xc8\x8f\xb6\xce\x60\x23\x0f\xee\xd8\xa5\xbf\x4f\xd8\x2a\xf4\x2a\x6c\x36\x3e\x5b\x94\x2e\x8f\x8b\x2c\xc1\xf8\xd0\x6f\x21\x98\xbb\x9b\xe9\x6c\x13\x9a\x66\x94\x1f\x76\xc5\x3c\x9b\x9e\x5f\x40\x30\xc5\xe4\xff\x02\x79\xcb\x7f\x07\x11\x04\xf7\xed\x2e\x8d\x89\xe2\x62\x88\x1e\x29\xda\xf1\x77\x64\x6f\x4e\x31\x19\x80\xca\x3a\xdb\x84\x9d\x2f\xbb\xc5\xb8\x4a\xb2\x55\x44\x15\xdb\x6c\xa1\x0f\xf2\xcd\x90\xf3\x24\x5e\x26\x06\x29\xde\xc7\x24\x39\xf7\x71\x83\xd5\xd7\xae\x3a\x3f\xce\x7a\x31\x60\xd0\xde\x7a\xaa\xfe\x40\xb6\xdb\x1f\x27\x17\x87\x4c\x17\x95\x1e\xe2\x24\x7b\x1e\xd6\x45\xbf\x48\xdc\x4a\x9d\x42\x96\x73\x24\xf7\x34\x99\xb2\xd5\xa6\xc2\xbd\x69\x58\xd9\xcd\x87\x4b\x42\xde\x0a\x0e\xca\xd0\x93\xd6\xeb\x99\x9b\xe4\x71\xc3\x87\x8a\x16\x05\xae\x73\xec\xe3\x75\xce\x23\x64\xba\xf1\x70\x29\xef\x25\x2a\xae\xa6\xa8\xec\x88\xf8\x24\xc7\xa7\xd2\xf1\x65\xd7\x05\x77\x39\x10\xb0\xfe\x98\x78\x30\x7f\xdc\xa8\x78\x10\xbf\x96\x0c\xeb\x3d\xbf\x6f\x87\x85\x2e\x00\x2e\x90\xa5\xe2\x0e\x20\x86\xde\x21\x96\xf0\xd0\xf5\x92\x18\x66\x12\x1e\xb8\x53\x9f\xc2\x06\x3c\x68\x2d\x2e\xae\xff\x14\xd8\x0a\xa4\xce\x67\xc8\x01\xe9\x4c\x13\x68\x69\x34\xb6\xa9\x99\xb5\x16\xa8\xcd\x30\x79\x2c\xf0\x93\xff\xab\x74\x41\x74\x08\x4c\xde\x81\x58\xde\xda\xf8\x41\xb8\xfa\x36\xa2\x81\xfe\x58\x44\x2a\x27\x97\x66\x48\x4a\x07\x77\xbc\xd0\x5e\x2a\xf2\x6a\x50\x67\x74\xd8\x40\x40\x34\x9e\x67\x08\xee\x79\xea\x3e\xaf\xc4\xe9\xd8\x1a\xf1\x40\x8f\xa0\xd8\xd6\xeb\xb0\xc8\xf2\xbc\x74\x4b\xae\x28\x56\x91\xbd\x11\xa7\x67\x91\x1b\x2a\xeb\x77\x9b\x24\xf3\x93\x2c\xcb\xbb\x3e\xcb\xf7\xd6\x22\xde\x70\x2a\x28\xa9\x2e\xe7\xc5\xe1\xb8\xe8\x6d\x0d\xb0\x2f\x95\xd9\xd1\xc1\x2b\x6e\x93\x31\xfe\xc3\xa0\xf3\x69\x19\x6b\xa1\xa1\x79\x5a\x92\x22\x9d\xc3\x44\x81\x01\x3c\xb7\x16\x1e\xfc\xab\xc9\x70\xb8\x8a\xa5\x6b\xbe\x9e\x2d\xaf\x35\xfd\x11\xb1\xa3\xbb\x79\xaa\x5d\x13\x8c\x93\xd4\x9e\x33\xa2\xb6\xd6\x3a\x3e\x94\x92\xae\xa6\x78\x35\x72\xdc\x7a\xd5\xfc\x45\x93\xa4\x5a\x9f\x4c\x61\x68\x85\xe4\x28\xe0\x28\x24\xf5\x9b\xa1\x8c\xec\x31\x7b\xbb\x0d\x37\x7a\x75\x66\xe9\xd7\x4f\x3c\xc9\xca\xa4\x07\xe3\x1e\xcf\x8d\xdd\x6d\xbd\x93\x5b\x11\xc9\x3a\x9f\xf7\x93\x8a\x34\x3e\xe4\xe6\x08\xd5\xab\x10\x3e\x76\xb5\x37\xee\x5d\x80\x2a\x2d\x8d\xcb\x24\x5d\xfd\x7c\xef\x5a\xeb\x23\x2f\x17\x89\xcb\x7a\xe9\xea\x42\x68\xce\xff\x0a\x9a\x24\x5e\x84\xd8\xe3\x55\x7f\x71\x2d\x34\x49\x14\x5e\x65\xf6\x11\x0d\xa5\x53\x3c\xae\xf2\x6e\x11\xa3\x9f\x84\x7b\x89\xae\xac\x5e\xcf\xe4\xa9\xbb\x17\xdb\xaf\x27\x23\x59\x76\x26\xc4\x4f\x5a\xcd\x97\x26\x5f\xe4\xf9\x71\xb7\x70\x55\x92\x67\x71\xb1\xba\x85\xc8\x66\xc7\x90\x57\x7b\x70\x56\x00\x1e\x9f\x27\x26\xe3\xf9\x49\xf0\xd7\x39\x21\x53\x23\x74\x97\x36\x77\xc8\x12\x3c\xa9\xaa\x72\x69\x5c\xf4\x07\x5b\xe5\x1e\xa2\x76\xbd\x86\x4f\xe4\xc3\x85\x4f\xd6\x3e\x90\xdb\x04\x7d\x24\x56\x49\x5e\x58\x0b\xc0\xef\x4f\xc4\x99\xe5\xfc\x4c\xff\x52\x2c\x42\xf2\xf1\x52\xa5\xa9\xac\x89\x0f\xd5\xef\xa2\xd7\x04\x70\xc8\x97\x97\x4b\xa7\x40\x40\xb4\xa8\xb0\x6f\x3c\xdb\xde\xbb\xf3\xad\xb3\xe8\x45\x51\x67\xe9\x72\x6f\xbd\xea\x7b\x80\xd0\x5e\x24\x66\x70\xe5\xd4\x17\xd0\x4b\xc9\x90\xae\x0c\xc1\x2e\xcb\x71\x51\x68\xa3\x7f\x5e\xde\xca\x7a\x7e\x92\x91\x1a\x5d\x2c\x40\xf8\xe1\x1f\x85\x68\xf0\x56\xb0\x49\x1a\x24\x45\xc5\xa7\xc7\x87\xf2\x2b\x7a\x1d\x6d\x6c\xc1\xa3\x7f\xb8\x54\x26\xbd\x04\xd9\xa6\x84\x58\xeb\xb4\xcb\xdb\xe8\x0b\xaa\xcb\x0f\x27\x3d\xa5\x7d\x84\x2e\x2d\x12\x75\x33\x26\xb4\x9d\x56\xe4\x39\x2a\x7d\xf5\x6c\x8e\xc2\xd0\xe2\x2c\x41\xc6\xba\x71\xb1\x94\xf4\x10\x20\xbd\xbe\x47\x68\xe4\x9d\x6c\x34\x37\x2c\x34\x8f\x50\x0d\xd2\x09\x99\x1e\x9f\xa3\xaa\xeb\xbf\xf9\xdb\xff\x6d\xab\x4e\xd0\x91\x8e\xea\xc9\xab\x2f\x7c\x21\x55\xe5\x85\x42\xb6\x28\x0f\x0d\xc9\xd5\xc5\x99\x25\xb6\x67\x4f\xbd\x6e\x5c\x61\xb8\x4c\x9b\x8c\xb6\xbc\xe4\x85\x9a\x62\x21\x76\xfd\x8c\xbd\xf1\x07\x49\x2a\x04\x0e\x87\xb1\xa7\x49\x43\x92\x99\xfd\x35\x08\xe8\xe8\xbf\x20\xdc\x5a\x17\x2d\x1c\x5f\xaf\x27\x69\x9a\x58\xff\x13\x61\xe8\x4c\x44\xbc\xcb\x33\xbe\xac\xfb\xfa\x38\xa9\x74\x1c\xe6\x15\xe0\x7e\xf3\x37\xb4\xa2\xd7\x82\x09\xb6\x27\x9b\x3a\x0d\x13\xfa\x9e\xeb\x17\x0e\x4f\x47\xcd\x6b\x89\xf8\xfb\xfb\x74\xa0\x0e\xe2\xa5\xa4\xaa\x03\xd4\xbe\xbd\x5e\x20\xb5\x8e\x0c\xa6\xc1\xfa\xcc\x06\x75\xb0\x58\x20\xa3\x3b\x77\x19\xb2\x6b\x12\xf6\xda\x5d\x1e\xb0\x7e\x7f\xaa\xa1\xf1\x9c\x1b\x4a\xbc\xf7\xec\xcc\x3d\x7b\xa6\x05\x91\x4c\xbb\x6e\x16\xf4\xdb\x1e\xc5\x65\x15\x33\x28\xe9\x14\x4d\xa9\x4f\x35\xb4\xe9\xda\x2e\x75\xdd\xaa\xc8\xb3\xa4\xab\xd1\x04\x7d\xaa\x37\x08\x01\xfa\xc6\x0c\x98\x49\x3c\x3a\x5c\xf7\x79\x80\xb2\xb1\x38\x6e\x48\x85\x82\x7b\xa6\x6a\x91\x20\xbd\x9f\x9c\x04\xe8\xcb\x8f\xb1\x0c\xb0\xdb\xff\x60\x12\x78\x62\x55\x3c\xc2\xde\x34\xdd\x6f\x62\xca\xf0\x72\xaf\x5c\xf1\x4c\x28\x67\x35\x62\x0b\xca\xe5\x7f\xfc\xe5\x4e\xa8\xbf\x37\xad\x05\x89\x52\xd5\x76\x43\x99\xfb\xac\x7a\x34\xa0\x43\xf5\xad\x3a\x9b\x58\x3f\x4e\xfe\x77\xef\x4e\x3c\x82\xf8\x27\xcf\xb0\x18\xec\x96\x35\xc9\xe8\x3c\x11\xe3\x25\x0f\xaf\x9f\x78\xd3\xf6\x8b\x4f\xe3\x24\x94\xc2\xe6\x57\xbf\xb4\x16\x94\x6c\x6e\x4d\x82\xe4\x65\xf9\x0b\x6b\xc1\x3f\xf8\xd7\xff\x1a\x0b\x6b\x7e\x97\x35\x3c\x4e\xd2\xd7\xee\xbb\x54\x44\x01\xad\xb0\xa9\xbf\x9d\xe5\xfc\x04\xb5\xdf\x8e\xbf\x8f\xed\x8f\x21\x8e\x0d\x9b\x9f\x26\x73\xdc\x38\xeb\xc5\x45\xaf\x9c\xa7\x74\xf8\x0e\x49\xc9\x7d\xc4\x6f\xf9\x51\x14\x92\xe2\x3b\x1b\x15\x2a\xeb\x75\xf0\xd2\xae\x03\x5b\xeb\x1f\xf1\xb2\x60\xf5\x27\xb0\x5e\x77\x7d\x07\x70\x9b\xae\x92\xfb\xd4\xb7\x99\x3e\x7d\x83\xe5\xef\x3f\xa2\xec\xe1\xd4\x14\x3b\x30\x1f\xb9\xc7\x83\x3b\xfe\xfd\x49\x50\x4a\x7f\xb2\x43\x71\xfa\xb8\xfc\x49\x74\xad\xee\xeb\xf8\x8b\xd1\xd6\xb8\x81\x2a\xae\x8e\x46\xdd\x8f\x58\xeb\xf1\x36\x53\xd1\xe7\x25\xad\x43\x3a\xfc\x18\x9e\xff\x94\xcd\x0e\x1a\x80\x1f\x49\x46\x60\x36\x3b\x24\x95\x9b\x25\xe5\x00\x51\x09\x0d\xe3\x1f\x93\xfb\x8c\x92\x68\x70\x6f\xee\x37\x49\xcb\xed\x6f\x77\x07\x71\xd1\xd7\x8e\x2a\x12\x91\xeb\x34\x5f\x7b\x1f\xcb\xda\xe4\xed\x9a\x6a\xfa\xae\x2b\x9c\x52\xe1\x71\xaf\x71\xf2\xeb\x35\x9b\x99\xa6\x71\x71\x48\xda\x5d\xbe\x26\xaf\x3f\x9d\xbe\x68\x12\x94\xec\xe6\xd9\x72\x52\x0c\x75\xf4\x80\xa5\xf8\x13\x16\x79\x7d\x30\xa1\xb9\xd5\xa6\x4e\x28\x7c\x2b\x41\x8f\xec\xdb\xa1\x1b\xb2\xd5\x09\x16\xdc\xad\xb5\x8d\x29\xde\xe2\x62\x7b\xa5\x7c\x7e\x21\xe8\x79\xfe\x0e\x8a\x24\x23\x94\xb7\x7e\xfd\x25\x3d\x46\xb6\x92\xcd\xf0\x69\xa2\x52\x5f\x23\x98\x45\x1a\xaf\xc8\x5f\x36\xed\x1d\x92\x34\x3f\x49\x99\xca\xa8\xc8\xbb\xe3\x02\x72\xcd\xf2\xf8\x80\x62\x3c\x46\x72\x51\xe7\x29\x31\x3d\x2d\x6b\x16\x6d\xea\xcd\x9d\x27\x7c\xe5\x5e\x27\x3b\xe3\x51\x2b\x34\xf8\x4e\x50\xa1\x7a\x02\xa6\xec\x5a\x15\xbb\xd1\x56\x79\xca\xd6\xdf\x6d\x79\x6b\x65\x90\xf3\xf1\x15\x01\x58\x52\xfd\x19\xf9\xa3\xe8\x13\xdd\xa6\x58\xad\x55\x1b\x92\x9a\xef\xb1\x14\xd6\x20\x2f\xaa\x74\xb5\x15\xa4\x35\x7e\x10\x05\x35\x8d\x1f\x34\xac\x9f\xf6\xd7\xc7\x79\x90\x88\xc5\xf6\x3e\x43\xd0\xe8\xc0\x4f\xa9\xea\x75\x5a\x59\xae\x80\x88\x77\x85\xb4\x85\xfe\x0d\x8e\x6d\x9c\xc7\x57\xa9\x44\x2f\x8c\xcf\xfd\xb2\x7e\xad\xb9\x0e\x61\x10\x55\x66\xd8\x46\xbe\x75\xc8\xb5\x89\xef\x0c\x98\x6d\x6f\x3b\xcd\xb3\x7e\x95\x0c\xd1\x40\x33\x55\xcd\x30\x78\x02\xd5\xcf\x94\xc6\x67\x9b\x37\x2f\xb4\xe3\x61\xe6\xca\x6a\x95\x90\x24\xbf\x47\x8a\xf9\xbf\xd7\x20\xe4\xb8\xd8\xce\x5c\x0c\x3d\x73\xd4\xd4\x37\x26\x41\x71\xf3\x4f\xe5\xc9\xa1\x5d\x72\x6b\xe6\x03\xef\xd9\xd3\xae\x0a\x90\x90\xe6\x48\xa6\x12\xf7\x17\xf1\xfb\xa7\xb2\xde\x90\x0c\x7f\x48\xfe\xe3\xdd\xa5\x52\x94\xdf\xf1\xc0\x2f\xb3\x12\x06\xdc\x73\xb4\xb7\x10\x4d\x91\x12\xbc\x81\xd0\x3f\x07\xd8\x1c\xbf\x70\x47\x90\xd8\xfa\x4e\x93\xa0\xf0\x75\x45\xb4\x5b\x10\x28\xee\x10\xb8\x64\x29\x3e\xe4\x0a\xcc\xa1\xac\xf9\x2a\x4f\xcf\x66\x42\x92\xd7\x21\x1d\x3a\x3f\xe5\xa7\x5f\xe5\xb8\xb1\x08\xac\xe8\x23\xeb\x35\xd5\xcb\x62\x06\x12\x57\x6e\x41\x76\x03\x16\x8f\x4a\xc7\x78\x05\x18\x2f\x86\x7c\x95\x90\xa7\xe7\x58\x52\xfa\xa8\x4f\x0c\x47\x2e\xeb\xba\x85\xa0\xe6\xfa\x29\xde\x0b\x5b\xf0\x0b\x12\x31\x10\xb7\x1f\x52\xc4\x78\xc8\x03\x8e\xb3\x74\x70\xe6\x4b\xae\x97\x48\xa7\x43\x9e\x98\x9f\x6b\x79\xca\xd1\x85\x06\x33\xb3\xbd\xed\x6e\x5c\x09\xa5\xd7\xba\x36\x38\x8e\x8e\x33\x45\xf7\x78\x93\x34\x4f\x5c\x4d\x75\x93\xd7\x2f\x63\x6b\xe3\xbe\xff\x5f\xec\x49\x30\xcd\xa3\x2f\x92\x74\x4b\xa8\x43\xbe\x4d\xcc\x69\x95\x69\xc1\x3b\x5c\xe1\xb7\xbb\x22\x0f\x44\xa5\x32\x65\x1d\xa0\x87\x7e\x87\xdd\xb7\xab\xb8\xf0\x54\x38\x54\xa8\xa0\x59\xeb\x75\x63\x9d\x5a\x24\xdd\x41\xbd\x62\xea\x34\x0d\x81\xe1\x0e\x9d\xc3\x17\x31\xbf\xc0\xa0\xf7\xb3\xe9\x61\x6d\x86\x69\x92\x79\xb8\x13\xa8\x6f\x96\x67\x7a\x70\x47\xdb\x65\xdd\x7c\x2c\xa0\xd0\x16\x0d\xd8\xdf\xc1\x6d\xd2\x17\xbe\x1e\x8a\xeb\x68\x88\x53\xc8\x70\x7b\xf5\x77\x26\xb8\xa3\x17\x9f\x28\xaa\xcc\x15\xe5\x16\x02\xba\xaa\x0e\x94\x4a\x7b\x47\xd4\x47\xd6\x0e\x96\x17\x6d\xdb\xb3\x47\x23\xfa\xed\x88\x4a\xa1\x8b\x0d\xad\xe3\x17\x4c\x7d\x8c\xf8\x54\xe7\x48\xfd\x70\x16\x19\x63\x5d\xda\xa1\x9c\xdc\x01\x62\x87\x0f\x67\x78\xbb\x10\x35\x7a\x79\x26\xb1\xdf\x1c\xa4\x5b\x7e\x1e\x79\x84\xd4\xfc\xca\xa4\x9f\xc5\x68\xea\x93\x5c\x6e\xb0\x41\xb8\x40\xd3\xe5\x43\xc1\x8c\xdd\xbb\x4a\xe2\x76\x9b\xc5\xe4\x13\xe4\x9a\xb2\xea\x8a\x72\x81\x6a\xce\xb3\x93\xa0\x3f\xf4\x0e\xee\x9b\x39\x0a\xf0\xac\xb1\xbe\x05\x18\x0d\x2c\x74\xd8\xdc\xbd\x9b\x8c\x6c\xee\xcf\x1a\xba\xd6\x3c\x0d\x7f\x59\x70\x73\xe5\xe3\xb2\x63\x91\x1d\xac\x81\x60\x83\xa0\x77\x57\xb8\x33\xb4\x3d\xcc\xf3\x05\xe4\x15\xf4\x82\x14\xe7\x8c\x2c\x07\x4e\x10\x4c\xa3\xf4\x4c\xbb\x45\x93\x86\xdf\xde\x91\x64\x91\xb4\xef\x17\xc3\x6f\x7b\x51\xfb\x33\x5c\xce\x2d\x74\x1a\x34\x34\xbb\x71\xe1\x84\x7f\x6e\x52\x65\x04\x74\xf8\x19\xa9\xf3\xff\x44\x96\x8a\x89\xd9\x37\x24\x51\xbd\x5c\x41\xde\x2a\x5c\x3e\x21\x73\xbb\xd3\x6c\x99\x36\x88\x4b\xf5\x82\x57\x63\x28\xc5\xc4\x9a\x4d\x94\x1d\xf9\xaf\x8e\x7b\x49\x37\x51\x2d\x51\x73\x46\x0d\x0d\xe0\xb9\x35\x3a\x95\xae\x44\x1b\xa5\x05\x03\xf0\x6c\x59\x21\x22\xfa\x2c\xbd\x4c\x2c\xa9\xc9\x3e\x43\xb4\x9b\xb2\xca\x8b\xa4\x0b\x5e\xd7\x7e\x4f\x9d\x6c\x79\xf9\x8b\x93\x84\x58\xef\xe6\x59\xd7\x89\x21\xc0\xae\x03\x3a\x01\x80\xae\x8e\x5e\x93\x66\x67\x32\x1c\xe5\xa5\xf6\x2b\xbc\xca\x48\x7d\x87\xf4\x05\xf5\x75\x94\xfd\x6d\x36\xba\x64\x36\x91\xa7\x69\x5e\x20\x5b\xf7\x42\x41\xbb\x8d\x02\xa3\x75\x05\x76\x51\x38\xa0\xf2\xb4\xe7\x0a\xa1\xe0\x63\x8d\x3f\x05\xa6\x06\x5a\xa6\xbf\x8c\xd2\xd0\x58\x7e\x81\x80\xa0\x4a\x84\x1e\xca\xb0\x6f\x87\x37\xef\xe5\x64\xb7\xb7\x95\xbc\xf6\x3e\xc4\x62\xf3\x84\x45\x62\x06\x84\x03\xec\x28\x96\x2a\x76\xc0\x79\xb4\x8d\xfd\xa1\xe0\xd1\x95\xf3\x33\x1a\x87\x75\x1d\x58\x56\x6e\xd4\x0a\xf5\x9e\xde\x27\x7d\x11\x46\xfa\xab\x45\x12\x67\xb2\x6a\x50\x5d\xdc\x93\x55\xa3\x8a\x71\x4c\xd2\xe2\x51\x4e\x37\x4e\x8a\x7c\x2e\x24\x94\xd7\x22\xb6\x7d\x97\xcf\x8c\x8d\xf0\xe9\x14\x27\xaa\x1c\xe5\x59\xc9\x0c\xc2\x3b\x93\x90\x81\x5f\x20\x9c\xc8\x2c\x45\x5e\xac\xfc\x52\x75\x0f\xb7\x3a\xa8\xbe\x69\x56\x20\x59\x9d\x17\x17\xe2\xf6\xc0\x2e\xf9\xda\xbc\xd0\x17\x33\x39\x81\x2d\xfe\x0a\x20\x57\xaf\xf7\x78\x8d\xa1\x7a\xd7\xfc\x1f\x28\x0f\xbb\x34\xb5\xdc\xda\xd4\xb3\x5b\xc1\x83\x00\x67\x3a\x62\xe4\xe6\x4e\x33\x80\x32\x4d\x93\x15\x2f\xc4\x63\xf0\x4c\x52\x2e\xf9\x6c\xe6\xfb\xef\xdd\xb7\xb7\xbe\x38\x24\xd1\x87\x4c\xb4\x2c\x5c\x9d\x05\xdd\xc2\x72\xe3\x80\x38\xbf\xc9\x84\x96\x7c\xc5\x55\xf9\x18\x33\x7e\xcf\x9a\xd8\xe7\x15\xd5\xa9\xc1\x51\x74\xdd\x63\xf2\x45\xc0\x55\xbf\x87\x87\xaa\x51\x16\x5d\x1e\x14\x05\xaa\xb3\x84\x01\xc6\x15\x8d\x4e\xea\x1c\x4d\x7e\x10\x1f\x90\xa7\xf2\xcf\x0b\xf7\x0a\x4f\xfd\x0a\xf2\x55\x9f\x7e\x04\x7a\xfc\x16\x6c\x2a\x04\xf3\xf5\x28\x24\x8d\xf7\x22\xa6\x3f\x80\x79\x32\x1f\x30\xd5\xb7\xa5\x2a\xc3\x39\xff\x0f\xc4\xc3\xcc\x5e\x90\x8a\xe9\x6d\x4f\x5c\x2f\x5c\xcf\xb9\x61\x2c\xfa\x00\x41\x5b\x8e\xa8\x83\x9f\x36\xb1\x59\xa5\x19\xab\x8b\xcc\xf4\x98\xc2\x4c\x62\x76\x3c\x5f\x57\xff\x3d\xb7\x22\x0a\x61\xf5\x9f\xc1\x61\x77\x1e\x77\x55\x5f\x34\xc8\xa5\xec\x6a\xc7\x01\xd7\x0d\x28\xf4\x1b\x44\xb3\x7b\x63\xb2\xdd\xdf\x89\x5f\x7d\x36\x64\xcc\x1f\xe0\x3e\xa2\x5c\x58\x90\x83\xd3\x16\x59\x20\x01\xbd\x8d\x80\x80\xc7\xf0\xef\x05\xf1\x6e\x1e\x2e\x64\xf8\x78\x0c\x33\x5a\xad\x1b\xa5\x8d\x8b\x8a\xe4\x4e\x14\x14\x50\xaf\xcb\x10\xd0\x5a\xcf\xf2\xd8\x50\xdb\x5c\x97\x5b\x8e\xfa\xe7\x3e\xbe\x2c\x6a\x29\x28\xcc\xe1\xb7\x7f\x84\x25\x80\xe8\xf1\x76\x04\xc8\x95\x71\x3f\x25\x4f\x30\xcb\x84\xcd\x5f\xd6\xba\x6e\xa1\x23\x79\xaa\xcd\x29\x43\x22\xb2\xe4\x62\xa4\xc4\x07\x77\x04\xfa\xe8\xee\x30\xd1\x6c\xda\x8e\x55\x11\xaf\x24\xb1\xb5\x69\xf1\xb7\x34\x15\xd0\x17\xe4\xc2\xb9\xec\x8a\x2a\x49\x5d\x4b\x66\xdf\x66\x06\x58\xdf\x54\xbd\x8e\x42\x1b\xa1\x74\x59\xbf\xc5\x9e\x13\xfa\xa6\xfa\xc2\xcb\x8f\xf4\x92\x72\x94\x07\x84\x29\x6e\x23\x2b\xd8\xdc\xa7\x93\xd1\x65\xaf\xe6\xab\xaa\x66\x8d\x65\x0d\x1a\xb5\x5e\xd3\xad\x10\x09\xfa\x74\x55\xb1\x1d\xc8\x45\xee\x46\x04\x6c\xfe\xb6\x6c\x4f\xf4\x67\xd5\x03\x1a\xe9\xda\xdb\x8d\xb7\x29\xae\xaa\xb8\x3b\xb0\xc5\xa8\xe6\x8e\x11\x75\x98\xce\xf1\x01\x91\x8f\x8b\xea\x89\x96\xb7\xef\x3e\x89\x1f\x44\xa3\xe2\x1a\x4f\x18\x3e\x96\x8f\x8f\xbb\xa7\xc1\x00\xdd\xc2\x3f\x96\xf0\xee\x7d\x61\x3c\x6e\x50\xc5\x29\x71\x8c\x2f\x48\x4f\xd7\x0e\x51\x7c\x55\x13\xdc\x93\x85\x0b\x48\xca\x19\xa0\xfa\x8c\x74\x41\xc7\xf8\x5f\xca\xf2\x40\x5c\xbb\x02\xf5\xf4\xfb\x33\xbd\x97\x9d\x3b\xdb\x71\xb7\x3b\x2e\x2d\xea\x1b\x94\xa4\xe5\xfd\x86\x74\x9c\x62\x7d\xfd\x27\x37\x8a\x42\x41\x05\x07\x85\xd9\x7b\xb2\x73\x4c\x9a\x43\x3e\x8b\x09\x63\xc9\xd3\xb1\x71\x29\xbe\x8d\xcd\x91\x1e\xf3\xa5\x52\x12\x67\xf3\x32\xa3\xe3\x81\x84\x27\xae\x2c\x2e\xfa\x74\x5f\xee\x13\x5e\xbc\xed\x1d\x8d\x59\x6d\x85\x78\x60\x68\x07\xeb\xb5\x3f\xeb\x7a\x6e\xd9\x65\x3d\x8d\x73\xfe\xa0\x09\x9e\x00\x67\xc9\xb6\xb0\x70\xa3\xc2\x95\x2e\xab\xbc\x18\xbe\xe1\xed\xc4\xdf\xcc\xae\x19\xa0\x18\x83\x7d\xad\x2a\x37\x94\xd1\xfc\x9c\xb4\x02\xcc\x60\x5d\x4e\x1b\xcf\xb9\xf4\xc9\x95\x36\x22\x4c\xc5\x85\x64\xdc\x8b\x64\xb9\x22\xbd\xc4\x8b\x92\x9d\x18\x56\xb5\xc9\xe3\x71\x94\x17\xd5\x72\x9e\x26\xb9\xa6\xbd\x26\x0f\xd6\xf2\xc6\xa7\x97\x26\x4f\x7b\x30\xa2\x13\x24\x4b\xe5\x7a\x73\x75\x38\xc4\x6a\x45\x3e\x86\x47\x77\x2b\x62\xc3\x24\x7f\x33\x97\xea\x63\xbf\x1c\xc8\x09\x8e\x6a\xfe\x4d\x42\xcd\xb4\x88\xc6\xa5\xd3\x09\x7c\xe2\x63\x54\xe2\xa5\x60\xbf\xe0\x79\x00\xfb\x7a\x06\x3d\x1e\x7d\x31\xd5\xe3\x29\xf2\xe1\x97\x5a\x5f\xfd\x2d\xef\x8d\x88\x05\x05\x04\xd9\x51\x85\xb6\xaa\x9b\x24\x10\xac\x53\xd6\x92\x6a\xce\x29\x0d\x29\xd3\xa2\x96\xd3\xd4\xe6\xa9\x92\x70\xa8\xc4\x2c\xc4\x01\x91\xc0\x5e\x11\x06\xb4\x39\x39\xb3\x55\x23\xbe\x16\xb6\xa4\x4a\x6f\x99\x36\x50\x68\x06\xfe\x54\xea\x39\xb5\x5a\x8b\x68\x3e\x7c\x56\x0e\x76\xe5\x81\xac\x05\x54\xfd\xb1\x88\x8c\xe3\x2f\x48\x07\xc4\x4b\x6f\xef\x9e\x52\xdd\x32\x12\x29\x44\x11\x94\x9e\x58\x9f\x2a\xc6\x4e\x6e\xc0\xa7\xad\xb8\x62\x29\xae\x92\x21\xcb\x85\xa3\x0c\x36\xde\x57\xa8\x6d\xc5\xd3\xa9\xdc\x5e\x7f\x7e\xe3\x53\x04\x44\xcc\x3a\xfa\x7c\xe8\xef\xdc\xc1\x67\x36\xe4\x4f\xe0\x5e\x9d\x61\x4f\xc8\x7b\xf2\x65\x50\xc1\x2d\x74\x42\x8f\xfe\x9c\x88\xff\xe9\x3b\x4d\x48\x52\xe3\x3c\x89\x42\x2a\xba\xa7\xd5\xda\xa0\xa4\x60\x47\xe1\xc6\x20\xb7\x7b\xb1\x5d\x15\xe3\xe1\xc8\x55\x2d\x66\xc4\x92\x0c\xd3\x59\x52\xff\x3f\x54\x24\xaf\x4b\x21\x67\x28\xd8\xfa\x56\x1b\xee\xb6\x61\xa6\xdb\x5d\xed\xa6\xae\xe4\x2e\x06\xdb\xfd\xcf\x36\xea\x0e\xee\x30\x97\xfa\xe5\x71\x0a\x86\x0b\x96\x31\x90\x93\x7a\xed\xb3\xb8\x40\xc4\x9d\x0f\x1d\x8a\x2d\x70\xea\x07\x10\xeb\x9d\x88\x9a\x09\x57\xb1\x12\xb1\x2c\x1f\xeb\xf8\xda\xa1\x27\x19\xda\xdc\x14\x7c\x3f\x80\x68\xaf\xe2\xd9\xe0\x19\x3c\x20\x66\x69\x91\x8f\xcb\xd2\xa5\xad\x60\xfb\x03\x18\x87\x79\xd1\xcd\x7e\xb9\x97\xdb\x65\x5c\x25\xa5\x67\x0e\xa3\xde\xda\xd4\x21\xd7\x82\x4d\x6b\x5f\x24\xb7\xa7\x95\x3c\x1d\x67\x55\x5c\x24\x8a\xaa\xc6\x78\xe3\xa6\xac\x70\xbd\xfe\x5c\xe0\xa0\x4b\x13\x79\x54\x8d\x80\x10\xee\xf1\x3d\xdf\x37\x6e\x10\xaa\xaa\x37\x79\xec\xf4\x26\xc9\xdf\xd4\x67\x21\x2a\x6b\xb3\x57\xab\x3f\x87\x41\x29\x58\x53\x26\x48\x59\x15\x81\x4d\x6e\x72\xf6\x01\x67\xf8\x0f\x9b\xd8\x4d\xa3\x3c\x75\xe5\x1c\x0b\x20\x6b\x08\xc3\x67\x3f\x1d\x91\xfe\xfd\xcf\x1a\xe4\xf4\x5f\x6e\xc7\x69\x9e\x39\xa2\x66\x9f\x91\x9c\xc2\xda\x40\x8f\x58\x44\x8f\x31\x15\xf4\xda\x14\xac\x02\x52\xff\x75\xf4\xa4\xef\xcd\xda\x65\xef\x6c\xff\xf2\xae\xdd\x2f\xec\x3e\xb0\x5f\x7a\xda\xc8\x98\xcf\x4e\xa6\x18\xbd\xe4\xab\x84\x39\x92\x09\x47\xd6\x5b\xdb\x84\xd9\x37\x7e\xf9\x97\xea\x6f\xef\xfa\x53\xa2\x3e\xca\x39\xd4\x17\x53\x08\x85\xb1\x4b\x81\xab\xd4\x39\x7e\x44\x9c\xfd\xeb\x24\x9f\x72\x0b\x0b\x58\xff\x81\x44\x2b\x66\x6d\x34\xeb\x7a\x7b\x9c\xf5\xf4\xf6\x5b\x9a\x8f\xdb\x8f\xce\xd9\x67\xf8\x6a\x08\x6e\xc7\x67\x36\x70\x7d\xac\xe6\xe3\x2a\x3f\x34\x1e\x8e\xc6\x44\x66\xfd\x74\x42\x50\xec\x4f\x09\x45\x3c\xc8\x87\xee\x29\xd9\xe8\x54\xde\xbe\xec\xb9\x75\xa4\xe2\x7e\x62\xc2\x77\x1b\x9f\x09\x11\xff\x18\xab\xb6\xac\x49\x4c\xd2\x79\xbf\xdc\x05\x14\x96\x1f\x30\x3e\xf3\x36\x75\x0c\x5b\x6b\x64\x24\x7e\x3d\x6a\x7d\x6d\x97\xc7\xca\x05\x44\xfb\x37\x80\x8f\x32\x72\x96\xdc\x69\x6f\xb6\xb9\xcf\xab\x44\xa2\x1c\xc7\xa7\xfa\x90\x6d\xea\xb2\x2c\x1f\x67\x5d\x37\x87\x8f\x8d\xec\xf8\x18\x62\x21\x8a\xba\xcd\x1d\xe6\xd9\x35\x79\xb2\x41\x36\xd5\xf5\x34\x14\x28\x52\x3b\x0a\x81\xef\x02\xf5\xe8\x46\x85\x1b\xc5\xab\x43\x97\x29\x4a\xcb\x13\xba\x02\xb9\x6b\x26\x5e\xef\xd9\xd3\x46\x1d\x85\x51\x18\x6e\x21\x7c\x88\x71\x8d\x41\xbc\x3d\x81\x27\x3d\x97\x64\x20\xdc\xef\x55\x92\x28\xbd\x80\x55\xab\x2f\x9a\xbe\x4d\xcf\x15\xc9\x4a\x10\xc2\xb5\x5e\x57\xcb\xcb\x26\x9d\x9f\xf9\xad\x7a\x6d\x95\xf9\xb8\x1a\x1c\xf6\xac\x71\xc5\x14\xc8\xd7\x32\x7c\xc1\x54\x80\xee\x0f\xd2\x55\x49\xbd\x90\x29\xbd\xcb\x38\xd2\x53\x92\x7e\xa0\x51\xb1\xa9\x43\xb6\x93\x97\x88\xfb\x59\xa6\xc9\x68\x41\xd6\xa7\xca\x3f\x71\x9a\x74\x6a\xc2\x71\xf3\x5e\x44\xea\x3d\x97\x90\x28\x99\x66\x94\x05\xd1\x24\x2b\x45\x6f\xfc\x60\x60\xb0\xca\x27\x42\x09\xc1\xac\xc1\x46\x93\x9e\x43\x6e\x54\xc1\x7d\x07\x19\xd4\x23\x1d\xaa\xa9\x6e\x71\x53\x47\x76\x01\x72\x88\x93\x44\xd6\x1f\xac\x8e\xf2\x7e\xba\xda\x75\xc3\xa4\xcb\x70\x41\x12\x79\x38\x3f\x43\xd8\xf0\x42\xa0\xa3\xc4\xf5\x5d\x3a\xc7\x10\x18\x2a\x20\x6f\x44\x53\xb0\x97\x8d\x8f\x6f\xdf\x8e\xf6\x72\x5c\x2c\xbb\x2a\x94\x93\x88\x6a\x9b\x05\x6c\xa9\xd7\x9d\x50\x28\xf4\x4a\xc5\x4b\x7a\x59\x38\x1f\x4e\xd4\xa8\x11\x5b\x67\x16\xc6\xfa\xca\x2b\x75\x79\xdf\x3d\xe4\xab\x1d\x3c\x64\xb5\x75\xd2\x17\x33\xeb\xff\xa5\x7d\x3b\xda\xdd\x42\xbc\x3e\xc2\xbc\x9a\x1d\x98\x59\x8c\x3e\x1d\x3b\x4c\xa3\x30\xb9\xbf\xcb\xe4\xa2\x6b\xda\x0f\xf3\x3a\x35\x7e\xe2\xaa\xb9\x30\x8a\x97\x73\xd4\x3f\xdc\x3a\x83\x88\x3b\xb8\xe3\x85\x3a\x17\x52\xa1\x5d\xa4\x25\xd0\x9b\xd3\x6b\x0f\x1c\x8f\x7b\xaf\x8e\x4b\xf1\x85\x68\x05\x58\x00\x92\x5d\xbd\x5e\x6b\x82\xa5\x0c\x9d\xf7\x21\x52\xad\x3d\x72\x06\xfa\x88\x5a\x0a\x87\x32\xcf\xd2\xb7\x8f\x0e\x21\x5a\xbd\x9e\x61\x86\xc2\x54\x7a\x28\x8a\x8d\x61\x8b\xeb\xde\x22\xec\xcc\xa5\x09\x57\xcc\xa3\x24\x1f\x97\x73\xe4\xe9\x46\xb0\xfe\x73\x6c\xc8\x75\x62\x66\xb4\xf2\xca\x2b\xed\xd1\x18\x72\x82\xd8\x17\xf7\x69\xad\x7c\xc6\x28\x23\x00\x93\x4c\xbd\x27\x74\x14\x07\xf1\xeb\x2e\xcd\xc6\x60\xdf\x7b\xb0\xfd\xaf\xbf\xa4\xd7\xb7\x68\x30\xf9\x69\x13\x39\xa2\xc8\x57\xe3\x54\x51\x0b\x2a\xb3\x39\x25\xb9\x69\xfb\xdf\xc5\x65\xe2\x8a\xad\x12\x1b\x70\x6c\x5f\x41\x00\xf0\x06\x43\x7e\x0b\xbf\x3f\x45\x44\x98\x30\xf1\x24\xac\x82\x47\x31\xa9\x90\x45\x74\xec\x99\xce\xe3\x1e\x7b\x6e\x76\xbe\x86\xf2\xbb\x80\x77\xb3\x01\x45\xc3\x57\x50\xa4\xe9\x14\xd1\x5d\xbe\x83\x91\xde\x1b\xa4\xf0\xbb\x71\x51\x40\x4f\x42\xd9\x0a\xd1\x14\x75\x21\x48\xb5\x65\x79\x71\xd8\xf5\x93\x38\x6b\x91\x36\xf9\x84\xf4\xc8\x27\x0d\x7e\x27\xae\x37\xee\x06\x43\x03\x3f\x1b\x09\x6c\xd6\xa3\x33\x50\xca\x3d\x7b\xda\xa9\xeb\x27\x65\x2a\xeb\x8e\x69\xb0\x47\x27\x84\x24\x97\xa5\x05\x68\xcf\x7b\xd4\xbf\x5a\xc9\x2b\xd7\xdb\x12\x24\x78\x01\xf5\xd1\x6b\x59\x39\x36\x48\xae\x1f\x93\xc9\x44\x87\xb9\x17\x0c\x8f\x90\xb5\xfe\x98\x1c\xe6\xe2\x5e\xcf\xf5\x1e\x09\x6d\xf1\x7f\x29\x7f\x1f\x7d\xed\x3b\x48\xdb\xd0\xb0\x51\x55\x76\xaf\xe8\x57\x07\x18\x5b\x8d\x84\x88\x03\xaf\xcf\xe4\x14\xea\xcf\xeb\x45\x61\x76\x1d\xd0\xe4\xee\xfe\x24\xd8\x15\x16\x6e\x39\x75\xaf\x25\x2b\xb2\xdf\x7d\xe7\x0c\x28\x17\x53\x9f\x6d\x50\x0d\x58\x8e\xd3\x14\xb7\xd0\x4c\xba\x5a\xde\xa0\x1b\xb2\x40\x48\x57\x6e\x10\x82\xb4\x70\xab\xe8\x92\xa2\x3b\xf8\xcf\xf0\xb1\xf5\x45\xc4\xa6\xf0\x59\x2f\x01\x6c\xcd\xdb\x3e\x04\x43\x81\x63\x94\xa8\xdc\x8a\x02\xaa\xd9\x75\xf3\x2c\x1f\x26\x65\x55\x6e\x0b\x60\xb4\xb7\xd0\x3f\x54\x69\x3e\xe9\x19\xa2\x72\x43\x15\x87\xc3\xf9\x5b\x9c\x23\x9e\x8e\x68\x58\xf5\x3e\xd6\x2c\xba\x20\x57\x27\x61\xba\xf4\xad\x99\x25\xb9\xeb\x40\x3b\xae\xd2\x38\x33\xa1\x4a\x24\x93\x3a\x07\xd4\x17\x9d\xf0\xd8\xcb\xca\xc5\x43\x39\x2d\x11\x70\xee\x4e\x8d\xae\x5a\x64\x33\x19\x82\xed\x72\xdc\xad\xf2\x62\x75\x4b\xe8\x26\x5c\x22\xf1\xc9\x4b\xe8\x8a\xd9\xe8\x4c\xc2\x88\x19\x7c\x86\x39\xc6\x8d\x09\xa1\x9a\x6f\x44\xdb\xc3\xcc\x63\x5b\x98\x0d\xb7\x3a\x75\x78\xf3\xf4\xb8\xa0\x84\xfa\x34\xa4\xf0\x64\x59\xc4\x5f\x5a\x0b\x18\xec\x5f\xee\x90\xd4\x91\xda\x82\x99\x99\x3d\x97\x08\xb3\xaa\x8b\x07\x77\xb4\x97\x5c\x3f\x81\xa9\xa4\xaa\x2e\x92\xbb\xce\x99\x30\x97\x1c\x39\xd7\x53\x0c\xb9\x47\x06\x78\xb6\x1f\xbe\xa3\x71\xa1\xa7\x8d\x30\x4c\xf6\xd0\x2a\x0c\x1a\xf6\x7f\x4a\xc7\x76\x56\xc5\xf3\xa1\x59\xaa\xc9\x1c\x9e\xdc\x5d\x2e\x36\x20\x32\x62\xbc\x93\x19\xe3\x98\x5d\xfa\x9c\xc8\x3b\x1a\x99\xb8\xe1\x7c\xe9\x81\x26\x59\x1a\x67\xbd\x39\xe1\xb9\x91\x10\x9e\x4e\xfe\x2c\x19\x9f\xf2\x57\x2f\xab\xa7\x82\x89\x0d\xd2\x3a\xf4\x62\xfe\x2d\x71\x1f\xb5\x95\x86\xdb\xb4\x2e\xe7\x03\x3a\x1b\xda\x19\x43\xab\xfc\xba\x38\x6a\xe2\xeb\xde\x42\xbf\x4e\x53\x28\xfc\x7d\x75\x5d\x9f\xb0\x4f\xd7\x65\xc6\x8f\xcc\xaf\x85\x6e\xe5\x76\xc8\xa5\x9a\x8b\xb7\x6c\x3b\xec\x9b\xf3\x52\x05\x81\x93\x70\x1e\xeb\xd2\x67\x6a\xf5\x93\x40\xdc\xdb\xdc\x79\xda\xf3\x97\xe2\xac\x3b\x48\x4a\x67\x90\x03\xbc\x27\x04\x44\xf4\x9a\x35\x1d\x93\x9e\x3c\x36\x22\xb5\xef\xf7\xad\x5d\xf9\x6b\x5e\x2a\x60\xdf\x0e\xbf\x42\x8d\x1f\xd2\x75\x99\x66\x92\x96\x77\x04\xcc\x06\xec\x66\xb1\xc0\xef\x52\xc8\x94\x4d\x9e\x8c\x44\xd7\x22\xf0\xd9\xef\x13\x9f\xfd\xbe\x87\x0f\xc4\x69\xac\xe4\x1b\x85\x26\xc9\x4f\x19\x4c\x29\x20\x5a\x7b\x49\xa9\xe8\x28\xb4\xc4\xf0\xe8\xb5\x34\xd6\x17\x04\x80\xed\xe6\xc3\x91\xab\x84\x8e\x3c\x1f\x54\x6a\x94\xc6\x68\x54\xab\x20\x39\x72\x21\x62\x9a\xd7\xc6\x25\x5b\x17\x90\x49\xf7\x90\x43\x3a\x89\x87\x76\x04\x7f\x59\x5f\x44\x6c\xba\xb7\x9a\x67\x6e\x81\x6c\x54\xd0\xc4\x40\x69\xa3\x75\x8e\xfe\xc3\x24\xa8\xc3\x9e\x9f\xf2\x17\x79\xca\xa3\xff\x5e\xcd\x29\x0d\xc4\x6d\x81\xb4\xb5\x5e\xd3\x83\xce\xe3\xd1\x1c\xf9\x5e\x1f\x27\xeb\x1b\xc8\x10\xaa\xba\x44\xa3\xc4\xe5\xc0\x15\x0b\xa1\xeb\xa3\xd6\xd8\xf8\x98\xdb\x3a\xc1\xf5\x1a\x9e\xc4\x08\x23\x17\xb5\x21\x6e\xd0\x23\xde\x86\x49\x5e\x3c\x5e\x6f\x43\x6c\x91\x33\x72\xb0\x68\xd7\x5e\xe9\x0b\x36\xd8\x22\x52\x12\x75\x00\x8f\x4d\xcb\x23\xc9\xde\xc3\x02\xfe\x57\x11\x79\xf6\x5c\xe7\xd1\xe9\xdf\xc3\xde\xb1\x2c\x9b\x8c\x99\x7e\x26\xfd\x75\x3f\x56\xdf\x67\x22\x51\xeb\x0d\x4d\xd4\xc5\x76\x91\xe7\xc3\x61\x10\x65\x69\x24\x04\x3f\x4b\xc4\xbc\x42\x3c\x20\x45\x7d\xd0\xd3\xfe\x6e\xd3\x74\xf8\x36\xd1\xf8\x24\xb5\x4f\x24\xb7\x57\x29\x17\xc0\x37\x94\x4c\xa3\x2f\x9a\x24\x10\x97\x12\x04\x69\x8c\x0f\x14\x7c\xaf\x2f\xd6\x08\x69\xd1\x93\x81\x89\x3f\xcf\x1e\x44\x9b\xbf\xac\x4d\x15\x28\x86\xa2\x81\x7e\x0b\x37\x0e\xfd\xbb\xa3\x8d\xf6\x0a\xa3\x71\x2a\xcc\xc4\x75\x64\x17\xeb\xe7\xc9\x93\x34\x2e\x86\x65\x55\xe4\x3a\x36\x26\x47\xf3\x45\x4f\x2f\x09\xd0\x7c\xd7\xeb\x25\x9a\x4e\xda\x88\xa3\x45\xa2\x43\xe1\xb3\xb2\xb8\x93\xd9\x34\x22\xa5\xf6\x55\xac\x37\x6f\x3d\x4b\x63\xe3\x2c\x5f\x79\xfe\x51\x89\xae\x44\x97\xd9\xa5\x2b\x49\xd5\x2a\x51\x59\x5f\x96\x5a\xc4\x5a\xe1\x53\x29\x62\x48\x1a\xde\x9e\x04\x88\xd5\x25\x6a\xf9\x9d\x8c\x08\xc0\x82\xd9\x9b\xd2\x6d\x91\x44\x21\xb4\x7d\x63\x83\x60\xcf\xf0\x17\xe5\x4e\xe3\xb7\xb6\x83\x37\x83\x58\xf0\x59\x14\x8c\xb7\xef\x44\xb4\xde\xd5\xdd\x15\x6d\xcf\xdb\x13\x0a\x25\xbf\x33\x09\x36\xa9\x7f\xcc\x7a\xd4\xf7\x64\xbd\x19\xe2\x95\xe7\xa0\x57\x27\xf4\xfd\x11\x5d\x71\x1e\x6e\x59\x0b\xd1\xe7\x6e\x24\xee\x77\xc8\xea\x4f\xca\x00\xcb\x6c\x78\xea\x9d\x83\x5b\x7e\x71\x42\xc6\x5a\xf7\x64\x4b\x63\x31\xcd\xad\x05\xc8\xe7\x56\x49\x8d\xb0\xd5\x4f\xc9\x4d\x45\x6e\x69\xc2\x30\xc6\xf4\x95\x5b\x69\xfc\x7f\x32\x76\xbb\x17\xb5\xbe\xfa\x5b\x1e\x9e\x2f\xfb\x1e\x07\xcc\xcd\x46\x87\xde\xbc\xe8\x43\xe4\xc4\xb4\x2c\xea\xef\x67\x1a\x17\x8d\x0e\xdd\xaf\x25\xdd\x58\x1d\x46\x4d\x90\x5a\x1e\x90\xa5\xc0\xd6\x9a\x5b\x8e\x93\x62\x39\x71\x69\x4f\xfb\xfb\xb8\xb5\x17\xd9\xd0\xbf\x91\x74\x58\xb8\x15\x17\xa7\xea\xd0\x64\x02\xc7\xf2\x05\x75\xe0\xcc\x72\x0a\xb3\x6e\x14\xfb\x76\xb4\xdd\xd0\x29\x69\xe6\x65\xdf\x7c\x09\x18\x26\x85\xf5\x59\x17\xda\x12\xd4\x41\x5c\x09\x64\x1a\x01\xef\xbb\x58\x34\x1a\x31\x27\x01\x18\xb1\xa9\x23\xb7\x14\x5b\x43\x07\x92\x88\x52\xdf\xc5\xa2\xb3\x51\x53\x38\xd0\x52\x17\xf7\x5c\xb1\x40\x1e\x1a\x5b\x05\x8a\x82\x5f\x3b\x4e\x9e\x2d\x17\x89\x11\xfc\x1e\xf6\xa0\xfd\xc3\x46\x78\x84\x08\xe9\x8d\xe2\xe2\x90\xa1\xb1\xbd\xd3\x52\xbd\xc4\x4c\x67\xc0\x92\x90\xe5\x71\x89\xa7\x8c\xd6\xf9\x3b\xf2\x37\xf5\x7a\x86\xda\xf3\xca\x2b\x6d\x68\x02\xe7\x5e\x65\xc0\x12\x1c\x22\xdd\x9e\x0d\xa9\x7d\xd2\xc7\xbd\xa6\x5a\xca\xce\x17\x9c\xca\x4a\xd8\x8a\x02\x63\xb8\x1c\x25\x99\x58\xcf\x78\xa4\x60\x68\x14\x03\xcd\xa8\xd7\xb2\xc5\x0d\x41\xd8\xe0\x96\xe5\x5e\xab\x5c\x56\xda\xf9\x8e\x73\xec\x66\x14\xa8\x0e\x37\x9b\xd5\x5f\xf1\x05\x87\x26\x5d\x68\x79\x24\xa5\x24\xe7\xbd\xf3\x7a\xcf\x0d\xe3\xac\x67\xcd\x09\x9d\x7a\xe2\xe9\xd8\x08\xf4\x59\xd2\x25\x46\x03\x20\x2f\x74\x05\x5b\x18\x24\x95\x83\xcf\x58\x7e\xfc\xce\xcc\xd9\xb1\x7b\xb1\x9d\xe5\x45\x35\x98\x0b\xa1\x06\xcd\x6f\x84\xad\x9b\xdc\x8e\xba\x42\x38\x9d\x32\x8f\x0b\xd7\x5b\x60\x38\x9c\xde\x57\x46\x79\xa2\xea\xf9\x53\xd9\xe7\x26\xd3\x8e\xe3\x69\xe6\xd0\xfc\x4a\x3b\xcd\x4b\xdc\x20\xeb\x41\xca\x07\xb7\xee\x24\x35\xd0\xe2\xa1\x2b\x62\x24\x96\x66\xbc\x41\xad\xea\x4b\xb3\xa4\xc1\xbd\xed\xbd\x2f\xee\x7f\xa2\x8e\x93\xb6\x70\x5b\xfb\x76\xac\xff\x14\x9f\x17\x8b\xfe\x3d\xf6\x08\xfe\x4c\x8b\x04\x6c\xcf\x9b\x48\xff\x3d\x90\xcc\x77\x1e\xaf\xe0\x18\xc0\xbe\x55\x0d\x7d\xe4\x33\xf7\x26\x34\x62\x3e\x29\x7d\x0b\xad\x18\x10\x95\xcd\xd2\x25\x70\x20\xe7\xd7\xea\x48\xac\x9b\x5b\x8e\x07\x33\x86\xf9\x02\x51\xfe\xfb\xfd\xd5\xa5\xd0\xed\xb5\x30\x81\x0e\x85\x5e\x37\x8d\x20\x0e\xc7\x65\xe5\x0e\xc7\x95\x2b\xe6\xa6\x78\xa4\xbe\x85\xf7\x48\x27\xa0\x3b\xe6\xd6\x02\xad\xb8\x84\xcd\x66\x5c\xa8\xc1\x2c\xe2\x18\x86\xbf\x7a\xdd\x28\xe3\xfb\xf5\x71\xe2\xfc\x34\xd4\x26\x08\x72\xb3\xf4\x45\x93\x06\x98\x8b\xd5\x34\xd4\x37\x8d\x3d\x96\xef\x1c\xb9\x8b\xf6\xf3\xbc\x57\x6e\x09\x5c\xfd\xbb\x34\x4a\xd8\x84\x26\xa1\x2f\xbc\xbd\x50\xda\xd5\x09\x77\xec\x09\x2f\xf3\x16\x69\x2f\x95\x6e\xc5\x15\x2a\x27\xfc\x82\x27\x58\x06\xd2\xce\x05\x5f\x07\x55\x2e\xcd\xb5\x78\x37\xe6\x5b\xfd\xb7\xbc\xd4\x6e\x18\x40\x5f\xa6\x62\xe3\x70\x5d\x96\x14\xad\x19\x4d\x6f\x43\xa7\xd2\xee\x72\x75\xac\x9d\x27\xaa\xd3\x49\x86\x8e\x02\x4b\xe3\x51\x42\x01\x50\x71\x89\x74\x18\x0e\x3b\x77\x28\x5d\x15\xe0\x28\x3e\xe3\xd5\x28\x94\xd7\x57\x27\x81\x69\xfa\xd3\x09\x9d\x16\x3f\x9d\x39\x25\x45\xb7\x7d\x18\x27\x99\x4e\x6b\x01\x6f\xb9\xc0\x6e\x93\x4d\x6c\xd0\xbd\xed\x58\x18\x89\x62\x15\x1f\xd8\xcf\x3b\xb4\x43\x76\x45\x62\xad\xf5\x82\x79\xd8\x3b\xc8\x0f\x3f\x2b\x90\x1f\xc4\xaf\x3b\x93\x50\x0d\x5c\x90\x37\x40\x1c\xdc\xa4\xba\x66\x5e\x09\xc1\xcb\xf5\xdd\x95\x8c\xc8\xec\x8b\x36\xaa\xdf\xbc\xa0\x40\x94\x47\x20\xbb\x0a\x78\xe0\x1c\x2b\x8a\x20\x11\xd2\x89\x0b\xf2\x51\x2c\xa8\x2b\x13\x96\xd6\x66\x90\x30\x00\xa2\x08\x55\x0b\x72\xde\xa2\xe8\xfa\x10\x45\x0e\x7a\xa6\x1a\x62\x4c\xfb\x23\xa0\xc1\x9e\x90\x92\xcd\x1a\xa6\x4d\xce\xec\x62\x1e\xab\x31\x1e\x99\xf8\x0d\x4d\x1b\x31\xc4\x50\x04\x78\xc0\xa4\x7b\x38\x67\x9e\x57\x4b\x71\x9a\x6e\xa1\x29\xd2\x5d\xf9\x7e\x88\x47\x6f\xe0\x96\x98\x3a\xa8\xef\x45\xfe\xd2\x93\x9d\x90\x9f\xbc\x23\x01\xcc\x7e\x66\xb6\x1e\x7d\xa1\x9d\x26\x2a\x00\x83\x9e\x12\x48\xed\xa8\xf3\xc1\xcb\x34\x2c\x57\xd8\x6c\x87\x5d\x9a\x76\xc5\x8c\xcc\xaf\x89\x3f\x91\x35\xa1\xd7\x1e\x8f\xe6\xc6\x45\xde\xcb\xd3\x34\x2e\xcc\x7a\x05\x30\x1c\xcd\xd3\x10\x50\x6e\x91\x18\xc9\x45\x6e\x0a\x6e\x5e\xb3\x8e\xdb\x28\x8d\x33\xab\x12\x71\x9e\x7d\x40\x56\xcd\x1f\xf8\xce\x5c\x91\xa7\xa9\x03\xc9\xd2\x3a\xc6\x54\x2a\xc1\x12\xdf\xf0\x0e\xb3\xf7\xa2\x9d\xe5\x95\x6a\x5f\x79\xcf\xdc\xe0\x9f\xdb\xb0\x4f\x5e\x16\x7c\xae\x4b\xf1\x3b\x48\xe8\x7e\x1c\x05\x1c\xd1\x8f\x1b\x34\xb6\xf6\xb7\x5f\x1d\x0f\x47\x0e\xd8\x27\x44\x0f\x3d\xe6\xf5\x05\xb1\x52\x44\x4e\x6e\x1c\xa7\x92\x91\x21\x85\x87\x6a\x9a\x5e\x33\x81\x25\x1e\x25\x55\x9c\xea\x3d\xf2\x0e\x4a\xc1\x4d\xc9\xc7\xbf\x32\x49\x57\xe2\x39\x5a\xce\x18\x43\xa1\x9d\xd5\xea\x10\x2c\xe9\x08\x77\x2f\x53\xe7\x96\xc7\xa9\xe8\xe8\x33\x19\xc3\xcf\x91\x79\xde\xec\x85\x7a\xf3\xac\xeb\x12\xc5\x6c\x61\x83\xfe\xc9\x24\x54\x30\x7f\x32\x93\xd1\x1c\x78\xb1\x3e\x49\x54\xa1\x1d\xd3\x02\x85\x1c\xe8\x8b\xb5\x10\x23\x7b\xae\x74\x45\xb5\x10\xda\x49\x6f\x46\xa4\x09\x8f\xdc\x10\x71\xfc\x2e\x51\x72\x8e\xc9\x3a\xd5\xff\xdf\xa4\xdb\x35\xcc\xcb\x6a\x81\xa6\x18\x9b\x3a\x32\x28\xc0\xce\xfa\x2f\x3b\x32\xd0\x47\xcf\xf1\x17\xa5\xe7\xc8\x29\x13\xa2\xde\xc3\xa6\x99\x78\xea\x96\xab\x79\x42\x10\x5f\xc4\xc2\x44\x3c\x82\xc9\x19\xa0\x52\x6f\x4d\xc8\x58\x7a\x53\x87\x7c\x6d\xf2\xc3\x59\xbf\x88\x7b\x48\x60\x15\x0f\x24\xc7\x82\x61\x83\x02\x9d\x3c\xce\xb2\xc4\x95\x8a\xe3\xc0\x1f\xbc\x3d\x8d\xea\x93\x6f\xa8\xce\xe9\x8d\xab\x74\x25\x4e\xc7\x96\x05\x98\xf9\xb7\x7c\x32\xb3\x05\xdf\x38\xd4\xda\x75\xa0\x9d\xe5\x59\x4f\xac\x6c\x47\x48\x06\x51\x7a\xe1\x90\xd7\xeb\xcf\xe5\x26\xa6\x89\x0a\xe1\x22\x2a\x9f\xa7\xbc\xe8\xbc\x47\x71\x98\x95\xb9\xba\x64\x98\xb3\x36\x67\x7c\x47\x26\xa4\xc2\xa7\x8b\xc7\x26\x55\x4d\x54\x24\x7b\x30\x96\xb4\x5d\x9e\xd0\x2c\xe9\x27\x78\x4a\x08\x5a\x9b\x05\xe5\x68\xe5\x4a\x43\x32\x5e\xb8\x51\xf9\x3c\x08\x71\x68\xbf\x6c\x5b\x63\xbf\xa9\x6d\x24\x6c\x50\xc6\x59\x0f\x9d\x4b\xa5\xe2\xcb\xdc\xce\xd3\xf2\x49\xf3\x55\x6e\x1e\x06\x18\xd7\xc9\xb4\xfa\xad\x99\xb1\x8f\xcc\xb3\x93\x62\x94\x17\xd5\x1c\x8b\x68\x73\x36\x7f\x82\x01\x99\x77\xa7\x00\xb9\xbd\x3c\x7b\xb2\x3e\x08\xf1\xa7\x8e\x4f\x02\x4b\xe1\xa3\x09\xc3\xf4\x31\x31\x46\x50\xd9\x04\xe5\x52\x85\xba\xa2\x12\x46\x52\xaa\xec\x61\x1c\x1d\xd7\x70\x92\x02\x8c\x71\x3b\x22\x7e\x80\x96\xd8\x2a\xbe\x13\x05\x42\xc6\x49\x34\x22\xf5\x57\x04\x8f\x86\x03\x52\x23\x0d\x66\x1e\xa0\x51\xe2\xe9\x7c\x12\x4d\xe9\xe4\x07\x90\x51\xcf\x8d\xf2\x32\xa9\xf2\x62\x95\x45\x63\x2e\x4d\xa6\xc0\xd4\x4d\x72\x6a\x83\x58\x34\xcf\xa7\x4d\x18\x03\x84\x87\xe6\xc6\x65\xdc\x2d\x92\xe5\xa4\xeb\x90\x69\x23\x33\x38\x85\x6f\xad\x2f\x08\xac\x33\x1a\xa7\x23\x34\xe9\x34\xcf\xa1\xe1\xd1\x9f\xc9\x23\x36\x62\x40\x48\x2a\x41\xb4\x9d\xa7\xa5\x7d\x14\x2d\x05\x9c\x04\x17\xe8\x2d\x8e\xe2\xd6\xe9\x3f\x10\xc8\x71\x84\x31\xb8\x47\x07\x7f\x4a\x8d\xf0\x4f\x49\x4b\xa9\x88\x57\x97\xc6\x05\xc6\xd9\x88\x10\x57\x38\x5c\x5c\x89\x02\xa6\x6a\xc5\x25\xa9\x87\xaf\xa0\x4d\xf0\x23\x82\x15\xff\x88\xf1\x19\x49\xaf\x97\x78\x43\x75\xdc\xf7\xcf\xf8\x21\x7c\x36\x03\x75\x79\xe5\x95\xf6\x70\x5c\x3f\x83\x39\xba\xad\xe7\xa8\x25\x31\x87\xed\x8d\xb4\xf8\xee\xe4\x51\xff\x40\x9e\x1b\xca\x0c\x51\x05\xc1\x64\x2d\xae\xb7\x30\x31\x44\x94\xfd\xf3\x09\x3f\x80\x49\x40\x7e\xfc\x1c\xde\xd2\x0b\xd4\x04\xe3\xbd\xfb\x51\x98\xda\x30\xc6\xe6\x75\x75\xb3\xf5\xb4\x6e\x26\x7c\x6f\x8c\x76\x3b\x77\x61\xcc\xdd\xf5\x0a\x18\x66\x0a\x4d\xb1\xf5\xde\x24\x28\x03\xfd\xee\x1f\x7c\xae\x51\xf2\xd7\xc7\xc9\x48\x03\xa1\x19\x10\x6c\x30\x33\xd8\xaf\x43\x86\x6b\xd3\xce\x06\x53\xaa\xe2\xf5\x67\x81\x42\xaa\x0e\xcc\x26\x21\x5a\xaf\xcb\x57\x36\x64\xc5\xd4\xf0\xaf\x9b\x23\x68\x7a\x2b\xda\x5d\x07\xf4\xa0\x81\x34\x84\x5e\xd3\xfc\xfd\x4c\x93\x8e\x9f\xaa\x64\xa1\x21\x60\x4b\x96\x14\x4b\x83\x46\x4e\x77\x90\x27\x5d\x73\xcd\x47\xf4\xf8\xdf\xd8\xb3\xf0\x41\x14\x4a\xce\x07\xb4\xdb\xf2\x61\x8c\x89\xae\x8d\xe1\x43\x9f\xe9\xad\x28\x74\xf3\xe3\x15\x83\x19\xd9\x54\x5e\x6e\x99\xbe\x88\x82\x59\x7b\x55\x1f\xc1\xc3\xb8\x38\x84\xcf\x8c\xb5\x77\x8c\xba\xbd\xc7\x9a\x30\x65\x71\x59\xa9\x9e\x5d\x2b\xc0\x19\x2e\x4c\xb1\x63\x66\x1a\x77\x2f\xee\x37\x37\x5a\x20\x76\x54\xe9\x16\x1f\xcc\x64\x6f\x59\xa0\x32\xeb\x8d\xbb\x95\x48\xe6\xd5\xf7\xc8\x6c\x1c\x48\xea\x0c\x14\x74\x34\xb8\xaf\x12\xe1\xf8\xcf\x67\x12\xb1\x9d\x3b\xdb\xdd\xdc\xfb\xfe\xe1\x59\x9c\x89\xe8\xc1\xb0\x11\xf0\x38\xab\x92\x14\x63\x01\x9b\xb4\x87\x61\xa4\xe6\x33\x68\xb1\x5f\x8e\xc8\x1b\xe5\x82\x7c\x02\x74\xdf\x8e\x93\xe2\xfb\xa7\xa4\x3a\xf9\xf6\x84\x36\xc9\x59\x92\x94\xbb\x8a\x0f\x63\x28\x76\xb9\x27\xaa\x73\xdd\xd4\x27\x2b\xe3\xe5\x3a\x94\xd7\x61\xc4\xd4\x07\xea\xf7\x32\x36\x92\xe5\xc6\xab\x49\xbf\xce\xb6\x77\xee\xf4\xcc\x19\x79\x63\x7d\x41\x58\x99\xd5\xc4\xa5\xbd\xc7\xea\xf3\x12\x41\xf1\x87\xd8\xbf\x78\x2a\x60\x8e\xe3\x30\x47\x45\x89\x2e\xfd\x03\x9c\x90\x3e\x41\xf5\xfe\x7b\x08\x40\x26\x5e\x1c\xc6\xbe\x9f\xa2\x4e\x35\xde\xb1\x04\x7c\x7d\x31\x69\x7d\xf5\xb7\x78\xd6\xfa\x82\x1e\x83\x27\x27\xdb\xf5\xdb\xb7\x0f\xbc\xf8\x4b\x98\x04\xa0\xf1\x70\x02\xe7\x02\xfe\xe2\xff\x8a\x5c\x19\x25\xdf\x9f\x45\xc1\x13\xf7\x81\xd6\xa6\x88\x22\xd7\x89\xd0\x79\x1c\x93\x4a\x55\xb8\x97\xca\xde\x5a\x2b\x75\x51\x80\x73\xff\x1d\xb8\x85\xa2\x2e\xfb\x97\x80\x23\x23\x64\x2a\x0b\x0d\x49\xf5\x5d\x11\xe8\xc1\x88\xef\x67\xd1\xe6\x2f\x6b\x6e\xf1\x86\x34\x77\x70\x22\x81\xfc\x8b\x7b\xf5\xa9\x24\x00\xd8\xdb\x37\x90\x3f\xe0\x17\xd6\x26\x64\xe0\xf7\xf8\x1a\xad\xfb\x87\xa8\xf7\xcd\x55\x9c\xc4\x13\x3e\x24\x56\xdd\x99\x89\xb0\x86\x6c\xda\x2b\x37\xd8\x7a\x4b\x21\xa1\xbf\xc1\x8d\xea\xd3\x51\xbd\x3c\x90\x4e\xbd\x1b\xf0\x0c\x4f\xfc\x52\x27\xe8\x67\x64\x4b\x5d\x34\x98\xd8\x0a\xc1\x1c\x39\x5a\xde\x55\xe2\xd4\x54\xef\xa4\x48\x62\x64\xdb\x6a\x3d\x19\x51\x0b\xf5\x43\xb6\xed\xcd\x45\x90\xbc\xd4\xfe\x2d\x4a\xdb\x7f\x8d\x8f\x68\x06\xb9\xf5\xdf\x43\x3a\x8c\x79\x34\x6e\xe9\x93\x6b\x44\x1a\x7f\x30\x73\xdc\x7e\xc5\x7a\x15\xd8\xf4\x1e\x65\x51\xbf\xb1\xbe\x68\x6a\x50\x12\x88\xbb\xe5\x75\xae\x90\xbe\xeb\x35\x09\x80\x76\x93\x8a\xbb\x06\xd0\xc5\x35\x77\x83\x46\x28\xf5\xc0\x2d\x63\x38\x14\x54\x2b\xb4\xe9\xa5\x2f\x1a\xa8\xc9\x75\xb9\xe5\x34\xd7\xb1\xda\x25\xf0\x60\x67\xeb\x80\x83\x3b\xda\x49\x59\x8e\x37\x88\xf8\x7b\x20\xdc\x9b\x33\xb3\xa3\xbd\xfb\xf6\xb6\x07\xe3\xc2\x6e\x15\x96\xfb\xb7\x74\xeb\xe8\xab\x49\x40\x53\xf7\x92\x38\xd3\xfe\x87\x69\xda\xd6\xef\x8e\x45\x84\x96\x3d\x16\xea\x67\xac\xa6\xc7\x6a\x64\x6e\x54\xfd\x9c\xac\x07\x84\xcb\x67\x3b\x64\xca\xa0\x81\xc1\x24\x86\x08\xa9\x7d\x4e\xba\x69\x68\x93\x9d\x20\x89\xa9\x76\x27\x7c\xd1\x13\xb2\xe7\x7c\x54\xf1\xf4\x9d\x4d\x6b\xa1\x4f\x09\x74\x0d\x02\xc4\x5f\x20\x88\xe1\xaf\x3d\xe4\x04\x6e\x7e\x8d\x26\x76\x9b\xd6\x02\xda\x2e\x7b\x7e\x05\xfd\x06\x2c\xc9\xf3\x5a\x4f\x98\xbb\x72\x98\xc7\xdc\xa5\x36\x6a\x9c\x75\x07\x79\x21\x4f\xc4\x20\x34\xa1\x4d\x78\x91\x7e\x50\x7c\x86\xca\x29\xf0\x2e\xa9\x15\xcc\xea\xdf\xef\xdb\xd1\x1e\xae\x96\x2e\x5d\x6e\x91\x1f\xc2\x51\x59\x1f\x7a\x4d\x58\x4b\xe0\xa7\xe4\x1b\x9b\xdf\x33\x91\x85\x67\x01\x2c\x68\xa8\xf5\x07\x30\x09\x46\x4f\xeb\x2a\xed\x05\x95\x5c\x43\xc0\x39\x42\x67\xe8\xe1\xe7\x57\x62\x23\x38\x4d\xa1\x89\xcd\xd4\x7c\x23\x7c\xb9\xde\x1c\xc3\x38\x1b\x2f\xc7\xdd\xba\x34\xf0\x13\x38\x2c\xaa\x7b\xb8\x07\xfa\xe2\x73\xb1\xf2\xcb\xae\xe7\x8a\x38\x15\x30\xa9\x02\x42\xf1\x44\x6d\x99\xca\xbb\x98\x91\x49\x58\x10\x60\x32\x1a\xcf\x36\xa0\xf2\xb7\x76\x02\xe1\xd0\x2d\x2f\xe7\x45\xb5\x4d\xce\x19\x9c\xdf\x9f\x44\x01\x84\x3a\x87\x46\x93\xd5\x52\x84\x3d\x50\x73\x09\xb3\x72\x6e\x79\x63\x37\x45\x62\x18\xa7\x16\x67\x9b\x4a\x85\x36\x74\xf3\x5e\x6e\xc7\x69\x3a\x5f\x9f\x6c\xfe\x7e\xd6\xb1\xde\x5b\xf4\x86\x26\xca\x24\x28\xa8\xce\xcf\x20\xdc\xc5\x7d\x38\x4d\x63\xa0\xe8\x6c\xaa\x14\x1a\xac\x37\x1b\xd6\xc0\x62\xdb\xbd\x26\xed\x8c\x83\x3b\x34\x23\xfa\x6d\x16\xd1\xf9\xed\x99\xda\xfd\xc0\x8b\x6d\xb7\xe2\x8a\xd5\x9e\xfa\xde\x79\x01\xb3\x3d\x7b\xec\x3a\x7a\x34\xb4\x05\x2b\x69\xc3\x99\xdb\x65\xfd\xf0\xd4\x45\x18\x4f\x1d\x1b\xfe\xdf\x90\x0c\x5c\xe9\xdc\xd6\xd6\xd7\x0c\x2c\x77\x8e\xd4\xc8\xdf\xd4\xcd\x88\x93\xe3\xb3\x88\x04\x9a\xce\x61\xa7\xe3\xf4\xd7\xb6\x8a\x11\xb2\xa9\x41\x76\xd1\x77\x7b\xd3\x38\xeb\x95\xdd\x78\xe4\x2b\xc2\x26\x3e\x4f\x03\x99\x0b\xde\x62\xd4\x83\xc6\x6e\x34\x57\xce\xd0\x02\x1b\x15\xf9\xb2\x2b\xcb\xba\x0a\xa8\xb7\x2e\x86\x01\x27\xa8\xf5\x06\x70\x06\xda\x9a\x97\x67\x5a\x4d\x07\x77\xec\x6a\x97\xe9\xb8\xdf\x4f\xca\x41\x8b\xc6\xac\x6c\x78\x71\x89\x58\xaa\x6a\x79\xbf\x85\x3b\xcd\x24\x97\xab\x1b\x14\xf7\x67\x41\xa2\x38\x42\xea\x0d\xa4\x3a\xbe\xe5\x42\x6a\x73\x4d\x9e\x8a\x95\xcb\x62\x1d\x2f\xe3\x1e\x3d\xa4\x16\xfc\xc3\x26\x02\x94\xd0\x46\xb4\xd5\x6b\x1f\x3b\xdc\x84\x26\x1b\xc6\xbd\xed\x72\x40\x2e\x86\xda\xe4\x89\x02\xb5\xe3\x38\xe1\x10\x46\x2e\x2e\xba\xda\x08\xb7\xfd\x3e\x05\xd2\xdf\x78\x63\x0f\xbc\x58\xef\x91\x7c\xb8\x24\x72\x3d\x7e\x40\x71\x9a\xda\x9a\x2a\x01\x6d\x4c\x83\x8d\xef\xb0\x67\x0f\xb0\xb7\x81\xfa\x6f\xa4\xb9\x30\xcf\x3e\x36\xd3\xa5\xd9\xbd\xd8\x4e\x93\xae\xcb\x4a\x90\x61\xbc\x35\x42\x60\xfb\x04\x77\x8c\xaa\x88\xb3\x72\x94\xc6\x06\xb2\xd4\x11\x2d\xf5\x40\x90\x2a\x29\x4b\x88\x48\x1f\xfd\x22\x76\x3d\x25\x14\x79\x65\x84\xfa\x4f\xd8\x10\x4f\x76\xd0\xfa\xdd\x99\xb9\xe8\x5f\x6f\x0f\x5c\xda\xe3\xb5\x8a\x1d\x8d\xd2\xe6\x2f\xd8\x71\xe9\x32\xb1\x3c\xac\xe8\x7b\x5a\x3e\xa7\x79\xe5\xca\x5f\xb4\x38\x3a\x3d\xe2\xae\xdf\x13\x49\xdd\x95\x88\xc7\x67\x75\x90\xf0\x2d\xc5\x3a\xf7\x47\xbe\xbe\xb0\x56\x47\x0c\xec\xf1\x8f\xa2\x00\xf6\xb8\x3e\x21\xdf\xe9\xb7\x60\xfe\xe3\x75\x83\xeb\xac\xde\x1c\x3f\x65\x61\xe8\xef\x50\xa9\x73\x84\x64\x1a\x54\x34\xd7\xc4\x29\x65\x0b\x58\xf0\x93\x6c\x45\x3f\x4a\x87\x24\x49\xc6\x05\xa4\x72\xbc\x88\xb9\xe7\x8c\x2c\xfd\xb6\x84\x68\x5c\xbf\x12\x4d\x75\xe4\x48\x39\x3d\x4d\x86\x4b\xae\xb7\x20\xff\x8c\x06\x25\xea\x17\xb4\xd3\x3e\xc0\x1b\xea\x3f\x50\x97\x43\xcf\x64\x6d\xff\xfa\xee\x16\x58\xcd\xce\x21\x07\x31\xba\x44\x6b\x31\x9c\x94\x0d\xd3\xd6\x6e\x3e\x5a\xf5\x4b\xd8\xfa\x71\x2d\xaf\x45\x15\xc4\xbc\xdc\x8a\xd9\xa0\x34\x5a\x1d\x36\xf8\x42\x2e\xb9\x34\x71\xde\x59\xcf\x23\xeb\xea\xdb\x6c\xd0\x91\x60\xea\x90\x61\xa6\xd7\x69\xed\xdb\x01\x2d\xc8\x5d\xeb\x97\x19\x01\x52\x89\xf8\xe1\x86\xa6\xcb\x5e\xdf\x74\x69\xb0\xee\xe8\xe6\x59\x37\x1d\x7b\x74\x0b\xb0\x47\xb7\xf1\x98\xf5\x05\xc9\x67\xa4\xa5\xdb\xee\x07\x3d\xbf\xf3\x14\x8e\x74\xab\x7a\x3c\x72\xe2\x9f\x3c\xdb\xa1\x32\x69\x41\x60\x72\xc8\x04\x7f\x11\x09\xae\x07\x0a\x85\xce\xf2\x69\x61\xbb\x60\x1c\x74\x86\x9b\x6d\x00\x16\x22\x34\x7f\xd6\xe8\xc8\x12\x97\xd5\x76\xf2\x5b\x50\xcf\x38\x2d\xbb\x27\xa4\x9e\x72\x3c\x74\x61\x7f\xed\x4b\xf8\x88\xf8\x07\x95\x9f\x30\xd8\x1b\xb6\xa1\x35\xa6\x83\x8d\xc9\x45\xd6\xd1\x8c\x82\x07\xc7\xa5\xa6\xa1\x63\x2f\x3f\x9c\x09\x20\x18\xc7\xf6\x15\xc2\xa8\x3f\xd2\xd9\xfc\x65\x7f\x0f\x02\x54\xf2\xa1\x1c\xf9\x7a\xbc\x34\xba\xf4\xc6\xc3\xb8\x8f\x98\x68\x5a\x53\x2d\xaf\xc3\xf3\x0f\x66\xbc\x87\x45\x68\xc8\x75\x07\x59\x9e\xe6\xfd\x30\x37\x32\xbc\x02\x61\xd2\x6f\xb1\x62\x24\xeb\x3b\x8e\x47\x65\x37\x4e\x51\xda\xe1\x43\xc2\x7b\x44\xaf\xbd\x16\x42\x59\x15\x63\xc9\x57\xa1\x85\x60\x5d\x42\x59\x45\xec\x29\x49\xf0\x52\x5b\x6b\x17\x67\x9b\xa9\x3b\xdb\xe5\x78\xe9\x55\x69\xa6\xf2\xae\x50\x8f\x55\x7d\xb1\x36\x23\xaa\xb2\x6f\x6f\x1b\xfe\xcc\xde\x58\xce\x6c\x95\xe4\xf7\x6c\xa4\xd9\x70\x63\xcb\x81\x94\xa2\x72\x47\x4c\x10\xbc\xe5\xc9\xc0\x3f\xa2\x0d\x30\x18\x97\xdb\xe4\x5e\x19\x4f\xb6\xf5\x77\x4d\x98\xe6\xc3\x49\x60\x33\xfe\x52\x27\x90\x95\x54\x84\x0a\x07\xd0\x39\x69\xb0\x78\xdd\x10\x82\x9e\xd5\xb7\xd5\x14\xb3\x1e\x63\x57\x35\xd9\x70\xde\x9d\x24\x64\x20\xc8\x6f\x8d\x95\x58\xbf\x95\x51\xbf\xeb\xb7\xd2\xff\x1f\x51\x88\x3e\x12\x11\x59\xe1\xff\x46\xd8\xd4\x17\x38\x5b\x51\xbe\xdc\x47\x0f\xc9\xe4\xc2\x1a\x04\x08\xc4\xe4\x2c\x87\x45\x24\xf2\x6b\x88\x92\xe3\xe0\x7c\x93\xe4\x2b\x2e\x7f\xae\x21\xf6\xa8\x5c\x4d\xd3\x64\x0c\x86\x12\x96\x45\xab\x13\x94\x93\x35\x70\x29\x8e\xab\x4e\x45\x19\x3e\xf6\x6b\xed\xdd\x8b\x5b\xa6\xf0\xc6\x9e\x5d\x77\x95\x88\x08\xbf\x8b\x6f\xef\x45\x7a\x7f\xf3\x37\x82\x5d\xbe\xd7\x64\x98\x25\x88\x8b\x12\x42\x91\x0f\x92\xa5\xc4\x3a\x01\x8d\x93\xd2\x86\x0a\x74\xc9\x75\xf3\x21\x18\xd6\x28\x9e\xdf\x67\x43\xa3\xdb\x3c\x76\x5c\x0f\x32\xf1\x85\x2b\x07\xe9\xea\x5c\x20\xd6\x5f\x23\xfa\xe6\x79\xd2\x42\x9d\x55\xc9\x7a\x69\x6f\xbb\x2a\x92\x7e\xdf\xc8\x93\x2f\x87\x20\x58\x7f\x54\x7d\x41\x62\x00\x65\x9c\x06\xcf\x3d\xc5\xfa\xc8\x2d\x33\xdc\xcf\x93\x9e\x57\x92\x26\x31\x54\x39\x83\x20\x84\x36\xf1\x0d\x87\x45\x27\x4f\x9d\x84\x96\x8f\x04\x28\xeb\xfd\x0d\x80\xc7\xbd\x2f\xee\xf7\x50\x3a\x2a\x45\x7f\x14\x11\x38\xfb\x18\x56\x9e\xc9\x73\x84\x46\xa1\x7e\x1b\xab\x99\x5b\x5e\x13\xfb\x36\xe7\x09\xf1\x70\xa9\x48\xe2\x56\xf8\x0c\x9f\x44\x04\xa1\xfd\x84\x84\xd0\xd5\xbc\x1c\xbd\x6d\xf3\x54\x92\xfd\x60\x56\xc3\xb2\x53\xbc\x09\x71\xa0\x8b\x23\xd3\xc3\x30\x73\x4e\x30\x42\x0a\x5a\x8f\xc2\x8c\x61\x9b\xb4\x58\xbc\x1d\xd1\x5e\xcf\xe2\xc4\x26\x57\x8c\x78\x44\xae\x64\x57\x1a\x9a\x5d\x2f\xc0\xd1\x52\x9e\x93\xb6\x8d\xa7\x5a\xc8\x0d\x51\x73\xb9\x18\x27\x55\xea\xca\x92\x2c\x94\x31\x42\x34\x8d\xc0\xa6\x16\xfa\x20\x2f\xd0\xd6\xc0\x41\x35\xbf\x16\xee\xfb\xbf\xa6\x8d\x35\xdf\x79\x8a\x9a\x38\x71\xba\x5a\x56\xe5\xcf\xd5\x0b\x1d\x37\x06\x72\xa2\xb8\x19\xad\x8e\xdc\x3e\x34\xf1\x2f\xd3\x97\xbe\xad\x19\x2e\x92\xd4\x53\x78\x3c\xfa\xfb\x2c\xda\xf0\x07\xe8\xf2\xe2\x97\x8e\x4d\x68\x1a\xb8\xb0\x26\x69\x37\x2b\x81\x23\xb0\x7e\x93\x25\x40\x2f\x91\xf4\xc6\xa6\x35\xd2\x89\xbd\xdf\x60\x04\xbf\x7f\x0a\xed\x83\x47\xc8\xd8\xb5\xb3\xd4\xa4\x1d\x15\xf9\x52\xbc\x94\xae\x6e\x93\xf5\x8c\x1b\x76\x14\x1f\x16\x47\xfb\x7a\x14\x1a\x56\xf7\x08\x64\xba\x3e\xa1\x66\xd3\x2d\xd6\x33\xbb\x4c\x98\xcf\x05\xc1\xfe\x1b\x91\x31\x00\xb3\x92\xe1\xa8\xc8\x57\x5c\x4f\x4a\x56\x6f\x9e\xef\x51\x84\x17\xa7\x86\x26\x11\x09\x68\xb4\xd6\x02\xbe\x10\xd9\x8b\xf5\xd2\x36\xde\x87\x3a\xe8\x2d\x8d\xf3\xd5\x3a\x7d\xdc\xb9\xd3\x1b\x79\xc9\x13\xd2\x17\xd1\xa3\xa1\x7f\xd6\xdf\x42\xdc\x2f\xd6\x61\xb8\xa4\x8f\x98\x15\x99\x8d\x22\x46\x76\xa6\x4a\x05\xd1\x17\xb4\x35\xe3\x22\x1f\x97\x88\x65\x2f\xe8\x3e\xfb\x50\x1e\x86\x5e\x53\x72\xa2\xd2\x49\xad\x30\x56\xba\xc2\x88\xe1\x2b\x53\x6d\x78\xd7\x5f\xc5\x64\x13\xa9\x9c\x3a\x02\xe9\x8b\x28\x48\xe6\x5f\xa5\x3f\x76\x75\xf2\x0c\x19\x42\x88\xd0\x9c\x57\xe0\xb4\xe4\x94\xf1\xd5\xa4\xfe\x91\x77\xab\x7c\xc9\x15\xdb\x03\xd1\x4c\x95\x9c\xac\xae\x9f\xea\x53\xc8\x02\x32\xbd\xee\x96\xb7\x12\xb8\x27\xcf\xd8\x8b\x7a\xd7\x7f\xd6\xf0\xfb\x64\xe7\xac\x0a\xa6\x68\x7a\xfd\x10\xcf\xc2\x54\xc6\xa7\xdc\x53\x92\xf4\x69\xf9\x08\x18\xf5\xfc\xe9\x84\x69\x19\x60\x2b\xa3\x88\x6a\x75\xea\x15\x80\x07\x78\x6a\x12\x70\x55\x3f\x80\xbc\xa1\x37\x40\xf5\xa8\x8e\xab\x92\xa2\xe3\x6b\x22\x13\xc0\xce\xc0\x00\xca\x63\xb1\x03\xfa\x65\x0a\x8e\xab\x6a\xae\xbe\x60\x09\xba\x03\xdf\xe4\xc8\xfb\x30\x22\xe2\xc5\x6d\x2c\x72\x1c\xff\x37\x26\x14\x6e\x6e\xd3\x6e\x1d\xe6\x43\x97\x55\xe3\xe1\x3c\xa9\xa1\xdc\x91\x3a\xc3\xac\x6c\x49\x5b\xe5\x8e\xdc\x6c\xfd\x07\xea\x9a\xf4\x93\x38\xab\xca\x47\x09\xbd\x85\x86\x82\xcf\xdf\x77\x9b\xf1\xe8\x11\xa6\x47\x5c\x8f\x42\xc3\xef\xa1\x94\xec\x96\x77\xb5\x9e\x7b\xce\x8b\x73\x90\x29\xdf\x59\x9c\x84\x78\x8c\x1f\x70\xa6\x70\x0c\xa7\xa7\x19\x1e\x36\x4c\x39\xe2\xc3\xf1\x21\x4c\x39\x6c\xa6\x57\x3f\x1c\xbd\xa6\xf1\xe6\x68\x90\x67\xec\xc1\x00\x89\x05\xeb\xf7\x7d\x5e\xaa\xe6\xe5\xe8\x5a\x5e\x45\x56\x3b\x85\xfa\x82\x34\xda\x52\x57\x95\x22\x79\x83\xb3\xfe\x49\xc8\x57\xe3\xf8\x41\x21\xe8\x75\xb1\xf7\xec\xd1\x3c\xf8\xdd\x59\x72\xcb\x8b\xfb\xc5\x3e\x6b\x38\x32\x7f\xbb\xff\x1c\x94\xfb\xae\x03\xed\xb8\xe8\x8f\xeb\x67\x2e\xe7\x19\x7a\x9f\xc0\xd1\x9b\xc1\x71\x6b\xf7\xe2\xfa\xe5\xc9\x17\x03\x5d\x23\x3e\x2c\xda\xe3\x2b\x49\x9a\xaa\xe8\xb9\x15\x60\xdc\x77\x3f\x41\xdd\x4a\xf7\xda\x28\x2f\x24\x10\x84\x50\x0f\xf4\xb7\x5e\x7b\x32\x21\x48\x26\x1a\x30\x74\x3c\x1c\x51\xd9\x75\x8e\xa0\xe1\x71\x7a\x38\x5e\x2d\x21\xf6\x63\x50\xa6\xfa\x76\x79\xe6\x58\x68\x1a\x5d\x24\xfd\x93\x87\x32\xe6\x31\xb2\xc7\xc6\x2c\xe2\xd7\xda\x4b\x85\x73\x3d\x57\x48\x46\xca\x2e\xc7\xde\xc4\x9c\xd4\xf8\xa3\x67\x3d\x57\x3f\x15\x8e\x41\x39\x48\x46\x8a\xcc\x30\x5d\x1d\xf9\x18\x88\xe7\x5b\xa9\x35\x3a\xb7\xf6\x04\x11\x14\x0a\x4b\x41\x70\xd7\xa1\xdc\xa0\xd7\x34\xfc\xfa\x5b\x7f\xfb\x6f\xe0\xe1\x1a\x8d\xac\xb5\x73\x97\x67\x91\x35\x35\x79\xab\xbc\xef\xaa\x41\xfd\x6d\xf6\x19\xc6\xe7\xfb\x51\x50\x31\xff\x48\x75\x7c\x0d\x7d\x3b\x6b\x4e\x3f\xec\x26\xad\x30\xf2\x3a\x35\x85\x6e\x25\x72\x66\x52\x97\x37\xbd\x71\x17\xc9\x97\x42\x06\x49\x98\xf3\x27\x64\x75\x57\xb8\xbc\xe8\xc7\x59\xf2\xba\x23\x8f\xa5\x33\x11\x79\x68\x9e\x69\xd2\x3b\x11\x10\x5a\x89\x75\x8a\xb2\xe9\x03\xb4\x2d\xcc\x39\x47\x6e\x8c\x0d\xe5\x0d\x01\x3a\xcc\xc7\x45\x68\xa5\xe2\xf4\x38\x45\x2d\xe2\x53\x7c\x90\x8a\x56\x04\xd2\x61\xac\x1b\x00\xf1\xf4\xda\x83\x79\x0b\x57\x8d\x8b\xac\x5c\xa0\xa1\xc0\xef\x4b\xec\x32\xdc\x10\x4b\x78\x6a\xfe\x2f\x4d\xba\x1f\x3e\x45\x8b\x7e\x61\xcd\xfb\x21\xc6\xd9\xa1\x05\x9e\x8a\x4c\x02\x17\xe4\x36\x99\xe9\xfc\x08\xe7\xa1\x4e\x2b\x11\xf6\x01\xa8\x3c\x4e\xb7\x37\x1e\x8d\xe2\xc2\x65\x55\xba\xba\x2d\x00\x47\xef\x4b\xa8\xc6\x29\x0f\xa9\x69\xaf\x51\x49\x32\x80\x81\x50\x02\xe9\x0b\x74\x64\x61\xd3\x6a\x22\xc7\x92\x9c\xeb\x2f\x13\x77\xb6\x97\x94\x55\x91\x74\x2b\x88\xe7\x23\x79\x3f\xce\xc2\xf4\x8a\x49\xd6\x7f\x91\x27\x80\x53\xe4\xb3\x09\x59\xb9\x1d\xa7\xf4\xf9\x3e\xc2\x3b\x72\xd2\x33\x93\x9f\x67\x8b\x02\x8c\xeb\x64\xc7\xb5\xa6\x98\xa7\xec\xe4\x78\x75\x26\xde\xed\xd9\xa3\x59\x89\xfa\xee\xe2\x8f\xfe\x53\xc6\x82\xfe\xd3\x26\x83\xc0\xb2\xbe\xa5\x02\x0d\x43\x3a\x3a\xd7\x09\x25\xd3\xa6\x35\x7a\x74\x6f\x34\x79\x92\xb5\x5d\x5c\xa4\x89\xc9\x0b\xa3\x24\x53\x20\x9a\x4f\x67\xea\xe3\xd6\xd3\x0e\xf6\xd9\x31\xf8\x58\x67\xca\x19\x64\x63\xff\x66\xf7\x62\x7d\xdf\xe3\x62\x18\x7b\xd0\x81\x49\x7b\x71\x03\xbf\x41\x7e\x69\x29\xee\xb5\x42\xc9\xad\xc9\x85\xf9\x06\x36\x88\x3c\x06\xc9\x04\x8b\xf5\x61\x6c\x3f\x8b\x9a\xde\xb3\xa7\xed\x32\x37\x0c\x20\x47\xb3\x9c\x60\xff\x09\xdf\x09\xab\xbf\x42\x59\x15\xa2\x26\x15\x3c\x6c\x65\x85\x18\x31\x47\x8e\x76\x24\x72\x3f\x23\x0c\x45\x99\xe7\xd9\x3c\x01\xf3\x90\x22\xa2\x82\xc7\xd4\xde\xe7\x7b\xa1\xb4\xdf\xd4\x69\x68\x29\xf7\xf2\x61\x92\x09\x9d\xde\xb3\x87\x61\x83\xa5\xd7\x93\x90\xc8\x57\x87\xe5\x3e\x18\xa5\xb3\xe5\xd5\x31\xcf\xce\xb4\x37\xea\x67\x9f\xe6\xf9\x21\x3d\xcf\xfc\x80\xea\x6b\xc1\x64\xf1\x49\x3a\x57\x8b\xbe\x2b\x2b\x6a\x1c\x7e\x93\x98\xe3\xdf\xa4\xfc\xaa\x74\x88\xb4\x3e\x53\x7c\x63\x42\x02\xfa\x6f\xcc\xb4\x56\xa5\x60\x8b\x5f\x6b\x85\x02\xed\x66\x44\x98\xbe\x9b\x74\xc0\xfc\xd7\x7f\xf3\x6f\x4a\x04\xc7\x5e\xb8\xcd\x1b\xe3\xf6\xac\x7d\xd8\x8e\x7d\xed\x51\xd2\x85\xf1\xcd\xbe\x1d\xfa\xb4\x7e\x38\x09\x4f\xee\x87\xd1\x13\x53\x2c\x3c\x07\xd9\x5d\xe4\xba\x0f\x10\x11\xd0\x4f\xfe\x69\x14\xba\x2b\x27\xe5\x7b\x23\xfe\x7d\xc2\x3c\xe6\x13\xac\xff\xf2\xdd\x49\x38\x5e\xb6\xae\xcd\xed\xff\x1f\xbe\x66\xe4\x4c\x39\x15\xd5\xba\x22\x22\xdf\xe8\x4f\x82\xfd\x7a\x9e\x95\xa3\x44\x7d\x5a\x77\x69\xee\x7f\x99\x39\xe1\x97\x98\x2e\xf3\xbf\xcf\x34\xbc\x76\x1d\x68\x27\x59\x37\x1f\x8e\x52\xa7\x1a\x0c\x8a\x25\x94\x45\x63\xb8\xc2\x90\x01\xad\xc4\xe9\x58\xa5\xb1\x0e\x06\x69\xd3\x16\x49\x9e\x36\x88\x1a\x6b\xd3\x70\x4a\x71\xe5\x02\x29\xae\x4c\xfb\x96\x14\x8f\x06\x87\x1d\x3b\x82\x2c\x69\xa2\x32\xee\xe2\x54\x27\x79\xe2\xd5\x54\x5e\xf9\xb2\xf4\x66\xac\xe5\x1b\x3a\x6b\x7f\x46\xca\x3f\xaa\x21\xe3\x8f\xa3\xa0\x2b\xb2\x7d\x8d\x06\x10\x5b\xd7\x36\x7e\x9b\x9d\x3b\xdb\x3d\xb7\xe2\xd2\x7c\xa4\x7b\xc1\x0b\x7b\x1d\x0c\xb2\x3d\x0d\x81\x77\x30\x1e\xea\x70\x48\x55\xc1\xe4\xc3\x98\x42\x58\xc8\x05\xc7\x59\x52\xae\x96\xb2\x25\xcc\xbd\xbb\x5e\x43\x7a\xdd\x30\x06\x5e\x6c\x8f\x8a\x7c\x98\xe8\xbc\x54\xfb\x86\x72\xe8\x59\x0f\x31\x38\x98\xb9\xb4\x74\x87\x07\xae\x70\x5b\x90\x2d\x01\x59\x7f\x84\x8c\xa6\x2e\x51\xc7\xf1\x1a\xd0\x81\xfa\x43\x72\x23\xbd\xdb\xda\xa2\xf7\xfe\xbd\x1e\x3d\x13\x40\x51\x6e\xe4\xb2\x9e\x3f\x94\x14\x13\x4a\x8c\xb3\x0b\x34\xb0\x5a\x4e\xb2\x38\x45\xae\xe8\x85\xeb\x3c\xe8\xf0\x88\x5f\xe1\xc3\x24\x1b\x97\xdd\x71\xea\xe6\x65\x60\xc9\xde\xa6\x68\xf8\x20\xff\x46\xf9\xaa\x1e\x69\x78\xde\x67\x48\x3a\x64\x9c\xf5\x92\xb2\x9b\x8c\xd2\x24\x73\x3d\xe8\x84\xa9\x16\x27\x86\xa2\x26\xcc\xd9\x60\xc2\xb4\x14\x27\x38\x91\x0c\x45\x46\xe8\xdb\x37\x59\xb0\x73\x9c\xc1\x89\xcb\x9a\x62\xa4\xe5\x7b\x02\xfd\x93\x2a\xee\xb7\x0f\xee\x78\xf9\x97\xeb\xf4\xc4\xeb\xfb\x79\x81\xf9\xa3\x02\xed\x42\x29\x7b\x75\x42\x82\xae\x27\x45\xd6\x01\x43\xf7\x8b\x12\x74\xbd\xa7\xe1\x73\xcf\xe9\xc9\x70\x1f\x82\x16\x5e\x0d\x2f\xd4\x12\x9f\x2a\xac\x06\x53\xb8\x1f\x41\xac\xc2\x2c\x66\xb9\x29\x89\x9d\x86\x24\xe7\x77\x45\xf2\x1b\x5f\xf2\x1f\x23\x41\x43\x42\x7a\x8b\x4a\x88\x8f\x23\x72\x21\xb8\x33\x21\x1a\xff\x15\x01\x6d\x18\x64\xb4\x7e\x56\xec\xab\x62\x50\x05\x89\xf5\x5e\xe2\x7c\xd7\x01\x53\x7b\x93\x6e\xbd\x0e\x34\xd0\xed\xc0\x77\xbf\xca\x8a\x85\xdb\xe0\x0e\xa9\xe3\x73\x94\xc9\x46\xcc\x90\xe7\xab\xec\x0b\x59\x54\x48\xf3\xbe\x19\xd1\x04\xf2\x07\x2c\x1a\x73\x1b\xab\x00\xb7\x72\x9d\x68\x20\x87\x93\xb2\x0e\xb1\x49\x36\x4f\x10\x6d\xed\xe0\x98\xc8\x6c\xcb\x8b\x57\x6a\xcf\xcc\xa4\x68\x43\x13\x2f\x5e\x8a\xb3\x5e\x9d\xe2\xc9\x73\x01\x16\xf0\x94\x3c\x7a\xbd\xe6\x00\x98\x67\x22\xef\x8c\x33\x40\xab\x3f\xfc\xd8\x95\x49\xc8\xa1\xa1\x1b\x82\x28\xf7\x58\x87\x46\xbd\x67\xa8\xe3\x8f\xee\xa6\x13\x11\x30\xad\xc4\x8f\x52\x69\xa9\xc4\x1d\x33\x75\x27\xdb\x91\xba\x74\xcc\x87\x94\x77\xcf\x09\xc2\x00\x7f\xe1\x63\x79\x58\x88\x05\xef\x6f\x50\x19\x38\xb8\x23\xb8\xf1\xf8\xca\xef\x31\xe9\x2a\xe9\x2f\x70\xd8\xbe\x3b\x53\xeb\x59\xe3\x61\x90\x0f\xdd\x1c\x16\x2e\x8b\x22\xe3\xa0\x5f\xc0\xf7\xc5\x59\x7a\x8f\xfc\xeb\xba\x69\x32\x5a\xca\x45\x86\x9e\x74\xab\x02\x02\x61\x56\x7b\xb8\x3e\xfa\x57\x01\x46\xf5\x3e\x54\xc7\xa3\xa0\xc1\x76\x9c\x15\xd5\x1c\xbc\xf1\x64\x79\xa1\xc0\x3b\x81\x85\xa3\x2f\xa6\xba\x8e\x55\xea\x9e\x09\x8d\xd2\x6d\xe8\x86\x20\x98\xfe\xbe\x6c\x0f\x9c\x7d\x47\x27\x44\x23\x9e\xda\x44\x9b\xd7\xea\x38\x61\x44\x35\xb9\x6b\x48\xe2\x16\xb0\xf4\xcd\x5a\x48\x96\x3e\x52\xa6\x7f\x87\xb0\x81\x17\x3f\x95\x16\x9c\xf7\x42\xa0\xfe\x06\x59\xd8\xdd\x22\x39\x21\xf5\x69\x55\x99\x38\xc4\x10\xe3\xf3\x22\x38\xd8\x50\x95\x9c\x63\x89\x38\x7e\x8c\xdc\xb7\x86\x71\x16\xf7\x5d\x51\x3e\xb6\x91\x04\x80\xf9\xf0\x9f\x47\x7c\x92\x23\x12\xf8\xe7\x1c\xae\xe5\xe8\xb0\xa1\xaf\xdc\x01\x3a\xfb\xcd\x60\x1c\x2c\x1e\x13\x19\x98\xed\xd0\xe2\xbd\x1e\x4c\x63\x88\x9e\xe6\x82\x6f\x98\x94\x65\x9c\xce\xb3\x77\x5b\x44\xad\x27\xa5\xc1\xe9\x0b\x09\x61\xd6\xc9\xe2\x07\xbe\xfb\xc0\xfe\x2f\x91\xde\x3c\xb4\x32\xb1\x19\x6e\xca\x03\x87\x9b\x1c\x44\xf4\x11\x8d\xff\xd1\x24\xd0\x58\xe6\x60\x1f\x80\x4f\xfb\x01\x42\x1d\x12\xc4\xf3\x68\x12\x7b\x92\x87\x87\x3c\x7e\x2a\x85\x2e\x1e\x91\xe2\x8c\x11\xc2\xce\x4e\x68\xc3\x21\x3b\xf5\xce\x19\xf5\x6a\x31\xc1\x1f\x59\x2d\xa6\x89\x8a\x47\x6c\x72\xe4\xd3\x3e\xcb\x1e\x38\x7d\x85\x38\x39\x3a\xcb\xc0\x3a\xbc\x1a\xb5\x5e\x79\x65\xfd\x32\x62\x2f\xf2\x1a\xb5\xe9\xb0\x08\x8f\xdd\x6c\xdc\xe5\x59\x7a\xde\x62\xbb\x4a\x86\x4e\x75\x87\xcd\x40\x28\xf0\x33\xef\x4e\xb6\x87\x21\xd4\xaf\xc8\xbd\x52\xb4\x60\x14\x90\xab\xb7\x27\xd4\x74\x44\xf1\x88\x6d\xa6\x5d\x06\x3b\x86\xf0\x59\x68\x31\xbd\x10\x2a\x90\xfa\x0b\xf8\xb3\xbe\xfe\x02\x58\xf5\xb7\xe4\xc6\x5b\x0b\xa5\xbe\xbf\x58\x65\x77\x90\x26\xa9\x3a\xa4\xac\x0e\x55\x01\xc0\xed\xc5\x4f\x3d\x14\x76\x07\xd2\xd8\x1b\xd2\xb8\x43\x3b\xe0\x28\x1e\x08\xb2\x9e\xa7\x45\x75\x04\x4b\xe3\x88\x1c\xf4\xde\xf8\xb1\x8e\x32\x00\x87\x6d\xc5\xee\xf7\x5e\xd1\x8b\x46\x80\x3b\xc6\x78\x3c\x15\xa5\xc2\x72\xb8\x8e\x0d\xe6\xb1\x9b\xbb\x17\xd7\xef\xcb\x21\x3b\xc5\xc8\x31\x01\x9d\xcd\x5f\xd6\xb6\xf4\x4d\xb9\xfb\x5e\x75\x25\x94\x2f\x47\x35\x1c\xe0\x66\x6c\xea\xd4\xb9\x02\x22\xf3\xfc\x5a\xeb\xc0\x8b\x9a\xcf\x3c\x6c\x54\x46\x8b\xc7\x55\x3e\xc7\x1c\xda\x9b\xa4\x63\xfb\xff\x61\x11\xab\xcc\x1a\xcd\x54\x96\x0b\x97\xf4\x07\xd0\x94\x5f\x17\xad\xbb\xf5\x37\x08\xd3\xbd\x34\x4e\xd2\xde\xa3\x61\x36\x0c\xaa\x07\xda\x1a\xff\x11\x8f\x41\x6f\x37\x46\xbd\xfe\xde\xd7\x77\x52\xdb\x5b\x53\x2a\x9c\x11\xfb\x3c\x05\x6f\x5c\x24\x4c\xbe\x1f\x46\xf0\x80\x09\x19\x17\xfc\x5e\xf4\x68\xa0\x78\x97\x10\xb5\xc7\x8e\xb8\x46\x3b\xe9\x01\x69\xf1\x7e\x36\x53\x32\xec\xd9\xb3\xaf\x3d\xcc\x71\xd8\xec\xd3\xb3\xe8\x34\x96\xa3\xbe\x68\x92\xf4\x5a\xca\x73\xc5\x28\x23\xe4\x62\x18\xaa\xd7\x24\x32\xb9\x9c\x17\xae\x1b\x97\xc2\x2c\xab\x7f\xda\x8b\x2f\x79\x54\xaf\x68\xf2\x68\xc4\x7a\x43\x4e\x50\xbd\x6e\x78\xa8\xfb\xdb\xcb\xb1\x6a\xcb\x63\x85\xb5\x70\xd8\x21\x63\xbc\x22\xef\x8a\x8c\xf5\x3a\x33\x6c\xc7\xc5\x4a\xb2\x62\xf4\x39\x0c\x87\xa0\x04\xae\xd7\x8d\x5d\x88\x3a\x2f\x28\x00\xf7\xc4\xee\x7d\x4f\xde\x1e\xa3\x93\x6b\x74\x30\x9d\x6f\x9a\x11\x14\xae\x0c\x43\x72\x1c\xa6\x37\xa8\x3b\x72\x83\xd0\xfb\xe5\xb8\x1c\x24\xf2\xd1\x80\x4a\x41\xa3\x48\xaf\xa7\x88\x93\xd5\xc0\xb5\xbd\xfc\xf1\x7f\xf7\xac\x24\x4a\x12\x45\x0f\x3c\xd9\xa9\xf7\xb0\x01\xa6\x08\x03\xfb\x28\x14\x08\x10\xd1\xbf\x81\x43\x1b\x80\xa3\xbb\x1a\x86\x15\xb5\x16\x4d\xa9\xad\xf8\x4e\xd5\x33\x6b\xb2\xbb\xcd\x10\x4e\x82\x21\x56\xee\x13\x1d\x59\x95\x28\xc6\xeb\xbc\x6b\x97\xd7\x40\xae\x8b\x05\xfc\xc6\x2d\xc9\xee\x91\xcc\x5d\x13\x7c\xa9\xf5\x2b\x24\x94\x61\x4d\xbe\xcf\x78\x8f\xad\x6b\x12\x41\x84\xbf\xfa\xab\xbf\xd0\x41\xf8\x34\xb6\x07\x21\x6d\x3e\xa6\x81\xf8\xf8\xe9\x35\x89\x6d\x88\xf8\xb7\x65\x1b\x61\x67\x7f\xca\xb3\x87\x47\xd6\xc8\x1f\x6d\x4b\xa7\x0e\x8d\xa8\xc6\xa0\x46\x81\xdf\xd8\x2c\x91\xd1\x13\xd5\x3c\x2a\x70\xa1\x43\xf6\x18\x0f\xb0\xb9\x2d\xff\x0c\xb3\xaf\x7e\x91\x97\x25\x2d\xb3\x73\xb4\xcc\xce\xf9\x0e\x7b\x77\xb5\x9b\x8a\xb9\x6c\xfd\x83\xd0\xcd\xbb\x1f\xda\x0a\xed\xfb\xc4\x18\x2d\xab\xc2\xc5\xc3\xba\x98\xc4\x52\x44\x00\xfe\x50\x96\x22\x3e\x0b\x60\x3c\x36\xbf\xf5\x8e\x3f\x65\x39\x1e\x3a\x6d\xb8\xa3\x97\xb3\xbd\x13\xac\x8c\x34\xd9\xf7\x25\x91\x6f\x9f\xaa\xaa\x90\x75\x41\x36\xf6\x41\xf7\xec\x69\x67\x0e\x03\x05\xad\x94\xf0\x46\xc0\x1f\xdc\x26\x62\xc4\xc2\x4c\xcf\x70\xd7\x81\xf6\x38\x4b\x93\x43\x76\xf0\x7a\xe8\xc8\xbe\x1d\x1e\x3a\x12\x0a\x83\x91\x13\x19\x8a\x16\x16\x80\xc7\x72\xd4\xab\x46\x5f\x80\xac\x88\x76\xc3\x94\xc5\x61\x14\xf6\xd2\x19\x4a\xaa\x07\x71\xf7\x50\xaa\x5a\xb7\xc8\x7d\xce\x48\xb8\xd1\xeb\x99\x1e\xe0\xce\x9d\xed\x81\xf3\xfd\x58\x4d\xa9\xb0\x9e\x2c\xbf\x7a\xc2\x8f\x23\x46\xae\x74\x8a\x12\x30\x38\x54\xc0\xe4\x5f\x9a\x16\x5d\xad\x12\x44\x6a\xd3\x43\x6d\x2d\x06\x48\x6e\x18\x68\x49\x14\xb5\x46\x67\x52\x0d\xf2\x7e\x11\x8f\x06\xab\xad\x30\x59\x3e\xcb\xd9\xda\xac\x39\x95\x88\xf7\x0d\xf3\x15\xb4\x48\x50\x0f\xa8\x3e\xaa\xbe\xa0\xbe\x70\x9c\xba\x6e\x8b\x25\xae\x4f\xb1\x9d\xcd\xa9\x68\x83\xb4\xda\xde\x17\xf7\xb7\x5f\xda\x75\x40\xbc\xe8\xac\x8f\x12\x3a\x41\x47\x22\x56\x4b\xef\x3d\x4a\x86\x58\x2a\xe7\x60\xbd\x4e\xb2\xae\xf8\xc7\xb2\x10\x8c\x80\x1e\x72\xbf\x53\x38\x8b\x14\xe3\x15\x91\x5a\xce\x99\x09\x0f\x7a\x88\xbe\x4e\x13\x9a\xb3\x93\x29\xb6\x09\x01\xb9\x80\xb3\x98\x0f\x3b\xfc\x12\xfe\x90\x79\xb3\x07\x3c\xf1\x75\xe2\x1a\x5f\x27\x98\xe6\xdf\xfa\x1b\xff\xfd\x5c\x38\xc7\xe6\x64\x04\x8c\x88\x76\x8e\x6f\xde\x1d\x5a\x83\xee\xb5\x51\x52\xb8\x92\xf0\x88\x5b\x85\x1e\x87\x48\xb2\x49\xa8\x75\xd6\x99\x6f\xe8\xb9\x77\x8b\xa4\x72\xca\xf5\x7c\xd9\x33\x90\xd8\xe3\xc9\xdb\x29\x66\xc9\x6b\x00\xb8\x04\x2b\x66\xd9\xd9\xfa\x82\x74\x59\x87\xcf\x1f\x7e\x9e\x42\xd6\x25\xd6\xb3\xbf\xe4\x6d\x5d\x86\xf1\x21\x57\xa8\xf4\x99\xb1\x51\xa7\xfc\x7c\xb0\x78\xd0\xe5\xf8\x5f\x26\xd6\xaa\x2b\x0f\x25\x55\x95\x94\x83\xcc\x69\x5c\xd4\x23\x26\x0a\xc6\x34\x17\x48\xa6\xb7\x9b\x14\xdd\xf1\xb0\x1c\xb9\x6e\x85\x7c\x04\xc7\xcb\x07\x78\x34\xfa\x82\xe6\x8f\xd5\xc0\x15\xf1\x68\xb5\x45\xcc\x1a\x34\x16\xed\x91\x6e\x58\xb7\x3b\x77\xca\xb6\xd0\xa8\x62\x88\x9a\xfa\xae\x5b\x21\xd7\xd8\x86\x95\x59\xbc\x9a\x4d\xd8\xc8\x47\xce\x22\x1b\x06\x35\x74\xf3\xf2\x15\x57\xcc\x73\x0c\x08\x09\x1d\xd2\x72\xdd\xfe\xcc\x0a\x7a\x9f\x70\x25\x55\xdc\xad\xe0\x40\x4e\x87\x1e\x1b\x30\x7e\x1c\xa4\x92\x8a\x44\x54\xa1\x48\x75\x0f\xa6\x46\x7a\x1d\x3d\xcb\xed\x49\x57\x1c\x96\x65\x24\x4b\x1f\x65\xca\x87\x44\x2d\x79\xb2\x13\xb0\x35\x5b\xd7\xa8\xff\x3a\x2b\x12\x2f\x6e\xdc\xae\x58\x51\xba\xcf\x94\xd9\xa7\x91\x5d\xc2\x34\x23\xcd\xb3\xbe\x2b\xb6\x05\x43\x35\x98\x9f\x0a\xa2\xe7\xea\x53\xe2\x77\x6a\xda\x93\x41\x54\xed\xad\xa0\x03\xfd\xe1\xb3\xf4\xc9\xe6\x91\xf8\xd9\x92\x0d\x73\xc6\x3b\xbc\x3a\x8a\x64\xc5\x95\x55\x8b\xc9\xce\x8a\xde\xd2\x17\x33\x0f\xee\xc0\x8b\x92\xf8\x49\x66\x8b\x87\xf5\x90\x4c\x0c\x1f\x46\x8f\xf9\x37\x5f\xca\x97\xf4\x8d\xd1\x61\xd2\x48\xa3\x2f\x68\xd0\x5f\x26\x15\x06\x19\xdb\x29\x5c\x9f\x24\xf7\xb2\x53\xc8\xef\xa1\xb3\x06\x13\x0e\x4f\xcf\xdb\xb7\x43\x8f\xf9\x2b\xa4\x47\xf8\x31\x6b\x7c\x68\xbb\xc2\x0b\x62\xd6\xb7\x05\x79\xc4\x26\x39\xf0\xd5\xb0\x7b\xad\x09\xfe\x52\x38\x79\x7c\xe0\x47\xa3\x48\xba\x8e\x85\xad\x2f\xa8\xcf\x52\xa6\xf9\x61\xa1\x1b\x50\xf5\x72\x06\xfb\xd2\x2b\x17\xf8\xc1\xde\x87\xf8\x4a\x9e\x28\x5f\x7f\x28\x2b\x66\x1a\xc6\x36\x71\x39\x4a\x0a\x0f\x39\x40\xd9\x71\x93\xe6\xda\x37\x67\x82\xa1\x1c\x6e\x52\xa9\x0d\x88\xfc\x76\x2e\x0a\x07\xf0\xb9\x66\x4a\x78\x15\x17\x55\x6a\xb5\x00\xd6\xd2\x19\xf2\x0b\x3e\x43\x5c\xaa\x72\x75\x38\xaa\xf2\xa1\x24\x51\x86\xd6\x3b\x4b\xd0\xdc\xb3\x74\x72\x9f\xc2\x77\x44\x52\xa4\x72\x59\x66\x23\xc6\xad\x9b\x57\xe3\xd5\x16\x47\x4a\x5d\x35\xfa\x82\xea\x50\x51\xd2\x4c\x57\xff\x13\x44\xba\x8d\x7d\x8d\xfa\xeb\x2d\x15\xa6\xd7\xb8\xd7\x87\x43\x8e\x8d\xa4\xa6\x3a\x4c\x0e\x0d\xe2\x24\x5d\x90\x45\xe9\xa7\xcd\x81\x19\x8e\x9d\x87\x34\xfe\x1c\xd3\xcd\xde\x92\xd2\xd4\xcc\x88\xc3\x98\x25\x1f\xb9\xcc\xf5\xb6\x50\x83\xf8\x9e\x6c\x1d\xa4\x6b\xdf\x89\x08\x89\xa1\x46\xc9\xf8\x50\x57\x08\xca\xaf\xc1\xc3\x2c\x2e\x9e\x24\x00\x43\x59\x8d\x87\x2a\x36\x68\xd0\x25\xdc\x48\xab\x94\x88\x99\x77\x97\x6e\x64\xd9\x8d\x65\x69\x05\x08\xd3\x59\x6a\x4c\x9f\x6d\x9a\x22\x0e\xe2\x91\x7c\x17\xb2\x93\x57\xe7\x5a\x7d\x11\x05\x1f\xe1\x6e\x32\xac\x13\x79\xdf\x99\xff\x8e\x2c\x0a\x93\x5b\x09\x09\xd6\x28\x4f\xf3\x39\x72\xd0\xba\xa1\x9f\x1e\xb9\xf9\xe6\x0e\x39\x6d\xcd\x4a\x2d\xd6\xf5\xe8\xe1\xb8\x98\x23\x1e\xdf\x3a\x76\x3a\xfa\x0b\x36\xbc\x34\xd4\x03\xa7\x9b\xa3\xaa\xdc\xd2\xf2\xca\x53\x77\x71\xe7\x81\x18\xd0\x31\x87\x3f\xa0\x7c\xa9\xaa\x00\x32\x1b\xa5\x11\xbb\xec\x5e\x43\xff\xa0\x9d\xc9\x19\x10\xda\xbb\x0a\xb3\xd6\x17\x34\xd3\xb5\xb1\x5d\x25\x56\x17\x38\x7b\x2e\x92\x51\xe1\x45\xf4\xc4\x50\xee\x1d\x41\x2f\x4a\x5f\xd0\xbb\xc4\x69\xea\xfa\xae\xa7\x1a\xa7\xa4\xaf\xfb\xb2\xd5\x70\x1d\x02\x4b\x9f\x47\xdf\xcb\xaa\x3b\xde\x8c\xf1\x30\x46\x34\xc3\x9c\x48\x99\x13\x56\x4a\x85\xe2\xec\x3c\xd6\xae\x61\x67\x09\xc4\x24\xb8\x47\x6b\x15\x16\xfd\xb1\x5b\x08\xac\xeb\xa3\x04\x8a\xff\x80\x0d\x47\xbf\x25\x65\xa5\x0d\x75\xd8\x46\x30\xda\x88\x8e\x3c\xb8\x63\x51\x0c\xf5\x96\x97\x93\x6e\x22\x56\x87\xa1\x7f\xc6\xe2\x07\xa7\x9b\x58\x77\xbd\xa4\xec\x8f\xc5\xf7\x35\x50\x75\x7f\x1b\x3b\x19\xe7\x8b\xba\xc5\x9a\x28\x4e\x20\x89\xc7\xfd\xf9\xc0\x2e\xd0\x21\x2c\xe1\xab\xf7\x7a\x9a\x25\xe3\xb3\x9f\x62\x68\x9b\x2b\x5c\x59\x3d\x16\x4c\x5c\x3f\xc4\x5d\xb3\xc2\x83\x7a\xde\xff\x31\x0a\x42\xdc\x3a\xef\xc2\xb3\xba\x11\x71\xf6\x8a\x0e\x1a\x7e\x05\x26\x54\xc8\x4a\x4e\x4f\xa6\x1a\x68\x9e\x66\xff\x0e\x9e\x99\xbe\x95\x74\x54\x01\x24\x3d\x1d\xb1\x84\x95\x9e\x7f\xb2\x44\xd0\xe4\x7f\x0f\x9f\x54\x5f\xd0\xc0\xbc\x5f\x67\x74\xd9\xdc\x14\x64\x68\x9f\xf5\xbf\x54\x86\x13\x67\xf8\x69\x6a\x3e\x15\xae\xce\xe3\x72\x0b\xca\xe8\xce\xdd\xa1\x99\xfc\x1d\x0a\x12\xe3\x52\x0d\x8c\x40\x51\xfc\xa1\xf4\x9b\x0d\xa9\x2f\xb5\xaf\xbe\x20\x39\xb1\x4f\x26\xc1\x27\xea\xdb\xf2\x3d\x95\x45\x2b\x89\x84\xef\xab\x79\xb1\xa8\x6b\xd3\x5a\x5c\xae\x78\x8a\xc6\x42\x27\x26\x61\x92\xa3\x14\x2d\x3f\x01\x5e\x5c\xd4\xf5\xfb\x10\xb7\xd6\x18\x46\xf5\x67\x44\x58\xfc\x3f\x50\x90\xe2\x24\xbd\x25\x9f\x0b\xd7\xef\x4e\x48\x5f\xef\xee\xa4\xf5\xb5\x5d\xbe\xc8\xad\x3f\xa4\xfa\xe2\x4f\x58\x02\x05\xf2\xb1\xd6\x9f\x91\x15\xe8\x65\xa0\xea\xb0\x80\xa1\xe5\x3a\x16\x0c\xb2\x84\xb9\xb5\x00\x3d\x5c\x98\xc1\x53\xec\x5e\x6c\x0f\x5d\xd1\x1d\x18\x5d\x1e\x61\x14\xc3\x43\xbd\xf6\xc5\xce\x72\x11\x0f\x2d\x9f\xf6\xea\x7d\x7b\xf6\x78\xc5\x89\xcf\x53\x55\xeb\x17\x71\x97\xcb\xed\xb9\x35\x2a\xb7\xe7\x3a\xbe\x36\x73\x45\xcf\x88\x92\xb8\x41\xd7\xd8\x21\xff\x1a\xb7\xd7\xe7\xd6\xa8\x48\x4f\x7a\xe5\x16\x3a\x01\x6f\x10\x35\x05\xac\x0e\x73\x9b\x92\xb5\x66\xc2\xb5\xf2\x7c\xbd\x2c\x43\xfd\x77\x10\xfe\x8f\x34\xb6\xcd\xd3\x3c\x3f\x44\x7e\xa2\x77\xb0\x0b\x6d\x48\xee\x79\xb9\xbf\xa2\x14\x74\x93\xde\x6d\x80\x9f\xf6\x92\xb2\xb2\xbb\xcd\x86\x87\x7a\xed\x35\x6e\xd2\x3c\xb3\x9e\x10\xaa\x86\x2d\x9d\x60\xfe\xb6\x65\xe6\x41\x1e\xdc\xb1\x17\xfa\xad\x2b\x48\xd3\xfd\x7e\x0f\xa6\x3a\xef\x50\x07\xfa\x70\x52\x0d\x54\xf6\xa8\x45\xba\xef\x27\x23\x12\x9c\x39\x39\x73\xe2\x3e\xf7\x5c\xbb\x14\xe3\x94\x7d\x3b\x74\xcf\xbd\x4f\x86\x8b\xef\x4f\x73\x1e\xd2\xde\xb3\xcc\xe6\xbd\x31\x69\xfd\xfa\x4b\xeb\xb7\x65\x72\xa3\xc6\xbe\x51\xe8\x0d\x5c\x23\x74\xeb\x6e\x88\xe4\x61\xa8\x7b\x21\x0a\x9b\x57\xcd\x36\xd5\x65\x47\xb6\x98\x09\xe1\xd5\x9b\x07\x9d\x11\x14\xae\xd8\xb8\x67\x30\x5a\x02\x2e\x01\xe8\x6b\xa4\x6e\x7f\x14\x31\x6f\x01\x0f\x13\x39\x07\x46\x0c\xd8\xd2\x27\xd8\xbe\xe4\x43\x1c\x0b\xe6\x8d\x2e\x7b\xda\xb2\x87\x3a\x8b\xb2\x1d\xd1\x00\x3e\x12\x6b\xe5\x16\x01\x5a\xff\x30\x0a\xa0\xd1\x3f\x64\x40\x5e\x95\x67\x66\x1b\x63\x3a\x79\xb2\x9e\x4c\x41\xcf\x90\xbe\x7d\xa7\x46\xd7\x53\x62\xc1\x36\x1e\x7e\x82\x05\x1a\x96\xeb\xea\xd2\xc3\x02\xb6\x4b\xb5\x88\xee\xf6\x1c\xfc\x34\x54\x9b\x1b\xbb\x03\xa1\xfa\x3e\x49\xfd\x1e\x99\x4c\x7b\x29\x70\x4f\x41\xcc\x0b\x2e\xcf\x2c\x13\xc1\xf3\x39\x58\x04\xd9\xf0\x23\x48\x25\x51\xf7\x24\xcf\x9c\xb1\x0c\xac\x66\xc5\x92\xb1\x3e\xcb\x93\x34\x0f\xe8\xf7\x5d\x59\x6d\x25\x77\x9c\x8b\x6c\xda\x73\x67\x42\xa5\xef\x67\xd2\xb7\x57\x2d\x74\x89\xf2\x80\xd5\x9c\x90\xa1\x9e\xd7\x48\xf7\x42\x59\x9f\xd1\x33\x78\x75\x9c\x8a\x8e\x80\x5f\x2b\x37\xb0\x27\xf4\xc5\x4c\x94\xdb\xb3\x67\x5f\x5d\x13\x2d\xe5\x69\x52\x02\xd9\x8a\x83\x02\x04\x0f\xbd\xa6\xa6\x84\x78\x39\xcf\x05\xf2\xf8\x3c\xe6\xce\xd8\xfe\xf7\xf1\x95\xcc\xf1\x3c\x1c\xb3\x4b\xf9\xb8\x3f\xa8\xd0\x33\x34\x02\x3a\x6e\x95\xcd\x4d\xeb\x77\x44\xc1\x72\x17\x31\x08\x7d\xa1\x2b\x78\x47\x7d\xc1\x46\x0c\x48\xf8\x4d\xc1\x4d\x36\x0a\x1b\x8a\xf9\x13\x6e\xf7\xa2\x67\x59\x93\x50\xec\x42\xa7\x01\xdd\x2b\x3a\x4d\x24\xc1\x70\x8f\xe0\xd9\xf7\x08\x63\x33\x70\xc5\x7f\xc1\x88\x86\x7b\x6c\xe9\xf1\xe8\x5a\xeb\x25\x6b\x26\x1f\xc1\x06\xb6\x6c\xb6\xde\xf1\x36\x45\x95\xb5\x2b\x81\x6a\xf5\x97\x3a\xc4\x2f\x16\xc2\x8f\x17\x01\xfc\xbb\x56\xfc\xfc\xfd\x49\xf0\x5e\x7e\x7a\xad\xf5\xd5\xdf\x0a\x72\x48\x5e\xfa\xff\xae\xdc\x11\x0c\xac\xbf\xd4\x09\x1e\xfa\xbf\x20\x53\x11\x74\x26\xaf\x20\x72\x20\x4b\xf9\x92\x74\x37\x65\x2c\xf2\x37\x9f\xc5\x4c\xc8\x38\xd4\xc1\x1e\xe9\x03\x16\x1a\xd9\xb6\x46\x83\xfd\x07\xd8\x4d\x92\xac\x7e\xe5\xe7\x41\xaf\xc4\x18\xea\x09\x41\xec\xc8\x59\xf7\xe8\x33\x3a\xee\xc1\x50\xe7\x17\x3a\x54\xe1\xcc\x63\x16\x6d\xa0\x03\x79\xd2\x20\xb5\x3f\xbb\xe6\x01\x7c\xae\x38\x54\xc6\x43\x57\x50\x7b\xf5\x6d\x56\x2f\x3d\xab\x0b\x09\x99\x23\x2b\x94\x1f\x72\x59\xe6\x7a\xd0\x4f\xc2\xb4\xef\x58\x14\x24\x19\x8e\x4d\x83\x38\x8a\xf1\xa8\x5e\xd8\x78\x2f\xcf\xd8\xf5\xf9\xf2\xdb\xcc\x54\xbc\x42\x05\x82\x28\xef\xcc\x93\x7d\xc2\x19\xe2\xe6\x6f\x70\xaa\x23\xc7\x85\x33\x33\xda\x30\x8b\x8b\xed\x43\x50\x46\x0f\x19\x35\xf7\xf8\x03\xb3\xa1\xec\x16\xf1\x70\x29\x4d\xb2\xfe\x5c\x68\x72\x62\x1e\x8c\x84\xe0\x0a\x65\x86\x67\xa6\xcc\x8a\xc7\x59\xe9\xd2\x85\xc0\x4d\x01\xfa\x11\x5f\x57\x35\x7d\xb1\x58\x6f\xd2\x39\x82\xd8\x24\x72\x21\x5e\x08\x29\x29\x93\xaa\x94\x3f\x8f\xfb\xf3\x11\x29\x26\xdd\x90\xa3\xcd\x10\xb8\xb3\xb4\xd9\xf6\xa8\x70\xc3\x64\x3c\x6c\x91\x09\x06\xf0\x59\x7a\x4d\x81\x63\x34\x2e\x07\xae\x37\x47\xf3\x05\x74\x99\x51\x80\x9c\xc5\x36\x42\x01\xff\x47\x44\xfe\x50\xc5\x9c\x24\x4e\xb7\x6c\xa0\x45\x1c\xdc\xb1\x6b\x7d\x0d\x41\x05\xff\xef\xb4\x04\x3a\xa4\xdd\xb7\x69\x45\xff\xde\xf1\x69\x0e\x85\x57\xcb\x1f\xb8\x42\xf9\x5e\xc6\x5b\x0d\x09\x5b\x50\x5c\xa9\x92\xd4\x41\xa5\xd8\x5c\xd9\x68\x1c\xd9\x09\xc0\xc9\xab\xf4\x7c\x94\x2c\x20\xcf\x87\x55\x0a\x51\x7a\xde\x41\x94\xf1\x12\x65\x7e\x1c\xa2\xf3\x72\x04\x16\xd1\x95\xb6\x2c\x29\x4e\x0f\xcd\x05\x0e\x0d\x94\x26\x7d\x56\x1f\x70\xca\x77\x68\x70\xbd\x1c\x27\xd5\x60\x4e\xc6\xb5\xf8\x08\x9f\x4d\x48\x25\x59\x85\x39\x94\x35\x45\x8d\xc4\x34\xc1\x68\x7c\x8e\x14\x83\xc0\x0c\x05\xb9\x13\x49\xa2\xee\x58\x9f\x24\xc6\xbd\x71\x5a\xe9\xfc\x01\x1f\x7f\x4b\x67\xca\xc9\xae\xb5\xb8\xb8\xbe\xde\x44\x58\xaf\x0a\x98\xd4\x15\xda\x78\xd3\x16\x07\xfb\x89\x9d\xf3\xc2\x3d\xc3\x38\x4d\xfa\x59\x9c\x55\x72\x67\x51\xe2\x3c\x8e\x9b\x66\x30\xc9\x96\x17\xe7\xdb\xbc\x16\x06\xa7\x3f\x9e\x90\x57\xda\xbb\xfe\x14\x1c\xe5\x87\x83\xe5\xf4\x7f\x96\x52\xc8\xce\x9d\xed\xc3\x71\xe6\x55\x49\x34\x37\xc4\x03\xb5\x44\xd1\xd2\x9e\x51\x9c\x64\x55\xbd\xb9\x49\xc4\x15\x1f\x90\x8d\xe4\xac\x43\xd9\x70\x6f\x92\xac\x3e\xa6\x4b\x37\x65\xfd\x70\x7d\x42\xfe\x33\xd7\xc9\x81\xe7\xd5\x7c\x90\x95\xc0\xff\x7b\x43\x89\xdd\x8b\x81\x37\x50\x7f\x08\x23\x46\x7d\x21\x68\x2c\x26\x32\x6b\xcb\xb2\x44\x27\xde\x8a\xe9\x65\x7d\xc0\x8f\x1b\x29\x44\xe9\x78\x38\x42\x94\xc3\x36\x83\x4a\x85\x5e\x47\xc1\xba\x70\x39\xae\xe2\x14\x8a\xd8\x68\x8e\x9e\xa1\x41\xf4\xbf\xc7\xad\x33\x71\xe1\xb0\x85\x06\xf1\xff\xcf\xd8\x9f\x05\x49\x92\x65\xe7\x61\x70\x55\x64\x66\x55\x2f\xd5\x4b\xf5\x32\x03\x6e\xff\x1f\x5c\x61\x26\xb5\xc6\x40\x51\x34\x99\x41\x92\x79\x20\x33\x81\x46\x95\x88\xec\x52\x56\xb1\x9a\x6a\xe3\x43\xdf\xf0\xb8\x19\xe1\x9d\x1e\xee\x31\xee\x1e\x99\x9d\xfd\xa4\x07\x3e\xd2\x64\x12\x4d\x46\x89\xda\x8c\x02\x37\x91\x14\x09\x02\x23\x81\x1c\x12\xa4\xc7\x00\x33\x03\xcc\x60\x06\xbd\x77\x4f\x2f\x55\x5d\xfb\x5e\x59\xfb\x5e\x9d\x25\xf3\xf3\x9d\x73\xef\xf1\x0c\x2f\x9a\x5e\x66\xdc\xbb\x32\x22\x7c\xb9\xf7\xac\xdf\xf9\xbe\xb1\x3c\xe6\x57\x9d\x39\x51\xa6\xa5\xb1\xd2\x15\xad\xe2\x59\xb9\x95\x53\xd6\x16\x55\x8d\x15\x3f\xb6\xc3\xdd\x7e\xf4\x95\x9f\xaa\x9b\x51\x73\xad\x80\x4d\xdd\x42\xe7\x01\x30\x94\xdf\x2f\x29\x5d\xfd\x9b\x81\xea\x1e\x6c\x06\x2f\xa8\x21\x11\x9b\x45\x71\x54\x6c\xcc\xf8\xca\xf4\x96\x1e\xeb\xd1\x1c\xfe\xd3\xa4\x93\x95\x8d\x35\x20\x5a\x71\x5a\x01\x48\x76\x1d\xc5\xe6\x61\x61\x6a\x28\x55\x27\x93\x14\xa2\xf2\xe1\x8c\x9f\x25\xba\xaf\x94\x5a\x4f\xd7\xc9\x95\xb4\xc0\x51\x98\xd9\xe2\xf1\xf3\x91\xcf\xa8\xc5\x96\xdb\x96\x0a\xc8\x4f\x6a\x2e\x8b\x93\x6a\x7d\x85\x69\x92\xa7\x71\xd4\x33\xde\x29\x0b\x75\xa5\x2a\x09\x33\x01\xa4\xc8\xde\xf9\x08\x6d\x64\x7b\xcf\xba\x51\x84\x53\x7f\x02\x31\x2a\x45\x08\xff\xc5\x2f\x74\x34\xd9\xe8\x31\x6a\x4b\x49\x98\x5b\xdd\x37\xec\xd5\x33\xd4\xc1\x15\x2a\x36\x5a\x4d\xc8\xcf\xbe\x28\x3d\x55\xe2\xb3\x13\x0f\x80\xfe\xdb\x3f\x0f\x83\x82\x5c\xf2\x45\x15\x27\xfd\xad\xbd\x28\x18\x88\x6f\xa6\xeb\x87\xdd\xa1\xa9\x62\x8e\xe4\x7e\xa2\xac\x69\x98\xd9\x3c\x4c\x0b\x91\x6d\x40\x9e\xce\x04\xee\x32\x83\x4f\xdf\x29\x0d\x62\x1f\xf4\x8c\xb2\x34\xb4\x79\xfe\x44\x75\x2b\x32\xf7\xad\x61\x48\x8a\x58\xe9\x2b\x4d\x2f\x74\x36\xa8\xf5\x17\xbc\xa1\x84\x44\x33\x42\x84\x7f\x80\x27\x21\x89\x50\x83\xf6\xfa\xc0\xc6\xa3\x96\x72\xa2\xf5\xdd\xdd\xd0\xfd\xb6\xc3\x6e\x66\x1c\x57\x8c\xe4\x36\xf4\x0d\x92\x00\x35\xb0\xaa\x75\xa3\x77\x4c\x26\xf2\x07\xb0\xd5\x00\xc7\x61\x29\x3c\xd9\x69\x29\x72\x5f\xc5\x00\x73\x45\x0d\xc4\x66\x36\x5d\xab\xb2\x3c\x47\xbd\xb4\xb3\xe3\xab\xfc\x3b\x1b\x2a\x14\x6f\x08\xb9\xd4\xac\x8f\xf0\xc0\xd5\x2b\xe0\x95\xea\xbb\x84\xad\x89\x9e\x2d\x0c\x03\x19\x4e\xbf\xb3\x47\xe1\x20\x8a\x7b\x99\x4d\x60\xdd\x1c\x7a\xce\x45\x65\x20\x14\x40\xb0\xaf\x45\xd6\xc3\x74\x38\x32\xc9\xc6\x0b\x7e\xc9\x02\x4e\x0c\x3b\xf5\x87\xa5\x4a\x82\xee\x04\x2a\xd3\xe4\x0a\x01\xcc\x08\x08\x14\x51\xa1\x3a\x12\x78\x3a\xe0\x1b\x64\xf6\xb1\x65\x5b\x94\x3d\xc0\xec\x3e\xdd\xa1\x60\x00\x8b\x81\x91\x41\xe8\xfa\xdd\x53\x91\xd8\xee\x89\x1a\x55\x7f\x17\x91\x13\xd6\xf8\xb3\x2c\x79\xe2\xf0\x76\x8e\x3b\x93\xe9\x71\x10\x40\x5e\x43\xd7\x51\x72\x01\x5f\x1f\x5b\x31\x43\x86\x49\xc1\xab\x5c\x53\xb2\xb0\xff\x9c\xcc\xef\xd6\xf5\xa9\x85\x75\x78\x7e\xb1\xbd\x92\x99\x31\x81\x3e\xfd\x8f\xdc\xa1\x5f\xe7\x63\xd5\x4e\x7a\x2b\x2a\x0a\xcb\xa4\xfa\x78\x02\xc0\x78\xf1\xb1\x73\xfc\xb9\x8d\xde\x19\x33\x56\x11\x57\x73\x47\x55\xeb\x76\x52\x3a\xc5\x51\x65\x53\x47\x34\x8d\x37\x86\xa3\x28\x94\x2a\x21\xea\xc1\xf7\x34\xa5\x0b\x77\x0e\xd1\xa1\x38\x57\x2b\xea\xc6\x69\xbe\xab\x86\x0e\xf6\x0c\x44\x57\x54\x7b\x8a\x75\xb6\x9d\x92\x58\xe5\x5f\x98\xee\x9d\x5e\xb0\x50\xbf\x37\x40\x22\x30\x48\xcc\x8d\x2f\xd5\x7a\x5e\x74\x5a\x8c\xda\x11\xae\x8c\xe3\x3d\x33\x5a\xd6\xb2\x4a\x4a\x05\x14\xd7\xf2\xcc\x45\xfa\xf6\x18\x63\x8c\xe5\xb3\x63\xa2\x89\x66\xaf\xe8\xd5\xfb\x99\x02\xce\x61\x02\x16\xd9\xdd\xdf\xa7\xec\x58\xca\x27\x1e\x9b\x34\x03\xd8\xa2\xc0\xea\x9f\xdf\x2e\x65\xfc\x2c\xe5\x0f\xc0\x12\x30\xfd\x2a\x4a\x72\x5c\x0e\x77\x0d\x05\x17\xc8\x5c\xa3\x6f\x47\xfe\xc3\x0d\x71\xfe\x38\xee\xc7\xb1\xaa\xf9\xe9\x65\xf0\xf7\x4b\xac\xe8\x2b\xcb\x37\xf1\x46\xc4\x9a\x69\x9d\x22\x3c\x5d\x6c\xdf\x0f\x31\xbc\x0a\x3b\x7d\x67\x0a\xf8\x55\xb9\xf4\x34\xca\x25\x82\x44\x6b\xed\x04\xbe\x80\x4f\xb6\x4b\x65\x2e\xcf\x2f\x57\x1b\x81\xf8\x76\x84\x3a\xd7\x0f\x03\x33\xbf\x21\x2b\x2a\x06\x7e\xdc\xf6\x43\x5a\x27\x02\xa3\x51\x3e\xe7\xe3\x86\x7e\xd4\xc1\xf6\xca\x38\x49\x6c\x2c\xd7\xc5\x90\x7f\x5c\x97\xe0\xff\x1b\x62\x54\x4a\x01\x7d\x10\x8d\x2d\xc9\xaa\x92\x7c\x32\xd5\x0b\x7f\xa5\x1d\xc6\x76\xcd\x66\x4c\xd1\xe7\x80\x3e\x4a\x73\xab\x41\x82\x2a\x8f\xfa\x83\x22\xb7\xd6\x21\x11\x50\x4b\xc3\x78\x2e\x1f\x07\xdb\xe9\xb0\x0f\xcf\x1f\x68\x17\x76\x38\xb2\x19\x66\x76\x7c\x4d\xe8\x8b\xd2\xd7\x84\xbe\x68\xa6\xc5\x1c\x8e\x62\x2f\xb0\x28\xba\x2f\x2d\x25\x08\xd3\x50\x56\x67\xde\xed\x96\x6f\xea\xb1\xbe\x3a\x9f\x34\xb3\x2e\x99\x24\x91\x27\x88\xa2\x18\x6b\x2a\xf0\xc9\x54\x8d\xe1\x95\xf6\xaa\x1d\x15\x80\x3c\xb1\x16\x14\x82\x4a\x11\x86\x6a\xb2\xa3\xe9\xca\x8a\x7f\x51\xd2\xd2\xab\xae\x53\x4a\x59\x8d\x94\xe7\xf6\xed\x31\xb0\x61\xd2\x73\x53\xb5\xef\x4f\xa6\x22\x07\x12\x44\x91\xf9\x70\xd1\x3f\xf1\x3d\xc0\xcb\xca\x1f\x74\x6d\x61\x10\x61\x30\x87\x4f\xa0\x44\x1e\x6e\xa9\xa8\xf4\xdb\xe3\xb4\xb0\xbd\x39\x15\x95\x5d\xd4\x7c\xb6\x9b\xaa\xba\xb3\xbb\xe3\x4d\xde\xbf\xd1\x39\xe4\x35\x1d\x94\x0d\xaa\xc7\xcd\x33\xa7\xd8\xff\xe7\xb0\xce\xf9\xa4\x66\xae\x69\xec\xd3\xa1\xf5\xd1\x1b\xe4\x63\x97\xfe\xda\xa4\x6f\xfa\x96\xfa\x32\xa8\x9f\xf2\x98\x17\x0f\x3c\x05\x0a\x10\x84\xfa\x88\x0c\x70\xd5\x54\x22\xd6\xec\xb3\x5a\xd6\x8d\x05\x6e\x9d\xd0\xe8\xeb\xce\x93\xff\x26\x6d\x72\xb4\x16\x8e\x68\x1d\x93\xcf\x95\x04\xc5\x15\x35\x66\x75\x02\xd0\x72\x80\x8d\x8e\x6b\xfd\xa0\x1f\x95\xaa\x49\x53\x2a\x2b\x76\x85\x72\x20\xd4\x20\x1f\xc0\x6e\xf2\xc7\xd5\x10\xff\x2d\xf7\x04\xba\x26\xf9\xf6\x18\xcd\x35\xc4\xdd\x6c\x51\xf9\x44\x11\x10\x75\xb3\xd4\x60\x10\x11\x95\xdd\x87\x0a\x50\x7f\x5c\x51\xa1\xde\x98\xb6\x36\x8b\x24\xb8\x10\x9a\x42\xa2\x4c\x47\xb0\xe7\xdb\x73\xd3\x12\x10\xfb\xf7\xb7\x57\x23\x6a\x7c\x54\x1f\xa9\x69\x28\x09\x22\xd5\xaf\x8d\x6e\x36\xce\xf3\x6a\x6d\xd4\x84\xd1\xb4\x2a\xc5\xb1\x5a\x16\x99\xc6\xf1\x53\x1e\xa4\x7a\xad\x54\x60\xa4\xcd\xc0\xb7\x58\x1f\xc1\x5b\xc0\x06\xfc\x5d\xac\x5e\x6e\x00\x06\x5e\x41\x1e\x71\x2b\xdc\xed\xdf\xc7\x4d\x39\x0e\x35\xd7\xa1\x7a\x97\x12\x1d\x19\x37\x7f\x4e\xad\x6a\x9b\xd8\x8d\x59\x6a\xbf\x72\x51\x8d\x5e\xa1\x6b\x21\x2d\xcf\xbb\x7f\x28\x55\x6f\x49\x81\xe6\xde\x0a\x47\x2d\xcd\x3f\xcd\x18\x52\x3e\x69\xd6\xd8\x33\x09\x88\x37\x24\x68\x51\x01\x8c\x2b\x84\x74\x9d\x40\x92\x0b\xab\x4e\xe1\x19\xf0\x49\xa0\xc9\x74\x72\x6b\xb2\x70\xc0\x6d\x1b\x04\xe7\x9c\x1e\xf2\xc9\xc4\x5f\x71\x61\x0d\x62\x6f\x96\x5f\x55\xc5\xcb\xaf\xb1\xa5\x51\xc7\xd6\x7a\x0c\x66\xa5\xb0\xd9\xde\xea\x09\xe0\xdf\xae\x06\xaa\xc5\x8e\xb1\x43\xbc\xcd\x7f\x49\x75\x7e\x21\xd6\x57\xd2\x05\x57\x4b\x85\x74\x47\xb4\xc0\xbd\x40\xec\x20\x69\x43\xb6\x9c\xc2\xce\xce\x89\x92\x68\xe4\x7e\x17\x22\xa4\xe3\x08\x5c\xa4\x4c\xe5\xc5\xdf\xb7\x34\xbb\xfc\x11\xcd\x6a\x27\x22\xb3\xa8\xec\x5c\xac\x55\x94\xb6\x13\x1e\x91\x90\xf8\x9c\x9e\xbc\xaf\xee\x0f\x61\xc0\xce\x8e\x9f\xfd\xc2\xc8\x4c\x4d\x73\x09\x59\xd7\xbd\x06\x02\x98\xb6\x89\xb2\x30\x33\x2b\xc5\xac\xa2\xa4\x3a\xaa\xda\x9a\xd0\x53\x94\x27\x4a\xcf\x44\x78\xe3\x45\x31\x3e\x8d\x50\xbe\x16\xfd\x5a\xfa\x49\xad\x2a\x00\x3f\xf0\x4c\x47\x4b\x86\xd1\xb0\x9a\x90\xcf\x35\x70\xe1\x84\x03\x3b\x74\xa3\x1b\x32\x52\xe5\xb7\xce\x49\xa5\x3e\x3f\xa2\x68\xc0\x31\xf4\xa2\xa8\xf2\x38\x05\xc8\x57\x00\xa2\xe2\x3a\x1c\x93\xc3\x63\xdc\x41\x98\xe2\x65\xad\x9b\xb0\x18\x3b\xf2\x61\x11\x02\x57\x38\x5d\x0d\xeb\xcf\x07\xd1\x08\xc5\x41\x0d\xf4\x95\x39\xfc\x96\x57\x33\x2b\x9f\x76\x05\x91\x5f\x3a\x88\x02\x97\xb4\xf9\xab\x75\xcc\xc7\x0d\x0c\xa2\x07\xc0\xed\xa9\x84\xf1\xc1\x09\x21\x39\xfd\x34\xc5\xd6\xab\xed\x9e\x0d\xe3\xc8\x69\xf2\xa2\xbe\x05\xde\x28\x3e\xf6\x93\x32\x69\x52\x64\x26\x2f\x28\x30\xd5\xe5\x7f\x7a\x28\xff\xf0\x79\x0c\xe5\x38\x20\x7c\xb5\x9c\x85\x00\xc7\x8f\x95\xb0\xf0\x02\xd3\x1a\x6c\x0f\x7d\xab\x5b\x38\xf0\xda\xc1\x59\x5d\xd3\x08\xea\x78\x72\x1d\xe3\x56\x3e\x52\x42\xc8\x86\xe0\x6c\xcd\x16\x36\x33\x09\x69\x6c\xc8\x20\x60\x0d\xd8\xe0\x8a\x6c\xad\x89\xaf\x41\x8d\xdf\x8a\xe8\x0e\x71\xed\xb7\x74\xf5\xa6\x05\xc3\x84\xd7\x77\x33\xa8\x8f\x68\xb4\x1c\xb1\xc9\x69\xb2\x24\x28\xd6\x5c\xf4\x72\xe5\xe3\x95\x02\x03\x2f\x92\xef\xa8\x06\xdd\x66\x20\x3b\x85\xf8\xbe\x7d\x98\x5c\xab\xdd\x69\xee\xdb\x6c\x1c\x46\x26\xa6\x20\x44\xd2\x4e\xc5\xa5\x0b\xde\x3c\x84\x03\x50\xb8\x47\x25\xe8\xff\x99\xaa\xed\xbe\xd2\xce\xad\x71\x79\x00\x67\x0c\xa5\xa2\x8d\xfc\x58\x61\xb4\xc2\xd8\x44\xc3\x88\xa1\x18\xdc\xaa\xa5\xad\x24\x6d\x5b\x1f\xc6\xad\x26\x69\x51\x30\x64\xb6\x49\xda\xc2\x57\x8c\xbb\x99\x74\xbe\x85\x5a\x49\xf3\x2c\x4d\xb5\xf9\xf7\x2d\xb5\x57\x37\x84\xba\x8f\xa9\x09\x88\xee\x41\x68\x0a\x9e\x8b\x74\x79\x93\xf7\xa6\x53\x26\x75\x58\xc7\x26\xbe\xa3\x83\xd5\xc5\x20\xe1\x90\xa0\x77\x17\xa4\x51\xf9\x64\xf2\x38\xb4\x51\x91\x8e\xfb\x83\x99\x6a\x75\x4a\xb3\xc4\x23\xa1\xef\xd4\x2d\x82\x5c\x5f\x92\x66\x43\x67\x3b\x50\xa7\x61\xc6\x22\x3e\x51\xda\xa7\xd1\xb0\x6b\x62\x26\x67\xae\x56\x3d\x8b\x10\x51\xcc\x21\x82\x44\xba\x61\x38\xec\x46\x09\x0c\x1e\x03\x9f\xe9\x2d\x09\x08\x7a\xfb\x8d\xef\x5b\x6a\x0f\xa3\x1e\x69\xd6\x38\x11\x8d\xb3\xf4\x09\x3e\xf6\x36\xc0\x0c\xbb\x69\x8f\x39\x97\x05\xe1\xaa\xca\xa4\x57\x54\x31\xbc\x6b\x8b\xc1\x4a\x9a\xf5\x2d\xf2\x37\xae\x76\xa9\x98\xf5\x0f\xa7\x36\x2d\xc9\x71\x99\xa4\x27\xd4\xd6\xb0\x19\xef\x97\x4a\xa1\xf2\x7d\xd5\x35\xe8\x9a\xac\x6f\x22\x4d\x4a\x74\x83\xb6\x21\x1f\x07\xa2\x67\x93\x8f\x6c\x38\x8e\x99\xc0\x68\xf1\x90\x27\xfa\x5f\xf2\xfc\xc1\x0d\x13\x72\x61\x9a\xac\xc4\x51\x08\x1e\x18\x07\xdf\x70\xf5\xe5\x0b\xa5\xbe\x92\x70\x55\x42\x1e\x37\xdd\x55\x6d\x28\x69\x09\x7b\x10\xe2\x28\x36\xa1\x05\x65\xa5\x07\xa7\x94\x8a\xe8\xe1\x01\x42\x19\x79\xf4\xdb\x8d\xf6\xf2\x7c\x7b\x38\x2e\xa2\xd8\xb8\xb6\x14\xb6\xfc\x07\x0a\xf2\xff\x81\x42\xe8\x66\x36\x4f\xc7\x59\x68\xf3\x27\x15\xdf\xf5\x69\x35\x0b\xf9\x1c\x19\x42\x20\x1f\x9e\x98\x28\x1e\x6c\x2e\xb9\xd4\xd8\xcf\x90\x79\x33\x0c\x19\x80\x9e\xa7\xb8\x32\x8f\x84\xe1\xe3\x52\x4d\xbc\xb6\x26\x0a\x6f\x1c\x8d\xe2\x74\x68\xc2\x0d\x2c\x07\xc4\x56\x1f\x29\x21\xde\x8f\x54\xa3\x3a\x4b\x13\x13\xf7\x66\x6b\xb4\x0e\xf8\x15\x46\x01\x83\xfa\x45\x55\x3b\x0e\x38\x7c\xf0\x8b\xdb\xc6\x8c\x16\xdb\x0b\x8b\xdf\xa0\x1d\x2d\xcd\x1f\x9f\x76\x9c\xa5\x6c\x55\xe2\xfe\xd6\xc2\x02\xdb\xc9\xaf\xc1\xcd\x88\x5b\x62\xf5\x58\x9c\x1c\x29\x55\xf5\xec\xcb\xd2\x13\x82\x5f\x25\x3c\x96\x70\xa9\xa9\x16\xde\x16\x2e\x4f\x68\x88\x3d\xc3\x2f\xc7\xac\x2c\xb8\xa8\xa4\x26\xee\xaa\x55\xc6\x79\xa1\x03\xd5\xfe\xca\xeb\x1c\x00\xfc\x53\x40\x42\xf0\x0f\xef\x53\xef\x1e\x0f\x7d\xb3\x26\xcb\x76\x1b\xd9\x1c\xe2\xc1\x8f\x91\x57\x4a\xe2\xdb\x54\x76\xb1\x45\x11\xd3\xf2\x44\x19\x40\x2a\x0c\x2a\x73\x9f\xde\x2b\x0b\x0b\x55\x70\xb3\x52\xb8\x5a\x0d\x23\x4d\x15\x33\xf0\xc7\xb5\x2c\x7b\x18\x01\xbb\xab\x21\x41\xe8\xd3\x5c\xa4\xe7\x23\x93\x03\x8f\xb3\xb6\xd9\x86\x13\x9a\x82\xff\xfc\x24\xf0\xd0\x51\x8d\x13\xce\x37\x9c\x73\x61\x9e\x5d\x32\x99\xc2\xb9\xdb\x20\xc9\x44\x52\xfd\x92\x10\x82\x89\xe3\x36\xee\x9e\x4f\x5c\x7b\x7a\xc3\x9a\xac\x0b\x7a\x3c\x4f\x70\x76\x1e\x51\x09\x9f\x4c\x85\x96\x0b\x0b\x60\xd4\x03\xc7\x2a\xe3\x7f\x02\x05\xa8\x80\xae\x83\x44\x08\x8f\xe3\xc9\x09\x63\xd3\x9b\xad\x45\x09\x3e\xda\x7a\x44\x8f\x02\x81\xf6\x47\xa5\xa2\xcc\x39\xad\x1a\x6d\x69\xbc\x82\xcd\xe5\x90\x7c\xdb\x65\xbe\x28\xee\x5e\x7c\xa1\xe3\x2f\x67\x76\x22\x5e\x60\x25\x4a\xa2\x7c\x60\xf5\x10\xe1\x67\x5a\x9e\xf6\x33\x35\x73\x9a\xff\x85\xd1\x2e\xda\x7c\xc8\x15\xfe\x91\xb2\xff\x73\x28\xff\xb2\x1e\x06\x9e\x02\xf0\x82\x67\x4a\x8f\x6f\x79\x54\x2a\xd6\x0f\xcd\x19\xb7\x6e\x7b\x7b\xbc\xf4\xed\x16\x2e\x00\x5f\xf6\xf4\x44\x29\x5a\x9c\x53\xfd\xc1\xdd\x13\x9f\xb6\xfc\xa9\x89\x9f\xae\xda\x78\xa5\xe3\x27\xb7\xaf\x51\x8e\xe7\xe8\xe7\x3d\x85\xe5\x7f\x08\x9a\x7b\xd1\x61\x54\x39\xe2\xb3\xe8\xa3\x20\xac\x7d\x6a\xe2\x11\xaf\x61\x6c\xb2\x28\xb1\x45\x94\x17\xad\x5a\xbc\xaa\x00\x19\x57\x82\x67\x14\xe2\x2e\x1d\xce\xfa\xee\xe2\x47\xaa\x79\x7e\x3e\x50\x96\xe7\x6f\x94\xbe\xd9\xeb\x89\x01\x7b\xb6\x30\x4a\xc8\x5b\x70\xd9\xd5\x3d\xcb\x53\xda\xab\x8a\xec\xc3\x34\x8b\x6c\xbe\x8b\x2e\xc5\x31\xda\xb9\x41\xaf\xef\xeb\xc9\x80\x0b\x6a\xfc\x1e\xf3\xb8\x28\xc0\x00\xbf\x24\x8c\x80\x1e\x5f\x35\x4a\x63\x81\x94\xe2\x4e\x58\x18\x9b\x4f\xd4\x28\x62\x66\x47\x26\xe2\xe9\x58\x04\xac\x68\xe8\xf2\xb1\x83\x6d\x8e\x13\x9b\x87\xe9\xac\xaa\xae\x82\xe8\xd9\x91\x50\xfd\xca\xeb\x35\x42\x2a\x18\xdf\xeb\x1e\x03\x19\x65\x61\x2c\x79\x8e\x9b\x0b\xf7\x33\xe2\x4d\xda\xa0\x7f\xae\x3d\x4c\xf3\x02\xd4\x4f\xd2\xe3\x23\xc7\xc0\x27\x53\xc1\xe9\xc2\x42\x15\x09\x66\xb3\x7a\x61\xd3\xd5\x20\x71\x7c\xa0\x84\x13\xff\x1d\x96\x00\x93\xbd\x35\x4a\xbd\x75\x63\x9b\xbb\xd6\x01\xde\xc3\x6d\x05\x7b\x9a\x56\x2c\x5c\x3c\xd4\x8e\x6d\x7f\x3c\x44\xe8\x87\xde\x29\x0a\x13\x7c\xdc\x04\x39\x48\xc6\xfd\xbe\x95\xc1\x4c\xd4\xfe\x2f\x6a\xf9\xd2\x8b\xc1\x5e\x05\x19\x18\x99\xcc\x14\x16\x6a\x90\x08\x75\x3f\x57\x60\x27\x86\x54\x3a\x76\x51\xa7\xf6\xfb\x21\xec\xa2\x7b\xee\xfb\x96\xb4\x6e\xc9\x1b\x75\xbf\xc9\x4d\x5f\x55\xab\x1a\x85\x48\x9d\x9a\x58\x39\xb6\x3f\xb9\x37\xdf\x6c\xf7\x63\x93\x27\x44\x8a\xb2\xb4\xe4\x07\xcd\x7e\xe5\x75\x37\x68\xe6\x49\x1d\x4c\x51\x64\x51\x77\x5c\xf0\x84\x99\x30\xae\xfa\x86\xcb\xa6\xba\xfd\x51\x9c\x16\xe2\xe5\x96\x7c\x9b\xa9\xba\x65\x3e\x51\x5b\xa0\x1f\xad\xd9\x7c\x77\x8d\x59\x5f\x51\x3b\x54\x81\x03\x03\xc4\x10\x1f\xb0\x9c\xe6\x44\x53\xce\xce\x10\x04\x14\x13\xf6\x68\x73\xa1\x9b\x75\x63\x2a\x8d\x23\x29\x9a\x7e\x44\xbd\xe9\x03\x5b\x20\x08\x72\xd4\xf0\x87\x65\x3e\xe5\x93\xa6\xd0\x3f\x5d\x59\xc9\x6d\x31\xa7\xc6\x86\x99\x21\x8e\x69\xb5\x15\x99\xf7\xef\xa9\x8a\x1b\x2a\x61\x82\x86\xf3\x89\x5f\x96\x86\xab\x56\x0f\x1a\x70\x3d\x95\x4f\x34\xa5\x6a\x9c\xae\xc7\x1b\x44\x7b\x07\x60\x2b\x9b\x54\x84\xe4\x77\x10\xdf\xc8\x6c\xa3\xdf\x38\x8c\x1e\xe4\x7f\x68\x28\x00\x1f\x6c\x27\xf6\x6d\x5c\x81\x53\xff\xd9\xb7\xe4\x90\xba\xdb\x9d\x6a\xf5\x08\x98\xd1\x9b\xb7\x5a\x13\x5f\xc8\x1e\xf7\x5e\xd7\xd3\x94\xd6\x15\x82\x14\x6c\x48\x3e\x6e\x40\x4d\x1e\x68\x9b\xa4\xef\x4b\xcc\xb0\x6a\xbb\x3a\xaa\x8c\xbf\x6b\xf2\x38\x55\x57\x66\xf4\x9e\xd5\x1c\x45\xa5\x67\xa9\xbb\xa4\x46\x3a\x3f\xd4\xdc\xb2\xf7\x5d\x8c\xf2\xff\x41\x75\xb9\xa9\x28\x94\x0f\xa2\x91\x57\xff\x74\x32\x84\x0e\x09\x79\x45\x61\x83\xe2\x34\xb7\x4f\xd1\x37\x4a\x63\xbc\xf5\x6b\x42\x73\x87\x31\x64\xa0\x29\x2e\x04\x2a\x8b\xfb\x0c\x6f\x1a\x01\xc7\x23\x2a\x37\xf1\x5f\x01\x1a\xb0\x6b\xa2\xa4\xb9\xbe\x44\x74\x82\x91\x23\x6c\x4d\x78\xf6\x9f\xa9\xf9\xf2\x6e\x14\xc7\x51\x9a\x3c\xa7\x80\x6f\x9f\x04\x9e\x3e\x06\xf4\x22\x2c\x81\x8a\x0d\x27\x35\x28\xa5\x87\xba\x1b\xb5\x5a\xc0\x21\x66\x26\xb5\xdc\x60\xff\x7e\x2e\x02\xdc\x26\xf4\x05\xf2\xa5\xab\x68\xb5\xe0\x03\x3b\x09\x7e\x81\x38\x1f\xf5\x51\xc4\x10\x37\x35\xf1\xf9\xf7\xb4\x10\xc8\x1f\x2a\x9e\x8d\x3f\x6a\xa2\x3b\x20\xf9\x59\x49\x2c\x71\x8d\xac\xee\xc8\x27\x8a\x02\xe3\x3f\x4a\x11\x54\x3b\xc8\xb7\x67\x95\x79\x44\xef\x01\x76\x64\x5a\x7a\x68\x61\xb1\xbd\x92\xd9\x24\x1c\xcc\x2a\x24\xf1\x1c\x67\x75\x6e\x92\x62\xff\x7e\x67\xe3\xfc\xe0\x51\x63\xff\x65\x68\x92\x34\x6b\x29\x4e\xc3\x93\x8a\x62\xea\x64\xf0\x82\xaa\xfe\xc7\xe3\xb0\x30\x49\x41\x65\x2c\x7c\x23\xf7\xd2\x24\xef\xf0\x53\xdd\xf7\xd4\x64\xf8\x91\xa9\x8d\xb6\x6f\xa9\x3d\x2e\x0a\xd7\x64\x7e\x0c\x09\xad\xd0\x19\xa7\xc3\x28\x44\x0d\x03\xf6\x94\x0b\x7b\x7c\x32\xf1\xf9\x43\x32\x1e\x76\x6d\xf6\x64\xcb\xe9\x60\x00\x03\x0c\x5b\xf6\x93\x52\xb9\xf9\xdf\xc1\x3a\x02\x58\xf0\x23\xae\x0d\xba\xe1\x50\x25\xce\x51\xfd\x2a\xac\xe6\xec\x44\x29\x18\x9d\xd5\x2e\xf7\x56\x23\x32\x66\x68\xad\x4f\xb1\xb0\xfe\xf0\x75\x7c\xac\x00\x14\x04\x46\x95\x14\x09\xab\x10\xac\x46\x7c\xac\x28\x47\xe2\x6f\x8d\x44\xaf\x5a\xc2\x49\xc5\x29\x78\xd4\xf1\x9c\x8f\xe3\x22\x1a\x9a\x62\x3c\x64\xe0\x2f\x2b\xf2\x2b\xe7\x0f\xae\x2a\x49\x2e\x15\xea\xdc\xc4\x3d\xfb\x0e\xa1\x6f\x5c\x42\x5d\x7d\x03\x10\xb4\x47\x14\x95\xd7\xad\xa9\x0e\xf3\xfe\xfd\xed\x6c\x9c\x0f\x6a\xcc\xc2\xb5\x79\xe8\x17\x94\x7e\x78\xba\x6a\x33\xd3\xb7\x4f\x10\x22\x43\xcc\xbd\x96\x1d\x0a\x7c\xc3\x65\x53\xa9\x54\x6d\x06\x8a\xda\x9e\x81\x3d\x7c\x52\xfa\xda\x52\x5d\xce\x48\xdd\xdf\x28\xb6\x49\xb1\x31\xdb\xfa\xab\xbf\xca\x61\xde\xf7\x4a\xd5\x39\xf8\x9e\x9a\x6b\xf9\x2d\x55\x2c\xfd\xad\x86\x72\xfc\x52\x7b\x9c\xac\x98\x48\x56\xb1\xf0\xec\x78\xa7\x7b\xb2\x91\xa0\xdf\x84\xa4\xc0\x41\xbb\x5f\xb2\x54\xbf\xe1\x2f\xd7\xde\xa7\x32\x99\xa3\x2c\x5a\x33\x85\xdd\xa5\x8c\xfc\x03\x15\xf8\x40\x73\x55\x64\xb4\x54\x76\xf6\x89\x9e\xe3\x90\x6a\x03\x93\xe0\xa9\xba\xee\x4a\x9c\xa6\xd9\xee\xea\xf1\x6f\x61\x86\xc6\x09\xc1\x2c\xcf\x6f\x5d\x52\x74\x4f\x7f\x27\x50\x5b\x07\x93\xd4\x78\xfa\x33\x0a\xa5\x77\x45\x85\x61\xd5\x32\xcc\xa2\x62\x03\x89\x25\xae\xf0\x68\xe9\xc1\x1e\x77\x4a\x2f\x54\x78\x42\x4d\xf5\x61\x0a\x1c\x0d\xce\xef\x6b\x12\x81\x2a\xd4\x74\xfb\xc1\x5a\x06\x7a\x61\x97\xdf\x54\x13\x55\x3c\x8b\x24\xd4\x00\xdb\xba\x17\xaf\x2f\xcf\x57\x61\xfb\xac\x12\x39\x65\x92\x71\x25\x7d\xb7\xe4\xa6\x34\x7d\x75\x76\x73\x6a\xd9\x33\x4c\x64\x46\xf5\xbd\x99\xd5\x02\x27\x5c\x23\x94\x26\x78\xc3\xb0\x46\x04\x95\x57\xc2\x9e\x39\x8d\xb4\xe5\x03\x72\xc3\x0a\x33\x75\x1c\xee\x49\x69\x0d\x48\x64\x32\xe3\x07\x8d\x7e\xeb\xb2\x1b\x91\x18\x58\x33\x52\x01\xd0\x3f\xa4\x07\xcc\xc7\x4d\xed\x43\x08\x24\x58\xe8\xae\xc3\xb9\x80\x7c\x9c\x8f\x9b\x2a\xfc\x69\xaf\xc7\x66\x06\xfd\xbf\x3d\xd5\x95\x6c\x6d\x91\x21\x45\xac\xf8\xc0\xf5\x16\x4d\xbe\xba\xab\xfa\xef\x82\x76\xf3\x9a\xaa\xe7\x69\x1d\x60\xbb\xa1\xca\xc9\xc4\xac\xf5\x71\x59\x35\x51\xf0\xe3\x46\x95\x6e\x52\x42\x9f\x51\x8a\xb3\x98\xbf\xc1\x43\x82\x5d\xc5\xec\xea\x89\x29\x77\xb8\x78\x08\x7e\xa9\xa5\x09\x1d\x3c\x26\xe4\xa2\x22\x19\xaa\x9e\x51\x95\xbb\xd3\x2b\x43\x25\x02\x0b\x96\x8f\x71\xd1\x70\x80\x0f\xb0\x94\x34\x47\x20\xec\xd2\x7f\xab\xb5\xcc\xcf\x39\xd1\x6c\xfb\x36\x81\x9b\x9c\xf7\x40\x87\xf4\xac\x22\xa3\x3c\x5b\x4e\x83\xa9\x5e\xa5\x89\x4f\x62\x3e\x62\x8b\xd4\xc4\xa7\x26\xf4\x52\x23\x9b\x24\xf9\x46\xbc\x66\x92\xc8\xb0\x43\x11\xf4\x2e\x5d\x93\x64\x75\x35\xd6\x87\xee\xc6\x1c\xfe\x54\x56\x99\xaf\x55\x80\xdd\x9f\xe5\xad\xf1\x15\xfc\x47\x58\xfc\xc8\xff\x6e\x39\xdc\x41\x3a\x2e\x98\xe8\xbd\x7a\x34\x0c\xdb\x0e\x54\xf9\xe6\x9a\x9a\xb1\xe9\x65\xe9\x68\xb7\x8f\x89\xaf\xc3\x04\x09\x0b\x00\x3d\x23\x4d\x04\x2a\xd7\xee\x5b\xc8\x4c\x80\xa8\xe5\xea\x95\x8c\x9f\x24\x97\xbd\xb5\x28\x4f\xb3\x0d\x5c\x92\x24\x9f\x2d\x47\x32\x76\xc1\x75\x07\x69\x32\x6b\xd6\x3b\x9b\x3b\x6a\xf0\xe6\xc7\x81\x2f\x02\x31\x98\x5f\x0a\x31\xde\x09\x55\x91\x81\xe5\x3d\x23\x4b\xa1\xe5\x88\xdb\xee\x05\x1e\x8c\x71\xb7\xd1\x87\xc4\x51\x37\x33\x8c\xa5\x75\x04\x3e\x9e\xcc\x47\xf3\xa6\xf5\x6c\x4c\xb2\x06\x8b\x87\x38\x22\x3e\xa3\x51\x62\x67\x1a\x30\x90\x07\xdb\x26\x8b\x72\x40\xa6\x60\x0b\x99\x33\x0a\xc5\xac\x8f\x4a\x3f\x63\x0e\xbb\x08\x73\x72\xb3\x89\xcb\x2b\xa4\x8a\x8c\xc7\x57\xd4\xf3\x92\x69\x2d\x97\x83\xed\xb5\xb4\x10\x92\x21\xb1\xb7\xbe\x1b\xb6\xd9\xb4\x65\xb3\x74\x5c\xa0\x86\xe2\x8a\x93\x55\x5e\x20\x05\x9d\xe9\xe7\x77\x90\x48\xc8\x1d\xef\x17\x9c\x21\xc3\xcc\xf8\x64\x6a\x84\x97\x3e\x95\x26\xa1\xcd\x12\xdb\x9b\x55\x99\xef\xd9\x72\x66\xbb\xb2\x25\xaa\x97\x4f\x42\x4f\x07\x27\x4f\x4f\x3c\x27\xa1\xc9\x73\x3b\xec\xc6\x1b\x43\xae\x75\xd7\x86\x1f\xf9\x64\xca\xc7\x1c\x7a\xad\x72\xd1\xeb\x8a\x2b\xe6\x48\xe9\x87\xd8\x8f\x04\xdb\xbb\x03\x92\x95\x0e\xc7\x99\x29\xcc\x8c\x42\x8d\xb0\x78\x95\x4c\xbf\xb7\x9c\x9e\xe2\x07\x1e\x28\x91\x6c\x14\x03\x32\x6e\x4e\x42\xed\x2c\x41\x9b\x44\x0d\x45\xf1\x9a\x5c\xc3\xfe\x43\x01\xef\xa9\x89\x6b\x43\xcc\x7d\x03\x8b\x86\xb5\x06\xa7\xe4\xeb\xf6\xef\x6f\x47\x49\x5e\x44\xc5\x98\x01\xd1\x7a\xab\xd0\x63\xf4\xdb\xc6\x37\x29\xbb\xd6\x64\xaa\xf4\xb3\x2d\xfa\xf5\x2d\xbe\xf5\x28\x49\x48\x03\xce\x0d\xe6\x7d\xa2\xb2\xdb\x4f\x74\xf0\x3d\xce\x07\xae\x48\x04\xd9\x9f\x9f\x90\x2d\xe3\xe3\xed\x21\xb5\x8d\x37\xa8\x6c\xc3\x89\x0e\x28\x40\x11\x63\x3c\xdb\xf1\x36\x6a\xf7\xc4\x27\xdd\x83\xa8\xc8\x67\x7d\xf5\xf3\x1e\xb9\x76\x6c\xa0\x33\x0a\xb3\x7a\x4f\x6d\xac\x33\x4d\xf2\xc5\xe1\x20\xcd\x6d\x42\xa1\xb9\x90\x74\x2a\x2e\xbd\x1b\x81\xae\x1a\x34\xa4\x5c\x26\x2b\xa2\x30\xc6\x4e\x41\xf6\xff\xdd\x52\x95\x02\xbe\xdb\xa0\x4f\x97\xd9\x21\xa1\x6c\x5b\x9a\xe4\xb0\x8a\x72\x64\xf8\xbe\xe1\x67\x72\x9b\xad\x45\x4c\xe6\x01\x1b\xb6\xa5\xec\xd9\x56\xe3\x0e\x36\xbd\x28\x6d\x69\x52\x2a\xb8\x16\x3e\x6e\x50\x85\x3d\xd0\xee\xc7\xa9\x11\xf1\x3e\x04\x10\x3f\x0d\x94\xfc\xf6\x4f\x35\x12\x26\x4c\xc3\x82\xbb\x38\xc2\x43\x85\x1f\x43\x9a\x78\x4c\x83\xaa\x9a\x92\xe4\xe5\xf6\xd0\xe6\x48\x41\x25\xa1\xa0\x4f\x48\xa2\xd2\xa0\x49\x35\x48\xb3\xe8\x9d\x34\x69\x29\x96\xa4\x9f\x95\x1e\xc3\xf2\xb3\x40\x47\xf6\x28\x1c\x7b\x89\x62\x78\x1d\xd1\xb7\xf5\xdd\x68\x9b\x63\x09\xe6\xbb\xd4\xd8\x22\xb0\xfb\x12\x29\xd2\xd2\x44\x6f\xe9\x33\x5a\x4f\x4e\xa7\xc8\x69\x00\x5c\x27\xec\x21\x6c\xf0\xa7\x4a\x1c\x72\xd5\x14\xef\x28\x5d\xc0\x6b\xaa\x94\x78\xad\x94\xee\x7c\x66\xab\x5d\x6b\xe2\xb8\x8e\x89\xc6\xee\xe2\xe3\xa6\xc9\xcc\x6e\x66\x4d\x38\xa0\xe6\xbf\x56\x9c\xe7\x63\xb7\xc9\xe2\x68\xc5\xe6\x66\xad\xda\xba\x78\x43\x42\xc4\x4d\xcf\x9b\x4f\x34\x19\x69\x6c\xf2\x81\xed\xd5\x54\x28\x55\x80\xb5\xe9\xbe\x78\x94\xa5\x44\x8e\x39\x06\xb4\x58\x2a\xd8\x2d\xa5\xae\xf5\x52\x3d\x41\xf8\xb5\xc5\xf6\xe1\xf9\x37\xe8\x8a\x79\xc2\x48\x55\xbe\x36\x15\x75\xb1\x87\x61\x33\x3e\xa9\xa3\xda\x1e\xad\x49\x43\x01\x27\xb3\x7e\x4c\x15\x01\xdd\x6f\x28\x9e\x93\xdf\x98\x72\x3e\xd5\xae\x22\x16\xab\x68\x25\x0a\xe9\xfa\x79\xa2\xa0\x54\x58\x95\xeb\xee\x5e\xfb\x31\x8d\xda\x98\x22\xe2\xdc\x88\x55\x47\x90\xde\xa0\x46\x84\xa0\x98\xa5\x23\xca\x97\xa6\x49\x6a\x0f\xcf\xcf\xfa\xc6\x1a\x26\x8a\x10\x9b\x5f\x57\x26\x8b\x83\x45\x60\x74\x7e\xec\x0b\x99\x26\x8e\xf2\xee\xb8\x1e\xa0\xe0\x4f\x25\x5a\x79\xd1\x93\x92\x85\x61\xe5\xa3\x6c\xbc\x01\xe2\x52\x34\x12\x8f\xc3\x89\xf3\x89\x8b\xbc\xcc\x3b\x85\x0d\x67\xaa\xe4\x1d\x65\x7a\x8c\xc4\xa3\xf9\xbe\xb3\xa3\x7e\xe1\xc1\xd4\x22\x3c\xf4\x5a\xbb\x6f\xb3\xa1\x81\x01\x15\x7c\x8f\x9f\xd7\x64\x20\x2b\xfc\xf5\xed\x46\x94\x7e\xb5\x88\x8b\xc1\x86\x8e\x59\xbf\xd0\x71\x6f\xd3\x40\x49\x1e\x66\xd6\x26\xad\x3a\x8e\xd5\x39\xf1\xcb\xaa\x36\x9b\x47\xe1\x2a\xfe\xce\xc9\xd6\x78\xb6\xb3\xa9\x1e\xc2\xa1\xd7\xda\x45\x3a\x0e\x41\xe2\x88\x46\xdd\x97\xf4\x01\x3e\xae\x45\xee\xe1\x90\xdb\x7b\xa8\x77\x9e\xd1\x22\x5d\x67\xf4\x64\x6f\x3a\xce\x8b\x34\x69\x79\x95\xa3\x9b\x81\x8a\x16\x6f\xfa\xa1\xf2\x95\x15\x13\x65\xb3\x6a\x41\x61\x3f\xa3\x82\xf9\x15\xed\x14\x84\x04\x1f\xe0\xbd\x0b\x5d\x89\xaf\x0b\x54\xff\x33\x8a\x0d\x53\xd0\xf2\x30\xba\xe6\x18\xbd\xe2\xc5\xee\x8b\xa2\x5a\xfc\x29\x5e\x1d\x02\x12\x0c\x05\xca\xf8\xa4\x22\x97\x3e\xd5\xf0\xea\xde\x68\x9b\x70\x10\x59\xe1\x5b\x15\x49\xdf\xea\xd1\xf1\xb1\x1f\x3f\x23\xce\x7b\xbb\x4b\x73\xbc\xbf\x57\xfa\x75\xfc\x15\x4c\x2c\x52\x48\x68\x0d\x23\x66\x9b\x9b\x28\x2f\x72\x96\x5e\x05\x8e\xbf\x56\x48\xc0\x22\x4a\x22\x9b\x17\xad\x7a\x2d\xc4\x75\x4b\x8e\xea\x3f\x15\x86\x5e\xdf\x71\xe3\xf2\xb7\xa0\x06\x1b\x06\x63\xcc\xca\x4a\x14\x47\x22\x2e\xe8\x20\xe5\x8e\x75\x5c\xe3\xe9\x47\x59\x3a\x4a\x73\x13\x53\x5f\x1e\xb8\xf0\xb3\x78\xfe\x8e\x26\xc5\xa9\x14\xdc\x63\x87\xa9\x8a\x6b\x92\xb7\x3f\x08\xfc\x74\xe7\x59\x54\xd8\x71\x81\xf7\xd1\xfa\x91\x07\xac\xda\x02\x17\x94\xb5\x2b\x55\x8b\xa0\x35\x51\x1c\x2f\xe7\x1c\xca\x32\xcc\xb8\x11\x2c\x2d\x4e\xdd\xef\x54\x84\x14\xf9\x38\xe9\xc7\x55\x74\x0d\x6b\xcc\xca\x2c\x74\x79\xa2\xd2\xa2\xfa\x59\xa3\xcc\x9a\xde\xac\xaa\xf8\xdc\x57\x72\x77\xc0\x9e\xa2\xa3\x71\xae\x54\x84\x57\x9f\x4c\xe1\x70\x96\x96\xda\xa1\xcd\xc8\x34\x1b\xce\x43\x14\x27\x9f\x27\xa3\x51\xbc\xb6\x83\x71\x41\x54\xaa\x33\xaa\x98\x81\xb7\xc4\x8a\x3f\x74\xcd\x32\x4a\xf7\xac\x46\xa3\x45\xc9\xac\x1a\x94\x3e\xab\x84\xbb\x10\x4a\x22\xad\x3d\xa9\x87\xbc\x4e\x2a\x08\x7f\x2f\xca\xab\x77\xde\x8d\xed\x5c\xf5\xd6\x95\xdc\xb9\x58\x1d\xf6\x12\x30\x4f\x37\x14\x75\xd7\x0e\x70\x43\x0a\x24\xb4\x81\x5a\xa5\x1b\x15\xe0\x03\x74\xc2\x7e\x4b\x9e\xba\xc1\xb7\x3e\xa2\xbc\x78\xce\xc1\x15\x1f\xbe\xd8\x71\x80\xbd\xcd\x97\x31\x06\x2b\x2a\xac\x55\x98\x22\x20\x03\xcf\x6e\xfa\xe5\x8b\xdc\x75\x85\x8b\xdf\x09\x10\x9c\xf0\x94\x7b\xe5\x1f\xd6\x33\x15\x31\x9b\x2a\xe7\xc7\xfb\xbc\x84\x1d\x4c\x4f\xfa\x07\x2f\x74\x14\xfb\xc1\x83\xd2\xa3\x3b\xb7\x28\x62\x12\x4b\xa4\xb6\xf6\x8c\xd3\xd2\x35\xb1\x01\x51\x35\x5e\xc0\x5d\xcf\xb8\xfc\xc6\x97\xf8\x04\xb2\xd6\xa3\x81\x6f\x2f\xdd\x9d\xca\xec\x16\x0f\xb5\x13\x8b\x9c\x72\xa9\xd6\x82\xa9\xa1\xec\x71\x42\x37\x7b\xd0\xa5\xb6\x62\x8d\x33\x53\x19\x8b\xdd\xd5\xcf\x13\xae\xee\xef\xbe\x48\xcd\x2d\x96\xf8\xd1\x4a\x0e\xb7\xb1\x27\x85\x25\x81\x1e\x9d\x93\x98\x57\x04\x49\x84\x9f\x97\x9e\xbd\x42\x22\x8d\x36\xe6\x94\x05\xbd\xaf\xab\xef\x78\xdd\x28\x13\x22\xe2\x57\xf2\x68\xee\x13\x8a\xb2\xbc\x3b\xce\xa3\xc4\xe6\xf9\x50\x86\xb4\xdd\x18\xc4\xfe\xfd\x6c\xae\xd8\xa5\xe3\x0a\x6f\x56\x91\xb9\x6c\xf5\x74\x34\x88\xf2\xa2\xda\x72\x95\x5b\xa0\x95\x89\xcc\x09\xa4\x3a\x32\xd2\xe6\x67\x64\x8f\x4d\x65\xa0\x8b\x87\xda\x43\x93\x8c\x57\x4c\x58\x8c\x33\x57\x33\x44\x8c\xb9\x4b\x71\xd2\xe3\xc6\xf0\xfc\x1e\x96\x2f\xaa\xb8\x3d\x0d\x6d\x6f\x9c\xd9\x7c\x56\x5d\xfe\x71\xec\x7a\xa9\xd6\x56\x17\x83\xfd\xc3\x44\x4c\x7c\xd2\xf1\x34\x0c\x23\x9b\xad\xa4\x55\x60\x12\x22\xb0\x17\x39\xef\x49\xa0\x6a\xaa\x13\x65\x1e\x2e\x6b\xf2\x2e\x6e\xce\x0a\xdd\xbb\x9f\x43\x25\x86\x1f\x2f\xfa\x3d\x0e\x57\x89\xc9\x17\xef\x01\x14\x76\x7c\xfc\x58\xe4\xda\xfa\xc0\x0c\x67\x49\xed\x14\xd5\xf5\x4b\xb4\x46\x50\x9e\xd7\x58\xa2\xcf\x34\xab\xd1\xb1\xa9\xda\xe4\xc2\x02\x8d\x23\x18\xc8\xde\x72\xdc\x8b\x1c\x85\x4b\x7e\x7c\x52\x9b\x7d\x8e\x0a\xbb\x57\x77\x2b\x5a\xd8\x08\x2c\x15\xdf\x51\xd9\xdc\xbf\x0c\xfc\xb4\xca\x5d\xc4\x8d\x02\x40\xf3\xfc\x6d\x57\x74\x9d\x02\xe4\x95\xd8\xb6\x57\xa1\xbc\x24\x6f\xcf\xb3\x1d\x7f\x82\x6b\x93\xa0\x9c\xae\x5a\xa4\xbf\x7c\x87\xe4\x7a\x4d\xc8\xb3\x7a\xaa\x30\x9d\xd7\x4a\xdf\x5f\xde\xd4\x48\xf1\xa7\x54\x65\xa0\x97\xd9\x75\x2c\x3b\xa4\x15\x27\x14\xaf\xd5\x4d\x85\x04\x9b\x2e\x07\x1c\x9e\x3f\xd0\x1e\x46\x85\xb0\x24\x31\xed\x39\x7b\x69\x21\x41\xf7\x1b\x77\xde\xfc\xa5\x59\x0f\x90\xd8\x43\x7d\x51\x5c\xff\x0f\xe9\x19\xe1\x27\x59\xa4\x03\x8e\x67\xc7\x44\x41\x69\xb2\xf4\x2d\x1b\x16\x39\x51\xac\xaa\x7e\xea\x92\xa7\x48\xa8\x4f\x41\x1c\xac\xab\x3d\x23\x32\x3b\x17\x28\x19\x68\xcc\x56\xc1\xe7\x60\xd9\xc2\x47\x1f\x2b\x3d\x1c\x71\x98\x0e\x77\xd1\xaf\xc8\x74\x0b\xed\x20\xf4\x69\xff\xd7\xd2\xfb\xf5\xeb\xf4\xdc\x05\x35\x5b\x3d\x77\x14\x64\x00\xcd\x95\x31\x19\xef\xfb\x47\x69\x9a\xd9\x0c\xde\x57\xd4\xf3\xaa\xbf\x74\x5a\x6a\xce\xe9\x7d\xd5\xd4\xad\x29\xd2\x04\x24\x76\x0b\x0b\xde\x57\x39\xfa\x9b\xf3\x2a\x9e\xce\x07\xe9\x7a\x94\xf4\x9f\xa4\x5f\xc2\x73\x3b\x57\x3a\xf1\xa1\x8f\xd0\x10\x16\x50\x19\xb9\x4e\x9e\x4f\x54\xe4\x62\x77\x02\xc5\xfa\xc0\x7a\x6e\xcc\x57\x47\x8b\x95\xbf\x0a\x26\x1b\x2e\xea\x2b\x35\xc8\x14\x46\xf6\x5b\xf4\xea\x59\x40\x50\xe3\x7b\x7e\x42\x98\x0b\x94\x8c\x26\x64\x11\xe0\x07\xdf\x77\xf9\xd6\x5b\x66\x18\x61\x32\xbb\xd6\x53\x13\x46\xc0\xed\x0f\xe7\xcd\x37\xdb\x61\x4c\x25\x0a\x6a\x6f\x02\xe4\x7d\x35\xf0\x8d\x29\xae\x88\x0b\xfa\xdc\xf7\x1f\xab\xb0\xad\xd8\x5d\xad\x0f\xb4\xa7\xef\x60\x7d\x00\x80\xf2\x35\x3d\x0e\xc7\xeb\xe5\x54\x20\x6f\x62\x0d\x62\xf3\xdd\xa4\x35\x28\x9d\x9a\xea\xc9\x20\xa8\xbc\x54\x4e\x63\xcc\x5f\x3f\x80\xf9\x6c\x5c\xe0\x29\x7c\x0d\x9f\xf8\x5a\x84\x49\x7a\x79\x1c\xf5\x2c\x69\x85\x6f\xfd\x0c\xeb\x1a\xef\x81\x25\x4f\x84\x53\x67\x5a\x29\x8f\x9e\x43\x17\xa2\xcf\xb2\x8b\x77\x10\xdf\x0d\xde\xf0\xef\x6a\x98\xc9\xce\x8e\xc7\xa0\x9a\x3c\x4f\xc3\x88\xdc\x1a\xf5\x26\xb7\x48\x2a\xfa\xc0\x16\xeb\xe6\xb2\x3a\x5e\xa9\x38\x09\xb6\x1a\xf5\xbe\x8a\x34\xe6\x1f\x47\x1d\x89\x7f\x90\x47\x02\x30\x32\x09\x5e\xc8\x73\xaa\xcb\x1c\xa6\xe3\x24\x8c\xe2\x39\xc5\xbf\x70\x1f\x0b\x53\x6a\x71\x7e\xc5\x32\xcd\x42\x8d\xda\x86\xff\xc5\x57\x02\xec\x9a\xcd\x2a\xcf\x46\xeb\x81\xc5\x91\x54\xc2\xa0\x75\x0b\xbf\xa7\x6a\x62\xdd\xcc\xf4\x62\xbb\x31\xe3\x5b\x38\x3c\xf0\x2a\x33\x7d\x74\x33\x32\x1a\xa2\x38\x9d\x46\x69\x92\xa7\x19\x0b\x0a\x39\x9a\x11\xd7\x70\xbc\x58\xb6\x1b\x9e\x55\x2d\x0c\x40\xcf\x0d\x26\x14\x25\x3b\x3e\x56\xa3\x55\xcc\x51\x82\x26\x3e\x33\x6a\xd2\xaf\x88\xd5\x6b\x39\x32\xf3\xf3\x35\xa7\xb6\x66\x93\x97\x2b\x1f\xca\x60\xcc\xd2\xcb\x99\xec\xea\x28\xad\xba\xff\x91\x8c\x32\x8b\x4c\xb1\x51\x17\x02\x2b\xba\x3c\x57\xee\xf3\xa2\x83\xdf\x0f\x14\x13\xde\x53\x1d\xe5\x64\x9f\x9c\xb4\x9c\xb4\x20\x00\xa6\xb8\xa3\x87\x74\x77\x08\xae\x76\x4f\xd4\xd0\x05\x73\x66\xc0\xb9\xdf\x0b\x28\xe6\x74\xa3\xe3\x55\xc8\x28\x70\x12\x15\xd1\xcc\x74\x3c\x5c\x03\x4a\xb4\x18\x75\x9a\x45\x5a\x8c\xda\xd1\x89\x52\xc9\x7d\x7a\x36\xb6\x81\xc9\x86\x44\x6c\x57\xdd\xb5\x0c\x2a\xf9\x39\xb8\x07\x8a\xfc\x4f\xcb\xf0\x0e\x4d\xf2\x8c\x0f\x63\x8e\x7a\x30\xfe\xcf\xbf\x00\x68\x98\x8b\xfd\x5d\x21\x73\x17\x03\xa5\xf0\x65\x4c\x8e\xe3\xa2\xaa\x03\xaf\x1d\xc4\x3e\x7b\xc3\xe9\x53\x57\x4f\xce\x15\x2c\x17\x16\x9d\x7d\x56\x98\x18\x44\x19\xc8\x2d\x9e\x50\x45\x80\x67\xf6\x76\x1a\x10\xc7\xf9\x5f\x88\xb9\xf1\x87\xbd\xc2\x03\x27\x58\xe4\x77\x4b\x2d\x8c\xa2\xdb\x14\xc4\x86\x9e\x66\x88\x9d\xb0\x30\xf0\x88\xf8\xd8\xed\xb8\x35\xdb\xb7\x45\x95\xe0\xd1\x0e\xc0\x2e\xdb\x41\xd1\x2c\x1f\x4f\x6a\x0c\xcc\x49\xb1\x4b\x0b\x45\x02\x74\x03\x47\xf6\x19\x3d\x76\xd6\xa4\x56\x94\xf9\x3f\x09\x3c\xc7\x0d\x47\x7e\xfc\xe1\x29\x3b\xf8\x4a\xbb\x9b\x66\x59\xba\x2e\x41\x1f\xa7\xba\x58\x5e\x92\xf7\xfa\x5d\x3f\x1c\xc7\x2b\x69\x86\xbd\xab\x0a\xda\x8b\x0e\xf8\xf1\x0d\x45\x3e\xb9\x66\x93\x22\x5a\xb3\xa4\x8f\x44\x5f\x0e\x00\xcd\x1d\x05\xa6\xb9\xa3\x94\xc0\xc2\x71\x5c\x44\x6b\xc6\x35\x17\x11\xfc\x9c\x55\x70\x9d\xb3\x35\x96\xe5\x71\x2f\x4a\xe7\x54\xa9\xe7\x04\x82\x0f\x7c\xf1\x11\xcd\xa3\x7a\x89\x9e\x07\xff\x43\xa0\x92\xce\x0f\xa6\x5a\x09\x87\xe7\xdf\x68\xf7\xc6\x05\xea\xa2\xd2\x77\xf4\x68\xc1\x73\xcd\xb0\xf6\x81\x35\x78\x26\xa2\x08\xe0\x13\xa4\xcf\x55\xf9\x23\x1c\x67\x99\x4d\xc2\xc8\xe6\x53\x15\x4e\x78\x45\xc6\x2e\x23\x2d\xbc\xac\x86\x0b\xc2\x94\x9e\x0b\x4a\xe3\x52\xec\xa6\x1b\x91\x6a\xf7\xf6\xa2\x47\x75\x23\xa4\xba\xdd\xf3\xb4\x25\xd8\x26\x78\xa2\x7c\xac\xb2\x25\x0d\xdd\x5e\x9e\xe7\xed\x08\x98\x20\x1f\x4f\x0d\x10\xed\x5b\x02\xcd\x62\x2f\xea\x32\xa2\xc1\x51\x31\x29\x3d\xef\xed\x6b\x8e\x88\x2b\xa3\x91\x6b\x50\x20\x2f\xf8\x7e\xa0\x64\x06\xbe\xef\xaa\x7d\xe3\x51\x3f\x33\x3d\x90\x4d\xa1\xc6\x89\xa9\x53\xc7\xa7\xe1\x02\xa7\x5b\xca\xf0\x98\xa8\x78\x52\x3d\x9e\x0b\xaa\xa0\xf0\xcb\x7b\x3a\x0a\xa2\xba\x73\xe2\xcb\x48\x97\x14\xc8\xb4\x45\x7a\xac\x88\xb3\x59\xa4\xd4\x29\xb3\x1d\x16\xf4\xe1\x39\xda\x8b\x92\xbd\x34\x42\x5d\xc2\x22\x0a\x1f\x3b\x06\x2a\xd5\x81\x9c\x31\xde\x4b\x4b\x3a\xf6\x76\x7a\x5c\xe5\x1e\x2d\xb1\xf7\x6c\xf5\xfb\xd8\xce\x3f\x0c\x3c\x88\x84\x09\x4a\x71\xc5\xdf\xc3\xfd\xa2\x41\x7a\x3b\x50\xfc\xc2\x77\x15\xb1\xc9\x4e\x52\xb6\x64\x11\x65\xba\x30\x7c\xed\x4d\x25\xf6\x7d\x8f\x5a\x51\xb8\xc5\x47\x25\x91\x23\x3b\x2d\x2c\xdf\x8d\xbf\x84\x75\x8b\x60\x8b\xb9\x09\x59\xb8\x5e\xc7\xda\xd6\xae\x46\x49\x1f\x15\x3d\xb4\x34\x81\xcb\x40\x36\xc7\x5d\x19\x3e\xc1\x04\x10\xff\x95\x7b\x52\x85\xc9\x0a\x6e\xca\xc3\xce\x5f\x0f\x7c\xc4\x76\xbd\x7c\xca\x2d\x80\x55\x2c\x2d\x87\x91\x73\x40\xde\x4d\x35\x1d\x14\x25\xab\x28\x44\x0a\x87\xb2\x1f\x67\xbf\xa0\x17\xd3\x68\xc0\xa8\x1a\xf9\x37\xba\x03\x2c\xef\x2f\x14\x69\x07\x84\x1d\x84\x3f\xb4\xc6\xce\xac\x44\x7b\xc6\x59\xdf\xa6\x89\xf6\x13\x17\xf5\x88\xea\x45\x85\x42\x79\xc7\x8c\x56\x6c\x4c\xec\x97\xa8\xf2\xe2\x79\x09\x76\x9d\x5e\xb2\x10\xd6\xf8\xe9\x8e\xa8\xc8\xf7\x7a\xde\xae\x1d\x80\xc5\x8a\x2c\xbf\xb7\x84\x1f\x93\xbb\x74\x1a\x9d\x12\x46\xfd\x27\xdf\x40\x59\x0e\x65\xd6\x47\xa5\x12\xf4\x86\x03\xc7\xe2\xe1\xca\x12\x50\xc6\x1f\x22\xb2\x11\x84\xa6\xca\x40\x76\x60\xde\x1b\x0b\x6b\x13\xb1\x89\x2c\x6b\x3c\x53\xa6\xdb\xc2\x20\x10\xea\xd2\xd7\x11\xd0\xe0\x92\x99\x61\x04\x0f\xe7\xeb\xc6\x91\x80\xae\xc9\x65\xff\xc8\xf4\x36\x5d\x82\x8c\x75\x4f\xa9\x65\x2d\x1f\xa0\x82\x4b\xbf\x1f\x0b\x19\x0e\x22\x34\x56\xc3\xe1\x13\x25\xfb\xb2\x6e\x8a\x70\xd0\x4b\x19\x84\x80\x97\x7a\x15\x9e\x8f\x4f\x6a\xb2\x09\x26\x7b\x87\xbb\xa3\x08\xca\xee\x6b\x3e\x1f\xe6\x19\x81\xcd\xcd\x32\x93\xf4\x69\x40\x14\xd7\x81\x07\xf5\x49\xa0\xb8\x41\xa6\xbb\xb5\xd5\x3d\x0f\xd3\xa4\xb0\xfc\x23\xa2\x27\xa7\xe2\xb8\x0f\x14\x87\x6c\x91\xae\x27\xf9\x5c\x4b\x4d\xaf\xab\xd2\xe7\x75\xcd\xcb\xb6\x49\xe5\x23\x99\x6b\xf7\xb3\x6b\x3b\x3a\x9e\x01\x26\xb4\x31\xb3\x3f\x61\x85\xfc\x14\xad\x06\x3e\xd1\x34\xaa\x83\x28\x4c\x57\x56\xe8\xb5\x08\x54\x43\xc1\x36\x54\x8f\x38\xb3\x2b\x69\x36\xcc\x67\xab\x5c\xd7\x11\x78\x48\xa9\xb4\x8d\x81\x3b\x16\xea\x57\x75\x84\x6b\x6a\x4e\x8f\xb5\x97\x66\x3c\x76\x69\x17\x8d\x1b\x88\x9a\xa8\x37\x6e\x7b\x3a\x4a\x87\xd0\x66\x59\xd4\x8d\xed\x4c\x65\xe3\x58\xf4\x15\xc6\xd2\xc1\x4c\xf6\x79\x80\xe9\xf6\xea\xa4\xd4\xe0\x46\x59\xba\x16\x25\x8c\xa7\x50\x53\x10\x6e\x24\x42\x11\x0f\x84\x26\xa6\xd1\xf9\xca\xc7\x2e\x1e\xe2\xaa\xcb\x25\x25\x0d\xad\xc9\x9e\x88\x6b\xe7\x79\x55\xfb\x3a\x8f\x08\xc7\xe1\xf9\x9c\xda\x2b\xb3\x52\x49\x4d\x55\x25\xe6\xbb\x3b\xbe\x89\xff\x29\x76\x29\x56\xe1\x55\xcc\x03\xf1\x09\x9c\x07\x36\xf3\x17\xfa\xae\x15\x91\x15\xdb\x67\x2e\xef\x4d\x3c\x38\xfd\x2e\x15\x29\x04\x3e\x46\xfb\xb8\x06\x76\x40\x46\xfb\x99\xb2\x50\xd9\x38\x79\xba\xba\x2e\xd6\x5f\x27\x43\x24\xb3\xae\x7e\x18\xf2\xe9\x8e\x1e\x2e\xc4\x23\x75\x63\xbd\x8e\x2d\xec\x98\xd2\xef\x07\xf7\x24\x8c\xc8\xdd\xd2\x2f\xa7\x3f\x42\xed\x45\x66\x6b\xab\xfb\x63\x6d\xe8\xa9\xb8\x69\x79\x7e\xb9\xdd\x8b\xf2\x30\x1a\xc5\xc2\xf9\x20\x4c\x7c\xbe\x93\x78\x56\xe1\x4c\x7b\x36\x8f\xfa\x89\xcd\xe6\xb4\xf4\x0f\x3d\x04\x3e\x51\x55\xc2\x13\x0a\x03\xf8\xa9\x4e\xf7\x7f\xd4\x24\xb4\x6d\xc2\x6f\x8f\xa3\xcc\x82\xef\x0b\x05\xa5\x4d\xcd\x6b\x74\xaf\xe6\x6e\x9a\x18\x5b\x4c\x18\xca\x4d\xe8\x3a\x1e\x1f\xab\xe2\x4e\x66\x47\x96\xe4\x38\xdf\xd8\x82\x82\xd5\xd6\xa9\xa6\x36\xc8\xc0\xc4\x85\x26\x49\x38\xa1\xe0\x19\x27\xdc\x68\x69\x3e\x8a\x56\x79\xfe\x0f\xe1\xc8\x79\x1d\x9b\x68\x19\x42\x61\x09\xa4\xd0\xd1\x01\xb9\xd5\xea\x9b\x2e\xaa\x2e\x0a\xc1\xc9\xe1\xf9\x2a\x13\xa4\xc2\x4b\xf0\xa4\xf4\x21\x11\xb7\x63\xbd\x7e\x8c\x15\xc3\x27\xae\x68\xd4\xcd\xc6\xf9\xa0\x6b\x42\x19\x34\x97\xf6\x57\x4b\x09\xb1\xd4\x25\x70\x86\x2d\x1f\xb4\x71\xb9\x54\xfc\xf6\x4b\xce\x02\x85\x36\x29\x32\x13\x47\xef\xb0\x2e\x88\x74\x44\xe8\xce\x11\xd0\x63\x30\x0b\x81\xeb\xe9\xb2\xd6\xe6\x2d\x2c\x51\x25\x56\x3b\x92\x77\x77\xa0\x91\xbb\xd3\x59\x1b\xf3\x0c\xd5\xf8\x08\xbf\x2e\x55\x3b\xf3\x6b\x27\x97\xdb\x4b\xfb\x43\xa3\x91\xac\x27\x14\xb0\xe7\x56\x50\xa3\x5a\x6d\x80\x7e\xe5\xa3\x8c\x99\x4c\x10\x82\x9c\x55\x72\xf8\x67\x55\xbb\x76\xdd\x9a\x55\x9b\xcc\xb4\x16\x16\x3c\x72\xd1\xa9\x2c\x62\x72\x0d\xd1\xdc\xf1\x1a\x6e\xd8\xb0\x74\x11\x87\xe3\x1d\x9f\x6b\xed\x9c\x02\xe6\x10\x4c\x20\x5f\x95\x9a\x9d\x46\x9f\xb2\x12\x63\xa9\xd5\xec\x1a\xb4\x06\xdb\x7d\x6b\xa0\xa1\xc1\x63\x46\xf4\x61\xd6\x95\x81\xb5\x12\x74\x8b\xf4\x10\x7b\xd9\xb8\x3f\xe7\x8b\x3d\x75\x71\x9b\x0f\x95\x82\x2a\xe6\xa7\x91\x3e\xb0\x03\x40\x01\xe1\xea\x94\x03\x7f\x7d\xf1\x50\x3b\x8d\x89\x74\xc1\xcb\xb6\x9f\xd0\xca\xeb\x27\x54\x6f\x28\x34\x49\x68\xb3\x5d\x8a\x32\x95\xb5\x24\x35\x6d\xbf\xfb\x87\xca\x43\xc0\xfc\x5e\xab\xf5\xf8\x3c\x9d\xfd\xb5\x06\xec\xec\x81\x76\x61\x63\x3b\x1a\xa4\x6c\x2e\x1a\x25\x89\x74\x9d\xac\x9f\x26\xa4\xbd\x88\xb9\xd1\x63\x41\xeb\xd0\x6b\x6c\x84\x77\xa9\x31\x87\x19\x3d\xc8\x7f\x41\x37\xae\x2f\x53\x69\x5c\x8a\x35\x4d\x82\x9f\xb9\x89\x4d\x06\xea\x77\x7c\x19\x07\xbc\x08\x2c\x7f\x57\xa1\x59\x4e\x36\xd8\x89\xa5\xb6\xe9\xf5\x64\x7f\x20\x10\xfc\x92\x9e\x07\x1f\x97\x8a\x8e\xfd\x5b\x16\x2a\xd1\x4c\xf1\x81\x9b\x16\xbe\x8f\xed\xbd\xb2\x7d\x4b\x80\x19\x57\xdb\x5d\xc6\x9c\x9d\x90\x5f\xf5\x63\x02\x74\xf7\x80\x3c\x10\x08\x89\x5e\x98\xce\x62\xf9\xd8\x4b\x42\x65\xa6\x3b\xe7\x4b\xe9\x33\x13\x9f\xad\x7d\xae\x5b\x54\x0f\xa9\x51\x83\xa7\xf7\x5b\xa5\x92\xa4\xbc\xe6\xf4\x3b\xb9\xbc\xbd\x9b\xfe\x51\x64\x45\x7d\x5a\x7e\x0d\x49\x2d\xcb\x6d\x95\x1a\xe2\x53\x7a\x7f\x71\x5e\x69\xff\x7d\xfe\xc7\x3b\xca\xf9\x7c\xad\x48\x01\xd7\xab\x90\x70\xc6\xeb\x89\x9d\x54\x90\xab\x93\xaa\xc1\x7a\xa3\x01\x27\xda\x5e\x37\x91\x1f\xc3\x63\x89\x05\x3d\xc2\xdd\xa8\xbf\x36\x20\x56\xfc\x0d\xe5\x9e\xaf\x28\xf7\x3c\x9d\x8b\x23\x62\x5e\x93\x68\x1f\xe6\x6e\x06\xf1\x05\x9f\x4c\x51\x9d\xef\xdf\x0f\xe0\xa7\x70\xdd\x39\x5d\x25\x25\x0c\xa9\x77\x44\x11\x6f\xbc\x50\xbd\x15\x44\xaa\x27\xd4\xa0\x03\x9a\x1d\x42\xb8\x4a\xf7\x26\xc0\x95\x96\x53\x02\xbc\xe1\x91\xfa\xbb\xbf\x39\xa1\xa8\x0f\x81\xc2\x3d\x64\x4d\x02\x55\xa2\x77\x80\xa4\xe9\x29\x02\x11\x30\x11\x23\x5e\x21\xd6\xca\x5d\xbc\x5c\x18\xe9\x27\x90\x82\x31\xb5\x76\xa0\xe4\x53\x8e\xa3\x25\x80\x74\x67\x07\x2a\xb2\x48\x1f\xa0\xaf\x8c\xf6\xcc\x4d\xea\xa5\x4a\x62\xa5\xb0\xae\xc3\x51\x9c\x6e\x58\x9b\x3f\xa9\xc6\x7f\x3e\x09\x94\x11\xbd\xa1\x56\x69\x8b\xaa\xcf\xd8\xc8\xb7\x68\xed\xcb\xc8\xab\x62\x78\x01\xb2\x40\xa6\x8a\x7c\xbb\xeb\x96\x6e\x4a\x69\xd7\x99\x8f\xac\x71\x4c\x51\x82\xdf\x50\x58\x8e\x1a\xa7\x54\x6e\x05\xd0\xaf\xeb\xd1\x7c\xac\x32\x74\x93\x14\x83\xcc\xbc\xdd\xd2\x9d\x7e\xc5\x13\x39\xa9\xc2\x8d\x51\x66\x57\xfe\x62\x7b\xed\xe7\x28\xd0\x63\xe9\x73\xc4\xdd\x48\xae\x77\x68\xd4\x0a\x17\x90\x98\xbd\x5b\x31\x79\xbf\x04\x38\x8d\x14\xa9\x3c\x57\xcf\x73\x8a\x44\xfd\x36\xb8\x12\x6b\x38\x1b\x44\x17\xcf\x21\x22\x47\xa4\xff\x67\x27\xbe\x44\xf6\x09\xe5\x71\x78\xe3\x1f\xc0\x3c\xb8\xd5\xeb\xdc\xc3\x59\x0a\x90\xe1\x1e\x76\x77\x74\xba\xfa\xf4\x84\x96\x82\xe3\xeb\xac\x5e\x2f\xae\xeb\x87\xf0\x2f\x0e\xbc\xe1\x00\xd1\x3b\x49\xeb\x4a\x48\xd0\x69\xc1\xba\x21\x08\x57\x94\xbf\xe0\x06\xa8\x88\xc3\x3f\x8b\xf2\x34\x41\x60\x82\xdf\x3d\xa6\x20\x14\x00\xcb\x0b\x7f\xef\xb6\x06\xe1\x9b\x6f\xb6\xf7\xef\xdf\xdb\xd2\x9a\x1c\xd5\xd3\xe6\x99\x1e\x4a\x47\x90\x4e\xf1\x16\x47\x8d\xe4\x11\x09\xca\x61\xb5\x33\xbd\x1f\xbc\x17\x0f\xb0\xe1\x87\x7f\x40\xcb\x1d\x09\x17\xd3\x54\xf2\x09\xb5\x1a\xd0\xcf\x46\x1d\xc5\xa5\x55\xd5\x5b\xc0\x66\x39\x45\x4b\x1e\x35\x01\xa1\x76\xc7\xeb\x45\x1a\x8b\xe0\xec\x0e\x76\x09\xbe\x6b\x37\x49\xed\xe0\x4a\xde\x6b\x82\x0c\xf6\x09\x3c\xe4\x6c\xa4\xeb\x52\xbb\x4e\xff\x39\x95\xec\x87\x69\xc6\xa8\x5e\x86\x10\x05\x35\xd5\x15\x5f\x52\x1e\x27\xeb\x69\x56\x0c\x20\x4e\x89\xf5\x04\x18\x14\x1f\x37\xcd\xcf\xb3\xa0\x14\xbe\x9f\x07\xc6\xb0\x35\x65\x7a\xac\xc6\x8d\x6f\xb8\xa8\xe1\x54\x62\x3c\x27\xe6\xcd\xa9\x91\xec\x37\xdf\x6c\x8f\xf2\x8d\x38\x8e\xc6\x43\x05\xd5\x3e\x17\x28\xa8\xf6\x74\x7c\xba\x6f\xa9\x6d\x86\x51\x66\x34\x8a\x7f\xa2\x29\xc3\x27\x2e\x0c\x8e\x23\x23\x28\x45\x56\xfe\xa6\xbb\x15\x15\xf0\xa7\xdd\x13\xec\x23\x18\x70\x03\x9c\x7e\x7e\x65\xd3\x39\x57\x13\x65\x45\xc4\xbc\x30\x88\x41\xde\x55\x95\xdd\x77\x5d\x65\xa2\xca\x33\x56\x22\x2e\xc0\x4b\x41\xf7\x6c\xa0\x86\x42\xce\x36\xcd\x91\xe4\xa9\xd7\x6c\x60\x16\x32\xca\x1d\x84\x91\xac\x21\x59\x8c\x4d\xd2\x1b\x9a\x6c\xb5\xe5\xfb\xa1\xef\x69\x60\xef\xf4\xca\x7a\x85\xfa\x03\xa3\x28\x23\x12\x39\xcf\x6e\xa0\x71\xc2\xd3\xe4\x64\x4b\x4b\x74\x53\x71\xda\xcf\x15\x2b\xce\x45\xcd\x34\x73\xd1\xb5\x0d\xc3\xcc\x9a\x61\x54\x85\xb9\x95\x3d\x41\x4b\xef\x86\xea\x15\xde\xf0\x62\x52\x26\x2b\x12\x1e\x6a\x15\x3a\x1e\x35\xc1\x71\xbb\x81\x68\xb3\x6b\x57\xd2\xcc\x52\xc2\x21\xd4\xb3\xde\x1e\x5d\xa5\x0d\x8a\xb5\xb6\xa5\x21\xb5\x26\x33\x49\x1a\x31\x21\x22\xbb\x41\x35\x32\x7f\x3c\x78\x41\xa9\x55\x76\xf3\xc2\x48\x65\xa7\x49\x10\xf2\xcf\x3f\x8e\x69\x64\x34\xca\xd2\x51\x06\x90\x80\x0c\x4a\xa0\x86\xca\xc4\x7f\x7c\xd2\x10\x10\x1d\x6c\xf7\x8d\xcf\xec\x44\x4d\x4f\x81\xb0\xce\x2b\xca\x87\x7e\x1a\xf7\xf2\x61\x54\x00\x64\x2e\x8d\x7e\x2f\xc0\x72\xb6\x96\xca\xae\x98\xec\xe9\xca\x3c\xc1\x0b\xff\x33\x45\xee\xc8\xee\xca\x51\x50\x7a\xdc\xcd\x35\xea\x9d\xa1\x9d\x8c\x6f\x86\xf1\x67\x5c\x18\x4f\x0f\x07\x50\x37\x14\xe8\xa9\xbf\x98\xa7\x27\x8a\x2f\x9d\x47\xe7\x85\xae\xd9\x47\xe0\x49\xba\x66\x1e\x5f\x3e\xfb\xc6\xb6\xd9\x87\xe5\x03\x7f\xae\x7a\x4e\x04\x81\xd8\x82\x2c\xd1\xd6\xd5\x52\x75\xcd\x55\x68\x0d\x58\xa9\x90\xe1\x69\x3d\x95\x6c\x48\x25\x38\xf7\x80\x5f\xf7\x27\xf5\x5a\x6e\x6c\x9f\x69\x39\x27\xcd\xfc\x81\x9a\x59\x4b\xbe\x9c\x6e\x14\x08\xab\xdf\xc3\x0e\xe7\x68\x58\x25\xa8\xb7\x28\xeb\x81\x13\x78\x57\x97\x61\x21\x61\x83\x42\xd9\x5d\x20\x08\x58\x04\x3c\xf0\x6d\xa1\x3d\x13\xd5\x73\x41\x29\x14\x76\xfd\xfb\xc1\x73\x0a\x92\x95\x14\x83\xfc\x09\xfa\x4b\x9e\x07\x81\x77\x64\x1f\x4b\xef\x10\x40\xc0\xab\x4a\x61\xe7\x42\x9d\x6f\xb1\xba\x00\x04\x96\xd0\xbe\x72\x8d\x54\xe7\xa0\x77\x4f\xb6\xaf\xdd\x43\xaf\xb5\x33\x5b\x44\x99\x9d\x96\x86\xc1\x32\xa1\xcc\x70\xeb\xb6\xcb\x76\x36\xac\xc9\x76\xf9\xb1\xbb\x16\x5a\xf3\x0c\x16\xe2\x3c\xdb\xb1\x5a\x2c\xcf\xd7\xd0\x5f\x54\x98\xfe\xcf\x7f\xae\x53\xeb\x81\xf8\x82\x7d\xd7\x00\xc0\x8d\x7d\xae\xa0\x6e\x0e\xf7\xa6\xc0\x22\xeb\xa6\x0f\xff\xda\x72\xac\x2c\xdc\x35\xe1\x13\x5d\xfe\x8e\xcd\x98\xb3\x08\x11\x2c\xa7\xab\x96\x69\xe5\xc6\x61\x56\x8a\x76\x78\xb4\xc1\x09\x1c\xbb\x69\xe2\x69\xc1\x09\x5a\xe2\x90\xec\x80\x65\xe6\x46\x24\x7d\x48\x9a\x92\x0e\x5b\x9c\x76\x53\x1e\x5f\xd4\xe2\x5c\xa8\xe8\xff\x7a\xa9\xf8\x9e\xef\xd4\x08\xda\xb6\x57\x47\x5e\x69\xaf\x44\x4e\xe2\x58\x34\xd5\xd4\xf4\xde\xe5\xa9\x54\x98\x6a\x94\x2c\xc7\x44\x3a\x9c\x8a\x74\x5b\xd1\x96\x82\xf2\x41\xee\x55\x85\x80\xc3\x71\x12\xe5\x45\x3e\xab\x46\x1a\xee\x68\xfe\x8b\xff\xf3\xe5\x8e\x12\x46\x7b\x72\xa2\x67\xee\x74\x6f\x3c\x59\xb3\x09\x46\xcc\x84\x44\x15\x78\x0a\x3e\x9e\x5a\xa8\x4b\x4b\xed\xc2\xc4\x44\x4c\xa9\x36\xed\x95\xda\xd8\x94\xa7\x34\xb3\x6f\x9b\x7e\xdf\x56\xc9\x3e\xfe\x1a\x99\x10\x0f\xac\xf3\x89\x9a\x0a\xc9\xd3\x78\x4d\x20\x0c\x88\x8a\x6e\x28\x7e\xb5\x1b\x6a\x8d\x56\xd9\x25\x98\x41\x5d\xf5\xf3\x13\x8a\x31\x25\x95\x52\x2c\xda\x59\x8c\xd5\xd3\xa8\xb3\x38\x05\x62\x59\x6c\x8f\xe2\x71\x3e\xe7\xbb\xd3\x67\x95\x50\x1e\x20\xcf\x4c\xcc\x4a\xe4\x4b\xd8\x63\x1f\xd7\x58\xdc\x3d\x6a\x21\x1e\x77\xb3\x28\x34\x49\x01\x49\x4e\xc4\xb9\xc8\xb2\x60\x52\x40\x89\x86\xa2\x1b\x47\xb6\x7c\x52\x2a\xe5\xee\x8b\x53\x97\x49\xf6\x22\x86\x32\xad\x63\x18\xf2\x6c\x43\x0d\xe5\xbb\x03\x6d\x13\xf5\x90\x31\xa0\x43\x73\xa9\x06\x69\x57\x90\xbb\xab\x0d\x74\x30\x6f\xb4\x8b\x2c\x1d\x77\x63\x2e\xda\x20\x51\xbb\x11\x28\x68\xca\xb4\x6c\xc6\xfe\xfd\x6d\x3b\x4c\x95\x22\x14\x0f\x99\xa8\x48\x59\x2b\xee\x15\xf9\x46\x4b\x0f\x19\x91\x81\x95\x81\xa3\xe9\xa9\xa7\xb6\x19\x5a\x7a\xb6\x2d\x5f\x98\xe1\x49\x4a\x3e\x69\x80\x15\x2f\x92\x7a\x1a\x2f\xdd\xa6\x09\xfc\x3d\x7e\xa2\x72\xcd\xce\xaa\xfe\x2d\xe6\x67\x1c\x35\xc4\x3e\xb1\x25\xc7\xe9\x05\xc2\xa7\xfd\x58\x51\x00\x15\x03\x9b\x66\xd5\x0e\x6d\xa9\x31\x32\x46\xfc\xf3\xc9\xd4\xde\x5a\x9e\x6f\x87\x69\x1c\xdb\xb0\x68\x79\xa0\xc4\x29\x44\x14\xc2\xd9\xf4\x9c\xaf\x9a\x47\x79\xb4\x06\xf8\xaa\x43\x20\x3b\x06\xa6\x73\x4d\x7c\x05\xdf\xfa\x8f\xff\xd3\x5f\xa0\xbd\x25\xac\x31\x95\x7f\xe7\xe3\xa9\x19\x7b\x12\x22\x4a\x8a\xcc\x84\xbe\xc4\x84\xf5\xb1\xa9\xf0\xe5\x9b\x0d\xf4\x50\xaf\xb6\x8b\xcc\xf4\xdc\x87\xa4\x2d\x5b\x7d\x48\xba\xb2\x6e\x70\xd5\x66\x79\xb5\x3c\x62\x9a\xbc\x58\xd4\xa5\xd3\x83\x9e\x42\xd3\x15\xc7\x9e\x20\xd3\x24\x02\x32\x33\x4b\x4a\x6f\xd3\x97\x20\x06\xb6\xd7\xa7\xe9\x78\x87\xa0\x06\x2a\x99\x8f\x95\xef\x1a\x86\x3d\x9b\x0d\x85\xf1\x13\x43\x28\x17\xd5\x74\xca\x45\x85\x77\x18\x98\x78\x65\x97\x8f\x5f\x77\x74\xbc\x3b\xb8\x81\x08\xb3\x86\xba\xe3\x13\xda\x93\x28\x19\x7c\x8a\xeb\xc5\xde\xfb\xb2\x01\x54\x7b\x80\x66\xd6\x6c\xdc\xf2\x9a\xc8\xac\xad\x24\x95\x39\x47\x27\x3f\x34\x71\x6c\xf3\x62\x86\x2a\x28\x28\xf5\xcd\x75\x7c\x8a\x0c\x44\x31\xd2\xfb\xf3\xca\xda\x67\x76\x64\x31\xa3\xe0\xa9\x83\xfe\x20\xf0\x0b\xe2\x0f\x1a\xa5\x2d\xd2\x7c\x68\x0b\x9e\xcc\xc5\xad\xdc\x50\x43\xd9\x37\x9a\x68\xd7\xd6\xd3\x4c\xa4\x98\x58\x7b\x00\x45\x77\x11\x22\xd8\xfe\x33\xcb\xf3\xcb\xed\x95\x34\x1c\xe7\x75\x49\x5c\x8c\x9f\xf2\x71\xf0\xb2\x22\x5d\x4a\xa2\x91\x63\x51\x77\x94\x56\x77\x15\xa5\xd5\xdd\x72\xbb\x20\xc9\x2b\xed\x74\x65\x65\xb7\x12\xae\xba\x48\x24\xdb\x4e\x6c\xb5\x5a\x02\x4e\x71\x52\x9c\xca\xdc\x9f\xa6\x62\x1e\x62\xe3\x3d\x93\x9a\x70\x5b\x15\xf3\x31\x2f\xd3\xd4\xbc\xd8\x2b\xed\x78\x9c\x0f\xc8\xa9\xcb\x24\x5f\xf5\x56\x79\x4e\x94\x6e\x4b\x14\x10\x7d\x7e\xf5\xd6\xb8\x17\x85\x11\xdb\x4a\x94\x34\x7e\x97\x9e\x34\x1f\xd7\x07\x48\xfa\x0c\xb4\x74\x12\x0e\x55\x9a\x88\x98\xeb\x16\xfa\xd3\x68\x19\x7d\xe6\xc7\x5a\xa3\xd8\x0d\x02\x81\xb8\xe2\x9a\x02\x15\x80\xa8\x13\xed\x9c\x69\xd3\x44\xa4\x04\xd1\x9a\x4d\x58\xe6\x96\x9b\xea\x88\xe8\xa5\xc3\xee\x89\x29\x73\x5b\x90\x7e\x28\xed\xe0\x0f\xf7\x12\x62\x56\x0c\x8d\x1f\x76\xfb\xeb\xe0\x3c\x17\x8e\x7c\x8f\x89\xfd\x5a\x45\x78\x1f\xc2\x35\x21\x3d\xba\x13\xa8\xb1\xf2\x47\xaa\x42\x39\x34\x19\xcd\xf6\x22\x02\x12\xe8\x34\x5d\xaa\x90\x97\x28\x96\xb4\x2c\x0a\x6d\x6f\x57\x75\x51\xe8\x15\x70\x74\xeb\xc8\xf8\xdd\x74\x29\x9a\xce\xa8\x2f\x61\x34\x1c\xb5\xfd\xd3\x0a\x75\x7d\x52\x59\x7d\x36\xdf\xdc\x77\xd6\xac\x5d\x35\xdd\x79\x11\x57\x52\xb9\x75\x9a\xe7\x51\x97\x29\x48\x05\x97\xe8\x53\xb1\x2d\xca\x30\xf0\x70\x2e\x2b\x32\x34\x64\x51\xfc\xdf\x55\x43\xb1\xb2\x0f\x1b\xf9\xac\xd2\x5a\xfd\x54\xb1\xf5\xa2\x41\xca\xff\xbd\x54\x54\x72\x9b\x9a\xc5\x27\x5d\x37\x59\xef\x09\x55\x97\x3d\x1e\x78\x36\x90\xeb\x4a\xb1\xe0\x5d\x15\xfc\x00\xff\xc6\xc3\x37\x74\xd1\x70\xf4\xdc\x75\x83\xcd\x78\x10\xa8\x70\xf3\x66\x9d\x8e\x7d\x88\xa2\x9a\x68\x51\xf9\xd6\xd2\xdf\x6f\x1c\x5a\x1f\xc5\xd6\x38\xab\x81\x05\xff\xec\xc4\xf7\x4b\x9f\xed\x34\xc4\xdd\xfd\x41\x9a\x17\xdd\x71\xee\x25\xb2\x65\x0e\xc9\x17\xaa\xaf\x2b\x42\x95\xa3\xe5\x0b\xf5\x2c\xfa\x95\xf6\xbe\xa5\x67\x3d\xd9\x03\x17\x00\x44\x2a\x88\xb6\x84\xd0\xbb\xd0\x5d\x63\xdb\x5f\x52\x65\x95\x9b\x7a\x14\x79\x67\x4d\xdf\x74\xb3\x54\xeb\xfd\x1e\x95\x5d\xe1\xd2\xb7\xd4\x3a\x7a\x80\xe8\x10\xa6\x91\xa7\x13\x50\xb4\x3b\x10\x78\x68\xcb\xdf\x29\x7d\xef\xe5\xbb\xc1\x53\xde\x43\xa2\x07\x8c\x1c\x15\x18\x5a\xf8\x5a\xd6\x7c\x15\x4e\x83\x86\x80\x6e\x14\x85\xab\x8a\xfa\xd1\x89\x6d\x2e\xf9\xe9\x31\x8f\x62\x5a\x37\xf1\x6a\x3a\x46\xe7\x8e\x29\x53\xe9\xea\x84\x3e\xb5\x61\xb0\xc4\x24\x76\x18\x19\x36\x6d\x9a\x92\xc1\x69\xdc\x3a\xda\xb5\xf7\xd5\xf6\xe9\x45\xf9\x68\x5c\xd8\x1e\x45\xd9\x28\xb7\x9f\xd1\x54\x5f\x27\x4b\xcd\x02\xc6\x9a\xd1\x58\x57\xff\x43\x6d\x5b\xfb\x16\xcd\xd0\x66\xe1\xa0\x8a\xdc\x69\x2b\xbb\x54\x7a\x9f\x54\xb3\x6e\x2b\xb2\xb9\x4d\xcf\x6e\x36\x8c\xfa\x50\x41\x9d\xf1\xad\xe0\xaf\x15\x72\x84\xeb\x38\x32\xc2\xd7\x84\xa1\x1e\xa6\x79\x31\x4b\x28\x3e\xac\x8f\xf7\x01\x89\xc1\x5b\x79\x14\xa8\x6a\xd3\x59\x8a\xe0\x24\x29\x7d\xb6\x1e\x02\x69\x95\x6c\x36\x70\x7c\xd2\x10\xb3\xb5\x07\x26\xeb\x85\x69\x66\x67\x7d\x52\xf0\x10\x3f\x05\x18\x10\x70\x60\xf0\x96\x1f\xc0\xd9\x08\x9e\xc8\xbf\x86\xbe\x19\x76\xa9\x72\xe0\x9d\xdd\xcf\xe0\x59\x65\xca\xa4\x69\x0f\xf7\x6d\xe2\x94\x2b\x6b\x22\xb6\xd2\x76\xdb\xbe\x0e\x29\xc5\x5f\x8d\x92\x95\x34\x5e\xc5\x4a\xc1\x75\x5d\xad\x49\x8d\x7b\x90\xd4\xcf\x6a\x9e\xd3\x8e\xbe\xd5\xaa\x0d\x38\xd0\x6f\x89\x86\xfe\xf6\x30\x98\x12\x2d\x9a\x30\x2d\xa4\x99\x09\x8f\x8e\x06\x1d\x1f\xab\xd6\x5e\x61\xb3\x8c\x22\x7f\x3c\x7f\x80\x00\x01\x0c\x92\x93\xc0\x33\x73\xbf\x65\x86\x96\x0b\x4e\x28\x13\x7d\x14\x28\xf0\x3d\xd8\xc8\x64\x6c\x7a\x5a\xf5\x04\x8e\xf7\x6b\xba\x12\x79\x72\xd5\x23\x40\xb3\xef\x86\xf2\xe8\xa7\xa7\xe6\x56\x17\x0f\xb5\xe3\xa8\x18\xa4\x45\x16\x8d\x84\x12\x91\xa1\x2c\xc0\xba\x09\xae\xa5\xc6\xe5\x13\x46\xb9\x25\xb5\x18\x11\xa9\xf6\x18\x10\xfc\x1c\x82\x89\x8f\x9a\xf8\xe0\xd3\x6c\x34\xe0\x74\x4d\xe4\x95\xfc\x84\xd1\x99\x52\x4f\x30\x8e\x93\x1e\xb4\x8a\xd1\x9f\x43\xd3\x13\x2e\x99\xe9\x3d\xdc\xa8\x4a\xf5\xb4\xdc\x3c\xcb\x82\x18\x4e\xf0\x45\x22\xdf\xbe\xad\x28\xc1\x07\x26\xe9\xc5\x76\x77\x75\x07\x48\xc0\x1f\x52\x1c\x87\xb2\x1c\x90\x36\x58\xd6\xd0\xe4\xaa\xf1\xe3\xab\x86\xe4\x92\xa3\x8f\xad\x5e\x10\xec\xf3\xb1\xd2\xd3\xbe\xac\xa4\x59\x37\xea\xf5\xa4\x96\x01\xd3\xfc\xdf\xd0\xd7\xf3\x71\xc3\xce\x7f\xb5\xbd\x3e\x30\xc5\x4c\xeb\x75\x51\x59\xfc\xbf\x51\x59\x45\x41\xe0\x34\xe5\xc3\xf0\x11\x27\xd4\x5e\x5f\x4f\x87\x26\xc1\x0a\x02\x68\xee\x43\x8c\xb4\x09\x57\xa9\x2f\xfc\x9c\x81\x6b\x92\x09\x53\x5a\x4e\xae\xd2\x7b\x78\x9e\x3d\xf5\x16\x2a\xa8\x6c\x60\xd4\x83\xbf\xaf\xe2\x1c\x1b\xa6\x49\x3a\x8c\xf2\x82\x20\x26\xe8\x46\x3f\x50\x48\xf1\x9a\x58\xeb\x8e\xce\x34\x66\xa6\xdd\x4b\xd7\x93\x3c\x7a\x47\x9e\x90\x00\xcc\x5b\x4a\x72\xc4\x57\x9c\xdf\x1a\xc7\x1b\xb3\x1a\xc9\xd7\x52\x93\xaf\x4a\xbe\x82\x3d\xa1\x10\xd4\x36\x55\xe9\xe2\x98\x13\x13\x69\x4b\x79\xf1\x8a\xcd\x46\x6c\x0f\xb7\xea\x33\xfe\x18\xc2\x9f\x73\x78\x7a\x7c\xd2\x34\x29\xda\xcd\xac\xe9\x15\x03\xc5\x4e\xfa\xdb\x8a\x9e\xfd\xb7\xcb\x97\x54\x8d\x2c\x8c\xc7\x55\x2a\x1f\x33\xf7\x0e\x1e\x27\xb0\x62\x7c\xdc\x20\x81\xd9\x0e\x07\x91\x05\x42\x18\x95\xe7\xcf\x95\xea\xd2\xe7\x0d\xcb\xab\x9d\x17\xd1\xca\x8a\xe2\xe5\xbe\x4a\x8b\x57\xda\x6e\x3e\xde\xb9\xa9\x86\x89\xd3\xf5\xc4\x66\xf9\x2e\x7a\x9b\x58\x94\xd7\x11\x7a\x08\x98\xd3\x4f\xeb\x00\x70\x43\x1e\xf6\x5b\x2f\x10\x62\x01\x01\xc6\x47\x81\x47\x25\x1e\x55\xd9\x68\x62\xfa\x7d\x9a\xcb\xd1\x33\x7f\x35\xba\xaf\xc7\x4d\xee\xf7\xd3\x18\x01\x36\xea\x82\x3f\xa5\x1b\x77\xd2\x73\xd5\xa5\x62\x8d\x1f\x73\x3d\xc7\x95\x28\xe9\xdb\x8c\xc3\x0a\xec\xc0\x37\xa7\x99\x9e\xa4\x40\xe8\x31\x76\xeb\x69\x96\x00\x5a\xc8\xb2\xf2\x75\x8d\x79\xbf\x21\x7a\x69\x38\x26\xa9\xa2\x39\xff\x42\x3e\x80\xd9\xe0\xd0\x01\xa9\x12\xf2\x8d\xb3\xa5\xc2\xa0\x5d\x85\xc5\x97\x08\xc3\x47\xe0\xc3\xb4\x17\xad\x70\x4d\x0c\x19\xcf\x45\x45\x2d\xa3\xc9\x3d\x89\x61\x3b\x4a\x33\x8c\x74\x29\xe1\x8c\x83\xb5\x59\x6c\xe4\x91\xb7\x55\x68\x7b\x02\x37\x2e\x53\xd6\xde\x8b\xf5\x33\xd3\x1b\x03\xa3\x75\x78\xde\x73\x60\xec\x5b\x72\xfc\xa3\xcf\xb8\xde\xf0\xb7\xc7\x51\x6f\x17\x3d\x24\xe4\x00\xef\xd1\xba\x82\xb5\x3c\x0e\x9b\x23\x34\x31\x74\x49\x70\xca\x83\xd2\x23\x70\xef\xa8\x61\xbc\x8f\x1a\xfb\x7a\xf1\x38\x5c\x95\x30\x1f\x56\xfd\x3d\x3c\x5d\x3e\x51\xf5\xde\xac\x9f\x3e\x51\x7d\x35\x7e\x66\xd7\x44\xcd\xf0\x6d\x91\xa7\xc4\x52\xbc\xa9\xaa\xb0\x97\x08\xf6\x80\x12\xdb\xbf\xd0\x09\xd1\x43\x18\x7b\xdc\xd7\x29\x0d\x16\xbb\xa1\xe2\xdc\x71\x12\xa7\xe1\xaa\x66\x49\xbb\xa4\x4c\xfd\xa5\xed\x04\x64\xcb\xf3\xcb\xed\x43\xaf\xcd\xd6\x66\xa1\x96\xc4\xb4\xff\x11\x19\x24\x36\xf9\xa5\x9f\xd0\xfa\x58\xed\x9c\xbc\x30\x90\xb5\x55\x39\x15\x97\xb5\x65\xeb\x08\xbb\x50\x3f\x19\x51\x43\x89\x21\x12\x6a\x82\x89\x53\x10\xc4\xe2\x57\x5d\xd7\x3d\x4b\xc3\x81\xcd\x1d\x61\xbb\x74\xa5\x35\x20\x4b\x58\x76\xf3\x81\xc9\x46\xf9\x20\x4d\x25\x7c\x60\xb5\x0c\x9d\x76\xdf\x99\x0a\xde\x16\x16\xda\x3d\x3b\xb4\x26\x91\xae\x07\xfc\x2d\x67\x34\xa8\xf7\x7e\xaa\x24\x0b\x77\x74\x9a\x48\x5c\xc3\x81\x91\x32\x2e\x27\xd3\xaa\x35\x7e\x45\xcd\x47\xc4\x69\xd2\xb7\x22\x9c\x23\x4d\x45\x8a\xa7\x05\x6f\xb7\x3d\x24\x7d\x7d\xf1\x50\x3b\xa2\xe6\x3e\x77\x9d\x9c\xf7\xf6\x9e\x7c\x2a\x9a\xaa\x3c\x05\xed\xc2\xb5\xc8\xae\x0b\x64\x81\x71\xf2\xd8\xdf\x02\x9a\xf7\xed\xb0\x7e\x66\x6d\xb2\x5b\x83\x7b\xab\xfd\x05\x3b\xf6\xb3\xb2\xf5\x6b\x6e\xaa\x49\xf5\x37\x8f\xd2\xde\xe2\xbf\xd7\xaf\xfc\xa2\x26\x11\xbf\xa8\x8b\x1d\x66\x83\x72\xb0\xe5\x79\xde\xe6\xd7\x15\x47\xc3\xf5\xa9\x80\x5c\x66\x32\xd7\x2c\x32\x18\x14\x8a\xd0\x5c\xa8\x75\x6f\x84\x2d\xd5\x97\x53\x41\xb9\x65\x99\x76\x0a\x61\xf8\x23\xc5\xd9\x72\xa3\xf4\x1d\x8a\x9f\xea\xa9\xb7\x26\xcc\xe1\xc1\xf6\xc0\x8c\x46\x1b\x5a\x09\x27\xa8\x91\x83\x7b\x5b\xd5\x8b\x56\x56\xa2\x70\x1c\x17\x4a\x59\xe4\x5c\x8d\x1f\xf9\x1b\x1e\x78\x97\x14\x99\x1d\x65\x36\xb1\x63\xf1\xe8\x32\x9b\x48\xef\x9a\x4f\xa6\x1e\x0b\x69\x49\xf4\xa3\x30\x32\x8c\xba\x72\x54\x16\xee\x19\x61\xa4\x80\x95\x6a\xa6\x42\x09\xcf\x3a\x13\x85\x83\x59\x8a\xeb\x50\x80\x79\xbe\x53\xbd\x5d\x37\xf4\xa1\x28\xd0\xb0\x8f\x60\x0a\x76\x4c\x54\xad\x2b\x65\x51\xbc\xfd\xfb\xb9\xe1\x7b\x8c\xee\x96\x8f\x6b\xf5\x94\x6c\x6c\xa9\x6a\x2d\xb1\x6b\xcb\xd1\x91\xfd\x2b\x20\xcd\xe0\xf3\x78\xf5\xf0\xbf\xd0\xcb\xe6\x7f\x80\xdb\xe2\x8f\x37\x70\x31\x1c\x68\xa7\x42\x80\xe0\x24\xf2\x3d\x3f\xf6\x2d\x7a\xe5\x78\x56\x3b\x3b\x1e\x7b\x91\x87\x03\xdb\x1b\xc7\xb6\x37\xeb\xfa\xd1\xbf\x73\x0e\x17\x04\x8f\xf0\x03\x8a\x48\xf1\x20\x50\xf8\x90\xa5\xe2\x94\xdf\x4c\x94\xd1\x78\xb4\x87\x04\x9e\xd3\x8c\x91\x9a\x8d\x6f\x98\x66\x45\xdf\xf4\xed\x13\x3e\x9d\x82\xbd\x40\xde\x78\xa6\x24\x28\xa1\x4c\x83\xf8\xf9\xac\x67\x89\x5b\x80\xff\x7b\xa0\xf2\x2f\xa6\x9d\x22\x6f\xfe\x4f\x5f\x60\x00\xa0\xd4\x12\x1b\x60\x68\x23\x93\xe7\xb6\x0a\x41\xb4\x92\x21\x3d\x66\x51\x17\xd1\xc3\xf0\xf9\x38\x2e\xf2\xe7\x15\x35\xd1\x47\x6a\xba\xf2\x5f\x07\x1e\x38\xf1\x45\xa0\x28\xe5\xfe\x46\xa9\x54\x35\x99\x95\x5d\xe6\xde\xe9\x6a\xe1\x03\x18\x4a\x86\xac\xfe\x61\xd0\xfa\xe5\xbf\xe6\xa5\x89\x0e\xcf\x33\x28\x02\x33\x8d\xd8\xe2\x37\xb1\x33\x04\xd4\xdc\xfa\x2b\xd2\xcd\xfa\x47\x64\x48\x60\xe7\x65\x22\x11\x66\xe5\x6a\x50\x25\x31\x82\xf4\xd9\xa3\x45\xab\x66\x14\xa9\xff\x85\xa9\x3e\x9a\x60\x5c\x9f\x71\x8d\xee\x24\x1f\xc7\x20\x78\xd6\xaa\xe3\xf0\x9b\x77\x03\x35\xb2\x70\xba\x6e\x89\x42\x6b\x7b\xd8\x22\xf8\xe7\x07\x8a\xbf\xfe\x81\x6b\xf3\xad\x47\x3d\xf0\x73\x1d\x60\x0c\xd3\xb5\x80\xe6\x74\xa5\x36\x5a\x85\x05\x30\xdc\xe7\x9a\xf4\x04\x8a\x41\x46\x14\x38\x08\x61\x81\x9b\xfd\x6d\x35\x09\xfd\xdb\x53\x1b\x86\xcc\x6b\x98\x6e\xa8\x9a\x18\xea\x5b\x7c\xac\x45\x05\xa3\x21\xfc\x8f\x14\x6d\x6b\x85\xda\x06\x60\x37\xf9\x63\x8b\x11\x0d\xbc\x87\x87\xa5\x12\x7c\xc7\x6c\x01\x9e\xfc\x55\xf7\x04\xba\xe3\xac\xcf\x8e\x54\x98\xb5\x5a\x8a\x8b\x4b\xc2\x02\x6b\xb2\xa1\xc9\xdc\xf8\x08\xd2\x12\x94\xec\x45\x7f\x54\xa9\xde\x4f\x8f\xfa\xef\xdf\xcf\xbc\x44\x80\xb3\x31\x1a\x25\xf0\xe5\x14\x4d\x21\x38\x18\x67\xd4\xd9\x45\xb9\x85\xc9\xef\x14\xdb\x51\xe3\xdd\x87\x71\x9a\xbb\x9e\x18\x9c\x04\x7a\xb6\x4e\xf9\x5b\x8d\xa0\x3d\xa3\xe4\x5d\xd3\xe1\xee\xd6\xb2\x2f\x14\xfa\xde\xcc\x0e\xc5\x22\xcb\xb8\x43\x37\xea\xb9\x2c\xdc\xa5\x77\x68\x0d\xab\x51\x6e\x27\xd3\xae\x5e\xe5\xa1\xbf\x70\x68\x97\xff\xae\x93\x8a\x14\x81\xf5\xe7\xb1\xf8\x76\x76\x3c\x00\xf6\x4c\xa9\x8d\xca\xa7\xf4\x8b\xf2\x91\x5a\x35\x2b\xef\xd2\x5a\xc2\xb6\x3f\xaf\xf5\x89\xcf\x4f\x45\xd2\xb4\xfa\x7a\x36\x97\xf9\x2d\xae\x38\xab\xf0\x73\xb3\x7c\x59\xc1\x61\x93\x95\x6a\x7f\x14\x91\x89\x91\x59\x08\xc8\x91\xae\x19\x96\xf0\x5a\x4d\x45\x59\xeb\x90\x5f\x2c\xd5\xf0\xf1\x15\x85\x11\x5f\x8b\xb2\x62\x0c\x4e\xf4\x83\x7c\xa9\x80\x11\xf2\xf1\xd4\x44\xca\x2b\xed\xcc\x86\xc6\x65\xee\x4c\x29\x45\xe6\x4a\xe8\xa5\x94\xa8\x71\x96\xae\x45\x3d\x41\x24\x35\x2d\x34\xed\x1f\x6d\xb6\x3a\xe7\x7b\x0c\xc7\xd4\x82\x3e\x56\x7a\x25\xef\xcb\x7a\xf0\x60\x8b\xf2\x59\xf1\xff\x5a\xc8\xd4\x3e\x4d\xb7\xc4\xe2\xa7\x9a\xc7\x8e\xfb\x56\x3a\x68\x60\x8a\x5f\xf0\xb3\xe1\x27\xef\xa2\xd0\x2b\xd0\x08\x7a\xe4\x7a\xd6\x0a\xe1\xcc\x8b\xe0\xd2\x71\x1a\x05\xbf\xf2\x3a\x83\x53\xfe\x2d\x2d\x12\x79\x8f\xb2\x73\x57\x6c\x56\x44\x71\xc4\xb4\x1c\x4e\x6b\xd8\x79\xd4\xb3\x6a\xb6\x34\x1d\x17\x7b\x2b\x87\x20\x5d\x40\x3f\x9f\xf3\x59\x49\x01\xb4\x74\xbc\x28\x7e\xc1\xe5\x6c\xc1\x79\xe2\x45\x7c\x4e\x25\x38\x27\x50\xfd\xba\x2b\x74\x23\x8c\x90\x4a\xb5\x1f\xa4\xdf\x4d\x63\x18\x70\x01\xbb\x27\x40\x42\xb2\x6e\x3f\xea\x50\x48\xd6\xae\xe2\xc9\xb8\xfd\xe3\xc0\x39\x4f\x76\x7c\xbe\xcd\x89\x34\x8b\xf7\x00\x7e\xce\xdf\xd5\x24\xec\xd2\xb5\x76\x85\x90\x5f\x0e\x89\xe3\xf4\x9f\x19\xfa\x2e\x70\x77\x3f\x56\xab\xf9\xfa\x47\x99\x2d\xcc\xdb\xbb\x7c\x1d\xe2\x1e\xde\xb8\xa0\x6b\xc8\xd0\xd5\x54\x0c\xa5\x21\xeb\xb9\x84\x50\xae\x85\xa3\xdc\xd9\xf1\x01\x8b\xa8\x46\xce\x78\xd9\xb8\xd3\x4a\x21\xe5\x37\x14\x4a\xf4\xa4\xc3\x01\x0f\xcd\x3b\xef\xd8\x0c\x60\x50\x5c\x3a\x73\xbf\xf3\x89\x22\x98\x31\x59\x38\x88\x0a\x1b\x16\x63\x2a\xbc\xbb\x92\xff\x25\xa5\x86\xa3\xf9\x64\x07\x36\x1e\x49\x4a\x88\x42\x05\x2e\x87\x8f\x1f\x5b\xa9\xd9\xb0\x26\x83\xf7\xd6\x9c\xe4\x58\xa2\x0f\x03\x8d\x4b\xac\x4d\x03\x0d\xec\xcf\x55\x37\x8e\x70\xf4\x2a\xde\xa4\x0b\x54\xab\x20\x11\xb6\xf7\x7b\x81\x9e\x1b\xae\xae\x1c\x0b\x64\xd6\xb3\xae\x26\xcf\x70\x70\x06\xcc\xe3\xf3\x1d\x5a\x47\x78\xf8\xac\x61\x81\xef\x7a\x71\xa2\x7a\x62\x1f\x05\x7a\xac\xa0\xb5\xb0\xe0\x84\xfa\x69\xad\x3b\x4a\xa5\x6a\x4b\xc0\x42\x40\x76\x85\x71\x83\x28\x12\xe1\xaf\xee\x05\x8a\xb4\x7e\x2f\x58\x32\xdd\x44\xba\xe2\x3e\xed\x28\x2a\xc1\xb9\x8e\x6f\x8b\x83\x6d\x0a\x7d\xf4\xe7\x27\x6a\x88\xe1\x54\xa0\x06\x63\xf6\x4c\x35\xec\x17\x16\xda\xa1\xc9\x7a\x91\x09\xa9\xd0\x00\x87\x08\x06\x46\xa7\x5b\xe0\xd0\x42\xc8\x36\x25\xed\xd8\xde\x02\x39\xb0\x7c\xa0\x3d\x4e\x7a\x36\x5b\xcf\xa2\x82\x73\x62\x99\xf1\xf0\x19\xdd\xe9\xf2\x69\xdf\x3b\x16\x19\x37\x74\xa6\x99\xcf\x83\x4f\x82\xed\x24\x65\xfb\x96\xda\x51\x96\xd9\xfe\x38\x36\x59\x54\x44\x22\x8c\xeb\x4c\x95\x37\x5b\x8a\x0b\x6d\x64\x13\x13\x57\x7f\x3c\xe7\xfb\x3c\x03\x32\x2c\xf0\x22\x97\x15\x18\xa4\x45\xe3\x3d\x88\xe3\x2e\x05\x8a\x15\xeb\xc8\x94\x87\x5c\x9e\x6f\x8f\x62\x93\x24\x3c\x89\x8c\x6a\xed\xdf\x2e\x95\x60\x30\xcf\xfb\x8b\xc9\x51\x5a\x1b\x83\x8d\x3c\x0a\xf3\x96\xa7\x23\xc3\x9a\x94\x7c\xe3\x79\xb5\xfb\x48\xab\x82\xb2\x11\x21\x7f\xf4\xbd\x13\x70\x26\xb9\xba\xdd\x3e\xa5\x0c\x58\xbd\x70\x6c\xce\x73\xba\xbb\x09\x95\xe8\x3a\x35\x08\x22\xe4\xc9\x54\x1e\x4a\x21\x40\x0d\x3a\x87\x3b\xd9\xdd\x51\xdb\x74\x1a\x9f\xbc\x3c\xdf\xee\x67\xc6\x95\xeb\x45\xa2\x99\xd6\xa3\x48\x80\x3a\x1a\xfb\x75\x93\xd9\xdd\x2e\x23\x7d\x7a\x2f\xb6\x96\x56\x20\xc4\x92\x99\xa1\xf4\x4a\xb5\xfc\x84\x18\x06\x68\x19\x74\x2d\xee\x97\x0e\xf3\xb5\xfe\xe7\xa7\x3a\x09\xfb\xf7\xb7\xf3\x22\x33\x51\x7f\x40\x25\xab\xca\x36\x30\x6f\x85\xca\xef\x2e\xa8\xa2\xcb\x30\x4a\xc6\x44\x79\xe8\x07\x1f\x34\xba\x73\x61\x81\xdd\xef\x6d\xdd\x0a\x4e\x93\xbc\xc8\xd2\xf1\xbf\x8f\xa8\xdb\x97\x82\x13\x1b\xda\x3c\xaf\x1c\x2e\x3d\x1d\x07\xda\x70\x32\xe2\x97\x9b\xd0\x8c\x2b\x76\x18\x25\x44\x38\xb0\x7f\xbf\xe3\xae\xf7\xc6\xf2\xcc\x14\xc4\xa8\x0a\x79\xc7\xd0\x69\x12\x90\xa4\x12\x37\x3f\xab\xb5\x3d\xbf\xa6\x7b\xe4\xe3\xa0\x81\x29\x78\x94\xa5\xb9\x0d\xc7\x45\x9a\x09\xfc\x08\xb7\x75\x52\xc5\x4d\xd3\xed\x94\x7d\x4b\xed\x95\xcc\xda\x5d\xba\x8e\x5e\x59\x41\x21\xac\xf1\x58\xbd\x1b\xa5\xa6\x0b\xd0\x3c\xac\xd0\xb4\x42\x8c\xf1\x62\x47\x72\xfb\xb7\xcc\xc8\x24\x36\xb7\x7b\xe8\x63\xa0\xb5\x9a\xe9\xa8\xe4\x7e\x37\x43\x26\x64\xd0\xb8\xe5\x04\xf7\xfe\x24\x11\x33\x21\x6a\x3a\x85\x38\x05\xe9\xcf\x3f\x2e\x6b\xc4\x8c\xfb\x54\x33\xe9\xf0\x7c\x4d\x6f\x1e\x11\x2b\x4b\x62\xba\xed\x56\x3d\x5b\xaf\x33\xe6\x2b\xef\x34\xd5\x45\x76\x68\xff\x7e\xde\x75\x00\xc7\x08\xb0\xbe\xfa\x29\x74\x0b\x7f\x40\x29\xdc\xd6\x55\x0c\x02\xf2\xbf\x07\xdb\x81\x6a\x8b\x87\xda\xe3\x7c\x86\x7c\x9e\xc8\xa4\x4e\xe5\x0b\xf8\x87\x9f\x36\xc9\x67\x1d\x6c\x47\x49\x1e\xe5\x28\x86\x71\x24\xa6\x79\x6a\x2e\xd4\x26\x34\xa2\x55\x43\xed\x5c\x6e\x94\x2b\x2c\xec\x0f\x35\x09\xd3\x8f\x6b\xcd\x86\x15\x82\x38\x91\x21\x68\x92\x74\x69\x14\x0c\x4d\x93\x62\x10\x6f\xcc\xa8\x09\xcc\x0b\xf4\x42\x1c\xba\xde\x81\x78\x4f\xfa\xd0\x35\xb6\xf9\x60\x94\x16\xb5\xbe\x0d\x14\x61\x24\xae\xf3\x60\xe4\x23\xb5\xca\xaa\x49\x7a\x73\x9e\xee\xe6\x9e\xf2\x75\xa0\xcc\x07\x59\x27\xb2\x3d\x61\x92\x21\xeb\x21\xe1\xf3\x33\x0a\x08\x92\x1b\x24\x1e\x58\xcc\x5c\x08\xe2\x13\x3f\x7e\x9e\xa6\xbd\xa7\xe9\xad\x69\x8e\x47\xfa\xab\x4f\xff\x62\x47\x51\x1a\xc0\x1b\x39\xdd\x64\xa7\x2f\x0f\xd1\x12\x58\xa5\x3f\x85\x69\x15\x98\xaf\xbb\xf0\x38\x80\x50\xec\x02\x95\xa5\x08\x84\xd0\xa5\x60\x4f\xec\x9a\x54\x69\x2c\xd7\x6b\xa7\x32\x64\x89\xc8\xfe\xfa\x7f\xa0\x5a\x86\x17\x4a\x2a\x32\xc9\x14\x8b\x03\x3f\x9b\x58\xa4\x55\x05\xae\xd4\x72\x4a\x98\x57\xd4\xc4\xd7\xfb\xae\xcf\xd0\x1b\x13\x94\x6a\x51\x53\x57\xbd\xe1\xe4\x06\xe8\x92\x31\x7d\x7f\x77\x2a\x56\x84\xcb\x1d\xe7\x11\xd1\x3a\xfa\x75\x14\xa8\xf5\x55\x6a\xc5\xcd\x28\x29\x4c\x94\x90\xf7\x74\x6d\x1d\x97\x3d\x72\x06\x8c\x52\xf5\x75\x3d\x68\x70\x1d\x91\x18\xbb\x74\x55\x4e\x38\xa1\xc9\x57\x1f\x90\x39\x10\xbf\xef\x23\x66\x9b\xac\x45\x59\x9a\x0c\x6d\x52\x18\x62\x90\x3d\xa0\xc9\xdc\x24\x1b\x3e\x4f\x57\x02\x83\xf5\x50\x2d\x4e\x56\x66\xe7\x3f\x6a\x1c\xb1\x37\x5d\x29\xd3\x3b\x91\xe1\x7d\x4e\x70\x38\x78\xc1\x17\xc4\x0a\x9b\x17\xc6\xcd\x5f\x38\x69\x36\xd7\x7f\xd1\x40\xa0\x22\x33\xe1\xaa\x9a\x28\x42\x01\x18\xe1\x2f\xe0\xb2\xf8\xcc\xc9\xa9\x4b\x7a\xa5\xbd\x3e\xb0\x99\x35\xf9\x8c\x27\xbf\xb8\x17\x68\xa2\x01\x3c\x68\x29\x9a\x6e\x77\xcc\x8b\x87\xda\xe9\x9a\xcd\xb2\xc8\x03\xc1\x5d\x37\x43\x31\xc2\x34\x91\xfb\x0e\xa5\xaa\xeb\x86\x84\xaa\x1f\x7a\xfc\x90\x10\xe8\x43\xdd\xcf\xb0\xca\xb6\xc2\xeb\x9f\xd7\xcc\x5a\xdf\x1e\x9b\x4c\x42\x4c\x06\x79\xaa\x26\xf6\x89\x29\xc2\xb3\xc3\xf3\xaf\x32\x1f\x67\xca\xc3\xbb\xa8\xed\xdd\x57\xa2\x50\xf7\x15\xb9\xe6\x20\xea\xf5\x2c\x71\xec\x38\x09\xde\xea\x43\xc2\xef\xa6\x58\x38\x23\x48\x91\x3a\xe4\xc5\x19\x2d\xbe\x32\xad\x5d\xb8\x7f\x7f\x7b\x68\x87\x72\x11\x2e\xca\x71\xa8\x2c\xa5\xf2\x82\xce\x3a\xb0\x8d\xa2\x37\xd2\x72\xc4\x2d\x3f\xa9\x31\x4c\x6e\x53\x8e\xad\x6e\xf7\xf5\xc5\x43\x8a\x5f\xf5\xac\xfa\xf3\xb3\x6a\xf0\x70\x24\xf4\x48\x35\x92\x29\x91\xe5\x9c\x2e\x82\x1f\xa8\x62\xaf\x34\x93\x4a\x84\x8c\xf0\xd2\xa7\x64\xb8\xf7\x19\xfd\x18\xad\x2a\x92\x5e\x50\x45\xd2\x0b\xba\x7c\x17\xe5\xf6\x69\xca\xe9\x18\xf6\x05\xe8\x33\xdc\xd9\x6d\x24\x62\x7c\x82\x72\x94\x4c\xd7\x54\x8f\x1d\x8f\xe6\xa6\x42\xfc\x3f\x00\x7b\x9e\x83\x90\xed\xdf\xcf\xe5\x84\x63\x30\xfa\x6e\x50\xc7\x73\x6c\xfc\xf3\x52\x8f\xff\x5f\x6a\xd2\xa6\x4b\x6c\x54\x0c\xaa\x57\xbd\xac\xf4\xc1\x16\x16\x9c\x3e\x98\xd2\x00\x4c\x8b\x22\x05\x67\x12\xbc\xdd\x7b\xaa\xeb\xf8\x5e\x0d\x2f\xbc\x6e\xb3\x95\x71\xbc\x9b\x42\x09\x87\x9e\xd9\xa7\x68\x1b\x1d\xa3\xc1\x09\xb4\x56\x1d\xd4\xc7\x0f\x78\x62\x67\x39\x8e\x75\xaf\x83\x7f\x63\xbb\x5e\xd8\xe1\xf9\xa5\xf6\xd2\xd2\x5e\xef\xad\xae\x52\xc2\x0b\xf3\xf4\x28\x50\x22\x1c\xd7\xa9\x2e\x87\x32\xf5\xff\x4e\x23\x59\xdc\x64\x09\x54\x6f\xeb\x7a\xa9\x99\x8a\x81\x22\x41\xcd\xfd\x2b\x35\x80\xfa\x14\xd4\x4f\x50\x7a\x01\x03\x81\xf0\x32\x54\x77\x8a\x1d\xfb\x63\xe4\xc1\x42\x4b\xa1\x32\x92\xef\x13\xfe\x58\x78\x84\x68\x29\x20\xda\xa8\xcd\x68\x4c\xa3\x21\xab\x7c\x37\xcc\xac\x57\x73\x70\xe8\x05\xa5\x78\x33\x55\xd9\xaf\x32\xa4\xb1\xc9\x7a\x64\x6d\x65\xc0\x46\x4d\x2d\xde\x42\x44\x8e\x0a\xc5\x17\x53\x86\xef\x17\xdb\x03\xb3\xe6\x6c\x18\xf7\x47\xf0\x5c\xa5\x59\xe2\x8d\x98\x89\x4d\xd7\x0c\x0d\xfd\x94\xd3\x1a\x76\x1b\x16\xc1\x94\x90\xe5\xfb\x4e\x70\x6c\xba\x36\xce\x67\xa6\xf4\xbd\xf8\x39\x62\x27\xc2\x77\x9d\x6a\x64\x05\x0a\x63\xcb\x9a\x30\x92\x3e\x2b\x65\xfd\x2b\x0a\x48\x77\xa4\xd4\x8d\x36\x89\xea\xab\x58\x39\xee\x0b\x8f\x8c\x20\x5a\x14\x7b\xce\x45\x67\xc1\x7a\x76\x65\x9c\x84\xc5\x1c\x5d\xab\x13\xe0\x77\xf9\xc4\xee\x8e\x1a\x7d\x60\xee\x27\x57\x5b\x74\x79\xd6\xc7\xa5\xf6\x9a\x3c\xc8\x04\xa3\x88\xba\xd5\xbf\x55\xd2\xd3\x08\xb2\x45\x90\x5d\x55\xf9\xcc\x46\x94\xf4\x09\x30\x88\x75\xfc\x5b\x74\x9f\x80\xee\x4c\xc7\x45\xfc\x37\x30\x3c\xb8\xbe\x9b\x08\x2c\x11\x98\x81\xca\x85\x3f\xed\x0d\x76\x81\x59\x16\x6c\x8a\x9a\x2c\x8f\x48\x87\xbd\x3c\x2d\x62\xb7\xb4\x74\xe0\x1b\xf4\x3b\x12\xe4\x2a\xee\x42\xd8\x2e\x34\xf0\xae\x12\x71\x89\xa0\x9e\xe8\x5b\x11\xe5\x7e\x42\x7b\x18\x55\xc9\x1f\xc1\x16\x20\x29\xf9\x10\x1b\x44\x38\x74\x5a\x8e\xeb\x61\xae\x43\x11\x2e\x0c\xd7\x1d\xe0\x28\xb0\x62\x6e\x07\x7e\x90\xf1\x01\x2a\x63\x6e\xdb\xf8\xdb\xff\x01\x99\x28\xe5\x30\x0e\x32\x28\x69\x07\x97\xe9\x50\x73\xfb\x59\x89\x4a\xb0\x70\x36\x28\x54\x1f\x37\xa4\x11\xd2\x1d\x23\xdc\x8e\x6c\xea\xea\xc9\x82\xff\xe6\xc9\x6d\x34\xe0\xa6\xa5\x3a\x16\xe7\xf1\x9c\x24\x16\x53\x50\x11\x4b\x53\x6b\x90\x72\xc7\x0a\xf9\x67\x4a\x21\x79\x77\x47\xcd\x43\x7f\x15\xa8\x79\xe8\xaf\x4a\x8f\x76\x83\x48\x2c\xd2\xe1\x0f\x95\x3f\x7b\x2b\x85\xfe\xdd\xab\x1e\x21\xe4\xd1\x42\x8d\xf8\x87\x30\x75\xd3\x83\x0a\xa2\xf0\xc6\x63\x21\x0a\x4b\x4b\xa8\xd2\x85\xe3\x82\xf8\xa4\x64\x77\xf8\x1a\xcf\x3f\x81\x05\x83\x71\x3a\xe5\x58\xda\xc2\x74\x3c\xda\xed\x9b\x86\xb3\x9d\xea\xa1\x02\x95\xc3\x23\xa9\x8e\x64\xc7\xcd\x7f\x9c\xd3\x5c\xf7\x9f\x95\x7e\x64\x0d\x88\x60\xa4\x07\x1a\x16\x4d\x4c\x5e\x43\x9b\x80\xbc\x93\xe9\x7c\xc8\x8c\x0b\xb5\x4f\xd3\xb4\x66\x86\xfa\xf4\xb2\x82\xa0\xf9\x0d\xd7\xc0\xca\x61\xdf\x26\xda\x29\x67\x47\x19\x34\x13\xf8\xa2\xca\x51\x97\xb0\xe5\x85\x1d\xce\xf9\x91\x0a\x56\x15\x43\x35\x19\x0a\x77\xb8\xb2\x2f\xb1\xfc\x50\x35\xc5\x94\x94\xb4\x18\x3c\xae\x98\x48\xe9\xd1\x6f\x16\x3d\xed\xea\x1b\x44\x67\xbb\x81\x1b\xb0\x67\xa2\x58\xc3\x5b\x4e\xd0\x37\x4b\x9d\x56\x2c\xc3\xba\xc9\x4d\x11\x02\x46\x5a\x93\x23\x12\x49\xa4\x06\x37\x94\x0f\x52\x59\x38\xe2\xe7\x5b\x8e\x3b\x6d\x53\x4d\x67\x6b\x0e\x13\xef\x36\xcf\x95\x0a\x93\x11\xec\xd5\x6f\xd0\x46\x23\x48\xcd\x7a\x56\x34\x25\x2e\x72\x1b\x26\x04\x49\xd5\xe7\x2a\x83\x36\xbd\x8c\x59\xec\xa5\x5e\xa3\x60\x0b\xb7\x55\x48\x99\xa5\xb1\x7d\x92\x4c\x1a\x1a\xcc\x77\x68\xc5\x21\xce\xba\xa0\x04\xd7\x58\x89\x0f\x05\x59\xf4\xe3\xf8\x8f\x60\x1d\x10\xf1\xfd\x4f\x0a\xd5\xcc\xd9\x8a\x58\x53\xdf\xfe\xfa\x50\x21\x07\x57\x23\xb0\x2f\xe0\xf5\xde\x54\xba\x88\xe0\x27\x84\x73\x7b\xd4\xb8\x5b\x57\xa2\xb8\x2e\x7a\x7a\x4b\x0b\x2c\xdd\x9a\xca\x8f\xde\x7c\xb3\x3d\x4c\x93\xa8\x48\x3d\x39\x91\xcc\xb5\xfa\x77\xfd\x23\xe7\x3b\x87\xb6\xd7\x8b\xa5\xfa\x2a\x83\xf3\xf4\x29\x01\x65\xf9\x02\x64\x95\x77\x11\x01\xc2\x8c\x86\xc4\xf9\xa8\x0c\x7a\xa7\x18\xa2\xb9\xa5\x6e\x7f\x10\x85\x20\x4a\x74\x23\x85\xd5\x12\x82\x0f\x61\x7e\x09\x58\x45\x00\x6e\xc9\x10\xbc\xff\x67\xa8\x6a\x41\x3d\x94\xd5\x97\x27\x5a\x28\xc9\x07\x1e\xb9\xc1\xc3\xf1\xd4\x42\x23\x96\xfd\xe0\x33\xbd\x56\xb2\x2e\xab\x42\xb2\x4e\x15\xd0\xec\x22\x5a\xb5\xc7\x8d\xc0\xa6\xab\x76\xb7\xea\xb7\xdd\xc7\x2e\x45\x14\x7e\x5d\xb1\x37\x32\xde\x05\xf6\xec\x7d\x7a\x0c\x2c\xe5\x15\xf8\xc1\xe2\x8b\x4a\xa6\x72\xa6\xe3\x18\xd3\xd3\xa1\xc9\x07\xad\xda\x14\xa1\xce\xb3\xb7\x83\x00\x1d\x85\xcd\xd0\x14\x76\x9c\xcd\x56\xdf\x0f\xb3\xc1\xa4\xda\xe8\xff\xde\xa5\xa8\x18\x0b\x03\xb8\x6b\x44\x38\x33\x9d\xed\x9d\x97\xc5\x43\x30\xe9\xfd\x2c\x1d\x27\xe8\x48\x38\x5e\x7a\xdf\x5d\xdc\x54\x72\xd2\x47\x14\x31\x6d\x1e\x15\x95\x49\x72\x79\x00\x66\x22\xf8\x78\xaa\xc2\xbf\x78\xa8\xbd\x92\x99\x7e\xc4\xda\x1a\xb0\x7d\xc7\xe8\xf2\xf8\x58\x4d\x43\x77\x6d\x5e\xec\x52\x78\xa8\x3b\x5a\x8b\x4c\x91\xb4\x7d\x89\x10\x81\xf5\x1c\x91\x5c\x21\x46\xf8\x91\x22\xe0\xf5\x7c\x1c\x36\xcb\x4d\xf1\x0e\x75\x3d\x05\x11\xe7\x27\x02\x6e\xab\xa9\xd0\x2f\x54\xc6\xbd\x12\xd9\xbc\x30\x2d\xc5\xde\x79\x25\xf0\x45\x8b\x69\x70\xe1\xbe\xa5\x76\x31\xb0\x51\x96\xcf\xa9\xaa\xf4\x23\xcd\x04\xaa\xaa\x72\x17\x40\x7f\x8c\x5d\x86\x9c\x1f\xe1\xd6\xce\xce\xb4\x48\xe4\x81\x76\x17\xda\xa4\x8d\x52\x20\xb2\x97\x8b\xcc\xac\x45\xa6\x30\xb3\x0a\xd6\xf4\x00\xf1\x84\x28\x9f\xfb\x17\xfa\x6f\xa9\xc1\x2f\xe0\x2b\xff\x15\xc4\xb1\xcc\x86\xc3\xe1\x12\x96\xa4\x81\xb9\x55\x7e\x53\x36\xca\x78\x94\x99\x35\x9b\x14\x59\x14\x8e\x63\xd6\x97\x67\xfa\xc0\x1a\x95\xa0\xcf\x2d\x4d\x6f\x18\x15\x34\x4c\xb7\x3c\xcf\x8d\xcb\x7b\x81\x9f\x98\x61\xfa\x37\x94\xf3\x78\xae\x53\x78\x7c\x5a\x4e\xb5\x76\xd3\x5d\x6b\x2f\x1d\x77\x9d\xe9\x92\xcb\xab\x5d\xb7\xa2\x16\x4a\xc7\xd9\x53\x4a\xc3\xeb\x14\xe7\x89\xd2\xf2\x6c\x39\xe6\x88\x2d\x6a\xcb\xc2\xa0\x6d\x21\xe9\x47\x83\xef\x98\x8e\x7c\x35\x37\xe7\x8d\xd2\xeb\xf6\x1c\xa3\x46\x05\x02\xc7\x6b\xc8\x1f\xf8\xd3\x8d\xe8\xf3\xa1\x2d\x0c\xd0\x27\x07\x1c\x07\x02\x7d\xf3\xe3\x48\x10\x7e\x6d\xd1\x71\x5b\xd3\x7a\x70\x3d\x6a\xa7\xd5\x33\xcd\x0e\xb6\x3c\xdf\x36\xa3\x91\x35\xce\x8f\xc8\x8e\xa6\x45\xc4\x27\x0a\xd8\xdb\x4d\xfb\x26\x2b\x76\x79\x0f\x79\x53\x49\xbb\x7d\x8a\x47\xc2\xff\x80\x0e\x3a\x8a\x61\x3f\xa5\xe7\xc3\x7f\xc5\x71\x36\xff\x8b\x72\xf6\xc4\x2e\x6d\x0b\x3b\xeb\xc1\xe3\xe7\xf8\x5d\xa8\xc2\x8d\x3b\xa1\x17\xc3\x7f\xa6\xca\xc8\xd9\x6a\x0e\x30\x30\x43\xfb\x35\x0f\x39\x47\xb3\xd2\x3f\xd3\xf5\x80\x47\x53\xb1\x60\x15\xd5\xa8\x84\x5c\x02\x40\x7a\x32\x12\x19\xaa\xfe\x6a\x5c\xd8\x0c\x50\xb5\x57\x9d\x34\x56\x75\x85\x20\x31\xff\x3f\x4a\xc5\x9b\x78\x69\x2a\x82\xe2\xb6\x16\xd3\x9c\x39\xea\x6a\xa5\x32\x11\xbc\xa4\x30\x52\xe3\xa4\xc8\x36\x72\xa9\x56\xa1\x1e\xc8\x89\x3b\x9f\x68\x20\xd8\xe2\x7f\x49\xdb\x00\x73\xfa\xe7\xf1\x3c\xf8\xc4\xc5\xe3\x2b\x69\x36\xdc\xa5\x06\x87\x1f\x96\xaa\xdc\x74\x86\x2c\x2d\x6e\xe4\xbf\x0f\x7c\xef\x9b\xb1\x90\x4e\xc8\xca\xe7\x30\x5f\x4f\x2d\xe9\x7d\x4b\xed\x6e\x3a\x4e\x42\x49\xc5\x1d\x8d\xb7\x83\xfd\x6a\x3a\x28\x0a\x27\xac\x41\x49\x16\x51\xc3\x4e\xd0\xa2\xf2\xc9\x44\x86\x5f\x07\x96\xfa\xb0\x09\x1e\xfd\xa2\x9b\xf3\xa5\x77\x06\x20\x1b\xc8\x85\x90\x65\x7a\x11\x02\xdb\x1b\x87\x7e\x68\x16\x39\x34\x72\x6b\x16\x55\xd3\xe4\x67\x47\x1a\x75\x2c\x46\xa6\x9f\x26\xfd\x96\x06\xa0\xbd\x5b\x2a\x76\xa9\x77\xa7\xde\xf3\xe1\xf9\x37\xe8\xde\xa8\x4f\xc4\xf5\x2a\x45\xe4\x05\x3a\x6d\x57\x5d\x71\x10\xa0\x93\x64\x3a\x10\x22\x9e\x52\x12\x4c\x99\x25\xc6\x79\xc8\x51\xf8\xae\xcc\x47\xa5\xf7\x86\xd3\xa3\x2d\x55\x1e\x60\xe3\x78\x3c\x44\xea\x50\xd3\xb4\xe5\x13\xc5\x57\x62\xe2\x38\x32\x49\x68\x67\x35\xd3\x8f\x6f\x38\xdc\x2c\x95\x43\xb9\x55\xfa\xc1\x82\x3d\x9d\x1a\xfb\x74\x82\x21\x5f\xa1\x5d\x50\x63\xaa\x5f\x96\x2a\x10\xbd\xa1\x67\x56\xbf\x74\x12\x5c\x2c\xe8\x6a\x59\x1f\x9d\x01\x33\x4a\xf0\xe2\xae\xea\x81\x9c\x23\xef\x25\x52\xe0\x0d\x02\xf2\xc3\x88\x14\xad\xe9\x1a\x5c\x51\x52\x0f\x26\xfa\x12\xce\x38\x29\x6c\xd6\x8d\x18\xd5\x0b\x23\x72\x59\x07\x77\x97\x15\x77\x62\xba\x9e\x08\x04\x10\xc1\xd5\xb5\xc0\x57\x79\xaf\x4d\x41\x5c\x68\xca\x97\xf0\x8e\x7d\x9a\xf2\x75\x2d\xa0\x59\x4a\xe7\xf9\x78\x2a\x3e\xab\x52\x54\x37\x7d\x80\xb2\xb6\xd0\x1d\xb4\x1c\xdf\xd1\x34\xa0\x66\xff\xfe\xb6\x49\x8a\xa8\xba\xf7\x88\x7b\x5e\x48\x65\x30\x93\xc4\xc7\x4d\x95\xe4\x75\x6b\x47\xce\xed\x8b\x15\x6c\x39\x2a\x49\x6d\x04\xd9\x32\x3d\xd7\x72\xb4\x67\x4f\x4c\x3c\x0f\xe6\x5d\x4d\x44\x01\xb8\x85\x90\x7b\x2b\x96\xe7\x89\x56\x82\x3b\x1e\x28\x91\xf3\x99\x8e\x22\xc9\xfb\x1c\x1e\x54\x18\x00\xc9\xf6\xc8\xe8\x67\xb5\xb9\x44\xc2\x1b\xce\x06\x2b\x06\x4d\x08\x47\xb4\x56\xf9\x27\xfe\x07\x40\xfd\x50\x41\xf8\xae\x33\x11\xf4\x72\xb2\xa1\xed\xcd\x56\x7e\x1f\xae\xe6\x52\xa9\x24\x65\xd0\x0a\x71\x3b\xbf\xba\x3a\xe6\x99\x57\x69\x7a\xda\x8f\xe2\x35\x90\x6c\x30\x95\x93\x0e\xd1\x6e\x07\x9e\x6b\xfa\x7e\xa0\x34\xdd\xc0\xa7\x0c\xdb\x3a\x3b\x51\xe1\x4a\x14\xc7\xb3\x1e\xaa\x72\xa1\xf4\x05\xe7\xcd\xa0\xd6\xca\xdc\xe7\xc8\x48\x55\x19\x97\x9b\xe2\x73\xbe\xbe\xf6\x69\xe9\xff\xf2\xf3\xba\xc2\x3a\x3d\x55\xc7\x01\xed\x5e\xe4\xe7\x4d\x44\x4f\xfd\x68\x8d\x71\x5a\x8f\xc5\xbf\x22\x8c\x1c\xd8\xcc\xbe\x54\x5d\x34\x2b\x56\x51\x5b\x02\xbf\xf8\x08\x3f\x8f\xaa\xfc\xef\x03\x16\xcf\x58\x7f\x78\x37\xd4\x4a\xef\x63\x89\x88\xc4\x7d\xf5\x30\x10\xd4\x7f\xad\xd5\x9a\x4b\x5f\x14\xfb\x0e\x52\x02\x78\xad\xfb\x48\x09\xf8\xa4\xf4\xa0\x3f\x1e\x32\x82\x2b\xe0\xdc\x0e\xb5\x91\x9d\x1d\x17\xdb\x2f\xbd\x4c\xe8\x51\xfc\xc6\xec\x44\xc1\xa3\x4e\x61\x45\xca\xa0\x05\xa5\x06\x88\xf6\x66\x69\x13\x48\xab\x42\xcf\x9c\xe7\x85\xed\xd1\xcc\x39\xbe\x0f\x41\x38\x8c\x29\x2b\x39\xf1\x3f\x04\x1e\x34\xf0\x5e\xa9\x29\x3a\x03\xc5\x48\x75\xab\x81\xea\xe0\x40\xdb\x10\x25\x3a\x47\x31\xae\x51\xe9\x58\xfa\xcf\x4f\x35\xc7\xf7\x2d\xb5\xbf\x3d\x36\x71\xb4\xe2\x60\x71\xb0\x0e\xc7\xb0\x4d\xf9\x44\x45\x85\x79\x3a\xce\x42\xbb\x9b\xfe\x54\xe2\x0f\x15\x3e\xdc\xc4\x26\x46\xed\xe3\x3b\x6a\x7a\xe9\x38\xc5\xd3\x22\xaf\x52\x5d\x92\x20\x09\x5a\x8e\x4d\xfd\x53\x27\x04\xd2\x37\x59\xdf\x24\xc5\xd8\xc0\x63\x63\xf1\x32\x43\x81\x93\x96\x71\xf8\xbb\xeb\x6a\x07\xe2\xfa\x5a\x8a\x40\xff\x62\xa0\xba\x24\x17\xb5\xb0\x0a\xf1\x82\xc1\xa3\x63\xb1\xef\xe8\xa8\xa8\xfb\xf3\xd2\xcf\x5b\x41\x37\x17\x86\x80\x27\x3e\x85\xd8\x69\xbb\xdb\x5f\x58\x68\x17\xe9\x38\x1c\xb4\x3c\xc6\xf2\x47\xb4\x9f\xa4\xfc\xf2\xb2\x6b\x57\xac\x64\xc6\x31\x3f\xcc\x78\x19\x0b\xd0\x72\xa2\x13\x05\x46\x32\x18\x9a\x7b\x0a\x9e\x98\x86\xe1\x78\x64\x12\x16\x55\x71\x22\xc4\x0e\x76\x36\x51\x96\xba\x97\x16\x4e\xb8\xb1\x49\x51\xc5\x4f\x7e\x59\x93\x25\x51\x9f\x6b\x69\xa2\xc0\x4a\xdb\x94\x4f\x82\x3f\xf3\x98\x92\x44\x98\x26\x45\x94\x10\x78\xa1\xe5\x1b\x1d\x2c\x5f\xca\x27\x53\x5c\x39\xaf\x2f\x1e\x6a\xe7\x85\xb5\xf1\xd0\xac\xba\x01\x78\x89\x82\xe8\x4d\xf0\x89\x22\xb4\xa8\x8c\x74\xbe\xa7\x7a\x58\x6e\xc8\xdc\xb1\x49\x5e\xa2\xb5\x04\x6f\x72\x07\x5b\x0a\xf6\xf5\xa9\x0e\xed\x50\xfe\x17\x7a\x1b\xa8\x2b\x1c\x27\xcb\x89\x24\x83\x65\xed\xe0\x32\xfe\x16\x99\x6a\xd8\x23\x0d\xf7\xfd\x7c\x1b\x55\x43\x75\x91\xc2\xb5\x32\x5d\x60\x6e\xbf\x65\xd7\xa3\x7c\xa0\xa0\x52\xbf\x8b\x3d\xcc\x27\xba\x41\x13\x8a\x2e\x8f\x90\x02\xd1\x4b\xe0\x13\x45\x2b\x5c\x98\xbc\xb0\x31\x41\x18\x1c\x73\x25\xd0\x7f\x7c\xac\xd2\x81\xbf\xf2\x4b\x07\x5b\x8a\x9d\xff\x32\xb5\x33\x84\x59\xa2\xd6\xc2\x58\x47\x50\x52\x03\x81\xc9\xd0\xc9\x8b\x9a\xa1\x39\x7d\x7b\x23\x1f\x32\xa6\x5b\xd2\x7c\xa5\x36\x77\x45\xfd\xba\xcd\xf3\x6f\x2a\xbb\x36\x43\x70\x7f\x6c\xc3\x67\x3a\x8a\x81\xef\x8f\x4d\xc8\xf8\x2b\x15\x25\x51\xb8\xbb\x57\x2a\x9e\xff\x67\x27\xbe\x3c\xf3\x42\x87\xec\xba\x46\x05\x4a\x12\xe9\xa3\x6d\xd6\xb7\x13\x01\x49\x05\x91\x7f\x7a\xa2\xa6\x43\x7f\x2f\xf0\x77\xfe\x11\xd2\x5a\xf4\x9f\xf6\x52\xa3\x02\x6b\xe0\x2b\x9a\x4b\x13\x7c\x40\xb5\x80\xd0\x57\x7a\xb6\xe3\xcd\x9a\xf4\x98\x50\x77\x6e\x4d\xc8\x0f\x21\x93\xba\x83\x7a\x1a\x16\xe3\x9e\x4e\xeb\xaf\xfe\xaa\x7b\x5b\x0d\x30\x8c\x9c\x7a\x82\x48\x2f\x65\x1e\xcb\x27\x47\xf7\x94\x60\xff\x29\x55\xd9\x4c\xec\xdb\xc5\x93\x1e\x51\x80\xe9\x22\x74\x53\x76\xe3\x71\x49\xf5\x87\x9e\x44\x8d\x38\xa6\xa6\x37\xcf\x25\x45\x2e\xa1\x22\xb5\xb8\x84\xc8\x5d\xd0\x05\xf4\x8e\x18\x2f\xd7\x30\x8f\x78\xa0\x6d\x86\x51\x68\x04\x70\x85\x6f\x7f\x57\x43\x31\xde\x9d\xc2\xc1\x80\x0f\x92\x40\x2b\x2c\xc6\x82\xa2\xd4\x3d\xc5\x9f\x74\xcf\x61\x80\x87\x26\xcf\x2d\xb5\xa1\x84\x3d\xbf\xfa\x2b\x44\x06\xe7\xc9\xcf\xc3\x4d\xdc\x6f\x68\xfb\xbc\xda\xee\x65\x51\xb2\x4a\x0b\x1e\x4e\x08\xc3\x7b\x7c\x3c\x55\x4a\xaf\x1c\xeb\xd0\xc4\x51\x3f\x31\x2c\x63\x27\xb3\xa2\xd5\xef\x0b\x63\xb6\xcf\x3b\x6f\x4c\xa5\x82\xfb\xf7\xb7\x07\x69\xd2\x33\x74\x5b\x4e\x87\xcc\x2b\xb6\x5d\x51\x2c\x7d\x0c\xde\xce\x1f\xab\x9f\xe2\xdf\xf8\xba\x35\xd9\x6e\x9f\x4b\x6c\x52\x78\xc8\x02\x4f\x81\x2f\x05\x9d\xc5\x0b\x77\x09\x87\x4b\x3b\x9f\xa2\x50\x47\x14\xa1\x68\x21\xf0\x37\x35\x36\xcb\x4c\x15\x1e\xb7\x54\xb2\xfd\xfb\x4a\x59\xfe\xf7\x03\xdf\x66\x59\x35\x85\xdd\x5d\x99\x62\xbc\x6b\xa6\xc3\x72\x63\x37\x7e\x15\x9c\xa4\xb7\xc6\x28\x3e\x3d\x7e\x7d\xb7\xfa\xe6\x2d\x96\x97\x14\x2c\xa6\xaf\x8a\x44\xc9\x9a\xcd\x0b\x9a\x52\x7e\x42\xc1\xca\x1f\x22\x8a\xc4\xce\xbc\xa0\x08\x9a\x2e\x61\xfb\x31\x22\x1b\x91\x37\xd6\x35\x6b\x0a\xf2\x47\x14\x73\x05\x38\x05\x65\x3a\x4e\xec\x74\x15\x32\x44\x92\x4f\x22\xfa\xe3\x98\x81\x4f\x26\x8f\xad\xd9\x27\x26\xde\xc8\x0b\x2a\x06\x60\x69\xfe\x04\x2b\x00\xd0\xf0\x23\x0a\xa0\xdf\x02\xdf\x9b\x63\xe0\x53\xe8\x28\xef\xd4\xc7\xf9\xb8\x0a\x5f\x70\xfb\x42\xfe\xe7\xe7\xb3\x4e\x94\xba\x55\xa4\x5b\xe4\xe7\xe9\x0b\xa5\x87\xa4\x38\x7f\x02\x35\x5c\x76\x1a\xf1\x2d\xdc\xd4\x43\x97\xf7\x82\x61\x89\xfd\x14\x7c\xe0\xa3\x52\x89\xa9\x3c\x52\x8a\xb2\x99\xcd\x8b\x14\x14\x07\x4b\x3e\xf5\xf2\x33\x9c\x3f\x69\xb0\x00\x07\xda\x3d\x1b\xdb\xbe\x29\xac\x10\xf3\x2b\xfe\x14\xcf\x05\x2d\x46\x20\xb1\xeb\xf1\xc6\xae\xca\xf8\xcb\xde\x68\x39\x36\xf7\x47\xe4\x08\x24\xcb\xa7\x8f\x63\x37\x80\x25\x80\x9e\xfa\xd5\x3f\xd1\xf1\x58\xd3\xaf\xa7\xe7\x52\x5e\x3b\xd8\x36\xe3\x9c\xa4\xe3\x78\x96\xc1\xe1\x14\x7d\x21\xe4\x9e\x82\x43\x66\xe9\xd0\x24\x2d\x25\xea\x71\x8c\xeb\x8e\x02\xf2\xf2\x4d\x85\x2a\x52\x1f\x82\xea\x4a\x30\x1d\xd5\x8e\x41\x92\x7c\x55\x41\x3b\x2f\x2b\xff\x9b\x93\xae\x55\x5f\xd0\xd7\xa8\x7a\x7e\xa9\x29\x69\xbe\x6c\x82\xf5\xf5\xb3\xa8\x28\xd0\x0b\x46\x9c\x8b\x4e\x07\x1f\x6f\x17\x70\x59\x3c\xd4\x3e\xf4\xda\x5e\x5d\x57\xa1\xd5\x03\x47\xf6\x3e\x41\x3a\x10\x8f\x93\x43\xdf\xfa\x19\xf6\x16\x1e\xe2\x8f\x34\x55\xe0\x29\x45\x19\xb1\xf4\x42\x47\xf1\xd3\x00\xcb\x23\xf5\x74\xa5\x6f\x51\x06\xaa\x62\x79\x9c\x1f\x1e\x92\x90\x2f\xe9\x9a\x85\x64\x57\x41\xf2\x8e\x2b\x9c\xf7\xa7\x54\x69\x70\xc5\x79\x2f\x23\xa3\xa7\xf5\x47\x36\x8b\xe2\x74\x9c\xb7\x2a\xd7\xcd\x21\x77\xe0\xa9\x8a\xee\xa8\x41\xef\x74\x65\x85\x08\x48\x94\x9c\xc6\x0d\x85\xc9\x99\xe6\xa4\x26\x6e\x8f\x22\x8b\x42\x53\xc0\xf7\x21\x34\xd8\xa5\xe8\x7c\x77\x4d\x1a\xd4\x1b\xd3\x9e\xb0\xbb\x23\x3c\xbb\xa6\x84\xb4\xaf\x35\x89\xe5\xa5\x09\xba\xfb\x5b\xd7\xab\xdb\xdf\xba\x1e\x78\x68\x53\x16\xad\x49\x85\x14\x6d\xcd\x33\xaa\x39\xcb\xd5\x52\x20\x35\xef\xab\xee\xec\x2f\xfc\xc2\x5f\x9e\xa9\x01\x08\x9d\x66\xc3\x39\x8a\xaf\x90\x37\x3f\x0c\x04\x91\x9d\xf7\xa2\x19\x8f\x71\x66\x81\x5b\xa7\x45\xe1\x7c\xd7\x17\x0e\xc2\x6d\x0d\x68\xa7\x05\x0d\xae\xc6\x9c\x34\xe2\xb2\x88\x6c\x6f\x46\x89\xa3\x60\x7c\x1d\x4e\xea\x07\x8a\x4b\x52\x97\x90\x7b\x51\x4e\xe5\xa8\x27\x14\xac\xe8\x64\xa9\x51\xa8\x8a\x5b\xeb\x6e\xa9\x5b\x61\x9a\x28\xf3\x34\x2f\x38\xa1\x57\xf2\x3d\xdb\xb9\x8e\x22\xae\x3c\x39\x95\x7a\xbf\xd2\x1e\x9a\x70\x10\x25\x36\xdb\x50\xea\xbb\xa7\x95\x77\x3b\xad\x52\xe8\xcc\x44\xb9\xed\x51\x63\x45\x70\x69\xd5\x73\x61\x65\x79\x45\x48\x8f\xb2\x86\x42\x15\x49\x41\xec\x0c\x5e\x22\x1b\x74\x35\x23\x46\x33\xf4\x45\xfe\x3c\xfd\x2d\xb6\xc1\x31\xec\x15\xe6\x08\x25\x83\x8f\x30\x96\x61\x9b\x38\x41\x35\x1c\xeb\x6d\x37\x29\x5f\x6d\x71\xc4\x8c\xf8\xe6\x16\x59\x27\xfc\x20\x53\x4d\xe1\x1f\x10\x66\x0a\x89\x08\x39\x53\xf6\xb9\x58\x11\x08\xdc\x9e\x9e\x78\xd9\x83\x13\xb4\xf9\x51\x48\xbb\x13\xa8\x16\xe9\x0d\xd5\x16\xbd\xae\xa6\x2d\x62\xd3\x4d\xb3\xdd\x9e\x1b\xea\x11\x5e\xa0\xab\xfe\x2b\xdd\x92\xc0\x8f\x2b\x61\x0a\x1e\x9c\x25\x97\x54\xad\xe5\x8a\xe2\x1a\x7a\xb4\x1d\x86\xfa\xfa\x81\xf6\xe1\xf9\x37\xe0\x54\xa5\xaa\xa8\x62\xdd\x9b\x58\xb4\xa8\x7b\x1c\x05\x72\x40\xa2\x13\xc5\xdd\x04\x17\xcb\x9f\x2f\x15\x62\xe4\x36\x6e\x57\x32\x3c\x85\x4a\x08\x8b\x7c\xd6\x27\xaf\x58\x04\xb0\xcf\xd7\x95\xad\xbe\x5e\x7a\x49\x80\x26\x0e\xfe\xea\xff\x57\x67\x7d\x83\x98\x91\x6d\x1a\xe0\x82\x2f\xda\x85\x81\x11\xd9\x49\x4d\x0d\x8f\x7c\x94\x66\xec\x34\x10\x56\x1f\x0f\x7c\x88\x7d\x7c\xca\xf0\x1d\x7a\xad\x5d\x85\xc7\x63\xa7\x96\x5f\x93\x95\x91\x02\x96\xd2\xea\x18\xd0\x8c\x85\x8b\x6b\x19\xf3\xec\x06\x2d\x0f\xcf\xfb\x50\xa4\x5a\xa6\x28\x81\x80\xef\x45\x20\x29\x3e\x2d\xff\x2d\x2c\x72\xfc\xd1\x1f\x62\xe1\xc2\x16\xdd\x69\x22\x29\x68\x5b\x93\x47\x36\x9b\xa1\x57\x23\x00\x16\x72\x63\xcc\x3a\x84\x34\xf0\x71\xfc\xa0\x55\x42\x30\x48\xf3\x51\x54\x80\x65\x40\x80\x17\xb0\x18\x7c\xac\x6a\x16\x66\x35\x4b\x13\x18\x64\x89\xc1\xe8\x0a\x45\x7c\xb9\xa5\x38\xa0\x1b\x86\xe0\xf2\x11\x3b\x20\x66\x5c\x57\x2c\xa4\xe7\x95\xe1\x1c\x46\xa3\x6d\x72\x46\x78\xa4\xa2\x6d\xe4\x0b\x5f\xdd\x68\xd5\xe6\x33\x1e\x51\x71\x52\x61\xa2\x3f\x09\xf4\x90\x7f\x43\x22\x43\xc8\x70\xba\x1c\x01\x9f\xd1\xaf\x08\x2a\x6d\x9a\xe6\xbf\x0a\xea\x86\x69\x98\x19\x21\x79\x47\xed\xff\x3d\xad\x6e\xfb\x9e\x2a\x6d\x45\x49\x8f\xdc\x67\x6f\x8e\x5e\x3c\x6c\xee\x03\x1d\x9d\x1e\xa7\x27\x20\xdc\x33\x2d\xc7\xe1\x71\x53\x8f\x08\x3c\x50\x52\xb6\x5d\x6b\x31\x93\x89\x10\xf0\x0b\xfa\x0c\x1c\xdd\x57\x3a\x50\xfe\x8d\x26\x20\xdd\x5b\x69\x2c\x70\x37\x21\x9b\xf7\x1f\xbf\x58\x2b\xa3\xc4\x4c\xbc\x02\xf3\x0d\xd3\xc8\xc7\x93\x1a\xa9\x46\x51\xcc\xd2\x72\x10\x8d\x38\xbc\x36\x99\x4f\xa3\x2b\x12\x29\x39\xa5\x38\x71\x52\xc5\x8f\x85\x4d\x7a\x36\x53\xcd\x01\xde\xeb\x48\x6b\xee\x97\xbe\x57\xb4\xa7\xe3\x69\x74\xae\xf8\x04\x3a\xed\xd9\x78\x97\x1f\x81\xda\x0d\x0f\x27\xe0\x0a\x05\x49\x44\xa5\x15\x01\xc3\xed\x52\xf1\x7a\xfc\x91\x66\x62\xfa\xa9\x42\xef\xac\x9b\x2c\x9f\xf5\xcb\xe8\x2e\xd5\xd2\xf8\x98\x2e\x4c\xb4\xee\xfd\x34\xe0\x85\x7a\x39\x2a\xcd\x9e\x68\x39\x3e\x13\xa0\x85\xb7\x20\x27\xe1\xc6\x0f\x96\x65\x22\x19\x3d\x0d\x16\x62\xc5\x32\x61\xfc\x64\xfd\xd9\xb5\xdc\xd4\xf3\xce\x29\xca\xb7\x7d\x4b\xed\x21\x89\x55\xce\x7a\x1b\x77\x8f\xee\x1b\xa1\xe8\x67\x30\x42\x48\x4e\x77\x63\xc8\x1f\x6e\xe6\x8a\x72\x54\x83\xb4\xb0\xf1\xac\xca\xeb\xff\x9e\x1e\x68\xc2\xed\x22\xe8\x05\x96\x06\xbd\x84\xb9\x89\x6f\xf2\x86\x51\x16\x8a\xf0\x00\x19\x27\xf8\x7b\x4c\x5e\xf0\xb1\x8e\x7b\x58\x69\x9a\x8a\x12\x6e\xbe\xc1\xe1\x71\xff\x67\xcd\x78\x75\xc4\x71\x48\x73\x8e\x25\x25\x61\x27\x61\xeb\x07\x03\x3e\xdf\xee\x17\xf7\xef\x6f\xef\xdf\xbf\x0c\xbd\x5a\x47\x61\xe0\x32\x90\x1d\xa8\x9c\x3a\x3d\x11\x5f\x0e\x3c\x1b\x28\xb0\x0d\xf7\x06\x34\x55\x18\x98\x23\x6e\xba\xe6\xaf\x25\x5f\x6f\x0a\x94\xc3\x01\x35\x87\xda\x04\x3e\xf5\x8c\x9a\x61\x7c\x58\x6a\x12\xba\x70\xd5\x66\x9a\xcc\xad\xd4\x64\x6e\x81\x67\xce\x8d\x86\x95\x5f\x23\xe5\x38\x32\xf8\x28\xd9\x9c\x85\xc1\xe7\x93\x86\xa9\xb1\x03\xed\xb5\x54\xb8\x09\xe0\xfe\xcf\x28\x1e\xa6\x69\xad\xb8\x7d\x4b\x20\x8a\x91\x5e\x6a\xd3\x94\xb6\x4f\xe6\x87\xe3\x21\xa4\x6f\x96\xe7\x3d\xe6\x6e\xdf\x92\x9b\x00\x6c\xe8\x31\xe4\xeb\x11\x97\x80\x79\xa6\x40\x37\xcd\x3c\x3b\x4b\xc1\x88\x09\x58\x6c\x67\xbf\xf6\xef\x77\xf6\xcb\xf3\xe6\x64\xa6\x32\xbc\x31\x2e\xd8\x39\x62\xcf\x7e\xd0\x84\x2e\x18\xc5\x26\xb4\xdd\x94\xbe\x1d\xe6\x02\xf4\x02\x7c\xdc\x24\x54\x49\x2a\x24\x59\x95\xbd\x38\x66\xdc\x1f\x06\xfe\xcd\xfd\x50\xcd\x62\x0e\xcc\x30\x8a\x8b\x94\x53\x6a\x11\xc3\xd0\x90\xad\x9b\x81\x47\x32\x17\xe1\x40\xf8\xa3\x9c\xf6\x88\x43\x34\x7e\x84\x38\x4e\x38\xec\x9a\x66\x88\xf3\x38\x1a\x8d\xa4\xc2\x05\x60\x08\x57\x3a\xf9\x64\x2a\xee\x5f\x58\x68\xdb\x62\xb0\x11\xdb\x84\x97\x06\xfc\xe9\xbf\xa1\xa7\xc6\xc7\x6e\x6d\x87\x96\x59\x54\x5b\x7e\x6d\x73\x78\x24\x94\x12\x8f\x91\xd4\x67\xc2\x73\x6c\xa9\x8b\xd8\x45\x7c\x02\x52\x0c\x1e\xac\xfb\xff\x93\x5d\x62\x1a\x36\x04\xe9\x6e\x54\x74\xf1\x10\x1f\x7f\x3f\xf0\xc0\xf1\x4d\x34\xc6\x11\x81\x7d\x48\x24\x1d\xc2\xdb\x8a\x5e\xba\xa3\xac\x5b\x3e\xe0\x85\xe0\xaa\xa8\x17\x11\xfb\x03\x5a\xa5\xb5\x07\x8c\xbe\xe5\x6d\x10\x99\x30\x12\x2b\xf0\xbc\xd9\x57\x70\xf5\x4c\x05\x42\x0c\x3e\x58\xe4\x27\xca\xd6\x2f\xff\x35\xd1\xbe\xc3\x53\x11\x91\x9c\x2a\xe6\x65\x91\x5a\xb4\x73\x11\x44\x71\xd3\x14\xeb\x00\xc3\xb0\xf0\x25\x0f\x83\x9d\x7f\x8e\xb3\xdd\xbb\x28\x4e\xa0\xc2\x72\x02\xe3\xfa\xe8\x20\x5c\x0b\xfc\x28\xec\x77\xd8\xff\x22\xff\xff\x54\x71\xd9\x5e\xa0\x8e\x09\x02\x0a\x1e\xc9\x40\x85\xf4\x36\x32\x01\xc4\xb5\xad\x0e\x59\x0f\x78\x9d\x8f\x1a\xa8\x91\x0f\x10\x1d\xf5\x9c\xe7\xe3\x98\xa3\x59\x6a\xf8\x54\xd4\x06\x40\x51\x70\x5c\xf1\xf5\x7c\xa0\x7a\xf5\xd3\x06\xe6\xf0\xfc\xab\xed\x15\x9b\x65\x11\x8c\x80\xf3\xa8\xde\xbb\xaa\xd0\x70\x64\xa2\x4c\xe9\xce\x1e\xab\x0d\x1e\x7e\x43\x41\x3a\x12\xf4\x23\xa3\x34\xc9\x91\x83\xcb\x9a\xab\x2e\x45\xa4\xf0\xab\x47\x82\xcb\xfa\x60\xea\x5e\x17\x0f\xb5\x0b\x33\x92\x6d\x88\xc6\xcf\xd7\x35\xd2\x1f\x0d\xe1\xdc\x1e\xec\x2e\xcf\xb7\x13\x67\x66\x39\xac\xc1\xb2\x92\x18\xe7\x59\x57\xfa\x2b\xaa\x5c\x47\x41\x62\x58\x8f\x41\xa6\x5b\x9b\x0c\x4f\x3c\x1e\x76\xc5\xeb\xc1\x08\xff\x03\x25\x0a\xf3\x0f\x54\x3e\xd6\xb5\x96\x51\x56\x48\x14\xbf\x2a\x7d\x01\xe8\x2b\x55\x34\x89\x92\xde\x73\xd5\xf2\x44\x34\xfe\xa3\xd2\xaf\x96\xb3\x3a\xef\xbb\xa4\x3a\x05\xe7\x15\x5d\xf5\xff\x0f\x69\x18\x1c\xe7\x4d\x4a\x7a\xb0\x0e\x9e\xee\xf8\x1d\x87\x82\x13\x32\xcb\x27\xb5\xca\xe4\x73\xd4\x10\x43\x40\xf1\xb3\x40\x8d\x1c\xb2\x46\xb4\x14\x8d\x15\x23\xe2\x5c\x47\xe5\xdb\xba\x72\x99\x87\x99\x19\x69\x9a\xc1\x4f\xd4\xf8\xf1\x27\xcd\x22\x88\xb1\x19\xf7\xb8\x16\x8c\x15\xcb\xd4\xf9\x7c\xa2\x60\xb7\xbd\xc8\xb2\x5c\x01\xaa\x21\xe8\x4e\xf0\xb1\x03\x67\xf7\xa2\xcc\x86\x00\x9c\x22\xab\x6b\x79\x82\xbc\x53\x2f\x81\x97\x80\x29\x6c\x4a\x37\x60\xf1\x9d\x3f\xd6\xd1\x0b\x95\x9e\x21\x4a\x55\x5b\x2e\xd6\x0d\x33\x6b\xb1\x54\xa4\x4f\xac\xf4\x61\x2e\x35\xc9\x3a\xaf\x99\xd0\x24\xa1\xc3\x44\x08\xf0\x9c\x9e\x31\x9f\xa8\x8c\x25\x4c\x87\xc3\xb4\x27\x83\xc7\xc8\x3b\x11\x3d\xf2\xb1\x5a\x31\x23\x93\x60\xea\x10\xf8\xba\x23\x2a\x89\xfd\x5b\xb8\x2c\xa4\xee\x98\xab\x72\x8c\xfb\x9e\x79\x85\x75\x9c\xe1\xb1\xa3\x7e\xd4\xab\xb5\x62\x15\xfa\x7a\x2a\xab\xaf\x12\xdf\x9e\x0d\xa3\x1e\xa2\x2b\xc1\x7b\xd2\x77\x33\xc2\x8f\x8c\x22\x0a\x17\x27\x7c\x0c\x61\x63\x3b\x1a\xa4\x3c\x8d\x5d\x23\x59\x11\x38\xc1\x8b\x53\x05\xb1\x24\x9d\xa9\x7c\x0e\xac\x25\x92\xca\x1a\x17\x3a\xea\x51\xa7\x6a\x64\x21\xe3\x55\x6e\x17\x30\x29\x9d\x4a\x3c\x7e\x47\xd1\x1b\xd9\xb7\x47\x36\x2b\xf2\x27\xbd\xf6\x19\xa4\x21\x50\x52\xe2\x91\x21\xdc\xdd\x1f\x91\xe3\x13\x3d\x2e\x35\xe7\x8f\x27\x25\xf2\xfc\xd5\x8e\x14\x6f\x43\xcb\x94\x2b\xcb\x81\x1a\x42\x3b\x5e\xfa\x84\xbe\x67\xd6\x22\xc9\xb5\x5d\xcd\xa1\xba\x2b\x3e\xa9\x49\x6d\x87\x83\x8d\x19\x95\x63\x5e\xd3\x75\x6c\xfa\x65\x24\x50\x1f\xab\x70\x76\xc5\x84\x45\x9a\xcd\x79\xe5\x3f\xee\x60\x08\x35\x78\x75\xed\x5c\xf0\xa6\x6f\xe3\x3a\x2d\x7c\x2b\xf0\x1f\xb7\x9b\x84\xa8\x57\x62\x4c\xee\x2b\x1a\x8c\x4d\x45\x83\xb1\x59\x67\x7e\x7c\x87\x04\x0a\xc5\x5a\x9f\xd9\xc6\xcb\xef\x58\x8d\xee\x29\x35\xf8\xdf\xad\x51\xd7\xe4\x2a\x95\x79\xb5\xa6\xe2\xc0\xc7\x0a\x1f\xd5\xb7\x49\x34\x86\x2f\x43\x62\x7f\x37\x50\xc4\xea\x77\x9b\xf4\x3e\xf0\x94\x94\x9a\x19\xba\xe4\x7c\xdc\x08\xb4\x1f\xc5\xe9\xba\x44\x78\xac\x42\x54\x97\x24\x7a\x46\x0d\xe6\x66\xab\xb3\x1a\xbe\x7e\x5c\x35\x65\x76\x55\xa6\x77\xeb\x21\x2e\x11\xe9\xc8\xfd\x60\x8f\x72\x1f\x32\x6b\xeb\xaa\x83\x9e\x85\xf3\x72\xd0\x34\xd8\xf1\xf3\xf9\xee\x7a\x11\xa0\xe5\x44\x89\x1e\xa1\xd0\x08\x23\xf1\x27\x31\x21\x8b\x20\xef\x5f\x04\x2a\x49\x24\xb0\xcd\xc1\x2d\x0e\x9e\x90\x0d\x5e\x6b\xa6\xb3\x08\xd3\xac\x27\x3e\x1a\xeb\xfe\x5e\x6d\xd2\x98\x1e\x89\x70\x31\x4a\xfd\xde\x24\xbd\x39\xc5\xac\xf4\xe4\xc4\xef\xef\x5a\xed\x41\x70\xfc\x4e\xb1\x7c\x61\x81\xcb\xa7\xdf\xec\x88\x45\xee\xa7\x92\x6b\xd7\x30\x64\x4e\x1b\xbd\x5a\x2f\xb0\xe2\x2c\x7e\x25\x18\x1b\x27\x51\x58\x64\xe3\x7e\x3f\x06\x31\x34\xca\xd6\x10\x43\x14\x15\x24\x37\x41\xf6\x5f\x9d\x2a\xf7\xf8\x97\xfa\x97\xff\xd2\x9c\x87\x7d\x9f\xc5\x0f\xe1\xbb\x8f\x07\xaa\x91\x09\x83\xc2\xff\x50\x2a\xb0\xf9\xd1\xd2\x4f\x88\xd9\x38\x26\x43\xca\x53\xf1\x78\x06\x58\xaf\x17\x14\x21\xd0\x29\x97\x01\xf4\xa2\xbc\x3b\xce\x9c\x9c\x18\x9e\xfc\x87\x0a\x38\xfc\x61\x13\xb7\xb3\x70\x59\x73\xd7\x19\x96\xfa\x52\xa9\xa8\xab\x2e\x05\xdb\x5a\x78\x3f\xff\xf3\xed\xe5\x79\x32\x1f\xb0\x5d\x5f\x53\xf5\x5e\x08\xa1\x14\x59\xd3\xe7\x88\xd3\x35\x95\x14\x5e\xe2\x6d\x55\x65\x88\x92\xb7\xc6\x48\x42\x96\xe7\x85\x19\x2a\xf0\x14\x9b\x3f\x2d\xb7\x33\x7e\x1d\x9e\x7f\xa3\xdd\x4f\xbb\x55\x4a\xbb\xd1\x4f\x53\xb8\x5e\x20\x6f\x50\xd9\xe6\xe3\x9a\xb9\xd9\xc8\x0b\x4c\x46\x8b\xa2\x31\xad\x08\xd8\xc9\x19\x6a\x1f\x88\xee\x31\x96\x17\xff\x4b\x47\x21\x71\xbf\xd6\x0e\xfa\xeb\x26\xe0\x6a\x1c\xad\xc2\xf9\x39\x2e\x09\x87\x1b\xbd\x48\x77\x2f\xa9\x90\x02\x33\x24\x76\xbd\xe5\x07\xdc\xff\x3b\xfa\x33\x3e\x76\x23\x15\xeb\x51\xd2\xa3\x62\x1a\x16\x3d\x5f\x15\x76\xd0\xbf\x29\xa7\xa3\x31\xfe\x97\xc0\xc7\x3a\x67\x94\x24\x81\xaf\xd2\xe5\xa1\x61\x51\x28\x19\x08\x50\xcd\xe5\x53\x81\x0f\x41\x4c\x3f\xb3\x34\x1b\xf0\x14\x3d\x02\x34\x6b\x7f\x53\x21\x49\x8f\xe1\x79\x0a\x2f\x03\x2d\x7c\xc4\x9d\xf7\x4b\x9f\x88\x7f\xa2\x6a\x69\xff\x9a\x7c\x27\xcf\x44\x04\x6a\x96\x1e\x65\x6e\x07\x4d\x59\x58\x74\x30\x64\xef\xa3\x47\x36\xc9\xa3\x34\xa1\x67\xa2\x32\xbf\x45\xfe\x0a\x26\x4e\xe2\x13\x60\x30\x00\x7f\xbe\xaf\x54\xe8\xae\x28\x58\xf4\x7d\x57\xbe\x1a\x27\xdd\x38\x4a\x56\x1d\x42\x4a\xe8\x21\xab\xcf\xb9\x69\x32\x25\x32\xaf\xa9\x7b\x6d\x4e\x84\xc3\xcf\xf8\xf6\xc2\x2d\xce\xfd\x10\x75\x6d\x95\xbe\x2b\x57\x06\x9a\xa0\xb7\xe5\xe4\x9e\x2e\x69\xd0\xfa\x65\xa2\x08\x45\x11\x9b\xe9\x0a\x51\x82\xc1\xd2\x42\x9e\xbb\x17\x51\x3b\x36\x2b\xb3\xb3\xc1\x66\x7d\x4d\x77\x08\x6b\xf4\xa9\x62\x51\xb7\xcf\x77\x1a\x06\xaf\x89\x1f\x63\xc6\xeb\x7a\xec\x9e\xa8\xf5\x8e\xc1\x78\xc4\x88\xcf\x76\xd4\x18\x57\x66\x4d\x31\xc0\x50\xb5\xbe\x34\x24\xc8\x47\x29\x60\x96\x7e\xe5\x73\xaa\xb2\x98\x24\x51\xae\xd4\x85\xd8\x42\xf3\x89\xc2\x2b\x85\x59\x54\x44\xdf\x1e\x63\x95\xe2\x85\xde\x54\x11\xc1\x4d\x08\xa5\x4a\x7e\x59\x64\x51\x77\x4c\xfa\x95\x0e\x5e\x09\xcd\x3d\x98\x7e\xcc\x5a\xf3\x28\x7c\xf9\xb2\x52\x40\xe9\xd9\xac\xa0\x0a\x2d\xeb\xf9\x30\x75\xbf\x62\x1f\xd8\x6a\xf0\xf8\x07\xda\xeb\xe6\xed\xa1\x11\x6f\x5c\x93\xc8\xe3\x93\xa9\xa2\xcb\xa1\xd7\xaa\x08\x33\xcd\xd0\xad\x46\xf8\x79\x4c\xd1\x1b\x1d\x6b\x22\x2a\x2c\xa2\xa1\x55\xb2\xe2\xb7\xf0\x2e\xf9\xa4\x59\x2c\xc9\xe9\x44\xbb\x62\x88\x5b\x30\x9b\x53\x7e\xe0\xf5\x03\x32\xce\x2d\xad\x7d\x98\x20\x26\x1d\x43\x59\x8b\xe7\xdf\x84\x4b\xd6\x27\x1d\xc3\xd1\xc6\xac\x52\x3c\xbc\xa0\x56\x33\x90\xcd\x58\x4f\x08\x84\x65\x48\x48\x5c\x6d\xbc\x31\x1a\xa4\x43\xc8\x6e\x48\x83\xae\xd5\xd1\x72\xb3\x78\xb8\x92\x76\xd0\xd5\x61\xa5\x9d\x50\x92\x65\x23\x02\xb6\xd1\x88\x28\xf9\x31\xd1\xd1\xa0\x3f\x17\x21\x0d\xad\x1c\x3f\x0e\x07\x4e\x83\xc6\x09\x4a\x7b\x71\xe9\x29\xf8\xd0\xc2\x42\xdb\x14\x7e\x7d\xb9\x0a\xc7\x29\x5c\x11\x0b\x87\xc1\x45\xa0\xe0\xf6\xbe\x4a\xa5\xba\x36\x4e\xd7\x77\x55\x16\x0f\xff\x76\x4d\xd1\x00\x5e\xd3\xe3\x1e\xbb\x3a\x2a\x45\xd9\x52\x7c\x11\xbf\x1f\x78\x76\xd8\x6b\x4d\x40\xfb\x7c\xdc\x1d\xa5\x36\x31\xfc\xda\x79\xc6\x44\x8d\x36\x36\x92\x3b\x0d\x4d\xf6\xb6\x08\xa1\x21\x9d\x84\x5a\x1d\x4c\xfc\xf7\x4a\x25\xbd\x70\x7d\x2a\xda\x13\xf4\x59\x3a\x06\xf2\x0c\x95\x33\x11\x94\x10\xa0\x9c\xd2\x20\x42\xa5\x02\xaf\xf2\x43\xad\x80\x3d\x3b\x51\x14\x64\xe3\xa2\x48\x93\x59\xf5\xe6\x2e\x61\x19\xca\x77\xe0\xeb\x6b\xe2\x10\x7c\xd2\xac\x99\x6e\xad\xc8\x39\x33\x5e\x03\xab\x42\xc0\x1b\x12\x3f\xe5\x69\xb5\x12\xd3\xcc\xce\x2a\x50\xf3\x79\x35\x72\xff\x1e\x2d\x60\x89\x90\xfc\x60\xdc\xd6\x54\x39\xe8\x17\xdb\x43\x9b\xf4\x4c\x18\x71\x8b\x1b\x65\x39\xd4\xf4\xf9\xb8\xc1\x9c\xb4\xc3\x41\x9a\xba\x79\x32\xe1\xcd\xa6\xb7\xc9\x27\x0d\x85\xe5\x37\xda\x99\xed\x8d\x43\x89\xfa\x1c\x5f\x82\x63\xd8\xbe\xf2\x58\x54\xbd\x19\x17\x83\x14\x9c\xc5\x33\xaa\x9c\xc4\xe4\x28\x82\x09\xa0\x87\x21\x3a\xbe\xcf\xab\x59\xe7\xac\x2f\x02\xee\x0c\x04\xad\x81\x42\xbd\x5d\xb6\x6f\x0f\xa2\x6e\x44\x55\x3f\x4c\xb9\xa3\xda\x7a\x5d\x11\xd1\x5f\x57\xbe\xc1\x14\x03\x9b\x98\x96\x16\x95\x3d\x5a\x2a\xda\x9f\xa3\x4e\x5e\x23\xb3\x5d\x1b\xf3\x72\x77\x83\x6b\x7e\x88\x4d\x4d\x1e\x84\x83\x28\x34\xfd\x94\x2e\x56\x26\xbf\x75\xa5\xd0\xc7\x63\x2b\x26\x62\x91\x07\xd4\x82\x6e\xa2\x75\xc3\x27\x53\xb6\x79\x61\xb1\xca\x13\x91\x27\xa0\x80\xd9\xea\xf8\xae\xc0\x6d\xc4\x66\x42\x96\xee\xa0\x4a\x49\xef\xa9\xea\xde\x11\xfc\xdc\xd3\x73\x8f\xbb\x28\x14\x45\x66\x80\xfa\x14\xad\xd2\x97\xff\x38\xf1\xc2\x3a\x2d\x08\xc7\xfc\x70\x4b\x01\x83\xcf\x52\x29\x1b\xe8\x85\xef\x23\x10\x94\x3a\x80\x4a\xef\x1f\xa9\x47\x9d\x87\x06\x7d\x21\x81\x56\xcd\x76\x3c\xa9\xf9\xec\xc4\x9b\xaf\x74\x3d\x61\xc5\x69\x11\xf2\x27\x2f\x89\x2d\x72\x44\x81\xc9\x8e\xe0\x8e\x01\xd8\xb9\x86\x67\xc7\x27\x74\xd5\xd2\xc4\xf3\x5f\xbd\x12\x9b\xa1\x9d\x51\xe8\xa3\xeb\xb0\xa1\x8e\x91\xdf\x15\x23\xce\xba\x9d\xda\xcd\xec\xba\xcd\x22\x07\xe3\x44\x80\x74\x4a\xb7\xfc\xf5\x4f\x54\x81\x4d\xd2\xaa\xc1\xb2\xbc\x2f\x3d\xaf\x1c\xd9\xbe\xc5\x5f\x6a\xb5\xfe\xca\x41\x0e\x5e\x38\x26\xe1\x13\x55\x64\x7b\xed\xaf\x2e\xcf\x2a\x3e\x98\x4b\xea\x1d\xb0\x67\x46\x80\xf9\x05\xb7\x39\xf0\x67\x45\x2d\x1f\xe9\x8d\xc1\x3c\x8c\x37\x84\xe6\x33\x8c\xfe\x53\x1d\x3f\x09\x08\x98\x29\x1c\xe1\x1f\x50\x9b\x04\xaf\x17\x81\xa4\x30\x39\x36\x17\xa3\x93\xbe\x6b\x0f\x6a\x96\x10\x61\xa5\x74\xda\x82\xd6\x90\x34\x2c\x19\x00\x91\x7a\x56\xa2\xb7\x97\xa6\xb9\xf4\x5e\x6d\x2f\x2c\x3c\xef\x63\xb0\xeb\x81\x22\x32\xb9\x8a\xa6\x30\xb7\xd6\x69\x8b\xcb\x08\x6e\x6b\xf1\xd0\x16\x37\xcd\x11\xd1\xff\x2e\xa5\x87\x5b\xe7\x60\xdd\xa5\xf2\xe7\x5b\x82\x50\x72\x42\xcc\xf9\xfb\x5a\x78\xfd\x5d\x8e\xaa\xa5\xc9\x58\x3d\x18\x47\xd3\xe7\x75\xc4\x4e\xa2\xff\xe4\x06\x3b\xab\x95\x29\x3d\xff\x26\x85\xac\x71\x5c\x44\x23\x1e\x2a\x40\xd1\xfe\x88\xea\xa8\x1e\x51\x1c\x35\x55\x24\x60\x42\x1e\xe8\x97\x19\x90\xdb\x74\xe9\x7c\xdc\xa0\x35\x45\xf3\x96\xe8\x4b\xe2\x62\x7f\x5d\x71\xae\xfd\x7a\xad\x54\x99\xdb\xb7\x67\x5b\x9a\x27\xd8\xcd\x6f\x9f\x55\x64\x55\x67\xb1\x0b\xa5\xee\x53\x13\xce\x8a\x86\x73\x1a\x66\xa6\x18\x07\x37\xd9\x7f\x0a\x0a\x56\x0d\x40\xa2\x40\xcb\x7f\x56\xfb\xbe\x6e\xd4\x7b\xda\xa3\xce\x7e\x8c\xee\x03\xd3\xb0\x95\x9e\x86\xed\x33\x8d\xc5\x07\x5b\x8d\x23\xdf\x72\x10\x39\xe6\x2f\x64\xe8\x03\x36\x0c\xfe\xea\x93\x40\xa1\x04\xa0\x6d\xca\x1f\x0f\xa8\x46\x25\xbc\x6f\x8d\xc2\x30\x59\xda\xe5\xb1\x06\x51\x6e\xa2\x6b\xe1\x13\x05\x90\x1c\x27\x51\x61\x49\x1a\xfe\x0d\xde\x72\x5f\xe2\x4f\x9d\xf4\x45\x75\x45\x88\x03\x7f\x56\x7b\x58\x0f\x02\x35\xb9\x7c\x51\x0d\xcd\xf0\xb4\xa9\x46\x8c\xe0\x5e\xcf\x36\xc1\xe8\x7a\xe9\x9a\x85\xc3\x45\x8a\x82\x77\x8a\xba\xd7\x67\xa5\xd2\xde\xbb\x3e\xbd\xf7\x16\xdb\x87\xe7\x77\xd3\x16\x73\x8f\xcc\xab\x35\xb0\xb8\x2f\xec\xc2\xa6\xa2\x32\xfb\x6e\xe0\xf1\x8d\x77\x54\x59\x00\x9c\x1b\xf0\x43\x37\xa6\xa8\xbc\x09\x07\x4c\xa9\x14\xe2\x9c\x9b\xca\xd0\x73\x96\x83\xbd\xf5\x99\x0e\xc4\x33\xdb\x8b\xa8\xc7\x47\xef\x02\x75\xad\x59\xb2\x69\x7c\x3c\x71\xea\x8e\x66\x44\x8e\x13\x8f\xed\x6b\xb5\xf8\x98\x4e\x5f\xc0\xc2\x92\x9b\x9b\x61\x37\x5a\x33\xb1\x4d\x8a\x59\xdd\x89\xa4\x9b\x46\x92\x79\x44\x73\x56\x82\x98\x13\x4f\x63\x47\xe7\x45\xdd\x50\x19\xa5\x89\x4d\x8a\x7c\x56\x61\xdb\xff\x26\xbf\x6a\xd1\xbe\x6f\x39\x11\x4e\x50\x02\x08\xc9\x7e\x13\x7a\x23\x34\x19\x62\x00\xfc\xd1\x0d\x0d\x5d\x7a\xc0\xc6\x0a\xd1\xeb\xb1\x86\xf9\x9f\xb6\xc9\xf3\x34\x8c\x4c\x61\xb9\x2d\x8a\xdd\x78\x8c\x3f\x88\xaf\xf9\xdf\xf0\x48\x44\x88\x76\xba\xc8\xdb\x1e\x99\x0d\xc2\x9c\xe3\x49\x5c\x56\xf0\xe0\xcb\x0a\x9e\x5e\xa4\x59\x65\xef\x7b\x84\xc6\x46\xbd\x06\x21\x8b\x54\xcd\xaa\xf7\x8d\xce\xfa\xad\x9a\xc7\x4a\x63\xfb\xa4\x87\x06\x7e\x97\x50\x57\xb8\xa7\xab\x0a\x90\x7d\x07\xf5\x07\x2d\xb9\x2a\xbe\x40\x8d\xfc\x72\x44\xc2\x62\x8a\x9a\x30\x02\x3c\x88\x78\x23\xa7\x94\x00\x6e\x3e\xb0\xd9\x06\x5e\x97\x34\xa3\x15\xb0\xff\x8a\xba\xd9\x8f\x6b\x2c\xf0\x35\xfc\x9c\x79\xbb\xa5\x30\x0c\x97\xc0\xf3\x28\x89\x52\x03\x68\x6b\xdd\x64\xb9\x59\x6f\x4d\x15\x92\x85\x26\xa5\x21\x84\x1f\x65\x34\x5d\x07\xbf\x80\x2a\x39\xc6\xd7\xf9\x58\x05\xa5\x23\x53\xd0\x1a\xf4\x98\xe9\x0b\xf4\x50\xdd\x18\xa0\xcb\x31\xcf\xe9\xba\xdc\x39\xc7\xa6\x9d\xd9\x7c\x94\x26\x9e\x79\x9c\x27\x50\x02\x05\x11\xbb\xa1\xf8\xf2\xf2\x71\x37\x2f\xa2\x62\x5c\xd8\x96\x9a\xaf\x3e\xaa\x80\x46\x47\xd5\x80\x4d\x34\x34\x7d\xa2\x48\x76\x2c\x4a\x0c\x66\xe7\x13\x47\x6d\x61\x63\x1b\x16\x19\x69\x4b\xb6\x7c\x02\x00\x14\x10\x1f\x37\xd0\x73\xc7\x69\x28\x84\x38\x8b\x5b\x4f\x50\xa5\x69\xeb\x89\xce\x5e\xc5\x47\x82\x5a\x5a\x7d\xac\x58\x31\xbc\xf8\xf0\xce\xac\xd9\x8c\x7b\x60\xd2\x28\xf6\xe4\xea\x8c\xd4\x42\x0c\x72\x3f\x78\x51\xd5\x7c\xd2\x6e\x6e\xb3\x35\x6e\x31\x23\x6a\xdc\x81\xca\x2a\x9f\x4c\x5e\x8a\x6a\xb2\x5c\x79\x94\x26\x26\x46\x59\x50\xd6\xb1\xef\xf3\xed\xf0\x54\x72\x17\xa7\x27\x37\x28\xd5\x4e\x7a\x06\x34\xdc\x6e\xe8\x1a\x6b\x43\x7a\xbe\x0a\xd3\x3b\xb0\xa6\x87\x4e\xae\x5e\x0e\x6e\x99\x2c\x2c\x38\xca\xe7\xd6\xe2\x21\x8e\x37\xcf\xd6\xcb\xed\x3e\x60\xfd\xa5\x1e\xd3\xd7\x09\xe7\xb3\x6f\xd0\xfe\x73\x25\x56\x38\xce\x23\x30\x7f\xbb\xb8\x4a\x81\xba\x5c\xcd\xb8\xb0\xd1\xbf\xb7\xfd\xf4\x8c\x46\x5a\xae\xfc\x29\xb2\xc7\x28\x12\xdf\x2d\xfd\x62\x7a\x3f\x68\xbd\xf9\xe6\x16\xf3\x1a\xc3\x01\x3c\xdd\x51\x7c\x18\x67\xb4\x8e\xfb\xad\xb2\xf5\xba\x87\x93\x23\xa8\x76\xb4\xba\xae\x8a\x3c\xd3\xa1\x20\x01\xcf\xe8\xa9\x89\x12\x05\x7c\x81\x46\x0e\x38\xad\x7a\x40\xf1\x0a\x80\xfb\x2f\x60\x72\xdb\x61\x2a\xbc\xd5\x06\xf5\x07\x72\x75\xd0\x27\x22\x52\x9f\x9b\x54\xcf\xde\xcd\x20\x54\x06\x84\x19\x78\xe9\xa1\x0a\xef\x47\xb5\x8f\x51\x84\xff\x33\x13\x0a\x42\xe5\x15\x93\xeb\xc6\xfa\x7a\x0a\xb8\x46\xe1\x95\x68\xc9\x8c\x68\xf9\xcd\x4e\xeb\xd7\x16\xd9\x82\x9d\x60\xaf\x84\x48\x61\x06\xd8\x50\xd4\x59\x66\xb1\x58\xb9\xb4\xe9\x92\xa3\xd1\xb8\x1b\x57\xe6\x92\xcb\x08\x2c\x15\x01\x6b\x29\xba\x11\x7e\x9a\x27\x24\xae\xa8\xea\xd2\x15\xb0\x44\xba\x97\x67\xa7\xc0\x0b\x8b\x87\x08\x8e\x30\x4e\xa2\xbc\x98\x55\x66\x7b\x27\xd7\x7c\xa4\x91\xe6\xeb\xa6\xd0\x55\x47\xd0\x70\x43\x51\x4f\x09\x52\xb2\x88\x59\x23\xdc\xe9\x06\x78\x0d\x81\x06\x68\xfc\x52\xfb\x2d\x33\x34\x4e\xfd\xc7\x4d\x51\xe8\x58\xf7\x39\xc5\xc1\xd0\xef\x73\xb5\xce\xc9\xd2\xbb\x11\x4e\x94\x63\x44\x7d\x74\x1a\x01\xb5\xd4\x1e\x27\x99\xe5\x61\x38\x37\xb7\xe4\xb6\xc4\x15\x05\xc1\x5f\x8f\x92\x5e\x0e\xdf\x02\x84\xcd\x69\x32\x7f\x7c\xec\x12\xff\x51\x9c\xce\xe0\x39\x89\x0e\xab\x47\xc8\x5e\xd0\x13\xbb\xd7\xa6\x5c\xcb\xfe\xfd\x95\xfd\x8e\xa9\x0e\xac\x88\xba\xb4\x6b\x52\xe8\xed\xa8\xd7\x8d\x8a\x56\xb5\x82\x1d\x2a\xa2\x5a\xe7\x32\xe1\xe8\xa1\x33\xe1\x4a\x11\xb6\xbc\xde\xf9\xfb\xf4\x85\x7c\xec\x90\x33\x83\x34\x2b\x38\x9c\xc3\x75\xff\x63\x2d\xa1\xf8\x8f\x15\x34\x7b\xc5\xc4\xf1\x13\x5e\x72\xfd\xd3\x52\x11\x6d\x3d\x50\x54\x0a\x77\x15\x1f\xfe\x27\x40\xdd\xa1\xe1\x71\x0b\x93\x16\x7c\x52\x7a\xad\x93\x77\x95\xe6\xcd\x51\xcf\x2b\x6a\x12\x43\xd3\xcc\x2a\xed\xf8\x91\x2a\xad\xfe\x48\x97\x7c\x63\x93\x45\x89\x2d\xe0\x29\xe4\x51\xb4\x9c\x84\x37\x67\x22\x42\xeb\xaa\xa9\xb1\xf2\x91\x0d\x89\x22\x97\x56\x12\x0a\x02\x20\xbc\xd5\x0c\xca\x78\x1c\xdf\x75\x95\x6d\x33\x1a\xd9\x22\x2a\x40\x57\x85\xe5\xf7\x75\xa0\xac\xd2\xc7\xd8\x6a\x82\xbb\xf6\x0b\xe6\xf8\x54\xd2\xf0\xe6\x9b\x04\xf1\x9b\xf1\x12\x29\x3f\xa0\x9f\x44\x5a\x72\x4d\x81\xa9\x36\xcb\x17\x75\x43\x24\x1f\xc7\xd5\x1e\x9b\x51\x84\xe3\x9b\x0a\x23\xcf\xa8\x36\xe6\xc2\x71\x36\x3e\xb3\xb9\x2d\x08\x22\xcf\x09\x0a\xd2\x1b\x26\x34\x28\x15\xfd\xcb\x1e\xe0\xa6\x44\x1d\xbc\xe5\xe8\x36\x77\x76\xd4\x10\x33\x0f\xd8\x0a\xa7\x89\x1f\xa2\x7c\xaa\xd3\xa0\xdf\x70\x60\xf9\xc0\x13\x3e\x62\xba\x55\x2a\x99\x3b\x9e\x6c\xc1\xc5\xdf\x07\x2f\xa0\x93\xe6\x53\xd3\xc9\xd5\x5a\x71\x71\xc8\xf2\x01\x17\x87\x78\x40\xf3\x56\x93\x69\x5b\x33\xf1\xd8\xb8\xd4\x45\x12\xf3\x96\xd3\xa8\xf8\xf5\xf2\x39\xc5\x7e\xb4\x16\x71\xbe\x29\x50\x7d\xba\x49\x3e\x69\x82\x6c\x9b\x21\x24\xc8\x68\x53\xb8\xe1\x47\x3f\x08\x19\x68\x1e\xd9\xe1\xc6\x9c\x27\x06\x86\x5a\xa8\xd3\x10\xac\xf6\xb2\xe3\xd3\x73\x35\x9d\x1b\x8a\xb2\xe8\x63\x15\xf7\x99\x2c\x2a\x06\x43\x5b\x44\x61\x4b\xf1\x5d\xb0\xda\x2b\x9f\xa8\x60\x61\xe1\xd7\x0e\xcc\xf8\x0a\x14\xe3\xa9\x90\x2e\xde\xa7\xcb\x10\x55\x3c\x59\xe7\xfd\xcc\x24\xc4\x4d\xaf\x47\xc9\xe9\x1e\x61\x67\xef\xe3\x97\x3c\x08\x48\xac\xf3\x30\x7a\x9b\x7d\x0f\xaa\x5a\x68\xec\xf1\xf1\xd4\x1e\xf8\xc5\xf6\x8a\x35\x42\xe3\x82\x64\xe5\x3c\xbe\x99\x4f\x9a\xb8\x2e\x40\x9d\xdf\xf2\xa1\xf4\xfd\x40\x85\xd2\xf7\xcb\x97\x3c\x76\x22\xcc\x6c\xf5\xea\x0d\xc7\x67\xa8\x96\xde\x53\xe3\xa1\xf7\x14\x98\xbd\x30\x59\xb4\xb2\x92\x13\x08\x4d\x02\x34\x7a\x2d\xf0\x41\x33\x14\x3d\x08\xab\x84\xd8\xd1\x3c\x49\x8b\x82\x45\xa4\x90\xe1\xfc\x5f\x0a\xf4\x73\x5a\x11\xa0\x9e\x52\x69\x42\x3f\x4b\xd7\x6d\x96\x2b\x99\xcb\xdb\x0a\xf1\x7a\x7b\xca\x71\xbd\xf9\x66\xf5\xff\xab\x6e\xa1\x21\x38\x82\x43\xe2\x63\x95\xae\xd3\x6c\xeb\x1a\xf1\x4d\xea\x59\x72\x7e\x67\xa2\xad\xd1\xf2\x42\x80\x0d\xd3\x7c\xed\xdc\x86\xe3\xac\x2e\xae\x8c\x2e\x12\xb7\x9e\x75\x8b\x6c\xb3\xa1\xf4\x76\xb0\xfd\xa7\x7f\xf5\xbf\x3e\xf0\xab\xbf\xbc\x34\xab\x66\x94\x2f\x2b\x5a\x0a\x70\xe4\xe0\x3d\x3f\x31\xa9\xe2\x37\x19\x1e\x77\xcd\x9b\x68\x18\xc5\x26\x8b\x37\xe6\xbc\x83\xdf\x8b\x80\x12\x85\x95\xcb\x4a\x62\x02\xc9\x3d\xab\x2c\x6b\xe1\x88\x4b\x6e\x51\x87\xa6\x18\xa4\x71\x14\xce\xe8\x0a\xf3\x84\x3e\x87\xc2\xcb\x4d\x3d\x51\x78\xdd\x13\xfd\xd9\xac\x88\x56\x68\xc2\x8c\xf6\x03\x0a\x02\x3f\xad\x89\x6f\x28\x99\xb6\x1b\x6a\xe6\xca\x7e\x7b\x2c\x63\xdd\xcc\xdb\x18\xf8\x29\xa5\xba\xc4\x68\xcf\x1a\xf2\xda\xf8\x75\xb0\x52\xf2\xf1\xa4\x81\xa6\x30\x1f\x38\x46\x12\x29\x64\xb5\x1c\x8d\xe7\x03\xb5\xf7\xb3\x08\x72\xcc\x02\x4d\x52\x30\xa5\xa9\xfc\xf8\xf5\xc5\x43\x6d\x13\xa7\x49\x7f\x96\x5c\x80\xc0\x6d\x2b\x73\x8b\x06\xcc\x51\x32\xc9\xd8\x3b\x08\xa7\x85\x3a\xb5\x89\x9a\x01\xa4\x1b\x69\x26\x35\x7d\x7c\xee\x6b\x3c\x65\x3e\x69\x82\xe9\x75\xa3\x7e\x5f\x74\xb9\xf1\x67\xb7\xf4\x67\x6e\x39\xb0\x4b\x2f\x2a\xc2\x41\x4b\xc9\xa9\xfe\x0e\x57\xfa\x44\x0d\xd2\xbf\x89\x64\x3c\xec\x32\xb3\xa6\x94\x2f\xe9\xfd\xa1\xa6\x77\x07\x3b\xdd\x55\x26\xab\x35\x06\xc7\x33\xd3\x51\x80\x14\x85\x2f\xc8\x2c\x90\x8a\xf9\x20\x1a\xcd\x78\xb2\x2e\xc0\xc0\xd0\x36\xba\x5f\xea\x01\x42\x15\xc1\x5a\xd3\x13\xe9\x5a\x91\x72\xf7\x71\xd4\xb9\xa6\xa1\x99\xd0\xc6\x45\x9a\x98\x96\x46\x5e\xaa\xaa\x7b\x13\x74\xb1\x5d\x45\x38\x11\xf3\x2e\x61\xd3\xbf\xa7\x26\xda\xde\x53\xdd\xbc\x2a\x22\xce\xb8\xc0\xa7\x4a\xa8\xec\x4e\xf8\xa4\xc9\x48\x64\x36\x8c\x4d\x34\x9c\x55\x33\xc3\x3b\x3b\x75\x61\x45\x0f\x63\xfd\xaa\xf4\xaa\x5f\x1a\x38\x92\x5b\x4b\x50\xb1\xc5\x43\xfc\xac\xbe\x83\x9c\x97\x4f\x14\x70\xa4\x9b\xa6\x39\x54\xb5\xaa\x8c\x0b\xbd\x1e\x94\x18\xf9\x78\xca\x0e\xed\x5b\x02\x73\x8f\x83\xfe\xa0\x7f\xda\xa2\x04\x06\x6f\x0c\x99\xa0\x04\xdc\x8e\x5e\x6b\x14\x15\x45\x6c\x67\x14\x8b\xc8\xc5\x52\x07\x7d\x7e\x32\x63\xb3\x2e\xdf\x6d\xf2\xe7\xaa\x5b\xe1\x5e\x5e\xe0\x4b\xfb\x0c\xa1\xe2\x61\x36\x44\xc8\xce\xb5\x56\x4b\x5d\xb6\x18\xbd\x58\xee\x8f\x69\x15\x42\xc4\xd1\x40\x71\xdc\xd7\xb4\x19\xa3\xd2\x87\xbc\x97\xf5\x23\x87\x2e\x35\xfa\xfe\x8f\x54\xaf\xe9\x54\x50\xe3\x33\x5f\x58\x74\xc5\x66\xb9\x7f\x13\x86\x69\xd6\xcb\x67\xb1\xb7\xd0\xd1\xbd\x89\xf5\xc0\x76\x93\xbe\xba\x36\x51\xcf\x91\xbc\x22\xc3\x10\xce\xe6\x19\x4f\x9c\x74\x39\x50\xfa\x0c\x4f\x00\xe6\x04\x67\xb9\xa3\xb3\x57\xb9\x30\xd3\xb5\x32\xfd\x8b\x06\x23\xef\x6c\x3e\x99\x9a\x7a\x3e\x3c\xdf\xce\xa2\x10\x63\x65\x8e\xce\x59\x71\x3b\x37\x8a\x8c\x9a\x2c\x8e\x0c\x09\xe8\x71\x84\x20\x05\xf8\xea\x5b\xf8\x78\x8a\x53\x7f\xf1\x10\x55\xb2\xfa\x09\xf6\x3f\x9b\x1f\xd7\x2b\xf5\xde\xee\x48\xb0\x47\x2d\x8c\xff\xec\x45\x5a\xb5\x4c\x16\x8f\xca\x29\xea\x59\x47\x03\x85\x04\xff\x5f\x4a\x4d\x09\xc6\xbb\xc9\x05\x2e\x4e\xb8\xf3\xbc\x2a\x4d\x60\x35\x23\x76\xe0\x02\x82\x28\x15\xab\xe9\xc3\xeb\x84\xbb\x43\x88\x7f\x24\x50\x64\x3d\x17\x4a\xd5\x50\x04\x23\x2b\x2c\xd1\x43\x1a\xb6\x12\x7c\x51\x8d\x3e\x4d\x89\x50\x7d\xa5\x8c\xca\xec\xc4\xb3\x15\x7f\x30\x35\xd8\x5d\xa5\xdf\x84\xc4\x8f\x6c\x12\x82\x3d\xce\x55\x01\xd5\x98\xc0\x5e\x57\xbc\x4a\x7a\x63\xa5\x90\xc4\x8a\x31\x2a\x15\x3c\xad\x54\x56\xcf\x36\xed\x7d\xfb\x76\x38\x30\x49\x1f\x75\x7c\x38\xbd\x39\x04\x10\x12\xdf\xfb\xbd\xff\x50\xe1\x57\xf3\x38\xcd\xbb\x36\x13\xf2\x66\xb9\x4a\x3d\xc0\xa0\x86\x39\xd6\x6d\x2f\xb1\x79\xcf\x6c\xec\xa2\x67\x8f\xd8\xe4\x9e\x9e\xc9\xde\x49\x3d\x78\x04\xd9\x3b\x89\x26\x8a\x95\xbc\x4b\x25\x23\x5a\x53\x3a\x9f\x72\xcd\x4b\x4b\x07\xdb\x71\x15\x35\xce\xd2\x32\x62\xe9\x21\x18\x0e\x84\x80\xb3\x1d\x4f\x22\x7b\x5e\x3b\xb7\x8b\x6a\x6e\xb4\x6f\x93\x22\x16\x5d\x62\xd8\xa5\x1d\x1d\xfa\x12\x3e\x99\xbc\xec\xb9\x1d\x93\xc2\x66\x85\x89\x12\x41\xf2\x36\x29\xfc\x35\x14\x35\x7a\x59\xea\xa7\x22\xe5\xef\x94\x7a\xe8\x05\x07\x6f\x5e\xaf\x3c\x8f\x57\x0d\x80\x33\xdb\x31\xf1\x5e\x6e\x47\x83\xbc\xf2\x72\x7b\x98\x8e\x73\x5b\xd0\xf8\x91\x52\x3f\x2e\xfd\x28\xcd\x45\x8d\x73\xcd\x73\x13\xc5\x26\x29\x70\x3d\x78\xbe\x08\xaf\xf8\x58\xe1\x94\xd2\x30\x1c\x57\x71\xb9\x53\xc4\xc2\x1c\xb5\x70\x63\x7c\xb3\x56\x40\xa0\x3a\x7d\x14\x47\xc5\x06\x29\x90\x81\xa8\x88\x87\x2d\x05\xab\x56\x7d\x13\x1c\xd9\x2d\xba\x3e\x00\x27\xde\x9f\xea\xf5\xbc\xd2\x4e\xd2\x04\x34\xda\xa8\x8f\xfe\x9e\x9a\x08\x65\xc2\x30\x19\x00\x6d\x29\x46\x9b\x97\x15\xfc\x6d\x48\x96\x8c\xe2\x2d\x35\x61\x85\x55\x2b\x55\xf4\xbd\xba\x75\x30\xce\xba\x86\x40\x59\x6f\xb0\xf3\xbe\x0b\x0b\x8f\x2c\xfd\xa2\xd2\xe5\xfb\x04\xb6\x14\xa1\xc0\x47\x35\xc6\xc6\x0d\xb4\x3d\xa5\x11\xdd\x72\xd3\xd6\xf7\x03\x0d\x93\x6a\x28\x9e\x8f\xb2\x74\x98\x7a\x95\x4c\x57\xbe\x51\xb7\xb7\xfd\xed\x2f\xcf\xb7\x47\x36\xcb\xd3\xc4\x48\xdb\xdd\xf1\xa5\x3a\x29\xb6\x1f\xa9\x31\xc6\x6e\x26\x28\x44\x78\xaa\xbb\x9a\xc1\xe6\x2e\xb0\x2c\x70\xc8\xc7\x61\x12\xf9\xa4\xdc\xde\x37\x5d\x9e\x6f\xff\x7c\xae\x73\xed\x09\x46\x2c\xf8\xa4\x89\x05\x62\xb8\x51\x0c\xb8\x8a\x25\x00\x75\xdf\x4e\xbc\x3c\xd5\x73\x5c\x9e\x27\x76\x3e\xb0\x6c\xc0\xe1\xf2\x90\x04\xa0\x9a\x4c\x83\x8d\x52\xc7\xed\x29\x2c\xe3\xa1\xd7\xda\xfd\x2c\xb2\x6b\x86\x48\xf4\xb5\x0c\x1f\x5d\x81\x64\x1f\xcf\xf9\x2a\x31\xe9\xa0\xce\xf8\x95\xb2\x19\xa8\x22\xc6\x7d\x25\x99\x32\x3b\xd1\x8a\x3c\x29\x5d\xa0\x4c\x8d\xb7\x34\x63\x92\x1f\xf5\x98\xd6\x4b\xa8\x82\xd8\x81\xc9\xfa\xf6\xb1\xa4\xb2\xdb\xfd\xec\xf2\x7c\x1b\x2e\xd6\xc4\xd1\x3b\x62\x4e\x90\x11\xbd\x1d\xf8\xec\xe8\x6d\x17\xb3\x84\x26\x33\xa1\xc1\xcd\xa3\xea\xc6\x21\x00\x9f\x4c\xc5\x0c\x87\x5e\xab\x2c\xfd\x3a\xdd\x10\x3b\x01\x2d\xcb\x5c\x7a\x5c\xf9\x45\xa7\xd1\x95\x99\x11\x6e\x01\xbf\xce\x31\x11\x9f\x34\xc4\xc8\x07\xdb\xb9\xf5\x97\x2f\x08\x2f\x35\x57\x76\xab\x49\xee\xa1\x9f\x66\xab\x1b\xec\x7d\x1c\xab\xae\x67\x2d\x3a\xef\x3a\x3c\x3d\x9b\xdb\x8c\x6b\x81\xae\xc2\xea\x12\x96\x39\x32\x73\x28\x46\x4f\xb3\x6e\x1e\x7a\xad\x6d\x8a\x41\x5c\xc5\x59\xbc\x4e\x1d\x42\xdf\x05\xad\x9a\x3c\x32\xcc\x2c\xb7\x19\x85\x7e\xbd\xda\x80\x7c\xac\xe6\xa0\x56\x0c\x4f\xcc\x22\x40\x40\xdb\x90\x8f\x5d\x52\x6d\x7a\x6f\xa5\xe3\x8c\xd4\x8b\x5b\xda\x70\x2b\x52\xb0\x69\x65\xdd\x03\xaf\x1d\x24\x9d\x25\x67\x33\x90\x7c\x23\xe9\xe2\xe3\xf2\xc5\xc8\xf5\xf7\x42\xdb\x1b\x67\xce\x54\xe8\x1a\x84\x20\x1e\xd4\xc0\x67\x5e\xa0\xda\xcf\x94\x9c\x4a\x31\xfd\x46\xd3\x6a\xa6\x9e\x4c\x38\xab\x18\xb0\x81\x1f\x45\xec\xb4\xa7\xe3\x23\x57\x2e\x47\x08\x91\x9d\x67\xff\xe8\x66\x2c\x19\x25\xf0\x00\x84\x00\xc2\x92\x4a\xfb\x1d\xa1\xdf\xc7\x9a\x2c\xed\x22\x83\x08\xb4\xdf\x73\x9a\x3d\xd5\xc2\x92\xa9\x83\xe9\xfe\xc7\x81\xf6\x28\xb3\x2b\x2c\x01\x23\x28\x72\x45\xab\xb6\x59\xbe\xe4\xae\x2e\x1a\x0e\x6d\x2f\x32\x85\x65\x51\x38\x51\x3b\xf4\xcb\xeb\x62\x93\xf7\x4f\xd7\x6c\xd6\x1b\x23\xe4\x12\x72\xe0\xea\xe9\xe3\x18\x83\xe4\x38\xbe\xad\x48\xb8\x57\x32\x9b\x84\x83\xa7\x34\x35\x27\xe5\x2b\xae\x04\xe1\x32\xe9\xef\xe0\x7a\x19\x34\x87\x08\xd7\x65\x32\x8e\x14\xf8\x66\xe0\x69\x33\xf9\x49\x22\x44\xbd\xc4\x0f\x4f\x06\xff\x55\x4d\xec\x92\x96\xa9\xb6\x79\x81\xfa\x1c\x32\xc6\xef\xe0\xc9\xf2\x89\x9a\x0f\xa3\x22\x8c\xe3\x90\xbc\xa7\x67\x66\xee\x35\x3d\x9e\x2c\x8d\x63\x62\xae\x56\x8a\xed\x81\xcf\x46\x4f\x37\xd0\x21\x1d\xac\x2c\x67\x12\xda\x38\x4e\x33\x0c\xba\x6b\x06\x5b\x3e\x6e\x62\x90\xcd\xd3\xb1\x60\x69\x61\x64\x51\xcc\xe0\xe3\x26\xbd\xad\x70\x23\x8c\x5d\xc0\xed\x70\x66\x4b\xa2\xe1\x7b\x5f\xc9\x16\x4e\x17\xfd\x5e\x69\xdb\x71\x96\x76\xd3\xa4\x97\x73\x89\x8d\x39\xfc\xf1\x90\x65\xbe\x56\xc1\x61\xa6\x2b\x9d\x0b\x8b\xed\xdc\xc6\x3e\x24\x44\x9c\x7c\xaa\xf4\x90\xf7\x53\x5a\x70\xc8\x9a\xc2\x26\xaa\x99\xf7\x28\xf0\x84\x84\x8f\x1a\x60\x3d\xe0\xfc\x68\xf9\x3a\xe6\x95\x40\x75\x54\xa7\x0b\xa1\xcb\xf3\xed\x81\x49\x7a\xf1\x76\x5d\x9a\x1a\xba\x71\xaf\x6b\xb1\xac\x44\x49\xf5\xa2\x58\xa8\x47\xe9\x24\x38\xc5\x5e\x47\x86\x38\x5e\xeb\x02\x18\x24\x22\x17\x2d\xa7\x8a\x41\x45\xff\xad\x73\x53\xf6\xba\xb2\x7e\xd4\xff\x19\x32\x39\x0b\x32\xea\xd3\x78\xa2\x7c\xa2\x49\xc4\x7a\xe3\x98\x87\xe8\x45\xf0\x8b\x5e\x84\x48\x81\x29\x7c\x76\xbc\x6e\x36\xf2\x27\x95\x8a\xd6\x51\x45\x6f\xc9\xd8\x7a\x86\x3c\x63\xfb\xa1\xd0\x7a\x15\x0f\x02\x35\x9d\xdd\x94\x7f\xc8\x64\x92\x9f\x7e\x79\x62\xe2\x67\x87\xb7\xd4\x2c\xdc\x7d\x4d\x67\x03\x32\xc4\x5d\xad\xed\x4a\xd0\xc2\x66\x4e\x15\x21\xc7\xbb\xe6\x09\x85\x6f\x50\xf5\xc2\x09\x49\x3b\xea\xb9\x07\xee\x41\x9b\x5e\xef\x49\xa5\xdf\x72\xa6\xac\xa1\x26\xe8\xab\x84\xe9\xca\x07\xeb\xa8\xe7\x0a\xb1\x8e\x4a\xa9\x59\xf5\x42\x20\x82\x2d\xa7\x28\xb0\xa9\x00\x18\xcf\x74\x3c\x4b\xfb\xb8\x27\x8c\x07\x28\xc3\x7c\x56\xaa\x71\xbb\xcf\xa6\x1c\xcb\xc2\x42\x7b\x48\xe0\xdd\x59\x8f\x4f\x38\xa7\xa1\xf2\x3b\x3a\xbe\xb1\xff\x29\x5d\xa5\xd0\x17\xa9\x01\xab\x41\xb6\x91\xc7\x36\xc3\x74\xa4\x34\x58\x75\x34\xe3\x29\xa0\x8f\xaa\x70\xe1\x62\x4d\x71\x17\x2f\x5a\xe4\x77\x9f\x53\x74\xf2\x5d\xde\x0f\xd2\x43\xda\x54\xf0\xc3\xcd\x26\x4d\x9d\x95\x34\x0b\xb9\x67\x2f\x8e\xca\xc3\x8a\xf8\x7d\xc2\x27\xe8\x81\x9e\xb5\x28\x8d\x6d\x51\x98\x27\xe8\xa7\x10\x99\xff\x66\xe9\xb9\x18\xef\x95\x6a\x42\xe9\x76\xa0\x86\x98\x41\xea\xca\x63\x8c\x8a\x94\xf3\xa8\x56\x2e\xe3\xc6\xa3\x74\x77\xfc\x0d\x86\x26\x8f\x92\x74\x4e\xf5\x28\x6f\x60\xfd\x89\xc3\xa5\xcf\x61\x09\x7c\xa6\xd4\x00\xcf\x04\x9e\x6e\xec\x4c\x9d\x9d\x2c\x2b\x5e\x84\x45\x74\x2d\x71\x5f\xcb\xc2\x48\x3f\xec\x03\x73\x80\xe0\x95\xfe\x36\xdd\x05\x12\xab\xab\xd4\xf3\xe4\x82\x8d\xd2\xe4\xb9\x54\xee\xac\x89\x12\x2f\xea\x89\xe8\x03\x1e\x9a\xf7\xfa\xe2\x21\x47\x1d\xe7\x47\xb9\x6a\x82\x9d\xf7\x03\x4f\x8f\xc0\x84\x99\xa8\x0a\x9e\xd6\xdd\xe1\x7f\x86\x92\x03\xb6\xe2\xc9\xc0\x57\x6d\xff\x1e\x83\x78\xb8\x3b\xa2\x7c\xfb\xc8\x26\x06\x63\x59\x07\xb8\x06\x72\x9c\x9d\x30\x9f\x4d\x2d\x99\x85\x85\xf6\x60\xdc\xb7\x1c\xb7\x39\x46\xb3\x25\xdf\x59\xf7\xd5\xf4\x38\x4d\x7a\x69\x82\x28\xca\x01\x63\xaa\xdb\x45\xdb\xed\xba\x42\xf2\xdf\xa1\xa0\x80\xff\x3b\x05\xb9\x8e\x6c\xc5\xb5\xa2\x4e\xd7\x6a\x5b\xbe\xf1\x5f\x14\x51\x31\xee\xd9\x39\xfa\x1d\x90\x90\x31\xe2\x11\x0b\xf3\x3c\x2d\x4c\x47\xe3\xea\xd0\x29\x5f\xd0\x77\xa3\x9a\x3b\xd7\xf1\x64\x34\xd9\x5a\xca\xe4\x05\x4c\x8d\x47\xb7\x27\x34\x79\xdb\xa6\xb3\x7f\xe5\xf5\xf6\xfe\xfd\x78\x80\x5a\xda\x5b\xe4\x96\xbc\x1d\xcd\xd2\x70\x55\xb2\x3a\x11\xda\xa1\xfb\x81\xaf\x3a\xa9\xb8\x74\x3e\x51\xd1\x4e\x1c\x25\x36\x6b\xd5\x49\x04\x35\xd9\xe0\x74\x20\xd9\x5e\xc9\xcc\xb8\x3f\xe0\xa2\x0a\x76\x1a\xfa\x1d\x7c\x3c\xd5\x8b\x97\x09\xa5\xa1\x49\x36\x9e\x52\xf3\x63\x88\x08\x91\x9f\xfe\x59\x52\xcf\xe1\x51\xe4\xba\x54\x86\xea\x96\x3c\x39\xa9\xc3\xc5\x68\x0d\xe3\x52\x3f\xa2\xb7\xe0\xec\xb9\x1b\x8f\x7c\x61\x42\x1b\x18\xf5\xa7\x2d\xc5\x8f\x6d\xf2\x3c\xca\x0b\x93\x14\x79\x8b\xfe\x42\x06\x00\x7d\x64\x75\x4a\xf9\xc9\x7c\x3d\x4a\xfa\xf9\x2c\x2d\x2f\x9e\xd4\x28\xbd\xa2\xc0\x29\x45\x70\xf7\x37\x4b\x0f\x01\xbd\xda\xf0\xfc\xde\x68\x63\x36\x15\x51\x0e\xa3\x28\x02\x0f\x51\xd8\x6c\x88\x1d\x97\xdb\x49\x5a\x44\x3c\x99\x24\x80\xa5\xea\xe7\x45\xb3\xdb\x27\xc5\xff\x4a\x99\xd1\x22\x43\x09\x6f\x17\xf6\x1c\xea\xe1\xa7\x55\xc7\xe9\x94\xea\x49\x9e\x2c\x15\xfd\x15\xec\x7a\x4d\xfc\x9d\x3f\xad\x9f\x60\xd7\x54\x1b\x50\x38\x42\x50\xef\xb9\x8d\x5d\xc4\x27\x4a\x30\xae\x97\x45\x14\xdd\x11\x80\x06\xf6\x0f\xf1\x81\xa3\x1a\x5b\x9e\x77\x80\x68\x55\xb8\x79\xba\xd3\x30\xdd\x91\x87\x54\x49\xe6\x10\x17\x59\x3e\xf7\x17\xf8\x64\xaa\xce\xf6\x8b\xed\x51\xcc\x3c\xde\x22\x35\x50\xd9\x01\x11\x17\xa8\x35\x64\x7b\x1b\x33\x6a\xcb\xdd\x09\x54\x03\xe9\xa4\xaa\xce\x5d\x6c\x98\x07\x38\xd0\x1e\x44\x85\xe6\x75\xbc\xa7\x37\xd4\x43\x84\x4d\xfc\x2f\xf4\xf4\x85\x93\xcc\x97\xae\xf2\x6f\x99\x6f\x61\xcb\xa3\xfe\xd3\x9a\xe0\xfd\xf1\xd9\xd4\xb4\xf7\xd2\x52\xbb\x48\x0b\x13\xcf\xf8\x92\xf6\x55\x35\x3a\xf7\xef\x68\x41\x4a\x42\xe6\xc7\x5e\x90\x0f\x66\xb6\x07\x0b\xca\x32\xf1\x0a\x03\x7b\x9f\x6c\x3c\xbe\xe4\x7a\xa9\xd8\x88\x37\x35\xf9\xd0\xe7\xe4\xab\x44\x64\xbe\xe5\xa8\x67\x2f\x4f\x15\xaa\x16\x0f\x69\xf4\x8a\x87\xeb\x81\x1e\x92\x8f\x7d\x4d\x67\x23\x29\x06\x91\x51\x99\xd8\x17\x5a\x27\xee\x8b\x29\x66\x94\x57\xda\x03\x9b\x75\x35\x7d\x0e\x46\x06\x04\x26\xe9\xfb\xf4\xb7\xd4\xe4\x63\x37\x7a\xc7\x64\xcc\x9b\x80\x38\xf1\xa8\x52\x28\x3f\xaa\x18\x01\xa2\xa4\xb0\x49\x6e\xe3\x1a\x43\x4f\x5d\x59\x8c\xde\xb4\xe0\x68\x1b\xa2\xa1\x28\x09\x07\x0c\x93\xe6\x7a\xf0\x3d\x2c\x5a\x3e\xa9\xb2\x4b\x57\xae\x2f\x5e\xac\x1e\xbf\x08\xaf\x7a\xf2\xd6\x9b\xec\x42\x51\x14\xfe\x1e\x85\x07\xa8\xe3\x71\x0b\x88\xa7\x97\x75\x70\x05\xda\x84\xad\x73\xea\xd6\x9e\x9d\x28\xc8\xc3\x39\xa2\x26\x70\x28\xe6\xe5\x79\x4e\x8c\x99\xff\x5c\xe8\x42\xa9\x6a\x2a\x73\x31\x14\xaf\xc0\x05\x7e\x46\xef\x9d\x1f\x7a\xa0\xc4\x94\x4e\x04\x0a\x12\xfc\x29\xf6\x11\x33\xd6\x29\x6a\xb3\xe7\xa6\x12\xd2\x7d\x4b\xed\x5e\xb4\x56\xc5\x8e\x6a\x06\x08\xed\x07\x3e\xae\x45\x59\x79\xb1\xb1\x5b\xb1\x9e\xd2\xba\xc5\x5d\x9e\x28\x6b\x70\x25\xd5\x6c\x80\x89\x73\x42\x23\x95\x61\x77\xba\x77\x6e\xd4\xe6\xb2\x52\xc8\x7b\xcb\x66\xd4\x67\x54\x20\xbb\x13\x41\x6d\x80\x5d\x2a\x85\xc5\x60\x9c\x68\x85\x71\x98\x59\x11\x3a\x90\x05\xde\xb5\xb1\x57\x91\x45\xb4\xf9\x9b\xf4\xd3\x7c\x3c\xe5\x3b\x5e\x27\x1e\xa3\xb5\x54\x60\x53\xae\x78\xab\x26\xa3\xfc\x58\x6a\x1c\x11\x9e\xa9\x36\x04\x28\xee\x51\x4d\x5e\x6c\x69\xb9\xa8\x81\xcd\xec\x0a\xcf\x4c\x1f\xd4\x54\x58\x4a\x8d\x7a\xa9\x46\x7f\xb5\xe8\xba\x25\x2f\x68\xa4\x62\x61\x93\xea\xd6\x7c\x33\x55\xcb\xa5\x5c\x50\xc0\xbb\xdc\x3a\x5e\x26\x07\x9c\x3a\x2c\xcc\x31\xa7\xb5\x1c\xff\x38\xc9\x77\xd7\xa8\xea\x3d\x97\x1e\xc7\xf3\x52\x8f\xf4\x75\x26\x1e\x22\x45\xc0\x7e\x9e\xfb\xab\x30\xea\x60\xa5\xc2\xe7\x1f\xa8\xc2\x42\x11\x25\xab\x9c\x64\xb3\xa6\x46\xa9\x3a\xd5\x97\x83\xed\xb5\xea\xca\xe2\xdb\xa4\x1f\x25\xd6\x12\xef\x8d\xfe\x0d\x7e\xd0\x12\xac\xbd\x54\x67\x25\x8b\x48\x93\xa6\xa5\xb1\x3b\xf4\xd8\x05\xd4\xa3\x17\xf8\xa8\xf8\x16\xde\x89\xc0\x9f\x14\xd9\x16\x2a\xd7\xfc\x0f\x81\x62\x66\x7e\xa8\xe2\xbc\x61\x94\xa4\xb8\x2b\x44\xb0\x0f\xe9\x7d\xf0\xb1\x96\xc7\x2f\xd2\x70\x35\x7f\x4e\x8d\x8c\xde\x0d\x14\x47\xda\x8e\x89\x87\x15\x5c\x2e\xd5\x76\x3e\x01\x54\x43\x8d\xe6\x1b\xfe\xfb\x7a\xe9\xe9\x3b\x98\xf0\x41\xca\xb1\x64\x1b\x50\x2a\xf8\x09\xb0\xf4\x4c\xb9\x4a\xb6\x01\x99\x29\xf8\xc6\x35\x6f\x0b\x3e\xc0\xf5\x3b\xa7\x11\xe2\xb4\x12\x7f\x30\xb5\x6f\xde\x7c\xb3\x9d\x59\xd2\x64\x52\x62\xaa\xd0\xc4\x14\x4a\xaa\xa7\xfd\x3c\xe1\x88\x34\x28\xd1\xdd\xb9\x4e\x03\x09\x48\xb2\xfe\x09\x6e\xca\x0d\x6b\x56\x31\x23\xc0\x46\xdf\x57\xa1\xd8\x56\xe0\x11\x57\xa7\x55\x55\xf8\x0f\x34\xbb\xfe\x43\xf2\xc8\xc0\x03\xec\xa5\x59\x70\xac\xd0\xef\xd1\xda\x17\x1d\x54\x15\x1f\xb6\x26\xf4\x74\x55\x43\x7e\x99\x13\xbc\x9f\x60\x25\x20\xcb\xb8\xa7\x61\x1a\x73\xc0\xec\xe2\x15\xb3\x06\x25\x8c\xba\x90\x70\x88\x25\x55\x84\x15\xd3\x02\xf5\xcb\xf3\xed\x38\x4d\x57\x05\x0f\xe8\x52\x1e\xd5\xbe\xa1\xcf\xe3\x49\x3e\x54\xb2\xdd\xab\x69\x91\x76\xc7\xab\x51\x0d\xa5\x75\x3d\x50\x28\xad\xeb\xe5\x37\x55\x53\x72\x64\x33\x6e\xfc\xa7\xd9\x8c\xd2\xac\x38\xad\xa6\xc6\xf9\xc7\x04\x32\x3c\x3d\x7d\xb7\x08\x71\x56\x1a\x36\x52\x00\xc6\x8b\x2a\x2f\xa3\x16\xb1\x6c\xc4\x30\x4d\xd2\x61\x64\xf3\xd9\x1a\x16\xfc\xf0\x3c\x4f\x8c\xfe\x2b\x55\x9c\xfb\xac\x86\x0b\x7f\x5e\xe1\xc1\x8a\x88\x74\x34\xab\xb7\x82\xa5\x0d\xed\x11\x3e\x0e\xa4\x2d\x61\x6c\x96\x26\x66\x5c\x44\xa1\x89\x77\x3c\x2e\x49\x1a\x98\x78\x85\xd4\x1d\xf0\xfb\xa8\xc1\xc2\x63\xcd\x10\x96\x40\x06\x82\xe8\x39\x8a\xc4\x87\x8e\x5e\xbb\xe3\xe2\xe7\xe8\x29\xa1\x7e\x70\x93\xbc\xa1\x93\x30\x5c\x5a\xf2\x44\xdc\xd5\x37\x20\xd4\x7b\x18\x78\x55\x91\x07\x00\x61\x21\xf0\x38\x4d\x95\x0d\x74\x03\xbf\x0f\x4b\x00\x6f\xb7\x13\xfa\x1d\x6e\x62\xcf\xa9\x16\x7e\x1e\xb4\x7e\xf9\xaf\xf1\xda\xb8\x85\x45\x8c\xb5\xc1\x25\x43\xa6\xed\x0d\x3c\x69\x29\x37\x2a\x85\x67\xad\xb2\xeb\x5c\xb4\xd1\xc2\xf1\x9f\x94\xaa\x47\xc3\xf3\x87\x08\x5e\xc0\x73\x00\xe7\xfd\x8f\x60\x87\x70\x57\xc7\x68\x9f\xa1\xbc\x2e\x02\x41\x38\xfb\x0c\xb6\x47\xc0\x32\x4a\xff\xd2\xe6\xa3\xa8\xb0\x4f\xd1\xa5\x62\x0d\xbc\x87\x48\x07\x35\x68\x56\x21\x46\xb0\xfa\x65\xad\x98\x43\x3b\x9f\xe7\xa1\xfe\x5f\xca\xfe\x34\x46\xb2\x2b\xbb\x13\xc3\xab\x22\x33\xab\x58\x2c\xb2\xb8\x77\x6b\x30\x83\xbf\xa2\xe7\x2f\x9b\x23\xb8\x41\x0b\x96\xe0\x19\xcb\x1f\x5e\x38\x2b\x5b\xec\x2a\x4b\xc9\x42\x56\x35\xa9\x69\xfb\x03\x6f\xbe\xb8\x19\x71\x99\x2f\xde\x8b\x7e\x4b\x66\x25\x3f\x0d\x0c\xc3\x18\xd8\x80\x00\x69\x06\x16\xc6\x92\x6d\x19\x63\x68\x46\x90\x3d\x6e\xb7\xd4\xd3\x23\x5b\xad\xc8\x1e\xf5\x2a\xf6\xc2\xb5\x9b\xcd\xb5\x58\xfb\x9a\xb5\xef\x55\x59\xc6\x3b\xbf\x73\xee\x3d\x91\xf1\xe8\x81\xbf\x10\x11\xac\x8c\xed\xbd\x7b\xcf\x3d\xcb\x6f\xa1\xbb\xe6\x3d\xf3\xeb\xef\xad\x14\x04\x9f\xf7\xb8\x26\x85\xbf\xa2\x18\x22\x7d\xe3\x06\x8c\xc0\x73\x03\xae\x09\xbc\x7a\x67\x50\xf2\x54\xf8\xe2\x57\x4c\xbc\x5c\x64\xe9\xb4\xae\xf8\x7e\xa0\x6a\xff\x6b\x63\x33\x30\xd5\x86\xfe\xb6\xc2\x43\x77\xcd\xc0\xf4\x58\x62\x1c\xf5\xc4\x1f\x2b\x52\xc2\x1f\x37\xa9\x45\x16\xa5\xcd\x13\xd1\xcb\x45\xe4\x66\xde\x2c\x3f\xa9\xd3\x75\x3f\xf1\x31\x55\xb7\x4a\x2c\xb1\x85\x5a\xde\xdd\x15\x1d\x7c\xd1\x6b\xd6\x2b\x3a\xb1\x87\x77\x2a\xf5\xc4\x75\x4e\x80\x71\xc7\x31\x05\xe3\x8d\x40\xe8\x36\x45\xef\x9e\xd3\xb9\x8a\x4f\x5c\x68\xb5\x22\xa7\xbd\xdb\x34\x2a\xb0\x83\x61\xc9\xe0\x06\x0f\x37\xf6\xd2\x3d\x10\x83\x46\xcb\xe8\x07\x13\x30\x05\xd9\xc6\xb9\x49\x86\xfd\x56\xeb\x4b\x5f\x0c\xee\x2a\xa1\x64\xda\x50\x0c\xde\x81\xc9\xf3\x35\xb9\x70\xd8\x80\xb0\xac\xe0\xc7\xaa\x9c\x77\xe9\x52\x16\x67\xf9\xb0\x35\xc6\x55\xf1\x9e\x89\x1f\xeb\x6e\x10\x72\xcb\x87\xd4\x25\x60\x2e\x18\x9e\x90\x6d\x9c\xa4\x80\xb7\xa2\x30\xc6\x3a\xa7\x55\x22\xd9\x80\x14\x5f\x1a\xc6\x50\xb4\xa6\x8b\x27\xd7\x43\x23\xe2\xea\x98\x80\xe9\xb2\x2d\x9f\xa8\xe3\x0d\xfa\x98\x37\x28\xac\x60\xb3\x20\x4d\xf1\x12\x71\x21\x2e\x7c\x37\x52\x65\xdd\x9f\x61\xcb\xa3\xb6\x01\x7d\x4c\x2e\x0a\x7d\x7d\xfc\xd4\xbb\x38\x4d\x71\x13\xfe\x02\xc9\x3b\x33\x0d\x69\xcb\x63\x65\x7c\x23\x0a\x52\x12\x47\x15\xe3\xf2\x28\x7e\xa3\x22\xcd\xc8\x44\xf5\xd8\x48\x19\xd8\xde\x84\x4c\x01\x8e\xaa\xd3\x3e\x6d\x77\x69\xd7\x99\x94\x3b\x0f\x48\x3f\xee\x72\x6c\xe1\x67\x0d\x95\xe9\xaa\x4d\x92\xe9\x7a\x35\xd0\xce\xfb\x9f\x9e\xa2\x69\x9c\x68\xb9\x86\x09\xf5\xa3\xeb\xca\x03\xb5\xc9\x24\x76\xae\xbd\x94\x25\xcb\xfc\xe1\x58\xe7\xb0\x78\xe1\xc7\x13\x2f\x21\x31\x05\xd3\x73\xc3\x56\x68\xb5\x9c\x1f\x03\xc9\x6f\x55\x25\xd8\xbb\xb7\xfd\xe2\xec\x81\xdd\x74\x21\x84\x98\x11\x14\x79\xdf\x42\x8a\x01\x94\x0a\x84\xd4\xb5\x85\x22\x2e\x23\x80\x6e\xde\x43\xac\xbe\xa1\x58\x5d\x17\xb5\xb1\xea\x19\xdc\x44\x0a\x0f\xff\xdd\xe7\x3a\xad\x97\x44\x9d\x65\x83\x56\x0d\xae\xfb\xc3\x0a\x81\x92\x65\x4b\x3b\xc7\x68\x2e\xf5\xd7\x12\x4c\x4e\x98\x3a\xb1\x4c\x98\xb4\x05\xe9\xe3\xf5\x98\x08\x9d\xda\x07\x91\xd2\x90\x7a\x5f\x57\x24\xc3\xdc\x9a\x2e\xf9\xa0\xa3\x49\xcd\x6e\x5a\xfc\x04\x87\x81\xd7\xee\x79\x71\x56\x67\x26\x12\xa1\x36\xf5\xa4\x32\xcf\xc4\x6e\x02\x55\x3e\x6c\xfc\xf9\x71\x47\xe0\x1c\xaf\xd8\x55\x9b\x08\xa4\x14\x9f\xf5\x1d\x2c\x4d\x7e\x12\x05\xb0\x4b\x9a\xa5\x0e\x85\x31\x32\xf1\x4f\x70\x43\xf9\x49\x03\x80\xf0\x40\xbb\x6b\xc5\x18\x48\x5a\x23\xf4\x12\x29\xd9\x03\xcd\xac\x6b\x97\x5c\xea\x4a\x12\x83\xf2\x3e\x0d\x5b\xe8\x45\xf2\x9d\x07\xb6\xf4\x56\xcc\x4a\x58\xfd\xe0\xa7\x0a\xab\x93\xba\x42\x62\x8d\x38\x3a\xf8\x98\x13\x46\xe7\x93\xf4\xf2\xba\xec\x2d\x73\xd3\xb5\xd0\x25\xc4\xa9\x7a\x93\xa2\x09\xc2\xc4\x89\x91\xf2\xaf\x3b\xeb\x1b\xf7\x4b\x59\x56\x2e\x9a\x24\x51\xbf\x83\xb3\x4f\x49\xee\x1f\xd7\xf8\xf2\x65\xe9\x63\xe2\xa0\x04\x05\x8d\x1f\x8f\xe9\x8d\x24\x6e\xd9\x22\xb0\x8a\x62\x90\x6a\xe1\x5c\x8f\xd4\x98\xe0\x83\x51\xe8\x8b\xf2\x04\x56\x74\x19\x94\xfe\xfc\x15\x8e\x1e\xfc\x2c\x0a\xa5\xe7\x5d\xd5\x6c\x8d\x5d\x1a\xbb\x34\x35\xa5\x6b\x05\x92\x19\xff\x1e\x7e\xa2\x58\x62\x8b\x36\xb5\x4b\xce\xdb\xb6\xb0\xca\x5f\x34\x26\xf9\xd7\x00\x3e\x8a\x4d\x61\x05\x7c\x24\xc6\x59\x2a\x47\x38\xed\xc1\x47\x36\xe9\xda\x5c\x66\xfd\xe8\xb8\x4e\x03\xaa\x08\xc8\xd1\x51\xbc\x0c\x13\xd9\x07\xe3\x8a\x5c\x09\x16\x8c\xb4\x12\x43\x8f\x80\x45\x6a\xb0\xb4\xb2\xdc\x24\xc4\x0c\x40\x86\x89\xc2\x93\x1f\x77\x9a\xdc\x37\x57\x4d\x69\xf3\xd5\x2c\x5f\x2e\xa6\x54\x3a\x79\x5d\x19\x99\xb5\x3a\x4a\xef\xa1\x71\x5a\x99\x64\xc5\xb8\xe6\xff\x77\x46\xca\x91\xe5\x3b\x4d\xd0\xbb\x61\x9e\x0d\x5c\xea\x61\xcd\x98\x81\x5d\x57\x92\xd7\xd7\xa3\x00\x19\xe9\x2f\x66\x2d\x65\x76\x70\x46\x35\x0f\x27\x79\x34\x92\x4a\x24\x2e\xed\x1a\x8d\x1a\x39\xa3\x7d\xd2\xce\x44\x5b\x48\x97\xf3\xf3\xf5\x36\x3b\x08\x70\x27\x62\xf3\x25\xad\xc8\x7a\x89\x16\x36\xa3\x90\x95\xa0\xe0\xeb\x0a\xdb\xf9\x2b\xcf\xfd\xc7\xad\x90\xf1\x9c\xa3\x3c\x95\x1f\x37\x55\xd7\xab\xb6\xdb\x95\xce\x3e\x9a\x30\xbb\x3b\x01\xcb\xc9\x4e\xd1\xc8\xb5\x2f\xe3\x82\x8a\xef\x7a\x83\x3a\x66\x62\x52\x78\x14\xe1\x40\xbf\x86\x4c\xdd\x03\xf3\x16\x66\x05\x48\xef\x01\x65\xc3\xdc\x62\x72\xce\x51\x45\x38\x2c\xa1\x59\x70\x7e\xac\x5b\x98\xba\xf8\xe1\x20\x5d\xcb\x18\x21\x14\x45\xdc\x55\xc0\x8a\x7e\x40\x9f\x86\x4d\x7e\x3a\x0a\xfb\xe8\x6f\x28\xcb\xc4\x61\xcf\x59\x15\x74\x67\x5f\x1f\x05\xbc\x03\x1c\x1a\x3c\xf3\x21\x74\xf3\x37\xc7\xa5\x98\x8a\x94\x98\xdd\xd8\xfc\x3f\x45\xf4\xe0\x27\x2a\x23\x5f\xcc\xb3\xb2\x6f\xf3\x69\x65\x9b\x72\x3c\x52\x03\x38\x8c\xad\x44\xa6\x55\x29\x9d\x69\x37\x78\xb2\x15\x16\xce\xaa\xc0\x18\x5f\xc7\xe9\xc6\x4f\x54\xbb\x7b\x29\x37\xe9\xf2\x52\x95\x83\x31\x8f\x9e\x32\x34\x83\xf8\x71\x93\x00\xe5\x92\xb5\x01\xc1\x23\x2c\xdf\x96\x57\xd2\x38\x33\x81\x55\x5a\x98\x25\x4a\x64\xda\x52\x12\x6c\xe3\xf3\x80\xd0\x35\x23\xd8\xa0\x49\x5c\x51\x16\x33\x61\x08\xf3\x07\x1a\x52\x79\x8e\x52\x15\x94\x1c\xaf\xe1\x62\x7a\xb9\xb4\xfd\xfb\xf9\x36\x7d\x3f\x70\x7d\x5c\x6a\xca\x5c\xe4\x09\x91\xd4\xbc\x87\xcb\xc7\x4f\x26\x86\x99\x75\x94\xac\x4f\x30\xb8\x42\xd5\x8b\xc5\x17\x73\x7e\xae\xd5\xc8\x51\xc9\x28\x44\x78\x55\xec\x33\x4a\x15\xfb\x4c\x13\x18\x6a\x60\x0f\x7b\x61\x04\x36\xa9\xd5\x32\xd7\x97\x26\x40\x42\xfb\xf7\x1f\x6c\x97\x55\x9e\x66\x2b\xa0\x98\x1d\xf4\x8c\x80\x90\x6c\x9e\xf1\x30\xe0\x61\x96\x97\xf5\x56\x6b\x85\x85\xb3\x45\x22\x6f\xe2\x3b\xed\x6d\x27\x18\x32\x6b\x80\xd6\xb8\x26\xe9\x96\x5c\xb2\x8e\xcb\xfb\xf7\xcf\x8c\x51\xa9\x43\x3f\x1f\xb5\x28\x3a\x4a\x2d\x74\x23\x7c\x43\xa0\x2e\x99\x83\x61\xc4\x7f\xe0\xcd\xe2\x8a\xbe\x4b\x7b\x65\x96\xee\xa9\xaf\xa4\xd8\xc4\xd0\xfb\x73\xdb\x2c\x0a\x18\x60\x74\x6e\x37\x8f\xa0\x3e\x10\x45\xf3\xd6\xde\xbd\xbc\xb6\xfe\xd7\x91\xc2\x16\xdd\x8d\xb4\x50\x58\xa4\x84\xa7\xce\x51\x13\x10\x6f\x79\x1d\xc1\x02\x69\xd3\xff\x4c\xdf\x1f\x71\xed\xfe\x28\x20\xf9\x78\xa6\xa3\x44\x0b\x64\x88\x5c\xe5\x2b\x76\x4d\x40\x62\x48\x70\xff\x9c\xde\x84\x1f\x37\x32\xed\xaa\x34\xf5\xd7\x1c\xdf\x08\x3a\xbc\xfc\x78\x7d\xb2\x09\xf6\x7c\x1b\x70\x34\x39\xcb\xbc\x11\x72\xfd\x16\x82\x2c\x6a\x16\x40\x2e\x3d\x42\xd1\x43\xae\x42\x71\x76\xb1\xd1\x86\x7b\xb0\x56\x17\xff\x41\xbf\x11\x5b\xfd\x44\xa4\x84\x93\x4f\x28\x2c\xf1\x92\x89\xcb\x5d\x41\x5f\x16\x8e\x46\xb8\x21\xdb\x40\x0a\x43\xaf\xf8\x67\x23\x25\x81\x7a\x35\x52\x26\x83\xa7\x47\x41\xad\xfe\x01\x6e\x2e\x12\x8d\x6d\xeb\x01\x44\x7b\x60\x14\x92\x87\x53\x8a\x73\x38\x30\x79\x61\x06\xfc\x55\xbd\x9d\x5d\xfd\x55\xc5\xce\xae\xa1\x03\xba\x98\x54\x39\xf3\xc4\xd0\xda\x7d\x47\x69\xfe\xbf\xd3\x88\xfd\x1e\x66\x85\x0c\x77\x36\x81\xa9\xd8\x3c\xdd\x84\xf7\xae\xeb\xf4\x7c\x3a\x50\xaf\x58\x44\x07\x05\xc6\x03\x55\x99\x1f\x43\x25\xc3\xbe\x53\x4a\x18\x62\xd5\x14\xa5\xa5\x3b\xc7\xf9\x98\x27\x26\x2b\x0d\x0a\x35\xb4\xba\xa5\x00\x3a\xb1\xc9\x17\xb3\x74\x3a\x20\x19\x6e\x51\xb7\x9e\x1f\x47\x61\x2c\x73\x5b\xa5\xa5\xb7\x27\x52\x95\xbd\x7b\xdb\x03\x57\x24\xd6\x74\xfd\x4a\xc5\x4d\x44\x7f\x82\x1f\x8f\x1d\x7c\x59\xbc\xfc\x34\xfd\x21\xee\xe3\xf6\x4e\xa0\x88\xbe\x43\xdf\x01\x17\x17\x4b\x1d\xb7\xf4\x5e\x14\x86\xf7\xe7\xd0\x27\x40\x5b\xf3\xc2\x48\x29\xd1\x7e\x4d\xa9\x12\xef\x82\xe8\xb9\x70\x2a\x42\x93\xf2\x64\x34\x36\xce\xa6\xeb\xb6\x79\x09\x27\x09\x9a\xe4\xef\x8e\x02\x8c\xf8\x0e\x3a\x01\xb8\xf4\x97\xb1\x14\x51\x38\x5e\xc6\xdd\xe2\xaf\x41\x9d\x56\x85\x9c\xfa\xb2\xbc\x64\xa4\x14\xbe\xcf\xa8\x6e\x1d\x5b\x30\x3f\x4a\xe1\x4e\x08\xc1\xca\x4e\xf6\x8e\xb2\xb0\xbd\x56\x2f\xe8\xcd\xe3\xda\xc0\x7d\xd7\x7a\x00\x47\x9f\xe2\x2a\xc2\x8b\x19\x85\xbd\xae\x64\xbb\xff\xff\x6d\x50\xbe\xf8\xed\x23\xa5\xd1\x74\x36\x6a\xed\x9d\xdb\xbc\x44\x7b\x0b\xf9\xf2\xcc\xba\x0c\x34\xed\x8a\xcd\xc9\x6b\x09\xa3\x85\xcf\x76\x42\xfa\x74\x96\xf6\xd9\x58\x23\xd7\xd3\x51\x43\x7f\x79\x53\xa9\x71\x8f\xd9\x35\xdb\x15\x9b\x3c\x14\xf8\xfb\x00\x6f\x8b\x11\xb3\x62\x24\x9f\x56\x6e\xcd\x60\x3d\x8a\x21\xae\x9a\x3e\xfc\x31\x7e\x0f\x6b\xda\x69\xbc\xe6\xed\x48\xd7\x7a\xa6\x1c\x78\xd3\x15\x69\xef\xa8\xb1\xc4\xe9\x89\xe3\xfb\xe5\x97\xdb\x03\x6b\xcb\xa9\x40\x5c\x7c\x4d\xdf\x87\xf3\x94\x10\x8a\xaa\x73\xf8\xa4\xa5\xca\xfa\x9e\x28\x83\x48\xd5\x91\x71\x31\x48\xf2\x54\x69\xc9\x33\x47\x04\x75\x8e\xba\xfc\x44\x7d\xf7\xa2\x5a\x2c\x5c\x77\x0d\x28\x6d\xd6\x09\x8b\xc2\xdb\xff\x99\x82\xa5\x4e\x16\x78\xbf\xdc\x8e\xb3\x2c\xb1\x70\x05\x10\xb1\x4a\x5a\x0e\x38\xcf\xb0\xc7\x85\xae\x21\x5f\x2e\x7b\xd5\xe4\xcb\xc5\xb4\xd2\xe4\xb9\xa0\xd4\xb2\x4f\xeb\x59\xf2\x36\x06\xaa\xe0\x9f\x1e\xed\x3c\x12\xc8\x87\x15\x66\x6f\xac\x3d\xaf\xec\xb6\xdf\x6e\xe4\x11\xba\x62\x58\x95\xe8\x40\x78\x3f\xad\xc0\x94\xbd\xa8\x64\x47\xb2\x6e\x37\x81\x97\x96\x76\x18\xe2\xc7\x4d\xb6\x1e\xb9\x2b\x60\x32\x82\x1f\x83\x10\xcb\x8f\xb5\xab\x5b\x96\x0d\x50\x43\xb1\x43\x18\x35\x13\xd9\xd8\x1e\x0c\x30\xb1\x0e\xab\x97\xac\x38\xde\x37\x14\x34\x43\x32\xb3\xf7\xf8\xae\xaf\xe1\x8a\xf1\x13\xdd\x59\x28\x5c\x9a\xe5\x54\xfa\x60\xd3\x00\xd6\x85\x65\x75\x59\x9f\xc3\x0f\x7c\x1d\x5e\x9a\xa1\xef\xc0\xa0\xfd\xc3\xa2\x44\xfc\x24\xe8\x88\x65\xe5\x30\xab\xf2\xdc\xe1\x70\x47\xac\x39\xa2\x06\x94\x47\x14\xd8\x6d\xc5\x99\x38\x1b\xe0\x5d\xd9\xd0\x09\xef\x2a\xee\x4e\x5b\x53\xcf\x85\x59\xa6\x45\x76\x05\xcf\x80\xe6\xe2\x2e\x6d\x66\xb1\x6b\x02\xc8\x55\x67\x2a\x85\x7b\xd5\x88\xe4\x61\x93\xc2\xe2\x56\xb9\xf3\xfa\x6c\xed\xba\xc2\x0c\x87\x99\x4b\x4b\x8c\xd0\xb5\x10\xce\x48\x77\xaa\xb6\xf6\x36\xe7\xe7\xdb\x0b\xb3\x5c\x1a\xa3\x45\x73\x44\x03\x23\xce\xe1\x57\xf2\xbf\xd0\xd7\x10\xdb\x09\x49\x9b\xdd\x60\x98\x67\x2b\xb6\xbb\x23\x58\x61\xdc\x56\xdb\xe1\xb8\x76\xb5\xbb\x86\x34\x56\xf8\x91\x74\x5d\xd0\x49\x80\xf2\x80\xe8\xb0\x3e\xad\xde\xdb\x16\x85\xcb\x52\xc7\x3a\x65\x5e\xc8\x77\x5e\x56\xd8\x35\x35\x78\x2c\xed\xe1\xd2\x25\x76\x26\x4c\xf5\x8f\xe8\x69\x30\x54\x17\x78\x60\x1b\x29\x24\x35\xa6\xb7\xe8\xea\x5f\x6a\x50\xbb\x5f\xed\xbb\xb8\x6f\xa9\x8a\xa8\x8f\x55\x94\x7b\xb7\x54\xe9\x77\x6b\x1c\xe2\x5c\x98\xe9\x60\x4d\xf6\x09\xea\x49\x9e\xcb\xd3\x89\x28\x96\x58\xf4\x15\x64\x60\xaf\x48\x63\x89\xe9\xcd\x28\x72\x26\x5a\x42\x4c\xe0\x89\xc2\x7c\x63\x06\xe8\x26\x74\xba\xf9\x74\xc1\x81\xb0\x7d\x42\x26\x65\xff\xfe\x05\x0a\x76\xbc\x36\x38\x01\xa0\x9f\x20\xc9\x80\xd7\x86\xc9\xcd\x60\x20\xb6\xa9\xe8\xd5\xb1\xbf\x31\x3f\x51\xb8\x8d\x6e\x16\x57\x22\x1a\xa0\x72\xfc\x71\xe0\xd7\x84\xde\xc0\x8b\xb3\xf3\x64\xe1\x11\xf7\x5d\xd2\xcd\x2d\x8b\x97\x4b\x9c\xd5\x74\x39\xed\xd6\x5c\x12\x36\x6f\x2a\xec\x0b\xc8\xe6\x20\xd0\x6f\xa7\x76\x18\x2a\xb5\x9f\x4e\x56\x8f\x7b\x45\xc4\x07\xdf\x12\xaf\x39\x17\x8c\x10\x7f\xf5\x9c\x3a\x53\xca\x6c\xd1\xc4\x71\xb6\x63\x2a\x58\xd9\x7e\xac\x0c\x72\xee\xd2\xc9\x8b\xbe\x25\x4b\x26\xe3\x8f\xee\xab\x33\xfd\x78\xa4\x84\x8e\xef\x35\x28\x84\x0e\x13\x93\xa6\xf2\x7d\x58\x73\x67\xa4\x78\x1e\xd7\x9a\x14\xbc\xcc\xc0\xe6\x75\x0d\x2c\x8d\x46\x7c\x77\x1e\x41\x30\x86\x18\xe7\x02\x12\x96\x49\x47\xf9\x17\x67\xdb\x45\xdf\x2c\xdb\x62\x68\x45\xd4\x17\x3d\x63\xd0\xc0\x59\x66\x7c\xa4\xde\xe3\x86\x47\x50\xa5\xb6\xdc\x45\xff\x40\x8d\x5d\xf7\xf8\xba\xef\xbb\xfe\xda\x2f\x76\x42\x27\xfd\xf1\x4e\x7d\xf8\x33\x80\x63\xa4\x98\xe6\x68\x56\x61\x4d\x6f\x52\x96\x84\x61\x22\x9b\x7f\x29\x88\x90\xe8\x34\x4d\x4f\xd4\x72\xfb\xe6\xdb\x5d\x9b\xb8\x15\x60\x8b\xe8\xe2\x23\x17\xfe\xaa\x82\x94\x7d\x55\x61\xe2\x8b\x41\x96\x95\xa0\x39\x79\x97\x58\x5f\x10\x4f\x8e\x06\xe8\x22\x67\x15\x33\x31\x05\xa8\xd4\x52\xf6\x6e\x0d\xcc\xd9\xb8\x6f\x57\x69\xb7\x68\x10\xb1\x88\xc6\x3d\xaa\x86\x81\xa9\xd1\x94\x66\x64\xec\x28\x91\x91\x42\xf0\xc8\x5e\xf1\x57\xba\x55\x0e\x8e\x49\x4b\xb9\x46\xd1\x32\x11\x52\xaa\x22\xea\x99\x42\xf4\xb7\x3c\xed\xdc\xcb\x7b\x7d\x47\x9b\x25\xdf\x9c\x70\x1d\xab\x4f\x11\x68\x14\xb9\x9e\x29\x85\xe3\xc5\xf5\xfe\x78\xf1\x1f\xba\xa2\xbf\xf6\x2b\xbf\x32\x1d\x32\x12\x20\x3f\xa5\x73\xd2\xda\x2b\xe3\x00\x96\x92\xc2\xad\x69\xad\x87\xe6\x6f\x9a\x95\xcf\x28\x06\x15\x74\xed\x50\xb8\xee\x00\x56\x07\xa0\xb5\xa9\x4e\xb0\x89\x7a\x88\xca\x22\x88\x85\x5c\xc1\x71\x82\x02\xe6\x6b\xd8\x04\xf8\xf8\xbf\xc2\x25\xf2\x0c\x93\xe0\xe1\xca\xa6\xcd\x78\x33\x78\xeb\x03\xed\xfd\x3e\x45\x66\xe4\xd6\xad\xf5\x90\xda\x5f\x01\x7e\x42\x0c\xd8\x28\xcf\x41\x7b\xf8\x69\x5a\xff\x48\x40\x66\xd6\xd5\x8e\x79\x6f\xa4\x4a\x8a\x0d\x0d\x0a\x03\x5d\x85\xf1\x76\x28\xd4\x65\x0e\xf8\x99\x50\x03\xd9\xb2\x9f\x75\xb3\x24\xeb\x89\x02\x9f\xf0\xf3\x02\x78\xf7\xa2\x8f\xd6\x8c\x0a\x65\x34\x12\xa6\xa6\x77\x95\x3c\x27\x87\x62\xec\xc0\xd3\x63\xe7\xd4\xb0\x80\x78\x23\xcb\x89\xd3\x8b\xbc\xb4\xf8\xbe\x79\xaf\x8a\x47\xdf\x93\x9f\x28\xad\x8f\x7a\x1f\xc6\x2e\xab\x8a\x19\x25\x06\x72\x3b\x52\x73\xf4\xef\x62\xf7\xa3\x48\xfe\x50\x55\xbe\xc7\x08\x44\x83\xb2\xe4\xb6\xca\x31\xbb\x79\x35\x68\x8d\xb1\x7b\x3c\x99\xea\x6c\x83\xac\xd6\x41\x9a\x3d\xc7\x01\x34\x8a\x04\xe2\x1e\x7e\x32\x3f\x89\x34\xc9\xd8\xb8\x74\x67\xbd\x80\xb0\x32\x4e\xe0\xde\x78\x49\x74\x3f\x16\x63\xca\x10\x32\x82\x3b\xca\x93\xfd\x75\x0c\x49\xfd\x84\xb3\x5e\x72\xfc\xa4\xa1\xc5\xf9\x7c\x7b\x50\xae\xd0\x1d\x64\x5c\x9c\x2e\xaa\xbe\x3d\x91\x68\xbc\x38\x1b\x54\x82\x68\x05\x09\xde\xb2\xfe\x7c\xd4\x90\x2d\x48\xb6\xe0\xfc\xbb\x39\x76\x37\x9f\xcb\x9f\x53\x33\x55\xf8\x39\x0a\x8a\xba\x21\xca\xe5\xd9\x62\xc5\xc6\x48\x88\x24\x77\xe9\x15\x5e\x41\x6e\x7e\xde\x0f\xbc\x1a\x0f\xa2\xc5\x2a\xa1\x8e\x6f\x68\xfb\x7c\xa8\x90\x7e\x1f\xaa\x28\x51\xe5\x8b\xe4\xa6\xc8\xae\x21\x91\xca\x7a\xce\x29\xb6\xd1\x43\x74\x00\xa1\x53\x73\x57\xdb\x04\x9c\xf7\xac\xd2\xa2\x4e\x4d\x16\x93\x2d\x02\xe4\xe7\x54\x7a\x7c\x4e\x35\xb6\xfa\xb6\xdb\xe3\x0d\x24\x19\xbd\x7a\xd7\x23\xa3\xe0\x38\x1a\x57\xc9\x54\xbd\xe0\xf1\xdd\xaf\x2b\xeb\x3a\xb6\xaf\x94\x25\x18\xe2\xb2\x49\xca\x7e\x56\xf5\xfa\x8f\x05\x5e\xda\x2d\x02\x6a\x79\x6f\xf8\x3a\x34\xb1\x35\x0a\xad\x76\x14\x20\xdc\x06\x19\xab\xe1\x90\x02\xbf\x83\x8f\x62\x14\x0e\x95\xfd\x28\xda\x4e\x20\x02\x89\xcd\x4a\x48\x94\x8f\x23\xe4\x09\x17\x1c\x29\x01\x62\xe9\x77\x55\xe4\xdf\x0e\x43\x6b\xfe\x62\xb8\xfc\x62\xcc\x26\x48\xbc\x38\xcb\x7d\xbd\x82\x48\x82\x6b\x81\xcc\xd8\x23\xc7\x83\x95\xe7\x8d\x48\xeb\xbf\xf5\x0d\x89\xbf\x18\x96\xb7\x62\x38\x6c\xa4\x10\x9e\x3f\x55\xe6\x50\x47\xf5\x8e\x77\x79\x39\x5d\xbf\xc6\x5b\x6a\x06\x87\x47\x56\xe3\xf1\x93\x2e\xb5\x24\x43\x21\xbd\x94\xac\x81\x84\x84\xf6\x07\x38\xa1\xaa\xe1\xe2\xbb\x2f\xa4\xe0\xc4\x7f\xb4\xde\x24\xd2\x98\x56\x79\xe1\x09\xdf\x12\x3c\xeb\x0f\xe5\xa1\xad\xea\x4b\x5f\x1a\xb5\x3f\x65\x36\xb9\x96\x15\x7d\xd7\x77\x85\x51\xc6\xd2\x0c\x2d\x10\x89\xe6\xd0\xbd\x1f\x9a\xd8\x0e\xcc\xb2\x65\x99\x1d\x2c\x4c\xd8\x70\xf1\x63\x85\x8b\xca\x56\x6c\x5e\x56\x79\x0a\xb2\x04\x5b\xfa\x8f\x54\x3b\xef\x6c\x93\x17\xf7\x6a\xdf\xda\x24\x71\xcb\x3c\x9a\x11\x4f\x89\x96\x72\xbd\x0f\xad\x83\x22\xab\xca\xfe\x2e\x5a\x6d\xaa\x7a\x9b\x0f\x13\x3f\x8f\x94\xbb\x8a\xf5\x2d\xeb\x30\x1c\x97\x40\x18\x62\xfa\xc1\x3c\x54\x4d\x2e\xc2\x4a\xba\x35\x52\x0e\x65\xef\x2b\xd5\xec\xa2\xcc\x6d\x5a\x65\x55\x91\xac\xb5\x26\x8e\x4d\x41\xe7\x2a\x72\xaf\xc9\x6d\x62\x0b\x5c\x3d\x8c\x33\x1e\x28\x8e\xe3\x03\x45\x00\x2f\xfb\xd6\xe5\x8f\x87\xaf\x70\x65\x8c\xe8\x55\xef\x4f\xdc\xf1\xbb\x5a\xfb\xf9\x2a\xb7\x10\xd1\x4c\xfb\xef\x29\x7d\x45\x07\xf1\xdb\xd8\x7a\x58\xb4\x9b\xd8\xa0\x08\x5d\xdf\xd3\x84\xa6\x53\x8a\x5a\xf6\x28\x09\x82\x09\x3e\x95\x7e\x1d\x8e\xcc\xf7\x47\xaa\xd0\x98\xe9\x04\x4b\xa4\x87\x90\x04\x61\xc6\x7a\x27\x52\x26\x52\xf7\x9a\x64\x51\xdd\x80\x31\x02\x9f\xa2\xb0\xd9\xc4\xa1\x37\xdd\x15\xb0\xf4\x43\xea\xf6\x3b\xe8\x19\xf2\x93\xa6\x0f\x22\xa9\xe9\xa5\x35\xca\x78\x95\x79\xa7\x64\x55\xe7\x95\x7a\x58\x6e\x87\x59\x5e\xda\xee\xc3\x2d\x2f\x7d\x3b\x43\xa5\x02\x06\x8f\xbc\xbe\x90\x8b\xbf\x47\x19\x18\x36\x5b\x8b\x2e\x03\xd2\xbc\x6b\x23\xd5\x3f\xbf\x8e\x6e\x30\x93\xb7\x30\x0a\x67\xab\x80\xd1\xb8\x35\xc7\xc2\x2c\xbf\xef\xdf\x34\x39\x48\xc6\xa6\x2a\x20\x61\x8a\xd9\xf2\xd9\xb1\x95\x4e\xdb\x5e\xec\x50\x45\x17\x65\x68\x56\xc4\x3e\x12\x97\xf4\xb5\x91\x82\x2e\x20\xbd\x41\x2d\xae\x95\x07\x62\xb7\x22\xca\xc4\x42\x0f\x53\xca\x03\xef\x35\x29\x5c\xfe\x3b\x79\x30\xa1\x5f\x6e\xea\xaa\x38\x35\xad\xfa\xc4\xe2\x3e\x3b\x36\x9d\x34\xdd\x43\xa9\x3e\xcc\x33\x31\xaa\x43\x84\xf7\xb6\x95\x5e\x3d\xf8\x16\xd6\x98\x30\xbd\x02\xf7\x2a\x67\x9b\x90\x26\xd5\xb3\xad\xfc\x0f\xf2\x6a\xcc\x57\xac\x4b\x42\x82\xd0\x44\x57\x7a\x4c\x61\x33\xbb\x55\x6c\x77\xd6\x77\x4c\x4c\x7f\x5b\xde\x3a\x75\x5b\x87\x6e\x38\x9f\x9e\x4a\x42\x99\x82\xc8\x97\x37\x8f\xe0\x72\xe2\x08\x7e\x4f\x17\xae\x93\xf7\x7d\xdf\x7c\x7b\x68\x52\x17\x4f\x69\x4f\x3d\x25\x93\x7f\x4d\x09\x6e\xbd\xa5\x2e\x5d\x69\x13\x0b\x7f\x0c\xae\x8b\xb4\xc2\x97\xf8\x49\x35\xe9\xbf\x54\x65\x62\xcb\xb1\xf1\x21\xd8\x1b\xc2\x9c\x0c\x33\xab\x61\x52\x9f\x05\xd2\xbc\x13\x85\x83\x8d\x31\x91\x91\xad\x1b\xf8\xe5\x97\xdb\x55\xea\xd2\x15\x57\xf2\x06\x46\xbe\xf0\x0e\xee\x22\x3f\x19\xcb\x11\x5d\x81\x99\x1d\xda\xa9\xa7\x95\x24\xf3\x69\xdf\x18\x4d\x89\xcc\xec\x6c\x4e\x51\x15\x85\xe4\xeb\xa8\x68\xf8\x49\x23\xcb\x60\x98\x67\x4b\x4b\xd6\x77\x58\x30\x07\xf8\x43\x45\x03\xfe\x43\x2f\x30\x34\xb0\xb9\x2b\x5b\xaa\xcc\x3f\xad\x38\xc6\xa7\x95\x13\xdd\x73\xff\x39\x93\x7c\xd0\xea\xfb\x37\xb4\x54\x91\xc7\xc0\xda\x69\x6c\x98\x87\x44\x63\xd2\xc8\x76\xff\xfe\x76\x8c\xa3\xbd\x15\xe6\xfe\x9f\xa0\x71\x23\x9d\xb8\xad\xc7\x39\x09\x5b\x0e\x73\x5b\x90\x8c\x9c\x60\xff\xb4\x98\x1b\x3f\x0e\xc8\x89\xc4\x0d\x87\x12\x1f\x50\x5e\xcc\x74\xc6\xf0\x16\xea\xa8\xbe\xb7\x95\xd5\x7e\x60\xe1\x40\xfb\x39\x5c\x39\xa5\xc8\xe0\xe5\x19\x54\x1f\x2c\xce\x52\x22\x69\x53\xeb\x06\x94\x97\x9d\x94\x39\x4b\x12\x4a\xd7\x02\x95\xc3\x75\x55\xad\x55\x29\x0b\x61\x53\xd8\x66\x0b\x57\x64\x5b\xe2\xe7\xfa\xb8\x02\xf4\xc6\xa6\x64\x7a\x94\x37\x5a\xf7\xfa\x92\x6f\x4d\x6c\x2c\xaa\x27\xaa\x5e\x5f\x29\x91\xc3\x2f\x86\x1f\xaf\x6f\xad\x8d\xe6\x0e\xb5\x07\x2e\x01\xd6\x02\xcb\x1b\xe2\x04\xfc\x38\x92\x8c\xbf\x9f\x15\x43\xc7\xde\x04\xca\xaa\x2e\x70\x57\x6e\xea\x23\x20\x54\xc5\x2e\x5d\xc9\x92\x15\x5b\xcc\x28\xbb\x8f\x8b\x63\x26\xe1\x41\xea\xef\xeb\x4f\x74\xd4\x60\xec\xc4\x48\x51\x86\xee\x35\x80\xe1\x0f\xb6\xfb\x36\x19\x6a\xfb\xff\x8b\x0a\x4f\xf2\x3f\xe2\x24\x14\xfc\x9e\x62\xb8\x15\xf5\x5a\x72\x26\xa9\xf3\xd5\x20\x32\x89\xa2\x5e\x7c\x27\xb4\xd8\x58\x18\xe9\xfd\x49\xf4\x99\x89\xd5\xf2\x4b\xed\x03\x73\x87\x14\x9d\xf0\xc7\x8a\x4e\xf8\xe3\x26\x08\x7f\xaf\x72\x5d\x5c\x44\xec\x93\x6b\x3a\x29\xbd\xaf\x8d\xed\x3e\x99\x68\x1a\x2e\xcc\xb6\x13\xb7\x68\x73\xa8\xcf\xe1\xa7\xe3\x6c\x3e\xaa\x78\x4f\x8c\x15\x47\xa4\x9e\xd4\x09\x5b\x98\x6d\x57\xc3\x45\x6b\x4a\x6d\xdc\x32\x52\x84\xe4\x91\x1a\xc3\x7f\xa5\x32\x79\xce\x53\x3d\x2f\x1e\xe1\x1d\xba\x21\x72\x26\x24\xc6\x09\xec\x63\x7d\x75\x96\x5c\xb7\x8a\x9d\x68\xd9\x22\x77\xb8\xad\x06\x18\xb7\x15\x8d\xc0\xf4\xa8\x74\xe9\xb6\x42\xff\x89\x07\xe8\xfc\x64\xa2\xb4\xdf\xbb\x37\x78\xa2\x89\x26\x5d\x7d\xef\x04\x69\xa1\xc0\xf8\x67\xc6\xd8\x00\x55\xd7\x71\xeb\xd6\xfb\xec\x86\x31\x8f\x36\xe8\xb9\x3f\x01\x8d\xa8\x13\x2f\x93\x48\x03\xdf\xb3\x38\x34\x2f\x35\xc0\xe3\x62\xd3\x5d\xb5\x49\x82\x91\xee\xe6\x69\xca\x09\x36\x4f\x4f\xf0\x54\xf6\xce\x51\xca\x6d\x06\x12\xb6\x95\x30\xcf\x9c\x17\xe6\x09\x32\xa8\x26\xcf\x4d\xda\xc3\x39\x85\x9b\x23\x99\x76\x80\xb4\x6d\xa7\xb6\x18\xba\x6d\x6f\x8e\x21\x1c\x92\x6c\x48\xa5\x9e\xc8\xb5\x8c\xa3\xa0\xfc\xdd\x45\xee\xc6\x7f\xd4\xc4\x99\xcf\x6d\x9c\xf5\x52\x5a\x8a\x1a\x93\xa9\x58\xb9\x77\x94\x90\x80\x96\xd1\x19\x16\x6b\x49\xe2\xaa\x01\xa8\x2c\x08\xae\x17\x22\x35\x6a\x39\xaa\x8e\xc4\x5b\xa3\x30\x54\xcc\x7b\xb6\xdc\xe5\x9b\xe5\xfb\x3f\xdb\x51\xf3\x8d\x13\xb8\xdd\xa2\xc3\x4b\x0b\x07\x6b\xf6\xd8\x48\x75\x8b\xce\x8d\x94\xa3\xdb\x55\xe5\x12\xf2\xed\x28\xc0\x30\x76\xac\x07\x0f\xe6\x23\x0d\x74\x87\xf9\x76\x9c\x8b\x59\x3a\x60\xbb\x47\xb5\x67\xdb\x51\x95\x1a\xf6\xab\x9c\xc4\xba\x5a\xde\xab\xe8\xa8\x32\x49\x3f\x3a\x0a\x48\xea\xae\xcb\x6d\x0c\x01\xe7\xfa\x5b\xa1\x05\xf8\x96\x6e\xfa\xbe\x35\xd1\x7c\xdb\x37\x4f\xf4\xff\xbc\xa8\x77\x0e\x44\xcf\xb5\x3d\xba\x87\xf3\x2a\x69\x08\xfa\x9e\x92\xb8\x87\xa6\xdc\x52\x96\x57\x34\x58\x7e\x5e\x38\x44\x51\xa8\xb3\x00\x18\x17\x6e\x51\x7d\x6d\xf8\xff\x37\xe9\xb0\xc4\x26\xef\x3a\x03\xa1\x6c\x5c\x73\x64\x5b\xfc\x58\x09\x9a\x27\x2e\x95\xb4\xcc\x9b\xbf\xd5\xab\x47\xcc\xdf\x9a\x2e\x3c\x64\xf0\xc6\x3a\x7e\xf5\xf7\x91\x56\x60\xa8\x4a\x87\x7d\x97\x24\x6e\x58\xa0\x87\x87\xed\x0c\x8f\x53\x9c\x10\x97\x47\x41\x47\x77\x5b\x67\xf2\x77\xcc\xb5\xeb\x7a\x9d\x99\x60\xa2\x91\xad\x61\xbe\x4a\x54\x3c\xb7\x2b\x8e\x44\x4e\x17\x0e\x78\x2d\xb3\xf0\xee\x67\x95\xe5\xda\x62\x62\x5c\xce\x10\x0f\xe5\x52\xe8\x75\x91\x26\xba\x91\x34\x31\xec\xbb\xd4\x16\x98\x45\x03\x9d\xc0\xc7\x06\x3f\x51\x79\x49\x51\x52\x68\x60\xe9\x1c\x2f\xb2\x16\x08\xf1\x67\x27\x4e\x04\x0a\xd4\xab\x59\xbe\xac\x9a\x88\x17\x54\x13\xf1\x82\x9a\x89\x9a\xae\x83\xcf\x89\x68\x69\xb4\x82\xae\x86\x92\xef\x2f\xaa\x5e\xcf\x16\xbc\x96\xf7\x09\x3b\x8a\x5b\xed\xfc\x64\xa2\x62\x39\xf4\x02\x18\xfa\x83\x61\x96\xd3\x89\xf1\xa2\x58\x34\xde\x1a\x85\xfc\xf5\x56\xfd\xfd\xe5\x30\x4f\x4b\x4a\x0f\x53\x5b\xe5\xce\x24\x60\xba\x4a\xca\x4e\xb7\x5d\x72\xf6\x09\x2f\xd7\x17\x0e\xb6\xab\xd4\x9a\x42\x83\xe7\x2e\x28\xf0\x5c\xd0\xe1\xec\x1a\x97\x90\x8e\xb6\x37\x21\x40\x04\x61\x57\x76\xd5\x99\xfb\x5c\x27\x10\xe0\xee\x8f\x54\x2d\x48\xab\x0e\xd1\x6c\xf7\xfa\x56\x1d\xdf\x43\x2f\xb4\x17\x81\xd1\x17\xa4\xa8\x42\x54\x9c\x1b\x69\x77\xff\x9e\x4b\x77\xd0\x0e\x05\xc3\xed\x89\x8e\x12\xc3\x51\x7e\xfa\x3b\xd6\x95\x10\x08\xd2\x2d\x96\xa0\xa4\x25\x8f\x3f\x7a\xa3\x49\x9d\x7c\x98\x67\xdd\x00\x95\x13\x91\xda\x90\xe2\x9f\xd1\x8a\xe4\x43\x56\x45\xac\xdf\x13\xcd\x91\x4b\x04\x90\xe3\xc7\x2a\x06\xf2\xf4\x8c\xb8\xcc\x28\x77\xa7\x3a\x4a\xfe\xe2\x06\x5d\x1f\x5c\xcf\xf3\xca\x28\xf2\xbb\xea\xc8\x58\x76\x79\xcf\xbd\x5a\x2f\xbe\xb9\x43\x1e\x55\x15\xc4\x35\xff\x58\x6d\xb1\xa1\x39\x5c\x71\xf9\x36\x26\xc3\xc0\x4f\xa2\x49\x39\xcb\x76\x51\xba\x41\x95\x40\xa8\x9a\xee\xb4\xf8\xea\xd2\xb7\xe4\x27\x0d\xac\x21\xb0\x2c\x0a\x39\xb6\x31\x47\x65\x82\x27\x3f\x69\x30\xd3\x9f\x6b\xe7\xc6\x25\xab\x66\x8d\x12\x17\xec\xe1\x7b\xca\x87\xf8\x06\xdd\x32\x7c\xea\xcf\x9a\xfc\x86\x7a\x49\x56\x14\x6b\x2d\x95\x74\xe0\x2e\xf3\x63\xc5\x23\x8f\xab\x3c\x27\x3e\xeb\xa3\xad\xbd\x73\x9c\x17\xfd\xd1\x48\xd9\x11\xe2\x94\xc7\x62\x3b\xa5\x85\x30\x8f\x8c\x34\x66\x0a\x07\x00\x8e\x10\xa4\x7d\xa8\xfe\x19\x9a\x88\xcc\xf3\xfe\x68\x0c\x07\x19\xec\x97\x6f\x47\xad\x2f\x7d\x91\xd3\x8a\xdf\xa7\x89\x33\x3f\x8e\x54\xd3\x60\x33\x1a\xf7\x81\x2d\x1e\xa1\xb7\xc6\x49\xf5\x01\xfa\x4d\xa0\xf1\x31\xb7\x01\xfd\xbc\x6b\xf8\x35\x48\x27\xaf\x62\xd7\x63\xc4\x01\x67\x7b\xed\xa9\x23\xe8\x9b\x60\x5a\x70\x1b\x49\x03\x12\x4c\xb8\x9d\xa1\x6b\xc1\xd3\x52\x76\xd0\xa3\xa6\x29\x8e\x8d\xbb\x13\xf5\xff\xfc\xfc\x81\xf6\xa2\x49\x4c\xd0\x7d\x02\x82\x98\x95\x57\xf9\x49\x13\x2b\x61\xd1\xa9\xdd\x06\xc0\xc2\xcc\x7a\x00\x2f\xcc\x74\x9e\x50\xc4\x29\x53\xe6\x2e\xb6\x2d\x35\xa9\xdd\xd0\x62\x8b\x4a\xe7\xc4\xc4\x5f\xa9\x5c\x1e\xf4\xb5\xbc\xa8\x9f\x47\xd4\xdf\x40\x23\x81\x65\xbc\x71\xab\xc4\x50\x46\xd5\x5d\x5f\xc5\x2f\x40\x37\x68\xa6\xa3\xd8\xdc\x36\x5d\x76\x29\x1a\xbe\xca\x07\xfb\x80\x97\x7e\x19\xb7\x7e\x82\xe7\x15\xe0\x4d\x02\xbc\x56\x05\xfa\x03\xc0\xd6\x3c\x3e\x3b\x68\xa6\x3c\x50\x41\xa4\x97\xb8\xb2\xb4\xf9\x94\x4a\x13\x01\x96\xf0\x23\x92\xf9\x79\x1e\xe3\x5e\x6d\x64\xa8\xae\xf6\x1d\xe3\xb9\xbc\x54\xf8\x3e\x51\x0d\xd8\x68\x68\xda\x1f\x6c\x17\x59\xe2\xba\x6e\x69\x0d\xc1\x44\x06\x18\xf4\xcd\x65\xb4\xf1\xa4\xdb\x3a\x2d\xc6\xc1\x85\x3b\x78\x5e\x41\x51\xce\x2b\xe3\xb5\x6c\x68\x91\x1f\xe1\xe6\x31\xd0\x83\x9f\x4c\x96\x39\x73\xc4\x5f\xa1\xe3\x99\x75\x85\x95\x30\xe2\x24\x14\x62\x7e\xbe\xdd\x77\xbd\xfe\x4c\xf8\xa9\xdb\xc6\x2d\x70\xc2\xfe\x9d\xa6\x11\x3b\x2c\xc9\xb7\x77\x14\xc9\xf8\x8c\x4a\x6f\x8c\xcd\xb3\x45\x52\xe4\xae\x2f\x03\x72\xea\xd7\x94\xf5\xcc\x6b\x4d\x7c\xca\x83\xed\x2e\x59\x92\x50\x8c\x43\x79\x72\x3b\x52\x8c\x98\x53\x9a\x7d\x35\x29\xdb\x4c\xfd\xd7\xd4\x26\xd5\x61\x45\x34\x79\x7b\xa4\x88\x26\x6f\x6b\xf8\x69\x3f\xcb\xcb\x64\x6d\xba\xb5\x77\x6e\xf3\x08\xf5\xaf\x3d\x56\x6e\x5f\xc0\xa0\xb5\xe6\xe7\x37\x8f\x8c\x69\xfc\x7c\xa5\xb2\x09\x7e\x95\x96\x98\x12\x30\xa7\x72\x6c\x88\x4b\xb7\x62\xa4\xbf\xd7\x84\x3c\x6f\x38\xd5\xbb\xe8\xf1\x88\xb6\x21\x7d\x75\x7e\x12\x7d\x46\x99\x24\xc8\xc8\x4f\xb0\x5e\xde\xea\x28\x4c\x08\xcf\xfb\xa4\x79\x68\xf2\x60\x1d\xa4\xe5\xb6\x71\x0e\xa2\x29\x26\x6e\x33\x5b\x4f\xba\xb9\x43\xf5\x81\x45\x3e\x93\xd4\x4b\xf3\xd3\xa7\x93\xf4\x5b\x84\x78\x1e\x3a\x7f\xc3\xc2\x4d\x85\xd1\xf0\xcf\x47\x0a\x61\xf0\x40\xfb\xca\x4c\x4d\x68\xbf\xed\xdf\xdf\x1e\x26\x66\x8d\x8f\x53\xd6\xcc\xa6\x4f\x11\xfd\xec\x86\x57\x2c\x92\x4d\xac\x92\xf5\xd9\x50\x4a\xa9\x1b\x51\x60\x6b\x2e\x67\x71\xbf\x15\x86\xd9\x6f\x21\x8a\xf3\x13\xed\xb4\x31\xa0\x4e\x7b\x55\x4c\xab\x7e\xf1\xc9\x91\xb2\x1a\x39\x06\x28\x09\xff\x4b\xa4\x5a\x42\xc7\xc6\xd4\x28\x7b\xfd\x92\x94\xbc\xb0\x92\x39\x31\x40\x81\xf8\x81\x66\x94\xc8\xac\xca\xab\xb4\x2a\xb1\x9c\x4e\xf8\xf9\x3b\xd6\x43\xa1\x3d\x99\x58\xd4\xd1\xca\xae\xd9\xc5\x3c\x43\xbf\x5f\x2a\xe4\xfa\x35\xfc\xd8\xa7\xa7\x24\x0b\xa2\x12\x89\xf3\x91\xf2\x45\xc1\x0d\x43\xe2\xf3\x27\xbe\x8e\x1e\xda\xe1\x90\x61\xdd\xde\x85\xeb\x37\x5e\xf2\x2e\x5c\x5b\xbf\xcd\xc2\x2c\x69\xa1\xdb\xd2\xc5\x34\x56\xf6\xf2\x5b\xf5\x55\x44\x67\xf1\x88\x02\x95\x5c\x57\xd7\xdf\xa5\x4b\xf5\x39\xc4\x8a\x5b\x5e\x39\xdb\xf3\x3c\x8f\xab\x98\x58\xba\x14\xb6\x7a\x5e\x3a\xdd\xd3\x24\x99\x39\xcf\xb2\x0c\x38\xfd\x71\xc7\x8e\xea\x0c\xed\xe2\x78\x8f\x27\x2f\x20\xd3\xeb\x79\x6d\xde\xf8\xff\x28\x85\x05\x91\x7a\xa5\xa5\x81\xd4\xe8\x1f\x21\x21\x11\xc6\x36\xdd\x3c\x46\x3f\x28\x30\xd9\x79\xfc\x74\x0c\x28\xfe\xf9\x44\x1d\x23\x33\xe8\xd4\xc5\xfd\x2c\xc1\x21\xe9\xd7\x69\x50\x1e\x79\x6b\xa2\xb5\x44\x2c\xf4\x2c\x4b\x54\xfb\x16\x1f\x2b\xe2\xea\x5b\xef\xcc\xcb\x2f\xb7\x17\x6d\xbe\x6c\x13\x4f\x8e\x1e\x53\xc6\x94\xca\xe0\x09\x3d\x7c\xea\xe5\x66\x50\x3c\x1c\x22\xc6\xbd\x91\x52\x9c\xe1\x17\x4a\x23\x50\x19\x1a\x6c\x57\xf6\x34\x47\x70\x78\x23\x69\x7a\x07\x7b\x0f\x0b\xee\x1a\x5d\x64\xb4\x36\x4e\x46\xc1\x59\xf4\x5f\x45\x61\xe8\x7a\x76\x4c\x42\xc5\xe6\x6b\x4f\xd2\x35\x07\xbc\x80\x85\x26\x94\xc0\x8d\x58\x4b\x7e\xc8\x1b\x0b\x37\xea\xb4\x46\x96\x7d\x48\xb5\x96\x78\x3c\x29\x4b\xb2\x7b\x91\x92\x6b\xba\x3f\x0a\x07\xc9\x07\xf4\xdd\x50\x9d\xb1\xe0\x02\x76\xcf\x15\x64\x93\xc0\x23\x9f\xa0\x81\x34\xc0\x3b\x3b\x3a\x8a\xa9\x04\x23\x00\xe1\x96\x04\xf5\xa5\x47\x3a\x61\x1a\x30\x8d\x81\x19\x7e\x73\x6b\x7d\xeb\x22\xd9\xbf\xbf\xed\x06\xc3\xc4\xc5\x6c\xd9\x15\x50\x93\xe7\xc7\x1d\x98\x1a\x7a\xc8\x45\xe9\xa4\x4e\x61\xeb\x2d\x44\x20\xf1\xe1\x6a\xb0\xa8\xb1\x69\x9c\x55\xb9\xe9\x09\xa2\x90\x93\x3d\xa5\xc0\x7d\xd1\xab\x04\xd6\x47\x0c\xb9\x12\x7a\x71\xe9\xc0\x42\xbb\xc2\xf0\x16\x01\x3b\x07\x38\x24\x3c\xaf\x19\xf7\xa7\x3d\x1b\x30\xc5\x08\x43\x3b\x59\x95\x74\x03\x65\xbd\x36\x48\xa9\x0e\xcc\x8a\xcd\x5d\xbc\xac\x27\x54\xe3\x2a\xb8\x0d\x1a\xcd\x49\x56\xa5\x3d\x3b\xd6\x57\x54\x42\xfd\x77\x94\xd9\xe7\x29\x45\x29\xb6\x83\x61\xdf\x14\xee\x55\x8b\x0e\x02\x16\xf6\x19\x1c\x06\xfc\x44\x35\x96\x8a\xb5\xc1\xd0\x94\x7d\xae\xbf\xb0\x22\x30\xb2\xe4\xc7\xaa\x48\x26\x47\xff\x2e\x77\x48\x91\x47\x5f\xc7\xa2\xf4\xd6\x49\xc1\x1a\xba\xb1\xb2\x28\xca\xaa\x6b\x7d\x9b\x4c\x56\x85\x82\x72\xea\x39\x7f\x37\x1b\xb8\x94\xec\x3d\xf7\xee\xf5\xd8\x91\x3a\x1d\x12\x84\x48\x83\x50\x40\x99\x9b\xb4\xe8\xd9\xd4\xc5\xd0\x71\x12\x5b\x80\x50\xf2\x68\x93\xff\x5f\xf9\x07\xff\x60\xaa\xde\x15\xa8\x29\xae\x45\x9a\x15\xa2\x54\x1c\xde\x53\x53\xeb\x57\xb2\x45\xb4\x4f\x54\x87\x78\xce\x7b\x93\xd3\x15\xc7\x0e\x65\x54\x1d\x0a\xb0\x2b\x63\x68\x5f\xba\x15\xc2\xef\x96\xa9\x14\x7d\x73\xe7\x9d\x94\x11\xc2\xae\x2a\x26\xd3\xd5\x51\xc8\xb3\x4c\x77\xe0\x52\x57\x94\xb9\x11\x5d\x47\xc4\xff\xcb\x51\x98\x68\x5d\x9e\xa8\x1b\xf6\xcd\xb7\x13\x6b\x7c\x81\x2f\x86\x5a\xf5\x4b\x04\x3a\xe7\x65\x3d\x12\xd3\x2b\xfa\x0e\x2a\x48\x68\x2f\x4f\x53\xd0\xe4\xc7\x0d\x96\xa9\x07\xdb\x65\x5e\x15\x65\x4b\xe9\x8f\xa1\x4a\xe3\xc7\x9a\x1c\x66\x88\x6d\x3b\xad\x18\xce\x7f\x34\x0a\x27\xda\x49\xb5\xca\xff\x88\x82\x9b\x64\x34\x7e\xda\x5b\xa5\x8e\x15\x28\x44\x11\xa4\xe5\x95\x16\xb5\x6f\xc7\x07\x4d\x9b\x31\xeb\x76\x5d\xe9\x24\x7a\x48\xc5\xa5\xe4\xb0\xcf\x44\x9f\xfb\x94\x63\x90\xda\x6c\x2e\xb5\x45\x31\x15\xe8\xf3\x50\x98\x17\x72\x7f\x08\x7e\x97\xa2\x87\x7d\xf2\xf0\xf9\xbf\xeb\x85\x9d\xae\xfe\x08\xba\x86\xe8\x7b\xcd\x90\x37\x2f\x32\xac\xbb\xa4\xea\x06\x98\xcf\xd4\x7a\x60\x99\x5d\x19\xb5\x5e\x0a\x8b\xb1\xde\x02\xb2\x39\x69\x95\x72\xe3\x89\xfa\x12\xe8\x77\x3c\xd2\xa1\x83\x03\x0b\xe1\x26\x3a\x95\x54\xa8\x3c\xf6\xd4\x3a\xfd\x68\xb1\x1d\x0b\xa1\xff\x2d\xfa\x11\x22\xdb\xa1\x2e\xc6\x0c\x21\xa5\x39\x23\x87\x4d\x21\x12\x99\xcd\x68\xea\xe0\x3f\xfc\x2d\x6f\xed\x49\x1b\x01\x4f\x4e\xa2\x06\x46\x3c\x7c\x30\x6a\xfd\xe6\x41\x9e\x9b\xb4\x3a\xf5\x5e\xc6\xff\xff\x99\x12\x63\x6b\x75\xa6\x5e\x5a\x50\x96\x5a\x07\x16\xa4\xab\xcf\xca\x14\xb8\xcb\x70\x72\x41\xa2\xb9\xbb\x83\xe0\x8d\x46\xf0\xbd\x08\x9a\xe5\x48\x62\x77\xaf\xd3\xca\xc2\x3f\xed\x5e\xa7\x5d\x89\xa9\xfe\x95\x48\x39\x52\xb0\x88\x2e\xab\x98\x8e\x02\xc3\xe0\xcc\xd8\x88\xc9\xe6\x15\x6d\x31\x9c\xfe\x67\x47\x21\x13\xd0\x92\x35\xb9\x5b\x4a\xd8\x19\x0c\x67\x3c\x7c\xf6\xf8\x71\xe7\xd3\x94\x08\x97\xd7\xb8\x8c\x17\xa0\x9e\x12\x62\x7f\xbd\x09\x76\x50\x17\xc3\xab\x66\x4d\x1b\x71\x8e\x95\x49\x0d\xe7\x25\x19\x56\xd3\x81\xa9\xe8\x37\x47\x95\x7d\xdc\x51\x05\x9c\x49\x6c\x51\x64\xa9\xa6\x90\x8c\x59\x85\x04\x4a\xcf\x52\x5e\x57\x9c\x29\xe0\xbe\x08\x80\x8f\x29\xf2\xcc\xce\x75\xc5\x1d\x9a\x74\x7e\xd9\x37\xdf\x36\x4b\x4b\x36\x2e\x8b\x29\x25\xf2\xc9\xe9\x82\xf8\xf5\x2b\x71\xb8\xcb\x13\x9d\x4e\xca\xe4\x2b\x8a\x81\x5b\x1c\xe2\x6f\x28\x87\xf8\x1b\xd1\xe3\x2a\x6a\xae\xb8\xc2\xe6\xd3\x21\x54\xbc\xcd\xcb\x46\xd4\x1e\x68\xe1\x89\x0e\x44\x60\x7c\xbd\xad\x44\x7f\x86\xb9\x1d\x9a\xb5\x81\x97\xbe\x44\xbb\x01\x22\x5d\xfc\x58\xc1\x58\x87\x79\xb6\x04\xb6\x99\x49\x1e\xd2\xe3\x5f\xfa\x7b\xcc\xbb\x37\x14\x47\x01\xec\x66\xfc\xfe\x77\x90\xb2\xb2\x4b\x8a\xd2\xed\x7b\x67\xab\x7b\x8a\x4c\xce\x37\x94\x0b\x72\x42\x2e\xc8\x3b\x83\x81\xf5\xb7\x94\xa7\xc1\x39\xe4\xb9\xc2\x34\xf4\x89\xc4\x4b\x4f\x12\x46\xce\xeb\xdf\x06\x92\xe3\xff\x19\x29\x39\xb3\x6d\xeb\x8f\x29\x0d\xa1\x15\x97\xf6\xc8\x59\xc6\xb3\x18\x83\x3a\xee\x49\x04\x0c\x64\x91\x47\xe0\xb0\xcb\x4f\x94\x37\x28\x0b\x5a\xf1\x13\x0d\x4c\xa9\x8a\x32\x1b\xd8\x1c\x66\x21\xdc\xe4\x8d\x14\xb4\x71\xa4\xec\x1f\xc6\x67\x67\x01\x92\xa4\xfa\x0d\x96\x1a\x13\x3b\xeb\xa8\x27\x9c\x07\xfa\x59\x5e\xd9\x35\x78\x4b\x02\xcc\x89\x7d\xfe\xd9\xf5\x3a\x36\x20\xd5\x3a\xa7\xf8\xa2\xf0\xac\xc7\xc6\x98\xea\xa8\x4e\x43\x1f\xe3\x01\xec\xc9\xab\x7a\x06\x7f\x61\x34\x91\x01\x4a\x4e\x3e\x29\x35\xd2\x4e\xdc\x57\x2a\xd7\x75\xe5\xda\x38\x73\xe8\x37\x5e\xf2\xb9\xc4\xd6\x17\xd5\xd5\x36\x72\x71\x57\xb6\x02\xaf\x1d\x98\x00\x7e\xdc\xa4\x90\x40\xaa\xeb\x6a\x18\x76\x46\x0d\xc3\x26\x67\x97\x73\x87\xea\x0f\xc9\xf2\x52\x0d\x8d\x37\x95\x7a\xe5\x66\x93\x1f\x65\x61\x12\x57\x2c\x56\x39\x7e\x0c\x4b\x75\xe2\xda\x88\x6e\xe7\x98\x68\x0f\xe6\x1e\x32\xe2\x41\x94\xe3\xc7\x63\x00\xb4\x65\xa7\x79\x9c\xe0\xe1\xf3\xe3\xf5\x47\x95\x8f\x89\x49\xb5\x2f\x06\x58\xff\xd2\x1d\xa3\x48\x83\x2c\x96\x85\x9f\x7c\x7b\xdd\x23\x88\xee\xa8\xd9\x51\x0b\xed\x45\x36\xcd\xa1\x4d\xab\xe0\xf7\x07\x3d\x20\x44\x4b\x16\x9e\xd3\x22\x25\xc3\x2c\x2d\xc4\x49\x14\xbf\x1e\x5a\xd9\xfc\x38\x0a\x46\x05\x4b\xc4\x6c\x5e\x98\x6d\x24\xee\x86\x8e\xf2\x52\x95\xe7\xd9\x6a\xa1\x30\x65\xef\x2a\x4c\xd9\xbb\xca\x52\x2d\x4b\xed\x67\xea\x7f\x41\x6a\xfa\x26\x5d\x07\x00\xfb\xbe\x49\x33\x0f\x65\x6c\x22\xae\xa1\x3b\xf1\x73\x01\xb0\xbd\xa4\xcd\x95\xcf\x2a\xdb\x98\x4d\x1c\xfb\x1e\x0d\x55\x87\x3b\x64\x48\x9b\x74\x85\x30\x6b\x7e\xa8\x53\x6f\x3f\x01\xae\xd3\xe9\xce\x9f\x38\xaa\x13\x18\x84\xb8\xaf\x8f\xc2\x20\xee\x4d\xbe\x8a\xc8\x3a\x18\xde\x8b\x73\x75\xc7\xba\xa2\x61\xb1\x57\x24\x52\x1b\x26\x4f\x21\xc7\xda\xb1\x5e\x87\x41\x5f\x09\xd5\x11\xc9\xab\xa7\xd6\x11\x49\xd4\x53\x03\x6a\x3d\xcf\x16\x5d\x3a\xde\xbc\x53\x78\xc0\x8d\x89\xc3\x48\x8e\xf3\x6e\x56\x2d\x0a\x57\x5a\x76\x1e\x7d\x2b\xd9\x7a\x4d\x36\x1b\x55\xbe\xe2\x56\x24\x1d\xe5\x45\x18\x29\x4b\xda\xc9\xde\x27\xed\xf2\xb4\xb4\xb9\xf5\xfa\x27\x1c\xd0\x80\x94\xe1\xc7\x1d\xa9\x82\x97\x8c\x4b\x76\x04\xd0\xec\x2e\x5c\x36\x64\xd8\x53\x1d\x3a\xf5\xd0\x32\xf8\xe1\x28\x4c\xee\x90\x05\xb2\x58\x05\x0e\xf8\x9d\x6a\x88\x93\xdb\xc2\x9a\x3c\xee\x3f\xac\xba\xb7\xa7\x70\x71\x45\x58\x9e\x2e\xae\x28\xce\xd3\x72\x40\x5f\xe3\xbf\xd5\x08\xaf\x48\xcd\xe9\xa4\x22\x47\x41\x06\x72\x38\xd2\xb3\x4b\xb4\x20\xf8\xe5\x91\x12\x5e\x7a\xa0\x76\x55\xcf\xe4\x5d\xb2\xda\x09\x10\x11\x0e\xf0\xb2\x39\x15\x2f\xa1\x9f\xad\x16\x3b\x94\x9c\xe4\x79\x05\xe5\x9b\xc6\xea\xc1\x5e\x97\x5d\xac\x92\xc6\xe7\xbd\x7a\xa8\xef\x82\x3e\xf1\x4c\x47\x29\x5e\x0f\x86\x49\xb6\x66\x6d\xb1\xbb\xbe\x9c\x18\x3f\xb1\x74\xdf\x98\x3e\x01\x76\xc7\x1d\xba\xc2\x68\xc6\x3e\xa6\xa4\x58\xd6\x23\xe5\x32\xfd\x31\xf6\x93\x18\x94\xd2\x97\xc0\x80\xe8\x94\x76\x98\x7c\x73\xa4\xc6\x3b\x90\x08\x45\x48\xde\xbd\xfe\x68\x60\x3c\x55\x4b\x4b\x63\x8e\xa4\x23\xcd\x04\x6d\xe8\x65\x2f\xb9\xbc\x28\xa7\xc3\x4d\xdb\xd9\x51\x2d\x63\xd4\x5b\xe0\x2f\x6e\x2a\x8f\xc8\xef\xaa\xe9\x44\xd7\x76\xab\xb8\x6c\x05\x3e\x3f\xeb\x92\x4a\x2f\x7d\x9c\x92\x92\xbb\xae\x9d\x56\x22\xf6\x53\x1d\xad\x1d\x06\x11\xd4\xb1\xe6\x20\x2a\xa0\xa3\x9f\xaa\xee\xb7\x9a\xe5\x45\x39\x53\xaf\xcd\xcd\x19\x7c\x75\xd1\x92\xa3\x4b\x27\xa3\xe4\x96\x36\x4d\x0b\xcb\xe6\xba\xc7\x31\x17\xae\x6b\x93\xba\xfc\x9b\x52\x57\xef\x81\x6a\xc4\x8c\x5d\xc9\x89\xa9\xc0\xaf\xb7\x5f\xa9\x06\x43\xf1\x26\xf1\xf5\x77\x30\xb7\x56\x4c\xb3\xc5\xdc\xa4\xdd\x02\xd0\x5f\xdf\xe0\xf2\x7e\xb0\x17\x68\x3b\x88\xa0\x55\x58\x78\x83\x2a\xef\xda\x9c\xac\xaf\xf6\xcd\x7b\xcb\x67\x7a\x13\xe9\xf0\x3d\xaa\x9c\xe6\x8a\x65\xc8\x86\x89\x0c\x72\xcb\xab\xcb\x9e\xd2\x17\x80\x65\xf2\x65\x8f\xe3\x66\xf0\x78\x7f\x22\xa2\x91\x4e\x75\x6e\x5c\xaf\x8f\xd2\x00\x7f\x87\x63\x19\x51\x1f\x8a\xc3\x98\xca\x1e\x6f\x34\xa1\x5d\xcc\xed\xaa\x60\xab\x21\x57\x84\x79\x01\x3f\xd6\xc4\x56\x53\x14\x26\xee\x57\x85\x2d\x59\xb0\x4e\xb0\x68\xf4\xa3\x59\xdf\x3d\x0a\xe3\x49\x6e\x84\x4b\x75\xa0\x78\x29\x27\x31\x7b\xe4\x41\x56\xda\xcb\x25\x71\x9f\x51\x29\xdb\x3d\xfe\xf5\x68\x6a\xbc\x8e\x4d\x29\x60\x3c\x05\x7d\xd7\xe9\xf2\xa4\x35\xf0\x8b\xb3\x5f\x6e\x17\xd9\xc0\x2e\x66\xdd\x35\x45\xea\x3a\x16\x05\x10\xf2\xb1\x09\x3a\xf5\xe7\x69\x02\x61\x8a\x32\xaf\xe2\xb2\x62\x37\x1d\x9f\xfa\x2a\xf5\xfe\x27\x94\xf2\x54\x69\x7b\x19\x03\x56\x71\x30\x6e\x07\x9e\x86\x9f\x74\x02\x66\xce\x95\x26\x59\xdb\xa1\xf4\xd9\x40\xc1\x62\x04\x04\xfd\x36\xa4\x3b\xdb\x3a\x6a\x40\x85\x44\x1b\x27\xc9\xbd\xd1\x58\x3b\x76\x52\xa0\xb9\xbe\x59\xdc\xdb\x17\x98\x95\x9a\xe9\x5c\x88\x02\xe6\x0a\x36\x40\x6e\xc9\x89\xca\x9e\x06\xff\x89\x96\x67\x43\x7f\x2b\x5b\x4d\xfd\x40\xd1\x13\x25\xfd\x00\xe2\xcf\xe9\x57\xb0\x82\x55\x13\x4b\xa6\xcc\x5d\x2a\xd9\x36\x4a\xbf\x3b\xb8\x91\xfc\x64\xab\xf4\xde\x8b\xb3\xf3\xed\x43\x2f\x4c\x2b\x8f\x9f\x7f\x39\x52\x8d\x54\x88\x61\x61\x44\x7c\x4c\x95\x5f\xb7\x15\x3d\xcd\xc4\x71\x56\xa5\x64\x91\x36\x33\xa6\xce\x17\x70\xf2\xb8\xbb\x28\x2e\x3f\xa0\x8d\x8f\x7d\xc0\x44\x52\xd9\xe5\x93\x8c\xa4\xe7\xdb\x71\x56\x70\x9d\x2a\x9d\x9d\x90\xb0\x6f\x4c\xd8\xac\x40\x61\x8c\x12\x8b\x61\xce\x4a\x4c\x38\x70\x4e\x68\x23\xdf\xef\x8f\x59\x3e\x6a\x51\x67\x93\x2f\x17\x53\x61\xc8\xa7\x39\xe3\x67\xa8\x87\x25\xe6\x1a\x61\x52\xf6\x4a\x95\xaf\x4d\x2b\x1e\xe1\x49\xad\xae\xc2\xf0\x6f\x01\x5e\x6a\x45\xf1\x3a\xee\x78\xe4\xdc\x8a\xcb\x33\xf2\xba\x86\x70\x25\xb0\xa3\x52\x38\xd3\x62\x40\x3a\x8f\x8c\x82\x1f\x53\xc3\x47\xaa\xe8\xa6\xa9\xa5\xc9\x07\x99\x27\x9f\xe8\x41\x9e\x4c\xe8\xfe\xb6\xaa\xf3\x5d\x1a\xdb\x32\x4b\xff\xcb\xff\x30\xb5\xab\x75\x65\x34\x15\x26\x08\x50\x75\x91\x06\x4d\x4b\xa9\x89\x49\x7e\x66\x12\x53\x4c\xd5\xd9\x2f\x4e\xf4\xeb\x91\x92\x45\xc6\x82\xc2\x96\x3c\xd2\x34\xcf\x44\x1f\x45\x30\xf4\xe2\xd0\x10\xe8\x54\x1c\x0a\x51\x66\x7e\xa2\xda\xb0\x4b\x36\x2f\x5d\x62\x5b\xea\x24\x3e\x11\x12\x9a\xdf\x3d\xa1\x4e\xe5\xae\x1d\xe6\x6e\x65\x3c\xd5\x1c\xd7\x0e\xf8\xb4\x8c\x38\xcd\x06\x55\x6e\xe8\x6a\x88\x32\x47\xfd\x11\x9e\xf2\x39\xef\x7d\xb7\x67\x26\x14\x87\xbd\x38\xef\x5a\xda\x65\x1f\x62\x81\x58\x68\xbc\x45\xc3\xca\x9f\x6f\x0f\xb2\xa2\x9c\xa2\x04\x14\x41\xf8\x1a\x52\x53\xdc\x3a\xc6\x4d\x23\xbd\xfe\xb9\x1a\x9e\x98\xd4\x24\x3d\x5b\x60\x7c\x70\xd0\x7b\xe5\x86\xf0\xb9\xd1\x68\x20\x3d\x30\x2e\x2d\x8d\x4b\x2d\x44\x75\xc5\xaf\x43\x49\xa4\x6f\x46\x6a\x1c\xb0\xb1\x95\xaa\xb3\x7f\x7f\x7b\xdf\xfc\x67\x68\xa1\xb2\x0f\x0e\x75\x66\x91\x47\xfc\x35\x2d\x54\x6c\xff\x1f\xea\xe1\xd8\x27\x54\xae\x01\x3d\xf4\x11\x66\x0f\x98\x2a\x30\x3b\x1b\xd1\xe3\xb5\x48\x71\xfe\x3e\x41\xcb\x13\xc9\x1a\xfc\xca\x82\x3c\x83\x2f\x62\xff\x40\x41\x2b\x7f\x17\x41\x5d\x68\x1c\x41\x11\xf4\xc6\x28\x50\xac\x7f\x8f\xd8\xe8\x5e\xdf\xe9\x80\x3a\x13\xf5\x88\x8d\xc5\x85\xc0\xd1\x45\xe2\xc3\x45\x68\x14\xe0\x5c\x3c\x05\xc7\xcf\x3a\xd9\x20\x86\x49\xc2\x65\xa6\x24\x93\xb7\x96\x77\xa1\xfa\xcb\x91\x42\xd8\xfd\x65\x03\x0a\x61\xbe\xdd\xcf\x92\x80\x50\x13\x34\x71\xfd\xc1\x02\x26\x0e\x95\x44\x6e\x89\x3c\x87\x79\xb7\x1f\x07\xfb\x2d\x35\x29\xcb\xfb\xd2\xdc\xa1\x76\x16\xc7\x95\xcc\x32\x95\xcb\xf2\x01\xbf\x74\x42\x87\xe8\x0b\x07\xf8\xd4\xc0\xf6\x79\x10\x8d\xab\x15\x79\x52\xf8\xdb\x34\xb5\x45\x81\x72\x5a\x61\x78\x8a\xa1\x8d\x9d\x49\xf8\xa8\xc2\x89\x7b\x57\x0d\x40\xef\x2a\x1a\xa0\xa1\x26\x69\xe2\x4c\x8a\xac\x55\xf0\x76\x4a\x23\x1a\x1d\x45\xe4\x44\xd7\x26\x20\x5b\x0b\xb3\xed\xd4\x1e\x46\x93\x45\x26\x5d\xf5\x02\x11\x3c\x61\xc3\x41\xda\xcf\x0a\x0a\x2d\x81\x70\x84\xc0\xc7\x8f\xd5\x95\x4e\x33\xa2\xf9\xaf\xe1\xb2\xf9\xd3\xa6\xbe\x6c\xfc\x44\x35\x5f\xeb\xc3\x72\x30\x4c\x5c\xd1\x9f\x52\xa8\xc9\x23\xa3\x50\x65\x71\xb3\x5a\x80\x9e\x5a\x28\x67\xb1\xe4\xdc\xc3\x2b\xbd\x78\xdd\xa1\x33\x57\x94\x38\xff\x20\x2b\xb3\x3c\x5e\x8b\x13\xc6\x27\x0a\xa7\x5d\x99\x22\x9d\x6d\x70\x32\x3f\x28\x54\xa4\x40\x5b\x41\xd2\xca\x8f\x27\x02\xc7\xfe\xfd\xed\x61\x96\xac\xe5\xfd\xb5\xb2\x3f\xe0\x91\x28\x3b\xdf\xaa\xde\xf3\x69\x8f\x74\x59\xb4\x89\xb3\x5c\xb7\xb1\x6f\x90\x72\xc0\x39\xa1\x11\x45\xa6\x9f\x2a\x5f\x99\xcd\x28\x94\x81\x9b\x6a\x61\xc4\x7d\x3b\x70\xb1\x49\x60\xb6\x78\x20\x08\x35\x85\xf3\xee\x9c\x46\x47\xdc\x6e\x9a\x47\x0c\x6c\x62\x52\xc7\x72\x5b\x68\x9d\xa3\x20\xe4\xc7\x8a\x7a\x59\xba\x02\x8b\x1e\xe1\xe7\xa1\xf5\x30\xe6\x7b\xa2\x13\x20\xbf\xbb\xa9\xdb\x8a\x7e\xc4\x24\x97\x61\x61\x96\x4a\x44\x93\x24\x4a\xb5\xeb\x14\xbe\x26\x72\x55\x80\x18\x70\xa6\xdc\xf5\x22\x7e\x5d\x1b\xe7\xd6\x62\x95\x41\xc3\x02\x8b\x9e\x1f\xab\xce\x79\x2f\xcf\xaa\x61\x01\x13\x0c\xe4\x6e\x5c\x0d\x62\x51\x89\x93\x00\xb3\x91\x46\x2a\xbd\xd8\xa6\x8a\xf7\x5b\x68\x76\xa3\x49\x71\x5b\xd9\xe5\x7d\x10\x8d\x4d\xd4\x87\x59\x61\xbb\x8f\xd2\x9b\x78\x60\xd9\xfe\xfd\xbc\xf6\x39\xc3\xc3\x77\x3c\x81\xc1\x31\x72\xbf\x1f\x51\x8a\x20\x7f\x15\x6c\xa2\xdf\x8f\x94\x3e\xc5\xfd\x28\x9c\x46\x57\xd5\x22\x60\xd4\x11\xbe\xdb\x87\x38\x39\xf8\x6d\xa9\x2c\xdf\xbc\x34\x52\x96\x7e\x17\x14\x67\xa9\xd7\x93\x1c\x40\x6c\xbe\xe8\x0b\x8a\xff\x57\xb8\xd7\xb9\x13\xed\x4f\xb4\x16\x99\x4f\xcb\x4f\x26\x32\xcf\xba\xe8\x1b\x66\xa5\xb0\x19\x5b\x41\xa3\xe7\x92\x62\x32\x5d\x52\x95\xae\x49\xec\x61\x93\x76\x6d\x3e\xa5\x2a\xd8\x33\xaa\xa1\x7e\x9f\xfa\xe4\x38\x53\x2e\x29\xbd\xd0\xa2\x34\x25\x49\xff\x7d\xe9\x8b\x82\xbf\xa1\xbb\x23\x58\x1c\xe5\x1a\x14\x77\xeb\xf2\xaf\xab\xa6\x7f\xe3\x18\xbe\x06\xbe\xd0\xc0\x1c\x76\x83\x6a\x40\x2f\x11\xba\x99\xa2\x9e\xa9\x66\x55\x95\x16\xae\xe7\xd5\xda\x50\x0d\x43\x0e\x83\x1f\x4f\x40\x61\xff\x5e\x3b\x7e\xce\x3d\xb7\x34\x15\xc2\xfc\x55\x45\xf2\x80\x06\x19\x8b\x05\x4c\xe4\x89\x84\xbe\x20\xd3\x15\x3e\xa0\xd0\x62\xbb\x15\x29\x75\xf5\x5b\x2a\xd2\xba\xf4\x15\xe6\x6f\x4d\x29\x8e\x31\x46\x45\xbe\x85\x55\xdf\x7a\xac\x9b\x33\x4d\xc2\x43\xf6\xf0\x90\x12\x53\x9d\x34\xfe\x4c\x91\x33\x7f\xd6\xf0\xa2\x2f\xb7\xeb\x4a\x7e\x5c\x53\xfb\x03\xad\xa9\x3d\x1e\xd3\x07\x6b\x0f\x05\x46\x08\xeb\x67\x22\x03\xfe\x1e\x32\x25\x11\x07\xa9\xaf\x8d\xd6\x21\x92\xde\x67\xbd\x46\xb8\xdc\xa5\xa3\x56\xa9\x78\x1f\xf0\x10\xe3\x26\xaf\x97\x32\x37\xb1\xe5\x25\x2e\x22\xe4\xf4\x89\xfc\x64\x62\x89\x1f\x7a\xa1\x6d\x7a\x68\x2a\xac\x10\x13\xeb\x45\x11\x93\x38\xab\x84\x25\xce\xaa\x78\x99\x25\xc9\x0e\x25\x6c\x74\x33\x0a\x0d\xca\x29\x8c\xf1\x91\x20\x5e\x47\xc6\xc4\xc2\x66\x68\x5d\x22\x47\x03\xa4\x05\x07\xc4\xee\xce\x67\x94\x01\x5b\x69\x73\x97\xe5\x06\x78\x13\x8f\x64\x80\xca\x1c\x3f\x9e\x64\x76\xee\xfd\xff\xaa\x0c\xd6\xa8\x45\x5a\xae\x05\xb5\x25\xa1\x4e\x04\x00\xe9\xef\x6b\x1f\x13\x6b\xf2\x47\xea\xeb\x24\x96\x8a\xca\x3c\xfb\x4d\x1a\x29\xb0\xcc\x14\xda\x30\x42\x52\x69\x79\xdd\xd9\x0b\x5a\xc0\x9a\x5b\x8e\xfc\x5e\xda\x70\xf3\xa3\x88\x5a\xe0\x80\x4b\x9c\x50\xf4\xc0\x0b\x4a\xb3\x6c\x77\x07\xb3\x62\xfe\x2b\x25\xb9\xd3\xb5\x45\x99\x67\x6b\x2e\xed\x31\x0f\x57\xac\xee\x03\xda\x78\x3b\x21\xee\x36\x6f\x4d\xb4\x04\x7f\x6b\xae\x5d\xa5\xae\xb4\xea\x26\xbc\x3d\x0a\x7e\x5e\x6f\xfb\xf3\x2b\xb5\x49\xc1\xd8\x20\xa5\xc8\x2f\x37\xfa\xbc\xa2\xc9\x98\x22\xc6\x9c\x73\x8a\x7e\x95\x78\x06\xb5\xbc\x6c\xcb\x6d\xca\xd6\xe5\x80\x6f\x38\x60\x57\x5c\xe1\x88\x1e\xef\x69\x26\x77\xc6\x30\xfa\x2d\xaf\x64\x72\x42\x35\x9b\x16\x2b\x47\xf9\xf5\x4e\xe5\x9b\x75\x41\x23\xc5\x4f\x62\x1f\x7b\xa0\x8c\x3f\xc0\x2e\xab\x84\x61\xcc\xff\x10\x95\x17\x46\x42\x1f\x2a\x3f\xe9\x81\xc9\x4b\x97\x3a\xa4\x2d\xa8\x8c\xfe\x92\xde\x43\x24\xf4\x69\x15\xca\x00\xa6\xa1\x4f\x94\xdb\xd2\xb8\x64\x3a\x44\xe9\x4b\x74\x4d\xd8\x19\x95\x6e\x00\x4a\x29\x04\x7c\x31\x54\x6b\xc8\x7f\x6c\x11\x67\x79\x29\xe2\x99\xbe\x6d\x11\xac\x60\x50\xfd\xe3\x0a\x6c\xf8\x51\xb4\x07\x3f\x68\x88\xc3\xa7\x23\x21\x9e\x52\xc7\x17\xda\x7f\x26\x69\x05\x52\xe6\x1d\x6c\x00\x21\x2a\x6f\xad\x99\x88\x14\x19\xe7\xb6\xeb\x44\x80\x41\x9c\x7b\x43\x5a\x72\xbc\xc1\x0f\xb1\x5b\x0d\x86\x2d\x45\x74\x81\x15\x97\xe4\xb6\x4f\x8e\xd7\xb0\x2f\xbf\xdc\xfe\xe5\x29\xa5\x3d\x76\x82\xc6\x79\x42\x96\xa8\x3f\x48\x60\x05\xa1\x03\x9d\xb8\x65\xfb\xa4\xb2\xf7\x8a\x54\x09\xfc\x37\x74\x47\x90\xd5\xfc\x93\x51\xeb\xb7\xe6\x3c\xff\x91\x16\x08\xab\xba\x44\x6a\x82\x73\x0b\xd3\x44\xd1\xff\x50\x0d\xe0\x0d\x2a\xa1\x51\xe8\x5e\x8e\x94\xe4\x32\x23\x9d\x50\x04\x7c\x77\x14\x1c\xd5\xfe\x2a\x52\xe6\x51\x3f\xe6\xa6\x2f\x02\xc1\x7f\x15\x05\xf4\x30\x24\x43\x30\x4c\x38\x8d\xf1\xa7\xb4\xe3\xea\xe5\x0d\x96\xe7\x71\xb5\x72\xcb\xac\xca\x5d\x31\x50\x86\x20\x1f\x45\xea\x8b\x7e\x34\x86\x27\x1e\xa4\x0e\x61\x52\x58\xe7\xad\xc0\x40\xf7\x4e\x65\x8b\x89\xe9\x76\xc1\x91\x95\x26\x24\x70\x05\xfc\xb8\x11\x90\xdf\x37\x79\xd1\xe7\x3c\x8b\x4b\x40\xfa\x55\x52\x0e\x36\x8c\xef\xa9\xc5\xe5\x86\x89\x45\xc2\x85\xdf\xbf\xa9\xb6\xc7\x1e\xca\xe1\xb1\xef\xef\x37\x59\xdc\x2e\xd9\x81\x91\x76\x93\xe0\xad\xeb\x97\xf0\xe3\x4f\x1d\xaa\x0e\x5c\x61\xf3\x35\xf2\x6b\xc5\x3a\xf9\x86\x72\xbb\x81\xc4\xa0\x87\xb5\x28\xcf\xa6\xa6\x7d\x6f\xbb\xae\x28\xb3\x56\x40\x8c\xb3\x8f\x0f\x3f\x51\x37\x2a\xaf\x52\x23\xac\x46\x0e\x95\xb8\x51\xc8\x13\x5f\x1e\x29\x5a\xaa\x26\xb6\x12\xc2\x72\x2a\xe8\xe8\x9f\xa3\x4e\x0e\x2b\xc7\x53\xcc\x13\x02\x84\x57\x0d\xcf\xed\x8a\x71\x89\xe4\x49\x3e\xd9\x57\x99\xbf\x3f\x05\x06\x55\x59\x99\x64\x4a\xb5\xc4\x71\x09\x05\xc1\xaa\x70\xdd\x93\x3d\xcd\xbd\x7b\x69\xe8\x50\x12\xd9\x7f\x41\xcc\xff\x80\xca\x97\xa8\xe3\xcb\x25\x1a\x54\x4d\xd3\x37\x62\x87\x29\xa5\xbb\xf3\x36\xbe\x9d\xd8\xbc\x06\xbe\xcd\xc6\x68\xc2\x28\xeb\x60\xbd\xe0\x1e\xa3\xf8\x84\xa4\xeb\x0a\xe1\xe7\xb1\xb1\xdf\x8a\xf4\x4a\x55\xca\x9e\x17\xa2\x31\x97\x83\x80\xe6\x39\xae\x8f\x74\x80\xda\x85\x12\x12\xd4\x29\xaf\xd3\x4e\xc6\x49\x7f\x03\x15\x1a\xb6\xf8\x47\x08\x11\xb8\xa1\xdf\x18\x05\xd1\xe5\x07\xb8\xb9\x2a\x8b\x11\xc1\x95\x93\xa3\x5f\x9a\x4c\x6d\x4b\x9b\xd8\x38\x1b\x0c\xaa\x34\xe0\xc1\x83\xf3\x1c\xc6\x14\x62\xc0\x18\xb0\x75\xf5\x7f\xc4\xae\x84\x1c\xc2\x36\x2f\x45\x01\x5a\xec\x06\x46\x23\x0e\xfe\x15\xae\xb1\x70\x0e\x54\xd9\x9e\xe5\x2e\x2d\xfb\xce\x70\xd1\x8d\x63\x06\xba\xdb\xfc\x58\x85\xd8\xa1\x93\x1d\x8b\xb0\x7a\x87\x60\xa2\xdc\xb6\x1b\x85\xd5\x7d\x5b\xe5\x5d\x89\x79\x15\x8d\x25\x6f\x2e\xee\x6d\x3d\xaf\x28\x12\x63\x9c\x9b\xa2\x6f\x8b\x16\x1d\x5b\x32\x9a\x53\x63\x3a\x35\xe5\x18\xe6\xa4\x02\xec\xb2\xaa\x68\x51\x5d\x8c\x9c\xfb\x12\x9a\xb2\xfc\x44\x4d\x05\x0a\xd7\xb5\x6c\xaf\xeb\x79\x61\x5f\xf8\xed\x30\x73\xf2\xce\xe5\x2c\x77\xc9\x7f\xa4\xd4\x5e\x06\x26\x35\x3d\x8b\xf0\xc9\x5a\xc0\x74\x85\x44\x17\x58\x5a\xef\xb9\x71\xa0\xf5\x61\xe5\x20\x51\xe3\xd8\x72\x1d\xeb\x00\xd3\xe5\xb3\xa3\x5d\xbc\x0e\xda\xcf\xed\x69\xed\xdd\x2b\xf6\xa9\xe0\x5c\x61\x83\x3f\x18\x29\x5d\xfe\xe3\x38\x9b\xc4\x9f\xad\x5e\x9d\xe2\xb9\x11\x5a\xfd\xac\x92\xc3\x6e\x1a\x6a\x27\x5d\x8a\x94\xaa\xff\xf1\x51\xeb\xd9\x67\xf9\xab\x5f\x89\x82\xbf\xfa\xb6\xce\xb8\x13\x7e\x18\x1f\xfe\x29\xe2\x1a\xfa\x17\x0f\xad\xef\x51\x47\x2e\x19\xdd\xd5\x47\xa0\x07\xfa\x04\x6f\xd6\x8b\x6a\x15\x94\x19\xeb\x16\x34\x59\xbd\x3d\x39\x5e\x4b\xf4\x08\x0f\x59\x6f\x4c\x14\x8a\x47\xa3\xd0\x92\x3b\xea\x21\xa3\x44\x89\xf3\xf3\x39\x44\x80\x7f\xae\x4e\x50\x4d\x69\xb8\xdd\xa4\xb0\xb7\x98\x5b\xb3\x4c\xdf\x09\xbd\x98\x3f\xa7\x0b\xc6\x8f\xc7\x40\xac\x83\x01\x17\x36\xe8\xa9\x1e\x53\xae\x1b\xc7\x3c\xdd\x2c\xee\x9b\x7c\xd0\x9a\x30\xdd\x90\xda\x21\x0c\xe3\x7b\x49\xb6\xc2\x8a\x18\x82\x10\xae\x97\xa0\x34\x1d\x3e\xab\x38\x62\x22\x77\x0d\x22\x4c\x18\x90\x44\x1a\x74\xd8\xe0\xf0\x74\xb0\xbd\x64\xbb\x36\x77\x71\x46\xaf\x52\x5e\x2f\x7e\x24\x38\xd1\x98\x9d\x3b\xd4\x5e\x32\x49\x42\x82\xcb\xd8\xdd\x60\x36\x21\xd1\xd9\xb6\xae\xa5\xc2\x90\x5a\x49\x06\x1f\x28\xcd\x3d\x9b\x12\x60\x20\x59\xd3\x73\xae\x73\x1a\x7a\x72\x2e\xb0\x69\xaa\x92\xd9\x87\x74\xf3\xae\x3d\xd3\x51\x93\x3b\x58\xae\x62\x82\xf0\x60\x14\xf8\x85\x17\x3d\x7c\x62\xa9\xca\x53\x57\x56\x39\xd0\x91\x52\x25\xa9\x5e\xef\x3b\x8a\x41\xb2\xa3\x13\x0c\x71\x83\xc5\x46\x37\x5b\x4d\x73\xd7\xeb\x97\xd3\x8a\xc3\x80\xf6\x9a\xf7\x38\xab\x97\xa1\xb8\x86\xfa\x46\xd2\xc6\x93\x13\xce\x18\x07\x16\x0e\xb4\x73\x4b\x02\x54\xb4\xa6\x70\x6e\xde\xc1\x17\xe2\x27\x8a\xff\x17\xe7\x26\x5d\x8e\x4d\xc1\x6d\x61\x49\x20\x5b\xde\xcd\x74\xa3\xd1\x14\xb6\xe7\x23\x0c\x8e\xbf\x5b\x6a\x9a\x7b\x9c\x4e\x20\xf1\x75\x9b\x9c\xed\x8d\xab\xa5\xe0\xec\x3d\xad\x4d\x71\x4e\x47\x0f\x07\x40\x96\x2a\x0e\x6f\xa8\x1c\xf5\x86\xd2\x70\x1a\xe6\x2e\xe6\x0d\x28\xe4\x98\x07\xb4\x32\x3d\x06\xca\x6b\xd3\x5e\x6e\xf2\x8c\x59\x35\xf9\xc0\x6f\x60\xd4\x57\x98\xa9\x32\x1e\x22\x0a\xb4\xb4\xd3\x4d\x06\x56\xa6\x2a\xb3\x41\xb6\xe8\x58\x7b\x0d\xa9\x10\x98\xef\xb8\x7d\x3f\xa7\x85\x23\xea\x04\x12\x38\x56\x0d\xc4\xf9\xf1\xb9\x5e\xfc\xd5\x47\x3b\xc0\x13\x80\x21\x7b\x5d\x9d\x50\xec\xba\xc0\x6d\x1a\x96\x04\xa5\x3b\x26\xf2\xa0\x0d\xe3\xa5\xa2\x5a\x1c\xb8\xd4\x77\xf1\xd0\x86\xbf\xa7\x5a\xf2\xf7\x94\x33\x4e\x6a\x06\xb6\x98\x09\xfa\xc0\x3f\x40\x41\x81\xb7\x7f\x53\xa9\x6c\x23\x4b\xc2\x86\x3a\x36\x0e\x4e\x51\xdf\xb7\xca\xd3\x65\xcb\x14\x7d\x8f\x5f\xd8\x37\xef\x85\x9a\xc7\x78\x09\x65\x89\x7a\x0b\x15\x01\xea\x4c\x7c\xf0\xd1\x91\xf6\x86\x6e\x00\x74\x15\x03\xf1\xec\xc5\x06\x3b\xa5\x03\xcd\x29\x9f\x6e\x16\x36\xe9\x66\x83\x1d\xf5\xaf\xc0\x87\x1c\x1f\xa3\xa8\x06\xb0\xe0\x67\x3f\x4b\xad\x6f\xb6\x7d\x58\x1f\x1b\x95\x28\xe1\xb2\xab\x23\xad\xe6\x01\x6c\x77\xb1\x9b\x02\x8a\xd8\xa6\x8d\xa9\x3c\x20\xd7\x43\xa7\x1d\xfc\x23\xb4\x23\xae\xa1\x13\x84\x25\x73\x9b\x7e\x2c\xcf\x4d\x35\x06\x94\x3d\xcf\xf1\x57\xdf\x1a\x69\xcf\xc2\x30\x1c\x41\x63\x44\xf4\x56\x03\x1c\xa6\xe8\x67\xab\xe2\xf0\xcf\x14\x17\x95\xab\xfe\x63\x85\x5e\x67\x62\x32\xff\x83\x92\xae\x28\x86\xd9\xb2\x2d\x06\x86\xb5\x51\xbd\xf2\x7a\x50\x3e\x18\x9f\x10\x2b\x24\x45\x69\xf2\x12\x14\x23\x69\xeb\xd7\xaf\x42\x6d\xf5\x09\x7e\xa3\x90\x65\xa4\x0e\xcc\xed\x52\x62\xe3\x52\xf5\x34\x6e\x8d\x65\xe9\xf4\xfb\xd1\x3b\x63\x45\x6c\x84\x90\x56\x67\x6b\xa7\x92\x9c\xf5\x4c\x5e\xba\xd8\x0d\x89\x7f\xf7\xe2\x2c\xe7\x1e\x1f\x21\xa5\xe1\x27\x0d\x7d\xd1\x83\xf5\x75\xcb\x96\xa7\x54\xde\x74\x54\xcd\x16\x4f\xeb\x71\xd2\xf5\x86\x70\xd9\x8e\x93\xac\x90\xf6\x22\xa2\xc3\x76\x15\x1d\xb8\x2a\x42\xea\x74\x7b\x22\x60\xce\x1d\x6a\xf7\xab\xb4\x9b\xdb\x2e\xa7\xe3\x38\x80\x40\x71\xe3\xc7\x1a\x62\x97\x98\xdc\x76\x09\xdd\xb5\x09\x97\x26\x91\xff\x68\x79\x87\x59\x58\xdd\x8b\xd9\x59\x98\x06\x6f\xef\x84\x92\x8f\xa0\xa4\x60\x77\xe0\x45\x1b\xca\xfb\x07\x7c\x21\xa4\x4d\x8c\x9c\xf6\x0b\x61\xee\x10\x6f\x92\x7f\xad\xb7\xd5\xf7\xa2\x09\xbc\x69\x10\xe2\x0a\x29\x72\xcf\x0c\xec\x74\xe0\x8e\x5d\xd5\x48\xc8\x6b\x94\xe4\x03\xfc\x0c\x5c\x39\x1b\xe9\x7a\x11\xcc\xdc\x92\x74\xa7\xd8\x71\xb3\x3d\x27\x4a\x25\xf1\xea\x7c\x42\x21\x05\xf3\x9e\x2d\x99\xf9\x89\x55\x3f\xdd\x09\x1d\x41\x16\xb8\x96\x36\x48\x43\x47\xb1\x28\x73\xb7\x2c\x10\x67\x19\x9f\xe8\xb1\x4a\x18\xbf\x95\x66\x48\x1c\x8d\xb9\x43\xdc\x7f\xe7\xd8\x24\x3c\x41\x74\x61\x05\x3f\x36\x96\xfa\xf8\x8e\xfa\x95\x91\x52\x4c\x42\x4d\x02\x0a\xe1\x9d\xa6\x61\x35\xef\x9c\x96\xee\xfa\xd1\xeb\xf9\x49\x14\x58\x04\x55\xc1\xea\x77\x48\xb1\x20\x9b\xc1\x8f\x7d\x8e\x02\x45\x43\x51\xc0\x40\x7b\xed\x34\x2e\x2d\x3f\x51\x92\x32\xc4\xfb\x1c\x66\x79\x09\xee\x18\xf7\x3a\x47\x4a\x6d\xe7\x43\x55\x47\xd9\xc3\x71\x52\x61\x80\x30\xa5\xf2\xa6\xeb\x08\x09\x80\xe1\x6f\xd0\x4e\xc7\x81\xfc\x6e\x43\x0b\xfe\x80\xb7\xcc\x53\x2d\xf8\x8f\x55\x0b\xfe\x63\x4f\x4a\x8d\x2d\xb1\x14\xfa\x6e\x88\x93\x06\x93\xa6\xab\x4a\x73\x05\x89\x86\x30\x8c\xb6\x5e\xdc\xcf\xb7\x07\xa4\xe1\x9f\x02\x3c\x80\x40\x77\x44\x09\x29\x1e\x09\xca\x64\xab\x26\x5f\xd2\x8c\x4c\x2e\xc2\x45\xcd\xac\x81\x40\x56\xa5\x4b\xee\x30\x83\x40\x44\x71\x8e\x5e\x23\x5a\x74\x72\x8c\x55\x24\x9f\x47\x3a\x91\xf2\xb1\xf5\xe2\xd5\xfe\xe0\x18\x92\xa2\x4c\x10\xb9\x9b\xa7\x94\x7d\x4a\xdc\x37\xa4\x0e\xa9\xc6\xea\x67\x23\x7d\x06\x3c\xa3\x46\x67\x45\x69\x92\x84\x67\x2b\x7b\xf7\x72\xeb\x01\x91\x84\x1f\x37\xe9\xd6\xb5\xcd\xaa\x71\xe5\xa7\x2b\xb8\x48\xa0\x4f\xdd\xe1\x6e\x96\x2f\xb5\x82\xd6\xd5\x16\xff\x58\xf9\xd9\x3d\x9b\xba\x8a\xc1\x70\x1a\xaa\x0d\x75\x02\xcc\xbe\xc4\x0c\x54\x55\xd1\x57\xfd\x27\x25\x36\x4b\x4d\x0e\x4c\x93\x4c\xc2\x5b\x5b\xb5\x45\xb9\xf2\x55\x73\x53\x5b\xef\xa6\x9c\xeb\x2f\x84\xd4\x93\xda\xb2\xed\x64\xb4\xdb\x67\xf3\x2b\xcc\x6f\x17\xa7\xc4\xfa\x1e\xa1\x4f\xfc\x73\xed\xd7\x71\x45\xcd\xe7\xcb\x7e\x36\x30\x1c\xe0\x3d\x5a\xdb\xd7\x24\xe5\xc5\xc6\x2c\x7c\xc5\xe5\x55\xa1\x1c\x0c\xcf\xd0\x74\x98\x1f\x37\xb8\x3c\xb7\x5f\xa9\xba\xbd\x41\xe0\xaa\x23\x14\x9d\xa3\x57\xf1\xe3\x86\x02\xf5\xf9\x76\xdf\x9a\xee\xa7\xc2\x96\x1b\xc8\x1f\xd0\x15\x62\xca\x02\x66\x7b\x20\xc6\xf2\xe3\x89\xaf\x76\xe8\x85\xb6\xcd\xf3\x2c\xb5\x04\xf2\x7e\x71\xd6\x77\x3b\xeb\x0f\x12\xb7\x7a\x35\x87\xcf\x96\x74\x67\x4a\xcf\xa4\x4e\x44\x01\x46\x1d\x67\x69\x61\xf3\x15\x92\xa5\x66\x15\x56\x9c\x24\x97\xd0\xd1\x40\x24\xc4\x2c\x5e\xea\xf6\x06\xa6\xa9\x4b\x97\x92\xca\x92\xf8\xbf\x6a\xa7\xb1\x0a\x16\x3f\x99\x98\x33\xd4\x11\x69\x60\x5b\x34\xac\x42\x16\x78\x52\xf7\x31\x4f\xfa\xe5\xb8\x98\x55\xf2\xd6\x02\x60\x66\x7b\x33\x7e\x32\xd1\xea\xa6\xc1\x47\x4a\xbf\x6a\x2a\x24\x50\xdf\x1a\x05\xb4\xda\x4f\xe8\xba\xb1\x1b\xad\xef\xa9\xf7\xb3\xa4\x5b\x0d\x0b\x2d\x8a\x70\x83\x42\x03\x3f\x56\x40\x07\x3b\x30\x53\xa1\x73\x0e\x00\x02\x0e\x75\x36\x7e\x45\x9e\x16\x6a\xe8\xc4\x94\xf6\xd1\x31\x70\x49\x7d\x17\xbd\xcf\xab\xaf\x8a\xfe\x3d\x14\xb2\x28\xa6\xae\x8d\x94\x19\xc2\x43\xeb\x5e\x82\xf1\x8b\xcf\x75\xc2\x6f\xe1\x0d\x89\xfb\xf3\xe8\xba\xc7\x1e\xfd\xe9\x2f\x81\x0e\x8e\xbe\x06\x0b\x08\x7a\xbe\xc2\xbe\x79\x3f\xe7\xa6\x5d\xc4\x6e\xfa\x4a\x23\x62\xd1\xc4\xcb\x4b\x2e\xb7\xad\xd6\x17\x7e\x5b\xac\xc5\x68\x8d\x8a\xcd\xd8\xd3\xe3\xa3\xd0\x2a\xc6\x05\x7f\x71\x36\xd0\x64\xf6\xef\xe7\x04\x19\x18\x19\x84\xa3\x2b\xea\xd8\x37\x05\x49\x41\xd5\xc7\xbe\x9f\xd9\x2c\xcc\x72\x7e\xb0\xbd\x13\x50\xcf\x57\x47\x4f\xab\x65\x9b\x0f\x69\x8a\x5d\x0c\x5a\x8a\x6e\x7c\x4a\xe9\x3a\x9f\x52\x15\x7c\x9e\xc5\xcb\xb6\xf4\xde\xfc\x22\x65\xa6\x63\xfe\x13\x5a\xeb\xcd\x9a\x82\xcd\x7e\xc0\x44\x43\xc4\xe7\xc7\x6a\x26\x37\xc8\xba\x36\x37\x65\x7d\x28\xd7\x3f\x5a\xa4\x61\xe8\x96\x21\x3c\x1e\xa3\x96\x1f\xfa\x61\x37\xbc\x8c\x81\x2d\x0a\x93\xb7\xea\x1b\x28\x11\x82\x7e\x84\x84\x8e\x90\xa9\x2e\x25\x6b\x94\x13\xf9\x44\x18\x54\x0d\x9c\x73\xdb\x68\x39\xe0\xae\x3f\x50\x5a\x30\x37\x23\xa5\xc5\x7a\x3e\xd2\x32\xad\xe7\x69\x28\x21\xb6\x9b\xa1\x62\xa9\xb3\xc2\x9c\x30\x92\xff\x2f\x28\xfd\xc7\x94\xb1\xb0\xbf\x40\x9e\xc8\x5b\x87\x0e\x21\xf2\x6e\x8d\x10\x44\x76\x5b\x5a\x72\xb1\xb3\x9c\x11\x48\xe7\x5f\x4d\x01\xb6\x4e\x10\xea\xa8\xfa\xd2\xc2\xec\x0e\x65\x8e\xc2\xf1\x01\xdd\xb4\x73\x6a\x9d\x6c\x53\x3e\x20\xef\xaa\xd9\xd2\x19\x2c\x6d\x7e\xb5\x5e\x40\x2e\x8f\x2b\x3e\xaa\xa9\xa4\x94\xab\x45\x7b\x4f\x2e\xd6\xd6\x40\xbf\x30\xdb\x5e\xcc\xb3\x65\xb4\xb1\xd0\x75\x80\x10\x94\xa7\x6a\x05\x83\xa7\x6d\x9d\x7a\x49\x63\x8e\x73\x61\xb4\x4b\x42\xd9\x7f\x34\x15\x74\xd9\xcf\x29\x0e\xc5\x36\xf4\x9f\x59\x01\x72\x22\x56\xee\xdd\xdb\xce\x52\x3b\xa5\xa4\x52\x69\x21\x40\xe3\xe9\x24\xc5\x35\x64\x18\x77\xa2\xa7\x55\x2b\x9c\xe8\x14\x26\x8d\x2d\xb4\xeb\xd1\xca\xff\x69\x14\xda\xfa\x3f\x55\xfd\xba\x63\xca\x8a\xff\x0d\x5a\x28\x72\xf8\x3d\xa5\xaa\x63\x9b\x94\x5c\x3e\xec\xf3\xde\x97\xd1\x98\x0a\x5e\xa8\xa5\x07\xd9\x8a\xed\x3e\x54\xbf\x13\xee\x31\xf0\x8d\x02\x94\xa9\x53\x24\x8f\x16\x08\xf2\x97\x48\x7e\x80\x89\xfb\x84\xbe\x9e\x44\xb9\xfa\xeb\xe1\xde\x73\xde\x2b\x9d\x86\x4f\x13\xaf\x5a\xed\xbb\xb2\x4c\x2c\xc0\x87\xc8\x2e\xde\xa0\xaf\x00\xf9\x83\x93\xaa\xb3\x7d\x9c\x68\x0a\xc8\x12\xdf\x6e\xd2\xa8\x82\x93\x23\x8b\x80\x09\xa2\x48\xc1\x9a\x27\x79\x2f\xbf\x4c\xd3\x0c\x3a\xab\x91\x33\x1f\x57\xf9\xf3\x71\x05\x85\xb5\x87\x4b\x9b\x76\x51\x91\x4a\x2f\xe6\x7d\x2d\x04\xfe\x03\xfc\x5c\x5f\x3f\x2e\xcc\x7a\xe8\x11\xf6\x2b\x6e\xd4\x75\xa5\x84\x5d\x0c\x73\xc3\xd8\x5a\xe5\x52\xf0\xbc\xe7\xd2\x6b\x8a\xde\xa2\x29\x51\x51\x4a\x73\x52\x61\x37\xa0\x12\xc5\x8f\x75\x07\x53\xe5\x7d\xab\x54\xf8\x94\xc5\x74\x68\xe2\xbe\x41\x5f\x92\x45\x7a\xb1\x3c\xf8\x1f\xa2\x60\xea\xf5\x86\xea\xa7\x15\xa5\x4b\x12\xc2\xfc\x60\x5f\x71\xc7\x80\x9f\x10\x24\xc0\xab\x6b\xd7\x6b\x45\xca\x03\x85\x9e\x9d\xea\x68\x4e\x3f\x5f\x19\xd6\x37\x53\x80\x5c\xc0\x4f\x91\x33\x5f\x05\x00\x48\xa4\xba\x03\x3d\xed\xb4\xaa\xde\x4f\x4f\x24\x96\x2f\xbf\xdc\x5e\xb6\x83\xa1\x78\xf8\x8a\x99\xa5\xb2\x15\xd7\x13\xa9\xbe\xa1\x9b\x1b\xa2\xd2\x09\x55\xa8\x4d\x75\x94\x6e\x0e\x61\xb8\x44\xd6\x1d\xf5\x3b\x82\xc9\x8d\x31\x88\x7a\x61\x07\x8b\x89\xd5\x43\xc0\xb3\x6a\x08\x78\xb6\x71\xf5\xa6\xa5\x2b\xb2\x54\xeb\x09\xdc\xa4\xe8\xc3\x8f\x9b\xf8\xc9\x8b\x59\xd9\x17\x13\x96\xe7\xc3\x60\x22\x4c\x86\x2f\x4e\xbc\xea\xf3\xed\x62\xd5\xda\xd2\x32\xbc\xf1\xcb\x41\x6d\xa1\xbe\x99\x32\x11\x99\xd4\x35\x7d\xbe\xdd\xcb\xcd\x8a\x55\x2e\x50\x5f\x1d\x05\x44\xe4\x57\xfd\xc8\x3c\xee\x9b\xc1\xd0\xf4\x52\x64\x75\xd8\xc5\xe8\xab\x4b\x7d\xa7\xc6\x17\x93\x3c\xcc\xb9\x43\xed\xc5\x8c\xf8\x21\xf5\x8f\x40\x94\x7f\x5b\x99\xa5\x5e\xa5\x34\x5f\x34\x9c\x43\xae\xf7\x0f\x2d\x73\xb4\xa4\xe8\x0b\x92\xb1\x67\x49\xe5\x06\xf1\xfc\x2d\x7a\x2b\x74\x5f\x70\xf0\xa3\x7d\x3b\xdd\x79\x46\xdd\x3d\x9c\x3a\x75\x6d\x3d\x13\x50\xba\x8f\x77\xe8\x22\x63\xf2\x7c\x14\x5d\x4e\x1e\x3f\x2a\x58\xf0\xf6\x75\x05\x5a\xd8\xbe\xae\x21\x23\x2e\xb7\x4f\x29\xb3\xf8\x4b\xd8\xed\x40\xe4\x68\xde\x25\x80\x1b\xc2\xcd\xa4\xab\x85\xf3\xfd\x07\x40\x21\xb1\xeb\x04\xc6\xe5\x32\xe9\xac\x43\x80\x80\xe7\xb7\x08\xa7\xd4\xc7\x25\xff\x19\xce\x5a\x16\x24\xc4\x2e\xc5\xbf\x7c\xa2\x04\x3a\xae\xd2\x56\x16\x9f\xa3\x3a\xa2\x23\x6b\xfa\x9a\x86\x7f\xfd\x18\xdb\x12\x1d\xb7\x7f\x4b\x17\x00\x89\xe3\xdb\x91\xaa\x69\xde\x68\xa2\xa0\x0e\xf3\x6c\x90\x89\xdf\x3f\x12\x02\x0c\x30\xf9\xb1\x4a\x7a\x8a\x6a\x71\x60\x72\x97\x5a\xa5\xa9\xa3\xfd\x31\x2f\xf8\xa6\xd9\xb0\x9f\x95\x59\x2f\x37\xc3\x3e\x36\x1d\x9b\xcd\x8d\xc2\x51\xf0\x7e\xa4\xfd\x32\x72\x00\x59\x17\x0e\x04\x15\xc1\xa0\x28\x38\x51\x3f\x91\x4c\x5c\x6a\x60\x85\x41\xdf\x45\x49\xb4\x7b\xf1\x54\x55\xdb\x2d\xba\x57\x5b\x21\x0d\x44\x54\xe6\xc7\x13\x9d\x98\xf9\xf9\x83\x5c\x3f\xcd\x04\x1d\xd7\x7b\x91\x62\x72\xbe\x46\x5f\x4e\xd0\x27\xa1\x4f\xf0\x2e\x85\x40\x84\xc6\x0b\x0a\x47\x9d\x5b\x13\xf7\x01\x11\x79\x5e\x78\x8d\xa3\x80\x04\xbd\x49\xa1\x08\x03\x6f\x80\xeb\x24\x9b\x7a\x5a\x87\xb0\x2c\xa9\xbc\x9c\xde\xbc\x5f\x03\x2d\x2f\x7d\xf5\xb5\x31\xe1\x5a\x96\x82\x26\x27\x74\x3d\x57\x45\x77\x19\x84\x55\x7e\x4c\xe7\xb8\x84\x9d\x09\xef\xee\x39\x2a\x6a\x92\xac\x87\x1b\x09\x34\xc9\x05\xe5\x8f\x73\x21\x0a\xe9\xbd\x59\x2c\x4a\x97\xd6\x65\x2d\x82\x99\x38\xfc\xa9\x36\xfc\xb1\x48\xcf\xd8\xec\xd0\xe4\x16\xb0\x08\xde\x79\xb4\xc2\x65\x17\x7e\x36\x40\x35\x87\xc3\x3c\x1b\xe6\x0e\xa1\x80\xe6\x2c\x00\xb9\x9d\xa5\xe3\x91\xf9\x0c\x91\x9a\x7a\x21\xdf\x63\xa3\x9c\x48\x79\x04\x9c\x45\xb0\x10\x0b\x9d\xa7\x94\x26\x6f\x52\x97\x9c\xb9\x49\x90\xe1\xa2\x50\xbd\x8a\xd7\xf2\x13\xd5\xbd\xea\xba\x22\x5b\xb4\x5d\x57\xff\xdc\x3a\xbf\xdd\xa4\x64\x6d\xf3\xf4\x48\xfd\xf4\x8b\xda\x51\xf3\xe2\x44\x9a\xbf\x77\x2f\x79\x1f\xb8\xb4\xda\xe2\xa7\x7d\x5e\xf9\x69\x9f\x57\xe3\xfa\xc5\xc4\x0c\xb8\x8e\x68\x72\xc7\x96\x72\xa9\x67\xaa\x1e\x36\xa9\x97\x5d\xac\xef\x80\x24\xc2\x8a\x68\x62\x93\x87\x5b\xcf\x3e\x1b\x42\xb3\xcf\x73\xa7\xd7\x5b\x4a\x2d\x5e\x69\x75\x9e\x0f\x9d\xe4\x3f\x7c\xa6\xa3\x61\xbc\x17\x88\x65\x87\x73\x05\xc8\x0d\xb4\xa4\x78\x0e\x8b\xc6\xfa\x6e\x6a\x3e\x4b\x1d\xbd\x55\x3f\x79\xee\x50\xbb\x5c\xa1\xcc\x0a\xc5\xf5\x19\xed\xaf\x72\x87\x3e\x19\xab\x7d\x77\xa7\xa5\x64\xd0\xa4\x63\xd0\x7f\xae\xf7\x5c\x2b\x40\x95\x98\x4a\xc1\x4f\x54\x63\xac\xa8\xf2\x5e\xbd\x21\xc3\x4c\xf0\x87\x91\x82\x0f\xfe\x90\x3e\x08\xbd\xbb\x6f\x44\x41\x51\xe6\x1b\x0d\x4e\xf2\x4b\x2e\x15\xa3\xbd\x4d\xea\xfa\x6c\x5e\x1a\xed\xf6\xf7\x6b\x19\xee\x1a\x98\xd2\xfe\x64\xa4\x94\x16\x7f\x82\xec\x97\xd3\xd9\xa1\x8d\x4b\x13\x8c\x33\x30\x6f\xfa\xa1\x42\x46\xfe\x50\xc9\x3d\x32\x3b\xaf\xd8\xa5\xf0\xa9\xa8\x07\x50\x70\xc3\x54\x00\xf9\xee\x6d\x3a\x49\x58\x25\x03\x2b\x13\xdb\xf6\x76\xa4\x02\x33\x3a\x2b\x5e\xd0\x31\x4c\x04\x6e\x8f\x94\xdb\xf9\x29\xdf\xed\x1e\xd8\x32\xcf\x06\xb6\xeb\xcc\xb8\x38\x06\xfd\x3e\x51\xc7\x68\xe4\x02\xf4\x73\x6b\x19\x01\x8c\x0c\xe2\x1b\x78\x11\x30\x45\x53\x24\xf1\x87\xb2\x68\xba\x23\xdd\x59\xaa\xc9\xba\x53\x9a\x98\x40\x5f\x11\x55\xce\x4d\xa5\x7d\x72\x44\xfb\x4a\xad\x58\x56\x3e\x0d\x66\xce\x37\x95\x78\xf7\xcd\x89\x22\x88\x85\x78\x87\x36\x87\xe9\x9c\x76\xf9\xff\x77\xf2\x68\x0f\xb4\xfb\x36\x19\x67\x40\x47\x8a\x01\xfd\xa9\x82\x1b\x36\x5f\x75\x69\x2b\xfc\xb6\xbf\xc6\x07\xf1\x93\x26\xe2\x8c\x4b\xeb\x2a\x29\xaf\xaf\xc7\xe6\x25\x65\x9b\x8d\x01\x03\x3a\xd3\xef\x2b\x63\x8c\xa2\x6f\x6d\x8e\xc3\x47\x74\x5a\x29\x59\xf0\x26\xd0\x9e\xf5\x0f\x61\x44\x19\xfe\x87\x03\x2c\xce\x86\xce\xb2\x04\x93\xe7\xeb\x05\xee\x9e\x2a\x4a\xba\xb9\x19\xe0\xef\x90\xa5\x69\x5e\xd5\xfd\x09\x9d\x86\x7d\xc4\x50\x35\xc3\x61\xe6\xd2\x20\x4d\xe7\xf9\x43\x61\xe8\x35\x21\xd3\x3f\x77\xa8\x0e\x9c\x4b\x55\xe1\x5f\xe5\xdb\xe2\x5e\x91\xfa\x94\x1a\xcb\x59\x93\xa7\xf5\x96\xd9\xa3\xfc\x89\x01\xdc\x11\xc8\x1a\xed\x1f\xde\x01\xc8\xac\x04\x29\x47\x2b\x1c\x01\xf2\x4d\x85\x88\xb8\x81\xdd\x24\x39\x4a\xbd\xe5\x00\xb1\x98\xa2\xd6\x0a\x26\xaf\xc7\x70\xd6\xa0\xfd\xc7\x95\x8b\x27\x05\xd5\xc7\x0a\xff\x0b\xc9\xcf\x20\xf0\x6e\x68\x61\xc3\xef\x7b\x60\x47\xb1\x0a\xdf\x95\xa9\x70\xbb\xae\xa9\x16\xea\x2d\xa4\xaf\x08\xd1\x3b\x26\x74\xd9\xf7\xcd\xb7\xb3\x57\xa9\x1f\xe2\xc7\xa0\xc8\x5c\x64\x26\x11\xc6\xb0\xd7\x26\xf6\xc5\xfe\xfd\x0b\xd2\xaf\x2e\x1d\x5b\xdc\xb2\xc4\x66\x14\x5a\x7e\xef\x4d\xe4\x0e\xf5\xa6\x88\x6d\x5a\x0a\xe4\xda\xd3\x16\xea\x4b\xc2\x4f\x7c\xcb\x7a\xc5\xc5\x65\x96\xaf\x4d\x29\x93\x1d\x14\x1a\x48\x8c\x30\xdb\x46\x68\xb9\xaf\x0e\xb0\xff\x6c\x76\x6f\x4b\xa3\x1f\x8f\xe9\xf9\xcc\x31\x05\x31\xa8\x7f\x00\x45\x58\xd2\x38\x16\x14\xb3\x8a\x6e\x9c\x3c\x20\x7d\x6b\x75\x42\x4b\xe5\xa6\x62\x71\xb4\xd6\x83\x6f\xb9\x8b\x79\x22\x23\x9d\x17\xe5\x6a\x02\x4d\x3c\x71\xe6\x93\xdf\xb8\x94\xe5\x8b\x4e\x68\x65\x6c\x80\x8a\xc4\x52\xdc\x50\xe5\x20\x73\xb9\xf9\x0a\x05\x05\xd4\x46\x1c\x59\xf9\x49\x14\xbe\xc3\x2b\x46\x24\xc0\xf1\x8b\xce\x6a\x90\xf6\xd9\x68\xab\xb1\xe6\x4b\xf5\xbe\xe9\x9b\xdc\xc4\xa5\xcd\xdd\xab\x32\x66\x46\x1b\xfd\x43\x7c\x15\x7e\xa2\x02\xc8\xc0\x96\x52\xb8\xe3\x66\x40\xcd\x8f\x1f\xaf\x7b\xc9\x1f\x46\x4c\x17\xbb\xe8\x42\x50\x76\xf9\x6b\xcf\x90\xa0\x98\xd7\xf3\xad\x3f\xc0\x1f\x16\xf5\x47\x8b\x23\x73\x18\xad\x5f\xd4\x20\x11\x5e\xd6\x38\x2a\x8e\x8d\xbc\x36\xc2\x77\x9f\xed\xd4\xa1\x4a\x70\x5e\x21\x03\x75\x69\x51\xba\xb2\x62\x91\x87\xe7\xbd\x83\x44\xc8\x92\x3e\x8e\x02\x5e\xf7\xbb\x13\x43\xa3\x3a\x23\xab\xf2\xd2\xa3\xcc\xbd\xfb\x3c\x62\x82\x58\xd1\x3f\xae\x92\xc6\xaa\x5e\xe1\x3b\xb4\x78\x16\x75\x80\xc0\x19\xc5\x2e\xf3\x8a\x77\xf5\x1b\x62\x6d\xbe\x35\x52\x41\xe6\x2d\x3a\xa5\xf9\x15\x2a\x41\xee\x67\xab\x76\xc5\xe6\x33\x21\xdd\xbd\x15\xa9\x25\x07\x96\x89\x27\xe5\x2d\xf8\xbc\x87\x7e\xa2\xf4\xbf\x03\xaf\xb7\xb4\x31\xa4\x4a\x84\x06\xaf\x56\x2c\xe8\x3b\x42\x1f\x0b\x0d\xf5\xc4\xc4\xcb\xb6\x4b\xd3\x59\x19\x13\xd4\x1f\x24\xe3\x83\xd0\x3f\x4b\x4d\x51\xae\xb5\x08\xa5\xec\x29\x65\x61\x96\x72\xc1\x07\x32\xd3\x1d\xb8\xb2\x14\xaf\x56\xef\x21\x5b\xff\xaa\xb1\x8e\x09\x02\xeb\x2d\x45\xd6\x5e\x74\x49\xb2\x27\x34\x74\x47\xca\xf8\xf3\x47\x94\x7a\x4a\x6d\x45\xcb\xcc\xcf\xa9\x7d\x53\xf9\x36\x95\x0a\x98\x25\xb1\x82\xa5\x00\xf3\x94\x75\xd3\x7d\x25\x33\xf5\xf1\x28\x64\x4f\x9c\xd7\x23\x13\x64\x59\x0c\x51\xbd\x52\x11\x9b\x0f\x0f\xe4\x33\xb7\x27\x12\x46\x9a\xb3\x0d\x5c\x8a\xae\x28\xde\x0c\xf8\x3c\x7e\xdc\x04\xd5\xa9\x52\xb7\x62\xf3\x02\x19\xbd\x18\x4d\xb7\xbc\xd1\xdf\x09\x95\x1b\x7e\xa5\x82\x01\x1b\x15\x7e\xdc\xde\xc7\xbe\x66\xc9\xe7\xb1\x66\x20\xad\x19\x74\x10\x7e\x3a\x7a\x5a\xf6\x71\x99\xdb\xb4\x57\xf6\x6d\x2a\xe4\x52\xa4\x0d\xac\x07\xc5\x4f\x9a\xfd\xe4\xbc\xfa\x01\x72\xac\x77\x68\x5d\xf3\xe3\x86\xf3\xe1\xcb\xed\x38\xcf\x56\x25\x22\x72\x51\x10\xe9\x02\x61\x6b\x8b\xf8\xa5\x03\xed\x61\xc5\xa3\x7f\x01\x9e\xd2\xcd\x13\x48\x6a\xc8\xbd\x07\x6b\x3b\x15\xb8\x68\x4c\xf2\x94\x6e\x1e\xe2\x17\x17\x27\x8a\x61\x24\x8a\x17\x40\x66\x7b\xd9\x28\xbf\x8d\x2f\xab\xdd\x5f\x18\x97\x96\x09\x6b\xc2\x7b\xf6\x87\x07\x0b\x9e\x6b\xb6\x47\xed\xda\xc4\xc5\x84\xf0\x6f\x79\x0b\x74\x36\x03\xe2\x27\x13\x57\x77\xee\x50\x3b\x57\x9c\x72\x8c\x71\x4f\x2a\x17\xba\x93\x91\x78\x12\xd9\xb4\xec\x57\x85\x33\x85\x48\x25\xa0\xcb\x79\x4d\x75\x3c\xaf\xf9\xa0\x50\x24\xd9\x6a\xb2\xb6\xa3\xbe\xe4\x9e\x11\x25\xe3\x99\xf9\xa7\x28\x93\xf1\xb2\xdf\x01\xb0\x7f\x5e\xf5\x1a\x6f\xe1\x6a\xca\x41\xf5\xd4\x04\xd7\xed\xd9\x67\x09\x4f\x22\xb6\xe0\xba\xa3\xdf\xf2\xce\x86\xac\x31\x21\x21\xa6\xc9\xf8\x77\xd9\xda\x14\x37\x1e\xc9\xd8\xb5\x51\x40\x4d\x5c\x8b\x9e\x92\x86\x67\x36\x18\x64\xe9\xaa\x35\x49\xd9\x6f\x69\x32\x1a\x7f\x02\x3f\x89\xbc\x57\x71\xd7\x92\x14\x92\x82\x78\x9e\x53\x46\xe4\xe7\x46\xcf\x38\x2d\xb5\x95\x53\xd5\x53\x4a\x0d\x83\x78\x79\x3e\xd2\x73\x6d\xfa\x18\x3c\xf9\xe6\x04\x33\x9d\x14\x42\x2c\x8a\x19\x9c\xd2\x3b\x3a\xca\x5f\x89\x35\xc7\x44\x62\xa8\x81\x97\xc4\xdd\x98\x02\xa0\x26\xa5\xed\x27\xca\xe1\x77\x68\xa5\x8b\x39\x6a\x13\xa2\xb5\xb4\x16\x72\xf5\x58\x0c\x70\x11\xe6\xc7\x7e\xb0\xbf\x54\x25\x4b\x2e\x49\xa6\x82\x10\xe1\x55\xc4\x11\x24\xb6\x6f\x69\xa9\xa4\x10\xdc\x07\x2e\xb5\xb9\x49\x0a\x08\xc1\x09\x7a\x31\xa4\xa9\x3f\xd5\x16\x25\x3f\xc1\xce\x15\xb7\x01\x6d\x65\xf2\x93\x26\x4a\x5a\x41\x7e\x3c\xb4\x67\x44\x6f\x3b\xb4\x66\x37\x94\xbc\xd6\xd0\x38\xb6\x72\x9f\xf7\x40\x1a\x8d\xaa\x51\xe6\xf2\x8b\x59\xda\xad\xeb\x69\x2a\x6f\xfc\x3d\xd9\x88\x42\x92\xb8\xa1\xfa\x6a\xb9\x2d\x84\xa8\x1f\xd4\x3b\xcf\x44\x4a\xbd\xf3\xcc\xc4\x1d\x7f\xf6\xd9\x76\x51\xc5\xfd\x29\xa5\x74\x7a\x5a\x29\x23\xb3\x6d\xa0\x44\xa6\x31\xc7\x5e\xb3\x4a\xaa\xd4\x20\x4f\xdc\x1c\x69\xe2\xec\xcf\x10\x8c\x05\xbe\xdb\x0a\x12\xc4\xb4\x16\x45\x4e\x8b\x6e\x83\x97\x83\x0d\xf2\xa1\xff\x72\xf4\x19\x55\xdd\xa5\x75\x96\xae\x28\xee\xa2\x7a\x16\xc6\xd5\x1b\x9a\xed\x62\xd2\x65\xaa\x42\x50\x3b\xfc\xb5\x6a\x5f\x32\x17\x17\xf7\x70\xd2\xe0\x68\xee\x50\x7b\x31\xcf\x4c\xd7\x8a\xe0\x14\xc6\xa8\x77\xc1\x6d\xc2\x0e\xb8\xa8\xe8\xd7\xa7\xb4\x91\x43\xbc\x9c\x66\xab\x89\xed\xf6\xa4\x08\x62\x71\x7c\xe5\x61\x00\x1f\x1a\xc4\xb1\xf3\x2a\x87\x19\x66\x89\x8b\xd7\x1e\x56\xf3\x31\x86\x3d\x4a\x99\x40\xf7\x46\x64\xe9\xea\x4b\x2e\xc5\x44\xa8\xae\xdf\xc5\xb9\x2e\xea\xab\xf5\x17\x10\x06\x1d\xfd\x66\x7e\x75\xa4\xb4\x82\xbe\x89\xce\x21\x9b\x32\xe9\xf6\x53\xb6\xe2\x6c\xb9\x9b\xbe\x02\xde\xf0\x9a\x36\x2e\xfe\x53\x0a\xc1\x00\x76\xdf\xc1\x5d\x43\xab\xf6\x5d\xfa\x6e\xc8\xd7\xde\x1c\x05\x98\xfd\x79\x1a\x67\xf3\xdf\xd0\xd2\x45\xf2\x03\xbd\x01\x24\x3f\x2c\x90\x22\x4c\x3d\xe5\x90\x73\x75\x82\x2d\x73\xe8\x85\x36\xb8\x99\x1e\x91\xf5\xa1\x36\x59\xa7\x6f\x21\x2c\xc1\x26\xf9\xa8\x45\x1b\x9b\xaa\x7e\xfd\x3e\x69\x8d\xef\x24\xe4\x05\x52\xaf\x5d\x9d\x90\x69\xbe\xae\x4a\xb9\x2c\xeb\x3e\x16\xd8\x8b\x57\x14\xbd\xe1\x1c\x52\x2f\xaf\x53\x7b\x60\x41\xc2\x10\x1a\x57\xd8\x05\x77\x68\xb0\x84\x98\xf3\xa1\xc6\xf9\x9d\xa2\xce\xb7\xa0\x75\xa8\xfa\x94\xc6\x61\xc8\x26\xff\x0f\xdc\x46\x64\x61\x4f\xad\x2b\x02\xeb\xdf\x86\x3f\x09\x2e\xf5\x2d\x04\x41\x24\xa7\xdb\xd7\x3d\x91\xc0\x7c\xb6\xa3\x3a\x2e\x43\x51\xfb\x47\x27\x1f\xfd\x44\xec\xcf\xab\xb8\xf4\x48\xce\x6f\x4e\x9c\xf3\x9f\x6f\x0f\x13\x53\x94\x2e\x6e\xa9\x24\x16\xa4\x0d\x7e\xec\x23\x74\x2f\xb7\xa6\x64\x66\xb2\x07\xe8\x28\x0f\xc2\xad\x65\x7c\x1d\x41\xab\xe1\x30\xb1\x90\xff\x53\xb9\xc7\x47\xb4\x85\xf9\xb1\xaf\x41\x0b\x6b\x07\xbb\x54\xab\x9c\x19\xe0\x9e\x59\xf8\xa2\x40\x69\x6e\xab\x65\x76\x01\x3f\x0f\xfb\x91\x09\x42\xb4\x04\xbe\xf5\x0b\x54\x52\x7b\x7a\xfc\xbc\xcc\x25\xee\x62\x61\x22\x77\x3f\xa6\xda\xf1\x64\x58\x60\x7b\xce\x16\x3b\xd4\xf1\x76\x5e\x49\x00\x5f\xa7\xfb\xa7\xc1\xdb\x00\x87\x31\x28\x99\xff\x88\xbe\x1d\xd6\xce\xf4\x04\xb3\xe9\xc5\xd9\x76\xd7\x0e\x13\xeb\xc5\x57\xb4\x90\xa4\x98\xac\x7a\x07\x35\x93\x3b\xc3\x13\x2d\x28\x7a\x5c\x50\x12\x7d\x17\x02\xf7\xd8\x38\x51\xe1\xf3\xad\x40\x45\x65\x78\xd8\x2f\xf9\x5f\x7d\x28\x70\xa2\x34\xfa\x7f\x73\xa4\x72\x5a\x80\x55\x70\x72\x6c\xeb\xd4\x6b\x1c\x4b\xf9\xb1\x4e\x30\x82\x39\xab\x33\x00\x8e\xf4\x18\x25\x5e\x6d\xf2\x58\xcc\x6d\xe9\x72\x8b\x7a\xc2\xe7\xc7\x0a\x88\x3f\x39\x13\x6b\xe7\x59\x55\xba\x94\x39\xe9\x5a\xd3\x99\x1f\x37\xd9\x32\xe5\x95\xf3\xb2\x3d\xde\x6a\xaf\xfe\x61\xe2\x5e\x13\x5a\x8c\xbd\x2a\x4d\xa5\xc5\xc8\x1a\xbb\x74\xcd\x44\x6f\xb7\x01\xde\xb3\x66\x53\x3d\x5c\x3c\xa7\x86\x8b\xe7\x26\x34\x65\xf6\xcd\x13\x72\xd3\x75\x2d\x79\x12\xd3\xe7\x00\xd3\xfa\x4e\x14\xb0\xae\xef\xf8\x5b\xed\x7a\x69\x96\x5b\x3a\x7e\xf9\x96\xd0\x05\xf2\x5e\x5d\xf5\xaf\x10\xe6\x9c\xa2\xed\x4c\xd1\x3d\xc1\x4e\x82\x10\x37\xd6\x10\x7b\xd1\xcb\x2b\x9a\x2a\xa1\x3a\x2d\x14\x3e\x07\xf6\xd5\x5f\xd3\xf2\xc6\xcc\xfe\x4d\x45\xec\xfe\xa0\xc9\x92\x58\x48\x0a\x53\xa1\xbb\xc1\x7c\x6e\x7c\x9b\x56\x27\x70\x3c\x03\xcf\xb0\xc8\xaa\xb2\xbf\x4a\xa0\x1b\x8f\xaa\xbd\xa8\x9d\x06\x2e\x4e\x74\xa0\x3f\x5f\x07\x1e\x9b\xba\x02\x56\x8c\xde\xeb\x25\xf8\xbe\x28\x9a\x56\xd1\x27\xd3\x8b\xa9\x96\xd6\x7e\x08\x2b\x00\x0c\x5d\x54\x06\xef\x29\xa6\xec\xc0\x94\x36\x77\x26\x29\xa6\xc3\x7c\x73\x53\xcf\xbb\xff\x2a\xd2\x11\x91\xde\x11\x41\x6a\xc7\xba\xf2\x67\xcf\x92\xc4\xd2\x04\xa0\x3e\x5b\x7d\xe5\xe2\x2d\xfe\xf5\x84\xf8\x25\x47\x53\xb5\xcd\x75\xfa\xf1\x9b\xeb\xaa\xed\xd0\x37\x69\x77\x47\x7d\x82\xb0\xd0\xa2\x12\xae\xbe\x49\xe3\x5a\xd5\xb6\x38\xe0\xc7\x8a\x01\x86\x79\x37\x0a\x70\xfa\xf3\x0a\x2c\x1a\x1b\xc1\x85\xf9\x84\x83\xdb\x0a\xd2\x79\xde\xa3\xd9\x14\xe8\x8d\x0a\x77\x04\x18\x0e\x1c\x82\x58\xf9\xd8\x29\x27\x9a\x6c\x61\x87\xe4\x2e\x18\x1c\x05\x95\xd0\xef\x79\x2d\x89\x1d\x77\xb3\x34\xb5\x49\x02\xe2\xaa\xe7\x66\x07\x01\x73\xb6\x14\x60\x38\x61\xa4\x30\x2a\x93\x95\xee\xdc\xa1\x76\xd9\xb7\xb9\x19\xda\xaa\x3e\xce\xea\x8f\x14\x96\x48\xfd\x55\x84\x3e\x22\x23\x4b\x92\xa3\x45\x1f\x00\x7b\x98\xcd\x36\xf9\xc9\xc4\x32\xac\x2b\xc2\x35\x93\x2e\x23\xbe\x1c\xf0\xa2\xb1\xca\xa6\xf7\xcc\x98\x31\x64\x1a\xaf\x3d\xa1\xc5\xd1\xdf\xc3\x9f\x4a\xb0\x19\x53\x24\xa1\x5f\x29\x04\xc1\xf1\x1e\x6f\x00\x7c\xeb\x82\x7a\x1b\x35\xf0\x71\xf2\x7e\x7f\x14\xac\x1f\x79\xca\x86\x0f\x61\x0f\x05\x2c\xa3\xa3\x5a\x4c\xee\x1d\x8c\x1f\xfc\xc7\xd7\xf7\x19\x17\xe8\x46\x14\x98\x31\x77\x22\x15\x69\x20\xbe\x84\x23\xee\x7e\x68\xae\xb9\x3c\xce\xcd\x52\x49\xe7\x0a\x5e\x75\x6f\x14\xf8\x86\xbb\x3a\x63\xa2\x53\xaa\xa5\x09\x73\x0b\x75\x86\x7f\x79\xdc\x19\x1a\x5b\x7b\x13\x5f\x0d\x49\xd2\xcf\xfc\xa7\x82\xcb\x9d\xe5\xb4\xcd\x3d\xbc\x36\x94\x69\x08\x28\x62\x4f\x10\x74\x1c\xf2\x57\x72\xf4\x58\x75\x19\xcd\x8f\x7d\xd3\xbc\xe8\x67\xab\x56\xc4\x42\x21\xbe\xf1\x01\xbe\x13\x3f\x99\x88\x86\x87\x5e\x68\x0f\x4c\x8f\x9c\x4b\x5b\x4a\x32\x87\x2e\x98\xb4\x73\xb6\x9e\x56\x2f\x41\xa7\x6c\x99\x3f\x87\x63\x15\x2e\xb8\x04\xae\x80\x49\xa2\x2a\x26\xae\xf3\xb4\xb4\x87\x29\x32\xc2\x3c\xf8\xb9\xe8\xd4\x7e\xa4\x78\x72\xfa\x08\x1f\x03\xd4\x58\x72\xb2\x5b\x61\xdd\x09\xe4\xca\xc7\x55\x41\x75\x45\x81\xee\x8f\x4c\xc8\xbe\xbc\x38\xdb\x5e\x4c\xb2\x78\x79\xb1\x2a\xc8\x22\x3b\x0c\x3a\x7f\xa4\x34\x44\x2f\x28\x29\xf0\x13\xca\xdd\x64\x90\x81\xb6\x2b\x1a\xc6\xad\xa0\x67\xac\x6a\xa7\x6e\x96\x24\x26\xdf\x53\xff\xa1\x20\xef\x69\xe1\x4a\x3a\x5c\xaf\x7b\x25\xc1\xf8\x65\xee\xe8\x6e\x5f\x1f\xdb\x29\xca\xf5\x11\xe0\x28\x6c\x95\x1b\xda\xb8\x9d\xd9\x6b\xe8\xc2\x5e\x1f\x05\x9e\xf9\x76\x70\xe7\xd1\xec\xe7\xfe\x2a\xbf\x17\xad\x5a\x40\x62\xdf\x50\x45\xf0\x03\xad\xb5\x5d\xe6\x55\xbc\x4c\xbf\x94\x31\x05\xf4\x87\x82\x2f\x68\x40\xbc\x15\xfd\xcc\x8e\x91\x59\x2e\xaa\x69\x8e\x56\x04\x88\x4d\xe2\x96\xb2\x3c\x75\x86\xce\x29\x95\xcf\x06\x97\xd1\x10\x76\x39\x2d\xc3\xea\xf8\xe9\x44\xd1\x55\x9f\xe1\x7d\xcb\xc4\x2e\xcf\xbe\xf5\x3e\x3a\x17\x94\x83\x5a\xe2\x06\x43\xc7\x28\x43\x99\x1c\x85\x6c\x7e\x23\x12\xec\xf4\x00\x0a\x09\xa8\x24\xd7\xe9\xcd\xf8\x71\x83\xef\xf9\x81\x76\x6c\x93\xa4\x4a\x4c\x4e\x95\x8b\xfe\xe5\x48\x8e\xb8\xcd\x8d\xf9\xd0\x3b\x0a\x5f\xc9\x6e\x61\xc5\x0c\x7d\x75\x41\xaa\xb6\xbc\x56\xce\x71\x04\x57\xc1\xb6\xd6\xef\x8e\x69\xda\x6d\xdd\x7b\x9d\xb4\x8a\x39\xb0\x70\x80\x92\x36\x0c\x74\xd4\x31\xc9\x4c\x4f\xf1\x5f\x08\xbd\x4c\x92\x3b\x08\x1c\x46\x64\xc8\xa8\xbf\x37\x46\xba\x57\x44\xb7\x08\xe5\xe8\xb6\x75\xdf\xbc\x32\x71\xdf\x96\x96\x74\xd9\x37\x8f\x68\xa6\xd4\x5b\x08\x38\x82\xa7\x6d\x68\xaa\xe5\x2e\x36\xc8\xf8\xc5\x80\x4f\xc1\x1a\x4e\xa8\x16\x52\x56\xe5\x85\x4d\x56\xd8\x00\x0f\x5d\x31\x4c\xee\xf9\xb1\x4a\x8a\x07\x26\xef\xb9\xb4\x78\xb8\xe5\xed\xee\xb9\x7c\xc5\x4e\xbc\x35\x52\x92\x5e\xef\x2a\xd5\xd2\x0d\x34\x34\x94\x0a\xd8\xf3\x3c\x52\x6d\xad\x87\x10\xfd\x70\x47\x71\xc6\x6f\x29\xc0\xdd\xff\x40\x67\x8e\xd8\x21\x4d\xf2\xfe\x0f\xb6\x73\x3b\x30\x2e\xf5\xb3\x77\xac\x8f\x0b\x6a\xad\x04\xa3\xea\xd4\x2d\x67\x90\xd8\x45\x09\xf6\x9a\xb6\xcb\x78\x2d\x7a\x44\xf5\xbb\x3e\xf7\x28\xfd\x38\x44\xad\x9f\xe3\x02\xa2\x66\x7a\x6c\x9d\x5c\x0f\x31\xcc\x3b\xae\x3a\x1f\xbb\xd1\x3c\x05\x5e\xec\xeb\xb0\x59\x94\x4c\x8b\x7e\x9d\x08\x4a\xb7\xbe\xf4\x45\xee\x83\x41\x2d\x03\x89\x3c\x47\x16\x21\x9e\x86\x98\xc9\x94\x3a\x74\x51\x7f\xae\x8d\x94\x26\xb9\x69\xfb\xe6\x71\x74\xf8\xcb\x21\xd6\x98\xba\x79\xde\xc0\x9b\xcb\xed\xb0\x5a\x4c\xc8\x60\x3f\x28\x8b\xbe\x1b\x85\x5d\xfa\x6e\x18\xfe\x7f\xa5\xb2\xf6\x55\xa9\x0e\x10\xe3\x30\x01\x02\x17\xe2\xd2\x48\xf5\x2b\xde\x6d\x42\x5f\x0f\xaa\x7c\x08\xef\x5a\x41\xa3\x9d\x22\xe8\xae\x34\xda\x1e\x53\xcc\x96\x25\x02\x8f\xf9\xca\x1a\x54\x4f\x01\xe9\x4e\x42\x91\xdb\xdd\xdc\xad\xd8\xb4\xa5\xf7\x1a\x7d\x4f\x7e\x32\x71\x3e\xbf\x34\x77\x88\xd9\x7c\x7c\xda\x7a\xab\x6e\x3f\x38\x3a\xa3\x0e\x49\x71\xb7\xe5\x80\xa7\x45\x0c\xf9\xb1\x47\x3b\xc3\xd4\xc5\xdf\x08\xd6\x3a\x8b\x5a\xca\xce\x2f\x30\x94\xfb\xae\x2c\x68\x32\x81\xdc\x16\x9a\x71\xdc\x56\x52\xb8\xfd\xd3\x91\x26\x7e\xed\xf1\xc3\xd4\x81\x49\xbb\x05\xd5\x05\x58\x7d\x08\xd6\xde\x21\xd9\xc3\x3b\x4f\x20\x90\x28\x55\x7a\xb1\x89\xdf\x45\x50\x38\xa0\x27\x36\x26\xf6\xd9\xcb\x2f\xb7\x57\x4c\xda\xb5\xe9\xa2\xcd\x31\x86\x43\xbc\xfa\x99\xd6\x2b\xfa\x99\x22\x30\x24\xf6\x70\x55\xec\xa8\xbf\x2c\xf2\x3b\xe6\xd0\x2b\x9b\x1e\xcf\x02\xc5\x79\xac\x9e\x1c\xf0\x7f\x16\x64\xeb\x2f\x29\x5c\xcf\xd0\x38\xdc\x2c\x99\xa8\xdf\x50\x42\x94\x37\x26\x02\xe2\xdc\xa1\x76\x2f\xc9\x16\xed\xa7\xda\xd8\xeb\xc4\xfc\xb9\xf4\xb9\x96\x62\xf9\xfd\x24\x0a\xbf\xf5\x27\x9a\x3e\x68\x86\x3b\x03\xef\x1b\xab\x1f\xe9\x05\x00\x37\x18\x1d\xed\xc2\x00\x45\x6e\x89\x6a\xb1\x42\xe1\x06\x64\x83\x1d\x1d\x1d\xcf\x55\xb2\x50\xe6\xa6\x2b\x48\x5d\xb4\x65\x7e\x4c\x3f\x54\x0a\xc6\x96\x77\x02\x7d\x0f\xb7\x01\x07\xca\x8f\xf5\xfe\xa9\xab\xce\xae\x32\xd8\xb9\x15\x05\x35\x24\xd8\x14\xf3\xff\xa7\x2f\x84\xef\xf0\x86\xf2\x4a\xdd\x68\x6a\xbf\x0c\x73\xbb\xe2\xec\x2a\x1d\x1a\xb8\xea\x47\xd4\x1d\x38\x12\x85\xe6\x63\x7d\x8a\xb3\xf4\x50\x23\xae\x23\x8c\x1e\xbe\x19\x85\xa6\xee\x37\x15\xde\xa3\x74\x65\x62\x5b\xad\xb9\x43\xdc\xfa\x86\x2a\x3a\x3f\x56\x44\x44\x82\x3e\x14\x3b\x34\x91\x2f\x00\x34\xcf\x52\x78\x11\xfe\x37\x21\x7c\xe5\x2c\xd5\x64\xf0\xa0\xc7\xfd\x56\xb3\x18\xa7\x4d\x32\x32\x4f\xa5\xb3\x15\x8d\x36\x68\x09\xf0\x63\x25\x28\xb8\x94\x64\x59\x0e\xda\x01\xd2\xee\xa3\x23\x35\x5a\xfb\xbf\x71\x0e\x6a\x7b\x70\xfe\x07\x26\xfc\x21\xfb\xbe\xa5\x58\x90\x76\xd1\xa6\xc5\x62\x95\xa3\x7f\xa1\xa5\xc3\xa4\xd8\x0e\xae\x96\x77\x14\xbd\x67\xc9\x25\x6e\xe8\x52\xa8\x27\x4a\x44\xa1\x3b\x22\x5d\xeb\x50\x03\x0d\x6d\xbe\x43\x25\x8c\xac\x31\xee\x2f\x4f\x00\x06\x20\x55\xf6\x17\xb4\xfe\x2d\xec\x00\x88\xdd\x8c\x48\xfe\xda\xc4\x49\x33\x77\xa8\x6d\xca\xd2\xa6\x5d\xd1\x16\x68\x6a\x49\x3e\xe2\x8b\x2d\xd3\x1b\xf3\x8a\x3f\x85\x5b\x27\x19\xfa\xd6\x5b\xb4\x6f\xbe\x3d\xcc\x8a\x72\x60\xf2\x65\xc1\xcb\x08\x42\x9c\x7e\x94\x54\x20\x4f\x6a\x51\xf1\x2a\x8d\xfb\xc9\x1a\x70\x99\x92\xdc\xaa\x44\x77\xb4\xdb\x5f\x9c\x67\x07\x44\x73\x65\x39\x78\xda\x2f\x28\x98\xa1\x64\x83\xed\x3f\x69\x19\x3c\x77\xa8\x5d\xda\xb4\x04\x8a\x33\xa0\xdc\xce\x29\x8f\xf0\x49\x4e\xfa\xdc\xa1\xf6\x62\x95\x17\x25\x54\xf7\x44\xd0\x3d\x74\x56\x2e\x28\x01\xc2\x5e\xc6\xd3\x1b\x16\x6e\x51\xfe\x2e\xd7\x91\xb7\x78\x50\xcd\x6f\xf9\x38\x3b\xa6\x86\x7f\x05\xbd\x00\x1f\x82\xeb\x6b\x81\xee\xeb\x7b\xd1\x98\x3a\x1c\x05\x2a\xe1\x4b\xd5\x5b\x4d\x6b\xc5\x88\x25\xbe\x6f\xd9\xaf\xba\x01\xda\x21\x92\x53\x8f\x49\xbb\x2a\x95\xc1\xbe\x4b\xb2\x22\x1b\xf6\x31\x68\x50\x8e\x9e\xf5\x8b\xc5\x59\x51\x47\xe9\x3c\xee\xef\xd2\x40\xbb\x8b\x4a\xe6\x89\x41\x25\xc8\x4b\xde\x18\x6d\x45\x1c\x6f\x1e\xc7\x72\x65\xb5\x02\xca\x34\xa5\x67\x4b\x3f\xcf\xe3\x76\x02\x29\xfb\x9f\xa8\x38\xd3\xcd\xb2\x01\x8f\xcc\x05\xda\x4f\xef\x87\x82\x02\xd1\x00\xf5\xe0\x31\x85\x84\xc9\x6d\x6c\xdd\x0a\x1b\x93\xe0\x7b\xc2\x49\x97\x1f\x2b\x81\x98\xbe\x41\xeb\xe9\x00\x37\x58\xb5\xbf\xfd\xb5\x06\x6f\xba\x72\xb5\xce\xe0\x89\x8e\xcc\xae\xcd\xd1\x98\x85\x73\x38\x0c\x56\x6c\xca\x30\xc1\x03\xc1\x1f\xcc\x03\x77\x2e\x28\xa8\xc8\x9f\x4d\x34\xd0\x48\x7c\x39\xce\x7a\xa9\x7b\xd5\x67\x34\xde\xe2\x58\xd9\x1a\x3f\xae\xec\x9d\x96\xb2\x3c\x46\xa5\x84\x1b\x70\x43\xf1\x08\x6e\xf8\x74\xb2\xeb\x8a\x38\xb7\xa5\xd6\x4a\x03\xe1\x80\x1f\x37\xe9\xd2\x58\xd3\xb3\x39\x4f\x9b\xb4\x2d\x8d\xdc\xc8\xad\x2f\x39\xf4\x42\xbb\x6b\x97\x4c\x95\x00\x59\x21\x79\x66\xfd\xd5\x24\xff\x6c\x00\xa9\xba\xdc\x71\x19\x85\xb6\xd4\xd7\x34\x68\xe3\x6b\x7e\xf4\xd5\xcd\x5d\xe2\x65\x60\x79\xf4\xac\xc0\x24\xe7\xb5\x3a\x55\x69\xcd\xf2\x18\xc3\x5e\xed\x8f\x3b\xd1\x18\xbc\x7d\x8f\x82\x11\xc6\x55\xae\xf0\xce\x67\x14\xde\xf9\x8c\xa2\xbe\xc7\x89\x4b\x5d\x6c\x12\xdc\x1d\x34\x81\x4e\xa9\xd9\xd1\xa9\x89\x29\xdc\xde\x39\xca\xb0\xf3\x45\x57\xf4\xfd\x6d\xc5\xfe\xc6\xb8\x99\x1f\x7b\x38\x4f\x69\x73\xca\x7f\x1d\x6b\x9a\x8b\x82\x9e\xa2\x9c\x6e\x28\xdd\xba\xc4\x2e\x95\xae\x28\x89\x59\xaa\x2d\xef\xbc\xa7\x6b\xfd\x32\xcf\xf5\xae\x77\x9f\xb4\xc7\xe4\x0c\x30\x8b\x59\x55\xee\x69\x05\x7a\x31\xee\x01\xca\x9f\xab\xa3\x20\x67\xf0\x8b\x9d\xc0\x02\x7a\x62\x9d\xce\x09\x2f\x56\xec\x27\xb4\xac\x0c\x8a\x3b\xb8\x81\x5c\xd8\x73\xf8\x03\x29\x07\x9a\x65\x34\x2e\xfd\xc1\xd3\xeb\x5e\xb5\xf4\x37\xfe\x1e\xe5\xc8\xd8\xb2\x8f\xaf\x53\x00\xda\x64\xa5\x0d\x50\xb9\xb7\xaf\x6b\x27\xc8\x2c\x5b\xe6\xdc\x47\xa8\xbf\x88\x59\x08\x2a\x3b\x3b\x0a\x1d\xcb\x82\x18\x62\xe5\x12\x64\x13\xbb\xdd\x30\x48\xc1\xeb\x6e\xea\x41\xca\x5f\xd1\x06\x96\xd8\x13\xf2\xd3\x81\xed\x3e\x1e\xb8\x94\x7b\x9e\xeb\xa8\xce\xef\x23\xeb\x81\x1c\xdb\x02\x25\x11\xa1\xfb\x6d\xce\x3d\x04\xfb\x40\x3f\x8c\xda\x7d\xff\xf4\xb9\x8e\xf7\x31\x1f\x3d\xb9\xae\x5a\x2b\xad\xf5\x20\x35\xfa\xf0\xfa\x18\xd5\x34\x34\x6e\xd8\x7a\x90\xae\xc2\xc2\x67\xd7\x5b\xbf\x79\x90\x0b\x0d\x00\xb0\xe8\x78\xea\xfc\xff\xd6\x5b\x7b\xf7\x7a\x51\xc5\xfa\x9e\x89\xbb\x71\x38\xaf\x4d\x1c\x67\x89\xe9\xda\x42\x29\x5a\xb1\x5e\x87\x57\x02\x5d\x98\xf5\x38\xde\xad\x1e\xf2\x90\x01\x42\xa8\x62\x88\x1b\x3f\xf1\xda\x0e\x45\x56\xa5\xdd\x5d\x01\x6f\x7d\x41\x49\x12\x23\x62\x43\x12\xfa\xf1\x4e\x80\x4c\x7e\x8f\xf0\x9e\xdc\x5e\x1a\xa9\xc1\x2d\x4f\x0d\x04\xbc\xa5\xac\x88\xe1\xc2\x85\x33\xea\xb2\x1a\x51\x2d\xdb\x34\xb5\xdd\x35\x06\x74\x71\x7a\x81\x63\x17\x57\xe3\x04\xde\x05\x35\x79\xd0\x7d\x5e\x72\x45\x6c\x12\x8c\xa6\x81\x33\xf8\x33\xed\x05\x03\x13\x79\xd1\xa5\xaa\x8f\x0a\x89\xd7\xa1\x86\x00\xc6\x01\x97\xf1\xbe\x32\xbb\x71\x85\x59\xb4\x49\x62\xa6\xd4\x1c\xe6\x34\x7d\x7d\x71\x0b\xa4\x9b\x2b\xc7\x4d\x28\x69\x57\x5d\x92\x7c\xa6\xf5\x92\x78\x14\xc3\x4c\x1a\x53\xb2\x9f\x8c\xc2\x49\xb0\xa3\xa3\x88\x3a\xa7\xa8\xdb\x83\x2f\xf4\x6f\xe9\x8b\x4a\x1e\x52\x7f\x39\x80\x1b\x7e\x01\xcb\x0c\xb1\x9e\x3d\x24\xf0\x8a\x3d\x1d\xc5\x5a\x7e\x7c\x9d\xa0\x19\x0c\x2b\x19\xd5\x11\x61\x93\x5b\x13\x58\x7c\xbb\xd7\xeb\x45\x86\xd8\xfb\x3b\xbc\x35\x71\xb9\xa6\xd8\x33\x42\x20\x29\x74\x4b\xd9\x46\x28\x52\x12\x63\x90\x62\xc0\x48\xf6\x51\x02\x95\x00\x49\xb1\x07\xdb\x0d\xc1\x64\x5b\xa7\xf5\x85\xdf\xe6\xdf\x7a\x7c\xcc\x2a\x3d\xcf\xdd\x54\x38\x73\x79\xbf\x61\xfe\x78\x63\xcc\x04\x7c\x8f\x02\x93\xe5\xe5\xda\x6e\xfa\xfd\x22\xa1\xa9\xda\x54\x67\x46\xda\x3e\xb6\xbe\xdc\xac\xab\x16\x05\xc4\xfe\xf9\x67\xc6\x04\xd7\xea\x2f\xed\xd1\x2b\x2a\x75\xa1\xeb\x24\x7d\x86\x40\xe5\xb9\x89\x15\x2d\x3c\x95\xc9\xd1\xef\x41\x2a\x0e\x6d\x5a\x4e\x29\xd7\x0e\x68\x5c\x0a\x82\x4d\x59\x0f\x1d\x1b\x05\xf6\x40\x6e\xd2\x1d\x21\x3b\xda\x54\x16\x28\xdf\xc4\x95\x11\x44\x7e\x28\x79\xc0\x54\x91\x36\x6c\x7d\x37\xb9\xdd\xa6\x48\x09\xab\xfd\xec\x89\xd0\x32\xda\xb3\xae\x0e\x80\x27\x61\xa1\xcd\x6a\x1e\x74\xbd\x64\x28\x48\xbf\x12\xc9\xf9\x4e\x8a\x70\xd8\x70\x70\xbf\x60\xca\x0a\x1a\xc9\xd8\xc3\x77\x71\x96\x00\x84\xfa\x08\x89\xfb\x88\x51\x2e\x9d\x2b\x82\xb0\x09\x9d\x98\x07\xb8\x71\x18\xc2\x5f\xc3\x66\x15\x89\x1a\xba\x42\x28\x71\x1f\x25\x76\x03\x1b\x6b\x8f\xd4\xd0\x79\xd3\x27\x50\x7e\x74\x4b\xcb\x02\x47\x08\x78\xe2\xfc\x38\x0a\x5a\x93\x71\x5e\xb9\x52\x09\x5d\xfd\x48\x4b\xd7\xfc\x48\xa9\x1e\xc4\xfd\x2c\xb7\xec\xfb\x25\xc5\x6d\x7d\x81\x05\x57\xae\x8a\x5e\xda\x9a\xfc\xff\x27\xf2\xd3\x97\x5f\xae\x8b\x2c\x26\xcc\x01\xc7\x7e\x5f\x31\xc2\x99\x24\x2d\xec\xed\xad\x9c\x2c\xe1\xa5\x2d\x9a\xc2\x2e\x92\x64\xb2\x67\xa5\xbf\x41\x3b\x7a\x0c\xfc\x81\x38\x33\xd3\x51\xbd\xda\x9b\x8d\xbe\x8f\x55\xea\xd2\x62\xe8\x72\xe9\x61\x6a\x3f\x29\x99\x0b\x29\x67\xb2\x73\xfe\x52\x2f\xd9\x81\x4b\x89\x72\xee\x27\x6b\x27\xe9\x52\xf0\xe3\x7a\x39\x7b\x5d\x8e\xa4\xa5\xe2\xf6\x85\x48\xdb\x6a\x5d\x98\xe8\x5c\xbe\xb4\x30\xdb\xee\x39\xa9\x8a\x19\x39\x14\x69\x14\x91\x72\x06\x4c\x83\xc6\xe7\xdc\xa1\x4d\x22\xc0\x6c\x4e\xad\x37\x31\x08\x8b\x2c\x76\x59\x92\xf5\x5c\xc1\x30\x75\x41\x11\xb5\x94\x4d\x6d\x38\x7e\x96\xb2\xdc\xba\x5e\xfa\x54\xc8\xd1\x6e\x93\xce\x0b\xa6\x01\xbb\x3b\x14\x44\x19\x63\x22\xd5\x62\x70\xb4\xbe\x86\xb6\x82\xc8\x47\x07\xff\xf9\x3f\x41\x15\x89\x8c\x81\xb1\xdb\x8c\xd7\x44\xf8\x96\xab\xa2\x84\x5f\xaf\xea\x62\xf3\x22\x36\x8b\xf8\x72\x68\xce\x47\xcb\x3b\x08\x61\xca\x83\xdd\xf1\x30\x30\x73\xde\x37\xad\x2e\x6f\xb1\xd5\x3e\x00\xbe\x93\x9f\x7c\x2a\x13\x32\x8b\xad\x49\xa7\x43\x2b\x0f\x06\xfd\xf8\x69\xa7\x28\x0a\xe0\x9a\xb0\x11\x05\xc6\xe8\xe4\xd5\x34\xc1\x58\x77\x22\x46\x27\xd8\xcb\xb0\x35\xcf\x6a\x5b\xbf\x2c\x5d\xb1\x79\x90\xb9\xc2\x5b\x6a\x16\xf4\xd9\x71\x08\x81\x8b\x1f\xd6\xe2\x50\x30\xc2\x12\xda\x6c\x7d\x57\x70\x7c\xdd\x56\x5d\x3e\x30\x34\xd1\xc1\xd8\xd1\x19\xd3\x39\xa3\xfb\xe0\x85\x6e\x16\x66\xfd\xb0\x42\x59\x5c\x4e\x77\x14\x9f\xed\x81\xaa\xe0\xbd\x7e\x18\x63\x76\x71\xa2\xb0\xbe\x28\x3f\x51\x90\x53\x93\x2c\x56\x03\x2e\x72\x25\x70\xd4\x5f\x4c\x82\xcb\xd6\xab\xb8\x7f\x7f\xbb\x67\x0d\x44\x21\x10\xc7\xbf\x47\x3f\x8a\x1f\x37\x10\xa1\x13\x6b\xca\xbe\x05\x06\x00\xdd\x0f\x9e\xee\x6a\x11\x1e\xb4\x75\x3f\x56\xf9\xe5\x30\xcf\x62\x5b\x14\xec\xb6\x83\x5a\xe4\x94\x32\xe9\x3e\x35\x11\x4e\x16\x66\xdb\x83\x2c\x2d\x7b\x59\xb2\xe4\x85\xae\xb5\xdf\x92\x06\xc8\x88\xfd\xf3\xd6\xaf\x7b\xe8\x85\x76\xdf\xf5\xfa\x32\x34\xf7\x59\x5f\xbd\x67\xbc\xe7\xe1\x8b\xb3\x7c\x13\xae\x2a\x56\x89\x8d\x49\x7c\x00\x2d\x72\xa8\x92\x23\x5f\x3a\xa9\x0c\x5e\x98\x5b\xca\x47\x31\x76\x9f\x37\x1e\x09\x22\xb5\x27\x15\xca\x28\x77\xa6\xdb\x52\xd4\xdf\xf7\x23\x25\x95\xf4\xbe\x56\x7d\xb5\xe4\xe5\xd7\xf2\x2e\x58\xff\x94\x56\xb7\xaf\xd5\xb4\xed\xf0\x13\x7a\xa9\x97\x79\x96\x10\x37\xef\x80\xf7\x23\x0d\xdf\x7e\x43\xe9\xc3\x5e\xc2\xd6\xf7\x87\xbc\x17\x93\x86\x41\x1f\x0e\xec\x4d\x7c\x3f\xcc\x3b\xce\xe0\xc8\x95\x81\x6c\xbd\x13\x84\xc2\xd9\x04\x75\xeb\x57\x03\x93\x9a\x56\x98\x38\x32\x42\x84\x9f\x8c\xed\xb9\xa2\xeb\x94\xfe\xd9\xa6\xd2\x3f\xdb\x54\x58\xaa\xac\x2a\xeb\x72\x1a\xa7\x04\x7b\x46\x47\xa1\x80\x3b\xa5\xe5\xf3\x48\x73\x6f\x57\x00\x71\x5d\x44\xac\x42\xa4\xe3\x03\x1f\x63\x3b\x34\xcb\xb1\x7e\x67\x10\xde\xb0\xfe\x67\x3a\x14\xd1\x10\xcd\x99\x17\x81\x50\x7b\x61\xcc\xa1\x8e\x36\x32\x0b\xc6\x37\x81\xf6\xb2\x15\x9b\x17\x59\x82\x69\x01\x7b\xbe\x8c\x82\xb0\xc1\xfb\x23\xe5\x73\xf3\x1d\x65\x18\x32\xdd\xa9\x13\x03\xd9\x20\xa1\xe6\x5a\x32\xc4\x11\xde\xa9\x92\xb7\x53\x23\x25\x93\x7a\x1f\x32\x31\x3e\xa3\xf0\xbf\xee\x04\xab\xd4\xe8\xd0\x00\x00\xe0\xc7\xb4\x48\x04\x18\xd4\xe0\x7c\x65\x4a\xc3\xe2\xdf\xb2\xf1\xd4\x88\x6b\xdc\xd7\x55\xe3\xd7\x42\xbb\x21\x37\x8b\x9c\xf5\x20\x59\x79\x78\x5d\x17\x06\x33\x48\xec\xb1\x4a\x6f\xa9\x14\xf5\x42\x83\xaa\xe8\x5c\xdb\x9a\xa2\xe4\x52\x4e\xb6\xa8\x32\xb0\x66\xcd\x38\x2c\xff\x9b\x4d\x2d\xe0\x38\xa1\xa8\xb7\x7f\x7f\xa3\xe6\x61\xc3\x0b\xcc\xaa\xc9\xbb\x0a\x3d\xa9\xbd\x07\x6f\x36\x9a\x4b\x0e\xcc\xab\xaf\xda\xdc\x28\xeb\xfc\x23\xb8\x32\xd2\x98\x6c\xe8\xbe\xc5\xd9\x8a\xf5\xc6\xe5\x5a\x32\x5f\x44\x50\x68\x71\x62\x09\x4e\x82\x65\x17\x66\xdb\x8b\x0e\xe2\xb4\x5e\x28\xa7\xfe\x7b\x56\x5c\x8c\x82\x3d\xf5\x9b\xa1\x95\x5c\x1a\x26\xb5\xa2\x3e\x7d\x63\xa4\xa4\xc6\xe8\xa2\x20\x05\x68\x75\xb4\x77\x86\x9a\x7b\x5e\xc5\x85\x97\x21\xe8\x13\x4a\x11\xcf\x0d\x87\x42\x2d\x1c\x2b\xb1\xf9\x49\x33\xb5\xb0\xcc\x56\x53\x9a\x06\xb0\x45\xde\x28\x6c\xef\xf7\xf1\x72\x26\x0e\x34\x79\xcf\xb9\xb4\xeb\x4c\x5a\x8c\xd9\x1a\xb3\x09\xa6\x68\x0e\xeb\x09\x78\x8f\x54\x0e\x43\x9e\x7a\x5e\x1b\x5a\x9d\x1f\x3d\x2c\xbd\xa2\xca\xee\x56\xce\x35\xb7\x09\x65\x80\xe0\x74\x04\xbf\xde\xcb\x40\xfb\xd6\xc3\x9f\x04\x45\xfd\xff\xfa\x69\xa5\x14\xb0\x63\x5d\x49\x4b\xdd\xc7\xc6\x47\xb6\xff\x80\x2e\x2a\x65\x65\xb3\x9f\xeb\x28\x71\x99\x1d\xe8\x24\x89\x53\xfa\x98\xb8\x55\xda\xfb\xc5\xd6\xb3\xcf\x7a\x83\x38\xda\xf6\xde\x65\x6f\xc1\x9f\x59\x51\xd0\xc5\xfd\x04\xa7\x9f\x87\x80\xec\x9d\xe3\xce\xc1\xc7\xba\x7c\xbc\x3f\x0a\xc7\xf4\x6d\xcc\x86\x58\xd9\x0a\x49\x1e\x6e\xf7\x19\xba\x12\xd8\xa7\x9c\x7c\x7a\x8f\x86\xb9\x43\x5e\x34\x50\xf9\xf5\x63\xc6\x88\xdf\x75\x13\xe7\x0f\x72\xa6\x1b\x60\x57\xe1\x20\xfe\x99\x46\xbc\xdc\x1b\x29\xc5\xac\xab\xa4\x62\x84\xa4\xf8\xcf\x51\x19\x0a\xd6\x59\x09\x77\x6c\xe7\xd0\x82\xa1\xeb\xcf\x23\x04\x3d\x26\x0c\x51\x35\x4b\x15\xe4\xaf\xfc\x2d\x52\x7c\xf6\x49\xc5\x17\x7e\x9b\x83\x09\xd3\xd1\xa1\xea\xff\xaf\xe9\xbe\xe0\xc0\x9f\xe9\x50\x65\x4a\xd1\xf9\x77\x9e\xa4\xb6\x1a\xa3\x4c\x9b\xd0\x89\xb1\x4b\xed\x30\xb1\x87\x5b\xaa\x1b\x3e\x1a\x83\x66\x78\xe0\x47\x59\x75\x6d\x5a\x16\xc0\x07\xe2\x46\x41\x0a\x41\x59\xc0\x4b\x40\xbb\xad\x3a\x41\x3d\xb3\x62\x77\x29\xc9\x47\x86\xe0\xf9\xbe\x47\xfd\x6d\xfd\xec\xe2\x25\xdf\x25\xfa\x18\xf5\x84\x74\x96\x70\xb5\xf8\x1d\x46\xc1\x65\x06\x9d\x0e\x16\x4f\xc5\x57\x60\x27\xff\x26\xf5\x71\x97\xae\x64\xc9\x0a\x53\x07\x04\xcf\x1b\x66\x07\xa7\x14\x04\xd9\x1e\x1e\x9a\xb4\x70\x59\xba\x33\x9c\xf9\xaf\xe3\x3b\x09\xbd\x4d\xb9\x40\x9d\xd1\xda\x31\x77\xb9\xdc\xd3\x74\x76\xfc\x8e\x7f\x81\x05\x2c\x75\x4d\x28\x18\xfb\xae\x7c\xa4\x5e\xe7\xa2\xa1\xa6\x79\x90\xf5\x62\xc0\x26\xe1\x86\xad\x50\x6e\x69\x05\x78\xce\xbd\x67\x32\xbd\x8b\x0f\x91\x6b\x1a\xa8\x4f\xd3\xd8\xb2\x02\xb7\x0e\xa7\xfb\x29\x0d\x2a\xfb\x01\x96\x39\x36\xd9\x65\xcf\x66\x1d\x9a\xc4\x16\xa5\x4b\x55\xf0\x42\xdb\x9b\x73\x0b\x7e\xa2\x10\x0c\xa9\x19\x58\x71\x28\xc2\x79\x7a\x51\x11\xda\x2f\x36\x29\x6b\xdb\xc3\x8e\x90\xac\x48\xa5\x71\xd4\x7f\x9d\x16\xb7\x7c\x56\x40\x64\x4c\x8e\x80\x0f\xbd\x00\x1f\x70\x16\x63\xf3\x76\x7e\xbf\xaf\x19\xbd\xbf\xef\xcf\x95\xd2\xa6\xdc\xa1\x17\x04\x66\xbd\x94\xfc\x78\x20\x74\x53\x67\x28\x38\xca\xd7\xd6\x7e\xcb\xac\x9c\xcd\x25\x1e\x52\x96\x4d\x55\xcd\x6c\xaa\x51\x7c\x6e\x93\x2c\xa6\xb2\xdd\xdb\x5f\x9d\x47\x6b\x4e\x44\x0b\x1b\x48\x8a\x71\xdf\xc6\xcb\xd9\xd2\x52\x2b\xb4\x70\x2f\x44\xca\x67\xe0\x42\x93\xd6\x78\xb5\x9c\x1b\xba\x51\x63\x04\x55\x05\x12\xd9\x18\x23\x77\xf6\x4c\xb2\x3b\xd4\x99\xbb\x3a\xc1\x25\x0b\x12\x68\xac\xc8\x15\x29\x93\xb5\xcb\x0a\x86\xba\x9d\xac\xdf\x71\xa5\xce\x61\xed\xc8\xa6\xa5\x5b\xef\xb9\x72\xf5\xde\xf6\xf2\x1b\xc1\xf4\x99\x47\xa8\x38\xdb\xaf\x2b\x42\xac\xe9\x52\x49\x5c\xb8\xb4\x37\xa3\xb4\x3a\x1f\x28\x5b\xb0\x53\xca\x4f\x08\xb2\xd8\xfc\x37\x88\xce\x58\x34\x3f\xd6\x9e\x76\x36\x5f\xca\xf2\x81\x21\xa1\xb4\x85\xd9\xa0\xa8\xed\x91\x35\xdf\x8e\x5a\xca\x40\x68\x0c\xd8\x3a\x61\x93\x78\xa0\xae\x21\x1e\xd7\xa0\xac\x90\xae\x7d\x5f\xf9\x5d\xb2\x98\xba\x22\x2b\xc8\x2e\xbc\xa5\x6a\xbb\xfb\x88\x85\xf8\x1a\xb7\xe8\x0c\xdc\x64\x3f\x3a\x6f\x62\xba\x30\x1b\x76\xdd\xfe\xfd\x0b\x9b\x8c\xe4\xc5\xfe\xde\x1c\xa7\x41\xd4\x71\x43\x76\xa5\x6a\xa7\x1c\xe3\x58\xca\x4d\x01\x05\xdb\x32\x49\x96\xf6\x76\xb6\xbc\x72\xe9\xef\x51\x53\x41\xf2\x29\x05\x60\x79\x5f\x65\x96\xe7\x28\xc0\x00\xe5\x74\x13\xc7\x1d\xff\xd1\x28\xe8\xe7\xdd\x54\x50\x96\xaf\x54\x19\x04\xc6\x30\x53\x10\x43\xa5\x10\xf1\xde\x8b\x14\x3d\xf8\x8a\x3a\x49\xba\x19\x9b\x6a\x79\x0b\x6e\x3f\x7b\x9e\x14\x81\xd8\xbf\xbf\x3d\x34\x45\x5f\x4c\x07\x90\x01\x7c\xa2\xb2\xf6\x4f\x1a\xba\x83\x07\xc6\xf6\xb4\xea\x67\x45\x8a\xc6\x77\x51\x55\x7b\x45\x69\xd3\x94\x4c\x9d\x94\x6c\x04\x2e\x95\x38\x22\xb4\xbc\xf9\xfc\x24\x3a\x8d\x3c\xe4\x12\xc7\x07\x92\x60\x08\xe9\x2e\x0a\xb8\x30\xc4\x53\xea\x10\xc2\xd0\xce\x0f\xed\xbd\x70\x78\x63\x20\x28\xd2\x6c\x75\xd1\xe5\xdd\xe2\xd3\x89\x3d\x9a\x9a\x9c\xe5\x12\xae\xbd\xe0\x54\x50\x89\x39\xa7\xf4\x06\x97\xaa\xb4\x6b\xc0\xdd\xc4\x5b\xab\xde\xb5\x6f\x64\x47\xe3\x12\xa7\xe5\xb4\xd2\x1f\xdc\xd6\xa1\xbc\x4a\xcb\xf8\x79\x3e\xba\xaf\x00\xde\x6b\xf0\x41\x99\xa7\x2e\xe5\x8a\xcd\x5b\x81\x48\x0b\xed\x5f\x41\xd4\x2b\x6f\xeb\xdc\x91\xa3\x0b\xd7\x84\x48\x99\x87\x0a\x47\x03\x98\xa7\x18\x02\xd2\xa2\xe3\x3f\xf2\x4d\xf3\x32\xcb\xe3\xbe\x8c\xf7\x99\x23\x8e\xe3\x55\x08\xe3\x61\xfb\xf4\xf2\xac\x28\xa6\x83\xbc\xec\xc9\x48\x69\x37\x82\x24\xc3\x8f\x23\x85\x0c\x3b\x19\x38\x9d\x2e\xc9\x4a\x8d\x12\xda\x46\x91\x95\x1f\x77\xc2\x60\x9d\x3e\x48\xcc\x64\xf0\xcf\x50\x1b\xc3\xe8\xf3\x8e\xea\xcf\x4f\x2e\x8b\xba\x34\x1d\xe6\xd9\x4a\x46\x30\xa9\x20\x59\xcc\x3a\xbf\x92\x3c\x05\x33\xd2\xbe\x35\x25\xf1\xa7\x45\xf8\x55\x9d\x03\xff\x0b\xdd\x2e\x41\x9a\x7e\x46\x49\x11\xa5\x65\x4e\x2d\x05\x52\xe9\x5a\x10\xfe\xf3\x39\x8a\xd1\x72\x56\x84\xd6\x1b\xf5\xe4\xab\xdc\x76\xa7\x03\x1b\x92\x7d\xa3\x24\x77\x56\x25\x1a\xa2\x29\xff\xc3\xd8\x32\x4b\x4c\xdc\x1a\x17\x6f\x18\x13\x79\x50\xbc\x05\xb3\x5a\x64\xe9\x0e\xe5\xef\x73\x5e\x15\x8c\x38\xde\x3c\x98\xd6\x07\x5d\x28\xae\x63\x09\xb7\xa8\xf1\x81\x94\xe9\x6a\x93\xf7\xf2\xc0\x96\x66\x50\xc5\x2e\xe1\x26\x80\x86\xfb\x89\x02\x09\x7d\x3b\xe4\x76\x57\xa2\x87\xfd\x48\x07\xad\x4b\x04\x90\x5d\x9d\x10\x19\x99\x82\x8f\x00\x7f\xb3\xc1\xca\x4b\x00\xd0\x8a\x54\x70\x4e\xa5\x4c\xe7\x26\x5e\x32\x77\xa8\x6d\x16\xf3\x6a\x58\xe2\x25\x32\x6e\xd0\x63\x88\x30\x3f\x5a\xb1\x29\x6b\x79\xa2\x83\x78\x3c\x52\xe3\xe8\xe3\xc1\x26\x3d\x8f\xfb\x86\x79\x76\x22\xd5\xdd\x0a\xb2\xdd\xaa\xbc\x7d\x25\x2b\xec\x90\xf5\x28\xa4\x3a\xd7\xe0\x1f\x7a\x7b\xae\x77\x14\xbe\xa1\x57\xad\x4d\x8f\x3b\x0d\x7b\xab\xb0\xdb\x74\x44\x7a\x58\xea\x8b\xb3\xbc\xa0\x47\xcd\xce\xa4\xd9\xb2\x9d\x09\x0a\x95\xe0\x4c\xb1\x49\xf9\x28\x20\x4d\xdf\x45\xc8\x0c\xe0\x5d\x5f\x3b\x34\xa1\x10\x8b\x65\x3b\x2c\x5d\x2c\x86\xe1\x9e\x69\xb8\x10\x8c\xaa\xb6\x7e\x97\xcf\x8b\x9a\x2a\x5d\x09\x6f\x76\xb3\x30\xeb\xcd\x6e\xc2\x29\x60\xd3\xd2\xe5\x7c\x60\x70\x2f\x0c\x09\x85\x34\xc6\x9e\x52\x53\xa8\x6e\x15\x97\xce\xeb\x8d\x63\x06\x7b\x52\xcd\x63\x4f\xfa\xe1\x56\x56\x95\xab\xd6\xf5\xfa\x33\xea\xbd\x3e\xa4\x0b\xe8\xd5\xd6\xeb\x4f\xc4\xb6\xc7\x54\xc1\x37\x5a\xf6\x89\xf0\xde\x2d\xd5\x00\x5c\x34\x69\x9c\xe5\x43\x6a\xad\xe2\x5f\x8f\xea\x39\xe7\x51\x75\x3f\x4d\x9c\xf1\x1e\x41\x65\x73\x56\x89\x5d\x9c\xd7\x22\x94\xda\xde\xac\xe8\xbb\xe1\x40\xd0\xb8\xc8\x65\xfe\x2f\xdc\x27\x7e\xd2\xa4\xf9\x91\xb8\xfa\xc0\x66\x85\x69\x5f\x40\x2a\xeb\xd6\xa7\x94\xb7\x49\xe1\x7a\x69\xfd\x09\xd3\x21\x67\xb8\x0e\xc5\x07\x5c\x85\x6d\x0c\x14\xe0\x67\xeb\x01\x55\x7e\x3d\x88\x9e\xc3\x6f\x9a\xd7\x82\x57\x62\x0c\x93\x91\x63\x13\xfc\xa7\xbd\x7b\xdb\x4b\xae\xe8\xdb\x7c\x20\xac\x72\xb6\x4a\x88\x02\x4d\xe7\xec\x68\x8b\x91\xff\x73\xed\xf9\xf9\x99\x20\x99\x09\xd8\xa0\xe4\x61\x5a\x13\x4c\x69\x64\x9f\xe1\x32\x55\xf8\xaa\x01\x63\xbf\x68\x7b\x26\x65\x8c\x25\x32\x61\xf4\xd9\xd0\xe0\x78\x40\x55\x81\x97\x68\x0d\x47\xd9\x25\xcd\xef\xb9\x84\x84\x1f\xeb\x6c\xa6\x13\x68\x45\x77\x68\xc1\x00\x3c\x73\x7f\xa4\x66\xed\x17\xa3\x50\x7d\xe7\x59\x61\xd3\x25\x9b\xc0\x28\x4c\xa9\x3e\x08\xad\x39\xc4\xa5\xd5\x2c\x5f\xa6\x12\x21\xf8\x9d\x80\xd9\x85\xef\xc1\x88\x4f\x9c\x16\x20\xc5\xfb\x64\xdd\x63\xc6\xa6\xd6\x9f\x51\x85\xbf\x29\x20\xbc\x8a\x14\x55\x78\x72\x70\x13\x15\xea\xcd\x58\x17\x2e\xac\x9a\x34\x0b\x08\x39\xcf\x77\x7b\x57\xc7\xc9\x77\x9b\x54\x10\x06\x26\x29\xc5\x31\xd6\xdb\x68\x86\xd7\x9c\x56\xe4\x83\xff\xe4\xef\xff\x7d\xfa\x33\xf1\x73\xac\x53\x74\x31\x7a\x7c\x5c\xb9\xe6\x2c\x2e\x12\x55\x35\x00\xbc\xae\x28\x9c\xee\x95\x89\x29\xdb\xbe\xf9\x76\x2f\xcb\x60\x16\x88\xdd\xff\x20\x10\xdb\xef\x3d\x41\xf8\x16\xa4\x68\xd3\x9d\xa7\x14\xb2\xaa\xeb\xea\x1f\x6b\x92\x5d\xa1\x40\xfd\x3a\xd2\x40\x0f\x86\xf4\xf6\xf9\x53\xe0\xfc\x7a\x89\xe6\xfd\xfb\x35\x8a\xf6\xcb\x22\xea\xaf\x7d\xf1\xce\x52\x08\x42\xe1\xf2\x16\x75\x42\x10\x75\xae\x6a\xdc\x7a\x36\x44\x7b\x58\x13\x05\x95\x21\x77\xe0\xbe\x85\xee\xc3\xb1\x71\x0f\xa5\x50\xbd\xbf\x3e\xb1\x1f\x5f\x9c\xad\x63\xae\x49\x7b\x1e\xe6\x89\xe5\x7a\x33\x00\xc2\x7e\xf5\xa6\x8a\x66\xd9\x92\x51\x1c\x99\x73\x91\xae\xa1\xf4\x7c\xa4\xe8\x93\x38\xde\x16\x07\x4b\x96\xc7\x57\x79\xd5\x1b\x91\x1a\xc8\x46\x21\xc7\x1a\xb8\x22\xb6\x49\x62\xe0\x2a\xa6\x94\x2d\x36\x94\x77\xe2\x46\xf4\x74\x40\x0e\x84\x7a\xfa\x21\xec\x6d\xdc\xd0\x7b\x2a\x58\x5c\x46\xcd\xee\x99\x02\xf5\x16\x46\xf3\x11\x7c\x11\x31\xe4\xac\xaf\x1e\xff\xff\x91\x12\xd8\xfa\x4e\xa4\x18\x41\x17\x15\x21\x62\xd1\x25\x49\xf1\x50\x60\xe8\x5e\x8f\x82\x8d\xc6\x71\x84\x0d\xb4\x65\x8f\x2b\xae\xda\xd4\xba\x5a\x2f\xac\x56\x83\x53\x61\xba\xa3\xf4\x3b\x2f\xe3\x6b\xf2\x1b\x4f\xa8\x0e\xcc\x1d\x6a\x2f\x39\xd6\xd9\x10\x13\xbc\x00\xdf\xbb\x18\x05\xd0\xb2\x71\x79\xe2\x52\xbb\xab\x5e\x66\xc2\x90\xae\xaf\x3d\x82\xca\x27\x91\xc2\x4e\x5f\x54\xb5\xe7\x15\x04\x03\xa4\x8b\x77\x91\x9c\x8a\x0b\x66\x98\x1e\x1f\x8b\x82\xe9\xce\x9f\x8d\xb4\x97\x98\x4a\x4b\x17\xfb\xa6\x67\x4a\x75\x56\x9c\x1b\x13\x57\xd8\xa3\x1c\x28\xab\x64\x6d\x2a\xc4\x81\x3b\x23\xa2\x25\x8a\x2c\xab\xc2\x41\x8e\xe5\xc7\x55\x6e\x9f\xae\xbf\x86\x8c\xfa\x15\xd8\xff\x6f\xc6\xfa\x3b\xa3\xba\xf2\xc0\x85\xff\xb9\x1e\x4e\x6c\xe2\x00\xf4\xda\xfb\xfe\x9a\x7e\x8f\xd2\x22\x5c\x90\x7b\xe8\xdf\xf3\xfb\x62\x6f\x63\x77\x4d\x75\xc2\x6d\x3f\xcd\xc7\x0f\x72\x61\x96\x74\xe4\x15\x41\x8b\x00\x1f\x7f\x79\xa4\x0c\x71\x61\x4d\xc3\x78\x84\x75\xe5\x50\x37\xdd\xa1\x35\x20\x26\x5a\xad\x97\x24\xe9\x07\xb2\x0b\x3d\x95\x1b\x2a\xf5\x8c\x93\x6a\x50\xb0\xc9\x8e\xa0\x47\xb5\xa9\xbc\xc2\xe4\x17\xd6\x2e\xef\xa4\x8b\x83\x0d\x79\x97\x7e\x2a\x7e\xf6\x75\xba\xd4\x7c\x7e\x29\x23\xee\xc7\x3a\x81\x5b\xfc\x73\x55\xf4\xf0\x6e\x91\xdc\xe6\x29\x2d\x7d\xb6\xe2\xd2\x58\x86\x51\x98\x9f\xfd\x6e\x14\x00\xbe\xbf\x1b\xc6\x94\x03\x52\xb4\xf2\xc8\xfa\x7f\x84\x78\x8b\xe3\x0e\x07\x35\xa6\x0f\xa7\x55\xaf\xb2\x57\x99\xdc\xa4\xa5\xb5\xdd\x87\xea\x57\xca\x7c\xbb\xfe\x63\xac\x20\x06\x9e\x89\xd6\x8a\x12\x3e\xdd\x18\x29\x4e\xc5\x19\xba\x9e\xaa\xe9\x7d\x70\x5c\xab\x85\xdf\x4c\x0b\xaf\x98\x15\x97\xf6\x0a\x52\x8e\x45\xc7\xef\x9c\xc2\xde\x9f\x1b\x37\xdc\x6b\x29\x6d\x2f\x35\xa3\x3d\xdf\xd0\x39\x69\xbb\xa2\xa8\xc6\xd4\x62\x54\x57\x4a\x33\x1f\x56\x4d\x9e\xdb\x14\x9d\x5e\xd9\x20\xda\xb1\xfa\x4a\x34\x26\x1b\xa9\xce\xdd\x2b\xbe\xa6\xc9\xaa\x32\xb1\x02\xe5\xf1\xcd\x51\xdf\x49\x98\x54\x57\x9d\x9f\x3f\x58\x3f\xc8\xe1\xda\x83\x9b\xcf\xbe\x50\xfc\x44\x6d\xfb\xc2\xba\x57\x2d\xa6\xa2\xc8\x97\xae\x20\xd8\x21\xf1\xb8\xa1\x80\x83\x6f\x28\xf5\xbb\xbe\x35\xdd\x1d\x01\x70\xf1\x71\xa4\x0a\xf8\xeb\x63\x1e\x96\x6a\xa0\xf3\x1a\x05\x5e\x59\xf1\xb8\x0c\xc2\xd7\x9a\xd4\xd7\x31\x49\x62\x7b\x1e\x5d\x28\x3e\x2e\x41\xb7\xe6\x6d\x15\x92\x96\x4c\x6e\x99\x98\xe9\x4d\x5a\xbd\xda\xc3\x19\x6d\x09\x92\x96\xfd\x2c\xc9\x7a\x6b\xad\x00\xa0\xc5\x8e\x17\x1b\x10\x59\xe9\xa5\x1b\xb8\xae\x52\xd8\x7b\x80\xc5\xa2\xdb\x46\x58\x2b\x97\x55\x4b\x6e\xc9\xc4\x2e\x71\xe5\x1a\xb5\x12\x00\x27\xbb\x4f\x61\x43\x7a\xee\x2d\xcf\xbe\xbf\xa5\xc1\x1e\x53\x13\x8a\x5c\x07\x5e\x20\x40\xeb\xc0\xd9\x1c\x14\x31\xa0\x3a\x61\x58\xc7\x8f\xd7\x9f\x54\xe3\x80\xb2\x2e\xce\xea\xd4\x6f\xee\x10\xf7\xef\x90\xfe\xf0\x63\x5f\x6c\x0d\xf3\xac\xb4\x85\x2c\x27\xb1\x4e\xa3\xdf\x26\xe0\x19\xe1\x5c\x64\x2b\x36\x4f\x0c\xa6\xd4\xe3\x46\xfa\xf3\xf3\xf2\x58\x5d\xdb\x61\x56\x94\x55\x2e\xba\x84\xc0\x99\x5d\x51\x0b\xf5\x82\x12\xf4\x7b\x7d\xf4\x77\x1b\x26\x30\xe9\x8a\xcb\xb3\x14\xcd\x3d\x11\x23\x65\x9d\x18\xe5\x3d\x77\x54\x23\x5e\x86\xc3\xac\x10\x53\x6a\x84\xa4\x5b\x0a\xe2\x7d\x4b\x49\x9f\x9b\x7c\xd1\x95\xb9\xe9\x59\x5a\xb7\x22\xe6\xd9\xf2\x6e\xc4\xcc\x50\x06\x12\xe4\xae\x76\x4e\x63\x9b\x6b\x7e\x89\x12\xdb\x38\x11\x3d\xad\x83\x28\x99\xbe\x90\xa6\x5c\x90\xd7\xd7\x4a\x3c\x17\x1a\x0c\x0e\x17\xea\x82\xc7\xa5\x41\x45\x00\xe9\xea\x09\xd5\x2c\x3e\x31\x36\xd0\xcc\x45\xea\x5c\x68\x02\xb4\x8c\xf8\xc9\xd8\x81\x3b\x30\xe0\x40\xe9\x2e\x96\x34\xae\x54\x66\x56\x0e\xb2\x62\xd8\xb7\xb9\x8b\x5b\x8a\x4f\x15\x85\x5e\xf7\x24\x13\x77\xee\x10\x54\x60\xdd\x40\xe9\x29\xdd\x52\x16\x0a\xba\x63\xd2\x75\xdd\x87\x82\x28\xc3\x59\x5c\x65\x74\x23\x4e\xea\xaa\xea\xa8\xaa\xbc\xef\x8c\x94\xef\xfb\x6e\x4c\x95\x01\x0c\xfa\xaa\xd6\x19\xbb\x4f\x1f\x89\x43\xbc\xd5\xd9\xad\x9a\x0f\x3b\xe9\xf6\x49\x99\x4b\x9f\x82\x9a\xe0\xed\x28\xf4\xc4\x2f\x51\xa6\xe1\x93\xfd\xbd\x7b\xb9\xe5\x71\x3b\x9a\x70\x03\x47\x34\xfc\xb1\xd7\xb6\xeb\x9b\xe1\xd0\xa6\x33\x41\x02\x92\x25\x18\x44\x94\x60\xdc\x5e\xdb\xaf\x4d\x08\x4f\xc8\x76\x68\x42\x08\x2f\xe5\x96\x88\xbe\xcc\x31\x6b\x72\x05\x7e\xcc\x37\xc5\x0a\x9b\xaf\xd8\xee\x8c\xba\x56\xdf\xd1\xaa\x49\x1b\xba\x18\x62\x48\x17\x40\x03\x08\xeb\xe2\x52\xaf\x32\x93\xbc\x72\x85\xe5\xa6\xb5\x38\x29\x87\x9c\xe0\x93\x28\xb8\xf3\x7d\xa2\x4b\xfb\x2b\xa3\x90\xb2\xbc\x52\x15\xe5\xe3\xa1\x13\x7d\x29\x52\x8a\x9b\x77\x46\xc1\xd8\x89\x07\x5c\x38\xfa\xae\x6a\x74\xe0\xb6\x8e\x9a\x8c\x32\x5c\x1d\xc3\xe9\x8f\xb4\xfb\x2e\xbe\x00\xd2\x75\x58\xe3\xa1\x93\x72\x79\x5c\x69\xf7\xc0\xdc\x21\xbe\x7d\x4c\xa1\x40\x73\xf1\xa4\xe2\xd7\x7c\x9f\x12\x0b\x94\x39\x97\x22\xb5\x74\x2e\x2a\x92\x5b\x1d\x0d\xeb\x63\x0f\xb4\x78\xc1\x16\xd2\xd7\x46\x4a\xfb\x6d\x25\xe7\xc8\x1d\x6d\xfe\x87\x48\x6f\xe0\x57\x0d\x05\x2b\xa4\xb1\x0f\x22\x85\x5c\x78\xa0\xee\xc4\xc0\x1e\x76\x71\xd6\xd2\xda\xdb\xf4\x97\x8a\xa6\xc6\xfb\xeb\x4b\xf3\x7b\x5b\xa1\xb3\xc0\x64\x1f\x71\xe0\x0c\x95\x6a\x5c\x0d\xa7\x42\x4b\x0d\x24\xbb\x31\x28\xbe\x80\x84\xb7\xae\x4a\x01\x26\xf7\x6d\x5c\x32\x3e\x15\x9b\x94\x35\xc3\xf9\x49\x93\xfa\xc1\x92\xcb\x8b\x72\xa7\xdf\x3f\xff\xac\x4d\xa7\x17\x75\x6f\xfe\xf1\x53\xeb\x34\xae\xc5\x79\x7a\x07\x37\xd9\xd7\x37\x0b\xb3\x1e\xd8\x4e\x77\x03\x7d\xbb\x1b\xda\xd5\xe2\xba\x0a\xed\xa4\xdd\x9b\xa7\xb6\x3b\xdd\xd2\x6a\xb0\xde\x15\xfb\x98\x62\x18\x3d\x4a\xbd\x73\x6c\x90\xed\xeb\x7a\x16\x9d\x75\xed\x43\xa1\x77\xc3\x00\x3e\xbc\xc1\xa9\xf1\x56\x13\xf6\x87\x9a\x5d\x88\x61\xc6\x09\xe5\xc7\xfc\xa3\x48\x29\x2f\xbf\x87\xda\x05\xbb\x6f\x5b\x67\x6b\x40\x3d\x30\x77\xa8\x5d\x94\x36\xb7\x19\x45\x6c\xed\x0d\xcd\x8f\x27\x65\x01\x5e\x38\xd8\x2e\x86\x36\x76\x26\x29\x91\xe8\xa1\x73\x0d\xc4\x2f\x3f\x9e\x98\x62\x2d\xcc\x8a\xd3\x1d\xf7\x13\x30\x21\xe7\x69\x1b\x3f\xf1\x06\x47\x45\x15\xc7\xd6\x76\xfd\xd9\xc4\x22\x1d\xca\xee\x64\x43\x9d\xc5\x2b\xb6\xef\xe2\xc4\x16\x64\x2d\xc2\x01\x3e\x52\xca\x32\xff\x1b\xf0\x57\xfc\x84\x6e\x0f\x32\xce\x3f\x8e\x5a\x5f\xf8\x6d\xef\xdf\xd9\x08\x7b\xeb\x5b\x97\xb7\xd4\x52\x00\xb0\x45\xbe\x8f\xf2\x90\x1a\x98\x94\x18\x0a\xc2\x13\xf5\xce\x88\x01\x81\x70\x54\x59\xdd\xda\xb4\x9b\xe5\x85\xdd\xd2\xcc\x3d\xaa\x64\x80\x8e\x8e\xe1\x15\x06\xe6\x70\x4b\x91\xb2\x2e\xa9\x66\xdf\xa5\x89\xea\x7f\xef\x5c\xbb\x97\x25\x80\x45\x22\x7e\x5d\xa3\xbf\xe7\xc7\x8d\x24\xa6\x15\x57\x38\x7f\x73\x3c\xae\x2f\xe8\x94\xbc\xaf\x1a\x95\x71\x3f\x77\x45\x49\x58\x0b\xcf\x88\xe5\x23\x95\x9f\x28\x13\x8d\x62\x98\x91\x9b\x47\xfd\xcb\x44\x8d\x53\x29\x73\x4e\xcc\xb0\x17\x66\xdb\xfd\x2c\xb5\x05\xac\x32\x24\x13\xa0\x3d\xeb\x85\x08\x3c\xf8\xfa\x46\x83\x30\x61\x3b\x5b\x5a\xb2\xb9\xed\xce\xd4\x21\xdf\x2b\xb4\x07\xd5\xdf\xab\x4a\x70\x9d\x79\x62\xd8\xd9\x97\xf5\x62\xfc\xd3\x26\x25\x47\x93\x24\x58\xf2\xdc\xb3\x57\x5d\xaa\xb3\x8a\x08\x9e\x2d\x16\x71\x95\xdb\x99\xfa\x94\xc7\x31\x83\xea\x8f\x4d\x85\x71\x59\x45\x6d\x84\x7e\x99\x10\x3b\x43\x8e\xb0\xe1\x21\x3b\xe9\x92\x5b\x6c\x4d\xe0\x78\x05\xe0\x2b\xc5\x9a\x35\xf5\x3e\x4e\x1f\x1a\x6f\x6f\xb7\xbc\x7d\xc4\x26\xe5\x19\xde\xc9\x7d\xef\xdc\xe6\xa5\x51\x90\xa3\x78\x18\x30\xdf\x31\x54\x1b\x8a\xfd\x1d\xd4\xbd\x10\xea\x75\xc3\xd5\xfe\xdc\xdc\xbe\xe7\xf7\x1d\x3a\x48\x57\x5b\xec\x33\xe9\xcd\xb4\x5c\x94\x0f\xb0\xbe\x1e\xfe\x17\xf8\x10\x60\x63\x2e\x7b\xe7\x4a\x97\xe7\x86\x14\xfe\xd9\xa0\xc4\x5b\xd5\x06\xad\xc4\xaf\x29\x0e\xe2\xe9\x26\xb4\xee\xaa\x4d\xe2\x6c\x80\x6e\x81\x77\xa2\xdb\x3a\x36\x16\x5c\x5e\x58\xd5\xa6\x2a\xca\xdc\x24\xce\x4c\x85\x6f\xfc\x40\x43\x5b\xef\x20\x71\x90\x8e\xed\x44\x2c\xad\xe3\x05\x51\xbf\x5a\x4a\x4e\xf0\x75\xe5\x50\xf9\xba\x62\x84\xe4\x26\xa8\x17\xe2\xee\x6f\x72\x78\x47\x95\x79\x44\x01\x04\x76\x77\x60\x6c\xd7\xb0\x22\x73\x6b\xb0\xcf\xd5\x0f\xf5\x4f\xa2\xdd\xa1\x1f\x60\xf7\x04\x00\xf1\xbf\x19\xf9\xd4\xea\xf4\x13\xeb\x2a\xac\xdc\x53\xe2\x30\x1f\x8d\xc2\xfc\x7b\x3b\x08\xd0\xa8\xd3\xee\x52\x04\xc5\x0a\x3b\xa1\xe8\xe5\x1b\x4f\x90\x83\xb8\x08\xb0\xb5\x7e\x6b\xce\x4b\xcb\x2a\x8d\xfd\x19\xf6\x2c\x44\x56\x7d\x07\x94\x42\xf9\x5a\x4a\x03\x7c\x7a\xc2\x44\xab\x8e\x52\xa9\x3d\x8c\xb9\x3c\x9c\x40\xff\x4e\x67\x5c\x3c\x49\x26\xb8\x1f\xfd\xc2\x7a\x18\x4f\x90\x05\xd6\x30\x77\xac\xa8\xee\x71\xc0\xde\x55\xea\xe7\xb8\xc9\x28\x58\x3f\x50\x39\xd3\xc0\x0d\x59\xbd\xd6\x33\x31\x7d\x53\xeb\x62\xd3\x0c\xcb\xa6\x71\x56\xd5\xa5\x5e\x6b\x6c\x96\xfe\xe2\xac\x3c\x8e\xc2\xd7\x4a\xdc\x57\x2a\xd7\x35\x94\xda\xf8\x8b\xfe\x53\x25\xfa\xff\xd3\xa0\x3f\xd6\xcf\x86\x43\x2f\xc2\xc9\x32\x63\xb8\x58\xa2\x39\xb6\xf5\x94\x5e\x98\x5d\x68\xf7\xb3\xaa\xb0\xab\x59\xbe\xdc\x52\x6e\x39\xc7\x94\x23\xd2\xb1\xa8\x01\xdd\x35\x3f\x7f\xe0\x6f\x29\xb5\xe4\x52\x01\xbd\xaf\x6a\x6f\xa8\x4d\xba\x18\x78\x3c\x03\x68\x8b\x00\x49\xe8\x76\xe3\x20\xbe\x33\x6a\x3d\xfb\xec\xe6\x11\x74\xab\x05\x7d\xd5\xfa\xd2\x17\xf9\xf1\x59\x5e\xf3\xac\x0f\x4e\xd8\x0f\xe4\x83\xec\x19\x8a\x0e\xfd\x6b\xb4\x9a\x40\x79\xde\xc0\x92\x41\x02\xbd\x1d\x84\x56\xc4\xad\x2b\x14\x8e\x91\x16\x5e\xa2\x70\x27\x96\x6e\x75\x6c\xc2\x86\xbe\x3c\x52\x9c\xd1\x37\x91\x97\x8b\x3e\x64\xbd\x7a\xb1\x2c\x6f\xa9\x70\x7d\x23\x52\x60\xf0\xcb\x51\x68\xb0\x30\x5f\x0f\x01\xf4\x1b\x1e\xc9\x50\x9a\xc3\x33\x98\x91\x8a\x69\xbe\x6e\x38\xe1\x20\x40\x63\xf7\x84\xda\xe2\xbb\x3a\x4a\xf5\x99\x38\x25\x22\x3d\x4c\xb8\x46\x2c\x5d\xae\x3f\x68\x8d\xa0\x11\xf0\x2d\xfa\x69\xd8\x97\x3f\x19\x4b\x18\xe2\xbe\x9d\x0a\x16\xa2\xc7\x70\x03\x04\xab\x5e\xdf\xb9\x4f\x0b\x63\x24\x84\x69\x52\xef\x75\xc3\x81\x16\x7b\x58\xa2\xee\xd6\x5c\xfd\xf3\xed\xb2\x6f\xd2\xe5\xa2\xe7\x56\x7c\xd2\x26\x95\x8c\x1a\xfc\x5e\x9c\x10\x06\xdf\xbb\xb7\xdd\x75\x75\xee\xb1\x62\x53\x5b\x14\x63\x9d\xcd\x31\x33\x78\xfd\xdb\xcc\xc0\x3e\x49\xbf\x07\x19\xf7\x2e\x0e\x29\x68\xc3\x6e\x87\x33\x35\xf6\x10\xea\x5e\x56\xe2\x05\x4e\xd3\x2b\xc7\xef\x9d\x0b\x98\x8b\x7a\xa9\x01\xf1\x78\x05\xcb\x4b\x6c\x9e\xe8\x12\xb0\xdc\x54\x14\xc4\xd9\x5e\xa7\xc2\x4d\x32\xc7\x30\x11\xe0\x35\x81\x57\xdf\xc7\xf2\xf2\xc2\x03\xfb\xa4\xb9\x39\x85\x70\x2a\x63\x07\xda\x3b\x48\x11\xb7\xad\x2b\xec\xce\x6d\x8f\x92\xca\xed\xd0\xb8\xee\x43\xaa\x59\xc6\x65\x3f\x2e\xc0\x71\x45\xd2\x7e\x63\xbc\x3f\x5d\xaf\x36\x0d\x70\x41\x74\x3e\xa3\xc4\x71\x6f\x8c\x14\xf3\xe1\xf6\x44\x35\xf5\xf9\xf6\x8a\xeb\xda\x8c\xdb\x76\x62\x16\xdf\xf2\x4a\x29\xe7\xb4\x72\x59\xdf\x0e\x6c\x4b\x39\x7b\x41\x3f\x97\x1f\x8f\xf5\x88\x32\x9b\xb6\xb4\xa1\xca\x39\x2d\x86\x72\x6e\x02\xc6\xb0\x77\xae\x9d\xe5\xae\xe7\x52\x36\x4e\x10\x15\x96\x90\x7f\x6e\x34\xb9\xf5\xc4\x36\x37\x03\x2f\xf1\x28\xfa\xa1\x21\xf2\x9f\x19\xb3\x17\xea\xda\x25\x97\xba\x92\xf1\xdb\xcf\x8b\x0c\x7c\x14\x48\x6d\x7f\x3d\x86\x82\x34\x83\xa5\x2c\xc7\xb0\x5e\xdc\x80\x55\x4e\x13\x14\x5d\xb2\x38\xae\x72\x92\x3a\x14\x1e\x9f\x6a\x8f\xdc\x19\x13\x02\xf3\x0e\x7b\x3b\xc2\xcd\x2f\x48\x8b\x9d\x02\x00\x1b\x0c\xd0\x4b\x30\xb0\xbe\x1a\x29\x71\xe7\x4d\x6f\x1e\x91\x53\xfe\xec\x5b\x64\x7b\x3a\x1a\xef\x41\xdb\x00\xed\x82\x1d\xeb\x7b\xb4\xff\x72\x96\xee\x50\x74\x2f\x96\x2e\xc5\x1a\xdb\xde\x09\x25\x2e\xdb\x24\x21\x05\x00\xee\x80\x1f\xa3\xc9\xc6\x2f\x6f\x72\xd1\x5a\x71\x45\xc5\xf7\x50\x5b\x7b\x35\xf9\xef\xbc\x62\x57\x28\x1c\x88\x2e\x19\xfd\x50\x11\x2c\x9b\x8c\x5a\x07\x98\x65\xc4\xcb\x6a\xcc\x5e\x8c\x9f\x4c\xbc\x6a\xee\x50\xdb\x24\x75\xf9\xcb\xb1\x0e\xed\x90\xbf\x88\x42\x9f\xe4\x2f\x54\xc3\xe3\x37\x66\xf7\x31\x64\x07\x79\x2e\xe2\x37\x0a\x09\x76\x7e\x14\x87\x7f\x81\xc2\x2c\x55\xb9\xcb\xaa\x82\x9b\x6a\x82\x0e\x50\xfe\x67\xe7\xb5\x54\x72\x35\x18\xd8\x7c\xb7\x92\x3c\x98\x5a\xa7\x3f\xf5\x68\xf6\x20\x8a\x7a\x41\x1b\xe8\xe9\x0e\xe8\x11\x25\x03\xbb\xa7\xa3\x42\xcb\xd9\xd1\x04\xaa\x9a\x1f\x2b\x30\xd3\x06\x05\x0c\x1c\xdd\x1f\xa9\x51\x76\xfd\x9f\x62\x87\x32\x9f\x38\x83\x03\x45\x30\x71\x41\xb2\x01\x9c\x5c\x19\x80\x28\xc4\xc8\x8d\x91\x62\x74\x4d\xd6\x6d\x2f\xce\x3e\xdf\x5e\xb5\x66\x59\x38\xc1\xe8\x61\x62\xec\x20\x82\x98\x61\xf4\xab\xed\xa6\x4c\x32\xc8\x8a\x92\x9c\x09\x11\xdb\x79\x79\xe2\x1d\x78\xdc\x81\xeb\x09\x64\x85\xf4\x17\xe9\xcb\xf1\x5f\xe1\xe7\xe0\xd0\x00\x71\x1a\xd2\x29\xd2\x9e\x7a\x4f\x39\x2c\xcc\xac\x87\xb6\x32\xdb\xd0\x7a\x94\xd9\x82\x88\x47\x60\xbf\x20\xc4\x72\x75\x85\xdd\xff\xba\x66\x5f\x9b\xdc\xc0\xa6\x3f\xf4\xf6\xaf\xd2\xc5\xe4\xc7\x6a\xf2\xb5\x58\xad\x91\xc4\xb3\x1c\x67\x30\xd5\x44\x44\xb8\x16\xa9\xec\xe1\x67\xb8\xea\xa2\x7b\x80\x15\xcb\xff\x34\x91\xb4\x86\x26\x9b\x10\x3a\x44\xd3\x9e\xde\x91\x9f\x8c\x89\xb8\x64\xc3\x62\x67\x50\x3a\xb8\xce\x1f\x20\xe3\x9e\xfa\x57\x8b\x26\x89\x62\x39\xf2\x18\x50\x77\xa6\xb1\x95\x99\x13\x8a\x97\x1f\x6f\x40\xb4\x2f\xb4\x57\x4c\xe2\x10\x66\x99\x97\xab\xa4\x73\xdf\xf7\x51\x96\xbc\xcf\x5a\xa1\x74\xe3\xd6\x19\x3f\xf1\x72\x47\xc3\x3c\x3b\xbc\x36\x1d\x1a\xb5\xac\x7c\xc2\xa2\x3b\x23\xbe\xf3\x2d\xaf\xd2\xf9\x61\x13\xc8\xbe\x30\x89\xe1\x29\x27\x87\x02\x0a\x19\x12\x16\x1e\xd7\xa0\xb2\x9e\x61\x5f\x15\xcc\xa7\x6f\x60\xe3\xf2\x13\x25\x74\x53\x5a\x93\xf3\x2d\xf0\x2a\xb8\x41\xbf\x72\x8c\x5e\x68\xf3\xe2\xef\x04\xdb\xf8\xe9\x75\x5a\xbb\xb8\xb4\x9c\xad\xa2\xce\x7f\x80\xe6\x1f\x66\x2f\xc7\x28\x23\x16\x76\xbd\xd2\xb1\xfe\x1b\x84\x79\x50\x53\x6f\x29\x25\xf3\xbf\x8a\x14\xb3\x01\xba\x13\x88\x0c\x47\x09\x0c\xc0\xaa\x24\x9a\x11\xf6\xcf\x68\xed\x22\xf8\x7c\xc2\x0b\x43\x28\xf4\x74\xff\xd1\x1e\x7e\xbc\xd3\x7a\x49\x36\x16\xf7\x56\x99\x87\x42\x59\x19\xd3\x08\x23\x85\x81\x78\x40\xb7\x1c\xe9\xeb\x9b\x80\x7d\xa0\x62\xbd\xa1\x50\x13\x8f\xad\xd7\xa9\xdb\xe6\x23\xd4\xb1\xe0\x06\xfb\x88\x68\x91\xa2\xab\x45\x79\x1e\x22\xdd\xb6\x4e\x5d\x52\xa0\xc6\x39\xa2\xc6\x0b\xbf\x1b\x6d\xa5\xef\xfe\x7a\x7b\x2d\xab\xf2\x16\x72\x7a\x4f\x42\xd8\x3b\xe7\x49\x08\x5b\x5f\x70\x60\xe1\x40\x3b\xcd\x80\xf0\x95\x4b\xdc\xf2\x60\x1d\x20\xf7\x05\xb6\xf5\x69\xfb\x71\x40\x00\xf4\xb9\x43\xfe\xf2\x85\xb1\x32\xb7\xee\x71\x95\x6e\x05\x51\x9c\x3a\x69\xf7\xc9\x37\x9a\x2f\x40\x39\xf1\x63\xa5\x52\x57\x94\x55\xd7\xd9\x82\xc6\x48\xc8\x84\x58\x97\x0f\x3b\xb7\xd5\x51\xee\x01\x27\x23\x85\xff\xc2\xf7\xc0\xf2\xb8\xa3\xe0\x68\x4b\x26\x7f\xb2\x7e\x33\xc4\xbe\x6d\xe0\xe7\x23\x40\x7c\x82\xb5\xe6\xf1\x5e\x9e\x68\x75\x57\xeb\x7a\xff\x88\xde\x98\x6d\x5b\x91\xa8\xf3\xcb\x11\x99\xf9\x25\xe8\xe4\x2a\x3f\xdf\x2f\xfb\x4c\x2e\x64\xb7\x3c\xfb\x14\x59\x41\x8d\x45\xc3\x92\x44\x86\x75\x93\x56\x31\x7e\xcb\x4f\x95\xf0\xf2\x35\xba\x59\x02\x01\x55\x3a\x26\xdb\x3b\x61\x4c\x62\x96\x96\x6c\x5c\x52\x1c\x1c\xb3\x67\x65\xff\x33\x95\xd4\x5c\xc6\xf5\x93\xb1\x50\x80\x76\x02\x58\x2f\xba\x07\xf5\x67\xf2\x63\xd5\x25\x1a\xac\x15\x36\x59\x9a\x51\x7d\x49\xa4\xf4\xc2\x41\x57\xe2\x02\x00\x40\x21\x21\xb8\x16\x29\xee\xc2\xe8\x69\x35\xad\x5f\xb1\x69\x99\xe5\x0e\xa0\x85\x39\x3f\xbe\x9d\x0a\xb6\x97\x17\x3c\xfe\x63\xe8\x62\x53\x14\x90\xd1\xc5\x5a\x60\xd5\x65\x7e\x32\xa9\x2c\x7e\x80\xf4\xea\xaa\x54\xac\x64\x3c\x41\x2e\xf0\x0a\xcf\x69\x71\x48\x9b\x16\xb6\xa5\xac\xf7\x00\x5c\x12\x9d\xaf\x67\x74\xfa\xb1\x5c\x80\x40\x05\x41\x51\x36\xa6\xa3\xa8\x2b\x26\x75\x92\xfb\xca\x41\x79\x20\x88\xf6\x07\xf2\xcf\x45\xd5\x60\xd9\xc4\xd9\x8d\x83\xf2\xe1\x4e\x20\x89\xdf\x6c\x50\xdd\x27\xff\xe6\xbc\x3e\x64\xf8\xb7\x89\x94\x9d\x0a\x7f\x97\x27\x28\x11\xf3\xf3\xc1\x97\xbb\x35\x76\x15\xea\x5f\x21\x97\x27\x20\x96\x12\x93\x76\x8b\xc4\x75\x2d\x8e\x0c\xaf\x10\xe0\xf1\x56\xc7\x46\x0a\x41\x53\x95\x25\x63\x6e\x71\xeb\xee\x2a\x13\x91\xbb\x0d\xe0\xff\x2f\xb7\x07\xa6\x6b\xb5\x8a\x3d\xe4\x12\xb0\x05\x6f\x8e\x94\xe1\xf6\xef\x35\x0e\x09\xe2\xdc\x85\xc6\x80\x8c\x33\xe9\x55\xfc\x44\xcd\xfd\x16\x5d\xef\x09\xfa\x27\x2e\x54\x10\x89\x11\x8b\x3e\x40\x05\x84\xa0\x7f\x49\x6f\xea\x3f\x18\x05\xbc\xe4\x05\xa5\xb9\x07\xbe\x83\x67\x90\x06\xe2\xfb\x2d\x9c\xa7\x1e\x99\x1d\xee\x28\xd4\x10\x70\xac\xdd\x41\xd1\xc3\x9f\x8e\xc0\x83\x7f\xf9\xa1\x06\x52\x5e\xa0\x2b\x2d\x1c\x64\xd5\x60\x63\x64\x32\xba\x78\x9f\x44\x4f\x4d\xb6\xcd\x3e\xff\x64\xc8\x06\x6e\x13\x1b\x7e\xcc\x97\xca\xcb\xa6\xef\x53\x02\x44\xf5\x77\x45\x2c\x92\xae\x28\xe2\x27\x3c\x12\x70\xa0\x7f\x0d\x7d\x30\x76\x03\xc2\x46\x05\xb7\xfd\x6b\x74\x08\x61\xb2\xb7\xce\x5c\x7a\xa6\xec\x44\x5a\x17\x47\x0f\x84\xc1\xb6\x44\x31\x0b\xdf\x6b\x54\x9e\x8f\xaf\xd7\x1b\xcf\xab\x16\x07\xcb\xa9\x47\xd7\x15\x34\x6c\x67\x43\x4f\xf6\x40\x7b\x60\xf2\x65\xd5\xef\xfc\xba\xbe\x54\x5f\x57\x8a\xc0\x03\x5b\x14\xce\xd8\xb4\x35\xe6\xf5\xa4\xf4\xfb\x26\x0e\xd2\xfd\xfb\xdb\xd5\xca\xa2\xe2\x05\x11\x6c\x66\x93\x8b\x3a\xfc\xa4\x0f\x26\x66\x12\x2f\xbf\xdc\x1e\x16\x6b\xb1\xd7\x56\x16\x4c\x42\x4b\x59\x60\x7d\xda\xb1\xbb\xfa\xdc\x2b\xcf\x4d\xb5\x3e\xc5\xda\x4b\xeb\xa7\xf8\x0a\x8f\xf8\xa3\x85\xeb\xda\x69\x4d\x40\x57\x9c\xa9\xd7\xb0\x00\x24\x29\x0a\x9d\x9a\xbb\x1e\xd4\x61\x8b\xd8\x0c\xd1\x33\x16\x3f\xc1\xe0\x34\x7a\xd6\x8f\x78\x8a\xaa\xd7\xb3\x45\xb9\x43\xc1\x2e\x6e\x63\x5d\x23\x20\xef\x82\xd4\x1f\x6a\xd0\x5f\x00\x96\x01\xfb\xe2\x1e\xbd\x9f\xe8\x4a\x87\x09\xe6\x7b\xaa\x79\x43\x5a\x38\x34\x33\x91\x86\x0a\x6d\x4b\x2f\x90\xe5\x25\xb6\x6f\x6b\xc8\xbd\x1d\x66\x79\x59\x3c\x1a\x30\xfc\xeb\x91\x82\x44\x5e\x52\x36\x95\xf7\x95\x2b\xfe\x19\xcd\x85\xbe\x89\x15\x8e\xfd\xbf\x9d\x24\x2a\x05\x26\xd9\xf2\x9a\xb6\x67\x70\xd8\x8b\x88\x18\xed\x79\x91\xc4\xad\x03\xcb\x26\xab\x26\x01\x38\xb5\xa3\xa3\xf7\x59\x33\xc5\xdc\x0c\xbd\x0f\x2e\x6e\xf6\x7d\x25\xd4\x7b\x57\x41\x2a\x46\x4d\x04\xb2\xc2\x26\x36\x2e\x5b\x3a\x9f\x78\x43\x1b\x28\xbd\xd1\xe0\xcc\x7a\xa0\x6d\xd2\xc3\x8e\x81\xeb\x07\x3c\xf6\xb2\xe5\x75\xbd\x2e\x2a\x62\xe5\xaa\x2b\x4b\x86\xea\x7a\xf1\x8b\xfa\x9a\x09\x33\x4c\xd9\xd9\x96\x59\x62\x53\x9a\xdf\xe3\x6d\x6e\x46\xea\xfd\x6f\x2a\xfc\xbd\x3d\x3c\xb4\x79\x59\x80\x35\x02\x2c\xdf\x3a\xa7\x44\xa8\x4d\xef\x61\xeb\x63\xe1\xdd\x41\x98\xc4\x62\xfd\x44\x29\x09\x35\x93\x88\xe3\x6c\x30\x70\x25\x06\xda\x7e\xc2\xf0\x96\x1e\xa9\xbe\xa5\x7a\x29\xa9\xb3\x3b\xf4\xc5\xbb\xa0\x50\xb0\xff\x3b\x05\x36\x8f\x1e\xf3\x28\x28\xd6\x27\x90\xc2\x96\x7e\x05\xba\xd8\x7b\x3a\xe1\x54\xcc\xb3\xee\xc0\xa4\x53\xaa\xcd\x7f\x43\xe1\x19\xb8\xdc\xc4\x1b\x1e\x9d\xb8\xb3\x0b\xb3\xed\xdc\xc6\x26\x49\xb4\xdf\xd9\x9f\x63\x07\x4b\x59\xf2\x98\xa7\xc9\xf6\x6c\xd9\xb7\xf9\x63\x08\xbd\x08\xa4\xc7\x28\xa9\xc4\x16\xdc\xd9\x19\xcb\x7c\xe9\x4d\xd0\x28\x38\x4b\xf1\x01\xe1\xf6\x92\xd6\x77\xb9\x38\x36\xb6\xd0\x62\x62\x23\x4f\xd9\xfb\x2f\xfe\x7d\xfc\x06\xf4\xe2\xef\x69\x80\xc7\x11\xa5\x76\xf7\xd8\x3a\x6d\x2b\x0c\x34\x4e\x93\x8a\x0a\x2e\xd6\x69\x32\xea\xc5\x17\xf9\x6f\xb4\x58\xba\x89\xab\x6a\x30\xad\x8c\x12\xce\x69\x48\x12\xeb\xae\x62\xcf\x22\xd3\xe0\xc7\x0a\x0f\x6b\x07\xc3\x72\x6d\x1a\x17\x44\x66\x9e\x2d\x2f\xfe\x07\xc2\xbb\x48\x3e\xd3\xf7\x96\x21\xe9\xe3\x61\xd4\x95\x97\x4b\x26\x49\xa6\x94\xec\xea\x25\x25\x76\x79\x4f\x21\x1f\x4e\x37\xcc\xa3\x0f\xb6\x17\x5d\x62\xd2\x57\xb1\xc7\xfc\xf0\x22\x5c\xb0\xd3\x0a\x22\xe8\xd2\xe5\x3d\x74\xf5\xd1\x12\x3a\x42\xb7\x45\xaa\x78\xe5\x7f\x08\x0d\x20\x0a\xfd\x57\x1e\x5f\xaf\x57\x27\x9a\xdf\xa7\x94\x33\xf0\x6d\x02\x93\x48\x37\x30\x20\x4e\x37\x75\x03\xea\xe8\xc8\x2b\x74\x3c\xfa\x4c\x87\x82\x8f\x37\x9e\x08\x55\x16\x8b\x3f\x8a\x6f\x40\x98\x71\x5e\xfb\xdb\x1d\xd5\xf7\x2a\x0a\x9b\x96\xd3\x2a\x44\x6c\xeb\xa8\x26\x3d\xab\x97\xf9\xf4\xc9\xbb\x2e\x9d\x6e\x98\x23\x1f\x6c\x0f\x6d\x4e\x68\x75\x19\x5a\xa9\x5c\x70\x43\xb9\xa3\xec\xe9\x28\x76\xd8\xc6\xb8\x4c\xed\xd6\xa4\x79\xee\x50\xbb\xeb\x8a\x32\xb7\x05\x09\x51\x7b\xc4\xe4\x95\x48\xe9\xfe\x5e\x69\xcc\x99\xab\xc5\x81\x2b\x3d\x1c\x05\x87\x15\x6b\xe8\xf0\x93\x89\xad\x4b\xca\xee\xa5\x71\x68\x2e\x33\x95\x25\x0a\x13\xb6\xf3\x0a\x31\x4c\xf6\xb2\x26\x8d\x2d\x57\xf5\x62\x50\x41\x97\x5d\x1c\x2a\x02\x9e\x63\x35\xcb\xa9\x64\xfa\xd4\x10\xdb\x70\xc2\x98\x81\x25\x53\xb2\xe9\x30\x1c\xda\x41\x2d\x41\x16\x5c\xd2\x28\x8e\x6f\xd1\x3e\xdb\xbc\xd4\x70\x29\x0e\xb4\x4d\x5e\x12\xba\x09\x11\x09\x65\xe9\xb7\xb1\x38\xf9\x49\xd3\x08\xaf\xa8\xf2\x61\x52\xb1\x70\x91\x77\xe1\xf2\x72\x39\x9b\x4a\xe2\xf1\xa2\x87\x5d\xd5\xc5\xa1\x4b\x8c\xbf\xee\x68\x52\x00\xab\xcc\x8f\x27\xd6\xce\xaf\xd7\xe7\x4f\xbc\xac\x7a\x61\x3c\x92\x10\x61\xa8\x70\x19\x59\xa2\xb2\xa5\x4c\xea\x59\x17\x84\x9f\xf8\x91\x47\xea\xe2\xbe\xfc\x62\x05\x2f\x3c\xe8\xe1\x85\x3e\x25\x2a\x4d\xd1\xe7\xc5\xe5\xdb\x7e\x41\xc7\xf6\x94\xda\xeb\xcb\x36\x7d\x44\xd9\xf2\xf0\xfe\x46\xc7\xe0\xaa\x4a\x0e\x4f\xd2\xe9\xe3\xe9\x92\xbf\x29\x78\xd4\xe3\x5a\xe1\xe2\x5b\xb4\x9f\x3c\x39\xda\x37\x6c\x19\x9c\x8a\x1e\x3d\xb0\xa1\x4c\xf5\x51\x72\x88\x4f\xa8\xf1\xc9\x7f\xfa\xb9\xce\x23\xbe\x6e\x7d\xf5\x55\xf4\x14\xe5\x28\x51\xb2\xbe\xc7\x9a\xe1\x26\x24\x9f\x40\xeb\x52\x4b\x70\x8a\xc5\xcc\xa7\x49\xbd\xc6\xb6\xac\x98\x26\x29\x4d\xd0\xfa\x37\xf3\x63\x15\xce\x97\xb3\xdc\x1a\xea\x12\xe1\xe8\x38\xcf\x1c\x12\x6f\x42\xee\xf7\xf4\xf4\x7a\xf0\x72\xff\x58\x73\xd8\x1f\xea\x3c\xbd\xe5\x5b\xfc\x72\xdb\xc4\x65\x4b\xb9\x72\x9d\x57\x66\x62\xda\x14\xb8\x30\x79\x4b\x89\x35\xa3\xe9\x26\x60\x64\xd5\x38\x5d\x75\xb1\x05\x57\x81\xc7\xa1\x91\xb2\xc8\x3c\x1e\x56\xb7\xeb\x65\x39\x0d\x63\xa6\x82\x67\xd2\x06\xdd\x48\xfc\x86\x7b\xca\xd4\xea\xac\xca\x55\x92\x38\x03\xf5\xde\x4b\x6f\x78\x99\x53\x88\x81\xf9\x84\x39\x74\x32\x3f\x50\xaf\x7f\x21\xb5\x0f\x29\xe0\xc8\x28\x8c\xe5\x2f\x6a\xb9\x7c\xce\x68\xf0\x21\xbb\xd6\x43\x3e\x74\x9f\x7e\x38\x4e\xaf\x9d\x1d\xa5\xf1\x0e\x53\x69\x91\x37\xda\x9a\x94\xbd\xfc\x72\x3b\xb7\x2b\xae\xfc\x7f\x18\x7b\xf3\x18\x49\xb2\xf4\x3e\xac\x3b\xab\xfa\x9a\xee\xde\xb9\x76\xb9\xb4\x24\x5a\x29\x99\x06\x49\x69\x34\x34\x65\x59\xb2\x16\x30\x22\x5d\x5d\xcb\xdd\x6e\xed\xd4\x16\x6a\x9a\x3d\xf2\x40\x06\xfa\x65\xe6\xab\xcc\x98\x8a\x8c\xc8\x8d\xa3\xaa\x6b\xe0\x3f\x08\x41\x10\x08\x83\x96\x6d\xd0\x86\x65\x19\x12\x0c\x99\xb6\x48\x53\x82\xb8\x22\x2d\xee\x92\xd4\x66\xcd\x72\xb9\xab\x25\xb9\xc7\x6c\xcf\xec\xdc\x33\x7d\x1f\x55\x7d\x5f\xd3\x67\xb5\x11\xdf\xef\xfb\xde\xfb\xa2\x22\xc6\xf0\x1f\x03\x44\x4c\x57\x66\xc6\xf1\xde\x77\xfe\xbe\xdf\xcf\x44\xe1\xab\xbc\xa3\x37\x09\x64\x3c\xbf\x79\xcd\x15\x4b\x56\xc2\x38\xc3\xcd\x61\x61\x43\xcc\x0b\xcf\x66\xd7\x9a\x17\x54\xf8\x3e\x8f\xab\x0a\xcc\x5e\x37\x04\xc6\xb6\xa7\x06\x0d\x3f\xd2\xe8\xb1\x8f\x2a\x4d\xdf\x71\xd8\x9f\x56\xfc\x37\x1f\x4e\x14\xe8\xec\x43\x7a\xf8\x28\xd2\xfc\x11\x3d\x61\x3e\x76\x59\x52\xf6\xfc\xf8\x79\xf3\x7c\xab\xda\x6e\x50\xcd\x83\x46\x8a\xcf\x7c\x98\x02\x92\xd0\x72\x6a\x7d\x27\x50\x31\xe0\x93\x86\x21\xa6\x79\x9a\x9d\x64\x1b\xe8\xde\x6d\xf9\x28\xa4\xed\xac\x64\xd1\x46\xc9\x0e\xbf\xf2\x59\x1c\x0e\xf9\xf9\x37\x27\x8a\xcc\xed\x34\xee\x95\xe7\x3d\xe9\xfe\x04\x8d\xfe\x29\xd5\xe2\x09\xa3\x7c\x77\xb9\x3c\x5c\x85\x73\xce\x89\x35\x5e\x55\x12\xe4\xf7\xe9\x0b\x50\xc0\x78\x08\x6f\xea\xd6\xd0\x4b\xb3\x87\x39\x54\xbd\xa4\xea\x46\x1b\x8a\xb5\x5a\xab\x60\x2f\x86\x7d\x1b\x85\xb9\xe8\x2f\xc8\x08\x98\x0f\x23\x2f\x69\xbd\xbb\x6d\x1d\xdf\x12\x34\x99\x19\x86\xfc\x36\x98\xf9\x3d\x50\x89\xc5\x99\x8a\x16\x50\x14\x92\xb7\xad\xc8\x8f\x78\x20\x78\xbd\x9d\x7b\xf8\xcb\xed\xd4\xae\xa4\x21\x8b\xe4\x20\x76\x47\x3d\x88\x8f\x1b\x24\x54\xdb\x2b\xa9\xcd\xf2\xc8\xd5\xc0\x59\x9f\x6a\xcd\xd7\x2f\xb7\x75\x54\x6b\xc6\x64\x4b\x36\xcf\xa6\x14\x29\xcf\x09\x95\x28\xbc\x39\x51\x89\xc2\x7a\xcd\x94\x42\x86\x33\x4f\xad\x78\xcb\x59\xe1\x5b\x0c\x54\xd8\x75\xb1\x99\x81\x34\x49\x63\x99\x79\xc4\xae\xe6\x61\x79\x3e\xa9\x74\xc1\x0b\xe6\x41\x43\xd8\xc0\x91\x2c\x9f\x28\x3c\x31\x05\x5a\x61\xb7\xc8\x93\x74\xda\xc3\x5b\xdf\x9d\xf8\xf1\x3a\xc4\xa4\x48\x2d\x6e\x68\x12\xfc\xa9\x8e\x07\xb4\x0f\x4d\xda\x4d\x52\xb9\xb8\xa6\x2a\xab\x13\x0c\x37\x59\x19\x31\xba\xd9\x15\xbc\x4f\xd4\x9c\x3e\x05\x69\x53\x07\x20\x73\x8a\x4b\xdb\xd7\xe8\x69\x23\x06\x39\xd3\xa4\x95\x36\x4e\x93\x3c\xc9\x57\xc7\x96\xaa\x3e\x88\xbe\x41\x51\x82\x60\x85\x67\x49\x25\x60\xf0\x00\x47\xdb\xdb\xa3\x26\x9e\x18\xb8\x53\x01\x29\x32\xeb\x72\xb9\x88\x36\xcf\x28\xe6\xf4\x0f\x81\xf8\x81\xcd\x7b\x37\xf0\x57\xfb\x18\x1b\x98\xff\x01\x3f\x8c\x34\x6d\xaa\xa3\x36\x6d\xd2\x35\xe9\x94\x72\xa6\xdf\x46\x7f\x0a\xa5\xb8\x1b\x8a\x8b\xfc\xca\xa4\x3a\xb5\x45\x83\x73\x05\xc2\x4a\xe9\x2b\xd1\x3d\x48\x63\xc9\x8d\x04\x26\x63\xf3\xea\x74\x99\x58\xe2\x86\xc0\xaf\xc5\xda\xa3\x8a\x46\xf8\xb2\x2e\xcf\xff\x48\x59\xa9\x99\xbf\xf6\x0b\xad\x0a\x2f\x5d\xf9\x19\xb1\x31\x3e\x40\xeb\xa5\x45\x66\xfa\xc0\x8d\x21\x66\xfc\x50\x71\xaa\x72\xea\x0c\x7b\xe6\xe1\x29\x5d\x9b\xda\x45\xa6\xd2\x41\xf1\x04\x24\x01\x7c\xac\xb8\xa9\xc6\x61\x9e\x67\x79\x22\x08\x0d\x24\xc9\xe7\x02\x05\x9c\x38\xe7\x6e\xd9\x8e\x53\x7b\xac\x45\xcb\x48\xb0\xc7\x2a\x60\xbe\xd8\x44\x98\x3e\x4a\x96\x2d\xa1\x6c\x90\xc2\x9c\x46\x88\x2e\x32\x92\x7a\xf8\x5c\x41\x92\x4f\x37\x31\xa6\xf4\xd2\x70\x14\xc6\x26\xa2\x35\xc8\x8f\x3c\xf0\x76\xe8\xac\xa6\xcd\xfa\x61\x53\x7f\x98\x07\xad\x3d\x39\xca\x45\x35\x56\x77\x71\xe2\xe8\x25\x87\x49\x9e\x50\xff\x3f\xec\x4d\x29\xd6\x13\xdd\x84\x85\x43\x96\x0b\x6f\xa0\xf7\x34\x79\x0e\xe1\xf4\xf2\xf3\x22\x41\xed\xbb\x74\x57\x54\x37\x3a\x8c\x17\xa3\x64\x85\x79\x13\xdc\x2c\xb7\xf3\xdc\xb7\xeb\x39\xd5\x81\xf6\xa2\xe9\xa6\xcc\x6b\x24\x45\x93\x96\x93\x7f\x38\x55\xe5\x3b\x5b\x09\x5b\x4a\x50\x0e\x8f\x59\x90\x51\x5b\x6b\xbb\x65\x72\x58\x60\x4e\xd0\x21\x72\x3d\x3a\x37\x78\x82\xff\xbc\xbd\x30\xf3\x17\xe9\x3d\x22\xe4\x7c\x44\x7d\x60\xf8\xd7\xbb\x18\xb1\x42\x2f\xe7\x16\x7a\xbb\x48\xc5\x6f\xa2\xa6\x8f\xc6\x03\xf2\x75\xd6\x7b\x42\xc2\x8a\xfe\xdb\x2e\x65\x56\x38\x73\x66\x7d\x9e\x35\x6a\x55\xb0\x64\x2c\xd5\xf2\x99\xbe\x03\x9d\x0a\x47\x55\x5e\x6e\x73\xc0\xf1\x36\x48\x34\x42\xf2\x01\x25\xb7\x7e\x1d\x09\x0e\x62\xb4\x27\x3b\x0a\xee\x7d\x83\xaa\x9b\x2e\x3d\xff\xfc\xdf\x75\x7a\xb9\x54\x16\x40\xb0\xf8\xb1\x62\x18\xb8\x83\xe2\x3d\x2a\x75\x6b\x81\x47\xb7\x7f\xac\x54\xe0\x2f\x23\x87\x85\x27\xf9\xf7\xb4\x7b\x61\x9f\x59\x44\x0b\x97\x78\x2d\x68\xfd\xcc\xcf\x78\x01\x29\xc7\x03\xb9\x8b\xa2\x78\x51\xdf\xc7\x36\x15\xa0\x69\x83\x5c\xdc\xa8\xd7\x33\x2b\x2d\xdf\x99\x7e\x84\xbd\xcc\x27\x13\x3f\xeb\xd9\x33\xe3\x10\xa3\xb5\xbc\x4e\x1d\xe8\xcf\x03\xc3\x37\x94\x16\xcb\x8a\x35\xcb\x65\xa2\xe8\x93\xd0\xaa\x06\xbc\x37\x59\x8b\xb6\x6f\x53\x13\xed\x57\x6e\xf1\x4e\xe0\xc7\xcd\xae\x56\x78\x1f\x77\xa3\xaf\xcd\xb3\xf6\x8a\x74\xe3\x2c\x56\x8f\x93\x56\x71\x1a\x3b\x57\x51\x01\x83\xd7\xfc\x30\x50\x9c\x17\x1f\x68\x6a\x0e\x96\xfb\x82\x45\x9d\x5a\xf3\x80\x41\x26\x87\x14\x99\xe8\xad\x51\x04\xa1\x5f\x33\xd3\xa5\xd9\xed\x29\x8f\x0c\xc6\x3b\x81\xe9\xba\xab\xf0\x87\xa7\x9b\x88\x3e\x8a\xe7\xe3\xe7\x35\xb7\x13\xac\x93\xf4\x57\xbc\xf9\x35\xa3\xb0\x67\x88\x17\xcb\xf7\x90\xce\xd1\xa6\xe3\x63\xf5\x02\xa2\x70\xc9\x46\xab\xfb\xf0\xf0\x24\x9d\xa4\x87\x87\x98\x01\x8d\x2c\x89\x57\x68\x5d\xe2\xb1\x80\x6f\x06\x3d\xf9\xe9\xb5\x72\xeb\x30\x82\x7b\xa2\xc0\xd2\x57\x15\xd3\xcb\x3b\xd8\xab\x2e\x0e\x2a\x1f\x17\x7f\x95\x1e\x3c\x9c\xa2\x28\x0e\xaf\xf1\xa9\x26\xc5\xd1\xd4\xf6\x92\xb4\x2f\xc2\x71\x70\x3e\xba\x72\x71\x7e\xa2\xde\xfd\x07\x6a\xb2\x79\x64\xfa\xf6\x49\xcf\x7b\xc6\xe8\x3c\xdc\xc1\xbe\x8e\x47\x15\xec\x5d\xd3\x64\x60\x93\x0a\x93\x3f\x5d\x35\x6c\xf4\x69\xf4\x39\xdd\xdc\x91\x57\x4c\x7a\x1d\xb1\x39\xac\xc7\x1f\x06\xbe\xe1\x76\x5f\x4f\xe4\xa3\x42\x08\x2c\xca\x59\x05\x23\x98\x06\x8f\x90\x64\xa7\x7e\x52\xf1\x56\x2d\x12\x3e\x38\xd7\x2e\xe2\x65\x1b\xfa\x48\x58\xd4\xaf\x5b\x4e\x56\xfb\xcf\x9c\xa7\xed\xaf\x3a\xee\x61\xb8\x3a\x70\x20\xe1\xd6\xee\x2b\xc2\xa2\xb7\x54\x44\x5f\x5a\x7c\x9b\xf2\xdc\xa3\xab\xd4\x2f\xcc\xb0\x27\xf9\x17\x0a\x7f\xb0\x1e\x78\xe4\xd6\x1f\xb8\x64\xae\x1f\x96\x5f\x80\x22\x2d\x9c\xde\x29\x35\x3d\x7b\xaa\xb1\x12\x96\xda\xbc\x48\x63\x49\xcc\xf0\x26\x4f\xc2\x84\xf0\x09\xf4\xec\xe9\x03\xaf\x98\xd5\x96\xaa\xb8\x73\x72\xce\x27\x35\x9f\x5d\x7e\x7d\x9c\xa4\x3c\xb8\xe1\x64\x7b\xca\x8f\xf0\x89\x1a\x0b\x19\xd3\x80\x87\x9b\xdf\xff\xaa\x52\x1e\xff\x6a\xf0\xe9\x6a\x6b\xf8\xe0\x5c\xf9\xdd\x9f\x2d\x1f\x07\xd3\x2c\xd2\xec\x37\xcc\xf0\x19\xcd\x8a\x7b\x8d\xea\x02\x4e\x74\xac\x5c\x5e\x6e\xd0\xd3\x47\x9e\xdb\x50\xd5\x47\xee\x78\x87\xb0\x2d\x30\x4e\xdf\xc6\xf6\xc4\x52\x7b\x47\xb1\x50\x3c\x56\xec\xa2\xe7\xa8\xbd\xe0\x08\x73\x3e\xff\x77\x45\xff\x1a\x1d\x75\x19\x49\x43\x51\x54\x58\x31\xe9\x29\x72\x67\x46\x6b\xcf\x01\x12\x29\xe4\xb8\x4a\x8e\x04\x40\x79\x94\xeb\x39\x27\x44\x7c\x3a\xdd\x51\xd2\x12\x7b\x9e\x46\x7b\x84\x19\xef\x9b\x88\x1d\x63\x9b\x2e\xdb\x0c\x40\x2a\x35\xfa\x2b\x6d\x81\x87\x81\xd6\x72\x73\xa4\x7e\x69\xc8\x64\x08\x0e\x69\x73\x37\x50\xe3\xfe\xf5\xd9\xd4\x23\x33\xed\x95\x30\x1f\x0e\x6d\xd4\xd7\x94\x52\x28\xd9\x49\x43\xb6\x89\xf4\xb0\x18\x8f\x13\xa7\x5f\x24\x23\x07\x18\xb5\x94\xa8\x64\x6b\x51\xe6\xc8\xcc\x17\xda\x43\x1b\x0e\x86\xb9\x8d\x45\x50\x02\x77\x00\x7e\x41\x29\x10\xd0\xe3\x94\x3e\x90\x07\x6e\x25\x5d\x1a\xbd\x6f\x95\xeb\x09\x79\xc9\x29\x5a\x36\x7c\xdc\x04\x70\xee\x9a\xde\x52\x14\x62\xca\x14\xad\x17\x80\x6a\xf9\x78\xed\x49\xd5\xbc\xe9\xa6\xab\x09\xfd\xa1\x30\x6f\xf9\x59\xc7\x2b\x9e\x16\xa6\x1b\x85\x5f\x29\x2c\xe5\x23\x58\x56\x24\xd9\xb4\x79\x9f\x5e\x07\x0a\x14\x0c\xb1\x10\xc3\xb1\xd5\x6b\x2d\xcc\xb4\xbb\x36\xcb\xa7\xcb\xdb\xc0\x75\xfc\x73\x6d\x03\xd7\x61\x43\xf9\x84\xbe\x96\xff\x2a\xf0\xcd\xcc\x7e\xd2\xcb\x93\x94\xe7\xb3\x24\xc1\x2a\x1d\x8e\xd0\xfc\xa8\x36\xcf\x22\x87\x1d\x70\x3f\x08\xa9\xf9\x78\xed\x13\xc6\xf8\x12\x56\xb3\x69\xaa\xab\xfa\x02\xe9\x2b\x49\x6c\xb3\x29\xff\x6f\x1b\xca\xd8\xdd\xd3\xe3\xed\xe7\xd4\xe5\xe4\x66\x48\x35\x23\x60\x66\x98\xa7\x9a\x79\xa7\x26\x5e\x3a\x11\x65\x51\x54\x31\xef\x60\x05\xf3\xb0\xb7\x22\x30\xee\x9b\x91\x19\x58\xaa\xe0\x6d\xde\xad\x70\x67\xf8\x6e\xfb\x57\x75\x27\xe8\x03\x55\xde\x1d\x27\x61\x9c\xef\xa6\xed\x25\x01\x99\x5f\x4c\x3c\x87\x2e\xc1\x99\x52\x60\x3c\xae\xd4\xdb\x8f\x07\xca\x84\x43\xba\xcb\x39\x9b\x83\x1e\xbb\xdf\x64\x6f\x07\xc9\xc8\xbe\xda\xaa\x17\x40\x25\x72\x71\x35\x7e\xab\x14\x98\x39\xc4\xa6\x85\x29\xe1\xb6\x67\x3a\xef\xd9\x34\x0f\x17\x43\xc7\x38\x2f\xe2\x22\xa5\x99\x14\xd5\x91\xbd\x6e\xd2\x74\x29\xab\x74\x79\x03\x0f\xd2\xfd\xdd\xfa\x30\x09\x11\x08\x8f\xc6\xae\x37\xc2\x36\x10\x76\x4f\x0c\xa2\x47\x53\xac\x98\xdc\xa6\x04\x0f\xf4\x60\x43\xa1\xec\xf8\xb1\x1a\xf3\x3d\x15\x28\x78\xd0\x65\x32\xc9\x30\x07\xe7\xd5\x10\xc2\x03\x8a\x48\xe1\x9d\x4f\x36\x54\x39\xe7\xdb\xd9\x30\xb4\x51\x5f\x34\x0a\x44\x6a\x92\x1e\x27\x9f\x34\xb9\xbc\x17\xdb\xfd\xc4\x32\x1a\x41\x75\xf4\x5e\x96\x93\x5a\x64\x71\xe8\xd0\x02\x23\x1f\xe5\x31\xe0\x2e\xd6\x15\x3a\x9e\x39\xb0\x11\x9d\x47\x21\x4d\x7e\xcf\xfb\xed\xe1\x38\xf4\x36\x54\x62\x3a\x8e\xcc\x6a\xb2\xb8\x48\x62\x87\xc8\x4a\xbe\x0b\x8f\xc4\x27\x15\x72\x3f\x6f\x95\xaf\xa8\x2e\xc0\xa8\xc8\xc2\xde\x2e\x45\x0c\x71\xab\x4c\x9d\x36\xef\x2a\x27\x75\x1c\x1a\x29\xb2\xbe\xc8\x91\xe2\x9a\x6f\x91\x8d\xe1\xe3\xf2\x61\x6f\xde\x55\x9b\x3c\x32\xc5\x60\xd8\xf2\x29\xf9\x87\x2a\xbd\xfe\xd0\x8f\xe9\x24\xbd\x1e\xeb\xaf\x21\x91\x43\x75\x1e\x9d\xea\xed\x18\xe4\x80\x57\xf8\xb7\x8d\x5e\xa1\x97\xc4\x8b\x36\xcb\x84\x3f\x80\x01\x63\xba\x27\x70\xb6\x56\x85\xe4\xb8\x77\x59\xa9\x61\x0a\xa6\xb0\xe5\x88\x88\x37\x94\xc0\x47\xdf\xc4\x03\x9b\x26\x45\x46\xc9\x86\x70\x30\x78\x08\x35\xc6\xe2\x78\x02\x5e\x3d\x82\xb4\x88\x6c\xb6\xa7\xf5\xc2\x2c\x7b\xf2\x8b\x9c\x57\xc9\x2f\x28\x04\xf9\x05\x58\x1b\x27\x55\xe4\xf0\x85\xdb\xd7\x7c\xc1\x73\x4f\xc7\xcf\xc6\x7f\xa4\x65\x27\x36\x34\x05\xe8\x0f\x9b\x2a\xfa\xa9\xcd\xc3\xd4\x4d\x2b\x34\x65\x87\x5b\x86\x5a\x17\x66\x16\xda\x47\x66\xe6\xa6\x94\x12\xb2\x9a\x20\x6f\x41\x14\x10\x97\xb2\x7b\x4d\x65\x96\xc5\x2b\x61\x9e\x15\x30\x11\xb8\x35\x66\xe9\xe4\x93\xa6\x7e\x77\x56\x64\x63\x1b\xbb\x97\xc8\xc3\xff\x4a\xba\x6f\xa3\x0a\xe4\x8f\x81\xae\x45\x41\xf4\x87\x54\xdc\xe0\x63\x35\x7c\x43\x33\xe5\x3b\x7d\x03\x1f\xba\xc5\x48\xeb\xbf\x47\x23\x27\x58\xd2\x8f\x03\x9f\xcc\x61\x9b\x48\xc8\x49\x46\x8a\xff\xc1\xb5\x7e\x96\x43\xbb\xb2\x9b\x9e\x36\x50\xdf\xef\x4f\x3c\x49\xde\x3f\xa1\x0d\x81\x4b\x86\xe6\x10\xa0\x93\x7b\x3b\x6a\xa6\x83\xe5\x11\x10\x8b\xee\x50\xe4\x7f\xbc\xda\x61\xf9\x2e\x2a\x98\xf8\xb0\x9b\x68\x91\x3d\x06\xcf\xf2\x89\xe2\x17\x5a\x2c\x32\xb7\xa0\x11\x50\x80\x3e\x89\x8f\x1b\xdd\x49\xd7\xc4\x4b\x19\xb7\x31\x70\xdf\x8f\xf0\xf5\xc2\xdb\x48\x3f\x2c\xc5\x6a\xfd\x16\xbe\xf2\x37\xfe\x33\x54\xdf\x00\xb5\x79\x80\xa8\x1c\x99\xcc\xf9\x8a\x82\xf9\xd5\xc6\x5f\x5e\x19\x12\xd5\xa6\xf3\xb7\x30\xd7\x7c\xec\x75\xb6\x87\x66\x6c\xc9\x23\x38\x54\xaf\x53\xcc\xd7\x24\x09\x1f\xc3\xa5\x88\x74\xa2\x82\x24\x9c\xc6\xf3\xe6\x7f\xa1\x37\x24\x73\x56\x9f\x76\x48\xc2\xdc\x74\xa3\x30\x1b\x8e\x6c\x8c\x01\x40\xbc\xdb\xbb\x8a\x77\xe9\x72\x99\x81\x6c\x9e\xa9\x74\x19\x22\xd3\x9f\x2e\x17\x1f\x8f\xe1\x90\xb3\x82\x81\x43\xfa\xc6\xc7\xaa\x51\x7b\x46\xa1\x00\xbb\x21\xe9\xde\xd1\x23\x40\x4a\x0b\x22\x01\x3e\xae\x34\x0b\x4d\xb6\xba\xcb\x4f\x8b\xa1\x08\x26\xcc\xdb\xc8\x3b\xb0\x6c\x00\x04\xd4\xca\xea\xcc\xc3\x85\x1a\x9c\xbc\x61\x3f\x30\x79\x32\xd0\x38\x77\xf0\xbe\x32\x18\x6d\x93\x3a\x61\x9b\x97\x6a\x71\xe8\xd1\xa3\xed\x28\x49\x96\xa8\x0a\x89\x8c\xfd\x41\xa0\x06\x70\x1f\x4c\x3c\xce\x20\x5c\x8c\x24\x15\x41\x58\x7e\x3f\x50\xc4\xdb\x40\x97\x0a\x9f\xdb\xfe\x0a\xe5\xfe\xf4\x94\x97\xcb\x87\x7e\xb6\x23\xd6\x77\xf6\x90\x51\xcc\x7c\xe2\x14\xce\x2c\x37\x2e\xb9\xfb\xae\x21\x6f\x97\x14\x59\x67\x9a\x64\x1c\x07\xe3\xdd\xdc\xa1\x05\xc8\xc7\x41\xfb\x93\x50\x00\x49\x9c\x15\x23\x47\x98\x8c\x35\x76\x5c\x0b\x41\x6b\xc0\x9e\x31\x7f\x7d\xca\x77\x9b\xf7\x53\x08\xed\x48\x34\x3d\xf3\xd3\xce\x35\x41\x72\x25\x45\x9e\x2c\x15\xa3\x71\xa1\x88\x81\x3f\xd2\xcd\xc4\x8f\x34\xbb\x7d\x18\xef\x55\x90\xfd\x5d\x04\x80\x96\x5a\x18\x7d\x06\xb6\xe8\x19\x92\xa6\xa6\xdf\xfd\x22\x04\xe9\xa5\x21\x53\x26\xb6\x8e\x32\xbb\xdc\x33\x5c\x89\x80\x6b\x42\x5a\xcd\x06\x01\x31\xde\xe6\xc4\x37\x54\x34\x9f\xdb\x95\x5a\xed\xe1\xc0\x81\x36\x29\x62\x64\x79\x6a\xe8\x19\x08\x74\xd2\xd7\xf4\x01\x1c\x97\x4e\x85\x84\x04\x83\xd2\x33\xc7\xd4\x93\x80\xf9\x64\xb5\x3e\xd4\x56\x00\x37\x40\x62\xbd\x7b\xcd\x8f\x25\x5c\x53\x12\xb9\x9e\xc1\x14\xec\x5f\xb8\xc3\x75\xad\x6e\x87\x59\x13\xfe\x87\x40\x51\x93\x7d\xe0\x56\x6f\x18\x2f\xb9\xfd\xc9\xc2\xfe\x58\x6f\xa2\xf2\xef\xd1\x93\xa4\xa5\x90\xed\xa0\x27\x08\xdc\x33\xa8\x98\xb1\x32\x01\x75\x41\x79\xee\x7f\x46\xcd\x94\xff\x88\x1e\x26\xaa\x6e\x97\xf5\xfc\x8a\x49\xc3\x98\x85\xf4\x1d\x27\x8d\x6b\x88\x61\xf6\x59\xa4\x7b\xbc\x3d\x29\x43\xa1\x24\x1d\x29\xfe\x22\xe6\xe9\xe1\x13\xe7\x29\x56\xad\x49\x3d\x83\x21\xc2\xae\xf3\xaa\xed\x70\xbe\x16\xc1\xce\x1e\x6e\x2f\x16\x51\x94\xf5\x0c\xb3\x23\x4b\xe6\xec\x61\x0f\xa7\x54\xbc\x34\x0e\xe3\x25\x9b\xe6\x49\x8c\x11\x1c\x71\x94\x95\xaa\x9e\x1f\xd4\x38\x4e\xa1\xcf\xe6\x05\xad\x98\xf6\x7a\x6d\xa2\x7e\x61\xa6\x6d\x7a\x05\x77\xb6\x79\xb8\x4e\xb1\x51\x9f\xd7\xc8\x13\x9b\x3d\x45\xd6\x03\x49\xe4\xfd\x89\x9a\xc0\x65\x6a\x1a\xd6\x02\x54\xa3\x12\x4c\x5c\xe7\xd4\x55\xcb\xa5\x42\xa6\xf3\xa9\xbf\x42\x51\x17\x4c\x27\x7b\x39\xfa\xc8\x7f\xfa\x97\xfd\xb0\xea\x97\xff\xf2\x5a\x19\xe6\x39\xc8\xd8\xc2\xbc\x23\x2a\x54\x13\x43\x9f\xa6\x46\x01\x1e\xf2\x6d\x5a\x14\x12\x5d\xc0\x5d\x62\x89\xfc\x85\x8e\xaf\x25\x3c\xbd\xf6\xa4\x22\x2f\x0f\xe3\x3c\xdb\xed\x19\x85\x77\x53\xc9\x1c\x7b\x84\x29\x18\xd1\x57\xd9\xd1\x51\x13\xaf\x17\xc8\x2d\xa1\x07\xf7\x04\x21\xbc\xa5\xec\xa7\xd8\x69\xce\x4f\x7c\xd2\xf5\x8e\x7a\x93\x26\x1d\x65\x79\x9a\xc4\x03\xa2\x8f\xa9\xd0\x42\x21\x40\xb8\xa8\xc6\x45\x1e\x3a\x3e\xa2\x41\x1a\xf6\xa3\xa4\xb7\x24\xb5\x1a\x24\x1e\xa7\xd4\xdf\x5e\x80\xbf\x46\x65\xf1\xdb\x13\xdf\x4b\x8f\xec\x62\xbe\x18\x5a\xe6\xe1\xaa\x58\x20\x3e\x51\x24\x7f\x39\xa9\x97\xc5\x83\x9d\xf4\x2b\x30\xac\x37\xf0\x22\xe1\xf7\xde\x56\xe9\x29\xf3\x14\x3a\x95\x8d\xb9\xb9\xcd\xcd\x89\x42\xfb\xbe\xdd\x14\x9a\x2e\x26\x45\xdc\xf7\xfc\x64\x00\x0c\xa3\x58\xc5\xc7\xae\x24\xbc\x6a\x72\x2b\xb9\x64\x23\xbb\x97\x10\xb5\x16\x71\x6a\x07\x85\x42\x0c\x3a\x6c\x87\xa7\x8d\xac\xc5\xf0\x65\x3c\xce\x7a\xc8\xe4\x78\x85\xfb\xbf\xe5\x34\x56\x2e\xd4\x9a\x4d\x04\x30\x2f\xa4\x7b\xd4\x54\x9f\x6b\x68\x8c\x74\x13\xbe\x57\x06\xf0\x05\x8a\xf2\xbe\x0e\x3e\x38\x58\xa6\x16\xbd\xd5\x9e\xaf\x9a\x0b\x59\x7a\xcb\x13\xa7\x2b\x30\x7d\x18\xbf\x52\xa4\xcc\x6b\x06\x13\x86\xc9\x6d\x3e\x76\x61\xb6\x5d\xe9\x77\x29\x08\x01\x76\x63\xf3\x82\xab\x40\xac\x58\x03\x5a\x08\xc7\x15\x57\xee\x6e\xc7\xd5\xef\x63\x79\x15\x1d\x6e\xaf\x09\xae\x1f\x3a\xd4\xce\x92\x08\x79\x04\x1a\xf5\x67\xe8\xa5\xf2\x71\xc3\xa3\x7c\xb1\xdd\x37\xa9\x9d\x52\xdc\x37\xb7\x02\x25\x8a\xf4\x51\x85\xea\xc5\x39\xb3\x91\x49\x73\x7b\xac\x55\x61\x73\xd1\x03\xca\x5b\xeb\x68\x07\x66\xdb\x51\xd8\x5d\x35\x71\x56\xd1\x02\xfa\x18\x3f\xc5\x4c\x16\x7a\x46\x7b\xa3\xf6\x4a\x50\x8a\xb3\x91\x7f\x25\x4e\xb6\xc8\xe3\x93\x82\xbf\xf8\x09\xf1\x4d\x31\x1e\xa4\xa6\x6f\x33\xda\xf0\x82\x81\xa1\x8d\x03\xb4\x0f\x4b\x13\xb3\xe8\x69\x03\xc2\x67\xfe\xc5\xb6\x89\xf3\x30\x8a\xdc\x66\x10\xa0\x99\x46\x9d\xd5\x6e\x7c\x61\xa6\xcc\xd8\x22\x87\x20\xe3\x39\xd4\xa0\x32\x94\xba\x5f\x55\x8a\xa2\x5c\x89\x11\x5f\x50\x52\x7c\x17\x14\x55\x40\x56\xc6\x12\x36\x1c\xc4\x2d\xdf\x79\xbb\xa5\x7b\x67\xb7\x1a\x07\xfe\x16\x43\xf8\xd1\xcd\xfb\x34\x3a\x75\xbf\x89\x52\x77\x1c\xe6\xbd\xa1\xd0\x3d\x33\x5b\xad\x42\xdc\xbf\xa1\x04\x68\x4c\x7f\xd9\xc4\x3d\xdb\xe7\xd9\x0d\x24\xf6\x3c\x2e\x8c\x58\xfd\x26\x85\x0b\xcc\xd2\xa0\xd4\x9b\xdf\x56\x33\xff\x4c\x2e\xc0\x9f\x5e\xdb\x6a\x20\x5e\x98\x65\x52\x63\xc6\x07\x20\x8d\xf8\x31\x2a\x65\x7c\xd2\xc4\x85\x16\x85\x4b\x76\xda\x03\x2d\xa1\x60\xa9\xc7\x27\xd0\xe4\xbe\xa4\xb5\xcc\x36\x1a\x14\xd2\xbf\x00\x02\x6a\x70\x76\xb8\x81\x6f\x07\x0b\xba\xec\x10\xa5\xa9\xed\xd9\x70\x99\x7a\xaa\x7e\x46\x6d\x37\x39\x3d\x3e\x5e\x53\x9a\x6a\x59\xce\x82\xfe\x08\x99\x98\x75\x8c\x4f\x1a\x78\x77\x5e\x49\x42\xd7\xec\x92\x6a\x0a\x5d\xf9\x27\x11\x56\x96\x3b\xae\x0c\x88\x2a\xc3\xb7\x98\xb0\x93\x6e\x78\x03\x7e\x64\xd9\x44\xa1\x61\x16\x4a\xe6\x0c\x0d\x5c\x34\xf0\xdf\xbf\x5b\x1b\xca\x9b\x3d\xdc\xee\x99\x31\xdd\x08\xf3\x4e\x51\xd9\x42\x38\xa8\xe4\xd9\x98\x22\x1f\x26\x69\xf8\x2a\x22\xd7\x59\x91\x49\x09\x94\xc0\x20\x4f\x28\xb8\x1f\x3d\x74\x48\x18\xfe\x9a\xb8\x7c\x46\x61\x96\xa7\x45\x96\xc3\x05\x08\x73\x53\xcb\x2b\x67\x05\x2e\x09\x8e\xf3\xd4\x8e\x53\x1b\xdb\x22\xcd\xa6\x7d\x60\xcd\xbb\x1f\x61\xc6\x1d\x8a\x13\x2a\xe4\x43\x78\xbd\xbb\x15\x46\xb0\x9f\xae\xc6\x36\x43\xb1\xcc\x01\xa2\x9c\x6d\xbd\x53\x91\x43\xdf\xfa\x9c\x0e\x7f\xb9\x3d\x36\xab\xb4\x80\xb1\x8f\xf0\xe7\x7c\xac\xb9\x8f\x13\x93\x66\x8c\x8d\x14\x94\x1d\x5d\x8f\xc0\xef\x94\xcc\x4a\x34\x62\x4b\xe4\xd8\x47\x3c\xa0\xe4\x8e\xfa\xc3\x03\x2f\xfe\x22\x2c\x35\xb3\x3a\x04\x3e\x5e\xb9\xab\xe2\xcb\xcf\x7f\xe9\x45\xfc\x2e\x2c\x3f\x33\x0b\xf0\x49\x9d\x56\xf4\x40\x7b\x31\xb5\x56\xcd\x08\x7e\x1f\x2e\x4b\xf4\xd9\x3d\xde\xe9\xba\xca\x01\x8a\x78\xd1\x84\x29\x95\xdf\x90\xf8\x81\x1a\x85\xd1\x0d\x8a\xc5\xe4\x4c\xe3\x38\x4f\x18\x2f\xdb\x2c\x6f\xa9\x2e\xe4\x07\x64\x62\xa4\x93\xef\x92\x9c\x2c\x2b\x5c\x27\x9b\xd3\x15\xba\x6d\x77\x75\xce\x41\xfe\x4a\x53\xb3\x31\x29\xf2\xc5\x30\x6f\xf9\xcb\x44\xcf\xa7\xae\x57\xb2\x98\xa4\x5d\x9e\xcf\x76\x60\x08\x07\x65\x3d\xab\x72\xa9\xae\x89\xa2\x24\x47\x62\x0e\x2f\xa3\xe7\x42\xaf\x2a\xb3\x1a\x41\x01\x38\x9b\xf2\x69\x28\x86\x45\x50\x44\xc2\xf4\x8e\xc0\x6a\x1a\x54\x8c\x56\x4d\x04\x69\x57\x57\x2f\xf9\xa5\x2f\x0a\x1f\x90\xee\x4e\x63\xb9\x20\xaf\xbe\x57\xc3\xd0\x1d\x38\xd0\xce\x86\x66\x45\x55\x43\xae\x6a\x29\xc1\xab\x6e\xe6\x75\x9c\xa4\x79\x6a\x56\x61\x9c\xe6\xdd\x04\x1f\xed\x73\x3e\x09\xf6\xab\x49\xc6\xd4\x02\xf6\x8d\xba\x07\xd3\x4a\x89\xec\x37\xe5\x52\xfc\x2f\x2a\x70\xb9\xa4\x55\x16\x22\x6b\xf3\x1d\xba\xc6\x8c\xe2\xbd\x90\x99\xb4\x9c\x98\x35\x2b\xb7\x23\x11\xbd\x0e\x2c\x14\xff\x55\x83\xc6\xd1\x17\xda\x69\x61\xcb\x74\x10\xa6\x1e\xb8\x27\x10\x28\xf1\xb1\x8b\xe2\x86\x12\xab\x49\x34\x4e\x77\x8e\x57\x75\x47\x85\xe6\x17\x2a\x3d\xac\x06\xe7\x42\xa4\x07\x49\x0a\x70\x60\x53\x1c\xe5\x77\xe7\xdf\xfc\xcf\xa1\x7a\xc5\xd2\x31\x54\x9a\x17\x19\x99\xa7\x1d\x84\x30\x8c\x92\x2c\x19\x0f\x57\xa7\x7c\x95\x16\xb5\x58\x57\xda\x70\xed\xff\xf5\xc6\x60\x30\x0d\x33\xe0\x26\x15\x6f\xba\x18\x8e\xf7\x27\x7e\xae\xe7\x9d\xa0\x32\x0e\xf0\x69\xc5\x7a\xdf\x8b\x4c\xea\x05\xc0\x84\xd9\x4a\x51\x6f\x5d\xaa\x11\xff\x1d\x99\xa1\xf8\xd0\xa6\x6a\x3c\x81\xd3\xc6\xff\x13\x6f\x97\x4f\x9a\xf6\x6a\xb7\x08\xa3\x3e\x57\xe3\x98\x07\x25\x50\x8a\x4c\x67\xf5\xcc\xfb\x25\x57\x1c\xed\x25\xf1\x20\x45\x8b\x85\xe1\x01\xc0\x11\xec\xeb\x28\xd8\xec\xbe\x5a\x43\x98\x4b\x06\x96\x75\x21\xb0\x95\x78\xf0\x9a\x4f\x1a\xc0\xe8\xf3\xed\xd4\x66\x49\x91\xf6\x2c\x5b\x6c\xc7\x64\x5c\xfe\x96\x88\x1d\xd4\xd7\xc7\x5c\x3b\x35\x71\x3f\x19\xa9\x7e\xfd\xba\x1a\xa1\x24\xad\x71\x01\x6b\x17\xfd\x8c\x1f\xb9\xb4\x41\x54\x25\xee\xaa\xc2\xdf\xf5\xed\x48\x70\xa6\xaa\xa8\x72\x5f\x91\x42\xdf\x9f\x68\x56\xf3\xd1\x28\xe9\x87\xf9\x2a\x74\x11\x91\xf1\x5f\x9c\xa8\x15\xff\xfb\x13\x85\xf4\xc7\x84\x27\xff\x03\x83\x06\x01\x99\x3a\x59\x43\x7d\xce\xcd\xb5\xd3\x22\x26\x21\x0c\xe0\x88\x7f\x0f\x8b\xca\x15\x38\x3d\x31\xc3\x1f\xe2\x07\x71\x79\xdf\xd8\xa2\x46\xe9\xfc\xf1\x66\xad\xaf\x49\x5a\xaf\x91\xe9\xb1\xfe\xa3\x70\x80\x78\xb0\xdf\x65\xad\xc2\x38\xca\x76\xd1\x05\x28\x15\x63\x5f\xcb\xf0\xdb\xfa\xda\x44\x8d\x2e\x30\x58\x14\x66\xf4\xcf\x75\x3c\xc5\xe2\x7d\x35\xd7\xf1\x64\x2d\xac\x9d\x9b\x6b\xf7\x4c\xae\x5a\x75\xa2\x31\xec\xcb\x03\x1b\x15\x05\xa6\x38\xdf\x53\x9a\x25\x34\x97\x4f\x4d\xfc\x10\xd0\x89\x89\x9f\x3a\xba\x41\x25\x1a\x96\x0b\x0b\x74\x37\x1d\x25\x3e\x19\x9f\xf3\x48\xb2\xed\x1d\x45\xdf\x71\x45\xb1\x8d\x6d\x5f\xdb\xa7\x3a\xb2\x00\x82\x08\x83\xba\x4f\xb8\xfe\xa5\xf2\x70\xf6\xd8\xd8\xf6\x70\x95\x78\x4f\xcc\xb6\x06\x83\x01\xe1\x2b\xe9\xbb\x63\x61\x30\xf1\xba\x22\x95\xbd\x8d\x2a\x07\xa6\xba\x99\x26\x4a\x08\x70\x3d\xad\xc0\x14\x9e\x39\x52\x86\xc7\x95\xf6\x4d\x68\x7a\x53\x4a\xde\x89\xbe\x1a\x66\xb2\x3a\xe5\xa8\xbb\x10\xb6\x18\xd3\xed\xa1\x1d\x74\x5d\x71\xe6\xd5\x39\x5c\x24\x9f\x4c\xc2\x88\xe7\x29\x71\x49\xc0\xbb\xc8\x4c\x2d\xdd\x37\x9c\x43\x3d\x25\x9c\x3d\xdc\x1e\x25\x71\x96\x0b\xb9\x9d\x74\xc6\x7c\xd1\xf1\x96\xd6\xcf\xf0\x4d\xe5\x95\x24\x5d\x12\xa1\x0d\xb4\xa7\xbf\xa1\xc1\x86\x4c\x2e\x82\x6d\xc1\x42\x1b\x8e\xc2\xc9\xf7\xd9\xb4\x53\xc9\x13\xd6\x50\x46\xf1\xee\x34\x9e\xbe\x04\xe4\x3e\x9c\xbe\x56\x95\x98\x59\xb4\xa9\x13\x08\xff\x02\x5f\x26\x04\x6f\xf8\x58\x05\x48\xa9\x8d\x42\xbb\x48\xb1\x0c\x9e\xce\xff\x1e\xf8\x22\xc9\x47\xf4\x21\xf0\x9c\x7c\xd0\xd4\xd0\x1e\x85\xb0\xd0\xec\x22\x81\xfb\xc6\xbc\x39\x1f\xab\xae\x0c\xd1\x58\x4d\x69\x8c\x2f\x53\x18\xa8\x21\x6e\x11\x9f\xba\xae\x60\xc3\x5f\x29\x4c\x9a\xdb\x74\x0f\x01\x02\xa4\x84\xa4\xe0\x12\x8f\x01\xc2\x96\x42\x93\x22\xc2\x3d\x41\x6b\x4a\xb4\xcc\x7c\x6e\x75\xde\x4f\x76\xff\x77\xe7\x03\x2f\xce\x0d\xf5\x75\x8c\xe3\x6c\x5b\x73\x8c\xce\x3d\x93\x0f\x9d\x21\x70\x14\x08\x2e\x71\xbc\xec\xda\x86\xb9\xb5\x31\x97\xbd\x10\xd0\x71\xf5\x81\x4f\xbc\x64\x82\x19\x99\x34\xcc\x7d\xb9\xc5\xf5\x7e\xfd\x47\xb7\xa9\xc0\xfb\x4a\xcd\xaf\x1e\x3a\xd4\xee\xdb\xae\x48\x6d\x70\xd7\x54\xa1\x50\x2e\x2b\x32\xc2\x41\x1a\x4a\x26\x02\xb0\xc0\x6d\x3d\xaa\x76\x5b\x39\x29\x13\x85\xe5\x0d\xa8\x29\x03\x55\x4f\xbb\xad\xa0\x6d\xc3\x22\x2a\x43\x60\x2d\x07\xfc\x3d\x38\x07\x3e\x51\xb5\xb7\x91\x39\x16\x8e\x8a\x91\xa2\x07\xbd\xa8\xca\x0b\x5a\x0f\x3d\xcb\xc3\x51\x11\x15\x19\xc9\x53\x89\x25\x70\x04\xe2\x7f\xe7\x6a\xa5\x37\x99\x9a\xe8\xb3\xf4\x42\x44\x4d\x57\xb1\xff\x5e\x9c\xa8\xf9\xeb\x16\xf5\xa7\x10\x9c\xef\x06\x8c\x11\xbb\x66\x0b\xd1\xca\x41\x99\xd2\x99\xea\x68\x4a\x68\x16\x69\x41\x68\xf4\x67\x8a\x6c\xf0\x09\xd2\x08\x11\x6d\xac\x96\xa8\x22\x19\xd6\x2c\x61\xf8\x08\x02\x34\x27\xce\x5b\xa6\x17\xa8\x20\xee\x20\x16\x1f\x3c\x84\x7b\x81\xca\x93\xa7\x69\x06\x02\x16\xff\x47\x94\xae\xcb\x66\xa4\xb7\xe6\xa6\xdf\x0e\x1c\x70\x02\xed\xb4\x33\xa4\x00\x44\xf1\x98\x90\xe0\x6b\xdb\x6b\xd2\xfe\x33\xbe\x32\x32\x85\xf1\x2e\x6c\x53\xa8\x75\x61\xe9\xdc\xd4\x1a\x66\xf7\x09\x64\x86\xe4\x96\x27\x06\x50\x93\xbd\x40\x0f\x8c\xf9\xe8\x02\xb5\x33\x98\x03\x0e\x4d\x96\xc7\x81\x0f\x68\x7f\x84\x07\x89\xd8\x03\xe2\x19\x78\x41\xd3\x40\x20\xe0\x4a\xee\xa1\x5f\x83\x67\xcf\x6c\x33\x08\xc0\xee\xe2\xa5\x22\x8e\x79\xc8\x2e\x0a\xbe\xe3\x04\xf9\x55\xf1\x29\x7e\x99\x8e\x8a\x6c\xb8\x64\x78\x7e\x59\x34\xc5\xe8\xfb\x05\xb3\xa2\xe6\xa9\x92\xd1\xd8\xa4\x76\xa7\x1f\x87\xba\x4d\xb7\xe8\xc8\x3a\x66\x0f\xcb\xb1\xf6\xdc\x1b\x3a\x87\x00\x3a\x87\x3f\xad\xa8\xdc\xfa\x76\xd9\x44\x85\x0f\xba\x59\x65\x90\x9e\x81\x28\x0e\x36\x8c\x1b\x44\xa6\xb7\x14\x15\xa5\x27\xc2\x70\x95\xb0\xdc\xfa\x6d\xfe\xf5\x5a\xc1\xfe\xe0\x5c\xbb\x97\x2c\xdb\x38\xaf\x50\x5e\xbe\xa3\x5d\xfd\x3b\xd5\x7d\x14\x67\x9f\x29\x17\x1c\x1c\xfc\x34\x56\x05\xfa\x36\x37\x09\xaf\x02\x4c\x35\x82\x32\x94\x0a\x59\x26\xd7\x89\xb9\xbe\x24\x02\xb6\x1f\xa3\xdf\x8f\x62\xeb\x26\x56\x05\xe2\xb3\x77\xb5\x2a\xcf\x79\x7e\x79\x80\x27\xdd\x83\x2b\xc4\x1e\xbf\xcd\xdc\x58\x82\x69\x55\xa0\x95\x4b\x93\x2a\x43\xd4\x91\x19\x7e\xd2\x8f\xe9\xdd\xc0\x48\xa1\x14\xcf\x51\x18\x56\x0f\xdf\x0b\xf6\x1e\xff\x95\xaa\x7b\x9e\x52\xd4\xf8\x77\xd4\x54\x85\x35\x59\x18\xad\xee\x52\x72\x6f\x4c\x84\x84\xf4\xf7\xa1\x5a\xd9\x57\xe8\x39\xc1\xb1\x23\xc0\x16\x2e\x8e\xca\x54\x72\xf9\x3b\xfc\x47\xb5\xb8\xe5\xb9\xb6\xfd\x4a\x11\x2e\x9b\x88\x59\x42\xe4\x89\xbe\xae\x9a\x57\xfb\x3a\x1e\xfb\xd5\xc2\xb8\xb7\x84\x0c\x8e\xe0\x6a\x4c\xed\x3a\x11\xe4\x10\xad\x5e\xba\x0c\xda\x9e\xff\xf0\x19\x4a\x37\x69\x3f\x27\x4f\xaf\xed\x75\x78\x97\x22\xdf\xe9\x47\x96\xef\x68\x6a\xb6\xa9\x35\x6f\x26\x5f\x9b\xf8\xe0\x8b\x13\x37\xa5\x86\x26\xe1\xf4\xee\x4e\x83\xbb\x32\x59\x19\x7e\x4e\xab\xd9\x9b\xdf\xc2\xf3\xd4\xeb\xcb\x89\x83\x1f\x3a\xc4\x2e\xf9\x4d\x77\x6f\xc9\xb2\x4d\xf3\x22\xb5\x15\x8d\x4b\x96\x96\x17\xb1\xb4\xad\x89\xeb\xdc\x5c\x3b\xcb\x53\x1b\x0f\xf2\xa1\x75\xf5\x59\x47\x24\x5f\x5e\xbe\xd4\x23\xb7\x36\x26\x0e\xce\xb5\xc7\xa9\xed\x93\x5a\xb6\x13\x5a\x13\x94\x7d\xcb\x11\xc9\xd4\x41\x46\xb3\x87\xdb\xe6\x58\x98\x8c\xa4\x0d\x21\x75\x68\x55\xb5\xf4\x01\x43\x56\x84\xb9\xc5\x33\x51\x43\xe9\x22\xab\xb1\x31\xd1\xe3\x5a\xe5\x05\xa0\x3c\x56\xaf\xbd\x95\xa9\xe8\x38\x5c\x32\xa1\xd1\xa3\x89\xe7\x54\x22\xc5\x03\x12\x58\x7f\x77\x9b\xb0\x7a\xf6\x18\xa4\x04\xc8\x6c\x60\x07\x01\xce\xcd\xc7\xaa\xe7\x3f\xb4\x66\x39\x8c\x56\xf7\x2a\xca\x8c\x89\xe7\xa8\xe6\xf9\x7b\xbc\xd7\x6d\x18\x2f\x96\x32\x9a\xc7\x1c\xf3\x74\x00\x1b\x7a\x94\x99\x60\x0b\x6f\x06\x7e\xc8\xed\x7d\x84\xbc\x52\x91\xd3\x5d\x05\xbc\x79\x06\x24\xa8\x28\x82\x74\xbe\xfa\x96\x41\x36\x18\x72\x06\x87\x13\x1f\xfb\xa7\x9f\x9b\xd5\x6c\x5a\xf1\xe6\x72\xbf\x4b\xa7\xca\x02\x8a\xf6\x3a\x7b\x5a\x29\xd4\x1e\x1b\xa7\x36\xcb\xa2\x55\xfc\x18\x3e\x78\x9f\xfc\x06\x1f\x2b\xee\xeb\x5e\x92\x0c\x4c\x8c\x35\xc8\x75\x4e\xc4\x4c\x52\xf4\x6c\x2c\x7a\xd9\xde\x52\x44\x62\x0b\x0e\xcf\xb3\xae\x04\x42\xd7\x6b\xf0\xd4\xd9\xc3\xed\x1e\x54\x54\x42\xdb\xb3\x68\x66\x32\x13\xdf\xd3\xba\x0a\x64\x47\x5d\x9b\xee\xa0\xcb\x96\x39\x43\x35\x75\x7c\xb3\x22\x9d\xa5\x44\x07\x5e\x57\x62\x0a\xd7\x26\x5b\xe9\x42\x9e\x6b\xaf\x26\x45\x8b\x9c\x80\xb4\xea\x68\xd9\xf1\x49\x6d\xdd\x1e\x3a\xd4\x1e\x16\x69\xdf\x31\xe6\xa0\x0c\xf6\x00\x4b\x83\x4f\x1c\xb6\xbc\x97\x8c\xba\x61\x6c\x51\xc7\x64\x1a\x4c\x25\x79\xff\xb1\x4a\x19\xb2\x22\x5d\x0e\x97\xb1\x94\xf1\xaf\xdb\xd6\x54\x4e\x5a\xd7\x56\x3b\x70\xa0\x1d\xdb\x30\x1f\x5a\xd4\xbe\xd1\xd7\xfd\x0e\x05\x59\x0e\x2e\x3f\x7b\x98\xcd\xe3\x35\x85\x9a\xee\xa7\x45\xbc\x84\xcc\xc0\xd5\x7f\x7d\x2d\xd8\x09\x8d\x8c\xcc\x18\xd7\x2d\x0c\x31\xaa\x3c\x77\xba\x89\xd9\x2c\x8b\x92\xa2\x37\x54\x6c\x02\x97\x94\x01\xb8\x54\x8b\x16\xa8\xfb\xba\x62\x00\x2e\x46\x59\x1d\xfb\x0f\x33\xc3\xc2\xd2\xaa\xd1\x5d\x3e\x42\x1f\x9b\x34\xec\x9a\x0c\xfa\x46\xc8\x5c\xef\xc2\xf3\x4a\x11\xd8\x23\xae\xef\x62\x73\x4b\x0d\xd8\xc3\x45\x57\x6d\xbc\xa7\xb4\x07\xa8\x40\x81\x63\xdb\x11\xf6\x38\xa6\xd3\xb3\xe5\x57\x6d\xde\xd7\x9d\x25\xd0\xa8\x39\x85\x6a\x17\x8a\xa0\x19\x06\x93\xf2\x2e\x3d\x7d\xfe\x9b\x5a\xfb\xed\xc8\xcc\x6c\x7b\x28\x1a\x6a\x0e\x53\xed\x39\x5b\x95\xe5\x8a\x4c\x4a\xb4\x8c\x0e\xd7\xf4\x17\x9f\x21\x34\x17\x16\x68\x8b\x48\xa9\x9d\xc6\xb7\xa2\x94\xff\xa6\x1a\x09\xf8\xf3\x1d\x45\xe3\x75\x66\x0b\x43\x7c\x6f\x58\xf0\x3c\x03\x47\xf0\xb0\xbb\x12\xce\x7b\x3d\xed\x7e\x98\xf5\xc2\x71\x14\xc6\x18\x08\x61\xd7\x79\x26\x50\x60\xba\xc0\x57\xa8\xce\x4c\xf4\xc0\x69\x93\x96\x73\x36\x34\x4b\xc8\xc2\xf1\xe2\x5f\x53\x3c\xd9\xaf\xd5\x3e\xf1\xb3\x68\x78\x30\xe6\x82\x05\xa5\xb0\x57\x45\x5d\x4a\xa7\x0e\xd1\x6a\x3c\xa5\xd9\x84\x6e\xc3\x50\xca\x6a\x54\x78\xaf\x0f\x1b\x59\x34\x86\x66\x34\x4a\xe2\x3e\xbb\x44\x69\x98\xd3\xc7\xa4\x93\xde\x64\xc7\x92\xd1\x62\x92\xe6\xe8\xd9\x3a\x88\x2a\x1a\xd5\xc2\xb7\xf6\x6c\xcd\x02\x25\xc3\x56\xeb\x97\xbe\x28\x72\x56\xaa\xde\xf9\x6e\xc3\x30\xd9\x6c\xbb\x88\x47\xc9\x32\xb3\x52\xa1\xb4\xb6\x0d\x35\x37\x3e\x59\xdb\xfa\xe8\x7e\xe6\x67\xda\xd9\x30\x2d\x24\xfb\x15\xa7\x42\xdb\x42\xbc\xcd\xd6\x52\xea\x73\x6d\x3f\xb0\x86\x1b\xde\xc4\x3e\xe2\x13\x35\x2a\xd5\x4d\x92\x57\x05\xff\x57\x41\xec\xcb\xc2\xde\x32\xb4\xf8\xd2\xec\xe1\xf6\xd1\xa3\xd3\x64\x73\x05\xf9\xab\x88\x29\xde\x44\x28\x27\xf8\x60\x85\x49\x7b\xb3\x56\xf0\x3d\x38\xd7\xce\x4c\xaf\xa5\x80\xd8\xa8\x7a\xf1\x71\x65\x2a\xea\xd8\x4e\x5f\x09\x6d\x11\xa0\x93\x87\xb0\x27\x1a\x81\xa8\x10\x40\xdc\xfe\xc4\xf8\xe9\x75\x0a\x6b\xb1\x9c\xb7\x37\x10\xd5\xb6\xa3\x70\x14\x82\x2b\x4b\xc0\x3c\x0a\xd8\xd3\x50\x89\x6f\x67\x36\xcf\x1d\x8a\xc3\x81\xad\x3c\x8b\xac\x72\x0e\x66\x39\x09\xfb\x08\x91\x45\x92\xf3\xbb\x0a\xd3\x07\xac\xb7\x14\xd2\x7d\x8d\x37\x5f\x5d\x02\xc4\x01\x61\xf1\x03\x3c\x4b\x3e\x51\xe3\xb6\xbd\x84\xc0\x46\x19\x8d\xd2\xc0\xc4\x9d\x26\x53\xc6\xc7\x95\x8d\x95\xc4\xf9\x6e\x8a\x70\xf0\x7b\x6f\xea\xd2\xa4\x0c\xf5\x3b\x56\xc8\x85\x19\x3f\x9a\xe3\x2a\xc4\xbf\x07\xb7\xed\x98\xe1\xcb\x68\x0b\xd9\xe8\x69\x35\xde\x7d\xb9\x66\x34\x0f\x1d\x6a\xc7\x49\xd7\x46\x2d\x3d\xa2\x43\xbf\x2e\xb3\x3b\xca\x41\xd8\x74\x68\xc6\x5c\x50\x95\xd1\x26\x0f\xd8\xf8\xd7\x64\x9c\xe0\x1b\x4f\xa8\x66\xb9\x3d\x96\xdb\x18\x23\x45\xc2\x65\x52\xa1\x84\xaf\x77\x03\x5e\x6e\x47\xe1\x60\x88\xde\x0d\x0c\xef\x15\x45\x43\x79\xa5\xd6\x12\x7b\x61\xb6\x9d\x25\x45\xf9\x1b\xce\xf3\x00\xdd\x2b\xf4\xe8\x4d\xe4\xa7\x61\x4c\xa9\x48\x22\x1a\x6d\x30\x25\xdc\x94\xe2\x13\xcf\xd4\xcf\xaa\x44\xd3\x4a\x09\x1d\x05\x4e\x11\xd8\xa3\x67\x06\x70\xee\x5d\x46\x54\xf2\x99\xe2\x0a\x77\x13\xef\x60\x90\x11\xd9\x48\x3f\x5b\x76\xa5\xb2\x2c\x62\x9b\x3d\x4d\x45\x1d\xa1\xf1\xa0\x35\x82\x26\xdb\x03\x44\xc1\x98\xb6\xda\x41\xd8\x4e\x96\x4b\xa3\x55\x26\x08\x0d\xba\x35\x24\xdf\xeb\x8a\xd5\x67\x87\x02\x2f\x33\x50\x10\xf5\x4e\xa9\xa8\x38\xb2\xb3\xd2\x86\xe0\x69\xfc\xa3\x89\xea\xf1\x3d\x08\xfc\x0d\xdc\x99\x28\x35\x7d\xae\xfa\x0b\x0d\x1a\x45\x96\xce\xb1\x68\xa1\xc3\x27\xd5\x08\x60\x19\xa8\xee\x56\xc5\x2f\x2e\xad\x23\xfd\x7f\x86\x47\x90\xd1\xdf\xbd\xa4\x14\xd8\xae\x11\xcb\x9a\x2a\xd0\x09\x29\xcd\x35\xa5\xa3\xbd\x17\xca\x5d\xd2\x92\xd9\x6a\xfc\x0f\x1d\x6a\x87\x71\x2f\xb5\x26\x83\xbf\xd6\x29\x8a\xe4\x1b\x7e\x2d\x0f\xd2\x70\x14\xad\x2a\x37\xf4\x0d\xe5\x86\xbe\x31\xf9\x8c\x82\x1a\xd2\x77\x86\xf1\x20\x02\xa0\x84\xe7\x3a\x15\xa3\xf2\x57\x27\x8a\xe8\x21\x36\xd1\x6a\x16\x66\x20\xda\xc6\x96\xfe\x28\x50\x63\x9e\x1f\x55\x7a\x21\xa1\x8d\x77\xf8\x0a\x12\x16\x22\xcf\x23\xe2\x65\x2a\x91\x00\x59\x23\x5c\xb7\x90\x2d\xa1\x95\x25\xac\x89\xf2\x21\x5a\x0c\xac\xa8\x41\x0f\x19\xf6\x83\xcb\xc4\x78\xa1\xb7\x15\xd0\x7d\x9c\x26\x3d\x9b\x95\xb7\x88\xfc\x41\x64\x8d\x69\x91\xc2\xd7\x9e\x23\x6b\x85\xba\x09\xf8\x27\x50\x61\x19\x4e\xbc\x3f\x3e\x17\x3c\xad\xc2\x68\x33\x18\x08\xf5\x1b\x52\xeb\x1f\xa8\x34\xfb\x07\x6a\x6e\xb4\x88\xfb\x36\xcd\xcd\x52\x18\x0f\x08\x40\xc6\x93\x00\x81\xe7\x06\x44\x33\x50\x04\x1a\x7c\x9b\xe4\x84\x2a\x8a\xa7\x61\x2f\xd9\xa5\x02\x90\x1b\x5a\x3f\xeb\x8c\x42\xff\x30\x0d\x8d\x70\x7a\x28\xa6\xda\x3b\x4a\x4c\xeb\xa2\x9e\xfb\xdf\x08\x7e\xa2\x52\x56\x4c\xed\xd0\xc6\x59\x99\x8f\xd0\x57\x39\x11\xaa\x72\x87\xf1\x49\x53\x73\x65\x1c\x99\x30\xce\xc3\x45\x19\x88\x66\x6e\x62\x05\xf8\xaa\x8f\x3f\x1c\x3a\xb4\xd0\xee\x27\x2b\xf1\x8a\x49\x81\x76\xc5\x8a\x7b\x87\x9e\x08\x1f\xd7\xda\xfb\x84\xa6\x05\x74\xc7\x51\x42\xbb\xa7\xaa\x66\x2d\xfc\x6e\xc8\x00\x23\xf6\x2f\x68\x5b\xc7\xd7\x47\xb6\xad\xed\x57\xf8\x9b\x24\x47\x76\x84\x7f\x3b\xad\x48\x78\x4f\x07\xfe\xef\x7a\x74\xbd\xce\x13\x9d\xd3\x9e\xe8\x9c\xcb\x00\x53\xb3\x5a\x86\x91\x53\xae\x84\x75\x15\x71\x81\xd4\x68\x55\xb3\x45\xcf\x84\x0e\xc2\x34\x02\x2e\x0c\x7f\xf8\x43\x35\x06\x80\x2d\x24\x4c\x0e\x5b\xab\x40\xa5\xbb\x28\x62\x74\x4e\x6d\x9f\xab\x40\x4a\xd1\xc4\x0b\x7d\x6c\xc5\xe7\x1c\x99\x99\x6b\xc7\x56\x23\xf5\xd6\xd5\x8b\xd3\x8c\x95\x0b\x2f\x1c\xd4\x25\x17\xad\x4d\xb6\xae\x9e\x50\x97\xd8\x72\x17\xe6\x9d\xe2\xa2\x57\x2e\xaf\x17\xa1\xca\xc0\xd6\x74\x93\x22\xa7\xd9\x75\x94\x22\xde\x9e\xf8\x7e\xc5\x34\x42\x5c\xb8\x01\x6c\x17\x07\x5c\x39\xe8\x01\x35\x3e\x5b\x31\x59\x96\xa4\xb9\x1b\x54\x73\x5c\x46\x6e\x75\x9c\xd2\x72\xa3\x97\xd4\x70\x75\x6a\xe2\x81\xdd\xa1\x5a\x7b\x57\x55\xaf\xe1\xbb\x81\x42\x32\x4e\xbc\xae\xd6\x36\x52\xed\x62\x89\x17\xa5\xc3\x6a\xa3\xe4\x2b\x85\x8d\xf3\x68\x75\xaa\x82\x4d\x2c\x3f\x09\x36\x86\x5b\x9a\x88\xa6\x5e\x55\x9f\x5f\x98\x6f\xf7\x6d\xd6\x4b\xc3\x2e\x82\x45\xaf\x49\x43\xaf\x53\x64\x07\x55\xa8\x1b\xda\x1d\x70\x43\xc0\x26\xa1\x92\xb7\x09\xda\x45\x6e\xe5\x4f\x7c\x7b\xfa\x72\xa0\x56\x6e\xab\xe3\x93\x43\x4b\xa3\xd8\xe1\x32\xe4\xe3\xf1\x3b\x53\x6b\x1e\xee\x7c\x1f\x81\x3a\xf2\x5d\x66\x58\xe0\x93\xc0\x0b\x9c\x1e\x83\x99\x82\x69\x3a\xa1\x44\x2e\x9f\xa6\xe2\xb0\x60\x2e\xf6\x29\x91\x92\xc1\xce\xd6\x0b\xbe\x58\x4f\x3c\x58\xa8\x48\x63\xa2\x87\xfb\x3c\xe4\x50\xf9\xb5\xd2\x1a\x50\xcc\xbb\xf2\x38\xbf\xe3\x66\xdd\x16\xa3\xd5\x9d\xe5\x45\xc1\xf8\x7d\x4c\xd7\x21\x55\xe1\x4a\x3c\x59\xae\x32\xa7\xec\xe2\x45\x30\xef\x2b\x9a\xc2\xd3\xba\x9e\xd6\x2f\x7a\xd4\x26\x99\x52\x28\xe5\xab\x0a\xcf\x7b\x3d\x50\x3c\xbb\xdb\xd6\x7c\x62\x3f\xb0\xe9\xc8\xc4\xd9\x2e\xbc\x2a\xac\xa8\xfd\x64\x94\x00\x15\x02\xd4\x00\x35\xac\xaf\xc3\x53\x21\x33\x40\x70\x84\x3f\xba\x35\x51\x9d\xa8\xa7\x3a\x8a\x77\xf1\x59\xd7\x0d\x5e\xb6\x43\xaf\x04\x2f\xc4\xc8\xe5\x77\x0b\xcd\xe1\x53\x6e\x90\x2b\x4b\xa2\x65\xb1\xa7\xb8\xfc\x93\x2a\x12\x3b\xe9\x20\x7a\x7d\xdb\x2b\x13\x12\x36\x2f\x28\x51\x9d\x54\xc3\xd8\x27\x6b\x66\xfe\xe8\x51\xe2\x87\x2b\x6c\xdc\x03\x8a\x1a\x86\x00\x82\xb5\xb8\x49\xb4\x6e\x11\x22\xbd\xa7\x94\x70\x2f\xd7\x8c\x9c\x60\x26\xb2\xdc\xa6\x11\xe9\x5c\x7b\x19\xff\x9d\x65\xb8\xf8\xe8\x97\xd1\x35\x80\xd9\x3e\xaf\xd5\xe6\xae\x2b\xe4\x5f\xd6\xb3\xcc\xc3\x01\x33\x0b\x41\x2b\x3e\x6e\xea\x60\x67\x39\xbc\x88\xd3\xe4\xdc\x06\xb2\x65\x3e\xe9\x3c\xad\xb0\xbd\xc9\x78\x4c\xe1\x81\xab\x69\xa0\xdb\x2d\xcd\x83\x9f\xfe\x84\x7b\xb2\xc7\xf2\xd4\x50\xe4\x2d\x18\x05\x29\xe1\xd1\x4d\xf0\x89\xb2\xc6\x7f\xeb\x6f\xfe\x2d\x78\x5b\x01\xa4\x95\xfb\x42\x08\xca\x7d\xbc\x62\x7a\x79\x61\xa2\x68\x15\x84\x1c\xc2\x9b\x57\x3e\x7d\xd4\xad\xcf\xa0\xf9\x25\xd5\xbe\x96\x26\x8a\x2e\xed\x0c\x7a\x4f\xdf\xc6\x06\x41\x98\x74\x1d\x31\x9b\x23\x8d\x75\xf8\xdc\xcb\x2e\x19\x29\xc6\x59\x6e\xc2\x94\x13\x31\x04\x66\x67\x95\x46\x34\x18\x8e\x59\xf5\xa4\x2e\x75\x36\x7b\xb8\x6d\xc2\x96\x2a\x01\x5c\xa6\xc8\x4c\x3a\x14\x0d\x9d\x8c\x30\xce\x99\xff\x79\xde\xf1\x45\xfb\x75\xff\x51\xf0\x8c\x1a\x03\x1c\x8d\x4d\x1c\xda\xec\xd3\xbe\xeb\xb8\x0b\x5e\x06\x29\x32\x74\x72\xd0\x77\x9d\xa6\xde\x37\xf7\xdf\xc8\xf2\x30\xc0\x1f\x4f\x0d\xfe\x0a\x94\x0c\x58\x86\x7f\x82\xa7\x26\x2c\x89\xd4\x60\xc7\xd2\x3e\x8e\x26\x1f\xcf\x28\x72\xfe\x25\x3b\x9b\x52\x28\xac\x5a\xf0\xee\x01\xb7\xb9\xab\xa3\x1a\xb8\x90\xda\x93\x5e\x20\x19\x06\x44\x10\x17\x90\xc2\xc0\x56\x12\x41\x85\x13\xe4\x55\x3c\xe8\xbc\x1b\xa8\xc9\xf8\xaf\x9f\x71\x56\x22\x4f\x4d\xe6\x31\x23\x08\xf2\xce\x29\x09\xd2\x73\x0d\x74\x1d\xed\x71\x6a\x17\x39\xff\x75\x84\x10\x98\x36\x14\xd8\x4a\x23\x9d\x48\xd2\x0b\x6d\xbe\xba\x43\x8d\xcc\xb3\x98\xb1\xab\xa9\xba\x61\x2d\x80\xac\xa5\x73\xad\x25\xec\xb5\xb6\x69\xd7\x2e\xb2\xaa\xc6\x3c\x1b\x0d\x26\x60\xe7\x13\xb5\x0f\xc6\x36\x2d\x96\x43\x13\x4f\x29\x44\xe7\x6d\x45\x0e\xf6\x63\xbc\x38\x61\x1d\x53\x15\x7a\xd4\x6b\x76\x79\xb0\x11\x46\x40\x30\x3a\xfc\x1d\x7c\x0c\xed\x40\x58\x68\x94\xe4\xe1\x31\xb1\x61\x3e\x40\xc6\x8e\xc8\xfc\x3c\xf5\x60\x61\xb9\xdf\xab\x2d\xe5\x83\x04\xe7\xcb\x23\xc6\x19\x32\x31\x1b\x5d\xa7\x90\xb4\x35\xe8\x19\x11\x8a\x74\x61\x86\x35\x1a\x18\xb0\xc9\x27\x0a\x82\x89\xc8\x39\x49\xb3\xa7\xfc\x18\xd8\x66\xa0\xc6\xff\xcf\xa2\xf7\x8c\x65\xf5\xbb\x9c\x67\xe3\xa6\x4f\x2b\x55\xe4\x29\xf4\x74\xdd\xd3\x38\x38\xe7\xfa\xbb\xa5\x61\x41\x98\x70\x6b\xa2\xf4\x18\x9e\x40\xbd\x5a\xa0\x92\xe5\x5a\xdb\x04\x5d\xa4\x43\x52\x3a\x9a\xb7\xab\x41\xeb\x25\xcf\xce\x4e\x8f\x01\x49\xfc\xf7\x03\x35\xd7\xf5\x03\x55\xa1\x0e\x47\xe3\x24\xcd\x89\x0b\xba\xa5\x95\xbe\xb5\x64\xb5\xc2\x4f\x14\x69\x6a\xe3\x7c\x9f\xb2\xab\x27\x54\xc6\xfe\x64\x47\xdd\xdc\x03\x4d\x83\x0d\x0a\x46\x14\x3a\xce\x05\x7e\xe0\xf3\x07\xc8\x82\xe5\x11\xd0\x46\x42\x8d\x99\x87\xc6\x59\xb9\x14\x71\x85\x23\x56\x7b\xc9\xe9\x30\xf2\x38\x2d\x92\xe0\xaf\xd7\x32\x2c\x70\xf2\x13\x3a\x3e\xcc\x5b\x15\x48\x87\xcf\x81\x37\x82\x67\x54\x66\xdf\x27\xb6\x22\x24\x2a\xd2\xa2\x55\x04\xea\x1b\x2a\xe7\x58\xb5\x26\xcd\x3e\x55\xde\x0d\x16\xd8\x7d\xea\x9b\xc1\x35\x5f\x24\x93\x87\x1f\x78\xb6\xa3\xca\x63\x81\x1f\x0b\xd8\x8e\xc5\xe0\xaa\x31\xa5\x91\x83\xc1\xe7\x5e\x29\x1b\xa9\x89\x87\x1b\xdc\x20\x4b\xc6\x3f\xa1\x46\x12\xd7\xf1\xb8\x58\x44\x46\x33\x21\xf0\x08\xba\xe8\x60\x6d\xdd\x35\x65\xb0\x9c\x96\xf6\x68\xca\x8f\x7e\x9e\x98\xf8\x61\xe2\x8f\x35\x87\x89\x73\x52\x84\x09\x8c\xa4\x4d\x8f\x08\x11\xad\x0c\x3e\x6e\xe2\x6b\x8a\x6d\x4e\xba\x81\x2d\x55\x66\xdb\x50\x65\xb6\x8d\xc9\x9e\x90\xec\xe3\x2f\xb4\x8f\x3c\x49\x17\x4d\xa8\xc4\x7f\xf6\x57\xb9\x44\x84\x17\xc0\x13\xc8\x0e\xe9\x53\x7e\x17\x3a\x2f\xc0\x7a\x21\x3c\x7e\x5b\xe9\x47\x6e\x5f\x53\xf8\xca\xab\x0a\xaa\xbb\x8b\x0c\x8d\xd0\xf5\xd3\x4a\x74\x35\x4c\x3f\x8d\xff\x70\xe2\x01\x3f\xbc\x19\x79\x21\x13\x73\xa0\x8c\x9c\xd0\xab\x94\x04\xab\x61\x24\x64\x60\x46\x08\x9c\x14\x58\xc0\xfb\xe8\x86\xb1\xf8\xa1\x89\xa2\x64\xc5\x5a\xb4\x6f\xe4\xb9\xd2\xa7\xe4\x81\x37\xa1\xdc\x99\x91\x8e\xab\xe4\x5c\x9d\x81\xa9\x95\x52\x4d\x03\x9f\x42\x99\xfb\xf5\x42\x23\x40\x05\x11\xeb\xf6\x40\xa9\x47\x81\xc6\x19\xf8\x64\xa5\x0e\x73\x99\x9b\xf3\xbb\x68\x4a\x89\xdf\x3e\x52\x14\x24\xac\xf5\x8c\xc6\xfb\xd9\x5a\xdd\xba\x5c\x94\x2b\x26\xce\x69\x0a\x02\xdb\x63\x57\x47\x09\xbc\xdc\x9c\x54\x29\xf6\xcb\xef\x12\xc4\x81\xaf\x68\x27\xe3\x71\x92\xc9\x1a\x05\x40\x94\xcb\x07\x7c\x52\xfb\xdd\xcf\xb5\x47\x26\x5d\x0e\x63\x74\xb7\x45\x52\x48\xb9\x84\xf3\xb5\xb6\xc4\xc1\xb9\xf6\x28\xec\xe7\xc9\x4a\xbc\x53\x5d\x13\x44\x4e\xf1\xb4\x20\x31\x87\x14\xac\xc2\x18\x02\xa0\xa1\x9b\xb4\x71\x10\xfc\x8f\xb7\xb6\x7f\x0e\xcc\xb6\xe7\xe6\x5e\x54\x0c\xf0\x3c\x06\xc4\x27\x8a\x7d\x2e\x2b\xe2\xbe\x59\x05\x3c\x19\x81\xcc\x75\x84\x5b\x00\x35\x9f\x53\xa2\xac\xd7\x69\x59\xc3\x88\xb3\x9a\x22\x50\x54\xff\x4a\x81\x45\xf3\x62\x94\x48\x28\x0a\xbb\x4c\x24\x29\x9b\xd7\x14\xe8\xf6\xcc\x64\xaf\x7b\xe4\xcb\xcf\xb7\x7c\xd3\x07\x5d\x72\xe9\x73\xfa\x26\x4b\x3f\x1c\xc9\x0c\x06\x36\x0f\x27\x7c\x7c\x32\xd1\x15\xa3\x68\xa4\x74\xa6\xb9\x1c\x23\x85\xdb\x06\x72\xec\x57\x92\xc8\x01\xa3\x58\x8a\x3d\x50\x55\x90\x73\x9a\x16\xad\xf6\xf9\x97\x48\x6c\x2c\xb3\xcc\x9d\x2e\xea\x2b\x2d\x25\x4d\xfd\xac\xcb\xfb\x48\x7b\xd4\xb3\x83\x35\xa9\x27\xaa\x26\x49\x0c\x22\x5c\xf7\xf0\x81\x69\xc0\xeb\xbb\xa7\x40\xcb\x7f\x54\xdb\x9b\x0b\x33\x0b\x65\xf0\x51\x66\x99\xbc\xa5\x99\x34\xa8\x42\x20\xb4\xd5\xef\x1d\xfe\x32\x05\xeb\x36\xce\x88\x79\xef\x88\xcb\xdc\x03\x5f\xc5\x38\x5b\xfb\xd4\xa1\x43\x8a\x5e\x81\x9e\x3b\x93\x28\x54\x19\x15\x7c\x22\xf5\xa5\x83\x87\xb5\xb8\x93\x96\x81\xbc\xe4\x38\x09\x6c\x4c\x79\x43\x96\x89\x39\x70\xbc\x10\xae\xb0\xc4\x75\x52\x74\x12\xee\xd6\xbc\xf8\xd1\xa3\xed\x5e\x91\xe5\xc9\x28\x7c\xd5\xa2\x30\x08\x57\xc0\xc2\x46\x28\x33\xfd\xe6\x44\x41\x5a\x3d\x23\x89\x3d\x36\x8e\x92\xbe\xac\x09\xb4\xd9\x76\xc3\x85\x20\xd2\x05\x0b\x9a\x64\x1d\xf5\xae\xe3\x6c\x99\x07\x26\xa2\x04\x2e\x68\x70\x4f\x73\xf4\xc9\xb9\x76\x11\x2f\x86\x51\x24\x77\x0d\x73\xf9\x1b\x74\xd7\xac\xe9\xa5\x99\xf6\xd7\x27\x5b\x34\x4c\x3f\xff\x77\xdb\x07\xe7\x08\xc3\x20\x8a\xe6\x6a\xf8\x87\x55\x17\x04\x54\xef\x27\x67\x3f\x02\xf4\x95\xff\x0a\x01\xaa\x34\x1c\x9a\xc6\xd1\xbb\x49\x3e\x9c\x2e\x43\x0a\x38\xbe\x07\xd5\x61\x86\x96\x6b\xef\xfc\xae\x2a\xe2\x11\xb7\xc3\x5f\x77\x6d\x82\x2c\x37\x83\xc8\x94\x2b\x5c\x4b\x1a\xdc\xd6\xa5\xd3\xdb\x9a\xd0\x26\x89\xbb\x86\x9f\x26\xbb\x5e\xfc\xa9\xf8\xe1\xad\x6f\x9f\x2e\xd3\xc6\xbd\xa1\xd3\x35\x45\x36\xf0\x3b\x8a\x87\xfb\x77\x9a\x26\x3c\xb2\x61\xb2\x22\xe9\xd9\x26\x75\x96\x36\x2f\x81\x90\x98\x97\xef\xcf\x3e\xed\xc7\x02\xde\x0c\x3c\x74\xf3\x84\x96\x8e\x6e\xad\x95\x5e\x1e\x91\xf3\x23\x18\x13\x56\x90\xa1\x6c\x04\xfe\xec\x9c\xa6\x26\x9e\xe2\x78\x05\x41\xe1\x8d\x40\xa5\x23\xdb\x81\x4d\x47\x01\xf4\x22\x22\x3e\x89\x4b\xe8\xc9\xc3\xb6\xdd\x9e\xa8\x87\xf7\x78\xa2\xf8\x20\x4f\x29\x36\x15\xc4\x7f\x48\x9e\x31\xe9\x84\xf7\xb3\xa7\xb3\x35\xf8\x9a\xff\xf2\x8b\x6d\xb3\x6c\x53\xc3\xc8\x3f\x47\x1e\xe4\x58\xf7\x2e\xd5\x1c\xdb\xd1\xa3\xed\x41\x9a\x10\xee\xad\x7c\x4a\x18\x10\x81\xd5\xe1\xe3\x26\x5e\x26\x6a\xdc\x80\x47\x63\x6e\x8e\x7b\x74\x98\xfa\xc1\xb0\xd2\x0d\xba\x7e\xa7\x9d\x52\xde\x18\xfe\x68\xdc\xc0\x96\xf0\x85\xf6\xd0\x2c\xc3\x7c\x31\x8c\x08\x0b\x5a\x30\x45\xba\x69\x16\xf7\x93\xe9\xad\x24\x2c\x0c\xd5\xb8\xaf\x95\x66\x29\x66\xe3\xff\xef\x7a\x0e\xfd\x22\x0d\x53\xb6\xe4\xa8\x12\xf0\x0b\xe5\x93\x60\x2b\x06\xee\x73\xed\x95\xec\x95\x96\xaa\x86\x5f\x50\xfd\xaf\x3a\x11\xc0\xc2\x4c\x3b\xb2\x59\x26\x94\x0e\x5c\xd4\x09\x54\xc0\x7f\xd6\xcd\x8d\x74\x4d\x14\xad\x0e\x93\x44\xcc\x7d\x93\xdc\x67\x13\xe9\xdd\xd0\x9a\x65\x3d\xc4\x7a\x7c\xa2\x98\x41\x8e\xab\xf1\xdf\xbe\x19\x8d\xf1\xd5\x52\x35\x55\x44\xe6\x57\x34\x59\x68\x18\x9b\x68\x17\xfd\x25\x1e\xd8\xdd\xc0\x37\xa2\x39\xf1\xc2\xab\x38\x1f\xa8\x47\xb1\x63\x8d\x96\x3f\xb3\xdf\x62\x77\xed\x5b\xf3\x93\x49\x7b\x55\xc1\xbc\x6b\xa3\x28\x4b\x8a\x1c\x6c\x9e\x42\x96\x46\x3f\x29\x6c\x69\xde\xdb\xfc\xed\xbf\xfd\x0b\x2d\x15\x89\xac\x2b\xc9\x98\xf5\xe0\x19\x85\x7b\x5c\xb4\x71\x9f\x18\x14\x94\x66\x6f\x4b\x51\xd3\x28\x1c\x69\x6a\x4d\x1e\x2e\xdb\x29\xcd\xb2\x4a\x4b\x54\x60\x9e\x0a\xe6\x7a\x56\xa9\xdb\x0c\x9f\xaf\x4c\xdb\x70\x8a\x28\xfc\x9d\x6e\x1e\x8a\xd9\xa8\x7d\x6c\x77\x55\x83\x60\xaf\xaa\x36\xf9\x72\x98\xe6\x85\xc8\x1f\xa2\xc4\xb1\x01\xa4\x3d\x9f\x34\xb8\xa6\x97\xdb\xfd\x22\xee\x19\xcc\x1b\x34\xf2\x93\xd6\x63\xf3\x17\xdb\x2b\xa1\x8d\xfa\xae\x6c\xe5\x18\x54\x3d\x9b\x6a\x0d\x61\x2d\x0e\x2d\x2e\x7a\x91\x6c\x6d\x44\x44\xf7\x55\xd1\xf9\x35\xc5\x32\xfe\xbe\x6e\x29\xdc\x56\xd8\x3c\x28\x37\xc2\x89\x4b\x61\x56\xf1\xd6\x7e\x5f\x01\x60\x6e\xaa\x81\xb7\xd4\x66\x79\x1a\xf6\x40\xed\x5d\x2e\x01\x46\xad\x56\x10\xac\x4d\x02\xe9\xa9\xed\x26\x45\xcc\x94\x17\x6e\x98\xc1\x4d\xab\xb2\x4e\x04\xc2\x89\xb7\xe8\xc7\x71\xcd\xe7\x55\x1b\x79\x98\x64\x39\x26\x6f\x61\xaa\x7e\x99\xf6\xba\x5b\x2c\x8e\xcf\xe8\x87\xf4\x30\xf8\x58\xd3\x67\xeb\x4d\x95\xa4\x4b\x76\x84\xa6\x94\x2a\xbb\xb9\x1a\x9c\x26\xc9\xb6\x8b\x7b\x2b\xe6\xae\xfc\x55\xa9\x85\xd3\x43\x00\x62\x66\xfb\x9a\xca\x24\x91\x9a\xe1\xe5\xdc\x22\xbb\x47\xa5\xbf\x77\xff\x03\x2a\xbc\xc1\x18\xfc\x64\x47\xd1\x8f\x6e\xe2\xf1\xf3\x7c\x26\x3d\x01\x6c\xe3\x13\x70\x48\x88\x57\x1f\x6b\xf5\xbc\x57\x42\x58\x3e\xcc\xb6\x5f\xa2\x42\x07\x1f\x37\x89\x92\x98\x81\x83\xab\x62\xb3\xde\xa2\xcd\x28\x9c\xfe\x2d\x25\x54\x57\xc7\xee\xbd\xdc\xee\x0d\x4d\x46\xd8\x89\xf2\x8e\xb1\x64\xee\x2a\xee\xd1\xbb\x6a\xee\x7d\x64\x7a\xbd\x61\x68\xd2\x24\x32\xbc\x3b\xdd\x88\x89\x07\x9c\x5c\xf1\x83\x14\xfd\x51\x98\x7b\xb6\x78\xce\x6d\x2b\x79\xae\x7f\x6f\xdd\x22\x1d\x64\x9a\x80\x66\xa2\xca\xea\x95\x11\x2c\x6b\x96\xf6\x55\xd4\x4b\xa6\xbc\x6a\x30\x06\x11\x91\x8c\x4c\xad\xf9\x4e\x2f\xf0\x68\xa8\x3c\x3f\x0c\x54\x15\xed\x3c\xd0\x54\x4e\x19\xe6\xe0\x9c\xb4\x28\x03\xc5\x90\x3a\xe1\x89\x1a\xfe\x33\x45\xbe\x7b\x5e\xa3\x01\x2f\x37\xf8\xd8\xf6\x62\x92\xe6\xc3\x29\x1f\x41\x02\xdc\x87\x0d\x01\x05\x6e\x61\x3f\xff\x49\x9f\x97\x45\xe5\x3b\x21\x5e\xef\x30\x91\x69\x48\x19\x96\x50\x83\x13\x4d\x52\x4c\x59\x31\x1a\x85\xf9\x94\x67\xc1\xfb\xe1\x8f\x2a\xec\x51\x2d\xc7\x2c\x7d\x4a\xef\x41\x1b\x8d\x49\x14\x84\x05\x85\xb4\x7c\xd4\xc7\x13\x95\x06\x7c\xcc\xa5\x57\x94\xcb\xfe\x3e\x42\x2c\xa7\x70\xec\x65\xa3\x2f\xa1\x60\xe6\x74\x90\x9d\x10\xc8\x99\xc0\xcb\x6b\x32\x0b\x28\x62\x3c\xf8\x1b\xd8\x48\x46\x3b\xa1\x06\x09\x1c\x32\xf2\xf8\xef\x6b\x41\x86\x53\x81\x27\xc2\xd8\xee\xda\x06\x51\x11\xf7\x86\x96\xa7\xc4\x50\x62\x7a\x5b\x29\xc1\xbe\x5d\xb3\x63\x87\x0e\xb5\x97\x6d\x1a\xe6\xa9\x01\x59\x00\x0b\x96\xe0\xae\x45\xbd\xc4\x35\x25\x44\x5f\x51\xe1\xc3\x51\x79\xe1\x63\xc7\x54\x61\xc6\xe3\x34\x31\xbd\xa1\xb0\xa8\x02\x1f\xc1\x23\xeb\x52\xd9\x2f\x1f\x39\x4a\x1f\x8d\xb2\xed\x34\x24\x22\x44\x0c\x42\x96\x4a\x9d\x1b\xa1\x51\xf5\x76\xe3\xbf\x3c\xf0\xc5\x29\x95\x20\x6e\x5b\x53\xa9\xc6\x47\x64\xb6\xb0\x2f\xa6\x3b\xcf\x54\x33\xa1\xb9\xb9\xf6\xcf\xee\x6a\x69\x29\xf8\x83\x73\xdc\x2a\xe0\xc0\x03\xfd\x47\xee\xc7\x21\x3a\xbd\xa8\x6c\xc4\xfb\x13\xa5\x13\xc4\xfb\x91\x4f\x9a\x64\xb0\xa8\x1b\xe6\x99\xc8\xb0\xa2\xa5\x02\xf1\xa4\x02\xc3\x47\x51\xb2\xd2\xf2\x1d\x2f\x30\x02\xf2\xb1\x9b\x89\x1e\xd9\x34\x0d\xa3\x68\xda\x13\x71\xdc\x57\xc3\xf6\xf7\x70\x03\x8e\xe9\xe4\x88\x60\x1c\xde\x6f\xa0\x06\x29\x33\x9a\x71\x85\x72\xef\x47\x2a\xae\xf9\x51\x2d\x42\xf8\x39\xa2\x94\x1d\x87\x29\xcf\x53\xa0\x5a\x80\xd1\x1b\x3e\xae\x7d\xe6\xa5\xd9\xc3\xed\xae\x1d\x84\x31\xd3\xd0\x0b\x63\x3f\xbd\x2c\xa1\x0e\xf0\x15\x9a\xd8\xae\x64\x7b\xfd\xe8\xd9\x4e\x74\x23\x5c\x96\xec\xe0\x70\x9c\x8a\x62\xef\x9d\x09\x54\xaf\xe4\x0c\x2d\x4e\x40\x06\xde\x98\xf8\x82\x2c\x86\x31\xb0\x8c\xb8\xcc\x2b\x44\xc7\xe5\x53\xe2\x6f\xc2\x26\xc0\xcd\x7c\xb7\xc9\xdc\xa4\xb6\x6b\xa3\xff\x0f\x31\xb6\x26\x1d\x49\x4e\x62\xb8\xff\x2f\xcd\x5a\x5a\x43\x7e\xe6\xd6\x35\x45\x4d\x37\xb2\x7b\x5a\x8e\x46\xec\xfa\xc4\x03\xa5\x79\x62\x0e\x8f\x03\xb5\x17\x74\xe2\xee\x2a\x6d\x99\x7b\xda\x7c\x6d\xeb\xb4\x5e\x98\x75\x4f\x00\xa6\x0c\xff\x72\x92\x9e\x8d\x8c\x6c\x37\xf0\x71\xd9\x63\xe3\x24\xcd\x2d\xa6\xc5\x39\x8a\x51\x7c\x0b\xe7\x1b\x39\x1c\x57\x92\x74\x09\xb1\x8d\xa0\xcd\xca\x87\x8b\x68\x80\xc9\x71\x5d\xb6\xeb\x10\x3d\xd7\x27\x8a\x1b\x41\x73\xfe\xa7\x61\xb6\x94\x11\x68\xdc\x09\x2e\x1f\x3a\x24\xf5\x1e\x8a\x9a\x50\xa9\x3f\x85\xe5\x84\x3d\xcc\xdd\x26\x3e\x51\xf9\xe1\x09\x37\xc4\x95\x9a\xe5\xaa\xde\x36\x13\xbf\xcb\xaa\xf9\x24\x5d\xe5\xa4\x97\x33\xf8\x19\x4b\xe7\x9a\x96\xa7\xbd\xd6\x44\x86\x12\x59\x44\xeb\xc8\x86\xce\x29\x01\xe2\x73\x9f\x58\xe7\x09\xe3\xac\x48\x6d\x5a\x51\x52\xab\x90\xc1\x3e\xd6\x23\xa7\x45\x9a\x8c\xed\xbe\xf2\x7b\x61\xfa\xce\x2b\x8c\xe9\x3f\xc2\x22\xc3\xda\xfe\xd6\x44\x8d\xb6\x9e\x9d\x54\x68\xc1\xbc\x2a\x08\xcb\x35\xa2\x92\xfe\x98\x57\x0c\x30\x3e\x17\x61\x0f\x91\x3f\x70\x20\x00\xab\xf3\x7f\x68\xb9\x2a\x2d\x77\x72\x51\x75\x88\x33\x6b\x22\xee\x83\x61\xd5\x83\xc6\x92\x8f\x55\x6f\x34\xcb\xd3\x84\x28\x21\xa7\xca\x80\x46\x10\x54\x2d\xa7\xc5\x77\x9e\x56\x2e\x7c\xfd\x7d\x47\x0a\x17\xc6\x79\x9a\xf4\x8b\x9e\x8a\x20\x64\xd2\x56\x81\xa4\xbc\xca\x4d\x9a\xac\x9a\x28\xc7\xc0\xb3\x83\x46\x39\x9b\x7a\xa2\x99\xab\x72\x31\xcc\x63\x9b\x65\x2d\x72\x49\x32\x4e\xa2\x46\x4b\x54\xe9\x7c\x31\x4c\x47\x9c\x98\x20\x14\x01\x2b\x1a\x6a\xec\x37\x75\x7d\xc7\xeb\x80\xae\x20\x4d\x2f\xaf\x5d\x51\x19\xca\x5c\x63\x5d\xff\xf8\xc8\x0c\x32\x4e\x57\x4e\x74\xb3\xc5\x8e\x6a\xef\x4a\x85\xf7\x87\x68\x3e\x2c\x0b\x44\x0a\x3d\x81\xe6\x2a\x68\xcc\xf0\xfa\x76\x1c\x59\x27\x83\x2b\x7a\xe7\xaa\xa7\xbc\xde\x30\x86\x38\xdf\xee\x87\xd9\x48\x48\xc4\xa4\x69\xf3\xd6\xc4\xaf\xd4\xb7\x3e\x51\xbf\x3c\x0b\x8f\xe5\xab\x53\xad\xd9\xc3\x9b\xd7\xa8\xf1\x01\x48\xd3\x03\x4d\xa1\x72\xae\x0e\x55\xf9\xf2\x8b\x6d\x93\x4d\xf9\xe6\x08\x9a\x0a\x08\x88\x3f\xa2\x35\x23\xef\xd6\x57\x0f\xd1\xd3\x99\x52\x84\x65\x3f\x9c\x28\x52\x88\x93\xea\x49\xfe\x48\xa5\x9d\xc9\xcf\x74\xd3\xd0\xc6\xad\x0a\x48\xba\x82\xa5\x56\x30\x65\xbb\x18\x3a\x39\x60\x16\x56\xa7\xaf\x15\x91\x75\x15\xd2\xfc\xd2\x97\xa6\x34\xbf\x32\x70\x3a\x9c\x96\x75\x14\x7d\xc9\xbd\xc9\x3e\xf7\xfd\x2b\x36\x6f\x95\x0f\xc9\xb1\x0d\x39\x77\xb1\x51\x2b\xc2\x1d\x38\xd0\x1e\xa7\xc9\x72\xd8\xb7\x3b\x7c\x9f\xf4\x91\x62\xec\x3e\x37\xf1\xb9\xe8\x3a\xd9\x4e\x34\x65\xa6\x3a\xaa\x63\x7e\xa5\xc6\x2c\x37\x7b\x98\x98\x03\xa7\x15\x89\xf0\x5d\x85\xc0\xbb\x18\xf8\xdd\x7b\x55\x75\x71\x6e\xbb\x95\x9f\x26\x86\xa3\x3e\xe7\x94\x17\x66\x9c\x5a\x41\x43\x16\x38\xb4\x8b\xf9\x6a\xab\x42\x84\xed\x2b\xe1\x57\x15\xfc\xb3\x5b\x7a\xdf\xac\x6b\xe2\x25\x64\x99\x1c\xe8\x29\x7c\xc8\xf9\x40\xeb\xde\xa5\xcb\x76\xd5\xf6\x77\x68\xf0\x9b\xaa\x7a\x33\xb7\x92\x73\x87\x9e\x74\x09\xbd\x77\x86\xa2\xa8\x42\xcc\x62\xd8\x2d\x6d\x79\xf9\x97\x6e\x6e\xc8\x81\x39\xbf\x3b\xd9\xd2\x9a\x3b\x7a\xb4\x4c\x52\x9f\x52\x02\xae\xdf\x81\xa5\x86\xb9\x03\xa9\xa5\x08\x04\xf8\xb4\xf7\x89\x35\x8f\x66\xfd\x07\x1a\x77\xf3\x1a\xd5\x27\x1d\x35\x59\xe9\x00\x90\xc8\x1d\x27\x21\x2a\xb4\x60\x80\xa0\x40\x66\x7e\x99\x7c\x01\xc2\xf5\x87\x13\x45\x96\xb2\xa7\xa3\xe8\xba\xee\xe8\x06\xdf\xf7\xe8\x86\x50\xd7\xbf\x03\x4a\x3e\xd1\x65\xde\xba\x4e\x9e\x6b\x67\xb9\x1d\xb1\xeb\x95\x26\x18\x3d\x38\xe9\x8e\x3d\xe9\xf1\x8d\x91\x49\x2d\xeb\xc9\x63\x57\x9d\x9c\xa8\xb1\xa5\xb3\x4a\xd8\xf6\x6a\x05\xfa\x53\x33\x93\x47\x8f\xb6\x4d\x37\x4e\xd2\x91\x01\x21\x35\x5e\xfb\x5b\x6a\x09\xbc\xe5\xa9\x0f\xd3\x24\xb7\x99\xe3\xbb\x96\x06\xbc\xee\xc6\x2b\x41\xf7\xd8\x8c\xc2\x6e\x4b\xd5\x72\x2a\x35\xe8\x0b\xc1\xd3\x4a\x9a\x77\xd9\xc6\x84\x03\x39\x32\xd3\x48\x6e\xda\x40\xd6\x18\x93\x46\x99\x82\xd1\x94\xaf\x4c\xd0\x1d\x75\xf0\x38\xb1\x4c\x2a\x0a\xbb\xd7\x03\x3f\x9f\xf8\x7a\x75\x34\x33\x7c\x95\x0b\x1a\xaa\xfe\xe3\xdc\x51\xed\x52\xe6\x17\xe6\xdb\x5d\x9b\xef\x28\x57\x06\xfa\x8a\xef\x4d\x7c\x9b\x0e\x62\x22\x48\x53\xb6\x77\xbc\xfe\xc9\x1f\x4d\xd4\xf0\xf2\x55\x55\xfa\xe8\x25\x59\x4e\xac\x6c\x52\xcf\xfa\x11\x7d\x1b\xde\xde\x34\x61\x98\x90\xfc\xde\xa5\x8e\x08\x82\xb2\x4b\xf4\x2b\x9c\x46\x62\xc9\x20\x26\xdc\x0e\xfc\x27\x0a\x46\xd7\x9a\x50\x5c\x71\x32\x2a\x52\xd3\xd2\x03\x00\x6a\xac\x50\xa7\x60\xc3\xa4\x20\x5a\xe0\x83\x42\x60\x75\x73\xe2\x7b\x15\x37\x6b\xee\xea\xd0\xa1\xf6\x38\x89\xc2\x3c\xec\x85\x26\x56\x13\x10\xeb\x81\x6e\x45\xfa\x09\xfa\xb1\x4d\xb3\x24\x36\xd1\x4e\x65\xc9\x61\x43\x44\x94\x87\xf2\x18\xad\xf0\x04\x4b\xfc\x7d\xc5\xf1\xbb\xa1\xd5\x94\xae\x36\x76\x39\xca\x88\xb0\xa5\x64\xc7\xfe\x78\xe2\x47\x7e\xfe\xb8\x81\xae\x9d\x84\x01\x4d\xaf\x4a\xd2\x78\x91\x7e\x9f\x8f\x15\x66\x8b\x51\x10\x53\xbe\xac\x75\x0f\xa5\x0f\xdc\x0f\xe0\xa4\x82\x8e\xa8\xcf\xb4\xf6\x43\xe9\x9d\x22\x47\xbd\xaf\xe7\xbc\x10\xdf\x4b\x65\xdb\xcf\x03\x40\x49\xae\x35\xb7\x05\xa2\x21\x4d\xf2\x67\x55\xf2\x34\x4a\x8a\xc5\xc8\x0c\x2c\x0a\x42\x08\x04\x2e\x28\x8a\xd4\x07\x74\x5b\x32\x77\xea\x77\xf2\x22\x61\x28\x95\xbd\x5b\x57\x5e\x71\xbd\xee\x48\x67\xdb\x63\x93\x2e\x89\x5b\xe7\x81\x9e\xca\x70\x4f\xc3\x74\x0e\x25\x82\x91\xd7\x63\x85\xf9\x85\x4e\x35\xa2\x0f\x8c\x08\xc0\x90\x3f\xd4\xc3\x33\xc9\x72\x68\xf3\x27\xca\x7f\x64\x35\xd1\x40\x09\x56\x9c\x20\xca\x27\xa9\x5b\x7b\xbf\xfb\x38\xd0\x79\xee\x44\x0d\xaf\x42\x5d\x08\xee\x7c\x27\x76\x90\x6c\x54\xb2\x66\x0e\x78\xec\xfb\x30\xbf\xd2\xc0\xa0\xfe\x62\x3b\x4e\xd2\x7c\x68\x4d\x96\x4f\xf9\x5a\xe6\x3d\xc5\x26\x88\xe1\x10\x21\x80\x57\x73\x64\x68\xa6\xee\x52\x9e\xee\xde\x44\x33\x87\x78\x18\xdc\x15\x72\x49\xae\xb9\x54\xde\x91\xa3\x1a\x71\x2e\xbf\x45\xd1\xb5\x70\x85\x35\x18\xd3\xd4\x46\xab\xd3\x1a\xae\xe1\x67\x11\x6e\x23\x97\xf1\xc4\x3c\x33\x02\xf6\x68\xea\xbc\xf5\x92\x3c\xe7\xde\x1e\x22\xb8\xe3\x2a\x9a\x3b\xae\xe6\x5f\x68\xa7\x84\x20\x70\x3a\x32\xe3\xf8\x14\x94\xd0\xe2\x86\xcb\x48\x97\x93\xb0\xc7\x43\xfd\x08\x8d\x2e\x2a\xaa\xc9\xfd\x1d\x9f\x98\x6c\xea\xf9\xcb\x2b\x4d\x4c\x1e\x79\x6a\xe2\xac\x67\x62\xd3\x97\xaa\x35\x70\x5a\x6c\xe4\xf9\x24\x50\x69\x81\x49\xc7\x34\x54\xa9\x69\x4d\xa6\xd6\xd4\x70\xda\x54\xc7\xcb\x59\xb2\xbf\xe6\x93\x5a\x11\xaf\xf4\x15\x24\x58\x27\xe4\xc1\x22\x06\xa8\xc8\x2b\x7c\x43\xab\x67\xa2\x91\xdb\x0d\x22\x68\xd0\x72\x9a\x22\x28\xcc\x7b\x26\x3c\xdf\xbe\x59\xb6\x71\x61\x41\xa7\x8c\x92\xf5\x63\x35\x38\xb0\x86\x44\x15\xdd\xb3\x6d\x6b\x0d\x82\x0a\x63\x13\xb1\x85\x74\x22\x58\xae\x86\xb3\xde\x80\x98\x26\x29\xd8\x28\x14\x52\x2d\xb7\x46\x15\xeb\x8d\x6e\x1e\x8f\x8a\xd1\x94\xd2\x36\xbb\xa0\xf8\x9d\xae\x29\x21\xa9\xd7\x03\x0d\xe9\xb1\xe9\x60\xb5\xa5\xc4\x99\xee\x21\x6f\xe5\x13\x9d\x48\x13\xbe\x96\xba\x66\x92\x54\x11\x48\x03\xcf\x8c\x39\x6e\xf8\xa4\x92\x6e\x79\x6b\xd7\x1b\x86\xe3\x8c\xc0\x20\xd2\xef\x54\x2e\xe9\xb7\x26\xbe\xd1\x09\x1a\x0f\xfe\xff\x81\x6a\x90\xc2\xb9\xcb\xd8\x77\x03\x8a\x2d\xb5\x34\xca\x42\x4b\xdf\x59\x26\xdf\x5d\x53\xa6\x37\x8c\xed\x38\x9f\xf2\x84\x1e\x1b\xac\x13\x26\x84\xb8\xd4\xb1\x60\xa1\xcc\xc6\xa6\x9c\x3d\x36\x0e\x49\xab\xda\xe1\xc2\x99\xe7\x15\xd7\x7a\x4e\xf1\x2e\x32\x72\x51\x04\x1c\x3f\xe5\xa2\x3e\x3b\x36\x61\x9f\x9c\x9a\x42\xcc\xca\x2c\xcc\x3d\xdd\x96\x54\x7e\xa9\x1b\x25\x09\x0b\x37\xb1\x66\x12\xbc\x19\xec\x2a\x24\xcd\x9d\x98\x92\x17\xfc\x9d\xea\xd4\x31\x29\x58\x3a\xbd\xd0\x72\x9f\x59\x74\xec\xf4\x94\x58\x13\x7b\x7a\x2f\x4a\x32\x71\xdc\x3c\x03\x81\x4c\x44\x06\x22\x9e\x74\xf5\x91\x7e\x98\xda\x1e\x6a\x90\xb0\x81\xb0\x99\x7c\xbc\xa6\x33\xd6\x71\x94\x94\x89\x7b\x69\x83\x91\x7b\x7f\x2f\xf0\x63\x46\xdf\x6b\x12\x58\x5e\x36\x3d\xaf\x3d\x23\x98\x89\x4a\x59\x6f\xeb\xd5\xbb\x72\x57\xb6\xc3\x63\x6b\xcf\x54\x4b\x81\x6a\xd6\x7e\x5f\x47\xfb\x7c\xbc\x1d\xa1\xd4\xf6\x61\xb6\xcd\xf2\x70\x64\x72\x14\x50\x01\x6f\x78\x6d\xa2\x78\x96\x60\x5d\x9c\x3e\xd7\x41\xa1\x53\xfd\x33\xad\x58\xc1\x34\x87\x1c\x24\x60\x3f\x09\x14\xa3\xe5\xbf\x2a\x50\xd4\x6e\xeb\xae\x61\xd2\x0f\xb3\x71\x91\x97\xab\xd1\xa9\x44\x7f\x1b\x2f\x1f\xb1\xc4\x7f\x4b\x72\x3e\xdc\xa5\x86\x4d\xbf\xe1\x8a\x58\x71\x12\x8f\x6d\xba\x98\xa4\x23\xd7\x72\x41\x89\x0e\x39\x3a\x1f\x3b\x28\x5c\x56\x8c\x6d\x3a\x32\xe9\x92\x45\xdc\x8f\xe7\x01\x88\x35\x1f\x37\x54\x66\xda\xa6\x6f\xe3\xa4\x27\xd3\xbe\x52\x2a\x54\x65\x43\xe7\x96\xa2\x64\x59\xf0\x66\x48\x1b\xff\x74\xa2\x7b\x12\x74\x5b\xc8\x7f\x4f\xeb\x21\x80\xd8\x1e\x4b\x52\xd3\xe5\x61\x76\xd9\xf1\xba\xd1\xae\x48\x14\x69\x7a\x05\xce\x67\xde\x55\x68\xc8\xcc\xba\x62\x89\xc3\x01\x9c\x08\x14\x01\xa5\xa7\xb0\x1b\x86\xd9\xd8\xc4\x61\xaf\xca\x14\xfb\x64\x47\xa9\x79\xb2\xdf\xc4\xc9\xb6\xb5\x26\xda\xac\x3c\x19\xd8\x7c\x68\xd3\x69\x5f\x76\xbc\x4d\x29\x17\xbc\x30\xc8\x34\x44\xe1\x95\x8c\x92\xcc\x10\xff\x84\xe2\xeb\x1a\x8d\x6c\xda\x0b\x89\xf4\x1c\xbb\x52\x49\x3a\x49\x29\x76\xdb\xda\x93\x7a\x4a\x96\xd2\x36\x97\x42\x63\x90\x9c\x8f\x1b\xfa\x09\xf3\xed\x2c\x1c\x15\x91\x11\x22\x57\x51\x7e\x57\xd3\x9f\xe7\x94\xf4\xc0\x38\x4d\x5e\xb1\xbd\x3c\xdb\x51\xbe\x0a\x11\x23\xa1\x07\x23\xa0\x11\xba\x4a\x64\xac\x77\x15\xc7\xca\x77\x03\xa5\xbc\xff\xaf\x6a\x7b\x9e\x54\x09\xd2\xfe\x4a\xc2\x20\x3a\x84\x52\xaf\x07\x0a\x50\xfe\xfa\x64\x4b\xe7\xed\xc0\x81\xf6\xe7\x9e\x6a\xbd\x20\x58\xe2\x07\x9a\x03\xf4\x2c\x55\x2a\xe0\xaa\x38\x5a\x90\x1a\x32\x6d\x40\x6c\xe6\x7b\xb4\x01\xb9\x9f\x4b\xeb\x1c\x5e\xfe\x3d\x42\x0d\x88\x78\xb4\x02\xf1\xaf\x73\xff\x16\xd1\xe8\x09\x35\x69\xfa\x2e\x5c\x18\x6e\x16\xdd\x10\x98\xe7\xf5\xc0\x27\xb1\xf7\x68\xf1\x61\x01\xbc\x8f\x7b\xc3\x37\x6d\xaa\x6a\x60\x69\x5a\x0d\x73\xe0\xc2\xb4\x6c\x5b\x53\xb4\xa7\xdb\x3a\x0e\x21\x90\x92\xda\x10\xd3\x6c\x62\x15\x63\x10\x96\x8f\x1b\x5f\xb7\x1d\x91\x39\xb6\xac\xe3\x88\xb4\x75\xdb\x9a\xa6\xde\x68\x20\x27\x9b\x6d\x9b\x6c\x58\xa4\x59\xce\x41\x20\xb6\xe9\x5b\xba\x8f\xf0\x56\xd3\x98\x00\x92\xd4\xd8\x46\xc8\xa0\xb8\x14\xa8\x4a\xf5\x97\x14\x99\xf6\x83\x26\x21\x97\x6e\x6a\x89\x69\xa1\xa5\xda\xa7\x55\xa0\x9f\xa7\x85\xe8\x15\xb4\x94\x19\x32\x35\xef\x40\x9b\xde\x49\x7d\x5f\xd1\x09\x9f\x0f\xfe\xe3\x86\xc2\x63\x48\x53\x73\x7f\xef\xe7\x3d\xc5\xc4\x94\x62\x11\x85\x94\x9b\x08\x5e\xb7\x94\x5e\x91\x9b\x0e\xf9\x3b\x4f\xfa\xf8\xfc\x2a\x72\x70\xe9\x51\xd3\xd3\x02\x6d\xea\x7f\xc2\x30\x4c\xec\xa1\xe9\x8e\x17\x12\xd9\x0f\x7f\xc1\xdd\xfb\x89\xeb\x91\xfd\xe9\x4f\xac\xa9\xb1\xd0\x9d\x04\xfc\x64\xe0\x78\xa0\x18\xd1\x6e\x4c\xd4\x0e\xfc\xe5\x40\x85\xa5\xa8\xc6\x8a\x66\x8e\x1a\xb1\x45\xbc\x8a\xc7\xf9\x93\x6b\x4f\xa9\x1e\x0b\x01\x50\xa0\x48\xaa\xf5\x18\x25\x41\xa5\xad\xc4\x41\x8d\x26\x53\xbc\xe7\x7c\x4a\x3f\x5c\xb6\x69\x16\x2e\x86\xb6\x8f\x72\x2e\x92\xd1\xcd\x40\x61\xad\xf7\xad\x79\x30\x37\x46\xf0\x64\x7a\xaa\x21\xe9\x25\x6c\xfb\x72\x68\x57\xb0\x41\xdc\x64\xb7\x22\xef\x6f\x5a\x87\x59\xd8\xb7\x51\x18\x5b\x9e\x16\xc0\x65\x3e\x56\x19\x1f\x0a\xc9\x72\xdc\xe0\xe6\x92\x5e\xaf\x48\x3d\x1b\x3f\x1b\x10\x05\x7c\xbc\xe7\xd4\x3f\xc6\x91\x59\xdd\xe5\x0b\x31\xa7\x60\x7f\x9c\x34\x5e\xf9\x46\x58\xf3\x9f\x76\xab\x12\x13\x90\x11\x9f\xf3\x6a\xde\xee\x89\x8e\x5f\xbe\x9b\x6a\x52\xbd\x1f\x66\x66\x20\xfd\x17\xb1\x68\xe8\x6c\xf1\x71\xd3\x83\x48\x6d\x56\x44\xb9\x5b\xd5\xc2\x06\xeb\x6d\xee\xb6\x35\xef\x3c\x5a\x35\x62\xac\xf2\x0d\xf4\xad\x01\x60\x00\x79\xc7\x3b\x81\x7f\x65\xa0\x91\xde\xbc\x46\x1c\x7b\xd7\x9a\x60\xcf\x2b\xd6\xc0\x2b\x3a\x82\xcd\x87\x8a\x88\x19\x01\x15\xaa\x6f\xdf\x42\x21\x48\x86\xbb\x74\x46\x54\xf4\x2c\x09\x5c\x3b\x82\x15\x27\x4a\xf0\x55\x58\x55\x2c\x78\xd4\xb7\x99\xa0\x5e\xe1\x63\xee\x04\x4a\xfd\xf6\xfd\x5a\x81\xf2\xd0\xa1\xb6\x8d\xfb\x28\xb2\x8b\xec\x97\x82\x93\x6e\xd4\x3e\xf0\xc2\x6c\x7b\xc5\x46\xa8\x06\x4b\xd7\xbc\xbc\x3c\x69\xb3\xfb\x8a\x52\x36\xb6\xe4\xcd\xb9\xc0\x81\xae\x36\x6c\x8a\x28\x57\xb4\x1c\x71\xdf\x39\x55\xf7\xef\x26\x2b\x4b\x36\x55\x1a\xa0\xbf\xa5\xf9\xe7\x7f\x2b\xf0\xe4\x34\x61\x14\x15\x59\x9e\x9a\x32\x68\xd4\xe3\xb5\x6f\x28\xfd\xe0\x5b\x4a\xd1\xfc\x16\xbe\x88\xff\xa8\x82\x15\xcb\x53\xb3\xc3\xcb\x48\xfc\x10\x0b\x54\xa8\x2e\xe9\x89\xa0\xea\x06\x1a\x1a\xe6\xf8\xa0\xd5\x80\xe3\xdf\x76\xb0\xe1\x51\xb9\xe6\x22\xb3\xca\xb7\xa0\xa7\x74\x85\xab\x5a\xc5\x18\x10\x98\xc3\x06\x07\xb6\x77\xdb\x9a\x07\x4c\x6f\xeb\xf8\x64\x6f\xc5\xc4\x7d\xc3\xb7\x89\x2c\x0c\xa3\x93\x78\x2c\xa8\xce\x21\x0a\xfd\x50\x53\x04\xfe\x78\xf2\x49\x2a\xc7\xe5\xab\x29\x93\x67\xe1\xce\xe5\x19\xd9\x89\x82\xb3\x9d\x6e\x18\x9c\x5e\x68\x87\x71\x2f\xf2\x02\x6c\x3c\xeb\xac\xc2\xdb\x4b\x0a\x76\x5b\xe4\x43\x33\xa2\x9e\x90\xf0\x4a\xe3\xc7\xe4\xac\xe5\xa4\x79\x6e\xa8\x80\xe1\x92\xae\xb8\x7c\x5c\x4b\xdf\x16\x66\xda\xe3\xa4\xb7\x64\x45\xf5\x52\xe0\x0b\xbe\x2d\x71\xb5\x06\x9d\x9d\x3d\xdc\xce\x93\x63\x61\x2f\x89\x92\x81\x54\xfb\xe1\x5e\xbe\x15\xf8\x92\xfc\xb7\x1a\xe3\x88\x30\x0e\xf3\xd0\x44\xd1\x6a\x4b\x6b\xfb\x03\x9f\x27\x34\x2b\xcf\x28\x57\x12\x67\x61\xe9\x98\xa7\x55\xa3\x1f\xe2\x7f\x02\xd2\xf6\x04\x75\xb0\x7e\xfc\x37\x8d\x8a\x7b\xa9\x1d\x99\x3e\xaa\x01\x78\x29\xac\xcb\xcf\x27\x6b\x0d\xb5\xf5\x5e\x32\x1a\x47\xa1\x9b\x25\x96\xac\xcb\xaf\xdc\x33\x0d\xdc\xcd\xf3\xed\x22\x0e\xf3\x61\x12\xf5\x1d\x82\xc2\x4d\x85\x94\x2f\x43\x02\x8c\x86\x1a\x4f\xb2\x6c\xd3\xa1\x29\xa2\x69\x55\x84\xb9\xaa\x76\xf7\x54\xc7\x8f\x8e\x6d\x68\x99\x9f\x53\x1e\x02\x3a\x48\xe2\xf0\x55\xe7\x72\x50\xb9\xc2\xb0\x32\x1f\x77\x7c\x09\xb4\x9b\x30\x7d\x95\x47\x7c\x11\x63\x80\xa0\xbf\x7c\x42\xde\x8d\x92\xde\x12\x3d\x3e\x27\x05\x73\x96\x42\x03\x3e\x56\x7d\xa6\x2c\x59\xcc\x57\x4c\x6a\x77\x29\x08\x80\xce\x60\xdf\x46\x70\xcc\x27\x1a\xbf\xf2\x3e\x02\x0c\x27\xcd\x32\x27\x2d\xc1\x8b\x70\xfd\x82\x27\x90\x7b\x4d\x6d\xb2\xb8\x48\x75\x3e\x6f\x20\x5a\x6b\x4a\x9e\xcb\xd7\x1e\xb2\x3c\x0d\xfb\x82\x7f\x42\x1f\xe2\xa2\xa2\x21\xbb\xd8\x24\xa3\x15\x9b\xf1\x30\x1f\x9a\x56\xeb\xf0\x97\x1b\xe7\xff\x9a\x66\x52\xba\xb6\x67\x8a\xcc\x2a\xc6\x0f\x50\x38\xf0\x71\xa3\x3a\x56\xd7\x9a\xbc\xca\x6f\xa1\x98\x30\x2f\x37\x39\xc4\x64\x14\x87\xdd\x02\xc6\x4e\x1e\x6a\xcb\x69\xcf\xbd\xdd\xb8\x28\xb9\xad\x68\xe2\x5c\xec\x14\x2a\xb8\xef\x06\xaa\x9c\xfb\xae\x7a\xb6\x03\xc9\xf0\x8e\xcc\xb8\x60\xb4\xfc\x11\x3e\x56\xb5\xbc\x41\x94\x74\xb1\x32\x5c\xe3\xe2\xe0\x9c\x6b\x5c\x34\xf4\xc3\xba\x45\xf9\xde\x68\x4f\xa1\x2e\xff\x16\xed\x29\x3e\x9e\x68\x13\xf0\x95\xc2\x42\x4a\x40\xed\x08\xac\x06\xd9\x1e\xf2\x8a\x17\xa3\x24\xf1\x53\x00\x5a\x6e\x86\x8f\x6b\x36\x58\x0c\xf8\xc8\xf4\x56\xa7\xfc\x1b\x43\xe1\x5b\x66\x37\xe9\xe9\x20\x17\x7f\xa4\x6a\x06\x61\x1c\x27\x63\xd3\x53\x90\x57\x90\xae\xf0\xb1\xab\xa7\x8c\xb3\xd5\xde\x30\x01\x5f\x1e\x8c\x25\x56\xf4\x5d\x85\x8f\xf6\xbc\x8d\xa5\x23\x89\x6d\x2e\x19\x93\x8b\xf2\x94\xe6\x96\xe2\x0c\xef\x9b\x91\x71\xf4\x73\x70\xab\xc0\xdd\xf2\xb1\xe6\xed\xb5\x34\xde\x19\xdb\xfe\xb4\x2f\xa1\xde\xd1\x28\x52\x0e\xc6\x5d\x77\xdd\xf7\xe1\xee\x55\xf5\x38\xf2\xe1\x6e\x2a\x3d\x88\x9a\xbf\x0f\x4a\xb8\x5a\xe6\x4e\x34\xfd\x1b\x0a\xaa\x58\x13\xff\x37\xf6\x39\x4c\xc7\x77\x27\x3e\x13\x7d\x54\x9d\x9b\x6b\x9a\x80\x4b\x8c\xe7\x8a\xc6\x0e\x99\xee\xf8\xc1\xac\xfb\x9a\x3c\xb4\xc6\xf3\xfd\xb9\x76\x64\xd1\x09\x01\x48\xe2\xb4\xd6\xfd\x3f\x5d\xd1\xa0\x7d\xa5\xc8\x72\x21\x5b\x85\x83\xf8\x81\x52\x9c\x3e\xab\xea\xc8\xef\xaa\x28\x24\xb7\x51\x94\x1b\xe6\xeb\xd8\xbc\x16\x20\xa2\x6d\xe6\x3d\x4e\x56\xd8\x39\x28\x42\x88\x97\xe5\x44\x8f\x57\xf4\x2c\xe8\xd7\x9b\xd9\xc3\x1b\x5c\xfa\x20\xf5\x53\x82\xec\x1f\x18\x53\xc7\x27\xb5\x0f\x1d\xfe\x32\xb0\xd3\x5c\x2c\x17\xe6\x5c\x8f\x8f\x6c\xb2\x8f\xb3\xed\x71\xb9\x58\x57\x15\x5d\x39\x6b\xad\xf0\x49\x63\x08\x20\x6a\xde\x0c\xd1\x46\x94\xc1\x0c\xf6\x28\x4d\x41\xfb\x7e\xf3\x5a\x03\x0b\x2a\xa1\x7f\x8b\x08\x46\x8c\x3e\x82\xd7\x7e\x23\x50\x00\x88\x1b\x4e\xda\x6a\xd5\xc4\xac\xaa\x3e\xef\x09\x0f\x3d\xb4\xea\x26\x56\x1b\x50\x87\xef\xaa\x6a\x8a\x1d\x75\x4d\x96\xad\xaa\x3a\xf5\x87\x81\x62\x19\xff\xb0\x76\x65\x44\xca\x99\xdb\xd4\x66\xb9\x6c\x47\x27\x6e\xe4\x85\x8e\x6a\x19\xe2\xc2\x4c\x3b\x1c\x8d\x23\x26\xe6\x3a\x22\x82\xa3\xa8\x54\xf0\xf1\x64\x9f\x5b\x5d\x45\x66\xf7\x12\xec\xcf\xe9\x0a\x78\xd6\xdc\x56\xa7\x34\x3e\x30\x11\x4c\xb5\x01\xa4\xc2\x87\x81\x1e\x5b\xa4\xbb\x07\x66\x06\x85\x7d\x07\x67\xf0\xe8\xf0\x27\x00\xf3\x72\x0a\x75\x8e\xc1\xfb\x22\x92\x2b\x6c\x81\x27\xd6\xf6\xeb\xf6\x5d\x34\xad\xaa\x6e\x7b\x29\x4c\xc1\x28\xef\x3d\x65\x90\x20\x66\x25\x46\xad\x49\x64\x34\x29\xd2\x29\x58\x0a\xe4\xfc\xb9\x42\x79\x70\xf1\x4b\xc8\x72\x1a\x98\x81\x17\xed\x8a\x0c\x24\x62\x09\x5e\xd6\xeb\xf1\xb2\x82\xb9\x75\xd3\xa4\xa5\x59\x5a\x79\xb8\x89\x4f\xb4\x1c\x6e\x12\xef\xf1\xd4\xfa\xcf\x74\x1c\xce\xfd\xd6\x33\x1d\x35\xf0\xb1\x73\x4d\x91\x8e\xde\x2c\x9f\xd9\xe6\x05\x0e\xd0\xe1\xd4\x3e\x9a\xa8\xb6\x0c\x14\x7e\x71\x87\xd3\x18\x1a\xc0\xc3\xaa\x2f\x91\x72\xcb\xf4\x43\x8c\x8a\xf1\x15\xbb\xb1\x3b\x45\x82\xe2\x18\xfb\x87\x5d\xc8\xb4\xa3\xca\x7c\x42\x97\x9c\x4f\x34\x93\x95\xc7\x79\x0a\x5a\x30\x5a\xb6\x48\x7c\x7f\x55\xd1\x8f\xfe\xaa\x22\x4f\xe8\x0d\x8b\x78\x49\xeb\xd2\x7e\xa0\x79\x0e\x3e\x00\xed\xb4\x3c\xb9\xc5\x9f\x6a\x1d\x38\xc0\xd9\xf3\x37\xb0\x74\x50\xf7\xfa\x5a\xd0\xfa\xa5\x2f\x72\x8a\xc5\x4b\x52\x3a\xf5\x6a\x24\xea\x0e\xf4\xd1\xb0\x0c\x6f\x20\xfb\x16\xa5\xcf\xf2\x02\x10\x11\xdf\x25\xdc\x01\x5c\xd1\x7b\x01\x31\x67\xb9\x62\x7f\xb9\x09\xf0\xde\x6e\xc2\x3e\xc0\x5f\xec\x24\xa5\x2a\x9e\x99\x21\x7c\x0f\x70\x32\xf7\xb1\x9f\x50\x40\xd9\xd4\xb4\x24\xf7\x82\xa9\xf9\xd9\xc3\xfc\xf1\x0f\xf0\x5e\x37\x1f\x06\x9e\xdc\xff\xbd\xc9\xf6\x9f\xe6\x4a\x12\x1b\x15\x84\x1c\x0f\x26\x9e\x88\xe9\x4f\x69\x27\x49\xbd\xad\xdc\x08\x28\x5f\xdc\x99\x28\x9e\xb2\x16\xe5\xac\x70\x02\xdb\x3b\xe4\x66\x59\xc0\x82\x3b\x92\x8e\x55\xfb\x25\x21\xc5\x3c\xad\x56\xeb\x5f\x3b\x7a\x94\x1a\x88\xe0\x2e\x03\x1e\x11\x0e\xf8\xc6\xa4\x75\xf4\xa8\x83\x01\x6b\x16\xa8\xdc\xa6\x5d\x13\x2f\x4d\xfb\x8e\x0d\x1b\x00\xe0\x84\x79\x70\x1b\xcd\x5c\x46\x3a\xf1\x60\x50\xad\xa6\x71\xf8\xcb\xe4\xd7\xc8\x94\x39\xfa\x08\x25\x19\xbc\xd5\x87\x3c\xd7\xee\x26\x49\xe6\xe6\x49\xb9\xf6\x8d\x17\x27\x85\x70\x7f\x73\xf3\x5f\xfa\xf2\x94\x1e\x1f\x78\x5d\x25\x46\xcc\x3f\x8a\xf4\xef\xba\xaa\x6c\x80\x04\x55\x91\x33\x4a\x71\xc6\x63\x70\x1e\x78\x15\xb4\x93\xf5\xce\x3b\x67\x81\x49\x11\xeb\xde\xec\x76\x6c\x7e\x3d\x75\x2e\x72\x73\x75\xc0\x61\x9a\x44\x11\x17\xdc\xb0\x13\xb9\x6f\xc7\x27\x35\x37\xb9\x30\xf3\x62\x3b\x2b\xb2\xdc\x94\xe1\xda\x94\xaa\xcc\x5e\x53\xd3\x57\x1b\x9a\x89\xff\x5b\x35\x8f\x74\x70\xae\x1d\xdb\x41\x92\x87\xc6\x33\x86\x3b\x78\x4d\xf9\xe3\x7c\xd2\x80\xa8\x51\xba\xea\xf8\x71\xf0\xf9\xbd\x19\x7c\xb2\xc8\x7a\xc3\xa4\x7d\xd7\xf6\xd3\xa4\x87\xc6\x8c\x88\x0d\xf8\xda\x8c\x96\xe5\x89\xac\x1d\x49\xef\xa2\x11\x1d\xe7\xdf\x66\xdf\x8e\x0d\xf8\x5c\x59\xf6\x83\x91\xd8\xe8\xe2\xa0\x5b\x7f\x4a\xe9\xcc\xa0\x8a\x2f\xf9\x64\x43\x65\xb3\x17\x85\x36\xce\x2d\xab\xeb\xa3\x2b\x73\x4d\xf3\xff\x5f\xd3\x4a\xae\x71\xff\x69\x2c\x40\x38\xa4\xfb\x1a\x81\xf0\x19\xef\xf3\x0e\x3d\x4b\x2c\x4c\x8e\x05\xa1\xb4\x7c\x15\xb2\x1c\x2c\x95\x3d\x84\x54\xc4\x22\xd8\xdb\xa1\x3b\x70\xec\xc0\x07\xa4\xeb\xb5\x9f\x88\xb6\x84\x48\x4f\xf1\xf1\xec\xd4\x7e\xe3\xe2\xa4\xf5\xc2\xac\xc3\xd8\x96\x5b\x0e\xc7\xd7\x34\x52\x86\xf1\x34\x88\x7d\xf6\xac\xf9\xa1\xc6\x7d\x4d\x15\xdb\x61\x31\x4a\x38\xeb\x82\x69\xfa\x98\xb6\x1b\x1f\x6b\x20\x47\x32\xb2\xd9\x8e\xd6\xec\xe1\xcd\x0b\x30\x93\x4e\xfb\xc4\x49\x8f\xdc\x50\xac\x4b\x3c\x1c\x2c\x7a\x2d\x3e\xce\x2d\xd2\x01\x27\xf2\x52\x16\x56\x25\x62\xc5\xd7\x99\x5a\xd3\x5f\xdd\xe5\x69\xb3\x4f\x05\x9e\x4e\xfb\xd4\x44\x31\x53\x30\xb7\xaf\x60\x7c\x5b\x8e\xcc\xf2\xde\xa4\x82\xf7\x55\x3c\xe2\xdb\x3b\x9f\x34\x28\x6e\xe2\x63\xa1\xcd\xa1\x80\x8d\xb5\x05\xee\xe8\xca\x82\x45\x98\x54\x97\x77\x3d\x7a\xb4\x6d\x8f\xd9\x5e\x91\x8b\xb8\x0f\x5e\xc8\x35\xe5\xc7\xea\x59\x42\x69\x4c\x7b\xa9\xe5\x84\x05\xdb\xee\x9e\x82\x51\xde\x73\xc5\xc1\x41\x5a\x8c\xba\x11\x04\xb6\x79\x34\x06\x37\xc5\x9c\x6c\x1d\x7f\xeb\xd7\x15\x69\xf2\xdb\x8a\x6f\x77\xd1\xf0\x80\x20\x16\xed\x79\xfa\x1d\x3e\x56\x3b\x20\xca\x51\xd9\x40\x71\xf1\x84\xa6\x7e\x3a\xa1\x0a\x77\xa9\x5d\x4c\x7a\x45\x26\x54\xc5\xf0\xf4\xd3\x1d\x82\x08\xf1\xc9\x9a\x9f\x71\xce\x92\x5e\xa8\x8b\x89\x4d\xa3\xe7\x4d\x82\x08\x59\x31\x18\x70\xc0\xad\x60\x0a\xe7\xb1\xe4\x85\xf4\x55\xb7\x48\x63\x88\x7f\x7a\x3c\xe2\x35\x25\xec\x75\xad\xa9\xbd\x1c\xc6\x8b\x54\xb2\x6c\x29\xca\xc6\xab\xda\xd5\x68\xe3\xe4\xa8\x92\xa3\x55\xd5\xe9\x7e\x80\xeb\x71\x41\x49\x19\x62\x08\x9f\x1e\x59\x06\x61\xbe\xa3\x47\x85\x0a\xee\x85\x1a\x6a\x75\x61\xa6\x6d\x59\x2f\x82\x75\xd6\x15\xa0\xab\xee\xb4\x8e\xcc\xcc\xb7\x33\x13\x2d\x9b\x81\xa5\x15\x0b\x0b\x08\x6a\x03\x9e\x2c\xa5\x5e\xb7\xc4\x09\x5b\x88\x7a\x5e\x9a\x6f\x1f\x9c\xdb\x4b\xd7\x8d\xf8\xf2\x7f\x51\x32\x52\x77\xe0\xbc\x54\x17\x71\x4e\x43\x9e\xa4\x3a\x08\x42\x21\x11\x1b\xa6\x9b\x93\x7c\x59\xf5\xf4\x6e\x51\xa3\x9b\x3f\x41\x73\x23\x6e\x96\xb9\x5c\x2c\xb0\x6e\x27\x27\x7f\xe9\x93\x0a\x37\x61\x7f\x94\xa4\xb1\x2b\x08\xc0\xc4\x9c\xa4\xd5\x2b\x2c\x64\x0a\x57\xfe\x4e\xed\xb9\x1e\x99\x69\xf7\xfa\xbc\x26\x84\x36\x86\x3e\x20\x9e\xfd\x49\x57\x0e\x1b\x9b\x30\x95\x52\xbd\xf4\x5a\xfc\xfe\x3d\xa7\xa7\x63\x43\x5b\x1c\x9b\xd2\x9a\x1a\x80\xff\x62\xa1\x31\xce\x47\x08\x7d\xfd\xe0\xe9\xc8\x9a\x78\xa7\x96\xb0\x3e\x47\x8f\x50\x86\xc0\xcb\x87\x23\x60\x51\xdf\x82\xfc\x98\xde\x0c\x9e\xff\x6d\x58\x3f\xfe\xb0\x42\xba\x52\x3b\xbc\x18\xb7\x3c\x22\xe9\xb2\xea\x41\x5e\x76\x3d\xc8\x3c\xb5\xb6\x22\x98\x84\xda\x33\x56\xc9\xe3\x8a\xd2\xb5\x17\x7e\x27\xb0\xa7\xa1\xa1\xb7\x7d\x8a\xb6\x6e\x47\x47\x25\x8b\x3c\xa1\xec\xe6\xfb\xca\x58\x1e\x8d\xeb\x56\x47\x69\x36\x1e\xa7\x90\x1a\x3e\x63\x5d\x97\xa3\x6e\x81\x00\x5c\x68\x40\x95\x67\xa1\x6d\x80\xef\x6d\xad\xf9\x7b\xba\x3d\xf1\x9d\x81\x8f\x2b\x64\xcf\x49\x6a\x15\xa5\x0c\xc8\x1a\xf9\xb8\xa9\x96\xd2\x4d\x93\x62\x30\xcc\x81\x4b\x05\x77\xce\xfa\x44\x05\xc1\xa7\x82\x2d\x63\x3a\x72\xff\x37\x02\x0f\xd2\x5b\x19\x5a\x93\xef\xf4\xe0\xf1\x56\xa7\xdc\x7c\x82\x89\x2e\xbf\x40\x52\x72\xfa\x19\xe1\x76\x55\x96\xea\x92\xe2\xeb\xfd\xf9\x7a\xe5\xb9\x0c\x52\x53\x6b\xc7\xce\x16\x6a\xda\x04\x61\x5a\xd0\x5a\x3f\x23\x8a\xa1\x30\x01\x81\xf5\xa2\xc3\x86\x2b\x8a\x09\x82\x4b\x3a\xc2\x98\x50\x6e\x57\x6c\xea\xed\x1d\x85\x27\xe4\x67\x82\xd4\xfe\xbd\xa6\x1e\xfc\x38\x0d\x97\x4d\x5e\x06\x95\xd8\x42\x08\x6f\x3e\x50\xa5\x8e\x0f\x34\x16\x3e\x2d\x53\x12\x55\x0c\xe4\x00\x5f\x30\x1f\x0e\xd6\xb8\xfd\x29\x8a\xbb\xe4\x4d\x37\x55\x9c\x7a\x91\x09\xbb\x49\x1a\xdb\x56\x65\xc4\xa4\x3a\x7d\xe2\x7d\xdc\x2f\x7e\xfe\xf3\x53\x0a\x56\x07\xfa\x63\xc7\xad\xec\x89\x4d\xb4\x1c\xca\x38\xb5\x83\xd8\xc4\x60\x1c\x95\xd5\x44\x0f\x57\xb4\xb9\x3c\xfc\xff\xa6\x42\x6f\x66\x61\xb4\xc4\x88\x5b\x54\x46\xdf\x9d\x78\x08\xc0\xbb\xba\xa7\x32\x34\xe9\xe2\xa8\xc2\x8b\x73\x51\xf3\xe2\x5c\x74\xc1\x40\xd7\x44\xc0\xe6\xba\xc9\xec\x6b\xf4\xd2\xf0\xe3\x80\x4a\x20\x21\x7d\x4f\xf5\xd0\xeb\x7a\x61\xb3\x87\xdb\x26\xce\x56\xb8\x4a\x0f\x88\xf1\x37\x03\x05\x7d\xff\x66\x53\x79\x96\x30\x70\x2c\xe8\x86\x54\x75\x8d\xd6\x20\x1f\x37\xea\x4d\x0c\xc3\x7c\x8a\xb6\xb7\x8c\x0f\x2a\x4d\xd6\x3b\x81\x07\xb0\xd6\xf9\xe4\x0f\x7f\xd9\x69\xe1\xf0\xaa\x42\x0f\xf7\x91\x52\x0f\x7c\x34\xd9\xef\x3d\xf4\xb2\x4d\x77\x53\x55\x01\xde\x7b\x43\xcf\xd5\xa1\xeb\x89\x98\x07\x9a\x44\xc8\x27\x1e\xea\x97\xfe\x98\x9e\xa5\x0c\x01\x63\x09\xe1\xc9\xbe\xa6\x86\x9e\x3f\x54\x70\xd0\xae\x8d\x42\x4b\x4a\x6d\x0b\x33\xdc\x46\x38\x0b\x80\x0d\x9f\xa8\xe9\x58\xb3\x98\xdb\x34\x4e\xca\x54\xb5\xb4\x9d\x52\x28\xf3\x5e\xe6\x4f\x28\x33\xc0\x2b\xbf\xa9\xa0\xdb\x69\x11\x2f\xd9\x08\xd1\x16\x8c\xe1\x15\xbc\x2a\x3e\x71\x3d\x75\x34\x01\x4c\x5e\x75\x64\xe0\x2c\xe7\xe3\xb5\x26\x7c\x73\xd7\x66\x61\xdf\x66\x04\xc7\x55\xbc\xcd\xf3\x0e\x4b\xf3\x69\x15\x9f\x8f\x6c\x3f\xf4\x48\x5c\x99\x03\x51\x33\x21\xb5\x17\x79\x70\xae\x9d\xf4\x7a\x26\xf3\x83\xd3\x8c\x89\xad\xe0\x63\x75\x9d\xfd\x58\x1e\xb2\xfc\xe6\x17\xfc\x7c\xf6\x9c\xa7\x92\x11\xbf\x3d\xb6\x69\x56\x48\xdb\x57\xc4\x77\xcb\x4b\x11\xed\xdd\x06\xae\xd7\xae\x1d\x25\x26\xde\xd2\x42\x7d\x43\x0d\x02\xbc\x31\xf9\x4c\x35\x60\x3a\x32\x33\x5b\xfe\x47\xd3\xe2\xa8\xb1\xb0\x26\x00\x4f\x97\x05\x5e\x23\xe4\x81\x56\xe1\x4c\x5e\xb5\xf1\x94\x42\xe2\xb0\x84\x28\x92\xc5\x87\x81\x06\x6f\x7b\xb8\x66\x94\xa4\x79\x68\x5b\x8a\x06\x66\x3d\x50\xcc\x2f\xeb\xae\xfc\xdd\x4b\x8a\x38\xe7\x3a\x3b\xd9\xef\x53\xcf\xa2\x6c\x41\xfd\x91\xcf\x41\x42\x52\x82\x32\x7f\x55\xe4\xad\xb0\x96\x1c\x62\xdd\x13\x45\x9e\xad\x71\x0c\xfc\x5c\x3b\x4a\x92\xa5\x96\xea\xd1\x43\x2b\x45\xc2\xe5\x27\xb5\x78\xe4\xc8\x44\x2d\xc5\x44\x0c\x8c\x06\x1f\x77\x3e\xe3\x5f\xf0\x30\x21\xc7\xdb\xa5\xe6\xee\x82\x60\x56\xa0\xf1\x21\xaa\xb7\x0d\xd4\x3f\xbd\xd0\x2d\x6d\x99\xe2\x55\x3e\xf9\x8c\x0b\xd2\xc6\x66\x35\x4d\xa2\x68\x87\xca\xfd\xbe\xaa\xa3\x27\x8c\xd4\x63\x86\x0c\xe5\x46\xd8\x4c\x9e\x9a\x17\x89\x17\x9f\x5d\x2c\xdb\x38\x2f\x52\xbb\x07\x26\xc1\x4d\xf8\x3a\x0a\xfb\x87\x60\xf5\x17\x81\x17\xfa\x5d\xc7\x48\xe3\x07\x19\x51\xf3\xe4\xbf\x02\x9b\x9e\xcc\x2c\x2b\x4e\x31\xee\x46\x00\x87\xb5\xb3\xe3\xa0\xd2\x76\xd9\x46\xbb\x5c\x21\xa3\xf3\x19\x25\x70\x78\x5a\x53\x2f\x70\x38\xc6\x1a\xd8\xb8\x18\x41\xdf\x54\xb0\x54\x0a\xf6\xd6\x24\x82\x9b\x5a\x92\xa4\x6b\xf9\xd6\xf3\x6f\x04\xbe\x25\xfd\x1b\x4d\x7b\x2b\xcb\xd3\x62\x30\x70\xca\xb9\x92\x98\xa8\x94\xe2\x7e\x55\x69\x30\xcd\x3e\x43\x6f\x10\xd7\xb4\xaf\xa3\x4a\x20\xd3\x65\xc0\xb7\x79\x06\x05\x16\x78\x98\x4b\x28\x1e\xe2\x99\x63\x2c\x14\x39\x01\x9a\x59\x78\x2f\x4f\xac\xd1\xb3\x70\xc2\xb7\xb3\x87\xab\x5c\xd4\x6c\xc4\x2b\x72\xef\x37\x83\x0a\x67\x7d\xb9\x0c\xf1\xf8\x2e\x06\x4a\xd5\xe2\xe6\x44\xb3\xd8\x53\x98\xcb\xe2\xd0\x54\xb0\x45\x10\x35\x1f\xa8\x2e\xe9\xa9\xc0\x4f\xb8\xff\x10\x6f\x02\x8f\xe1\x69\x2a\xfc\x88\x20\x6f\x03\x56\x24\xb5\x9e\x49\xc1\x59\xfd\x89\xb6\xfa\x4a\x0a\x11\x0d\x4d\xb0\x7d\x01\x52\xf1\x8e\x9a\xb8\x7e\xc7\x03\x51\x7f\xe1\x89\xf2\x7a\x10\xd4\x3d\x64\x07\x87\x80\xe6\x36\x82\x53\xd7\x22\x5f\x98\xe1\xec\xfc\x8e\xa2\x03\xfd\xd5\xa7\x51\x3b\x26\x1b\xf8\xfe\x5f\x58\x73\xe5\xb7\x7f\x00\xa5\x1f\x54\xbb\x3e\xb3\x56\x11\xa1\x2a\x7d\x1a\x19\xc7\x9f\xfb\xa9\xce\x7e\xb7\x96\xb3\xcc\xa6\x3b\x2a\x7c\x92\x2d\x27\xbe\xf3\x40\x03\xf3\xe8\x52\xf0\x98\x37\xb0\x16\x50\xeb\x78\xa6\x46\x1a\x4a\x61\x68\xd2\x75\xca\xac\x3c\xc2\x46\x4b\x43\xc6\xd9\x94\x34\x40\x12\x97\x7e\xa6\xe5\x53\xa0\x0d\xfa\x29\x3e\x56\x65\x91\xbf\xf5\xd7\x7e\xa1\xe5\xeb\xf6\x17\xe8\x86\xf8\xb8\x66\xa4\xca\x88\xb4\x1b\x46\xe0\x70\x61\x21\x4a\x6c\x67\x51\xa5\x94\x56\x4e\x64\xba\x60\x97\x12\x94\x54\x65\xea\xb6\xe5\xa6\xf9\x1f\x2b\x54\xc2\xd0\x74\xc3\xdc\xe4\x4a\x50\xf7\x62\x85\x9a\xae\x69\x7e\x07\xb3\x4b\xad\x0a\xbb\x82\x5f\x04\x75\x9c\xd2\xa1\x43\xed\x84\x06\x85\x0c\x6e\x82\x69\x5c\xd5\xb0\xf0\x29\x95\x7b\xae\x98\xbc\x37\x64\xd2\x15\x04\x8e\xef\xd2\x5f\xf2\x71\x53\xa5\xc3\x65\xe4\x48\x34\x4e\xe9\x21\x9e\x53\xca\x84\xa7\x3d\x1b\x31\xa7\x93\xd3\x54\xf4\x16\x4b\x03\x25\xc6\x69\x32\x48\xcd\x28\x7b\xc2\x5f\xc5\x95\xca\x00\xaf\x62\x8f\x01\x1f\x2d\xd6\x16\x46\x89\x61\x5a\xce\x68\x6e\xdb\xd3\x8a\xa4\x82\xaf\x8f\xc9\xc6\xa8\xae\x22\x54\x61\xb4\x1a\xf9\x13\x0d\xba\xa1\xb3\xed\x6c\x2c\xad\xdf\xca\xd4\x18\x9f\xe8\x08\xcf\x2e\xdb\xf2\x79\x1f\x74\xda\xee\x94\x2b\x8b\xce\xbb\x36\x99\x83\x24\xe2\x4e\xa1\x28\xc2\xd3\xf5\xf1\x49\xad\x6f\xfa\x5c\x7b\x64\x96\x6c\x31\x46\xdf\xd4\x95\x62\x9c\x4c\x58\x5d\x83\x75\x61\xbe\x6d\xe3\x9c\x47\x08\xa4\x8f\x50\xde\x83\x34\x18\x94\x7c\x58\x64\xba\x49\x6a\x72\x0b\xa5\x79\x20\x2d\x10\x69\xf3\x71\x13\x0c\x6e\x64\x62\xe0\x5a\xc8\x98\x23\x1a\xba\xab\x64\xbf\xea\x22\x41\xcf\x11\x74\x8e\xcc\x9b\x63\x77\x3e\x28\x23\x2c\xbf\xdb\xc4\xf3\x36\xb6\x36\xea\x9a\xde\x52\xcb\x23\xe3\xce\xa8\x10\xaf\xce\xf8\xf1\x5c\xbb\x97\x26\x2b\x82\x09\x81\xef\xbd\x80\xd7\x85\xa2\xf8\xbd\x40\xf1\x6f\x6c\x28\xd0\x75\x37\xec\x2d\x29\x85\x73\x41\xa7\xb4\x1c\xe3\x00\x49\x9a\x6d\x5e\x70\xd8\xab\x6c\x35\x5a\x66\xd4\x53\xb9\xe4\x1c\xc3\xd4\x9c\x93\xe4\x3e\x55\xeb\xe5\x02\x5e\x49\xf1\xfd\x31\xae\xa3\x0b\x2b\x7e\x85\x3b\x5f\x49\xdc\x59\xd3\x1b\xee\xa6\x2f\x45\xf4\xf9\xd5\xc0\x8f\xde\xdc\x56\xfe\xf2\x2d\x44\x25\xdc\xd2\x44\x93\x95\x47\x15\x70\xff\x68\x9b\xc3\xdd\xba\xfa\x9d\xe6\x34\xf5\x45\xae\x34\xec\x19\xac\x34\x49\x42\xe9\x16\xf9\xa4\xa1\x10\x39\x37\xb7\x87\x7e\x03\x48\x78\x46\x18\x21\x8f\xd8\x8f\x68\x16\x7e\xf8\x4d\xda\xb6\xf0\x48\x97\x74\xcf\xf2\x86\xe6\x69\xc3\x04\x15\x16\xf6\xd7\xf1\x40\x79\x9c\x61\xe2\x27\x79\xae\xaa\x49\x57\x26\xb1\x2d\x17\x13\x53\xb2\x11\x40\x52\xe8\xd9\x7c\x6b\xdc\x14\x83\x82\x85\x77\xe4\x11\x94\x1f\x92\x36\xf3\x1e\xa9\x23\x1a\xcd\x18\x78\x4b\xa1\x99\xdf\xa4\xbf\x97\xb4\x64\xbf\xca\xed\x22\xbb\x57\x49\x69\x5f\xa5\x8d\xef\xfa\x01\x0b\xf3\x1c\x49\x6c\x6a\x83\xb6\xa1\x31\x96\xbf\x82\x82\x9b\x4b\x27\x0f\x0a\xa3\xf9\x9e\x8e\xd7\x59\xc4\x24\xa6\xf3\x2e\x87\x0e\x61\x40\xf0\x65\xa7\x2e\xd3\x80\x78\x8f\x93\x9c\x27\xc6\x65\x33\xfb\x6a\x1a\x84\xb3\x98\x16\x9e\x8c\xa2\x8c\xcf\x2b\x19\x26\xd0\x65\x65\x4f\x78\xeb\x7b\x05\x05\x65\xec\x8b\x87\xb8\x70\x94\xfa\x3e\xa4\x0b\xe7\x63\xbc\x53\x44\x13\xc0\x7c\xa1\x60\x79\x9a\xec\x90\x03\xc8\x96\x4f\x0d\x21\xef\x9b\xf4\xa4\x71\xdb\x7f\x8a\x27\x25\x3e\xc3\xcb\x1d\x8f\xa3\x62\x34\xb2\xbe\xa3\x80\xd2\xd3\x87\x1a\x94\xf6\xa1\x4a\x94\xa2\x22\x1e\x30\x91\x15\x2c\xc0\x4d\x7c\x31\x9f\x28\x56\x8f\x30\xee\x25\x23\xfb\xa9\xf2\xda\x9c\xc4\xd1\x81\x03\x1c\x68\xde\x0f\x3c\xaf\x08\x6b\x0f\x62\xdf\x3d\x46\x04\xe9\x54\x5e\x94\xc6\x50\xb9\x04\x00\xa6\xf8\xf7\x8a\x32\xfd\x4f\xe8\xf9\x23\x14\xfa\xbd\x40\xd5\xef\x6f\x13\x4a\xc2\xa9\xe7\x94\xdb\x0f\x8b\x86\xc1\x07\xf0\x70\x77\xf5\x74\xd9\xa5\x40\x42\xb1\x2e\x55\x40\x77\xfb\x79\xb8\x7f\xfc\x97\x3a\xea\x2a\xf7\x81\x95\x07\x06\x71\x53\x81\x8a\xa6\x95\xe8\xd5\x65\x3d\x47\x8b\x52\x23\xf6\x30\xf8\xa5\x50\xa8\xfa\x4c\x6d\x26\x12\x42\x61\xe5\x2b\x19\xa1\xf1\x24\xd4\x01\xe5\x87\xe4\x9b\x95\xb7\x61\xbe\x40\x4c\xe5\xbb\x5b\x77\x81\x16\xe3\xfd\xa4\x7c\xf3\x6c\x8d\x94\xf3\xc0\x2c\x92\x0d\x6c\xef\xdf\xa4\x97\x84\x9d\x0a\x61\x2b\x01\x7a\xd2\x13\xc4\xef\xdf\x26\x04\x09\xde\xd1\x6d\x8a\xfc\xdc\x98\x5b\xb9\x84\x24\xfb\xf2\x45\xde\x7f\x07\x8b\x87\xaf\x65\xe3\x24\x6d\x52\x7a\xdf\x80\xdd\x6c\x2a\x46\xbc\x53\xc8\x18\xd0\x32\xf9\x9f\x26\x7e\x38\xfb\x4d\xe4\x28\x9b\xe0\xdf\x64\x3c\x08\x4c\xaf\x0c\xcb\xd2\x9b\x42\x6e\xf7\x23\x3d\xce\x70\x03\x09\x0d\xba\x41\x6f\x2b\xdd\xe3\x7b\xb5\x9d\x7e\xf4\x68\x7b\x90\x24\x80\x3f\x88\x62\xa3\x6a\x92\xbc\x4d\x37\x87\x68\xf1\x96\x5b\x35\x45\x1c\x25\x3d\xae\x0a\x88\x78\x9c\x8f\xb9\xcf\xa9\x38\x3b\x4e\x56\x86\x36\x65\x8d\x33\x26\x4f\x0d\x14\x61\xdb\x47\x0d\x0c\x33\x2f\xb7\x87\xc9\x98\x07\xf6\xb4\xa4\x94\xd0\xe0\xd3\xf3\x12\xd6\x06\xbf\x0f\x0d\x91\x36\x4c\xfb\xfe\xc1\x39\xcd\x54\xf9\x9b\x81\xb7\x30\xe7\x02\x0d\x35\xf9\x4d\x55\x1f\x4e\x72\x33\xfd\x89\x84\xdd\x2d\xc7\xba\x73\x1f\x9b\x49\xa0\x45\x4e\x34\x33\x59\x89\x07\xa9\xe9\xa3\x2f\x87\x86\xc6\x4d\xdc\xad\x74\x17\x5a\x8e\xda\xff\xc7\x15\xee\xc2\x34\xb4\xd9\x7e\x0f\xac\xfe\x27\xb4\x0e\x44\xd2\x0a\x57\x8b\xfd\x75\x0a\x70\x08\xad\x2a\xad\x2c\xe2\xac\x9f\xfa\x3c\x70\x80\xfd\xf8\x71\x2c\x13\xbc\xcf\xd6\x9a\x62\x20\x7d\x47\xa9\x0e\xfc\x09\xad\x12\xa7\xee\xba\x30\xef\xd5\x91\x67\x0f\x73\x82\x7e\x4b\xa1\x68\x23\xd3\xb5\x11\xe3\x21\x37\x29\x7e\xdb\xbc\x3b\xf9\xb4\xaf\xf1\x27\x45\xdc\x07\xdd\xf2\x0e\xaf\x72\x7c\x37\x50\x2f\x95\x09\x63\xf0\xf3\xd7\xd4\xa5\x5c\x9b\x28\xee\x99\x4b\x3e\x27\xc0\xa4\xf1\x6e\x3c\x0d\x18\x4b\x38\x25\x0a\x94\xbf\xf3\x1f\xa2\x67\x21\x02\xc2\x35\x05\x76\x58\xb4\x3d\x6b\x7e\x12\xf7\x8a\xe6\x25\x5f\xd7\x98\xbb\xef\xb8\x92\x7b\x9e\x8c\x43\xd1\xe9\x94\x61\x31\x9d\x9f\x3e\xad\xd4\xe6\xf2\x32\xe6\xcc\xa6\xf4\x74\x64\xe0\x63\xb5\x7b\xba\xbc\x74\xa1\x96\x31\x50\x37\xc3\xc4\xfd\xd5\x69\x55\x73\xb8\xac\x74\x32\x1e\xaa\x79\x64\x0c\xc4\xa0\x60\xf4\x8d\x4f\x24\xc0\x5f\x0c\xe3\xd8\x84\xe9\x94\xea\x35\x61\x42\x59\x04\x02\x14\x63\xdd\x4d\x85\xfa\x18\x9a\x22\x46\xb4\x23\xe9\xb0\x4e\x93\x2b\x15\x9c\x2c\xa3\xe1\x56\xc1\xa7\x2b\xd2\xc6\x53\x70\x45\xc0\x17\xdd\x9e\xa8\xf1\xdb\xf5\x89\x9a\xb6\xbb\x43\xef\x06\xa6\xf0\x47\xe4\x06\x39\x84\xd6\x3a\x24\x57\x68\x41\x22\x96\x81\xc2\x30\x56\x0a\xf6\x27\xca\x06\x1c\xa1\x3b\xac\x48\x69\x87\xf9\xc7\x03\xc5\x06\xbc\x4e\x93\xdc\x12\xae\x28\x95\xa7\x24\xce\x14\x50\xed\x46\xa0\x80\x6a\x37\x26\x4f\xf0\x13\x2e\xcd\x25\xfd\x03\x62\xda\xeb\x14\xa2\xc9\x98\x24\x01\x64\xb0\x6b\x36\xe8\x4e\x98\x09\x97\xf7\x2f\x56\xfd\x34\x6a\xc7\xf2\x4f\xad\x97\xe6\x7d\x1d\xf9\x17\x5f\x12\x3d\x2e\xc4\xe1\x28\x0f\x3f\xd2\xbd\x20\x40\x7b\x60\xf2\xdf\x0d\x5a\x5f\x72\x9a\xa3\xb4\x7d\x81\x56\x9a\xee\x28\xb6\xd9\x5b\x08\xb3\xf0\x7b\x5f\x0f\xfc\x44\xc3\xdd\x80\xfa\x32\x58\x4f\xff\x5b\xd0\x7a\x61\x96\x1f\xd7\x45\x5d\x67\x79\x0b\xcf\x0e\x3f\xf8\x6f\xe0\xdd\x9c\x9c\xfe\x01\x21\x9d\xf8\x13\x02\x7d\xc2\xc2\x9c\x20\xdf\x86\xe7\x73\x3c\xf0\x2c\x48\x53\x54\xb0\x64\x15\x46\xbc\x2b\xf8\xb4\x8f\x40\x76\x00\x9f\x79\x81\x78\x03\x91\xb2\xbc\xce\x73\x05\x15\x2d\x5a\x64\x7d\x6f\x80\xb5\x1b\x7b\xfd\x5a\x6d\xf4\xed\x39\xa2\x9e\xf6\x1d\x53\xe1\x30\xf0\xb0\x0a\x2f\xe0\x3e\x2e\x7a\x4b\x61\x36\x6c\x69\x29\xac\x96\x53\x24\xbd\xaa\xca\xc0\x59\x32\x4e\x4d\x9c\x4c\x29\x19\x24\xe8\xb3\xe0\x72\x31\x09\x8d\x45\xfa\x50\x95\x6d\xb2\x7c\x35\x92\x39\x2c\x57\x42\x77\x52\x40\x3a\xa1\x1e\xa7\xc9\x78\x35\xb2\x31\xd7\x6b\xf0\x6a\xfe\x40\x89\xe9\xfe\x41\x93\x26\xff\x4a\x9a\xc4\x83\x7e\x22\x40\x4b\x54\x0d\x4e\x62\xfd\xf2\x89\x1f\xfc\x49\x92\xd1\x08\x00\x7d\x9f\x1e\x9d\xab\xf4\xba\x4e\xc2\x28\x22\xe4\xbb\x55\xe1\x1d\x1a\x86\xf9\x3e\xba\x32\x0e\x7c\xb0\x36\x44\x50\xb4\x5c\x41\x48\xbe\xee\x61\xf9\xe2\xfb\xb6\xab\xdc\xe3\xb6\x9e\x4b\x3f\x15\xe8\x5e\xa0\x22\x02\xe2\x51\x52\x24\x85\x3f\xd6\x18\x8f\xdb\x13\x3f\x51\x7b\x5a\x25\x75\x37\x55\x4f\x0e\x8c\x61\x69\x3c\xed\xed\x12\x84\x01\x45\xeb\xd4\x43\xd6\xef\xea\x48\x67\x7b\x47\xfa\x68\x03\x1b\xdb\x94\xa0\x95\xb0\x9c\xb8\x0f\x34\xb9\x5c\x9e\xa5\x7a\x20\x8a\x5a\x38\x29\xc0\x56\x46\xee\x02\x37\xc0\xdc\x47\x7c\xd2\x54\x11\xe1\xbe\x5d\xa4\x2a\x1c\x18\xf9\xe4\xe3\xe0\x27\x6b\x34\x17\x6c\xe1\x7f\x92\x76\x01\x3c\x0a\x73\xf9\x3a\x45\x78\x3f\x3b\xfe\x04\x49\x1b\x63\x73\xb7\x28\x73\x83\x3b\xaf\x40\xbc\xee\x50\xc4\xe0\x58\x30\x5c\xac\xb4\xaf\x53\xc1\x1c\x90\x31\x81\xb5\x5e\xa7\xb2\xb7\xe8\x09\xd1\x8b\xa5\x2d\x73\xfc\x29\x08\x58\x62\xdb\x3e\x46\x6f\x44\x10\xbf\x64\x40\x60\x99\xf6\x77\xca\xad\x8e\x6d\x7f\x8d\x0c\x08\x8c\x06\x10\x30\xf0\x36\x18\xf1\x82\xdb\x68\x69\x89\xe4\xeb\xb4\x12\x10\x04\x3c\x00\x34\xd1\x4d\xae\x1f\x98\x75\x79\x3f\x59\x32\xe4\xaf\xbb\x15\x8f\x81\x9e\x01\xc1\xdb\x3d\x8b\xb7\xc4\x27\xaa\xa6\x31\xb4\x69\x57\xc9\x18\xb4\x3a\x4a\xc6\xa0\xb5\x26\xdd\x99\xd8\xda\x7e\xb6\xdb\x4b\xce\x43\xfa\x42\x82\x34\x7a\x17\xf4\xfc\xb3\x3f\xd7\x51\xb3\x6e\xb7\x27\x1a\x16\xeb\xe1\x1c\xac\xb4\xa5\x3e\x3e\xef\xb4\xd3\xbc\xb5\xe0\xd1\xf1\x1c\xb4\x73\x32\x5d\x42\x6f\x0b\x0b\xe7\x21\xed\x29\x1d\x48\xf0\xff\xaf\x75\x1c\x24\x60\x78\x25\x1c\xd1\xa8\x9c\x4b\x85\xca\x7b\xc5\xb5\x3e\xa2\xf5\x21\x5c\xc4\x4d\xb9\x5c\x6c\xc3\xc1\xb0\x9b\xa4\x5c\x9f\x14\xa4\x8f\x9f\x8a\x5b\xd7\x4c\x8a\x49\x9a\x02\x50\x47\x2f\x41\xe4\x0d\xca\x1f\x17\xdd\x03\x6f\x41\xad\x49\xa3\xd0\xa6\x2c\xa4\x2f\x35\x2c\x55\x00\x40\xce\xa8\xfa\x5f\xb3\x4e\xff\x7c\xca\xab\xb7\x73\x05\x99\xe7\x0c\x26\x95\x81\x93\x06\x84\x44\xd6\x1b\xda\x11\x67\x2e\x52\xfc\xd4\x45\x51\x1f\xec\x16\x71\x6c\x7b\x36\xcb\x4c\xba\xba\xb3\x5c\x96\x68\x05\xfd\x0f\x13\x5f\x65\xbb\x8a\x90\x07\x15\xac\x0b\xb4\xc0\x5d\xc1\xe7\xe0\x9c\xf7\x7d\xb3\x87\x9d\xbe\x98\xe4\x5a\x80\x45\xd3\x12\x04\x21\xc7\x1f\xd3\xd2\xe7\xe3\x26\x0a\xe6\xc5\xd4\x42\x21\xd7\x05\x6d\x1f\xd7\x81\x4c\x22\xf6\xa9\xed\x7b\x32\xca\xf6\x2a\x52\x95\xb3\x9a\xb6\xf5\x2c\xf6\x12\xf6\xf1\x8f\x03\x9f\xf2\xde\xa4\xdb\xc4\x96\xde\xdd\xa1\x85\xcb\x7f\x34\x51\x54\x23\xdf\x98\x6c\xad\xf6\x6c\x9e\xa0\xe0\x49\x00\x6d\x2d\x17\x8b\x10\xf6\xc1\x91\x37\x8d\xc7\x56\x56\x14\x4c\xcd\x1d\x2d\xde\x75\x47\x71\xbd\x98\x51\x37\x5c\x36\x91\xe5\xd0\x15\x4b\x15\x85\x37\x3e\x6e\x68\x2a\x7f\xa1\x1d\x85\xa3\x31\xad\x41\x44\x6e\x3f\x08\x3c\x76\xfa\x07\x7e\x74\x73\x75\xd4\x4d\xa2\xb0\xa7\x86\x72\x4f\xa8\xa1\xdc\x13\xca\xff\xa4\x49\xdf\xa6\x61\x6f\x89\xb1\x76\x68\xac\xdf\x54\x54\xce\xcc\x91\x83\x02\xe6\x7a\xe5\x05\xd8\x28\xdf\x5d\x5e\x2f\x8a\x01\x3c\x35\x28\xa4\x93\xb4\x10\xf9\x44\x4b\x31\x5e\x51\x23\x83\xdf\xc3\x7a\xc7\x43\xfd\x31\xac\x35\x7f\x59\xd0\x52\x3a\xfc\xfb\xdc\xe5\x7e\x65\x19\x2a\x2d\x58\xa7\x8f\x14\x3b\xc0\x23\xd5\xe8\x31\xf1\xc0\x46\x36\xdb\xad\x1e\xfd\x99\x40\xbf\x95\x33\xba\x22\x72\xdc\x2b\x39\xbd\x7c\x49\x35\xdb\x37\x03\x45\xe0\xb1\x3e\xf1\xe6\x92\x6f\x4e\xae\x54\x20\x8b\x2b\xc9\x12\x4b\x9d\x09\x13\x1b\xdd\x90\x53\x74\x2b\xd7\x31\xac\xc1\xe3\xda\x3e\x98\x3d\xdc\xee\xa6\xc4\x13\x84\xc2\x3c\xa2\x14\x14\x8c\x9c\xa6\xb6\x23\x5c\x78\xbf\xa1\x79\xd6\xee\x0d\x0d\xc1\xd6\x95\x1e\xe6\x14\x72\x4c\x3e\x59\x6b\xe0\x25\x34\xfd\x51\x98\x8a\x8a\x2f\xcc\xf9\x3b\x78\x8f\x7c\xa2\x2a\x87\x7d\x9b\xdb\x5e\x8e\xee\x89\x50\x1d\x96\xaf\x5f\xb8\x11\x65\xcc\xb8\x1f\x12\x12\xba\x08\xb3\xa1\x30\x56\x57\x86\x06\x64\xe2\xd1\xbf\xbb\xd3\x78\x38\x4c\x21\xd2\x44\x2f\xdb\x4d\xc3\x9c\xc2\xde\x43\x87\x78\x7b\xb0\xac\x2d\x9f\xa8\x15\xed\x88\xf6\x4b\xbb\x03\xeb\xf9\x86\x36\xa5\x6f\x34\x51\x4f\x30\x4c\xbc\xe5\xed\xe1\xfd\x40\x71\x57\xdf\xff\x84\x61\x38\xd3\xb5\xb9\x30\x51\x49\x1d\x1e\xeb\x4c\x2a\xf4\x5b\x2d\xf5\xcf\xb6\x97\x34\x38\x92\xeb\x42\xb8\x17\x29\x12\x89\x9b\xee\x9b\x95\x98\x31\x33\x28\x3f\xb1\xe2\x49\xa5\xb3\x80\x6c\x5b\x17\xb1\x7a\xc3\xb0\x67\x06\xc9\x5e\x5c\x08\xf7\x53\x54\xd5\xef\xa4\xa6\xf0\x39\x1f\xf0\x84\xeb\x94\x17\xf2\xfd\x90\xd6\x3a\x16\xf1\x7b\x13\x45\x39\xce\x33\x8c\x42\x19\x55\x2e\x4e\xb8\xdb\x8f\x11\x50\x09\xfc\x5e\x4d\x86\x9e\x57\x17\x96\xa7\x66\x60\xfb\x60\x94\x76\xd3\x18\x0a\x3f\xeb\x71\x83\x60\x81\x53\xd5\x97\x13\x0a\xfa\x78\x22\xd8\xaf\x78\x65\x4c\x3e\xa5\x98\x64\x36\xaa\xb1\xb3\xd3\x4e\xbb\x10\x7c\x46\x4d\x89\xc4\x59\x9e\x42\x1b\x63\x77\xe9\xc3\x44\xc2\xd5\x0b\x9c\x9f\x08\x14\x07\xeb\x25\x55\x6b\x5a\x57\xf4\x2c\x7f\x4a\x29\xb0\x93\x28\x9c\xf7\xdf\x34\xf1\xb1\xf7\xa3\x26\x97\x97\x27\xb1\x73\x79\xb0\x3b\x1c\x91\x22\xa4\x3c\x4d\x59\x25\x5a\x31\x7f\x5c\xdb\xea\xe5\xe7\x57\x42\x22\x65\xf7\xf4\x30\xcc\x43\x2b\x45\x6d\x1f\x3b\xe6\x69\x38\x18\x30\x6d\x8d\xa3\x54\x71\x43\xa4\x57\xdd\x5a\x0b\xb3\xac\xb0\xbb\x14\xb4\xf8\x8a\xe6\x0c\xda\xb6\x56\x3e\x1b\x09\x6c\x3d\x46\xe1\xd9\x0e\x85\xcb\x82\xd0\xa6\x17\x06\x9b\xff\x8e\x2a\x25\xed\x57\x6c\x9a\x8b\xa2\x8f\xe8\x09\xa2\x4e\xd1\x33\xe5\x63\x0d\x49\x4b\xcd\xd8\x42\x2c\x1c\x79\xe1\x5d\x35\x1d\x77\xb7\x69\xe8\x36\x8b\xc2\xbe\xad\x0e\x48\xa8\xcc\x47\x99\xb2\x45\x33\x0a\xa3\xd5\x3d\xe5\x35\xa0\x89\xf9\xfb\x55\x3a\x68\x7a\x98\x32\xb7\xab\xa7\x99\xfd\x48\x3f\x84\xc7\x39\xb7\x08\x7c\x8f\xfa\xbb\xd8\x49\x32\xe7\xeb\xb1\xdf\x57\x9b\x40\x62\x79\x38\x0a\xf5\xa4\xd1\x79\x35\x69\x74\xde\xd5\x12\xbb\x36\xb6\x51\x71\xac\xe5\x01\x51\x6f\xc0\x2b\xf3\xc9\x56\x49\xf3\xb9\xb9\xf6\x4b\xb3\x87\x77\xa9\x2a\xf6\x5b\x6a\x12\xed\x54\xa0\x14\x0a\xd7\x75\x55\x7e\x1d\x36\x4f\x7c\x7d\xcb\xc9\x0b\x91\x81\x7e\x79\xb3\xae\xe9\x7e\x64\xa6\x8c\xa4\x8f\x21\x86\x71\x72\x6f\x87\x0e\x39\x51\x38\xef\x94\x5f\x31\x71\x61\xd2\xd5\x6a\xc1\x9a\x9c\x09\xde\xcf\x1f\x29\x92\x95\xef\xaa\x96\xf9\x25\x5d\xea\xb3\x66\x79\x75\x07\xdd\x3a\xb6\x07\x12\x05\x81\x26\xd1\x57\x23\xd9\xf9\x6f\x60\x2a\x59\x53\xb9\xa2\xaf\xec\xeb\xe7\x2f\x26\x32\x1b\x81\x45\x85\xa5\x5d\x61\xba\x40\xf8\x7c\xbb\x09\x3f\x96\x2c\xdb\xb4\x5b\x84\x51\x4e\x2d\x1e\x54\x09\xb6\x75\x14\x36\x6e\x5d\x91\x77\xdc\x6c\x20\x42\x69\xe7\xb6\x37\x8c\x69\xde\xc8\x56\x38\x04\x7e\x99\x9d\x08\x9f\x35\x0e\x82\x9a\x34\x5d\x75\x6e\x44\x68\x57\xfd\xb0\xc9\x7a\x93\xc2\x59\x5a\x44\x12\x20\xa0\xcd\xf6\xdb\x13\x25\xdc\xfd\xdb\x15\x6e\x8d\x22\x8d\x76\x94\x11\x2f\xe2\x69\x4c\x0f\xcb\x9c\xb4\x6e\xf3\xa9\x0e\xcf\xd5\x40\x3f\x3e\x09\x46\x7b\x66\xd4\x4d\x43\x13\x4f\x79\xf9\xb5\xdf\x9d\x54\x69\x28\xe9\x49\x0b\x8d\xa5\xdf\xa5\xdd\xb0\xdf\x2f\x4d\x97\x8b\x31\xd6\x03\xcf\x77\xb9\xee\xe2\x8d\xd4\xf6\x92\xb4\x5f\x71\xab\x7a\xde\x9f\x8f\x6b\x76\xb8\x8c\xa6\x17\x59\x06\xc3\xc5\xd3\x30\x8e\x22\xb6\xd8\x30\xc9\xba\x18\xc6\x03\x9b\x8e\xd3\x30\x46\x92\x03\x2f\xf7\x5e\xe0\x3b\x1b\xef\x29\xeb\x9b\xda\xe5\x70\x99\x11\x47\xb0\x8b\x0f\xb4\xa2\xd4\x83\x4f\xd4\xd6\xca\x93\xa5\xd5\x02\x73\xa5\xc8\x06\x1f\x04\xca\xac\x7c\x8f\xaa\x06\x70\x16\xe7\x95\x8e\xf8\x85\x4a\x78\xde\x37\xab\x3f\x41\x11\xac\x14\xde\xe9\xd1\x20\x30\xf9\x5f\xe1\xd6\x1d\x84\x6d\x41\x56\xfa\x63\xad\x2a\x82\xc6\xb9\x08\xc6\x96\xde\x4e\x54\xea\xe9\xad\x0b\xb1\x51\xf9\x62\xd1\x88\xf8\x88\x2e\x0c\xae\xf2\xce\xa4\x12\x80\xc0\xb4\x68\xfc\x1c\x5c\xed\xd7\xe8\x9d\xe2\x26\x9f\xea\x50\xe4\xe0\xd4\x9e\x4a\xd3\xef\x46\x18\x3c\x37\xd3\x43\x14\x1c\x84\xcd\xa0\x5c\x1f\x9c\x86\x06\xaa\xe9\x7d\x1d\xf9\x04\x62\x92\x5d\x6b\x1e\xff\xfd\x40\x31\x06\x77\xb3\x5e\x0a\x49\x1a\xba\x23\x91\x83\x56\x48\x94\x93\x13\x5f\x06\x30\xe3\x71\x12\xc6\xb9\xb5\x98\x10\x96\xda\xac\xaa\xd3\xaa\x2e\x59\x6e\x48\xe8\x5f\x8d\x2d\xa3\x54\x24\x2d\x86\xa6\x10\x3e\x35\x65\xcc\xdc\x52\x2d\x99\xd7\xb1\x43\x85\x4f\xb6\x29\x0c\xb5\xc7\xc6\x91\x61\x49\x41\xc1\x49\x5f\x0f\x14\x4e\xfa\x7a\xad\x8d\x3a\x37\xd7\xee\x26\x71\xd2\xf2\x99\x3d\x70\x11\x22\xb6\xd1\x40\xb4\x96\xda\xf2\xce\x07\x44\xcc\xa7\x10\x8b\x3f\xc2\x7a\xe1\x93\xaa\x54\xeb\x28\x69\x55\xa8\x37\xd5\x9d\x5c\x54\x23\x9a\xa3\xb0\xdf\x8f\xec\xc8\xc4\x18\xb2\x91\xa9\xec\x72\x55\x61\x9b\xb0\x8e\x30\x5a\x0a\x1f\x60\x25\x88\x96\x85\x9e\xf4\xcc\xec\xa8\x4b\x70\xde\x72\x11\x31\x69\x07\x6a\xbb\xc2\xe0\xe1\xe3\x90\xa1\x89\xfb\x59\x22\x05\x13\x2c\xcb\x93\xf4\x26\xf9\x58\xfd\x6d\x6a\xf3\x50\x98\x33\xbd\x7d\x53\xd4\x97\xaa\x52\x14\x59\xd3\xb7\x69\x36\x0c\xc7\x3b\x54\xd3\xf5\xee\x44\x19\xbf\x40\x15\x06\xaf\x2a\xc0\xc8\xa7\x3a\x0e\x2f\xbd\x76\xc7\x15\x54\xa2\xa4\x67\x72\x4b\xc6\x13\x66\x1a\x6c\x85\xd2\x37\xf4\x1d\xa5\x8f\x94\xaf\xed\x99\xa2\x8c\x6e\xa7\xd1\x91\x90\x46\x49\x19\x55\xba\x01\x13\x97\xe0\x5f\xc5\x3e\xe3\x3f\x52\x38\x3f\x20\x45\xf6\xd0\x4b\x71\x4e\xb5\xdc\x78\x48\x8f\xd7\x02\x05\x37\x61\x45\x2c\x51\xa7\xa1\x9d\xe7\xe6\xf6\x0e\x2a\xa5\xaf\x23\x33\x8e\x1d\xb5\xa5\xb4\x68\xc9\x4e\xf1\xf7\xd6\x72\xa6\xa3\x47\xdb\xbd\xa8\x88\x97\x38\x76\x80\x47\x7a\x7d\xe2\xeb\x88\x8f\x02\x1f\x41\x5e\xa3\x85\x8c\x9d\x7e\xb2\x09\x29\xd4\x37\x23\xcc\x2e\x09\x5d\x83\x57\x73\x58\xaf\xd1\x48\x94\x4e\x3a\x01\x22\x55\xda\x70\xeb\x81\x17\xe3\x58\x57\xa2\x24\xdd\x22\x1d\x99\x61\xcb\x4f\x2b\xb3\xcd\xe2\x93\xda\x9e\x3a\x38\x47\xd0\x45\x3b\x4e\x6d\x6c\x0b\xcc\x36\x09\x63\x57\x4b\x31\x79\xf9\xa6\xdf\xa0\x88\x16\xa7\xfc\x08\x13\xfb\x4d\xb8\x81\x8f\x51\xac\x10\x4e\x61\xdf\x06\xca\xa9\xc6\x04\x83\xe5\x88\x30\x94\x76\x4c\x9d\x0c\x12\x32\x3e\xdd\x22\x4d\xaa\x6a\xe0\xaa\x07\x53\xd7\x3c\x2b\x1f\x6c\xb2\x12\xef\x54\xb3\x2d\x13\x3f\x82\x72\x49\x95\x4a\xdf\x9c\xf8\xb5\x07\xe1\x31\x49\x2e\xcb\xe7\x8a\xff\xff\x9d\x5a\xe7\xe8\xc0\x81\xf6\xb8\xe8\x46\x60\x37\x9e\x52\xca\x34\xb7\x54\xfd\x5d\x87\xfb\xc7\x6b\xef\x7e\x61\xa6\x3d\x24\x9a\x77\xd7\x1b\x47\xfa\xc9\xc7\x2e\xfd\x34\x7d\x33\x76\xa3\x1b\x02\xc0\x6f\x29\x26\xce\x06\x21\xd4\xbe\x1d\x17\x3c\x92\x0f\x9b\x8b\xf6\x1a\x9c\xd7\xf1\xa0\x82\xe5\x6f\x58\xde\x84\x32\xd5\x84\x57\xef\x28\xb2\xa6\x77\x1a\x58\xbb\xe6\xdb\xfd\x64\x30\x32\xf4\x83\x68\x18\xdc\xd6\xd0\x5a\x66\xaf\x61\x0c\x86\x8a\x78\x5f\x7d\x75\x95\x48\xd7\x84\x21\x44\xc5\xb8\xa7\xeb\x76\x09\xab\xe9\x41\xf0\x59\xb7\x9a\x5e\x29\xd2\x30\xeb\x87\x94\x3b\x63\x7c\x66\xce\x29\x03\xb4\x94\x94\x50\xd3\x15\x53\xac\x3c\xad\xcb\xed\xa7\xe0\x3c\x60\xe5\x41\x26\x2c\xc6\x81\x36\x1c\xbc\xfa\xd1\xa6\xf8\x77\x60\x46\xdd\xc8\xc5\x7b\x3c\x3e\xa2\xb8\xb8\xb5\x44\x48\xdf\x8c\xc6\x36\x9d\xf2\x4b\x93\xa5\xd3\x90\xe7\x70\x3a\xc4\x9d\x65\xed\xed\x7b\x79\xb8\x1c\xe6\xa1\xcd\xe8\x91\x21\xdc\x98\xd2\x0d\xa6\x47\x13\xd5\x71\x03\xf1\x30\x16\xd3\xdd\x60\x0b\xd7\xfb\xec\xe1\xf6\x73\xc0\x73\x09\x61\x3a\x41\x9e\xd0\xcb\x3b\x83\xc4\x19\xc9\xdc\x19\x98\x55\xd6\x6e\xd1\x81\xd6\x54\x47\x47\xcd\x6f\x28\x86\xd3\x0b\xd8\xfc\xc0\x20\x82\xfb\x0f\x6d\x9a\x7b\x81\x07\xe6\x5c\x45\xfc\xe7\xb2\xda\x5f\x7c\x89\x37\xde\x59\xf8\x48\x98\xf8\x0b\x30\xf1\x48\xc3\x9e\x59\xf3\x6d\x7a\x70\x5b\xc0\xc6\xfe\x5b\x25\x8f\xf0\xcf\x50\xed\x91\xa4\x58\x39\x67\x86\x4c\x22\xff\x61\x52\x01\xa1\x6c\x11\x0c\x6a\x81\x67\xeb\x20\xcc\x73\x73\xf3\x9b\xc0\x58\xb0\xe1\x80\x73\xc2\xbf\xef\xee\x78\xf8\x8a\xcc\x32\x4e\xab\xaf\xbd\xa8\xba\x6c\x3f\xc0\x6a\x76\xf4\x9a\x87\x0e\xc9\x3f\x6c\xd1\x7e\x8b\xb9\x4f\x83\xb8\xe4\xbb\x28\xfc\xc8\x98\x9f\x8f\xf0\x8f\x4f\x54\x4d\xe0\xa4\x0e\xc6\x4f\xd2\xe5\x62\x0f\x7d\x47\x93\x11\x9f\x08\x9e\x51\x63\xd7\xe1\x28\x0b\x7b\x0c\x9b\x6f\x6a\xdc\x6f\x4d\xd7\x8e\x1e\x6d\xaf\x1a\xd3\x35\x53\x9e\xa0\xea\xc3\x89\x5f\xdf\x17\x75\x59\xfe\x56\xad\x45\x36\x7b\xb8\x3d\x32\xe9\x6a\x64\xe2\x7e\x25\xc8\x53\x43\x1c\x1b\xea\xf2\x4c\xda\x1b\xa6\xe1\xb2\x11\xb4\xbe\xb0\xd7\xa9\x79\xeb\x1b\x2a\x31\xeb\x25\x8b\x8b\xd6\xaa\xb2\xc5\xe9\x89\x2f\x5b\x9c\x56\xdf\xdb\xb7\xbd\xb0\x6f\xfb\x11\x28\x2d\x25\x2b\x56\x08\x62\xd4\xeb\x50\x2c\xb8\xef\x64\x07\xed\xa8\x6b\xf2\xdc\xe5\xaa\x92\xf0\xf9\x80\x61\x3d\xd0\x92\x11\x63\xdb\xcb\x49\x35\x85\x79\xe2\xe8\x6d\x3b\xce\x38\x47\xba\x79\x5b\xf7\xe6\x81\x7a\x45\xac\xf9\xae\x06\xd6\x84\xd9\xb0\xa5\xbb\x70\x81\x77\xe8\x57\xd5\xfc\x6e\xdf\x9a\x68\x97\x1f\x81\xb8\x39\xf1\x23\x10\x24\xf2\x3e\xbf\x79\x01\xf7\x89\x76\x37\x31\x8a\x73\x9d\xe2\x1d\x35\xd1\x80\x2a\xb8\xf4\xe8\x1a\x8a\x0c\x7d\xdb\x0f\x7b\x7e\x48\x96\xa9\xb9\x3a\x2a\xcf\x69\xad\x79\xe4\x37\x09\x33\xad\xee\x55\xe2\x63\x9a\x5f\xe6\x1c\xdd\x33\x8a\xa3\xdf\x82\xcd\x11\x1a\x04\x9f\xd1\x6f\xef\xb4\x9c\x7a\xf8\xb7\xb0\x1b\x50\x10\x3c\xa5\x56\xdf\x6d\x18\x50\x78\xdd\xdb\x1a\x1a\x7d\x45\x35\xe3\xaf\x38\x35\xfc\xb1\x13\x23\x6e\x29\x0e\xd3\x8b\x6a\x4c\xf6\x62\x53\xe8\xb5\x1c\xda\x95\x96\x0a\x2c\xdf\x50\xcd\xbb\x37\x5c\xdf\xa5\x78\x7e\xe9\x79\xa4\xca\xf8\xd9\x9d\x1d\x05\x09\xf9\x9a\x12\x42\xdd\xbe\xa6\x10\x27\xb5\xd4\xfb\xd0\xa1\x76\x11\x5b\x93\x85\xa4\x69\xdc\x72\xcc\xa4\xdf\xa7\x87\xc3\xc7\x1a\x2b\x6a\xc3\x7c\x68\x53\xd4\xe7\x71\x13\xac\x30\x07\xe7\x70\x73\xa2\x84\xe4\xce\x23\x1a\x41\x5c\x9d\xa6\x36\x1b\x27\x71\x16\x76\x99\xec\x49\xfa\xc9\x4a\x3b\xe9\x72\x53\x8f\x77\x64\x47\x5d\x9e\x82\x47\x2e\x71\x41\x13\x98\x5c\x50\xb1\x7b\x2f\x19\x8d\x92\x78\x77\xcb\x09\x13\x7c\x18\x78\xf9\x22\x9e\x13\x74\x55\x5b\x1f\xa5\x7e\x34\xf1\xc2\x46\x17\x95\xdc\xee\x3f\xd7\x1a\x93\x8c\x11\x15\xe6\x33\x4d\xe1\x9c\x40\x2b\xb4\xfc\x76\x84\xa5\x57\xf5\x4c\xc5\xd5\x9a\xc8\x77\x19\x16\x24\xe9\xc0\xc4\xe1\xab\x7e\x4a\x1b\xf1\xdb\xaf\x69\x6e\x9b\x5f\x73\xa6\x61\xd9\x44\x05\x28\xd4\x5a\x4e\xef\x00\x58\x17\x58\x17\x16\x21\xe7\x92\xab\x4a\xe2\x32\x1b\xe7\x36\xee\xb1\x0c\x0d\x3c\xdf\x07\xd8\x1d\x7c\x52\xab\x10\x11\x89\x72\xb8\x14\xc6\x21\x56\xad\x74\x4c\xbc\x57\x38\xef\xd2\xb4\x34\x19\xb8\x2a\x02\x5c\xd7\x9d\x89\x82\xb0\xdf\x51\x03\x90\x43\x93\x2e\x97\x71\x28\x5d\x08\x42\xac\x8f\x55\xb8\xf5\xb1\xca\x26\x69\x8a\x66\x9c\xda\x3c\xd3\x44\x76\x13\x45\x64\xa7\xde\x79\x9c\xa4\x79\x12\xb7\x94\x32\xc5\x5b\x13\x05\x5c\x7b\x4b\xf1\xbb\x2c\x86\x71\x7f\x9f\xc2\x35\x6f\x60\x0b\xbb\x81\x80\x05\x19\x5c\x00\xfb\x00\x5c\xf8\xf7\x08\x33\x25\xa8\x6b\x1f\x75\xa3\x5b\xcc\x14\xbc\xf8\x45\x25\x5c\x23\x15\x89\xcb\x5c\x0e\xe2\x1e\x14\x41\x09\xdd\xf8\xbe\x27\x14\xa9\xb6\xf8\xd3\x82\xe7\xea\x9b\x68\x60\xb7\x56\xe7\x8e\xcc\xb4\x29\x9b\xca\x20\x2d\xab\xa8\x3d\xce\x2a\x6a\x8f\xb3\x8d\x19\x0f\xc0\xba\x5c\xd9\x60\x2d\x87\x40\xb1\xda\x9d\xa9\x65\x13\xb3\x87\xdb\xa9\xc9\x90\xef\xe1\x8a\xf0\x2b\x7c\xdc\x44\x29\xda\x4f\x92\x51\xcb\x27\x3f\x3c\x18\x23\x73\xd8\x0d\xda\x31\xbd\x24\xee\xd9\x7e\x95\x20\xe1\xf7\x27\x8a\x47\xed\xf7\x9b\x1c\xff\x72\x98\x85\xc4\xb4\x87\x07\x2e\xbb\x99\x7e\x4c\x0c\x40\x13\xbd\x8c\x8d\xed\x62\x88\x09\x40\xa7\x33\xa1\xc5\x28\x9e\xa9\x19\xf3\x8c\xa3\x79\x1e\x88\xd2\xd6\xef\xeb\x13\x3f\x17\xc1\xb1\x0a\x6a\x94\xbf\xae\x30\x10\x8b\x36\xef\x95\xf9\x5c\xb4\x8a\x3b\x64\x70\xa8\xe2\x14\x3a\xae\x19\x3f\x93\x64\xcc\x9d\x2c\xd1\xa0\x52\x88\xb0\x0b\x9a\x8c\x9a\xb4\xdd\xe4\xb9\xb9\x8b\x28\x9f\x1b\x9f\x04\x7e\xbe\xff\x58\xf4\xf7\x7e\xbe\x6f\x72\xd3\x4b\x46\x63\x0c\xb9\xa1\xbd\x07\x4e\x12\x3e\x56\xa8\xb9\x22\x16\x46\xb1\x96\xd3\x5b\x44\xe2\x29\xa3\x92\x8a\xe3\x27\xb7\x69\xcc\xef\x41\x6c\xa0\x4a\xda\xaf\x6a\xdc\x25\xc4\x6a\x80\xe1\x43\xf8\x0d\xaa\x16\xf8\x83\x07\xb4\xe1\x70\xf5\x6f\x2a\x59\x4d\xd3\xcd\x92\xa8\xc8\x6d\xb4\x3a\x45\x91\x32\xa3\x7b\xe9\x93\xf0\xdb\x37\x28\x1f\x10\x85\xca\xcf\xf8\x48\xc7\x8e\xa8\x11\x6a\xa8\x83\xed\xa5\x76\x51\xb0\x11\xbc\x4f\x43\x17\xc1\x44\xe1\x12\x46\x60\x44\x6e\xc9\x4f\x63\x6c\x73\x18\xb3\x57\x92\x25\x5b\x61\xb3\x82\xee\x23\x1f\xbb\xd6\x56\x6f\x68\xe2\x9e\xfc\x61\xd3\x78\xa5\x0f\xb9\xc2\x34\x89\xa7\xd5\xe3\xb9\xac\x1a\x46\x97\x15\x69\x3b\x23\xd7\xf9\xe4\x13\x65\xf5\x07\x91\x8d\xe3\x29\xb5\xee\x36\x14\x47\x02\x2f\x2d\x84\x41\xf7\x5d\xa8\x31\x36\x89\xa8\xaa\x31\xfd\x8f\x62\xa7\xfd\x97\xf8\x0c\x50\x06\x4d\x88\x81\x17\x4b\xb7\xdc\xf5\x2a\x1b\x48\xdc\x6f\xea\x59\xcd\x9b\xb5\x71\xd2\xd9\xc3\xed\x5e\x81\x58\xdb\xcd\x0d\xce\xc9\x30\xdf\x85\xda\xec\xe5\x81\x03\x15\xfa\x67\x32\x9e\x00\x9d\x3c\x52\x6a\x66\x8f\xdc\x6c\x4c\xd2\x2d\x0d\x9f\x2a\x2f\x42\x52\x02\x37\x01\xd1\x19\xc4\xff\x6f\x37\x8a\x4d\xf6\xa2\x70\xd4\x15\x72\x4e\x17\xa7\x3b\x6e\xaf\x8b\x5a\x3a\xe8\x7e\xed\x62\x0f\xce\xb5\x4d\x3a\xb0\x71\x1e\xc6\x21\x13\x0a\x35\x56\xe0\xb7\x96\xce\xa8\xe0\xb2\x6c\xa3\x64\x4c\xdc\x51\x28\x7c\xb3\x9a\x8f\x4e\xc9\xdf\x51\x5b\xb1\x17\x25\x05\x4b\x1a\x6b\x51\x07\x3e\x76\xc5\x9f\xa5\x94\xd0\x2b\x2d\xdd\x86\xa5\x6b\x91\xfe\xac\x62\x9b\x4c\x93\x31\x63\x6e\x1d\xf5\x62\xf9\xf5\x02\xd1\x2c\xbf\x42\x20\x27\xfe\x53\xdd\xd4\xc4\xfd\x69\x2d\x39\x37\xf1\x95\xbf\xaf\xa9\xca\xdf\xd7\xaa\xac\xca\xfb\x15\x19\x40\x84\x8e\x12\xcb\xbd\x57\xa4\xdf\x1b\x0c\x7b\x92\xf6\x6d\x5a\xed\xfb\x9d\xd0\x7d\xbf\x13\xb5\x37\x7b\xe0\x00\x93\xd5\xca\x9b\x15\x2a\x78\x9f\x26\xdc\xc5\x37\xc8\xb4\xf2\x96\x06\xf4\x81\xd9\xf6\x91\x99\x97\xf7\x61\xa7\xb8\xe8\xc1\xf9\xe0\x7f\xea\xb5\x7c\xfe\xc6\xb3\x04\xb4\x17\xe9\x05\x85\x6f\x39\x83\x37\x89\xd4\xe5\xc6\x44\xf5\x39\x79\x5e\x1e\x01\x3e\x73\x6e\xa0\xff\xf2\xf7\x03\x25\xea\x8f\x38\x49\x31\xcd\xce\x3b\x36\xab\x06\x24\x54\x16\x25\x03\x23\x94\x3f\xcc\x6a\x1e\xf8\x40\xe8\xaa\xea\x34\x24\xdd\x2c\x37\x3d\x26\x0e\x91\xf1\x94\x7b\x13\x4f\x74\x70\xaf\x49\x68\x22\xeb\x19\xf7\x16\xe0\x52\xc1\xbd\xcd\xc7\x0d\xad\xf5\xd9\x76\x6c\x4d\x3a\x5d\xe6\x63\x0e\xd1\xe9\x86\x64\x37\xd5\x7c\xcd\xc7\x15\x0a\x00\x2f\x9b\x61\x16\x17\xc3\x74\xc4\xfb\x43\x91\x10\xbe\xe8\x1e\x64\x43\x2c\xc4\x88\x11\x89\xe3\x9d\x26\xbe\xbf\xd5\xcb\x95\x36\xcf\x2b\x49\x77\xa7\x6f\xe1\x41\x41\x8b\xd3\x25\x60\xfd\x90\x42\xdc\xd1\x13\xa4\xf7\x54\xda\x7f\x07\xb8\x7c\xfe\x84\x03\xa4\x74\x6d\x18\x0f\x76\xd0\x5b\x47\x15\x15\x7d\x46\x87\x35\x7c\x69\x61\x86\x97\xe5\xfb\x93\xd6\x97\x04\xa8\x72\xba\x02\xc6\x6f\xd2\xbf\x4f\x93\x22\x17\x7f\xc3\xa5\xda\x40\x97\x6d\x2b\x08\xd3\xc5\xe7\xa7\x94\xf8\x04\xe6\xe4\xd1\x83\xfc\x43\x58\x28\x44\xb0\x17\xd5\xee\x1c\x9b\x5e\x8e\xed\xed\x08\x2c\x16\x3c\x81\x85\x6f\x15\x6e\x03\x34\x9b\x4f\xd6\xf6\x29\x98\x5d\xb7\x45\xc5\x41\xa6\xdb\xc3\xe3\x11\xee\xbd\x9a\x96\xf7\x6c\xdb\xac\x18\x26\x6e\x73\x18\x28\x17\xb8\x78\x4d\xed\xd8\xbc\x1a\x4a\x48\xc8\x04\x62\x55\x36\x31\x87\xe0\x0d\x6d\x26\x7a\x87\x7a\x7e\x80\x2b\xf6\x6a\x30\xff\xf5\xda\x32\x9f\x3d\xdc\x8e\xc3\xa5\x25\x1b\xb2\x93\xd4\xda\x74\x15\xce\x5d\x6c\xc4\xfb\xb5\xa4\x7f\xf6\x70\x3b\xb2\x06\xf4\x90\xe8\x29\xae\xab\x51\xcd\x3a\xa8\xe1\xd0\xa1\xf6\xa2\x09\x85\xd2\x5a\x0a\x5b\x8a\x9d\x64\x43\x15\xbf\x8b\xde\xd2\xfe\xf2\xd1\xa0\x28\x58\x81\x08\xaf\x4f\x2a\xd4\x35\xe5\x4a\x63\xb5\x6a\x5d\x35\x45\x4a\x2c\xa8\xf2\xd2\x6e\x21\xc4\xfa\x10\xc5\x14\x1e\x9e\x0f\x94\x7e\xd5\x2e\xa5\x0d\xf8\x0f\x27\x4a\xe9\xff\xe9\x8e\xca\x4f\x9e\x06\x10\x59\x30\xe8\x52\x35\x09\xe3\xc5\xa8\x28\x73\xd6\xfe\x0e\x45\xb2\x74\x89\xc1\x21\x7c\x36\x51\x94\x04\x28\x55\xb8\x26\x5c\xf9\x6b\xa8\x76\x9c\x0d\x2a\x4d\x6c\x6b\x52\x08\x49\x69\x60\xb7\x1a\xb9\xaf\x6a\x8b\x9b\x48\x84\x2b\xb8\x60\x4e\xeb\x4b\x92\x55\x35\xbf\xbe\x51\x53\x39\x39\x38\xd7\xee\xf5\x09\x1e\xe3\xe8\xc9\x5d\xb5\xf7\x6d\x4d\x22\x71\xcb\xb1\xa4\x8d\xcc\x32\x01\x92\xb1\xa2\x65\xf6\xd2\xa3\xff\xce\x34\x79\xab\x91\x35\x59\x91\x0a\x01\x91\x74\xd1\xe8\x1b\xea\x6d\xb4\x72\x81\x13\x91\x17\x36\xef\x1f\xd3\x06\xe5\xe3\xc9\x13\xe2\xc2\x5e\x98\xfd\xf3\xe8\x9e\x0a\xc2\xbd\x7c\xdd\xa8\x72\x9f\x25\x1d\x5c\x69\x18\x68\x91\xba\x33\x81\x92\xbb\xf8\x36\x20\x0f\xb8\xf3\xcf\xae\x51\x91\x1d\x59\xf2\x4d\xcd\x85\x7d\x7f\x52\x11\x75\x5a\x98\x61\x53\xb4\x4d\xd9\xbb\xff\x88\x24\x35\x18\x56\x1c\xf8\x11\xd7\x6f\xa1\x3c\x2e\x5a\xca\xb4\x8a\x10\xa8\xbc\x87\x75\x81\xaf\x7a\x80\xd5\x2d\xda\xd6\xdb\x7f\x9a\x21\x9c\x4c\x8d\xe1\x44\x63\x17\x44\xd9\x07\x40\x28\x2c\x5b\x1e\x3b\x82\x99\xb8\x8d\xe1\x15\xc7\x3e\x5a\xee\x20\xf8\x92\x6b\xe4\x83\x84\x34\x58\xb5\xe0\x4f\x90\xd5\x94\x9e\xa0\xcf\xa3\x46\x61\x1c\xdb\x2c\xc9\x4d\xcb\xa3\x86\x4e\xab\xa9\xa5\xd3\x4d\x3a\x58\x8b\xa4\x8f\x0c\xf2\x28\xc7\xe7\x5a\xde\x83\xf0\xb1\x4a\x92\x6a\xe3\x7e\x92\x66\x2c\x67\xe2\x64\xe1\xae\xa9\xa6\xc9\x35\xd5\xbb\x1d\x9b\x2c\x4f\x57\x51\xca\x73\x52\x08\xbe\x88\x78\x57\x55\x38\x7e\x47\x7d\x6c\x31\x1c\x14\xa9\xdd\x59\x3e\x37\xd8\x14\x96\xcb\xc2\x32\xb9\xae\xa9\xcd\xfe\x1d\x2a\x2c\xc0\xc0\xb7\x68\x82\x1f\xa1\xd0\x1e\x90\xa7\x4b\x83\x5c\xcc\xf5\x8a\x71\x44\xfd\xa2\x03\xaf\x46\x71\x36\xd4\x9c\xdf\xa8\xe0\xc6\xc2\xec\x61\x2e\xc8\x9c\x87\x61\xe7\x13\x38\x41\x18\x94\xd1\x38\x4d\x96\xc3\xcc\xe8\xf6\x9d\x2b\x2a\xf9\xa6\xb0\xe2\x12\x59\x4c\x52\xb3\x9a\xa1\xe1\xca\x64\x8f\xf4\x97\x8e\x14\xd1\x13\xf1\xd6\x8c\x39\xcd\xc6\xdb\x74\x07\xad\x12\xb9\x8b\xf2\x32\x65\xce\x0d\x1b\x0c\x5b\xe7\x7d\x45\xda\x74\x45\xab\xdc\x6f\x77\x44\x5c\x79\x38\x0a\xe3\xc1\x74\xeb\x20\x2b\x86\x0b\xcd\xfe\x34\xd5\x75\x61\xbb\xf7\x77\x94\xfa\xc9\x3f\x6d\x20\x59\x9e\x6f\x0f\x12\xaa\x71\xa8\xf1\xfe\x79\x37\xde\xaf\x84\x64\x92\x2c\xdf\x57\x5e\xac\xe3\x9a\x29\xdf\x05\x8a\x54\xb7\xab\xfd\xaf\xf2\xc5\xb2\x65\x50\xc2\xc9\xd7\x68\x3f\xa1\x26\x00\x97\xec\xc6\x8e\xcb\x17\x29\x89\x3a\xdd\x07\x2a\xf9\x4c\x19\x06\x9c\xe2\x2d\xec\x66\x3e\x99\x28\x92\x91\x0b\xaa\xe4\x3a\x32\xe9\x32\x33\x4f\xc9\x1e\x62\x32\x5c\x3e\x59\xdb\xea\x31\xe7\x17\xe6\xdb\x8b\x61\x8a\x66\xb3\x94\x46\x54\xad\xc6\x65\x42\x23\x93\x1e\x23\xa1\x4f\xc7\xd2\xbe\x8f\xac\x02\x62\xc0\xd7\x34\x7f\xc5\xde\x35\x89\x39\xc7\x36\xcd\xc3\x58\x36\x9d\xac\x40\x5f\x2b\x3c\x1f\x78\xb2\x75\x1b\x2f\x97\x29\x7d\xb9\x45\x77\xab\x61\xc0\x47\x78\x23\x3a\xe4\xe2\x19\x2a\x7a\xb8\xaa\x56\xfe\xb2\x9b\x08\xd5\x41\xfb\xc4\x67\xe4\xef\x6b\xc2\xf3\x73\x81\x1f\x23\x89\xfa\x63\x94\x3c\x60\xa9\xd7\xa9\x1a\xc9\xc7\xaa\xb8\x32\x48\x93\x22\xee\x77\x4d\x14\xe9\xb2\x0c\x5e\xb2\x4a\xf9\x5e\x66\x1b\x7f\x5f\xed\xca\x5e\x64\x8a\x7e\x98\xec\x50\xd2\xed\x1b\x4a\x5d\x6c\x03\x57\x86\xe5\x74\x76\xa2\x38\x35\xee\xea\xe2\xfc\x86\x22\xe8\xed\xa5\x26\xac\xa8\x48\xe3\xb5\xf1\x71\xe0\x68\xf3\x3e\xff\x59\xfa\x4d\x74\xe2\xcf\x07\x3a\x10\xfb\x2c\x56\x1b\xe4\x98\x9f\xc2\x68\x37\x9c\xca\xf4\x1a\x3d\x8e\xca\x4d\x61\xbb\xef\xa5\x71\x4c\xfc\xc3\x8e\x8e\x67\x8e\x7d\x13\x3d\x67\xa4\xa7\xbb\xc0\xa2\x87\x0a\x1f\x13\xb9\xe0\x15\x80\x55\x13\xbb\xe3\x26\xde\x13\x0f\x93\x4f\xbc\x98\xdf\x55\xf8\x0b\x1e\xce\x64\xb3\x80\x94\xe7\xd1\xc4\x53\x43\xfc\xc1\xa4\xf5\x4b\x5f\xe4\xb8\x0c\x04\xf2\x08\xcb\xae\x4f\xb6\xff\x74\x55\x64\x94\x0a\x07\x7f\xf5\xaf\x90\xd7\xc4\xd6\xbe\xaa\xa4\x19\xde\x55\x45\xa5\xc5\x30\x46\x2d\x0b\xd8\x68\x44\x50\x7c\x5c\xd1\x10\xca\xc3\x96\xb7\x32\xcc\xd5\x21\xdd\xb3\xca\xd4\xb1\xed\x3f\x85\x67\xae\xe1\x2e\xd8\x27\x3c\xf4\x0f\x7b\x79\x0f\xa3\xa6\x72\x79\xaa\x4f\x72\x1b\x8f\x16\x1b\x8d\xa7\x35\x60\x3e\xaf\xc3\x30\xe2\xd1\x9e\x99\x78\x50\x3e\xe3\x8e\xe1\xa4\x5f\xa3\x4d\x43\x05\xb4\xd7\x9e\x59\x53\xd9\xd5\xad\x89\x92\xdd\x98\xee\x68\xfe\xd0\x89\x7b\x06\x9f\x65\x14\x26\x5f\x98\xf6\x92\x76\x40\x03\x46\xe5\xc5\x21\x66\xb8\x8d\xcb\xe6\x93\x06\x2a\xb4\xb1\x09\xfb\x80\xf5\xc1\xb2\x33\x5b\x12\xcf\xdb\x4f\x54\xaf\x02\x89\x85\x68\x4f\x35\xe4\x05\xe1\xe2\xe2\xaa\xe2\x9c\x3e\x19\x78\x2d\x8a\x93\x4d\x8c\xa0\x63\x1b\xf7\x1d\x56\x08\x6b\xf6\x03\x45\x09\x3a\x54\xb1\xfc\x07\x0d\xbd\x84\xb9\x76\x2f\x0d\xf3\xb0\x47\xda\x33\x5e\xe7\x15\x4d\x7b\xe1\x98\xa2\xeb\x47\x27\xf7\xb1\xde\xfc\x28\x6a\xd2\x4c\xb7\x94\x10\x7d\xea\x78\x4b\xc1\xc2\xcf\x4e\x14\x41\xec\x1b\xc1\xd6\xfe\x58\x79\x19\xfd\x30\xeb\x25\x71\x1e\xc6\x85\x45\x28\x8d\x27\xf9\xfd\x89\xda\xbe\xa7\x15\xb3\xd0\x5b\x15\x80\x43\x2f\x59\x99\x52\xf4\xa6\xff\x97\xee\x39\x60\x28\x00\x48\x36\xda\x13\xae\xb3\xd9\x5b\x2a\xbd\x2c\xaf\x1a\x38\x32\x3e\x86\x8b\x02\x27\x0c\xd2\x59\x3e\xd6\x11\x49\x12\x87\xa2\xf6\xcc\x78\x1e\x35\xd6\x70\xd5\x8d\xf7\x8f\x92\xde\x12\xaa\xff\xe5\xf3\x65\x06\x2d\xfa\x4b\x61\xd3\x6a\x48\xf7\xf2\x70\x64\x33\xd6\x26\x80\x3d\x06\x6c\x93\xc7\xde\x69\x1d\x23\x3c\x3d\x37\xa9\x50\xef\xd0\x8d\x23\x2c\xe0\xa5\xcf\x1a\x7f\xb5\x2c\xf6\xc0\x81\x76\x54\x1c\x2b\x52\xe0\xb9\xa4\xa4\x53\x7e\xb1\x84\xcd\xbe\x0e\x76\xae\x81\x9c\x2f\x0a\x97\xdd\xc2\x83\x11\x00\x1a\x0c\x4f\x1a\xbc\xe7\x58\x34\x75\x5d\xc2\x83\x73\x35\x25\x09\x78\xf2\xeb\x6a\x32\x11\x7a\x2f\xb2\x20\xb7\xd4\xde\x5e\x5a\x98\x69\x2f\xcc\xec\xda\xaa\x21\x0a\xdc\x37\x67\x1e\xca\xce\x3b\x4f\x46\x73\x2e\x58\x5a\x1b\x30\x33\x4e\x76\xdf\xdd\xed\x8d\x5a\x95\xaa\x0c\x27\x06\x26\x1b\x03\x21\xe9\x90\xa6\x47\x66\x1c\xa0\xb4\xce\x83\xff\xe2\x56\x31\x7a\x98\x65\x8c\x2f\xf0\x71\x6d\x47\x42\x20\xae\xfc\x98\x15\x0d\x64\x85\xa7\x9d\x77\x93\x05\x0d\xd0\xe5\x9e\x19\x87\xb9\x89\x06\x00\x49\xab\x42\x89\xe2\x66\xaf\xf7\xdf\x8e\xcc\x10\x25\x26\xd9\x10\xbf\xbb\x36\x2a\xb4\x36\x74\xf5\xb0\xc6\x7f\xd8\xc0\x95\x30\xdf\xb6\x7d\xb4\xe2\x4a\x27\x26\x90\x65\xd5\xea\xb8\x50\x17\xee\x5d\x98\x6f\x0f\xcb\x14\x5d\xf0\xdc\xf2\x6c\x14\x5d\xcc\x7a\xcd\xd0\x1e\x38\xd0\x4e\x16\x17\x89\x4c\x0a\xd6\x14\x78\x77\x99\x0a\x28\xf7\x32\x92\xbf\x6d\x44\xe5\x8b\x50\xef\x81\xd2\x64\x5d\x4c\x92\x7e\x96\x17\x8b\x8b\xe0\x2b\x13\x5a\x32\x3f\x0c\xc1\xa3\x87\xa8\xd3\x6e\xe8\x69\xf7\x63\xbd\x22\xb3\x59\x45\x45\x7b\x43\xf3\xc3\x6e\xb8\x82\x64\x6e\x23\xbb\x1c\xf6\xad\xe8\x1d\x56\x94\xcd\x05\x1d\x59\x2b\x70\x1d\x68\xe7\x43\x93\xef\xa4\xfb\x87\x19\x3f\x39\x51\x21\xf7\x93\x6b\xde\x7b\x9f\x53\x62\x11\xfb\x09\xc7\x02\x2b\x3b\x4d\xa9\xb4\x4c\x75\xc8\xe5\x0c\x8a\x30\x8a\x6c\x3a\x82\x4a\xe1\xff\xaf\x8b\x99\x9b\x6b\x67\x49\x3c\x98\x56\x48\xc9\x0d\x05\x62\xd9\xd9\xf1\x93\x40\x8c\x97\x05\x8e\xef\x5a\xcd\x41\x1d\x9c\x6b\x9b\x11\x91\xa2\xb7\x3e\x71\x82\xe6\x59\x55\x13\x5c\x4c\xcb\x78\x92\x05\x3d\x91\xdd\xb0\x80\x28\x9f\x7c\x62\x9f\x6b\x1c\x99\x98\x67\x24\xf1\xa7\x0f\xd4\xe0\x26\xe4\x31\x81\x95\xba\xaf\xc4\x49\xa2\x64\xc5\xa6\x7b\xcb\xa7\x06\x5b\x3a\xdd\xf1\x09\xcc\x26\x7d\x1e\xd1\x32\x08\x0f\xd1\xe5\x78\x82\xb8\xaa\xb0\x1b\x2e\xe9\x1a\xdc\xf6\x8e\xd2\xae\xe5\xc8\x17\xa6\xe9\x11\x56\x95\x50\xd9\x7b\x0b\x74\x73\xa2\x38\xdc\x7f\xad\x09\x6d\x9c\xc4\x3d\x10\x97\x21\x08\x03\x7b\x84\x40\x83\xca\x0b\x41\x60\x73\xa7\x6e\xdd\x67\xdb\x24\xd5\xcd\xfb\x4b\xfa\x3a\x74\xbd\xd2\xf1\x69\x9a\xcd\x28\x7f\x90\x99\x0d\x1c\x8e\xda\xe3\xf7\x3c\xd3\xfd\xd0\xa6\x28\x25\xcc\x73\x7a\xfa\x6f\x54\x01\x04\x82\xb9\xc8\x78\xef\x34\xa9\xc0\x0d\xc3\xbe\xed\x96\x59\x47\x4b\xd9\x26\xfa\x90\xd8\xa9\xa6\x11\x90\xd4\x46\x4a\x79\x02\x4f\x81\x7b\x3c\x7c\x52\x07\xb7\x2c\xcc\xb7\x7b\x6e\xdc\x64\x96\x3d\xcb\x05\xe4\x55\x7c\xa2\x60\xe4\x7d\x42\x56\x64\x2d\x45\x18\x78\x81\x5c\xa2\x90\x41\x34\xbc\xa2\xa1\x8d\x38\xf8\x13\x80\x9b\x62\xa7\xd8\xd0\xf0\xa8\x8d\x40\xb7\x6a\xf6\xfa\x47\x09\xbc\x3b\x9c\xcf\xa6\x26\xa2\xd0\x64\x03\x97\x2b\x45\xfb\xc8\x9a\x5d\xe4\xbe\x78\x74\x55\xe9\xd4\x1f\x67\x8a\x26\xd6\x66\x84\xf9\xc6\x73\x3d\xaf\x64\x91\xee\x60\xbe\xc8\xf1\x98\x97\xd7\x29\x0a\x34\x0d\x11\x49\xb7\x48\x45\xcb\x4b\x44\xd3\xfd\xb0\xd1\x65\x4f\xb7\x67\x17\x6d\xea\xa9\x77\x51\x99\x7b\xa4\xca\xe9\xd7\xd5\x30\xc7\x79\x45\xa8\x91\x9b\x30\xc2\x7a\x72\x7a\x59\x6e\x0d\xc1\xe2\x60\xff\x6c\x5f\xab\x70\x9d\xd9\xec\xa9\x96\x17\x47\x9d\x28\x8c\xef\x1d\x7a\xda\xe8\xc4\xec\xe8\x28\xca\xa9\x4d\x3c\x55\x34\x98\x50\xab\x05\xbf\xdf\x33\x6b\x4a\x9d\x9b\xc7\x71\x90\x87\x4d\xd3\x64\x30\x70\x94\x9f\x26\xe7\x82\xaf\xfa\x26\x01\x8c\x85\xf7\x8c\x12\x0a\xd4\xf0\xf9\xe1\x62\x3b\x80\xf9\x9d\xb1\x09\x81\x62\xbf\x0f\x2a\x33\x9e\x8d\xc3\xf7\xf4\x5c\x50\x99\x9e\xe5\xba\xda\x7d\x3d\xcc\x0a\x25\x11\xd4\x62\xce\xb9\x69\xc4\x15\x99\x3f\xa6\xdb\x96\xde\x9b\xea\xc3\xa9\xe9\xbd\x91\x25\x02\xd6\x3d\x2a\xbe\xf8\x07\x2a\x9b\x7b\x8c\x28\x49\xa6\xf1\xfd\x20\xcf\x4d\xce\x60\xf9\x5f\x60\xe3\x5c\x9d\xfd\xc8\x8c\x53\xad\xa1\x5a\x2a\x9c\xf4\xb7\xf0\x8c\x50\x2c\x9c\xee\x6c\x35\x5a\x62\xcc\xbb\x53\x9a\xa0\xb5\xfc\x49\x27\xd9\xfd\xe2\x7f\xf5\x02\x3f\xd5\x47\x95\x84\x34\x2f\xec\x0e\xba\x50\x57\x85\x38\x74\xc8\x03\xb4\x34\x52\x02\x57\x2d\x05\x8a\x96\xe3\x53\x3f\xd7\x24\x32\x3d\x4e\x93\x71\x1a\xda\xdc\x30\xf9\xb6\xc3\x75\x29\x9e\x81\xfa\x14\x40\xdb\x64\x4b\x5b\xa6\x56\xcf\xa9\xa9\xd5\xba\x1c\xf8\xec\xe1\xf6\xa2\xc9\x7a\x21\x93\x54\x01\x5c\xb4\x9b\x42\x68\x3e\x56\xf0\xd7\xd4\x84\x99\xed\xef\xa2\x9b\x42\xc5\xe3\x36\x31\xc5\x09\x0f\xb6\xae\x85\x80\xcd\x88\xa9\x47\xe8\xad\x22\x60\x45\x09\x5e\x18\x24\x15\xa3\xf0\x86\x82\xda\x75\x93\xa8\x0f\xd0\x92\x10\xc9\xae\xeb\x01\x7c\x2d\x29\x3a\x2c\x06\x83\x90\xc9\xfa\x44\x09\x90\x2e\x50\x34\x02\x15\x25\x63\x52\xa4\xa1\x15\x1e\x2f\xac\xc7\xfb\x15\x5b\x42\x1b\x8f\x19\x03\x6a\x16\xf7\x73\xed\xe7\x57\x86\x26\x9f\x2a\xb7\x11\xb2\xbd\x6f\x23\x50\x82\x1b\xba\x46\x7b\x4d\x66\x2b\x1b\xe2\x91\xdc\xa4\xe1\xe2\x62\x86\xe0\x86\x35\x38\xb8\x7c\x84\x27\x70\x4f\xcf\xb1\xac\x4f\x14\x4b\x7f\x9d\x28\xec\xb9\x76\xdf\x62\xb6\x92\x9d\x12\x4a\x35\x67\xf5\x68\xbd\xa6\x87\xea\x99\x71\x5e\xa4\x12\xe0\x08\xf0\x83\x3e\x29\x90\x10\x27\x46\x90\xe4\x3b\x3d\x19\x4b\x8b\xa7\x22\xb0\x8d\xd0\x6c\x80\xe5\x7f\x62\xcd\x87\xed\xbb\x48\xe6\x4c\x5c\xa8\x1a\x71\x38\xa9\xfa\xfa\xfd\x24\x1d\x95\xe1\x3a\xa3\xd1\xb0\xe3\x7f\x7d\xe2\x53\x8d\x5f\x77\xe5\xf9\x3c\x0d\x6d\x7f\xa7\xdf\x49\x2c\xc2\x2b\x9b\xb1\xe5\x94\xb3\x1e\x4e\x54\xe0\x7e\x43\x9b\x82\xeb\xba\xce\xf9\x40\xf5\xdc\xfa\x09\x74\x91\x14\x71\x3a\xdb\x43\xc1\x3d\xf9\x38\xcd\x44\x91\x8d\xb1\x0e\xa5\x3b\xa8\xfa\x16\x97\x9c\x2b\x35\x59\xa8\xfb\x2c\x7f\x80\xef\xe3\x13\xe7\xa2\x30\x54\xe1\xf6\x27\x53\x29\x29\xd5\x86\xb3\xae\x3d\xbf\x92\xa4\xf9\x70\xaf\x97\xbb\x60\xa2\x48\xc4\xe4\x00\xab\xa1\xef\xf1\x2c\xf5\x3a\x50\x24\xf8\x74\xc7\x2b\xb8\xdf\xe3\xdd\x08\x17\xf1\x90\x1e\x19\xcc\x17\xaf\x11\x51\x04\xac\x52\x71\x96\x37\x87\x52\xdf\xf6\x35\x45\x00\x73\x31\x50\x4d\x82\xae\x4d\xa7\x7d\xa1\xe7\xc6\xc4\xcf\x27\xff\x0b\xad\xe4\xb7\xae\xe2\xd8\x6d\x1d\x5f\x68\x1d\x25\xcb\xa5\x11\x29\xd7\x08\xfc\xe5\x35\xd4\xe3\xb8\x91\x43\xf7\x86\xd5\xf6\xbe\xd2\x84\x7a\xa3\x4a\x2b\xad\x10\x00\xdf\x26\x77\xcb\x2d\x73\x07\x7c\x5b\x49\xd2\x25\x52\x51\x73\x4a\xb6\x13\x35\xa5\x32\xd1\x54\xe0\x69\xb8\x1c\x46\x76\x60\xb3\xa9\xf2\xe7\xb0\x17\xaf\x07\x3a\xa5\x29\xb7\x3c\x60\xed\xbf\xaf\x2a\xc6\x61\x9c\xdb\x68\x1f\x39\x7e\x38\x6b\x66\x8b\x46\xb3\xf8\x0e\x1a\x17\xfc\x2f\x81\x6f\x8c\xff\x3f\x54\xef\x11\xb9\xd3\xd6\x16\x0a\x29\xd4\x59\xae\x63\x0f\x01\x2c\x77\x82\xd2\x2e\x04\x27\x3b\xa9\x5c\xcc\x12\x34\xe8\x86\xca\xfc\x10\x39\x38\xf9\x39\xdf\xc2\x88\xed\xca\x38\x49\xf3\x0a\x0f\xdb\x8d\x40\xe1\xf9\x6f\x28\x6b\x3a\x4e\xc3\x11\x91\x48\x94\x8b\x02\xa9\x09\xd8\xbd\x24\x9f\xf6\xd0\x41\xa4\xbd\xfc\x37\x2e\x9c\x0a\xe3\xdc\xf4\xf2\x5d\xbe\x96\xc2\x0b\x57\xe8\xf6\x95\x00\xfa\x47\xea\x4d\xff\x14\xb4\x21\x9d\x5e\x47\xf9\x76\x9d\xde\xf1\x91\x19\xc1\x33\x34\x91\xb5\xac\xa4\xd6\x2c\x31\x5a\x54\xc6\x33\x69\x81\xf3\x49\x2d\xa4\x3c\x38\xd7\xce\x56\x92\x34\x9e\x72\x9b\xe8\xbf\x60\xb1\x73\x18\xe5\x3d\xe4\xfd\x04\x3c\xf6\xa4\x22\xaf\x1e\x15\xa9\x99\x52\x3d\xc3\x3f\xc2\x85\x22\xbe\xba\x51\x2d\xfd\x34\x55\x3c\x87\xc9\x28\x89\x92\x41\x52\x64\x14\x66\xe0\xb5\xdf\x55\x54\x5c\x3c\x8e\x25\x63\x6b\x1e\x5a\xb1\x12\xad\xee\x76\x72\x06\xff\xf8\xe7\xe8\x0a\x81\x16\xd8\x81\x4b\x77\xf4\x5a\x07\x3c\xdb\x7d\x4b\xb4\x57\xbe\xf7\x34\xa5\x8e\xf8\x00\x3f\x5d\xec\xf8\xed\x14\x5e\x0a\x69\x97\x5f\xda\x24\x4f\xf7\x54\xb9\xa2\x36\x7f\xa8\x5b\x81\xdf\xd4\x11\xec\x05\x5a\xc8\xa8\x75\x02\x88\x81\x8a\xdf\x0d\x85\xec\xfe\xaf\x59\x87\x0c\xae\xe1\xb1\x1e\x48\x9c\x5e\xa3\xdd\x22\x74\x38\xae\x46\xb9\xfe\x14\xca\x87\xf0\x90\xc0\x48\x3a\x24\xd1\x01\xd1\xfb\xbd\x3e\xd1\x84\x63\x5f\xd3\xe3\x36\x98\x91\x61\xd6\x93\x5a\x7e\xfa\x5c\x3b\x8c\x15\x98\xa1\x82\xad\x16\xe5\x09\x8f\x10\xc9\xd3\x70\x50\xb8\xa4\x02\x6e\x6a\xe7\x9a\x7b\xb2\x2f\x3c\x49\xaf\x02\xab\xfb\x7a\xd3\x4c\x49\x2f\x0d\x47\x36\xd3\x32\x93\xf7\x35\x75\xca\x15\x55\x26\x3f\xeb\x1c\xc5\x62\x92\xe6\x85\xf3\x51\x9c\x2f\xd0\xde\x93\xdc\xa1\x9e\x41\xcf\xb7\xcd\xc0\x8b\x44\x71\x05\x2d\x50\x00\x84\xf3\x13\x99\x0a\x34\x2b\x53\x8a\xde\xe6\x3e\xb5\x7d\x60\x6a\x36\xc9\xe2\x8a\x7e\xcc\x27\x31\x49\x77\xed\xb2\x4d\x79\xe8\x0c\xc0\xc8\x8d\x4f\x96\xfd\xf6\x8b\xb8\x6f\x46\x6c\x85\x1c\x84\xa6\xfc\x43\x3e\xa9\x04\xd5\x69\xf6\xfc\x13\xe5\xe2\x12\xc9\xba\xd6\x81\x03\xfc\x77\x77\x61\x56\x61\x1c\xf6\xad\xf9\x28\xfa\xfb\x9a\xaf\xeb\x61\xa0\xa6\x8b\xef\xaa\xee\xf0\x0d\x5a\x1b\x68\xde\x61\x14\x0b\x16\x73\x0a\xde\x0e\x5f\xf5\xa9\x4e\x43\xb6\x3d\x12\x25\xa7\x46\x8a\xd0\xcf\x3a\x7b\xbb\x64\xa3\x68\xf5\xef\xfd\xfc\xb2\x49\x63\x1b\x45\x9a\xa1\xe1\x63\xcd\xd0\xf0\x71\x03\x61\xca\x5c\xbb\x88\x57\xc2\x0c\x6f\x1d\xbb\xf8\x7c\xe0\xb5\x35\xce\xbb\x11\x81\x64\xd9\xa6\x2b\x43\x1b\x8d\x24\xfa\x83\x7d\x24\x95\x34\x39\xee\x6c\xcd\xea\x16\x66\xda\x51\x62\xf2\x21\xd1\x32\x94\x7f\x88\xd5\xfc\xad\xc0\x07\x60\xdf\x72\x2b\xb0\x88\xfb\xc4\x43\x0b\x66\x04\x6c\xbf\xd7\x11\x51\xe1\xfb\x31\x05\x88\x85\x7b\xd3\x85\x2d\x4b\x71\x32\x5e\x6c\xa9\x5a\xcf\x71\x8d\xee\x3d\xae\x66\x08\xb2\x3c\xb5\x86\xaf\xff\x0b\x8d\xf2\x5c\xb2\x09\xb3\xaf\x14\xa6\xab\x86\x91\x85\xb1\xd3\xe3\x7f\x2f\x05\x5b\xf4\x1d\x16\x66\xda\x2f\xcc\xee\x57\xdd\xfe\xfb\xe4\x45\xe8\x5d\x7d\xe5\xb3\x94\x46\xf3\x30\x6f\xe0\x01\x41\xaf\xe1\xf5\x20\xb8\x6d\xad\x4d\x55\x44\xf8\xca\x1b\x47\x88\xb1\x7d\xcd\x97\x9b\xb8\xb3\xec\x52\x54\x0d\x22\x72\xdb\xfa\x24\xe5\xa1\x9b\xd7\xe0\xd2\x61\x03\x6e\x54\xc8\x4f\xe3\xac\x88\x72\x13\xe7\xbb\xcb\x2f\x60\x6a\x05\x4d\x8f\xf7\x43\x25\xbb\xf0\x63\x3c\x50\xfc\xfe\xeb\x74\x5b\x80\x60\xdd\x81\x9d\xc6\x3c\x14\xc4\x92\xb1\x49\x98\x66\x59\xe4\xe2\xb7\x3a\x26\x62\xe7\x83\x4c\xb0\x1b\x85\x81\xf3\x7b\x4c\x3f\xcb\xc7\xb5\xe5\xea\xea\x9f\x6c\xdc\x10\xc1\xfe\x8f\x95\xde\x0d\x5d\x2a\x2c\xc4\xf9\xc0\x47\x5c\x23\x13\xf7\x86\xac\x7a\xe4\x57\xef\x3a\x9e\xbf\x48\x97\xd4\x59\xbc\xbb\x49\xb1\x3a\x28\x04\x5c\x8a\xd4\x92\x61\x9e\x7c\xb2\xd6\x30\x74\xd8\x0f\x17\x17\xc3\x5e\x11\xe5\xab\x4a\x8f\xff\x5d\xa5\xe7\xfd\xae\x93\x61\x4b\x47\xa1\x12\x2f\x63\x09\x00\x3e\x51\x76\xec\x95\x24\x05\x60\x10\x3b\x79\xfb\x1a\x8c\x9a\xab\x91\x3b\x0e\xb3\x67\x3a\x7e\xde\xee\x7c\x55\x89\x46\xc9\x24\x99\xb1\xdd\xe5\x21\x3f\xbb\xd0\x1d\x46\x08\xfd\x21\x99\x66\xc7\x90\xe9\x54\xa4\xde\xa5\xf7\x0e\x63\xc5\xf3\xbe\xfc\x0f\x81\xe6\xd2\xf3\x97\x3c\x1a\x0f\xf1\x96\xa4\x65\x51\x55\x9d\x75\x1c\xd8\x0f\x3d\xba\x79\x68\xc3\x78\x90\x44\x7d\x36\xd9\x22\x59\xa7\xf5\xeb\xdc\x98\xf9\x2b\x42\xca\x2a\x8c\x9f\x4a\x26\xed\x78\xd3\x0c\x55\x2f\x4d\x56\x62\xc9\x46\x01\x5d\xb9\xae\x64\x05\xae\x4f\xf6\xf0\x67\xda\x9f\xfb\x29\xc5\x74\xfa\x1a\x95\x1b\x1c\xec\x65\x41\x36\xc8\xce\x35\x8a\x9b\xb0\x54\xaf\x6b\x2a\xfb\x0d\x7a\x82\x8c\xfe\xa3\x5f\x40\x6f\x1c\xe8\x3f\xb7\x86\xca\x18\xde\x31\x2f\x3b\xe8\xf4\x37\xc9\x71\xf0\xf4\x09\xec\x3d\xcc\xc9\xfe\xb5\xd2\x21\xc1\x52\x3c\x02\x64\xcf\x21\x29\x5d\xc1\xed\xdc\x44\x49\xb5\xbe\x3b\x51\x12\xda\xe0\x3a\xdf\xbc\xa5\xc5\x81\x4f\x4e\x94\xe6\xe2\x3d\xf4\xfd\x11\x68\x9f\xe0\x72\x17\x0f\x06\x50\x19\x4f\x54\xe9\xf1\xd4\x91\x1a\xec\x58\xa3\x95\x23\xed\x46\x5a\x15\x08\x0b\x6f\x11\x37\x37\x3e\x7f\x0a\xfe\x93\x33\x0b\xd5\x94\xfc\x8e\x42\x26\xe5\x59\xd1\x47\x3e\xeb\x04\x14\x3c\xd9\xce\xa9\x26\xda\xf9\xd2\x88\xd9\x38\x2f\x58\x28\x50\x0b\x92\xf0\x71\x4d\x4c\xf6\xe0\x5c\x7b\x6c\xd2\x9d\xf4\x7a\x45\xf9\xb4\xe5\x68\x14\xf7\x77\x7c\x65\x1a\x5a\xc8\xa8\xdc\x5e\x55\xd3\x93\x90\xe6\xc3\xdf\x6f\xa8\x0c\x3f\x1c\x8d\x00\x92\x9a\x52\x52\xf4\x78\x01\x02\x29\xf9\x09\xf7\xc7\xa5\x2f\xcd\x86\xa6\x9f\xac\x90\x87\x29\x1f\x8e\x23\x58\xf1\x2a\x5d\xb5\x30\x92\xd8\x4e\xe2\x7e\x04\xa0\x17\x93\xd0\x06\xff\x2f\x63\xff\x1a\x64\xc9\x79\xde\x87\xe1\xd8\x33\xb3\xbb\xc0\x2e\xee\x00\x49\x5b\x2c\xd9\x47\xfe\x53\xe6\x5f\x29\x8a\x71\x6c\x2b\x49\x29\x1f\xfa\x64\x76\x28\x08\x53\xe1\x60\x6b\x76\xb5\xa0\x51\xfe\x80\x77\xfa\xbc\xe7\x9c\xc6\xf6\xe9\x3e\xe8\xcb\xcc\x0e\xa2\x2f\xa9\x52\xb9\x52\xfe\x16\xbb\xa2\xa4\x9c\xc4\xa5\x44\x89\x64\x29\x32\x25\x5a\x8a\x6c\x51\xb2\xce\x88\xa4\x78\x31\x41\x12\x24\x80\x25\x40\x10\xc0\xde\xef\xf7\xfb\x75\x36\xd5\xcf\xef\x79\xde\xf7\xe9\xe9\x5e\x57\xbe\x75\xef\xce\x39\xa7\x2f\xef\xe5\xb9\xfc\x2e\x34\x0c\x45\x91\xb6\xd9\xf1\x9c\xef\xe6\x23\xb2\x2d\xa2\xdc\xc3\x39\x91\x56\xc3\x04\x3b\x19\x4a\xc7\xbc\xeb\xb4\x76\x3c\x33\x1b\x1b\x71\x7d\x93\x0e\xb5\xda\xb7\x2e\xba\x09\x1c\x47\x79\x61\x13\xeb\x78\x8a\xca\x17\xc9\x9d\x38\x54\xb0\x0d\xd3\x24\x1d\x47\xe1\xcc\xe6\x78\x53\xe5\xdb\xd2\xd0\xff\x93\xc6\x9b\xa4\xe0\x33\x9f\x6d\xb8\x2c\x62\xe5\x67\xd1\x06\x16\xf5\xa4\x87\x8a\x81\x7d\x43\xd3\x87\xd2\x32\x81\x60\x27\x3b\xa7\x4e\x3d\xd9\xf3\x3c\xbd\x7e\x49\xe7\xbc\x12\xed\x24\x9d\x94\xb1\x61\x9c\xb5\x14\x11\xe9\xb7\xa4\x20\xa9\x98\xfb\xaf\x97\x26\x83\x55\xba\x40\x3c\xb5\xf3\x87\x22\x50\x6e\x28\x2c\xc5\xfd\xc6\x6e\x29\xbb\x5e\x98\x96\x13\xe6\x53\xa3\x90\x78\x46\x93\x39\xcf\x28\x99\x13\x5a\x81\xc3\xc8\x26\x05\x72\x08\x94\x6a\xce\xa8\x66\xc4\x4d\x05\x9b\x39\xa6\x94\x76\x4d\x52\xd8\x38\x9d\xb0\xef\x1a\xca\xa7\x28\x8f\x60\xc2\x63\x93\x17\x58\x1d\x3d\x7d\x04\xb3\x6f\x4e\x3f\xa1\xe4\x7a\x07\x03\x9b\xd9\xa4\x88\x4c\x8c\x8d\x13\x6f\x05\x9b\x3b\x1f\xb7\xb5\x5d\x62\x6b\x56\xd8\x76\x09\xd5\x4e\xae\xd6\x0a\x4c\xd7\xb3\xaa\xae\xb8\x50\x6d\xb9\x1c\x0c\xc0\xb3\xd4\x40\xba\x0f\x15\x90\xee\xc3\x86\x4e\x53\x35\x78\x28\xda\x5c\xcd\xa2\x42\xd2\x17\x04\x2b\xdf\xd5\x58\xbd\xef\x36\x72\x9e\xdd\x2f\xed\xe9\xe6\x69\x62\x18\xe2\x8c\x10\xf6\x86\x86\x2b\xdc\x98\x76\x1f\xf2\xfe\x28\xc1\x5d\x25\xb9\x22\x67\xe3\xf7\xd3\x40\xc3\x56\x5a\x59\x71\x12\x4b\x10\xc4\xdd\x01\x69\x18\xfc\x22\x21\xa5\x84\x13\xaf\x45\xe3\x59\x2d\x93\xdf\xd1\x8e\x11\x9b\x75\xf5\xf1\xfa\xb7\xb5\x19\xd9\xf6\xd3\xb0\x48\x33\xd6\x51\xe4\x96\x8f\x32\x48\xba\xf0\xd0\x3c\x2d\x4f\x63\x5f\x6d\x44\x80\x70\x01\xf7\xc8\x27\x6a\xb0\xa5\x65\x11\x47\x89\x3c\x7f\xc1\x09\xfb\xf4\xea\x42\x9b\x31\x71\x5e\x64\x06\x4a\xbb\x4b\x73\x1b\x1b\xaa\x90\xc9\xd8\x6c\x34\x2a\x4e\xb7\xf1\x84\xe2\xe8\xf5\x32\x82\xd1\x98\x40\x67\x74\x42\xa1\x3c\x0d\x47\x0a\x0d\xb1\x4c\x66\xc1\xfd\x1a\x95\xd1\xd3\x21\x0f\x37\x56\xcc\x17\x17\xbb\x99\x49\xfa\xe9\x38\x5e\xd3\x4c\xc2\x1f\x4f\xbd\x6b\xd0\x35\x95\xff\xb4\xd6\xed\x27\x36\x1b\x94\x63\x40\x62\x9c\xf9\xd7\xaf\xbc\xec\x74\xbb\x9a\x79\xdc\x2b\x5d\x7b\xc0\x8e\x27\xc0\xf6\xe2\x26\xe0\xfc\x27\x2c\x8d\x19\x6f\xa5\x79\xca\x95\xce\x6c\xf2\x5a\xba\xc6\x7a\xd4\x08\xf9\xd0\x87\x41\x5c\xf8\xc8\xba\x32\xf9\x6b\x0a\x40\xd1\xde\x12\xc5\x31\x20\x7c\xdc\xc0\xaa\xb9\x0d\xfa\x5e\x40\x5a\x8c\x6c\xe6\xf2\x4c\xcc\xe7\x8b\x0a\xb4\x70\x51\x97\xe1\xc3\xfd\xb4\xc1\xa1\x54\x88\x5a\x20\x1f\xb7\x29\x7c\x14\x99\xe9\xdb\xb1\xc9\xf6\x73\x90\xce\x78\x43\x95\x8d\xb4\x0a\x6f\x2c\x67\xe9\xfe\x2a\x19\x78\x18\xf6\x6d\xf3\x23\xde\xfb\x52\xb7\x6f\xf3\x89\x89\xb2\x19\x0f\xf6\xda\x82\x54\x40\xb0\xb0\xd5\x55\x4b\x8d\xdb\xcb\x54\xac\x44\xd9\x30\x4a\xb8\x58\xef\x8a\x92\xd5\xe7\xf8\xa4\x56\x86\xc8\x6d\x42\xa0\x1f\x94\xfb\xbf\x1d\x78\x76\xcd\xb7\x95\x16\xd2\xc7\xb5\xaa\xa6\x6a\x38\x51\x68\x91\xc6\x7d\x55\x2d\xff\x77\x24\xf2\xe0\x4c\xcb\xf7\xcd\xf9\x2d\xc8\x9b\x61\xde\x69\xe5\x37\x56\x7b\x34\x46\x3e\xa0\x17\xdf\xa6\x47\xc4\xc7\x6d\x10\x8e\x55\x13\xb3\x2b\x1f\x36\xe5\xdf\x56\xc2\x74\xbf\xdd\x86\xc1\x18\xc6\x51\x51\x05\x27\x4a\x7e\xff\x98\xf2\xf9\xbc\x4a\x5b\x26\x82\x13\x6f\xce\x5c\x66\xb6\x18\x65\x78\xa0\xd8\x97\x20\x19\xc7\xc7\xaa\x80\x3a\x32\xe1\x7e\x9b\x11\x6a\x53\xa1\x0c\x5e\x70\xfa\x20\x1a\x30\xaa\x84\x94\x2e\xb6\x99\xa3\xed\x21\xd4\x52\xc7\x17\xe6\x7f\x84\x5e\x1c\x9f\x28\x42\x70\x61\xf6\x5b\x98\xb1\x38\x11\xbb\x17\x17\xbd\x93\xe0\x92\x6f\x7e\xf8\xbc\xfe\xb6\xca\x45\x2e\x06\x4a\x3c\xff\x42\x4d\x4a\x0c\x3f\x29\x21\xbb\x22\xc2\xf5\xd7\x76\xd0\xeb\x44\xea\xf0\xa6\x6e\x0b\x7c\x1f\xdf\x80\x8d\xf7\xe3\xc0\x77\xb5\xb7\x02\x49\x5c\x2b\xd2\xba\xd4\xc0\xf3\x4d\x00\x94\x14\x0b\x7c\xcf\x77\xbc\x47\x0d\x0b\x7c\xe0\x6e\x63\xad\xae\x96\x87\xb0\xcc\x96\xdd\x6e\xd0\x66\xe5\xf6\xb8\x82\x37\xfc\xc2\xd3\xd5\xd7\xa1\xba\xf5\x57\xca\xe2\xee\x02\xd2\x07\xd6\x1c\xa1\x5c\x44\xf4\x47\xe8\x7b\x31\xe3\x8e\x2b\x39\xe3\x2f\x4f\x6b\x86\xa4\xd5\x3d\x02\x46\xcd\xdc\x36\xc4\x35\x77\xb5\xfd\x13\x0b\xb6\xe1\xd7\x6f\xd3\x33\x42\xa4\x34\xb3\xee\x7b\x0e\x1f\x05\xaa\x7c\xfc\x11\x9e\x97\xc3\xfb\x57\xcf\x0b\x89\xd7\x96\xf5\x96\xe6\x7a\x94\x90\xa8\x55\x94\x0a\x60\x11\x88\xbd\x0f\x95\xd9\xe8\x87\x53\xc5\x29\x4f\x33\x9b\x50\xa0\x80\xdb\x80\x9e\x13\x1f\x37\x00\xaa\x2f\x2e\x76\x97\x05\x7b\x29\x3d\xc0\x93\x81\x82\x9a\x9e\x9c\xee\xf4\x36\x95\xf9\xdf\x54\x48\x9b\x19\x2a\x4d\x21\xf6\xfc\x3a\xd1\x6e\x1d\x92\xbb\xca\x07\x11\x30\x5c\xc3\x70\x02\x96\x66\x7b\x8f\x80\x09\xa8\x2a\xdd\x0b\x94\x42\xc2\x9b\x8c\x37\x40\xaf\x88\xad\x40\x44\x6c\xcd\x1b\x8e\x6e\x59\x27\x32\xac\x10\x74\xaa\xb7\x8e\x95\xf0\x41\xe0\xa3\xee\xad\xf4\xdc\xa9\xbc\x7b\xe8\xef\x23\xd7\xe6\xaf\xe5\x2a\xbc\x04\xb5\xf4\x30\xb1\x5a\xf0\x2d\x4b\x45\x55\x83\xa5\x34\xf8\xec\x36\x06\x14\x1b\xb9\x29\x57\xcd\xed\x3d\x1f\x7c\xdc\xa3\x41\x4f\xed\xd9\x5b\x9f\x26\x42\x3b\x32\xf7\xdf\x0c\xbc\xf5\xf6\x28\x5d\x49\x0c\xe9\x1c\xa8\x4a\xee\x47\x8a\xf5\xf4\x51\x4d\x38\xda\xc4\x51\xb1\xb6\x5d\x25\x43\x1f\x07\x4a\x84\xe8\x03\x5a\x18\xd8\xa6\x8c\x06\xb3\x58\x96\x75\x16\x17\x37\x48\x22\x76\xe3\x06\x3d\x45\x19\xe4\xca\x1d\x25\x7c\xbd\x8c\x32\xbb\xa3\x7a\x7c\xda\xc7\x83\xff\x32\x50\x03\xee\x30\xfd\x8c\xf3\x6a\x70\x40\xc7\xc3\x48\x24\xb1\x84\xc2\x1f\x01\xd3\x84\x5d\x39\xf8\xd3\xaa\x33\x77\x0b\x60\x17\xfe\x84\x7a\x2c\x63\x4b\x6e\x0c\x26\xee\x60\x38\xa0\x46\x7f\x15\x8d\x26\x3e\x71\x39\xa3\x89\xe3\x68\x68\x8a\x34\xab\xfb\xbd\x2f\x69\xbf\x77\x9f\xb1\xad\xd8\xc4\x24\x45\x3e\xe3\xcb\x47\x57\xe8\x8a\xd0\xc8\xfd\x1e\x66\xa1\xf0\x8c\x7c\x2a\x36\x89\xc2\xfd\xe5\x04\xc4\x6f\xe7\x00\xe4\x5a\x60\xac\xba\x2a\x78\x4d\xd9\x65\xf2\x49\x66\x4d\x3f\xdf\xda\x51\x9a\x78\xca\xae\xf3\x04\x16\x03\x76\xd3\xa4\x27\xa9\xa8\xc3\xaf\x38\x78\x75\x0b\xe0\xb4\x6f\xc3\xcf\xd3\xed\x62\x1b\xe0\x5c\x90\x4f\x34\xaf\x37\x2e\xd2\xa1\xad\x42\xa7\x6d\x9b\xda\xf2\x2f\x38\x6c\x40\xc7\x15\xa1\x66\x7b\x3e\x56\x38\xa7\x65\xb0\xb6\xf4\x94\x40\xd6\x96\x75\x1f\x95\x15\x36\x49\xaa\xe0\x96\x3d\x6e\xc4\xa0\x53\xaf\x6b\x78\xf9\x52\xad\x6e\xad\xc2\x8c\x27\x26\x33\xa4\x7b\xf6\x10\x6b\xa2\xc7\x23\xa5\xd8\x45\xc5\x7d\xe5\xd2\xb7\xe4\xac\x75\xaa\x8f\x60\x4d\x38\xaa\xa2\xa7\x28\x8e\xcb\x9c\x74\xc4\x9c\x6e\x25\x92\x50\x3e\x76\x41\x81\x19\xa6\x49\xf4\x06\xdf\x8a\xb3\xdd\xdb\x37\xe7\xd0\xb4\x3a\x2c\x69\x44\xed\xd5\x40\xed\xe6\x11\x15\x88\xab\x99\x06\xd3\xfc\x3b\x4d\x72\xfe\xae\xee\x28\xe5\xc8\x9c\xa1\x54\x6a\xbe\x9f\x50\x2b\xf8\x38\x32\xe3\xa8\x53\x7b\x96\x1e\x54\x75\x5c\xdb\x06\x87\x59\x9a\xe7\x33\x3e\x30\x43\xa2\x2e\x50\x33\xaf\x41\xf1\x95\x87\x96\x06\xc0\x6a\x9b\x99\xd1\xfe\x7b\x1d\x67\xac\xf1\x28\xa2\x54\xcc\x91\x2d\xeb\xce\x79\xbb\x8a\xb4\x79\x33\xc2\xc6\xf2\x55\xb5\xc9\x7c\x55\x45\xef\xe3\xb4\x6f\x59\x54\xa8\x7a\xb8\x20\x56\x5f\xc7\xaa\xc2\x27\xaa\x14\xb6\x9a\xd9\xbc\x88\x2d\x33\x4c\x01\xe9\xda\xa2\x18\x12\x80\x69\x89\x8d\xbd\xa7\x67\xe6\x54\x9c\x7d\x71\x71\xe3\x56\x35\xa8\x37\x6e\x35\x30\x82\xbb\x97\x76\x57\x53\x27\x16\xd1\x8d\x57\x7c\xb7\xc3\x0f\xf6\xc3\x8d\xd0\xed\x0b\x5f\xea\x8e\xca\x64\x98\xad\xe9\xfc\x00\x7a\xf5\x7c\xac\x1c\x4a\xb2\x94\x9e\x49\x35\x2e\x11\x75\x7e\x59\x95\xc7\xbe\xac\xd2\xc2\x95\x74\xcd\x0c\x59\xb9\xcf\x95\xe2\xaa\xef\x97\x52\xdc\xe6\xab\xdf\x37\xf7\x42\x77\xcd\x1a\x62\x81\x20\x20\x02\x5c\x13\x30\x55\x3e\x56\xab\x68\x6c\x57\x6c\x52\x8c\x9c\x80\x27\x47\x69\x81\x12\x09\xbd\xd0\x98\x90\x68\xe8\xc5\xa9\xf1\x80\x48\x71\xa3\xe9\x38\x47\xac\x53\xd3\x4f\xd6\x8b\x60\x36\x0b\x63\x13\x8d\x73\x1d\xa7\x5d\xac\x89\x30\x37\x19\x1f\xbb\x9d\xfc\x1e\x37\x70\x30\x75\xef\x07\x4a\x2d\xee\x7e\x8d\xb7\x54\x96\xe3\x59\xb5\x59\x33\x35\x16\x6b\x17\x44\x97\xf8\x78\xaa\x1c\xb7\xce\xd6\x92\xa3\x34\x2d\xb6\xd2\x7f\x82\xb5\xc3\xc4\x0b\x3e\x51\x5b\x13\x86\x9b\x70\x4c\x6b\x0d\x9f\xb6\xba\x40\xb5\x06\x72\x2a\x88\x4b\x00\x78\x99\x8f\xa7\xcf\x39\xc4\x55\x9e\x86\x11\x3c\xa5\xf9\xa5\x60\x6d\xf9\xd7\x53\x25\x39\xff\xaf\xbd\xee\x41\x94\x53\x26\xd0\xa1\x5a\xbf\xf8\x45\xd3\x9f\xf2\x49\x8b\x3c\xe8\x9e\x2e\x71\x08\x4c\x94\x20\x98\x6b\x33\xfe\x93\x1f\x18\x59\x53\x45\x7d\x10\xdc\xc5\xc6\x7a\x1f\x61\x9b\x70\x97\x55\x2f\x7e\x67\x8f\x6e\x50\xca\xe4\x1e\x8c\x6c\xfa\x9c\xc2\x03\x56\xf1\x18\xf1\x02\xf8\x78\xdd\x57\x6b\xc0\x34\x17\x6c\x39\x7a\x7e\x7f\x81\x10\x8f\x4f\xda\xf2\xbb\x68\x3c\x76\x75\x24\xc4\x33\x47\x95\x2e\xc5\x51\xd7\xfc\x35\xfd\x15\x93\x84\xac\x96\x26\x9d\xfc\xef\x6b\x5d\x59\x68\x12\x4a\x33\x6b\x33\x43\x6a\xf7\x67\xba\xbb\x76\x51\xd9\x40\x6f\x27\xd2\x19\xdd\x5c\xad\xaa\xa6\x89\x3d\x60\x86\x43\x9b\x79\x21\x56\x8c\x90\x19\xd5\xd0\x9e\xe9\xd5\x06\x5f\x06\x5a\x89\xc8\x07\x56\x39\x86\xe8\x0a\x3e\xab\x3c\x7a\xc7\xb6\x18\x45\xc9\x90\x74\xd3\x9d\x63\xb4\xd3\x5e\xe0\x74\x0e\x1f\xfc\xa9\xd6\x59\x3d\xa3\x5a\x0b\xb7\x29\xcd\x41\x4d\xf9\xa4\x0a\x64\xc6\x29\xb8\x47\x52\x8b\xda\xff\xf4\xba\x67\xc7\xee\x7f\xba\xa7\x18\x7b\xe6\x40\x34\x2e\xc7\x98\xd2\x2c\x7c\x42\x97\x21\x22\x28\x2d\xbd\xfa\xcc\xc6\x65\x58\x98\x04\xe2\x61\xa2\x3f\xa5\x70\xea\xe7\xd4\xaa\xd9\x04\xce\xef\xda\x05\x92\x09\x7d\x1a\x29\xe2\x3f\x0b\x14\xb5\xf4\x03\xec\xf7\x22\xf1\xe3\x6d\xd5\x6d\x41\x7e\x43\xae\x53\x06\xb9\x40\xc9\x43\x5a\xe4\xd3\x46\x51\xb1\x55\x51\xee\x41\x87\x43\xd8\xb7\xbd\xe7\x21\xf2\xa8\xe2\xe3\x6f\x40\x4e\x46\xcc\x7f\xac\xb1\x0a\xbc\x3c\xbf\xb7\x3b\x88\x9c\x2a\x8a\x10\x65\x15\x1b\x87\x37\x19\xb1\x91\x6f\x42\x7c\xc8\x70\x5e\xc6\x12\xc2\x81\x1b\x81\xe2\xc9\xde\x98\x3e\xa9\xc4\x29\xb2\xa2\xc6\xf0\x67\xef\x7c\x3e\x09\xfe\xee\x43\xf6\x79\x16\x0f\x4d\x57\xa2\x24\x8c\x78\x56\x39\x93\x56\xdf\x2e\xbb\xd0\x78\x35\xbf\xdc\x7d\xad\x4c\xa2\x14\xb5\x2b\x60\x02\xd1\x02\x40\xeb\x83\x0b\xc2\xdc\x2a\x74\x6f\xa6\x1f\xe5\x21\xd5\xab\xdd\xfb\x3c\x81\x3b\x12\x6b\x14\x4f\x30\x5d\x2e\xf3\xd1\x33\x8a\xb0\xfc\x15\x2c\xe2\x00\x4e\x81\x70\xee\x18\xb6\x5e\xff\x1c\x7e\xab\x6e\x65\xac\xe6\x82\xe8\x3c\xd1\xb8\x71\xf1\x71\xf5\x52\xb8\xc5\x1c\xf8\x6a\x23\x66\x0c\x32\x13\x48\x34\x73\xfb\x06\x36\xcd\xcc\x80\x20\x3b\x3c\x5e\xcc\x67\xea\x49\x61\x95\xd6\x01\xb8\x7c\x97\x02\x69\x11\x12\xf6\x35\x8e\x0b\xaa\xac\x33\x28\x63\x20\xc4\x5f\x70\xe6\x19\x1d\x27\x4c\xf0\xeb\x53\x4d\xbd\x2b\x93\x3e\xed\x13\x68\x35\x22\x47\x78\x4f\x89\xbc\x3e\x82\xeb\x50\x46\x92\x3e\x8a\xa8\xc6\xac\x68\x01\xfb\xda\xa7\xae\xa6\x66\xe9\xb2\xcd\x8a\x3c\x4d\x94\x5d\xdc\x41\xd5\x3b\x3b\xd8\xe2\x14\xb5\x7b\x4f\x77\x60\x78\x4f\x71\x24\x42\x4f\x28\x74\x7b\x4a\x1e\x11\xee\x85\xe3\x42\x26\xc4\x29\x5a\xd4\x59\x2f\xe7\x55\xc5\x8f\xb3\xaa\x97\x7a\x16\x84\x07\xc7\x58\x77\x80\xfe\x59\x9a\x93\x22\x5f\xfd\xd0\xd6\x41\x61\x32\x27\x4f\x27\xfa\x82\x1d\x25\xc8\xa9\x58\x66\xc7\x55\x52\x91\xac\xd9\x8e\xc2\x96\x9e\x09\xea\xf6\xbf\x4f\x29\x77\x73\x5b\x54\x09\xb8\xef\x19\xb2\xa4\x0e\x93\x8b\xe9\xc7\xb0\x8a\xb0\x63\x3f\x22\x8b\x1b\x81\x0a\x33\x6e\xd0\xd0\xc2\x32\x70\x4a\x6d\x32\x67\x15\xbe\xa2\x4c\xa2\xe2\x49\x8d\x61\xe7\xf2\xbb\x28\x9d\x6f\x66\x6f\x0b\x98\xe4\x9b\x58\x2d\x51\xa5\xe8\xa0\xfa\x8e\xfa\xfd\x5b\xd8\xd6\x31\x5b\x37\x02\xef\x6f\x72\x2d\xf0\xe2\xdc\x97\x02\xc5\x58\x3a\x4e\xd7\x89\x6d\xfc\x81\xaa\x6c\x7f\x13\x93\xc9\x39\xde\x29\x3b\xfe\x87\xf7\x74\x56\x22\x5b\xe4\xd0\xe5\xc7\x5e\x7f\x8a\x8b\x30\x48\x19\xd9\x18\xdb\x09\xc7\xef\xf2\x3d\xd9\x36\xd7\x08\x5a\xc5\x38\x80\x52\xdd\x2c\x0f\x90\x7a\x5e\x59\x4c\xa7\xfb\x6d\xbe\x9a\x8e\x4d\xb2\xad\xa3\x64\xe5\xab\x9b\x46\x82\xdd\xa1\xb5\x85\x8f\x29\xec\x13\x1f\x1d\x05\x85\xf8\x37\x74\x4d\x02\xa0\x92\x78\x2e\x2f\x97\xc3\x74\x3c\x8e\x8a\xc2\x72\xc3\x53\x5b\x0c\x62\x85\x7a\xb2\x57\x5b\xa1\xaa\x47\x87\xae\xf2\x7d\x17\x41\x8d\xed\x38\xcd\xa8\xd7\xb3\x7b\xe3\x92\x22\x13\x3d\xdf\xf3\xbc\xdb\xa7\x1b\xa2\x2d\xfb\xe6\x5e\xe9\xc6\x56\x94\x2e\x51\x5c\x45\x08\xcb\xc7\x6d\xc9\xf6\x24\x4b\x43\x6b\x7d\x6c\x8f\x60\xe1\xa4\xf2\x79\x3e\xe9\x50\xf3\xe3\xa8\xdf\x37\x00\x20\x39\x90\xb1\xeb\xb4\x3f\xd6\x80\x2d\xcd\xef\xed\xc6\x51\x11\x0d\x59\xb4\xdb\x51\xd0\x4e\x29\xa1\x2e\x2d\x47\x9e\xef\x8f\xc6\x13\x4e\xa9\x50\xfd\xbb\xa5\xe0\x71\xb7\x02\x79\xc8\x61\x9a\x84\x51\x1c\x19\x22\x61\xf8\x52\x0d\x28\xf3\x7c\x5c\x3d\x1c\x07\x70\x1f\x64\x06\x5e\x9e\x25\x4c\x7a\x5e\x71\x68\x4d\xfa\x2d\xc1\x71\xfa\x0a\x81\x1d\x4f\x46\x26\x8f\x72\xaa\xcc\xbb\x42\xcd\xcb\xfe\x44\x39\x0b\xa0\xa6\x43\x52\x61\x8e\xdd\xb4\x34\xe7\xd8\x4d\xca\x63\x27\x2b\xc3\xfd\xd6\x92\xb7\x83\xb3\x0d\x58\x58\x70\xb6\x01\x0d\xd2\x7c\x15\x95\xa4\x13\x40\x33\x94\xa0\x8d\xaf\x46\x79\xa4\x73\x61\xf2\xfd\x39\x74\x10\x75\x57\x1d\xa1\xed\x65\x9a\x92\xd8\x37\x3f\x56\xac\xfb\xe3\x1a\x6e\x7c\xa5\x4d\xe0\xa0\x88\xe2\xa2\xd6\xa7\xac\xb1\x2e\x5a\x45\xb2\xc3\x91\x19\x4f\xcc\x30\xb1\x33\x9e\x77\xc6\x24\x53\x9d\x77\x00\x8f\x76\x2b\xa8\x29\x7d\x95\x85\x15\xb2\x83\xab\xb0\x78\x46\x72\xb3\x01\xbb\xf7\x25\x46\x41\x77\x3c\xba\x1e\x44\x31\xa9\x6a\x6f\xae\xb5\xbc\xfa\x6a\x37\x37\xe1\x7e\x65\x74\x5a\x1f\xe9\x8a\x6a\x94\x8e\x27\xb1\x2d\x6c\xff\x31\x55\x1b\x3b\x44\x2f\x4c\xe4\xcb\x7c\xc5\xf0\xdb\xb8\x41\x66\xff\xd1\xfb\x47\x68\x72\x94\xfa\x19\xe0\x10\xdc\x08\x94\x8a\xc7\x0d\x8a\x33\x9c\x35\xbe\x57\xbc\x39\xde\xe8\x7a\x2c\xcd\x75\x73\x6b\xf2\xd4\x29\x02\x4b\xdf\xc6\x5f\xcb\x31\x25\x1c\x3f\x88\x48\x8d\x80\x6a\x8c\xe8\xd0\xad\x6b\xfd\xff\x43\xda\x96\x9a\x1d\x6c\x39\xa5\xa0\x1b\xe2\xde\x45\x63\x34\x54\x8b\x4b\x3f\x33\xab\x2c\x1d\x2f\x90\xd2\xea\xf6\x04\xe8\xf3\xb8\xab\xbf\x2e\x97\x63\x24\x5d\x5a\x36\xcc\xe9\x84\xb8\x00\xe3\x5f\xfa\x5c\x2d\xb1\x61\x3f\x2d\xaa\xf8\xd3\x41\x8f\x7e\x4c\x37\x28\x9a\xaf\xcf\x2a\xb3\x5a\x6b\x8a\xb1\x4d\x8a\xed\xde\x16\x18\xa6\x27\x8e\x48\xaa\x45\x08\xaa\x2f\x41\x3c\x75\x4f\x6d\x6c\x1f\x61\xc7\x64\x76\x46\x50\xa3\x6a\x48\xdc\x92\x59\x58\x29\x6c\xef\x7c\x71\xde\x43\x1e\x84\x50\x73\xef\xb9\x9e\x5f\x9c\xb8\x19\xe0\xf8\xf9\x0b\x0b\xce\x1f\x55\xed\xcc\x1b\x78\x11\x78\x10\xf7\x14\x79\xc7\xe6\x13\x5b\x45\xdf\xf1\x1a\x55\x65\x05\xab\xe0\x43\x81\xeb\xb4\xdb\x60\x36\x1d\x0b\x6a\x70\x16\x1f\x47\xfd\xb1\x36\xe3\xbd\xa9\x50\x11\x13\x53\x64\x51\x98\x0e\x3a\x5e\x4c\xe9\xac\x56\x18\x3f\xeb\x42\xb5\xcc\xe0\x32\x66\x3c\x64\x10\xdc\x42\x87\xf3\x5f\x58\x70\xc2\x29\x7e\xee\xf6\xa3\x7c\x1c\xe5\x39\xc4\xe2\xe6\xb9\x28\x87\xc2\x3e\x1f\x37\x56\xb7\x57\x5f\xed\x26\x76\x95\x55\x5d\xa4\x10\xa5\xf9\x1d\x9b\xa7\xee\x2f\x74\xf3\x51\xba\xca\xc8\x02\x84\x3d\x77\x02\xa5\x8a\x70\x52\x09\x98\x9c\x57\x69\x44\x31\xb2\xc9\x4e\xdf\xe6\x3e\xaa\xc5\x10\x4f\xe0\x0b\x98\xa3\xc1\x51\x1e\xa2\x20\x68\x19\xa0\xde\x7c\x4f\x83\xcb\x31\x8b\x45\xa5\x06\xed\x08\x59\x6e\x14\x44\xe5\xab\x8a\xa7\xb5\x7d\x5d\x21\x49\x2f\x2b\x2e\xe1\xeb\xa5\xcd\x21\x91\x5f\xfd\x98\xb3\xbf\x53\xaa\xd2\xb8\x24\x65\x9d\xfc\x82\xd3\x22\xf0\x3b\x8b\x3d\x60\xaa\xc5\x6a\x66\xb3\x6f\x1e\xda\x8d\x0f\x02\x8d\x12\x68\xd1\x40\x4a\xd2\xc2\x2c\xf3\x9b\x70\x4a\x3c\x5e\x95\x47\x01\x70\xd7\xd2\xfd\xf4\x23\x35\x77\x21\x64\xb6\x77\x83\x2a\xf3\x11\xaa\x7d\x8b\xfa\xe6\x4a\x3a\x8e\x0a\x91\x49\x51\x86\xe0\x2f\xd4\x9a\xc5\x1b\x87\xda\x4a\x3e\x59\xb4\x62\x37\x99\xad\x1d\x99\x2a\x2a\xed\x91\x06\x98\xef\x57\x5e\xee\x92\xab\xd1\xae\x5d\x0e\x72\x47\x17\x2b\xdc\x2a\x47\xb0\x8b\x0a\xe7\xe4\xe2\x04\x19\x3d\x00\xe3\xf2\x66\xcd\xea\x85\x85\x2a\xde\x7c\x42\x29\x73\xb3\x57\xab\xf8\x16\x68\x3b\xd3\xff\x1d\x2f\x0c\xa1\xc0\x79\x95\x79\xb1\x91\x3a\x5b\xd9\x53\x12\x87\x50\xfa\x0e\x96\x25\xa9\x64\x57\xcf\x1a\x69\x0b\x0a\xf8\x28\xe6\xf3\xad\x63\xd2\xdf\xd4\xf0\xdb\xe3\x34\x83\x10\x1f\x5e\x56\x5d\xae\x22\x33\x49\x3e\xb0\x19\x5a\x02\x28\x62\x1e\xd7\x36\xd5\x4a\x51\xe4\xcf\xfd\x62\x60\xa9\x94\x9b\x6b\xf3\x1a\x56\x6e\xc6\xc8\x3a\x5a\x03\x83\xf9\x61\x12\x15\xa3\xad\xda\x89\x44\xeb\x09\xff\x70\xaa\xb2\xc0\x0f\x94\x9e\xe4\x07\x78\x8e\x48\xc3\x9b\x5e\x55\xfb\xe6\x16\xbb\x45\x16\x8d\x1d\x59\x44\x90\x2e\x1d\xa7\xb4\x73\xd1\x37\x6e\x62\x93\xef\x67\xad\x78\x68\x13\x30\x1b\x8b\x4f\x1a\xa1\xf3\xd2\x5c\xd7\xbe\x5e\x72\xf9\x03\xa3\xfb\xc3\xc0\x8f\xf4\x0f\x6b\x55\x67\x13\xe7\xcf\xf8\xce\xd2\x75\xbc\x0d\x8c\xe8\x2d\x50\x3d\x40\xad\xa8\xd3\xa3\x90\x11\x4b\xd2\xfb\xd4\x67\x15\xb0\x16\x25\x12\x82\xe2\x52\xdb\x15\xec\xe5\x31\x2e\x0e\xf2\x7a\xc4\x6b\x1d\x8d\x12\x64\x6b\x7f\x34\x55\xc4\x17\x3c\x4f\xfc\xc8\xef\xe9\x0d\xe6\x02\x46\x1f\xf7\xbf\x50\xb2\x10\xd7\x9c\x6a\x98\x88\xce\x18\xbd\x5d\xc9\xdf\xdb\x1e\x7b\x68\x94\x4d\x80\x02\x66\x7b\x9a\xa0\x8c\x18\x13\x9a\x49\x19\x87\x29\x92\x67\x21\xa5\x55\x17\x2b\x9c\x34\x89\xe1\x07\x65\xd2\x37\xd5\x26\x6e\x62\xae\x0b\xb8\x3e\xad\xaf\x4a\xb7\x81\x17\x43\x53\x54\xc1\x7c\x3a\x19\x45\xe1\x43\xd5\x4f\x14\x5b\x1e\x52\x50\x84\x64\x91\x49\xfa\x27\x78\x4a\x92\x14\x29\x3a\xd3\x61\x2d\xb0\xf7\x01\xd2\x3d\x3e\x09\x14\xda\xed\xdb\x14\xe1\xe1\x91\xff\x70\xea\x8d\x3e\xaf\xd1\xdb\x63\x6d\x9b\xa9\x2f\xfa\xfe\x8b\x96\xd1\xfc\x42\x37\x2f\xd2\x2c\x92\x06\x98\x2c\x9c\x8a\x26\x70\x3e\x78\x46\x07\xc7\x11\x51\xb7\xe8\x2a\x9c\xf1\x9a\xb7\x3f\xbc\xa2\xfe\x38\x1f\x45\x93\x89\x73\x09\xc1\xea\xf3\x40\xd5\x95\xae\x4d\x7d\x3d\xf3\xb8\x7b\x77\x13\x13\xee\x37\x43\x99\x5d\x08\x6b\x50\x65\xe1\x63\xed\xcf\x6f\x56\xd2\x2c\x2a\x2c\x3a\x27\x82\x6f\xf3\x15\x53\x0e\xa8\x90\x72\x9c\x0d\xea\x0a\xb2\xce\xca\xec\xb6\xf2\x19\xa9\xbf\x56\x17\x2d\x82\x87\xc2\xc7\x81\x77\xc7\x1a\x9b\xa4\x1c\x18\x4a\xe8\x32\xb8\x1e\x21\x47\xf8\x70\xaa\x0c\xa4\x3f\xac\x29\xd0\xa7\x39\x1a\xe4\x62\xf9\xa6\xd8\x99\x17\x14\xea\xc9\x46\x31\x61\xbb\xc4\x93\xa1\xe3\xcc\xc0\x6e\x2b\x15\xa3\x77\xa8\x54\x2f\x96\x94\xbe\xe1\x58\x8c\xca\x7c\x27\x3d\x14\x00\x8d\x0e\xd2\x67\x9c\x05\xe0\xa2\xc8\xbe\x72\xd1\x13\xe3\xf5\xba\xd6\x6d\xfd\x0b\x55\x80\x44\xc1\x05\xc7\x97\xb1\x57\x62\x01\xf9\x0f\x18\xa7\x48\xa1\xaf\x4c\x55\x2f\xfe\x43\x05\xac\xba\x13\x3c\x57\xf3\x7c\xcb\x80\x3a\xa5\x45\x09\x31\x3b\x22\x2e\x3e\x6e\x13\x1a\x22\x80\xf1\xd8\x14\xa3\x8e\x82\xb2\xde\x99\xfa\x56\xfc\x1d\xf5\xe8\x4c\xd6\x7f\xce\xd3\x26\xae\xd5\x4d\xbd\x28\xea\x12\x44\xbb\xd7\x98\xd8\x41\x0c\x16\x51\x2c\xab\x82\x7f\xac\x14\xb7\xe8\x3e\x28\xc6\xfd\x8d\x4f\xa3\xb2\x89\x62\xd9\x5b\xca\x15\xfc\xbd\x40\xcd\x50\x06\x40\x22\x50\x7d\x14\xf8\x04\x60\xaf\x98\xf1\x87\x64\xeb\x30\x45\xd2\x08\x1b\x58\xe9\x12\x4b\xef\xb3\x4c\x80\x42\xad\xeb\xe6\xd4\x4b\x41\xdc\x44\x11\xd2\x79\x44\x78\x9f\x84\xd9\x75\x99\x3d\x2b\x51\x1a\x5b\x11\x9b\xc2\x24\xd8\xd2\x73\x70\x9f\x03\xd8\xfc\x79\x6f\x53\x85\x46\x53\x8a\x53\x0c\xae\xe8\x5e\xa0\x54\x3d\xce\xd4\x57\x73\xb5\x9d\x8f\xd2\x32\x37\x49\x3f\xd7\x34\xee\xbb\xb8\x4b\xf4\xf8\x79\x55\x93\x37\xfb\xa4\xab\xaf\xa6\x86\x25\x49\x3c\xc1\xa3\xba\x4a\x29\x14\x3f\xaf\xb2\x2c\xd3\x8f\xa0\x00\xbd\xdd\xbd\x8a\x59\xa4\xad\x08\x7c\x3a\x60\xbb\x63\x42\x80\x45\x8d\xc8\x02\x18\x68\x94\xc9\xce\xa0\xca\x88\x0c\xf3\x98\x46\x0d\xde\x54\x3d\x28\xa8\xcd\x3f\xd6\xf9\xc2\x97\xf8\x91\xcf\xae\x2b\x9e\xd7\x4f\xb5\xc7\x89\xf0\xd4\xf0\x2c\xb7\x43\x98\xc8\x71\xc5\x9d\xa5\x01\x90\x2b\xfc\xef\x3a\x61\xfa\x1d\x7a\x13\xc2\x30\x68\xc6\x9a\x7b\xba\x79\x9c\xae\x4a\x4f\x12\x7b\x24\xeb\xa6\xf2\xc9\x7a\x1b\xa1\x65\x64\x21\x39\x8e\x8b\xc3\xb8\xfb\xca\x54\x91\x6b\xbf\xa2\x5c\x9c\x62\xb3\x6c\x63\xdb\xdf\xd6\x71\x0a\x9f\x4f\xd2\x42\x8b\x08\xe9\xbc\x52\x0e\xe6\x34\x4d\x10\x1e\xf8\x76\x27\x3c\xb0\xe4\xe1\x1d\x2d\xa5\x91\x41\x94\x44\xf9\xa8\xe3\x19\x62\x67\x54\xcf\xf0\x8c\x76\x8c\x8e\x56\xec\x93\x04\xbc\x42\xab\x9b\x4b\xa7\x52\xf4\x44\x8a\x83\xad\xe3\x10\xad\x48\xc8\x30\x6f\xd3\x2b\xc7\x2e\xf8\x88\xe2\x39\xdd\xd1\xfa\xb5\x77\xb5\xf1\xca\x91\xa9\x77\x87\x85\xab\xb2\xe0\x79\x94\x60\xed\x21\xea\x53\x62\x4c\x73\x7b\x8f\x0d\x59\xa6\x3a\x38\x6b\xc3\xf1\x87\x36\x31\x59\x94\xd2\x1c\x44\xa0\xbd\x81\x78\x1a\x63\x91\xe1\xa8\xc2\x1a\x70\x44\xb1\x6a\x6f\x35\x31\xd5\xab\x50\x0a\xac\xa1\x9b\xce\x2b\x87\xc3\x6b\xad\xa8\x05\xfb\x7a\x19\x91\xc7\x10\xc2\x1e\xac\xf6\x40\x61\xf2\x71\x5d\xa7\xa3\xca\x83\x56\x2c\xe4\xe9\x79\x8b\xa4\x07\x23\xdb\xe5\x93\xca\x10\x36\xcd\xed\x0e\xba\x05\xa9\x18\xd2\xb3\xe5\x7a\x7c\xa0\x9a\xcc\xff\x22\xf0\xad\x97\xff\x13\x03\x1e\xaf\x03\x64\x2c\xd7\x13\xac\x9e\x00\x1e\x34\x57\x23\x1c\xca\x5e\x79\x00\xfb\xec\xef\xed\xe9\xf3\xca\xa7\xb5\x20\x36\xb5\x33\xb9\xc7\xf4\xfa\x40\x99\x67\x7e\xd0\x00\xb9\xcf\xef\xed\x8e\x53\xdc\xaf\x92\xb4\x3c\xa6\x24\x38\x8e\xa9\x7e\xca\xeb\xa5\x5d\xb6\x21\x81\x0f\x58\x05\x81\xd6\x12\xa7\x88\xb0\x24\xdb\xe1\x79\xb5\x4d\x9e\x77\xce\x5b\x83\x28\xb6\x8f\xd2\xcf\x30\x9c\x98\x86\x2b\xd6\xea\x99\x9e\x87\x7b\x41\x5c\x17\x51\xc2\x13\xc4\x9b\x84\x56\xbc\x6c\x1f\x68\x12\x21\xae\xd9\x06\x44\x33\xc6\x7c\x53\x00\x14\xb0\x95\x71\x94\x98\x8c\xa6\x9a\xe3\xf7\x39\x62\xd4\xc5\x1a\x5f\xdc\x8e\xc7\xf4\xfc\xaa\x8b\xc4\x82\x02\xc6\x09\x1f\xeb\x45\x71\x30\x48\xb3\x3e\x80\x43\xd8\xfb\x0e\x4d\xbd\xbc\xec\x21\x95\xff\x67\x65\x92\xb0\x54\xe1\xa2\x93\x7f\x53\xbd\xe5\x63\x0e\x80\x58\x16\x05\x99\xf6\x54\xb7\xa7\x10\xcf\xf3\x0e\x0a\x2d\xfb\x59\x3f\x8d\x63\xdb\x07\xc0\x51\xc6\xc8\x37\x11\x68\x08\xb2\xd8\xe7\x20\xc7\x1a\xe9\xf7\xc2\x42\x77\x85\xe3\x2d\xa1\xf1\x56\xfb\xa9\xf4\x5b\x5b\x4a\x9c\xd4\x82\x76\xcd\x6e\xa7\x83\xa6\xb4\xfc\xea\xd1\x70\x5e\x40\xe0\xe5\x15\x5e\x4f\x7e\x07\xef\x4f\x84\xf1\x14\x24\xe6\xb6\x86\xbe\x9f\x51\x2d\xf3\x61\x56\x0e\x06\x4a\xef\xe8\x6c\x6d\xa6\xf8\x1c\xc2\x8e\x27\x71\xba\x26\x56\x47\x6c\xa0\x34\x55\xf8\xdc\x26\x97\xf4\xe5\xa5\xb9\x6a\x07\x5d\xb1\xf1\x26\x9d\xa4\xc3\xda\x5e\xb8\x69\x2f\xbb\x48\x44\x9d\xbc\x34\x2d\xea\x73\x8b\xde\x11\xea\x09\x57\xbd\x08\x45\x34\x06\xb5\xc1\x0d\x2c\x09\x7c\xa2\x10\x81\x2b\x26\x89\x0a\x74\x4b\xc4\xcc\xb3\xba\x59\x51\x78\x53\x1d\xe9\xd8\x30\x16\x91\x0b\xa8\xca\x33\xef\xec\x54\xb7\x3d\xac\xd9\x8f\xba\x89\x80\x8d\x35\xf2\x38\x78\x42\xc1\x5c\x86\xe3\x6d\x74\x2b\x52\x6d\xec\x38\x21\xbd\xbf\x54\x45\xbb\xf7\xb5\x60\xeb\x61\x25\xb0\xf6\x0e\xcd\x75\xa9\x54\xb4\xc9\xfc\xc5\xa6\x24\x2e\x3e\x2d\xa9\xd2\x71\xa3\xc1\xc1\x27\x35\xc8\xd7\x38\x89\x66\x55\x9a\x7e\x1c\x79\x32\x9f\x04\x9e\xac\xc4\x09\x16\x9f\xd4\xbd\x59\xc7\x83\x12\x1c\x61\x96\xa3\x57\xe4\xc7\x53\x0d\x4c\x65\x15\x55\x4c\xca\x6a\x37\x26\x50\x6b\x5d\x38\x65\x61\x41\x8e\x95\xdc\x11\x1b\xd7\xcd\x7a\xc5\x84\x0b\xd8\x0a\x25\xd7\x52\xe0\x8a\x0b\x75\xb5\xed\x96\x36\xce\xd8\x78\x39\x3d\x86\xb7\xd0\x6d\x0a\xd4\x65\x87\x5b\x49\x7e\x7e\xb6\x8a\x8e\xb1\x6b\x3d\xd5\x53\xe5\x64\xec\x09\x10\xb5\xb8\xa5\x75\xed\x6f\xb4\xc9\x6f\x93\xee\xd7\x8c\xef\xd6\xff\x99\xaa\xd2\x9c\xa5\x9c\xc3\x53\xf7\x5c\x4e\x99\x99\x64\xbf\xdb\x5a\x9c\xf1\xb7\x03\x76\x9d\x55\x69\xd6\x30\x8e\x96\x3b\x7e\x14\x1d\x54\x93\xe3\xa0\x02\x35\x50\xf6\x92\xa4\x69\x32\x53\x45\x2a\xd8\x1b\xa1\x61\x8f\xc5\x00\x3a\x31\xd8\xda\x8f\x4c\x37\x99\xf1\x7f\xbe\xbb\x34\x47\xbf\x81\xf5\xee\x7b\x1a\xb3\xfe\x3d\x15\x8c\xf7\xa3\xdc\xe4\x85\x65\x08\x95\x68\x3f\x55\x5f\xcc\xc7\xc1\x27\xdc\xc0\x79\xad\xcc\xa2\xbc\x1f\x29\x8f\x6b\x67\x94\xeb\xcc\x31\xf5\xfe\x9f\xd9\x95\x30\x55\x93\xf1\xa4\x9a\x8c\x4d\x0d\x8c\x5d\xbb\xba\x99\xf5\x8d\xce\x6a\x37\xc2\xc8\x3a\xa2\x4a\xf8\x47\x1a\x6b\xce\xde\x97\xba\xcb\x26\x8e\xd3\xd4\x8b\x89\xcb\xc4\xf0\x6c\x28\xed\x33\x74\x43\x35\x1e\xc7\x66\xbf\xcd\x9f\xf1\x65\x8f\x6d\x3d\x95\x99\xfe\x34\x50\xf6\x42\xc7\x95\x4f\xde\x6d\x0c\x59\xbc\x05\x66\xbc\x49\xb5\x08\x31\xae\x54\xd4\x7d\xe7\x12\xe2\x7c\xb2\x3a\x77\x3e\xfb\x59\x4f\x25\x72\x6d\x98\xc7\x00\x70\x40\x37\xef\xc1\x94\x4a\x5e\x82\xee\x50\x09\xc5\xbd\xc0\x6b\x93\xfe\xf7\xcf\xae\x57\x69\x87\x78\x36\x29\x1f\x84\x8f\x54\x45\x33\x37\xf9\x8c\x32\x9b\xbc\xae\x95\xdb\x3a\x3d\x4f\xbe\x3d\x07\x73\x2b\x44\xf9\x91\x2d\x0b\x26\x17\xd0\xef\xa9\x56\x91\xe7\xb0\xd0\x05\x23\xab\x3f\xa3\x98\xe4\x93\x74\xd5\x66\x8f\xd3\x53\x72\x36\xbb\xd5\x83\xc5\x5c\xe8\xac\xfb\x48\x68\xcb\xba\xf2\x35\x39\xab\x8d\xd3\xfe\x29\xc5\x74\x40\x57\x6c\x4c\x55\x77\x9f\x9d\xe1\x91\x29\xdd\xa5\xc2\x24\xfb\x91\x2a\xa1\xd9\x4f\x28\x5f\xd9\xff\x91\xc6\xb3\x78\x96\xfa\xde\x4a\x1e\x47\xd8\x7d\x98\x0a\x48\xaf\x42\x68\x81\x9b\x17\x22\x68\x09\xf7\x87\x16\xe9\x27\x12\x63\x2c\x44\x7c\x3c\xf5\x81\xd2\x28\x8d\xe3\x48\xc0\xd0\x52\x8b\xf7\x05\xeb\xcb\xae\xd9\x38\x4a\x73\xc1\x91\x38\x81\x3c\xd7\xec\x99\xe2\x3d\xb5\xc1\x8f\xdb\x2a\x72\x71\x15\x9a\x0b\x5c\x48\x8b\xd6\x60\xe5\x7a\x1b\x81\x84\x94\x5a\x9f\x97\xc2\x59\xbe\x16\x8e\xd2\x38\x1d\x46\x61\x95\x45\xec\x9b\x73\x42\x58\x1d\x67\x42\x7c\x47\x89\x76\xb4\xff\x76\x66\x07\x29\xb9\x30\xfa\xea\x38\x38\x2b\x0f\x83\xbd\xec\x9b\x7b\xa5\x3b\x28\x5f\x8b\xf2\x8e\xea\xee\x0a\x88\x46\xbc\xde\xdb\xe2\x92\x28\x19\xd9\x2c\x72\xed\x14\xa9\x04\xd5\x0a\x06\x9b\xd7\x74\xb0\x32\xa2\x90\xd6\x74\xe4\xef\xff\x56\x89\x0e\xa1\xbc\x81\x0d\x41\x6b\xcc\x64\x7d\x03\xf3\xe7\x8d\x63\xca\xd6\x06\x7b\x09\x76\x06\x66\xb9\x61\x92\x76\x7a\xaa\x87\x10\xf7\x77\xd6\xd0\x59\x9d\x5f\xfb\x55\x99\x27\xb4\x84\xe3\xf3\xdf\x51\x29\xe5\x85\x69\x9d\xf5\xed\x24\x9f\x00\xe0\xc4\xbf\x83\x8d\x2c\x12\xbc\x4a\x9e\x88\x4b\x2f\x18\xe4\x2c\xa4\x85\xcc\x41\x2f\x04\x69\x96\x3c\x56\x7d\x01\x0c\x61\x9f\x5e\x57\x02\xe6\x57\xa7\x9e\x88\xfc\x28\x2d\x56\x02\xb6\xa5\xe7\x4c\xcb\xe3\x3f\xee\xf6\x7c\xb9\x65\x66\x5d\xb1\xa4\xb9\x20\x09\x6c\x16\xd4\x28\x11\xfd\x1c\x6a\xac\xf3\xd5\x44\x8a\xc6\x13\x9b\x99\x2a\xaf\xa2\xf9\x87\x0b\xfd\x7e\xe0\xd3\x9d\xef\x2b\xfb\x9a\x49\x9a\x17\xe4\xbe\x29\x3b\x30\x52\x7a\xa7\xa8\xec\xa0\x5f\x17\x14\x4d\xe4\x0a\xdd\x0e\x1f\xd3\x46\x29\x5a\x34\x3a\x96\xb2\xcb\xc5\xd3\x7e\x68\x77\xd6\x69\x91\x02\xc6\xf2\x08\x16\x79\xe7\x22\xb2\xb4\xdb\xcb\x9b\x2f\x89\x7b\x38\xe3\xb1\xf1\x32\x6f\x52\xea\x8f\x55\xf5\x5e\xa0\x5c\xe9\x59\x06\x5c\x9c\xad\x28\x4e\x74\xf6\x46\xae\x61\xf2\x97\x53\xdf\x0f\x98\x25\x41\x51\x5c\x3d\xa7\x76\xd2\x55\x57\xaf\xec\x62\xbd\xc2\xf6\xbc\xd2\x76\x2a\x46\x76\x6c\x8a\x28\xcc\x01\xe2\x97\x3e\x23\xdd\x9f\x74\x20\x7d\x23\xd7\xf4\x5f\x2b\x11\x04\xd4\x00\xab\xbe\xa8\xf3\x95\xe0\x29\x05\xfa\x24\x54\x6f\xc7\x79\xc2\x1f\x56\x9e\xf0\x87\x9b\x1c\x95\x97\xf6\x74\x6d\x99\xa5\x13\x6b\x12\x94\xf4\xa5\x61\xea\xd1\xb6\xec\x55\x82\x85\xe7\x76\x8b\xce\x2e\xf7\x39\xa5\xdd\x20\xd6\x0d\x0a\x6a\xa9\xa5\xad\x08\x4e\x37\xb0\x19\xeb\x43\x38\xef\x8f\x7d\x73\xae\xe5\xe3\x34\x63\x4b\x28\xd4\x78\xa4\x2b\x5d\x09\x9f\xb4\x51\xc0\xb3\x88\x42\x75\x45\xf5\xc1\x26\xc0\xc7\x8d\x9a\xdc\xab\xaf\x76\x97\x0d\x79\xc0\x74\x3c\xb7\xf9\x34\xc6\x0d\x9f\xa8\x10\x6b\x62\x93\x24\x5f\x8b\xab\x7c\xc7\xcc\x2a\xae\x02\x1a\x4b\x6d\xb8\xab\x9a\xb2\xe7\xf3\xae\x28\x14\x8e\x6c\x6c\x92\xa1\x8d\x53\xa9\xea\x29\x92\xd2\x6e\x47\x52\x7a\x52\x29\x6b\x56\x8f\xd7\x73\x62\xce\x29\x15\xff\x73\x6d\xfc\xda\x62\x64\x33\x3b\x53\x45\x1f\x88\x70\xee\xd2\xbc\xd0\xee\x4c\x4c\x6a\x53\xd1\x66\x94\x8c\xcc\x32\x2d\xde\xda\xb7\x9f\x99\xe6\x52\x79\xf2\xcb\xd5\x2f\xff\x83\x5f\xea\x54\x11\x3d\x96\xec\x1f\x07\x4a\xca\xec\xc7\xcd\x26\xfd\x3c\xf9\xcb\xc7\x2e\x0c\xd4\x56\xe2\x98\x56\xd8\x83\x45\x1f\x4b\x59\xd8\xc7\xe5\x98\xc9\x90\x58\xf3\xbe\xab\xe6\x22\x8a\x83\x00\x41\xdd\x7b\x88\x33\xc1\xb0\x8c\x4d\x01\x04\x83\xe0\xe1\x69\x50\xb9\x8e\x81\xd2\x97\xf4\xa8\xd8\x51\x39\x4c\xb7\x2a\xff\x1e\x66\xef\x48\x2f\xbd\xe3\x84\xdf\xb0\xe4\x60\xfb\xe0\xba\x17\xbe\xf9\x63\xf5\x6d\xfd\x34\xb1\x8f\xd1\x6c\x47\xe9\x93\x6b\xd7\x7c\x12\xf8\xd5\xfd\xe4\xd4\xbb\x4a\x21\xac\xc5\x8b\xba\x39\xf5\xdd\xa2\xab\xb8\x7e\x71\x91\xf5\x65\xf3\xdf\xa5\x78\x0b\x53\xf8\x92\x7a\x55\x85\xdd\xcf\xef\x14\x90\x1f\xce\xa7\xf9\xa4\xa5\xde\xb9\xbb\x3b\xb1\xe9\x24\xb6\x39\xb6\x58\xc7\x33\x52\x5d\xbf\x3a\x14\x51\x55\xd1\x9b\x75\xac\xf9\xbd\xdd\x51\x35\x97\x37\x51\xc9\x2e\x4e\xf5\xb4\xd1\x96\xaf\x55\xb8\xc2\xf1\x19\xf6\xcc\x2d\xaa\x59\xb8\x65\xbd\xf9\x9a\xa9\xb2\x91\x26\x89\x65\x05\x1f\x57\xe0\xf3\xc5\xbe\x16\xf2\xd9\x0b\xdd\xb4\xcc\x72\x1b\xaf\xd8\x9c\xb2\x38\x89\xb3\xe9\x2b\x10\x0c\x9e\x46\xf9\x18\x98\xee\xbb\xae\xd6\xc5\x40\xb8\x59\xba\x1b\x14\xcd\xfe\x5d\xe0\xe3\x17\x44\x21\xf8\xf7\x2b\x78\x36\x08\x95\x1f\xe9\x35\x1d\xca\x62\xb3\xc6\x2b\x27\xa2\xbf\xc3\x81\xea\xba\x1f\x6e\xa3\x74\xf6\xcb\x7c\x7f\x9d\x7f\xec\xfa\x9e\x17\xa7\x3f\xf7\x10\x58\x74\x66\xc3\xcc\x12\x5c\x56\x99\x4a\x3d\x08\xfc\xb2\xf7\xfe\x54\x91\x67\x6f\x6f\xa6\x82\xe7\x63\x95\xb0\x9e\xd6\x09\xeb\xe9\xa9\x97\x0a\xb3\x79\x61\x96\xe3\x28\x1f\x8d\x6d\x02\x71\x17\x67\x2c\x59\xed\xb8\x22\xe1\xa5\x5c\xcb\x0e\x57\x3b\xa3\x6f\x24\xda\x6c\x6c\xb2\xfd\x96\x78\x73\xa2\x42\x7a\x53\x2d\x0c\x30\x1a\x57\x1c\x17\xe9\x25\x00\x4c\x8d\xe1\x78\xb7\x25\xa0\x5d\xec\xee\x37\xcb\x65\x4c\x55\x1c\x71\x75\xd0\x16\x0f\x6d\xf2\x65\xe9\xf2\x6b\x36\x2c\x28\xd9\x45\xd7\xf3\x98\x42\x3c\x1f\x6b\x55\x98\x85\x6b\xfd\x8c\x2a\xeb\x02\xd6\x87\xa0\xf0\x28\xae\x58\x92\xcb\x36\xc3\xf5\x15\x9b\xad\x75\xbc\xe1\xfa\x49\x65\x21\x7f\x52\xcd\xe8\x51\xba\xfa\x78\xb5\xf8\x22\xa0\xf9\x48\xb7\xa6\x9f\xea\x79\x04\xea\x13\xba\xc0\x7c\x9b\x56\x07\x2d\x3f\x86\x22\xf9\x93\xf4\xe8\x10\xf3\x3c\xd5\x53\x06\x2e\xbc\xe4\x21\x02\x7e\x1c\x61\x2b\xde\xda\x77\xe8\xa6\xd8\x81\x07\xd1\x14\x16\x93\x47\xd6\x5b\x94\x68\x32\x13\xe5\x6e\xe1\x77\x6e\x66\x4e\x76\xfc\xe8\x54\x09\xc4\x69\x35\x94\x34\x2f\x38\x96\xc1\x03\x38\xaa\x06\xfa\xd1\xb6\x96\x72\x9a\xad\xda\x38\x8e\x18\x9d\xe3\x54\x3f\xab\xeb\xe6\x13\x87\x37\x9f\x8c\xbc\x5d\x0d\xc2\x45\x66\x30\xf0\x49\xaf\x85\x2e\x96\x47\xc3\x11\x07\x17\x22\x71\xdb\xf1\x72\xb7\x6a\xbb\x1e\xa4\xb1\x45\x41\x94\x17\xec\xda\xe2\xdd\xea\xed\xb3\x62\x33\xc9\x0e\xb1\x7e\x1f\x54\xae\x14\x8c\xca\x42\x20\xf1\x5d\xd5\x49\x25\xba\x79\x41\x64\xe7\x59\xea\xb2\x89\x9d\x28\x96\x6d\x67\x37\xe0\xe5\xe5\xce\x52\x1c\x2c\x84\x24\xbf\xcb\x66\x51\x5a\x30\xa3\x56\x70\x16\x0a\x73\xd1\x08\x31\xf6\xbe\xd4\x5d\x35\x94\x21\xec\x93\xfe\x2d\xa4\x8f\xf8\x58\xc1\x2f\x08\x20\xc6\x51\x53\x47\x35\x50\x6e\x29\xde\xd2\x2d\xf7\x5e\x56\xd2\x28\xb4\x04\x37\x97\xa2\xc6\xa9\x69\xad\x17\xac\x89\x18\x3f\xd5\xe8\xe6\x9b\x41\x0d\x16\xfc\xa4\x36\xe5\x88\x39\x93\x45\x44\x7b\x48\x71\xc9\x88\xef\xef\x05\x06\x3a\x7e\xba\x3d\x42\x61\x3e\x1f\xaf\xb7\x68\x32\xe5\x65\x24\x42\x10\x8e\x0c\xe5\x4a\x68\x17\x55\xc1\xa1\x9c\xf4\x4d\x21\x31\xa6\xf4\x95\x54\xbf\xe3\xbc\xee\xe1\x95\x59\x38\x32\x39\x31\x32\xbd\xef\x46\xa0\xca\x06\xb0\x95\xe1\x63\x25\xf7\x72\x06\x28\x0e\x71\xea\xf0\x36\x84\x67\x54\x25\xd4\x4c\x26\x59\xba\x62\xb0\x0e\x0a\xfd\xce\x1b\x93\x5e\x50\xab\x71\x3f\xca\x8b\x2c\x5a\x2e\x0b\x21\x1b\xe3\x31\xff\x9e\xd2\x1d\xfc\x3d\x0d\x6e\x59\x59\xdb\xea\x81\xd2\x67\x82\x9a\x48\x05\xbd\x41\x97\x61\xef\x9b\xf3\x06\x4e\x0b\x0b\x1b\xcd\xb8\x6d\xd7\x7c\x77\x92\xa5\x03\x95\x54\x20\x24\x3e\xaf\x49\xfc\xe7\x1b\x83\x72\x69\xae\x1b\x47\x2b\x32\xab\x31\xe3\x79\x56\xf3\x49\xaf\x51\xd7\x9c\x57\x2c\x95\x5c\xb7\xce\xde\xa1\xf8\x86\x8f\xdb\x5c\x61\x98\x8b\xbe\x55\x41\x43\x64\xde\xf1\x99\x32\xee\x28\xa6\xca\x83\xfa\x03\xe5\x47\xfc\x41\xf0\x9c\xaa\xea\xf5\x87\x36\x5b\x4d\x53\xd6\x0b\x00\x95\x82\x61\x91\x7c\xd2\x06\xb2\xad\x06\xf8\xaa\x59\xd3\x76\x97\x53\x0f\xf4\xbd\xa8\xf5\x02\xec\x72\xc9\xa2\x9f\x48\x1e\x2e\x4d\x7d\x52\x71\x49\xd9\xf1\x15\x69\x14\xdb\x22\x13\x15\x3f\x91\x3d\xeb\x28\x39\xb4\xb6\x5c\xd2\x94\x45\x9a\xa4\x63\xf0\x78\x58\xb7\x0b\x97\x2f\x22\x5e\x4d\x2d\xb8\x79\xb6\x44\x98\xf1\x08\x2a\xa8\xf7\xba\x7a\xb7\x5b\xf4\xaf\x7b\xde\xdf\xc4\x86\xd1\x20\x0a\xe1\xdb\xec\x14\x1e\xab\x67\x2c\x20\x04\x5f\x08\xe0\xe6\x3c\xde\xe5\xb1\xa9\x72\x9d\x05\x0c\x16\x15\x02\x60\xb0\x70\x01\x7f\xab\xe7\x17\xdf\x8d\x5a\x51\x22\x1d\xaf\x3d\xda\x71\x5a\x15\x6c\xae\x22\x42\x77\x84\xe5\x41\x78\xf0\x1e\x2e\x86\xad\x39\x30\x7f\xb1\xf5\x5d\x55\x6f\x9f\x0d\x6d\x94\x5d\xe8\x0b\x9c\x6e\x3c\xd6\x93\x5b\x1d\x1a\x4a\xe6\x78\x73\x70\x70\x0b\xc7\x74\x60\xdd\x56\xa9\x53\xb4\x98\x71\x7e\xf6\xb3\xb4\x4c\x33\x46\x1c\xc9\x83\x00\xc6\x1d\xad\x99\x70\xfc\xfb\xc9\xbb\x47\xca\x67\x3e\xfe\x66\xd8\x06\x5e\xfd\x6d\xa7\x6a\x9c\x1e\xe8\x78\xba\x15\x33\x9e\xc4\xed\xb4\xa5\x15\x90\x17\x99\x4d\x86\xc5\xa8\x5a\x66\x9d\x23\xca\x51\xa8\x03\xf3\x89\x76\xa1\x59\x4b\xcc\x38\x0a\xf3\x8e\x6f\xa4\x9c\x20\x59\x41\x3e\x76\xe8\xc2\xe5\xcc\x96\xe8\x51\x7b\xc0\xfd\x11\x8d\xc1\x3b\xe2\x45\x72\xaa\x5c\x52\x16\x08\x6c\x55\xfc\xf8\xf8\x44\x75\xbe\x27\x66\x2d\x4b\x63\xd8\xda\x73\xf4\xbe\x5e\x0b\xe5\x55\xd3\xce\xc6\x13\x9b\x81\x5d\x24\xb4\x8f\x8e\xa3\x9e\x9f\x56\x7b\x91\x35\x59\xbc\xf6\xb8\x97\x45\x3a\x83\x87\xc6\x05\x47\x2d\xb0\xa4\xa3\xa2\xb3\x58\xda\xc5\xf5\xc2\x83\x5e\xf9\xe2\xdd\xf6\xe3\xec\x0f\x2f\x71\xb1\x16\x3d\x6b\xe4\xb8\xec\x5b\x8d\xa2\x04\x17\xdf\x03\x5f\xee\x9c\x6d\x28\x6b\x56\x51\xf3\x6a\x9a\x65\x51\xbd\x9e\x0b\x8b\x6a\xd1\x3c\x10\x65\xd3\x55\x53\xd8\x6c\x90\xa5\x80\xaa\xec\x11\x53\x7d\x65\x15\xf7\x53\x55\xa7\xaa\xc6\x9a\x5d\x53\x6e\x01\xe0\x56\xf3\xf1\xe6\x7e\xd9\xc2\x42\xf7\xff\x4f\xec\x15\x60\xbd\xee\xa8\xce\xee\x9f\x05\x6a\x6f\x3a\x3d\x55\xc6\x70\xb0\x0d\x41\x93\x96\x63\x03\x26\xb9\x34\xe9\x70\x2f\xed\xe9\xc6\x65\x3e\xa2\x15\x54\x1b\x1a\xf3\x71\x23\x9f\xf8\x5c\x77\x10\x0d\xbd\x45\x46\x6b\x9d\xbb\x2d\x3d\x40\x72\xa3\xac\xb8\x3e\xd6\x56\x5c\x5a\x19\x31\xb7\x79\x1e\xa5\x09\xf4\x9c\x44\x18\xb2\xe3\x7c\x1d\xce\xab\x72\xec\x19\x35\x51\x19\x9b\x81\x6a\xcd\x4d\xc5\x39\x23\xeb\x8b\x2a\x2b\xdb\xe9\xfb\x99\x97\x74\x0f\xed\x3a\x3d\x2e\x20\xf1\x4f\xeb\xfa\xc0\xd7\xa7\x35\x6e\x30\xbd\x27\xcc\xab\x7f\x13\x28\x7c\xc7\x75\x65\x9e\x79\x51\x01\x97\x79\xf1\x45\x16\xfe\xb5\xa9\xd2\x36\x54\x73\x6d\x60\x81\x66\xf0\x84\x58\xd6\x06\x97\x69\xe9\x67\x50\x51\x66\x49\xbe\x95\xca\xb4\x48\xb6\x8f\x2a\xf9\x3b\x28\x91\x39\x8e\x90\xff\x9b\xa9\xaa\x02\xaa\xfd\x70\x64\x4d\xd6\x47\xae\x29\xe4\xfd\x8e\x63\xf0\x70\xcd\x1f\x8d\x69\x90\x78\xc5\xd9\x41\xc9\x04\x9f\x6c\x20\xc9\x97\xe6\xd8\xbb\x21\x06\x9e\xc9\xcf\x80\x43\x53\xa5\x71\x53\x43\xd9\x40\x12\x14\xf5\x26\xd7\x21\xf5\x62\xb6\x78\x86\x4e\x87\x6a\xf7\x4b\x7b\x6a\x98\x02\x40\xc7\x8f\x29\x4c\x46\x3a\x18\x44\xa1\xdd\x59\x7d\x05\xee\x1a\xf5\x23\xb4\x18\xef\x2b\xc1\xc1\x13\x18\x03\x8e\x4a\xbc\x24\x7c\x50\x76\x6e\x40\x11\x43\x96\x13\xd1\xd5\x50\x36\x13\x5c\xf2\xc2\x88\x7a\xae\xe7\x5c\x24\x2e\x3f\xd2\x53\x3c\xf4\x4b\x6a\xee\x0f\x4d\x94\xd8\xfe\x36\xe5\x1d\xb0\x95\x2d\xd4\x90\x8f\xae\xd3\xa5\x0a\xc6\xcf\x97\x18\x19\x6b\x29\x16\xfa\x1e\xf5\x7a\x43\x6b\xa7\x99\x24\xb1\xd0\x80\x40\xf0\xf9\xb6\xa6\xcf\xbd\xdd\xe8\x5a\xed\x9b\x7b\xa5\xfb\x7a\x99\x16\xa8\x8c\xd0\x9f\x8a\x54\x6e\xc7\x59\xf2\x1d\x56\x09\xc3\xee\x46\x45\x86\x76\x36\x86\x68\x01\x3c\x7c\x4a\xe9\xa0\x9e\x6a\x2c\x1e\xbf\x20\x10\x8c\x19\xdf\x46\x67\xa5\x7b\x21\xe4\xa8\x8a\xfb\x87\xaa\x43\xf4\xf7\xff\x1e\x9b\xe3\x49\x11\xd1\xb3\xaf\xe0\x32\x2a\x26\x49\xd5\x43\xc3\xc3\x7c\xaf\x0d\xbe\x99\x91\x75\x65\xc7\x07\x59\x77\xbc\x15\xd2\x17\xef\xa8\x55\xc8\xac\xa4\x51\xdf\x01\x27\x30\xa1\x7f\x84\x59\xcf\x27\x2e\x80\x08\x47\xa6\xb0\xa6\x9c\x51\x64\x88\x77\xe8\xfa\x50\x3b\x63\x8f\x8d\xcd\x66\xb5\xb1\x41\xc1\xc3\xf3\x64\x71\xef\x42\x9a\x6d\xb1\xe1\x9f\x90\xe2\xae\xe2\x03\x74\x9c\x0e\xc2\x69\xf7\xbd\x2b\x36\xcb\xd9\x44\x0a\x05\x9e\xeb\x0a\x06\x01\x55\x7c\x71\xcd\xf7\x63\x67\xd9\x66\x09\x97\x1d\x9d\x7e\xa9\x77\x01\x3a\xd6\xa6\x01\x6e\xb2\xcc\xe8\xcb\x47\x88\xcc\xc7\x2d\xf5\x68\x82\x74\x90\x0b\xd1\x8c\xf2\xf3\xba\xa7\x0b\xab\xa7\x95\x7e\x7f\xb3\x35\xbb\x6b\xbe\xdb\x8f\x32\x2a\x4b\x39\xe7\x0c\x44\x94\x7c\xdc\xc2\x07\xd9\xdd\x9d\x94\x6f\xbc\x11\xcb\x2e\x8e\x5a\xd4\x07\x4a\x59\xf5\x03\xc5\xaf\xa5\x42\xb5\x6f\x34\xbd\x4f\x63\x49\xf6\x65\x35\x95\x18\xef\x89\xda\xe1\x03\x5a\x36\x1d\xe0\xd4\xb5\xb5\x61\xfe\x44\xb7\xf2\xdf\xfe\xdc\xba\x2b\x39\xfd\x77\x3f\xdf\x53\x19\xe1\x85\x5a\x80\x6d\x32\x43\x99\x00\x6b\xce\xd2\x55\xb2\xac\x3e\x45\x2e\x1b\xa7\x1a\xdb\x77\x95\x43\x14\x69\xdc\xdf\xa6\xca\x27\x8f\xf6\x3a\x5f\xf8\x52\x8d\x1e\x87\xe9\x78\x0c\x6b\x17\x77\x0e\xa7\x1e\xce\x7b\x61\xaa\xf0\x1d\xdf\x52\xdc\x7a\x56\x85\x9d\xad\xc6\x8c\x93\x78\xf5\xa1\xf8\x89\x7a\xa2\x51\x7d\x07\xff\x47\x4b\xa1\x67\xb7\x9b\x7a\x6e\x6d\xbf\xa7\x84\xca\x9b\x99\x70\xf5\xf2\xf2\x72\x32\x49\x5d\xb1\x0a\x10\x88\xb7\x02\x0f\x8d\x78\xcb\xdb\x27\x96\x71\xdc\x4f\xdf\xe0\x31\x8c\xae\x08\x8a\x1d\x7c\xec\xe6\x47\x96\x16\x85\x4d\x66\xfd\x97\x6c\x20\x8e\x42\xf0\x82\x85\x05\x91\x24\xe8\x28\xd2\xae\x91\x98\xbb\x4c\x06\x51\x1c\xdb\xfe\xac\x76\x80\x41\x64\x09\xa4\xda\xbf\x9a\xfa\xa2\xed\xdd\x40\x59\xe4\x9e\xd1\xda\x7b\xa6\x08\x47\x36\x13\x9e\x02\x5e\xca\x49\xe5\xe5\x73\x4b\x13\x20\xdb\xc1\x6f\xdc\xdf\x49\xd1\x1f\xdd\xcd\xb7\xc3\x45\x7c\x3e\xa9\x41\xf4\x4c\x79\x60\xa6\xba\x25\x44\x37\x9c\x5d\x0b\x92\x94\x7e\x4e\x78\x0e\xaa\x07\x45\x82\x85\x8a\x91\x48\x2f\x0d\x89\xc0\x1d\xad\x06\x72\x4c\x03\x72\x6d\xb6\x12\x85\x36\xa7\x5d\x18\xab\xd0\xb6\x75\xef\x0f\x7f\x9d\xe2\x13\x64\x6d\x0f\xb4\x34\xdc\x36\xb2\x9c\x43\xb9\x8e\x60\x04\xf3\x1b\xe7\x20\x5e\x8a\xdf\x60\x6f\x42\xa7\x17\x54\x8d\x67\xdd\x88\xc4\xd7\xb3\x49\xb2\xb8\x83\x3e\xab\xbc\x3f\x20\xc9\xc4\xbd\x18\xc4\xc4\x6f\x06\x1e\xe8\xf9\x66\xc3\x13\x60\x7e\x2f\x0a\x47\x93\xac\xae\x27\x87\xa8\x9b\x41\x56\x7c\xd2\x28\x00\x57\x43\x38\x4a\x0a\x67\xef\x80\x21\x76\x42\xd9\x15\x9f\x55\x36\x0d\xdf\x6c\xab\xeb\xc2\xfa\x3c\xb1\x50\xc3\x17\x1b\x61\x1a\x6d\x88\x35\x10\xeb\x8b\xd5\x72\x9b\x8a\x4b\x06\xea\xb9\xab\xd5\xfd\xa0\x96\x6f\xa8\x7d\xff\xb8\x8a\x54\xf6\xa7\x99\x35\xe8\x97\x88\xc9\x51\xc7\x29\xcf\xdd\xc5\x7b\x67\x5e\x43\x8b\x86\x55\x6c\x8b\x82\xa7\xa2\x68\x6f\x2a\x60\xef\x09\xd5\x61\x21\xe8\xb6\xed\xcf\x76\x9c\xce\x2f\xfa\x9a\x08\xe3\xb1\xc3\xf1\x31\x6d\x5d\xfc\x37\xeb\xbe\x5e\x13\x8e\xc8\x88\xd5\x71\xec\x18\x5d\x12\x78\x00\xc7\x47\xda\x51\x29\xcd\x2d\x09\xd4\xe0\x8b\x76\xf4\x7c\x31\x7e\x3b\x6c\xbd\x30\x5c\x3f\xa4\xb5\xcd\x31\x1c\xaa\x25\x5b\x9e\xb1\x02\x86\xdd\x55\xd1\xf9\x20\xb3\xd5\x7d\xec\x53\x4d\x96\x6a\xea\x4b\x93\x85\xc2\x76\xe1\x22\x28\x5e\x82\x62\x02\x84\x69\xf2\x5a\x99\x38\x18\xe3\x1e\x87\xcc\xa8\xae\x97\x8f\x15\x21\xb1\x6f\x21\xa5\xa1\x7c\x92\x90\x07\x0b\x18\xab\x45\x38\x8e\xcc\x34\x86\x69\xc2\x70\x59\xd4\x22\x8f\x91\x92\x15\x1f\xab\x98\xcb\x0c\xd3\x1d\x4e\xe9\xee\xff\x7e\x9e\x30\x36\x98\x61\x9f\x02\xd4\xad\xd6\xeb\x17\x18\x96\xaf\xf4\xf2\x30\xc1\x62\xda\x59\xaf\xf6\x49\x67\x54\xe2\x00\xa8\x04\xd7\x11\xc1\xe7\x9b\x78\xb8\x42\x3c\xda\x1c\xb1\x4a\x43\x2f\x89\x46\xdc\xcb\x73\x86\x29\x2e\x2d\xff\xf2\x54\xe9\x5c\x9f\x53\xef\x27\xb1\xb6\x0f\x45\x00\x44\x4c\xff\x97\x82\xd5\x41\x9b\x58\x54\xed\x6b\x12\x6b\x4f\x7b\xda\xb6\x8d\x56\x88\x69\xef\xb0\xc5\x3f\xc2\x8e\x8a\xfa\xd3\xf7\xe9\xa6\x50\x02\x3b\xa4\x50\x1f\x83\x28\x31\x49\x18\x11\x28\xc1\x31\x30\x2f\x68\x7c\xc4\x5d\xb5\x02\x35\xb7\xf8\x57\x5f\xed\xc6\x69\xba\x9f\xf3\x6d\xcc\x54\xcc\x0b\x3e\x6e\xc3\x26\x4f\xaa\x4d\x0e\xcb\x36\xc6\x30\x2b\xdc\xd5\xde\x98\x74\x12\x5a\x84\x8f\xe3\x52\x4a\xc2\x5a\x35\x43\x30\x60\x7e\x88\xfc\x17\x9f\xff\xcf\x08\x09\x01\xb0\xcb\x0f\x30\xcb\xf9\xa4\x4d\xc1\x73\x35\xcd\xf6\xf3\xc2\x20\xbe\x5b\xf4\x11\x3e\x99\xee\x74\xaf\xeb\x35\x92\xf7\xe5\x9c\xff\x36\xde\x09\x9f\x04\x5e\x15\x35\x0f\xb3\x68\x52\x90\x3b\x0c\x43\x85\x91\x92\xbf\x4f\xd7\xcb\xc7\xd3\xc7\xbd\xcd\x74\xb6\x46\x3b\x3f\x5a\x7e\x68\xc5\xf1\xf1\x54\xf7\x50\x02\x4d\xb4\xd7\x7c\xd7\x65\x86\xc3\x23\x44\x3c\x4c\x6b\x12\x1f\x37\x82\x9e\xdd\x2f\xed\xe9\x4e\x62\x4b\xd8\xcc\xea\x51\x0a\xaa\x44\x51\x98\x54\x99\xc2\xb9\x2a\x02\x76\xc9\xf0\x5e\x85\xb7\x43\xc2\xeb\xe4\x1a\xfd\x46\xf8\xcf\xda\xc4\x1d\x26\x16\x7d\xfa\x8e\x73\xf2\x41\xec\x8f\xe0\x72\xa6\xa7\xd0\x08\x67\x35\x1a\x41\xa1\x62\xa0\xe9\x45\x8a\x5e\xf3\x7b\x19\xd6\xfe\xbe\xfe\xe1\x27\x7a\x75\x6d\x30\xcf\x3e\x3a\x84\x1a\x06\x97\x7d\x15\xfe\xf5\xa9\x75\xad\x59\x58\xe6\xa0\x19\xb3\xe2\x20\xc6\xa8\xc8\x0f\x3a\xe3\xa0\x34\xcb\xc8\x80\x8b\xc1\xc2\x82\x95\xa2\x67\x8a\x3f\x7e\x80\x4f\xca\x72\xdd\x82\x75\x2a\x32\x33\x18\x44\x21\xe5\x9d\x22\xac\xd9\x71\x1a\xa1\x2c\x8e\x8f\x93\x4b\xaa\x11\x0b\xbd\xe6\xad\x35\xa1\x25\x7a\x72\x1a\x7f\xe0\x12\x49\x27\x40\xf6\x03\x7a\xd4\xd8\xd6\x37\xd4\x92\x6d\xaa\x77\x9c\xa7\x49\xcd\x70\xf9\x82\x36\x5c\xd6\xd8\xfd\x32\x29\xcc\x64\xc2\x7d\x60\x91\x31\x51\xae\x47\x17\x55\x3c\xb9\x6c\xc2\xd1\xd8\x24\x09\x22\x1b\xd4\xfb\xaf\x28\x0a\xd4\x15\x35\x09\x6c\x5e\xa0\x75\x83\xea\x27\xc4\x37\x11\xb9\x3f\x89\xca\x05\x9e\x10\xd0\xa5\x78\x87\xd7\x95\x89\xab\xd6\x81\x89\xd3\x64\xb8\x93\x3e\x83\x1a\xc1\xce\x9e\x82\x78\xde\xa2\xd1\x8b\xed\x08\xc2\xc1\xe8\xd3\x5f\xd7\xca\x55\x0f\xb4\x80\x13\xcc\x04\xb0\x92\x5f\x22\x70\x23\xae\x6b\xcb\xba\xcf\x67\xd9\xfe\xd2\x61\xd6\x17\x16\x44\xf1\xdf\xc5\xe8\x63\x9b\xd9\x7e\x54\x8c\x3a\x0d\x8d\x8c\xdd\x72\xa2\xfa\x77\xcb\x45\x0e\x7a\x1b\x60\x45\x3f\xdb\xeb\x7c\x71\xbe\x46\x8e\xd3\xe3\x1b\x73\xf1\x69\xf4\xd6\xdc\x2a\xa0\x80\x6f\xaa\x58\x86\xb8\x01\x55\x9b\x4b\x81\x56\xb9\x8f\xd3\x22\x7f\x14\x17\xc7\xd6\x7b\x4a\x55\x1d\xf3\x05\x3b\xed\xbb\x8a\xa5\xf3\x1d\x0a\x9b\xf9\x18\xc3\x5f\x00\x19\x4a\xd0\xeb\x6a\xe0\x2b\x40\x67\x15\x1f\x35\x33\x13\x5e\x87\x5c\x33\xc6\xbd\xdd\xab\xaa\x30\x98\xc7\xd6\xee\x9f\xf1\x75\x28\xa6\xe9\x0a\x28\xc8\xa3\xc5\xaf\x2a\xc6\x75\x6c\xc2\x8e\xa6\xd1\xfe\x00\x57\xc4\x27\x41\x0b\xd6\xf6\x33\xdd\x2c\x8d\xd3\xbe\x3d\x60\x79\x5a\xcb\x60\xc4\xd7\x08\xc0\x9b\x2e\x58\xba\x3d\x0a\xc7\x9c\x8d\x77\xd6\x27\x65\xf5\x77\x8e\xa1\xe0\x4b\xb8\x88\x47\xb0\xf6\xdc\x0c\x7c\x7d\xe3\x69\xdc\x95\xa3\xe6\x56\x23\x0a\x4d\x06\x70\xe4\x11\x3f\xb0\x8c\x87\xe3\x74\xef\x9b\x73\x81\x29\x65\x25\x88\x99\x9a\x30\xc4\xf9\xbd\xdd\xd8\x14\x51\xa2\xd4\x9a\xd9\x7d\x8e\x4f\xd4\x7b\x19\x58\x5b\x6c\xad\x46\x3a\xc0\xc2\x5b\x14\x09\xe1\x7b\xca\x6f\xf2\x12\x85\x76\xcc\xf8\xc5\x72\x87\xd8\xe5\x94\x82\x69\xa6\x59\x34\x8c\x12\xc3\xe2\x47\x4e\x8f\xfe\x87\x98\x6f\x4e\x96\x4b\x69\x74\xa9\x41\xf0\x43\x67\xf5\x30\x8a\xb2\x34\x1f\x45\x63\x33\xab\xa0\x03\x70\x44\x66\x41\x95\xe9\xcc\xcb\x4b\x73\x1b\x58\x42\xc5\xaa\x50\x49\x1a\x5b\x93\x48\xa4\x84\xdc\xe8\xaa\x5a\x8a\x40\x3c\x13\x2a\x92\x7e\xa7\xf6\x49\xfa\x3d\xf0\x16\x7e\x48\xe3\x18\xf7\xb8\x9d\x62\x4f\x11\x66\xe8\x38\x75\x9b\xa7\x7b\x3e\x92\x3e\x49\xd9\x3a\x7a\x3b\x67\x01\x66\xd6\xe2\x18\x18\x1b\xdb\xd6\xab\xb9\x2d\xa5\x1f\x7a\x2a\x58\xa5\x3f\xd2\x1c\x5e\xb6\xcb\x15\xee\xd7\x8c\xb7\xbd\x65\x65\x49\xec\x3a\x3b\x1a\x6d\xa3\x17\x17\xbb\x66\x6c\xb3\x28\x64\x1c\x8e\x24\x79\x74\x5b\x92\xbc\x3d\xa1\x42\xd2\x08\x74\x37\x3c\x18\x64\xa2\x7c\xec\xa9\x18\x5e\x92\x40\xb5\x71\xf7\x38\x08\x52\xc7\x53\x62\x15\x0b\x73\x39\x36\xc9\xfe\x8e\x82\xd3\xc1\x67\x4b\x84\xbc\x5a\x1c\xa1\xfa\x96\x85\x7a\x44\x43\xd3\x67\x46\x17\x1b\xb5\xe3\xc5\xc5\x3d\xd5\x36\x12\x8d\x4d\x61\xfb\xb3\xf5\x02\xae\x6f\x29\x5c\x53\x84\xdf\x83\x81\x32\x39\x3d\xd3\x86\x2a\x18\x5b\x5b\xc8\xa8\x11\xcf\x4f\x7a\x0f\xa8\xb7\x3e\xba\xee\x11\xf1\x4f\xf7\xbc\xbe\x25\x71\x7a\x72\xb4\x88\xf1\x53\x98\xc1\x28\xc0\x5c\xd4\x54\xa0\x23\x4a\xbd\x6d\x68\xf3\xa2\x14\x28\x36\x9a\x6b\xb0\xc8\xe6\xe3\x9e\x93\xe7\xa4\xf0\xa3\xa3\x21\x29\xde\x8a\xf9\xbc\x4a\x65\x4d\xb2\x36\x4e\x33\xbb\x55\x09\x44\x6b\x9c\xe7\xb7\x02\x6f\x7b\xf9\xbb\xf4\x60\x90\x0c\x9d\xa6\x89\xcd\xff\xde\x00\x90\x3a\x4f\xc2\x6c\x3c\xeb\xc1\x2a\xd8\x2d\xb0\xcb\xdc\x51\xfc\xda\x8b\x5a\x5c\xfa\xab\x6a\x9b\x1e\x96\x49\xbe\x75\x33\x57\x04\xf3\xe9\x1b\xf8\x0c\x9f\xd0\xa4\x43\x2a\xc2\x85\x79\x66\xe9\x34\xb2\xc9\x17\x17\xbb\x79\xb9\x9c\x17\x26\x09\x35\x2b\x0e\x64\x07\xe1\x5e\xaa\x9e\xb6\x35\x90\x2b\xf6\xa8\x8b\x53\x74\xe5\x62\x75\x50\x83\x1a\xc4\x09\x94\x22\xa4\xfd\xe1\xa3\xd8\x66\x5d\xf8\xd5\x57\x6b\x54\x4c\x81\x92\x56\x1f\x11\x24\x69\xcb\xb5\x13\x18\x7f\xd9\x24\xd8\xea\x70\x11\x57\x14\xca\xe3\xeb\x53\x95\xcb\x5c\x74\xee\xea\x99\xcd\x27\x69\xd2\xb7\x89\x53\xa5\x40\xa8\xc3\x65\x01\x3e\x71\x60\x0d\xd3\x4f\x27\x85\x03\x00\xa2\x14\x79\x4a\xcd\x8a\x13\x2a\x69\xfc\x23\x2f\x28\x62\xb3\xc4\x64\x7d\x00\xb7\x04\x55\xa4\x10\x46\x8d\xe9\xcb\x90\xac\x8e\x6f\x3a\x5c\xac\x09\x32\x3f\xa5\x28\x18\x59\x1c\x25\xaa\x89\xf0\x6e\xe0\x53\xe2\x77\x95\x35\xe9\xfe\x28\x4e\xc7\xd6\xa5\x55\xd8\x8f\x01\xbe\xe7\x63\xe5\xb1\xd1\x8f\x86\x51\x61\x62\x44\x95\xc8\xde\x8f\x2a\x7c\x09\x4b\xa2\x3a\xfa\xb9\x63\xb0\x1e\x57\x72\x7e\x3f\xd6\xfc\x47\xb8\x7d\x56\x4f\x54\x97\x65\xf9\xb8\xcd\x34\x7a\xc5\x26\x7d\x5b\x14\xa6\x53\x0b\xc5\x14\xc8\xda\xef\x33\xaf\x97\x30\xa4\x93\xe4\x87\x2e\x9a\x4f\xda\xba\x2e\x89\xe1\x55\x1a\xc1\x02\xe6\x1b\x1f\xbb\xaa\x72\x99\x0c\x4c\x84\x94\x15\x1d\x62\xa0\x72\xf9\xb8\x21\xe2\xbb\xb8\xb8\xbb\x1b\xa6\xc9\x20\xea\x73\x71\x70\xb7\x03\x77\xfa\x21\x78\x5b\x89\xae\x7a\xcb\xfb\xcc\xe6\x36\x21\xa5\x4e\x65\xab\x77\x43\xd9\xea\xdd\x70\xe3\x28\x4b\x0f\x2c\xa7\x19\xeb\x86\x89\x28\x53\x47\xa9\x35\x3d\xaf\xfc\x0a\xe0\x65\x51\xa4\x13\xba\x09\x74\xe0\xbe\xa7\x7c\xf7\xbe\xb7\x19\x5f\xb3\x6f\x6e\xbe\xfb\x2b\x2f\x53\xe5\x0e\x31\x15\x37\x47\xb1\x31\x9d\x50\xf2\xef\x27\x68\xc7\xe7\x3f\x0a\x9c\x77\xbf\x33\xbf\x9d\xf5\x99\x3e\xda\xa8\x90\x23\x39\x8f\xbd\x04\x91\xf8\x2d\xc5\x97\xf0\x02\x41\xc4\xb9\x33\x43\x50\xeb\xd1\xae\xfe\x1a\x5e\x28\x9f\xb8\x5f\x33\x45\x91\x99\xd0\x49\x25\x3a\x62\xa7\xf7\xc5\x87\x2c\x17\x2f\xaa\x2d\x8a\x14\xdd\xcc\xf4\xdf\x58\x1b\x47\x92\xbd\x39\x3a\x83\x97\x75\x39\x13\xec\xe4\x8f\x75\xf7\xcd\xed\xfe\x5b\xd5\xa3\x01\xda\xea\x1a\x3a\xd7\x12\x93\x2a\x3f\xae\x5b\x04\xec\x91\x92\x1d\x85\x2d\x22\xfa\xd1\x79\x79\xb7\x0f\x3b\x3c\xc5\xe4\xc1\x54\xb9\x33\x5c\xc2\xfe\x46\xcf\xf6\xd3\x9f\x62\x15\x1f\x46\x81\x68\x2f\xb8\x0d\x44\xd2\x58\x97\x4f\x04\x9d\x2f\x7c\x89\xa1\x57\xdf\xa4\xed\x07\x9d\xf2\xc3\x08\x0d\x9d\x66\xff\x92\x8c\xca\x9b\x8a\xfd\xf9\x83\xa9\x97\xa4\x7c\x00\x8e\x80\xd0\xb8\xaa\x89\x81\x22\xda\x3b\x01\x59\xa9\xb0\xbd\x7d\xa0\x1a\x4f\x1d\x04\xde\x88\xf1\x76\xa0\x52\x2f\x8e\x28\x1d\xa7\xb5\x72\x63\xda\xd9\xfb\x92\x1f\xb2\xae\x11\x76\x8d\xf6\x5e\x71\x69\x9e\x59\x58\xd8\xb3\xb1\x1e\x74\x7e\xed\x57\x9d\x1c\xe5\xe6\xf9\xfb\x85\x2f\x91\xd3\x26\x09\xe0\xba\x3d\xf9\xc5\x45\xd7\xcc\xd8\xbc\x99\x2c\x2c\x74\xb3\xb4\x74\xab\x8f\x58\x46\x7a\xdc\xdb\x8f\x5c\x45\x30\x27\xe4\x72\x34\x44\xa8\x27\x68\x1b\xdf\x9b\xbc\xd9\xc2\x48\xdd\xdd\x0d\xd7\x92\x28\xe4\x48\xcb\x61\x0b\x3d\xce\xb0\xd5\xbc\x75\x39\xcd\xa4\x62\x0b\x3c\x3b\x3a\x98\x7c\xac\xe0\xb6\x43\x93\xa7\x71\x84\xbf\x7d\xc1\x39\x06\xf8\x72\x77\xd3\x4c\x84\xba\x6c\x45\x96\x26\x43\xc1\xba\x72\x35\x33\xf0\xc5\xca\xef\xbb\xdd\xcf\x1e\x98\xc4\x26\xf1\x12\xe1\x0e\x46\xab\x6c\xdd\x7d\x40\x64\x93\x21\x49\xdf\x75\x84\xd9\xb9\xef\xfb\x4a\xb5\xf0\xfb\x6a\xff\x30\x93\x49\x1c\xd9\xfe\x63\x3a\x85\xbc\x18\x78\x7f\xe4\x2d\x3d\x9a\x31\x18\x34\xc7\xa7\xca\x64\xf0\xf8\xb4\x96\x64\xcc\xef\xe5\x5d\xe6\x26\x6d\x3f\xc2\xbf\xd4\x6e\x87\xec\x94\x86\x5b\xbb\xe6\x96\x55\x7b\x60\x62\xb3\xc8\x26\xa1\xa5\x38\x89\x49\xa6\x34\xa4\xa5\xa7\x5d\xfd\x92\x54\xc9\x15\x28\x10\x79\x21\xba\xc1\xf7\x5b\x35\x09\x6b\x42\xab\x4a\x4e\x79\xde\x39\x36\x3f\x2c\xec\x1b\x19\x02\x3f\x4a\x3c\x79\x3b\xa8\xf2\x2e\xee\xdf\x83\xfe\x24\xf5\x64\x5f\xe8\x5e\x36\x49\x98\x12\x76\x0f\xb7\x7f\x89\xfe\x8e\x8f\x1b\x45\xca\x6a\x7c\x0d\x94\x30\x0a\xf7\x2d\x6b\x3d\xcc\x4f\xa9\x92\x54\x98\x26\xd5\x18\xeb\x1b\xe9\x3c\xa0\x91\x74\x59\xf1\x01\x2e\xab\x14\xa7\x4f\x54\x56\x4d\x52\xd5\xb4\x56\xcd\x45\x7d\x28\xb3\xb4\x46\x6b\xd5\xdc\xd7\x87\x73\x5c\x6b\x74\xd9\x87\x72\x5c\x6b\x2c\xd5\x87\x11\x5e\x6b\xbc\x56\x3f\xb6\x27\xd5\x5e\x69\xe1\xde\x2b\x8e\xf5\xca\x2f\xe8\x1c\xae\x14\x99\xcb\x4f\xd4\xc2\xf6\x27\xad\xe2\x68\x93\x32\x1f\x09\xcc\x15\x11\xfa\x75\xba\x6d\x69\x84\xa8\xba\xe8\x8f\x55\x75\x72\x39\x33\x6f\x10\x70\x7f\xb7\xb7\xc3\x72\x8c\xb8\xb3\xb5\xde\xf8\x28\xcd\xc4\xcf\x14\xcb\xfb\x41\xd5\x79\x3c\xa8\xf2\x22\x7b\x20\x22\x5d\xd2\x6d\x0a\x90\x75\x15\x9b\x07\x9f\xd0\xa3\x72\xd0\x30\x97\x54\xfe\x1e\x95\xca\x50\x1e\xc1\xd0\x64\x83\xcb\xe9\x4e\xdf\xb2\xd2\x8b\xc1\xc1\xa9\x52\xa8\x38\xd8\x10\x3b\x5a\x9a\xeb\x8e\xd3\xb1\x4a\xcf\xd0\xf8\xe7\xe3\x96\xb5\x75\xbe\x1b\x47\x49\x48\xa9\x43\xf5\xbd\x28\x4b\x7c\x47\x49\xb2\x7c\x47\x51\x91\xab\x61\x5c\xc6\x85\x49\x44\xe6\x40\xb0\x55\x58\x82\x44\x2a\xd0\x57\x47\x58\x62\x48\xa0\x63\xfe\x25\x58\x93\x15\x23\x76\x9b\xc1\xfb\xba\xaa\xa4\xbb\xae\x36\x94\x75\x5e\x5c\xec\xda\x03\x85\x4d\xe0\x95\xe8\x41\x18\x81\xd7\x5d\xaf\xc3\x42\xca\xfc\xc0\xa3\x3e\xbf\x62\xa8\x34\xeb\xa0\x07\x5e\xe4\x18\x62\xed\x4e\x1f\xfd\x65\x27\x3c\x07\xd4\xac\xe8\x1a\x57\x2f\x06\xf3\xfa\xbe\x66\x8d\xdc\x6c\xeb\x16\xc6\x51\x5e\x58\x6f\x83\x27\xba\x7f\xfe\xee\x7c\x91\xbe\x1f\xe5\xa1\x85\x65\x9e\x4e\x6d\xe9\x73\x7c\xd2\x96\xb5\x90\x08\xa6\x6f\xe4\x9d\xa8\xa5\x46\x4a\xc9\xfd\x80\x0d\x4b\xae\x6a\xbd\xe8\x45\x4f\x15\x67\xe7\xae\xca\x4c\x7e\xaa\x94\x10\x7e\xa8\xfa\x19\x83\x34\x2d\x46\x51\x1c\xe7\x35\xb0\x2b\x4d\x3a\x41\xbb\xb6\x38\x1b\xf4\xcb\x31\x54\x71\x34\x0a\x54\xdc\x62\x5a\x3a\xf6\x71\x34\x1c\x15\x0e\xfd\x88\x3d\xfa\xb2\xda\xaf\x2f\xab\x42\xd9\xc4\x66\x59\xc4\xfd\x30\x71\xd4\x54\xea\xdf\x47\x35\xbd\x3d\xab\x12\xed\xc7\xbc\x74\x29\xfb\x5c\x49\x4b\xbd\xe3\x64\x05\x1e\xed\xa9\x06\xd2\x69\x6d\x59\x7a\x43\x05\xff\xb3\xeb\x0a\x98\x7f\x97\x86\x05\x1e\x42\x07\xea\x0b\xfc\x71\x2f\x02\x97\xa6\x7d\x55\x15\x3e\xab\x64\x3f\xb8\xcf\x2b\xc5\xae\x67\xeb\x1e\xe7\x85\x29\xa0\xa6\x20\x7c\xa7\xea\xf9\x09\x0f\xca\x37\x3b\x26\x59\xda\x2f\xc3\x2a\x08\xa9\x5e\x2a\x4a\x8e\x00\x13\xf2\x71\xdb\xf0\x59\x4d\xb3\xfd\xb3\x44\x3d\x70\xdc\x1f\x97\x4e\x83\x2c\x24\xda\x5e\xb4\x36\xcb\x5a\xef\xab\x12\x03\x6b\xb2\x3c\x1d\xdb\x4d\x02\x21\x6e\xbe\x34\xc5\x92\x1d\xa9\xd4\x14\x09\xd5\x9d\x3c\x2f\x7f\x5b\x4f\xcb\x84\xbc\x33\x55\xb5\xeb\x99\x75\x09\xa1\xa2\xa4\x5f\xe6\x45\x16\x99\xb8\x66\xe7\xcf\xf6\xc8\x58\x56\xef\xd5\xdb\x59\xde\x07\xf4\x3f\xee\x84\xff\x49\xbf\x3b\xa5\x79\x1e\x2d\x47\x71\x54\x44\xe2\x6a\x88\xeb\xb8\x45\x31\xb3\x9c\x28\x59\x9d\xcc\xae\x54\x19\x7c\xf4\x06\x0b\xb2\x6d\x00\x21\xbd\x71\x49\x99\x17\xbf\x96\x8e\x92\x3c\x4d\xb0\x5e\x62\x7f\x3c\xa9\xad\x34\x4f\x22\x30\x13\x3f\x54\xba\x07\x3e\x51\x28\x07\x13\x86\xe9\x78\x9c\x56\x01\x84\x06\x6c\x80\xec\xc2\xc7\xc1\xe3\x3e\xd9\x15\xe7\x1d\xc1\x97\xd2\x0f\x0a\xc0\xd4\x09\xc5\x9a\x2c\x82\xb5\xad\x7a\x1e\x7e\x2d\xb9\xd0\x2a\x30\x68\x62\xa7\x49\xba\xe8\xcc\x54\xe9\xaa\xc5\x65\x55\x77\x7e\xd7\xd8\x43\x05\x8b\x27\xeb\xaa\xf3\x49\xab\x87\xa8\x29\x0a\x43\x42\x72\xf4\xfd\xdc\xde\xc0\x53\x91\x5e\xc7\xf3\x4a\x81\x60\x90\x66\x63\xaa\xdc\x3f\x41\x63\x55\x1c\x4f\xab\xd9\x22\x0f\xb1\x9a\xa4\x0c\xb6\xd2\x7a\xef\x17\x35\xf5\xfe\xa6\xb2\xaa\x3f\xac\xd1\x67\xcc\x7e\x90\xea\x04\x8d\x22\x3c\xc6\x3b\x84\xae\xc7\x68\xfb\x11\x65\x7a\x48\x07\xdf\x0d\x54\xab\xf3\xae\xea\xa8\x5f\x57\xeb\x12\xd1\x9e\xad\x5a\xeb\xd0\x91\xe3\x63\x25\xbe\x36\x4e\x93\x62\x14\xaf\x6d\x53\xe2\x30\x40\xb6\x60\xcb\xda\xb9\xae\x04\x9e\x19\xf5\x8d\xf8\x7a\x67\x4f\xef\xc9\x17\x94\xe4\xcd\x56\x45\x44\x19\xaf\xe5\x85\xcd\xd6\x30\x56\x6a\xee\xfc\x92\x5b\x6f\x6e\xd2\x7c\xae\xbb\x12\x85\x42\x63\x54\x4a\xe1\xbb\x9d\x52\xf8\x53\xca\x53\xd3\xc6\x7d\x43\x7c\x1c\xe7\x09\x30\xbf\x57\x8e\x5b\x99\x69\x76\x6c\xa2\x84\xc7\x6e\xdb\x88\xfc\x84\x0a\xb9\xaa\xd4\x03\xb2\xed\x9a\xa1\xc6\x8c\x06\x3e\xd1\x68\xdd\x32\x8b\x6c\x7f\xab\x5f\x8d\x4f\xe2\x4e\x11\xbe\xde\x0c\x14\xa5\x1e\x6e\xfb\x22\x02\xa2\xc2\xe7\x93\xad\x92\x11\xa1\xcd\xec\x38\x4d\xd6\x3a\x4a\x04\xfd\xad\xa9\x5f\x85\xdf\x0a\x36\x03\xe4\x64\x3d\x1c\x64\xb6\x6f\xb3\x88\x5d\x80\x58\xa0\x6e\xaa\x3a\x7b\x7f\xd6\xc0\x89\x2d\x2e\x76\x13\x43\xe0\x2f\x27\x16\xc9\xc8\x14\x54\x53\xb6\xf5\x3c\xca\xe5\x7c\x4d\xd2\x6b\xfa\x5c\xbd\x14\xf5\xcb\x55\x14\xfd\x3c\x7d\x94\x09\x69\xc0\x5b\xa1\xfe\x79\x9b\x26\x0e\x86\xee\x61\x0e\xf0\x44\x08\x5d\xd1\x38\x58\xd0\x1a\x51\x2e\xa6\x11\x9e\xdb\x7d\x9a\x1f\xa8\x10\x72\x28\x8c\x25\xfe\xd6\xd4\x73\x49\x8f\x60\x65\x75\xa2\x2e\x8e\xff\x78\x68\x4a\xeb\xaf\x43\x2d\x54\x89\x2c\x8a\xed\xc7\xa8\xf1\x8e\x97\xf6\x87\x98\x6b\x40\x90\x1e\xd3\x66\xde\x8f\x52\x45\x4c\x0a\xd4\x94\xff\x89\x64\x10\xbd\x67\x74\xc8\xee\xb5\xc2\xfb\x4d\x1e\x02\x06\x82\x5d\x95\x1f\x41\xe0\x71\x32\x87\x15\x7f\x20\x23\x3b\xa4\xad\xd5\xbd\xea\xbb\xc0\x64\xb8\xaf\xb8\x88\xf7\x55\x4a\x76\x02\x2f\x0c\x15\xa7\x77\x74\x4a\x9f\x14\xa3\xcc\x1c\xa0\x29\x83\x7a\x08\x7b\x7d\xf1\x49\x23\xde\x9f\xdf\xdb\x4d\x07\x03\x4a\x66\xda\xf6\x61\x2d\xdf\x47\x4c\x4e\xef\x6e\xf0\xb1\x72\x37\xf8\xb8\x86\xd6\x19\x09\xef\x1a\x37\x74\x52\x21\xe1\x4f\x06\x4a\x70\xad\x8c\xd8\xae\x18\x08\x00\xc8\x1f\xb9\x25\xc1\x87\x59\xdb\x7a\x54\xc6\xe3\xbf\x42\xe8\x88\xf1\xf2\x60\xfa\xb8\x82\xcc\x26\x5b\x3d\xb0\x08\x6b\xca\xc6\x21\x14\x21\x36\x0e\xe1\x53\xda\x6d\x0a\xdf\x7d\x4b\x79\xd3\x4e\x4c\x66\xe2\xb5\x6a\x2f\xae\x1e\x07\x5e\xf7\x51\x7a\xea\x7c\xac\xed\xcb\xcd\x7e\x9b\x6d\xf7\xdd\x0e\x86\xf5\xa2\x84\x7a\xbf\x5e\x38\xd4\xea\x36\x87\x75\xb5\xf6\x88\x7a\x32\x33\x3d\x1a\xc9\xf8\xb6\xd3\x0d\xb3\xc1\xf9\xbd\xdd\xac\xda\xd7\x0a\x6b\x33\x89\x72\x51\x63\x3c\xa5\xfa\x97\xa7\x54\x0d\x60\x6c\xb2\xfd\xdb\xf0\xd3\xa2\x8c\xda\x71\x16\x98\x2c\x07\x8a\x0e\x26\x63\x0d\xb0\x61\x81\xe7\x82\x02\x10\xdb\xc1\x30\x17\x56\x45\xd0\xb1\x19\x2f\xdb\xac\xf0\x9e\x24\x3f\xc3\x05\x7d\xa1\x0f\xb6\x10\x11\x88\xda\x41\x6d\x2b\x7a\x52\xa8\xfe\x02\xec\xc2\xc7\xda\x26\x78\x92\x45\xc9\x7e\x72\x49\xaf\x9e\x0a\x4a\x95\x20\x88\x62\xe2\x9f\x50\x82\x38\xff\x93\xeb\xda\xbe\x61\x9c\x36\x73\x8d\x47\x2a\xb8\x44\xef\x06\xb3\x62\x93\xd2\xe6\xfc\x7c\x1c\x86\xb1\x5a\x89\xb0\x3b\xff\x2b\x5a\x64\x58\x4f\x1a\x53\x1e\x0b\xea\x7d\x6c\x92\x18\x65\x8c\xbb\x11\x51\x0c\x0f\x2f\x18\x95\xc3\x14\x11\x9b\xf2\xca\x95\xa5\x1d\xb2\x6d\x42\x08\x56\x8c\x8f\x2b\xea\x1b\xfa\x11\x8d\x43\x61\xad\x5e\x54\x0e\xe0\x17\x95\x97\x6a\x3e\x89\x6c\xbc\x92\x0e\xad\xf8\xa0\xbb\xdf\xf3\x09\x4d\x5b\x23\x79\x77\x37\x37\x85\x8d\xe3\x88\xd3\x04\xac\x0f\x18\x22\x7c\x1c\x78\xce\xcc\x2a\x29\xc4\x2e\x2c\x08\x4b\x24\xf0\xc5\xfc\x36\xd2\xc9\xee\x2a\x3e\x19\x0c\x58\x42\xec\x15\x37\xb2\xe8\xc9\xf1\x89\x8a\x51\x96\xcb\x38\x26\x75\xf7\x45\x2f\x2d\xa0\xd5\x04\x5a\x14\x3e\x56\x4d\x96\x99\x04\x52\x29\xae\xd3\xee\x26\xe3\x79\x05\xbb\x8a\xcd\xea\x53\xd5\x74\x46\x64\x77\x38\x50\x0b\xe7\x86\x66\x26\x9f\x54\x60\xd4\x6d\x5c\xd1\x47\x38\xb5\x75\xbd\xb3\x6b\x17\x97\x20\xb7\x13\x1c\x03\xc1\xc4\x06\x66\x07\xf2\xec\xbb\xd8\xfe\x51\xec\xdc\xda\xf3\x06\xd1\x3f\x0e\x7c\x61\xf3\x32\x46\x01\x5a\x2b\xac\x75\x89\x81\xb4\x85\x10\x58\x88\xaf\x08\x9b\xfb\x82\xac\x17\x35\xf1\xe1\xb1\x05\xfe\x06\xb9\xd6\x25\xcd\xf2\x7e\x5f\x1b\xe3\x6d\x59\xf7\x56\x7d\x3b\x7a\xd5\xed\x23\xf5\xbb\xa6\xa8\x32\xe8\xec\x23\x0c\xbc\x43\x28\x0e\x2c\xb0\xd7\x03\x45\x6b\x58\xa7\x69\x80\xd5\xe0\xa6\xb2\xf9\x7b\xa6\xd7\x02\x33\xed\xdb\x9c\xea\xf2\xae\xae\x7e\x56\x17\x6c\xcf\xb6\x35\x10\xc3\x74\x3c\x31\x8e\xd6\x2a\x43\x5d\x39\x52\x69\x7d\x96\x7e\x99\xec\x8f\x18\xa4\x8d\xf5\x9f\xf3\x6c\x3e\x69\xf1\xf9\x9b\xef\x86\xa3\xc8\x0e\x66\xd4\xb3\x39\xa4\xbb\x6b\x81\x87\x3d\x9c\xd4\x18\xec\xc4\x3e\x4a\x3c\x08\x36\xb7\x92\xd5\xb5\xfa\x6b\x34\x24\x8e\x68\x25\x10\xf6\x44\xc3\x73\xdd\x46\x2f\x1f\xff\x41\xaa\x18\xec\x7a\x4a\x8a\x10\x7b\x9f\xe9\xe9\x9d\x32\x59\xe3\x36\xa1\x80\xc8\xb4\x6d\xfe\x55\xb7\xac\x15\xcb\x69\xd2\xc7\x3d\x48\x75\xaf\xe3\xe8\xf8\x33\xb4\x9a\x60\xd5\xba\xa5\x64\xfc\x32\x5b\x65\x7c\x36\x41\xfd\xc0\xf9\x92\x6d\x56\x24\x17\xaf\x2f\xb5\xa4\x14\x59\x39\x1c\x82\x1e\x3b\xbf\x57\x78\x51\x0a\xc6\x7a\xa6\x25\xea\xd9\x2d\x1c\x43\xc9\xbc\x18\xb9\x86\x10\x59\x60\x6c\xca\xd7\xc7\xc6\x36\x14\xb0\x34\x4a\x2b\xef\x52\x60\x86\xa9\x09\xd4\x1f\x3a\x0f\x57\x03\x5f\x27\x0d\xd3\xa4\xc8\x4c\x5e\xcc\x28\xc5\x8d\x6f\x4f\x15\xe6\x0a\xbf\x87\x48\xef\x4f\x5a\xca\x95\xaf\x38\xea\xaf\xf2\xce\x3f\xaa\xb4\xd9\x8f\xaa\x61\xf0\x8b\xe9\xa0\xe3\x57\x95\x1f\xaa\xb2\xeb\x0f\x9d\xf9\xd3\x68\x6d\x92\x0e\xe3\xb5\xd0\x8e\x45\xa3\x0f\x80\x36\xdc\x01\xe6\x3d\x34\x3b\xdd\xbf\x3b\x21\xdb\x2b\xea\xb7\x5e\x78\x71\x37\xde\x30\xf6\xe4\xfb\x41\xcd\xdf\xc1\xc3\x37\xce\xa9\xaa\x31\x2d\x82\x43\xde\x27\xda\xc2\x37\xa9\x45\xaf\x8e\xa2\x2c\x5e\x8d\x12\xf4\x0e\x24\x14\xab\xe6\xbc\x84\x68\x9b\xd7\xd8\x17\x17\xbb\xe5\x24\x0f\x4d\xac\xf5\xd3\xef\x2b\xbd\x99\xfb\xd3\xbf\xdd\xfc\x48\x35\xe6\xb2\xfe\x7e\x6b\x27\xee\x09\x0b\x94\xbc\xe3\xa4\x0a\x6e\xb7\xca\x9e\x0f\xd3\xb8\xbf\x6c\xb3\x21\xdd\x8b\x02\x1b\x3b\xe4\x71\x2b\xd0\x5b\xf1\xdb\x91\xbd\x1c\x09\x54\x63\xf8\x48\x9b\xdc\xe8\x67\xba\xb1\x5d\xb1\x99\x19\x4a\xe9\x1f\x7d\x11\x28\xbe\x61\x05\x46\xc4\x8a\x9a\xf7\x0d\xad\x9c\x6c\xc5\xb7\x5a\xde\x05\xe5\x15\x4a\xa4\xdd\xef\x26\xf4\xfa\xd0\x2d\xde\x4a\x24\x0c\x24\x51\xac\x93\x8a\x09\xf1\x28\x2d\xd3\x38\x7e\xbc\xa7\x6c\x57\xb7\xf7\x3c\x23\x72\xf0\xff\x23\xb8\x9d\x24\x64\x9e\x0d\xbf\x85\x16\x70\x84\x36\x6f\x2a\xb6\xca\x8e\x75\x15\xb5\x7d\xab\x91\x80\xef\xda\xd5\x8d\xad\xc9\xa1\x4f\x28\x4e\x28\x74\xe9\x20\x2f\xde\x54\x90\xe1\xf3\x6d\x88\xb1\x15\x13\x9a\x24\x04\x09\xb5\xad\x38\xbd\x79\x5c\x78\x77\x7e\xaa\xc1\xe1\x83\xc8\xe1\xd9\xc9\x8e\x4f\x1a\x4c\xae\xa5\xb9\x6e\xf5\x53\x56\x8a\x76\x78\x23\xe7\xb0\x41\x61\xc2\x7f\x65\xaa\xc4\x6a\x4e\xab\x77\x35\x31\xf1\xa3\xf4\xe5\xd8\xb8\xdf\xa1\x0a\x0b\x06\x20\xa8\xb9\xb8\xdc\x47\xd6\x29\xb7\x90\x65\x75\x66\xcf\x3f\xfa\xa2\x96\xba\x90\x80\x44\x2f\xb8\x9f\x46\x77\x0a\x29\xef\x95\x36\xdf\xe0\xd5\x6a\x5a\x3a\x7d\x01\x89\x4f\x14\x4e\xea\xbc\xf6\x1b\xa5\x5d\xd3\x0a\x9d\x50\x44\xfe\x69\x34\xc8\xc8\x6a\x23\x98\x85\x59\xba\x6a\x39\xe8\x73\x96\x44\xd5\x0d\xf3\x49\x23\xd5\xfb\xe2\x3c\x35\x36\xbd\x2c\xe5\x31\xdc\x21\xb3\x0a\x83\x1a\xb2\xf7\x19\x55\xa3\x1c\x54\x4b\x35\x6b\x05\x60\x82\xbc\xad\x79\x8b\xdf\xd6\xe8\xf8\xb7\x15\xb9\xe3\xaf\xa7\x2a\xbb\xfe\x9f\x5d\xd5\xd0\x26\x45\x94\x59\x38\x37\x2d\xd6\xec\x8e\x64\x34\x29\x75\xaa\x91\xc9\xc6\x26\xa4\x7a\xea\xc2\xc2\x92\x63\x83\x75\x94\xfb\xd8\xc3\x6a\x23\x36\x8e\xde\x30\xcb\xb6\x18\x29\x61\xb4\xd3\xba\xd4\x74\x5a\x15\xd4\x26\xb1\x49\x8a\x9c\x88\x57\x3c\x60\x10\xf4\xcb\x4a\xe4\xc9\x7b\x87\x75\x49\x0e\x13\x47\x84\xf7\x54\xd2\x7b\x31\x50\x3a\x1b\x97\x69\xf0\xe1\xe3\xef\x4f\xb5\xf5\xa0\x8a\x28\x3a\x3d\x65\x72\x9b\xd9\x95\x28\x2d\x79\x48\xb8\x49\xe6\x27\x9c\xb6\xcb\x8e\x86\x23\x64\x62\xb5\xba\xa4\x6c\x07\xb2\x05\x84\x51\x16\x42\x97\x94\xbe\x93\x9d\x9b\x95\xe6\xda\x6d\xa5\xd3\xfc\x8d\x06\x80\x67\xc5\xce\x7a\x09\x1d\x5e\xea\x44\x85\xc8\xe1\x88\x16\x9e\xee\xf9\x5a\xed\x96\x75\x7f\x3f\xfd\xb5\xbc\x48\x27\x11\x10\x60\x68\x17\x01\xa5\xca\xc7\x8d\x01\x5e\x85\x86\xa3\x28\x33\xa1\xd2\x98\x62\xa6\xbe\x58\xc6\x4a\x76\x92\x66\x43\x23\x4d\x56\x57\x41\x59\xf2\x84\x95\xcd\x8b\x8a\x0c\x8f\xea\xe9\xee\x5e\x12\x75\x9d\x73\x81\x92\xda\x39\x57\x2b\x67\x58\x33\x86\xe3\x22\xda\x04\x57\x94\x0b\xf3\xe3\x04\x1b\x47\x69\x0f\x2e\x5d\xc8\x18\x1f\xe9\x29\x75\xf5\xcb\x08\xd3\x99\x06\x3a\xd5\x96\xe9\x74\xd1\x0e\x37\xe7\x1a\xbc\x57\xe8\x06\xf0\x5a\xee\x2b\x74\xe0\xb0\x8c\xfa\x55\xf0\x62\xf3\xd9\xc6\x4b\x44\xbd\xf5\xa4\x82\x4b\xdc\xd0\x16\x37\xc7\x55\x72\x5d\x6d\x7f\x6b\xcb\x69\x7f\x6d\xd6\x8b\x67\x5c\xa0\xca\x2a\xe0\x3e\x57\x6a\x2c\xcc\xea\x7a\xf9\xdf\x5b\x85\x5b\x33\x9b\xa7\x59\xc1\x7a\x77\x62\x07\xad\xcb\x7d\xf7\x94\x5b\x98\x29\x0a\x3b\x9e\x14\xb3\xbe\xd2\xf3\x60\xea\xe3\x8b\x07\x94\xf6\xe1\x19\x60\x7c\xa0\x25\x70\x4d\xe1\x2c\xc2\x38\xcd\xed\x4e\x25\x4f\xf2\x1d\xba\x65\xe6\x49\x29\xcd\xef\x6b\xb0\x4c\x70\x06\xa8\x2f\x2e\x3a\x0a\x92\xa2\x17\x80\xb7\xe1\x80\x60\xbe\xb5\xc9\x86\x54\xae\xa6\x5d\x0d\x15\x31\x50\xad\xae\x92\xbf\xab\x11\xcb\xec\x9b\xeb\x9a\xc9\x24\x25\x9c\x42\x47\x21\xe9\xea\xe6\x4f\x6d\x62\x8f\x45\x9a\x58\x68\x62\xe3\xb9\x31\x88\x82\x15\xea\xe9\xce\x18\x82\xd2\xa8\xe9\xce\xef\xed\x0e\xa3\x7e\x1f\xf0\x20\x17\xd3\x3a\xb6\xe7\xd1\xcd\x95\xdb\x17\x17\xbb\xf3\x7b\x77\x7a\x78\xe0\x31\x55\x6b\xe5\x95\x4b\xd4\x18\xe8\x91\xb0\xd3\x94\x72\xa7\x80\x8e\x9b\xb3\xc4\x7f\xd9\xe1\x40\x0e\x6a\x0d\xcf\x6f\xf2\x40\x10\x4f\x04\xd5\xc4\x0d\x94\x6f\x9f\xf6\x7f\x36\x21\xe9\xdc\xc1\x64\x47\x4c\x8f\x3c\x0b\xea\x5d\x85\x63\xfd\x33\xfa\x3e\x51\x6d\xa3\x9f\x75\x58\x25\x4f\x81\x7d\xb3\x69\xde\xf0\xd2\x9e\x6e\x5e\x98\xa4\x3f\xeb\x3d\xf6\xce\x4e\x95\x02\xe4\x2d\x2d\x21\x77\x44\x89\x8a\x4c\x55\x7d\x2d\x1c\x84\x35\xb8\xda\x05\xb5\x96\x5f\x50\x6e\x95\x65\x32\xc9\x6c\x95\xe4\xa2\xac\xe8\xec\x90\xbd\xcf\x46\x20\x5d\x4a\x52\xae\x24\x6e\x25\xcc\x8d\x9d\xa0\x8c\xd7\x39\x03\xbb\x0c\x2b\xef\x99\x46\x78\x2b\x6b\x5b\x68\x32\x61\x82\x63\x45\xfb\x03\x2d\x0a\xfc\x07\x8d\xfc\xed\xc5\xc5\x6e\x3a\x18\xe4\xb6\xf0\x92\xc9\xce\x6d\xc5\xf1\x6e\x8f\xb4\x2a\x4c\x15\xe9\xd8\x70\xed\xc6\xd1\x07\x14\x84\xbb\xb5\xf4\x14\xa7\x69\x95\xff\x99\xc1\x0c\x4d\x51\x20\xbd\x20\x99\x84\xd1\x7e\xbb\x4e\xce\xf3\xdb\x74\x38\x4a\x27\x13\xb8\x7b\x8b\x53\x7f\xf5\x50\xc5\xc1\x5f\x89\x68\x18\x92\x11\x9b\xa5\x91\x89\x80\xee\x23\x5a\x03\xf8\x18\xcf\x14\x53\xfd\x3c\xa7\xdd\x7c\x56\xb3\x4a\x59\x85\x63\x1d\xf6\xf1\xab\xf8\x14\x2a\x77\xef\xe1\x3e\x31\x30\x90\xf4\xbb\x15\x6d\xc9\xdb\x80\xaa\x5e\xe0\xa7\x81\xa7\x43\xac\x7a\x5e\xc7\xdc\x8f\xaf\xfb\x56\xfd\x4f\x54\x99\xf6\xa0\xea\x03\x8f\x4d\x99\x59\xcb\xe5\x0f\xd7\x9e\x59\x74\x3e\x2e\xde\xef\x2c\x1c\x71\x91\x98\x5e\xa4\xd3\xef\x70\xbc\xeb\xb7\xda\x24\x7a\xfa\xd5\x18\x45\x41\x8d\xa3\xb7\x5a\x24\xe7\x4c\xd7\x54\x52\x88\xe1\x8b\x95\x80\x8f\x1b\x48\xd0\xbd\x2f\x75\x0b\x9b\x17\x34\x9c\x31\x39\xef\x07\x4a\xb5\xf0\x9c\xb2\x02\xf7\x2e\x86\x58\x3e\x45\xa5\x03\x1b\x3e\x3f\x7b\xac\x44\x67\x74\xb1\xeb\x91\x9e\x04\x2b\x93\x2c\x1d\x44\xf0\x7f\x57\xeb\xe8\x05\xe5\x92\x74\xa1\x51\x23\xda\xb5\xab\x3b\x5e\xcb\x6d\x3c\x40\x34\xa0\x7d\x78\xf8\xd8\x21\x01\xf2\x72\x79\xcc\x70\x7f\xa9\x7d\x56\xb7\x25\x35\xd1\x87\xf1\xe6\x8b\x74\x62\xde\x50\x02\x95\x3f\xc2\xc5\x8b\xb8\xd1\x0e\x0f\x8b\x40\x15\x8c\xe9\x6d\x81\xca\x5e\x9a\x5c\xb7\x85\x85\xee\x20\x8a\xc7\xb9\x02\x87\x20\x98\x14\xaa\x1b\x3d\x00\x9c\xdc\x6f\x30\x01\x5f\x5e\x9a\x23\x18\x5b\x14\x47\x26\x61\x34\x85\x74\x48\xf1\xd0\x6b\x82\xcc\x58\x86\xef\xb6\xe8\x47\xbf\xd0\x0d\xd3\xd0\x28\x9c\xfe\xb9\xc0\x63\xf3\xce\x79\x0f\x73\x72\xa5\xcc\xf5\xee\x86\x85\xac\xee\xaa\x8e\xe0\xf6\xeb\xed\xb0\x01\x5b\xd8\x2c\x31\x8a\x11\x74\x9c\x8a\x96\x62\x1f\xe9\x58\x74\x69\x3e\x89\xc8\x89\xbb\xc6\xf6\xc5\x8d\x08\xe8\xcb\xaf\x13\xaf\x97\x26\x8e\x8a\xb5\x47\x55\x50\x8e\x26\x24\xe6\xf5\x1f\xd2\xf8\x74\x19\x41\x95\x82\x08\x4e\x96\xa6\x2f\xa6\xc7\x23\x3d\xaf\xe2\xfb\xf1\xd4\xab\xf8\xc2\x01\x1d\x7b\xbe\xae\xf5\xfc\xe7\x9f\xff\xa5\x9a\xd9\x5c\x67\xd7\xbc\xf3\x9a\xf3\xec\xce\xe5\xa8\xd8\xea\x3b\xf5\x9f\x04\x76\x00\xe9\xe8\x9f\xd2\xc3\xa3\x1a\xe3\x6f\x3e\x03\x48\x11\x62\xcd\x2d\x30\x2d\x41\x41\xb4\x89\xcb\x86\x24\x60\x32\xa3\xdf\xf1\x31\x55\x9a\xd9\x8e\x7c\x1c\x19\x5b\xc7\x91\xc6\x87\x51\x92\xdb\x2a\x9b\x75\x4c\xcc\x47\xa8\xf6\xc0\xc7\x3d\xa5\x22\x48\x66\xda\x0c\x47\xd3\xd2\x35\xd2\x68\x6e\x0a\x1b\xf6\x6d\x6c\xd6\x24\x56\xc2\x2f\xc3\x6f\x9c\x8f\xdb\xa0\x7c\x79\x61\xe2\x28\x21\x8d\x78\x17\x91\x9c\xd2\xad\x9e\x53\x8d\xb1\xfa\xea\xab\x04\x08\xc6\xa6\x88\xc5\xe7\x06\xa6\x18\x9f\x68\xf5\x1d\x5b\x94\x13\xc5\xff\x3e\x5b\xd3\x8e\xf1\xa9\x71\x18\x9b\x2c\x4a\xb8\xfe\x84\x15\xf0\x1d\x82\xca\xf3\x71\xcb\xdd\xd6\xa4\x70\x38\x62\x0a\x7c\x36\x7b\xb0\xa1\xbe\x31\xbf\x97\x45\x30\x1c\xe0\x03\x7f\x79\x47\x29\xd0\xdc\x51\x1d\xe0\x34\x2c\xd2\x65\x9b\x3d\xee\xe1\x20\x5c\x4b\xe0\x12\x07\xa5\x16\xa8\x9d\x40\xdb\xc5\x79\x40\x56\xcf\xdf\xd5\x41\x3c\x96\xf7\x82\x6e\x8b\x21\x6e\xe1\xca\x18\x14\x9c\xf8\xaf\x74\xd1\x7e\x3b\xa5\x42\xa2\x83\xa6\x78\xc1\x77\xdb\x34\x13\x1c\x66\xa3\xfa\x02\xd1\xa5\x52\x72\x5d\xf7\xdc\xc6\x56\x8c\x32\x6b\x0a\x9b\xcc\x54\xd7\xed\x1c\x6d\xf7\x09\x91\x0a\x71\xa2\x84\x80\xca\xe7\x88\x97\x0d\xa5\x0f\xb9\xdb\x89\x05\x6f\xae\x56\x2d\xcd\x91\x05\x6a\x98\x26\xfd\xd2\xe1\x54\xd8\xff\x39\xf0\x79\x51\x03\x0c\x31\xbf\xb7\xbb\x6b\xd7\x27\x15\x8e\xe4\x1b\x88\x8a\xf1\x14\x6e\x73\x88\xc1\xee\x90\xf4\x45\x78\x70\x2c\xae\x84\x88\xee\x3f\xe0\xc1\x23\x76\x3a\x4a\xeb\x02\x26\xce\x55\x8a\x5d\x30\xad\x0f\xd3\xba\x87\xbd\xef\x37\x48\xd0\xfa\x86\x76\x06\x3e\xa3\xf7\xd7\xdf\x0a\x94\x40\xd8\x47\x81\x32\x41\xbc\x89\xd5\x4c\x78\x80\xf4\x8e\xd1\x30\x3a\x47\xc9\x00\xd3\x9c\x15\x0a\x85\x21\x15\xc2\x65\xa4\x11\x8c\x28\xe7\x47\x53\x8d\x1f\xa0\x7d\x54\x82\x1c\x15\x91\x8d\xa8\x56\xbd\xb5\xba\x11\x51\x9e\xe8\x38\x21\xde\x93\x53\x25\xd5\xf3\x03\x1a\x65\x40\xa5\x01\x8e\xc2\xc7\xeb\xb2\xca\x0f\x4c\x52\x98\x3c\x7a\x03\x55\x4c\x2c\xc9\x27\x71\x13\xc8\x49\x38\x84\x17\xc7\x08\x95\x81\xf6\x57\xa2\xbc\x8a\xc5\x1d\x54\xfa\x27\x40\xad\xf0\x49\xeb\xe6\x53\xa5\x24\x61\x14\xeb\x8d\xf2\x4e\xd0\xf9\xe2\xbc\x37\x7b\x57\x3d\x2f\xbf\x3e\x2c\x5b\x12\x39\xb6\x33\xbe\xea\x7e\x55\x55\x57\x41\x3a\x97\xfc\xbb\xb9\xb9\x6a\x3a\x31\x5e\xf7\x39\x65\x54\x7b\xce\xc1\xf5\xec\x81\x28\xb6\x5b\x95\x2f\x3c\x00\x99\x08\xab\xd9\xff\x19\x21\xfc\xd7\x94\x6e\xc3\x9f\xd2\xf0\x12\x6e\x54\x0b\xbd\x93\xfc\x73\x50\xf6\xc1\x76\x36\x0b\xde\x90\xa8\xa1\xfb\xaa\x1a\xe7\x5b\x48\x89\x2f\x4d\x9f\x53\xc4\x85\x6a\xc9\xcd\xa3\x82\xed\x6d\x25\x50\xa1\xef\x61\xa9\x4b\xc5\x66\xbf\x8a\xd1\xca\x32\x3f\x35\x11\xb5\x2c\x9d\x60\x8f\x96\x5f\xec\x2c\xcd\x6d\x60\x9d\x01\xc7\x62\x66\x5d\xe1\xf8\xef\x06\xde\xfa\xf3\xc3\xc0\x37\xae\x8f\x62\xc9\x62\xd0\x9d\x16\x39\xed\xac\x2b\x80\x7f\x6a\xb2\x7e\xbe\xad\xb3\x6b\x17\xef\xdd\x27\x50\xe7\x97\x9e\x1e\xfd\x10\xae\xfe\x3a\xfd\x10\x62\x85\xad\x3d\x8f\xc1\xbe\x4e\x73\x08\xfd\xa9\x4b\x53\x91\xaf\xee\xa3\xfa\x2a\x40\x7c\x0f\xac\xff\x23\x3c\x40\xdc\xc9\x4f\xbc\x7a\x74\x9a\x0d\x47\xe5\xb8\xe3\x35\x66\x7f\xa8\xca\x00\x3f\x6c\x0c\x99\x5d\xbb\xba\xf9\x28\xb5\x50\x77\x91\x6c\xa6\x96\xe8\x38\x84\xa7\xe9\x9b\x6c\x46\xfd\xd7\x71\x45\xf5\x44\x2b\x04\xdd\xcc\x9b\xd3\xbf\xf3\x90\xb0\x36\xb1\xd9\x4a\x5a\xe6\x89\xcd\xf3\x99\xea\x51\x39\x02\xaa\xeb\x36\xf2\xd2\x86\x74\xe9\x50\x8b\x8a\xe2\x62\x77\x9c\x66\xa4\xbc\xb3\x7b\xe3\x12\xd6\x23\x2c\x00\x08\xa8\xb0\x33\xb1\x73\x11\x7a\x1b\x6f\xd6\x00\x2e\x51\x4c\x01\x12\x3e\xb3\xb3\xa7\xbf\x07\x57\x83\x5e\x06\xff\x3f\x42\x23\xb1\x4a\x52\xa4\x7d\xd3\x8f\xd7\xb6\x2a\xb7\x5d\x5e\xab\x55\x5b\x47\x66\xec\x03\x25\xc7\xf6\x08\x88\x34\x28\x32\xfc\x41\x0b\xcc\x6e\x4f\xd7\x0e\x87\x5c\xc2\x15\x8d\x66\x45\xae\xbd\x50\x93\xc9\x9f\xd8\x18\x88\x61\x26\x61\x62\x11\x17\x46\xe6\xd3\x4a\x4a\xc9\xae\x0d\x50\x18\x9e\x77\x1d\x45\x9a\x5b\x7c\xe2\xea\xa2\xe1\xc8\x3a\x98\x2d\xf2\x7e\x66\x2d\xf2\x49\x6b\xb7\x9c\x78\x28\x34\x7c\x9c\x37\x51\x75\xf9\x52\xa8\x78\xca\x25\x5a\x36\xcf\xcb\xcc\x6e\xab\x76\x22\xf1\xd5\xe9\xec\x9a\xdf\xb8\xa4\x8a\x71\x8c\x94\x41\xa5\xfc\xc1\x54\x19\xae\x79\x59\x8a\xf1\x33\xbd\x67\x15\x18\xdd\x0c\xc9\xa7\x4e\xe5\xf7\xe8\x3b\x0b\x05\xd9\xbf\xfc\xd5\xcf\xbf\xf6\x79\x7a\x08\x1b\x77\x00\x99\xbe\xd3\x8a\x54\xb7\x79\xb1\xdd\x97\x65\x7e\x82\x69\x86\xd1\x79\xa3\x56\xa4\xfc\xbe\x6f\xd7\x9e\x7b\x0e\x50\x2c\xfc\xd9\x2d\xbc\x7f\xd4\xc6\x18\x4c\x27\xe0\x03\x2f\x87\x10\x25\xaf\x95\xd9\x1a\x54\xa2\x75\x36\xc6\x78\xed\xa9\x47\x77\x5c\x9e\x7a\xba\xdc\x23\x3d\x65\x94\x72\x52\x99\x32\x2f\x9b\x6c\x68\x22\x96\x15\xc2\x38\xbc\xad\x38\x8e\xb7\x95\xdb\x49\x3f\xca\x29\x87\x19\x08\x5e\xc8\xb9\x8c\xb9\x7d\x96\xc8\x01\xee\x42\xf3\x12\x9c\x06\x85\x57\x63\x9c\x17\x42\xe7\x77\x94\x42\xd3\x4f\xf5\x82\xcc\x81\x20\x66\x16\x42\x62\xf4\x91\x0e\x4d\x7d\x61\x85\xb1\x52\x88\x05\x2e\xf3\x4c\xe2\x2f\x76\xab\xcf\x80\xaa\x61\x0a\x11\x75\x4a\xfb\x8d\x34\xe9\x92\xf3\x7b\xd9\x1a\x89\x0c\x60\x5c\x87\xe1\xa4\xf2\x69\x6a\x02\x6b\xf7\xcd\x75\xc7\x69\x12\x15\x69\xb6\x49\x7f\x5f\xd9\xc6\x9c\x78\xa8\xf2\x43\x6e\xc6\x9d\x6a\x83\x7f\x08\x8c\xcc\x67\x00\xd6\x24\x79\xc7\x0b\xc9\xdc\x0a\x3c\xed\xef\x96\x6b\x79\x11\xe1\x9c\x3c\xcb\x9d\x7e\xf2\x6d\x65\x23\x7d\xdb\x35\xea\x53\x72\xc2\x4c\x33\x4e\x95\x51\xd9\xc1\x2a\xa6\x74\x51\x5e\x71\x36\x68\xae\x2c\x93\xc4\x69\x28\x6a\x75\x78\x8c\x4c\x05\xe0\x13\x2d\xc6\x58\xc6\x96\x2c\x25\xd8\x1a\x38\x50\xa0\xa4\x5b\x1a\x52\xf4\x3f\xd0\x3b\x46\xce\xfc\xac\x02\x28\xb1\x2d\x9b\x54\x16\x7d\x73\x1b\x1e\x18\xc8\x89\xb7\xa9\x89\x9d\xd9\x55\x93\x11\x20\xb6\xda\x28\xb0\x1c\xc3\xc5\x8e\x8f\xdd\x83\x1a\x98\xbc\x58\x36\x71\x3c\xe3\x73\x46\xac\xb9\x0a\xa8\xec\x29\xc5\xc2\x92\x59\x36\x19\x0a\x21\xd2\xb5\xa6\xc7\xc0\xba\x55\x5a\x36\xf8\x66\x23\xdc\x87\xbe\x33\x69\x92\xbc\x5e\xda\x18\xa5\xc5\x36\x8f\xdd\xcd\x89\xcb\xe7\xba\xc3\xac\xb4\x79\x3a\xd6\x8d\x74\x20\x84\xd0\xce\x86\x03\xa2\x88\xf7\x39\x2c\x9d\x1d\x9a\x70\x4d\x8b\x47\x4e\x7d\xa9\x49\x2b\xd4\xd3\x12\xcb\x1e\x8c\x98\x66\xb0\xcd\xe2\xe3\x86\x3f\xd0\xbe\xb9\xdd\xdd\x41\x74\x40\xc6\x3a\x06\x08\x34\xad\xf8\xd8\xb1\xc6\xaa\x05\x23\xe9\x5b\x37\x2f\xb0\x4a\x00\x04\xc3\xc7\x8a\xbf\x65\xc2\xd0\x4e\xe0\x26\xe4\x28\x44\xe8\x0a\xf1\xb1\x72\x71\x61\x8b\x9a\x22\x9d\x74\x14\x64\xf2\xb8\xf6\x9c\x38\xae\xaa\xb9\xab\x36\x1a\x8e\xf2\x19\x05\xf5\xbd\xa0\x55\xe3\xb5\x16\xef\x39\xd5\x06\xeb\xdb\x89\x4d\xfa\x36\x09\xd7\xb8\x90\x81\x8e\x11\xa2\x70\x88\x4e\xdd\x56\x1a\xfd\x27\x55\xb3\xdd\xf4\x5f\x4b\x23\xe1\xd6\x79\x87\x20\x95\x7a\x9e\x69\x40\x6f\x59\x75\x07\x3e\x73\xf2\xcc\x80\x95\xbb\x89\xb9\xc3\x27\x6d\x20\x9a\xe5\x2c\x2a\xa2\x7c\xc4\x17\x2a\x26\xba\x5e\xa4\xe1\xd2\x54\xd1\x26\xef\xaa\x47\x39\xb1\xd9\x38\xca\x41\x57\xdc\x37\xc7\xb7\x02\xb1\x04\x3e\x5e\x7f\x46\xf3\x2a\x8b\xcc\x64\x6b\x34\x14\xf1\x24\x0f\x22\x66\x45\x25\x6e\x96\xe2\x29\x6c\x68\x5b\xd6\x5b\x18\x01\xe3\xb4\x0f\x2b\x43\xc9\x44\xd1\x62\xe7\x63\x6d\x13\x91\xae\x2d\x5b\xd7\x6f\x15\x0f\x08\x5f\x85\x39\xe6\x3a\xc7\x45\x99\x25\x86\x84\xfc\x3a\x1e\xcb\xa5\x53\xf4\xdb\xad\xae\x79\x6a\x0c\x63\xc0\x40\xa7\x93\x8f\x1b\x8f\x78\x69\xae\xbb\x6c\x43\x53\xe6\x48\x54\xd0\xb5\x62\xe5\x13\x71\x52\xae\xee\x1d\x73\x72\x3b\xad\x62\xb4\x83\xbd\xfc\x6c\xcf\xb3\xa3\xf2\x72\x39\x0f\xb3\x68\xd9\xf2\x3a\x82\xe2\xc0\x0d\x2d\xb4\x7c\x48\xf9\xac\x6a\x5b\xfb\xe5\x68\xbf\xcd\x29\xc1\x43\x90\x72\x10\xbf\x0d\x61\xfc\x43\x53\x8f\xda\x3d\xeb\x48\x7d\x2b\x69\x61\xe1\x23\xe4\x22\x5c\xef\x2b\xf8\xa7\x53\x9f\x2c\xde\xd5\xc2\xac\xcc\xf7\xc3\xb0\xb9\x36\xf5\x6f\xfa\x9e\x77\x9c\x0d\x9f\xeb\x69\x7f\x96\x36\xa3\xd6\x30\x4b\xf3\xbc\x6e\x97\xe4\xa5\xf6\x2f\x78\x2d\xbf\x34\xb1\x85\x61\xb0\x0e\x32\xdb\xb7\x35\x9a\xf3\xed\x46\x2f\x98\xe0\x5f\xc4\x3b\xac\xd5\xf2\x0e\x04\xbe\x96\x77\xa0\xc6\x7b\x58\xb6\x71\xbe\x55\x89\xff\x22\x6b\x45\xa2\x76\x52\x93\xab\xbe\x35\xf5\xcc\x51\x40\x6b\x45\x80\xf6\x61\xfd\xaf\xb1\x49\xfa\xcc\x62\x76\x22\x29\x1e\x66\x7d\xae\x55\x28\xdd\x0c\x48\x4b\x86\xfe\x0e\xb1\x34\x88\x90\x7c\xdc\x26\x4d\xd2\x8f\xf2\x09\xdc\x34\xbd\x28\xe6\xd9\x40\xad\xa9\x67\xd5\x3a\xda\xb7\x79\x94\x51\x11\x4f\x61\x30\x99\x42\xc4\x27\x6d\xfa\xfd\xcb\x76\x18\x25\x9e\x0d\x2c\xfc\xfa\x8e\x53\xac\x3f\xe2\xdc\x91\x6c\x42\x44\x55\x31\x44\xea\x2c\xfa\xa0\xcc\xa3\x6b\xbe\x4e\x4b\x37\xb6\xc3\x1d\x3d\x35\x8b\x4f\x29\xad\xc9\xd3\x54\x62\x42\x25\xe5\x0e\x52\x11\x15\xde\x09\xb6\xe2\x63\x15\x00\x67\x66\x52\x65\x0e\x4a\x1c\xe0\xbc\xea\xd4\x9e\x57\xa0\xc5\x7e\x64\x96\x6d\xc1\x3b\x1b\xf6\xbd\xab\x78\x3b\x7c\xa2\xe0\x3f\xc5\xc8\x8e\xe1\x97\x4a\x2e\x32\x40\xca\xdd\x44\x1a\xc3\xea\x82\x08\xcf\x45\x6a\x90\xee\x87\x41\x03\xda\x33\x14\x8a\xae\x0c\x19\xe3\xa8\xd4\xcd\x24\xa7\x4c\xbb\x15\xfa\xac\x08\xef\xb7\x40\x22\x99\x4d\xe1\x03\x1f\xd9\x1c\x57\xaa\x46\x7b\x22\xac\x6e\x22\x5f\x4d\x3f\xc9\x27\x8d\x04\x0b\xc0\x78\x3b\xe1\x30\x0d\x97\xb9\xa1\x19\xee\x1b\x2a\xd3\x8b\x92\x7c\x12\x65\x16\x7f\x2b\xba\x7d\xbe\xbf\x7f\x36\xf8\x94\xc7\xb8\x47\x61\x15\x5f\x72\x36\xae\x54\x57\xbe\xab\x54\x57\xbe\x5b\xab\xa7\x4c\x46\x96\x10\x55\x1b\x6f\x91\x6e\xc3\xc6\x5b\x0e\xd0\x6a\x48\x98\x24\x1d\x43\x2f\x65\xdf\xdc\x06\x15\x9d\x36\x74\xd4\xfb\x7a\x19\x65\xfb\xb1\x34\x20\xf9\x63\x82\x25\x9f\x4c\x3f\xe5\x73\xf4\x28\xcf\xec\x04\xe2\x49\x96\xa5\xb5\xd0\xcf\x93\xdc\x80\xcf\x5a\xe4\x90\xf7\x74\xcb\xdc\x52\xa9\x57\x09\x13\xc9\xd8\x03\x14\x55\xa2\x11\x4f\x7e\x5e\x2e\xa3\x98\xac\xf5\x68\x2b\xc4\x8e\x37\x43\xbb\x26\xc2\xd5\xbf\xd0\x43\xad\xb3\xbe\x49\x5c\x69\x69\xae\xbb\x34\xb7\xf4\x68\xf5\x9b\x28\xf6\x5c\xa6\x71\x83\x82\xdb\x3d\x2a\x9d\x63\x40\xbf\x3f\xd5\xab\x9a\xf2\x27\x61\xd0\x0d\xee\xea\x28\x9a\x44\x4e\xaf\x74\x69\x6e\xe3\x52\xb3\x68\x33\xdf\xcd\xa2\x15\xd6\xa6\x41\xad\xe4\x56\xe0\x09\x22\xb7\x54\xe4\x6e\xca\xe1\xe7\x3b\x1e\x4a\x7c\x8c\x06\xa5\x98\x74\xe9\xb7\x9b\x94\x61\x87\x72\x51\xbc\xfa\x9b\x6a\x18\xdc\x6c\x69\x0a\x75\xb3\x32\x61\x88\x25\x12\x65\x76\x09\x63\x31\x3f\xba\x1a\x10\xcf\xee\xb5\x09\x65\xe7\xd6\x64\x8c\xff\x41\x2a\xfb\x5d\x12\x51\xe2\x63\x50\xb4\x04\x51\x4d\xde\x04\x0e\xe3\xfd\xdf\x88\x4a\xec\x8e\x9e\x17\x24\xfe\xf1\xb4\xf6\x9c\x17\xa5\x4e\xbb\x01\x74\x26\xde\xe9\x53\x3d\x25\xa1\x0f\x60\x89\xa6\x1d\xf2\xa7\x03\x4d\xef\xae\x2b\xee\x79\xae\xf3\x24\xff\x3c\x87\x67\xf8\xbf\x47\x7b\x1e\x4b\x7b\x08\x1f\xc2\xc4\x9f\x75\x0d\xb1\xdc\x44\x49\x11\xaf\xd1\xb6\xef\xe0\xc3\xae\x9d\x79\x56\x01\x84\xae\x69\xbd\x36\x20\xe4\x15\x70\xf6\xa4\x02\xce\x9e\x74\x7b\xaf\x29\xfb\x51\x21\x81\x1f\x3a\x06\x90\xe7\xe7\xe3\x75\x4f\x60\x9e\x94\xcb\x71\x14\x3a\x2f\x21\xd1\x3b\x01\x52\x87\x45\x51\x14\xb8\x5d\x63\xf2\x62\x93\x0c\x4b\x33\xa4\xc2\xf1\x0b\x1c\xc2\xfe\x3f\x10\x71\xd1\x02\xd5\x48\x65\xbf\xaa\x20\x38\x32\x73\x45\x66\xa5\x61\xbd\xbe\xab\x3b\x28\x93\xc4\x3a\xff\x17\xcc\x58\xb6\x64\xe6\x93\x06\x3a\xf5\xd5\x57\xbb\xe3\xbf\x0b\x27\x16\x4c\x3d\x2e\x4a\xb8\x0d\xe9\x65\xdf\x9f\x70\x69\xf5\x78\x92\x55\x19\xf3\x8c\xc7\xa8\xc1\x58\x08\x3b\x1a\xcc\x60\x50\x06\xef\xac\xef\x70\x8b\xf6\x2e\x08\xac\xb2\x8d\xf6\xb4\xa3\x84\x9a\xb6\x7c\xc6\x51\xf6\xfd\xb2\x7e\xbc\xd1\x94\x5b\x58\xa8\x32\x89\x32\x67\x41\xb8\xff\x8f\xf2\x9d\xfb\xe6\xc0\x77\x29\x22\x8e\x02\x5e\xe0\x98\x0f\xd0\x21\x3e\x6e\xf4\x3b\x97\xaa\x8f\x25\x09\xd1\x25\xf0\x40\xd1\x1f\xfa\x78\xea\xc9\x2b\x1f\xab\xdd\x20\x31\x45\x99\x99\x38\x7a\xc3\x14\x22\x76\x82\x92\x14\xab\x5c\xf0\x89\x06\x04\x1e\x08\xe3\xb2\x2f\x84\x0f\xe1\xba\x2b\xde\x7b\xa0\x8d\xe5\x63\x3b\x43\x25\x56\x76\xf4\xd3\x32\xcc\x4a\x67\xe8\x62\x5b\x3d\x6e\x50\xa5\x42\x9d\x4d\x66\x3b\x78\xe0\x1f\x69\x61\xa0\x83\x2d\xb4\xf1\x55\xca\x59\x29\xca\x17\x3f\x03\x5a\x02\xd0\x07\x44\x5f\x05\x8d\xfa\x43\x53\x65\x42\xdd\x54\x17\x99\xdf\xdb\x4d\x27\x16\xfa\x61\x18\x6a\x5b\x7b\x7e\xd8\x6d\x6d\xb8\xbd\xef\x9b\x7b\xa5\x9b\xb3\xb0\xfb\x8c\x42\x08\x5e\x56\x5b\xd0\x0c\xf5\xc3\x41\xb7\xbb\xde\x02\x93\xec\x46\x49\x58\x66\xae\xea\x25\xca\xd2\x8a\x29\xf3\x1d\x8d\x72\x32\xe3\x89\x80\x7f\x51\xbf\x99\xa8\x3e\xdc\x44\x69\x7d\x44\x49\x61\x87\x99\x54\x96\x90\x18\xea\xdc\xf7\x76\x63\x76\xbe\xb8\x48\xa5\x85\x72\x0c\xfa\xc3\x2b\x4e\xb1\xb5\xe3\x2c\x8b\x18\x0a\x2e\xb6\x70\x8a\xb1\x3b\x2a\x69\x51\x02\xa3\x69\xa3\x89\xf6\x99\xdf\xdb\x1d\x97\xe1\xa8\xe3\x0d\xa5\x7e\xa6\xe7\xbb\x2f\x3f\xb3\xde\xb2\x54\xc0\x20\x58\x46\x36\x37\x9a\xd6\x15\x16\x7d\xb6\xe1\xa1\xbb\xb0\xd0\x1d\x9b\x2c\x1f\x8d\x49\x4a\x42\xd1\x09\xd8\xae\x97\x4f\x1e\x5a\xdb\x2b\xd2\xf1\x8c\x52\x9e\xbf\x13\x40\xa8\x0c\xe3\xf6\x24\x89\x2c\xf3\xa0\xbc\xa0\xfa\x97\x79\x41\x64\x1b\xd2\x9e\xc2\xa6\x75\x19\x03\xd0\x29\x09\x2d\x8a\x29\xc1\x65\xb4\x99\x14\x7c\x4d\xb4\x3c\xca\x84\xe8\x2a\x0b\x0b\x4e\x6b\xa6\xa3\x44\x68\x5a\xd2\xb5\x3c\x35\x13\xce\x2f\xc4\xd3\xc4\x2f\x4c\xe7\x95\xa6\x8a\x3d\x30\xa9\x26\x48\x1f\xeb\x0a\xba\x4a\x57\x94\xf2\xcc\x95\x87\xfa\x7a\xbc\x56\xc6\x91\xad\x61\xa1\x35\x58\xf0\x5c\x1b\x58\x90\xf5\x58\x5d\x56\xe2\x24\x7a\xbd\x5c\xaf\x62\xa2\x4d\xcc\x78\x32\x8a\x6d\xc1\xf7\x81\xe7\x7c\x96\x82\x17\x3e\x6e\x7a\xfb\x2e\xed\xfe\x4c\x77\xd5\xf6\xfb\x42\xa2\x60\x2c\x67\xe0\xb1\xd7\x6f\x4e\x77\xc8\x36\x50\x14\x1a\x59\x74\x46\xf7\xc8\xb4\xb3\xdd\xe5\x46\xde\x47\x02\xcc\xe3\x34\x89\x80\x33\x77\x82\x11\xaa\xdc\xea\x67\x65\x6c\x4d\x22\x93\x06\x5f\x78\x5a\x57\xc4\x2f\x52\xce\x84\x87\x7d\xaf\x8d\xeb\xd8\xb7\x65\x91\x87\x23\x54\xb0\x31\xe9\x41\x5a\xe5\x63\x85\xf5\x1b\x98\x28\x2e\xab\xd8\xdf\x0b\xa7\x9d\xa7\xf5\x58\x04\x17\x55\xc9\x2d\x8b\x8a\x28\x24\x05\x99\x2a\x4c\x27\x76\xe3\xc6\x21\x35\x6e\xd3\x71\x12\x2d\x63\x35\x91\xc2\x2e\x8c\x4c\x04\x04\xe2\xfb\xd5\x63\x9b\x85\xb6\x2f\x6c\x4c\x9e\x1d\xa8\x41\xc8\x54\x79\x5a\xe5\x66\xe9\x38\xaf\xf6\x97\xf9\xbd\xbc\x95\x42\x2a\x85\x8f\xdb\x16\xc1\xbc\x28\xc7\xcb\x2e\x2c\x70\x8d\xff\x6a\xae\xf3\x89\x62\x68\x8f\xc9\xb5\x71\x46\xf1\xf6\xef\x4c\x35\xcd\x88\x3e\xc6\x0c\xdd\x9e\x6f\x0c\xe5\x26\x26\x3f\xb9\x17\x1c\xce\xa1\xa3\xfc\xa4\xe9\xdb\xb0\x3f\x1f\x05\x68\x42\xc4\x0a\x95\xb0\xcc\x45\xdd\x27\xbb\x45\x3f\x8a\x9b\x82\x18\xbb\x44\xc5\x4a\x0b\xe6\xeb\xae\x65\xbb\x6a\xf3\xc2\x66\xc9\x56\x15\x0d\x3f\xbe\xae\xf2\x96\x9a\x81\x06\x16\x5d\x14\xd9\xfe\x06\xed\x41\x62\x01\xd1\x86\xb4\x4b\xec\x81\x82\x22\x4e\x31\x19\xae\x26\x90\xee\xc0\x08\x23\xca\xc7\x78\x45\x3a\xb4\xc5\xc8\x66\x54\x17\x40\x3e\xc1\x4a\xa0\x58\x72\x9e\x45\x14\x2d\x86\x44\x74\x69\xb8\x68\xc6\x77\x20\x67\xe0\x77\x84\xf0\xf3\xf1\xf5\x2a\x6c\x07\xc6\xfe\x18\x76\xda\x9a\x3b\x0a\x32\x88\x3b\x4d\xb1\x90\xa5\xb9\xa5\x8e\x87\x9c\x7f\x83\x82\x64\xa1\x9b\x28\x67\xd6\x18\xca\xe2\x1d\xa7\xa7\x73\xbf\xe6\x82\x43\x57\x22\xf8\x42\xc9\x59\x43\x43\x98\xbf\x28\x2f\x78\x26\x63\xf7\xbb\xa9\x64\xda\x6f\xaa\x52\x4c\x9c\x86\x2c\xba\x54\x5d\x03\x76\xd5\x63\xca\x72\xf3\xd8\xd4\x83\x32\x7f\x71\xfb\x8c\x77\xfc\xbe\x80\x84\x0e\x2f\xe0\x47\xf4\xf6\x90\x9b\xb2\xdf\xaf\x48\xc5\x57\x09\x8c\x34\x09\x3d\xde\xec\xad\x40\x49\xdf\xfb\x52\xdb\xc0\x86\xfb\x63\xcb\x45\x39\xe6\xe0\x4d\x7d\xdd\xfe\x66\xad\x29\x90\xf6\xcb\xb0\xd8\xd1\x71\x2a\x2b\x1f\xd3\x65\xe3\x31\x6e\x04\xbe\x41\x70\x4b\x5b\xc1\xdc\xc4\xb8\x17\x99\x02\xba\x07\x25\x24\xf2\x8a\x57\x83\xdc\xb5\x4b\xbe\x17\xec\x09\xfe\x0f\x1a\x6a\x18\x3f\xc7\x14\x53\x78\x25\x4a\x63\xb1\x3d\x70\xb6\xdc\xd0\x57\x41\x30\xfb\x91\xd2\x55\x7e\x1b\x17\x01\x16\xd4\xe9\x36\x59\x1a\xd8\xbf\xd3\x05\x31\x2c\x45\x79\x22\x5f\x74\x2f\x7b\x39\xb3\x66\x7f\x31\xca\xd2\x72\x38\x9a\xf1\x2c\x84\x0e\xa1\x69\x44\x8d\xa2\xfa\x20\xd2\xf3\xc7\x7a\x5e\x0c\xa0\x48\x27\x4f\x76\x9c\xb9\xc3\xd6\x1e\xad\xaf\x2e\x16\x5d\x9a\xe3\x06\xd2\xff\x36\xf5\x72\x2c\x90\x34\x15\x5f\xbf\x8e\x77\xb9\xd7\xf5\x75\xb6\xd3\xd2\x66\xc4\x8e\x4c\xe1\x84\x82\xff\x97\x43\xa8\x0d\x20\x61\xef\xb0\xbe\x12\x12\xb3\x0f\xa6\x4a\xd1\x8b\x21\x73\x40\x8f\xbc\xa7\x44\x0f\xd3\xe5\xc2\x44\xc9\x36\x5f\x53\xfe\x16\x04\x7f\x25\xed\xa4\x42\x1d\x9f\x28\x7d\xfa\xef\x22\xa4\x11\xf1\x1d\xc5\xa8\x72\xcb\x56\x66\xfb\x65\x28\x1e\xa1\xb8\x5a\x16\xa2\x77\x77\xeb\xa5\xa1\xde\x6e\x84\x12\xfb\xe6\xba\xab\xa3\x28\x9f\x28\xd8\x39\x03\x30\x14\xd5\xf2\x66\xdb\xf6\x5b\xad\x96\x51\x0c\x0d\x0a\xc4\x6d\xc8\xa4\xf9\xd8\x65\xdc\x66\x39\xcd\x24\xff\x79\xb0\xde\x59\x58\x70\xa0\x6f\x6b\xb2\xb1\xc9\x9c\x12\xfd\xc6\x31\xda\x01\x8f\xa9\x1d\x90\x75\x6e\x67\x3c\x76\x0a\xeb\xa5\x68\x8a\x79\x95\x8d\x7f\xdb\x88\x68\x5f\x5c\x24\xa2\xc7\xac\x6f\xd2\x69\x51\x83\x3f\x7e\x7a\x5d\x83\x08\xae\x69\xc5\xce\x27\x1b\x3e\x15\x84\xfe\x1c\x45\xcb\x51\x51\xb3\x15\xe3\xf6\x18\x9f\x28\x18\x2a\x69\xcc\x6c\x53\x3c\xf5\xaf\x7b\x2b\x95\x4f\x3f\x0f\x3c\xb0\xd3\x06\x12\x47\xa4\xef\x3d\xb3\xae\xf4\x46\x79\x5f\xc3\xf6\x75\x47\x69\x16\xe7\x65\x36\x30\x61\xf5\x40\x5f\x76\xca\x48\xe7\xa8\x77\x2d\xe5\x63\x25\x36\x66\x62\x93\x31\x5d\xd3\xf9\x5f\xb8\x0e\xd6\x1d\xa5\x32\x37\x4e\x93\x62\x98\xc6\x83\xa8\xca\xc9\x9d\x92\x13\x44\xd9\x95\x67\x8c\x54\x77\xae\x2b\x41\x9d\x24\x15\x35\x00\x9e\x2c\xca\x36\xe6\x1d\xac\xae\x82\xbc\xf4\xe5\x8f\xc2\xc6\x76\x25\x22\xdf\xf2\x8e\x57\x30\x87\x7e\x3a\x1f\xab\xe7\x99\x41\x3d\x77\x7e\x2f\xe7\x23\x58\x31\xf8\xb8\xe7\xd5\x4e\x0a\xe9\x03\x3b\x49\x64\x9f\xd4\xbb\x55\x5b\xe4\x9b\x1f\xf5\xdb\x18\x74\x1e\x30\xaa\x18\x6d\x84\xe8\xe2\x0c\xf2\x01\xa8\xec\xfd\x9d\x5e\xad\xe1\x42\x93\x0c\xa8\xee\x2b\x4a\xfe\x17\xc6\x9d\xf2\xcc\x64\x16\x8c\xcb\x3c\x74\xf1\x13\x42\xb2\x77\xb0\x23\xf2\x89\x92\x4a\xf0\x60\xd9\x7d\x73\x0e\x2c\x4b\x17\xe5\x6c\xfd\x1d\xfb\xe9\x76\xab\xd5\x48\x66\x97\xd3\x52\x72\x0a\x6f\xf4\xaf\x60\x4f\xcd\x6a\xe6\xd2\xdc\x9e\x6e\x9e\x96\x90\xee\x77\x56\x1b\x4b\x73\x8e\xa1\xdd\x54\x42\x5e\xac\x62\xd8\xb1\xe8\xf6\x00\x11\x80\xde\x3b\x1f\xb7\xb1\x43\xb3\x28\x1c\x89\x2a\xa3\xe8\xd5\x78\x80\xcc\x59\x95\x18\x0d\xb3\x88\xfc\xbf\x90\xba\xa3\x1d\x70\x5e\x61\x5c\x6e\x29\x7c\xc1\x51\x15\x0c\x9b\x71\x14\x3a\xcc\x35\x76\x2d\xc6\x39\xf2\x89\x72\x39\xa4\x80\x62\x87\xd7\x5c\xb9\x01\xb2\x37\x56\xf0\xb7\x74\x3a\x7d\x3d\x50\x10\xe1\x6b\x53\x2f\x6d\xf7\xa1\x92\xb6\xfb\x50\x13\xb9\x4f\xa9\x9c\xe7\x1a\x20\xb8\xfc\x1f\xaa\xcc\xf8\x53\x85\x8b\x1b\xc4\x66\x55\x6b\x26\xaa\x51\xf5\x41\x8b\xf4\xc2\x9e\x6e\x62\xb2\x2c\x5d\xb5\xac\x79\x8d\xae\x29\x6b\x42\x21\x32\xbc\x32\xd5\x0a\x04\x2d\x6a\xad\xb1\x14\x9a\x98\x78\xa0\x65\x59\xce\x07\x7f\xb3\x1e\x09\xee\xf9\x47\x5f\x94\xdc\x73\x56\x75\xf8\x2f\x21\x14\xe1\x93\xa0\xd6\x92\xef\x28\x17\x8e\x26\xa6\x3e\xa4\x81\x5e\x33\x22\xbd\x80\x67\x2e\x22\x97\xcf\xe8\xd0\xa1\x9f\xae\x4a\xff\x5a\x28\x06\x3e\x5a\x38\x57\xab\xa3\xf7\xcb\x14\x9a\x1e\xd8\x05\xdf\x9e\xfa\x52\xdf\x14\xf7\x28\xc8\x73\x6c\x03\xec\x6b\xa9\xb0\xe7\xab\xb6\x98\xa9\xe2\x21\x17\x1a\xfc\xda\xaf\xf2\xe2\xf7\x1d\x05\x10\xbb\xda\x82\xfe\x7d\xa5\x6b\x56\xeb\x05\xbf\xad\xeb\xbe\xe0\xb7\xb5\x27\x90\xa1\x38\x2d\xa3\x3c\x32\x89\x61\xc2\x0b\x37\xa9\x74\xe1\xba\x49\x18\x5d\x5c\xdc\xdd\x5d\x8d\xe2\x98\x30\x4e\x88\x61\xd8\x55\x97\x4f\xd6\x15\xe4\xd0\x8c\xcd\x50\x62\x03\xa7\xcf\x24\x8d\x21\x9e\x71\xbf\xad\x84\x12\xf3\x49\x66\xd6\x18\xc1\xe4\x78\xee\x8b\xf2\x6a\x60\x9a\x81\xfe\xf8\x7b\xb5\xa7\x9d\xe5\x69\xa7\x91\xba\x0b\xd6\xb5\x19\x72\x2c\x76\x4d\x9e\x9b\x28\x16\x1d\x28\xd4\x5e\xfe\x6a\xea\xeb\x30\x7f\xd5\xd8\xce\x5f\xde\xdd\x2d\xd2\x28\xee\x28\x90\x1a\xc3\xc6\xf9\x24\xf8\xb9\xe6\x5a\x63\x93\x95\x28\x4b\x13\x48\x45\xc6\x6b\x64\xf2\x8e\x0d\xf9\xb2\x4a\x1a\xd0\x70\xc5\x74\x7c\x53\xa9\xc7\xae\x19\x2e\x11\x83\xeb\xfe\x26\x6e\x8b\x4f\x82\x67\xb5\x27\x6f\x94\x2c\x9b\x70\x84\x52\x0c\x12\xb4\x93\xca\xa0\x4e\x03\x04\xc7\x51\x3f\x36\x09\x37\xd4\x04\x9d\xe9\x59\x28\xe7\xd4\x08\x5c\x2e\xb9\xda\xe5\x7c\xb9\x1c\xf4\xeb\x92\xaa\xbf\xfe\x4b\x15\xd7\x0f\x8d\x0d\x47\x11\xcc\x09\x7c\x68\x72\x5a\x61\x73\x4e\x2b\x48\x48\x94\xe4\x51\x5e\x48\x65\xa4\x46\x0f\x60\xa8\x78\xe0\xb1\xc5\x5f\xd6\x54\x5f\x92\x6a\x85\x65\x9a\x98\x4e\x28\x16\xca\x8f\x14\xf1\xf6\x0f\x69\x05\x92\x3a\x59\x53\xd6\x67\xb1\x3b\x88\x12\xff\x44\x1c\x8d\xc8\xcf\xeb\x9a\xf6\x9b\x89\x71\xb9\xe2\x46\x7d\x6e\xaa\x40\x53\xa7\xb1\xc3\x61\x21\xba\x53\xeb\x9a\x46\x71\x7f\xa7\x1e\x3a\x58\x65\x64\x6b\xab\x2e\x91\xcd\x86\xa8\x16\x84\x7c\xeb\x91\x5e\x95\x55\x61\xfd\x3d\x4b\x70\x71\x3e\xc6\xb8\x03\x35\xf4\x8a\xae\x26\x30\xf8\x41\x28\xa0\x9e\x75\xf5\x2e\xdd\x10\xa6\xce\xb9\xe9\xcf\x6e\x86\x5d\x65\x76\x25\x8d\x49\xb0\xdb\x85\x6b\x62\x6f\x4b\xd7\xc9\x27\x35\x67\x4c\x13\xaf\xe5\x11\x17\x87\x5c\x10\x5b\xfd\xb1\x77\x6a\x70\xa3\x22\x8a\xc9\x61\x1a\x93\x47\xbb\x30\x48\x75\xc5\xe3\xac\xc2\x34\x8e\xed\x30\x32\x31\x56\x01\x61\x31\x7a\xa8\xff\x4d\x95\x9f\x1c\x6d\x95\x90\x8b\x92\x7e\x9a\x97\xf6\x0d\x5e\xd6\x44\xeb\x49\xa5\x46\xdf\x56\xc2\x02\x79\x91\x66\xe2\x48\x83\x55\xf8\x10\xad\x4e\x7c\xdc\x58\x3e\xe6\xf7\x6e\x06\x28\xa1\xdc\x03\xd9\x01\x3e\x6e\xc1\x94\xce\x77\xed\x01\x30\x59\xe8\x43\x5c\x26\x56\xf3\xe8\x02\xe4\x9d\xd5\x87\x3e\xdf\x35\xa2\xde\x25\x3e\x16\xd5\x88\x10\x31\x24\xdc\x9e\x84\x3a\x4f\x2b\x80\xcc\x6b\x69\x94\xa0\x2a\x20\xa5\x3a\xfa\x12\xa9\xe1\x35\x43\x2f\x88\x23\x28\xa1\x8e\x93\x53\xaf\x4f\x01\x1c\x15\x62\xe8\xff\x03\xe3\x5d\x98\x1c\x9b\x7b\x71\xbb\x97\x76\x77\x87\x29\x2d\xaa\xe2\xc2\x41\x63\x95\x4f\x1a\x79\xdc\xab\xaf\x76\x97\xd3\x64\x10\xb1\xd9\x32\xd6\xa0\x4e\x4f\x29\x9b\x5d\xaf\xdb\xf9\xf9\x96\x42\x3a\xb1\xc9\xa3\xbe\x13\xf3\x7b\x3a\x17\x3a\x1d\x28\x7a\x33\xd4\x41\x71\xf9\x27\x74\x71\xea\xbb\x35\x55\x48\x25\xa2\x74\x0e\x8b\x09\xe2\x86\x13\x4a\x29\xd4\x24\x6b\xcf\x52\xda\x83\xdf\x44\xf7\x58\x44\x2e\x15\x34\x63\x87\x66\x43\xa2\x0e\x88\x4a\xd7\x8d\xa9\x42\xe7\xbf\x8b\x3c\x19\x65\xef\xcb\xca\xd4\xfb\x1b\x53\x55\xb6\xbf\x4d\x35\x21\x8c\xfd\xdb\x81\x42\xfa\xbf\xab\x0b\x2d\x27\xa7\xaa\x38\x77\x15\x25\x1c\x51\x2a\xf7\x6f\x95\xd5\x45\x50\x82\x3b\x35\xf5\x64\xb8\xa7\xa8\x3e\x89\x3d\xff\xee\xb4\x65\x27\xcb\xa8\x5a\x53\xef\x0d\xb2\xef\x90\xca\xe8\xce\x38\x60\x6d\x31\x32\xc5\x33\xd5\x85\x63\xcd\xb9\x81\x75\x84\x8b\x4a\xf4\xc3\x34\x82\x7e\xfe\x73\xbd\xce\x17\xbe\xe4\x97\x7e\x4f\xf8\x7b\x82\x14\xae\xb0\x59\xee\x5c\xf7\xf5\xb2\x67\xd6\x7d\x6b\xf6\x67\xc0\xdc\x41\x8d\xec\xda\x54\x71\x8c\x3a\xeb\xf4\x9a\xb0\x14\xfd\x5c\xcf\xeb\xdf\x6e\x5d\xef\xbc\xec\x39\x85\x98\x41\x2e\xd2\x10\xd7\xe4\xff\xea\x3f\xe9\x29\xca\xf8\xf6\x75\xd5\xed\x7a\xe0\xf6\xe7\x62\x94\x96\xc3\x11\xf4\x5d\xa4\x8a\x4d\x3f\xea\x8c\x4c\xa5\x0b\xfa\xfb\x5d\x28\xfc\x3b\xa0\xaa\x43\x15\xf2\xfb\xc0\x5d\xde\xa6\x0b\x90\xfa\x2e\x3d\x0a\x3c\xbc\x5b\xca\xfa\x03\x7c\x7f\x68\x1d\x3c\xba\xfe\x9c\x02\x4a\x9b\x3c\x4d\x40\x60\xf7\x86\x8e\x68\x0f\x0b\xcf\xf2\x13\x35\x37\x8d\x22\x2a\x4a\xb2\xc5\xab\x7e\x15\x05\x8a\x99\x75\xaa\x4c\xf1\x49\xaf\xcd\xa5\x3a\x5a\x49\x0b\x46\x9c\x30\xcb\x21\xf0\xb4\x9d\x5b\x2d\xfb\x6b\x37\x4a\x56\xd2\x78\xa5\xca\xd0\x9d\xb6\x01\x8b\x09\x8a\x0b\x66\xc7\x69\xea\x6e\x34\xb2\x0c\x69\x35\xad\xad\xa4\xc9\x8c\xef\x7e\xf1\x46\x27\x39\x28\xda\x70\x92\xe5\x6b\xd0\xee\x4a\x1a\x1a\x29\x0f\x00\xea\xf5\x43\x8c\x13\x6c\xb1\xe8\xd8\xa0\x5a\x7c\xdc\x25\xcb\x61\x3a\x1e\xa4\x19\xb4\x66\x84\x59\x40\x2f\xca\x91\xf7\x5d\xb7\x8a\x75\x5c\x31\x55\xef\x3e\xd4\x7d\x20\x37\x93\x49\x9a\xa5\x2a\x23\xfc\x2b\x9d\x11\xfe\x55\xe0\x9d\x4e\xc8\x9f\x64\x0c\xae\x6f\x75\x01\x2e\x93\x59\x58\x70\x99\x8c\x0a\xe7\xca\x9c\xe0\x56\xb4\xac\x70\x6f\x09\x8b\x84\x34\x9a\xda\x16\xfb\xcc\xac\xc0\x03\x52\x84\x98\xb4\x2a\x53\x6b\x46\x5f\x26\x21\xd9\x67\x71\x5b\x85\xcb\x8d\x0a\xdb\x71\x15\x4f\x08\xb4\x84\x3f\x57\x4c\xbe\x3c\xcc\xcc\x78\x39\x16\x23\x37\x97\xce\x2c\xcd\x79\x98\xed\x8b\x32\xa3\x1f\xb8\x60\x4b\xc7\x86\x8b\x1b\x57\x34\x8f\x1a\xbf\x84\x89\xfe\x40\x81\x11\x80\x65\x0e\x8b\x7c\x3b\x2d\xf2\xce\x8b\xd2\x21\xa2\xde\xa2\x02\x33\x8e\x4f\x05\xca\x19\xf6\x5b\x4a\x03\x7f\x3b\xaa\x60\x60\x0b\xce\xe8\xad\xe8\xb4\xf2\xa3\x99\x98\xd8\xe6\x45\x94\x44\x26\xa1\xd6\x84\xe8\xeb\x54\x4b\x9e\xd8\x3d\xb5\x99\x0c\x90\xc5\x86\x35\xb9\x2a\x3f\xa3\x9c\x82\x3a\x3f\x66\x93\x84\x96\x3a\x2a\x4a\xf2\x72\x6c\xb3\x7c\x87\x8a\x1b\xff\xbd\x96\x15\x38\x8b\xfb\xc1\x22\xf9\xef\x03\x0f\x00\x82\xcf\x0f\xe3\x1b\x02\x0f\x15\x7b\x6f\xea\x25\xcb\x18\xf7\xc0\x0d\x1c\xba\x06\x04\xb1\x87\x50\xf7\xe1\x9f\x68\x64\xd0\x0b\x0b\xdd\xd0\xc4\xb1\x14\x00\xf0\xf2\xb9\x57\x86\x35\xf1\x90\x8e\x48\x3f\x6a\x94\x7f\x49\x50\x67\x94\x45\xc9\x7e\xa1\xfe\x63\x85\xf8\x7d\x4d\x12\xfe\xfd\x46\x32\x46\x82\x74\x2b\x76\xc6\xb3\x96\x10\x4e\x32\xde\x19\x8f\x02\xf9\x68\x13\x7e\x5b\xfd\x66\x56\x12\x32\x76\x46\xa1\x36\xe1\x26\xcb\x8f\x5e\x49\x20\xdd\x0e\x36\xf5\xa3\x3e\x53\x05\x73\x74\xad\x2e\x38\x75\x3b\xf7\xb9\x06\x4d\x64\x61\xa1\x9b\x87\xa3\x34\x8d\x0b\x6b\x7c\xe1\xc9\x31\x61\x17\x5d\x2c\xd5\xd6\xd7\xa0\xf0\xbc\xa3\x44\x7c\xc0\xaa\xe6\xe3\x06\x12\xea\x97\xbb\xe3\x28\xb1\xb3\x55\x8c\xe8\x64\xc2\x95\xab\x28\x65\x87\x6c\x1a\xd3\x53\x50\xb2\xc6\x6b\x5d\x9a\xeb\x9a\x6c\x58\xb2\x61\x98\xca\xcb\xe6\x9d\xad\x7d\x3b\x42\x35\x15\x84\xaa\x60\x5f\x15\x8f\xef\xbc\x73\xa5\x5b\x2e\x33\x6b\xca\x30\x33\x21\xe9\x88\x6d\x5c\x42\xb8\x83\xcc\xfb\xbc\xca\x5b\x41\xe0\xe1\xf8\xae\xed\x2a\xf3\xfd\x9e\xa9\xc8\x1f\x99\xfa\x4d\xe2\x41\x0b\x51\x71\x77\xb5\x53\xb2\xdc\x15\xef\x07\x94\x4f\xc8\xde\xa0\x11\x17\xe3\x89\xed\x6f\x45\x88\xe0\x78\xf5\x6e\x76\x62\x2a\x89\x8c\x55\x35\x02\x84\xc6\xaa\xca\xd4\x57\x35\xdc\xbf\xec\xf7\xd7\x74\x30\x7f\x8b\x8c\x10\xf1\x2e\x0f\x4d\x95\x10\xab\xb2\x79\x19\x56\xeb\x05\xd5\x0f\x60\x07\x8c\x7d\x76\x83\xa6\xae\x0b\x5b\xf6\xcd\xb9\x24\x91\x06\x3e\xfa\xa8\x97\x40\x4e\x17\xe2\xe4\xe6\xdc\x82\xc8\xe9\x1d\xb5\x79\x1d\xaf\xe1\xd6\x5a\xf0\xe4\x93\xb4\xb0\x49\x51\x65\x66\x9e\x17\xc9\x52\xd4\xce\xa5\x78\x51\x54\xe3\x1e\x73\x55\xf1\xcc\xc6\x36\x29\x3a\x0a\xf0\x82\xbd\x8c\x8f\x1f\x2a\xfa\x59\x03\x3d\xa0\x58\x76\x5a\x57\xce\xb4\x06\x63\x66\xf3\xb0\x04\x59\x1e\xa5\xd9\x1b\x08\xe7\x6b\x3a\x14\x62\x1c\x2e\x21\xea\x30\xb5\x35\x9f\xee\x47\x7a\xca\x12\xf8\x1a\x7e\x4a\xac\xd9\x5a\x78\x85\x45\x34\xb6\xde\x4b\x05\xbf\x04\xbf\x44\x3e\xd6\x10\x9b\x32\x4b\xfb\x76\x99\xc5\x87\xb1\x4c\xde\x55\x03\xe8\x94\x2a\xad\x5c\xd0\x5d\x11\x3b\x4e\x33\xb3\x1c\xc5\x91\xa1\x30\x0d\xa3\xf4\x30\xbd\x7e\x3e\xf6\x86\x4f\xd6\x40\x4e\xa4\xcd\x83\xd9\x6b\xc3\xf4\x4b\xbb\x4d\x4d\x11\xfa\x2a\x94\xf5\xbf\x4d\x89\x06\xc6\xe6\x06\x8d\x47\xb4\x62\xef\x04\x9a\x0d\x51\x8d\x74\x56\x8b\xed\x3d\xe9\xd1\x94\xb1\x6b\xc0\xb2\xd9\x05\xa6\xbe\x38\x5f\xf8\x46\xea\x24\x02\x2c\x47\xe4\x83\xb5\xdd\x83\x52\x76\xef\xdb\xd0\xf4\x6d\x3e\xab\x1b\x00\xd5\xa5\x0a\x1d\x9d\xde\xa8\x23\xaa\x57\x7b\x94\xb4\x0c\x54\x6c\x64\x92\xd2\xc4\x39\xba\x8a\x8e\xb2\xe8\xb1\x82\x1f\x29\x84\x2d\xe2\xe7\x5c\x5b\x3e\xd6\x43\x2e\x4f\xb9\x1e\x94\x36\x46\xd4\x8c\xaa\xcf\x75\x84\xfd\x7c\xd2\x50\x4c\x5a\x9a\x03\x52\x6d\x92\x45\xe4\xac\xb5\xcf\x53\xfb\x7c\xe0\xab\x9d\xb7\x4d\x1c\x47\x26\x09\x2d\x43\x8b\x11\x9c\x9e\x57\x9c\xff\x53\xba\x94\x71\xa7\xb1\xc8\xcd\xef\xed\xc6\x36\xe9\xcb\x56\x83\x79\x76\x83\x46\x18\x1f\xb7\xca\x28\x4f\x32\xdb\x8f\x42\x69\x30\x4a\x79\x82\xa6\x91\xd4\x27\x14\x89\xda\x9a\xfd\xd4\x4d\x76\xae\x65\x3e\x7b\xfe\x0d\x44\xf7\x4e\x66\x64\x69\xce\x99\x93\xd1\x57\xe3\x3f\x8e\x69\x63\x96\x63\x6d\x60\xc3\x41\x66\x5f\x2f\x05\x25\x8b\xd7\x70\x4d\xd5\xf3\xaf\xa9\x4a\xe5\x70\x94\x6f\xf3\xb1\x32\x18\x68\xf4\x9b\xff\xe4\x6f\xac\xab\x92\x1c\xca\xce\xf8\xa3\xa7\xd6\x3d\xe3\xf5\xc8\x27\x30\xf5\x11\x8c\xff\x8d\x9e\xb7\xfa\x89\xa3\x62\x94\x16\x59\x34\x11\x51\x3c\x76\x77\x56\x12\x93\x17\x1a\x1b\x53\x75\xed\xf1\x9a\xeb\x67\x0b\xa2\xdc\x93\xd1\xde\x77\x5b\xe1\xc4\x66\x51\x3e\xaa\x56\x11\x5e\x8a\x44\x28\x52\xa1\xd2\xae\xd1\x23\x04\xcb\xb6\xd9\xc4\xa8\x5e\x5d\x92\x66\x05\x00\x0d\x8e\x90\xb3\x34\xc7\x97\xf7\xfb\x18\x2c\x9e\x07\xcf\x2b\x12\x81\xfe\x68\x34\xb2\x30\x5a\xe0\xf1\xf2\xcd\x5f\xf9\xe5\xae\x81\xf2\x35\xbd\x0c\xa4\x3e\xa7\x15\x68\xef\xb4\x53\x9c\xcf\xa3\xb4\x3c\x40\x7f\x25\x98\x6b\xfa\x7d\x3e\x69\xe3\x30\x98\x30\xb3\x39\xfa\x39\x4e\xc2\x58\x61\xf2\xe8\x57\x9c\xd2\xe9\x8b\xbe\x9d\xe3\x5b\xd2\xab\x99\x99\x4c\xa2\x64\x38\x4b\xcf\x1b\xa0\xb8\xe3\x0a\x5d\x0c\xbd\x6b\xfe\x77\x7a\x9a\xfc\xef\xbd\x4f\xa9\xa2\x59\x3e\x49\x13\x76\x61\x5b\xdb\x56\x4d\x6f\xe9\xf8\x69\x73\x5e\x15\xb1\x5d\x47\x6f\x56\x10\x8c\xb4\x08\x39\x5b\x3b\x87\xca\x3e\xa8\x16\xa4\xd7\xcb\xb4\xc8\x80\xb7\x7f\x85\xd1\x36\xa7\xea\x4e\x77\x34\x58\x51\xd1\xbb\xdb\x28\x96\xbd\xbc\xbb\x6b\x92\x7c\xd5\x99\x63\xb8\x2a\x92\xe7\xe3\xbf\xdb\x26\x93\x04\x39\x16\x0e\x93\x30\x42\x58\x82\x82\x4f\x7a\x35\x2f\xff\xb4\xff\xbc\x87\x34\xc2\xa5\x12\x19\xc3\x25\xaa\x3e\xca\xbe\x4d\x37\x0f\xf0\xff\x71\x3c\x22\x81\xa0\xd1\xc5\x89\x4e\x7d\x35\xc2\x90\x58\x89\x47\x01\xc2\x6a\xce\x17\xb1\xdb\x6e\xe9\x79\x5f\xcc\x27\x75\xca\x35\xb3\xae\xfc\x5c\xff\x98\x36\x28\xac\x81\xeb\xe0\x96\x41\x5f\xe0\x06\xc1\x0f\x1c\xc7\xab\xca\x7e\x9d\x69\x47\xf5\x56\xb0\xc8\x14\x81\x02\xd1\x1c\xc3\x0e\x22\x5c\x1d\xaa\xa4\x71\x22\xab\xbd\x42\x0f\xd8\xf1\x84\x16\x20\xf8\xeb\xcd\x6f\x5c\x6a\x94\x3c\x77\xed\xea\xe6\x29\x8b\x2b\xb2\x31\x95\x5f\x7f\xb6\x35\xa5\x56\xaa\x09\x6b\x4d\x96\xe0\x1d\x8a\xe5\xa7\xca\x58\x8e\xa9\x46\xc7\xc8\x84\xa3\x12\xfc\xda\x3d\xdc\xc9\xfd\x75\x2d\x51\xfa\xeb\xaa\x79\x96\x66\x7d\x9b\xe5\x4f\x54\xcf\xc8\xb5\x8f\xab\x8f\xa1\x0c\x78\x8b\x52\x42\xec\xc7\xdf\x45\x93\x19\x5b\x3d\x6e\x8c\xb7\x19\x06\x26\x23\x14\xbf\x4e\xc3\x18\xd5\xb5\x59\x92\x92\xe7\xef\xd5\x1e\x95\x98\x5b\x18\xeb\xd7\xb0\x13\x8b\x19\x2b\x8d\x10\xe4\xf8\x27\xf0\xec\x19\xfb\xd7\xd2\x92\x7b\xa1\xbb\x62\xe2\xd2\xd7\x16\x9d\x00\x59\xf5\x4b\xa2\x92\xed\xd3\x6f\x63\xb3\xb4\xbf\x96\x98\x31\xa3\xf6\xb0\x72\xdf\x54\xa6\xc6\x37\x15\xed\x9b\xe4\xdb\x06\x59\x8a\x5c\x4a\xc2\xd0\x13\x53\xad\xf3\x77\xa2\x0d\x92\xbe\x1c\x73\x54\xc9\x5a\x2d\x58\x96\x05\x13\xd3\x71\xa4\xf1\xbb\x6e\x5d\xed\x9b\x84\x0c\x69\x1c\x43\xf1\x6c\xa0\x68\x63\x67\xb5\x13\x92\x8d\x72\x42\xea\x56\x8f\x0c\x6b\xf5\x11\x3c\x32\x3e\x69\xcc\xff\xf9\xbd\x62\xca\x37\xe3\x41\x4f\x1a\xa9\x88\xaa\x8a\x70\x3c\xfc\xc8\xb0\x09\x95\x2a\x3d\x64\xf4\x27\x81\xd7\x46\x61\xa0\x8f\x18\xc3\x78\x19\xcf\x0f\xa9\x98\x21\x5a\x36\x1e\x31\xf0\x68\x8f\x2e\x19\xc5\x6d\x5e\xbf\x44\x3a\x4d\x57\xd3\xe8\x8d\x63\x95\x6b\x1a\xaf\xee\x9b\x7b\xa5\x9b\x96\x05\x49\x52\x77\x74\x75\x34\xf0\xca\x72\x17\x5a\x20\x1f\xaf\x74\x07\x26\x8e\x6d\xa2\xd5\x69\xc0\x66\x13\x5b\xa8\xb6\xea\x55\xdf\x16\xd0\x00\x99\x51\xa1\x27\x7d\x0a\x2f\xf6\x7f\xc5\x5d\x20\x5a\x3e\xa9\xc2\x42\xc0\x66\xf2\xad\x9e\x46\x7c\x51\x19\x1d\x31\x30\x11\x65\x93\x0f\xa6\x9e\x02\x73\x0a\x0b\x22\xd2\xa2\xfb\x4e\x61\xb2\xac\xa2\xb2\x55\x6b\xc0\x45\xc1\x30\xe2\x07\xe8\xca\x62\xae\x23\xb1\x5d\x71\x0f\xaf\x28\x74\x89\x4d\xd2\x6c\x9c\x96\x2d\x5d\x72\x2c\x86\x4f\xf5\x3c\xc1\x70\xfb\xfa\x73\x0a\xb7\xb5\x9c\x73\x40\x55\x9b\x54\x7a\xb6\x39\x96\x9a\x5d\xb1\x49\x31\x82\x56\x38\xca\xaa\x10\x00\xc3\x4f\x80\x53\x86\x6d\x8a\x1d\x6c\x90\xc6\x5e\xf2\x1a\x42\x59\x94\x5b\xd6\x07\xc5\xa6\xf8\xae\x86\x83\x23\xa6\x11\xf9\x63\x8f\xe5\x1a\xa5\x49\x9a\x01\x38\x51\xf3\x03\x47\x70\x7f\x5c\x71\x59\x4e\x05\xca\x48\xe0\x50\xf0\xb8\x7b\x65\xa3\x28\x7f\xbe\x1a\xb8\x4e\x48\xd3\x19\xab\x5f\x43\xf3\x05\x95\x5f\x94\x46\x30\x6e\x6f\x62\xfd\x67\x0d\x10\x1a\x81\x62\x94\xa1\x74\x55\x4f\x05\xda\xdb\xe9\x32\x96\x4d\x74\x09\x6f\x90\x23\x0a\xba\x57\xa7\xa6\x1e\x52\xc0\xb5\x66\xce\xf1\x31\x5a\xd0\x7b\xe2\xc7\x86\xb9\x0a\x85\x1e\x74\x88\xbe\xa6\x55\xb0\x0f\xd2\x63\x12\xff\x7d\x9a\x76\x18\x79\x77\xb9\xe4\xed\x94\xf3\xaa\xe1\x86\xdf\xfc\x4a\x9b\x50\x6d\x3f\x7d\xc3\x0a\x51\x53\xba\x3f\xf4\x3b\xc8\x5a\x60\x16\x2a\x12\xe3\x4e\xf8\xdf\x66\x85\x89\x92\x78\x6d\xab\xf7\x25\x7a\x7f\xaa\xf2\x3a\xac\x0a\xa8\x49\x40\xc3\x0c\x63\x02\x12\x42\xa8\x87\x7c\xe0\xbe\xce\x94\x45\x3a\x36\x85\x65\x09\x2a\x3c\x07\x36\x45\xe4\x13\x57\xfd\x5d\x49\xc7\x51\xe1\x0a\x74\x78\xb0\xc0\x48\x6e\x40\x19\x01\xe1\xce\xe9\x56\x92\x92\xc9\x60\xcd\xd9\x71\xea\xc2\x75\x84\xc3\x93\x6a\x4e\x0c\x4d\xb6\x4d\xb9\x84\x62\xde\xba\x15\xcc\x37\xf1\x8e\xf1\xcb\xe7\x33\x8a\x44\x9c\xb3\xa8\x5f\xf4\x5a\xea\x62\x64\x17\x1a\x16\x98\x4b\x18\x88\xa8\xbe\x71\x89\x68\xaa\xac\x40\x51\xcc\x11\x65\x37\x9d\x72\x26\xc9\xda\xac\x92\x90\xfe\x76\xed\x72\x98\xb0\x0e\xa8\xd1\x59\xbd\xa0\x1c\x6d\xc9\x17\xc8\x7c\x57\x56\x5d\x74\x34\x2e\x23\x52\xe0\x93\x46\x49\x86\xd2\x43\xcf\x17\x05\x04\x6a\x03\xa6\x21\x1b\xc7\xdc\xaa\x51\x6d\xc8\x79\xb1\x36\xe3\xd7\xa2\x1f\x11\x9a\x41\xd0\xdd\x74\x91\x98\x71\x4d\x81\xd9\xea\xc5\xa5\xd0\x01\x58\x74\x65\x83\x8e\x13\x3d\x3a\xab\xc2\xe8\x91\x35\x71\x31\x22\xe5\x5d\xaf\xe8\x53\xbd\x6c\x20\x23\xaf\x21\xcd\x44\xac\x72\x6a\xda\xf9\xe2\x7c\x4d\x4f\x96\xff\x48\xd3\x01\x6e\x60\xfe\xf3\x27\x30\x4d\xf9\x7f\xda\xc4\x15\xc7\x69\x91\x02\xa5\xea\xb6\x84\x7d\x73\x1c\x0a\x7f\xa8\xe2\xe5\x1b\x8d\x9b\x5c\x58\xe8\x0e\xd2\x32\xeb\x74\x76\x09\x9d\x95\xe1\xff\x82\x18\xf7\xcb\x7c\x3f\xca\x6c\x58\xa4\xd9\x56\xba\x4e\x34\x73\xee\x2b\x9b\xd2\x0d\xdd\xf0\x3d\xab\x12\x8e\xdf\xc1\x37\x8a\xe0\x52\x53\x6c\xf4\xe5\xdd\xdb\x3c\x32\xe0\x3a\xad\x5c\xf8\x24\x0a\x1e\x02\xa0\xa7\x11\x01\xb0\xd1\x25\xed\x4a\x79\x76\x5a\x17\x41\xd8\xbc\xdf\xee\xda\xd5\x1d\x9b\x70\x14\x25\x51\x5e\xf0\x26\x25\x1f\xac\xe5\x3d\xf8\x16\x5c\xe6\x6d\xbf\x6f\xa4\xe9\x84\x53\x6d\xfc\xf6\x29\x8d\x7a\x3a\x15\xf8\xa4\x6f\x25\xcd\xd2\xc4\xbe\x31\xc2\xb4\xe0\x2e\x78\xa0\x29\x7d\x3e\x48\x3a\xaf\xc9\x0a\x27\x35\x5f\x32\x9d\x6c\x9a\x0a\x6f\xeb\xa9\xf0\xb6\xf2\x90\x9b\xa4\x50\xff\x74\x7e\x2c\xe7\x55\xb4\xa9\x49\x6b\x61\x9a\x14\x51\x52\x5a\x40\xbf\x31\x7c\xdf\xc6\x6e\x51\x6b\x5e\x02\x99\x73\x5a\xd9\x51\xfe\x58\x47\xb8\x21\x31\x7e\x13\x92\xa2\xd7\x66\xe7\x54\x6c\x42\xb4\xf6\x5e\x4d\x09\xbb\x5a\xc6\xf8\xdf\x6b\xe0\x38\x1b\x16\xcf\x2b\x56\xe4\x55\x0c\x1c\x67\x63\x5e\xdd\x3a\xb2\xb0\x2b\x58\xdb\x31\x18\x1e\x85\xa2\x85\x7b\x96\x6a\x54\x77\x5e\x16\x8a\xdf\xb6\x75\x4a\xb6\x18\x63\x8e\x0d\x4a\xf8\x5e\x74\x9d\x28\x6f\x3e\x42\xe8\x02\xf1\x24\xa8\x9e\x20\xb2\xe9\x6f\xd0\xbd\xb3\x19\x07\x12\x32\x96\xc0\x0b\x94\xc9\x01\x82\x62\xe1\x94\x55\x77\x89\x3f\xba\x8a\x81\x8e\x1d\xec\xfe\x54\xfb\x19\x5d\xc2\x4e\x2f\xd8\xf7\x66\x18\x39\xdf\x1d\x7b\x35\xe5\x0d\xda\x1e\x36\xce\xa9\x88\x39\x2d\x46\x36\xcb\xb7\xf9\x6d\x99\xe5\xf8\xd9\xd3\x9a\x26\x8d\xa8\x51\x6c\xae\xa6\xb2\x9f\xdc\x54\x83\xda\x1a\x15\xb7\xdd\x2f\xed\xe9\x4e\x4c\x41\xe2\x16\x33\x2a\x31\x3f\xa7\xf8\x3b\xb7\x31\x68\xd8\x59\xbc\x55\x5e\x76\x98\xa5\xab\xae\xd0\x84\x87\xfd\xa6\x6a\x21\xbe\xd9\x12\x41\xbf\xd0\xcd\xd3\x30\xe2\xed\xb1\x15\x75\xdb\xb2\x6a\xad\x92\x12\xff\xe6\xf6\xbb\x3c\x6c\x3c\x7a\xf1\x1d\x7f\x4a\x09\xd7\x84\x99\xb5\x0a\x87\x74\x5e\xd1\x07\xcf\xab\x04\x2d\x4c\x93\x15\x9b\x44\x14\x9b\x56\x63\x48\x74\x2e\xe9\xcd\x4b\x9a\xf2\x4c\xe4\x7b\xa1\x08\x64\x15\x21\x1c\xb2\x46\xce\x81\xd5\x0d\xab\xeb\x81\xdf\xed\xfb\x65\x5e\xac\x75\xbc\xa7\xe5\x11\xa5\x45\x76\xa4\xd1\x4c\x5b\x5c\xec\xbe\x66\x99\x1e\xea\x90\x34\x8b\x02\xc0\xbe\x17\xf8\x0d\xa7\xdd\xad\xde\x75\xe6\x7d\xfa\x07\xf9\x2e\x3e\x6e\x19\x95\x8b\xdd\x22\x1a\x33\x6f\x75\xe3\x52\x15\x87\x6e\x5c\x6a\x80\xa6\x3f\xd7\x0d\x47\x51\xdc\x47\x3c\x81\x35\xe4\xbc\x0e\xca\x00\xfc\xc4\x2a\xfe\x40\x29\xd8\xbe\xdd\xf8\xa6\x2f\xce\x77\x5f\x2f\x23\x40\x60\x85\x67\x56\xcd\x3b\x3e\x76\x81\xdb\x68\xad\x9f\x99\x32\xae\x52\x6d\x27\xe7\x81\x86\x3c\x1f\x2b\x3d\xd2\x11\xf9\x38\x7a\xa6\xc4\xdb\xf4\x8c\x65\x69\x55\xcc\x90\xb5\xbc\xb0\xe3\x67\x3a\xe2\xe1\xb8\xf4\x34\x10\x3b\xb5\x16\x32\x56\xc5\xc7\x68\xf5\x40\xf4\xf9\x51\x0d\xb2\xf3\x48\xaf\x9a\x87\xc8\x07\x7e\x0b\xcb\x84\xf2\xe3\xf1\x48\x43\xd5\x74\xeb\xf4\x14\xa0\xf1\xda\xd4\xf7\x96\xce\x83\x95\x85\x6e\xf2\x7d\x0a\x6c\x31\x23\x99\x9a\x03\xb4\xe5\x35\xd5\x6d\x7b\x10\x50\xd4\x20\x10\x46\xd5\x04\x56\x95\xe9\x64\x7f\xa4\x60\x0f\x3f\x56\x49\xd4\xd7\x74\x78\x79\xa8\xa5\x97\x1b\x47\x83\x02\x96\x5b\xb2\xc7\x78\x37\xd9\x6f\xd0\x75\x60\x88\x5f\x56\xa1\x51\x1e\xbd\x21\x42\x51\x12\x1a\x9d\x0c\x6a\x7c\x4c\x1f\x61\x14\x99\x35\x85\xb4\xdd\xc5\x17\xa6\xe3\x3d\x62\x02\x6d\x65\x15\x0d\xd9\x7d\x19\x23\x0e\x99\x18\x1f\xb7\x88\x62\x75\x87\x99\x79\x63\x73\x05\x7c\xea\xa3\xde\xf7\x55\x91\xcd\x4c\x26\xb1\x70\x38\x30\xd1\xbe\x46\x7f\xc9\xc7\x2d\x74\xe0\x3d\x5d\x13\x47\x43\xc7\xf1\xc5\x66\xd2\xe9\xf9\xae\xe2\x41\xac\xd6\x58\x9f\x1e\x69\x28\x1e\x2e\xcd\xc1\x26\x7a\x38\xe3\xc3\xed\x59\xec\x77\x78\x9b\x77\x95\x4d\xdc\x19\x57\xac\x0f\x47\x59\x3a\x4e\xf3\xd4\x31\x4e\x50\x89\xbe\xa0\x9a\x12\x17\x5a\xd4\x88\x76\x77\x5f\xff\x87\xbf\x84\x10\xc3\x09\x03\xeb\x62\xf7\xe6\x68\x7b\xdf\x5c\x77\x92\xa5\x71\x34\xb0\x99\xf1\xae\x3a\xa2\x38\x5e\xdd\xa4\x08\x8e\xb7\xe8\x7d\x44\xc9\xa0\xba\x31\x6e\xdd\x3b\xde\x59\xf5\x34\xa4\x1e\xe5\x47\xc0\x4a\x94\x97\x26\x8e\xe1\xe6\x85\x3d\xe7\x7b\x88\x0e\xf8\x31\xa8\xe5\xfa\x30\xbe\x44\x74\x32\x65\x31\xce\xcc\x24\xea\x5b\x88\x99\x38\x28\xec\x06\x85\xfd\x7c\xac\xb0\xbd\x83\x38\x5d\x0d\x47\x26\x2b\x1e\xce\xfd\x6f\xf1\x44\xec\x97\x45\x34\x28\x63\x66\x56\xc9\x02\xe1\x63\xab\x8b\x53\x0d\x83\x23\x53\xb7\xe8\x0d\xdb\x51\x24\xcb\x3b\x54\x04\xe0\x63\x2d\x50\xc9\xf0\xb0\x7c\x9b\x0a\x99\x4f\x4e\xbd\xe3\x0c\x24\xc6\x51\x7c\xb8\x1c\xa8\x4a\x17\x3c\xf9\x9d\x1e\xbe\x67\x38\x36\x95\x02\xe6\xf7\x76\x97\xcb\xd4\x61\xf9\xb9\xea\x43\xd7\x2f\x15\xa0\x67\x14\x97\x2d\x1b\x1b\xdc\xaa\x44\x36\x10\x10\xe3\xe3\x36\x10\x44\x34\x4c\x58\x0b\xfb\x15\x2f\xf6\xbe\x4f\xd0\x55\x97\x82\xcd\x6b\x81\x43\xb9\x6a\xa2\xde\x5a\x3f\xb1\x6b\x9d\x9a\x05\x08\xad\xa7\x12\x20\xf8\xfa\x4a\xdf\x1c\x98\xf1\xc0\x72\x66\x25\xd5\xa8\xf5\x48\x56\xde\x6d\xc3\x10\x94\x45\x14\x47\x45\x15\x72\xd7\xf4\x7d\xa7\x4a\x4d\xee\x9d\xc6\x13\xfc\x5c\x77\x90\x66\x63\x9b\x55\x03\xf5\xc5\xba\xef\x23\x6a\x19\x4f\xab\xda\x03\x77\x36\x24\x9f\xf6\x8c\xbf\x74\x32\x49\xb3\xa2\x4c\xa2\x62\xad\xa3\x42\xdb\xbf\x9e\xfa\x94\xe1\xaf\x1b\xe9\xfb\xe7\xba\x26\x8e\xed\x50\x52\x04\x76\x5e\x0f\x54\x26\x7e\x6e\xea\x65\xb3\xcb\xa1\x89\xb8\x6b\x8b\x87\xff\x9b\x4a\x84\xea\x42\x7d\xd6\x6b\x61\xe5\x15\xd2\x60\x4b\x66\xaa\x51\x8a\x10\xe6\x3d\xf4\x94\xb1\xb2\x5d\xa1\x8a\x94\x74\xc1\x7d\x8f\x7c\xd5\x64\xcb\x65\x36\xe4\x47\x89\x11\x72\x5c\x07\xc5\xc7\x15\x50\x70\x39\x36\xfd\x3e\x67\x56\x08\xf7\x0f\xe2\x4f\xf9\x44\x05\xbf\xe3\x08\xfa\xb1\xce\xc6\xfe\x84\x82\xf8\x9e\x50\xa8\x34\x7b\x80\xb4\x66\x81\x39\x7d\xc5\xa9\x55\xd2\x80\x13\xe4\x44\x93\xca\x9a\x97\xf4\x26\xa4\x21\x85\x60\x83\x3b\xcd\x7c\x52\x27\xf7\x84\xa3\xa7\x69\xa7\x45\x14\xf1\x5d\x2d\x93\xf8\x14\xb5\x25\xb0\xa1\x3e\xd6\xab\xb6\x60\x0c\xbe\xc3\x78\xd8\x08\x9d\x4f\xd7\x72\x83\x75\xbd\x90\x01\xc1\xc8\x85\x33\x2a\xe0\xd6\x3c\xb6\x80\x9c\x62\x4b\x5e\xc9\xad\x7c\x07\xff\xd2\x54\xed\x19\x8f\xac\xfb\x07\xb6\x41\x2a\x37\xec\x45\x82\xfa\xd8\x37\x1b\xc0\x80\xbd\x2f\x75\xc3\x51\x1a\x93\xec\x43\x4a\x82\x79\xdc\x9b\x42\x85\x8b\x8f\x5d\xf1\x38\x5d\xb6\xfd\xc8\x26\xa1\xad\x49\x41\xd3\x6d\x8a\x16\xb4\xde\xb0\x57\x6d\x7f\xa7\x27\x4d\x1c\xc7\x78\x92\x4d\xca\x5b\x58\xb0\x70\x21\x32\xa5\xbb\xf4\x04\x04\x74\xa7\x4c\xca\xae\x52\x2b\x40\x4b\x4f\x20\x24\xe1\x35\x51\x5b\x9d\x2a\x15\x4e\xef\xaa\xf9\xa4\xe2\x54\x9a\x28\x99\xf5\x2d\x15\xdc\x2b\x5e\xda\x71\x44\x2a\xfc\x1f\x81\xf7\x8f\x3f\xde\x00\xb1\xce\xef\xed\xa6\xfd\x7e\x0c\x1c\x17\xda\xb1\x00\xe3\xf3\xb1\xab\x27\x2c\x97\xd9\xd8\x8c\xe8\xe1\x8a\x36\x19\xdd\x97\xc8\xb1\xfa\xd9\x34\x2a\x93\x7e\x66\xfb\xb3\x18\x2b\x80\xbb\x30\x24\x88\x01\x74\x81\x67\x15\x5d\xd4\xaa\xa0\x8f\xac\xab\x4a\x9d\x5d\xb5\xd9\xf6\x8e\xd3\xa0\x66\x51\x4f\x49\x03\x7d\x78\x7d\x07\x83\x43\x34\xd1\xb5\x45\x19\xd7\xf6\x98\xd8\x34\x55\xb7\x18\x7c\xd2\x27\x33\x36\x8c\x4d\x9e\x47\x83\x35\x01\x0a\x0b\x4a\xa3\xe3\x45\x88\x1c\x38\xa8\x9f\xe6\x18\x37\xec\x79\x18\x68\xff\xc3\x16\x9b\xa4\x41\x94\x44\xf9\x48\x24\x74\x10\xe6\x7f\x1f\xa3\x9d\x4f\x14\x62\x99\xd8\x43\x55\xa4\x12\xf3\xca\xca\x26\xc1\x34\xb7\xc4\x30\xd8\x35\xc8\xca\x24\x34\x90\xd0\x72\xcd\xe3\xea\x51\xf2\x49\xb0\xd3\xcb\x58\xe6\x7f\x5b\xab\x3f\x07\xb4\xa1\x0b\x4b\xae\x9a\xea\x18\xda\x97\x69\x6c\x22\x2b\xbb\x85\xbc\x1f\x7b\xf4\x77\xa6\x9d\xcf\x7e\x96\x9f\xc4\xf7\x03\x45\x99\x82\x1a\x0c\xa2\xbb\x0e\xc6\x3f\x97\xd8\x03\x25\xc1\x78\x99\x56\x5d\xbc\xee\xb3\x64\xd9\xc2\x65\xac\x40\x13\xf7\x37\xa6\xaa\x43\xf0\xf4\x3a\x41\x2c\x51\x40\xb9\x47\x2f\x02\x4b\x0b\x17\x79\x69\x36\x7c\xf6\xd9\xf5\x2a\x8e\xe7\xeb\x42\xcd\x04\xbb\x05\x77\x4c\x01\xc6\x7a\x02\x12\x13\x80\xa6\x3d\xbf\xee\xfd\x6e\xe0\x94\x8b\xa0\x6c\x2b\x7a\xe5\x6c\xe1\x0f\xdc\x37\x12\x8a\x3b\x53\x34\x08\x30\x88\x76\x50\xa2\xe4\x3a\xdf\xd5\x62\x8a\x2f\xbb\x49\xfd\x3e\x04\x5f\x1f\x06\x24\xf6\xe0\x6a\xaf\x5f\xf8\x92\x23\xd4\x3f\xad\x1c\x4e\xd2\x9c\xb8\xf0\xbb\xe6\x3d\x28\x43\xc9\xb8\xf9\xf9\xb4\x9c\xa5\xa6\x1f\xaf\x21\x44\x47\x33\x1c\x51\x93\x38\xff\xd0\x23\x41\x49\xee\x07\x8d\x3a\xc5\xde\x97\x44\x00\xbb\xe3\x9d\xce\x81\xab\x10\x01\x24\xbf\x0f\x8d\xcb\x24\x0a\xa3\x89\x61\x9b\x1d\x3c\xda\x23\x58\xb5\x99\x76\xaa\x7c\xd9\xdf\x6a\x14\x63\xe6\xf7\x76\xcb\x64\x35\x8b\x8a\x82\xc5\xdd\x84\xae\xe4\xa9\x26\x17\xd5\xbe\x5b\x26\x51\x15\x90\x74\x54\xd3\xe5\xbc\xe2\x8e\x9e\x57\x58\x2e\x82\xa4\xa7\x71\xae\x00\x31\xa7\x10\x61\xf3\x89\xca\xdd\xa4\x21\x5c\x0d\x67\x49\xc1\xaa\x21\x24\xa9\xd9\x53\xea\x5b\xc7\xb6\xbf\xb6\x55\xb9\x6d\xfe\x84\x06\x1b\x06\xc5\xf1\xa9\x5a\xb4\x1e\xa0\x18\xee\x04\x5c\x3c\x31\xf6\x7d\x15\xfe\x15\xa3\x2c\x1a\x70\xed\x05\x23\xe6\x44\xa0\x28\x44\x27\xda\x78\xf4\xaa\x80\xc6\xa3\x14\x90\x58\x3e\x6e\xf3\x1d\x2c\x46\x36\xb3\xb3\x35\x16\xc0\x17\xbe\xe4\x0c\x5f\xbd\x1c\xc2\x1d\xaa\xaf\x61\x84\x7e\xec\x90\x45\x66\x6c\x72\x88\x35\x88\x4d\x81\xd7\xe0\x39\xf7\x50\x8d\xb2\x61\xb4\x62\x93\xd9\x19\xe7\x87\xfb\x4f\x9f\x23\xac\x89\xd4\xcd\xe9\x81\xa0\x89\xf7\xd8\x7a\x35\xc9\xb1\x5b\x9f\x51\x02\xc5\xcb\x76\x14\x25\xfd\x47\x7d\x97\xe7\x32\x5d\x1e\x02\x88\xe3\xa8\x73\x8a\x6d\x1b\xcd\x7f\x04\xa2\xd7\x95\xe3\xcb\xb7\x48\x84\x52\x7c\xde\x30\x33\xf9\xaf\xe8\xb6\x45\xd6\x7c\xf3\x33\xfb\xe2\x3c\xb5\xae\x33\xba\x6b\xf6\xd2\xa0\xbb\x16\x5f\x8d\xcd\x1f\x78\x79\xf7\x67\xba\x45\x2a\xf9\xa9\xd6\x56\x94\xc9\xea\xc9\x6c\xcb\x16\x05\x34\x74\x61\x59\xf6\x07\x15\xad\x33\x4a\xf9\xf3\xa4\xaa\xa0\x99\xe5\xb4\x2c\x3e\xad\xa4\xcb\x6e\xa3\x73\x22\x1d\x2b\xdf\xd6\x7e\x44\x2f\x5f\xc7\x54\xb1\xec\x6b\x94\x8b\x89\xbf\x75\xb5\x8c\x60\xc1\x9a\x65\x3d\x14\x50\x9e\xde\x9a\x2a\x66\xd7\xd6\x1e\x3d\x56\xe7\x50\xb5\x24\xd4\x86\x07\x88\x51\xc4\xda\x9d\xd6\x7e\xe4\x36\xc0\xac\x62\x64\xfd\x13\x54\x76\x6a\x32\x50\x18\x35\xeb\xda\x12\xe3\x78\x50\x2d\xcb\x08\x5f\xfe\x9c\x57\x4f\xa7\x47\xbd\xe4\x3d\x4e\xe8\x31\x09\x52\x80\x46\x3f\xee\x7e\x27\xa0\x4a\xb8\x98\x6f\x62\x5d\x77\x10\xb6\x2f\x7c\x89\x6f\xec\x18\xe0\x49\x7c\x95\x14\x88\xa1\xb5\x71\xcb\x9b\xb0\xa6\x25\x71\xa8\x31\xb5\x44\x14\xcd\xe7\x8e\xe7\x94\x4c\x57\x58\xc6\x93\x2c\x2a\x72\x65\x54\x8f\x7e\xa4\x98\x5d\x3d\xa5\x34\x64\x43\xd3\x07\xc5\x13\x9b\x25\x23\x30\x5d\xe5\x67\xc9\xfd\x07\x1e\x8b\xac\x41\x7e\x99\x58\xce\xac\x09\xb1\x20\x8b\x8f\x0a\x8d\x05\x31\x52\x91\x46\xe0\xa0\xcc\xb2\x74\x95\x73\x26\xe4\x30\x37\xf0\x63\x7c\xe2\xe6\x74\x9f\xd6\x1d\x0f\x3c\x3f\xaf\xa5\x5b\xcf\x7b\x4d\x79\x26\xd0\x6b\xbb\x50\xba\x60\xb1\x0e\x7d\x5c\x89\x84\x73\xa1\x0a\x28\x1a\x60\x41\xf9\x58\x71\xe6\xfb\x69\x1a\x47\x45\xc1\xe8\x6d\xb1\x89\xaf\x86\xa3\x17\x38\xf2\x29\x48\x6c\xb2\x67\xbd\x46\xdf\x11\xad\xd4\x3c\xb3\xae\xbb\x5a\xca\x90\x91\x29\x8f\xc8\x68\x6e\x00\x88\x26\x94\x94\x6a\x0a\xf0\x78\xa0\x0d\x58\x98\x94\x34\x50\xa5\x3c\xde\x71\x5a\xc2\x97\xa6\x2a\xa5\xfa\x16\x2d\x00\x22\x91\x4f\x8f\x0b\x61\xfd\x15\x8c\x46\x90\x5e\x0f\x63\x9c\xa1\x1c\xb6\x05\xb6\x44\x7c\xb2\xae\x0a\xa5\x77\x29\xc8\xc1\xcc\xdc\x51\x83\x01\x86\x45\xfe\x0c\xdd\x19\x76\x0b\x01\xef\x61\x3d\x43\x8d\x19\x3f\xcb\x36\x71\xd0\x63\x64\xfd\x4a\x27\x27\xba\x24\x46\xdd\x67\x03\xcd\x09\xae\x6e\x0d\xdd\xd6\xc7\xa0\x23\xc7\xa2\x08\xc8\x52\xb0\xb2\x72\x64\x86\xc9\x75\x0e\x7b\x1a\x4b\x96\x28\x4b\xf6\x27\xd7\x95\x84\xf6\x86\x72\xff\x9b\x59\xaf\x5e\x26\xe6\xf9\x6e\x3c\x26\x14\x7d\xaf\x78\x1e\x8a\x49\xf6\x9b\xb1\xcd\xa2\x50\x14\x30\x5c\x19\xa3\xfa\x73\x3e\x09\x3c\x1c\xdf\x26\xcc\x97\x17\xb1\xcc\xb6\xc4\x40\x19\x06\x92\x2f\x40\xbe\x55\x99\x63\x9c\x41\x84\x89\xc8\xf5\xb4\x36\x70\xc1\x68\xe1\xff\x08\x3c\xbb\xe8\x1b\x2e\x01\x9c\x64\x69\x18\x9b\x68\xcc\xf3\x8a\x95\xf4\x03\x8f\x68\xfa\x78\xfa\x09\x0f\x5c\x32\xc3\xc4\x16\x51\x88\x59\xe3\x36\x22\xa8\x86\x8a\xa8\xaf\x6b\xdc\x93\xd7\x1e\x04\x4a\x01\x68\x9b\x81\x46\x94\xa0\xb3\x3b\x4e\x42\x9a\x3d\xec\xc4\x37\xa5\x59\x81\xdc\xc3\xc5\xcb\x28\xc4\x34\x14\x9b\xc8\xea\xbb\xf9\xb8\x69\x2a\x3c\xbf\xb7\x6b\x0f\x90\x59\x8c\xa0\x0b\x5c\xbb\x53\x77\x38\x5b\x15\x80\xe2\x34\x97\x42\x30\xd2\xfd\xfb\x4a\x3a\xee\x81\x76\xb1\xfc\x53\xb7\x9e\xf4\xa3\xbc\x88\x92\xb0\x50\x4f\xe6\xbe\x7a\x32\xf7\xb5\x72\xad\xb5\x63\xce\x09\xb9\x61\x8b\xa1\x28\x92\x08\xd5\x37\xb0\xc6\x42\xe0\xbb\xd6\xef\x3c\xdc\x60\x3d\xca\xc2\x32\x57\x2a\x3b\x67\xb5\x80\xe4\x59\xa5\x95\xbf\x1a\xf5\x2d\xe2\xe7\x57\x1c\xbe\x6f\xc6\x3b\x8a\x3d\xd6\xf3\xe4\xac\x2d\xeb\xca\x7d\xa3\xc8\xac\xa8\x27\x08\x23\xd6\x53\x87\x4e\x68\xf4\xe8\x2d\xb5\xb5\xe7\xab\x51\x4e\x43\x55\x5c\xe6\xe0\x6b\xc6\x28\x01\x7a\xa4\xc8\x1f\xde\xd3\xc0\xab\xb7\xb8\xb4\x82\xab\x6f\xd5\x69\x4b\x27\x05\x0c\x01\x9c\x86\xc0\xd7\xe8\x41\x09\xac\xec\x13\x5a\x88\xd6\x86\x05\xcb\x02\xd2\x7b\xc3\x1a\x81\x40\x4f\x2a\x7a\xf4\x08\x38\xc3\x53\x4e\x58\x7f\xee\xda\x55\xb9\xcd\x56\xa2\xd0\x6d\xa0\x0c\xde\x52\x76\xcc\xa7\xda\x1a\x16\x61\x1a\xa6\x24\x51\xa1\xb8\x24\xaa\xfa\x7b\xba\xd5\x8e\x7e\x5c\x2d\x07\x26\x4a\xc4\x70\x1c\x51\x25\x57\x0d\xd0\x82\x3b\xaa\xb1\x13\x37\x95\x24\x7f\xdf\x9a\x84\x97\x1d\xa4\xa5\xb7\xf0\x97\x7c\xa2\xac\x22\x76\xbd\xf4\x5f\x77\x94\xe1\xe2\x69\xd5\xb5\x3a\xed\xe5\x43\xa3\x24\xb1\x99\x5c\x08\xb6\x7f\x1e\xaa\x08\x16\xef\x29\xc5\xf8\x8b\xb5\xeb\x48\xd6\xb6\x57\x8b\xb3\xc3\x6e\xb9\x3d\xf6\x1a\x40\xd6\x22\xd7\x4e\x4f\xde\x25\xb4\xd5\x4a\xed\xc6\x97\x2b\xa2\xc1\x6e\x56\xfc\x64\x9f\x51\xc6\xc8\x86\xcc\x31\x15\xa3\xf0\x81\x06\xaa\x3c\xf0\xc1\x43\x66\x6d\x3f\x1d\x93\xf9\x9e\x58\x62\xaa\x40\x85\xcb\xa8\x08\x24\xfe\x64\xea\xf7\xc2\x43\x4a\x29\xe8\x59\xca\x77\x45\x19\x43\xf5\x12\x8f\x4e\x77\xf0\x6b\xec\x7e\x71\xfe\x93\xb4\xc6\xb1\x29\xeb\x54\x09\x5d\xce\xf4\x3a\x9f\xfd\x2c\x6f\x5c\xd0\xc4\xa6\x91\xff\xab\xcf\xae\x3b\xce\xf4\x5f\xfe\x22\x2c\xf9\xa5\x79\x58\xa5\x0e\x08\xcf\xde\x9b\x2a\xa5\x4f\x24\xee\xe2\x21\xe8\x65\x26\x9f\xe9\xd1\xf6\x8c\x49\x74\x0d\xc1\x01\xe3\xe2\x03\xd5\x1b\xb9\x8d\xc7\xcc\x3e\xf6\x0a\xb4\xbb\x85\x6a\x08\xce\x87\xa7\x7a\x4b\x58\x78\xce\x69\xa1\x85\xab\x08\xe4\x58\x76\x8a\x66\x1d\x6a\x78\x3f\xbb\xae\xf8\x2e\xd7\x35\x63\xf1\x3b\x4e\x1b\x79\xd9\xfc\x03\x0a\x16\x11\x82\xb0\xa3\x11\xf2\xf8\x47\xd6\xfd\xbc\x7b\x9c\x2a\xb0\x78\x88\xdf\x6c\xac\xd0\xa4\xc6\x1c\x8e\xec\xca\x9a\xf6\xf5\xc6\x77\x09\x28\xcb\xb5\xd7\xa8\x1f\x99\x26\xe4\x23\xa9\x20\x7e\x5e\xfb\xe1\x74\xf0\x9c\x52\x9e\xb7\x61\x89\xfd\xa2\x8a\x32\x5c\x72\xe4\xca\xc1\x17\xea\x8e\x28\x11\x11\xa2\xbc\xb4\x10\xf6\x58\x29\x1d\xb6\x70\x6f\x27\x69\x29\x44\x0b\x51\xca\x57\x48\xa3\x8f\x1b\xb7\xba\xb0\xd0\x5d\x8d\x0a\xb2\x51\x51\xca\x89\x6f\xa9\x46\xcf\x5b\x0d\xee\xc0\xde\x97\xba\xcb\xac\x8c\x20\x18\x1a\xef\x4a\xdc\x59\xf7\xb5\xb7\x19\x65\x39\x35\x49\xe3\x38\x4a\x18\x2a\xbf\x34\xe7\xab\xaf\x9e\x13\xea\xca\x9f\x66\x30\x48\x33\x80\x96\xf0\xba\xd8\x58\x84\x4f\x74\x96\x9b\x45\xcb\xdc\x35\x14\xef\xae\x9a\xa9\x57\xab\xce\xf6\x24\x36\x49\x22\x85\x7c\x54\x5a\x20\xdc\xca\xc7\xae\xfe\x98\xa4\xfd\x7c\x56\xb5\x50\x78\x89\x44\xd0\xf8\x81\xc6\xf8\x22\xbf\x13\xd5\x85\x06\x77\x9b\x7e\x95\xa0\x88\x74\xa9\x0c\x59\xad\xc1\x57\x95\x13\x5a\x96\x12\xee\x3b\x4d\xe0\x00\x8c\x34\xe0\xab\xca\xf3\x03\xf0\x67\x8c\xc4\x3f\xd7\x7a\x88\xd7\x34\x7b\x81\xf5\x2a\x1c\x74\xd9\xd9\x4a\x1f\x9c\x2a\x3e\xc1\x4c\xaf\x05\x6b\x49\x1a\x82\x3c\x8c\x84\x67\xab\xc4\x5d\x9a\xa8\x9e\xf9\xbd\xdd\x7c\x94\x66\x45\x58\x22\x3b\x17\x82\x01\x5d\x8e\xbb\x68\x17\xe0\x9c\x54\xd4\x4e\x3b\x31\x84\x58\x12\x9b\x1f\xba\x1d\x24\xb7\x0f\x90\x8f\x32\x26\x5a\x6b\x56\x3d\x50\xa9\xfe\xd9\xa9\x52\x06\xfd\xd8\xbd\xbc\xac\x2c\x46\xbc\x53\x39\x9b\x44\x4f\xd1\x39\xaf\x5a\xf9\x2b\xca\x21\x8f\x15\x7b\x68\x46\x8a\x7a\x8f\xac\xf1\xa3\x74\x62\x07\x65\xdc\xd1\xda\x40\x53\x5d\x78\x93\x45\xa8\x3f\x08\x3b\xca\xfe\x75\xaa\xc0\x92\x17\xd5\x0e\xf9\x5f\xfe\x3d\x60\xb5\x1c\x93\x7f\x17\x17\x5b\x7f\x97\x6b\x07\xba\x7e\x88\x20\xe0\xc9\x75\x5f\x1e\xfc\xd5\x4f\xf5\x14\x24\xfe\x7a\x9d\x16\x1a\x8e\xa4\x9c\x22\xf2\x08\xf4\x90\x44\xec\x5a\xd9\x74\x45\xf9\xb0\x04\x46\xd0\xfb\xff\x07\x5a\xb7\xe2\x93\xee\x55\xb9\x66\x24\xe9\x4e\x2b\x9f\xc9\xdb\x0a\x4d\x7c\x5b\x11\x2e\xe3\x28\x4d\x66\xa9\x3e\xdb\xda\x9e\xed\x3c\x4c\x57\xc4\x15\x15\x6c\x1c\x47\x79\xf1\x1f\x09\xae\x9b\xbe\x19\xb9\x8d\xc9\x0b\x6d\x69\x8e\x37\x87\xcb\xca\x98\xeb\x72\xa3\x26\xb8\x6b\x17\x47\x70\xf4\xc6\xb0\xb2\xfe\xb5\x16\xe5\xf9\x6b\x35\x52\xc6\x66\x94\x19\x28\x8c\x8a\x5c\x86\x27\x22\x9c\x54\xaa\x58\x5f\x6e\x5c\xd8\xae\x5d\xd5\x62\x65\x07\xca\x9f\x04\x83\x47\xb0\x83\x0a\x5a\xc2\x36\x00\x4e\x6c\xf0\x9f\x2b\xa9\xcf\x7f\xde\xd6\x55\x9a\x94\x71\x6e\x11\x3c\x3b\x41\x36\x17\x56\x5c\x0b\xd4\xda\x36\xd5\x2e\xa5\x79\x99\x0d\x6d\xc2\x68\x31\xb4\x32\x30\xd8\x7c\x05\x69\xce\xfd\x6c\x0b\x42\x20\x0f\x7d\x6b\x0f\x81\xfa\x05\xed\x38\x7c\xc1\x4d\x08\x03\x1c\xb8\x64\xcc\x4f\x50\x7c\x41\x3f\x38\xfd\x64\x4f\xbd\x5b\x48\x15\x20\x70\xb8\xae\xf0\x48\x9f\xff\x87\xbf\xa4\x05\x2c\x47\x53\x5f\x81\x1b\xd5\x5e\x4f\x56\xc0\x45\xd8\x41\x6f\xe9\x76\x04\x86\xfb\x30\x99\x9e\x22\xb3\xfb\x3b\xda\xbd\x94\xae\x55\xa8\x3d\xcf\xaa\x42\x62\x9e\xc6\x2b\xf2\x6e\x9c\x8e\xa9\xeb\xc4\x7f\xa8\x76\xa6\x55\x13\x27\x25\x42\x02\xc4\x4b\x4c\x29\xe5\x13\x95\x31\xc5\x36\xcf\x79\x53\x14\x5b\x78\xdf\x02\xbd\xda\x18\xb0\xb4\x99\xbc\x66\x22\x48\xce\x3a\xf5\xeb\x85\x05\x27\x8b\xbd\x43\x60\xd3\x9f\xfd\xec\xcf\x7a\x8d\xbe\xf7\x10\x70\x61\x81\x39\x82\x78\x0d\xb1\xe6\xe5\xa9\x47\x17\xde\xc0\xd0\x17\xab\xbd\xce\xab\xaf\x32\x22\x06\x26\xe9\x22\xee\x85\x42\x23\x7a\x22\xb7\xa8\xb0\xec\xa0\x92\xbb\x76\x71\x96\xf9\x53\x14\x73\xf8\x07\xb1\x94\x23\x8e\xfc\x18\xe5\x7d\x34\x80\x2e\x69\x40\xda\x55\x14\xa6\xd9\xd6\x12\x7b\x8e\xb4\x97\xe9\xf1\x21\xb7\xff\x29\x95\x60\x51\x99\x3e\x14\x78\x24\xe0\x6f\x05\x55\x08\x8c\x65\xf3\x34\xca\xda\x7c\x8d\x35\xe5\x1e\x85\xf7\x60\x24\x88\xf4\x7f\xb1\x5f\x28\xe2\xcd\x12\x07\x8f\x68\x32\x23\x3c\xfe\x89\xb2\x3e\x39\xaf\x65\xd1\xaf\xb5\xe1\xee\x57\xb3\x94\xbd\x64\x45\xd3\xd6\xf7\x91\xaf\x05\x7f\xd3\x97\x49\x26\x36\x2b\xd6\xfe\xf1\x7f\x1a\x9a\xbc\x34\x71\x81\xd0\x13\xeb\xf5\x4e\x6a\x9e\xf1\x71\xc3\xaf\xe7\xd5\x57\xbd\xcb\x35\x8d\x09\x16\xae\xa5\xd9\x2b\x22\xb6\x8e\x23\x15\xc5\x2b\x36\x03\x15\x0f\x03\xfc\x46\xa0\xf2\xc5\xa9\xcf\x59\x9b\xb2\x93\x8b\x8b\x24\xd7\x50\x3a\x23\x5d\x54\x46\x98\x8a\xc9\x27\x8d\x12\x02\x8d\x57\x56\x8f\xe6\x18\x59\x30\xd5\x34\x20\xf9\x44\x01\x70\x57\x4d\x96\xfc\xbf\x94\xfd\x69\x8c\x24\xe9\x79\x27\x86\x77\x67\x55\x75\xf7\xdc\x27\x49\x69\x17\xff\xbf\x53\x6b\xc2\x94\x8c\xf1\xd8\xc6\xc2\x36\x2c\x7f\x88\x54\x75\x51\x64\x97\xc5\x62\xa3\xba\xd9\x23\xd2\x07\xe6\xcd\xc8\xb7\x32\x63\x2a\x32\x22\x19\x47\x55\xd7\xac\x3f\x2d\x8c\x85\x61\xd8\x0b\xac\x17\x8b\x5d\x03\xb6\xe1\xf5\x1a\x96\xd6\x90\xb4\x3a\xa0\xa5\x2e\x32\x8b\xe2\x39\x14\x45\xcd\x0c\x39\xf7\x70\xa6\xaf\xea\xab\xba\xbb\xfa\xbe\xbb\xc6\x88\xe7\xf7\x3c\xef\xfb\x64\x45\xf4\xc2\x06\x08\x22\x62\xba\x32\x33\x8e\xf7\x78\x8e\xdf\x61\x33\xa2\xef\x60\x21\x3a\x4e\xdb\xb1\xb3\xa0\x7d\x49\x16\x8f\xe0\x96\x0a\x84\x3e\x40\xe4\xb7\x53\x42\x3a\x4a\x56\xd2\x65\xe1\xa9\x63\x47\xbf\xa2\x46\x0c\xe3\x2a\x84\xd3\xe5\x97\x9c\xbf\x5b\x0c\x66\xaa\x41\x86\x91\xf1\xc8\xba\xc2\xd7\x9f\xa4\x37\x48\x83\xe4\xa3\xe7\x3b\x1e\x09\xc0\x65\x60\xd1\x72\xdb\xf9\xf8\x16\x67\x17\xdb\x45\xba\x6a\xb2\x1e\x0a\xdf\x48\x51\x3e\x54\xbe\x53\x1f\x2a\xc8\x01\x39\x8b\x3e\x55\x4d\x4c\x4e\xaa\xf0\x94\x05\xe2\x46\x97\x83\x0e\xd0\xed\x89\xd6\xee\x47\x4a\x03\xe3\x6d\x65\xc6\xb0\x5b\x65\x3c\xb7\xc7\x4a\x2d\x61\xd7\xba\x5a\x99\x37\x29\x92\x67\x62\x05\xba\x24\xa8\x0e\x30\xb6\x15\xff\x32\xbd\xae\x96\xd8\x63\x28\xe0\x8a\xa3\xaf\xc7\xde\x6d\xa8\xd5\xb0\x4c\x72\x6b\x93\x69\x0f\x85\xdb\xdd\xa9\x45\x02\xf2\x75\xfe\x5d\x9f\xab\xe1\x12\xab\xd4\x23\x4d\xb1\x57\xe3\xc2\xae\x28\xe5\x9d\x2b\x0d\xd2\x39\x55\x30\x34\x62\x06\x84\xe2\xab\x3b\xdd\x92\xda\x94\x7d\x89\x95\x28\x5a\x9a\xe2\x35\x56\x70\x34\x5d\xed\x1a\xd8\x78\x64\x7b\x8f\x54\xaf\x49\x50\xd5\xbe\xaa\x7a\x06\x95\x71\x07\x9f\xac\xbe\x42\xd8\x01\xd5\x4d\x62\x03\x03\xd9\x9c\x86\xed\x3f\x6c\xa3\x2a\x2d\xba\x6c\xbe\x40\xc1\xf5\x7a\x29\xb2\x37\x74\x29\x73\x9b\xe4\xdc\x43\xd0\xba\x36\x02\xe1\xf0\x9b\xe4\x52\x94\x0f\x18\x51\x85\xfc\x14\x10\x54\x3e\x5e\x7f\x5a\xc5\x07\x2b\xe4\xd3\xa8\x8c\x07\x27\xd7\x94\xe7\x6b\x24\x9d\xf9\xf9\x43\x08\x26\xb0\x9c\x00\x88\x88\xd2\x10\x9a\x73\x58\xcb\x5f\x57\x22\x33\x99\x5d\xb1\xb1\xcd\x28\x1f\xde\xbe\x5d\x3d\x97\xed\xdb\xb5\x77\x72\x60\x01\x64\x32\x7c\x39\x26\x2b\xec\x48\x90\x68\x00\x8d\x29\xe4\x31\x67\xbb\x1f\x97\x69\x46\x53\x0d\x55\xe0\x07\xd8\x42\xf8\xc4\x05\x99\xd5\x3b\xac\xf6\xe0\x29\x9f\xf3\xa2\x24\x8f\xb0\x1e\xf0\x77\xdc\xd0\x74\xc7\x63\x66\x6c\xb6\x1a\x81\xf5\x8d\xdc\x9a\xc3\x7c\x3e\x09\x7c\x2d\x76\x54\xc6\x4c\x85\xd7\x74\x59\x3e\xae\x29\x1c\xbd\xd0\x36\x11\xde\x0e\x13\x33\x03\x4f\x08\x3c\x5b\xcb\x67\x5d\x7d\xd6\xe4\x2c\xd3\x83\xcc\x77\x8a\x96\x25\x54\x5d\xb8\x7f\x8e\x17\xfc\x49\x53\xd1\x60\x29\xca\x04\x2b\x88\x8a\xdf\x0f\xc6\x8a\x01\xf5\x83\xc0\x2b\x3b\x89\xa1\x43\x94\x26\x33\x0a\x26\xf6\x11\xb5\x47\xa5\x7b\x47\x9f\xe5\x7f\x40\x29\xc8\xf9\x0b\x3b\x54\xfd\x9f\x7b\x33\xfb\xd4\x14\xd3\xfe\x7e\x21\x4f\x2f\x9a\x9e\xba\x53\x8a\x35\x0f\x71\xf7\xf1\x86\xcd\xe9\x50\x7b\x29\x0d\xcb\x5c\x36\xa7\x09\x81\x3f\x11\x49\x50\x6f\x25\x4d\x0a\xe4\xf6\x12\x80\xd3\xd7\xbb\xc8\xdc\xed\x2b\x67\x94\x5e\x7e\x5d\x74\x6c\xee\x70\xbb\x1f\x99\xa4\x90\x12\x26\x1e\xf9\x34\x82\x5a\x54\xf6\x79\x81\x45\x61\xf5\x03\x95\x7a\x8d\xd2\x18\xf2\xc5\x4a\x2c\x0a\x5c\x13\xa9\xcf\xd5\xab\xb7\xe0\xa3\xa6\x45\xb4\x62\x1f\x2e\xb2\xad\x7a\x9f\x36\xae\x72\x0e\xc5\x9d\x62\xc9\x58\x81\x48\xf8\xe9\x1e\x47\x85\xcd\xb8\xe2\x8d\x5d\x06\x0e\x03\x7c\xdc\x64\x2b\xd8\x8d\xd3\xd5\x29\x3f\x3c\xb7\x75\xad\xf5\xb8\xa2\x41\x4e\x75\xfc\xcf\x8c\x6c\x36\x30\xa3\xfc\x31\x0a\x07\xd1\x20\x38\xa9\xdb\x6f\x27\xc7\xca\x04\xec\x9c\xf6\x97\x44\x38\x89\x52\xf0\x03\x04\xb3\x7c\x82\xa5\x15\xb1\xc2\x2d\xd5\x12\xfe\x2e\x2d\xb3\x7c\x1c\x78\xad\xd8\x73\x14\x00\xa0\x30\x32\xd5\x99\x70\x17\x24\xc3\x21\x3b\x5d\x45\xb4\x88\x02\x61\x32\xa4\x89\x40\x8e\x35\xe5\x64\xfc\x36\x95\x21\xef\xc0\x46\x89\x1d\x9a\x04\x90\x1c\x5c\x13\x6a\x62\x7c\xec\xf4\xa7\xc2\x81\x35\x23\x80\xcf\x0e\x72\x6b\xea\xba\x12\x55\xbc\xae\x6c\x0f\x97\xd2\xb4\x18\x44\x71\x9c\x73\x4f\x47\xba\x03\xf4\xbc\x51\x75\x7a\x5d\x49\xb3\xbf\xae\xb9\x23\x1a\xac\x43\xa5\xa5\x1c\x12\xa1\x62\xbf\x4e\x3f\xaf\x1d\x7f\xb5\x5c\x28\x2e\xe5\x74\x2d\xa8\xab\x92\xbf\x22\xb3\x66\x18\x47\xae\x92\xa6\x55\x64\x04\x24\x5f\x33\x40\x9c\xab\x06\x40\x3e\x30\x19\x86\xaf\x03\x6e\x38\x8a\xeb\xf9\xda\xcc\x7e\xf9\x65\xe6\x7e\xc5\x80\x7a\x6f\x5f\x66\x67\xe1\x9d\x7f\x38\x3f\xdf\xb6\x49\xbf\x8c\x97\xb8\x98\x21\x52\xea\x34\xe0\xf9\x44\x39\x7b\x8e\xd2\x34\x9b\xf6\x7c\xa0\xf3\x93\xa6\xba\x0b\x5e\x96\x9d\x1e\x26\x96\xb0\x99\x5a\xb5\x8c\xb6\xde\x38\xe6\x1d\xb5\x49\x35\xe9\x61\xea\xaa\xa3\x74\xa5\x8a\xf8\x5b\x3e\x80\x3c\x1e\x28\xf7\xbe\xe3\xae\x35\xd4\xb5\x26\xe9\x9a\x38\xe6\x32\x88\xa6\x05\x4b\x69\x5a\x79\xda\xa5\x49\x1e\xd9\x32\xfb\x7f\xe9\xdb\x37\xe1\xfe\x90\xe6\xca\xdb\xf5\x63\x65\x03\xf3\xb1\x0b\xa7\xbb\x66\x60\x86\x46\x56\x3b\xd4\xb4\xe0\x3b\xeb\x5c\x6f\xab\x5b\xc0\x76\x49\x52\xbf\x1e\xfd\x45\x78\x88\x8c\x61\xd7\xd8\xb8\xa1\x72\xcd\xc7\xde\xa3\x38\x35\x3d\x26\xe1\x3a\x2d\x6f\x27\xa1\x70\x01\xc1\x2b\x4b\x43\x8d\x9f\xf0\x19\x77\xba\x0c\x18\x9a\x2b\xe9\x2e\xce\xba\x92\xae\x6f\x19\x8e\x06\x69\x62\x89\x3d\x8f\xfd\x8a\xcd\xd8\x51\x7e\x87\xec\x34\x2a\xa3\xd7\x69\x36\x20\x08\xb8\xa3\x90\x39\xf8\x62\xe1\xbe\x7a\x0c\x47\xdf\x16\x3c\x3d\xb9\xf9\x10\x28\x44\xdb\x3b\x81\x97\x4a\xdc\xd4\xa9\xac\xa6\x5d\xe5\xc3\x7c\x4a\x19\x02\x20\x96\x44\xad\xef\x69\x24\x20\xc0\x15\x3c\xdf\xa9\xe7\x99\x73\xed\xd8\x2e\x15\x34\x9e\x9d\xf3\x90\x77\x18\xc5\x68\x51\xd2\x50\x73\x72\xe2\x1a\xf5\xb6\x6b\x93\xbc\x5b\x66\xfd\x69\x97\xdd\xfc\xd7\x27\x70\xa5\x42\x20\xf0\x1a\x54\x58\x1d\x20\xae\xb0\x51\x9b\x88\x07\x16\xa0\x18\x9b\xc6\x90\x30\xe6\x1e\x1d\x52\x08\x76\xdc\x1e\xeb\x92\xd6\x33\xca\xe8\x21\x8e\xa3\x34\xc9\xf7\xe0\x49\x62\x7d\xdd\xd5\xd1\x90\x46\x15\x54\xff\x11\x2d\xea\x7c\x8c\xb8\x03\xd7\xf4\x9a\xde\x10\x2f\x34\x4a\x03\x90\x11\x66\x5e\x64\xa2\xed\x20\x81\xc0\xe6\x04\x66\x64\xb3\xa9\x63\xf2\x4a\x99\x17\x51\xc8\x05\x37\x2c\x5b\x30\x6f\x40\xe7\xf7\x4f\x02\xa5\xc2\xf8\x83\xa6\xb6\x6d\x52\xc6\x71\xb4\xb4\x06\x9e\x1c\xf2\xfa\x5b\x93\xca\x72\xd5\xb7\x09\x0f\x40\xc1\xa7\xa3\xa5\x25\x9b\x41\xcf\x92\x15\x02\x51\x48\x38\xa5\x4c\x73\x4e\xa9\x4a\xb0\x3d\x4a\xe1\x1a\xe8\xf8\x78\xa7\xb7\xe9\x35\x22\xc2\xe0\x2c\x4c\x64\x44\x7d\xfd\x92\xb7\x72\xfe\x44\x6d\x09\x23\x69\x05\x9b\x45\xa3\x41\x15\x32\x08\x2d\xc6\x61\xe8\x7c\x23\x69\x57\xad\x5a\x51\x85\x0d\x26\x2e\xa2\x61\x9a\x59\xbd\x64\xea\x76\xde\x7b\x93\x5b\x56\x68\xf3\x7c\x1f\xdd\x01\xeb\xf2\x60\x20\x21\x77\x7c\x30\xb1\xdf\x54\xd3\x1a\x91\x27\xb3\x1c\xdc\x3f\x2c\x8a\xc2\xe8\x7d\x65\xee\x77\x76\xac\x59\x5c\x3b\x37\xb9\x2a\xa4\x1c\xa5\xa3\x32\x56\x84\x36\x7e\x27\xe8\x47\xc9\x0b\x7a\x5c\x99\x8c\x87\x58\x78\x31\xeb\x4f\xaa\xf7\xc8\x77\x88\x9a\xec\xe5\x40\xf3\x82\x47\x51\x26\x70\x78\xdc\xd4\xf1\xb1\x92\xf8\x3d\x1e\xec\xd4\x22\x61\xe0\x08\xc2\xf3\x77\xe8\xd5\xb3\x0f\xba\x36\x95\xbe\x14\xec\x7c\x6d\x44\xdf\xb6\x59\x3e\x82\xac\x10\x2d\xf6\x42\x14\x6f\x79\xd2\xb8\x8a\x1f\x87\x65\x51\x9a\x98\xf2\x76\x36\x0e\x0d\xfc\xea\x70\x69\xac\x24\x90\xce\x63\xfa\xf1\x49\x93\x1f\xec\xaa\x8d\xfa\x03\x51\x35\xe7\xb4\x96\x26\xf6\x04\x4c\x04\xf9\xcb\x4d\x25\x23\x92\x17\x26\x42\x8b\x0f\xcb\xe2\x6d\x4c\x2f\x3e\xd1\x7a\x8a\x26\xde\xe7\xa1\xd6\xcf\x75\x3c\x4e\xe9\x01\x91\x50\xd9\x9c\x6c\xac\x84\x9e\xff\x44\x6d\x12\x57\xf5\x02\xc2\xb9\x22\xea\xba\xf7\x78\x49\x90\x92\x9f\x9f\x5f\xcb\x36\x8e\xd3\x3e\xbd\xba\x6d\x1a\x4c\xdb\x5a\xec\xa1\x28\xb3\xae\x48\x45\x79\xcd\x05\x4f\x44\xb9\x58\xab\x57\xcc\xcf\xb7\xc3\x32\x2f\xd2\x61\x4b\xc9\x0e\x5d\x50\xee\x5d\x75\x2d\x42\x22\x96\xae\xd8\xb0\x55\xdb\xe3\x05\x0a\xe6\xe3\x48\x6b\xfa\x36\x4b\x6c\x9e\x53\x04\x28\xb5\x01\xfa\xa0\x2b\x1a\x38\xe9\x65\x7e\x04\x7c\xa2\xe0\xe1\x5d\x53\x98\xa4\x6f\x72\x92\x10\xf7\x76\x0f\xb3\x72\x5c\xe3\x86\x7a\x71\xdc\x25\xd7\x6a\x13\x9d\x29\x60\xbb\xf8\x78\x67\x49\xe1\x57\xaa\x95\xe6\x50\x4b\xcb\xa6\x06\x2a\x57\x52\xef\xfe\xcb\x8b\xff\x39\xfe\x4c\x3c\x8d\xe9\xda\xc5\xd4\xf8\x19\x0f\xc6\x2e\x6c\x99\x89\xd6\x19\x42\xe0\xef\xd3\x57\xf2\xb1\x4a\xcf\x32\xdb\x37\x99\x33\x64\x16\xc3\x9e\x96\x37\xef\x71\x01\xda\xc8\x44\x89\xe7\x7a\x36\x89\x06\x38\x9d\xc9\x41\x6a\x73\xea\x1f\x39\xfe\xb6\x77\x50\xdc\xdb\xf1\x90\xd2\x4f\xd4\xbd\x99\x28\x7e\x92\x96\x3f\xe0\x92\xb9\x7a\xe7\xca\x7d\xfb\x45\x11\xf1\x18\x05\x2f\x08\xdf\xaf\xe1\xad\x62\xb7\x7e\xa2\xa3\x32\x50\xf8\x4d\xe2\x76\x1f\xe9\x28\x71\x27\x96\xda\xc6\x77\xfd\x98\x5e\x28\x5e\xcb\xf4\xba\xa2\x8a\x3e\xb2\xee\x9b\xed\x84\xb4\xa9\xe2\x71\xb4\x03\x44\x57\xc6\x87\x64\xdd\xb4\xb7\xb6\x8f\x3e\x8c\x44\xe2\x7d\xbc\x16\xf1\x93\xd5\x8c\xa1\x37\xe9\x2d\xa0\xee\xc7\x38\x1d\xe7\xd2\xe8\x58\x37\xd7\x26\x1c\x1b\xe9\x31\xf0\x17\x2b\x0d\x92\x6e\x59\x14\x36\x5b\x22\x6d\x5f\x8f\x14\x7f\x93\xbe\x46\x4a\x47\x82\xde\x58\x1d\xd8\xcc\x12\x3e\x9c\x83\x6b\xc4\x84\xa8\x2b\xf3\x71\x6d\x92\x52\x45\xbb\x88\x32\xdd\xf8\x42\x79\x4b\x60\xf8\xf5\x9d\xa4\x6d\xc2\xe5\x24\x5d\x8d\x6d\xaf\xcf\x3c\x77\x2c\x7a\x77\x14\x12\xf2\x8e\x56\xea\xb7\x79\x1e\x0d\xd9\xe0\xd7\xd5\xdc\xee\x28\x63\xba\x3b\x35\x40\x62\x95\x8a\x94\xdd\x2a\xd0\x8e\x0a\xcb\x66\xda\x12\xc5\xf8\xae\xe3\x66\x13\xdc\xad\xc8\x4c\xcf\x49\x91\x62\x3d\xbe\xa1\xba\x1c\x48\x68\x26\xc4\x8f\xa5\xe8\xe5\x78\x0e\xab\x26\xeb\x4d\xfb\x5c\x79\xba\xe3\x3f\x72\x4b\xad\xb2\x13\xd2\x68\x3f\x57\x6e\x95\xc4\x41\xdb\xa7\x18\xf0\x2c\x69\xe4\xcc\xff\x5c\xb5\xef\x01\xde\x3c\x77\x73\x02\xa5\x3c\x76\x49\x47\xd6\x2c\x67\x27\xf4\x16\x45\x62\x73\xf0\xb3\xd0\x24\x26\xb1\xa6\x35\xc1\xc1\xf7\xd8\x88\xb7\x03\x5d\xb7\xb0\xdd\x18\x4b\xb9\x08\x63\x9c\xa4\x32\x02\x1f\x8f\xdb\xf5\x1d\x2f\xb3\x45\x94\xa4\xdd\xd8\x54\x2b\xba\xa1\x7d\x4f\xb8\x8c\x0a\xe8\x08\xdd\x00\x6e\xc5\x35\x0a\x6f\x86\x26\x8e\x69\xd1\x40\xfc\xf3\xba\x42\x52\x20\x33\x62\x20\xa3\xe2\x0d\x67\x76\x14\x9b\x90\x28\xee\xa8\x72\x29\x5d\xa2\x43\xae\x21\xea\x23\x87\x0b\xca\x3e\xe1\x42\x63\x24\x04\xec\xce\x6a\xd4\xb3\x08\x5b\x91\xe4\xdc\xa7\x6b\x01\x22\xe6\xd1\x8e\x27\x39\x90\x90\xa5\x0f\xe1\x96\xa2\xc2\xbb\xbc\xb8\x56\x83\x03\x10\x6d\x36\xc9\x41\x77\x53\x2b\x8b\x6f\x23\x09\xd2\xdf\xec\x52\x66\x12\x46\x0d\xd3\x63\x12\x69\x43\x55\x59\x81\x0b\x1f\xd0\xd7\x97\x1d\xa2\xd6\x0e\x47\x03\x93\x47\xd8\x0e\x51\x59\xbc\xa8\x65\xfd\x1f\xa8\x52\xed\xe3\x34\xa0\x45\xad\x6c\x02\x6c\xe1\x5d\x80\x9d\xb0\x95\xeb\x49\x6c\xaa\xed\x37\xb3\x51\xb2\x94\x66\x21\xf4\xb4\xb1\xa4\xfd\x31\x16\x6a\x3e\x69\x82\x27\x8c\x6c\xbc\xc2\xc0\x21\x44\x30\xa7\xe9\x5d\xf1\x71\x53\x2f\xc0\x64\x69\x6e\xa1\x57\x27\x75\x7b\xe5\xbf\x5b\xa7\xe3\x2f\x2c\xb4\x97\x62\xb3\x92\xb2\xfd\x5d\x93\xcd\x83\x4b\xcd\xa3\xdc\xc2\xd2\x06\xb0\x24\x44\x53\xdb\x77\x95\x0c\xff\x39\x45\xca\x1e\xa4\x59\x6e\x19\x4b\x8e\x32\xee\x6d\xcc\x4a\x3e\xc1\x14\x97\x65\xb3\xe5\xb4\xdf\xd9\x62\x08\xcb\xf5\xd5\x66\x40\x55\xcf\xc6\xe5\x51\xcb\x32\xb7\xa4\x3d\x53\x9b\x83\x12\x78\x54\x9b\xb3\xcd\x0a\xae\xb4\x0a\x66\x50\x03\x08\x6b\xf2\x41\x54\x16\x4f\x7a\x33\x9e\xc3\x74\x15\x6f\xca\x19\x29\x2c\xce\x72\x0e\xfd\xd7\x48\xa8\xb1\xfd\x6d\x6a\x53\x92\x93\xea\x51\x64\x36\x2b\x13\x4e\xda\xc0\xa2\x00\xa3\x93\x8f\x5d\x3b\x22\x49\x0b\xdb\x4d\xd3\xe5\x19\x05\x37\x3c\xa3\xf9\x9a\xa7\xc6\xca\x63\xee\xb2\x02\x7a\xec\xa1\x11\x8a\x56\xf4\xbb\xb5\x71\x71\x70\xf1\x60\x7b\x60\x4d\x6f\x4a\x3b\xae\xd0\xa7\x81\x0f\xb8\xac\x8a\x56\x3a\xb2\xfa\x8d\xcf\x1f\xc2\xa5\x60\xb5\xba\xaf\x5a\x03\xff\xfd\x33\x1d\xcf\x53\xb9\xa9\x42\xc7\x4d\x8a\x4a\x50\xed\xf8\xa9\xaa\x31\x0f\xa3\x9e\x35\xdc\x04\x46\xf7\x0b\xf3\x92\x8f\xdd\xb6\x4c\x34\xe1\xcc\xeb\xea\x8a\xca\x14\x5d\x07\x9f\xd4\xb2\x9b\x17\x94\x58\x82\x93\x47\x13\x93\x4c\x35\xa9\xbf\x1d\x3c\xa7\xf8\xc8\xe4\x23\x48\x86\x52\x0b\xd2\x9b\xd8\x52\xfa\x43\x1a\x73\x9c\x17\x76\xa8\xa9\xc2\xaf\xd3\xd3\xe3\x63\xc5\x36\x1d\xa5\x79\x6e\xf3\x9d\x52\xa7\xae\xac\x0f\x1d\x45\x8c\xf3\x1b\x2a\x58\xca\x52\xd3\x9b\xf1\x0b\xc7\x3b\x88\x95\xb0\x2f\x8c\x03\x65\x13\x0f\x56\x8a\xf3\xad\xf7\xa8\xed\xcd\x09\x05\x82\x91\x49\x1e\xf5\x94\x93\xc7\x69\x71\x66\xc6\x09\x46\xb2\xcb\x2e\x1c\xc9\x61\x1b\x81\x17\x76\xbf\xab\xe3\x49\x4d\x7d\xcf\x13\xbb\x34\xf6\xd0\xcc\x0f\x50\x89\x67\xcc\x3b\x36\x77\xe4\x91\x97\xd4\x8b\x67\x4f\x55\xc4\x24\xa8\xd7\x7c\x40\xb1\x0c\x1f\x2b\x54\x5c\x68\xe2\x27\x54\x47\x1a\x82\xb2\x78\xe5\x2f\x92\x56\x82\xf4\xea\xab\x8f\xe3\x16\x8e\xa1\x81\x80\x01\x7a\x5b\x8b\x20\x80\xdd\x0f\x08\xc7\x03\x2d\x6c\xc0\x3b\x30\xea\x4b\x7b\xd7\x5d\xe0\x7c\xea\x79\x66\xf4\x09\x57\xc4\x57\x67\x3f\x19\x6b\x1f\x0c\x45\xb6\x58\x31\xd9\xda\x94\x5a\xd5\x4e\xab\xc6\x2d\x54\xb5\xe5\x19\xfa\xbb\xb4\xff\xde\x2c\xc6\x07\xa2\xa5\x7f\x34\xde\x49\x34\xc0\xa4\x5c\x6f\x92\x23\x49\x97\x96\xc8\x78\x9e\x43\x56\xc1\xea\xd0\xdd\x89\xfe\x6c\x3d\x36\x3c\xd4\x1e\x46\x79\x6c\x29\xce\xc3\xd5\x0a\x5c\xd5\xff\xf4\xb6\x92\xd3\xbf\x5a\x5b\x41\x8e\xcc\xb6\xf3\xa2\x0c\x97\x49\x57\x18\x3f\xf4\x36\x16\x70\x0c\x98\xbb\x4a\x6f\x0f\xd6\x30\x8e\x2b\xbf\x38\xbb\xe8\x24\xd8\xd5\x84\xb2\xb6\xb7\x47\x25\xba\x3f\x53\x42\x4e\xa7\xc7\x8a\x4b\x71\x17\x3f\xa3\x35\xf2\x25\x92\xa7\xbb\x16\x37\x70\xc5\xf8\x36\x59\x46\x86\x17\x9e\x43\xa2\x22\x74\xdd\xf7\xe2\xfd\x7b\xaa\xe5\xc0\x42\x77\xe9\xda\xf1\xcb\xf7\x03\xaf\xb3\xfa\xbd\xf1\x73\xfc\x24\x8a\x81\x49\x96\xf3\x7e\xb4\xb2\x43\x2c\x6a\x02\x94\x7e\xc3\x85\x99\x26\x29\x06\x69\xc2\x36\x3a\xe2\xb3\xea\xe1\x3d\x67\x68\x28\x8b\x88\x48\x4d\x3f\x7f\xee\x70\x3b\x4f\x33\xcb\x8c\x28\xd1\x33\xd1\x3a\x27\x0d\xad\xb9\x5e\xda\x97\x66\x91\x2a\x3a\x0b\x76\x1f\x4b\x90\x63\x48\x54\x97\x25\x4d\xb6\x9d\xab\xea\xe2\xec\x62\x3b\x4c\x87\x23\x92\x51\x95\x56\x8f\xd0\xdb\x5a\xce\xdd\x43\x93\x19\xbb\x65\xf1\x94\x87\x17\x70\xab\x0e\xe1\xca\x9f\xd1\xad\xaa\x3a\xf4\xd7\x74\xfd\x4f\x7c\xa7\xf7\x21\x5f\xc5\xdb\x68\x81\xf9\x27\x7a\x69\x5e\x3f\x87\x4d\xc7\x85\x4a\xae\x94\x0e\xaf\xeb\x8d\x15\xf5\x62\x07\x01\xae\x46\x22\xb6\x4b\x66\xb5\x39\x46\x9a\xf3\x10\xfc\xc0\xbd\xb8\x6e\x96\x96\xfd\x41\xf1\x88\x27\x2f\xc3\x89\xd1\x01\x7b\x95\x45\xb4\x32\x63\xdb\x52\x24\xa4\x47\xe1\xf6\x48\xb3\xa2\x7c\xba\x53\x2d\x34\x80\x7c\xff\x25\xd5\x68\x5c\xbf\xdd\x5b\xa6\x3f\xbf\xa3\x23\x19\x25\x79\x04\x3c\x31\x86\xc8\x55\xbc\x30\x3e\x51\x04\xdc\x15\x9b\x14\x19\xfa\x49\x13\x25\x47\x3e\x71\x25\xc7\xae\x49\x96\xb3\x72\x54\x84\x6b\xd3\x93\x66\xac\xf4\x0a\x40\x66\x3f\xa5\xc0\xb9\x2c\x59\x09\xf6\xd2\x7b\x4d\xa3\x2d\x4d\xe2\xb5\x69\xe5\xa3\xb3\xa5\xf0\x13\x4f\x52\xc1\x80\x52\xb2\xbb\x9f\x56\x35\xb9\x2d\xa5\xa4\xe8\x72\x95\x7c\x2f\xfd\x14\xb6\xac\xe9\x8e\xb6\x9d\xa1\x27\x24\x4e\x8c\xd5\xa3\x73\xae\x21\xca\x8f\xc6\xeb\x6c\xbe\xa3\xd5\x05\x3f\x68\x0c\x79\x33\x9b\x87\x29\x06\x34\x4a\x0a\x1f\x2a\x9f\xb2\x0f\x95\xe2\x58\x37\x4b\x93\xa5\xa1\x61\x0b\x0c\x09\x1f\xf1\xec\x44\x31\x48\x31\x03\xae\x04\x0a\x6d\x17\x85\x62\xb3\xc0\x8a\x20\x4a\x4f\x6e\x23\xf8\xec\x43\x02\x56\x13\x17\x36\xab\x32\xae\x15\xcb\x55\x25\xe7\xf3\xee\x8b\xc8\x4d\x0a\x8e\x6d\x7b\x74\x94\xb2\x20\xc3\xac\xb3\xba\xf6\x7b\xd0\xff\xa6\x82\x9f\x28\x29\x6c\x46\x38\xb3\x96\xef\x1e\xc0\xcb\x8f\x8f\xc7\x1e\x8f\x96\xd8\xac\x47\x6f\xe7\x10\x47\x3c\xec\x9f\xce\x1b\xc7\xd8\x33\xb4\x2f\xf0\x93\xd1\x5b\x0a\x66\xfc\x1d\x7a\x57\x2e\x6f\xaf\x1e\xa6\x28\x53\x37\xa9\xb9\x94\x49\x62\x63\xb7\xc2\x8a\xe2\xa5\x2f\x54\x9f\x68\x14\xd8\xa9\x36\xc7\x69\x85\xb5\x02\x83\x4c\x7c\x50\xfd\xba\xc7\xb0\x45\x04\x20\x75\xc5\x27\x12\x7e\xc8\xd4\x0a\x2f\x72\xc0\x3e\x49\xa9\x57\x52\x0e\x2c\xb4\xc3\x81\xcd\xca\xee\x44\x35\x09\xa5\x40\x3e\x9e\x90\x3b\x5a\x31\xf1\xbe\x09\x95\x3b\x1a\x8c\xe2\xf3\xaa\xb4\x32\x81\xab\x03\x7a\xf6\x24\x8d\x72\x2d\x5e\xe0\x24\xdc\x9d\xc5\x34\x32\x50\x00\x6c\x5f\x77\x5c\xa5\x51\x6c\xd6\x56\xb3\xa8\x3f\x28\x98\xed\x83\xb9\x7e\x36\x50\x13\xff\xec\xce\x1a\xec\xe2\xec\xa1\xf6\xe2\x6c\xcb\x27\xbf\xe8\x25\xf2\xb1\x8a\x5f\x47\xd6\x8e\x10\x74\x8b\xd7\x8d\x92\x1b\x3c\x1f\x3c\xa7\x40\x44\x76\x25\x4a\xcb\x1c\x6b\xc6\x1c\x87\x67\x2c\x95\x33\x41\x98\xc4\x30\x44\xe6\x8d\x7d\xf3\x91\x9a\x2c\xe2\xcb\x2f\xb7\x63\x4f\x77\xd8\x26\x83\x8b\xed\xbb\xca\x36\x36\xb3\xa8\x3b\x53\x36\x41\x5f\x8b\xe7\x82\x2d\x98\x8f\x1d\x1c\x29\x2f\x93\x35\x05\x8e\xdb\xd0\xe0\xa9\x0d\xe5\x71\x32\x34\x45\x35\x7b\xf6\xd1\xe6\x24\xc5\xb0\xea\x05\xa0\x31\x7d\x7a\xec\xe5\x3f\x79\xd2\x62\xb7\xbe\x4f\x6f\x0c\x43\x10\x98\x6a\x71\xfc\xf7\x45\xfe\xcb\xc1\x84\xf6\xc3\xb3\xae\x78\x1c\x8d\xba\x65\x14\x3b\x93\x2c\x4d\x6b\xe7\x63\x8d\x56\x8f\xe3\x74\xd5\xeb\x6a\x36\xe5\x36\x0d\x50\x0b\x93\x0c\x6c\x99\xc3\x09\x5f\x5a\x66\xe7\x03\xcf\x07\x3c\xef\x8a\x27\x65\xd2\x27\x9d\xfd\x96\x07\x86\x1f\x0f\x7c\x1b\xe0\xb8\xe7\x2d\xdb\x51\x6c\x5d\xd7\x0a\xdd\xb6\xef\xd1\x75\x4c\xb0\xc8\xb1\xb6\x9f\x57\x68\x33\x9b\x17\xa6\x1b\x47\xf9\x80\x01\x1d\xce\x79\x55\xad\x22\xfe\x7e\x5f\x49\x07\x49\x5e\xa4\xab\x28\x4f\x88\xb5\xbc\x07\x37\xbf\x45\xb1\x07\x76\xb1\x7a\x9d\xed\xc0\x42\x7b\x25\xea\xd9\xb4\xe5\xc1\x90\x30\x29\xe1\x63\x05\xb1\x78\xd5\xc4\x65\x37\x0a\xf9\xb9\x3a\x15\x72\x57\x55\x3f\xaf\xa4\x2e\x46\x59\xba\x92\x2e\x57\xd7\xbf\x28\x5c\xd5\xad\x40\xf9\x25\x6d\xa9\xde\x37\x5c\x56\x2d\x48\x41\xd8\x4a\x6e\x11\xb6\x1e\x4b\xc7\x7b\x08\x5e\xb8\xc7\xac\xdd\x01\xb9\x11\x27\xd8\x78\xd5\x48\xfe\xb0\x89\x3e\xd0\x5e\x89\xec\xea\x44\xcf\x9b\x15\x16\x65\x3c\x35\x89\xe0\xd8\xa3\x52\x22\x17\x70\xbe\x2f\x0f\x7b\x0f\xe2\xa1\xcd\xfa\xe4\xf4\xa4\xe0\x8e\x0a\x9b\xb9\x35\xb1\xfa\x65\xa3\x17\x9f\x54\x0b\xc0\x45\xba\x57\xe7\x78\x5e\xdd\x2b\xe2\x80\xb3\x60\x08\x38\x79\x23\xe7\x12\xf6\x67\xfa\x56\x2f\xa8\x89\x75\x5a\x61\x36\xd1\x31\x72\xfe\x4f\xd5\x4d\x23\x0f\xff\x63\x3c\x42\xe7\x9c\xe8\x79\x00\x5b\xa8\x51\x31\xf8\x89\x96\x5b\x44\xea\x57\x6a\x35\x77\xb7\x61\xf7\xd2\x78\x34\x68\xb5\xf6\xef\xf7\xf2\xa5\xca\x41\x47\x19\x04\xaf\x98\x5c\xca\x1a\x4e\xe6\xdd\xb7\x1a\x2f\x2a\x1c\xfc\x28\xb5\x55\x3c\xa7\xe0\x47\xa7\x68\x22\xf2\xb1\x52\x42\x1a\xc5\xd6\xe4\xb6\xe5\x95\x18\x6f\x02\x25\xcf\x27\xaa\x0a\x95\x5b\x2b\x0a\xb2\xf8\xc7\x56\x47\x79\x27\x01\x6f\xc7\x22\x5b\x0f\x05\x9b\x16\xd1\xd0\xce\xb4\xbe\x34\xe7\x08\x72\xbe\x74\xf2\xc1\xd8\x37\x2b\x90\xa7\x21\x8f\x3d\xa5\xf9\xcf\x33\x1d\x25\xc6\x98\x14\x69\x49\x16\x6d\x6a\xe7\x60\xa8\xa7\xf8\xe2\x49\x9b\x2d\xb1\x7d\x8a\x88\x78\x78\xa1\x00\x8d\xc2\x35\x1f\x2b\x3d\x7b\x53\x0c\x62\x5b\x44\x21\x88\xb6\x12\x99\x78\x6c\xe0\x85\xa6\xcd\xbb\x67\xa2\xa1\x40\xb9\x24\x1f\x53\xc1\xf6\x25\xb5\xfe\x33\xc7\x6e\x9a\x9e\xb3\x88\x7b\xf9\x91\x0e\x81\x75\x3e\x1e\x7b\xa3\xaf\x8b\x6e\xa3\x31\x65\x91\x72\xfc\x8d\x88\x13\x66\x87\x08\x2d\xb0\x33\x08\x29\x83\x2e\x01\x0f\xf5\x0f\x6a\x0b\x57\x95\xec\x59\x86\x83\x7c\x8d\x47\x11\xe3\x4f\xf9\x64\x5d\x29\x2d\xc7\x69\xdf\x24\x3b\x8a\x5d\x07\xfc\xb8\x7f\x46\xe1\x63\xe3\xb5\x21\xe1\xb2\x8f\xcc\x36\x3a\x5b\xc8\x7d\xc4\x36\x01\x7e\x57\x0c\x73\x15\x08\x14\x91\x0f\xf2\x9d\x9b\x7a\x95\xbf\x39\x01\x3c\x5b\xc9\x5f\xac\xbe\x61\xfb\xdd\x60\x02\x91\xe0\x7a\xa9\x6f\xe0\x09\x30\x1e\xbb\x49\xf3\x3c\x25\x03\xe1\x39\x5e\x29\x77\x75\x26\x77\x65\x37\xa6\xbf\x41\x6f\x42\x16\xcd\xa7\x95\xf9\x41\x5c\x0e\xf9\xb1\x38\x31\xaf\xf9\x79\x39\x6e\xaa\xca\x17\x69\x14\xdb\x42\xed\x7d\xa8\x97\x8b\x20\xd0\xa7\x15\x29\x2d\x29\x97\x4c\x58\x94\x59\x94\xf4\xf7\xd1\x70\x61\xba\xc8\xd8\xc7\x74\x28\x01\xb8\x05\xbc\x5a\x7d\xa4\xbe\x3f\xe1\x16\xed\xeb\xfe\x58\xb1\x71\x5b\x7b\x3b\x0a\x08\x7a\xb6\x56\x41\x38\xb0\xd0\x36\xf1\x52\xf5\xbf\x56\xcd\x7d\x69\x27\xf5\x1a\x76\x6c\x20\xeb\xe1\x45\x88\xe1\x18\x2e\xee\xff\x1c\x2b\xcb\x38\x34\x2f\x19\xdf\x5f\x03\x08\xcf\xcf\xb7\x97\xac\x8d\x95\xc2\xf2\x05\xd4\x1d\xf9\xa4\x41\x18\xe5\x60\x7b\x50\x26\xfd\x6a\xcd\xab\xde\x5f\x13\xc5\xb6\x21\x8f\x1b\x9a\xa5\xc8\x30\x4f\x5b\x54\x96\xe8\x77\x98\x13\x86\x2b\x46\x35\x00\x85\x0f\x99\x6f\xda\xfd\x62\x38\xb2\x05\x75\x40\xab\x3f\x76\xa6\x8b\xae\xe7\x88\x5b\xe5\x63\x6c\x4e\x52\x8d\xf2\xa5\xa4\x25\x93\x15\xc4\xad\x58\x94\xd5\x15\xab\x13\x1f\x3b\x35\xc9\x25\x53\xc6\x05\xb7\x12\xf1\xfe\x39\xf7\xe6\x13\x85\xb5\x48\x6c\xb1\x9a\x66\xcb\x58\xc5\x80\x5e\x86\xed\x20\x1f\xaf\x3b\xce\xfc\x8a\x4d\x4a\xcb\x48\x2c\x57\x60\xa9\x5e\xa3\x00\xfd\x14\xa0\xa0\xbb\xb6\xc7\xc3\xd5\xd8\x75\x58\xf0\xe9\xd5\x16\xc6\x92\x83\xf4\xe4\x5d\x5b\xc3\xb7\xf1\xff\x52\x1b\x29\xbc\xee\xc6\xce\x20\xf2\xb5\x45\x16\x79\x57\xbe\x32\xdb\x4a\x7c\x7a\xd3\xc7\xb4\x65\x37\x2f\x4c\xe2\xe0\x48\x18\xdd\x6f\xaa\x0e\xd7\x9b\x0d\x2e\x6c\x6d\xd3\x4d\x25\x2e\x9c\x9f\xe7\x11\x78\x1a\x2b\x0f\x9f\x3c\x94\xec\x69\xfa\xd1\xa8\xa5\x78\x24\xbc\xc2\xf3\x49\xa3\x45\xf8\x2b\xe5\xb0\x9b\xb6\x54\x0b\xed\x38\x3d\x19\x3e\x6e\xfc\x48\x37\x73\x8f\x42\x2f\x0f\xc8\x6e\xce\x60\x7c\xa2\x80\x71\x57\x03\x86\x32\xb3\x62\xd9\xf4\x52\xb8\x47\x7f\x35\x56\xa8\xdf\xbf\x52\x3b\x50\x98\x96\x59\x0e\x66\xdb\x17\xbc\x95\x9e\xfb\x91\x07\x8a\xb7\x50\xb7\x82\x5e\x58\x38\xd4\x1e\x5a\x93\x97\x8e\xf9\x21\x74\x6f\x45\x21\xda\xac\x2d\xb5\x73\x87\xdb\x4b\x71\xa9\x82\xf1\xb7\x03\x1f\x8c\xbf\xed\x54\x38\x46\x36\x7b\xcc\xd3\x38\x9e\x26\xd9\x0f\x67\x6b\x50\x0d\x36\xe9\x10\xd0\x73\x70\xc6\xc2\xb2\x36\xcf\xfc\x0a\xf6\x2f\xed\x1e\x8f\x51\xfc\xd8\x7a\x15\x23\xa2\x42\xbc\xa7\xa3\xba\xc9\x5b\x20\x6b\x8a\x88\x99\xa7\x5b\xde\x57\xc1\x4f\x68\x8a\x22\xb6\xd3\x0a\x3d\x78\x4e\x55\x0a\x4f\xe1\xd2\xf0\xa3\xf7\x55\xd9\xe2\x2d\xed\x8c\x60\x62\xf2\xaa\x44\x3d\xe1\x0e\x6e\x00\x0d\x9b\x3b\x63\xef\x42\x08\x2b\x06\x64\x73\x40\xff\xbb\x18\xbe\xfa\x0d\x07\x73\xa9\xae\x59\x60\x33\x74\x59\x08\xc1\xe1\xea\x4f\x97\xb8\xf0\xef\x12\x71\x4f\x18\x16\x98\xdf\x6e\x99\x73\x7c\xa6\x5f\x7c\xba\xa3\x0a\xe9\xdb\x2a\x5b\x09\xa3\xa4\xca\xbf\x8e\x4e\x2b\x50\xaa\x60\x5c\x5d\xf1\xaa\xfa\xe9\x46\xd9\x7d\x1f\xa9\xe5\xe5\xa8\x4a\x4f\x7a\x08\x33\xb9\x9c\x4b\xc1\x83\x94\x76\x1f\x06\x74\x4f\xd2\x6c\x35\x4d\x7b\x53\xad\xdf\x10\x01\x09\xf8\x4d\x41\xbe\xf6\xae\x66\x5b\xef\xea\xec\xdc\x45\x5e\x7e\xb9\x1a\xe8\x23\x8a\x58\x45\x76\xb8\xe5\x54\x51\x4f\x51\x25\x10\xdc\xc3\x5b\xc1\xce\xf6\xef\x0b\xed\xd1\xc0\x64\x43\x13\xda\x92\xe0\x01\x02\x5b\xc7\xc3\x64\x35\x0f\x0c\xa6\xab\x1a\xb7\x3e\x59\xa4\x19\x99\x78\x4f\x15\x5b\x20\x9c\xd8\x9c\xa0\x9d\xd1\xcc\x41\x47\xf8\x94\x16\x8f\xfe\xc1\x78\x42\xd3\xd5\x27\x74\x7f\xa5\x6d\x2f\x86\x29\x72\xf9\x87\xa1\xfa\x1b\x84\x35\xd3\x30\x2c\x21\xac\x29\xde\xc4\xd5\x40\x13\xd3\xe2\x9d\x7c\x21\xea\x93\x27\x66\x68\x73\xb3\x0c\xb4\x92\xa8\x41\xf8\xee\x43\xfd\x67\xf6\xef\x6f\xc7\xd6\x2c\x33\x67\xd6\x79\x43\xfa\x25\x13\x8d\x1e\xc1\x4b\x3c\x3d\xe1\x21\x65\xf3\x62\x8a\x14\x1f\x9c\x40\xc2\x81\x85\x49\xa3\x60\xdc\xdd\x9d\xa6\xad\xdc\xd7\xa6\x44\x02\x97\x95\xbf\xf8\x44\xb1\x37\x96\xa2\xcc\xce\x78\x4c\xfd\x96\x06\x6f\x5e\x54\x81\xd2\x9f\x29\x11\x30\x06\x0e\x63\x56\x5f\x09\x3c\xf6\x28\x8c\xcb\x2e\xa2\x3f\xfc\x1b\xfb\x9b\xf1\x89\x0b\xd9\xc3\x34\x7e\x91\x77\x58\x0c\x39\xde\x61\xf9\x24\xf0\xb5\xb0\xbe\xc9\xe0\x28\x37\x61\x07\x86\xbc\xf3\xc6\x84\x52\xf6\x09\x17\x15\x0c\xac\x87\xf6\x32\x35\x81\x5e\x93\xb3\x15\xaa\x1e\x1e\x5a\x1f\xbb\xd7\x15\xea\x35\x0a\xf7\xd2\x2a\x84\x55\x0c\x4d\x19\xb4\x3b\x9e\x20\x0f\x1a\x2c\x55\xfc\x80\xc4\x21\x42\x81\x0b\x3e\x20\x70\x34\xee\xe1\x0d\x15\xc4\xde\xd2\x18\xdc\x32\xeb\xa3\xa4\x2c\x43\xcd\x0b\x0b\x5c\x70\xc9\x6d\x9a\xf5\x12\xb0\xd0\x1d\x5e\xf8\x47\xea\x55\xfc\xa8\xa6\x46\xb6\x7f\x7f\x3b\x4c\xb3\xac\x1c\xb9\x4e\xbf\xd3\x5d\x74\xa1\xf1\x66\x0d\xbd\x5f\xc5\x89\xa6\xdf\xcf\x6c\x9e\xfb\xfa\x38\xb6\xa0\x13\x6a\x3b\x3a\xd1\x14\x08\x77\x6d\x68\xca\x1c\x8e\xaa\xc8\x64\xae\x29\xfb\xd9\x93\x74\x5b\x28\x6d\x3e\xa8\x45\x10\x24\xe1\x91\x9a\x5e\x5e\x18\xd0\x4a\xc5\x32\x42\xb1\x76\xde\x6a\x4a\x2b\x63\x9b\xf4\x5c\x1d\x19\x4b\xcc\xae\x75\x5f\x98\xda\xd5\xf1\xf1\xde\xd7\x4b\x93\x15\x36\xcb\x09\x08\x00\x88\x07\x97\x26\xea\x38\xb8\x3b\x84\x03\xe0\x3f\x42\x0b\x5c\x62\xf1\x27\x14\xe4\x22\x8e\x11\xd4\x22\x44\xb8\xa5\x14\xea\xcf\xe9\x2b\x67\x9f\x7b\xfe\xab\xe6\xa5\x64\xd5\x64\xbd\x2c\xed\x32\xcf\x58\x6f\xcf\x7c\xac\x1c\xf1\xe2\x34\x59\xa3\xbc\x10\x8f\x16\x51\x2b\x18\xeb\x17\x94\xa2\x0d\xeb\x3a\x88\x85\xbb\xa7\x56\xe7\xa3\xcc\x9a\xde\x23\x4a\x36\xe2\x01\xed\x36\xc8\x04\x36\xb5\xc7\xf2\x0d\xc5\xd4\xd9\x54\x12\x22\xb7\xe8\x77\xb0\x3c\xb3\x16\xa7\x54\x1c\xbd\x7e\xf1\x7b\x81\x92\x0f\xfa\x41\x53\xa3\x68\x94\xd9\xc2\x1c\x55\xaa\x8b\x67\x94\xea\x62\x23\x25\x34\x2f\xcc\xb2\x73\x0b\x41\x46\xff\xb1\xa6\xd4\x7e\x5c\xc3\xc7\x1f\xfe\x32\x95\xff\xc2\x74\x68\x69\xab\x93\x31\x48\xaf\x5e\x44\x2c\xfd\x98\xbb\x58\x13\xe5\x22\x0b\xd1\x35\x25\x62\xb3\xa1\xf0\x5b\x1b\x4d\xe2\xe1\xe0\xbe\xf4\x19\x5a\xf6\x34\xeb\xad\x29\x02\xc1\xb7\x82\x47\xa2\xea\xe6\x97\xfe\xc3\x76\xf7\xdf\xaa\x9e\x30\x36\xec\xdb\xc8\x4f\x39\x91\xa7\x0d\x18\x0b\xdb\x86\x72\x5a\xff\xbe\x32\x95\x7b\xb2\xd3\xfa\xca\x17\x19\xbc\xfc\x63\xdc\x11\x8a\xaa\xbb\x21\xb7\xec\x02\xa0\x83\xce\x9e\xf4\xc1\x78\xd2\x28\x5d\xf5\x5c\xab\x25\x0d\x17\x32\xd3\xf1\x06\x02\xbb\x09\x1a\x82\xe1\x30\xbd\xde\xfa\xfc\x6f\xba\xeb\xc0\x4b\xa0\x7d\xe1\xab\xff\x7f\xf4\x92\x91\xf7\xfc\x10\xd9\x28\xf6\xe5\x33\x18\xfd\x62\x34\xa0\xe4\x15\x66\x3a\xaa\x81\xfc\x16\x4a\x91\xce\xbe\x73\x51\x44\x05\xb8\x1b\x46\x6b\x75\xf9\xc2\xba\xdb\xc5\xfb\x9f\x02\x92\x0d\x39\xd0\xee\x8e\x12\xd4\x5d\x0f\xbc\x72\xf7\xa5\xf1\xd4\xa1\xaf\x7e\x89\x15\x94\x10\xb9\x3b\xb3\xe6\xc5\x59\x69\x2c\xde\x51\xd2\x84\x85\x19\xd9\xbc\x60\x25\x0f\xa6\x4b\xd3\xb0\x14\x80\x80\x96\x4c\x82\xd7\xd0\x24\x0f\xd3\x00\x8e\x80\xe2\xcc\xd5\xc0\x9b\x9f\x7d\xa0\xc5\x87\x1b\xcd\xac\xf3\xa2\x5a\x7b\x69\xbd\x66\xda\x1c\x5d\xb1\x50\xe8\x1a\x1a\xc4\x79\x6c\x57\x5b\x3e\xe6\xbb\xa4\x1c\x82\x2f\xd5\x96\x9a\xc5\xd9\x43\x24\x18\xa1\xfc\xff\x31\xc0\xfe\x89\x42\x51\xfd\x93\x40\x5b\xbf\x84\xcb\x76\x4d\x1b\xf4\x9e\xd1\xae\xc5\x67\x26\xc2\x39\x5b\x66\x7b\x27\xb9\x91\x3a\xfd\x6b\x29\x29\x23\xcd\x93\x9c\x24\x57\x38\x92\x24\xf4\xeb\x44\x50\xd7\x6f\xca\xa3\x28\x9c\xf6\x15\xbc\x3b\xf8\x0d\x40\x66\xce\xd3\xaa\x8d\xca\x36\x98\x1d\x48\x54\xee\x06\x5e\x53\x54\x81\xc5\x7b\xd3\xbe\xfc\xbc\x89\xaa\x2e\x9f\x8c\x3d\xb5\x0e\x0b\x12\x1f\x37\xe4\xcb\x0b\x6d\x93\xac\x15\x03\xaa\xfc\x3a\x6c\xd1\x29\xed\x95\xf2\x31\x69\x00\xa1\xde\xf5\xdd\x26\x7f\xe2\xae\x09\x0b\x9b\x45\x5c\x42\x62\x7f\x16\x25\x54\xb4\x81\x15\x69\x47\xc9\xcb\x82\x51\x8a\xdd\x41\x17\x5f\x5a\xeb\x9f\x52\x86\x8b\x99\xed\x13\xcb\x2a\x4d\xa6\x54\x84\x86\x02\xb2\x54\x8b\xe8\xed\xca\x3c\x90\x88\xc3\x64\x05\x63\xe4\x5d\x1a\x47\x58\x50\x39\xd6\x66\x51\x36\xb3\x09\x82\x60\x47\x6f\xf7\x54\xf7\xc6\x55\xdc\xac\xb8\x24\x9e\xd1\x96\x81\xa7\x82\xfc\xa1\x56\xca\x52\xa1\x52\x38\x88\x46\x5c\x16\xe6\x97\xac\x5a\x6e\x77\x94\xb1\xe0\x1d\x9a\x73\x32\x10\x3c\x53\x76\xd5\xe4\x85\x5d\x35\x85\xcd\x68\xfb\x74\xdb\x97\x57\xc8\x44\xd6\x8a\xf7\x36\xd5\x51\x01\xe3\x39\x6d\x13\xb6\xb4\x14\xc5\x91\x29\x2c\x1e\x29\x0f\xbe\xb1\x03\x63\xbc\xfa\x5d\x0d\xeb\xa8\x93\x38\x09\x76\x34\xb4\xab\x03\x53\x10\xff\x0b\x5f\x30\x03\x09\x50\xac\x86\xc7\x15\x0b\xf4\x13\xfa\x66\x8c\x85\xd7\x54\x1d\x39\x8e\xf2\xc2\x26\x6c\x06\xe0\xdc\x60\xf5\xda\xa4\xa2\x4c\x13\xdb\xfc\x69\xfa\x47\xfc\xc0\xff\x8a\x46\x8c\x43\x77\x38\x48\x43\x6b\x5d\x11\x62\xfe\x02\x8b\x27\xfb\x95\x8f\x95\x50\xcd\x6e\xd8\x33\x0a\x75\xc8\x2f\xd1\xff\xd1\x2e\x82\xfc\x61\xbd\xfd\xb6\xd6\x0f\x38\x3e\xae\xd2\x54\x6c\xd3\xbf\x35\x41\x35\x0e\x5c\x1d\xf9\x89\x67\xb1\x8e\x3b\x7f\x63\x27\x0c\x8e\xb8\x58\xbc\x42\x1e\x96\x10\x2f\x99\x6c\xe8\x55\x6f\x31\xb4\xee\x62\xc1\x46\x6a\xfa\x21\x2e\x15\xb7\x77\x35\x78\xd4\xad\x2b\x47\xa7\xe8\x56\x51\xf3\xf8\x23\x2a\x38\xa0\x36\xfc\x0e\x5d\x36\x5a\x1b\x1f\x36\xc7\xa0\x45\x51\xb2\x40\x14\x0a\xa3\x80\xff\xf3\x71\xed\x5a\x3f\xf7\x39\x42\x0b\x4b\x3c\x3a\x01\xa4\x53\x02\x1f\xa7\xd5\xeb\xb3\x47\x8b\xcc\x4c\xf9\x0a\xd4\xa6\x1a\xf8\x27\x09\x11\x2c\xf2\x2f\x9e\x8d\xbd\x1c\x25\x3d\x26\x3d\xe3\x39\x40\xa5\x55\xf1\xd6\xa5\x53\xba\xa7\xf3\xb4\x62\x09\xe7\x39\x49\x0b\x56\x3b\x33\x06\x26\x4b\xe1\x22\x32\xde\xbd\xee\x21\x8a\x77\x91\x38\xf1\x3f\x74\x1a\x52\x10\x9b\xf4\xb2\x34\xcc\xa2\xc4\x4e\x29\xa0\xfa\xdb\xca\xc2\x08\x8a\x6c\x9c\x44\x4e\x60\x07\xc3\x68\x24\xfc\x3e\xc7\x3c\x73\xa6\x39\xbf\x75\x69\xfc\x98\x82\xc0\xe2\xdb\x19\x57\xa8\x80\xa5\xec\xee\xc9\xb6\x35\x2e\x1f\x34\xf9\xb2\xa3\xe4\x60\x91\x86\x63\x9c\x30\x6b\x7d\x7a\x09\xa5\xfd\xed\xcb\xb5\x45\xec\x05\x76\xa6\x96\x50\x54\xc0\xa6\x74\x21\x7c\x52\x9b\xf8\x55\x7a\x95\x9b\x84\x24\x58\xe9\xc6\x94\x5d\xab\xf3\x6e\xd5\x16\x54\x26\x09\xd3\x70\x99\x5e\xbc\xa8\x99\x56\x03\x13\x3d\x02\x26\xa2\x61\x3a\xff\x4d\x2d\x36\x78\xf9\xe5\xf6\x6a\x14\x43\x9e\x49\x88\xa4\x1e\xd0\x75\xde\xf1\x0e\x8a\xac\x0c\x79\x25\xd3\x0a\x87\x58\x43\x98\x3b\x2d\x7a\x3d\x2e\x5d\x2f\xbb\x66\x5a\x53\x25\xe8\x06\x50\xb6\xdf\x4d\xb1\xa3\x78\x65\xe2\xe9\xc8\x88\x76\x65\xfa\xd8\x38\xd3\x4c\x21\x73\x28\x62\xc7\xd8\x03\x15\x4c\x6f\xc5\x56\x3b\x11\xb5\x4e\xaa\xdb\x15\xd0\x0b\x2d\x3f\x12\xf3\xd0\x9a\x21\xd8\x98\x6a\x9d\x90\x00\xe8\x71\x05\x5b\xfd\xbb\x53\x7e\xe8\x3e\x41\x1b\xa6\xe0\x0b\x55\xca\xbe\x67\xbd\x49\x90\x23\x0d\xa3\x34\x4e\xfb\xa4\x44\x3c\x3f\xef\xb4\xce\x5b\x4e\x82\xf0\xf5\x26\xa6\x7e\x9c\xae\x5a\x14\xab\xab\xef\x17\xfd\x1b\x05\x73\xbf\xa9\xd4\x27\x3f\xa8\xbd\xc0\xfd\xfb\xdb\xc3\x34\x2f\xa6\x29\x5e\x97\xe6\xb3\x53\xb4\xfa\x09\xab\xb6\x70\xad\x23\x50\x9b\xf8\x96\xeb\xeb\xa6\x65\x11\x2b\x5e\x28\xcb\xf7\xd1\xaf\x8a\x94\x9f\xbc\x92\xea\xff\x38\x26\xdc\xbe\x1c\xb0\x1a\xc8\x63\xbe\x63\xfe\xa2\xb2\x6d\xde\xd0\xc3\x7c\x43\x49\xff\xe4\xa3\x88\xa1\x7c\xaa\xc7\x7b\x48\xc8\x65\xf4\xbb\x18\xae\x9b\x8a\x50\xb5\x92\xc6\x65\x52\x98\x2c\xca\x87\x2d\x8f\x53\xb8\x1b\x28\x10\x5c\xbd\x4f\x38\x77\xb8\x5d\xbe\x98\xbf\x68\x5e\x9c\xd2\x66\xd3\x5b\x13\x99\x99\x7a\xad\x3f\x55\x11\x64\x19\x2f\xb5\x6a\x56\x50\x7c\x5c\xaf\xa3\xcc\xb5\xbb\x78\xf7\xa2\x59\x8f\x89\xc8\xd8\x5e\x3e\x51\xba\x65\xa3\x34\x2f\x6c\x36\xe5\x19\x1b\xb8\x26\xa5\xb0\xf1\x05\xbe\xd8\x07\x2a\xce\x26\xac\x20\x37\x27\x44\x9e\x9b\xf2\x21\x3e\x71\x64\x40\xbb\x2a\xcc\x2d\xc7\x12\xaa\xae\x83\x4f\x74\x09\x94\x0c\x95\xf3\xc7\xbd\xa2\xc6\xc7\xb4\x76\x38\x3c\xe6\xa2\x2c\xc7\xdf\x57\xed\x8c\x7d\x58\x30\x19\xe2\x83\x05\x46\x50\x9b\x13\x5a\xbb\x2d\xa7\xe8\xf5\x43\x12\xa6\xe4\xaa\x3d\x92\x03\x87\x10\x72\xfe\x89\xd7\xc6\xca\x49\xe0\x99\x75\x8f\x4f\x1d\xda\x5e\x14\x7a\x3a\x0a\x12\x43\xa0\x8c\xf9\xb8\xd6\x96\x5f\x9c\x5d\x6c\x0f\x52\x5e\xd9\x38\x62\x0c\x94\xc6\xfa\x1f\xaa\x4d\xb0\xb0\xbd\x1e\xaa\x58\x6c\x67\x4b\x85\x0e\xb1\xb6\x6d\xe8\xab\xa6\x09\x57\xbd\xb0\xf9\x43\x0d\x99\x8f\x1b\xc8\x7b\x07\xdb\x26\x0b\x07\x51\x61\xc3\x42\x76\x02\x94\x14\x78\xf4\xf1\x49\x2d\xd7\x5b\x58\x68\x8f\x0c\xd8\x31\xf4\xce\x11\x2b\xfc\xfe\x58\x19\x4b\xfe\xfe\xa4\xdf\x72\x31\xf8\x45\x5a\xe5\x58\x9e\x9e\xee\x03\x00\x9b\xbd\x48\xbd\x11\x2c\xbe\x17\x78\x84\xc5\x75\x2c\x0a\x78\xe8\x2d\x50\x8d\xb1\xc9\xc0\xe6\x4d\xaa\xd4\xb4\xd7\xe3\x65\xde\x47\x05\x42\xe1\x0a\xbe\xc6\x41\x02\x98\xa6\xe8\x2e\xdd\xa6\x72\x84\xf8\x03\x50\x71\x41\xc1\x4b\xa4\xe4\x74\x19\x09\x36\x5e\xe3\x59\xd2\x15\x45\x78\xfc\xdf\xb2\xe3\x95\xa0\x50\xaa\x49\x0f\x3c\xf4\x1f\x04\x4a\x40\xf0\x3c\x28\x33\x0e\x38\x54\x2d\x83\xfc\x65\x08\x2b\xa5\xef\xe5\x51\xa8\xbb\xa9\x2c\x8b\x16\x5b\xab\x83\xf7\x81\xcf\x7f\x12\x78\xed\xe4\x4c\x74\x66\xb9\x57\xa6\x80\xaf\x97\xdc\x16\x57\xe6\xb6\x87\xea\xaf\x4b\x5a\x5d\x22\xf4\xb7\xd7\x55\x17\x71\x8b\xa6\x95\x28\xd1\x7a\x9c\xe2\x36\x42\x2c\x44\xd5\xfb\x90\x4b\x00\x44\xdf\xee\x28\x63\xa4\xc4\x70\xe8\x88\x14\xf8\x3b\xca\x95\xe1\x3b\xaa\x66\x37\x32\x05\x99\x82\x2e\xce\x3a\x0e\x6e\xf5\x21\x3e\x56\x88\xea\x6a\xfd\x19\xa5\x09\x88\x90\xc0\xa7\x43\x42\x9d\x8f\x95\x5e\xcf\xd0\xac\xa5\xd9\x1e\x7a\x49\xce\xbe\xa9\x7a\xc8\x62\xdf\xe4\xbb\xca\xdc\x29\x15\x7a\xb8\x66\x3f\x6c\x29\x41\xa7\x5d\x9d\x26\xe3\xfb\x62\xb0\x96\xdb\x6a\xcd\xad\xc6\x09\x87\xa2\x1d\x25\xa3\xb5\x6b\x5d\xf9\x57\x99\xe1\xc8\x44\xfd\x84\x0c\x28\xf0\xb2\x4f\xd1\xd5\x63\xdc\x1e\x57\xd2\x59\xcc\x70\xc4\xc6\xc8\x65\x04\xfe\x44\xe0\x91\x86\x8f\xae\x57\x13\x85\x3f\x5d\x6b\x63\x49\xda\x90\xa7\x65\x31\x00\x7f\xce\xf1\x6c\xdf\xa3\xfb\xe7\x63\xc5\x7f\xe9\x45\x66\x24\xe8\x1d\xd1\xf2\xf1\xa1\xd0\x89\x40\x53\x0c\xf2\x92\x7c\x30\xa7\x7c\x32\x7f\x0f\x3b\x80\x68\x1c\x79\x26\x77\xbd\x3f\x37\x77\xb8\x3d\x32\x71\x4a\x97\xc4\x48\x56\xed\xd7\xf7\x86\x02\x68\x8e\xd2\x78\x8d\x7c\x63\x75\xfb\xfd\xbc\xe2\xe5\x9f\xaf\x6d\xa0\x07\x16\xda\x3d\x9b\xac\x30\x24\x4b\x80\x7e\x5a\x3e\xa9\x46\x03\x5c\x58\x68\x17\x36\x1b\xb2\xd7\x00\x87\x6f\x28\xb1\x5c\x50\xd8\xf6\x0b\x2a\x71\x89\xd3\x34\x87\xc3\x9f\xc0\x13\xaa\x6b\x12\x69\x73\xfa\x02\xfe\x07\xbc\x4d\x2f\x74\xee\xea\x1d\xa6\x6f\x67\x94\x1a\x0a\x22\x60\xc0\xdd\xce\xea\x08\x18\x99\x04\xaf\x82\x9a\xe2\x74\x6a\xa2\x48\x95\x16\x21\x82\x21\xe4\x83\x68\xb8\xf1\xb1\x77\x31\x8f\x56\x6c\xb6\x94\xa5\xec\x62\xae\x89\xa9\x7c\xec\xa5\xeb\xcb\x61\x19\x47\x49\x4b\xb9\xba\x40\x16\x9d\x8f\xc7\x3b\x1c\x30\x6d\xa2\x41\xef\x37\x14\x32\xed\x86\x52\x87\x29\xb2\x74\xd5\xc6\xd8\x1b\x04\xde\xee\x7b\xdd\x17\x95\x07\xd5\xc8\xae\x65\x36\x4e\x93\x7e\x09\x98\x07\xae\xef\xf6\xd8\x5f\xb7\x77\x92\xeb\x9a\x70\x39\x2f\xd2\x11\xf5\x99\x85\xbf\xe9\xc1\xa6\xdf\x56\xf6\x0c\x85\x7d\xc2\xe5\xb3\xf6\x17\xa9\xc3\xe0\xb2\xe9\xea\xa2\x04\x5c\xa5\xb8\x7e\x5b\xe3\xd6\x57\xbe\xe8\x1a\xdf\xd5\xb4\x93\x47\x50\xfd\x9c\x53\xb7\x3a\x22\x62\xdc\xbb\x28\xe7\x42\xe0\xf5\x24\xa1\x0f\x44\xe8\x55\x59\x78\x31\x90\x81\xf2\xf5\xe1\x33\x1d\x15\x49\x6f\x2a\xa9\xd3\xea\xdd\xc2\x85\xcb\xbb\xa8\xa0\x15\xe2\x45\xc1\x3d\x4e\x33\x7a\x95\x51\xcf\x68\xfc\xdc\x1c\x2b\x01\xb0\x9b\xb5\x40\x9e\x64\x02\xc8\x62\x83\xa1\xfd\x4e\x2c\xff\x25\x77\xac\x28\x8b\xa6\xf8\x77\xb0\x8a\x20\xc4\xbf\x8e\x1d\x91\x4f\x54\x64\xb2\x14\xd9\xb8\xb7\xa7\xe5\x1c\x71\xef\x2b\x21\xb6\x16\x98\x4d\xd8\x85\xef\x6a\x4c\x14\xc4\x16\x18\x92\x42\x9b\x38\xe2\xab\xbf\x0e\xfe\xce\x43\x09\xda\x49\xcf\xc0\x2f\xaf\xe5\x2b\x54\x30\xa6\x93\x9d\xa4\xe9\x96\x7f\x69\xee\xc0\x17\x0e\x1c\x3e\x44\xb6\x3b\x82\x22\x56\x4a\xb9\x6c\x25\xe4\xac\xd9\x7c\x13\xf6\x38\xb6\x87\xed\xcb\x2a\x3d\xba\x40\x35\x0a\xf1\x40\x7f\x58\xf1\x26\x4f\xcb\x2c\x94\xb4\x50\xd0\x8c\x8a\xaf\x76\xd3\x2d\x0b\xdd\x2c\x4d\x42\xa6\x01\x63\x4f\x65\x1e\xa3\x0b\x09\xdc\x9e\x74\x5a\x2b\xc7\x0f\xd2\x58\xa4\x12\xc4\x6f\xb7\xe5\x94\xb9\x7e\x52\x6b\xe5\x1c\x99\x6d\x97\x49\x92\x16\x51\xc8\x70\x28\xa1\x7d\x78\x18\xda\xeb\x4d\x02\x8e\xa3\x2c\x1d\x65\x91\x25\x49\xbe\xd6\x0e\x29\x5d\x3e\xae\x95\xe6\x0f\x2c\x68\x0b\x9b\x87\xba\x32\x34\xf0\x92\xf2\xb2\xdf\xb7\xb9\x44\x92\x78\x1c\xbb\x3b\xea\xd9\xec\xae\x09\x66\x1f\x99\x85\xfa\x97\xed\xf1\x4f\x71\xcd\x1d\xd1\x9f\x14\xe0\x9b\xf4\x90\x46\xa5\xfc\x10\x37\xbf\xb1\x88\x4b\x27\xdc\x8f\xef\x34\x5b\xb6\xc3\x69\xfd\x8f\xf8\x72\x00\x74\x7e\xae\x82\x36\xbc\x2d\xfe\xef\x4d\x79\xf4\xc0\x64\xbd\x55\xc3\xa2\x30\xd8\x63\xce\x2a\x55\xb6\x3a\x2c\xf3\xc8\xec\xc1\xf6\x52\x96\xbe\x6a\x93\x29\x65\xc8\xce\x38\x20\xef\x12\x2d\xae\x95\xdf\x69\x6a\x67\x67\x36\x5c\x0b\x63\x84\x51\x4d\xa2\xad\xcf\xba\x3a\x79\x66\x92\x3e\x51\xec\x5a\xbe\x03\xb0\xaf\xe3\x11\xda\xfb\xd6\x9f\x51\x8c\x99\xd0\x46\xa3\x42\xfb\xff\x4e\x61\xf2\xf0\xc9\xfa\xf3\x91\xcb\x08\xfb\x76\x75\x10\xe5\x14\x6c\xd0\x13\xe7\x65\x36\x98\x58\x73\x9b\xe6\x6e\x6c\x4d\xcf\x71\x05\x1a\x8d\x34\x5d\x33\x39\xb3\xa6\xb0\xd3\x4a\xb8\xe0\x86\xaa\xdd\xe3\xcd\xe8\x7d\x17\x85\xa0\x93\xb5\xd0\x60\x7e\xbe\x3d\xac\x12\xce\x0c\xec\xa3\x96\xcf\x3a\xb7\x7c\x71\xf7\x7f\xac\x5f\x2d\xfc\x7b\xa2\x38\x2d\x74\xff\x60\x17\xed\x06\x7c\xdc\x91\xd4\x37\x8c\x6d\xb6\xdc\x52\xda\x95\x27\x15\x3d\xe7\xa4\x73\xc4\xe8\xa7\xc5\xa3\x3e\x8a\xfb\x9f\x95\x82\xc4\x3f\xfe\x6c\x47\xb5\xbc\x6e\x20\x78\xd0\xbc\x7b\x7c\xd5\x27\x1c\xdf\x3a\xd5\xd5\x45\xbf\xce\xfb\x90\x70\x6a\xdd\xa7\xc0\x8f\x23\xb7\x12\x83\xaa\x9d\x81\xdc\x4b\x73\x87\xdb\x59\xc9\xee\x19\x22\x68\xef\x8b\x94\x17\x1b\xb2\xc3\x83\xed\xc2\xe4\x85\x95\x42\xb6\x3c\x3e\x45\xfe\x60\x20\x0d\x56\xa1\x63\x4a\x35\x65\x49\x8c\xda\x5d\xcc\x8f\x82\x8f\x48\xea\xa9\x35\x74\xd9\x26\x7b\x7d\x6f\x61\x8a\xe0\x70\x48\xc4\x8e\x8f\x55\x9f\xf6\x5d\x05\xfa\xfb\x9d\xb1\x27\x05\xdc\x1e\xeb\x1e\x7a\xe0\x37\xea\x8b\x75\x5d\xc8\xf9\x79\xd8\xc2\xd3\xfa\x66\x98\x4b\xcb\x70\xf1\xc0\xb3\xaf\x2f\x29\x8b\x9b\x30\x1a\x72\x4f\x4c\xa8\xa6\x2d\xe7\x32\xf6\x81\x22\x5b\x66\x76\x54\x66\xe1\xc0\x40\x98\x65\x61\x12\x73\x28\xae\xaa\x4d\x6b\x59\xcf\x9a\x9e\xf2\x0b\x38\xa5\xf8\x0e\xa7\x6a\xeb\xf3\xfc\x7c\x3b\x1a\x8e\xb2\x74\x25\xca\x25\xcc\xc6\xb6\x71\x5a\x71\x40\x4f\x37\xc9\xce\x0d\xd3\x6e\x14\x23\x38\x73\xc4\x00\x4f\x12\x70\x09\x67\x5c\xe6\x03\x02\x28\xb0\xa4\x37\xdd\x2d\xdb\x39\x76\xfc\xdc\xb8\x55\x9b\x43\x2f\xb4\x63\xdb\x8f\xf2\xb8\x9a\xc8\xbe\x45\xf0\xaf\x68\x44\x8b\x04\x8a\xf6\x88\xf6\x95\xee\x53\x8a\x85\x3a\x2c\xf3\x28\xdc\x43\xa5\x00\x4c\x89\x13\xba\x96\xc3\x52\x76\xf2\xaa\x5b\xfe\xaf\x26\xbb\xe1\xad\x2f\xcd\x39\x4c\xc5\xce\x8d\x71\xff\xfe\xf6\xd0\x44\xe4\x8f\xb8\x43\xa9\xee\x8c\x52\xaa\x3b\xa3\x46\xc0\x20\x8d\xed\x94\xaa\x98\x69\xf6\x37\xd6\x29\x71\x63\x90\xc0\x7d\x94\x45\x49\x18\x8d\x62\x9b\x4f\xf9\xd4\x8a\xe7\x8d\x40\x82\x5a\xce\xc8\xe3\x8a\xf2\xec\xc9\x07\xe9\x6a\x96\xa6\xc3\x9c\x26\x0e\x20\x0e\xa7\x29\x8a\xe5\xe3\x5a\x74\x70\xf8\xcb\x3a\x6f\x74\xa5\x35\x46\xa4\x09\x6c\x67\xe7\xdb\xaa\x16\x83\x51\x1a\x25\x5c\xee\x3b\xe8\x74\x8f\x68\xb8\xf2\x49\x0d\x1d\x7c\x60\xa1\x3d\x14\xe9\x42\xd1\xe7\x6d\x39\x1d\xfa\xf3\x81\x36\x4b\x5c\x35\x98\x5d\x02\xbf\x68\x39\x19\xa9\x33\x4d\x51\x47\x66\x0b\x32\xda\x93\x57\x22\x46\xa9\x7e\xc8\x7d\xd2\xa8\xf2\x9a\x59\x08\x0f\x7b\xfc\x95\xf0\xac\x5a\x8a\x80\xd5\xa0\x89\x1f\x47\x09\x67\x9d\x78\x93\xa0\x36\xf2\xb1\xb7\x18\x48\xb3\x62\x30\x33\x61\xba\xe6\xe1\x86\x57\xd5\x72\x0d\xac\x88\x88\x97\x57\x8b\x35\x56\xba\x6b\x0f\xc5\xa9\xbf\x52\xbe\x92\x6a\x96\xee\x05\xc5\x48\xb9\xa0\x40\xcd\xc5\xc0\xa6\x19\x6b\x4b\x38\x14\x83\x6b\xa1\x3d\xb2\xee\x37\xc7\xdd\x9d\x06\x0f\xa7\x91\xc9\x4c\x2f\x3d\x3a\xa5\x74\x34\x40\x83\x47\xdf\x1d\xfa\x3c\x22\x1c\xa5\x2a\xa2\x69\x92\xc6\x69\xbf\xe4\x06\xbf\x96\xcd\x17\x3d\xfd\x67\x54\x83\xbf\xc8\x4c\x58\x40\xfe\x65\xfb\x6a\xd0\x3a\xb0\xb0\x7d\x55\x93\x24\x4d\x16\x03\x37\xe8\x9d\xf8\x75\x07\xf4\x98\x7b\xde\x85\x35\xe1\x00\x89\x36\xba\x30\x28\x17\x23\xe1\x7c\xb4\xa3\x34\x0f\x91\x68\x23\x01\x64\x05\x7e\x29\xe4\x34\xc5\x51\x26\x8a\x57\x0d\x0b\xf2\x3a\x5b\xfc\x6a\xb8\xb8\x32\x93\x6b\x00\x5e\x6e\x04\xfc\x97\x49\x24\x31\x27\x23\x7d\x31\xc3\x04\xf6\xfb\xbc\x46\xc9\x52\xb7\xa8\x1b\xdb\x69\x35\xe5\xb1\x55\xa3\x32\x00\xfb\x4e\xf0\x03\x18\xa6\x81\x34\xeb\x4d\x05\x12\x89\x12\x13\x16\xd1\x0a\x97\xa5\x5d\xd2\x74\x4a\x25\x4d\xa7\xd4\x43\x8e\xd3\x6e\x77\x4d\x6a\x8a\x0e\xb6\xe3\x21\x3c\x4d\x34\x8b\x91\xed\x45\xa6\xc8\xa2\x50\xb5\x8d\xc1\x0a\xe1\xe3\xda\xc2\x71\x70\xf1\x60\x3b\x8f\x92\xbe\x43\xee\xa0\x8a\x7d\x51\xdb\xfa\x69\x75\xa9\xa3\x69\x32\xdd\x52\x6e\x57\x74\xaf\x98\xd0\x7b\x3b\xda\xc0\x18\x60\x10\x81\xef\x35\x69\x50\xa4\xaf\x5a\xad\x5f\x76\x4e\x75\x59\xce\x05\xde\x6f\x90\xb8\x86\xd5\x9f\x49\xaf\x92\xde\x99\x58\x32\x7a\x35\x8d\xe1\x28\x2d\x93\xde\x94\x9f\x0a\xb7\xb5\x1d\x15\xf2\x76\xb1\x2c\xf0\x1d\xa8\x22\x6d\x53\x05\xd1\x89\xf2\x2f\x0a\xd6\xe7\x67\xe4\xa7\x0f\xac\xdb\xcc\x3a\x95\x00\xd0\xc6\xff\x00\x8d\x41\xc7\xf6\xa8\x16\x13\xd4\x79\xaf\x52\xd3\x02\xd9\xeb\x03\xaa\x5b\x20\x90\x82\xd3\x2b\xbe\xf6\x94\x46\xa4\xdd\x19\xb7\x0e\x7f\xd9\x25\x6f\x74\xb9\x78\xe4\xf7\x02\x1f\x1f\x3e\xbe\xee\x5b\x12\x27\x18\x8b\x8c\xc5\xeb\xaa\x76\x55\xf8\x0e\xab\x7a\x22\xa5\xbf\x43\xf5\x6f\x6c\x7e\x7f\x15\x28\x8a\xdf\xad\xc0\xc7\x26\xbb\xd6\x69\x67\x46\x79\x0c\xee\xb2\x78\xae\x27\xd0\x08\x75\x81\x9a\xc3\xbd\x5c\x0d\x14\x93\x68\x9b\xf2\x6f\xa7\x71\xe7\x3c\x51\xdf\xc4\x4c\x9c\xa8\xa6\x89\xdb\xa7\x2a\x47\xa0\x29\x84\xf0\xf6\x38\xaa\x00\xb8\xf9\x6b\xb5\x09\xfb\xd2\xc1\x76\x3e\xb2\x66\x99\x27\xac\x10\x95\xe9\x0b\x3c\x53\x59\x26\x6c\x12\x85\x03\x3b\xc1\x09\xad\x6e\x59\x28\xa1\x3e\x49\x29\x93\x90\xf7\x02\x65\xdc\xb8\x7d\x5b\xf3\x1b\x4e\xd3\x72\x25\x24\xcd\x96\x33\x4d\x3c\xae\x0a\xff\x5d\xb2\x18\x74\x13\x13\x4c\x44\x6d\x33\x2a\x7d\xee\x4f\x6b\xcb\xd0\x38\x5a\xb2\x4a\x31\xcd\x19\x5d\x38\x74\xe0\xb9\x5a\x00\xff\xc2\x04\xdf\x68\xc1\x63\xda\xbd\xa7\xfb\xc5\x09\x9e\x66\xdf\x16\x4f\x55\xd7\x8f\xee\xce\xdb\xba\x0d\xb2\x8b\xdc\x2b\x45\xa0\x82\xde\x17\xfe\x41\xe8\x83\xa2\x89\xdf\x72\x3e\xcd\xc7\x14\x77\x83\x1d\x0a\xf0\xec\xbf\x11\x4c\x44\xf2\xf3\xf3\x9c\x59\xfc\x53\x1a\xc4\x78\xdb\x97\x69\x7c\x20\x88\xfc\x44\x79\xb3\x5d\x9a\x14\xdd\xa7\x47\x8f\xb5\xea\xfa\x44\xa7\x2a\xb7\x66\xcf\x04\x31\xd8\x19\x85\x5c\xc0\xd0\x41\xa4\x7f\x5e\x07\x65\x7f\x3d\x56\x98\x63\xa1\xd0\xa0\xe8\xf3\x23\xf5\xfe\x8a\x28\xd6\xf8\x72\x6e\x69\x31\x9c\x93\x6e\x07\x1d\xb1\x99\xce\xbf\x5d\x07\x43\x2c\x47\x49\xcf\x66\x45\x5a\xd8\x24\x8e\x6c\xaf\x0a\x41\x7e\xfd\x25\x9e\x9e\x5c\xc0\xe2\x93\xf5\x86\x35\xd0\x64\x43\x44\x55\xa2\x78\xa0\x48\x2d\x6f\x05\x1e\x66\x10\xdb\x82\x3c\xab\x18\x79\x1b\x78\x98\xf6\x1e\x00\xab\x30\xd7\x76\xaf\x2b\x7a\xc3\x06\x15\xf2\x28\xfe\xf8\x2f\x3e\xdb\xf1\xea\x5e\xbb\x60\x06\x86\x2a\xea\x63\xeb\x9e\xb1\xf0\xb6\x96\xa6\xab\x32\x08\x27\xd0\xbb\xf6\xb7\xe8\x47\x44\x03\xb6\x7a\xf6\xc8\x76\x3f\xc1\x02\x04\x6e\xd6\x1d\x05\x2d\x3e\x47\xbd\x3c\x6c\x8e\xff\x92\x9a\x74\x2c\xfb\xc4\x4d\x3a\xa9\x7d\xd0\xc0\xc3\xac\xbf\x85\xf7\x88\x80\x69\x1b\xd7\x82\x37\xcc\xb5\x0c\xac\x86\xd7\x00\x50\xe0\x9f\xc4\x52\x8c\x76\xfe\x09\x2c\xc5\x98\xa0\xf7\xc6\x4a\xc3\xfb\xe9\x8e\x5f\xc1\x50\x6f\x47\x09\xeb\xa3\xc0\x6f\x39\x3f\xc7\xba\x8c\x60\xe4\x1d\xb4\x1f\xa5\x2a\xe3\xf5\x9f\xdf\x42\x5b\x53\x8a\xe7\xf4\x24\x59\x6d\x52\x09\xab\x7e\x40\xd9\x3d\xb2\x88\x4b\x3c\x9f\x30\x07\x2f\x2b\x77\xd6\x51\x66\x7b\xe9\x30\x4a\x4c\x52\xc4\x1c\xc9\xa0\x90\xf2\xd6\x58\x73\xf4\xd4\x90\xd8\x70\x8b\xd7\x52\x9a\xe7\x11\x4a\xaf\x78\x91\xdf\x50\xdd\x81\x6f\xd4\xda\x32\x2f\x1d\xfc\x6c\x7b\x29\x8a\x87\xb9\x4e\x31\xd1\xa1\xe4\xe3\xf1\x2f\xd5\x53\x4c\xc2\x87\x85\x65\x96\x45\x61\x19\x33\x85\x02\xe5\xcf\xf7\x95\xee\xdc\xfb\x2e\xd7\x1c\x5a\x93\xec\xf1\x0d\xac\x56\x47\xfb\x46\x2b\xce\x2a\x5b\xab\x61\x3f\x82\xee\x30\x62\x86\x4f\xb4\xe6\xd9\x85\x49\x8b\x65\x28\xd2\xda\x19\x7a\xe1\x52\x30\x52\x2a\x5c\xec\x5d\xcc\xff\x42\x4f\x10\x7b\x0e\xd7\x13\xc4\x61\xe8\x29\xad\x66\x47\x78\xad\xea\x0b\x71\x61\x0f\x94\x40\xe4\x05\x4d\xf6\x03\x64\x50\xdc\x0c\x9e\x9a\x50\x00\xe1\xba\x94\x93\x12\x3c\xb0\xe0\x0c\xb0\x14\xf7\x33\x36\x65\xce\xb1\x37\x36\x4f\xe8\x36\xf1\x71\xed\x85\xd1\xd3\x8f\x5c\xf9\x15\x3b\xfc\x49\xac\x95\x7c\x52\x4b\x82\xaa\x1c\xb0\x48\x33\x96\x39\xc1\xbe\x7a\x65\xac\x36\xd9\x2b\x2e\x5a\x2a\xd2\x51\x3f\x33\x3d\x04\xf0\x0c\xde\x55\x04\xca\x0d\x95\x38\xf4\x6c\xd7\x26\x84\x0c\x9e\xf1\x81\xc3\x5f\xe0\xc9\x03\x8a\x7a\x4e\x6b\x0a\x5e\x57\x3e\x21\x67\x68\xe2\xcb\x98\x7e\x5a\xa1\xa5\xc3\x94\x4c\x15\x17\x67\x45\x44\x66\x52\x51\x66\x67\x8e\x7f\x60\xa1\x1d\x25\x2b\x36\x2f\xfe\xcb\x7f\x3f\xb1\x30\xac\x96\x98\x51\x2b\x9d\x06\xd2\x22\x50\xf9\xb7\x0d\xcb\x2c\x2a\x6c\xae\x70\x65\x27\xc6\xca\x99\x11\xad\x43\x3c\xd2\x69\x14\xf2\xb0\xfd\x5c\x1d\xff\x82\xae\x05\x65\x36\xb7\x49\x01\x39\x8b\xe9\x6a\x35\x61\x8f\x15\x0a\x81\xb4\xdf\x0a\xf7\x07\x68\xbb\x93\x5e\xc1\x63\x2e\x7c\x5e\x48\xf7\xf9\x02\xc3\x79\xc5\xe8\x07\xde\xd2\x71\x26\xbe\xf2\x45\xa1\xc3\xd2\x97\x42\x75\xeb\x87\x54\x21\xa1\x02\xe2\x2f\x31\x7d\x54\x10\xee\xf4\x18\x10\x78\x4e\xaf\x2b\xff\x00\xd2\x77\x49\xc2\xb5\x47\x3d\x96\x9f\x95\x08\xd8\xf0\x02\xef\x0e\xed\xb2\xeb\x58\xf5\x04\xe5\xa6\x44\xbb\x4f\x8c\xab\x58\x58\x50\xa2\x1a\x40\x11\x78\x03\xd2\xcd\xb1\x56\xa6\x50\x92\x1f\xb7\xb5\x57\xf2\x52\x16\x85\x66\xda\x3b\xd3\x20\xef\x73\xe1\xe1\x01\x11\x8f\x66\x6c\x8f\x88\x4b\xee\x2c\x0d\x0b\xb7\x2b\x34\x79\xe1\x40\xdf\x12\x92\xfb\x2e\x25\x44\x72\xb1\xf6\x9e\xd7\xcc\xe2\x2c\x4d\x97\x59\xdc\xd7\x59\x48\x39\x70\xd5\x9d\xe0\x59\xc5\xda\x8e\x63\x1b\x52\x5d\xc5\x87\x05\x1f\x4c\x40\xec\x74\x8a\x97\x17\x51\x81\x6e\xcb\xde\xd6\x91\xd9\x6d\x86\x66\xb1\xc1\x2e\x3d\x2c\xe7\x46\x5f\x6d\x63\x18\xb9\x6f\x62\x89\xe2\x13\x0a\x98\xb7\x2f\xa8\x5e\xc4\xff\xe2\xfa\xc2\xa4\x8c\x25\x0c\x70\x31\xd1\x54\x80\xc7\x2b\x1a\xd8\x6e\x93\x02\xbc\x34\x8c\x12\xb6\xce\x95\x5a\x2a\x2d\x6f\x78\xd6\x1f\x07\x7e\x87\xfb\x39\x1a\x83\xfc\x0f\xde\x89\x81\x6c\xec\xba\x14\x2a\xb9\x92\xe3\x53\x04\x83\x40\x52\x75\x8f\x9e\x3a\xaa\x74\x9f\xae\xb9\x6e\x1d\x99\x9d\x6b\x7f\xbd\x8c\xc2\xe5\x29\xbf\x27\x9c\x54\xa1\x22\x43\xbc\x44\x41\xc2\x2f\x9c\x5d\x56\xfb\xa4\xc7\x88\x01\x7e\x4d\x75\x79\xee\x29\x7b\x89\x9f\xd7\x56\x44\xd4\xd2\x12\x60\xba\x30\xac\xc1\xed\xe5\x63\x57\xa6\x20\xf4\x3e\x05\x62\xce\xb4\xc8\x0b\x98\x6c\xa9\x1c\xbe\x17\xe5\x45\x16\x75\xcb\x42\xf0\x72\x2e\x29\x55\x19\xaa\x92\x83\x30\x51\xb6\x6a\x56\x2c\x8f\x34\x84\xc2\xbf\xaf\x92\xa0\xdf\x77\x12\xa5\x26\x8e\x89\x4d\x9b\x44\xcb\xbc\x4b\x8b\xc2\xbc\xa7\x8a\x5c\x51\x5a\xac\x45\x16\x8d\xf0\x54\xb0\x5d\xc2\x87\x51\xdb\x07\xb0\xdb\x93\x6a\x68\x8f\x4c\x66\xe2\xd8\x22\x6e\x40\x96\x31\xd3\xf1\xd9\xc7\xcc\xba\x0f\x8a\xfb\x59\xba\x3a\x43\x13\x1d\x0d\x8b\x0d\x8a\xd9\xc5\xa0\x9d\xae\x0f\x81\xd6\x06\xc2\x36\x3e\x19\x7b\xbf\x87\x0f\xdd\xd3\xed\xa6\xa9\x90\x84\x91\x49\xdc\xc4\xe3\xe5\x13\x85\x1d\x22\xf0\x65\xcb\x03\x07\xb7\x34\x88\x76\x2b\x78\x4e\xbb\xe0\x93\xf2\x49\x0c\x06\x9d\x8b\x4a\xe6\x0e\xbb\xa8\xa4\x49\x41\xc1\x8c\x46\xd6\x38\x3b\x64\xd4\x8d\xa6\x10\x41\xf3\x49\xcd\xa9\xeb\xe0\xe2\xc1\x76\x62\x6d\x6f\x4f\x95\x1d\x8b\x07\x75\xf5\x9b\x82\xe7\x51\x2c\x26\x56\x1c\x76\xd7\xee\x3d\x68\x49\xf1\xe5\x6b\xce\x4d\x40\x59\xa0\x47\x71\xcf\xae\xa2\xe7\x8c\xfa\xd1\x75\xe5\x03\xfb\x49\xe0\xe5\x13\x4e\x8f\x1f\x57\xf9\x90\xf9\x05\x45\x06\x79\x2d\xf0\xaa\x82\x53\x94\xd8\x61\xc6\x7f\x00\x78\x1b\xa0\x66\xbb\xd7\x15\x27\xea\x01\x45\xa8\xce\x08\xb5\x5a\x0a\x00\x4d\xbf\x1f\xec\xfe\x2c\xc7\x84\xe2\x53\x2c\xd1\x75\xcb\x89\x24\x3f\x86\xbb\x71\x38\xb0\xb9\xc3\xce\x52\x9f\x9e\x06\xe6\xcd\xd4\x3a\x6d\x27\xc2\xde\xa6\xc0\x19\x99\xf4\x39\xac\x8a\x20\xef\xbd\xa9\x1b\xa8\xc7\x95\x7c\xef\xbe\xf5\x6a\xad\x40\x3e\x70\x1f\x43\x4e\x9a\x67\x44\x58\x97\x7c\x95\xd6\x2b\x5c\xfd\x4c\xa7\x7a\x5e\x12\x2c\xfb\x80\xe6\x91\x8e\xd2\xab\xb6\x6c\x91\x2b\x20\x0e\xc5\xd3\xbe\xd0\x14\x88\x45\x59\x9a\x30\x63\x09\x0f\xe6\x5b\x2a\x70\xfe\x56\x13\x1b\x3f\x59\x4b\xec\x51\xd5\xe3\xdd\xd2\x65\xb2\xad\x5a\xd7\xe8\x85\xf6\xaa\xa1\xca\x7d\xf5\x13\xbc\x49\x63\x58\xc9\x8e\xed\xab\x82\x66\xc5\x66\xa6\x5f\x8d\x60\xef\xaa\x7d\x2e\xd0\x16\xcc\x0d\xcc\xd1\x2a\x90\x2f\x45\xc5\x6c\x9b\xba\xdc\xdb\x67\xbd\x82\xa2\x49\x96\x67\x14\xb2\x09\xa2\xb7\xac\xb9\x4b\x05\x0c\x3c\xf6\x07\x4a\x1f\x0c\x44\x38\x2e\x78\x2a\xf1\x8a\x55\x53\x84\x03\x29\x5a\x02\x3e\xfc\xa3\xc0\xe3\x8a\x7f\xa4\xfe\x34\x1a\x8e\xb2\x68\x18\x81\xa9\x82\x08\x02\xfc\x79\x3e\x56\x08\x0b\x6b\x72\xfa\xce\xfd\x73\x5c\x50\x63\x05\x4c\x3e\x19\x3f\xa7\x18\x49\xa5\xcd\x96\x33\x53\x16\xb4\x4d\x01\xed\xb3\x4b\xf1\xd8\x6e\x8f\x35\x74\x79\x02\xc2\xd5\xb3\xfb\xaa\x49\x21\x4e\x63\x34\x29\x44\x66\x8d\xc6\x18\x8a\x1a\x20\x46\x63\xbc\x4f\xad\x7b\x03\xb3\xfb\x81\x32\xed\xb9\xc2\xc5\x38\xa4\x0c\xbb\xb8\x32\xca\xd6\xdc\xae\x59\x9a\x99\xcc\x42\x54\xf3\xe0\x04\xd1\x19\x4b\xd8\xa3\x94\x19\x61\x2e\xdc\x18\x2b\x04\xb5\x96\xfd\x2a\x06\x59\xea\xc0\xdb\xf8\xb5\xb3\x2a\x59\xf1\x6f\x79\x29\x36\x05\x25\x67\x58\x4d\x50\x13\xc3\x14\xfa\xdb\x1d\x1f\xcd\xdc\xc0\x6c\xc4\xd2\x8c\x87\x85\x45\x7f\x17\xca\x22\xe2\x24\xd6\x54\x52\xff\xa5\xaf\x7e\xfe\xd7\x16\xa7\xaa\xb7\x84\xc7\x26\xc2\x09\x48\xee\xb8\xb8\x21\x82\xc3\xcf\x2a\x59\x5b\x02\x6b\xa7\x19\xa8\x33\xb8\xc7\x2b\x63\xdd\xca\x6e\x39\x81\xc8\x2b\xa8\x38\x48\xbf\x7b\x67\x47\xeb\x97\xdb\xc9\x5a\x2e\xaa\x4a\xc8\xd2\x19\xde\xc8\x27\x13\xf5\x31\x6b\x46\xf4\xdc\x44\xb6\xb0\xe5\x2c\x47\xce\xaa\x74\xa5\x6f\x8b\x6a\xbb\xdf\xd7\x72\x54\xc2\xcb\x5a\x79\x86\x35\xf4\x9d\xf9\xd1\xa2\x38\x9d\xbf\x43\x9b\xa1\xab\x2e\xe8\x8d\xac\x1a\x67\x6c\x8c\x4c\x3f\x2a\x59\x6b\x03\xa0\x3b\xb3\xc3\x74\x45\x22\x3e\x81\x68\xd1\xcf\x8b\x84\xd0\x13\x6a\x10\x2f\x0d\xf9\xde\x45\x1f\x81\x7e\x96\x4f\xd4\x46\x1b\x85\x66\x90\xec\xad\x16\x6e\x5e\xab\x3b\xde\x61\x97\xf5\xcc\x5c\x22\x33\x3f\x3f\xd1\x67\x92\xa4\xc6\xfb\xf3\x1c\x53\x37\xfa\x40\x9b\x08\x44\xf9\xa8\x2c\x2c\xc2\x08\xa4\xa0\x40\xca\x73\xf1\x08\x19\x86\xc3\xfe\xcf\x1d\xe6\xd5\x9a\xdd\xf2\x25\x19\x6a\x00\x27\x95\x49\x1c\x2d\x8b\xc2\x3a\xda\x44\x78\xf2\x7c\xac\xde\xde\x20\x5d\x5a\x1a\x9a\x04\xca\xb5\x78\x31\xcc\x40\x70\xbe\x04\x9e\xf4\xa6\x2c\x54\xdf\xd9\xa9\xab\x5b\xa5\xd7\x07\x16\x9e\x50\xde\x66\xbb\x88\xb7\xce\xf3\x89\xae\x1f\x8d\x07\x96\x48\xd0\x8a\x62\x98\x68\x4c\x6d\xc3\x10\xfb\x71\xe0\x53\x47\x08\xe9\x89\x73\x1b\x3d\x16\x7c\x15\xcb\xb8\x60\x61\x3e\xcb\xa5\x24\xa9\xb2\x7b\xf9\x60\x06\x21\x89\x19\x61\x3d\xf4\x39\x48\xdc\x86\x28\xe9\x0b\xf6\x03\xd3\xf0\x81\x06\xcb\x32\x7c\x1a\x61\xe3\x53\xeb\x7a\xa2\x84\x69\x57\x21\xd5\x26\xee\xef\x58\x8d\xbc\xb8\x7f\x3f\x29\x06\xdb\xa4\x50\xca\x08\x6c\xee\x83\xd5\xf1\x13\xa5\x1b\x78\x5b\x51\x7e\xa3\x04\xba\xc0\x1e\xff\xf1\x46\xe0\x41\x37\x6f\x4c\xb8\x65\x44\x66\xd8\xf2\x61\xd8\x9f\x06\x3e\xfb\xf8\xd3\x9d\x6f\xee\xc8\xec\x42\xfb\xc8\xec\x2f\xe0\xc6\x1d\x62\x78\x51\x62\xa1\xdd\x1d\x8a\x53\x30\x1c\xde\xa7\x1f\x64\x36\x6a\x47\x3d\x7c\xee\x49\xe2\x27\xce\x05\x2a\x02\xf9\x16\x18\x09\xa2\xab\x4f\xeb\x93\x08\xee\xd3\xfb\xc6\x12\xbe\xa1\x80\xd3\xa7\xab\x28\x8b\xd5\x5c\xc6\xbe\x55\xc7\xda\xf7\x78\x62\x90\x18\x44\x2c\xf3\x4d\x4d\x96\xdc\xbb\x5e\x0d\x35\x2c\x87\x2c\x50\x80\xbf\xba\x81\x12\x98\x20\xa4\x68\x16\x63\x12\xbd\x03\xd2\x03\x7e\xfc\x26\xd5\x33\x9d\x41\xd9\xfe\x39\xde\xdf\xdf\xa2\x24\x9f\x15\x3f\x14\xe0\x3c\x4c\xf3\x21\x29\x73\x3e\xa2\x54\x06\xdf\xe4\xb5\x5d\xfa\x1c\xf4\x76\xb1\x34\x5c\x0f\x54\xcd\xea\x06\x4d\x2f\x85\x16\x13\x4f\x92\xbb\xca\xa7\x7b\x23\x50\xde\x47\x0f\x70\xaf\x08\xe8\x4e\x35\x58\x99\xb6\xf3\xb2\x9b\x66\xbd\x28\x31\x62\x4e\x29\x44\x7d\xfa\x16\x44\x1a\x6f\x06\xca\xb6\xec\x4a\x33\x16\x2a\xcd\x32\x31\x08\x43\x8c\x7b\x49\x97\x93\x2e\x4d\x28\x60\x9b\xb0\x88\x42\x01\xdd\xa3\xd7\x70\x35\xf0\x74\x82\x63\xda\x64\xed\x64\x0d\x10\x51\x25\xa2\xa8\x44\x45\x4e\x66\x04\x17\x3d\xdd\x51\x52\x03\xd3\xb5\x56\xf7\x91\xd9\xb6\x4d\xfa\x71\x94\x0f\x5a\x6a\x72\x42\xce\x8e\x8f\x9d\x4d\x80\x49\x4c\xbc\x56\x80\x51\x76\x64\xd6\xb1\xf6\x7c\x59\x5a\xeb\x14\xf2\x1d\xd9\xbd\x8a\xfe\x73\x42\x53\x63\xce\x28\xdb\xd9\xe3\x4a\x6d\xe2\x0c\x62\x77\xd6\x3c\xa7\x31\x8d\x65\xe7\x9a\x42\x2c\x7d\x54\x5b\xb4\x8f\xcc\x7e\xad\xdd\xcb\x4c\xbf\x8f\xe4\x6b\xce\x95\xc0\x14\xfb\xfb\xbc\x2b\x6f\xe7\xa1\xc9\x42\x02\xe8\x8b\x00\xf4\x35\xd5\x1d\xbe\x83\xd8\x0c\x3d\x8f\x63\x63\xd7\x7a\x7f\x0c\x91\xab\x18\x22\xf8\xf8\x31\xb6\x79\x1c\x59\x40\x26\x44\xc5\xa9\xe5\x84\xe5\x99\x13\xc8\x60\x01\xa7\x82\x9d\x17\xd6\xc4\xae\xf4\x80\x4e\xd7\x3d\xb5\x41\xe0\xc9\x7a\xc5\x0a\x59\xc4\x06\x26\xe9\x51\xf1\xc7\x99\xb4\xab\x5a\xe9\xf1\xf1\x04\x4c\x98\x9e\x37\x72\xfb\xbf\x19\xfb\x20\xfe\x0a\x3d\x6f\x45\xc5\xf3\x4c\xc4\x9d\xd3\x81\xe4\xd6\x92\xa5\xa8\x07\x93\x61\x8c\x12\x47\x7e\x75\xee\xf7\x75\x5b\xe4\x23\xb3\xd5\x3c\x7a\xc5\x86\x05\xd6\x5b\x7d\x53\x82\xdb\x7d\xbe\xce\x31\x37\x1a\xc9\x74\x49\x21\x99\x9a\x94\x18\x0f\xb5\x49\xfe\x7c\x4a\xc1\x3c\x70\x51\xd8\x33\x7f\xa4\x68\xc7\x1b\x9e\x46\x5d\x14\x26\x1c\x4c\xf9\x96\xed\xe9\x1d\x96\xf7\xce\x3f\xef\x8a\x56\x1f\x0a\x07\x69\x1a\xef\xad\xae\x07\x9d\x5b\xf6\xd7\x11\x5f\x2f\x7a\x88\x6c\xdf\x12\x78\x53\x8f\xf3\x8a\xa8\xf0\x07\x28\xbc\x9d\x42\x7d\x93\xbf\xa5\x49\x4a\x96\x8d\xee\x94\x83\x10\x2f\x1c\x7c\xa2\xb8\xd6\x65\x12\xc6\xd6\x64\xc8\xd6\x30\xc9\x2f\x13\xc4\x9f\x8f\x5d\x61\x6f\x35\xcd\x96\x7b\x0c\xb1\x72\x2a\xf4\xd5\xb8\x11\x9c\x6c\x7d\x42\xcd\xb5\x4d\x18\x96\xb9\x54\x33\x50\x1c\x43\x07\x99\x8f\x1b\x96\xbd\x43\xa4\x12\x20\x9f\x91\x8c\x54\x15\xc4\x27\x25\xbf\x97\xba\x51\xcb\xdb\xfe\x6d\xf1\xa2\x2f\x12\x8e\x0d\x91\x19\xa8\x35\x8e\xc0\x8e\xfe\xdb\x06\x16\x7e\x3e\x51\xd9\x4b\x2f\x33\x43\x53\x44\xec\x85\xeb\xea\xcb\x1e\x2e\xbe\xd9\xa4\x6d\xbe\x14\xc5\xf1\x1a\x4a\x26\x28\x41\x80\xc0\xc5\x99\x12\xad\x5b\xc2\x43\xae\x45\x02\x07\xdb\xf3\xf3\x4f\xd1\x9a\xe7\x44\x2a\x5c\x28\x72\x99\x2a\x19\x78\x76\xbf\x8b\x45\x01\x7d\xc2\xf3\x14\xb0\xb3\xd4\x23\xb4\x8a\x95\xcb\xc9\x41\x37\x03\xd4\x74\xfe\x24\x98\x10\x37\x55\x62\x77\x37\xc6\xbe\xc8\x7d\x6f\xac\x44\xa0\x37\x14\xe4\x0c\x15\x3c\xe7\xe0\xe6\x0b\xf6\xef\xa8\x5a\xc0\x52\x66\x92\xe5\x38\x4a\x54\x69\xe2\xbc\xd6\x31\x3c\x5f\x9b\x92\x8b\xb3\xed\xcc\x8e\x4c\xc4\x20\x41\x84\xf5\x8c\x69\xe5\x93\x26\xbd\xea\x81\x5d\x2a\xd6\x94\xa3\xc4\x19\xe5\x28\x71\xa6\x86\xed\x59\x9c\x25\x1d\xe1\x29\x3f\xcb\x50\xd2\x16\xa7\x85\x40\x03\xd0\x1e\xaa\xcf\x9e\xe7\xb6\xc8\x89\x52\x24\x16\x75\x0a\x28\xb0\xa9\x0a\xf4\xf6\x68\x91\xd9\xa1\x05\x03\xe3\x6b\x9c\x6c\x56\x31\xdd\x97\x25\xf3\xdc\xbd\xee\x8c\x9d\xf2\x41\x99\xe5\x62\xfb\x2f\xc6\x33\xd5\xf5\xa0\xf5\x74\x82\xde\x8d\xb2\xd7\x11\x0e\xf4\x76\xf0\x98\xe2\xe2\xfc\x22\xbd\x5b\x2c\x42\xe8\x5f\x20\x82\x3a\x87\x89\x04\x54\xc5\x2d\x6a\x28\x6f\xbf\x4b\xab\x0d\xa2\x19\xa9\xa8\x09\x2b\xd4\x57\xcf\x4f\x62\x20\xe1\xcf\xae\x62\x5f\x10\x9d\x9e\xea\x19\x38\x4b\xac\xc5\x83\x5e\x3f\xc3\x3b\x96\x4c\x18\x07\xed\x5b\xd7\xbe\x03\xc1\xc4\x32\xd5\xfa\xf5\x97\x78\x27\xba\xa8\x70\x40\x1c\xb1\x49\x3f\xa1\x0a\x03\xb9\x83\x87\x9d\xd6\xd5\xe6\xbe\xf2\x45\x8e\x21\x2f\xd3\x58\xc5\x55\x5d\x27\xd4\x13\xe3\x62\x28\x9e\x44\x1b\x9a\xc9\xb5\xc2\xab\xf4\xd1\x94\x66\xa4\xf8\x06\xfa\xa5\xb1\x82\x13\xab\xd6\xe9\x52\xd4\x2f\x33\x9b\x53\xfa\x8d\x3e\xd8\x31\xcd\xd1\xbc\x8a\x59\x87\xa9\x72\x3e\xf0\xb5\x19\x28\x8f\xf1\x7f\xd7\x79\xf0\x99\xb1\xd7\x26\xdd\x52\x55\xcd\x2b\x4d\xce\xff\xfd\xcc\xf6\x53\x26\xdc\x28\xc5\xdd\x83\x4e\x71\xf7\x71\x37\x2e\x56\xd3\xe4\x11\xd5\x6a\xbe\x10\x28\x08\x03\x73\x20\x01\x90\x3e\xc6\x79\x1c\x62\xf3\x2b\x8a\xca\x70\x12\x8f\x0c\xeb\x2b\xb7\xb7\x19\x3a\x1f\x28\x04\x1a\x8f\x16\x01\xd5\x7b\xda\x5e\x34\x1c\x12\x02\xd0\xc6\x6b\x54\xeb\x71\x08\xc0\xc5\x83\x13\x46\x33\x8e\xa2\xef\x6a\x61\xd0\xbc\xc7\xd0\x62\xab\x1f\x7c\xfd\x15\xed\x50\x22\x12\x45\x2d\xd5\xa7\x3f\xa5\x18\x59\xa7\x6a\x4a\x07\xf0\x5e\xce\xcc\x8a\x89\xd8\xdd\x4d\xdc\x64\xe9\x2b\xc4\x4e\xd6\xbf\xee\x28\xc9\x6d\x58\xb0\x96\xa9\xab\x0d\xf8\x6a\xa2\x22\x2c\x9e\x53\x85\xbf\x91\xc9\xe2\x88\x18\x69\x53\xf4\xd4\xf0\xaa\x67\xa8\xa3\xbb\x7d\x5f\x49\x6f\x6d\xd5\x94\xf8\x7e\xb5\xdd\x75\x2d\x01\x27\x9d\x52\x7d\x87\x48\xa7\xd4\xf5\xeb\x0f\xb6\x23\xae\xc8\xc8\x0d\x28\x07\xc4\x4d\x25\xea\x14\x9a\x61\x37\x8b\xc8\x43\xba\x1a\xa5\xdc\xaa\xa1\x67\x2d\x6d\x9b\x06\x0d\x8a\x41\xd4\xeb\x59\x2c\xeb\xd8\x94\x6f\x28\xdc\xf4\x0d\xd7\x93\x4b\xec\x6a\x3e\x32\x4a\x2e\x46\x80\x66\x5a\x5d\xa5\x86\xf8\xdc\xbf\x9f\x0a\x33\x69\x6e\x20\xf5\x2e\x4b\xba\xf2\x73\x3b\xd3\x08\xcd\xce\x47\x36\x8c\x96\x60\xdb\xdb\xf2\x65\xca\x13\x0a\x0b\x72\x42\xbd\x11\xb2\x42\xeb\x97\x52\x9b\x74\x83\xdd\x01\xe8\xaf\xd4\xea\x14\xfb\xf7\xb7\x4d\xb7\x57\x86\x0e\x15\x27\x22\x11\xba\xab\xd4\x00\x62\xcf\xad\x99\x9a\xe0\xca\x54\x9f\x05\xaa\x68\xaa\xe3\xe9\x1d\x77\x6a\xc1\xc4\xaf\xb4\x57\xa2\xdc\xe1\x80\x45\x59\x8b\x26\x17\x9f\x28\x65\xce\x34\x2c\x5e\xa4\x1a\x34\x82\xf4\xe3\x78\xe7\x7c\x32\x21\x84\x69\x48\x00\xde\xe5\x60\x98\x73\x7c\x3c\x51\x80\x0c\xcb\x6e\xcb\x03\xee\x4f\x2b\xf9\xd8\xd3\x0a\x73\xfb\xf9\x85\x03\x34\x16\x26\x96\x12\x59\x64\x9e\x57\xb1\xe6\x52\x9a\xc1\xe3\x10\x39\x0b\xd6\x41\x28\xe1\x0b\x61\xdb\x3f\x8d\x33\x13\xe5\x94\x61\x9a\x29\xbf\x6b\x98\x80\x39\xef\x6b\xaf\x90\x73\x49\x61\x2b\x0a\xb3\x6c\xc9\x02\x07\xf1\x3d\xc6\x1b\x9a\xb3\xc8\x56\x3e\xa6\xf7\xc6\xae\x04\x35\x50\x07\xad\x0c\xdd\x34\x43\xfd\x1a\x57\x8c\x0d\x0c\xba\x73\x5a\x19\x0a\xc7\xaf\x8d\xbd\x67\x61\x62\x8b\x27\x68\x92\xa2\x12\x0c\xb4\x3f\x36\xf1\xcb\xd8\xb4\x58\x8b\x92\x76\x01\x57\x7e\x7b\x49\x71\x86\x35\xdf\x90\x66\x24\xbe\xea\x8a\x92\xed\x7c\x54\x41\x3e\xaf\xd1\xe6\x89\x1a\xc5\x14\xca\x2e\xd8\x8e\xde\x1d\x6b\x0c\x45\xa0\x76\x9a\xdd\xb5\x7c\x7e\x81\x0c\xc7\xaa\x39\x3b\x61\x99\x10\xe8\xd6\xb3\x7e\x2d\x3d\x7b\xf4\x71\xba\x68\x2c\x2d\x67\xb4\x0f\xf9\x25\xed\x58\xb3\x9b\x5b\x0c\x6e\x5b\x5b\x10\x5d\x88\x6f\xe1\xf2\x9c\x75\xa5\x73\x64\x3d\x4f\x8f\x46\x90\xcb\xca\x7b\xfd\x4a\xa0\x40\x43\x6f\x29\x03\xb5\x33\xf4\x42\x31\x12\xde\x77\x89\xf2\x2b\x69\x99\x7b\xa2\x07\x00\x23\xff\x40\xe9\xfa\xfe\x83\x87\xda\x3c\xe7\xe9\xd0\x16\xd1\xd0\xe6\xd3\xaa\xe0\x0b\x29\x76\x3c\xda\x27\x69\xf6\x3a\xc5\xf8\xea\x76\x19\x36\xea\x7e\x5d\x4c\x98\xe0\x27\x81\xae\xc7\x54\x47\x65\x8c\xc7\x30\x1c\xa4\x95\x50\xdd\xda\xf6\x65\x95\xaf\x77\x6d\x96\x99\x56\x75\x63\xb2\xdb\x68\x49\x1a\xd7\xc4\x8e\xb2\x65\xd9\x24\x04\x7c\xed\x6f\xb1\xee\xbd\x7a\x60\xa1\x1d\x47\xfd\x41\x31\xe3\x7b\x0a\x2d\x92\x3c\x15\x76\x69\xcb\xd9\xa4\x7f\x4c\x63\xd7\x09\x39\x55\x03\x4b\xfa\x3c\x9f\x52\x30\x94\xe1\xa8\x2c\x6c\x06\x96\xb9\xdb\x18\xae\xa9\x8d\xe1\x5a\x13\x69\xb8\x17\xe5\x5f\x2f\x23\x5b\x48\x4f\x8e\x05\xff\x94\x10\xe4\x6b\x4a\x34\xc9\x64\x7d\x9b\x14\x51\x12\x99\x84\x56\x78\xc6\xf7\xd2\xec\x10\xac\xaf\x4f\x6e\x4d\x18\x5a\x61\x9d\x0a\x6d\xc0\x8b\xe2\x34\xb2\x74\xfa\x91\xc1\x0e\x7d\x70\x22\xd1\x41\xfd\x09\xd6\xc1\xc8\xbf\x76\xad\x3f\xa3\xb5\x31\x86\x69\xd2\xcb\x5b\x14\x1c\x61\x64\x30\x1f\x8a\x4f\x94\x90\x46\x5e\x66\x2b\x76\x2d\x27\x15\x4e\x67\xe7\xb7\x13\xb2\x89\xdd\xea\xcd\xc0\x63\x07\xde\x54\x64\xfb\x55\x1b\xc7\x4f\x4f\xd8\x75\x55\xf1\x13\x23\xe3\x11\xa1\xb1\x50\x01\xcd\x07\x2e\x66\x60\x06\x39\x8f\xe6\xb9\xc3\x5c\x17\xdb\x50\x04\x40\x36\x7e\x11\x47\x6c\x55\x4f\xbd\xce\x31\x21\x7e\xe5\x72\xa0\xb3\x5b\x2c\x5b\xfc\x6d\x6a\x76\xbc\x8b\x25\x4c\x64\x95\x3c\xdf\xf1\x04\xcd\x72\x94\xe8\xa6\xd6\xfd\xce\xe4\xfd\x14\xe6\x9c\x06\x2a\x7d\x37\x0a\x61\x6c\xb0\xea\x04\xa6\x0e\x48\x85\xec\xbc\x0b\x39\x56\xec\x80\x48\xc9\x9c\x6d\x6d\x53\x1e\xb0\x7d\x39\x10\x69\xb0\x81\x19\x76\xcb\xac\x5f\x2d\x6f\xd5\x38\x46\x79\xf7\x9f\x2b\x82\xdd\x3f\x9f\xa0\x19\x85\x19\x7c\xb0\x94\x54\x96\x57\x6f\x38\x3f\xfe\x4c\xe4\x42\x09\x9b\x85\x69\x35\x32\xbd\xe4\x00\xc2\x53\x56\xb9\xe3\x13\xad\x75\x91\xae\xa5\x85\xd9\x47\xff\xca\xf8\xaf\x40\x23\x71\xb1\x15\x3a\x77\x5e\x2f\xc4\x8b\x87\x00\x22\xf4\x26\x3d\x6d\xe4\x42\x5b\xca\xff\x7a\x82\x2d\xed\xcd\xc2\xc2\x18\xa6\xa8\x2d\xdd\xee\xe5\x7c\x41\x6a\x72\x0d\x95\xe8\x43\xed\x3c\x5a\x16\x85\x02\x41\x60\x2a\x41\xfb\x0d\x47\xc4\x0b\xd3\xd2\x59\xc6\x8a\x48\x98\x56\x0c\xab\x55\x64\xf6\xcf\xb5\xf3\x70\x60\x7b\x65\x6c\x5b\xfa\x1e\xf5\xbd\x7b\x98\x6d\x66\x8b\x28\xa3\x5b\x98\x56\xd1\x30\xc2\x29\xa1\x48\xa8\xc8\xf8\x5c\xa0\xcc\x77\x2e\xd6\x7c\x66\x5f\x7e\xb9\x1d\x66\x06\x01\x0e\x42\x0e\x70\x4f\xf8\x58\x45\x12\x43\x93\x2d\x5b\xf4\x58\x1d\x6a\xf2\x4d\x24\x21\x68\xe8\xb1\x98\x06\x6a\x42\x77\x02\x2f\x57\x7f\x5d\x15\x9d\xef\xe3\xcd\xe1\xe3\x97\x68\x0a\x48\xec\xe1\xab\xd4\xcd\xf8\x88\xbc\x88\x86\xa6\xb0\xbd\x69\xcf\x41\x63\xc4\xb2\x13\x2f\x74\x31\xc1\x35\xfc\x0c\xca\xc5\xc7\x82\xcf\x68\x16\xbe\x89\x43\xd6\xc5\xe5\x2e\x16\xab\x3c\x29\x2b\xeb\x4b\x6e\x2e\xe5\x69\x1c\xf5\x4c\x16\x15\x6b\x0a\xab\x70\x5e\x99\xb3\xcd\xac\xab\xa6\xf1\x63\x1d\x6f\x07\x9c\x2f\xdb\xa2\x6b\xe2\x98\x68\xd6\xd8\xa6\x77\x51\x53\x48\x44\x63\xe9\x69\x89\x38\x5c\xb5\xc8\x39\xc4\x9d\xeb\x4e\x63\xe1\xa5\xdf\xf9\xf3\x4f\x61\xbf\xc4\x70\xfe\x81\xdb\xf2\xf2\x81\xe9\x21\xf3\xc5\xb6\xca\x7d\x3f\x3e\xa9\x11\x21\xab\x1c\x61\x18\xc5\x51\x61\x32\xc6\x34\x08\xdc\xbb\xe5\x04\xee\xee\x2a\xb2\xdb\x31\x2d\x76\xf7\x97\x63\x2d\x0f\x9d\x90\x14\x92\x2b\x14\xb3\x21\xa7\x20\x17\x1a\x60\x7e\xfd\x38\xcd\xd6\xa6\x74\x63\xe5\xbc\x9a\xd3\x0c\xcd\x10\xbe\x8c\xf2\x5a\x49\xe3\x74\xd8\x8d\x4c\xcb\xb3\x5c\x20\xb6\xc5\xc7\x0d\xb3\xf5\x50\xdb\x1e\x2d\x6c\xc2\x15\x34\xa0\x64\x7e\x42\x77\xc5\xc7\x5a\x5e\x2b\x2d\x48\xc0\xc1\xa1\xed\xc0\x7f\xe5\xe3\xda\x7d\x50\x44\x4c\x66\x07\xae\x9e\xf7\xd1\xd8\xe3\x1b\xe1\x04\x20\xf8\x89\x9d\x4f\xff\xe0\x97\x0f\x41\xc4\x3f\xe2\xbc\x0e\x15\xca\x8f\x68\xe8\xf1\xb1\x52\xc0\xc4\xa5\x45\x55\x2e\x37\xa3\x80\xaa\x62\x25\x48\x21\x93\xc8\xd9\x7a\x80\xfe\x2d\xf0\x2d\x64\xcb\x7c\x46\x29\x0d\x66\x36\xe9\x17\x83\x3d\xb4\x3b\xe2\x5b\x78\xa2\x38\x71\x37\x67\x46\x71\x0a\xbf\x85\x88\x07\x09\x03\x9e\x37\x80\x3a\x18\x5f\xeb\xca\xca\xa6\xb0\xb1\x5d\x89\x72\xee\xf6\x21\x7a\x65\x9a\x96\xe4\x62\x3e\x5f\xb9\x1c\xec\x4c\x5e\x25\xdc\x1c\x94\x49\x2f\x73\xe2\x24\xa2\x5c\xa6\x2a\x67\x75\x76\xf9\xdc\xe1\x76\x99\x50\xd2\xeb\x72\x52\xe7\x81\xea\x83\xef\xad\x89\xa4\x6e\x79\x39\x52\xe5\x22\xae\xe2\xf0\x49\xad\x22\xff\x62\xbb\x5b\xe6\x51\x22\xf2\xec\x8d\x8a\x5c\x3b\x6b\x2a\x2e\x7c\x0e\xd3\x02\xa3\xcb\xa5\x34\xd5\xc7\xf8\xa4\x51\x9c\x20\xb7\x71\x8c\xf0\x8b\x2b\xb3\x63\x2f\x15\x7d\x82\x56\x0a\x69\xd3\x3c\xad\x31\xac\xa3\x34\x03\xa0\x0a\x91\xec\x87\x78\x81\xc8\x68\xaf\xb1\x81\xaf\x77\x8f\x2d\x8b\x6a\xcf\x99\xf6\xb5\x46\x68\x74\xa2\x18\xb5\x4e\xc3\xc9\xed\x26\xbe\x5a\x7d\x79\xfc\xbc\xe3\x91\x64\xe1\xc0\x24\xbd\x28\x77\x89\xa1\x5e\xed\xd1\x30\x02\xbb\x44\x10\x55\x35\x71\x8c\x83\x55\xc4\xbc\xc3\x49\x97\x5e\x84\xe0\xd3\x1b\x76\xab\x5e\x99\x43\x6d\x05\xf5\x7c\x20\x6a\xf9\xb8\x49\x62\x9d\xd9\x78\x00\x0e\xa3\x1a\xf9\x43\xad\x9f\xf1\xc3\xf1\xa7\x04\xe8\x65\xf3\x51\x9a\xe4\x51\x37\x8e\xe2\x62\x0d\xe3\x4f\xe8\x41\x2d\xe7\x43\x7b\x69\x82\xf1\x16\x47\xe1\xe3\x3e\xeb\x6f\x11\xd2\x0c\xd9\xc6\xf6\x58\x2b\x97\x4d\x34\xe2\x1f\xa7\xa7\x82\x19\xf2\x26\x26\xab\xf3\x25\xa8\x1e\x05\xb7\x6a\x03\x15\x92\x9c\x41\xe0\x8a\x14\x1b\x28\x6e\xce\x09\xc7\xca\xc6\xf5\x8c\x26\xd3\x9e\xad\x3d\xbd\x17\xa8\xd3\xc7\xad\x44\xc9\x97\xe9\x79\xf3\x49\xad\xcc\xb5\x7f\x8e\x60\xb5\x92\x53\xa1\x99\xfb\x61\xa0\xd8\x6c\x1f\xd6\x26\x0b\x91\x95\x6d\xdc\x4b\x87\x53\xda\x0a\x62\xec\x9d\x4a\x6e\xe3\x0b\x84\x0c\xf8\x9c\x82\x01\x0d\x6d\xba\x5a\xed\x2b\x53\x5e\x2b\x8c\x59\x8c\xda\x4b\x00\x4f\xeb\x3b\x35\x53\xed\x83\xed\x23\xb3\x73\x8f\xfb\x52\xff\xc5\xc0\xc7\x17\xe7\xb5\xcc\xff\x96\x8a\x2b\xef\xe3\x0d\x28\x6d\xf4\x05\x4f\xb6\x75\xd8\xd6\xef\xaa\x2c\xe2\x2e\xe5\x2a\x22\x1c\xa7\xe0\x12\xdf\x07\xb6\x83\xbf\x0a\xaf\x0c\x81\xca\x27\x0a\xe0\xdd\xb3\x61\x6c\x32\x5e\x27\xc5\xa6\xbb\xe5\x1c\xaa\x98\xac\x2c\x93\xb8\xbe\x81\x3b\x84\x38\xd7\x5f\x11\xb2\x5c\x0d\x94\x87\xc0\x6b\x78\xad\x6c\xbc\x51\xdf\x86\xaa\x57\x54\xf6\x7a\x36\x91\x86\x8c\xd6\xb0\x14\xc8\xad\xcf\xb5\xc2\xa5\x22\xa4\xe4\x1b\x65\xaf\xdf\x0b\xbc\xd4\xe5\xef\x39\x6c\xbc\x3d\x3a\xb2\x59\xa4\xe4\xc6\xb8\x18\x35\x51\xa5\xaa\xbb\x52\x2c\x56\xdb\x52\x94\xf4\x65\x0f\x86\x6c\xc9\xbb\xca\x6f\xe0\x5d\x35\x42\x44\x45\x84\xf3\x6b\xe9\x5c\xf9\x50\xfb\xcd\x26\x65\xd7\xb0\x8c\x8b\x87\x6f\x0b\x0a\x82\x90\xe6\xb9\xcd\x67\x3c\xfb\xe1\x46\xe0\x15\xa5\x99\x91\x84\x29\xcc\x10\x01\x3e\xc1\x08\xc2\xa0\x39\xe7\xc0\x9c\xdd\x28\xc3\x55\x0a\x56\x56\x63\x68\x1b\x02\xdc\x24\xea\x0f\x8a\xa1\x88\x5d\x21\xab\x40\xa7\x98\x8f\xbd\x5e\x4c\x37\x65\x05\x34\xac\x3b\x37\x27\x9c\x2a\xe8\xe6\xb0\x52\x6c\xd4\x5e\xfd\x81\x05\xc8\x7f\xe5\xae\x25\xed\x0a\xc4\x8e\x38\x78\x42\x31\xcb\x40\x29\x29\xa2\x15\x4b\xe6\x96\x88\x36\x4e\xe1\x86\x1d\x8b\x74\x71\x76\xb2\x85\x83\x8d\x7a\x37\x51\xe2\x81\x2a\xc2\x7d\xe0\x41\x4e\xd5\xe4\xe2\xab\xb0\x28\xb3\xd5\xfe\xe5\x2a\x54\x62\x53\xd5\x52\xf6\x55\x3b\x57\xf7\xf9\x79\xe5\xb6\x58\x3d\x0d\xd9\x54\x7d\xd9\xa6\x1e\x82\x1d\xfe\x32\x5a\xb2\x4b\x65\x56\x70\x0a\x28\x1e\x5f\x74\xed\x7c\xa2\x44\xa3\xd3\x9e\x99\x56\xc1\xc8\x15\x25\x2e\x78\xd3\xc7\xe7\xff\xd9\xc7\x81\x02\xff\xec\x72\x3a\xaf\xab\x26\xee\xa5\xd9\x12\x0d\x04\xac\x5b\xff\x02\x3f\xc4\x27\xc1\xf3\xda\xd6\x3c\xb4\x16\x00\xc0\xea\x99\x4a\x87\xce\xb7\x62\x21\x7b\x85\xc5\xfe\x4e\x2d\x97\xdb\xbf\xbf\xdd\xcb\xec\xea\x04\xb8\x74\x4b\x37\xd5\xb6\x1c\x0c\x49\xec\xfb\xe5\x71\x23\x42\xfb\x63\x7a\x72\x7c\xac\xb9\x80\x3d\x92\x3e\x82\xd9\x21\xc0\x90\xa7\x02\x15\x5d\x6c\x29\x2f\x3e\x5c\x2e\xff\x91\xea\x7a\x0d\x6d\xf1\xaa\x4d\xba\xa6\x1c\x4a\xe6\x8d\x4d\x7b\x1b\x8f\x8d\x4f\x54\x41\xfd\x6b\x9f\x9f\xa3\xfa\x10\x86\xdc\xcf\x70\x1f\xce\x94\xf4\xa5\xc5\x59\xad\x35\x21\x08\xa4\x4f\x9a\x3a\x29\x51\xb2\x92\xc6\x2b\x93\x2e\x70\xf7\x34\x09\x82\xad\x43\x95\x5f\xb3\xf7\xce\x58\x31\xbd\x34\x53\xf0\xf7\xbf\xc1\x85\xf0\x89\x03\x43\xd9\x3c\xcc\xd2\x55\xe5\xd3\x00\x91\x22\xb4\xf6\xce\x2b\x15\xad\x63\x4a\x76\x9d\x24\x09\x7d\xc1\x0f\xb9\x03\x1f\x6b\x83\x6e\xe1\xb6\x55\x97\x8f\x2d\x14\x94\x39\x3e\x1e\x7b\xcf\x3d\xc2\x35\x3d\xa2\x70\x03\x1f\x8e\x3d\x95\xf1\xfb\x74\x19\x68\x39\x1f\x53\x23\xe9\x07\x1a\xb7\x7e\x0f\x09\x01\x56\xf7\x9f\x30\x13\xdc\x95\x31\x0e\x2e\xfa\x32\x06\x6d\x1c\xbc\x20\x28\x35\xa9\x7c\x90\xae\x26\x7b\x7c\xe9\x72\x43\x83\xfc\xbe\x89\xd2\x29\x86\xc7\xeb\x4a\x7d\xe4\xa7\x63\xc5\xbd\xe1\xdc\x58\xf4\xfe\xfd\x98\xb0\x51\x48\x2d\x1b\x3d\x33\xf8\x78\x22\x2c\x2b\x7b\xf6\x19\xdf\x50\x61\x24\xb8\xd0\xef\x5b\x9f\xff\x4d\xef\xa2\xef\x50\x1e\x3f\xd0\xa2\xf3\x22\x20\x2d\x85\x0d\x0f\xff\xfe\x04\x5b\xbc\xc3\x4a\xbe\xe4\xa0\xa0\x60\x05\x20\x2a\xb8\x4a\xa5\x45\x5c\xd9\x0f\x28\x62\x17\x3d\x18\xba\x7d\x91\xe2\x53\xfa\xdf\xff\x7b\x30\xa1\xd1\x4d\x93\x0b\xeb\xeb\xf7\x02\x55\xa4\x38\x5d\x9b\xf4\xf3\xf3\xed\x22\x4b\x01\x91\xe7\x28\x84\x7a\x20\x12\x91\xf8\x62\x5b\xb5\xec\x85\x69\x4b\xbd\x8d\x73\x4a\x05\xa3\xae\x5d\xf7\xf2\xcb\xa4\x29\xd5\x52\x75\x8f\xc0\x03\xf2\xce\x2b\x7e\x54\x46\x89\x5f\x4b\xf1\xa3\x00\xa8\xe6\x63\x5f\xab\x88\xad\x5d\xa6\xef\xc3\x52\x0a\x5e\x1b\x1f\xaf\x3b\x88\xe4\x08\xfa\xe8\x2c\xd7\xe9\xca\x97\x3b\x03\xcd\xc5\xd9\x76\x3f\xb3\x89\xe9\x19\x64\x10\xd2\x7f\x52\xfb\xdf\x6b\x4e\xd6\x36\x1f\x98\xd5\xe9\xea\x45\x34\x40\xe8\x68\x2a\x48\xe5\x56\x61\xc4\x66\x6a\xba\xcc\xf3\xf3\xed\xbc\x0c\x07\x53\x84\x00\x16\x1a\xdf\xa4\xfd\xb7\x13\xb0\x79\xa0\x7c\x35\xfb\x52\x62\xc3\xf0\x42\xad\x8b\x8f\x6b\x01\xf4\xcb\x2f\xb7\x6d\xaf\x0c\x4d\x01\x05\x4a\x44\x88\xdf\x0e\x7c\x56\xf5\xed\xa6\xf2\xd8\x52\x1a\xc7\x68\xd2\x55\x7f\x88\x7a\x53\x6b\xdd\xd5\x15\xbe\xfa\x7c\x87\xc6\x14\x72\xf8\x3d\xeb\x92\x08\x8e\xaa\x77\x97\x96\x28\xe4\xb0\x2b\xb5\xe6\xc8\x6c\x36\x60\xda\x0e\xb6\x8b\x2a\x54\x91\xf6\x98\x38\x1d\x7a\x2e\xc8\x39\xb5\x77\xe4\x45\x96\x52\xdd\xd4\x33\xf8\xb7\x94\x05\x36\xcf\x5b\x6c\x11\x6b\xc5\x00\x72\x56\xbc\x1d\x5c\x55\xd0\xc5\xab\xae\x7c\x1d\x46\x19\x49\x1d\x70\xf8\x0b\xc8\x01\x8b\xd1\x61\x96\xdc\x0e\x34\xeb\xd3\xd5\x65\x07\x26\x77\xd2\x98\xd8\xa6\x5f\x53\xc2\xd1\xd4\x62\x91\x8b\x0e\x23\x9b\x14\x69\x9c\xf6\xd7\x5a\xaa\xd1\x04\xea\x81\x94\xe9\x76\xa2\x3c\xa9\x32\x94\x0f\x6c\x5c\x90\xf5\x47\x4b\x41\x70\x41\x45\x16\x33\x70\xef\xb3\xb5\x6c\x92\xdc\x70\x28\x87\x31\x87\x8c\x19\xab\x08\x47\x24\xe8\x66\xde\x50\x7c\xdb\xa5\xf2\x95\xa8\xc8\x4b\x0a\xc9\x85\x16\xa3\xbc\xb1\xce\xd6\xf0\x90\x55\xc0\x6f\xba\x69\x09\x79\x62\xa4\xf2\xbf\x47\x0f\x97\x8f\x15\xe8\x38\x1d\xd9\xcc\x14\x36\xdf\xa3\x64\x20\xb9\xf0\x84\xe2\x19\x30\x40\x0e\x99\xe7\x4a\xbb\xff\x30\xf0\x0c\xa0\x7f\x81\xb5\x4d\x70\xea\x8f\x29\x9d\xae\x3d\x74\x53\xd8\x0c\x85\x73\x85\x08\x6a\xaa\xe3\x1f\xef\x96\x62\x7c\xdc\x99\xe0\xa0\xe0\x45\x0b\xb3\x7f\xe7\x4c\x20\xc1\x4d\x4b\xb6\xed\x0c\x5c\x42\x9a\xff\xdb\x63\x45\x46\xfb\xed\x87\xea\xc3\x15\xe6\x68\x04\xd5\x37\x94\xc7\x20\x51\x86\x37\x70\x8e\xb2\x49\xcc\xda\x3f\x6c\x2a\x35\x8c\x6c\x92\xbc\x9a\x46\xb1\xe2\x28\xbf\xa3\x39\xca\xef\xd4\x96\xb0\xb9\xc3\x6d\xa3\x90\x14\xa2\x24\xa9\x0a\x2e\xa7\xd1\x4e\xe7\x7d\xed\xef\x3d\xa5\x9b\x49\xd8\xd6\x40\x76\x78\x4d\x97\x93\x47\x1a\x4f\x3e\x56\xcf\xfb\xbf\x09\x94\x40\x8d\x6a\x9b\xdc\xd0\x96\x98\xaf\x05\x8a\x13\x7b\x03\x72\x03\xa8\x8c\x6d\x29\x98\xdc\x87\x4a\xc9\x12\xa2\x02\x2c\x9d\x85\xa1\x22\x3d\xbf\xd6\xdc\x61\x5f\x13\x27\xb1\xf2\x2a\xbc\xd5\x22\xc7\x9b\x81\xba\xa7\x4d\x15\x48\x64\x65\x9e\xa7\xb4\x2e\x09\x6f\xb5\xe5\xc4\xe4\xcf\x8c\x77\xc2\x9e\x5f\x7e\xd9\xc1\x7d\x44\x59\x52\x41\xc0\xce\xa8\xef\x5d\x4a\xd3\x5e\xae\x70\x14\xdc\x4c\x62\x62\x2f\xfd\x08\x3a\x55\x9f\xd4\x5e\x32\xa9\xb9\xe6\x79\x64\x92\x1d\xed\x23\x4d\xef\x9f\x50\x27\x8f\x6d\x8f\xfc\xfb\x7d\xf7\x18\xfc\x49\xf1\x94\xad\x1e\x9c\x34\x0a\x7d\x18\x57\x64\xd6\xa2\xd6\x28\x81\x86\x22\x68\xd4\x36\x8c\xf9\xf9\x76\xd7\xe4\x76\x68\x12\x6c\xee\x4e\xbd\x56\x15\x42\x64\xf1\xec\x45\x79\xbf\x74\x55\x5a\x4c\x87\x3f\x41\x2c\x2c\xfa\x8a\x0a\x74\x7c\x25\x10\xad\xe3\x42\x84\x35\x08\x56\x74\xd0\x5b\xe3\x2b\x4d\x72\x9f\x48\x17\x59\x19\x2e\x43\x8b\x44\x62\x00\x25\xd7\xcf\x3a\x02\x42\x03\x53\x23\x1f\x23\x5a\xb8\x62\x8d\xab\x58\xd6\x2f\xb9\x62\xe8\x34\x91\xab\xcf\x88\x26\x72\x13\x87\x04\x9e\x5f\x58\x8f\x85\xc4\xe0\x0b\x7a\xe7\xbd\x6e\x43\x06\xd4\xb5\x37\xb1\xbb\xa6\x3c\x0b\xae\x29\x27\xea\x81\xcd\x79\x0c\x3b\xd8\x43\x75\x11\x02\xc0\x7e\x5a\x65\x3d\xbd\x28\x34\xf1\x63\xb4\x3a\xb3\xe0\x63\xe0\x19\xba\xeb\x81\xb7\xea\x78\x0f\x41\x1f\xe2\x90\x2b\x63\x25\x03\xb6\xbb\xa3\x90\xb9\xad\x75\xa5\x19\x0d\x1f\x2a\xa4\xac\x57\x03\x05\xb5\xb9\x46\x03\x4b\x14\x26\xe9\x4a\xb1\x4f\x5e\x72\xe6\x5f\x4b\x26\x13\xc6\x22\xc2\x0a\xd6\x75\xe7\x13\x6f\x08\x60\x8f\x16\x4f\x62\xb0\x8b\x99\x1f\xfd\x90\xb2\x1f\x97\x9c\xe7\x63\xbc\x65\x2c\x04\x77\x95\xbe\xc1\xf3\xc4\x12\x17\x0d\xa0\xea\xd2\x90\x90\x3e\xdb\x51\x8c\x1c\x5e\xa9\x90\x59\x5f\xf5\xfa\x11\xff\x53\x9b\x08\xe3\x82\xbc\xa9\x16\x61\x67\x83\x55\x5d\x3d\x36\xce\x6d\x94\xcd\x00\x6b\xf8\x5d\x05\x1d\xe9\x67\x26\x62\xe3\x85\xa6\x28\xd6\x27\x17\xff\x46\xc3\x0d\xa5\xe9\x90\xa6\xcb\x8f\xf8\x88\x91\x07\x33\x40\xa3\x8c\x16\xc0\x98\xff\xd9\xd8\x03\x81\xa7\x68\x5b\x47\x53\xfb\xbe\x32\x50\xde\x4b\xc2\xcb\xf8\xef\x33\xeb\x74\x91\x78\xc8\xb7\xb4\xb3\xf1\x9d\x86\x52\xae\x89\xd3\xc4\xb6\x26\x04\x0b\xaa\x9f\x90\xa2\x9b\xcf\x61\x57\x6c\x16\x15\x99\x09\x5b\x8a\x7d\x08\xaf\x4b\x3e\x6e\x32\xa9\x0c\xcb\xb8\x28\x33\x13\xd3\x2a\x81\xad\x10\xb4\x1a\x81\xa5\xa9\x12\xc6\x56\x2d\xdc\xf8\xd2\x5c\x7b\xd5\x9a\x65\x9b\xb4\xbc\x97\x30\xe3\x16\x04\x01\xdf\xc0\x74\xe9\xa7\xf1\x92\x9b\xa7\xee\x3a\xdd\x83\x3e\xa7\x7a\x4d\xf9\x5a\x52\x0c\x6c\x11\x85\x28\xcc\x88\x7e\xab\xef\xdb\xdd\x50\x92\x32\xac\xce\x85\x32\xf0\x1f\xfa\x64\xc4\xda\xe5\x7c\x8f\xef\x6b\x71\xc1\x1e\x0b\xdf\xa7\x3a\x5e\x8e\xf9\x98\xa2\x9f\xbc\x81\xb1\x8f\x12\xc9\x27\x18\xee\x22\xa5\xe9\x65\xa9\x47\x65\x37\x86\x14\xf7\xb4\x26\x79\xd1\x8d\x61\x7a\x41\x97\xd4\x55\x4f\x5c\x21\x78\xaa\xf3\x9c\x22\x5a\xe6\x51\x52\xda\xa4\xc7\x39\xdb\x84\x48\x97\xc0\xa0\x9c\x2d\x5f\x66\x51\x7d\x00\x4d\x81\x47\xa5\x18\x26\x56\x23\x43\x78\x04\xf2\x89\x51\x99\xac\x21\x82\xc6\xfd\x9f\xf5\x1c\x2d\xde\x05\xf1\x89\x63\xb5\x40\x77\xee\x70\x7b\xb0\x36\x4a\xf1\x06\xb8\xd8\x2b\x42\xff\x9e\xf8\xb3\xa5\x5a\xb8\xb6\xcc\xd2\x91\x35\x90\x1c\xc7\x10\xba\x87\x01\xee\x48\x6d\xaa\xc7\x44\x8b\x22\xa3\x9c\xc7\x1a\x31\xc7\xb4\x36\xed\x93\x0a\x06\xee\xe3\x9d\x67\x14\xe0\xe9\xeb\x65\x44\x4b\x5b\xb5\x1e\x70\xab\x40\x77\x59\xbe\xe3\x1e\x81\x59\xb1\xe1\xd4\xa4\x6d\xf1\x84\x23\xb1\xb2\x2a\xae\xc3\x8b\xdb\x9f\x4b\x3e\xd7\x6a\xed\xdf\xef\x84\xda\xa8\x11\x23\x4a\x6d\xde\x8d\x2d\x34\x79\x94\xa4\x6c\x20\xa2\x95\xd4\xf9\x38\xd0\x6e\xba\x71\x2f\x1d\xaa\x52\xe1\x96\x6a\x77\x6c\x29\x08\x58\x61\x9d\x95\xb1\x4a\xa7\xef\xe8\xea\xeb\x9d\x5a\x6b\xf1\x2b\x5f\x6c\x8f\xb2\x28\x85\x44\x1c\x80\x3e\xef\x29\xfd\xe5\xf7\xc6\x9e\x4d\xea\x40\xcb\x33\xbe\xd6\x79\x0a\xfb\x8b\x68\x8f\x7a\x44\xec\xb7\x68\x78\x01\x3b\xc5\x46\xb1\x02\xc3\x52\x12\x2a\xa6\x28\x33\x3b\x39\x90\x3d\xe6\x61\x4b\xb9\xd7\x75\xcb\x5e\x9f\x58\x25\xae\x64\x06\x21\x49\x71\x1b\xf2\x9b\xeb\x2b\x69\xbf\x4f\x0b\x46\xf5\xa2\xe5\xc1\xfb\x68\xe2\x92\x0b\x5e\x46\x36\x23\x73\xd3\x2e\x6b\xb1\x6b\x9d\x53\xd1\x6d\x69\xa0\x90\xc5\xd6\xac\x4c\x6e\x91\x17\x03\x9f\x91\x5f\x1c\x7b\xf9\xdb\x74\xd5\x12\x0b\x06\xab\xef\x75\x85\xc0\xbc\xae\x36\x98\x5f\x3b\xf4\x6b\x53\x1e\x48\xf7\x7d\xbc\x2d\x11\x60\xc5\x38\x47\x68\x7e\xd2\x75\x59\xd3\x2c\x1c\x58\xf2\x94\x97\x1c\x81\x25\xc1\xf0\x61\xd1\x07\x93\x8c\x72\x29\x36\x45\x61\xb3\x35\xb2\xc9\x46\xd9\xfc\x1d\x94\x9c\xf4\xc0\x03\xb2\xe3\xba\x42\x2a\x6c\x36\xe8\x14\xcf\xb5\x43\x53\x16\x54\x1b\xa0\xb7\x26\xd1\xa7\xa6\x0a\x3f\xe3\xb0\x5f\x61\x66\x7b\x51\x97\x31\xe7\x5c\x10\x0b\x3c\x19\x89\x1d\x45\xf0\x36\x06\x26\x1b\x9a\xd0\x96\x58\x3d\x94\x56\xed\xbb\xfc\x14\xf8\xac\x41\xbf\xa2\x5d\x8e\xf2\xa8\x67\xa7\x3c\xe1\x7c\xb7\xaa\x21\x61\x5b\x43\x68\x7d\x53\xad\xc7\xc3\x2a\x5b\xee\x56\x2b\xf2\x23\x1e\x4c\xbf\x85\x25\x12\x8b\xdc\x77\xb5\x40\x12\x77\xbc\x91\xed\xde\x9d\x00\xa4\x41\x51\x01\x0f\xf0\x66\xa0\x28\x59\xdf\x1d\xfb\x45\xfc\xb1\x75\x05\xd3\xdf\x52\x22\xa6\x71\x14\xeb\x0e\xfd\xb6\x72\x85\xe1\xc2\x13\xc2\xd8\x6b\xb5\xc4\x63\x7e\xbe\xdd\x4b\x57\x93\x55\x93\x41\x3c\x99\xf9\x6b\x63\x4f\xfb\x03\x67\x13\xe1\x7e\x9d\x24\x53\x85\xce\x43\x9b\x31\x01\x4b\x54\x6e\x3e\xa0\xcf\xf3\x71\x13\xa7\x8c\xd4\xea\xf5\x27\xce\x28\x28\xeb\x99\x06\x6a\xe1\xa1\x76\x91\x99\x9e\x43\x04\x48\x05\xb3\xfa\x19\x09\xf2\xfc\xa4\x3b\x5f\x4b\xc3\x17\xc9\x9c\xe6\x15\x55\xee\x46\xcb\x88\x59\xe3\x7c\x32\x21\x1d\x18\x5b\xca\x9f\x81\x2c\xc6\xa6\xf1\x36\xb2\x31\x3e\xa1\x7b\x14\xc5\xea\x96\x52\x25\x7c\x4a\x69\x11\x27\xb6\x58\x9b\xf6\x52\x0f\x6c\x29\x84\xc0\xe7\xb7\x14\x87\x98\x77\x5f\xd1\xd4\x69\xa8\x0f\xf6\x33\x26\x88\x02\x06\x70\x5b\xc9\x84\xde\xae\xdd\x2f\x69\xf0\xe7\x69\xbc\xe2\xe2\x1e\xc4\xaf\x80\xca\xf0\xb1\x0e\x51\xa3\x08\xf8\xa9\xed\x77\xb1\x7d\x3a\xb4\x5b\x35\x78\xc4\xc2\x7e\x42\x81\x21\x8c\x38\x53\x45\x2d\xfc\x84\x76\xe6\x3f\xe1\xb9\xdc\x69\x9a\xd8\x8c\xe8\x48\x88\x64\xef\xd2\x75\x23\xb4\x46\xb0\x82\x71\xfa\x24\x1c\x27\x91\x20\xdf\xc2\xda\x82\xbf\xfa\x85\x8e\xb7\x46\x7a\xb4\x33\xd1\xd5\x62\xb6\x48\x3e\x8d\x6e\x02\x3a\x30\xdf\x56\xd0\xec\xb7\x03\xff\xc4\xde\x46\xc5\x81\xff\x68\xfc\xa9\x9d\xe4\xd0\x2f\xb4\xe7\xe7\x17\x01\x5d\x03\xe0\x84\x25\xc4\xe5\x03\x2d\xa7\x21\x79\x9b\x72\x05\xf9\x35\x0f\x5d\xb3\xc3\x6e\xda\x5b\x9b\xa1\x07\x21\xca\x00\x78\x46\xa8\xc5\xef\xee\x50\xba\x86\x46\xc9\xeb\x81\xa7\x25\xdd\xa3\x8d\x88\xff\xbb\x4b\x1b\x0b\x13\xc3\xcd\xf3\x61\xc6\x4d\xfe\x97\xbb\xa4\x25\xd4\xaa\xfb\xd6\x4a\x3f\xc2\xe3\xb6\xf3\x22\xcd\x4c\xdf\x4e\x29\x42\xe5\x03\x5d\xa8\xb8\x80\x70\x55\x52\xbc\x86\xa5\x32\x4b\xfb\xae\xdc\x89\x35\xf1\x7d\xdd\x44\x7b\xbf\xc6\x1c\x7f\xa1\x9d\xbc\xf8\x0a\x8d\x5d\xa4\x1d\x0c\x8a\xe5\x93\x06\x77\xb4\x43\xed\x51\x6c\x92\x44\xe6\xaa\xf8\xbf\xd1\x14\xe1\x13\xc5\x01\x75\x52\x90\x33\xbe\x37\x70\x96\xb4\xd3\x26\xae\x0e\xfb\xe6\x09\x84\x62\xa8\x32\xc2\x35\x9c\xff\xc1\x85\xbc\x26\x1b\x82\x40\xe7\xa2\x04\xa7\x2e\x72\x0f\x25\x2c\x6d\xf4\xc5\x15\x2c\x4c\x1b\xe9\x73\x2b\x42\x58\x1d\x8a\xf5\xab\xed\xa2\x0c\x97\x27\x59\xd8\x67\x34\x0b\xfb\x8c\xd2\x71\x1c\x65\x66\x05\xe9\x23\x50\x53\xc7\x95\xd3\xf2\xf1\x1a\x53\x4b\xca\x8d\x3d\x13\x0d\x0c\x55\x72\xdd\x70\xf9\xe9\x58\xe9\x28\x6b\xef\xe2\x22\x03\x5a\x8b\x21\xf9\xbc\x2d\x21\xf1\xbe\x45\xf7\x2e\x60\x7d\xd5\xa0\xbc\x55\xeb\x17\x2d\x2c\xb4\x43\x93\x59\x60\x73\xb0\x26\x73\x0b\x43\x86\x92\x87\x81\xdd\xaf\xed\x23\x47\x66\xbf\xd6\xce\xa3\xe1\x88\x03\x29\xb1\xc8\xf4\x4f\xfe\xbd\x09\x66\x7a\xcf\xac\x3d\x4f\x73\x09\x8b\x47\x0b\x8b\x07\x8a\xf4\xdf\xd7\x70\x61\xd6\xbd\x43\x85\xec\x0a\x71\x58\xd9\xca\x59\x75\xd2\xde\xa1\xe8\x0b\xed\x80\xc7\x3a\xfe\xf9\x3e\x0b\x71\x40\x4c\xfa\xed\x40\xf1\x7e\xbf\xa3\x72\xe2\xdd\xeb\x2a\xbf\xe3\x15\x13\xf3\xea\x8a\x12\xf6\xb9\x31\x56\xf0\x83\x47\x41\xd2\x45\xaa\x7e\x0a\x48\x2b\x7c\xf1\x2d\x0a\xf1\x90\xbf\x4d\x77\xaa\x3c\x1f\x83\xf0\x26\xbf\x16\x3c\xcb\x7d\x1d\xbf\xf7\x5b\x53\x1e\x9d\xaa\xde\x1f\x42\x3c\x76\xc0\x64\x6c\x92\xae\x7c\xd4\x3d\xcd\x08\x7d\x8e\xd0\x5d\x51\x71\x4f\x2b\x2a\xee\xe9\xda\xe0\x3d\xb0\xd0\x5e\x49\x7b\xcb\xec\xa2\x84\x9f\xf9\xfb\x0a\x37\xf6\xf7\xdd\x34\x8a\xd3\xdc\xce\xf8\xa6\xea\x73\x1d\xc5\x96\x7f\x94\xd6\x74\xa4\xbe\x8f\x53\x33\x49\xd8\xb9\xf4\xc4\xb1\x8b\x3c\xb9\x2e\x5f\x35\x48\x63\x84\x9e\x08\x43\x7e\x1e\x78\x88\xeb\xd5\xb1\x8a\xf3\x6e\x06\x4a\x48\x7b\xc3\x6b\xdc\xc5\xe5\x70\xa2\x32\xac\xdc\xe8\x37\xeb\x68\x87\xb9\xb6\xed\x4b\x29\xb9\xc9\xc6\xc9\x4f\x9d\xd1\x60\x6d\x6f\xf5\xe8\x45\x1c\xc5\x43\x77\x1f\x41\xa8\x86\x1e\x34\xcf\x1c\x27\xad\x72\x64\xd6\xbd\x1f\x2d\xb2\x08\xd0\x32\xe1\x0d\x6e\x7f\xba\xb3\x63\x7f\xa2\x26\xd0\xcb\x2f\xcf\x54\x3b\x0f\xca\x12\xf0\x5b\x64\x61\x80\x71\x4d\x05\x40\x2c\x1b\x5a\xce\xd3\xfe\xb4\x46\x59\xdb\xa4\xe0\x8c\x0d\xc9\x16\xbb\x22\xf2\x89\x8a\x71\x99\xa7\x41\x35\x87\xfd\x73\x8e\x4c\xa9\x44\x4a\x21\x55\x87\xea\xfd\xdd\xb1\xda\xfd\x7e\x5f\x3d\xaa\x3c\xea\x29\x07\x21\x16\x75\xe7\x93\xf5\x06\x99\x87\x70\x10\xd9\x25\x25\x71\x8e\x70\x9c\x8f\x1b\xcc\x07\x0f\xb6\x8b\x32\x4b\x96\x2d\x62\x24\x6c\x02\x57\x95\x31\xcb\x55\x45\x1f\xec\xd9\x08\x6d\x43\x29\x36\xd3\xc5\x48\xb5\x79\x27\x88\xa8\xca\x58\x6c\x62\xb3\x3e\xb1\xaf\x14\xdb\xef\x12\x85\x9f\x7c\xec\xd1\x59\x99\x49\x5a\xca\xc8\x12\x4b\x28\x1f\x2b\xaa\xf3\xaa\x89\x97\xa3\xa4\x3f\xd3\x72\xab\xd8\x7b\x78\x05\x52\x95\xaa\x26\x3f\xe2\xfe\x37\x68\x46\xf2\x1f\xa9\xca\xfe\x31\xd5\x7c\x20\x4d\x37\xc2\xb5\xa0\x7e\x7a\x99\x3e\xcf\xc7\x08\xa7\x70\xf2\x13\x00\x0d\xf8\x44\x61\x52\xc4\x47\x10\x91\x01\xae\x02\x8b\x36\xbf\xda\xc0\xa3\x2a\xce\x68\x2c\x8b\xe0\xab\x54\xbe\xa4\x19\x4c\xe7\xc6\x5a\x92\x7a\x14\xa7\x6b\x36\xcb\x67\x94\x80\xf5\x3d\xa5\xf6\x77\x4e\xb9\x21\x9d\x43\x24\xc2\x8a\xd4\xbc\x00\xa2\x6e\x7a\xae\x66\xbb\x5c\x25\x22\xc4\x81\x2d\xca\x84\x28\xf0\xb4\x67\x62\x25\x38\xae\xba\x1c\xde\x0d\xaa\x67\xa2\x6c\x6d\xca\xdf\xdf\x3e\x5a\x93\x64\x3b\xaf\x3e\x81\xdf\xda\xb5\x2e\x9f\x18\xc5\x26\x02\x4b\x84\xf3\x0f\xfa\x2b\x2c\x3d\x1c\xd9\x23\x64\xfd\x88\x4a\x10\xca\x9b\xc4\x33\x6d\x0d\x12\x35\x07\xf8\x74\x4c\x4d\x26\x74\xa2\x77\x70\x7a\x3c\xc1\x89\x4f\x97\x4c\x36\xe5\x0b\x23\x33\x1d\x0f\xa7\xbc\xaa\x42\x98\xdb\x2e\x74\x5c\x8a\x4d\x3e\x90\x46\xa5\x23\x17\x7a\x9b\xc3\xad\x26\xcc\x5b\xd7\x0e\xcc\x4a\xc4\xa0\x24\x80\x57\xc0\x2b\xe3\x63\xf7\xed\xb1\xe9\xda\x58\x60\x4f\x08\xae\x31\x38\x5c\x78\xe7\xcd\x76\xcf\x2b\xd5\xe2\x9e\xa9\x5e\xcb\xdc\x61\x7e\x7c\x1b\xca\x4b\x62\xc3\xa5\xfc\x65\x62\xf2\xbc\x1c\xba\xc4\x45\x32\xd7\x96\x33\xcd\xbf\x16\x7c\x5a\x4d\xe5\x61\x9a\xb8\x3a\x06\x8d\x6c\x41\x5b\xf9\x36\xe2\x56\x2d\xdc\x38\xb0\xd0\x8e\x86\xd5\xb8\xcd\x5b\x13\x4f\xa5\x5a\xcc\xe5\x71\x3d\xad\x66\x06\xf5\x7d\x9f\xf2\xf8\x4d\x96\xc6\x40\x1d\xf7\x87\x81\xd2\x4f\xbd\x40\x1b\x38\x0b\xfb\x69\x35\xed\x33\x63\x2f\x1c\x7f\x3b\x50\x3d\xa3\xbb\x10\x03\xe7\x36\x0a\xea\x5c\x4e\x50\xb7\x8a\x71\xb0\xac\x5f\x1f\xef\x1c\x37\x68\xcf\xb0\xc5\x0e\xd7\xcf\x03\x6d\xbd\x3a\x56\xc4\x99\x1f\x35\xc1\x5c\x86\x66\x34\x72\x0f\x1a\xc5\x87\x9f\xa9\x4a\xce\xcf\x82\x1d\x40\xe8\x5f\x7f\xa9\x0a\xce\x69\xc9\x72\x49\x86\x8a\x1c\x5b\x9f\xff\x4d\xa7\xca\x5a\x3d\x2b\x00\x80\xee\x61\x59\x93\x20\xb2\xe1\x55\xe4\x69\x5c\x4a\x09\x0d\x8d\xe6\x77\x95\x4a\xf6\xbb\x6a\x33\xca\x47\xb1\x4d\x7a\x51\x2f\x5e\x9b\xa1\xbb\x96\x4c\x88\xee\x1a\x75\x95\xd3\x78\x82\xae\xb5\xee\x0c\xd1\x78\x39\xc1\x18\xbd\x57\xdb\xf6\xe7\x0e\xb7\xc3\xb4\x07\xfd\x69\x71\x9a\xa3\x0b\x17\x0b\x3a\xdf\x45\x1d\x0d\xc4\x0c\x1f\x51\x12\xf4\xc4\xf8\x78\x82\xe2\x38\x2a\x95\xe6\x1b\xc2\x1d\x8e\x10\xf9\xa4\xf6\x38\x0e\x7f\xb9\x1d\xa6\x49\x1e\xb1\xff\x9f\x88\x0b\x79\x62\xc2\x25\xdd\x05\x36\x45\x99\xf5\xcc\x1a\xa1\xda\x51\x6d\x6f\x21\xcc\x12\xe5\x7e\x7a\x16\xe8\x2a\xdc\x53\x7d\xe0\x55\x93\xf4\x0c\xe6\xef\x84\x7c\x1e\x76\x85\xb7\x75\xd5\xfc\x23\x8d\xc7\xaa\x5e\x13\x6f\x10\x4e\x8e\xdd\x21\x13\x61\xbe\x2d\xde\x83\x3b\xf7\xf4\xc5\xd9\x45\x6a\xf9\xb5\x3c\xa9\x1b\x2a\x73\x42\x6e\x57\x7e\x19\x69\x12\xda\x2c\x79\x42\x99\x36\x3f\xde\xd1\xa2\xe1\x64\x56\x25\x6d\x5e\x3c\x5c\x11\x70\x53\x1a\x9b\x17\xb4\x89\x01\xf8\xee\x80\x4d\xde\xa5\x39\xca\xc7\x4a\x0f\x71\x22\x46\xdf\x54\x12\x85\x8f\x83\xb9\x8b\x5d\x77\x5b\x59\xaa\xbd\xdb\xc8\xb3\x59\x8e\xc2\x65\xf0\x6c\xb1\x5e\x73\xce\x89\xb0\x4d\xa0\x29\xf8\xe6\x8b\xca\x0e\xf7\x84\x0a\x97\xe2\x34\x9f\xc1\xdf\x21\x04\x78\x2f\x50\xb4\x91\xef\x2b\xf1\xcf\x4d\x95\x84\x7e\xa0\xe3\xcc\x2b\x70\x51\x93\xd8\xf1\xd3\x5e\x22\xe1\x53\x88\x4d\xe9\xcf\x4e\x3d\xdb\xa1\xd5\x07\x85\xf5\xdb\xf4\x60\x44\xa9\x4a\x95\xbf\xdf\x0e\x54\x43\xf0\x89\xf5\x2a\xb4\xc0\xb6\x77\x96\x16\x00\x6c\x45\xd7\xb1\xaa\x09\x9f\x48\x45\x4a\xff\x5a\xc5\xcf\x8f\x74\x54\xa0\x79\x99\xd4\x83\x84\x7f\x45\x8f\x0c\xf5\xd0\xa9\x75\xc5\x21\xbc\xe5\xf1\x9c\x33\xcf\x10\x8f\x1e\x99\xd3\x75\x8e\x09\xf0\x23\x77\x21\xbe\x89\x81\xf0\x48\x47\xc7\xbd\xbe\xef\xf3\x24\x32\x2f\x64\x1b\x77\xbc\xdc\x5f\x98\x66\xc9\x52\xa9\xb5\xf1\x8f\x2b\xb6\xde\x71\x65\x20\xda\x4d\x33\x14\xcc\x99\x29\x1a\xf8\x92\xb8\x96\x66\x26\x81\x7a\xb7\xb6\x32\x6f\x4f\x31\x60\xeb\x00\x72\x32\x85\x37\x5e\x1a\x49\x08\x18\x4c\x07\xe7\x93\xda\x82\x31\x77\x18\x05\x10\x8b\x08\xc1\x69\x8f\x7a\x34\xe9\x0c\xcd\x4b\x6e\x38\x29\x49\x93\xa1\x1d\xa6\xda\x4b\xec\x9c\xf6\x12\x3b\x17\x3c\xaf\xdc\x06\x4c\x92\x1b\x2a\xb5\x51\x5f\x13\x95\xbc\x77\xc7\x9e\x5b\xf2\x89\x46\x3d\x6f\x8e\x15\x89\xfa\xde\xd8\xef\x9a\x1f\x63\x7c\x8a\xe3\x53\xbd\xf7\xbc\x04\xc3\x5a\xf7\xb5\x1f\x8c\x55\x6b\x08\x5a\xbd\xd8\x5f\xea\x96\xfa\x52\xf9\xe8\xf7\x00\x59\x45\xd5\xe0\xd6\x58\xe9\xb6\xde\xf2\x2c\x35\x32\x72\x08\x0b\x8d\xc8\xfa\x24\x98\xf4\x45\x6e\x29\x8b\xe9\xc7\x5d\xe0\x93\x89\x79\x27\x36\x75\x58\x3f\xca\xc6\x53\x4d\x05\x51\x1a\x68\xd8\x6d\xab\xb8\x26\x13\x05\x4c\x2c\x99\x67\x34\xca\xe1\x4c\x8d\xbb\x48\x09\x7a\xd4\xb3\x69\x9c\xf6\xa5\xa7\x71\x68\xc2\x38\x5a\xca\x82\xba\xbe\x57\xf6\xa2\x94\x65\x59\x9c\x5f\xf6\xe2\xac\xb7\xc3\x3b\x20\x37\xf6\x4f\x27\x72\xa2\x1c\x8a\x9b\x9a\xf3\xec\x8c\x9b\x7d\x6d\xea\x86\xca\x3a\x77\x75\x94\x85\xca\xae\x75\xed\x17\x9d\x24\x26\xca\x74\x81\xeb\xa7\xba\xc0\xf5\x53\x55\x23\x37\xdd\xbc\xcc\x7a\x98\x26\x40\x97\x7e\x73\xec\x91\xa6\xdf\x54\x3e\x68\x59\xda\x9d\xe8\x99\x69\x58\xc9\x45\x25\x54\xb5\x66\xf3\xc2\x56\xdb\xe2\xe3\x1e\x64\x03\x45\x71\xdc\xdb\xae\x8e\xc2\xb7\x31\x20\x46\x68\x39\x54\x8a\x11\xf5\x41\x7a\xd1\x58\x43\xf6\x50\xdf\x1e\xd1\xbd\x64\xed\x8e\xc8\xec\x95\x4f\xd0\x14\x40\x90\x77\x0c\x6b\xa6\x30\xfd\x94\x08\x62\x5d\xfb\x08\xf9\xeb\xb0\x1b\xbb\x15\x83\x15\xf8\xd5\xf8\xaa\x63\x1b\xc8\x00\xbb\x6b\x0a\xa1\xa9\xa8\x52\xe2\xd7\x1e\xda\x4b\x59\x9c\x25\xcd\xd0\x32\x97\x00\x9e\x11\x26\x8a\x89\x7b\x57\xbb\x22\x9c\x75\xb6\xf4\x65\xd2\xb3\x59\xb5\x52\x4a\x1a\x2c\x59\x28\xfd\xb5\xa8\xb3\x69\x4a\x7c\x9a\xf5\x4d\x12\xbd\x4a\xc1\xf9\x23\xaa\x7c\x06\xf3\x17\x44\x10\x17\x69\x40\x62\x8a\x6f\xd3\x4a\x8d\x27\x76\x95\x06\x9a\xd0\xcd\x7d\x13\xf4\x04\xe2\x27\xa4\x88\x7f\x8d\x2b\xc5\x68\xbe\x0d\x97\x09\xa9\xf3\xee\xf4\xeb\x93\x15\xa2\x0a\xaf\x6c\xb6\x42\xa0\x33\x6d\x87\x8b\xef\xf5\xd1\xbf\xa3\x89\x67\x65\x3e\xe0\x5b\xde\xa6\xf6\xc5\xf6\xdd\x5a\xc3\xe5\xc8\xec\x5c\x3b\xb3\xba\xc1\x24\xea\x9a\x2d\x65\x7d\xbf\xb3\xb4\x40\xa4\xdc\x72\x54\x25\x22\xf2\x31\x44\xfe\x3f\xc5\x33\xe5\x93\x46\x22\x7a\xd7\x86\xe9\xd0\xc2\xba\xc1\xb9\x19\x1f\x99\xe5\x72\xc7\x6d\x64\x05\x0c\xbd\x43\x6e\x8a\x6a\x0d\x30\x95\x18\xbb\x17\x9a\x96\xa9\xb2\x88\xe2\xe8\x55\xc4\xb7\xd8\x27\x01\x7a\xe1\xe3\x46\x71\xdf\xa1\xc9\xb2\x88\xb9\x73\x08\x1f\x76\x23\x64\xe2\x93\x75\x85\x45\x28\xb2\x68\xc4\xad\x5f\xb4\x38\xcf\xea\x7e\xe7\x59\xc7\x4f\x29\x93\x38\xf5\x2d\xbf\x6d\x58\xc5\x21\x86\x02\x04\x4c\x84\x42\x3c\xbc\x1a\xf0\xf6\x28\x4d\x18\x3c\x02\x80\x03\x1b\x23\xf2\x49\x47\x41\xc8\x4d\xbc\x42\x06\xb3\xd5\x84\x03\xc6\x12\x44\x28\x3e\x0e\xfc\x76\x6e\x46\xa3\x2c\x5d\xb1\xbd\x3d\x35\x42\x32\xd2\xbe\x53\xca\x1e\xe3\x71\x18\xa4\xc8\x3e\xaf\xa6\xe6\xb5\x49\x0d\x05\x5d\x18\x28\xac\x51\x86\xca\x8c\x89\xa8\x93\x60\x8a\xb4\xec\x0f\xf6\x50\x5a\xe8\x8c\xd3\x17\xc5\xa3\xf4\x7b\xf4\x6a\x45\x3b\xde\x97\x19\x4f\x04\xca\x92\xf5\x18\xcd\x2b\x04\xdd\x57\xc6\x8f\x79\xa1\x6f\x43\x59\x04\x72\x85\x8b\x13\x46\xed\x63\xff\x13\x7f\x3c\x71\xd1\xaf\xda\x64\xc6\xc3\xa9\x7f\xaa\x4d\xf3\x36\x29\xde\x46\x2c\x01\xe1\x03\x64\x3c\xf7\xc6\x0a\xb0\x5f\x2f\xbe\xfe\x6a\xdb\xe4\x51\xcf\x12\xbc\x49\x4c\x58\x15\x04\x16\x97\x82\xbc\x70\x77\xc7\xe3\xcc\x3f\xaa\xad\xa8\xf3\xf3\xec\x1a\x97\x66\xa2\x7a\x8f\x7b\x66\xd5\x7b\x67\x78\xa1\x5e\x48\x6d\x68\xb3\x4a\x59\x2f\x92\x15\x96\xab\x5f\x74\x3f\x52\x09\xf3\x59\x55\xbc\x46\xa3\x55\x53\x8c\x7c\xbb\xf5\x0e\xbd\x1c\x8e\x9a\x9b\xb2\xcf\x74\xc5\x66\xd3\x55\x64\x8d\xd1\x75\x5e\xd1\x1f\xa1\x89\x86\x09\x08\x63\x09\xa1\x03\x35\xc1\xd4\x45\x14\x6b\x4a\xc5\xec\xbc\x1e\xa8\x2d\x6b\x6e\xfb\xb2\x13\x23\x11\x40\x46\x8c\x4c\x52\x30\xaf\x1e\x5b\x8c\x38\x47\xe4\x94\x9f\xd5\x93\xd9\x28\xfb\x68\x07\x5a\xf6\x76\x0b\x9b\xb5\x45\x8f\x24\x0e\xab\xf7\xa2\xd0\xce\x22\x8d\x49\xcf\x8e\x4f\x9a\x18\x77\x50\xdf\x90\x9f\x73\xdc\x45\xcf\x63\x54\x58\xe1\x15\x13\xc7\x76\x6d\x4a\x7b\x15\x8e\xd5\x63\x0c\x54\x05\xfa\x83\x06\x39\x93\x43\x6d\xd3\x5b\x31\x49\x28\x3f\x86\x82\x07\x37\x28\xf8\x44\xa1\x8b\xd2\xb2\x88\xd3\x74\x99\xef\x67\x42\x5b\x9c\x4f\x6a\x19\x71\xb5\x67\xe4\x64\x94\xb0\xe0\x77\x61\xfa\x2d\x84\x6a\xbb\x69\xc5\xc3\xa5\xdf\x70\xc5\x37\x80\xdd\x39\x43\x70\x0b\x4e\xf5\xdc\xf8\x64\xfd\x39\xed\x85\x6c\x32\xd3\x2f\x0d\xe3\x54\x51\xd0\x44\xce\xc9\xc7\x0d\x2a\xc1\x8b\xed\xa5\xd8\x5a\x10\x9b\x31\xeb\xdf\x0a\x7c\x55\xe4\xad\x26\x0c\x49\x96\x0e\x4d\x52\xb0\x4f\x12\xbb\xa8\x06\x2a\x4e\x7e\x67\xec\x45\x78\x73\x43\xac\xe9\x45\x01\xc2\xa0\x7a\xc2\xc7\xc1\x23\x92\xb4\xfe\xf2\x73\x34\x62\x51\x91\x38\x41\xab\x09\xe6\x3d\x33\xda\x04\x60\x44\x4d\x7d\x24\xd3\x7f\xa0\xf2\xab\x6b\x6a\xea\xfd\xae\x92\xcd\xba\xaa\x58\x73\xbb\x3b\xad\xaf\x7c\x91\x13\xa3\x9b\x5a\xd0\xf1\xd6\x58\xe5\x5f\x97\xf0\xca\xc5\xf5\x9a\xd6\x38\x14\x39\xee\x51\xc4\x8f\xc2\xdd\x9f\x69\x64\xc7\x37\x28\x8f\x66\x3c\x22\xb1\x3b\xb0\x58\x7c\xc0\x39\x86\xab\xc4\x57\x2f\x05\x99\xf0\xd5\x86\xbe\xc3\x42\xdb\x9a\xbe\xcd\x9c\x3e\x08\xd2\xf7\x4b\x4a\xed\xd0\x93\x90\xd2\xcf\x85\x71\x1a\x2e\x4f\x7b\x45\x0f\xb0\x5e\x90\x99\xa2\x7c\x8a\xf9\xcb\x49\xd5\xc3\x8c\xe4\x17\x16\xda\x36\x59\x89\xf2\x2a\x0d\x9d\x52\x52\xb0\xd7\xf0\xd8\x05\xd3\xa7\xdc\x16\xce\x37\x4d\x71\xc2\xe5\xc1\xf1\xc0\xb7\x90\x79\x33\xe4\x93\x46\x69\xd5\xaf\xbf\x38\xa5\x34\xbd\xee\x05\x93\x9c\xe3\x96\xa2\xa3\x3b\x2b\xef\x41\xd4\x13\x34\x9d\xa8\x51\x55\xef\x58\x54\x46\x9e\x56\xbe\x71\xfd\xa8\x30\x31\x6d\x2e\x2c\x0a\x49\xe3\x0a\x8b\xc3\x69\x65\x8a\x84\x0a\x11\xff\x77\x15\x06\x44\x71\xcc\x56\x5a\x8e\x50\xbb\xa1\xd4\xf4\x36\x94\x8e\xdc\x30\xcd\xec\x67\x94\xd2\xc6\xcc\x7a\x6b\xff\x7e\x8e\xe8\xae\x21\x52\x45\x27\xfa\x62\xa0\xd4\xd2\x6e\x21\x9b\xc0\x9b\xba\x85\xfa\x2f\x72\x61\xac\x06\x0a\x0f\x2f\x68\xe1\x7b\x5a\x5f\x9d\xc5\x7b\x30\xa6\x9e\x55\x8e\x08\xd8\x2d\xd1\x58\xbd\x3a\xd6\xab\xee\xeb\x34\x8a\x15\xf2\x5d\x3a\x12\xf7\xc7\xbe\xd0\x7b\x83\x30\xe7\x88\xb8\x00\xdb\x41\xbb\x6c\x73\xac\x28\x92\xec\x06\xe8\x7c\xf2\x16\x85\xd3\xf3\x63\x02\xcc\x70\xe3\x9d\x9a\xf0\x58\xae\xef\x35\x11\x61\xfa\x59\x69\x63\x51\x2c\x74\x7e\x95\xd5\x53\xe1\x93\xda\x62\x4d\xed\xc2\x2c\xca\x8b\xa1\xc9\x27\x16\xe0\xd3\x63\xb5\x00\x9f\x56\x0e\x48\x61\x66\xcd\x70\x5a\x0b\xe6\x8c\x3d\x87\x13\xdc\x2c\x3c\x9c\xfb\x81\xe6\xd7\x37\x72\xc0\x21\x63\x37\xe5\x01\x9c\xfb\x3a\xba\xcc\xe3\xab\x48\xbb\xd6\x3f\xad\xc1\x4b\xe4\x69\x1c\xc5\x51\xb1\x36\xe3\x5b\x4a\x17\x11\x1e\x31\xf1\x8d\x46\x24\xaf\x61\x81\x4a\xb9\xee\x06\xca\x03\xe3\xac\x5f\x5b\xfb\x26\x4a\xf2\x62\xa6\xf5\x25\x1f\x4d\x57\x97\x85\x15\xee\x7d\x0a\x1c\xa0\x4d\xb2\x07\x12\xa6\x8e\xf5\xee\xd5\x14\x2f\x78\x1c\xb7\x89\x7a\xfb\xe8\x47\x69\xdd\x3d\xf1\xff\x43\x65\x19\x63\xe0\xaa\x22\x79\xb1\x95\xd3\x44\xbc\x2b\xf4\x15\xff\x0e\x1f\x5d\x77\x54\xc5\x9f\x7e\x1a\xc0\x0a\x0c\x88\xbf\xd5\xd9\xa9\xbb\x44\x95\xb0\x34\xc9\xcb\x18\xba\x0d\x5e\x8b\xff\x5b\x58\x32\x45\xdb\x54\x95\x8c\xcb\xcc\x48\x43\x9b\x5d\xca\x02\x0f\xd8\xba\x54\x93\x76\xa2\xc8\xce\xd8\x2c\xcd\x47\x26\x84\x30\x06\xfb\xf9\xe0\x61\x88\xb9\x8f\xd2\x98\x8e\xcd\xda\x2a\x99\x74\x6a\xff\xd5\x77\x00\xde\xe0\x93\xe0\xb9\x9a\x19\x2c\xaf\x7f\xa8\x7d\xb2\xd8\x00\x9f\x34\x81\x29\x3f\xdb\x5e\x1d\xa4\xdc\x0a\xc1\x7e\x8b\xc6\x37\x1f\xaf\xd7\x37\x89\xaf\xb5\xcd\x70\x14\x47\x4b\x91\x04\x2a\x08\xf8\x7e\x14\xf8\xbe\xe0\x8f\x6a\x28\xae\xb9\xc3\xed\xa5\xc8\xc6\xa2\x86\xe5\x58\xeb\x1e\x31\xd6\x58\x9e\xcc\xa3\x7e\x62\x38\xda\xfb\x9a\xab\x8e\x29\x58\xd6\x96\x76\x19\x4b\x7a\xf6\xe8\x93\x7e\x2a\xdd\x1d\x2b\x34\xcd\xa5\x09\x44\x7c\xa0\xd8\x16\x67\x03\x2d\xd0\x4e\x4f\x57\xba\x05\x4a\x73\xfb\x8c\x32\x59\xff\xd7\x9a\x5b\x3d\xd5\x51\x95\x24\x00\x70\xd0\x27\x7b\x6c\xdd\x7b\x3b\x09\x0d\x9f\xd5\xe9\xb1\x66\x0a\x66\x60\x27\x2b\xc1\x09\x88\x59\x13\x17\x03\xc8\xf5\x09\x84\xb7\xfa\x4a\xd7\x6c\xa8\x2e\x42\x92\x2f\xdf\x33\x19\x95\x59\xdf\x02\x5c\xeb\xba\x55\x9e\x30\x7d\x5d\xf9\x0f\xb4\x6a\xb4\xf0\x2a\x04\x48\xd2\x17\xb1\x50\x69\xf6\x1d\xe7\x52\x13\x46\x52\xae\xdd\x5d\x8f\xd0\x8e\xcc\x1e\xf4\xf0\x77\xc7\x10\xb8\x80\xa9\x2a\xf8\xf7\x06\x26\xc2\xc0\x14\xc0\xbf\x62\x6d\xf8\x6d\x58\x13\x40\x35\x86\x57\x2a\x74\x61\xbe\xab\x64\xe0\xaf\x3e\x44\x37\x6f\x64\x43\xf4\xbe\x25\xf2\xa8\xde\x33\x07\x4f\x18\x0d\xb2\x1f\xfa\x8e\xf1\xaa\x8d\xe2\x29\xed\x7b\xb6\xb7\xa3\x70\x8b\xcc\x16\x02\xe8\x6e\xb7\x6b\xd3\xaf\x44\x3d\x9b\xee\xf1\x24\x8e\xb3\xd4\x64\x90\x8a\x87\x12\xbb\x78\x5d\xe9\x2f\xfc\x60\xec\x81\x57\x7f\x85\xef\xc5\xaa\x7d\xce\x11\xdb\x48\x88\x94\xf7\x17\x4c\xe1\x0b\x7a\x3e\x5f\x68\xc2\x4a\x0d\x4d\x11\x0e\x5a\x13\x77\xa7\x96\xbe\x8b\xda\x0d\xc5\x2e\xc5\x6e\x09\x43\x39\x72\x53\xd1\xc2\x37\x9b\x9c\x36\xba\x65\xbe\x06\xb1\x4e\xb1\xad\xf7\x1b\x06\x40\x02\xee\xbf\x2b\xed\xfd\x86\x2c\x97\x72\xc6\x6e\xc4\xb5\x69\x66\x21\x21\x65\x14\x4a\x52\x83\xd1\x5b\xcf\x0e\x0d\x29\xf3\x56\x43\x44\x3a\x25\xf4\x7e\xa4\x85\xf2\x30\x7c\x62\x1c\x2d\xdb\xd5\x28\xb7\xd3\xbe\xcd\x7b\x57\x83\x42\x19\x5f\x24\x53\xcb\xd1\x8c\xfe\xab\xa7\x3b\x0f\x2b\xeb\x8d\x6c\x16\xa5\x3d\x11\xa8\xff\x8d\x43\xae\x7c\xe0\x49\xe5\xa7\x1b\xa0\xa6\xed\x9e\x5d\xb1\x71\x3a\xe2\x58\x17\xe1\xf2\x14\x46\x19\x9b\x0e\x51\x7c\x84\xad\xae\xc9\xa4\xf1\x50\x3b\x1f\x65\xd6\xf4\x00\x1d\x46\x67\xea\x82\xee\x7e\x7d\xa4\x88\x99\x5c\x2c\x45\x7c\x46\x92\x6f\x2e\x5c\x4c\xec\xda\xb3\x55\xc0\x85\x54\x61\x46\xd3\x31\x61\x36\x86\xe9\xc5\x19\x88\x93\x83\xaf\x66\xa4\x32\x2e\x70\x6e\x72\x78\x7b\x48\x54\xa6\x28\xf8\x43\xec\x79\x85\x56\x4e\x1c\xdf\xc2\x60\xc4\x6a\x76\x1f\xfe\x73\x58\xa4\xbe\x83\x8d\x16\xef\xf1\xa2\x96\x7f\xbb\x8d\xdd\x1e\xe1\xea\x3f\xd2\x86\xff\xe3\x6a\x9a\x21\xbe\x40\xb1\x0e\xbd\x90\x6b\xca\xd9\xa6\xd5\x79\xd8\x88\xb0\x5f\x2f\xa3\xd1\x88\xe9\xc3\x7c\x0d\x5a\xe4\xf1\x1c\x6e\x8e\x35\x99\xdd\x9c\xcc\xd3\x9e\xe1\x4d\x0c\x0f\xfb\x72\xe0\x4b\x83\x97\x9b\xc4\x42\x97\x32\x6b\x33\x2a\x6e\xe2\x55\xed\x06\x76\x94\x4f\x6a\x4b\xf0\x0b\xed\x7c\xd5\x9a\x42\xa1\x6f\x6e\x62\x1f\x9a\xf0\x79\xe6\x26\x6d\x93\x7e\x06\xaa\x50\x8e\xb9\x80\xb7\x73\x55\x79\x52\x7c\xac\x5a\x13\x77\x9b\x8a\x1e\xe1\x20\xcd\x8a\x6a\xd7\xdd\xb1\x87\xcc\xe9\xee\x8f\x13\xc0\xce\xab\x75\x76\xcf\xce\x08\xd4\xa9\x9f\x7d\xfe\x37\x85\x5b\x4f\x9b\x97\xf0\xec\x95\x69\x04\xe3\x35\xf0\x52\xaf\xa8\x15\xea\x15\x9b\x24\xd1\x92\xcd\xb4\x45\x23\x8f\x20\xe9\xb6\x3d\xa3\x70\xcb\x55\x80\x6b\x7b\xd3\xf4\x74\x05\x43\xd1\x72\x92\xb5\x2c\xd8\x23\x48\x8b\xea\x5a\xa4\xe3\xf3\x30\xc1\x78\x28\xf8\x0d\xa2\xd1\x94\xd2\x82\xff\xcb\x09\x62\xd6\xd4\xa1\xaf\x7e\xc9\xd1\xaf\x9f\x55\x00\x9e\x51\x66\x73\x9b\x14\x2d\x05\x14\x39\xaf\x74\x5b\xcf\x37\xb9\x59\x81\x60\x50\xdd\x82\x16\x62\xf1\x11\x71\x17\x80\x07\xf6\x20\x40\x4d\xed\x58\x93\x26\xde\x67\xdb\xbf\xf4\xc5\xaf\x1e\xfc\xe2\xe7\x17\x50\x3d\xc6\x3c\x3a\xa5\x6d\xab\x28\x3f\xc2\x75\xdf\x0c\x3c\x8d\xee\x9e\xb6\x8e\xba\x35\x29\xf9\xd0\x54\x2e\x20\x6a\xdd\x6a\x9a\x2d\xb7\xfc\xad\xbd\xad\x49\x47\x6f\xd7\xc6\x17\xed\x51\x59\xdf\x64\x56\x54\xcb\xb0\x25\xbf\xaf\x0d\x90\xde\x0f\x3e\xa5\x9e\x65\x3f\x9a\x20\x8e\x89\x5f\x5c\x4b\x09\xdf\x3c\xa1\x90\x26\x6b\xf9\x23\xd5\x8a\xc3\x28\x37\x25\x8c\xb2\x67\x5d\xe3\xb5\xe8\xf3\x88\x33\xfe\x3b\xda\x8b\x1d\x2c\xce\x57\xe7\xaf\x54\xeb\xe0\xf6\xeb\x98\x73\xe8\xb2\x6d\x07\x1a\xc0\xa5\x10\x14\x51\x68\xa6\x3c\xa0\x88\x77\x6a\x94\x9d\xf7\x74\x74\x19\x66\x5b\xa5\x11\x2b\x91\x5d\xb5\x59\x4e\x58\x63\xb6\x5d\xd5\xe0\xae\xb3\x18\xb4\xa2\xf5\x48\x97\xcf\x27\x8a\xc4\xdf\xb7\x26\xdb\xe3\x59\x86\x3f\xa6\x5a\x82\x40\xe3\x5a\x0e\xd0\x05\x61\x79\x0e\x03\xe9\xb1\x20\x2a\x39\x35\x56\xa8\xaf\x4b\xae\x67\x5d\x0d\xe0\x6c\xc5\x42\x60\x62\xc2\x20\x1f\xb5\xe0\xfb\x98\xc3\xd2\xae\xdc\x19\xf1\xbf\xd0\x4e\x97\x96\xac\x6b\xdd\x61\x2f\x79\x57\x37\xfa\xde\x55\xcf\x81\x4b\x9f\xf4\x5b\xc8\x32\xa7\x00\x9c\xc0\x12\x78\x5f\x5b\x80\x35\xf4\xf1\x4d\x37\x5d\xb1\x53\xd5\x6d\xa3\x30\xf0\x20\xf0\x65\xa9\xf3\x58\xba\x24\xc0\xf7\x8f\x2d\x8c\x4b\x4b\xca\x33\x32\xa0\x54\x9f\x7c\xcb\x75\x85\x46\x99\x0d\xa3\xdc\x72\xa5\xda\x2d\x71\x8b\xb3\x9c\xcc\x5e\x57\x88\xaf\x37\x26\x18\x32\xf1\xab\x26\xa4\x65\x7c\x42\xde\x8d\xe3\x8d\xc0\x3f\xd5\x93\x2e\x03\x1e\xd8\x78\xf4\x68\xf5\x33\xc8\x60\x1f\x23\x3c\xbe\xce\x6c\xb1\x55\xb7\x80\x55\xc1\xa0\x46\xd8\x25\x20\x28\x05\x92\x67\xc9\x62\xa4\x57\x9b\x4a\x25\x6d\x6f\x47\xe9\x3f\xf2\x36\x87\x24\xe9\xee\xf8\x51\x77\xfd\xaf\x12\xea\x0e\x1c\xfe\xd7\xb4\xd4\x2f\xca\x7c\x82\xe0\xf0\x35\x97\x53\x14\xb6\xc8\x7f\x6f\xe0\xe0\x99\x3c\x32\xc9\x94\x0f\x18\x19\xee\xe6\x54\x3f\xe7\xe7\x65\x34\xfd\x64\x42\x08\x2e\x8e\xb9\x7b\x27\xf1\xa4\x07\x74\x6d\x3a\xde\xd7\xc8\xf6\xfb\xd2\x60\x66\xfb\xb3\xb1\x9f\xe0\xff\x4c\x43\x7d\x6e\x07\xff\xa6\x4e\x6d\x91\x29\x1d\x1b\x94\xf4\x5a\x40\x10\xf1\xc9\xba\x4f\xb5\xc8\x0e\x3d\xdf\x53\xbd\x25\x3c\xda\xdd\x94\xf3\xf1\x31\x3d\x27\xf1\xaf\x26\xd0\x13\xfb\x3e\xc3\xd4\xc1\x99\x40\x3b\xb9\xca\xd3\x8a\x61\x99\x47\x85\x9d\x56\x1e\x0f\xa7\x54\xa4\x7d\x51\x91\xda\x4f\x05\x0a\xe2\x72\x51\xf3\x78\xd2\x28\x29\xf6\x79\x2b\x8d\x3b\x34\xfb\x91\x80\x3e\xd2\xf1\x80\x07\x46\x41\x39\x93\x97\x6a\x89\x71\x3e\x82\xd5\x0c\x14\x2b\x73\x5a\x24\x30\x30\xe1\xc7\x26\x16\x81\x7e\xdb\xeb\x99\xa4\x6f\xb3\xb4\xcc\xf7\xd0\xed\x8a\x44\x09\xdd\xae\x73\x60\xad\xbe\x13\xdd\xc9\x3f\x42\x55\x49\x3b\x63\x03\x3c\x01\xdb\x09\xe4\x46\x77\x14\x84\xdd\xae\xd9\x6e\x96\xae\xd2\x6a\xc9\x6a\xbc\x5a\x93\xef\xa2\x52\x6f\x3c\xa3\x45\x4e\x2f\x2a\x19\xaf\xcc\x90\x72\xcf\xde\x96\x93\x99\x43\xec\x88\x8d\xe7\xbe\x6a\x56\x9f\x0a\xb4\x16\xa7\x86\xba\xdd\xd3\x22\xc6\xb7\x14\x93\xf6\x94\x82\x8e\xda\xa1\xcd\xd6\x56\xa2\x38\x06\xa3\x1a\xbb\xc7\x7d\x85\xd6\xbd\x3f\x56\xf0\x20\x93\x17\xb6\x5a\xc4\x0f\x6e\x9f\xa2\xef\x63\x10\xba\x27\x01\x7e\xf4\x7c\x87\x82\x0d\x11\x16\x6c\x39\xdd\x5f\x6e\x37\x23\x6c\xdd\x50\x68\xcd\x70\x60\x87\x10\x6d\xa9\x9e\x91\x9b\xca\xd5\x0b\xc0\x78\xd9\xc0\xc6\x86\x7f\xf9\x53\x05\x52\x64\xf4\x08\xc2\xbd\x29\x92\x3f\x45\x4d\xf3\xfd\xb1\x42\xe0\xa0\x7e\x83\x88\xe2\xe7\x58\x3d\xf1\x48\xa0\x0c\x84\x69\x78\x4c\xdb\x86\x4c\x75\x64\xbe\x0e\xd3\x22\x5a\x9a\xa8\x06\x61\x5d\xe1\xe3\xf5\x67\x14\xbe\x28\x2b\xfb\xfd\xea\x29\x2e\xba\x6e\x31\x8d\x65\xe9\x1c\x37\x44\x18\x5d\x13\x57\xdb\x09\x67\x8a\xf0\xf2\xfa\x2e\x5e\x27\x9f\xb8\x56\xe4\x28\x4b\x0b\x1b\x52\xbc\x5c\xdd\xa6\x68\x39\xd3\x6d\x22\x9d\xbf\xaf\x64\x56\x2e\xd5\x2a\x5b\x2f\xb4\x97\x52\xe5\x8b\x8a\x01\xf2\xe7\x63\xa5\xfe\xfd\xe7\x6a\xab\xce\xca\x24\xa7\x12\x95\xb8\xb2\xd3\xdb\x70\x93\xcf\xc3\xd8\xce\xa0\xcf\x84\x2c\xe1\xc7\x63\xbf\xb5\x5d\x63\x25\x4b\xfe\x17\x8c\x44\x91\xc7\x50\x9c\xde\xbb\xda\x17\x9b\x43\x07\xd9\xc5\xbd\xea\x31\x58\x1b\x28\xb0\x1c\xa7\xc6\x11\xb0\x91\x1b\x5a\x81\x61\xa3\x89\xee\x3b\xca\x2c\x4b\x21\xb4\x9c\x52\x20\x06\x84\x90\x5c\xea\xac\xcc\xb0\x84\x43\x91\x2a\xb2\xcf\x79\xa5\xaf\x23\x52\x3d\xb8\xab\xca\x10\x44\x76\x13\xaa\xb3\xa6\xb3\x0c\x6d\x5c\xbc\x5a\xe5\x06\xbe\xe3\x71\x32\xf0\x22\xed\x27\x55\x67\xa4\xb0\x66\x88\xc2\xb2\x13\xe3\x75\x36\x8c\x17\x35\x4b\x51\xb8\x88\x22\x01\xe1\xa1\xb2\xad\x8e\xb2\x91\xbe\x84\x39\x84\xf7\xf1\x06\x1e\xad\xc8\xa8\x3e\xed\x00\x9e\x99\xb5\xe1\x40\x4a\x97\x22\x02\xa2\xd0\x43\x97\x54\x33\x77\x54\x92\xb8\x16\xa6\x03\x97\x50\x14\x1c\xe9\x82\x8a\x94\xf2\x61\xba\x4c\xdc\x28\x87\x9e\x7a\x9d\x92\x75\xe5\x23\xb2\xe0\x30\xe7\x0a\x36\xaa\x50\x2b\x61\x9a\x24\x20\x9b\xe7\x53\x74\xf1\x28\x07\xde\x54\x72\xc3\x1f\xe3\x16\xa5\xea\xe4\xc1\x49\x99\x4d\xcc\x90\x81\x37\xd8\x5b\x07\xba\x9a\x3f\x50\xec\xe4\x61\xda\x8d\xe0\xff\xb3\xe0\xc2\x59\x0f\xde\x40\x03\x44\x94\x04\x95\x09\xde\xee\x4e\x43\xbb\x65\x68\xa2\x64\x29\x33\x43\xab\xdc\xfd\x4e\x2a\x77\xbf\xba\x09\xfa\xfe\xfd\xed\x32\x86\xd1\x0a\x73\x73\x1c\xa3\xd9\xc3\x18\x75\x39\xcc\xa9\x12\x38\x8a\xff\x15\xa5\xfd\x09\xe3\x6f\xec\x5b\x27\x95\x60\x46\xd7\x64\xd8\xa6\xb1\x73\xdd\xd2\xe0\x11\x94\xd3\xf8\x1f\xb4\xe9\xe9\xe6\xf8\x33\xfa\x65\xf4\x33\x53\x90\x91\x8b\x60\xf1\xd8\x33\xd5\xd3\xf3\x8e\x6a\x36\x40\xcf\xc6\x06\xec\x44\x64\xa4\x77\xb1\x06\xf0\x09\x5e\x9c\x33\xd3\x58\x94\x60\xf2\xaa\x4a\x55\x7a\x51\xb1\xd7\xb7\x9f\xfe\x86\x7e\x87\x8a\xe1\x7f\xfb\x39\xa0\xb3\x05\x6b\x4d\xaf\x45\x40\x88\xd5\x2f\x62\xcd\x9d\x01\xa0\x5b\x4c\xad\x95\x54\xd4\x31\x5f\x28\x59\xb5\x71\x3c\xad\x6a\x5c\x9b\x0a\x6b\x77\x09\xc5\x22\x0d\x7c\x97\xa9\x55\x4f\x33\xc9\x87\x28\xb7\x1e\xaa\x88\x04\x78\x43\xb1\xb8\x36\x6a\x39\xc1\x91\xd9\x2f\xb4\xbb\x51\x6f\xda\x9b\xe6\xaf\xd3\xdf\x03\xb8\x7e\x6b\xac\x16\xeb\x7b\x81\xef\xd6\xff\x89\xeb\x6d\xe5\x65\xb5\xc2\x61\x75\x63\x8c\x73\xa0\xf1\xce\xca\xa7\x34\x8e\x6d\xdf\xf6\xe2\x35\x2d\xdd\x70\x77\xac\xcd\x77\x4f\x6b\xb6\x36\xcb\x22\x62\x6e\xdd\x55\xc5\xe7\x41\x99\xc5\x50\x0d\x65\xc7\xd1\xc0\xdb\x8a\xd5\xcc\xa5\x17\x67\x0f\xb5\x17\x16\x28\xf6\x74\x1d\x45\x57\xd9\xff\xbf\xb1\xd0\x88\xd7\xbb\x5a\xfb\xb0\x46\x22\x76\x84\x2a\x29\x36\x85\x07\xd8\xa4\x44\x9e\xf8\x45\x5d\xe2\xba\xad\x4a\x5c\x75\x6b\x0a\x06\x00\xc5\xa9\xe9\xb5\x54\xc1\x40\x67\x1c\x9b\x6a\x55\xe8\x0f\xd2\xbc\x80\x5f\xa5\x98\xeb\xa9\xe1\x7b\xc9\x2d\xa0\x90\x51\xb7\x22\x8e\x8a\x7a\x12\x03\x76\xf0\xe8\x50\xb8\x90\x74\xbb\xde\xd3\x3b\xd4\xee\x67\x51\x2f\x4e\x3d\xf5\x5d\xd8\xf2\x3e\xe4\x3e\xe1\xcc\xae\x72\xcb\x78\x73\x51\x88\xf8\xc6\xf3\x1d\xe5\xa5\xc2\xc0\x69\x0d\x85\x76\x59\x8c\xdf\x67\xcf\xe8\x66\xde\x7d\xe5\xcd\x83\xc8\x18\x2f\x57\xfa\x7e\x9e\x3b\xf9\xad\xa6\x0d\x76\xc9\xf6\x6c\x66\x44\x58\xbb\x49\xa6\x50\xc5\x48\xf0\xd6\x27\x44\xf5\x17\x7c\xec\xa8\xf0\xda\x74\x91\x22\xc5\x4f\x0f\x11\x61\xf7\x7d\xcc\x71\xe1\x3c\x36\xa8\x2f\x8c\xb2\xe8\x55\xc1\x76\xc9\xfa\x47\x5f\x80\x7a\xc9\x6d\x65\xc8\x7a\x49\xe5\x1f\xa1\xc9\x6d\x4e\xaa\x06\xa8\xd5\xfd\xcb\xb1\x12\x52\x81\x7e\x89\xc8\xee\xd3\x63\xc6\x44\x79\x53\xbb\xf8\xbc\x89\x6b\xe3\xcf\xab\x4e\x5f\x61\x47\x51\xaf\xa5\x6c\x5a\x31\xa3\xc4\xb3\x55\x49\x56\xa5\xc3\xa1\x49\x50\xe3\x45\xc1\x13\xe5\x5a\x11\x18\x69\xfd\x86\x18\x8a\xbd\x36\x41\xf7\x1f\x99\xb5\x27\xbd\x6e\xda\xbb\x14\x24\x21\x5e\x38\x1e\x28\x4b\xb2\xb7\xe8\x1d\x22\x00\x7e\xa0\x10\x43\x67\x71\x3d\x82\xa6\x54\xe2\x6a\xc7\x55\x88\x72\x4d\x99\xb1\xfc\x5f\x3a\x8a\xd8\x52\x5d\xc4\xab\x54\xa9\x63\xbd\x5a\x3c\x1c\x8c\xfe\xbf\x08\x14\x40\xb0\x4e\x38\x9c\x3b\xdc\x0e\x07\x51\x62\x73\xcb\xf6\xe3\x58\xeb\x9e\xe8\xf8\xf5\x6c\x5d\x99\x2d\x70\x7a\x03\x5c\xef\x9e\xf5\x9d\xc3\x60\x7e\xbe\xca\x75\xcb\x9c\xeb\x99\x02\xc5\x50\xb0\x8c\x46\xa1\x9e\x51\x66\x8b\x02\x9b\x2f\x36\x91\x13\x78\x7a\x7c\x52\x33\xd7\xdd\xbf\xbf\x0a\x90\x11\x31\xa0\x96\x75\x5b\xc9\xf2\x6a\xb8\xf1\x87\xd8\x40\xf0\x8c\x2e\x2b\xca\xa7\x35\xe5\x51\xca\xb7\x5c\xaa\x7c\x60\xc1\xcd\xd4\x4f\x4f\x54\x8b\x6d\x9e\x13\x72\x97\xab\x0b\x62\x1e\xa4\xf0\x7b\x0f\x34\xf5\xad\x30\x49\xcf\x6d\x41\x4d\x31\x9a\x93\x51\x21\xa3\x1e\x9e\x31\x58\x17\xf6\x74\x26\x3c\xd2\xe8\x59\x8b\xf2\x51\x5d\x99\xe2\x0b\xed\xcc\x56\x89\x82\xb6\xe8\x43\x6e\x2b\x9d\x50\x4f\x95\xe9\xdb\xc4\xa2\x36\x9a\xef\xad\x46\x0a\x76\x9f\x9f\xa8\x08\xf7\xdb\xf4\x08\x26\x94\x31\x15\x5d\xed\x0b\x3c\xbd\xce\xd1\xc0\x44\x93\x07\xc6\x58\x2c\x61\x51\xdb\x90\xa5\x58\x92\xd9\x7e\x84\xed\x51\x74\x03\xe9\xb6\xf8\xa4\xb6\x92\x1c\xfe\x72\x3b\x33\xbd\x28\xcd\x95\x2a\xe9\x0d\x5c\x0e\x9f\x78\x41\xcf\x17\xd3\x17\xbb\xf4\xcd\x08\xfb\x31\x69\xf8\x58\x09\x62\xe6\x36\x8e\xb1\xc4\x80\xa4\x73\x41\x35\x87\x20\x8a\xb5\x7d\x79\xec\xe1\x34\xac\xb2\x89\x92\xc0\x6e\xbc\x11\xa0\x08\x3c\x5a\x30\x4a\x0a\x9b\xe4\xb8\x2d\x5a\x20\xcd\x67\xe8\x61\xf0\xb1\x6b\xf9\x2e\x9b\xe4\x95\x48\x71\xb9\x21\x50\x8e\x65\xe5\x06\x15\xc2\x90\x54\x3f\xee\x12\xde\x9e\xb5\x43\x29\x50\xe1\x19\x3d\x50\x82\x3c\xdc\x5f\x91\x75\x49\x53\x81\xf3\x24\x0a\x97\x5b\x48\xfa\x94\xf6\x8b\x97\x32\x7e\xce\xed\x98\x4b\x65\xd6\x85\x5c\x63\x4b\x69\x17\x23\x8f\x11\xba\x84\x8f\x78\xf3\x41\xb4\x24\x31\xa7\xcc\x63\x6e\xaf\xf0\x89\x0a\x72\x56\xd2\x35\x5b\x66\x51\x3e\xd4\x76\x66\x50\x2e\x14\xdf\x50\xc5\x60\x48\x93\x5e\x9a\x90\x34\xcb\xc2\x36\x44\x11\x5c\xdf\xc7\x57\x09\xde\xd0\xdd\x9b\xc8\xf6\x86\x69\x22\x2d\x01\x34\xad\xd8\x75\x95\x4f\x9a\xd4\x3d\xe3\x34\xe9\x17\x36\x1b\xb6\x14\x88\x9e\xde\xb8\x24\x84\x0d\xea\x9c\xa3\xd8\x1a\x97\xae\x8b\x41\xad\x22\xa2\xbd\xa6\x26\x7d\x94\xac\x50\xb6\xd5\xd2\x9c\x3b\xba\x28\x21\xe3\xed\xdc\xb8\x5f\x60\xae\x57\xb7\x2c\x00\xd1\xc2\xd5\x5f\xc7\x6a\x8d\xad\x82\x60\xc1\x4d\x9d\x9b\x2f\x1f\x6a\x17\x83\x28\x49\x6c\xb5\xd0\xce\xcf\x8b\x2a\xd6\x15\xa5\x48\x7f\x65\xec\x03\x24\xc6\x2b\xa1\xcf\x87\x9a\x3a\xa6\x2e\x61\x24\xfe\xd9\x33\xeb\xbe\x9a\xde\xea\x3c\xab\xcc\xa9\xe2\x78\x6d\x35\x4d\x7b\x53\x13\xe0\x48\xd5\xe3\xba\x34\x11\xbc\xfe\x1f\x0d\x4b\xd4\x42\xbb\x30\x59\xb4\xb4\x34\x55\xad\x39\x8c\xd4\xd7\x0f\x06\xb4\x06\xcc\x81\x0d\xc5\x50\x8e\x92\xa5\x34\x1b\x32\x5b\x42\xbb\xe9\x79\x63\x73\x27\x0d\x69\x92\x65\x9b\x4d\xa9\xf6\x3e\x12\x22\x81\x35\xe8\xea\xae\x9b\x96\x49\x1a\x2e\xd3\x63\x07\xda\xf8\x4e\x30\xa9\xd6\xaf\x46\xc9\xf3\x13\x66\xc7\x26\x8b\xf2\x34\x81\x79\x00\x70\x2f\xdf\xa3\xcb\xe2\xe3\xa6\x6e\x5d\x98\x9a\x6a\x87\xe5\xc7\xaf\x6d\x2e\x31\x21\x60\x3f\x8a\x98\xe4\x94\x97\x32\xb0\x44\x6a\x9a\x51\x8d\x94\x53\x08\xce\x30\xfa\x8e\xf3\xa3\xe7\x7f\xc2\x02\x89\xe6\x39\xaa\x2b\x80\xa5\xbc\xaf\x62\xcb\x55\xc2\x89\xcc\xa8\xe4\x43\x08\x63\x88\x14\x18\xa1\xc4\xa8\xce\x75\xcf\x76\xdc\x8d\xba\x36\x42\x88\x3b\xaa\xf6\xff\xf7\x9e\xfa\xff\x2e\xb5\xde\x9a\x3b\xdc\xd1\xa2\xea\x0f\x55\x71\x9f\x50\x58\xd7\x92\xec\x13\x72\xeb\x13\xf2\xf0\x2d\x25\xd0\x3e\x29\x15\xaf\xf5\xdd\x15\x5f\xde\x9a\x65\xbc\x4b\x8c\x40\x98\xd2\xf3\xf1\xd8\x6b\xf8\xbf\xf2\xe2\xb4\xd7\x0b\xc2\xbb\x13\x8d\xb0\x96\x93\x0b\x65\x8f\x75\x3e\xa9\xa1\x62\xf6\xcf\xb5\xd7\x2c\xab\x65\x60\x5d\x47\x6f\x47\x54\x9f\xe8\xc3\x88\x23\x2f\xa8\xe6\x53\x9e\xb2\x47\x2e\x53\x59\x02\x4d\x6b\xf1\xe4\x25\x2a\x63\x72\xd4\xe5\xdc\x5d\x17\x0f\x3a\xa4\xb8\xf2\xb7\xca\xf3\x34\x8c\x4c\x61\x73\xd2\x40\x92\x0a\x2d\x06\x02\x02\xae\x9b\x4a\x1e\x6a\x4b\x49\x28\xbd\x39\x56\xb4\xd4\x2b\xca\xb6\x53\x0a\x45\x61\x59\xe8\xe5\x72\x43\xf3\x76\x37\x6a\xeb\x32\x4c\xd9\xfa\x7d\x5a\xc5\xaa\xd7\x28\xda\x43\x4a\x87\xc8\xf7\x6d\x4c\x91\xa5\xf1\x94\xbf\xe4\xf1\xd8\x43\x74\x2e\xd0\x05\xa3\xb4\x7e\xb6\x81\xce\xf0\x85\x36\x84\x63\x5d\x3d\x15\x1f\x90\xf0\xa6\x01\x41\x14\x66\x65\x6e\x7a\xf8\x08\xba\x1c\xcc\x99\xe0\x93\x87\x46\x3b\x26\x1a\xee\xf4\x19\x53\x58\xb0\x13\x93\xb2\x36\x69\x99\x14\x6c\x11\xef\x1a\xa7\x55\xe6\x27\xda\xda\x9e\x4d\x0f\xe3\x1e\xe1\x62\xd4\x25\xce\x0e\xb5\x47\x25\xeb\x56\xe2\x71\xbf\xa7\x9f\xfd\x7b\x5e\xf6\xb0\x8c\x1c\xa3\x4f\x94\xf2\xe9\x0f\x05\xc4\xe7\x9b\x56\x55\xd4\x64\x81\xfa\x42\x69\x01\x6c\x29\x3e\x56\x65\xd3\x70\x10\x8d\x5a\xd5\xfa\xee\x42\x6e\x5f\xe7\xa9\xbb\x25\xce\xcf\x33\x04\x83\xe5\x1a\x38\x94\x51\x2d\x82\xef\x61\x98\x81\x85\xb9\xa1\x9b\x1f\xd5\x86\xcc\xb5\x7a\x36\x93\x1c\xab\x14\xf5\x4d\x05\x37\x19\xa5\xab\x36\xb3\xbc\x73\xb9\x72\xb6\x93\xa2\xbd\xab\xb0\x0c\x1b\x6a\x41\xe8\x67\x26\x1f\xb5\x7c\xcb\x04\x59\x20\x1f\xab\x28\x27\xb3\x21\xb2\x02\x0a\x52\xa5\xf2\x42\x97\x2d\x25\x99\x27\x34\x36\xff\x45\xc6\x0a\x62\x95\xd7\x56\x54\x67\xf4\xcd\x5e\x53\xf5\x0f\xd2\xf2\xc8\x29\x45\x71\xfc\xb8\xaf\x7c\x51\x8e\x75\x91\x2e\x85\xc2\x11\x1a\x53\x37\x03\xa5\x7d\x7f\x53\x19\x09\x16\x76\x38\x2a\x18\x1c\x71\x44\x30\x2d\xd8\x53\xf9\xb8\x19\x21\x02\x2f\x3c\x7e\xea\x13\xb2\x26\x75\x90\xcf\x20\x2d\xf3\x22\x4d\xa6\xf4\x43\xa9\x7e\x60\xc2\xdd\x05\xeb\xfb\xbd\xa6\x30\x2d\xb7\x23\x93\x99\x02\xed\x7d\xdc\xc2\xde\x8e\xdf\x5e\x3f\x41\xf2\xcb\xbb\x9c\x56\xdb\x4e\xf2\x92\x34\x0d\xaa\xa7\xe5\xc4\xac\x0f\x38\x76\x87\x0a\x7d\x45\x9c\x73\x05\x3f\x22\xfc\x00\x7f\x95\x37\xc7\xaa\x46\x70\x56\xc9\x11\x7e\xf9\x37\x0e\xb5\xbc\x10\xd3\x4f\x75\x6c\xfd\xd3\x26\x1f\xd1\xfc\xeb\xa5\xc9\xec\x94\x47\x70\xef\x5d\x57\xa0\xff\x4b\xaa\xb1\xff\x49\x0d\xa0\x39\x3f\xdf\x1e\x58\xb3\x82\x92\x0e\xf6\xdd\x2b\x8a\xdb\x77\x45\x25\xb2\xb9\x89\x8b\x29\x45\x5a\xdd\xb5\xee\x1f\xde\x8f\x30\xb7\xb1\x09\x6c\xeb\xd2\x70\x96\x8e\xb0\xf1\xa1\x8f\x07\x75\x6b\x3e\x9e\x94\x53\xed\xd9\x67\x7d\x2b\xe6\xa6\xfa\xbb\x89\x26\xc5\x6d\x8d\x3d\xbb\x31\xf6\x22\x95\x97\xc1\x5c\x47\xf5\xe2\x32\x96\x37\xae\x96\x50\x8c\x80\xe7\x7c\x81\x20\x7a\x48\x71\x6e\xa0\x82\x86\xc9\x79\x0d\xf9\x3b\x5e\xcd\xcc\xba\x6f\x6f\x1d\x27\xe6\xb5\x88\xb7\x2b\xa8\x0d\xa3\xc4\x30\x48\x44\xd3\x44\xf2\x14\x55\x41\x3c\x4d\x05\x13\xec\x25\xff\xaa\xa9\x2c\xb2\x1c\x15\x79\x38\xc0\x2b\x90\xdd\xc8\xef\x85\xe7\x1b\x16\x61\x6a\x20\x4d\x29\x1e\x1e\x2f\xe7\xce\x2e\xcd\xe9\xad\x7d\xa2\xde\xc5\x20\xea\x0f\x80\x7e\x56\xd6\x43\x73\xce\x49\xa8\xa1\xc4\x42\xbe\x99\xac\xaf\x2e\xc2\x81\xb8\x4f\x69\x4f\x3d\xaf\x3a\x46\x59\x54\x98\x24\x0a\x4d\x4c\x1d\x0b\x5c\xd8\x35\x42\x1e\xbb\x10\x7c\xee\x30\x17\x27\x4e\xa9\xee\x8f\xc9\xed\xa8\x10\xd8\xea\xe2\x41\x07\x0d\xf5\xb6\xa8\x97\x1e\x2a\xf3\x19\xa6\xc3\x6e\xe4\x64\x52\xdd\xef\xb8\xe4\xe8\x64\x83\x3c\x4d\x3b\x0f\xd3\x11\x76\x5c\x04\x77\x47\x03\xc5\xdf\x3f\x3a\x81\x9a\xcb\x07\xe5\xd2\x52\xcc\x06\x6c\x62\xc0\xae\x44\xa5\x2e\x35\x7c\xff\x41\x02\x51\xd1\xda\x84\x09\x71\x1e\x61\x21\x4e\x38\x7a\x43\xb7\xf4\x43\xd5\xb8\xc9\xcd\x70\x4a\x8b\x74\x63\xf1\x16\x82\x19\x7d\x08\xe8\xf6\x1b\x4d\x10\xc9\xd8\x94\x09\x75\xf7\xaa\x9f\x45\x55\xe6\x2d\xbc\x5f\x3e\x09\x1e\x73\xb7\xb5\x66\x5a\xad\x97\x5c\x6a\x05\xcc\x83\xe4\x59\x0d\x0b\xc4\x28\xb2\x21\x74\xc1\xb1\x27\x70\x0e\x80\xa0\xfb\x1f\x2b\x6d\xd8\x8d\xe0\x33\xbe\x2b\x58\x76\xc3\x34\x29\x32\x13\x16\x29\x9b\xd9\x63\x3c\xbf\x1f\x28\xcf\x88\xf7\x15\xb1\x9b\x0c\x16\xf7\xf9\x0c\xf1\xbb\x4a\xa7\x63\x8b\x7b\xcc\x32\x71\x3d\xf5\xe1\x7c\x30\xc1\x6c\x74\xd3\xe6\x7d\xcc\x67\x07\x12\xae\xe2\x7a\xfe\xb4\x0a\xf5\xca\x7c\x92\x37\xc7\x14\x3f\x3e\x69\x94\x6e\x17\x1e\x7c\x4b\xf5\xc6\x11\x34\x09\x69\xf8\x53\xee\x95\x96\x49\xb4\x62\xb3\x1c\x24\x40\xa5\x44\xc7\xfc\x60\xb1\xb9\xf3\x53\x34\x4b\xd3\x61\x0e\x8c\x24\x42\x30\x60\x24\xb1\xc5\x71\xee\x88\xd0\xf9\x6d\x6c\x51\x7c\x82\x9b\x15\x52\x90\xa7\x00\x35\x91\x1b\x0f\xf9\xb1\xa2\x5a\xb3\x27\x31\x58\xf8\xa4\x36\xc2\x88\xa9\x4b\x54\x67\x94\xa2\x50\x21\x3b\xae\xfa\x89\xc7\x55\x92\x10\x9a\x2c\xaf\xb6\x7f\x87\x43\x7b\x4f\x99\x7d\xbd\xa7\x18\xca\x61\xb5\x8d\x0f\x27\x19\x6b\x9a\x32\x5c\x37\x0f\x78\xa1\x6d\x4d\x16\x47\x36\x83\x7e\x25\xc2\xf2\xed\xc0\x93\xe2\xb7\x95\x86\xb9\xab\x48\x4c\xab\x64\x01\x85\x4b\x8c\x98\xdd\xeb\x2a\x78\xbd\xa8\xf0\x59\xbb\x3b\x8a\x2a\x17\x5b\x93\x11\x82\xd3\x59\xd1\x54\xdf\x06\xb2\xce\xcf\xe8\x43\x08\xf6\xae\xeb\xbd\x69\x53\x75\x14\x38\x3f\xc1\x92\xfc\x73\x6c\x54\x22\x5e\xa5\x86\xe9\xd9\xb1\x8e\xbd\x1d\xdd\x39\x7a\xd5\x64\x99\x9d\x56\x2e\x96\xd7\x14\x51\x13\xd0\xa9\x09\x26\x92\xb4\xdf\x7c\x48\x71\xe0\xf3\xbf\x3e\xa5\x48\x64\x57\x95\x74\x3a\x80\x97\x68\x87\xff\x89\xab\x5b\x14\x83\xcc\xae\x42\xc1\x0b\x3a\x98\xcc\xb0\x46\xcd\x07\x75\x0f\xac\x46\x0f\xc6\x5a\x14\xd0\xd7\x81\x49\xca\x78\x68\x93\x2a\x0b\xa8\xfe\x02\xe0\xc0\x8b\xb4\x63\xf3\xb1\xe2\x96\x45\xc3\x61\x99\xf0\x3c\xf1\x0c\x9b\x5b\xf4\x40\xf8\xb8\x91\xa1\xbe\x12\xa5\xb1\x71\x89\x06\xe3\x9f\x34\xf2\xe7\x56\x83\x31\x76\x95\x17\x0c\xa2\xae\x4f\x50\xd8\xf2\x8e\x22\x25\xb1\xbf\x7b\xc2\x71\x69\xb2\xa2\x64\xb1\x70\x24\xec\x17\x95\xea\x05\xdc\x62\xc5\xad\xc3\x2f\xe6\x9f\x8b\x91\x42\x72\x04\x83\xf9\xc9\x3c\x6b\x7a\x60\x28\x20\xfd\xbc\x06\x62\xa6\x2e\xa1\x29\x06\x24\x9d\x05\x09\x23\xc9\x98\x54\x4c\x71\x7b\xec\x7b\x5c\x53\x1d\x49\x5c\x42\x9b\xad\xc0\x36\xe6\xc8\x2c\x7f\xea\xde\xd8\x17\x90\xea\x8a\x7f\x54\xdf\x4b\x91\x87\x20\x0c\xb8\xaa\x60\xb8\x57\x9b\xfc\x33\xd7\x22\x1b\xf7\x44\xc2\x09\x70\xa4\xdf\xc1\x7c\xe0\x93\x26\x79\xae\xd8\xac\x56\xf9\xe0\xb4\xce\xf6\xe9\x33\xac\xb6\x83\x0d\x45\x4b\x14\x20\xfb\x7d\xac\x23\xe3\xd1\x14\xb1\xc1\x2e\x82\x8d\xf3\xd8\x58\xed\xa2\xc7\x9a\xa2\x2a\x11\x64\xa1\xdf\x41\x50\x09\x2a\x2b\x1f\xab\x04\x79\xc9\x76\xb3\xd2\x64\x6b\x88\x6e\x91\xac\x83\x96\x86\x15\x6b\x63\xa2\x49\xa4\x52\x27\xca\xac\xa1\xb6\x85\xf7\x09\x99\x00\x3e\x56\x45\xf3\x62\x60\x0d\xa9\x8c\x3b\x48\x11\x34\xaf\xb9\x1d\x30\x21\xb7\x84\xd6\xc1\x74\xe7\xb3\x0f\x09\x79\x86\x26\x29\x97\x4c\x58\x94\x99\x75\xc2\x1e\x48\xf1\xb8\x0d\x8a\x7d\xe8\x96\x56\x1f\xd8\xac\x75\xb6\xaa\x24\xa8\x04\xa6\x54\x12\x7f\x55\xbb\xda\x01\xce\x61\x22\x27\x40\x36\xa0\x59\xbf\x11\x28\x92\xfa\x1b\x0d\x2e\x5a\x4b\xb6\x08\x07\x68\x39\x89\x6b\xd1\x44\xb0\x5e\xfd\x98\x18\x47\x35\x29\xba\x99\x38\x4e\x19\xf4\x2a\xe4\x4c\xcd\xd4\x6c\x82\xd7\x24\x69\xb2\x9a\x66\xde\x91\x4e\xb2\xc1\xea\xaa\xf9\xb8\xc9\x1d\xde\x24\x49\x5a\x26\x21\x33\x6f\xb8\xf8\x38\xa1\x37\x49\xe3\x02\x51\xd9\xa9\xf1\xdf\x79\xc8\x7b\x59\x2a\xb3\x6a\xda\x0e\xd3\x0c\x86\xee\xc8\x2b\xde\x18\x6b\xcc\xea\x58\xa9\xb4\xc3\x3b\x0a\x29\xca\xe3\x9d\xd6\x81\x85\xed\x53\xba\xec\x75\x6b\xa2\xff\x1b\x17\x83\xbd\x9a\x05\xf8\xa6\x6a\xa1\xdc\x0e\x26\xbe\x95\x9e\xac\x63\xe7\x55\xcf\x1f\x23\xee\xfa\x58\xc1\x0d\xb9\xc8\x84\x36\xee\x4f\x9a\x52\xe4\x7e\x69\xb2\x5e\x64\x12\x95\x19\xf2\x00\xe5\x93\x06\x05\xa8\x2f\xb4\x57\x6d\x5e\xac\x9a\x0c\x4b\x3e\x56\x04\xd8\x59\xf2\xb1\xee\x5f\xa6\x4b\xd5\x9f\xda\x69\x55\x92\xe3\x86\x32\xba\xfa\x40\xc5\xf1\x3f\x68\x05\xb6\x4d\x0d\x54\x8b\xcd\x9a\xcd\xd0\x6a\x94\x3a\x93\x2f\xe5\xdf\x09\x94\xb0\xf5\xbd\xb1\xaf\xad\xde\xa1\x88\x41\xe4\x20\x14\x89\x63\xac\x2b\x56\xe3\xe7\x26\x21\x2e\xbf\x5a\xdd\xe3\xb4\xaa\x26\x31\x93\x55\x0c\x00\x7d\xad\xfd\x62\xa0\x7a\x8f\x13\x28\xe8\x2c\x1a\xda\xbd\xba\x70\x15\x28\xd1\x21\xce\xae\xc4\xe0\xc8\x3f\xb8\xdf\xa1\x3c\xca\x59\x81\x39\x63\xaa\x0d\xbc\x54\xf6\xcc\xaf\x25\x23\x24\x75\x36\x8c\x42\x6c\x5f\x52\x32\x9f\xf2\x66\xed\x1b\xca\xd7\xe7\xae\xaa\x41\xfc\xa7\xff\xf1\x7f\x32\xed\xa9\x4a\xe7\x54\xf5\xe6\x9c\x36\x41\x80\x67\xa0\x80\x04\x9e\xd2\x34\xd1\x28\x85\xc5\x95\x86\x2e\x8a\x3b\x14\x7d\x03\x93\x10\xb0\x12\xb0\x3a\xc8\x58\xe5\x59\xa7\x95\x36\x5f\x1e\x1d\xdd\x47\x03\x40\x4c\x7f\xe9\x16\x50\x8d\x7b\x5f\xb5\x35\x8e\x51\xc0\xc0\x39\x53\xa0\xda\x3f\x9b\x94\x32\x48\x32\xe5\xab\x2b\x57\x94\x7d\xf0\xc9\x1a\x64\xe7\xe5\x97\xdb\xc3\x32\x8e\x8a\x68\x44\x11\xa7\x5f\xdb\x37\x94\x34\xa6\x2f\x1c\x66\x36\x5c\x8e\x6d\x0e\x82\x0a\xcd\xac\x17\xd1\xac\xa5\x95\xe3\x3f\xf8\xd4\x7a\xeb\xd7\x5f\x62\x24\xdf\xc7\x0f\xad\xeb\xf6\xad\x5d\xe6\x8a\xa5\xb0\xed\xaa\xaf\x70\x89\x8c\xdf\x22\x8e\x4d\xac\x10\x79\x9a\x3c\x55\x8d\x24\x71\xe6\xab\xee\xd1\xd9\x41\xf8\x7e\xea\x8d\xb1\xea\xa7\x7e\x8c\x50\x14\x6b\x10\xcb\x28\x0b\x95\x91\x32\x26\x8c\xab\x0b\x2a\xc8\x79\x9b\x92\x78\x56\x94\x0d\x94\x3e\xe0\x4f\xb8\xb2\x8f\x1a\xc4\x35\x34\x4f\x84\x59\x4d\x53\x9c\xcd\x38\x35\x3f\x16\x90\x39\x84\x5c\xd7\xdd\x73\xec\xc6\x69\xb8\x6c\x7a\x28\x9c\x29\x12\x94\x48\xf6\xe0\x53\x18\x3f\x77\x83\xa7\xb4\xe2\x40\x94\x17\xd3\x44\xe2\x94\x6a\xaf\x32\x2a\x3e\xa5\x24\x60\xd0\x5b\xe1\xff\x1e\xf8\xd6\x5b\xda\x85\x32\x5e\x9a\xad\xed\x70\x21\xd5\x7e\x26\x0d\x9a\x71\x54\x62\x17\xdf\x6e\xad\x5f\xc5\xc7\x3a\xe9\x89\xab\xbc\x53\x9b\x12\x5d\x54\x52\x3d\x17\xc7\x8f\xca\x72\xf3\xf9\xdf\xa4\xb6\x57\xb5\x2f\x54\xb7\xc4\x21\x23\x36\x14\x24\x16\x5c\xc2\x62\x6b\x20\xb8\x5c\x4a\x2e\x41\xef\x59\x24\x91\xab\xd5\x43\xd4\x05\xe8\x12\x91\x2c\xb5\x08\x7d\x23\x43\x92\xde\x12\xb6\xb9\xd7\xa9\xea\x85\xd7\xf7\x3f\xd0\x0a\xc5\xb8\x9e\xb1\x87\x0b\xbd\xa3\xba\x9f\x9c\x38\x03\x37\x7e\xb3\x01\xfc\xd8\x4e\x22\x66\x53\xa1\xff\x0c\x37\x6e\x21\xd4\xb6\x1c\xb7\xf4\xbc\x82\x53\x50\x5b\x9c\x3e\x83\x77\x7d\x35\x50\xd6\x0a\x67\xa9\x92\x87\x58\xe7\x1d\xd5\x7c\x0c\xcd\x28\x2a\x4c\xcb\x97\xe0\xb7\xf1\x29\x3e\x71\x69\xd5\xd7\x4b\xeb\xe3\x43\x6e\x01\xd0\x38\x97\x76\x80\x27\xfc\x2d\x65\x90\x7e\x75\x15\x2a\x8c\xc9\x8f\xe8\x59\xf0\xb1\xf2\x1a\x1c\xa6\x3d\x9b\x17\x7b\x3c\x47\xe1\x2f\x03\x30\x23\x31\x18\xb1\x8c\xbe\x85\x39\xe1\xa2\x61\x5f\x51\xd9\x9a\x70\x00\x75\x66\x22\xab\x51\xc2\x65\x28\xec\x60\xbf\xa5\xba\x83\xbf\xd5\x00\x2b\x58\x60\xc0\x62\x4b\x71\xd8\x37\x54\x67\x7b\xc3\x11\x0e\x32\x9b\x5b\x43\x6e\x78\x28\x85\x70\xfa\x18\x4c\xe4\x92\xbe\x25\x31\x30\xa3\x91\x4d\x28\xa9\xae\x32\x35\x67\x93\xe0\x84\x0f\xdf\x08\x7c\xbe\xf7\xc6\xb8\xf5\x92\x18\x3a\x5c\x7c\xa8\x37\x78\x12\x1a\x83\x2a\x23\x2f\x73\x0a\xfb\x73\xa1\x16\xba\xbe\x50\xad\x75\x68\x45\x60\xca\x7c\x53\xab\xea\x7e\x53\x01\x4a\x46\x69\x1e\x91\xc8\xa5\xaa\x0e\x3e\xc0\xc4\xe0\x93\xe0\x71\x8f\xe1\x4b\x19\xe8\xc5\x3a\x34\x98\x27\x78\xc0\xfc\x30\x26\x14\x6a\xf8\x5f\x76\x22\xb2\x4c\xd6\x9b\x9e\xa0\x40\xf8\x4e\x2f\x5c\x18\x00\xf7\xb9\x16\xa8\xcb\xd8\xdc\x19\x68\xfc\x72\x95\x07\x3e\xe2\x97\x73\x31\xbf\x41\xb1\xf9\x24\x16\x57\xcc\xc8\x93\x0a\x52\xfd\xa1\xfa\x31\x36\x6a\xe2\xd9\xb6\xee\xa3\xb8\x93\x8a\x51\xf4\x21\x3d\xb9\xed\x63\x2a\x6f\x4f\xb3\xa8\x1f\x25\x0e\xfb\xfd\xff\xf0\xf5\x67\x51\x92\x64\xe7\x7d\x18\xde\x9d\x55\xdd\xd3\xd3\x3d\x3d\x2b\x06\x0b\x71\xf4\x57\x42\xc2\x5f\x90\xe5\xe1\xd8\x96\x6c\xd9\x47\x2f\x91\xaa\x2a\x71\xd0\x6d\xa0\xa6\xdc\xdd\xec\x11\xe7\xf0\x61\x6e\x46\xde\xca\x8c\xa9\xc8\x88\x44\x44\x64\x55\xd7\x3c\xfa\x41\x47\x2f\x3e\xa6\x17\x1d\x1f\xd3\xb4\x25\x11\xe7\x88\x94\xe9\x23\x42\x24\x28\x92\x10\x81\x4c\x2c\x04\x89\x7d\x00\x0c\x66\x6f\x4c\xef\xfb\xbe\x6f\x53\xed\x13\xdf\xef\xfb\xee\xfd\xa2\x22\xc6\x6f\x11\xdd\x95\x99\xb1\xdc\xfb\xad\xbf\xef\xf7\x7b\x59\x6b\xaa\xec\x77\x8a\xb3\x4d\x69\xab\x29\x18\x66\xd2\x52\x12\x62\x4c\xab\x2e\x16\xb1\x12\xd3\xda\xde\xb3\xe5\xa5\x20\x3c\x7d\x14\xe3\x95\x0a\x7d\x24\xf9\xc1\xff\xac\xf8\xc3\xae\x06\x55\x66\x65\xd7\x33\xfc\x26\x2d\x34\x00\xcc\xce\x4e\x50\x2d\x14\x7e\x73\x2d\x0a\xc6\xa4\x6c\xd8\xb5\x5b\xa7\xb4\x84\xc5\xab\xd0\x53\xc5\xd7\x6d\x87\xa4\x11\x4a\x2c\xa7\xe0\x0c\x81\x58\xdb\xda\xf1\xb2\x22\x5b\xc9\x88\x61\x21\xa0\x69\x09\x5f\xb8\xb5\xa3\x10\xa4\x4c\x55\xc4\x37\x46\x76\x15\xbf\x7e\x2a\x50\xc2\xf9\xf7\x14\x13\x02\xa9\x63\x52\x3f\x07\xd3\x9d\x34\xf4\xcb\x51\x16\xee\x59\x74\x43\x75\x03\x25\x8f\xc2\x5d\xbe\xd1\x72\x45\xb3\x6c\x1c\xc5\xb4\x1f\x6e\xed\x36\x9e\xad\x94\xfd\x7d\x0f\x9c\x71\xcf\xf0\x0c\x5f\x09\x74\x71\x90\xd6\x98\x88\xd9\x56\x1a\x74\x2d\xaf\xb3\x88\xb1\x3a\xfe\x11\xa7\x66\xd1\x8b\xf2\x62\x9c\x75\x05\xb3\x84\xb7\x70\x5f\x11\xed\xdc\xaf\xd5\x28\x69\xe2\x1f\x93\x62\xc2\x66\x25\xb3\x89\x6a\xe6\xed\x78\x4d\x3d\x77\x71\xb1\xd2\x77\x53\x3c\x22\x97\xd5\x00\x4f\x5d\xc9\x9c\xda\x8f\xab\x91\x5d\xe3\xb8\x0b\x13\x36\x1b\x2a\x34\xbc\xac\x6a\xaa\x5a\x7e\xa0\x9b\x59\xb3\xe2\x10\x6b\x08\xcf\x4f\x7b\x7d\xed\xa7\x4f\xab\x12\x57\x98\xa6\x59\xaf\xdc\x59\x6c\xc6\xc5\x28\x7a\xfd\xee\xba\xd6\xdc\xc1\xb9\x97\xcb\x83\xdc\x62\x2c\x06\x2b\xf0\xb6\x42\x4d\x9c\x87\x2d\x12\xfa\xfc\x9d\x6e\x98\x6d\x44\x45\x20\xa4\x92\x60\xeb\xe4\xe3\x5a\x85\xff\x8b\x0b\xed\x7c\x64\x63\x5d\x35\x3a\x4c\x17\xc5\xc7\xd5\x28\xd3\x24\xbb\xf5\xe8\x38\xe6\xd2\x36\x1e\x04\x1e\x86\x83\x35\x81\xec\xf7\x5f\x83\xbe\x48\x21\x20\xbd\x2e\x20\x2d\x23\x9e\x3a\x83\x71\x11\x71\xd2\x0a\x9b\x32\x3d\x59\xbe\x71\x7a\xb2\x70\x0b\x77\xc8\x28\x48\xd4\xaf\x98\x42\xa6\x1e\x82\x30\x30\x19\x00\x8e\x0b\x1a\xf9\x2c\x63\xdb\x40\x1e\xe3\xdb\x76\x4c\x3f\xe9\x9d\x46\x45\x44\x35\xdf\x56\x9a\x28\x58\x51\xe6\x1a\xe1\x93\x40\xe3\xa2\xb6\xa0\x3c\x0a\x17\x74\x78\xa2\x12\x9c\x7b\x4d\xc4\xac\x79\x1a\x33\x39\xbe\x87\xab\x42\xd3\x8b\x8f\xfd\xd4\x47\x98\x59\x9b\xe4\xa0\x56\x11\x50\x3b\xfd\x16\x2a\x81\x28\xff\xaa\x42\x85\xc8\x3d\xdc\x50\x23\xa6\xc3\xfe\xf0\x37\xff\xb3\x31\xcb\x5d\x60\x83\xb6\x08\x1b\x25\x25\x5c\xd5\xfb\x7c\xbf\x96\x05\x2d\x1c\x68\x17\x36\xb6\xf9\x7a\x5e\xd8\xa1\x6c\x48\x18\x96\xc3\xb8\x14\x3e\x69\x6a\x21\x8e\x32\x5b\x98\x43\x2d\x5f\x6f\x3e\xa6\x04\x29\x8f\x35\x89\x2b\x16\x03\x93\xac\x30\xd4\x98\xd9\x10\x02\x45\xc1\xf4\xcf\x1d\x1b\x77\xba\x6a\xb3\xe5\x38\x5d\x73\xf5\x1e\x1e\x8c\xa0\xed\x21\x43\x12\x4d\xd2\x8a\xdd\x2c\x1d\xf7\x07\xdc\xcc\x46\xae\x0d\x22\x2b\x89\x71\x69\xc9\x20\x2b\x39\x51\xdb\x2f\xe5\x37\x7c\x69\x1c\xbd\x36\xa3\x58\x53\x00\xf4\x95\x95\xa9\x0a\x69\xc7\x15\xc2\xaa\x4c\x6b\xe0\x52\xe1\xd4\xcf\x69\x9d\xee\x73\x6e\xee\xc3\x26\xbd\xb1\x63\x29\x50\x9a\x38\x0b\xae\xcc\x20\x79\x92\xe9\xa6\x99\x9b\x0c\xaf\x70\x83\x0b\x03\xf8\xc7\x36\x4b\x7c\xb6\x17\x17\x97\x76\x93\xc9\x10\x61\x2d\x7a\x72\x18\xa5\x79\xb3\x02\xb9\x0c\x94\xc9\xf9\x29\x61\xbc\x10\xd2\x9d\x0c\xbc\x72\xdd\x3b\x6a\x10\xe7\x4d\xdd\xa6\xc7\x24\x0f\x53\x58\x62\xd7\xa1\x7c\x7a\x2a\xf0\xbb\xee\x5a\xa0\x5e\xf2\x0d\x2c\x5e\x6c\xd4\x37\xd4\x0c\xb7\xe3\x91\xdb\x56\x03\x45\xa0\x36\x72\x4f\x21\x1c\x6e\xb3\xb3\xe7\x4e\xa5\xa2\xea\xff\x40\x31\x3d\x9b\xe2\x57\x14\x9f\xcf\x15\x78\x47\x26\x16\x84\x41\x65\xa6\x64\x2a\x6f\x00\xdb\x71\x57\xcf\x9b\xbf\xaf\x78\x56\x7f\x8e\x0b\xc7\x1e\xd8\x3a\xa5\x54\x0d\x21\xf6\x61\x94\xfb\xa4\x39\x4a\x4f\x1a\xcd\x8c\x5d\x24\xce\x21\x52\x46\x74\x2f\x70\x4e\x6f\x05\x9a\x59\x7f\x03\x8f\x14\x43\x05\x77\x26\x2a\xa0\x3b\x53\xbe\x90\x8d\xe9\x64\xeb\x67\x3d\x5c\x7e\x71\xd1\x0d\x16\xb7\x7e\xed\x25\xae\x09\xdf\x0e\x50\x67\x56\x53\x56\x6f\x4c\x54\xf5\x64\x63\xd2\xfa\x27\xff\xd4\x35\xb3\xcb\x97\x26\xc3\x3a\xe4\xcd\x9d\xa4\xd3\x41\x61\x62\xfe\xdd\x5a\xb1\xf0\xc0\x8b\xae\x84\xaa\x28\xd3\xd1\xff\x12\x19\x4c\xff\x3a\x9d\x36\xc1\x93\xf4\xd8\xa4\x34\xa7\x1c\xbb\x60\x0c\xb0\x60\x40\x31\x43\x91\xc2\xda\x53\x54\x41\x81\xed\xf8\x2e\x5e\x14\x5e\xf4\xfb\x74\x7b\x42\xd5\x52\x5e\x04\xca\x4e\xcc\x5d\xe2\x4a\xb1\xe5\x2d\xa9\x4a\xca\x7e\x4d\x5d\x2b\x53\x8e\x27\x95\xf8\xc2\xee\x8e\x32\x99\x8f\x80\xfe\x11\xc9\xef\x7d\xbc\x5b\x91\x89\x6a\x10\x96\x6c\xc7\xb6\x6f\x42\x8d\xac\x81\x67\x94\x01\x99\x86\x1c\xd9\xae\xda\x84\xca\x6e\x58\xd8\x77\xe8\xae\xb0\x62\x0e\x53\xdd\xc5\x59\x9b\x7d\x12\x1c\x7f\x4b\x0d\x17\x0d\xd2\xbc\x88\x62\xfb\x08\x5d\x19\x5e\x3f\x3a\xd3\xb8\xe5\x37\x60\x46\x39\xff\xa4\xef\xe3\xff\xa0\xc2\x68\x65\x6c\x1e\x31\xf9\x14\xcf\x98\xbf\xaa\x56\xe4\x7f\xe5\x95\xf6\xc8\x66\x76\x46\xd5\xa4\xb0\xce\x84\x63\xa2\x7c\x5b\x38\xfe\x99\xea\xca\xa6\x23\x4b\x54\x95\x9c\x6e\xb2\x6e\xd7\xa4\x22\xe2\x55\xe7\x64\x2e\xdd\xf9\x8a\x4d\x60\x16\x5d\xea\xa3\xb2\x1a\x9f\xc2\xf4\xa2\x3c\x8c\xd3\x7c\x9c\x31\x57\x0c\x80\x60\x3f\x0f\x7c\x0f\xfa\xac\x16\xd6\x77\x96\x77\xd9\x44\xd9\x1a\x6b\x4c\xc3\xd6\x7d\x2f\xf0\x69\xed\xf7\x14\x16\xaa\x9f\x99\xf5\x59\xe5\x85\xb9\xea\x2e\xd1\x13\xad\x26\x86\xd6\x07\x7e\xc8\xf3\xe7\x6a\x1b\x84\x29\x75\x3c\x73\x10\x02\x0a\x97\x81\x2b\x16\x7e\x65\x06\x18\x2e\xec\xb9\xed\xae\x0f\x96\xa4\x5d\x86\xe9\x22\xc0\x7c\x4f\x05\x9b\xef\x05\xcf\x68\x76\xd5\x11\x9c\xc3\xac\x07\xa3\xbe\x81\xd7\x29\x45\x69\x8f\x4c\x7d\x03\xb6\x9e\xff\x43\xe5\xc4\x61\x8f\x81\xe1\x78\x6c\x47\x27\xd5\x11\x7e\x8d\xd6\xf7\xe0\xe6\x9b\xaa\x0e\x7e\x56\xf1\x4f\x64\x76\x34\xee\xc6\x51\x68\xf8\x25\xb2\x58\x7f\xe0\x1b\xe8\xdf\x75\x5d\xd7\x3c\x2a\xad\xc4\x8c\x6f\x73\xdf\xa2\x78\xcf\x69\x13\x3a\x62\xd3\x77\xd5\x33\x4d\xec\x5a\x98\x0e\x2d\x16\xd6\x0b\x6c\x84\xff\x52\xb5\x03\xfe\x72\xf2\x68\x54\x46\x24\xcb\xff\x45\x7b\xf4\x69\x32\x06\x98\x4e\x65\x62\x4e\x98\x47\x96\xb9\x85\x1f\xe3\xa9\x1c\x58\xa9\xa7\x3a\xf4\x98\x60\xd3\x7e\x42\xab\x1b\x1f\x61\xaa\x39\x3c\xa4\x9d\x14\x91\xc1\x6f\x7e\xba\xd3\xfa\xa2\xd7\xc0\x42\x56\x8a\xfb\xb9\xa4\x95\xf1\x76\x4e\xcb\x9b\xc3\x46\x7f\x8c\xb0\x67\x28\x12\x3c\xde\x51\x8c\x69\x1b\x74\x23\xb0\x51\xdb\x20\xb0\x00\x27\x3c\x4b\xce\x44\x92\x9b\xd6\xaf\x7f\x5e\x34\x86\xd9\x8e\x22\x59\xfc\x9b\x53\x4f\xd5\xb9\x93\x82\x3f\x04\x09\xbb\xa8\x36\x88\xc6\xca\x16\x0c\x5b\xbb\xdc\xee\x9f\xfc\x53\xc5\xd0\x20\x82\x57\x0f\x90\x0d\x2b\xb6\x43\x06\x46\xfc\x4f\xbf\x3a\x55\x22\x3c\x08\xcc\x66\x7c\x89\x0c\xba\x3b\x52\x5d\x2b\xbf\x0f\x9e\x86\x32\x5f\x97\x60\x98\xcc\x70\x84\x29\xfc\xbd\xf4\x03\xa2\x93\x51\xaf\x3b\xb4\x7b\x44\x6d\x96\x9b\xa4\x50\xe2\xf0\xa7\x94\x04\xfa\xa9\x89\xa0\x32\xbb\xe3\xcc\x9a\x71\x98\x19\x22\x6a\xf7\x92\x9b\xb4\x15\x44\x7e\xb3\x09\x30\x36\xb0\x96\x0b\x69\x8e\x1b\x46\x66\xb0\x8e\x5e\xaa\xaa\x58\xfc\x9d\x82\x78\x8a\x9c\xa0\xad\xc3\x30\xdd\x47\x00\x01\xd3\xce\xf4\x88\x0c\xfe\xc4\xf2\x13\x24\x68\x53\x5f\x6d\x90\xe6\xa3\xa8\x30\x71\xcb\x7b\xf9\x0b\xaa\xef\x71\x41\xd9\xa6\x55\x5b\xa4\x8f\xa9\x69\x76\xe4\xa3\xc8\x10\x1f\x20\xdc\x73\x28\x43\xf7\x52\xc1\x30\x09\x48\xd5\x9d\x0a\x9f\x37\x5d\x1a\x4a\xc7\xb3\x1d\x2f\xe0\x70\x41\x71\x3c\x9c\x06\x30\x49\x02\x66\xba\x33\x37\x8b\xec\x8b\x68\x8d\xca\x87\xcc\x48\xae\x14\xab\x60\x98\x44\xdb\x63\x73\x32\x52\x66\xc4\x99\x25\x21\x29\x37\xea\xc2\x83\xa9\x15\x06\x31\xdd\x13\x92\x78\xb9\x34\x8a\x36\x2b\x20\x79\x0a\x33\xfb\x08\x45\x17\x30\xd5\x27\x35\xdb\x62\x6b\xea\xeb\x31\x99\x5d\x66\xc2\x44\x20\xb6\x4e\x2b\xbd\x85\xd3\x8a\xf1\x38\x1f\xd9\x30\x32\x31\xf5\x20\xca\xa7\xa6\x5a\x17\x8a\xfd\x6d\xef\x5e\x89\x91\x11\xf8\x49\xc0\xac\xa7\x1c\xc2\x95\x2c\x35\x54\x91\x2d\x5f\x8b\xf4\xae\x55\x1f\x5b\x25\x77\x85\x2d\x4c\x32\x86\xa7\xc3\x93\xe0\xc5\xe5\xbc\xb0\x7b\xb4\x77\xdd\x44\xe3\x30\x2d\xd2\x6c\xd6\x77\x1e\x0f\x23\x06\xd6\x73\x49\x08\xde\xf1\x80\x44\xf5\x5f\x81\xf6\xc7\x49\xcf\xac\xc3\x83\x57\x74\xb7\xf9\xa4\x69\xd6\x21\xb3\x84\xd5\x99\x51\xe2\xa8\x1b\xb8\x54\x40\xc8\xc0\xd2\x23\xa1\xbb\xaa\xb2\x10\x71\x2f\xe3\x88\x70\x59\x27\x55\x7e\xd1\x38\xf0\xf1\x59\x06\xee\xb4\x7c\x6b\xe1\x1b\x15\xac\x4e\xc3\x20\xde\x5a\x54\x90\xd2\x80\x92\x41\x42\x14\x2b\x40\xbd\x27\xdc\xd3\xeb\x45\xcb\x91\xcc\xa0\xc3\x70\xb0\xaa\x8a\x08\x1d\x29\x7a\x9b\xf3\x93\x67\xd4\x5c\x7c\x36\xca\xa2\x9c\x2c\xa3\xeb\x54\xde\xa0\xa2\xa0\x60\x45\xcb\x9b\x64\xa4\x98\x57\xb3\x35\xc9\x32\x61\xbc\x0f\x0a\x90\x19\x2a\xa5\x30\xe1\x78\x47\x48\x66\x66\xa7\x0d\x0f\xbe\x9f\x99\xe5\xa2\x2a\x51\xc2\x12\x60\x7c\x32\x7d\xd6\xcf\x2b\xe7\x85\xe9\xc6\x18\xda\xc4\xf6\x42\x2e\xf4\xed\x89\x0f\x24\x6e\x29\x8d\xe2\xba\x80\xe7\x73\xed\x22\xed\xdb\x62\x60\xb3\xd9\xd2\xb5\x20\x8c\xe7\x5d\xe0\xa4\x28\xf7\xcd\xc9\x6c\xb7\x12\xb1\xb9\xe2\x9e\x70\x98\xa5\x63\xc0\x59\x95\x6b\x9b\xf1\x3a\x65\x97\xdd\x4a\x36\xbd\x61\x54\xe0\x45\xa0\x0a\xc2\x79\x12\x72\x09\x70\x9e\xa1\x74\x7a\xbc\x82\xec\x5d\x4e\xb3\x21\x93\x39\xbc\xc0\x8b\xf6\xc3\x89\xef\x35\x6d\xa3\x0f\x0a\x47\x98\xbc\x07\x34\x97\x62\x4f\xad\xfc\xfb\xff\x7f\xf0\xc8\x03\x31\x0a\x47\x42\x61\xd4\xff\xd8\x46\x05\x19\xb9\xf1\x29\xcd\x83\xb7\x01\x3b\x23\x9a\xb1\x7e\xba\x80\xaa\x89\x1c\xbe\x2c\x6a\x29\x41\xa7\x2b\x58\x5b\xe9\x9f\xfb\x5c\xdb\x1e\x0a\x63\x13\x0d\x39\x9a\x56\x52\x5e\x9e\x13\xb2\x4e\x61\xf2\x42\x19\xb9\xe7\x69\x92\x58\x96\xd4\x73\xd8\x89\x45\x8f\x7e\xa8\x57\x23\x97\xda\xc3\x30\x34\x6b\x2d\xd5\x59\x3f\xcd\x19\xab\x38\x9b\xa6\x0f\xc5\xa9\x29\x06\x68\xae\x88\xbc\x88\x9f\x83\xf8\x0e\x3d\x34\x04\x3f\x1f\x22\x90\x92\x08\x4b\x7a\x5f\xc9\xf3\xc3\xe7\x69\x23\x3b\xd4\x45\xf9\xfb\xc2\x3b\xe9\xc7\xe7\xf2\x94\x46\x08\xd0\x1d\xb8\x0a\x7f\xcb\xaa\x12\x8a\xa8\xfc\x88\x86\x69\xfe\x47\x2d\x71\x7b\x92\x9c\x1a\x8c\xe8\x09\xb8\x4a\xbc\xd8\x87\x13\xbf\x43\x2f\x05\x8a\x14\x89\xbb\xa9\x4e\x60\xba\x5c\x0b\xcc\xeb\xa0\x75\x21\xee\x52\x1a\x06\x98\xc5\xcc\x54\x53\xaf\x7f\x2b\x20\xc3\xeb\x4a\xa7\xf3\x42\x11\x87\x5e\x9d\x34\x26\xe9\xd9\x31\x85\xed\x44\x4b\x89\xad\x0b\x2d\xae\xd4\x58\xf5\x78\xb9\x87\x9d\x0c\xd3\x55\x9b\x3f\x5a\x3e\x03\xcc\x18\xed\xee\xa8\xb2\xe8\x2d\xdc\x04\x88\xcc\xdf\x0f\x14\xab\xf9\xfb\x13\x45\x96\x04\x20\x95\xcc\x05\xa9\x06\x2b\xee\x14\x7d\x83\x13\x5a\xfd\xe0\x6a\x03\x2e\x2c\x1e\x87\x51\xda\x52\xb2\x2a\x1c\x42\xf2\x49\x43\x26\xdd\x66\x50\xd7\x8c\x62\x7a\x43\xe3\x9a\xb9\x35\xe9\x5a\xb8\x10\xa0\x98\xa1\x4a\x0b\x64\xbb\xeb\x84\x42\xc1\xc5\xfd\x16\x25\xba\xa2\xbe\x59\x7e\x0a\xaf\xb4\x35\x55\x9d\x8f\xdf\xc2\xc3\xe6\xfa\xba\x2b\xb6\x15\x6b\xbe\xd4\xff\x02\x1b\x35\xa8\xb0\xf1\x71\x25\x8c\xcd\xcc\x08\xed\x51\x45\x77\x22\x72\xd7\x6f\xd2\x3b\xe2\x63\xf2\x63\x12\x70\x7b\xb6\xc5\xfe\x78\x3d\xd7\xe1\xac\x66\xc3\x38\x15\x48\x05\x34\xa1\xe9\x30\x93\x45\x4c\x06\x8a\x2b\x79\x40\xd6\x55\x2b\x71\x60\xa9\x5f\x57\x2d\xed\x3c\x1e\xf7\xfb\x51\x3e\x80\xbf\xf3\x2d\xf0\xc3\x4a\x97\xf0\x70\x13\x9c\xa8\x6b\xe3\x74\x8d\x6a\xe2\x88\x70\xd1\x02\x13\x21\x43\x85\x20\xb9\xac\xc6\x26\x5f\x57\xa4\x07\x7f\xac\x82\x88\x22\x33\xa1\x05\xac\x13\x26\x1a\x2f\x85\x8f\x6b\x8b\xa7\x0c\x17\xcd\x5a\x32\xab\x14\xbe\x8f\x4f\xfc\xac\x09\x9a\x34\x22\xba\xee\xdf\xee\x4c\x8d\xd2\x7a\xe1\x40\xbb\x30\x63\x2d\xc4\x7c\x53\x69\xc2\xdd\xd4\x1b\x6c\xdc\x8d\x2d\x4f\x8d\xe2\x8d\xfd\x52\xeb\x10\xff\xd2\x7b\x68\x08\x7e\xa2\x81\x84\x6d\x75\x44\x35\x42\x4e\x6a\xea\xe2\xeb\x0d\x50\xe6\xa5\xf6\xd0\xf6\xa2\x90\x9b\xfc\x4b\x5e\xd0\xd0\xad\x81\x4b\x8a\xcf\x60\x68\x12\xd3\xe7\x8d\xef\x86\xd6\xfd\x00\x7b\x85\x2b\xd6\xf6\x2c\xa7\x46\x52\xef\xd0\xb0\xac\x86\x39\x72\xd6\x63\x64\x87\xd2\xc8\x45\xfb\x51\x18\xc8\x30\x4d\xf2\x51\x14\x8e\xd3\x31\xde\x2a\x73\xa4\x23\xd0\x15\xc2\x74\x9d\x2e\x99\x24\xdc\xae\x40\x44\x5c\x43\x46\xb2\xb2\xa5\xd3\x7a\x69\xc9\xc7\xe6\x07\xe7\x96\x36\x40\x7a\xc6\x7f\x1b\xf8\x10\x50\x6b\x1c\x15\x29\x8d\x2d\x6d\x53\x43\x92\xb0\xa5\xd8\x11\x20\xd7\x62\x79\x79\xd5\x40\x3e\x89\x90\x0d\xfe\xba\x3e\x07\xb3\xf4\xe2\xfe\xb6\xef\x34\x38\x09\x0e\xb7\x68\x4e\x2b\x36\xa0\xbc\x48\x13\x6e\x82\x23\xbe\x3a\xad\x06\xfd\x9b\xd8\x82\x87\x51\x38\x80\x83\x53\x8a\x7f\x4b\x8e\xb3\xdf\x47\x08\x03\x33\x4e\xa8\x33\x8f\x52\x82\xc8\x33\x51\x42\x2e\x1a\x4e\x0d\x29\xf2\x9a\xb1\x59\x91\x47\xb1\xb1\x2d\xad\x1b\x4e\x3f\xc2\x27\x6e\x72\xb1\x46\x39\xcb\x6c\xad\x81\x22\xef\xbd\x5b\xf3\xf2\x4b\xfb\x96\xda\x3d\xdb\x1d\x43\xb3\xdd\x15\xd9\x7c\xc1\x2d\x78\x56\xf1\x90\x76\x4d\x96\x99\x3c\x27\x0c\x89\x9f\xb7\x39\x0a\xf7\x29\xb2\x6c\xf4\x3a\x44\xaf\x4d\xcd\xe8\xd4\x5d\xc4\x73\xed\xe1\x38\x0f\xc7\xb1\x01\x44\x4f\x78\xa3\x5b\x8a\xa8\x67\xf3\x43\xd9\xb3\xd8\xce\xc3\x2c\xea\x2a\xbd\xd9\x26\x85\xea\x06\x67\xd4\xb3\xcb\x51\x22\x50\x19\x01\x4b\xa9\xf6\xe5\xeb\xd5\x11\xf8\xf1\x70\x54\x3e\x49\xaa\x09\x60\xad\xce\x74\xc8\x31\x38\xe8\x8a\xc7\x33\x7c\x10\xf8\xe8\xe5\x03\x72\x0c\x48\xe1\xca\x5c\xd4\x6f\x99\x38\x4a\x76\xd1\xb3\x41\xf2\xf0\x7f\xc3\xb5\x68\xc2\x19\x71\xd7\xb4\x97\x84\x54\xb7\xfc\x3a\x07\x67\x2f\x9f\x33\x7f\x5c\xd3\xb9\x1f\xa1\xbd\xc1\x7f\x35\xf1\xb5\x7c\x04\xc6\x78\xf7\xdc\x83\x47\x15\x6b\x57\xc7\x03\xaf\xf2\xc2\xac\xdb\x1e\xa2\x49\x67\x84\xbd\x41\x0e\xbc\x84\x74\x5e\x70\xe6\xa4\x06\xde\x45\x85\xe5\x44\xc5\x21\x36\xc8\xaa\x95\x6e\xb8\xf4\x5a\x22\x48\x89\x14\xe8\x67\x81\x4f\x87\x7e\xd6\x34\xf2\x91\xd8\x7e\x5a\x44\x7e\x54\x84\xc9\x1f\x82\x96\x22\x82\xf0\x39\xf5\x8a\xb5\xa3\x28\xe9\xef\x70\x40\xce\x7f\xf7\x04\xd1\x54\x38\x6f\xee\x49\x52\x4f\xc1\x6e\xc0\x1f\xa0\x8d\x28\xe3\x44\x74\x7d\x32\x74\xa4\xa8\xa5\x05\x91\x82\xaa\xe2\xee\xce\x93\x1a\x83\x54\xda\xae\xd9\xd6\x26\x42\x6b\x6d\xae\x00\x42\x3a\x5c\x3e\xa7\x8e\x07\xec\x7e\xfe\xd7\x17\x67\x14\x47\x06\x27\x41\xb0\x66\x48\x82\x04\x30\xec\xdf\xd8\xb0\xfc\x2d\x34\x28\xb0\x7c\xce\xd0\xe5\xf3\xf1\xc4\x97\x81\x63\x9b\xb6\x3c\xba\xe5\x9c\xe6\x59\x3f\x57\x2b\xd5\x2f\x1c\x68\x23\x21\x99\xf1\x30\x65\x66\xa1\x44\x64\xdb\x42\xca\xc4\xd8\x52\x4d\x8b\x9a\xa6\x2b\xbb\xca\x94\x11\x4b\x86\x05\x74\x1d\x79\xdc\xfc\x42\x55\xd3\x9c\x7b\x64\xf4\x0a\x61\x1a\xee\x2a\xa8\xf9\x96\x8e\x17\xef\xc4\x1c\x11\x0c\xe4\x77\x35\xc5\xd3\xc3\x89\xee\x66\x5f\xa4\x92\xae\x10\x24\x6e\xf6\x00\xcf\xb5\x57\xa3\x7c\x6c\x62\xec\x7c\xd8\xe6\x4b\xaa\xb6\x76\x29\xf8\xf8\xe6\x6e\xeb\x0b\xa4\x5f\xae\xb4\xf2\x21\x39\x21\xa0\xaf\x4f\x78\x62\x64\xa0\x47\xbb\x51\xaf\x57\xe6\x7f\xde\x72\xfd\x5f\xb8\x55\x3e\xf1\xd0\x86\x18\x8a\x7f\x9e\xd2\xe4\xb7\xb0\xc0\x24\xce\xdd\x1c\x60\xec\x9b\x6b\xf7\x6c\x18\x1b\x2f\xc8\xef\x28\x76\x1d\x8b\xd7\x51\xd5\x4a\x2a\x2d\x74\xc4\x20\x3b\x4c\x1c\x1c\xa3\xe7\xcc\xc7\x15\x1f\x6e\xf3\xe2\x13\x2a\xbc\x3d\x17\x28\x90\x05\xf3\xfc\x49\xeb\xb0\xb5\x4f\x1c\xce\x1b\xf4\xc3\xa8\x2b\x1e\x51\x9e\xfc\x2c\xbf\x11\x91\x36\x56\x85\xf9\xf7\x29\x09\x43\xcc\xff\x3d\xc5\x42\xf7\x26\x5c\x05\xde\xc2\x0d\x64\x7d\x30\x6e\x1b\xf4\x42\x5d\x91\x77\x9f\x80\xa8\x98\xfd\x0c\x8e\x7f\x1b\x80\x67\x80\xe0\xfc\x02\xfb\x86\x65\xb5\x02\x1f\x1e\x5c\x05\x54\x5a\xc4\x11\x15\x1c\x78\xcb\xd4\xa3\xb3\xce\x13\x4c\x1f\xe5\xf7\x29\xf0\x50\x02\x1d\x69\x70\xcb\x26\x0b\x07\x51\x61\x43\x31\x87\x8c\xc3\xd6\x7b\x05\x2b\x5a\xe6\x21\x1e\x57\x03\x45\x51\xd2\x7f\xb4\xbc\x3c\x44\x35\x7f\x83\x56\x3b\x6a\x9a\x4f\x4e\xfd\x18\xec\x33\x53\x85\x1c\x78\x17\x45\x3e\x17\xe9\xcf\x8b\xf0\xc1\x3d\x44\x10\xae\x34\x5d\x5e\x37\x16\x29\x33\xf2\x60\xfd\xfd\x58\x4d\x14\xfe\x6a\x3f\x6d\xf9\xbc\xfd\x47\x6a\x19\xfd\x48\xa5\x9d\x79\x91\x86\x2b\x8f\xd3\x25\x38\x92\x92\xf2\x31\x0a\x60\x84\xde\x15\x16\xc1\x1d\x45\xfc\x7c\x57\xe5\x69\x0c\xcb\x13\x3c\x87\xef\xa0\xde\x0f\x7c\xa3\xe4\xe1\xc4\xc7\xb4\x3f\xa4\x65\xc2\x84\x07\xba\x37\x7f\x58\x17\x90\xde\x52\x1d\xe3\xd9\x8e\x62\xef\x78\xaf\x69\x98\xac\x6b\xe3\x62\xcd\xac\x73\x67\x02\x6d\x17\x0e\xe9\xf9\x44\xcd\xd9\x17\xd9\x38\x2f\x30\xc4\xab\x87\x75\x04\x0c\xd1\x52\x74\x0c\xf4\xbb\xf0\xd0\x1f\x43\xc3\x0f\x27\x27\x03\xdd\x03\x79\xaa\xf3\xa8\x80\xe9\xd2\xdd\xf4\x30\x2b\xd2\x3b\xf4\xd6\x7e\xe7\x6f\x51\xa6\x87\x3b\xbd\xaf\xbc\xfd\x45\xad\xfb\x01\xe1\x4a\x18\xf8\x6d\x53\x9f\xb9\x81\x21\x4e\x7a\x1b\xf4\x98\xd4\x4f\x48\xc7\xef\x3e\x77\xb0\x44\xf6\x80\xae\x5e\xd8\xed\xcb\x37\x46\xef\xb8\xf3\xc9\x8e\xe3\x96\x8a\xba\xeb\x26\x91\x21\x35\xbc\xaa\xdb\xb8\x69\x74\xb2\x4f\x4c\x2a\x33\x1a\x7e\x24\x2f\x4f\x87\x76\x6d\x60\x8a\x6d\xe5\xa2\x80\x5b\x07\x77\x30\xb6\x3f\x0a\x6d\xd8\xb2\x87\x69\x1d\x20\x47\x7a\x13\xd7\xce\xff\xd1\x38\xfc\x9c\x59\x48\xbb\x22\x3e\x17\x50\x9c\x02\xc8\x35\x0d\x43\x45\xb9\x1e\x33\x95\x71\x91\xf2\x1a\xf8\xb8\xe6\x05\xff\x2e\xb1\x78\xc5\xf6\x90\x62\xf0\x3a\xac\xaa\x6b\x87\x9b\x0a\xe4\x79\xa8\x0c\xb4\x94\xfc\x5a\x4e\xa1\xed\xbc\x1b\xcf\x1d\x65\x51\x28\x3c\x9a\x12\xbd\xa8\xac\x18\xe5\x35\x24\x83\xdb\x3b\x8a\xfa\xf3\x8d\x46\x8a\xb7\xdc\x24\x51\x61\xb2\x75\x35\xb0\x7d\xb6\xd2\x2c\x97\x3a\x5c\x6e\xc5\x54\x71\x87\x51\x45\x5d\xba\xd5\x75\xb9\xca\xec\x11\x0f\x79\x76\x8d\xcb\x4d\x13\x35\x9d\xb7\x65\xea\x47\x89\xef\x23\xc9\x84\x15\x3b\xa6\x49\x82\xf1\x14\x10\x2e\x7e\x2b\x50\x09\xf2\x2d\xd5\xf3\x4e\x47\xc0\x7b\xa7\x09\x2f\x38\xfc\xfd\xb1\x49\x95\xc2\xda\x63\x85\x1a\xba\x89\x4b\xed\x5e\x94\xd9\x90\xe6\x3f\xbc\xdb\xbe\xa9\x47\x89\x6e\xa2\x4c\xc3\x37\xf7\xca\x2b\x9f\x50\xe4\x0e\xb7\x08\x79\x83\x10\xec\x2f\xe0\x07\x85\x5f\xda\x57\xf3\xbe\x4e\x0b\x99\xdd\x8a\x9e\x78\xba\x32\x29\xb3\x33\xc4\x7a\xb8\x63\x89\xa3\x15\x17\xe3\x1f\x00\x84\x88\xa8\xf4\x71\x14\x99\xf1\xf1\x07\x81\x6f\xaa\xde\x01\xf0\x12\x15\xc3\xd7\x27\x9e\x4a\x63\x67\x47\x49\x2e\x5f\x0a\x5a\x5f\xd8\xcf\x71\xd1\x31\x6c\x45\x74\x7a\x1e\xd0\x76\x06\x3a\xe4\x16\xa2\x5d\x5c\xd6\x4d\x6a\xc3\x0b\x53\x06\x1e\x33\xea\x9d\x27\xe0\x85\xe1\x50\x5e\x27\x1b\x8c\x8f\xd4\x93\xc5\xc5\xc5\xf6\xd0\x0e\xe5\x11\x3b\x66\x70\x37\x9b\x7b\xad\x59\x86\x7e\x44\x94\x78\x1f\x89\xa7\x79\x4a\xf5\xeb\xbe\x34\x8e\x32\xdb\x7b\xa4\xbc\x6d\x37\x3d\xed\x07\x01\xdf\xa2\xbb\x43\x39\x62\x16\xcf\x83\xb9\xaf\x27\x7e\x1e\xf6\x3d\x72\x96\x3c\xa0\x8b\x30\xf2\xc3\xe0\x69\xd5\x93\x2a\x0a\x9b\x2d\x1b\x14\x91\x84\xa5\xa2\xa5\x46\xf1\x3f\xd3\x40\xa1\x30\xb0\x26\x2b\xd6\x4c\x36\x8c\x92\x3e\x93\xc0\x3b\xe5\x51\x97\x61\x5d\x6e\x08\x3d\x97\x4d\x1c\x0b\xf8\xc5\x71\xf2\xaa\xa9\xc5\x86\x44\x15\x44\xac\xf1\x36\x5a\x9e\x58\x3b\xa7\x35\x19\xfc\x65\xa5\x1b\xf6\x64\xc7\x07\xd1\xdf\xc3\x62\x47\x1a\xba\x6d\xfa\x8c\x66\x53\x90\x39\x11\x9f\x17\x5d\xa6\xc5\xec\x19\x07\xfe\x53\xcf\x66\x82\x40\xb9\x42\x31\x2b\x2c\x6a\xbe\xc0\x66\x92\x7c\xcd\x66\xb3\x0a\x2f\x7f\x4e\x8f\x8e\x9d\xd0\xf4\xcb\xcc\x82\x22\x89\xa2\xcf\x4f\x6c\xd2\xdb\xa5\xea\x53\x9c\x38\x20\x9c\xda\x4a\x78\x0a\x19\x2f\xf5\xc4\x21\x8c\xf0\x67\x01\xdf\xc0\x8f\x96\x3f\x36\xf5\xa3\x8a\x8c\x50\xc4\xb2\x39\x4d\xb7\x2a\x8a\x86\x6a\xbe\xf3\x2c\xae\x58\xa0\x92\x4d\x1a\xa6\x8e\xb0\x0e\x3e\xf6\x1c\xfd\x1e\x1f\x57\xc8\x55\xbf\x34\x76\x2c\x75\x78\x58\xaf\x60\x27\xf3\x49\x13\xf5\x4b\x77\x1c\xc5\x3d\x26\xb9\x78\xc1\x0d\x7c\x7b\xe4\xe3\x2e\x25\x27\x03\xed\xc2\x8d\x2b\x9a\x77\x25\xcd\x72\x28\xc2\x48\x13\x8b\x0c\x0c\x9f\xd4\x1c\xdb\xc1\xb9\x25\x1a\x01\x5a\x6f\x11\xd2\x11\x43\xac\x68\x0d\xf0\x71\x2d\x80\xfa\xb5\x97\x64\x00\x5e\x29\xa1\x9f\xa7\x90\x43\x9a\x60\xe2\x61\x8a\x70\x38\xa2\x52\xb6\x10\x67\xb4\x1c\x77\x2a\x77\x7d\x64\xa8\xc2\x6f\xc5\x74\x79\x39\x0a\x23\x13\xe7\x8f\xd3\x03\x40\x5a\xf8\x1d\x14\x93\xb0\xa3\x3e\x50\xea\x7a\xd7\x29\x5c\x90\xa1\x0b\x35\x1f\xbd\x41\x36\x0b\x66\x99\x79\x80\x55\x0e\x23\xb9\xe7\x9f\x23\xdd\xc7\xee\xb8\x8e\xd5\x89\xcd\x85\xf1\x62\x94\xe0\x37\x94\x82\xc0\x1d\xd5\x55\xdc\xda\x51\x02\x06\x1b\xb5\xc9\xa6\xbd\x7b\xdb\x69\x62\x67\x55\xe5\xf2\x22\x45\xe9\x2e\xb5\x29\xa3\x74\xa7\xea\xe9\x24\x97\x9a\xe1\x87\x49\x5a\x44\x21\x57\x93\xd9\x45\x07\xa5\x7f\x11\x77\xbd\x79\x99\xd2\x5b\x32\x05\xf8\x37\x60\x35\x4f\x06\xde\x82\x9e\x6c\x32\xe3\x7d\x9b\x64\xd5\xb1\x31\x8e\x0a\xf9\xe4\x23\xa5\x84\x47\x59\xba\x1a\xf5\xd3\x59\x55\x15\xbf\xcb\x31\x2f\x20\x59\xdf\x9f\x28\x3a\x64\x90\xb7\xca\xfc\x89\x82\xa7\x8d\xc1\xca\x0c\x6f\x76\x2a\xf0\xbd\xfe\x53\x7a\xe4\x3a\x36\xeb\xf9\x76\xcd\x24\x87\xa9\xa7\x2b\x48\x3f\x10\x7b\xa0\x41\xe8\x14\x39\xf6\x48\x4c\x72\x5b\x36\x8c\x52\xc2\x22\x11\xe1\x7d\x7e\x6c\x46\x1b\x98\x26\x4e\xc8\x34\x61\x5b\x8f\xbb\xf9\xd3\x89\x77\x19\x7f\x1a\x3c\x5d\x69\xff\x52\x5e\xd7\xf2\x13\x46\x57\x14\x29\xff\x15\xb5\xe6\xc3\x34\x59\xb5\x59\x61\xa1\x27\x81\x2a\x29\xaa\x74\xb2\xb2\x3d\x30\xfb\x0a\x6c\x95\x80\x70\x9e\xd1\xf4\x56\x69\x3c\x26\x90\x20\xed\x1c\x7c\xcd\x9f\xab\xa0\x0e\x44\x31\x42\xdb\xa7\x38\xa8\xee\x06\xcf\x2a\xb8\x4a\x12\x46\x71\xa4\x86\x66\x91\xaf\x82\x4e\x9e\x8f\x6b\x4b\x74\x7e\x9e\xa8\x67\x5d\x5f\x0f\xd7\xfd\x36\xfd\xb8\x50\xb6\x96\x3f\x2e\x62\x1f\x9e\xaf\xd6\x24\x2e\x46\x46\xa0\x8f\x60\x95\x8f\x5d\xef\x23\xb6\xfd\x28\x2f\xa3\xf6\xd9\xf2\xd1\x23\x13\x43\xbd\x46\x53\x2b\xc1\x63\xfc\xe1\xc4\x37\x7e\xef\x29\xd1\xb3\xd0\xe4\x70\xf0\x22\x26\xd2\x52\xfa\x2b\x1f\x53\x0c\x96\xfd\xcc\xf6\xc1\x79\x48\x16\x81\xbb\x12\x14\x0d\x4a\x87\xc2\x17\xc0\x49\x71\xa2\x3b\x26\x4d\x54\x5a\x17\x78\xd8\xa7\xe8\x5d\xf3\xb1\x1a\x6b\x06\xc5\x81\xd2\xa9\xfb\x91\x2e\x76\x6a\xed\x8e\x23\x2e\x52\xef\x9b\x18\x33\xb0\x2e\xd3\xf6\xd3\x60\x87\x27\x7e\x1d\x2d\x93\x2a\x68\x34\xce\x49\xbc\x00\x46\xf7\x3a\x6d\x05\x3e\x56\x45\xd1\x70\x60\x46\x85\x10\x20\x0b\x0d\x8b\x1f\x3e\x7c\x03\x51\xaa\x84\xaf\x4f\x28\x5d\x67\x53\x0c\xf2\x19\xfd\x8e\x54\xe1\x0a\x2d\x1d\x84\x21\x37\x6a\xbe\xf3\xc0\x8b\xed\x9c\x58\x3f\x0f\xce\xb1\x61\x78\x97\x6e\x9e\x8f\x27\x9e\x72\x20\x4c\x87\x6e\x59\xb0\x0c\xb7\x1a\x95\xab\x4b\x72\x1f\x78\x91\x06\x16\x4d\x58\x90\xbf\x41\x1c\x00\x28\xa5\x23\x76\x74\xed\xee\x3b\x35\xe3\xb7\x6f\x8e\x20\x8e\x31\xaf\x78\xe1\xfe\x2a\x1f\x87\x70\x82\x3d\xcb\x7f\x3a\x58\x1f\xd9\x2c\x4a\x96\x63\xaf\x18\x2a\x59\xa3\xca\x20\x6b\x41\xdf\xfc\x3c\xea\xa8\x48\x54\xe1\xd5\x0a\xba\x79\x3e\x56\x71\x43\x6c\xcb\x68\x34\xdf\xe6\xfb\x51\xef\x4d\x2a\x32\xcb\xad\xf9\x85\x0d\x26\x5d\x11\x4a\x3d\xbf\xb9\x8e\x4d\x76\xb9\xcd\xbc\xf6\x7c\xab\x62\x45\xe6\x17\xe4\xb8\x29\x61\x4d\x4c\x31\xce\x98\x3c\x9b\x67\x9d\x27\x8a\xbe\xeb\x5b\x81\x12\x35\x2b\x9d\xb4\x74\x22\x45\x5b\xc7\x37\xc2\x2f\xd5\xd4\xd7\xf7\xee\x6d\x2f\x47\x85\xba\x1a\x4c\x73\xc8\x2c\xff\x6e\x65\x0b\x33\x3b\x5b\xbe\x37\x29\x23\x50\x60\xa2\x0b\xae\x02\x46\x54\xd2\x0b\xb5\x16\x2c\xa5\x18\x26\xcb\x6d\xc2\x68\x44\x44\x1d\x37\x03\x1f\x81\xdc\x54\x1b\x67\xc5\xae\x27\x36\x27\x7e\x14\xd7\x32\xf9\xa9\x2a\xbb\xfc\xb4\x86\x5c\xdc\xbb\xb7\xdd\x8b\x4c\x3f\x49\xf3\x22\x0a\xf3\x8a\xd4\xec\x29\x3d\x8c\x70\xaa\x82\x27\x7d\xcd\xc6\x6a\x6e\xf2\x7c\x45\x42\x33\xf8\x54\xb5\xe0\xfc\xd2\xbe\x39\x71\xb0\x8f\x97\x9e\x1e\xe9\xe6\x8f\x02\xbf\x28\x31\xb2\x8f\x46\xd5\x9d\x89\xe2\xe3\xfd\x85\xe6\x3d\xf9\x45\xa0\xa0\xae\xdf\x9f\xe8\x41\x42\xdd\xfd\x44\x29\x0f\xd8\x73\x70\xb5\x08\x9d\x8c\x62\xfd\x39\x8f\x08\x1a\x0d\xb5\xe3\x15\x59\x14\xaa\x95\x4a\x98\xd3\x10\x5c\xac\x9a\x90\x40\xbd\x7b\xf7\x3a\x5e\x81\xf2\xea\xf9\x58\x01\x3d\x42\x9b\x14\x99\x89\xb7\xab\xb8\xe9\x43\xce\x4d\x11\x33\xb0\xb0\x04\xe2\xbc\x5b\xaa\x19\x7c\x5d\xa9\x50\x73\x61\x0a\x96\xf4\x4a\xb0\x69\x74\x6a\xe9\xc5\xfd\xed\x7d\x73\x33\x7e\xb4\x8c\xc9\x96\x90\x2c\xfe\x40\xf1\x71\x9d\xfb\x48\xf9\xe6\x6e\x94\xe6\xe9\x38\x0b\x79\x00\xd4\xc1\xda\xfc\xf8\x4f\x7d\x2a\x64\xe1\x00\x0d\x0b\xc2\xad\x60\xeb\xde\x50\x38\xc6\x1b\x0d\x24\xd4\x2f\x97\x16\xb7\x37\xe3\x7b\x3e\x2c\x8b\x0e\xcf\x8d\xd2\x19\x22\xdb\xfb\x8a\xf9\x82\x88\x8c\x07\x29\x31\x22\x7a\x27\xf9\xd7\xf4\xb0\xf8\x58\x91\x42\x51\xfc\x06\xb5\x92\x59\x35\x74\xf8\x6f\x50\x91\xe4\x7c\x49\x97\xa4\xee\xc2\x03\xc9\xd4\xe8\xe6\x34\xe6\xb9\x76\x37\x4b\x4d\x8f\xfc\xad\xba\x58\x34\xee\xf9\x58\x0b\x0d\xd8\x6c\x35\x8d\x32\xae\xf3\x38\x25\xcf\xf2\xe7\x50\xf4\x41\xc9\x15\x77\x79\xd5\x5b\xa1\xd8\x9a\x9e\x4f\xbd\x99\xce\x2d\xf0\xea\x18\x17\x6b\x33\xc5\x8e\xa2\x20\x5d\x1b\xd8\x0c\x9a\x8f\xd2\x32\xd7\xfd\x73\x3d\xdf\xb2\x6a\xb3\x32\x27\x23\x53\xb7\xf1\x80\xfe\x6c\xe3\x41\xed\x45\xed\x59\x6c\x2f\xa7\xe3\x04\x20\x8e\x8a\xf4\x29\x9f\x94\x49\x11\x5b\x81\xff\xfa\x1f\xce\xe8\xb6\x74\x69\x95\x51\xb5\xe1\xde\xa9\x04\xbd\x4f\x2b\x29\x92\xa4\xb0\xa2\x38\x29\xa8\xa9\xd3\x6a\x72\xb8\x3e\x1a\x49\x16\xd0\x0e\x47\x51\xc6\x0b\xb4\xa9\xca\xe2\xa3\x18\x13\x86\xe3\xa1\xa8\xc4\x79\x8d\xe0\x0b\x58\x02\x7c\xa2\xfe\x7e\x60\x87\x69\x96\x0d\x4c\x5f\xa2\x1e\xf4\x65\x6e\x92\xd1\xe4\x63\x15\x7a\x0d\xd2\x91\xe5\xb2\xa1\x23\xd9\x74\x12\xca\xa7\x60\xe3\x85\x8f\xa1\xe5\x69\xc9\x28\x89\x73\x0c\x0e\xe5\x5d\xc8\x90\xa0\x9e\x18\xac\xb0\x8f\x67\xab\x36\xaf\xcc\x1c\x5c\xd0\x33\x07\x17\xfc\x60\x26\x88\x27\x1f\x2b\x2f\x03\xc6\xed\x93\x1d\x0f\x7c\xff\xaf\xfe\x36\xa6\x43\xa8\xce\x78\xe7\x63\x1d\x35\x4a\xb9\x63\xea\x00\x7a\x37\x7e\x65\xaa\x78\x8c\x18\xd2\xca\x3a\xde\x93\x9a\x7b\x86\xc1\xda\x45\x15\x0c\xcc\x5b\x9c\x9d\xa8\x5c\xeb\xfa\x44\x41\x37\xef\xd7\x4c\xe8\x9e\xc5\xb6\x49\xc2\x41\x9a\xb5\x3c\xde\xfd\xde\x44\x5d\xd7\x3d\x85\x28\xea\xa6\x6b\x31\xd7\x10\x44\x14\xf0\x2e\xa1\x21\x45\x19\xc1\x4b\x75\x83\xae\x45\xfa\x87\x8d\x74\x7f\xb9\x97\x0e\x44\x60\xf5\x65\x85\x00\xfb\x72\x13\xae\x2c\x4f\xe3\x55\x8c\x0f\xba\x52\x8d\x22\xff\xda\x6c\x15\xf7\xcd\xb5\x43\x93\x59\xf0\x23\xc2\x7c\x23\xc7\x97\x6a\x93\x27\x5f\xb9\x55\xd1\x91\x2b\xd6\x48\x67\x17\x99\x0e\xa6\xbb\x1c\xc3\x6e\x79\xe7\xe8\x45\x71\xd9\x07\xd9\xe0\x43\x3c\x32\xc0\x35\xaf\xb1\x5f\xc1\xae\x47\x8f\x99\xd5\xa6\x6b\x77\xf5\xd2\xc2\x01\x95\x51\xbb\xa1\x1a\x0f\x6f\x70\x2b\x2b\xb3\xcb\x9e\x89\x56\xb4\x2f\xe9\x12\xf8\xc4\xc5\xf5\xdd\x34\xee\xcd\x6a\xe6\x59\xc5\x0f\x3b\x03\x35\x79\x47\x4e\xe3\x90\x0d\x4f\xd4\xb4\xd0\x17\x17\xdb\x03\xd3\x8d\x0a\x6e\x21\x23\xa3\x39\xa1\xb2\x9b\x13\x0a\x03\xb7\x1c\xe5\xa1\x89\x67\x3d\xd4\xf1\x1c\x1c\x3c\x8f\x03\xab\xb2\x07\x9b\x60\x99\x13\x7e\x4a\x41\x8a\x98\x87\xd5\x03\x18\xae\x4e\xfc\x8b\xf8\xa9\x26\xe5\xf8\x06\x82\x0c\xa6\xde\xa8\x04\x43\x51\x3f\xdf\xd5\x72\xa4\xc8\x0f\x02\xa5\x5d\x74\x16\xbb\x07\x65\x96\x77\x03\xcf\x56\xfc\x06\x3d\x71\x57\x3b\x2f\xbf\x1a\xd7\xf7\x6f\x03\x5f\xc5\x64\xc2\x0e\x06\xd8\xe2\xf6\x44\x15\x54\xa9\x2a\x5c\x9b\x78\x00\xfe\x1d\xd7\x8c\x19\x58\x1b\xf3\x83\xd4\x0c\xb3\x82\x02\xf1\x4d\xf5\x38\x4a\xec\x90\x19\xf5\xb4\x20\xa7\xd7\xe0\xac\xcd\x57\x86\x03\xc3\xe2\x4f\x30\x7c\x28\x2c\xf1\xb1\x82\x72\x74\xa3\x95\x28\x81\xfe\x93\x93\x66\x2b\xaf\x5b\xa4\xea\xe8\xe1\x48\x95\xb6\x36\x15\xbe\xd8\xde\xbb\x77\xbb\x57\xaf\x43\xcd\xdb\x89\xad\x38\x09\xeb\xeb\xc0\x2a\xbb\x21\x93\xbd\x7b\xdd\x49\xe0\x65\xc6\xff\x4a\x31\x38\x11\x61\xf0\xa3\xde\x15\x33\x05\x04\x57\x75\x02\xcd\x9c\xaf\x13\x2f\xba\x74\x18\xc2\x7b\x2a\xfc\x3c\xce\x9b\x0f\xf8\xa6\x13\x94\x9c\x20\x48\xbd\xa6\xea\xa9\xd7\x1a\x68\x9b\xdb\x71\x14\xda\x24\x17\x44\x43\x93\xf0\xea\x66\xc7\x8f\x41\xa3\x51\x9a\xe7\x36\x77\xea\x4c\xcc\x43\xa5\x2a\x7a\xd7\x14\x05\x7a\x94\x14\x69\x6c\x33\xd3\x8d\x2d\xf6\x3c\x23\x84\x02\x0f\x97\x3d\xe5\x82\x98\x28\x59\xb5\x79\x91\x66\xf9\xf6\xd6\xbe\x39\x6e\x33\x20\x3f\x3f\x5b\xfa\xb0\x8d\x2b\x3a\x7a\x62\xc1\x77\xdc\xe0\xee\xa9\x26\xb4\x79\xb2\xa3\x8c\xb8\x19\x98\xa1\x61\x97\xcf\x13\xfa\xb4\xcd\x64\x5a\xff\x09\x55\xc4\x4a\x4c\xc1\xa3\xbb\x28\xd1\xfc\x1c\x9b\x43\x82\xe1\x96\x93\x73\xbd\x56\x63\x84\x28\x9f\x4d\x12\x85\x26\x33\xfd\x31\xaf\x67\xa9\xec\xeb\x32\x7f\x53\x50\x3f\x4a\x3d\xb9\x01\x36\xe5\x71\xdd\xdd\x3a\x5e\x4b\x03\x0f\xce\xb5\xbb\xe3\xf5\x6d\x2a\xfe\x85\x6e\x8b\x70\xb1\x79\xec\xfb\x55\x85\xf1\x3f\xa3\xa8\x42\x8e\xa8\x5c\x31\x4b\xc3\x15\x8d\x6b\xe5\xf4\x44\x08\x58\x9b\xc8\xdc\x63\xbb\xca\x73\x4e\xae\xd1\xe9\x9b\x9e\x8d\x5a\x33\x6b\x29\x49\x2a\xb5\x94\xc4\xff\x9b\x13\x45\xfc\xf0\xa6\xd2\xec\xe8\x8d\x71\x41\x4b\xbe\x2c\xee\x36\xc5\xf9\x40\x51\x74\x45\x79\x61\x92\x10\xb4\x40\x88\x4c\x30\x6b\x5d\x21\xa5\x67\xe1\xf4\x0a\x65\xcb\xab\xe1\xa8\x12\xdd\x70\x24\xc4\x27\x3a\xa8\x1e\xd9\xd0\xf5\xb8\x11\x46\xbf\xab\xfa\xae\xef\x36\xf0\xed\x2c\xb5\xbb\xe3\x3c\x4a\x6c\x9e\x0f\x6d\x52\xa9\x84\x20\xdc\x17\x27\xb5\x99\xbe\x7f\xef\xde\xfd\xbe\x0a\x46\x8f\x4a\xcd\x52\x07\x3e\x5c\x69\x04\x6e\x8e\x62\x13\x25\x45\xb4\x2c\x6a\xed\xac\xc5\xa5\x28\x19\x35\x1c\x78\x64\x72\x12\x05\xa7\xe7\x8f\x48\xeb\x0c\x5a\x2a\x7c\x52\x5b\x71\xcf\xb5\xd7\xcc\xba\x80\x16\x84\x16\x99\x5c\xab\x48\xb5\xab\xc0\x5f\x77\x52\x8a\x74\x14\x85\xdb\xe9\x65\xe2\x45\x1f\x53\x63\x88\x27\xc8\x0a\xf0\xbf\x2b\xb2\x86\x13\x58\xfe\x4e\xf4\xac\x7c\xf8\x62\x07\x9f\x74\x0e\x34\x1b\xa5\x19\x95\x32\x0f\xce\x79\xf1\x49\xa7\x1e\xf3\x49\x02\xf8\xa1\x0f\xbb\x6b\xaa\xd4\xa1\xee\x29\x48\xc5\xc8\xac\x0f\x6d\x52\xe4\x84\x1a\x12\x2e\x15\xfa\x6d\x60\xe1\xde\xa1\xd0\x19\x3b\xe1\x03\xac\x11\x07\xb6\x70\x84\x0a\x37\xb4\xcf\xfd\x50\x8b\xbf\xd2\xba\x65\x7a\x71\xba\x3d\x3c\xde\x2b\x4d\x01\xe2\x88\xaa\x8e\x28\x05\xa1\xe1\xfc\xf8\xd4\x8f\x19\x3e\xde\xa9\xb3\xcf\xbf\xd0\xfe\xd2\x38\x2d\x32\x2e\x9f\xe1\x2d\x5f\xc5\x45\xf2\x49\x13\x21\x70\x94\xf4\xa2\xd5\xa8\x37\xe6\x0a\x15\x4a\x42\x6f\x29\x11\xf2\xb7\xb4\xb6\xcb\x70\x14\xa7\xeb\xd6\x02\x38\xee\xa4\x0e\xca\x65\xa3\xb0\xba\x0b\x1a\xa2\x2d\xf5\x85\x8d\x4a\x4d\xb2\x21\x85\x5f\x8e\x58\x12\x10\x6f\x16\x44\x46\x7c\xdc\x34\xf1\x32\x30\x59\xd7\x11\x24\xc8\xc0\xad\x02\x19\x5f\x50\x48\xac\x17\x8c\x64\x2f\x4e\x6d\xc2\x43\x4d\xeb\xf0\xcc\xbd\x7b\xdb\x2b\x59\x9a\xa4\x10\x08\x03\x5a\xe0\x18\xf5\xe2\x60\x81\x7f\xa0\x63\xb8\xb3\x81\xef\xe8\x0e\x4d\x38\xd3\xfa\xc2\xfe\x8a\xf0\x2f\x9c\x1a\x1b\x1f\x54\x7e\x1f\x06\x9e\x05\x3d\xec\xe5\x33\x8a\xb7\x97\x29\xe9\x9c\x97\x2f\x57\x12\xea\xf2\xa7\xb4\x9e\xfc\x28\x4a\xd2\xd8\xb4\xb4\x68\x8b\x2a\x1b\x5d\xd0\x94\x5a\x26\x8b\xf2\x6e\x96\xa6\x2b\xfc\x04\x1c\xa9\x7e\xf9\xf7\xc2\xc3\xdf\x80\xe7\x31\x45\x11\x15\xe3\x1e\x27\x10\x0e\x79\xac\x96\x56\xcb\x51\x85\xbe\xd7\x34\xb6\x1c\x47\xfd\x01\xd5\xc2\x4b\xb3\x00\xef\xfa\xa1\xe2\x69\x7d\x80\xee\xa3\x68\x5f\x0b\x6c\x33\x1b\xc7\xae\xdf\x01\x3f\x0b\xf5\x3b\x3c\x9e\x27\x3a\x1e\xfe\x7d\xdf\x55\xb6\xd7\x4c\x61\xfd\xa8\xb3\x9b\x74\x71\x93\x25\x37\x2b\xd3\x44\x0d\x9b\xc0\x84\xa1\x2d\xa3\x92\x02\xe9\x15\x50\x41\x7f\x12\x28\x5a\xc8\x3f\xd1\xb8\xbe\xff\xf2\x3f\x47\x53\x4e\xc8\x6d\xca\x20\xcb\x31\x6e\xba\x41\x9d\x87\xaa\x88\x76\xb1\xe2\x6e\xa2\xbc\xd8\xdd\x72\x12\x5b\x47\x03\x25\xc4\x73\x83\xd6\x0c\xfe\x83\x6b\x52\xaa\x47\xbf\xb1\x43\x93\x1a\x6c\x99\x96\xd6\x48\xb4\x11\x35\xd2\x89\x8b\x90\x68\x25\x60\x64\x98\xd9\x29\xe0\x73\x50\x20\xfe\x7d\x2d\x4f\xf5\xdb\x81\x9a\xa7\xa8\x6b\x4a\x3f\x47\xc9\xe4\xf2\x18\x56\x42\xe6\x0f\x7c\x7a\x72\x51\x3d\x9f\xbf\xff\x0f\xf2\x19\x65\x20\xbe\x4a\xcf\x07\x31\x47\x0b\x22\xf4\xa8\xba\xb6\x3a\x4a\xc9\xbf\x34\x42\x36\xe9\xcd\xfa\x67\x76\x52\xe3\xea\xce\x4f\xd4\x10\xea\xb7\x15\xa4\xf8\x5e\x13\x49\x4c\x79\xad\x2d\xed\x22\x95\x72\xb9\xea\x10\xf6\xa2\x3c\x4c\x87\x52\x41\x87\xd9\x60\xc9\x29\x3e\x69\xda\x18\xe1\x20\x8a\xfd\x48\x04\xcb\xc7\xaa\xcd\x70\xd3\x65\x3d\x89\xb5\x3d\x88\xfe\x6b\x2c\x18\x80\x32\x00\xd8\x20\xb2\xe6\x3a\xa9\x48\xf3\x2b\x85\xd5\x34\x2b\x32\xc3\x63\x6e\x4e\x9c\x4d\x31\xf4\xaa\x0a\xff\x38\xeb\xb6\xd4\xd0\xec\xdd\x89\xb7\xa5\x77\x9b\x6e\x23\xed\xe6\x85\x09\x99\x29\x05\x33\x0c\x88\xf6\xf9\x78\xe2\x5f\xce\x60\x9c\xf4\x32\xdb\xcb\xb7\xfb\x47\x7a\x6d\xe2\xd3\xfa\x5b\xe4\xd7\xf8\x98\xd6\xd4\xc6\xeb\x54\x17\x41\x7e\x0a\xf4\x79\x13\xea\x6d\xc8\xd3\x28\x28\x9c\x5d\x57\xfc\x62\xd7\xab\x75\x54\x52\xa2\x20\x92\x52\x0f\x6e\xb9\x40\xb9\x0d\x1f\xab\xf1\xf1\x32\x8b\x1e\x9a\xc2\xc6\xeb\xdb\x2a\xfd\x6c\x9f\x56\x5f\x57\x10\xf8\x1f\x56\x49\xd3\xcb\xab\x16\x24\xf1\xe6\x88\x7e\xdf\x5c\x7b\x9c\xf0\xe0\x17\xf3\xfc\xe3\x9e\x99\x41\x89\x4f\x5c\x17\x76\x2d\x1d\x27\x3d\x89\x15\x11\x75\xbe\x43\x57\xc1\xc7\x4d\x38\x95\x2c\x35\x3d\x8a\xac\x68\xe9\xc3\x7a\x21\xb6\x80\xad\xf9\x3f\xb0\x52\x10\xd2\x9c\x73\xba\xfb\x43\xd3\x4f\x60\xac\x37\x95\xf4\xcb\x3f\x76\x6c\x00\x2e\xe0\xb8\xd3\xd4\x69\xce\x6c\x98\xae\x32\x87\x83\x24\x65\x64\x00\x25\x2b\xf3\x73\xe7\xd1\x68\x14\x8b\x2c\x32\xb6\x3f\xc6\xeb\x45\x79\x85\x1e\x07\xe3\x15\x6b\x00\x8e\x3d\x8b\xed\x62\x35\x57\xd4\x9d\xac\xba\x07\x63\x71\x0b\xd7\x8c\x3b\xdf\xda\x91\x9a\xce\x68\x3c\x44\x83\x13\x69\xd3\xbf\xd2\xe3\xb4\xff\xaa\x66\xac\x5e\x22\x6d\x8b\xf5\x2e\x4a\xd1\x88\xd0\x2e\x6a\xc5\x93\x8b\x5a\x7c\x3c\xe9\x31\xa7\x25\x56\x04\x4c\xb8\xa3\x86\x72\x03\xfd\x3f\xac\x17\x83\x5f\x24\x42\x57\x3b\x1c\x15\x33\x2a\x20\xf8\xde\xc4\x07\x4f\xb0\xbd\xd2\xc5\xf0\xa9\x65\x37\x4b\x57\x6c\x36\xd3\xda\x27\x12\x7c\x6c\xdf\xf8\x09\x2a\x4e\xb6\xb7\x26\xbe\xc4\xfd\x0f\xfe\x61\xcb\xcf\xf6\x1d\x23\xb3\xca\xc7\x4d\x30\xcd\xfd\x6d\x7b\xa8\xb0\x59\xc2\x91\x5d\x45\xcf\x91\x4f\x6a\x4f\x8e\x3e\x16\x47\x2b\xa0\x51\x80\xf5\xb8\x8a\x65\x80\x9b\xc0\xcc\x15\x12\xcb\x3a\x19\x7c\xe9\x4a\xc7\x45\x3a\x4c\xbb\x51\x6c\x61\xb5\x44\x20\xb0\xa2\x89\xeb\x1b\x01\xa3\x2c\x8d\xd3\xa4\x6f\x7b\x98\x72\x93\x31\xce\xf2\xc1\x34\x8d\x77\xd2\x43\x92\xff\x70\x73\xa5\x69\x38\xce\x85\x69\x02\xef\xe0\xa1\x76\x6d\x97\x74\x75\xbe\x21\xe1\x5e\x6a\x2f\x67\x26\x01\xdb\x0d\xcf\x54\xd0\x6b\x93\xf9\x8a\xcd\x39\xdd\x9e\xc5\x76\x5e\x64\xd6\x0c\xe3\xc8\xc3\x2c\x98\x97\x8d\xde\x9c\x70\xb4\x35\x74\xea\xc3\x71\xd7\xb4\x36\x55\x03\x97\x5c\xcd\x50\x06\x0c\x73\x53\x44\xf9\xb2\x61\x8c\xed\xde\xbd\xbc\xa1\x77\x74\x3c\xc6\x67\xc7\xd4\x27\xc8\xdd\xb4\x87\x3f\x63\x08\x63\xe0\xdd\xc5\xe9\xda\xfe\x5b\x5c\x6c\xaf\xdb\xa2\xe5\xa9\xc5\x31\xfa\x24\x51\x86\x8e\x53\xc6\xaf\xa6\xad\x32\xea\x45\xc5\x97\x43\x4c\x3e\xd1\xa2\x79\xe9\xc8\xe6\xdb\x14\xe9\x18\x62\x2f\x14\xf7\x58\xcf\x43\x13\x6a\xa1\x34\x77\x2c\x50\x7d\xb0\xbb\x6a\x80\x73\x64\x93\xc2\xf4\xd3\x04\xef\x93\x1b\x86\x13\x25\xc5\x7d\x51\x35\xb9\xff\xac\xf6\x90\xcb\x44\x68\x79\xc0\x5c\xd9\x4c\x35\x42\xaf\x53\x68\x47\x74\x81\x27\x8e\x6d\x36\x4b\x45\x3a\xde\xfc\x28\xdf\x69\x4b\xa0\x49\x5c\xe5\xa4\x49\x22\x65\xcd\x9a\x15\xe2\xfc\x9e\x51\x83\x80\xf8\x14\xcb\x27\x4e\xbc\xf7\xff\xb0\x4a\x4b\xbc\x12\xd1\xe2\x6b\x4c\x4e\x36\xef\x31\xa7\x71\x33\x2e\xc6\x26\x9e\x51\xed\x8d\x5f\x4c\xfc\xf8\xd1\x4c\x47\x15\x3b\xb6\x4c\xeb\xd5\xa9\x17\x30\xfb\x6f\x96\x8b\xd2\xe6\xbb\x31\xb0\xcb\x2a\x44\xb9\x5c\x09\x5a\x47\x69\x41\xfe\x9f\x35\x29\x60\xe4\x45\xe6\xb7\x35\x3f\xcf\x2d\xb9\xbb\xc8\x7e\xf9\x3f\x14\x95\xcf\x9b\x88\x0c\xae\xd4\x0a\x48\xcf\xb7\xbb\x26\xf9\x12\xd3\xd0\xb8\xc2\x69\x79\xf5\x52\x38\x7d\x5a\xc7\x02\xc3\x11\xba\x69\xf3\xf3\xbc\xd7\xdf\x99\x78\x2e\xf5\x77\x9c\x4b\x5c\x4e\xd3\x22\x2f\xec\x88\xcd\x02\x42\xca\xb3\x9a\x8f\xed\x3e\xae\x54\x42\x44\x8d\x58\xef\xa5\xcf\x2a\x19\x97\xd3\xf4\x03\xe8\x13\xdf\x57\xd5\xe8\x0f\xe0\x52\x80\x9a\x9f\x9d\x2a\x76\xa0\x6f\x4f\x14\xd9\xd9\x4d\x25\x7f\x06\x20\x1c\x76\xf0\xb6\xa9\x16\xfc\x3e\x03\xdb\x86\xca\xf4\x95\x89\x52\x6e\x1b\x29\x39\x89\x53\x04\x7f\x17\xbd\x6b\xba\x33\xc9\xd2\x7d\xd9\xe3\x54\x30\xf3\x92\x87\x73\x61\xc4\x8a\xaf\x0b\x78\x84\x8a\xbe\x14\x53\x52\x21\x09\xc1\xcf\x6f\xeb\x28\x9a\xa2\xd9\x4e\x85\xb4\x61\x25\x27\x09\x0d\xf1\x5a\x2d\x27\xc9\x7b\x07\x1b\x1d\x5d\xca\xdb\xf8\x6e\xe1\x45\x2f\x6f\x00\x49\x1b\x37\xbc\xa5\x4c\xa8\x38\xa0\xae\xe1\x0a\x1c\x08\xc3\xe1\xff\x81\x46\x65\xa1\xeb\xc0\x97\x95\x6f\x68\x09\xdb\xcb\xe4\x32\x98\xa8\x09\x68\x7c\x19\xec\x54\xb4\xc0\xa7\x54\x37\x2f\x5d\x5e\xb6\x99\xed\x3d\x8a\x97\x80\x50\x04\x14\x07\x78\x3d\x47\xf4\xb0\xfb\x9b\xfa\x2b\xdf\x9c\x7c\x64\x51\xde\xc7\x4b\xcc\x40\xcc\x8d\x1c\x3d\x1c\x71\xd9\x75\xaa\x5e\xb3\xac\xc2\xe0\x4a\x4d\xe5\x5f\x09\xa1\xaf\x07\x1c\x2d\x8b\xfc\x1f\x42\xf3\xe3\xf8\x3b\x3e\x09\xb4\xfc\xec\xd0\xee\x6c\x39\x36\x46\x18\x1c\xbc\x10\xd6\xe7\x12\x7b\xa8\x56\x0e\xaa\x52\x68\xdd\x81\xf1\x18\x16\xfe\x1e\x16\x24\xd6\xda\xe9\x89\x12\x1d\xe2\xfb\xc4\x5a\x39\xa5\xd8\x25\xae\x56\x0c\x46\xcf\x76\x5b\x5a\x8f\x69\x1b\x4c\x12\x9f\xd4\x38\x98\x0e\xce\x2d\xb4\x33\x13\xb9\xa1\x65\x8c\x42\x7d\x1d\x49\x20\x9f\x28\x2f\x81\x19\x94\x78\x7d\xbb\xf7\x7b\x7f\x40\x7b\xc0\x29\x3c\x3a\x05\xb9\x0f\xb5\x36\x19\x8f\x6e\xb9\x3e\x9a\xd6\x22\x91\x1a\x44\xb1\x66\xa9\xd3\x3a\xbf\xe0\xa6\x16\x66\xbc\xea\x54\x7d\x92\xe0\xe0\xdc\xcb\xed\xd5\x28\xeb\x47\x49\x4b\x71\xb9\xfd\x1e\xed\x7b\x51\x9f\x78\xcc\x33\xeb\xe6\x2b\x2d\x5f\x0b\x03\x0b\x1f\x1f\x37\x31\x6e\x25\x69\x92\x93\x00\xdd\x3e\x69\xb0\x7e\x8b\xbe\x58\xb8\x71\x9e\x56\x20\xd3\x71\x52\xc4\x36\x07\x38\x85\x3b\x16\x6a\x38\xf2\xe7\x0d\x40\x98\x05\x42\xde\xce\xf8\x89\x1f\xd6\x0d\xd2\x52\x26\x58\x41\x47\xdd\x64\x6d\x99\xd6\x18\x88\x8e\x20\xb9\xfa\x32\x16\x24\x4e\x90\x78\xc2\xe6\xdf\x0b\xb4\x3e\x11\x04\xb4\x9d\x40\xe0\x9e\x45\x87\x2e\xa9\x17\x33\x89\xd3\xdd\x8b\x8f\x20\x87\x81\x48\x3f\x1f\xab\xa6\xe1\x1a\x46\xd1\x5b\x0a\x56\xcd\x55\x62\x2f\xcd\xc1\xab\xc6\x32\x71\xc3\x2a\x22\x5c\x5c\xf2\x1f\xd3\x03\x65\x16\x12\xa5\x6a\x76\xcc\x7f\x2e\xca\xcd\x68\x64\x4d\x26\xb2\x7e\x08\x04\xb6\x63\x8a\x82\x4f\xa6\xf5\xc7\xdb\x36\xdd\x74\x15\x69\x08\xd3\x82\xd1\x7d\x0b\x45\x58\x85\x15\xb1\x58\xdf\x41\x46\x06\xb5\x82\x13\x30\x3f\x7c\x12\xb4\x3e\xf7\x39\x3f\xb6\xb0\x6f\xce\x73\x2c\x2e\x1c\x70\x25\x26\x7a\x09\x7c\x42\xe6\x50\xc8\x17\xc9\xe8\x0b\xdc\x7c\x73\x9f\x61\x71\x71\x3f\x58\xf9\x96\x59\x5f\x98\x36\xb7\x9b\xdd\xde\x37\xe7\x6a\x42\x3e\x11\xf9\xc7\xcf\x3f\xa2\x66\x3b\xc4\x91\x21\x3a\x03\x92\x83\x22\xef\xbf\xf9\x2b\xe8\x19\x4b\x45\xa1\xf4\xd9\x52\xf1\x28\x6f\x08\x4d\x4a\x84\x59\x32\xcb\x5b\x83\x78\x2e\x94\x01\x61\x68\x89\xa2\x08\xae\xf6\x21\xdc\x86\x8c\x86\xf8\xd1\xe2\x0f\x26\x1e\x10\xf0\x3b\x4f\x76\x5a\x6a\x2c\xf8\x09\xa5\x47\x10\x25\xfd\x7c\xc6\x6b\x9b\x01\x5d\x83\x90\x0f\x18\x0e\x24\x89\x0f\x6b\x51\xde\xfc\x7c\xbb\x67\x0b\x9b\xf5\xa5\x30\x2f\x71\xbb\x06\x61\x4b\x3f\x6a\x79\x9c\x10\x41\x88\x90\xf9\xe1\xda\x79\x1c\x42\xd0\x5f\x3e\x32\xf8\x65\x2d\xbd\x3c\x38\xb7\xd4\x2e\x06\xc4\xc3\x3e\xe3\x6b\xe1\xd8\x92\x88\xad\xaf\x06\x5e\x1b\x64\xea\xd6\xaa\x2a\x52\xd0\xe7\x60\x04\x77\xe1\x55\xc0\x23\xdf\x9b\xa8\x4d\x7e\x5f\xd1\x0b\x2c\xdb\x38\xde\x59\x3e\x50\xbc\x9a\x1b\x5c\x55\x14\x51\xb2\x96\xe3\xd0\x43\x37\x9b\xf5\x42\xe8\x01\x3a\x66\x79\x57\xe1\x3d\x13\x28\xde\x8c\x0d\x4a\x57\xf1\x45\xe7\xb0\xb6\xd1\x53\xe1\x19\x61\x26\x1b\x50\x1a\x50\xcb\x66\x98\x8e\xf3\x59\x8f\x71\x61\xca\x17\x74\x80\x4f\xd2\xf7\x21\x29\x05\x25\x12\xe2\xa8\xbf\xa8\x3d\xc7\x85\x03\xed\x5e\x66\x86\x20\x34\x75\xd3\xe0\x17\x2b\xd5\x59\x5f\xbc\x1c\x67\xc9\x63\xbe\x96\x71\x17\xae\x0e\x8f\xf0\x13\x1d\xc5\xa9\xc6\xe2\x34\x78\x9e\x77\x26\xaa\x21\xf8\x00\x77\x87\xe0\xef\x5f\xd3\xeb\x02\x60\x64\x03\xbe\x0c\x27\xb7\x68\xdd\xa2\xe5\xff\x68\x47\x8b\x5a\x5f\x50\xba\x5b\x3c\x85\x8f\xfb\x7f\x7c\x2a\xaf\xb8\x1b\xa7\x69\x0f\x39\x68\x95\x39\xc1\x75\x70\xce\x2b\x1c\x6e\xb5\xb1\x0f\xf3\xf9\x4d\x65\x4a\xbf\xd9\xc4\x21\x12\x25\xbd\x28\x2c\x86\xb2\xd2\xb1\xe0\x60\x80\xf9\x58\x93\x54\x0d\x32\x96\x10\x92\xdb\x63\xb9\x0a\x3e\xa9\x19\xf8\x7d\x73\xed\x68\xc8\x85\x34\xdd\xb6\x0e\x14\x22\xbb\x09\x01\x39\x4e\x42\x9b\x15\x26\x42\x43\xdd\xb5\x2a\xcb\xd7\x22\xad\xca\xcd\x2e\x74\xef\xde\x76\x37\x4b\xcb\x64\x47\xe1\x1a\xce\xab\x51\x96\xf3\x6a\x5a\x66\xc5\x82\x0b\x4d\x4f\x1b\xc0\x70\xbe\xa5\x55\x03\x4e\xd1\xc7\x59\xed\x92\x56\x39\x8d\x8b\x89\xab\x1b\x67\x5d\x93\xd0\xde\x43\x62\x06\x05\x3d\x51\x9e\xa7\xfb\x45\xb2\xf4\x75\x85\xd0\xb5\x59\xda\x23\x27\x56\x2e\x1e\xe1\x90\xf0\x63\x19\x5a\x53\x35\x2f\xc6\x26\x2b\x5a\x6a\x68\xfd\xbc\x82\xc9\x9f\xaf\x81\x3b\xa8\x9d\x18\x25\x61\x34\xe2\x5a\x10\xe2\x64\x34\x56\xf8\xb8\xe3\xbf\xde\xac\x46\x3d\xf8\x01\xa1\xc1\xfd\x23\x25\xb6\xff\x47\x0a\xf6\x64\x8d\x5b\x56\x82\xa2\x57\xb8\x94\x4b\xae\x10\x6e\x7c\xd3\x1c\xa8\xc0\xbb\x30\xe1\x7c\xa2\x6e\x8d\x84\xd4\x81\xf7\x74\xfb\xd4\xef\xd9\xc9\x66\xd8\xf0\xe2\xe2\x52\x3b\x2f\x4c\xdf\xae\x0d\xa2\x7c\x64\xa5\x1d\xe8\x1a\xec\x7a\xee\xa0\x41\x91\xce\xac\xda\xcc\xb0\x5c\xb7\x63\x23\x76\xf8\xe9\x73\x3a\xb6\x8a\x4d\x34\x34\x49\x91\xcf\xb4\x7e\xfd\xf3\xde\x8c\x79\x6a\x57\x56\x37\x91\x54\x7f\xb3\x1b\x5b\x38\xd0\x4e\xd2\x28\xb7\x8a\x2d\xe4\x9c\x62\x0b\x39\x57\x6b\xff\xd3\x9d\x0d\xa2\x91\x4c\x2e\xb6\x54\xe9\xeb\x9c\xa6\xba\x3b\xa7\x24\x29\x57\x6d\xf2\x24\x3d\x58\x26\xe8\x24\x54\xa4\xc4\xbd\x9a\x1c\x5f\x35\x66\xb7\x4f\xcb\x94\xd2\x33\xab\x2e\x71\x21\xfb\x1a\x7e\x04\xa9\xee\x43\x5a\x89\x70\x61\x60\x51\x40\x8d\xeb\xb6\xaa\x77\x3d\x09\x5d\x07\xc7\x6b\x34\x2f\xe2\xc7\x37\xa8\xac\x2e\x52\x2f\x4a\x33\xe9\x33\x1d\x25\x03\xf2\x21\x9e\x26\x62\xec\xfa\x1a\x2e\x9f\x07\x8f\x7e\x72\x4a\x8f\x26\x18\xd4\xb2\x9d\x24\x56\x79\x5f\x80\x62\x6f\x34\x44\x95\x2f\x10\xf0\xd8\xc4\xd8\x05\x2e\x83\xdb\x37\xe7\x9c\xab\x2f\x35\x98\xa1\xcd\xa2\xd0\x24\x50\xb7\x81\x73\x79\x80\x1c\xd5\xa1\x0b\x16\x0e\x70\xe4\x7e\x4e\x13\x92\xc0\xb5\xf0\xb1\x73\xcb\x26\x29\xa2\x72\x07\x16\x0c\x62\xdc\x20\x5d\xec\x8d\x2b\x2e\x1b\x5c\x89\xc2\x15\xe6\x2b\xc0\x2a\x82\x88\xb6\xe8\x16\x29\xcb\x78\x0c\x5e\x09\x79\xda\x96\x1a\x14\x60\xe9\xc5\xfd\xed\x71\x12\x2d\xa7\xd9\x90\xee\x13\x0f\x0a\x34\x29\x7c\xdc\x44\xb5\x42\xdd\xb0\x55\xeb\xf4\x80\x04\x6e\xaf\xa8\x1e\x27\x8a\x10\xff\xc2\xa4\x4a\xe6\x58\xcc\x2a\xd1\xab\xf3\x81\x52\xe2\xae\xa2\x55\x54\x53\xe6\xbc\x9a\x18\x4c\xd2\xc2\x3e\xe2\x6b\x18\xe7\x2a\x22\x25\xdf\xa1\x6f\x70\xc7\xce\xf1\x7f\x30\xa9\x64\x3a\x0a\x15\xa4\x5a\x0a\xdf\x51\x46\xb6\x9f\x99\xa4\x90\x18\xde\x11\x9a\xce\xbb\x63\x95\x54\x44\x85\x89\x23\x93\xcc\x6a\x1e\x2a\x14\x36\xf9\x38\xf0\xb5\x78\xa6\x80\xe1\x93\xa9\x14\xa6\x0d\x28\xe2\x08\x91\x02\x93\x71\x23\x50\x9c\x53\xa8\x4b\xc3\xb4\xbd\x13\x28\x12\x99\x53\xb5\xc2\xfa\x81\x17\xdb\x3d\x6b\x62\x9b\x95\x26\x81\x13\x64\xc7\x66\x7a\xd0\xcb\x4a\x35\x51\x57\x8c\x32\x9b\x8f\x87\x1c\x0c\x62\x64\x99\xe7\x38\xe4\x45\x2a\xb0\xec\xf1\x9a\x99\xfc\x47\xa8\xaf\x3b\x13\xa4\x85\x7c\xa5\xbe\xfe\xa4\x7e\x8d\xa6\x1b\xaf\xcf\x52\x31\x8c\x0b\x43\xa8\x40\xb9\x2a\x91\x66\x3e\xf2\x73\x16\x97\x27\x3e\x43\x5e\xb7\xc5\x2e\x3c\x76\x21\x9c\xa7\x0f\x39\x71\xcf\xf2\x11\xa2\x4a\xf2\x67\x64\x97\x90\x24\x21\xb5\xe2\xa2\x06\xe6\x80\x1d\x2b\xb8\xab\x0d\x5d\xd4\x83\xa5\x0a\xcd\x30\xd3\x29\xed\x3a\x6b\xc6\x4d\xd4\x30\xe8\x6d\x2f\xb9\x1a\xc5\x71\x94\x26\xec\x62\xb0\x82\x7f\xae\x97\xf3\xcf\x03\xd1\x16\xeb\xa7\x98\x2d\x91\x65\xee\xad\xcd\x71\x8d\xbb\xb8\xad\x8a\xe8\xa3\x28\x5c\xc9\x67\x15\x6d\x2e\x83\x47\x1d\xde\x71\xd1\x6b\xac\x94\x5f\x87\xf6\x5a\xdd\xd1\x00\x5c\xb7\x62\x35\xed\x38\xab\x35\xf1\x49\x53\xf3\xaf\x6b\xf2\x3c\x4d\x13\x95\x13\xb3\x2d\x15\xda\xab\xf2\xe7\xf1\x98\xef\x04\x1f\xd7\x23\xb6\x79\xd4\xb3\x19\x4f\xed\x39\xca\xbe\xa3\x98\x3d\xe0\x93\x86\x2e\x13\x0d\x06\x8a\x14\xac\x53\xb0\x2a\xb3\x5f\x29\x85\x79\xc6\xe2\xc4\xcc\x28\xf9\xeb\x6f\xe1\xf5\x63\xcf\xb3\x04\xaf\x6c\x7a\x15\xc7\x61\x26\x70\xb1\x34\xb2\x8b\x8b\xca\xc8\xf6\xd3\x78\x79\x9b\xe2\x36\x66\x75\x6a\xbd\xbd\xb1\xe6\x3e\xde\xf1\xb9\xd9\xec\x54\x35\x13\xae\xaa\x06\x02\xd9\x4b\xf4\x32\x45\xf8\xce\xa7\x48\x18\xfc\x44\x5e\x73\x7b\xf3\xac\x54\xe9\x8b\xf6\x2d\x3d\xe2\x15\x05\x6e\xd1\x6f\x3b\x6a\x10\x57\x39\x3a\xad\x38\x63\x58\xaf\xde\xf5\x26\x0f\xce\x79\xe6\xb7\x7d\x4b\x6e\xac\xb4\xb1\xa9\xf7\xaa\x59\x17\x0c\x94\xf0\x58\xd3\x97\x09\xf7\x87\x0f\x22\xec\x30\x7f\xcc\xd7\x07\x7f\xfb\x6f\x20\xb0\x41\x50\xf0\x71\x18\x3a\x32\x1c\xff\xfc\xd9\xa9\xaf\xbd\x3d\x45\xb1\x24\x2e\xf3\x93\x98\xdf\xc0\x86\x67\x52\x73\xa9\x35\xd2\xfb\x82\x6b\xbc\xaa\x18\x07\x44\xd5\x9b\xa2\x90\x53\x7f\xb3\xd3\xfa\xb5\x97\x18\x97\xfd\x53\x0a\x24\x44\xfc\xcf\x55\xf7\xb3\x71\x54\x74\xd3\xb5\x78\xd6\xd7\x83\xc1\x98\x8e\xc2\xd3\x2f\x27\x8a\x3f\x0f\xa8\x25\xd4\xcb\x36\x1c\xc7\x62\x37\x5b\x37\xc9\x47\xb7\x5d\xfc\x6c\x3c\xa1\x8b\x1e\xd7\x33\x21\x60\x7f\x90\x71\x69\xa5\xea\xfb\x2d\x6c\x34\x18\x59\x48\xe5\xc2\xe1\x22\x03\xc0\xca\xfa\x51\xe0\x0b\xe8\x2d\x14\x90\xf8\x03\x93\x0a\xc5\x98\x07\x58\x9c\xa1\x35\x20\x53\x84\x7a\x72\x90\xd9\xa6\xf8\x23\xcc\x0e\x20\x93\x2b\x9b\x7d\xfc\x73\x32\x12\x1f\x75\x63\xe8\x0c\x03\x0e\x79\x0b\x59\x97\x0c\xc2\x95\x57\x27\x04\x9b\x9e\x30\xa6\x6f\xf2\x34\x8e\x12\x8b\x31\x78\x21\x33\x6e\x39\xc6\x9e\x8b\x9a\x33\x96\x5c\xb1\x10\x32\x6e\xb6\x50\xff\xa8\x6d\xb2\x84\xe7\xf5\x5e\xf6\x25\x65\xdd\xae\xdb\xec\xfe\x08\x4d\x36\x8c\x0a\xb2\x33\xec\xfe\x90\x6c\xb3\x1a\x3e\x9f\xd4\x32\xc6\xf9\x79\x8a\xf8\x46\x26\x62\xb8\x02\x0b\xa9\xe1\x8e\xdd\xf4\x83\x13\x91\xad\x93\xda\x3e\xd7\xce\x53\x2a\xfb\x29\x50\x3c\xde\xf2\xe6\x09\x95\x3c\xb2\x43\x9b\xc8\x26\x13\xaa\x3e\x45\xdc\x7d\x36\xf8\x58\xbd\xb8\xf5\x39\xf6\x27\x58\xc3\xc7\x00\xbb\xe5\x93\x26\x2a\xfb\xe5\x34\x2e\x4d\x27\x93\x88\x36\x5e\x90\x6c\x12\xd3\xc7\xc8\xfd\x26\x28\x94\x03\xad\xd7\x51\x5e\x7b\xf7\xb6\x0b\x9b\xf4\x4a\xc3\xec\x29\x4a\x11\xa6\xf0\x71\xe0\xf9\xb1\xed\xa1\x91\x0d\xf9\x95\x50\x8c\x8c\x82\xdc\xa9\xc0\xf3\x1a\x41\x13\xc7\xcd\xa6\x39\xb9\x99\x7f\x43\x5f\x29\xa4\x19\x8f\xfb\x19\x98\xe2\x73\xbd\xe7\x91\x27\xa2\x05\x79\x57\xb5\x23\x1b\x19\x75\x3f\x4b\xbc\x73\x9a\xe5\xf1\x8c\x22\xd5\x6e\x12\xc3\x59\x6a\x2f\x47\x89\x49\xc2\x88\x73\x61\xd7\x09\x50\xe3\x35\xae\x13\xb0\x3c\xb6\x31\x47\x4e\xf0\x7e\xd7\xb4\xdc\xdc\x36\xec\x5e\xd4\x43\x6e\x2b\x66\x1f\x93\x99\x19\xbf\x35\x50\x35\x11\x50\x00\xb9\xa5\x33\x18\x27\x2f\x3d\xc1\xe2\xe2\xfe\xbf\x4d\x7b\x0a\x26\x84\xbb\x24\xe8\x1b\x3d\x04\x1b\x21\x9a\x53\x3f\x20\x6a\x12\xbc\xba\x73\x41\x25\x0d\x7d\xc9\xe9\xe9\x5d\x44\x6b\x07\x85\x75\x26\x64\x44\x29\xa9\x85\x64\x0b\x3b\xe5\x53\x1d\x32\x35\x0e\xad\x3f\x3f\xef\xe3\xba\xf9\x05\xb6\x0b\x6f\x53\x91\x56\xb3\xcc\x20\xe3\x78\x64\xda\x7a\x49\xc0\x37\x4b\xf4\xb6\x51\xe0\xbd\x49\x1b\x49\x64\x2b\xa9\x07\x89\x8b\xba\x0a\xd7\x8e\xe4\xb3\x45\x62\x16\xb8\xa5\x0a\x4c\x63\xdb\xb4\xf5\x05\xa5\xdc\xed\x84\x95\xae\x4f\xf4\x08\xeb\x96\x29\x3d\x73\x98\xd2\xab\x5e\xcf\xe6\x6f\x3f\x3b\xf5\x9a\xa8\xcf\x7c\xa2\x43\x01\x08\x3e\x72\x03\x91\x14\xc6\x2d\x9f\x98\xc2\x64\xb2\x50\x01\xa1\x7a\x85\x35\xa5\x5c\xac\xc8\xb0\x76\x29\xca\xf6\xeb\x68\x12\xe1\xe4\x89\xe9\xcc\xfe\xdf\xf8\xa2\x93\xcd\x11\x67\x92\xdb\xa8\xcf\x13\xa1\x4e\xc9\x69\x71\xd1\x09\xda\x34\x40\x14\xd7\xd2\x6c\x65\xc6\x4f\x49\xdc\x08\x54\x0f\x7e\xe2\x67\xfc\x7e\xa6\x32\x12\x13\x0e\x22\x2b\x65\x36\x27\x1e\x54\xde\xb4\x0c\xec\x7b\x22\x8a\x65\x43\xd2\x1d\x3b\xe9\x35\xbb\x94\xdc\x91\x06\xfd\x25\xdd\x2b\xca\xb4\x5b\x3a\xde\x75\xff\x1e\x5d\x86\xe8\xd3\x94\x2f\x0a\xf9\xff\x4f\xb0\xac\xb0\x2e\x8e\x4c\x14\xbd\xfb\xb1\x40\xab\x0f\x6b\xfa\xdd\x8b\x4d\x94\x3b\xfb\xdb\x5d\x93\xac\xc8\xe4\x00\xbe\x8f\x47\x09\xf1\xb0\x7e\x0c\x8b\x29\xce\xa8\x42\x19\x59\x0c\x10\x30\x3a\x79\x25\x37\xa8\x7f\xa1\x66\xf9\xf7\xee\xdd\xd7\xce\x0b\x1a\xae\xa2\x6d\xce\xf2\xaf\xaa\xbb\x53\xb7\xf5\xa4\xa0\x17\x2d\x83\xed\x02\x11\xe1\x55\xf5\x01\x6e\x57\x63\x6f\xfd\x54\x4d\x33\x27\x69\x56\x0c\xac\xc9\x0b\xbe\x2d\x94\xc2\x5b\x1d\x85\x46\x6f\x4d\x15\x1f\xef\x57\x2b\x28\xc8\x22\x4a\xb7\xa9\x10\xeb\x5e\xb9\xa3\x36\x8e\x50\xa5\x81\xc9\xdc\x75\x3b\x57\x14\x68\x37\xc3\x7a\x5e\x79\xa5\xdd\x1b\x5b\x85\x0f\xbb\x44\xaf\x52\xe2\xc3\xcd\xe5\x25\x41\x91\xf4\x32\x80\x59\x01\x9d\xd6\x12\xe9\x95\x01\x02\x81\xb3\xf8\xea\x7c\xdf\x0c\x69\x86\xab\xb4\x29\x70\x3c\xa7\x03\x9f\x3d\xd4\x27\xa7\xcb\x80\xb7\x6b\x43\x33\xce\xd1\x0e\xc3\xab\x47\x64\xc3\xc7\xaa\x90\x75\x20\x5b\x9f\xf5\xa8\xa4\x0b\x93\x0a\x3b\x4f\xf9\x33\xac\x30\x89\x74\x1a\xdd\x9f\x7f\x59\x0b\x1b\x16\x17\xf7\xb7\xa3\x9e\x4d\x8a\x68\x39\x42\x55\x63\x49\xab\xc5\xba\x81\x5f\x44\x03\x22\x43\xd3\xc4\x88\x29\xcd\x1c\xdc\x2f\x13\x89\x2b\x18\xd2\x85\x5a\x65\xf2\xe0\xdc\xcb\x6d\x33\x1a\x65\xe9\x21\x46\xa3\xb6\x3c\x2f\x02\x7a\x38\x7c\x1c\x7c\x5c\xa5\x13\x49\x3f\xb3\x39\x38\x03\xb6\xab\x71\xb6\x0d\xba\x67\x54\x0a\xae\x4e\x7c\x61\xf9\xf1\x8e\x1f\x92\xf9\x2a\x56\x27\xf7\xd4\xd4\xdc\xd3\x9d\xa6\xf2\xbe\x1f\x4d\xdb\x44\x04\xd9\x72\xda\x16\xec\x89\xb0\x0e\xb6\x4e\x3d\xcc\x60\x14\xf5\xf3\x0a\x87\x79\x85\x87\x71\xb3\x93\x9e\x9f\x6f\xf7\x29\xa6\x98\xf1\x23\x69\x37\x61\x52\x1d\x7f\x97\xe7\x33\x6a\x9a\x0c\x01\xc3\x90\x83\xec\x02\x54\x24\x10\x2d\x87\x4a\x4d\xc7\x59\x61\xf3\x75\x8d\x1a\x83\x11\x46\x3a\x7d\x4f\x8d\x69\x9d\xaa\xad\xce\x3d\x8b\xed\xae\xcd\x56\x6c\x6c\x41\xb8\x28\x13\x72\x3e\xdb\xd9\x71\x46\xa9\xcf\x77\x4d\x12\x02\xb9\x81\x11\xb1\x13\x4a\xe8\xf0\x44\xb0\xcb\xcf\x83\x3c\x5f\xae\xe2\x8d\x0b\x74\xbb\x1b\x17\x94\x94\xc2\xf5\x89\x62\xe2\xb8\x5e\x0b\xf4\x16\x17\xdb\xbd\x2c\x1d\x8d\xa4\xba\x0e\x8b\xfa\x2f\x90\xac\xf2\x89\x23\x84\x0b\x4d\x1c\xef\xf0\x71\xd2\x07\x44\xd6\xe0\x24\x6a\xcb\x05\x2b\x50\x20\xdf\x4b\xfb\xef\x35\x01\xc9\x65\x0d\x3c\xd9\x31\x75\x28\x8a\xf5\xa7\x3a\x3e\xa5\x3a\x57\x91\xe8\x42\x83\x31\xcb\xc1\x4a\xe8\xd0\x7d\x07\xe7\x1c\x97\x13\xfd\xb0\xc8\x65\x2a\x19\x0a\x95\xa5\x0f\xa3\x43\xdb\x2b\xe3\xec\x2e\x4c\x7d\x80\xc5\xcc\xfc\xee\x58\x2d\xa2\x52\xa4\x62\x2e\x10\x75\x08\x2a\xc6\x27\x2b\x61\x16\x91\x32\xf9\x6c\xf9\xbb\x22\x32\xaa\x93\xdf\xc3\x6a\xcc\x82\x63\x74\xe1\x9f\x6d\x90\x22\x0f\x33\x13\xae\xf4\xd2\x35\xa4\x8b\x18\x6a\x3b\x41\x0f\x93\x8f\x55\xf6\x9c\xc6\xbd\x8f\x95\xf7\x84\xdd\x7d\x95\x4a\x4f\xf8\x1d\x26\xcc\xa3\xd0\xf1\xda\xd3\x53\xcf\x8e\xb6\x93\x18\x95\x60\x98\x8e\x4d\x34\xc6\xae\x7c\x91\x78\xd9\xd7\x49\xb4\x52\x94\xed\x68\x19\xb8\x39\x82\xf9\x05\x27\xcb\x8b\x7b\x44\xb1\xf6\x0f\x61\xe3\xf0\x74\x7e\xa5\x53\x51\x46\x56\xb4\xcc\x5b\xa6\x9e\xd6\xea\x21\x85\x5d\x8e\x0a\xc8\xf1\x9a\xed\x44\xf3\x18\x41\xdb\xa7\x3a\x6a\xf3\xde\xd6\xb2\x13\x4f\x4d\xfd\x73\x88\x4c\xc2\xd0\x2a\xa7\xdf\x29\x45\xb0\xff\xed\x79\x25\xff\x79\x17\xd5\x41\x2c\xd7\x1f\xe3\x92\x2b\xd5\x7c\x44\x7a\xdb\xa6\x9e\x61\x60\xe9\xd3\x53\xff\x84\x31\x60\x27\x0b\x50\x9a\xef\xf9\x78\x64\x33\xa2\x6b\x51\x42\x86\x2d\x35\x3c\xc4\xea\x73\x58\x93\x37\x9b\x78\x3e\x7c\xef\xdd\x21\x02\x6e\x06\x9e\xa1\x0e\x40\x68\x51\x29\xdf\x1c\xe9\x94\x9f\x5f\x8e\xfa\xe3\x0c\x03\x45\x3c\x88\x8b\x3d\x21\x53\xb9\x9b\x3d\x78\x69\xe9\x22\xc3\xe6\x58\x3e\xd1\x72\x7a\xf7\x27\x75\xd3\xe7\x9e\x12\xff\xce\x07\xd1\x68\xdd\x64\x3d\x16\x29\x62\x9a\x56\xa5\x60\x73\x4f\x57\xb5\x93\x24\x1d\x99\xb0\xe5\xc5\xe5\x1e\xe8\xef\x7d\xa0\x24\x5a\x96\xed\x9a\x24\x82\xff\x5f\x1c\x72\x45\xba\x96\xa8\xaa\x34\xe6\x01\xae\xaa\xd1\xa0\xab\xbe\x82\x9a\xc6\x3c\xca\xfa\x91\x32\x6c\x8f\x2b\xa5\x83\x9e\x59\x7f\x42\xd1\x55\xfe\xaf\xd8\xf9\x58\x36\x47\x03\xd5\x64\xe7\x52\x16\xf2\x8b\x37\x78\x13\xe0\xd5\x9c\x62\x6d\x6f\x2c\x53\x9e\x97\xc7\x4f\xe2\x5b\x4f\x28\x5a\xbb\xb7\x51\x35\x12\x52\xf0\x72\x63\xa1\x79\x06\xa6\x08\xb4\x7a\xe0\x54\x44\x95\x90\xf6\x85\x23\x5b\x77\x03\xfe\x5b\x6b\xf0\x36\xe2\xd5\x36\x99\x15\x80\x8d\x06\x58\x09\x71\x8c\x24\xc2\x23\x43\x31\x80\xa2\x41\x63\xc4\x9e\x94\x73\x15\xf6\x3a\xea\xa6\x19\x55\x5e\x31\x80\x76\x81\x96\x25\x1f\x07\x9e\x7e\xcf\x1e\xc2\x0c\x4d\x9a\xe4\x33\x6a\xac\xed\xa8\x62\x96\xbb\xa4\x6d\xee\xed\x0a\xac\x70\x3d\xff\x98\xd6\x0f\xa0\xe4\xc1\xd5\x13\x16\x17\x37\x8e\x04\x2a\x2b\xbe\x10\xa8\x74\x76\x2b\x06\xd6\x10\x4c\x6f\x21\xa9\x5f\x67\xdc\x54\xc7\x9a\xde\x2c\x03\x59\xc8\x59\x08\xc1\xb5\x27\x93\x38\x82\xd2\x08\x72\x96\x3b\x41\x99\x82\x3a\x98\x49\x99\xe4\xc8\x64\x48\xf9\x40\x91\xd0\x3d\xc2\xb8\x24\x54\x28\x5b\xd0\x30\xc0\x96\x38\x81\xad\x08\x4b\x77\x53\x4f\x7b\xb3\x9a\x31\x5e\xe3\x69\x57\x37\x1e\xa4\x43\xcb\x3d\x09\x21\x1a\x77\x1e\x64\xee\xe9\x8e\x33\x32\xa3\xbf\xd3\x21\x7b\xe6\xac\x4c\xf9\x9b\xc0\x87\x31\xf1\xba\x83\x4d\x0a\xf1\xde\xd5\xcf\x4c\x3d\x14\xe4\xf1\xa9\x92\x5d\x78\xc8\xe5\x3d\x11\x7d\x55\x20\xd2\xed\x1d\xff\x7e\xba\xb6\x00\x9e\x49\x91\xce\x2b\xca\x97\x3d\x52\x5f\xbc\xd9\x84\x8d\x20\xcd\x17\x8e\xaf\xf0\xca\x30\xd0\xce\xc7\xae\x7d\x49\xd2\xe2\x39\x41\xe0\x66\xfd\xff\x9f\xd2\x9c\xc5\x53\x76\xb1\x82\xb9\xf2\x46\xfe\xb6\x0a\xed\xc7\xd1\x6b\x33\xaa\xed\x7b\x1c\x86\xd8\xa9\xb6\x3b\xf4\xd0\x9d\x5a\x75\xea\x95\x57\xda\x99\xed\x49\x48\xc4\x4a\x96\x78\x77\x22\x6b\xd9\x64\x87\xc3\xcc\xca\x60\x27\x8a\xae\xef\xe1\xe5\xf3\x89\x83\x35\x8e\x6c\x11\x15\xc8\xa0\x70\x05\x37\x14\x96\xe9\x46\xa3\x30\xaf\x19\x92\xc4\x98\xe2\x97\xe2\xc4\x42\xd0\x10\x6a\x46\x63\x5c\x3e\x64\x07\xd7\xba\x40\xcc\x6e\xd2\xe9\xf1\x1d\x85\x61\x9a\x14\x83\x9c\x30\x28\x88\xcd\x76\xd1\xda\xc2\x9b\xdd\x4e\x1a\xd8\x2c\x31\x4d\xdb\x44\xb8\xad\x69\xc7\x21\x81\xbe\xa1\xd9\x54\x52\x30\x3e\xb6\xf6\xee\xdd\xa0\xbb\xd9\xb8\xa1\xa6\xdd\xd7\xd2\xb4\x97\x8d\x97\x97\xe9\x71\xa2\x69\x7e\x46\x69\x55\xff\x77\x67\x82\x67\xb4\xc8\x5b\x1e\xf5\x22\x93\xad\x13\x39\x10\xc2\x82\x0f\x27\x0a\x6c\xc0\x77\xce\x2a\xba\xde\x60\xfe\xce\x33\x1d\x05\xc3\xe0\xce\x2c\x6e\x9c\xf5\x23\x45\x60\x60\x73\xe8\xbf\x77\x6f\x3b\xb3\xa6\xb7\x89\x2e\x74\x51\x0b\x9a\x29\xde\xed\x71\x5c\xe4\x8f\x7a\x00\x30\x98\x1f\x1c\x89\xa2\x23\x68\x61\xfc\x8d\x9b\x41\xf6\x73\x64\x4b\xb8\x1b\xfe\x9f\xa0\x8c\x84\x50\x9b\x81\xa9\x82\x71\xc2\x63\x17\x76\x49\xff\x7c\x46\x36\x63\xb5\xd4\x96\x77\x15\xdf\x57\x33\xef\xdf\x6f\xc8\x2b\xdb\xcb\x69\x66\xcb\xec\x86\x3d\xa2\xe3\xc1\x28\x9f\x97\xf0\x60\x3c\xa9\xc4\xe1\xfb\xe3\xd8\x64\xdb\x7c\x42\xf0\x27\x81\x57\xc8\xbd\x14\xf8\x28\xb2\xd2\x74\x39\xaf\x84\x3f\xce\x54\x39\x53\x93\x22\x7f\xcc\x13\xaa\x42\x8b\x4a\x29\xc9\x2e\x71\x36\x09\x59\x09\x19\xbb\xa2\xa7\x24\x02\x29\xf4\x30\x9d\x7e\xa8\x6b\xcc\x73\x78\x85\xe7\xf4\xbe\x2e\x82\x5f\x0c\x7c\x91\x90\xe7\xb9\x04\x68\xe0\xd1\x0e\xe7\x26\x9b\x2b\xe5\x2f\x2d\xb5\x3f\xd7\x9b\xd1\x12\x67\x13\xa5\xce\x79\x2d\xf0\x1b\xe3\x44\xe3\x84\x57\x91\x45\x02\x2c\x87\xb7\x3d\x8e\x88\x80\x4f\x94\x7d\xb2\x09\x54\x5b\x9a\xc4\x8d\xc5\x1b\x64\x2e\x03\x76\xbb\xd9\x51\x91\x5d\x50\x31\xcc\xb2\x89\x63\x96\xcf\x15\x16\x4b\x3f\x6d\xfb\x30\x50\x78\xf8\x1b\xaa\x87\xbe\x06\x6e\xb0\x6d\xe5\x83\x42\xcd\xe3\xaa\x52\x05\x02\xf2\x52\x28\xf5\xfc\xfc\xc5\x7f\x50\x2c\xfc\x97\xd5\xd6\x18\x65\x69\xc1\x7c\xe9\x2f\x38\x6a\x38\x0f\xd1\x3e\xd5\x48\xcf\xf2\x99\x85\x3d\x2f\xec\x39\xb0\x7f\xa6\x7c\xac\xd8\xb8\x7f\x35\xf1\x03\xaf\x17\x34\x51\x61\x5d\x05\x8a\xf8\x18\xfb\x7d\x64\xd2\x70\x77\xf7\x14\xf7\xe5\x3d\xc5\xa8\xd8\x8b\xf2\x22\x8b\xba\xe3\x42\xac\x28\xee\xf7\x03\xba\x40\x3e\x6e\x10\x7b\x5f\xc0\xf4\x86\xc3\x24\xb8\x56\xa9\xfb\xd4\xe9\xa0\xa2\xb0\x93\xa2\x86\x8f\x40\xe7\x96\x12\x97\xb8\xa8\xc0\xbf\x47\x2a\x88\x96\x34\x5d\x79\xba\x7c\xea\x48\x99\xb6\x83\xc6\xce\x71\x6d\x3b\xcc\x11\x24\x4e\xd0\xfd\xfd\x3e\x7d\x19\x5a\xe6\x37\x39\x0c\x15\xf8\x4e\xcb\x09\x09\xfc\xbb\x89\x1a\x17\xbe\x80\x8d\xe2\xe8\xa3\xcb\x48\x46\xfc\xa7\xaa\x8a\xf2\x54\x3a\x0f\x01\x07\x08\x0b\xb8\xe5\x4c\x77\x23\x11\x1f\x95\xbd\x1d\xc4\xfe\x25\x09\x71\x3e\x44\xfc\x88\x55\xf3\x1d\xb2\x14\x28\xd4\xdd\x74\x98\x85\x65\x0b\xde\x37\xdc\xef\xeb\xb8\x14\x27\x83\xb0\x6f\xce\xe5\x3a\xe5\x3d\x4a\xc7\x95\x2e\x11\x89\x18\x87\x1d\xa8\x87\xcd\x4e\xfd\xfb\xfe\x54\xc7\x6f\x88\xb5\xa8\x67\x13\xc5\x57\x5b\xad\xa1\x69\x79\x48\xd3\x27\x92\x77\x0e\xdd\x97\x36\xae\xd0\x16\xc0\x2e\xfa\xda\xc4\x9b\xbd\xaf\x35\xd1\x81\x66\x96\x9b\x3b\x2c\xca\x14\x54\x14\x9a\x36\xb5\xe2\xf7\x2d\x95\xc1\xf9\x23\xde\xae\x5f\x20\x60\x17\x36\xd5\xcf\xe9\x67\x51\x80\x85\x7e\x28\x2b\x57\x4d\x3c\xc6\xeb\xe4\x44\x11\x5f\x9d\xa3\xd7\x81\x52\xca\xef\x2b\x9e\x8f\xbc\x78\x7e\x46\x95\x7c\xde\xe1\xe5\x21\x1b\xca\xef\xdd\x0f\x14\x9d\xf4\x72\x66\xfa\x51\x5c\x01\xd6\x32\xc7\x89\x68\x0a\xf8\x34\x70\x39\xcd\xfa\x96\xac\x9c\xb7\xa3\xa8\xf8\x08\x96\xdf\x67\x0d\x61\x96\xae\xa1\xa3\x89\x0e\x39\xe8\x52\xf9\xd8\x25\xd1\x6b\x51\x31\xe8\x65\x66\x4d\xa6\x0c\xb1\xfa\xce\xab\xa5\x8c\x8c\x1a\xe0\x89\xdb\x0a\xc0\x63\xfb\xfd\x96\x72\xb3\x60\x29\xe7\xe3\xc9\x6e\x85\xf0\x8e\xe3\x1d\xf4\xd5\x52\x91\x57\xb0\x2d\x10\x14\xa2\xb0\x71\x94\x32\x0e\xa1\xf8\xf7\xd0\x5f\x50\xaf\xc2\x17\x1e\xa5\x07\x0f\x2f\x7d\x23\xf0\x84\x99\xbe\x28\x10\xc6\x65\x5e\xb5\xec\x86\x4a\x50\x73\xf8\xa5\xd2\x4b\xfd\x65\x43\xcf\xbc\x9b\x26\xbd\x41\x1a\xf7\x1c\x05\x13\x53\x9e\x04\x7e\x82\xe0\x3d\xd7\x07\x22\x4e\x53\x02\xd0\xc3\x41\x42\x51\x0d\x8e\xe1\x06\x3d\x38\xaa\x75\x2f\x3c\xc9\xa9\x89\xcc\x99\xb4\x7e\xed\x25\xa7\x29\x48\xd6\x01\x1e\xf9\xd1\x8e\x87\x66\xfd\x3f\x6d\x7a\xd8\x48\x86\x6e\x4c\x2a\xd1\x5f\x79\x59\x70\x2a\xf7\x75\x89\x3e\x8e\x8a\xd7\x50\x77\xe6\xee\x8c\x42\x6b\x9e\x9e\x7c\xa2\xba\x0d\xfe\x91\xe7\x45\x76\x75\xcd\x4f\xd0\x3c\x98\x08\xfc\xf8\x29\x87\x6d\xd3\x4a\xef\x1e\xf7\x22\x14\xb4\x64\x38\x9c\xe4\xd5\x1e\x59\x04\x5c\xc4\xc7\x8d\x6d\x9d\x2a\x2e\xe5\x93\xf4\x90\x9c\x0d\x5f\x38\xe0\x6d\x63\x79\x63\x58\x0e\x4c\x3f\x88\xf5\xc0\x1a\xe8\x48\x1a\xae\x20\x58\x80\x3f\xb1\xbd\x71\x48\xf8\x86\x5c\x97\xfb\xef\x60\xd3\x88\x9c\x62\x79\x53\xc2\xcc\xb8\xf9\x85\x53\x4f\xb9\x67\xc6\xc4\x5d\x83\x76\x93\x0c\x67\xe9\xa1\x2d\x1f\x45\x9b\x61\x14\x12\x9d\x9d\x47\x65\x7d\xa8\x65\x00\x3e\xac\x8d\xb4\xec\xdd\xdb\x4e\x7b\x3d\x26\xd8\xc5\x6d\xa3\x39\xce\xc7\x4d\xa9\xc6\x72\x04\x1d\x00\x9f\xa6\x9d\x52\x48\xb6\xb7\x10\x48\xc3\x5a\x5f\x6d\x00\xbe\x2e\x88\x90\x00\xfc\x25\x2a\xda\x0f\x26\xbe\xd4\xfd\x20\x50\x4c\xe9\xcc\x4d\x5a\xbe\x09\x6e\x58\xd1\x62\xf7\xcd\xab\x5f\x55\x14\x1e\x03\xb2\x23\x4a\xd9\x62\xc9\x8d\x1a\x79\x06\x91\x7c\x90\x8e\xcb\x2d\xd4\xaa\x4c\x4e\x2a\xdc\x6d\x83\x18\xe3\x28\xb3\x61\x3c\xee\x09\xd1\x04\x2c\x0e\x76\x2b\x16\x11\xf7\x6d\x10\x40\x5d\x9b\x78\x5b\x9b\x7c\xae\x78\x9a\x16\xa8\x8a\x86\x5f\xf0\x62\x00\xe5\x87\xe8\xb9\xed\x7e\xa6\xa3\x6a\x21\x2d\x2a\xc9\xc2\xb0\xbc\x4e\x66\xdf\x95\xb5\x17\x0e\xb0\x87\x86\x5f\x43\x56\xf1\x5d\x0d\x65\xbe\x4c\x11\xa8\xcb\x1d\x0e\xce\xf1\xd6\x7e\x1a\xc9\x0f\xf7\x96\xc8\x2c\xc1\xcc\x73\x43\x10\x01\x36\x44\x13\x00\x15\xbb\x0f\xec\x1c\x3c\xc8\x2d\xb4\xae\x9d\x5a\x6d\x19\x83\x30\xf9\x87\xae\x75\x72\x31\x1e\x7e\x42\xcc\x9a\x52\x20\xfd\xa5\x0a\xfb\xfb\xb6\x37\x8e\x11\x0e\xa1\xaa\xc9\x15\x75\xe1\x78\xf5\x73\x3d\xc7\xab\xa4\x45\x19\x04\x4e\x61\xcc\x8e\x28\xf2\xdd\x23\x6a\x37\x64\x36\xcc\xc6\x51\x01\x27\x04\xfb\xc0\xa8\x35\x3e\xa9\x75\x22\xe7\x17\xda\x2b\x49\xba\x16\xdb\x5e\xdf\xba\x7d\x84\xd0\x06\x24\x69\x7c\xac\xca\xfb\x43\xe2\x7b\x32\xec\x3b\x5c\x71\xd5\xf7\x6a\x50\x9c\x87\x09\x46\x29\x12\xa5\xa9\x07\x78\xf9\x52\x81\xa5\xfb\x46\x4d\xfd\x0c\x55\xfb\xf0\x68\x37\xe8\x19\xc8\x84\xb3\x14\xe5\xa2\x64\xd5\xc4\x51\x6f\x46\xd1\xf0\x9d\x9a\xa8\xf1\x3f\x64\x4f\x78\x6d\x77\x54\xe6\xdc\x8b\xf2\x91\x29\xc2\x01\xd6\xf1\x0b\x8c\x8c\xb9\xad\x26\x2a\xf0\x49\x69\x25\xe8\x04\xad\x7c\x26\x2d\x8f\x03\xbb\x40\x0b\x4b\x8c\xe3\xe6\xb8\x67\x71\xb1\xfd\x9b\x7f\xef\x37\xff\x5e\x8b\x00\x0a\xfc\x36\x15\x4a\xd7\xcb\x83\x14\xda\x14\x30\x95\x87\xd2\x76\x3f\xde\x34\x41\x45\x16\x21\x12\x36\x2f\xb4\xd1\xd0\xf7\x13\x76\x14\xa5\x80\x76\x7c\x22\xba\x0e\xaf\x8e\xb3\x28\xef\x45\xd4\x3b\xe5\x90\x4c\x04\x96\x5b\x4e\x3c\xef\xa4\x87\x51\xac\x59\x3b\x9a\xf5\x98\x3c\x6e\xa1\x0b\x8c\x56\x3d\xed\x4b\xda\x6b\x2b\xc6\xa4\xa1\xe9\x67\x63\x02\x30\x95\x7f\x0b\xf0\xec\x75\xad\xec\x71\xbd\x66\x6a\xf6\x2c\xb6\x5f\x35\x51\x4c\xbc\xee\xaa\xd9\x06\xf8\x9e\xa0\x5f\x9e\xd4\xa4\x51\xa3\x71\x61\x1f\xa1\xbd\x86\x62\xf8\xd1\x40\x55\xc9\x8f\x56\x01\x0c\xf0\x8d\x7c\x46\x26\xcf\x31\x94\xbb\xc4\x12\xa8\x09\xb8\xb6\xfb\x2a\x71\x19\x58\x93\xe5\xac\x63\xee\xe0\xf3\x4b\xbe\xf6\xaa\x68\xde\x30\xa0\x9a\x46\x2c\x06\x00\x97\xfd\x81\x1e\x3b\xff\xa0\x96\x53\xef\x59\x6c\xf7\xd3\x96\xef\xa6\x9f\x57\x5a\x99\xbf\x79\xde\x55\xa3\xd7\xa2\xcc\x16\x66\x54\x99\x5c\x51\x00\x48\xbf\xae\x46\x26\x2b\x04\x55\x05\xd3\x32\x4b\xc5\x2b\x3e\x9e\xfa\x67\x98\x0f\x6c\xd6\xb5\x05\x5c\xb4\x48\xcd\x54\x06\x76\x5b\x8b\x8b\x1b\x9a\x7b\x3b\x1f\xa5\x85\xb0\x2e\xc1\x4e\x1e\x55\x36\xf3\xa8\xbb\x86\x61\x5a\x44\xab\x16\x90\x5c\x54\x81\x99\x9f\xb0\x82\x6a\x86\x17\xbf\xd7\xd4\x76\xcd\xc7\xc4\xf1\xc9\xb6\xd4\xdd\x6f\xf9\x29\xb9\x5f\xe9\x7c\xd8\x30\x4d\xd2\x61\x14\x82\x17\x0b\x45\xa4\x1b\x2a\x4a\x3a\xa5\xe7\x83\x18\x29\x0e\xa0\x3e\x53\x1e\xe1\x64\x7b\x47\x53\xf6\xb6\xa6\x62\xd7\xfb\x26\x5e\x35\x49\xf4\x9a\xed\x51\x25\xc0\x41\xb9\x7d\x9a\xcc\xb5\x2c\xdc\x1a\x70\x01\xb8\xe7\xb7\x03\x45\x5a\xb9\xad\xb3\xb9\xd3\x74\xe0\xc5\x76\x6e\xd6\xe9\xcd\xbb\x9d\xbc\x28\x20\xca\xc6\x66\xd6\x67\xdb\x5f\x1a\x9b\x15\xab\x7a\xe3\x37\xd4\xe6\xbf\x51\xb3\x45\xc4\x27\x95\xf0\x0b\x96\xae\xa5\xc3\x6a\x7d\xf9\x0e\x19\x32\xa1\xd1\xf6\x39\xcc\x60\x3c\x1c\x0d\x50\xa9\x29\x9f\x9c\x53\xb9\xf4\xd8\xdb\x63\xb5\x1a\xf6\x41\x8a\x14\x08\xe1\xe9\x21\x77\xcc\x3f\x21\xf4\x67\x1e\x88\xfb\x4d\xf5\x6b\x43\x13\x47\xfd\xc4\x24\x05\x3a\x32\x9a\x1c\x4c\x94\x7d\x1a\x00\x92\x89\x35\x59\x97\x25\x6d\x04\xeb\xe6\xcb\x63\xc7\x2a\xf4\x72\xe0\xb4\xcb\xa9\x39\x2f\xf5\x3c\xba\x30\x41\x40\xd3\x0f\x0b\x10\x44\xcf\x67\x94\x81\x02\x0f\xa4\x4f\x7c\xb3\x13\x78\x4a\x3c\xf4\xf7\xe9\x57\x85\xb5\xf8\x71\x1d\x8f\x66\x46\xbd\xdb\x53\xea\xdd\x9e\x9a\x68\x1d\x75\x93\x97\x3b\x0a\x8b\xaf\x61\x5d\x9e\x76\x40\xd2\xfe\xd8\x66\x59\x14\xc7\x66\x46\x53\xa1\xd3\xfb\x44\x6b\x1b\x4f\x58\x90\x6f\x6a\x86\x2a\x07\x27\x2f\x03\x34\x55\xbe\xb2\xe4\x24\x1a\x3f\xa1\x6b\xcc\x61\x9a\x90\xde\x50\x2a\xc9\x16\x0f\xaf\x05\x8a\x26\xe9\x92\xe2\x86\x33\xbd\x57\xc7\x39\x4d\xa9\xe6\xe4\x36\x70\xe5\xe7\x03\xd5\xf9\xbe\xa9\x30\x02\xdc\xe9\xe1\xbf\xaa\x87\x22\xf3\xed\xa1\x49\xc6\xcb\x26\x2c\xc6\x59\x19\x4f\xe1\xd9\x34\x0a\x9c\x36\x15\xa5\xcc\x68\x64\x32\x9a\x98\xd5\xf5\x25\x87\xf9\x68\xe2\x39\x78\xa1\x3d\xb4\xb1\x49\x22\x34\xfb\x84\x5b\xa9\xfc\xbc\x90\x2e\x49\xf3\x34\x2f\x4c\x31\x2e\x2a\xa6\xed\xcc\x44\x1b\x29\xcd\x9c\x76\x57\x2d\xc3\x7c\xdc\x7d\x15\xac\xc5\x9e\xdc\x03\x9b\xd1\x53\x39\xe1\x2f\xd3\x2c\x4a\x63\x94\x49\x97\x2a\x55\x59\x29\xea\x7a\xd7\xf4\xaa\x19\x99\x64\xb7\xee\xaf\xa1\xcc\x2c\x32\x90\x6a\x61\xff\x5c\x95\xcc\xa1\xad\x28\x28\xe0\xd2\x0a\x40\x72\x69\x41\xa8\x82\xf1\xe6\x50\xb4\xba\x8e\x8e\x9f\x57\x6e\x9d\x73\x65\xef\x4a\xcf\x58\x01\x66\xff\x44\x61\xe4\xde\x50\x32\x6e\xa3\x2c\xcd\x47\x36\x8b\x58\xca\x5f\xaa\x8c\x0a\x56\xf6\x41\xad\x8e\xb4\x77\x6f\xdb\xe4\x2b\x79\x85\xd7\xba\x22\xe6\xbb\x39\x75\x14\x4c\x9d\x5d\xb5\xd9\x3a\xa9\x2d\xa1\x85\xf3\x14\x79\x41\x24\x16\x0f\x54\xc3\xf7\xaa\x56\x2a\xba\xa9\x19\xb8\xad\x89\x77\x2b\xfe\xa6\x9f\x72\x14\xc1\x67\xf4\x24\x94\x10\x80\x08\x14\x1d\x9d\x28\x8c\xc7\x06\x7c\xb4\x88\x97\x7b\xd4\xf7\x96\xa9\x82\x25\x7e\x85\x0c\xb1\x4b\xc3\x5d\x48\xf6\x4d\xad\x75\x74\x94\x5e\x20\x2c\x0d\x8b\x6b\xf0\xa7\x9b\xec\x7e\x9a\x14\xe9\x4c\xeb\x8b\x0b\x0e\x36\xe4\x81\xb0\xbf\xa4\x72\x00\x9e\xf7\xcd\xcd\x13\x31\x8b\x8b\x4b\xed\xf9\x85\xc7\x15\x20\xf8\x0a\x5d\x9c\x9e\xe1\x60\x26\x12\x35\x12\xc2\xa3\x61\x2c\xe8\x85\x7b\x56\xec\xa9\x42\xfc\xc4\x19\xb9\xcc\x64\xe2\x71\x22\x27\xb8\xa6\x73\x82\xf7\xa8\x12\x23\x74\x07\xb4\xfc\xa4\xfb\xdc\x72\x6a\xda\x5b\xa0\x87\x8b\x64\xef\x0d\x65\xee\x06\x66\x38\xca\x07\xac\x0d\xb3\x54\x61\x4d\xe0\xe3\x06\x9a\xf8\x05\x62\x5e\xec\x93\xa3\xc7\x08\xa5\x23\xb0\x3d\xe8\x55\x63\xe9\x2e\x45\x07\x97\x2e\x58\x78\x4e\x9a\xa6\x3f\x57\xcb\x7d\xcc\xa1\xa0\x6b\xe1\x2c\x2e\xca\xb1\x8f\x96\x6c\x31\x30\x89\xad\x70\x08\x28\x2b\x77\xbe\x59\xff\xa6\x67\x87\x32\xc9\xac\x47\x21\x65\x86\xaa\xc1\x67\x76\x4d\x92\x20\x78\xdb\xc0\xb4\xe1\x46\x5d\x01\xf5\xe0\xdc\xcb\xe5\x36\x1d\x49\xd5\x85\x7b\xca\xf4\xdc\xa5\xbf\x5c\x17\x5a\x7d\xb9\x3d\x1e\xe5\x88\x24\xab\xa0\x30\xac\xbe\x07\x8a\xfe\xe6\xb2\x1a\x5c\x1f\xa4\x85\x8d\xd1\xaa\x63\x20\x78\xe0\xb3\x0e\x5d\x29\xcd\xa2\xdc\x32\xea\x53\x68\xbf\x35\xdf\xc8\x4e\x17\x23\x27\x3b\x3c\x1a\x99\x6b\x78\x08\xf4\x3f\x44\x85\xdf\xf1\xfd\x95\x5f\x25\x25\x2d\xff\xd8\x7e\x42\x5b\x03\xa1\x30\x0a\x54\xf8\xaa\x9d\x1d\x5f\xd5\xbc\xa4\x52\xe0\x32\xe9\x8f\x23\x9b\xcf\x6a\xe5\x0e\xad\xbc\xe1\x9b\x44\x57\x14\x69\xc3\xd1\x26\x2b\xd7\x33\x85\xc0\x8e\x90\xbe\xfe\xf5\x44\x91\xc6\xff\x82\x9e\x0c\x12\x98\x6f\x6a\xa9\xc3\x34\x29\x4c\x58\x50\x95\x08\xcd\xc5\x6b\xa8\x5c\xf0\x49\x0d\x8d\xbb\x70\x00\x3c\x8b\x83\x28\xb7\x76\xd3\x10\x8f\x0f\x51\x2e\xa9\x06\xf5\x30\x4d\x6c\x61\x32\x50\x32\xb0\xd4\x1a\x3d\x7e\x18\x42\x10\x6d\x0a\x03\x6c\x79\xc3\xc0\x50\xbc\xa7\x81\x12\x37\x9d\x77\x8b\xf2\xcc\xd8\x38\xe2\x81\x5e\xe1\x7c\x2a\xbf\x1a\xc5\x4e\x10\xc6\xb8\xc1\x8b\xf2\x2b\x78\x3e\xca\xe5\xa7\x2b\x49\xba\xc6\x64\xa1\x42\xbb\x4c\x0b\x8f\x27\xf2\x60\x71\x58\xd2\x5b\xb5\x14\xd3\xbc\xf8\x24\xfd\x17\x5e\xd4\x63\x53\x5f\xf9\xda\x02\x30\x1d\xbe\xe0\x83\x89\x9e\xb0\xc5\x52\x81\x93\x9b\xa1\xba\x13\x50\x05\xbb\xc1\x34\x87\xe6\xca\xa7\x69\x9a\x02\x85\xaa\x99\xa9\xd2\x46\x27\x43\x86\x9a\xd9\xce\x8e\x52\xea\x7d\x86\xc0\x26\xa8\x47\x7d\x17\x73\x19\x68\x64\x3d\x24\xab\x8a\x4f\x03\x6d\x28\x85\x26\x5a\xcc\xa8\x79\x3d\xda\x51\x48\xd1\x16\x06\xfe\xb5\xfe\x2c\x16\xed\x15\x06\x82\x08\xc6\x89\x6a\x58\xa8\x86\x7e\xba\xe3\xe9\xb7\xd6\x3f\xde\xf1\x23\xa3\x17\x29\xb4\x95\x39\xe6\x4f\xf8\x70\xb6\x37\x8c\x92\x28\x2f\x32\x53\x26\x76\xb3\x8a\x3d\x87\xa7\x9e\x9c\x09\xf2\x18\x4a\x74\xc1\x04\x50\xb9\x79\xc5\x3f\xd7\x1e\x0d\xd2\x22\xc5\xa6\x76\x25\x61\xd7\x0b\xa9\x5b\xa6\xbd\x7b\xdb\x61\x3a\x1c\xc5\xf6\x10\x16\xad\x70\xc8\xfa\xdc\xb6\x41\x2a\xf1\xc5\xfd\xed\x61\x14\x47\xe5\xf2\x6d\xf9\xe6\x0a\xb4\x5b\xf9\xb8\xa1\x51\xbd\xbf\xbd\x1e\xd9\xb8\xb7\xcd\x0b\x05\xf0\xe3\xaf\x0c\x53\xc2\xb0\xcc\x76\xca\x27\xa6\x27\x57\x45\xb2\x49\xe2\xf6\x7c\x94\x99\x35\x8f\xee\x87\xd1\x7a\xab\xa2\xd6\xde\x72\x6c\x86\xb7\x6b\x97\xf3\xca\x2b\xa5\xa9\x37\x2c\xbf\x26\xdb\x9a\x16\x80\x6c\xf8\x7a\x69\x7b\x7f\x3b\x4d\x42\xdb\xaa\x5c\x9a\x57\x40\x08\x24\x9a\x2d\xc6\x59\x32\x8a\x56\x98\x5d\xde\xcd\x18\x39\x20\x38\x77\x0b\x64\xe4\xd8\x11\x89\x64\x43\x50\xc5\x2e\xb9\xd6\x4b\xeb\x0b\x12\x22\x7e\x5f\x69\xf2\xf0\x50\x3b\x5c\xfc\x9d\xc0\x2b\x78\xac\x46\x76\xcd\x15\xbf\x98\xdf\x91\x0c\xa4\x70\x3d\x36\x01\xf7\x6c\x42\x48\x50\xba\x56\xb7\xbf\x1c\xf7\xfe\x2d\xfa\xbc\x4c\x3e\xfb\xfe\x4b\x6e\xed\xa8\xf4\x7a\xfb\x04\xeb\x74\x93\x3e\xc4\xc7\xb5\xb6\xc0\xe2\x62\xbb\x18\xd8\x61\x65\x8c\xe8\x94\x8a\x9e\x4e\x05\x1f\x53\xdd\xc4\xcc\x14\xb6\x1f\x31\x74\x64\xc9\xeb\x35\xb9\xd6\xc6\xbf\xd5\xed\x54\x13\x0e\x72\x35\xed\x76\x4e\x29\x51\xd4\xe5\x0f\xe6\xe7\xdb\xcb\x36\x49\x6c\xdc\x52\x61\xf6\x69\x5d\xaf\xf2\x2b\x6c\x90\x45\xc9\x8a\x91\xd9\x27\x47\x72\xe9\xf2\xdd\x4b\x0e\xa5\xde\x8b\x46\x6c\x3a\xe1\x96\x36\x94\xc6\xc4\x65\x15\x5d\x5d\x74\x19\x4f\x2f\xea\xdb\x24\x5d\xc5\x28\x9d\x7b\xad\x9e\xeb\xe7\x0e\x9a\xda\x48\xae\x4e\x36\xaa\x3c\x16\x54\xb4\x38\x38\xe7\xf5\x0f\xcb\x87\xc5\x27\x35\x04\xee\x9e\xc5\xf6\x38\x07\xae\x5f\xee\x84\x7e\x4e\x6e\xa5\x4e\x8a\x3f\x34\x89\xe9\x4b\x87\x02\xd1\xc3\x9b\xd8\xb0\x48\x92\x99\xef\x01\xa5\xc7\x8b\x0a\x41\xbf\x9c\x66\x36\xea\x27\x36\xcb\x77\x94\x6b\x02\x16\xe1\x08\x3d\x38\x7c\xf2\x8d\x4d\x9a\x27\x7e\x36\xfe\x0c\x6e\x42\x78\xf7\x5b\x8e\xe2\xeb\x26\xbd\x7d\x54\x10\xbe\xa7\x99\x67\xeb\x54\xe3\x0b\x07\xda\xf9\xd0\xc4\x31\x01\x43\x4a\xeb\x8c\xfd\x09\x7b\xc0\xc7\x4d\x1c\x21\xe1\xc0\x94\xe9\xb9\xeb\x35\x20\x41\x38\xab\x45\xf6\xce\xaa\xaa\x64\xdf\x64\x7d\x93\x14\x63\x93\x60\xbf\x89\x47\x69\x39\x59\x96\x73\x55\xf1\xb2\xd5\xf5\x19\x45\x3b\xc0\x02\x08\x78\xf5\xf7\x2a\xbb\xb4\x01\x73\xf2\xaa\x19\x46\xe8\x1e\x20\x21\x7e\x77\xa2\xf0\x35\xef\x2a\x89\xc2\xbc\x10\x85\x31\x40\x1d\xce\x69\xf5\xba\x73\x0a\x34\x6b\xf2\x3c\x0d\x23\x9a\x70\x7d\x1c\x55\x58\x69\x8c\xf8\xb6\xfa\x35\xdc\x3b\xde\xfd\x83\x89\x8f\x4e\xee\x02\xdc\x84\xd8\xf3\x3d\xda\xf9\x88\x33\xee\xe8\xa1\xa5\x09\xd6\x30\x82\x9b\x7b\x15\xcc\x08\x90\x7f\x28\x77\xff\xb8\xb2\x1a\x68\xf7\x22\x96\xbf\x45\xcd\x29\x3e\x0e\x14\xc0\xe0\x9b\x0d\xd3\x50\x4b\xed\x28\x29\x32\x93\x17\x24\x6b\xe5\xcd\xc6\x9f\xab\xed\xf7\x0b\x3d\xa9\xae\xe6\x1a\xa2\x61\x97\xf6\x21\xf6\x0e\x5e\x06\xf2\x6c\x20\xa8\x25\x19\xdf\xbc\xd2\x08\xb4\x99\x8f\x63\x47\x00\x25\xfd\x16\xba\x21\x3e\x09\x3e\xe5\x29\xa5\x92\xd5\x28\x4b\x93\xa1\x4d\x0a\x13\x47\x39\xf1\x9b\x6d\xbc\x5d\xa6\xbc\x1b\x6f\x37\x0c\x95\x2d\xb4\xc3\x38\x1a\x76\xe5\xcb\x91\x28\xbc\x82\x0c\x89\x4f\x1a\x2c\xfa\x52\x3b\x1f\x45\x3d\x9b\xb5\xb4\x78\x26\x37\x2f\x05\xa7\xd8\x90\xc6\xa4\x6b\x89\x43\x01\x60\x9b\xf1\xec\x08\x9f\x34\x9a\x74\x6b\x86\xbc\x59\x64\x9c\x5a\xcf\x56\x2b\xcf\xd4\x1f\xc7\xa6\xb0\x6c\x23\x65\xcc\x4f\xa3\xd7\x11\x24\xde\xae\x99\x2d\x00\x09\xa9\xb5\xca\x93\x13\x81\x42\x00\x5f\x9e\xec\xf4\x8a\xcc\x18\xd7\x11\x04\xb3\xfa\x56\x48\x1f\xc0\xd0\x7d\x57\xd9\xef\xef\x06\x75\x45\xab\x32\xf4\xef\x11\x96\x7c\x13\x00\xeb\xbc\x02\x60\x9d\xaf\xb2\x36\xf7\xc6\x61\x69\xeb\xc8\xd6\x38\xd8\x76\x99\xac\xcb\x89\x2f\x5e\x1f\xa1\x72\x83\xb8\x74\x55\xa2\x41\xf5\x53\xe0\x7f\x7e\x99\x1e\x06\x69\x37\x7f\x93\x22\xbe\x33\x49\x92\x8e\x93\xd0\xf6\x1e\x53\x03\x7e\xe7\x10\x8e\x72\x75\x02\xe5\x03\xf4\x03\xbe\x86\x2b\xe2\x31\x3b\x02\x80\x32\xb4\x55\xa9\x7c\xfe\x50\x65\x97\x70\x74\x9e\x39\x52\x9a\x86\xf7\xf1\xfc\xb1\x55\xae\x4c\xd4\x0c\xc3\x57\xe9\xde\x64\x90\xcf\xb7\x16\x09\x9c\x3f\xe3\x35\xa4\x36\x70\x5d\x28\xc6\x5c\x57\x2a\xeb\x27\x1a\x55\x08\xba\x86\x48\x2d\x5b\x7a\xe0\x86\xe1\x85\x7c\xd2\x34\xf1\x46\x64\x5a\x6e\xa8\xd1\x31\x8a\x2e\x2e\x3a\xe2\x50\x25\x01\xfb\xa5\xb1\x91\xba\x86\xcc\x97\x2a\x10\xcd\x25\x65\x29\xf2\xdc\x12\x90\x0c\x48\xe0\xef\xd1\x34\x1a\x90\x1a\xf7\x74\x5d\x56\x47\x50\xec\xd6\x79\xee\x98\xb3\x07\x37\x85\xec\xf4\x78\x27\x2a\x37\xec\x66\xd6\xac\x08\x22\x42\xc8\x43\xcb\x3f\x55\xb3\x36\x8b\xae\x78\xd4\x30\x01\x39\xca\x4c\x7f\x68\x80\x7d\x77\xb8\x1a\x24\x02\xa2\xa2\xf4\x58\xe4\xf3\xd0\x75\x82\xdd\x52\x9c\xfa\xec\x93\x1d\xcf\xf2\xc2\x97\xce\x84\x9c\x6c\xc0\x19\x44\xa0\x49\xeb\xef\x2b\x90\x77\x12\xf5\x07\x45\x3e\xeb\xeb\xfa\xa7\x55\xe4\xfa\x86\x52\xc6\x64\xf3\x22\x73\xe8\xbe\x42\xf8\xea\xf3\xf6\xf9\x96\x52\x76\xbd\xac\x31\xff\x97\x6b\x76\xe8\xb9\x76\xcf\xe6\x65\xce\xd3\xf2\x4c\xff\xc8\xe4\x84\xf6\xbf\x6e\xb9\xf6\xb7\xbb\x36\x2f\x40\xe4\xa4\x38\xc8\x96\x3c\x7e\xa1\xdc\x46\xd8\x14\xa0\xba\xc1\x7a\xdf\xd5\x69\x20\xda\xcb\x43\x33\x1c\xa1\x2b\xeb\x10\x70\x58\x0c\x02\x87\x6b\x98\x67\x1e\x65\x52\x96\x40\xac\x70\x4c\xcd\xc3\xb1\xb1\x16\xd1\x73\xe9\x99\x75\x4d\xb8\xd2\xcf\x9c\x64\xb4\x30\xdd\xf8\x89\xd9\x8b\x0d\x7a\x01\x4b\xed\x74\x79\x79\x56\xf3\xf2\x96\x76\x06\xb9\x33\x7a\x3b\x4e\xfd\x51\x0f\x56\xd4\x8b\x51\x60\x09\x64\x6b\x2f\x37\xa6\xe6\x39\xde\x71\xb3\x06\xeb\xe3\xc2\xac\x18\xcd\xe0\x78\x9c\x18\x1d\xf8\xb8\xc1\xd1\xbd\x4c\x05\x97\x2c\x8d\x69\xc1\xc3\x94\x41\xf8\x13\xdf\xbd\xad\xe3\x0b\x20\x97\x37\x29\x6d\xaf\x0d\x6c\x3c\x24\xeb\x22\xa4\xda\xe5\x0d\xb2\x44\xfd\x44\xf7\x4d\x1a\x84\xe8\xf2\x35\xdb\x8b\xf2\x41\x4b\xd5\xaa\x5b\x54\x8d\xe0\xe3\xda\xeb\x5e\x5c\x64\x9d\x38\x7e\x10\x02\xc8\xd5\x20\xaf\x06\x0a\xaa\x30\x76\xf4\xca\xe2\xc7\x4e\xc3\x8f\xf3\x49\xed\x43\x07\x5e\x6c\x97\x61\x02\x4d\x4a\x1d\x9c\x6b\xc4\x8c\xd4\x1b\xbc\xfb\xdb\x61\x66\x86\x43\xf9\x21\xe4\xef\x0c\x26\xe7\x93\xc0\x23\x14\xc3\xd4\x26\x6c\x55\x05\x03\xae\x72\xa2\xf3\x2e\x9d\x5d\x8b\xc2\x15\x2b\x90\x2e\x61\x8f\x6c\x29\x56\xc9\x5a\xa1\x7c\xa1\x3d\x34\xcc\x00\x01\x2b\x0f\x6a\x7b\xd4\xd9\xde\x01\xef\x07\x20\x44\xf5\x89\xf4\x97\x96\x44\x19\x0a\xb7\xb1\xe4\x29\xa0\xcb\xdb\x10\xe2\x4c\x51\x13\x19\x65\x36\x0f\xb3\x68\x54\xc8\x4c\x19\x02\xfc\x0f\x54\xd5\xf6\x03\xdf\x66\xb2\x45\x11\x8b\x5d\x45\x8e\x8d\x2b\x43\x2f\x83\x15\x50\x25\x88\xfb\x28\x71\x0a\xb3\xdc\x1f\x18\x56\xbb\x44\xe1\xe7\xa2\xc6\xc4\x5d\x0c\x74\x25\x33\xe9\x91\x6a\xa7\xea\xb3\xdc\x63\x17\x20\x22\xa9\xf4\x51\xa4\x8d\x67\x4a\x4b\xe1\xc5\x64\x6d\xb6\x8a\x25\x40\x80\x26\x2c\xef\xc3\x81\x6f\x6e\xdd\x51\x3c\xf0\x57\x03\x45\xe7\x1d\xa6\xe3\x0c\xc3\x3b\xe5\x32\x40\x00\xcd\x6d\x73\x3e\x51\x2e\xed\xf3\xff\xed\x67\x51\x74\xc0\xab\xda\x02\xf8\x23\xd2\xb1\x0b\x93\xad\x9f\x65\x8f\xf1\x44\xc7\xb7\xb8\x2f\x34\x41\xda\xf2\x71\xbf\x6f\x73\x47\x40\xc8\x99\xab\x36\x84\xf5\x34\xf6\x8b\x0b\xed\x41\xea\x46\x44\x24\x6b\xf0\x45\xe8\x89\xc2\xfa\xaf\x0d\xa2\xd7\x5e\xb3\x39\x6d\x75\x87\xba\x2c\xd7\x07\xd0\x6b\xd7\xd5\x00\xe7\x2f\x54\x29\xb7\x6b\x57\x6d\x16\xaf\x6f\x53\x33\x92\x77\x02\x0d\x50\x3d\xa7\x51\x07\x88\xf2\x00\x5d\xba\xa7\x83\x8c\xdb\x8a\xce\xb1\x67\xc3\xe7\x77\x78\xc4\xc8\x0d\x2d\x95\xf1\xd8\x54\xf5\xc0\x67\x01\xc1\x73\x4a\x11\x4e\xa9\xe8\x4f\xf0\xd5\x22\x2e\xea\x63\x23\xb4\x47\xb1\xc3\xef\x35\xc8\xd1\xee\x6f\x8f\x9d\x18\x31\x4a\x5b\x0c\x00\xe2\x93\x9a\x1d\x79\x6e\xd3\x34\x81\x93\x9d\x70\x94\x7b\x75\x20\xc0\x73\xed\xbc\x28\xf3\x67\x7e\x93\x78\x68\xdf\xd0\xc3\x5f\xdf\x68\x8a\xd3\x6d\x42\x3d\x1e\x21\x02\xb9\xe7\xa3\x2d\xf3\x24\x19\x70\x69\x4d\xfb\xaa\xee\xdd\x8f\xe4\xee\x28\xf7\x75\xd4\x8b\x52\x5a\xfa\x18\x84\xb9\xa0\x42\x77\x2e\xd5\xa1\x86\xfd\xba\x9e\x0a\xb3\x49\xbf\x18\xa0\x2c\xc9\xd5\x02\xba\x57\xa9\x1c\x78\x1e\x23\xcb\x02\x6d\xcc\x42\x11\x54\x28\x29\xea\x41\x06\xca\x64\x2d\x6f\xc7\x20\x37\xcc\xc7\x6a\xc1\x8d\x47\x79\x68\x62\x4b\x2d\x7b\x3c\x09\xc8\xc4\x63\xbf\x9f\x50\x92\xb0\x47\x94\x8b\xbb\x58\xa1\x4d\x89\x8a\x74\xc6\xdf\xec\x2d\x5a\x20\x6e\x50\x72\xef\xde\x7d\xce\x4f\x37\xe0\xe4\x8a\xcc\xda\x96\xe6\x6a\x41\xfd\x54\x80\x18\x9b\x77\xee\x73\x60\x97\x30\xe3\xb8\x97\x57\x74\x82\x8f\x4c\xd4\xe4\xe8\x11\xbc\x70\x8e\x4e\x53\xd3\x0b\x19\x47\xab\x09\x72\x98\xff\x91\x4f\x14\x61\x0f\x7d\x02\x11\x12\x93\x18\xfd\x2f\x87\xe8\xa2\xf8\xd8\x85\x0e\x26\xe9\xc7\xd2\x3e\xc1\x93\x3d\xaa\x3a\x34\x47\x15\x99\x7b\x3c\x66\x15\x44\x9e\x3b\xa1\x97\x21\x33\x28\x9b\x17\xf4\xbe\x25\xf7\xfa\xdc\x32\x44\x5f\x4f\x6a\xf2\xfe\x02\xd6\xd7\xcc\xfa\x23\x9a\x2f\xd3\x57\x78\x9f\xc6\xbc\x2f\xea\xb6\x5f\xc1\xcd\xf2\xf4\x04\x05\x1d\x78\xc3\xbf\x35\xf1\x98\xcc\x99\xa9\x22\x98\xbd\xec\xfd\x50\x38\x2e\x8a\xd8\xb2\x92\x3f\x73\xfd\x2a\x20\x0f\xfb\x3a\x69\x89\x7a\xd4\xea\xe5\x3a\x25\xe6\x8b\xfb\xdb\xaf\xda\x35\x79\x75\xcc\xa8\x19\x28\x32\xf9\xb3\x5a\x0c\x79\xfc\xda\x6b\x31\xdb\x50\xbc\x58\x4c\x67\xc0\x9f\x1c\x51\xef\xe4\x6d\x05\x3c\x0f\xd3\x21\xcd\x8f\xa6\x59\xbe\x5d\x11\x7c\x33\x0d\x06\x6e\xee\x27\x8a\x5c\x09\xd4\xcc\x62\x36\xca\x27\x23\xb7\x48\xb7\x85\xf5\x31\x5b\xa3\xf6\xa5\xd9\x16\xaa\xdf\xb0\x81\x93\x46\x7c\xcb\x09\x58\x7e\xa5\x36\xc3\x20\xf6\x02\xac\x25\xaa\xc8\x81\xc7\x26\xa3\xca\x7a\x73\x85\xe3\xd1\x8c\xcf\x15\x6e\x4d\x14\xe9\x1f\x98\xc0\xb0\x55\xb6\x74\xbc\xc5\x5f\xe3\x41\x53\x7e\x50\xef\x2b\x27\xfc\xbe\xea\x91\x87\x69\xb2\x1c\x47\x61\xc1\xf8\x7c\x46\xc0\xd2\x13\xc6\x86\x05\x35\x3b\x32\xa8\x7b\xb5\x00\x83\x1a\xd0\x49\x9a\xad\xd9\x7e\xc4\x45\x3c\x41\xb1\xd0\x8d\x09\xbc\x65\x97\x12\x07\xf9\x14\x5d\x3d\xe2\x7f\x88\x09\x21\x4d\xff\x01\x85\xdc\x4c\x96\xc1\xfe\x0e\xdb\xe3\x1a\x6a\x04\xbc\xbc\x03\x85\x3b\xfd\x31\xea\x75\x02\x7c\x2e\x5f\x1c\x2f\x12\xb8\x48\x99\x77\x2e\x57\x8f\x50\x43\xb7\xe6\xe7\x19\x8a\x77\x11\x95\x0a\x37\xfd\xba\x6f\x6e\x9f\xc3\x24\xd0\x7b\x87\x6f\x66\xd5\x01\x0c\x4c\x1e\x55\x32\xed\xdb\x88\x18\x13\xc1\xd7\x57\x61\xe5\x98\x03\x2e\xf0\x81\x27\xf7\xe8\xe0\xb9\xef\x29\xf1\xd5\x37\x88\xcf\x8d\x71\xcd\xd4\x2f\x43\x5e\x07\x1e\x78\xb9\xa8\xd6\x17\xf6\x73\xba\x7e\x43\x75\x10\xc2\x01\x31\xce\x97\xf7\x8e\xf4\xfd\xb6\x9e\x3a\xb9\x1d\x6c\xa6\x3f\x92\x35\x57\x0c\xd2\x71\x6e\x92\x1e\x87\x2f\x78\x3d\x6f\xe0\xb3\x7c\xd2\x54\x69\xcb\x47\x51\x62\xe2\x2d\xde\x67\x85\x71\x64\x93\x22\xdf\x5e\x5e\xb5\xb6\x27\x30\x34\xad\x8e\x37\x6d\x1b\x13\x0f\x90\x7a\x5d\x95\x95\x5e\x9f\x78\xf0\xfd\x9f\x7a\x8e\xc4\xe1\x28\x56\x23\x41\x08\x3f\xbf\x1f\xf8\x21\x83\xef\x3b\xbb\x97\xdb\x70\x9c\x41\x87\x44\xda\x20\xbe\xe9\xb6\x95\x7a\xba\x18\xe1\x39\xa2\xb4\xb8\xb6\x77\x2a\x10\xc8\x8a\x03\xeb\xa7\x2d\x2a\x38\x39\xe6\xf9\x3d\x9e\x79\xde\x5d\x5f\x16\x0e\xb2\x68\x95\x51\xb5\x58\x83\xf7\x94\xb8\xea\xbd\x9a\x7b\x7b\xe5\x15\xe9\xc0\xcd\xb9\xf2\x7c\xf9\xcd\x52\x9d\xf7\x51\x6d\xd6\xcb\x77\xab\xf6\xc4\x55\x25\xe3\xb1\xb5\xe3\x91\xe6\xb7\x26\x9a\x56\xf4\x53\x14\xe3\xd2\xc4\xc4\xc3\x36\x28\xf7\x18\x4d\x4b\x2b\x8d\x99\x06\x60\xf8\xd1\xa2\x7e\x72\x5a\xbe\x28\x61\x1a\xf2\x00\xde\x67\xe8\x91\x29\x55\xa6\x97\x37\x6e\x04\xbe\x41\xf4\xf6\xaf\xd6\x32\x4b\x58\xbf\x91\x0d\x51\xb2\x41\xe1\xed\x7d\x55\x84\x7b\xbf\x2e\xd9\xb2\xd0\xb6\xbd\xd2\x2c\x13\x30\x79\xd1\xd1\x5c\xd3\x1b\x16\xca\x6b\x5f\xe6\x1a\xa6\x65\x46\x89\x58\xdf\x31\xfa\x1e\x9c\xe3\xde\xc0\xbb\x28\xe9\xc3\x6f\x9d\x50\x2a\xb2\x7f\xa1\x62\x9b\xa1\x1d\x76\x6d\x96\xef\xa2\x27\x2b\x7e\x94\x50\xdb\x6e\x48\xd4\x51\xba\xed\xec\xa8\x18\x17\x58\x2c\x9e\x13\x56\x70\x94\xd9\xa9\xea\x2e\x3d\x98\xe8\xd9\xcf\xef\x07\x5a\x17\x8c\x69\x00\xe0\x54\x4e\xd1\xeb\x10\x4a\x50\xcf\xb9\x54\x98\x6c\x46\xe5\x1b\x50\x3c\xc3\x8b\x3a\x56\xd5\xf4\xf3\x61\x60\x62\x43\xaa\x2e\x33\x6d\x39\x99\x0e\xa1\x30\x57\x34\x21\xe9\x72\x31\x4b\x0b\x5a\xca\x87\x7e\x60\xea\x6b\xf4\x19\x29\x31\xd2\xa3\xe1\xff\x68\x08\x23\x87\xd1\xa1\xc2\x42\xab\x05\x5d\x63\xae\xa7\xf2\x89\x82\xf1\xf4\x4d\x1c\x73\x4e\x0b\xe7\x77\x4f\x39\xc2\x7b\x35\xc3\xb2\x6f\xae\xdd\x8b\xe2\x31\x93\x41\x38\x1a\x65\x2f\xf7\xaa\x0c\x5e\x37\x4e\xd7\x92\x99\xd2\xdc\x62\xe5\x3e\x54\xcc\x03\xf7\xe9\x57\xd0\x08\xfe\x41\xcd\x45\xed\x59\x6c\x87\x69\x3a\xb2\x40\x2c\xb4\x7c\x5e\x7a\x56\xe9\x02\x9c\x9d\x3c\xab\x70\xc8\x1e\x73\x8a\xec\xc0\x4d\xd7\xfb\x76\x29\x2a\xe4\xb8\x33\x8c\x0b\x21\x95\x3e\x5b\x1d\xc7\xb2\x87\x5a\x15\x55\xc1\x89\x6a\xd7\x9f\x51\x33\x5e\xc3\x70\xc5\x26\x89\x51\x3c\x40\xff\x4c\xf3\x00\xfd\x33\xdf\xe1\x2d\xad\x5e\x54\x48\xc4\x89\x75\x77\x4c\x15\x59\x8e\xb9\x90\x6d\x68\x0f\x91\x60\x42\x45\xac\xee\x3a\xde\x1d\x9f\x4c\x1e\x57\xaa\x34\xab\x36\x27\x94\xa4\x63\x1f\xf0\x4c\x04\x81\x6f\x7b\x33\xfc\x9b\x4f\xd4\x60\x4d\x42\xd4\x25\x14\x0a\x79\xe0\x0e\x6c\x1d\x1f\x6b\x51\x51\x26\xc1\x6f\xf9\xb9\xe4\x6b\x6a\xe9\x5f\xab\x52\xd8\x0f\xa2\xa4\xbf\x83\x36\x13\x96\xec\xbb\x81\x02\xda\x5f\x06\x2c\x15\x43\x63\x28\x4f\xf3\x5f\xd1\x6f\xcb\x96\x23\x7f\xc7\x7f\x84\x67\xe0\xba\x77\x4e\x5a\xb7\x8e\xde\xdb\x37\xc7\x18\x05\xf1\x48\xc2\x6d\xde\x72\x14\xf2\xe7\x2b\x5e\xe4\xd5\x68\xb8\x43\xa5\xba\x3c\x19\x29\xe4\xe6\x7e\xae\x84\xc1\xa6\x8e\xe6\xf3\xe0\x9c\x03\x2a\xe1\x75\x69\x54\x8b\xb4\x05\xc9\x1e\x88\xc0\xa4\xac\x88\xd0\xd8\xdc\x64\x96\xa3\x2f\x14\x21\x3e\x0c\x14\xa6\xfb\x43\x05\xd0\xa6\x1c\xa8\x6f\xca\x3c\x68\xd6\x03\x8f\x4e\x69\x19\x04\xcd\x46\x70\x29\xd0\xdd\x95\x7a\x07\xb3\x1d\x25\xab\x96\x01\xdf\xad\xca\xd8\x69\xa0\xca\x4b\xf5\x22\xca\xbe\xb9\xf6\x6a\x1a\xb2\x0b\x60\x22\x79\xc5\x86\xf7\xad\x06\x61\x99\xb6\x8d\x6d\x58\x64\xe9\xd0\xf4\x13\x2b\xe5\x17\xf4\xd3\x8f\x6a\xa8\xf5\xd1\xe0\x19\xdf\x70\xea\xd9\x2f\x8d\x99\xed\x51\xe9\x5b\x97\x3f\xc4\xc7\x1e\x0e\xb1\x6e\xb3\x99\x6a\x95\xab\xe5\x84\x8e\xbf\xab\xa5\x2d\xaf\xba\xd4\xcf\x16\x83\x24\x0a\x29\x02\xc1\x6f\xef\xee\x54\xe2\xcc\x85\x03\xfc\xb2\x2f\xea\x47\xaa\xe5\x1d\x7c\x16\x17\x47\xc3\x51\xd4\x53\xa3\xf8\x27\xd4\x28\xfe\x09\x9d\x0f\x65\x51\x18\x25\xfd\x6d\xb4\x1d\x10\x18\xe2\x4f\xd1\x1b\x83\x10\x3c\xba\x40\x6f\x4e\xfc\x74\x24\x82\x14\x94\x30\xce\x4e\x76\x09\xca\x77\xef\xde\x7d\x9f\x2e\xff\x83\x99\x41\x80\x6b\x40\xa8\xfa\x6c\x47\x61\xbf\x7f\xa4\x29\xea\xce\x92\x2f\x43\xa0\x0e\xc9\x0f\x2c\xb4\x3f\x0c\xbc\xfa\xc3\x03\xda\x7c\x6e\xb8\xec\x25\x29\xb1\x5c\xc0\x52\x43\x60\xfd\x23\x28\xa3\x3a\x08\x8f\x4b\xe5\x7e\xbf\x0c\xd2\x37\x2e\x70\xa4\x83\x44\xe4\x3e\x02\x6c\x44\x34\x8f\x74\x14\xaa\x03\x5c\x04\x12\x9e\xd3\xc2\x40\x7c\x7e\x02\x79\x83\x63\x47\x5f\x38\xc0\xb1\xce\x87\x98\xdb\x42\x2d\x66\x1a\xe8\x16\x2f\xc0\x6a\x2e\x0b\xf0\x7c\xcf\x7f\x00\x5e\x67\xd4\x60\x7f\xc0\x9c\x0f\x4c\xf1\x84\x40\x04\x6f\x60\xeb\xd4\x87\xc9\x70\x3b\x4c\xcb\x0a\xe3\xc3\xe0\x0c\x3e\x51\x74\x32\x7d\x9b\xd8\xcc\xc4\x8f\x96\x3e\x0e\x6f\xe0\xbb\x5a\x9c\x03\xb5\x1b\xf4\xa4\xb6\x10\xca\x10\x29\xed\x8f\xaa\x2e\xc5\x57\xde\xaf\xf0\xd3\x13\x32\x0d\x3f\x9e\x3c\x43\x09\x06\x0c\xe3\x7b\x2a\x00\xdd\x1f\x1d\xda\x5e\xc9\xc2\x5b\x5f\x5c\xe0\x00\xe8\xb7\x27\x95\x51\xb9\xf9\x05\x8e\xb9\x1f\x05\x71\x35\xee\xfc\x5d\xfa\x0d\x61\x03\xaa\x4f\x64\xbc\xdc\x5e\x8e\xfa\x83\xc2\x15\xf6\xf0\x97\x57\x95\xf4\xd9\x55\x1f\xdd\x8f\xbb\xe3\xac\xdb\xd2\x38\x40\x7a\xe3\x02\x10\x6c\xe8\x58\x50\xf9\x39\x82\xc6\x0e\x6a\x0f\x1f\xd0\xc6\xe0\x63\x3f\x17\x97\xa5\xcb\x51\x6c\x67\x5a\x8a\x74\xc5\xcf\xa7\xfe\x9f\x13\x4f\x8e\x59\x1f\x47\x3f\xf0\x62\xfb\xd5\x71\xaf\x0f\x38\x44\xcb\x17\xfa\x4e\xd0\x83\xe7\x63\x15\x11\x65\x36\xb7\x71\xac\x98\x57\x58\x52\x8d\x4f\x6a\x0d\x11\xf2\x37\x5f\x1a\x47\x99\xed\xcd\xfa\x98\x7a\x16\x5b\x11\xc6\x84\xb4\x47\x80\x41\x58\x70\xbc\x68\xde\xc2\xaf\xa6\xf1\x38\x29\x4c\x16\x95\x46\x6f\xe1\x00\x97\x2e\x78\x4e\x8d\x4f\x6a\x91\xd8\xc2\x81\xf6\x0a\x75\x41\xd9\x88\x57\x28\x02\xf8\x44\xa9\x82\xad\x45\x45\xe1\xcc\x25\xc0\xd0\xef\x2a\x8d\x8c\xdb\x1a\x85\x51\x9f\xb7\x5f\x38\xd0\x2e\x32\x93\xf0\x5c\x0b\xef\x54\xec\x41\xd9\xb6\xd2\xe9\xed\x59\x9b\x59\x25\x91\xc6\x0d\x58\xd9\x3c\x1e\x17\xde\x8f\x4c\x52\x28\xbe\x94\xaf\x28\xda\x8f\x7b\x1a\x3e\x7d\xb8\x8a\xc5\xf0\x23\x38\x77\x02\x15\xad\xdf\x52\x2d\xca\xb3\x75\x0a\xdd\x05\x0e\x0a\x5a\xad\x57\x5e\xd9\xb8\x82\xf7\xe1\xbc\x42\x5e\xd8\x38\x4c\x67\xf4\x2e\x57\xe5\x35\xee\xf3\xa2\x83\x7a\x4b\x41\x0e\x72\x09\x37\x5f\xae\x62\xd3\x51\x77\x7d\x43\xf7\xae\xff\x52\x09\x51\xdd\x50\x41\x24\x35\x5a\xcb\x40\xc5\x1b\xf1\x2b\xe0\x65\xe4\x93\x26\x3f\x1c\xa6\x43\x19\x31\x52\x63\xa7\x2f\xbb\xb1\xd3\x7a\x5b\x75\xa1\xcc\x08\x6c\x0f\xed\x09\x51\x57\xc6\x5a\x40\x5e\x76\x49\xcb\x7a\x73\xe7\x1f\xff\x83\x7c\x80\x5c\x5f\xff\xe9\xce\x66\x28\x4b\xb9\x30\x06\x29\xb1\x7c\x76\x65\x03\x38\x85\xb4\xf2\x4b\xa4\x7c\xd5\x12\xe2\x8e\xef\xbc\x8e\x05\x21\x63\x6f\x8e\x3b\xce\x44\x89\x44\x6c\x58\x86\x08\x0c\xf9\xb8\x96\x96\xee\x59\x6c\x0f\x4d\x1e\x8e\xe3\x28\xc1\x72\x63\xbf\x4d\xf6\x43\x7c\xb8\x2c\xca\x6c\xbd\xc7\xe2\x85\x8a\x20\x6c\xc9\x0d\x14\x7a\x1a\xe0\x0c\x23\x90\x48\xe1\xef\x07\x7e\x0e\xf7\xa2\x72\xd2\xe7\x54\xca\x56\x98\x38\xc6\xab\x70\x00\x44\x07\x55\x3e\xa2\xf6\xdf\xaa\x19\xc7\x3c\xd3\x8f\x56\x0f\x20\xb3\x7c\x5c\xeb\xdd\x3f\x47\x6a\x5e\x33\x1e\xb5\x42\x4b\x96\xc3\xbd\x0d\xaa\xba\x89\xcc\x9b\xe4\x0e\xa3\x71\x1c\x77\x4d\xb8\x82\x2c\x43\xf0\x92\xe5\xa7\xf8\x58\x61\x51\x62\x5b\x5a\x83\x59\x7f\x35\x1f\xaa\xab\xf9\x90\xcc\x29\xcb\x7d\x53\x89\x48\xa4\xbf\x15\x1e\xdf\xc2\x94\x62\xdd\x73\x82\xc1\x27\x2a\x9a\x0b\x4d\x1c\x2d\xa7\x59\x12\x99\x9d\x2d\x2f\x96\x00\x7b\x2a\x8a\x1e\xf4\xc6\x51\x25\xfd\x6b\xad\xca\x76\x86\x9e\xb8\x92\x39\x7f\x99\xf7\xe3\x11\x0d\x08\x98\xe5\xd1\x5f\xf4\x2d\x90\x8b\x57\xe2\x1f\x14\xe5\x76\x39\x45\xb1\xc4\xf6\xcb\xa8\x74\xd6\x61\x51\xfe\xc5\x4c\xa7\xa5\x44\x3f\xfd\x70\xd9\x71\x72\x9a\x02\x86\xf1\x37\x95\xa4\xab\x11\x65\x4d\x4c\x17\x8b\xc5\xf2\x83\xc0\x17\x75\x7f\x50\x2b\x29\xed\x9b\x6b\x17\x2c\xd8\xb2\x89\x0b\x9f\x4f\x6a\x26\x17\xa0\x24\x1e\x12\x72\x55\x31\x17\x6b\x1e\x69\xd8\xe5\x2f\xb4\x43\x53\x84\x03\xaa\xbb\x8b\x62\x1d\xfd\xa0\x60\x41\x7d\xb3\xa8\x0e\x82\xda\xbb\x97\x80\x0e\x03\x33\x86\xef\x13\xbf\xa3\x9a\x2d\x97\x15\x78\xa8\x97\x86\x63\x27\x6d\x0a\x4b\x01\x97\xcc\xc7\x6e\x59\x9a\x78\x39\xb3\x79\x98\xce\x78\x1a\x9f\x7b\x81\x2b\x80\x05\x27\x69\x81\x49\xdf\xc1\xa7\xa6\x03\x1b\x47\x61\x3a\x2a\x78\xdb\x02\xcc\x73\x51\x23\x85\x2e\xfa\xa1\xcb\x55\x9b\xe5\xd6\xce\xfa\x70\xf9\x36\x85\x97\x42\x8a\xe5\xb3\x94\x63\x4a\xd9\x64\xd4\x34\x66\x55\x44\xc3\x2e\xff\xa4\x8e\x33\x84\xf4\xad\x91\x4f\x33\xb4\x09\x80\x67\x70\x57\xc0\x13\x03\xc1\xca\x13\xaf\x58\x90\x87\x6b\xa1\xc9\xc1\xb9\xa5\x76\x98\x26\xa1\xcd\x9c\xe9\x83\x3b\x3d\xa2\x2a\xd6\x47\x14\x51\x71\x31\x48\x87\x26\x8f\x92\x68\x46\x01\x73\x2f\xd1\x7e\x15\xee\x83\x32\x16\x95\xca\x85\x34\xeb\x85\x15\x7f\x68\x12\xb8\x2b\x5c\x29\xc7\xb5\x6e\x7a\xc4\xa1\xd3\xb7\x75\x5a\x8a\xf4\xca\x17\xe6\x5e\xb3\x26\x36\x49\x8f\x6e\x16\x35\x95\x23\x4a\xad\x0b\x93\x19\xd2\xba\x6d\x8a\x25\x4b\x1b\xef\xd4\xd5\x79\x68\x53\xc5\x7b\x37\x15\xe8\x86\xd9\x32\x5f\x63\x94\xad\x10\x0a\x2b\xfc\xeb\x2d\x05\x21\x6e\x75\x3c\x51\x8e\x70\x0a\x3c\x49\xc1\x01\x6a\x7e\xc7\x14\xae\x6d\x07\x4a\xae\x4a\xb8\x60\x49\xb3\x82\xbf\x2c\x8a\x79\x2a\x01\xfc\x31\xb6\x11\xab\xf3\x4c\x7c\xea\x72\x31\xf0\x84\xe4\xd9\x2d\x35\x6e\x78\x9a\xc8\x49\x05\x70\xe8\x99\xd2\x0f\x13\x00\x0b\x73\x5a\xb7\xb4\xf6\x34\x55\xf7\xf8\xef\xb5\x46\xd9\x7d\x07\x90\xb1\x87\xcc\x30\x4a\x6c\x86\x30\x45\xd4\x6f\xfd\xf4\x09\xeb\x4c\x08\xd0\x53\x7c\x5a\xf1\x7c\xf1\x3c\x1c\x14\x0f\x07\x04\x7a\x50\xc0\xcf\xf7\xe6\x76\x64\x32\x4a\xbc\x67\x75\x4b\x8b\x9e\x15\x37\x85\xf1\xac\x2a\xca\xb0\xd2\x2e\x7e\xda\x4f\x87\xa4\x71\x99\x2e\x30\x90\x47\xe4\xe9\x95\xec\x47\x45\x28\x2d\x1e\xed\xf4\x40\x2a\x8e\x78\xb1\x55\x59\xe6\x50\x40\x0a\x0a\x6b\xad\x71\x5a\xe7\xf5\x00\x30\x74\x2d\x10\xd1\xef\xea\x78\xac\x7b\x8b\x92\x27\x3c\x4f\xce\x42\xa5\x84\xe8\x5d\x62\x12\x8d\x46\xa9\x20\x95\xf0\xa6\xaf\xe9\x6e\xfd\xb5\x26\x4d\xe0\x32\xff\xeb\x5b\x91\xc5\xc6\x22\xfd\xf7\x8a\x97\xe5\xdf\x2b\x64\x49\x37\x8b\xf2\x95\x78\xbd\x4a\x75\x5b\xde\x89\x30\xdd\xba\x91\xd2\x28\xcf\xa3\xd8\x6e\xd3\x44\x3b\x1a\xc5\x78\xd6\xd3\x68\xfd\xce\xd3\x1d\x9f\x06\x6d\xa5\x86\x28\xf6\xe2\x09\x4d\x55\x37\xb0\xe1\xca\xce\x96\x1a\xbb\xa6\x14\x19\x05\x80\xd3\x78\xb2\x8c\x0b\x99\x78\xb0\xc1\x0e\x4a\x58\x5d\xf0\xe3\x0a\x23\xdc\xf5\x45\xcc\xfe\xaf\x14\xae\xf6\x3b\xa0\xa1\x97\x99\x31\xb5\x53\xbf\xaa\xe2\xa5\x6e\x7a\x68\x1d\x3d\x1b\xd4\x5c\x7e\x46\xc6\x8b\x8f\xdd\x5a\x5f\xb1\x71\xbc\x96\xa6\x6c\x13\x5d\x66\xaf\x06\x90\x5d\xcc\x56\x98\x43\xd1\xac\x2a\xcc\x9d\x56\x73\x5c\xb7\x29\xa5\xe0\x8a\x0b\x79\x73\xc4\xbe\x7f\xa4\x46\x8c\x96\x6d\x96\x45\xb9\x92\x9a\xbe\xad\x64\xcd\x4f\x62\x45\xca\xd0\x85\x7f\xa6\xab\x36\x2f\x60\xc6\x58\x64\x48\x91\x11\xfd\xac\x96\xe9\x2e\x1c\x68\xaf\x99\x2c\x33\xec\x2e\xb1\x69\xae\xd3\x46\xe4\xe3\x4a\x41\x32\x7b\x35\x9b\x55\xef\xfb\xa2\x52\x14\x41\x78\x8b\x7d\x70\x16\x9b\x93\x4f\xd4\xd0\x45\x98\x0e\x47\x45\x96\xc6\x31\xc0\x10\x2f\x70\x77\x64\xaa\xe8\x43\xa6\x8a\x57\xb9\x6f\xa2\x64\x47\xf9\x16\x98\x1f\x2c\x50\xa0\xf6\xfb\xf4\xe6\x85\x38\x4c\x4d\x96\xdf\x53\xe5\xd4\xab\xb8\x90\x4a\xc8\x81\xde\x1a\xb0\x9f\x58\xc3\xdf\x6e\xe0\x8a\x59\x6a\x67\x96\xb8\x2a\x54\x94\xc3\xbb\x8e\x4f\x14\x27\x59\x96\x5a\xea\x26\x20\x54\x24\x59\x4a\x36\x29\xef\x28\xca\xf6\x13\x0a\xbd\x9e\x1b\x68\xce\x80\xf1\x01\x41\xf9\x03\x7c\x7d\x45\x07\x02\x55\x84\xf3\x8d\xd3\x84\x45\x7a\x28\x62\x18\x1e\x93\xb3\xab\xd4\x50\x67\xd8\xd6\x14\xd2\xbf\x87\xc5\xf8\x5a\xe0\x81\xe0\x5f\xd3\x73\x20\xf9\x60\xb7\x9f\x34\xb8\x3f\x51\x62\x54\x40\x06\x50\x05\xe1\xf7\xff\x0e\x66\x4e\x05\xc2\xe4\x07\xfb\x8e\x4c\x14\xee\x92\x78\x04\x97\x1c\x06\xb1\x7c\xdc\x2e\x92\xf5\x7b\x76\xa2\x4a\x81\xbf\x32\xf5\xee\xfb\x93\x1d\xad\x95\x70\x7c\xb2\xf5\xb3\x8e\xa2\x5f\x69\xa5\x8f\x87\xc3\xa8\xd8\xe6\xc3\x83\xdb\x5a\x81\xf5\x34\x17\xbf\x91\xf4\x9e\x99\x54\x04\xc3\x5b\x4e\x9c\x76\xa6\xa3\x8a\x56\x4b\x8b\xf0\x48\x32\x41\xa0\x25\x52\x9e\x52\x0f\x34\x2f\xd6\x4c\xc6\x2a\x87\x0c\x6c\x0a\x94\x4e\xdd\x09\x75\x91\x36\x29\x88\x35\xc0\x53\x2b\x5c\x40\x93\x41\x94\xae\x3c\xe6\x71\x34\x88\x62\xd3\xb3\xf1\x68\x10\x19\x34\x8b\x34\xf9\x2d\x53\x80\x07\xbe\x0e\x8b\x45\x8c\x32\xde\xef\x34\x68\xa0\xef\x6f\x0f\xd3\xd5\x4d\x02\x50\x67\x94\xf4\xc7\xdd\x4a\xd3\xca\x55\x8f\x6d\x7f\x3c\xb4\x2a\x21\x7c\x4b\xa5\x60\x6f\xa9\x2e\xcf\x5a\x19\xd3\xcf\xfa\x22\xe1\x03\xb8\x61\xbc\xd9\x77\xf4\x9e\x44\x1b\x40\x0a\xf8\x8f\xb9\xa4\x56\x78\xe7\x10\x71\x73\x39\x85\x4f\x14\x21\x89\xc9\x23\x93\xcc\x90\x6d\x16\xa6\xa4\x96\x63\x3c\xe0\x5f\x95\x04\xd8\xdb\x4f\xb0\x4a\xcd\xf8\xcd\xf8\xd3\x89\x9a\x4b\xbf\xa1\x6e\xea\xb2\x2e\x89\xa7\x49\x11\x99\x10\xf6\xdd\xd5\x28\x5d\x91\xff\xb2\x1b\x1c\xc8\x8b\x68\x79\x99\xca\x0a\xc0\xb3\x40\xaf\x09\x36\x6f\x3b\xb5\xbf\xb1\x8d\x7e\x32\x51\x73\xcd\xe7\x95\x0d\xb0\x87\x42\x4b\xb8\xdd\xd9\x0a\x46\x94\xde\x15\x5b\x04\x85\xdf\x06\x1d\xab\x30\x83\x54\xfa\x82\x11\xb2\x77\xb8\x4d\x18\x6f\x3e\x6e\x9a\x0c\x09\x07\x36\x89\xe2\x98\xa7\x3a\x61\x4c\x31\xe0\xcd\xc7\xc1\xb3\x55\xf2\x0e\x82\xe5\xec\x9b\x7b\x44\xbd\xcf\xdf\x0e\xfc\x13\xf9\x39\x7d\x16\x0b\x6a\x2b\x04\x12\xb0\xb1\x8e\xc3\x9b\xf3\x09\x6a\x47\x2e\xdf\x73\x88\x96\x4b\x8a\xb4\xc9\x1e\xb2\x43\x7a\x22\x33\xf4\x35\x58\x98\x3f\x52\x6c\x84\x5b\x3b\x1e\xb7\xf9\xb0\x81\x6f\xe3\xe5\xb6\xc9\xf3\x32\x9d\x10\x82\x0c\x31\x1f\x2d\xcf\x80\xa7\xd8\x73\xc2\x34\x59\x1e\xe7\x3c\x25\x23\x0c\x0d\x7f\x4d\x7f\xcc\xc7\xaa\xb0\x30\x48\x93\x59\xdf\xef\x65\x4b\x23\x69\x23\x5d\x2f\x22\x8f\xb7\x95\xae\xcb\x8f\x2a\x13\x90\x69\xbc\xbc\x5d\x73\xaa\x4f\x14\x5a\x14\x38\x34\x25\x83\x24\xfd\x98\x0b\xca\xaf\x7e\x0f\xee\x0c\x1d\xd0\xbb\x9b\xb9\x8e\xcb\xdb\x9f\x9f\x7f\xd2\x77\x8d\x6e\xe0\xcf\xe1\xfb\x7f\x17\x03\x50\x70\x45\x6f\x4f\x94\xb1\x5a\x42\x2f\x04\x65\x77\x90\x60\xba\x18\x6a\x71\x71\xe3\xed\x49\x65\xb0\xc3\x4b\x70\xa0\x2b\x03\x33\xbe\x93\x70\x20\xa2\x8b\xa4\x96\xf0\x0c\xc4\x1a\x1d\xf4\xbd\xbc\x7d\x26\xee\x0f\x14\xeb\xf6\xb6\x8e\x17\x16\x9d\xad\x61\x43\x0e\xce\x69\x44\xae\xf0\x80\x1d\x56\x85\xf6\xc3\x3e\xab\x1f\xda\x2c\x0a\x8d\x74\x10\xf1\xb6\x76\x75\x54\x84\xb6\x6b\xaa\xb5\x05\x86\x29\xb5\xaa\xe7\x15\xd9\x80\x83\xcb\x9e\x04\xb6\xc3\xcd\xba\xbb\xa2\xdf\xc9\x49\x7d\x72\x6e\xa9\xbd\x9c\xd9\xa8\x3f\x28\xd6\xbc\x1a\x33\x2c\xc0\x4d\x5d\x26\xbe\xa9\x6c\x4d\x2f\x8b\x96\xa5\xc5\x2d\x73\xe0\x7e\x97\x9f\xaa\x59\xf4\x97\x48\x30\x4d\x10\xd0\x22\x6c\xff\x21\xe2\x1a\x3e\x51\x73\xc8\x6b\xc6\x66\x45\x1e\xc5\xc6\x2a\x6d\xab\x0b\x13\x45\xc9\x74\xa1\x56\xab\xd9\xb3\xd8\x2e\xec\x21\x13\xa6\x2d\x25\xda\xbc\x59\x3f\x59\x51\xf7\x0d\x4c\x36\x8a\xd7\x1f\xa1\x15\x04\x13\x7c\x8a\x2a\x1c\x4e\xe8\xd8\xc9\x13\x5c\xc3\x65\x3a\xd4\x4c\xf9\xf2\xf9\x13\x64\x0e\xa4\xfd\xea\xe3\xbd\x53\x13\x1f\x39\xe6\x45\x46\xc8\x66\x0b\x8d\xf6\x17\x3c\xb1\x9a\xc7\xf6\x2a\x84\xc7\x28\xb6\x06\x9c\x58\x32\x39\xa8\xfa\x03\x67\x9c\x0d\x5f\x33\x79\x61\x5b\xf4\x92\x35\x73\xa3\x98\xfa\x8a\x95\xed\xd3\xb8\xaa\x88\x33\xab\xb1\x89\xf3\x4d\xfd\xa3\x22\xed\x9a\x30\x4c\x5b\x8a\x8f\xe9\x6d\xc5\xa2\xf1\xb6\xcb\xa9\xe2\xa8\x9b\x09\x8f\x04\x27\x82\x95\xa4\x70\x33\x40\xfc\xc0\x8b\xed\x51\xbe\x1e\x0e\xd2\x38\xed\x47\xd4\xf5\x3e\x38\xc7\x85\x01\xc4\x68\x7c\xac\xa8\x26\x0b\x1b\xa7\x5c\x11\xc4\x7f\x5e\xc7\x1a\xe0\x93\x1a\xa6\x74\x7e\xbe\xdd\xb3\x23\x9b\xf4\xa8\x13\x5f\xe9\xf5\xa8\xfa\x9b\xb2\xdb\x61\xe9\x33\x93\xb1\xed\xed\x50\x02\xb5\x17\x61\x63\x24\xcf\x2e\x2f\x13\x8b\xe2\x87\x70\x71\x82\xa5\xf0\xe1\xe3\x0d\x3d\x83\xf6\x01\xec\x15\xcc\xce\x55\x2a\x48\xf0\xb1\x03\x2b\x8c\x93\x9e\xcd\x8a\x34\x5d\x41\x4b\x14\xfe\x64\x03\xf7\xc6\x27\x7a\xca\x71\x90\x86\x2b\xb9\x1a\x1d\xbb\xab\xfa\x32\x77\x7d\xaf\x30\x8d\x45\xd0\xd1\xe9\x33\xee\x9b\x73\x28\xf9\x86\x67\x35\x4e\xa2\x55\x9b\xe5\xc4\x3f\xe6\xc4\x94\xdf\x55\xba\x89\xef\xaa\xf4\xcc\x44\x39\xd3\xe0\x22\x1d\x46\xc5\x91\x8f\x1b\x46\x9a\x96\xda\xb1\x19\x8e\x52\x06\x42\xc9\x50\xb6\x4a\x14\x4e\x34\x0c\x04\x9a\xac\x3f\x16\x9e\x45\xc6\xe6\x21\x3a\x15\xa0\x9e\x2c\xbe\xf1\xa8\xe7\xe1\xc6\xac\xa1\xdb\xf1\x8d\xc8\x27\x94\xe6\x9b\xc1\xc8\x8f\x24\xb3\x7f\x15\xf8\x16\xf0\x5f\xa9\x62\xcd\x5a\xd4\xb3\xf9\x28\xb3\xa6\xb7\x9d\x6c\x02\xb6\x26\x53\xe9\xc8\xc0\x45\xf9\x40\x99\xfc\x3d\xf0\x15\x42\x1e\xd4\x92\x09\x0d\x32\x10\xfc\xf1\xa0\x81\xcd\x2f\xb3\x79\x91\x8d\xc3\x62\xec\x87\x3b\x84\xa0\xce\xcf\x41\x9d\xae\xe8\x0e\xac\xc7\xd0\x1d\xe0\x78\x15\x2c\xdb\x70\x60\x3b\x3a\x1e\x30\x30\xc0\xf3\x15\x76\x9e\xfa\x48\x89\xc9\xf3\xa8\xef\x0a\xa3\x32\x47\x5c\xd1\xcb\xf9\x28\xcc\x6c\x9a\x84\x69\xdf\x26\x02\xb9\x82\x35\x3c\x0e\x3f\xc3\x27\xaa\x32\x63\x0f\xd9\x70\xcc\xba\x45\xdc\x7f\x0c\xfc\x75\xde\x6b\x28\xdb\xbe\xd0\x8e\x92\x30\xb3\x26\x17\xe2\x0a\x56\x3f\x53\x6b\xfd\x64\xa0\xd4\x55\xae\xd4\x8a\x47\x72\xa5\xfd\x34\x5e\x56\x4c\xcf\x57\x35\xd3\xf3\xd5\x8f\x1e\x0e\x8b\xbb\x36\x2b\xb0\x52\x98\xf1\x2a\xf0\xf1\x54\xbd\xd5\x4e\xcd\x84\x71\x46\xca\x11\x2e\x6c\x42\x25\x50\x18\xba\x7d\x1f\xae\x9f\xba\x89\x0b\x96\x2e\x9e\xa8\x5e\xe3\x4f\x1a\xc5\x44\x7a\xe9\x5a\x52\x44\x9c\xcf\x00\xb0\x71\x36\xf0\x40\xd5\xb3\x0d\x23\x24\xfb\xdb\x36\x2f\x34\x81\x7b\x65\x50\xbd\x81\x08\x60\xa9\xfd\x6a\x1a\x25\x33\xaa\x21\xc1\x74\xbb\x32\xe0\x44\x0f\x9c\x19\x13\x9b\x38\x8a\x09\x8e\x94\x66\x8c\x02\x60\xcc\x50\xe0\x3b\x02\x17\x26\x8f\x3a\x2a\xff\xff\x5f\x69\x49\xd1\x38\x3b\x0a\x1b\x09\xcf\xf9\xaf\x03\x0f\xc5\x05\xd5\x9d\x1b\xd4\x28\x23\x30\x11\x92\xa1\x6d\xc5\x50\x17\xed\x06\x4e\x52\x9d\xd7\x69\x48\xbe\xe4\xf2\x97\xcb\x08\x6e\x11\x03\xfd\x15\x78\xf3\x5c\x5e\xf8\xc5\x05\xd7\xa6\xc3\x7b\x71\x22\x34\x8e\x16\x72\x6b\xa7\xf5\xeb\x9f\xe7\xd4\xff\x34\x23\x5d\xdc\x14\x98\xe7\xda\xdb\x3a\x55\x7c\x97\xd7\xb0\x21\xdc\x68\xb0\x27\x19\x82\x21\x01\x6e\x66\xeb\x54\x71\x22\x3e\xa8\x08\xd5\x92\xed\x11\x72\x1b\xda\x69\x28\x66\x7f\x9f\x6a\x6d\x0c\x94\x23\x41\x4c\x51\x19\xf4\x31\x18\x13\xc3\xa0\x8a\x71\x97\x10\xfe\x4c\x9d\x56\xab\x13\xed\xdd\xdb\xce\x4b\x57\x6c\x84\x39\x82\x2b\x3d\x5e\xba\xfc\xcb\x27\x3e\x42\xfa\x0a\xc3\x57\x42\x48\xe1\xd1\xcb\xe7\x55\xd0\x03\x40\x5c\xd4\x37\x85\x9d\xf1\xb4\x71\x95\xce\x00\xb8\x13\x85\x8c\xab\x61\x69\x75\xc7\x71\x3c\x48\xb3\x84\x2f\x10\x8f\xf4\x4d\xfa\x41\x3e\xae\xc5\xb2\x6e\x2f\xf7\x4d\x94\xe4\xc5\xb6\xf2\x2d\x63\x10\xe2\x0c\xd5\xb1\xd1\xa0\x00\x22\x12\xdf\xc1\x0a\x3a\x42\x44\xab\x78\xc4\x2e\xd4\x6c\x54\x19\x61\x8e\x87\xdd\xd8\x42\x74\xd5\x15\x33\x80\x0b\x15\x2e\x1f\x05\xd6\x35\x79\x94\xcf\x7a\x0b\x78\x84\x3c\xc3\xc6\x15\x65\x08\x31\xaa\xb5\x71\xc5\xf9\xb5\x7c\x60\xe3\x55\x06\x84\x62\xad\x30\x21\x3c\x9f\xe8\xe2\x37\x74\x2b\x09\xde\xc2\x82\x0b\xe4\x93\x44\x7c\xa1\x61\x4a\xc7\x8c\x8b\x34\x49\x87\x70\xf7\xa8\xbe\x00\xc1\xcb\xc7\x35\x64\xc4\x9e\xc5\xf6\xb2\x5d\x15\xc1\x4d\xd1\x43\x69\x79\xb5\x72\x55\xf3\x1c\x27\x51\xb1\x8b\xfe\xae\xc2\x92\xe1\xca\xdd\x07\x7d\xaf\x5f\x29\x24\x30\x77\x38\x96\xd0\xed\xf2\x62\x36\xa6\x81\xda\x50\x97\x78\x7b\xa2\x2c\xba\xbd\xe3\x3d\xe4\x0e\x20\xd0\x51\x30\xf8\xc9\x44\xd7\x52\x9a\xc0\x36\xcb\x59\x0a\x0c\xfd\xfe\x0a\xbd\x1a\x8c\xc0\x16\x8a\x1d\x60\xea\xdf\x9e\x28\xa0\xfd\x39\x55\x64\xfc\x0d\x5b\x3c\xda\x5a\x54\x5c\xef\xf3\xf3\x9c\x58\xec\xee\xf8\xd8\x1f\xd0\x7c\xe9\x06\x96\x06\x00\xfb\xff\x51\x2d\xfe\x7f\x4e\x17\x66\x26\x8a\xba\xef\xb2\xc6\x58\xde\x6e\xc0\x9a\xee\xa7\x52\xb4\x21\x35\x91\x96\xe2\x5d\x7b\x4f\x7d\xe3\x7b\x0a\x0d\x13\x8e\x0b\xd4\x50\xf7\x2d\x79\x18\xa6\x8b\x5c\x2e\x3a\xac\xc8\x72\x94\x0d\x31\x6c\x2b\x14\xa1\xb7\x74\xe8\x73\x51\x75\x7c\xf9\xfd\x09\xd7\x8c\xb7\x71\x4f\x34\x4d\xdd\x0f\x4d\xb6\xe2\xe2\x9c\x26\x07\xf1\xb8\x9a\x73\x58\x8d\xec\x8c\x0a\x61\xce\x6b\xee\x42\xb0\x15\xc1\x34\xdf\x50\xa0\xa7\xe5\x34\x0b\xed\xa3\xbe\xac\xf6\xfa\x44\xcd\x70\xbd\x4b\x25\x5b\xa6\xe9\xd2\xa1\x24\xd4\xb2\xd0\xe4\x3a\x8d\xb8\x1e\x6d\x76\x20\x70\xf1\x78\x6e\xd2\x86\xaa\x90\x7c\xc9\x54\xe5\x53\x8a\x17\xb7\x37\x0e\xe9\x0e\x3d\x76\xeb\x42\xa0\xf0\x97\xf5\xd8\xa1\x74\xbc\xa3\x2c\x7a\xcd\x4a\xba\x8d\x3b\xe4\x48\x85\x4f\x54\x87\x27\x1e\x47\xa8\xb7\xa3\x88\x08\x10\x4d\x85\x0c\x4c\xa4\xc1\x9f\x55\xe2\x26\x26\xb3\x2c\x11\xb4\x4b\x53\xd4\x28\xf9\x9a\xf7\x27\x7e\x62\xfb\x5f\x06\x7e\x56\xe8\xed\xcd\x55\xca\x05\xaf\x16\xe4\xf0\xac\xd7\xe1\x04\x01\x80\x7d\x88\xc5\xc2\x30\x2d\xd8\x79\xa6\x7d\x08\x3c\xb8\xfd\xc7\xc1\xd3\xd5\xca\xcf\x73\xed\x5f\xff\xfc\x4e\x12\xd4\x3a\xa2\xfa\x64\x4c\xe7\x8b\xed\xf8\x7a\xa0\xa4\x87\x98\x19\xc7\x35\xdd\xca\x20\x02\xe1\x20\x18\x70\x10\x33\x3e\x42\x35\x19\xfe\x77\xca\xdf\xc4\xbe\xf9\x0a\xc9\x55\x4c\x92\xf0\xd6\x7e\xee\x6f\x29\x84\xcf\xb6\x0e\x05\x11\x0e\x32\x58\x3a\x08\xd7\xbd\xdc\xff\x1b\x5f\xd4\xb4\x6d\xc2\x1b\x83\xe6\x34\x73\x19\x52\x74\xc1\x92\xc8\xc0\xde\xa2\xf0\x75\x9b\x40\x46\x78\xc4\x8f\xd1\x35\xc2\x94\xdc\x20\x7f\x8e\x20\x7a\x66\x4a\x11\x00\x4b\x67\x07\x4a\x23\x66\x17\x82\x06\x21\xf6\xa1\xd7\x8e\xa8\x01\x63\xc6\x5c\x74\xa4\xc7\x2d\x28\x68\x7a\x8e\xc2\x00\x87\xa5\x86\x2f\xe3\xb7\x8a\x3b\x39\xa5\xf6\x70\x0b\x66\x0a\xf6\x78\xdb\x94\x8c\x33\x7e\xf2\x86\xd2\x57\x78\xe2\x19\x2a\x9b\x21\x13\x46\x1d\x15\x6e\x67\x57\x87\xc2\x2c\x3c\x88\x87\x6a\x6c\xaf\x45\x26\x52\x94\x2f\x11\x4c\x61\x7b\xec\x9a\xb6\x5e\x12\x9b\xf3\x2e\x85\x7f\x12\xec\x52\x15\x56\xa8\x87\xca\xf0\x07\x0b\xef\xbe\x42\x6f\x8c\x6c\x36\x34\x89\x14\x4d\xb1\x73\x30\x40\xca\xc7\x9b\x6b\x8d\x2f\xed\x9b\x6b\x2f\x2e\xee\x52\xc4\x6f\xdf\x55\x46\xfa\x2d\xfc\xa6\x1b\x08\x2c\xdf\x9d\x0c\x04\xb6\x9c\x92\xd2\xcc\x54\x97\x16\x26\xde\x27\xcc\x74\xaa\x89\x60\xb9\x3e\x60\x6e\xb6\x4c\xcb\x57\x8c\xed\x7b\x3a\x50\x36\xfe\x7c\x2d\x31\x27\x16\x20\x9b\x47\x3d\x9b\x84\xeb\x2d\x3d\x06\x71\x56\x7b\xd4\xb3\xae\xb3\x4b\x1c\x25\xce\xc4\x62\x49\xa0\x3f\xcf\xc7\x1d\x6f\xac\x4c\x5c\x44\x43\x93\x45\x48\xb1\x80\x1e\xc4\x6e\x57\x4c\xda\x0b\x1c\x73\x5e\x53\xad\xb8\xe5\x2c\xb2\xcc\x5f\x03\x4f\x35\x4b\x2e\x93\x8f\xa7\x0d\xc1\x46\x2f\x7a\xed\xb5\x75\xd7\xc3\x41\x0e\xf2\x96\x9a\x70\xbb\xac\x60\x85\x37\x6b\x9e\x6e\xef\xde\xf6\x28\x36\xeb\x6b\x19\xb1\x12\xb5\xd4\x68\x26\x57\xc4\xf8\xa4\x01\xb3\xb5\xd8\x1e\x58\x23\x9c\x7d\x32\x3a\xe0\x8b\xc3\xd0\x0d\x15\x6b\xd8\xd0\x57\x2e\xc6\xd9\x4a\x94\x83\x31\x80\x7b\xd6\x78\x63\xd2\xc0\x6e\x6c\xba\xa6\x71\x1c\x25\x5c\xba\xe0\x64\x44\xb3\x85\x9e\xa9\x51\x96\xa9\x01\xe8\x15\x9b\xe5\xdb\xf0\xa6\x01\xc4\xda\x8e\x46\xa5\xf8\x2d\x3f\x9b\xf7\xe1\xc4\x77\x9d\x2e\xea\x07\x71\xa5\x16\xad\xbf\xb4\x70\xa0\xbd\x62\x49\xd8\xfb\xe5\x8d\x2b\xe5\x03\xd8\xb8\x12\x78\x7d\xf4\xd8\x66\x86\x26\x32\x3d\x71\xbf\x2a\x91\x9f\x69\x68\xdc\x52\x44\x6e\x0b\x45\xd6\x72\x9e\xfc\xa3\x34\x88\x1e\x77\xd0\xa8\x2c\x93\xba\x0f\x2f\x24\x5c\xa9\xac\xaa\x26\x30\xad\x89\xd3\xa4\x4f\xaa\xf6\xe8\x45\xff\x07\xa5\xa0\x0f\xe1\x09\x11\x4e\xd8\xed\x4a\xa0\xd1\x6a\x75\x1e\xe9\xb4\x12\xef\x3a\xad\x45\x25\x32\xd3\x1b\x87\x28\x46\xb8\x69\xa9\x72\x99\x4b\x25\xaf\x61\x24\xaf\x6b\x43\x93\x23\x79\x11\x30\x97\x92\x6e\x03\xc4\x02\xaf\xe1\xba\x9a\x63\x4c\x13\xfb\x6c\xf9\x3f\x68\xac\xbd\x8d\x52\x10\xe2\x8a\x3b\xf8\x3c\xe2\xcd\xeb\x88\x7a\x79\x46\x46\x0d\xf6\xde\xa1\x78\x45\xc0\xa1\xe5\xaf\xa3\x25\x7c\x5e\x53\x2d\x6e\xed\x94\xce\x06\xb1\xcb\x43\x04\x35\x32\x77\xab\xa6\xfc\x7f\x01\xeb\x8f\x80\xe5\xfd\x89\xe7\xbe\xc5\x1a\x72\x5c\x11\xa5\x51\x47\x5a\xfd\x00\xad\x2e\xa4\x1a\x3b\x3b\xca\xf7\x70\x2c\xcf\xcd\x57\x72\x57\xcc\x99\x40\x8f\x1c\x55\xc0\x33\x1c\xaa\x23\xbc\xfe\xeb\x89\xc7\x8f\xad\x0d\xd2\x74\x24\x12\xd9\xc8\x05\x5f\x57\x93\x83\xaf\x37\xee\xfe\xcc\x2e\xdb\xcc\x26\xa1\x0b\x92\x14\xef\x8e\x3b\xa9\x54\xba\xd3\x51\x01\xd4\xb7\xa3\xa4\x2f\x6f\x47\x80\x90\xba\xb1\xdd\x8f\x12\x4b\xfa\x38\x08\x12\x8e\x28\xf9\xb5\xff\xe1\x43\xfd\x10\xb7\x82\x09\x1b\xee\x1f\x9d\x57\x64\x6e\x5b\xa8\xe5\x8f\x10\xe5\xcf\x9a\x66\xc2\x88\x18\x4b\x44\x64\x7d\xb5\xad\x35\x55\xd5\xb6\x56\xe7\x59\xdd\xd2\xeb\xc7\xe9\x90\x27\x65\xbc\x24\x30\xcc\xa4\xe4\xc9\xfe\x99\xc6\xa5\x61\x24\xa6\xd4\xf2\x6f\x1d\xe3\x84\x43\x01\xd6\x49\x2f\x41\x81\x95\xae\x39\x9e\x54\x14\xaf\xdf\xc0\x0a\xe2\x93\xca\xd4\x46\x68\x93\x62\x37\x5d\x2f\x9c\xf8\x06\xfa\xff\xae\xe3\xb3\x67\x51\xb4\xb5\x10\xef\x4a\xfb\x87\x16\x0b\x4f\xdc\xd0\x02\x81\x13\xbc\x1f\x78\x5a\x50\x66\x73\x77\x4a\x2a\x5e\x84\x6c\xcb\xd4\xa1\xe3\x4f\xdf\xa6\xa5\x8a\xe3\xed\x18\xff\x90\x01\x53\x5a\xb7\xd8\x81\x7f\xd9\x48\xc1\x99\xdb\x6c\xd5\x79\x45\x44\xa9\x00\x88\xf3\x71\xad\xe6\x30\x3f\xcf\x8b\x2e\x93\x12\x24\xcc\xcf\xfd\x40\x83\x85\xe8\x71\xe0\x7e\xb6\x4d\x1b\x54\x5e\xdd\xa4\x0b\xd6\xcc\xb1\x40\xf1\x18\x1e\xab\x60\x92\x06\x76\xb8\x5b\x09\xe0\x62\xba\x1d\x0b\xf2\xb1\x8e\xe2\xfc\x01\x74\x14\x86\xe7\x49\xf2\xeb\xb4\x43\x7f\xf7\xa9\xa9\x82\xb3\x6d\xc3\x48\x3f\x2c\x07\x53\x1a\x22\x74\xfa\x0b\x7a\x03\x78\x1b\xe8\x7c\x22\xcc\xbd\x1d\xe8\xd1\x3c\x0a\xc2\x59\xd0\x97\xb5\x4d\x1a\xb8\xe4\x5e\x6e\x67\xb6\x6b\x71\x7f\x82\x1a\xf3\xad\xe5\x8b\x4d\x1a\x91\x79\x61\x92\x5e\x17\x7d\x09\x84\xc1\x17\x95\x98\xd1\x45\xa5\x1e\x90\xd8\x3e\x0d\x27\x23\x60\x80\x15\x02\x72\x0c\x2e\x01\x42\x1d\x32\xae\xed\xe1\x12\x51\x12\x0e\xa4\x69\x20\x55\x6c\x2f\x07\x7c\x49\xb5\xcd\xe3\x34\x1d\x0d\x52\xe1\x51\x11\x13\xa2\xec\xfa\x6f\x4f\x7c\x05\xe5\xbc\xd3\x32\xcc\x6c\x91\x31\x14\x49\xb1\xe7\x3e\x54\x2a\x0e\x0f\x27\x9f\x69\x28\x68\xf7\xa2\x3c\xcc\xa2\x61\x94\x98\x22\xe5\x46\x99\x63\x16\x51\x3a\x7b\xda\x84\x65\xf6\xb5\x19\xc5\x52\x80\xf1\x63\x5c\xe8\x2d\xc2\x21\x8b\xfa\xd4\x93\x6a\xe2\xb8\x58\x4b\xb3\x95\xed\xe5\x2d\x39\x74\xac\x0b\xfe\x4a\x5f\xb1\x20\x3a\x0b\x0a\x02\xbd\x13\x31\x2c\x36\xe3\x9f\xe1\xbd\x03\xe3\x30\xd3\x79\xd2\x63\x9c\xf3\x28\x77\x06\x0c\xb7\x7a\x1a\x9e\x88\x4f\x6a\x95\x96\x7d\x73\xfb\xda\xb1\x5d\x46\x15\x1a\x77\x78\x4a\xdd\x6d\x9d\x36\xee\x39\x8f\x4b\xae\x18\x4a\x94\x48\x44\xbe\xb8\x41\xd2\x65\x64\x6d\xd6\xf2\xf0\x60\x94\x22\x45\xf1\xd3\xe7\xce\xc6\xc9\xa6\x49\x45\x47\x35\x52\xce\x05\xba\x17\x38\x1c\xc5\xa6\x8c\xe1\x7c\xa7\xed\x17\xaa\xfb\xf0\x0b\xb5\xe4\x7a\x26\x8e\x4d\xde\xf2\x15\xa0\x1b\x81\xea\x33\xdf\x68\x8c\x10\xcd\x72\x16\x85\x26\xe1\x79\x31\x27\x6c\xe9\x3c\xca\x6c\x47\xcd\x63\xdf\x9f\x78\x39\x72\x13\x17\x36\x4b\xa0\x34\x50\x2e\x07\x2e\x5a\xd0\xf6\x95\x02\x86\x87\x8c\x20\xfb\x11\x8c\xab\xc2\x05\x67\xfd\x59\x15\x11\xdf\x53\x59\xcf\x65\x25\x1b\x7d\x58\x8f\x12\xed\xe8\x78\x6f\x60\x0f\x15\x69\x86\xe0\x4f\xf0\xe8\x2d\xa7\xfe\xf0\x8d\x86\x39\xc7\x76\xcf\xc2\x47\xf1\x6b\x65\x5a\x7a\x45\xa3\x75\xab\x5c\x3d\xb5\x8a\xb1\x03\x17\x0a\x8b\x85\xbf\x9f\xf3\x9a\xb8\xe8\x72\x8d\x17\x72\x7e\x9e\x82\x69\xca\x39\x3c\x35\x03\x13\x50\x20\x7e\xbe\xaf\xb4\x92\x74\x97\x3e\x4c\xc7\x49\x61\xb3\x7c\x1c\x15\xf4\x56\xf1\xd7\x37\x03\xcf\xec\x72\x53\x37\xe9\xcd\xc8\x66\x3b\x3d\x67\x0f\x37\x29\xb1\xa6\x7e\x86\x27\x88\x45\x73\x98\x62\x38\x64\x8a\xf7\x27\x4a\xdb\xf2\xb2\x16\xb0\xb8\x31\xf1\x58\x67\xa0\xf7\x79\x9c\x10\x76\x1c\xf9\xf0\x4f\xf5\x10\x7d\x7d\xe3\x3d\x57\x9a\x29\x13\xc5\x00\xf7\x23\xb2\xc5\xba\x60\x25\x3e\xa5\x99\xf5\x56\x53\xa1\x37\x1f\xa4\x6b\xbc\x53\x90\x61\x32\x52\x97\x4f\x6a\x79\x2a\xb3\x7f\x2e\x8f\x73\xc1\x68\x22\x42\x67\xbd\x10\x3e\xa9\x0f\xe1\xec\x5b\x62\x03\xe1\x78\x45\xb8\x92\x22\xea\xa0\x0a\x3b\x31\xb2\x61\x54\xa6\xac\x56\x8f\x79\x5d\xae\x00\xe0\x1a\x12\xb8\xf5\x32\xa3\x72\x61\x23\x1c\xf7\x4c\x47\xc1\x7f\x67\xa6\x0d\xea\x02\x5d\xbb\x9c\x66\x98\x78\x11\x73\x49\xb1\x9f\xe3\x88\x71\xfb\xe5\x3a\x59\x65\xac\xe1\xed\x1d\x6f\x6a\xfa\x66\xd5\xee\x50\x12\x0e\x77\xe9\x33\x32\x75\x58\xde\x00\xec\xf3\x0e\x44\x32\x12\xd3\x95\x06\x1a\xc7\x37\x27\x4a\x7b\x12\x78\x47\x24\xd8\x4c\xc9\x22\xf3\xb8\x35\xfe\xa9\x17\xf7\x53\x6d\x1f\x3a\x93\x4a\x10\xf7\x8c\x06\x7b\x9d\xa9\x2a\xe2\xa6\xab\x36\x5b\xd7\xc9\x39\x86\x03\x91\xe4\xb6\x3a\xbe\xa7\x71\x6a\xa2\x35\x32\x11\x3f\xfa\x34\xfe\x03\xd5\x02\xfa\xa0\xc9\xf0\xed\x6f\x77\xd3\x71\x7f\x50\xb4\x54\x48\xc5\x61\x94\x34\x4a\x1b\x1a\x4d\x51\x4f\x80\x7e\x52\x44\xf5\xbe\xeb\x42\x8d\x45\x5e\x72\xe9\x30\x1d\x0e\x99\x75\x13\xce\x0c\xdd\x71\x27\x8b\xe3\x47\x9d\x66\xa6\xa2\x92\xf4\xb9\xff\xe6\x1f\xce\x78\x1f\x89\x80\x03\x0f\xec\x82\x16\x1e\x3c\xde\x20\xd9\xf2\xaa\x79\xed\xb5\x75\xfa\x35\xd4\xfb\xef\xab\xee\xd4\xa9\x89\x52\x89\xad\x2f\x53\x6a\xd6\x46\xc5\xa0\xf4\x61\xf3\xf3\x9c\x8d\xa1\x34\xc1\xc7\x0e\x18\x96\xd9\xd1\xb8\x1b\x47\xe1\x36\x45\xcb\xf3\x00\x01\xb7\x44\x2a\x0d\xb4\x98\x42\x81\xed\x6b\x73\xe7\x1d\x7a\x88\xd0\x5e\xdb\x4a\xdb\x86\x44\xf5\x02\xad\x41\xda\x1b\x7f\xff\xe3\x1d\x35\x24\x02\x41\x5b\x04\x09\xdb\xa6\x8a\xc1\x4b\x53\x6b\x9b\xe4\xf9\x47\xca\x5d\x83\xe2\xed\xc3\xc0\x8f\xe6\x60\xac\x02\x9b\x86\x33\x58\x3c\xd9\x07\x6a\x46\xfe\x9b\x9a\x03\x64\x4b\x67\xeb\x67\xdd\x6c\x97\xc2\x3b\x9a\xac\x17\x25\x26\xce\x67\x34\x32\xfa\x56\xa0\x5a\x97\x47\xaa\x63\x2b\x75\x7f\xb4\xd4\x2e\xd2\xbe\xc5\x13\xdf\x27\x1e\xee\xaa\xba\xda\xab\x2e\xe0\xa3\x19\x7a\x22\xb4\x23\x5a\x0b\x18\x63\x16\x32\x40\x2c\xfa\x58\xc7\xf3\xa5\xdc\xc7\xae\x75\x61\x8b\xd3\xfb\x9c\x51\x78\xbd\x1c\x53\xc9\x34\xb2\xc7\x8a\x38\xf4\x97\x22\xcf\xdb\x52\x7a\xf8\x7e\xbb\x15\x69\x61\x62\xe6\xed\x60\xee\xbe\xc0\xa3\xa0\xeb\x1b\x87\x08\x42\x72\x92\x01\x56\xba\x5d\x4e\x93\x78\x0b\x78\x10\x91\xed\x33\xae\xdc\xa9\x44\x95\x37\x27\xab\xd5\xdb\x2d\xc8\x04\xc2\x15\x3f\x32\xf5\xb6\x2e\x2a\xec\xb0\xe5\xff\xec\x92\x82\x54\x5e\x0a\x1e\x57\xc4\x4e\x79\x01\x83\xe4\x38\x7a\x9c\x90\xf6\xb1\x89\xa7\xa6\xec\x5b\x81\x85\xc5\x90\x80\x85\x63\x85\xa6\x05\x1f\x2b\x60\xd8\x28\x8b\x20\x90\xfa\x82\xd7\x6a\xf1\xba\x2d\x8a\x61\xc7\xe4\xb9\xcd\x08\xa9\xb8\x6f\x8e\xef\xee\xcb\x8a\x10\xe7\xcb\x81\xe6\x00\x1c\x0e\xd3\x5e\x54\xb0\x4d\xc4\xaa\x42\xcb\x00\xd6\xed\x2d\x2c\x00\x9e\x8f\x50\x00\xdb\xcf\xa7\x6b\xe5\x3a\xd9\x60\x6b\x8b\x65\x3d\x3b\xa5\x2e\x02\xc5\x76\xcf\x3c\xdb\x51\x5a\xbd\xd8\x93\x52\x3d\x7e\x46\x35\x92\xf2\x51\xea\x45\xb0\x37\xa8\x41\xb9\x71\xe1\x23\x99\x13\x8b\x41\x96\xae\xcd\x2a\x66\x21\xea\xe6\xe0\xc6\x5a\x70\x18\x28\x4f\x5c\x99\x28\x98\xd4\x11\x87\x62\x5f\x8e\xcd\x5a\x3e\xa3\xc6\x67\xef\x4c\xbc\xd1\xe7\x1a\x37\xd2\xc3\x27\x3a\x52\xdb\x5b\x1e\x2b\x79\x16\xdc\xe8\x5d\xc5\x41\x75\x77\xb2\xa9\xc1\x33\x3f\xdf\xfe\x4f\x1e\x9d\xf1\xaa\x8d\x10\x9b\x86\x8f\x61\x92\x12\xfc\xc7\x55\xec\x65\x6c\x0d\xa8\xcb\x22\x4a\xbb\x04\xbb\x81\x52\xe8\x86\xf2\x89\xe7\x83\xad\x9f\x95\x5e\xbd\x8a\xea\x7e\x56\x63\xb8\x2d\x7d\xfb\x78\x9d\x1c\x3b\x7c\xf9\x23\xc8\x95\xf5\x2c\x2b\x2a\x17\xd7\x26\xde\x7e\x9f\x53\x63\x32\x71\xf1\x7c\x4b\x97\x67\x37\x0d\xcd\x7a\x66\xee\x24\x2d\xec\x76\x3f\xe1\x7e\x72\xa2\xa1\x41\x54\xb1\x40\xf8\xf6\x1f\x27\xbe\xd4\x0a\x0a\x40\xb4\x8b\x4e\x51\xc0\x09\x77\x7c\xbc\xe6\x33\x68\xb6\x55\xa1\x89\x75\x83\x4d\x38\xd6\xeb\x44\xf2\x2f\xb7\xfb\xcc\x45\x2e\x14\x43\xb4\xbe\x85\x63\x48\xbc\xcc\x60\x9c\x77\x4d\xd2\xcb\xc1\x78\x2d\x38\x56\xd5\xf7\x67\xce\x06\x91\x4c\xdd\xad\x4c\xdb\xd0\x3e\xa5\x68\x94\x34\x4a\xf2\x3c\xda\x67\x88\xd8\x6f\xea\x75\x78\x41\x71\xd8\xff\x31\xb5\x7d\x64\x4b\xd2\x6f\xc2\x69\x30\x47\x15\xde\xf2\x56\x25\x37\x77\x4e\x33\x92\xee\xc4\xfb\xc4\xe3\x64\xae\x57\xf8\x99\x0d\x72\x6c\xb8\x64\xd1\x7f\x83\xb1\x7f\x62\xea\x27\x14\x4e\x4f\x14\x0a\xf8\x4d\xbc\x27\x69\x25\xa9\x69\x4e\x53\x44\xf9\xf2\x3a\x6f\xcf\x45\xb7\x3c\xfd\x48\xfd\x25\x95\x4d\xf2\xc8\xac\xcd\xb7\x29\x2e\x19\x1e\xb6\x45\x0e\xff\x00\xef\x01\xd0\x13\xaa\xcf\x0b\xe5\x21\xad\x66\x69\xef\x6e\x76\x64\x98\xf0\x5a\xb5\x89\x03\x4a\x3a\x52\x57\x3f\xc4\x7a\x51\xfb\x90\x01\x85\x5f\xdb\x7d\x31\xf9\x3e\x6d\x42\xa4\x1b\x77\x15\x6f\x36\x73\xe0\xf1\x1f\xa9\x8e\xff\xa5\xc0\xb7\x7d\xef\x2a\xc1\x07\xb3\x6a\xc3\x96\x82\x62\x31\xf3\x80\x4c\xfb\xaa\xee\x51\x6c\x56\x53\x00\x87\x84\x39\xa1\xe5\x59\x14\x2a\x15\x10\x9b\xac\xcf\xaa\x39\xd8\xff\x5d\x43\xd8\x6e\x6b\x69\xe1\x63\x13\x0d\xa8\xdb\xd2\xf1\xbe\x76\x39\xb6\x43\x4f\x71\xec\x10\x67\xfe\x3d\xd4\xdb\x3e\xe5\xd6\xca\xec\x30\xcd\xcc\x47\xc3\x86\x3f\xaa\x81\xf3\xea\x38\x2f\xa2\xd0\xce\xa8\x19\x9d\x63\xca\x1d\xbd\xa5\xdb\x7d\x3f\x08\x7c\x5e\x3f\x48\xd3\x38\xea\x9b\x84\xf4\x84\x9c\xfb\xaf\xfe\xa6\x7e\x32\xa6\x1b\xb2\x4c\x24\xac\xe4\x3b\x9a\xdc\x95\x4d\x12\xff\x4f\xa0\x54\x66\xeb\x32\x80\x0b\x07\xa0\x09\x61\x3c\x5f\x99\xa3\x7d\xf2\xf8\xdc\xf7\x9b\x92\xc4\x22\x3d\xc4\x93\xb9\xa8\xf9\x1f\x51\x28\xe0\x23\x4d\x88\xa9\x9e\x5d\xb5\x31\x8a\xff\xca\x2c\xbc\x47\x1f\xe3\xe3\xfa\x38\xc8\x62\x7b\x7e\x9e\xa6\x6b\x99\xcd\x90\x96\x1f\x9a\xa7\xdf\x0e\x94\x5f\xe2\xc1\x59\x04\xcc\x27\x94\xd4\xfc\x19\xf0\x57\xc9\x1c\xa7\x6a\xc4\x1e\x57\x13\x3c\xf7\x26\x3e\xbd\xff\xf3\xc0\x13\xb7\x4e\x1b\x54\xaa\xda\x34\x6c\xda\xb7\x8e\xa0\x01\x97\x03\x38\x3d\x1f\x7f\xc4\xd0\xd2\x30\x12\x8e\x37\x14\xf5\x6e\x29\x44\xc4\xad\xda\x67\x1c\xde\xf6\xd5\xa8\x55\x1a\x2f\xe1\x0e\xd6\x44\xc2\x0a\x1c\x6e\xc6\xc5\x78\x98\xa0\xed\xc1\xe8\x90\x89\x27\x74\xbe\xaf\x52\xbe\xd8\x82\xcc\x71\xc6\x5f\xf1\x43\x45\x99\xc6\xc2\x64\xb0\xe1\x77\x5c\x90\xd0\x1f\x9b\x0c\x52\xff\x12\x4e\x92\x8d\xc0\x6a\xbe\x89\x97\x51\x91\x03\xc6\xca\x7d\x6f\xa2\xf3\x75\xcf\xc7\xfc\xea\xb8\x87\x68\x56\x11\x12\xba\x3e\x5c\x6d\x87\x95\x79\xed\x5a\x14\xc7\x51\xd2\x4f\x6c\x9e\x43\x82\x17\xa0\x51\x70\x2b\xf0\x71\xad\x12\x44\xc3\x20\xf4\x39\xac\xba\x26\xe8\xb7\x47\xae\x59\x93\x17\xdb\x3d\xa2\xfa\x4d\xc5\x88\xcd\x16\xa7\xc2\x10\x8c\xbf\x3a\xa6\xf9\x6e\x6e\xd0\xea\x11\xa8\xa8\xbf\xdd\x81\x30\x33\x08\x77\x71\x79\xd1\x7c\xac\x5e\x62\x91\xe6\x39\x6b\x32\x3a\xaa\x49\x45\xd4\xa2\x8d\xc0\xb2\x41\x7a\x8b\x28\xf4\x7a\x05\xa2\x5c\x2e\x17\x90\x37\xbc\xa9\x80\xfb\xf9\x9a\xb5\xa3\x4d\x86\xa3\xe5\x14\xb1\x2e\x2b\xee\x02\xf6\xb6\xc8\x65\xb7\xd6\xe0\xe3\x8b\x8b\xdc\xe5\xe6\x96\x3e\xd2\xb4\xbb\x95\x6a\x7e\xcb\x09\xd7\x9e\x68\xaa\xcc\x0c\xd2\xb8\x47\x32\x1e\xbe\x2c\x35\xf1\xc9\x01\xf5\xc6\x04\x56\xbb\xab\xd3\xd0\x5c\x59\x36\x79\x31\xe3\xe6\x79\xff\xee\x23\x1d\x7f\x23\x28\xb6\x30\x7f\xac\xca\x4e\xf7\x1c\xd8\x4f\xc4\x34\x4e\x0d\xb8\xbc\x45\xd4\xe0\xee\x4f\x34\xb6\xf0\xb4\x36\xa7\xbb\x3b\x0d\xf3\x12\x51\x92\xa4\xab\x9e\x3f\xd5\xd1\xd1\xbb\x40\xa2\x2e\x33\x5d\x1a\x8e\x7e\x66\x45\x40\x4d\xe8\xf6\xcb\x4b\x15\x6e\x79\x5a\x60\x22\x32\x25\xa5\x77\x88\xba\x0d\xa2\x11\x2a\x99\x88\x18\xbe\x45\xcf\x8a\x61\x86\x55\x28\x92\xa7\xc1\x0f\x07\x3c\xfa\xcd\x6c\x1c\x13\xf5\x05\xf7\x9a\xa4\x74\x7a\x51\x6e\x4d\xce\xc5\x16\x17\xd4\xb8\x78\xfa\x52\xad\x82\x47\x12\xf4\xc2\x73\xce\x63\xad\x81\x37\x89\x8d\x8d\xc7\xe5\x74\x9c\x15\xd6\x62\xed\x3a\xca\xe1\xf9\x05\xd7\x43\xa7\xad\x2d\x04\xa1\x8a\xfa\x38\x8a\x0b\x99\x72\x74\xe4\xb1\xa5\xc9\xa8\x93\xc7\x66\x76\x39\x0d\xc7\x39\x65\x7a\xa2\x24\x5c\xfe\x1a\x1f\xab\x80\x75\x25\x4a\x98\xb7\x4b\xda\x05\xa5\x1f\x40\xd7\x4b\x38\xbc\x00\x87\xb9\x8f\x60\x90\xff\x0b\xdb\x43\x6a\x96\xf2\xaa\x7a\x36\x8f\x32\xd3\x8d\x41\x2d\x85\x3f\xbd\xa7\x9e\xc7\x55\x45\x73\x75\x6c\xb3\xaf\xdb\xb7\xd4\x3e\x38\xf7\xc2\x63\xbe\x59\xf2\xb3\xc0\x8b\xa0\x82\x16\xc5\x75\x5b\x17\x0e\x08\xac\x14\x91\x23\xd2\x0f\xe0\x70\x50\x6d\xbd\x0a\x13\x8c\x56\xee\x0f\xd1\x22\xad\xf0\xd2\x70\xe1\x9b\xae\x0e\xad\xd7\xd6\x94\x5c\x87\x80\x9c\xe8\x35\x88\xb5\xdb\xa5\x58\x19\xb7\xfb\x96\x12\x67\x64\x5c\x21\x42\x55\xda\x95\x8b\xf6\x48\xf1\xe3\x2c\x5d\xb0\xd0\x6b\x54\xd4\x05\x9b\xe0\x90\x5d\x12\xe1\xae\xc8\xb7\xe3\x45\x08\x7c\xbe\x49\x74\xc0\x84\x91\x89\xe3\xf5\x19\x3f\x4c\x8e\x07\xef\xf2\x6c\xf7\xfa\x4f\x29\x84\x75\x64\xbd\x62\x06\xba\x8c\x5c\x19\xe4\x13\x2d\x03\x14\x0e\x6c\x6f\x0c\xa4\xed\x0b\xdc\x21\xb9\xaf\xba\x25\xf7\x55\x30\xdc\xb3\xe1\xf3\xdb\xbc\x42\x0a\x82\x6c\x01\xe6\x7b\x3c\xe5\x91\xc0\x97\xd4\xb8\x66\x25\x13\x3f\xde\x68\x7d\x61\xe9\x1f\x63\xb8\xaf\x51\xf1\xf5\x69\x55\x07\x49\x63\x3b\x5e\x89\x34\xd8\x66\x23\xf0\x35\xab\x0d\x45\xff\x53\x26\x8e\x7d\xdb\x8b\xd7\x1f\xf1\xc8\xd7\xf3\x5a\xdb\xfb\x94\x9a\xe4\xc5\xbc\xb2\xd0\x15\xd1\xfb\x46\xe3\x75\x4b\x47\x0d\x02\x6f\x55\xd3\xe2\x9e\xc4\x35\x19\xf7\xfb\xb6\xe0\x4a\x1d\x92\x86\xdb\x4a\x14\xfd\x87\xb8\x19\x78\x8c\xfb\x0a\x62\xd6\x8f\x5e\x1b\xa6\x28\xf4\xcb\x1c\xb6\xcf\x6c\x8f\xd7\xa2\xd8\x7d\x73\xed\xb4\x6b\xa3\x9c\x50\x4c\xe5\x45\x39\x0e\x42\xe1\x31\x19\x8d\xe3\xd1\x8c\x12\x04\xf8\x89\x82\xea\x7d\x43\x53\x99\x4d\x55\xba\x64\x0f\x99\xb0\x88\xd7\xa9\x2a\x0b\x23\x03\x68\x2a\x1f\x07\x0d\xb3\xcb\x0b\x07\x28\xfd\xc5\x3b\xbd\x87\xa7\x25\x23\x2c\xe5\x0e\x46\xca\x8a\x39\x78\x26\x52\xa3\x2b\xc1\x06\x7e\x64\xda\x72\x75\x01\xc6\x82\xb3\xb0\x20\x76\x23\xdc\xdb\xef\xd1\x45\xc0\xd3\x9f\x20\x26\x59\x44\xba\x4c\xb7\xc1\x23\xe9\x81\xd7\x8b\x63\x2c\x10\x36\xe0\x2f\x02\xc5\x02\x77\x0d\x46\x8d\x3f\x1f\xa8\xc9\xc7\x47\x90\xe2\xcb\x74\xe8\x6e\x45\x06\x9e\xad\xcf\xa8\xf8\xf0\x97\x74\xfd\xf8\x3a\x84\xb3\x32\x1f\xaf\x98\x42\x92\x68\xd5\xc6\xd2\x1b\xe2\xb8\x32\x50\x9a\x97\x77\x7c\xed\xc1\x9a\x9e\x09\x07\x78\x8d\x9c\xfa\x1f\x57\xb5\xe3\xe3\x81\x14\xeb\xd7\x46\xa3\x99\xf2\x71\xc1\x9f\x5d\x52\x0b\xe4\xdb\x58\x56\x22\xf1\xe3\x1b\x97\x66\xdc\x1f\xe7\xc5\x63\x58\x8e\xcc\x29\x1f\xf8\x66\xcc\x2d\x5c\x92\x23\x7f\x9a\x5f\xe0\x7e\xdb\x37\x11\xdc\xf2\x89\xd6\x0e\x38\x36\x51\xb4\x14\x27\xd4\xe0\xf3\x25\x0d\x1d\xfa\xba\x42\xbe\xa0\x63\x84\x4c\xe3\xa2\x62\x9d\xa7\x22\x13\x5f\xe7\xb2\x31\xdb\x95\x5d\xbf\x5b\xed\xe9\x3a\xdd\xb3\xd3\xfa\xbd\xde\xa4\xdf\xc0\xb3\x07\x58\x9d\x8f\x9d\x77\x42\xd5\xc2\x49\x49\xe0\xbb\x77\x51\x25\x85\x8f\x6b\x72\x2e\x7b\x16\xdb\xd1\x70\x94\xa5\x23\x9b\x29\x0e\xa6\xb3\x8a\x83\xe9\xac\x32\x2b\x76\xd5\x66\xeb\xdd\xb4\xb7\xbe\xa3\xfc\x5b\x94\x5a\x8a\xea\x50\xd2\xd2\x8b\x12\x56\x31\xe3\x30\x42\xf0\x0f\x94\x38\xe9\x65\xe5\xf6\x2e\x61\x49\x22\xcc\x7e\xb4\xa3\x46\x4a\x36\x14\xb5\x46\x77\x9c\xb3\x5a\x14\xbe\x01\xc3\x93\x7c\xdc\x44\x2c\xe5\xd6\x23\xa2\x57\xec\xd6\x33\xf4\x29\x47\xb6\xe0\xee\xe0\x3b\x0a\x69\x65\x0f\x8d\xd2\x4c\x58\xf3\x9a\x50\x2f\xaa\xdc\x4d\xec\xb1\x95\xfc\x46\x97\xd5\xfd\xa2\x1c\x9a\x24\x8a\x0d\xd8\x22\x84\xf0\xb1\x7c\x1a\xb0\x8a\xe8\x5a\xe1\x53\x33\xd3\x86\x0a\xd0\x7e\x61\xb4\x6a\xf9\x32\x0a\xf8\x33\xf8\x58\xcd\xea\x53\x0f\xc1\xf6\xa8\x50\xec\xc8\x48\x15\x33\xa9\xea\x37\x9f\x0b\x14\x4e\xf3\x5c\x13\x4f\x2a\x21\x24\x08\x3d\x23\x74\x67\xe5\x55\x6b\xbd\x1f\x49\x2b\x94\xe3\xe9\xf5\x32\x9b\xe7\xdc\xc3\x45\x81\xe4\x1c\x6d\x34\x3e\x0e\x3e\xae\x51\x70\xb9\xcd\x10\x64\xe7\xdb\x4a\xe3\x29\xc0\x70\x5a\xbe\x22\xff\xeb\xe7\x1f\xbe\x4b\x3b\xcb\x31\x80\x3b\xee\xaf\x1f\xd7\x42\xf1\xe7\xdb\x9f\xf9\xfc\x6f\x2c\x7d\xfe\x9f\x2c\xce\xfa\x38\x8d\xe9\x01\xf4\x40\x10\x56\xf8\x3b\x04\xd5\x17\xd8\x9f\x2f\x2d\xc5\x9f\x4b\x33\x6b\xe2\x4a\x6b\xf9\xeb\x9a\x49\xec\xeb\x6a\x32\x85\x86\x2f\xc0\xcc\x25\x86\xa3\xbc\x58\xb1\x41\x0e\x2f\x6b\x46\x65\xf8\x38\x5b\x05\x30\x1d\x14\xd0\x03\x26\x7b\xe8\x33\xcf\x3f\x4d\x0b\x03\x09\xd2\xa3\xd3\x4a\x8d\x6f\x98\xa7\xc9\x76\xcd\x2c\xea\xfd\x05\x6e\x8c\xd9\xc9\xf1\x20\xe1\x23\x50\x32\x11\x92\x29\x4d\x51\xaa\x50\x59\x69\x36\x2c\x83\xac\xed\x5e\x7b\xe5\x0e\x2d\x19\x04\x96\x3c\xfb\x8c\x3e\xe2\x19\xad\xeb\x87\x9e\x16\x7e\xe8\x7d\x3c\x22\xfe\xab\x26\xe2\xe5\xd1\x38\xeb\x8d\x91\x57\x89\x68\xb7\x1a\x04\xba\xac\xca\x66\xbd\x28\x0f\xc7\x79\x1e\xa5\x49\x4e\x26\x07\xae\xef\xff\x65\xec\xcd\x82\x24\xc9\xb2\xeb\xb0\xaa\xc8\xcc\x5a\x7a\x5f\x39\x10\x8c\xa2\x82\x32\x8a\x4d\xca\x1a\x6d\x04\x49\x81\x14\x7e\x22\x50\x95\x83\x9e\x2e\xe3\x64\xa7\x65\x15\xaa\x89\x36\x99\xa9\x5f\x78\xbc\x8c\xf0\x4e\x0f\xf7\x18\x5f\x32\x3b\xdb\xa4\x1f\x9a\x3e\x64\x32\x7d\xc8\xb4\x90\x34\x09\x12\x01\x0a\x26\x02\xa0\x08\x61\x86\x00\x06\x20\x96\xc8\x99\x01\x66\x30\x98\xad\xf7\x65\x7a\x99\xda\x2b\x2b\x33\x6b\xaf\xea\xda\xb3\x64\x7e\xcf\xbd\xef\x5d\x4f\xf7\x36\xc3\x9f\x7b\x55\x46\x84\xfb\x5b\xee\xbb\xcb\xb9\xe7\xb4\x48\x84\x08\x86\x85\x33\x11\xd2\xfb\x48\x0e\xae\xb4\x54\x7a\x9a\xd7\x7f\x31\xf1\x8d\xb2\x90\xb6\x73\x1d\x14\xb3\x47\x24\x5d\xe7\xdc\xc6\x45\x42\x4b\x8b\xdb\x28\x85\x6b\x7a\x44\xc9\xef\xef\xcc\x5e\x3c\xf3\x4c\xdb\x04\x4b\x71\xb2\x12\xd9\xbe\xd3\x74\x54\x0a\x5c\xb3\x2e\x59\xfb\x80\x5b\x5f\x7f\xf7\x31\x2f\x69\xf2\x29\x3d\x88\xa4\xf7\xca\xd7\x13\x84\x04\xf9\x05\x72\x12\x2b\x79\xe8\xf3\x4a\x3c\x73\x0a\x6d\xa9\x98\xdc\x1b\x1d\x45\x4b\x89\xea\x0a\x17\x5f\x3b\x8a\xbb\xef\x4e\x47\x85\x0f\xa7\xb4\x96\x2d\x37\xac\x4a\xc1\x87\x0c\x28\xb3\xda\x4f\xb4\x7e\x9b\x32\xfb\x9d\x07\x3d\xdd\x92\x7d\x92\x7e\x05\x63\xca\xac\x1f\x32\xb1\x34\x3b\x82\x97\xf6\xdd\xd3\x3f\xc0\x19\x8b\x45\x76\x5d\x1b\xac\x8f\x26\x0a\xa3\x72\x6b\xe2\xdb\x7b\xbe\x3f\xf1\x49\x18\x16\x70\x44\xbc\x0d\x79\x2d\x4c\xfa\xa7\x14\xeb\x21\x5c\x61\xe9\x40\x09\xc4\x5b\x5f\xfc\xa7\xbe\xa4\xe2\x9a\x91\x3e\x54\x54\x46\xfb\xd6\x28\xad\x88\x38\xe6\x2e\xce\x32\x09\xcf\x68\x4e\x64\x1c\x74\xc6\xa6\x58\x0a\x2b\x49\xd6\x2b\x3a\xc9\x7a\x45\x71\x96\x67\x63\x1b\x14\x91\xc9\x93\x34\x6b\x79\x5c\xfd\x8f\xe8\x81\xf9\xba\x02\x77\x0e\xad\x06\x9a\x72\x8c\x20\x2a\x37\xaa\x3c\x9f\xd3\xf0\x73\x73\xe4\x7b\x5f\x40\x7d\x04\xfb\xf2\x61\x54\xf9\x60\xbe\x7f\x7a\xcd\xa7\x17\x9e\x82\x9b\x8f\x31\x7b\x80\xdc\x05\x18\xc9\x47\x69\x9f\xb9\x66\xc5\xf2\xfc\x82\xef\x78\x0e\x45\x14\xa9\x03\x96\x2f\xe0\xf4\x3e\x5c\x87\xea\x45\x44\xd7\xdb\x2c\x3f\x2e\x45\x2b\x1a\x48\xb1\x27\x9e\x4a\xed\xaf\x77\x15\x55\xe6\x83\x6b\x8a\x10\xf9\x91\xae\x8a\x5a\xaf\x29\x82\xe1\x8f\x6a\xb6\x65\x6e\xae\x9d\xaf\x06\x09\x92\x08\x2f\xf3\xa4\x22\x7b\xc8\xd7\x4d\xd9\xc3\xcc\x86\xaf\xbb\xec\x21\x17\x0a\x95\x14\xc5\x96\xca\x26\x04\x66\x64\x89\xdf\x13\x51\x27\xd0\xba\x2e\x3e\x72\x78\xbd\xef\x50\x8a\x90\xcb\x7c\x0d\x2c\x3c\x87\xdb\x26\x08\xec\x38\x27\x33\x33\xad\x09\xe8\x8f\x61\xf3\x4a\x74\xea\x23\x29\xb6\xaa\x18\xb8\xd3\xca\x63\x19\x25\x45\x9c\x13\x05\xa1\x0e\xe2\x16\x0e\x1c\x66\x17\xf4\x2a\x3a\xe3\x55\x78\x37\xef\x6e\x34\x10\x81\x7e\x57\xda\x5a\x69\x28\xf8\xaf\x68\x7f\xc8\x75\x9d\x56\xa0\x3d\x4c\xc6\xb6\x3f\xa5\x36\xed\x26\x4c\xb2\xe2\x74\x9f\x65\xff\xfb\x76\xc7\xbb\xc0\xc1\x32\x93\xe9\x4a\xa5\x9e\x9e\x0c\x49\x4b\xa0\xb0\xa5\x0d\xda\x7b\x12\x67\x1c\x51\xaa\x70\x2d\xbb\x79\xe3\x5f\xa3\x0f\xca\x2f\x57\x0a\x2a\x39\xb0\x06\x4a\x92\x64\xde\x49\xbe\x88\xe1\x37\x11\x31\x66\xa0\x4e\x8e\x47\x46\x24\xc7\xc9\x62\xbc\x0b\x3c\xa0\x5d\x0a\xf0\xb1\x68\xb2\x61\x98\xc4\x33\x8a\x1c\xf8\xcf\x61\xc6\xb0\x15\x50\xe5\xc3\x3b\xbc\xa5\x5a\x5b\x4f\x4d\x2a\x62\x9b\x4f\x29\x4a\x8d\x71\x94\xa4\xc6\xe9\x25\x33\xdd\x22\x4d\x85\x50\x2f\x3e\xa9\xb2\xfd\x03\x13\xb9\x35\x3c\xe7\x30\x27\xf4\xe5\x7c\xa3\xdb\xbb\x28\x29\x42\x68\x17\x2c\xe3\x6f\x76\x14\x3e\xf8\xd4\x44\xb5\x5a\xdf\x50\xc1\xc8\xf7\x60\xf6\xe0\x0b\x5e\xd5\x68\x53\x93\x3f\xd6\x12\x82\xc8\xaf\xfe\x14\x9c\x78\x2a\x13\xfd\xc3\xc7\xd6\x5a\x47\x5e\xd4\x27\xf5\xbc\x57\x90\xfb\xa5\x2f\xb1\xfb\x06\x01\x17\x18\x93\xeb\x64\x4c\x5c\xee\xc9\x0b\x07\xdc\x24\x70\x25\x9e\x64\x17\x6c\x05\x3a\xda\xee\x76\x14\x00\xe6\x8a\xca\xa2\x5d\x50\x32\x91\x1f\x81\x2b\x02\x36\xe4\x14\x19\x29\xd8\x23\x3e\x60\x70\xa4\xde\xaf\x13\x7f\x2c\xcc\x97\xa6\xda\x2c\x65\x5a\x79\x70\x13\x07\x29\xdf\xa8\x36\xfd\x91\x35\x59\x91\x5a\xe2\xe4\xe5\x06\x65\x95\xa0\xd9\x40\x7d\x5c\xba\x6c\x3c\x9d\xd4\x69\x98\x53\x91\xfe\xa3\xf5\xac\xf8\x95\xbd\x26\xb5\xef\xdf\xba\xa6\x73\x7c\x1c\xfe\x63\x8f\x6e\xa8\xe3\xa0\x08\xd0\xc5\x8e\xe8\xef\x3f\xee\x7a\x25\xc6\x8f\x69\x0c\xb4\x5a\x20\xcc\xfc\x1d\x85\xd9\xf9\x1b\x70\x04\xf0\x22\x90\xc7\x75\xee\x5a\xf9\x54\x12\x1f\xd2\x2c\x49\x7f\x7b\x83\x4c\x71\x64\xb2\xa1\x6c\x2a\x4c\xc7\xe6\xc4\xdb\x4d\x76\x8f\xb0\x15\xef\x2a\xd5\x2f\x22\x44\x89\xc1\x34\x8f\xf3\xe8\x21\x1c\x54\xb0\xab\x80\x53\xf3\xc7\xb4\x76\xe5\xf9\xc9\x83\x2a\x1c\x79\x00\xd6\x15\x01\xc4\x09\x95\x0c\xdd\xdb\x55\xb3\xc1\xca\x13\xc8\x40\x5c\x86\x9b\x85\xa3\xee\xbb\x18\x68\x04\x1d\xeb\x1d\x85\xb4\x39\x33\xf1\x22\x88\x48\x86\xf2\x27\x30\x67\xc2\x7c\xd1\x00\x96\xce\x92\x91\x5d\x19\x92\xce\xc7\xd1\x03\x8e\x51\xc3\xd3\x46\x6f\xea\x29\x1c\x23\xee\x73\x8c\x64\x9e\x90\xe7\xa2\xd6\x51\x08\x85\x22\x00\x5b\xe4\x8f\x26\x7e\xe3\xfe\x51\x13\x23\x88\x35\x69\x1c\xc6\x83\x06\x35\x61\x77\xe3\x9a\x4e\xc7\x36\xa5\x0e\xf3\x29\xd5\x9b\xd8\xf1\x68\x97\x3b\x5a\x8f\xe7\x8f\x95\xe8\x4c\x38\x32\xe9\xea\xb4\x77\x53\x4f\x76\x54\x17\xf5\x45\xa5\x9a\x78\x4d\x73\xd6\x6e\x29\x37\xa9\x57\xa4\xd6\x14\x41\x6a\x02\x46\x6a\x39\x4d\x75\x47\x95\xbf\x9f\xc2\x24\x6c\xe0\x3b\x0a\x86\x00\x21\x45\x0a\x32\xe0\x2e\x5c\x56\xcd\x55\x97\xdd\x53\xe6\x49\x91\x86\x59\xae\x5a\x23\x71\xa8\xf3\xf5\x9a\x3f\xfb\xc7\x61\xb0\x44\x4d\x8b\x62\x51\xbd\xe2\x2f\xc8\x38\x84\x08\x66\xe7\x16\x78\x69\xbe\x3d\x88\x92\x15\x51\xca\x07\x26\x85\x97\x3d\xdf\x34\x95\xed\xc3\x38\xcb\xc3\xbc\xc8\x2d\x67\x57\x81\xe4\x3b\xa6\x8e\xc3\x6d\xc5\x26\xf3\x99\x4a\x38\xd8\x65\x1b\xe7\xd9\xde\x4a\xbd\xd6\x0f\x36\x17\x55\x1c\x1c\xa6\x74\x15\xa4\x78\x5b\x65\xa4\xd1\xf8\xfb\x96\xa3\x2b\xbe\xda\x54\x58\x0a\x4c\x9a\x4b\x1f\x28\x67\x55\x3a\x3a\xc3\xe2\xd3\x26\x51\x92\x8c\x50\x27\x45\xf8\xbb\x6b\xcd\xd7\xa5\x77\xa9\xee\xe5\xc5\x24\xb5\x01\x95\x00\xdd\x57\xb2\xd1\x63\x25\xdb\x89\xef\x94\xda\xdd\xad\x0b\x80\x44\xe1\x32\xef\x08\xa0\xfb\x90\xba\xe4\xeb\x06\x4c\xc8\xcb\xed\x3c\x35\x81\x18\x7a\x41\x17\xd2\x0f\x0a\xec\xd0\x6f\xb7\x71\x64\x56\xf7\x95\xf3\x2f\x68\xdb\x72\xfe\xf1\x5c\xe8\x23\x10\x1a\x71\xcd\x60\xa9\x09\xe6\x37\x55\x1b\xff\x7d\xa5\xe0\x07\xd2\x63\x11\xea\xf8\x82\x8f\x17\xc2\x51\x11\xe5\x26\xb6\x49\x91\x45\xd2\x29\x0e\xdb\xf3\x29\xb6\x1f\xdf\xd4\xe0\x0c\x47\x0f\xcc\xb5\xc3\xb8\x1f\x2e\x87\xfd\x82\xa9\x9b\x14\x17\x89\x33\xdc\x9a\x2e\xd1\xe6\x79\x64\xb3\x3d\xbe\x44\x7d\x85\xc6\xce\x49\x8f\xb9\xa4\xfd\xb7\xe0\xcd\xbb\x94\xca\xc2\x01\xd7\xbd\xee\x71\x6e\xef\x55\x52\x61\x4b\x36\xcd\x08\xee\xc1\x8a\x23\x08\x2b\xe0\x52\xdd\x44\xe6\x1a\xa3\x72\x1a\x87\x9a\xc8\x75\x78\x2f\xac\xd5\xa5\x25\x8b\x73\x6c\x0b\x67\x2a\x86\xfb\x0a\x25\x9a\xe0\xb7\xad\x63\x2d\xf3\x7f\x68\xf9\xce\xdd\x6b\xbe\xe4\x38\x28\x40\x44\x7e\xf4\x80\xd3\xa1\xa7\x19\x13\x21\xfa\x46\x90\x87\x49\x07\x92\xe9\x96\x8e\x73\x15\x3a\x9c\xaa\xc6\x6d\x71\xfe\xa8\x56\x58\xd1\x00\xca\x0f\xf1\x5b\xc8\x25\xdd\x42\x70\x8c\xa1\x64\xfa\x05\x21\x3f\x2b\x27\x42\x8c\x1d\xad\x4e\xc7\x52\x52\xfe\x2c\x4e\xa3\xbb\xaa\xce\xfc\x3e\xde\x9d\x7d\x66\x95\x40\xdb\x98\xf8\x0e\x95\x8b\x9a\x82\x10\xe7\x17\x8c\xd9\x2d\xac\x0b\xc0\xae\x2f\xd5\xb4\xff\x67\x8f\xb4\xb3\x64\x3c\x0c\xb3\x3c\x0c\x4c\x2e\xe7\x3a\x8e\xde\x73\x13\xd5\xdd\x0c\x27\x09\x27\xda\xd9\x06\xf4\xf2\x7c\x3b\xfb\xdb\x91\xaa\x00\xb1\x3e\xa4\x68\xbf\xed\x8c\x9a\x5e\x98\x03\x95\xe2\x4a\x1a\xfa\xee\x3c\x17\xc8\xf8\xd8\xa7\x32\xfc\xb1\xc9\x66\xca\x18\x56\x1a\xd2\xca\xc7\xc3\xb0\xdc\x56\x70\xcd\xd3\x1d\x0f\x68\xfe\xb6\x06\x0d\xdc\xd3\x92\x3d\xa9\x21\x0e\x6f\xec\xf2\xd6\x9a\xdf\xb3\x17\x74\x13\xd0\x39\x4c\x2a\xd3\x16\x75\x55\xcb\xc5\x49\x7f\xe6\x58\xe3\xbb\x18\x15\x9a\xce\x41\xeb\x6a\xa3\xf5\xf3\x6d\x0b\x9d\x2b\xdf\x18\xfe\x51\x47\x75\xc3\x7f\x54\x83\x63\x71\x90\x49\xad\x4e\x9c\x8e\x82\x87\xc7\x3d\x7d\x7c\x53\xa1\xfe\x1d\x16\xa3\x56\xe9\xaf\x33\x8d\x13\x2d\x55\xa1\x74\x72\x18\xa1\x34\x11\x20\xb1\x12\xd3\x7d\x79\x1b\xfe\xb9\xc4\xf5\x7e\x87\x8d\x4d\xba\x04\x4e\xa9\x79\x4f\xa6\xe9\x00\xa0\xf5\x52\xef\xc2\x81\x76\x92\x86\x36\x76\x2b\x0b\xa8\x51\xf8\xa5\xdc\x7b\x8e\x37\x10\x76\xff\xa7\x54\x85\xd4\x46\xd4\x82\x99\xae\xaa\xfc\xfd\x71\x95\xbf\x3f\xee\x19\x34\xf3\x24\x58\x62\x00\xac\xa4\xca\x68\xe6\x9c\xc6\x8e\x3b\xf0\x2e\x2a\xda\xa2\x81\x19\xd9\x8c\xe0\xc5\x8c\x71\xc6\x29\x29\x28\xfb\xf2\x57\xf9\x9a\x48\x4c\x04\x08\xbd\xf3\xb8\x39\xf2\x62\x7b\x68\xa3\x51\x91\x0f\x5b\x3e\xa7\xc5\x21\x3e\xdf\x28\x34\x6a\x2f\x4c\x46\xb6\x4f\xc8\x32\x65\x13\x51\x8c\x12\x0b\xa4\x44\xa3\x86\x26\x35\x41\x6e\xd3\x0c\xf1\xa8\x93\x7c\x2c\x1f\x14\x76\x80\xa5\x08\xf8\x7f\x34\xf7\xd3\x87\x13\x0f\x9e\xdf\x54\x85\xb5\x7e\xb8\xb8\xc8\x55\x11\x7c\x0a\x44\x15\x7c\x5d\xab\x1e\xcc\x1e\x69\xc7\x61\x9c\xa3\xc6\x0f\x3f\xff\xbe\xf2\xf9\xef\xab\x6f\x0e\x8a\x60\x29\x49\xa6\xca\x1d\xc8\x15\x4f\x7a\x04\xa7\xe1\xe9\x4a\x36\x17\x1b\xd7\xf8\x5f\xa5\x6f\x75\xa7\x73\x70\xe4\xc5\xb6\xc9\x96\x5a\xbe\x2f\xf8\x03\x45\x52\xf5\x41\x43\x2b\xf4\xf3\xed\xa8\x48\x83\x61\x4b\xc1\x1f\x6e\x2a\x01\xe2\x9b\x2a\x18\x1e\x98\x90\xfd\x35\x9c\x7e\xff\x7c\xe2\x4b\x2e\x17\x74\x8f\x91\xe7\x68\xb7\xcb\xa6\x8f\x50\x80\xc5\x03\x68\x68\x45\x48\xe0\xa9\x3a\x36\x29\x5f\xc6\x7e\xc2\x2f\x20\xa8\xe1\x6b\xe5\x68\xf5\x6d\x64\x56\xf7\xd2\x41\xc2\x90\xff\x8e\x6a\xab\x9a\xf8\xea\xf1\x16\xc5\x82\xf0\x44\x79\x13\xc0\x05\x3c\xd9\xf1\x31\x1f\x4a\xb4\xd2\x93\xa5\x19\xb1\x22\xe2\xf1\x9c\x51\xa2\x64\xac\x74\x23\xb2\x98\x64\x03\x71\x40\x9c\xae\x68\xd2\xb5\x9c\xc2\xf8\x85\x8a\x83\x68\x62\x92\x85\x17\xa4\xd9\x69\x7c\x9d\x30\xb2\xf8\x0c\xcf\x6e\x98\x57\x56\x72\x9d\x28\x6a\x03\xd1\x51\x75\x90\xf3\xb9\x39\x46\xe5\xfc\x10\x4b\x03\x21\xce\x3b\x64\xf8\x71\xe6\x7e\xd0\x51\x2d\x57\x50\x15\xc5\xea\x5e\xa7\xf3\x97\xff\x68\xa2\x92\x69\x1b\x2a\xf2\xcf\xd3\x22\xcb\xad\x6d\xb5\x5e\x9a\x77\x04\x25\xaa\xc5\xf7\x6c\x6d\x51\xbd\x30\xd7\x5e\x34\xa1\x83\xf7\x23\x78\x82\xd5\xe1\x6b\x35\x24\x81\xc9\x6c\xb6\x97\x5e\x16\xb3\xf1\xf5\x8e\x6f\xf4\xd9\x50\xbc\x09\xdf\xd3\x84\xb4\x6f\xab\x36\xc6\x93\xf4\xa6\x48\xb5\xde\xd4\x12\x34\x4d\xfd\xcb\x87\x89\x11\xa5\xc8\x2c\xe4\x1d\x50\x56\xb8\x4e\xdf\x86\x63\x63\xa6\xeb\x97\x1c\x5c\x07\x1c\x13\x1f\xd6\x0c\xc1\xc1\x83\xed\x6c\x6c\x61\xcb\x5d\x81\x87\x1e\x18\x6b\xef\xa6\x1a\xe8\x63\x13\xdf\xcb\x33\x28\xc3\x84\x90\x2d\x8e\xb8\x66\x9e\xcb\xe7\xbb\x0a\x04\x97\xad\xd8\x94\x40\xab\x72\x6c\x51\xde\x5e\xce\x2d\x05\xd4\x06\xa4\x8e\x9d\x2a\x1a\x40\xe1\xbb\x6b\x80\x00\x8f\x4b\x1b\x2a\x3d\x4a\x7a\x18\x3d\x50\xa1\xb6\x35\x17\xca\xd0\x7e\x9a\xd6\x97\x83\x78\x94\xd3\x01\xef\x16\x76\x8d\xe9\xf7\x69\x3a\x90\x93\x6e\x8c\xa7\x7a\xb6\xbf\x98\xa4\x7d\x95\xf3\xff\xb1\xce\xf9\xff\x58\xf5\xa1\xf4\xcd\x6a\xb6\xcf\xab\xe3\x1e\xd7\xdc\x75\xa7\x3a\x0a\xbd\x79\xae\xe3\x73\xe7\x5a\xe9\xef\x1c\x9e\x12\x16\xf7\xdb\xd8\x6c\x1a\x66\x2d\xe1\x4f\x13\x9c\x6d\xee\x01\x32\x30\x48\xc3\xbc\x47\x6f\x08\x94\xdf\x34\x21\x5d\x70\xfd\x7b\xc8\x6f\x31\xb1\xaf\x02\xf3\x82\xe3\x16\x98\x22\x2e\x15\x39\x61\x19\xdf\x4a\x82\x6a\x25\xaf\xc2\x8e\x07\x34\xe9\x8e\xf7\x17\xe6\xbe\xd8\x52\x65\x47\xe4\xef\xa5\xe1\x51\x89\xce\x1b\x9b\xe5\x69\x52\x11\x9d\x56\xa9\x87\x53\x0d\x5c\xc5\xb3\xed\x30\x0e\x6c\xec\x9a\x6d\xa5\xd7\x59\x37\x41\xfb\xe7\x78\xee\xe0\x73\xd3\xba\xe4\xa5\x3c\x82\xef\x6b\xae\x49\x10\x80\x08\x73\xef\xe7\xf1\x30\xbb\x44\x11\xa1\xde\xe0\xb7\x83\x10\x1c\xdb\x80\x8b\x92\x62\x5b\x1f\x57\x6a\x64\x91\x0d\x72\xdb\x9f\xf6\x7b\x16\x4b\xd7\x75\xc7\x96\x9e\x01\x12\x16\x17\x3a\x8a\x73\xf5\x82\xf2\x75\x72\xf3\x9a\xcd\xf6\xd1\x6e\xe2\x66\xe4\x8e\x6a\x20\x3b\xa3\x10\x14\xbf\x5e\xa9\x5a\x68\xba\xba\x0b\x95\x46\x9c\x77\x71\x16\xc0\xc5\x3a\xa5\xba\x6f\xb5\xea\xd0\x20\xb5\x36\x5e\x09\xcb\xe3\xb6\x52\xb1\x73\x6c\x2e\x17\x6b\x44\xdb\x2c\x04\x48\x8e\x40\x9c\x47\xab\xb0\xa9\x32\xba\x8a\x23\x59\x15\xec\xbf\x52\x84\x55\x4d\xf5\xab\x13\xa5\xa9\x7e\x55\x79\xfe\x3f\xf3\x73\x7f\x5f\xe9\xfb\x33\x71\x23\xdf\x34\xe4\x3b\x23\x6b\xbc\x9c\x0d\x1c\xe2\xfb\x2a\xff\x7f\x81\x82\x54\xa1\x2b\xa8\x5b\x9e\xf9\xf6\x62\x18\x9b\x38\x08\x4d\x24\xc9\x39\x21\xce\xa7\x1f\x16\x22\x64\xe9\x5f\x35\x41\x50\x64\x9e\x74\x04\xe9\xb9\xd3\x4a\x8f\xe3\xb4\x42\xbf\xaf\x0c\xc3\xb1\x92\x1c\xd9\xec\xa8\x60\xa7\xde\xd2\x40\xfa\x4d\x60\xc1\xc5\x88\xc2\xff\xfe\x0c\x47\x28\xdf\x74\x9e\xac\x9a\x85\x57\x5e\x69\xbf\xf2\xca\xb4\xf2\xf7\x37\x79\x09\x60\xb3\xdc\x9a\x28\x90\xde\x2d\xd5\x1a\xb2\xa9\x96\xef\x28\x59\xb6\xc8\xfd\x3a\x76\xa0\x93\x3a\x58\x06\xde\xd2\x75\x53\xb9\x75\x7d\x5d\xa5\x1a\xc6\x26\xb5\x71\xbe\xc7\xb3\x10\x5d\xc2\xf8\x51\x8e\x76\x15\xdc\x3a\x7c\x4d\x14\x5b\xc8\x40\x9d\x99\xa8\x66\x92\xf3\x4a\xf5\x7d\xa6\xeb\xb2\xa1\x66\x95\xd4\xff\xa7\x14\xce\x75\x57\xd7\xc7\x4a\x9c\x10\x87\x55\xbb\xda\xc4\x76\x1c\xc6\x59\x12\x2d\x4b\x76\x12\x66\xf1\x38\x0d\x05\x5f\xab\x26\xfc\x61\xd8\xb7\x49\x91\xb5\x5a\x5f\xfc\xa7\x0e\xc5\xe7\xfb\x09\xb7\xd4\xbe\x19\xa7\x36\xb3\xa9\x10\x0a\x23\x8c\x86\x26\x13\x5f\xd7\x8a\x77\xe5\xe1\xec\x89\x20\xb0\xb0\xb8\x37\x93\x6f\x54\x6b\x41\x9c\x10\xaa\x47\x35\xe6\x2b\x87\xd0\x77\x53\x8f\xc6\x11\xf2\x02\x58\x31\x58\xff\xa0\x56\xe1\xeb\x0a\x2f\x52\x66\x62\xf0\x33\x6a\x72\x13\xc7\x26\x35\x7b\x84\xfd\xc3\x9b\x78\x2a\x46\xce\x63\x80\x95\x14\x91\xc7\xd4\x2b\xb8\x6b\xc7\x3b\x7d\x8c\xd5\x73\x39\xf4\xf2\xc8\x62\x62\x24\x45\xba\xf3\xab\x2e\xc8\x8d\xc2\x5e\x92\xc2\x65\x11\xb3\x58\x55\x3f\x2a\x7f\x1f\x4e\xd6\xad\x26\x80\x4b\xe0\x5b\x87\x58\x67\x4a\x11\xcd\x7e\x58\x5b\x12\x0b\x07\xda\x8b\x45\x1a\x87\xd9\x50\x86\x4d\xc2\x34\x9f\xba\xf9\xd4\x15\x29\x7b\x44\x00\x29\xb6\x01\x99\xdb\xfb\xd8\xc8\x7c\x53\x97\xef\x3e\xd8\x4e\xa8\xa3\x89\xd0\x5c\xc8\x5f\x1f\x57\x8a\x48\x57\x15\xd7\x7c\x5d\x01\xfe\xe8\x81\xb9\x76\xcf\x04\x4b\x59\x6e\x06\x96\x9c\x21\x18\xfa\xfb\xaa\x38\x78\x5f\x9d\x81\xc9\x38\x9f\xf1\xe1\x1c\x12\x2d\xd2\x35\xe5\x35\xf5\x4f\x6a\x2b\x82\x12\x14\xf0\x93\x0f\x77\xf7\x3b\xb4\xfd\x03\x4a\x1b\x88\xb9\x0e\x44\x32\xd3\x5b\xd4\xc7\xd6\x54\x68\xcb\x1c\xd3\xc8\x0b\xa3\x04\x88\xaf\xdd\xb3\xe6\x88\x3c\xfe\xf0\x29\xa4\xd1\xe4\xab\x14\x21\xd2\x0c\x41\x1e\xf0\x4e\x0f\x75\x35\x67\x4c\x3a\xa6\x82\x6c\x96\x4f\x29\xde\x64\xfc\x80\xee\x03\xc0\xf5\x19\x8d\x8d\x5d\xb2\xe3\x1c\x6d\x61\x87\x0e\x39\x2a\x4b\xcd\x6b\x59\xf3\x9a\xcb\x88\x33\x4b\x58\x82\x83\x65\x8e\xe8\xdb\x45\xf2\xa8\x89\x61\x62\x29\x0c\x96\x24\x45\x84\x46\xff\x4d\x9c\xd7\x7c\xe3\x60\xa2\x2b\x66\x30\x08\xb3\x21\x37\xdf\xa3\xd0\x8b\x53\x92\xaf\xc1\xc0\xe4\x70\x2a\xb9\x09\x8a\xc8\xa4\xac\x37\x22\x0d\xd9\xde\xea\xd6\x85\xff\x8e\xbc\xd8\x8e\x92\xc0\xb0\x02\xb7\x10\xc1\x7a\xbc\xff\x4f\x68\xba\xf1\x32\x9f\x39\x08\xf7\x62\xb8\x0c\x0e\x06\x60\x87\x1e\x22\x13\x8d\xfc\x24\xd3\xcc\x21\x2f\x3e\xb5\x56\x9a\x65\x58\xa8\xbf\x81\x6a\xb3\x68\xeb\x34\x74\xa3\x24\x45\xde\x4b\xad\x59\x6a\xe9\x64\x88\xd2\x53\x5f\xab\x55\xc7\x66\x8f\xb4\x47\x26\xcb\x4c\x90\xda\x2a\xff\xa5\x2b\x64\x6d\x82\x50\x98\x2b\x6f\x63\x78\x7c\x88\x1c\xdf\x50\xfa\x99\xb7\x34\x66\xe3\x1c\x70\x18\x12\x7e\xd4\x59\xec\xe6\x48\xcc\xd1\x99\x00\x91\xe0\x54\x45\xfc\x1b\x4d\x0d\xc2\x87\xdb\xbd\x34\xcc\xc3\x6c\x58\x51\x73\x82\xbf\x24\xda\x08\x0d\x94\x8b\x36\xce\x87\x45\x16\x9a\x6c\x94\x29\x0d\x6a\xae\xb0\xf0\x4d\x73\x0e\x96\x75\x64\x42\x51\x07\x11\xba\x67\xdf\xe8\xf8\xc3\x0a\xf2\xa2\x1f\x06\x9c\x11\x81\x61\xe6\x13\x06\x93\xfc\x36\x86\x88\xc9\x31\x35\xa8\x20\x1e\x4c\x7b\xf3\xc2\x4e\x17\xac\xd5\x9d\x8e\x57\xaa\xde\xb5\xa6\x9d\x8b\xb3\xd8\x49\x9c\x98\x48\xd2\x81\x89\xc3\xd7\x09\x45\x31\xa3\x34\xc9\x2e\xe3\xc8\x70\x2d\x46\xe5\xd3\x48\x8b\x91\xea\xb5\xff\x16\x2d\x71\x49\xc9\x34\xb1\x7c\x8d\x6c\x9a\x86\xcc\x00\x88\xb8\x65\x5d\x8b\xde\xac\x37\x52\xd3\x27\xab\x36\x05\xa5\x82\x64\x33\x5b\xae\xab\x76\x5d\xed\xbc\xd4\x86\xa3\x5e\x91\x66\x38\x4a\xe8\x89\x45\xf2\x95\x9e\x58\x34\x5f\xfd\x09\xfd\xaa\x09\x92\x5e\x4b\x85\x33\xc7\x54\x86\xf0\x98\xc2\x8b\xb0\x12\x92\x73\x52\x5d\x2b\xba\xab\x26\x4e\xad\xf9\xaa\xfb\xb5\xce\x03\x6e\x56\xe6\x5a\xbe\x3c\xb5\xa5\xf7\xe4\x56\x9d\xa0\x6b\xb6\x0c\x20\x4c\x8f\xad\x18\xbc\x28\x98\x0d\xbe\x56\xe1\x3e\xab\x78\xa3\xe6\x84\x59\x66\xe1\x39\xe4\x4f\x76\xad\xd1\x99\xcd\xd0\x41\xb2\x55\x48\xa9\x5d\x52\xd9\x87\xbd\x8a\xa7\x65\x57\xd7\x93\xe6\x0d\x52\xf3\x3a\xbf\xab\x12\x2e\x2d\x23\x52\x97\x90\x76\x52\xcb\x7f\xa8\xd0\xb0\x79\x5a\x2c\x2e\x9a\x02\xec\x55\x72\x80\xd1\x3b\x4b\x3f\xb0\x4e\x83\x05\x14\x79\x3c\xa8\xd6\x19\x43\x2c\xf9\x86\x1e\x5a\xf2\xfb\x34\x9d\x0e\x15\x59\x4e\x27\xf2\xd3\x7f\x42\xdb\x16\x19\xe0\x77\x68\xac\x70\x78\xed\x23\xe8\x86\x82\x88\x89\x4a\xd8\x3b\x13\x8d\x1e\xab\xe8\xb1\xce\xac\x55\x14\xd0\xc6\xa2\x0c\x00\x73\xf4\x09\xbd\x34\x5f\x43\x8e\x4d\x4d\xde\x97\x67\xdb\xcf\xb4\x5a\xcf\x3c\xc3\xb1\x3f\xfc\x2a\xbe\x56\xa9\xe6\x91\xcd\xc3\xa0\x88\xc8\x3f\x75\x18\xbb\x0f\xe9\x1d\xf8\xba\x46\xe6\xf7\x6c\x3b\x37\xd1\x52\x36\x55\xfa\xb3\x42\x56\xae\x2a\xae\xad\xae\x62\x7f\xde\x56\x14\xf7\xfd\x30\x03\xc5\xaa\xab\xfd\x38\xf4\xf4\x9c\xa7\x7f\xf4\xf6\x23\x30\xe3\x19\xef\xe0\x4c\x75\x2b\x8a\x4a\x34\x2f\x8e\x34\xc9\x45\x4d\xc7\x09\x78\x2b\xfd\x43\x3e\x94\xe8\x25\x45\xdc\x07\x4e\x13\x48\x9a\xd3\x34\x78\x7c\xed\xbc\xc6\x71\xb2\x24\x45\x1d\x78\x9a\xb7\x34\x5a\xe3\x56\x23\x51\x60\x56\x8c\xc7\x44\xb5\x77\xd4\x89\x4d\x4d\xbc\xdb\x78\xdc\x45\x79\xbd\x72\x0d\x47\xa1\x89\x85\x15\x49\xa4\x4e\xe8\x17\x70\x6e\xdf\xe9\xe8\xce\xb1\xda\xcf\x1d\x3a\xd4\x0e\xe3\xe5\x32\xf0\xa0\x6c\xdc\xac\x57\xce\xf1\x4d\x5e\x48\xd2\x4b\x9f\x67\x53\x6f\x67\x64\x5f\x0b\x65\x4f\x33\xfa\x5e\xe9\xd6\xff\x50\xd3\xec\xd9\x34\x0f\x17\x29\x18\x00\xd0\x0f\x0f\x76\x5b\x57\x58\x4f\xab\xee\xe4\xaf\x2b\x2d\xfc\xad\x89\x8f\xb6\x06\x45\x2a\x0d\xa8\x92\xdc\xa5\xf7\xe4\x9b\xa6\xec\xd9\x38\x4d\x02\x9b\x81\x59\x10\x1b\x7e\x5b\xf5\x79\x5f\x54\x29\xe4\x0b\x2a\xc2\x19\xdb\x71\x16\xc2\x7e\xc2\x65\xfa\x09\xfd\x21\x5f\xd7\x0e\xc3\x85\x03\x54\x15\x29\x37\x00\x0e\xc3\xf2\x1d\xa5\x35\x8a\xde\x91\x6f\x94\x6e\xca\xd0\x14\xd1\x8c\x22\xa4\xe1\x03\x87\x97\x22\x19\x60\x61\x21\x6f\x7d\x79\x56\xfe\x88\xbc\x25\x2e\x13\xeb\x9c\xf3\xb0\x48\x7b\xd0\xa8\x96\x04\xf2\x3b\xba\x61\xf6\x1d\x17\x32\xac\x0c\x13\x4f\x1a\x0f\x74\xdc\x09\x85\xdf\x3e\x51\x8b\x61\x0e\x1e\x84\xd4\x06\xbf\x15\xce\xea\x8f\xf4\xc1\xfd\x91\x62\x25\x5d\xb4\xfd\x3e\x11\xc5\xb9\x5c\xed\x71\x95\xa4\x3a\xae\xa8\x9f\x02\x33\x0e\x73\x13\x0d\x40\xbd\x79\x54\x34\x28\xfe\x60\xe2\xe1\xb6\x7f\x80\x96\x7a\xde\xc6\xd1\x73\x53\x94\x09\xc4\x0a\xdf\x9c\x78\x97\xf0\x82\x26\xc1\xb8\xd7\xe4\xc4\x55\xe8\x18\x90\xb2\x07\x62\x86\xaf\x4b\x2f\xda\xe9\xd9\x04\x09\xc3\x6d\xc2\x24\x66\xbd\x42\x9c\x36\xa7\x70\x0e\xf1\x4d\xa5\x5e\x6a\x97\xed\x9e\x8a\x88\x8a\x3f\x47\xde\xec\x78\x40\xd8\x1d\x00\xc2\xe0\x1f\xde\x9c\x28\x1e\xb3\x9b\xa4\x24\x21\xf1\x90\xa2\xbc\x8a\x4c\x9c\x81\xd8\x0b\x4e\xf2\x31\x54\xf4\x11\xb0\x9c\xc3\x13\xc1\xe4\xff\x99\xd2\x78\xfc\x08\x3f\x04\x67\x18\x5e\x12\x0a\x20\x6f\x63\x59\xb0\xa4\x82\xab\x43\x0f\x52\xb3\xec\x08\x9e\x9c\x22\xa0\x57\x07\x54\xac\x48\x03\x9b\x3f\xe9\x51\x82\x67\xab\x82\xf6\x9e\x8f\x82\x23\x0e\x58\x96\x27\x49\x06\x02\x47\xcc\x65\x3c\x9a\x6b\xe5\xfb\xa5\x2f\x39\x7c\x9d\x0f\x09\xd9\xd9\xc5\xfc\xb2\x2b\xca\x8d\x77\x04\xd8\x97\x86\x2f\x95\x30\xd8\xa4\x14\x8d\xe4\x83\x29\xf4\xe3\xd4\x32\xeb\x4e\x48\xe5\xad\x3c\xf9\x9c\x1c\x5b\x39\x96\xb0\xde\xdf\xed\xf8\xee\xfe\x29\x4a\xe2\x20\xcf\xfc\x40\x93\xca\x41\x31\x1e\x5a\xb3\x5c\xe1\xf7\x38\xa1\xdc\xde\x13\xb5\x3c\x2e\x89\x12\x9b\x20\xb0\x91\x4d\x59\xde\xdc\x05\x71\xbf\x83\xd7\xe0\x1b\x55\x10\x8d\x4c\x3f\xb4\x50\xd4\x87\xa3\xd4\xea\xfa\xb4\xfa\x75\xac\x7a\xe1\xf0\xa9\xab\x69\xb7\x17\x4d\x6c\x72\xe6\x6d\x71\x0d\x6c\xbe\x99\xad\x91\x09\x3b\x89\x56\x6d\x26\x5d\x6f\xdc\xad\xd8\xf1\x00\x07\xdd\xff\x9e\xdb\x74\x60\x63\xa0\xb2\xe0\x27\xdf\xa8\x60\xae\x2b\xe2\x09\x0d\xb9\xaf\xd4\x46\x36\xf6\x87\x38\x1a\x5b\xae\x28\xe6\xe7\x2b\x0a\xdb\x1e\xc6\x59\x91\x12\x85\x79\xb9\x42\x45\x56\x9a\xe0\x3f\x7c\xd3\x00\xe4\x9a\x2d\xbd\xc9\x65\xbb\xaa\xce\xd4\xf3\x4a\x7e\xe2\x7c\x23\xd5\xb5\x97\x24\x70\x48\x99\x05\x51\x03\x40\x4b\x09\xf3\xc2\xd5\x7e\xf0\xd0\xa1\x76\xdf\x2e\xda\x38\x43\xb0\x28\x9d\xfd\x6a\x9a\xde\x9a\x3c\xad\x79\xaf\x93\x3c\x04\xf1\xed\x0c\x8d\x00\x97\x5d\x94\x44\x11\x07\x48\x38\x77\xce\x2a\x9e\xb6\x6f\xeb\xc2\xdd\x07\xce\xef\x08\xe3\xa0\x48\x81\x64\xe0\x5c\x29\x0c\x04\xb6\x27\xf7\xbc\xd6\x9b\x39\xc7\x69\x32\x0c\x7b\x61\x8e\xa4\x1e\x6a\x14\xf0\x39\xf9\x7a\x22\x81\xf9\xc0\xe6\x8c\x94\x10\x20\x72\x8d\xa4\x7f\x9e\x6b\x8b\xeb\x93\x9d\xc5\xf6\x2f\xcf\xb6\x7b\x06\x9c\x64\x4d\xca\x0d\xde\xc4\x24\x61\xb4\xbf\xfc\x2b\x6c\xc0\xaf\xe2\xb1\xe1\x1a\x5c\xd7\x8d\x6c\x28\x63\x73\x01\x77\xa2\x42\x50\x70\xb9\x80\x33\x1e\x8d\xfb\x12\x9b\x28\x35\x86\x1b\x9d\x4a\x6b\x88\xe3\xc7\x0b\xd3\x91\xb8\x56\xb0\x3f\x27\xb4\xa1\x66\x3e\x34\x7c\xea\xd6\xc4\xa7\xe2\xe2\xd8\x2d\x65\x18\x67\xd0\x82\xf2\x75\x0d\xc7\x33\x7b\xa4\xbd\x6c\x42\x38\x33\xf0\x4c\x81\x4a\xe5\x6b\x8f\x9d\xb5\xe9\x28\xcc\x33\x90\x63\x89\x46\x5d\x05\x48\xa0\x1c\x38\xf8\xcf\x70\x9c\xf6\xb8\x34\xf5\xa2\x89\x83\x70\xb1\x88\x14\x81\xd3\x1b\x8a\xc0\xe9\x0d\x9d\x2a\x2f\xb2\xa1\xed\xef\x51\x64\x4b\xa0\xee\x73\x7c\xf1\x1e\x5d\x7e\x01\xd8\x68\x86\x60\xaa\xd3\xf4\x82\x82\x40\x9e\x9f\x68\x56\x9c\xd4\x3e\xaa\x64\x0b\xde\x9f\xf8\xc2\xeb\xc3\x14\x65\xca\x71\x45\xbf\x82\xa5\x07\x6e\x54\x2c\xe6\xd2\xfa\x49\x3d\xf2\xb3\xaa\xf5\xc3\x74\xb1\x96\x25\x2a\x9d\x5c\x87\x56\xed\xd1\xef\x76\x3c\xcb\x2f\xb3\x77\x0a\xea\x8b\x5e\x05\x56\x67\x03\x83\xa8\x5c\xe2\x59\x17\x44\x7b\x47\x27\x1c\x99\x41\x18\x63\xa3\xe3\x7f\xdf\xa0\xf3\x87\xaf\x55\x1f\x6c\x14\x7e\xa5\x08\xfb\x61\xbe\x3a\x43\x3f\x22\xbc\xca\xe5\x07\x05\x45\xdb\x7a\x61\x6e\xfb\x0d\x3a\x48\x15\x05\xf3\xbc\x03\xec\xfa\xe0\x38\x2f\x17\x43\x0c\xf0\xcf\xcb\xce\xb7\x53\x69\x8b\x77\x74\x8b\x76\xbf\x08\xa8\xad\x6c\x4a\x85\xcf\x67\x27\xbe\x3d\x1d\xf5\x43\xe9\xcc\xd5\xee\x4c\x98\x64\x14\x32\x71\x3a\x80\x2c\x12\x3c\x81\x6f\x6a\x3d\x93\x4d\xfc\x34\x2a\x7a\x77\x54\x1f\xf0\xee\xee\x23\x4a\x09\xdb\x2c\x59\x04\xc3\xec\xde\x74\x6a\x3c\x8c\xa2\xc0\x5c\xfe\x8e\xa8\x6f\x57\xf5\xbc\x7d\x11\x97\x25\x24\x30\xf3\xff\x0c\x76\x90\x89\x97\x3b\xbe\x2b\x79\x0b\x8b\x48\x25\x98\x5f\x76\xd2\x75\x3b\x73\x60\xa5\x83\x98\xc4\x41\x32\x0a\x73\xc3\xb9\x7a\x6c\xfc\xb7\x3a\xbe\xd3\xf4\xad\x89\xe2\xc7\xef\x17\xc1\x0e\x19\xe2\xbb\x5a\xa4\xb6\xae\xa1\x40\x5c\x27\x51\xc1\x89\xb2\xed\x37\x68\x82\xb7\xdf\xa8\xf9\xaa\x0b\x07\xda\x61\xdc\xb7\x3d\xf7\xed\x48\x13\x5c\x57\x4a\xd9\xd7\x6b\x61\x4e\x79\x6a\x0d\x8b\x78\x90\xae\x6a\x26\x05\xc4\x36\x7c\xdd\x40\xd8\x8f\x0e\x71\x82\x4b\x60\x90\x3f\xd5\x52\x37\x40\x45\x60\x5c\x4f\x56\xbc\x06\x7a\x4f\x41\xd0\x3c\xe6\x8b\x3d\xd4\xec\xdd\xd7\x74\xcf\x0f\xad\xf9\xc6\xce\x87\xba\x4a\x32\x32\xb3\xfd\x87\xbc\xaf\xfa\x2d\xaa\xee\xe0\x54\xda\x43\x09\x5d\x64\x3d\xfe\x47\xcc\x2d\xb6\xc4\x9b\x34\xb7\x88\x7c\xfe\x4f\xd5\xc6\x77\x4f\xf7\xfc\x5c\x82\x49\xe2\xaf\x02\x24\x48\x58\xed\xc8\x35\x75\x7d\x2a\xe5\x8b\xe2\x0b\xbe\x41\x69\x23\xb8\x7d\xdf\xea\xa8\x43\x40\x22\x1e\xac\xc7\x2d\x9d\x1c\xdc\xea\xf8\xa4\xef\xa2\x5d\xd9\xa7\xa8\x19\x8e\x63\x71\x8b\x54\x93\x27\x5c\x38\x4d\xbf\x03\x0b\x39\x4d\x2a\x70\x4e\x13\x72\x41\x02\x8c\x37\xd4\x40\x5f\x9f\xa8\xf4\xfd\xfb\x2a\xbf\xb4\x62\xcd\x92\x65\x31\xe7\xe7\x79\x22\xae\x28\x10\xd0\x15\x05\xb9\x34\x71\x5c\x98\x68\x6f\xcb\x09\x93\x73\x4b\x2d\xf7\xde\x74\x54\xf5\xec\xba\x16\x9d\x43\x48\xc8\xec\xd6\x13\x8f\x41\x6b\x75\x55\x58\xb1\xa9\x59\x66\x06\x83\xd4\x0e\x0c\x4b\x3f\xc3\x08\xcc\x28\x9a\xae\x99\x9a\x13\x3d\x37\x27\x39\x08\x1e\x67\xec\xdb\xbb\x1d\xa5\x40\x7f\x77\xf2\x74\x9d\x76\x65\x6e\x6e\xfe\xa7\xc9\x6d\x17\xa1\x40\x78\xf7\xcc\xaa\x8a\xe1\x77\x43\xfe\x8b\x2f\xf1\xfa\xb9\x07\x85\x5e\x27\x08\xb3\x70\x80\x7d\x88\x4b\x24\xe8\x09\xdc\xc4\xbb\x6c\x74\x04\x95\x40\xab\x89\xcf\x0e\x98\x10\xe6\x59\x23\x44\x27\x6a\x93\x5b\x1d\x1f\x8f\x80\xb1\x90\x33\x48\x48\xf2\x3b\x51\xbb\x72\x70\xb1\x15\xf6\xac\xa9\xcc\xe0\x69\x32\xfb\x4e\x3e\xb2\x9c\x0f\xa0\xd6\x77\xaf\x91\x73\x0b\x0b\xfc\x2e\x0e\x5e\x54\xaf\x31\xd9\x58\xca\xdf\xa0\x68\x46\x54\xb9\x7d\x09\x7d\xcf\x9a\xd2\x12\xfa\xde\xc4\xd3\xb4\xb2\xf2\x2d\xd2\x5f\x97\x54\x93\xcc\xd0\x14\xb1\xa0\x20\x34\xcd\x0a\x5f\x37\x45\xd5\xa9\x0d\x07\xde\xe9\xe1\x8c\x9a\xea\x1a\x3b\xe3\x52\x37\x83\xd4\x9a\xdc\x66\xf9\x34\x8d\x09\x8d\xd5\xbf\x7d\x1c\xe0\x7d\x4c\x15\x28\xc3\x91\x39\x9a\x59\xf3\x95\xb4\x0b\xce\x0f\x4a\x4d\x9e\x3b\xf4\x81\x1b\x7a\x57\x22\xde\x52\x05\x83\x7f\xf4\xb3\xff\x45\x4b\x13\xba\x94\x6f\x2f\x7c\x2e\xfa\x94\x8b\x92\x9c\xd0\x52\x92\x7d\x2d\x67\x02\x95\x20\xee\x12\x40\xcc\xf3\x16\xc2\x33\x97\xbc\x75\xbf\xf9\xfd\x89\xef\x37\xba\x4f\x5d\x8c\xf0\x7c\xd1\xfe\x20\xb0\x1f\x1f\xc3\x8c\xd3\xa4\x87\x2c\xf8\x82\x00\x3c\x7f\x8b\xac\x02\x5f\x57\x32\x0a\x8b\x61\xfe\x98\x57\x45\xfc\x06\x16\x00\x96\xd6\x77\x15\x76\xff\x7b\x70\x62\x71\xee\xac\x77\x54\x91\x74\x9b\x16\xb6\xc8\x18\x28\x10\xd5\xa6\xd2\x58\x63\x7e\x54\x24\x3a\xdf\x9f\x78\x5f\xe9\x32\xad\x4b\xbe\xc6\xea\xc5\x31\x0f\x12\x19\xfc\x07\x74\x79\x71\xc6\x6e\x76\x74\x3f\x31\x92\x14\xb0\x6a\xb7\x1b\x39\x9c\xc6\x1c\x07\x4f\xf9\xdc\xcf\x3a\x06\x1a\x2e\x3c\x42\x70\x56\x90\x9e\x68\x77\x22\x0d\xc7\x2d\x95\xa8\xbc\xac\xd0\xc4\x97\x9b\x9a\xba\x83\x94\x9c\x5a\x0a\xa3\xc5\xf3\x6f\x79\x9a\xca\x89\x02\x69\xfd\x64\xe2\x45\xdd\xb2\xa5\x55\x2d\x1d\xa7\x36\x97\x66\xaa\xeb\xdb\x9e\xc9\x41\x93\x86\x61\xbf\xdb\xd1\x14\x04\x13\xcf\x06\xf6\x43\x1a\x5d\x27\x7f\xec\x67\xed\x94\x52\x83\xb9\xd6\xa0\x92\xd7\x0e\x92\x9c\xd8\xf0\xca\x1d\x2d\x52\xa9\xfe\x04\x3c\xa7\x9b\xfe\xc3\xfe\x43\xbe\x7d\xe3\xa4\x78\x19\x2d\xa7\x3c\xfd\x01\x4e\x15\x0a\x1b\xe7\xff\x7a\xd7\x6b\x10\xe8\x5e\xdf\xed\x36\x68\x14\xd8\x72\xd2\xe3\x89\x64\x1b\x3d\x37\x1a\x8c\xb6\x71\x96\x20\xca\x7a\x64\xcd\x2b\x3d\xef\x27\x7e\x30\xf4\x49\xee\x5f\x93\x23\x75\x29\x8c\xfb\x6c\x5f\x84\x6a\x98\x3e\x2f\xe4\xc4\x3b\x3d\x94\x57\x5e\x69\x07\x51\xd1\xcb\x54\xf0\xfe\xe6\x44\x05\x26\x6f\x2a\x62\xf8\xc8\x14\xa9\x51\x40\x7f\x76\xa0\xf9\x46\x39\xe3\x8b\x66\x39\x49\x4d\x2f\x82\x7c\x03\x7c\x83\xbb\x64\x20\x1c\x29\x41\x39\x0c\xc2\x6d\xf0\x80\x5b\x0d\x7f\xe7\xa7\x68\xe0\x90\x12\xb8\x8b\xbf\x82\x9b\x82\xae\x43\xf8\x59\x77\x3a\xbe\xed\x08\xd6\x89\xfd\x57\xa2\xee\x92\xac\xfe\xd4\xfc\x8b\xc4\x85\xf0\x92\xcb\x11\x9e\x07\x98\xd8\x3d\x7c\xb9\x79\xdc\x4e\x2a\x0f\x21\x24\xef\x3e\xa2\x4d\x09\x87\xfd\xc7\xd4\x3b\xc1\x35\x71\x8d\xf5\x05\xa9\x09\x5a\x81\xfe\xaf\x89\x66\xac\xb9\xae\x34\xaa\x8f\x93\xbd\xc2\x5f\x7d\xca\x09\x32\x7e\x16\x2c\x60\xd8\x24\x70\x11\x62\x7b\xde\x55\x7d\xca\xcc\x92\x05\x83\x72\x47\xab\x20\xdd\x6c\xec\xef\x79\x26\x7e\x86\x4c\xb2\x70\x8c\x79\xd3\xb4\xe9\xb4\xa8\x33\x33\x2a\x6c\x34\xa5\xe8\xc6\x6f\xd3\xcc\x38\x04\x96\x83\x5c\xd6\x7b\x88\x08\x5c\x5c\xa4\xd4\x8e\x81\x93\x11\x52\x26\x1c\x11\x6a\x8e\xda\xcd\x0a\x5b\xe9\x23\xba\x3d\x25\x47\x3f\x07\x5e\xfd\xc7\x13\x8f\xf4\x03\x3a\x15\x47\x52\x0b\x8c\x14\x38\x28\xb6\xbd\x1c\x6b\x9a\xc4\x4b\x61\x6e\xb9\xf6\x8e\x24\x18\x37\xe4\xf1\x4d\xe7\x49\x85\xd0\x4a\xc6\x49\x6c\xf9\xc4\x95\x78\xea\xac\xe7\xfc\xf9\xed\xb3\xae\xff\x39\x2d\x48\x4b\x4c\x00\x1d\x8c\x3c\x52\xa8\xe5\xd3\x4d\x02\x6c\x23\x9b\x65\x69\xf6\x1c\xeb\x8b\xc2\x36\xfd\xcf\xd8\x3f\xf8\x14\x06\x48\xb7\x70\xb8\x2d\xe0\x23\xeb\xdd\x0d\x34\x54\x8c\x04\x74\x07\xbf\x54\xb8\x5a\xae\x37\xf9\x56\x2d\xf5\xf3\x6c\xdb\xae\x5a\x7e\x57\xf1\x2e\x14\x07\xc9\x05\xe7\x78\x8f\xcd\x6b\x45\x36\xa5\xd2\x48\x97\xb4\x95\xb8\xa8\x4e\xdc\x5d\x4e\x9d\x20\x32\x45\xdc\x4f\x57\x55\x8d\x07\x89\x21\x1c\x58\x37\x26\x15\x8e\x96\x9d\x66\xe6\xc8\x8b\x6d\x33\x1e\x47\xab\x30\xaf\x38\xb1\x80\x41\xe2\xeb\x5a\xdd\x72\xf6\x48\x7b\x14\xc6\x96\x10\x89\x8e\x4c\xce\x6f\x80\x4f\x27\x2a\x89\x8e\x9a\x24\x6c\xef\xbf\xac\xfd\xf6\xb3\xed\x9e\x8d\xc3\x01\x52\x62\x8e\x83\xd5\xf5\xcd\x5d\xa8\xfd\xf4\x2b\xaf\xb4\x97\x24\x77\xec\x14\x42\xcb\x9f\xe6\x9b\x26\x6d\xac\xbe\x35\x7e\xae\x98\xec\x5e\x75\x41\xbc\xa7\x64\x3b\xb2\xdc\xf6\x81\x44\x74\x29\x9e\xf2\xcb\xc5\x12\xf9\x08\x2e\x1f\x9a\xf8\x29\x55\xf3\x5f\x87\x7f\x01\x8f\xfa\x91\xae\xaa\x69\x3f\xda\xf5\xeb\xf4\x0b\x70\x7c\xe1\x3c\xb5\xb4\x72\xe1\x09\x65\xd8\x76\xad\xf9\x3c\xfe\x55\x9a\x08\x04\x4a\x0f\xad\x29\xb5\x48\xae\xe2\xa2\xef\xe0\x26\x5c\x6d\x97\xfa\x2f\xa7\x1b\xeb\xea\x11\xd0\x04\x40\xe4\xef\x89\x35\xaf\x5c\xb9\xab\x8b\x7d\x81\x55\x71\x5b\xd9\x96\x8b\x44\xd8\xc2\x3c\x1c\x54\x94\x81\xed\x05\x2c\x0a\x49\x94\x1b\x4d\xe1\xb4\x89\x92\x98\xa9\x0c\x91\xb7\x44\x03\x15\x5f\x77\xf6\x87\x24\x33\xf9\xb3\xed\x5f\x7e\x8a\x70\xa5\x2e\xfa\x73\xd9\xd0\x1b\x3a\x57\xbb\x4d\x85\x11\x5c\xef\xeb\x7a\x7e\xd1\xfb\x7a\x77\xfe\x8d\xae\xd6\x89\xbe\xaf\xc4\xc8\x6f\x20\xdc\x81\xc5\xbb\xa1\x19\x5d\x5a\x6b\xad\x7f\x22\xf4\x2c\x6f\xb3\xe1\x77\xe0\x57\x47\x10\x71\x7f\xa2\x7a\xd6\x60\x3d\x61\x92\x91\xaf\x41\x36\x7c\x3f\x48\x64\x31\xb9\x4c\x04\x24\x62\x44\x3e\x13\xf3\x59\x85\xf4\x6a\xa2\xb4\x12\x5e\x0b\xcc\xb2\xc9\x13\x50\x93\xe3\xb7\xe0\x99\x49\xd1\x40\xa1\xd1\x37\x6a\x15\x84\xf9\x85\xf9\xf6\xc8\x84\xc4\x78\xd3\xf2\x60\xc6\x73\x1d\xc5\x1e\x53\xcf\xf5\x08\x9e\x7e\xf4\x5c\xef\x39\xf3\x1c\x99\x0c\x44\x8e\xf0\xc2\x2a\x7d\xd4\xa2\x15\xe4\x05\x00\x17\xd3\xe4\x75\x1b\x7f\x6e\xef\x9b\x62\xdf\x1e\xa7\xd6\xd2\xb7\xa3\x1f\x62\xf7\x9a\x12\x08\x43\x66\x06\xde\xc0\x7e\x95\x29\x5b\x19\x86\xc1\xf0\xa7\x94\xfa\xda\xe5\x8e\x57\x4b\xfb\xdf\xe9\xcc\x44\x93\xf9\xd7\x3b\x8a\x7d\x86\xb7\x9b\xe3\xf5\x5e\x98\xf7\x05\x2d\x67\x26\xc0\xd9\x01\x14\xcf\x1e\xd0\x59\x89\x4b\x55\xae\x2d\xbc\xe9\xf5\x8e\xd2\x80\x7a\x7c\x4d\x71\xb4\x30\x6d\xaa\x74\x99\xd1\xb4\xcb\x76\xd1\xa8\xab\x7b\x1c\x8c\x23\x4d\xf2\xb1\x92\xdf\x7e\x90\x9a\x40\xb0\x3a\xae\xa1\x3a\x07\xdf\xe5\xc7\x58\x37\x4c\xce\x86\x48\xc3\x29\x19\x97\x01\xa2\x53\x4b\x3e\x38\x2b\x9e\x34\xf6\xbb\x20\xc5\x14\xc3\x73\x12\x0f\x88\xe5\x04\x5b\xf6\x1e\x38\x28\x39\x84\x56\x24\x04\xbf\xae\x49\x43\x05\x37\xc6\x77\x5d\x95\x3c\x86\x4c\x14\xb7\xe3\x4f\x14\x83\x00\xd3\xa7\x4a\x70\xde\x80\xfb\x5d\x49\xd2\x7c\x88\xde\x53\xcc\xc6\x55\x95\x0b\xaa\xf7\xf9\xcc\xcd\xb5\x17\xc3\x2c\x18\xda\x94\xfd\x87\x46\x60\x95\x12\x87\xcc\xb2\x24\x08\x15\x9e\xcd\xb1\x08\x79\xbf\xf7\x71\xb6\x0e\x88\xaa\x7f\xdb\x37\x7f\x3f\x03\xc8\x3b\x76\xd9\x37\xb4\xd6\x49\x10\xda\x38\x0f\xb3\x3c\x53\x2a\xc9\x7f\x4c\x1f\x84\xf1\xd8\xa0\x04\x07\x92\x25\x5c\xc7\x95\xb9\x2a\xa7\x97\xff\x43\xd3\x1b\x9f\x9c\x7c\x41\x69\x72\x42\x6c\x09\x35\x2f\x1c\x48\x58\x85\xf7\x15\xd2\xe5\x7e\xad\x49\xb3\x0c\x17\x57\xd0\x16\xe9\x20\xa7\x1e\x7e\xaa\xaa\x17\x49\xef\x55\x1b\xa0\x20\x29\xbd\xd4\x1e\xcd\xcc\x95\x23\xdc\x1c\x57\x72\x83\x8b\x49\x6a\xd3\x22\x8e\x2d\x13\xb0\x21\xa0\x39\x4e\x9e\x2f\x5f\x77\x7c\x67\x71\xdf\x06\x91\x11\x3e\xa6\xd9\x23\x4e\x26\xbc\xfc\x24\x5f\x77\x3c\x59\x43\x98\xa6\x76\x50\x44\x26\x0d\x05\x18\xf2\xbc\x83\x02\x94\x8f\xc9\xd7\x4d\x8a\x5e\x03\xc7\x5a\x81\x23\x04\x25\x03\xbe\x76\x89\xd7\x64\x71\xd1\x12\x08\x1c\x55\x39\xec\xa2\x13\x1a\x1f\x8d\xa2\xac\xe8\x49\xa8\x58\x71\x34\xde\xeb\xe5\x81\xae\xa8\x3e\x8a\x0b\x8a\xa6\xf8\xcd\x8e\xe2\xf0\xbb\x88\x96\x08\x14\xfb\x4e\x29\x80\xd0\xb7\xb4\xd8\xc9\xc5\x9a\x74\xd5\xb3\xed\x51\x12\xe7\xb6\x1f\x66\xc2\x62\x85\x1f\xdd\xd5\x55\x87\xd9\xae\xb5\xa7\xfd\x42\x8c\xc3\xc1\x80\xde\xab\x8c\xd4\x0e\x1e\x64\x48\xd8\x49\x5a\x65\xd2\x27\xe4\x49\x57\xae\x76\x76\xea\xf0\xfe\x9d\x76\xdf\x26\xaf\xad\xa6\x61\x2f\x89\x8b\x20\xb2\x61\xd0\xd2\x5d\x56\x2d\xc5\x58\xba\x33\xb1\x45\x95\xfa\xd4\x06\xd4\x73\xe7\x32\xe8\x67\x55\xbb\xdf\xd9\xcf\x3d\x55\xc6\x36\x19\x47\x76\x0f\xf6\x1d\xfc\x47\x64\x41\xe1\x17\xdf\x9b\x78\x23\x06\x47\x4f\x08\x70\x94\xf8\xd1\x43\x5d\xd5\x1a\x3c\xbd\xa6\x13\xbf\x76\x29\xa2\x55\x54\x5a\x3f\xe1\xd1\xf1\xb0\xe4\xba\x54\x61\x79\x44\x26\xb1\x9d\xaa\xca\x4b\xba\xc2\xd3\xae\xae\xd6\xa0\x54\x6a\x8f\x96\x78\x36\x09\x81\x09\xdf\xef\x84\xaa\x38\xb2\x06\x93\x34\xc7\xd3\xa6\xe2\x1b\x9a\x12\x44\x11\xa0\x3e\x16\x39\xa5\x9d\x63\x0c\x50\x91\x1d\x25\x59\x8e\xa0\x46\x9a\xd8\x7c\x5f\x67\x9d\x08\xc7\xf5\x78\xf7\x59\x01\x58\x3c\x03\xd5\x9d\xb1\xa1\x28\xbd\xb3\xdc\xef\x52\x81\xb3\x97\x0f\x25\x30\xf7\x46\xb0\x77\x18\xa5\x49\x02\x61\x1e\x9d\x99\xe4\xeb\x06\x1c\xdc\xe1\x76\x6a\xfb\x45\x50\xad\xd7\x7c\x32\x51\x1c\x0e\x9f\x74\x76\x76\x87\x1e\x3d\xd0\x36\x19\xf5\xb9\x0b\xe5\x8a\x47\x63\x62\x0c\x40\xb9\xf1\xbb\x0a\x60\x29\x2a\x14\xc2\x68\xc8\x6d\x0d\x34\xff\xd2\xe2\xd0\xf0\x46\x8b\x24\x40\x98\x4a\x41\x1b\x29\x8b\x2b\x9a\x58\x93\xa3\x77\x11\xe7\x7b\x44\xa9\x2f\x46\x51\xf6\x80\x07\x58\x9f\xa7\xa7\x54\x9a\x1d\x8e\x54\x7d\xa2\xc4\xce\x2f\x28\x02\xeb\xeb\x2a\xfd\x05\x11\x14\x56\xe3\x51\x90\xa8\x87\xe0\xc9\x23\x68\xff\x35\x1c\x1d\x00\x9d\x5f\xf0\xac\x53\x49\x14\x7a\xe2\x30\x1d\x2b\xe3\xc8\xb8\xac\xdd\x93\xf7\x3c\x60\x30\x49\xf3\xd4\xac\x72\xd2\x49\x1a\x21\x3c\x90\xaf\xde\xad\x30\x7b\xa4\x3d\x30\x51\xc4\x46\x4a\xdb\x4f\xbe\x56\xc4\xdd\x59\x98\x13\x27\x39\x5e\x6f\x77\x97\x4c\xa3\xa6\xa6\x94\x38\xb7\x61\xf1\xa7\xb6\x6f\x17\xa9\x7c\x7c\xf4\x80\x48\x31\x76\x2a\xba\x8c\x3b\x4d\xe8\xc2\x01\xd2\xe4\x31\x71\x6e\x05\x6d\xef\x30\x14\x6e\x43\x9f\x6d\x5a\x01\xfd\x30\x23\xee\x0f\x20\x08\x04\x68\xeb\xe1\x3d\xdb\x8a\xc9\xfc\x04\x66\x52\x12\x01\x4d\x51\x4e\x19\x2b\x53\xd1\x10\x96\x61\x0a\x61\x1c\x7c\xb9\x4b\x1a\xf3\x75\x51\xf1\x73\x82\x18\x54\x10\x0b\x0d\xa5\xa0\xb1\xed\xf7\x7d\x94\x2a\xac\x63\xe5\x43\x0a\x1d\xd9\x8e\xde\xc2\x43\x87\x16\xda\xcf\x4e\xfb\x28\xff\x5d\xfa\x63\xfc\x32\x12\xdc\x30\x08\xef\x69\x0e\xc3\xcd\xa6\x2a\x46\x18\x2f\x46\xbe\x4b\x0d\xcf\x8b\xc5\xc5\xd7\x0a\x57\x6f\x4a\xe3\x33\xa3\xfd\xed\x89\x86\x16\xd1\x37\xc0\xe6\x61\x5a\xf0\x47\x97\x27\x8a\xa4\xf0\x83\x26\xdf\x6f\x9c\x26\xcb\x21\x33\x3f\x20\x43\x7c\x1b\x33\xc1\x37\x1d\x9d\xff\x4e\xa2\xa8\xa5\xc5\xbe\xcb\xa1\x15\xc2\x78\xd7\x0b\x1f\x45\x76\x95\xf3\x2d\x2a\xad\x73\xd8\x31\xdd\x7a\x01\x4c\xee\x31\x8d\x07\x0f\x96\x5f\x0a\x97\x76\xba\xeb\xd7\xff\x55\xcd\xc1\xbd\x81\x74\x24\x9a\x80\xaf\x2a\xc4\xdc\x0d\xcf\x9f\xf0\xd5\xa7\xd7\x4a\x43\xa1\x10\x37\x0e\x64\xd3\x51\x09\xfe\x2b\x13\x95\x51\xdd\xa0\x93\x5d\x3a\xd5\x15\x8f\x8b\x49\x73\x96\xc4\x99\xf6\x3c\x52\x0c\x3d\xe1\x1b\x0c\xbb\x68\x9c\xd0\x97\x8a\xd2\x77\x85\x90\x77\x34\x9e\x51\x68\xc9\x2d\xf2\xef\xa4\xb8\xeb\x25\x4d\x6f\xeb\x66\x46\x7a\x29\x41\x11\xd6\x33\xf3\x73\xed\x2c\x29\xf2\xe1\xb4\x47\xc0\x7d\xa4\xb5\x40\x01\x8a\x11\xee\x0b\x7f\x36\x7e\x54\x73\x90\x16\x0e\x90\xa7\x18\xd9\x65\xc3\xad\xa0\x78\x30\x50\x9b\xf3\x75\x03\xc0\xad\x5c\x39\x36\x37\xaf\x91\xb9\x82\xf7\xf9\xae\x0a\xd0\xdf\x55\xdc\x00\x3d\x6b\xf2\x07\x54\x89\x66\x43\xf1\x6f\xb0\x06\xbd\x00\xae\x5b\x73\xaa\xed\x70\x41\xe0\xd5\xc0\x4d\x63\x90\x66\xd6\x28\x82\x93\x84\x71\x39\x4a\x22\x00\xe6\x29\x3f\x7f\x77\xab\x53\xc9\x2b\x2b\x47\x7d\xc8\x1c\xe9\xe5\xd2\x60\xab\xd0\xd1\x98\x26\xed\xa5\xda\x47\xbd\x0a\x21\xa3\x0f\x2a\x0c\xb6\xd8\xf3\xe0\x5a\x13\x9d\x3f\xdd\x69\x0e\x0e\x6d\x38\xf2\xe7\x14\xbf\xe8\x69\x72\xc6\x9c\x34\x93\xc3\x94\x23\x2f\x0a\xe3\xfd\x58\x97\x82\x53\xc9\x00\x29\x5a\x91\x2b\x9a\x91\x74\x17\x15\x3f\x10\x2e\x4d\x23\xe5\x24\xf8\xdc\x9d\x38\xd0\x43\x87\xda\xe3\x6c\x35\x18\x26\x26\x36\xd1\xaa\xa0\x33\xf1\x51\x40\xee\xf8\x5a\x25\x4a\x7a\x69\x18\x45\xa1\x91\xde\x1f\xc6\xae\x76\x28\xb8\x15\x20\xab\xc7\x08\xad\x98\x34\x0d\x93\x34\x03\xfb\x04\x4b\xe9\x61\xa8\x90\x9f\x5b\x9f\x28\x61\xbc\xfb\x1d\x55\x01\x9d\x3c\xe9\x31\x1a\xa5\xd7\x30\x0a\x63\xee\x21\x56\xba\x06\x5e\xdc\xba\x81\x01\x78\xd1\x84\x11\x87\x22\x48\x8d\x5e\xd3\xc7\xda\xfb\xb4\xb4\x84\xe7\xe5\x71\xd5\xe0\xb4\x18\xc6\x42\xa4\x06\xd7\x07\x63\xc1\xd7\x0a\x60\xde\xb7\xa4\xab\x45\x96\x52\xda\x1b\xfc\x7a\xbd\xa0\x6a\x42\xcb\x09\xb1\x24\x95\xbf\xee\x38\x73\x3d\x7f\x6e\x93\x4c\xd9\xd8\xe4\xa1\x34\xeb\x72\x43\xa8\x3a\xfb\xcf\xab\x07\xb6\xaf\x05\x36\x1d\xe7\x68\x2b\x40\xaa\x89\x45\xdc\x51\x2f\xe0\xde\x15\x69\x32\x10\x87\x24\x59\xb6\x69\x66\x4d\x86\x7d\xc8\xea\x05\x13\x05\x4c\xd8\x54\x84\x47\x7f\x8d\xb2\x7e\x28\x1d\x70\xa9\x0d\xeb\x70\x9a\x56\x9b\xfc\x87\x07\x46\xed\x5f\x53\xac\x82\xef\x73\x5e\x46\xda\x21\x7d\x33\xd1\x4f\x75\x77\x46\x2f\xcf\xb6\x63\x5b\xa4\xa4\xc4\x9c\x09\x04\x00\xef\x7c\x5a\x07\x92\xa7\x95\xaa\x60\x18\x45\x85\x0b\xe6\x84\x60\xa5\xe5\x14\x70\xcf\x3b\xd7\x6d\x64\xf2\x22\x15\xed\x37\x05\x5a\x17\xb8\xf3\x36\x4d\x0a\x52\xfd\x57\x9a\xfc\xb1\xac\xe8\xf7\x6d\xac\x16\xe1\x6e\xa5\x92\xb1\x7b\xad\xa1\x10\xd4\xb7\x8c\xda\x77\x70\x44\x45\x87\xfd\xb8\x02\xfa\x2f\x5b\xcf\xba\x23\xfd\xb7\xba\x31\xd7\x57\x79\x29\xde\xcf\xf0\x97\xf0\x94\x5a\xc8\x65\xf3\x4d\xb7\xa9\x6d\x37\x32\x2b\x78\x6e\x76\x67\x27\xbe\xb9\xf2\xc2\xe7\xaa\x3b\xf7\x93\x38\x36\x9a\x97\x41\x93\xd0\x6d\xaa\xe5\xdd\x8b\x4c\x96\x4f\x6b\x3f\xb3\x34\xd5\x52\x4e\xf1\x3e\xe1\xb7\x14\x7d\xd9\xb7\x5c\xda\xa0\x88\xc3\xc5\x24\x1d\x31\xa3\x0d\xe2\xc7\x1b\xaa\xad\xf5\x86\xca\x65\xf6\xa2\x30\x7f\xbd\xe5\xf1\x99\x70\xa1\xa5\xd8\xa8\x8a\x02\xab\x63\x78\x30\x48\x09\xed\xee\x2a\x55\x88\xdd\x6b\xf5\x11\x7a\x99\x5a\xc9\xa7\xcb\xc7\xc6\xb9\xf8\xb6\x22\xbe\xbd\xa7\x70\xe0\x27\xc8\x82\x4b\x7d\xa4\x09\xe6\xdd\xb3\xc3\x30\xee\xcf\xb4\x0e\x1e\xe4\x35\xf6\x5d\x1a\x0d\x2c\xf8\xa9\xae\xa2\xe7\x54\xc6\x42\xcb\x72\x6c\x4c\x74\x93\x60\xb2\x12\xc6\x83\xe9\x8a\x78\x59\xf9\x31\x58\xc9\xef\x4c\x7c\x5d\xf7\x8a\x0e\x3c\xb6\x15\xb8\x3b\x48\x46\xe3\x22\xb7\x69\xf8\xba\xed\x93\x91\x80\x1d\xbe\xac\x04\x1e\x19\xb9\xcb\x59\xb8\x89\x77\xc8\x4c\x30\xb4\x71\xcf\x14\xa3\x29\x65\xee\xb9\x37\x0b\x1b\x85\x49\x8e\x45\xcb\x46\xea\x60\x36\xce\x6d\x2a\x51\x12\x62\x36\x78\x03\xac\x64\x8f\x4f\xe1\x85\xef\x76\x9e\x70\x15\xb7\x3c\x0d\x4d\x1a\x0c\x4d\xc4\x41\xa2\x43\x63\xba\x12\x39\x50\xf9\x88\xf6\x7e\xa8\x4e\xa6\x2c\x4f\x4d\x6e\x07\x61\x00\xbf\x1d\x53\x07\xa8\x04\x5f\x37\x95\x26\x7b\xa1\xd2\xe8\x14\xa9\xb8\xd6\x9c\x97\x90\x73\xa8\x42\xe2\x71\x71\x7f\x2a\x84\x47\x2d\xc5\x84\xb4\x53\x78\x7c\xb6\xfd\xec\xa3\x34\x6c\x38\xe4\xef\xeb\x2e\xa8\x4b\x54\x20\xc1\x8f\xfc\x80\xd6\x1a\x2a\xba\x77\x27\x35\xfd\x2c\xe6\x10\xd7\x85\x93\x3f\xad\xb4\xd0\xb6\x1c\x15\x6d\x8b\xb2\x28\x2e\xda\x28\x1d\x53\x78\xed\x67\x3a\xaa\x05\x93\xcb\x52\x0e\x23\x72\xf8\x97\xbf\xcc\x85\x30\x5e\x43\x70\x2b\xd6\x27\x5a\xd9\x70\x94\x10\x3a\xee\x25\x57\x2e\x02\xb4\x5a\xba\xe8\x1f\x56\x07\xa8\x89\xf6\x96\x9b\x84\x71\x6c\x78\x09\xd7\x81\x56\xf1\x7a\x5d\xf1\xfb\x92\x3e\x9a\xef\x68\x95\x43\xf4\xfc\x22\x7b\x71\xaf\x86\x48\x79\x61\xae\x3d\x22\xe2\xd3\x29\x0f\x1f\xde\xad\x9c\x26\x76\x8d\x84\x31\x51\x26\x33\xb7\x69\x9a\xa4\x61\x36\x9a\xf2\xe3\xc8\x58\x5e\x59\x2b\x2d\x27\x44\x71\x45\x29\x3c\x2e\x87\x69\x5e\xb0\x49\xc7\x59\x3b\xb5\xa6\x6a\x3c\x53\xb5\xf3\x8c\x2c\x42\x91\xf6\x6d\x9c\x25\x23\x66\x2e\x13\xf2\x8e\xd2\x2c\x38\x8a\x2a\x07\x87\xdf\x56\x06\xf3\xa4\x42\xf7\xc4\x49\xba\x62\x60\x23\xf1\xa1\xa9\xae\xd7\x14\x99\x5a\xdb\x99\xa8\x3e\x74\xa8\x9d\x15\x23\x32\x95\x02\x14\xa5\x59\x97\x28\xc3\xbf\x53\x18\x87\x79\x68\x22\x6c\x55\x98\xa6\x5d\x6b\x3e\x2b\x79\x55\x17\x78\xb6\x5c\xeb\x27\x6d\xf0\x71\x1a\x66\x96\x70\x0a\xc2\x3a\xdf\x72\xaa\x9d\xf0\xd1\xa5\xb4\xa8\xf2\x3a\x7f\x39\x79\x54\x47\x02\x45\xce\xf5\x6e\x27\x67\xbc\xe0\xfb\x9a\x3d\x5a\x26\x4b\x82\xd0\xfa\x8e\x46\xa7\x87\xa9\x59\x2f\x1e\x52\x50\xa8\x50\x0b\x39\x92\xd1\x16\x51\xc7\x47\x95\xde\xd9\x32\x41\xd2\xbd\xbc\xd7\x86\xa6\x2f\x9d\xea\xfa\x98\xf2\x81\x9a\x16\xed\xa1\x43\xed\x5e\x11\x46\xfd\x62\xdc\xf2\x2b\x14\x4e\x1a\x5f\xeb\xf7\x4c\x6c\x18\x0f\xf6\xc1\xa6\x61\x7c\xae\x75\x3c\xa8\x8c\xe3\x4f\x9c\x17\xbf\xd9\x51\x5e\xfb\x6f\x52\x64\x80\x45\x79\x55\x51\x86\xde\xa8\x34\xec\x69\xc2\xad\x3b\xb5\xf3\x7c\x6e\x6e\xbe\xdd\xb7\x51\x18\x84\x49\x21\xc9\x37\x38\x0b\x58\x77\xac\x67\xaf\x0b\xec\x57\x2a\x7c\xb5\xe3\x00\x9a\xa6\x82\x61\xf2\x8f\x51\x6f\xa6\x5a\x38\xd0\x2e\xe2\xc0\xc4\x71\xc8\x07\xba\x0b\xcc\x14\xb6\xfe\x09\x8d\x43\x1c\x27\x99\x89\x98\x15\x14\x81\xfa\x1b\x30\x13\x1c\xdd\x28\xb5\x4a\xc0\xc7\xf8\x1a\x63\x26\xfa\x52\x0d\xa9\xf3\xf6\xd0\xc4\xfd\x48\x56\x8c\xa4\x37\x15\xfa\xbf\x7e\x22\xcc\xcd\xb5\x7b\x49\x92\x39\x80\x0b\x4b\xfc\x60\x46\x44\xef\xa7\xc1\x33\x1c\x15\xb9\x44\xcb\x92\x6b\x50\x9d\x3e\x8a\x76\x65\x54\x9a\x9d\x61\x98\x9b\x19\xff\xb7\xbb\xbb\x9e\xe5\x04\x7c\x30\x42\xc9\xb3\xa3\x59\x42\x9a\xac\xee\x36\xf0\x74\xcc\xb6\x7b\x61\xbf\xef\xce\x27\xf8\x0a\x1b\xaa\x6f\x52\x17\x27\xc3\xbe\x35\x34\x39\xc0\x16\xec\xea\x7a\xd4\xdf\xae\xda\x42\x3f\x78\xb0\x9d\xa7\xa6\xef\x78\x19\xe0\x25\xdc\x52\x74\x89\x98\x22\x96\x70\x50\x10\x40\x1b\xf6\x30\x8c\x92\xe6\xa6\x15\x26\xf9\xef\x9d\xef\xf0\x12\xa9\x2b\xa7\x23\xea\xac\xab\x11\xb7\x89\xf6\x8c\x38\xf3\xa6\xbf\x1c\x66\x82\xd9\x54\x2d\x47\xcf\xb3\x37\x78\xaf\xa2\x95\xe3\x9f\x69\x1c\xe6\x53\x64\x08\x5d\xfd\xdb\x59\x48\x8e\x0f\x71\xee\xbc\xa5\xf0\xc8\x79\x1a\x32\x05\xfb\xf3\xec\xc7\x9d\x52\x6a\xa2\xa7\x9a\x30\xa5\xa5\xd3\x15\xd9\xbc\x4a\xa4\x79\x45\x7b\x00\x57\xd4\x40\x0d\x4d\x84\x66\x74\x81\xed\xd4\x9d\x1f\x9c\x45\x48\x86\x21\x2c\xbf\x52\x5b\xf3\x2f\x51\x7b\xb1\x89\x9d\xd4\x17\xc6\xe5\x47\x1d\xd5\x97\xf5\x23\xd7\x5c\x96\x8d\x6d\x9c\xef\xf3\x60\xb2\xc7\xd6\xb4\x8f\x37\xf1\x51\xed\x15\x4f\xd3\xff\x1b\x4f\x20\xd6\x70\x29\x89\x85\x03\x0b\x5a\xb3\x44\xe4\x06\xfe\x56\x57\x11\x10\xef\x5d\x73\x2a\x9b\xe6\x75\x1b\xc5\x45\x8e\x7c\x80\x02\xbd\xbe\xec\x59\x76\x8f\x1e\x70\x00\xd8\xf2\x67\x91\xe4\xd9\xd5\x75\x08\x34\x3b\x2e\x7a\x51\x18\xf0\x1a\x81\x01\x04\x53\x2e\x5f\x3b\xd6\x2f\x47\xce\x00\x82\x29\x66\x16\xd5\x7d\x42\xe4\xea\x6d\x1f\xd3\xdd\xf6\x69\xc8\xfb\x18\xbb\xfd\xaa\xa2\x9b\xbe\x5a\x83\x92\xbd\x30\xd7\x36\x61\xaa\x48\x00\x10\x03\x4b\x92\xaa\xc6\x6c\x36\xdb\x0e\x4c\xdc\x07\xe0\xd3\x59\xb1\xf2\x71\x70\x4c\x9e\x99\xf8\x7a\xe4\x05\x75\x4e\x65\x36\x0d\x6d\xf6\x50\x69\x00\x5c\xfb\xe5\x82\x74\x51\xdf\x50\x64\x8e\x8f\x63\x76\x90\xe1\xbc\x0e\x37\xaf\xd2\x92\x88\xe2\xd8\xba\x66\x00\x7a\xac\xdb\x7a\xc9\xeb\x43\x2a\xce\xa0\x35\xda\xd5\xf8\x44\x8b\x7c\x0d\x38\xe0\x8f\x52\xc7\x88\xe4\xd8\x76\x1e\x36\x2f\xcc\xb5\x53\x13\xd8\x61\x92\x66\x62\x79\xe1\xee\xb1\xea\x00\xdf\x28\x9f\xaa\x47\x68\x7a\xb4\x16\xc3\x54\x81\xc5\x98\x81\x20\xe4\x10\x0b\x55\xea\x4e\xd3\xbb\x70\xa0\xbd\x98\x5a\x92\x6d\x76\x16\x88\xb9\x33\x45\x5f\xb0\x0e\x74\xa3\xc6\xd8\xbe\xaa\x77\xb0\xa8\x04\xdf\x34\xa1\x7f\x87\x26\xcb\xd9\x7b\x73\xe2\x38\xde\x44\xfd\x5b\xa5\x20\x7f\xbb\xa3\x68\xd7\xcf\xeb\xc6\xd6\x24\x0b\x1d\xd8\xc0\x8b\x3c\x79\x5c\xce\x05\xb7\x33\x83\xa1\x19\x83\xb7\x00\xa3\x75\x5b\x0f\xdd\x6d\x95\xfa\x48\x8b\x7c\x18\xd9\x2c\x6b\x11\x3a\xc5\x75\xfd\x1c\x3a\xe4\x6e\xd4\xd2\x26\x7e\x77\xb2\xfa\x2c\x72\x80\x27\x15\xc5\x03\x89\xc1\xd0\x23\x08\x3c\x3c\x59\x3c\x44\x10\x6f\x29\x4c\x12\xc4\x16\x70\x86\x9e\xad\x09\x89\x49\xfa\x80\xbc\x2b\x09\x01\x61\xf4\xff\x15\x7d\x09\xae\x59\xea\x1f\xdd\x49\xb7\x54\xec\xde\x4f\x58\x54\x14\x8b\xe1\x9a\x26\xee\xac\x63\xd2\xa9\x44\x3e\x48\x0d\x00\xf2\xbc\xad\xd5\xfa\x39\xa7\x8a\xc9\xcb\x06\x1c\x80\x3e\x9c\x67\x54\x21\xdf\xa8\x82\xed\x38\x09\x96\x2c\x37\x21\x6b\x24\x02\x5f\xeb\x22\xc8\xd0\xa4\x63\xcd\xd8\x79\x5e\x33\x76\x9e\x77\x65\x90\x15\xf3\xda\xc8\xc4\x53\x8a\xd5\xed\x5e\x47\x0b\x54\xc3\xcc\x0b\x7d\xbc\xf7\x90\x32\x93\xdb\x28\x0a\x73\x3b\xa3\xb0\xbe\x6f\x74\xb4\x1e\xc8\x44\xeb\x81\x28\xba\x8e\x6f\xd0\x23\xb3\xc0\xb4\xe3\x26\x5e\x0c\x3d\xeb\x06\x7e\xfa\xab\x4a\x76\xf4\xab\x35\xf7\x71\xf6\x48\x7b\xd9\x66\x91\x5d\x4c\xc3\xa5\x25\x86\x04\x09\x84\x43\xf1\xc5\x6d\xd5\x8e\xc1\x83\xb3\x14\xb4\xd8\x81\x10\xa5\xe0\x6c\xf8\xb4\xa3\xd2\xd5\x9f\xaa\x40\x64\x91\x24\x99\x50\x8c\x96\x13\xd9\x3b\x26\x8c\x27\x12\x84\x5c\x03\xe7\x58\x3b\xb6\x2b\x41\x32\x62\xc2\x00\xe9\x48\x50\xf0\xaa\x7a\xdd\xa4\xfc\x54\x94\x24\x99\xdd\xe3\xbb\xcd\x6f\x2b\xdc\xdf\x9b\x38\xb1\x5d\xf9\x7d\xe1\x80\xf4\x61\x63\x02\x10\x76\xaf\xeb\x25\xfa\x63\x97\x62\xa5\x52\xa7\xdb\x46\x78\x8b\x2b\x2a\xf3\x06\xb7\x0b\x39\x90\x0b\xae\xad\x7d\x98\x8c\xa9\x87\x63\xfb\x94\xe6\x9d\xd8\xa3\x55\xaf\xfe\x5a\x57\x11\x6f\xdd\xd6\x6a\x2e\xfb\x29\x1f\x8b\x90\xe5\xba\xae\x5d\x25\x51\xc8\xbc\xd1\xd3\xca\x33\xb8\x31\xf1\xc0\x61\x34\xb9\x38\x10\x88\x6f\xde\xf9\xd7\xee\x40\x8d\x6d\xbe\x92\xa4\x4b\x6e\xf5\x48\x9a\xc2\x7b\x82\xf5\xfe\x1a\x46\x4a\xe4\x61\x5c\x30\xf8\x03\x18\xcd\xfb\x38\x87\xc5\xf4\xe9\x8e\x96\xcf\x33\x28\x41\x14\x12\x4a\x1d\x4b\x50\x28\x0d\x55\xf4\x76\xa6\x41\x7a\x71\xbe\x9d\xac\xd8\x58\x3e\xa4\x38\x1b\x05\xeb\xb3\xa1\x40\xc7\x63\x92\xda\xf1\x31\xec\x19\xdd\x88\x78\xc6\x77\x98\xc6\x8b\x51\x61\xe3\x80\x79\x56\x10\x77\x81\x5c\x06\x98\x28\x40\xb0\x30\x73\x57\xb4\xf1\xde\x9a\xf8\x7c\xf9\x86\x62\x72\xbb\xed\x40\xe7\x26\x8a\x0c\x48\x22\x80\x0e\xfb\x50\xc1\xc6\x3e\xac\x79\x7c\x47\x5e\x6c\x47\xab\xe3\x61\x32\xb2\x7d\xf2\x71\x84\xbc\x0d\x6f\x2b\x52\x85\xf4\xb6\x4c\xb3\xd2\x30\x41\xed\xac\x08\x02\x6b\x9d\x92\x07\xe2\x64\xc6\xa8\xf1\x8d\x4b\xd1\xa5\x36\xcb\xd3\x22\xc8\x8b\xd4\x2a\xb6\x8d\x93\x84\x0e\x85\xa1\x41\xa7\xb2\xb0\x5c\xfb\xc3\xaa\x6f\xa8\x4f\x7d\x00\x5b\x29\x8d\xc1\x0a\x6d\x74\x51\xab\x01\x16\xe5\x2f\xec\x57\xe4\xd9\xeb\x8a\xed\xeb\x2c\x4a\xbf\x40\x5c\xed\xa2\x90\x49\x7a\x20\x4a\xdf\x84\xfb\xc9\x14\x47\xc5\x35\x95\x60\x39\x36\xd1\x8d\x3f\x58\x86\xd2\xf4\xf5\x84\xca\x20\xf4\x59\x49\xa6\xfc\x59\x11\xc2\xa6\xe5\x20\xf0\x9e\xf2\xeb\x51\x38\xb9\x5d\x69\x97\xeb\x1b\xc0\x88\x11\x61\xdc\x53\x80\xee\x93\xb4\x2e\x50\xe8\x9c\xea\xee\x5c\xe7\xf3\x2f\x1e\x6e\xf7\x93\x95\x78\x80\x68\x4b\x2b\x7f\xfe\x86\xa2\x22\xfa\x8d\xda\x14\xbe\x30\xc7\x70\x43\x61\x03\x67\xf8\x8e\xe2\xb7\x3d\xef\xc9\x52\xc2\xac\x67\xa3\xd0\x2e\xb6\x54\xe3\x19\xac\x99\x38\xe4\xbe\x38\x5a\x1e\x6e\x5c\x59\x81\x51\xb9\xaa\xc5\x22\xae\x36\x61\x18\x6c\xbc\x6c\xa3\x84\xf5\xe1\x5c\xf0\x7f\x70\xd6\x45\x33\x3e\xec\x79\x71\xe1\x8b\x2d\xf2\x51\x51\x2b\x3d\x0d\x5b\xcd\x37\xca\x23\x18\x15\x99\x6d\x29\x0a\xc8\x0b\x3b\xa1\x39\x9e\xc8\x2a\x58\x12\xbd\x6b\x64\x34\x4f\xd1\x88\xf3\x75\xed\x68\x3b\x7a\xe0\x65\xbf\x99\x55\x27\xc3\xdb\x1d\x2f\x1e\xfb\xb6\x12\xd8\x1a\xda\x28\x9a\xf2\xbe\x05\x8e\x6c\x07\x41\x5c\x90\xfe\xa0\x5b\x4d\xbd\x0f\xe3\x62\x34\xde\x91\x3e\x3e\xa3\xd8\x6c\xce\x34\x42\x51\x52\x9b\x85\x7d\x89\xe6\x84\xd7\x5d\xc9\x3c\xfe\xa4\x01\xc1\x31\xdf\x8e\xac\x19\x14\xb6\xa5\x5c\x8d\xf3\xec\x6a\x48\x1a\x76\xe7\x40\x94\x91\x63\xdf\x46\xe1\x60\x98\x73\x95\x15\x1b\xed\x47\xf8\x31\xbe\xe9\x78\x54\xe4\xd8\xa4\x44\xb2\x67\x52\x39\x51\x58\xb3\x99\x76\x29\xb2\x88\x48\x11\xb0\x6e\x1b\xa5\xf5\x84\x94\xf3\x61\x95\x5c\x5a\x79\xae\xe5\xc9\x2a\x6e\x4f\x7c\x42\xf6\xb6\x8e\x80\x72\xb3\x24\x98\x55\x58\xd2\x75\x85\x8d\x58\x57\x56\x26\x28\xa2\xbc\x48\x4d\x44\x14\xdb\x92\xfc\x56\x5e\x9c\xa2\xe0\xff\x40\x4b\xce\x5d\x24\x4c\x3b\x7f\x80\xe6\x12\x65\x92\x8f\x3a\xbe\xc4\x60\xc6\x63\x4b\x34\xc7\x33\x2a\x55\xfc\x1d\x55\xd4\xba\x3c\xf1\x2a\xbc\x6f\x4d\x3c\x82\xe6\x2d\xfa\x55\x99\x8a\xc7\x74\xdb\x41\x91\x95\x1e\xcf\xec\x11\x2e\x4e\xdd\x52\xd5\xff\x77\xb0\xcc\x71\xb6\x6d\x37\xb6\x93\x26\x71\x60\xc7\x8c\x5b\x14\xea\xb8\x96\x13\x93\xbc\xa0\x8e\xb6\x5e\x64\x82\xa5\x87\xcb\x10\x12\xcb\xfa\xac\xfa\xa1\x53\x40\xd1\xa3\xc2\xcd\x79\x62\xbe\x99\x78\xca\x93\xb3\x1d\x25\x4a\xca\x6c\x40\x12\x82\x12\xe0\x4c\xca\xd9\x3e\xf3\x75\x8a\x1a\x03\xdd\x49\xed\x25\x77\x8f\x4d\x14\x56\x73\x1d\xa7\xac\x30\x4a\x2b\x5e\xba\x62\x90\x60\xe9\x0b\x65\x94\x92\x0a\xaf\x33\x26\xcd\xcd\xb5\xcb\x55\xc9\xb2\x89\xdc\x9e\xa7\x14\x11\xce\x2a\x08\x63\x56\xf4\x44\xc7\xd0\x87\x24\x60\xbd\x11\xf8\x7a\xf9\xe8\x38\x3d\x3e\x6d\x8a\x3b\x07\x49\x1a\x26\x39\x36\x99\x08\xde\x63\x93\x89\x82\xbd\x2f\x90\xa6\x66\x1c\xf6\x91\xe1\x91\x36\x47\x55\xcd\xf9\x94\x9e\x51\xe0\xc3\xe5\x23\x48\xc7\x91\x3f\x0f\x83\x28\x11\xd7\x44\xf8\xc2\x7d\x72\xfa\xa2\xaa\x18\x06\x36\xcd\x4d\x18\x3f\x5c\x3e\xbd\x1c\x4e\xaa\x42\xf7\xc8\x5a\x45\xf2\xa4\xb4\x94\xdb\xb7\x69\x6f\x62\x75\xfe\x40\x31\x8f\x8f\x09\x64\x89\xdc\x47\x8b\xca\x30\xee\x00\x2d\x23\x4c\x25\xd8\x26\x39\xd9\x47\xba\x4a\xa7\xe7\x22\x99\x02\x54\x8b\x51\xf9\xc5\x4f\x1c\xf7\x04\x80\x26\xed\x53\xfe\xc4\x65\x3d\xce\x68\xcf\xec\x8c\x46\x50\x98\xa8\xb0\x0f\x94\xcf\x06\x67\x6c\x0f\x92\x55\x2c\xed\x4c\xa7\xbe\xb4\x39\x96\xdf\xe6\xfa\x80\x3c\x3f\xfa\x9d\x8a\xb6\x0a\x3d\x27\xfc\x84\x7b\xf8\x4d\xf8\xf8\xbc\xc4\x04\x08\x44\x27\x89\xa4\x40\x1a\x02\xa3\x71\x98\xc4\x96\xc0\xe1\x70\xf2\xb1\x8e\xae\x2b\x22\x99\xdd\xaa\x25\x77\x53\x21\x5a\x7b\x61\x14\x65\x0f\x95\xff\x27\xfc\x1c\xaa\xe3\xea\x0c\x6a\x77\x5c\x54\xc5\xc3\x22\x2f\x37\xd5\x55\xb5\xb1\xdf\xa2\x89\x43\xf0\xfa\xfb\x78\x70\x60\x8b\xce\x53\x75\x11\x11\x28\x27\xaf\xb1\xaa\xf3\x89\x4f\x3d\x41\x6c\x49\xae\x55\xee\x6f\x53\x11\x25\x65\xd6\x4a\xcc\x27\xdc\x66\xf4\x34\xc2\x7a\xe6\x77\x94\x29\x06\x45\x96\x87\xb1\x15\x5f\x1b\xe7\xf8\x75\x7d\xa8\x5f\xaf\xa1\xd5\x0f\x1d\x6a\x9b\xc5\xc5\x30\x1d\x19\x38\x2f\x2e\x4a\x84\x7e\x94\x88\x97\x7a\x9f\x21\x4d\x93\x96\x32\xa6\x93\xca\x21\xe7\xd0\xb6\x91\x29\x03\x8e\x51\x4b\x05\x07\x30\x8c\x52\x37\x7a\xaa\x62\x09\x82\x34\xec\x49\x2e\x99\x85\x1a\x31\x1d\xc8\x19\xf2\x0e\xc2\x76\xda\x52\x5c\x97\x99\x59\xb4\x2b\x46\x84\x2f\x61\x32\x8f\x69\xa1\xc2\x63\x35\x7e\xce\xf2\x7c\x1e\x16\xf1\xc0\xa6\x8b\x49\xda\xaf\xc6\x25\x27\xf4\xea\x3f\xe1\x5c\xee\xbf\xf2\x9f\x7b\x5e\xdd\x70\x0c\x31\x08\xdf\xcd\x06\x71\x0a\xb7\x2f\xca\x71\xe1\x15\xff\xf9\x1d\x04\x61\x24\x83\x52\xe1\x38\xc4\x82\x85\xb8\x04\x23\xab\x5c\x72\x61\x64\x16\x43\x93\xc1\xd4\x89\x18\x84\x1a\xc9\x5f\xc5\x2f\xe3\x74\x00\xba\x0d\x03\xf5\x99\xaa\x74\xe6\xa9\xe9\x5b\x90\x3e\x21\x1d\x02\x0e\x68\x26\x99\xa0\x55\xcb\xeb\x9f\x90\x9a\xb2\x17\x68\x30\x84\x95\xec\x49\xf1\x76\x4d\x6e\xc6\x69\xd2\x2f\x82\x3c\x9b\xa9\x24\x92\xe8\x11\xe5\xcc\xc4\xb0\xe2\x68\x7b\x14\x46\x0c\xc9\x80\xfd\x40\x17\x4a\x58\xdc\xc4\xe7\x59\xa4\xa9\x8d\x83\x55\xa5\xab\xc0\x62\x47\xc2\x96\xdb\x20\xd7\x99\xd9\x38\x03\x61\xad\xfb\xd0\xee\xae\x07\x91\xef\x5e\xd3\xe5\xb7\x95\x08\xe5\x37\x3c\xf9\x09\x55\xd3\xd1\x1b\x23\x0b\xad\xae\x3f\xed\xec\xd6\xaa\x6d\xbb\x41\x42\x33\x0b\x9f\x9f\x79\xb0\xe0\x27\xff\xbf\x38\xdb\xe1\x90\x9c\x9e\x7c\x41\x89\x6d\xc4\x44\x62\x98\xe6\xf4\xec\x4a\x41\x0d\xa1\x86\x28\x5d\xd7\x61\x31\xed\x57\xed\x8a\x8d\x58\x00\x11\xce\xf3\x71\xd5\x17\x7d\x5c\xd5\xa6\x56\xc2\x28\x7a\xb4\xe5\x1a\xe7\xf6\x12\x7b\xcc\xf6\xa5\x89\x2a\x4f\xff\x1b\xcd\x6b\xf1\x91\xa2\xa0\xd9\x4f\xa1\xa0\x34\xe5\x90\x1f\x83\x19\x3e\x33\x69\x7d\x59\x6a\x85\x20\xea\x46\x85\xf9\x32\x19\x4a\x51\x84\x29\x57\x93\x20\xfa\x55\x66\xeb\x63\xf2\xe4\x80\xa6\x63\xce\x1a\xf8\xf9\xfb\xbb\x64\xa6\x25\x6d\xe4\x9d\xd0\x41\x11\xf6\x0d\x85\x14\x0e\xea\xb6\xd5\xf1\x92\x8a\x5b\x8a\xa8\xff\xd5\x70\xb4\xaf\xe5\x54\x71\xfe\x50\xfb\xdb\xef\xe3\x9d\x61\x94\xef\xe1\x9d\x5d\xef\xb9\x6f\x38\xc0\xa3\xca\xc8\x94\xbf\x02\xcf\xf5\x56\x47\x77\xe4\xea\x94\xe2\x62\x6a\xfb\x36\x0d\x83\x25\x9a\x0e\x9c\x59\x27\x75\x71\xee\x64\x53\x60\x97\xad\x8e\x7a\x49\xc4\x28\x51\xec\xb3\x63\x8a\xce\xe3\x58\x53\x73\x41\x9e\x8c\x92\x34\x4d\x56\x5a\x5e\x4f\xed\x83\x89\xca\x63\x7e\x50\x4b\xb6\x3f\xdb\x36\x71\x38\x32\x08\xb3\x60\xfe\x6f\x2b\xfe\x2f\x20\xf9\xa5\x29\xb7\x8e\xfa\x3c\xdc\x4e\x0b\x49\xb1\xe3\x54\x60\x5a\x73\xbe\x69\xec\x9a\x19\x99\xb8\x1c\x12\xf8\x72\x80\x2b\x1f\x87\xc9\xe7\x9b\x26\xc5\x5d\x92\x92\xa8\xe3\x81\x5c\x40\xf7\x63\x85\xef\x33\xf1\x6a\x3e\x0c\xe3\xc1\x7e\x65\xfd\xb6\x94\xf0\xcf\xad\x1f\xf2\x5c\x81\x31\xfc\x6b\x13\x05\xe8\x03\x57\x0b\x37\xb4\xe8\xac\x63\xae\xf5\x7d\x6f\x2a\xd9\xc2\x13\x0a\x4e\x7d\x5e\xb9\x86\x3d\x13\x2f\x71\xf0\x22\x6a\xf1\xd7\xa8\xaa\x2c\x3c\x1a\xbe\xf9\x62\x77\xd7\xa3\xcd\xbf\x41\x91\x91\x28\xca\xef\x74\x82\x5e\x79\xa5\x3d\x5c\x1d\x27\x41\x1a\xe6\x52\xef\x11\xe5\x24\x05\xd0\xad\x77\x3b\x1c\x3c\xd8\xce\x92\xd5\x9e\xf5\xdc\xe1\x38\x21\x98\xdc\x0c\x8b\x96\xc1\xe0\x38\xa8\x6e\xb9\x3c\x64\xd2\x8b\xc2\x01\x89\x4b\xd1\x01\x87\x34\x17\x22\x4c\xe4\x04\xce\x28\x4c\xd4\x7f\xe7\x32\xab\x69\x12\x45\xd3\x3e\xe9\xf1\x7e\xc7\xef\x4e\xce\x09\xc1\x9d\x64\xf8\x2c\x8e\xaf\x9b\xb5\x16\xd0\xa3\x07\xe6\xdb\x59\x32\xe5\xe3\xd9\x7d\x64\xb9\x99\x7f\x44\x65\xfe\xae\x35\x26\xa9\xc7\x45\x1a\x0c\x0d\xf3\xb2\x4a\x0b\x04\xcd\xb7\x34\x47\xa8\x36\xbb\x61\x92\x20\x69\xa0\xd7\x8d\x42\x16\xd4\x86\xf5\xc8\x8b\x24\x89\xd4\x0f\x97\x41\x0a\x81\xc4\xe1\x3d\x32\x6d\x00\xec\xfd\x19\x59\x33\x81\xa8\xf8\x71\x5a\x77\xf4\x56\xcb\x61\x56\x98\x88\x0b\xac\x5a\x8c\x40\x12\xb4\x3b\x81\xae\x87\x0e\xb5\xb3\x61\x11\x63\xd7\x61\x61\x9d\xe8\xa8\x55\x76\x42\x85\x42\x99\x59\x4e\x56\x2b\x54\x95\x4a\x1a\xe2\x8d\xce\x5f\x53\x14\x9d\xb9\x4d\x93\x81\x25\x71\xf1\x96\xe2\x81\xd1\x79\xd3\x8d\x46\xfa\xfa\xd4\x52\xbf\x58\x4b\xb5\xa1\x72\xa7\x20\xdf\x68\x5d\xda\x64\x34\xb2\x69\x10\x9a\xe8\xc1\x72\x5c\x98\xc5\x81\x1d\x02\x44\xf8\xbb\xd6\xbc\xd4\xe2\x45\x95\xd3\xe0\x58\xca\xa9\x79\x3a\x32\xae\x99\xae\xe2\xbf\xbf\x88\xe8\x16\x7f\x45\x2d\x4a\x82\x87\xb8\x05\xfb\x8e\x31\xda\xdb\x55\xf0\x9b\x4b\x9d\x07\x04\xa9\x96\xac\x4e\x29\x56\x96\x93\x38\xd4\x38\x35\xa1\x40\x08\x97\x3a\x4f\x86\x5e\xb6\x42\x5e\x69\xaf\xaa\xbf\xee\xc6\x43\x01\xa8\xf6\xdd\x49\x95\x6b\xcb\x95\x89\x76\xa3\x65\xc0\x09\x45\x96\xe7\x9b\xe6\x70\xc4\xaf\xdd\x55\x7e\x47\xbf\xbf\xba\xd7\xb7\xb3\x6f\x2b\xb7\x7d\x9b\x42\x68\x5d\x3b\xe1\x74\x03\xb9\x6d\x42\xb4\xad\x5a\xc1\x36\x34\xd7\xe8\x54\xb7\xa9\xc9\xa5\x88\x17\x43\xc4\xf7\x78\xaa\xef\x28\x66\xc9\xef\xb8\x24\x7a\x16\xbe\x2e\x9d\x69\xc2\xc7\xef\xeb\xf2\x5b\x2e\x15\x6a\xc6\x63\x43\xf0\xcf\x69\x97\x24\xf8\xaf\x1f\x43\xd3\x3d\x06\x60\xf7\x9a\x27\xda\xc0\xcc\x4b\x57\x97\x82\x1a\x8b\x62\x9a\x68\x4b\xb4\x94\xe6\x84\x7b\xa0\xdc\x84\x5c\x09\x15\x32\xe4\x96\xa7\x3d\x51\x7a\x50\x17\x6b\x3c\x2b\x0b\x07\xda\x51\xc8\x49\x39\x01\x0e\xd3\x22\x12\x91\xff\x8a\xc6\x72\x14\xd9\x78\x60\x33\xc5\xe8\x7d\x5b\xd3\x33\xdf\xae\x65\x32\xa8\x7e\xba\x98\x24\x9f\xdf\x6a\xa0\x5c\xcc\xa5\x55\xe2\x42\x16\xac\x86\xd2\x5d\xe4\x94\x2c\x72\x38\x97\xc8\x5a\x60\x41\xc1\x5c\x21\xa1\xf0\x0a\x98\x40\x24\xcd\xec\xb3\xd3\x8f\x77\x95\xd6\x1b\x07\xe7\x58\xa8\xe7\x9d\xf5\x8e\xc2\xb4\xa2\xfc\xca\x7f\x06\x03\xf7\x14\x85\x12\xb8\x06\x2b\x1c\x17\x0d\x74\x79\x31\x49\x72\x33\xb0\x2a\x35\xff\x36\x3d\x9b\x93\x1b\x2d\x07\x55\x9a\x38\x15\x75\x2d\xc4\xbb\x73\x3b\x0d\x47\x94\xc6\x86\xf1\x1a\x1d\x5f\x61\xa0\xf4\xd6\xfc\xf6\xa5\x26\xd1\x69\x68\x8b\xa8\x46\xc9\x56\x57\x37\x5c\x7b\x27\xec\xba\x3a\xad\xcd\x20\xb6\x51\x14\x52\xcb\xb0\x74\x4e\x28\x85\xb7\x8b\x2e\xd8\x1d\x14\x61\x1c\xdb\x4c\x62\x43\xa7\xa7\x5e\xfe\xad\xe8\xa9\xeb\xf6\x81\xd2\x30\x20\xab\x26\x75\x28\x95\x3e\xdc\x50\x39\xa7\xc8\x9a\xb4\xf4\xa5\xe6\x1d\xad\xe3\x34\xe1\x8b\xa5\x1d\xfc\x31\xdd\x9e\x5b\x1a\xea\x29\xdf\xee\x75\xab\xa3\x90\x28\xa7\x27\x8a\x45\x79\x4b\x19\xdf\x9c\x12\xce\xb1\x3b\xe1\xb0\x4c\xd6\xd5\x92\x21\xed\x21\x45\x60\x90\x8d\x13\x44\x4e\x53\x7e\xcb\x5d\xd5\x80\xc9\xd3\xaa\xea\x73\xa2\x21\x45\x78\xb8\x4d\x92\x73\x2d\xc5\xa0\xf1\x99\x42\x0f\x7d\x56\x73\x70\xa8\xef\x63\x3c\x8e\x58\x3c\x4f\x31\x4a\x7a\xd0\xc7\x19\x2d\x7c\x9b\x9a\xc1\x94\x67\x52\xbc\x46\x49\x34\xec\x85\x63\x4a\xce\xec\xac\xca\x59\xaf\x98\x34\x26\xf1\xbc\x0a\xe1\x1b\x0d\x20\xdf\x38\x18\xba\x19\xa4\x96\x9e\x04\xc6\x04\xe9\x65\xd0\x83\xc1\x0d\xfa\x48\x73\xbc\xff\x33\xc5\xf8\x98\x5a\x13\x80\xec\xdf\x35\x36\x20\x43\x27\x88\x67\xd9\x68\x7d\x6b\xc7\xfb\xcb\x3f\xc2\x42\x7b\x88\xb4\xe7\x04\x6f\xef\xc1\x05\x4f\x63\xcf\xe2\x09\xbe\x39\x51\x64\xda\x53\x6b\x1e\x93\x77\x9d\x9c\x47\xe9\x24\xa6\x34\x31\x96\x0f\xa0\xc2\xd8\xb1\x7b\xd6\x7c\x85\x79\x25\x8b\x6c\x9e\xdb\x74\x0f\x1d\x74\x42\x9d\xe3\xd1\x3d\xa2\xa1\x2d\xd1\xa9\xcf\x6a\x20\x45\x89\x03\xf4\x69\x84\x69\x22\x14\xe0\xd3\x6e\xa3\x30\xb2\xd9\x1e\x5f\xa3\x38\xcb\x5f\xe7\x28\x90\x5c\x82\x75\xa6\xab\x22\xce\x8b\x0a\x83\xc7\xa6\x8e\x3f\xe1\xcf\x9c\x82\x31\x82\x2f\x7b\xd5\x09\x05\x6b\x9e\xf8\xda\x49\x12\x04\x26\x23\x41\x0f\x16\xbb\xd3\xa0\x7e\xbe\x56\xab\x83\x90\x8e\xa5\xaf\xab\x3b\x09\xaf\x6b\xd5\x13\x6e\xcc\x91\x45\xd6\xd0\x0b\x17\x27\x0e\x8a\x28\xf2\xdc\x8a\x3b\x79\x43\x39\x0f\x23\x13\x0c\xc3\xd8\xf1\xae\x20\x2c\xbd\x8e\xdd\x8c\x15\xcd\x9c\x3b\x58\xf9\x2c\x41\x29\x79\x14\xda\x55\xaa\x7f\x5e\x06\xf6\xff\x69\x40\xac\xbe\x5c\x9e\x57\xa9\xc3\x2a\xba\x0e\x29\x45\xf9\xe5\x1f\x2b\x8c\x73\xca\xe2\xd8\xfe\x8c\x67\x77\x79\x17\xf9\x59\xc4\x9f\x6f\xe0\xb1\x44\xed\xb4\x5c\x17\x7c\x4d\xc5\x3c\x04\x06\x27\x9a\x2a\xe8\x44\x17\x5d\xa4\x68\x18\x92\x52\xb4\x77\x31\x2e\x3a\x68\xd4\xc8\x8e\x7a\x68\x00\x66\xe7\x02\xc8\x69\xf6\x75\xf9\x46\xa1\xbe\x4d\x24\x61\xa5\xa4\x93\x6e\x63\xa6\x24\x63\x50\x6b\x24\x6f\xcf\xcd\x3d\xa1\x2a\xa2\xe7\xc9\x53\x02\x55\xd2\x67\x08\x51\x70\xdc\xde\x55\x8d\x64\xdc\x28\x8f\x51\xf8\xef\x27\x0a\xa3\x7b\x5c\x45\x74\x7f\x8a\x05\x03\xeb\x0c\x36\x62\xc7\xda\x56\x0e\x3f\x53\xaa\xd3\x58\x21\xf2\xb9\x34\xd9\xfd\xb7\x1c\xd0\xa7\x1c\x1a\xae\x4a\x71\xa8\x8a\x4d\xf7\x61\x47\x97\x94\x14\xce\x14\xed\x45\xac\xdf\xa4\x05\x7d\xcf\x3a\x44\x14\xd4\xa3\xa6\x54\x5a\x76\xa2\x72\x78\xdb\xa8\x43\x49\x63\x65\x43\x9b\x72\x90\x8c\xc6\x26\x75\x5a\x6e\x92\xba\xf0\x36\xb6\xce\x42\xf2\xcc\x33\xa4\xe2\x4b\x33\xed\xb2\xe0\x0e\x52\xbe\x55\x93\x24\x7c\xe5\x15\x11\x07\xf2\xed\x88\x95\x0e\x5c\xbe\x51\x95\x0a\x12\x96\x27\x49\x33\xd6\xdf\xa1\x21\x15\x2d\x1e\xbf\xa2\xfb\x24\x86\x6d\x24\x09\x88\x46\x80\x0f\xa8\x52\xce\xd7\x0a\xb9\x96\x27\x59\x26\x4a\x69\x98\xdb\x0f\x29\xd0\xe4\x6b\x05\x25\x5e\x48\x80\xb5\xaa\xa8\x60\xf0\x4d\xe7\x29\x75\x1a\x38\x18\x07\x12\x18\x68\xf6\xd8\x54\x54\x01\x9b\xb5\xc4\xf0\x2b\xaf\x94\x7b\x65\x64\xfb\x21\x80\x11\xbf\xf4\x25\xb6\x02\x68\xe0\x16\x42\x3a\x5a\x05\xac\x66\x50\x9b\xb7\x43\x87\xa8\x99\xa8\x6f\x23\x21\x0f\x44\x26\xe8\x33\x2c\x5c\xbe\x51\x9c\x00\x59\x30\x34\x76\x71\x91\x51\x5d\xd8\x0b\x10\x1b\xe6\x6b\xe5\xe2\x71\xbb\x1c\x95\x55\xb0\x1d\xd9\x3e\xa1\x46\xf2\xa9\xde\x29\xa0\x21\x13\xfe\x56\x1a\x26\x24\xf8\xbf\x4f\x8b\x1d\x07\xef\x69\x2d\x58\xc9\x0c\x75\x2e\x11\xf5\x82\xb4\xa1\x6d\x63\x6f\x49\xfa\xb3\x9c\x24\xc4\x91\xff\x1c\x58\x4c\x86\x78\x75\x1e\xf0\xfd\x20\x53\x8a\xb8\x01\xb1\x00\x8c\xcd\x0d\x5d\xac\xdb\xd2\x48\x8c\x3c\x89\x2c\x78\x70\xb8\x4f\x5c\x89\xa2\xdc\xc6\xce\x13\xb3\x42\xc7\xac\x64\xe5\xbc\x46\x3b\x28\x8b\x24\x73\x27\xd1\x7e\x3e\xb4\x26\x67\x4d\x51\x2e\xa7\x91\x75\x90\xd2\x9a\xc3\x2f\xda\x34\xb6\x29\x90\xa6\x80\x7e\xfe\x1f\x58\x5c\x7c\xa3\x04\x29\xf8\x2b\xa7\x7d\xf8\x77\xa3\xe3\xb9\x05\x37\x99\x74\x56\x01\xf4\x6f\x37\x4a\xc7\xf6\xc2\xd2\x11\x98\xf2\x01\x1e\x1a\x25\x18\x02\x84\xb9\xc4\x01\x76\x73\xe2\x0b\xdd\x36\xb6\xa3\x55\x0a\xe8\x9c\x30\xb5\x23\xd6\xdb\x02\x8d\x9b\x1c\xdd\x34\x39\x72\xf2\xcb\x78\xf4\x53\x12\x96\xa5\xf1\xc0\x2c\xb2\xbe\x07\xdf\x28\xbe\xfd\x9e\x59\x9d\xf2\xac\x6c\x60\x9b\x71\xa6\xb0\xfc\x08\xcc\x5f\x53\x47\x4e\xdb\x8e\xc6\x43\x53\xc6\xa9\x3a\xb2\x7b\x5f\x47\x76\xef\x77\x9e\x56\x4d\x75\x5f\x29\xc2\x94\x1c\xbf\x8c\x18\x4f\x64\x76\xd5\x82\x3e\x86\xd3\xd0\x75\x86\x3a\x21\xc5\xcb\xaa\xa7\xf0\x9a\x9b\xf7\x7e\x38\x28\xed\xda\x54\x55\xbe\xd8\x75\xdd\xde\x53\x8a\x31\xe7\xd5\x16\x0b\x86\xc6\xcd\x4a\x85\xc1\x0e\x01\xe6\x4d\xe5\xd6\xdd\xea\xf8\x3a\x62\x2f\x89\x13\xca\xbd\x55\x5a\x89\x91\x27\xbb\x4d\xeb\x8d\xf2\x95\x3f\xff\x74\xd7\x17\x12\x4a\xb7\xd0\x95\x1e\x4c\x9a\x26\x2b\xd1\x6a\x8b\x0e\x79\xec\x9b\x9f\xe0\x84\xe0\x9b\xa6\xb6\x1c\xe6\x76\x68\x39\x61\xac\xf7\xf0\x11\xbe\xf9\xdc\xca\x57\x96\x2c\x87\x16\xce\x3e\x9c\xaa\x9b\xda\xc3\xba\xa9\xcc\xed\x28\x89\xa9\x93\x07\x89\x25\xb4\x67\x30\x42\x9c\xcf\x49\x86\x04\x55\xe2\x31\x4c\x9b\xf4\xde\x3e\xea\x92\x04\xd4\xc1\x8a\xec\x18\x03\xc8\xab\x68\x72\xcd\x5a\x91\x2c\x49\xc6\x1a\x46\x88\x91\x90\x7c\x53\x4b\x23\xcc\xbf\x58\x6e\xa8\x81\xa2\x78\x78\x00\x19\x27\xbe\x69\x68\x8a\x9e\x6d\x67\x36\x8a\xa6\x69\xc4\x9c\x40\xc5\xd1\x03\x0e\xe6\xdc\x72\xa2\xa9\xc8\x80\x62\xd6\xef\xd7\xf6\xf2\xb3\xed\x41\x18\x91\x57\x8f\xe7\x65\x02\x35\x85\xe7\x3b\xa9\x5b\xbc\x4d\x3f\x5a\x9d\x51\xc9\x30\x44\xd6\xdc\xc7\xf0\x31\xfb\xeb\xfc\x5f\x88\xfc\x60\xc4\xd9\x49\x15\x6e\x50\x85\xbc\x2f\x7a\xc4\xd9\x94\x4e\xfb\x27\xe6\x72\x87\x13\x65\x77\x1c\x7e\x3f\x52\x34\x27\xc7\x6a\x6b\xea\xd0\xa1\x76\x96\x04\x41\x69\x07\xbd\x73\xfb\xfb\x2a\xe4\xfc\xfd\x8e\x96\xbe\x0f\x47\x26\x0d\xa3\x55\xea\x90\xc4\x0a\x01\xd6\x03\x48\x19\x58\x40\xfc\xd4\x4d\x9c\x53\x92\x27\x71\x9d\x00\xc9\xc8\x32\x87\x05\xf6\x0a\xb3\x39\xc8\x09\xad\xda\x2a\x6f\xee\x90\xd2\x4d\x4d\x90\x27\x29\x79\xcb\xd2\x70\xa8\xbc\xb0\x8b\x0a\x91\x74\x4f\xe5\xd0\x36\x3b\x1e\x63\x71\x4d\xc5\x4d\xc3\x64\x6c\xb3\x7d\x64\x60\x1c\x5e\x4a\x21\xb5\x5a\xfe\xdf\x71\x16\xa2\x2e\xfc\xbb\x13\x5f\x51\xff\x5d\xe4\x41\x71\xb2\xa1\x0f\x1e\xa3\x3f\xbd\xe6\xfd\x9f\x9b\x8a\xf6\xc3\xa7\x31\xf7\xd1\x27\x9d\xf8\x49\x39\xcb\x30\xb3\x97\x31\x6a\x08\x38\x70\xa0\xe3\x7b\x50\xbf\xe0\x6b\x40\x45\x94\xc4\xb9\xb4\x60\xde\xc5\xf8\x49\x7f\xac\x5f\x31\xfd\x70\x39\xec\x5b\xe2\x88\x2f\xff\x9a\x53\x5c\x34\x75\x92\xee\xda\xb9\xbf\xc0\x21\xd0\xaf\x10\xe6\xa8\x6f\x3f\xa5\x22\xf1\xbe\x0d\x42\x90\xda\x1d\x15\x6c\x15\x57\x00\x84\x4f\x7b\x4a\xcb\xfa\x7b\x59\xe1\x2b\x8a\x5f\x69\x37\x91\x98\x22\x22\x9b\xea\xca\x21\x3d\x4e\xc3\xd7\x2d\xf7\x52\xc2\x35\x3d\xc9\x1b\x46\x9a\xfe\xe9\x85\x60\xab\x81\xf8\x86\x17\xb5\x8d\xa1\xe0\xbf\x72\xb9\x00\x13\x99\xe7\x14\xe8\xe8\xac\x46\x7f\x9e\xad\x55\x46\x0e\x1e\x6c\xf7\x43\x3b\xa5\xd5\x69\x68\x6b\x88\xaa\x2a\xed\x63\xd1\x7b\x72\xbd\xd8\xa9\xe9\xdb\x91\x49\x51\x8c\x74\xe5\x06\x4f\xf4\xd2\x44\x8f\x12\x0c\x4d\x19\x8a\xd1\x31\x5f\xa1\x37\x07\x18\xe0\x2f\x61\x0b\x11\x3b\x20\x51\xc3\x41\x54\x47\x80\x01\xbd\x22\x0b\x63\x9b\x65\x51\xb8\x84\x5c\x12\x90\x33\x0f\xd3\x98\x38\xb5\x36\x47\xc1\x79\xbf\xb9\x75\xc0\x9a\x3e\x6f\x4f\xb8\x9b\xdb\x15\xea\x20\xcd\xbf\x54\xfb\xfc\x33\xcf\xb4\xc7\xc6\xcb\x14\x89\x51\x54\xf5\xdf\x93\xca\xde\x07\x49\x31\x4e\xd0\xe5\x0e\xf8\xc5\x0d\xc5\xb6\xc8\x18\x2c\x64\x06\x3e\xa9\xd3\x93\x1d\x6e\x3f\xcb\x3c\x90\xb2\x7a\x5b\xae\x43\xfe\x6b\x15\xc2\x3c\x55\xbf\xac\x90\xa2\x7f\x0d\x6b\x59\x36\x42\xfd\xac\x98\xa3\x1e\x9c\x69\xff\x7c\x77\x34\x3f\x0f\xb8\x64\x04\xbf\xda\x52\x04\x51\xfe\x0d\x49\xd9\xb5\xbf\xd7\xe3\x0d\x91\x18\xc5\x84\xde\xd6\xb0\xac\x33\x9a\x42\xff\x56\x47\xe7\x86\x7c\xde\x8d\xc1\x31\xb8\xf9\x0f\x4d\x05\x5c\x6a\xf4\xdd\x51\xc0\xad\xea\x4b\x6a\x50\x77\xf1\x6a\x38\xe3\x7b\x2b\x38\xfa\x43\xb9\x16\xd1\x0f\x2a\x72\x97\x14\x23\xc4\x5f\xea\xdd\x72\x51\x35\x17\x99\x72\xf1\x2d\xdb\x1d\x05\x36\xd5\x01\xf1\xa4\xb2\x15\x51\xb8\x6c\xa5\x61\x47\x02\x8e\x0b\x18\x0e\xa9\xc9\x3e\xae\x82\x4a\x98\x96\x19\xb5\x26\x7f\x5b\x17\xa0\x2a\x4b\x05\xb9\x52\x09\x61\x15\xac\xf8\x64\x0d\x6c\xba\x70\xa0\x9d\xda\xc5\x32\x62\x6d\x79\x35\x44\x16\x98\xe2\x9b\xc9\x7f\xd2\x40\x3c\x93\x9a\x60\xc9\xe6\x0c\x91\xf3\xad\x2f\x68\xec\x91\x62\x2d\x3d\x9f\x24\x68\x76\xee\x93\x9f\x6f\x8f\xa3\x24\x77\xe9\x2b\xec\x63\x0e\x78\xf8\xa6\xe3\xe5\x1a\x83\x22\x7f\xb4\xe5\x68\xb0\x59\xd5\x19\x2e\xd8\x87\x14\x98\x21\xcf\x71\x9b\x70\x1f\x58\x41\x7f\x44\xa3\x80\x64\x27\xef\x3f\x57\x8e\xf2\x20\xd5\x35\x0a\x9e\x58\xff\xa1\x74\x5d\xb6\x2f\xd1\xa2\x46\xc5\xef\x1d\x54\xca\x34\xb5\x27\x0e\xb7\x3d\x68\x19\x60\x6a\xda\x89\x12\xa5\x65\x27\x90\x09\xc0\x9a\x06\xdc\xf4\x47\x5e\xfa\xcb\x61\x2a\x95\x9c\x4f\x03\x53\x6f\x94\xac\xf0\x07\xe0\x07\xfd\x2e\x16\x2a\xdf\x34\x02\xe0\x41\xf8\xe7\x36\x02\x8e\x00\xb8\x44\x7c\xdd\x48\x4f\x9a\xf4\x6d\x2a\x22\x5b\x18\xaf\x6d\x85\x41\xd8\xae\x59\x6d\x2a\x34\xfd\xcd\x5f\xfe\xe2\x2f\x2c\x68\x95\x6e\xa2\x37\x10\xc5\xee\x86\xc4\x25\x27\x48\x14\xc3\xaa\xaf\x2f\x6e\x28\x3f\xfc\xbf\xfc\x47\xff\x90\x60\xe4\xce\xb7\x74\x10\xf6\x93\xce\xbf\x4e\x2d\x5a\xc6\xf1\x9e\x4c\xaf\xde\x51\x2e\xf4\xa7\x0a\xea\xbf\x68\x82\x7c\x3f\x05\x88\x8e\x56\xd8\x4b\xa8\xff\xdf\x5a\xc7\xe1\x42\x15\x99\x53\xf5\x91\x5e\x98\xab\xfa\x45\x4a\xbc\x72\xd6\x9f\xfd\x65\x50\x2a\x4b\xa4\x61\x10\x82\xc4\x25\x9f\x04\x5b\x4e\x5f\x26\xe0\x72\x9f\x71\xcc\x56\xb3\xdc\x8e\x9e\xa0\x75\xeb\xc4\x55\x5e\x90\x36\x95\x8f\x69\x07\x60\xbb\x5e\xef\x28\x15\xba\x5b\x78\x05\x51\x3c\xa7\x57\x40\x31\xee\x07\xe4\xda\xe1\xe3\xef\x90\xfa\x37\xcc\xfb\x9f\xb3\x5b\x81\x1d\xf8\x86\xc2\x56\xde\xc4\xbb\x55\x24\xa1\x80\x3c\x38\x46\x1e\xbf\xdb\x23\xae\x0c\x77\x95\x36\xa3\x83\xaf\xbb\x5a\x3b\x23\x48\xb0\xfd\xb6\x35\xcc\xe9\xac\x2a\x4a\xfe\x83\xe7\x7e\xb6\xa5\x22\x9f\x0d\x5a\x51\x7c\xdd\x71\x4d\x75\x45\x4a\x8c\x83\x92\xc3\xfe\xac\xa3\x44\x22\xb8\x90\x49\x3e\xe1\x9f\x3c\xde\x55\x00\x69\x44\xd1\xcc\xd8\x83\xfc\x2b\xf2\x5a\x9f\xe0\xd1\x04\xa0\xeb\x91\x6c\xa7\x15\x3a\xef\xf1\x35\xdf\x43\xbf\xd1\x24\x66\x9e\x87\x59\x56\x60\x75\x0b\xe5\xad\xaf\x29\x9d\x50\x35\xa5\x65\xe2\xd7\xf2\x4d\x8d\x13\x5f\xfc\x3a\xd7\x51\xe8\x60\x66\x66\x92\x16\x7e\x0d\x22\x1c\x24\xfd\x29\xd5\x78\xc5\x71\x84\xd0\xcc\x10\x7f\x1f\x70\xf5\x77\x14\xa7\x92\x19\x0c\x52\xb3\x6c\x72\x3b\xe5\x21\x73\xd7\x95\xbe\xdf\x06\x0c\x1a\xea\xc1\xc7\x14\x84\x33\xa1\x53\x8b\xde\x0c\xb1\x0e\x67\x2a\xf8\x46\x61\xfc\xc7\xe1\x00\x5d\xb6\x62\xe0\x68\x9a\x3f\xcf\xc2\x3d\xdb\x5e\x09\x9d\x4a\x1f\x4b\x33\x62\x2a\x44\xa7\xf1\xf1\x2a\x83\x7c\xc0\xfc\x7c\xce\x51\xf2\x74\xf0\x17\x55\x26\xc7\x8c\xf3\x19\x45\x33\xb1\x39\xd1\x88\x5e\xd6\x01\x64\xe6\x61\xbc\x32\xfe\xee\x7b\x48\x27\xf0\x4d\x1d\x00\x37\xdb\xb6\xaf\x69\xd6\x28\xd8\x2d\xf4\xa3\xf0\xb5\xcb\x3b\x65\x41\xb2\xb8\x68\xfb\xd3\x5e\x71\x99\x9d\x0c\x5d\xab\x46\x62\x84\x6b\x83\x38\x3a\x76\xd5\x08\xdf\x4a\xcf\x74\x31\xb5\x58\x58\x52\x74\xf5\xfd\xad\x5b\x2e\xba\x5c\x35\xa9\xc8\x60\x39\x18\xb8\x5f\xd6\x5b\xb5\x33\x69\xf6\x08\xe5\x28\x62\x2e\xa2\xc3\x7c\x7d\xd4\xf1\x69\x9d\xcb\x1a\xf8\x7a\x5a\x99\xe7\x15\x93\x22\x2c\x60\x81\x36\x7a\x1c\x54\x05\xf7\x75\x7d\x7e\xae\x8a\x7b\x35\xe1\x68\xca\xcb\x45\x1e\x87\x59\x72\x15\x41\x27\x43\x72\xbd\x86\xb1\x3e\x78\xb0\x3d\xb4\xa6\xff\x95\xc2\xa4\xb9\x63\x13\x71\xd4\xc6\x9e\x80\xb9\x4e\x1b\x79\xe8\x50\x3b\x37\xf1\x12\x7f\x84\x05\xd2\xe8\x05\x45\x2c\xcd\xaf\xdc\x15\x33\xa0\x06\xd0\x97\x9d\xbf\x48\x1f\x72\x8e\xa4\x43\x60\xac\x4f\x54\x2d\xfc\x43\x6c\x51\x01\x88\xb4\x9c\x2a\xc5\xba\xa6\x0b\xb7\xe9\xd8\x82\x63\x53\x00\x3e\xbf\xa2\xd0\x6a\xbf\x52\xcb\xaa\xcf\xbf\x78\x18\x8c\x8e\x94\x50\x2c\x3f\xb6\x4d\x56\x69\x7b\xbd\x4e\x42\x71\xb0\x9d\xe5\x45\x1f\x95\x47\xf6\x10\x95\xe2\xe1\x6f\x77\x1e\x56\x32\x54\xc1\xd2\x94\x47\xd7\x5e\xef\xa8\x0c\xfc\x44\xed\xd3\x9f\xd4\x12\x69\x0b\x07\x16\x40\x81\x12\x12\x0c\x96\x21\xbc\xad\xb9\xb9\xed\x4b\x8d\x3e\x48\xdf\xa2\x69\x30\x9d\xf2\xa8\xef\x5b\x0a\xf5\x8d\x22\xd5\xf6\xba\x6e\x74\x49\x8a\x71\xc4\xcd\xfc\xb2\xe0\x3c\x2a\xd6\xab\x12\xa4\x2c\x10\xc5\x73\x8a\x74\xd7\x31\xcc\x02\xdf\xd4\x70\x7a\xa5\xe7\xca\x48\x67\x40\x69\x24\xe7\xaf\x36\xe4\x45\xb7\x8d\x86\x60\x87\xf9\xdc\xfe\xc4\x06\xea\xea\x6c\x1c\x85\xf9\x0c\x3d\x03\x4a\xb8\x97\x15\xab\xdf\xd7\x27\xde\x7b\x01\x0f\x8b\xf4\x32\x91\x0d\x95\x66\xa6\xc7\x5c\xcc\x6f\x47\xa1\x4d\xc5\x41\x16\xba\x20\x5a\x73\xc2\xcb\xfd\xb0\x83\xc3\x87\x4b\x2c\xf4\xcd\x2a\x1a\x13\x85\xd3\xdb\x68\x40\xc7\xb6\xcd\xb8\x74\x10\xa5\x37\x58\x48\x7e\xa6\xbc\xf2\xf9\xc7\x0e\x97\x99\x0d\x6d\x94\x5b\xcf\x2e\x80\x03\x03\x06\x82\xaf\x55\x75\x74\x85\xd2\xfb\x8c\x5a\x41\x77\x1e\xa7\x59\xf9\xa6\xf3\xb8\x9a\xec\x78\x31\x0a\x39\xf8\x90\x1e\x0e\x5d\x38\x6c\x90\xd2\x1a\x05\x81\x01\xf0\x58\xf1\x32\xcc\x3b\x5e\x86\x06\xe5\x65\xd1\xd3\x48\x52\xcd\x26\xf1\x89\x62\x93\xf8\x44\x57\x64\x2c\x31\x2a\xd2\x48\x38\x36\x0f\x4f\x27\xa7\xa9\xf4\xae\x68\x39\x9e\x3c\x09\x96\x9e\x52\x28\xf2\xf3\x9a\xe8\x9c\x33\x5a\xa8\xd9\x5e\xc2\x13\xe3\xcf\xde\x44\x98\x04\x98\xca\x7e\x92\x1f\x47\x91\x78\x77\x57\x95\x8c\x3e\xc0\x51\xee\x6a\xb0\xb3\x47\x38\x79\xcc\x84\x25\xd2\x6f\xaf\x74\xc5\x2f\xe3\xb0\xe3\x78\x86\x19\x58\x26\x5e\xe9\x62\x53\x79\x90\xb7\x95\x63\x7d\x1d\xf5\x06\x49\x23\x94\x03\x2d\x94\x7f\x2d\x47\xdc\xb3\x0d\x4f\x59\xe2\x26\xc5\x4a\x69\xd2\x20\x8c\x93\x81\x8d\xc3\x60\x4a\xf5\xf8\xfd\x49\x95\x92\xac\x7c\x33\xe6\xc7\x50\x7d\xbe\x69\x51\xee\xe8\x3d\x1e\x42\x87\x67\x57\xcc\xde\x2f\x73\x01\xef\x43\xbc\x36\xdf\x90\x03\x2a\x22\xfb\xde\x8d\xb9\xa4\x24\x8d\x97\xc3\x24\x72\xdd\xc0\x22\x2d\xde\x72\x52\x78\x75\x9e\xfe\x67\xdb\x83\xb4\x18\x8d\x4c\x8c\xe4\x36\xd7\x0d\x3b\x9a\xc1\xe9\xb4\x56\x27\x1e\x9b\x34\x1f\xda\x90\x61\x01\x2c\x2a\x8a\xc5\x22\x0a\xa3\xaa\x67\x3e\x59\x89\xf3\x22\x8d\xa7\x5b\xaa\xe9\x98\xd6\x8e\xc0\xbb\x69\x51\xc0\x8e\x41\x00\x4a\x98\xc8\xf5\x49\x7a\xe4\xef\xff\xcc\x7f\x5a\x4e\xa2\x13\xdc\x77\x4d\x60\x7f\x41\x4b\x84\x13\x65\x1d\x92\x81\x54\xfd\x64\xc2\x45\x7b\x0c\xc0\x3d\xd5\xfe\xb7\xc0\xf9\x8e\xbf\xc0\x12\xe5\xb6\x33\x3c\x0d\x72\x3b\x9f\x90\xce\x24\x82\x9f\xb7\x29\xf0\x70\xe4\x0b\x65\x54\x05\x4f\xf0\x1d\x9d\x7d\xba\x32\x69\xfd\x93\xc3\xb2\x5c\x29\xd6\xc0\xb2\xf9\x4d\xd2\x87\x44\xdc\xf1\x7b\xcc\xe3\x8d\xbb\x77\x3b\x0a\xb4\x77\x8e\xd6\x2c\x56\xce\x9f\x76\x76\xff\x2d\x4e\x1d\xfd\x0f\xd4\x83\xea\x9a\xd7\xe6\x5d\x38\xf3\xf1\xc4\x0b\x64\xfe\x3a\xd6\x0c\x6c\x31\x70\xb5\x78\xf3\x53\xf0\xfd\xe0\x31\x9e\xa5\xf5\xc3\x21\x4f\x47\x71\xee\xbc\x8b\x70\x42\x34\xc4\x31\xf7\x88\xa6\xae\x4f\x88\x5f\x13\xd5\x81\xf7\xb0\x65\x90\x6b\xf8\xa8\xd3\x3a\xf2\x22\x6f\x93\x6f\x97\x71\xfd\xf6\xba\x3f\x52\x4c\x11\xc3\xd8\x31\x0f\x49\x85\x93\x64\xa7\xc2\x8c\x23\xc8\xb0\x71\x96\x10\x3e\x85\x56\x2f\xcc\xc3\x55\xdd\x80\x77\x55\x15\x4a\xb3\xc8\x04\x4b\x1a\x9c\x72\x4a\x55\x94\x4f\x4d\x7e\x5a\x21\x5c\x23\x1b\x24\xa3\x51\x11\x87\x01\xab\x7e\xbc\xe4\x84\xa2\xd7\xc9\x3a\x34\xf4\x61\xdb\x91\xcd\x2d\x77\xfc\xc8\xa9\xe1\x53\x75\x1f\xab\x7c\x78\x90\xda\x6c\xc5\x46\x11\x30\x79\xf0\x10\x91\x94\xe1\xeb\x9a\x23\xfa\xca\x2b\xed\xbf\xf9\xa5\x5f\x9e\xff\xd2\x17\xe7\xf6\xb5\x34\x71\xa6\x97\x79\xc1\xb6\x17\x4a\xbb\x72\x04\xb6\xb7\x55\xf8\xf9\xa3\x89\xaf\x39\xac\x61\xa5\x3b\x71\x76\x4f\xd1\xf9\xed\x9a\x5f\x43\x49\x8c\x65\x13\x15\x2c\xe7\xe2\xea\x49\x88\x67\xf9\xba\xa9\x5d\x78\xe8\x08\x36\x3e\x07\xe1\xa7\xa5\x0f\xd3\x72\x06\x5f\x10\x64\xfe\x9f\x61\x06\xf9\x46\x9d\x40\xd4\x53\x92\x3d\xa2\x1c\xeb\xb7\x11\x90\x38\xa6\xed\xa3\x07\xf8\xc0\xb8\x84\x95\x8f\x12\xdd\x79\xca\x22\x61\x6b\x5e\xd6\x79\x8d\x8b\xb0\x00\x28\xb5\x6d\x69\x25\x57\xe4\xb4\xe0\x7c\xbf\x49\x36\x83\xbf\x0a\xe7\x95\xcb\x77\xb8\xec\xf7\x15\x0c\xa4\x88\x56\xd1\x1b\xf0\xf7\x56\xf2\xaa\x79\x6a\xf6\x62\xbf\xb0\x11\x9b\x68\xf1\x27\xfa\x72\x6c\xd1\x53\xf0\x7e\x5c\x1b\xbf\x03\x22\x32\x6d\x84\x80\x96\x3c\xa4\xf1\xa4\xaa\xc5\x95\x61\x4b\xb6\x48\xb2\x5a\x8e\x78\xfd\xae\xaa\xc5\xdd\x6d\xe0\x09\x1b\x27\x51\xc8\xce\x2b\x77\x7f\xfd\x6f\xb4\x43\xf8\xba\x89\x4e\x38\x36\xe3\x61\x3e\x04\x78\x00\xc7\xd6\xf1\x8e\x2a\x51\x1d\xaf\x39\xee\x47\x0f\xb4\x93\xc5\xc5\xcc\xe6\xb9\x24\x48\x45\xb5\x90\x4c\x29\x56\xf6\x15\x3a\xab\x50\xb4\xde\xd5\x7d\x54\x95\x4a\xe3\x25\x2e\xc5\x8b\x4a\xa7\x6f\x2a\xe1\xe2\x20\x9b\xcd\x06\xc5\x88\xd9\xf6\x8a\x35\xdc\x42\x23\x34\x20\xe5\xc7\x9d\xbe\x56\xb9\x92\xe4\x5d\x1b\x84\x47\xf3\x22\x5d\xfc\x2b\x91\xb6\x35\x95\xa2\x87\xa6\x3f\xad\xf2\x9f\xc7\x31\xd3\x70\x9d\xfe\x40\xc5\x4e\x6b\xd8\x24\x38\x20\x4e\x34\xe9\x95\xd8\xd7\x02\x6b\xfb\x15\xe4\x25\x36\xa3\x30\xde\x2b\x98\x72\x91\xe5\xc9\x28\x03\xe7\x88\x04\x74\x9e\xb1\xe1\x82\x42\x1d\x0d\x4c\x3e\x74\x7d\xdd\x12\x77\x1f\x57\x82\xa8\x37\x71\xf4\x08\x78\xf6\x61\xa5\xc5\xf3\x3a\x5a\x6f\xd4\x2e\x77\x5b\x9e\x36\x1e\xeb\xf0\xd3\x18\x89\x26\x7f\x13\xfe\x25\x20\x8e\x5d\x0c\x93\x03\x7a\x96\x8f\x2e\xe9\x31\x8f\x13\x60\xa5\x07\x99\x79\x8f\x46\x1b\xa4\xe1\x68\xd4\x52\xbd\x6c\xe7\xb0\x1e\x05\xf4\x2e\xd9\x87\x41\x6a\xfa\x44\x6c\x7c\xe8\x90\x67\xcd\x70\x61\xef\x19\x65\x74\xc6\xc3\x30\x0a\xc7\xd3\x74\x04\x20\xc5\x88\x9c\x17\xfc\x40\x14\x50\xf8\x9a\xde\x90\xff\xa6\x92\x8c\x0a\x52\xe4\x8d\xe1\x6a\x6c\x10\xfe\x83\xaf\x6b\xc0\x85\x17\xe6\xa0\xd7\x5b\x1e\xee\x58\x8d\x8c\xfc\xe7\x9b\x8e\xaf\x7e\x04\x69\x11\x3a\x98\x1c\xd2\x9c\x6f\x2a\xe1\xd3\x37\x1d\x79\xb1\xe9\x8f\x42\xd2\x15\x43\xea\x49\xb8\x8a\x94\xec\xae\x4f\x92\x24\xe9\x92\x1d\xed\x51\x34\x71\x27\xe8\x1c\xc1\xc1\x7f\x87\xe0\x8f\xd8\xb2\x27\x74\x1b\x87\x4a\xe4\xfd\x78\xe2\x5b\xc5\xde\x53\x48\x9a\x51\x48\xac\x26\xaa\x69\xf7\x94\x22\x8d\x3d\xd5\x84\x67\xe9\xa7\xe1\x32\x6f\x78\x99\x18\x85\xbb\xbe\xa8\x2a\x6b\x77\x14\xd6\xcf\x44\x91\x1d\x40\xe8\x70\x8f\xe2\x63\xbf\xa3\x9e\xf7\xde\xc4\xf7\xbe\xa2\xc5\x92\xff\x5d\x83\xf9\xee\x00\x58\x26\xb6\x42\x4f\x68\x64\x90\x9f\x94\x2c\x9c\x8f\xdc\x2f\x6a\x68\xda\x31\xad\x80\x74\x43\xb3\x93\xd8\x41\x11\x2b\x14\xe7\xa4\xe3\x9b\x22\x26\x4d\x79\xb5\x51\x18\x85\x79\x69\xbd\xa6\xbc\x8a\x34\xc0\x7a\xb0\x3a\x1b\xaa\x9e\xf6\x2d\x15\x74\x8e\x92\x3c\x71\x0a\x64\xc2\xbc\xd0\x9a\x53\x1d\x4f\xe5\x44\x63\x70\xb7\x15\x1f\x55\xdf\xe6\x36\xc8\x77\xa8\xc4\x38\x3a\xfb\x0b\xea\x17\xd2\x30\x58\xb2\xab\x2d\x95\xa1\x3b\x5f\x15\xe2\x79\x5c\xd1\x15\x8d\x46\x26\x58\x02\xe3\x1d\xc2\xfa\x1b\x38\xe5\x24\xc9\xe2\x85\x7a\x4e\x7a\x99\xc5\xb4\x74\x96\x84\x53\x0f\x6e\x3c\x43\xd4\xf8\x46\xa5\x57\x33\x9b\x67\x33\x3e\x96\xdd\x45\x71\x23\x6c\x06\x58\x12\x39\x96\xa3\x5f\xe2\x7f\xd7\xdf\xb5\xee\x3a\xfb\x83\xa8\xc8\x83\xe1\x94\xc7\x2c\x6c\xe2\x84\x17\x36\xc7\x96\x53\xed\x3e\xab\x46\x83\xa4\x41\x23\xae\x3e\xc3\xab\xba\xa6\x0c\xcb\x86\xb6\x8e\x08\xc9\xe0\xa8\xfe\xf9\xa4\xc2\x24\xa2\x1a\x5f\xde\xd6\xf2\x04\x71\x38\x62\x4f\xcc\x35\xdf\xa1\x9b\x83\xaf\x55\x2f\xe5\x57\x0a\xdb\xb3\x41\x92\xee\xf5\x2b\xeb\x0e\x10\x80\x0e\xb2\x57\xba\x3b\x28\xe9\x02\xcb\x87\x6d\xf5\x13\x78\x48\xfc\x1f\x78\x14\x98\x7d\x34\x3a\xc8\x7f\xf8\x9f\xca\x4d\x18\x25\x29\x23\xfb\xc4\x2e\xd2\xe7\xc4\x30\x36\x38\x88\xcb\x26\x28\x98\xb0\x5d\xfc\x1a\xe5\xe3\x38\x43\x9d\x8c\x89\xc7\x8f\xbe\x1a\x90\xa0\x6f\xd2\x0b\xf3\xb5\x22\xa7\x30\x23\x93\xdb\x22\x55\x3d\xde\x38\x17\x85\x8c\xb9\x41\xda\x34\x4a\x56\x66\x34\xa2\xd0\x73\x04\x7d\xf7\xb1\xae\x67\x00\x07\xa0\xd0\x65\x96\x5d\x91\xe3\x76\x2d\x91\xf6\x6c\x3b\xb2\x83\x30\x2f\x67\xc9\xe2\xd8\x45\x29\x08\x82\x9d\x7c\x5d\x2b\x8d\x50\xb1\xb9\x0c\x7b\x69\xe5\x22\x09\x0f\xb2\x08\xd7\xab\x5e\xce\x08\x72\xce\x1f\x4d\x3c\x98\xfb\x0f\xb0\x7b\x80\xfb\xbf\xde\x04\x1c\x21\x05\x4e\x03\xca\x5e\xc7\x1a\x5d\xce\x0c\xdf\x34\xb1\x5f\x16\x71\x6a\x96\x3d\x5e\x19\xe5\xa0\xf5\x8e\x47\xfa\xac\xab\x65\x66\x11\x1d\xd8\x3d\x5e\x3e\x52\xcb\x36\xbe\x89\x4d\x83\xff\x00\xa1\xbb\x13\x37\x2d\x17\x3c\x7f\x82\x8e\x18\xfe\xa3\xc6\x83\x20\x5c\x16\x7f\x11\xf5\xd6\x9b\x13\xc5\x4e\x7d\x4d\x65\xfb\xf7\x74\x1b\x3b\x64\xc3\x41\x41\x6b\xe3\x17\x5f\x92\xc3\xa3\xa3\x00\x71\x17\x55\xbe\x2a\x30\x69\x0a\x26\x77\xc7\x6b\xe5\x98\xb5\xde\xaa\x89\x9d\xbe\x30\xd7\x0e\x4b\xaf\x25\x48\xca\x43\x27\x94\x02\xb1\xd3\xca\x9d\x9b\x73\x24\x33\xbe\x68\x1f\xf5\x12\x78\xd9\x12\x4b\x51\x0e\x4b\x82\xa9\x86\x86\xc8\xd8\x32\xc5\x1e\x9c\x8b\xa9\x35\xff\x78\x90\x05\xc6\x21\x7e\x53\x95\xd0\xc6\xd6\x2c\x21\xc0\x74\x4a\xe2\xe5\x2f\x0a\xcc\xb2\x81\xc6\xd8\x03\xff\xe9\x15\x80\x95\xbb\xae\x70\x73\x5a\xa7\x34\x30\x69\x2e\x0b\x04\x79\x07\x54\x79\xf8\x5a\x85\xdd\xcb\x26\xe3\x9a\x14\x92\x4f\x27\x54\x22\xea\x44\x23\xb1\x7b\x56\x8c\xc7\x49\xca\xd5\x00\x46\x2c\xd2\x92\x12\xf4\xe2\x4e\xe0\x85\xe4\x03\xcc\x68\x94\xc4\x21\x68\x70\xe6\x39\x8c\x02\x22\x8b\xaf\x6b\x08\xae\x32\x84\x49\x49\x72\x74\x1b\x7c\xab\xdb\xa7\x3a\xba\x4f\x2d\x0f\x86\x94\x78\x7b\xc1\x97\x22\x75\x7e\x44\x27\x93\x6f\x56\x80\x67\xd8\xbe\x5c\x60\x56\x40\xba\x33\xaa\x48\xf4\xdc\x3f\xfe\x39\xcc\x10\xe2\xf2\xf5\x89\xef\x85\x58\xef\x3c\x55\xd7\x5c\x3c\x78\xf0\xc1\x0a\xc0\xc6\x3b\x1d\x7b\xd6\xfc\x91\xfe\x47\x1d\xa5\xad\x70\xba\xa3\x6a\xff\xb7\xb5\x1e\xe0\x2d\xbc\x08\x0e\xe9\x5b\xe4\xd6\x55\x10\x33\x4e\x84\xaa\x7c\x40\x64\x93\xce\xa8\x84\xe9\x5d\x97\x62\x8f\xcc\xd8\x81\xba\x10\x93\xae\xe3\x09\xf8\xa6\x51\xbb\x2f\x18\x0a\x21\xa3\xb0\xcf\xfb\xc5\xf3\x56\xad\x80\xf0\x77\xda\x69\xd8\x8f\x2c\xeb\x66\x28\xdd\x5e\x47\x54\xd3\x18\x4f\x64\x79\x1a\x2e\x41\xae\x43\x24\xf5\xe8\x6d\x1c\xf8\xdb\x11\x36\x82\xee\xfb\xf3\x72\xeb\xcf\xb6\xfb\x76\x64\xe2\x3e\x31\xf4\x20\xa9\x77\x1b\x86\x17\xa8\x1b\xe6\x73\x73\x0c\x9f\xe5\x48\x88\x2c\xac\x4f\xee\x7e\xda\x44\x23\x30\xb6\x6c\x30\x2a\xee\x98\xe0\x24\x1a\x34\x4e\x8a\xcc\x12\x8c\x52\xd4\x5f\xbd\x81\xd9\x43\x7d\x8b\x48\x2a\x7c\x3c\xa9\x76\xb5\x97\xcf\xca\x19\x39\x9a\x43\xe9\x0e\xd8\x59\x48\x3c\x74\x88\xcb\x40\x99\x53\xbb\x15\x3f\x0e\xdc\xca\x7c\xad\xce\xfe\xd4\x0e\x8a\xd1\x48\xba\xbe\x44\xe1\xdb\x83\xe2\x8f\xab\x1c\x59\x9c\xe4\x61\x10\x1a\xd0\x34\x61\xe5\xde\x50\x0a\x17\x7f\x80\xb7\x17\x52\x8a\x9d\x1c\x3e\x7f\xb7\x3d\xb6\x29\x0e\x55\x69\x6f\x29\x67\x8d\xaf\x2b\xee\xf9\xc0\xa4\x7b\x68\x4e\x9a\xd2\x18\xb4\x09\x84\xbb\xaf\xa2\x51\x47\x3f\x2f\x37\xd8\xcd\xf2\x77\x3b\x13\x63\x07\x0f\x52\x60\x98\x64\xc9\x78\xc8\x14\x31\x42\xaf\xeb\x57\xc9\x86\x73\x26\xc3\xd1\xa8\x88\xed\x8c\x6f\x33\x9f\xe9\x2a\xf9\xd9\x89\xa2\xd5\xfd\xc1\x44\x23\x2a\xcb\xc9\x82\xd7\x7e\xbc\x89\x4a\xcc\xb3\x52\x66\x5a\x53\xe6\xa2\xd2\x94\xf1\x22\x40\xc3\xa4\xc8\xec\x4a\x92\x72\x0e\x14\x09\xb4\x93\x2a\xef\x78\xb2\x56\x23\x2a\x7f\x82\xc2\xdf\xb1\xe2\x39\xc3\xf3\xdc\xd7\x74\xe6\xf7\x15\x3e\x25\xcc\x46\xfb\x15\x2d\x0a\x92\x72\x38\xb7\xe0\x75\x03\x91\x72\xd3\xd3\xc4\xfe\xab\xff\x0c\xd1\xbc\xa4\x32\x5d\xb5\xee\x1f\x7f\x61\xcd\x6b\xd7\x72\xb9\x59\x44\xeb\x55\x03\xd3\x74\xd7\x9f\x36\x69\x98\x2d\xad\xb6\x28\x6e\x13\xbe\x80\x96\x22\x12\x78\x5c\x09\x1f\xd8\xbe\xc9\x45\xe2\x49\xe0\x24\xe5\xcf\x79\x34\x89\xcf\xda\xf5\x4c\x3a\x2d\x45\x5d\xa7\x2b\x8a\x1a\x26\xac\xff\x25\x0d\xbf\xbc\x50\xa1\xc7\x5d\x0c\x91\x1f\x93\xf6\x1c\x7a\x0d\xd9\x81\x4d\x8c\x3e\x8b\x26\x8a\xa6\x7c\x37\xe1\x1d\x95\xd6\xbc\x0b\xbb\x03\x4f\xf0\xdf\xab\x53\xf6\xd5\x24\x8c\xf3\x7d\x5a\xe1\xcc\xe3\xda\x99\x45\x47\xf5\x1c\x1e\xf6\x35\x45\xaf\x26\x42\x67\x80\xd3\x0f\x9e\x9b\xd3\x2a\x23\xde\x5f\x6c\xc0\xe0\x05\x49\x9f\xfb\xcb\x85\x84\xa0\xe5\x38\x47\xd7\x5d\x0e\x22\x32\xa4\x6b\x29\x4e\x03\x1c\x80\xdd\x60\x9f\xe0\x9b\x5a\x4f\xc6\xfc\x8b\x87\xdb\x10\x2a\x5f\x38\x20\x30\x8d\x56\x97\x82\x18\xbe\x59\x73\x34\xfe\x76\x10\x66\x91\x29\xa3\x5d\x72\x36\x24\x78\xa2\xb7\xe5\x1b\x07\x8f\x4a\x46\x71\xd8\x6a\x29\xce\x07\xa5\x0c\x70\x5e\x65\xc5\x1c\x1e\x48\xa1\xfe\xa0\xd6\xcf\xd7\x0d\x01\x80\x09\x82\x22\xf3\x35\x55\x94\x74\x90\x32\xe2\xeb\xc9\x83\x6e\xb3\xfc\x57\xff\xf9\x94\xd2\x60\xd9\x40\xed\x84\x97\xb8\x8a\xeb\xae\x34\xc9\x4e\x0c\xad\x89\xf2\x61\x60\x52\x5d\xbb\xbb\xa8\x29\x45\x2e\xd6\x36\x34\xe5\xf3\x7b\xa9\x35\x4b\x8b\x86\x79\x43\x85\x6a\xb4\xe5\x44\x8e\xce\x37\x88\x1c\x1d\x6e\x9b\xfe\xb2\x89\x03\x0e\xf2\x90\x74\x39\xaf\x49\xa3\xce\xd7\xd6\xf2\x0b\x73\xed\x51\x12\xf5\x81\x92\x86\x45\xbc\x89\xc2\x9a\xf4\x88\xb7\x1c\xef\xc1\xaf\xea\x86\xa3\x53\x0d\x69\xe3\xf9\x76\x16\x0c\x6d\xbf\x88\xaa\x5a\x2f\xf0\x82\x64\xa5\x7a\xff\x34\x59\x5c\x0c\x03\x9b\x3e\xec\x99\xcc\x28\x5b\xb2\xbd\x86\x47\x46\xd0\xbd\x17\xd8\x37\x54\x10\x71\x9a\x08\xf7\x09\xcd\x4a\xe5\x50\x16\x9e\x1f\x18\x41\x9c\xbf\xef\x75\xfc\x1b\xfc\x0e\xce\x5c\x98\x06\xa4\xe1\x9c\xca\x68\xb9\xfd\x64\x94\xca\x68\x82\x7f\xa5\x53\x11\x3e\x2c\xa8\xff\xa2\x5c\xdb\x98\xf4\x2d\xb5\x00\xb6\x6a\x23\x22\x3e\x6f\x9c\x2c\xb1\x7d\x11\x9e\x01\xe5\x23\x6e\x76\x1e\x55\x8d\x35\xfd\x50\x48\x62\x5c\x9d\xd7\xd7\x7c\x9b\x84\xad\x7a\xc4\x65\x26\x3b\x16\x07\x2d\x53\xc4\xf3\x8d\xea\x98\x19\x14\x26\xed\x2b\x2e\x79\x64\x46\xf9\x5a\x9d\x0f\x36\x78\xee\x01\x1a\x10\x61\xdb\xa7\xe7\x45\xe2\x7f\xba\xeb\x85\x6b\x76\x75\x31\xd2\x8e\xfd\xa4\x9c\x37\xdc\x7c\x15\x26\x09\x7b\x10\x5e\x29\x0a\x72\xd5\x16\x6e\xd7\xd0\xf8\xfb\x64\xb4\x25\x75\x2d\x06\x69\x64\xd3\xc0\xc4\x79\x18\x59\x3e\xd8\x1a\x1d\x4b\xff\xe0\xbf\x30\x7b\x78\x5a\x51\xab\xfd\x80\xfd\x7d\x51\x29\xa1\x81\x05\xa8\x93\xb1\xf8\x82\xad\xf3\x5f\x51\x44\xf9\x03\x1e\x08\x0e\xaf\x1d\x3a\x43\x5f\xc0\x52\x94\x1a\x55\xf9\x4a\x12\x0f\x7a\x7d\xe3\x63\x1d\x45\xba\x7a\xb1\xca\x4a\xeb\xb5\xf1\x36\xa8\xf8\x8c\xfc\x2b\x3f\x09\x57\x6d\x55\x0d\x72\x90\x16\x36\x4b\x46\xdc\xbc\x22\xfc\x03\xad\x5f\xfa\x12\x87\xd4\xeb\x34\xaa\x48\xa2\xdd\x51\x48\xad\x25\x1b\xc7\x36\x1f\xf2\x88\xe1\x3d\x36\x34\xfc\x67\xa3\x16\x9d\x95\x7b\x97\x84\xf0\x21\x8a\xc0\xdb\x57\xb8\x71\x69\x5a\xf9\x46\xd1\x04\x66\x86\x50\x12\xb3\xce\x93\x2a\xdf\x4f\x18\x56\xbd\xa8\xf4\xf1\x26\xa3\x03\xf5\x61\x9f\xba\xb8\xad\x52\x17\xb7\x6b\x1f\xa0\xc7\x33\xb9\xc1\xce\x70\x7a\x06\x73\x73\x72\x5d\xa3\x9f\xf7\x7a\xb1\x36\xdb\xeb\x03\x87\x13\x7a\x9f\xef\xdd\x81\x37\x2d\x07\x88\x49\x45\x3b\x9e\x38\xfd\x38\x95\xf0\x1d\x8f\xb4\xcb\x28\xd6\x81\x7a\x84\x62\x33\x69\x3e\xe5\xa9\x3c\x50\xbd\xc2\x0a\x3f\x33\xf1\x85\xa9\xb7\x9a\x20\xd5\x24\x4a\x4f\x75\x02\x19\x6b\x1f\xd7\xd7\x19\x3b\x5d\x40\x9d\xda\x69\x4f\x0d\xbe\xa9\xe4\xcd\xcf\xf1\xea\xc7\x34\x7c\x82\x0d\x09\xa3\xb0\xab\xfb\x44\xc5\xcb\x0a\x83\xdc\xf6\x67\xca\xaf\x91\xba\x83\xcf\xf3\x1d\xa7\x52\x48\x45\x5d\x05\x49\xd3\x2b\x0a\x00\x70\x75\x67\x30\x3c\x37\x37\xdf\xfe\xc5\x97\xa8\x42\x02\xbb\x71\xaa\xe3\xcb\xe2\xa7\x9c\xc3\x9b\x15\xe9\x38\x2a\x9c\x2c\x13\x9c\x80\xeb\xda\x23\xb8\xae\xce\xfa\x22\x5e\x49\xc3\x3c\xb7\x71\xab\xc2\xe0\xa2\xd0\x93\x8d\x8c\xe4\x43\xc2\x5c\x52\x66\x0a\x89\xbb\x2b\x4a\xa2\x17\xa5\x05\x24\x41\xbf\xa9\x9c\xcf\x30\xce\x53\xd3\x37\xab\x54\xf4\xc6\xac\x41\x82\x92\xaf\xbb\x52\x8c\xe9\x85\x79\x30\x6c\xd5\x9a\xbb\x04\xbf\xd2\x50\x1e\x5c\xb2\x69\x94\xc4\x70\x09\x24\xb7\x4b\xe3\x2a\x69\x5b\x6f\x8d\x96\xc3\xfe\xb4\x6f\xaa\x7a\x9f\xa6\x05\x19\x0b\x6e\x66\xaa\x50\x9e\xc0\xea\xbc\x5f\x0b\xe7\x0f\xce\x96\x81\xb6\xb5\xf9\x94\x07\xec\xc2\x9b\x70\x6d\x70\x9e\x88\xe3\x07\x2a\xd1\x16\x25\xbd\x1e\x7c\x24\x61\x1e\xf4\x5e\xf2\x4d\x95\xd7\x2d\x23\xcc\xc8\xa4\x33\x9e\xbe\x80\xfd\x35\x78\x2b\xef\x4e\xaa\x10\x2d\x87\xe8\xb9\x30\xd1\x0f\xd4\x90\xf9\xc9\x4d\xaa\x91\xf4\xef\xd1\xdf\xcb\xc1\xfe\xa8\xa2\x84\x2e\x67\xab\x55\x29\xcd\xb7\x9c\x8c\xcc\xa9\xc9\x53\xea\x49\xc7\x26\x35\x4e\xf4\xea\x65\x97\xb0\x52\x45\xab\xcd\xda\xee\x7c\x69\xbe\x9d\x8d\x92\x25\x76\xa1\x51\x0d\xbb\x02\xbb\xc8\x37\xea\x04\xf9\x99\x7f\xf0\xf7\xa6\x55\xe3\xdf\x95\x4a\x00\x4b\x23\x81\x52\xca\x07\x2a\x49\x7e\xdb\x79\x01\xc5\xa8\x97\xda\x28\x32\xf8\x29\x16\x5e\xab\x88\xb0\xfd\x94\x4f\x20\xa6\x49\x90\x9a\x2c\x0f\x63\x7a\x23\x48\xd8\x09\x8b\x29\x0d\x86\xf0\x9b\x96\xbf\xca\x72\x2f\x70\xef\x44\xfb\x45\x91\xe6\xd9\x10\x67\xa7\xab\x05\x4b\x07\xfc\x7f\xb8\xa7\xa4\xaf\x2b\x3a\x3c\x5f\x6b\x30\xd5\xcf\xc3\x54\xfb\xf8\xe2\x92\x2e\x62\x5e\xea\x28\xaa\x6a\x4a\xfe\x64\xd3\x2d\x45\x8d\x51\xee\x36\x7c\xf7\x5b\x74\x46\xba\x26\x04\xd7\x03\x77\xb7\xb6\x4e\x9e\x6b\x47\xcf\x8d\xd1\x13\x8a\x67\xdf\x85\x36\x72\xbe\x59\x6b\x20\xe5\x1f\x5a\xe3\x04\x35\x31\x1b\xd4\x92\x2b\x50\xe2\xdd\xdd\xa7\x3c\x35\x52\x91\x67\xb9\x89\x45\x6c\xf2\xe5\x6d\x56\x8d\x13\x2e\x2d\x95\x48\x3b\x55\x09\x48\xe3\x5e\x30\xe5\x3b\x96\xce\xe2\x53\x30\x97\xe7\x95\x22\xc2\x6d\xc5\x74\x94\x25\x45\x3e\xec\xa5\x49\x22\x04\xe7\xd8\xeb\x9c\x08\xe7\x9b\x89\xd2\xe5\xb1\x71\x4b\x33\x95\xbe\xa1\x79\x0f\xde\x50\xf5\x56\x9b\x95\x5b\x24\x24\x7a\x27\xfa\x13\xb8\x0d\xef\xd2\x78\xf3\x75\xcd\x2b\x98\x3d\xd2\x0e\x92\x78\x90\xda\x0c\xd4\x50\x64\x08\x94\xf7\xed\x44\x8c\xdd\xe2\xed\x45\x96\x49\x61\x3c\xe1\x60\xc7\x37\x86\x7c\x58\x2b\x7f\x1c\x3c\xd8\xfe\x4a\x91\xe4\x29\x97\xcb\xa4\x7b\x50\x35\x40\x5d\x70\xec\x10\x66\x85\xdc\x21\x25\x05\xb2\xa7\xeb\xcb\x85\x7b\xd6\x1a\x3a\xc2\xc6\x45\x36\x4c\x96\x99\x6e\x81\xcf\x41\x3a\xdb\xe5\x4c\x7c\x5a\xd5\xed\xf2\x30\x08\xc7\xbc\x91\x0e\x1d\x5a\xe0\xef\xdd\xbd\x46\x35\x38\xbe\xa1\x8a\x93\xf0\xc8\x78\xbc\xff\xe9\x5a\xbd\xe8\xe8\x81\xb9\xf6\xd0\xac\x2c\x65\xd3\x00\x07\x4a\x05\x5d\xf5\xe8\xef\xea\xd2\x4e\x94\xe8\xc1\x03\x6d\x3e\x55\x9a\x3f\xac\xee\x1c\xad\x4e\xf9\x63\xe0\x47\xaa\x66\x76\x96\xd8\x79\x44\x3b\xb6\x01\xa8\x10\x99\x3e\x2c\xb8\xe2\xca\x9f\x77\x04\x4c\x35\x7d\xb4\x83\xa5\x85\x8c\x4c\x96\x73\x27\x33\x92\x47\xe7\xc8\xc3\x45\x6d\x6c\x77\x97\x46\xc7\x95\x83\x9d\x8f\xf2\x89\x8a\xed\x16\x4d\x50\x3e\xf6\x94\xaf\x19\x9d\xdb\x21\x26\xe0\x65\xc4\x6f\x2a\xdf\x95\x9b\xa8\xf7\x68\x6a\x57\x55\xee\x7f\xb7\x33\x55\x11\x6f\x3f\x38\xcb\xc3\x77\xb3\xe3\xab\xad\x8c\xd8\x96\x26\xd6\x1d\x8e\xc9\xc1\x83\xed\xa3\x07\x5e\xde\x4f\xef\xe0\xc8\x1d\x5f\x72\xb9\x28\x12\xe7\xd8\xe6\xc6\x2a\x38\x6e\x0f\x93\x35\xd9\xbe\xd4\xf1\x6a\x56\x77\x95\xf0\x1e\xaa\x3b\xd2\x04\xa6\x34\x34\xee\x36\x72\xed\x16\xe3\x54\x75\xfc\x89\xc8\x53\xcb\xf1\xce\xac\x37\x79\x0c\xa0\x95\x82\x66\xa8\x28\x7f\xd1\x70\x0a\xb3\xa1\x87\x0e\x6e\x55\x5b\xac\x6c\xfa\x84\x87\x20\x42\xa3\x13\x91\xc4\x36\xc6\x95\xbb\x77\x50\xde\xc2\x78\x9c\x03\x22\x54\xd2\xd7\xb4\x48\x9d\xaa\x5f\x39\x2c\xc2\x74\xa6\x59\xef\x3e\x51\x24\x2b\xdc\x72\xe3\x10\xb4\x47\x05\xbe\xb7\x8f\xf2\xdf\x22\xd3\xa9\x4a\xf5\x37\x3a\x1e\x71\xf2\x17\x1d\x75\xe0\x9f\x00\xba\x08\xb1\xd5\xf7\x27\x4a\x94\xe5\x02\x96\x02\x5e\xfa\x77\x1c\x34\x66\x31\x74\xfa\x8e\x48\xcd\xa1\x9f\x45\x50\xb4\xf4\xce\x12\xfc\x7a\x38\xcd\xc0\xc4\x9a\xce\x17\xe4\x85\x7c\x5d\xab\x27\x96\x6f\x0d\xad\xf1\xdc\x84\x31\x28\x18\x1d\x59\x23\xeb\xee\xf1\x8d\xb3\x5d\x99\x5d\x0a\xb3\x22\x54\xbc\x3a\xff\xa6\xca\x91\xfe\xa8\x96\x1c\x5c\xb2\x02\x07\x71\xc4\x5a\x3e\xa1\x33\x51\x3c\x24\xd7\x6a\x45\x42\x09\x0b\x86\x28\x91\x2a\x40\x93\x82\x0b\x6d\xe8\x1d\x97\xc4\x79\x9a\x44\x0f\x4e\x79\xa5\xdc\x2b\xc8\x60\x8a\xf6\x8e\x27\x78\xb8\x4e\x73\xe9\x64\x78\x9c\x3f\xbf\xae\xd8\x7a\xaf\x55\x91\x50\xf4\xab\xd2\xde\xa9\xe3\x11\x86\x9a\x0a\x82\x54\xf5\x10\xd7\x32\x62\x07\x67\xcb\xa7\xcc\x6c\x50\x38\x41\x0e\x66\x54\x51\xe2\x38\x5b\x35\xf0\xc0\xdc\x5c\xbb\x67\x62\xc5\x64\xb6\x55\x91\x8d\x57\xb0\xa7\x31\xf1\x07\xc5\xd8\x92\x58\x2a\x57\x27\x1e\x77\x78\x55\x49\x6b\x06\xa6\x17\xb1\xec\xa5\x38\x97\xaa\xed\x1e\x25\x45\x29\xe0\x7a\x9f\x65\x6a\xad\x34\x55\x98\xc0\x7f\xa7\xc8\x46\x17\x4d\x40\xa0\xa1\x9c\x19\xcf\x30\x84\x80\x8b\xf0\x75\xbd\x69\xf9\xc5\xc3\xed\x5e\x92\xe7\x09\x80\x19\xd8\x99\x37\x54\x13\xc4\x8d\xca\x9b\xb1\x66\xe8\xe7\x68\x1c\x08\xf5\x44\x4a\x68\x6a\x4b\x5e\xce\xb4\xe7\xd3\xfd\x0b\xec\x38\x38\x61\xdb\x9d\xd6\x0e\x99\x31\xe9\x25\xf3\xee\x35\xe5\x8f\x91\x28\xa3\xdf\xc4\xba\xc1\xd3\xf1\xf5\xc4\x37\x5c\x8c\x4c\x1c\x8e\x8b\xc8\x15\xb2\xe6\x38\x01\xc4\xed\x23\x7c\xb3\xe6\xe8\x2c\x23\x13\xc6\x94\xe3\xd7\xf6\x48\x8e\x11\x8c\xbd\x70\xc8\xab\xcd\xf5\x2f\x26\x4f\x29\x35\xc5\x34\x8f\xc1\x97\xc8\x00\x20\x71\xf9\xe9\x45\xb1\x50\x4f\x2b\x96\x87\xa9\xae\xfa\x89\xe9\xae\xf7\x83\x1f\x27\x04\xb7\x52\xb5\xf2\x46\xb7\x97\xbc\xd6\xfa\xbc\x34\xbf\xd3\x0a\xcf\x73\x3b\x1a\xe7\x2c\x4b\x02\xfb\xb6\xae\xeb\x0e\xdb\x2a\xd4\xda\xa6\xed\xc1\x7f\xa4\xfa\xcd\xc8\x08\x71\xbf\x99\x43\x73\x2a\x98\x67\xa5\xc4\x61\xfa\x8a\xa3\xfa\x3e\xfd\x1d\x5f\xab\x9c\xd3\x38\x4d\x46\xe3\x5c\xf4\xd3\x10\x9b\x00\x35\xc0\xd7\x13\xfd\xd6\x15\x5d\xaf\x9d\xbb\x76\x6e\xee\x70\xdb\x8c\xc7\x51\x48\x5b\x86\x8e\x2e\x7c\xc7\xbf\x86\xe5\x87\xe1\x86\x67\x2f\x14\x0f\x4a\x2f\x26\x1c\x95\x0b\x83\x5f\xce\x6d\x77\xbf\xf5\x9b\xd2\x2f\x71\xe2\x08\xff\xa5\xf3\x5a\xb7\x61\x37\xe8\x4c\xce\x97\x6b\xd0\x0c\x6c\x2a\x95\x33\x16\x6b\xa9\x2a\xb7\x78\xe3\xbc\x64\xc3\xd7\x4d\x38\xe5\x03\xfc\x0d\x55\x3e\xfe\x6d\xcd\xa4\xb9\x55\x29\x30\x65\x36\xfb\x42\xb9\xc2\xb6\x19\x83\x8e\xa5\xfd\x10\x2d\x59\x3a\x40\x2f\x3d\xd1\xa5\x02\x0a\xca\x2c\xd7\xc8\xb5\x41\xfd\xe4\x12\x0c\xa5\x4b\x41\x38\x78\xd7\x8f\x81\x0e\x43\x8a\xf5\x3d\x45\xa8\xd6\x5a\xa3\x43\x53\x00\xca\x34\x95\x22\x07\xe6\x11\x2a\x8f\x74\x55\xe2\xe4\x24\x25\xec\x18\x34\xaa\xf9\x07\x3e\xe3\x24\x12\x0e\x70\x96\xd9\x42\x15\xe6\x4d\xf8\x09\x8e\xf3\x64\xf6\x88\xd3\x46\x22\x9f\x41\x44\x13\xcb\xb5\x8b\x6d\x49\x7b\x46\x34\x40\xef\x4c\xbc\xce\xc9\xf5\x46\xcd\xc0\xbe\x8d\x43\x5b\xa1\xcc\xbf\xa2\x15\x5a\xaf\x54\xa3\xad\x3c\x79\x5a\x49\x6c\x7c\xa2\x7a\x53\xf7\xae\x29\xe2\xde\xe9\x35\x38\xe4\xf0\x4a\xbf\x4b\x27\x1a\xfe\xe7\x3a\x45\x06\x78\xb8\xab\x1d\xd5\xc1\x7d\x0c\x33\x00\xec\x05\xeb\x7c\x0a\xef\x6e\x39\xea\xd2\x19\x86\x91\xe2\x9e\x6c\x2a\xd5\x01\xb1\xba\xa9\xdc\xbb\x0f\x68\xa0\x91\xe8\xfc\x3e\x8d\x99\x63\x6c\x28\x07\x1d\x4f\x75\x1c\x33\x8b\x30\xe1\x0a\x26\x10\xae\xd5\x55\x44\xef\xfc\xf0\xc8\x35\x4b\x67\x01\x8d\x13\xab\x7f\xd7\x62\xe4\x67\x89\x78\x6e\xaa\x42\x79\x58\x8e\x96\xd0\xe2\xd1\x1b\x22\x9d\x7d\xb6\x06\x6e\x3d\x74\x68\xa1\xdd\xb3\x81\x29\x32\x74\xdd\x3b\xbb\xf0\x82\x14\x09\x7f\x58\xe9\x7c\x54\xac\x55\x36\x88\xc2\x58\x22\x42\x2c\xbc\x77\xd5\x22\x7c\xb7\x96\xab\x22\x25\x22\x3b\x22\xbe\xd2\x1d\x31\x80\x78\xf4\x3e\x3f\x45\x12\x6c\x0f\xd3\x54\xb1\xeb\xa2\xc5\x08\x36\xf1\x56\xaa\x57\x51\x0a\x41\xff\x53\x47\x8b\x9e\x96\x8f\x26\xd4\xee\xe4\x07\xbb\x76\x83\x72\x84\x04\xed\xe8\x7b\x40\x6e\x4e\x54\x67\xd6\x45\x25\x33\xfb\x97\x13\xc5\x0a\x86\x90\x84\xfb\xaf\x54\x11\xc6\x7e\xa5\x30\x11\xa5\x6c\x25\x8f\xe4\x01\x22\x10\x5c\xe2\x6b\x2a\xac\x4b\x7a\xa9\x3e\x25\x68\x66\xde\x01\x4e\xe9\x68\xae\x22\x7f\x2c\x9b\x20\xb0\xe3\xdc\x10\xf5\x80\x62\xbc\x42\x7a\x5a\xe0\xe1\xde\x6b\x58\x09\x49\x82\x00\x40\x0e\xbc\xff\x2d\x2c\x49\xbe\x51\x29\x8b\x71\x9a\xe4\x36\xd8\xd9\x7a\x04\x4b\x28\xd8\xb9\x86\x5e\xa9\xd4\x2e\xdb\x78\x60\x95\xe7\xcc\xdc\x64\x7c\xe3\x08\x8e\x93\x5e\x66\xd3\x65\x14\x6b\x69\x72\x98\x2c\x6e\xe2\xdd\x8b\x8b\x0d\x1a\xcb\x87\xdb\x59\x54\x8c\xc6\x53\xba\x8f\x15\xcd\x43\x8e\x6e\xd8\xc1\xb1\x3e\xaa\xb9\x8e\x47\x0f\xb4\x97\x2c\xdc\x67\x46\x3c\xd0\x48\x09\xfa\x41\x0e\xf1\x51\x18\xa4\xc9\x32\xfb\x98\xd8\x86\xc0\x32\xf0\xb5\xa2\xbf\x1b\x99\x74\x10\xc6\x08\xe4\x17\xe6\x1d\xe0\xb0\x9c\x2e\x69\xca\xf3\xc0\x86\xdd\x5d\x29\x80\x11\x21\x6f\xea\xd0\xb5\x38\x33\xef\xaa\xe6\x86\xbb\x13\x91\xe5\x18\x8d\x87\x53\x8a\xe7\x6e\x1d\x3b\x41\xf3\x56\x61\x2d\xdd\x6d\xb4\xb5\x41\x94\xc4\xb2\x38\x24\xe9\x48\xdf\x26\x59\x47\x4f\xfc\xd9\x0f\xb3\x3c\x0d\x7b\x85\x03\x39\x4b\xa9\x58\x73\x8b\xd7\xa6\xe4\xd0\xa1\xf6\x30\x1c\x0c\x6d\x3a\x45\xb3\x00\x5f\xff\x64\x47\xc7\xe1\x0a\x96\x73\x53\x11\x48\x8d\x23\x13\xc7\xe4\x97\x3a\x84\xd0\x27\x9a\x5e\x1f\x90\x55\xfe\x8f\x89\x42\xd6\x5d\x55\x78\xce\x51\xfa\xdc\x3e\xd8\x67\xe7\x91\xbb\xb6\xa4\x3b\x94\xea\x84\x05\x20\x2e\x84\xd9\xed\x4b\x34\x1b\x98\xc6\xb3\xd8\xee\x08\x7b\x98\xbc\xc8\xd9\x25\x17\x08\xfc\xb7\x3f\xdd\x7d\x5c\x65\x99\xb3\x30\xcb\x05\x71\x25\x1b\x8c\xde\x55\x76\x9e\x3e\xbb\xd2\x10\x1b\x41\xda\xcd\x14\x09\xe6\x56\xb5\xa7\x21\x49\xd9\x6d\x75\xe8\xe9\xaa\x60\xf2\xbc\x23\xa7\xf6\x4e\xe7\xcd\x8e\x2a\x28\x5f\xd4\x71\xe0\xcd\x26\xb3\x42\x39\xc8\x32\x1a\xf2\x88\xc8\x2b\x9a\x6a\xad\x0e\x74\x20\xea\xa5\x38\x89\xc2\x5c\x70\x56\x78\x08\xac\x53\xbe\x56\xba\x23\x69\x22\xc5\x49\xe4\xad\xbe\xa7\x49\x7b\xbf\xd7\x79\xba\x9a\xb0\x29\xe3\x9d\xf9\x85\x79\xea\xaa\x14\x49\x9e\x8a\x18\x9c\x67\xb2\x3c\xd1\xf1\x05\x88\x5b\x9d\x4a\x38\x50\xae\x0a\x2c\x91\x3f\x47\x97\x6c\x05\x0a\xc8\xe5\x15\x07\x84\xc9\x4d\x3c\x40\xbe\xf4\x73\x5b\x61\x1a\xc8\xb1\x82\x24\x5e\x2c\x32\x70\x9c\x20\x15\xb5\xae\xd2\x52\xeb\x4d\xe0\xc2\x3c\x89\x61\x66\x1c\xc8\xda\x71\x13\x9e\x73\x8c\x87\xc5\x62\x92\xcd\x68\xa6\x7d\x06\x0a\x53\x70\xf0\x8d\xc7\x90\x8f\x13\x06\xaf\x96\xe3\xc6\x78\x13\x68\xd9\x56\x23\x8d\x6a\x24\x94\xe3\x5c\xe5\x54\xe0\x97\xe3\x4d\x38\x83\x30\x5e\xb6\x99\x6b\x08\x84\xbf\x7e\x8b\x86\x5b\xda\x08\x55\xd7\xf7\xa5\x26\x1d\xdc\x6c\x1c\x3a\x01\x24\xe0\xcb\x8f\x77\x94\xe6\x23\x57\x96\x79\xa1\xbf\x3e\x53\xd1\xe6\xd1\x9a\x3d\x55\x9d\x1e\x2f\xcd\xe3\x01\xed\xe7\x9a\x46\x3a\x35\x21\x62\x09\x6c\x40\xd6\xa4\xe0\x9b\xda\x92\x3e\x78\xb0\x1d\x85\x79\x38\xf0\x3d\xb5\xf0\xb9\xbf\x49\x13\xca\xd7\x0d\x64\x67\xf3\xed\x3c\x49\x60\x45\x51\x61\x61\xc1\x64\xbe\x71\xe1\xdf\xd0\xf4\xca\xb0\x9f\xb1\x1e\x4e\x21\xd5\x65\xa9\xcf\xbb\xc8\xbc\x17\x52\xcf\x5d\x1c\xcb\x62\x44\xc0\xfa\x75\x25\xca\xfb\xf5\x26\x32\xb4\x2c\xb2\xd6\x8b\x7b\x23\x92\x59\x57\xda\x78\xeb\x93\xfd\xfc\xc7\xab\x66\x4a\x81\x3d\xbe\x39\x51\x0a\x52\x67\xe1\xc9\x0b\xef\x76\xc3\xcf\x94\x87\x81\x93\x15\x44\x2c\xf1\x1d\x3a\x6c\xf8\xba\x06\x14\x26\xb2\xf5\xcc\xe6\xd3\xaa\xa9\x88\x73\x28\x70\x2b\x01\xc8\x45\x92\x66\x7f\xd7\x9f\x74\x37\x75\x18\x9f\x26\xaf\xc2\xe9\xc8\xd0\xf5\x07\xaf\xe1\x77\xc8\xea\xf1\x75\x47\x91\x93\x31\x39\xa1\xf4\x57\xee\x5c\xdf\xb3\x47\xda\x63\x9b\xa7\x49\x64\xb9\xdb\x45\xca\x2e\xbe\xdc\x7a\x51\xe5\xe4\xed\xa8\x97\x26\xa1\x10\xbd\x48\xbb\x64\xcb\xd1\x0d\x9f\x6b\xa0\x1b\x26\x40\x97\x9b\x0e\x9c\x4f\xe7\x14\x9f\xf5\x39\xd5\xa0\xd4\x4b\x6c\xb6\x84\xfe\x06\x41\x6f\x78\xb9\x88\x8d\xda\x88\x3e\xf3\x4c\x7b\xd1\x8c\x04\xb4\xc1\xa4\xb5\x3a\xd5\x75\x53\x05\xb0\x7d\x93\x8e\xb8\x4d\x4b\x98\x31\x68\x81\x4a\x4e\x57\xbc\x89\xa8\x97\x4c\x79\x0f\x0b\x89\x8f\x8a\x0e\x25\x8e\xce\x7b\x2a\x77\x90\x85\x7d\xbb\x62\x56\xb3\x96\x62\x98\xab\x50\xcf\x55\x88\xb0\x4c\x1c\xdb\x34\x03\x80\x04\x07\xcb\x7b\x13\xd5\x06\x8a\xc6\x39\xa4\x5d\x2e\xd5\xa2\x99\x72\xa3\xad\x3c\xd7\xaa\x38\x99\x2a\x82\xb9\xa8\xba\x4d\xe1\x6e\xd3\xa8\xa3\x7e\x01\x54\x2b\x5f\x93\x05\x43\xd4\xbc\xae\x22\xe8\x75\x45\xec\x61\xb2\x61\x92\x72\xcb\xb5\xeb\xfd\x2a\x1f\x54\x08\xc1\x14\x76\xe8\xd5\x84\x46\xb6\x02\x96\xe0\x1b\x07\xc6\x0f\x86\xd6\xa9\xb2\x08\x4b\x84\x82\xcd\x9e\x53\xd5\xff\x2f\x25\x56\x51\x5b\x5e\xd5\xc9\xd4\xab\x8a\xf5\x29\x35\x01\x70\x23\x15\xf5\x0c\xbe\xa9\xf8\x0f\xf9\xdf\xce\xf1\x22\x88\xda\x2e\x68\xc5\x95\x0b\xb5\xf4\xc8\x4b\x0b\x07\xda\x91\x5d\xb6\xa9\x61\x47\x1d\x49\xe7\xf7\x94\x1e\xca\x7b\x35\xcb\xf9\x6c\xdb\xbe\x66\xd3\x20\xcc\x28\xeb\xa3\x2c\xe1\x67\x34\xa3\x52\xfa\xf2\x31\x4f\x5d\x11\x63\x6e\xae\x3d\x8e\x8a\x6c\xba\x75\xf0\xa0\x13\x0b\xac\x38\x52\x3e\xef\xb9\xa9\x14\xe0\x7e\x45\x91\xbd\x8d\x4d\x14\x25\x69\x4b\x61\xac\x2b\xfd\xd7\xf5\x5c\xd5\x7c\xbb\x6f\xc7\x49\x16\x02\x14\xea\xbe\xff\xa2\xca\xab\x5e\x54\xee\xbc\x7d\x6d\xcc\x65\x51\x6c\x68\xa4\x00\xce\xa8\x64\xd0\x99\x8a\x87\xd7\x0b\x2d\x66\x1c\x8e\xd7\x67\x78\x1f\xbe\xf9\x7c\xe0\xa0\x19\x09\x1c\x10\x2e\x32\x93\x16\xf0\x8d\x6b\xc0\x1b\xda\xfe\xa0\x4a\x66\x7a\x82\x9e\x5b\x81\x43\x9e\x17\x01\x57\xb5\xb2\xcb\x85\x9d\xb3\xc2\x93\x54\x13\x95\x16\xa0\x66\x34\x1c\x86\xe3\x7d\xbe\x93\x95\xd9\xe7\x40\x3a\x35\x85\x44\x28\x6e\x00\x84\x86\xc9\xfc\x4e\x05\x9f\x7f\x4c\x29\x4a\x3c\x0e\x29\x24\x11\x7b\x56\x6c\x24\x1b\x4d\x8b\x21\x2f\x18\x2c\xd3\x24\x33\xaf\x18\x78\xec\x28\x0c\xd0\xb8\x20\xe9\xed\xf2\x43\xc8\xc7\xdc\x40\xa4\x21\x9c\x72\x4e\xee\x3d\xcc\xf2\xc5\x02\x07\x2b\x5a\xf4\xe0\x09\xf1\x75\x6d\xa1\x1c\x3d\xf0\x7c\x7b\x64\xc2\x38\x37\x61\x2c\x16\x17\x75\xa6\x5f\xc3\x5e\xe2\x1b\xe7\x49\x8e\x4d\x9e\x86\x26\x0d\x86\xdc\x19\xe3\xda\x4a\x5d\xca\xf6\x7c\x83\xde\xec\x57\x0a\x2f\x8e\x04\xdf\x94\x73\x19\x7c\xd3\x74\x82\x65\xb9\x19\x0c\x3c\xe7\x16\x4e\xf9\x7f\x49\x2b\x92\xaf\x3b\x4a\x64\x10\x2c\x68\xaa\x3e\x7b\x5a\x95\x34\x6f\x57\x68\xc5\xe5\x53\x8b\xa9\x19\x90\xda\x03\x56\x32\xec\x0b\x27\xca\xf8\xa6\xa9\xbe\xdf\x4b\x92\xd7\xdd\xc1\xc7\x52\x0b\x8a\x9f\xaf\xce\x5e\x54\x6e\xc6\x2c\xb7\x36\x9a\xd2\xca\xe2\x40\x55\xe1\xfd\x6f\x69\x92\xf4\x56\xd7\x23\x4a\x46\x36\x0d\x8a\x54\xc4\xcf\xe1\x37\x30\x4b\x27\xdf\x68\x62\xd2\x71\x98\x72\x26\x06\x7e\x14\x34\xbd\x91\xb6\x3c\xa7\x1a\xd7\xff\x1d\x9d\x0c\x00\x30\xff\x48\x05\xa6\x59\x1e\x8e\x8a\xa8\xc8\xa6\x3c\x5b\xe6\xed\x1d\xa1\xc9\x9c\x3f\x26\x76\x0e\xcd\xa1\x43\xed\x9e\x8d\x42\xbb\x5c\x11\x7e\xdb\x52\xc2\x6f\x5b\x4a\xf4\x7e\x69\x3c\x42\x0e\x8d\x15\xb5\xe8\x51\x45\x5d\x4b\x8e\x96\xc5\x24\x35\xab\x4c\xfe\x8d\x47\x78\x17\x47\x0b\xca\x74\xd7\x14\x11\xc2\x05\x05\x75\x93\xdc\x04\x75\x2d\x09\xf3\x3c\x2d\x37\x66\x74\xc2\x79\xe7\xe8\x9d\xca\xbd\x8b\xf3\xf3\x92\x82\x6d\x6e\x4d\x54\x33\xed\x25\x55\xa5\x18\x85\x7d\x6b\x32\xee\x15\x64\x6c\x4f\x47\x81\x88\xde\x52\x05\xb1\xcc\x06\x45\x1a\xe6\xa1\xcd\x1e\xa3\xf5\x82\x88\xe4\x0e\x0d\x8a\x96\xca\x66\xa4\x5b\x47\xf9\x2e\x53\x6b\xf4\x9d\xb0\x36\xa7\x90\xa5\x85\x17\x7b\x07\xae\x20\x2c\xcc\x05\x45\xf3\xcc\xbe\x2e\x0a\xbd\x97\x54\xab\xd2\x36\x65\x6f\xd9\x72\x50\xc8\x81\x8d\xc1\xdc\x06\x5a\x81\x4a\x0a\x3b\xba\x9d\xfc\x92\x26\xb4\x68\xad\xd5\xa5\x56\x0e\x13\xda\xb6\xf0\x54\xeb\xcc\x41\x89\x61\x11\x42\x4a\xdf\x29\x6a\xfb\x03\x3b\x5d\x3e\x92\x93\x2a\xd9\x89\x49\x91\x8d\x55\x41\xae\xd4\x76\xe3\x6c\x3b\x88\x4c\x96\xc9\xa1\x22\xa4\xa3\xca\xce\xd4\x89\x82\x8e\x1e\x98\x6b\x67\x2b\x61\x96\xb5\x54\xe3\xdb\x49\x25\x2c\x73\xb2\x96\xeb\x99\x3d\xd2\xb6\x26\xcd\x87\x08\x6d\xf1\xbd\x57\x95\x7c\x19\x25\x66\x5c\x63\xfa\x6b\x8f\x57\x90\x5b\x9e\xa9\xf7\xde\x44\x69\xaa\x7f\x4f\xe3\xfd\xdf\xc6\x00\x30\x59\x36\x25\x73\x1d\xe2\xda\xdb\xa6\xb7\x3b\x8a\x5a\x75\x53\x29\xa6\xef\x46\x7f\x8a\xe8\x6f\x53\x3e\x40\x29\x73\xcb\x99\x01\xd8\x1b\x66\xe3\x06\x0e\x51\xe9\x9d\xad\x50\x75\xff\xe2\x4b\x1e\x1b\xa7\x29\xb7\x1b\x52\xdb\x83\x34\xcc\x22\xf0\xdb\x68\xfa\x15\x96\x8b\x9e\xf8\x02\xeb\xef\x29\x14\xe6\x28\x49\x59\x3e\xb5\xce\x54\x7e\xed\x73\x9d\x87\xa5\x38\x59\xe1\xaa\x2a\x83\xeb\xb4\x26\xdc\x05\x05\xd6\xe9\x15\x51\x14\x66\x43\x98\x21\xc9\x77\xd2\x38\x4a\xc2\xd3\xf7\x12\xf6\xed\x22\xa0\x73\x2d\x47\xf8\xb1\x51\x21\x4f\x70\xc8\xde\x7c\xb5\xfc\xd2\x08\x71\x0c\xf0\x46\x1b\x4a\xfc\x6d\xa3\x49\x95\x34\x8b\x92\x31\xbb\xda\x48\xd3\xc1\xea\xf3\xb5\xa6\xea\x4b\xe2\x2c\x89\xc2\x7e\xf9\x28\xd3\x9f\xef\x58\x79\xb4\xe8\x9f\x6a\x4c\xd9\x9f\x76\x3c\xbc\x2f\xb6\x45\x9e\x9a\x08\xea\xbc\xbe\xb2\xf3\x43\x5a\x54\x7c\xed\xfa\x11\x7c\x3d\x73\xfa\x73\xeb\x99\x34\xe2\x5a\x9f\x18\x8b\xf1\x96\x82\x78\xbc\x9a\x64\x76\x3c\x9c\x2a\x17\x11\x00\x9a\x60\xd5\x10\xfe\x71\x7a\x52\xee\x2a\x72\x67\x36\x39\x6b\x66\x20\x5b\x57\x81\x60\x5e\x76\x39\xbf\xcf\x23\x61\x33\x19\x71\x5e\xe4\xb6\x3f\xa5\xbe\x7b\x57\x57\xf1\xee\x5f\x57\xd2\xb7\xa7\x75\xc1\x33\x4d\x62\x0b\x6e\x02\xd8\x36\x66\x27\xe7\x1b\x5d\x34\xb0\x59\x6e\xd3\x78\xaf\xef\x88\x79\x47\x77\xb5\x6e\x60\x6f\x48\x7a\xc3\x9f\xb4\xa7\x15\x35\xfd\x6e\xd4\x24\xf1\xe5\x17\x3a\x0a\x37\x7a\x57\x51\x40\x43\x0f\xd2\xa6\xab\x33\xba\x29\xe4\x7d\x18\x08\xc7\x0b\xeb\xbc\xd5\xbd\x14\x6c\xe0\xdf\xef\x6b\x78\xce\xb6\x7a\xcf\xc5\x24\xcb\xc2\x68\xca\xe3\x73\xae\xaa\x06\xd9\x73\xd8\xfc\xac\x66\xda\x94\xdc\x0a\x86\x26\x2e\x4d\xb4\xab\x87\xb7\xba\x1a\x20\xa9\x57\x08\x13\xa5\xfb\x56\x17\x15\x53\xd8\x38\x83\xb6\xce\xf3\x95\xf5\x8f\xb8\x67\x6f\xd7\xa3\x78\x3d\x28\x62\xb1\x74\x44\x01\x78\x82\x0b\x7e\x59\x51\xda\x31\xcd\xaf\xa0\xb0\x1f\xd3\x44\x7b\xd9\x10\xcb\x41\x08\x1e\x3e\x54\x34\x02\x9f\x28\x80\xfc\xa6\x72\xb1\xa3\xa4\x20\xa1\x5a\xcf\x44\xfc\x4d\xb5\xf9\xbf\xd9\x40\x44\x99\x8d\x4d\x1c\x66\x43\x1a\x58\x9c\xc6\x6f\x77\x7c\xb5\xe4\xfd\x89\x0a\x69\xbf\xda\x08\xde\x37\xd1\xc0\x30\x92\x09\xab\x93\xb9\x60\xf8\xa6\x12\x65\x85\x71\x38\xe3\xf3\x9f\x40\x30\xc3\x2f\xbb\x44\x8b\x0c\xce\xf9\x57\xe9\x24\xe0\xbf\xe9\x28\x72\x1d\xed\x13\x2d\x86\xe5\x63\x4b\x06\xdf\x2d\x48\xb5\x3a\x35\x5b\x60\x12\x25\x69\x19\x46\xd0\x34\x48\x4f\x51\xcb\x09\xe0\x6e\x36\xd1\x56\x47\x76\x31\x17\x22\x87\x26\xc8\x47\x53\xbb\xfc\x52\x18\xb9\xe6\x3a\x14\x5b\x2f\xc1\x65\xe0\x1b\x05\xc9\x8f\xc2\x51\x48\x8a\x88\xae\xa6\x72\x46\xc9\x44\x5f\xc1\x20\x62\x46\x3e\xea\x54\x14\x8e\xc6\x91\xcd\xc3\x24\xc6\x9a\xc2\xee\x7b\xa3\xe3\xbb\xcb\x36\x74\x24\x72\xb9\xf6\x98\x47\x0f\x08\xa4\x0c\x43\xe7\x0c\x9c\x93\x55\xac\x4b\x5a\x42\x20\x7f\x60\xd2\x7e\x64\xb3\x8c\x4a\xcc\xe2\x48\x79\x0b\x0e\x5d\x06\x81\x1c\xb9\xaa\x57\xe9\x16\x1f\x3d\x50\x55\x9d\xe5\x9b\x86\x1a\xd4\x42\x3b\x0d\x97\xb9\xf3\xa8\x89\xf9\x7c\x07\x58\xf4\xe8\x81\xd9\xf6\xdc\xdc\x7f\x44\x23\xe1\x54\x5c\x5d\xcb\xdc\x19\xaa\xdf\xc3\x2d\xbd\x46\x8b\x0a\xe6\x62\x37\xf0\x06\x88\x9f\x76\x03\xe5\x8b\x4c\xdc\x35\x72\x1c\x1c\x52\xb0\x74\x42\x2a\xa5\x7c\x38\xcf\xef\x4c\x14\xaf\xf1\xf7\x3b\xca\x88\x9e\xc0\x0a\x84\xdf\xbf\x3e\xf1\xc4\x49\x9f\x60\x1d\x4b\x97\x53\xb9\xd8\x01\x5e\xdd\x80\xbc\x20\x32\xd6\x97\x58\x2e\x12\xe1\xc0\x16\x7c\x64\xec\xc4\xfb\x4a\xf8\x6b\x6a\xad\xdc\x38\xae\xab\x6b\x41\x3a\x9b\x19\x7d\xc1\xd9\x3a\x30\x6f\x89\xf6\xab\x22\x80\xbd\x4c\x90\x64\xa4\x35\xaf\xab\xa5\xd5\x0f\xb3\x71\x64\x56\xcb\x58\x10\x76\x1b\xfe\x31\xe7\x34\xf8\xa6\x56\x8a\x7d\xa9\x5c\x1a\x7d\x45\x77\x72\x4e\xf7\xa3\x9d\x53\x4e\x72\xdf\xbe\x6a\x14\xc4\x09\xb5\x70\x39\x88\x5d\xc0\x6f\xcd\x92\x2d\x83\x91\x72\xec\x65\x41\xab\xc5\xbd\x53\xa9\x68\xe1\x40\xfb\x95\x57\x9e\x28\x7f\x1d\xf5\xc1\x19\xdd\x0d\xfd\x29\x2d\x00\xce\xb2\x28\x34\x04\xfa\x8f\xb1\x54\x89\x62\x9c\x2d\xcf\xbd\x49\xeb\xa5\x79\x67\x38\xa7\xbc\x4a\xf1\xfe\xae\x0a\x44\x1e\x86\x38\x18\x3e\xfe\x3b\x58\xd1\x60\x13\xbb\x4e\x58\x03\xcc\xfe\x25\x8e\x38\x44\x7f\xa8\x5c\x0b\x42\xc3\xdd\xfa\xa5\x2f\x39\x8d\x2f\x25\xde\x74\x83\x76\x10\xe6\xfb\x3b\x9d\xd6\x33\xcf\xb8\x6c\x84\x1c\x26\x69\x52\x0c\x86\x54\x7a\xe1\x82\xda\xc4\xa7\x15\x2f\x2a\x2a\xb3\xc7\xb5\xe4\x1b\xdc\x56\x94\x47\x77\xad\xf9\xd6\xcd\xc8\xc4\xc1\x30\x89\x60\xbb\x51\xb9\xbb\xa2\x04\x36\xaf\x28\x63\x35\xb4\x2b\x91\xcd\x39\x44\x44\x4b\x2e\x1f\x5d\x7c\xd3\x58\x7a\xb0\x41\x6a\x4d\x86\x24\x86\x80\x8a\x7d\x9a\xf2\x33\x46\x72\xfb\xa4\x60\x96\x9b\x9c\x0b\x94\x0e\x44\x70\xf4\xc0\xe7\x82\x08\x8e\x1e\x78\xbe\xbd\x58\xbc\x1a\x0a\x34\x8c\x61\x3e\xda\x8b\xae\x3b\xb1\x84\xb8\xcf\x99\xcf\x9c\x15\x3b\xb4\x7e\xc4\x77\x6a\x9f\x98\x5f\x98\x6f\xaf\x0c\x4d\x0e\xef\xd3\xb1\x30\xbd\xe4\x18\x99\x94\xf7\x6d\x7a\x60\xe5\x44\x32\x45\x68\x01\x7d\xab\xcd\x56\xad\x12\xf4\x52\xe9\x55\x8f\x51\xad\xa0\x35\x26\x79\x53\xb5\x2e\x36\x15\xa2\xa6\x17\x25\x49\x7f\x9f\xef\x0a\x39\xad\x79\xad\xfe\x3d\x0c\x80\x50\x1b\xd0\x6b\x39\x42\x6e\xa7\x9c\xb8\x49\x8b\x46\xb4\x47\x68\x4a\x59\xb8\x85\x56\x90\x88\xb8\x3c\xa5\x44\x09\x93\xdc\x66\xb9\x89\x73\x19\x6a\xee\xca\xc6\xcf\x49\x8b\xb6\xca\xb3\xa3\x2b\xcc\x27\xbc\xbd\x9b\xbd\x59\x63\x3f\x98\x3d\xd2\x7e\xe6\xe7\xfe\x5e\x36\x55\xae\x7d\x1c\x5a\xbb\xbb\x8a\xa1\xef\xba\x02\x82\x6c\x7a\x86\x7e\xfb\x95\x22\xcc\xc2\x1c\x2e\x1d\xfc\xaf\xb3\xea\xf1\x77\x51\x17\xb4\x38\x84\x9e\xa8\xee\x7c\x6d\x02\x16\x0e\xb4\x4d\x9e\x9b\x60\x09\x81\x4a\x73\x12\xbd\x02\x4b\xa7\x01\x97\xa6\x6c\x4d\x99\x58\xba\xd7\x26\x0f\x97\xed\x3e\x3a\x5f\x84\x15\x80\xa6\x15\x89\xcd\x63\x64\xf9\xb1\xf5\x67\x88\x57\x0f\xbf\x70\x5b\x25\xcf\xae\x57\xc0\x54\x38\x1e\x64\x0b\x90\x15\x87\x15\xfa\xad\xc9\x53\x15\xcf\x34\x25\xe5\x92\xfe\x34\xfd\x3d\x37\x20\x2b\xe8\x13\x2b\x7e\xf3\x0d\x48\xec\xa4\x4d\xd9\x31\xfd\x27\x11\x35\x09\x3a\x75\x84\xc7\xc9\xa3\x45\x90\x75\x45\x83\x27\x05\x75\x88\x72\xce\xa6\xee\x9a\xb9\xa0\xb2\xf0\x66\x64\xe3\x3e\xa5\x24\xe1\x33\x4b\x4b\x96\xf7\x01\x7f\x8d\x5e\x9c\x3d\x7a\x15\x42\x24\x63\x9b\x96\xdb\x74\xf0\x90\x06\xb9\x4c\x7c\x02\x8c\x49\x97\x45\x47\x8c\x66\x0e\xe5\xe8\x63\x3a\x9b\xf4\x1e\x00\x63\x42\xa5\xed\x81\xb2\x9f\x21\x1b\x06\xb0\x2a\xea\xae\x78\x19\x86\xda\x01\xa4\xf3\x0e\xa1\x01\x81\xe0\xbc\x80\xd1\xe7\x4f\x34\xf1\xfe\xb8\x9e\x03\x6e\x45\x7b\xde\x69\xb7\xfa\xdf\xc5\x61\x86\x91\xff\x63\x35\x54\x44\x36\x1c\x3a\xc8\x8e\xc8\xe6\xfb\x3e\x87\xba\x0c\x7d\xe9\x70\x86\xf1\x62\x44\xdc\x1a\x4e\x01\xe6\x96\x2a\x3c\xdf\x6a\x92\xd2\x36\xfd\x57\x8b\xcc\x8b\x88\x4b\xc7\xbe\x87\xf9\xd6\x09\x4a\x7e\xbe\x9d\x9a\x68\x8c\x20\x01\x07\xcf\x19\xc5\x77\xfe\x31\x56\x86\xa0\xe5\x1e\xf1\xd0\x28\xd7\x7b\x81\xff\xdb\x52\x5d\x24\x75\x7c\xf0\xa1\x43\xed\x91\xc9\x32\xab\x7a\xc1\x10\x21\xf0\x75\xcd\x47\x3f\x78\xb0\xfd\xaa\x5d\xb1\x51\xca\xa9\x7b\x6e\xe9\x56\x2b\x4a\x57\x34\xf3\xa4\x48\xc3\x2c\xcf\xa8\x6b\x0a\x7e\x1c\x58\x25\x61\x30\x6e\xe8\xe5\xfd\x0e\x6d\x53\xa9\x37\x3c\xa6\xb1\x74\xfd\x22\x20\x55\x28\x49\x95\x83\xfc\x87\x4f\x37\x2d\xc4\xfd\xd9\x44\x25\x65\x8f\x63\x4d\x72\x67\x3a\x6d\x4b\x64\xaa\x6e\xc2\x3a\xf0\x0d\x42\x70\x07\x50\x75\xed\x6b\xe7\xab\xba\x8a\xf5\x83\xb0\xad\x20\xfd\xf2\x8b\x1e\xb5\x72\x5c\x05\x96\x79\x91\x96\xcb\x93\x74\x09\x99\xb2\x80\xce\x32\x21\xdb\x52\xd9\x91\xeb\x6a\xa9\xfe\x37\x30\x4a\xfc\x1f\x4d\x46\x74\x6c\x6d\x5a\x46\x07\x2d\x0f\xc0\x00\x1d\x30\x5f\x37\xe4\x2d\x5f\x6e\x67\xb9\x1d\x73\xb9\xc2\x75\x8b\x6b\xe1\x1d\x41\xd8\x04\x26\x15\xd5\x0f\x56\x76\xc0\x74\x79\x99\x07\x4e\x16\x91\xe4\xb3\x4d\xa7\x68\x73\x63\x32\xe1\xd3\x00\x1f\xfd\x67\x95\xb6\x48\x8f\x61\x24\xb2\xbc\x22\x0e\x73\xd4\x16\x9d\xe2\x45\xf9\xc7\xa2\xd3\xa1\xeb\xff\xc5\x60\x98\xef\x2b\x0f\x2c\xcc\xcf\xe5\x49\x05\x22\xf4\x82\x94\xaf\xb9\xb4\x81\xa4\xe6\x39\xca\x59\xc3\xb9\x84\x03\x2a\xe7\xb4\xaf\x82\x5d\xd6\x99\x7c\x0f\x30\x1a\x86\xa9\xdd\x47\x03\xe3\x48\xd3\xbf\x3c\x2b\x92\x00\x64\x14\x61\xe0\x1e\xed\xea\x06\xac\x89\x4a\xca\x63\x65\x02\x1d\xfa\x0d\x98\x4e\x19\x48\x1f\x74\x6e\xa8\x6c\x51\xdf\xf6\x4c\x6e\xb3\x19\xfa\x55\x6c\xd9\x9b\x1d\x95\xac\x44\x65\x01\x70\x22\x76\x62\xf9\x3f\x26\x8a\xc9\x6d\xd3\xf9\xf5\x71\x32\x0a\x63\x83\x04\x8e\x50\xec\xb6\x1c\x41\xd2\x49\x1a\x0f\xd8\xdc\x8f\x95\xdf\xc9\xf4\x03\x2d\xa5\x2b\xc1\x62\xbe\x52\xb5\x6f\xb0\x22\x83\x70\x51\x80\x3b\xe8\x8e\x84\x1a\x0b\x5f\xeb\x8e\x6a\x88\x5e\x0a\x26\xef\xdb\x15\x1e\x9c\x96\x63\xa5\x81\x50\x08\x46\xfe\x7f\xa1\xd1\x46\xec\x74\xaf\xe6\xf4\x12\x35\x50\x3e\x2c\x46\x3d\xfe\x7d\x78\xd2\x5b\xca\xab\xde\x6a\xcc\x1b\x24\x63\xcb\x59\xa2\x59\x47\x12\xa0\x90\xb1\x8c\x82\xe3\x26\x2f\xe5\x0d\x2e\x52\x59\xa8\xd2\x1a\xaf\xba\xcf\x3e\xc5\x54\xf0\x4d\x47\x71\x41\xa2\x44\xeb\x24\xc3\x74\x9f\xbd\x4a\xb1\x58\x0b\x11\x24\x04\xa5\x52\x0d\xa5\x70\x59\x02\x13\x25\x2c\x60\x22\x96\x9f\x92\x7c\x16\x9a\x52\xf9\xba\x8a\xa7\x5c\xca\x1e\xf2\x05\xd6\xeb\x14\x8f\xba\xbc\x76\x69\x02\x91\x88\x00\x47\x80\x48\x79\x95\xdb\x8a\xff\x5d\x0b\x88\xdc\x99\x68\x8e\x1b\x9c\x18\xf0\x5e\xee\x91\x61\x73\x7e\x54\xe9\x07\xa0\x12\x75\xba\xa3\xda\x24\x4f\x6b\x6c\x93\xe6\xc2\x0d\x6c\x58\xbe\xfe\x8c\x4a\xdd\xc1\xd8\xe3\xdb\xdf\xc4\x96\xe2\xff\x80\x19\x87\xbf\x79\x11\xc3\xce\xd4\x3a\xce\x86\x45\xa6\xbf\x3a\x5d\x69\xee\x25\x27\x4c\xb3\xa5\x20\xe1\x0a\xaf\x0b\x49\x95\x87\xd7\x76\x56\x92\x8f\xbc\x48\xb4\x02\x36\xcb\x2c\xda\x05\x1c\x46\xa5\x7c\x4e\x77\xb0\x1d\x3a\xe4\x1a\x3f\x9f\x54\x9b\x9a\x24\xb3\x08\xee\xef\xf8\x43\x76\x53\xfa\x95\xaf\x5d\x78\x48\x20\x62\xeb\x0b\x60\xc8\x56\x4c\x11\xc3\x06\x5f\x77\x1b\xea\x27\xc3\xd5\x5e\x1a\x22\x1b\x80\x80\x13\x8c\x14\x7c\xad\xf2\xb9\xd0\x31\xde\x57\x4d\xc8\x1d\x9c\xf5\x7c\xe9\x8e\xc8\x85\xf9\xc7\x2a\xcc\xbb\x88\xbd\x3f\xe0\xa9\x07\x4e\x01\xc7\x95\xa2\xcc\x9d\x75\xd9\x3d\xbf\xe5\xbf\x38\xf7\x7c\x4b\x89\x2c\xc1\x23\xe1\xeb\xa6\x58\xb1\x8c\x7b\x78\x2f\x37\x9d\xab\xce\x73\xb6\x59\x38\x88\xf7\x2a\x89\x7e\xb0\x71\x62\x0a\x5a\x6b\x2a\x1a\xe7\x0c\x37\x4c\xcb\x3c\xb9\x02\x3a\x87\x87\xb5\xf1\x24\xca\x6c\xe2\x3e\xfa\x45\x19\xc6\x41\x54\xf4\xed\x83\x2d\x47\x74\x72\x8d\x72\x1c\x92\xad\xa6\x1f\x42\x0a\xba\xa2\x25\x7e\x97\x7e\x48\x6a\x40\x9a\x84\xf0\x1c\x59\x37\x54\x65\xaf\xa0\x6c\x57\x51\xe6\x11\x50\xae\xf7\x90\xff\x3f\xb8\xce\x02\x8a\xf4\x32\x06\xa3\x24\x89\x19\x13\x80\x02\xc3\x1f\xd3\x20\x28\x21\x34\x39\x0b\x2f\xbb\x5d\xd1\x37\x29\x5c\x44\xd1\x31\xf7\x5b\xfe\x74\xcd\xcd\x78\x96\x05\xeb\x06\x43\x30\xa5\x20\x64\xdf\xa4\xc3\x03\x6e\xc6\xd7\x26\xea\xa0\x3b\xa7\xea\xf3\x63\x1b\x2c\xb5\x3c\xb3\xc0\xee\x35\x65\x42\x76\x37\xf0\x1d\x1f\x6e\x67\x36\x5d\x0e\x03\x86\x48\x61\x33\x73\xf1\x48\xdc\x07\xdf\x32\x73\xab\xa6\x27\x08\xa9\x6f\xf0\xe9\x15\x4c\x2f\x87\x25\xbc\xa9\xc9\xa3\x37\x1b\xa1\x73\x7d\x03\x43\x21\x98\x05\x8f\xfd\x7d\xb3\xe3\xe1\xdb\xc0\x90\x8b\xe3\xe6\xf3\x78\xb1\x1d\x44\xe1\x20\x2c\x1d\x7c\x7a\x76\x21\x52\x56\x4b\xaa\x09\xd4\x71\xb8\xdd\x4b\xad\x64\x21\xb8\x83\x0d\x9f\x91\x76\xb6\x06\x2e\xd5\x7e\x91\x7c\xbe\xf3\xdd\xc4\x22\x6d\xa3\xbe\x4d\x39\xe7\x84\x5d\x7c\x5b\x25\xe3\x6e\xab\xd7\xc8\xf2\xd4\x64\xbd\xa4\x48\x39\x9b\x22\xe4\xbf\x2d\xc7\xc3\x70\xa6\x49\x4e\x25\x33\xcb\xe5\xa1\x35\xa3\x21\x26\x5f\xc3\xbe\x00\x85\x17\x3a\x87\x71\xca\xee\xea\x7a\x3b\xb3\xa9\x71\x28\x5f\x73\x2e\x25\x47\x58\x5c\xc2\x71\xd4\xf7\x0e\xd5\x76\x0c\x63\x24\x28\x53\x6f\x6a\xf2\x60\xf8\x20\x1e\x02\x99\xc9\xef\xe2\x9c\x85\xbd\xbf\x3f\xf1\xfe\xc9\x04\xa2\xaf\x00\x01\x7d\xa1\xab\xd4\xa4\xb7\x27\x8a\xe7\x8b\x35\xdf\x50\x56\x7e\xa8\xeb\xcd\xd0\x9d\x49\x05\xd0\x59\xbe\x04\xfc\xb9\x6d\xdf\xf3\xbf\xff\x89\xae\xea\xca\x4a\xa2\xe5\xa4\xe5\xcd\x06\xbf\xb9\x34\xc8\x28\x5d\x92\xa1\xed\x4f\x7b\x19\x76\xd6\x23\xc6\x83\xee\x5e\xf3\xe0\xdb\xeb\xaa\x96\x32\xdd\x7d\xcc\x57\xbe\x4c\x1c\x58\xab\xe9\xe4\x7f\xa2\xa8\x31\x7e\xe2\xcc\xe7\x90\xe6\x8c\x42\xe6\xed\xbb\x0a\x03\xfd\x01\x1e\x8c\xdd\x84\x9a\x39\x90\xf2\xa9\x1d\x00\x7a\xc3\xf2\x03\xb4\x9e\x44\x8a\xc0\x3b\x28\x2b\x69\x69\x37\xf6\x96\x43\x8d\x6d\x7f\x83\x33\xb4\x88\xf3\x70\x02\x23\xba\xff\x5f\x95\x7a\x1b\x13\xc7\xc3\x9f\xfd\x09\x46\x80\x6f\xaa\x0c\x01\x3b\xd9\x59\x0e\x1d\x3a\xdc\x1e\xa4\x26\x2f\xc2\x3c\x29\x32\xae\xb3\x8b\x13\xe5\x01\x06\xe7\x55\x70\x36\x0c\x7b\x3d\x93\xf2\x89\x2b\x24\x31\xb4\x1e\x84\x3e\xa6\xc2\xc4\x11\x4b\xfd\x08\x8f\x50\x4d\x1c\x75\x54\x61\xec\xbd\x8e\xe6\xcd\x7a\xb5\x48\x43\xa6\x13\xc7\x29\x84\x53\x90\xaf\x15\xf4\x23\xcc\xb3\xa7\xbd\xfa\xdd\x87\x13\xad\x9f\xae\xdb\xcd\xee\x4f\x88\x32\x4a\x5a\x2e\x15\x23\xc4\x15\x0c\x1e\x4e\x80\x4d\x55\xc2\xbe\xa3\x34\xef\x77\x01\xed\x21\xda\x60\xb4\xca\x19\x64\xd1\x51\x50\x83\xcf\xe8\xa0\xc3\x32\xbf\xd7\x51\x35\xc6\xcb\x14\x58\x09\xad\x32\xe5\xbf\x44\x5b\x4c\x25\x37\xa7\x08\x86\x03\x07\x12\x50\x22\x09\xc5\xb4\x6e\xef\xc7\xa8\xf3\xe0\xdc\xbe\x8a\x78\x1c\x56\x78\xbf\xab\xe8\x8e\x92\xe5\x32\x30\xf2\x12\x58\x37\xf0\x98\xa0\x0b\x6c\x75\x75\x8b\x9f\x2f\xb6\xdf\xc5\xf0\xe1\x7c\xbf\xe0\xda\x07\x32\xfb\x95\x82\x0a\xf3\x2e\x67\x84\xd1\x7e\x53\x81\xf4\x89\xf3\x84\xa3\xd9\x8f\x55\xfc\x12\xe5\x66\x7f\x39\x3f\x4c\xa1\x3d\xf1\x89\x93\xcb\x8a\xdf\x8f\xd1\xcb\xd2\x12\x8e\xb7\x95\x4e\x00\x7a\x26\xf9\x2f\x25\x33\x00\xa6\xcf\xed\x8e\x82\x92\x5f\x57\xd2\x58\x14\x77\x84\x99\x80\x53\xa5\x7f\xdb\xfb\xad\x1b\x4d\x42\x0a\x26\x08\x92\x22\x06\xff\x1e\x36\xf8\x50\xd3\x36\x83\xa2\x44\x42\x36\x85\x5b\x37\x91\x49\x5d\xa3\xb1\xf3\xb1\x7d\xa7\xf2\x45\xfd\xc7\x45\xdc\x07\x72\xd2\xe1\x2a\x7f\x63\xa2\xd8\xbe\x76\x51\x5f\x19\x0a\x90\xbb\xbb\xde\x3a\x40\xe4\x65\xba\xc2\x8e\x5e\xae\x37\xb1\x7c\xbe\x7c\x83\xba\x95\xfc\x8d\xa7\x0f\x0e\x22\x6b\x62\xa2\xb9\x47\x36\x88\x0d\x07\xdf\x60\x89\x70\x99\x09\xc3\x2a\x35\x27\x05\x8c\xff\x11\x82\x34\xbe\x51\x50\xc6\x30\xce\x8a\xd4\xa6\xd9\x8c\xae\x25\xd0\x07\x5d\x91\xe1\xa8\xb4\xbf\x5e\xd2\x4c\x82\xdb\x1d\x55\x26\x6e\xe2\x4a\x6e\xe7\xd6\x04\x43\x45\x7f\x7b\x15\x1f\xe7\x1b\xcf\xee\x44\x69\xc3\x0a\xb6\x94\x31\xfd\xb2\xd6\x1b\xda\xce\x02\x93\xe5\x91\x8d\x42\x96\x2c\xc2\x77\x5e\x57\x4d\x71\x75\xc1\x8d\x83\x07\x85\xf1\x10\x9e\x17\x6c\xed\xe5\x8e\x12\xbe\x7b\x93\x02\x4b\x11\x3d\x7b\x5c\x13\xd6\xd2\x3e\x7a\xa4\x0c\x24\xdc\x0e\x3c\x2a\x5d\x1a\x38\xec\x61\x0d\xde\x55\x8d\x5c\x68\x1d\x86\xe5\x9f\x5a\x2b\x63\x46\xfc\xfd\x19\x58\x32\x1c\x56\x9b\x5a\xd0\xfb\x56\x47\x31\x18\xdd\x9b\x54\x88\x2a\x3a\x5e\xe8\xe0\x81\xae\x6a\xed\x67\xfd\x54\xa9\xdb\x91\xf9\xe4\xaf\xae\x1d\x6c\x5f\x9e\x6d\x9b\x34\xb5\x99\xc3\x18\x2b\xde\xd8\xd9\x06\xde\xd8\xd7\x6c\x9a\xbc\xd6\xf2\xdc\x2f\xc7\x54\xd0\x75\x4c\xe9\x8c\xad\x98\x74\xb4\xc7\x7b\x5e\xac\xd6\x27\x55\x7f\x7a\x5b\x8d\x77\xc2\x89\xb0\x46\xc6\x92\xaf\x3b\xaa\xf4\xa9\xc9\xe9\x7e\xe1\xe0\x7c\xab\xd6\x82\xc2\x37\xb5\xc4\xed\xd1\x03\xed\xb4\x5c\x74\xf2\x76\x40\x39\x00\x12\xc4\xd7\x0d\x1d\x3a\x66\x91\xb2\xeb\xaf\xa9\x0e\x0e\xbc\x27\x5f\x37\xf1\x3b\x07\xc9\x68\x9c\x26\xa3\x90\xb3\xca\x88\xaf\x8f\x2b\x18\xf1\x71\x75\xa2\xda\xd7\xc6\xa1\x00\xf9\xe0\xce\x7d\x38\x51\x3c\x75\x1f\x56\xa0\xc9\x36\xee\x67\x33\x4a\x0a\x68\x13\x07\x8f\x2b\x78\x2d\x08\x45\xcb\x31\xc5\xad\xf2\x36\x2d\x0e\xb8\xd3\x9a\xcf\xf7\xf5\x84\x69\x53\x98\x6d\x81\x0c\xa1\x30\x2f\x28\x9e\x46\x91\x88\xe5\xbb\xc9\x53\x8a\xf6\x26\x37\x59\x9e\x26\xe3\xa1\x6d\xa9\x43\x8f\xdb\x6d\xf9\x66\x27\xd5\xd6\x4b\xb3\x47\xda\xb3\x47\x5a\x4a\x2c\xee\xac\x52\xf3\x3b\xab\x7b\xe2\xcd\x80\xa5\xf9\x45\xc4\x45\x8b\xbb\x34\x28\x40\x67\xc3\x64\x25\x4d\x92\x11\xcc\x05\x1c\x60\xc0\xad\xf9\xba\x81\xeb\xe3\x30\x54\xc7\x5c\xf9\xd4\x09\x0c\x7a\xb1\xc1\x26\x87\x9f\x5a\xb0\x65\x29\xc9\x8e\xf2\x5e\xe6\x66\xc7\x17\x98\x23\xb3\x4a\x72\x8e\x2e\x73\xf9\xb1\xd6\xf4\xfe\x58\x55\xd4\x72\x9b\xa6\x61\x9e\xc0\x51\x72\x0d\x0b\x3c\x19\x82\xc8\x73\x1a\xd6\xd4\x00\x18\xb8\x13\x1c\x19\x00\x54\x17\x58\x3e\x17\x0b\x09\x29\xc0\x4b\x2a\x0d\x62\x17\x17\x6d\x90\x3f\x58\x9e\x34\x38\x0e\x4e\x93\x21\x47\x38\xfe\x67\x88\xc0\x91\x6e\x41\x76\x12\xc7\xce\xfe\x6e\x69\xa5\xe0\x57\xec\x59\x23\x27\x05\x45\xd8\x5d\x5d\xbf\xf0\xb6\x54\x4a\xe9\xfe\x44\x05\x7f\x9c\x4d\xc4\xef\x31\xed\x1b\x32\xbc\x9f\x29\x2e\xd7\x20\xb2\xcb\x36\x32\x31\x0f\xac\xd2\x49\x9e\x75\x72\xc8\x3b\x83\x48\xca\x4d\x85\x59\x12\xd3\xe9\x2b\x3d\x4c\xe5\x0b\xa1\xfa\xba\x7b\xcd\xf7\x6e\xec\xef\x3e\xa6\x46\xfb\x35\x17\x24\x73\x7d\xa9\xa3\x6b\x4d\x95\xdc\x61\x0f\x20\x12\x96\xd4\xc5\xc0\x8a\xbe\xae\xd6\x49\x2b\x62\xa9\xc4\x4b\x87\x22\x77\x19\x0a\xc0\xde\x57\x1b\x83\xd5\x38\x0c\x84\x7b\xf1\xb0\x88\xb8\x74\x14\x04\xab\x7e\xba\xbd\xf2\x8a\xe0\xa8\x1c\xe2\x0b\xeb\x02\x08\x24\xbe\x76\x61\x64\x64\x8a\xb8\xb4\x78\x84\xe1\x47\x40\xf7\x2e\x26\x05\x3e\xe4\xc9\x89\x5a\x89\x33\x5d\xdf\x0c\xf5\xb6\xd2\xc5\xe4\x33\x44\x78\x9b\x1f\x53\x0a\x22\x63\x6b\xf2\x4c\x85\x18\x37\x3a\xbe\x11\xf7\x86\x92\x3f\xeb\x87\xa9\x0d\xf2\x24\x5d\x9d\x6a\x39\x6e\x18\xb0\x5a\x54\x10\x5a\x52\x7b\xf7\x16\x26\x8c\xfb\xb6\xb4\x7a\x36\xce\xf7\xab\xe6\x80\x6b\x1d\x45\xea\xfa\x31\x16\x2c\xce\x8a\x75\xd5\x2e\x7b\x6b\xe2\xf9\x34\xae\x75\x7c\xb3\xe4\x05\x1d\x42\xa1\x4c\x2a\x8c\xd1\xe5\x19\x8e\xfc\xce\x4f\x9a\x79\xfa\xe2\x65\x8b\x1e\x4f\x57\x5b\x3d\x81\x01\xe5\x1b\xd7\xe2\x93\x5a\xf4\x82\x89\x5d\x71\x31\x98\x6f\xf1\x51\x6e\x5c\x5e\x8c\x92\x14\x4c\x16\xd2\x99\xa6\x65\x42\xd5\xa0\x8f\xe9\x0c\xcb\x3e\xff\x4b\xbd\x39\x29\xe2\xb1\x4d\x17\x93\xd4\x75\x81\x0a\x91\xa4\x6a\xaf\xfc\xb4\xc6\x15\x77\xf4\xc0\xf3\xc0\x43\xc5\xee\xd9\x81\x39\x43\xa7\x3b\x5f\x3b\x33\x34\x4e\xcd\x60\x64\x80\x59\x74\xc7\x3f\x62\x3b\xa1\x84\x6b\x70\xb6\x38\xcd\x35\xad\x31\xe2\xff\x3f\x63\x6f\x1a\x24\x49\x7a\x9e\x87\xcd\x54\x77\xcf\xb1\xbb\xb3\x3b\xd8\xc5\x82\x26\x2d\x5b\x05\x07\x44\xc8\x0a\x68\x43\x0e\x9a\x61\x9a\x7f\xaa\xdc\xdd\x20\x30\x1d\x44\xef\x44\xcf\x60\x16\x5a\xcb\x11\xf3\x55\xd6\x57\x55\xb9\x9d\x95\x59\xc8\xa3\x7b\x7a\x7f\xf1\x87\xc2\xa1\x70\xf0\x87\xc2\xb2\x65\x47\xc8\x21\xcb\x32\x45\x93\x11\x12\x2d\x1e\x12\x2f\x00\x55\x00\x48\x80\x24\xae\x5d\xec\x7d\xcf\x7d\xdf\xf7\xd9\xab\xc8\xf7\x79\xdf\xef\x7b\xb3\x2b\x97\xc1\x7f\x99\x33\x5d\x55\x99\xdf\xf1\x7e\xef\xf1\xbc\xcf\x43\x9e\x80\xab\xb9\x3b\xb3\x73\x86\xb6\x32\xca\x3c\xb3\x6d\x7f\x7c\x65\xd6\xcc\xf9\x52\xe1\xb3\x6d\xdf\x54\x00\x19\x65\x27\xe0\x86\xd3\x4b\x29\x1c\x4a\x39\xef\x81\x42\xd3\xe7\xc9\xc8\xbc\xdc\x50\x2b\x52\x9d\x49\x17\x54\x2a\xd4\xc6\x5d\xd4\x1b\x1d\xf1\x07\xb8\x3d\x84\x68\x5b\xd2\x10\x45\x1c\xa0\x2a\x4f\x90\x70\x3c\x23\xc8\xf1\x80\xe4\xdc\xdb\xf6\x09\x87\xa7\xf0\xbc\xa2\xbb\xf1\xac\x2b\x3f\x42\xd6\xeb\x65\xdf\x6e\x2e\xfb\x5b\xed\xf5\x0a\xb1\xe3\xd0\xc4\xe8\x90\xc1\xce\xd8\x84\xe9\xc1\x5b\x40\x2a\x49\xca\x65\x1a\x23\x7d\x02\x3c\x8f\x48\x54\x7d\x73\xac\xbc\xa3\x6b\x5a\x6b\xaa\x31\xf1\x45\xe7\x1b\x54\xf1\x70\x12\xd6\xa5\x31\x17\x68\xba\xe2\xad\x07\x2f\x15\xac\xf0\x03\xd5\x3d\x76\x93\x1a\xc8\x37\x6f\xb6\x3c\xbe\x7d\x13\x46\x06\x07\xd7\xae\xb6\x37\x1d\x69\x52\xe4\x61\x6c\x99\xea\x14\x4f\x02\xd3\xc1\xc4\xa3\x44\xa2\x27\x79\xd8\xad\x7b\x76\xff\xf3\x07\x9a\xbd\xb0\x63\x53\x13\x45\x6a\xce\x5e\x83\x05\xe0\x1b\x85\xfb\x27\x7e\xef\x80\x71\x0a\x2b\xf3\x5e\x42\xcf\xcb\xe9\xb9\xfa\x2d\xf4\x7c\xc3\xb8\xcf\x89\x45\x18\xa0\x93\xca\x89\x3d\xe9\x1a\xa7\x4b\x17\x58\xe9\xcc\xfc\xc9\xd8\xf7\x6d\x3c\x81\x44\x84\x90\xb5\x56\xe2\xf8\x7d\x1e\x87\x51\x69\xd0\xfd\x24\x1d\xb5\xbe\x8d\x47\x69\xd2\xc1\x99\x06\xd8\x27\x43\xce\xf9\x66\xaa\xb0\x43\xe4\x04\x76\x38\x4a\x52\x26\x12\xe0\xbc\x39\xbd\xb1\xe4\xd0\x3d\x73\x53\x79\x34\x67\x51\xd8\xb5\x68\xaf\x90\x96\x50\x55\x00\x3e\x3f\xae\xe4\xec\x55\xf2\x66\xaa\x6a\xba\x6f\xb9\x59\xc4\x61\x9e\xcd\xa8\x1e\x9e\x07\xad\xed\x9f\x73\xfc\xa7\xf4\xe4\xd2\xc2\x23\x89\x90\xbc\x5c\x11\x4a\x7d\x92\xdd\x65\xbe\x51\x8a\xa2\xb1\x5d\xcf\xf6\x7a\xbf\xe6\xfa\x58\x09\x88\xb0\x7a\x29\xe3\xcd\x69\x1d\x0a\x5d\x2d\x99\x21\xcc\xc6\xa3\xb1\x9f\xf7\xa3\xd8\x24\x38\x59\x6e\xb0\x4b\xac\xe0\x94\xcb\x9c\xfe\x3c\x4d\x68\x4e\x14\xfe\x6f\x62\x33\x38\x66\x60\x07\x40\xba\x83\x48\x8c\x7f\x05\xa6\x1e\x36\x02\xec\x5f\x82\xb7\xa7\x81\x91\x3c\x85\xe2\x6f\x2c\xd2\x51\x92\xd9\x19\x5a\x38\xc8\xed\xbc\xa9\x94\xb7\x51\x5b\xe3\x12\x4c\x1d\x25\x49\x56\x74\x5e\xb2\x01\x40\xe6\xa2\x37\x52\x0e\x94\x08\x91\xf8\x90\xa3\x9f\xe4\xb9\x8d\x67\x3d\x66\xf6\x04\x2d\x4a\xe4\x6e\x38\x32\x74\x72\x51\x0e\xdf\x77\xc9\xb5\xb5\x77\x8a\x34\x94\x2c\x36\xbc\x69\xe8\xaf\xb2\x7e\xf6\x58\x65\xfa\xef\xaa\xac\x69\x56\x06\x5d\x2f\xff\x35\xaa\x71\x7e\x96\xbb\xc9\x3a\xd9\x3c\x81\x89\x7c\x5f\x41\x04\x36\xe9\x61\x61\x70\xe7\xd0\x44\x22\xdd\x25\xf4\x6d\xc8\x47\xa1\x07\x0c\x48\x63\xb4\xcd\x21\xc1\xf3\x9a\x16\x2b\xe1\x46\x15\xa4\xe8\x1e\xf0\xf4\x4b\xb1\xd5\x67\x90\x76\xb7\x15\x2a\xfc\x1e\xe5\x72\x9c\x9b\xe1\x24\x1c\x76\x93\xc9\xc2\x79\xcd\x6c\x27\x58\x2f\x8d\xc9\xd3\x8a\xcc\x22\x8c\x83\x70\x24\xdd\xf2\xc2\x41\x39\xe3\x55\x68\xff\x72\xac\x9b\x7f\x5b\x7e\x79\x98\x38\x1f\x08\x83\x8c\xa3\x65\x55\x67\xb3\x54\xc1\xb2\x50\xe8\xee\x5d\x03\xa1\x07\x72\x5e\x68\x79\x4f\x15\x00\x17\x2a\xe0\x2e\x1e\xe4\x85\x7a\x92\xc6\x96\xaf\xa7\xb0\x5b\x0b\x8b\xcd\xf5\x30\xe6\xa6\x53\xac\xca\x0f\x75\x99\x10\x64\xa6\x72\x26\x6f\x35\x4a\x4b\x4b\xcd\xac\xa0\x68\x57\xd6\x0e\x62\x49\x6c\x21\x6c\xe7\xbb\x3a\x0d\x74\xc1\x8b\xff\x9a\x34\xb7\xdc\x64\x20\x52\x5d\x0d\xa5\xe1\xf5\xa4\xf2\x49\x8f\x84\xac\xa2\x82\x62\x36\xc4\x5b\x9c\xb4\xb4\xc3\xc0\xfd\x89\x0a\x49\x87\x49\xd2\xdd\xd8\xa1\x48\x9a\x7f\x4b\xb1\xf8\xfd\x56\xa5\x53\x58\x69\xb5\xf1\xe2\x05\xde\xe3\x07\xbc\x78\xe0\x66\xde\x53\x4f\x94\x9a\xae\x49\x89\xb2\xc1\x11\x40\xef\xf3\x04\xd0\x1e\xf3\x99\x74\x22\xe6\xa0\xc9\x08\x51\x85\x15\xc0\x26\x0d\xb5\x91\x0b\x15\x4d\x08\x8f\x65\xbd\x37\x56\xa9\xd3\xd3\x6a\xa3\xe7\xe9\x06\x91\x69\x39\x16\xb2\x33\x4a\x52\x0d\x2e\x98\xea\x01\x74\x0d\x81\xca\x85\x1d\x86\x91\xcd\xe0\xa4\x0b\xf3\x82\x6f\xa2\x3e\x43\xaf\x82\x3a\x16\x0b\x58\x22\x8d\xce\x5c\xc0\x9a\xb7\x01\x7b\x01\x4d\x1e\xc8\x82\x83\xec\x70\xf3\x62\x4b\x91\x13\xea\x32\x6b\x90\x30\xa9\x38\x3e\x0a\xcd\x5e\xfc\x19\x7f\x3f\x22\x8b\x57\x15\x2a\x21\x32\xc1\x6a\x54\x80\xd1\xdc\x2b\x7c\xb5\xaa\xfd\x9c\x2b\xf3\x22\xd3\x52\x11\x8e\xd8\x5a\x76\x5d\x99\x5f\x69\x5a\x42\x37\x72\x77\x90\x0f\x4e\x2e\xaa\x0f\x5e\x9c\x0a\x5d\x3f\xff\xf9\x66\xc7\xf6\x92\x14\xce\x06\x92\x14\x37\x68\xa8\xf8\x7a\x2a\x8b\xf5\x85\x32\xb0\x48\xd2\x2d\x39\x3a\x8e\x41\x04\xc6\x20\xe1\x5f\x56\xa4\x6b\xae\xb1\x05\xeb\xe8\xa8\x32\xbf\x47\x55\x67\x13\x35\x06\x09\x44\xa3\x42\x5b\x2e\x0c\xe8\x4f\x2a\x24\x9a\x59\xb5\x5c\x72\x77\x0b\xc4\x75\x6f\xf1\x62\x87\x9f\xf8\xa0\xb5\xa5\x73\xe2\x8b\x5f\x6b\x1e\x3e\x0c\xb3\x20\x90\x4c\x3a\x57\x71\x06\x6c\x56\x73\xbb\x7b\x5d\x35\x34\xb7\xfd\x94\x71\x72\x9b\x34\xa4\x9b\x17\x5d\x04\x42\xc2\x97\x71\x48\xa8\xcf\x2d\xa9\x56\xbe\x76\x90\xb6\x5e\x98\xda\x1d\x64\xc8\xdd\xa1\xe5\xba\xe2\x58\x91\x03\x1f\x61\xb2\x72\x9d\xe6\x96\xd6\x12\x1f\x17\xec\x6e\xd7\x51\x3d\xbd\x64\x84\x69\x00\x07\xf7\x31\x4d\xa5\x73\xac\x26\x2d\xb9\xd8\xec\x16\xc3\x11\xc7\x94\xd8\x3a\xaf\x63\x9b\xf2\x4d\xcb\x67\xe4\xd7\xc2\x24\x22\xf1\xc3\xf2\x6f\x19\x68\xde\xf2\x65\xd0\xf7\x2a\xd1\x80\xdd\xc8\x76\xd1\x48\x73\x02\x9b\x5c\x0b\x87\xed\x52\x48\x31\xa5\xd1\x3b\x3b\x51\x3b\xf8\x75\x84\xd9\x7c\xf6\x60\xf7\xa1\xde\xb6\xbd\x4d\xa3\x28\xd0\xd2\x67\x75\xa7\xd8\xd0\xa6\x01\x34\x25\x3c\x8f\x21\xfc\x49\x21\x4d\xda\xab\xba\x73\x88\x5e\x65\x87\xaf\x4c\x72\xc1\x1a\xe1\xf4\xef\x69\x0e\x1c\x86\x86\x38\x83\xe2\x9a\xb5\x38\xc3\x22\xb2\x13\x12\x3f\x71\x6a\x72\x23\x0b\x03\xe9\xa8\x73\x4d\xdf\xcb\xcb\x35\xe7\x66\x6a\x83\x24\xed\xc2\xa6\xb2\x4a\x8b\x06\xca\x5e\xa7\x8f\x21\xb2\x79\xac\xed\x9b\x7f\x18\x5b\x03\x60\xcc\xed\xba\x06\xe6\x3c\x1c\x72\x3d\x5a\x68\x5d\x3d\xc2\xfd\x72\x1d\x05\x84\x3d\x32\x08\x3b\x21\xb3\xf2\x48\xb9\xbc\xa1\xe8\x24\x1d\xbc\x2b\x89\xfb\x8f\x95\x46\x1b\x3e\x36\xd7\x1e\x01\x77\xd9\x46\x54\xa1\x78\xde\x8f\x31\xaa\x8c\x29\xc7\x03\x23\x61\x78\xdf\x4b\x8e\x3e\xd3\x6c\xfb\x78\xfc\xc9\x09\x79\x97\x0a\xad\x27\x46\x7f\xe7\xc4\x77\x9c\x3e\xd9\x96\x83\x37\x2d\x3c\xf7\x89\xd0\x0a\xd3\xb4\x48\x2b\x92\x37\x4a\x51\x14\xae\x19\x91\x28\x41\xa4\x70\x42\x53\x83\x6a\xc6\xe7\x20\x89\x7b\x21\x32\x18\xa5\xc7\xec\x96\xfc\x8a\xef\xb3\x78\xda\x65\x5c\x86\x26\x5d\xb5\xb9\x15\x4d\x55\xf8\x1d\xdc\x9a\xc3\x37\xba\xbd\xc8\xc4\x94\xf6\x2d\xbf\x0b\xbb\x13\xc5\x00\xbe\xae\x61\x79\x79\x91\x6c\x4d\x48\x49\x57\x64\x46\xe0\xf5\xfd\x39\x7d\x8e\xaf\xdd\x8b\xe6\xc4\x1f\xcf\xfb\x5a\x7a\x29\x1a\x9e\x9f\x54\xa5\xe2\x93\x38\x41\x2a\x1e\x2d\x75\x47\x15\xc8\x07\x50\x59\x71\xd0\x7c\xef\x6a\xa3\xfd\x64\xe8\xb7\xdc\x90\x11\xfc\xf0\x68\xd1\xa5\xcc\xd7\x75\xbd\x98\x7d\x1b\x5b\x09\xf8\x50\x56\x39\xd9\x52\xe5\xff\x93\x95\xe6\xa2\x6e\x41\x99\x6e\xe0\x31\x25\x51\x46\x78\x4c\x41\x11\xea\x8a\x61\xcf\xf3\x73\x4b\x4f\x8f\xea\xef\xd1\x64\x4c\x49\x14\x06\x1b\xbb\x95\x10\xe5\x0d\xc0\x30\x1d\x42\xb2\x7c\x20\xd8\xe9\xf7\x14\x71\xd1\x69\x3a\x1f\xf1\xa0\x37\xe1\x3d\x33\x7e\x02\xf6\x41\x6a\x9a\x1e\x60\x76\x72\xec\x73\x2d\xd7\xa7\xa6\xd5\xc5\xce\x51\x92\x65\x20\x61\xc0\xf9\x03\x85\x63\xac\x1b\x66\x38\x17\x88\x74\x4d\xaf\xf7\x7a\x1a\xe6\xd2\x86\x8f\xd0\xeb\x75\xec\x39\xbe\x51\x75\x6c\x08\x0b\x64\xe5\x94\x1d\x9a\x77\xec\xad\xaa\x19\x7c\x5a\x23\x64\xdf\xb2\xd2\x74\xa4\xd7\xd4\x3d\x24\xd2\x1d\xa2\x31\x1d\x39\x2a\x5d\xe5\x80\x0a\x93\x97\x6f\x45\x9c\x96\xca\x5e\x58\x68\x9a\x7e\x6a\xd1\x36\x87\x9d\x75\x4f\x37\xea\x6f\x43\xf8\x04\x7f\xf6\xbd\x3a\x23\x17\x98\xb8\x0b\x20\x3b\x4c\x0e\xe0\x26\x7c\xad\x5a\xa8\x32\xe2\x06\x84\x3d\x86\x47\xfc\x88\x5e\x82\xaf\xa7\xe6\x87\xe0\xcd\x45\x9c\xad\x9b\x7e\x5f\x7a\xd3\x25\x95\xed\x51\xff\xef\xd2\x77\x48\x2b\x77\x4d\x51\xce\x1e\x09\xc2\xdc\xf7\x86\xb0\xfa\xa2\x92\x62\xd7\x44\x5e\xbd\xd4\x14\xdd\x22\xb2\x31\x13\x12\xc2\xf0\x9d\xd0\x0e\x2d\x7d\xd2\xd5\x2d\x0f\xcd\x8b\x05\x9e\xca\x72\x94\x66\xa3\x6b\xd2\x55\xca\x5f\x55\x08\x63\xb0\xb6\xe1\xf4\xf2\x90\xb7\x34\x4e\x9c\x57\x13\x30\x7b\xd8\xd3\x7c\x3d\xf6\x4c\xcb\x76\xcd\x44\x85\x13\xfa\x7a\xd1\x67\x53\x7d\x37\xfe\x79\x05\x7b\xb9\xdc\x52\x3c\x02\x97\xa7\x8a\x68\x34\xd8\xa3\x24\x37\x79\xd2\xf0\x40\x7e\x40\xa2\xf9\x5a\xb1\xe8\xf5\xa3\xb0\x6b\x29\x60\x61\x99\x4b\xda\x9a\x22\x79\xf9\xb4\xe2\xf5\x83\x00\x6c\xa6\x54\x9a\x7e\x42\x0f\xc5\xd7\x53\x93\xfe\xc2\xfe\x66\x36\xb2\xa5\x1b\x01\x0a\x0e\x8f\xc1\x38\xd1\x52\x20\xdb\x13\x53\xe8\xc0\x85\x85\x66\x94\xac\xcf\xf8\xce\xa4\x13\x4a\x65\xee\x8c\x8a\x29\xfe\x44\x4b\x4a\xdb\x34\x2b\x4c\xd7\xea\xfd\xa8\x04\x00\xeb\xb8\x91\x0f\xd0\x34\xd9\x14\x75\x4c\xac\xbb\x4b\x6a\x0d\x5e\x1a\x7f\xc6\xb7\x95\x75\x98\x96\x92\xd2\x8a\x74\x8e\x21\x81\x72\xbe\xd5\xf8\x55\xc1\xc8\x9c\x57\xb4\xc4\x5f\xff\x6f\x7f\x11\x2e\xb2\xb4\xd2\xe2\xa8\x54\x60\x3b\x39\x37\x1f\x4c\x2d\xb7\xc5\x83\x44\x8d\x6c\x95\x56\xf3\x66\xcb\x17\xc6\x36\x2b\x65\xad\x68\x34\x98\xf5\x7d\x20\x1f\x68\xca\x9f\x8f\x68\xdc\xf8\x3f\x74\xa6\xe1\x23\x55\xda\x1c\x26\x48\x4d\x2f\x1e\x74\x24\xab\x64\x71\xf8\xc6\xeb\xef\x98\x28\x62\x98\x0b\x9e\xfb\x29\xe8\x67\x09\x97\x04\x19\x57\x04\x6f\xb7\x5b\x4a\xe6\xfd\xb1\x76\x4d\xf6\x8a\xc2\x5f\x59\x14\xc2\x78\x52\xce\x96\x00\x54\x85\xc2\x34\xcc\x76\x28\x24\xdf\xe3\x93\x6a\x87\x63\xf9\xaa\x52\x5e\x51\x5e\x1e\xa4\xdb\xe1\xf8\xb3\x00\x30\x90\xda\x7f\xab\xfd\x94\x2b\x79\xd8\x61\x58\x0c\x33\xda\xd1\x70\x6f\x66\xd1\x9d\x5d\x21\x2e\x45\xbd\x72\xf7\x14\xcc\x77\x69\xa9\x19\x94\x87\x45\x1a\xb2\x74\xa9\xaa\x13\x2e\x2b\x22\x2e\x77\x02\x0b\x28\xc3\x27\xa4\x4f\xaa\x8e\xce\xe9\xe4\xcb\xe2\x41\x62\xdd\x9c\xf1\xcd\x24\x33\xe4\xae\x8a\x38\x17\x0d\x0a\x06\xeb\xae\x3a\x33\xc2\xe1\x28\x0a\xcb\x9f\x59\x3c\xc8\x09\xac\x53\x98\x4d\xbe\x69\xf9\xa6\xfa\xa0\x48\x3b\xa8\x3a\x0b\x45\x82\x3f\x61\xf1\x5b\x38\x35\x1e\x4e\x8b\x4e\x2e\x34\x87\x1b\x69\x68\xd0\x45\x00\xfe\x83\x57\x94\x6c\xcc\xf5\x8a\x9c\x4c\x8d\x6b\x1c\x0c\xc2\x60\xd5\xa2\x1c\xc2\xe2\xdb\x70\x02\x44\x89\x5b\x51\xa7\x94\xfe\x9d\x65\xc9\x32\x3c\xe8\x79\x82\xfb\x73\x57\x4d\xcb\x87\x10\xe7\xe1\xd0\x48\xbb\x4d\x0d\x75\xd5\xc8\x44\x79\xaa\xa9\xab\x6e\x29\xea\x2a\x5f\x95\x87\x13\x6a\x3a\xd1\x86\x6a\x41\x3c\xab\x0a\x91\xd3\x07\xc4\xf2\x72\x33\x4a\x92\x21\x8b\xbe\xc0\x8b\xdc\xd3\x56\x18\xc4\x4d\x64\x8b\xb1\x0c\x01\xb8\x13\x52\x5c\xf1\x01\xf3\xac\x88\xcd\x30\x9c\xa9\xb0\x4e\x79\x14\x2f\x40\x10\x08\x38\xee\xab\x70\x72\x54\x74\xa2\x30\x88\x36\x1e\x2b\x9f\x0f\xf8\x8e\x3b\x94\xbf\x66\x05\x27\xc5\x97\xf3\x2e\xd6\x82\x48\x3b\xa9\x76\xa8\x06\xc5\x19\xf0\xda\xee\x60\x11\xc3\x21\xe1\xad\xec\xf8\x19\x0f\x49\x12\x19\x76\x58\xf8\x67\x6a\x38\xe1\x3b\x61\xb7\xcb\xd0\x0f\x09\xa2\x1b\x4e\x12\xf4\xd8\x54\x2b\xe2\xca\x3c\x15\x63\x46\x39\x91\xcc\xaa\x83\xee\x45\x77\xd0\x3d\xa5\x78\x82\x56\x6d\x9a\x3d\xd6\x70\x84\x7a\x4f\xa3\x00\x23\xbe\x03\x7d\x4c\x80\xe5\x2a\xb2\x7b\xa8\xe4\x32\x77\xc2\x96\x38\x79\x88\xa5\xa5\x15\x5e\xcb\xc0\x42\xe0\xe8\xb9\x43\x1e\x17\xdc\xf8\x63\xe3\x0a\x60\xdd\x1f\xf3\x07\x0f\x1d\x98\x6d\x1c\x7c\x5e\x24\xd7\x94\x68\xf4\x37\x68\xd5\x20\x9d\xc8\x7c\xbc\xf8\xde\x1b\xaa\x39\x34\x88\x8a\xd2\x99\xa4\x4d\x2b\x1d\x2d\x34\x51\xd2\x85\x22\x91\xe2\x4b\xc5\x70\x44\x61\x36\xe6\xe6\x1f\x6b\xf9\xcd\x8b\x8a\x05\xed\x03\x05\xb2\x41\x33\x1f\x23\x92\x5b\xea\xa4\xf3\x08\x03\x3b\x1c\x45\xc9\x86\x4d\x61\xdc\xa5\x56\xd3\x70\x1d\x98\x00\x15\x48\xf7\x73\xb9\x3c\xb1\x8c\x7f\x58\xc3\x0a\x14\x24\x45\x1c\x84\x11\xd9\x2d\x14\x0d\xef\x54\xb2\x67\x8a\x62\xea\xb8\x0a\x24\x86\x76\xd8\xb1\x50\x99\xc5\x5f\x52\xeb\xc2\xe6\xdb\x4a\x59\xf9\xb4\xee\xdd\x7a\x43\x75\xc2\x5e\x76\x89\xe3\xc8\xc6\x5d\x9b\xce\x28\xce\x79\xa6\xe6\x47\xc9\x12\xac\x61\x70\x1d\x66\xda\x35\x9a\x98\x61\xdc\x2d\xb2\x3c\x0d\x09\xa1\x4a\x7b\x1f\xfd\x7a\x70\x83\xf9\xba\xa6\x0d\xaf\x9c\xc1\x4e\x47\x54\x47\xf1\xb8\x97\x69\x7f\xf0\x75\x4d\xfc\xf6\x62\xb3\x13\xe6\x24\x5e\xec\x9a\xb6\xb9\x4d\xd2\xc5\x89\x8e\x13\xf2\x64\x4d\x3f\x4b\x30\x20\x91\xd0\x3e\x57\xf1\x90\xcd\x7a\x8d\x16\x81\xb4\xe7\x28\xad\x37\x10\x10\xc1\x91\x3f\xa7\x08\x86\x87\x61\xb4\xfa\x38\x59\x26\x97\x2f\xf4\xcd\x60\x47\x75\x7f\x1f\x43\x95\xb9\xdf\xb3\xa5\xd0\x17\x58\x2a\xa8\xaa\xa0\xd9\x4e\x88\x9b\x7d\x1d\xf4\x06\xe6\x41\xf2\x90\xf0\x85\x24\x83\x49\xa3\xc6\x3f\x59\x63\x59\x0f\x34\x5f\xb2\xeb\xc2\x1f\x51\x9b\x0f\xd8\xea\x79\x1e\x7c\x1e\x72\x65\xc3\xd0\xe3\x1f\xa4\x81\xcf\x67\x07\x4e\xa9\x62\xd5\xb0\x48\x47\x03\x04\x8e\x6c\x43\x5a\xaa\x84\x8e\x37\x64\x81\xd7\x29\xfc\xd9\xa1\xf9\x2f\x35\x93\x34\x24\xa2\xcd\x86\x57\xb6\x05\xfe\x41\x28\x64\xbc\xc3\x1d\xf6\xc2\x38\x6f\x28\xd7\x89\xe1\x42\x22\x5a\xbd\xd5\x13\x38\x7c\xb8\xb9\x66\xd3\x8d\x19\xb2\x08\xc8\x81\x5f\x22\xab\x22\x90\x60\x1f\x9a\x5f\xd2\xc8\x40\xc7\x6e\xc2\x7d\x23\x9a\x63\xfa\x63\x17\xcb\x99\x2c\x2b\x52\x13\x07\xa0\xbd\x83\xbb\x83\x93\x06\xfe\xdf\x23\x9a\x44\x61\x32\x57\x85\xb1\x77\x54\x45\x85\x9a\xb1\x67\x3d\xfa\x11\x35\x1e\xe1\x0b\xa5\x65\x28\x5a\x62\xf4\x0d\x48\x39\x9e\xa9\x6d\xf3\xe9\xda\x20\x49\x99\xac\x5d\xec\x9f\x42\x6c\x5f\x98\x9a\xec\x95\xf9\x95\xe6\x28\x4d\xe2\xd2\xf0\x48\xf2\x8a\x69\x90\x94\x90\xe1\xc5\x96\x8f\x0c\xb3\x62\x44\xcc\xd7\x71\xde\xa8\xb6\x01\xd2\x08\xf1\x8d\xda\x24\xf9\xc0\x6e\xfc\x5c\xe3\xab\x5f\xe6\x97\x60\xaa\x26\x1c\x9c\x27\x15\x9d\xc1\xfd\x71\x19\x0a\x60\x8d\xef\x6a\x2b\x99\xa9\xbb\xad\xc6\x17\xbf\xc6\x16\xe9\x5f\x50\x11\x11\xc6\x14\x24\xe5\xb0\xd9\x37\xc6\xbe\x2b\x9c\x59\xe9\xb0\xa7\x1f\x6f\x2b\xf8\xff\x75\x4c\x01\x0e\xbd\x3d\xa5\x5d\xde\x9c\x9d\x94\xe7\x86\x88\x7d\xd1\xba\x42\x86\xf1\xa3\xb1\xd7\x77\x94\x5e\x57\xb8\x77\x7f\x34\x56\x8a\xad\x0f\x91\xb1\x41\xe6\xf5\x3d\x82\xff\x0b\xb0\xac\x5c\x12\x28\x0e\x34\x26\x8a\x6c\xea\x5d\x68\x07\x20\x11\x79\x1b\x64\x57\xa8\xcd\xdd\x6e\xe9\x16\x8e\x96\xc2\xf2\xee\x9d\xf8\x2a\x53\x16\x10\xef\x9b\xc3\x1e\x32\x5d\x15\xdf\x28\x71\xa3\x4e\x91\x85\xb1\xcd\xb2\x21\xfb\x8a\xaa\xa7\xd9\x35\x38\xd7\x71\x1a\xa4\x36\x4b\x22\x5e\x0a\x4e\x54\xc1\x1d\xe9\x7f\xa8\x5b\x7b\xc2\x38\x2e\x6d\xf0\x0b\xfb\x7d\x14\xe2\x8a\x86\x2c\x37\x2b\x04\xdd\xb5\x52\x44\x83\x24\xc9\x11\x3f\x3a\x9e\xd6\x72\xb6\xc4\x86\xfb\x08\x20\x33\x71\x77\x3d\x0c\x06\xe4\xc8\xc2\xac\x5f\x54\x6a\x90\x8c\xc9\x77\x92\x61\x3e\x4d\x7f\x59\x1d\x93\xa9\xed\x11\x59\xc3\xca\x3c\xdb\xf2\x7b\x63\x9f\x1f\xbe\xe7\x0f\xf4\xaf\x17\x26\x72\xa0\x52\xac\x3b\x88\x28\x3a\x2e\x6f\x87\x12\x39\xe1\xfc\xcf\x97\x92\x22\x8d\x2d\x7c\x5e\x01\xf2\x2a\xd2\xb5\x33\x53\x31\xca\xbe\xe5\xe6\xc8\x84\x3c\xce\x8c\x10\x55\x92\x57\x57\xea\xc4\x2b\xba\xa5\x97\x4c\xe2\xfb\x2e\x61\x72\x42\xf5\x80\x9d\x50\x29\xb6\x20\x49\x47\x49\x6a\x72\xbb\xdb\x3f\xd1\xad\xb1\x2a\xb5\xcf\x6a\x3a\xad\xfb\xe4\x11\xa0\x1a\xfd\x08\x93\x00\x63\xf9\x00\x36\x07\x83\x79\x9e\x2a\x55\x9b\x6c\x94\x10\x54\xde\x53\xa7\xfb\x34\xeb\xdd\xe7\x3f\xdf\xec\x40\x34\x0b\xa3\x29\x1d\xa6\x3e\x93\x73\x47\x25\xc9\xa6\x05\x4a\x16\x16\x9b\x91\xc9\xd1\x55\x82\x3d\x76\xaf\xa2\x38\xa5\x03\xc2\xa7\x5d\xc7\x44\x79\x72\x65\xc8\x82\x7b\x57\x96\x7b\xc8\xf8\x46\x61\x49\x7a\x49\x1c\x84\xec\x6b\x8b\x32\xa6\x96\xc9\xac\xd1\x8c\x4b\xad\xe9\xd2\xdf\x0b\x04\x8d\x46\x4c\xb0\x69\x35\x11\x5f\x81\xcc\x47\xc3\xc9\xd5\xbe\xa1\xd9\xdd\xde\x50\xe8\x46\xd3\x8f\x6d\x14\x85\x58\x16\x08\x98\x5e\x19\x2b\x45\xfd\x57\x54\x69\xc0\x8c\x46\x49\x18\xe7\xdc\x2c\xc8\xb4\xf1\xd4\x32\x23\x14\xf2\x2a\x40\x53\xca\x96\xb7\x5c\x39\x30\x89\xf3\x64\x67\xf9\x61\x69\x96\x68\xb8\x5e\xe8\x0f\x61\xa7\xe0\x83\x41\xce\x11\x55\x28\x08\xb0\x51\xc9\xf0\x9f\xfc\x6c\xbb\xf1\x95\x45\xc6\x0b\x9f\x27\xdb\x0c\x07\xf8\x9a\xab\x01\x04\x03\x6b\xd3\x30\x11\xe1\x5e\x78\x43\x7b\x61\xdf\xd5\xaa\x14\x75\xad\x9d\x13\xdf\x89\xda\x09\x93\x60\x60\x87\xa1\x70\x64\xeb\x8a\xa5\xd7\xbc\xc3\xdf\x16\x71\xd8\x4b\xd2\xa1\x06\x52\xc1\xef\xd0\xc0\x43\x38\xde\x9b\x55\x6e\xcc\x23\x47\x68\xcf\x62\x9f\xff\xa9\x96\x5c\xfa\x53\x07\x5e\x5b\x0d\xf3\x86\xda\x2d\x38\xb6\xa4\x6c\xf0\x49\x44\xc3\x49\xba\x6a\x87\xc4\xbb\xe9\xf4\x19\x5c\x11\xf5\x98\x72\xa6\xdf\xa5\x55\x0c\x6f\xec\x4d\x0d\x03\x6e\xb4\xe5\xf7\xd7\x4d\x36\x57\x0e\x3a\xce\xa9\x6b\xe3\x6a\x01\xf7\x90\x60\x36\x3e\xc2\x42\x41\xc4\x37\xdb\xa6\xee\x40\xb8\x9c\xbf\x39\x95\x10\x3e\xf8\x7c\x33\xb5\xa3\x22\x0d\x06\x42\x15\xc7\x01\xc7\x78\xfb\xe7\x7c\x92\xd6\x93\x4e\x6f\x6f\x6f\xfd\x06\xca\x94\xda\x22\x4d\x46\xd6\xc4\x33\x3e\xc1\xca\x22\xb3\x18\xec\x9b\x63\xdf\xe9\x3b\xeb\xf2\x47\xfd\x70\xcd\x9a\x75\xb3\x41\xd1\xba\xf4\x65\xf8\x48\x7b\x9b\xb2\xb6\x37\x5c\x62\xc1\x25\x11\x65\x2d\xe1\xe8\x67\x30\x05\x3e\xb9\xbd\xad\x58\xe8\x8e\x2b\x74\x47\x6c\xb2\xae\xf9\x3a\xa1\x3b\xc4\xef\xf5\xf5\x58\xd0\xa0\x20\x95\x3d\xa1\xe7\x60\xf1\x50\x87\x65\x26\x87\x38\xcb\x4d\xdc\xdd\xd9\x50\x7a\x19\xf4\x63\x08\x18\x2e\x11\x37\x8c\x04\xdb\xe5\x78\x62\xbf\xe2\xe4\x70\x0d\xbf\xbe\xb4\x7c\x14\x56\x14\xab\x68\x73\xea\x78\x38\x7c\x98\xf8\xad\xa1\x35\x88\x90\x80\x85\xfa\xf8\xe6\x13\xcb\x38\xa9\x09\x42\x66\x7c\x71\x8a\x8b\x4e\x2d\x88\xe3\x40\x1c\xd1\xd3\xbe\xff\xf2\x72\x73\x54\x7a\xfe\x59\x16\x0a\x51\x15\x9c\xad\x9f\x2a\x0e\xaf\x9f\xaa\x5c\x42\x44\xcc\x00\x08\x1a\x11\xff\x23\x3d\x83\xa3\xe4\x9e\xea\x2d\x9a\xee\x7d\xff\x42\x33\x49\x63\x9b\xe7\xb6\xa1\xda\xba\xae\x90\x0f\x25\x6b\xdb\x23\x5c\x80\x79\x74\xfd\x1a\xb7\x14\x71\xed\xad\xba\x6a\x54\x14\x7e\xbd\x60\x46\x0c\x71\x3c\x1b\x8e\x85\xf8\xf8\x54\xf9\xa6\xf4\x83\xd7\x93\x74\x95\x76\x02\xe0\x10\x4c\x75\xe6\xe8\x50\x5d\x7e\xef\x95\xad\x74\xa8\xa5\xe7\xbd\x32\xbf\x1b\xab\x12\x11\x78\x63\x42\xe7\x5d\x85\x1a\x56\x42\x5b\xb2\xab\x92\x52\xa4\xc5\x8b\x45\x30\xc1\x99\xe0\x32\x4f\x8e\x9d\xf9\xdb\xb4\x3e\x15\xd6\x58\x0c\xd1\xa4\x92\xcb\x2e\xf2\xc1\x13\x2a\xf9\x74\xb6\xe5\xcb\x84\xb7\x2b\x70\x3f\x3c\x0e\x36\xe5\x7b\x4a\x75\x14\x2d\xfa\xa2\x03\xde\x58\x58\x70\xe9\x49\xf2\x52\x19\xfc\x83\x8e\x2b\xa7\xf2\xed\x33\x3f\x17\xe9\x31\x71\x7d\x94\xb6\x00\xb6\xd1\x5d\x35\x8d\x9d\x02\x84\xea\x42\x54\x7a\x0d\x0f\xc6\x37\xce\x9b\xea\xd8\x20\x19\xda\x6c\xae\x7c\x06\x26\xe3\x1d\xab\x96\xa6\x3d\x6d\x85\x83\x62\x44\x3b\xc2\x52\x74\x3c\xc8\x4a\xac\x91\x03\x41\x85\xdc\x39\x24\x58\x41\xd8\xa4\x0c\xbb\x22\x03\x80\xd4\xdc\x8d\x9a\x12\x78\xb3\x20\x8a\xf5\x20\x74\x08\x24\xce\x49\xd1\xe7\x24\x3f\x25\x49\x95\x2c\x2a\x52\x56\xce\x61\x5e\x98\x0a\x47\x4c\x1d\x2b\x62\xbc\xb1\x3e\xb0\x0c\x88\x72\x54\x61\x8e\x14\xf1\xb2\xaa\x7c\x05\x49\x1c\x58\xf2\x55\x1b\xbe\xfc\xfe\x31\xcd\x02\x5f\x3b\x3e\xe0\xae\x38\xda\xd2\x24\x42\xa3\xc9\x37\x75\x39\xea\x32\xb4\x1d\xa2\x1e\xc4\x2e\x00\xdc\x6a\xf1\x07\xbc\x09\x88\x93\x4e\xd2\xdd\xa0\x08\x58\xc5\xa9\x4a\x0c\xdb\x11\x1e\xbc\xa5\xd4\x23\xdf\x52\x79\xb9\xbf\x4e\x1e\xaa\xf9\x09\x56\x2e\xdb\x88\x93\x51\x1e\x06\x72\x18\xe0\xc8\x66\x0a\x4b\xd8\xba\x77\x75\x03\xf2\x43\x6d\x4b\xc2\xcc\xee\xf4\xdd\xc4\x1f\x8d\x7d\x63\xd3\x55\x2c\x68\x18\xce\xdb\x78\x11\x18\x23\xcd\x1f\xce\x58\x7d\xe4\x99\x19\x25\x06\x17\x58\xd3\xd9\x13\xa5\x72\x36\x4b\x7b\xc7\xb1\x0a\x94\x7b\x47\x58\x05\x1a\x9f\x20\xe1\xfd\x8c\xea\xfe\xc9\x6d\x3f\x35\x4e\x32\x93\xe9\xbd\x54\xe2\xfd\x82\xf2\x1d\x93\x22\x1f\x25\x0c\xf4\xe1\xd3\xb3\xa5\x4f\xd2\xba\xec\x50\xc6\x25\xde\x45\x06\xe3\xbf\xab\x29\x95\x20\x99\xb5\x89\x96\x3a\xa1\xde\xdc\xba\x66\x0f\xcd\xbf\xd8\xb4\x86\x48\xee\xe9\x97\x01\x24\x64\x50\x3a\xdf\xb8\xe0\xaa\x88\xf2\x70\x68\x72\x8b\xaa\xb2\x24\x05\x7d\x81\x12\x47\x3f\xe6\xe5\x63\x4d\x3a\x74\x71\xea\x84\xdc\xbf\xb2\xbf\x99\x95\x3e\xc4\xa1\x79\xb6\xb3\x1f\xe2\xd9\x85\xfa\xd9\xf7\x56\x78\xb1\x1e\x33\x2c\x1f\xb4\x6b\x86\x0d\xad\xdf\x7d\x51\xd7\xdf\x2e\xd6\x09\x54\xa4\x36\x0b\x0a\x38\xf0\x88\x5b\xde\x52\x31\xcc\x5b\x4a\x05\x76\x94\x26\x99\x0d\x48\x04\x96\xbb\xf4\x05\x23\x42\x83\x2c\xe8\x91\x9a\x36\xfd\xcc\x46\x91\x17\x5c\x97\x5e\x3f\x55\x48\xbb\xd4\xfa\x24\x21\x03\x50\x7e\x84\x62\x35\xf0\xd2\x1c\x80\xf3\x8d\x6a\xcb\x0a\x92\x7e\x1c\xbe\x6c\xb9\xeb\x40\x1a\x72\x95\xeb\x78\x7a\xac\xac\xc3\x4d\x55\xed\x24\x42\x77\xc6\x34\x8b\x46\xb0\x62\x33\xbf\x4d\x43\x2e\x79\x06\xef\x7c\x99\x38\x1c\x9a\x68\x07\xc1\x1c\x91\xea\x40\x5d\x45\xca\xff\xf4\x7d\xfc\x1f\x63\xa5\xd5\x7b\x57\x11\xbf\x4f\xf4\x19\x7a\x5e\x75\xd6\x05\x49\x9c\xd9\x38\x2b\xd0\x91\x84\xb9\x67\xc4\x21\xdf\x54\xa4\xde\xe2\xdc\xd0\x18\x49\x1b\x7b\xc3\xd1\xda\x9c\x6f\xe9\x7c\x43\x64\xb3\xa1\x89\xe1\xd8\x60\xa7\x3d\x18\x7b\x6c\x58\xa3\xed\xd3\x93\xc7\xa7\xd0\xb0\x32\x2d\x45\x56\x38\x14\x20\x36\x02\x83\x71\xf9\x06\xd2\x9e\xb0\xcf\xb6\x43\x8b\x0b\xfc\x29\x6f\x2b\x9d\xfb\xb7\x55\xb5\x2a\x49\xf3\x41\xd2\x4d\x8e\xcc\x68\x06\x95\x6a\x6e\x59\x4b\x40\x9d\x54\xad\x70\x51\x98\x0f\x92\x7e\x6a\x28\x51\xeb\xe0\x1f\x28\x55\xb2\xd8\xf9\x58\xf5\xc9\x68\x98\x58\x1a\x06\x03\xe2\x06\xf7\xcd\x08\x17\x14\x19\xc3\x85\x29\xbb\x72\x68\xfe\x4b\xcd\x4e\x11\xad\x36\x7c\xf0\x73\x46\x49\x6a\x9f\x71\x2e\xfd\x96\x75\x8b\x2c\x03\x0b\xa7\xf1\x4d\xdb\x4f\x4a\x27\x29\x36\xfa\x85\xe5\x6d\xc5\x8c\x56\x64\x3b\x84\xdd\xaa\x82\xfd\xb4\xd1\x5e\x5f\x85\xb9\x09\xbb\x0e\x67\xee\x3e\x3c\x3b\x00\x9b\x1f\x8e\x55\xe1\x66\x17\xd2\x85\xe2\x82\x51\x9c\x55\xa1\xeb\x93\x14\x32\x26\x00\x3b\xe4\x30\x3d\x83\xf8\x33\xbe\x6d\x74\xa6\x5d\x1e\x7d\xc2\x2b\x42\x2f\x85\x08\xfa\xc6\xd8\xa3\x33\xd0\x35\x22\x01\x85\x1f\x05\xee\xa3\x80\xbf\x73\xac\xae\x01\x7b\x54\xba\xde\xf9\xc6\x8c\x22\x48\x40\xc0\x8f\x5f\x7c\xa4\x4a\x97\x97\x15\x19\x41\x3e\x08\xb3\x67\xca\xdf\x07\x9a\xe5\x09\x32\xb8\xd8\x89\xbf\x4f\xe5\x29\xd8\xd2\xab\x2d\xd5\x8b\x09\x11\x6e\xc1\x96\x6b\x8a\x5d\xa4\x87\x90\x7d\x9f\x9b\x28\xde\xab\x6b\x54\x45\x85\x3d\x79\x48\xef\x88\xfc\xcd\x23\x4c\x04\x7e\xe4\xba\x92\x5e\xf8\x4d\x6c\x70\x78\x07\xd7\x5a\x0a\x9d\xbb\x67\x52\x0e\x0b\xf2\x03\xef\x8e\xbd\xb6\xc0\xc3\x96\x82\x1c\x3c\x86\xc8\x0f\x27\xca\x6f\x63\xe6\x24\xa9\x58\x63\x6c\xed\x91\x3c\xb5\x43\x3b\x53\x4d\x2c\x2c\x2f\x3b\x1d\x08\x5f\x76\xdb\x36\x85\x5f\x78\x61\xf1\x60\xb3\x63\x63\xdb\x0b\xd9\xa9\xd2\x42\xdd\x52\x4c\x98\x2e\x5a\x2d\x37\x7b\x51\xd8\x1f\x48\xde\x5c\x4e\x7b\xed\x05\xec\xad\x50\x4c\xc6\xdc\x1f\xea\x44\xec\x5d\x48\x37\x33\xa9\x94\xf3\x66\xb4\xcc\x89\x6f\xe9\x34\xa3\x51\x64\x49\x78\x86\xd5\x51\x14\x08\x62\x0f\x65\x71\x90\x37\xf8\x3e\xe1\xa2\xf9\x5a\xe3\xfc\x6e\x71\xad\x49\xf4\x13\x68\xe6\x45\x35\xc3\x57\x4b\xf6\x7d\xe5\x8b\xd4\x88\x8a\x53\x80\x33\xd7\xf0\xfd\x6f\x52\x58\x2c\x21\xb2\x26\xc1\x01\xea\x8b\x17\x85\xea\x20\x4f\x7a\x3d\x52\x16\x9d\x53\x5c\xee\x4c\xea\x0b\xaf\x19\x8b\x1c\x07\xe9\x3d\x1c\x5b\xfc\x1f\xaa\x3c\xb5\xab\x06\x99\xde\xcc\x92\x1e\x9a\xd8\x85\x9a\xad\xb4\xb2\xc2\xcc\xe6\xed\x8c\x13\x56\xa7\xe5\x85\x50\xf9\x34\x25\x48\xf9\x1a\xe3\x80\xd3\x05\xad\xa8\x7c\x5d\xa3\xfa\x19\xd8\x98\x75\x94\x38\x5a\x70\x49\x1f\x77\x80\xbc\x5b\xd5\x32\xcf\x0d\xb8\x2f\x11\x42\x5f\x53\xc3\x74\x42\x83\x0e\xee\x92\x11\x41\x96\x85\xe9\x8c\xa5\x81\xb0\x46\xdf\xec\xb3\x5f\xfe\x87\xfb\xbf\xfc\xc5\xe5\xc7\x7c\x74\xc4\x6c\x9e\x98\xa6\x27\x26\x6a\xb4\xcf\xaa\x02\xd4\x93\x6d\x8f\xa2\x7a\xa8\x15\x26\x2e\xd1\x11\x85\xf4\xfb\x44\xe7\x95\xef\x8e\x1b\x87\x0f\x73\x2f\xec\xf6\x36\x66\x1c\x2e\xf8\x9f\xd4\x75\x7f\xc4\x89\x27\xee\x97\x33\xd2\xb7\xa3\x5c\x1a\x7f\x46\x6b\x5b\xe5\x29\x88\x08\x4d\x34\x5b\xfe\xba\x14\x40\x1a\x8e\xff\xe8\xb4\x12\x46\xe1\x54\x87\x14\x46\xbc\x17\x03\xad\xdf\x19\x9f\xa3\x21\x49\x04\xae\x50\x1e\xd3\x54\xc5\x17\x94\xdd\xec\x24\x11\xd2\x09\x9c\x1e\x6d\xe9\x54\xa9\xc4\xad\x59\xec\x4a\xd9\x52\xbb\xe1\xa4\x0f\xdf\x28\x67\xaa\x9b\x04\x79\x92\x2a\x12\xc6\x4b\x8a\x84\xf1\x92\x42\xf1\xc8\x8e\x98\xf5\x99\x24\xf4\xf8\xf1\xb5\x16\xfe\x11\xaa\x12\x51\xac\x72\xb2\x13\xe6\x48\x38\x0c\x5f\x26\x35\x54\xb7\x5e\xdf\xa0\x25\xe4\x64\xf8\xcb\x29\xc0\x9a\xbb\x39\x55\x48\x5e\x58\x6c\x06\x45\x27\x0c\x70\xda\x30\x70\x9e\xd6\x09\x2c\xf9\x2e\x5a\x27\x38\x2d\xee\x28\x4d\x7b\x6b\x56\x1b\xbe\xc6\x07\x7b\xcf\xd7\x5a\x39\xba\x4b\xa4\x1f\xa5\x8f\xe8\x2d\xfa\xd9\x96\xc2\x9e\x9c\x1e\x7b\x28\x0c\xf4\xa1\x81\x8f\x3b\xdb\x52\x0d\xb6\x67\x35\xff\x48\x85\x25\x47\xa2\x44\xe4\x53\x76\xb7\xfd\x83\x5f\xd6\xb8\xfb\xc6\x44\xf8\xc1\x86\x61\x90\x26\x9d\x30\x89\x92\x3e\xa2\x77\x58\x50\x26\xb2\xe6\x9b\xa9\x40\xe1\xf0\xe1\x66\x90\x5a\x21\x86\x77\x6e\x95\xcf\x55\xdc\x9b\x8a\x62\x0e\x3e\xdf\xec\x15\x36\x52\x81\xf6\x69\x85\x7d\x38\x5d\x57\x05\x12\xfb\xd4\x50\x44\xa1\x6f\x90\x51\xe4\xeb\xaa\x96\xed\xba\xed\xee\xf2\xfa\xff\x97\xe8\x00\xe5\xeb\x96\x6a\x6e\x7f\xd0\xaa\x48\x47\x60\xbc\x70\x82\x72\x7b\xb3\xe0\x3a\x7d\x4e\xed\xbe\x0a\x82\x4a\x4f\x4d\x56\xec\xd7\x0b\x93\xe6\x36\x07\xda\xd5\xe1\x0d\x75\x92\xaf\x4e\x2b\x2c\xb2\x46\x4a\x36\xd8\x04\xec\xd9\xf2\x8d\xe3\x6e\xfb\x1b\xb2\xfb\xb9\xb2\x5f\x91\x95\xa1\x55\xc3\x67\xdc\x59\xdf\x59\xd0\x05\xd3\x79\xc9\xd4\x76\x8b\x40\x10\x29\x2c\x5a\x4a\x07\x80\x08\x98\xd6\xc0\xe3\xa2\x70\x38\x62\x09\x43\xa1\x8c\x2b\x9f\x0d\x39\x82\x8f\x15\x4a\xfd\xee\x14\x64\x77\x65\xbe\x19\x96\x0f\xe8\xc2\x04\x00\x2d\xf8\xba\x8e\x3c\xac\x57\xc4\xdc\xde\x8a\x6a\x33\xdc\x6b\xbe\xae\xe3\x4c\xd1\x89\x04\x7f\x94\x7e\x53\xb1\xe5\x7e\x73\xaa\xce\x45\x28\x4a\x96\xb7\xac\xe3\xd9\xa8\xe1\x1f\xca\x93\x1c\xf9\x28\x5a\x30\xa2\xe1\xd4\x70\x9c\x5f\x7f\xa9\xd4\xc1\x3a\x49\x92\xe5\x74\xcc\x7a\x9a\x5f\x4a\x9b\x8a\x42\xe8\x25\x45\x33\x75\xb6\x55\x31\x72\x4f\xb9\x5a\x9f\xfd\x7a\x61\x72\x3b\xdb\x58\x5a\x7a\xf4\x6b\x9f\x22\x23\x84\xfd\x3f\x3b\xf1\x69\x30\x86\x5e\x88\xc3\xed\x33\x34\xc1\x20\xb4\xbd\x4c\x95\xe5\x3e\x18\xab\xb2\xdc\x07\xaa\xc9\x7a\xdd\xc4\xf9\x9e\x86\x6b\x21\x9e\x9b\x90\xca\x93\x8c\x84\xc2\x0a\x41\x8d\x0e\x8e\xeb\xdb\x88\x19\x04\x06\x43\xef\x89\xb5\xb1\xb3\xad\x18\xfe\xee\x8d\xbd\x52\xcf\x95\xb1\x16\x4c\xfd\x1e\x36\x9e\x0c\x07\x39\xb5\x08\x40\x21\xdc\xc6\xd7\x63\xcf\x39\x73\x69\x6a\x35\x53\x9a\x64\x64\x63\x14\x2c\xf1\x60\x7f\x81\x27\xe6\x9b\xa9\x0a\xd6\xca\x7c\x33\x1f\x90\x1d\x8b\xb9\x79\x47\x1a\x89\x69\x1c\xa5\x93\xd8\x07\xf8\x83\x24\x59\x25\x78\xae\x40\x64\x5e\xa5\xc7\xe3\x6b\x15\x85\x32\xa4\x3d\x0f\x45\xce\x0f\x05\x98\xff\x8f\xd6\x21\x52\x78\x28\xf0\x02\x04\x71\xb7\xd2\xcd\x97\xf6\xed\x13\x65\xf0\xb0\x79\x91\xc2\x11\xf8\x21\x3f\xa2\x97\x87\xd3\x7d\x4b\xb3\x12\xdd\x05\xce\x1f\xcf\x80\xce\x66\x39\x14\x7d\xe5\xe7\x0e\xfd\xb0\x83\x1f\x97\x13\xe4\x60\x45\x3e\x5d\xf3\x6d\x38\xd8\x2e\x01\x5f\x4e\x83\x28\xd3\xfa\x5c\x5d\x9e\x86\xfd\x3e\x08\x25\xbd\x13\x02\xbe\x7e\x16\xc3\xd5\xcc\xce\xff\xc1\xf9\x0c\x7d\x1b\x17\x61\x4c\x4b\x18\xe7\xd3\xea\xb3\x88\xfd\x9c\xe8\x80\xa3\x1a\x7d\x1c\x6e\xbf\x74\x8d\x7b\x8e\x81\x6c\x60\xa3\x0a\x65\x1d\x7d\x48\xe8\xeb\x6a\x7a\x69\xa4\x6e\x27\x07\x23\x4a\xb8\x2c\x13\x8a\xb3\xea\x98\xae\x85\x5e\x50\x88\x9e\xa0\xc8\x33\x72\x24\x79\x6b\xe2\xb5\x1c\x79\x8a\x4f\x46\x9c\xa6\x5a\x34\x9c\xe6\xcb\xaa\x35\xfc\x92\x26\x2f\xba\xab\x78\xee\xae\xaa\x14\xcb\xf9\xb1\x22\xf8\x7d\x00\x07\x17\xa1\xc7\xff\xaa\x56\x9e\xe9\xa4\x89\xe9\x36\x34\x25\x83\x2f\xf3\x4c\x8b\x5f\x50\x55\x6d\xcd\x19\x28\xde\xa6\x2d\xbd\x65\xa7\x8c\xf3\xfe\xe6\xc0\xa6\xdc\xfc\x85\x1c\xe9\x43\x94\x70\xf8\x46\x45\x0e\x83\x24\xea\x12\x75\xbf\xc2\x01\x5e\xd4\x08\xbd\x8b\x35\xfc\x6b\xcd\x51\x6a\x7b\x36\x4d\x45\x08\x09\x09\xbb\xc6\xc4\x77\x48\x9e\xd7\x4e\xce\x75\x1d\x7d\xcc\xb6\x3f\xad\xab\x01\x59\x11\x91\x5c\x14\xbe\x88\x07\x9e\xc6\x17\x47\x4f\x3e\x56\xac\xb6\xff\x0a\x46\x40\xd8\x96\x74\x25\x29\x31\xd1\x2e\x4f\x6e\xcc\x8c\x9a\xcc\xfa\x3d\xf6\x74\xb0\x27\xaa\xad\xe5\x95\xfe\x73\xb7\xfc\xbe\xa7\x27\x1b\x8d\xe9\xf0\xb4\x1b\x6d\xbf\x77\x8a\x38\xe9\x64\x36\x5d\x03\xdb\x81\xd4\xc0\x6e\xb7\xd4\x3e\x40\x1b\x8b\x34\x59\x4c\xd7\xef\x9a\xeb\x36\x04\x87\xaf\x67\x73\x50\x8d\x83\xae\x22\x13\xc6\x59\xd8\xb5\x44\xe0\x8a\x04\xd0\xe3\x13\x8f\x82\x7f\x02\x29\x0c\x58\x9f\xdb\x4a\xd8\x8a\x79\x80\x1c\x4c\xc2\x25\x24\x76\x12\xa9\x10\x05\xe2\x47\x3f\xdb\x56\x90\xcf\x0a\x74\xfa\x5d\xe5\xec\x76\x6d\x14\x06\x61\x52\x64\x0d\x4f\x47\x74\x5e\x49\xb6\x4c\x57\x65\x17\x16\x9a\x5d\x9b\xe5\x69\x11\xe4\xe1\x1a\xba\x1a\x90\xb2\x3c\x4e\x63\xee\x92\x37\x0e\x7f\x79\x4a\xe5\x0c\xed\x91\x51\x92\x49\x89\x48\xd8\xcf\xcb\xe7\x17\x5a\xf4\xad\x2b\xd2\x55\x58\x8a\x60\x40\x78\x69\x32\x37\xff\xf5\xa7\xda\x74\xe4\x31\x49\xcb\x78\xe6\xc0\x3f\xfc\x8a\x30\x78\x8c\x55\xa9\x4a\xb1\xa3\x5c\xd6\x59\xd8\x7b\x9a\x35\x31\x89\xfb\xa9\x42\xa6\xb9\x9c\xa2\xa3\xbc\xba\xa0\x18\x77\x4c\x96\xd9\x94\xba\x6c\xa8\x78\x82\x29\xf8\x29\x54\x1c\xf8\x46\xc9\x81\x85\x65\x90\xd8\x2d\xa4\x41\xf5\x45\x4f\x17\xee\x11\x85\x47\xc7\x95\xba\x3e\x35\x2e\x52\xcf\x33\xe2\xdc\xfb\x2d\xc5\x8e\x7b\xaa\x52\x7b\x6b\x2c\xab\x86\x02\xd7\x35\x7b\x4a\x79\x9b\xe1\x70\x94\xa4\x79\xb6\x8b\x4a\xf5\x88\x82\xd1\xfc\xe0\x84\xdf\x96\x96\xdc\x7f\x68\x21\xee\x9f\x50\x92\x8c\xf5\x2c\x69\x2e\x81\xa9\x7b\x48\x47\x29\xce\x9e\x33\x9a\xfd\xe4\x92\xaa\x13\xd9\x23\xe0\x5a\x4b\x62\xcd\x73\xc6\x6d\xe1\x7c\x53\x93\x91\x5a\xe4\xe2\x9d\xea\xcc\xfe\x1d\xd5\x99\xfd\x3b\x35\xbc\x24\x07\x58\x91\x54\x1c\x49\x47\x0a\xa0\x84\x28\xf7\x2a\xdd\xfa\x3c\x8f\xa4\xd2\x80\xed\xf6\xa6\x22\xe9\x04\x27\x9d\xe8\x1e\xfc\x67\x8a\xce\x22\xee\xa5\x49\x9c\x53\x57\x1f\x77\xe9\x0a\x8f\x0b\x59\x3f\x21\x72\xf9\xc4\xb5\x3b\x30\xeb\x0d\xdf\x30\x71\x4a\x33\x10\x9c\x9a\x42\xce\x12\x03\x41\x9a\x8c\x46\x30\x3f\x82\x1d\x7d\x6f\xac\xfa\x91\x6e\x57\xe8\x87\x1d\x15\x53\x11\x57\xd9\x2e\x8e\x6a\x19\xb3\xa3\x6a\x5d\x64\x45\x9c\xd9\x3c\x23\xc4\x0b\xac\x1b\xfa\xce\x25\xa2\xa8\xb4\x66\x49\xd5\x36\x31\xec\x7e\x23\x01\x77\xbb\x92\x8e\xbb\x5d\x47\xd6\xda\x4f\xad\x75\xc7\x9b\xd4\x50\xbd\x1b\x3d\xcd\x44\x7c\x68\xfe\x4b\xcd\x7e\x12\xf5\x1a\x3e\xd1\x88\x8d\x28\x81\xe0\xd3\x0a\x3f\xb9\x16\x5a\x90\xe0\x38\x35\xc9\x6a\x69\xfa\x09\x1f\x77\x26\x71\xa3\xb1\xb0\xc0\xae\xca\xef\xd2\x9c\xf3\xb5\x73\xde\x89\xec\x53\x60\x71\x30\xb9\x3f\xc4\xf0\xf1\x4d\x4d\x63\xcc\x81\xe6\x28\x0c\x56\x39\x4a\x64\xa2\x99\x96\xaa\x63\x9d\xf3\x9a\x9d\x26\x8c\x78\xf4\x30\x6b\xdb\x27\x9a\xf2\x6d\xbb\x22\xd2\x2b\x46\xf9\x0e\x9a\x43\xcc\x3b\x9c\x42\xd8\x82\x1d\x30\xe9\x12\x8a\xa9\x58\xe8\x5c\xcb\x23\x1c\x6e\x2a\x99\x8e\x1d\x13\xff\xc5\xbf\xf0\xdc\x2f\xa9\xaa\xce\x45\x55\xd5\xb9\x58\x27\xea\x9c\x0d\x93\xa8\x6b\x75\x4a\x88\xdb\x10\xf8\xc6\xa1\xdd\x46\x51\x92\xbb\x50\xce\x31\xc3\x6b\xa6\xb1\x69\x5c\xef\x62\xb3\x67\x02\x76\xe7\x71\xe6\xbf\x87\x8f\xf0\x4d\x0d\x32\x7f\x7f\xd3\x0c\x6d\x1a\x06\x26\x56\xf4\x6e\x87\xb5\x90\xca\xe1\x96\xa7\xfb\xc3\x5e\x67\xba\x22\x51\x7d\x2f\x3f\xc7\x09\x63\xfc\x1a\xe2\x9f\x9b\xee\x55\x78\xdf\xed\xf6\x07\x19\x07\x4a\x15\x89\x70\x94\x31\xf0\x75\xc8\x57\x9d\x18\x57\x76\xaa\xd7\xf8\xc2\xe1\xec\x38\xb3\xca\xdf\x24\xa7\xe4\x7f\xfa\xb9\xb6\x6a\xf0\xbf\x3a\x7e\x56\x5b\x9b\xd2\x25\x48\x4d\x27\xb2\x3b\xcb\x2f\x62\xd1\x32\xda\x9f\x7c\x7e\x6b\x39\x00\x24\x1c\xe5\x60\xf7\x95\x91\x3f\x83\x9f\xc4\x2d\x9d\x2d\xc5\x57\xf7\x50\x15\x43\x47\x24\x6f\x44\x87\xb8\xf0\x1b\xa8\x22\xe3\x35\x7a\x13\x84\xad\xdb\xda\xbe\xef\xa1\x88\xf3\x30\x22\x98\xa7\x63\x18\xf6\x2b\x1b\x0c\xdb\x0c\xda\x6b\xf9\x18\xb8\x31\xa9\x49\x1d\x0c\x4d\xba\xca\x9d\x76\x22\x18\xa2\x3a\x04\xaa\x5c\x2a\xe5\xbb\x49\x9b\x8a\x4f\x5c\xf6\xd3\xa4\x18\x65\xbb\x54\x05\x02\xc9\x11\xe4\x53\x50\x52\x45\x1d\xe6\x0e\x2c\x28\xec\x95\xe6\xfc\xf8\x97\x64\xf8\x51\xb1\xf8\x01\x55\x1f\xf8\x5a\x97\x93\x4f\xaa\x7e\xcb\x97\x8a\xe1\x68\xa6\x1c\x1a\xd4\x3f\x40\x94\x8d\x83\xed\xbe\x82\x82\x9d\x9b\x22\x06\x2c\xb7\x7c\x33\x8c\xa2\x22\xcb\x55\xfa\x03\x09\xbc\xd7\x75\x36\x4f\xf3\x13\xe4\xa1\x89\x4d\x5c\xba\x27\x4a\x84\x82\x3b\x4d\x44\x39\xb9\xa6\xa8\x54\x8c\xb2\x5c\x74\x75\x30\x00\xaf\x2a\x74\xf4\xab\x2a\x23\x39\x1c\x25\xb3\x1a\xc6\x4a\x4e\x01\x7c\xdb\x53\x8a\x72\xef\xba\x96\x15\x3b\x5f\x93\xa8\x8a\xac\xd9\xda\xa4\x83\xec\xa8\x34\xd3\x3d\xe9\x33\xb1\xc3\xa1\x6c\x4e\x5a\xad\xbf\xf1\x29\xf2\x7b\x15\xc3\x2d\xdb\xdd\xe1\xb3\x6d\xcf\x16\x14\x21\x33\x09\x17\x85\x3b\xe0\xf8\xc6\x7d\xf7\xa8\xe8\x76\xdd\x43\x88\x34\x9d\x0f\xe2\x4f\x4e\x59\x16\x42\x8e\xf6\x42\x52\x29\x51\x2c\x08\x68\xda\x92\xed\xb3\x35\x51\xba\xb4\xd4\x34\x41\xfe\xd7\x30\x02\xd4\xa4\xaf\x46\x69\x48\x93\xe1\x54\xff\xcb\xd1\xe4\x9b\x96\xc7\x03\x65\x3f\x1f\x71\xc8\x26\x22\xa7\xbe\xd2\xf6\xbe\xfa\xbb\x5e\x9a\x0c\x7f\x8e\xfe\x0e\xcb\xfe\x63\x15\xdf\xfe\x09\xe1\x16\x91\x91\x3f\x43\xab\x13\xa5\x99\xfb\x1a\x76\xce\x39\x56\x3c\xc1\x63\x8a\x04\xef\x1e\xf5\xb8\x88\x7c\x12\xce\x29\xae\xa6\x8d\x7d\x83\xca\xcc\xc4\x6f\xce\x9d\xd0\x4f\xc7\xb2\x7f\xd0\x22\xac\xaf\xab\x7b\x78\x4c\xde\x6d\x12\xbd\x06\xe4\xf5\x32\xcb\x9c\xbb\x2e\x68\x2f\x7b\xf1\xa0\xa5\x34\xf0\xce\x20\xc3\x01\x27\xfe\xae\x12\x2a\xdc\x31\xf1\x2c\x68\xef\xc1\x30\xe3\x21\xef\xb7\x14\x65\xd1\xbf\x26\xe4\x20\xde\xfe\x7d\x40\x56\x31\x2a\x27\xd4\x46\xbd\xd7\x7a\x66\xba\xc2\xd0\xa1\xc9\x72\xdd\xbb\xde\x37\xbe\xe2\xa2\xb7\x21\x11\x96\x35\xbc\x8c\xe6\xf1\x96\x0f\x3e\x8e\x57\xd2\x45\xeb\x66\xa4\x0e\x5f\xf6\xb5\x45\x9f\xc6\x17\x5a\xfb\xa9\x89\xf3\x04\x9d\x84\x08\x27\x6e\xd2\x39\x2d\xd1\xb3\xc2\x20\x6d\x6f\xfb\xb0\x2a\x5b\x0d\xd3\x61\x98\x0d\x54\x3f\x34\xe8\x4a\xc5\x58\xd4\xb4\xe8\x42\x7c\x0d\x2b\x0d\x87\xe2\x4f\x5b\x8a\xd3\xf9\xa7\xd3\xed\x0f\x0b\xcd\x34\x19\x8e\x1a\x3e\x36\xb9\x8b\x61\xe7\x1b\x95\x08\xe9\x11\x02\x6b\x46\x71\xee\x5d\xd0\xab\x58\xf1\x52\xdc\x9c\xf2\x7f\x97\x96\x56\x08\x7d\xe4\x36\x31\x6a\x2b\x9b\xaa\xce\xb2\xa9\xc2\xb7\x91\x49\xf3\xd8\xa6\xd9\x20\x1c\x51\xce\x1a\x49\xb2\x77\x54\xca\xef\x9d\x3a\x5a\x8d\x66\x3e\x20\x01\xcf\x59\xbf\x39\x2e\x52\x75\x58\x1a\x5a\x2b\x1a\x07\xfe\xe0\xfe\xa0\xd1\xf6\x67\x0f\x40\xe0\x33\x2a\x12\xbc\x8b\x48\x50\x72\x56\x10\x37\xf7\x74\x5c\xac\xbd\x47\x6a\xc8\xa0\x2d\x84\x1b\x0a\xfd\x35\x77\x02\x97\x0b\x9e\x29\x4b\xc7\x2e\xe6\xfd\x6d\x88\x8a\x0a\x95\x69\xb9\x11\x85\xb3\xef\x09\x97\x7a\x8b\x44\x74\x12\x31\xc9\x75\xa5\x01\x71\xbd\xb2\x1e\xa3\x64\x04\x79\x31\x17\x1d\x97\xdb\xd4\x69\x8a\xb9\xa2\x0a\x0b\x1e\x4b\x47\x55\x4d\x87\xd6\x6a\x92\x5a\xf6\xc9\x6a\x17\xb7\x8f\x9d\xc3\x38\xb7\x69\xe9\xb5\x53\xae\x01\x96\xf2\x23\xe4\x91\xf9\x66\x6a\xcd\x2d\x1e\x6c\x0e\x92\xf5\x48\x8b\x14\xab\xc0\x5c\xc3\xba\xb2\x41\x52\x44\xe8\x3d\xc1\x02\x06\x3f\x98\x08\x0a\xf9\x3e\xee\xa3\x38\x37\x58\x2a\x48\x79\x12\xd2\x16\x73\x68\xde\xb9\xb8\xda\xf7\xf5\x51\x7d\x11\xa7\xb6\x5f\x30\xb1\x92\x2b\x21\xde\x1c\x53\x4a\x82\x6f\xd4\xf9\x5d\x46\x41\x71\xc7\x8a\x84\x19\x57\x76\x5b\xbe\x0f\xf5\x98\x32\x00\x9c\x93\xde\x49\xd3\xc1\x40\x68\x7a\x63\x24\x0b\x6e\xd2\xd6\x11\xae\xf0\x72\x0d\x08\x1b\x5c\xf9\xe2\x38\x3e\xaf\xab\x56\x93\x9b\x98\x3e\x41\x54\xd7\x60\x09\xbb\x36\x37\x21\x06\x18\x19\x1f\x80\xeb\xf9\x5a\x05\x51\xa6\xdb\xdd\x3d\x4d\x46\xa7\x08\xf2\xf6\xbb\xfe\x37\x5f\x6a\x02\x0e\xd9\xf5\xc8\xed\x13\x83\x7a\x03\x07\x11\x8e\x85\x7f\xaf\xab\x9e\x67\x94\x00\xd0\x39\x05\x41\x19\x99\x8d\x72\xdb\xec\xf0\xb3\xff\x18\x15\x58\x90\xb2\xda\x83\x52\x0d\xd2\xbe\xff\x0e\x33\x8c\x2c\xf2\x43\x25\x0c\x78\x97\xfc\x59\xa4\xbc\xff\x8d\x0a\x87\x3b\xd6\xf6\xc8\xdc\x94\x63\xc5\xad\x09\xf0\x82\xa4\x4f\x61\xba\x42\xb8\xbf\x19\x0c\x42\x2e\xe4\x61\xa9\x5f\x1d\xab\x75\x7f\xb5\x96\x59\x30\xb3\xc6\x09\x05\x38\x8e\x7b\xcf\x77\x5f\x2b\x8f\x6c\x3a\x49\x91\x53\x24\x80\xe4\x21\x86\x14\x27\xf5\x36\x95\x2d\x3c\x0d\xf7\x16\xee\xdd\x5f\x82\xa3\x02\x27\xd1\x6c\xdb\x8b\xeb\x9d\x6c\xe9\xae\x6e\x0f\x5c\xa4\x75\xd7\x23\xbe\x91\x7d\xcb\xae\xe6\x5d\x7e\x4e\xaa\xd9\x7b\x5d\xe7\x4b\xc6\xc9\x9d\xf2\xb7\x35\x1f\x27\x5f\xbb\x6e\xab\x62\x34\xb0\x66\xcd\x80\x41\x00\x87\xf6\x0c\xc2\x1e\x07\x10\x5b\x5a\x62\xc8\xcb\x1d\xe5\x8f\xa6\xd1\xc6\x93\x34\x83\x8c\xc2\x05\xbb\x83\x83\xe1\x96\x2f\x26\xbb\xd7\x29\x28\xff\xf3\xff\x06\xb1\x31\xde\x78\x8e\xc6\x85\x92\xe8\xff\xf4\x19\xf2\x6c\x84\x47\x56\x01\x3a\xf7\xa0\x7e\xe1\x28\x79\x57\xf6\x3b\x9f\xa7\xe1\xd8\x5a\xff\x8b\xb6\x62\x68\x05\x81\x31\x56\xf3\x43\x25\x6c\xbb\x73\xb2\x75\xb2\xf7\x3f\x7f\x80\x18\xd5\x32\xe8\xa5\xe3\xd8\x42\xee\xc3\x71\xb9\xf8\xb6\xf7\x1f\xab\xbc\x46\x4e\xbd\xee\x46\x7c\x40\x44\x2b\x18\x5f\xbe\x56\x16\x35\x35\xc1\xaa\xcd\xad\x15\x5d\x6c\x21\x90\x54\x42\x23\x17\x5b\x8e\x20\x3d\x26\xe5\x2d\xe2\xc0\xa3\x11\x75\x7c\x2d\xe5\xc0\x09\x5f\x8b\x9f\x86\xe7\xbf\xca\xa9\x32\x0c\xf6\x6e\xda\x6e\x38\x2a\x79\xa9\x23\x4c\xda\x3e\xa9\xe1\x5f\x18\x65\x1b\xc1\x20\x89\x92\x7e\x18\x70\xca\x0c\xc1\xf1\x15\x45\xe4\x7f\x65\xec\x91\xca\x49\x10\x98\x8c\xf2\x6b\xd1\xc6\x8c\x82\xe0\x5e\x84\x65\xc1\x8c\xfd\x59\xcb\x7f\xd1\x19\xd5\x05\x6e\x62\x6a\x19\x17\x46\x64\xa6\xa1\xa4\xc9\x12\x4a\xca\x1a\xe2\x22\x96\x51\x25\xe8\x0d\x4e\x6f\xee\x2a\xc0\x39\xf1\xfa\x56\x78\x88\xfc\xd8\xb0\x13\xe6\x61\x52\x70\xd8\x0a\xe7\xe7\xb4\x26\x84\x47\xd4\xcb\x82\x92\x4a\xc4\xf6\x82\x52\x1b\x19\xa5\x09\xd8\x9a\xe6\x7c\x32\xe3\x6d\x1c\x9c\x70\xdb\xef\x90\xab\x0d\x5f\x15\x36\x51\x9a\xca\xe0\x37\xc3\x42\xbe\xe1\x32\x4c\x43\xd3\x0b\xcd\x8e\x86\xe2\x15\xf2\xc0\xa5\x07\x14\x0e\x08\x75\x5e\xb9\x67\xd0\x75\xce\xf8\x66\x2c\xe2\x1f\xe9\x7a\xe5\xc5\x0a\x0a\x6c\x60\xba\x4f\xd3\xb6\x63\x1e\x00\xb2\x21\xac\xce\x07\xc7\x1d\xd0\xa5\x4d\x1c\x81\x38\x73\x59\xb7\x12\x0b\xe6\x6f\xf3\x53\x3b\xd5\xd4\xaf\x7e\x99\x7d\xef\x77\xf0\x0c\x18\xa1\x07\xb0\xba\xb0\xe9\xdf\x1a\xfb\x4c\xeb\xfb\xb4\xdb\x60\x5a\xb7\x51\x31\x1d\x91\x19\x99\x03\x51\xd5\xbd\x00\xe7\x0b\x29\xa4\xef\xd2\xf8\x61\x94\x88\x1b\x68\x93\xd1\x39\x54\x01\xf8\xec\x67\x26\x65\x5c\x80\xec\xcd\xf6\xb6\x77\x27\x4d\x77\xcd\xa6\x79\x98\xd9\x34\xdb\x55\xc9\x99\x28\x51\x93\x93\xad\xad\x74\x33\x22\xef\xc9\xb5\x44\x44\x51\xa7\xab\x54\x91\x5e\xc0\xa5\xa5\x16\xce\x43\x07\x85\x4f\xd2\xbe\x89\x19\x14\xb5\xbc\xec\x30\x5f\x3e\xf7\xce\x4a\xde\x22\xc4\xf7\xa4\x86\xd5\x88\x02\x09\xce\xb6\x4b\x0a\x7f\x73\x49\xc9\x3e\x76\xc2\x34\x1f\x74\x0d\x70\x21\x98\xb2\xc7\xdb\xde\x59\x38\x4b\xa1\x06\x76\xcc\x9c\x4a\x1c\x76\x6c\x30\xe3\x95\x58\xbe\xaf\xd5\x45\xaf\x2b\x67\xe1\xb2\x5b\x8b\xc5\x68\x64\xd3\x39\xbf\xfd\xce\xab\x26\x75\x16\x40\x70\x3c\x4f\xe5\x7c\x6b\xad\x22\x6e\x11\x9b\x82\x8d\x30\xdd\xa7\xa0\xeb\x1d\x5b\xd5\x45\xdd\x26\x36\xb5\xcd\x9f\x6b\x06\x66\x38\x32\x61\x3f\x56\x5d\xa5\x1f\xa8\x2e\x75\x66\x8a\x90\xf2\x53\x0d\xfa\xc6\xc4\xab\x2e\x14\x41\x80\x79\x94\x5e\x87\xaf\x15\xd9\x6e\x96\xa7\x66\xbd\x63\x53\x08\x46\xb9\xc2\xef\xdd\x96\x77\xa7\xef\x8e\x7f\xc6\x63\x4b\x5f\x4e\x62\xdb\xb5\xa3\xc8\x82\xb5\x6d\x65\xbf\xe3\x4a\x2a\x17\xb8\x74\x6f\x2a\x9a\xaf\xa8\xe8\x20\x07\xc4\xc9\x2d\x38\x51\x92\xe9\xf2\xc6\xa5\x1b\x66\xc3\x30\xcb\xd8\xf0\x0a\xbb\x82\x02\x79\x5c\x19\x6f\xe1\x81\x7e\xae\xf4\x68\x9e\xf0\xa6\xf9\x46\x4b\x65\xa6\x4e\xb6\x1a\x9f\xff\x3c\xc3\x31\xff\x42\x3b\x6e\x6f\xb7\xf4\xa0\xe2\x08\x12\xe8\x4a\xf9\x0a\x48\xaf\x72\xf8\xc4\xdf\x45\xf1\x38\xe2\xfc\x7b\x40\x75\x0b\x0d\xb1\x8f\x5d\x99\x81\x8e\x65\xbc\x15\xbd\xd2\xa0\x0c\xf4\xac\x10\x3a\xe3\x24\x65\x21\x45\xbe\x51\xf6\xd0\x11\xba\xc1\x86\xbf\xaf\x5b\xb9\xde\x6f\x4d\x37\x9b\xee\x6f\xa6\x36\xcb\x4d\x91\x1a\x26\xa5\x14\xe5\x65\x85\xcf\xba\xaf\x55\x11\x08\x3f\x3d\xeb\x21\xff\xe7\x34\xdd\xef\x39\x9a\x44\x17\x08\x7e\xf1\x6b\x72\xad\xf8\x63\x56\xe3\x24\xcf\x1a\xe5\xe0\x72\x22\x1a\xe4\xdb\x92\x95\xfe\xb4\xaa\xd7\x74\x88\xa5\x33\x34\xd1\x1c\x3d\x0d\x7a\x3f\x91\xd8\xc2\xb6\xe4\x19\x73\x25\x3b\xc7\x70\xf6\x17\x64\x7a\xf8\xba\x4e\x86\x2f\x2f\x03\x61\xa6\x8c\xda\xe4\x96\x33\x38\x68\x70\x1c\xa5\x45\x99\xbe\x9f\xc5\x48\xa7\x12\x8e\x65\x48\x3d\x28\x86\x26\xe6\x63\xd1\xd1\xee\x97\x07\x6a\x0d\x07\xff\xf6\xb6\x6a\xf3\x9a\xee\x80\xdd\xb7\xdc\x2c\x23\xfa\x4c\x53\x2e\xc3\x75\x10\x56\x73\x8f\x73\xc8\x93\x23\x61\xc0\x6c\xe4\x3e\xf9\xe1\x13\x21\x53\x19\xbf\xc3\x87\x9b\x66\x34\x32\x8a\x09\x42\x2f\x41\xc4\x7b\x8f\x54\x36\xef\x82\xa2\x22\x0d\x92\xe1\x30\xcc\xcb\x48\x84\xc5\xa5\xe1\x0d\x5e\x05\xbe\xc7\x51\xec\x7a\xba\x5d\x45\x8a\xfa\x1d\xac\x54\xee\x36\x50\x54\x7f\xeb\x83\x30\x8f\x2c\x5a\x61\x44\xaa\xa5\x1c\x79\xc4\xfa\x67\x95\x54\xcf\x69\xdd\x09\x03\xf9\xc4\x1d\xe5\x39\x87\xef\x7c\x13\x9b\x13\x1b\xf2\x12\x27\xd8\xb0\x3c\x00\xdc\xe1\xff\x01\x62\x84\xff\x83\xd6\x29\x7f\x5e\x91\x89\x82\x4d\x45\x8b\xc4\xdf\xc0\xfc\x21\x80\xe3\xde\x76\x29\x92\x88\xcb\xcf\x84\xe8\x9c\xda\xc5\xa2\xbb\xaa\xe8\x98\xb9\xb4\x88\x9f\x7e\x4b\xfd\x5c\x37\xb5\x66\x08\x97\x97\xc5\x48\x5a\xce\x85\xdf\xfb\x47\xa5\xa3\xe8\x04\xb7\x72\x9b\x76\x92\xb4\x5c\xb4\x28\xa8\xe1\x54\x05\x68\x81\xaf\x35\xdc\xf6\xef\xff\x02\x75\x83\x02\x79\x7d\x76\x5c\x25\x46\x73\xfd\x46\xaf\x2a\x55\x86\x3b\x8e\x6a\x61\x60\x98\xb3\x12\xdb\x0a\x28\x77\x1c\xdc\x3f\x86\xaf\xe3\x18\x05\x5d\x59\x9c\x3b\xc8\x08\xd4\x7a\x97\xb9\x25\xa4\xbb\x62\xda\x0b\x3d\xd0\x8c\xc2\x55\xcb\xd0\x51\xd1\x08\x6f\x38\x32\xf3\xbf\x54\x10\xed\xcc\x06\x49\x4c\x31\xb8\xc4\x20\x47\x55\x1f\xfc\xf1\xb1\x77\xca\x4e\x8d\x15\x54\xf5\x58\x4b\x03\xbd\xe8\x35\xe5\xbb\xe9\x41\xb1\xc8\xde\x27\x53\xee\x24\x03\x3c\x83\xc8\x07\x53\x80\xbc\x85\x85\x66\x6a\xd9\x5b\x41\xba\x84\x11\x65\x30\x94\x02\x2f\xdb\xab\x99\x41\xa2\x10\x5c\xc1\x82\x43\xdf\xc6\x58\x7c\x11\x01\xf7\x3b\xfb\xde\xd8\x13\x69\xc7\xb9\x8d\xc1\x4c\x09\x6f\x8f\x35\x35\x10\x16\x92\xf2\x76\x69\xb0\x1c\xb9\x47\x11\xe5\x45\x2a\x4c\xa4\x30\x33\x67\xb4\xcd\x39\xa3\xba\x44\xb2\x30\x23\x67\x19\xf0\x98\x9d\x13\xfa\x33\xf8\xaa\xdb\x11\x17\x6a\x32\x61\x71\xf5\x1a\x42\x28\xf4\x7f\xfd\xed\xb6\xc2\x80\x5d\xd6\xc1\x6b\x77\x63\x27\x7d\x5e\x2a\x99\x3e\x72\x03\x2c\x5d\x4c\x1e\x0d\x16\x92\xef\x3f\xd4\xf4\xa7\xc8\xd7\x23\xa7\xff\x48\x3b\xe8\xdf\x9c\xca\x8e\x2d\x2f\x37\x5f\x32\x43\x36\x92\xae\xed\x5d\x75\xcd\x7b\x13\x33\x34\xb1\xe9\x8b\x62\xb5\x83\xe5\x1d\x12\xc9\xdb\xf7\xf1\x43\x82\xd1\x53\x5d\x40\x38\x35\x11\xa4\xdf\x52\x67\x97\x4d\x43\x56\x0c\x06\x22\x8a\x35\xbc\xf8\xa6\xe5\x91\x60\x91\xed\x87\x59\x64\x48\xdb\x91\x5e\xd3\x09\xa7\x7b\x95\xa0\x8f\x5c\xff\x75\x6c\x4d\x3e\xe3\xfd\xa5\x4d\x45\xfa\xbd\x39\x56\x3d\xe3\xa3\x1a\x07\x71\x7f\xb3\x17\xa6\x59\x3e\x30\xbc\x68\x24\x1d\x46\x1f\x43\xc4\x83\xdc\x14\x4e\xb7\x6d\x8e\x2c\x3f\x0b\xf3\x20\x19\x2a\x11\xab\x4b\xaa\x07\xe3\x92\x5b\x60\x5d\x85\x8c\x13\x75\x0f\x24\x68\xe1\xf0\xb3\xcc\x32\xaa\x2b\x6f\xa9\x27\xbf\xea\x30\x14\x2f\x25\xa0\x0f\x12\xce\x79\x1a\x33\x1c\xe6\x57\x61\xbc\x05\x83\xba\x57\x09\x96\x16\x71\x97\xdb\xf6\x39\x71\x42\x8f\x27\x49\x14\x07\xff\x08\x87\x36\xdb\xe3\x4b\x5d\x3b\x28\xc4\x01\xa4\x83\x55\x88\x1d\x07\xde\xca\x3c\xa3\x7e\x6e\x93\xd9\x60\xbb\x37\x56\xca\x97\x4f\xb7\xcb\x21\x44\xdc\x0d\x16\x02\x71\x48\x15\x32\x7f\x1b\x74\x27\xdc\x52\x29\x17\x17\x12\x50\x22\x88\x2c\xea\xee\x65\xfc\x80\xeb\xe3\x75\x44\x08\xa6\xc8\x93\xa1\xaf\x88\xc2\x03\xfa\xa1\x92\x3c\xff\x21\x16\x3f\x27\x32\xd6\xc2\x34\x89\xcb\x43\xd8\x44\xb3\xf8\x1d\x09\x1b\x54\xc2\xe2\x86\x22\x67\xfa\x58\xb3\xa3\x4c\xb3\xc7\x94\xce\x9f\x2d\xd2\xa4\x93\xc4\x5d\xde\x4e\x02\x14\x55\x0c\x25\x97\xc1\x09\xcd\x1b\xfd\xef\xef\x52\xc7\xe1\x99\x96\xc2\xc2\xce\x4d\x1a\x5f\x59\xe4\x70\xe7\x8c\x12\x60\xdd\x09\x9f\x07\x86\xe5\x6d\xad\x29\xf2\xeb\x0a\xf4\xf9\x5b\x18\x46\x21\xdb\xd8\x3a\x58\x07\x9f\x6f\xf6\x4c\x9c\x9b\x4c\x8c\xaf\xe0\x9c\x14\x13\xfb\x39\x25\x01\xd0\x4f\x4d\xdc\xcd\x92\x18\x49\x15\xac\x8c\xb3\xb4\xf3\x91\x60\xb9\x0e\xab\x0d\xbf\xee\x2d\x65\xc8\xf6\xa5\xa6\xa1\x51\x65\x15\xd0\x52\x4d\xbd\x39\x30\xd9\x20\xb4\x29\x38\x62\x04\xa2\xd2\x50\x5a\x3e\xde\x89\x12\x8a\xc5\x68\x63\x56\xcb\x32\xb5\x3c\xa2\x60\x86\x80\x8c\x7c\x8d\xfc\x9f\xb0\x80\x56\x08\xb3\x57\xb3\xc7\xcb\xb8\x09\x87\x0a\xd8\xbb\xb0\x2f\x21\xba\x86\x84\xc1\x2b\x18\x6a\x46\x79\xd1\x82\x77\xe8\x00\x47\xb3\x85\x4d\xe1\x88\x44\xbc\x6a\xe3\x6f\x60\x64\x91\x17\x39\xaa\x79\xe4\xee\xe8\xba\xd0\xf6\xb6\x37\xb6\x60\x3a\xce\x66\x95\x8b\x74\x0b\x91\x2e\x0e\x92\x6b\x48\x62\xf2\x8d\xea\x3e\x9f\x26\x8f\x59\x5a\x6a\xf6\x6d\x1c\x16\x60\xb7\x66\xf2\x1a\x4a\xe7\x60\x2a\x98\x89\x56\xa0\x84\xfe\xd0\x1d\x99\xd4\x74\x93\x23\x0d\x45\x13\xfc\x36\xe5\x6d\xf8\xba\xa2\x3c\x9d\x60\xcd\x8b\xc0\x60\xc3\x8b\x0d\x2a\xf8\x5c\xb2\x66\xd3\x22\xb3\xf8\x53\x47\xd8\xbf\xe2\x9b\x05\xa6\x77\x55\x93\x0b\x25\x89\xb4\xd2\x20\xec\x67\x6d\x1f\xbe\x71\xa8\x9d\x4e\xc8\x3d\xe1\xfa\x69\x2e\xa8\xa7\xd1\x00\xf7\x34\x29\xb2\x9c\x72\xe3\x0d\xd5\x02\xfc\x91\x22\xad\xfb\xc8\x91\xb0\x05\x49\x1c\x27\x61\x96\xd9\x02\x95\x55\xee\x49\x1e\x6b\x94\x19\x0d\xa3\xc8\x82\x3c\x5d\x61\x50\x18\xd9\x20\xcf\x66\xbd\xdc\xfc\xe9\xb1\x12\xa5\x47\x75\x86\xcb\xeb\x58\x10\xf0\x29\xae\xd5\xb2\x0c\xf6\xd0\x56\x54\xbe\x1f\xab\xdf\xd2\x10\x8a\x12\xae\x1f\xed\xd8\x30\x6b\x83\xef\xd4\x3e\x45\x2f\xc7\xd7\x75\x8d\x38\xdd\x30\x0f\x06\x1c\x1c\x73\xca\x19\xcb\x43\xf2\xcf\x4a\x6e\x2d\xc9\xd0\xf5\xb0\x5f\x83\x2e\x96\xb5\x70\x8d\x74\xca\x3e\xa8\x25\xbb\x48\x8a\x7c\xae\xdc\x7a\x98\x7c\xe4\xb7\x30\xee\x0f\x90\x86\x13\xe6\xc0\xf2\xf5\x60\xcc\x58\xbf\x5f\x10\xc9\x72\xe4\x17\x99\x41\x23\x2c\x46\xff\xbd\xb1\x9a\x8a\xf7\xb4\x02\x83\x3d\xb2\xd3\xa7\xa0\x3f\x4b\x30\x23\x72\x74\xfe\xd5\x33\xd4\x3e\x8c\x92\xc8\x29\x98\x4f\x9c\x1a\x4c\xfd\x2e\x30\x1d\x45\xa4\x27\x3d\x65\x92\x8d\xf7\xc6\xc9\xc3\x73\x1a\xde\x95\xe2\xdc\xa1\x50\xf9\x88\x47\xb0\x6e\xd2\xd4\xc4\x1c\x7a\xc2\xdd\xbe\xa6\xfa\x26\xaf\x4d\x73\xd9\x2c\x36\x83\x81\x49\xfb\x68\x9f\xc4\x8f\xcf\xb4\x15\xc4\x8c\x41\xb5\x2e\x40\x59\x99\x77\x34\x85\x4f\xf8\xa0\x44\x1a\xed\x11\x2c\x8e\xe9\x78\x86\x0d\xfc\x58\xf5\x37\x3d\x9a\x8a\x37\x0e\x3e\xdf\xec\x12\x5f\x7b\xa6\x59\xae\x18\x1d\x26\x04\x18\xe2\x15\xd9\xe1\x28\x4c\x01\x45\x76\xd4\x28\x8e\x39\x68\xae\x5d\xb5\x18\x4e\xcd\x09\xaa\x1c\xc8\xda\xfe\x99\xdb\x81\xbd\x22\xee\x1a\x1c\xd8\xaa\x20\xb2\xa3\xed\x33\xb9\xb0\x3a\x48\x4f\x3d\x9a\xaa\xd8\x2f\x2d\x35\x8b\x38\x8c\xec\x5a\x79\xc0\x78\x22\x91\xd3\xd4\x34\xcd\xd7\x5b\x89\xb0\x0e\x3e\xdf\x3c\x34\xff\xa5\x3d\xe5\xd2\x40\xdc\x7b\x0a\x66\x1d\x63\xfb\x96\x6a\xbc\xf9\xbe\x76\xc6\xcf\x12\x57\x80\xe6\x3d\x56\x22\xb5\x82\x9d\xb9\xa6\x99\x2d\x1e\x52\xec\x24\xcc\xe0\x9a\x0e\x0e\x8e\x9a\x4c\x26\xcd\xac\x13\x19\x2d\x8f\x03\xd1\x9a\xd8\xca\xd9\xb1\xb4\xd4\x4c\x8b\x8e\x8d\x6d\xf6\xf5\xc2\x72\x1f\x1f\x92\xc0\xd7\x5b\x7e\x49\x5c\xd2\x75\x9e\x57\xdc\x7e\x1a\x58\xd3\xdd\xe5\x5b\x3e\x6f\x78\xc1\xc5\x6f\x3f\xd3\x56\xd2\xed\xe7\x28\xdd\x8b\xca\xd6\x71\xad\xb9\x00\x3e\x11\xfa\xbd\xcf\x3f\x83\xc8\x08\x01\xcc\x26\x7e\x10\xe3\xb1\xad\xed\xad\x89\x29\x7f\x73\xb6\x92\x60\xa4\x97\x65\xe8\xdc\xb8\x92\x86\xf4\x3e\xd0\xc9\x1a\x3c\xc1\x97\x40\x14\x00\x13\x59\x11\xc8\xe2\x1b\x97\x30\x0f\xe3\x2c\x0f\xf3\x22\x97\x72\x96\xe8\xdc\xa8\x4a\xb0\xd6\x42\xca\xa2\x70\x38\x84\xa8\xa2\xa3\xe8\x21\xab\x85\xb2\xe5\xf6\x76\x69\xcd\x70\xe4\xa3\x75\x17\x9b\xa8\x96\x24\x3c\x8c\xd7\x6c\x96\xf3\x99\x86\xa5\xc2\x9b\x88\x6f\x3e\x91\x0f\x6f\x18\xe6\x59\x11\xce\x28\xdc\xd8\x4c\xdb\x63\x34\xce\x6a\xea\x9f\xfb\x2e\x6a\x18\x06\x21\x1d\xff\x18\x35\x84\x1c\xb0\xbb\x67\x74\xe9\x7c\x5b\x5b\x86\x06\xf4\xfb\x72\x7e\x1c\xf0\x6c\x76\xcb\x9e\x5f\x42\xc2\xec\x41\x98\x41\x0a\xde\xfd\xdf\x83\xad\xc2\x99\xfb\x1d\xf9\x79\x4d\x04\xda\xb3\xdc\x30\x0c\x30\x25\x82\x47\xbe\x56\x04\xc0\x94\x04\x08\x58\x3b\xdb\x81\x5d\x6e\x69\x7c\xc2\x2d\xe5\xbe\xc4\x36\xcc\x07\x36\xdd\x49\x93\x29\x84\xb2\x1e\x9a\xfd\x0d\x58\x79\x99\x22\xa5\x22\xfe\xbb\x78\x60\xd9\x7f\xd8\x8d\x88\x75\xfe\x2d\xb6\x39\x36\xd2\x9b\xaa\xa4\x17\x0c\xd2\x30\xcb\xc3\xd8\x50\xf4\xb1\x89\xea\xe6\xe6\x55\x2d\x5e\x1c\xc6\x76\x56\xed\x04\xc6\xcb\x48\x7b\x9e\x8f\xf1\x19\x2f\x23\x36\x4d\x2d\xbf\xa4\x88\x48\xaa\x9c\x36\x9a\x28\x6a\x34\xbc\xba\x86\x82\x4f\x51\x9d\x36\x83\x27\x8d\xbc\xd5\x7d\x78\x8c\x7c\x53\xd7\xb0\x6c\x7a\xa9\x61\x8a\x41\x2c\x6e\x56\x64\xe5\x1b\x55\x1d\x18\x98\x61\xa7\x48\xfb\x36\xd5\x9c\xc2\xb7\x54\x2e\x0c\x67\x88\xe8\xf5\x7c\xd2\x4a\x36\xe9\x5a\x18\x77\x61\x8d\x91\xa0\xb8\x44\xfe\x25\x5f\xd7\xc9\xcc\xa7\x26\xf4\x0a\xfc\xc8\xee\xa3\x1f\x97\xaf\xa7\x96\xd7\xbe\xe5\x66\x2f\x34\x79\x43\xb3\xaa\x13\xea\x45\xc6\x77\xab\x13\xf4\xcb\xcd\xd8\x0c\x25\x9d\x56\x07\x41\xfd\xf4\x74\x2e\x38\x03\xfa\xb5\x82\xf4\x73\xf1\xc1\x3e\x9f\x53\x2c\xbf\x12\xb6\x76\xae\x5d\x55\x79\x8f\xa8\x01\x51\x90\x63\x9e\x56\xee\x4a\x95\x3f\x4a\xb9\x62\x47\x5b\x15\x9a\xa9\x72\xfb\x20\x87\x80\xae\x1e\xa5\xed\xea\x59\xa6\xa6\x18\xab\x24\x73\xb9\xd5\xef\x5e\x5a\x6a\x76\x4c\xbc\x9a\x16\xa3\x3c\x80\x6b\x52\xab\xea\xe7\x0b\x4b\xbd\xc4\x66\x48\x6a\xb0\x54\x21\xc5\xfe\x8e\x82\x42\xc3\x6c\x15\xce\x7a\x7a\x8a\x0f\x3e\xdf\x7c\xa9\xc8\xf2\xb0\xb7\xd1\x50\x4d\xc4\x78\x6f\x09\x12\x6a\xa6\xb8\x93\x0c\x01\xb6\x94\x46\x21\x9f\xef\xbe\xac\x65\x65\x8b\x54\xd8\x6a\x34\xa7\xae\xf0\xd1\xd4\xf4\x95\x06\xc9\x90\xf4\x2c\x81\xeb\x15\x76\x17\x5f\x5d\x7d\x34\x05\xd0\x5e\x58\x6c\x8e\x6c\x9e\x82\xea\x37\x60\xa9\x56\x81\x74\x69\xac\x97\x77\x4b\xff\xfb\xff\xee\x97\x1a\xe5\x41\xea\x78\x71\xfc\x33\x69\xec\xdb\x70\x68\xbb\xa1\xc9\xed\x0e\x5f\x18\x7b\x1f\x46\x0c\x41\xea\x4d\xac\x15\xbe\xc1\x98\xf1\x9f\xa9\xe4\xc0\x59\x95\x15\x3f\xab\xc6\xa6\x9f\x98\x68\xc7\xdf\xa8\x49\xf2\xaf\xed\x85\x84\x5f\x71\xab\xd2\x7e\x19\xe5\xd9\x93\xbe\x9f\xea\x03\xac\x49\xc0\x6c\x7e\x4c\x1b\x5e\x7c\x3d\x5a\x27\x58\x34\xe8\x47\x43\x75\xfd\x4e\xa5\xa1\x9c\xcc\x98\x22\xbe\x12\x68\x0d\x83\x76\xe1\x5c\xfe\xa8\xa5\x92\x8e\xf0\x5f\x10\x0e\x3c\x8e\x7c\x93\x2b\xc3\x7b\x3a\xda\x31\xbd\xa4\x14\xca\xa7\xc9\x00\x0e\x34\x23\x6b\x52\xd7\x1f\x85\xfc\x39\x23\x8b\xf8\xc6\x11\x02\x67\xb6\x0c\x9e\x73\xbb\x53\xa1\x41\x8e\xfa\x36\x8b\x5f\xff\xaf\x68\x7b\xa0\xc1\xe3\xb4\x2e\xca\xc3\x5f\x87\x01\x3c\xa5\xd8\xaf\x7e\x76\x42\x4f\x2a\x2d\xdb\x7e\xed\x2c\xcc\x33\x5b\xad\xeb\x46\x5b\x58\xd4\x84\xed\xd2\x08\x71\x4d\x1d\x45\x26\x5b\xcd\xa8\x9b\xc9\x51\xf9\x2d\x3b\x31\x88\x4b\x53\x68\x5a\x27\xa7\x18\x8f\x1a\xde\xcf\xd8\xae\xa1\x4f\xdb\x15\xab\x19\xb5\xed\x0e\x6d\x8a\x3c\xb1\x10\xca\x6c\x49\x4e\x2d\xbb\xc6\xce\xf2\x1b\x2b\xad\x66\xfc\x1f\x75\x8d\x0f\xcd\xc0\xa6\x79\xd8\x2b\x7d\x00\x5b\xe5\x15\xbc\x81\xe9\xe6\x9b\xfa\x34\x02\xa4\x91\x9c\x4c\xa9\x48\x2c\xd2\x07\x85\x61\xb6\xe6\xc4\xc9\x8a\x30\x20\x51\x3c\x27\xfe\x74\xb2\xe5\x4b\xa3\x27\x9d\xcf\xdc\xb1\x86\xe1\xca\x8e\xcc\x5d\x29\x34\x95\xef\x2f\x41\x46\x4d\xd8\x6d\xa2\x28\x59\x47\x7e\x4d\xbc\x03\xdf\xd0\xfb\x3d\xcd\x6e\x70\xbd\xb2\xb3\x8a\x34\x7b\xbc\x92\xb5\xf3\x76\xef\x21\x05\x36\xd8\xff\x9b\xf4\xc4\x58\xe6\x4f\x80\x27\x1f\xa9\x2c\x54\x76\x9d\xba\xec\xe2\x41\x29\x47\xb4\x14\xb4\x18\x0d\xc5\xc0\x31\x3e\xd6\xa6\x75\x28\xe4\x0c\x8a\x50\xee\x9a\x6b\x81\xca\xcc\xb0\x48\x0d\xfc\x4d\x64\x95\xbe\xa1\xa8\xbe\xee\x12\x29\x1b\xc2\x84\xdb\xaa\x1a\xb0\x96\xe4\x36\x23\x28\x13\x0e\xda\x1b\xda\xcd\xbf\x0b\x67\x09\x36\xe3\x4d\xa5\xe4\x77\x5e\x47\x09\x77\x75\x71\xc1\xa4\xd1\xc6\xe3\x1e\x46\xca\x8d\x57\xb0\x0e\xe7\xc6\x9e\x7d\x9c\xc3\x50\x1c\xd1\x3f\x6d\x29\x8e\x80\xf7\xb0\x31\x31\x9d\xdc\xfa\xc3\xad\x2b\xb4\xcb\xe0\x7c\xff\x04\xbc\xf2\xe2\x47\x36\x1c\x0d\xd6\x4f\x15\xe4\x6a\x57\xe5\xb8\x4f\x62\xfb\x99\x32\x54\x80\xad\xfc\x14\x4c\x08\x4a\x52\x77\x5a\x9a\x6d\xca\xc3\x0e\xb9\x36\xcf\xb3\x46\x68\x0a\xfc\xd1\x45\xc5\xd7\x75\xa3\xa5\x23\xc7\x53\x63\xc5\x1e\x7a\x0b\x90\x70\xee\x0a\x6f\x2b\x7e\xf0\x96\x62\x1b\xde\x49\x59\x10\x8a\x68\xff\x97\xbd\xb0\x38\x78\xfe\x87\xe4\x32\x71\xc3\x3e\x30\x17\x1c\x49\xd0\x06\xc6\x6c\xde\xc7\xe0\x49\xaf\x28\xd9\x69\xec\x12\x54\x3d\x71\xe6\x5f\xa3\xf9\x87\x5d\x78\x53\x77\x98\xfd\x60\x6a\xf7\x7d\x65\xb1\x99\xf4\x93\x78\x23\x59\x6d\x78\xb2\x1a\x0e\x27\xf8\xc6\x2d\xba\x41\x92\x86\x2f\x27\xb1\x0e\x56\x6e\x8d\x7d\x40\x72\xab\xae\x7f\xa1\x18\xad\x9b\x14\x02\x1a\x8e\x63\xd5\x0d\xe6\x07\xca\xf3\xee\x99\x20\x8c\xc2\x7c\x63\x96\x06\x11\x30\xd2\x9f\x50\x8b\x8b\x68\xa0\x78\x84\xf0\xbb\x74\xa2\xf1\xdf\x68\x3d\x7e\x7b\xc4\x48\xd2\x04\x20\x38\xee\x7d\xe0\x9b\x96\xa7\xe6\xea\xa5\xd6\x82\x66\x17\xc5\x9f\x0f\x61\xc8\x25\x1d\x46\x63\xe6\x14\x36\x0e\x09\xbc\xe2\xc3\x7a\x4d\x12\x11\x98\xdd\xef\xd5\x92\xca\x55\x2d\x90\x0c\x5f\x13\xe1\x7a\x2c\x92\x86\xe0\xb3\x95\x08\xab\x5c\xac\x4e\x46\xc6\x89\xd7\xe0\xac\x12\xee\xa8\x2d\xa9\x93\x43\xf3\x2f\x36\xf7\x2d\xef\xa5\x07\x77\xc8\xd9\xf2\x3b\xb1\x38\x8f\x61\x3d\x0a\xc9\x67\xc3\x31\xd6\x80\xff\x44\xde\x6e\xc6\x8b\x4f\xff\x94\xec\x19\x2c\xd2\x3b\x4a\xde\x8c\x8b\xd3\x2e\x7e\x58\x99\x67\xd8\xf6\x63\x54\x00\x80\x01\xba\x4e\xd8\x5c\x66\xc1\xaf\x0c\x20\xad\x11\x9c\x39\xdf\x1e\x2b\x81\xec\x0b\xd8\xd6\xfc\x7b\xaa\x53\xd5\xb8\x86\x1d\x2d\xa9\xc6\xd7\x4a\x22\xd5\x1e\x19\x45\x26\x8c\x51\xeb\x7b\x91\x13\x75\x8d\x09\xed\x1d\xbe\xa1\x6d\x28\xd4\xf5\xaa\x4a\x74\xbe\x62\xe3\x37\x52\x88\x2f\x57\xba\x2b\xa5\x6f\x43\x49\x9e\x96\x6e\x6a\xb8\x56\x7a\x87\xfb\xd9\x23\xfa\x50\x75\x64\x73\xf5\x00\xb6\xf0\x04\x36\x27\xdf\x28\x06\x6f\x10\x63\xf2\xa7\x6b\x0e\xaa\xfd\xcd\x8d\xa4\x10\xf2\x10\x96\x78\xd0\xea\x5b\x6f\x8e\x15\xa6\x30\x2a\x86\xf0\x18\x30\xcb\x6f\x2a\x72\xcc\x37\xeb\x98\x4c\x4c\xbc\x91\x20\x46\xde\xaf\x2b\x85\x07\xbc\x84\x96\x4b\xa6\xce\x92\x69\x94\x98\xe4\x49\xb5\xc9\x46\x21\x46\x0b\x87\xed\x6d\x75\xf0\xde\xae\xab\x1a\x0a\x08\x81\xe1\x26\x08\xad\x00\x12\x96\x66\x02\x85\xde\x38\xae\x9a\xe7\xd6\x4d\xd7\xce\x68\x7e\xd1\x86\xa3\x92\x7a\x87\x46\x11\xe5\x62\xad\xae\x9b\x05\x26\x82\xba\x2e\xa2\x70\x34\x16\xf0\xb5\x52\x3d\x0f\x6c\xb8\x66\x3a\x91\xcd\xe6\x34\xa9\x33\x77\xde\x61\x89\x7c\x6a\xa2\xba\xae\x4e\xfb\x16\xcb\xf3\xcf\xb4\x2b\xf9\x1f\x95\xae\x4f\x37\x5e\x32\xba\xc3\xfa\xaa\x66\x61\xb9\x3a\xf6\x3a\x25\xd9\xaa\x1d\xe5\x61\x10\x66\x43\x84\xd9\xd8\x7f\x68\x04\xe2\x6b\xc5\x88\x57\x04\xab\xbb\x1b\x42\xf5\x73\x81\xcf\x29\xd4\xa5\x9e\x6e\x7b\xce\x2a\x38\xb3\xc0\x27\x70\x39\xce\xc9\x3a\x96\x6b\x51\xf8\x8b\xc9\x46\x20\x44\xba\x8a\x8d\x2a\xd0\x50\x45\x37\x75\x71\xfc\xb8\xd8\x99\x95\xf9\x95\x67\xca\xd1\x46\x74\xf0\xda\xd8\x53\x60\x9e\x68\x11\xbc\x06\x0b\xfb\x0d\x0c\x9e\x23\x65\x2e\x7f\x1f\x0e\xd5\xc3\xb1\x62\xb0\x60\x46\x28\xbc\x25\xd8\x48\xd8\xcf\xa0\x82\x19\x0c\xc8\xf7\xf0\xc4\x18\xb8\x1d\x6d\xef\xb2\xbc\xa1\x22\xb7\x5b\x78\x13\xe7\x97\xad\xec\xf7\x8b\x63\xf1\xa0\x00\xc4\x75\x25\xfc\x35\x18\x32\x6c\x3e\x88\x81\x21\xaf\xf3\x06\xc6\x41\x90\x94\x8a\x83\x61\x64\xcd\x6a\xa5\xbf\xfe\x98\x8a\xc1\x8e\xb9\x34\x67\xa7\x48\xe3\x30\x1b\x10\xb8\xfd\xd0\xbc\xc3\x13\xd3\xcf\x09\x9d\x4c\x0d\x87\x5b\x9a\xac\x37\x5c\x85\xa4\xc9\xb5\x0f\xc1\x88\x38\xfa\x99\x32\x3e\x06\x02\x1e\x11\x31\xf4\x21\x61\x82\x39\xdb\x2b\x39\x6a\xcf\x95\x46\xac\x82\x61\xdc\xdf\xe9\x99\x09\xd0\xf6\x8c\x69\x7c\x8f\xc6\x08\x2b\x0a\x0b\x47\x74\xdf\x95\x82\xcb\x9f\x62\x84\xf9\x06\xae\x28\xce\x90\x6f\x3a\x73\x9d\xda\x61\xb2\x26\x78\x1e\xe9\xbd\x54\xd2\xc7\xd3\x6d\xcf\xe5\x99\x99\x9a\xb8\x2f\x61\x1e\xea\x16\xef\xe0\x87\xf9\xc6\x31\x3e\x04\x26\x0e\x6c\x64\xbb\x94\xfd\x61\xb5\xe3\xb1\xd2\x9c\x43\x09\x19\x2e\xd4\x77\xf0\x15\x88\x34\x4e\x56\x89\xc0\xcc\xf0\x71\x05\x0e\x7f\x02\xdb\x83\x37\xd4\xd8\xb7\x38\x7f\x6e\xbb\x22\x63\xfb\x23\x32\x32\x28\xe7\xfe\xfe\x78\xba\xff\x1d\xc9\xd7\x47\xe4\x20\xc0\xb7\xbc\x52\xa9\x83\xd2\x78\x09\x80\x4f\xb5\x1d\x5d\x54\xcc\x58\x3d\x5b\x30\x03\x11\x8e\x57\xee\xf7\xe5\x1b\x17\xfa\x64\x45\x6a\x77\x39\xc2\xc7\x5f\xff\x19\x90\xaf\x6a\x67\x1d\x43\xf0\x5f\xb6\x1d\x92\x21\xf8\xec\x44\xb5\xf1\x7c\xec\x35\x2a\xb2\xbf\x43\xc7\xb6\x88\x26\xab\xd2\xf4\xfb\x8a\xe8\x6e\xdd\x44\xb9\x4d\x77\x94\xbf\xc9\xc0\x7d\x7a\x37\xac\xa4\x9d\xed\x72\xaf\x22\x7d\xff\x81\xd2\x78\xfd\x33\xc5\xe5\xf3\xe1\x58\x21\xac\x74\x3c\x1d\x87\x39\xc0\x57\xac\xb9\xa0\xd0\x6e\x2c\x24\xe6\xec\x51\xf9\xfc\x42\x83\xa9\xb4\x6f\x90\x07\x71\x02\xa9\xee\x27\xcf\x4f\x9d\x79\x07\x9f\x6f\x8e\xd2\xa4\x17\xe6\xb4\x2d\x25\x94\xd6\x31\xf6\xd6\x13\x6b\x61\xb1\xd9\x49\xad\x59\xed\x26\xeb\x68\x9e\x82\x1f\x7d\xbc\xe5\x21\x44\xc7\xdd\xb4\x58\x9b\x04\x0d\x05\xa9\xfa\xae\x22\x55\xfc\xae\x06\xd7\x0d\x29\x59\xbc\xc3\x53\x18\x3c\x20\x7b\xa5\xfa\xaa\x65\xcf\x5d\xc3\x5b\xf3\x0d\xd6\x10\x23\xff\x55\x55\xe9\xd1\x54\x26\x6d\x69\xa9\x59\xe4\xa5\x0b\x1d\x5a\x4e\x57\x88\xb6\xa1\x26\x1e\xe7\x13\x0e\x4f\x78\xa1\xae\x82\x47\x67\xe3\x28\x67\xca\x7e\x59\xd6\x0a\x5d\x71\xbb\xe5\xbd\xb1\x77\xc7\x9f\xa4\x2f\x60\x02\xca\x8f\x3b\xf0\xae\xae\x1f\x62\xad\x70\x2c\x23\x33\x5a\x47\xcf\x15\x92\x61\xf1\xa2\xce\xa0\x54\x16\xc5\x81\xc7\x9d\x95\xde\x30\x8d\xc6\xc1\xe7\x1d\x29\x5f\x39\xb2\xb2\xba\xeb\x68\x37\x6d\x96\xd9\x74\xc6\xcf\x2d\x58\xbb\xdc\xf1\x54\x9e\x55\x48\x0b\x34\x14\x9d\x06\x01\x98\x67\x3e\x31\xf5\x53\x49\x10\xa9\x22\xc1\xc0\xae\xb3\x0a\xb9\x13\x7a\x52\x2d\x04\x75\x8c\xd3\x36\xaf\x88\xd0\x5d\x69\x69\x4a\x0d\xd5\x9b\x64\xb2\xcc\xc6\x7d\x56\xea\x16\x20\x88\x4f\xd0\xde\x1c\x7b\xcf\x07\xd2\xe7\xcc\xda\x5b\x27\x2b\x18\x99\xdc\xce\xd1\x2b\x20\x62\xff\x78\xec\xa5\x64\x1b\xed\x4a\x68\xe4\x40\x6d\x3f\xd9\x4b\xfb\x08\x2b\x64\xcf\xa4\x42\xa4\x1f\x45\x9f\xa6\x59\x17\xc4\x84\x4f\x4d\x42\x40\x51\x84\xf9\x68\xac\x5d\x3f\xc5\xe2\x41\xe7\xf0\x7a\x62\x38\x61\x30\x82\xaf\xf8\x96\xda\x03\x7b\xda\x1e\xff\xbf\x7b\xa2\x88\x57\xb7\x81\x92\x0d\xc9\x83\x07\x04\x01\xde\x44\xdb\x0c\xce\xb8\xeb\xb4\x42\x90\x37\xe2\x84\x3f\x4c\xdc\x99\x96\x8a\xa8\x8f\xc2\xcf\x02\x92\x63\xdb\x84\x62\x15\xb7\x46\xca\x11\x01\x64\xea\x8f\x91\x13\x95\x32\xc6\xd6\x65\xbc\xb4\xd4\xec\x9a\x30\xda\xa0\x59\xc2\x62\xd9\xdd\xae\xb0\xd5\xf8\x7e\x9a\xb7\x95\x12\xd1\x43\xd5\xca\x3c\x4a\xca\x6d\x1d\x10\x14\xab\xf1\xd5\x2f\xfb\xba\x87\xab\x30\xce\xa0\x64\x8c\x1d\xcf\x15\x74\x1c\x6e\x9a\xd6\xb6\x17\x99\x3c\xb7\x31\x99\x42\x9c\x6a\x27\x30\x03\x7c\x33\xb5\x07\x17\x0f\x36\x7b\x44\x3f\x4f\x23\x81\xf5\xf3\x1e\x3d\x30\x5f\xb7\x9e\x51\x18\x9c\x30\x0e\xc2\x51\x64\x39\xb0\xc5\x09\x76\x4f\xa9\x96\x43\x68\x89\x45\x6f\xa8\xc3\x44\x04\x70\xd4\xd9\x90\x64\x73\x5e\x05\xf5\x23\xb6\x5d\xb0\xd5\x9f\x6a\xfb\x1d\xf7\xaf\x3f\xa5\x44\x08\x9e\x9a\xf8\x3a\xff\xf9\xbd\x93\x3a\x95\xdb\x20\x19\x8e\x22\x7b\x44\xc1\x33\x4f\x29\x78\xe6\xa9\x29\x26\x90\x83\xcf\x37\xf3\x04\x2c\x0a\x2c\x7a\x4d\x7f\x2e\x02\xd8\x1e\xe1\xb4\x96\x44\xab\xd9\xba\xe9\x97\xc3\xba\xb0\xe8\x12\x17\x8a\x6a\xe7\x27\x53\x79\x56\xb1\x91\x1d\x9b\xe6\x03\x27\x9c\x2a\x3e\x87\x82\x0b\xfc\x91\x0a\x3e\xc9\x0b\x14\x32\x6e\xe6\x93\x1a\xfb\x30\x8c\xb1\x01\x40\x47\x50\xd2\xcf\x71\x8c\x26\x85\x54\x64\x44\x4c\x83\x7e\x42\x54\x36\x54\x38\x39\x0c\x73\xb4\xc2\x0a\x7d\x4c\xf9\xfd\x58\xf3\xdf\xc0\x87\xe0\xcd\x9c\xa9\xe0\xfb\x3a\x36\xdd\x4b\x2b\x0e\x79\xd5\x9f\xe2\x00\xc3\x32\xbe\x4b\xdb\x4e\xd1\x1b\x1e\x70\x94\x12\x78\x24\xa4\xdb\xde\xc6\x09\x28\x44\x57\x3e\xc3\xc7\xac\xb7\x12\x93\x78\xb4\xee\x43\x5a\x40\x0e\x3f\xf5\x82\x0b\x43\xee\xc0\x51\x83\x8f\x0f\x65\x79\x72\xd3\xfe\xce\xd3\xb0\x0a\x78\x96\x8f\xc8\xaa\x52\x46\xf1\x97\xf7\x92\xe8\x06\xa3\x6e\x6b\xce\xd5\x03\xcd\x75\x93\x83\xa5\x95\x5e\xd3\xa9\x70\xb8\xb4\xc6\xad\x4a\xdc\xed\x92\xb4\x70\xc0\x67\x14\x4c\xf1\x26\x7d\xc8\x65\x8c\x9d\x86\xd1\x09\x95\x09\x0b\x22\x93\x65\x61\x80\x1a\xf4\x26\x00\xc7\x9b\x57\x5d\x38\x68\xa3\x4e\x02\xa2\x3a\x5d\x78\x92\x5a\xd5\xa7\xb4\xe8\xf2\x28\x22\x91\x52\xb7\xcc\xef\xc1\x30\xf0\x8d\xea\xd8\xea\x85\x79\x6c\x33\x6e\x24\x86\x5f\xcd\x8d\xa1\x72\xd6\xfa\x3d\x3f\xd7\x7e\xdc\xeb\xf0\xef\xa3\x6f\xaf\x68\xcd\xf3\x8d\x5a\x81\x71\xd8\x07\xd5\xec\x8b\x4e\xef\x54\x8b\x9f\x8e\x9f\xd4\x6c\x39\x2f\xa3\x0c\x28\xe5\x54\x2c\x12\x91\x13\xdb\x1a\x49\xbc\xb0\x78\xb0\x99\xe5\x54\xaa\xa0\xaf\x97\x6d\x41\xef\x21\x9c\x6b\x35\x74\xe8\xa9\x1d\x25\x69\xce\x61\x1d\xc3\x0e\x5a\xde\x07\xf8\xb7\x53\x86\x90\x18\x91\x07\x16\x88\x75\x94\x40\x30\xe7\xb8\xe6\xd8\x45\x7c\x0e\x8f\x31\x4d\xed\x30\x8c\xbb\x99\x12\x53\x7e\x4d\xb5\x1a\xbf\x36\x15\x1a\x2d\x2d\x35\xb3\x90\x5a\x19\x15\x2b\xf8\xc5\x0a\x40\x97\xa6\x90\x89\x8c\x1d\x20\x7f\x3d\x64\x6c\x88\xb4\x25\x2b\xbd\xa5\x0b\x8a\xb0\x98\x08\x54\x7d\x67\x52\x96\x15\xa9\xf0\x7c\xf2\x71\x44\xe7\xab\x1c\x4d\x5b\x87\x6e\xdf\x72\x33\x0b\x06\xe1\xcb\x09\x63\x18\xb8\x97\x46\x41\xb8\xb5\x28\x86\xfd\x7a\x11\x0a\x41\xa2\xcf\xad\xf9\x73\xf0\x91\x26\x4c\xbe\xe4\x7c\xea\x9e\x09\x53\xd2\x06\xc1\xd1\xf6\x2c\xb0\x4d\x22\x4f\x4b\xdf\x85\x20\xe4\x4d\xfa\x2e\xe4\x80\x3e\xad\xd9\xb1\xef\xa8\xaa\x79\x27\x01\x9a\xc3\x01\xc7\x70\xaa\x0b\x8a\xcc\x73\x2b\xac\x99\x80\x84\x85\xb2\x19\x1f\x90\x5f\x6f\x4d\x05\x97\x1e\xe0\xec\xdd\x1d\xd3\xb7\xcf\xd0\x39\xca\x08\x36\x38\xed\x08\x7c\x38\xc9\x09\x8f\xe5\xdb\x8a\xee\x87\xf5\x33\x24\x37\xd4\x70\x74\x6c\x08\x4f\xe0\xae\x4f\x28\x93\x8f\x40\xfa\x42\xcb\x4b\xe2\x7c\x97\x37\x06\x0a\xb9\xef\x68\xbe\xe0\x1d\x6d\xc5\x9c\x82\x12\x2f\x76\xc2\x2d\x38\x2a\x92\x7f\x53\x21\xc2\x2e\x22\x69\x92\x54\xa5\x4a\x81\x1d\x1f\x2b\x6e\xf5\x47\x2d\xe4\x24\xf9\x55\x5c\x02\x00\x03\x07\x08\x83\x5b\x44\x7e\x41\x8d\x7d\xa2\xa0\x57\x64\x26\xfa\x64\x10\xf3\x13\x0a\x5a\x23\x62\x6b\x8c\x69\xc4\xd3\x0a\xc0\x71\x4b\x5b\xec\xca\x7c\x73\x69\x69\x0f\x8d\xa6\x03\x04\x3a\x79\x8f\x87\x63\xc5\xae\x79\x16\x41\x24\xf6\xc2\x13\x28\x53\x8b\x9b\xe4\x75\xa1\x5f\x27\xef\x13\xff\xbe\x63\xe2\x5b\x35\xce\x22\xdb\xc5\xe6\x1f\xeb\x48\x64\x2d\xc8\x6f\x14\x8c\xae\x47\xc5\x3f\x20\xa7\x56\x0e\x0c\xbf\x2a\xa3\x64\xdd\xc2\x64\x49\xfb\x0a\x8d\x8a\xf4\xb5\x6c\x45\x1a\x2e\x03\x25\x51\x94\xa7\xd0\xcb\xcc\x67\x53\xdb\xce\x55\x23\x15\x61\xd2\x61\xd6\xa8\x14\xf7\x35\x32\xdc\x57\x44\x52\x93\xa1\x53\xa8\x4e\x4f\xa0\x2e\x85\x93\xdb\xb8\x2b\xa8\x3e\x2e\x87\xb5\x54\x6b\xed\xa9\x3a\xb2\xff\x20\x4c\x83\x22\x32\x29\x82\x4b\x58\xdb\x1f\x2a\x45\x81\x5b\x4a\xc2\xf4\xda\x16\x2a\xa4\x00\x03\x06\xf4\xc0\x79\xbc\x06\xdf\xa8\xd7\x58\xb3\xe9\xc6\x6e\x9a\x65\x44\x99\xe0\x21\x40\x5b\x34\xb4\x27\xe0\xdd\xcf\xb5\x55\xb5\xef\x24\x76\x2c\x5a\x7c\x40\x15\x0f\x2f\xe3\x3a\x76\x83\x68\x02\x94\xc3\xc8\x5f\xdb\xd6\x00\x62\x05\x20\xfb\x7a\x51\xfa\xd8\xdd\x19\x2f\x95\x74\x85\xf6\x2d\x42\xc3\xff\x59\xf7\x90\x4d\xdb\xd7\x2f\x10\xe3\xc4\xc8\xcb\xdb\xc0\xd0\xa1\x7f\x9f\xaf\xa7\x3e\xe4\xc4\xa3\xbb\x8c\xf3\x62\xe5\x60\x2a\xe6\x88\x8a\xf0\xd6\x15\x45\xcc\x1a\x5d\xdb\x0b\xe3\x30\x27\x24\x96\x3b\xd7\xb0\x13\x44\x3e\x70\x9a\x7b\xfc\x40\xb3\x6b\x83\x28\x74\x20\x0d\x24\x6c\x79\x9b\xf1\x8d\x6b\x16\x20\xbe\xd6\x3c\xe1\xbe\x28\x59\x25\xbe\x19\xfb\x94\x4a\x38\x75\x92\x64\xc8\xcc\x36\x92\xd7\xa7\x59\xe1\x1b\xe5\xae\x74\xc2\x7e\xdf\x66\xf9\x0e\xc5\x74\xf8\x63\xb8\x36\x70\xe2\xee\x29\xe5\xdd\x23\x18\x71\xd1\xd2\x69\x38\x7a\x6e\x56\xb6\x47\x30\xaf\xa5\x5f\xc2\x0c\x40\x77\xfe\x2e\x78\x35\xf2\xc5\x2a\x33\x9c\x9b\x28\x2a\x9f\xd7\xd5\xd2\xa0\x09\xcd\xd7\x8a\x4f\x2c\x8c\xe9\x9b\x83\xd0\xc6\x39\xbd\x1e\xaf\x33\xfa\x73\x59\x73\x5b\x01\x7c\x2b\xf3\x64\x30\xd3\x4e\x58\xfa\x1d\x0d\xcd\xee\x8f\x2d\x2f\x54\xff\xfe\xbc\x1d\x9a\x30\xce\x72\x23\x8d\xf7\x88\x3e\xce\x68\xd6\xcf\x33\x53\x1e\x54\x19\x9e\x16\xdd\xbe\x95\xb2\xae\x8c\x66\xc3\xd1\xf5\xfe\xb8\x8e\x76\x76\x68\x23\xef\xda\x02\x99\x73\x5d\xf1\x70\x9d\xa2\x2d\x2d\x74\x61\x5b\xd7\x1e\x69\x63\x8e\x22\x13\x58\xa2\x58\x6b\x68\x35\xba\x4a\xcf\x5c\x5d\x20\xd7\x4b\x52\x1b\xf6\x63\xac\x74\x4e\x5f\x2b\xa3\x71\x6a\x2a\x21\x75\x68\x7e\xb9\x39\xd8\x18\x95\xfe\x7b\x19\xff\x0a\x25\x12\xb6\x20\x0a\x73\x7c\xed\x5c\xec\x91\x35\xab\xfc\x58\x48\x71\x02\x8e\xc6\xd7\x2a\x30\x8f\x93\x34\x1f\x98\xe1\x28\x4f\x04\xf2\x82\x33\xf8\xfd\x96\xaa\x41\xbf\xaf\x10\x60\xc3\x34\x7b\x6e\x17\x4d\x1f\xf2\x67\x0f\x61\x31\x39\x15\x81\xf5\x8e\xad\xf7\xc4\xc4\x23\x60\xae\x93\x45\x12\x9d\x25\xb5\xea\x9f\x24\x38\x34\xc2\xae\x77\xf5\x9c\xd5\x75\xfe\x7f\xae\x19\x98\x98\x89\xbb\x75\xa0\x25\x39\x69\x29\x65\x98\x61\xc7\x64\x99\xe9\x26\x20\x1b\x70\x30\x76\xdf\x22\x77\x4e\xd3\x71\x8c\xb5\x2e\xf0\x3f\x9d\x3a\x81\xbe\xd0\x4c\xd6\x9d\xad\xc0\x1f\xbd\xd2\xf2\x6c\x3a\xaf\x4c\x4d\xf2\xe1\xc3\xcd\xd2\x67\x8e\xca\x78\xc4\x97\x39\x10\x8a\x22\xd4\xfd\x90\x2c\x94\xc0\x1b\xb6\xae\xae\x43\xf3\xfb\xcb\x58\x39\xa2\xc5\x25\x3f\xcc\xdc\x25\xf4\xc3\xc2\x63\x52\xb3\xac\x39\x69\xd9\xf0\xaf\x0a\xb4\x2c\x5f\xab\x03\xdc\xae\xd9\xf8\x69\xd5\x2a\x70\x81\x9e\x49\x81\x0e\x24\x7d\xf7\x7f\x60\xff\xa1\x1d\xe6\xa4\x86\x0f\x5e\x85\xd3\x80\x69\x65\xd0\x0f\x3c\x93\xfb\xad\xc6\x57\xbf\xcc\xa1\xd7\xbb\x58\x14\x30\xfe\xc8\x91\xe1\x28\xb9\x49\x5e\x8a\x63\xe7\x77\xb1\x28\x4b\x2a\x22\xae\x7c\xc0\x51\x36\x7e\xe4\x72\x4b\x89\x29\x8f\xab\xb1\xac\x03\x65\x70\xe5\x50\x80\xbf\x4a\x14\xa9\xf4\xdf\x6c\x77\x06\x5e\xa0\x23\x63\x70\x60\x80\xf3\xf4\x40\xcc\xf9\xe5\x4e\x80\x20\x89\x92\x61\x27\x34\x31\xa5\x75\x44\x2d\x0e\x4f\x85\x1f\x3f\x43\x3f\x0e\xe4\xca\xd3\x6d\x1f\x4a\xb0\xe5\x12\x5e\x62\x8f\xd2\xcc\x72\x53\xc4\xc1\x80\x4f\x2d\xfc\x31\xd7\x02\xf9\xc6\xfd\x7a\xb6\x31\xec\x24\x51\x98\xa1\x6d\x58\x10\x04\xe5\xef\x09\xb2\xa0\x46\xc8\xa6\x5f\x98\xd4\xc4\xb9\xb5\xdd\x59\xef\x17\xdf\x1b\x2b\xe6\x8e\x9d\x6d\xad\x8e\xa5\x32\x8f\x6f\xd4\x15\x20\xc2\xe1\xc8\x76\x11\xd6\x62\xea\x3e\x54\xc8\xb3\x0f\x5b\x3a\x64\x27\xaa\x4a\x8e\xc3\x1d\xdf\x8e\x13\x5b\x87\xd2\x31\x83\xd4\xa6\x4a\xed\x44\x5b\xcc\xe4\x61\x34\x32\xa2\x6a\x46\x23\xc3\x37\xd3\x2a\x6d\x0b\xcd\x5e\xe8\xe8\xee\x60\x6f\x6e\xe2\x95\xf8\xa6\xe5\xe3\xfd\x79\x54\x21\x51\x9e\x99\x6b\x2b\x9e\xf9\x87\x64\xa2\xa4\xec\x59\x83\x02\xe8\x26\xeb\x71\x3f\x35\x5d\xab\x35\x67\xce\x2b\xd1\x0f\xad\xa5\x6b\x82\x9c\x64\x70\xd1\x58\x20\xb8\x07\xd5\xcb\x7f\x53\x51\xa7\x3c\x4d\x88\x2a\x60\xa5\x76\x13\xe8\x53\xdb\x76\x64\x56\x21\x59\x2a\x0c\x19\xbe\xfa\x36\x32\xf9\x40\x29\x8e\xfd\xbe\xea\xbd\xf8\xfd\x6a\x88\xb7\x91\x7d\x46\x09\x2b\x3d\x1a\x2b\x72\xa9\x3f\x1e\x6b\xad\x1f\x5d\xf5\xbb\xa3\x1b\x93\x4f\xf3\x5e\xc4\x1d\x0b\xc2\xb8\x42\x71\x69\x0a\xb0\xb8\xbe\x47\x8e\x1b\xe7\xc5\xca\x1d\xbb\xf9\x4a\x4b\xb5\x23\xa0\x7f\x16\x8e\xd6\x0e\x02\x1a\xa2\x15\xe2\x80\x63\xfc\xc5\x06\x95\xaa\x73\x69\x31\x98\x64\x71\xec\x71\x11\xdb\x27\x1e\x3a\xf9\x2f\x69\x30\xb1\x1c\xaf\xd2\x26\xc6\x20\xef\x68\x37\xbe\xf8\x35\x1e\xd8\xb3\x48\x14\x63\xc4\xdf\xae\xf0\x8e\x15\xfd\x64\xb6\x02\xf7\xa1\xa1\x81\x79\x07\x99\x02\x76\x7d\x45\xa5\xfd\xfa\xd4\x41\x41\x0a\xa9\x61\x77\x46\x69\xf6\x33\x31\x0d\x82\x90\x57\xf1\xbd\xb0\x64\x57\x6b\x7a\x92\x96\x01\x48\x9c\xf1\xe5\x90\xd7\x94\xe8\x0a\x9f\x9b\x52\xcf\xda\xba\x42\x57\xe6\x9b\x1d\xdb\x0f\x21\x92\x57\x3e\x33\x06\xf3\x06\xac\x24\xdf\x28\xa1\xf6\xcc\xd0\xa6\xf1\x66\xf7\x18\x79\x73\x7c\xad\xca\xf0\x49\x27\x4b\x22\x9b\x5b\xe0\xc3\xc4\xcb\x51\xc1\xf7\xa5\xb1\xca\x94\x25\x6b\x16\x68\x76\xe9\xf9\x6b\x28\xcd\xeb\x3d\xce\xa9\x8e\xbb\xcc\x04\xe4\x5a\x7e\x7c\x60\xf3\x94\xd2\x67\xfe\x78\xac\x98\xbb\xae\x6a\x70\x80\x19\x99\x20\xcc\x37\x9e\x20\x62\x36\xd4\xe6\xce\xa0\x23\x14\x79\xd7\xd9\x09\xad\x48\x6e\x5e\x50\xad\x8b\xdf\xc7\x42\x70\x7c\x2c\x0b\x8b\x9e\x8a\xdb\x01\xb6\xe0\x8b\xa0\xf8\x73\x17\x58\x46\xd7\x14\xfd\xf9\xcf\xcb\xf5\x58\x29\x90\xde\xd2\x75\xc9\x7f\x56\x49\x2f\x77\xad\xa1\x74\x10\x16\xe8\x3f\x6f\x4d\xb5\x34\xa2\x4e\x74\x54\x35\xa6\x1f\x63\x56\x1d\xc9\x2c\x6c\x35\x7a\x87\x0f\x93\x5a\x19\xc1\x81\x17\x2b\x22\x62\x22\xed\x5a\x7e\x17\x0c\xff\x99\x3a\xba\xdb\x8e\x89\x22\x74\xfe\xb0\xee\x33\xbd\xb0\x68\x40\x6f\xfd\xb9\x2f\x34\xcd\x68\x64\xb9\x4f\x01\xc9\x9c\x8f\x34\x2f\xfa\x47\x53\xde\xff\xa1\xf9\xc5\xf2\xd8\x48\x93\x91\x4d\xb9\x4f\x46\x54\x05\x1a\x4a\x48\x40\x31\xf3\xd8\x75\x93\x56\xca\x86\xe8\x44\x91\x1a\xe2\x93\x4a\x68\xd1\x5a\x10\x01\x63\xa6\x19\x1b\xcf\x37\x2e\xab\x13\x0c\x4c\x9a\xdb\x74\xd6\xe3\x80\xbf\x03\x23\xa5\x73\x92\xae\x9d\xdb\x45\x55\xc7\xa6\xd2\xad\x5f\x68\x66\x49\x10\x9a\x28\xcc\x58\xf9\x58\xe8\x8b\x69\x0f\x08\x65\xb1\x24\xff\xd6\xc2\x80\x5b\xb8\xb4\xf4\x8b\x86\x01\x22\x0b\xcd\xe4\x63\x52\xd0\xf7\xaa\xe8\x61\x1c\xcc\x29\xc2\xa1\xeb\x2d\x4f\x7d\x73\x9c\xdd\x0e\xa6\x99\x6d\xa9\x06\x27\x0d\x2a\xbe\xae\xea\xf6\x83\xa4\xd7\x1b\x1a\xe6\xf4\x87\xe5\xba\x8d\xf5\xcc\x37\x75\x19\xdc\xc0\x8c\xc2\x9c\x67\x1b\xe1\x25\x14\xfe\xf8\x7a\x52\x93\xa4\x09\x92\xa1\x9d\xf5\xb5\xed\xed\xa8\x74\x09\x4d\xd6\x8c\xd7\x6a\x7e\x4d\xe9\x09\x4d\x07\x48\x5f\x10\xf8\xbe\x9c\xe7\x0c\x01\x50\x51\xd5\x39\x45\x63\x9c\x5a\x13\x85\xf9\x06\xa2\x38\x78\x33\x1f\xd3\xf7\xc3\x64\x3e\xd1\x56\x3d\x41\xf7\x10\xc5\xf0\x9e\x5c\x7d\xae\xa1\x50\xdc\xff\xa2\x45\x66\x84\x6f\xb6\x76\xf8\xae\xcc\x1f\x68\x2e\x2c\x22\x9c\x62\xa2\x67\x85\x18\x39\xeb\xf3\x88\xac\x14\x43\x4f\x83\xd9\xff\x8f\x2d\xbf\xf1\xff\x63\xf9\xbd\xf0\x0e\xb2\xcc\x64\x59\x18\xfb\x60\x0e\x89\xc1\x3f\x56\xca\x09\x7f\x5c\x57\xf8\x1f\x26\x69\xca\xb5\x13\xe1\xd8\x2a\xed\x97\x30\x71\xb9\xce\x92\x32\xb4\x0d\x2d\x58\x08\x1c\xf7\x4f\xb9\xf6\x71\xc4\x9f\x18\x2b\xd8\xf6\x79\xcf\x33\x9f\xa4\x26\x43\xaa\x5f\xb4\x52\xcb\x2f\x10\x2f\x71\x6b\x85\x91\x9a\x68\x33\x2a\x0b\xe3\x60\xdf\x41\x67\xa5\xa3\x46\x73\x0e\xe6\x5f\xb6\x3c\x17\xc6\xb6\x89\xf7\x5d\xfa\xc5\x46\xd6\x28\x03\x05\x24\x48\x40\xc2\xc3\xd7\x2a\x9d\xf1\xab\xbf\x7a\x80\xd9\x57\x84\xf3\x98\x66\x82\xb3\xa3\xf4\x21\xa1\x62\xa5\x29\x45\x52\x6e\xd3\x31\x09\x77\x6d\xcf\xc6\x19\x89\x88\x1d\x9a\xaf\xa8\xe6\xf2\xe3\x55\xc0\xb9\xbe\x98\x98\x97\xce\xde\x1e\x05\x4e\xbb\xcb\xfe\x0f\x3c\xe5\x0f\x60\x76\x70\xb6\xbd\xa6\x2b\x01\xaf\xb6\x94\x2b\xfa\x0a\x0e\x09\xc7\x2d\xb7\x6f\xd9\x57\x19\xcb\xd7\x60\xfa\xab\xb1\xf2\x5a\x28\x70\x46\xc4\xf6\xe7\x0a\xcf\xfa\x76\x4b\x75\x6a\x02\xe5\x25\xec\xd7\x35\x32\x10\x36\x1b\x29\xc9\xa2\xf3\x55\x51\x0d\xef\x06\xe4\x26\xc8\xc3\x60\x46\xd1\xca\xbd\xa1\x68\x2b\xc1\x32\x80\x10\xed\x8c\xaa\xc3\xdb\x61\x18\x9b\xcc\x36\x54\xe3\x20\xb7\x59\xf1\x4d\x05\x9c\xdc\xb7\xdd\xa7\x75\x9d\x4a\xc1\xe4\x2e\xe9\x77\x62\x95\x3f\x24\x94\xee\xc3\x4a\xe1\xb7\xaf\xe0\xb0\x71\x02\xa1\xe5\xc0\xe1\xd8\x7d\x0a\x39\x70\xa4\xea\xef\x90\xaf\x28\x24\xbe\xaa\x95\xf5\x3a\x66\x04\xe7\xf9\xf6\x89\xe7\x8a\xd8\x43\x40\x32\xe1\x5b\xa0\x31\x82\x71\x7d\xa8\x64\xa2\x4f\xf0\xbc\xe3\xd4\xdf\x36\x71\x70\xe1\xff\xf0\x99\x49\xe9\x0d\xf0\x33\x4e\x19\xb3\xf2\x0c\xb4\x91\x0d\x1c\x51\x1d\x4c\xee\x43\x45\x54\x77\xae\xa2\x10\xac\x0a\x89\x59\x12\x85\x6c\x02\xf1\xa4\xe7\xc6\x0a\xf0\x77\x4e\x31\x94\x98\x3c\x4f\xc3\x4e\x91\x97\xc1\x9e\x6b\xde\x3e\x8a\x71\x45\x8c\x7b\x8f\x7e\xd0\x91\x8a\x3a\x3c\xdc\xbd\x29\xc7\x60\x69\xa9\xf9\xf9\x5f\xfa\x07\x9c\x39\x72\xb8\xfb\x85\x45\xb9\x6e\x79\x26\x65\x1b\x24\x71\x32\x04\xa6\xa3\x51\x81\x6b\x78\xa0\xef\x74\x9f\x18\xd8\xc9\x15\x25\xa2\x6c\x12\x5f\xbb\xdc\xa6\xf8\xd6\x1f\x6a\xa6\x99\xc1\x46\x16\x06\xcc\xfb\xe8\x58\x69\x7c\x9e\x9c\x31\x2d\x98\xbe\xcd\x0a\x87\x89\xcf\x7a\xe4\x03\x1b\x13\x77\x15\x12\x1d\x27\xb1\x68\xe1\x7f\xcd\x22\xef\x20\x8c\xc7\x65\xe8\x00\xbf\xff\x7a\x4b\x35\xdf\xbd\xa6\xb5\x4d\xa0\x62\x0b\xeb\xb0\x93\x52\x59\x52\x7f\xf5\x4d\x9c\x3b\x90\x8e\xc0\x86\xda\xd1\x56\xf3\x02\x1b\xa9\x7e\xe3\x45\x27\x98\xf7\xac\xf6\x76\x32\x52\x84\x23\xd1\x80\x7d\x92\xc4\x03\xef\x27\x5f\x4f\xe5\x00\x10\xb3\x27\x59\x16\x76\x22\x98\x3d\xfc\xe5\x8f\x30\x46\x02\x3a\xf0\x40\xd1\xeb\x9a\x02\xdf\xa6\x3d\x1b\xe4\x50\x1e\x74\xf9\xb2\xd2\xb3\x96\x5e\x7d\xd5\xb0\x12\xa2\x0d\xda\x45\xf5\x60\xdf\x17\x82\xf0\x67\x35\x57\xac\xe9\x95\x5f\x4b\x27\x9e\x1b\x9c\xa3\x4a\xa7\xed\xe8\xf8\x33\x1e\xc8\x61\x87\x61\x90\xc4\xdd\x22\xc8\x93\x94\xd6\x35\x0c\xcb\x4d\x9c\x5c\xec\x42\x29\x57\x92\x15\x08\xc4\xb7\x7a\x4a\x11\x9d\x1f\x31\x41\xa2\xb5\xe1\xaa\xbf\x59\xd3\xf2\xb3\xa6\xe4\xf9\xa5\xf3\xa2\x21\x94\x7c\x7f\xeb\x7c\x95\xb6\x27\xb0\xa4\x6f\x52\x3e\x09\x13\x17\xd3\xd7\x0b\x89\x71\xcd\xd7\x0f\x4c\xda\xb5\x29\x54\x00\xb0\x29\x67\xb0\x2a\xf8\x66\x52\x69\x8b\x0d\x93\x1d\xb4\x7e\xb0\x64\x4e\x60\xc1\x32\x13\x9a\x16\x97\x1a\x57\xb2\xdf\x8a\xf0\xed\xff\x54\xbd\xbc\xbf\x55\xa9\x12\x64\xbb\x15\x22\xf5\x61\x4b\x73\xbb\xff\x85\x02\xdb\x3e\xdb\xf6\xa5\x8f\xed\x13\x05\x78\xde\x3e\xd1\xbc\x2a\xf4\xfb\x38\x00\x8f\xe9\x94\xfd\xce\x89\x67\x6d\xd8\x54\x1a\x9d\xd4\xce\x18\xc6\xfd\x1d\x34\x10\x2e\x47\xeb\x30\xaa\xb7\x75\x9e\xf8\x32\x3f\x9d\xd6\xa4\x14\xe8\x23\x8d\x1d\x7f\xbe\x26\x72\xe9\xda\xc8\x81\x30\x71\xc0\xbe\x8b\xf4\x26\xdf\xb4\x9a\x9f\x54\x8e\x1a\x74\xcc\x86\xc9\x06\x90\x53\x12\x4d\x19\x45\xc8\xf2\x7e\x8d\xa8\x0c\xd1\xe8\x05\x03\x29\x2b\x0a\x15\xb7\xa2\xe5\x56\xc9\x9b\x81\x4d\xb1\x72\xe0\xc3\x1f\x6b\x29\x3e\xe2\x63\xaa\xb2\x9f\xb2\x26\x24\x98\xd8\x24\x87\x3c\xe3\x85\x73\x3f\x54\xe3\x1a\x24\x51\x31\xec\x14\xf0\xe3\x94\xc2\xd8\x7e\x27\x3d\x26\xa1\x4a\x1e\xa6\x68\x59\x45\x2e\xe6\xbc\xca\xcb\x9c\x57\x8a\x1c\x85\x89\x9e\xc0\xe8\x4b\x9e\xab\x34\x74\x02\x84\xf1\x08\x4a\xe6\x29\xc3\xd8\x9c\x45\xd6\x97\x8b\xf8\x2d\x9f\x5b\xbb\x43\xe7\x09\x77\x72\xe0\x94\x42\x66\xef\xff\x1e\x2b\x35\xaa\xb3\xd8\xce\x9c\x74\x26\x5b\xc7\xdd\xa0\x78\x15\xcc\xdd\xf1\x0a\x6d\x53\x42\xf2\xbd\x88\x51\x7e\xa0\x39\x06\x99\x6c\x01\xdd\x97\xc7\x78\x25\x61\x41\x7e\x48\x2b\x09\xb9\x80\x99\x76\x63\x61\x41\x93\x0c\x8a\x33\x8a\xd3\x09\x29\x94\xef\x8f\xab\x30\xd1\xee\xb3\xe5\x94\x20\xc1\x73\x43\x57\xa6\x1f\x8c\xbd\xcc\xe7\xdc\x84\x06\x03\x37\xc7\x14\xe8\xe3\x3a\x66\x1c\x1f\x97\x27\x63\xea\x91\x96\x6a\x2c\x85\x7b\xb9\xb9\xb9\xa5\x7e\xbf\x7f\x45\x2a\x48\xf7\xc6\x8a\xd1\xfe\x77\xc6\x0e\x33\xf6\x6f\x66\x69\xf3\xe2\xa5\xfe\x0c\x2f\x05\x2f\xfa\x28\xe5\xd2\xb0\xf7\xef\x33\x30\xc2\x71\xfc\x95\x63\x0f\x24\xc2\x0d\xea\x60\x74\x48\xcf\xc5\x83\x8e\xb0\x94\xf6\x90\x28\xd7\xd6\x11\xec\x10\x6a\x94\xd6\x17\x1e\x05\xe9\x4c\xbe\xae\x43\x4b\x17\x69\xbf\x74\x62\xf6\x09\x5e\xe3\xdf\x8d\x75\xf3\x11\x5c\x38\x11\x8c\xd1\x15\x58\xcf\xfe\x32\x4c\x62\x9b\x9b\x34\x64\xd2\x1c\xe9\xa4\xb8\xdf\x52\x56\xf3\xfe\xd4\x4f\xbf\xb0\xbf\x0c\xba\x0b\xae\xe9\xb3\x6e\x17\x5c\x0b\xac\xd3\xdb\x2d\xed\x7b\x55\x64\x8d\x49\x68\xc9\x76\xe7\x7c\xe8\x02\x68\x3f\xfc\x03\x36\xd7\x70\x36\x04\x30\x88\xd5\xc6\x18\x2f\xbe\x51\xfb\x37\x5b\xb7\x76\x24\x98\x26\x64\x17\xee\xd3\x2e\xe3\x6b\xa5\x66\x61\x7b\xbd\x24\xcd\x23\x9b\x65\xf0\xc1\x94\x6a\x9f\x27\x3d\xbd\x32\x15\x1d\x2c\x2f\x37\x3b\x09\x90\xa4\x12\x96\xd0\xdf\x0b\x9b\x48\x8d\x22\xd7\x28\x2a\xfa\x33\x5e\x89\x84\xdb\x86\x31\x19\xd7\x95\x64\xd6\xfb\x75\x7c\x2c\xeb\xa6\xdb\x8d\x04\xe1\x06\x67\x89\x45\xd7\xf9\x46\xe5\xf5\x86\x26\x27\x44\xd7\x9c\xc7\x23\x3e\xc4\x8f\x61\x19\x9c\xd4\x66\x0f\xe3\x02\x1b\xc3\xac\x6f\x38\x26\xdf\xaa\xab\x8d\x05\x91\x35\x31\x43\xe6\x60\xe5\xee\x63\xd7\xf0\x8d\x4a\xdf\x77\xc3\x8c\xca\xbb\x78\x64\x84\xef\x0c\xd8\xe0\x1b\x05\xd0\x0a\x92\xe8\x39\xfa\x52\x87\xf0\xf2\x56\xfc\xd2\x54\x9a\x97\x6a\xcf\x43\x61\x42\x82\x51\xb9\xa5\xa4\x97\x5e\x67\x56\xa0\x1a\x7e\x82\x03\xcd\x5e\x91\xc6\xa1\x50\xdc\x4a\xfe\x15\x01\x1b\x5f\x6b\x7a\x1f\x93\x76\x38\xbd\xc0\x7b\x56\xc5\x01\x17\xab\xd8\x94\x2c\xd9\xab\x48\x26\xd1\x58\xe6\xac\x81\xe7\x75\x86\x6f\x8e\x04\xda\xd1\xb1\x52\x8c\x86\xf3\xab\x37\x27\x53\x47\x03\xbb\xce\x95\x42\x67\x8e\xcb\x29\x14\xf1\xdb\x72\xbf\xe3\x28\xbf\x4f\xde\x34\x1c\xe5\x3f\x6d\xa9\x03\x7b\xfb\x84\xdc\x4f\xc7\xf9\x55\x4e\x1a\x2a\x02\x97\x75\x9f\xee\x9d\xa9\xc6\x80\x43\xf3\x4d\xb3\x6e\x36\xa8\xdd\x15\x99\xed\x67\x14\x17\xdc\x2d\x85\x65\x3d\x0b\x9e\x6d\x51\x83\x69\x38\x6a\xec\x4b\xf4\x50\x08\x8d\x2f\x69\x9d\xaa\x7e\xb2\xb3\x7c\x74\x81\xd3\x29\x8a\x88\xd7\xc9\xb4\x6a\xb6\x51\xf7\x47\xe5\x93\x3b\x56\x99\x05\xa6\x48\x5b\xfa\x54\xdb\x63\x0a\xb7\x4d\x65\xd7\x96\x96\x9a\xc5\x88\x27\x12\x11\xf0\x9b\x4a\x73\xe6\x4d\x95\x19\x8d\x4c\xda\xb7\xbb\x3c\xb6\x0a\x24\xa4\xb0\x3e\x67\x31\x52\xac\x8a\xd8\xf2\xcc\x3b\xf7\x5a\x55\xe0\x99\x23\x2e\xbe\x46\xbb\x8b\x53\x3b\x88\x8d\x30\x81\xaf\xb5\x3c\x3e\x74\x14\x99\x7e\x81\xfe\x65\xc9\x84\x9f\x41\x01\xc9\x39\x15\xae\xdd\xf1\x0c\x3d\x8e\x38\x18\x35\x65\x73\x1b\x77\x3d\x9c\x93\x33\xe9\xaa\x1f\xe9\x9f\xd5\x88\x3f\xf7\x4c\x18\x79\x36\xee\x5a\x68\xd5\x56\x73\x7f\xf0\xf9\xa6\x59\x4b\xc2\xae\xb2\x67\x37\x2a\xd8\x78\x9f\xb0\xfd\xa9\x6b\xb8\x2d\xe3\x97\x2c\xb3\x43\x91\x6e\x93\x33\xb8\xfc\x5b\x29\x41\xd7\x6c\xf5\x7e\x68\xe2\x5c\x68\x48\x80\x62\xfc\x18\x67\x3e\xdf\xd4\x51\x37\x46\xd6\x64\x92\x32\x80\x81\xb8\x53\x61\x60\x57\xbd\x56\x17\x1c\xe8\x61\x94\x5a\xd6\x2e\x6b\xf8\xf8\x16\x3b\x9e\xaf\xa7\x4a\x46\xfb\x9f\x3f\x50\x1a\x89\x74\xc3\x45\xe3\xd8\xfe\xaf\xd3\xbe\x70\xd8\xaf\xa5\x25\x47\x5f\xe9\x0b\x3d\x3d\x13\x45\x4c\xec\x89\xec\xc9\x51\x95\xd7\x65\xb6\x58\x91\xcb\xa9\xd0\x5a\x84\xf9\x0e\x8c\x86\x13\xb5\x75\xf5\xf2\x7b\x30\xe1\x92\xf2\xd1\x53\xa2\x88\xec\x78\xab\x61\xf1\xbe\xda\xf2\x42\x19\xc3\x8d\x34\x34\x5d\x84\x6d\x75\xc4\x67\x3e\x1f\x38\x4c\x82\xd4\xe4\xd9\x2e\x3c\x08\xdc\xad\xcf\xd1\x1e\x74\x15\x67\xef\x97\x32\x25\x81\x68\x49\x95\x13\x8e\xd2\x20\xbb\x40\x42\x3e\xa8\x18\x42\xd8\x49\xa5\xf9\xfa\xfa\xd3\x13\x1f\x5a\xf7\x92\x32\xe8\xe1\xfe\x12\x24\x44\x8f\xc3\x51\x76\xc2\xfb\xae\x21\xe8\x38\x59\x46\xa1\x45\x96\x69\x1e\x9a\x30\xce\x89\x32\x80\x5c\x0e\x35\x24\xe2\x78\xfe\x40\xf3\x1d\x7d\xab\xe5\x8b\x89\xd7\x74\x5d\x73\x7b\x5b\x31\xee\x52\x7f\x7b\xd0\x50\xd8\x47\xc6\x04\x08\xbd\xdd\xd3\xaa\x51\x6d\x58\x86\x44\x39\x48\x9b\xb1\x88\xaf\xa9\xb6\xf6\x6b\xaa\x9b\x3c\x4f\x8a\x60\x30\x4b\x96\xdf\xa1\x3c\x3c\x25\x1f\x19\x03\x47\xcf\x57\x8e\xb7\xc8\x60\xa8\xd6\x8f\xf2\x1b\x1a\x8a\xb0\xfc\x8e\xd2\x4c\xbb\xa3\xab\x99\xb9\x35\x51\xd6\x50\x9c\x2f\x2d\x8f\x19\x3f\xaf\xd3\x01\x83\x75\x93\x82\xfa\x1d\xa7\x15\x73\x79\x3b\x0e\x2b\xd7\x7e\xb6\xbd\xed\xdf\xda\xae\x25\x51\xe1\x52\x17\xd8\xef\x7f\x88\x7d\xcc\x37\x5a\x5b\x31\x32\x84\x78\x2b\xcd\x84\x62\x9d\x12\xc2\x85\xfb\x35\x3d\x8b\x2b\xa5\xe7\x1a\xe6\x49\xaa\x60\x8c\x90\x6e\xe4\xeb\x3a\xac\x04\xc8\xf6\xa5\xdc\xcb\x1d\xa7\x30\xe6\xd2\x7e\x5a\x53\xdb\x19\x16\x99\xd3\x4a\x63\x80\x77\xcb\xc3\xc9\xb4\xf4\x7d\x16\xc6\x7d\x33\x4a\x52\xbb\xab\xc2\x35\x38\xc5\x48\xe8\xae\xf7\x2d\x57\xd5\xcc\xe5\x3f\x34\xad\x9e\x92\x3b\xe6\x3a\xbb\x90\x46\xee\xd5\x5a\xdb\xeb\x36\xcd\x66\xcb\x68\x03\x8e\xde\x65\xec\x41\xdc\xa0\xb7\x8e\xaf\x69\x15\xf1\x1f\x4d\xf5\xa7\x7f\x81\x24\x17\x69\x78\x70\x80\x9f\x52\x25\xd6\x53\xd5\x48\xce\x76\x9f\xa1\x84\x33\x4a\xa0\xec\x19\x72\x9e\xae\xa5\x82\xc1\xb3\x18\x61\x96\x29\xd2\x6a\x04\x77\xc6\x9e\x02\x85\x41\x14\xa2\x54\x5c\xfe\x2a\x8e\x77\xb0\xa4\x39\x69\xf7\x85\x45\xed\x66\xbd\x28\xbf\x4e\xe3\x8a\x4a\xda\x5f\x69\x28\xcb\x5d\xcd\xf4\xb7\xbd\x4d\xf3\x22\xb9\x44\x1a\x21\x14\xca\xef\xb6\x3c\x63\xfb\x29\xc5\xa6\x7b\x4f\x1d\xc0\x97\x15\x70\x35\x0b\xa3\xb5\xd2\x31\x5e\x11\x6a\xd6\xd3\x2a\xe2\x3e\xad\xb2\x78\x45\x1c\x76\x6d\x8c\xfa\x1c\x15\x56\x41\x82\xc0\xd5\x3e\x29\x52\x7a\x67\x16\xd6\x5d\x1c\x10\x6f\x19\xc2\xa1\xe9\x5b\xd5\xbb\x02\x16\x23\xbe\x9e\x48\x7e\x22\x28\x72\x2e\xa5\x0a\xce\x4a\x85\x71\x77\x75\x65\x64\xec\x52\xf2\xbf\x38\xd7\x9e\xd6\x1e\xda\xdf\xcc\x92\x24\xb6\xe9\x4c\xf9\xc8\x42\x02\xe9\x91\x74\x0f\xe1\x9d\x62\x59\x7c\xec\xca\x61\xa9\xed\xca\xe6\x82\x45\xe0\x4e\x4b\xbe\x51\xa4\x5e\x29\xa3\x39\x45\x4e\x54\xe7\xf7\xeb\x82\x29\x93\xf1\xd1\x89\x43\xe5\x1e\x7c\x5d\x01\x99\x34\x96\xbd\xd9\xaf\x21\x85\xed\x15\x69\x9a\xac\xb3\xc3\x83\x95\xc0\xd1\x14\xdf\xa8\xee\x9d\xb8\x30\x71\x60\x33\xed\xb1\x68\xee\xf0\x2b\x75\x68\xda\x4e\xb2\xee\x45\x91\x9d\x56\x88\xb3\x10\x67\xd4\x89\xdb\xb1\x79\x6e\xd3\x5d\x95\xce\x37\x95\x62\xb8\xa8\xc9\x17\x66\xc8\xf1\xc6\xda\xfb\x10\x27\xa7\x93\x6a\x74\x52\xb8\xb3\x54\x5b\xc1\x26\xc0\x04\x23\x87\x79\xdd\x69\x0f\x67\x36\x2f\x46\xba\xf3\xb9\xe5\x91\x1d\x17\xf4\x19\x7c\x5c\x75\x92\x95\xe1\x9c\x10\xf8\xbe\xb8\x79\xb5\x3c\xc3\x37\xa7\x95\x53\xa9\x75\xdc\x74\xad\x90\xc8\x63\x39\xb3\x33\xc9\x37\x08\xe7\x38\xb1\x1c\x0c\x62\x91\x9e\x8c\x36\x1a\x3e\x17\x7b\x5e\x63\x62\xcf\xd7\x91\xd9\xe6\xa1\xf8\x77\xb0\xef\xe8\xf2\x93\x32\x2e\x8d\xa7\x90\xa8\x68\x23\xb5\x1a\x0e\x1b\xa5\x91\xf2\xd4\xb1\x5a\x8c\x6d\xcd\xa6\x59\x98\x73\x31\x46\x14\xe5\xbd\xb9\xf5\xf0\x9b\x6e\xd2\xed\x57\xda\xea\x3e\x18\x2b\x38\xcf\x07\x4a\x0b\x28\x2d\x3a\x36\x42\xfe\x13\xd1\xd0\x31\xad\x49\x78\xac\x66\x79\xee\x07\x52\x24\xc5\xfa\x86\xcd\x83\xf7\x2a\x94\x49\xe5\x97\x09\x1b\xb4\x54\xce\xf3\xb4\xfc\x54\x97\x82\x7e\x85\xad\x91\x86\xb4\xb9\x89\x87\xd1\xfd\x6f\xe8\x9b\x75\x2c\xe0\xfb\x84\xa9\xfd\x87\xde\x15\x16\x51\x50\x64\x9f\x5c\x53\xfd\xaf\xbc\xe0\x1a\xdc\x54\xc7\x9e\x09\xd9\x71\x70\x78\x33\x25\xa7\xf8\x29\x25\x04\xd0\xb5\x69\x18\xac\x36\x54\x92\xb4\xa5\x92\xa7\x35\xd5\xbf\x2f\x95\x26\xa4\x08\x04\xca\x80\x42\x3c\xf4\x3e\xf9\x5a\x09\x4e\x15\x71\x16\xa4\xc5\xa8\x88\x92\x02\x8f\x83\x98\xf1\x81\x8a\x25\xa7\x19\xf2\x97\x96\x9a\x2f\x99\xf8\x39\xd0\x21\xa1\x0c\x36\xa7\x8a\xf0\x40\x01\x49\x97\x22\x0d\xa8\xd0\x6c\xf9\xf4\xc5\x3f\xfa\x7b\xff\xe8\xef\x35\xb4\x36\x2b\xac\x9c\x08\xb5\x8a\x95\x0b\xe3\x38\xab\x40\xc4\xb7\xb5\x15\x44\x7c\xdb\x44\x16\x57\x84\x08\x4e\x17\xf7\x5a\x1e\xdb\xf5\x4a\x4d\x08\x17\x98\xd8\x74\x43\xc3\x36\x14\x41\xce\x79\xc5\x8f\x71\xde\x6d\xfe\x7e\x14\xc6\x79\x43\x89\x3a\xa0\x2e\x23\x22\x8f\x35\x9c\x89\xc4\xd2\x02\x77\x1b\xab\x04\xaa\xd5\xb0\x36\x0d\x68\xf9\x8a\x48\x4e\x69\x86\x84\xf8\xc2\xb7\x86\xc5\x61\x14\x19\x0c\xb0\x8c\x9d\x87\xa6\xc2\x30\xf2\x29\xd2\xf2\x51\xeb\xff\xab\x69\x0e\x22\x1b\x87\x79\xd1\xe5\x6a\x79\x2d\x47\xc6\x27\x95\x20\x4c\x2f\x32\x79\x72\x24\x44\xf0\x8f\x45\x73\x15\xf3\xc3\x37\x0a\xcb\x1f\x24\xa3\x8d\x34\xec\x0f\xc8\xd0\x95\x63\xa4\xe9\xf4\xa5\xdc\x5e\xb3\x63\x0f\x34\x53\x29\xe2\x8a\x8b\xf5\x63\x3a\xff\xf9\x5a\xd5\x60\x83\x24\x0e\x04\x06\x26\x42\x02\xbe\x53\xee\x4c\xc5\x21\x37\x7d\x79\x0e\x1c\xd2\xcc\x96\xc1\x37\x63\x0f\x78\x5a\xb5\x31\xf5\xa0\x48\xff\xa5\xd2\x38\xab\x93\xa5\x59\x0b\x3b\xa9\xf1\x05\x3a\xb7\xbb\xfd\x4e\xaf\x3a\x76\x7d\xc3\x01\xa7\x62\x98\x5b\xf4\x74\x09\xa5\xcf\xe7\xe8\xe6\xca\x39\xe1\xff\xc1\x11\xe5\xe8\xe3\xd4\xfc\xd7\xb8\x99\xb9\xb5\x50\xfe\x84\x6f\xf2\x1b\x63\x9f\xbd\xbc\xdc\xf2\xb4\x0d\xd3\x4d\x32\xce\x8d\x27\xb0\xff\x8c\x4e\x10\x5f\x52\xe7\xdf\x45\x2d\x8b\xf3\xa8\xf5\x8c\xd2\x88\xef\xda\x74\x3d\x0d\x59\x45\x42\x89\xe8\x1c\x70\x21\xa5\x3f\xaf\x47\x45\x9a\x15\xb4\x1d\x24\x5f\x0b\xa2\x5f\x64\xd9\x40\x22\xc2\xff\xae\xb1\xca\xb7\x55\x99\xa5\x17\xc6\x33\x8a\x64\xeb\xa8\x56\x1b\xb8\xa2\xbc\xbd\xbb\x2a\x47\xd4\xdd\x88\xcd\x30\x0c\x54\xe2\xf5\x38\x90\x1e\x7c\x33\x55\x46\x3b\x7c\xb8\xd9\x29\xc2\xa8\xeb\x26\x19\x88\x99\xab\xf4\xfd\x7c\xad\xbf\x3f\x89\x22\x93\x66\xe4\xbf\x3a\x1a\xb8\x95\x79\xb9\x76\x81\x7f\x69\x8c\x49\x24\x86\xc7\x59\x24\x0b\xe9\x7d\x2a\x64\x42\x22\xb4\x55\xa3\x3f\xd4\x4b\xad\xed\x26\xc3\x2d\x2c\xed\x5e\x90\xeb\xc4\x58\x81\xa0\x34\x7a\xfa\x78\x1d\x75\x34\x1e\x49\x02\x4b\x41\x35\xf8\xa9\x7c\xa3\x8e\x60\x65\x98\x64\x79\x83\x32\xa2\xae\x14\xb8\x32\xef\x6e\xd4\xf1\x3d\x34\xe9\x2a\xc3\x42\x58\x63\x05\x8b\x5f\x6a\xdf\x3e\x39\x74\x56\x37\x3e\xde\x51\x34\xc0\xbd\xc8\xf4\x75\x9b\x1c\x0c\xb3\x9c\x7f\x4e\xd9\x6c\x60\x56\x25\x07\x27\xca\xce\xe5\xaf\x0a\x3b\x50\x1d\xe9\x64\xbe\x1e\x06\x9c\xc7\x16\x82\xaa\x72\xd2\xf8\xba\xb5\x95\x41\x7d\x69\xa9\x99\xf4\x98\x54\x10\x55\xa7\x2b\x63\x4f\xa2\x79\x45\x4b\xf6\xd8\x9c\x99\xc3\x74\x1b\x0c\x3d\xb7\xb4\xc4\xf8\xf7\xeb\xd2\x91\xbe\xbc\xec\x09\xf0\xcb\x19\x13\x02\xfc\xad\x3b\xfd\xef\x36\xd3\x30\x48\x68\xae\x18\x12\x3f\xae\xe0\xe3\x7d\xe6\x62\x98\xc4\xf9\xe0\x29\x5a\xbc\x88\xe3\xae\x52\x21\xcd\xb1\x4b\x96\x9f\x82\x17\xf4\x63\x3a\xe1\x31\x3f\x77\x14\x04\xee\xa8\x02\x33\x71\xdc\x87\xc8\x03\x01\x16\x9c\x3a\x2e\x30\x01\x45\x8a\x16\x06\x58\xfa\x73\xe3\x99\x17\x56\x5c\x23\xc1\xd8\xeb\x74\x7c\x1b\x1e\x1c\x7f\x02\x89\x09\x58\x2a\x04\x7d\xa8\x45\x4e\xf7\x4d\x52\x45\x2f\x59\x8f\xc1\x86\xea\x5c\x18\x80\x96\xf9\xba\xae\x51\x8e\xa8\xa8\xf2\x01\x84\x34\x35\x8a\xd3\x17\x2d\xce\xe9\xc6\x89\x6e\x42\x8a\x12\x80\xf9\xb0\xde\x14\xc2\x1b\x11\x9f\x52\x99\x0b\x4d\xd0\x75\x61\xca\x8c\xac\xcc\x37\xb3\x64\x68\x3b\x49\x97\xab\x63\x48\x8b\xc0\x69\xe0\x6b\x27\x5b\x1f\x0c\xcc\xa8\x6b\x89\x8d\x93\x1e\x13\xee\xc2\x51\xdd\xfc\x74\x54\x75\xe9\x76\xac\xed\xcd\xe9\x60\x85\x46\xd5\x25\xd1\x9d\x87\xfa\xa0\xa5\xd2\x4b\xdf\xc7\x6c\xf1\x5f\x29\x2c\x86\x79\x19\x4c\xc8\x42\x50\xa3\x78\xc9\x1b\x13\x6f\x95\xe7\xda\xde\x5f\x0c\xe3\xdc\xa6\x41\x32\x1c\x99\x98\x85\xac\x04\x63\x4c\xbf\x21\x70\x46\x5f\x1b\xcd\x8a\x4e\x92\x76\xc3\x58\x14\x87\x90\x12\x38\xa5\x88\x3d\x4f\xd5\x85\x2a\xfd\x24\xea\xd2\xb3\x21\x37\xbc\xa9\x68\x2f\xf9\x28\x15\x23\xf8\xa4\x62\x5e\xcb\x83\x01\x32\xca\x5c\x63\x18\xab\x2d\xd3\x52\x0e\xaa\x73\xed\xd2\x22\x8e\x11\x43\x31\x9a\x8b\xfe\x4a\x90\x5d\x5e\xa2\x38\xb6\x45\x4a\x41\x57\x86\x24\x9e\x64\x58\xe8\xa5\xb5\x06\xad\xe8\xe2\x55\x31\xb1\x92\xe8\x46\x19\xe4\x3e\x3d\x16\xdc\xc7\x9d\x6d\x1f\x98\xdc\xac\xe3\x8d\x88\xc2\xc0\xc6\x02\xf5\x61\x39\x4b\x5d\x57\x7e\x5f\xa5\x00\x4d\x98\x8e\x92\x34\x07\x8b\x19\x2b\x80\xd3\x1e\xc4\x82\x87\x5a\x2f\x8c\xcc\x5d\xd5\x16\x4c\x65\x09\xf1\x9a\xb8\x61\x4e\x71\xd6\x5d\x56\xfb\x64\x94\xda\x8c\x44\x2e\x3c\xbd\xee\xeb\x0a\x94\xfc\x7a\x0d\xf2\xee\xc5\x66\x64\x8d\x3f\x53\x45\xaa\xc2\x1f\x3c\xd3\xdc\x4f\x87\xe6\x9b\xdd\xa2\x9c\x4b\x1c\x98\x8c\x53\x18\xfb\x3a\x3e\xef\x40\xe4\x94\x6f\x4f\x19\x8d\xc5\x83\xcd\xd8\xf6\x4d\xee\x69\xd0\x38\xeb\xdf\xf2\x90\x9a\xe9\x3e\xc6\x85\x85\xe6\xc0\x9a\x35\xa7\xf2\x87\xb5\x7c\x5e\xb1\xb6\xe9\x8c\x6e\x37\x34\x23\xae\xea\x32\x87\x9e\x12\x42\x3f\xaf\xb9\x66\x47\x36\xee\xee\xd2\x60\x28\x85\x30\xbf\xd4\x52\xfc\xe9\x60\xe1\x77\x7c\x61\xfb\x96\x9d\x32\xa3\xaa\x36\xbe\x85\x9d\x8d\xa4\xd5\x59\x32\xe2\x22\xe6\x38\xed\x20\x0e\xc2\xd4\xce\x78\x5c\x18\x0c\x32\x0a\x54\xb7\x15\xf5\xce\xf9\xa9\xb1\x28\xa7\xcd\x9a\xcc\x8d\x05\x53\x88\x03\xa2\x21\x7c\xe2\x4f\xeb\x9e\xee\x9c\x5c\xc9\x59\x9d\xc2\x68\x29\x1e\x58\x58\x3f\x97\xdb\x28\x37\x30\xff\x87\x76\x14\x4d\x1a\xe6\x1b\xb3\x1e\xd0\x78\x15\xcd\x18\x2e\x89\xbb\x22\xa8\xc7\x39\x02\xd0\x0a\x61\xe5\x56\xf7\x76\xff\xca\xfe\x66\x6a\x47\xd6\xe4\xb6\xcb\x5d\x20\x4c\xdc\xa7\x5b\xc0\xeb\xe0\x23\x8b\x4d\x33\x32\x69\xde\xf0\x29\xd5\x47\x74\xd2\xf0\x75\x6d\x3e\x5c\x20\xa9\x0a\x52\xf5\x48\x43\xaa\x1e\x29\xa1\x8c\x34\x29\xf2\x30\xb6\xd1\xc6\x8e\x29\xb6\x53\xe0\x09\xce\x61\x41\xe8\xa4\x00\xff\x07\x16\x01\x26\xec\xc3\x96\x82\xca\x7e\x58\xf3\x54\x07\xbc\x27\x5b\x8e\x3b\x57\xad\x91\x43\x96\x12\xb6\xc6\xfb\x99\x51\xb6\x53\xb5\xca\x9f\x40\x75\xc8\xc9\x3f\xbb\xf3\xf3\x58\xcb\xcb\xad\x9f\xc5\x43\x38\xb1\x57\x4f\xd9\x7a\x46\xb5\x27\x3e\xac\x69\x6c\xe9\x25\x49\x3e\x08\xa3\x88\x37\x27\x02\x1c\x6e\x5b\xe5\x1b\x45\x90\x46\xa2\x52\x9d\x30\x1b\x84\x3b\x95\x3e\xcb\xa9\x96\x56\xe4\x3f\xa6\x9a\xe8\x6f\x60\x79\x89\x22\x57\x39\x7d\x4a\xb6\xcb\xe7\xff\x14\x8d\xc1\x15\x65\x44\x47\x69\x12\x50\x27\xa8\xd2\x46\xf3\xb1\xe1\x6b\x5e\xcb\xd7\xe4\x89\x92\x2e\x3b\xaf\xe5\x67\x1e\xb5\x74\xbd\x41\x19\xe8\x3c\xb7\xc3\x51\xbe\x43\x31\x6d\x9d\xa6\xd1\xd5\xf2\xc6\x8e\xee\xdf\x67\xf3\x3e\x44\xc0\xc8\x9f\xa0\x57\x62\x66\x5a\xb5\x09\x47\x45\x1a\x0c\x50\xc2\x2d\x9f\xc4\x09\xf6\xf8\xfa\x22\x7d\x3d\xb2\x1b\x3f\x75\x69\xab\xcc\x14\x36\x5d\x4d\x4d\x91\xcf\x78\xbd\xd0\x8f\x14\xbb\xde\xcd\x8a\xa5\xf0\x52\x82\x2c\x24\x22\x51\x04\x7e\xe3\xff\xa7\xdf\xe0\xeb\xa9\x83\xbd\xdc\x60\x29\x73\x20\xc1\x78\x03\xc5\xc3\xd7\x53\x66\xe8\xef\x36\x93\x11\x34\x6e\x66\xbc\x36\xf9\x65\x30\x03\x09\x94\xda\x3b\x06\xf7\x6a\x71\xdf\x03\x33\x1a\x85\x6c\x05\xdc\x30\x2b\xea\xe0\x8a\x66\x85\xcd\x9e\xa1\x95\x8f\xea\x2a\xf8\x43\x58\x9f\x0b\x8b\x07\x9b\xf1\x77\x61\x08\x85\x24\x84\x66\x0a\xc5\x6a\xf4\x01\xc1\x9e\x6f\x92\xef\x2d\x98\xc3\x32\x1e\x17\xb9\xc5\xf2\x65\xe0\xbf\xfc\xd5\x58\xb5\xed\xdc\x26\xdf\x9b\x35\xf7\xe1\x7b\x33\xfd\x3b\xac\x82\x74\x81\x93\x49\x46\x57\x01\x13\x18\xc2\x51\xbb\x3b\xf6\x56\xf1\x1f\x8f\x2b\x5e\x00\x36\x0b\xb6\xfe\xe9\xb1\x97\x63\x7f\x55\x45\x30\x41\x12\xf7\x6c\x6a\xe3\xc0\xce\x29\xd6\x81\xab\x8a\x2c\x8f\x2d\xb7\xc4\x29\x3e\x07\x73\x41\x13\x44\x9f\xae\xe9\xd9\x69\x26\x3d\x38\xae\xa2\x00\x5d\x3e\x29\x1e\x61\x66\xe2\x19\x9a\x2f\xd0\x81\x86\x4d\xf9\x78\xdb\xb7\xd7\xfe\xe6\xd4\x57\xfe\x72\x73\x3d\x8c\x20\xcd\x86\x39\x61\x00\x14\xdf\x4c\x01\xa0\x16\x0f\x36\x3b\x45\x6a\x4d\x41\xe7\xa1\x74\x1c\x7a\xc0\xcd\x39\xad\xac\xf6\xbf\xd7\x91\x9f\x09\x66\x01\x7e\x0c\x2b\x86\x28\x8f\xe2\xee\xd4\x33\xbe\xb0\xff\x73\xcd\xe4\x08\x8c\x1c\x22\x1f\x94\x59\xf8\xba\xf5\x99\x6a\xc3\x17\x25\xc5\x96\x96\x0e\x20\x3a\x55\x8c\xc9\xee\x46\xd5\xa8\x89\x73\x90\xb8\x01\x70\x1c\x83\xb1\x8a\xb1\x03\x2d\x0f\x85\xba\xab\x70\xe1\x9c\xdd\x16\x80\x81\x0f\x2b\x5e\x4a\x3a\x59\xc3\x23\x2e\xb0\x88\xf9\x7a\x6a\x28\x96\x97\x9b\x76\xd8\x49\x8d\xcb\x30\x23\x88\xe4\x02\x02\xdf\x68\xfd\xad\xc2\x46\x84\x1a\x80\x2d\xe3\xaa\x11\x20\xdb\xbf\xdb\x52\x14\xd2\xe0\x06\x42\xc2\x9e\x51\xbd\xfc\x1f\x53\xe0\x24\x3a\xa9\xa3\x88\x6a\xb5\xa8\x65\xdc\x01\x48\x15\xc0\x9a\x6b\x8a\xa2\x1c\xd5\x47\xa9\x10\x6f\xfd\xa2\xc3\x87\x9b\x71\x12\x5b\x45\xee\x71\x52\x33\x4e\x9f\xac\x2b\x85\x51\x3a\x32\xe4\xae\x4c\xc6\x8d\xa9\xee\xa5\x3f\x75\xd1\x45\x2f\x0a\x47\xd9\x8c\xa7\x2e\xe3\x03\x48\xaa\xad\x34\x0e\xd2\x2c\xe2\x03\x06\x13\xad\x93\x0b\xe2\xb4\xee\x6e\x2a\x59\xab\x9b\x6a\x09\xac\x99\x0c\xd9\x0f\x47\x05\x86\x41\x93\xee\x5d\x0f\xee\x8c\x4c\x9e\xac\x67\xab\x21\xe2\x51\x61\x05\xac\xe8\xaf\x4d\x77\xd2\xbe\xd8\x34\xbd\x5e\x18\x85\x5e\xb8\x1c\x7b\x77\x66\xe2\xf7\xf1\x4c\xfb\x93\x04\xf4\x06\x26\xce\x18\x3d\xc6\xcd\xef\xd8\x60\xd2\x09\x5f\x53\x06\xb3\x26\x8d\xdd\xfe\x02\x02\x09\x47\x16\x5f\x4f\xc9\xdb\x1d\x9a\x6f\xc6\x09\xad\x01\x98\xaa\xb3\x3a\x23\x06\x77\x51\x14\xfb\x1b\x5f\xfd\xb2\x93\xb1\x91\x93\x2f\x32\x99\x4d\xb3\x20\x19\x21\xf4\x86\xa9\x65\x3b\xc0\x37\x8e\x4e\x3d\x4a\xe2\x7e\x6e\xd3\x61\xc3\xbb\xe8\x27\x54\xe3\xf3\x09\x55\xd6\xa6\x23\xcb\x36\xbc\xec\x0a\x60\x6f\x02\x8e\x78\x46\x2a\x1b\xc3\x51\x9a\xac\x09\x95\x8f\x77\x9b\xdf\xd5\x95\xbf\x77\x55\xbe\x31\xb0\x21\x35\x30\x35\x96\xbd\x74\x88\x0a\x76\x5f\xd5\xa4\x34\x53\xf9\xbb\x85\xc5\xa6\x49\x87\xa8\x4c\x21\xfd\xcf\x6a\x77\x7c\xe3\x99\x3f\x8a\x4e\x16\x76\xc3\x97\x39\x47\xe6\xba\xab\x1c\xb3\xdb\xa5\x4a\x93\x5d\x9c\x74\x55\x5e\x0a\x94\xe4\x7c\xed\x3c\x8c\x22\xb6\x6b\x36\xce\x7b\x45\xf4\x37\x26\x4c\x5c\x5e\x46\x4f\x7f\x98\x01\x57\xe6\xec\xda\x3e\xaf\x1e\xec\x91\x1b\x83\x24\xea\xda\x34\xdb\xa9\x36\xe4\x6b\xf4\xf5\x70\x15\xff\x5c\x11\xa5\x7d\xa0\x28\xfb\x2f\x62\x07\xc0\xcb\x99\x8c\x95\xde\x1a\x43\x2f\x04\xfb\xef\xab\x2a\xa0\x10\x10\xb5\x02\xd1\x03\xa3\xdf\x15\xd5\x30\xf1\x0f\xcd\x73\xc3\xe7\x66\xfd\x0f\xcf\x11\x71\x04\x37\x67\xb7\x7c\x63\xfa\xe3\x6d\xd5\x41\x73\xb5\x96\x39\x72\x90\x8c\x46\x6e\x5f\x20\x6a\xfa\x3d\x95\x40\xff\x3d\x57\x61\xcd\x46\x61\xca\x65\x12\xe4\x33\x67\xda\xbe\xb4\x39\xa3\x00\x61\xf6\x88\x09\xf2\x68\x63\xb6\x92\x39\x55\xa8\x77\x26\x86\x75\x02\xb7\x2f\xec\x77\x9a\xb6\xb2\x7c\x93\x35\x9b\x56\xb3\xe5\xf0\xfd\x4f\x28\x41\xbb\x13\x75\x14\x58\x9d\x22\x58\x75\x9f\x71\x54\xdd\xcb\x7e\xdb\x6a\x95\xf7\x60\xd5\x30\xb4\xd4\xf9\xbe\xfb\x5c\x34\xde\x52\x5a\xd8\x9c\xac\x93\xf2\x80\x4f\xaa\x9c\xd6\xc8\x03\x76\xd5\xf8\x06\x60\x19\x09\xed\x9d\x4e\xbb\xd0\x59\xcc\xd2\x13\xd2\xe4\x7d\xf3\xe9\xb6\x9f\xc9\x07\x63\xef\x46\x7f\x47\xb7\x3c\xed\x98\xf8\xda\x7f\x90\x14\x69\x68\xd3\xac\xa1\x2b\xec\x5e\xac\x79\xba\x45\x71\xdf\x72\xb3\x6f\x86\x1d\xdf\xa2\x88\x1f\x38\xad\xc8\x6e\x51\xc4\xc6\xb1\x3e\x51\xbd\x7a\x61\x1c\x24\xe9\x28\x49\x89\xcf\xd5\x37\xc6\x5c\x51\x1f\x9d\xd6\x12\x5d\x58\x50\x70\x54\x97\x3c\x77\x74\xe3\xe7\xd4\x4b\xfe\x9e\x56\xb1\x19\xd8\xcc\xee\x29\x4d\xae\x13\x24\x2f\xc7\x1d\x80\xba\x7b\x55\xfa\x66\x65\xc7\xaf\xa9\xd6\xa9\xa7\x54\x23\xec\xab\xba\xe1\xe5\x68\x4b\x31\xee\x80\x68\x18\x1e\xef\x6c\x5b\xf1\x08\x10\xca\x68\x53\x9a\xa2\x45\x2b\xaa\xa1\x68\x08\x6a\xd2\x49\x14\xd5\xcf\x78\x45\xf7\x13\x8a\x07\x07\xbc\xfc\x70\xfc\xce\xd5\x62\x0b\xbe\x5e\x98\x8d\xc8\xce\x78\xca\x26\xa4\xc7\x44\xfb\x41\x65\xd5\x6f\xbb\xfd\x51\x6d\xa0\x5c\x5a\xf2\x02\x7d\x5e\xac\xaf\xa6\x40\x41\x8c\x06\xdd\x0d\xf4\x84\x20\x7f\x80\xa9\x80\xbf\xc4\xca\x73\x18\xaf\xb7\xeb\xea\x7a\x07\x9a\xc3\x24\x26\x21\x28\x18\x7b\xc7\x87\xb3\x32\xef\x38\xa3\x3f\x49\x7b\x20\x48\x86\x43\x9b\x06\x21\xcb\x98\x63\x33\x41\xc1\x19\xbb\x64\x53\x17\x04\x8f\xa9\x86\xcc\x34\x09\x56\x39\x47\xc9\xac\x6a\x2d\x5f\x34\x7b\x77\xec\x99\x90\xbe\xf2\xb5\x86\xee\x6a\xbe\xa0\x59\x02\x2f\x28\xa7\xb1\x9b\xac\xc7\x4f\x96\xf3\x05\x87\x0e\xaa\x78\x95\x5e\x2c\x4d\x4a\x05\x17\x78\x0f\x99\x58\x6c\xb0\x37\x74\x63\xe6\x2d\x0a\xbe\xb0\x6f\xce\xc3\x50\x48\xb4\x4a\x46\x1f\xc7\xc1\x4d\x60\xf1\x45\x03\xb5\x8c\xdd\x70\x34\x30\xe2\xd6\x91\x69\x2c\x1e\xe4\x95\xbc\x9d\x22\x14\x6c\xc8\xa7\x95\x60\x78\xd7\xa4\x52\xaf\x64\xe0\x3b\x0e\x17\x69\xe6\xf3\x49\xc3\xdb\x2d\x5f\x48\x07\x82\x85\x90\x53\x44\x69\x81\x1a\x0c\xd2\xab\x88\x7c\x7f\xac\xac\xfe\xbb\x63\xa5\xd9\x7f\xd4\xf9\x29\xd9\x28\x0d\xe3\xd5\x88\x4f\x6f\x0e\x6d\x34\x7a\xe6\xdc\x74\xb6\xec\xf9\x03\xcd\x5e\xf9\xbb\x83\x30\xb3\x80\x99\x4b\x82\xcc\x83\xe0\x2f\xb4\x7c\xb3\x4c\x98\x65\x04\xf0\x52\x07\x4d\x63\xa2\x68\x24\x1b\x6d\x4f\xdc\x37\xda\x18\x0e\xa9\xcc\x8e\xbc\xce\xbd\x96\xe7\xf7\xbc\x57\x2b\xe2\x55\x9e\x76\x8a\x9b\xe2\xb7\xc7\x8a\xc1\xf6\xb7\x6b\x03\xfc\x30\x8a\x6c\x9f\xa1\xa5\xce\xe1\xf2\xce\x57\xad\xe5\x1b\x16\x2c\x0c\x04\xc7\xf1\xd7\x70\x84\x0b\xd9\xad\x77\x11\xce\x4e\xe5\xd6\x4a\xbf\xb8\x6b\x83\xc8\xa4\xe2\x15\xb3\x3c\x04\xe6\x43\xb4\x22\xa6\x53\x72\xcd\x20\x0d\x87\x61\x6c\x22\xf6\xf6\x44\x1f\x4b\x35\x9c\x9c\x76\x91\x03\x31\x32\x3d\x56\x3e\xa0\xa0\xe8\x7d\x7f\x1a\x67\x02\x61\x58\xaf\x78\x20\xc4\xcf\x7c\x8e\x76\x2a\xd6\xef\x4e\xf0\x10\x31\xab\x1c\xac\xac\x74\x80\xd0\xbb\x4a\x6e\xd2\x73\x69\xf2\xbe\x82\x61\xfe\x7f\x1c\x16\x65\x68\xba\x61\xc6\xb2\xe6\xb5\x82\x70\x35\xb2\x18\xa9\xe1\x16\x4f\xf1\xa9\x95\x7f\x5d\x17\x5a\xdb\x23\x61\x96\x53\x0f\x81\xce\x34\xba\x4a\xdd\x31\xd5\xbc\x9a\xda\x2c\xdf\x22\xb1\xe2\xd9\x0a\x98\xd0\x59\xc8\xfc\x15\x6f\x53\x92\x26\xb1\x15\x71\x16\xc1\xed\xc1\x12\xc1\xb2\x3e\xa8\xe2\x8f\xa6\x97\xe6\x81\x66\x64\x56\x79\x5f\x55\x84\x7a\xf8\xa6\xe5\x33\x63\x91\xed\x87\x79\x38\x34\xb9\x25\x3b\x0a\x80\x39\x92\xef\x52\x7c\x55\x5c\x83\x17\xa6\x24\xae\x17\x0f\x36\x3b\xa9\x09\xcb\x1d\x19\x71\x59\xa6\x4e\x13\xba\x46\x75\x22\x88\x92\xcc\x92\xd7\x29\x39\x06\xfa\xb4\x63\xa8\x75\x67\xcf\x9e\xb6\x77\x41\xf7\x28\x72\x94\xb4\x88\xec\xae\xd2\xee\x22\xae\xb9\xa6\xf4\xa4\x39\x79\xee\x56\x51\x69\xd1\x60\xe0\xef\x02\xc9\xca\x37\x3a\x2d\x44\xcb\x96\xbf\x4a\x73\xab\x5f\xf1\x32\x58\x61\x30\xa0\x29\x5d\x5a\x92\x43\x01\x32\x5d\xc0\xc5\xc2\x71\x40\x54\x73\x77\x7a\x2b\x2f\x36\xf3\x24\x37\xd1\x8c\xb2\xe9\x57\x94\xf3\xb7\x87\xbe\x09\x4e\xf7\xdc\xc4\x01\x32\x3c\xa9\xac\x6b\x89\x45\xc3\x2a\x5f\x4f\xc4\x9a\x9a\x4e\x9c\xa4\xc3\xf2\x38\x3c\x34\xcf\x1b\xee\x2d\x5e\x35\xb0\xfa\x68\xd9\x12\x2e\x80\x69\x5b\x41\x0d\x3c\xfd\xd4\x8a\xad\x90\x7e\x71\x9f\xad\xbe\xa4\x95\xfa\xc5\x8d\xdb\xa5\xc0\x66\x1f\x6a\x61\xab\xbd\x13\xfc\x3a\x1c\x36\x64\xe0\xd0\xd1\x76\x5b\x91\xc9\x6f\x27\x95\x29\x1c\x5e\x57\x5b\xbe\x63\xe2\x1e\xa6\x40\x4e\x35\xc7\x1d\x15\x5b\x44\x59\xa2\x3a\x43\x3f\xc8\x37\x8a\x66\xd1\x1e\xc9\x6d\x1a\x26\x29\x10\x73\xa2\xc9\x5c\x3e\x82\x50\xd1\x3b\xb8\x6c\x14\x0e\xe1\x2f\xc1\x1a\xa1\xb5\x47\x86\xa9\xe1\xf8\xff\x2f\xd5\xb2\xd9\x95\x8f\x43\xfb\xc3\x21\xdf\x1c\xd6\xf6\x8a\x2a\x5b\x76\x93\x20\x4f\x52\x96\x76\x97\xfe\x5e\xfa\x1c\x5e\xf6\x5b\x2d\x05\x12\x3a\xd1\x52\x08\x9b\x6f\x8d\x9f\xf0\x59\xf3\x5f\xfc\x85\x86\xaa\x53\x5d\xd5\xb5\x29\x02\xba\xba\x18\xb3\xc8\x2c\x89\x8e\x94\x63\x2b\x2e\x6e\xf9\x5a\x22\x5d\xa2\x5a\x31\x42\xdb\x8f\xb8\x84\x20\xa5\x5d\xe5\x24\xde\xd4\x80\x0d\x6b\x62\x24\xde\xb1\xc6\x1f\x2a\xea\x9b\x2b\x1a\x31\xa0\xca\xf6\xff\xe0\x8b\x2b\xb3\xca\x54\x63\x91\x63\x7d\xdc\xa1\x8f\xc0\x1d\x7a\x95\x70\xfe\x38\xbe\x3f\xae\xe5\x04\x0e\x6c\x9c\x97\x31\x8a\x16\x8b\xb8\x8c\x81\x12\x7e\x3c\x55\xf0\xb4\x59\xd8\x8f\xe7\x3c\xe0\x8d\x13\x58\x22\x65\xdf\x70\xe4\xa0\xd7\x95\xb6\xe7\x1b\xd5\x3e\x02\xc5\x92\x36\xec\xd8\x74\x87\x5f\x16\x7b\xdb\xaa\x12\x8a\xac\x3e\xf2\x58\xac\xc9\x50\x69\xf1\x40\xc9\x85\x51\x30\x30\xd9\x7f\xa5\xce\x88\x97\x8a\x68\x83\xbe\x1a\xa9\x70\x56\x93\x64\x02\xc5\x96\xe2\xc4\xb9\xae\xdb\xad\x4f\xe3\x87\xf8\x06\x09\x6d\xfe\x82\x3a\xc3\xd3\x4f\xcd\x90\x0b\x58\x4e\xe0\xd5\x49\xf6\x68\x72\xc2\x5e\x52\xc4\xdd\x27\x54\x33\x0b\x03\x2d\x24\xf3\x56\x5a\x5b\xd7\x9c\xe4\x34\x6a\xd8\xd3\x77\x14\x90\x2b\xf3\x07\x9c\x98\x3d\xd9\x4a\xbe\x69\x79\xb0\xd1\x31\xad\x44\x7d\xbf\xe5\xc9\x7e\xcf\xb7\x7c\x5d\xe0\x0f\xc6\x2a\x53\xff\xa6\x73\x38\x56\xad\x1d\x65\x04\xd9\x52\x91\xb2\x68\xec\x3f\xd6\xf6\x14\x6b\xdc\x14\x87\x3c\xc9\x1d\x2d\xd2\x6f\x22\xd6\xf0\xe4\x5a\x01\x5e\x40\x0a\x07\x1a\x1c\x19\x87\x88\x53\x55\x87\xf3\x7e\xd7\xe1\xac\x0a\x4c\xc1\x60\x98\x24\x2f\x4b\x11\x13\x7b\xf2\x3b\xb4\x41\xf8\xba\x06\x39\x72\xa0\x19\x27\xcf\x91\x13\x8b\x2a\x05\x6a\x6a\x7c\x5d\x97\x5e\xe9\xd9\x60\x35\xb2\x59\xa6\x1a\xdf\xaf\xab\xc6\xf7\xeb\x5e\x96\x66\x94\xe4\xb9\x30\x6c\x88\x8e\xa5\xb2\xea\x3a\x1e\x1a\x26\x5d\x1b\x65\x73\x8a\x7e\x94\xc5\x2d\x38\x20\x51\xb0\xb0\x3b\xaa\x5b\xf0\x94\x2a\xe0\xec\x68\x6b\x39\x14\x6a\xce\xdc\xa1\x9a\xa5\xb7\x4d\x14\x87\xd0\x36\x04\xc8\x30\x21\xbc\x2f\xf9\x86\xbc\x0e\x24\x99\x1b\x14\x1f\xf1\x75\x7b\xaa\x03\x74\xa1\x99\xdb\x58\xa6\x06\x8b\x08\x20\x01\xbe\x76\x4d\xa9\x59\x30\x48\x22\x93\x66\x83\x10\x2d\x11\xcc\xb0\xa1\x5a\x36\x99\x65\x40\x54\xe5\xe5\xe0\x05\x9b\xa3\x24\x7f\x36\x49\x97\x76\xf3\xaa\xda\xb8\x99\x35\x39\x2d\x42\x21\x2b\xf0\x6d\x56\xf7\xc7\xbe\x2f\x0b\xe7\x9e\x70\x18\x78\x00\x10\xc1\xae\x49\x2b\x10\x29\xf6\x93\x58\x59\x78\xa6\x77\x68\x52\x91\xdd\xd8\x86\xaa\x99\x2a\x5d\x4b\x4f\xcf\x64\xec\xe1\xd4\x67\xc6\x75\x05\x9a\xfd\xcf\x1f\x98\xf3\x09\x29\xf6\xe4\x24\x87\x58\xfe\x04\x50\x5b\x67\xc9\xb3\xe6\x7f\xd7\x79\x91\x2b\xaa\x7b\xa2\x9f\x86\xb1\x5d\xcb\x56\x11\xaa\x4b\xe6\x52\x15\xee\x5e\x53\x6b\xca\x0e\x07\x80\x26\xcc\x3b\xfe\x0b\x32\x2a\x7c\xa3\xce\x9f\xdc\xc6\x59\x98\xc4\x80\x6e\xa0\x20\x73\x4c\x75\x07\x4d\x37\x50\x2c\x1e\x6c\xa6\xa6\x08\xa8\x07\xc0\x45\x9b\x00\x37\x4b\xcd\xd5\x2f\xc6\xa8\xe8\x74\x92\x60\xb5\xa1\xfa\xeb\xce\xa8\x7a\xf7\x99\xda\xa3\xa6\x5c\x2c\x23\xf1\x82\xe0\xf7\x72\x9d\x9e\x6f\x1c\xa8\x93\xb4\xd6\xd2\x2a\xd0\xb5\x7c\x28\x38\x8e\xd0\xce\xc3\xbf\xcf\x42\x06\x1e\x71\xfd\xe9\x4a\x21\x37\x29\x50\x94\xc6\xce\xbc\xa3\xfc\xad\x3b\x15\x5c\xf9\x70\x48\x82\xe2\xca\xdf\xc1\x62\x70\x90\x23\x97\xce\x7e\xa8\x33\x2f\xaf\x4c\x19\x9e\x95\x79\xa2\x36\x9f\xf5\xad\x5e\x77\x60\x1b\x98\x06\x98\x5e\x41\x44\xc0\xca\x2d\x89\x98\x6b\x30\xe5\xfb\x2f\x2c\x70\x65\x20\xcc\x64\xb8\xb0\xc7\x59\x19\x98\x6f\xea\x32\xab\x50\x67\xe2\xf0\x52\x10\xc9\x5a\xa5\xda\xe5\xa6\xed\x5a\x88\x78\x19\xce\x11\xbc\x7c\xbe\x9e\x3a\xeb\x96\x96\x9a\x69\x32\x1c\x55\x90\x54\x47\x55\xdd\xf3\x68\x65\xe4\x03\xdb\xfd\x19\x5a\x96\xf0\x5e\x77\xb5\xe1\x5c\xc0\xd6\x7d\x80\x41\x04\x72\xf2\x3d\x0c\x35\xce\xb1\x4d\x1a\x20\xcc\xc1\xb3\x93\x72\xab\xe3\xfa\x38\xb1\xfe\x88\x22\x6e\xe3\x57\x0f\xb0\x29\x3f\xab\xfa\x26\x98\x80\x17\x23\x7d\x9f\xbc\x1e\x8c\xf4\x35\x6c\x4e\xd9\xcd\xe5\x23\x13\xd3\xc2\xb7\x9f\x41\xd2\x1d\xa7\xe3\x1e\x74\x94\x60\xa1\x9f\x6e\x55\x01\xac\x4e\xd1\x84\x5b\x33\x61\xa7\x67\x27\x4a\xd8\xfd\x96\xd6\x8b\x67\xac\x16\xec\xd4\x55\xaf\x22\xf4\x3f\x3e\xdb\xa6\x23\x9c\x1f\x52\xc1\x5b\xec\x70\x34\x30\x19\xc9\xd3\xd0\xf7\x60\x39\x43\x0c\x87\xaf\xa7\x8a\xd9\xa4\x4a\x30\x08\xfb\x10\x9e\xe1\xa6\xc7\x96\x6e\x80\xac\xd1\x4c\x36\x23\x0e\x9c\x45\xd0\xa6\xfc\x7b\x10\xb4\xdd\x53\x5d\xb4\x27\x14\x5e\x25\x32\x71\x57\xd0\x7e\xf0\xed\x8e\x8f\x7d\x02\xfe\x78\xeb\x31\xc9\x99\x87\xfd\xb9\x0a\xbd\x80\xe7\x79\xf8\x36\xc7\x4b\x30\x0e\xcc\x06\x8f\x4a\x30\xf6\x35\xea\x9a\x4f\x4f\x9d\x47\x87\xe6\x9b\xa6\x17\x25\x06\x69\x5b\x7c\x31\x34\x56\x90\xaa\x7d\x40\x4b\x50\x52\x22\xcf\xa8\x50\x7f\x38\xb2\x79\x98\x27\xe9\x8c\x92\x30\x78\xa8\xa4\x34\xb7\x6b\xd1\xc7\x0f\x5c\xe5\x35\xb5\x2f\x81\x34\xd1\xfb\x9e\xdb\x27\x0a\xb5\x3c\x0b\xe5\x1b\xce\x2f\xba\xa2\x4b\x40\x72\x26\xe8\x46\xc4\x53\x3e\x40\x29\xba\x72\xba\xd0\xbc\x2f\x7e\xba\xad\x72\x2f\xef\x8c\x3d\x9e\xf9\xd3\x50\x62\xc4\xd9\x0c\xcc\x26\xef\x0b\x05\x5b\x9d\x2e\x93\x49\xe2\x36\xeb\xd9\x19\x2d\x5e\x72\x45\x65\xef\x4f\xeb\x82\xe6\x83\x9a\x0c\xda\x97\x9a\x9f\x5d\xdc\xf7\xa5\x7d\x07\x0f\x20\x8a\x86\x07\x7e\x56\x61\x45\x2f\xd2\x96\x82\xcb\x75\xdf\x65\x1a\x93\x20\x28\x46\x8e\x30\x17\x50\x18\xb4\xe5\xf0\xb5\xea\x08\xe8\x85\xfd\x22\xb5\xbb\xcb\x89\x44\x02\xfd\x4d\xc5\x21\xf7\x2d\x80\xfc\x44\x96\xbb\xb1\xaf\xf4\x09\x54\x8a\xeb\x86\xc2\x35\xcf\x51\xda\x82\x4f\xf7\x2d\xf8\x33\xdf\x16\x76\x51\x9d\x56\xd9\xba\x2f\x44\xe3\xd8\x60\x7f\x93\x6f\x34\x73\x0d\xa5\xde\x67\x2b\x29\x22\x05\x50\xab\xe8\x52\x23\xb3\xc1\xd7\x3a\x89\x9b\xe7\xa9\x21\xba\xc1\xac\xd1\x58\x58\xe0\x2c\x06\x17\x95\xf9\x46\xf5\x9c\x8f\x4c\x46\xbc\x3a\x9e\x91\x11\x98\x14\x41\xfa\x4c\x1f\xa5\x07\x9a\x36\xce\x3c\xf5\x88\x2b\x65\xf9\x7e\xe5\x69\x5c\xe3\xf2\x72\x73\x3d\xec\xda\x98\x3f\x83\x19\x66\x37\x91\x6f\xea\x14\xb0\x06\x36\x1a\xcd\x78\x41\xd9\x87\x4a\x2e\x86\xc1\x36\xf2\x83\x1e\x43\x64\x8f\xd8\xe1\x88\x5f\xdf\x35\x34\xf2\xe4\xf0\x4d\x5d\xde\xea\xa5\x64\xe0\xfa\xfc\xe4\x54\x51\x94\x77\x47\xeb\x3e\x33\x8a\x4c\xcc\x09\x3d\x91\xaf\x57\x95\x73\xe4\x43\x04\xf8\x57\x43\x45\x9e\x45\xac\x21\x8f\x53\x00\xde\x0e\x5f\x6b\x36\x89\xf5\x30\x46\x3e\x5e\x84\x2e\xe9\x47\x30\x95\xe0\x3e\x57\xfc\x42\x2f\xca\x7f\x28\x58\x3a\xe9\x81\xcf\xfa\xce\xb6\xd3\xad\x4a\xfa\xd4\xb3\x0a\x9c\xc6\x71\x25\x49\x56\xd9\x68\x61\x0c\xd9\x28\x98\x33\x27\x52\xec\x8c\xd4\x6c\x5b\x55\x02\x6e\x4e\x1d\xdf\xfb\x96\x51\xd2\x6c\xa8\x50\xf7\x72\xab\x5c\x9b\x12\xb9\xab\x7d\x1a\x25\x69\x98\x60\x47\x3b\x06\xdf\xf2\xcb\x85\xc1\xb7\xa6\x4e\x6f\x82\x20\x49\xbb\xf2\x78\xb0\x8e\xb7\x2a\x34\x18\xf4\x0d\x52\x99\xad\x31\xf3\xa9\xf1\xbe\x8e\x42\xaa\x2e\xba\x62\x5b\x4d\x87\x65\x6e\x62\x91\x1a\x72\x9c\x38\x2e\x78\xbd\xa2\xd0\x18\x83\x64\xdd\x46\x11\xaa\xcd\x38\xf8\xe0\xac\xf2\x75\x5d\x44\x98\xac\xd9\x74\x60\x4d\x57\xf5\xe0\x7f\x48\x2f\xc4\xd7\x75\x20\xa2\xd5\xb0\xcb\x8f\x53\xe7\x11\x7b\x97\x33\x4f\x4d\x9c\x85\x48\xb7\x39\xa8\xfd\x3e\x0f\xb5\xf7\x95\x56\xea\x60\x21\x93\x29\x02\x83\x3e\xa0\x6f\x4c\x54\xdf\xc7\x19\xe0\x21\xdd\x09\xb9\xcf\x93\x4b\xa1\x6f\x89\xff\x47\x71\x26\xfe\x44\x77\x84\x9c\xa1\x77\x43\x60\xba\xa3\x5d\xe3\x8f\xae\x85\x76\xdd\x52\xb8\x47\x71\x35\x8e\xdc\x1f\x8d\xfd\xf1\xfb\xa3\x29\x6f\xf4\x57\x5e\x68\x66\xb9\x49\xbb\x09\x04\x64\x58\x1d\x40\xe9\x7c\x5d\x70\xb9\xc2\x20\x09\xe3\xac\xd2\x5d\xab\xb8\xb5\xcf\xab\x83\xbd\x6b\x23\x02\xf5\x33\xde\x14\x87\xcc\x0f\x14\xd1\xd3\x0f\x7c\xff\x6c\x18\x45\xa6\x2f\x67\xa2\x63\x14\x76\x22\x7d\xef\xc0\xb8\x30\x5e\xb8\xb5\x55\x67\xb8\x5c\xd5\x45\x3e\x48\xd2\xf0\x65\xcf\x95\x8e\x4a\xd1\x49\xa5\xc1\x34\xad\xbd\xbe\x7f\x65\x7f\x33\x48\x40\xd8\xff\xa2\xa3\x2f\xa2\xb9\xe2\x1b\x97\x70\x31\x9d\x22\xb3\x73\xe5\x80\xb8\xa8\xc0\xf5\xda\x3e\xc1\x4e\x73\x85\x61\xd8\xb5\xd5\xba\x88\xfc\xb2\x22\xb0\x33\x45\x37\xb4\x71\x60\x77\x93\x97\x89\xe0\x91\x5d\x0f\x56\x19\x82\xff\x2a\xe4\x1a\x8d\x2d\x0a\x51\x88\x10\xae\x22\xb5\x84\x2c\x32\xbb\x31\xc0\xd0\x5c\x22\x3b\x25\xa4\x29\xb4\x9b\xf8\x3f\xea\x91\x63\xc3\x4e\xb8\x66\x22\x1b\xb3\x04\x36\xac\xe2\x07\x63\x9f\xd8\xff\x40\xc7\xed\x36\x0c\x06\x33\x5e\x96\x09\x6e\x04\x72\x86\x17\x35\x55\xf5\x3d\xd5\x42\x17\xa6\x49\x0c\x9b\x83\xb7\xbd\xd1\xf2\x14\x6b\x5c\xaa\x60\xf6\xb8\x89\x4f\x9d\xfe\xfc\xaf\x66\x73\x18\x5b\x4e\x80\x61\x6c\x29\xd6\xd8\xff\x74\xdb\xf7\xe3\xc3\x83\x12\x23\xa1\xaa\xde\xb3\x93\xad\xdd\x66\x54\xbf\x1a\x19\x0a\xb9\x4d\xba\x81\x17\x96\x1e\x09\x5f\x9d\xbe\xa4\xda\x94\x4d\x6c\xa2\x84\x1b\x1c\xeb\x48\xf2\xb6\x1a\xc9\xe7\xb8\xc9\x60\x03\x2e\x9a\xcb\xef\x4a\x40\xf3\x3f\xb0\x4a\x8b\x34\xc4\x3e\xe5\x6a\x77\x69\x3f\x8c\xb9\x36\x5a\x97\xa5\x9c\xa6\xc3\x3c\xd0\x8c\x92\x35\xab\x36\x3a\x8b\xc9\xf0\x8d\xaf\xdb\x98\xe1\x88\x52\xd7\x4e\x68\x65\x0f\xfc\x63\x44\x14\x97\x14\xc9\xdd\x8e\x49\x1d\x18\xd7\xc4\x31\x23\x06\x14\xf5\xa5\x6c\xe5\x13\xee\x77\x46\x36\x0e\x42\xe9\x14\x60\x02\x87\x56\x43\x91\x39\x3c\xe6\x46\xf5\xe7\x1f\xc7\xd4\x62\x14\x1b\x94\x29\x10\xcd\x61\xfa\x6e\x55\xbe\x94\x76\xe7\x07\x63\x4d\x60\x39\x56\x95\x8d\xa7\xda\x9a\x9d\xf4\x12\xd2\xa6\xf0\x04\x3f\xa2\x30\x44\xea\x8f\xbe\x01\xfb\x0f\x54\x9d\xf3\xde\x34\xc5\xda\x42\x33\x18\x24\x04\x0d\x3c\x34\xef\x54\x10\x1a\x4e\xbf\xf6\xbc\xca\x19\x0f\x4d\x8a\x56\x36\x49\x7c\x7f\xb7\xa5\x9a\xab\x2f\x69\xad\xf3\xb3\x75\xf4\x83\xeb\x49\x82\xe3\x0b\x51\xc4\xfb\xb4\x37\xf8\x5a\x39\xc7\x81\x49\xbb\xa1\x09\x1a\x7e\x6f\x7f\x97\x5e\x4d\x7e\xd3\x7b\x06\x91\x01\xc7\x9b\x92\x8a\xf1\x6a\xad\xc7\x7c\x50\xd0\xeb\x11\x3c\x6e\x87\xe2\x75\xbb\xef\x31\xcf\x7f\xfc\x9f\x63\x8d\x20\xe6\x63\x7a\x25\x69\xff\xf0\xe1\xeb\x2c\xa4\x8b\x59\x7c\x4d\xe1\x94\x87\x45\x96\x3f\x49\xd9\x05\x9c\x97\x14\xc9\x7d\xc9\xeb\xa1\x1d\x12\x99\xfc\x73\xaa\x1a\xc6\x12\x39\xe2\x0a\x36\x5c\x63\x0b\xeb\xcd\x09\xe4\xad\x3c\x6a\x61\x71\x4f\xb6\x54\xe4\x88\xd2\x3b\x2c\x01\x2a\x93\xb0\xfe\xff\x7e\xac\xf2\xdb\xdf\xa2\x61\x83\x3f\x76\x43\xa7\xe1\xa7\xd1\x48\xa5\x0b\x9f\x9a\x78\x15\x75\x2b\x05\x21\x7c\x91\xe3\xcc\x93\x18\x16\x11\x06\xf4\xa7\xd6\xad\xfa\xee\xd8\x30\x23\xf1\xb2\x19\xcf\x62\x79\x43\xa1\xe8\x2f\x28\xae\x88\x6d\x6d\x2f\x85\x94\x39\x79\x00\xde\xb0\x8a\x86\xf9\x32\x5e\x8d\x85\xf8\xea\x0a\xf6\xb9\x49\xfb\x36\xaf\xaa\x9f\x9d\x1c\x6b\x98\x93\x0f\xab\x06\x21\xe9\x09\x96\x8f\x84\xa3\xee\x23\x15\x3b\x7d\xa4\x9a\xfc\xd3\x94\x79\x97\x10\x99\xdf\x18\xfb\x34\xeb\xee\xb6\x46\x08\x56\x28\x45\x7c\xfb\x18\x38\xb0\x75\x0b\xda\x55\x46\x89\x21\x8e\x3d\xaa\x5b\xee\x8f\xc3\x62\x0a\x3c\xad\xc6\x42\x65\x79\x6a\xb9\x30\xaa\xe5\x91\xa5\x09\x75\xeb\x5c\x2c\x2c\xd0\x54\x44\x49\x56\x55\x78\x7d\x73\xac\x14\x5e\xdf\x74\x76\x2d\x8c\xb3\x51\x28\x8c\xaa\x8c\x42\x51\xbd\x30\xbf\xa6\x9a\x4f\x53\x4b\xc0\xac\xb8\x74\xb2\x1b\xae\x3d\xf5\xac\xea\x62\x99\xe0\x44\x16\x7f\xc1\x9f\xac\x43\xe2\x24\x56\x9e\xb1\xe2\xc4\xb9\xa2\xaa\xa0\x43\x43\x3d\x1f\x8b\xae\xda\xa8\x88\x76\x19\x31\xc5\x10\xbf\xb1\x2f\xa7\xcc\x20\x71\x26\x25\x2a\x5f\xc7\xb6\x47\x6c\x50\xe4\xe1\x9a\xdd\x4d\x8f\x85\x24\xf8\x2b\x5a\x49\xe2\x49\xd8\x01\xc4\xe0\xa7\x69\xb9\x62\xa2\x81\xac\x43\xea\x08\x92\x17\x4a\x50\xec\x45\xb6\x28\xac\x2e\xcc\x37\xda\x18\xde\x9c\xf2\x44\x4b\x63\x98\x86\x9e\xb8\x43\xca\x7b\xde\x9f\x3f\x5d\xa7\x47\x31\x74\x8a\x7b\x8e\x90\xd2\x93\x53\x2a\x6a\x32\x1b\xe7\xa9\x1d\xa5\x36\xb6\x05\xa8\x8d\xa4\x6c\x5e\xc9\x29\xd7\x40\x64\xfa\x49\xd4\xc3\x13\xb9\xe4\xa6\xcb\x72\x5c\x69\xf9\xb2\xda\x4b\xe6\xe5\x97\x29\xfc\x44\xee\xfe\xcf\x69\xac\xa4\x18\x5a\xfe\x20\x22\xe4\x4d\x05\xa1\x3d\xa3\xfc\xc2\x6c\xd5\x8e\xf2\x30\xf8\x9b\x73\x4f\xf8\xf2\x5b\x60\xa2\xa0\x88\x0c\xf6\xae\x87\x6a\x97\x7b\x57\x20\xdc\x7e\x93\xf7\x92\xb8\x2b\x64\x2e\x78\x8a\x0b\xea\x89\x2e\xd4\xb5\x68\x7e\xae\x99\xda\xdc\x84\x1e\xf1\x0a\x5b\x78\x43\x41\xfe\xdf\x6a\x79\xfc\xf2\xf4\x81\xba\xbc\xdc\x5c\xb3\x69\x5f\xb6\x1b\xac\x3d\x57\x15\xf8\xa6\x52\x94\x47\x23\xb6\x2f\x2f\xdd\x51\xa5\xc4\xcb\x74\x78\x30\x0e\xb5\x06\x41\xfa\x22\x55\xea\x1b\x8a\x12\x9a\xa1\x35\x72\x7a\x78\x33\x96\xac\x9b\x19\x4f\x38\x09\x47\x08\x05\xc2\xf3\x9a\xa3\xf9\x81\x82\x27\xa5\x36\xb3\xe9\x9a\xcd\x76\x28\xa9\xc4\x6b\x2a\x0c\x82\x62\x3f\xff\x3b\x76\x02\xbe\xf1\x38\xbe\x91\x6f\xc8\x47\x17\x7e\xde\x3a\x24\x79\x6e\xd3\xc4\x05\xaa\x48\x2e\x03\xa8\xc9\xd7\x2a\x6e\x26\x44\x60\x36\xe7\x63\x83\x4d\xca\x02\x0a\x91\xaf\x6a\x31\xfc\x90\x8d\xac\x53\x17\x59\x5a\xe2\xe1\xbf\xa3\xbd\xb8\x98\xbc\x45\xe7\x92\x5c\x54\x0a\xc2\xaf\x8d\x95\xfa\xe4\x56\x19\xac\x43\xf3\xcd\x43\xf3\xfb\x1b\x8d\x2f\x7e\x8d\xa7\x0d\x8a\x81\x7c\x5d\xc3\x57\xbd\xbf\x39\x2a\x3a\x91\x92\x7f\x66\x06\x0a\x2c\x0c\xa1\xa3\xd0\x35\x8b\x3c\xb7\x3b\x1b\xae\x4b\xea\x0f\x91\xe7\xc3\xcb\x9d\x56\x8a\xcc\x17\x54\x27\xd1\x2d\x6a\xd5\x63\x9d\x01\x6c\x27\x6c\x0a\x6e\xab\x80\x5b\x70\xbb\xae\xcd\x65\x68\x8f\x84\x81\x41\x10\xcb\x02\xf9\xf8\x8c\xa8\xe5\x3f\x1b\x2a\xef\x2c\x59\x33\x19\x49\xbf\x37\x7c\xd7\x0d\xb6\x16\x5f\xab\x0e\xd0\x88\xfa\x2c\x06\x26\x9a\xf5\xf8\xc7\x87\x38\x1a\xe0\x62\xde\x54\x34\x2a\xb7\xd5\xfa\xd2\xba\x57\xbd\xde\xc6\x8c\xb7\x37\xe8\xba\x17\x1a\x27\x8f\x91\x7a\xbb\xae\x31\x8a\x75\x49\x54\x51\xb8\x01\x3b\xef\x62\x2a\xe7\x3e\xde\xaa\x00\x02\x8a\xc8\x3e\xae\x58\x39\x39\x9d\x89\x12\xd9\x3f\x69\xa9\xee\x82\x2b\x34\xec\x78\xb4\x7b\x64\x0a\x05\x98\xec\x7f\xf3\x0a\xea\x31\x0e\x31\xb7\xb4\xb4\x79\x75\xec\x39\xb3\x77\xb7\x95\x5b\x0d\xaa\x32\x1c\xa2\x8d\xa9\x5e\xa6\xaf\x2c\x12\xdf\x45\x14\x85\x7d\x72\x7e\x0f\xb9\x3f\x9d\xf8\xb3\x77\xba\x92\xbe\xbc\x4c\x10\x59\xf1\xaf\xb4\x23\xa7\x6a\x02\x8b\x1c\x8e\x5c\x55\xa8\xe7\x4e\x64\xd7\xa9\xdc\xe1\xd4\xf5\x14\x6f\x68\xf9\x0a\x08\x67\xee\x29\xc7\xbc\x5f\x84\x51\xbe\x31\xab\x70\x28\x90\xdb\x47\xa0\xcf\xb8\x5c\x06\x6c\x2b\xc2\xdc\xd9\xf6\x63\x2e\x11\xd1\x21\xfb\x8e\x10\xe6\xac\x66\x14\x3f\x5b\xd9\x25\x51\xba\x01\x7a\x3d\x21\xe3\x6f\x38\xae\x34\xb0\x58\xa0\xce\xd6\x98\x8a\xf6\x56\xe6\x9b\xbd\x30\x1d\xca\x76\xe4\x33\x08\x21\xba\x1c\x48\x5b\x53\x30\xa4\xd8\x54\x74\x4a\xc7\x27\xcc\x73\x6b\x1b\x4a\xe6\xf2\x8a\xc2\x25\xd7\x22\x6d\x53\x1b\x6c\x04\x91\xe0\x46\xe0\xac\xfc\x10\xcb\x88\x6f\xd4\x7a\x8f\xfb\xf6\x71\x0d\x49\xe7\xce\x43\x38\x90\x0f\x11\x94\x22\xab\xc0\x4a\x4d\xb8\xd9\x4b\xc9\x02\xee\x71\xa7\x11\xc7\x82\x9b\x6d\xfb\xa2\xd6\x87\x9e\x03\xed\x67\x7f\x0e\xcb\x0e\x13\xb8\x7d\xa2\x9a\xcf\x9f\x9a\x28\x99\x94\x0b\x53\x16\xe3\x85\xfd\xcd\xae\xe9\x74\x58\x6a\x78\x3f\x3f\xd8\x69\xfd\x94\xa7\x15\x4e\x2d\xb6\xeb\x41\x32\x74\x6c\x92\x48\x15\x30\x1e\x83\x6f\x14\xa4\x4f\xa0\xdc\x33\x95\xb0\xac\x7c\x03\x84\x4b\x2c\x6f\x20\x16\xb4\xe6\x4c\xc9\xd3\xd0\xc4\xfd\xc8\x2a\xb5\x9a\x6f\xe8\xd4\xfd\x37\x94\x83\x1f\xf6\x63\x1e\x6a\xc7\x4a\xeb\x0e\xe0\xbb\xf8\x25\x64\x07\xcf\x8c\x15\x41\xd3\x35\x3c\x3c\x00\x97\x90\xf5\x81\xdd\xbd\xd5\xf2\x60\xb7\xdd\x6d\x1f\x92\x5f\xa3\xad\xc2\x5a\x2d\xd5\x18\x4f\x49\xad\x6d\x9b\x62\x6c\xdd\xff\xfc\x01\xe6\x16\x85\x4a\x12\x5c\xd5\x59\xa8\x24\xf1\xcd\xa4\x0e\xb3\xde\x4f\x52\xcb\xc5\x0b\x78\xae\xef\x68\xb2\xf0\x77\x2a\xbb\xa8\xdb\xdf\x50\xb4\x8f\xcc\x66\xc8\x37\x93\x9a\xf4\x7a\x10\xe6\xe1\xcb\x36\x66\x6d\xeb\x4a\x42\x4a\xd0\x84\xf8\x65\x61\x93\xf3\xbe\xa9\x59\x33\x61\x64\x3a\x61\xc4\xf4\x9c\x52\xa5\x7b\xa0\xaa\x74\x0f\x5a\x0a\x0a\xc9\xc8\x7b\x54\x21\x67\x95\x56\xf7\xec\xc4\xf3\xe6\x75\x62\xa4\x93\x1c\xe3\x70\xf9\x28\x9f\xa4\xe1\x41\xea\x11\xd6\x2a\x15\xf1\xf3\x68\xf2\x91\xae\x2b\x25\xcb\x68\x63\xbb\x43\xc5\xfd\xdf\x41\xc6\x45\x1a\x1c\x7c\xa1\xe5\x35\x2c\x7d\xa6\x31\x19\xab\x06\x62\xa8\x13\x62\xd4\xcf\xb9\x46\xcb\x20\x89\x73\x33\x24\x06\xa2\xae\x4e\xce\xf1\xda\xe6\x1b\x55\xf5\x46\x03\x67\x77\xc6\xb3\x3e\xdc\xc0\x81\xe4\xa8\x59\x56\xe6\x39\x53\xf1\xc3\x3a\xb0\xcb\x81\xa6\x09\xd2\xa4\x4a\xb6\xfb\x9e\x6a\x38\x42\x46\x01\x0e\xf7\x34\x68\x78\x61\xa1\xb4\x5f\x66\x84\xba\xa0\x6b\x1c\x7d\xb7\xa5\x42\xb2\x77\x55\xb0\x05\x2e\x3e\x1b\xe7\x33\x2a\x17\x72\x47\xa9\xfd\x6c\x6f\xfb\x3a\xc6\x69\xe5\xe1\xad\xdb\xb0\x3f\xc8\x67\xcb\xf3\xf1\x22\xba\x65\x70\x66\xbc\x4b\x44\xb5\x17\x75\xbe\xf8\x5d\xe5\xe9\x77\x8a\x6e\xdf\xe6\xd4\x9b\x80\x9c\x76\x03\x49\x18\x14\x65\x1f\x62\xbf\x21\xb4\x38\xad\xf4\x53\x95\x5c\xc8\x4f\x3e\xd5\x56\x79\xdb\xc7\x60\x55\x1d\x73\xf3\xca\x7c\x45\xb7\x41\xd4\x6d\x68\x02\xb8\x7a\xe1\x92\xe8\x51\x11\xf7\xb7\xe2\x52\x5c\x48\x74\xd4\x95\x03\x46\xa9\x1d\x86\xc5\x70\xae\xb1\xb0\x50\xa5\x02\x41\xb4\x75\x07\x5f\xae\x15\x6d\x69\x14\x97\x7f\x46\xa9\x9f\xcf\x4c\xa6\xfc\xd2\x17\x9b\x0b\x8b\xbb\xe9\x4d\xb0\x30\x1e\x54\x0a\xc4\xf4\x24\x22\x0a\xaa\xfa\x74\x8f\x11\xa2\x85\x55\xfd\xa8\xb5\xd2\x35\xe7\xfb\xb4\xd1\x9b\x0a\x79\x82\xca\x24\xf2\xbc\xd3\x2d\x63\x87\xe6\x9b\xdd\x24\x19\x72\x2a\x55\x3a\xff\x14\xcc\x4a\xf3\x8f\x74\x93\xa2\x1f\x99\x4c\x29\x65\x5f\xa9\x28\x41\xb6\x76\x4b\x76\xe2\x39\x55\xfc\x9a\x6d\x2b\x02\xea\xd9\x89\x56\xcd\x49\x37\x22\x13\x77\x67\x75\xe9\x8e\xe6\x59\x54\x73\xca\x90\x81\xaf\x2b\x25\xbd\xa9\xe8\x84\xe2\xc1\xcc\x06\x49\x8c\x17\x41\xd6\xf5\x81\xc2\xec\x3d\xa8\x6d\xcd\x4b\x93\x22\x17\x92\x27\xf8\x8b\x6f\xd3\x67\xf8\x5a\xa9\x16\x65\x45\x50\x3a\xa7\xbd\x22\x8a\x36\xe6\x94\x6e\x08\xc3\x90\x58\x76\x45\xb7\x4a\x5d\xaa\xe6\x86\xcb\x15\x0f\xd3\x74\x7b\x0a\xb5\x25\x40\x8c\x97\xc2\xe1\x10\xf6\xbd\xf6\x20\x50\x8a\x90\x61\x17\x56\x11\xff\x75\xaa\xa5\xfe\xee\xd4\xd6\x10\xe8\x57\x5e\x28\xdf\x75\x47\xe3\x57\x5e\xa8\xe8\xc8\x02\x3e\xf1\x3b\xf8\x28\x32\x07\x33\x5c\x39\x12\xef\x45\xeb\x84\x34\x14\x97\xeb\x13\x9e\x1a\x40\x94\x31\x36\x8f\xaa\x48\xf0\x76\x4b\x89\x74\x5f\x85\x75\xe0\x1b\xfa\x69\xfe\x2b\xda\x38\x9b\x47\x6b\x08\x88\x9a\x26\x0a\x6d\x69\x72\xb9\x42\x5f\x29\x9e\x3b\x21\x48\x27\xcf\xf6\xfb\x8a\x57\x26\x2f\xd2\xd8\xa4\x49\x11\x77\xe7\x68\x3f\x89\x08\x4e\xc3\x29\xfe\x9e\x53\x12\x31\xc0\x88\xc2\xc8\x9e\xa1\xe4\x2e\xf0\x97\xf7\x6b\x6b\xd5\xe9\xaa\x89\x33\x83\xae\x5c\x79\x0a\x1a\x3e\xe9\x08\xaf\x11\x53\x29\xb2\x22\xe3\x16\x10\x66\x29\xa4\x47\xc1\x4c\x20\x8a\xc2\xaa\xfe\x50\x85\x62\xa9\xed\x53\xee\x24\x63\xf2\x6f\x6a\x5a\xbd\xaa\xe8\x67\xfb\x49\xbe\x5b\xcf\xd5\x4d\x9a\x1f\xbc\xc7\x1d\x74\x36\x33\xf1\x0c\xe6\x97\xcd\x6b\xcb\x57\xc9\xee\x01\x37\x83\x6a\xc7\x6d\xc5\xce\x08\xbe\x22\x29\xf1\xa8\xe4\xdd\x03\xd5\x3d\x91\x86\x4e\x0e\xf5\x45\x27\x31\xe6\x9b\xda\xaf\xe1\xb8\x91\x4a\xd3\x56\x38\xd9\xc2\x62\xb3\x53\x6c\x68\x48\xc1\x9b\x4a\xc3\xe2\xcd\xba\x92\x44\x6c\x8f\xa0\x5a\xe4\x18\x91\x57\xe6\x1d\xb2\xaa\x7c\x60\xd8\xca\xdb\xbe\x9b\x7d\x68\x85\xe0\x1c\x8f\x01\xba\x72\xbe\x9e\x78\x88\x46\x14\x66\x79\x46\x84\x5a\x1a\xca\x81\xb0\x6b\x3f\x9c\x05\x59\x43\xb4\xaa\xa5\xae\xa0\x0e\xa1\x0b\xaa\x81\xf8\xa1\x02\xe8\xe2\xb0\xe3\x71\x12\xd5\xf5\xef\x29\x07\xf9\x1e\x96\x0f\x42\xea\x87\x35\x3a\x90\x99\x4d\x6d\x0c\x12\x36\x29\xde\xf8\x52\x01\x8a\x1e\x9f\xb4\x60\xbf\xd0\x0c\xe3\x6e\x18\x78\xbf\x05\x23\xc4\xa4\x8f\x7c\xa3\x90\x84\x24\xde\x4b\x14\x6a\xf8\x73\xa9\x7b\xd3\x9f\x8b\x94\xee\x93\x15\x2c\xb6\xe4\x05\x91\xa2\xbd\xab\x2b\x25\x77\xf0\x66\xc8\xd6\xfc\x81\xa2\x0c\x0f\x06\x26\x35\x41\x6e\x53\x22\x89\x28\x3f\xe0\x18\xca\x3c\x01\xcf\x39\xe5\x31\x8c\x6c\x32\x8a\xec\x7f\xa2\xec\x4f\x63\xe4\x48\xd3\x3b\x31\x9c\xcc\xaa\xe2\xd1\xec\x83\x7d\xcd\x48\x7f\xfd\xb5\x4a\x69\x05\xf7\x2e\x30\x3b\x6b\xad\xd7\xf0\x5a\x1f\x1c\x39\xc5\x9a\xe9\x21\xa1\xa9\xa6\x49\x0e\x29\x0d\x16\x30\xdf\x8c\x7c\xab\x32\xba\x22\x23\x72\x22\x22\xab\x58\xfd\x69\x61\x2c\x04\xc3\xd6\x07\x61\xd7\xb0\x16\xb2\x65\x48\xda\xb5\xb4\x86\xac\x95\x46\x33\xba\x2d\x45\xce\xad\xb9\xbb\xd9\xc7\xf4\xdd\x6c\xde\xf7\x7d\x1f\x45\x23\x9e\xdf\xf3\xbc\xef\x93\x15\xd1\x82\xfd\x2d\x82\xac\xcc\x8c\xe3\x3d\x9e\xe3\x77\x3c\x5a\xbd\x20\xb4\xd6\xde\xd2\xfb\xe1\x5b\x81\xd7\xe9\xb8\xa4\xe4\x5b\x67\xc6\x1a\x79\x52\xaa\x5a\xec\x07\x5a\xb9\xe2\x16\x16\x27\x4c\x22\xee\x28\x21\xc9\x82\xf8\x81\xf6\x02\x77\xf8\x8f\xb9\x7d\xce\x70\x46\x46\xdb\x0a\xc1\x74\xa6\x94\x07\x21\x2a\x59\x98\x5e\xcc\xdf\x41\x05\x8e\xf8\xad\x4e\x9f\x7d\x30\x9c\x56\x60\xf7\xb3\x6a\x99\x82\xbb\xb6\xd4\xb8\x55\xee\xf8\x70\x22\x23\x58\xb5\xf9\x26\xdf\x56\xda\xd4\xd1\x3e\x6e\xa5\xef\xcc\x6d\xf4\x3c\xec\x27\x9e\x44\xcc\x84\xb2\xcc\x9d\xb2\xf5\xf9\xcf\x72\x9c\x7c\xbf\xb6\x80\xed\x9f\x9d\xa7\xf2\x22\xc8\x6e\x5c\x87\x0c\x74\x4d\xd2\xaf\x09\x09\x29\x75\x6a\xe6\xe6\x09\x0d\x1e\x3c\xa1\xaa\xa9\x61\x94\x85\xa3\x08\x5f\x3a\xe1\x3e\xc4\x27\x4d\x9a\x8c\xa3\x64\xc5\xc6\x55\x72\x4a\x9f\x12\x34\xbc\xa7\x50\x5d\x52\x48\xa4\xcc\x9a\x38\x5e\xdd\x5c\x85\x4a\xe8\x5d\xfd\x5d\xb0\xbe\x39\x8f\x99\xfb\x80\x04\xf6\x45\xff\xa6\xfa\x62\xc9\x91\xaa\x37\xce\x9f\x2d\x95\x89\xfe\x79\x95\xfe\x92\xe9\x21\xa9\x34\x78\x71\x42\x8a\xdb\x44\xa8\x70\x9b\x67\x74\xd8\xc7\xaa\x8b\x61\xc8\x62\xa0\xed\x2c\xf0\x6a\xb1\xc4\xa2\x4c\x03\xb4\xf3\x34\x50\xc6\xc8\xaa\x4f\xd2\xab\xe4\x3f\xa2\xdf\x40\xc7\xe2\x26\xc6\xaf\xf8\x6a\xd1\x02\xc5\x27\x08\x27\x85\x76\xa3\x90\xe5\x88\x4b\xf8\x7b\x69\x34\x63\xfe\x1e\x77\x4c\x8b\xcc\x2e\xa4\xe1\x88\xed\xbc\xe6\x34\x0f\x5c\xa6\xd7\x9b\x74\x0d\xd8\xf6\xea\x4d\xca\x1d\x3b\xda\x3d\x9b\x0b\xc2\x4a\x4c\xfe\x74\x34\xef\xc5\x85\x7a\x76\xc1\x66\x19\x64\xe7\xf6\x72\x26\x08\xc4\x3d\xf6\xac\xf3\x9a\x26\x7b\xb4\x41\x6a\xb2\xbd\xd2\x37\x24\x1f\xa0\xc2\x48\x00\x44\xf9\xb8\x96\x64\xfd\x62\x15\xd2\xe3\x57\x5b\xaa\x55\x7b\x5c\xb9\xab\x1c\xaf\xcd\x84\xf9\xf9\x76\xfe\xc5\x91\x30\x93\x45\x72\xa0\xa5\xbc\x1f\xea\x72\x0a\x7b\xab\xec\x31\x8f\x7a\xd6\xfd\x92\x12\xae\x9e\x73\x16\x33\x0d\xe0\xc9\xd8\xac\x40\x9b\x5d\x9c\x61\x5b\x4a\x44\xbc\xe5\xf4\x5f\xcf\xaa\x07\x99\xd9\x2a\xf4\xe1\x76\x0b\x92\x82\x07\x4a\xbd\xeb\x81\xb2\x85\x28\xb2\x74\xd4\x8d\x6d\x6f\x33\x96\x6f\xa1\xa6\xd2\xb2\xca\xf5\x75\x45\xf6\x5d\x53\xc2\x1e\xc4\x1b\xfa\x82\x93\xce\xa4\x77\xc6\x27\x81\x52\x40\xbb\xd5\x20\xd9\x4f\x56\x96\x99\x30\xa0\xb8\x08\x1b\x28\x09\xb0\x3b\x0e\x78\x52\x3d\xe7\xc2\x16\x3c\x7e\xd8\x31\x35\xf0\xe0\xed\x13\x8d\x6d\xf1\x7e\x1a\xf7\xd0\x86\x14\x20\x4c\x35\xb7\x5d\xfc\xba\x7f\x96\x27\x16\x07\x27\xd8\x1a\xc0\x98\xc4\x8d\x5e\x76\x9c\xd6\xc4\x9a\xec\x11\x27\xa1\xfa\x2f\xff\x11\xaa\x6f\xc8\xe6\x2f\x81\x37\x33\x41\x87\x17\xff\xdd\x2a\xf5\x3d\x4e\x53\xca\x4d\xee\xea\xa1\xc8\x07\xab\x6b\xd0\xac\x54\xfa\x9b\x95\x27\xc7\x2a\x59\x6a\xa8\x10\xb5\xf3\x25\x87\x71\xc3\x0e\xc8\xbe\x4b\x7c\x32\x51\x0b\xcf\x6c\x36\xa3\xf4\x5e\x3f\x50\xf1\xf6\x61\xc8\x40\xf2\x7f\x04\x0e\x56\xf1\x5f\x5f\xd6\x54\x9a\x53\x0a\x59\x15\xf6\x4d\xca\x12\x61\x2e\x5c\x56\x61\xb4\xc7\xed\xc6\x51\x11\x31\xb8\x4e\x95\x48\x4e\xe8\x12\xc9\x09\x6d\x0d\x6d\x97\xa3\x3c\x22\xee\x4c\xb5\x46\xb9\x5a\x5b\xf5\x5c\x31\xd1\xdf\xc0\x52\xc6\x27\x81\xaa\xc8\x7d\xa4\xed\x04\x64\x15\x5c\xa7\x16\x63\x0a\xde\x74\x7c\xdc\xd0\x98\xdb\xdd\x2e\xb2\x68\xa0\x70\x44\x97\x14\x22\xb0\x2e\x7b\x73\xf0\x60\xbb\x48\x97\x56\x47\x2d\xcf\xd4\xfa\xbe\x16\xdb\xfe\xbe\x6a\xbd\x2e\x44\x09\xec\xee\x94\x02\xa4\xd4\xd2\x37\x8e\x3d\xd4\xe7\x81\x86\x04\xff\x40\x99\xcd\x9d\x50\xea\x5d\xc4\x02\xb5\x00\xe5\x20\x8c\xe4\xde\x1d\x9f\xd4\x42\xc7\xdd\x2f\xec\x25\x1e\x35\x96\x55\xc6\x80\x96\x8a\x3b\x1d\xf8\x86\xc2\xab\xb5\xa5\xcb\xcb\xb0\x2d\x4b\xd3\x53\x52\x62\xfa\x55\xb1\xd2\xa1\x5b\x92\xf6\x8e\xaf\xd4\xda\xc2\x3e\x46\xef\x4f\xa1\x9f\x24\xb4\xbb\xa6\xd7\x09\x20\x62\x68\x8d\xfb\xef\x7f\xb2\xe3\x7d\x3f\x5f\x2b\x7d\x0f\x69\x13\x27\xa5\xd2\xb2\xf4\x84\xf4\x6b\xa5\x4f\x39\xaf\xea\xfe\x1c\x1b\x95\xa0\x90\x33\x35\x56\x16\xbe\x4f\x8c\x95\xea\xf8\xcd\xd2\x33\xf5\xf3\x34\xeb\x4e\xa2\x90\xa7\x95\x72\xcd\xfd\x52\xc1\x6d\xce\xd4\xc1\x1b\x73\xed\x5e\x64\xba\xb6\x88\x42\x9e\xa7\xbc\x77\x4d\xec\x63\x4f\x2b\x2a\xbc\xc0\xdc\xa7\x34\xcc\xbd\xb5\x63\x87\xab\xab\xd2\xe3\xc3\xc8\x39\xa5\x04\x94\x0c\x51\x4c\x68\xa2\x60\x59\x07\x6e\xd1\xcd\xa0\xea\x53\x88\xe5\x8e\x97\x5a\x4e\x2a\x59\xb6\xc4\xed\xaa\xa6\x1b\x96\x0d\xd8\x9b\xf3\x71\x13\xc2\xbd\x6b\x72\x8b\xfc\xce\xf5\x4d\x9c\x7d\x35\x54\x7d\x84\x12\xf7\x8c\x6f\x08\xc4\xf1\x28\x2f\x58\x4a\x6a\xff\xac\x23\x52\xf9\x6d\xe8\x4a\xa3\x7b\x57\x1c\x15\x2f\x49\x1d\x86\x35\x99\xe8\xd1\x89\x3e\x93\x1f\x5a\x7d\x33\xd8\x5c\x05\xac\x88\xa5\x1f\x04\x3e\x03\x3a\x5f\x4e\x0c\x2c\x0c\x1a\xf9\x2f\x6f\xd2\x00\xfd\x2d\x61\x00\x4f\xed\xfd\x95\xcf\x39\x9e\x8a\x28\xce\x15\x26\x29\xcc\xc0\xa1\xa2\x04\xf7\x57\xfd\x94\x03\xa8\x3b\x4d\xa5\x0f\xbd\xf6\x62\x3f\xb3\x3d\x07\x65\x47\x02\xfd\x9e\x12\x6b\x67\xb1\x55\xac\x00\x0f\x15\xcc\x26\x37\xb1\xcd\x9f\xa9\x7e\x0a\x63\xf9\x36\xd5\xf8\xd8\x50\x45\x51\x5d\x80\x5c\x44\x44\xc0\x18\x6e\x7a\x0c\x7f\xf4\x64\x47\x11\xbc\xd9\x18\x4e\xc0\x08\x74\x31\x60\x47\xdf\xa6\xc7\x80\x59\xb1\x95\x58\x72\x52\x16\xc4\xc3\x42\x38\x77\x1c\xa3\x08\xcf\xf1\x75\x90\xe3\x9c\x9c\xc7\x0e\x51\xce\xbf\x8b\x28\xd2\x99\x7f\xb8\xfc\xe8\x4e\xa0\x3c\xfd\x8e\x63\x85\xc0\xb5\x6c\xe8\x28\xed\xf1\xf3\x93\x62\x5f\xeb\xa3\xad\x4f\xb4\x07\xa3\x3c\x8c\x27\x39\x8c\xaf\x69\x0e\xe3\x6b\xc1\xfa\x45\xeb\x13\x13\x70\x1a\x5a\xb4\xf0\x5b\xd0\x8c\xc0\x4c\x66\xe1\x23\xe9\x7e\xaf\xff\xdd\x03\x73\xfb\x08\x0c\x9d\xb6\x54\x8a\x74\x61\xa2\x8b\xed\x3b\x1e\x2f\x66\x9f\xa4\x14\x03\x4f\xf4\xa6\x62\x94\x5d\x50\x56\x2e\x6f\xd3\xc3\x41\x7a\x76\x9b\x4a\x4c\xe2\x9c\xaf\xf4\xa8\x1f\x70\x1b\x46\x2a\x0d\x8f\xa9\x40\x84\xd5\x87\x11\xbc\xdc\x0b\x3c\xf7\xfb\x5e\x83\x29\x27\xd1\x0f\x72\x6b\x88\x8d\xbf\x06\x3e\x32\x0a\xed\x17\xb0\xcf\x68\xa0\xa6\x20\x06\x95\x77\xa9\xcd\x06\x28\x86\x68\x77\x1c\x0c\x9f\x29\xd4\xdd\xf1\x9a\xa1\xb6\x8a\x35\x79\x23\x8d\x25\x57\x17\xf1\x92\x5c\xaf\xaa\x35\x8f\xbb\xfb\x51\xb2\xb8\xd9\x43\x3c\xae\x04\xbe\xb3\xce\x6c\x29\x4c\x46\xe6\x5e\x63\xcd\xf8\x31\x95\xad\x50\xa2\xbc\x53\xfa\xf5\xee\x70\xe9\xd9\x01\x0f\x55\x53\x1b\xbe\x89\x33\x7a\x21\xa6\x39\xb1\x36\xa6\xc5\x52\x9c\x37\x68\x98\xe3\x64\x42\x5a\xf5\xbc\x76\x8a\x86\x86\xe0\x94\xaf\x8e\x7f\x40\x17\x83\x27\x32\xad\x24\xc3\x36\x74\xd6\x23\xbb\xf7\xcc\xb6\x33\x4b\x8e\xec\xac\xd2\x59\x5d\x4f\xa3\xd9\x9e\xba\xf4\x61\x66\x56\xb1\x76\x2a\x50\xf1\x5e\x67\xcd\xf3\x84\xb2\xce\x13\x46\xf4\x6e\x7e\x8f\x77\xd5\x3b\xbd\xab\xa2\xb8\x41\x5a\xa4\xd9\x23\x1e\x23\x73\x49\x11\xa2\xff\x9a\x49\x1e\xfc\x3f\x81\xe2\xee\xbc\x1f\x78\x0e\xe9\x5d\xad\x23\x7c\x23\xf0\x9e\x45\xf0\x3b\x74\x4c\x83\x6a\xad\x10\xde\x4e\x75\x31\xa0\x85\x7c\x5d\x33\x0d\x7a\xcb\x69\x68\x42\x50\xd6\x31\x64\xde\x56\x3e\xd1\x6f\x37\x79\xe0\xf7\xd3\x51\x1c\x31\xe4\x45\x74\xbb\x15\x5f\xef\xb8\xf2\x0b\x19\xc6\x66\x75\x85\xfc\xc4\xb8\x7f\x06\xa5\x8e\xd3\x4a\x0b\xe5\xa8\x2e\x4a\xdc\x50\x51\x4b\x3e\xb2\x9b\xe9\x61\x23\x6a\x41\xaf\x18\x91\xfd\xe3\x1d\x7f\xb9\x4f\x63\xb1\x55\x76\xb0\x93\x98\x06\x59\x5f\x55\x96\x7d\xd1\x25\x16\x79\x3f\x1d\x12\x6d\x03\x68\x1d\xa6\xa9\x61\xb1\xbc\xac\xf4\xdb\x79\xad\x64\x67\x07\xe5\x14\x4a\x74\x04\x94\x9c\xd2\x51\xdc\x9b\x6e\x7d\x4e\xd2\x9d\xe9\x0e\x11\x2e\xb0\x34\x9c\xa1\xaa\x8e\x98\x27\xd0\x8f\x08\x33\xb8\x89\x5f\xff\x62\xda\x75\x22\x16\x18\x94\xb8\x18\x3e\x6e\xa2\x50\x75\xad\x91\xa4\x84\xc5\x8c\xe8\x13\x22\x6c\xe4\x6b\x3d\x03\x53\xe4\xa3\x9e\xa1\x17\xce\xa6\x52\xe5\x84\xc3\x94\xef\x26\x2c\xe7\x9f\xa4\x4b\xc0\x18\x66\x30\x09\x9f\xa8\xa1\x3f\xb4\x26\x63\xfd\x38\x04\x82\x1f\x96\x8a\x3e\xfc\x61\xe0\x6b\xbb\x55\x0c\xd3\x63\xd0\x00\x80\xca\xbf\x45\xe3\x52\x7c\x4e\xfd\x36\xfe\x4a\xa0\xe8\xe4\xc7\x69\x84\xe3\x81\x1f\x2d\x55\x91\xf2\x15\x6d\x9d\xbb\x81\x74\x4d\xb0\x4f\xbe\x87\x8d\x0e\xa5\xf5\x2d\xe0\xe9\xe2\x4d\xa0\xee\x81\xfd\xe6\xc9\xb1\x82\x3c\xc6\xa3\x85\x85\xd5\xd6\x84\x20\xa3\x02\x48\xd5\x2a\x60\x55\x40\x6f\x86\xc3\x2c\x35\x21\x78\xdb\xb2\x24\x54\x5f\x2f\x6b\xc5\x76\xa5\xc6\x3e\x18\xc6\xf6\xd0\x23\xbe\xe6\x7d\x02\x97\x28\x56\x49\x74\x89\x60\x58\x5c\xd7\x35\x5e\x2e\x6c\x4b\x6e\x52\xad\x01\x2a\x9b\xfb\xc2\xa4\x49\x18\x44\x68\x6e\x2b\x0f\x97\xdb\x4a\xab\xe9\xb6\xb2\x1e\x1a\x5a\x3b\xd4\x08\x94\xc9\x42\x99\x68\x83\x2c\x58\x93\x47\x0c\x39\x68\x39\x35\xba\xf3\xb4\xe4\xf2\xb1\xea\xc9\x45\x49\x91\x99\x51\x61\xb3\x28\x61\x24\x34\x26\xcf\xd7\x4a\x3f\x91\xbe\xe6\x94\x21\x86\xe4\x2b\x36\xa5\x7a\x9b\xd8\x4b\x45\x48\x67\x42\xc0\xb6\xa1\xc1\xd8\x0e\x63\x13\x0d\x64\xc9\x45\xec\xcb\xec\x2c\x3e\xa9\x45\x24\xbb\x76\xed\x6d\x17\xe9\xa1\x28\x84\xaf\x27\x0d\xa4\x26\xbc\xae\x1f\xda\x89\xb5\xe4\xa5\xe3\x49\x0a\xda\xaf\xe1\x64\x93\x5b\xff\x82\x89\x63\x9b\x50\xb8\x83\xd2\xfb\xb5\x52\xc1\xea\x01\x28\x42\xd9\xed\x86\x0b\x55\x97\x23\xbb\x12\xb9\xe6\xb7\x66\xf8\x09\x0f\x50\x8b\xdf\x0d\xba\x51\x22\xf7\x0d\x5d\x26\xd6\x84\xe4\x93\xf2\xd9\xc9\x86\xe3\x81\x3d\xb3\x22\x44\xff\xbc\xd0\x20\x02\xcf\x23\x38\xef\x3a\xeb\x36\x59\x48\x69\x26\xbb\xed\xee\x9c\xf6\x59\x9a\x50\x86\x88\x86\x28\x17\xa3\xec\x8f\x8b\xe5\x63\xb5\x7f\x46\x45\x6e\xe3\x85\xcd\x8a\x5c\x58\xfa\x38\xf9\x9f\xfe\x21\x9e\x0c\x9f\x04\xde\x15\x7f\x6b\xc7\xb3\x28\x99\xe0\x83\x28\xf3\x5d\x65\x2f\x78\xb7\xc9\x99\x7c\x21\x4a\x9c\x98\x25\x82\x37\x4c\x78\x3e\x56\xfc\x82\x85\x6c\x24\x3a\x93\x58\xb0\xd1\x31\xe5\xe3\xa6\x7d\xaf\x8a\xfd\x22\x9b\x4d\x7b\xec\xf8\xa9\x52\x69\x96\x40\xa7\x12\xb9\xc5\x9f\x21\xe8\xc7\x5a\xf6\x55\x85\xef\x58\x31\x8b\x8b\x51\xde\xaf\x62\xc8\xfd\x93\x02\xff\xa2\x77\x57\x87\xc0\xb6\x4d\x18\xda\x61\x01\xed\x59\x27\xe5\x7f\x42\xc5\x92\x27\x82\x47\x15\x45\x76\xb1\xa5\xe6\x91\x12\xa7\xae\xbb\x08\xef\x9f\x6d\xdb\x55\x49\xf4\xa4\x10\xa5\x30\x10\x1f\x34\xd1\x9e\xaa\x3d\xdd\xf6\xa6\x15\x32\xe4\x6e\x39\x91\x15\x78\x63\x1f\xa6\x9e\x60\x19\xde\xdc\x59\xbf\x86\x92\x67\xbd\x29\xc2\xbe\x80\xfb\x1c\xf5\xc7\xd1\x1a\x4e\x35\x09\x52\xae\xd8\x38\x9e\x56\xd1\x33\x30\x3c\x78\xf2\x8f\x2b\x0b\xae\x0d\xe3\x6a\xd7\x45\x68\x7b\x4a\x6d\x81\x4c\x28\xa5\xc7\x84\xf5\x17\x75\x29\x3e\x76\xd1\xbe\x89\x17\x32\xdb\xe3\xa6\x9a\x38\xa1\x2b\x74\x3a\x97\x13\xb1\x6a\xdf\x6d\xb0\x8e\xdd\xdb\xee\xa6\x45\x9f\xa4\x03\xb0\x6d\x7e\x83\x12\x0e\x3e\x56\xf4\xc7\x15\x6b\x96\x94\xa7\xc9\x69\xca\x51\xc4\x5f\xa4\xc1\x92\x6e\x10\xf5\x92\x2a\xaa\x52\xbe\x36\xa0\x9c\xf2\xb1\xea\xd7\x99\x3c\xb7\x45\xbe\xcd\xd7\xdd\x2e\x94\x4a\x4c\x17\xa2\x28\x22\xe6\xa9\xb0\xe8\xec\x53\xce\x80\xdc\x60\x9d\x1e\x85\x63\x72\xa0\x4a\x82\x27\xb0\x86\x10\x1e\x1b\xfb\xeb\xf4\x4e\x94\x0a\xbf\x54\x8c\x6e\x37\x40\xc2\x77\xbf\xb0\x77\x5a\x01\x5e\xe8\x9a\xf0\x32\x5e\x51\x19\xda\x2b\x8a\xf3\x7c\x29\x98\xf0\x67\x7d\xa9\xdf\xf2\x74\xb1\xef\x94\x2a\x59\xfc\x4e\xc3\x6b\xd9\xdd\x5e\x88\x72\xec\xda\x22\x06\xa1\xdd\x5d\xbd\xc9\xf5\xb2\x89\x97\x45\x9b\xa1\x51\x43\x62\xc2\x75\xa9\xb0\x3f\x41\x11\x37\xf2\xa7\xff\x55\x23\x80\xd8\xab\x54\x52\x13\x8a\x58\xf9\xcf\xd0\x31\xc2\x6e\xfd\x0d\xca\xe8\x1d\xb9\xe7\x73\xce\x80\x83\x2b\x02\x78\x9c\xec\x64\x8d\xa8\xe7\xdf\xe2\x66\x91\x2a\xbd\xac\x54\xbb\xb6\x74\x54\x2c\x7b\xbe\xf4\x39\xe4\x43\x0a\x22\x50\x29\x98\x1a\x23\xdf\x60\x09\x17\xf4\xa8\x50\x85\x38\x1d\x28\x7b\x89\x8d\xa4\xf2\x8d\x57\x7e\x2a\x68\xed\xd8\xb1\x76\x13\x53\x5b\x67\x9c\x40\x97\xfd\x26\x01\xb9\x19\x1b\xa7\x04\x47\x6f\x05\x8a\x15\xfe\x67\x5e\x3b\x70\x95\x5c\xe8\x28\xa3\xc3\x66\x87\x30\x90\xa3\x35\xdd\x90\xbf\x1a\x7c\xcc\x4d\x18\x7b\xa8\xc8\x0c\xac\x08\x59\x1a\x5b\x25\x00\xee\x44\x85\x9e\x49\x9a\x15\xfd\xc7\xbc\xee\xf4\x77\x31\xbe\x51\x91\x78\xac\xe3\x35\x5a\x8e\xf3\x58\x70\x3d\x5b\x57\x2b\xbb\x05\x49\x69\x81\xc5\x56\xaf\x8a\xfd\xaa\xf0\x0e\xdc\x7b\xdb\x23\x1d\x88\xd7\x14\x33\xfb\x87\x98\x1d\xae\xb7\xb9\x47\xd4\x80\x51\x84\x10\x7c\xad\xef\x0a\x0d\xa2\x24\xca\x59\x3c\x4b\x1e\xe8\x5d\x25\x38\x7e\x57\x41\xb6\x8f\xe2\x6d\xf0\x49\xf0\x73\x0d\x2b\x51\x92\x16\x2b\x51\xd1\xcf\x0b\xa8\x00\x4d\x69\x3e\x0f\x0d\x4e\xc7\x04\xdd\x33\xcb\x13\x5a\xeb\x59\x0f\x4d\x94\xd8\x15\xdb\xed\xda\x0c\x35\x20\x56\x8c\x0f\xfc\x8b\x3b\x51\xdb\x2d\x08\x07\x46\x42\xbb\xbe\x8a\xcf\x70\x57\x3e\x69\xe8\xeb\xed\x6d\x67\xd6\x84\x00\xe8\x2b\xd8\x87\xf0\xea\x76\xd7\x42\xf1\x83\x07\xdb\xb9\x89\x4d\xb6\x3a\xb0\x49\x4b\x09\x30\x5f\x54\x02\xdb\x17\x15\x9a\xa7\x17\x2d\x90\x33\x52\x31\x43\xf7\x2d\x12\x06\x4a\x8b\xf2\x0d\xfa\xa4\x58\xd1\xf8\x14\xe8\x38\xea\x12\xfc\x47\xeb\x05\xe5\xe8\x6e\x0f\xec\x99\x9d\x56\x35\x3a\xf4\x2f\x00\x5b\xb8\x10\x4c\x56\x97\xe7\x1c\xa9\xa8\x4e\xdc\x6e\xe7\xb1\x8b\xd0\xdd\xb4\xf3\x53\xb0\x01\x38\xf8\x85\x76\xb1\x1a\x5b\x96\x73\x45\xd9\xfa\xdb\xf4\xe3\x7c\x5c\xab\x92\xd3\xe5\x2e\xa4\xa9\x93\xf0\x73\x37\xe9\x5b\x51\xc7\x1d\xc2\xa4\x3b\x8a\x17\xd7\x99\x43\x5c\x0a\x34\x09\xa2\x01\xca\xb8\x14\x25\xe2\xd8\x27\x1e\xd8\xbe\x66\xfd\x61\xed\x82\xa4\xcb\x11\x7f\xf2\xc5\x4f\x4e\xf9\xa2\x14\x38\xaf\xc8\x86\xde\xd0\x3e\x58\xd7\x3c\xfc\x25\xcb\xa2\x65\xe9\x59\x8b\xea\x4b\x35\x4a\xd7\x5e\x46\x64\xcc\x88\xb2\x06\xbd\xa4\xdd\xed\x94\x38\x09\x13\xf2\xdf\xf7\x94\x88\xc6\xbd\xf5\xfb\xd5\x9e\xd9\xbd\xed\xfd\xb3\x53\x3e\xaa\xfc\x41\xa9\x0a\x71\x24\x15\xb2\x76\xc4\xf5\xee\xa3\xe4\x8b\xa3\x28\x8b\x24\xc8\x42\x5b\x11\xb5\x49\x3e\xae\xbd\xfd\x4f\xb4\xbb\x69\xe6\x78\x74\xd2\xb3\x69\x39\xfb\x54\x68\x32\x0b\xcf\xfe\x09\xd5\xba\xb7\x03\xdb\x9b\xf1\xc1\x1f\x5a\x26\x48\xea\x0e\xeb\x8c\xf8\x03\x5c\xb1\x13\xa6\x75\x84\x40\x6f\x75\x1a\x9a\x2c\x89\x96\x4d\x4c\xeb\x04\x22\x91\xcb\xca\x3a\xee\xa4\x66\x96\xbc\xa6\x54\xb7\x62\x32\xea\x9c\xf6\x8a\x03\xef\x29\xd5\x84\x1b\x2a\xc4\x3e\x4e\x25\x11\x24\x78\x2f\xbb\xc7\x65\x93\x30\x1d\x65\x66\xd1\x6e\x72\xec\xb7\x6f\x42\x25\x10\x7f\xc9\x75\x76\x6c\x8b\xaf\x63\x5d\x60\xd8\x83\x92\x5a\x62\x67\x03\x49\x20\x54\x3d\xaf\xc8\xa2\xb0\x40\x9b\x53\x32\x67\x2c\xf7\xce\xbd\xd1\xab\x50\x9d\x0b\xb4\xd9\x53\x5d\x18\xe3\xf9\x76\x36\xca\x0b\x86\x74\x79\xfe\x1b\x6f\x41\x52\xc2\xf3\x88\x80\x61\x96\x0e\x53\x36\x79\x7a\xde\xe9\x36\x79\xf0\xc8\xdd\x5a\x9a\xfb\x89\xf6\xb2\x09\x4d\x15\xae\x22\x58\x9d\x10\x36\xf0\x35\x48\x57\x64\xc8\xa2\x81\xcd\x37\x53\x74\xe1\x76\xa6\x6a\x2d\x12\x5b\x45\x0a\x35\x9c\x2a\xc7\x1e\x81\x33\xc1\xf3\x99\x8f\x29\xb9\x77\xee\x08\x2e\xab\xab\x6b\x8d\xcd\xcf\xb7\xed\xa1\x30\x1e\xf5\x24\x42\x92\x4d\x97\xde\x90\x6c\xc7\xbe\x9e\xf7\x4f\x7e\xe1\x5f\x4c\x79\x92\xda\x4d\xe5\x19\x3c\x35\xae\x16\x43\x14\x14\x2e\x3b\x59\xc3\x7c\x94\xb0\xa8\x86\x6b\xc3\xb8\xf6\xe2\x6d\xf5\x4e\xbb\x26\xf9\xe2\xc8\xce\x78\x42\xd5\x2b\x04\x22\xc2\x57\x73\x29\x0a\x73\xe0\x6e\xa0\x98\x5a\x2c\xa6\x88\x98\xe8\x9d\xd2\x57\xbd\x8a\x14\x4b\x56\x53\xf1\x42\x97\xb2\x1c\x43\x16\x9b\xe5\x79\xad\x8c\x54\x87\x9e\xee\x98\x6b\x17\xfd\x28\x59\x62\x04\x2d\x1e\x02\x43\xf4\x80\x50\x3b\xa6\xdc\xac\x2f\xd4\x31\x9a\x3b\xda\x43\xc3\x72\x66\x98\x4c\x1f\x2a\x1b\xa7\xc7\x50\xe2\xe2\x1a\xc3\xd8\xf7\x5a\x8e\xd7\xc6\x54\xb5\x53\x84\x71\x34\xe8\x0a\xf4\x43\xa1\xcc\x77\xbb\x08\xbc\x61\x35\xaf\xa6\x8e\x60\x88\x9a\x36\x00\x59\x8c\xfb\xd6\xc4\x45\x7f\x95\x16\x48\x56\x5b\x54\xfe\xde\xdc\x16\x14\xc7\xdb\xa6\xea\x67\x36\x8a\x51\x0c\xf1\xf2\x66\xac\x9a\xc3\x27\x55\x4e\xe8\x2c\xb4\x13\xbb\x10\x85\x91\xa1\x25\xb6\xfa\x19\x6c\xce\xd0\x61\xe2\xe3\x5a\x3c\xe4\x94\xf6\x46\xdd\x3c\xcc\xa2\x2e\x11\xac\xaa\x1f\xc0\xd3\xe4\x56\x10\x9f\x78\x08\x6b\x15\x3a\xe5\x33\x6a\xb1\xbf\xa4\x24\xc3\x19\xe6\x8b\xf8\xee\x06\xcd\x22\x65\xcd\xb5\x77\xed\x7a\x53\xb1\xa8\x30\x59\xb4\xb0\x40\x8f\x0a\x0d\xfd\xe3\xfa\xf1\x00\xf5\xc3\x95\x7d\x05\x37\x1f\x98\x9c\x17\x11\x21\xe3\xb7\x9c\xbf\xe7\xcb\x6e\xfe\xc4\xe9\x4a\x3e\xe1\xe0\xab\x5b\x17\xdb\xc0\x83\x72\x70\x34\x37\xf2\xee\xa9\x0d\x05\x8e\xfc\x53\x1e\x15\x78\x57\xd9\x12\xfe\x88\x9e\x30\x33\x4e\x83\x47\xdc\x34\xff\x14\xd7\x77\xb5\x4e\x27\x96\x93\x0d\xf8\x4d\x27\x17\xf9\xf9\xcf\x7a\x3f\x0c\x87\xb1\xbf\x57\x8d\xea\x35\x60\xbf\x90\xf6\xcd\x8c\xab\x1f\x42\x08\x75\x86\x62\x65\x8a\x0b\xbe\xfe\xb3\x54\x93\x5f\xbb\x8c\x27\xc6\x1a\xfa\xb5\xba\xcd\x27\xa8\xf4\x6a\x32\x40\xd7\x9f\xd7\x8d\x50\x31\x9d\xb8\x83\x59\x28\x1e\xff\x4d\x31\x42\x9f\xd8\x35\x7f\x8f\x44\xd9\x36\xfe\x50\x7b\xff\xec\xfc\xcf\xd0\x02\xac\x94\xb7\x77\x3b\x3e\x42\x75\xf5\x4e\x02\xa1\xfa\x2e\xc4\xb4\xd7\x03\xcf\x46\x9d\xa6\xc5\x10\x1b\xf8\x65\x24\x64\xe2\x71\xdd\x72\x9a\x2a\xaf\x61\xb0\x21\x2f\xfa\x16\x5d\x89\xc8\x7f\xe1\xe9\x33\x78\x88\xdb\x49\xe8\x6e\xbc\x8b\x10\x00\x1f\xda\x34\xde\xf8\xf3\x8e\x33\xe1\x21\x6a\x1b\x3b\xad\x03\xbb\x9d\xd6\x64\x95\xdb\xa3\x00\x7e\x5a\x71\x6e\xa7\x3b\x55\x86\x83\x30\x6b\x3b\x99\x13\x60\x9a\x9f\x24\x97\x1d\xfc\xfd\x79\x64\x3b\xa8\xb3\xdf\x43\xc5\x01\xd1\xee\x35\x68\xb2\xa2\x42\xf3\xb7\x50\xa5\x72\x1e\x8a\xd5\x66\x85\xd5\xed\x2d\x1a\x1f\x18\x38\x87\x4b\xa5\x89\xb7\x86\xed\x95\x65\x43\xa1\x96\xe6\xd4\xe9\x3d\xf5\xf2\x4a\xe0\x25\x37\x4c\x4f\x72\x29\x60\x43\xf1\x04\xce\x2a\x8d\x94\xb3\x4d\x92\x21\x5d\x6b\x46\x5c\xf8\x76\xce\x66\xbb\x76\x39\xdd\x92\x2d\xfc\x97\xcf\x6d\xa5\x57\x2c\xb5\x11\xa5\xfd\x32\x05\x2e\x28\xde\xc5\x06\xea\x5f\xf1\x88\x03\xd8\x9f\x2e\xfb\xf2\x53\x9d\xd6\x73\xcf\x3d\xf8\x57\xcf\x76\xbc\x56\x0f\xd6\x15\x67\x34\xe6\x42\xe1\x6b\xf5\x7a\xdc\x1c\xe1\xf8\x44\x0c\x52\xc4\x63\x69\x6c\x09\x09\xcb\x6f\xc1\x4b\x36\x56\x8d\xbe\xb3\xaa\xd1\xa7\x6a\xfe\x26\x0f\xa3\xc4\x14\x2e\x00\x75\x51\xb8\x6b\x2a\x6c\xe8\x78\x00\xfc\xb5\x26\xbf\xff\x2c\xca\x11\x02\x62\x49\xfa\x1a\x26\x01\xe2\xe9\x2b\x28\x30\x6a\x7b\x0f\x71\xc1\x7b\xdc\x47\x91\xd6\xe4\x96\xfc\x50\x31\x8d\xae\x80\xef\xeb\x54\x2b\x1c\xf9\x05\x88\x25\x54\x1b\xef\x6a\x19\xcb\x2b\xb5\x1d\x74\x7e\xbe\x1d\x9b\x15\x2d\x1d\x1a\x68\xe9\x50\x5f\x91\xc8\xa2\x41\xce\xb2\x74\x08\x27\x71\xbf\x7c\x3c\xde\xe6\xe9\x6a\xbd\x96\x76\xe2\xe5\xc6\x9e\x08\xb1\xad\xef\x3f\xcb\xa6\xd3\xcd\x4c\x2f\xb6\xab\xad\x09\x15\x71\x7a\x61\x32\x84\x1e\x75\x2d\x92\x48\x36\x26\x27\x96\xe0\xf4\x2e\xfc\xbe\x94\x98\x2c\x4b\x57\x66\x7c\x5f\xe2\x2a\xa6\x08\x66\x2b\xf8\xa1\xb4\x73\xfe\xfa\xc7\xd0\xc6\x14\x84\x6c\xcb\xb9\x3f\xac\x95\x8f\xa9\x72\x5a\xfc\xc9\x29\xed\xe7\xa7\xa9\x03\xf7\x79\x7d\x91\x56\xe6\x33\xca\xd0\x32\xb6\x5d\x38\x48\xc3\x6b\x0f\x4b\x1b\x4a\x40\x78\xf5\xd0\x26\x64\x17\x03\x5c\xa3\xf0\xd4\x7d\x67\xca\x10\x97\xca\x29\xfe\x73\xd7\x91\x4f\xdc\xe6\xb6\x12\xc5\x31\x8c\xb7\x1d\x05\xd0\xe3\xd5\xd7\xca\xd6\xe7\x44\x4f\xf1\x63\x1d\x2f\x2d\x7d\xa9\xa4\xa5\x47\xac\x5a\xaa\x15\x4d\x24\x1b\x54\x8a\x30\x22\xb5\x61\xdc\xa6\x86\x59\x32\xc8\x4e\x1b\xca\xbe\xec\x34\x93\x4d\xd4\xdb\xea\x07\x3c\x90\x41\x78\xe6\x3f\x0b\x98\x86\xc0\x84\xaa\x1f\xc5\x08\x45\x5c\xc0\x57\x70\x5f\xb3\x20\x2e\x29\x2d\x61\x06\x83\xa2\xdf\x79\xaf\xf4\x80\x89\x7a\x46\xe2\x8c\xdf\xfa\xa3\x45\x13\xb5\x7c\xb4\x7c\x71\xa2\xe3\x5c\x6b\x8b\xc9\xe7\x16\x32\x9b\x84\x7d\x65\x00\xba\xae\x31\x2c\x13\x84\x38\xaa\x8b\x29\x4d\x70\x3c\xe4\x1f\x95\xca\x1b\x01\x92\x2f\x18\x2e\xff\x41\xcb\x25\x79\xb7\xd4\x81\x29\x6c\x16\x99\x38\x7a\x49\x72\x87\x26\x95\x19\x5d\xe1\x0d\x57\x4c\x4b\xf9\xb6\xb1\x8a\x91\xf0\x8e\xd7\x6f\xfa\x7b\x66\x09\x7e\x1a\x25\xb0\x05\x9b\x50\xe2\xc2\xf4\xbc\x3d\x69\xc8\x51\x4f\xc1\x63\x33\x5a\xec\xf3\xc5\x21\x32\x78\xa0\xa0\x3e\x0f\x1a\x95\x4a\x08\xec\x94\x93\xb8\xc4\xbc\xd2\xa7\x53\x32\xb0\xaa\xe4\xbf\x14\xd9\x21\x1a\x8b\xec\xe7\x8e\x87\x2d\xe6\xee\x1e\x03\xb4\x92\x66\x71\x6f\xbb\x6e\x9a\x7f\xa8\xe0\xf4\x2c\xae\x8a\x81\x83\xd8\x61\x22\x4b\x44\xc9\x60\xe3\xb8\xf5\xdc\x73\xce\x1e\x9f\xae\x08\xc3\x0b\x64\x2d\x47\xcb\xa9\x1e\x2a\xea\xa3\x17\x03\x55\xb1\x7e\x18\x50\x48\xe3\xa4\xba\xe7\xf6\x71\x29\x1a\x2b\x23\x36\xe6\x97\x27\x85\xdb\x69\x87\x13\x77\xfe\x6a\xd8\x62\x10\xcc\xd4\x10\xd5\xbb\x76\xed\x6d\x2f\x88\xc2\x1d\x33\xa9\xe8\x06\x85\x55\xb5\x7e\xbc\xce\xed\x03\xfe\xd6\x40\x99\x98\x2e\x9a\xb5\x92\x26\x74\x93\x3e\xe6\x01\x97\x64\x8d\xb3\x10\xd9\xb8\x67\x33\x18\xea\xe3\x49\x8a\x95\x3a\x62\x6c\x36\xb3\x46\x85\xa3\x6e\x52\x5e\xbd\xe2\xe7\x12\x7c\xdc\x29\x11\x56\x77\x89\xf1\x75\x84\x4a\x7a\x52\x4d\xd4\x95\xe7\x28\x47\xfa\xce\x0e\xfc\x58\xf9\xc4\x8e\x5f\x56\xf1\x45\x93\x25\x36\x6b\x79\x6f\x96\xef\x2a\x5e\xcf\x77\xb5\x06\x76\x61\x4d\x96\xe4\x24\xc1\xc6\xd9\x22\x15\x2a\x24\x73\xf4\x05\x07\x9b\x87\xa3\x1e\x31\x74\x5c\x19\x10\x14\x09\xb1\xba\x7f\x4a\x61\x1e\x49\x19\xa5\xc0\xb6\x8d\x41\x73\x84\x1f\x0e\xaa\xbb\x9b\x68\xa7\xc5\x42\xfa\x38\x02\x1b\x0c\x8e\x5b\x4a\xaf\xa2\x58\x1d\x46\xa1\x89\xe3\xd5\x4d\x8a\xe6\xf8\x77\xaa\xb9\xfe\x23\x8c\x24\x2c\xe7\xb7\x31\x62\xf8\x64\x72\xd1\xab\x5e\x04\x56\xf3\x8b\x0d\xe4\x85\xdd\xed\xa1\x89\x0d\xf7\x79\xc5\x4f\x55\x05\x5b\xe7\x02\x2d\xd2\x4b\xec\x8a\x69\x4f\xe5\x99\x1a\x2b\x9b\xfe\x35\xaa\xd7\xf3\x7f\x74\x3c\xbc\x6e\x4d\x51\xa9\xa2\x6a\xf8\x30\x2e\xbd\xc9\xf9\xd3\x99\xca\x44\x87\x16\xd2\xb8\x37\xad\x6a\x54\xcc\xd0\xc0\x77\xfe\x2f\xb4\x7e\x63\x7c\x42\xd1\x92\xdd\x9e\x9b\x2c\x93\x87\x59\x3a\x18\x3a\x8b\x1a\xbc\xb2\x63\x81\x52\x7e\x38\xa6\x76\xad\x30\x4d\x96\xb9\x6e\x21\x2a\x22\xd5\xfd\x8a\xbc\x88\xab\xe2\x5a\xeb\xcd\x87\xf1\xfa\x10\x53\xf0\xb1\x6a\x92\x42\x79\xdf\xb6\x3c\x96\xf0\x2c\xa4\x78\x24\x78\xf4\xad\xf4\x7c\xd4\x1d\x65\x5d\x85\xda\x5f\x57\xe3\x97\xea\xa0\x3d\x54\x40\xf7\x8e\x6e\x02\xe1\xe9\x65\xc5\x43\x3a\xa1\x0d\x25\xee\x35\xf5\x9e\x17\xb2\xc8\x26\xbd\x96\x97\xc4\x41\xea\x2a\x4b\x96\xff\xa1\x7e\xd4\x8d\x24\x5f\x93\x91\xaf\x1e\xdd\x39\x75\xa3\x7d\x93\x2d\xdb\xbc\x40\xd5\x5e\xdc\xd4\x3c\xb2\xf7\x58\xe0\x30\xf1\x2d\x96\x83\xe2\x3f\xaa\x6d\xa4\xa4\x16\x91\x8f\xb2\x61\x15\xff\x8a\x00\xba\xcc\x25\x85\x62\x38\x52\x23\x4d\x90\xdf\x47\x11\x25\x69\x37\x36\x79\x91\x0e\xcc\x94\x7f\x29\xf7\x14\x34\xe7\xa2\xf2\x62\x38\xe3\xaa\xae\x29\x81\xd7\x19\xcc\x80\x2c\xeb\x75\x7a\xab\x7c\x5c\x6a\x1d\xea\x74\x05\xa1\x2d\x56\xb0\x33\xaa\xd3\x71\xa6\xa9\x0f\xd1\xb7\x26\xe3\xda\xb8\x54\x5f\x7c\xc5\xf2\x7c\xd9\x00\xb2\x54\x9b\x7b\x4f\x5b\x48\xfd\x27\x2d\xb1\xf9\x9f\x26\xf4\xd2\x56\x93\x34\xee\x01\xee\x26\x79\x81\xda\x0c\x75\x1b\xaf\x9b\x26\xbd\xfc\x69\x8f\x32\xdf\xdc\xf1\x2d\x3d\x46\x71\xba\xe8\x76\x8f\xe8\x08\xbe\x59\x2a\x5c\x0d\x1b\x6e\x3a\x46\x7f\xf5\xd6\xb1\xfc\x6f\x44\x7d\x02\x21\xe9\x5d\x14\x4b\x05\x6b\x55\x65\xc5\x88\xed\x4e\x62\x67\x13\xba\x2b\xcd\x24\xec\xb8\x37\x94\x28\xd4\xab\x58\xe7\xf8\x8b\x41\xf0\x74\xbf\x5f\xa5\xac\x6c\xed\x8e\xfb\x44\xfe\x7c\xb9\xf4\x6b\xef\xf9\xc0\xe3\xe2\xde\xf3\x00\x9d\x81\xcd\x16\x25\x64\xc2\x3c\x64\xf5\x44\x3e\x69\xac\xa7\x0d\xcc\x6a\x9a\xf1\xe8\x60\x13\xe2\x40\xd1\x52\xcf\x68\x98\x5a\x1c\xd9\xa4\xc8\xb7\xa8\x26\x37\xa7\x5e\x02\x7f\xf0\x0e\xa3\x87\x68\xe8\x38\x15\xfc\xea\xd1\x63\x15\xbd\x53\xd6\xfc\xfe\xf8\x3f\x34\x4f\xea\xab\x35\x95\xa8\x5d\xbb\x48\xdd\x25\x8b\xba\x23\xf6\x1c\xd0\x2a\xa1\x7e\x97\xd7\xe3\x81\x4a\x54\x53\xbe\x99\xfa\xae\x4a\x6a\xae\x2b\x51\xba\x73\xb5\x27\xb3\xef\x85\x76\x1e\xf6\x6d\x6f\x14\x23\xdd\x40\xb1\xe9\x8a\x52\x68\xbd\xa2\xb8\xa5\xdd\xb4\xe8\x13\x6d\xb0\xfa\x29\x2c\x06\xd7\xd4\xc2\x70\xcd\x67\x8f\x69\x92\x99\x08\x02\x03\x5a\x0b\x5c\x44\xbe\xe9\xc1\x4b\x97\xe9\x59\x8d\xea\x1a\x44\x79\x1e\xa5\x14\x03\x28\x5b\x50\xb5\x90\xd6\xb1\x41\xfb\x67\xdb\xd6\x64\x45\xbf\x5b\x85\x43\x84\xa0\xc0\xb3\x05\x61\x13\xb3\xe7\xc7\xa5\x37\xe8\x7e\x0b\xa1\x07\xca\x25\x27\x94\x7a\x4c\x98\x2e\xd9\x98\x89\xe6\xc8\x4e\x3e\xd0\xc9\xf4\x07\x35\x51\x75\x57\x41\x65\x45\xca\x96\x92\x82\x38\x12\x28\x11\x86\x23\xb5\x07\xbf\x67\x77\x9b\xc8\x1c\x26\x4a\x94\x39\xd9\x45\x65\x4e\x76\x51\xe9\xc4\x67\x51\x2f\x0a\x47\x71\x3a\xca\x75\x83\x0e\xd5\x08\x3e\x0e\x9c\x95\x59\x91\x59\x33\x88\x05\x1d\x37\x59\x41\x11\xab\xf6\x47\x1d\xb6\x31\xcb\xb0\x61\x3a\x82\xb8\xd2\x86\xad\x27\x04\xc3\x2c\x1d\xda\x78\x9a\x86\x36\x82\xb2\x93\x0a\x20\x7a\xa4\x54\x95\x56\xac\xd2\x78\xca\x1b\x3b\x1a\x23\x92\x9b\x95\x69\x57\xc1\xdc\x71\x0c\x1b\x2a\x9f\xa8\xe9\x84\x91\xcb\xc7\x0d\x6f\x7d\xae\x3d\xcc\x6c\x2f\x0a\x5d\xdb\x12\xbd\x13\xc8\xd9\xf3\x71\x1d\x33\xf9\xc2\xde\xff\x6f\xfe\xac\x3a\xff\xea\xda\xec\xa9\x49\x49\xaf\xdd\x73\xfb\x9c\x72\x7e\xcb\xd9\x8c\xcd\x74\xaa\x20\xd8\x51\x8c\xf7\xcf\x72\xda\x7c\x27\x50\xd5\xd7\xbb\x1a\xa0\xf3\x16\xe5\xe1\x58\x5e\x7e\x10\x28\x54\x19\x70\x11\x82\x5f\x51\x12\xff\x5f\xe5\x1a\x84\x90\x97\x95\x3c\x6f\xab\xe3\x99\x45\x0f\x4b\xcf\xf6\x3a\x82\x45\x1b\x49\xe9\x37\xf0\xd8\x11\x6a\xb2\x71\x0a\xe6\xc7\x97\x9a\xbc\xd4\xf2\x61\x9a\xe4\xf0\x49\x75\x75\x98\x52\xd5\x61\x82\x67\xd6\xfb\xca\xb5\xf7\xcf\x3e\xff\x8c\xa2\x33\x70\x81\x99\xdd\x53\xe9\xa9\x60\xc5\x3f\x8a\x80\x07\x55\x35\x04\xd8\x42\xdb\x68\xed\x9c\x5f\x83\x8a\x35\xf6\x90\xc3\x94\x75\x21\x88\xfe\x00\x0f\xd3\xc9\xd5\x7d\xe6\x00\x57\xc0\x6e\x63\xd3\xe2\x5f\xc5\x83\x71\x1e\x7e\xd5\x03\x40\xed\x79\xc3\x58\x69\x62\x7e\x2b\x68\x7d\xfa\x97\x9d\xdc\x8f\x2a\xf5\x7c\x23\xf0\x6b\xfd\x5f\xa8\x70\xf7\x08\xde\x9e\x63\xb1\x78\x67\xc9\x63\xc1\xfa\x94\x89\xaa\xa8\x3c\x46\xf1\xbc\xaf\xab\xe2\xdd\xf5\x5a\x97\x6c\xd7\xae\xf6\x20\xcd\x72\x1b\xb7\xaa\x61\x84\xbc\x12\x38\x6c\x3e\x56\xfc\x80\x1e\xdb\x9b\x63\x9e\xbd\x47\x7f\xc5\xc7\x9a\x7c\x52\xa4\x89\x65\xa6\x9d\x30\xa3\xbd\x2d\xe3\x71\xc5\xc2\xee\xda\x30\x1d\x44\xc9\x22\x90\x85\x7a\xe9\x40\xde\xfb\x50\x59\x12\x70\x8f\x17\xfb\xc4\xff\xe9\x16\xff\x85\xa8\x48\x6c\x9e\x6f\xaa\xfe\x50\xbc\xa7\x7d\x20\xb7\xa5\xa3\x3a\xa3\xa7\x10\x79\x68\xef\x2c\x71\x96\xa6\x77\x80\x65\xe5\x8f\x9b\x9e\x10\xa9\x35\x60\x77\x14\x11\x04\x5f\x9b\xad\x63\xa5\xe7\xe7\x19\xa9\xbe\x6c\x5b\xd5\x9d\x63\xa6\xbc\x8f\xb7\xc8\x27\x35\x94\xe5\xdc\xbe\x76\xdf\xc6\x3d\x0d\xf5\x61\x2d\x5e\x31\x34\x6d\xc0\x65\x86\x69\x86\xd8\x52\x58\x57\x4a\x66\x43\x1b\x26\xbc\x68\xc2\x25\x0b\xf9\x58\x56\x2d\xa6\x1b\x10\xfc\x18\xfd\xa6\xc0\x1e\x1a\xbc\x5a\x07\xd6\x59\x05\xa9\xd4\x4f\xa0\x65\xd7\x55\xda\xfc\xf6\x04\x64\xb9\xc8\x56\xb7\xeb\x66\xff\x2d\x42\xdb\x31\x94\x93\xb2\x40\x25\x01\xe1\xc9\x8e\xbe\xfc\xbe\x81\x82\x4d\x66\xe2\xa1\x99\xe2\xb4\x76\xdc\x82\xf2\x6e\xe0\x73\xc8\x9b\x58\x69\x50\xd4\x67\x67\x17\x2d\xeb\xe9\x82\x5d\xef\xff\x72\x2c\x40\xcb\x86\xff\x4c\xd7\xb9\xee\x6a\x86\xda\x15\x07\x99\x18\x98\x6c\xc9\x2a\xe7\x5f\xc7\xfb\xf3\x05\xc5\xba\xda\xf2\xc1\x83\xa4\xfc\xb2\x88\x02\x19\xd3\x62\x02\xdf\x37\x66\xd5\x47\x5c\xd3\xb9\xf2\xe3\x5e\xcf\x29\x33\x49\x3e\x4c\xb3\x82\xaa\x2f\x33\xca\x40\xfd\x68\xa0\x9e\x08\xd0\xc9\x7c\x8c\x55\x4e\x1c\xe4\x5a\x9f\x9b\x73\xd6\xb9\x8f\xaa\x2d\x66\x09\x7b\xab\x08\xef\xb6\x1c\xdf\x14\xc2\x57\x58\xba\x38\xcb\xc7\x05\x6f\xad\x89\xb5\xee\x9c\x6f\x77\x47\xb9\xdb\x16\xd1\x38\x7b\x57\xf1\x80\xde\x6d\x50\xdd\x9f\xaf\x96\xf8\xcc\xf4\xa2\x10\x89\xa9\x8c\x1d\xdf\x1e\xc2\x98\x92\x48\x52\xd3\x03\x4c\x16\xaf\x3e\xee\xfb\x72\xf7\x4b\x1f\x78\xfd\x51\xe9\xbb\x7d\x3f\xa6\xd7\xed\x6c\xd4\xf7\x48\xfd\x89\xad\x02\x10\xe7\xdf\xd0\xf5\x37\x56\x08\x44\xc4\x7b\x2f\xf0\x11\xee\xe5\xc0\x23\x76\x7f\x07\x4f\xd6\x49\x4b\x79\x4b\xa9\xf7\xa9\x18\xc5\xcf\x0c\x2f\x46\x40\x71\x0d\x6b\x74\x2f\x31\x68\x47\x60\x39\x82\xfe\x2e\x1f\x07\xdb\x3c\x22\x31\x6d\x79\x5d\xce\x7b\x74\x1d\x7c\xac\xc8\xcd\xe9\xc2\x42\x14\xda\x2c\x9f\xd1\xb2\x26\xa5\x86\x8d\xe1\x36\xb1\x65\xdc\x51\x7c\xda\xf7\x03\x1f\x0e\xbe\xa1\xcb\x58\xb1\x0d\x8b\x2c\x0a\x91\xf6\x34\x11\x36\xd6\x47\x48\xa0\xfa\x65\x69\x6f\x14\x0a\x51\x02\xb9\x0e\x13\x44\xf8\xa4\x56\x58\x3a\x78\xb0\x9d\xf7\xd3\xac\x60\xd0\x1a\xd3\x71\xe9\x12\x3f\x5a\xb1\xef\xf9\xf6\x62\x66\xb8\xe6\x8b\x37\x7f\x4d\x01\xfa\xaf\x4d\x7a\x25\x1b\xd6\x17\x42\x44\x0f\x0f\x25\x77\x47\x9f\x39\x20\xff\x5e\x2a\x9f\xcc\x26\xbc\x63\x98\x26\xa1\xcd\x5c\x9c\xeb\x7c\xc0\xf6\xcc\x3a\x1f\xb0\x6d\xae\x9f\x97\x0d\x66\x3c\xdb\xf0\x0e\x9e\x3e\xf6\xfb\xa3\xf4\x14\x31\x96\x7e\xaa\xe3\x01\x39\x8f\x8d\x55\xe1\xff\xb2\x52\x8b\x1a\x25\xf6\xd0\x90\x7c\x15\x91\x2d\x48\xc7\xf1\xd7\x4a\xd5\x71\xfc\xb5\xc0\xc3\xc1\xcc\xc2\x42\x94\x0d\x68\x9f\xe6\x5e\x3f\x3a\xbe\xd2\xf8\x77\x70\x33\xe2\x47\x15\x76\x8b\xab\x93\xda\x9f\x81\xca\x07\xb6\x0f\xb8\x28\xa2\xe5\x78\x23\xf0\xb2\x92\x97\x54\x72\xf5\x08\xb0\x61\xa0\xbc\x8d\xcb\xf5\x8a\x07\x5e\x80\xc0\x97\x3d\x07\xa3\xcc\x10\x21\x8e\xde\xde\xc4\x06\xcc\x27\xc1\xd3\xca\x95\xa9\x48\xc3\xcc\x14\x51\x48\xa3\x03\x01\x10\xa4\x23\xf8\xb8\xa3\xd0\xbb\x69\x62\x0b\x93\x31\x62\x47\x16\x22\x25\x6e\xf9\x2e\x62\x35\xd7\x8a\xf5\x6d\xd9\x52\xf5\x41\xcd\x21\xc6\x96\x39\xc6\x81\xd7\xc3\xbf\xa4\xe4\xbf\x62\x9b\x14\xab\x33\x0a\x9d\x7a\x51\x79\xd4\x4e\x03\x1d\x84\x25\xe7\x3d\x25\x92\x7d\x5a\x99\x00\x3e\x50\xee\xdf\x0b\xd6\x64\x5b\x5a\x4e\x2b\xe3\x56\x39\x01\x98\xf3\x61\xea\x61\x8a\xdd\xe5\x7b\xe9\xd7\x11\xaf\x9f\xc6\x9d\x22\x88\xb9\x8d\xf5\x47\xbc\x14\xbc\xa2\xc6\x87\x13\xa0\xdc\xbc\x48\x33\x5e\xb9\xc5\x1a\xe2\xba\xae\x9a\x5d\xaf\x4d\xf3\xb9\x7d\xd5\x63\x1e\x0d\x6c\x52\x70\x79\x03\x94\x52\xc0\x2b\xf9\xb8\x41\x68\x72\x6f\xbb\x67\x87\x51\x58\xb4\x94\x70\xe4\x31\x2c\xa5\x82\xaa\x74\x7e\x66\x71\x1a\x2e\xd1\x57\x6b\x47\x0b\x3e\x56\x4d\x1a\x93\x65\x66\x75\xa6\xb5\xce\x3f\x1b\x1b\xff\x86\xb1\xd2\x74\xbc\x35\x01\xe5\x67\x51\x29\xc1\x61\x3c\xa6\xc4\x38\x97\xec\xd3\xd5\x93\xc2\xd0\x86\xd9\x37\x36\xa3\xcb\x81\x62\xdb\xdc\xa5\x37\x80\x20\xfd\x65\x62\x0c\xf0\xf0\xe7\x1c\x09\x95\xbd\x2b\x54\xbf\x12\x0b\x75\xba\x6b\x24\x79\x53\x1d\x9f\x55\xfc\xa8\x54\x6d\xdb\x37\xf1\x38\x30\x54\xbf\x1f\x28\x95\xa1\xbb\xda\xd1\x7a\x6a\xec\x51\xda\x77\x09\x2e\xc2\x76\x26\x5e\x4f\xe7\xd6\x2d\x15\x5a\x3d\x28\x55\x26\xf4\x0d\xc0\x42\x30\xc1\x6f\x29\x1f\xcd\x2a\x32\x89\xa5\xcc\x85\x39\x7f\x46\xbb\x76\x9d\x09\xb6\xb9\x2c\xe0\x85\x79\x92\x58\xe7\x62\x7b\xc7\x57\x3d\x2f\x68\x94\xe4\x15\x45\xa0\x8b\x92\xe5\x74\x49\x18\x47\x0a\xfc\xf6\xbc\x03\xbf\x35\x2c\xb8\x55\xc4\x93\x99\x55\x13\x2b\x65\x6c\x96\x58\xe2\x13\xd7\x8e\xef\xa6\xcb\x24\xbb\xe6\xf8\xf8\x7f\xa5\x22\xd2\xbf\xaa\x85\xe7\xcf\x3d\xd7\x36\xbd\x17\xab\xa0\x05\x85\x1f\xf4\xb3\xbf\x4e\xd3\x84\x8f\x9b\xfc\xa9\x17\xd3\x14\x15\x1f\x11\x83\x6c\x39\x6d\xd5\x13\xaa\xe2\xf3\x3b\x08\x3a\xa5\x65\xec\x89\x68\x79\x91\xc6\xc5\x4b\x03\xb8\x60\x7c\xc1\x49\xc6\x7a\x4f\x84\x4b\x6a\x3d\x08\x4d\xc6\xc0\x72\x36\x0c\xa5\xbf\x13\xf3\x50\x1d\x63\xbf\x98\x42\xa8\x09\x41\xea\x06\x35\xbc\x8e\x01\x11\xc4\x28\x2b\x3c\x3a\x69\x48\x7a\x4a\xee\xb7\xd5\x8e\xf4\x3b\x58\xec\xd0\x05\x7a\xbb\x54\x6d\xf4\x4d\xd4\xe7\x44\xfd\x00\x84\x05\x0c\xe7\xeb\x35\xd0\x45\xb5\x3d\x47\x89\xad\x62\x92\x88\x1a\xb3\x2e\xcf\x40\xb4\x2b\x5d\x84\xf5\x4f\x78\xc7\x8e\xf6\x60\x14\xf6\x69\xa1\xc7\x9b\x03\xbe\x98\x8f\x9b\x4c\x66\xba\x86\xc7\x14\x76\x41\xe6\x92\xf3\x49\x93\xcc\x4a\xcf\x0e\xd3\x49\xf7\x48\x20\x72\x04\xb6\x2c\x03\x6a\x10\x15\xf9\x28\x9a\x52\xd2\x9f\x50\x0f\x9c\xa0\x65\x23\x06\xbf\x59\xfe\x7c\xfd\x77\x8a\x2a\x80\x4a\x07\x83\x51\x12\x85\xe8\x99\x4e\xa9\x59\xf8\x04\x2d\x2d\x68\xdd\x3f\xd9\xf1\x9b\xc6\x07\xaa\x6b\x90\x9b\xa4\x97\x4f\x4f\xb8\xec\xb7\x9c\x8a\x31\xa4\x27\x44\x0b\x52\xfb\xf5\xd7\x8b\x68\x2b\x51\xde\x97\x89\x2d\xc2\x23\x3e\xe9\xf0\xe1\x40\xd7\xe6\x91\x5d\x94\xde\x97\x04\x45\x53\xde\x52\xae\xae\xac\x3f\xb7\xaf\x1d\xa6\xa3\x24\x8c\xe2\x29\x45\x0a\x67\xf3\x09\xf1\x26\xf6\x41\xe3\xa9\x26\xa2\xa5\x2b\x3f\xa3\xb2\xd0\xe4\x9c\xff\xb4\xc3\xf5\x87\x69\x56\xa5\x0d\x2e\xd9\xc0\xd0\x7c\xa8\x09\x07\x0f\x3f\x12\xa3\x21\x42\x22\x4a\x3c\x44\x8b\x8a\x6c\x57\x52\x5e\x83\xa8\xb0\xbd\x69\xaf\x14\x7b\x49\x23\xf9\x81\x42\x64\x91\x01\x4c\x2a\x51\x1c\x98\xe0\xa6\x2d\xe5\x9b\x7d\x44\x7b\x1e\xeb\x39\x9f\x28\x70\xcb\x77\x94\x82\x07\x73\x5b\x31\xc8\xd6\x10\xac\xf0\x49\xa9\xc2\x89\x0b\xb5\x29\x37\xb7\xaf\x1d\x57\x4f\x27\x4e\xf2\x7e\xc4\xfa\x7c\x42\x5b\x51\x2e\x5d\xa7\x5c\x25\x76\x18\x9b\x28\x21\xda\x02\x76\x98\x42\xc1\x51\x4f\x50\x54\x8c\x0d\xe6\xb4\x8a\x01\xa1\xe8\x82\xee\x4c\xab\xf3\xb8\xce\x3e\x6c\xf6\x18\x85\x2b\xd8\x89\xee\x2a\x10\xff\x96\xb1\xf2\x9d\x78\x95\xea\x70\xa2\x3b\x8f\xdd\x52\x21\xb9\x9f\xe7\x31\xf9\x7f\xa1\xc5\x8f\xe7\x73\xad\x6c\x3d\xf7\x9c\x1c\x2b\x29\xb3\x47\xd1\x39\xc2\x36\xfc\xef\x4a\xdf\xd1\xbc\x56\x7a\x75\xd2\x5b\x81\xd2\xf9\x7f\x43\x05\xd5\x45\xdf\x24\x4b\xf9\x62\xb4\x4c\x9d\x59\xdf\x37\x7f\x93\xae\x90\x8f\x9b\x2a\x93\x5d\x6b\xbc\x15\x96\x48\x47\xb5\x9c\x86\xc2\x09\xdd\xa2\xb5\x26\x0b\xfb\x9b\x54\x5f\xe7\x18\x7d\x3b\xc2\x35\x76\xf3\x72\xf6\x12\xbe\x3d\xfb\x7f\x4f\x52\x2c\x14\x13\xf2\x58\xad\xf7\x27\x63\xdb\xe6\xb9\x8d\x0b\xd8\x60\xa3\x4b\x77\x44\x8b\xb2\x1d\xf1\x6d\xda\x2a\xb1\x8b\x96\xad\x0a\x70\x5f\x55\x56\x7f\xaf\x36\xe1\x7a\x56\x4c\x11\x3a\x2f\x20\x60\xa7\xc0\xb2\xe3\xe3\xc0\xab\x5f\x25\xa3\x22\x8b\xa4\x33\xaa\x6a\x42\xca\x64\xe9\x6d\xd5\xe2\x29\xa2\x41\x9a\x51\x9f\xa1\x1a\xea\xe8\x1c\x1e\xc7\xa6\xc5\x27\x35\x44\xc8\xae\x5d\xed\x25\xcb\x76\x2d\xf8\x42\x94\x37\xf1\xf7\x58\x18\x51\x8c\xfe\x72\xa0\x4d\x81\x26\xe6\xe6\x70\xc5\x4c\x55\xa3\x04\xc3\xea\x2d\xc4\xda\xd8\x01\x81\x51\x93\xac\xa7\x0e\x4c\x9e\x6b\x77\xb3\xc8\x2e\xc4\xab\xd3\x7e\x2f\xbb\x8d\xce\x23\x66\x27\x90\x6b\xe8\x4a\x1c\x55\x52\x1b\xdf\x2c\xd7\x77\xa0\x77\xed\xda\xd3\xee\x45\x99\x25\xb7\x73\x27\x3e\x82\x17\xf1\x8e\x7a\x29\xef\xd4\x56\xf5\x5d\xbb\x60\x90\x43\x4b\xa6\xab\x3e\x28\xb3\x65\xdf\xad\x7b\xd1\xbc\xf4\x12\x16\x3d\x14\x96\x10\xaf\xf1\xf1\xb8\x2e\x20\xd5\x33\x85\x41\x1a\x5f\x30\x94\x5d\x78\xe5\x98\xaf\x98\xa2\x57\x03\x8a\x71\x1c\x00\xd7\xc3\x7b\xce\x28\xd9\x9d\xbe\xc9\x8b\x55\x7a\xd0\x08\xa3\x8f\xe2\x41\xa3\xc0\xf2\x63\x7a\xd0\xc8\x18\x2e\x36\x98\xd0\xec\x6e\xe7\x85\x4d\x12\x5b\x14\x5c\x64\x73\x72\x93\xaa\x3d\xe7\x16\xb4\xbc\xc8\x22\xce\xf3\x59\x02\x5c\x91\x48\x8e\x2a\x04\xce\x07\xfa\x62\xeb\x2f\x78\xe7\x7c\x7b\x98\xd9\x22\xcd\x22\xc8\xb5\x20\x69\x66\x77\x58\x3e\x99\x28\x2f\xe4\x45\xda\xd2\x6c\x75\x66\xbf\xf0\x49\x93\xed\x3a\xb5\x0f\xa7\x5a\x8a\xf0\xe7\x79\x46\x57\xf0\x69\xd1\x05\x50\x66\xbd\xcb\x96\xd5\x33\xd8\x7d\x11\x7f\x28\x56\x8c\x92\x95\xf6\x56\x13\x33\x88\xc2\x29\x1f\x37\x71\xea\x22\x79\xae\x1f\x55\xdf\xab\x4d\xad\x4f\xb4\x17\x47\xab\x1c\xa8\x08\xfd\xb7\xf5\xf9\xcf\x7a\xb5\x79\x8f\x3b\x53\x86\xf5\x61\x9a\x2c\x44\xd9\x20\x12\xe6\x10\x86\xcb\x59\xec\xc9\x7c\x52\x7a\x22\x45\x6c\x4d\x6f\x93\x2e\xc4\x56\x33\x44\xf7\x13\x10\x22\xdd\x0c\xd6\x4d\x64\x11\x1e\xf8\xf7\x81\x52\xd7\xfa\xb2\x13\xac\xcb\x57\x45\xe9\x7b\x4a\x81\x5c\x6f\x2a\x21\x8a\x0f\x4b\x85\xda\x3b\x57\x0b\x45\x3e\xd1\x1e\xda\xcc\xe6\x45\x96\x46\x4b\x78\xf5\xd8\x35\x4e\xd2\x6e\xc8\xc7\xca\x5d\xdc\xc4\x69\x62\x11\x9f\x61\xd9\x66\x39\x38\x6c\x81\x47\x4a\x8f\xd4\x64\x9a\x0f\x4e\xae\xa9\xa9\xb9\x60\xe2\xdc\x62\x27\xd1\x4b\x47\x7d\x1e\x0d\xd2\xa4\xe8\x6f\xa5\x65\x51\x41\xde\xbd\x9e\x11\xcd\x45\x94\xbf\xdf\xa7\x59\xc5\x72\xc5\x6a\x53\xfd\x8f\x4f\xd3\xca\x88\x0c\xf6\xbe\xd2\xdc\x7f\x82\xe2\x7a\x7c\xe0\x4a\xe0\xeb\x14\xc7\x15\x29\x85\x5c\xd1\xf2\xcd\xd5\x2d\x61\xbf\x3d\xaf\x34\xaf\x6e\x63\xbd\x16\x05\x41\x25\xe5\xfc\x21\xa6\x3b\x03\x3e\x83\x09\x04\xcc\xce\x79\x65\x7b\x29\xa5\x17\x86\x72\xca\x3b\x14\x4d\x75\x0f\x72\x62\x6b\x29\x29\xf6\xd6\x57\xe7\xf9\x76\xb1\x12\x91\x33\xab\x47\x33\xde\x0a\x3c\xca\x9f\x03\x5a\x11\x62\x50\x3d\xab\x7e\x94\x15\xf9\xb4\xdf\x9f\x4f\x6b\x02\xf4\x90\xee\x17\xc7\x6b\xca\x97\xe4\xaa\x2a\x4c\xc7\x66\x65\xd5\x66\x33\xf4\x2e\x84\xd9\x88\xbe\x82\xa3\x36\x3a\x77\x4b\x54\x4b\xd0\xbc\x68\xd1\x0b\xc0\xdb\x3b\x3b\xe9\xaa\x67\xf2\x96\xea\x18\x61\xf2\x0a\x91\x62\x52\xe7\xc8\x24\xab\x1f\xab\xbe\x1e\xf8\xf3\xbf\x2e\x15\xc7\xad\xc4\x4a\x81\x52\xf4\xef\x22\xff\x47\x95\x71\xad\xf4\x78\xb5\xef\xd2\x30\x07\x05\xe6\x68\xa9\x06\xec\x0d\x4c\x64\x4c\x80\xb3\x14\xc0\x70\xda\x18\xb4\x76\xec\xd0\xa2\x23\xcf\x4f\x48\x43\x62\x3f\x66\x7c\x0f\x56\x90\x77\xa9\x2a\x21\x04\x31\xda\x32\xd1\xcd\xbb\x46\xb5\x12\x71\x6a\xa4\x69\x84\xf5\xf3\x06\xc5\x72\xae\xbc\xb3\x67\x96\xc7\xdc\x75\xa0\x18\x05\x35\x4a\xef\x14\x57\xf8\x18\xfa\xac\xf8\x9f\x35\x05\x09\x5d\x31\x49\x62\xf0\x38\x31\x09\xb8\x44\xc4\x27\x1d\x1f\xb7\xf5\xd3\x95\x28\x5c\x6a\x51\xcd\x94\x15\x28\xb5\xb2\xea\x05\x17\x4b\x99\xe1\xd0\x64\x36\x29\x28\x12\xe0\xb8\x98\x44\x1b\x04\xed\x3e\xe5\x2d\x5a\xd1\xd3\xa2\x94\x79\xdf\xf6\xce\xc4\x06\x62\x62\x58\xf7\x09\xa2\x89\xde\x10\x10\xfb\x3f\xc4\xc3\x40\x4d\x6f\x4d\xe9\xfc\x33\xb2\xce\x79\xae\x54\xf7\xac\x8b\x90\x3c\x0e\x68\x9e\x21\x4f\x5f\xc3\x22\x2a\x41\x8e\x52\x51\x39\xaf\x34\x35\xb7\x8e\x7d\xed\x75\x98\x45\x49\x18\x0d\x63\xcb\x3a\x72\x4e\xf6\xaa\xfa\x65\x94\xf3\x5f\xd1\x1a\x08\x27\x6b\x61\xca\xbe\x17\xda\x99\x19\x46\x3d\x65\x86\x7e\x43\x19\x71\xde\x70\x40\x5c\xc3\xda\xac\xbe\xba\x7d\x5a\xf3\x69\x4e\x7f\x64\x4e\x37\x34\xab\x2e\x1a\xe7\x56\x0f\xf6\x07\xe9\xfb\xac\x5f\xe6\x0f\x1e\x6c\x47\xc9\xb2\xc9\x22\xd3\x8d\x57\xa7\x7c\xbd\xf5\x0f\xb4\x96\x30\xb4\xe2\x11\x9a\x5c\xd6\xae\xf3\xbd\x65\x2a\x68\xcc\xed\x63\x6e\x1c\x3c\xbc\xf9\xd8\xf3\xf6\x4d\x6e\xb9\xca\xa3\xf0\x30\x9e\x5d\xa4\xc4\x15\x43\x9b\x59\x13\x73\xaf\x1c\xb3\xf2\xbb\xa5\x53\xdd\xfe\xff\x7f\xb7\x16\x9f\xc8\x8d\x8f\x92\xb0\xa5\x02\xa1\x73\xaa\x3e\x7f\xce\x6f\x8a\x40\x0a\x45\xf9\x40\xa9\x26\xa3\x1a\x2c\x37\x5a\x6f\xcd\x55\xeb\x70\x9a\x15\xa2\x57\x81\x04\xe2\xb2\x72\x7a\xfd\x37\x04\x94\xb8\xac\x2a\xa7\xdd\x51\x56\xb4\x94\x30\xe9\x69\x2d\x4e\x74\x5a\xdd\xae\x49\x92\x11\xbb\x6b\x7c\x81\x59\x84\x6b\x97\x15\x72\x20\x31\xcb\xc4\x29\x55\xe2\x1c\x13\xfa\x1f\xfe\x9b\x96\x23\x53\x85\xa8\xff\xef\x34\x4c\xea\x04\x45\xa6\x3b\x71\x4e\x83\x45\x99\xc5\x69\xf9\x64\x2c\xdb\x52\xdf\xc4\x0b\xfd\x2a\x66\x93\xbf\x16\x92\x4c\xf5\xd3\xc2\x91\x59\x3f\xcc\xaa\x00\x3d\x59\xcc\x6c\x2f\x12\x6a\x02\xbb\xc9\xd0\x73\x14\x67\x99\xed\x7a\x75\x2a\x38\x15\x15\xbf\x03\xf4\x27\xf8\xb8\x49\x1b\xab\x30\xdd\x38\x8d\x7a\x4a\x2e\xf0\x88\x52\x34\x3f\xb2\x5e\x43\xa1\xca\x36\xf6\xcc\x6e\xf3\xd4\x9c\xaf\x63\xd1\xc6\xc2\x85\xb4\x47\x26\x32\x5d\x86\x33\xc9\xf1\x1d\x8e\x6f\x71\x89\x5b\x6a\xc2\xbe\x74\x76\x51\x49\xa7\xfd\x65\xa0\xd2\xb9\xf3\x58\x2f\x18\x5b\x41\x13\x8b\x55\x05\x15\xae\xa4\xb0\xbd\x27\xab\x0b\xc3\xfe\xf3\xf4\xd8\x83\xbe\x7f\xaa\x53\xed\x32\x4e\xf8\xe8\xf3\x9f\x65\x6c\xce\xd9\x52\x75\x26\x51\x4f\xc3\x42\xfb\x8f\xc7\x8a\xe0\x71\x49\x79\x1b\x71\x17\x0e\x3b\xc3\xc7\x69\xd3\x65\xd5\x1d\x54\x5d\xf0\xde\xcf\xea\xf0\xfd\x5e\xa9\x0d\x86\x6e\x2a\x8d\xc0\xde\x3f\x03\xc5\x88\x42\xcb\xff\xf6\x9f\xa3\xd9\x83\x1d\xe8\xe3\x63\x4f\xed\xdc\x36\xf6\x80\xf6\xbe\x8d\x87\x24\xfd\xba\x53\xf8\xc5\xc0\xac\xd1\xf1\xfb\x4f\x13\xc1\x53\x47\xda\xd2\x17\x56\x38\xe0\xe3\x88\xf4\xc4\x6a\xc9\x33\x23\x6f\xd5\x95\x46\x5e\xd8\x4b\x38\x62\x2f\x71\xc7\xee\xc2\xca\xf9\xf6\x52\x13\x04\x3e\x4f\x17\x0a\x9b\x70\x07\x4c\xe4\x05\x5a\x4a\xec\x67\x7d\x19\xf6\x17\xdb\xbe\xae\xe6\x4c\x68\xbc\x21\x8d\x6b\x8a\x0e\x47\x31\x20\x9a\x62\xb4\xa2\x5a\xd2\xe0\xc5\x21\x53\x3f\xdf\xa4\x31\xd7\x8d\x7a\x3d\xc7\x8e\x74\xe2\xac\x0e\xee\xf0\x8a\x32\x2c\x3a\xad\x0c\x1c\x17\xd3\xb8\x97\x87\x7d\x1b\xf5\x6c\xd6\xd2\x08\x36\xde\x00\x85\xcb\xb1\xfe\xe9\xed\x99\x6d\x47\x49\x98\x55\x4b\x04\xef\x4a\xd8\xfb\x19\x1b\xc2\x27\xaa\xb4\xdf\xb3\x83\x34\xcc\x4c\xb8\xda\x52\x7c\xeb\xa3\x98\x07\x7c\xd2\x10\xad\x52\xaa\x99\x45\xdc\x48\x43\x08\xf8\xab\x0a\xcb\xf2\xab\x4a\x57\x3c\x1f\xa6\x4b\x36\x5f\x49\xab\x8d\xc5\xb7\xbd\x8f\x69\xd0\xf6\xb1\x1a\x72\x89\x0a\xb4\xc3\xa1\xcd\x70\x59\x88\xb8\x8f\x94\x9e\x5a\x79\xa4\x06\xa8\x27\x8d\x0d\x6b\xf2\x34\x81\xf8\x9d\x07\x9e\xab\xb0\xee\xbc\x7b\xab\x99\x11\xc8\x3f\xbe\x10\xe6\x71\x7c\xdc\xc4\xf0\x8d\x4d\xd8\x17\x65\x16\xec\x2d\xaf\x95\x7e\x9f\x79\x4d\x61\xd4\xc3\xd8\x0c\x88\x39\xe1\x4b\x4d\xe7\xf5\x38\xa9\xe5\xd6\xd5\x0a\x17\xa6\x79\x81\x65\x9a\x9b\x6a\x2a\x72\x7f\x53\xe5\x5e\x45\x7f\x34\xe8\x4e\x70\xcb\xe9\x0f\x85\x67\xee\x39\x96\x8b\xe9\xb2\xcd\x12\xc8\x17\x57\xa3\x97\xc5\xa4\x90\xd3\x89\xb2\x54\xdd\x92\xe5\xf9\xf6\x30\xca\x8b\x14\x55\x30\x0e\xe6\x02\xa5\x95\xf3\x43\xb5\x7d\x16\x54\xb2\xdd\xa3\xe2\x7c\x4f\x92\xf6\x41\x85\x5d\xf4\x62\x40\x72\x11\x9e\xbe\x75\x49\x65\xe4\xbd\x68\x61\x21\x0a\x47\x71\xb1\x4a\x04\x1c\xd4\x3d\xae\x61\xb5\xc7\x3a\x0e\x5d\x0f\x3e\xa6\x35\x99\xff\x48\x19\x14\x65\xd6\xf4\xe4\xe9\x4b\x4e\xae\x80\xaf\x37\x15\xfe\xa4\x6b\xb2\x2c\xb2\x19\x09\x6e\x73\x90\xb0\x36\x41\xad\x2b\x7d\x9d\x4a\xd7\x62\x36\x76\xfc\x77\xf4\xd8\xc1\x9d\x82\x0e\xd6\x00\x57\xdc\x55\x26\x6b\x0a\xc1\x75\xfd\xa8\xdd\x33\xbb\x07\x8c\x21\xeb\x91\x48\xbc\xc8\x22\x7f\x91\x15\xd7\xb7\x8f\xfb\x69\x62\x57\x91\xc0\x4f\x38\x37\x63\xb7\x10\x96\x1a\x9f\x05\x9a\x39\xab\x7a\xd0\x59\x94\xdb\x84\xb2\x46\x67\xb2\xe7\x24\xf8\x6e\xd0\xe5\x4b\x0b\xda\x6f\x44\x57\x6a\x41\x1d\x0d\xdc\x2c\x5d\xe9\xc9\xa5\x37\x05\x0b\xfe\xfd\x0e\x6c\x91\xa5\x03\xdb\x8b\x0c\x81\x0b\x85\xa1\x4d\x9f\xe4\x13\xc5\x0f\x73\x0b\xd9\xa3\xf4\x07\xa8\x2e\x30\x1c\x15\x37\x74\x84\xd6\x6b\xc4\xc1\xaf\x22\x9b\xc7\xde\xcf\x4e\xf9\x78\x59\x57\x30\x7c\x11\xec\x5e\x29\x55\x01\x1c\xdc\x48\x06\x65\x4f\xf8\x02\xd0\xd3\x45\x3e\x7d\x5d\x2b\xe1\x5c\x51\x78\xd0\x23\xaa\x4f\x5c\xd8\x6c\x10\x25\x26\x9e\xf6\x70\xfc\xbf\x2e\x27\x7b\x60\xce\xf1\xf0\x92\xaa\x0b\xfc\x75\x6d\x2d\xd8\xb1\xa3\x9d\x8f\xf2\x3e\xb7\xf0\x04\x7a\xa3\x1e\x2e\xaa\xf6\x82\x5f\xdc\xee\xa9\x04\x8b\x69\x6c\x73\x8b\xe0\x1a\x37\x0b\x60\x1d\x1f\x2b\x8d\x03\x27\x6a\x26\xc0\x1c\x36\xdd\xc1\x83\x12\x07\x9e\xf5\xa1\x61\x15\xb9\x45\x83\xae\xcd\x62\x93\xf4\x94\x20\x22\xee\x47\x18\x1c\x5e\xe2\x37\x4c\x93\x30\x1e\xe5\xd1\xb2\xad\x36\xd9\xb9\x7d\x5e\x28\x68\xa7\xa8\x7c\x5c\x54\xa1\x54\x9a\x15\x8f\x57\x5f\x4a\xb9\xdd\x36\x50\xb1\x11\x11\x6e\xe9\xe8\xe0\x8d\xd7\x03\x84\x43\xef\xd3\xb0\x45\xce\x31\xd5\x51\xa0\x92\x99\xb1\xc2\x93\x6e\xe9\x78\x8c\xd5\x31\x3c\x4b\x4c\xce\x8d\xe3\x09\xe7\x55\x7f\xfb\x73\x4f\x02\x1f\x24\xb4\x78\xa5\x49\x70\x2c\x50\xd7\xaf\x9c\x20\x4c\x98\xd9\x7c\xba\x8a\xce\x50\x36\xbf\x07\x9c\x80\xe8\xa9\xf8\x37\xf1\x9d\x52\xb5\xde\x4e\x38\x68\xe6\x62\x66\x92\x5e\x94\x32\xfd\x13\x17\x7e\x45\xf9\x12\x5c\x99\xa8\xde\x5a\xd3\x7b\xc6\xaf\xea\xd7\x34\x9c\xef\xac\xf2\xd6\x3e\x4b\xe0\x30\x8e\x3b\xa8\x52\x82\x14\x9f\x3b\x07\xb8\xbd\x3f\x60\x18\x29\x02\x25\xce\x43\x11\xec\xdc\x54\x92\xfd\x5f\x43\x82\xef\x50\x86\x0e\x89\xcf\x78\x7d\x2c\x71\xbf\x8d\xbe\x0f\x0a\x69\x0f\x79\x31\x62\x27\xbc\xa0\xa5\x09\xc0\xd5\xf3\x15\xeb\xf3\x09\x81\x56\xe5\x97\x77\x0a\xe5\x7a\xbe\x32\xc4\xbb\xd8\xea\xbe\xad\x28\xbb\x99\x5d\x8c\xc8\xba\xc4\x31\x81\x9a\xc4\x72\x1b\x7c\xe9\xe2\x28\x59\xb4\x5e\x3e\x4d\x9b\x74\x39\x79\xd1\x79\xcf\x49\xf3\xa5\x2b\x7b\xa8\x6f\x62\xf6\xf4\x61\xbd\x02\x02\x51\x8a\x76\xc1\xa3\x6e\x65\x78\x29\x37\xd3\x4a\xfd\xf2\x24\x95\x92\x50\xff\x64\x22\x94\x23\x88\xec\x11\x13\x91\x93\x2e\x11\x1e\x66\x69\x92\x8e\x92\x50\xd6\x57\xb1\x44\xa8\xae\x50\x1c\x0f\xfc\x96\x3f\xb0\x26\x1f\x65\x64\x59\x40\x01\xab\x5c\x19\x3d\x50\x2c\x73\x2f\x4f\x68\x07\xd4\x16\xf4\xb9\x7d\xed\x65\x5b\xd8\xcc\x24\x82\x10\x66\x43\x43\x0c\x0a\x71\x37\xf4\xb3\x36\xb3\x10\x3d\x61\x84\xa6\xb6\x7e\xb8\xa3\xfa\x65\x36\x59\xb4\xf1\x12\x4b\x5d\x3b\x99\xd1\x9d\x9e\x7f\xad\xf0\x37\x77\x5c\x9d\x6a\x21\x26\xeb\x24\x4d\x74\xbe\xa8\xf0\x31\x17\x55\x1e\x6a\x0f\xd9\x70\x54\x4c\xd4\xb5\xcf\x97\xbe\xde\x31\xd1\xa7\x04\x5f\x8e\xff\x43\xd5\x23\x17\x6d\x36\x30\xc9\x2a\x9b\xb3\x8a\x6a\xbc\x8f\x83\xd8\xfb\x0f\xe3\xfc\x20\x12\x7c\x07\x87\xaa\xae\x1f\xbb\xc7\x35\x25\x5c\xf8\x7f\xe0\x15\x73\xf1\x39\xf0\xe2\x79\x97\xe8\xe2\x80\xd9\x39\xa5\x9e\xa7\x8d\x2d\x56\x7e\x8c\x04\x48\xf9\x33\x40\x66\xcc\x65\x07\x69\x1d\xf5\xd3\xa1\xed\x01\xc7\x27\x0d\x70\xfa\xa8\x94\x90\xe8\xa7\x51\x0c\x3a\x4c\x23\x06\x0b\x28\xef\x6e\x98\xbb\xad\x4e\x03\x8f\xb3\x2b\x56\x5c\xc2\xa2\x39\x83\x19\xce\x27\x0d\x5e\x5c\xed\x38\x5d\xb1\xd9\x8c\x9f\x2c\x17\x31\x57\x99\xe1\x4e\x37\xee\xa4\x06\xaa\xcb\x62\xba\x36\x96\x14\x41\xcc\x3b\xd7\xee\x7e\x6a\x93\xe8\x10\xba\x62\x80\x23\x41\x82\x4e\xe2\x1d\x0f\x03\xe1\x6e\x31\xaa\x7a\x0f\x5d\xd0\xb9\x10\x93\x06\xd3\x74\xf5\x21\x07\x02\xd8\x3f\xeb\x84\x5a\xe9\x9b\x01\xc4\x7c\x5c\x99\xa4\xaf\x35\xba\xb2\x8c\x8a\x85\x38\x5d\xe1\xd0\xdf\x59\xe0\x28\x58\x4a\xdd\x8a\x66\xcf\x6c\xdb\xd8\x22\x31\xd4\xd7\x16\x61\x7a\xa5\x3d\x75\xde\x89\x93\xf4\x22\x5b\x4c\x6b\xfc\x1d\x36\x6d\x44\x65\x28\x0d\x61\x91\x7c\xa7\x9c\x10\x59\x5e\xbf\x3b\xef\x98\x6b\x77\x4d\xbe\x64\x8b\xae\xa9\xd2\x55\x6f\x53\x8c\xd9\x2f\xc2\x9e\x1e\xf3\x76\xa7\x96\x74\x1d\x3c\x58\x65\x45\x7d\x9b\x51\xe7\x13\xb9\xe2\x2b\xa5\x9f\x2b\x57\xb0\x08\x60\x44\x9d\x6d\xd2\xd9\xff\xf9\xf6\x70\x94\x0d\x63\x2d\x22\x70\xa5\xf4\x61\xf3\x15\x25\x70\x98\x17\x51\x08\x64\x9d\xa3\x2d\xa1\xc0\x27\x01\xef\xcf\x7e\x94\x62\x09\xe0\xcc\x2e\xa5\x70\xac\x10\xcf\x10\x51\x76\x75\x04\xd1\xce\x8b\x74\x48\x11\xc8\xc4\x10\x94\xb2\xb0\xac\xb5\x26\xcf\xd3\xac\x18\x48\xdd\x8b\xd1\xc0\xca\x40\xf1\x82\xea\x2c\xa5\xd0\xe0\xd7\x6b\x24\x3b\xa6\xf2\x49\xa3\x10\x41\x6c\x46\x49\xd8\x6f\x29\x93\xbf\x1f\x2b\x14\xcd\x8f\x27\x6c\xd8\xf2\xc7\x68\xbc\xa1\x9a\xf4\x4f\x48\xa0\x79\xed\xa7\x09\x42\xc9\xae\x39\xa5\x36\x55\x54\xf5\xf2\x52\x19\x1e\xb6\x89\x62\x37\xb1\xb1\xa2\x76\x74\x9d\xd6\x1f\xa1\x6c\x28\x9d\x9e\x8b\x3f\xa3\xcc\x73\x9f\xa5\xfa\x14\x95\x43\x7f\xeb\xe7\x10\x11\xa1\x8f\x77\xcd\x0b\xdd\x8d\x06\x83\xa8\xa0\x99\x8f\x6b\x79\x9c\x3e\x8f\xfe\xc8\x9d\xd2\xe7\x71\xb0\x50\x74\x82\xab\xd5\xbd\xa1\x72\x75\xb8\x14\x61\x9c\x9e\xcd\xb7\x54\x1f\x60\xeb\x20\xdc\x08\x13\xdb\xf1\x09\x04\x0f\x13\x9e\xbc\x50\xfc\x44\x61\xe8\x03\x2c\x6d\xd8\xf7\xee\xa8\xce\x10\x7a\x5f\xc2\xef\x93\x90\x6b\xa5\x1f\x0d\x73\xb3\x62\x7b\x53\x3a\x11\x52\x68\x11\x84\x02\xc2\x41\x7e\x42\x41\xdb\x47\xb9\x90\x05\x04\xb1\xe8\x73\xa6\x63\x4d\x96\x6c\x3d\x6b\x87\x34\x2d\xd9\x90\x80\xc6\xab\x8b\x68\x3d\xee\xec\xfd\x06\xf1\xd0\xb9\x76\xba\xb0\x90\xdb\xc2\x03\x78\xa4\xaa\x53\x7d\xa1\x14\x75\xd6\x7f\x6e\xe7\x7c\x3b\xec\x67\xe9\x20\xcd\xd3\x81\x14\x2e\x98\x73\x4a\x3f\x2e\xfc\xd3\xa7\xd4\x06\x98\xd8\x8c\xdc\x77\x55\x42\xf9\xce\x44\x39\x97\xda\x57\x58\x2c\x2f\x97\xd4\x09\x63\x19\x25\x45\x70\x7e\xa7\xf4\x49\xd2\x57\x88\x8a\xc8\xc7\x2a\x80\xa2\x4a\x7d\x8a\x78\x00\x05\xb7\x07\xea\x1b\x6e\xd0\xab\x43\x1b\xf5\x48\xf9\xf4\x64\x3d\xf8\x73\x73\xed\x1d\x3b\x36\xfb\x7a\x2c\xfc\xc7\x11\x12\x1c\x46\xb2\xc6\x4d\x49\x55\xe9\xbe\x4e\xd7\x04\xbc\xf3\x71\x5d\x50\xbd\x4b\x9d\x41\x11\x09\x7e\x54\xb5\xc9\xe3\x27\xbd\x07\x31\xab\xb3\x89\x4e\xa8\x6f\x26\xfe\x3e\xb2\x11\x14\x81\xee\xeb\x85\xe5\x5a\xa0\x4c\x37\x1e\xef\x50\xbc\x8d\x99\x70\x4a\xe1\xb0\xb9\x5d\x84\x71\xfd\xc7\x4a\x40\x9c\x09\x0a\x88\x42\x66\x3a\x14\x06\x0b\xd8\xce\xd7\x69\x6f\x71\x5d\x1b\x53\xff\x88\x1a\x0f\x37\xb0\x01\x73\xed\x42\x59\x09\x5c\x56\x37\x19\xdb\xc5\x96\xe2\x64\x9e\xd2\xa5\xcd\x53\x93\x6e\x2d\x36\xe3\x76\xad\x62\x9c\xdf\x50\x99\xec\x0d\xaf\x1b\x62\x92\x6a\x61\x9f\xf6\xd5\x2f\xa6\x88\xa8\xd5\xf7\x79\x2e\xc6\xdc\x55\xc8\x89\x9f\xec\x38\x4c\x4c\xba\x60\x78\xc0\xca\x76\xd9\x72\xaa\xbe\xf5\xdd\x96\x8a\xbf\x23\x72\x38\x98\x77\xad\xc5\x72\xa2\xcf\xa8\x02\xd6\xc4\x6e\x51\x22\x29\x97\xb4\x47\xc3\x3b\x84\x1a\xc1\x12\x75\xd2\x1b\x37\xfd\xe9\xc7\x3b\xca\x5b\xea\x21\x16\x1f\xfc\xd5\xed\x09\x84\x3e\x9a\x65\x08\x69\xbf\xed\x56\xc8\x05\xbb\x62\xf3\xa2\xa5\xc4\x75\x2f\x4c\xd8\xcd\x3d\xad\x26\xc5\x70\x14\x03\xa6\xf7\x51\xaa\x1b\x8f\x6a\x38\x9c\xee\x0a\xb3\x2f\xb1\xf4\xb1\x1a\x50\xe0\x00\x58\xee\x17\x71\xd5\xdb\x81\x92\x76\xba\xed\xd6\x44\x0a\x9c\x12\x81\xbc\x3b\xab\x37\x6f\xfb\xd6\xe4\x18\x9d\x0e\xa3\xd1\x40\x99\x3a\x4d\x2a\xbd\x4f\x68\x73\x99\x95\x96\x2f\x0e\x71\xbb\x8b\x4f\xb4\x36\x50\x66\x96\x6d\x2c\x57\x21\x7a\xf6\x5a\xdc\xde\xf7\x0a\xa3\xc1\x30\x8e\x16\x22\x49\x91\xf0\xf8\xaf\xa8\x26\xc3\x95\x5a\x99\x73\xf7\x0b\x7b\xdb\x83\x28\x21\xec\xae\x43\xd5\x9e\xd1\xf0\xd8\x86\xfe\xe2\x17\xda\x51\xb2\xac\xca\x74\x98\x26\xc8\x31\xf9\x78\xa2\xb4\x98\xdb\x2a\x14\xa3\x69\x80\xc2\x0f\x10\xee\x2c\x76\xa6\xe4\x70\x37\x50\xe3\x45\x44\xd0\x9a\x44\xee\x09\xb3\x33\xa5\x2c\xfa\x2f\x29\x2b\xd5\x3b\x0a\x15\x7d\x5c\xe1\x3a\xa0\x7a\xc4\xe2\x74\x80\x1f\x00\xfd\x88\x2d\xfc\x8a\x1e\xc7\x37\x1b\x9d\x2f\x32\x13\x25\xa8\x27\x69\xa9\x49\x81\xff\xfb\xd2\x47\xd4\xb3\x06\xd2\xaf\xec\x50\x35\x09\x41\xa1\x91\x2f\x14\x70\xe5\x1e\x9e\x45\x0b\x85\x44\x80\xae\xb6\xb5\x67\x56\x8e\x55\x66\x96\x17\xd4\xc6\xdc\xa6\x18\xe7\x77\x79\xe6\xf1\x19\x46\x3f\x56\xbb\x37\xe8\x5b\x90\xe2\xbe\xaa\xe4\x6e\xd7\x02\x65\x21\x74\x42\xf9\x5e\xbe\x4a\x49\x39\x5f\x61\xe9\xad\xe3\x68\x4e\x3d\xbf\xb6\x91\x22\x1a\x60\xe8\x36\x8f\xfd\x52\xf2\x0b\xff\xd5\x7f\x4e\xd4\x73\x96\xd8\xa1\x81\x20\x72\x3b\xdb\x75\x19\xac\xc8\xd2\x98\xb3\x4a\xec\x4c\xf7\xf1\x80\x10\x30\x5d\xd3\x15\x93\x7b\x7a\x90\x9f\xa6\xbd\xc9\xe9\x44\x38\xf8\xe3\x31\x25\xa2\xc0\xea\x76\x08\xca\x37\x42\xac\x0a\x18\xb3\x4b\xca\xe4\x59\x50\x66\x69\xa6\xe5\x9c\xce\xa8\xe6\xfe\x99\x5a\x46\xb1\xef\x05\xa8\xf7\x91\x94\x71\xcb\x2b\x7d\x7f\x8d\xc6\x1b\x1f\x37\x0e\xd7\x30\x4e\x73\x4b\xc4\x76\xda\x3c\xff\xc5\xb3\x14\xa2\xa1\x0a\x75\x52\x6b\x14\x9e\xc1\x73\xd0\x08\x0b\xb7\xc7\x39\xa4\xdd\xbd\xda\x62\xb6\x73\xbe\xbd\x30\x62\x79\x52\xc7\x6a\x77\x18\x9b\x7a\x1f\x6e\xff\xec\x7c\x7b\x68\x72\xd7\x36\xc7\x6e\x0f\x5c\x13\x1f\x2b\x0a\x69\x98\x0e\x06\x36\x0b\x2d\x80\x01\xd2\xa7\xa3\x0f\xf2\x89\x42\xe7\x90\x63\xce\x26\xfa\x4b\xe4\xe0\xef\x61\x43\xe1\x93\xc0\xd3\x7d\x59\x96\x9a\x5d\x6d\xe9\x7a\x5d\x39\xc2\xb5\x91\xce\x2b\x35\x93\x34\x2f\x6c\x92\x47\x5d\x6e\x51\x4a\x8b\x55\xe9\xa5\x9c\x57\x75\xa6\x74\x25\x79\xc6\x83\xf3\xff\x12\x09\x3b\x16\x0b\x58\xc9\x4b\xbe\x41\x01\x12\xe6\xe9\x5f\xe2\x5d\x60\x80\xf1\x98\x64\x7b\x4e\xd4\xdd\x90\x2b\x5c\x55\x26\x30\xaf\x97\x7e\x0d\xfb\x4a\xa9\xf5\x83\x8f\x51\xa9\x51\xd8\x86\xf4\x10\x10\x95\xb0\x30\xb1\xc8\x44\xb6\x76\xcc\xad\xcd\x8c\xf5\xe6\x8e\x38\x9f\xe1\xce\x28\xe3\xf3\xf5\xd1\xf8\x47\x3c\xb3\x91\xd4\x3a\x10\x86\x72\xfc\x8f\x42\xf5\xb8\xb6\x74\xed\x9f\x7d\xbe\x5d\x98\x18\xcd\x49\x84\x69\x37\x54\xf7\xf8\x46\xa3\xf0\x91\x3d\x44\xde\x32\x8a\x56\xc5\x80\x5d\x3e\x51\x9b\xd3\xd0\x64\x26\x5e\x7d\x49\xe8\x87\x4a\xc9\x7f\xce\x29\xf9\x37\xc0\x67\xf3\xd8\x5a\xd0\x03\x31\x8c\xae\x29\x42\xe5\xb5\x2a\x0a\x70\xc1\x56\x92\x2e\x1b\x60\xdd\x5d\x74\xcc\x44\x68\xe9\x53\x37\x6e\x12\x2b\x26\x2a\x5a\x0a\x84\xc6\xb3\x8b\x4f\x02\x2f\x4d\x9e\x91\x83\x94\xe2\x26\x2a\xa4\x5c\x1d\x59\xb3\x7b\xcf\xee\xb6\x29\x0a\x6e\x7f\x56\x5f\x8f\x30\x9a\x23\x0e\x3e\x51\x73\xa2\x37\xb2\x31\x03\x00\x31\xaa\xaf\x2b\xab\xe7\xeb\x6e\xe3\x8e\x0a\x13\x47\x26\x31\x05\x2c\x5a\x11\x88\xac\xd1\x43\x11\xd7\x32\xe5\x4f\x72\xad\xf6\xd6\x76\xec\x60\xb3\xb3\x49\x06\xff\xf7\xcb\x09\x36\xa2\xb7\xfc\x5d\x31\xc0\x06\x60\x50\x8f\xf1\xe5\x7c\xd2\xa0\xe1\xb3\x60\xa2\x58\x00\x9d\x08\xef\x6e\x95\x1e\x8d\xce\xaf\x1b\x37\x3f\xd5\xd9\xae\xdb\x81\x21\x41\xeb\x7c\x4f\x24\xf0\x5b\xd0\x1f\xe3\x57\xa5\x59\xa2\x74\xd9\xff\x58\xa1\x89\x16\x46\x79\x6e\x01\xaa\x47\xfa\xf1\x17\xb4\x59\xf1\xb1\x0a\x66\xe7\x3e\xbd\x77\x4a\x27\xb6\x13\x99\xb0\x62\x65\xbb\xba\x58\x6c\xa9\xc0\x33\xed\x57\x9c\xa9\xce\x04\xf7\xb9\x9a\x64\xe2\xe7\xe6\x55\xbc\x2f\xa9\x7e\xfe\xc0\xe4\x85\xcd\x16\x46\x71\xbc\xda\xd2\xe6\x60\x98\xb8\x02\x50\xf5\x6e\x2b\x69\x95\x2a\x4f\xe9\x96\x04\x3d\x39\xf1\xa3\x55\x75\xd9\x23\x35\x95\xaf\x2a\xb2\x0f\xfb\xd1\x4b\xe9\xb0\x9f\xd9\x84\x91\xed\xf8\xe3\xe3\x64\xdc\xc0\xc7\x0d\xbc\xdd\xdd\xed\x45\x93\xf5\x2c\x30\x07\x78\x70\x3f\x2c\x95\x6e\xc1\x0f\x3f\x52\x73\x39\x27\xe3\x7c\xa9\xed\x08\x5e\x5b\x89\x21\x7f\xd9\x75\xdd\x7a\x26\x5b\x89\x12\xf1\xb7\xc5\xa6\x7d\x5b\xef\xe0\xb7\x6b\xd1\xf2\xce\xf9\x76\x37\xa6\xf9\xe7\x64\x58\x5e\x0b\xfc\x46\xf6\x5a\xed\x56\x0e\x54\x4b\x47\x91\x8d\xc2\x25\x60\x21\x04\x99\xae\x61\xea\x0a\xde\xbd\x10\x65\x03\xea\x98\xce\xb9\x6d\x8e\xde\x92\x83\x8f\x54\x6b\xb1\xd8\x04\x54\x6f\x18\x45\x98\xeb\x94\xa7\xe3\xdf\x8f\x96\xbe\x79\x80\x65\x17\x2d\x17\xf6\x12\x13\x43\x4a\x9a\xe0\xac\x43\xaf\x1b\x6c\xaa\x45\x3f\x35\x56\xbe\xb6\x17\x9a\x68\x49\x89\x21\x74\xc0\x94\x8a\x5b\xbe\x5c\xfa\xa2\x0b\x1a\x60\x42\xa0\xf0\x03\x7f\x98\x26\x8f\x7a\x75\xc3\x13\xb4\xf5\x20\x22\xb9\x1a\x78\xbe\xfd\x5b\xca\x42\xe6\x26\x09\xb8\xa0\x92\xce\x5e\x30\x38\x39\xa1\xbc\x09\x7e\xb2\xa3\xf6\xe8\xcb\x13\xde\x2c\x74\x51\xa8\xed\x6d\x83\x4c\xa7\xfb\x2e\x2f\xb4\xf2\x40\x85\xdf\xbd\x2c\x5a\xb6\xf9\x66\x1f\x00\x40\x6e\x0e\x69\xff\xff\x80\xec\x1c\x01\xfc\x0d\x6c\x90\xd8\x54\x71\xfd\x38\x46\x8b\xc4\x89\xc0\xcc\xed\x73\x1a\x85\x8f\xb9\xb6\xef\x28\x61\xd9\x79\x34\xaf\x00\x3a\xe7\x63\x6f\x6f\x3f\xea\xbe\x68\xc3\x49\x8d\xcb\x4b\xca\xf0\xa9\x09\x08\xb2\xbb\xad\x19\x63\xe8\x69\xa2\x61\xce\xc7\x0d\x0a\x90\x7b\xdb\x69\xc2\x7a\x18\xd8\xdb\x41\x11\xe1\x63\x97\x63\x9a\x85\x85\x28\x8e\x68\xe1\x77\x32\xf7\x1b\xbc\x11\xc9\x7f\x04\xb5\x14\xef\x70\x6a\xdc\x20\x63\x1f\x47\x89\x4c\x6d\x3c\x78\x94\x69\xf9\xb8\xfc\x98\x92\xca\x4b\x96\x6d\x96\x4b\x67\x70\xbf\x8c\x8c\xef\x94\x7e\x94\x7c\x47\x61\x47\x86\x55\xc4\x95\x26\x9b\xfc\x5f\x5e\x53\x08\xad\x4d\x98\x00\x68\x83\x20\x2b\x40\x11\xe9\x28\x42\x18\x41\x14\xd2\x53\x16\x12\xe8\x76\xa5\x00\xb3\x94\xa6\xb9\x21\x51\x37\x16\x67\x2e\x95\x69\xd7\x25\x25\x90\xf0\x21\xf6\x56\xfe\x8f\x9a\x7e\xd2\xae\x5d\x44\xb3\x6d\x29\x57\x1a\xe4\x66\x7c\x1c\xac\xaf\x29\x64\x51\x01\x93\x15\x35\x01\x64\x25\xbd\xab\x04\x6b\x6e\xd4\xe2\xf9\xcf\xcd\xb5\x17\xa2\xc5\x11\x97\x0e\x10\x0c\x41\x7a\x9b\x8f\x1b\x0c\xa6\x77\xef\x6d\x2f\xda\x02\x99\x23\x52\xdc\x63\xb8\x51\x3e\x09\x3c\x5b\x7c\xd1\x0e\x98\xb8\x23\xa0\x8a\xd6\xae\x5d\x6b\xb7\x95\x36\xf3\x25\x4d\x76\xa0\x32\xcf\x8c\xff\xf5\x29\x4c\x58\xf6\x8b\xa5\xa9\x83\xbd\xf5\x83\xd2\xf3\xdd\xd9\x54\x57\xa2\x3a\xbf\x8a\xf4\x47\x66\xc6\xa1\xdb\x5f\x03\x1d\x0f\x2b\x2a\x1b\x85\x00\x62\xba\x1d\x1e\x8c\x42\x61\x57\x1a\x70\x75\xc9\xa9\x7d\x2f\xb4\xfb\xb6\xb7\x88\xa7\x85\xe8\x00\x55\x39\x3e\xae\x7d\x60\x6e\x5f\x9b\x6b\x57\x1e\x86\x48\xb2\x47\x1f\x15\xea\x41\x67\xd5\x21\x6e\x50\x38\x7c\x1b\xe3\x85\x4f\xd4\x2d\x86\xfd\x74\x0b\x8d\x4d\x47\x57\xf5\x95\xac\x0b\x9a\xdd\x88\xe6\x8b\xf6\x78\x99\x30\x31\xc5\x7a\x7e\xbd\x54\x06\x92\xe0\x28\x21\x6c\x9b\xea\xf8\x9f\x5c\x2c\xfa\x53\xaa\xbc\x8f\x2f\x73\xfa\xc9\x4e\xab\x50\x63\x27\xc8\x69\x7f\x4a\x91\x09\xa0\xd9\x88\xe3\xad\xd4\xc3\xc0\x2a\xd8\x1a\xab\x6e\xb7\x49\x46\x0b\x26\x2c\x68\x6c\xee\x7b\xc1\xe7\xef\x2e\x80\xbc\xd0\xd0\x84\xd9\xcb\x41\x23\x2d\x3d\x78\x28\xf7\xb5\xef\xca\x0c\xe9\x76\x09\xdd\x79\x7d\x2c\x4c\x2c\xbb\x34\x1f\x62\x31\xad\x3e\x85\x92\x03\x23\x8f\xf9\xa4\xf6\xb3\x64\x00\x1e\x86\x69\x06\xc4\x80\xa3\xcf\x7d\xe6\x80\xd3\x9b\xf7\x3a\x33\xdd\xd8\x24\x4b\x96\xa2\xda\xea\x3b\x91\x0a\x31\x3b\x8f\x4f\x1a\x80\x58\xed\xdc\x66\xcb\x26\x91\x35\xbe\xc9\x61\x5c\x76\x83\x78\x94\x79\x1b\x5d\xc0\x02\xae\x23\x14\xe5\x13\x05\x7c\x87\x67\x12\x9e\x16\x6a\xf3\xf7\x02\x0d\x86\xa1\xa7\x2d\xd0\x2a\xdf\x49\x58\xe9\x47\x61\xdf\x2e\xdb\x8c\xf6\x02\xa0\x98\xae\x2b\x25\xfa\xeb\x75\xa3\xbc\x2a\x6d\xdb\x4e\x43\x55\x50\x06\xd5\x3a\x29\x1a\x2b\x34\x36\x5c\xeb\xdc\xe5\x50\x53\xb4\x6b\x20\xca\x3d\x49\xeb\x27\xa6\x3f\xa7\xb9\x80\x85\x33\xfc\x0f\x02\x61\x2d\x54\xe2\xa5\x11\x32\xa1\x78\x41\xcf\x00\x17\xf8\xbe\xd2\x47\xe2\x4a\x29\xe2\x8b\xb7\x4b\x25\xfc\xfb\x15\x2d\x35\xfb\xfb\xa5\x27\x89\xbf\xdf\x90\x94\x7e\xa1\xdd\x37\x59\x0f\x3c\x2b\x51\x96\xf6\x3e\x1c\x1b\xb0\xb7\x20\xd9\x3d\xa1\x84\xe4\x9e\xea\x50\xfd\x4c\xc0\x9e\x5e\x35\xc8\x8c\x8a\x34\x49\x07\xa8\x0e\x40\xdf\x02\xe1\x12\x1f\x2b\x78\x5a\x36\xca\xf3\xc8\x63\x3a\x64\xc6\xeb\xe9\x5f\x6b\x1f\x91\xe8\x84\x89\x6d\x96\xf7\xa3\x21\x8f\x2a\xb6\xf0\xa3\x5f\x11\x3b\xbf\x06\xad\x5c\xbb\x6c\xe2\x91\x61\x61\x04\xa1\xfe\x57\x9f\xe1\x63\x1f\xbe\x8c\xc2\xa5\x34\x55\x62\xfe\x1b\x3a\xca\x96\x67\xc3\xd8\x67\x1d\xac\xd2\xed\xb6\x71\x44\x38\xdf\x2d\x7d\xe4\xf3\xdd\xda\xac\xdb\x39\x4f\x02\xdb\x31\xeb\x1f\x22\x22\xc7\xb6\xcd\xc7\x63\x3f\x62\x61\x06\x1e\x25\x8b\x8f\x79\x91\x3b\xb0\xa0\xf1\xe4\xa1\xaa\x83\xdc\x81\x3d\xac\x59\x7c\x8d\x86\x9d\x28\x40\x29\x09\x3e\x96\x32\x42\xb9\x94\xd9\x68\x18\x90\xbf\x4b\x0c\x34\xc4\xd1\x0f\x10\x9e\x33\x5c\x04\x2b\x11\x1b\x1d\xd2\x7c\x91\x5d\xd6\x9b\xe6\x1e\x6e\x52\x65\x5b\x5a\xec\xb6\x7c\x0f\x96\x57\x76\x3e\xa9\x8d\xc5\x6a\x15\xeb\xa7\x09\x46\x8e\x08\xe7\xb7\xe6\x3d\x2a\x63\xc2\xbc\x3d\x5e\x9a\x56\xfe\x4c\x90\xa2\x77\x4a\xcb\x5e\x8c\x10\xd3\x52\x5a\xba\xbe\x9c\x31\xb4\x59\x95\x10\x9b\x45\x0b\xa8\x8a\xd3\x18\xf5\x10\x8c\x33\xca\xfa\xf7\x21\xdd\xb5\x83\x86\x7a\x4a\x54\x1d\xc0\xb5\x73\xbe\xbd\x40\x92\x5c\x62\x5b\x20\xec\x00\xfa\x94\xd0\x06\x9a\x24\x2e\xf3\xc2\x0e\x06\xb2\x83\x22\xb9\xdf\x8c\x7e\x1b\x9f\x74\x9e\x52\xa1\x6a\x36\xa0\x6a\x0c\xc5\x4f\x78\x81\xb7\x83\x89\x88\xc2\x03\x32\x8f\x36\x70\x93\x0b\xb3\x04\xa7\x04\xe4\xd5\x9c\x38\x21\xea\x9d\xa2\xf4\xca\x01\xa2\x5c\x80\xf6\xcd\x06\xa7\xa4\xdd\xed\x3c\x3d\xc4\x33\x18\x63\xf2\x46\xa0\x74\x97\x6f\xa8\x0a\x0c\xa1\x71\x9e\xd0\x12\x8f\xd7\x14\x8e\xe9\xba\x2e\x66\x7e\x89\x86\x2f\xb2\xad\x2f\x05\xca\xfb\x85\x59\x23\xfc\x57\xc8\xee\x31\x00\xd7\x4a\x2f\xcb\xf5\x7a\xa9\x2c\x0a\x2f\x6a\x6d\xcd\x8b\x54\x54\xc7\xf6\xf6\x1a\x81\xe3\x84\x1f\x5c\x45\x78\x37\xb1\x40\x63\xc0\x6d\x03\x0d\x45\xca\xd6\x0a\x60\xde\xb7\x83\xa7\x3c\x28\xe4\x24\xd6\x5e\xd4\x11\xde\xa6\x8c\x15\x75\xef\xdb\x81\xf7\x64\xfe\x0f\xa0\x58\x62\x4f\x7a\x10\x28\x0d\xe6\xb3\x55\xbe\xbb\x76\x1b\x57\x8c\x48\x19\xfc\x0d\xc0\x0b\x8f\x51\x86\x88\x65\xed\x36\x66\x38\xfa\xf9\xf7\x90\x9f\x61\x40\x31\x9a\x98\x71\x17\xa4\xa2\xc5\x36\x71\x98\xee\x5a\x10\x52\x94\x2b\xe9\x41\x62\x5f\xd9\x30\xa6\x58\x92\xaf\xae\xbe\x0b\xee\x69\x7f\xe6\x40\x6b\x62\xd4\xe3\x2d\x0a\x3c\xda\xc7\xc2\x8b\x99\x89\x12\x20\xd7\xb1\x00\x5e\xd4\x50\xa8\x3b\xfc\x39\xf1\x28\x50\xc0\xb0\x6d\x1d\xc1\x5b\xf4\x47\x03\x94\x70\x9a\x42\xa7\xa6\x12\x63\xba\xe2\x64\x04\xc5\x31\x9d\xee\x4d\xbc\xd4\xfd\x9b\xeb\x9b\x65\xfb\x93\xf4\xd8\x10\xf9\x31\xc9\x1c\x5b\xfb\xcc\xd8\xbb\x75\x5d\xa3\xa1\x81\xfe\xd9\x9f\xd3\xdc\x77\x66\x78\xbb\x1d\x32\xe8\x36\x3d\x67\xa9\xbe\xeb\x96\x37\x5a\x34\xfc\xbd\x1b\x3a\x2a\x4c\x78\x50\x2a\x85\x7f\x58\xd5\x39\xc3\x18\xd7\xd9\x7c\x08\x14\x1f\xf2\x92\xaf\x03\xd0\xc0\x4c\xe7\x72\xf2\xc9\xec\x94\x12\xde\x6f\xa3\x9f\xe5\x5e\x7a\x35\x22\xd1\xcd\xb8\x85\xc1\x86\x69\x0e\xe7\x1b\xac\x93\x0f\xa8\x3e\xe1\x7a\x68\x4e\x46\x7c\x43\x47\xe1\x5e\x59\xf5\x03\x78\x95\xeb\x0e\x13\x33\x18\x71\x1c\x88\xf7\x0a\x35\x69\x3e\x56\xc6\x25\x03\x73\x28\x1a\x8c\x06\xe4\x6c\x2a\x28\x28\x45\xeb\xe7\x01\xa0\x25\x80\x45\x6f\xaf\xe5\x18\xf5\x47\xbd\x2c\x99\xc9\x5c\xe6\x8f\xe6\x3c\xf7\x1d\xf8\x44\xf5\xfe\xc2\x34\x2f\x72\xda\x33\xf1\xa2\xb7\xe0\x9e\x50\x7b\xe2\xee\xba\x2c\xc5\x4a\x2a\xe7\xdd\x72\xbd\x9a\x3a\x3d\xc3\x7f\xfc\x14\x5e\x21\x4f\x3c\xcc\x77\x71\xd3\xaf\x06\x0a\x6a\x4c\x77\x50\xc6\xd2\xfc\x74\x2c\x34\xf7\x15\xce\xfe\x9c\xe6\x0a\x7f\x5f\x75\xe4\x56\xd2\x6c\xc9\x66\xf9\x96\x09\x05\x44\x55\x19\xb9\xa5\xb4\xc8\x6f\x04\x8a\x7d\x82\xa0\x10\xdf\x7e\xaf\xf4\x50\xd6\xbb\xba\x8d\xf5\xd0\x7b\xa8\x6d\xdf\xd2\xd1\x12\x50\xc9\xb2\x4d\x9c\xb0\x18\xd6\x86\xef\x29\x86\xda\xf7\x7c\xb9\x66\x68\x2d\x7c\xd7\x1d\x8d\xe4\xba\x7a\x4f\x27\x71\x4d\x28\xbd\x55\x41\x92\xc3\xd4\x55\x79\x89\x09\xab\x7c\xbf\xe5\xe1\x45\xef\x69\x39\xbc\xf7\x14\x2b\xb8\xa0\x15\x84\x7e\x04\xd5\x72\x0c\x06\x31\x47\x50\x40\xe1\x2b\xca\x14\xc6\x0c\xdc\xd0\x10\xf7\x3a\x7f\x69\x67\x6b\x9b\x34\xc9\xab\xae\x64\x66\x38\x94\x62\x3a\xdb\x80\x2a\x41\x7c\x26\xb0\x4a\x2d\xc5\x07\x65\xd5\xd6\x99\x2e\xdb\x2c\x9f\xf2\x7d\xd6\x8d\x4a\x42\xec\x46\xa9\x0c\x96\xce\xa8\xb4\x37\x49\x58\x69\x07\xbb\xd4\x95\x52\xe5\xca\x17\x95\xee\x2e\x82\x16\x94\x59\xb6\x74\x54\xef\xdc\x69\x64\xce\xf1\x5a\xbd\x01\xec\x02\x96\x35\x0f\x14\xa8\x92\x81\xb6\x2c\x93\x01\xed\x74\x51\x3f\x77\x56\xd5\x87\x6c\x16\x92\xd1\x0b\x7c\x48\x69\x0f\xbc\xfc\x91\xae\xe6\x76\xd1\xf4\xa6\x95\x86\xde\xef\x60\x78\x62\x99\xb9\x46\x6c\x52\xd4\x11\xd1\x2e\x11\x0d\x35\x3f\xc4\x6d\x48\xa9\xc1\x63\xbe\x0b\x01\x45\x72\x9e\x7c\xb4\x36\x89\x1c\x35\x5d\x3d\x30\x01\x0f\x30\x90\xd9\x40\x12\xdb\x1e\xff\x19\xd5\x8a\x31\xc9\xbe\x42\xf3\x03\xed\xa2\xab\xa5\xf2\x09\x7d\x5f\x21\x28\xee\xe8\x06\xc9\x65\xb4\xb8\x81\x85\xba\x10\xa8\xcd\xe8\x56\x2d\x60\xda\x3f\xdb\x4e\xd2\x4f\x4e\xf9\xde\x18\x04\x8d\x51\x34\x38\xab\xed\x19\x54\xb1\x35\x4a\x0a\x13\x16\x9b\xbd\x15\xf3\x45\xbd\xcb\xf3\xca\xa3\x23\x5d\xcc\xcf\xab\xb8\x48\x7c\xdf\x09\x2d\x4d\xf0\x0a\xde\x70\x7d\x64\x45\x59\x01\xed\x69\x16\x00\x9a\xd0\x61\xa6\x91\x85\xf2\x28\x38\x27\x0c\xf6\x53\xc0\xb7\x05\xb3\x9c\x66\xcc\x52\x05\x34\x0d\x22\xe0\x7c\xfc\x91\x82\x01\x2b\x51\xdc\x1d\x65\xf4\x31\x6c\x11\x4c\xf8\xe5\x93\x8f\x34\xea\x5b\x4c\xe3\x1e\xe3\xee\xb5\x1d\x86\x78\xbe\xaa\xaa\xc2\x1d\x55\x35\x8c\xe2\x78\x44\x8c\x0a\x0b\x7f\x46\x45\x0d\x51\xb1\x8f\x5b\xba\xce\x4d\x60\x51\xb7\x3b\xe2\x6c\x16\xf6\x4d\x2e\xf3\x9e\x1f\xb9\xf2\x9d\xe0\x10\x13\xe9\xfb\x61\x87\x6b\x3f\x64\xb3\xf4\xd0\x4c\x35\x44\x45\xdd\x50\x21\xe2\xcf\x6a\xec\x03\x3d\x6f\x47\xf9\x9a\x77\x86\x9a\x8f\x76\x7c\xe5\x3b\x5b\x30\xa1\x5c\x82\xc3\xf4\x3b\x83\xb5\x35\x5c\x02\xd6\xf7\x8d\x9d\xa7\x15\xfb\xac\x30\xc9\x62\xd4\x8d\xed\x94\x2a\x25\x40\xca\x02\xf3\x83\x45\xef\x44\xbc\xad\x29\x60\x0f\x4d\xb7\xa5\x5c\x2a\x2e\x2a\xc3\x99\x8b\xc1\x33\x8a\x84\x1b\xc6\x26\x33\x45\x9a\xa1\x94\xcf\x08\x6b\x7a\x52\x82\xb6\x56\xdb\x97\x89\x97\xa2\x64\x71\x8b\x97\xdf\x3c\xa5\x3b\xe8\xec\x1e\xc5\x28\x17\x04\x15\x4e\x4e\x7d\x8f\x14\xac\x36\x74\x3c\xdd\x04\x33\x02\xab\xef\x4d\xc5\xe1\xac\x2b\x5d\xe2\x9e\xb2\x8f\xee\xa9\x35\xa4\xe0\x83\x34\xc9\xd3\x34\x51\x7c\xd2\x8b\x8a\x1e\x79\x51\x29\x47\x26\x36\x5c\xe2\x62\xb0\x70\xfb\x15\x05\x9f\x5d\x18\x11\x51\x1d\xd3\xb5\x26\x1b\xe5\x64\xd7\x37\xa5\xd2\x9a\x0b\x0a\x4c\xc2\x66\x04\x58\xfb\x36\xd6\x74\xe0\xe7\xf6\xb5\x87\x59\xda\x15\x88\xac\x83\x75\x39\x28\xe6\x25\xf5\xf0\x33\xb0\x3d\xb7\xfa\x29\x7b\x5e\xd5\x6a\x50\xc2\x17\x15\x95\x75\x76\x81\x5a\x8c\x99\x56\x56\x49\xba\xaa\x91\xee\x7a\x75\xbe\xe4\xc7\x49\x3c\x3e\xff\xb6\xaa\x99\x17\x11\x68\x1f\xcf\x3b\x54\xae\x8a\xdb\x95\x94\x33\xb3\x71\x50\xea\xe2\x4a\xb9\x28\x79\x3c\xa9\x2a\xf0\x89\xad\x26\x3a\x06\x2a\xf2\xdf\x0f\x4b\xa5\xb9\xf2\x61\x83\xc6\x59\xf5\x1c\x86\x69\xc2\x2c\xf3\xdd\x5e\x44\xa9\xfa\x98\x68\x07\x3f\xa1\x59\xe6\x26\xe9\x3d\xaa\xc0\xd9\xef\x04\x4a\xcf\xe8\x9d\x52\xad\xa8\x27\x35\x5c\xe4\x26\x3d\x50\x0c\x4d\xae\xa7\x60\x6c\x42\x88\x08\xcb\x2b\xdb\xe6\xe1\x6a\x1f\xd0\xe3\x64\xc7\x68\x7d\x1b\x0f\x4a\x9f\x74\x9c\x2a\x7d\xa2\x71\x2a\x78\x56\x49\x1d\x98\xde\x17\x47\x26\x23\x87\x04\xfa\x35\x94\xb7\x37\x51\xf1\x87\x8f\x6b\x8c\x99\x5f\x6c\x17\xfd\x74\xb4\xd8\x87\x18\x8a\xeb\x17\xee\x74\xbd\x43\xd7\x2f\x06\x45\xcd\x30\x41\x02\xab\xd1\x97\x68\x36\xf0\xb1\xd2\x1b\xcb\xa3\xc5\x64\x0b\x0d\xa1\xb5\xcb\xa5\x27\x8d\x5d\xa6\x15\x08\xfb\xd2\x05\x55\x88\x3b\xbd\x4e\x0b\x50\x81\x12\xbd\x07\xc0\x05\x3c\x42\x41\xb7\xad\x7f\xaf\xbb\x76\xb5\x8b\x51\xd6\x1d\xc5\x93\x41\xea\x0d\xb5\xd2\xdf\x68\xc2\xb6\x2f\x92\xdf\xa1\x53\x15\xfc\x1f\xe9\xd7\xf9\x58\x8b\xa8\x90\x70\xb1\x9d\x56\x6f\x6b\xba\x43\xe1\x12\x9f\x8c\x3d\xd7\xe2\x56\xa0\x9c\x3d\x6e\x7d\xe4\xae\x58\x64\xe9\x60\x68\xa7\x94\x08\xfb\x25\xd6\xae\x92\xf6\x5b\xeb\x33\x07\x84\xdc\xd3\x50\x93\x9d\x6b\xa7\x09\x3a\x0f\x22\x65\xf6\x5b\xa5\x17\xdd\xba\x13\xf8\xd2\xde\x9d\xa6\x5c\x7d\xff\xec\x26\x9f\x2a\xe0\xa1\x8b\x5f\x56\xcb\x19\x36\xf2\xad\x20\x48\xbb\xac\xf2\x1e\xb8\xe2\x43\x72\xe0\xa6\x9a\x91\x83\x30\x34\x59\xd1\x47\x79\x0e\xd1\xe7\xb5\x52\xd1\x7a\xaf\xd5\x1c\xb6\x98\x45\x1e\x0d\xa2\x9e\xea\xd9\x82\xd0\xf0\xba\x92\x92\x7b\x5d\x31\xe6\x32\x6b\xc2\xbe\x85\xa4\x9d\x82\x6d\x4a\xc2\x77\x5a\x61\xd1\x2f\x61\xf1\x12\x88\x9a\x5f\x59\x3f\xd0\x9b\xee\x06\xd5\x03\x1a\x46\x6c\xc1\x8b\x0e\x37\xb2\x56\x3e\x9e\x30\xdc\x31\xc9\x4b\x66\x66\x12\x2a\xe4\xf6\x96\xab\xa5\x83\x10\xfe\xc5\x55\x5c\x82\x6b\x90\x39\x5c\xe4\x61\xdd\x1e\x1c\xda\xa4\xc7\xcb\xb8\x93\x17\x72\x08\xf5\x73\x0a\x9d\x3b\xb0\x79\x6e\x16\x45\x20\x0a\x93\x0f\xef\x4f\x82\x44\xc5\xaf\xff\x9f\x1b\xc4\x89\xc3\x7e\x15\xdc\x68\x25\x23\x58\x48\xf1\xb1\x03\xdc\xe4\x36\xe9\xb9\x17\x82\x2a\xc5\x9f\x06\x1e\x4a\xf0\xa7\xe5\xd6\xa8\x3d\xcc\xec\xc2\x2f\xb4\x57\x9f\x6d\xed\xd8\xc1\x71\xd9\x26\x34\x29\x84\x04\x46\x95\x10\x24\xd1\x8f\xd1\xbe\x8d\x75\x6f\x7b\x47\x3d\xfd\x7f\x30\xae\xb2\x02\xc4\x16\x1b\x49\x93\x05\x13\xf0\x2a\x33\x04\x30\x16\x59\x4b\x06\x03\xf6\x41\xa0\xf4\x26\x6e\x97\x0a\x0e\xce\xaa\xb6\xd8\x6b\x37\x8e\x3d\xd2\xe2\xab\xd4\xb3\x72\x75\x4f\xe7\x24\xfb\x40\x73\x75\xa8\x8e\xb4\x36\x8d\xa4\x0e\xc5\xba\x27\xc6\x54\x34\x41\xc3\xf9\x66\xa0\x44\x3d\x40\x17\x42\x31\xe7\x66\xf9\xec\xe4\x1c\x23\x4a\xd9\xdc\x3e\x85\x55\x6b\xd1\x9f\xf3\xf1\xf8\x71\xc7\x9d\x4e\x43\x9b\x4d\xda\xef\x6b\x13\xc0\x26\x65\x96\x5e\x54\xd3\xa5\xb8\xa2\xe8\x76\x57\x14\xcc\xca\xc4\x4b\x8f\x4c\x79\x5b\x2a\xd6\x0a\xa4\x27\xf2\xab\x4f\x22\x2f\x44\x05\xec\x81\xd6\xf8\x7c\x9c\x36\x0d\x6c\xdf\x8f\x76\x14\x9d\x5c\x96\x28\xe4\x46\xbc\x69\x3a\x33\xd1\xfd\xb3\x58\xf5\xf6\x6c\x57\x44\xaa\x99\x71\x93\x64\x60\x98\x66\x99\x0d\x8b\x29\x15\xb7\x7c\x5b\x17\x2e\x4f\x29\xd6\xf9\x85\x26\xdb\xa6\x9c\x70\xdb\x1a\x1c\xea\x65\x9c\xae\x2a\x0b\xeb\x33\xaa\x9e\x9f\x8f\xba\x79\xd4\xb3\x49\x68\xb1\xdf\xb9\xa2\xda\x4e\xe7\xc8\xac\x40\xac\x0b\x26\x8c\xe2\xa8\x88\x6c\x3e\x33\x69\xf4\xe8\xa0\x30\xd3\x00\xa0\xa1\xee\x7d\x43\xe9\x21\xdf\x41\x05\x8e\xff\xa3\x09\x03\x11\x5b\x83\x86\xaa\xa8\x9f\xf8\x5d\xbd\xfe\xca\xf7\xcc\xb6\xc3\xbe\x49\x16\x25\x64\xc1\x1b\xe3\x76\x3e\x9f\xb8\x69\x3b\x18\x2d\x2c\xc4\x2c\xb2\xef\xfa\xe3\x4e\x9a\xf4\xa2\xca\x07\xe7\x53\xd0\x5e\xd9\xfc\x87\x8a\x54\x62\xf5\x55\x4d\x68\xca\x06\xcb\xa7\x31\x55\x91\x44\xcc\x8c\x5b\x07\xbc\xd0\x5b\x43\x38\xda\x4d\x93\x1e\x93\xcb\x19\x22\x8e\xb7\x2a\x78\x71\x17\x4e\xd8\x61\x16\x25\x0e\xff\x88\x02\x1c\x74\x4a\xf8\x58\x59\x4d\xa6\xb1\x1b\xed\xce\xdc\xc3\xb5\xe4\xde\xd3\x88\x91\x2c\x7d\xd1\x86\x85\xd3\x45\x75\x34\x14\x4f\x49\x51\xf7\x3f\x9b\x82\xd0\xe1\x38\x86\x8a\x2e\xa0\xf4\x46\xd0\x6f\xa2\x01\xe3\x76\xe6\x9d\x4e\x29\xbd\xa1\xd8\xbc\x7b\x6f\x3b\x4c\x07\x40\x08\x61\xbb\xfc\x40\x63\x48\xb8\xb2\x88\x09\x75\x4b\x6b\x5b\xd8\x2a\x70\xa2\x38\x0b\x00\x6e\xac\x95\xaf\xe1\xef\xf9\xa4\x96\xa7\xec\xd8\xc1\x1f\x64\xaf\x30\xe4\xf0\xec\xc5\x87\x4d\xe7\x94\x42\x57\x4e\xfa\xcd\x0f\x8b\x4f\xaa\xbc\xfc\xb0\xce\xcb\x0f\x07\x8f\xf9\x62\x56\x34\xb0\xcf\xb4\x84\x4f\xf9\xde\x71\xd4\x91\x95\x4e\x8b\x48\xa1\xbe\xa1\xbd\x93\x61\xe1\x84\x14\x08\xab\x83\x73\xfa\x75\xea\x37\x1b\x3b\x2a\x41\x5e\xe3\x05\x9f\x81\x66\x81\x87\xc6\x1d\xc6\xaa\xee\xc4\x07\xaa\xcb\xc4\x0e\x77\x5d\xaf\x1a\x3f\x52\x86\xea\xac\xaa\x82\x4c\xe5\x5e\xa9\x34\x42\x41\x60\x47\x64\xfe\x2d\xac\xfe\x28\x48\x72\x46\x8d\xfb\xbf\x88\x92\x3a\xbb\x19\xba\xd1\x38\x30\xd9\x92\x1b\x8d\x22\x8d\xe3\x71\x56\xe7\x4b\x8f\xda\x8d\x4d\x58\x4d\x84\x35\xe0\x75\xd7\xc6\x0e\xc6\xdc\x8d\x47\x64\xca\xe9\x16\xa9\xd7\x55\xf5\xe9\x75\x45\x01\x1e\x66\xd1\xc0\x64\x51\xbc\xca\xbd\x33\xdc\xf2\xbf\xd6\xf7\xff\xaf\x4b\xff\x9a\xba\x31\xcb\x53\x63\x2f\x05\x0f\x8c\x8f\x6b\xe3\xa6\x0a\xbc\x56\x6c\x24\xdc\x33\xb1\xe3\xf2\xf1\xef\xdb\xae\xa8\x3b\xcc\x6c\x51\x44\xa2\x68\x85\x9d\xf0\xfb\x8a\x06\xf0\xfd\x5a\x94\xb1\x7b\xcf\x6e\x5e\xe2\x76\xed\xe2\x27\xf3\xb2\x66\xd6\xbc\xec\x84\x12\x86\x26\x33\x89\x48\xea\x49\x98\xa5\x42\xae\xf2\x11\xef\xa7\x47\xe4\x6e\xa1\x66\xb5\x44\x70\xe5\x7f\xe2\x02\x3f\xda\x25\x77\x54\x8c\xd6\x35\x85\x31\x89\x72\x31\xba\x80\xd8\x48\xf2\x4d\x5f\x84\x5b\x34\x99\x59\xb4\xda\x3a\x58\x35\x2b\xce\xa8\x00\xf7\x8b\x23\xdb\xb5\x61\x9a\x81\x88\x27\xb6\x69\x34\x04\x59\x48\xbf\x54\xad\xa3\xa3\x4a\x7b\x0f\xab\x86\x3b\xd6\x50\xd6\xfd\xee\x6f\x94\xba\xd4\xb5\x26\x63\x70\xa2\xa7\x4c\x68\x2d\x31\x9a\x96\x4f\x1a\xb1\x1b\x69\x12\xaf\x4e\x79\x39\x81\xc7\x3b\x9a\x43\xae\x4a\xfe\x9b\x94\x72\xde\x20\x8a\xe3\x28\x4d\x9e\xd5\xe3\xee\x26\xfa\xfd\xb8\x4f\x16\xc9\x13\x46\x12\xdd\x34\xf7\xb5\xe8\xa6\x1d\x74\x75\xa7\xc3\xc4\x53\x7a\x8b\x41\x0e\xe7\x5e\xa7\x8c\xbc\x63\x87\x97\x6c\xfd\xcc\x01\xdf\x00\xad\x56\x19\xb1\xb9\xf1\x71\xe1\x59\xda\xa9\x90\x65\x43\x7a\x15\xc9\x2a\x1b\x4f\x8a\x9b\x34\x2d\x2c\x58\x7e\xa7\xc7\x13\xac\x0b\xa5\x98\xb2\x61\xac\xa0\x50\xac\x83\xcb\xd0\x19\xd4\xc8\xb0\xbd\x6e\xe8\xd4\x6d\x34\x76\x8b\x0c\xb7\xbc\x10\x71\x52\xa4\xab\xe0\x93\xc0\x17\x7b\xa4\xa6\x98\xcf\xf8\xc6\xf9\xdf\x69\x08\xee\x37\x69\xf2\xe1\xbe\xfe\x4a\xc1\xe6\xff\x6e\x52\xce\xd1\xc7\x33\x66\x54\xa4\x83\xb4\x88\x96\xed\x0c\xdd\x2c\x68\x4a\x20\xa6\xb2\xc9\x01\x7d\xa5\x33\x3c\xa8\x7e\x4b\x3a\x36\x78\xb3\xf8\x85\x35\x65\x29\x1f\xe5\x85\xe4\xd0\x08\x66\x30\x1d\xf9\xb8\xf4\x96\x44\x9f\x02\x4b\xc5\xf5\x3c\x7d\x3f\xbf\xd1\xb5\x84\xe5\x3f\xa7\x94\x6e\x2c\x62\x29\xf6\xc1\x57\x52\xcd\x5e\x44\x66\x60\xfa\x26\x33\x2f\x9a\x7e\x4e\xac\x04\x47\x09\x9e\x9f\xe7\x96\xf9\x6b\x34\x60\x26\x3a\x61\xc2\xc6\x78\xd4\xfb\x7c\x85\x21\x7d\x1c\x83\xf5\x0c\x82\x33\x67\x0d\xb7\x47\xe8\xe2\x2c\xd2\x83\xb0\x62\x63\x67\x7d\xd8\x7a\xf0\x60\x3b\x36\xbd\x1e\xd9\x63\xd3\x0b\x71\x6e\x2b\xce\xda\xef\x6f\x95\x2d\x83\x89\x63\xbb\xc8\x3e\x34\x2d\xe7\xe2\x3c\x4d\x18\x14\x64\x47\xdc\x67\x90\x01\xde\x50\xd2\x78\x71\x94\x10\x48\x70\xc2\x77\xfa\xbc\xaa\x1f\x69\xd2\x15\xf0\x6e\x61\x64\x62\xde\x2d\x9c\x54\xb9\x47\x46\x68\xd5\xaa\x7e\xca\xbc\x4c\x0c\x9b\xa3\xca\x59\xf6\x86\xc2\x47\x9e\x56\x11\xd3\x8e\x4f\x7d\x8a\x49\x99\x78\x48\x3f\x28\x35\x77\x4d\x69\x43\x5d\x51\xc0\x64\x5a\xb3\xe2\xd5\x4d\x5e\x15\x6b\x6d\x1d\x91\xae\x7a\x1d\xe8\xd6\x3d\x0c\x54\xb1\xfb\x0c\x76\x70\x76\xed\x2c\x95\xa6\xc4\xf9\x5a\xfd\x67\x6e\x1f\xeb\xe8\x08\xda\x05\xa5\x8f\x7b\xaa\x41\x71\x5a\xab\xca\x5c\x54\x85\xd1\x45\x9b\xd8\x22\x0a\x67\x70\x67\x88\x5d\xfe\x04\x3f\x87\x54\x17\xdf\x82\xe3\x6f\x4e\xe0\x40\xb5\x40\x9e\x6f\x1e\x64\x76\x60\xaa\xd7\x46\x83\x0e\xcb\xe5\x96\x8e\x42\x73\xbc\xad\x1e\xf5\x83\xd2\xaf\x06\xa7\x1b\xb0\xec\x5f\x68\xe7\x71\xba\x22\x43\xae\x49\x1c\xca\xef\x77\xe9\xa8\x18\x8e\x30\x75\x31\xc2\xd0\xe8\xe0\x63\xa7\x1f\xf9\xe2\xa8\xb7\x8a\xf4\x9f\x7f\x36\xf0\xfd\xe0\xd3\xa5\xe6\x03\x15\x26\x8a\xf3\x47\xe9\xfd\x38\x08\x71\x75\x19\x1c\x61\xe9\x7d\x97\x01\x55\x12\x7b\x55\xb3\x8a\x4d\x7f\x15\x83\x6a\xe3\xd8\x2f\x25\x77\xf0\x76\xb1\x71\x4d\x77\xfc\x26\x7d\x86\x96\x3e\x71\x0c\x56\xe6\x88\x7f\x58\x7a\x6c\xfb\x99\x60\xbd\xb3\x47\xb5\x20\xa7\xd9\xa2\x49\xa2\x97\x18\x33\xaf\x11\x83\x57\x35\x62\xf0\x6a\xed\x39\xef\xd8\xd1\x1e\x9a\xc2\x75\xb8\xb1\x24\xc1\xb6\x83\x8f\xc7\x8f\x2b\x40\x5f\x94\x17\x9b\xe9\x41\x20\xa0\xe4\x5b\x11\xb9\x1f\x7a\xd3\x58\x52\x4e\xa9\x78\xea\x6a\xa9\x34\x61\x67\x3a\x4a\x6e\xea\x96\xd6\xdb\xab\x9b\xd8\xce\xcf\xb7\x07\x51\x6f\xc5\xac\x4e\x55\x1b\x25\x5b\x1a\xe2\xcb\x84\x36\x50\x5d\x28\x66\xf8\xdd\x06\x3e\x58\x37\x36\xe1\x12\x13\xe0\x1c\x07\xa7\xfa\xb8\x70\x70\xea\x38\xf8\xf6\xa2\xd7\x61\x75\xf1\x70\xf5\x11\x3e\xa9\xa5\x3d\xd5\x48\x8d\x4d\x61\x33\xf4\x9c\xd8\xa7\x40\x0d\xee\x0d\xda\x3c\xe8\x48\xf9\xcc\x7a\xf8\xa2\x89\x63\x76\x91\x14\xec\x5f\xf5\xb6\xc5\x4b\x47\xd5\xd9\x8e\x94\xde\x9e\xb8\x91\x98\x33\xb0\x59\x16\x31\x87\x52\x4c\x47\x95\x35\xa1\x46\x69\x55\x59\xf5\x8c\xef\xe6\x9f\x0f\x94\x15\xdb\x75\xe5\x27\x31\x85\xe9\x2b\x0e\x04\x0a\x71\xdc\x44\xd9\x85\x79\x44\xbc\xaa\x78\xe5\x7f\xa9\x44\x2a\x19\x87\x25\xf5\x84\xa6\xa5\x6c\xd0\x35\x45\x11\xcb\xac\xd7\xed\x43\x3e\x6e\x92\x9d\x4d\x47\x45\xc8\x95\x24\x24\x37\x98\x7a\x7c\xac\xcc\x8d\x87\x7d\x93\x0d\x4c\x68\x47\x45\x14\xb2\x10\xae\xa0\x98\xd4\xa8\xfc\xf3\xf2\x19\x55\x71\x85\xb3\x92\xcd\x60\xb0\x85\xcd\xec\xeb\x13\x42\xc9\x78\x47\x22\x9d\xe9\xc3\xca\xe3\xf4\xbe\x50\xa6\x61\x1d\x26\x6c\xf3\xa2\x40\xc1\x67\x0d\xc6\x3f\xed\xa2\x9f\xb1\x5f\x54\xf5\xc4\x1d\xe9\xc3\x11\x93\xee\x36\x48\xce\x54\x61\x19\xb1\xce\x5c\x75\xc1\x19\x29\xb8\xfa\x5b\x5d\x02\xaa\x5a\x3e\xba\xa3\xc1\xd0\x1b\x4c\x0b\xbd\x7a\xca\xfb\x40\x9e\x6b\x86\x64\x8e\xb2\xc5\x75\xc0\x92\xf7\x03\x05\x9c\x7b\x5f\xed\xa0\xab\x26\x9e\xa1\x2f\x64\x74\x01\x3f\x02\xd1\x2d\x51\x03\x03\xcd\x6e\xac\x76\x88\x1a\x84\x59\x5c\x9f\x7a\xed\x62\xc5\x26\x4c\x93\x41\xc2\x7b\x41\xeb\x1d\x50\xbc\x8c\x5c\x69\x2d\xf0\x6d\x1a\xd3\xeb\x55\xb1\xa8\x28\xa5\x41\xe3\xc1\xa9\x5e\x57\x01\xbd\x83\x2a\xef\x99\x75\x2a\xc4\xd5\xcb\x94\xc2\xc4\x93\x8a\xf9\x9b\x17\x51\x31\x62\xe6\x8c\x00\xdc\x26\xe0\x6e\x5a\xda\x2a\x49\x57\xba\x51\xd6\xe3\x4e\x95\xeb\xee\xfb\x4e\xff\x84\xd7\x46\xd2\x1b\x85\xc5\x74\x15\xe8\x61\xf5\xb8\xaf\x64\xa8\xbf\xaa\xa8\xc8\x5f\xc5\xbb\xe2\x3f\xaa\xb5\x7b\xaa\x00\x2e\x15\x39\x13\x3c\x4c\x86\x90\xf0\x49\x83\x68\x7d\x9f\x98\x98\x32\x90\x50\x49\xbe\xa2\x8d\xbe\xaf\x34\x18\xec\xed\x6e\x17\x59\xb4\xb8\x68\x05\x2c\x81\x68\xf7\x1d\xcd\x04\x78\xa7\x51\x64\x0b\xda\x21\x53\x9e\x74\xfb\xdb\xa5\x2a\xbe\xfd\x09\x66\x98\xa8\x6d\xb8\x18\x79\x94\x44\x61\x34\x24\x4b\x83\x6a\xf8\x70\xe7\x38\x50\xae\x46\x75\x06\xf2\xdc\xbe\x76\x68\x7a\x51\x1c\x1b\x18\x17\x39\x36\xa2\xc3\xe4\xfc\x9d\xde\xdd\xcf\xa9\x1e\x6e\xde\xb7\x60\xb3\xa2\x8b\x71\x52\xb7\x6a\x4f\xd6\xa4\x18\xa4\xdd\x65\xe2\x98\x53\x71\x5c\xd2\x31\xed\xba\x74\x4c\x8d\xca\x81\xcd\x42\xc0\xad\x11\xa9\x5d\x87\x33\x1d\x82\x86\x8d\xa4\x37\xc2\x05\xe7\xc0\x63\x21\xce\xe3\xd9\xca\x7f\x3c\x39\x29\xa2\xe6\xea\x81\x08\xdb\xde\x57\x21\xdc\xfb\xe5\x13\x6a\x91\xeb\xda\x38\x57\x44\xeb\xcb\x81\x22\x5a\x5f\x9e\x28\x9c\x8d\xc2\x82\x64\xfd\xc5\x8c\xcc\x6f\xc0\x47\x31\x3a\xa4\x2d\x40\xbf\x8b\x04\xec\x43\xbc\x3f\x2c\x25\xe8\x18\xb2\xc4\x2a\x30\x46\x42\xd7\x57\x26\xe2\xc7\x30\x0f\x45\x33\xdd\x77\x2d\xb8\xf8\x8b\xe2\xce\x9f\x34\x6d\xe0\x74\xe7\xd3\x1e\xdf\x06\x7b\x79\xe7\x58\xe4\x10\x3e\x5b\x51\x81\x13\x20\xee\xfa\xc5\x65\xd7\xae\x6a\x37\x4a\x7b\xab\xe8\x37\xb9\xb0\x5a\xcb\x41\x3a\x47\x8f\x53\x2a\x7a\xec\xa7\x79\x61\x16\x6d\x4b\x37\xcb\x03\x9f\x08\xbd\xe3\x2a\x6a\x79\x91\x66\x91\xc4\x1a\xce\xc6\xa5\xba\x26\x3e\xf9\xc8\x31\x35\x08\x43\xb3\x32\xa5\x9e\xf0\x09\x15\x58\x33\xaa\x06\x7b\xf9\xfd\x86\x85\xbb\x9d\xd8\x62\x25\xcd\x04\xb7\xe1\x1c\x6f\x5c\xa8\xcf\xae\xf5\x92\xa6\x34\x12\x97\xc2\x91\xe3\x27\x62\x0a\x7d\xa8\x64\x57\xdf\x28\x95\x1e\x6d\x5d\x3b\xfd\xc0\xdc\xbe\xf6\x4a\xdf\xb0\x16\x92\x73\x14\x3e\xe0\x8e\x5d\xc1\x30\x8d\xa3\x65\x9b\x4d\x79\xed\xae\x3f\x57\xe5\xa9\x0b\xda\x6c\xe8\x72\x30\x21\xb5\x5b\xa4\x53\x4a\xf9\xf6\x37\x4a\xef\xb6\x7b\x29\x50\xfa\xc1\x17\x1b\xba\x4c\x7b\xdb\xa3\x61\xd7\x1a\x5d\x1d\x3c\xac\xa2\xd9\xc3\x4d\xfc\xc1\x7c\x68\xb2\xa5\x96\xb7\xbb\x00\x14\x45\x3a\x9f\x0d\xbe\xd6\xa1\x89\xc3\x51\x6c\xc4\x3c\x8a\x79\xb3\x28\x50\x31\x6c\x89\xee\x14\x51\xc5\x7b\x4d\xc2\x8d\xdc\x1a\xe1\x15\x1a\x43\xe6\xab\x58\x0e\xf8\xa4\xb6\x61\xca\xf8\xc9\xa6\x3c\x9c\xfa\x54\xd9\xfa\xa5\xbd\x4e\xdb\x79\x6a\xef\xaf\x7c\x4e\xa8\x99\x0a\x1a\x5e\x0d\x97\x67\xe8\x69\x0b\xbe\x84\x46\x88\x6c\x38\xd5\x5e\xea\x44\x52\x5c\x12\xf6\x03\xd8\x2e\xa1\x86\x76\x3c\x50\xc3\xf5\x0a\x0a\x0e\x4e\x82\x7e\xa7\xd7\x41\xa6\x21\x89\x5c\xfa\x9b\x81\xe7\x22\x01\xcf\x30\xa1\x7d\x81\x3d\xfe\xeb\x54\x07\x11\x54\x31\xed\x70\xfc\x83\x65\xeb\xd3\xbf\xec\x41\x5c\xce\x86\xe6\x6a\x49\xf0\x71\xac\x6d\x77\x03\x35\x04\xdf\x45\x78\x2b\x7b\x5d\x15\x14\x88\x38\x5e\xa3\xce\x0e\x3d\x7f\x17\xff\xf0\x60\xa7\x05\x46\x06\xbe\xeb\xe4\xf4\xcd\xb0\xb0\x99\x02\x1e\x3c\x28\x7d\xa1\xe1\xbe\xd7\x93\x7c\xb7\x8d\x64\x01\xab\x15\x2e\x1b\x03\x9f\x61\x7f\xb8\xd2\xad\xe3\x06\x93\xc6\x24\x2d\x2c\xbb\x28\x0a\xfd\x1c\x61\x88\x32\x4e\x14\x68\xd3\xa6\x8e\x62\x1e\xeb\x44\x3a\xab\x86\x54\x4b\x61\x7e\xb9\xaa\xc7\x27\xc1\xcf\x7d\xc4\x88\x4a\x87\x43\x9b\xf4\x6d\x34\xb0\x18\x5b\x58\x55\xd9\x8b\x13\x0d\x72\xc8\x7b\xa1\x83\x7c\x5c\x69\xe3\x87\xf1\x6a\x8f\xc0\x35\xde\xa4\xc7\x2f\xa6\xd1\x80\x25\x5e\xf6\xcf\x3a\x49\x02\x6f\xa4\x7b\x41\x89\x28\x84\x26\xca\xd2\x96\xa2\xed\xd2\x88\x11\x0a\xaf\xe0\x14\xab\xf5\x84\x67\x0c\xa6\xf3\x34\x38\x44\x7c\xd2\xf1\xd1\xd7\x60\x94\x17\x26\x83\x31\x2f\xa6\x27\x23\xac\x9c\xb8\xed\xbc\xa8\xe5\x00\xde\x2c\x55\x27\x2d\xc1\x47\xfa\x7b\x45\xd4\x8d\x6d\x4b\x63\xe4\x02\x5f\xa8\xbc\xa0\xb6\x03\x93\xf4\xba\xe8\x8e\xb8\x4c\x50\xd1\xc3\xea\x88\xae\xbd\x6d\x7b\x68\x18\xa7\x8e\x57\xdc\xf8\xc6\x74\x57\x20\xb3\x5c\x10\xc7\xa4\x42\x74\xed\x8c\x4d\x5d\x0b\xf2\xba\xaa\x11\x89\x8b\xd2\xc4\xfb\x51\xf6\x00\xa3\xb8\x88\x86\x26\xab\xfe\x62\xff\xac\x97\x86\xae\x66\x15\x9f\x04\xdb\xd4\xf0\xfa\xb8\x37\xe8\x7c\x23\xf0\x9a\x03\x6f\x52\xa4\x8e\x59\xbc\xa9\xe3\x65\xca\x1f\x06\x6a\x4a\xb2\x01\x18\x8a\xe4\x8f\x8e\x95\x26\xfc\x74\xc7\x43\x1c\xce\x51\x0b\xd7\xe9\x25\x7c\xfe\xb3\xde\x17\xf6\x80\x2b\xc3\xdf\x51\xfc\x79\xf6\xac\x07\xa0\xfc\x46\xe0\x9a\xf9\x87\x4f\xd0\x4a\xb1\x76\x1a\x75\x3a\x64\xbd\xf7\xb1\x72\x01\x6f\x3f\x91\x9d\x9f\x57\x50\x14\x36\xd2\x65\x1d\x53\x5a\x1e\x51\xbf\x6b\xa1\xfa\x81\x5d\xf2\xc9\xb1\x4e\x13\xd6\x1c\x96\x36\x31\xe9\x20\xa2\xdd\x47\x55\x00\x77\xcb\x89\x22\x90\x2c\x64\x69\x52\x18\x84\xcd\x1c\x76\xd1\x1c\x63\xe6\x03\x3e\x26\xad\x5b\xdf\x2d\xeb\x65\x66\x65\x2b\xe0\x0c\x08\xa9\xbf\x81\xb6\x26\xc2\xdf\x35\xec\x8f\x82\xd4\xa1\x7b\xe7\x13\xa0\xfc\xd0\x4c\x78\x99\x62\x32\x3e\xa6\xb9\xe0\x04\x72\xaa\x45\x9f\xbf\x0b\xdd\x47\x86\x9d\xbb\xe5\xd0\x14\x45\x66\xc2\x82\x52\x30\xbc\xff\x23\xd4\x17\xd2\x5c\x61\x5c\x19\x13\xbf\xb0\x80\xc0\xd9\x03\xe3\xfa\x09\x05\x5c\xea\xd9\xde\x76\x7a\x53\x97\xe9\x93\xa0\xe3\x3e\xd3\xf1\x0a\xee\x5f\xfd\x2f\x50\xc5\xa0\x3d\xff\x57\x9e\x19\x7b\x15\xb9\x16\xe1\x64\x10\xea\x3f\x3d\xae\x06\x91\xcb\x22\xc5\x62\x7f\x69\xfb\x18\xcf\x0a\x11\xfb\x25\x7a\x9b\xa2\xbb\xa4\xf8\x05\x5b\xc6\x1e\x6e\xd2\xff\x85\x4e\xf5\xdc\x30\x61\xb8\x19\x7d\x7d\xfb\x58\xd9\x00\x81\x04\x4d\x9b\xe9\xe9\xff\x6c\xec\x89\xe4\xc3\x2c\x1d\xae\xc6\x36\xe1\xf5\x42\xba\x77\x1a\x2c\xea\x8d\x80\xc2\x34\x29\xa2\x64\x64\x62\x04\x52\xe2\x10\x4d\x9f\xf4\x16\xd1\xf2\xda\x97\x53\x40\x24\x7d\xfd\x8b\x47\x23\x9f\xd4\x44\x3b\xe6\xf6\xb5\xbb\xa3\x55\xa7\xf4\x82\xcd\xfe\xe5\xd2\x97\x56\xa0\x42\x81\xed\xe5\x46\xa3\x93\xd2\x28\x8e\xa3\xbc\xdf\xf2\x80\xae\x63\x4a\x1c\xe6\x58\x93\xfc\xad\x59\x5c\xcc\xcc\xb2\x42\xc4\x35\xf5\x67\x7d\x9a\x33\x1c\x25\x11\x64\xb7\xf6\x48\x99\xeb\x1c\x8d\x4c\x3e\x56\xab\x71\xb5\x91\x44\x3d\x9b\x14\x91\x89\x11\xf9\xb2\x4d\xa5\x4a\xa4\x3f\x54\x3e\x02\xc7\x14\xf6\x2c\x5d\xb6\x59\x9f\xfd\xff\xd7\xde\x24\x26\xc8\x9b\xe5\xd3\xbe\xe5\x31\x4c\xe3\x74\x31\xca\x0b\x24\x51\xdc\x54\x43\x12\x25\x1d\x36\x8f\xe2\xeb\x5b\x53\xbd\x09\x90\x5d\xb0\xac\xbc\x59\x7a\x86\x33\xaa\xaf\x4a\x67\x4d\xe8\x09\x5e\x49\x34\xec\x5b\xbb\xd4\x52\x22\x82\xb7\x4b\x8f\x41\xbf\xad\x0c\x46\x06\x43\x1b\x3b\x45\x2c\xac\x53\x77\x69\x7e\xaf\x5d\xc6\x62\x8a\x97\x7a\x5c\x85\x7a\xf9\x70\x04\x0c\x8d\xd4\x48\xab\x2b\x93\xe2\xa9\x9f\x74\x3b\x77\x7c\xaa\xa5\x5d\x77\xb8\xe4\x21\x1e\x3c\x13\x96\x22\x24\x73\x50\xbd\xa5\xcd\xf4\x9b\xae\xe6\x53\xad\x33\x92\xea\xf8\x8e\xc1\xf5\x40\x33\x52\xb1\x88\x21\x54\x3d\xc6\x01\x0d\xd6\x55\x58\x53\xa0\x86\x76\x54\x65\xb3\x5d\xdb\x8f\x92\xde\x16\x0f\xf0\x79\x04\x6c\x7c\xf1\x2e\xd2\x34\x60\x68\x09\xe0\xb9\x81\xff\x89\x2e\xe4\x7d\x86\x7b\xf1\xff\xf0\xcd\x89\xb9\x96\xd6\x30\x77\xef\xa4\xe8\xdb\x28\xdb\xec\x63\x9f\xab\xb4\x5a\xb1\x69\x03\x7d\x35\x77\x61\xb1\x68\x38\x1a\x9d\x82\x1f\x2b\xe9\xb4\x19\x5e\x74\x68\x28\xfe\xe6\x4f\xa9\xb8\x64\x85\x0a\x33\xa0\xc7\x23\x5d\xbb\x40\x1b\x29\x1f\xab\x37\x59\x45\x30\x8f\x4d\x24\x97\xd5\x8f\x61\xb1\x7b\xa8\x59\xef\x67\x27\x74\x39\xbf\xa1\x18\x65\xaf\x21\xd4\x76\xfb\x50\xf5\xe8\x90\xd5\x7c\x39\x50\xe6\xbb\xef\x29\xcd\x8a\x8d\x80\x07\x73\xd0\x49\x97\x86\x36\xd4\xc6\xb1\x17\x3c\xff\x0b\xdc\x2b\x6a\x99\x57\x6b\xd9\xcd\xce\xf9\x76\x37\x03\x9f\x4e\x0b\xc6\xdf\x56\x82\xf1\xb7\x1b\xf5\xc3\xcc\xb2\x4d\x46\x76\xc2\x23\xfb\x82\x36\xd9\xbb\x10\x78\x2f\x31\x16\x7c\x91\xda\x78\xf5\xd5\x52\x34\xf7\xac\xec\x6e\x1a\xe5\xf2\x7d\xc8\x6a\xb8\x92\xcb\x27\x4a\x10\x25\x34\x05\xd0\xa5\xcd\x6a\x4d\x8a\xc3\x37\x0a\x97\x6c\x86\x90\x0d\xa0\x0e\x86\x67\xf0\x89\xaa\x25\x2c\x8c\xa8\x0b\xfa\x18\x3d\x04\xa1\x0d\xd1\xf3\x95\x68\xd3\x43\x93\x4b\xdd\xef\xfc\x6e\xe9\x15\x17\xde\xe6\xd7\x2b\x8e\xff\xbe\x6d\x8b\x65\x03\xf9\xd2\x16\xe0\x57\x91\x60\x00\xc3\x0f\x72\xca\xbb\x9a\x08\x76\x86\xd2\x22\x8c\xea\xef\x05\x2a\xa3\x38\x5a\x8b\x4f\x77\xec\xf0\x02\x0d\x34\x5a\xb1\x12\xa2\x36\xcf\xc7\xb5\xaa\xcb\x27\xda\x71\x34\x88\x0a\xae\x1f\x3a\x75\xb6\xea\xe9\x88\x3a\x9b\x76\x0d\x83\x08\x4d\x75\xab\x98\x5c\xc7\x55\xb7\xe1\x16\xc1\x2b\xb0\x53\x9d\x55\x5a\x2d\xf6\x10\x45\x1f\xd5\xaa\x58\x5d\xbe\x2b\xef\xba\x90\xfc\x56\xa0\x68\x94\xc7\xd4\x9a\x77\x60\xf7\xee\x29\x45\x5e\x44\x8a\xe8\x32\x4c\x27\xfc\xf0\xf5\x09\x2d\x86\x41\x9a\x6c\xa7\x20\x0a\xd7\xff\x26\xcd\x08\xe7\xee\xbc\x63\x8e\x93\xc5\x23\x81\x7f\x61\x47\x79\xbd\xc1\xf3\xbf\x89\xac\x56\x24\x65\x29\xbc\x72\x52\x28\x3e\xec\xdf\x3a\x56\xda\x4d\x5f\xd6\x98\xa3\xe3\x4a\x03\x11\xba\xa2\x28\x66\xdd\x00\x91\x5a\x00\xb2\xd5\xcd\x60\xd6\x6f\x18\x57\x4f\xce\xc1\x6c\xaa\x65\x9a\x2f\xbe\xf4\x3a\xe4\x79\x2f\xa2\x77\xa4\x49\x8d\x7c\xfc\x91\x3e\x10\xc3\x2c\x2d\x6c\x88\xfd\xda\x35\x72\xd9\xbc\x48\x76\x8e\xf5\x12\x7f\xf3\xf3\x6d\x93\x85\xfd\xa8\xfa\x20\xc9\x06\x39\x0d\xe6\x57\x69\x24\xf1\x71\x93\x48\xd3\xc0\x9a\xa4\x98\x56\x0e\x53\xd8\x66\xd1\x8b\xbf\x5b\xea\x1a\x88\xaa\x28\xcc\x74\xdc\x1a\x31\x8a\x49\x00\xc3\xfb\x51\x7a\x54\xd7\xbf\xaa\x26\xd8\xda\x55\xba\x6d\xac\x1a\x9b\x50\x4f\xc4\x4b\xd3\x9a\xc3\xbf\xf4\xa9\x79\xba\xea\x09\xb5\x60\x3e\xa9\x4d\x80\x3d\xb3\xed\xae\x4d\xa2\xc5\x84\x7a\xe8\x18\x83\xc8\x56\x58\x6c\xb5\xf4\xf9\xdb\x0f\x68\x96\x22\x8a\x39\x5a\xfb\xa6\xfd\xb3\x73\x6d\xaf\x8f\x8a\x2c\xf2\xf5\xc0\x93\xfe\x5e\x6f\x68\x05\xed\x6d\x0f\x23\x3c\x66\x1a\x3f\x68\x9d\x20\x93\xe6\xe3\xda\xfb\x39\x30\xb7\xcf\xb9\xd9\x2f\x09\x85\x00\x55\x37\x70\xe7\xf8\xb8\xc1\xfc\x71\x8e\xe2\xaa\x61\x16\x39\xaf\x24\x54\x24\x50\x2e\xe5\xe3\xa6\x36\xe1\x42\x66\x92\xb0\x1f\xe5\x56\xf3\x06\x2e\x29\x30\xff\x25\xcd\xd4\xcb\x4c\x4e\xfd\xbe\x78\x15\xe5\x75\xbc\xc0\x5f\x57\x54\xbd\xad\xd0\xb6\xe5\xff\xd0\xad\x7e\x6c\x60\x88\x58\x36\x2a\xdf\xee\xcc\xf4\xa2\x34\xc7\x45\x3b\x10\x4d\x35\x86\xf8\x44\xe1\x61\xc2\x74\x30\x88\xf2\x3c\x4a\x93\x7c\xd3\x94\x37\x8f\xda\x8a\x4a\x0f\xea\xc7\x77\xb0\x9b\x02\xa7\xf6\x03\x44\x25\x62\x4c\xe1\xf9\xc0\xdb\x94\x9e\x4d\xd3\xd2\xb9\x10\x29\xe2\x02\x93\x6f\x03\x5f\x95\x3d\xab\x6d\x20\x6d\x1c\x3f\xda\x72\x78\xbd\xeb\x34\xaa\x70\xcb\xd0\x87\x02\x44\x8d\xd9\x9e\x38\x79\x17\x6b\x0f\xc6\xde\x1f\x2a\x42\x66\xab\xe3\x35\x0f\x6f\xd0\xc6\xc3\x72\x24\x84\x86\x60\xfd\x08\x04\x61\xfc\x61\x00\xea\x24\x71\xa6\x07\x81\x94\xea\x7d\xb5\xa1\x66\xd1\x22\xc3\x23\x91\x9b\x43\x04\x82\x8f\x1b\x94\x0c\xdb\x45\x3a\x0a\xfb\xe4\x1f\xa4\x05\x20\x05\x5a\x35\x51\x26\xf5\x1d\xee\x07\x81\x7f\xab\x49\x94\xe7\x26\xd9\x4a\x17\xe7\x34\x7c\x0f\xb8\xe6\x20\xdb\x9a\x3b\x6f\x94\x5d\xbb\x78\xed\xfd\x33\xd5\x74\xfc\xb2\xc2\x87\xbe\x4b\xa9\x08\xdb\x5c\x28\xf7\x16\xee\x01\x49\x2d\x55\xf5\x80\xd2\x2a\x64\xab\xfe\x0f\xf0\xbb\xb7\xe8\x42\x05\x6d\xe9\xeb\x25\xa0\xdc\xe0\x07\x37\x81\x4a\x87\x82\xe6\x06\x8c\x64\xed\x2d\x81\x5b\x7e\xbc\xe3\x05\xa1\x6f\x71\x40\xa0\xec\x45\x9f\xe7\x15\x92\x2d\x2c\xc4\xbe\x8e\x9e\x19\x76\x8b\x12\x43\x14\x8b\xe7\xd6\x8e\x86\x53\x15\x8f\x54\x57\x86\x4c\x86\xc3\x5b\xa7\x4d\x2b\xbd\x9e\xbf\xe1\x84\x1c\xb9\xd5\x8f\x34\xbf\x6a\x43\x47\x29\x2a\x5e\x41\xc9\x40\xa0\x55\xd5\xed\xa3\x82\x81\x8c\x19\x83\xe9\x4a\xa9\xdc\x4d\x2f\xae\x67\x79\xed\x9f\x9d\x6f\xef\x98\xdb\x54\x8d\x3d\xce\x28\x68\x74\x8b\x3b\x9d\xaf\xcc\x63\x03\x91\xb0\xdc\xcb\x85\xbc\xac\x85\x9b\x8f\xd5\x20\x57\x3b\xe7\xdb\x3d\x53\x98\x61\x1a\x25\xc5\x94\x66\xea\x9c\x50\xe1\xd4\x57\xb4\x12\xf5\x29\xd5\xd5\x5d\x8e\x52\xc7\xd5\xc3\xbc\x3a\xa2\x30\xa1\x47\x1a\x9c\x7b\xe7\x45\x0b\x14\xcb\x8d\xe4\x62\x2a\x2f\x53\x84\xbd\x81\x49\x7a\x24\xe3\xe5\xa5\xa1\x02\xc5\x91\x6a\x8c\x9a\xd1\x48\xd0\xc4\x89\x49\x95\x41\x65\x0c\x3c\xca\x59\x6e\x13\xbb\x8a\x33\x49\x73\x81\xc0\x79\xc5\x9b\x1f\x98\x43\x2b\x36\x86\xe6\x3b\x8b\x8b\x28\xf7\xcf\x4b\xaa\x92\x61\x7a\xcb\x69\x68\x0a\xe1\x79\x88\x86\xa6\x9f\xef\x97\x1c\xc8\x2c\x8c\x4d\x16\x2d\xb8\xbe\x99\x93\x20\xf7\x7b\xef\x69\xed\x59\x03\xc7\xaa\x2d\xd5\x60\x40\x4a\x72\xac\xd4\xb0\x8f\xea\x17\x5c\x8e\xf6\x99\x03\x3c\xa4\xe0\x46\xc0\x5c\x9f\xc0\xa3\x38\x2e\x51\xc4\xc7\x30\x85\x40\xc9\x42\x9f\x53\x25\x89\x7e\x9a\xa4\x99\xc4\xbc\x5c\xbc\xa7\x07\x24\x85\xfc\x7a\xdf\x7c\x2f\x6d\x84\x21\x3c\x7f\xaa\xbb\x12\x29\x40\x7a\x1a\x02\x58\x96\xbe\x77\xdf\x24\xbd\x3c\x1d\x58\x16\x99\x47\x60\xfe\x37\x74\xc9\x7c\xac\x14\xb4\x17\x7b\xc3\x96\x57\x44\xfb\x80\x6e\x86\x8f\x55\x0d\xfe\x45\x5b\xb0\x53\x3e\x07\x26\x00\xd0\xf1\xb1\xc3\xc3\xa7\x49\x98\x2e\xda\xc4\xaa\x2e\xf8\x45\x62\x97\x49\x70\xba\x7e\x74\x1d\x3c\xd8\x5e\x4e\xe3\x91\xbb\x2f\x59\xbc\x55\xc5\xf5\x54\x0d\xd0\xb6\x6b\x57\xdb\x0c\x87\x59\x3a\xcc\x22\x65\x0f\x89\x6b\x61\x0d\x32\x3e\x51\xb5\x50\x7b\x88\x04\x1e\xb7\xd2\x22\x83\x58\x05\xf8\x1b\xce\x81\x14\xb4\xfe\x1a\xe2\xde\x09\xd9\x7b\x04\xbb\x58\x28\xb0\x79\x9c\xa3\x86\x24\xd6\x77\xb6\x19\xd5\x61\x27\x52\xe2\x6f\x29\x89\xf9\xe5\xc8\xae\xd0\x9a\xc0\xe9\x22\x3a\x1d\x2f\x63\x98\xf0\xc9\x44\x2b\x7d\x25\x5e\x25\xed\x1f\xc1\x33\xd2\x32\x8c\x1f\xbf\x83\x95\x17\xb7\xb9\xb9\xe3\x09\x13\xef\x69\x08\xc6\x99\x46\x09\xe0\xcc\x44\x02\x95\x5f\xa3\x99\xb9\x76\x5e\x6f\xaa\x69\x8c\x2e\x91\xd8\xb1\x5e\x9f\x30\xfa\xf3\x6c\x3c\xc0\x70\x64\x0d\xf4\x43\x25\x89\xc2\xbe\x05\x21\xc2\x71\x68\xbd\x85\x4f\xad\x65\x3d\x3f\xdf\xb6\x55\x4a\x97\x18\x87\x4a\x9a\x30\xec\x15\x57\xdf\xc7\x54\xbc\x96\x0e\xb7\x78\x16\xe9\x59\xe5\x84\x70\x0f\x77\x8f\x3d\x68\xaa\x43\xaf\x51\xe4\x6d\xe9\xab\xd1\x1b\xb8\x53\x7a\x36\xcc\x14\x55\x1d\xdc\x95\xfa\x0f\xd4\x02\xd9\x5d\xbb\xda\xdd\xcc\x9a\xa5\xa2\x9f\x11\x33\xbc\xfa\x59\x91\x8e\x6b\x79\x19\xb9\x5a\xd1\x72\xf7\x0b\x7b\xdb\xf9\xb2\xcd\x7a\x71\xba\x9c\x2f\x7d\xb4\xda\xc7\xe3\x8e\x01\xb6\x6c\xb3\xdc\xce\x78\x2b\x58\xc8\x73\xae\x9d\x56\x56\xfc\x6f\x04\x4a\xbf\xef\x92\x4a\xd9\xdf\x70\x93\x11\xc9\xb5\xb4\xfc\x38\xb0\xd0\x65\x9d\x9b\x4a\xa2\x8f\xc9\xc8\xd8\x70\x4f\xab\x40\x30\x8e\x86\xe8\xae\x31\xb7\x2d\x50\x42\x66\xe7\x6a\xe2\xee\x0e\x80\x60\x32\x53\xf4\x53\x76\x9a\x11\x6e\x7a\x4b\x31\xdb\xb7\xf1\x27\xab\x30\xff\xa7\x29\xf4\xc3\x5e\xc5\x8a\x00\xd2\x97\xab\xe6\x98\x30\xcf\xe8\x3e\x10\x13\x3e\x8e\x30\x86\xbd\xd6\xd0\x47\x46\x6e\x7a\x57\x61\x58\xd6\x10\x28\xe3\xaf\xee\x20\xa6\x74\xf6\xb6\x55\xd8\x86\x26\xff\xa6\x71\xb5\xfa\xd3\x40\xfb\xbd\xa7\x3a\x9e\xec\xf7\x1d\x4e\xb3\x75\x43\x0f\xe9\xc3\x29\xbd\x79\x6f\x43\xa0\x8e\x34\xf9\x26\x75\x94\xc4\xc6\x95\xc6\x1c\x36\xee\xf3\xb4\x35\xa0\xd2\xb5\x81\x8c\x90\x31\x16\x1f\x52\x3b\xca\x45\x5a\xbb\x1d\x01\x0b\xac\x72\x87\x57\xdc\x29\x70\xc2\xcb\x5c\x7a\x64\x69\xf4\x52\xf9\x94\xfc\xff\xc6\x5e\x73\xef\xcb\xcf\x50\xbb\x82\x5b\xab\xd4\xeb\x16\x0f\x1e\x45\xe9\x36\xd9\xe6\xea\x9b\xb1\xf3\x31\x35\x4e\xda\xc1\xd5\x35\x62\x1b\x9c\x1a\x7b\xf3\x1d\x44\xff\xf8\xf1\xfb\x54\x9f\x90\xa2\x98\x47\x95\xde\xa9\x81\x4a\xf6\xbd\xd0\x5e\x88\x23\xea\x86\x53\x35\x06\x39\xe9\xc9\x52\x69\xf8\xdc\x55\x99\xc8\x45\x55\x61\xa3\x14\x75\xab\x32\x05\xa7\x55\xdb\x19\x84\x57\xef\x01\xec\xb9\x5b\x98\xfc\xa2\x64\x53\x53\x73\xc4\xe6\x7f\x9c\xb6\x71\xa4\x19\x27\xe8\x1e\xb9\xe2\x18\x78\x4e\xd8\x9f\x34\x81\x48\x4d\x56\xe5\xb0\x53\x13\xc0\x76\xc5\xf6\x83\x18\xa3\x90\x62\x7c\xbc\x55\x40\xd9\x65\x5a\xe1\x47\xb1\x73\xf0\x31\xa5\x40\x88\x60\x21\x03\xc1\xc7\xca\x97\xb2\x97\x26\xa3\x22\x6f\x51\x59\xcf\xb1\x57\x9e\x7b\xce\xb1\x57\xd4\xb3\x8a\xed\x4a\xae\x8c\x3a\x8f\xe9\x92\xf1\x31\xd5\x36\xcf\x8b\x74\x38\xb4\xbd\x19\xdf\x15\xc0\x10\x73\xec\xac\xfd\xde\x89\x8f\xc6\x14\x16\x9a\x63\x13\x1c\xae\x8f\x74\x5b\x18\xd8\x43\x51\x68\x78\xf2\xbb\x76\xa0\x0b\xa5\x5f\x2e\xb7\xb9\x0b\x59\xf9\x64\x6b\xea\xc0\x9e\x59\x4e\xc2\x78\x45\xe4\x93\x26\xf0\x96\x59\xcc\x2c\x0a\x7a\xcc\x98\x40\x08\x84\xb5\xef\x3e\x26\x03\xe6\xc9\x5f\xb8\xc6\x79\x3a\xb4\x09\xbd\x82\x6a\xb0\xa1\x4b\xb6\x85\x40\x66\xe2\x51\xe6\x81\x34\xdb\x3a\x4a\xa1\xeb\x8c\x37\xc4\x2c\xcc\x92\xcd\x67\x7c\x43\xe6\x1f\x3e\xd9\x99\xac\xfb\xec\x99\x65\x62\xd3\x45\xce\x9d\xc4\xb2\xc3\x87\x15\x0f\xd6\x9b\x1e\xee\x9c\x6f\x7f\xfa\x97\xb1\x3a\xbb\x62\x82\x5b\xf3\x2f\x29\xb5\x89\x49\x1b\xaa\x06\xc0\x56\x98\x8d\x06\x5d\x87\x8a\x46\x7b\xf7\x0d\xad\x82\xf4\x86\xeb\xf9\x2c\x64\xf6\x8b\x23\x9b\x84\xab\x28\x8d\x48\xd8\xaf\xd3\x81\xc7\x54\x80\xbe\x64\x9f\xa1\x65\x13\x4f\x1b\xae\x41\x4a\xed\xe5\x0b\x5a\xd5\x55\xcc\x7f\x30\x8e\xb1\x1c\x6f\x19\x57\x4b\x04\xe7\xee\x74\x7b\xf8\x9b\x2d\x48\xf7\xb9\x69\x8e\x69\x0c\xc1\xba\xd7\x34\xe4\xe6\xc9\x31\x0d\x38\x00\xf2\x4e\x07\xbe\xe4\xf5\xbd\xd2\x17\xd6\x78\x6f\x47\x1e\x7b\x83\x26\x14\x26\xe8\xf5\x52\xb3\xf4\x58\x00\x01\x61\x1d\x57\x63\xa4\x67\x4b\x1b\xc8\x44\x07\x1f\x61\xe1\xd6\x8e\x6f\xe2\xe5\x55\x62\x53\x44\xcb\x16\x33\x0c\xf9\x30\xb4\x0b\xf8\x78\x3c\xa1\x82\x51\x8c\xf2\x19\x7f\xc3\xe7\x95\xc9\x35\xb7\x7d\xc5\xb0\xdb\x2b\xdc\xc3\x73\x03\x6b\xdb\x36\x55\x21\x1c\x2d\xa1\x96\x2a\x7a\xfa\x6a\x57\x3d\xa2\x88\x74\x03\x9b\x2d\xe5\x66\x60\xd9\x10\x0c\x0b\xdb\x71\x05\x44\x39\xee\xe8\x6c\xbd\x28\x37\x59\x66\x58\x51\x8f\x35\x08\x95\x94\xd5\xd6\x8e\x0f\x62\x6f\x6b\xb1\xd3\x8b\x0a\x0d\x94\xa4\xd9\xc0\xc4\x84\x80\x41\xde\x7d\x46\xa3\x1f\x50\x56\xe6\x63\xac\xcd\xfc\x57\xc1\xb3\x4a\x92\xab\x9f\xe6\xc3\xa8\x30\x04\x81\xf1\x29\x40\x0b\x5d\x22\x3e\x19\x37\xa8\x15\x99\xa2\x1f\xdb\x22\x0a\x27\xc0\xbd\xe7\x54\x30\x78\x4e\x2d\x8c\x99\x89\x87\x7d\x18\x89\xb3\x30\x2f\xc6\x8c\x56\xe9\x75\x5e\x5f\xbe\x0b\xff\x9e\xda\x2b\xff\x5e\xfb\x4a\xff\x67\x45\x7f\x75\xeb\x94\xf7\x18\x61\x19\x24\x27\x60\xb5\x67\xd6\x0b\x4e\x54\xbf\x83\x02\xc4\x69\x5a\x70\x71\xb3\xdf\x56\x26\x95\x3f\xd1\xf1\x9b\xed\x75\x14\x4e\x84\x85\x4b\x97\x82\x25\xe1\x82\x13\x16\x8d\xcd\xca\x94\x07\x51\xa1\x7b\x83\x00\xfa\xa9\x8e\xea\x72\x6d\x1e\x2b\x1b\x3e\x1b\xa6\x49\x0f\x43\x1a\x17\xf0\x01\x22\x30\x3e\x69\x04\x48\xf7\x4d\x36\xa0\xad\xdc\x99\x36\x90\x9a\xc1\xf3\x55\x88\xea\xda\x1c\x0f\x9b\x34\xad\x63\xd3\xd5\xa8\xd2\x4b\xaa\xad\xf2\x30\x50\x0d\x8a\xba\xd6\xc3\xce\xf9\x76\x1e\xc5\x51\x88\xa0\x72\xef\x04\xdd\x59\x1c\x2a\xfd\xb6\x1b\xf6\x4d\x4e\x39\xf6\xdc\x3e\xbe\xe9\xf7\x02\x0f\x1b\x7a\x6f\xa2\xb4\xf0\x22\x69\x18\x21\xca\x15\x60\x9d\xa2\xee\x5f\xac\x45\x33\x7b\x66\xdb\xd5\x2c\xa3\x3d\xce\x73\xb8\x8e\xe0\xfa\x85\x8b\xb3\xfe\xe6\xab\x2c\x7e\x34\x9c\xf6\xcc\xff\xeb\xb4\x52\xb1\x89\x02\x8d\x0c\x56\x25\x0a\x26\x14\xb8\x15\x8e\x25\xb6\x64\x90\x83\xed\x7c\x6b\x07\x8b\x1b\xf7\xdd\x4a\xb7\x72\xfc\x2e\xdc\x93\xb1\x3c\xb0\x7d\xad\x88\xb8\x28\x1c\x08\x4b\x36\xe2\x5a\x36\x8e\x95\x0d\xe3\x65\x44\xca\x82\x74\xa1\x18\x1a\x71\x24\x36\x3a\x11\x22\xa1\xb9\x2e\x65\xd0\x86\x5d\xa9\x17\xe5\xc5\x28\xeb\x72\x6a\x8f\x31\xc9\x06\x63\x7c\x52\x7b\xc9\xfb\x5e\x10\xee\x30\xbd\x0d\xa4\x54\x67\x55\x7a\x75\xd6\x5b\xb0\xa6\x71\x9c\xae\x6c\x52\xf5\x20\x58\xcc\xa0\x44\x77\x5b\x95\xeb\xce\x6b\x5c\x1e\xe2\x5a\x88\x17\x6c\xec\x78\x54\xf4\x96\xb1\x0f\xb8\xf2\x61\x9a\x15\xf9\xd6\xc9\x1a\xb4\x17\xf8\x86\xa4\x0c\x3a\x5e\x8f\x20\x0e\x10\xa3\x27\xba\x53\x04\xd0\xb7\xb4\x7d\xc4\xd1\x40\xa1\x33\x5f\x0b\xbc\x72\xf8\xb9\xc0\xc3\x90\x3e\xbc\xae\x98\x20\x64\xcf\x6b\xf3\x02\xfc\x5e\x54\x78\x37\xc1\x32\x18\xb3\xfe\xad\xd2\xb3\x5d\x8f\xe3\xeb\xb1\xcd\x6e\x19\x3b\x18\xc8\x68\x10\x41\xa4\x0f\x95\xe4\x2f\x05\x4a\x3b\xed\x4b\x8a\xa4\xc2\x8e\x10\xa0\x30\xf1\xd7\x07\x3e\x31\xb8\x34\xd1\x20\xa4\x0b\x16\xd4\x18\x3d\x23\xb9\x20\x7a\x14\xce\x30\xa7\x7a\x60\xa2\x20\xfb\x84\xea\x82\x67\x03\x9b\xb4\xbc\x6e\xdb\x25\x2d\x78\xee\x0d\x2d\xf2\x81\xc9\xfb\x0e\x5b\x84\xdc\x10\xae\xd0\x48\xda\xae\x2b\xc0\xcf\x45\x17\xea\x0d\x4d\xb8\x64\x16\x29\x77\x5e\x63\xec\x2e\xfb\x1d\xaa\xb5\xf0\x96\xf2\x53\x62\xd9\x7f\xc4\xed\xaf\x78\x00\x8d\x49\x4c\xac\x9a\xd2\x37\x55\x53\xfa\x66\xad\xb5\xb0\x7f\x76\xbe\x3d\x20\x05\x38\xcf\x90\xa0\xdf\x13\xb6\x44\x9d\x3e\xd3\xcd\x46\x79\x4e\xa4\x0a\xc5\x17\xd0\x1a\xe1\x6a\xe7\x29\xd2\x98\xe8\x0a\xa8\x3d\xfe\x10\xcf\x0b\x01\xd9\x4d\x4e\x51\xf9\x4c\x97\xbd\x7f\xa8\x92\xf8\x74\x25\xc9\x67\x7c\x3d\x96\x67\x3b\x1e\xf9\x34\xb1\x9b\x26\xfc\x83\xb1\x9c\xbe\x85\x60\x5f\xcc\x84\x9d\xa8\xd5\xbe\x9f\x56\x92\x21\xf7\xd4\x30\xf9\x51\x40\xa1\xbc\xf4\x9f\xaa\xbc\x56\xe1\xe0\xa4\xb8\x70\x04\xa9\x37\x08\x9a\x20\x05\x88\x03\x7c\xeb\x73\x73\x4e\xdd\xa9\x0a\x1b\x91\xfc\x4e\xf3\x42\x47\x1f\xff\xe7\x1f\x27\x42\x2c\x72\x96\xb5\x52\xb1\xdf\xd8\x6c\x03\xf1\xc6\x5a\xd9\xda\xf7\x02\xaf\x6d\x0c\xb6\x74\x1a\xb2\xd5\x88\x75\x39\xab\x33\x8c\x79\x4d\x9b\x70\xfe\xa3\x8e\xef\xfd\x3d\x3a\x56\x7d\x89\x47\xc6\x4a\xe7\x76\xfb\xd8\x63\x1d\x9e\x20\x79\x2e\x51\xb2\x6e\xfd\x92\xbc\x85\xa3\x58\x25\x1d\x36\xf0\xf3\x9f\xe5\x5a\xe8\x46\x06\xf0\x60\x25\xbc\x4e\x55\x52\x7c\xed\xab\x41\x95\x1e\x72\x37\xa2\x9c\xa0\x7b\x2d\xa4\xd5\xc2\xe8\xb4\x38\xde\x0a\x94\x3a\xfc\x5b\x6e\x65\x34\x79\x1e\xe5\x05\x85\x65\x78\x31\x33\x68\xa0\x00\xba\x74\x16\xf8\x76\xad\xe6\x81\x6c\xf8\x4a\xf9\x0f\x3f\x22\x9f\x2b\x32\x93\xe4\x26\xd4\xe4\x61\x7c\xd7\xdb\x18\x70\x7c\xd2\xa4\x14\x4a\xc6\xab\x09\xb8\x12\xce\xcc\x6d\xd7\x2e\x57\xbd\xf8\xa8\x02\x52\x9e\x46\x61\x5f\x00\xdb\x5c\x4b\xd5\x30\xd7\x6f\xa9\xbd\x3e\x4f\xc3\xc8\x16\xa8\x95\x0a\x5c\x8c\xc6\x98\x83\x35\x39\x7a\xe3\x45\x25\x45\xf7\x86\x06\x9f\x1f\x53\x05\xfa\xa2\x3f\xca\xf2\x9e\x59\x9d\xf1\x51\xe1\x0f\xb4\xde\xf6\x14\xca\x2c\x08\xa9\xcf\x2b\x33\xe2\xbb\xaa\x19\xfc\xa0\x16\xfd\xfc\x62\x7b\x41\xc0\x28\xe2\x8c\x4c\xdf\x83\xb5\xed\xee\x84\x59\x87\x33\x53\xc9\xd2\x15\xc0\xf3\x9e\xe7\xb4\x96\xc9\xfa\x3c\xd2\x02\x65\x7b\x7e\xae\xfc\x98\xab\x20\xe2\xb1\xf7\xb8\x3c\x4e\x2f\x09\xa1\xee\x55\x45\x69\xbf\xaa\x98\xaf\xa3\x24\x1f\x85\xa1\xcd\x73\x98\x40\x56\xf7\x21\xe8\x7f\xad\x72\xe6\xe5\x30\x72\xaa\xcb\xc0\xe7\x45\x32\x11\x9d\xa2\x3c\xa9\xb4\xa7\x6c\x3e\x1a\xd8\xde\x94\x77\x20\x44\xd8\x87\x1b\xba\xab\x9c\x68\x4f\x28\x66\x6d\x94\xd8\x85\x05\x1b\x16\x0c\x5f\x95\x4b\x38\x16\x78\x0b\xcb\x63\x4d\xbc\x0b\xb2\x42\x1d\xc4\x51\x02\xf8\x96\x6e\xd3\x4b\x66\xdd\x40\x4c\x1e\x66\x76\x20\x7e\xe7\x58\x4f\xae\x2b\x36\xed\xf5\x5a\x78\x73\xa0\x0a\x83\x6d\x22\xa2\xa2\x42\xa9\xe0\xa0\x4a\xb8\xbe\xcf\x28\x94\xe3\x60\x68\x0b\x32\xbb\x01\xc8\x40\x82\x30\xaf\xfe\xc4\xd1\x19\xdb\xd1\x04\x0a\xa5\x7b\x41\x13\x24\x4f\x29\x75\xdd\xa1\x49\x7a\xa6\xa5\xc1\x79\xa7\x03\x15\xc8\x51\x1d\x97\xff\x74\x29\x49\x57\x58\xc8\x81\x8d\x14\x31\x77\x01\x1d\x9d\x51\x76\xd8\x5b\xc7\xbe\xb2\x7d\x19\x69\x12\x06\xd8\xb7\x5d\x87\x29\x4c\x47\x49\x6e\xbd\xf8\x18\xea\x3a\xd8\x63\xf9\x58\x01\x2c\x86\x99\xed\x45\xbc\x7a\x54\x2f\x6f\x42\x30\x57\x44\x76\x7d\x03\xa1\x4f\x3a\x74\x2d\xaf\xcc\x16\xe8\xc6\xa3\x86\x4e\xa5\xbd\x5e\x4b\x89\x1a\xfe\x86\xf2\x87\xff\x8d\x1a\xc9\x75\xd7\xae\x2a\x3a\x28\x5a\x1a\x73\xa7\xaa\x63\x97\x26\xf8\x61\xbd\x8c\xb1\x1b\x4e\xe0\xc7\x4b\x47\xde\x9c\xb8\x86\x25\x9b\x6f\xaf\xc6\x96\xf0\xc5\x94\x9a\x85\x46\x77\x17\xff\x96\xde\xb4\x83\x19\x39\x92\xda\xbd\x40\x31\xd9\xaf\xd2\xb6\x27\x6a\x2c\x9e\x34\x72\x99\x8a\xc7\x00\xae\xdf\xd3\x44\x9f\x35\xe4\x6a\x82\x8d\xa2\xab\x44\x89\xfa\x7b\x78\xbc\x40\xa2\x6d\x82\xa0\x21\x2a\xce\x1f\x72\x55\x04\x3d\x0f\x88\xc0\x63\xcd\xba\xd2\xc0\x21\xd9\xdd\x2e\x46\x59\x32\x8c\x96\x58\x91\x95\xc3\xeb\x40\x99\x9d\x23\x07\x93\x40\xb9\x49\x68\x69\x21\x36\x68\x68\x63\x3f\x3a\xa7\x70\xe1\xe7\x9c\xfa\x46\x37\x2d\xfa\xdb\xbd\x2c\xe5\xd6\xb1\x17\x09\xd8\x34\x56\x5a\xf9\x9b\xc7\xaa\xf8\x0e\xe1\x0c\x84\xc7\x1b\xc6\x1e\xee\xb4\x19\x2e\xa5\x88\x8b\x78\xff\xc3\x16\x70\x57\xab\xc6\x01\xd5\x86\x0a\xee\x27\x68\x0b\x47\xc8\x76\x9d\xa2\x17\xba\xa3\x5f\xfb\xb8\x6a\x09\x3c\x44\x2c\x81\xc8\x69\xc3\x58\x59\xb2\xde\x29\x15\x5c\xc7\x77\xa3\x47\xc9\x4a\x54\x78\xb0\xba\xa6\x82\x08\x21\x4e\x15\x8d\x46\xdd\x51\xd6\x9d\xf2\x01\xff\x49\x11\x48\x53\x2a\xc9\x47\x1d\x44\xb5\x3b\x8a\xbb\xda\x47\xe4\x15\x35\xac\x5e\x51\x54\x5f\xd6\xb7\xee\x51\x32\x2c\x2a\x21\xf4\x78\x44\x57\x44\xea\x07\x36\x33\xd3\x8a\x99\x79\xbf\xac\xa3\x17\x90\xaf\x6e\x25\x42\x8d\xc8\xc7\xd4\x91\x46\x26\xee\xda\xac\x90\xa5\x49\x70\xab\xf4\xd5\x82\x68\x55\x50\xf1\x7d\x9f\xc6\xaf\xe2\xfb\xbe\xcf\x0d\x0e\x57\x07\x75\x86\xb6\x6b\xca\xcf\xf0\x64\x63\x6f\xb3\x4b\x10\x7e\xda\x69\x1c\xaa\xc6\xd5\x22\xaf\xd3\x50\x17\x60\xec\x93\x8a\x6c\x12\x75\x47\x85\x65\x99\x40\x2c\x1f\xb7\x03\xc5\xaf\xf8\x50\xe9\x07\x5f\x6a\xa2\x77\xa6\x0b\x0b\x36\xa3\xed\xa6\x89\x98\x25\x4f\x37\xb1\x2b\xa4\x80\x2f\xa2\xc6\x74\xcf\xce\x42\xdd\xc1\x3d\x36\x77\xb4\xe5\x41\x35\xf6\xa4\x14\xf3\x51\x8a\xc9\xa3\x24\x0d\x39\x5d\x69\x74\x76\x69\x88\xcb\x32\x1b\x46\x43\x91\x4f\xe2\x92\xcb\x64\xfd\xa5\x3e\x8f\xdb\xf1\x28\x5c\x5a\xc5\xba\xe8\x84\x95\x77\xed\x92\xe3\x1a\x80\x6f\xdf\x0b\xce\x58\x91\x10\x9d\xfb\x67\x27\x22\x32\x09\xd5\x1a\x2a\x07\x4b\x51\xb2\x38\x8c\x12\xde\x5a\x45\x1e\x5e\xa9\xbf\x1e\x6b\xaa\xc9\x64\x96\xec\xa1\xb9\x0a\x2e\xe6\xa7\x5e\xb6\xe6\x46\xa3\xc5\xe2\x48\x9c\x1f\x7d\x90\x74\xba\x54\x98\xd0\xd3\x4d\x42\x96\xf0\xf7\xa4\xfa\x97\x33\x1d\xf9\x9c\xd4\x37\x1f\xa2\xed\x28\x19\x6d\xdd\x3d\xac\x9b\x1e\x02\x34\xc3\xed\xd9\xd5\x3a\x22\x7b\xb6\xef\xc5\x2f\xa7\x51\x08\xad\x24\x8c\xbd\x2d\x1d\x25\xca\xf0\xa1\xca\xff\xf9\x7d\xb3\x99\xa3\x62\xe7\x0d\x6d\x3a\x8c\x6d\xbe\x89\x6e\x0e\x85\x8e\xd7\xb5\x36\xd3\xb0\xd4\xaa\x55\xaf\x03\x3a\xee\xe2\xb2\xe7\x9e\xe3\xfa\xe4\xf1\x89\x09\xb0\x7e\x93\xd8\x3f\xab\x25\xa6\xf6\xcf\x4e\xe0\x2d\xa5\xe9\xe8\xe5\x1e\x5e\x0d\x7c\x6c\x38\x4a\xa2\x85\x28\xcb\x0b\x12\x30\xc4\x6f\xdd\xc4\xc6\xe5\x44\x65\x5d\x50\xff\x96\xf2\x07\x10\x81\xfb\xde\xb4\x12\xda\xfd\x6d\x55\x92\xbd\x4d\xef\x9d\x8f\xb1\x68\x8b\x70\x44\x7d\xdd\x78\xbe\x3d\x1c\x75\xe3\x28\x9c\x52\x33\x58\xb5\xf3\x3e\x54\x1a\xb4\x3f\x0e\x9e\x51\x9d\xc9\x2a\x27\x22\xe0\x28\xf0\x0e\x58\x2d\xd8\xfd\x8f\x4f\x6a\x3f\xb7\xfb\x85\xbd\xfc\x73\xaa\xa4\x3f\xa3\x4a\x76\x33\x63\xaf\x39\x57\x0d\x4d\xe8\x79\xaf\xa1\x1f\xec\xb8\xba\x3e\x1e\xe1\x8c\x80\x26\xfb\x4f\x3d\x85\xad\x4e\xda\xd4\x1e\xd9\x75\xb9\x29\x20\xca\xd3\x28\x56\xb2\x38\x67\x95\x2c\xce\x59\xf5\xb4\xe1\x3c\x13\x85\x39\xb4\x9d\x30\x8e\x3e\x2c\x3d\x97\xf6\xbc\xa6\x12\x4e\x77\x7c\x21\xf5\x64\x49\x25\x01\x67\xcc\xb6\x67\x96\xf3\xe2\x9b\x13\xd8\xad\xf5\xcf\xe8\x17\xdb\x51\xd2\x8b\x42\xb1\x9b\xc4\xbe\xcf\xc6\xca\x7c\xd2\xd4\xa2\x1d\x1a\xa5\x52\x83\x3e\xc6\x61\x2d\x07\x71\x58\xd1\x81\x49\x18\x16\xae\x2f\x6c\x15\x87\x72\x87\x88\x76\xb5\xb4\x87\xdc\xce\x79\x67\x64\x57\xb7\xcf\x68\x77\x4d\x0e\x69\x35\x24\x0b\xff\x1b\x7d\x16\xdd\xc0\xcb\x2a\xba\xba\xa4\x08\x61\xc3\x2c\x5d\x88\x42\xc8\x6a\xa9\x2e\x3f\x3d\x45\x91\x25\x7a\x6a\x12\x21\x5c\x54\xa3\xbd\xfa\x66\x11\xd0\x52\xbd\x3e\xbc\x38\xfe\x0f\xdd\xf7\x3b\xab\x7a\x20\xbd\xf4\x25\x9b\x4c\x79\x8b\x90\xa9\x8e\xf7\xd5\xba\x47\xac\x45\x06\x23\xfa\xb6\x67\x9c\x0e\x05\x99\x85\x7b\x3b\x4f\x51\x2c\x1f\x7b\x5d\x37\xf2\xa3\x76\xf8\x1d\x6c\x69\x57\x15\x5d\xca\x53\x3b\x17\x98\xb5\xd3\x72\x16\xb3\xa0\x76\xf1\x71\x03\xfc\xb0\xdd\xb5\xa1\x19\xe5\x76\x7a\x42\x1b\xca\xe7\x8f\x33\x63\x6f\xae\x7e\xb7\x74\x78\xa9\xff\xe6\xd9\x8e\xaf\x6f\x2e\x58\x92\x9d\x63\x69\x78\xc4\x68\x90\xea\x70\x85\x19\x57\xde\x3b\xa9\x65\x66\x6d\x36\xb4\x55\x06\x3a\xb5\xbe\x84\xc0\x49\x3e\x46\x97\xd0\xf9\x7d\xad\xa6\x97\x8e\x7c\x3f\x16\xa1\xfa\x37\xb0\xca\xf3\x49\x13\x1b\x26\x1f\x75\x07\x26\x8b\x18\x3e\xd7\x24\x76\xdf\x40\x06\x88\xa3\x25\x1b\xaf\x4e\xfb\x9a\x0a\x57\xa4\x5d\xa2\xbd\x47\x24\x05\x36\xe8\xb8\xf9\xd5\xc6\x50\xbf\x67\x07\xc4\x7f\xc4\x66\x88\x21\x0f\xc0\x07\x1f\xd7\x8a\x1a\x7b\x66\xdb\xb9\x59\x9d\x56\xfa\x3b\x5f\x29\x6b\x2a\xaa\x18\x2f\xc7\x4b\x4f\xa7\xba\xa7\x5a\x80\x26\xfc\xe2\x28\xca\xe1\x03\x4b\xfc\x38\xd9\x38\xe9\x7b\x10\xc1\x5f\x57\x7e\x70\xdc\x08\x93\x1b\x54\xc8\xfc\x0d\x5c\x29\x44\x1c\x85\x05\x93\xff\x2c\x78\x7c\xc2\x24\x81\xf5\xd5\xb5\x5e\x8e\x6c\x32\xd5\x87\x90\x04\xd4\x8d\xbd\x49\xbb\xde\x26\x3d\x95\x9d\xde\x57\xd9\xe9\x7d\x97\xcb\x2c\x98\xbc\x20\x80\x31\xf6\xea\x13\xf4\xad\xa8\x34\x7d\xbc\xe3\x33\x16\xae\x2d\x0a\x1a\x85\x6e\x18\xd7\x74\x5f\x19\x87\xd6\x2d\xaf\xe9\x3a\xba\x71\x9a\xb2\x8f\x20\xe3\x8d\x94\x48\xd1\xf9\xda\xfa\x78\xf0\x60\xbb\x67\x43\x41\x16\x63\x2f\x3f\xa7\x60\xe2\x75\xd3\xf7\x03\xd5\xf0\x4a\xab\xc9\xea\xd2\xea\x73\x34\x69\x04\x00\xe8\x27\x58\x91\xae\xd8\xcc\xa9\x09\x09\xd5\x50\x53\x10\x9b\x04\x4a\xa2\x24\x27\x4e\xac\x52\x9a\x3e\x1f\xe8\x19\xe5\x9e\x67\x9f\xf9\xb0\xa2\xb3\xf3\xa3\x89\xce\x3e\xdb\x23\x61\x98\x61\xe7\x47\x52\xdf\xea\xf8\xe4\x6a\x25\x2a\xfa\x51\x32\xa3\x40\x94\xef\x28\x79\x6a\x50\xc3\x59\x2c\x07\xeb\x30\xf6\x0c\xc9\x81\x50\xe6\xbd\xf7\xd1\x32\x4e\x8b\x26\x4a\x48\xc0\x16\xa3\xaf\xa5\x58\xba\x2f\x97\xaa\x64\xff\x1a\x7f\x21\x6e\xe4\x9c\x96\xd3\xbc\xd0\x48\x78\xee\x2d\xdb\xac\x88\x72\x87\x60\x41\x5e\xb4\x65\xec\xe1\xc3\xf0\x5b\x50\x7e\x3d\x12\x0a\x7e\x2f\xf8\x98\x1a\xf6\x61\x9a\xf5\x96\xac\x1d\xf2\x7b\xda\xed\x7a\xf3\x9e\xcf\x79\x5c\x41\x5e\x56\x63\x46\x3a\x88\xb8\xec\x44\x3f\xab\x09\x27\xbe\x6c\xbc\x5e\x11\x5b\xc9\x72\x7f\x42\x8c\x65\xe5\x7d\x2e\xda\x41\x3e\x55\xa5\x90\xd2\x78\x51\x5c\x65\x70\x17\xa4\x0f\xe0\x63\xc5\x5e\x94\x17\x59\x14\x16\xd3\x13\xb6\x0b\xd5\x9a\x22\xe6\x44\x9e\x15\xf4\x07\x0a\xd0\xf2\x35\xed\x6c\x69\xb2\x5e\x3e\x8d\xfc\x12\x2b\xd4\xb7\xe9\x53\x80\xf7\x1e\xa6\x5f\xe6\x63\xf4\x3d\xf9\x8f\xd4\xd6\x9d\xd9\xee\x28\x8a\xc1\xa3\xa9\x02\x06\xac\xba\x30\x2a\xe7\x63\xb7\xdb\x45\x83\x61\x1c\x09\xbd\x1a\xef\xea\x9e\x32\xca\x3a\x49\x57\x2f\xad\x55\xbf\xdf\xf7\xd2\x24\xb1\x71\x6c\x57\x5b\xad\x1d\x3b\x9c\x5d\x43\xcb\x29\xa1\x9f\xa9\x4d\xee\x3d\xb3\xed\x34\x0c\x47\x52\x8c\x04\xf9\xf4\x82\xd2\xda\xb9\xd0\x04\x67\x8d\x92\x30\xcd\x86\x69\x26\xc0\x7a\x11\x52\x60\xa3\x0d\xb9\x30\x5d\xc5\x1c\x51\xc9\x73\x14\x15\xa8\x67\x88\xcd\x5b\xcb\x39\xb6\x1f\xae\x8d\x61\x52\x33\x4a\x7a\xb1\x8d\x9d\xa6\xba\x68\x65\x7a\x2c\xec\x64\x61\x6f\x64\xe2\x67\x14\x60\xff\x26\x6a\x2b\x28\x49\x5e\xe5\xf2\x00\xd6\x46\xe0\x0e\x78\xd1\xdc\xd8\xf1\x18\x77\xa0\xba\x00\xcf\x7e\x74\x4c\x79\x0d\x22\x7b\xb6\x0f\xc6\xcd\x6d\xa0\x18\xc8\x71\x5a\x77\xcc\x39\x6c\x9b\x32\x88\xbb\x1a\x28\x9a\xcb\x35\xa5\x4a\xfe\xbe\xa2\xec\xfc\x51\xa9\xba\x4c\x6f\x63\xf0\x60\xc2\x1f\xd7\x2d\x6f\xee\xd4\x3a\x6f\x92\xcf\x7f\xd6\x51\x27\xfd\xb8\x78\xbf\x21\xe5\x6c\xdb\x64\xd1\x2c\xc2\x74\x1a\x25\x14\xa6\xc5\x30\x93\x48\xbb\x49\x62\xe5\xc5\x12\x78\x4a\x51\x32\x17\xba\x11\x07\xc7\x0e\x7d\xe1\xbc\x4f\xeb\x91\xed\x9e\x59\x82\xac\xb7\xbc\x02\x06\x56\x7f\x3e\xae\x05\x10\xd5\x8a\x4e\x85\x90\xba\xe4\x91\xeb\xf1\x9d\x0f\x1e\xf5\x36\x22\x51\x41\x16\xa0\xa8\x83\xbd\xab\xe6\xe1\x65\x45\x8c\xae\x9b\x49\x7e\xa2\x5d\x8c\x12\x33\xe5\xb1\x4a\xb7\x95\xe8\xda\x39\x9a\x87\xe2\xb8\xaf\x7e\x2c\x5e\x25\xc6\x3f\xc2\x81\x57\xf1\x4a\x44\x0b\x98\x6a\x61\xd2\x70\xa3\x87\xaa\x49\xbb\x2e\xd0\xa8\xde\x2f\x86\xc7\xef\x95\x93\x4e\xe7\xce\x59\xe0\xa2\x22\x8b\xe5\x05\x91\x2b\x69\xec\x38\x9d\x0e\xa7\xe5\x75\xa1\xb6\xdd\xee\xda\xd5\xee\xa6\xe9\x80\x2b\x11\x28\xdc\xbe\x42\x4f\x82\x8f\x9b\x14\x34\x84\x8e\xd9\x72\x82\x0c\x17\x95\x20\xc3\x45\xd5\x00\xc8\x4c\x04\x2d\x31\xcc\x0f\x60\x1f\xd4\xf2\x2b\x80\xb2\x35\xd5\x5f\x58\x4c\x4d\x9c\x4f\x29\x11\xff\xfb\x78\x70\xe2\x10\xa9\x48\xa0\xe7\x15\x2e\x6c\xc5\x44\xcb\x36\x6b\xe9\x45\x84\xee\x63\x62\x41\xd1\xb1\xef\x5c\xbb\x58\x6e\xf9\xe2\x25\x47\xaa\x7c\xd2\xf1\xf5\xce\x70\x69\x5a\x29\x44\x60\xf1\x17\x31\x6e\xba\x16\x4c\xb2\x8d\x08\x81\x05\x43\xee\xc1\x07\xbd\x28\x1f\xb0\xae\xab\x72\x4a\xfd\x82\xf3\x43\x5d\x3f\xed\x9e\x7b\x8e\x2a\x99\x11\x93\x84\x45\x0c\x43\xfb\x2e\xd3\xe0\xc6\xf1\x11\x25\x4d\xbf\xa1\xb3\xbe\xb3\x39\xb7\xaf\xbd\x98\x2e\xdb\x2c\xa9\x42\xec\xdc\xa2\x78\x24\x0e\xc7\xaa\xae\x03\x0c\xa0\x24\xf0\x4e\x12\x27\x1b\xa4\x99\x65\x03\x59\x2c\x4b\x27\xb5\x62\xda\x1d\x15\xbf\x70\x57\x90\xff\xaa\x11\xad\x00\xda\x95\xa3\xfa\x9e\x51\xf5\xca\x3a\x69\x64\xc7\x0e\x31\x16\xd3\xe1\xdd\x99\x09\x48\x9f\xda\xa7\x63\xbb\x6c\x33\xb3\x68\x37\xd1\x1a\x80\xbe\x08\xb4\x38\xf8\x18\xaf\x0a\xcb\x26\x58\x24\x58\x52\xae\x68\xe5\x0b\xb6\x4d\xe4\xff\x09\x7e\x42\x27\xc3\xe8\xa4\x2d\xdb\x84\xe7\xd7\xf3\x7c\xe9\xb7\xd4\x6d\xdc\x6a\x64\x2f\x77\xad\x22\x51\xe1\xbb\xdf\x21\x19\x00\x3e\xae\x3d\xac\x2a\xac\xa1\xa0\x06\xeb\xa6\xf0\x23\x55\x37\xf8\x56\x6d\xe1\xdc\xb1\xa3\x5d\x44\x52\x4e\xc6\x8b\xbc\x47\x6b\x84\x23\xf2\x78\x5d\x81\xd3\xe5\xc7\xdc\x83\xcb\x6c\x8c\x86\x6d\x3f\x1a\xc2\xc2\x49\x14\x59\x7c\x57\xe4\x84\x96\xce\xd2\xa2\x11\x99\xcd\xc3\x91\xa5\x4f\x61\x59\x83\x54\x3d\xdb\xf3\xe2\x82\x05\x92\xa8\x24\xe8\x47\x59\x66\x93\xe2\x51\xda\x1f\x19\xc0\x1c\xf8\x60\xf2\x2a\x8d\x68\x0c\xfb\x3e\xaa\x68\xe8\x66\xfd\x7b\x6a\x48\xa1\x51\x75\x8b\xa6\x21\xaa\x16\xbf\x87\x4e\x05\x16\x2c\xf8\x23\x00\xee\x70\x55\x8b\xe0\x9f\x50\x75\xfc\xc3\x81\x22\x76\x7f\x0f\x7b\xb3\x88\xaf\x34\x48\x6e\x66\x24\xbd\x8e\x3c\x1e\xe5\xa6\xa3\x8a\x87\x04\xc1\x32\xae\xc2\x3a\x30\xcf\x20\x4a\xd2\x6c\x8b\x02\x4c\x82\x35\x2b\x81\x91\x16\x47\xf1\x05\xdd\x69\x98\xfa\x4f\xc8\xec\xb8\xc4\x74\xb7\x13\xa6\x42\x2b\x87\x46\xec\x7f\xf7\x0f\x3a\xba\x85\xd8\xb5\x3d\xca\x00\xd1\x8f\x42\x37\x8b\x7b\x56\x1d\xbf\x5a\x9f\xa5\x9f\x47\x1d\x0c\x7b\x17\x9e\xdd\x23\xc0\x6b\x02\xa4\x74\x12\xcb\xb8\x38\x97\x15\x1f\x43\x04\x84\xa6\x08\x36\x29\x61\xb2\xd0\xa7\x44\xbc\x83\x62\x18\x71\x90\xd5\xad\x18\x30\x5e\x9c\x2d\xc7\xae\x5d\x9e\xb4\x4c\x93\x5a\x6a\x9d\x74\xd7\x58\x6c\x37\x77\xb4\x3c\x5a\xe9\x1d\x4b\xd0\x1c\xc1\xc3\xbc\x16\x28\xdb\xb2\x19\xaa\x03\x62\x45\x3e\x02\xba\x12\xc2\xb1\x9b\x18\x24\x28\x17\xbc\x1b\xa8\x8e\x29\x57\x6a\x35\xbd\x13\x01\xf8\xb6\x4e\x35\x49\x31\xb3\xdf\x23\xd6\x09\x90\x5f\xbf\x59\x7a\x1b\x95\x47\x6a\x7e\x6a\x3b\x76\xb4\x87\x59\x3a\x70\x74\x37\x97\x21\xd2\x4d\xf2\x49\x93\x25\x47\x5e\x58\x13\x17\xa0\x78\xb1\x91\x74\xa9\x98\x26\x27\x9a\x3e\x13\x47\x5d\x9b\x71\xa5\x88\xa3\x04\xba\x01\x21\x80\xd2\xe7\x45\x74\xaf\xc9\x16\x68\xc1\x9a\x6c\x4a\x11\x3a\xef\x29\x8a\x25\x23\x00\x98\xf1\x36\x11\x2b\xf7\x4d\xfe\xb1\xd6\xa7\x7f\x99\x23\xcf\xa3\x93\xf6\xfa\xaa\x7f\xf2\xfb\xe8\x4a\x20\x52\x7e\x8c\x9e\xa7\xd8\x57\xd2\xa5\x21\xcc\x79\x40\x0f\x17\x31\xf9\x55\x1e\x33\xd8\x61\xdf\xc5\x68\x70\x44\x57\xd7\xf8\xd9\x32\x56\x76\xd9\xbf\x89\xea\x3d\x55\x9c\xde\x7c\x4a\x19\x1b\x1e\x0f\x54\xa0\xde\x1a\x2b\xa2\xc6\x9a\x76\xda\xbf\x43\x53\xd3\x09\x1e\x55\x03\x18\x83\xf1\x16\xbd\x69\x04\x1e\x4f\x10\xf0\x0a\x11\x25\x26\x13\x46\xdc\x13\xd4\x95\xc4\xfc\xfd\x40\x99\xe2\x0f\xfb\x51\x1c\x0d\xa7\x7c\xf9\x89\xe5\x14\x10\x79\x43\x31\x43\x6c\x77\x3d\x30\xd8\x21\x30\xa7\xaa\xc9\x82\x10\xe1\x86\x22\x43\xde\xa0\x2b\x42\xf9\x60\xb7\x6a\x67\x86\xa3\xe2\x51\x5f\xd2\x44\xde\x86\xe2\xd2\x35\xbc\x1c\x27\xed\xb4\x67\x96\xf3\xf4\x5b\x78\x51\x28\x4c\x32\x70\x14\xf3\x76\x6a\xec\x53\xc4\x3b\x78\x84\x4e\x78\xc0\xf9\x77\x7e\xe7\xa9\x8e\xdf\x98\x67\x9f\x41\x5e\x80\x3b\x9d\x1a\x2b\x35\x91\xf7\x54\xaf\xb9\x30\xd9\xa2\x2d\xb6\x54\xc3\x80\x27\x62\xa9\x8a\x95\x47\x4a\x4f\xb8\xe2\x6d\x19\xa1\xca\x37\x68\xe1\x77\x53\xb7\xba\x50\xfe\x8f\x52\x89\xe2\x20\x1a\x61\x2d\xd2\x9a\x39\x33\x29\x31\x14\x24\xcb\x5d\x7d\x31\x00\x23\xe7\x03\x6f\x8e\x74\xbe\xc9\x40\x8f\x7b\xd8\xaa\xc2\x7c\x5f\x5b\x8d\xdf\x57\x3c\x88\xc2\x1c\x1a\x9a\x55\x9b\xe5\x9b\xb5\x52\x18\x32\x2f\xc7\x86\xf6\xe2\x5b\x81\x86\xc5\x5c\x29\xbd\x21\x14\x36\x30\x6c\xc2\x53\x63\x2f\xe7\x70\xb5\xa9\x91\x48\x96\x61\x2e\xf5\xe1\xb5\x59\x49\x90\x69\x4e\x5b\x98\xc6\x29\x7c\xdf\xb1\x08\xad\x69\xb9\xab\xb5\x7a\x40\x31\xd7\x2e\xfa\xa6\x98\xf6\xf6\xe9\xad\xb1\xb2\x93\x7b\x44\xb1\x04\x4e\xfa\x0a\xf8\xdf\xfe\xb8\x96\x3a\xcd\xed\x6b\x77\xa3\x82\x14\x30\x30\xbc\xb6\x76\x7c\xed\xe7\xba\xe2\x6b\xac\x95\xbe\x85\xfe\x57\xb5\xce\xd1\xfe\xd9\x2f\xb4\x13\x8b\x54\x9e\x99\x36\x81\x57\xbe\xb9\xde\x08\x7d\x4f\x17\x80\x1f\xd1\x5b\x1d\x26\xf6\x35\x04\x92\xc8\xd9\xde\x6a\x90\xa9\x69\xe7\x55\x44\x09\x48\x10\xe2\x84\x53\x81\x07\xa8\x9d\x6a\xb2\x05\x59\x8c\xd3\x3c\x47\x8f\x95\x85\x9f\x02\x8f\x4d\x3a\xee\x40\xc6\x66\x54\xa4\x61\xc6\x52\xce\xb8\x73\x20\x7d\xf9\x58\x81\xef\x43\x33\x68\xe9\x86\x81\x12\x69\xaf\x07\x2a\x73\xfb\xda\x3d\x6b\x9d\xff\x95\x33\x02\xf7\x70\x91\x73\x2a\xcb\x2a\xb2\x51\x5e\x6c\xf1\x09\xd2\xa9\x40\x21\x4e\x39\x21\x45\x7c\x7a\x0a\xab\xab\x58\x5d\xf8\x49\x76\x57\x41\x1b\xce\x6a\x80\xd0\xdd\xd2\xa7\xef\xa7\xdc\x7d\x17\xfd\x28\x59\x72\xe0\x6a\xac\x53\x40\x2c\xa3\x00\xb1\x46\x5f\x2d\xe9\xbb\x1f\xb7\xa6\x37\x88\x50\x3f\x66\x4d\xef\xc0\x03\xc6\x3f\xac\xbd\xf6\x83\x07\xdb\xf1\xe8\x50\xab\x5a\x93\x65\xdf\xd4\x9b\xa8\x2a\x1f\x0f\x33\x13\x81\xae\xb1\x6b\x97\x53\xe7\xa2\x87\xc0\x27\x4a\x1d\xb1\x1b\xf5\xd0\x41\x72\x49\xf7\xd7\x74\xce\xce\xd5\x3e\xa7\x3d\x92\xb5\xbc\x77\x38\x26\x07\x1f\xab\xfd\xc1\x14\xf9\xbf\xfc\xa7\xff\xac\xa5\xca\xef\xec\x77\x22\xfc\x01\xff\x04\xf2\x81\xc9\x0a\x25\xab\xf0\x30\xf0\x25\xa7\x87\x0d\x9e\x1b\xcf\xb7\xf3\x51\xb7\xb0\xd9\xc2\x68\x91\xc5\x88\x04\xfd\xd1\x72\x3a\x5b\xde\x4b\xbc\x6b\xe2\x38\x2d\xa4\x3f\x26\xd5\x7f\xd5\x09\x50\x98\xee\x2a\x23\x23\x3a\x88\xb4\xcd\x7d\x07\x6f\x66\xec\x91\x3a\x27\x75\xb0\x73\x5a\xc5\xf3\xff\xae\x54\xf1\x3c\xfa\x34\xa2\x0f\x49\xd7\x09\x36\x1e\xcb\x72\x03\x87\xf8\x4a\xe0\x91\x6e\x94\x63\x3f\x3f\x69\xa5\x85\x09\xf9\xd7\xc1\x53\x7c\x3b\xcb\x76\xd1\x16\x26\x8b\x8c\x83\x0d\x0b\x30\x52\xa3\x24\x9b\x5a\xaa\x66\xd9\x86\x34\x70\xd8\x2e\x39\x50\x65\xcd\x33\x6a\x30\x2c\xa4\x59\x18\x25\x8b\x9b\x54\xa0\x0a\xe5\x6c\x69\x3f\xa9\x44\xef\x92\xce\x28\x51\x3b\xd0\x0a\x02\xe2\xf2\xec\x71\x53\x55\x08\x98\x8e\x16\xfb\xdb\xbc\xf2\xd9\x37\xe8\x29\x63\x0a\x6f\x85\xff\xb1\x74\x2e\x15\x50\x12\x8d\x6e\x84\x5d\x4f\xe1\x39\x61\x9f\x6f\x75\xbc\xf8\xd1\x77\x3d\xcf\xeb\xbf\x04\xf3\x8e\xc3\xdb\xd2\x0b\x12\x30\xcd\x0b\x97\xf9\xbf\xd7\x84\x66\x76\xbf\xb0\xb7\xda\x4a\x46\x83\xee\x28\x07\xd9\x96\x8b\x21\x13\x2e\x65\x0d\x75\xbd\x85\xc8\x14\x13\x0e\x30\xa5\xe2\x8f\x9c\x0d\xb6\xb9\x47\xb0\x38\xd8\xa4\x7d\x1a\x26\xf8\x43\xa5\x6f\x76\x1c\xa1\x7b\xc1\xa6\xf9\x9e\x2a\x3e\xb2\xc9\x38\xa6\xc7\x2d\xd5\x1f\xb5\xc9\x62\x3c\x4a\x34\x22\xed\x82\x8a\xe4\x2f\x04\xcf\xba\x3e\x41\x96\xad\x0e\x4c\xd2\x53\x55\x45\x24\x5e\x00\x9b\xf2\xb1\x02\x83\x77\xb3\x2a\x0e\x5f\x9d\xf2\xb4\xb0\x7b\x13\x4f\x63\xa2\x8b\xbc\x3e\x0c\x3f\x78\xb0\x9d\xf7\x0d\x97\xd3\x30\x1b\x6e\x2a\x19\xb0\x9b\x4d\x5b\x8d\x49\x56\x57\xd0\x01\x9d\xf7\x91\xdd\xe4\xf4\x13\xec\xc9\x1f\x97\x3e\x7a\xbc\x37\xb1\x4e\xf5\xa2\xe2\x71\x55\x50\xff\x2e\x66\x1d\x42\xe2\x87\x6a\x9d\x7f\x97\x43\x72\x2c\xd3\x67\x4b\x4f\x07\x83\x00\xbe\x8b\x6e\x0e\x48\x7a\xf7\x3e\x2e\x40\xf0\xfa\xd5\x05\xa0\xae\xf6\x80\x1e\xb8\x18\x47\x52\x60\x2a\x92\x60\xf4\x96\x51\x0d\x44\xbc\x87\x87\xf7\x7d\xed\x51\x74\xd8\x2d\x5a\x36\xce\xed\x4a\xdf\x66\x76\x8b\x8f\xe0\x7e\x52\x55\x17\x99\x17\xe4\x18\x64\x8e\x02\x71\x98\x46\x0d\x02\x82\x6b\x78\x31\x8e\x7e\xe7\xcb\x15\xf7\x4a\x0d\x91\xf6\x43\xa8\xc8\xd2\xa2\xb0\x19\xe5\x5b\xb8\xa4\xb7\x11\x1f\x3b\x2f\x62\xc7\xf9\x3f\xe2\x1a\x32\x89\x1d\x15\x19\x57\x00\xa5\x97\x52\x2d\x33\xd2\x63\x51\xce\xbe\x26\x5c\xa2\x8c\xc1\xc1\x3b\xab\x87\x82\x2a\xc7\x06\xc0\x69\x45\x80\xce\xf7\x47\x6c\x9e\x43\x3f\x38\x5e\x45\xd5\x54\x2a\x86\x3e\x3a\xfa\xf5\x40\xa5\x3e\xc7\x6b\x89\xe0\xae\x5d\xa4\x4a\xc8\xc5\x23\xbc\x10\xb1\x7b\x17\x8d\x18\x7a\x52\xd2\xb4\xf5\x11\x8a\x1d\x0d\x67\x7c\x61\x61\x53\x47\x6f\x1b\xca\x08\xe3\x6b\xe5\x84\x36\x8b\x02\x81\x9f\xd1\xac\xc8\x51\xd1\x4f\xb3\xe8\x25\x00\xba\x1c\xbe\x58\x6d\x60\x8a\x35\xff\x37\xcd\xd8\xa2\x1e\xe3\x08\xd0\x94\x00\x5f\x8d\x8f\x9d\x81\x47\x2f\x1d\x75\x8b\x7c\xb3\x1f\x8a\x17\xf5\x78\xbd\x8c\x25\x9b\xae\xfb\xdf\x3c\xd9\x69\x7d\x6e\xce\xb9\x14\xb6\x9c\x1c\x2b\xc3\x70\x45\x35\xa6\x1a\x84\xd8\xbb\xce\x2b\x0d\x85\xbe\xcd\xf2\x98\x15\x8c\x84\x0e\x5e\xfd\x25\x1f\xd7\xf6\xa0\x83\x07\xdb\xa1\x11\x35\x6c\x5c\xcc\xcd\x40\x01\x36\x6f\xd6\xa2\x9d\x03\xbb\xdb\x5d\x5b\x4c\xfd\x7d\xd6\x68\xde\x40\x4d\xb9\x61\x66\x64\xa9\xe0\x48\x32\x78\x7b\x6b\xaa\x88\xbf\xa6\xfd\xa1\x46\xc3\x61\x9a\x15\xb6\xb7\x09\x43\x42\xcc\x85\xbc\x3e\x07\xe7\x85\x8e\x5b\xee\xb5\x5c\xf1\x2c\x27\xbc\x89\xa4\x50\x54\x13\x48\x9b\x6b\xef\xd8\xf1\x71\xaa\x17\x20\x08\x3c\xae\x2d\xd5\x59\x49\x05\xeb\xcb\x75\xe5\x39\x7b\x98\x5b\x73\x52\x59\x51\x56\xd0\x07\x95\xd9\x21\xaa\x4f\xd2\xa3\xd1\x7c\xa2\xbb\x18\x9b\x78\x7d\x47\x30\x53\x14\xe2\x6d\xb7\x33\xa3\xa7\xab\xc7\x62\xf1\x2d\x0a\x7d\x91\x09\x5d\x0c\xb4\x2b\x62\xe0\xab\x79\xa5\xd2\x19\x7e\xad\x54\x4a\x83\xef\x41\x3b\x06\xf3\x94\xfd\x8a\x01\x9b\xbd\x1b\xf8\x22\xc3\xb8\xf4\x4e\x23\x0c\x9d\x46\xe8\xff\xa3\x89\x55\x3c\x67\x0a\x20\xea\x2a\x60\xf4\xf0\x71\x13\x8d\x3a\xcd\x86\x7d\x93\x4c\xaa\x1e\x61\xb1\xe7\x63\x15\x77\xae\xa4\xb2\x5d\x8a\x4a\x68\x75\xd7\x22\x12\xda\x4c\xbc\x1a\xc6\xf6\x90\x02\x7b\xdc\x52\x60\x8f\x5b\x13\xc1\x37\x81\xa6\x7b\x24\x91\x2e\x90\xc2\xea\xdb\x45\xb6\x67\xfd\xa6\x47\xe8\x93\xa5\xa8\x07\xc6\x34\x5b\xab\x68\x05\xac\x73\x81\x9a\x78\x69\x6f\x51\x04\xa5\x84\x7a\xaf\x57\x8e\x6a\xf5\x75\x4d\x53\x27\xc2\xff\xd6\x1b\x0d\x95\xf8\xf6\x20\x5d\x46\x59\x7d\xce\x49\xfb\x29\xe8\xc8\x9b\xc1\x04\x40\xa1\xde\xf6\xd8\xdd\x36\x2b\x66\x95\x6e\x13\x4b\xe9\x55\x5a\x02\xf8\x38\x98\xf0\x78\x8e\x0a\x48\x95\xce\x4d\x20\xec\x04\x54\xf7\x8c\x9a\x90\xdd\x3c\xa4\x90\x23\x9f\xf2\xfb\xd4\x19\xfa\x62\xbc\xfa\xfb\x81\x2f\x5c\x69\x2b\x95\xee\x28\x8e\x2d\xb7\xd1\x05\x2c\xe1\x0b\x7e\xaf\x6b\xc1\xf2\xd4\x3a\x05\x19\xe4\x5a\xf7\x54\xd6\xf1\x03\x5f\x81\xfe\xe0\x41\xe9\xbb\xeb\x6f\x07\x4f\x3a\x78\x5e\xb6\x64\x86\x69\x1c\xe1\x85\x21\xfe\xe0\x39\xc4\x27\x8e\xd7\x45\xe0\x28\x17\x6a\xc9\x88\xf7\x24\xc1\x33\xea\x0e\xe2\x28\x2f\x6c\x6f\x73\xf5\x3c\x9d\xdc\xcc\xff\xc3\xd8\x9b\xc7\x48\x92\x9d\x77\x62\xd3\x59\x55\x7d\x4d\x0f\xe7\x26\x29\xed\x81\x94\xc0\xd5\x48\xc6\x80\xa0\xbd\x58\xac\x96\xff\x44\x6e\x75\x69\x86\x5d\x26\x6b\x0a\xd5\xcd\x9e\x55\x1b\x06\xe6\x55\xe4\xab\xcc\x98\x8a\x8c\x48\x46\x44\x56\x4d\x0d\x64\x60\xb1\x10\x0c\xc3\x30\x0c\x63\x2d\xc3\xb0\x57\x36\xd6\x5c\x79\xad\x95\xb4\xbb\xd6\xbd\x2b\xc9\xcc\x22\x39\xbc\x39\xe2\x90\x3d\x9c\x93\x73\xf4\x7d\x77\xf5\x7d\x4e\x57\x1b\xf1\xfd\xbe\xef\xbd\x2f\x2a\x62\x64\xff\xc5\x4c\x4e\x57\x66\x46\xc4\x7b\xdf\xfb\x8e\xdf\xe1\xa1\x19\xdb\xd1\x93\xc2\x5e\xde\x04\xb8\x52\xcc\xb8\x7d\xc7\xfe\x7f\x54\x6d\xbd\x1f\xe0\x27\x49\x7a\xe9\x90\x28\xa3\xcc\xc6\x6b\xad\x6a\xf2\xee\xe6\xd0\x55\xde\x8e\xe9\xa5\x7b\xb4\xfe\xca\x65\xa5\x7b\x7f\x2d\x50\xbd\x6d\xa8\x90\x6f\x5e\xa2\x76\xa7\xab\x4a\xbc\xae\xeb\x0f\x02\xdf\xc7\xc5\x98\x1f\x39\xe3\x07\x63\xa5\xbe\x79\x66\xac\xc0\xb6\x80\x2a\xf3\xbf\x42\x1c\x02\xb7\xe9\xdd\x86\xac\x71\xbe\x6d\x57\xe8\x94\xf7\xca\xc6\x53\x0c\x5e\xc3\x62\x9e\x5c\x57\x7e\x30\xdf\x1b\x7f\x9a\xff\x72\x39\x2a\x53\xe1\x22\x2d\x6c\x12\x47\xb6\x6b\x33\x2a\x92\xf0\x33\xd9\xad\x81\xdf\xac\x7b\x73\x02\x52\x97\x25\x30\x8f\x63\x8e\x82\xa0\x20\x36\x59\x7e\xb7\x0e\xd3\xc2\x14\x69\x4b\xb9\x1f\xc0\x92\x97\x5f\x2b\x35\xbb\x30\x8d\xd3\xc1\x62\x64\xc0\x2f\x17\x93\x34\xba\xc3\xfc\x26\x50\x21\x26\x5d\x2d\x4b\xe0\x78\x4a\x11\xa2\x36\x94\x68\xf1\x8e\x75\xdf\x6f\x78\x80\x9a\xb8\xc0\xc7\x71\x3c\x17\x17\x6b\x6f\xe9\x3c\x34\x65\xa6\xd5\x23\xf6\x5d\xb9\xb0\xb8\xee\xa2\xad\x26\x35\x58\x1d\xa6\x3e\x43\x76\x41\xe9\x8a\x20\x72\xb0\x36\xb5\x66\x05\x8f\x4e\xa5\xcf\x2e\x29\xee\x57\x46\x51\xb8\xbc\x12\xd9\x55\x2a\x2b\xa4\x66\xf2\x90\xc4\xd3\x3a\x61\xbd\xdd\xe4\xc1\x9c\x0f\x4d\xaf\x6f\x8b\x22\xc2\xbd\xc5\x47\xc0\xc9\x81\x5f\xaf\x6f\x0d\xe2\x0b\xd3\xed\x51\x99\xe1\xb2\xd6\xb9\x68\x7d\x28\x7d\xbf\x0b\x9a\x3b\xd4\x4f\x57\x69\xe2\x24\x89\xc0\x65\x25\xb7\x76\x89\xc2\x2c\xd2\x92\x0f\x70\xfc\xe1\xc6\x03\x33\xe5\xd4\x5c\xcb\x9f\xc6\x56\x0a\xb5\xf8\xb9\x77\xa6\xfc\xdf\xa2\x3f\xe5\x7d\x5d\x50\x83\x21\xc7\x7c\xb0\xa3\x84\x17\xdf\x53\x53\x2d\xad\x83\x7b\xb6\x36\xfa\xff\x7c\x7b\x30\x40\x2f\xc7\xa9\x24\x7b\xf8\xda\x39\x65\x48\x5b\x10\x7b\xd0\x29\x45\xdd\x50\xb4\xa0\x1b\x81\x77\x7e\x4f\xd2\x64\x09\x5c\x43\xb8\x59\xb2\xbe\x0a\x4e\x79\x11\x5b\x69\xaa\xa3\x05\x6b\xaf\x69\x7f\x85\x62\xb4\x16\x8e\x30\x94\x17\xa6\xb0\xf9\xaa\xcd\x8b\x29\xfa\x0a\xa1\x7c\x79\x66\xf1\xc9\xb1\x9a\x7b\xe0\x82\xb0\x91\x77\x76\xb4\xb9\xfc\x69\x0d\x08\x8f\x8a\x22\x5f\x1c\x65\x3d\x98\xa1\xb0\x14\xd2\xb8\xa2\x8b\xb4\x15\x7a\x48\x08\xae\xbc\xc8\x46\x94\x3c\x2a\x35\x0f\x80\x12\xc4\xb9\xb7\xd1\xd0\xd5\x24\xcb\x1e\x2a\x8f\x84\xe7\x8a\x26\x0d\x5d\x69\x04\xf8\x85\x7d\xeb\xfc\x92\x65\xbc\x41\xdf\xcb\x6f\xd4\x7a\xcc\x22\x87\xf3\x46\x5f\x03\xf3\x68\x7e\xad\x2d\xc1\xf3\x32\xc0\x77\x75\x01\x7d\x9d\x7e\x3f\x9e\xd6\x64\x47\xf5\x01\x2f\x00\xed\x85\xd4\xb1\x8e\x87\x99\x39\xd0\x0e\xd3\xd4\x37\x36\x1d\xca\xc9\x01\xd1\x31\x2d\xc2\x31\x54\xb7\x95\xa0\x4b\x4c\x57\xbc\x91\xbd\x48\xd6\x2a\x2b\x94\xf3\x0a\xe1\x33\x8c\x4d\x22\x1c\x2a\x1c\x2b\x2c\xb8\xc6\x6f\x34\x20\xdc\xc6\xf1\x68\x00\x3c\xa5\x68\x0b\xb5\x94\xe8\x90\x53\x50\x1d\x15\xb1\x71\xae\xe6\xc8\x26\xc0\x3f\xe1\xd7\xb5\xc3\xe4\xc0\x73\xed\x3c\x5d\x89\x2c\xba\x92\x00\xe3\x70\xa9\xc2\x6f\xc6\xd2\x8f\x8b\xa3\xa2\x9f\xf6\x32\x33\xec\xaf\xb5\xb4\xa7\xfb\xd9\xb1\x67\xfc\x9e\x75\x36\x53\x7d\xb3\x62\x13\x31\xb4\x59\x98\xde\x7c\x6b\x8b\x33\x7c\x66\x62\x0c\xd5\x71\xde\x3f\x8c\x49\x13\x56\xc2\x55\x2e\x59\x11\xea\x1f\x41\x0f\x4c\x68\x1c\x2d\xa7\x9e\x72\x1e\x95\x04\x3e\xe0\x2e\x66\xc4\xfc\x86\x1e\x1a\x83\x6e\x55\x2e\x14\x5b\x43\x02\x5c\x0b\xd2\x6d\xbc\xa7\x46\x01\xf7\x54\x35\x9c\x45\x83\x07\x29\x51\x77\xa0\x8b\xf2\xc3\xd1\xae\x7a\x1d\xe7\x36\x26\x26\x40\x57\x20\x34\x9e\xf2\x32\x1f\xd1\xa3\x4a\x1c\x66\x8a\xb4\x14\x9d\x64\xc2\xde\x99\x8a\xbd\x06\x02\xc4\xeb\x5a\xb4\x96\xd7\x01\xae\xf8\x0f\x55\x1e\x5f\xf4\x6d\x6e\x9f\x6c\x39\x73\xbd\x7f\x31\x56\x77\xe0\x07\x54\x66\x60\x49\x70\xaf\x9c\xe3\x06\xc0\x08\x88\xd3\x3f\x1d\xab\xfb\xf4\x03\x3a\xf2\x1c\xd8\x7e\xef\x8c\xc3\x5e\xd0\x26\xc5\xb6\x39\x81\x4a\x4c\xa4\xe0\xca\x6b\x44\x70\x78\x8d\xb0\x2f\xce\x23\xb8\x5c\x72\xb8\x29\xef\x50\xca\xe3\x26\x10\x65\x98\xe3\x2f\x0f\x14\x78\x87\x55\x34\x9d\x48\xa9\xaf\x17\x31\x53\xc5\x0e\xfe\x21\x71\x4b\x90\x8f\xbd\x19\xa8\x82\xfa\xfb\xc1\xa3\xaa\x05\x5f\xa4\x59\x62\x59\x81\x1f\x4b\xf1\xe8\xb8\x22\x43\x30\xff\x9c\xac\xd7\xa3\x81\xa7\x1e\xb1\x15\x2d\xe2\xca\xff\x39\x7e\xd0\x2d\x80\x7f\xfc\x19\x22\x45\x48\xa6\xb6\xed\x33\x9c\xc1\x7e\x82\x86\xd2\xb8\xc9\x67\xf0\x98\x50\x13\x6d\x6b\x32\xb8\xea\x65\xd1\x80\x3d\xf1\xb4\x8a\x29\x82\xe4\x71\xa5\xbb\xfa\x35\xd5\x9a\x5a\xed\x47\x45\x11\x5b\xa4\x26\x02\xcb\x2e\x9f\x93\x00\x95\x9f\xac\x0b\x92\x1f\x9c\x9e\x79\x44\xb5\x90\x3f\xc0\xad\xc5\xdd\xbc\x12\xf8\xef\xa7\xb4\xfa\xd9\x4d\x74\x46\x36\xd7\x95\xfc\xd5\x19\x6d\x30\x70\x9f\x16\xc9\x66\x6b\xdd\x37\x99\x8f\xd2\xf2\x70\x2a\x98\xfb\xe4\x2a\x5e\xd7\x4b\xf0\xf7\xe9\xc1\x0b\xff\x41\x1d\x3f\x3f\xa4\xce\x37\xee\xff\x03\x10\xef\x13\x1e\xd8\xc3\x2e\x60\x24\xdd\xd8\x05\x5f\x27\x2e\xee\xb2\x90\x57\xc6\x3e\xd9\x38\x33\xf6\x67\xb6\xc9\x16\xa3\x22\x33\x45\x9a\x01\x66\x87\xbb\x74\x1c\x4f\x9c\xdf\xa8\xb2\xf8\xeb\x5a\x18\xf8\xeb\xae\x93\x14\xe5\xf9\xc8\x76\x77\xd0\xf2\xc4\x5a\xbb\xa7\xaa\xb0\xf3\x63\x25\x42\x05\x72\x05\x56\xc6\xff\x42\x3f\x50\x4e\x0a\x25\xa7\x31\x85\xfa\x05\x81\x61\xbb\xb2\x76\xe8\x5a\xd3\x65\x69\x6d\x27\x71\xbd\x30\xed\x24\xae\x1b\x7a\x29\xb3\xb3\x0f\x96\x37\x8f\xbf\x90\x1e\x99\xa8\x18\x56\x71\x45\xe5\xbe\x16\x8f\x07\xb4\x52\x30\x76\xf8\x19\x16\x39\xbf\x19\x7b\x7e\xdd\x7f\xad\xee\xcb\xd5\xc0\x0f\x77\x18\xfb\xc3\x9f\xa5\x78\x77\xb7\x14\x18\xbe\x3f\x1a\x98\x64\xa2\x22\x8a\xd8\x72\xfe\x78\x5f\xd7\x5c\xeb\x26\x02\x4a\x3b\x49\x8b\x28\x64\x23\x10\x0e\x87\xc8\x9e\x25\x36\x2a\xe9\xc4\xc2\x9a\x6e\x94\xd8\x9c\xfb\x9a\x02\xb6\xa0\xab\x47\x90\x3c\x31\x56\xd2\xcd\xb7\x5c\xc3\x96\x1a\xcb\x26\xdf\xae\x2c\x2b\x10\x74\x2b\x5e\x96\x48\x41\x4f\xd0\xcf\x17\x03\x51\x2f\x67\xba\xbb\xa3\xc4\x82\x5f\x6d\x20\x51\xed\x27\x75\x8c\x04\x67\x2e\x96\xc2\x65\xfa\x2c\x7e\x5d\x29\x31\xd3\xa4\xf7\x64\x19\x35\x81\xd6\x7c\x5b\x3b\xfd\x9f\x57\x6e\x4b\x7b\x80\x97\x72\x20\xb3\x7d\x32\xed\x63\xac\x07\x12\xa6\x6b\x63\xcf\xa7\xfb\x19\x9f\x99\xb8\x1f\xf7\x02\xbf\x11\x59\xd4\x03\xc1\x7c\xdb\x3a\xdd\x0b\xec\xdd\x0f\xd5\x14\xe4\xc3\x40\x71\x9a\x5e\xc3\xc9\xea\xfc\xb1\x9f\x79\x9e\x9b\xbc\x17\xb0\xad\xd0\xf0\xfe\xa9\xd6\xda\x7c\x05\xeb\x4f\x3c\x7a\xca\x60\xe1\x1a\x36\x6e\x91\xb1\xfc\x97\x8c\x70\xb7\x82\x5c\xcb\x0c\xaa\x6f\x4d\xf7\x2b\x23\x93\x79\x0f\x3b\x27\xff\xe9\x78\x91\x77\xb4\xb1\xf7\x61\xee\x01\x62\xab\x7f\x54\xd6\x08\x8a\xb3\xd2\x4b\xa2\x97\x65\x34\xdc\x24\x08\xf2\x84\xa4\xe5\xe9\xc0\x66\xb9\x19\xc5\x85\x0b\x41\x9a\x6d\x2e\x02\x57\x2d\x67\x9b\x79\xb4\xa6\x1e\x43\x4a\xdd\x51\x2f\x21\xb2\x20\xb5\x73\x70\xc6\x40\xaf\x43\xba\xc0\xbe\xa3\xd6\xa4\x7a\xb7\xbf\xcc\xad\x4d\x62\x98\x6b\x28\xe6\x3b\x8a\xdf\xc2\x62\x22\xe2\xc1\xeb\x53\x96\xff\xec\xb3\xff\x80\xae\x12\x77\xfd\x92\x7a\x02\x97\x14\x7d\xcd\x9a\xc2\xb2\xb4\x2e\x42\xfd\x75\xbe\x7d\xfc\xae\xb6\x57\x5f\x78\x41\x68\xe0\xc4\xb8\x11\x46\xb7\x02\xa1\xde\xa9\x5c\x93\x57\x62\x59\xb5\x26\x43\xca\x2a\xe8\xf6\x96\xd3\x48\xbe\x58\x6b\xd0\x3d\xdd\x5e\xb4\x34\x91\xa1\x65\xe4\x7c\x54\xdd\xbd\xff\x21\x62\x12\xfa\xc1\x37\x94\xde\x52\x18\x93\x96\x62\x8c\xfd\xc7\xa6\xcf\xb8\x49\xe2\x00\xed\x1d\x0b\xe3\xd8\x0c\x73\x01\xd7\x62\x47\xdd\x0b\x94\x20\xe4\x6d\x7a\x56\xb2\xd7\x7d\x82\x61\x07\xc3\x38\x5d\xb3\x59\x8b\xb2\x14\x1c\x10\xc7\xb8\x5f\xcd\xef\x82\x3d\x6a\x9b\x3f\xf5\xb0\xe2\x8a\x1e\x56\xa8\x1a\x6e\x9c\xb1\x1f\x24\xb6\x3f\xba\x3e\x57\x15\x3d\xe2\x5d\xcd\x4b\x79\x6b\xac\x14\x1d\xb9\xfe\xc6\xf2\x3d\x3a\x56\x10\x28\x6c\x66\x66\x89\xa1\x62\xe5\x7f\xa5\x61\x95\x20\xa0\xe0\x1b\xe5\xd1\x03\xbb\x77\x4e\x19\x28\xd7\x21\x4a\x73\x73\xed\xcc\x96\xab\x1b\xdd\x0f\x59\x80\xd7\xd1\xf3\x76\x36\xbb\x8a\x7f\xb9\x95\x31\x54\xa6\x29\xca\xac\x08\x75\x8f\xd3\x57\x9a\x73\x96\x48\xb5\x69\x10\xb4\x20\x97\x27\x3c\x1c\xf2\x9e\xca\xe0\xae\x69\xf2\xf8\x51\x45\x3b\x1f\xc6\xa6\x58\x4a\xb3\x01\x3a\xab\x08\x22\x2c\x3c\xe3\xf0\x1c\xaa\x1d\xa3\x3c\x2d\x4c\xfe\x90\x6f\x28\xdd\xc2\x15\xea\x51\x89\x20\x87\x94\x3b\xd4\xe1\xb1\xda\xaf\xdf\xa0\xe7\x2d\x28\xb7\xf2\xec\xc6\x01\xf9\x83\xb1\xc2\x74\x1f\x0e\x3c\x46\xea\x0a\x1e\xb7\xeb\x6f\x3a\x86\xe7\xfb\x58\xc7\x58\x14\xd7\xf5\xd4\xe5\x8d\x26\xc9\x4c\xe2\xc2\x66\x55\xcf\xf6\xbb\xda\xb3\xfd\x6e\xf0\xb8\xce\x99\xed\x60\x58\x38\x26\x1a\xce\xdd\x77\xc6\x1e\x0a\xf4\x8e\x2b\xe6\x86\x64\xe0\xe1\x67\xa5\x27\xf5\x2c\xf7\xe4\x78\x8f\x6f\x44\xfc\x52\x6f\x92\x96\x1e\xb2\x95\x13\xf4\x69\x08\x5c\x27\xb1\x72\xf9\x3f\xd0\x6d\xe1\xff\x50\x6b\x16\x2d\x4c\xb7\x17\xb3\xc8\x2e\x4d\x78\xd9\x07\x36\xd2\x70\xce\xe5\x73\x72\x83\x7f\x47\x4d\x5d\x97\xa2\x04\xc6\x07\x4e\x61\x5d\xe1\xe2\xe8\x6f\x04\x23\xe7\x27\xaa\x57\x2a\x4e\xc3\x3e\x9c\x2e\x98\xb5\x09\x45\x19\x95\x92\x14\x8b\xee\x35\xba\x2e\x91\x2a\xdc\x3a\xcb\xdb\x37\xd7\x5e\xfb\xa5\xac\xd5\xfa\xf2\x17\x18\xc5\xf1\x26\x7e\x08\xbf\x09\x3e\xe9\xfd\xc7\x93\xc2\x66\x09\xc1\xf6\x4d\xcc\x43\x39\x24\x50\xec\xdf\x85\x73\x9a\xc1\xb3\xc2\x9b\xd1\x61\x94\xd6\x20\x42\x03\x9b\x30\x88\xcd\xd6\x6e\x47\x26\xce\xa6\x3c\x71\xe8\xc7\x81\x72\xe8\xe5\x14\xca\x41\x28\x5c\x9e\x37\x81\x66\x30\xc4\x6c\x2e\x39\x28\xfc\x92\x09\x8b\x94\x1e\x0a\x32\x0b\xa8\xe1\xa3\x26\x00\x8d\x0a\x4f\xf7\x42\x6d\x0f\x93\xbc\x42\x98\x4f\x28\x2d\xc6\x3f\xf9\x48\x39\x9d\xf0\xcc\x5e\x26\x24\x0f\x29\x32\x50\x52\xec\x54\xc5\xcc\x6b\x6a\x12\x78\x65\xec\x67\x6c\xaf\x51\x2a\x84\x3b\x24\x7d\x32\xdc\x49\xee\xfa\x38\x19\x5f\x77\x1e\x55\xae\xfe\x84\x82\x05\xad\xd8\x7e\x14\xc6\x76\x57\x79\x82\x22\xd3\x7e\x57\xb3\x21\x50\x0e\x33\x3a\x01\x4f\x06\x19\xe4\x99\x8a\xc4\x44\x05\x20\x85\xfd\x82\xbb\xb6\xae\x46\xd9\x6c\x3a\x2e\x30\xaa\x87\x55\x83\xdc\x14\x36\x9f\xf4\xca\xf0\xac\x37\xc8\x6f\x14\xa1\x1d\x9a\x7c\xfc\xda\x55\x53\xa4\x48\x67\x33\x4b\x8f\x1e\x75\xd7\x57\x91\x35\x39\x9f\x7b\xa7\x30\xba\xa3\x53\x91\x83\xf6\x21\xee\x72\x23\xfb\x27\x4f\x63\x36\xb7\x54\xd6\x32\xc2\xf3\x85\x88\x21\x7e\x65\x5d\x64\xe9\x69\x92\x03\x4b\x57\xca\x63\xfe\x79\x37\x8d\x3c\x42\xfe\x12\x8e\x95\xe5\x7c\x1c\x6e\xd5\x66\x87\xfb\xe6\xda\x31\x15\xc7\x53\xde\xa6\x70\x67\x47\x71\xf8\xcf\x2b\x6d\xa0\xed\xeb\xbe\x8f\xc9\x1c\x6a\xb4\x11\xce\x35\x11\x60\xf3\x28\x5e\xb1\xb0\x26\x06\x94\xe0\xa4\x92\x88\x3d\xe9\x52\x88\x41\xda\xb5\x59\x12\xe5\xe8\x97\x71\xe1\x43\x4f\x40\x8a\x20\x1f\x42\xfe\xfe\xe7\x3e\x87\x46\xd9\x26\x65\x63\x9b\x97\x5c\x5d\xd2\xb5\xbd\xcc\x4a\x1a\xc2\xbd\x74\xbd\x95\x71\x20\x22\x3c\xfe\x51\x3d\xd1\x5c\x98\x77\xb9\x2d\x57\x50\xac\x94\x1b\x28\xa9\xf5\xb3\x0a\x23\x3a\x30\x59\x04\xb1\x45\x44\xf6\xa3\xda\xcc\xf5\x68\x45\x50\xbd\xb0\x71\x1c\xf5\x48\x44\x8f\x7e\x9d\x38\xef\xd0\xaf\x13\xd8\x87\xea\xa8\x45\x76\x91\x6f\x9b\x4c\x15\xf4\xb8\xe1\x93\xd5\x72\xb6\xfc\xe5\xe5\x0d\x69\x29\xa2\x0e\xee\x9e\xd8\xe6\x34\xaa\x25\x75\x6d\x9a\x70\xcb\x51\xc4\x03\x54\x40\x3d\x57\x99\xa2\xdb\x6c\xb0\xd3\xcf\x65\x3f\xaa\xcc\x29\x11\x09\x10\x71\xfe\x4c\x65\xad\x7b\x54\x5f\x77\x6a\xbd\x3a\x21\x2e\xa3\x30\xce\xb9\x3d\xe4\xba\xce\x89\xe2\x65\x17\x14\x57\xfb\x29\xaf\x47\x27\xe2\x57\xde\x2a\xc4\x1b\x4c\x10\xb1\xec\x76\x02\xf1\xe7\x3c\xc0\x64\xfd\x7c\xf3\xc9\x4e\x83\x1c\x95\x7d\xa9\xb0\x49\x97\xa7\x37\xf8\xce\xef\x69\x1f\xdf\xef\xa9\x51\x6a\x6e\xcb\x3d\xb1\xa3\x2a\x97\xe6\x93\x9b\xf7\xa9\x4f\x87\xfd\x09\xc6\x10\xc2\x3f\x26\x93\x38\x46\xaf\x69\xf3\xc1\x7b\x55\xac\x8a\x1f\x9c\x91\x94\xeb\x30\x36\x2c\x03\xa1\xe4\xce\x9f\x75\x72\xe7\xca\x79\x24\x4a\x12\x9b\x4d\x7a\x5b\xfd\xb3\xe3\xaa\xb0\xaa\xa3\x58\x9f\x0d\xb4\xfa\xaa\x2f\x21\x16\x4d\x97\xd5\x49\x04\xf7\xec\x11\x3d\x8f\x9d\x1b\x57\xe0\xd1\x9e\x9f\x7b\xae\xa6\x25\x56\xae\xa2\x28\xe9\x8e\xf2\x22\x8b\x6c\x8e\x2e\xa1\xb8\xa9\xe0\xae\x61\x2b\xb0\xc9\x2a\x4a\xe5\x1f\x97\x8f\x68\xf3\x92\x1e\x29\x9d\x6a\x6c\xfa\x2f\x66\x76\xd5\x55\x8d\xd8\xc0\x77\x95\x7a\xd5\x19\xdc\x4d\xf1\x7b\xdb\xfa\x09\x4f\xb7\x97\xed\x5a\x62\xf3\x88\xe5\xe0\xd1\xb3\xbd\xa0\x1b\xb8\x17\xc6\x8f\x55\xf7\xd1\xaf\xb4\xbf\xb8\xbf\xe5\x59\x68\xef\x69\xd3\xe8\xf7\xd4\xe9\x19\x65\xfc\xa1\x68\x45\x9c\x52\xdd\xaa\x53\x0d\x38\xfb\x76\x1a\x6a\x58\xfe\xbc\xd6\xfa\x9a\xaf\x55\x86\x7b\xf7\xb6\x97\xa3\xd8\xcb\x78\x36\x89\x82\x6c\x0d\x5d\x07\xa7\x0f\xb5\xf3\xa1\x0d\xa3\xa5\x48\xd2\x54\xd1\xbc\x53\xf6\x3b\x17\x14\xf1\xd8\xc4\x79\xfa\x08\x35\x1d\x70\x58\xec\x22\x99\xc6\x8a\xa6\x2f\x6e\xf3\x76\xb4\x15\x55\x73\x68\x1e\x36\xf4\x87\xb8\x8f\x71\x55\x61\x31\x1f\x5e\xf7\x19\xe4\x1e\xcc\x88\xb0\x12\xbf\x4d\x67\x91\xe3\x76\x2e\x4c\xf3\x79\x79\x93\xf3\x3f\x94\x64\x37\xb0\x90\x81\xe2\x81\x51\x33\x16\xef\xc4\xba\x12\x8b\xdf\x4d\xd2\x8f\x42\xaa\x97\x4e\xe3\x30\x5a\x36\x91\x99\x50\xdc\x92\x93\x5a\x9c\x01\x97\x84\xca\xfa\x96\x1a\x4d\x52\xb2\x4e\x99\xe2\x44\x05\xc1\x57\xfe\x44\xe9\x9a\xd3\xc5\x4a\x51\x2e\xbc\xe7\x38\x1d\x75\x27\x94\x97\xce\x35\x6c\x1b\x6d\xa1\x89\x14\x7b\x9b\x92\x3c\x0a\x63\x6b\x12\xea\x9b\x2c\xcc\x73\xed\x83\x3d\xca\xaf\x55\xb9\x14\x76\x73\x4a\x32\x50\x03\x7e\x97\xda\xf5\xc8\xa9\x60\x6a\x84\x89\xc2\x19\xa5\xfd\x7f\x99\x3e\x89\x45\x0c\x6a\x73\xc9\x99\x03\x6d\x53\x6e\x54\x13\xcb\x8e\xc0\x79\xf6\xfe\x58\xe5\xa4\xef\x37\x00\x74\xe8\x47\xb3\xf1\xb9\x76\x36\xe3\xd7\x6a\x1a\xbc\x5a\xfe\x3b\x1f\x2f\xd8\x33\x99\xdf\x6c\x6d\xc1\x2e\x4c\xef\x6f\xcf\xce\x4e\xea\xfd\x5c\x5e\x8a\x34\x60\x94\x5c\xd2\x39\x45\xf8\x3f\x17\x3c\xe8\x6e\xe6\x28\xdf\xed\x91\x33\x97\xa9\xf2\x41\xb3\xea\xc3\xaa\x41\xa4\xeb\xfe\xc1\xe2\x09\x7b\xff\xaa\xe6\x54\x02\x25\x82\xf0\x74\x55\x3b\xa6\x9e\x47\xc3\x9f\xff\x04\xd7\x23\x1d\x3b\x9f\x90\x0c\xec\x4b\x2d\x8f\xc7\x38\xaa\x71\x9d\x47\x15\x05\x2d\x0a\x8b\x07\xab\x72\x59\x0e\xec\xfe\xb5\xb1\x1f\x41\x72\x33\x0f\xdf\x79\x0f\x37\x42\x56\xa5\x6a\xeb\x02\x4a\x8a\x6f\x61\xe8\xab\xd3\x5f\xf7\x87\xf8\xfd\x40\x9f\xef\xb8\x19\x58\xa2\xf7\x2b\x59\x71\x92\x44\xc0\x57\xbb\xe9\x92\x57\xe1\x3e\xa5\x48\x19\xb9\xed\x9a\x24\xa7\xa7\x86\x5e\xcb\x23\xf4\x33\x90\x6b\x6d\xea\x6c\xf0\x7a\x95\xc9\xd0\x40\x7a\xea\xd9\x01\xba\x15\x32\xd8\xf0\xa9\xf3\x87\x75\x2e\xe6\x73\xfb\xdb\x2b\x04\x21\x77\x61\xf7\x01\x9a\x19\x21\x0e\x5c\x57\x1e\x88\xa7\x1a\x5a\x1d\xf3\xe5\x61\x3e\x55\x01\xca\xab\x0a\xe3\x82\x8a\x14\x1c\x31\xf1\x15\xf7\x74\x41\x7e\xb1\xe2\x03\xf9\xe2\x2f\x2d\xb6\x3c\x5b\x84\x6f\x18\xbf\x51\x8d\xc1\x7c\x68\xe0\xcb\xfd\xac\x23\x8d\x2a\x02\x69\xa0\x47\xa3\x90\xab\x93\x3a\x42\x35\x97\xef\x51\x4f\x43\xf2\xd9\x07\x1d\x81\x7a\x88\x42\x06\xcb\x89\x7f\x81\xe0\x0b\xf0\xd8\x45\xe3\x4b\x41\x84\x3f\x50\xa3\xf2\xd0\x64\x85\x05\xee\x1a\x77\xe5\x0c\x21\xaf\xf8\x75\xed\x94\x21\xc9\x81\x22\x33\x51\x22\x20\x02\x27\x9a\x5a\x5e\x9f\x40\x90\xeb\xc2\xb3\xe4\x20\x9f\x17\x53\x1e\x77\x30\xd1\xf1\x93\x1a\x10\x80\x5c\x99\xe4\xa4\x05\xbf\x3e\x56\x84\xf2\x93\xde\xea\xe0\x2b\x9f\x2c\xf3\x2e\x90\xc3\x7f\x8a\xf6\x25\xf6\xf7\x36\x3a\x18\x50\xec\x6e\xa2\x2d\x82\xfd\x71\x96\xfc\xff\x80\x80\x3a\xab\x27\xaa\x7c\x90\x71\xf7\x01\xb3\x52\x05\x62\x7c\x96\x5b\xea\xb7\x35\xf8\xfe\x37\x29\xd2\xe0\xc3\x7e\xa2\x48\x05\x4c\x0e\x47\x2e\xff\xf7\x88\x21\x2a\xe4\x35\x1a\x79\x63\xa9\xbd\x57\x91\xbb\xa5\xa5\x86\xb2\xfd\x35\x85\x1e\x7c\x18\xf9\x12\x90\x02\xad\x8e\x96\x4e\x64\x23\x2c\xcc\x39\x2e\xd3\xd1\x8b\x88\x7f\xb5\x96\x01\xed\x9b\x6b\x0f\xa3\x38\x1a\x46\x09\x6a\x14\x11\xfd\x54\x87\xfb\x89\x06\xc1\x39\x27\x0f\xcb\xbd\x44\x91\xe1\xd0\x9a\x1c\x0a\x6b\x19\xf6\xb3\x28\x2f\xd2\x61\x5f\xb4\x45\x78\xea\x42\x31\x58\x26\x30\x52\xe6\x75\xa3\x15\x9b\xf5\x44\xee\x0c\x4d\xef\x9f\x05\x1e\x57\xf2\xb3\x46\x3f\xfc\xc4\x0c\x44\x53\x54\x31\x88\x24\xc9\x85\x29\x16\x4f\xdb\x70\x47\xa5\x62\x68\x40\xab\x86\x71\xca\x2e\x9e\x28\x8d\x8e\x51\x48\x64\xbb\xa4\xc0\x87\x81\xfb\x6a\x3e\x31\x81\xa1\xa3\x20\x0a\x1f\x77\x17\x93\x0f\x53\x96\xc8\xe3\x32\x4a\x8a\x01\x85\x79\x3d\xab\x20\xac\x51\x92\x17\x26\xe6\x96\xba\xf8\x8b\xe8\x66\xdc\x27\x54\xcf\xcd\xc6\x5d\xaa\xb8\xb0\x84\xa7\x3a\x8a\x32\x7c\x24\xf0\x1a\x06\x53\xeb\xbe\x0b\x75\x4f\x25\x89\x68\x50\x42\xa5\x5a\x40\x85\x37\xc7\x6a\xb2\x74\x5a\xa9\xfe\xac\x70\x4a\xc0\xed\x5e\xfa\x18\x69\xfd\xfa\x03\xb7\x6b\x77\x29\x2d\x90\x53\x9c\xe2\xcb\x6d\xa1\x3b\x2f\xbc\xab\xd6\x33\xcf\xf3\xd1\xf6\x08\xd6\x32\x16\x2c\xa7\x61\x5a\x53\x85\x71\x71\xb4\x91\x5c\x17\xd0\x4d\x88\x37\xeb\x69\xc3\x42\xfb\x4b\x33\x14\x29\x45\x55\xd9\xcb\x25\x9d\xa2\xe8\x21\xd6\x0d\x0d\x62\x8e\x61\x9a\x84\x16\x32\x38\x65\x74\x70\x9e\xc1\x73\xa2\x4c\x7c\xce\x4d\xae\x17\xb3\xa8\xd7\x67\x59\x33\x87\x31\x71\x77\xfa\x89\x8e\xa7\x3a\xec\x5c\x57\x91\xf7\xca\xd6\x9a\xe2\xf3\xed\xa7\x9e\xda\xe5\x9d\x45\x2f\xeb\xbe\xf7\x51\xc4\x15\xfe\x2f\x63\xc5\x5f\x41\xa7\xa2\x62\xf6\xc0\x7f\x82\x14\xd9\xa5\xa9\xfb\xa4\x43\x74\x8b\xd2\x65\xf1\xdf\x7a\xd0\xad\xd1\x70\x19\xa3\x1f\x00\xdf\x34\x27\x8c\x35\x87\xa5\xd9\xd2\xd0\xf8\x26\x62\x43\x6e\xb9\x2d\x55\xd9\x7b\x52\x2d\xd3\x4f\xe3\xbc\xd4\xf5\x61\xec\xa0\xdc\xe5\x8c\xe7\x14\xe5\xda\x96\x77\x9f\xae\x52\xc4\xfd\x19\xf8\x1c\x93\x7e\x65\x64\xa1\x1a\xaf\x1b\x4d\xea\x0e\xe5\xd5\x59\x76\x9a\x16\x2a\x96\xa2\xd9\xfe\xac\x26\x8c\x39\x3b\xdb\xee\x66\xe8\xb8\x6b\x96\xa1\x20\x4b\x9f\xf4\xa6\x7d\x69\x92\x0e\xd3\x98\x87\x9c\xce\x7b\xfe\xb6\x02\x49\xdf\x76\xad\x0a\x53\xa4\xdc\x20\x47\xaf\x83\x31\xbf\x38\xa1\x4e\xd0\xc4\x50\xf0\xf8\x2d\xa7\x84\x72\x84\x9e\x1d\xda\x29\xdf\xad\x64\x16\x2b\x36\xff\xb9\xb2\x5a\x62\x80\x2d\x1d\x18\x62\x55\x47\xcb\x16\x19\x28\x4f\x20\xd8\x2c\x1f\xcb\x4a\x34\xc9\xe9\xfb\x31\x33\xfe\x6e\xa0\x40\x07\xef\x41\x25\x05\x1d\xbe\x7f\xab\x29\xa5\x3f\x0c\x3c\xca\xe9\xb2\x22\x6b\x7e\x27\x50\x55\x3d\xba\x88\xc8\x1f\xb7\xaf\xd3\xb2\xc2\x51\x7d\x06\xcd\x5b\xe9\xe4\xb6\x9e\x7a\x4a\x8b\x5d\xcc\x73\x15\x77\x1f\x4a\xd6\xe2\xc4\x5e\xee\x5b\x76\xd1\xa3\x13\x72\x73\x13\x8e\x8f\x7c\x79\x94\x8a\xe0\xba\x7f\x8c\x45\x8f\x1f\xf1\x1d\x5a\xe8\x38\x59\xde\x1a\xfb\xac\xff\x5a\xa5\x5f\x35\x0a\x97\x77\x28\xe5\xf4\xeb\x9c\x10\xa1\x93\x8d\x0a\x0a\xbb\xeb\xc1\x75\x5d\x08\xe0\x66\x39\x14\x65\x79\x85\x82\xa2\xf4\x4d\x84\x56\xe7\x71\xdf\x0a\x48\xc2\xcc\x92\xab\x1d\x25\xc5\xf8\x07\xdb\x10\xf3\x18\x4e\x37\xf6\x24\x85\x8f\x94\xae\xcd\x7b\x8d\xf8\x8d\xa5\x34\xeb\xa5\x85\x76\x2f\x61\x04\x91\x14\x49\xf5\x4e\xde\xfe\xf6\x20\x1d\x31\x51\x09\x0b\xf0\x16\xee\x3a\xbf\x51\x1a\x0c\xd4\xfd\xca\xa3\x34\x51\x78\xd6\xbf\xd2\x80\xa2\xbf\x52\x3e\xa3\xa6\xf8\xa5\x62\xd2\x9f\xd3\xe7\x35\x1d\xf5\x16\x07\x7f\x35\xff\x93\x33\xbc\xde\x8a\xd9\xbb\xb7\x9d\x9b\xac\x9b\x26\x51\x88\x48\xe2\x60\x12\x2e\xdf\xbd\xaa\x94\xa7\x4f\xb9\xe8\x55\x44\x71\x3c\xe1\xad\x78\xff\x5a\xf1\xa1\xcf\xd2\xf6\x61\x4b\x0f\xcf\x7a\x4c\x58\x0c\xb1\xe5\x0f\xc2\x8d\xca\x1c\xbd\x09\x65\x9c\x8f\xb2\x95\x68\x85\x09\x88\x58\x58\x1f\x2a\x2d\xe3\x0f\x6b\xf7\xfc\xe0\xf4\x7c\xbb\x58\x8d\x42\x3b\xe1\xd9\xb6\x9b\x4a\x57\x06\xf5\xa4\x58\xcf\xd6\x3b\x53\x3d\x9b\xd8\xa4\xb0\x21\xb4\x6c\xf0\x37\x7b\x10\x34\xf8\xcd\xba\xca\x04\x2c\x39\x92\x1d\x54\x1e\x5e\x7e\x48\xa6\x38\xb6\x26\x31\xf1\x5a\x5e\x4c\x55\xfc\x93\x68\x1d\x08\x9d\xd4\x77\x90\x51\x3a\x89\xdd\x93\x6e\xd5\xd5\x35\x44\xcb\x0c\x8c\x1c\xf2\x39\x1f\x54\xe9\xc5\x21\x79\x53\x63\xea\x3d\xdd\xce\x0b\x13\x81\x07\x5a\xb1\x2c\xc6\x9e\xf8\x50\x5b\xd6\xab\x0e\xc2\xe2\x28\x4b\xa0\xda\xee\x3a\x6b\xea\x70\xf7\x6a\x66\x61\xdf\xc0\xb6\x5a\xb9\x8c\x7e\x40\xcf\x99\x25\xa7\xe9\x61\x60\x49\x6f\x5b\xd7\x94\x87\xac\xac\x5f\x0a\x8c\x66\x79\xb6\x11\x78\xc5\x98\xf3\xb5\xf5\xf1\xc2\x0b\x65\xd6\x06\xfc\x0a\x3d\x2d\x24\x3f\x37\x95\xf9\xde\x4d\x45\xc0\xc8\x4d\x02\x4f\x9d\x29\x3f\x4a\x3f\x4e\xa1\xd5\x71\x7a\x3d\x39\xe5\x32\x5d\x1d\xcf\x22\xc7\x1e\x03\xf3\x7e\x6d\xc9\x2c\x4c\xb7\x93\x34\xc9\x6d\x92\x5b\x20\x58\x1c\xd5\xd8\x8d\x65\x6e\xaa\x7e\xff\x31\x45\x24\x5b\x2d\xcf\xc8\x2e\xa8\xaf\xcf\xf2\xad\x82\x04\xbd\xf3\x71\x74\x03\xdc\xbf\x6a\xca\x98\x17\xad\x29\x78\xa4\x22\x06\xe3\x4a\x28\xe0\x8c\xd2\xa4\xd9\xf8\x1b\x9c\xe7\x7b\xe6\xe5\x28\x81\x12\x1a\x7e\xfb\xb6\x8e\x47\x9e\x1f\x41\x68\x41\x7b\xf0\xae\x82\x8b\x7e\x69\x6d\x0a\x60\x10\x5a\xee\xbf\xfa\xf3\x94\x75\x39\x66\xcf\xc2\xb4\xef\xdf\x38\x75\xbe\x7b\xf8\x2c\xfc\xd4\xa9\xf5\xad\x35\x2c\xa1\xc9\x6d\x52\x8c\x32\x8a\x82\x6e\x62\x78\x59\x63\x83\x2f\x37\xa9\x1f\x2c\xa5\x29\xf0\xfc\x9b\x84\xe4\xdf\x3c\xef\xa8\x5c\x99\xcd\x87\x69\xe2\x90\xf5\xb8\x97\x77\xb4\x0d\xde\x9d\x5a\x3b\xee\xe0\xf4\xa1\xb6\x89\xe3\xc8\x24\xa1\x28\xdf\x49\x93\x96\xee\xae\xb4\x6f\xf7\x38\x20\x55\xaf\x87\xc4\x05\xc7\x2f\x94\x8c\xf9\xf5\xfa\xd6\xc7\xb6\x6f\x8e\x54\x2b\xd6\x5a\x8a\x17\x75\xa1\x32\x49\x7e\x4c\x69\xd4\x85\xd9\x28\x92\x98\xc9\x9b\x35\xd0\x1b\xd7\x83\x13\xed\x8a\xcd\xd6\x3e\xe1\x6d\x71\x4f\xa9\x3e\xe9\x87\x00\xc7\xe0\x29\xbc\x8b\x2c\x51\xa8\xd2\x4a\x3a\xe5\x1c\x99\xf8\x20\xeb\xbf\x19\x50\x3e\x23\xf9\x94\x6f\x84\x7e\x84\xbe\x1b\x02\xc4\x4d\xe5\x30\x4d\x2e\x6f\x87\x9c\xda\x69\xcb\x61\x9b\xc1\xae\xc0\xf2\x6f\x75\xb4\x82\x81\x3f\xd0\xe2\x34\x47\xcb\x50\xa3\x09\xd1\x70\xba\xa1\xe4\x8d\xef\x52\xc6\x26\x3a\xf8\x15\x86\x9b\x52\xed\xf8\x6d\x8d\x12\xbd\x1b\x28\xcf\x82\x1f\x8c\xb5\x7d\x64\x79\x51\x52\xde\xd5\xa5\x42\xf7\xb7\x97\xb2\xc8\x26\x5d\xda\x18\x00\xe7\x9e\x0d\xbc\x72\xdf\x59\x8d\x7f\xf9\x67\x8d\xe6\x3a\x61\x3f\xcd\x84\xee\x80\x5f\xc6\x96\xb7\xfc\x46\x0d\xe0\xcd\x12\xb9\xe3\x02\x49\x82\x40\x79\x1c\x57\x81\xb2\x12\x9d\x7c\x7e\x8d\x54\x93\xff\x95\xea\x19\x65\x36\x29\xca\xa3\x72\xe6\x80\xa7\x6c\x3b\x5a\xaa\x56\xdb\xb7\x79\x6e\xe3\xc2\x72\x65\x2c\xb7\x59\x0d\xec\x6f\x54\xb2\xde\x2c\x1a\x4c\x78\x40\x1f\xc0\xe4\xce\x7b\xa4\xfc\x23\x3c\xcf\xfb\x8e\x37\xb1\x94\x66\x36\x34\xb9\x07\x16\x3a\xad\x32\xb7\x31\x60\xa0\x86\x1c\xe5\x8a\x12\x58\xcc\x4c\xf9\x57\x68\x63\x32\x5f\x99\xd6\x02\x12\x26\x9e\x4e\xe2\x23\x5e\x1d\xfb\x05\x53\x47\xf1\xcd\x1c\x68\x2f\x45\xb9\x17\x98\x12\xb9\x37\xff\x34\x8f\x56\x2c\x9f\x68\xa7\xa1\x5e\x61\x34\x34\xae\x4d\xa0\xd1\xfe\x20\x59\xb4\x4b\x6c\x51\xe5\x9b\x66\xb7\x15\x59\xe7\xb6\x12\x9d\x59\x34\xe6\xef\x13\x1a\xcb\xa9\xed\x3a\xc7\xdd\x07\x90\x55\x00\xe3\x76\xb5\x22\x51\x17\x8f\xf2\xed\xe5\x3f\x44\x61\x08\x0e\x8e\xc0\xc3\x2b\xbd\x71\x5a\x21\xae\xb7\x5d\xae\x47\x2d\xd2\x88\x9c\xff\x44\xad\x71\x33\x3b\xdb\x0e\xb3\xa8\x88\x42\xe5\x9b\x70\x5b\xf9\x26\xdc\xae\x9d\x35\xfb\xe6\xda\x26\x8e\x2c\x72\x53\x54\x70\x50\x1d\xe7\xd7\x9a\xe9\x42\x7e\xb5\x4c\xaf\xd2\xee\x13\xfc\x3a\xf0\x83\xae\x3c\x4d\x93\x5d\xf4\xef\x98\xd0\x1c\x54\x24\xa1\x7d\x67\x15\xec\x08\xe4\x55\x0f\x75\x7c\xfe\xf8\xc7\x81\x9a\xa7\xbd\x17\x94\x95\x99\x94\xb1\x7e\x75\x5d\x2b\x37\xc1\xe6\xb5\x86\xc1\xdc\x0c\x41\xb2\x97\xd6\xdc\x1a\x91\x3c\xab\xe5\x8c\xe4\x8e\xaa\xe3\x3a\x22\x3b\x51\xf6\x8d\x62\xf5\x04\x85\xf4\x3d\xa2\x65\x07\xc2\xbe\xed\x8e\x62\xdb\x9d\x2c\xe3\x55\x25\x49\x47\xe2\x71\x25\x50\xad\x97\xef\x29\xe9\xed\xf7\x9b\xd4\x64\xed\x4b\xc3\x38\xcd\x2c\xb5\x94\x45\x00\x87\x36\x82\xb3\x1b\x76\x78\x18\x80\xdd\xc1\x68\xde\xd6\x79\xcc\x49\x8e\x44\x83\x28\x31\x9e\xa8\xec\x78\x21\x8e\xc7\x74\xb4\x06\x5f\x5c\x98\x6e\x57\x3d\x2e\x0f\x4e\x3b\xfc\x9b\x27\x16\x9e\x0c\xfc\x79\x55\x44\xbd\x7e\x61\x13\x3e\xaf\x30\x06\x43\x23\x94\x5f\x6f\x6d\x19\x95\x65\xd5\xcc\x81\x29\xbf\xf4\x58\xf3\x0b\x79\x08\x1b\xd1\xba\x13\xc5\xc9\x11\x72\xf2\x8c\x69\xc6\x31\xaf\x5b\x9a\xc6\x5d\xcc\xce\xb1\x25\x6e\xa1\x6b\xac\x5b\x49\xc8\x25\xff\xa5\x7e\x14\xc7\x1b\x3c\x54\xe6\xdb\xa1\x01\x23\x45\x41\xc7\xe8\x66\x09\x8c\x6c\xeb\xcd\x9a\x39\xd0\xee\xa6\x03\x9b\x8b\xbf\x91\x5f\xa4\x87\x95\x17\xd4\x61\xc5\x26\x58\xcc\xac\x59\xa6\x4b\x77\x56\xfc\x07\xa7\x9d\x27\x48\x4b\xd9\xf2\xfb\x34\xee\x14\x25\xc4\xf2\xbb\x1b\x84\x8a\xf2\x34\xee\x6a\x58\xfe\x61\x3d\x32\x39\xac\x28\x37\x66\x95\xac\xbf\x26\xf4\x8d\xe0\x42\x1c\xc1\xe5\x3b\x81\x82\xa2\x9f\x1d\x7b\x5f\x04\x33\x2a\xd2\x81\x71\x3e\x4e\xe5\x3f\x72\xee\xc0\xae\xf1\xb6\xa1\x5a\xab\x4b\x71\x9a\x45\x5d\x33\xa9\xd1\xfa\x0c\x51\x13\x1b\xf0\xf2\x0f\x51\xab\x5d\x43\xd4\xc5\x2a\xff\x77\x8d\xe0\x98\xf2\x8b\xf9\x54\x75\xe2\x72\xe5\x3a\x11\x71\xb9\x0a\x36\x66\xf8\xd9\xed\x8a\x33\x0e\x8e\xaf\x60\xa2\x94\x34\xf7\x86\x3a\x64\x18\x63\x8c\x6d\xf1\x8d\x40\xd1\x74\xeb\x64\xc2\xd9\x59\xf0\x68\x34\x8c\xea\xac\x82\x51\x9d\xad\xd5\x0b\x65\x76\x99\xd9\x22\x4a\x4c\xac\x24\x8b\x7f\x48\xab\x5b\x07\x2f\x74\x25\xb4\xca\x02\xa1\x50\x6c\xb7\x45\x7d\x10\xd6\x27\x03\x05\x50\xc4\xca\x9a\xd0\xf5\x90\xc1\xef\x4e\x28\xcd\xd0\xf7\x70\x6e\x60\x04\xc2\x66\x6a\x40\x7b\x1c\x76\xfa\xd9\x31\x3a\x27\x13\xca\x2e\x73\xac\x1a\xc1\x57\x14\xdd\xff\x52\x13\x30\x37\xb3\xd4\xcd\xed\xb6\x54\x17\xf2\x4c\xa0\xe0\x87\x67\x1c\x70\x2f\x1a\x0c\x47\x49\x54\xb0\x51\x9e\x94\xe6\x9e\xfb\x70\xb1\xa9\x57\xf8\x72\x9a\x56\xf0\xd4\x63\xd5\x9c\x54\x29\x51\x19\xe0\x2b\x2d\x95\xe3\x4a\xef\xe6\xb8\x4a\x89\x42\x93\x65\x91\xcd\xa9\x2a\xc6\x19\x8a\xbe\x37\x46\x3b\x0f\x00\x9b\x2a\xeb\xdc\xb7\x45\xff\x41\xd1\x9f\xf0\xa0\xc9\xc7\xd6\x7d\x9d\xfb\x24\x8e\x77\x61\xb3\xc9\xc5\xae\x9a\x22\xf4\x36\xed\x4e\x23\xd4\x65\x3b\x7f\xa6\x1a\x29\x7f\x54\x49\x0a\x48\xe1\x6d\xce\x67\xac\xca\x58\xbb\xc9\x62\xee\x50\x7b\x98\xd9\xa1\x71\xd8\x68\x67\xc5\x3f\x3b\x2b\xaf\x95\xe0\x40\x66\xe3\xc8\x92\xe5\xe5\xc2\xb4\x88\x28\x2b\xd7\xf7\x93\x4d\xe6\x05\x9f\x69\x0f\x4c\xf6\x92\x00\x03\xb1\x63\x6f\xe8\xed\x7b\x43\xb5\x05\xca\xc8\x38\x30\x85\xdd\xed\x05\x10\x79\x74\x87\x4e\xce\xef\x8e\x7d\x01\xf5\xea\xb8\xe2\xfa\xe8\xb1\xa7\xb7\x03\x3f\x0e\x38\x8c\x8c\xdf\xc9\xed\x94\xd7\x28\x56\xf2\xb4\x7f\x59\xc5\x14\x35\x1b\xef\xf2\x26\x9f\x88\x5e\x64\x92\x22\x9f\xd4\xb9\xf0\x5b\xf8\x23\xde\x13\xca\x7c\x95\xfb\xde\x68\x83\x5e\x56\x33\xa1\xc2\xbe\x64\xf2\x5d\xf4\x23\x30\x6c\x58\xc7\x8f\x10\x61\x60\xd5\x75\x9e\x5c\xc7\x57\xc9\x19\xed\xfd\x36\x99\x37\xcd\xcd\x7c\xfa\x5a\x94\x3a\x18\xc9\xb2\xc6\x2a\x7e\x9b\xf0\x2c\xfc\x52\xcc\xd3\x64\x57\x4b\xa9\x17\x95\x9f\x2b\x0e\xe6\x65\x70\x41\x7b\x67\xd7\xba\x46\xf5\x00\x22\x4e\xf1\x7e\xf5\x51\x80\x82\x54\x7c\x96\x2e\x1b\x0f\xa9\xe9\x37\xfe\xe6\x63\x18\xa9\xa0\x9c\xfa\x74\x67\x8f\x92\x46\x2f\x76\x2a\xbb\x0b\x6a\x05\xcb\xd4\x9f\xfe\x9e\x59\xe8\x58\x21\x08\x75\x9b\x4a\xcd\x1e\x17\x2c\x47\x91\x12\xf1\x3c\x37\x56\x15\xe7\xa9\x26\x91\xf3\x45\xbb\x24\xe9\x11\x9d\x01\x0f\x3f\xda\x51\xd4\x40\x8c\xf5\x45\x4b\xbf\x3c\x40\x71\x88\x4f\xad\x3b\xc5\x94\x74\xa9\xb0\x19\x4c\xb9\x34\x58\x18\x37\xf9\x31\xb4\xd3\x69\x09\xfe\xdc\xdf\xed\xf8\x31\xc3\x03\xeb\x5b\xb3\x80\x39\xe8\x08\xd9\x24\x37\x85\x34\x31\x9c\x00\xb4\x12\x43\xf5\xfb\xa2\x4c\x18\x96\xa3\xa4\x37\xe5\x75\xb0\x58\xef\x5e\xd4\xc6\x7d\xd6\x71\x23\xf0\x09\xe0\x51\x02\xcc\x08\x76\xd6\x67\x15\xd9\x5a\xd7\x66\x2d\x65\xcc\x7a\x11\x81\x82\xdf\xd4\x0e\xb0\x7d\x73\x50\xf0\xe3\x28\xe1\x48\xa8\xce\x07\xf1\xa2\x6b\xf9\x46\x99\x61\x63\x4c\x5c\x3e\xcf\x3d\x69\xcf\x2e\x3c\xc2\xeb\x0a\x98\xa8\xed\x94\xa4\x57\x9c\x26\xc4\x94\xb4\xbc\x04\x9c\x57\xff\x5d\x2d\x25\x7f\xe1\x85\xb6\x19\x96\x31\x2b\x29\xa0\x3d\x36\x07\x17\xc7\xcd\x4b\x8d\x12\x21\xa3\x61\x66\x07\x96\xdd\xd7\xb1\xed\xde\x52\x64\xed\xb7\x54\x59\x39\x18\x65\x5d\x92\x1c\x72\xd0\x52\x60\x9a\x38\xad\x52\xc3\x9f\x3f\x6d\x98\x73\x3f\xdb\x36\x8b\xe9\xa8\xa0\x7e\x37\xea\x02\x98\xe8\x81\x6c\x06\x5f\x40\xdc\x93\xc3\x9a\x78\x36\x08\xad\x55\x58\x44\xb6\x9b\x16\xc9\x27\xb7\xf8\xac\xc9\xc2\x3e\x15\xbc\x38\x67\xd1\x7e\x73\x32\x7f\xde\xea\xf4\x77\xc6\x95\xa4\x47\x11\x82\xf3\x7c\x34\x18\x96\x2b\x8e\x24\x8f\x71\x21\x37\xd1\xa8\xc1\x6f\xdc\x45\xbf\x97\xad\xd2\x28\x89\x14\xa1\x2e\x95\xa7\x45\x89\x11\x27\x71\x2c\xb8\x6f\xab\x94\xf7\xdb\x4d\xea\x11\x43\xb3\x96\xa5\x71\x3c\xa9\xc6\x14\xcc\xaa\xd4\xb4\x15\x44\xba\x3b\xca\x73\xf1\xaa\x83\x1d\xe4\x49\xb4\x42\xc6\xe8\x13\x1e\xa8\x79\x8c\xa2\x82\x70\xa0\x29\xfe\x7f\xb5\xbc\xfe\xd7\x4f\x07\xde\x26\x9a\xcc\x1f\x6c\x97\x12\x68\x9c\xcb\x8f\x92\x58\x28\xba\x8b\x17\x11\xbf\x1c\x60\x60\xc1\x2b\x4d\x69\x73\xa1\x26\x44\xe8\xa2\x2d\x26\x54\x06\x7d\x4a\x39\x5b\xbe\x8b\x3f\x66\xaf\x87\xc0\x2f\xaf\x7c\x79\xad\xcc\xa7\xab\xc8\x74\x0f\xe4\x3b\x8b\x67\x55\x1d\x34\xa4\x54\x50\xb1\x2b\x8a\x2a\xa6\xcf\xd7\xf2\xfa\xa7\xdb\x61\x6c\x72\xb0\xba\x74\x54\x10\xce\x92\xc2\x23\xbd\xed\xee\x10\xfd\x49\x96\xa6\x83\x09\x05\x2c\x40\x2b\x4e\x90\x33\x2d\xe5\xe1\xd8\x24\x20\x3e\xb4\x32\x07\xe1\xfe\x6d\xa0\x7b\xb9\x1e\x79\xb6\x14\xc5\x36\xcb\xa9\xf0\xc2\x1c\x10\x3a\x3d\x4e\x3b\xc2\x2b\x3f\x33\x1e\x5d\xf0\x7f\x0d\x1a\x6f\x66\x48\x66\x25\x16\xf2\x26\x4e\xbc\xd0\xf5\xd2\x8f\xa8\xc0\xcc\x3c\x46\x5c\xce\x4f\xbd\x48\x75\xd8\xa7\x5c\x66\x52\x09\x47\xbe\xa6\x40\xe0\x0c\x33\xc2\x4a\x44\x1f\x8a\xe7\xf4\xb5\x25\xbe\x30\xdf\x2e\x32\xe3\xda\xc7\x38\xa6\x3f\xc2\x45\xf0\x1b\x37\x59\x5f\x34\x51\x9c\x8e\x30\xeb\xc3\x7c\x77\xb2\xe3\x09\xe6\x93\x35\xb9\x22\xd2\x3a\x26\x5b\xe4\x96\xba\xd6\xb3\x81\x1e\xa4\xf9\xd3\x7d\xf4\xf2\xcb\xaa\x09\x7c\x4d\x35\x81\xaf\x7d\xac\xcd\x75\x5e\xa4\x99\x50\x2e\x10\x41\xce\xf3\x40\x09\xcd\xd8\x6f\x6a\xe1\xfc\x4b\x41\xd5\x39\x2e\x4a\x42\x9e\xc5\x88\xda\x57\x79\x31\x22\x41\xbc\x75\xdf\x1c\x9c\x9e\x6f\x27\xa6\xd5\x3a\xf0\x9c\xa7\xbe\x2e\xcc\x7f\x2c\xf5\xf5\xf9\x99\x03\x65\xbe\xc0\xdd\x75\xd1\x6d\x56\xd4\xf4\x0b\x4a\xf1\x31\xb7\x61\x46\xb2\xc8\x6c\xaf\xc7\x3e\x5d\x74\x0b\xc4\xb3\xab\x49\x2d\x70\x48\x10\x20\x40\xf7\x58\xd5\x82\xb6\x19\xa2\xe0\x87\x98\xb7\x0b\xf0\x5d\x0e\xb9\x70\x29\xcc\xa7\x94\xc3\xc6\xc5\xca\x34\x95\x39\x03\x08\x2b\x8f\x75\x7c\xcd\x71\x4e\x8d\x49\xfe\xf8\x91\xf5\x27\x55\x63\xf1\xc5\xd1\x8a\x4d\x8c\x2b\x43\x9c\xef\xcb\x9c\xb3\xae\xfd\xd7\x0a\xef\x69\xb2\x74\x94\x03\xef\xc9\x50\x29\xba\x4e\x81\x4d\x79\x82\x4b\x1c\x2d\x5a\xb4\xa2\xc4\xfd\x85\x6e\x1f\xbf\x69\x94\xa0\x1f\xa6\x43\x44\x28\x06\x99\xd0\xdd\x10\xc0\x49\x1d\x1a\xb8\x98\xa6\xb9\x13\x78\x42\xff\x82\xbd\x72\xf9\x4d\xb0\x35\xfd\x91\x85\x57\xd6\xb7\x99\x80\x4c\x70\xdc\x12\xb5\x40\xb4\x56\x34\xad\xf3\xac\x9a\x31\x46\x49\xd8\x47\x7f\x4a\x6c\x92\x7d\x4a\x78\xde\x6d\xb4\x41\x9a\x44\x45\x9a\xed\x50\x1d\x7f\xce\xff\x91\x63\x5c\x1f\x2b\xc9\x15\x1c\xa6\x88\x17\xef\x92\xe7\x38\x42\xf2\x51\xca\x89\x71\x08\x42\xd4\x1f\xad\xa1\xd6\xba\x42\x05\x17\x6b\x0f\x95\x61\x03\x9d\x80\x49\x82\xe1\xe3\xaf\x4f\x62\xe7\xe0\x60\xdb\xb3\xee\x6b\xe1\x1b\x4a\x43\xf3\x57\x48\x98\x4d\x5a\xa0\x13\xde\x63\x7d\x52\x4f\x4a\x76\xac\xab\x95\xf0\x77\x3a\xce\x2c\xef\x4f\x1f\x21\xd5\x4f\x84\xac\x5b\x34\x99\xc1\xd7\xf1\xe0\x01\x3f\xf7\xa3\x26\x8f\xb3\x22\x8b\x7a\x3d\xc1\xfc\x39\xff\x00\x37\xc4\x3f\x17\x3c\x5e\xf5\x88\xb4\x79\x6e\xbb\x2d\x4c\xf3\x80\xbc\xb8\x8e\xce\x19\xbf\x51\x7b\x51\x39\x72\x4d\x2a\x0e\x1c\x16\x29\xf6\xc8\x47\x94\x58\xf1\x6b\xfa\x5a\xfe\x37\x8a\xbe\x43\x60\x43\x84\x4a\xf4\xb8\x61\x7e\xcc\xaf\x1b\xa4\xb4\xda\x51\xd2\xb5\x2f\x59\xb8\x3c\x09\x6c\xbd\x5e\xe6\xa1\xb0\x9d\xea\xf8\x93\xb9\x6f\xb3\xdc\xc6\x4b\x93\xde\x15\xe4\x47\x00\xc4\xe0\x43\x6e\x56\xb8\x1b\xe5\x6f\x90\xd9\xa9\xdf\x92\xd1\x60\x98\x66\x05\x14\x35\x9c\x35\x46\xf9\x08\xdc\x57\x7b\x8a\xcf\x55\x65\xe4\x71\x4b\x79\xb1\xb3\xd1\x0f\xff\x07\x45\x72\xc8\x87\x91\x8d\x57\xd2\x9e\x8d\x79\x1a\xa3\x4a\xae\x79\xa7\x7a\xac\xfb\x00\x59\xf1\xf2\x64\x45\xe8\xd5\xef\x91\x3b\x8a\x5f\x7a\xb6\xaa\xf9\xaa\x0d\x91\xc2\xee\xf6\x96\xb3\x28\xbe\x37\x56\x0a\x30\x1b\xc8\x19\x11\x44\xae\xab\xe2\xec\x1e\xe5\x8c\xfc\xff\xff\xcd\xad\x87\xb2\xa2\x08\xfb\x59\xda\xf5\x7a\x69\xae\xbc\xf5\xa2\x2c\xe7\xd5\xb6\x2f\xeb\x9f\xed\x5e\xd7\xe3\x52\xa0\x66\x46\xaf\xea\xd9\x81\x1e\xb9\xfd\x11\xfd\x3a\xa1\x2a\x57\x1c\x8e\x1b\xa8\xb8\xa3\xac\x67\x15\x16\xed\xbc\x92\x08\xaf\x03\x0b\xe6\xe6\xda\x43\x13\x2e\x9b\x9e\x6b\x97\x4b\xc7\x55\x57\xa8\x7e\x81\xf4\x6d\x3c\x18\x15\x2d\xad\xe0\x75\x18\xd7\x2a\x45\x41\x93\x11\x61\x96\xae\x44\x5d\xab\x4c\x4d\xb8\x50\x92\xce\xde\x83\x8e\x6d\x67\x8a\xdd\x5e\x1d\xea\x86\x0e\xc1\x98\x61\x52\x29\xfd\xdf\x7e\x72\x5d\x23\x48\xb1\x28\x11\x31\x1e\xe9\x78\xdb\x83\x4d\x25\xcd\x01\x59\x1f\x20\xce\xee\x53\x3d\x49\x9f\xfa\xe7\xbf\x4c\x43\x5a\xb4\x1e\xee\x6b\x7e\xed\x8a\x89\x62\xce\x27\xf0\xc9\xbb\x3a\x8a\x15\x7b\x5b\x59\xfb\xdd\xd2\xe6\x2d\x7d\x93\xdb\x29\xe5\x30\x78\x49\xb9\x65\xfc\xdf\x5a\x1d\xe2\xc7\x0a\x8e\xf1\xbf\xaa\xa9\xf1\x55\x55\xeb\xa4\x61\x68\x72\x62\x8f\xb7\x7c\x33\x68\x43\xeb\x49\x6e\x28\xe4\x8d\x7d\x69\x18\x9b\x28\x69\xa9\x63\xbb\x6a\x0c\xfb\x90\x96\x29\x12\xca\x25\x36\x4d\x65\x07\xd5\x2d\xa8\x88\x07\xb7\x96\x75\x31\xc8\xc7\xc9\x76\x42\xd9\x4f\x9e\x68\x32\xac\x5c\x32\x51\xc6\x4d\x73\x74\x40\xde\x51\xe0\xcb\x77\xd4\x40\xb2\xe8\x47\x09\x61\xf9\x15\xbb\x6a\x43\xa1\x61\x37\x1c\xfc\x80\xda\xe1\x53\x3e\xb1\xe1\x2e\x92\x68\x80\x2a\x3a\xd8\x27\x3b\x3e\x0a\xbe\x89\x80\x89\xbc\x62\xf7\xba\xaf\x02\xf3\x51\x3e\x24\xc7\xee\xb9\x39\xee\x73\x61\xc8\xcf\xaf\x2b\x2d\xc9\x62\x34\xa4\xf5\xcb\x34\xfd\xc0\x57\x4a\xe7\x54\x5d\x99\xd9\x81\x89\x92\x7c\x87\xef\x3c\x42\x2a\x0e\x7d\xe0\xdb\xf8\xb9\xc8\x65\x2f\x81\x33\xc0\x08\x86\x40\x89\x3a\xa0\xe0\x66\x30\x0b\xba\xde\x82\x73\xf0\x4f\x3b\x19\x29\x42\x14\x12\xc9\x6f\xe9\xac\xf2\x5b\x2a\xaa\x97\xd5\x4d\x97\x5d\x20\xc4\xd1\x55\xb9\xbb\x36\x85\xb5\x61\x66\xc3\x28\x97\x86\x83\x5b\xb2\xce\x1c\xf3\xc7\xb5\x24\x6a\xfe\xb9\xfd\xed\xa8\x6b\x19\xbf\xc6\xc6\x9f\x74\x9b\xbc\x09\xa8\xa3\xfd\xb1\x4d\xcb\xcc\x81\xcd\xd3\xa4\x1f\x78\xba\x72\xaf\xd3\x51\xf1\x73\xe5\xd7\x8a\x9f\x77\x99\x10\x60\x4b\x7f\x48\x69\x0d\xc2\xe5\x09\x6d\x4c\x70\x12\x85\x0a\x96\xfa\xc3\x24\xe0\xcb\x85\xf4\x6b\x48\x7e\x91\x74\x7c\x44\x70\x4e\x80\xba\x8f\x07\x5e\xc8\xe3\xbc\x3a\xcb\x1e\x59\x57\xca\x85\xf7\x01\xc5\xc4\xe4\xe2\x38\x56\x98\x33\xf1\x9e\x39\xc0\x0f\xe6\x4d\xaa\x00\x10\xed\x1f\xa8\x74\x1d\xef\xb0\x8c\x0c\xba\xbd\x13\x88\x5b\xe8\x09\x5f\x0f\xca\x30\x84\x92\xe9\xb4\xf2\xd9\xde\x44\xbe\x4c\x5f\xf2\x3b\x9f\x22\x06\x07\xee\xf9\xb6\x8e\x4a\x7b\xef\x62\xc5\xa0\x7f\xcf\x82\x52\xb8\x96\x89\xf5\x26\x74\xe1\x30\x4b\x7b\xe4\x39\xdb\x72\xc6\x79\xd0\x84\xe1\xd7\x4a\x46\x27\x29\xa2\xc4\x26\x05\xcb\x39\xe0\xe8\x7d\x73\xec\xc1\xf8\xdb\x3b\x0a\xdd\x3c\xb1\xae\x48\x18\x66\x18\x15\x26\x8e\x5e\xc6\xe4\xc6\x73\x0f\x08\xc4\x21\xac\x04\xd9\xcc\x8b\xe9\x60\x31\x9f\x50\xf4\x7e\x68\x1d\x08\xa5\xbf\x7c\x38\x02\x5d\xf5\x79\xea\x33\xcf\xe5\x53\x9e\xad\xf5\xf5\x47\xd0\xfc\x44\x9c\x00\x9e\xcc\x61\x75\xe7\xe6\xe6\x37\x5b\xfc\x30\xc4\xc3\xb1\x9e\xf9\xc3\xc6\xa5\x80\xec\x0d\x9e\xec\x15\x24\xb0\x18\x07\xc0\xc3\x1f\xb5\xfe\x31\x35\x54\x1c\x44\x71\xd7\xae\xae\x29\x52\x2f\xd0\x8c\xfc\x7a\xfd\x61\xe5\x67\x52\x7e\xc3\x1e\xe5\x8d\xa6\x95\x05\xef\xd3\x39\x80\xe3\x1c\xbd\x04\xf4\x8e\x6f\x62\x75\x63\xa9\x03\xa5\x2d\x32\xa2\xe5\xd7\xc8\x0f\xa2\x7b\x81\x90\x77\x13\xb9\x84\xb8\xfb\xb6\x9c\x7f\xf6\x35\xe2\x41\xb0\x74\x1b\xa1\x8a\x44\x3b\x54\xce\xbb\x70\x94\x75\x3d\xd5\x17\x51\xe8\x36\x7e\x25\xbf\x09\x1e\x77\xdd\xa8\x30\x4d\x56\xa2\x24\x14\xdd\x2d\x9c\xfb\xa7\xb4\xff\xdc\xa9\x26\xd1\xf9\xc4\x44\x59\xba\x18\xb5\xfc\x3a\xba\xa8\xc5\x7d\x2e\x36\x89\xca\xee\x6f\xaf\xa4\xce\x7f\x5c\xc4\x3a\xe8\x92\xf9\xcd\x78\xb7\x9f\x09\x4c\x6a\x1e\x01\x1e\x21\xd6\xc2\xdb\x0a\x08\x73\x12\xd1\x00\xff\xea\xbe\x82\x19\x87\x69\xba\xdc\x52\x28\xf1\x0b\xfa\xf2\x2f\x04\x4f\xa8\x7f\x38\x58\x4a\xb3\xc2\x2c\x8a\x88\x23\xce\xf6\x77\x28\x9a\xf0\x6b\xaf\x07\xfc\xff\xc3\xe0\xc9\xc9\xd9\xd9\x78\xc9\x64\x16\xad\x79\xd1\x2d\xf1\x67\xdd\x6e\xaa\xee\xb0\x1b\xef\x52\x06\x23\xa6\x18\xca\x83\x2b\x4e\x13\x3b\x85\x25\xaf\x9a\x83\xcf\x72\xc4\x83\x8f\x38\x1e\xfe\xa4\xd2\x97\xe6\x07\x81\x3b\xf4\x93\x5a\xa3\x70\xef\x4c\x19\x91\x27\x15\xb6\x0b\x93\x45\x87\x80\x74\xf0\xc5\x0b\x81\x67\x82\x9c\x54\x59\xe3\x62\x96\x2e\xdb\x64\x42\xd9\xdd\x5c\xe3\x5e\x03\x58\xcb\xeb\x58\xc7\x80\x42\xdc\x68\xe2\x80\x0c\x6d\x96\x47\xb9\x74\x51\x9c\xd7\x84\x32\x9e\x70\x14\xec\x30\x1d\x0c\xd2\x64\x52\xc3\x89\x2f\x2a\x8c\x1d\xfa\xf5\x88\x32\x4c\xff\xc7\xb6\x3c\xdd\x00\x6c\x3b\xd4\x1e\xf6\xd3\x22\xe5\x11\x3c\xdb\xba\x52\x44\x10\x8b\xd7\xfa\xcc\x7b\xa6\x1d\xa7\x8b\x8b\x8e\x01\xcf\xa5\x4b\xd5\xb0\x42\x25\x9a\xbd\xc4\x24\x05\xd5\x6c\x4e\x28\xbd\x8c\x96\x72\x8a\x7b\xd0\xc4\x23\x1d\xdf\x08\xdd\xa1\x4a\xf7\x5f\xdb\x37\xa3\x2d\xc1\x70\x49\xd2\x67\x6a\x02\x9e\x9a\x24\x1a\xf8\x99\x0d\x62\x1e\x6c\xa1\xf8\xb5\x8a\xb7\xdd\xa2\x3f\xa1\xca\x39\xd4\xae\x68\x27\x02\xab\x25\xe9\x9a\x87\x3a\x0d\x4c\x6c\x77\xf8\x9e\xdd\x2d\x82\x47\xa2\x6d\xfd\xa3\x40\xe5\x20\xe7\x14\xa6\xed\x5c\xa0\x0c\xa1\x31\x27\xe4\xbf\x50\xce\x73\x27\x9b\x00\xc9\x99\xcd\x8b\x2c\x0a\x8b\x96\x17\xbe\xe4\x92\x55\xda\xf2\x5b\x6f\xc1\xc2\xf4\x7e\x58\xbf\x26\xcc\x00\xdc\xa4\x27\xba\x59\x77\x96\xa4\xc1\x6f\x16\x2d\xf2\xe3\x77\xae\x47\x4a\xb5\xb4\x01\xa1\x9b\x99\xc2\xf2\xea\xc3\x0e\xfd\x09\x56\x37\x62\xc3\x49\x3f\x86\xbc\xf9\x4d\x3c\x2b\x3c\xf7\x2b\x15\x25\xc9\x6e\x0c\xcb\x24\x87\x56\x75\x60\xfb\x37\x50\x00\x0a\xf2\xbe\x3c\x56\x90\x5c\xdc\x0d\x94\x21\x18\xef\x7b\x74\x89\xbe\x43\x4f\x8d\x5f\x53\xaa\x82\x43\xff\xaa\x83\x40\x10\x23\xad\x0b\xf6\x10\x32\xad\x4b\xb8\x89\x38\x35\x26\x51\xfb\x48\x48\x69\x39\x26\x12\xbb\xc8\x8a\x55\xb9\x0f\xa7\x2f\x9a\x7e\xa2\x60\xc8\x58\x5e\x52\xfb\x3d\xe4\xba\x5b\x45\x9a\xc9\x38\x1a\x09\x5a\xe5\x9b\x26\xd6\x35\xd0\x9a\xee\x15\x4e\xb4\x8b\xc1\x16\x70\xd5\xec\xec\x42\x7b\x6e\x6e\xd2\xcf\xd5\xd1\xfe\xd4\x6e\x64\x78\xfd\xb6\x3a\x49\x3f\x08\x3e\x5d\xfd\x94\x99\x03\xd2\xd6\xfb\x64\x79\x4a\x8a\x29\x53\x79\x7a\x62\x2d\xbf\x8f\xa4\x0b\xe7\xed\x4f\xc7\x6a\xa6\x7f\x1a\xa4\x22\x5c\xe1\x1f\xe0\xb7\x42\xe5\x6d\x5b\x87\x52\x21\x3c\x96\xf7\x91\x4e\x62\x13\x9f\xa4\xc7\x22\xb4\x21\xcd\x9b\x23\xa6\xae\xd8\x5a\x51\x1e\x20\x8d\x41\xa5\xdc\x7c\x1f\x8d\x2b\x2c\xa5\xcb\x81\x77\x18\xf9\x16\xc7\x56\x34\xbb\xaf\x21\xfb\x62\x26\xf9\x58\x59\xa2\xc3\x8d\x0d\xb8\xbc\x7b\x28\x4d\x90\xce\x4e\xd0\x06\x44\x51\xcc\x0e\xbe\xf8\xca\xed\xb5\x29\xb0\xb4\x41\xd9\x2c\x7c\xc2\xe3\x97\x39\x7f\x90\x44\xc5\x77\xa6\xb7\x75\x1e\xd3\xe3\x14\x62\x06\x03\x04\xcb\xd2\x07\xf4\x88\xd0\xf9\xc0\x6d\xe1\xd7\xf4\x19\x22\x8f\xf0\xa8\xea\xa4\x02\xab\x88\x4e\x91\x23\xc2\x97\xb7\x50\xa1\xc0\x9f\x75\xac\x78\x3f\xd8\x79\xb7\xa9\xfb\x96\xaf\xda\x38\xb6\x5d\x6a\xa5\x63\x05\x9c\xd6\xd6\x15\x77\xb4\x0f\x50\x3d\xfc\x13\x68\x2b\x1b\x45\xb9\x4c\xa6\x51\xfc\x80\x69\xc2\xaf\x2b\x30\x66\xd3\x33\xc9\x4e\x8f\x89\xe4\xd8\x25\x02\x81\x2d\x27\x87\xf6\x3a\xdd\x15\xc0\x5c\xb9\xc3\x26\x3d\xb9\xf2\xc9\xf3\x1f\x50\xac\xe5\x7f\x44\xab\x9e\xff\xd8\x37\x94\xa3\x6e\x6c\x18\xe8\x8d\x32\xf7\xa7\x5a\x07\xe6\x3c\x3e\x59\xb8\x81\x0f\xf9\x52\x39\x4e\x57\xa9\x93\x86\x94\x6a\x8a\x56\x88\x60\xb4\x3d\x71\xfe\xeb\xb8\xd5\x58\x53\x27\xe8\xd7\x00\x3a\x79\x47\x69\xac\x4d\x34\xd9\x59\x24\x36\x2a\xfa\x36\x9b\x28\x6b\x3d\x10\x5d\x6f\x07\x4a\xff\x12\x9a\xbd\x02\x80\xdf\xda\x6d\x20\x5b\x6e\x93\x71\x8e\x22\x38\x9e\xf2\xe7\x62\xf8\x79\x4b\x01\x33\x99\xfc\x8b\xd0\xfc\x7b\x6e\x18\xa2\x8c\xfc\xb1\x64\xb7\x29\xf0\xc7\x7f\xbe\xad\xd3\xa0\x9c\x4a\x24\xaf\x8c\xd9\x0d\x18\x63\xbd\xa3\x3c\x65\xde\x51\x90\xab\x28\xcf\x8c\x8d\x23\x64\x04\x42\xaf\xa1\x55\xc5\x6f\x6a\x43\xff\x03\xcf\xb5\xc3\x28\x0b\x47\xb1\x29\x2c\x9d\x6d\x58\x71\xaf\x28\x89\xf1\x57\x5c\x20\x5d\xb5\x76\x39\x5e\xdb\xe1\xb5\x8f\x19\x09\x21\x08\x69\xfa\x85\xce\x24\xe4\x79\x67\x69\x8d\xbc\x08\x5a\x01\x4f\xd2\x71\x8e\x68\x36\x85\x3a\x15\x49\xb6\x2f\x0d\xa3\x5e\x92\x66\x98\x9b\x3b\x11\xcb\x8b\x81\xb2\x64\xa9\x9d\xa0\x7b\x67\xda\xa1\x4d\xf2\x51\xae\x2d\x7a\xde\x1d\xfb\x96\xec\xbb\x5e\x35\x6d\xd4\xed\xd9\x94\xdb\x57\x48\x04\xfe\x5a\xa1\x59\xfe\xba\x36\x81\x29\x33\x2d\xd3\x5d\xb1\x59\x01\x7f\x58\x45\x74\xf9\x0d\xc5\x26\xfa\x0d\x77\x97\x16\x63\xf3\x32\xa3\x17\xf1\x7b\xdf\xd0\x71\xfa\x0d\xef\x89\x34\x4a\xa2\xbc\x8f\x04\xdf\x8b\x34\xe0\x5e\xf1\x6b\x8f\x68\x48\xa3\xb8\x0a\x28\x39\x3a\x56\x6e\x6e\x47\x2b\xed\xec\xc4\xa5\xa5\x82\x6b\xf0\xab\x05\x1b\xc4\xf1\x63\xcb\xdf\x25\xe4\x66\x3f\xac\x4c\x17\xd9\xe9\xba\xe5\xdc\x7a\xce\x04\x15\x6e\xf8\x1e\xc7\x59\xec\x0a\x1d\x83\x9b\xcb\x74\x4b\xa4\xd1\xdc\x80\x6f\x58\xb4\x66\x20\xc3\x5f\x19\xe5\xd3\x2d\x95\x19\xbf\xef\x72\x2d\x9a\x2c\x23\x46\x77\xf9\x2b\x45\x95\x5b\xab\x32\x32\x70\x4b\xc6\x8a\xbe\x6b\xd5\x33\x8b\x59\xc4\x5a\x1f\x6c\x82\xa9\x00\x81\x27\x1b\x87\xa7\x03\xd3\xb5\x2d\x05\x27\x39\x16\x28\xc8\xc2\xb1\x26\x40\xa6\x28\x4c\xb7\x34\x4e\x87\x25\xf8\x24\x87\xf7\x7b\x73\x68\x12\x1b\xcb\xde\x74\xe4\xc6\x39\x4f\x6e\xfc\xd8\x99\x73\x3f\x4d\x2c\xe0\xcf\x68\x16\x9d\xd3\x56\xb7\xe7\xdc\xca\x7e\xb9\x3c\x50\xc4\x2f\xb0\x92\xcd\xf0\x9b\x26\xf1\xad\xa5\x51\x31\xca\x5c\x48\xc2\x7a\x61\x9a\x06\xbf\x51\x3c\xf1\x6e\xb4\x62\xf3\x22\xc2\x5f\x78\x64\x32\x43\x10\xf8\x4d\x23\x9a\xec\xff\x63\x4b\x68\x93\x92\x25\x9b\xe4\x76\x97\x67\x2a\x5c\x0b\x7c\x2a\xc5\x33\x3f\x4c\x0f\xff\x08\x89\x91\x16\x1e\x56\x8c\x8e\x43\xbc\x2f\xf9\x79\xa0\x5d\xf1\x86\x22\x3e\xb1\x53\x18\x83\xe4\x6b\x4b\xf5\x57\x48\xdb\x36\xe9\x5a\x84\x45\x1c\x29\x48\x65\xf8\xb5\x1b\x27\xa4\x43\x1b\x4e\xb5\xb6\x58\x32\xa0\xe4\x7d\x83\xce\x13\xe9\x4c\xd2\x35\x63\x88\xba\x9d\x4e\x36\xf9\x0f\x7a\xf7\x9a\x6e\xfe\x20\xdd\x4f\xc4\xcb\xef\x29\x7b\x85\x13\x5a\xc6\xe9\x14\x5a\xb6\x3c\x28\x08\x94\xf4\xe9\x1b\x81\xc2\x33\x42\x78\x89\xbd\x45\x34\x8b\xeb\x94\x72\x04\x45\x8f\x12\xc5\xdc\x75\x82\x8a\xf2\xeb\x06\x32\x70\x7b\xd1\xf6\xa3\xa4\x3b\xe5\x01\x40\xe5\xb5\x88\x14\xcc\x09\x7c\x85\xb3\x74\x9e\x53\xae\xab\xfb\xa4\xd9\xf5\xfd\x5a\x3d\xb3\x6f\x8e\xd8\x76\x2d\xaf\xf0\x73\x4c\x31\x8c\x8f\x35\xf0\x09\xda\x6b\x91\x8d\xbb\x12\x13\xd1\x22\x6f\x75\x14\xfe\xbc\xb5\xee\xf3\xbf\xa1\xcd\x96\x6c\x58\x80\x17\x7a\x88\x9b\x67\x3c\x74\x13\x64\x9b\xfe\xa9\x75\xb8\xd0\x52\x44\xd4\x93\x83\xde\x6a\x9c\xbe\x17\x95\xec\xad\x40\x19\x07\xfc\xc9\x58\xc9\x53\x5d\x54\x4d\xfb\xc5\x28\x8d\xd3\x1e\x6c\x81\xd5\xa4\x66\xbf\x10\xb1\xa8\x57\x2e\x03\x34\x85\xb3\x33\x49\x3f\x4d\x11\x8b\x51\x96\x70\xe7\x96\xdf\xa8\xb0\x37\x48\x93\xae\x59\xe3\xe6\x85\x93\xf1\x70\x2e\x6b\x75\x3a\x3d\x25\x44\xb6\x0b\x60\xcf\x3c\x67\x71\xe7\xb5\x58\x14\x58\x72\x22\x37\x49\x97\xc9\x84\x8f\xc0\x3b\xb5\x86\xe9\x00\xc0\x90\xed\x6a\x68\xc8\x75\x22\x2e\xee\x0e\xd6\x3e\xd6\xfb\x71\x54\xe1\x42\xb2\xf2\x08\xec\x73\x8a\xfb\xb8\x51\x2b\xa8\xf7\x11\x3b\x37\xec\x2f\x65\x69\xa2\x95\x53\x37\x94\x72\x6a\x3d\x67\xdb\x3b\xd3\x5e\x02\xbb\xc1\xdb\x34\x32\xa0\x8e\xdf\xd4\x42\xbb\x04\xde\x34\x8a\x27\x5d\xa7\x74\xd7\x23\x9d\xd6\x97\xbf\xc0\x69\xa2\xee\xe3\xf3\xb6\x46\x7d\xb5\xad\x46\xc1\x95\x0f\x8b\xd3\x51\x94\x4f\x78\xc5\xd9\x0b\xaa\x49\x76\x42\xd3\x71\x6f\x37\x73\xd2\x63\x9b\x14\x6b\x4a\xbe\xfc\xe6\xd8\x3b\x7e\xbc\xa3\xa8\x8c\x97\xdd\x79\xb0\x94\xa6\x71\x94\xc3\xcc\x0b\x25\x11\xb8\x1a\xfc\xba\x01\x94\x39\xdf\x2e\xa2\x81\xad\x10\x41\x8e\x29\x90\xed\x31\x05\x37\x78\xd9\xac\x99\x6e\xa4\x37\x1f\x2a\x1e\x7e\xed\xc1\xf9\x69\xda\xcd\x46\x4b\x4b\xad\xd6\x97\x66\x1c\xe9\x41\xd1\x47\xc6\x81\xef\x0d\x18\xc1\xc6\x88\x5a\xca\x5f\xe0\x08\xe6\x37\xee\x33\xbb\x91\x29\x57\x7a\xae\x37\xf3\x4d\x8d\x2f\x07\x5d\x98\x47\x1e\x4d\xb3\x68\xd1\xf0\xe7\xe8\xe1\xd8\x64\x5e\x62\xe4\x7c\xed\x38\x06\xb8\x2c\x8c\x4c\x4c\x0d\x42\x1c\x98\x62\x37\xaf\x46\x39\x7f\xe9\x12\x41\xd3\xb3\x49\xb8\xa6\x04\x55\x4e\xe9\x11\xf6\x29\x95\xe9\xa4\xbd\x34\x59\x4b\x97\xd5\x49\x73\x46\x79\x69\x9f\x19\xb7\x1b\xca\x3f\x9b\x14\x36\x2b\x4c\x44\xd0\x91\x96\x1e\xa2\xf0\xa9\x2f\x1d\xc1\x0a\x79\xa7\x6b\xa9\x0a\x64\xe9\xed\xc0\x43\x69\x4f\x8d\x3d\xe4\x96\x15\x52\xb1\xd0\x98\x54\x29\xea\xb7\xf8\x22\x60\x26\x59\x72\x1e\x91\xff\x3f\xd2\x82\xe4\x0f\xa8\x34\x99\x96\x46\x49\x4b\x81\x14\x4f\x29\xc1\xc2\x53\xb5\xa7\x23\xfb\x65\xd1\x84\xfd\x09\x85\x93\xda\x50\x06\x61\x3f\xd1\x68\xa7\x6b\x0a\x7b\x63\x5f\x0a\xed\x10\x12\x55\x1e\x2d\xcd\xc0\x0f\x7e\x53\xc3\xd9\xed\x9d\x69\x0f\x86\x7d\xc8\x06\xe9\x56\x33\x86\x42\x4c\xff\x97\xd6\x6d\xc3\x08\x13\x92\x60\x91\x65\x27\x4d\x64\xa6\x22\x63\x86\x3d\x79\x53\xab\xfc\x9f\x53\xbb\x28\x89\x96\x97\x6d\x34\xa1\xb8\x56\x3f\x1a\x2b\xcf\x07\xe8\x84\x20\x4e\x5e\x54\x16\x99\x5d\x13\x2d\x47\x32\x59\x47\x6c\x67\xa1\x33\x7e\x33\xae\x88\x70\xae\xd8\xac\x42\x9f\xdb\xd0\x32\x8b\xf5\xac\xf0\xe0\xf4\x21\xfe\x2b\x0a\x57\x88\xe6\xc8\x16\x50\x70\xf3\x4c\x50\x0e\xcb\xfa\xb0\x2b\xcc\x4c\xb8\x2c\x60\x35\x64\xe7\xb7\x14\xbb\xe9\x5f\x63\xa3\xe1\x84\xbc\xe5\xb6\xcb\x92\x19\xc5\x1c\xe2\x80\x7b\xde\x4e\x03\x6a\xc4\x89\x7f\x3f\xf6\xa0\x52\x72\x42\xf2\xb6\x3e\x2b\x96\x6d\x73\x44\xb8\x90\x3e\x9d\xdf\x28\xe0\x02\x8d\x26\xcd\xe0\x93\x2d\x37\xa6\x7d\xb0\xe3\x6b\xf7\xf3\x8a\x13\xb8\x73\xdd\x4b\xa6\x1d\xe6\x8a\xc3\x59\x29\xce\xce\x4a\xe9\x7e\x0c\xe7\x18\x42\x1e\x0f\xdd\x65\x59\x7b\x65\xc1\xb7\xd9\x46\x09\x8f\xe6\x6d\xe5\x3a\xf1\x78\x47\x91\x0a\x36\xc7\xca\x60\xe3\x26\x86\xf6\x2c\x71\x49\xc9\x99\xab\xb1\xcb\x2b\xc5\x4f\x7b\x17\xd0\x22\x1c\xce\x77\xb4\x09\xd9\x7d\xf4\xa5\x84\xcf\x4e\x6b\x5b\x7c\x19\x15\xe0\xe7\x2c\x5a\x7b\x48\x24\x6e\x28\xe5\x83\x30\x8b\x06\x96\xf0\x43\x58\xb3\xc7\x02\xaa\xe6\x25\xa7\x51\xea\xa8\x00\x03\xe2\xc7\x5d\xa7\x10\x82\xac\xfd\x75\x6d\xa4\xfb\xf5\x06\xa3\x16\xf2\x63\x5a\xab\x0e\xf1\x55\x46\xbc\x75\x97\x3e\xdd\x1e\x44\x31\xec\x3b\x70\xbf\x0f\x07\xfe\x2c\xfd\xb7\x34\x79\x14\x0d\xff\x86\x78\x9f\x59\x13\x47\xe5\x1e\x85\xa4\x05\x0c\xdb\x36\x2f\x35\x41\xb4\x87\x59\xba\x14\x21\xbd\x70\xfc\x0a\x5f\x33\x04\xbe\x55\xd5\x4f\x47\x19\xf2\x1d\x19\x6d\x97\x7f\x83\x8a\xe6\x52\xb0\x05\x0d\xe6\x20\xa5\x63\xbf\xa5\xae\x07\xde\x91\xe9\x7a\xa3\x57\x74\x9c\x26\x3d\x95\x32\xbc\xa7\x9c\x52\x5f\xd5\x92\x13\x7f\xad\x39\x4b\x45\xbe\xa7\xfc\x5c\x64\x16\xf7\x55\xde\xf5\xe0\x67\x68\x59\x53\x3b\x6e\xfc\x38\x4f\xac\x69\x1f\xbc\xf1\x73\x1d\x05\x70\xd9\x1c\x2b\x61\xf5\x7b\x63\x8f\x7f\x83\x16\x3e\xdd\xe5\x4b\xbf\x08\x1d\x72\xb9\x2a\xb5\xd3\x37\x91\xff\xd2\x93\x5f\xfa\x4f\xd0\x67\xa7\x9b\xf2\xcc\xe7\x3a\x7e\x84\xd8\xeb\xa7\x79\x41\xf4\x22\x11\xfe\xa2\x8f\xd0\x26\x3f\x0a\x6e\x33\xe3\x60\xcf\x0d\x6a\x4b\x5d\x1b\xc6\x91\xf3\x30\x97\x11\x3c\xfd\x15\xbf\x71\xc0\x9e\xa5\x54\x88\xc4\xd8\x00\x00\x56\xf2\xeb\xaa\x55\x7f\x6a\xd9\x3e\xc9\x69\xa1\x39\x66\x29\xb2\xbf\xad\xa2\xfe\x6b\x26\xeb\x12\xf5\x88\x48\x05\x6c\x2f\xa8\xa0\x76\x60\x6d\x0b\x79\xf1\x51\x65\xad\x9d\x45\x49\x8f\xdd\xdc\x10\x60\x6f\xe2\x66\xf0\x1b\x55\x42\xac\x46\x99\x2d\xcc\xb0\xa5\xf4\x69\x58\x7e\x91\xdf\x04\x4f\x7a\xf0\x4b\x4e\xd9\x4a\xe1\x7d\x72\x9c\x51\x82\x4b\x16\x8f\x38\x6e\x43\x3f\xea\xf5\x63\xd2\x00\x2c\x7f\xbd\xd3\x28\x76\x98\x04\xa4\xe6\x22\x77\x5e\x71\x8f\x6a\x70\x16\xf8\x4c\x3b\x5f\xb5\x26\x73\xa4\x4c\xec\x8a\x93\x4a\xc7\xfe\x2e\x7d\x9e\x80\x10\x25\x07\xec\xa7\x23\x4f\x91\x65\xa2\xde\xba\x4f\x84\x6e\x06\x4a\x46\x7d\x23\xf0\x88\x90\x28\x8e\x49\xed\xb9\xcc\x1f\xcb\xea\x15\x67\xf7\x5b\x24\x84\xca\xaf\x15\x2c\xa8\x48\x57\x4d\xd6\xdd\xa5\x5c\xe7\xde\x55\x06\xc1\xb7\xd4\x18\x7f\x47\xc7\xfb\x58\x9c\x0b\x74\xa3\x3d\xf0\x27\x44\x45\x23\x90\xcd\x68\x5d\x80\x2e\x7f\xef\xc7\x01\xc8\x9f\x9f\x39\xd0\x8e\x2d\x63\x42\x58\xf0\x34\xd0\xbc\x6b\x6c\x44\x11\x47\x11\x68\x84\x19\x15\x7d\x9b\x14\x51\x18\x95\xa7\xe5\xc2\xbc\x17\x3b\x74\xfe\x09\xb0\x81\x62\x17\xcf\x26\x82\x5a\xd1\xb7\x69\x86\x9d\xc0\x40\x8e\xc0\x73\x94\x2e\x8e\xbd\x56\xa6\xcd\xcc\xa4\xda\x4a\x27\x70\xe4\xe0\xfc\x82\x45\x3f\xbf\x26\xc4\x93\x88\x00\xd6\x85\x21\xe6\x29\x37\x8b\x63\x9a\x85\x1e\x9c\x76\x2b\x49\xad\x2a\x25\x8d\xf8\x0f\x3f\x97\x4f\x95\x9f\xc7\xfe\x0b\x81\x97\xe2\x5a\xfd\xdb\x1d\xdf\x08\x03\x39\x18\xf3\x85\xdd\xeb\x5a\x3f\x71\xec\x8b\xd3\x34\xeb\x32\x0b\x8b\x7e\x3a\x9f\x61\x81\xf7\x14\xba\xd8\xa4\xa0\xbc\xbf\xdd\x4b\x5b\x6a\x34\x79\x82\x1e\x38\xbf\x56\x9e\x5e\x51\xb2\x44\xa4\x29\xed\x01\x8e\x73\x90\x5f\xab\xab\x4a\x96\xf3\x87\x5a\x62\x6e\x35\xf7\x77\xd7\xcb\x2b\x54\x5c\xf9\xcd\xed\x00\xb1\xd3\xff\xf5\xcc\xa7\x3a\x5e\x86\x32\x7d\x8a\x68\x2f\xa8\x0f\x27\xc1\x9d\xc4\x3a\x7c\x5d\x8b\x50\x3f\x4c\xf1\x1d\xf5\xd0\x11\x4e\xd4\xb1\x1e\x76\x76\x74\x38\xc4\x7a\xc5\x39\xfd\x21\xd6\x18\xb6\xd4\xbb\x0d\x5e\x2b\xfd\x51\xbe\x68\x92\x2e\xd7\xcf\x62\x2e\xad\x46\xc0\x27\xeb\x0a\x78\x33\x44\xac\x4f\x5c\xb7\x9c\xe5\xc5\x95\xa6\x86\x97\x93\x12\xed\x49\x81\xdf\x08\x6e\x43\x19\x09\x5e\xab\x7d\xc3\xc2\x74\x59\xfe\x44\x85\xeb\x89\x4b\x0b\x85\x2e\x53\x84\x6d\x9a\x94\x0e\x96\xfc\x37\x31\xf6\x05\x8b\x4b\x80\x30\x3f\xe7\xd5\x9f\x92\xa2\x3f\xca\x23\xe3\xf4\x27\xe8\x46\x01\xe1\x82\xbd\xc6\xaf\xd5\x9c\x6d\x94\x44\xf9\x5a\x4e\x8c\x41\x46\xb9\xd0\x46\xe4\xdc\x8d\xc2\xa9\x76\x63\x14\x24\x8c\x6f\xf6\x0c\x4d\x56\x24\x36\xdb\xae\x60\x0a\x17\xd5\x24\xff\x8f\x69\xbf\x00\xbf\x77\x87\x96\xb0\x33\x82\x9f\x39\x20\xaf\x11\x74\xf0\xc7\x47\x9d\x80\x50\x37\xca\xbf\x32\x8a\x6c\x21\x78\x2a\xa4\xa3\xdf\x53\x26\xfc\xdf\xfb\x58\xd6\xd3\x6a\x54\xf4\xa3\x64\x4a\xa9\x1a\xa0\x9b\x47\xcf\xf2\x3f\x3e\x4e\x42\xd4\xa8\x28\xcf\xab\xe1\xe9\x5d\x3d\x5e\xb8\xae\xaa\x9e\xb0\x9f\x66\x23\xf0\x0e\x84\xfc\xe4\xd1\x9f\xd0\x9d\x15\x2a\xe5\xa3\x0e\x0e\x46\xe2\x09\x36\xc7\x9f\xa1\xbb\x0e\xca\x16\xb2\xd7\x4b\x63\x4f\x0c\x7b\xad\xe1\xc9\x93\xfa\x02\x3f\xf9\x4d\xf4\x84\x95\xa6\x99\x8d\x6d\x58\x64\x69\x12\x85\x3c\x38\x41\x6b\x07\x9a\x8d\x32\x93\x6f\x39\xae\xd8\xfb\x5a\x77\xf5\xc3\xda\xea\x9c\x39\xd0\x0e\xa3\x22\x7a\xd9\x26\x6c\x3e\xc9\x87\x4c\xe0\xe7\xe0\x67\xb4\x0f\xc1\x49\xde\xab\xd8\xc5\x97\x6b\x33\x3a\xd7\x42\x32\x85\x9d\x50\x51\x6e\x82\xea\x23\xfc\xd5\x7d\x05\xb2\xfc\x60\x4b\x3f\x3d\x2c\x72\xf2\x11\x63\xc6\x27\xbe\x5a\xe8\x9f\x5b\x63\xdf\xec\x6c\x3b\x8b\xc0\x19\x3a\xe4\x75\x5e\x66\x67\x9d\x64\xf0\x27\xb5\x90\x3e\x61\x3d\x61\x3c\xd6\xf2\xc4\xec\xb1\x37\xb2\x61\xe5\x0f\x09\x15\x3a\x6e\x68\x16\xe3\x06\x85\x57\xfe\x93\xe0\xe3\x84\xf5\x7a\x99\xe9\x8e\xca\x9b\xe0\x67\x0f\x2d\xaa\x3f\x90\x50\x33\x14\x40\x9c\xed\xb7\x2e\x82\x2f\xcd\x94\x67\x10\x51\xc1\x0e\x4e\x4b\x97\x91\x56\x9e\x74\x1c\x3f\x0e\x75\x90\x2f\x47\x71\xcc\xe3\x30\x97\xae\xfa\x7e\xfb\x45\xa5\x2f\x37\x8c\xcd\x28\x8f\x16\x63\xab\x64\x1f\xb0\x53\xf9\xb5\x1a\x76\x2f\xa6\xe9\x72\xcb\x37\x7d\x71\x9c\x8a\x5c\x75\x43\x69\x62\xb3\xcc\x14\x06\xb9\x1c\x1a\xcf\xf0\x7e\xe0\xd7\x6e\x28\x97\xaf\xda\x61\x01\x2e\x11\xaa\x0b\xf4\xc3\x10\x4c\x27\xa1\x00\x0b\x04\xf3\x91\xc0\xcb\x18\xbc\x36\x7e\x5c\x99\x9e\xf6\x46\x31\x7c\x42\xc8\x73\x6a\xac\xbb\x19\xd7\xb5\xb3\xfb\xeb\x0a\x16\x48\x1d\x29\xca\xe9\x51\xa7\x1f\x55\x82\xcd\x47\x91\xd8\x30\x96\x10\x71\x5a\x80\x85\x0d\x5d\x69\xd3\xcb\xac\xd0\x4d\xd1\x6f\x7e\x2d\x50\x96\xff\x10\xce\x17\x3b\x1d\xba\x52\xe1\xf3\xfb\x29\x66\x2f\x8b\xba\x51\x56\x5e\x82\xeb\x60\x62\x25\x3b\xab\x5e\x2f\x21\x1b\x38\x59\xa7\x97\x86\x36\x8b\x6c\x12\xda\x2e\xf5\x7e\xf1\x7d\xec\xb0\x86\x50\x73\x74\xec\x09\xf1\xdb\x3a\x8a\x14\x7d\x7d\xfc\x29\xb5\x37\x06\x83\x51\x12\x85\xc8\xbf\xb5\x24\xd7\x59\x4d\x2e\xbe\x40\x0f\x80\x5f\xe3\x28\x76\xc4\x84\xd9\x59\x81\x2d\x06\x5e\x73\xae\xc0\x7e\x42\xca\x87\x29\x3d\x3a\x1d\x37\x02\x45\x1e\xf3\x4d\x95\x9e\x89\x12\xe9\xc4\x00\x0e\x74\x45\x35\xd9\xaf\x6b\x2e\xfc\x2b\x4d\x30\x95\x30\x25\xd8\xcb\x44\x65\xa2\x56\xfe\x66\xe4\xab\x0c\xdf\xc2\x4f\xf8\x46\xa3\x9b\xed\xc0\x44\xc9\x52\x66\x06\x56\x4d\x63\xcf\x2a\x27\x81\xb3\x3a\x5a\xa5\x71\x6c\x98\xf7\x8c\x50\xdb\x42\x5a\x87\x72\xea\x62\xc5\xb9\x49\xf1\xcc\x5a\x1d\x47\x7e\x0f\x6d\x62\xb2\x28\x85\x24\xa9\x9b\x5b\x28\x00\xb0\xae\x6e\x19\xd8\x8c\x14\xf6\x13\xb4\x4b\x10\x3d\x36\xcb\x6c\x5b\x63\xb6\x0e\x4e\x3f\xdb\x7e\xfa\x53\xd8\x06\x78\xda\x3c\x8c\x53\x9f\x7a\xc8\x9b\x52\x1d\x9c\xf6\xf0\xe6\x85\xe9\x05\x4e\x06\x27\x3a\xfa\x90\xa2\x33\x1e\x29\xe8\x37\xf0\xa3\xd0\x48\x9d\xa0\xc4\x10\xff\x6a\xaa\x43\x1d\x1a\xbc\x39\x8e\xf0\x89\xb4\x63\x77\xa7\xb5\x77\xaf\x80\xf4\xf5\x16\x78\x80\x22\xa2\x7b\xd6\x33\x07\x44\x40\x82\xc8\x8f\xd8\xeb\xe0\x54\x62\x4f\x5c\x85\x61\x83\x73\x98\x28\x93\x4b\x9c\x4b\x37\xb8\x73\x25\x43\x38\x4a\x71\x9d\x06\xa9\x3b\x7a\x6e\x57\xcf\x79\x5f\xad\x26\x69\xa6\x7a\xd3\x4e\x3b\xdb\x8f\x3a\xce\x54\xe9\x18\x99\x69\x95\xf7\x47\x22\xb3\xc2\x86\xd4\xc7\x3a\xfb\xe6\xda\xab\x59\xc4\x98\x15\x99\xa0\x57\x80\x89\xbb\xa4\xa6\xb4\x13\x74\x0f\xf1\x90\x71\x77\xc4\xc5\x9c\xda\x40\x77\x2a\xbf\xc2\x8e\xb2\xed\xad\x67\x9e\x67\x88\xda\x4d\x3a\x1f\xb0\xef\x21\x74\xc2\xaf\x03\xc5\x8e\x82\x7b\x02\x0e\xd4\x3b\x0a\x12\x72\x45\x55\x21\xe4\xc7\x6f\x96\x85\x42\xca\x3a\x82\xaa\xc9\x7f\xa2\x09\xcc\xbe\x68\x8a\xc2\x72\x9d\x86\x4e\xdc\xa9\x40\xb5\x92\x4f\xa9\x96\x9d\x79\x39\x7a\xd9\xd0\x16\x43\xa3\x1b\xf0\x61\x7e\x5d\x21\xe9\x94\x65\xf9\x4e\xcf\x04\x3b\xac\x87\xca\x37\xf5\x84\x18\x17\x8f\xce\xd7\xff\x45\x17\x2f\x38\x4f\x0d\x31\xa0\x08\x56\xb1\x11\x41\x8a\xff\xa1\x07\x83\x99\xe1\xd0\xd5\x02\x48\xb4\xb7\xad\x7b\xba\xd2\xb6\x4e\x03\xbb\x70\x29\x4a\x10\x30\x80\xa6\xba\xa7\x58\x60\xf7\xf4\x11\x1a\x2d\x57\x99\xdd\x15\x47\x8c\x46\x54\x72\x16\xf6\xa3\xc2\x86\x45\xab\x62\x8e\xed\x7b\x42\x47\x83\x27\xea\x3d\xa6\x5e\x8a\x66\x90\x98\x64\x69\x31\x17\x2f\x33\x73\x57\x01\xfd\x63\x93\x17\x0f\x51\x50\x40\xec\xda\x0e\xcf\x74\x84\x8b\x4b\x81\x07\xcd\x81\x8d\xc1\xfa\x47\x78\x16\x38\x5a\xff\x4e\xc7\x8f\x98\xff\xcb\x47\xd6\x09\xf8\x89\xea\xe1\x0c\xf6\x86\x9b\x18\x78\x51\x12\xf0\x0f\x25\xdb\xf2\xa6\xb4\xeb\x14\x08\x58\x65\x63\x5c\xd9\x27\x2e\x6b\x08\x4d\x6c\x27\xfd\x85\xb1\xaf\xbd\xeb\x7b\x7b\xf2\xec\x35\x65\xc9\x35\x55\x43\xac\x91\xde\x47\x98\x0e\x44\x26\x41\xac\xc4\x3e\xd6\x70\xac\x01\x24\x94\x8d\x94\xd2\x29\x36\xd6\x77\xc7\xbe\xd6\xbf\x1e\xf8\x19\xfa\x95\xa6\xbf\xef\xc5\x26\x8c\x98\x22\xc6\x13\x5b\xfa\x13\x99\xde\x7a\x14\x79\x99\x83\xed\xa4\xdf\xe9\x92\xb0\x99\x03\x3c\x12\x43\x17\x45\xe4\x55\xca\xbf\x47\x97\xed\xc6\x58\xd9\x08\x5f\x02\x22\x57\xd2\xb6\x32\xcf\x96\x29\x47\xcb\x09\xac\xbf\xd5\x94\xce\xe5\x6b\x83\xc5\x14\x94\x4b\xb4\x78\xd0\x83\xe1\xd7\x0d\x88\xff\x76\xde\x8f\x68\x27\xe1\xbe\xe0\x87\xfd\x40\xe1\x0f\x71\xb4\x23\x72\xe9\x16\x48\x1e\x46\x65\xb9\x9c\xb3\xfa\x84\x33\x53\xdb\xe7\x8c\xd5\xdc\x5e\x1d\x66\x69\xd7\xa1\x2a\x98\xb6\x81\x4d\x25\x1c\x8e\xad\xbf\x6b\x76\xb6\x6d\x07\x8b\x99\x09\x65\x70\x2c\xb8\x48\xba\xab\x22\x7c\xb6\xb5\xa6\x79\xba\xcc\x31\xa3\xbc\xb0\x4e\x27\x49\x50\x5c\xf4\x65\xe2\xb2\xdf\xa4\xff\x6f\x5f\x8a\x72\xb4\x29\x39\x01\x0c\x54\x9b\xec\xa2\xea\xe8\x5e\xac\xf4\x69\x65\x9d\x27\xa3\x2c\xb7\x13\x74\x2a\x63\x65\xfd\x07\x45\x93\xf9\x80\x60\x86\x38\xba\xdf\x6e\x68\x63\xcd\x91\x9a\x52\x0c\x75\x1d\x47\xbe\x6c\x75\xb4\x06\x32\x3d\x1c\xec\xed\x6b\x0d\x73\x8c\x45\x13\x2e\x53\x4a\x8a\xbc\xf6\xce\xd8\x5b\x5b\x22\xb3\xc4\x49\xbc\xad\xf3\x69\x5f\x54\xf4\x4d\x36\x30\xa1\x1d\x51\x2b\x22\x9f\x2c\x1f\x1c\x72\xf1\x6f\x51\xf4\x75\x82\xcd\x5e\x57\x7c\x43\x41\x02\xbe\xb5\xe5\x98\x5d\x7e\xd2\x43\x79\xaf\x55\x06\xba\x27\xb5\xe8\xdb\x69\x4c\x87\x44\xbc\xda\xcb\x20\x5d\xc6\xdc\x4b\x0a\x00\xaf\x4c\x7e\x7d\x4c\x7b\x01\xe9\xec\x09\x32\xc6\xe0\xd7\x63\xad\xe7\xa0\xe2\xd5\x7f\xc0\xda\xe2\x2f\xd4\x02\xfe\x7f\xa1\x33\x11\xce\x99\xd1\xcc\xba\x4b\x5b\x19\xb9\xd2\xdd\xc0\xab\x38\x30\xff\x01\xbf\xf7\x2e\xf2\x2e\xd1\x7d\xde\x32\x41\x3b\xe4\xb2\x6c\xdf\xf3\x1f\xa4\x79\x98\xae\x22\x66\x29\x45\x11\x19\xc9\xbd\x49\xdf\x8a\x6f\x7a\xa7\x69\x0e\xdc\x25\x67\x7b\x77\xce\x89\x84\x88\x3f\x68\x37\xaa\x04\xee\x08\x8e\xda\x4d\x0e\x38\x9e\xe2\xb5\x19\x54\xac\x10\x94\xfe\x8b\xff\xe1\x19\x62\x1d\x7d\x2b\x52\xbd\x2b\x63\xdf\x24\xb9\xa2\xce\xa4\x17\x47\x79\xf1\x24\x3d\x61\x0c\x94\x5e\x1d\xab\x03\x0a\xd5\x1a\xb6\xc4\x1e\x1c\x56\x68\x20\x5f\xc7\xfc\x10\x87\xf5\x11\x3c\x30\xa4\x9a\x70\xb2\xc7\x70\x08\x83\x40\x54\x45\xa0\xbf\x62\x4d\xff\x19\x2f\x30\x64\x39\x78\x76\x6e\x50\x54\x3e\x22\x11\x02\x50\xea\xbd\x6f\xe3\x71\xa3\x60\xdd\xb1\xee\x5d\xde\x77\x74\xb6\x7d\xc6\xa3\x94\x66\x67\x95\xb2\x6a\xb9\x72\x98\xc5\x42\x41\x18\xdf\xf1\x11\x2d\x5b\xe7\x45\x77\x50\x24\xe1\x27\xd7\x1d\x98\xc4\x16\x36\xcb\x04\x77\xc2\x26\xe8\xa8\xa5\xc4\x11\x5d\x03\xac\x8a\x68\xc5\x92\x4e\xc7\x21\xa7\xef\xe9\x86\x6a\x01\x7b\x77\x23\xff\x81\x45\x06\x6e\xf4\x99\xa6\x49\x63\x38\x0a\x97\xd3\x54\x59\x00\x31\xd2\x82\xdf\xac\xfb\xdc\xae\xcc\x25\x78\x1a\xe5\x88\x71\xce\x56\x0f\x73\x25\x91\x63\xf1\x82\xc9\xe9\xa8\xc8\x23\x52\x8c\xa0\x67\xe9\x50\x47\xee\x47\x5d\x08\x7e\xb1\x01\x68\x64\x5f\x2a\x32\x83\x9e\x79\x16\xb1\x64\x9c\x57\x51\x75\x90\xa3\x8b\x81\xef\x81\xdb\xd8\x42\xbe\xa4\xbc\x13\xd2\x98\xa0\x2f\xc5\xbe\xbe\xa6\x84\x6a\xee\x06\x1a\x87\xe0\xa7\x60\x03\x93\x90\x38\xc4\xa4\x22\xde\x71\x41\x2c\x82\xfe\x74\x73\x18\x30\xc5\x43\x79\x81\x4f\x79\xd5\xc8\x15\x13\x8f\xec\x27\xd4\x2c\x51\x0c\x3f\xd0\xe3\x04\x47\x07\x0b\xfe\x9a\x3e\x6a\xde\xc1\x62\x54\xa9\x8f\xc8\x65\x5c\xc6\xf2\xc7\xce\xff\x48\x29\x78\xfe\x84\x08\xe3\x82\x00\x2c\xd7\x19\xbf\x1e\x7b\x03\xac\xfb\x74\xb9\x08\x9b\x0f\x90\xda\x0d\x7f\xb7\x86\x6b\x5c\x50\xe2\x25\x43\xd2\x3b\x06\xaa\xba\xbc\x08\x96\x6d\x1e\x57\x34\x9c\xa5\xb8\xb7\x26\x73\xc5\x3d\x4a\xc4\x4b\x4a\xc2\xe9\x4d\xfc\x91\x94\x17\x0d\x70\xba\xa1\xc9\xe2\xc8\x0c\xb6\x92\xb0\x81\x7f\x41\x97\xa4\x62\x9b\x75\xdd\xb5\x49\x32\xbb\xe2\x29\xd8\x24\x2a\x28\x23\xf5\x86\x01\xed\x30\x4b\xc3\xd8\x44\x03\x80\x0c\xb1\x55\x18\xba\xad\x07\x83\xe8\xff\x7e\x7d\xec\x35\xd9\x6e\x34\x18\x49\xcc\xb5\x87\x69\x51\x66\x33\xac\x56\xc1\x6e\x01\x74\xdd\x1f\xe7\x1c\x30\xbf\x30\xdf\x1e\xa6\x69\x66\xb3\x96\x57\xc3\x60\xbd\x6f\xf1\x69\xaf\xd3\xf7\x88\xa2\x9e\x99\xd0\x09\x36\xe1\xf8\x61\x24\x3c\xbf\x51\x63\xc5\xcc\x9a\xb8\x58\x6b\xb5\xbe\xe8\x85\x5c\x94\xdc\x7d\x1d\x67\x43\xd8\x21\x93\xf5\x24\x51\x16\x53\x16\x25\xac\x71\xaf\x02\x88\xf4\x1d\x74\x13\x17\x7d\x6b\xc0\x44\x56\x46\x9e\x32\x84\x84\x7d\xba\xf3\xd6\xf4\x7e\xdf\x17\x1c\x86\x6e\x10\xf6\x32\xdb\x4b\xa9\x1c\x9d\xdf\x24\xbc\xc2\xe6\xa5\xb1\x9f\x1e\x93\x82\x65\x3f\x8d\xcb\x00\xb2\x9b\x76\x03\x22\xed\x6d\x9c\xde\xce\x47\x62\x76\x56\xda\x87\xb4\x03\xc4\x13\x9c\x7e\x19\xe0\xd0\xaf\x8f\xbd\x6f\xed\x75\x25\xca\xb7\x63\xdd\x33\x8d\x2e\x68\x7d\xe8\x5b\x38\x76\xf9\x4d\x83\x3e\xf4\x42\x7b\x29\xcd\x06\x9c\x6d\xb2\xe3\xb2\xd2\x7b\xff\xb6\xf2\x1a\x97\x21\xb8\xed\x4e\x4d\x2c\x4c\xef\xdf\xbc\x02\x96\x1a\xe2\xc6\x65\x85\xec\xf8\x73\x55\xeb\xfe\xcf\x9a\xd4\xf8\xe7\x1f\x0f\x0f\x4d\xec\xce\xf2\x9a\x9d\x53\x9c\x2f\x70\x36\x34\xc4\xf1\x3e\x7d\x0d\x80\x39\xff\x13\x9d\x8c\xd8\xf6\xdb\xd1\xdb\xc1\x8f\xde\x49\xc7\xa7\x48\x8a\x96\x77\x46\x54\x33\x34\x03\x2d\x8c\x47\x5d\x9b\xef\xa4\x47\x20\xbc\xbd\x72\xbd\xe1\x35\xea\x15\x1c\xfb\xc7\xd5\x67\xfc\xf1\xd8\x7b\x88\x61\x9f\x7a\xbe\xa7\xcb\x61\xcf\x05\x13\xfb\x7f\xfd\x4b\xdc\x5b\x3b\x56\xf3\xb6\x39\x38\xdd\x8e\x12\x33\x1c\x66\xe9\x30\x8b\xa8\x05\x7f\x50\x32\xd8\xff\x41\x69\xde\x00\xb1\x86\xf8\x73\x55\xf9\x66\x46\xc9\x8a\xcd\x0b\x3a\x25\x76\xb6\xbe\x24\x1a\x63\x7f\x10\x78\x89\xa2\x3f\xa8\x38\xc8\xe8\x99\x17\x2d\x32\x74\x3f\x7f\x8b\xae\x8a\x39\x55\xb4\xe0\x84\x5f\xa5\xee\xf7\x6d\x05\x08\x5c\x2d\x23\xe9\x30\xb3\xa6\x3b\xe5\x67\xab\xdf\x3e\xa6\x39\x1a\xaf\x29\x7b\xa0\xaf\x8e\xf5\x99\x4d\x9f\xc9\xe9\x64\x43\x24\x7a\xb6\x9d\xa7\x03\x0b\xc4\xac\x37\x9b\xf9\x37\x9a\x2d\xfe\x6f\x54\xa5\xb9\x12\xd9\xd5\x5d\xf4\xe4\x90\x1f\xdc\xa1\x6b\x01\x8d\xf4\x1e\x3d\x21\x84\x14\x72\x12\x17\x71\xd7\x73\x8a\xf5\x7e\x04\x3b\x19\x19\xf5\x4d\x5d\x83\xc2\x3c\x00\x01\xfb\x9e\x52\x4f\xa9\xff\xea\xe7\x67\x0e\xb4\x13\xdb\x4b\x8b\xf2\x19\xa2\x03\x22\x15\x60\xf9\x11\x52\x19\x2a\xe6\x60\x1a\x2e\xcb\x74\x1b\xbd\xf2\xb3\x74\xdf\xf9\x75\xe5\x04\xcf\x7a\x26\xb3\xec\xe6\x86\x78\x73\x44\x91\x17\x8e\x34\xca\xfd\x2c\xc5\x76\x15\x7f\x81\x66\x22\xcb\xe1\xf1\x1b\x77\xde\x44\x04\x76\x5d\xf5\x30\x1f\x94\x0f\x10\x9d\xe2\xd7\x63\xdf\x6f\xca\x32\xc7\x8b\xc7\xc2\x79\x60\xdd\x2f\xa2\x07\x3a\x8f\xfa\x99\x68\x19\xe3\x2d\xdb\xc9\x21\x60\x7e\x4b\x05\xcf\x6f\x35\xb4\x90\xf6\xb7\x4d\xc1\xc7\xc2\x84\x52\xa7\x3e\xaf\xf4\x32\x36\xb4\xa0\xd4\xbd\x5a\x11\xfb\xc2\x0b\xed\xc2\x44\xab\x86\x4d\xd8\x31\xb0\x7f\x5b\x8d\x94\x8f\x6b\x48\xf9\x25\xb5\x9c\x97\x6c\x56\x44\x74\xea\xa2\x05\x50\x09\x3d\x6c\xb9\xab\xcc\xb5\x6f\x2a\x39\x72\x9b\xf4\x6c\xbc\x0c\xa8\xe4\x21\x31\x7d\x08\x94\xd7\xc0\x31\xd5\x4c\xec\x45\x71\xc1\x09\x08\x96\x04\x2b\x49\xf2\x1b\xa5\x99\x18\x75\xad\xc9\xb7\x7b\x63\x38\xb6\x66\x44\xea\x74\x15\xad\x29\x57\x0f\x3a\x25\xf7\xd3\x81\xb7\x20\x3f\x31\x56\xc4\xff\xf3\xaa\xae\x59\x4c\xd3\x01\xc9\xa7\x8b\xdb\x28\x62\x1a\xbf\xae\xf1\xf4\xca\xd5\x34\xb4\x19\x99\xf9\x46\x2b\x56\xa9\x8b\x9e\xd6\x2a\x69\xa7\x83\xc7\x95\x01\x5b\xd2\xb5\xf9\xa2\x49\x96\x5b\xbe\xb9\x74\x5f\x0b\x92\xdf\x77\xb9\x56\x92\xae\x58\xf1\x48\x40\x9e\xf1\xcf\x55\xce\xf1\xcf\xdd\xa4\x3a\x1a\x94\x31\xd2\x66\xf1\xda\x84\xd7\x50\xc6\x00\x4e\x46\x05\x7e\xc0\x7d\xc3\x75\x25\x96\x4d\x66\x93\x96\x3f\x83\x36\xb4\xaf\xf9\x86\x53\x50\x59\xb1\xd9\xa2\x29\xa2\xc1\x84\x92\xf9\x38\xa7\x74\xde\xef\x07\xaa\x4f\x77\xc5\x4d\x81\x48\x8b\x7e\x09\xcb\xd5\xcd\x68\x1d\xe2\xe9\x23\xc5\x11\xa9\x08\xfd\xa5\x71\x37\x4a\x7a\x24\xb2\x80\xf4\xb2\x1f\x78\x1f\xc2\xef\x53\xcc\x42\x83\x99\x45\x3c\x2b\xca\x61\x78\xa0\x1a\x8a\xbf\x7b\x5d\x51\x51\x2f\xa2\xcd\xca\xd3\xfd\x32\xcd\x28\x0c\x61\xfa\xcb\x34\x5c\xb0\xd7\xe5\xfd\x70\x56\x72\x65\xb6\x26\x5c\x64\x47\xa7\x35\x21\x80\x73\x28\xee\x6f\x2b\x88\xc5\x6d\x15\x9b\xc2\x2c\x2a\x6c\x16\x19\xaa\x50\x30\x22\xbb\x86\x92\x51\x14\x75\x7d\xa7\x68\x53\xc5\xac\xba\x2a\xeb\xcc\x81\xf6\x20\x5d\x54\xd6\x14\x47\x35\xcf\xb7\xee\x27\xf8\x34\xb9\xf0\x8d\x7a\x65\x81\xee\x01\xb1\x17\xb8\x7e\x11\xe1\x80\x26\xbb\x94\xa5\x34\x73\x66\x69\xf8\xc9\x1f\x69\xa7\xe5\x8f\x6a\x3f\xed\xe9\xf2\x7f\xec\x64\xeb\x79\x6f\xc6\xaa\xba\xe1\xe4\x9a\x3f\xbf\xf9\xe1\xd8\x23\x89\x2e\xb8\xf5\xd1\x2f\x53\xd7\x7e\xcb\x8b\x8f\xff\xe4\xa6\x32\x96\xba\xd9\xd4\xbd\x1c\x9a\xbc\xc8\x80\xd6\x16\x91\x4a\xc5\x97\xdc\x50\xee\xc1\x67\x1a\xac\x14\xe6\xdb\x90\xd3\x10\xbb\x13\xd7\xa7\x59\x98\x76\xa8\xe5\x46\x99\x0c\x13\x0d\x2a\x6d\xc6\x8b\xf4\xc4\x45\xd2\xc4\x43\xc9\xe3\x30\x4d\x26\x55\x14\x3d\xcd\x65\x20\xf6\xe3\x69\xba\x3a\x14\xf0\xf7\x69\x4d\x8b\x6c\xc3\x63\x2a\x65\x29\x6c\xb6\x64\x33\x3b\xa1\xb4\xe5\x6e\x54\xfa\x39\xea\xa4\x7b\xdb\x67\xd6\x51\x5e\x64\xa3\xbc\x98\xf0\xbd\xbc\xbb\x63\x25\x6a\x73\x5e\xa1\x20\xa7\x3a\x5b\xf3\xac\x7d\xd4\x61\xcc\xd2\x97\xc8\xda\x81\x75\xd1\x78\xb4\x46\xf1\x46\xc6\x6c\x0d\x14\xe8\xa5\x28\x0f\x4d\x0c\xc8\x89\xcb\xfc\x1c\x35\x0a\x89\x81\x3c\x92\x32\x0d\x95\x8e\xab\x6c\xa6\x61\xd4\xe3\x7b\x8b\xbf\x9e\xa2\xbd\xcb\xaf\xd7\xbd\x4f\xe1\xca\x88\x7e\x95\x1c\x3e\x2d\xa7\xf4\xb5\x51\xa1\x7d\x0c\xd6\x6c\x6b\x6b\x61\xe3\x05\x00\xe4\x4b\x63\x5b\x30\x4a\xc6\x8d\x86\x9d\x9f\xd7\x69\xdc\x61\x34\x44\x26\x91\x17\x09\xe4\xa2\xc9\x1d\xae\x67\xb2\xae\x90\x01\x9c\xc5\x91\x03\x62\x9f\x53\xa7\x61\x98\xa5\xa3\xb0\xcf\xe6\x1c\xdc\x50\x22\xc5\x12\x69\x2e\x6d\x5d\xb2\x28\x07\x7b\x36\x89\xb0\x93\x7d\xa6\xdf\xf2\x7e\xab\x35\x30\xcd\xf3\xf3\xed\x61\x6c\x18\x3a\xc6\xd6\xfe\x81\x1a\x1b\x9f\xd4\xa8\x28\x93\xc5\xa9\x96\xfc\xde\x50\xf0\x89\x6f\x8f\x95\xa2\xcd\x3d\x6a\x52\xe3\xe0\x69\x14\xab\x59\x64\xeb\x91\x09\x75\xd6\x33\x4c\x42\xbc\x71\x34\xa8\xba\xa1\xcb\x3e\xdf\x1e\x98\x17\xb9\x3a\xf4\x42\xa6\xe5\xdf\x48\x69\xeb\xcf\xe9\xf2\x0a\x99\xba\x89\xd0\x7e\x54\xb9\x7b\x1e\x75\xd8\xeb\xcc\x26\xa2\xab\x84\xdb\x75\x4c\x8f\x84\x8e\xd5\xc0\x67\xb4\xdd\x87\x59\x5a\x58\x5f\x81\x33\x87\x5d\x19\xba\xdc\x51\x04\x8f\x30\x1d\x25\xb9\x8d\xe9\xbc\xc2\x40\xe4\xad\xc0\x43\x0e\x7f\x86\xdf\x2f\x21\x97\x3e\x0f\xe9\xd6\x6b\x38\x0a\xd0\xcf\x86\x31\x1a\x26\x00\xe8\x45\x30\x01\x26\xd0\x36\xc8\xdd\x68\x25\xea\x8e\x4c\xbc\xd3\x4f\x66\xff\x12\xdd\x2a\x64\x19\x88\x64\x3c\x08\xc5\x2a\xc6\x77\x7d\x17\xa1\xc0\x25\xbb\xe5\xfd\x45\x65\xfd\xe7\x81\x16\xf3\x01\x4f\x1f\x55\xc4\xdb\x35\x84\xd9\x81\xe7\xda\x69\x56\xf4\xd3\x6e\xfa\xd2\x84\xf6\x4f\xf4\x3b\xfc\x26\xad\x11\x31\xe8\xd9\x9a\x79\x2f\x4c\xc3\x7e\x61\x8a\x46\xff\xae\xd3\x53\xde\x12\xb7\xab\x9d\x30\xe2\x6d\x0a\x90\xd8\x84\xa7\x02\x4f\x0a\x69\xd4\xc7\xe8\x8e\xf2\x02\x27\x32\xc2\x38\x98\x10\xfc\xda\x65\xe8\x89\x2d\xbc\x71\x1a\xfb\xae\xa8\x36\xe6\xe1\xc6\x1f\xdc\x65\x9e\xaa\xd0\x83\x5e\x57\x40\xf6\x9f\x62\x41\x33\x82\x9b\xf2\x06\x51\xcd\x74\x2a\x40\x66\xad\x6f\x86\x44\x5b\x46\xf1\x82\xc1\x2b\x46\x7a\xef\xe0\x49\xa0\x69\x77\x42\xab\xba\xfc\xe5\x58\x49\x4a\x9c\x53\x44\x8b\xd8\x0e\x26\x81\x8f\x70\xf0\xd6\x05\xe5\xe6\xe6\xfa\x36\xc7\x74\x33\x64\x5b\xa7\xe1\x28\x5d\x8a\x16\x1d\x6f\x5f\x18\x0b\xbe\x6d\xe8\x4f\xe9\x45\x6b\x87\x36\x9b\xf2\x96\x0c\x67\x95\x5a\xe2\x64\x47\xf9\x77\x5f\x56\xc6\x10\xf7\x74\xe8\x50\x92\x60\x2c\x2e\x37\xa1\xce\x5f\xd8\xf2\xe2\x23\xae\xaa\xde\xce\xe9\x3a\x1a\x66\xae\xfd\xf9\xed\x65\xbc\x84\x92\x04\x7c\x71\x75\xf7\x10\x23\x8b\xff\x7e\xac\x50\xfe\xd8\xee\xd2\x07\xa1\x1f\xc5\x7f\xed\x92\xec\x45\x53\x0c\x4c\xd2\xaa\xa4\xbe\x9e\x89\xb3\x31\x7e\xb2\x0e\xca\x99\x7f\x6e\xff\x83\xe5\x17\x62\x70\x71\x9c\xc4\x2e\x05\x47\xd8\xfa\xb5\x7f\xc2\xdb\xee\x16\xfd\x40\x7e\x4d\xeb\xb9\x02\x4f\x44\xe5\xfd\xb6\x96\x87\x63\xa5\xcf\xca\xf8\xdb\xcd\xdc\xf6\xce\x38\xe3\x03\x0f\x9b\x6f\xcc\xc8\x6c\x5e\xa0\x71\x8f\xdf\x07\x44\x29\x82\x13\x1b\x3b\x61\xe4\x71\x41\xe1\x66\xca\x12\x26\x32\xf1\x84\x82\x9f\x1f\x51\x7e\x0d\x53\x0a\xcd\xa7\xa7\x04\x4b\x51\x6c\x73\xda\x7a\x42\xad\x6d\x39\xe1\xf4\x71\x65\x04\xb8\xbc\x96\xee\xa2\xfd\x82\xa7\xf4\xef\xb0\xf3\x95\x4d\xd1\x21\xe7\x39\xa7\xb4\x37\xae\x50\x34\x64\xa7\x37\x4a\x20\xd0\xe7\x39\xa7\xf4\x0e\x70\x6f\xb1\xf0\x91\xfa\x8b\xc1\x97\xa3\xf9\x8e\x68\xeb\x4f\xd2\xdd\xc5\xae\x7a\x40\x69\xd7\x5e\x50\x37\xe8\x35\xfa\x42\x84\x84\x73\x4d\x73\x67\xa2\xf1\xf6\x24\x49\x66\x45\x2e\x3c\x44\x91\xe7\xaa\x93\x9c\x0f\x95\x37\x4a\x92\x48\x6c\x91\x73\x6a\xd0\x7f\x4e\x0d\x13\x16\xd3\xc5\xc5\x35\x8a\x18\xf8\x38\xf6\xc7\xc5\xd2\x79\x63\xec\xa7\xf5\xb7\x54\xcd\x70\x55\xdf\xb3\xd7\xc7\xbb\x25\x25\x2d\x3e\x5b\x56\x0d\x9b\xa7\xe9\x33\x36\x4f\xbb\xca\x6f\x25\xe2\x36\xac\xcc\xc8\xee\x29\x91\x89\x7b\xca\xdb\xb3\x88\x32\xab\xe4\xa2\x80\xfd\xc4\x62\xe5\x22\x04\x8b\xf5\x4f\xdc\x76\x8a\x9f\x4a\x6d\x84\x36\xb9\xa0\xd1\xfc\x78\xfb\x76\xb0\x95\x55\x5c\x6e\xa7\xb2\x7c\x05\xa4\x57\x5c\xc8\x18\xf3\x41\xdf\x26\xf8\x8f\x06\xf7\x38\x67\x4e\x80\x4f\xdf\x46\x0d\x17\x6c\x38\xa6\x26\x62\xb5\x7c\xe0\x6a\x59\xb3\x44\x04\xe6\x97\xe8\x5b\xd8\x24\x5f\xc9\x0e\x79\x3c\x2b\x11\xfe\xc9\xbd\x15\x49\xf8\x1d\xa5\x8a\xcc\xc3\x7f\xa7\xbf\xe8\x9e\xd5\x4d\x0d\x96\x7b\x00\x28\x42\x69\x5a\xe9\xbd\x10\x2d\x2d\xed\x2c\xd7\x2c\x3a\x66\x17\xa8\xb9\xc5\xaf\xd5\xe9\xbf\x5d\x89\x22\x1e\x0d\x14\x2c\xf5\x52\x6d\xef\xcc\xbb\x85\xd8\x52\x9e\xa7\x82\x4f\x8c\xa3\x81\x25\x9e\x15\x3d\x15\xb4\x7e\xce\x50\x8c\xe3\xd7\x6a\x48\x9c\x8d\xba\x2c\x9a\x82\x8e\x24\xa2\x3a\xbf\x6e\x62\xf5\x64\x69\x51\xd8\x64\xd2\x0f\x62\x37\x03\xa5\x5d\x8c\xd3\x02\x45\xc8\xeb\xb4\x10\xb0\x5e\xbc\x50\xde\xe2\x68\x69\xc9\x66\x94\x51\x88\xd3\x95\xaf\x55\x8e\xa9\x66\xf1\x9b\xaa\x03\x44\x52\x41\x2d\x9f\xee\xbc\xe2\xa9\x01\xff\xe8\x15\xa5\x9f\x96\xae\xd8\xac\x6f\xca\x43\xbf\xac\xf0\x71\x0c\x5c\x47\x55\xcf\x6f\x9a\x34\xdd\x43\x33\x24\x85\xa4\x96\x93\xf5\xba\xa0\x40\x73\x17\x2a\xa6\xca\x26\x2f\x9e\xa0\x0f\x17\x11\xe7\x6d\x9f\x71\x2e\x25\x14\x6e\xf0\x60\x26\xd7\xcb\x6b\x97\x99\x30\x2d\x0c\x34\x06\x7f\x93\xee\x2f\x92\x8b\x3d\x04\xd5\x64\x36\x2d\x05\x7c\xb6\xdb\xa1\x6f\x17\x17\x61\x7a\xdc\x08\x70\x97\x11\x37\x71\x60\x6e\x63\x76\xa5\xe0\xf1\x69\x29\xb2\x70\x08\x56\x0f\x4b\xe8\x69\xec\xe5\x7b\x28\xa0\xb1\x4d\xee\xd1\xb0\x1f\xcf\xfa\x7f\xa3\x4e\x8b\x30\x83\x7d\xbe\x77\x54\xcd\x2c\xce\x55\x16\xf5\x60\x88\xfd\xc2\x6e\xe1\x81\x67\xb4\xfd\x24\x50\xfa\x43\xef\x03\xbb\x84\xd0\x8d\x61\x3e\x92\x89\x3b\xb8\x18\xfe\x0f\x1e\x3a\x63\x4d\xc6\xc1\x16\x50\x85\xdb\x5a\xf8\xe0\xb6\x2a\x66\x86\x26\x8b\x4c\xbf\xa5\x87\xef\xd4\x0a\xe4\x37\x8e\x78\x11\x25\x61\xa6\x6d\x31\xe9\x7a\xff\xce\xa7\x69\x18\x82\x3c\x04\xd1\x10\xa4\xd5\x47\xd6\x75\x05\x67\xc9\x7c\x77\x4a\x71\x62\xb5\xbf\xea\xe6\x58\xd5\xa8\x15\x51\x2a\x7a\xe2\x4c\xfa\xae\xe1\x92\x0e\x4e\xcf\xd0\x74\x09\x94\x79\xa7\xe7\x78\x41\xb9\x12\xfb\x84\x2c\x1b\x0d\x64\x6d\x3a\x89\x1f\x5f\x49\x9c\x57\xc4\x20\xcc\x3f\x08\x51\x8e\x2c\xe9\xb2\xd6\x68\xb8\x0c\x6c\xbb\x08\xf6\x68\xf5\x9e\x26\xb9\xe2\x76\x91\x99\x70\x39\xaf\x94\xa1\x95\xb1\x7a\xdd\xa9\x66\xa6\xbd\x66\x8b\x96\xf7\xba\x63\xba\x2d\xbf\xa9\xa5\xdb\x73\x73\xed\x61\xea\x44\x53\x70\x4a\xdf\xd6\x89\xf0\xed\x1a\x48\xf2\xe0\x74\xfb\xa9\x7c\x3b\x4d\xb4\x58\x18\x80\xd6\x93\x6b\x09\x7a\xf5\x15\x6e\xc7\xba\x98\xe6\x3c\x88\x3f\x00\x7c\x08\x11\xf7\x9b\xb5\x6f\x28\xa3\x41\x77\x42\x45\x75\x74\x52\x90\x37\x7c\x6f\xac\xe8\xef\x97\x15\xa4\x7c\xd1\xc4\x26\x09\x2d\xc6\x3f\x0e\xf1\xea\x39\x9a\x87\x95\x70\x14\xa4\x66\x05\x37\xa0\x6b\xdf\x86\x39\x40\xbb\xe8\xdb\xcc\xd2\x21\x46\x9d\x5e\x44\xcc\xdd\x1d\x3f\x49\x98\xa2\x33\x10\x15\xc1\x51\xd7\x65\x49\x93\x78\x6d\x8f\x0a\x1c\xb0\x52\xa3\xe6\xc7\x8e\x9f\xef\x78\x5a\x18\x43\xca\x1d\x26\xe8\xe0\x34\x2f\xda\x4d\x6d\xcc\x8a\x52\x45\x92\x32\x7a\xa8\xb8\xcb\x2d\x08\x6a\x7a\x71\x83\x79\x0f\x81\x70\x02\xcf\x9f\x06\xe2\x44\x82\xe9\x1e\x15\x4c\x3f\xff\x44\xb9\x79\xf1\x60\x2e\x73\x69\x0a\x40\xcc\x07\x4a\x98\x75\xb2\xa3\xe0\x40\x57\x08\x10\x21\x26\x0c\xf4\xf5\x00\x5c\xde\x52\x22\x32\x1f\x50\x86\x28\x7d\x5c\x14\x50\x32\xed\xa9\x58\x8e\xf8\x64\x13\x6e\x09\xf8\x29\x0c\xcd\xc1\xc8\x87\x7b\xb8\xc8\x38\x58\xa7\x1f\xc7\xe8\x05\x2d\x91\x76\x9f\x92\x55\xb1\x2b\xa6\x38\x84\x0b\x39\x87\x1c\x9f\xa9\x1c\xeb\xa4\x71\x20\x12\x6b\x5b\xb7\xc4\x0b\x2f\xb4\x87\x7d\x93\x83\x7b\x84\x7f\x74\x59\x29\xde\xb0\x3b\x09\x46\x1a\x67\x6a\xcd\x8c\xa7\x89\xd9\x17\x85\xd1\xd0\x50\x17\x84\x55\x08\x60\xc7\xb8\x75\x8b\x1f\x78\xae\x1d\x47\x4b\x1e\x00\xcb\x62\x0d\x74\xdb\x65\x1c\xa9\x8c\xee\x14\x04\x81\xd0\x2f\xf9\x4e\x65\xd6\x74\x4c\xd9\x9a\x31\x68\x1d\xb3\xfb\x16\x91\x45\xb1\x5f\x4e\x68\xff\x1e\x84\x12\x37\x14\x2e\x1f\xaf\xd3\xe9\xf3\x87\xf5\x09\x25\xc2\x5b\xee\x83\x4f\x94\x4f\xd8\xc9\x83\x94\xff\x0e\x49\xd4\x55\x3c\x22\x2c\xc3\x6d\x9d\xd6\xcc\x81\x4d\x56\x5f\x92\x0e\x18\x96\x16\xe2\x04\x78\xd8\x38\x43\xbf\x3b\xf6\xd6\x1a\x37\xc7\xea\xd0\x9c\x58\x57\x75\x13\x80\xe1\x9c\x9e\x03\xc3\x83\x91\xc4\xeb\xd8\x0c\x00\x98\x5c\xa1\x52\x10\x61\x79\x9b\xb2\x12\xb3\x79\x59\x03\x47\x79\x5f\x14\x09\x71\xb0\xff\x8c\x6e\x1a\xbf\x56\x63\x04\x6b\xb2\x24\x4a\x7a\xf9\x1e\x3f\xaa\x7b\x00\x33\x0d\x90\x69\x27\x50\x83\x53\xfa\xf1\xbb\x8f\x00\xbe\x8d\xf5\xf8\x09\x50\x7b\x71\x04\x21\xb1\xc4\x9e\xb9\xa4\xa6\x41\x4c\xa6\xc1\xb0\xe4\x86\xb2\xf5\xbc\xa5\xe5\x52\xbf\x85\x45\x8b\xab\xdc\x84\xd0\x2f\x56\xc8\x9d\x4a\x36\x54\x44\x98\x6a\xa1\xc6\xbe\xaf\x9c\xc9\xee\xeb\x83\x3a\x1d\x25\xdd\x7c\x07\x7d\x24\x42\xca\x31\x35\x09\xc6\x50\xd2\x31\x0f\x94\x78\x1c\xdd\x21\x64\xbd\xd7\x15\x90\xf8\xed\x2a\x3d\x41\x29\x32\xaa\xb3\x52\x7a\x73\xea\x20\x7e\x6b\xec\xa7\x41\xf6\xa5\xa1\x0d\x0b\x56\x0e\x77\xf6\x21\xb0\x95\xe2\xd7\x63\x2d\xc3\x41\x5c\xbb\x79\x86\x0c\xbd\x41\xbf\x9e\x5f\x8f\xbd\x14\x56\xe6\x8c\x04\x18\x38\xaa\xa5\x8b\xee\xaa\xde\x5e\x98\x26\xf9\x30\xca\xe8\x5f\x3b\x1d\x07\x20\xb3\x85\x84\xf4\x90\x9a\x8e\xe7\xf6\x21\x7a\xe6\x32\xd4\x6a\x39\x67\xb9\x5b\xba\xdf\x78\x46\x35\x45\xb6\x63\x61\xf0\x7f\x08\x14\xff\xfa\x36\x5c\x03\xd0\x2f\xf9\x80\x16\x00\xe3\x80\xe8\x16\x4b\x7e\x80\x1d\x23\x52\xbc\x74\x1d\x15\x2d\x08\x91\x3c\xa5\xfb\xcb\xc0\xc0\x86\x3c\x62\x3f\xdb\xc8\x4c\xf8\x96\x1e\x3b\x57\x39\xd6\xa0\x6b\x8e\xff\x4c\x51\xde\xc3\x38\x2d\xca\x0d\x33\xe9\xeb\xb6\xe3\x54\x4e\x38\x01\xcc\x85\x69\x29\xc0\xd9\x17\x1d\xe1\xf6\xbe\x6b\xfa\x27\xa3\x82\x41\x4f\x02\x67\xf5\x64\xf7\x8d\x9b\x74\x42\x88\x23\x45\x83\x20\x6e\x94\x14\x36\xc9\xb1\x96\x10\x9a\x40\xce\xe5\xd7\x0a\xfe\x13\xf6\x0d\x4d\xea\xb3\x7c\xd2\x2b\x16\xbf\xaa\xdd\x2c\x5e\x55\xe3\xf2\x57\x03\x8f\x48\x7a\xd5\xfd\xd6\xbf\xd9\x90\xa8\x2e\x1d\xb0\xbf\xdd\x8d\xb0\x22\x05\x67\xe6\x87\x85\x27\x03\xaf\xac\x90\x2f\xbd\x44\x21\x47\xa2\x2e\x7d\x85\x1c\x7e\x7b\x54\x32\xff\x02\x54\x66\x14\x7b\x77\xbf\x60\xe5\x2a\x30\x48\x60\x3b\x59\x7e\x27\x50\xd6\x34\x50\x45\x67\x78\x40\x45\x0e\xcc\xc4\xcb\x3b\x7c\xdb\xf5\xb6\xba\x8b\xac\x3f\xed\x68\x0d\x0b\xd3\x8e\x4b\x54\xde\x24\x4c\x61\x40\x3b\x17\xfd\x5b\xa5\x6e\xd9\x5a\xaf\xe8\x7f\x59\x1e\x04\xa1\xb4\x42\xda\xc6\xaf\x6b\x3d\xb3\x17\x5e\x68\x17\x36\x69\x95\x27\xb6\x68\x9a\xe8\x86\x67\x5d\x95\xad\x1d\xa6\xc3\xb5\xac\x2c\xa9\x65\x4a\x80\x9c\x0d\x89\x1d\xbf\x56\x38\x9c\x55\x6b\x97\x77\xfa\x60\xf8\x2a\x15\x77\x58\xf1\x97\x69\xcb\x21\xaa\x5d\x1e\xeb\xae\xb7\x52\xd6\xe7\x56\xb1\x98\x00\xd2\xf6\x63\x2f\x15\x85\x54\xba\xe4\xa0\x2b\x66\x10\x15\x6b\x2b\x51\x1c\x3b\x95\x55\x19\xbb\xd0\xe7\xc8\x06\xf0\x8d\x65\xbb\xb8\xb6\x87\xfe\x13\xa2\xfa\x3b\xd0\x5e\xc2\x76\x87\x6d\x39\x0e\x82\xdb\x9a\xc9\xb8\x31\xae\xda\x73\x2f\x4c\x33\xb0\xfa\xd3\x1d\xaf\x40\xca\xc6\x42\x42\xc2\xa1\x8b\x72\x38\x23\xc7\xa7\xb8\xab\xc8\x50\xef\x68\x55\xab\x7a\x16\x7c\x70\xfa\x50\x3b\x8f\x06\x51\x6c\x32\x81\x0a\x8b\xfc\xb3\x37\xa5\xbf\x50\x8b\x3d\x33\x07\xda\x66\x60\x93\x2e\x53\xaa\x59\x69\xb2\x2a\x3b\xa9\x73\x51\x16\x82\x13\x39\x37\x3f\x71\xbb\x19\x28\x7b\xf7\x73\xb5\xcd\x38\x3b\xdb\xce\xc9\x10\xce\x95\x5d\x90\x9d\x11\x77\x93\x7a\xd9\xb3\xbf\x9d\x17\x66\x6d\xd2\x93\x72\x7f\x8c\x9b\x8c\x30\x77\x07\xa7\x2d\x0a\xd3\x23\x8a\x02\x59\xff\x6a\xca\xe1\x56\x00\x93\x63\x8b\xa6\x40\x85\x7d\xf4\x73\x91\x02\x5d\x19\x6f\x71\x19\x78\x7e\xbe\xac\xf2\x26\x55\x7c\x64\x7e\x28\xcb\x36\x07\x2d\x6d\x57\xe0\x89\xc9\x27\x3d\x8b\x39\x21\xf4\xc0\x40\xa4\xf2\x11\x2e\xee\x2b\xed\x67\xce\xa8\x44\x2c\xc4\xb7\x73\x0a\xd7\x6e\x41\x24\xf9\x2b\x2c\x77\x7e\xa3\xf4\xaf\x42\x13\xf3\xac\x19\x77\xea\x0f\x95\xcc\x3f\xf7\x40\xc5\xa7\x54\xeb\xf4\x2a\x96\x39\xc1\x3e\x06\xc2\x4f\x9e\xd1\x13\xd5\x4d\xdd\x6f\xac\xeb\x39\x3c\xdd\xfe\x85\x99\x7d\xcf\xee\x3b\xb0\x7f\xbb\xa7\x50\xdc\xd4\x5c\xde\xb7\x2a\xe2\x02\x63\xb5\x4a\xaa\xe2\x77\x54\x19\x20\x09\x78\xbc\x46\x43\x3c\x38\x4d\xb2\x48\x2d\x05\x4a\x18\xfb\xc9\xd6\x71\xa5\xec\x92\x99\x90\x3a\xb3\xd8\x8b\xa7\x54\xa3\xed\xaf\x2a\xd1\x42\xc9\x33\xa1\x23\x10\xf5\x4c\x91\xa2\xc7\x87\x48\xf5\xae\x8a\x5a\xef\x7a\x4b\x6f\x93\x84\x4a\xc8\x09\x67\xe3\x19\x25\x07\x76\x46\x3f\xc1\x74\x79\x2d\xdd\x89\x50\x23\xe5\x6b\xe5\x12\x1c\x2f\x14\x3c\x0d\x51\x4e\xa5\xa7\x24\x67\x78\xf9\xd1\xd8\xbe\x27\xb4\xcf\xe6\xe9\x40\xd5\xee\x3f\xad\xcd\xbb\xf7\xcd\xb5\x6d\xb7\x67\x39\xce\x55\x5c\x33\xf9\x8d\x9a\xc1\xe7\x45\x66\xcd\xc0\x76\x27\xbc\x13\xe3\x79\xe5\xc9\xb0\x49\xf3\x78\x7c\xed\x25\x27\x63\x12\xa6\x83\x61\x91\xa5\x71\x6c\x33\xb4\x02\xd0\x0a\x7b\x5f\xdb\x9d\x04\x0a\xee\xf5\xba\x9b\x3f\x0f\xb3\x74\xd4\x9d\xf4\x1d\xd4\x09\xa4\x61\xae\xbe\x76\xb8\xd5\x73\x0a\x3a\x7b\xcc\xf5\x7a\x86\x91\xb3\x54\xc7\x8d\xbc\xb6\x55\x83\xe0\x59\xc6\x8c\x3d\x50\x9b\xf1\x91\x02\x5d\x2f\x1a\x58\xcd\x74\x43\x5e\xc0\xaf\x15\x49\xa7\x6b\x78\xff\xb9\xd4\xca\x2b\x4b\x37\x68\x35\xce\x53\xad\x28\x47\x9f\xa4\xf0\xb4\xe0\xf9\x4d\x03\xfc\xa6\x3d\x88\x92\x51\x1e\x8e\x62\x4b\x2d\x29\xb4\x28\xb8\x95\x8d\x16\xdd\x19\x64\x71\xa8\xdf\x3f\x54\x2d\x83\x56\xc7\x2f\xfb\x2f\xda\x62\xa7\xd6\xcf\xf0\xb2\x47\xa7\xc6\x9e\x2e\xc6\xde\xc4\x38\xc1\x51\x76\xa2\xde\x79\xa8\xe3\x71\x67\xac\xb0\x80\xbc\x82\x1b\xab\xd2\x3b\x72\x52\x41\xa3\xb8\x88\xca\x3a\x1a\x84\x68\x1c\xba\xd8\x05\xfc\x5a\x15\x36\x79\x98\xae\xa2\x81\x35\xe3\xa6\x98\xaa\x43\x7b\x3a\x78\xa2\x41\xe9\x27\x57\xde\x8b\xd0\x70\x94\x29\x83\xd2\x60\x4b\xb3\x8c\xd4\x3e\x9f\x77\xb9\x0f\x46\xbf\xd8\x89\xb7\xe9\x2e\xe0\xca\x27\x3a\x0d\xb4\x75\x6a\xde\x01\x11\x82\x96\xc4\x06\xa5\x9d\xfc\xba\x52\xc2\x65\x66\x11\x23\x72\x36\x7f\x19\xfb\x98\x78\xba\xc9\xbd\x2a\xb3\x79\xd4\x1d\xd9\x4a\x8b\xf6\xf7\xc7\xaa\x45\xfb\xfb\x4d\xe2\xec\xc3\x34\x5e\x1b\xe6\x54\xed\x08\x3a\x4a\x09\x63\x9f\x6e\x94\x23\x1e\x94\xf9\xd6\xda\x04\xad\x11\xa7\xdb\xe3\x6c\xe9\x2e\x28\xef\xe2\xaf\xd5\x06\x77\xcf\x2f\x4c\xb7\xf3\x51\xd6\x13\x62\x3b\xa3\x5d\x02\x8d\x9f\x7d\x58\x45\x89\xb5\x98\x51\xa0\x4e\x54\xdc\x09\xd5\x36\x89\x97\xf2\x03\x62\x42\x17\x3a\x1f\x5f\xd3\x6a\x89\x5f\x6b\xc0\x72\xe3\x2c\x2a\xcc\xb2\xc0\x87\xb0\x42\x6f\x29\x5b\xd5\x5b\x4d\x70\x87\x28\x49\x6c\xd6\xf2\xdd\x6a\x0c\x27\x44\xa4\xa4\xe9\xce\x99\xe1\xd0\x1a\xf0\x50\x84\x86\x55\x5e\x8f\xd0\xb3\x94\x5a\x58\xba\x4a\x2a\xf8\x4c\xe7\xa5\x0f\x86\x5c\xd2\x6e\x12\x88\x70\xb8\xc8\xf2\x59\x0b\x12\x94\x1e\x9c\xf8\x26\xab\xfa\xf3\xeb\xb8\x01\xce\xeb\xc7\x4f\xa4\x1f\xa5\x8c\x12\x55\xde\x66\xf0\xb8\x9f\x26\xa7\xa3\xa4\x4b\x45\x78\x45\x12\xe9\xbc\x52\x8d\x07\x89\x5f\xcd\x38\x64\x90\x32\x59\x23\x85\xcf\x1c\x68\x87\x36\x29\x32\x13\x33\xd3\xc8\xe1\xc3\x9d\xa4\x0e\x37\x5c\xc5\x76\xb2\xa1\x25\x9d\xf9\x96\x34\x9a\x81\x7c\xe4\xf3\x9b\xc0\x23\x57\x09\xe1\xce\xf3\xcb\x26\x3b\x2d\xa7\x37\x58\x3e\x8d\x84\xf9\x7c\xd8\x58\x8f\x76\x14\xc4\x77\x92\x3a\xb8\xce\x48\xc0\x2b\x53\x7b\x7b\xc9\xd8\xbe\x34\x82\xda\x30\xb3\x25\x71\x19\x42\x9d\xdc\x5a\xaf\x94\x29\x66\x94\x14\x59\xda\x1d\x85\x12\xb4\x99\xd3\x17\x54\xdc\xd7\xeb\x40\xd2\x7c\x94\xad\xd8\x35\xf9\x23\x34\x06\x58\x75\x96\xdf\x28\x4e\x5e\x66\xf3\x74\x94\xb1\x85\x0a\x6e\x30\x0b\x2e\xf1\x9b\x46\x6a\x80\x43\xb6\xeb\x42\x8a\xd3\x27\x41\x81\x35\x99\xe2\x84\x36\x61\x20\x09\xca\xba\x8f\x54\x2e\xb8\xa7\xa3\x81\x90\x5b\xff\xfa\xa9\xa7\xda\x54\xbb\x29\x46\xf4\x25\x85\x04\x62\xa9\x49\xb6\xdc\x1e\xef\xf1\x48\xf8\x30\x9c\xf0\xf3\x6f\xf4\x5d\xb0\x3b\xb8\x0f\x2c\x9c\x60\x9f\xb0\x76\x4d\x61\x27\x55\x01\xf4\xaf\x02\x4f\x2c\x3d\x4b\xd1\x8b\x5f\x6b\x5c\xda\xbf\x6a\xe0\x1f\xb5\x87\x76\x38\xe4\xc9\x2c\x9b\xbf\x12\xda\x4a\x8c\x60\x1b\xc2\x4b\x9e\xc6\x51\x18\xf9\x96\x2e\x2b\xad\x06\x1e\x36\x70\x5b\x59\x83\x1f\xf6\xa3\x6f\x33\x4a\x0c\xee\x2c\xda\x82\x77\x14\x81\xf6\x22\x75\x5d\xd0\x4a\x3f\xe9\x4e\xc9\x30\x1d\x0c\xa2\x02\xa9\xbf\xeb\xd1\x31\x77\x04\xa7\xc0\x61\x45\x78\x3f\xd7\x70\x8e\xcc\xb7\xbb\x56\x19\x62\x4a\x56\x55\xde\x21\x31\x94\xab\xaf\xce\x30\x5d\xb1\x99\xc3\x74\x09\x33\xdf\xc3\x6c\xeb\x4a\xdf\x33\x07\xda\x76\x94\xa5\x43\x6b\x92\x7c\x42\x93\x84\xb9\x41\x83\x98\xc4\x84\x25\xc1\xad\x7a\x79\x27\x16\x0e\x64\x5f\x24\x21\xbb\x29\xe2\x5b\xed\xac\xdb\x37\xd7\xee\x46\x36\xb7\xf1\x44\xc5\x22\xc5\xef\x10\x80\xee\x84\x96\xe0\xa7\x77\xc3\x28\x4e\x0b\xb0\x1c\x50\x48\x83\xbb\x83\x21\xc4\x77\xc7\x15\xc9\x4e\x4f\x8e\x99\x22\x85\x1e\x3c\x9e\xb3\x63\x8d\xbd\x6f\x40\x89\x9b\xd0\x74\xed\x20\x0a\x5b\x9e\xbf\x79\x4a\x71\xa9\x4e\x35\xce\xf4\x5e\x4c\x19\x3e\xed\x54\xb1\xfc\xe1\xa3\xaa\x93\x99\x7f\xfc\xeb\x24\x49\x28\x5d\x59\x0c\x5d\xc4\x96\xcb\x97\x03\xb7\x74\x0f\xea\x5d\xd5\x32\xc9\xa4\x88\x66\x88\x64\xe0\x27\x9e\xa7\xd5\x06\x8b\x4d\x61\x77\x68\xb6\xed\xed\x40\x2d\x86\x0d\x65\x32\xba\x9d\x24\x03\xf1\x0b\x26\x88\x07\x28\x46\x51\x74\x39\x88\xb1\x4c\x87\x16\x9b\xac\xad\xeb\x74\x5f\x99\xef\x0c\xd3\xac\xb0\xdd\x49\x35\x6b\x62\xf7\x0a\xfc\xd5\x6d\x85\xa2\xbc\xa0\x39\xb4\x7f\x5d\x0b\x63\xf3\x0b\xf3\x34\x9a\x43\x66\xe6\xca\x43\xb7\xe6\xeb\x81\x6f\x6e\xae\x4d\x12\x94\x2d\xa5\xd0\xac\xf8\x63\xef\xa9\x68\x9c\xa7\x6b\x8b\xe5\x32\x6f\x95\x2b\x42\xdc\x23\xcb\x47\x22\xe6\x91\x7e\x59\x17\xd6\x84\x18\x47\x3c\xf3\x3c\xcf\x08\x00\xaa\xe2\xd7\x7a\x59\x8e\x6c\x56\xa4\xad\x2a\x95\xa0\xc2\x32\xd0\x76\xb2\x49\x37\x2a\x4f\xf3\x32\x97\xf2\x99\x5e\xe0\xb1\x22\xa7\x5d\xb5\xd9\x8d\x72\x64\x29\x93\x7e\xe8\x78\x7c\xac\x1c\x42\x00\xd8\x72\xdd\xbc\xd9\x59\x51\xcf\x70\x1a\xb5\x85\x0d\xfb\x49\x1a\xa7\xbd\xc8\xe6\x53\x95\xb1\x9e\x52\xd1\x7c\x0b\x4f\x9b\xbd\x6d\x34\x31\x71\x07\xe3\x27\x80\xeb\xdf\xd3\xd1\x49\x71\x1e\x65\x2d\xad\xc3\xc5\x97\x2c\x9b\x5e\x77\x32\xc2\x08\x30\x1b\xa9\x9e\xca\x07\x25\x55\x95\xc7\xcd\xc1\x4d\x5c\x89\xfb\x9e\x47\xf3\x54\x46\xfa\x0d\xf2\x74\x2f\x8e\x06\x43\x39\x24\xd1\x01\xda\xd0\xbc\xb5\x0d\x27\xab\x0c\x01\x27\x27\x39\xca\x20\x45\x5c\xb7\x20\x16\x7d\xcd\xb2\x64\xa2\x2c\x5e\x9b\xac\x70\x69\x3c\x7d\xe6\x2d\x05\x4f\xf9\xe1\x58\x61\x10\x6b\x21\xbc\xac\x32\x4c\xb8\xec\xad\x96\xc5\xe0\xbe\xa5\x9c\x54\x1b\x54\x2b\xd7\xac\xc9\xe2\x94\xe7\x24\xc8\x15\xcf\x68\xda\xfd\x19\x4d\xa9\x11\x85\x4b\x8f\xb0\x86\xfc\x8c\x03\x0b\x3a\x7f\xa0\x13\x81\x17\x24\xaf\x77\xcc\x67\x67\xdb\xdd\x35\x2b\xcf\xb4\x91\x2b\xf0\xb0\x5b\x55\xd9\x20\x4a\x4c\x4c\x66\x4b\xe0\x75\xec\xee\xf8\xd6\xc6\x79\x45\x1d\x60\xc4\x97\x38\x50\xe3\xc3\x45\xa3\xd4\x93\x3c\x4c\x18\xa6\x83\xa1\x49\x78\xdb\x0b\x3c\xa5\xe5\xd4\x15\x78\x28\x8e\x7f\xbc\x18\x82\x52\x82\x86\xd1\xdb\x81\xc2\x8e\x0a\xa3\x87\xff\xd3\x58\x21\x7e\x2e\x8c\x9f\xac\x92\x4a\xc2\x34\x49\x6c\x58\xa8\xae\x0f\x91\x73\x9e\x95\x37\x4e\x9b\xa2\x48\x47\xbd\xbe\xcd\x8b\x16\x91\x96\xe5\x8b\x5a\x73\xbe\xcb\x2a\x6d\x91\x22\x33\x49\x8e\x60\xd8\x52\x34\x9c\xab\x81\x32\x34\xbb\xaa\x8a\x8b\xff\xf4\x57\x3f\xd7\xf2\xb4\xae\xd3\x63\xaf\x38\x77\xba\x02\xa8\x5f\xb1\x24\xa9\xbd\x77\x86\x83\xda\x7d\x15\xe0\xee\xab\x7f\x99\xdb\x6c\x45\x46\x42\x0e\x9c\xe4\x84\x8d\xce\x06\x15\x4b\x24\xef\xc7\xfb\xee\xd8\x17\x1c\xe9\xd2\x52\x14\x46\xa4\xb4\x5b\xe6\x65\x92\x14\xfb\x29\xe8\x71\xed\xec\x5f\xf4\x6d\x62\x14\x0d\xe5\x03\x3a\x91\xa5\x16\xf1\x47\xd7\x8b\x26\xf9\xec\xa4\xb2\xae\xbb\x10\x28\x93\xef\x0d\xb4\x64\xb5\x34\x84\xb4\x32\x1a\x38\x9b\x43\x9b\x0e\x63\xb1\xbd\x16\x47\x1c\x85\x69\x7e\xb4\xe3\x51\xa4\x1b\x4a\xa8\xb7\x62\x10\xb4\xd9\x84\xdb\x83\x26\x1b\xb6\x2a\x42\x1e\x54\xcf\xf9\x75\x8d\x24\x54\xa6\x68\x65\x11\x61\x46\x65\x70\x49\x70\x36\xb3\x0c\xe4\xd8\x63\x4e\x6e\xd4\x38\x92\x65\x19\x66\x0a\x93\x17\x59\x3a\xec\x73\xb2\x51\x81\x45\x09\x90\xca\x0b\x9a\xae\xd8\xa4\x67\x21\x9f\x5d\xfe\xbc\x26\xe2\xb8\x0f\xb9\x61\x9a\x0d\x3f\xfb\x89\xf2\xf9\x3a\xc9\xbc\x67\x9e\x67\x6e\x35\x8b\x46\xa3\x04\xc3\x56\x75\xea\xbf\x6e\xb8\xc9\x48\x28\xdc\xd0\x3f\x45\x57\x8d\x21\xf5\x08\xca\x52\x0d\xab\x49\xff\x69\x8c\x50\x31\xf3\xbd\x86\xe3\xdf\x75\xa4\x1c\x81\xf0\x2f\x68\x3d\x82\x4d\xc3\xd2\x66\xb2\xa1\xfc\x39\x5d\xe6\xb0\x64\x16\xe5\x15\x2e\x01\xe5\xe7\xd7\xaa\x0d\x44\xf8\x33\xcb\xd4\x25\xfc\xf8\xbf\x54\x54\xa8\xbb\x4a\x28\xe4\xe4\x58\x2f\xc0\xa6\xf3\x84\x70\x1b\x8c\x9f\xc5\x50\x00\x90\x19\x95\xd2\x88\xa9\xf7\x31\x35\x89\x4d\xc8\x90\x16\x39\x8b\x68\x82\x3e\x00\xdc\x0f\xbf\xe9\x48\xa5\x6b\xe2\x38\x5d\xb5\xdd\x9d\x5e\x21\xfc\x82\x7a\x04\xc8\x02\x1d\xcb\xb0\xfc\x36\x24\x67\x7f\x1a\x78\x12\xf0\xec\x13\x68\xcb\x09\xba\x52\x7b\xb3\x2b\x31\x8f\xa3\x63\x0f\xbe\x0a\xad\xef\x9a\x62\xb5\x00\x33\x83\x5e\xc2\x2b\x63\x0f\x1a\xf1\xca\x14\xe9\x62\x5e\x98\x30\xd6\x53\x9b\x0d\x35\xb5\xd9\xa8\x00\x1d\xbb\x23\xbb\x83\x2e\x5e\x7a\x43\xf4\x43\x10\x68\xf6\x20\x7f\x44\xfa\x76\x97\xa7\xe6\xa8\xcb\xcf\x28\x75\x55\xc0\xa9\xf0\x8b\xae\xd1\x5d\xc7\x4e\x3d\xee\x25\xca\xa3\xd8\xe6\x45\x9a\x88\xc0\x99\x1c\xf2\x1e\x1b\x5b\x8f\x17\x7b\xf7\xb6\xcd\x20\x1d\x25\x00\xdd\x39\xb2\x80\xd3\xdb\x3f\xdb\x04\x76\xed\x9a\x81\xe9\xc9\x34\xc4\x49\x69\xf8\xa9\x11\x38\x19\x18\xb1\x9e\xaa\x95\x99\x33\x07\xca\xff\x5d\x36\xfd\xb2\xd6\xa4\x5b\x8e\x20\x85\x39\xbe\x76\x1d\xab\x4b\x72\xf7\xb2\x68\xc8\x9e\x8e\xce\xa3\x4d\x19\xb6\x35\x88\xd1\x3d\x4b\x67\xe7\x88\xa9\xf3\x62\x69\x55\x7e\xba\x78\x5d\x35\x69\xb7\x2d\x96\x8b\x90\x6e\x89\xc8\xdc\xd1\xb5\x8a\x76\x9b\x7e\xb4\xa1\xcd\xf6\xa8\x95\x78\x04\x2b\x51\xd4\x63\xca\x23\x09\x67\xc8\x61\x0a\x1f\x18\x62\xdc\x1c\x2b\xcc\xc3\x29\x3a\x68\x90\xb1\xb2\xfa\x22\x90\x19\x9b\xca\x5e\xe4\x21\x78\xf0\x60\x1b\xbc\xa7\x8a\xeb\xef\x23\xaa\xb0\xd0\x89\x1a\x67\xfe\x58\x31\x35\x62\xdb\x93\xfd\xe7\x7c\x84\x02\x0f\x71\xf9\x18\xdf\xe6\xbe\x29\xac\x19\xb5\xaa\x33\x2f\x0f\xdf\x54\x12\xc6\x84\xc5\x1f\x65\x76\xa7\xbf\xaf\xdf\xa4\xba\x01\x5b\x98\x73\x66\x67\xb2\xeb\xf0\x52\xc0\x8e\x70\xe9\x49\x17\xe5\x9c\x9e\xf7\xee\xe5\x7c\x7f\x1d\xd0\x41\x90\xa5\x8f\xd4\x20\xfd\xcf\xcf\xb7\x97\xa4\x1a\x72\x6a\xa5\x0b\xd3\x4e\x4e\xc8\x9f\xc5\xa4\xc7\x87\xce\x39\x12\x98\x63\x1a\x3a\x79\xac\x56\x86\x97\xc5\x6e\x68\x87\x05\xdc\xf0\x04\x12\x45\x8f\x01\xb7\xfe\x12\x4d\xfc\x45\x19\xb7\x91\x17\xb8\x44\x96\x0e\xee\xd0\x64\x08\x76\xe0\xe3\xef\xe5\xda\xad\xa7\xbf\x5b\x31\x5e\x19\xc2\xb9\x47\x3b\xdf\x95\x13\xb5\x4d\x09\x6b\x7e\xd3\x8d\x52\xe5\x32\xff\xdb\xca\x65\xfe\xb7\xb7\x52\xa3\x16\xe6\xdb\x07\xa7\x1f\x46\x89\xed\xd4\x78\x9c\xfe\xcb\x65\x1c\x5c\x78\x02\x37\x94\x4e\xf0\x09\x7a\x62\x22\x04\x5d\x26\x40\x8e\x84\xa0\xca\x2b\x7a\x62\xa8\x8e\xdf\xd1\x94\x24\x06\xf0\x29\x17\x84\x39\x87\x5c\x22\x48\x91\xc8\xff\x28\x27\xa8\x1b\xb4\x6f\x58\x3d\x9e\xda\x16\x58\x60\x77\x9b\xc6\xf5\xc3\xd8\xac\x09\x46\x0e\x4d\x24\xd0\x89\xf9\xb5\x16\x40\x8f\x92\xe5\xb2\x2c\x4d\x70\x9a\x61\x67\x43\xa9\x1f\xdf\xf5\x01\x7e\xb8\x58\x88\x34\x59\xa3\x0f\xe3\x48\x50\x92\x8e\x22\xa1\xc0\x74\x67\x9a\x6a\x97\xbe\x49\xba\x51\x68\x86\xca\x46\xe7\x88\xea\x42\x1e\x51\xc9\xea\x92\xcd\x12\x93\x74\xab\xa6\x38\xea\x6e\x1e\x51\x6d\x70\x2f\x91\xd5\xf2\xb9\x2d\x17\x17\xfc\xa6\x53\x5b\x69\xcf\xed\x2f\xff\xce\xf4\xd2\x84\xfe\xc8\x41\x75\x95\x41\x49\xa0\xac\x90\xd2\x51\x8c\x98\x88\xe1\xeb\x77\x29\x95\xe5\xd7\x15\x46\xf5\xa8\x97\x6b\x51\x93\xdf\x42\xf0\xe4\x37\x8d\xc9\x5e\x9a\x90\x06\x9c\x9b\xe9\xa3\xfb\x71\x56\x51\x87\xce\xd6\x54\xef\xf7\xee\x6d\x77\xa3\xbc\xc8\xa2\xc5\x51\x91\x3a\x77\xe3\x8a\xcb\x18\xbf\xa9\x1d\x41\x22\x8d\x64\x06\x69\x98\xd2\x17\x22\x2b\xbb\x88\x6b\xe7\x37\x81\x32\x5a\x32\x49\x97\x26\xc0\xf3\x28\x6c\xcf\x7e\xaa\xe3\x79\xc4\x1f\x29\x93\x89\x47\xd6\x95\xe7\x9b\xb5\x03\xdb\xdd\xae\x90\x37\x17\x14\xc6\x6a\x7b\x47\xc9\x8c\x31\xed\xc0\x81\xe4\x9d\xdd\x21\xa6\x48\x1f\x07\x98\x27\x32\x3d\xe7\xd5\x1a\xd9\x27\x91\x56\xb0\x61\x5d\x6b\xba\xdb\x3d\x50\x79\x43\x71\x15\x3e\xb5\xae\xec\x79\x4f\x69\x6c\xcb\x19\xaf\x1f\x1f\xfe\x22\xa6\x0d\xa2\x53\xa2\xaa\xa1\xa1\xcd\xa0\x1d\x4f\xc8\x5a\xb7\x84\xca\x4b\x53\x79\xda\x21\x71\x4e\xd5\x8b\xeb\x3a\xe7\x3a\xca\x33\xf9\x59\xb9\xa5\x5a\x20\xf9\x16\x7e\x15\x8e\x8c\x87\x3a\x65\xaa\x8e\x6e\xf1\x5d\x75\x8e\x5f\x46\x4a\xe5\x66\xd6\x07\xa7\x19\x41\x02\x1a\x22\x72\xa8\x1b\x14\x3f\x64\x69\x7f\x9c\x60\x56\x61\x5e\x6a\x29\x2b\xc6\xf3\xaa\xf5\x78\x5e\xb5\x2b\x47\x6b\xf9\x0e\xca\xf5\x91\xe8\xf0\x45\xbb\x06\xef\x97\xbf\xc0\xc9\xed\x79\xad\x0e\xb0\x1b\x37\x12\x39\xf6\xa3\x1d\xaf\xf4\x78\x53\x91\x04\xf6\x28\xb6\xe4\xd0\x26\x21\xc0\xdc\x8e\xb6\xea\x0e\x30\xc0\x42\x10\x33\xef\xd7\x28\x22\x0b\xd3\xed\x51\x62\x62\x92\xae\x05\x1f\x59\xc4\x17\x5b\xca\x02\x83\xee\x33\xeb\xb6\x2b\xd7\x81\x07\x3a\x3e\x7b\xe8\xda\x38\x5a\xe1\xf1\xa1\x00\x44\xca\x8f\x10\x68\xd9\xd6\x23\xf9\xa9\xa7\xda\x45\x3a\x68\xf9\x9e\xfa\xbb\x63\xe5\x87\xf5\xee\xc7\x1a\x88\x87\x66\x60\x33\xd3\xf2\xe8\xc0\xf3\x81\xc2\xf4\x68\xc9\x9d\x5e\x59\x00\xb1\x37\xbe\x0c\xba\xe8\xfc\xe0\x37\xea\x29\x7d\xe1\xb9\x2f\xa2\x8d\x8e\x25\xf3\x63\xe5\x9a\xc5\xbb\x1d\x99\xc5\xd5\x06\x75\x81\x76\x16\x75\xb7\xf4\xa6\x4e\xa9\xde\xd4\x29\x85\x2d\x1f\x98\x11\x64\x9c\x79\x31\xd3\x3f\x93\x85\xed\xb7\x4b\x37\x5a\x5a\xb2\x99\x7b\xa4\x0c\x68\xa8\xa8\x43\x95\xdb\x08\x41\xe1\x5b\x0d\x16\x81\xfb\xdb\xb1\x19\xf5\xfa\xee\x57\xb9\xd2\xd4\x9b\xd4\xd4\x66\x57\x07\xa7\x67\xda\xf9\x28\xec\xb7\xe8\x58\x66\x72\x86\x4a\xff\x36\x3f\xd6\x50\x27\x1a\xd8\xb8\x6b\xa8\x1b\xdc\xd8\xb7\x6d\x38\x14\xbb\x99\x82\x79\x88\xbe\x0f\x2d\x32\x7e\xa3\xd8\x46\x7d\x53\x64\xd5\x46\xd0\x86\x6e\x04\x6d\x8c\x3d\xf6\x01\xa9\x58\x59\xdf\xe7\x53\xca\xab\x06\x38\x43\x86\xd8\xfb\xa8\x16\x5c\xa8\x82\x1f\x11\x67\x10\x03\xae\x28\x61\xa5\xd0\x64\x51\x68\x8a\x51\xc6\x88\x17\x21\xec\xd3\x8f\xe0\x37\x8d\x6e\xf4\x51\x6f\x94\x89\x1e\x22\x80\x1a\x57\x30\x8d\xc3\x53\x7c\x4b\xd5\x6d\xa7\xdd\xc4\xab\x67\x13\x0a\x96\xf2\xec\x04\x6f\xe7\xe7\x0d\x77\x6a\x87\x1c\xb1\x87\x93\x30\x8a\x23\x53\x90\x13\x9a\x43\xc6\x9d\x50\x48\xf9\x13\x2a\xd7\x1f\x98\x38\x4c\xe3\x01\x26\x88\x90\x0d\x7a\x65\xac\xbc\x58\x30\x61\x66\x66\x12\x36\x98\xd0\x94\x1a\xc0\x81\x2b\x91\x2d\x54\xfb\xe5\x88\x6e\xbf\x1c\xa9\xdd\x9a\x03\xcf\xb5\x17\xd3\x38\x2f\x58\xc0\x52\x44\xb5\x29\x97\x94\x1e\xc3\x93\xaa\x0b\xe3\x4f\xfd\x09\xe5\xa3\x75\x5a\x69\x3e\xa1\x85\x2f\x42\xa8\x5e\x2a\x7c\x68\xf2\xdc\x26\x3d\x9b\xa1\x3c\x71\x56\x1b\xfb\xe6\x1c\x80\x4f\x8c\x15\xba\x9c\xa1\x21\x69\xbd\xa7\x6d\x4d\xee\x95\xcf\x46\x67\xc5\x9f\x6f\xff\xca\x76\x4f\xd4\x60\x61\x22\x64\xb8\x27\x34\xd2\xf8\x12\x21\xd2\xf8\x5f\xa9\x39\xf0\x0f\x70\x7f\xf0\x17\x37\x2b\x0e\xba\xbd\xbe\x60\xc9\xdd\xc9\xee\x34\x3e\xbf\x8f\x2f\x62\x35\x32\xd5\x16\xcc\xcc\x1a\x2a\x16\xa1\xc3\xb5\xe6\x3c\x1b\xee\x61\x35\x63\x5c\x89\xb8\x2c\x06\x28\xff\x1c\x7e\x2c\xbf\xa9\xed\xef\x7d\x73\xed\x61\x96\xf6\xa3\xc5\x08\xec\x05\x47\xbc\x66\x87\x6f\x7e\xa3\x58\xb1\x4b\x69\x66\x07\x69\x8e\xf9\x37\x86\xe4\xd0\xf9\x41\x97\xe5\x87\xf8\x3b\x70\xaa\xae\x34\xfa\xab\x94\xcb\xd8\xfa\xc6\x2f\xef\x1a\x45\xa4\xb9\xa2\xd8\x70\xf4\x8f\x87\xc5\x0e\xba\x2d\x4e\xb8\x6e\xef\x5e\x9f\xa7\x29\x45\x3b\x7a\x16\x02\x76\xf4\xf3\xf9\xe3\x74\xd8\x23\x1e\xdc\x56\xf2\x1e\xc7\x55\x67\x6a\x94\xac\xa6\x59\xd1\x07\xc0\x07\x39\x10\x1c\x24\xf9\xb5\x83\xd5\x8d\x92\x6c\xc4\xde\x97\x38\xee\xdf\xa4\x6f\xe2\xd7\xe3\x27\xd4\xa3\x88\xf2\x62\x94\x45\x2f\x63\x69\xca\x51\x76\x3a\x50\xfc\x9b\xd3\xe5\x42\x96\xce\xfe\xa8\x48\x07\xa6\x88\x42\x34\xc7\x64\xda\x49\x2b\x96\xdf\xd4\xe0\x8b\x33\x07\xbc\xcb\x2c\x42\x1c\x54\xad\x99\x85\x33\x56\x9e\x1f\xda\x0b\x7d\x71\xf4\xf2\xcb\x65\xd0\x9a\x9d\xdd\xef\x2c\x16\x5a\x4e\xb6\xb1\xd5\x51\x9d\x94\x2b\x9a\xac\x65\xf3\xa2\xcc\x7d\xdd\xe1\x76\x3f\xf0\x62\x4f\x48\x5b\xf0\xff\x7f\x50\xee\x6d\x19\x0f\xf6\xd3\x2c\x1d\xf5\xfa\x4b\x26\xb3\x2d\x8f\x5c\xff\x51\xe0\x47\xfa\x3f\x52\x10\xdb\x7c\xb4\x18\x47\x34\x33\x69\x29\xf7\x96\xab\xb4\x9f\xf9\x75\xad\x02\x23\xa9\xa3\x51\xe2\x56\x94\x20\x4c\xd5\x56\xaa\xeb\x2a\xcc\xce\xb2\x67\x13\x9a\x57\x68\xf9\x6e\xaa\x19\x00\x44\x4d\x25\xd7\xda\x52\x34\x7f\xf9\x0b\xed\x17\x5e\xd8\x51\x5e\xbd\xb4\xcc\x5b\x8e\x6e\x7f\x51\x37\x62\x8e\x23\x1d\xe1\xe6\x24\x2d\x72\x15\x8a\xe7\x7d\x28\x3e\x38\xed\x3c\xce\x1f\xae\xd0\xbd\x0a\xfb\x90\x67\x6b\xb2\x06\xb0\x30\xb3\xbd\x19\xd6\x71\x3e\xda\x10\x7d\x8e\x51\x41\x2e\x88\x12\x3f\x1c\xdb\xd5\x51\x90\x9d\xdf\x18\xab\xdf\x79\x5e\x3b\xa1\x9c\x56\x2a\x44\xa7\xc1\x51\xe3\x6f\xd4\xa8\x80\x1f\x8d\x55\xbb\xf2\x9b\xaa\x46\x1a\x8c\x32\xd1\x01\xc0\x8f\x63\xf1\x68\x7e\xe3\x1a\xa7\x65\xd8\x1f\x0d\xe4\x09\x54\xbc\x1e\x11\xff\x3f\x22\x95\xdf\xf3\xee\x0f\x5e\x34\x61\xba\x98\xa7\x09\x83\x2f\x50\x5c\x7f\x4f\xa9\x4f\xbc\xa7\xb3\x92\x13\xc1\xe3\x35\x98\xfa\xc1\x69\x1c\x13\xdc\x44\x42\x70\x94\x8e\x52\x93\x86\x4f\x96\xe6\x96\xa6\xca\x68\x55\xc0\x1f\x17\x37\xf6\xac\xd2\xcf\xb9\x81\xc5\x06\xc8\xe8\x44\x0d\x4f\xbb\x77\x2f\xb7\xdf\x15\x8c\xee\x04\x96\x09\xbf\x69\xc8\xd5\x0e\xb5\x17\xd3\x2c\xa9\xe8\x99\x07\x4a\xcf\xbc\xa9\xa7\x50\x96\xfd\x3c\x90\x92\xe5\x04\x2e\xbd\x3c\xe4\x26\xc3\xac\xcc\xe4\x7d\x99\xf7\x32\xae\x02\x51\x47\x40\x16\x35\xc1\xae\xf9\xf2\xd0\x18\xa6\xb9\x6c\xb8\x26\xce\x59\x0d\xad\x35\xaf\x4c\xda\x5a\x4a\x82\xf0\xa2\x2a\x85\x2f\x02\xae\x2f\x2c\x8a\xcf\x72\x29\x2f\x14\x57\x45\x91\x3d\x17\x6c\x91\xd6\x99\x5f\x98\x2f\xb3\x62\x50\x49\x91\x61\xfe\x2e\x3d\x20\xec\xec\x3f\x1a\xab\x89\xde\x37\xe8\x40\xc0\xdc\xe2\xec\xd8\x1b\xe3\x62\xdb\x60\x14\xf3\x2e\xe2\x34\xf0\x4d\xdf\xc4\x42\xc1\x69\x7e\xd9\xc9\x95\x50\x73\x8e\xcf\x72\x74\x67\x6f\x04\xda\x78\xee\xa7\xda\xe0\xe1\x72\xed\xe6\xef\xdd\xdb\x1e\x9a\x24\x0a\x97\xd7\x68\x59\xe0\x47\x9f\x57\x2e\x2c\x75\xb6\x7f\x79\x7e\xe6\xe9\xa8\xe8\x97\x55\x4f\xcb\xa9\x49\x55\x07\xc0\x0a\x8b\xda\x37\x65\x5e\x5d\xfe\x47\xa1\xd5\xb5\x94\xf6\x7e\x43\xa1\x53\x98\x78\x59\x1e\x2b\x5a\xb0\x3c\x7b\xe2\x37\x4d\xc5\x11\x69\xa5\xe7\x13\x8a\x72\xf4\x13\xfa\x3d\xd8\x0d\x6c\xaf\x8d\x40\x7a\xbb\x76\x84\x1d\x9c\x26\x83\x91\xed\x4e\x01\xeb\x19\xe6\xa1\xea\x2a\x17\x87\xd4\xb6\x75\x25\x27\x89\xee\x31\xe0\x28\xd7\xc6\xae\x1f\xf3\xe2\x8d\xda\x37\x94\xc7\x83\x89\x63\xba\xc7\x58\xd2\x97\x10\xf9\xf8\x8d\xe6\xde\xc3\x07\x88\x6e\x18\x12\x8c\x5b\xba\x11\x74\xab\xd2\xdc\xca\xba\xf9\x9e\xf2\x33\x5d\x9b\x7b\x41\x58\x5f\x77\x10\xc4\x90\x7d\x40\x73\x1c\x55\xca\xb1\xb1\x42\x6d\x9c\x0e\x5a\x5f\x9a\xe1\x28\xfb\x27\xb4\x09\x9c\x86\x91\x97\x6b\xb9\xa1\x2d\x46\xee\xa0\x39\x84\xdf\x8d\x76\x28\x5e\x7f\x58\x2d\x60\x1b\x9b\xf8\x26\x0f\x4d\x57\x98\x0e\x8d\x00\x4b\xc9\x93\xf3\xf4\x61\x8a\xf9\x80\x11\x1f\xc7\x91\xa3\x7a\x33\x62\xe0\xb8\x63\xbd\xf5\x45\x41\x9d\xb0\x66\x9c\x80\xc2\xd1\x4e\x76\x5e\xc1\x7b\xf7\x72\xc2\xb3\x93\x1a\x1d\xc8\x48\x76\xad\x2b\xa6\x35\x2c\x17\x10\xc5\x1f\x45\xb7\x12\xb5\xf9\xf6\x75\x07\xd3\xbe\xf3\xcb\x1d\x87\xa3\xf8\xe2\xa7\xc0\x63\xc6\x62\x00\xbc\x8d\xce\xa8\x67\xfe\x5e\x67\x6b\xe9\x44\x30\x3a\x12\x4e\x8e\x92\x91\xe5\x36\xaa\xb3\xa0\xf1\xda\x8b\x1b\xf5\xed\xb6\x30\xdf\x1e\x0d\x7b\x99\x61\x87\xa1\x79\xa7\x4c\xa3\xb0\xda\x67\x83\x27\xb5\xd0\x9e\x5d\x8a\x92\x08\x4a\x98\x6e\x71\x9c\x1a\xeb\x99\x93\x60\x25\x57\x4d\x92\x18\xfa\x57\xae\x5d\x5e\x5e\xb7\x18\xfb\x34\xc8\x89\xd2\xf6\xe4\x50\x2d\x87\x9c\x02\x4d\x37\xb1\x3b\xc9\xd9\x78\x3b\x5d\x32\x8a\x00\x96\x0b\xc6\x6f\xbf\xe4\xcd\x98\x46\x4f\x74\x14\x5e\x98\x5d\x07\x85\xd9\x4b\xdf\x88\x5e\xd5\x09\x45\x92\xb6\xa6\x2c\xf1\x12\x12\x56\x43\x8b\xee\x8e\x72\x77\xfa\x88\xe2\x2f\x3a\x59\xad\x8e\x87\xd4\x5c\x0f\x94\x40\x29\xa3\xa8\x45\xf7\xa4\x2e\x7f\x05\xa0\x66\xa1\xa8\xd0\x17\x94\x9f\xce\x85\x06\x82\xe5\xbc\x32\xc5\x9c\xf4\xb0\x86\xe3\x63\xcf\xcb\xbc\xa4\x40\x29\x6f\xd3\xcf\x14\xfd\x37\xc9\x35\x32\x1b\xae\x85\xb1\xcc\xb8\x11\xd6\x6e\xa8\xd1\xcb\xed\xca\xf9\xa0\xc5\xd0\x46\xc3\xcc\xb2\x79\xa4\xd8\x2b\xaa\x5a\xea\x82\x03\x07\x45\xb9\x59\xb4\x71\x6c\x28\x7b\x47\xef\xef\x08\x12\x25\x8c\x00\x5f\x0f\x94\x02\xbc\x16\xf2\x4b\x47\xd9\xc3\x3e\xf1\xbe\x37\xf6\x55\xf9\xff\xa3\x21\xdf\x27\xc7\x24\x90\x2f\xca\x15\xbe\xc8\xfc\x3d\x7a\x46\x38\x17\xa9\x25\x33\xbf\x39\x41\xd0\x4f\xc7\x6d\xf6\x2d\xfb\x57\xc6\x15\x22\x2c\x3d\x38\x84\x82\x37\xb5\xb7\xfd\x63\xeb\xd8\xf1\x04\x56\xfb\x5b\x30\x58\xa6\xa2\x78\xe1\x71\x7a\xf0\x12\x09\x76\xbb\x3e\xf4\x2a\xce\x18\x69\x55\xa9\xb6\x55\x0d\xb7\x58\x1e\x11\x51\x56\xf4\x55\xa7\x0c\xae\x88\xc0\xbc\x03\xb9\x85\xf3\xc9\xbb\xc3\x8d\x92\x6e\xd4\xd5\x47\x33\x83\x1a\x1c\x5a\x61\x9f\x03\xfb\x34\xda\x66\x8d\x92\xd5\x28\xf6\x80\x34\xdc\xb9\x5b\x4a\x76\xf9\x96\xc7\xcc\x8d\x22\xd2\x9d\xe6\x23\x10\xab\x0a\xd2\x2c\x40\x75\xde\xd3\x6d\xcf\xc3\x4d\x62\x64\xf9\x2f\x41\xf5\x0c\x43\x14\xc6\xb5\xf2\x9b\x2a\xc3\xc6\xc6\xd0\xa3\x42\x45\xf1\x1e\xa4\x2b\xf8\x4d\xc5\x41\xad\x6f\xbb\xa3\xb8\xcc\xeb\xca\x7f\xcd\xd6\x57\x41\xc5\x89\xdd\x8f\x6d\x57\x6d\x1c\x42\xbb\x5c\x9d\x42\x2d\xa7\x61\xb2\xe1\xee\x6a\xf8\xb2\x0d\xfb\x93\xad\x67\x9e\xaf\x98\x5f\x63\x41\xa0\xbf\x2e\xff\xbf\x96\xcc\x71\x40\xcd\x41\xd4\xcd\x47\x83\x81\xcd\xb0\xab\x50\x34\x43\xf2\x16\xcf\xe2\x12\x7e\xa1\xec\xaa\x26\xa7\xbd\x54\x3d\x15\xcc\x28\xf5\xbc\xf2\x82\xc2\x49\xf6\x47\x8b\x36\x9b\xf0\xd3\xe7\xb7\xc7\x0a\x62\xf7\x1e\xad\x00\xfc\x82\x7f\xaf\x51\xda\xa6\x67\x5e\x8e\x12\x4b\x53\x12\xae\x81\x69\x58\xb9\x79\x5a\x29\x69\xdd\xd2\xa4\xcc\x53\x8a\x6d\xb6\x11\xa8\x1e\xbf\xae\xb9\xe3\x34\x93\xc1\x11\x4e\xf6\x79\x65\x52\x8d\xe1\x8e\x80\xad\xfd\xa4\xcd\x44\x74\xf0\x94\x4f\x90\xed\x6b\x69\xad\x8b\x95\xed\x56\x98\x55\x79\x42\x98\x32\x39\x4c\x8a\x28\x8c\x8a\x35\xfa\x36\xfc\x60\x18\xc0\x63\x69\xc2\x76\x03\xc0\x92\x13\x8a\xa2\x30\x30\xa1\xea\x00\x5d\xd6\x51\xeb\x72\x53\xba\x7d\x70\x7a\xfe\xf1\x32\x85\x71\x46\x84\x73\x92\xf3\x6c\xeb\x28\xd5\xa3\x4d\xdc\x2b\xac\xfe\xa9\x0e\x5d\x0d\xea\x3b\xb8\xbd\x22\xd0\xbc\x4e\xc5\x2c\x92\xfb\x53\x88\xad\x2e\x59\x9b\x9f\x39\xc0\x07\xfd\x1b\x5a\x7d\xe2\x89\x75\x4a\x87\x38\x5f\x47\x01\x8b\xb9\xd6\x9f\x53\x42\x88\xf8\x08\x5e\x3c\xc6\x6e\x77\xf1\x74\x80\x54\xd9\x0c\xf4\x08\x75\xec\xe1\x4b\x37\x54\xc5\xcc\x0a\x29\xfc\x7b\x6b\x2e\x23\xfb\xe6\x40\xc4\x12\xa3\xef\x96\xc7\xe3\xff\x1f\xb4\x5c\xf8\x75\x6d\xcf\x97\x07\x73\x98\xa3\x0e\x12\xd5\x32\x25\x06\x76\xd2\x25\x09\x8b\x65\x79\xd6\xf2\x0b\x0c\x73\x07\x7e\xdd\x64\x5e\xb4\x98\x59\x4b\x2e\x5a\xc8\xf4\x30\xc5\xe1\x76\x2d\xbf\x69\x1a\x98\xa7\xa3\x62\x29\x4e\x57\x69\x01\xe0\xfc\x01\xd6\x9a\x5f\xab\x8e\x8e\x49\x92\x74\x94\x80\xac\xbd\x4b\xe5\xf6\x1b\x74\xd3\x9d\xba\x55\xf9\x04\x9d\x9c\x9b\xd3\x32\xbd\x16\xa8\x95\xae\xd6\xe4\x05\x6c\x7c\x74\x50\xce\xa2\xe7\xc0\x6f\x82\x0a\x34\xd5\x77\x22\xbb\xd6\x64\xa8\x90\x3d\x96\x0b\x88\x25\xa9\x55\x7c\x62\x1f\x47\x85\xcd\x44\x08\x5b\x44\x73\x3d\xf9\xe0\x84\x82\x04\x0e\x23\x1b\xda\x49\x95\x5c\xbe\x4f\xb4\x1b\x9c\x35\x5f\xc5\x5a\xe6\xff\x30\xf6\xd6\x8d\x5f\x55\x93\x26\x3b\x18\x2a\xf0\x05\xa3\x29\xf9\x4d\xa0\x0c\x70\xe3\x38\x45\x23\x11\x07\x1f\x3a\xdc\xfc\x7a\xdd\x87\x72\xfb\xd2\x30\xcd\xc0\xc4\x29\x7f\x7d\x85\xa4\x2c\xb8\x01\xad\xde\x77\xbd\x96\x44\xed\xdd\xdb\x36\x61\x96\xe6\xf9\x94\x6f\x3f\xc0\x4d\x13\xcb\xf3\x3e\xca\x5b\xb4\x38\x7e\xa2\x7c\x41\xbe\x83\x6f\x91\x7c\xc2\x49\xa2\x66\x51\x11\x85\x39\xf3\xec\xc4\x36\x8f\x7e\x1d\xd2\xab\x49\x1a\x8a\x3b\xa1\x87\xf2\x33\x70\x5d\x37\x6b\xe9\xda\xc2\x34\x63\x81\x4d\x26\xe4\x7f\x34\x2b\x5e\xd3\xa3\x93\xc0\x5b\x53\x7c\xd8\x40\x0f\x9e\x11\xdd\x6d\xce\x8d\x9d\x30\x94\xd3\xc3\xac\x8f\xcc\xcb\x52\xba\x97\x82\x73\xa4\xaa\xb3\xb9\x8a\xaa\x14\xce\xbf\x37\x55\x13\x34\x2f\xd2\xcc\xe6\x7b\x7c\x1e\xb0\x73\x5d\xc9\x52\xa0\x97\x2f\x73\x4a\xdc\x1f\x04\xe0\xd7\x95\xd8\x09\x9b\x3a\x29\x28\x8c\x3c\xf7\xdb\x81\x52\x5e\x3f\x0a\x4a\x33\xff\x33\x68\xcd\x09\x05\x93\x2e\x53\x20\x72\x2a\x8a\xec\xec\xd4\x47\x85\xed\x45\xbb\x14\x41\xbf\xba\xa5\xd4\x8d\xfd\x90\x40\x9d\xef\x9f\x8d\x3e\xbb\x44\x1a\x10\xe8\x05\x03\x6c\x84\xec\x0d\x56\x49\xec\xc3\xdf\x10\xd0\xe6\xdb\xb1\x41\xc2\x25\x80\x3f\x65\xab\x71\x07\x21\x5d\x78\x3f\x9e\x83\xd3\xcb\xec\x2a\xcd\x12\x90\x38\x1c\x51\xd0\x7b\xc0\x8a\xd8\x1b\xae\x56\xd4\x3e\x3f\xdf\x1e\x46\xc5\x92\x89\xe3\x1c\x0d\x44\x56\xce\x1c\x2b\x40\xee\x75\x2c\x4a\xc4\xfb\x6d\x35\x92\x27\x59\x22\x15\x66\x59\x70\x92\x9c\xa5\xe2\x81\x48\xca\xfa\x71\xe0\x80\x7e\xba\x3a\x49\x42\x27\xe8\xd5\x20\xfb\x71\x30\xde\xd9\xd9\xcd\xd3\xba\xc3\x7b\xbe\x69\xf4\x32\x30\x51\x52\x98\xc8\x7b\x70\x8a\x9b\xa4\x87\x01\xbd\xad\x52\x93\xf2\x58\xcf\xa8\xb0\x74\x63\xfb\x7b\xc0\x51\xf1\x1b\x85\x6a\x82\x5a\x43\x9a\xe5\x4f\x7a\xcc\x02\xdb\x99\x20\x28\x4f\xe0\x88\xc6\x79\xfd\x4f\x03\x85\xe4\xe5\xd2\x4f\xb2\x14\x4d\xa6\x65\x97\x44\xd4\x53\x9b\xd0\x02\x65\xa3\x15\xb8\x5b\x22\x8b\xbb\x03\xe8\x33\x9a\x01\x98\x0e\xe1\x17\xfc\x90\x9e\x28\xe2\xc2\x37\xc7\x0a\xd8\xce\xbd\x3d\xee\x58\xd3\xbe\x15\x39\x04\x3a\xe3\x5d\xfa\xfd\xcc\xf3\x5e\xf4\xc0\xa9\x4d\x9d\xa0\x0e\x03\x88\x32\x50\x64\x40\x28\x83\xc9\x21\x06\x23\x1f\xd4\x02\xc0\xbe\x39\x1a\x86\x4f\xd0\x55\xa0\x1c\xde\x54\xa0\x99\x3f\x53\x01\xe0\x7e\xd3\xd3\x0b\xcd\x60\x68\xb4\x83\x2a\x56\x0c\x06\x21\xfc\xba\x56\xcb\xcc\xce\x96\x2b\xde\xa2\x79\x27\x36\x0f\x2d\x6f\xf9\xa0\xd2\xd7\x61\x6c\xd6\xf2\x29\x3f\x16\xfb\x88\xba\x96\xa8\xf4\x7f\x4c\x71\x06\xb7\xfe\x43\x95\xfe\xbe\xa7\x19\x71\x97\x9b\x5a\x61\x84\x67\xa5\x75\x80\x47\x7a\x7c\xac\xa6\x99\xc7\x15\x5e\x7c\xc9\x24\x32\x8d\x7a\x96\x5b\x17\xe0\x4f\xf3\xeb\x8e\x24\xf5\x26\x31\x71\xcf\xe6\x8c\xce\xe7\x3a\x2c\xd0\x35\x59\xc5\xae\xde\x2e\xef\xd6\x00\xad\xaf\x11\x74\xc5\x99\xcd\x6d\x95\x30\x42\x95\xfa\x93\xbf\x49\xc2\x48\x2b\x20\x29\x95\x24\xd5\xb5\x7c\x5f\xa9\x83\xbc\xad\xc6\x2b\xcb\x76\x30\xb4\x19\xc8\x2a\x0c\x45\xa4\x8f\x10\x58\xa2\x67\xd2\xe4\x11\xf7\xac\x9b\xc0\x55\x7e\x7a\x65\xbf\x32\x8a\x56\x4c\x6c\x93\x62\xca\xcf\xd6\xbf\x1b\x28\x61\xf6\xd3\x5a\x91\xe7\x6d\xfa\x5d\xd2\xcf\x54\x72\xf8\x6f\xab\xc9\x6f\x4c\x50\xbe\x83\xd3\x5e\xd9\xbd\xdc\x9d\xfc\x46\x5d\x0c\xf5\x7a\xf3\xc7\xe9\x62\x64\x06\x4a\x4b\xdb\x61\xef\x9e\x77\x53\xd0\xed\x64\x51\xeb\xbc\xd8\x5c\x21\xc4\xf2\xb8\x8c\xea\xa4\x6d\x88\xa3\xf1\x07\xe3\x1a\x38\x12\xe1\x96\x27\xe3\x52\xba\xd3\x81\x25\xd3\x55\x65\x57\xf9\x7b\x2a\xd3\xff\x2d\xee\x91\xe3\x2c\xfc\x50\x4d\xb2\x2f\x21\xef\x73\x5d\x0a\x07\x80\xe1\x65\x0d\xf0\xfe\x0f\x02\x05\xa1\xfd\x40\xa9\x9f\x17\x7d\x9b\xdb\x3d\x14\x55\x90\xe8\x7e\x2b\x50\xd6\x94\x8f\x60\xac\xe9\x38\x9c\x07\x45\xff\x19\xab\x1a\x2d\xe6\xc9\x8e\xef\x7c\x9f\xfc\xf4\xba\xe7\xdf\x6d\xeb\x78\x1b\xa2\xd6\xba\xe3\xb5\x9d\x7d\x92\x62\xea\xbd\x7f\xfa\x18\x35\x50\x70\x4f\xf8\x10\xc7\xae\xdd\xd5\x71\x6e\x35\x69\xba\x34\xe1\x9b\x02\x8c\xac\x95\x3d\xe2\xcb\x8f\x75\x37\x6b\xce\x6d\x98\x26\xdd\xdd\xad\x2f\x7f\x41\x9d\x88\x22\xcf\x74\x9c\x9e\x02\x7d\xd6\x83\xbf\x8c\x6b\x13\x53\x04\x45\xa8\xe0\xee\x3b\xdb\xf0\x8f\xbd\x0a\xe7\x15\xbf\xd2\xff\xf7\xf6\xba\x12\x72\xde\x20\x83\x46\xc8\xc5\xdd\x0b\x9e\x50\x18\x1d\xe0\x55\x99\x47\x28\x66\xcb\x40\x9f\x48\x31\xf9\x84\xca\xce\x57\x6c\x9c\x0e\xcb\x22\x61\xb7\x52\x70\x86\xc1\x82\xb8\x52\x2b\xa3\x89\x07\xe8\x66\x23\xe5\x67\xcb\x19\xd6\x5f\xa7\xed\xbe\x79\x3c\xf0\x29\xf5\x2d\x5a\xb2\xdc\x9e\xa6\x55\x2a\x52\xed\x58\x59\xfc\x89\x1d\x25\x8c\x1f\xa7\xe1\xf2\x2e\x7f\x62\x40\xde\x10\xcf\x1c\xd0\x21\x1c\x77\x93\xeb\xca\xce\x97\x8d\xde\xdc\xb8\xce\x6b\x91\xbe\x15\xf8\xae\x2d\x23\xe7\x54\xd8\xf1\x9e\xb9\xbe\x26\xf8\x47\xbf\xfa\xab\x13\x9e\xd9\xf9\x00\x09\x62\xa0\xbf\x33\xd9\x51\x5e\x4b\x3f\xab\xb8\x67\x2e\x99\x41\x3a\x02\xb7\x87\xe9\x5b\x58\x59\xc2\xe5\xda\x1a\xde\x3f\x0f\x69\x02\x74\xaa\x5d\x67\x6d\x61\xda\x6d\xcf\x86\xdc\x30\xb7\x59\x94\x8e\x72\xf1\xb5\x72\x96\x6f\x4e\x5a\x7b\x0b\xc9\x21\x8d\x27\x3d\x21\x86\x89\x3e\xa2\x19\x4f\xcb\x42\x84\x5b\x74\xdf\xd4\xf5\x3c\xe3\x68\xd9\xae\x46\xb9\x9d\xa2\x9b\x89\x62\xfd\xf6\xd8\x35\x33\xff\x8b\x27\x3a\x6a\xf2\xc8\xcc\x68\xad\x26\x8b\xd3\xef\xde\x58\x5b\x4d\x17\x11\x64\x37\x51\x87\xbc\x31\xf6\x72\xbd\x6f\xd4\x10\x86\x33\x07\xda\xdd\x68\xc5\x66\x79\xb4\x14\x31\x94\x01\x57\xb9\x8b\xd2\x37\xe5\x93\x25\x23\xe5\x6d\xeb\x0d\x48\xac\xc5\x98\xd8\xaa\xb9\x87\x70\x39\xb4\xa7\x4b\x91\xeb\x74\xfe\x83\xd3\x8c\xfe\xd1\xd9\xe6\x29\xe5\xfd\x72\xca\x57\x58\x51\x16\xc6\x72\x50\x23\x13\x7a\x05\x77\x94\xdf\xa8\x86\x73\x18\x47\x83\xc5\xf2\x62\xf6\xcd\x6d\x3e\xd2\xf1\xb5\xea\x2e\xda\x51\x62\x10\xed\xb5\x46\x06\x66\x38\xa4\x5a\x40\xf7\x5e\x16\xa6\xe5\xb5\x6a\xef\x77\xed\x92\xd4\x54\x0e\x03\x1b\xf8\x31\xda\x79\x57\x36\x2c\x46\x43\x6e\x1e\xf2\xf6\x0a\x94\xca\xc7\x99\x26\xb5\xee\x3c\xca\xd9\x0f\x59\x5a\x65\x0a\x0f\x7c\x2c\xd0\xdd\x06\xa8\x10\x17\x51\x9a\x4c\xd1\x89\xe2\xb4\x1f\x67\x67\x39\xd1\xb9\x8a\x50\x2a\x64\x8e\x96\xb3\x78\xbb\xa8\x2b\xba\xab\xea\xa8\x20\x01\x90\x49\x05\x14\x66\xf1\x6a\x91\xc5\x2d\x2f\x52\x66\x2a\x88\x29\x82\xa0\x72\x95\x92\x49\xba\xcc\x7c\x76\x7a\x18\x82\x2c\xfa\xaf\x1e\xef\x78\xba\xe1\x2e\x3a\x6a\x44\xd6\xa7\x11\x9b\x9b\x80\x8c\x8a\x95\x84\x54\xe6\x2c\x5d\x1e\xbf\x6e\x18\xdb\x43\xf7\xaf\xaa\x7b\x72\x4a\xeb\x9e\x9c\x52\xea\x32\xab\xfd\xa8\x10\xde\x3f\xb2\x0d\xf6\xdf\xe0\x37\x4a\x24\x2f\x4b\x73\xc3\x9d\x23\x64\x41\x77\xc6\xca\x89\xe2\x8e\x52\x43\x1b\xe6\x6b\x71\x1c\x8d\x06\xbb\xcb\x15\x27\xc1\x86\x9e\x83\x14\xac\xe5\x46\xd4\x51\x48\xd5\xbb\xd2\x94\x6f\x75\xd4\x09\x0d\x99\x61\x44\x55\x3c\x45\xf4\x6d\x27\x3b\x54\x4e\x20\x42\x9f\x46\xfe\x23\x57\xdc\xa0\xc6\x99\xa4\xab\x14\x32\x31\x5f\x3a\xaa\x3c\xe0\x8f\xba\x38\x44\xde\x8d\x42\xf4\xc3\x96\xba\xa1\xc0\xb7\x13\x60\x5f\xa1\xfd\x7b\x49\x5f\xb4\x32\x21\xf2\x16\x45\xca\x91\xe8\xbc\x32\x42\xfa\x53\xf5\x08\xa8\x85\x93\x26\x93\x5e\x79\xf8\x04\xa5\xf3\x22\xd1\xaa\xdc\xe7\xaf\x28\xc4\xc6\x95\xda\xde\x99\x9d\x6d\x17\x99\x95\x8a\x15\xe7\xde\x77\x94\xf0\xc6\x77\xbc\xab\x6c\x9a\x14\xfd\x78\x6d\x87\x9f\x4b\x7f\x63\xac\x3a\x48\x93\xeb\xaa\x6d\x00\x8f\x4f\x3a\x95\xff\xd9\x2f\x74\x7c\x7d\xb9\x7b\x5d\x99\xf8\x9f\x1e\xb7\x7e\xed\x9f\xb8\x11\xaf\x8c\x72\x96\x97\x33\xcd\x32\xe4\x4a\x8e\xdf\xd4\xaa\xf6\x83\xd3\x87\xda\x99\x89\x72\x91\x2b\x56\x4a\x67\xcf\x3a\xa5\x33\x0f\x60\x28\x46\xe4\xe6\x5b\x2e\x31\x49\x0d\x54\x9a\x50\xbb\x39\xfb\xe6\xda\x71\xb4\x68\xe3\x8a\xea\x20\xad\x24\x81\x81\x3d\xac\x2a\xe4\x17\x47\x19\x8b\xb1\x30\x44\x2e\xf0\x1d\xf9\x63\x0a\xd2\x5d\xe6\x0e\xdb\xcb\x87\x85\x8d\xfe\x3d\xe5\x09\xce\x07\x20\x6a\xfc\xd3\xe8\x54\xf3\xbf\x42\xe8\x91\xf0\x5b\x7e\x32\x22\xcd\x44\xc7\x5f\x5e\x5a\xf4\x6d\x96\x3f\xe8\x71\x86\x1f\x10\xdf\x0d\xcb\x87\x9d\xec\x9d\xbc\xbc\xe3\x44\x5e\xa7\x32\x09\xc5\x1f\x6f\x20\x2d\xa8\x8b\xad\xca\x42\xa8\xae\x15\x53\xfe\x18\xec\xb9\x6f\x23\x89\x40\xb8\x2f\x02\xd5\x43\xaf\x1b\xa4\x91\x7d\xfd\x28\xef\xb7\xbc\x74\xe0\x86\xb2\xa2\xdc\x50\xc0\xd0\xd0\x14\xfd\xd0\x64\x05\xa2\x18\xee\x08\x72\x54\x7e\x5d\x83\x9b\x1c\x78\xae\xbd\x94\xc6\xd4\x74\xa6\x76\x49\xeb\xe0\xf4\xe6\x69\xf5\x84\x48\x35\x11\x87\xb4\xcb\xd4\xbc\x30\x2a\xdd\x10\x19\xaf\x37\x00\x96\xcb\xf2\x9c\x7e\xb6\x20\x17\x14\x10\xdf\x21\x78\xa2\xc1\xd0\x84\xc5\xa4\x52\xaf\xfd\xea\xb8\xda\xce\x9b\x13\xf0\xd5\x27\x3a\x1e\x98\xb3\x7d\xfd\x61\x75\x48\x0e\x48\xe7\xb2\xbc\xa7\x22\x94\xeb\xd9\xd8\x9e\x7a\x93\xc7\x29\xa8\xa7\x48\x84\x4f\xd2\xad\xe1\xd7\xb5\x00\x0f\x5c\xee\x4a\x9a\xe3\x4f\x1a\x39\x5f\x5a\x61\x32\x8e\x42\xe3\xfc\x9d\x11\x41\xdf\x54\x62\xff\xd7\xb1\x18\xa4\xbf\xe5\x7b\xcb\x51\xb2\x62\x13\xc2\x93\x2b\x05\xbd\xd7\x68\x81\xf3\x6b\xef\x1d\x62\xa2\xdc\xb2\xf2\x18\x8e\xe0\x1d\x1d\xb5\xcd\x2e\x6b\x18\x17\x2d\x77\x11\xea\x55\x0f\xd4\xf6\x4c\xc4\x86\xce\x4e\xc4\xd3\x63\xf8\xeb\x44\x9c\x72\x85\x64\x23\xc2\x26\x53\x53\x52\xd4\xa6\x7c\x4f\xeb\x67\x4a\x4d\xf1\xeb\x0a\x4d\x1b\x66\x36\x2f\xca\x08\x88\x0d\x8e\xf5\x2d\x2e\x37\xfc\xae\xe3\x94\x36\xa3\xc1\x30\xa7\xa3\xc0\xf1\xdf\x3d\x49\xfe\x76\x05\x06\xfc\x0b\x1f\xd3\x0d\x2c\xbf\xca\x76\xa3\x9c\x41\xd4\xc8\x1d\x79\x0a\xca\x6f\xdc\x48\xc7\xf4\x6c\x52\xd0\x49\x20\x15\x84\xcf\x3d\xef\xa9\xa7\x76\x53\x5b\xae\x1c\x53\x87\xc9\x8b\x69\x1c\xad\x58\x2c\x0d\x94\xa4\x7f\x88\x7f\xca\x6f\x9a\xe8\x18\x66\x38\x8c\x9d\xac\x0b\x3b\xc6\x51\x1c\x11\xf7\x38\x65\x91\x9d\x0c\x47\xc5\xa4\x77\xc0\xb8\x17\x28\x67\x8e\xd7\xe8\xc7\xba\x78\xa3\x64\x3f\x75\x99\x90\xae\x26\x4f\xa8\x51\xdb\xb7\x71\x43\x11\x8c\xc6\x1a\x0d\x0a\xaa\x11\x4e\xdd\x1b\xe8\x21\x8a\xd3\x34\x01\x67\x91\x90\xfd\x10\xd3\x21\xf4\x53\x4e\xa3\x2d\xce\x9d\x21\x12\x32\xc3\x03\xe5\x28\xc7\x76\x80\xc8\x13\x70\xbc\x9d\x0d\x00\x4f\x90\x1e\x4c\xcb\x39\x6a\x1c\x43\xab\x12\x55\xf8\x2d\xae\x1f\xc5\xd1\x88\x22\x19\x54\x6f\x26\x95\x87\xdd\x83\xeb\x0a\x59\x7c\x3f\xf0\xd4\x2d\x78\xd2\x8b\x34\xe1\xd6\x54\x4f\x96\xca\x62\x5a\xf4\xb7\x6b\x39\xae\xf2\xd7\x20\xc6\x3c\x88\x1d\x25\xf3\x34\xa5\x2f\xb8\x6d\xbd\x3c\x18\x9c\xf2\xe4\xec\xec\xe6\x25\x4d\x83\xb2\xd9\xc0\x24\x44\xba\xe6\xbe\x3d\x92\x2c\x69\x2e\x28\xaa\xd9\x09\xed\x3b\xc3\x82\x15\xce\xa3\xc3\x99\xf2\xe3\x24\x41\x29\x77\x95\x6e\xb1\xec\xd7\xad\x13\x50\x52\xd4\xee\xa7\x59\x91\x6b\x45\x73\xc4\xe5\xfb\x63\x4f\xcb\xbb\xdf\xb4\xb9\xc9\x38\x70\x89\x3b\x87\x5c\x7c\x05\x1e\x8f\xb9\xa1\xfa\x09\x71\x34\x88\xe0\xb1\xc0\xbc\x1f\x61\x77\xf8\x73\xf1\x55\xca\x38\xd1\x5b\xb8\x12\x78\x4d\x16\x19\xc4\x08\x37\x44\x21\x69\x6c\x77\x97\xd2\x99\x7b\xa8\x53\x23\x78\x8b\xd3\x4c\xf9\xa3\xc4\x76\xd4\x13\xc7\xee\x8c\x15\x86\x97\xfd\x86\xb4\xec\x24\xbe\xf1\x26\xd6\x25\x08\x12\x8f\x74\x1e\xf7\xc9\xb6\x1d\xda\xac\x48\xa3\xcc\xb6\xaa\xac\x4f\x65\x8d\xb4\x75\x15\xed\xdd\xdb\x7e\x71\x94\x17\x65\xfd\xca\xc8\x53\xec\xbf\x1b\x81\xf7\xd9\x7a\x5f\xc3\xd3\x2e\x8e\xb7\xfa\x12\x3d\xdd\xfe\xca\x4a\xd8\xd2\xa6\x4d\x5a\x85\xc0\x1f\x8e\x05\xe1\xde\x26\x2b\xda\x73\x4a\x6b\x74\x3b\x1d\x88\xd8\xe0\x8c\x7f\xc6\x99\xf1\x96\xea\x88\x0e\x49\x38\x92\xfc\xed\xa9\x36\x60\x35\x15\xec\x67\x91\x56\x91\x8c\x75\x31\x25\x52\xd4\x84\x9f\x94\x7d\xa8\xe4\x1f\x7e\x3c\x56\x95\xb6\xb7\xe0\x0c\x4d\xb6\x58\x1e\x0f\x2e\x12\xb1\xa0\x08\x9e\xc3\x0d\x65\xed\xfb\x60\x67\x2b\xd0\x67\x76\x96\xe8\x28\x4b\xa3\x5c\x86\x63\xd8\x61\xd7\x03\xdf\xa7\xbb\xee\x68\x5b\x4b\x99\xfd\xca\xc8\x26\x45\xbc\x36\xa9\xc0\x71\x40\xa8\x3a\x1d\xfb\xb9\x39\xc7\x05\xf1\x62\x21\xad\x1a\x22\x7c\xdf\x5c\xbb\x9f\xae\x9a\x0c\xb9\x2d\xee\xfc\x44\x47\x3d\x86\x89\xf5\x7a\xfb\x60\xbe\x5d\x80\x7c\xb2\x30\x5d\x71\x4a\x10\xa7\x05\x55\xdd\x64\x5e\xba\x11\x25\x06\xfc\x54\x10\xa7\xb0\x2f\x91\x40\xfe\x37\x0a\x58\xb6\x70\xe0\x0b\x2d\x4f\x66\x39\xa6\x0d\x12\x8e\xd5\x5a\x29\xf3\xcf\xed\x6f\xdb\xd8\x86\x45\x16\x85\x5c\xca\x3b\x30\x8b\x07\xb6\x34\x88\xd0\xcd\xb7\x97\xd2\xb4\x4b\x0f\x99\x49\x72\x15\xcb\x54\x75\x5e\x1f\x53\xbc\x76\xef\xf3\x48\x8d\x0b\x36\x0a\xa6\x13\x4c\x4c\x83\xfd\x09\xb6\x94\x99\x64\x99\xcb\x58\x69\xad\xd0\xe7\x4a\xcf\x45\x9f\x55\xab\xf1\xda\xae\xf2\x63\x1c\x95\x76\xe6\x80\xd3\x0e\xf5\xbd\x69\xc6\x24\xe0\xb2\x1e\x00\x2a\x84\xdf\xa0\x67\x88\xd5\x70\x9b\xb6\x21\xf2\x11\x1e\xd9\xf2\x7f\x40\xa8\x40\x68\xbf\xd9\x20\xa8\x18\xf6\x4d\xd6\xdb\xa2\x47\x79\x4e\xe9\x51\x36\x1a\x8a\x12\x85\xc5\xfd\x91\x83\x5b\x78\x27\xbd\x06\x1e\xe1\x7e\x40\x56\x20\xe1\x83\x70\xed\xf2\x01\xc7\xb8\x3f\xa9\x46\xb4\x66\xc5\x86\xc0\x1e\xb8\x36\xb2\x6b\x9e\x5e\xa2\x43\x03\x5f\xf6\x9a\x6a\x1d\x0d\x6d\x36\x88\x58\x64\x03\x07\x32\x0e\x47\x7e\xed\x3b\x47\x69\x9a\x17\x7b\xbc\xd8\x02\x90\x50\x52\xdf\xd1\x41\x8f\xbb\x7c\x98\x66\x7f\xa2\x9b\x56\xc5\xa7\x97\x59\x83\x34\xaf\xcb\xa7\xb4\xc9\x00\x6f\x45\xc8\x9c\xf7\x60\x64\x97\x47\x3e\xd6\xf1\xe9\xf8\xb5\x40\x65\xc8\x87\x95\xb6\x4f\x77\x94\x09\xae\x87\x91\x98\xca\xcc\xb3\xfe\x4c\x9e\x9f\x39\xd0\xce\x6c\x68\x29\xe0\x79\xf8\x26\x73\xc2\x25\x01\xaf\xf7\x61\xe7\xdb\x61\x4c\x88\x1a\xc1\xed\x20\xf5\x3a\xa7\x6d\x01\xce\x35\x09\x84\x26\x26\xcb\xd2\xd5\x56\xc5\xf3\x59\xcf\x16\x1b\xc0\x94\x83\x28\x16\x33\x3e\xe7\x59\x3c\x37\xe7\x36\xa0\xcc\xf5\xc2\xbe\x89\x63\x9b\xf4\xec\x2e\xfc\x22\xcc\xa3\x21\x2f\x85\xd7\xcc\x9b\xe6\xff\x40\x2b\x1f\x87\x27\x0a\x35\xac\x5b\xb6\xc9\xc0\x3f\x3a\x8b\xfb\x80\xc1\xcb\x26\x92\x14\x81\x45\x6a\x77\x40\x77\x24\x64\x51\xbe\x1c\xd9\x8c\x7a\xce\x50\xe0\x00\xd5\x4a\x3e\xce\x37\x2e\xcf\x63\xde\x84\x2c\x75\xb2\xa3\x82\x81\x59\x49\x99\x82\x27\xce\xf2\x1e\xda\x78\x6a\x2b\xb0\xad\x7c\x80\x07\xa7\x0f\x11\x52\x06\x8f\xeb\x07\xf8\xcd\x18\x8a\x31\x03\x0a\x4d\xe3\x4b\xe3\xd6\xf3\xf3\xde\x68\xc0\xc3\x4b\x2f\xd5\x6e\xfb\xde\xbd\xe5\x71\x1a\xa1\x3a\x10\xf5\x41\xba\x7b\x22\x3f\xd8\xe4\x69\x9f\xf7\xd3\xd5\x7c\x42\x03\xa4\x91\x95\xe0\x64\x62\xf5\x6c\xe4\xe2\xf7\x94\x2c\xe3\x62\x9a\x24\x91\x05\xbf\x8f\x27\x61\x15\x7f\x04\x7f\xb8\x7d\xa0\xd4\x39\xc3\x6c\x54\x84\xfd\x96\xf7\x96\x85\x7e\x0e\xbf\x56\xdc\xf5\x7c\x94\x0d\x33\x6e\xe1\xcc\x1c\xe0\x0d\x74\x11\x47\x3a\xbf\xa9\x6a\x5e\x3d\x25\x72\xb9\x18\x13\x01\x1a\x8b\x36\xc5\x49\x5d\x22\xdd\x54\x05\x9c\x7d\xa9\xb0\xd4\xa2\xc3\x59\x8b\xd6\xc5\xfb\x4a\xcc\x1b\x9d\x36\xfe\xff\x03\x2d\xbf\xe8\x5a\x53\xb9\x29\xb6\x7b\xf5\x7e\x18\x13\xa0\xc2\x9b\x44\x0a\x4f\x0d\xbe\x07\x1f\xef\x78\xcd\xb0\xef\x5f\x08\x94\x8b\xf5\x5d\xdc\x61\x21\x6b\x36\xc0\xe6\x7e\xe1\x0b\xbf\x3e\xff\x85\x5f\x9b\x7b\xc8\x8f\x96\x58\x7f\x02\xcd\xdf\x63\x4a\x74\xe6\xa6\x72\x2b\x62\x17\x36\x27\xc5\x59\x3e\x29\xe7\x72\xe3\x1d\x70\x3f\x0a\x94\xca\xa3\xa0\xbc\xb0\x10\xaf\x22\x1b\x42\x49\xb4\x87\x00\xd7\xe8\x63\x5e\x09\x54\xcf\xfb\xb6\xa6\xe3\x7e\xbf\x2e\x1b\xb2\xb7\xfd\xd4\x3f\xfc\x1c\xc7\x02\x39\xcd\xca\x8f\x92\x63\xee\x31\x25\xfa\x92\xe7\xd1\xf0\x6f\x94\x1b\x70\x4e\xed\x10\x0b\xe7\x5e\x01\x9e\xd0\xcf\x77\x54\x1a\xf9\xd8\xba\xbf\x13\x2c\xa8\x25\xe1\x5b\x82\xcf\x8b\xd6\xc4\x34\x96\x42\x4b\x43\x56\x7f\x79\x9b\xc5\xe3\x56\xf1\xbd\xab\x1a\x6b\x85\xed\xfe\xad\xf2\x0b\xb0\xf4\x77\x77\x94\xb5\x0b\x28\x93\xb8\x83\xb7\xf9\x7e\x0a\x0d\x88\x1e\x02\x1e\xdb\x03\x40\x96\xa2\xc4\x7c\x94\x66\x2a\x88\x8e\x93\x24\x3a\x22\x48\x13\xba\x24\x69\x4d\x29\x71\x2a\xf6\x6a\xc3\x00\x61\x72\xdd\x7b\x4e\xb5\x68\x24\x03\x1d\xa6\xbf\xdd\x51\x90\xf9\x7f\x71\x09\xe5\x2e\xbf\xc1\x3c\x03\x99\xd7\x2e\x7a\xb6\xe2\x33\xd0\xfa\xd2\x8c\xb3\xe9\x52\xe7\xcb\xd4\x3a\x1d\x95\x28\xb5\xd0\x1f\x64\x62\x91\xb6\x9f\x7c\x4d\xe9\x40\x3d\xbc\x4e\xc9\x09\x62\xea\x6b\x5a\xca\x9d\x29\x47\xd8\x01\x97\xb1\x1c\x51\xe1\x3c\xb6\x2e\xcd\xac\xc1\x28\xec\x3f\x54\xde\x4a\xe4\x33\xd7\xd5\x54\xf7\xe7\xe9\xf7\xe2\x41\x9f\xc3\x55\x39\xcb\x92\x99\x03\xae\x7d\x4c\xf7\x0e\x4d\x6e\xee\x44\x23\x74\xb4\xd6\x3d\x6c\xf6\x93\x5a\x92\x86\x8f\x50\xd6\x53\x44\x18\xc6\xdf\x9f\x1e\xbb\x84\xf8\xb7\x7e\x05\xf2\x68\xa8\xb5\x36\x9d\xbc\x2f\xf8\xc1\xd9\x30\x8d\x92\x62\xa2\x72\xd0\xb4\x9c\xca\xfe\x8e\x8e\x92\x0a\xda\x54\xb6\xd6\x8b\x71\x9a\x76\xe9\x40\x40\x63\xf6\xc4\x58\xf9\x55\x32\x64\xc2\xb1\x71\xca\xeb\x95\xc9\x91\xc7\x80\x9c\x77\x6d\xb4\x17\x6d\xe6\x08\x76\xe2\x97\xd5\x52\xf6\x55\x0f\xba\x08\xf8\xd4\x53\x7f\xdb\x9b\x31\xfd\x4b\x2c\x4f\x6c\xa6\xa3\x41\xeb\x85\x17\xf8\x1a\xb7\x61\xe1\xe1\x4e\x5c\xc3\x1c\x01\x0f\x02\x1a\x37\xec\x01\x46\x7d\x65\x2c\xd5\x9f\x8d\xf5\x7c\xe7\x1a\xe1\x6f\x18\x24\x4e\x95\xbe\x43\x7f\x38\xf4\xef\xeb\x78\x5a\xcc\x30\x5f\x57\x82\x95\xa7\xc6\x7e\xde\x78\x43\xd9\xa4\x5d\xa3\x47\x82\x43\xfa\xa8\x96\x42\xb8\xc7\x9d\x18\x4c\xc8\x6f\xa1\xfb\xcc\x20\x34\x4a\xfd\xf0\x2c\xfe\x24\x50\x3c\xe7\xbb\xc8\x03\xf9\xda\x91\x87\xb3\x6c\x5c\xa0\x58\xab\x3f\xc4\x22\x46\xeb\xa0\x85\x99\x11\xae\xe5\xed\x40\x69\xc2\xdc\xc2\xd3\x43\xf4\x39\x5a\xc3\xd0\x4b\x97\xa6\x17\x9b\x3c\x21\x9d\x03\xa7\x32\x34\x49\x05\xaf\x2c\x1c\x25\xac\x7b\xbb\x29\x35\xa7\x11\x13\x15\x78\x0e\x51\xfd\x91\xba\xa7\x1f\x35\xc0\x58\x0f\xb5\x07\x26\xcb\xa2\xb4\x28\x94\x90\xd3\xa6\xd6\xcc\xdb\x54\xc7\xb0\x7d\x49\x74\x1b\x18\x88\x0b\x72\xeb\x4f\x54\xa3\x1b\x12\x06\xfc\x1a\xbf\x98\xff\x91\xd6\x3e\x49\x13\x2d\x45\x53\x51\xea\x91\xf9\x6a\x4b\xa9\x6e\x7f\x9c\x86\x56\xb1\x1a\x85\x98\x31\x62\x9d\xb1\xa6\x08\xbf\x51\x1a\xc6\x22\x12\x98\x4f\x78\x10\x0e\x0a\x59\x84\xbf\x57\xe8\x0a\xf0\xd5\xc7\xc6\x55\xfb\xbf\xfc\x09\x7a\x7a\x88\x28\x6c\xdc\x8a\x1d\xfb\x3e\xa9\x3f\x48\x83\x9f\x96\x02\xc2\xe1\x4d\x42\x07\x8a\x12\x1b\x6d\x23\xec\xa9\xd7\x00\x57\xe2\x37\x5a\xb7\x72\xb2\xd3\xfa\xf2\x17\x3c\x1e\x66\x81\x45\xef\xbe\xf3\xc4\xba\x57\x7e\x25\x09\xe4\x43\x65\xa9\xe1\x13\x98\x07\xb8\xc1\x8c\x9d\xf2\x9d\xb1\x9a\xea\x81\x80\x81\x53\xe8\x61\x5a\x48\xc8\x37\x1e\xed\xf8\xc9\x12\x3b\x57\xa1\xd5\x76\x9b\x2a\x15\x84\xe4\x9d\xeb\x2a\xfb\x5a\x23\x1c\x8e\x73\x3b\x10\xe5\x46\x5a\xef\x22\xe9\xd8\xe0\x3a\x68\xc2\x70\x34\x18\xc5\xc6\xf5\xe8\xb0\x83\x0f\x07\xca\x30\xef\x70\x93\x79\xc4\x68\xb8\x68\x0d\x56\xa4\xab\xd1\x7c\xbd\xa6\x94\x77\xf3\x22\xb3\x49\xaf\xe8\xe7\x48\x11\x90\x97\xfe\x34\xf0\x64\x8a\x9f\x2a\xd4\x82\xcd\x73\x1b\x17\x2c\xb7\x83\x53\x84\xbd\x99\xf9\x8d\x1a\xb1\x24\xa6\xe8\x9b\xe4\xff\x65\xec\xdd\x7f\xe4\xb8\xb2\xfb\x70\xb1\x67\xf8\xd0\x63\x57\x8f\xd5\xda\xfe\xfa\x9b\x04\x8d\x64\x01\xc5\x86\x4c\x18\x09\xb0\x70\x80\x00\x35\x21\x67\x57\xd6\x60\x35\x1a\x90\x34\x69\x13\xfe\x41\xb7\xbb\x6f\x77\x97\xa6\xba\xaa\x55\x8f\x19\x0d\xff\x80\x04\x30\x02\xc3\x48\x90\x20\x81\x8d\x38\x08\x16\x0e\x0c\x38\xf6\xae\x37\xb1\xe3\xc4\x4e\xcf\xae\xbd\xeb\x24\xde\xb5\x25\xed\x4a\x2b\x51\xd2\x8a\xe4\x50\x24\x87\x43\x0e\x9f\xc3\xf7\x23\xa8\xf3\x39\xe7\xde\x53\x53\x45\x63\x7f\x52\x95\x38\xfd\xba\x75\xef\x79\x7e\xce\xe7\xd3\xaa\x08\x06\x12\xf4\x96\x6f\x9a\xe6\x19\x68\x6a\x50\x7e\x2a\x92\xa1\x2d\x95\x18\x6d\x35\x08\xa9\x1f\x2d\x7f\x41\x12\x0f\xca\x74\xe3\x65\x4f\xda\x44\xf6\x46\x98\x2a\xca\x77\x10\x69\x07\xfa\x3e\xd8\xbe\x8f\xcd\x3c\xab\x28\xba\xf3\x70\x29\xcc\xf2\xdd\x9e\xe8\xfb\x3a\x99\x36\xec\x33\x0c\x9c\x33\xc8\x51\x85\xe5\x17\x95\x8c\xf1\x59\x2d\x7a\xcf\xc5\x06\x18\x72\xaf\xe3\x32\x08\x7b\x3d\x8c\x0f\x20\x58\xbb\xa6\x08\xa9\xae\x4d\xda\x8f\x36\x6b\xa3\x24\x25\x54\x91\x23\xf1\xda\x0a\x14\xba\x72\xab\xd6\x03\x3c\xb2\xd0\x36\x51\x82\x6a\xd2\x51\xcf\x0c\xfb\xb2\xd0\xa8\xdc\x08\x14\xec\x60\xad\x31\x8f\x19\x9b\x74\x31\xfb\xdb\x60\x05\xdb\x1f\x46\x69\x3f\x87\x69\x18\x2f\x9a\x81\x45\x74\x0a\xeb\xbf\xa9\xc4\x2f\x36\x15\xef\x68\xdf\x8c\x42\xdf\xde\x90\xae\x1a\xbd\x50\xda\x6d\x4d\xa3\xb1\x26\xe4\x96\x19\xa0\x90\xa0\xff\x70\xb3\x8e\x2a\x9f\xdb\xae\x78\xf8\xda\x6b\xed\x23\x07\xf6\x69\x9e\x2f\x2a\x4f\x88\xf5\x69\xc8\xfe\x4c\x6f\x14\xe6\xf8\x7a\x0a\x2e\x25\x6d\xed\x53\x2a\x7b\x1b\xda\xd1\xc8\xd1\xcb\xe3\xf3\xff\x1a\xab\xc5\x37\xea\x6f\x53\x6b\xc6\x16\x22\x71\xdc\xc8\x0f\x34\xfa\xc5\x09\xb5\xff\x8b\x1f\xd1\x03\xe3\x6b\x57\x3b\x1d\xa4\x66\x68\x40\xd0\x86\x4d\xcd\xb3\x04\x7c\xa3\xce\xb6\x90\x9d\x67\x4f\xfb\x92\xfe\x6d\xa5\xbb\xb9\x13\x39\x14\x02\xa4\xfb\x14\x80\xc2\xab\xff\x06\x35\x5b\xf8\x1a\x4f\x44\x98\x22\x3d\xad\xc6\xe6\xa4\xc1\x6e\x22\xcc\xfd\xb5\x60\xbb\x29\x46\xac\x42\xa5\xf7\xd2\xfc\x56\xac\x7e\x79\x50\x1c\xe1\x43\xf9\x4b\x84\x8b\xdb\x4f\xb9\x65\xe5\x0f\x16\x8b\xfe\x12\xb8\xbc\x65\x4e\xb7\xe2\x6b\xc0\xc3\xfe\x63\x50\xaf\x57\xd8\xda\x25\x09\x1a\x14\x26\xed\x85\x46\x13\x6a\x56\x38\x0f\x37\xd4\xee\x5d\x0e\xf3\x61\x2f\x35\xcb\xf4\x1c\x91\x42\xdc\xc4\x1a\xf0\xf0\x2e\x3e\x5b\x6e\xfc\x18\xec\xf1\xa6\x01\xb0\xd2\xf0\x65\xd6\x70\xdd\xc0\x95\xbd\x0e\xec\x73\x0c\x09\x9e\xa7\xe3\xb8\x1a\x2f\xc8\x92\xa8\xa0\x68\xa2\x62\xd7\x7e\x2c\x4b\xa8\x80\x96\xc9\x8a\xf0\x1d\x35\xea\x4c\x28\x36\xa1\x24\xec\x32\xb5\xb2\xcb\x04\xcb\x2f\xcc\x37\x15\xaa\x05\x53\xbc\x39\xa5\x88\xb2\xaf\x57\xea\x55\xe5\xc1\x43\x5d\xfb\x6d\xa5\xa4\xdc\x31\xf1\x62\x5a\x8c\xf3\xee\xca\xe3\xaa\x36\x7a\x43\x4d\xbd\xac\x4d\xfc\x98\xc1\x05\xd8\x30\x64\x43\xb7\xb0\xdc\xc8\x79\x4e\x4e\x14\xe4\x12\xd5\x49\x21\x08\x69\xe9\xe1\x43\x7f\x3e\xef\xd4\x1e\xca\xcb\xf3\xed\x2c\x19\xd9\xe5\xa1\xc9\x61\xcc\x70\x0e\xdf\x53\xe7\xf3\x3d\xd5\x95\x0a\x93\xf4\x09\xb7\xd1\xff\x29\xaa\x94\xd8\xd4\x8f\x23\xf6\x96\x2e\xbb\x62\x37\xbf\xaa\xa7\x35\x3f\xa0\xa3\xc5\xf5\x8c\x89\x02\xfb\x43\x37\x41\xfe\xa1\x7c\x82\xe0\xfe\xfc\xa9\x19\x35\x7b\xf8\x78\x0d\xf1\x28\xce\x23\xb3\x8b\x61\x56\x84\x2d\x5f\xae\xff\xcf\xf8\x58\xbe\x51\x38\xb2\xe5\x30\xce\xaa\xe6\xf1\x80\x43\x62\x68\x9d\x99\x61\xb2\xdc\x35\x2c\x8d\x0d\x3f\xb8\xae\x46\xf3\x7d\x9d\xf8\x8d\x22\xcc\x34\x7c\xe2\x47\x13\x95\x33\xfe\xc8\x9d\xba\xb1\x49\x4d\x14\xd9\x88\xca\x3e\x88\x3c\x91\x1d\x82\xa1\x0d\x23\x76\xa8\x86\x3c\xd0\xdc\xa4\x28\x2c\xf1\x3f\x20\xa9\x10\x38\x93\xdf\xdb\x91\x49\x07\xf6\x71\x9f\x93\xdd\x52\xa8\xb6\x6f\x93\x2d\x94\xb6\x01\x2d\x39\xbc\x23\x6f\x26\x09\x9e\x5b\x4e\xf0\xe3\x6b\x94\x3a\xb9\xb2\xde\x11\xd7\x75\xd8\x50\xd6\x73\xb5\x56\xf2\xa5\xfa\xf2\x38\x49\x73\x32\x16\xf8\x59\xf7\xe9\x8b\xb8\x0a\x78\xf9\xb3\xf8\x86\xd6\x92\xff\x48\x59\xf3\x3c\x89\x6c\x9c\x87\x71\xd2\x52\xec\x26\x3f\x22\xbb\xc0\xd7\xb5\xec\x44\xf6\x40\x9c\x30\x8b\x11\x6b\x01\xd3\x27\x88\x2e\x70\xc3\x78\xac\x35\x4b\x36\xeb\xa5\xc9\xd8\xd7\x8e\x90\x12\xdf\x52\xe9\xf1\xad\x3a\x8f\xf5\xab\x07\xdb\xb9\x59\x74\xaf\x61\x6a\xd5\xc0\xf7\xd7\x9a\xc0\x4a\xb3\xed\x6e\x32\xb2\x0a\x30\xfd\x49\xa0\x08\xab\x3e\x51\xc6\x2e\x35\xbd\x63\x2b\x23\x46\x0e\x33\x9f\x13\xe5\xc8\xc2\xed\xa4\x81\x4d\x69\xba\x12\xc6\x03\x16\xd2\x00\x9a\xe9\x07\xaa\xf2\xf5\x67\x48\x1d\x50\xdc\x44\xde\x2c\x8d\x12\x35\x01\xf6\x83\x26\xfc\x53\x44\xc0\x4c\x6a\x5e\x22\x10\xb8\x1e\x78\x09\xa3\x29\xaa\x16\x09\x93\xbe\x87\x3c\x67\xe3\x22\xcd\xa8\xf4\x0a\xdf\xbb\x19\x78\x11\xda\xcd\x26\xb0\xad\x35\x69\xb4\x02\x55\x23\x29\x9f\x94\xef\xec\x44\x70\xe6\xe7\x4b\x3f\xea\x06\x51\x6f\x2b\x3d\xfb\x75\x05\x1c\x8e\x50\x90\x05\x76\x1b\xa1\xf7\x56\x50\x01\xd8\xb6\x1c\x6f\xce\x7b\x4a\x23\x03\x51\x2e\x4f\x75\x2a\xf0\xd1\x72\x12\xf7\x6c\xda\x2f\x22\x95\x5b\x5c\x09\x14\x7c\xf0\x4a\xed\xc7\xbc\xf6\x5a\x7b\x10\x25\x29\x55\x05\x45\x69\x6b\x4d\x69\x1c\x7f\x84\x15\xc7\x09\xbb\xac\x6c\x6a\xbf\x88\x3e\x43\xa7\x52\x90\x39\x6e\x56\xe9\x77\xbe\x30\xa3\x65\x71\x26\x6a\xd2\xe4\x92\x1a\x40\xbc\xa4\x60\x84\xac\xd8\x07\x97\xc2\x32\xd9\x58\xd8\x9d\xab\x95\x22\x55\xb9\x06\x22\x00\x40\x16\x56\x68\x91\xcb\x87\x2c\x63\xdf\x1e\xa5\x7d\x4f\xf1\x05\x74\x93\x64\xcc\x54\xbb\x78\xd1\x4d\x1d\x3d\xdc\x0c\x1e\x15\xe0\x7b\x1a\xc1\xf2\xa5\x88\x4a\x78\x94\x9f\x6f\x82\xed\x18\xa6\x32\x42\x1f\xd8\x34\x5d\x19\x99\xf2\x81\x08\x6d\xba\x50\xe8\xd2\xf9\x13\x72\x5d\x7f\x2c\xc0\xf6\x6c\xa2\x69\x3f\x46\x7d\x57\x87\x42\xd0\xb9\xe5\x7f\xd0\xc1\xd3\xfa\xe4\x73\x0a\x6a\x94\xdb\x34\x26\xb6\x72\x7a\x08\xaa\x54\x71\xd0\xd5\x30\x7c\x25\xce\xbe\x51\x18\xcc\x1f\x88\xfa\x8a\x1f\x68\xc1\x80\x08\xff\x7f\x5a\x54\x19\x70\xd3\xfa\x40\x80\xec\x7b\xa4\xfa\x15\x25\xc0\x77\xa5\x01\x37\xb5\xd0\xce\xf6\x8e\xf7\x1a\x61\x22\x93\xc9\x5e\x4d\x47\x5c\x03\xb6\xcc\x1e\x6a\xe7\x49\x9a\x17\x2e\xfd\x14\xaa\x1a\x4d\x61\x53\xe7\x68\x3a\xd8\x5e\x0e\x7b\x36\xae\x52\xe6\x5e\xd0\x94\xb9\x17\x2a\x7d\x6b\xbb\xb4\x32\x5d\xba\x73\xae\xae\x06\x0a\xc8\x82\x0c\x5d\x60\x01\xf4\x65\x05\x2f\x20\x15\xdc\x8e\xb5\xe3\x69\xef\x0d\x5b\x33\xfe\xfc\x5f\x51\xea\xdb\x3f\x50\xa4\x39\xe7\x27\x5a\xae\xd3\x90\xc0\x37\xe9\x99\x0b\xbb\x08\x4a\x7b\x68\xac\xad\x29\xc7\x70\x79\xa2\xda\xe5\x15\x0a\xa9\x3b\xa8\xcc\xf1\x4b\x1e\x59\x5a\xea\x9a\x34\x89\x94\x68\xd0\x65\x1d\xdc\x5f\xf6\x50\x90\x24\xce\x53\x43\xd6\x14\xd5\xc6\x6f\x06\x7e\x28\x97\x11\x00\x08\xa4\x4e\x39\xf2\x96\x41\xe9\x0a\x3b\x49\x17\x24\x9a\x4e\xf1\xe9\x80\x40\xf6\xcf\xe8\xb2\xd9\x9d\x86\x2c\x72\xa1\xdd\x29\x56\xa8\x92\x85\x25\xfe\xef\x70\xc0\x22\xdb\x57\xbe\xab\x68\xe2\x37\x98\xe6\x91\x59\x61\x39\x75\x58\xe3\x0b\x28\x01\xf1\x8d\x5a\x70\x93\x65\xe1\x20\x16\xf6\x2a\x3c\xb4\xe3\x0a\x9e\x7a\x3c\x90\x96\xe9\xd8\xa6\x69\x28\x6a\xe3\x08\x8c\xff\xfd\xc4\x73\xb2\x6f\xe8\xb1\xec\x0b\x4d\x23\xa2\x91\x83\x16\x71\x59\x6a\xa2\x84\x07\xae\xe0\x28\x63\x54\xed\x7d\xc5\x1e\x32\x2c\x7a\x60\x69\x85\xb3\xdd\xc2\x63\x46\x17\x01\xb5\x32\x47\xb3\x55\x25\xe0\xf2\x75\xc6\x8d\xa0\x02\xd4\x9a\xe8\x87\xa7\x72\x5e\xb3\x14\xc6\x20\x65\x14\x29\x6e\x3f\x8d\x79\x8b\x16\x1c\x9b\x8b\x9d\x81\x54\x2c\x64\xe7\xff\xea\xcf\xfe\xea\xcf\x4e\x11\x35\x92\xd3\x5c\x74\xc8\x55\x00\xb5\x85\xd6\x45\x19\x0e\x43\x86\x63\x5a\x77\xd6\x55\x07\xe2\x2d\x5a\x5f\x69\xbf\xd3\x2a\x88\xbb\x53\x98\x9c\x5e\x58\x08\x4d\x1e\x72\x8b\x5d\x14\x8e\x62\x8a\xe0\x21\xe5\x31\xd2\xf5\x97\x1d\x3d\x32\x71\xc8\xac\x2c\x3c\x2c\x45\x3d\x59\x19\x9c\x6a\xa0\x08\xfb\x42\x3b\xb2\x7d\xb0\x1a\x20\x33\x98\x56\xbd\xf8\xbb\x13\x95\x3f\x9c\x57\xe8\xba\x7e\x94\x14\x69\x98\x39\x1d\x47\xd1\x68\xa5\x2f\xcb\x37\x6e\x83\x31\xc3\xc8\x94\x97\x45\x5b\xd3\x93\xb7\xfa\x9c\x9d\x0f\xb6\x83\xcf\x66\x0f\xb5\xbb\x98\x60\x47\x8c\xf4\xae\xa6\xae\x7b\x57\x53\x76\x58\x43\x2d\x66\x0d\xc9\xbc\x84\xe8\x40\x3c\xf2\xe7\x15\x7d\x6f\xd6\x4d\x8b\x71\x11\x25\x05\x43\xb1\x2b\x5d\x79\xc9\x7e\x54\xd1\x3b\x2a\x0f\x54\x3f\x14\x7a\x1d\xd8\x72\xd0\xeb\xf0\xb5\x8a\x97\x3b\x36\xee\x0e\x47\x26\x5d\x9c\x56\xda\x4d\xdf\x40\xc9\x95\x6f\x14\x78\x12\x93\x2f\x7c\x1d\x28\x6e\xdb\x3c\x35\xb9\x1d\x84\x36\xa3\xf4\xc4\xe1\x29\x1c\x51\xf1\x0e\x95\x9e\x6c\xaa\x8c\x04\x01\x9e\x4a\x7c\x0e\xba\x7c\xb4\x89\x53\x32\xb5\x63\x22\xdb\x3d\x2c\xe4\x6b\x18\x6e\xe3\xeb\xd5\xed\x27\xfe\xc8\x42\x3b\xb3\x76\x11\x0e\x58\xa4\xb6\x68\x0d\x45\x1c\xdd\x01\x02\xc3\xdc\xc4\x6c\x1a\x18\x7e\x8d\x6f\x03\x63\x77\x43\xc9\xd9\x5c\x6a\xa4\x7e\x1e\x13\x4e\xd5\xb2\x06\x93\x56\x56\x13\x5c\xa0\xc2\x66\xf6\xb2\x27\x4a\xf7\x26\xce\x93\xbe\x91\xd2\x03\x97\xca\xf7\x63\x33\xde\xd0\xfd\xca\xde\x19\xc5\x63\x3e\xbd\xaa\x65\x25\x76\xcf\x78\x58\xd4\xf3\xd4\x64\xa4\x46\xf2\x8e\xbf\xbb\x5a\x25\x22\x73\x02\xaa\xd3\x35\x05\xd7\x03\xfb\xda\xa9\xed\x14\xfd\x7e\x15\xe6\xba\xa1\xd4\x27\x36\x9a\x28\x56\x4b\x67\x39\x94\xd7\xa0\xc7\xf1\x11\xac\x04\xdf\x34\x8c\x0a\x2e\x90\xaa\x4c\xae\xb5\xb3\x91\x5a\xc8\xac\xd4\xf3\x7e\x28\x49\x18\xbc\xcb\x64\xc9\x87\xbf\xd7\x55\xb2\x79\x5d\x0d\x8a\xe7\x36\x8e\x43\x6a\xce\xbf\xe4\xd2\x6c\x5a\x42\x38\xbc\x53\x3a\xff\x0e\x14\x57\xe0\xa9\x4a\x79\x2c\x4d\x80\x37\xc6\x82\x7e\x6d\x52\x91\xf5\xa5\x57\x71\x0f\x96\x42\x34\x38\x78\xb1\xef\xaa\x32\xf1\x92\x78\xa8\x40\x23\x79\x3c\xd6\xfa\x3f\x2a\x46\x02\x9b\x0f\x09\x6a\xa8\x5a\xc7\x6f\xa9\x59\xa9\xb7\x34\x2b\x7c\x9a\xe4\x49\xbe\x32\x46\x4b\x0b\x9f\x8e\x39\x5f\x01\xf2\x2b\x5c\xd5\x6d\x65\x17\xb2\x62\x4c\xaa\x94\x69\x06\x5a\x00\xa7\x3f\x71\x60\x9f\x8f\xfe\x2a\x60\x83\x64\x44\x9f\x81\x3a\xc2\x77\x02\x3f\x52\xca\x55\x3b\x1c\x94\xab\xea\x79\x85\x3c\xaf\x41\x44\xb8\x65\xde\xaf\x07\xe6\x64\x48\x4e\x40\xa7\x91\xe9\x24\x29\x51\xfe\x4f\xf9\x80\x0a\x9d\x48\x24\x29\x3b\xd0\x3d\xc7\xf6\xfb\xbe\x42\x73\xe6\x66\x8c\xb7\x97\xe8\xad\xe5\x38\x59\xcf\xd7\x2a\xd4\x2f\xcf\xb7\x3b\x69\x68\xfb\x2d\x9f\x94\x4f\xe9\xb3\x34\xb5\xfa\x13\x7e\x96\x2d\x4d\xba\x91\x19\x01\x8c\x0d\x8c\x29\x2a\x8b\xe7\x14\x14\x16\xb6\x0c\x5f\x71\xab\x89\x97\x32\x59\x46\xb9\x5e\x58\x93\x79\x02\x93\x6f\x54\x8d\x3b\x0f\x23\xea\x59\x1d\x71\x8a\x4f\x97\xc8\x1e\x8a\x82\xde\xf6\x6a\x55\x19\x92\x25\xe3\xb1\x8d\x87\x36\x1c\x31\x0f\xb5\x13\xb5\x2e\x7f\x91\xc8\x8c\x6d\x5f\x83\x17\x89\x72\x83\xcf\xe9\x83\xcb\x9c\x17\xff\x94\x72\x32\xa9\x35\x34\xf5\xdb\x75\x24\xcb\x68\x45\x80\x4e\x90\xaf\x6b\xa5\x93\xb9\xb9\x76\xc7\x44\x78\xa1\xca\xca\xd0\xf0\x91\x82\x72\x93\xac\x54\x37\xb5\x36\xe6\x9e\x86\x30\xdd\xaa\xfa\xe1\xf5\x9a\x82\x12\xe5\x2b\x36\xcf\x05\x4a\x48\x3f\x57\x50\xa1\x38\x7b\x82\x0b\xf5\xc7\x6a\x10\x9b\x65\xf2\xfb\x07\xa4\x8d\x79\x8d\x76\x22\x5f\xd7\xd2\x45\x37\xc7\x60\xa2\x28\x49\xe2\x6d\x9a\x66\x77\x2b\x9a\x92\xfe\x44\x0e\x22\x6b\xfb\x45\x24\x0a\x6d\xa8\xf2\x9e\x87\x7b\xe6\x1b\x4d\x86\x1f\x45\x45\x16\xd2\x5c\x95\x1f\x3d\x39\xa1\x6a\x23\x27\x2a\x87\x30\x5c\xcc\xa6\x14\xf5\xfb\x49\x3f\xcd\xd8\xda\x31\xa3\x42\x86\xdb\x93\x27\xfd\xdc\x56\x38\xdd\x52\x0c\x87\xf4\x45\x50\x43\x61\xae\x68\x84\xae\xeb\x14\x97\xc1\x13\xde\xaf\x14\xa5\xc3\xcc\x3e\x47\xaf\x42\x5c\xbd\x73\xd5\x0f\x9e\xef\x61\xcf\x83\x2d\xfa\xa1\x92\x19\xfe\x01\x8c\x02\xda\x7c\x77\x81\xf3\x81\x63\xbe\x02\xac\x17\xcc\xe1\x07\x2a\x10\x81\x5b\x75\x68\x8f\xf2\x18\x28\x56\xea\x97\x18\xf3\x7f\x86\xd0\x1e\x4e\x88\xdc\xfb\x72\xb6\xe1\x28\x02\x7e\x4c\x63\x11\x00\xa5\x3f\x46\x23\x25\x08\xbc\x2e\x06\x8a\x21\xf6\x92\xee\x6c\xd6\xab\xd9\xf3\x64\x2a\xe2\x81\x24\xd2\x52\x66\xa5\x2f\xc3\x37\x41\x9d\x52\xf3\x68\xdb\x31\xf0\xa2\x7a\xc3\x04\x3f\xaa\x91\x70\x13\xdb\x01\xfd\xa1\xab\x8a\xcd\xc8\xbe\x39\xb6\x5d\x3f\x6c\x0f\x0b\x73\x57\x05\x9d\x77\x15\x81\x9b\xc9\x93\x11\x07\x81\x78\x1a\xf0\x68\x7c\xdd\xd4\xe1\x8e\xc2\x25\x87\x96\x07\x52\xea\xb4\x9a\x72\x82\x02\x28\xaf\x5f\x65\x9a\xad\x57\x74\x91\x87\x88\x64\x0f\x3d\x1c\x3c\xb5\x8f\x02\x3f\x40\xf5\xc3\xc0\x93\x87\x7c\xbd\x4e\x64\x55\x86\xc4\xc4\x0e\xcf\x11\x02\xe2\x15\x9e\xe6\xe6\x9b\xda\xab\x28\xd4\xef\xa4\x61\x6f\x00\xd5\x2f\xae\x58\x05\xde\x31\xd4\xa9\xab\x58\x43\x26\xb5\xb9\x45\x20\xab\x18\xda\xa4\xfa\x7f\x6a\x52\x99\xc5\x71\xcd\xc4\x53\x81\x07\x70\x58\x48\x34\xe4\x76\x4f\xeb\xf0\xbe\x07\x17\x02\x55\xa1\xbd\xaf\x52\xd2\xff\x1b\xa8\x33\x79\x2d\x50\xac\x14\x98\xa9\xc3\x87\x30\x7c\x5e\x4a\x99\xf4\x55\xa4\x96\xa9\xc0\xa9\xc3\x22\xed\x0e\xa7\x7d\xeb\xfc\x92\x8e\x59\xce\x28\x46\x60\x26\xea\x80\x9d\x7b\x5f\xc1\x4e\x4a\x7b\x45\x8d\xe8\x69\xaf\x09\xc6\x50\x2e\xbc\xcb\x8e\x99\xfa\xa8\x0b\x8f\xe5\x4e\x9e\x52\xd6\xe6\x67\x9e\x6b\x39\x46\xab\xc7\x57\x15\xff\xf2\x16\x51\xa7\xe0\x44\xdd\x66\x7b\x8b\xa1\xdf\x5b\x04\x4e\x91\x24\x83\x3e\x13\x39\xdc\x1a\x99\x5a\x54\x17\x6e\xe1\x08\x31\x17\x4e\xa0\xa6\x0a\xb6\x54\x77\x61\x37\x91\x13\x08\xd0\xb0\x3c\xce\x4e\x9b\xc1\x4f\xf4\xdc\x25\x24\x17\xf6\xec\x3a\x7e\x09\x0a\xdb\x20\x66\x12\xf9\x49\x45\x69\xf2\x16\x2a\x31\xc2\xf2\xa0\xe1\x41\x69\x5a\x8c\x31\x82\xe9\x98\x5e\x6e\x06\x9e\xe0\x60\x43\x15\x17\xd6\xd4\xf9\xe8\x26\x51\x31\x8a\x77\xb6\x5e\x78\x81\x21\x4f\x18\x4c\xc0\x76\xb8\x5b\x65\x1c\xf3\x03\x9d\xe7\x90\x55\xf1\x2b\x6a\x81\xc3\xe1\x7d\xed\x65\x93\xb2\x5b\xe0\xf1\x49\x25\x25\x72\x49\x31\x83\xf4\x93\x74\xc4\x5a\xfe\x8e\x06\xca\x8d\x96\x41\xf9\x15\xb1\xcd\x9d\x89\x4e\xbb\xc8\xf6\xa1\xb2\xd4\xaa\x91\xe9\x1d\x58\x40\x8b\x69\xe5\x98\xed\xb5\xf4\x98\x8b\x1e\x7f\xd9\x26\x3b\xf1\xc2\x0b\xed\xb9\xb9\x27\xd4\xa8\x16\x57\xe4\x80\x44\xbe\xa3\x94\xa9\xff\x06\x27\x09\xdb\xe4\x07\xb4\xac\xf0\x76\x37\x14\x64\x7b\x8d\x8c\x89\x14\xfd\x4a\xa3\x2f\x35\x3f\x5a\x13\x1c\xb0\xad\xc0\x17\xa4\x2e\x34\x8d\xc9\xe7\x49\x14\xf1\x2a\x62\x97\x5c\x54\xad\xa2\x8b\xea\xe0\xe5\xc3\xa4\x18\x0c\x3f\xd3\x72\x04\x03\x8f\xa1\xd3\x8f\x1f\xfb\x61\xa0\x92\xed\x0b\x8a\x9d\xe8\xb2\x6e\x0c\xa2\x4c\x8b\x1a\x37\x34\xf7\xf1\x56\x0c\xf8\x61\xe5\x8f\xc0\xab\xb6\x23\x14\x46\x99\xe2\x2a\xbc\x31\x5e\xc1\xfa\xe5\xe8\x95\x08\xda\x0a\x80\xe0\xbb\x6a\x1e\x72\x14\x76\x17\x2d\xcf\xf6\x0b\x96\x81\x5e\x28\x28\x07\x45\x1a\x95\x2c\xae\x24\xbb\x5b\x8e\x9a\xe7\x04\x80\x96\x00\x21\x6d\xd0\x69\x61\x12\x74\x5a\x77\x47\x88\xee\x83\x8a\xb5\x40\xc9\xc2\xa1\xf2\x8a\x9f\x7a\xd9\x4d\x31\x44\x84\x8b\x5a\x51\x0d\xd1\xb3\x4a\x17\xee\xac\xae\xaa\xdb\x37\x8a\x30\xb5\x3d\xcc\x38\x32\x98\x32\x50\x62\xfb\x1b\xea\x39\x81\x88\x0a\x4d\x6b\x9e\x26\x90\x89\x4f\x5f\x38\xec\x5b\xd2\x35\x83\xa8\x81\x7e\x06\x7c\xdd\xc4\x8b\xd7\x31\xaf\x43\x7e\x0f\x50\xb4\xc7\x10\x43\xf1\xcd\xea\x76\xce\x8d\xc3\xfb\xda\x43\x9b\x4e\xa3\xfa\xcb\xfa\xc3\x88\x6c\x44\x56\xae\x5c\x45\x84\x53\xb7\x81\x08\x46\x96\xb3\xa3\xa6\x44\x4a\x38\xb5\x61\x68\x97\x88\x2a\xd9\xeb\x50\x53\x44\x8e\x04\x0e\x89\xd6\x2d\x25\x09\x97\x15\x59\x6e\xc2\x18\x9a\xa1\x0e\x87\xff\x10\x70\x05\xbe\x51\x06\xcd\x8e\x3a\x91\x55\x4a\x4b\xd2\x4e\x54\xad\xc5\x06\x95\x8b\x85\x76\x3f\x4c\x59\xf6\x0a\xe1\x17\xa4\x96\xd4\xbe\x5c\x70\xf4\x54\x0d\x85\xde\xa1\x35\x2c\xfb\xf5\xe0\x9e\x86\x0c\x73\x7f\x5e\xe6\x59\x94\xfc\xb9\x1d\x48\x19\xd6\xf1\x2d\xfa\x58\xf8\x82\xfe\xba\x15\x86\xf0\x65\x9b\x93\x4e\x9f\x53\x42\xdb\xef\x54\xd1\x1a\x65\x04\xb3\x22\xed\x9b\xae\xc4\x1e\xa8\x9b\x5f\xd3\x7a\x67\xd7\xd4\x40\x68\x32\x2a\x53\xea\x2f\x1f\xe1\xa7\xc0\xd8\x54\xb1\xbd\xd8\x01\x62\xd3\x1d\x0f\x49\xd8\xcb\x93\xe5\x78\xb7\xd2\xa4\x99\x28\x9a\xfb\xef\x92\x55\xc6\x86\xf8\x78\xe2\xfb\x5d\x1f\x06\x7e\x5c\x63\x6a\xa6\x4a\xb7\xbd\x7f\xd6\xf1\x90\x3e\xaa\x65\xb0\x9c\xa4\x11\x27\x8d\xf2\xa7\xf4\xa1\x7c\x53\x4b\xfe\x66\x0f\xb5\x7b\x45\xde\x1d\x32\x96\x16\x7e\x1f\xc0\x57\xb4\x37\x9e\x9d\xf1\x51\x24\x43\x55\x28\x50\xfd\xfa\x73\xab\xf2\x4b\xb3\x70\x14\x46\x06\x4d\x3b\x14\xc8\xc1\x6e\xc7\xd7\x0a\x52\x6e\x8e\x25\xfd\x3e\xfd\x1d\x3c\xcd\x34\x4d\x5d\xf0\xf5\xcc\xf3\x4a\x26\x32\x33\xe3\xb1\x75\x2a\x2e\xce\x54\xce\xcd\x39\xc1\x24\x9f\x63\xe5\x26\x5c\x36\xb1\xcd\x2c\x42\x59\xa7\x78\xe6\xa6\xfa\x20\xf7\x20\x8a\x1d\x15\xb4\x93\xe9\x50\x47\x19\x31\x14\xf4\xb6\xf8\x5a\x9d\xb4\x30\x5e\x4a\xa2\x25\xeb\xd4\x85\x11\xdc\x1c\x57\x2a\xe4\xc7\x95\x2d\x1b\x25\x71\x66\xe2\x9c\x41\x06\xa2\xf0\x40\x9b\x58\x8a\x84\x4a\x7a\x25\x0d\xf3\x30\x1b\x3e\xe5\x41\xaf\xf7\x26\xfe\x8b\xf3\xbc\x8e\xe2\x58\x9f\xd7\x53\xf2\x22\xe9\x78\x03\xfb\x51\x8a\x98\x78\x94\xf0\x41\x18\xe9\x45\xe2\xcc\xf3\x15\xa8\x5d\x6f\x68\x34\xff\xd4\x8c\x6f\x7d\x9d\x83\xe3\xe1\x9b\xda\x86\x39\xb0\xaf\x9d\xe5\x45\x77\x11\x99\x46\xe5\x30\x8b\x2a\xa6\x33\xff\x61\xdc\x4d\xa2\x98\x01\x04\x48\x91\x7e\xa0\x14\xd7\xae\xa9\xa2\x3e\x1c\x08\x4c\x2d\x57\xa9\x04\x90\xff\x39\x85\x44\x29\xa4\x53\xab\xa2\xd4\xdf\xc6\xa7\xf3\x4d\xa0\xd8\xae\x46\x96\xf5\x6f\xdc\x8c\x51\xf9\x9d\xf9\x26\xd0\x65\x74\x1b\x77\x8b\x51\x07\xc8\x59\xf5\xa0\x82\xca\x0c\x9a\x80\x72\xfa\x91\xc9\xe1\x57\x10\x75\xac\xeb\x10\x64\xbd\xd6\x5a\x9a\x9b\x6b\x67\x51\x88\x8d\x8c\x12\x20\x6b\xb4\xf1\x8d\xe2\xfd\xe9\x14\x69\xcc\xe0\x30\x49\x50\x7d\xcb\xe0\xe2\x23\xc1\x29\xe6\x98\x1d\xb5\x14\xbf\xc1\xba\xa2\x46\x5d\x77\x4d\x95\x4e\x6a\x8e\x59\xa6\x21\xc1\x4f\xfa\x21\xd9\x20\xbe\x76\xc4\x2a\xa3\x22\xca\x43\x42\x96\xae\x4c\xa9\x0c\x69\x53\xf5\x71\x5b\x33\x5e\x62\x7e\x4b\x41\x25\xba\x45\x34\x4e\xc3\x5c\x9d\xf0\x77\x14\x6c\xef\x9d\x89\xa7\xf7\x1c\x17\xd9\x70\xb7\x22\xc8\xbf\xa4\xe7\xbf\xc0\x33\xca\x23\x11\x94\xe0\xe3\x99\xad\x05\x6a\x86\x65\x4d\x69\x07\x71\xf3\x49\xd8\x79\xea\x84\xc7\xb3\xed\x61\x38\x28\xbd\xb5\x0f\xd5\x78\x70\x12\x96\x16\xd3\x03\xd8\x71\xeb\xf0\xa0\x40\x10\x3e\x74\x1d\xd3\xac\x18\x8d\x4c\x1a\x46\x2b\x94\x47\x09\x5e\xa8\x7c\x3f\xe4\x1e\x68\x25\xab\x46\xc2\xac\x9b\x96\xf5\xf8\xb0\x6c\x58\x60\x16\x12\x9d\x8f\xb7\x00\xdd\xe4\x1b\x3f\xc8\x3e\xb4\x51\x6e\x53\x86\x32\x3a\x56\x40\x4f\x11\x08\xcd\x54\xc9\x1c\xb4\x5c\xe6\x08\x01\x8c\x14\x0c\x55\x8d\xf4\x92\x9b\x0a\xb2\x71\x9e\xda\x71\x6a\x63\x5b\xa4\x53\x7e\x4c\x03\x8e\x1d\xc7\x71\x4b\xc3\x17\x37\x14\x80\xc8\x0d\xb9\xf9\x7e\xe3\xad\x40\xf1\x6c\xbc\x3d\xf1\xf9\x3f\x26\x72\x11\xb4\x1e\xd7\x5e\x60\x14\xa6\x66\xa7\xe7\x2a\x7b\x80\x68\x1a\x81\xd9\x99\x89\xc7\x83\x5f\x03\xb3\x94\x8c\x7d\x7a\xa2\x82\x8d\xe0\x73\xba\xe6\xed\xa8\x16\xca\xef\x81\x07\xba\x89\x3c\x92\x6f\x34\x52\x33\x35\x3d\x68\x14\x21\x23\x42\x60\xc9\xd7\x35\xbe\xe3\x85\x03\x0b\x10\x51\x52\xa8\x7a\x1c\x87\x5b\x58\x21\xbe\xa9\x15\x7e\xca\xc8\xc9\x66\x5d\x13\x99\x38\xe7\x2f\xe6\xa8\xb3\x74\x1f\xda\xbb\x8d\xbc\x18\x75\x22\x67\xda\x84\x1a\xc8\x47\xa3\x97\x54\x76\x62\x47\x1d\x93\x2e\x4e\xfb\x48\x01\x27\x46\x7e\xad\x27\x21\x86\x5a\x16\x5f\x57\x3c\xdf\x30\x8c\x3f\xeb\xcb\x33\xb7\xa9\x40\x86\xfd\x7f\x93\xac\x02\x8a\x93\xd0\x00\x61\x37\x03\x5a\x2b\x44\x81\x4f\xae\xaa\xd9\xa8\x87\x70\x2c\x22\x1a\x5b\x1e\x58\xc1\xad\xd3\x53\x50\xd4\x22\x7e\xd2\xc9\xe3\x67\xee\x83\xb0\x97\x33\x54\x54\x93\x10\xba\x6d\xd1\x4f\xc1\x1a\xef\x70\x8c\xb2\x91\x59\xe1\xea\xb0\x92\x0f\x92\x9e\xff\x49\x55\x3f\xcb\xba\x91\x4d\x93\x2c\x64\x35\x98\x1f\x87\xa7\x61\x6e\xae\xdd\x8d\x0a\xe1\x99\x13\x51\x66\xdf\xaf\xbe\xd4\x00\xf4\x3f\xd8\x1e\x59\x13\xe7\x98\xd8\x95\x9c\x5b\x21\x7f\x30\x01\xab\x16\x41\x46\x0e\xff\xb4\x09\x1b\x97\xda\xac\x5b\xa0\x8d\x89\xa0\xed\xa6\x62\xd7\xac\x33\x28\xbc\x3c\xdf\x4e\x4d\x14\x85\xc2\x9a\xc9\x18\xac\x40\x3d\x1e\x3f\x5e\x5a\xba\x80\x30\x0a\x8d\x48\x49\x3a\x22\x26\x17\xd4\x3c\x35\xa3\x34\x7b\x76\xae\x36\x2c\xcf\x28\x8c\x13\x98\x0d\xa9\xa9\x53\x93\x08\xd5\x4b\x74\x35\x51\xb4\xbd\xd7\x30\x8e\x33\xdb\x5e\x0a\x07\x34\x88\xc1\x8d\x04\x87\x41\x74\x83\x94\x75\x5d\xa2\xfd\xfb\xdb\x99\x1d\x85\x26\x8e\x0b\x13\xd1\xab\xa4\x7a\xad\x2a\xd9\x2e\xea\x48\x3a\xaf\x83\xbd\xd3\x1b\x83\x53\x14\x68\xf0\xb5\x3e\x46\xbd\x30\x67\x18\x4a\x23\xbc\xd6\x25\x00\x45\xba\x68\xd1\x88\x42\x9f\xe6\x78\xe0\x07\xb2\x79\xa4\x43\x22\xe7\x86\xb2\xf1\x38\xb5\x83\xd8\xc4\x5a\x47\xfa\xd3\x40\xc3\xea\x54\x03\x20\x1d\x14\xdc\xc3\xf0\x59\xdc\x49\x78\x2a\x09\xe1\xb7\xa3\x4d\x89\x4b\x73\x60\xe3\xbc\x4c\xef\x62\x16\xe9\x45\x45\xfc\x4e\xe0\x06\x6f\xff\xce\x1d\xbf\x0b\x4c\x9a\x53\x14\x35\xa5\x58\xcd\xce\xa2\x0a\x87\xf6\xfd\x96\x12\x09\x79\x6c\xc6\x07\x60\x61\xcf\xc6\xc4\xc1\xd3\xdb\x43\x2f\x75\x7d\xe9\x72\xad\xf1\xd2\x75\x05\x52\xdf\xd0\x20\xec\x8f\xb4\x7e\xf4\x47\x08\xc5\xdc\x00\x43\x79\xe4\x5d\x37\xdd\xb1\x73\xdd\xf0\xc4\xb0\x2b\x31\xe8\x56\xdc\x58\x39\x02\x5b\xbe\xae\x40\xeb\xc2\x3c\x34\x70\x07\x9a\xe2\xcf\x23\xd8\xeb\xf1\xc1\x8b\xed\x6c\x6c\x15\xea\x56\x3a\x5a\x7e\xe8\xe6\x56\xf0\x19\x3f\xc7\x57\xb0\xd0\x09\x0a\x56\xa7\x35\x2a\xee\x74\xf0\xbc\x12\xc5\xeb\x27\x29\xda\x85\xc0\xe2\x3b\x05\x12\x97\xc5\xdc\xd6\xc5\x4b\x8c\x00\x53\x69\xee\x17\x9f\x21\x5e\x6d\x94\x38\x4e\x68\x94\x34\x7a\x80\x9a\xb3\x85\xff\x28\xa8\x10\xc9\xea\xcc\x78\x29\x8c\xa8\xd0\x83\x1d\x4a\x75\xac\x05\xad\xd8\x50\xe5\x58\x40\x4d\x96\xd5\x67\x5c\xc7\xda\xbf\xf7\x5f\x71\x7a\xc1\x77\xb5\x68\x97\xb8\xeb\xac\xd6\x81\xdb\xa6\xa9\xdd\xa0\xd2\x42\x1c\x7b\xac\x87\x0b\x7a\x1e\x9e\xe6\x17\x82\x95\x96\xd3\x9f\xbb\xe8\x4b\x05\x71\x37\x94\x84\x8c\x8d\x2e\x6d\x09\x31\xc0\x9e\xc8\xb2\x3b\xb4\xcb\x0a\xbb\xcd\x93\xb0\xa2\x88\xd6\xa4\x40\x1b\x5b\xdb\x23\x9c\x0f\x56\xe3\x4c\xa0\x68\x0e\xff\x90\x7c\x92\x8c\x7d\x35\x98\x63\x16\xfa\x6e\xa9\x92\xdd\x71\xa5\x93\x7c\x5c\x83\x3d\x8e\xb1\xf0\xbb\xa6\xe7\x66\x86\x4a\x9c\x1d\xb1\x8f\xbe\xbe\xbb\x68\x53\xe1\x2d\x14\x26\x7e\xb7\x6f\xfe\xf7\x66\x13\xfb\xf2\x38\x4d\xfa\x21\xb0\x27\x08\x9d\x91\xdf\xf3\xb5\x5a\xa8\xdc\x8c\x6c\x4b\x29\x52\xf0\x2e\xf0\xd8\x70\x15\x05\x8e\x93\xcc\x62\xd4\x41\x66\x92\x7d\xdc\xa6\xe9\x35\x86\x2b\x9d\x34\xec\x11\xd3\x50\x25\x15\x76\x6c\xb0\x2e\x03\xb9\xa4\xca\x73\xdf\x0a\x3c\x14\xf7\x9d\x40\xa1\x49\x6f\x4e\x7c\x21\xff\x92\x66\xc4\xe7\x01\x00\x11\x7f\x76\xd8\xc8\xa1\x89\x07\x76\x77\x4b\x98\xeb\x5f\xbf\x31\x51\xe2\xb4\x0f\xb5\xbd\xff\x0f\xf4\x5d\xd0\x83\x69\x29\xe8\xd0\x07\x81\xa2\xa3\xbe\x30\x51\x79\xef\xed\xca\x39\x4b\x4c\x6f\x4f\xf9\x0e\x48\xa9\x3f\x51\xc8\xf2\x93\x13\x8f\x74\x44\x83\x0c\x41\x14\x1a\xce\x28\xf6\x9d\x41\xc0\x8a\xb8\x64\x03\x6b\x84\xd8\xec\x9b\xba\xda\x34\x51\xc0\x90\xd4\x2e\x95\xe7\x46\xf5\x73\x7f\xa8\x49\x4a\x69\xa5\x58\xbf\x39\x50\x82\x46\x57\xd5\x06\x8c\x63\x9c\x54\x99\x14\x50\xf0\x90\x4f\x3c\x7b\xb9\x29\x06\xc3\xdc\xa6\x53\x6a\x38\xfd\xa2\x12\x2e\xfd\x54\x15\xe5\x6e\xd7\x66\x1a\x0f\xbd\xda\xce\x4c\xdf\xd2\x60\x18\x9d\x42\x3c\xc8\x93\xaa\x77\x75\xb2\x36\x41\xe1\xe6\x36\x93\x28\x34\x34\x5a\xeb\x19\xa7\xb9\xd3\x25\x20\xcd\xcf\x78\xa4\x21\x55\x42\xdd\x59\x38\xaf\xf0\x91\x0c\xc8\x43\xfa\x9e\x16\x04\x49\xdb\x46\x3a\x75\x45\x91\x4e\x5d\xd1\xfd\xb3\xa8\xb0\xe3\x34\x64\xf0\x16\x93\x63\x4e\x3c\x18\xfb\xb6\x62\xa8\xb4\xa3\x30\x36\x99\x1e\x28\x07\xe6\x1d\x01\xd1\x1d\x98\x11\xee\xd7\xb9\x6c\xcf\x8e\xc6\x51\xb2\x62\xf1\x2a\xd8\x88\xcb\x81\xc7\xf6\xb3\x7f\x11\xd1\x4e\xc5\xf5\x99\x8c\xc6\x45\x99\x26\x3e\x4e\x8b\x83\xb2\xd7\x3a\xf5\x1c\x58\x91\x5d\x0d\x2c\xef\x82\xd9\x47\xd3\xfc\x77\x02\x0f\xbe\x5b\x0d\x54\xd1\x0c\xa1\x26\xb2\xf5\xeb\x13\xa5\xf4\xc9\x1c\x93\x7c\xa3\x50\x55\xc3\x32\x6b\xb1\x2d\x0a\xe0\x05\x60\x52\x7e\xaa\x20\x4f\xea\xd6\xf5\xa5\x76\x27\x14\xc1\x2a\x78\xc1\x6f\xe3\x48\xf2\x8d\x0b\xe4\x96\x01\x3e\x45\x51\x0f\x3b\xed\xcf\xe8\xbd\xb5\xf6\x3c\x23\x70\xd4\x80\x5d\xc7\xe4\x79\x64\x81\xf3\xc2\x99\xb9\x39\xf1\xe8\x93\xa7\xe8\x60\x3b\xe2\x4d\x4f\x12\x72\x4e\x67\xdf\xa9\xc9\x99\x5b\x4f\x58\xd0\x7c\x28\xf0\x1d\x4d\x4f\xaa\x87\xba\x7a\xa1\x89\x56\xca\x64\xc3\xa7\x62\xb7\x54\x31\xf7\xd6\x36\x3d\x98\xec\xf3\xf4\x15\xe1\xef\xde\x82\x8f\x47\x10\x7d\x8f\x1e\x0f\xd3\x64\xa2\x42\x00\x67\x75\x26\xa8\x0a\xb9\xbd\x22\x18\x92\x53\xec\x94\x45\x87\xb9\xfc\x54\xc4\x05\x0f\x90\x9a\x29\x75\x5b\xc1\x8d\x5d\xc6\xf3\xc5\x97\xc3\xa4\x36\x83\xc4\xa9\xd0\xcc\x00\x64\xea\xb4\xe1\xb1\x7f\xa8\x03\x9d\x1d\xab\xfe\x28\x63\xe4\x01\x86\xf3\x5b\x34\x4d\x84\xf0\x6f\x8a\x58\x63\xe4\x00\xd2\xfe\x43\x25\xeb\x0a\x6c\x1d\xea\xec\x17\x15\x76\x6b\xfe\xc0\x2b\xf0\x87\x8a\x50\xf7\x01\x1f\x00\x74\x60\xeb\x4a\xda\x65\xa6\x9d\x27\xe3\x96\x07\x09\xae\x2b\xc5\x2e\x3d\xc8\xc3\x75\xea\x3d\xe5\x4f\xe5\x6a\x05\xfd\x3c\x57\xb9\x70\x6a\x33\xe7\x70\x28\x58\x9b\x8b\x96\x53\x74\xba\x14\x74\x8b\x55\x53\xf8\x86\x9a\x52\xfc\xf2\x1a\x3f\xfb\x8b\xed\x71\x11\x2f\xb6\xfc\x6e\x38\xa3\x12\xf6\x33\xaa\x7b\xbc\x1c\x76\x17\x79\xfe\x45\x82\x63\xdf\x31\xab\x27\x9f\x87\xf7\xb5\xad\xf1\xa7\x04\x59\xf3\x59\x85\x0e\x04\xd1\x2c\xea\xbf\x7f\xe4\x6c\x65\x19\xa1\x1d\x63\x21\x00\x21\x0b\xf5\xad\xd6\x9d\xc8\x01\x11\xe2\xdc\x9f\xf8\x07\xfd\x27\xca\xf9\x64\xc9\x52\x68\x73\xd4\x81\x1c\x37\x48\xb9\x36\xf8\xac\x7f\xae\x65\xfe\x1f\x56\xa5\xc5\x7e\x42\x99\xb0\x78\xc9\xa6\x19\x20\x75\x54\x88\x17\xa0\x5e\xf9\xad\x05\xc0\xf7\x8c\x82\x10\x9a\x41\x18\xb3\xb9\x81\x79\xbc\xaa\x4c\xe5\x55\x65\x1d\xf3\x34\x29\x54\x3d\x85\xfd\x23\x1e\x9f\x38\xcb\x06\x24\x1c\xf1\xf7\xa1\xb6\xdd\x84\x3e\x95\x12\x5a\x18\xf7\xc2\xa5\xb0\x57\x38\x40\x1c\xaa\x03\x67\x55\xa5\xe0\xac\x67\x94\x23\x43\xed\x1e\x92\x13\xe9\x72\x78\x53\xc6\x30\x48\x85\x61\x3b\xbc\xad\x8c\x90\x6d\x77\x31\xb2\x59\x16\xdb\x0c\xc2\x28\xae\xd4\xa3\x4a\x40\xdb\xd3\xed\xb9\xb9\x83\xed\x2c\x4f\x8b\x6e\x5e\xa4\x9c\x3b\x09\xef\x91\x37\x10\xbe\xea\x38\x32\x91\x59\xc9\x42\x33\xd5\xfa\xa5\x5f\xf4\x73\x01\xae\x5a\x7f\x17\x6e\x17\x3b\xfc\xc2\xa3\xe9\x50\x8c\x63\xd9\x03\xd6\x84\x81\x58\x7c\x53\x31\x82\x7b\xcd\xde\x9d\x8a\xe5\xe5\xf1\x19\x4f\xf6\xcb\x1d\x6f\xd4\x84\x3e\x54\xac\xb2\x68\x58\xc2\xb0\xeb\xd8\x75\x6c\xb2\x64\x5b\xe7\xbb\x7c\xd4\xbe\xf3\x8d\x3f\x3b\x66\xc6\x49\x6e\xbb\x2d\x35\xb8\x0c\x37\x29\xe0\x55\xaf\x6e\xdc\x1b\xd8\xdc\xa4\x48\xa7\xd1\xf7\x03\x1e\x81\xaf\xf5\x90\x4a\x9e\xa7\x86\x6a\x0e\xa5\x11\x77\xe7\x56\x8d\x90\xeb\x59\x2c\xe2\x1e\x87\xff\x13\x19\x4e\xda\x6f\x62\xd6\x3f\xab\xc6\x7a\x4c\x17\x09\x0e\x07\x57\x95\x40\xeb\x39\x15\x08\xb2\x54\xe6\xae\xd6\x11\x09\x14\x37\x54\x3c\xbe\x01\x27\x82\x0c\x6a\x1d\x1e\x81\x6f\xe0\x77\xf8\x25\x14\x31\x0a\xba\xc5\xff\xbc\x41\xb2\x64\xd3\x98\x0b\x25\x88\x20\x98\xdc\x88\x6f\xaa\x52\x39\xdd\xa4\xa5\x31\x40\xc7\x27\xba\x65\xe6\xeb\x9d\xfd\x70\x30\xa4\x43\x81\x3f\x46\xe0\xcb\x58\x24\xa4\xaa\x3c\xba\x84\xcd\x71\x43\xd5\xf5\x52\x6b\xfa\xfd\x30\x1d\xa1\x09\x83\x52\xfc\xa6\x1a\xe3\xdd\xac\xd5\x71\xe7\xe7\x0f\xb2\xf1\xa0\x20\x91\xc4\xbf\xdf\x27\xef\xf2\xbe\x6a\x91\x27\xe9\xc0\xc4\xe1\x31\xff\xa5\xf4\x0c\x24\x22\x81\xdf\xd7\x1d\xef\xcb\x0a\xae\x6b\x4d\x16\x46\x90\x1e\x46\x9c\x70\x59\xc3\xc0\x2e\x92\x4b\x47\x21\xf7\x61\x2d\x69\x3c\xbc\x6f\xa1\x3d\x4e\x92\x14\xa2\x6c\x82\x8c\x84\x1b\x13\xae\x81\xed\x46\x81\x40\xf9\xdd\x64\x34\xc2\x74\x6a\x4b\xa1\xf8\x40\x31\x21\x34\xdb\x5e\xc5\xc3\xbe\x99\xdb\x34\x36\x11\xcc\x9b\x63\x34\x99\x97\x14\xe4\xbc\x8a\xeb\x46\x09\x94\x67\x7c\x9f\x0a\xec\x3d\xd2\x8a\x2a\x3f\x41\xbc\x8a\x22\xba\x44\x0d\x43\x84\x9a\x94\x68\xed\x72\x18\xf7\x58\x56\xfe\x25\xd1\xb6\x9c\x78\x48\xc7\x35\x05\xe0\xdb\xa8\xf4\xf5\x3b\x26\x9d\xd6\xc2\x77\x7a\x0e\x04\x7b\x5c\x14\xf1\xe8\x44\x49\xe7\xe1\x51\xad\xb2\xd4\x9a\x88\x68\x6e\xfc\xa8\xeb\x3e\xcf\xaa\xeb\x1a\x0c\x7b\xe0\x02\xf1\x0f\xf5\x32\x28\xb1\x89\xbe\x29\x43\x34\xae\x1a\x33\x37\xe7\xaa\x34\x4d\x40\xd0\xd4\x0e\x8a\xc8\x50\xc5\xd1\xc9\x4a\x6c\xa8\x8c\xad\x4e\x74\x7a\x60\x5f\x7b\x31\x4e\x96\x05\x0f\x8c\x0e\xf6\x69\xd5\x9d\x3f\xad\x30\xfc\x26\xcd\xc3\x2e\x31\x1d\xd1\xb1\x60\x3e\x10\x25\xa8\xf3\x87\x95\x23\x94\x51\x31\x0f\x47\xc8\x71\x8e\x38\x79\xd7\x5f\x7b\xa4\x81\x1f\x38\x3e\x4f\xd6\x64\x0c\xfc\xb8\xf6\xdb\xca\x20\x8f\x8a\xee\xf0\x49\x7a\x72\x08\x0f\xb6\x50\xe5\xc3\xe1\x78\xa0\x52\x93\x35\x0a\xc2\x60\xd5\x76\x68\x4e\x3c\xea\xae\x3d\xb8\xa1\x14\xd0\x3e\xd2\x98\xbe\xe3\x64\x61\x91\x35\xb0\xc2\x35\x93\x05\x05\xaa\xaa\xb6\x55\xfb\x21\x2f\xb6\xb3\x22\x4d\x6d\xdc\x93\x96\x8e\x28\x1e\xc3\x84\x88\x2e\xa1\x8f\xc9\x86\xd6\x44\x39\x5a\xf4\xd8\xf2\x9b\x6a\xe2\x9b\x91\x73\x38\x23\x77\x55\xbd\x15\xba\x95\x38\x16\x3c\xbd\x24\xce\xa8\x0c\xdc\x1d\x47\x7d\x79\x16\x65\x42\xd0\x0f\x8f\xb3\xa0\x3a\xfc\xc7\xfd\x40\xc9\x1c\xbc\x4d\xdf\x12\x96\xf7\x3b\x81\x70\x7e\xf6\x7b\x46\x4d\x2f\xdf\x9a\xa8\x7c\xff\x56\x03\x5e\x9e\xe5\x3b\x68\x32\x8b\xdb\x5a\x88\x3e\x6e\x22\x88\xe3\x1b\x35\x97\xd6\x2d\xa2\xbc\x48\xed\xae\x96\xe3\xbe\x79\x8c\x0c\x42\x85\xc4\x04\x46\xfc\xac\x2a\xa4\x9c\x9f\x68\xf3\x0e\xd5\x2f\xb4\x99\xde\xae\x05\xb3\x44\x5f\x35\x1a\x39\x62\x37\x97\xc5\x3a\x10\x28\x02\x01\x11\xf2\xa7\x8f\x94\x49\xeb\x26\x56\x84\x34\xec\x83\x64\x40\x74\xd1\xe8\x87\x6a\x3e\x7b\x6c\xab\x7f\xa9\x52\x90\x2f\xbf\x7a\x80\xec\x03\x45\x1e\x9f\x7f\x76\x46\x2d\xe4\x4e\xc5\xdf\x89\x24\x89\xc9\xa0\x6b\x06\xfd\xd0\xab\xed\x91\x35\x59\x91\xda\x29\xcf\x0e\xfc\x30\x50\x06\x62\xe2\x61\x19\x9b\x5a\x64\x3c\xcb\x92\x6e\x28\xf1\xf0\x61\x11\x82\x04\x5d\x0f\x5f\x6b\x36\xb1\xa8\x67\x53\x90\x85\x8a\x30\xe1\x45\x35\x45\x74\x47\x4d\x17\x9d\x9b\x78\x59\xcf\x28\xc9\xa0\xf4\x8d\x97\xdc\xe7\x67\x84\x0d\x7d\x8b\xd6\x18\xe7\x99\x67\x61\x78\x3c\xb8\xb6\x8f\x4a\xa3\xd6\x0b\x33\x0a\x7e\x9c\x0f\x92\x49\x16\x1f\xc1\x6f\x36\x21\xb2\xc7\x91\x89\x63\x4f\x2f\x21\xcb\x42\x6f\x01\x48\x22\x22\x64\x61\xc1\xf4\x53\xf5\x8c\x68\x12\x4b\xeb\x5b\xbb\x44\x73\xf9\x84\x27\xac\xfc\x6f\x81\x52\x16\x43\x5f\x19\x96\xe3\x0c\xa2\x1e\x01\x39\xfb\x62\xc8\x1d\xc5\x10\xff\x26\x6c\x0d\x36\xdb\x39\xc2\x93\x01\x05\x79\x33\xf0\x03\x4b\xbb\x88\xc6\x0e\x2c\x27\xb7\x2a\x72\xd9\x26\xcd\xb3\x5d\x1e\x47\xce\x94\xb6\x8e\x3b\xa9\xfc\x7c\x19\x06\xf1\xd9\xf3\x3b\x94\x86\xcb\x5c\x08\xfd\x4c\xb8\xf1\x13\x55\x6d\x81\xae\xcd\xb2\x30\x1e\xec\xc6\xda\x89\xac\xa4\x3f\x1b\x1f\x05\xbe\x90\x7c\x0e\x43\x5c\xd8\xaa\xb7\x00\xf3\xe4\x1b\x00\x1d\xf0\xa8\x21\x2c\x84\x9f\x5e\x9f\xed\x3f\xb0\xaf\x6d\xba\x80\x68\xc2\x5a\xc8\xc0\x03\x6d\x23\x19\x85\x78\x4e\x4d\x99\x64\xe3\x24\x93\xf1\x1a\x98\xf3\xf7\x68\x37\xf2\xb5\xfe\x3d\x36\xed\x27\xe9\xc8\xa6\x20\x46\x14\x1d\xdc\x96\x13\x00\xfa\xb6\xd2\x36\x3c\xa5\x01\x90\x43\x93\xda\x61\x52\x9e\x81\xdd\xe5\x2b\x65\xc6\x9d\x9e\x3a\x33\xce\x4f\xfc\x90\xc0\x14\x48\x2a\x04\xfc\xef\x57\x6b\x6a\x46\x4f\x05\xe8\xd9\xbf\x4d\x25\x04\x0a\x66\x0a\x35\xbe\x26\x93\xdc\xe5\x97\x13\x03\xae\x04\xbe\xc3\x28\x47\x7f\x4d\x58\xb6\x68\xdd\xe0\xe6\xd0\xbc\x12\xc5\x2a\xa7\xad\x37\x4c\x32\x0b\xe4\x36\x72\x33\x16\x7d\x43\xba\xfa\xe4\xaa\x47\x48\xc1\x7c\x38\x82\x8c\xf2\x19\x08\xdf\xb0\x0f\xdb\x73\x33\x0c\xf3\xd0\xc4\x84\x79\x41\xcd\xec\xf4\xa4\xcc\xed\x00\xdb\xf8\x0b\xd5\x3d\xfd\x1b\xec\x35\xa1\xe1\x7d\x46\xcd\x05\xa6\x4b\x76\x25\x6b\x3d\x6a\xca\xf7\x27\x35\x64\xaf\x9b\x62\x3e\x82\x86\xf6\x0e\x08\x9e\x0d\x58\x15\xb1\x04\xbe\x24\x7b\xa6\x16\xa4\xcf\x1e\x6a\x8f\x4d\x9e\x86\x26\xed\x0e\x4d\xc4\x21\x38\xca\xbc\x28\x37\x23\xf7\xbc\xaa\xc6\x33\xfe\xda\x65\x4b\x4b\x61\x9a\x17\x2c\xc8\x00\xe4\x13\x44\xdc\xf9\xda\x15\xb3\x93\xf2\xcd\xd3\x1e\x0f\xa4\xa3\xe0\x76\x27\xa8\x94\xfa\x5e\xf6\xe2\x07\x3e\xbe\xef\xd9\x68\x54\x6e\xfe\xf2\xf8\xc0\xd9\x7f\xa0\x3d\xff\x07\x4d\x48\x82\xc8\x12\xc7\x93\xab\x48\x7f\x47\xe9\x27\x7f\x67\xe2\x3b\x8a\x91\xed\xe7\x8f\x7b\x77\xc4\xac\x5c\x52\x27\x56\x5c\xd8\xdf\xc6\x73\x02\xd2\xe1\xa2\xa6\x8e\xdf\x20\x9f\x2b\xe3\xab\x58\x3a\xa0\x36\x50\x4d\xc4\x4b\x7e\x17\x51\x85\x94\x7c\xea\x50\x06\x8c\x38\x71\x75\xd6\x45\x22\x5a\x32\xc5\xef\x0d\xb3\x64\x53\x33\xb0\x4f\xd2\xf7\xc3\x67\x5d\x20\xd3\x28\xe2\x43\xa5\x69\xe4\x6b\xe2\x22\x65\x92\xe9\x19\xb2\x3a\xd8\x78\xb7\xb1\x86\x7c\x03\xff\xcc\x94\xd5\x2a\x19\x05\x39\x37\x4f\x1b\x05\xbe\x80\xcb\x2c\x21\x48\x21\xde\xf5\x14\x91\x51\x92\x12\xef\x8f\x50\xe5\xdc\x64\x07\x27\x86\xd5\x67\xc6\x4f\x51\x0c\x83\x0c\x62\x0b\x8b\x8b\x6f\xfc\xbf\x02\xd5\x3f\x34\x99\x7d\xba\xfc\x61\x08\xd3\xcf\x62\xdd\x71\xac\xef\x6a\x55\xa7\x73\xbc\xf0\x02\x9b\xd2\x6c\x79\xbe\x4a\x35\x05\x96\x6d\x47\xed\x74\x78\x9f\xe6\xda\x13\xce\x19\xee\x07\x49\x66\x3e\xe5\x55\xf5\x36\x69\x61\xf1\x89\x90\xa5\x12\x0a\x26\x5a\x0d\x29\xf1\xd3\xc2\x4a\x1f\xfe\xff\x13\x24\x83\x8d\x28\x69\x2c\x62\x9e\xc4\xcd\x76\xf9\xc9\xca\xdd\xcf\xac\x2a\x52\xd7\x6b\x13\x8f\x73\x3b\xc3\x0b\x88\x22\xce\x49\x45\x2f\xf2\xd3\xb4\x80\xbe\x1c\xe3\x6a\x06\x69\x08\xbe\x41\x0e\xe2\x02\xaf\x6f\xb1\xa9\xa0\xbb\x1d\x9b\xc6\x59\x6e\x45\x1d\x4d\x08\x0b\x68\x16\x46\xa8\x0c\xe4\xb1\x0e\x93\x91\x4d\x31\x20\x80\xa8\xfa\xbd\x89\x4f\x36\x6f\xab\x9a\x39\x23\xfb\xb0\x2a\x1f\xd3\xcf\x90\xf6\x41\x83\x12\x70\xcf\x96\x86\xab\x23\x24\x9a\x58\x57\x3e\x82\x7c\xe3\xea\xa6\x61\x16\x99\xb8\xb7\xb3\x82\xe0\xc2\xca\x28\x70\x97\xa0\x47\x37\x94\xef\xb9\x4b\xf1\x03\x4f\x57\xa8\x89\x8d\x4e\x6a\xe2\xee\x70\xa7\x26\x5f\x0a\xbc\x32\x0e\xb8\x4d\x75\xa6\x8a\x07\x70\x85\x6c\x14\xa2\x8e\xd5\x89\x17\xc4\x8b\x09\xa3\xe8\x22\x7a\xbc\x09\xc6\x30\xf9\xba\x36\xf5\xf0\x62\x3b\xcb\x93\xd4\x4e\xab\xf1\x9f\xf3\xaa\xca\x34\x3d\xe3\x59\xe4\x2e\xd2\xa7\x0a\xf7\xb8\x2f\x2b\xb8\xf2\x90\x4a\xdd\x4e\x61\xfd\xf8\x46\x99\xba\x8e\x89\x7a\xaa\xa2\xf5\x07\x81\x17\xde\xf9\x83\x5a\x3d\x76\xf6\x50\xbb\x67\xc2\x14\xbc\x19\xd8\x6f\x20\x1d\xe0\x6b\x57\xba\x34\x61\xda\x49\xd2\xd8\x4e\x97\xee\x4d\x94\x5c\xd4\x94\xcf\x43\xa5\x38\xff\x0c\x75\x80\xf0\xbc\x6e\xb9\x1a\x6d\x19\xb0\xd8\x34\x93\x84\x50\xa6\xc6\xf4\x08\x99\x02\x11\x76\x23\x93\x2e\x52\x68\xe3\x08\xa7\x5d\xb1\x6f\x43\xa5\xe4\xa9\xcd\xc6\x09\xea\x33\xbe\x90\xfa\x75\xfa\x09\x22\x60\xf7\xbc\x9a\xf6\xb4\x69\x37\xcc\xb6\x75\x31\xcf\x04\xda\x65\x36\x0c\x94\xf7\x4d\x3a\x52\x60\x64\xd4\xab\x85\xd6\xc1\xa9\x18\x76\xbf\xf8\x8f\x7e\xe1\xe7\xe9\xcf\xe0\xba\xa7\x11\xd9\xf3\xcd\xea\xb3\x0e\x1a\xda\x4d\x8a\xd2\xaa\x67\x15\x19\x17\xa5\xce\x77\x49\xe9\x0d\x2d\x9b\x25\x9b\xd1\x32\x00\x08\xf4\x31\xed\x10\xbe\x6e\xe2\x87\x0a\xe3\x2c\xec\x31\xb0\xf5\xe0\x0c\x13\xb0\xed\x9f\x25\x51\x37\x0e\x38\x4c\x3c\x28\xc2\x18\xf8\x37\x76\x2a\x13\x3f\x58\x70\xa1\x96\x83\x48\x59\xa2\x97\x9a\x6e\x11\x21\x09\x46\x5e\x75\x03\xf6\x9c\x6f\x5c\x61\xd7\xbe\x51\x84\xe3\x91\x90\x71\x88\x91\x50\x2d\xa6\x8f\x3d\xb1\xd2\xd0\xda\xc5\x95\x29\xf2\x57\xd2\xd9\x69\x39\x72\x89\x0b\x9a\xe2\x70\xb5\x56\x66\x98\x9f\x5f\x68\x8f\x4c\xba\x68\x89\x55\x41\x2b\x30\xde\x86\xcf\xe0\x1b\xe5\x51\x6d\x37\x89\x93\xd1\x0a\x3c\xaa\xb0\x86\xa9\x54\x05\xb1\x26\xd2\xe7\xaf\xc3\x3f\x38\x54\xd0\x61\x91\x3b\xdf\x33\xe3\xa7\xc0\xaf\x04\x2a\xcd\xe3\x78\xa1\x92\x69\xe1\xcf\xee\x07\xbe\xb2\xbb\x7b\xd5\x2b\xa7\x7f\xdc\x44\xe9\x39\xb2\xbd\xb0\xeb\x18\x84\x71\xbe\x4e\x2a\x42\xe7\x75\x3d\x24\xb6\xa5\xc6\x67\x47\x61\xb4\x6c\x8a\x45\xc6\x06\x01\xb9\xf5\x57\xf8\x63\xbe\x09\x9e\xf4\x28\x97\xbd\x2d\x4a\x5b\xf0\x2f\xbf\xa9\xff\xec\x37\x03\x3f\xcd\x1e\x27\xcf\x94\x5f\x1d\x47\xfe\xaa\xe6\x32\x7f\x3b\xf0\x4a\x93\x9f\xd0\xfe\xe5\xbe\x0b\x0d\xb6\xcb\xb8\x33\xad\x34\x82\xc0\xb7\x2a\xc9\x32\x7d\x1e\x66\x8e\xee\x04\xad\x2f\xfd\x32\xfb\x5e\x26\xc9\xe4\xb1\x0b\xaa\xf0\xa0\x71\xc0\x15\x1e\xf8\xee\xff\xc1\xee\x12\x41\x37\xcf\xb7\xa2\x08\xf0\x3d\x84\x2c\x8c\x75\x46\x49\x4c\xa6\x02\x1b\xea\x21\xfd\xd4\xc6\x6e\x38\x47\x78\x90\x5b\x42\x60\x1a\x60\x38\x07\x66\xfb\x96\x66\xbb\xdb\xbd\x2a\x7b\x78\x9c\x44\x91\x8d\xa9\x4d\x87\xd7\xef\x44\x89\x9d\x07\x5a\x27\xdb\x21\x34\x12\xe5\xfc\xd5\x64\x9b\x42\xd0\xe1\x7d\xf3\xed\x23\xb3\x87\xd0\x7b\xe3\x48\x28\xf0\x5b\xed\xac\x1f\x8f\x28\xe2\x5e\x36\xad\xf8\x0c\x77\xf1\xc0\x22\xb0\xf1\x5b\x81\x8a\xbc\x9f\x98\xf1\x40\xf6\x07\x95\xba\xef\x31\x1b\x53\xfa\x5c\x21\xaa\x15\x8f\xa6\xdd\x9b\xb6\x0e\x13\xd5\x57\xbe\xab\xb5\x36\xee\xa9\x29\x92\xd4\xf6\x23\x8c\xd5\x13\x72\x06\x89\xd3\x19\x05\xc8\xbc\x3f\xa9\xa8\xc2\x2a\xd6\xf8\xba\xae\xd4\xec\xa1\x76\x36\xb6\x31\xbb\x0d\x4e\x9f\xb1\xad\x24\x97\xf6\xe5\x9a\xf1\x30\xb1\x71\xf8\xe6\x94\xda\xcc\x1f\x06\x5a\x22\xe8\x5d\x35\xf8\x70\xce\x23\x5b\xc0\x23\x4e\xbf\x0d\x07\x93\xa3\x4e\xbe\xf1\x23\x67\x36\xcb\x42\x33\x6c\x55\xf8\x96\x7d\xa6\xb8\xa1\x30\xf8\x79\x6a\xba\x8b\x53\xbe\xe9\xff\x9f\xb0\x74\x9e\x66\xde\x89\x73\x6e\xd6\xe0\x92\x47\x16\x40\xb6\x6c\x96\xf1\x9d\x9c\x84\x5d\xb9\x04\x22\xad\xb5\xdd\x72\xbc\xe8\x79\x10\x5a\x8a\x20\x66\x07\x26\x9c\xf8\x66\xe6\x19\xb7\x6b\xb3\xbc\x48\x5d\xcb\x14\x05\x86\x7b\xaa\xf5\x87\xa1\x48\xa1\x3a\x7c\x56\xcd\xb5\x66\xb6\x8c\xd1\xa6\x29\x51\x73\x50\x23\x07\x4a\x3e\x8d\x67\xcb\x37\x28\x8d\x08\x08\xc9\x87\x34\xd9\x72\x98\x13\x75\x91\x47\xd2\x9f\x9a\x78\x24\xfd\x29\x85\xa0\x5a\x4a\xb0\x4f\x25\x54\xf4\xf0\xe4\x35\x2c\xa9\x28\x8b\x2a\xf0\xc4\xd3\xac\x81\x23\x3a\xf7\x1e\x81\x75\x56\x31\xcb\xf5\x85\xfb\x9f\x35\xf8\x15\x87\xf3\x86\x7b\xe4\xe3\xb0\xbb\x68\x63\xf1\x2f\x92\xf8\xaa\x59\xa0\x4f\x1b\xa6\x61\x8e\xb6\x5f\xb7\xcb\x61\x36\x9c\xd2\x93\x59\x40\x0a\x38\x25\x4d\x1f\x91\x5e\x09\xb6\xa3\x19\xe6\xe7\xdb\xcb\x09\x28\xbe\xdd\xaf\x2b\x9f\x22\xdf\x68\x40\x94\x49\x31\xae\x55\x3e\x0d\x66\x30\x50\x3b\xf2\xd2\xc4\x5b\x7c\xf3\x05\x72\xc8\x2c\x29\xab\x49\x92\xd6\xdd\x68\x92\x48\x2d\x38\x7a\x18\xd4\x5d\xd6\x34\xb5\xde\x9a\x0a\xaf\x97\x4d\xb4\x08\x5e\xee\xa3\x5a\x31\xf8\xe0\xdf\xa2\x18\xbc\x50\xda\x87\x84\x43\x2a\xc0\x17\xfe\x0b\x4e\x1b\xdf\x28\x6c\xa3\xe9\xf7\x4d\x98\xb6\xbc\x72\xe2\x35\x5d\x9a\xbc\xd6\xb4\x6e\x7d\xc3\x13\x66\xa2\x93\xdd\x72\x44\x89\xf5\x83\x76\xe8\x55\x1e\x88\x05\x70\x0e\x06\x09\xcf\x89\xaf\x5d\xfd\xff\x75\xb3\xa2\x46\x79\xd8\x7f\xc1\xb4\x5d\x0f\x2a\xc9\x9b\x0b\x79\x33\xaa\x9c\xb9\x33\x26\x12\x66\xe5\xbb\xe3\x0b\xa1\xf3\x22\x11\x52\x83\xd8\x04\xd7\x52\x5a\xbe\x3d\x7a\xbe\x52\x49\x69\xe2\x42\xcb\x4d\x1a\x87\x99\xa3\x05\x93\x59\x2c\x1d\x56\x6d\x0f\x72\x67\x0f\xb5\x87\x36\x1a\xb5\x2a\xe3\xc3\xbe\x01\x75\xb1\xb6\xce\x2f\xcf\xb7\x93\x32\x19\x38\xb0\xef\x01\x0b\x4c\x31\x91\x0d\xbd\x0a\x91\xdc\x3d\x2a\xe0\xe3\xa4\x3e\x57\x23\x3c\x78\xed\x35\xa6\x2e\xb7\x29\x86\xab\x1b\x55\xfe\x9b\x39\xcf\xa2\x30\x47\xc6\xc2\xf8\x3d\xec\x1e\x01\xf3\x79\x04\x49\x6e\x53\x8b\x0e\x4c\xcb\x43\x41\x3e\x0d\x7c\x24\xf5\x69\x13\x0f\xb0\xc9\xd3\x22\x9e\xaa\xe0\x45\x2a\x78\x7f\x57\xf7\x3d\x0d\x10\x92\xa4\x86\xfd\x90\xb1\xe8\xa8\xd2\xa3\x1f\x7f\x8a\x16\x84\xaf\x35\x86\x8e\xc0\x0f\x4f\x96\x91\x3d\x0a\xe3\xc4\x0a\xe5\xa4\x4d\xd4\x18\x14\x4a\x33\xa2\xfa\xa6\x40\xfd\x7f\xac\x70\x39\xb7\x14\xb5\xf7\x65\xca\xc7\xb1\x33\xdf\x23\xba\x0e\x17\xe8\x96\xdf\x4b\xd8\x81\x69\xcd\xb8\x68\xd9\x44\x02\xd3\xee\xa4\x49\x31\x18\xe6\xf4\x70\x14\x75\xc9\xac\x4b\xa3\xeb\x20\xff\x51\x92\xda\xd2\x71\xd1\x6b\x58\x5f\x9a\xe2\x0f\xd1\x9a\xf6\x09\x9e\x59\x4a\x42\x96\x00\x56\x72\x07\x8a\xf0\x6b\x7e\x9e\x69\x26\xde\xaf\x90\x7f\x35\xd6\x17\xba\x49\xba\x9d\xe5\x66\x23\x50\x2c\x37\xf5\x6e\xf5\xfe\xd9\xb6\x19\xd9\x34\xec\x9a\x58\x34\x04\xc1\xd9\x71\x75\xa2\x78\x34\xb7\xf4\x78\xea\x5f\x36\xd1\x5d\xc4\x36\xed\xc9\x1b\xa0\xf9\xc8\xd1\x17\xfc\xdf\x47\x95\x59\x34\xd5\x1d\x8e\x92\xd2\x8d\x5a\x83\x59\x6d\xc1\x8d\x94\x3f\x5a\x60\x23\x4f\x57\x38\xab\x52\x0b\x6e\x23\xa7\x57\xe7\x2c\xd4\xbd\x40\x65\x56\xeb\xaa\xcf\x66\xa3\xde\x33\x14\x65\xe0\x1d\x3f\xc5\x39\x75\x38\x78\xa7\x03\xf0\xec\xaa\x9f\x07\x39\xaf\x20\x9f\x7f\x1a\xa8\x52\x28\xb3\xb3\xc2\x07\xff\xff\xa4\xc4\x06\x73\xf6\xeb\x1c\x89\xe3\xf5\x9b\xc4\x1b\xa3\x87\x87\x5c\xab\xa5\x7c\x1a\xf4\x4d\xfe\xed\x4f\x03\x29\x0b\xdf\xfc\xad\x40\x69\x61\xec\xc4\xcc\x1b\x6a\xf3\x7b\x08\x00\x09\x43\xf9\x4e\x2d\x2b\x9d\x3d\xd4\xee\x14\x59\x18\xdb\x2c\x8b\xc2\x45\x34\x21\x11\xe3\x00\x59\x8e\xb3\x00\xd4\xa5\x70\x5a\xfa\xdd\x97\x86\x83\x90\xa9\x30\xd4\x34\xe3\x4b\xfc\xc9\x20\x69\x42\xd9\xf7\xfb\x13\x9f\xd9\x1c\xc7\x22\x48\x57\x61\x9b\x74\xcb\xec\xa1\x32\x7a\xdf\xe5\x83\x65\xd6\x8b\xc6\x2e\x66\x8c\xa5\xe8\xc0\x62\xd1\x50\xae\x42\x72\x88\xe5\xbc\x8a\x13\x8e\x66\xd5\xbf\x6a\xd2\x96\xe9\x42\xdb\x59\x66\x2d\xf0\xc4\xf8\x5a\x19\x18\x92\x35\x47\x5b\xc1\xe9\xa5\xb8\x89\xaa\xdf\xa8\x80\xc4\x62\xf0\x8d\x2d\x78\x1d\x90\x03\x22\x51\x0a\xe3\x83\x04\x1f\x75\x12\x6c\xf2\x6b\xec\xf1\xb8\x19\xa6\xa6\xff\x4f\xa3\xff\x25\x7b\x13\x61\x18\x58\xa6\xef\x81\x09\xc8\xb1\xd9\x96\x91\x17\x52\x8c\x0d\x6c\x35\xe9\xc9\x94\xcf\xdd\xf1\x21\x94\xf1\x23\xbf\x9b\x56\xe7\xbd\x81\x07\xc6\x12\x5d\xe8\xb3\xf1\x9b\x4d\xd4\x4c\xc5\xb7\x26\xaa\xd2\x7f\xd1\x51\xf5\xbe\xf0\xc5\x9f\x67\x06\x1f\xe1\x2c\x50\xa7\xfe\x5d\x05\x1c\xbc\x36\xf1\x2d\xb5\xf3\xca\xa1\xed\x98\xd9\xde\x5b\x21\x49\x82\x34\x1f\xbe\x51\x98\x45\x9b\x4d\x95\x21\x0b\x42\x05\x7e\x6f\xf8\x8c\xab\x4a\x29\xf1\xb4\x6a\xd1\x75\x6c\x6c\x21\x84\x43\x81\x88\x12\x33\x94\xc1\xb7\x4b\x81\x27\x4a\x0c\x7b\x61\x92\xad\xc4\xdd\x14\x64\x23\xe5\x12\xb9\x0a\x75\xb9\xfa\x52\x8e\x90\x9a\x4f\x9e\x16\x5d\x3f\x7c\x85\xf8\xfe\xc9\x55\x1f\xeb\x3f\x39\xa3\x06\x16\xcc\x88\x0e\x13\x26\x1b\x3f\xd1\x95\x14\x2d\xf5\x3d\x55\x13\xf3\x28\x63\x0f\x62\x0f\xc8\xf2\xd2\x18\xa3\x7a\x81\x52\x4a\xab\xae\xe8\x2e\x4f\xc4\xc7\x7a\x3d\x63\x97\x93\x04\x36\x9c\xf9\x3e\x61\xc3\x85\xfc\xd3\x7f\xc7\x5f\x39\xf8\x25\x8e\xc7\xd1\x23\x78\x5b\x0f\x40\xbd\xdd\x24\x6d\x11\x91\xfc\xd6\x6e\x7a\x12\xcc\xce\x3c\xf1\x45\xc2\x1d\xb4\x16\x68\xce\xed\x82\x36\xa4\x48\x79\xaa\x29\xc1\xcf\x53\xa9\x16\xb5\x80\xcf\xa0\xa3\x29\x7e\x71\xfb\x5a\xbc\xd8\x8e\x93\xb8\x67\x47\x09\x3f\x22\x3f\x0d\xc4\x74\xea\x02\xe8\x7d\x5e\xcd\x6c\x77\xc2\x41\x11\xe6\x2c\x36\xe5\xe8\x15\x27\x5e\x68\xf6\x82\x1a\xca\xce\x8a\x4e\x16\xf6\xc2\x63\x96\xf9\x44\x79\x34\x18\xf9\x96\xcc\x09\x3b\x62\xe5\xa2\xbb\x18\x89\x7f\x44\x4e\xfb\x3d\x35\x3d\xf3\xbd\x26\x58\x14\x86\x26\x88\xf1\x45\x6c\xbb\xe2\x1f\xdf\x6c\x9c\xc7\x36\x71\x9c\x14\x71\xd7\xf6\xa6\xb5\x2a\x35\x8e\x2d\x76\xda\x0f\x27\xba\xe0\x4e\x4b\x81\x6e\x54\xcb\x65\xa6\x5d\x93\x9b\x28\x19\x14\x08\xda\x70\xf4\xaf\x2b\xa1\xc0\xeb\x6a\xda\x3f\x0e\xbb\xf6\xd1\xc4\xe5\x4d\xa5\x84\x6e\x92\xda\xe9\x6a\xe3\x93\x1e\xb1\xf0\x46\x78\xcb\xbf\x47\x23\x53\x6e\x28\xe7\xb1\x98\xda\xf8\x18\xd6\x12\x5d\x8f\x93\x13\xa5\x00\x51\x67\x80\x99\x9f\x3f\xd8\xee\xa5\xc9\x98\x06\xf2\x99\x09\x31\x50\x64\x95\x3c\x34\xe0\x54\xff\x3d\xab\x76\xe0\xfb\x5b\x67\x15\x29\xb5\x89\x6d\x96\x0f\x6d\x1e\x12\x59\xd8\xec\x21\xcf\x28\xf9\xb2\x80\xf5\xd6\x5d\x89\xb5\x88\x97\x6c\x08\x6c\xb2\xc0\x7a\xca\xef\x21\xd4\xfa\xae\xa5\x97\x16\x4c\x1c\x03\x87\x78\x59\x0d\x56\x5c\xae\xe2\x05\x6d\x17\x24\x7f\xc0\xb1\x9d\x9a\xa8\x79\x82\x53\x9a\x17\x5f\x35\x12\xce\x6a\xe4\x46\x98\x15\x51\xd1\xf2\x73\x91\x8c\x42\xe5\x1b\x85\x88\x32\x9d\x8c\xd4\x23\x15\xa4\x91\x5b\x83\x30\x70\x08\xe5\x59\xf5\x26\x78\xca\xb7\xc6\x8a\x95\x9d\x74\x28\x1c\x99\x99\xb6\x67\xbe\xe8\xe9\x44\xdd\x7d\xd0\x73\xa2\xa1\xcb\x7c\xa0\xf4\xb9\xd8\x8d\x0e\x46\xe6\xc6\xf4\x2f\xe9\x40\xad\xdb\xb5\x19\x13\x86\xc2\xc4\xff\x5e\xe0\x71\xd5\x67\xab\x53\x9a\x3e\x85\x37\x61\x1a\x85\xb1\xdd\xe9\x97\x8b\x51\x41\x88\xb6\xee\x4d\x14\x81\xde\x69\x05\xaa\x3a\x4d\xfe\x88\xff\x7f\xe0\x3b\x83\x23\x49\xa9\x10\xf8\xfd\x1f\x2a\xa2\xf2\xb5\xc2\x4f\x2c\xda\x71\xbe\xd3\x33\xec\x5d\x52\x24\x7a\xef\x6a\x75\x1b\x9e\xfb\x73\xec\x88\x9a\xae\xa0\x81\xf3\xb2\x67\xc1\x1e\x50\x3e\x26\x24\x85\x6f\xd3\xa6\xe0\x6b\x05\x59\xb5\x71\x92\x8e\x48\x31\x70\xff\x7e\x0e\xaa\x4e\xd1\x77\xe5\x6b\x55\x03\xfa\xa5\x03\x87\x38\xc8\xc6\xd3\x7e\x5f\xc1\x33\xa6\x34\x92\xf4\xb1\xd5\xed\x7e\x59\xda\x17\x49\x6c\xc3\x9e\x69\xb5\xbe\x72\xd0\xb9\x73\xd5\x4e\x3b\xaf\x80\xc6\xbd\xa2\x34\xc2\x53\x9e\x3e\xe3\xb2\x9a\xe6\xc4\xf9\x94\x30\xaa\x01\xf7\x17\xdb\x25\x9b\xe6\x43\x1b\xd1\x20\x81\xeb\xcf\x02\x53\xc1\xd7\x1e\x90\x52\x74\xc2\xee\x94\x32\x60\x77\x14\x7e\x63\x0f\x05\xb2\xc0\xf5\xdd\x54\x10\xb6\xa4\x8c\x5e\x63\x86\xb0\x91\xb3\x12\xc6\x77\xb2\x64\xa2\x9a\xff\xb9\xfa\x77\x33\xd3\xe5\xf2\xc2\xcf\x5d\xd5\x90\xc7\x2b\x13\x9f\xa5\x9d\xa5\x5c\x12\x4e\x77\x5d\xb1\x4b\x67\xb9\xb5\xd1\xc8\x2c\x52\x77\xa9\x22\x32\x5e\x6e\x0f\x18\x3f\x34\x89\x65\x74\xb7\x61\x72\x39\x2d\x22\x74\x9e\xf0\x1c\x57\x03\x8f\xa5\x5b\xad\xa1\x25\x48\xde\x6c\x29\xb4\x50\x1d\x70\xd4\xb6\x1e\xb2\x2e\x5d\x73\x41\x91\x37\x54\x50\x06\xa9\x59\x09\xe3\xc1\x94\x77\xf0\xa7\xb1\x85\x61\xf0\x1f\x2a\x31\x99\x2d\x85\xc8\x5f\x4e\x12\x42\x54\x4f\xfb\x12\x1c\x3a\xb5\xae\x26\xee\x66\x2b\x3f\xc0\x3e\x42\x5c\x78\x57\xf1\x44\xa6\x36\x63\xf4\x2f\xe2\x5f\x48\xd1\xf2\x75\x25\x02\x8f\x6c\xbc\x4b\x11\xe3\x9f\x24\x43\x8e\xe4\xe0\x13\xd4\x38\x45\xa7\x85\xb6\x8a\x53\x70\xf1\x63\x72\x9f\x50\x7f\x8a\x5f\x5e\x4b\xe7\xcb\xd8\x34\xb2\xdd\x3c\x0d\xbb\x2d\xc5\xff\x87\x5e\x9b\x1f\xf0\x73\x55\xab\x25\x1b\xb3\x96\x82\x88\x44\x79\xc4\xe2\xb5\x8a\x96\xfe\xd8\xa6\x79\x98\x89\x47\x95\xb2\xac\xef\x99\x9c\x0f\x7c\xcc\x74\x5e\x2f\xd4\x9a\xb2\xf3\xd9\x30\x29\xca\xf4\xbd\xf5\xe5\x23\xfc\x94\xb9\x81\xc7\x37\x15\xf7\x13\x85\xe3\xe9\x32\xc9\x14\xf6\xd8\x96\x53\x57\xc1\x67\x09\xdb\xac\xc2\x55\x9e\x57\xde\x27\x4f\x93\x64\x8c\x09\x42\xd7\x22\x2a\xff\x52\xb8\x71\x94\xb2\x93\x79\xb3\xe5\xa7\x51\xae\x2a\xe8\xf2\xd5\x86\xf9\x82\xa3\xed\xcc\xa6\x4b\xd2\xdd\x16\x0a\x62\x32\xa3\x7c\xa3\xa4\x22\x3b\xa6\xb7\x4b\x69\x88\xa2\x46\xc9\xd7\x41\xeb\x85\x17\x1c\x5c\xdd\xb3\x44\xde\x9d\x78\x96\x48\xc6\x62\x0b\xbe\x5d\x4d\x7c\xa4\x49\x9c\x87\x4c\x4d\x2e\x63\x26\x6a\x25\xeb\xf8\xf7\xd9\x43\xed\x37\x0a\xdb\xb1\xdd\x29\x35\x6e\x82\xdf\xea\x24\x6b\x9c\x4a\xfc\x5f\xd6\x7e\xb7\xe3\xc7\xda\x3b\xa5\xc7\xd4\x4a\x83\xee\x38\xa4\x94\xfc\x97\xef\x8e\x2c\x46\x36\x8c\xa7\xbc\x2e\x1a\x02\x37\x04\x11\xd7\xf1\x95\x85\x70\x56\x21\xfe\xec\x08\x26\x55\x5a\x20\x2d\xa7\x17\x58\x3f\xfb\x47\x16\xda\x23\x93\x83\x70\xdf\xab\xcc\xdc\xc5\x71\xe2\x9b\x26\xff\xb5\x1c\x66\xbd\x64\xa4\x08\xa8\xb1\x1a\x7c\xad\x88\xe5\xf2\x61\x1a\xf6\xf3\x8c\xa2\x3a\xd1\x17\xa0\x87\x2f\x92\x13\x9e\x42\xf7\x66\xe0\xd5\x1f\xce\xd2\x83\x14\xd4\x8f\x6f\x5d\x99\x78\xa5\x93\xf4\x56\xa6\xf5\x71\x9f\x78\x4b\x89\x3a\x9a\x10\x05\x78\x0b\x7d\xd2\xe5\xb4\x43\xdb\x5d\x44\x91\x08\xde\x69\x4c\x50\x44\xc4\xcc\x10\xa0\x45\xbf\xec\xc1\xe4\xa7\x14\x7c\x62\x89\xc5\x39\x4d\x1a\x0a\x27\x0f\x5c\x02\xa7\x92\x7c\xd3\xd4\xa7\x8e\x12\xd1\x1a\x28\x7d\x90\xb0\xe6\x95\x1f\x24\xa3\xbb\xfa\xdc\x2e\x46\x96\x30\x8b\xa2\x00\x53\xfe\x04\x38\xfa\x07\xb4\x52\x5c\x58\xa8\x0d\x76\x1e\xde\xd7\xee\x84\x28\xcf\x3b\x6e\xf7\x79\x27\xe7\x79\x5e\x39\xa8\xed\xdc\xfc\x08\xf2\xd6\x74\x67\x7b\x2d\xf0\x2d\xa8\x5e\x98\x8d\x0b\xae\x1a\x1e\x75\xbb\x5d\xa9\x81\x6e\x36\x01\x2c\xfa\x26\xcb\x6d\x8c\x39\xa2\x83\x4e\x4b\xbc\xe5\x75\xc5\x55\xd4\xf2\xcf\xbe\xf2\x15\x45\x09\x7d\x53\xb5\xf0\xbf\xa9\xb8\x55\xd6\x34\x1e\xf6\x8c\xe6\xaa\x33\x69\x6a\x23\x4c\xc0\xa0\x1b\xfd\x31\x30\x67\x7c\xa3\x92\xc7\x22\xee\x27\x69\x5e\xc4\x06\xc2\xd7\xc2\x8f\x7b\x96\xbe\x18\x5f\xab\x41\xea\x72\xeb\x12\x33\xb9\xdf\x96\x5b\x81\x9f\x17\xd9\x50\x08\xf7\x13\x6a\x98\xb4\x67\x73\x9b\x86\x09\x4f\xf6\x7b\xa8\xcb\xa7\x13\x85\x5e\xad\x55\xea\xe6\xe6\xda\x66\x3c\x4e\x2d\xa3\xee\xe9\x75\xe8\xfb\xc3\x21\xf2\xb5\x2b\x56\x74\x4d\x64\xe3\x9e\xc1\x33\xe4\x1c\x8d\xfe\x50\xf2\xb5\x5a\x2d\x77\x7f\x7b\x64\xba\xc3\x30\xb6\x0c\x64\xaa\xa8\x65\x0a\x1a\xa3\xde\x4a\x38\xd8\x36\x9d\xa4\x88\x7b\x00\x32\xa2\x69\x01\x27\x8f\xd3\x79\x5e\x35\x33\x4e\xd0\x7e\x45\x42\xbb\xa6\x49\x77\xb4\x0a\x5c\x4e\x23\x2f\x4c\x2a\x27\x6c\x2a\x65\xc4\xe5\x52\xaa\x5f\xfa\x45\x86\x62\x4d\x9a\x2a\xd2\x0c\x66\x12\x8a\xc4\xc6\xa2\xbb\x64\xc9\x91\x89\x7b\xfd\xd0\x71\x2d\xbb\x4c\xc7\x6d\x2b\xcd\x81\x49\xca\x3d\x21\xef\x74\x25\x4c\x30\xef\xb8\x9d\x1c\x4a\xcb\x66\xe1\x20\x0e\xe3\xc1\xb4\x22\x2d\xf8\x58\x45\x87\xa8\xea\x0a\x3c\x90\x7e\x29\xbc\xfb\x3d\x85\xe7\x1c\x9a\x25\xfb\xd3\xf4\xfe\xf8\xda\x7f\x0f\x15\x5f\x14\xb2\x26\xf4\x30\xe1\xed\x7e\x1f\xf5\x3d\x3c\xa3\x3f\xa7\x35\x46\x9e\x76\x7b\xb2\xe3\x0b\xfc\xe2\x0f\x91\xff\x88\x56\x0c\xfd\x5c\x3c\x14\x1e\xbd\x47\xcb\xf7\x04\x01\x00\x45\x0f\x9e\x4e\xa7\xab\xbf\x95\x87\x06\x7f\x45\x2c\x0d\x2f\xb1\x4b\x66\x02\x06\x7a\xc9\xb7\x9f\x5d\x2d\xad\x10\x1c\xec\x6e\x32\xb6\xf8\xf1\x57\x08\xce\xe2\x34\x81\x9d\xb0\xee\xbd\x0a\xb0\x66\xa2\xa8\x90\xfe\xe7\xa4\x75\x64\xc1\x0d\x45\xd0\x9a\x3b\x65\xd2\xd9\x43\x15\x91\x60\x74\x09\x2e\x83\x9e\x4d\x9a\xbb\x88\xa5\xd0\xc0\xb9\xd3\x30\x68\xb9\x00\x10\x59\x9c\x73\x24\x7e\x94\xed\xe8\x8e\x99\x6d\x75\x0d\xaf\x75\x78\xcd\x23\x18\x88\x4e\x02\xd5\xb9\x07\x0f\xe8\x51\xa0\xa0\x5a\x61\xa3\xa8\xc7\xee\x2f\x22\xb8\x28\x03\xa7\x07\xd4\x04\x7b\x70\xa7\x01\x2b\x77\xb0\x9d\x19\x06\x06\xe3\x79\xdd\x08\x2a\x2d\x1e\xc5\x30\x8e\x8f\x63\x2d\x1f\xc5\x0c\x30\x35\xe3\xc7\x68\xe2\x94\x7b\x92\xa2\xdd\xac\x2c\xff\x66\xed\x04\x91\x72\x41\x38\x1a\x27\xa9\x90\x93\xf1\x08\x98\x62\x2d\xda\x54\x42\x1d\x63\x9a\xd1\xf1\x62\x4b\x8a\x05\x64\x0a\x04\xe2\x22\xbd\x44\x6f\xc6\xff\xb2\xfa\xb4\x3b\x2a\xa4\xf5\x65\x5b\x8a\x34\x16\x14\x8a\xc2\xf1\xed\x53\xca\x25\x93\xe5\x50\x28\x79\xc9\x7d\x11\xf5\xa5\x9a\x38\xe7\x32\x9b\x3b\x33\x2b\x61\xa2\x6e\x23\x2b\x15\xb1\x9e\xed\xdb\x38\x0b\x97\x90\xf5\x37\x21\x0a\x25\xdf\x34\x45\x9e\x54\x94\xe2\x1e\xaa\x18\x0a\x32\xab\xd2\xdf\xde\xfe\x70\xff\x61\xbb\xbf\x37\xd9\xdb\x51\x2c\x10\x27\x03\x4f\x8a\x7d\xb2\x89\x50\x3f\x0d\x7b\xe0\x5c\xc1\xf9\xbe\xad\x18\xda\x81\xa6\x17\xa8\xeb\x76\xcd\x51\x92\xf6\xb7\x79\x9a\x74\x87\x76\x04\x5a\x32\xef\xc7\x34\x01\xfc\xd9\x5a\x19\x72\x6e\xae\x9d\xa7\x26\xce\xc6\x91\x89\x91\x37\xa2\x89\xbb\xa5\x05\x6e\x36\x15\xce\xa5\x35\xd3\xe4\x19\x86\x26\xe4\x82\xe9\x82\x2f\xc6\x7b\x12\xdc\x3a\xfa\xe6\xb5\xd7\xda\x7d\x13\x77\x43\x52\x9d\x75\x0a\x00\xe0\x01\xe0\x6b\x05\x9b\x18\x90\xfb\xdd\xa5\x90\xe9\xd4\x38\x13\x35\x98\x72\x5d\x75\x43\x5d\xd0\xeb\xbe\x01\xc3\x14\x3d\x7c\xa3\x12\xd7\x5e\x32\x0a\xe3\x90\xb1\x23\x1a\x79\xc5\xd7\x4d\xc2\x6e\xf9\xd0\xa6\xb6\xc3\x94\x57\x02\x68\xf7\x71\xf6\x46\x03\xe5\xde\x42\xbb\x5b\x64\xa2\x87\x72\xd4\xa5\xe3\x8a\x34\xeb\x4c\xed\x55\x87\x5e\x6d\x8f\x6d\xaf\x17\x51\xe0\xe1\xa8\xbf\x4e\x4d\x14\xb1\x06\x88\x1c\x65\xe0\x42\xa9\x2a\x5b\xed\x95\x84\x14\xcf\x77\xcc\x31\xbe\xa7\x1c\xa6\x07\x7b\xfb\x6c\x75\x18\xa6\x49\x36\x0c\x47\x46\xe7\x3a\x1c\xf1\xf1\xd4\x10\xbd\x25\x2a\xbe\xad\x1a\x5a\x70\xff\x7e\x82\xc7\xd8\x9c\xbe\x3d\xbc\x9e\x26\x53\xbd\xab\x0a\x9e\x97\x6a\x71\xec\xfc\x7c\x3b\x29\xf2\x69\x0f\xa8\x87\x0a\x33\xf2\x8a\x16\xc9\xe1\x0b\x12\xaf\xdc\x0a\x30\xe2\xeb\x75\x8c\xe0\x6c\xfb\xf0\xbe\x85\x3d\xaa\x5c\x03\x0a\x57\x98\xdb\x1f\xa9\x3a\xf9\xd7\x26\x7e\xd8\x75\x8d\x3c\x8f\xa4\x4d\x2a\xca\x5f\x0f\x3c\xc6\x1a\xde\x0d\xf5\xc9\x6f\xa2\xf5\xe8\xea\x18\xe0\xb8\x08\xe3\xc1\x6e\x72\x74\x78\xa7\x35\x35\x90\x0d\xbd\x11\x99\x9b\x29\x3f\x0d\xd9\x06\x66\x0c\x25\xbb\xa6\x23\xa4\xd4\x0d\xa4\x22\x76\xc6\xc9\xc7\xe6\x43\x13\xb7\x14\x03\xc0\x0e\xea\x4e\xf3\xb5\x6a\x53\xa5\x2b\x02\xc9\x82\x9b\xfe\x2c\xaa\x80\x7c\xb3\xea\x8f\x9a\xed\x0e\x13\x09\xf2\x31\x23\xc5\xdb\x94\x6f\x82\xa7\x9c\x43\x78\xe1\x17\xbe\x08\x63\x8e\xd8\xed\x6d\xc5\x8a\xf7\x76\x93\x89\x1e\x5a\x93\xba\xae\x1a\x4c\x2d\xa6\xea\xf8\x5a\x1d\xf8\x7e\x52\xa4\xf9\x90\xcc\x18\x5c\xde\xef\x05\x4a\x64\xff\xf7\x54\xac\xc6\x0c\x2c\x53\x0a\xac\x01\x11\x79\x24\x4e\x57\x15\x64\xe8\x53\x15\x7b\xa6\x26\xcc\xc8\xa4\xcc\x1e\xe2\x9e\x39\x28\xa4\x61\xce\xaf\x6a\x9a\x5b\xc2\xc4\x3e\x68\x55\xa7\xdd\x1c\x51\xed\x35\xad\x88\x4a\x4c\xa9\xbb\x7c\xd7\xef\x21\x9e\x20\xf7\x72\x82\x6a\x63\xc7\x0d\xc1\x51\xde\xfa\x00\xd1\x3d\xba\xdf\x8f\xcd\x38\xec\xaa\xcd\xbb\x43\x44\x2d\x8e\x6e\xc4\x31\xb3\x5f\xd6\xdd\xef\x3f\x54\x85\x8d\x65\x6b\x16\x63\x9b\x65\xd3\x7e\xb0\xfb\x3c\xec\x06\xb2\x60\x1e\x6c\xe2\x7f\x51\xcc\xb7\xb7\xb7\x77\xe9\x17\x66\x0f\xb5\xf7\xef\xa7\xae\x09\x4b\xcd\x92\xb5\x15\xd9\xd9\x26\x4f\x14\xdb\x22\x4d\xb2\x6e\x68\xe3\xae\x95\x4d\xa7\xa6\xce\x17\xe4\xa6\xc6\x1b\xba\xf0\xea\xc1\x72\x8f\xf4\xde\x28\x4c\xea\x0b\x11\x00\xcf\x62\xd4\x99\xaf\x67\xb6\x7b\xb1\xd9\x43\xed\x62\x6f\xb6\xb7\x63\xba\x8b\xd2\x49\x15\x1c\xa0\x67\x1b\x78\xa0\x65\x76\x2e\xab\x52\x42\x4c\x4c\xeb\x19\x9a\x70\x42\xf4\x44\x01\xdf\x9e\x19\xaf\x7f\x42\x90\x87\xd9\x07\x7b\x56\xfd\xde\x8b\x79\x43\x7b\xc3\x8a\x16\x0b\x5f\xd7\x8a\x00\xe5\x0f\x4c\xed\x1b\x85\xcd\x72\xa5\x72\x7c\x4f\xf9\xf9\x4b\x1a\x95\x79\xae\x01\xc2\x7f\xb0\x6d\xa3\x8c\x61\x60\x4a\xc1\xec\x92\x1a\x4e\xbb\xa4\xa8\x41\x63\x6b\x7b\x9f\xa5\x3d\x08\xc3\x01\x05\x0f\xb9\x09\x3c\x07\xe9\xdd\xc0\x77\xb9\xce\x91\x73\xc5\xa1\x44\x29\x93\x45\xe6\x2b\xa3\xf3\x4c\xcf\x89\x72\x28\x4b\x6e\x09\xa2\xa0\xe5\xd4\x1e\xc0\x2b\xeb\x44\xea\x17\xfc\x3f\xc0\xed\xb8\x69\x66\x37\xd5\xf3\x3d\x55\x12\xa6\x1a\xfa\x33\x5a\x4b\xc4\xf3\x19\xae\x05\xde\xdc\xfc\x2e\x70\xeb\xb0\xc5\xd7\x90\x00\x09\x57\x69\xf9\x1b\xf1\x8a\x1f\x06\x95\xc5\xa5\xf3\x20\x2c\x95\x7e\xbe\x85\x99\x92\xd1\x7d\xdf\xc4\x09\x93\x84\x94\x32\x23\x09\xf9\xcb\x45\xc2\x99\x64\xfd\x1c\x20\xc8\xcf\xd1\xaf\x17\xd9\x5d\xda\xc2\x52\xf9\xaf\x4b\x17\x1c\x6c\xf7\x92\xe5\xb8\xe5\x6b\x95\x98\xb6\x92\xde\xa6\xeb\x7b\xa4\x26\xc4\x36\x43\xea\xc2\xec\x06\x7c\xe3\x47\x49\xc7\x79\x38\x0a\x33\x54\xe3\xf4\x33\x96\x87\xff\xac\xd2\xc0\xb5\x69\x19\x59\xec\xf6\x0d\xe0\x77\xb0\x88\xf0\xb6\x37\x95\xec\xed\x3b\xaa\x04\x77\x87\x7e\x1d\xff\x8d\xe2\xe8\x86\x56\x39\xa2\xbd\x9d\x35\xb0\x87\xd4\x3d\x47\x26\x95\x92\x86\xf4\xe7\x14\xa3\xfc\xe9\xe0\xef\x3f\xe2\x75\x8a\xb9\xb6\xe5\x2b\x73\x6f\xe1\x79\x0a\x61\x9d\x2f\xbc\x8c\x92\x5e\xd8\x97\x79\x42\x05\x10\x41\xba\xc1\xd7\x8a\x18\x37\xa2\x19\x1f\x56\x5d\x76\xb1\x24\xda\x0a\xd2\x23\x50\x25\x71\x93\x86\xfd\xfe\x94\xdf\x89\xcc\x26\x26\xa5\x3f\xda\x0b\x82\x2d\xdc\x66\x4e\x8f\xcc\x1e\x6a\xcf\xcf\x3f\x5b\xae\x21\xca\x9e\x4c\x93\xeb\x70\xd2\xe5\x6b\x19\x4c\xa7\x19\x0e\x3f\xc4\xf9\x52\xbc\x66\x47\xd9\x77\x7f\x1b\x5b\x0c\x90\x49\xf8\x2d\x6c\xdd\x53\xd8\xad\xb0\x31\xdf\x0a\x7c\x7b\x0e\x4a\xc7\xae\xb1\xbe\xe0\x48\xce\xce\xa0\x84\x29\x91\x20\xed\x7c\xbc\xef\x0d\x0c\x40\xe2\xe0\x6f\xa9\xd1\xe7\xd3\xb4\xbd\x04\xaa\xb1\x7d\x7f\xef\xdf\xdf\xb6\x69\x9a\xa4\xd3\x4a\xe2\x01\x89\x3c\x92\x8c\xef\x4f\xb6\x5b\x41\x61\x58\xf3\x91\x40\x37\xb5\xbd\x30\x7f\xc2\xb7\x45\xc0\xb2\x82\x08\xe9\xd6\x44\xa1\xe1\x30\x1f\x2a\x65\x5e\x3f\x76\x75\x26\x50\xa9\x33\x13\xb6\xf0\x8d\x16\x79\x67\x81\x4a\x41\x58\xc1\xd4\x89\x41\xf3\x26\x69\x94\x0c\x0a\xe4\x57\x2c\x5b\x02\x60\x95\x68\x98\x28\xd9\xd7\x10\xf4\x7a\x92\xe9\xaa\xee\xd3\x46\x03\x11\xb9\x93\x65\x74\x11\x12\xa0\xaa\x5f\x55\xb0\xd5\xaf\xd6\xc3\xdb\xa3\xed\xc3\xfb\xe6\x1f\xa7\xba\x0e\x4f\x6c\xc0\xae\x62\x73\x7c\xaa\x22\xcb\xeb\x64\x63\x59\xf9\x8c\x48\x11\x99\xa9\x64\xa2\x34\x7d\x30\xb7\xc5\x2f\x56\x7a\x8b\xf7\xe9\x2c\x48\x7e\xf3\x19\x05\xa7\xcf\x56\x76\x96\x56\xc0\xb5\x32\x14\x72\xc7\xd3\xbd\x9e\x51\xf3\xa1\x57\x69\x5a\x18\x84\x18\x1f\x57\x5b\x55\x79\xa5\x38\xc0\x56\x95\x6f\x56\x3f\xa7\x25\xf8\x6d\x96\x8d\x6c\x9c\x13\x7a\x90\x59\x9f\xd0\xe4\x11\x1d\x74\x5a\x6d\x74\xe0\x4e\xf2\xb3\xe4\x3b\xb5\x33\xfe\x08\xdb\x9a\x5f\xa3\xf8\xcb\xc2\xb8\x1f\x15\x65\xfc\x32\xed\x45\xd8\xcf\xe3\x41\x83\xab\xe0\x84\x92\xb7\x3f\xa1\xd8\x20\xce\xd7\xf2\xc5\xb9\xb9\x76\x37\x0d\x47\x19\xa7\x98\xa2\x95\xed\xab\xba\x8f\xd5\xc8\x9c\x0e\x2c\x20\xc5\xd4\xc7\x06\x0e\x1e\x8e\xe4\x21\xcd\x7f\x21\x16\xfa\xa6\x22\xc4\x5b\x57\x48\x9f\x8e\xb5\xfd\x96\x4a\xd5\xb8\xba\x2b\x42\x55\xbe\xaa\x63\xe2\x9f\x54\x23\xc2\x77\xa9\x7d\xc5\x34\xc7\x95\x21\xf5\xc7\x56\xc9\x38\x28\xf0\xb1\xf0\x82\xfc\x08\x3b\x8e\xb9\x7c\x69\x31\x64\xd3\xe8\x02\x0e\x7d\x69\xfc\xc3\xf4\x4c\x35\x74\x28\xdd\x35\x42\x84\x8f\xb5\x39\xdc\x3d\xa3\xa6\x7e\x00\x2a\x80\x53\x6f\x51\xed\x11\xdb\xe9\x39\x5a\x4a\x26\xfb\x0f\xe8\x79\xba\x41\x76\x27\x21\x74\x9d\xb6\xb5\xa8\xc0\xd2\x69\x41\xe0\xc1\x55\x3c\xa1\xbd\x2b\x77\x26\x76\xc3\x13\x80\xb5\xe1\x7d\x4f\x34\x09\x89\x11\xb9\x4b\xa5\x7e\xae\xd9\x74\xc4\x25\xa7\x76\x6c\x3d\xbc\xcf\xcd\x9e\xbb\x79\x43\x56\x17\xc5\x52\x7c\xb7\xf6\x39\x87\x5e\x6d\xf7\x93\x74\x90\xb4\x54\xd7\x4c\x8d\x64\x5d\x98\x3c\x57\x35\x08\xaf\xcc\xb6\x5f\x24\x60\x0c\x7c\xc8\x6d\xfa\xdd\xc8\x69\x58\xd4\x44\x0e\x88\x6f\xd5\xde\xa3\xad\xc5\xe2\xb7\xdb\x1d\x56\x19\xa2\xbc\x32\x4b\x1f\x8f\x58\xe7\x21\x99\x5f\xbe\xd6\x34\x82\x66\x1c\xe6\x26\x7a\x12\x7b\x06\x5f\xef\xab\x0a\xcd\x8f\x81\x7b\x7e\xe4\x81\xa6\x73\xd0\x78\xcf\xaf\x06\x0a\x72\x89\x08\x0f\xbd\xc7\x6b\xf0\xb1\x08\xc5\xef\xe0\xdc\x0a\x1d\x44\xf9\xf5\xf1\x8a\xfb\x38\xf7\xf8\x76\x7f\xde\xc8\xf5\x3b\x36\x59\x3e\xdd\x7a\x79\x9e\xb2\x3d\x20\x86\xc0\x5f\x06\x2b\x79\x43\xcb\x41\x29\x6b\x1e\xc6\x2f\xa8\x06\xff\x15\xd5\xe0\xbf\xa2\x4e\x5d\xd1\x4f\x00\x84\x11\x4d\x30\x15\xe3\xde\x51\xda\x94\x67\x5d\x17\x32\x4c\x4d\x4c\xaf\x90\x39\x03\xff\x55\x4e\x6b\x96\xfb\xad\x86\xf1\x81\x61\x38\x18\x2e\x3b\xe9\x11\x00\x0d\xdf\xc3\x6a\xf2\x8d\x43\xb5\x8d\x92\x34\xb3\x70\x5b\x2c\xc8\x4a\xe5\x7f\x11\x67\xf5\x29\xec\xeb\xc5\x68\xcc\x0c\xde\x8a\x7e\xe6\xa0\xd3\xfc\xf1\x93\x0a\x97\x94\x58\x68\x7d\x44\xe6\xc5\xb6\x89\xa2\x04\x2c\xf7\x52\x73\xa2\x9d\x2e\xc5\xa8\xa6\xc1\xf1\xc8\x2e\x4f\xf9\x1e\x12\x23\x5f\xf1\x09\x53\x33\x8a\xf1\xbe\x5e\xcb\x9e\x3d\xd4\xee\x98\xc8\xc4\x5d\x37\x3d\x84\x45\x7f\x4c\x71\x04\xa2\x36\x08\xcf\xff\xdd\xa6\xcf\x8f\xcc\x72\x8c\xf6\xa1\x16\x74\x12\xa5\x27\xe9\x08\x30\x92\x88\x21\x1c\x38\x42\x77\x02\x55\x22\x79\x47\xeb\xb9\x68\x89\xd1\xe3\x6a\x3f\xfd\x93\x9f\xfb\xc7\x53\x9e\xb0\x0b\x3a\xf2\x48\x4c\x58\xbe\x43\x00\xbf\x3e\x97\xcb\x6c\xbc\x77\x97\x97\xa3\xbe\x33\x51\x03\x67\x1f\x6a\xea\x15\x96\x89\x04\xc4\xe8\x7b\x13\xef\xa9\x4e\x4f\x14\xed\xed\x86\xab\x21\x85\x49\xc1\x45\x6e\xec\xfb\xc7\x67\x7c\x61\xfb\xb2\xde\x84\x3b\x56\xeb\x74\xbf\x0b\x6d\xfb\x66\x98\x81\x14\xd4\x51\xe3\x1c\xde\xe7\x3a\x91\xcf\x2a\x6a\x09\x96\xb4\x28\x8d\xb7\x3b\xe1\xee\xec\x6a\xc9\xda\x91\x89\x63\x9b\x4e\x79\xef\x7e\x8f\x0e\x8f\x10\xdc\x95\x2f\x92\x01\x8c\xcf\xf8\xf6\xc2\xa2\x40\x76\x61\x25\x76\x20\x7e\xe0\x9b\x9a\x5a\xe6\xdc\x5c\x3b\xb3\x39\xec\x32\x97\x56\xd5\x87\xfc\x35\x76\xab\x38\xd6\x86\x82\x43\xa7\xe8\xf7\xb9\xe7\x40\x1b\xce\x29\x27\x3a\x9a\xa8\x8f\x15\x6f\x51\x9e\x14\x69\x99\x99\xe9\x3e\x4b\xa5\xa5\xf1\xb4\xe2\x72\x28\x46\xd9\x4a\x4b\xd1\x2e\xbd\x3f\x51\x73\x1e\xef\xab\x38\x25\x7b\xa3\xb0\x66\x14\x66\x43\x4a\x5b\xb8\x85\xa6\x08\x16\xcf\xb8\xd9\xba\x71\xd1\x89\xc2\x2e\x3d\x28\xe7\x09\xd1\xee\xe6\xeb\xd2\xbe\x38\x98\x12\x0d\x81\xa5\x54\xc8\x24\x88\xbd\xcb\xda\x79\xfa\x5f\x68\xad\xb7\x1f\x43\xe2\xb8\xb3\x9a\x96\xcb\x65\xb5\x73\x73\x2e\xab\xd5\x50\xae\x34\xe9\x29\x81\x53\xd8\x55\xbe\xae\x2d\xfa\xa1\x57\xdb\x3d\x3b\x4e\xb2\x10\x84\x4e\x4e\x09\xb7\xa5\xf4\x48\xaf\xd3\xe6\x93\xca\x76\x13\xee\x68\x68\x4d\x4f\xbe\x9d\x68\x13\x79\xc0\x6b\x3d\x49\x9f\x9b\x6b\xf7\xad\x93\x3a\x16\xd2\x6f\x5f\x55\xbc\xfd\x48\x62\xca\x6e\xb9\x82\x53\x5a\x81\x7e\x63\x52\x29\x44\xfb\x93\x75\x3b\xd0\xc4\xc1\x61\x6f\x97\x8f\x15\x11\x6a\x22\xe3\xbe\x86\x9c\x4e\x66\xbf\xc9\x56\x09\xf5\x88\x17\x2f\xba\xa1\x6b\x1e\xae\x93\xf9\x46\x61\xe2\xbc\x18\x29\x35\x36\x1e\x0e\xe5\x9b\xe0\x0b\x8f\xf8\x19\x9d\x30\xc9\x6d\x77\x18\x27\x51\x32\xc0\xb2\x23\xee\x43\x3d\xed\x01\x4f\x80\xc1\x19\xae\xd7\x2c\xf3\x81\x7d\x6d\x93\xe7\x76\x34\x76\x03\x67\x8c\x68\x09\x7c\x33\xf9\x4b\x1a\x47\xf6\x0a\xa3\x89\xf0\x3c\x6e\x22\x20\xe4\x1b\xb7\x9d\x93\x22\x2f\xf7\xe6\x98\x1b\xba\xc8\x6a\x58\xce\x00\x26\xf5\x02\x2d\x02\xd3\x20\x55\x70\x43\xf9\x30\x89\x57\xd4\xa6\xe3\x64\x81\x6f\x1a\x38\x05\xe7\xdb\x61\x14\x15\x59\x98\xc4\x74\x7e\x14\x8b\x71\x4b\x89\x6f\x37\xb5\xc5\x72\x23\x46\x69\x96\xeb\x24\xac\xb7\xcd\x37\xdb\xf3\xb9\x03\xfb\x0e\x94\xaf\xdb\xa5\xb4\x66\xbe\x86\x18\x02\x67\xe7\x2c\xb9\x16\xd7\x7e\x78\x59\x2a\x21\xff\x8e\x9e\x3e\x16\x69\x17\xcc\x9e\x14\x8a\x64\x52\x79\x9c\x26\x99\xed\x16\xde\x5e\x01\xa3\xf6\xc7\x4a\xd1\xfa\x8f\x27\xc2\xba\x92\x87\x83\x61\x6e\x63\xf7\xb7\x4d\xbc\xf3\x4d\x84\xb2\xe3\x34\x79\xdd\x76\xdd\x93\x86\x19\x7c\x57\x85\x71\xef\xba\x71\xd3\x22\xce\x96\xcd\x60\x60\x7d\x47\x40\x58\xb3\x7c\xd6\xf9\x6e\xcd\xc0\xd0\xd0\x7e\x16\x66\xfe\x67\x00\x56\x02\xff\xc0\xd7\x4d\x4a\xca\xdd\xc4\x44\x38\xc1\x9a\xeb\x97\xaf\x15\x09\xf4\x88\x68\x81\xb3\x8c\x30\x93\x2c\x82\xad\xb8\xf1\x10\xc5\x8a\x38\xb6\x62\x4f\xaf\x33\x3c\x53\x7b\xfd\xc7\x80\x9d\x34\xcc\x58\xdb\x37\x98\xc7\xfd\xf0\x3e\x36\x32\x20\x1f\xe3\xeb\x86\x31\xdf\x83\xed\x6e\x52\xb8\x3e\xbe\x14\x55\x69\x5f\x4b\x4d\xd7\x71\xc8\x98\x74\x6c\xf3\x5d\x5a\x5e\xf7\x92\x2a\xde\x5d\x52\x1c\x56\xcf\x93\x61\x15\xda\x5a\xad\xa9\x55\x99\xb4\xd2\x62\x86\x91\x19\x71\x2f\x06\x7e\x97\x9b\x47\xc0\x5e\xae\xd1\x0f\x47\xf8\xf2\xa7\x0a\xdd\x98\x15\x31\x9f\x48\x18\xee\xb3\x8a\x7c\xf9\x6c\xed\x69\x1e\xd8\x47\x45\xd3\x9d\x9e\xe5\x7e\x4d\x15\x39\x8f\x93\x03\x90\xd4\xb2\x7c\x8a\x68\x37\xdc\x0b\xd4\xb4\xeb\x15\x3f\x73\x3e\xb4\xd4\x38\x5f\x6c\xa9\xe6\xcc\x9a\xea\x77\xaf\x29\xc2\x98\x6e\x32\x22\xf7\x83\xd9\x03\xe9\x98\xa8\xa5\x58\xd3\x18\xaa\xef\x23\xcb\x71\x84\x3e\x5e\xea\xf5\x8a\xab\xd8\x32\x87\x25\x9b\x31\xce\x6e\x02\xb5\x57\x58\xb1\x4c\x48\x08\x9c\xc2\xf1\x62\x18\x45\x2c\x7d\xcf\xca\x86\x81\x9a\xb0\xdf\x9c\xc8\x18\x7e\x66\x46\xd3\x7a\xfa\xc2\xc3\x46\x19\x5e\x0c\x5b\xbe\x73\xa6\xf5\xca\x2c\x6f\x95\x0b\x6a\xc8\x6c\x1c\xda\xae\xcd\x80\x50\xa9\x68\xab\x89\x07\xf1\xc9\xf7\x09\xcd\x78\x7c\x26\xd0\x81\xff\xf6\x3e\x88\x73\x90\x26\x9e\x56\xb6\x77\x83\x78\x88\xd1\xcd\x62\x0a\x4c\xad\x90\x28\xad\xd9\xcf\x2a\x4e\xf0\x22\xce\x77\x2a\x9e\x90\x75\x04\xb8\x08\xe1\xd0\xb1\x43\x01\xe0\xf1\x19\x55\xf3\x9c\x68\xfe\xff\x0a\x55\xbc\xe9\xe6\x4f\x2b\xf2\xf0\xa7\xb5\xf6\x20\x62\x74\x29\x81\xd1\x53\xc1\xa0\xf8\x15\x64\xa3\x42\x98\x42\x6b\xe5\xc6\xa3\x5c\xed\xf9\x0f\x68\xa9\x84\x70\x99\x3c\xb7\xb8\x1f\x9f\x53\x3d\x89\xaa\x03\x8a\x9b\xdc\x3c\x40\xbf\xea\x04\x17\xb1\x44\xa5\x4a\x59\xcc\x2d\x24\x02\xf0\x04\xc3\xa6\xa9\xeb\x61\x32\xb6\x19\xaa\x49\x8c\x29\xd3\xfa\x0e\xc8\x91\x04\xfa\xe2\xdd\x5b\x3d\x14\x7a\x79\x1e\xda\xdc\x2d\xc5\xad\xfc\x50\x65\x3b\x0f\x15\x66\xbb\x57\xc4\x7f\x5b\xef\xaf\x9e\x48\xbc\xd4\xee\x0e\x43\xdb\x57\x92\x24\x37\x94\x24\xc9\x0d\x95\xa3\x46\x36\x8b\x42\xcb\xef\x2e\xdd\x18\x7a\x77\x61\xdf\x70\x92\x6c\xd0\xb0\xc7\x16\x41\x51\x09\xd9\x09\x9e\xdc\xc5\x40\x13\xcf\x07\x7e\xe8\xf2\xbc\x1a\x63\xfd\x75\x95\x82\x2d\xd9\x74\xe5\xb3\x1e\xf8\x79\x53\x8b\x68\xb3\x94\x07\x97\xe8\xe8\x0d\x9c\x02\xcd\xec\x21\x2d\x63\x2b\x11\xe0\x6d\xcd\xa6\x0a\xae\x6d\x66\x3f\xa5\xc6\x0a\xbf\x7a\xa2\x92\xb9\x3f\x53\x34\xf7\xf7\xb0\x07\xd0\x30\xbe\x1e\xf8\x31\x9b\x55\xf4\x71\x90\xd3\xb4\x66\xfc\xe0\xd4\xd8\x9a\x4c\x54\x1f\x65\x7a\xac\x7c\x99\x8c\x95\x6d\x7f\x26\x3f\xd3\xee\x10\x29\x3b\x17\x18\x84\x56\x49\x11\x4f\xaa\x54\xc4\x41\x4a\x15\x99\x3d\x07\x6f\x78\xe6\x9b\x13\xbd\x1d\x36\xf1\x25\xf9\xef\xea\x9d\x52\x72\x9e\xc5\x9b\x05\x43\x54\x45\x3e\xb8\xfc\xea\xa2\x1e\xfc\x7c\x85\x80\xb8\x48\x49\x0e\x7d\x9a\xde\xd6\x8d\xfa\x97\x2b\xe4\x40\xe0\x1e\x10\x1e\xf8\x72\xf4\xbd\xc6\xc0\x2d\x59\x8e\x05\xef\xeb\xda\xee\x9a\xe8\xbb\x7c\x5f\xf4\xe0\xaf\x2b\x9c\x70\x18\x9b\x6e\x2e\x60\x22\x47\x83\xea\x1a\x24\x1b\xc1\x3f\x78\x84\x21\xcc\x8a\x4e\x66\xdf\x28\x6c\x9c\x43\xe2\x7a\xc1\xcb\x5a\xfb\x02\xda\xc4\x2b\x36\x6c\xd5\xc2\xec\x23\x0b\xed\x6e\x1a\xe6\x61\x37\x3c\x86\x81\x21\x21\x4c\x57\x45\xbf\x9b\xb5\x57\x95\xb1\xad\xe8\x9f\x6a\xe4\xe0\x29\xc5\x45\x70\x4a\x45\x47\x3d\x4b\x53\x1b\xd9\x4e\x3f\x55\x77\x6e\xe2\x99\xc0\xd7\x69\xa7\xf3\xf5\x44\x51\xa4\x4e\xfc\x41\xbe\xd3\x70\xf4\x17\xda\x51\x19\x70\xc2\x05\x23\xeb\xb9\x3a\xf1\x19\xd0\x55\xb5\xcd\x08\xc8\x99\x86\xf0\x49\xb3\x15\xa4\x9c\x6b\x38\xbf\x2c\xcf\xf9\xc1\x44\x51\xba\x5c\x9f\x28\x42\x4e\x05\x73\x22\xde\x93\x25\xcb\xba\x73\x8a\xb0\x5f\xaa\x4d\xba\x1b\x35\x4a\x3a\x61\xc4\x92\x84\xa8\xa9\x5c\xe6\x6d\xcd\x77\xc1\x53\x0a\x07\x84\x08\xce\x81\x7c\x1c\x2c\xe4\x62\xad\x5c\x76\x64\xa1\xfc\x2f\x6b\xd8\x73\x69\x83\xce\xa6\x94\x39\x74\x9f\x24\x1e\xd8\xe7\x7d\xbe\xcf\x27\x09\x1b\xe3\xfb\xd4\xf0\x41\xfd\xec\xbf\xc2\x21\x23\xc1\x64\xad\x2c\x84\x6f\x77\x75\xe6\x78\x1f\x81\x11\x8b\x01\xc2\x31\xa0\xab\xfe\x27\x70\x6c\xcc\xc7\x45\x6b\x2c\xca\xa9\x2d\x47\x79\x7b\x42\x73\x03\x7f\x40\x8b\x5f\x61\x23\xe6\x0f\xe1\x55\x72\x8e\xfe\x80\x10\xd0\x30\x37\x19\x72\x97\xb5\x49\xeb\x4b\xbf\xec\x74\xeb\x2b\xfa\x06\xfb\xf7\xf3\x86\xfb\x2d\x55\x55\x59\x0a\x93\x48\x88\x13\x9b\xab\x1f\x2e\x30\x0d\x7b\x3d\x9b\x66\xd3\x5e\x67\x9b\x1b\x9c\x0a\xcd\x7a\xb0\x52\xd9\x94\x8c\xbd\x69\x3c\x39\x89\x81\x4e\x5d\xa8\x70\xa1\x4a\xe3\x54\x3f\x2b\x1b\xdb\xa7\x69\xe5\x91\xff\xac\x23\x81\x67\x85\x45\x2c\xb6\x9a\x21\x3d\x2a\x34\xdf\xf4\x18\x35\x79\x89\x70\xb7\xb5\x14\x4b\xbf\x7a\x6e\x7f\x81\x1f\x03\x17\x77\x17\x3b\x02\x37\xd7\x2a\x3c\xb4\xe5\xe3\x41\x61\xef\xbb\x13\x45\x64\xf6\x5d\x44\x99\xfc\x5e\x0a\x61\xf4\x5b\x0a\x32\x30\x4a\xf2\x24\x4d\x22\x43\xe5\x6a\xfc\x9c\x1d\xa8\xca\xa2\xda\x0d\x34\xa0\x8c\x27\x28\xbd\xcb\xd1\x98\x8d\x8b\x03\x1f\x7a\x20\xa2\xe7\x48\x2e\x6c\x96\x4d\x79\x35\xfc\xd5\x89\xcf\x7e\xb6\xf0\xeb\xb0\x50\xd7\x14\x7a\x73\xc5\x9a\xb4\x93\x24\x8b\x53\x3e\xa1\xba\x89\x15\x76\x62\x26\x73\x73\xfc\x83\x4f\xd7\x9c\x4c\x69\x78\x96\x93\x34\x0d\xa5\x3d\x83\x92\xc9\xae\x55\xdf\x40\xe1\x64\x5a\x98\xb6\xea\x35\x78\x54\x9d\x25\xe1\x45\x0f\xec\x3c\x8e\x04\xdf\x68\x5a\x6d\xd3\x5b\x01\x55\x3b\x36\xd7\xbf\xa6\xe7\xc1\xd7\x0d\x6a\x59\x4c\xd7\x39\x8e\x4c\xd7\xaa\x4e\xd3\xf7\x03\xc5\x9b\xf9\x7d\x3d\xb7\x60\x4d\x5c\x40\xca\xf0\xa5\x46\x72\x33\x4f\xa0\xd1\x0d\x07\x26\xb5\x79\x6e\xf9\xaf\xa5\x17\xd3\x9a\xf7\x82\x1f\xdb\x0d\x35\x25\xdf\xbd\xa2\x9b\x4f\x29\x65\xd3\x29\x8a\xac\x51\x40\xc0\xcb\x51\x73\xb9\xa1\xac\xe6\x92\x89\x0a\x9b\xed\xf2\x0f\x14\x90\x5d\xec\xe3\xdf\x51\xb3\xa1\x3b\x56\xd5\x36\x46\xdd\x40\x84\x40\xbd\xc4\xc1\x49\x45\x60\xd8\x8d\x92\xcc\x46\x2b\x94\xe2\xe0\xe9\xed\x9c\x51\x9c\x9b\xeb\x15\xa1\x74\x7a\x2a\x70\x6a\x53\xab\xb2\xef\xc2\xb8\x08\xf3\x47\x0f\x00\x7a\xc9\xb4\x6c\x64\xf3\xb0\x2b\x75\x7f\xe4\x91\x67\x03\xa5\x0e\x85\x91\x20\xb4\xab\xff\x46\x4f\x3b\xdc\xaf\xea\x10\x98\xf1\xd8\x1a\x28\xea\xb9\xc9\x7f\xc5\x5b\xd0\xc0\xfc\xf5\x7a\x91\x41\xe4\x1a\x95\x24\xc4\x03\xe7\x95\x8c\xd5\xf9\xc6\x92\x40\xbf\xb0\x8e\xc5\x42\xb4\xc6\x95\xc4\xa2\x1e\x18\xcf\x73\x22\x79\xad\x30\x34\xc8\xd8\xdf\xa7\x7a\x6c\xe5\xcc\x44\xc1\x42\x10\x92\x90\xb9\xce\x3e\x0f\x16\x4f\xa1\x2e\xf4\xea\xc6\x9b\x6a\xa4\x11\x9d\x05\x6c\x90\xc7\x57\x5b\x5f\x3e\xe2\xb4\x69\xe9\x7b\x31\x70\x45\xf1\x3e\x51\xe1\x31\xec\x9a\x68\x97\x26\x06\xf0\x1d\xc8\xb3\x81\x3a\x9f\xeb\x20\x2b\x10\x85\x12\xea\x57\x8b\x44\x09\xfd\x38\xd1\xbb\xae\xe8\x5e\x76\xf6\x52\x66\xf4\xe0\x32\x7e\x99\x03\x84\xcd\xcd\x3d\xb8\xac\x60\x61\x9b\xce\xa2\x75\x6c\x9a\x87\x2c\x93\xcc\xb3\x34\x6a\x12\x80\xc7\x8c\x91\x63\xdf\x68\xa0\xfd\x38\xd8\x4e\x6d\x6e\xc2\x68\x9b\xda\xeb\x6d\x45\x64\x71\x5b\xa9\x2b\x47\x61\x6c\xb3\x3d\x15\x56\x1d\x47\x86\xcd\xcc\xf5\x6e\xec\xa2\x34\x7c\xce\x9f\x79\x80\xe7\xa6\x8a\x5d\x4f\x07\x75\x3d\x33\x49\x34\x3c\x8f\x72\x36\x36\x5d\xbb\x07\x3b\x1d\x4f\xee\xa1\xea\xf6\xdd\xd1\xb1\x3b\x40\xcd\x4e\x0b\xd9\x0d\x5a\xde\x54\x59\x0f\x4f\x84\x54\xa4\x1d\x10\x09\x79\xa0\xeb\xb2\x19\x48\x19\x04\xd6\x8a\x49\x4f\xf1\xb5\x77\xcd\x28\x25\x22\x45\xd7\xce\x31\x2f\x43\xde\xd4\x84\xbd\x1b\xb7\xaf\x81\x92\x88\x49\xaf\x88\x7b\x53\xaa\x5d\x8f\xd5\x62\xa1\x0f\xfa\xa5\xcc\xb5\x5a\x3b\x8d\x65\x0a\x1c\x66\x1d\x1b\x49\xaa\xaa\x08\x4a\x8e\xba\x02\x43\x7d\x18\xc4\x74\x92\x02\xdc\x70\x68\x74\x7f\x44\x91\x12\x5f\x37\xa8\x68\x1e\x6d\x1b\xd2\xb1\x2d\xcf\x11\x03\x16\x03\xdf\x23\x3c\xa7\x8a\x20\x29\x95\x0a\x69\xad\x9c\x6a\x94\xeb\xed\x6f\x56\xf6\xfa\xb2\x49\x77\xd3\x96\x73\xdd\x88\x03\xfb\x5c\x8b\xcb\xd7\x81\x77\xad\x2a\x74\xc7\xa6\x2a\x39\xf3\x98\x39\x8a\x6b\xcf\xcd\x78\x3a\xfe\xf3\xae\xde\x64\x46\x18\x44\xc4\x3b\xfd\x10\xcf\x9a\x6f\x5c\xd5\xab\x97\x86\x51\x44\x00\x5f\xdf\xe3\xba\xa0\x7b\x5c\x17\x00\x31\x12\xe3\xb4\x77\x4a\xc1\x82\xe0\x64\x84\x6f\x41\x15\xbd\xee\xd5\xaa\xc5\xb3\x87\xda\xf6\xcd\xee\xb0\xcc\xac\xd2\x29\x5d\x87\xa4\xb7\x40\xbe\xb0\xa5\x03\xe3\x87\x4a\xbc\x67\x64\x4d\x9c\x41\x27\x1f\xa3\x0f\x18\x29\x46\x20\x76\x62\xe2\x59\x06\x6f\x6b\x43\x3c\x51\xa4\xb8\x1f\x73\xd0\x8b\xa8\xf2\xcf\xf1\x03\x25\x4e\xa7\x4f\xe5\x7f\x01\xd1\x97\x8c\xf2\xfb\x36\x28\x85\xb7\x39\xac\x84\x14\xd9\x54\xc1\xad\x49\xaf\xc4\xf6\x0a\xe0\x1e\x59\x5f\xb3\x51\x1d\xd1\x7b\xe6\x72\x85\x89\x7f\x70\xc1\x87\x88\x2a\x4b\xf2\x35\xe3\x71\x98\x9b\x29\xc5\x13\x0a\xa4\x21\xca\x28\x1f\xd0\x02\xa0\xf8\x70\xae\x16\x65\xcd\xcf\xb7\x47\x26\xee\x79\x10\x0c\x13\xcb\xd2\x76\x16\x58\x01\x9d\x58\xbc\xf3\xb7\x6a\x71\x87\x64\xc9\xc7\xa6\xa6\x0e\xfe\xca\x2b\xce\xf5\xb6\xbe\x72\xb0\x32\x55\x02\x9b\xf6\xdb\xaa\x50\x34\x0a\x33\xd1\x84\x6f\x1a\x6d\xd3\xca\x34\x8b\x44\xc4\xf8\xb8\xff\xf1\x00\x9c\x23\xb2\xbd\x8f\x44\x08\xbf\xf0\x44\xe0\x73\x63\x26\xad\x97\xc7\x58\x1e\x08\x81\xc6\xd2\x43\xc3\x69\x3d\xad\x33\xac\x1f\x60\x87\xf0\x7b\x35\x72\x78\x58\x9b\x99\xe5\x96\xcf\x63\xf0\xad\xf9\x5a\x93\xfe\x17\xc9\x28\x69\xf9\xea\xee\x86\x2e\x82\x6d\xe8\xa7\xbc\x6c\xed\x38\x23\x83\xc7\xc4\xe4\x81\x1f\x60\x38\x09\xdf\x28\x41\x72\x83\x04\x0b\x85\x6f\xfc\xf0\x60\xe8\x77\xcd\xb4\xb6\xd3\x52\x09\x89\xa9\x4e\x7e\x4c\x9a\x3d\x0f\x46\x3b\x47\x2e\x7b\x40\x46\xd1\xee\x4f\xaa\xdd\x4b\x87\x68\x63\x62\x62\x07\xe4\x2b\x8f\x86\xf0\xd1\xd2\x27\x21\x3a\xe4\x11\x06\x0c\x22\x5c\x85\xef\x76\x48\xb1\x03\x82\x61\xbc\x1d\x68\x25\xb1\xf3\x70\x5c\xa8\xa8\x5e\x27\x07\x25\x0c\xee\xe4\x3b\x05\x85\xe5\x33\x5d\xd4\xd5\xe0\xb8\x40\xb0\x08\x13\xff\x49\xe0\x35\x9b\xef\xc3\xf6\xa3\x10\xf7\x20\x50\x09\xf4\xe3\xab\xf5\x26\xd9\x6c\x3b\xb6\x83\x48\x35\xc9\xe0\x69\x2e\xab\x49\xa4\xcb\xaa\x1b\x7a\x38\xdf\xdb\x52\x0d\x40\xae\x5d\x8b\xd3\x91\xf3\x39\x30\x51\x94\x30\x09\x2b\x82\x36\x94\x1b\x60\x6c\x40\x4d\x8d\x1a\xd4\x4d\x85\x56\x1a\x24\x4b\x7b\x5b\x6a\x3a\x90\x2b\x98\x7c\xd3\x80\x90\x59\x68\x27\x21\x40\x44\x0e\xd0\xef\x2b\xe9\x5b\x6a\xfe\xa4\x6b\x7a\x61\x14\x99\x2e\x0c\x7c\x85\x31\x5d\x46\x5e\xbc\x03\x8b\x8a\x63\x49\xdc\xd2\x72\x24\x0a\x36\xab\x62\xd4\x9f\xfb\xe2\x2f\x10\x64\x06\xa6\xff\xa1\x4a\xf4\x6f\xa9\x39\xb4\xe3\x0e\x5a\xd5\x4b\xed\x32\x0d\x7e\x49\x05\x8f\x3e\x9f\xa8\x22\x7e\xe3\x59\xcd\xa9\x09\x00\x1c\x93\xee\x6b\x9c\x2e\xd0\xb0\xe2\xca\x34\x07\x65\x45\x5b\xb3\x69\xc2\x9e\xaa\x4a\xe3\xd4\x02\x6f\x21\xf0\xc4\xf2\x45\x7c\xdd\xe0\xf3\x5f\x6a\xf7\x4d\x6e\x86\x53\x8a\x10\xf5\xbb\x13\x0f\xa2\xe5\x86\x0d\xa6\x23\x2f\x57\xfa\x16\x9d\x04\xdc\x2b\x4d\x82\xf7\x4d\x50\xe3\x41\x5a\xf4\x06\x61\x3c\x40\xb5\x51\x8a\x57\xe7\x26\x7e\x1e\xf6\x2e\x6d\x7c\x39\xb6\x3e\x32\x24\xd7\x4d\x25\x5e\x41\xa3\xd0\x31\x76\x41\xc4\x81\x7d\x1e\xb3\x52\x1e\x29\x19\x9b\xdb\x7e\x10\x5e\x9e\x6f\x8f\x4d\x6c\x46\x26\x0e\x0d\xea\xa5\xb0\x88\x17\xb0\xa5\xf8\x46\x71\xe7\xf4\xc3\xd4\x76\x4c\x14\x65\x48\x3e\xd1\xf1\x47\xdb\x17\x63\x1f\xeb\x95\xc1\x7f\xb7\x0b\x96\xf7\x86\xbc\xc9\xd9\xbc\xd0\xc9\x15\x53\xa3\x40\xc5\xbd\x25\x13\xe7\x22\x34\x32\x5f\xd1\x7a\x14\xd8\xa6\xea\x73\xa6\xc9\x72\xfc\x04\xad\x1d\xaa\x5d\x27\x75\x2d\xff\x3e\x1c\xba\x40\x3b\xca\x45\x11\x96\xa9\xf2\xc3\xb1\xda\x8c\x5d\x17\xde\x4d\xec\x2e\x54\x4f\x9e\xc6\xd4\x3d\x0c\xdd\xbf\xa1\xdf\x88\xd7\x3f\xd0\x32\x10\x4f\xd7\x20\x4d\xaf\xbd\xd6\x1e\x26\xf9\x54\xeb\x95\xd9\x4a\xfd\xa3\x42\x61\x0c\x3b\x7d\x4b\x79\x87\x3c\xc9\x32\x62\x96\x97\x69\x6e\x08\xa8\xf2\xb5\x57\xe3\x4e\xe2\x64\x9c\x40\xdb\xd1\x8d\xc7\x28\xfe\xc0\x7b\x38\xdf\x42\xb3\xea\xcf\xed\x20\x64\x61\x77\x27\xe1\x3d\x37\xe7\x26\xf2\x7c\x7e\xce\x21\x11\xaa\x3f\xf7\x82\x9f\x54\x5d\xd7\x28\x32\xb9\x4d\x4d\x14\x1e\x83\x1b\x3a\xca\x1d\x32\xee\x94\xc2\xfe\xc0\x61\x4b\x33\xa5\x21\x34\x1a\x85\x71\x98\xe5\x16\x88\x26\x2f\xde\xa8\xa6\xdf\x4e\xd6\x8a\x7d\x47\x66\x0f\xb5\xb3\x61\xb2\xac\x21\x96\xa7\x34\xb1\xe3\x29\x57\x21\x58\x1e\x26\x91\xcd\x92\x11\x14\x36\x1d\xd3\xeb\xdc\xdc\x83\x1b\x81\x1f\x24\xb9\xa8\x67\x10\x6d\xbf\xc8\x2c\x2b\x03\x70\xb1\x0f\x29\xac\xab\xfc\xe9\xa4\xc6\x13\x7d\x57\x4b\x8c\x45\xba\xf2\x0c\x76\x0f\x6a\x6a\x5b\x94\x85\xe1\x39\x30\x9f\x00\xf6\xe8\x63\x33\x14\xc6\x20\xf8\xff\x46\xe0\xc9\x15\x5a\x33\x7e\xe8\x68\x4d\xeb\xad\x32\xea\x96\x4d\x0e\xb0\x5f\xd8\x94\xd7\x28\x00\xc6\xf7\xfc\x44\xd3\xfb\x5f\x53\x1e\xf3\x13\xe2\x82\x00\xd6\x85\xf9\x94\x65\xbc\xae\xe5\x94\x8d\x37\x26\x4a\xc1\xe4\xb4\xc3\xab\xe4\x36\xcb\xc3\x51\x12\xcb\xd3\x12\x47\xed\x2b\x7d\xbf\xd9\x20\x97\x9f\x85\x83\x58\x1c\x2b\x1c\xde\x37\x26\x8a\x40\xf4\x1b\x4d\x54\x5f\x9d\xb4\xc8\x32\x2b\x10\x8d\x46\xde\x7c\xef\xd9\x5e\xb7\xc9\xd8\xa4\x3d\xb6\x9b\x4e\xa1\xcf\xa1\xba\xee\x2a\x8e\x96\x0b\x93\xff\x17\x00\x00\xff\xff\x0a\x89\xb1\x31\x06\xc9\x4b\x00") func internalModelWeightsGobBytes() ([]byte, error) { return bindataRead( _internalModelWeightsGob, "internal/model/weights.gob", ) } func internalModelWeightsGob() (*asset, error) { bytes, err := internalModelWeightsGobBytes() if err != nil { return nil, err } info := bindataFileInfo{name: "internal/model/weights.gob", size: 4966662, mode: os.FileMode(420), modTime: time.Unix(1494607416, 0)} a := &asset{bytes: bytes, info: info} return a, nil } // Asset loads and returns the asset for the given name. // It returns an error if the asset could not be found or // could not be loaded. func Asset(name string) ([]byte, error) { cannonicalName := strings.Replace(name, "\\", "/", -1) if f, ok := _bindata[cannonicalName]; ok { a, err := f() if err != nil { return nil, fmt.Errorf("Asset %s can't read by error: %v", name, err) } return a.bytes, nil } return nil, fmt.Errorf("Asset %s not found", name) } // MustAsset is like Asset but panics when Asset would return an error. // It simplifies safe initialization of global variables. func MustAsset(name string) []byte { a, err := Asset(name) if err != nil { panic("asset: Asset(" + name + "): " + err.Error()) } return a } // AssetInfo loads and returns the asset info for the given name. // It returns an error if the asset could not be found or // could not be loaded. func AssetInfo(name string) (os.FileInfo, error) { cannonicalName := strings.Replace(name, "\\", "/", -1) if f, ok := _bindata[cannonicalName]; ok { a, err := f() if err != nil { return nil, fmt.Errorf("AssetInfo %s can't read by error: %v", name, err) } return a.info, nil } return nil, fmt.Errorf("AssetInfo %s not found", name) } // AssetNames returns the names of the assets. func AssetNames() []string { names := make([]string, 0, len(_bindata)) for name := range _bindata { names = append(names, name) } return names } // _bindata is a table, holding each asset generator, mapped to its name. var _bindata = map[string]func() (*asset, error){ "internal/model/classes.gob": internalModelClassesGob, "internal/model/tags.gob": internalModelTagsGob, "internal/model/weights.gob": internalModelWeightsGob, } // AssetDir returns the file names below a certain // directory embedded in the file by go-bindata. // For example if you run go-bindata on data/... and data contains the // following hierarchy: // data/ // foo.txt // img/ // a.png // b.png // then AssetDir("data") would return []string{"foo.txt", "img"} // AssetDir("data/img") would return []string{"a.png", "b.png"} // AssetDir("foo.txt") and AssetDir("notexist") would return an error // AssetDir("") will return []string{"data"}. func AssetDir(name string) ([]string, error) { node := _bintree if len(name) != 0 { cannonicalName := strings.Replace(name, "\\", "/", -1) pathList := strings.Split(cannonicalName, "/") for _, p := range pathList { node = node.Children[p] if node == nil { return nil, fmt.Errorf("Asset %s not found", name) } } } if node.Func != nil { return nil, fmt.Errorf("Asset %s not found", name) } rv := make([]string, 0, len(node.Children)) for childName := range node.Children { rv = append(rv, childName) } return rv, nil } type bintree struct { Func func() (*asset, error) Children map[string]*bintree } var _bintree = &bintree{nil, map[string]*bintree{ "internal": &bintree{nil, map[string]*bintree{ "model": &bintree{nil, map[string]*bintree{ "classes.gob": &bintree{internalModelClassesGob, map[string]*bintree{}}, "tags.gob": &bintree{internalModelTagsGob, map[string]*bintree{}}, "weights.gob": &bintree{internalModelWeightsGob, map[string]*bintree{}}, }}, }}, }} // RestoreAsset restores an asset under the given directory func RestoreAsset(dir, name string) error { data, err := Asset(name) if err != nil { return err } info, err := AssetInfo(name) if err != nil { return err } err = os.MkdirAll(_filePath(dir, filepath.Dir(name)), os.FileMode(0755)) if err != nil { return err } err = ioutil.WriteFile(_filePath(dir, name), data, info.Mode()) if err != nil { return err } err = os.Chtimes(_filePath(dir, name), info.ModTime(), info.ModTime()) if err != nil { return err } return nil } // RestoreAssets restores an asset under the given directory recursively func RestoreAssets(dir, name string) error { children, err := AssetDir(name) // File if err != nil { return RestoreAsset(dir, name) } // Dir for _, child := range children { err = RestoreAssets(dir, filepath.Join(name, child)) if err != nil { return err } } return nil } func _filePath(dir, name string) string { cannonicalName := strings.Replace(name, "\\", "/", -1) return filepath.Join(append([]string{dir}, strings.Split(cannonicalName, "/")...)...) } prose-1.2.1/internal/model/tags.gob000066400000000000000000000401761377030147400172240ustar00rootroot00000000000000  @l phoneNNunionNNwrittenVBN acquiringVBGBartlettNNP advertisersNNSNotRBSpainNNPshallMD55CDsaleNN21CDounceNNLawrenceNNPPLCNNPN.J.NNPgroupsNNSmayMDwomanNNcompanyNNtaxNNownerNN````mainJJ attentionNN agreementNNgeneticJJgettingVBGuntilINproductNN5\/8CDMr.NNPcaMDmomentNNMaxwellNNPmovementNNvictimsNNS everythingNNEstateNNPsameJJbeyondINLawsonNNP transactionNN22CDcountryNNthingsNNSeffortsNNSpositiveJJcancerNNoilNNlawyerNNhisPRP$gainsNNSEnergyNNPableJJTorontoNNP interviewNNU.S.NNP24CDmonetaryJJofficesNNSprogramNNlossesNNSsectorNN virtuallyRBageNNcustomerNNdetailsNNS discussionsNNS exclusiveJJ earthquakeNNpricesNNSusPRP industriesNNSCenterNNPdrugNNUntilINlifeNNwayNN proposalsNNSaheadRBbecameVBDmakerNNpaymentsNNSMondayNNPCharlesNNPmoneyNNstrongJJ shareholdersNNS explorationNN1.6CDanotherDTcounselNNmajorJJ investmentsNNSnotRBsocialJJequityNNseniorJJdirectorNN activitiesNNSeveryoneNNbasedVBN temporarilyRBwarrantsNNS investigationNN4CDvariousJJrequiresVBZeconomyNNanyDTbenefitsNNSaffairsNNSareVBPcreditNNlawNNlookingVBG televisionNN consideringVBG newspaperNNS.NNPwomenNNS partnershipNN volatilityNNinIN manufacturersNNS speculationNNamidINtakenVBNDecemberNNP11\/16CD economistsNNSwideJJBushNNP1CDInIN announcementNN decisionsNNSstyleNNCoastNNPcellsNNStheyPRPThatcherNNPPartyNNPitselfPRPleadersNNSCrayNNPfourthJJDowNNPToyotaNNPHUDNNPsucceedVB economistNN candidatesNNS leadershipNNministerNNdivisionNNcaseNNhereRBseriousJJfullyRBindustryNNagenciesNNSboardNNtripNN investorsNNSKoreaNNPtaxesNNSGeorgia-PacificNNPensureVBwasVBDEngelkenNNPManvilleNNPfeesNNSpactNNeffortNN districtsNNSdayNNstrengthNNroomNNtrendNNnationNNsuitsNNShePRPreplaceVBmanagerNN PhiladelphiaNNPatIN31CD38CDYorkNNPfacilityNN bankruptcyNNstockNNMarchNNPassetNN informationNN7\/8CDcertainJJ reductionNNacquireVB agreementsNNS temporaryJJ35CDmostlyRBrepresentativesNNSusingVBG departmentNNappleNN1\/4CD MeanwhileRBdebtNNfacesVBZ conferenceNNC$$summerNNcentralJJtownNNLikeIN insuranceNN operationsNNS WashingtonNNP statementsNNS certainlyRBdownturnNN investmentNNIBMNNPGroupNNPL.NNPbigJJcoverageNNcommonJJ decliningVBGfundsNNSexportsNNS especiallyRBstocksNNSmembersNNScentsNNS SwitzerlandNNPlossNNsizeNN UniversityNNP electronicJJFedNNPtalkingVBGhavingVBGBakerNNPstudiesNNSJaguarNNPreduceVB structureNN industrialJJ increasinglyRB presidentNNweekendNNthoseDT six-monthJJbusinessNNfromIN internationalJJMichaelNNP reinsuranceNNroomsNNSThomasNNP propertiesNNSroseVBDjuryNNproducerNNunlikeINN.Y.NNPJerseyNNPdiscloseVB criticismNNChicagoNNPJohnNNPnowRBregionNNsafetyNN extremelyRBpatientsNNS percentageNN13CDgivenVBN instrumentsNNS oppositionNNpersonNN MassachusettsNNP defendantsNNScableNN CarpenterNNPFeNNP BellSouthNNPFordNNPcarsNNScontractNNTermsNNSthusRBperhapsRBsuccessNNentireJJschoolNN provisionNNIPRPThursdayNNPmarketsNNSbrokersNNSpopularJJ1.4CDproposalNNByINtookVBD50CDdollarsNNSM.NNPtransportationNNyouPRPcomputerNNwhoseWP$studioNNpillNN CaliforniaNNP300CDpaceNN HurricaneNNPcommentsNNSstudentsNNSfounderNNQuebecorNNPbankersNNSwentVBDofficerNNIncNNPmortgageNN improvementNNTheDT5,000CDpowerfulJJ creditorsNNS documentsNNSbondNNfuturesNNSfarmersNNSweeksNNSbasisNN commissionNNWithINanythingNNnationalJJbattleNNpipelineNNpricedVBNconsumerNNneverRBchoiceNNthingNNamVBPcourtNN23CDbeVBBellNNPgrowthNN1982CD spokesmanNN spokeswomanNN particularlyRBbooksNNSGENNPplantNN regulatoryJJ((lettersNNSweaknessNNfashionNNAmongINblackJJGoldmanNNPfellVBDbeganVBDjointlyRBchanceNNunderINelectionNNLTVNNP generallyRB requirementsNNSholdersNNSdollarNN PresidentNNPStillRBDr.NNPopinionNNUnisysNNPbiggestJJStoughJJattorneyNNdevicesNNSgroupNNaccessNNDigitalNNPjustRBH.NNP17CDCourtNNPpoliciesNNSsmallerJJRD.NNPMrs.NNP arbitrageNN themselvesPRPactiveJJ PaineWebberNNPafterINNov.NNP consultantNNwithINnumberNN engineeringNNshePRPSen.NNP difficultJJFridayNNPmergerNNAnotherDT productionNN ChancellorNNPdozenNNItsPRP$realJJtowardINMillerNNPMs.NNPthisDTSansuiNNPsiteNNCoNNPmodelsNNS1.2CD customersNNSreservesNNS exchangesNNSpreviousJJ2.5CDprojectsNNSindexNNdoingVBGHereRBmagazineNNevidenceNNmonthNN institutionsNNSinvestorNN RothschildNNPpsylliumNN unemploymentNNfederalJJ individualsNNS3\/4CDanyoneNNBecauseINpropertyNNimageNNStreetNNPheavilyRBUnderIN100CD typicallyRBToTOpoorJJ%NNMotorNNPprivateJJ SeptemberNNP line-itemJJChryslerNNPsharesNNSmightMD merchandiseNNRichardNNP successfulJJ15CDlawsNNS materialsNNS directionNNyourPRP$internalJJstateNNtooRBgaveVBDsportsNNSoftenRBJr.NNPtrueJJlargelyRB differentJJ regulationsNNS treatmentNNWallNNPsourcesNNSdamagesNNSbaseballNNfilmNN25CDissuesNNSclientsNNS interestsNNSRep.NNPsixCDbondsNNSstrategyNNJackNNPitPRP traditionalJJ environmentalJJutilityNNHisPRP$quarterNNCommerceNNPgasNNcriticsNNSseedNNinitialJJbelievesVBZsidesNNSthemPRP certificatesNNSSantaNNPchainNNJamesNNP outstandingJJover-the-counterJJ ManhattanNNP immediatelyRBalthoughINventureNNarticleNNHuttonNNP previouslyRB GorbachevNNPprovidesVBZB.NNPPeabodyNNPTelerateNNPtimeNNPetersNNProughlyRBshareNNcourseNNAndCCratingsNNSappealsNNS brokerageNN standardsNNSfallingVBGmanagersNNStrillionCDversionNNadministrationNNwhetherINpartyNNcivilJJpowerNNThompsonNNPbanksNNSlineNN recessionNNABCNNP1991CD subsidiesNNSInc.NNP institutionalJJwePRPC.NNProadNNservicesNNSabilityNN involvingVBGintendsVBZpriceNN--:levelsNNS WestinghouseNNPPhilipNNPsomeoneNN competitorsNNSlegalJJagainRBideaNN primarilyRB?.storyNNgrandJJ strategicJJ magazinesNNS lawmakersNNS committeeNN'reVBPAfterINwillMDratingNNputtingVBGapprovalNNplayerNN GreenspanNNPMoscowNNPvehiclesNNSDespiteINendingVBG60CDHewlett-PackardNNPCityNNPscandalNNwillingJJ unsecuredJJsaysVBZmillionsNNS'veVBPGMNNPWarnerNNPreasonsNNSunlessINmusicNN independentJJgivesVBZmajorityNNJ.NNPcultureNNbillNN80CD opportunityNN corporateJJnorCCpaperNNoptionNN relationshipNNSanNNP employmentNNsevenCDstillRBseasonNN businessesNNSyoungJJsurveyNNownsVBZengineNNtwoCDbrandNNsourceNNJanuaryNNP corporationsNNS500CDconstitutionalJJLasNNPPoorNNP throughoutINOfINcouldMDpulpNN1993CDdrugsNNS''''yearsNNS possibilityNNamongINGuberNNP purchasesNNS availableJJwhomWPabroadRB49CDletterNNtermsNNSifINNBCNNPdefenseNNOtherJJbuyerNN40CD1985CDcenturyNNagainstINMorrisNNPcasesNNScitiesNNS manufacturerNN consumersNNSPaulNNPseriesNNtodayNNsmallJJsessionNNunitsNNSdomesticJJexpensesNNS51CDbiggerJJRfactNN restrictionsNNS1984CDTrustNNPcouponNNAlsoRBwarNN18CDjobsNNS5CDitsPRP$systemsNNSotherJJGrandNNPseemsVBZ directorsNNSsoonRBDouglasNNPrecentJJ provisionsNNSEnglandNNPinterestNNAugustNNP scientificJJwidelyRBpushingVBG&CCchipNNemployeeNNcostlyJJmachineNN countriesNNSclientNNspaceNN reflectingVBG DevelopmentNNP1\/2CDholdingsNNS PinkertonNNP eventuallyRBLtdNNPtrialNN AccordingVBG HampshireNNP1.3CD differenceNNworkersNNSDavidNNP;:ceilingNNdeficitNNproductsNNS currenciesNNSAlanNNPSomeDTgoldenJJMass.NNPDuringINReserveNNPdateNN HollywoodNNPCanadaNNPhourNNnothingNN})MorganNNPrightsNNSratesNNSnaturalJJtryingVBG politicalJJ transactionsNNSalmostRBPerhapsRB afternoonNNshownVBN conservativeJJownersNNSloanNN communityNN::SenateNNPAug.NNP debenturesNNSventuresNNSwereVBDAkzoNNPandCCalwaysRBbetweenINfarRBeffectNN expansionNNitemsNNSThomsonNNPwhiteJJgoalNNchipsNNSOnIN AustraliaNNPstatusNN BethlehemNNPdealersNNS colleaguesNNSinstanceNNAprilNNPpresenceNNHongNNPwhereWRB MitsubishiNNP scientistsNNS20CDSunNNP positionsNNS SecretaryNNP authoritiesNNSSept.NNPdidVBDweaponsNNSaudienceNNTradeNNPInsteadRBConn.NNPMarcosNNPeventNNpartNNduringINHoustonNNPJudgeNNPfloorNNabortionNNhouseNN apparentlyRBDelmedNNPprogramsNNStheDT establishVBItalyNNPminorityNNQintexNNPcanMD accordingVBGcriticalJJ75CDFranceNNP commodityNNLINNNP aggressiveJJ necessaryJJnetworkNNisVBZtruckNN12CDearningsNNS relativelyRBAirNNPpracticeNNpanelNNsalesNNSthriftNNHugoNNPAtINReaganNNPslowdownNN shareholderNNLtd.NNP securitiesNNS14CDenergyNNcloselyRB executivesNNSalsoRBUS$$wroteVBD electionsNNSsoftwareNNsystemNNproblemNNloansNNSpositionNNNasdaqNNPswingsNNSorderNN specialistsNNShasVBZactuallyRBPeterNNPareasNNSanalystNNfrancsNNS long-termJJ$$economicJJsingleJJNissanNNPActNNPLehmanNNPrevenueNN commitmentsNNS9CD year-earlierJJ cosmeticsNNS amendmentNNeffectsNNStraderNNrateNN YesterdayNNMoonNNPIndeedRBpartlyRBhimselfPRPAGNNPmeetingsNNSR.NNPsignsNNSCorryNNPmanNNOgilvyNNP producersNNSportionNNtotaledVBDPentagonNNPReyNNPaddsVBZANCNNP resignationNN performanceNN extraordinaryJJonesNNSBurnhamNNPOct.NNPunitNNmePRPrecoveryNNcomesVBZWhileINgameNNmaturityNN emergencyNNmyPRP$ acquisitionNNhoweverRBElectricNNPannuallyRBhousesNNS competitiveJJjunkNN competitionNNassetsNNS1.1CDcarrierNN45CDwhyWRBnormalJJlastJJfamiliarJJ200CD26CDdeathNNNewNNP27CDmakesVBZTreasuryNNPSalesNNSdespiteIN significantlyRBmanyJJAllianzNNP questionsNNSfollowsVBZcampaignNN10,000CDnewsNNColumbiaNNP governmentsNNSordersNNSsteelNNCongressNNPTheyPRP environmentNNEuropeNNPfoodNN70CD1994CDmoviesNNSmillionCDpayingVBGmemberNNbeerNNfullJJkindNN...:shouldMDdirectlyRBmodestJJmorningNNOTCNNPheartNNSECNNPTexasNNPmovieNNseenVBNFebruaryNNP facilitiesNNS telephoneNN conditionsNNSNowRB1990CD thousandsNNSsharplyRBWhyWRB10CDhelpingVBG350CDKidderNNPMobilNNPcameVBDLeeNNPactualJJNovemberNNPincomeNNTokyoNNPmonthsNNStomorrowNN producingVBGChairmanNNPforeignJJCo.NNPSundayNNP SingaporeNNP1986CDJohnsonNNPHuntNNPglobalJJpolicyNNsellsVBZhoursNNSP&GNNPmedicalJJThereEXUnitedNNPJosephNNPsinceINThoseDT InternationalNNPSmithNNPpensionNNMayNNP effectiveJJbeenVBNusuallyRBoptionsNNSweekNNpilotsNNSvotersNNS responsibleJJeventsNNSsecurityNN CommissionNNPSirNNPtrafficNN yesterdayNNwordsNNSofIN48CD resourcesNNSAngelesNNPbrainNNtermNNeyeNNtakesVBZquicklyRBoutputNN managementNNpoundNN includingVBGIfINairlineNNpartiesNNSchildrenNNSreflectsVBZagencyNN liabilityNN retailersNNStoTORoyNNPvehicleNNAmericaNNPNorthernNNPmarginsNNShousingNNregionalJJBankNNProleNNmustMD profitableJJcropNNdoesVBZCorp.NNPOrtegaNNPGermanyNNPadsNNSTwoCDonINFloridaNNP governmentNN1992CDsaidVBDnearlyRBdividendNNJuneNNPwithoutIN continuesVBZ chemicalsNNS1.5CD financialJJUSXNNP privatelyRBExchangeNNPlaborNNJulyNNP automotiveJJlawsuitsNNScrisisNNOctoberNNP19CDAnalystsNNSoutlookNNWhatWPtrucksNNSgoesVBZsurgedVBD7CDactivityNN developmentNNcomparedVBNhighestJJSUnionNNPbadJJtheseDTLondonNNPvolatileJJinsteadRBourPRP$goingVBG technologyNNrulesNNSviaINviceNN constructionNNminutesNNShighlyRBcornNN alternativesNNS researchersNNS currentlyRBclearlyRBChemicalNNP guidelinesNNS InstituteNNPhandNNfeetNNSSupremeNNPBreedenNNPhealthyJJproblemsNNSjobNNreorganizationNNhistoryNNShePRPlargeJJratherRB acquisitionsNNSadditionNNfewJJone-yearJJ400CDbudgetNN250CDGeorgeNNP settlementNNhimPRPsimplyRByear-agoJJplayersNNS negotiationsNNS attorneysNNSthenRBIntelNNPsegmentNNtakeoverNNhowWRBbuyersNNSTheseDTyearNNBrownNNPThisDTMCANNP distributionNN additionalJJStanleyNNP2CD prosecutorsNNSCBSNNP unchangedJJhomesNNSShearsonNNPclassNNcallingVBGschoolsNNSdaysNNSHePRPMoodyNNPreasonNNAfricaNNP portfolioNN protectionNNthanINincludesVBZdoneVBN8CD dividendsNNSEdwardNNPexpectsVBZbyINpossibleJJstakeNNleaderNN1988CDVolumeNNnewJJexampleNN ownershipNNprofitsNNSbegunVBNnuclearJJ IndustrialNNP residentsNNSwageNNcrimeNN150CDgoneVBN6CDseekingVBGForINSaturdayNNPpartnersNNSwouldMDMinisterNNPcarNNhugeJJ##37CDwhoWPmenNNSJournalNNPcityNNLynchNNPn'tRB))plantsNNS employeesNNSgivingVBGgreaterJJRofficeNNprobablyRBMoreoverRBvolumeNNCorpNNP29CDRobertNNPvalueNNSt.NNPpersonalJJ FranciscoNNPfinallyRBIsraelNNPactionsNNS33CDButCCadNN NavigationNNPWilliamNNP'mVBPCoorsNNPGulfNNPBradyNNPbutCC uncertaintyNNadviserNNLastJJothersNNSJapanNNP42CDRJRNNP importantJJParibasNNPDinkinsNNPMaeNNPThenRB```threatNN three-monthJJbookNN1987CDIRSNNPfootballNNRossNNP computersNNSfirmsNNS1,000CDwantsVBZBorenNNP substantiallyRBlawyersNNSwaysNNS congressionalJJCalif.NNP operationNN underwritersNNS subsidiaryNNallowingVBGwhenWRBalreadyRBbankNNgenesNNSServiceNNP28CDtheirPRP$PilsonNNPfourCD representingVBGslightlyRBunusualJJgrewVBDcreatingVBG1989CD controversialJJcycleNNappearsVBZeveryDTComputerNNPformerJJareaNN politiciansNNSstaffNN practicesNNSPolandNNPbillionCDHouseNNPDrexelNNPrecentlyRBstoresNNSMinistryNNPwoMDpeopleNNSeightCD situationNNBearNNP1980CD expectationsNNSPacificNNPdistrictNN entertainmentNNsucceedsVBZwhichWDT somethingNNwaterNNmilesNNS inflationNN generationNN connectionNNFrankNNPmakersNNSIcahnNNP,,finalJJforIN conventionalJJaDTtradersNNSpaymentNN'llMDpartnerNNanalystsNNS high-yieldJJthreeCDpubliclyRBseveralJJAlthoughINresearchNNmutualJJeasilyRB circumstancesNNS representsVBZtonsNNS11CDperiodNNSachsNNP!.resultsNNScitingVBGNECNNPHealthNNPwordNNenormousJJcollegeNNkeepingVBGItPRP significantJJ CommunityNNPpartsNNSlatestJJSflightNN90CDgamesNNSnightNNchairmanNNsimilarJJ secretaryNN mortgagesNNSautoNNholdsVBZNationalNNPcapacityNNbeingVBG statementNNPrimeNNP3\/8CDUALNNPdecadeNN120CDWePRPsharpJJ{(intoINF.NNPbillsNNSLosNNPeverRBtroubleNNPontNNPfiveCDbroadJJfamiliesNNSKongNNPnineCD CommitteeNNPnumbersNNS contractsNNSmetricJJ46CDdecisionNNlargerJJR officialsNNSSinceINgrossJJhealthNNmachinesNNSeditorNNmarketNNlanguageNNAnDT AssociationNNP equipmentNNactionNNfamilyNN so-calledJJjudgesNNS technicalJJ WednesdayNNPJonesNNPanDTECNNP substantialJJsomeDTBrooksNNP relationsNNSweakJJWhiteNNPfieldNNChinaNNPHoweverRBremarksNNSconcernNN retirementNN DepartmentNNPMitchellNNPaddingVBGbecomingVBGcashNNgoodsNNSlocalJJdeliveryNNwifeNN companiesNNSexpertsNNS..currencyNNindeedRB BloomingdaleNNPDanielNNPFujitsuNNPraceNNoldJJ legislationNNDuNNPS.A.NNPorCCfraudNNSonyNNPYouPRPcarriesVBZ44CDestateNNeachDT-: membershipNN16CD30CDcurrentJJOurPRP$E.NNPwithinINgetsVBZfactorsNNSgeneNNParisNNP1\/8CDlargestJJSBritainNNPfairlyRBMixteNNPTuesdayNNPWhenWRB4.5CDresponseNNobtainVBBoardNNPmediaNNSannualJJ organizationNNlinesNNSCompaqNNP short-termJJCountyNNPguiltyJJEachDTMexicoNNPreallyRBBostonNNPworldNNgreatJJprose-1.2.1/internal/model/weights.gob000066400000000000000000227444061377030147400177530ustar00rootroot00000000000000  K&i-1 tag+i word VBN monthlyRB(\?JJ(\i word resurfacedVBNMbXVBDMbX?i word nautilusJJsh|??JJRA`"NNQֿi-1 tag+i word NN heapNNI +?RBI +i+1 word eventuallyNNPoʡ?JJoʡi-1 tag+i word NNP inkVBPClNNCl?i-1 tag+i word VBD herbertJJ(\NNP(\?i word regulatingVBG#~jNNS@JJףp= i word attendeeNNq= ףp?VBq= ףpݿi-1 tag+i word VBN steepJJv?NNvi-1 word patients JJ|?5^?VBZ^I +NNP?5^I VBDnVBN!rhNNMbX9VBP&1?NNPS +οVBGʡE? i word votersNNPSZd;?NNSMbNNP)\(ܿi word requiredJJ#~j?NNvVBD~jtVBNt@RBNNSSi+2 word confirmsRB/$?VBD/$i-2 word petroleumNNPSV-?NNSbX9NNPJ +i-1 tag+i word RB boringJJA`"?NNA`"i word investigationsNN/$޿NNS/$? i word watersNNPʡE?NNSMbȿNNV-i-1 tag+i word NNP intervenedVBN/$VBD/$?i-2 word protestersVBx?RP&1ʿRBV-INˡEܿi-1 word community NNPST㥛 VBNMb?VBPMb?RB9v?INGzVBZJ +?NNS= ףp=ʿNN333333VBDMbNNPGz?i-1 tag+i word NNP understandVB#~jVBP#~j?i-1 word starsVBP/$?RBR|?5^NN/$NNP|?5^?i-1 tag+i word DT stuntNNK?JJK߿i+1 word speedingVBS㥛?NNS㥛i-1 tag+i word POS rumoredVBNh|?5?JJh|?5 i word braNNRQ?NNSRQi-1 tag+i word JJ northeastNNK7ANNPK7A?i-1 suffix deoNNPGz?NNPSDlٿJJHzG?NNHzGCDKi word markdownsNNS-?NN- i word backerDT\(\NNP\(\?i word interprovincialJJ&1NNP&1?i-1 tag+i word IN softerJJRl?NNli-1 suffix nosVBDSVBQVBPx&1@WDTZd;INZd;?i-1 tag+i word VBG grummanJJh|?5NNPh|?5?i-1 tag+i word VBG dignityVB1ZdNN1Zd?i-1 tag+i word , aminoJJPn?NNT㥛 VBDL7A`i-1 tag+i word NN describedNN(\VBD(\?i+1 suffix yed NN-JJR-?VBPʡEͿNNS%C?NNPK7MDCl?VB%CԿNNPSsh|??RBA`"?JJGzVBZ#~j?i-2 word entertainmentINMb?VBQVBGS㥛пNNp= ףVBDE?VBNEVBPOn?RBMbi-1 tag+i word -START- abbyJJzGRBh|?5οNNP@CCS㥛i-1 tag+i word PRP$ leadNNMb?JJMb i suffix que RB/$VBD/$VBNv׿WDTV-VBZx&1NNPv/?VBףp= NNPSףp= ӿRP;OnNNQ @JJoʡ@i-1 tag+i word NN ourselvesPRPuV?VBZuVi+1 word misadventuresJJ~jt?NN~jti word claimantsVBZ rhNNPSCl?NNS rh?NNPCli-1 tag+i word NNP revenueNNx&ѿNNPx&?i-1 tag+i word NNP murderNN;On?FW;Onҿi+2 word salubriousVBZ{GzVBMb?VBPSi-1 tag+i word WDT americansNNPS'1Z?NNP'1Zi-1 tag+i word NNS issuedVBPףp= VBN ףp= @VBD{Gz i-1 tag+i word DT discriminatoryNNrh|JJrh|?i-1 tag+i word TO ignoreVBMb?JJMbi word portfoliosNNSQ@NNQi-2 word chiefsNNy&1NNPy&1?i-1 word principalNN/$CDZd;VBZNNS?JJK7? i word jocksNNMbNNSMb?i word presumedVBNX9v?JJI +@VBD9vVBZOnNNSx&1i-1 tag+i word NN truckingVBGʡENNʡE?i+2 word alphabetJJ;On?NNP;Oni-1 tag+i word RB followingVBGM?JJMi-1 word lacklusterNNCl?JJJ +NNPv@i-1 tag+i word TO mirrorRB333333ÿVB333333? i+2 word evenNNPJJ;OnVBDnVBZ?IN/$?RP^I +NNJ +?RBX9vNNSKǿPOSsh|?DT(\տVBP5^I @VBN?VBGNbX9VB +WDTp= ףRBRJ +?i-1 word marathonNNؿNNP?i-1 tag+i word VB cuteJJh|?5@NNS+VBN{GzNNT㥛 ؿi-1 tag+i word IN wooingVBG"~j?JJ"~ji+1 word engagementsVBGʡENNʡE?i-1 tag+i word VBN quarterlyRBA`"@JJzGNNbX9i word intrinsicJJ?NNMbпVBD+i-1 tag+i word RB insofarRBx&1?JJ/$VBN(\ȿi-1 tag+i word WDT usedVBN~jt?RBV-VBDq= ףp?i-1 tag+i word NNS offVBZZd;RPV-RBw/IN)\(@i word dictaphoneNNPS%CNNP%C? i word assignVBZx&1VBx&1?i-2 word highlyRBL7A`VBZ333333NNSI +?VBGtV?JJZd;NNRQ?i word magicianNNsh|??JJ+NNS㥛 i word servingNN= ףp=ڿVBGV-?JJZd; i word israelVBZrh|NNPrh|?i-1 word handilyVBNEпJJE?i+2 word reflectsJJ;On?RBRp= ףRB rؿi-1 word infamyJJ1ZdIN1Zd?i+2 word skiingNNʡE?VBGʡEi-1 tag+i word POS smallestJJS?JJi-1 tag+i word POS basketballNNSMbNNMb?i-1 word messageWDTy&1?VBNDl?NNDlINy&1ܿi-2 word agreeingVBZd;?NNn?CDSi-2 word ratingsVBPV-߿JJ(\NNV-?NNP(\? i+2 word fujiVBDS㥛?VBNS㥛i+1 word interestedIN7A`DTx?PDT&1RBRK7A?JJR|?5^VBP|?5^?RBh|?5? i suffix riaVBZB`"NNS r@NNP +?VBQVBGSNN +?VBN㥛 JJq= ףp i suffix .E.NNPS~jtӿNNP~jt?i-1 tag+i word NN watchingNNV-?JJV- i word hurryNNS~jtNN~jt?i-1 tag+i word POS walkNNK7A?JJK7Ai-1 tag+i word NNP runVBMb?VBPMbi-1 word effect NNSClJJ#~jWDT&1RBHzG?IN?VBZsh|??VBGGz?NN?5^I ¿VBPsh|?ſi-1 tag+i word POS communistJJx&1@NN?5^I NNP\(\i-1 word outflowsVBMbX9VBPMbX9?i+1 word isabellaWDT'1ZIN'1Z?i-1 tag+i word JJ sovietNNS+JJPn@NNPA`" i+1 word flapNNp= ף?JJp= ףi-2 word takeover VBʡEJJDlѿNN'1ZRBDl?NNS9v?VBDV-?VBNHzG?VBZ9vNNPX9v? i-1 tag+i word -START- employersNNP~jt?NNPS-NNSnҿi-2 word shupeNNCl?JJCli-1 tag+i word NNS noteVBP?NNi-1 tag+i word VB vastJJ'1Z?NN'1Zi-2 word highlandNNFx?VBDFxi word arrogantJJ(\@NN(\i-1 tag+i word NN standardNNK7?JJK7i-2 word searchRB?JJRPn?VBNh|?5JJZd;OINSNNSZd;O?i+1 word tellsNNHzG?JJHzGi-2 word conspiracyVB ףp= NN ףp= ?i word magneticVBKPRP$KNNSJJ{Gz@i-1 tag+i word JJ accountVBPQNN&1?NNPtVi-2 word rather VBZ rhVB333333@JJ-JJRA`"EXS㥛?RB|?5^NNSVBPK7A`?NNSx&i-1 word deniesDTGzPDTGz?i-1 suffix uesJJR!rhNNPK7A`?VBPS㥛@NNh|?5VBDK7A`RBR|?5^?WDTMbX9INMbX?NNPSV-DTbX9FW&1ҿRB#~jVBNZd;?JJvNNSp= ף?VB%C@i+1 word draggerNNzG?JJzG i word mePRPOn?NNPOn i word typeNN1Zd?JJ1Zdi-1 tag+i word -START- beneathINMbX9?NNPMbX9ܿi word inadequatelyRBx?JJxi-1 tag+i word CD rumoredVBD5^I JJ5^I ?i-1 tag+i word NNP manhoodNNS?RBSi-1 tag+i word JJ deathsNNSNbX9?NNNbX9i-1 tag+i word , bloodyNNxJJx?i word broadcastingNN/$@JJʡENNP?VBN?5^I VBG+?i-1 tag+i word RB bullishVBB`"ѿVBN?5^I JJ5^I ?i-1 tag+i word DT intriguingVBGʡEJJʡE?i-1 tag+i word POS gloomyJJOn?NNOni-1 tag+i word NNP teensNNPMbX9NNSMbX9?i+1 word complainingVBZMbXNNSMbX?i-1 tag+i word PRP$ conceptNNSGzNNGz?i word warmingVBGV-@NNuVJJx&1i-1 tag+i word NN tubeNN㥛 ?JJ㥛 i+2 word adviseVBNQNNQ?i+1 word societyVBZHzGVBN ףp= ?JJMbX?NNPh|?5i-1 tag+i word VBP slowJJK7@NN&1RBV-VBNB`" i word slatsNNQNNSQ?i-1 tag+i word VB efficiencyNN;On?RB;On i-2 word artsVB$C@VBP$Ci-2 word succeedRBn?INni-2 word baltimoreVBZ333333NN333333?i tag+i-2 tag RB PRPNNS{GzRBR{Gz@VBD?5^I@VBZX9v?VBK7A`տVBN-VBPoʡ@IN-?VBGK7ARP7A`?NNjt?JJ&1JJRJ +RB㥛 i-1 tag+i word : joshNNx&1NNPx&1?i-1 suffix umnVBNʡE?VBDʡEֿi+2 word reverseRBOn?JJOni-2 word apartmentVBNl?VBDli-1 word strikeJJV-NNP?5^I VBZV-VBD{Gz@NNSMbPi-1 tag+i word CD remainsVBZ+NNSV-?NNV-i-1 tag+i word VBP putVBGKVBNNbX9?VBD&1i+1 suffix capNNPS㥛JJ~jt?NNh|?5VBD|?5^i-1 suffix luxNN-JJFW1Zd? i+1 word loneDTRQINRQ?i-1 suffix *\*VBZ9v?NNP9vi-1 tag+i word IN irradiatedJJ5^I ?VBD5^I i-1 tag+i word VBG objectsNNS"~?RB"~ i suffix 0SXCDV-NNPV-?i word recoveredVBN)\(VBD)\(?i-1 tag+i word CD postalJJ-?NN-ۿi+2 word productionNNK7A`@VBN?RBRnRBjtINI +DT?NNPL7A`JJK@i-1 word biddingVBZMb?JJSuVNNm?RBd;ONNSMbi-1 suffix ass JJR/$?RBR/$ѿRBʡEIN$C?NNS'1ZNNP^I +?RPʡE?JJ|?5^VBGL7A`пDTX9vֿNNsh|??VBD/$޿i-1 tag+i word , facsimileJJQ?NNQi word upswingVBGˡENN1Zd?JJi-1 tag+i word NNP scholarNNFx?JJMbVBD + i+1 word fansNNP+NNPS9vNNB`"?CDRQ?JJ/$?NNS'1Z?i-1 tag+i word DT swellingVBG+@JJ㥛 NNʡEi+2 word noticeableVBNS?VBDSi-1 tag+i word NNP citizensNNPSʡE@NNPʡEi-2 word arsenalsNNS-?JJ-NNDl?JJRDli-1 word gradualVBGS㥻?NNS㥻i+2 word treasury VBGq= ףpRPV-?NNnVBD$CVBN"~j?VBPq= ףpݿJJ|?5^?IN㥛 RB(\?i-2 word investorRBnINGz?DTl?RPJJ5^I ˿VBD(\µVBNl? i+2 word bredVBG㥛 ?NN㥛 i-1 tag+i word MD amountVBZd;O?VBNZd;Oi+1 word underminedNN+?IN+i-1 tag+i word RB keptVBQVBNQ?i-1 tag+i word RB drainingJJx&VBGx&?i tag+i-2 tag NNPS TONNPS)\(?NNP)\(Կi-2 word askedUH rhRB rh?NNPjt?NNPSnVBGѿNNy&1i-1 tag+i word VBP americansNNSy&1?NNPSy&1i-1 tag+i word '' addNNzGVB-?NNSffffffi-1 tag+i word DT readingVBGJ +NNJ +? i word leanJJjt?NNjti-1 tag+i word CC sereneVBRQJJ$C@NN|?5^i-1 suffix ulkNNjt?JJjtֿ i suffix HBONN"~jNNP"~j?i-1 tag+i word DT declinesNNSX9v?VBNX9v i word babiesNNPSvNNSv?i word insuredJJv @NNS9vVBN^I +߿NNVBD rhi-1 tag+i word NNP coachesNNSJ +?NNJ +i+1 word trappedVBL7A`?VBP9vJJ333333i+1 word facilityVBˡEVBG1Zd?VBNK7A`@NNSۿJJʡEi-1 tag+i word JJ downsizingNN(\?NNP(\ڿi-1 tag+i word POS offeringVBG;OnNN;On?i-2 word withdrawalJJM?NNPM i+2 word woodVBx&?NNx&i+2 word eightMD~jt?NN"~j?VBDx?RBPn?INPnпVBZ333333NNS"~ji-1 word outstandingNNPSjtNNSZd;NNjt?VBDZd;?i+1 word creativeNNVBG?i word infantileJJCl?NNPCli-1 tag+i word `` godNN+NNP+?i+2 word percentSYMX9v?LSX9vi-1 suffix ideEX-INB`"@VBNGzWDTHzG?RBK7A?VB\(\NNPSx&JJRl?WPGz޿VBZWRB\(\PDT!rh?CD%C?VBDx&1?RPHzG PRPFx?RBRlNNS/$NNPm?VBGˡE?JJx&DT(\NNA`"i-1 word felixNNPSMbXNNPMbX?i-1 word includedRBL7A`NN~jtJJHzG?IN +޿NNSSNNP~jt? i word spotVBCl?NN/$@VBPZd;ϿJJx&NNSlNNP㥛 i-1 tag+i word NNP commonwealthNNPSMbX9NNPMbX9?i-1 tag+i word NNS releasedVBD7A`VBN7A`?i-1 tag+i word -START- nikonRBS˿NNPS?i word inexperienceNN(\?JJ(\i+2 word excorciateVBGz?NNGz׿i-1 tag+i word VBG filipinoRBRZd;NNPZd;?i word constableJJS˿NNPS?i-2 word jointlyRP7A`¿NNQݿJJ7A`?VBGQ? i word jcpNNKNNPK?i-1 tag+i word NN concludesVBZʡE?NNSʡEi-1 tag+i word VBD forcedVBNQ?JJQi-2 word revokeWRB^I +?IN^I + i suffix DATNN ףp= ׿JJ{GzԿNNP(\?i tag+i-2 tag WDT -START-VBD$C?CDSVBPoʡPRPS?VBZ$C˿MD ףp= ?NNPS ףp= NNoʡ?i-2 word listeningNNPy&1?VBy&1ܿi-2 word spokesmenCC{GzDT{Gz? i word hearsVBZ'1Z?NNSv/VBD ףp= ߿i-1 tag+i word NNS barometerNN r?RB ri-1 word veslefrikkMD^I +׿JJQ?RBS㥛NNZd;߿i-1 word unusedNNSffffffNNffffff?i-1 tag+i word CC voteVBuVNNDl @NNPʡEi-1 tag+i word , finishedVBD^I +?VBN^I +׿ i-2 word sumsRB9vVBZd;O޿RP(\?i-1 tag+i word NN awardedVBN|?5^JJx&VBDtV? i-1 word wasCD;OnVBDq= ףpVBNʡE@RP}?5^IJJSuVJJR#~j?PRP$x&1?VBZoʡRBS(\?RBRQ?RBw/?NNSOnWDT+JJNbX9@DTMbX?NNffffffNNP+PDTClVBGDl@VBPV-INK?NNPS7A`i word totteringVBGʡE?JJʡE i-2 word careRB"~j@VBP)\(NNZd;OJJHzGi-1 tag+i word NNP emphasizesVBZS?NNSw/RBzGi+2 word outputDTS㥛?INS㥛i-1 word forfeitureVBZZd;ONNPS&1NNn@JJlҿRBX9v׿i+1 word wheneverVB(\?VBPMbпNN|?5^JJNbX9VBNjt?i+2 word driftwoodRP= ףp=?RB= ףp=i-1 word analysts VBDPn?VBNK7?''x&1̿VBP~jt?WDTClɿVB/$?JJzGNNClRBOn?INɿPOSx&1?VBZi-1 tag+i word , layVBZNNrh|RBSVBDV-@i word employeesNNPV-NNPSV-@NNS-?RB-i-1 tag+i word NNP '''ʡEݿVBZ#~jPOSv/@NNPPni word ludicrousRBRGzJJFx?VBNuVͿ i+2 word yaleVBZ+NNS+?i-1 tag+i word DT riverNNV-?JJMbX9NNS333333$i-1 tag+i word -START- eavesdroppingNNP/$VBGV-NNMb?i-2 word fashionVBNZd;OVBPZd;O?RB?5^I VBZp= ףNNSp= ף?JJ?5^I ?NN333333VBDK?i word contributionsNNSˡE?NNˡEi+1 word armstrongVBPX9v?JJX9vi word musclingNNClVBGCl?i-1 tag+i word CC refusedVBNrh|JJnVBDCl@i+1 word advertisersJJ?NNPMbJJRffffff?NNK7RBRffffffi-1 suffix pitVBG333333?NNQCDGz?i-1 tag+i word DT queriedVBNV-?JJV-i-2 word battlegroupsVBy&1VBPQοNNV-?i-1 word dundeNNCl?JJ ףp= NNPS㥛i-1 tag+i word JJ possibilitiesNN;OnҿNNS;On?i-1 tag+i word NNP studiosNNS7A`?NN7A`i-1 tag+i word IN garbageNN rпNNP r?i word violentJJA`"@NNA`"i-1 tag+i word `` attitudesNNPq= ףpNNSq= ףp?i-1 tag+i word NNP dueJJ&1?NNP&1 i suffix 4thJJ~jt @CD~jt i-1 word operationINy&1?NNSX9v?VBK7NNZd;VBPK7?WDTh|?5?i-1 tag+i word VBN joeJJʡENNPʡE?i+1 word empowerWDT9v?IN9v i+1 word l.RBRX9vNNlNNPMbX?i-2 word retiredVBZ5^I ˿NNS5^I ?i-1 tag+i word , increasingVBG!rh?JJ!rhi+1 word environmentalistsJJzG?NNzGi+2 word groupsDTJ +NNP?5^I RP/$VBD$CVBN~jt?VBP$C?JJ-?INJ +?i+2 word caughtINQ?DTQVBDlNN+VBNClJJtV@ i+2 word woNNx?JJSV-?RBSV-ǿWDT~jtNNPSFxVBZ|?5^ @NNPoʡ?VBʡEJJ;OnVBDS㥛?VBPbX9ƿRB+IN +?VBGS㥛?VBNX9vDTx&1?NNSSi+2 word complainedNNQ?RB-NNP㥛 ?i-1 word whipsRPE?INEпi-1 tag+i word NNP tvNN rhNNP%C?NNPSClۿi-1 tag+i word VB persianJJ%CNNP%C?i word ensembleNNRQ@JJRQi-1 tag+i word DT extraRBZd;JJROnJJv/@NNX9vi word neurosurgeonJJ'1ZĿFWV-ݿNNPSNNS/$NNOn@i-2 word racketeeringNNrh|?NNSrh|RBB`"?JJB`"i+1 word aichiDTˡEINˡE? i word wildVB +VBPffffffƿJJZd;@NNsh|? NNPPn?i+1 word endorsementsJJ(\?NN(\i-1 tag+i word JJR warningVBGQ?NNQi word grenadaVBPK7ɿNNPK7?i-1 tag+i word TO flounderVBzG?NNzG i word machoJJx&1@NNSClٿVBN-NNmi-1 word hiborNNp= ףVBDp= ף?i word petroleosVB&1ҿNNP&1?i-1 tag+i word JJ directorateNNOn?NNPOni-2 word several NN'1ZRBRZd;O?RB|?5^?IN333333NNS"~j@JJQ?VBD#~j?VBN/$?VBPDlWDTX9v?VBZZd;OJJRx&?NNP$Ci+1 word couponsJJoʡ?NNoʡݿi-1 tag+i word DT athleteJJjtNNjt? i word ovataVBZ$CۿNNn?CDʡE i-1 word madePDT/$RBRy&1?RBd;ODTK7?VBZ-NNMbX9?NNPI +޿NNPS&1?NNSjt?VBPQPRP)\(JJRy&1PRP$ rRPDl?JJ/$?VBN$CIN(\?VBGsh|?տi word committedVBN'1ZJJT㥛 @VBDGzi word wrondgoingVBGw/ܿNNw/?i word acceptableJJʡE@NNoʡVBP(\i word rulingsVBZMbNNSMb?i-1 tag+i word VBZ outrightRB(\?JJ(\i-1 tag+i word IN workingVBG?NNZd;OJJ/$?i+1 word mattesJJS㥛пNNPS㥛?i-1 tag+i word IN guaranteedVBNQ?NNQJJGz?i+1 word acknowledgeVBZA`"ۿNNPSxNNS(\@NNP(\i-1 tag+i word PRP wantedVBNʡEVBDʡE?i-1 tag+i word DT ussJJrh|NNPrh|?i word proceedingVBG^I +NN^I +? i word 'n'POSQCDOnCCL7A`?i-2 word undertookJJ'1Z?NN'1Zi+2 word corporationRBJ +NNPx&1VBZtV?JJbX9޿i+2 word jonathanNNn?NNPni-1 tag+i word DT nonprofitJJGz?NNGzi-1 word clocksVBNX9v?VBDX9vi-2 word waitingDTK7?PDTK7AJJ?NN= ףp=?RBK7ٿi+1 word pressuresNNS^I +NNrh|@NNP1Zdi-1 word delayingNNrh|?JJrh|i-1 tag+i word CD 'emPOSjtֿNNPjt?i+2 word derailingVBN(\JJ(\?i-1 word sidelinesRB rhIN rh?i-1 word barnettNNPS/$NNP/$?i+2 word minorNN rhVBD rh?VBZˡEVBףp= VBNsh|??i+1 word regionNNK7AJJCl@NNPQVBP+i-1 tag+i word IN updatedVBNy&1?JJy&1i word associateRB333333VBjtVBP%CJJGz @NNzGi-1 tag+i word JJ peerlessJJ/$?NN/$i-1 tag+i word NNS upturnNN|?5^?VBP|?5^ѿi-1 tag+i word NNP educatorsNNP`"?NNPSKNNS㥛 i-1 tag+i word `` whoeverDT-RBK7A`տWP-?i word criticismsNNSFx?NNFxi+1 word imagesRP$C?NNp= ף?JJ +?IN$CVBZ +NNPp= ףi-1 tag+i word VBZ workingVBGףp= ?JJ+NNʡEi-2 word stronglyCCOnӿJJROn?RBGzINOn?NNSOnNNGz?i-1 tag+i word DT controlNNPSʡEJJʡE@NNZd;NNPn?i-1 tag+i word `` firstRBGz?FWGzNNPK7AJJy&1?i-1 tag+i word CC aspirationsNNSq= ףp?NNq= ףpݿi-1 tag+i word NN proJJ\(\?FW\(\i-1 word ingeniouslyVBN&1?JJPnؿNN+i-1 tag+i word VBP questionNN7A`?JJ7A`ڿi-2 word hopedNNPnPDTMb?JJFx?i+2 word impugnDTGzWDTGz?i-1 word toleranceJJ?NNMbпVBD+ i word globeNN9v?JJʡENNP$C?i-2 word experimentVBD~jtVBN~jt? i suffix dasNNPSy&1?NNS @NN NNPy&1 i-1 word h.h.NN7A`NNP7A`?i-1 tag+i word VBG moderateJJx&1?NNx&1i-2 word coorsNNPSS˿NNPS?i-2 word technologiesVBZ rhVBGz?JJV-i+2 word strategistJJuV?NNuV i-1 word laneVBZRB?i-1 tag+i word WP poniedVBDCl?VBPCli-2 word measuresNNPS㥛@JJS㥛NN㥛 ?VBD rh?VBP rhRB㥛 i-1 tag+i word CC placeVBPnNNn? i word edisonNNbX9?NNPbX9i-1 word automatedVBGMb?NNSX9vNNx&JJrh|NNPX9v? i suffix jamNNS㥛 ¿NNRQ?JJ+i word protectionNN(\NNP(\?i-1 tag+i word NNS plansVBZh|?5ֿNNSh|?5?i+2 word wheatNNPS?5^I NNStVֿNN!rh@JJ"~i-1 tag+i word JJ powerhousesVBZx&NNSx&?i+1 word ortegaWDTK7AINK7A?i+1 word turned NNPSNbX9?RBDlJJRoʡݿWDTHzG?INHzGNNSoʡ?NNPq= ףpNN%C̿JJ'1Zܿi-1 tag+i word : fourCD?NNP i-1 word feesVBDʡE?JJd;OVBPZd;OVBNK?NN= ףp= i+1 word plan VBPZd;OͿJJB`"?NNS&1ʿNNP\(\NNPSx&NNsh|??VBN ףp= INQVBZA`"DTS @VBG}?5^IRBnVBDX9v?i-2 word titledIN|?5^?JJQNNP7A`i+2 word streamliningVBN= ףp=?VBD= ףp=i-1 tag+i word DT drawNNMbX9?JJMbX9i-1 tag+i word NNS !DIGITSVBPRQCDRQ?i-1 word wagesVB9v@VBPVBNZd;?NN"~VBDZd;i-2 word stevricNNSMb?NNMbؿi-1 tag+i word POS tallestNN/$JJS/$?i-1 tag+i word , asJJ+RBʡENNvINX9v @i word adornedVBNKVBDK?i+1 word gaugeJJX9v?NNX9v i word largeNNP|?5^ VB~jtJJx@NN^I + i word espsNNPS/$@NNS= ףp=?RBClNNd;ONNPq= ףpi-2 word approvalEXuV?JJ?5^I ?NNP%CVBNMb?RBuVi-1 tag+i word PRP neitherVBZZd;ϿRBZd;?i word predictionsNNPSClѿNNSCl?i word preventsVBZ{Gz?NNSMbX9VBDMbi-1 word supplementVBZ|?5^?NNS|?5^i+2 word statedDTnWDTn?i+2 word seemedNNPQNNSn@CDmi-1 tag+i word JJ supercomputerJJI +NNI +?i-1 word stayingJJRHzGRBHzG?i-1 tag+i word TO citicorpVB9vNNP9v?i+1 word wallsJJV-VBK7A?VBGS?JJRx&1NN333333ӿi-1 tag+i word VBP foreverVB/$ݿRB/$?i-1 tag+i word , modeledVBNV-?VBDV-i-1 tag+i word IN guaranteesVBZ|?5^?NNS|?5^i-1 tag+i word -START- thinkVBDlVBPMb?NNPX9vi-1 tag+i word RB demandingVBGffffff?JJffffff޿i-1 tag+i word NNP foundVBD/$?NNS㥛NNPffffffi word copyrightsNNSQ?NNQ i word labelRBRʡENNʡE?i-1 suffix masNNPn?NNPSV-?VBGx&ٿNN~jt?VBDZd;i-1 tag+i word `` playingVBGd;O?NNPd;O i word nikkeiNNPSףp= NNK7A`NNP9v?i-1 tag+i word `` youngRBjtUHw/ĿJJV-ϿNNPS㥛?i-1 tag+i word VBG startedVBNKVBDK?i-1 word exxonNNlҿNNPl?i-1 tag+i word VBG fieldingVBGK7ANNK7A?i-1 tag+i word DT stiffNNK7JJK7?i+1 suffix ialVBN)\(?WDT;OnIN rh?NNPSy&1ԿVBGx&1?DTDl?RPRB= ףp=?VB$C?VBDZd;OJJ?5^I ?VBZMbX?NNMbX9RBS/$?RBRoʡ@JJSQVBPX9v@FWK7POSRQ?NNS333333NNPZd;OJJRE i word summerfolkNN~jtNNP +?VB|?5^JJmi-1 tag+i word NN createdVBNjtVBDjt@i+1 word communistsJJK7?FW"~jVBjti-1 word auvilVBZV-?NNSV-i-1 tag+i word NN estimatedVBNZd;OVBDZd;O?i-1 tag+i word RP !HYPHENNNy&1?JJq= ףpNNS/$?i-1 word bearishNNS!rhܿRB/$?NN333333?WDT$CJJmINd;O?i word consentNNS(\NNDl@JJ?5^I i-2 word precursorJJʡE?NNʡEi word puzzledVBNSݿJJzGVBD!rh?i-1 tag+i word NN mappingVBG~jtؿNN~jt?i-1 tag+i word NN exporterVBPףp= NNL7A`?INʡEi-1 tag+i word CD shortJJE?NNEؿ i word enterVB|?5^?VBPV-@RBNbX9CCL7A`i word moldingVBGSݿNNS? i suffix MITNNPSMbX9ԿNNPMbX9?i word dominateNN$CVBZlVB~jtVBP(\@i+1 word rollersNNffffffֿJJffffff?i-1 tag+i word CC distributesVBZ?NNSi-2 word bronxVBP&1NNP&1?i-1 tag+i word CC secureJJd;O?NNd;O i-1 word wifeNN}?5^IVBD}?5^I? i-2 word artNNS?NNPtV?VBGSJJtVi+1 word victoryNNuV?JJuVi+1 word robesNN^I +?NNS^I +i word disagreeVB+?VBP/$?NNSA`"NNClJJ+i-1 word substantialNNP~jtVBGh|?5@NN&1JJ9v?VBZ9vڿNNS9v?i+2 word shakyNN rh?JJ rhi word inexplicablyUH= ףp=RB@VBNtVNNni+1 word sandwichesVBNSJJS?i-1 word candidateVBZʡE?POSʡEi-1 tag+i word NNS keptVBP"~VBD"~?i tag+i-2 tag RBR VBZNNMbX9?VBG rh?JJZd;O׿RBDlVBNv?i-1 word charitableNNsh|?ݿNNSsh|??i+2 word packagedVB333333VBPK7AؿNNS?i-1 tag+i word TO fearVBT㥛 ?JJ"~NN(\i-1 tag+i word IN refineryNN\(\?JJ\(\i-2 word cornerstoneJJp= ף?NNPp= ףпi-1 tag+i word NNP porterNNSX9vNNPX9v? i-1 word kkrVB ףp= NNA`"?VBDl?i-1 word rattlingNNS+?NN+i+1 word drivingJJ^I +?NNx&VBZ|?5^ڿi-1 tag+i word TO lunchVB#~jNN#~j@i word overtimeNNPn?RBPni tag+i-2 tag IN CDPRPMb?RB= ףp=ڿNNsh|??VBN?VBG)\(?VBZ)\(?NNPSp= ףNNPB`"JJR333333CD|?5^ʿNNSZd;@DTS㥛?PRP$S㥛VBDClPDTʡE?JJE?INrh|RPV-RBRtVοWDTy&1?i-1 tag+i word RB scoopsVBZV-?VBDV-i-2 word strainNNS㥛 ?NNsh|??JJ"~NNPq= ףp i-2 word siteJJX9v?VBh|?5RBRh|?5?NNK7INʡEi-1 tag+i word CD blankNNS{GzJJL7A`@NNZd;Oi-1 tag+i word DT exquisiteNN+JJ+?i word amnestyNN+?JJ)\(VBD?5^I i-1 tag+i word `` witchNN!rh?JJ!rhi-1 tag+i word JJ normsNNS;On?NN;Oni-2 word farceNN rhNNP rh?i-2 word foreseeNNSʡE?NNx&1?VBZ-VBPsh|?i-1 tag+i word RB studiedVBNsh|?VBDsh|??i+1 suffix terWDTʡE$L7A`NNP~jtVB9vڿRBSx&1NNPStV?VBD+VBP@PRPrh|VBN-?NN-?VBZ~jtFWh|?5RBOn@PRP$rh|?JJ1Zd?RPʡE?NNS/$?RBRCl?CD rhINGz?JJS9vVBG~jtDTh|?5JJRZd;i-1 tag+i word DT spyNNSjt޿NNjt?i-1 tag+i word RB startVB/$@VBPT㥛 NNRQi-2 word givingNNPS?VBDSi-1 tag+i word NNS undergroundNNoʡRBoʡ?i-1 word arenaNNZd;O?RBZd;Oտi-1 word jaguarNNP"~jRB= ףp=WDTx&1?JJV-?INSۿNNS5^I i-1 tag+i word IN endlessJJ?NNi-2 word demonstrateDT(\IN(\?JJClNNPCl?i-1 tag+i word NN mailingVBGL7A`пNNL7A`?i-1 tag+i word TO channelVBbX9?NNbX9i word specializedNNP@NNPS +VBNQJJ㥛 ?VBDRQ i+1 word jockVBN(\JJ(\?i-1 tag+i word DT whirringVBG/$?NN/$ i word meagerRBMbNN;OnRBRK7A`JJ r@i-2 word ratificationNNSClӿNNCl? i word 'sPRPm?JJ/$INV-NNPV-VBV-߿NNPS/$RBS''GzNNSRPx&1NNV-VBDB`"RBR㥛 VBZ +@POSE@CDI +ֿi-2 word mutualVBN`"޿VBD`"?VBZbX9NNSbX9?i-1 tag+i word PRP resetVBZQVB)\(?VBD333333ÿi+1 suffix sixIN9v?NNPvRP9vRB-?NNSVBDS?VBNzG?JJMbX9i+1 word designINB`"DTB`"?NN~jt?JJRsh|?VBN#~jJJ+? i word knewVBZzGVBʡEVBPT㥛 NN%CVBDM@i-1 tag+i word VBP seemedVBNsh|?VBDsh|??i word sweetheartNNSX9vNN$C?JJ7A`i+2 word stoppedPRP$V-?NNPSZd;?EX#~jVBPףp= PRPV-RB#~j?NNSףp= ?NNPZd; i suffix HERJJd;ONNPd;O?i-1 tag+i word DT hangNNPS rhNNP rh?i-1 tag+i word DT oklahomaNNPnNNPPn?i-1 tag+i word VB worthRBOnNNzGҿJJ!rhVBN/$IN#~j@ i+2 word nbcJJd;ONNPZd;NNPSZd;?NNSd;O?i+2 word balancesVBA`"?NNZd;߿IN-i+1 word causesJJ?NNi+2 word teutonicJJCl?NNCli+2 word cautiouslyNNSClRBy&1?NNPI +?i-1 suffix put RP9v@RBףp= ?NN/$ PDTףp= ?INtVDTQ?VBZ!rhNNSDl?VBNKJJRX9vWDTQJJGzVBG(\?i-1 tag+i word DT brewingVBGh|?5?NN(\JJB`" i-2 word easeRPx&1@JJI +޿NN$CRBR(\VBNoʡ?RB7A`@INx&1i+1 word narcoticsVB#~j?JJ#~j i-1 word hudNN333333?IN333333i+1 suffix ergJJʡE?NNPSB`"RBZd;ONNX9vοNNP|?5^?i-1 tag+i word VBD plansVBZ7A`NNS7A`?i+1 word payersNNP rhJJ rh?i+1 word spaceRBRQVBN{GzJJV-?JJRQ?NNP#~jNN(\ҿVBD?i word loathsomeJJ{Gz?NN{GzĿ i word loose VBP9vVBZ{GzCCd;OJJq= ף@NNS rhNNP?5^I ڿRP#~jRBCl@NNEVBDCli-1 tag+i word , abettingVBG(\?NN(\i-2 word accompaniedNNS+?RB+i+1 word jacoboskiNNffffffNNPffffff?i-1 tag+i word , stingingVBGGzJJʡE@NNSi-1 tag+i word JJ showVBPMbNNS rhNN|?5^?i-1 tag+i word RB meanVBMb@RBV-JJi+1 word humptyRBh|?5INh|?5?i+2 word chryslerRBRw/?RBw/i-1 tag+i word NNP electricalJJZd;O?NNZd;OͿi+1 word economicsJJ?NNi-1 tag+i word NNS lessJJRp= ףCC%C?RBRQ?JJ^I +i-1 tag+i word NNS beginningVBGx&1?NNx&1i tag+i-2 tag NNPS .NNPSrh|JJrh|?i word answersVBZq= ףp?NNSq= ףpտi-1 tag+i word POS airNN+?JJ+i-1 tag+i word JJ polishJJ+?NN+NNPGzi word exclaimsVBZK?NNSK i word naacpJJGzNNPGz?i tag+i-2 tag CC JJNNP"~jRBR\(\?CD'1Z?INDlVBDd;O?WDT-ƿRB}?5^IPDT~jtJJSMbX?VBGS㥛VBNMbX?VBZ1Zd?DT+?CCPn?RBSMbXNNSB`"?VBSNNPS'1ZJJRV-VBP5^I JJp= #@NNMb?i-1 word studentsVBQNNnVBNMbX9VBPDl@JJMbX9?NNPy&1i tag+i-2 tag JJ -START-PRP$Zd;RBʡE?FWS㥛JJZd;OVBl?PRP-NNPZd;O@VBGˡE?JJSA`"?RBSA`"VBNDlCDCl?NNSB`"NNMbJJRZd;O?VBP rȿINZd;?NNPSx&1VBD= ףp=@WPx&VBZ?i-1 tag+i word -START- rodeoNN`"?NNPnNNS333333i+1 word distributorNNSl?NNv/տJJOnNNPx? i word trunkNNS?5^I NN?5^I ?i-1 tag+i word IN upstartNNx&?JJx& i word habitsNNS%C?NN%Ci+1 word stackupJJnNNPn?i-1 tag+i word DT bethforgeNN{GzNNP{Gz?i-2 word promoteVB1ZdVBP1Zd? i word flowJJClNNw/]@VBDV-VBP^I +?RBx&IN/$NNSq= ףpVBRQ?i word patternsNNSX9v?NNX9vi-2 word bolsterVBNMbJJOn?NN?5^I i-1 tag+i word DT valuableJJ'1Z?NN'1ZĿi+1 word rigueurFW^I +?NNˡEܿNNP+ i word beretNNn?JJnѿi-1 suffix aidPRP$p= ף@RPJ +CCsh|?IN/$?PRPZd;ORBffffff?PDT-?RBS rhVBNn?NNPQRBR~jt?NNPS)\(?JJS rh?VBG rhDT&1NNp= ף@CDoʡſEXS@UHzG?VBDSVBPtV?WDTtVJJ/$?VBZ-?NNSʡEVB)\(JJR%Ci word indictedVBNE?JJZd;VBD)\(?i-1 tag+i word VBD createNN +VB +?i+1 word sparcstationVBNV-?VBDV-i word unexpectedVBNS㥛JJS㥛?i-1 tag+i word IN obscureJJ\(\?NNvRB~jtؿi-1 tag+i word RB heldJJ+?VBPVBNrh|?NNMbXVBDq= ףp? i word handleVB@VBPx&?PRPvJJ rRBRx&i-2 word seekingVBK7?JJK7ٿ i suffix vinPRP5^I NNP5^I ?i-1 tag+i word `` lameJJV-?NNV-i-1 tag+i word NN declineVBN~jtNNMbX9?CDZd;i-1 tag+i word NN hallNN`"?VB`"i+2 word roadblocksVBZrh|NNnVBDp= ף?i-1 word plasticNNK7AؿVBZV-NNSjt?i+1 word capableVBuVNNZd;?JJq= ףpi-1 word featherlessNNS?VBDSi word blinkingRBS@VBGZd;OJJHzGNNni-1 tag+i word JJR roundedJJsh|??VBDsh|?i-1 tag+i word NN playoffsNNX9vNNSX9v?i-1 tag+i word , disgustedVBD~jtVBNQֿJJ+?i-1 tag+i word CC t.VB)\(NNP)\(?i+2 word norwoodVBG)\(NN)\(? i-1 word wineVBZ/$NNS/$?i-1 tag+i word NN nichesVBZClNNSCl?i-1 tag+i word CC palestinianJJl?NNPl¿i-1 tag+i word NNS laggedVBNK7AVBDK7A?i-1 tag+i word DT bullishJJbX9?NNbX9i-1 tag+i word NN designerJJR/$NN/$?i word vaticanJJ#~jNNP#~j?i+2 word opposeRBHzG?JJHzGi-2 word billionsJJףp= ?NNףp= i-1 tag+i word PRP$ menstrualJJffffff?NNffffffi-1 word developersVBP ףp= ?RB ףp= NNP ףp= i word singinJJffffffNNZd;OտNNPX9vVBGA`"@i-1 tag+i word DT norfolkNNENNPE?i+2 word escapedUHS㥛NNS㥛?i+2 word transNNPSRQ?NNPRQ i-2 word bushVBD&1?FWd;O?VBN~jtVBGCl?NNPSZd;RBy&1IN-?VBZM?VBL7A`?NNSFxNN333333VBP+DTZd;NNPClJJ-?i-2 word wonderNNS#~j?PRP$%C?POSX9vPRP%CܿJJ#~jVBZX9v? i word recoupVBD|?5^VB r?JJQտi-1 tag+i word JJ rigidityNNS~jtNN~jt?i word patentsNNS ףp= ?NN ףp= i-1 word bankruptcyNNrh|NNPrh|?i+2 word aimedVBPI +?JJE?INI +NNS;OnڿNNP-NNni-1 suffix lie NN(\?FWS㥛?INoʡVBZ㥛 NNPX9v?RB/$?JJtV?NNSV-RP&1ʿi-1 tag+i word NNS happilyVBP|?5^RB|?5^? i+2 word viceVBD"~?RBSʡE?JJSʡEVBNoʡ?CD\(\?NNS"~NNPZd;O?NNjtܿi word elliottNNPQ?NNPS;OnҿJJOnۿi-1 word multipleVBGsh|?NNsh|??i-2 word perceptionEXx&1RBx&1@i+2 word authenticity''GzPOSGz? i-1 word case RB1ZdۿIN~jt?VBZv?DTd;O?VBG/$?VBD~jt?VBNMb?EX1Zd?NNSZd;OVB= ףp=?NNA`"WDTMbi-1 tag+i word DT foundingVBGh|?5?JJMb?NNMbNNPh|?5i-1 tag+i word DT dragNNZd;O?VBN^I +JJS㥻i+1 word confidentlyVB&1?NN&1ҿi-1 tag+i word IN literacyNNJ +@JJy&1NNS5^I i+2 word ronaldNNS+NNMbX?JJMbXCD+?i-1 tag+i word IN charlotteNN&1NNP&1?i-1 tag+i word CD grownVBNx&1JJsh|?@NNffffffi-1 word proceedingsRBK7A?JJK7A i word pleadVB`"?NNV-JJ?5^I VBD~jtӿi+2 word cherryJJ\(\?NN\(\i-1 tag+i word DT filedVBNFx?NNFx i word traitNNSV-NNGz?JJ1Zd i suffix pseVBZK7VBK7ANNSB`"NNCl@JJOni-1 tag+i word , bayNNPSbX9NNPbX9?i word nondescriptJJx&1?NNx&1i-2 word booksNN/$?RB/$?IN/$VBZ/$?NNS/$JJ/$i-1 suffix oloNNSRQNN+?NNP ףp= RP+NNPSd;O@i-2 word citiesJJ rh?NN rhi-2 word tripsRBR+?JJR+ÿi-1 tag+i word CC animationNNCl?JJCli+1 word ballooningRB~jtIN~jt?i+1 word whetherJJ)\(?INMbX?RP|?5^NNPMbXRBR333333?VBN}?5^INN9vPRP1Zd?VBx&1RBQ?VBPV-?DTףp= VBZ-?VBG9v?VBDd;O@JJR333333i+1 word musicJJZd;?VBZ+VBGMb?NN rh?VBDNbX9VBNB`"?VBPMb i+2 word acreNNV-?JJV-i-1 tag+i word RB noneJJ/$ƿCC%CNNV-?RBmi-1 tag+i word VBG remicsNNPSNNSʡE?NNP&1i-2 word interviewNNP;On?VBDHzG?VBG;OnVBNHzGi+2 word marginVBNJJ? i word rubbleNNQ?JJQi+1 word geneticsNNSV-NNPV-? i+1 word bodyNNA`"JJS㥻?VBG)\(i-1 suffix kelVBZV-?NNSV-VBNlVBDl?i word leftoversNNPMbX9?NNPS(\NNS㥛 i-1 tag+i word DT disclosedVBNQӿVBDQ?i+1 word roadwayVBNoʡݿJJDl?VBD1Zd˿ i word packedVBNsh|?տVBDsh|??i-1 word packetsVBN/$?VBD/$i-1 tag+i word VBN mobileJJS?NNSÿ i word placeNNP(\VBS?RB9vNNQ @VBPCl?JJx&1ؿNNSS i word stirsVBZtV?NNPSZd;ONNPQi-1 word preferredNNPS#~jRP +IN +?NNP#~j?i-1 tag+i word TO kelloggVB$CӿNNP$C?i-1 tag+i word CD adjoiningVBG= ףp=JJ= ףp=?i+1 word damage RB1Zd?JJSoʡ?RBRlINQJJ?DTQ?VB9v?NNX9vֿRBSx&1JJRʡE?i-1 tag+i word VBG shapeNNoʡ?RBoʡi+2 word managersVBGS?NN(\VBPoʡ?JJ`"?INl?NNPK7 i word existsVBZ rh?NNS rh i word axaNN|?5^RB!rhNNPMbX?i-1 word bankruptciesWDTuV?INuVi-1 suffix oinJJ ףp= ?NN ףp= i-1 word engagingNNS+?NN+i+2 word plateVB(\VBZ(\?i+2 word organizerJJ= ףp=@NN= ףp=i-1 tag+i word JJ bikesNNPSvNNSv?i+1 word stoleNNS㥛 ?NNPq= ףpͿVBZSi+1 word withdrawalNNx&1?JJx&1i word defenseNNP%C?NNPS +NNMbX?JJRT㥛 JJQi+2 word yugoslaviaNNSbX9NNףp= RB%C̿NNPA`"@i word coastalNNS㥛JJS㥛?i+2 word slowerVBGףp= ?JJCl?NNB`"i-1 tag+i word VBG maleJJI +?NNI + i+2 word parkJJPnNNPPn?i-2 word victorianWDTx&1INx&1?i-1 tag+i word NN cdNN@NNPi-1 tag+i word NN rallyNN-@RB-i-1 tag+i word RB accustomedVBN +JJ +?i word recipesNNSʡE?NNPʡEi-2 word workerVBPQ?RPCl߿RB(\JJMb?NNMb i word else NN~jDTMbXNNS^I +NNP+RBX9 @VBNRQVBP$CJJffffff?VBZ%C i suffix BIPNNPv?NNv߿i tag+i-2 tag NNS TO VBNGz?''x&1̿RBvNN7A`VBG7A`?VBDX9vPOSx&1?WDT?IN7A`@RPbX9VBMbi+2 word lebaronVBZI +?RBI +i-1 tag+i word NNP olympicsNNPSsh|?NNSZd;NNP= ףp=? i+2 word food VBsh|?VBGsh|??NN#~j?INL7A`?RBMb?VBDףp= ?POS(\?VBP+JJffffffVBZ(\NNS%C i word lostVB/$ٿJJSPn RB1ZdVBN&@FWB`"NNʡRBS+VBPS㥛VBZERP~jtVBD">#@PDTZd;OJJHzG?RBR5^I JJR^I +߿i+1 word ambivalentJJsh|?RB(\NNv?i-1 tag+i word VBP speedVBDVBNK7NN/$?i-1 suffix ferJJRm?DTףp= ?VBZףp= @JJZd;?NN +?INrh|?NNP㥛 NNPSZd;O?VBG(\RPRQRBRmRBX9v?VBNq= ףpVBD5^I NNSףp= i+2 word rolledJJ ףp= VBG ףp= ?i-1 tag+i word TO hindemithVB+NNP+? i word endedJJZd;OIN7A`NNSV-RBףp= NNZd;VBDX9v@VBNJ +@i-1 tag+i word CD mainframesNNS9v?NNP9vڿ i+1 word geWDTvVBNKVBDK?INv?i-1 tag+i word NNP ralliedVBD?5^I ?NNP?5^I i+2 word visitingNNPn?JJPni-1 tag+i word PRP rejectedVBN!rhVBD!rh?i-1 word coatesNNPSZd;O?NNPZd;Oǿi-2 word enthusiastsVBZ ףp= NNS ףp= ?i word joiningVBG?NNi+1 suffix dotNNSMb?NNMb i-1 word playNN|?5^JJ rhINvPRP$+?RPV-?RBʡE? i pref1 6NNP-VB/$NNmVBN333333CDK@JJ`"@NNS= ףp=i-1 tag+i word VBD stolenJJ|?5^VBNm?RB9vҿi-1 tag+i word JJ woeVBPClNNCl?i word inheritVBP= ףp=?RBR= ףp=i-1 tag+i word NNP votedVBD`"?VBN`"i-1 tag+i word PRP$ excessJJ+?NN+ i word orderNN`"?NNP`"i-1 tag+i word IN yetPRP(\RBL7A`?NNSZd;i-1 tag+i word POS issuedVBN(\JJ(\?i-1 tag+i word MD rateVBsh|?NNsh|??i+2 word countryRP`"RB-?RBS+?VBZQNNPOn?NNPSB`"NNjtJJ+?JJS= ףp=?VBNjt?VBPtV?IN/$@VBV-VBDX9vi+2 word flippedNNSh|?5VBNh|?5? i suffix ONDNNrh|?JJNbX9NNP%CԿi+2 word chapmanNN-?NNP-޿i-1 word claimsNNZd;O?VBDh|?5VBN/$?VBP333333?WDT(\JJnINq= ףp?DTGzǿi-1 tag+i word POS offensiveJJoʡ?NNoʡi-1 tag+i word IN bratislavaNNP= ףp=?NN= ףp=ڿi-1 word professionalNNL7A`@JJ rNNP/$@NNPS/$NNS㥛 i+2 word hoeJJT㥛 NN|?5^ʿNNP\(\?i-1 tag+i word IN visualsNNS+?RB+i-1 suffix tilNNPZd;@JJM?NNX9vRB rhݿi-1 tag+i word VB leftVBNHzG?JJ$CVBDd;O޿i-1 tag+i word VBD expertiseNNzG?RBzGʿi+1 word applicationsVBCl?RPZd;O?NN|?5^@CDx&1JJV-NNPv/?i+1 word national VBZʡENNP(\?VB333333NNPSV-@VBG333333JJbX9?NNX9vVBPʡE?RBS㥛i-1 tag+i word , assumeNNI +VBvVBP~jt@JJy&1 i suffix ticJJM"/@NNS#~jPRP$KRBRClPRPMbXRB;On¿INMbXVBD+VBV-VBPZd;ONNP/$?VBGףp= NNQVBN9vNNPS~jti-1 tag+i word VBZ broadcastingJJGzNNGz@VBGx&1VBN?5^I i+1 word viacomDTJ +CCJ +?i+2 word brooklynPDTMbCCGzDTMbX9@ i+2 word n'tVBZA`"POSZd;NNSzG@VBPoʡ WDTZd;PRP-@RB= ףp=?NNPMbX9@PDToʡRBRK?CD-VBGI +VBD`"IN'1ZNNPS{Gz?EX㥛 ҿJJSS?JJPnVBMbX9?NN?5^I @RBSSÿVBNA`"DT@i-2 word house INDl?NNS/$NNPS;O@JJHzGѿNN#~jWDT-?RB\(\NNP'1ZVBG㥛 ?VBDK7CCCl?VBN/$i-1 tag+i word NN furnaceNNףp= ?JJףp= ÿi word ratnersNNPS{GzԿNNSQNNPHzG@i-1 tag+i word RBR helpedJJM¿VBNM? i word blueNNPoʡ?NNPSoʡNN'1ZVBN5^I JJjt @NNSRQi-1 word resumedVBGZd;ONNZd;O?i-1 tag+i word NN otherwiseRBDl?NNDli-1 tag+i word VBN outNNSrh|RBrh|JJK7@IN$CRP~jt@i-1 tag+i word , indicatingVBG7A`?NN7A`ҿi-1 tag+i word IN factoryNNJ +?JJJ +i+1 word fraudNNSzGNNrh|?JJ~jti-1 tag+i word VBN deniedVBNS㥛?JJS㥛пi-2 word glassNNv/ͿJJClVBD333333?i+1 word crashNN?JJxNNPm?i-1 tag+i word FW !HYPHENJJMb?NNMbi-1 tag+i word VBZ legendaryJJK7?VBNClNNuVݿi-2 word malaysiaJJX9v@VBD/$VBN+i-1 word simply NNSZd;OVB+ @VBGV- @NN&1VBDMbX?VBN|?5^RBPnJJʡE?FWףp= VBP5^I INX9v?DTX9vֿi word championedVBNmJJ)\(VBD5^I ?i-1 tag+i word NN supportingVBGMbX9?NNMbX9i-1 word wherebyNN/$NNP/$? i word amexNN;OnNNP;On?i tag+i-2 tag EX RBVBZZd;?POSZd;i-1 word cancelsVBN= ףp=INmտVBD~jt?i tag+i-2 tag ( VBDJJS?NNSi+1 word ospreyJJ{GzNNP{Gz?i word climbingVBG+?NN+i-1 word deeperJJ^I +NNS^I +?NNS?RBSi-1 tag+i word NN hangsVBZ&1?VBD&1i-1 tag+i word VBN immuneNNnJJn?i-1 tag+i word IN leadNNOn?RB`"JJy&1̿i-1 word escrowVBZˡEĿNNSˡE? i word questJJSKNNPK?i-1 tag+i word , plantagoNNPy&1NNy&1@i-2 word witnessingNNSh|?5NNh|?5?i+1 word talks RPGz?NNʡE?VBD}?5^I?VBN(\IN|?5^RBˡEJJn?VBGˡE?NNSx&1NNP rhi+1 suffix butINmVBZB`"ٿDTQ?VBG(\ڿJJ/$PDTV-JJS|?5^PRPQNNS/$@VBN{Gz?NNP&1PRP$Q?NNq= ףp?JJRMbVBD`"RBRGz?RBx&1? i-2 word plan VBNbX9@VBG"~RB#~j?VBN+JJRy&1?NNPQNNsh|?VBDV-?RBRrh|JJ@VBZMbX9?NNS}?5^Ii-1 word puritanNNSZd;O?PRPZd;Oi-1 tag+i word IN fosterJJtV@NNtVi word peritonealJJ"~?NN"~i-1 tag+i word PRP$ executionJJ}?5^I̿NN}?5^I?i+2 word think VB{Gz?NNPS= ףp=?NNlRBR#~j?VBPMbX9@IN{Gz?RB#~j?VBDm@VBNmJJQ?JJR#~jNNPp= ף i-1 tag+i word PRP$ beleagueredVBNMbJJMb?i word groupementVBZd;ONNPZd;O? i word talkedVBNd;OJJEVBDffffff@DT/$ i word impedeVBI +?JJI +޿i-1 tag+i word CC refusingVBGV-?NNV- i suffix zilNN"~NNP~jt?JJR-i word yippiesNNPSDl?NNPDli-1 tag+i word IN opposedVBNˡE?JJˡEi word bicyclingVBGʡENNʡE?i-1 tag+i word NNS abbieNNP%C?VBP%Ci-2 word videoRBM@NN= ףp=?JJ= ףp=INMi-1 tag+i word VBG easternJJV-NNPV-?i-1 tag+i word -START- defaultsNNSV-?NNPV-i-1 tag+i word NNP sentimentVBDuVNNuV?i-1 tag+i word JJ alloyNNSjt޿NNjt?i+1 word joinedNN^I +?NNP^I +i-1 tag+i word , threatenedVBNtVVBDtV?i-1 word quarterIN{GzJJGz?NN= ףp=VBDI +?VBNK7A`ſVBPK7WDT rh?RBL7A`尿i-1 tag+i word NN consentJJZd;OݿNNZd;O?i word highpricedVBNL7A`JJL7A`?i-1 tag+i word IN dialysisNNQ?JJQ i word findVBDClVBN(\VBP@RBuVVBZA`"VBx&@JJ333333NNI +i-1 tag+i word VBZ spentJJuVVBNV-?NN%CRBR/$ۿi-2 word invadeNNzG@JJ&1RBB`"?i-2 word reserves VB(\?VBDI +?RB;On?RBRGz?VBPNbX9IN;OnJJRGzJJףp= ?NNX9vVBN rh?i-1 tag+i word NN fraserNNSQNNPQ?i-2 word -START2-"LSףp= ӿJJSx&1?PRP$V-?WDTZd;OǿJJHzGVBZM?CC㥛 ?VBN(\ݿNN1Zd?VBlCDm?NNPSx&1JJR~jtVBPK7AWPCl?NNP5^I WRBy&1?RBRp= ףؿFWS㥛''uV?POSsh|??RBS|?5^?MD= ףp=?UH/$ƿVBGNbX9RB-VBDK7A?PDTX9v?EXzG?INrh|DTL7A`?RPp= ף?PRPK7?NNS r?i-1 tag+i word , observesVBZS?NNSSi word fabergeNNjtNNPjt?i+1 word somatostatinVBNx&VBDx&?i tag+i-2 tag WP `` RB9v?NNx?RBR9vVBNd;OVBZFx?NNSbX9VB?5^I VBD/$?VBPNbX9?JJ333333 i+1 word tapeINVBDK7ANNRQ?JJ&1?NNP(\µi-1 tag+i word NN chasersNNSJ +?NNJ +ɿi-1 tag+i word RB stampVBM?RBMi word sapporoNNDlNNPDl?i-2 word pitchedNNS%C?NN%Ci-2 word tryingINCl?JJ= ףp=VB~jt@NN!rhRBCli word reclaimVBuVVBPh|?5@NNSClVBNX9v߿i-1 tag+i word JJ spankingJJ#~j?NN#~ji-1 tag+i word VBZ alexanderVBNZd;NNPZd;? i word stockVBV-NNPSB`"NNv?JJQNNPPn?i-1 tag+i word DT packwoodNNV-NNPV-?i-1 word landslidesVBN333333VBD333333?i+2 word organsVBP rؿJJGz?NNV-i-1 tag+i word -START- missJJMbX9NNPMb?NNS{Gzi-2 word compromisedRBPn?JJPni-1 tag+i word JJ stuckVBN+?NN+i-1 tag+i word NN institutesVBZ= ףp=NN= ףp=@i-1 tag+i word CD eastRBp= ףNNPp= ף? i-1 word pullRPCl?INClٿi-2 word timetableVBRQNNRQ?i word broilerJJRK7NNCl@NNP/$i-1 tag+i word VBZ concedeVBZT㥛 VBT㥛 ? i+2 word goodVBG-JJS㥛?RBS%C̿VBP#~jNNP'1ZĿVBD'1ZRBK7?VBX9v?NNA`"?JJS%C?VBN'1Z?RPw/?DT%CVBZmINd;O @NNSm?i-1 tag+i word `` ludicrousJJGz?RBRGzi word sanctuaryNNNbX9?JJNbX9 i+1 suffix $RBMbX9@VBDh|?5?RPA`"@JJR+VBGQ?POS&1?JJʡE?NNP'1ZRBRX9vFWZd;OIN(\?NN-FCC^I +NNSJ +JJSK?VBNMbVBPPn?CDV-VBZbX9?VBy&1?i-1 tag+i word VBN somberJJ㥛 ?NN㥛 i-1 suffix urgNNPSv/?NNPv/i word patronageNNCl?JJCli-1 tag+i word VBD poundsVBZ㥛 NNS㥛 ?i-1 word readersINCl?JJh|?5VBDd;O@VBNd;ORBp= ףi-1 tag+i word VBD cutVBN"~j?JJ"~ji+2 word schwarzRBM¿NNM? i+2 word seesNNSoʡNNoʡ?i+2 word holdingsPDT?VBNmRBsh|?DT&1NNPK@JJQNNZd;OVBDm?i-1 tag+i word NN aerobicNNd;OJJd;O? i word crabbyJJ㥛 ?NN㥛 i-1 word basicallyVBNS㥛ؿVBDMb?VBZB`"VBMbNNSQ?i-1 tag+i word NNP johansonNNPV-?NNSV-i word consortiaNNS㥛 ڿNN㥛 ?i-1 tag+i word VBG paNNx&NNPx&?i-1 tag+i word WP declinesVBZsh|??VBDsh|? i+1 suffix g.NNbX9NNPbX9?i-2 word kodakVBX9vVBGl?JJX9v?NNl¿ i-2 word else VBV-?RB(\NN|?5^?VBDSVBNV-VBPS?PRP9v?JJ-NNPSL7A`PRP$9vNNSףp= ?NNPʡE? i suffix vixRBK7AؿNNS9vNNJ +?i-1 word foodsRBX9v?INX9vNNPSNNS?VBDSӿPOSS?i+1 word exhilaratingRBS?JJS i-1 word let CDDlJJl?VBZV-NNPGz @VBy&1@NN+VBDPOSDlVBPS㥛PRPM @RBʡEi+2 word attendVBDMbXVBNMbX?i tag+i-2 tag , JJVBNzG?VBPQWDT+NNtVNNSsh|?ݿRBRw/?''y&1?JJw/@RBX9v?NNPw/@VBZʡEFW\(\VBV-@PDT(\?INFxٿJJRDlPRP$x&1?VBG~jt VBD{GzDTrh|PRPS㥛CDq= ףpNNPSK7A? i word juniorNNP/$JJ+?NNFxi word longingVBG|?5^NN㥛 @JJK i+1 word formRBX9vNNB`"JJSjt?VBNRQ?JJ rh@VBuVi-2 word manufacturedRBR;On?JJR;Oni+1 word liabilityNNPؿVBDMVBNM?NNS㥛?JJ(\i-1 tag+i word NN battlegroupsNNSy&1?NNy&1i-1 tag+i word , counteredVBNV-VBDV-?i word australianNNPSK7A`տJJ"~?NNPx&i-1 tag+i word CC sovietJJl?NNPli tag+i-2 tag PRP$ WPNNS~jtx?NN~jtxi word righthanderNNCl?RBCli tag+i-2 tag WDT CCNN+ӿVBD+?VBN+CD+?VBZ?NNP i suffix cowJJ7A`¿NNPʡE?NNK7i+1 word weaknessesVBGMb?JJ rNN)\( i suffix funNNSGzNNL7A`@JJʡEVBNx&1i-1 word ivoryNNSy&1NNy&1?i-1 tag+i word IN brewingVBG-޿NN-? i suffix CLENNPOnNN/$?RB{GzIN-i-1 tag+i word JJ greekJJ|?5^?NNP|?5^i-1 tag+i word VBG herselfPRP9v?NN9vi word motorolaNNPSV-NNPV-?i-1 tag+i word '' unwarrantedVBNnJJL7A`?VBD rȿi-1 tag+i word PRP$ eyesNNSʡE?NN#~jJJ㥛 i+1 suffix retJJjtVBZMbX?NNSMbXVB+NNn@VBN/$޿i-1 word monitoringVBZZd;O?NNST㥛 ؿNN(\RBS㥛INS㥛?i+1 word ambassadorJJ^I +?NNP^I +i-1 tag+i word VBD avoidingVBGuV?JJuVտi-1 tag+i word IN distinctNNp= ףJJp= ף?i-1 tag+i word JJ footeNNʡENNPʡE?i-1 word suspendedVBNNrh|?JJ`"i-1 tag+i word VBN vagueVBGVBN ףp= JJQ@i-1 word pursuingRP5^I NNuV?JJRV-@RBRd;OJJ"~jNNS㥛 ?NNPRQi-2 word ensureNNMbпJJMb?i-1 tag+i word TO groundVBX9vNNX9v? i word reapVB+?VBPMbNNZd; i word ratiosNNSzG?NNzGi-1 tag+i word JJ tradeNNPSRQNNSClNNZd;? i-2 word helpNNPS}?5^I?VBD rhVBPT㥛 NNSoʡVBZMb`NNjtRBKINZd;RPOn?VBGHzG?JJSh|?5VB r@JJV-?JJR+DTNNPli-1 tag+i word JJ feministNN'1Z?JJ'1Zi-1 suffix layJJ7A`ҿVBD̿CCT㥛 PRPOn?INʡEVBZK7A?PRP$+?RB|?5^?RPK7A@NNPtVVBG'1Z?NN/$NNS7A`VBN{Gz?i tag+i-2 tag MD ``VBy&1RBy&1?i-1 tag+i word NNS leadsVBZ"~?VBP"~i+1 word chemicalVBGZd;O?NNrh|?VBDw/VBPjtֿJJx&?VBZOnNNP +οNNPSZd;i+2 word culpritVBʡEVBPʡE? i+2 word costNNPp= ף?RP7A`?JJ&1VBD#~j?VBN +?VBPsh|??VBGZd;NNx&NNS\(\ϿCCVB1Zd@RBOnINMbXDT?VBZ(\ݿi word zombiesNNS{Gz?RB{Gzi-1 suffix janNNPV-?NNSV-i-1 tag+i word JJ repercussionsNNSI +?NNI + i suffix kin VBN&1ڿRB +JJRQ?NNSVBPd;OVBZClNNS9vNNP{Gz@NNPSKFW^I @ i suffix new JJv/NNSbX9VB9v?RBZd;O?NN(\VBDS@VBPT㥛 PRP}?5^IVBZzGi+1 word illegallyVBP/$JJv/ݿINJ +?i+1 word shirkingDT/$?RB/$i+1 suffix utsJJMb''/$?RBNNSS㥛NNPB`"?VBGVBN+?VBZy&1ԿPOS/$JJROn?WDTףp= ?NNp= ף@INףp= DT?i-1 tag+i word -START- darkNNPoʡݿJJNbX9?NNd;Oi-2 word prospectVBNM?JJoʡſVBZd;OPDTL7A`NNd;O?i word weakeningNNHzG?JJ~jtVBGoʡſi+2 word happenedNNPףp= VB㥛 @NNClVBDB`"?VBPmJJ ףp= i-1 tag+i word NNS committeesNNSʡE?VBZ}?5^I?VBP1Zdi-1 suffix bit NNHzGVBD~jtJJffffff@NNPw/DTA`"ӿRBRuV?JJRbX9ȶ?VBN#~jWDT+?IN+i-1 tag+i word DT reluctantNNMbpJJMbp?i-2 word dressVBNS㥻?VBDS㥻i tag+i-2 tag WRB , VBN(\?VBZClNNPxVB#~jNNPSw/VBG)\(?JJ= ףp=ʿNNGz?VBD(\տPDTd;O?VBPx&?RBp= ף?NNS rh? i+1 word toneNNؿIN+JJSnVBGZd;?JJ/$?i-1 tag+i word : denverNN#~jNNP#~j?i+2 word postponeNN/$޿NNP/$?i-1 tag+i word VBD americanJJQ?NNPQi word broadestJJS-@RBSA`"NN1ZdJJ~jti word escalanteNNS'1ZNNP'1Z?i-1 tag+i word NN multilevelJJn?NNni+1 word removedRBn?VBDnѿi-1 tag+i word , profitNN1Zd?IN1Zdi-1 tag+i word -START- earlyRBq= ףp?NNClJJ`"i+1 word jittersJJx&1?JJRx&1i-1 suffix ibm NNMbX9?POSoʡ?VBN"~NNP"~j?VBDJ +VBPlRB;OnVBZ%C?NNS333333?i-1 tag+i word RB saferJJR r?JJ ri-1 tag+i word DT gapNNSClNNCl?i word frustratingVBGNbX9JJx&1@NN㥛 i-1 tag+i word DT rapistNNB`"?JJB`"i-2 word utilityVBDʡE?NNPSQNNSZd;OVBNX9vNNPQ? i word assetsNNPS/$@NNSZd;?NNP/$DTZd;i word purchaserNN?FWi-1 tag+i word WP killVBP(\?VBD(\i-1 tag+i word , executiveVBClѿJJjt?NNh|?5?NNPCli-1 tag+i word IN preferredVBNl?JJMbX9ԿNNP-i-1 tag+i word DT manzoniNNQNNPQ?i-1 tag+i word , irasNNPA`"VBPZd;ONNPS}?5^IܿNNS"~j?i-1 tag+i word NNS solutionsVBNQNNSQ?i-1 tag+i word NNP tradingVBGV-NNK@NNPEi-1 tag+i word IN economicsNN ףp= @JJ/$VBZSӿNNSJ +i-1 tag+i word -START- texansNNPS"~j?NNSRQNNP{Gzi word attachesVBZPn?VBDPni-1 tag+i word NNPS planVBPGz?NNGz߿i word mentionsVBZ"~j?VBx&NNPSGzi-1 word brickNNSV-NNV-?i word czeslawNNjtNNPjt?i-2 word include IN~jtӿNNP!rh?NNPSA`"@JJ1Zd@VBNx&1RB +?NNK7RBSx&1JJSx&1?JJRX9vi+1 word idahoJJ ףp= ?NN ףp= i word scriptwriterNN`"?JJ`"i-1 tag+i word IN forestryNNSQNN?JJGzi word doctrineNNL7A`?JJQNNP"~?i-1 tag+i word IN officialJJQ@NNQi+1 word semiannualVBZ!rh?NNS!rh i word donorNNSV-NNV-?i-1 word expectingNNS}?5^I?JJ}?5^I̿i-1 tag+i word JJS salvoNN5^I ?NNS5^I i-1 tag+i word NNPS electVBPw/?VBDw/i word reboundedVBNZd;VBDZd;@i-1 tag+i word WDT insurersVBP(\NNS(\?i-2 word fortuneNNPNNPSPnNNSK7A@RBoʡſINoʡ? i suffix fed RBZd;VBDsh|@CCUH9vNNSv/VB+VBG-NNT㥛 VBNy&1,@JJMbVBZFxi-1 tag+i word IN wistfulJJK7?NNK7i-1 suffix axiNN?JJ i+1 word fees NNGz @VBD!rhJJR7A`VBG1ZdCC$C @VBNZd;RBR&1JJ333333?NNSQi+1 suffix cbs DTv/NNPQ@VB㥛 ?JJB`"?NNIN$C?CCMbWDTQRBMb?i tag+i-2 tag , RBPRPQ?RBK7AWDTWPI +?PDTd;O?JJS$C?NNSx&1?EXS㥛?CCsh|?RP r?NN(\ؿVBDGz?JJVBZp= ףNNPʡE?RBRʡEVBG-ֿINZd;O?CD$C˿NNPS(\ҿJJR{Gz?UHsh|?VBNHzGVBPZd;DT{Gz@VB +RBS$Ci word distastefulVBZ/$JJ/$?i-1 word minesVBN"~jԿVBD'1Z?VBPI +i+1 word decidingINFxRPFxٿRBh|?5? i word crimesVBD ףp= JJrh|NNSy&1 @VBN(\NN rhi+2 word repertoireVB+IN+?i+1 word mergerJJ$C?VBNsh|??NN~jtVBDMi word englishNNS㥛NNPS @DTFxNNSZd;JJrh|׿i-1 tag+i word DT seabrookNNP&1?NN&1 i-2 word akzoRBR(\NNQVBN%C?JJMbJJR(\?i-2 word ambitionVBG{Gz?NN{Gz i suffix hutJJx&1VBZQVBnNNq= ףpVBDq= ףp?VBN}?5^I@i-1 tag+i word NN dependsVBZd;O?NNSd;Oi-1 tag+i word PRP agreedVBZClVBPMbXVBDffffff?i-1 tag+i word NN learnedVBNHzG?VBDHzGi+2 word municipalRPOn?RBbX9INQ޿i word patrioticJJh|?5?RBh|?5i word proddingVBGHzG?NNHzGi-1 tag+i word DT sickJJB`"?NNB`"i-1 tag+i word NN researcherCCKNNSKNNK?i+2 word plightNNPK7AJJK7A?i word disappointingVBGQ8JJM#@NNSc i word omronJJ;OnNNP;On?i+2 word shiningDTV-?NNPV- i suffix perINX9v@JJzGڿNN/$RBRE@VBPMbJJRMb!@CC333333WDT5^I VBI +VBZMbXNNP/$?VBDV-FW +?VBN= ףp= RBMNNS(\Bi-1 tag+i word RB addressedVBNv/JJS㥛VBDffffff@i-2 word subcontractVBPX9vNNX9v? i word offsetVBMb@RP?5^I NN~jtÿVBNCl?VBPZd;O?JJv/INQi-1 tag+i word DT countermoveNNS/$ֿNN/$?i-1 tag+i word POS lubyankaJJMbXNNPMbX?i-1 tag+i word RB associatedVBN ףp= ?VBD ףp= i-1 word wyomingVB-NN-?i-1 tag+i word NN dependentJJsh|??NNsh|?i-1 tag+i word NN longRBK?NN5^I JJ$C˿NNPQ?i+2 word bassoonNNS+NN+?i-1 tag+i word DT meritsNNS-?NN-i-2 word sentenceNN@JJi tag+i-2 tag VBN POSNNS+VBG ףp= NNl@NNPV-i+1 suffix ersWDT9vCC{GzINʡE@WP+ۿRP333333NN= ףp= @NNS%CVBG(\ @VBDv/?VBN/$NNPS= ףp=VBPGz?TOZd;ORBS+RBRQJJSV- @PRP$Zd;?VBZ + @FW +?PDT|?5^CDѿJJq= ףp @VBlJJRK7@''ffffffDTZd;OPOSZd;@PRP$CRBbX9NNP`"i-1 tag+i word IN driftingVBGˡE?NNˡEi-1 tag+i word NN neededJJX9vVBD~jt?VBNzG? i word janetJJrh|NNPrh|?i-1 suffix ool INE?NNPsh|??VBV-NNx&?VBNV-VBP?WDTx&1RB;On@VBZV-NNSA`"?RPOnVBDV-?i-2 word beersNN?5^I ڿNNPZd;O?NNPSZd;OJJ?5^I ?i-1 tag+i word NN publishersNNPSZd;?NNPZd;߿i+1 word juxtaposeWDTDl?INDli-1 tag+i word -START- wellcomeNN"~jNNP"~j?i-1 tag+i word NNP throughJJx&1INʡE?NNZd;i+1 word pollinateVB7A`RB7A`?i+1 suffix potVBNGzJJK7A`IN\(\?NNP/$?NN`"?VBDGz?FWNbX9JJSQ?i-1 tag+i word NN advocatesVBZRQ?NNSRQi+1 word sovereigntyJJCl?NNPClӿi+1 word kentuckyVBZʡE?NNPʡEi-1 tag+i word DT spotlightNNoʡ?JJoʡi-1 tag+i word , physicianNNh|?5?JJh|?5ֿi word portraitNNS+NN+? i word boeingVBG rhNNKNNP @i-1 tag+i word VBP introducedVBN(\?JJ(\i+1 word mccartinNNSV-NNPV-? i word systemNNPSS㥛NNK7?JJ"~NNPHzG?i-1 word concreteNN/$?JJ/$i-1 word dentonNNS#~jNNP#~j?i word consultantsVBZMbNNPS~jt?NNS-?NNQNNPV- i word forumNN5^I ?JJ5^I i-1 word biologicalNNPSZd;NNT㥛 ?NNPMbi-2 word somedayRBx&1пINx&1?i+1 word messiaenJJ+IN+?i+1 word hundredJJx&@FW+PRPNNMbCD?i-2 word happenedVBN"~jܿJJ"~j?i-1 word intensiveNNPSףp= VBGʡE?NNmJJ\(\NNSK7?NNPQ?i word mediobancaNNˡEԿNNPˡE? i+2 word uhDTS?INS i word priamNNSK7NNPK7?i+1 word furnaceNN`"?JJ`"i word playoffsNNSX9v?NNX9vi+1 word smartRBZd;@JJʡEFWMbi-1 tag+i word RB lobbyVBGz?VBNGzi-1 tag+i word VBP tardyJJ)\(?RBˡEVBNSi-1 tag+i word JJ confirmsVBZ"~?NNS"~i-1 tag+i word JJ mxNNP333333?NNPS333333i word consequentlyRB/$?NNP/$i-1 tag+i word DT intermediateJJX9v@NNX9vi-1 tag+i word NN reboundsVBZ$C?NNS$Cӿi word attractedVBN= ףp=RBKVBDl@i-1 tag+i word -START- needlessCCClJJT㥛 @NN$Ci-1 tag+i word POS aircraftNNX9v߿NNPX9v?i+2 word thripsNNSh|?5NNh|?5?i-1 tag+i word IN gustoNN^I +?NNS^I +i word politicalNNPSQ롿JJ$C?NNPQi-2 word cyclingVBʡENNʡE@i-1 tag+i word IN destabilizingVBG rhJJ rh?i+1 suffix ignWDTq= ףpVBZ$CINSݿDTL7A`?NN?5^I JJS{Gz?NNS5^I RBR rhJJR;On¿RBS{GzܿVBP?5^I ?RBzGҿVB ףp= CCʡE @PDTVBNCl?NNPx&?JJy&1?VBDjtƿi+2 word communitiesJJoʡ?NNvVBNMbؿi+1 word renaissanceWRB$CDTbX9?WDTmINGz?i+1 word churchNNPST㥛 NNQVBNS㥛?JJl?NNPS㥛i word bSYMK7?NNS㥛?RBʡEJJNNPS㥛i-1 tag+i word VB wellVBX9vRBZd;O@NNT㥛 UHv/ݿi-1 word seasonalJJv@NNSX9v?NNPx&1?NN+VBDI +VBN(\i-1 tag+i word , skiingNNʡE?VBGʡEi-2 word widenedVBGMҿNNM?i-1 tag+i word DT conglomerateNNq= ףp?JJq= ףpi word antelopeNNʡERBx&1̿IN$CVBPʡENNS/$?i-1 tag+i word IN gloryNN~jt?JJ~jti-1 tag+i word POS equalVBP-@RB333333JJʡEi-2 word similar VBzG?VBDʡE@VBNʡERBRʡE?VBPQWDTV-JJx&1?VBZ-VBG rNNMbX9@DTV-?CDSNNS-?i-1 suffix new RBX9v߿NNPSuVVBGx?JJ(\?NN'1Z?VBDffffffVBPnVBN rh?JJR̿VBZClCDbX9?NNSv?NNP? i-2 word laneVBPJJ?NNVBD?i-1 word balloonistsRBX9v?VBP\(\߿NNS+i-1 tag+i word NNS faceVBPFx?NN|?5^VBDK7i-2 word i.c.h.VBD7A`?VBN7A`i word instinctiveJJMb`?NNMb`i word resultedVBDd;O@VBN~jt JJK7 i word sportsVBZrh|NNPSMbX?NNSv׿NNPQοi-1 word provePRPMbXJJ/$ @RBQNNh|?5NNP/$i+1 word discussionJJM?NNK7A`JJRh|?5 i-2 word feltJJ{GzINK7A`@DTK7A`տNNZd;OVBDMVBNsh|?@WDT +i+1 word promisedNNDlѿNNPDl?i+1 word factorsJJ{Gz?VBN"~jNN{GzVBD"~j?i-1 tag+i word VBD myselfNNSSPRPS?i-1 tag+i word VBD aDTZd;O?JJ= ףp=RBMbi-2 word revenue NNPZd;VB1Zd?RP= ףp=ʿJJv?RBR|?5^RB+?INJ +WDTRQؿJJR|?5^?VBNS㥛DT? i word teenJJjt?CD#~jVB{Gzi word forfeitVBZ`"ֿVB`"?i-2 word currently NNzGJJSm?VBN r?RPX9v?NNPJ +?VBG$C?JJ$CIN^I +RBSmRBv/տ i word chefsVBZ rNNSMb?NNGzi-1 tag+i word VBZ squaredVBN~jt?JJ~jti-1 tag+i word MD exemptVB?NN i-2 word firmJJRQ?INOnRP'1ZVBGm?NN(\ VBDK7?VBNFx?RBGz@VB5^I ?JJnDT'1Z?NNS&1?VBZ&1NNPjt?i-1 tag+i word VBG rebuttedVBNV-?VBDV- i word no JJClINffffffVBZ|?5^ʿNNP= ףpVBPSUH$C@DT+η*@VB(\RBbX9@NNVBNffffffCDV-NNSSi-2 word plateVBw/?JJw/i-1 suffix susNNPST㥛 ?NNףp= ÿCC333333ۿVBPw/ԿRBbX9?VBZp= ף?NNSx&NNPoʡi+1 word portsVBNh|?5VBDh|?5?i-1 word trinityRBRQ?RB)\(VBZi-1 tag+i word JJ runJJRZd;VBNQ?VBPzG?JJL7A`NNSOnVBnNNQ @i-2 word incentivesNNPV-DTʡE?NNV-?VBy&1?JJףp= i-1 tag+i word RP fastRBT㥛 ?NNT㥛 пi+2 word allianceVB|?5^?NNS㥛 IN|?5^VBZ㥛 ?i+2 word disturbingJJ?NNi+1 word votesVBN5^I WDTMbX9?RB~jt?INMbX9NNPEؿNNPS1ZdۿJJʡE?i-1 tag+i word NN threatNN#~j?NNP#~jܿi-1 tag+i word DT embassyNN|?5^?JJR?5^I JJQi-1 tag+i word IN steamNN?NNSi-2 word armstrongVBX9vNNPS"~?NNSX9v?NNPX9vi-2 word linkingJJ%C?NN%C i word skfNNMbNNPMb?i+1 word appointmentsVBGOn?NN1ZdJJ/$ݿi-1 tag+i word -START- oldNNPn?INn i word wilyJJ(\?RBv/NNPCli+1 suffix arpPOSSJJv/VBZS?VBʡE?RB$C?NN%C?i-2 word units VBNZd;OVBPjt?JJT㥛 ?INS㥛NNPd;O?RBGz?NNE?RBSV-RPClVBDV-i-1 word treasury NNPQNNPS&1?RPGzVBDT㥛 ?CDV-߿INGz?NNS\(\@NNMb?POS~jt?JJp= ףVBZQi-1 suffix leaVBZjtNNSjt? i-1 word varyRBIN?i word befittingVBG/$JJL7A`?NNGzi+2 word creditors NNPS(\JJ rh?VBD rhտWDT(\NNPy&1NN/$?VBNSRBQINQ? i word tryVB!rh@RBMbXNN|?5VBP333333?JJ= ףp=VBZK7ANNP ףp= i-2 word mergeRBʡENNSʡE?NNQ?JJ7A`NNPy&1?i word baddebtJJ\(\?NN\(\ i-1 word filmVBZ$CNNS$C?NNSӿVBGS?i-1 tag+i word VBG dinnerRPK7NNK7?i+1 word aboardJJbX9CDbX9?i-1 tag+i word IN enoughRBMbXJJMbX9@NNSh|?5i-1 tag+i word DT limitsNNX9vVBZ+?NNSףp= ?i-1 word bankers VBPS㥛IN/$VBZK7?VBQRBRK7NNClVBDK7VBNK7?NNSףp= @NNP)\(NNPS^I +?VBG ףp= ?i+2 word qualifyingNNSZd;ONNZd;O?i-2 word strainsNNPSV-?NNPV- i suffix 784CDS㥛?VBPS㥛 i-2 word shipVB`"?VBP`" i word oftenNNPEIN&1RB`" @LSp= ףNNx&1i+1 word hartleyRBMbNNPMb? i suffix mnsVBZ{Gz?NNSK7?NN7A`JJV-VBDv/i-2 word terrizziRB/$IN/$?i-1 tag+i word DT oddNN-PRP333333JJrh|?i+1 word choice JJʡE?RBRX9vRB$CIN"~ҿNNjt?JJRX9v?UHxDTGz?NNP~jti-1 tag+i word CC utilitiesVBZX9vNNSX9v?i-1 tag+i word IN exitCDʡENNP~jtNN|?5^@$}?5^IJJjti word settlementsNNPST㥛 NNSQ?NNQNNPT㥛 ?i-1 word categoryWDTL7A`?INL7A`i-1 tag+i word VB veniceNNS/$NNP/$?i word psychicsNNS㥛 ?VBN㥛 i-1 word agency NNRQVBN +VBPMbXWDT+?NNSK7A`NNP+?VB)\(?VBDFx?POS+?RBMb?IN+VBZli-2 word rubendallVBGMb?NNMbi-1 tag+i word VB compromisedVBDX9vVBNX9v?i-1 tag+i word NNS neededVBNl?VBDli-1 tag+i word , likelyRB?5^I ?JJClVBDMbi-1 tag+i word RB participationNN?JJ i word brunoJJ|?5^NNP|?5^?i-1 tag+i word DT doubtNNS|?5^NNPn@JJV-VB/$?i-1 tag+i word -START- controlNN!rhܿNNP!rh?i+1 word disciplineNN9v@VBD!rhJJRףp= ?RBRףp= RB rȿVB +VBGB`"۹JJ;On?i+1 suffix pes NNT㥛 ?VBNQVBPV-?NNPQCDNbX9NNS#~jVBGnڿJJRZd;OJJHzG?DTS?i-1 word charterJJ+?NN+i-1 tag+i word CC expandedVBN1Zd?VBD1Zdi-2 word manufacturerNNSzG?JJzGi+1 word rockefellerJJ"~j?NN/$VBD"~ڿi-1 tag+i word PRP openVBZ{GzVBy&1ԿVBPuV?JJm?VBDMbi-1 tag+i word NN lightNN?NNSMbX9VBNHzGJJn?i-1 word fingerVB= ףp=@NN-JJ rh i-2 tag NNP!VBZCl?RBSzGVBD+N@RPL7A`?FWQٿRBREпEXp= ףؿMDJ +?JJRzGVBPMb?POSjt?NNSCC$CPDT|?5^JJSDl?NNV-?UH(\$ףp= DT~jtVBGx&VBNS㥛WDTQ?PRPy&1PRP$Zd;@RB(\?``CDmտINGzNNPS#~j?''Zd;?NNPCl@VBFxJJGzi+1 word incidentsJJq= ףp?NN9vVBD|?5^?i-1 tag+i word VBP stoppedVBN rhVBD rh@ i word cartedVBP rVBD r?i-1 tag+i word NNP l'oeilNNMbX9FWMbX9?i-1 suffix nit RBR|?5^?VBNKVBZw/?JJR|?5^VBGffffffNNX9vJJ rh@IN rhտNNSw/VBDx&1?WDT rh?i word turmoilsNNSMbX9?NNMbX9i word recorderVBZ"~jVBPClNNK7?i+1 suffix uneRB~jtNNMb?VBDq= ףpݿVBNNbX9?JJ$CINM?VB+i-1 tag+i word DT bowlingNNףp= ?JJףp= ÿi+1 suffix ritJJ7A`?NN7A`ҿi-1 tag+i word VBN closeVBMbX9RB\(\@JJS㥛i word scramblesNNS/$?VBZ/$i-1 tag+i word , hideJJףp= ÿVBx&1?VBP$Ci-1 tag+i word -START- danVBʡENN$CۿNNP-?i-2 word innovationsJJS)\(?RBS)\(i-1 tag+i word DT triggeringVBGw/@NNw/i-1 word parentMDjtVBGK7A`?NNK7A`տNNPjt? i suffix azyJJGz @NNMbVBPFxNNSZd;VBN rh i word tallyRBxNNx@i-1 tag+i word JJR thoughtRBX9vVBDX9v?i word compensateVBq= ףp?JJq= ףp i word stateJJnNNPA`"?NNPSNNjt@RBSi word monasteryNNRQ?RBRQؿi-1 tag+i word VB maliceNN?RBMb`NNP/$i-1 tag+i word DT wheelNNFx?JJFxi-1 tag+i word IN passingVBG/$?NN/$i-1 word provisionsIN"~j̿VB~jtVBG(\?VBD)\(?VBP)\(WDT?RBףp= ۿi+1 word overturesVBNK7JJK7?i+1 word sundanceIN= ףp=?RBjtNNPMbi-1 word blackhawkVBV-ݿNNV-?i word subminimumRBX9vNNHzGJJK7 @i-2 word athleticsJJ?5^I ?VBp= ף?NN?5^I VBD\(\?VBN\(\VBPp= ף i+1 word lowsNN?JJi-2 word warrantsRB;On?IN;OnJJh|?5?VBDxVBNV-?VBPxi-1 word marchedRPGzRBGzINzG?i+1 word biddersVBZ/$?NNS/$JJS㥛@NNoʡIN^I +i-1 suffix tarVBNjt?POS}?5^IVBZ㥛 ҿNNSˡENNP(\@NNPSGzNN rhտVBDjt i+1 word labNNV-?NNSV-i-1 tag+i word NNP underscoresVBZMb?RPMbi-1 tag+i word WP frequentlyVBPGzRBGz?i-2 word satelliteNNL7A`?JJL7A`i-1 tag+i word VBD prestigeNN(\?JJ(\i+1 word support VBZd;O?RP;On?RB rNNV-JJR&1?VBNGzVBG^I +?NNPMVBDCl?JJ@NNS㥛 i word bioengineersNNSw/?NNPw/i-2 word capitalistsRPK?INK i word reachVBDrh|VBjt?VBPCl?NNS㥛 ҿNNCl i word disksVBZQNNS?NNGzi word subsidizingVBGV-?NNV-i-2 word cloutVBx&?VBGK7A`?NNQi+2 word tangledNNS+?RB+i+1 word telecomJJˡENNPˡE? i suffix OFFNNPsh|?NNsh|??i-1 tag+i word -START- generalNNP{Gz@NNMJJ+i-1 word yuppiesVBNS?VBDSi-1 word egyptianNN+NNP+? i-2 word noRBffffff@NNSsh|?VBPJJRnRPQVBZ= ףp= @PRP\(\?NNv/VBNQۿVBw/]@VBDn?WDTmREXK?CD/$VBGrh|?FW1ZdۿNNPRBR"~JJSINDli+2 word bauerNNK?JJKi word evidenceNNx&1?NNPx&1 i word actorsNNS/$?RB/$VB/$i word screechingJJjt?VBGS?NNL7A`i-1 tag+i word JJ churchNNSQNNQ?i-1 tag+i word NNS votingVBG?NNi-1 tag+i word VB callsVBv׿NNSv?i+1 word brokersJJS㥫?INRQ?DTV-VBNGz߿CD}?5^I?WDTjt?i-1 tag+i word VBD reliefNN= ףp=?JJ= ףp=i-1 word withinJJM?PRP$zGPRPzG?NNMi word reconstructingVBG(\?NN/$JJMbi-1 tag+i word MD therebyVB5^I RB5^I ?i+1 word leslieVB㥛 IN㥛 ?i-1 tag+i word NN opensVBZ+?NNSA`"NNS㥛i-1 tag+i word VBN warningNN(\VBG(\?i-1 word midwesternVBP;OnNN;On?i+2 word potentialINuVRPuV?NNSRQVBNh|?5?JJ-ӿi+2 word stirredNNV-?RBV-i-1 tag+i word DT arbitratorNNSI +NNI +?i word straussRB+NNP+?i-2 word clearerVBmݿJJRI +?NN/$i-2 word warmingJJRZd;O?RBRZd;O߿ i-2 word burnCCʡEDTjt?RB'1Z i word dubbedNN\(\VBDZd;OVBNMbX9@JJzGʿNNP+RBKi-1 tag+i word CD managedVBNʡEVBDʡE?i-1 word countrysideNN9v?RB9vڿi word triggeringVBGw/@NNw/i+2 word belowNNPʡEVBDX9v?VBNS㥛WDTK7A`?JJʡEIN\(\DT\(\NNSʡE?i-1 tag+i word NNP notedVBD`"?VBN`"i word discordNN~jt?JJ~jtпi-1 tag+i word DT charlatanryNNʡE?JJʡEi+2 word emissionsNNS㥛?JJS㥛i-2 word statuteVBPQJJsh|?NNSM?VBsh|??NNQ?VBNMi-1 tag+i word CC flappingVBG-?JJ- i suffix olaNNP#~j @NNPSV-NNS-NN/$ÿJJSi-1 word herbicideJJ-?NN-i-2 word discoveredJJA`"?NN+?NNPJ +i-1 tag+i word NNP mattesNNPS)\(NNP)\(? i suffix WHOWP1Zd@NNP1Zdi-1 tag+i word RB unnamedVBN#~jJJFx?VBDV-i-2 word reflectsNNlJJ㥛 ?NNP"~?VBGFx?i+2 word militantNNSʡE?NNʡEֿ i+2 word move PDTX9v?VBN333333?VBP(\RBh|?5INv/VBZ!rh?RP%C?JJZd;OݿNNP rNNSQNNm?VBDL7A`i-1 tag+i word RBS confusingJJ1Zd?NN1Zdi-1 tag+i word DT canalJJ+NN+?i+1 word fightJJMb?NNMb i suffix DONNNPJ +?VBʡENNSZd;i-2 word metalVBI +NNRQ @JJV-RBRffffffi word failuresVBZ-NNS+?NNHzGi-1 tag+i word DT preciseJJFx@NNFxi word decreasesVBZ/$?NNS/$i-2 word paper VBPV-NNSMbX9?VBX9vRBR}?5^IVBN7A`JJQ?IN7A`?DTS㥛NNPnҿRBHzG?NN9vVBD7A`?i+2 word heatingNNSv?NNPSv i suffix iadNN(\VBT㥛 пJJL7A`?i-1 tag+i word DT taintedVBN1ZdJJ1Zd?i+1 word wonderJJX9v?UHK7ARBV-?DTp= ףNNSB`"?NNPB`" i+1 word youVBP333333?RBtV?VBCl?PDT1ZdVBN9v?INK@DTV-NNP"~ʿJJ{Gz VBDCC|?5^?NNK7A?VBZ~jt?NNSx&i-2 word rohatynNNbX9?JJ/$RB(\i-1 tag+i word NN newsNNPS +NN^I +?NNPCl绿i-1 tag+i word DT candybarNNSClNN(\?JJMbX9Ŀi word slappingVBG(\NN(\? i-1 word farCDVBZMbX9?NNPMbXVB"~jRP/$ӿVBNSVBG^I +?VBPEпEXX9v?JJRMbX@NNRQȿVBDZd;JJʡE?INd;ONNPSQRBPn?CCS?RBR%C?i+2 word oklahomaNNSK7NNPK7?i-1 tag+i word VBZ adviceNN"~@RBGzJJd;Oi-2 word topazNN5^I ?VB5^I i+1 word scoresNNMb?JJRMbVBP+JJ+?i-1 tag+i word IN airportsNNSRQ?JJRQi-1 tag+i word WDT assumptionVBZv/NNv/? i word equityNN ףp= ?NNP ףp= ߿i-2 word claimedNN/$?JJ/$i+1 word bladesNN(\?VBD(\i-2 word concentrateJJ#~j?NN#~ji-1 word errorVBZbX9?NNS= ףp=INS i+1 word rodePRPPn@JJjtܿNNPi-1 tag+i word VB favorablyVBN/$RB/$?i-2 word projectVBn@VBPQۿNN ףp= JJQ?NNP!rhi-1 word colonyVBp= ףVBPp= ף?i-1 tag+i word RB crosslandNNRQNNPRQ?i-1 tag+i word VB aggressivelyRBn?JJni+1 word deductionsJJ"~j?NNMbX9CD-VBZA`"?i-1 tag+i word CC directVBV-JJV-? i word partNNSMbX9NNx&@JJENNP?5^I  i word swiftVBDlJJZd;O @NN +VBNS i suffix yzeVBP;On?VBD;Oni word courtauldsNNPSS㥛NNS\(\NNbX9NNP~jt@ i word harshJJK7@NNI +ֿVBDX9vVBNffffffVBPh|?5RBClɿi-1 tag+i word JJ belowNNzGINzG?i-2 word chewedVBPzGRBzG?i-2 word soybeanNN"~?JJ"~i-1 word classicalNN+?JJ+i-1 tag+i word DT vosgesNNPS$C@NNSV-NNPQi-2 word harborVB/$?VBD/$i-1 suffix azyNN#~j?JJKIN= ףp=?i-1 tag+i word VBZ pigsNNS1Zd?NN1Zdi+2 word fearsomeVB+RB+?i-1 tag+i word JJ evidentJJzG?NNzGi word passionatelyRBS?JJSi-1 tag+i word JJ bornVBNMbX?NNMbXi-1 tag+i word : plasterVB(\NN(\?i-1 word crosslandNNPJ +NNPSJ +?i word inquiringVBGQ?NNQi word fledglingVBGZd;ONNZd;O?JJ?i-1 tag+i word NNS debateNNMb?VBMbi+1 word department DTףp= ?JJ"~NNPSB`"VBG rh NNX9v?VBNjt?NNS)\(NNPQ@VBCli-1 word groundsWDT/$IN/$?i-1 tag+i word DT brashJJZd;?NNZd;i-2 word retailWDTCl?INCli-1 tag+i word JJ wireNNSjtNNjt?i-2 word record NNS㥛 ?VB(\?RPm?NNX9vVBNS?''(\?INmͿVBDI +޿POS(\i-2 word pound NNPʡENNʡEJJK@JJRGzVBNx?IN|?5^?RBoʡ?VBD^I +RBR(\@i+2 word molecularVBNL7A`?VBDL7A`i-2 word shippedRBffffff?NNffffffi-1 word martinWDTQINQ?i+2 word chapterRB&1NNPB`"?VB?NNrh|VBDS?VBNףp= i-1 tag+i word JJ manufacturingVBGCl@JJZd;NNX9v׿i-1 tag+i word POS innerJJCl?NNCli-2 word stampRBn?VBDnѿ i suffix tzyJJCl?NNPMbXNNMbi word keynesiansNNP/$ӿNNPSE?NNSV-i-1 tag+i word , basicVBNʡEƿJJʡE?i-1 word acquistionRBOnۿINOn?i-2 word dozensNNPSy&1NNS/$NNP{Gz?i-1 tag+i word ( civicJJ5^I ?NNS5^I i-1 word infinitiVBZ~jtNNP~jt?i-1 tag+i word DT householdNNd;O?JJd;Oi-1 tag+i word VBZ regulatedVBN)\(?JJ)\(i-1 tag+i word '' dnaNN"~?NNP"~i-1 tag+i word MD relyVB?RBi+1 word devaluationVBGtV@JJtVi-1 tag+i word RB spiralNNQ?JJQi-1 tag+i word , permitsNNS~jtVBZ~jt?i-2 word belatedNNQ?NNPQi-1 tag+i word , seeksVBZ9v?VBD9vi-1 word arrowNNPSˡE?NNPˡEi-1 tag+i word CC soonerNNV-JJRA`"RBRZd;O?i+2 word understandRPsh|??NNMINsh|?VBCl?VBP)\(?i-1 tag+i word JJS survivedNNSx&1VBNA`"?JJGz i suffix ideVBD ףp= IN!rhm@VBZMNNSHzGNNʡE?VBNFxCDSVBPoʡ?WDTʡENNPQ?RPV-?FWy&1LSjtDTV-RBA`Т@NNPSMbXJJE?VBjt@i-1 tag+i word JJ slotsNNClNNSCl?i-1 tag+i word , rabbitNNffffff?JJffffffi+1 suffix incJJ|?5^NNPM?VB= ףp=NNPSV-?VBGCli word whereverWRBZd;?VBZd;i-1 tag+i word NN hitVBZClVB"~j?VBN/$?NNˡEVBDbX9? i word maryJJ(\NNP(\@i-1 word whichRP`"޿JJ/$JJRq= ףpINp= ףNNSq= ףpCC/$?VBN`"EX"~?RB ףp= ?NNP333333?VBD ףp=@CDQDTjt?VB rhѿNNPS(\ҿNNGz߿VBPS @VBZ{G@ i-2 word ceoRBK7INK7?i-1 word picksRB-?RP-ֿi-1 tag+i word IN regulatedVBNDlJJDl?i word softenedJJn?NN-VBN(\i-2 word qualifyingJJ/$NNP/$?i-1 tag+i word DT geneJJClNNPCl?i+2 word shortagesRBR|?5^?JJR|?5^i+1 word unless RPʡENNffffff?RBRSJJRS?VBN/$?RBh|?5INx?JJ/$޿DTxi-2 word observeJJ?5^I ?NN?5^I i-1 tag+i word RBS celebratedVBNrh|JJrh|? i word mindVB/$?NN @VBN333333JJ"~jNNSClNNP%Cܿi-1 word quickNNx&1?JJx&1i+2 word devicePDTS?JJZd;ONNMbȿ i word libelNNCl?JJZd;ONNSv/i-1 tag+i word TO legislatorsVB-ӿNNS-?i-1 tag+i word IN taintedVBNT㥛 ؿJJT㥛 ? i suffix IRANNPS/$VBN/$NNX9vNNP#~j@ i suffix upVBDI +VBNA`"INw/]@VBZnCD333333ۿRBMbX9@NNPSVBSJJzGNNo!JJRV-UH(\NNSB`"RPx&#@i-1 tag+i word IN carbonNNzG?JJS㥛NNSˡEi-1 tag+i word -START- loanCC +NNI +@JJq= ףpͿNNPʡEi-2 word pavedJJ5^I IN5^I ?i+1 word retributionJJR)\(ԿJJ)\(?i word disgustedVBNzG?JJK7?VBD~jti+2 word proppedJJ`"?NN`"ֿi-1 tag+i word VBN attemptsNNnNNSn?i word laxativeNNzG@JJzGi+2 word scheduleJJrh|?VBMbX9NNˡERBMbX9?JJRCli+1 word speaksVBZK7ARBK7A?i+1 word thrustsJJ|?5^?NN|?5^i-1 tag+i word NN protectionNNZd;NNPZd;?i-1 tag+i word JJ ceramicsNNSjt?NNjti word channelVBbX9?NNPS"~jNN rh?JJ+VBZNbX9NNPS㥛?i-1 tag+i word DT resignedVBNV-JJV-? i word pourVBMbXVBP@NNtVCDRQi-1 tag+i word , equitableJJI +NNPI +?i-1 tag+i word , southamRB}?5^INNP}?5^I? i word plightNNSClNNZd;?JJp= ףؿi word revivedJJy&1VBN{Gz@NNClۿVBDd;Oi-1 tag+i word `` clutchVBClVBPX9v?JJ/$i-1 tag+i word JJS treasuryNNCl?JJCli-1 word corningNNPS1Zd?NNP1Zdi-1 tag+i word NNP proposalNN#~j?NNP#~jܿi-1 tag+i word DT chaseJJV-?NNV-i-1 tag+i word DT documentNNףp= ?JJףp= i-1 tag+i word VBD compiledVBN&1?JJ&1 i+1 word no.NN~jtVBDI +VBNJJ}?5^I@VBZ5^I ˿NNSNNP-?i-1 tag+i word VB defendingNNp= ףVBGp= ף?i tag+i-2 tag NN VBPNNP5^I ӿVBG1ZdJJm?WDTx&?RBRT㥛 ؿJJRT㥛 ?INS㥛DTT㥛 пNNS +?NN}?5^I@VBD rhRBvVBNʡE@VBZ= ףp=CD;On?i+1 word keynesiansNN +@JJ +i word kirschnerNN?5^I ڿNNP?5^I ?i-1 word gauguinVBNS?NNtV?VBDK7 i-2 word keyVBD rhٿVBN\(\?VBP1ZdRBGzINNbX9?VBZMb?NNSV-?NN-i word climateVBP333333ӿNN+?JJ|?5^NNPQտi-1 word gradesRBoʡ?INoʡi-2 word relinquishJJtVNNPtV@i-2 word bodiesNN'1ZVBG/$JJzG@i-1 tag+i word NNP cdcNNʡENNPʡE?i word arsenalNN\(\?JJ\(\i word evergladesNNS;On?NNP;Onڿi+2 word revenuesWDTClNNMb?JJMbINCl?i-2 word economistNN$CVBDQ?VBNQJJX9vNNPS@NNPStVοi-1 tag+i word NNS differVBPʡE?NNʡEi-1 tag+i word RB ineptJJ$C?VBPZd;OͿVBN333333i+1 word suisseJJKNNS㥛NNPʡE?i-1 tag+i word VBD encouragingJJ|?5^@RBMbX9VBG9vi-1 suffix tzyJJ1Zd?NN1Zd i+2 word fullNNPSZd;OտVBP ףp= ǿINK7NNPGzVBG)\(?VBDrh|ϿRBx&1ؿNN-?WDTsh|??VB ףp= ?VBN!rhCDZd;O?VBZClNNSCl?i-1 tag+i word NNS !HYPHENVBPL7A`WDT'1ZRBGz @NNSHzG?VBGx&?JJMbNNZd;i-1 tag+i word , bulkJJjt?VBPjtֿi-1 tag+i word POS subsequentJJ^I +?NN^I +߿i-2 word awardJJI +?NNI +i-1 tag+i word NNP flagsVBZDlNNSB`"?NN?5^I i-1 tag+i word RB rareVBN(\JJ(\?i+2 word retiringNNSRQ?NNRQi-1 word circuitNNS!rh?VBZ!rhi-1 tag+i word IN bondNN rhNNP rh?i+2 word swapsRP+?RB+i-2 word supervisorVBx&1VBDx&1?i-1 suffix kkrVB ףp= NNA`"?VBDl?i-1 tag+i word `` neededVBN?5^I ҿJJzGVBDʡE?i-1 tag+i word NN ominousVBZNbX9ؿJJNbX9?i-1 tag+i word TO fertilityNN333333?JJ333333i-2 word democraticNNGz?RB!rh̿VBDT㥛 i-1 tag+i word -START- aichiNNSGzοNNPGz?i-1 tag+i word JJ varietyNNV-?NNSV-i word peachesNNSB`"?NNB`" i word bonoNNQJJʡENNPlFWףp= @NNSp= ףi-1 tag+i word NNS varyVBPZd;?JJZd;i-1 tag+i word NNS builtVBDS㥛VBN;On?FWMbi-1 tag+i word VB pleatedVBNv/JJv/?i-1 tag+i word VB earnsVBZ= ףp=?NNS= ףp= i word ricoNNPSMbNNvJJ?5^I RB/$NNPQ@i word ghostlyNNS㥛 JJףp= ?NN/$i+1 word compensationVBG rh?VB+NNSmNN\(\JJm?i-1 suffix tetVBZ+?VBD+i-1 tag+i word DT porcheJJ~jtNN\(\NNP rh?i-1 tag+i word IN worsenVBV-?VBPV-JJR㥛 i-1 tag+i word TO bringVB\(\?VBG\(\i-1 tag+i word NNP changesVBZClNNSCl?i-1 tag+i word RB steppedVBDNbX9?VBPNbX9 i+1 word delNNS㥛 NNP㥛 ?i-2 word technologyVBZzGJJSn?VBPrh|ϿINDlVBD1Zd?NNSRBR|?5^?RBDlNNS7A`?NNP= ףp=?VBx&1?JJףp= JJR&1?WDTvRPDl?i+1 word trucksNNoʡ?JJX9vNNPʡE?i-1 tag+i word ) cutsNNS^I +VBZ^I +? i-1 word spyNNlCDl?i-1 tag+i word CC professionalVBPPnJJPn?i-1 word close WDT|?5^ٿIN(\?RPS㥻?NNSCl?VBGNNʡE?VBN;OnVB"~jRBSJJ~jt?i-1 tag+i word POS federatedJJףp= NNPףp= ?i-1 tag+i word DT soothingVBGJJ&1?NNMbX9 i-2 word wynnVBZOnJJ?5^I ?NNˡEi-2 word thatcherVBPS?PRPL7A`JJ rhPRP$L7A`?VBSRB9vNN rh?RBR9v?i+1 suffix vasJJMbX9?VBNZd;O?NNMbX9VBDZd;Oi+2 word claytonNN?5^I NNP?5^I ?i-1 tag+i word DT hiroshimaNNClNNPCl?i-1 tag+i word PRP addedRBVBD?i word mustardNNʡE?JJʡEi-1 tag+i word JJ broaderJJR +?NN +i-1 tag+i word JJ funnyVBN㥛 JJ㥛 ?i-2 word bushyVBZ +οNNS +?i-1 tag+i word NNPS alikeVBPsh|?տRBCl?NNK7i-1 tag+i word JJ punkNNJ +?JJJ +i-1 word kansasVBPJ +JJuV?NN rhͿ i+1 word bikeNNSMbJJw/?NN +NNPDl?i-1 word complainedJJSؿRB rhIN rh?RBS?i-1 tag+i word RB trusteeNN)\(?JJ)\(i word doctorsNNPS`"NNS`"?i-1 tag+i word NNP mentalityNN&1?NNP&1i-1 word subscribersRB㥛 IN㥛 ?i-1 tag+i word WDT boomedVBPDlVBDDl?i-1 tag+i word CC pritikinNNPK?NNPSKi-1 tag+i word RB trustedVBNZd;JJX9vVBDX9v?i+2 word binderJJʡE?NNʡEi+1 word schemeJJCl?VBNKNNK7A`տi+1 word equippedCDtVNNS{Gz?RB{Gz?JJ{GzNNPˡEi-2 word littleVBP ףp= RBL7A`?INX9v?RP|?5^?NNPMbVBG1Zd?NNK7ARBR~jtNNS\(\VB|?5^?WDT(\CDClJJ!rhJJR/$?DT{Gz?i+2 word pipelineJJ?5^I ?NN?5^I i word monteRBRV-NNP'1Z?NNPSV-ҿi-1 tag+i word DT maneuverNNA`"?NNPA`"i-1 tag+i word NNS outdidVBP rPOSL7A`尿VBD/$?i+2 word scopeJJ r?JJR~jtx?NN~jtxVBD ri-1 tag+i word NNS clearingVBGNN?i-1 tag+i word -START- maxicareNNp= ףNNPp= ף?i-1 tag+i word DT planNNjtJJ +VBP;On?i-1 word suspendingNNV-VB~jtJJGz?i-1 suffix styNNPnNNSPn?NNtV?JJuVi-2 word mobileVBNx&1?VBDx&1i word resortsNNPSX9v?NNPX9v i word inchNN?5^I ?NNSV-VBNffffffJJy&1VBl?i word recallingVBGv/?JJv/i word surprisedVBNjt JJ ףp= @VBDV-?i-2 word losingINX9v?VBNClJJX9vVBDCl?i-1 word philanthropistINMbWDTMb?i+1 word deliveriesNNX9v?JJX9vi word denuclearizedVBNx&1?JJx&1i-1 tag+i word NN thousandCDK7A?NNK7Ai-1 tag+i word JJ businessmenNNS|?5^?NN|?5^i-1 tag+i word CC philNNPSNbX9NNPNbX9?i-2 word speakVBl?NNli-1 word employsVBD ףp= VBNʡERBT㥛 ?IN;On¿RP ףp= ߿JJʡE@NN&1ڿi word composedJJ ףp= ǿVBN ףp= ?i-1 suffix arpNN9v?VBDxVBGV-JJzG@i-1 tag+i word VBD photosNNS|?5^?NN|?5^ i-2 word meJJCl?NNGz׿VBNClEXQ?RBQINS˿DTS?NNPGz?i+1 word braceVB/$ӿNNP/$?i-1 tag+i word TO actorsVB/$NNS/$?i word massiveJJ^I +?NN^I +i+1 word porchJJx&1NNx&1?i+2 word secretary NNPSZd;VBN`"޿UHZd;ODT1ZdVBp= ף?VBD`"?PDT/$?VBPQJJX9v@IN333333?NNP rhNNK7Aпi-1 tag+i word VB occurredVBNx&?JJx& i word fall VBPh|?5@RB rhNNPh|?5NNPS rVBG+RBRʡEVBCl@JJx&1NNʡE6@i+1 word burdenedINjt޿WDTjt?i+1 word symbolsJJMb?NNMb i-2 word liveNNNbX9ؿVBG/$JJ㥛 ? i+2 word sandNN(\JJʡE@VBGGzVBN= ףp=?i-2 word depositoryVBPvVBDv?i+2 word nearlyVBʡE?RP|?5^?NN(\VBN+NNPGzVBD+?NNPSʡE?JJSDlJJRQVBP)\(?WDTףp= ?INbX9NNSzG?JJZd;OVBZni-1 suffix oke NNPʡE?RBT㥛 пVBD9v?INy&1?VBZ|?5^ڿJJMbNNSK7A`?MD-RPL7A`?NN(\VBN9vi word stopgapNNMbX?JJMbXi+1 word cecconiNNP/$?VBD/$ i word fibersNNS(\?NN(\i-2 word cancerVBGʡE?NNGzVBD333333?VBNM?VBP= ףp=?JJrh|VBZh|?5?i-1 tag+i word NNS bidVB/$ݿNNS?VBD/$?VBNClVBPʡE?RBCl i suffix ElJJZd;NNX9vϿNNPCl? i word kicksVBZ$C?NNS$Ci+2 word campusesRPKINK?i-2 word greetedNNS/$ۿNN/$? i+2 word lot RPS?NNMbVBD1ZdVBPv/?WDT +VBN-?INGz׿VBZM?NNSw/i-1 tag+i word VBN accordsNNPI +޿NNPS㥛 ?NNS&1i-1 word since NNPtVVBG/$?VBD!rhVBNMb?CD!rh@JJR333333ÿJJ~jtNN7A`@RBmNNS"~ji+2 word demobilizingVB&1VBG&1?i-1 tag+i word RB waivingVBG= ףp=?JJ= ףp=i+2 word meditationJJ?5^I ڿNN?5^I ? i word shopsNNS{Gz@NNClNNP(\VBx&1NNPS(\@ i-1 word eniVBZ'1Z?NNS'1Z i+2 word cnwVBNS㥛?NNSS㥛i+1 word weighWDTV-?INV-ݿi-1 tag+i word VB rudeVBNx&1VBMbX9ܿJJ\(\@NNSi+1 word bipedNNtVJJtV?i-1 word broadcastJJJ +NN)\(NNP^I +?i word tragedyNNPSSNNSv/NN~jt?i-1 word transactionsJJV-@VBG&1?RBnNN&1VBDvVBN +i-1 tag+i word , costsVBZNbX9NNSNbX9?i-1 tag+i word NNS votedVBN(\ҿVBD(\?i-2 word accusationsRPZd;ONNZd;O?i-1 tag+i word NN attachedVBN9v?VBD9vڿi word spokaneNNPMbP?NNMbPi-1 tag+i word JJ wishesVBZ|?5^?NNS|?5^i-1 tag+i word NNP umbrellasNNSDl?NN+JJQi word incidentJJjtNNjt?i+1 word competitorJJSQ?NNPQi-2 word weeksJJףp= ?INGz?DTGz߿NNSX9v?VBX9vRB/$?NNZd;VBP%CԿi-1 word mexicanVB$CVBG\(\NNn?JJ&1IN$C?i+1 suffix betJJпJJR?5^I ?NN?5^I i-1 suffix i NNV-JJnINMbVBZ?5^I NNPDlRBQ?VBp= ףVBD$C@VBPV-@MDtV?i+1 word grenadaRBT㥛 ?JJT㥛 i word comparableJJq= ףp?NN rhRBX9vi+2 word voicesVBV-PDTw/?DT&1NNGzVBPGz?i-1 tag+i word DT goldJJ~jt@NNsh|?VBN\(\i-2 word prosecutorsVBGx&?VBN|?5^ʿJJx&VBDZd;?i-1 tag+i word NNP prizeNNq= ףp?INq= ףpi-1 tag+i word ) laborNNsh|??VBDףp= NNP- i+2 word tntVBS㥛?NN|?5^NNPrh|i-1 tag+i word WDT needVBPL7A`?JJL7A`i-1 tag+i word '' capitalJJNbX9?NNNbX9i-1 tag+i word , moveVBP ףp= @NNmVBZClVBbX9?i-1 tag+i word DT foodstuffsNNSZd;O?NNZd;Oݿi-1 tag+i word JJ libraryJJ rNN r?i+2 word rollsNN'1Z?JJ'1ZĿ i-1 tag JJ"WRBA`"RBSQ?RBR5^I VBZx&1WDT^I +WPQ?VBL7A`VBNL7A`?NN+w@INq= ףp?JJRI +?$S㥛PRPK7A`NNSZd;O@NNPZd;O@PDTS㥛?UH;OnڿVBP{Gz?VBGK7A`DT1ZdCCB`"?CD r?PRP$Zd;RPFWrh|?EXNbX9VBDZd;?TOK7?RB|?5^ٿJJ/$ֿPOS'1Z?NNPSףp= @JJSx&1''ffffff?i word christensenNNPSZd;׿NNPZd;?i-1 tag+i word DT brightJJx&@NNnNNPI + i word sendVBrh|?VBPv/?VBDA`"VBZv i word ribsNNSrh|?NNrh|i-1 word orderlyVBGɿNN?i-1 tag+i word JJ politicsNN rhNNS rh?i-1 tag+i word NNS allergicVBP rJJ r?i-1 word playoffsVBbX9VBPbX9?i-1 tag+i word JJ prerogativeJJ/$NN/$?i-1 tag+i word RB jenkinsVBZ(\NNP(\?i+2 word manfredNNPSx&1NNPx&1?i+1 word industriesNNPS#~j?VBG(\?NNtV?JJQINV-NNP?i word divisionsNNS?NNi word batteringVBGq= ףp?NNS㥛пJJ㥛 i+1 suffix ulyRBjt?NNZd;VBD5^I VBNX9v@JJ#~jWRBCl?i+1 word ironicJJQRB{Gz?NNS㥛i-1 tag+i word JJ upINsh|??RP-?VBN+RBʡEۿi-1 tag+i word NNS ignoranceNNffffff?FWffffff i word upsetNN{GzVBN(\B@RBx&1̿NNPCl绿VBRPMbXJJzG?i+1 word adequateINsh|??RBsh|?i-1 tag+i word PRP$ democraticJJy&1?NNPy&1i+1 word attributedNNy&1NNPʡE?NNSGzRB?i+1 word majorityNNS/$?JJCl?NNDlNNPoʡտi-1 tag+i word VB toldVBN~jt?RB~jtۿi+2 word clipboardNNףp= ?NNSףp= i word brotherRBR-RB+DT-NNSQNNv@CCni-1 tag+i word VBD defectsVBZX9vNNSX9v?i+2 word fairlyVBDl?JJRI +@RBRI +VBPDlJJ)\(NNS)\(? i word bamNNM¿NNPUHy&1?i word physiologyRBMbXNNPMbX?i+2 word outageNN`"?JJ`"i tag+i-2 tag NNS : NNMbXٿVBN?CDT㥛 ?WDTOnۿINOn?JJI +VBD7A`VBPV-?RBMb`?i+1 suffix kzoRB(\?IN(\?VBZ~jt?NNS~jtȿNNP(\WDT(\ i word masonNNh|?5NNPh|?5?i+2 word singerNNS"~j?NN"~jܿi-1 tag+i word NNPS takeVB?5^I ?VBP?5^I i+1 word returnsRB)\(̿NNV-JJRv/?RBRv/JJK7A`?IN)\(?VBGNbX9? i word betsyNNPZd;O?INZd;Oi-1 tag+i word DT gardenNNSKNNK?i-1 tag+i word JJ sungVBN~jt?NN~jti+1 word bulletNNA`"NNPEJJ-@i-1 tag+i word RB sillyRB7A`?JJ7A`i-1 tag+i word DT retailingVBGtVNNtV?i-1 word facesDT +VBG333333ۿJJ+?NNMbXɿCC +?i-1 word promotersVBPCl?NNCli+1 word stretchesJJS+JJ+?i word centerfielderNNPSClNNS/$JJRoʡNN}?5^I@i word frustratedJJJ +?VBD~jtVBNi-1 tag+i word NNP rainesNNPSʡEݿNNPʡE? i suffix purJJw/NNPʡE?VBQ@NNy&1VBN1Zdi+1 word fabricVBG`"?VBP`"i-1 tag+i word VB vetoesVBZ;OnNNS;On?i-1 tag+i word -START- amrNNK׿NNPK?i+1 word thereafterRBRzG?JJRzGi-1 tag+i word VBZ unitholdersJJʡEӿNNSʡE?i-1 tag+i word DT multilayerJJK7A`?NNK7A`i-1 tag+i word DT palestiniansNNPSGz?NNSGzi+2 word breakthroughVBGvNNv?i+2 word acknowledgedNNPn?JJPni-1 tag+i word VB plentyVBbX9ȶNNSV-RB^I +@NNli-2 word cheeryJJS@NNS i+1 word takeVBZjtNNSX9v @NNPNNPS?5^I JJSHzGVBN i-2 word ltd. VBN$CVBZZd;NNP(\JJ= ףp=?IN|?5^?RB|?5^NNNbX9VBDZd;?CDRQ?i-1 suffix ert NNPQ@NNPSZd;OVBG`"JJ5^I ?RBV-INZd;OͿNNS^I +NN"~?FWSſPOSʡE?VBZ1Zdi+2 word weakensNN ףp= ?NNP ףp= i word octNNMbPNNPMbP?i+2 word reassureVBX9v?JJX9vi-1 tag+i word NNS madeVBV-VBP/$VBN?5^I @VBDV-ڿ i-1 suffix paNNS5^I VBP5^I ?i-1 tag+i word CC controllingVBGZd;߿JJZd;? i+1 word rodNN$C?JJ$C i+2 word file NNPJJZd;O@NN'1Z?VBDL7A`?WDT/$?IN~jtVB?VBN rhVBP/$RBA`"i word parametricJJT㥛 NNPT㥛 ?i-1 word declareDTp= ףпINp= ף?i-1 tag+i word VB wickedVBNJJ?i-1 tag+i word POS reigningJJ +VBG +?i-1 suffix eekDTuVNNPSv/RP ףp= ?JJnVBPbX9?VBN?VBZ#~jNNK@VBDMbRBRGzRBrh|?POSJ +?WDTq= ףpNNPDlNNS^I +?IN&1VBG7A`ڿi-1 tag+i word RB wellNN333333JJX9vVBN1ZdRBDl)@UH"~ji-2 word thereVBGffffffJJRMb@NNS+?NNPx&1?RBR/$RBxCD1ZdVB;On?JJ"~NNsh|??CCS㥛?VBNVBDCl?PDTQݿVBZT㥛 ?DTx&1? i+2 word corpNNPSV-¿NN5^I VBDtVVBNh|?5JJI +INtV?NNPv/@i-1 tag+i word NN sowingVBGʡENNʡE?i-1 tag+i word VBP sourNNSoʡJJn?NNCli-1 tag+i word -START- eniNNP'1Z?JJ'1Zi-2 word circleVBZvVBzG?RB-NN;On?JJ;On¿i-1 tag+i word CC lotsNNS+?VBD+ i-2 word gm NNP"~j?RB333333?VBD`"ֿIN(\VBP%CNNS&1?JJR/$?NNPSjtNN~jt?RBR/$ѿVBN!rh?JJ333333? i suffix mowVBPGzVBD%CVB&1?i-1 tag+i word DT barteringVBZA`"VBGK7A`NNFx@ i-1 word bothRPx&1VBDI +?INn?NNbX9VBPV-?NNSK7VB!rhNNPSFxJJ|?5^ʿFWK7?NNP&1@VBNK7CDףp= RB +?i-1 tag+i word JJ gimmickNNK7?INK7i word foreverVBy&1RPxRBL7A`@NN/$RBRʡEJJp= ףؿi-1 tag+i word VBN aroundRBw/ĿRP+ÿVBNK7JJnINZd;@i-1 tag+i word , giftsJJSQNNSQ?i-1 word clearWDTClEX|?5^?RB;OnIN/$@JJRQNNZd;O?i+1 suffix tilVBP㥛 ҿWDTZd;ORB5^I @NNSGz?NNPV-տNNMb?DTjt?JJHzGVBNMbX9@INtV?VBףp= VBD#~j?PDT/$POSVBZ\(\׿RP-!i-1 tag+i word JJS industrializedVBNGz?JJGzi-1 tag+i word DT varietyNNrh|?JJ rNNP~jt?i-1 tag+i word JJR jointJJK?NNKi-1 tag+i word NN middlemenNNSRQ?NNRQi-1 tag+i word IN graduallyRBd;O?NNd;Oοi-1 tag+i word NN sovietJJ-?NN-i+2 word reported INQ?NNPSZd;OJJjtVBD333333VBN333333@NNS;OnNNPv/VBGףp= NNl@FW;On?RBQi+1 word transactionJJrh|@NN(\VBNxi word everydayVBZd;OJJl @NNV- i+1 word gas CC+JJRd;O?VBP|?5^JJnIN-?DTB`"?NNPS rhVBGZd;O?NNL7A`?FWK7A`RBRd;OοNNS/$NNPMb@ i-1 word f.NNP= ףp=?NN#~jVBDX9vi-2 word roommatesNNK7?NNPK7i word coordinateVB+?VBP+ۿi+2 word gatesRBd;O?JJd;OINd;O?WDTd;Oi+2 word gradesFWMbJJRQ?JJ~jti-1 tag+i word -START- throughVBZsh|?IN r?NNP\(\׿i tag+i-2 tag : JJ NNOnVBP\(\WDTZd;O?INZd;O?VBZx&PRP$oʡ?VBGq= ףp?RBA`"?DTZd;OݿJJ"~?VBNClCDoʡVB\(\? i-2 word col.RB9vNNP9v?i-2 word splitNNPSӿJJ"~?CDp= ףNNGzRBx&?i-1 tag+i word RB droppedVB+VBN-?VBD^I +׿i word vanitiesNNPSv/NNSB`"@NNPuVi word caribbeanNNPSX9vNNjtNNPK7A@i-1 tag+i word CC protectVBZV-VBGzֿVBPFx?i-1 tag+i word NNP cocktailsNNSZd;?VBZZd;׿i+2 word treatingVBG-?NN- i word allegeRBNbX9VBZ"~VBNbX9?VBP}?5^I?NNGzi-2 word burningJJS㥛?NNS㥛i-1 tag+i word DT runnerRBRDlNNDl?i+1 word courseJJ-?JJR#~j?NN-޿RBR#~ji+1 word another IN`"DTnVBZ/$?VBX9v?VBGT㥛 ?NNGz?CCJ +RPd;O?CD/$VBDbX9POS\(\VBNbX9?RBv/?i word scottishJJv?NNPv߿i word joblessVBN-NNʡENNPrh|JJd;O @ i-1 suffix mxNN333333?JJ333333i-2 word sendsVBN(\JJ(\?i-1 word reportedlyVB rh?VBNv/JJ rhѿVBDv/? i-2 word ridNNSx&?NNjtJJZd;?NNP&1i-1 tag+i word CC hintedVBDzG?VBNzGi-1 tag+i word , allegeNNGzVBZ"~VBP}?5^I?i+1 word parenthoodVBNGzNNPGz? i suffix DNANNPS)\(NNV- @NNPL7A`i+2 word correctingNN{Gz?RB{Gzi+1 word affidavitsNNS/$VBNL7A`?JJ(\?i+1 word bondholdersVBS?NNSi-1 suffix ansRBx&1FWMbVBNRQ@NNPw/VBDy&1̿VBPM@VBGvJJRSӿVB~jtؿRP7A`?NNSHzG?INGzVBZK7?NNp= ףRBRZd;O߿JJ ףp= @DTjti-1 tag+i word NNP !HYPHEN JJX9v@VB rhѿCD\(\@NNSjt?NNP)\( PRP$-NNPS1ZdVBGw/NNsh|??VBDK?RB ri+1 word statutesWDT(\NN(\?i+2 word resetVBPʡERPd;OֿJJNbX9?NNףp= i-1 word ultravioletNNSMbX9NNrh|?JJ/$ݿi word confirmVBʡEVBPlq@NN)\(JJMbi-1 tag+i word DT careeningNN^I +JJbX9޿VBGw/? i word moxieNNSB`"NNB`"?i+2 word mostlyVBZ!rhNNS!rh?NNNbX9?JJʡE?NNPףp= i+2 word birthNNffffff?NNPffffffi+1 suffix tonJJZd;O?NN rVBZ ףp= ?DTX9vNNPSx&1VBGZd;?VBPA`"?WDTnNNS ףp= CCE?RBnVBNQ?INI +@NNPCl?VB r?VBDGzi-1 word filedRB'1ZVBG/$JJX9v?RPx&1NNZd;?i-1 tag+i word POS helplessJJn?NNni-1 tag+i word JJ enoughRBMbX9@NNuVINJ +JJ)\(?i-1 tag+i word -START- stoneNNP+?CD+i-1 tag+i word NNS acceptableVBP(\JJ(\?i-1 tag+i word VBG goesVBZZd;O?NNPZd;Oi-1 word providentNNV-NNPV-?i-1 tag+i word ( rousselJJS㥛NNPS㥛? i word digsVBZDl?NNSNbX9?JJ-NNQi-1 tag+i word POS atmosphereNNSQNNQ?i-1 word flexibleNNPHzGNNSX9vNNl@RBQi word bancsharesNNPS#~jNNP#~j?i-1 word nevadaVBNZd;JJ rhٿVBDCl?i-1 tag+i word JJ commentingVBGNbX9?NNNbX9 i suffix iew NNSˡEVBK7A?JJ-NNFx @``VBP}?5^I@RBClVBZGzVBD333333NNPS?i-2 word deficitVBtV?NNCl?RBRffffffRBS㥛i-1 tag+i word DT studiosNNS/$?NN/$ٿi-1 tag+i word VBP repaidVB|?5^NNSV-VBNV-?VBD|?5^? i pref1 PVBG;On?VBNX9vJJp= ףLS +NNSSINsh|?JJRS㥛FWCl׿VBZ}?5^INNPGz+@VBʡE?CDEDTy&1VBDsh|??WRBK7PDTMDsh|?NNPSQ @VBPˡENNmRBV- CCK7A`?i-1 tag+i word JJ testimonialJJS㥛?NNS㥛i-1 tag+i word NNP flightsNNS+?NN+i-1 tag+i word WDT citicorpVBn@NNPni-1 tag+i word CC operatingVBGv/տNNv/?i-1 tag+i word VBP buildingNNq= ףp?JJ ףp= VBGףp= i-1 tag+i word IN excessiveJJ&1?NN&1i-1 tag+i word DT remoteNN&1 NNSEJJ)\(@i-1 tag+i word VBP interestedVBN!rhJJ!rh?i word whetherCCxRBRL7A`INL7A`@DT"~jNNPrh|?WRBʡEi-1 tag+i word PRP$ aloftRB-?JJ-i-1 tag+i word -START- saNNuVJJK7NNPA`"?i-1 tag+i word VBG clearRBFx?JJv/NN~jt i-1 suffix j.NNPST㥛 NNPT㥛 ?i-1 tag+i word RB damagingVBGV-JJ%C?NN;Onڿi word grayingVBGn?JJClNNFxѿi-1 tag+i word JJ economyNNMbNNPMb?i word notableWDT+JJE?NNDl i word ballJJRNbX9NNNbX9?i-1 tag+i word CC expireVBh|?5?RB1ZdNN?5^I ҿ i-1 word knitVBGffffffJJffffff?i-1 tag+i word JJ endNNx&1?RBI +޿NNPi word glitteryNN~jt?JJ~jti+1 word totalingVBZHzGٿNNS/$@JJX9vNNPX9vi-1 tag+i word VB justifiedVBNV-?JJV-i word statingVBGS㥛?NNS㥛i-1 word trendNNSףp= NN(\WDTQ?RB(\?INd;OVBZףp= ?DTL7A`пi word breathyVBNSۿJJS?i+1 word figureVBGClRBSNNNbX9ȿVBNS?JJ(\?INʡEDTʡE?i-1 tag+i word CD megabyteNNSjtNNv/?JJV-i+1 word hollywoodVB^I +ǿRP|?5^JJ^I +?IN|?5^?i-1 tag+i word VBG fiberNNoʡ?JJoʡi-2 word mechanismVBQ?NNQi-1 word outputVBZ!rhNNS!rh?RBh|?5?NNh|?5i word declinedJJI +VBDt"@VBZnNNST㥛 VBN?5^Ii-1 word pulledRP~jt@RBRQ?NN|?5^INJ +DTx&?i word disagreedVBNK7A`NN^I +VBDPn @ i-2 word too VBZ;On?JJL7A`@NN(\CCJ +ٿVBNjtRBJ +?VBnVBDI +?VBPn?NNS;Onڿi+1 word unexpectedlyNNPS|?5^NNSZd;@NNPni-1 word surfacedVB rhVBP rh?RBR5^I ?JJR5^I  i suffix xthJJRClJJ@NNʡE RBK7?NNPMb?i-2 word investigationVBN +VBD +?i-1 tag+i word -START- leadJJˡE?NNPˡEi-1 tag+i word VBP exportedVBN^I +?JJ^I +i+1 word techniqueCDV-?JJ5^I DT(\?NNSKVBG|?5^NN`"@CCX9vֿi-1 tag+i word DT mineralJJ"~NN"~?i-1 tag+i word MD sayVBV-?NNPV-i word newhouseNNMNNPM?i+1 word volume IN/$NNSX9vVBGxNNA`"@VBDV-?JJS rh?JJʡE@NNPSSRB rhVBNT㥛 ?VBZ rNNPQi-1 tag+i word JJ divergentJJ)\(?NN)\(ܿi word facultyNNSNN?i-1 tag+i word CC miningNNK7?JJGzVBG1Zdi-1 tag+i word TO lureVBd;O?JJd;Oi-1 tag+i word WRB strokeNNl?JJli-1 tag+i word IN republicanNNP|?5^JJ|?5^?i-1 suffix ct.CDsh|??NNPsh|?i+2 word negotiatingNNS\(\?NN\(\ i word mirageNNPS#~jNNGzNNPʡE@i-1 word hearingNNQ뱿RPd;OVBNMbX?RBZd;INjt@ i word walesVBZK7NNPS-NNSZd;NNP5^I @i-1 tag+i word NNP mesaNNPA`"?NNA`" i-1 word hitVBNp= ףRB(\?IN"~jDTK7A`?NNSQ?NNPNbX9JJ-?NN|?5^i-1 tag+i word RB embezzledRBrh|VBDrh|?!i-1 tag+i word NNP pharmaceuticalJJ rh?NN"~jVBZffffff i suffix lay RBSVBP'1Z@JJ"~NNPGzVBtV @NNQ@VBD(\@RBR"~VBZ9vNNSGzi-1 tag+i word , averageVBPh|?5οJJh|?5?i+2 word consistentVB/$?VBP/$RBˡEINˡE?i+1 word moratoriumJJʡE?NNʡEi+1 word followed POSGz׿JJuVINMbXVBZX9vNNS?VBP r?WDTMbX?NNSMbVB+i-2 word perestroikaFW9v?NN9vi-1 tag+i word VBZ careVB/$?NN/$ݿi+1 word prospectusDTn?NNnѿi-2 word support RPX9vPDTMbRB/$?IN?DTMbX9@NNSZd;?NNPQJJ333333NNx&1?CCGzVBN~jt?VBZni+2 word weepersVB^I +ǿJJ^I +?i+2 word miniscribeVBN +?NN +i-1 word whoopingNN~jt?JJ~jti word surveysRBʡENNSzGa@JJZd;NNsh|?NNPMbX9i-1 tag+i word WP foundVBPzGVBDzG?i word fortuneNNʡE?JJʡEi-2 word expected VBD-?VBP%C?NNSjtVBK7A @VBG ףp= RBMNN~jtVBNtVJJR?JJx&1VBZX9v?NNPffffff?i-1 tag+i word RBR crowdedNNSx&VBN~jt?JJi-1 tag+i word `` trainingNNl?JJli word counter VB'1ZNNPS(\VBDSJJRClJJQ?NNP(\?RBMb @NNRQRBR+VBP(\@VBZףp= i-1 tag+i word CC tightCD-JJ-?i+2 word escapeNNZd;?JJZd;i-1 tag+i word CD navyJJX9vNNPX9v?i-1 tag+i word NNP mushroomsNNS{Gz?NNP{Gzi-1 tag+i word IN automobileNN/$?JJ/$i-1 tag+i word `` workoutNN&1?JJ&1i+1 word livesNNQ?JJQi word citizensVBx&1NNPS+?NNbX9VBZjtNNSʡE@NNPMbXٿi+1 word enthusiasmVBNd;O?VBDd;O i suffix rtoNNPSK7NNPK7?i-1 word driverVBZ}?5^IVBK7A`@VBP+NNK7A`i-1 tag+i word DT soberingVBGv/JJv/? i suffix 386JJx&1CDx&1? i+2 word oatNNQVBNQ?i+2 word lloydNN;On?NNPS$CNNP$C?VBP;Oni word entriesVBZ(\NNS(\?i-2 word perpetuateJJx&1?NNx&1i-1 tag+i word , meadNNP1ZdNN1Zd?i-2 word facesNNMbX9?VBGZd;O?JJS㥛i-1 tag+i word DT giantNNSuVJJ`" @NN-NNPK7A?i-1 tag+i word NNP poisonNNtV?NNPtVi word ticketingNNK7AVBGK7A?i-1 tag+i word PRP realizesVBZK7?VBPK7i-1 tag+i word NN attendantNN5^I ?JJ5^I  i pref1 ONNSLS/$RBnPRPbX9?WRBV-CDK7ANNP rhQ(@VBG(\VBP!rhDTv/RP ףp= ?VBD rh VBK7APDTZd;OJJRGz?VBNˡESYMjtFW%C?JJQ NNSI +CCNbX9@INK7A@NNPSS@PRP$Zd;UH}?5^I @VBZx&1 i word turnsVBZ rh@VBPSۿNNSFxNNSVBDMbi-1 tag+i word `` aggravatingVBGEJJE@i-1 word boardsWDTV-?JJx&1INMb?i-2 word everyoneRBR ףp= ?RBK7VBNT㥛 ?NNEJJT㥛 i-1 word signaledDT rh?NNPQWDTMbXRBDlIN9v?i+1 word studyingDT= ףp=NNPS/$NNS/$?IN= ףp=?i-1 tag+i word NN messageVBNy&1NNy&1?i-1 tag+i word VBZ malpracticeJJffffffNNPؿNNv/? i word remadeVBZd;@VBNZd;i word beltwayNNPSx&NNPx&?i word authorsVBZ+NNS+? i+1 word took NNDl?JJ+INNNSM?NNP?5^I ?VBNDlWDT +?VBZQDTw/i-1 tag+i word CC regularJJ)\(?NN)\(i+2 word inventNNX9v?JJX9vi-1 word mediaNNS1Zd?VBV-RB(\ſNNx&1@FWffffffVBPw/ĿJJˡE?INK7Ai-1 tag+i word JJ guineaJJffffffNNffffff?i-2 word blanketVBZA`"NNSA`"?i-1 tag+i word CC burnsVBZSVBoʡNNSffffff@VBDp= ףi+2 word muzzlesRBRjt?JJRjti+1 suffix indVBNoʡ?VBPh|?5JJ1ZdWPlIN?NNPV-FWGzVBZ|?5^RB{Gz?VBD)\(?NNS rh?WDTl?RPp= ף?DT̿VBGENNףp= ?VBh|?5? i+1 word need RBV-?VBZ-VBN/$NNSQ?NNPtVVBFxѿNNPSX9v?VBGMb@JJ rhNNV-i-1 tag+i word NN declaresVBZףp= ?NNSףp= i word strippedVBN1Zd?RB1Zdi-1 tag+i word NN levelNNS+RBRv/NN"~?i+1 word sculptureNNZd;?JJZd;i-1 tag+i word NNPS maintainVBPw/?NNPw/i-2 word recessionJJ(\?RB(\ݿi-1 tag+i word NN reportedVBN +?VBD + i-1 suffix iiNNK7A`?JJK7A`i-1 tag+i word IN bankruptJJX9v?NNX9vi tag+i-2 tag CC VBD VBClNN rVBDV-@VBNQ CD%C?VBPI +?RB(\ؿIN(\?DT#~jԿJJoʡſPDT#~j?NNSffffffƿi-1 tag+i word , expandedVBNn?JJh|?5VBDQi-1 word danceNNS#~jNNV-?RBףp= ۿi-1 tag+i word NNS separatelyVBPbX9RBbX9?i+1 word supportsWDTy&1?INy&1ܿi-2 word clear VBGK7A`?JJzGNNK7A`JJSCl?CDoʡVBPClRBzG?PRP$oʡ?NNP'1Z?INOnDTOn?NNPS'1Zܿ i word bronxNNPS&1NNP&1?i-1 tag+i word VB ampleJJGz?WPGz޿i-1 tag+i word NNS invadeVBˡEVBPQ?VBN +i-1 tag+i word , completeJJ?NNi+2 word mortgagesJJRT㥛 ?JJZd;?RBRT㥛 NNZd;i+2 word belongingJJʡE?VBGʡE i word smuNNPS&1NNP&1?i word tremendouslyRBʡE?JJʡEi+2 word infrastructureVBG ףp= JJtV@NNKi-1 tag+i word JJ xinhuaNNFxٿNNPFx? i-2 word paoVBNJJ?i-1 tag+i word IN specializedVBNbX9JJbX9?i word counteredVBNV-VBDV-?i+2 word arbitrarilyVBI +?JJI +޿i+1 word gains NNˡEĿVBD ףp= ?VBPzG?JJ|?5^?VBZSNNPNbX9VBl¿JJS!rh?VBN#~jPOSS? i word undulyJJV-RPRQRB^I +@ i-1 word ironNNZd;O?NNPʡE?IN!rhNNPSoʡſRP!rh?i+2 word neurosurgeonPRPSJJS?i-1 tag+i word RB alternativeNNʡE?INʡEi-1 tag+i word VBD adviceNN&1?RB&1ڿi word readilyJJ"~jNNHzGVBZMVB(\RB;On @i-2 word missilesJJx&?NNx&i word inflowsVBZx&NNSMbX9?NNK i-2 word loneNNPSZd;NNS(\NNPw/ @i-1 tag+i word NNP cowsVBZV-NNSV-?i+2 word reinsuranceVBN(\VBD(\?i-1 word frustratedNNP%C?JJ%Ci+2 word increase NNS?VBD/$ݿCDx&1?RBB`"JJRJ +DT+?VB rh?JJSݿPDT(\?VBN㥛 VBP?INV-?i+1 word refusedNNSzGNN ףp= NNP(\?i-1 tag+i word RB crookedJJtV?VBDtVi-2 word gandhiVBGuV?JJuVi+1 word documentsNNQ?NNSQVBNNbX9?JJQ?VBDZd; i suffix oamVBP$C?NNʡE?JJʡEVBD$Ci-1 tag+i word NNS fattenedVBNtVVBDtV?i word observesVBZS?NNSSi-1 tag+i word NN recordsVBZjtNNS+?NN+ӿi-1 tag+i word NNP consultantsNNPS~jt?NNS`"NNPV-i-2 word gruberovaVBʡERP?5^I ?RB/$NNV-VBD9vڿJJ{Gz?i-1 tag+i word JJ officioNNjt޿FWjt?i tag+i-2 tag , VBZVBZd;?WRBM?VBDDl?INZd;OVBN㥛 NNS'1Z?RBQ?WDT/$WP/$?NNP/$NNPSh|?5?NNK7ٿCDvPRPd;O?JJʡEVBPy&1?VBZV-?i-1 tag+i word VBZ hiringVBGV-ҿNNV-?i-1 tag+i word DT bibleJJl?NNli-1 tag+i word -START- dresdnerNN&1NNP&1?i-1 tag+i word RB austereJJ +?RB +ֿi-1 tag+i word : announcedVBNffffffVBDffffff?i-1 tag+i word POS principalsNNSMb?NNMbؿi-1 tag+i word DT dealershipNNGz?JJGz i-1 word at&tVBDtV?NNStVi-1 word railroadNNS-?NN-i-1 tag+i word IN diabeticsNNS rh?NN rhݿi-1 tag+i word TO prolongedVB㥛 VBNn?JJ|?5^ٿi-2 word examiningVBG\(\NN\(\?i+1 word acquisitionsJJL7A`пVBPS㥛?VBN&1?NN/$ INʡE?i-1 tag+i word VBP explainVB;On?NN;Oni-1 tag+i word `` enterprisesVBZ"~NNS"~?i-1 tag+i word DT fairfieldNNPS`"NNP`"? i+2 word gen.INףp= RPףp= ?i-1 word molecularNN= ףp=?JJ= ףp= i word bordenINjtNNPm?JJZd;O i-1 word richJJh|?5VBPPnNNPn?RBh|?5?i-2 word anchormanNNPS/$޿NNP/$?i-1 tag+i word NNP germanNNPˡENNPS^I +׿JJ|?5^@NNʡEi word matchingVBGZd;OJJDl@NNtV i+1 word plusVBP rhJJOn?NNMb i+1 word hugeRPrh|?RBV-?VBPS㥻JJnIN}?5^IVBS㥻?i-1 tag+i word RB fujisVBV-NNPSV-?i-1 tag+i word NNP lostVBZʡEVBNDlVBDʡE@i-1 tag+i word VB shoppingVBG?NN i-1 tag+i word -START- transportVBS㥛?NN|?5^NNPrh|i-1 tag+i word PRP standingVBGX9v?JJPnNNEп i-2 word peakDTd;O?WDT/$INoʡi-1 tag+i word IN countlessNNX9vJJX9v?i tag+i-2 tag FW ,NNS\(\?NN\(\i+2 word nicholasVBP rhٿNN rh? i word comsatNNPSuVͿNNPuV?i+2 word michaelVBPv/?RBFx?NNSK7NNPI +?JJv/NNZd;OJJRd;O?RBRd;Oi-1 tag+i word NNS longVBP +RB'1ZĿJJB`"?IN-i+2 word convertedJJ+NNP+?i-1 tag+i word RB infringesVBZ(\?NNS(\ i+2 word mayCC333333ۿVB7A`NNP+?NNPSK7AVBGDlJJR(\?EX-?RBv/NN㥛 WDTZd;O JJ+η?VBZV-DT+@NNS}?5^I@PRP$-PDTbX9JJSˡE?VBNX9v?INGz @VBDQRBRSi-2 word constitutionalVBNMbX?NNMbXi+1 suffix asiNN/$NNP/$?i word environmentalistsVBZX9vNNSJ +@NNCli-1 tag+i word VBP nerveNN rh?JJ rhi+1 suffix kovNN%CܿNNP%C?i word scatteredJJx&?VBDuVVBNMbпi-1 word brightVBGZd;O?NNZd;OJJm?VBNmi-1 tag+i word VBN raisesVBZZd;O?JJZd;Oi-1 tag+i word DT rectangularJJJ +?NNJ +ɿi-1 tag+i word -START- judgesNNPSʡE@NNSZd;ONNPZd;i-1 tag+i word IN schwinnJJ +NNP +?i-1 tag+i word VB temptedVBN rh?JJ rhi-1 tag+i word CD endedVBNnJJxVBD +? i+2 word dowNNoʡVBDS㥛?VBNS㥛VBP`"JJ ףp= INjt޿WRBˡE?VBG%C? i word stevenRBMbX9NNPMbX9?i word jamaicanJJ"~?NNP"~i word implementedVBNn?JJni+1 word bonesJJJ +?NNJ +i+2 word smoothIN9vRP9v?i-1 tag+i word DT lightestJJS= ףp=?JJ= ףp=i-1 word extraordinaryNNSKNNK?i word regardlessRB/$#@JJR"~jNNC CDL7A`i-2 word halleNNPSq= ףpNNPq= ףp? i suffix tilVBZQINQ? i word vansNNPSʡENNSn?RBoʡi-1 tag+i word IN federatedVBNDlNNPDl?i word revisedVBN/$@JJx&RB$CVBDQi+2 word merchantJJx&?NNx&ѿi-1 tag+i word IN femaleJJrh|?NNrh|i-1 tag+i word CD excaliburNNZd;NNPZd;?i-1 tag+i word TO makingVBK7AVBGK7A?i+2 word broadlyNNx&1?JJx&1i-1 tag+i word TO auditionNN/$VB/$?i-1 word mergingVBN^I +?JJ^I +i-1 tag+i word RB knocksVBZS?VBPSi-2 word officesVBZ^I +VBn?VBPZd;O?NNSX9v?NNL7A`i word prerogativesNNSOn?NNOni-1 tag+i word VB taperingVBGv/?JJv/i-1 tag+i word NNP subcompactsNNS~jt?VBZ~jti word translatedVBN|?5^?VBD|?5^i-1 tag+i word DT farmerNNI +?JJRp= ףJJ"~ji-1 tag+i word VBN africanNNP?5^I ?JJ?5^I i-2 word hopsRB rhIN rh? i-2 word toddNNS~jtпNNP~jt?i-1 tag+i word VBP sayVBB`"?VBPK7JJSi-1 tag+i word JJ laborNN/$NNP/$?i-1 word alikeVBPzG?NN~jtVBMi+2 word addisonCCQ?DTQi-2 word masonryVB+׿VBG/$NN5^I ?i word representVBM?NN&1VBDV- VBPClg@JJmVBZv/i-1 word pricedRPnJJw/NNw/?JJRrh|RBR$C?RB\(\INZd;@i+2 word financialCDV-VB!rhRB"~?LS-ӿIN~jt?NNPS`"JJ}?5^INNSMb?RBSV-?DTK7A`VBGtVNN +?VBD+CCK7A`?VBNx&POSV-?VBZB`"NNPh|?5?i+1 word sellsINK7NNPQ@NNPS\(\JJV-NNK7AWDTK7?RBV-?i-1 tag+i word NN optimisticJJ%C?NN%Ci-1 word shortVBP!rh̿JJ㥛 ¿NNSMbNNPK׿NNPSMbXRBʡEͿNNB`" @VBD`"i-2 word systemVBZK7?NNS ףp= ?RBX9v@UHzG?VBDS㥛VBP rhVB1Zd?VBNQֿWDTEJJ}?5^IܿIN`"NNPSVBGQ?NN1Zdi-1 tag+i word NN improperlyRBq= ףp?NNtVJJ~jt i-1 tag RPPRP7A`RB/$VB;OnEXQPRP$7A`?VBDNbX9JJ;On?DTHzG?WDTSVBZV-NNPS?CDjtƿVBN&1ҿRBS1ZdJJRNbX9PDT!rhRBRCl@IN ףp= JJS1Zd?VBG?5^I ?RP}?5^I?NNCl׿NNSI +? i-1 word kRB^I +NNPbX9 @VBPףp= NNGzi-1 tag+i word VBG detroitNN9vNNP9v?i-1 word parentsNNPSV-NNPV-?i-1 tag+i word DT gloomyJJ㥛 @JJR/$NN i-1 word fuseVBZ!rh?NNS!rhԿi+2 word unchangedNNmNNPm? i suffix dge VBK7A`?RBZd;OFWRQJJMbX9 NNSlNNPSbX9WRBKNN9v@VBD(\VBPCl @NNPRQ?i-1 tag+i word CD sumNN{Gz?JJ{Gzi+2 word coveredVBZGzVBˡENNK7?JJK7VBDjt@i+1 suffix apyVBKJJK?i word arrestedVBNQ@JJX9vVBDʡE i+2 word putsRB-?CC-i-1 tag+i word '' thoughRBnINn?i-1 tag+i word NNP formerlyVBZ{GzRB{Gz?i word parliamentaryJJd;O?NNd;Oֿi-1 word responseWDTQ?INQi-1 tag+i word DT aquamarineNN?5^I ?JJ?5^I ҿi-1 tag+i word NN smelterRBR-NN-? i word errataNNw/NNSw/?i-1 word unitedNN rh@VBD#~jĿJJS㥛?VBZ+NNSClNNP`"?NNPSV-?VBG'1Zi word technologyNNPX9v?NNPSx&NN= ףp=?JJvi-1 tag+i word DT spokaneNNPMbP?NNMbPi+2 word repressingNNSB`"?NNB`"i-1 tag+i word -START- pwaNNPS1ZdNNL7A`NNPK@ i suffix OakVBffffffNNPffffff?i-1 tag+i word VBD unperformedVBNClJJCl?i+1 word performerNNˡEJJˡE?i-2 word plainVBNm?VBDmi-1 tag+i word JJ worldNN"~j?NNP"~ji-1 tag+i word JJ tidalJJˡE?NNˡEi-2 word thinkingVBG/$?RBClJJQοVBZQ?NNQ?i-1 tag+i word NNPS acceptancesNNPS'1ZNNS'1Z?i-1 tag+i word IN thatWDTx& RB(\INA`"DT7A`!@NNSQJJE i-1 word sendNNSS?NNK7?FWoʡPDTd;OJJ+?VBZ/$i-1 tag+i word IN overseasNNPS-JJw/@RBףp= i-2 word corpsNNPSQ?NNPQ i word treatVBPMbP?JJrh|INq= ףpݿVBZ= ףp=VB&1?NNMb?i+2 word legislativeJJ7A`?NN7A`¿i+2 word belzbergsVBMb?VBP?5^I ڿPDTX9vi-1 tag+i word VBN muchJJS㥻RBS㥻?i-1 tag+i word JJ shelfNNh|?5?JJh|?5i-1 tag+i word VBG tideNNX9vNNPX9v? i word hondasNNPy&1NNPSy&1?i-1 word disagreeDT$CIN$C?i-2 word communitiesVBGzVBGףp= JJ(\?i+2 word breederJJGz?NNGzi+1 word cooganVBN$CVBD$C?i-1 tag+i word -START- aboutRBS?INSi-2 word !DIGITSUHx&RP+?JJRtV@NNSGz?NNoʡ?PDT rh?RBR+ηVBZxDTS㥛ؿ$T㥛 пVBp= ףVBGNbX9CD|?5^?NNPK7A`?JJx&?POSMbX9FWK7AINh|?5NNPS ףp= VBP-WDTKJJS rhVBNA`"?RB'1Z?VBDMb?EXQCCKi tag+i-2 tag PRP VBN VB;On?RBS?NNtVοJJI +DTMbX9ܿRP rhVBD$CJJRA`"?RBRA`"VBPCl?INZd;?VBZi-1 tag+i word IN grantedJJSVBNS?i-1 tag+i word IN pennsylvaniaNNPSGzNNPGz?i-1 tag+i word JJ activistNN= ףp=?JJ= ףp=i word punishmentNN= ףp=@JJ9vNNP^I +i-1 tag+i word NN twitchVBMbX9?NNMbX9i+1 word worryVBZ/$NNS7A`?NNZd;O?JJZd;ONNPx&1ȿi-1 tag+i word JJ closingNNCl?JJCli+2 word floatingNNPSx&NN|?5^VBN|?5^?VBP rh?VBZ rhNNS-?NNP)\(i+1 suffix tekNNPʡE?JJʡEi+1 suffix aysWP-?CD?5^I ?NNZd;O@RBR +RBFxNNSI +ƿVBZ-JJy&1?IN(\VBG㥛 JJR1Zd?WDTʡE?DTy&1?NNPQ @VB+׿NNPSQRP`"?VBP(\?i-2 word indictmentPRPx&?JJ&1INGzDTGz?PRP$x&VBN&1?i-1 tag+i word VBN legalizingVBGMbX?JJMbXɿi-1 tag+i word , contendsNNS~jtVBZ~jt?i+2 word minuteVBNQ?JJQIN)\(VBZ㥛 NNSn@i-1 word askingNNX9v?JJX9vi-1 word headedRP|?5^RB|?5^?i word maneuverNNSx&NNffffff@RBZd;ONNPA`"i-1 tag+i word NN democraticJJA`"?NNPA`" i suffix useRBx&@FW!rhܿVBDJJR-JJZd;VBZ rNNS@NNS$CNNP^I +׿VBX9v@VBPffffff @RP1ZdJJS?5^I ڿVBNV-INh|?5 @DTQi-1 tag+i word -START- smallDT5^I JJ#~j?NNPZd;i word conspiracyVB#~jNNSrh|NN+ @JJMi word mathematicianNNoʡ?JJoʡi-1 tag+i word NNS workNNSX9vVB|?5^@VBP(\?WDTMbpNNSi-1 tag+i word JJS cottonNNV-?JJV-i+1 word biotechnologyJJzG?VBGOn?VBNzGNNOni-1 tag+i word NN crackdownNNv/?VBDv/i+2 word congratulatedNN}?5^IVBD}?5^I?i-1 tag+i word RB adequateJJsh|??RBsh|?i+1 suffix cle RBRPףp= CDV-?PRPV-VBZʡENNS~jt?NNPK7NNPS?5^I VBGпNN r?JJy&1 @i-1 tag+i word CC urineNNQ?JJQi-1 word wearingNN+?RB/$?INi word plannerVBZNbX9NNףp= ?NNPCl˿ i suffix idyNNjt@NNSQVBN#~jJJI +i-2 word tableNNS|?5^RBK?VBD r?FWףp= JJQVBZ|?5^?i+1 word nicheDTV-?INV-i word belovedJJ"~j?NN/$VBD"~ڿ i+1 word gameVBG+JJlq@NNJJR"~ji-1 tag+i word -START- medicareNNP~jt?NN~jti+2 word rapidINn?NNPuV?MDw/VB㥛 ڿVBGsh|?տNNw/ܿRBI +޿i-1 word scuttleNNSV-?NNPV-i-2 word separateNNSjtNNPjt?VBGV-׿NNV-?VBDSVBNS@i+2 word apparatNNPSy&1?NNSy&1i-1 tag+i word CC olympicsNNPSCl?NNPCli+2 word workingVBQRBL7A`?VBD#~jVBN#~j?VBPx&1?JJL7A`NNSV-NNPCl?i-1 tag+i word VBG widespreadJJS㥛?NNS㥛i word mailingNNL7A`?VBGL7A`пi-1 tag+i word DT fittingVBGZd;OJJ;On?NNZd;Oi-1 tag+i word VBN consolidatedVBN~jtJJ333333ÿNNPK7A`?i-1 tag+i word DT falseJJMb?NNMbпi+2 word purchasersVBPJ +?INJ +i-1 tag+i word JJ mezzogiornoJJtVNNPtV?i-1 word pictureVBHzG?NNSmNN㥛 JJ%C?VBZMbp?i tag+i-2 tag NN -START-VBGCl?JJw/VBZ`"?RB`"NNS rȿCC?RBR-?NN-POS333333?CDjt?JJR-ƿVBD)\(VBPsh|?ݿDT333333?RPtV?PRPQINv/?NNPS?VBNWDTX9vNNPJ +?VBCl?i-1 tag+i word DT chairsNNS~jt?NN~jti word catalogNN/$?JJ/$i tag+i-2 tag JJR CDNN"~@CC333333JJZd;INʡE?NNSrh|NNPNbX9?VBGHzGRBJ +i word financiallyRBE?JJEi word outfieldNN)\(?RBRQVBNx&1 i word tinNN(\@JJ(\ i+1 word agVBGGzJJoʡNNPB`"?i word businessmanNNjt?JJjti word interviewerNNˡE?RBˡEi word lurchedJJx&1VBDx&1?i-2 word declineJJzG?RBʡE?INʡE޿VBzGi word caesarsNNPS'1ZԿNNS;OnNNPS㥛?i-1 tag+i word `` campeauNN|?5^NNP|?5^?i+2 word protectingNNSMbVBN/$?NNMb?VBD/$i-1 suffix oil VBD ףp= VBNx&1?JJw/ԿINp= ף?RB5^I  NN r?VBZnNNSGz?VBx&?VBPGz?i-1 tag+i word MD sterilizeVBV-?RBV- i word aetnaNNx&1?NNS +RBx&1JJˡEܿNNP-?i word support VB-@VBDClVBN+VBPMbXJJZd;NNn@RBy&1VBZvNNSn i word delorsNNPSV-NNPV-?i-1 word partiallyVBN~jtx?JJ~jtxi-1 tag+i word JJ centralJJrh|ϿNNPrh|?i-1 tag+i word JJR existVBPS?NNSi-1 tag+i word NN sugarVBZ9vNNSPnNN rh?i-1 tag+i word VB britishNNP7A`?JJ7A`i+1 word sectionNNMb?VBN~jtRBENNP!rh?VBGFxJJCl?i-1 word vaticanNNv/ݿNNPv/?i-1 tag+i word NNS miningNNףp= ?JJMbPVBG+i+1 word industrialVBT㥛 пJJ(\?NN +οVBNClۿi+1 suffix nriVBPMbXNNMbX? i-1 word lushNN\(\?JJ\(\߿ i suffix mudNNSClNNCl?i-1 tag+i word DT bidNNPףp= NNS9vNNn @JJx&VBD1Zdi-1 tag+i word DT historicJJCl?NNCli-1 tag+i word JJ municipalsNNS\(\?NNP\(\ i word grimlyRB{Gz?NNS㥛JJQi+1 suffix ptyPRP$K7A?RBh|?5NNl?PRPK7AпJJlINh|?5? i word debateVB}?5^I?NNX9@VBP}?5^IJJJ +DTZd;ONNPCli-2 word consensusVBZw/?NNSw/Կi+2 word acquiringNNPS;On?VBDPnVBN&1RBR rh?JJv/@JJR rhNNP;Oni+2 word willfulNN?VBGi-1 tag+i word NN insurerNNS(\ſNN +?VBZ/$VBPMbX9Կi-2 word postponeVBGZd;ONNZd;O?JJuVNNPuV?i-1 tag+i word DT fastestJJSbX9 @NN$CJJGzi-1 tag+i word NN droveVBDMb?VBPw/IN$Ci-1 word itemsWDTCl?VBNv?IN333333?VBDS?VBPi+1 word temporalJJMbX9@NNPMbX9 i word jakeVBQNNCl?JJV-׿NNPq= ףpտi-2 word whistledNNS^I +NN^I +?i-1 word penaltiesVBN\(\?VBD\(\i+2 word consumersJJjt?VBZ/$?NNS/$NNˡE?FWˡEVBNjtƿi-1 word swedenVBD|?5^VB|?5^?i-1 tag+i word JJ uniformNNSClNNCl?i-1 tag+i word NNP authorsVBZ+NNS+? i word scrapVB/$?NN/$i+2 word moreoverNN?JJi-1 tag+i word JJ depositsNNSoʡ?NNoʡݿi-2 word acquirerDTEJJʡE?NN(\i-1 tag+i word , searsVBZMbNNPMb?i-2 word ambivalentNN5^I ?JJ5^I  i word probeNNSvNNv? i+2 word r.i.NNS㥛NNPS㥛?i-1 word lecheVBZZd;ONNPZd;O?i word congestiveNN333333JJ333333?i-1 tag+i word WDT discussedVBP\(\VBD\(\?i-1 tag+i word NN brianJJQNNPQ?i-1 tag+i word -START- hotelNNQ?NNPQi word fiduciaryJJZd;?NNZd;i-2 word rollingRPx?NNq= ףp?VBD(\VBN(\?JJq= ףpͿINxi-2 word authoritarianVBNK7VBDK7?i-1 tag+i word VBZ worryVBP/$?NN/$i-2 word savingsNNPSʡENNS^I +?NN^I +NNPʡE? i suffix MEAJJw/NNPw/?i-1 word policeVB'1ZܿNN rȿVBDJ + @VBNEVBPnRBy&1i-1 tag+i word . recordVBS㥛?JJy&1̿NNPq= ףpi-1 tag+i word VBG dramaNNS?NNSSi-1 tag+i word -START- neverUH/$RB;On?NNPףp= i-1 tag+i word PRP soldVBP/$VBD/$?i-1 tag+i word TO overVBoʡINoʡ?i+2 word airborneUH1Zd?RB1Zd i-1 suffix de NNPJ +@NNPSClJJ1ZdNNPnпVBZZd;NNSJ +VBDFxFWQ@RBNbX9i-1 tag+i word DT movesNN333333NNS333333?i word qualifyVBB`"?RBB`"i-2 word burgerVBZh|?5?NNSv/?VBDOni-1 tag+i word VBG tradeNN`"?RP`"i-2 word requisitionedNNPS333333NNP333333?i+1 word brothersJJzGNNP ףp= @NNPSK7A`VBGS㥛NN}?5^Ii word conglomerateNN@JJi word insistentVBNClJJCl?i-1 tag+i word POS anguishNNNbX9?JJNbX9i word trackingVBG/$?NNSNNP rh? i+2 word tubeRP)\(IN)\(?i-1 tag+i word VB secondJJ?RBi-1 tag+i word VBP individualNNPCl?JJClٿi-1 tag+i word NN outletsNNS\(\?NN\(\i-1 suffix wth INv@VBZRQ?JJMb?NN1ZdVBD;On?VBNK7ACDsh|?տVBP~jt@VBB`"NNPS#~jRBn?NNS +i-1 tag+i word VBZ richVBNZd;OJJ +?NNMbi word subsidizesVBZffffff?JJffffff i-1 word codeRP(\RBףp= INffffff?i-1 word avariciousNN+?RB+i-1 tag+i word VBG vastNN rJJ r?i-1 tag+i word IN ebensburgNNK?JJ|?5^NNPMbX9i-1 tag+i word DT vax9000NNPSNNSRQNN+?i-1 tag+i word NNS involvesVBZ#~j?VBPK7VBNV-i+1 word crimpRBRV-?RBV-i-1 tag+i word DT purchaseNNS/$NNI +@JJ$Ci+2 word princetonVBPh|?5RBRCl@RB~jtؿINQi-1 tag+i word PRP constrainedNNSv/VBNv/?i word sleepingVBGuVͿNNuV?i+1 word poppingVBZ+?NN+i-1 tag+i word NN situationsNNS!rh?VBN!rhi-1 tag+i word JJ photographicJJI +?NNI +i-1 tag+i word IN growingVBG5^I JJl?NNzGi word coattailsNNSV-?NNV- i suffix nutVBZRQVBK߿NNx@VBDGzi-1 tag+i word RB dismissVB+?VBN+i-2 word cooperationNNPA`"?INClNNSCl?JJA`"ۿi-1 tag+i word WDT reliedVBPOnVBDOn?i-1 tag+i word JJ moNNp= ף?JJp= ףi-1 word became VBDI +ֿVBNd;OVBPʡEJJR(\JJS`"?RBRZd;@JJNbX9@VB rhRPd;OֿRBrh|?NN9vi-1 tag+i word VBZ levelVBP rhNNzG?JJZd;?VBNV-i-2 word amazingNNA`"?JJA`"ۿi+2 word producingRBClVBZ9vNNS+?JJ%C?NNMVBNn?i-1 word bostikNNuVJJuV? i word jazzNNSQٿJJ+RB= ףp=VB+NNbX9@i-1 tag+i word IN crudeNNSSJJA`"?NN&1?i+1 word mechanismNNn@JJni+2 word zarettVBZ333333NNP333333?i word conductVBZQVB rh?VBPE@RBKNN ri-1 tag+i word TO backVB~jt?RB~jti-2 word managesJJR rhVBZ rh?i-1 tag+i word DT closerJJR$C?JJJ +RBRv/? i-1 word beerVBNQ?VBZRQNNSRQ?NNP1ZdNNPS1Zd?NNQi-2 tag -START2-"RP;OnNNSV-?VBGv/?VBDFxWP~jtӿWDT-?VBZ5^I ۿDT-?MDJ +?UHsh|??CDˡE?VBPzG$9v?TOx?PRPNbX9INNbX9?VBNS㥛?NNS㥛?CCh|?5?PDTܿNNPS ףp= JJS#~jԿSYMjt?FW`"RB?VBx&1?RBROn?JJR rȿJJE?NNPK7A`WRBbX9ȶ?PRP$sh|??LSoʡ?RBSV-?i+1 suffix ttaNNPףp= ?JJףp= i-1 tag+i word NNP unionNNK7?NNPK7i-1 tag+i word VBN predictVBZ$CVBP$C?i-1 tag+i word DT basicVBP-ƿJJjt?NNMbNNP^I +?i-1 tag+i word `` oeufsVBGzFWGz?INK߿ i word flameVB^I +NNQ@JJ~jt i word clearsVBZHzG?NNSHzGi word canadianNNP&1?JJ!rh?VBNrh|NNL7A`i-1 tag+i word -START- whetherIN'1Z?WRBʡERBRL7A`NNPrh|?DT"~ji word peoplesNNPX9vNNPS/$@JJ+FW)\(RBv/NNSK?i word dictatorialJJV-?NNV-տ i word geeksNNS9v @NNP"~VB'1ZNNPSl?NN'1ZJJQVBZ~jti-1 tag+i word DT targetingVBG{Gz?NN{Gzi-1 tag+i word -START- ratedVBN&1?RBSNNPS㥛i word surprisinglyNN$CRB$C?i-1 suffix ict RBR~jtJJ/$INFxNNS?5^I ?NNrh|?VBZ&1?DTFx?NNPL7A`?VBˡEi-2 word chapmanJJ rh?VBD rhi-2 word regardingNNS㥛?VBGS㥛VBNMb?JJMbȿi+2 word attendedNNPSV-NNS~jtۿNN1Zd?NNP= ףp=?i-1 word theoristsNNPffffffRBffffff?i word counterclaimsNNS㥛 ?NN㥛 i-1 word ridingVBGuVͿJJ#~j?RBlڿi-1 tag+i word CC datedVBNw/?VBDw/ i-2 tag (CDMbP?RBS㥛@DTI +?JJRJ +VBx&1?CC|?5^IN+?PRP$zGNNPS~jt?VBPOn?NN"~j?FW9vҿJJSKVBNJ +@PRPZd;?NNS(\ڿVBG rhJJQkNNPMbȿVBDQVBZzG?i-1 tag+i word IN copperNNSV-JJRI +NNK7?i-2 word understandingJJK7A@VBA`"ۿNNPSX9vRBoʡNNA`"i-1 tag+i word , flooringVBG~jtпNNn?JJ/$i word paralyzedJJ rh@NNSVBNFxi-1 tag+i word DT projectNNSlNNv @JJDlIN/$i-1 word drugsVBD{Gz?VBN{Gzi-1 tag+i word TO mountVB~jtNNP~jt?i+1 word swapsNN#~j?JJ#~ji-1 tag+i word , yieldVBPh|?5޿NN ףp= ?RB`"i+2 word doorsRPʡENNRQVBD/$VBN/$?RB(\@VBGbX9?NNSK7Aпi-2 word recordingJJp= ף?RBp= ף i word ceoNNZd;O?NNPZd;Oi-1 tag+i word VBD routineVB/$JJMb?RB9vi tag+i-2 tag MD PRPMDRQؿRBSx&1?PDT/$JJbX9VB1Zd?VBN-@IN1Zd?VBPlRBCl?NNjtJJS}?5^I''v?NNS+VBDbX9?CClRBRS㥛?DT"~ i word proneRBMbXJJn?VBN= ףp=i+2 word restrictsWDTV-?INV-i+2 word recommendationVBNN?i-1 tag+i word CD manufacturingVBGGzNNGz?i-2 word surveyedNNNbX9пVBDHzG?VBNHzGѿWDTPnINPn?NNPNbX9?i-2 word energeticNNףp= NNPףp= ?i-1 tag+i word JJ communistJJ@NNMNNPKi-1 tag+i word -START- benINNNP? i word tongueNN5^I ?RBK7A`VBZZd;VBPOnÿ i-2 tag )WDT(\µDTZd;NN"~NNSNbX9UH$C?VBNZd;O$^I +@VBlCDjtԿNNPSsh|?VBGrh|?JJHzG?VBZx&1пRPˡEܿPOS1ZdӿRBMbPNNPjtPRP$-?VBPʡE?PRP-IN~jtVBDJ +?i-1 tag+i word IN cropsNNSV-?NNV-JJV- i-2 word pleaVBMbNNSMb?i-1 word repeatedDT(\NNSHzG?NNHzGIN(\? i suffix iliJJxNNPx?i+1 word involvingNNSlNNMbX9@JJx&NNPSi+2 word differentlyVBZHzGNNSHzG?i-1 tag+i word NNS northRBl@NNmINMbi+2 word symbolismVBPMVBN+JJA`"?i-1 tag+i word CC reviewsVBZ5^I ?NNS5^I i-1 tag+i word RB promisedVBDZd;O?VBNZd;Oi-1 tag+i word , specializingVBGV-?NNV- i+2 word whatNNV-?VBDy&1POSq= ףpCDq= ףpNNPrh|VBNbX9ƿJJbX9JJRS?VB@RPK?RB)\(?NNS}?5^IVBPuVWDT/$ӿIN'1ZVBZx&?WP-RBR rhPRPd;OVBGx&1?DTK7@i-1 tag+i word DT elderlyNN)\(JJ`"@RBB`" i-1 word ivyNNPSmNNPm?i+1 word facedVBx&VBPx&?NNS?VBDSۿi-1 suffix quaNNPSMb?NNPMb i suffix UseVBV-?NN|?5^NNPp= ף?i+1 word guiltyVBD|?5^?VB`"?NNV-JJtV i suffix talJJRSVBP|?5^@CCX9vVBDtVοWP9vRBR|?5^VBNGzNNPSI +RP`"NN/$@IN)\(NNPT㥛 ?VBGzJJ\(\'@VBZbX9NNS(\RBq= ףpi-2 word couchedJJ~jt?NN~jtؿi-1 word palestinianVBN|?5^?VBD|?5^i word maximizeVB}?5^I?JJR/$NNOni-1 tag+i word `` developersNNSRQNNPRQ@ i-1 word bulkJJjtֿNNjt?i-1 tag+i word VBZ crucialJJ ףp= ?NN ףp= i-2 word tonightNNGz?NNPGzi word nationwideNNZd;ORBzGJJR@VBP"~ji+1 word branchesVBG~jt?NN~jti word revivalNNFx?JJjtĿNNSQi+2 word nobodyUH#~jNNT㥛 пNNPS\(\?NNSzG?i-2 word pursuingNNSv?NNvi-1 word wallsVBDK7A`?VBQӿVBPq= ףp?NNNbX9IN5^I i-1 tag+i word NNS jammedVBNQ?VBDQٿi-1 tag+i word VB brushbacksNNSCl?JJCli-1 tag+i word VBZ sedansNNPS~jtNNS~jt?i-1 word alongRB^I +?NN`"JJSſNNPMbX9?IN^I +i-1 tag+i word CC planningVBGQ?NNFx?JJZd;i-1 word entitiesVBNQٿRBbX9?VBDQ?VBZV-?VBPGzi+1 word detectiveNNSV-NNV-?i-1 tag+i word NN initiativeVBT㥛 пVBPB`"NNw/?JJ-i-1 tag+i word `` properJJ)\(?JJR)\(Կi word orderlyJJK7@RBK7 i word bluntVBNMJJʡE@NN1Zd i suffix scaVBZZd;ONNPZd;O?i-1 tag+i word NNS enNNS%CIN= ףp=?VBPV-߿i-1 word visitorsJJX9v?VBD/$VBPʡEͿVBNMb i-1 word pipeNNPSjtNNPjt?i-1 tag+i word `` latinVBPGzJJ7A`NNPS-?i+1 word revisedNNSQ@NNPQi-1 suffix rawDTS?NNSʡE?NN{Gz?JJlINS˿i-1 word intelligenceFWoʡNNP~jt?NNSoʡ?NN~jti+1 suffix iasJJd;O?NNx&1?NNPy&1VBd;O?i-1 tag+i word NNP pilevskyNN&1NNP&1?i-1 tag+i word DT setNNw/?JJT㥛 VBNbX9 i suffix HHSNN^I +NNP^I +? i word orphanJJh|?5?NNh|?5i-1 tag+i word CD yenRBZd;O׿NNx&FW/$JJRmJJS㥛INV-NNSjt@i-1 word habitsVBP r?JJ ri-2 word defraudingNN;On?JJ;On i-1 word ibm NNMbX9?VBDJ +POSoʡ?VBN"~VBZ%C?VBPlRB;OnNNS333333?NNP"~j?i-1 word thomasNNPn?NNPSV-?NNHzGVBDZd; i word luxFWoʡ?NNPoʡi-2 word fountainsVBZvVBffffffֿNNA`"?i-1 tag+i word JJR inquiryNN$C?JJ$C i word nagsNNSx&?UHx&i+1 word allowableJJRQ?NNClRBSHzGٿ i word allowsVBZ(\@DT;OnPDTʡEJJjti+1 word containingNNSQ?NN ףp= ?JJ333333i-1 tag+i word IN recordNNSGzVBG rNNQ8@JJQNNPd;Oi-1 word maintainsWDTV-INV-? i-2 word rjrJJ?INX9vNNS"~ʿNNP/$?NNPSV-RPS㥛RB~jt?VBNi-1 tag+i word JJ cloutNNSV-NNV-?i-1 tag+i word IN ldcNNZd;߿NNPZd;? i+2 word a'sNNrh|?JJuVVBG|?5^ٿi-1 tag+i word CD specialtyNN+?JJ+i-2 word holdsNNPffffffVBGd;OJJK7?NNZd;O?i-1 word scoutIN|?5^RP|?5^?i-1 tag+i word JJ graceNNV-?NNPV-i-1 tag+i word VBG overheadJJh|?5?NNh|?5 i word vacuumVBOn?NNS㥛 NNףp= ?JJ?5^I i-1 tag+i word -START- blackNN/$ݿNNP/$? i word keptVBPERB+INx&NNPGzVBQNN/$ݿVBD?5^I@VBNףp= ? i word factorVBZ333333NNL7A`@JJV-i-2 word shillingsNNSx@NNxi-1 tag+i word NNP rejoinsVBZMb?NNPMbi-1 tag+i word DT sodaNNSnNN㥛 ?JJsh|?ݿi-1 tag+i word IN woollyRB'1ZJJ'1Z? i+1 word junk VBZA`"?RB&1RPRQ?NNzGVBNnʿJJRy&1@VBPS?JJK7A`INtV?VB/$ۿNNSA`"i-1 tag+i word DT windowNNSPnNNPn? i suffix werVB/$@JJRʡE+@RBRV-@VBN%CNNPSQVBD+RBFWx&1VBPsh|??JJ#~j<NNS(\NNP"~ҿNNzG?PDTK7VBZli+1 suffix rneJJ|?5^?NN|?5^i-1 word vauxhallNNPS/$NNP/$?i-1 tag+i word DT adverseNN!rhVBNMbJJ-?i-1 tag+i word -START- clearlyNNPsh|?RBCl?JJsh|?i-1 tag+i word VBZ tbNNd;O@VBNʡERBMڿNNP$Ci-2 word libertyJJClVBDCl? i word stolenJJFxNNB`"VBDoʡVBNMbX@VBP{GzRB9vҿi-1 tag+i word CC moveNNV-VBV-? i word swornJJJ +NNS/$VBN^I +@NNPni-1 tag+i word CC huskyPRPGzNNPGz?i-1 tag+i word JJ gizmosNNS(\?NN(\i-1 tag+i word VBZ pervasiveRB~jtJJMbX9?JJRGzi tag+i-2 tag VBP NNPVBG'1Z?NNPOn?VB#~j?NNn?VBD?5^I WDTX9vRBq= ףpRBR~jt?CDS㥛?RPX9vPDTSJJRMVBPS㥛?IN#~jDTV-?NNPSNbX9JJ&1?RBSZd;O?JJSZd;OVBN~jtxi-1 word thrashRPZd;RBZd;?i-1 tag+i word TO injusticesNNSCl?VBCli-1 tag+i word RB confirmsVBZ/$?NNS/$ i word overlyRB rh?JJ rhi-1 tag+i word VBZ entitledVBNQ?JJX9v߿VBD|?5^i+1 word jewelryVBPʡEJJʡE?NN`"i-1 tag+i word IN hypeNNm?JJmͿi+2 word teamsVBPoʡ?NNK7VBx&1пi+1 word franceFWm?NNPmi word emotionalNNJ +JJMb@JJRS i-1 word spunRP/$?RBQ˿INMbi+1 word accomplishedVB+?NNP+i-1 word rightNNPSK7ѿNNjt@PDTʡE?EXd;ODTʡERP{GzVBZMb?NNSxVBʡERBZd;OFWZd;O߿WDT#~j?JJHzGINS㥛?NNPʡE?i word contravenedVBDnVBN㥛 ?JJ9vi-1 tag+i word IN womenJJMbNNPMb?i-1 tag+i word NNS lackVBP= ףp=?RBR= ףp=i-1 tag+i word RB sankRBvVBDv?i-1 tag+i word CC salutingVBG+?NN+ i-2 word payVBNףp= ?VBGV-ǿVBZMb?JJRI +?NN?5^I CC rh?INffffff?RBR333333RP-RBx&?VBPSݿNNS+׿VBDtVJJ'1ZܿDT^I +?i-1 word classifiedNN-?JJ-i word championshipNNK7A`?JJK7A`i-1 tag+i word PRP repliedVBN;OnVBD;On?i-1 tag+i word VBG downVBV-RPuV @JJNN rFW+RBEȿINS㥛@NNS?5^I i-1 tag+i word , assistantVBPzGNN +?JJ= ףp=ڿVBD-ƿi word printedVBP7A`ҿVBD7A`?i-1 suffix rmsNNEȿRBRZd;OIN/$?VB?5^I ?VBG"~?VBNRQVBP"~j @NNP1ZdVBD9v?PDTSJJX9v?DT|?5^RBZd;O WDT?5^I @i-1 tag+i word IN goodwillNNS^I +NN^I +?i-1 tag+i word IN researchNNP"~j?NN"~jԿ i+1 word girlNNK7A`NNPK7A`?i-1 suffix vieVBDxVBNx?WDT$CۿIN$C?VBZS㥛?VBGGzNNm?i-1 suffix fdaVBZ rhNNS rh?JJ?NNi-2 word resistantVBKNNV-?JJ{Gzi-1 tag+i word NNP showVB|?5^VBP|?5^?NN(\NNP(\?i-1 tag+i word : asRBSINS?i+1 word carriesVBʡENNʡE@ i suffix nzyNNd;O?RBd;Oi-1 tag+i word RB openVBNq= ףpRB'1Z?JJRQؿVB?VBP'1Zi-2 word displaysNNSv/JJtV?NNS㥛Ŀi word circulatedVBN"~j?VBD"~ji-1 suffix zleWDT|?5^?IN|?5^i-1 word strengthenVBENNPE?i+1 word beachNN ףp= NNP ףp= ?i-1 tag+i word -START- creditRBST㥛 NN^I +@NNPv/NNSV-i-1 tag+i word WP miffedNNffffffVBDffffff?i-1 tag+i word , terrorismNNSClNNCl?i-1 tag+i word VB installedVBN{Gz?JJ{Gzi-1 tag+i word -START- tastyNNPSJJGz?NNFxi-1 suffix uvbVBG/$ٿNN/$?i-1 tag+i word RBR capitalNNS㥛JJS㥛?i word centurionNNDlNNPDl?i tag+i-2 tag EX ,INCl?VBZ\(\?RPClPOS\(\߿i-1 tag+i word DT loneJJL7A`NNPL7A`?i-2 word courtauldsNNbX9?RBbX9i+1 word tischNNv?NNPvϿi-1 tag+i word TO humansVBV-NNSV-?i-1 tag+i word -START- insiderFWjtܿNNB`"?NNPV-׿i word laotianJJzG?NN?5^I NNPCl߿i-2 word treatVB"~jVBPp= ף?NNZd;OINm?i-2 word alcoholVBGv/RBRA`"ۿNNK7A`?i-2 word swedishVBNX9vVBDX9v?i word healthvestVB ףp= JJSX9vJJFxNNP@i-1 tag+i word POS chapterNNK@NNPKi+1 word websterNNS@JJ= ףp=NNPV-i+2 word meetingsVBNSJJ{Gz?NNSMbX9NNPx&1VBʡE?NN^I +@FWVBDS?i+1 suffix hunNNSK7A?JJQNNPni-1 tag+i word NNS livedVBNy&1̿VBDy&1? i word shiftJJ+NNSlVB rh@NNCl?VBDB`"ѿVBPoʡi-1 tag+i word VBG classifiedVBNS?JJSi-1 word accomplishRB/$?JJ/$IN\(\DT\(\? i suffix ughNN= ףp=POSA`"NNSZd;O WDTSVBNMbDTClVB~jtRPQ@RBRx&1NNPh|?5?VBD +PRP$|?5^ʿCD&1INrh)@VBZxJJQ@VBPʡERB + @i-1 tag+i word '' folkCDʡENN?NNPSi-1 tag+i word , aroundRBB`"INB`"?i-1 tag+i word NNPS stumbleVBS?VBPMbJJp= ףi-1 tag+i word VBP incumbentsVBZ ףp= NNS ףp= ?i-1 tag+i word TO agriculturalVBA`"ۿJJA`"?i+1 suffix tsuINQ@WDTx&1NNrh|NNP\(\i-1 tag+i word VB observedVBNDl?JJDli-1 tag+i word TO hispanicJJ㥛 ?NNP㥛 i-2 word bank VBDh|?5VBN7A`?VBP/$WDTCl?RP r?RBbX9NNjtJJ~jt@INx&1?NNPMb?VBRQؿNNPS'1ZCD%C?i-1 tag+i word NNP pennyNNE?NNSEi-1 tag+i word CD bridgeNNSZd;NNZd;?i-1 tag+i word , forecastingVBGv?JJvi-1 tag+i word -START- shellyRBh|?5NNPh|?5?i word statutoryJJMbX9@NNMbX9 i word maliceRBMb`NNP/$NN?i+2 word allowedNNPOnVBGPn?NNbX9?VBNʡERBGzֿINGz?i-1 suffix .m.NN}?5^IԿVBDZd;O?VBNRQпRBMbX9?NNPE?VBGOnJJX9vi-1 tag+i word , suggestVBP1Zd?JJS1Zdi-1 tag+i word CC cefiroNNPRQ?JJRQi-1 tag+i word NN defaultedVBN/$JJ/$?i-1 tag+i word -START- sothebyNN;OnڿNNP;On?$i-1 tag+i word IN telecommunicationsNNQJJL7A`尿NNSV-?i-1 tag+i word RB doVBx&1VBPx&1?i-1 tag+i word `` porkapolisVBV-NNPV-?i-1 tag+i word JJ separateJJ/$?VBG/$i-2 word machinistsJJ1ZdVBDNNSVBNK@ i-1 word duckRBRjtĿNNjt?i+1 word compatibilityVBZFx?NNSFx i word ricanJJX9v@NNPX9vi+2 word subrotoNNPS?JJX9vֿIN%Ci-1 suffix kiaVBN +VBD +?i+2 word investigatesNN5^I ?JJ5^I i-1 suffix onaVBP&1ڿNNP&1?i+2 word salesVBD7A`@VBPʡE?RPRQ?VBZV-NNPB`"VB&1RBClCDFxJJR(\?RBR(\տVBG(\?NNS%CPOSMbX?INQ?NNPS/$?NNMb?VBN+ DT(\ݿJJDl@i-1 word paintingsRB-IN-?i+1 word budgetsVBKVBGGz?JJHzG?NN{GzJJRK?i-1 tag+i word JJ foreverNN/$RB/$?i-2 word sothebyNNPS7A`?NNP7A`i-2 word pleadDT-NN-?i word miniaturizedVBN\(\?VBD\(\ i word dallasNNP/$?NNSh|?5οJJMFWQ i word slumpRBRv/VBZy&1VBPףp= ?NNDl?JJZd;O i word girlsVB~jtؿVBPOnNNSX9v@NN?5^I JJ)\( i word kemperNNPMb?WDT5^I NNrh|IN;Oni-1 tag+i word PRP$ lastestNNd;OJJSd;O?i-2 word medievalVBNx&1VBDx&1?i-1 word being VBN+!@RBB`"[NNPSPnRPMbXJJS㥛@NN|?5VBDCl?NNS rhVBx&1@CDy&1VBPClUHʡEINX9vi+1 word sidewaysJJMbؿVBGMb? i suffix asy JJM@NN!rhNNS+VBVBNʡERB{GzVBZV-NNPI +?MDV-i-1 suffix fhaVBZ333333VBD333333? i word well VBP rhNNP"~jVBD(\VBN1ZdCD\(\UHI + @JJX9vJJRHzGNNS(\VB7A`PRBw/.@NNEi-1 tag+i word DT busyJJ9v?NN9vi-2 word prenticeVBZy&1?NNSy&1i+1 word engagesNNrh|JJ;OnNNP(\?i-2 word rebuildNN?JJi-2 word loadedNNS?5^I NN?5^I ?i-1 suffix ribVBZB`"NNSB`"?i+1 word workaholicVBGʡE?JJʡEi-1 word afraidDTMbINMb? i-2 word vastJJl?NNli-1 word raisesVBjtNNSzG?NNףp= ?IN9v i suffix raiNNy&1?JJ"~jFW9v?i-1 word attitudeVBZy&1?NNSy&1i-1 tag+i word DT crossroadsNNS/$?NN/$i-1 tag+i word PRP$ lukewarmJJtV?NNtVi-1 tag+i word IN feb.NN ףp= NNP ףp= ?i-1 tag+i word CC requisiteNNA`"JJK?VBA`"ۿRBoʡi-1 word britainVB%CJJ%C?i-1 tag+i word , filingsNNSS?RBSi-1 word directedNNPS)\(?NNP)\(i-1 tag+i word -START- eSYMS㥛?JJNNS㥛ԿLSQ? i suffix vvyJJl?NNRQ?RBR%CVBN-ӿRBClNNSRQi+1 suffix necDTbX9INbX9?i word neighborhoodsNNSMb?NNMbX9RBZd;i-1 word radiosVBZd;VBNZd;?i+1 word schweitzerVBNrh|NNPrh|?i-1 word comprehensiveNNPSPnJJMbX9NN~jt?NNPE?i word operationalRP-JJ}?5^I?NNi-2 word recombinantNN"~?NNP"~i-1 tag+i word IN bankersNNPSMb@NNPMb i suffix audNNOn?JJOni-2 word alleganyNNPSS㥛NNPS㥛?i-1 tag+i word NNP horsesVBZ!rhNNS!rh?i+1 word knowsIN{GzWDT{Gz?i word pioneeringVBGX9vJJB`"@NNV- i+2 word bond VBPw/JJ|?5^?VBDVBNQNNX9vRBSX9vRBR)\(̿NNPS@RP&1?RBʡEi-1 tag+i word JJ spendsVBZK7A`?NNSK7A`i-1 tag+i word DT philosophyNN㥛 ?JJ㥛 i-1 word ridleyVBNZd;VBDZd;? i word reebokNNP rh?NN rhٿi tag+i-2 tag NNP JJRNNPS+NNS%C?NN'1ZCD1Zd?i-1 tag+i word MD fallVBʡE?RBRʡEi-1 word unemploymentVBL7A`NNL7A`?i-1 suffix nedNNSI +?RB/$?WDTSDT ףp= PRPClٿCCGz?PDT5^I ?RBRFx?UHV-?VBGV-VBZ%CRP+ @NNjtRBSv/INn?JJSv/?JJ!rhVBNMbVBPV-NNPMbVBnCD-?JJRK7A`?PRP$A`"˿i-1 tag+i word RB pitchedVBNS㥛?VBDS㥛i-1 tag+i word JJ shippingVBGV-NNV-?i+1 word financiereVBNw/VBDw/?i-1 tag+i word RB littleRBJJ@i+1 word stopgapVBG +?NN + i word very NNS㥛 ڿJJ rhRBR(\ݿVBNq= ףpRBZd;OM2@DT+VB7A`NNx&1H!FWV-WDTHzGNNPMbPi-2 word furiousNNuVͿNNPuV? i suffix -uhNNA`"ۿNNPx&1UHzG?i+1 word vacationVBm?VBNʡEJJGz?i+1 word summaryNN|?5^?JJ|?5^ i+2 word archJJ5^I ?NN5^I i+2 word viewsPOSMbX9?VBPh|?5?JJ`"VBZMbX9NNPh|?5RBDl?VBNS㥛?i-1 tag+i word DT tiniestJJS+?JJ+ǿ i-1 word evilNNSB`"NNB`"?i word aggressivelyVBzGRB+@JJ)\(i-1 tag+i word DT volcanoNN^I +?JJ^I + i word hertzNNP'1Z?VBD{GzFWMbX9i-2 word createdJJq= ףp?NNq= ףpݿi-2 word partnersVBG'1Z?NN333333ۿVBD ףp= VBN ףp= ?RB(\IN'1ZԿDT(\?NNP333333?i-1 tag+i word POS confidenceNNS5^I NN5^I ?i+2 word athleticVBNm?NNmi-1 tag+i word PRP$ routineNN'1ZJJ'1Z?i+1 word whitfordVBZ\(\NN\(\?i-1 tag+i word CC hopeVB`"?VBP`"i+2 word cliffNNSv/NNPSv/?RPSINS?i-1 tag+i word -START- w.NNP+?CD+i-1 tag+i word RB increasingVBG= ףp=?NN= ףp=ʿi+1 word racehorseVBNS㥛ܿJJS㥛? i+2 word incVB/$NNPS(\?NN(\?PRP$X9vRBRX9vJJClNNP= ףp=@i+1 suffix ldaDT(\IN(\?i-1 word deflectJJ?VBG i+2 word madeNNPx&ٿNNh|?5@RBuVINx&1?VBZ%CJJ~jtRBRh|?5PRPʡEJJRh|?5?VBPS㥛NNSV-?NNPS/$@FWPn?CDx?i-1 word deviationCC\(\DT\(\?i+1 suffix bicJJClCD^I +?NNS㥛 NNv?i-1 tag+i word NN receivableNN"~?JJ"~ڿi word threemonthJJ(\?NNS(\ i suffix gloJJA`"˿NNPA`"?i-1 word hardlyJJ%CVB㥛 ?NNS%C?NN㥛 !i-1 tag+i word -START- managementNNCl?NNPCli-1 tag+i word -START- raymondJJV-NNPnNNPMbX9?i-1 tag+i word JJ jointNNK7A?JJK7Ai-1 word oregonNN~jt?JJ~jti+1 suffix eadVBZ ףp= ?JJR-VBGI +?JJJ +?RBR-?VBNL7A` @RBS㥛?PRP$S㥛?NNh|?5VBʡEPRPS㥛INd;OοVBDJJSClNNSn?NNPS i word artNNPSv߿NN(\@JJ"~NNPSi-1 tag+i word NN beautyVBDMbXNNMbX?i-1 tag+i word `` ricoNN rпNNP?JJClRB/$i-1 word proteinVBNx&VBDx&?i+1 suffix whyVB;On?RP^I +?NNMbؿVBNS?RB7A`?IN&1i-1 tag+i word PRP$ healthvestJJFxNNPFx?i-1 tag+i word TO ginsengVBZd;ONNZd;O@i-1 tag+i word DT classicalJJ+?NN+i+1 word trialsJJR r?NN rؿi+2 word tigersJJ rh?NN rhi-1 tag+i word -START- zaitaVBZ#~jVBFxNNP#~j@i+1 word contactVBD#~jVBN#~j?i-1 tag+i word DT breakfastNN#~j?JJ#~ji word unhappilyRB^I +?NNP^I +i+1 word breakersJJ^I +NNP-ӿNNI +?i-1 tag+i word IN allegedlyRBp= ף?JJp= ףпi word delightVBw/?JJw/ܿi-1 tag+i word DT divisionNNJ +NNPJ +?i-1 tag+i word NNS ambleVBoʡ?VBPoʡi-1 tag+i word NN bestRBS;On?JJS~jth?NN(\ i word politeJJx?NNx i word mailVBPffffff?JJENNSZd;NN rh@VBDZd;OJJR i word xinhuaNNFxٿNNPFx?i-1 tag+i word NNS provideVBP{Gzt?IN{Gzti+2 word capabilitiesJJK7?NNV-RBS/$i-1 tag+i word `` megaRBuVNNP~jtDTMbX9JJK7?i-1 tag+i word JJ performerNN(\?JJ(\i+2 word susanNNPS&1NNP&1?i+2 word replacementRP+RB+?NNzGWDTuV?JJzG?INuVi+1 word collaborationVB-JJ-?i-1 tag+i word , kerchiefedCCVBN;OnJJV-? i suffix IESNNPSQ?NNSCl?JJNNNbX9NNPCli+1 word cousinJJR{Gz?NN{GzĿi-1 tag+i word VB electricJJzG?NNzG i suffix affJJZd;߿NNP rh?NN^I +? i word climbsVBZDl?NNbX9RBDlVBDT㥛 i word excitingJJZd;O@VBGJ +NNMRBV-Ϳi+2 word extrusionsVBNx&1JJx&1?i-1 tag+i word JJ becomeVBZ!rhVB!rh? i word taiwanNNP5^I @NNPSK7ANNS|?5^ٿNNNbX9CDT㥛 i-1 tag+i word IN darkJJCl?NNClNNPCli word harrowingNNV-׿VBGClJJʡE?i-1 tag+i word NNS everywhereVBP"~RBCl @JJ#~jVBD+i+1 word relativelyVB/$NNS/$?VBN"~VBD"~?i-1 tag+i word VBP cdNNFx?NNPFxi word suzanneJJ\(\߿NNP\(\?i+2 word lawmakersVBbX9޿VBG"~j?JJ"~jVBDd;O?VBNd;OCDMbRB= ףp=?NNS㥛 ڿi-2 word slovakiaRPʡEINʡE?i-1 suffix iffNNPv/?VBN rhѿJJv/VBD rh?i-1 tag+i word `` vagueJJ-?NN-i-1 tag+i word , dubbedNNP+NN\(\VBNffffff@JJzGʿVBDZd;Oi-2 word rising JJR5^I RBRuV?IN r?RBCl NNMbX9WDT-JJ-@NNPE?VB7A`?i word samsungNNPFx?NNSFxi-1 tag+i word -START- nbiNNP㥛 ?NNPS"~jNN(\i-1 word trishNNPSx&1ؿNNPx&1?i-1 word industries''5^I VBDףp= ?POS5^I ?VBNףp= i word albionNNPˡE?NNˡEi+2 word arrayVBZCl?VBDCli-1 suffix ughJJSq= ףp?JJR rh?VBNS?PRP?IN"~?NNP'1Z?NNPSPnпVBD{GzRBRV-VBClVBGK7A` VBZ㥛 NNE @RPK7RBMbX?DTm?NNSV-?JJOn?RBSq= ףpտi-1 tag+i word RB wiserJJRMb?NNMbؿi word merchantNNS&1NNZd;@JJS i suffix bowNNSv/NN/$?JJ%CܿNNPMb?i word shortcutNNK7?JJRZd;JJ333333i-1 word notebookNNSQVBZQ? i+2 word sentJJS?INx&1?DT+?NNPVBG333333NNy&1i-2 word hiringVBNGz?JJGzοi+1 word stoogesNNMbX9NNPjtJJv?i-2 word healingNN1ZdNNPS7A`NNSv?i+2 word provokeRB(\?NNy&1JJx&1?i-1 tag+i word NNP flemingNN}?5^INNP}?5^I?i-1 tag+i word JJ documentaryNNx&?JJx&ѿi word elationVBHzGNNHzG? i word wsjNNP~jt?IN~jti-1 tag+i word CC allegoryJJ= ףp=NN= ףp=? i suffix -14CD~jt?JJK7ANN33333@NNPKi+1 word computers JJSv?JJRMbX9?VBZ rh?NNPSy&1NNh|?POS(\?RBRzGʿVBN{GzJJV-ǿNNPy&1?VB +?VBGQ@i-1 tag+i word NN scaredVBNZd;VBDZd;?i-1 tag+i word NNP crowdNN;OnVBZ\(\ϿVBPA`"?i-2 word commissionerNNPSd;ONNPnؿNNP +? i-1 tag POSPRPCl?RB rNNPV-?RBS+?NNPSMb?JJRK7A`JJMb?NN rh @RP?VBV-CCCl׿CDjtܿJJS@PRP$&1VBG9vRBRzG?IN"~jVBP/$DTMb`?VBZ-FW'1ZNNSx&1 @VBDzGVBN}?5^Ii-1 word domesticNNS㥛?JJMb?CD~jti-1 tag+i word : lendingJJx&ѿNNQ?VBG/$i-1 tag+i word RB createdVBN#~j?JJ#~ji-2 word balancesNNS|?5^NN|?5^?i-1 word hypotheticalNNSS?NNSi-1 tag+i word -START- geraldJJ(\NNP+?VBB`"i-2 word bixbyDT333333ÿIN333333?i-1 tag+i word VB inconsistentVBNPnJJPn? i-2 tag PDT JJ|?5^?NNMbP?NNS`"VBNB`"۹?RB333333NNPV-?NNPSV-VBGbX9?JJSL7A`?JJRK7Aؿi-1 tag+i word IN eggsNNSGz?NNGzi-1 word engineersVBNoʡ?JJoʡſi-1 tag+i word VBN simpleNNSZd;JJ+?NNy&1i word barrelsRBjtINMbVBZ%CNNSS?i-1 tag+i word -START- howardNN-JJ +޿NNP?i-2 word hailedJJ"~j?NNX9vVBNJ +i-1 tag+i word MD approveINVB?i-1 tag+i word -START- smallerJJRV-?NNPV-i-1 tag+i word , upNNh|?5CD333333ۿUH(\JJ~jtIN + RPZd;ϿRBx&@i-1 tag+i word VBG computerizedVBNv/JJRQ?VBDxֿi-1 tag+i word DT graveyardNN-?JJ-i-1 tag+i word IN monitoredVBNuVJJuV? i word bratsNNSS?JJSi-1 word generaleFWS?NNS;OnNNPx&1i-1 tag+i word DT alJJ+NNP+?i-1 tag+i word ( cont'd.VBNK?NNKi-1 word cinzanoNNSDl?NN+JJQi+2 word gallopingJJ|?5^?NN|?5^i-1 tag+i word IN woodNNtV?JJtVi+2 word volumesVBG+?NN+i tag+i-2 tag WRB VBGVBNףp= ۿJJʡE?NNS? i word delaysNNSK7A?NNK7Ai word financeVBPʡEJJ/$NNPL7A`?VB333333?NNPSSRB~jtNNʡE@ i-1 word cordRP㥛 IN㥛 ?i-1 tag+i word NN exposuresVBZDlNNSDl?i-1 tag+i word NN wherebyWRBuV?JJRuVi-1 word humanitarianNNS!rhVBNK7A`NNx&?i-1 word adoptedNNSX9vRBRX9v?JJMbX9?NNPMbX9i-1 word budgetedRBKINK?i+1 word capitaJJ5^I IN5^I ?i-1 tag+i word IN qualityJJK7?NNK7i tag+i-2 tag CC IN VBNbX9@RPS㥛?RBHzGNNtVVBDMb@VBNMbX9NNPSSVBP/$JJoʡIN{Gz @NNS&1i-1 tag+i word IN genuineJJDl?NNPDl i word lingerVB$C?NNP$Cӿi-1 tag+i word DT attemptedVBNMJJM?i-2 word cheersVBNuV?JJuVi word dominatedJJzGVBDV-?VBNJ +ٿi-1 tag+i word , investigatorsVBZL7A`NNSL7A`? i word goneCDClVBNX9v@NNDlѿNNPK7i-1 suffix lpsVBMbX@NNSnNNK7JJL7A`i-1 word blockbusterVBD~jtۿVBP`"NNQ@ i suffix HEPRPPn@JJjtܿNNPi-1 tag+i word DT fittestJJS(\?NN(\ i word theftsNNS&1?NNP&1 i-2 word actVBG#~jNNMbRBRbX9JJRbX9?JJʡE?NNSɿi-1 word panisseNNK7A@JJy&1VBDʡEi-1 tag+i word VBN bondholdingsNNS rh?VB rhi-2 word violatingNNP= ףp=?NN/$JJ rh?i-1 tag+i word WDT listVBPoʡNNoʡ?i-1 tag+i word CD meetingNNK7A?VBGK7Ai+1 word greekJJffffff?VBDffffff޿i-1 tag+i word NNP conduitsNNSx&1?NNPx&1i-1 tag+i word CC wellRBZd;?NNZd;i-2 word unileverVBNMbXJJMbX?i-1 tag+i word , sawVBOnRB&1NN(\?VBDx&1? i suffix ANJJ5^I NNPHzGDT1Zd@i-1 tag+i word -START- pegasusNNSNNPS? i-2 word boydNN/$?JJ/$i-2 word addressNNSRQJJtV@NNPPni+2 word greatlyVBZ-?NNS-i-1 word fundedRPtVJJK?INRQ?i-2 word safetyVBZ|?5^ڿNNPS~jtJJ^I +?NNx&NNP~jt?i-1 tag+i word : overseasJJ#~j?RB#~ji-1 tag+i word DT treasurerNNh|?5?NNPh|?5ο i word carpNN"~j?VBZd;OVBPS?NNS333333i+1 suffix tipVBNp= ףпNNMbXNNPQ?JJS!rh?i-1 word admittingPDTX9v?JJX9vϿi-1 suffix upsIN5^I ۿDT'1ZVBX9v׿VBDDl?VBNv/VBP~jt?WDTx?i+1 word poisedINDlNN'1Z?VBD ףp= i+1 word inhospitableRBSʡE?JJSʡE i suffix CEONNZd;O?NNPZd;O i word metalNN{Gz@JJ{Gzi-1 tag+i word , pleadinglyRBB`"?FWB`"i-1 suffix ufiNNS+?NN+ i suffix uryJJ\(\ NNPn@CDK7A`RBRQNNS}?5^INNP1Zd@i-1 tag+i word VBG buglessRBx&1NN'1ZԿJJv?i-1 tag+i word JJ secretsVBZrh|NNSrh|?i-1 tag+i word DT coffeeNNPS~jtNN?JJNNP~jt?i-1 tag+i word IN formsNNSOn?JJOni-1 tag+i word VBD carriedVBNT㥛 ?JJT㥛 i+1 word mariettaJJףp= NNPףp= ? i word packsVBZ= ףp=?NNS= ףp=i+1 suffix ina NN ףp= VBNV-?JJZd;?NNSSNNPMb?RBbX9INq= ףp@VBZClDTrh|i+1 suffix kerNN9v?VBP +VBG{Gz?NNSV-JJR+?PRP$B`"?RP5^I VBNB`"?CD"~j?JJ~jt?RB|?5^?VBDMbX9INT㥛 NNP`"i-1 tag+i word CC hopelessJJ)\(@NNQNNP^I +i-1 tag+i word NNS soarNNSQVBQ?i-1 tag+i word VB twiceNNSoʡRBoʡ? i+2 word cultJJZd;׿NNPZd;? i word remoteNNSEJJ)\(@NN&1 i suffix ESBJJV-NNffffffVBPw/RB rhٿNNPy&1 @NNPS9vi+2 word tonkinVBD㥛 ڿVBPT㥛 пINq= ףp? i suffix hts NNK7AVBD rhUHSNNP ףp= VBClNNPSˡE}@VBPx&RBMVBZ rh?NNSC,-@JJ?5^ICCS㥛ܿi+2 word satisfactionVBZCl?NNSDl?VBN㥛 NNDlVBDw/Ŀi+2 word headedVBD'1Z?NNffffffJJoʡNNPGz?i word creditworthyNNCl?JJCli-1 tag+i word `` fearNN?5^I ?IN?5^I i+1 word seems NNPSJ +?NNOn @RBR}?5^IJJQCD"~NNPJ +RB+@VBDp= ףؿVBN+WDT/$?PRP}?5^IIN/$JJRKi-1 tag+i word -START- goneCDClVBNX9v@NNDlѿNNPK7i-1 tag+i word POS chiefJJʡE@NNʡEi-1 tag+i word NN antelopeNNSʡE?NNʡEi-1 tag+i word NNS knowVBjt?VBPjti-1 word oxidizerDTWDT?i-1 tag+i word VB irrelevantJJv?VBvϿi+2 word undertakingNN'1Z?CD'1Z!i-1 tag+i word POS administrativeJJʡE?NNʡE i+2 word robeVBGzG?JJGzNNGzi-2 word willingVBKNNHzG@VBN#~jԿJJOnۿNNPv/տi+2 word goldsteinJJsh|?NNPsh|??i-1 tag+i word DT hotelsNNSh|?5?NNh|?5i-1 suffix njiVBGffffffNNK7?JJffffffNNPV-?i-1 tag+i word DT politicianNN#~j @JJ#~j i-2 word valuableNNbX9?RBbX9 i word singVBx&1@VBP(\@VBGNN^I +i-1 tag+i word IN slurryJJq= ףpݿNNq= ףp?i-1 tag+i word NN putsVBZCl?NNSCli+1 word holidayVBGA`"JJ"~?NN!rh i-2 word nyuVBG9vVBNK7NNCl?i-1 word breweryIN-WDT-?i word birthdayNNd;O?JJ/$NNPףp= i word bribedVBN"~VBD"~?i-2 word stadiumNNQ?RBQi-2 word exercisingNNI +?JJI +i word stalinismNNP%C?NN%Ci-2 word bakerVBZd;ONNS rhNNPGz?PRP$㥛 NN(\?VBDd;O?PRP㥛 ?JJ ri-2 word tracksNNSףp= ?VBP/$VBGI +?NNK7?JJ= ףp= i suffix ritVBP~jtNNSʡERBR= ףp=NN㥛 @i-1 tag+i word : uncertaintyNNP1ZdNNSMbNN|?5^?i-2 word indicationsNNV-?JJV-i tag+i-2 tag RBS ,JJ/$VBDw/ĿVBNMb?i+1 word floodingVB+JJn?NN(\տ i-2 word abcJJB`"RBq= ףp?NN/$i tag+i-2 tag , VBP VBDsh|??VBPV-@INK7A`DTףp= ?VB)\( NN'1ZWDTMbX9UHS?JJjt?NNSRQNNPJ +VBG +?RBoʡi-1 tag+i word PRP 'sVBZ/$@VBD+RPx&1RBR㥛 POSCli-1 tag+i word NN pashasNNS+?NN+i-2 word detailsNNGz?JJGzi-1 word undulateNNX9vRBX9v?i-1 tag+i word NNP peteNNPSzGNNPzG?i+1 word happierRBHzG?JJHzGi word confirmsVBZףp= @NNSuVVBDA`"i-2 word tasteNNn?JJV-VBD rhi+1 word loungeJJ333333?NN333333 i+2 word judyNNʡE?JJʡEտi-2 word hoursJJRQ?VBGm?NN-VBNˡERBRQ?JJZd;i-1 word sturdyNNx&1?JJx&1i-1 tag+i word VB kingNN1Zd?VBG?5^I VBNQi word suburbsNNSm?VBNK7ѿNNQ i word salmonNNʡE?JJʡEi+2 word tribunalJJS㥛?NNPS㥛 i+2 word a.c.NNv/@RBv/ i word gardenVBPn?NN"@VBN ףp= JJ rhNNSKNNPQ?i-1 word thinkingWDTQ?RBy&1INˡE?i+1 word trivialVBN^I +RB^I +?i-1 tag+i word NN courtsVBZ7A`NNS7A`?i-1 tag+i word : pricesNNSy&1NN7A`?NNPClٿi-1 tag+i word DT culpritNNSʡENNʡE?i-2 word retainingJJMbX9?NNMbX9 i word whichVB+NNS9vNNPFxWDT ףp= @i+1 suffix essPRP$ʡE?VBNJ +VBPClRPbX9?NNX9v?PRPʡEVBV-?NNPSQοJJR#~j@VBGV-?DTClNNPx&1@RBSףp= JJSS㥛?FWA`"VBZm?VBDx&1?NNSK7RBR!rhCDV-INNbX9?WDTnʿJJI +?RBjt?i word evenhandedPRP$\(\VBNDlJJPn?i-1 tag+i word CC pregnantVB"~JJ"~? i suffix EarNN-?NNP-i-1 tag+i word JJ manicJJ~jtNNP~jt?i+2 word regardJJ?NNINL7A`?DTL7A`i-1 tag+i word VB offeredVBNʡE?JJʡEi word superimposedVBN&1?VBD&1i+1 word convenantsJJK7AJJRv?NNSӿi+1 word bottlesJJbX9ȶNN/$NNP'1Z?i+1 word discountingVBK7JJ-?RBCli word metamucilNNPSʡENN&1ʿNNP= ףp=?i-1 word developmentsVBD\(\VBQVBP(\?VBN"~j?i-1 tag+i word DT turningVBGA`"ӿNNA`"?i-1 tag+i word , dailyJJx?NNGzRB~jtȿi-1 tag+i word VB protectionismNN"~j?VBN$CRB rhi-1 suffix cheVBZZd;ONNP~jth?CD~jt?i-1 tag+i word NN pagesVBZjtNNSjt?i+1 word lubricantsJJ;On?NN"~?NNPGzi-1 tag+i word JJ bNNENNPE? i word legalJJ^I +?NN^I +i+1 suffix menVBG?5^I @JJ;On@RBGzDTVBˡE?NNK7VBD"~jVBN#~j?JJSʡE?RBSʡECDZd;ONNP}?5^IWDTMbXINS?NNS r?JJRS?i-1 tag+i word JJ covertJJ&1?NN&1i+2 word pricingRBlJJjt?NNjtֿINl?i-2 word maker JJClNN^I +?VBD(\?UH(\ҿVBZ5^I ?NNSDlNNP/$ۿVBG;On?VBN}?5^I?CD!rhRBA`"IN~jt?i-1 tag+i word CD moreRBR-VBDSJJRh|?@RB`"FWV- i suffix B-2NN)\(@CDy&1NNPSJJx&i-1 word board WDT9v?VBZ#~j?NNS#~jNNPS\(\?NN'1ZVBDx&@POSףp= ?VBNv/?NNPX9v JJ#~jRBy&1IN~jti word ghostbustingVBG|?5^NN5^I @JJd;O޿ i suffix No.VBDB`"RB rCD#~jĿJJMbNNP'1VBn?$ClۿNN)\@i+2 word change VBDV-?VBZSVBGFxJJ r @NNX9v?WDT;On?RBK7IN`"?NNS/$NNPʡE?VBClPDTmJJRMbXi+2 word inquiringNNzG?RBzGi word trainerNNOn?NNSOni-1 word warningNNSNbX9?NNQ?RBDli-1 tag+i word `` vulnerabilityNNCl?NNPCl i word novelFWX9vNN9v?RB|?5^JJrh|? i suffix 999JJ)\(CD)\(?i+1 word organizingNNPSh|?5?NNPh|?5i-1 tag+i word NNPS workersNNPS333333?NNS-NNPʡE?i word depositaryNNSuVNNFx?JJtV?i-1 word hemisphereVBNI +?VBDI +i-1 suffix nzyWDTd;OINd;O?i+2 word informativeJJ\(\@NN\(\i+1 word resurrectionVBN(\VBD(\?i word hypotheticalJJOn?NNOn i word vegasNN/$NNP/$?i-1 tag+i word NNS underscoredVBN~jtVBD~jt?i-1 tag+i word CC packagingNN{Gz?JJ{Gzi word statelyJJ}?5^I?RB}?5^Ii-1 tag+i word DT statelyJJ}?5^I?RB}?5^Ii-1 tag+i word NN basketballDTd;ONNd;O?i+2 word problem NN&1ʿCD-?PRP-ӿRBA`"?INQVBZ/$?VB%CJJp= ףPOS/$VBP/$@i-1 word feelsVBN~jt?VBD~jti-1 tag+i word DT friendNNʡE?JJʡEi-2 word acceptancesVBZd;O@RPxNNP^I +i+1 word olympiaNNP(\JJ(\?i+2 word richardCD+JJK7A`?VBZGzNNSjt?NNPK7A@RBSNNp= ףi-1 tag+i word DT rioNNPS{GzĿNNP{Gz?i-1 word laterVBFx?NNmVBNffffff?JJFxVBD1Zd?i-2 word weightedVBGbX9ȶ?NNV-JJS㥛?i-1 tag+i word DT notesNNSoʡ?VBZoʡi+2 word robertNNGzVBDZd;VBNE?JJB`"?NNS|?5^?NNPuV?NNPSzGVBGʡEi-1 tag+i word `` talkPRP$PnJJ?5^I VBtV޿VBP(\NN/$ @i-1 tag+i word , hopsNNS(\RB +VBZNbX9?i word commutesVBZRQNNSRQ?i+2 word upwardJJV-?RBV-i-1 tag+i word IN basementNNGz?JJGz i word toesNNSGz?NNGz i word quizVBPClJJRNN'1Z?i-2 word congressional NN1ZdJJX9vINX9v?DT&1ʿNNS1ZdVBDoʡ?VBNx&1?VBPK7A`?WDT&1?NNPmi-1 word subsequentNNS\(\NN^I +@JJ|?5^CD^I +߿i-1 tag+i word , winterVBffffffNNffffff?i+2 word wheelNNSMbJJOn?NN +i-1 tag+i word VBP furtherJJRx&1JJx&1?i+1 word matingJJ?5^I ?NN?5^I i-2 word appropriationWDTy&1?INy&1i-1 tag+i word JJ activatedVBN= ףp=?JJ= ףp=ҿi-2 word tenderVBN|?5^?JJ r?NNX9vVBDDlVBZ)\(̿i+2 word agonizeNNPS+?NNS+i-1 word thinksIN(\?DT~jtPRP$RQPRPRQ?RBSſi-1 tag+i word NNP paperNN= ףp=?NNP= ףp=i+1 word goodfriendJJ(\NNP(\?i-1 tag+i word VB lessRBX9vJJRMb?JJQRBRS?CC)\(i-2 word cocktailVBNˡE?NNˡEi+1 suffix xelJJK7VBDK7?i-1 word neutralizesNNSy&1?RBy&1i+2 word backerNNS\(\NN\(\?i-1 tag+i word VBP usedRB{GzVBNK7?JJCl?i-2 word sixthRBHzGNNHzG?i tag+i-2 tag `` MDVBMbX?NNʡEJJrh|NNPPn?i-1 tag+i word RB restructuredVBNrh|?VBDrh|i+2 word russianVBNsh|?NNHzG?JJZd;ϿVBD-i-1 suffix nzoVB~jt?VBP~jti-1 tag+i word DT strickenNNsh|?JJsh|??i word grazingVBGENNE?i-2 word binderVBGʡE?NNʡEi+1 word consecutiveJJGz?CDbX9RBRjtRBK7A`ſJJRjt?i-1 tag+i word IN conistonNNDlNNPDl?i word duplicatedVBNffffff?VBDffffffi-1 tag+i word VBZ ownedVBNCl?JJCli-1 tag+i word DT dominantNNT㥛 JJT㥛 @ i suffix xtsNNSx&?NNx&i+1 word cleanersNN/$?JJ/$i-1 tag+i word CC sufficientJJA`"?NNA`"i+1 word regalNNSZd;ONNPZd;O?i+1 word triggeredVBPNbX9?JJSNNP+?VBNbX9RBMb?NNd;O?i+1 word political NNS"~VBD!rhVBPSRB`"?VBG~jt?CCd;O?VBNQ@IN"~jNNPlVBrh|@RP9vJJ$C?NNB`"i+2 word cableCC{GzVBGL7A`пNNSZd;OVBN(\?NNjt?i-1 tag+i word VBD suggestedVBNS?JJSݿ i+1 word townVBP/$JJ+@NN/$?NNP+i-1 tag+i word IN paxusNNGz@NNPGzi-1 tag+i word TO charityVBNN?i-1 tag+i word NNP countsVBZ~jt?NNS~jti-1 tag+i word CC soundNN/$JJ/$?i-1 tag+i word RB applaudingVBGsh|??RBsh|? i+1 word liftJJ5^I ?NN5^I i+2 word resignationVB?VBP;OnڿCD|?5^NN|?5^?INˡEi+1 word unfixedWDTQINQ?i-1 tag+i word VBD goNNKVBK?i-1 tag+i word JJ southJJzGNNPzG?i-1 tag+i word NNS respectVBw/ԿNNw/? i+1 word nineVBNtV?VBPV-JJI +?IN rhѿVBV-?RPlҿRB(\?NN㥛 i-1 tag+i word DT stampsNNSK7?NNK7i+2 word composerVBD+?IN+i-1 tag+i word VBD greaseJJQNNQ?i+2 word switzerlandVBDA`"VBNHzG?PRPsh|?RB(\ȿJJS?NN-i-1 tag+i word VBP subsidizedVBN333333?JJ333333ۿi+1 word scenesNNX9v?JJRQIN'1Z?i+1 suffix kupVBNp= ף?JJNbX9NNPS?i word subcommitteesVBZ+NNS+? i-1 tag+i word -START- frankfurtJJR|?5^NNZd;ONNPJ +@i tag+i-2 tag RB INRPClDT+?JJS/$?RBS/$NNPZd;׿VBZE?VB+?CCmVBD rRBR㥛 ڿVBP$CVBNM@VBGtV?CDMbؿRBK7A` NNp= ף?NNS?5^I ?JJV-¿INd;OֿPDT!rh?JJRjt? i+1 word damnRB|?5^?JJ|?5^i+1 word annuallyVBN|?5^@NN +VBDV-JJK7AVB)\(?i-1 tag+i word JJ bureaucracyVBNN?i-1 word regularlyVB+VBP+?i+1 word diabeticsJJZd;?NNPSZd;i-1 word ceramicNNS"~?JJRX9vNN`"?IN~jtӿ i suffix SANNuVJJK7NNPA`"?i-1 tag+i word IN allowedNNSNNSffffffVBN/$? i word ivyNNPSmNNPm? i word shortNNS"~NNP#~j?VBʡE?JJ-'@NNNbX94+JJR +ֿVBNtVRBn @i-2 word homelessNNSZd;?JJR333333JJؿi word activatedVBN= ףp=?JJ= ףp=ҿ i word chewVB;OnVBP-?NNSh|?5NNx&1JJ(\ݿi-1 tag+i word NNP foundationNN$CNNP/$@NNPSjtܿi tag+i-2 tag CD ``NNPS`"?NNSZd;OPOSjtֿNN|?5^NNPjt?i-1 word makerVBN1ZdRBGzVBD1Zd?VBZx&1?NNSS㥛ܿ i suffix yer JJSNbX9VBP1ZdJJ rhNNS rhNNPSMbFW}?5^I̿VBZQNNP ףp= @NNMbX9 @CDGzi+2 word carefullyVBsh|?VBPoʡNNx&1@i+1 suffix lex NNPSjtԿJJS-INV-NNSq= ףpNNPB`"VBG~jt?NN?5^I ?RBS-?RBRv/?JJR;OnJJ/$ i-1 word careRBQֿINQ?VBD7A`?JJR333333RBR333333?VBN7A`i-1 tag+i word CC interferesVBZDl?VBV-NNSbX9޿i-1 tag+i word CD newcomersVBZvNNSv?i-2 word choseJJK7NN)\(JJS)\(?RBK7?i word sightingsNNSK7A?NNK7Ai word redemptionNN\(\?JJ\(\i-1 word trusteesVBNMbX?VBDMbXѿi+2 word russiaVBX9v@VBN(\NN/$CDZd;?i-1 tag+i word RB calledVBN ףp= JJ-VBD|?5^ @i-1 tag+i word NNS lowVBI +VBPPnJJ^I +@VBDV-ҿi-1 tag+i word : !HYPHENVBM¿NNV-VBN?5^I @CD|?5^ڿJJV-@NNSv/NNP rhi-1 tag+i word POS pretaxNNZd;@JJZd;i-1 tag+i word IN depictedVBNB`"?JJB`"ٿi word quislingVBG rhݿNNOn?JJ\(\i word paperworkNNGzֿNNPGz?i-1 tag+i word CC discussVBCl?VBDCli-2 word numbersVBP|?5^?RBffffff޿VBK7 i word wildlyRBRQ?JJRQi+2 word passesNN+?JJ+i-2 word consentVBA`"VBPA`"?WDT?INi-1 tag+i word -START- franklinNNPn?NNni-1 tag+i word WP sawVBPsh|?VBDsh|??i-1 tag+i word JJ backupNNoʡ?JJoʡi-1 tag+i word NNP shunVBPn?NNni-1 tag+i word DT ontarioNNv/NNPv/? i suffix siaNN rh?NNPjtUH9vi-1 tag+i word WDT caughtJJZd;VBDZd;?i-1 tag+i word TO treatVBd;O?JJd;O޿i-1 word penceVBP"~jܿNN"~j?i-2 word continueVBG㥛 NNPn?JJClVBZd;O? i suffix CDNN7A`P@JJʡENNP rhNNPSGzNNSNbX9i word disposeVBCl?NNCli-2 word maturesVBZ?NNSi-1 tag+i word JJ shotVBZmNNˡE?RBp= ףi word semiconductorJJV-JJRV-տVBZX9vNN}?5^I@RBli-1 word doyleVBDQVBZQ? i word there FWZd;O߿VBPzGJJ\(\ IN-NNSClRB!rh@NN'1ZVBDZd;VBNV-EXˡE}&@VBZV-NNPV-VBoʡi-1 word portfolioVBZGz?VBPtVNNSGzNNtV?i-2 word examinationJJ-?NNP-i-1 tag+i word RBR beginningJJSVBGS?i-2 word kremlinVBN?5^I ?VBD?5^I IN333333RP333333?i+1 word copyingVBNZd;߿JJZd;?i-1 tag+i word VBD irradiatedJJ;OnVBN;On?i+2 word hearingRBJ +?JJJ + i-1 tag+i word -START- primericaNNPSX9vNNPX9v? i word rimaVBPKNNPK? i-1 word ussNNrh|NNPrh|?i+2 word fundsVBT㥛 ?RBRClJJ333333JJRCl?NNV-?VBPK7A`UHmVBDw/?CCMbX9?INK7ADTm?VBGS?RBHzG@VBNףp= ?CDjtNNP(\Bi word redoingVBG}?5^I?NN}?5^I i word seoulJJrh|NNPJ +?NNPSZd;Oݿi tag+i-2 tag . NNSVBP+UH rNNh|?5?i+1 word almost RB(\?INzGRPK7AVBG= ףp=?JJʡENNMbXɿVBD-?POS= ףp=VBZ{Gz?NNSMbX?VBN/$VBPQi word ingeniouslyRB+?NN+i+2 word acresVBZjt?NNPx&1RBDl?IN^I +VBDjti+1 word burialJJ%C?NNP%Ci-1 tag+i word -START- meantimeRB+@NNjtNNPbX9i-2 word datesNN~jt?VBZ$CӿNNSB`"i-1 tag+i word DT oriolesNNV-NNPV-?i-1 tag+i word IN democratsNNPS}?5^INNS;On@NNPQi word mailroomNNCl?JJCl i suffix USYRBR~jtӿJJ1Zd?NNPI + i+1 word stepNNx&1 RBMbCDS?JJʡE @i-2 word workedNNSV-VBS?RBCl?JJMbؿINuV?DTx&1 i word beatenVB|?5^VBNHzG?JJw/ i word tonsNNS?5^I ?NNP?5^I i-1 word informedNNDl?JJDlRBK7ѿINK7?i-1 tag+i word POS fundNN|?5^?NNP|?5^i+1 suffix sumJJ"~jNNܿCD rh?i+2 word accusationsVBV-VBPV-? i suffix AmNNPMbVBPʡE@NNPS)\( i word bostikNNZd;NNPZd;?i-1 tag+i word IN least JJFxNNDlPDT{GzRBK׿RBS rh?JJSK@VBN/$JJRX9vINi-2 word olsonVBNh|?5VBDh|?5?i-1 word vaguelyWDTIN?i+2 word temptationPRP$|?5^ɿPRP|?5^?i+2 word photographicJJ-?NNP-ֿi word hardwareNNK7A`?JJy&1VBDGzi word beliefsNNQٿNNSQ?i-1 word microNNPS/$?NNP/$i-1 tag+i word PRP spentVBZ\(\VBPףp= ӿVBDp= ף?i-2 word departmentNNS(\?WDT/$JJRS㥛?INX9v@VBZX9vDTA`"NNPy&1@JJ)\(NNPSA`"NN;OnVBPRQ?VB|?5^RB/$?RPS㥛i-1 tag+i word -START- accordJJ~jtNNP~jt?i-1 word cyclingVBDI +?NNP;On?NN;OnJJI +ֿi+1 suffix ium WRBʡENNSL7A`NNPCl?VBG%C?VBNv RPʡE?JJbX9?INV-?DT1ZdJJR rh?VBʡENNPS ףp= ?NN㥛 i word slowerRBR~jtNNA`"NNSClJJR'1@JJjti word hopkinsVBZq= ףpտNNPq= ףp?i-1 tag+i word VBZ riskyJJ?NN i-1 word myCDS㥛?VBPClJJI +?NNSZd;O?NNPffffffVB/$NNL7A`@FWRQi+1 word identityNN5^I ?JJ5^I  i+2 word mayoNNSZd;O?CDZd;Oi-1 tag+i word TO decideVBzG?NNzGi-2 word partnerNN7A`?JJ&1NNPQi-2 word inquiriesJJd;O?NNd;Oi-1 tag+i word POS britishNNP+JJ+?i word destinedVBNHzG?JJHzGٿi-1 tag+i word CC amityvillesNNPS㥛 ?NNP㥛 i-2 word montpelierVBPGzNNPGz?i-1 tag+i word JJ goesVBZZd;?NNSZd;i+1 word performedNNS r?NN ri-1 word peladeauVBZV-VBDV-? i-1 suffix inNNSI +RBSףp= RBA`"ӿVBGS?NNP^I +?EX㥛 RBRRQ?JJS?5^I ҿJJRX9v޿WDTn?PDTV-INtVNNPSq= ףp?NNffffff?FWx&1PRPuV?CDx&1@JJ~jt?VBZV-DTHzG?RP|?5^?WP(\VBSCC{Gz@PRP$A`"?VBDClVBNjtVBPDli tag+i-2 tag VBP VBGRBClINCl?i-1 tag+i word VBZ crippledVBNK7?JJK7 i+1 word #VB|?5^VBG ףp= RBzG @VBNV-JJrh|?IN`"RPL7A`?i-1 tag+i word VB smokingNNv?JJvi-1 word seekingRBrh|NN1Zd @VBN(\JJREJJ?NNSrh|i-1 tag+i word RB formulatedVBN ףp= ?JJ ףp= i-1 word relatedNNPSZd;?NNSMb?NNP-#i-1 tag+i word -START- conventionalJJS?NNPS i suffix eitINA`"@VBZ?5^I NNS'1ZVB`"?NNQٿVBP`"JJjti-1 tag+i word VBD onePRP`"NNˡE?CD+?i-1 tag+i word . '''333333?POS333333i word trinovaNN1ZdNNP1Zd?i-2 word allowsNNSX9v?VBZX9vi-2 word auvilVBZh|?5NNPS{Gz?NNV-?JJv/NNP{Gz i word twNN㥛 NNPV-@VB㥛 DTQi-2 word frankVBZ}?5^I?NNP}?5^IVB~jt?NNjt?VBP~jtJJjti-2 word myersJJCl?NNClٿi-1 tag+i word , neverthelessRBPn?NNPni tag+i-2 tag VBP VBPRBR\(\?NNGz?JJR\(\߿JJMb?VBNK7i-1 tag+i word NNP catholicNNPST㥛 NNPT㥛 ?i-1 tag+i word `` blunderVBʡE?NNSʡEi+1 word airlinersJJ/$?NN/$i-1 tag+i word `` journalismNNv?NNPv i-1 word areVBN%C@VBZx&RP rhPDTT㥛 RBRx?VBGo!@VBDv VBPh|?5DT1Zd@NNSoʡCC"~RBSRQ?INClNNPSE?JJSNbX9ؿJJK7A@NNPm@VB~jtJJRʡEƿWDTxNN?5^I FWQRBK7A@EX/$i-1 suffix rkyNNMbX?VBDV-¿VBNi-1 tag+i word JJ vetoNNS;OnNN;On?i-1 tag+i word DT knotVBNmNNm?i-2 word loafersVBG+?NN+i+1 word judgesNN7A`¿VBD1Zd?VBNm?JJQ?INCl?DTClVBGzVBGףp= i+1 word gardensJJw/NNS㥛NNP|?5^?i-1 word bacillusNN7A`VBD(\NNS㥛 @i+2 word brusselsNNHzGVBN7A`NNSHzG?JJR7A`? i+2 word {RBK7A @INNbX9NNPK7A`?NNPSjtVBGq= ףpRP"~?PDTNbX9JJ~jtпVBDX9v?DT rh?VBDl?NNbX9ȶ?NNS|?5^VBN+߿VBP\(\?i word mothersNNSMbX?NNPMbXѿi+2 word recordedVBZnNNSn?NNPZd;OVBG(\NNS?VBP(\@JJy&1Կi-1 word legislation NNSMVBG?5^I ?VBNףp= ?JJ5^I IN|?5^VBDWDT/$@VBZ= ףp=?DT&1ʿi-1 tag+i word DT interestingJJoʡ?NNoʡi-1 tag+i word WDT competeVBZZd;OVBP(\@NNx&1ܿVBDxi-1 tag+i word JJ throughNNSʡEINʡE?i-1 tag+i word IN broaderJJRS㥛@NNS㥛i word boardroomsNNSV-?NNV- i word mergedNNrh|VBN rh?JJʡEVBD`"?i-2 word affidavitVBrh|NNrh|?i+2 word argumentsVBZQVB)\(?VBNl?RBlVBD333333ÿi-1 word riverVBNʡENN/$?VBD`"i-1 word genevaNNQ?NNPQi-1 tag+i word PRP$ lostVBN/$?JJ|?5^NNQi-1 tag+i word , undersecretaryNNd;O?JJd;Oi+2 word fleetRPV-?JJ+INCli word obligattoNN#~j?CD#~jԿi-1 tag+i word , beginningVBG㥛 ?NN㥛 ҿi-1 tag+i word IN showtimeJJQNN9vNNPZd;?i-2 word abolishedJJ~jt?VBN;OnRB~jtVBD;On?i-1 tag+i word -START- mitiNNNbX9пNNPNbX9? i suffix 9-ANNPL7A`@JJnCD&1 i suffix rmoNNP?RB{GzNNQ޿JJ)\(i-1 tag+i word -START- casinoNNOn?NNPOni-1 tag+i word VBG resolutionNNSݿNNPS?i-2 word exclusiveVBZ\(\NNS\(\?VBN-?RBOnVBD= ףp=i-2 word celebratesJJ5^I ?CD5^I  i suffix obsNNSQ?JJClNNˡECD(\NNP333333@i+1 word valleyVBD^I +?VBNRQJJv/?NNPX9v?NNPSX9vNNq= ףpi-1 tag+i word NNP crashWDT(\NN(\?i word absoluteNNy&1JJy&1?i-1 tag+i word NN earlierJJRjtNNZd;ORBRʡE @RB/$@VBNףp= i word concededVBN|?5^VBD|?5^?i word rousselJJS㥛NNPS㥛?i-1 tag+i word RB releasedVBZClVBNCl?i+1 suffix lbyVBGKNNPK?i-1 tag+i word NN filledVBNʡE?VBDʡEi-2 word economiesNNX9v?NNPX9vi+2 word edisonJJ1ZdNNP1Zd?i-1 word stormPDT(\ȿVBD(\? i word manicNNPSx&1ԿJJ(\NNPn@i-1 suffix ickNNSn?NNPGz?NNPS rhRPB`"@RB{GzNNQ?JJ5^I INuVi+1 suffix eksJJFx@INmNNStVVBG-NN/$?VBD/$WDTm?i-1 tag+i word , franchisingVBGMb?NNMbi-1 tag+i word NN stateswestNNPSRQNNPRQ?i-1 tag+i word PRP preflightVBPQJJQ?i word strikingVBG$CJJ r@NN$Ci-1 tag+i word `` immediateNNPPn?JJPnпi-1 tag+i word PRP brotherNN(\?DT-RBR- i suffix igoNNPS&1ʿNNSZd;ONNK7ANNP^I +? i-2 word wrapJJSSNNuV?JJ rhݿi-1 tag+i word VBD wallowingVBGuV?NNuVi-1 tag+i word RP motorNN rh?JJ rhi word fleeingNNvVBGv? i suffix 486NNPw/@NNPSoʡݿNN/$CD(\@JJ- NNSFxi word wordplayVBѿNNʡE?VBDX9vi+2 word reviveNNSGz?NNGzi tag+i-2 tag CD RB VBN/$JJ~jt?NNSB`"@RBQNNHzGVBDNbX9 @IN-?RBR;OnڿVBףp= NNPSX9v?VBPEJJR;On?NNPʡEi-1 tag+i word '' makeVBPmݿVBm?i-1 tag+i word VBG profitNNSX9vNNX9v?i+1 word productivityVB-?NN-i-1 tag+i word IN westNNPSʡEJJ ףp= ?NNPli+1 suffix ibsPRP$B`"?PRPB`" i word gasesVBZ?5^I NNS?5^I ? i-2 word bondRBRK7A`RB?5^I ?JJRK7A`?VBZ~jt?DTIN\(\NNP&1RPQNN1Zd?VBDJ +@VBNV-߿JJlNNS~jtVBPX9vi+1 word wildcatJJ`"?NN`" i+1 word waryNNp= ףVBPp= ף?i+1 word towerNNPNbX9?NNMb?JJh|?5i+2 word steel VBNp= ף @RP|?5^NNS ףp= VBV-?VBDtVJJMbINp= ףNNPL7A`?VBGPnNNsh|?? i word atrunNNSʡEJJ&1?NN{Gz i-1 tag+i word -START- intelogicDTOnNNPOn?i-1 tag+i word PRP owedVBZGzVBDGz?i-1 tag+i word NN understandsVBZZd;?JJZd;i-1 word northernNNSʡENNV-NNPl?i word departmentsNNS)\(?NN)\(i word falteredVBNy&1VBDy&1?i-1 tag+i word `` franklyDT ףp= RB"~j?NNnNNP(\?i-1 word expansionaryJJQѿNNQ?i-1 word maturePRPJ +RBzGVBN㥛 ?JJ~jtNNPGz?i-1 tag+i word DT prodigalJJ~jt?NN~jtؿi-1 tag+i word IN broadcastersNNPStV?NNSQNNPjti+1 word knownsRBCl?NNPCli+1 suffix bigVBD(\?RBRS㥛VB+ӿRBl@VBNQVBP;On?JJRS㥛?DTOn?CDQ?VBG~jtx?RBSKPRP-ӿINX9vVBZ9v?NNSSNNI +?JJSK?JJB`"POSjt?NNPx&i+2 word hondurasVBPmNNm?i+2 word insurerVBK7VBPK7?JJ|?5^?NNP|?5^ i+1 word sell NNx&1VBPnWDT;On?JJMb?IN;OnNNSx&1?MDRQ?RB333333?VBDRQi-1 tag+i word CC jan.VBT㥛 @NNP/$VBDMbXi-1 suffix endWDT~jt?VBGzG?NNS)\(ܿRBMbNNS?PDTMJJI +INnWP!rh?NNPtVVB;OnFWoʡRBR\(\VBNMbX9PRPS?DT r?VBZJ +@RPEԸJJR\(\?VBDMbX9?i-1 word biggerNNPtVNNCl?JJR!rh̿JJʡE i-1 word ourNNCl?DTtVNNSQ?RBSRBS)\(?VBGX9v?JJS)\(JJR/$?VBZ(\VB+VBNffffff?JJ= ףp=?NNPZd;׿FWK7 i word fervorNN +?JJ +i-1 tag+i word JJ waitingNNtV?VBGtVο i suffix aicJJʡE?NNʡEi-1 word reformsVBD1ZdVBP rh?VBG"~?VBN1Zd?NNSi+2 word sunnyvaleVBZrh|߿NNPS!rh?NNP|?5^ҿi-1 tag+i word CC flipsNNSFxINV-VBZNbX9?i word bostianJJ rhNNP rh?i-2 word nikesVBDV-VBNzG?JJI +i+2 word remediesDT&1IN&1? i word boastsNNSʡENNjtVBZMb@i+1 word intrusiveRBRCl?JJCl i word need VBNn@MDCl@VBK7@NN @VBDMbXRBS"~jNNPK7RBףp= VBPV-@JJSVBZ= ףp=NNSQi-2 word wellsVBGzG?JJzG i suffix DDVBtVֿJJT㥛 NNP|?5^? i word murataNNS(\NN㥛 ҿNNPZd;O?i-2 word cleverVBNvJJv?i-1 tag+i word NN confidenceNNSNNMb?RBK7ٿ i+1 word seasNN`"?JJ`"i-2 word immunityVBClVBGClJJQ? i-1 word help RBʡE?VBG/$VBDHzGRPbX9JJ|?5^NNv/ͿVBPClINQNNPZd;?VBK7@i-1 tag+i word RB producedRBV-VBDJ +VBNPn?i+1 word burstJJ&1?NN&1i-1 tag+i word CD stoodNNjt޿VBDjt?i+2 word contrasVBNSſVBDS?i-1 word industrialNNS(\ȿNN +޿JJMNNPQ?i+2 word shallNNx&@VBD}?5^I̿IN|?5^?VBZzGDTʡENNPq= ףpVBOn?i-1 tag+i word NN sentJJClVBNL7A`@NN#~jVBDK7A`տ i word plenty NNSK7NNZd;?VBD!rhCDRB/$@VBZ~jtVB(\JJrh| @VBNni-1 tag+i word , bleachedVBNw/JJw/?i-2 word publishersNNP`"DTZd;ONNPS`"?INZd;O?i word mandatedVBN= ףp=ʿJJx&1VBDK?i-2 word carnivalNNPSx&1?NNPx&1i-1 tag+i word CC squintedVBN7A`VBD7A`? i-1 word goes VB ףp= FW= ףp=RBx&1 @VBGDlRP;On?JJv/?NNSRBRSIN r?i+1 suffix ubsNNm?NNPmi+1 word settleNNK7A?JJK7A i suffix oxNNSMbX9NNMbX9? i word spreeNNOn@JJ1ZdVBD/$i-1 tag+i word NN bandwagonVBrh|NNQ?INʡEi-1 tag+i word IN gnpNNMbX?NNPMbXi+2 word nationwideVBN{GzJJ#~jRB1Zd?IN/$ݿNNK7A`?i-1 tag+i word DT misleadingVBGh|?5JJh|?5?i-1 tag+i word NNP parliamentNNZd;ONNPZd;O?i word lubricantNN~jt?JJ~jti+1 suffix ods NNPK7VB/$VBD㥛 JJSJ +?NNSoʡJJR\(\ @VBNQ?JJZd;ϿNNPSV-ҿVBG"~ڿNN}?5^IRBR?5^I i-1 tag+i word DT requestVBK7A`NNzG?RB"~ji word starterJJMb@NNMbi-1 tag+i word POS mindNN%C?NNP%Cܿi word businessesNNS= ףp=?NNP= ףp= i-2 word lasVBZp= ףVB +?NNSxJJ%C?NNE i-2 word fearVBG~jt?JJQNNNbX9?RBClۿINCl?NNSV-?i-2 word impoundedNNSRQ?JJRQi-1 tag+i word JJR newsprintJJy&1NNy&1?i+2 word topicJJ333333VBGzNNHzG?i+2 word cheatingVBZ'1ZNNS'1Z?i-1 tag+i word VBZ higherJJR-?RBR-i-1 tag+i word POS overNNQIN rhRPx@i-1 tag+i word VB determineVB`"?JJ`"i-1 tag+i word DT inhumanJJE?NNEȿi-1 tag+i word DT discothequeNNV-?JJV-i-1 tag+i word ) reportedVBNRQVBDRQ? i-1 word gonTO1Zd@RP㥛 JJoʡNNK7i word wrightingVBGGz߿NN"~j@NNPxi-1 word expect NNPSQNNMbX?JJR +?RBp= ףDT rhտVBEԸJJ/$ѿVBNCl?IN rh?NNS$CNNPOn?i-1 tag+i word RB reflectedVBNKJJ~jtVBDV-?i+1 word conesJJ333333NN333333?i+2 word supposedRBDlѿDTuVͿJJ ףp= NN/$?RBRDl?WDTuV?PRPV-? i+1 word amidJJOnRP~jtRBOn?NN1Zd?JJS1ZdVBN~jt?i-1 word taxesVBNˡEVBP㥛 WDTCl?JJZd;?INClVBlVBDˡE?i-1 tag+i word DT conceptNNV-?JJV- i word deviseVB?NN&1JJ/$i+1 word shaneNNA`"NNPA`"?i-1 tag+i word : billNN+NNP+?i-1 tag+i word CC promptingVBGI +?NNI +ֿ i+1 word fitsRBV-߿RBRSJJR|?5^?i-1 word subsidiariesVBNX9vVBPv/?RB;On?NNSZd;OJJ333333VBDʡE?i-1 tag+i word IN dailyRBX9v?NNvJJ&1? i word fatahNNSMbXٿRB|?5^NNT㥛 ?NNPK7i word exhaledVBNX9vVBDX9v?i-1 tag+i word IN republicansNNPS7A`?NNS7A`i+2 word plungedVBPlNNSHzGJJ+?NNKNNPʡE?i-1 tag+i word PRP$ enforcementNNh|?5?JJh|?5 i suffix RDSNNPSFx?NNSK7A?NNV-NNPq= ףpi-1 word inspirationalNNZd;O?JJZd;Oi-1 tag+i word `` salesNNS^I +?NNClNNP~jti+2 word showsRBClǿNN+@VBNK7JJSINCl?NNS/$NNPV-? i-2 word foolJJuVտNNuV? i-2 word $WDTT㥛 ?CDV-RBQVBDFxCC;On?DT+߿NNPQ@VBNʡE@JJSտVBZ~jtNNSV-VBG#~jԿNNCl?INy&1?i-1 tag+i word IN taxpayersDT1ZdNNS1Zd?i word yardworkNNCl?NNPClѿi-1 tag+i word DT mercNNPSL7A`NNMNNPV-? i suffix AIDVBDjt?NNPjt i word herbalJJ333333?NN333333i word communiquesNNS(\µ?VB(\µi+2 word consequentJJV-׿NNQ?VBNZd;O i word sortJJ rhIN(\NNSV-VBp= ףRBX9v?NNn@VBP'1Zi-1 tag+i word VBP knownVBN/$?JJ/$i-1 tag+i word NN besideINQ?VBDQݿi-1 tag+i word VBN shortVBNI +RB= ףp=ڿJJ+?i-1 tag+i word -START- despiteRBzGNNP̿PRP$QIN7A`?i+1 word ogonyokNNHzGMDHzG?WRBHzGJJHzG?i-1 tag+i word IN roughNNS ףp= JJ7A`?RBd;Oi-1 tag+i word RB sayingVBGQ?NNQi+1 word sandyVBZQ?DT-NNSQIN-?i+1 suffix lisNNPnNNPSnNNʡE@JJ;Oni-1 word attendantsVBPX9v߿NNS㥛?RB/$NNPGzVB"~?i-1 tag+i word NNS aerobicJJ㥛 ?IN㥛 i-1 tag+i word NNP patientsNNPSA`"?NNPA`"i word cheapensVBD~jtVBZ~jt?i+1 word payrollsNNPMbпNN(\?JJQi-1 tag+i word TO requestsVBx&1NNSx&1?i-1 tag+i word IN soapNNSw/NNn@JJx&i-2 word interlopingVBq= ףpݿNNq= ףp?i-1 word themselves VBA`"JJv?NNQӿVBDp= ףWDTw/RB㥛 INT㥛 ?VBN= ףp=?VBP"~j?VBZKi-1 suffix uzzRPuVNNS(\ؿRB?5^I ?NN(\?INX9vi-1 suffix hisVBGʡE?VBZ+w@PRP= ףp=ڿVB)\(CDFxINL7A`MD~jt?NNPS rпVBNI +VBPSDT$CCCnJJR"~jVBDRQ?JJ{Gz?NNP+RBS/$?RBRp= ףJJS(\?WDT$C?NNDl @RB&1NNS!rhi+2 word spokeDT|?5^?RBʡENN9vi word contraceptiveJJq= ףpVBPM¿NN|?5^?i-1 word promptVB"~ڿNN"~?i-1 tag+i word NNS multipleNNSbX9NNbX9?i-1 word scurryingRP~jtIN~jt?i+1 word commentRBRy&1JJV-@NN}?5^INNPxi-1 tag+i word , subliminalVBNvJJv?i-1 word deficiencyJJ(\ҿNN(\? i word suitNNS\(\JJZd;NN|?5@VBD/$VBPˡEԿRB ףp= i-1 tag+i word NNS overseasVBPPRPZd;JJx&1?IN/$NNSZd;RB5^I @NNV- i word airVBV-NNzG@JJni-2 word convictedVBGMb?VBNQ?JJ?5^I VBDʡEտi-1 tag+i word JJ analysisNNS;OnNN;On?VBP;Oni-2 word labradorJJ1Zd?NN1Zdi-1 tag+i word NNP protestedVBNVBD?i+2 word prisonerVBPV-?VBV-i-1 tag+i word DT messengerNNI +?FWI +i-1 tag+i word DT subcompactNN?JJi-1 word settledIN%CRP +RBV-@ i-1 word warmNNZd;O?RPMbX9?JJZd;ORBMbX9 i suffix uchNN\(\PDTET @SYMB`"VBPRQVBN%CDTX9vJJ\((@JJRX9vRB+@VBZjtNNSMbVBDClIN/$NNPK7VBB`"PRPSCDCl i word defiedVBDS?VBZS i word sayNNPS +NNClUHQ@VBZQINSNNP#~j?VB/$@VBDSCCVBN)\(VBPMb@RBh|?5NNS?5^I JJi-1 tag+i word CC killedVBN)\(?VBD)\(i-1 tag+i word IN malesNNS!rh?VBNrh|NN|?5^i-1 tag+i word VB whatWPGz?WDTS?IN"~i+1 word sophisticatedWDTjtRBsh|?տIN(\?DTٿRBS333333?JJS333333RBR~jt?JJR~jti-1 suffix rmyVBClWDTh|?5NN\(\?JJoʡտINh|?5?i-1 tag+i word -START- stephenNNSV-VBNQNNP rh?i-1 word pollyNNPSENNPE?i-2 word paymentUHtVJJQ޿FWtV?NNQ?i-1 tag+i word NNP daysNNPS#~j?NNP#~ji-1 word experimentallyVBNˡEVBDˡE?i word hundredthJJʡE@NNʡEi-1 tag+i word `` callRBd;ONNv߿NNP`"οVBl?i-1 tag+i word IN socialJJL7A`NNPL7A`?i-1 tag+i word WDT looksVBZq= ףp?VBDq= ףpi-1 suffix unaNNSQVBGK7NNT㥛 ?i-1 tag+i word CC doVBZy&1VBV-?VBPx&1?VBDCl i-1 tag+i word JJ photofinishingVBG"~NN"~?i-1 tag+i word NN monitoredVBN~jtVBD~jt?i-1 tag+i word DT authorizationNNx&?JJx&i word approvedJJףp= ۿIN +VBDS㥛@RPxVBNx? i-1 word bassJJMbNNPMb?i-1 tag+i word NN andCC?NNPi-2 word butterCC^I +RBPn?NNmi-2 word sneakingJJ+?NN+i+2 word trusteeNN?NNPi-1 tag+i word NN performerNNSx&1ԿNNx&1? i+1 word her NNS"~jRPn?JJq= ףpNN;OnIN9v@VBZn@VBS?VBDy&1,@VBN#~jRBOn i-1 word sitsRB;On?JJ;Oni-1 tag+i word NNS approachVBPNbX9?NN+?RBNbX9IN+i-1 tag+i word CC licensedJJ%CVBDS?VBN(\?i+2 word locatedNNPSRQ?NNPRQi-1 tag+i word NN clinicsNNSK7?NNK7i-1 tag+i word DT wideningVBGw/?JJZd;NNʡEӿi+2 word disagreeJJA`"?NNA`"i-2 word postponedVBN!rh?JJ!rhܿi-1 tag+i word NN bailoutNNZd;O?INZd;Oi-1 tag+i word IN ballooningVBGrh|׿NNrh|?i-1 tag+i word -START- asideDTV-RB\(\@NNni word drasticVBPxֿJJZd;NN!rhRBx&1@i-1 word crawfordVBZK7?NNSK7 i+1 suffix m.NN?JJRJJHzGNNPHzG?i+2 word considerationsDT(\IN(\?i-1 tag+i word -START- salesNNSS㥛?JJZd;CD+ӿi word rudimentaryJJ333333?NN333333i-1 tag+i word NNP elliottNNP;On?NNPS;Onҿ i word ravineVBClѿNNPCl?i+1 word locatingVBZQ?NNSQi-1 tag+i word IN evidencedVBNS?JJSi+2 word friendsVBNjt?RBw/INʡE?i-1 word futuristicNNSCl?JJMb?NNSi+1 word field NNJ +RB?5^I INZd;ODTZd;O?MD^I +׿NNPSS㥛JJn@VBGQNNPS㥛?i word cornersNNPS?NNPi-1 tag+i word -START- ballyRBHzGNNPHzG?i-2 word headsNNMbXJJL7A`?NNP= ףp=i-1 tag+i word IN financierNNZd;?JJZd;i+1 word executionJJʡE?JJS+?RBS+VBNʡEi-1 tag+i word NNP booneNNPSx&1̿NNPx&1?i-1 tag+i word -START- marginNNS?JJSi word nullifyVBPA`"?NNS{GzNNn i word cameraNN\(\@JJK7ANNP!rhi-1 tag+i word PRP reserveVBPMb?VBMbi word housekeepingVBG?5^I NN?5^I ?i-1 tag+i word NNP schaferNNPSENNPE? i+2 word tunePRP$+?RB+i+1 word allegesNNZd;?JJZd;i-1 tag+i word DT cleanJJCl?NNCli-1 tag+i word IN leadsNNSx&VBZx&?i+2 word violationVBNbX9RBNbX9?JJܿNNP?i+2 word subjectsVBx&1?NNx&1i-1 tag+i word NNP etCCq= ףp?NNV-JJX9vFWbX9?i-2 word companiesVBD;OnJJSV-?IN(\VBG +?RB/$@DTX9v?NNS+?NN&1JJR^I +WDT-CDjtVBN;OnNNPSQٿRPS㥛?FWףp= RBSV-VBP%C?PRP~jtJJS㥛?VBCl?NNPQ?i word polystyreneJJʡENNʡE?i+2 word packagesVBNCl?JJCli+2 word quarterNN(\RBB`"@INKDTʡERPEؿJJ(\?i-1 tag+i word CC helpVB rh?VBP#~jԿNNffffffi-1 tag+i word IN stunningVBG5^I JJʡE?NNoʡſi-1 tag+i word VBP conditionalVBNrh|JJrh|?i-2 word stedtVBN +?VBD +i+1 word racketsVBNQNNQ?i-2 word optimisticVBD-?VBZmVBPm?VBN-ƿi-1 tag+i word : bernNNPsh|??JJsh|?i-1 tag+i word JJS makersNNPSZd;ONNSZd;O? i+1 word agoINˡEJJS㥛NNS+?NN~jt?RBPn? i+2 word fendVBZQ?NNSQi-1 word phasedINX9vRPX9v@i-1 suffix eltJJ +?JJRJ +RB +RBRJ +@i+1 suffix irlNNK7A`NNPK7A`?i word plainlyJJp= ףRBMb@NN+i-1 tag+i word NNP internmentNNK7A`?JJK7A`i word medicinesNNP~jt?NNPS~jti-1 tag+i word JJ namedVBNB`"?VBDB`"i-1 tag+i word , reminiscentJJ+@NN+i-1 tag+i word RB slowVBP|?5^ڿVBNQJJ|?5^?i+2 word foundationNNPZd;?RP;OnJJZd;IN;On?i-1 tag+i word , stoneRB5^I NNP5^I ?i+2 word lastsNNZd;?NNPZd;i-2 word satisfactionJJK7INK7?i-1 tag+i word DT upperJJ/$?NN/$i-1 word koreaVBDrh|?NNPrh|i-1 tag+i word JJ moreRBRRQNN&1JJRh|?5 @i-1 tag+i word DT typesNNSjt?NNjti word conformingVBG?NNi-1 tag+i word CC olderNNDlJJRQ@RBx&i word draftedVBDClٿVBPClٿVBN~jt@JJ/$ i-1 tag+i word PRP$ aeronautical i word chopVBx&?NNx&i+2 word cardinalNNQ?NNPQi word lackeysNNS}?5^I?JJ}?5^Ii-2 word differenceNNSx?JJv?NNPX9vi-1 tag+i word VBP unwillingVBG$CJJ$C?i-2 word deliverVBNQ?JJQJJR/$?RBR/$i+1 word stodgyRBʡE@NNPʡEi-1 suffix snaNNDlNNPDl?i-1 tag+i word VBN terroristJJʡE?NNʡEi-1 word resinVBZK7NNSK7?i+2 word arsonVBG7A`NN7A`? i word '80sCDMb?NNS|?5^?PRP|?5^NN~jtNNP$Ci-1 tag+i word VBZ carriedVBNV-?NNV-i-1 tag+i word DT concludedVBNuV?JJuVi word ourselvesVBZMbXNNSxPRPClg@RPJ +i-1 tag+i word CC glaresNNS~jtVBZ~jt?i+2 word every JJR|?5^?JJjt?VBZNNZd;O?VBG;OnRBRQ?IN= ףp=VBNsh|??VBPsh|??WP"~ڿNNS?VBsh|?NNPvi-1 tag+i word VBD ragNN9v?VBNnJJV-Ϳi-1 tag+i word JJ columnsNNS7A`?NN7A`i-1 word classNN/$?VBD/$޿JJffffff?DTX9vֿNNS'1ZNNP^I +ǿ i-2 word tendVB;On?NN;Oni+1 suffix pazNN5^I JJ5^I ?i+1 word gainedNNPSʡENNS5^I NNx @RB333333NNP/$i-1 tag+i word VB strictNN&1ʿVB+JJM?i-1 tag+i word POS reportedVBN= ףp=VBD= ףp=?i-1 tag+i word VBZ costJJ#~jVBN ףp= ?NNʡE?i-2 word total DT\(\߿JJNbX9NNNbX9?VBDS㥛?VBNbX9WDTS?IN r@PDTK߿RB rVBZQӿNNS/$i-1 word otherwiseJJRClJJM?NNKi+2 word unsuspectedVBZʡE?NNSʡEۿi+2 word earlier RBClINbX9?RP?VBGX9vJJHzGVBN\(\NNSn@NNPZd;O NNPSX9v?NN{Gz@VBDffffff@ i-2 word loudJJm?NNmi+1 word right NNPQVBP1ZdPRP`"?NNSCl?NNx&1?VBNMb?JJ!rhINA`"DT/$VB$C@NNPS(\RB/ݤ@i-1 tag+i word NNS respectableJJ+?VBP+߿ i word zincNNtV?CDtVi-1 word croppedRPx&1?INx&1i-1 tag+i word TO protectVB?JJrh|NNMbi-1 tag+i word RB failsNNSZd;OݿVBZZd;O?i word meltingJJrh|߿VBGPn?NNHzGi-1 suffix risPOSS?JJS?VBZSNNS-?NNP(\VBClѿNNPS"~j?NNOnۿi+1 word doctrineJJMb`?NNPˡE?NNuVi-2 word appointedNNSKNNK?i-1 tag+i word JJ winsVBZNNSB`"?NNʡE i-2 word hourNNPw/NNPSMbX?VBGK7ARBS㥛ܿNNˡE?JJy&1NNS(\i-1 word bondholdersVBOnVBPOn?i+2 word wisconsinNNPS rNN/$NNPjt?i-1 tag+i word CC agrochemicalNNPn@JJPni+2 word groupNNP-'@WDT^I +VBZx&1?NNSx&1?INX9v?NNPSn RBQ?NN}?5^ICC"~jVBN)\(JJRX9vJJv?VBuVCDGz?VBDZd;Ͽ i word buzzNNh|?5?JJh|?5 i-2 word pa.NNK7@VBN"~JJK7VBD"~?i+1 word disbeliefNNd;ORB rINGzVBPGz@i word hammeredVBN/$?VBD/$i-1 tag+i word -START- starNNP9vNNSHzGNNB`"JJS?i word concertosVBPGzNNSCl?NNZd;OǿVB+i-1 tag+i word RBR eclecticJJ333333?NN333333 i+1 suffix tvVBN'1ZCDJJK7@IN$CDT$C?NNP%C@RBNbX9NNv i suffix LINJJK?NNPKǿi+1 suffix ete VBZp= ף?NNSp= ףNNPv/@VBsh|??FWףp= CD#~jܿWDTl?JJS㥛?INˡE?DTlNNxVBDMb@VBNV-i word potholesVBZI +NNSI +? i-1 word ;INd;ONNPSHzGVBGV-?VBD+VBNv/?VBP(\WDT?RB1ZdJJ|?5^CCK7A@NNSʡE?VBHzG?PRP"~j?DT̿PRP$ʡE?NNP r?NNGzCDq= ףp?VBZGz?i-1 word transferredJJS)\(?RBS)\(i-1 tag+i word DT sectionNNP-NN-?i word cities\/abcNNPSOnNNPOn?i-2 word sweepingJJffffff?NNPffffffi-1 tag+i word DT precisionNNE?JJEؿi word redefinedVBNK7VBDK7@i-1 tag+i word RBR momentumJJ?5^I NN?5^I ? i word acceptVBDq= ףpVBP ףp= @RBEؿINx&1 VBK7A@RPI +i-2 word trulyVBP)\(NNSGzֿJJl?NNK7A`ݿi+1 word obligationsNNI +?JJI +ֿi word recognizableJJn?NNni-1 tag+i word IN dartNNHzG?JJHzGi+1 word awaitedVBZ/$NNS/$@VBDi+2 word weldingRBRsh|??JJRsh|?i word revolvingVB̿VBG!rhJJZd;@NN+ i suffix cilNNPSʡENN!rh@VBN^I +JJˡENNSClٿNNPn?MD&1i-2 word pointingVB333333JJ333333?i-1 tag+i word JJ sciNNP?CDi-1 tag+i word IN generalJJ rh?NN^I +RB-ӿNNPK?i+1 word officer CD?VBPK7NNPx&1ȿJJV- @NNGzRBINClVBClVBG +?i-1 word budgetaryINK7VBZ;OnҿNNK7?i-1 tag+i word DT bilbreyNNPnNNPPn?i-1 tag+i word VB aroundRPS㥛 @RBx&1NN^I +VBNQJJQ޿INX9v?i+2 word roostRB)\(?NN)\(i tag+i-2 tag VBP ,NNMbVBNˡE?VBPV-JJ +?RPMb?JJSS?VBG'1Z?RBZd;O?VBD1ZdRBR1Zd?IN/$NNSSӿJJRv/?VB(\ҿWDTZd;O׿DTMbX?i-1 word liberalNNPK7ANNPS-?NNS?5^I ҿJJʡE i+2 word us$NNS333333?NN?JJ333333i tag+i-2 tag VBP VBDNNSV-?VBN rhNN333333?i-2 word attitudesRBSq= ףp?JJSq= ףpi word engineeringNNPSGzNNPGz?i+1 word helicoptersIN(\?VBG#~jJJh|?5NNNbX9NNP#~j?i-1 tag+i word , startingVBGx&?NNx&i+1 word profits VBN(\?NNP +?VBGˡERB}?5^INNQVBPT㥛 пJJA`"?IN~jtVBuV?i+1 suffix owdJJx&1NNx&1?i-1 tag+i word VBP toldVBN?VBD i-2 word high JJuVIN+?NNS+?VBJ +VBGNN= ףp=VBNL7A`尿CD\(\RBL7A`?VBD'1Z?VBP5^I @WDTHzGVBZQi-1 tag+i word NNP australianNNPSK7A`տJJMbXNNPjt@i-1 tag+i word DT governorNNSI +NNL7A`?JJrh|i+2 word hopedNNSn?NN&1NNPFxi-1 word straussVB+VBPGzNNSCl?NNZd;Oǿi-1 tag+i word IN turnNN;On?JJzGRBCli-1 word accuratelyVBx&?VBPx&VBNK7A`VBDK7A`?i+1 word evaluationVBzGJJS)\(ܿJJ{Gz? i-2 word yenRPDlRB+?NNʡE?VBD+?VBN+VBPy&1JJZd;OݿINl? i suffix i.fVBDlJJ-?NNSi-2 word hodgesNNRQ?RBRQi+1 word remarkVBGSſJJCl?NNsh|?i-1 tag+i word IN purchasingVBG333333?NN333333ÿi+1 word glamorousRBR|?5^?JJ|?5^i-2 word grantNNP)\(NNPS)\(?RBoʡ@NNʡEVBDClVBNV-׿JJK7i word dynamicsNNPv/ @NNPSS㥛NNSMb?NNSi word skywardNNGzRBGz?i+2 word digitalVBNxJJx? i word velvetNNS+NN+?i-1 tag+i word NN donnelleyNNx޿NNPx?i+1 word presentedWDTx&1?INx&1NNS"~j?VBZ"~j i word slouchNNMb?RBRQJJ{Gz i word throwsVBClVBD rVBZx&1?i-1 word overheadVBZZd;NNSZd;?i-1 tag+i word RB embarrassedVBN|?5^ٿJJ|?5^?i-1 tag+i word RB downtownJJ?VBN-ۿRBS˿i-1 tag+i word -START- netNNZd;O@NNPxiDTB`"JJ`"@i-1 word universallyVBK7A`VBPS?JJ%CԿ i word pieceNN;On@NNS|?5^JJ|?5^RBˡE i-2 word lieVBZd;?VBDZd;i+2 word unlikeDTʡE?INʡEi-1 tag+i word NN chainsVBZENNSE?i+2 word traditionallyNNK7?JJK7 i+1 word :VBG rhVBN-?VBPZd;OJJX9vNN-@RBoʡտRPMbFWx&NNP+ RBR?5^I ҿNNPSOn?JJSh|?5޿DT r?VB!rhԿRBSh|?5?INM?VBD rhVBZS?NNSGz.@CD+EXh|?5JJR5^I i+1 word masseJJK7A`FW?VBMbX9 i word denialNNQ?JJQ i suffix fiaFWGzRBp= ףNNSʡEͿNNPx&1?JJx&1NNJ +?i-1 tag+i word POS briefNN +?JJ +޿i+2 word disciplineVBZ&1?NNSB`"ٿRBKi-1 tag+i word PRP turnsVBZʡE?VBPSۿVBD= ףp=i-1 tag+i word CC culturalJJ(\?NN(\ i word forestJJSlNN~jt?RBV-߿i+2 word worldRBS㥛?PDTE?NNSQ?RPoʡNNp= ףпRBS-VBP$CINV-@NNPCl?VBD|?5^ڿJJS-?VBZ333333DTEJJVBNn@i-1 tag+i word DT cheapJJ`"?NN`"޿i word corningVBGbX9ֿNNPbX9?i-1 tag+i word `` recklessJJ}?5^I?NNMFWZd;߿i-1 tag+i word RB nameJJK7AпVBʡE?NNDlVBNi+2 word information VBP$CJJ rhDTX9vNNS~jtNN+VBD\(\?VBN\(\NNP7A`?VBuV?RB~jt?VBZX9v?i-1 tag+i word NNS spentVBPףp= VBNV-VBDL7A`@ i-1 word rankNNStV?UHPnNNPn?VBZtVi-2 word theoriesVBDxJJJ +?NNd;O?i word venturesomeJJCl?RBCli-1 tag+i word , changedVBNrh|JJ?5^I VBDK7A@i-1 tag+i word NN enteredVBNd;O޿VBDd;O?i-1 tag+i word NNS setVBPy&1?VBNMbX9NN!rh?VBD +?i word testifiesVBZ\(\?NNS\(\ i+2 word edgeVBl?RBli-2 word ruralNNST㥛 VBNx&1@NNT㥛 VBDtVVBZT㥛 ?i-1 tag+i word WP foughtVBPRQVBDRQ?i-1 tag+i word VBP onlyRBzG?JJzGi-2 word murderJJsh|??VBsh|?i+1 word olympicsNNJ +ѿNNPlNNPSK7?JJR9vi word leisureNNl@JJ'1ZNNPI +i+2 word returns NNS㥛?CDJ +@NNPp= ףVBD{Gz?VBN1ZdVBPX9vJJMڿNNS&1?VB㥛 ?NNPSB`"RBV- i+1 word bobRBd;O?VBNFxJJd;OVBDy&1?VBZZd;i word stopperNNNbX9?JJNbX9i-1 tag+i word NNP blockNNI +NNPI +?i-1 tag+i word , regardlessRBC@NNCi-1 tag+i word RB unspecifiedVBN/$JJ/$?i word rosariansVBZHzGNNSHzG?i+1 word denyingVBZ`"NNS`"?i+2 word santaVBN?JJNNP'1ZNN'1Z?i+2 word markingVBN(\JJ(\?i+1 word nishimuraJJ{GzNNP{Gz?i-1 tag+i word NNS totalVBPd;OJJ/$ӿNNx&1?i+2 word alliancesRBIN? i word poetryNNNbX9NNPNbX9?i-2 word permanentVBNT㥛 пNNv?VBD ףp= i-1 word federatedIN^I +VBZn?NNPGzNNPSGz?NNףp= VBDףp= ?VBPS㥛Կ i word depotNNX9vNNPX9v?i-1 word forceRPRB"~?NN7A`?WDT-?JJ?5^I ?INv/NNPV- i word bakedVBN!rhJJS?NNPnVBD;Onڿi-2 word dinnerDTףp= VBDףp= ?RB`"?IN`"i+1 word bonusJJPn?NNPni-1 tag+i word DT shakespeareanJJJ +?NNPJ +i+2 word sweatingNNNbX9?JJNbX9i-1 tag+i word IN potentialJJ?NNi word associatedVBD/$VBNGz@JJK7ANNP)\(@i-1 tag+i word CC proposesNNSB`"VBZB`"? i word jackVB(\NNCl?RB~jtؿi-2 word territoryJJZd;VBDrh|NNQ?VBN&1ʿi-1 tag+i word VBD dubbedVBNK?RBKi+1 word montrealNNPL7A`NNV-FWy&1|INS?i-1 tag+i word DT vastJJʡE @NNHzGNNPV-i-1 tag+i word IN rustyNNS#~jJJ)\(?NN/$i+1 suffix ass VBGJ +?NNX9vֿVBDDlJJRK7?JJ{Gz @NNPS㥛VBbX9NNPS/$ݿVBNx&1INq= ףp?DTZd;OMD9vRBRK7i-2 word conservatismJJHzG?NNHzG i word nameNN@VBNJJRA`"ӿJJ33333DTSNNPrh|VBʡE?NNPS(\i-1 tag+i word VBZ assuranceNNv?RBVBNK7ٿi-1 tag+i word VBP weakenedVBNZd;?NNPZd; i+2 word gaveVBG r?RBNN\(\JJS㥛?IN?NNSKi-1 tag+i word `` operationalJJ?NNi-1 tag+i word NN gainNNSZd;NNZd;? i word folksJJDlNNS{Gz@VBNKNN{Gzi+2 word inspiredNNoʡ?JJoʡ i-1 suffix gmNN(\VBPMbX9RBMbVBZʡENNSʡE?NNP~jt?VBMb?i-1 tag+i word JJ urbanJJV-?NNV-i-1 tag+i word VB neatJJGz?NNGzi-1 tag+i word NN rubinNNPSFxѿNNPFx?i-1 tag+i word DT urbanJJMbX9ܿNNPMbX9?!i-1 tag+i word -START- healthcareNNP}?5^I?NN}?5^IԿi-1 tag+i word , republicanJJ9v?NNP9vʿi-1 word finlandVBP\(\VBD\(\? i-2 word del.VBNGzVBDGz?i+1 suffix eanWDT333333IN;On?VBG/$?FW?5^I JJR/$NNPl NNPS/$ٿVBNl@RBnDTDlJJCl@VBD/$?VBZx&1VB~jtNNNNSx&1? i+2 word paNN5^I ۿNNP5^I ?i-1 tag+i word VB sillyJJDl?RBDli-1 tag+i word VB solelyRBʡE?JJʡEi-1 tag+i word DT boxFWV-NNV-?i-1 tag+i word POS quiteRB/$?JJ/$"i-1 tag+i word -START- acquisitionNNS"~jNN'1ZNNPM@i+1 word slowerVBsh|??RBS㥛@NNCl?POSClVBPsh|?JJˡEWPʡEֿi+1 word massacreNNSQJJT㥛 ?NNh|?5NNPʡE?i-1 tag+i word -START- olegRB-NNP-?i-1 suffix wonVBD+NNS+?RBZd;O?INZd;Oi word yorkersNNPSMb@NNSq= ףpNNPSi+1 word christieNNPK7A`?NNK7A` i word insistJJ333333NNS+VB ףp= ?NN;OnVBD7A`VBN ףp= VBPʡE@ i-2 word loanNN(\VBD?VBNClۿJJ= ףp=?NNPGz?VBSNNPSMbؿi-1 tag+i word NNS pagesVBZZd;NNSZd;?i-2 word conflictsJJFx?NNPFxi+2 word unrealisticRBR ףp= RB ףp= ?i-1 word presidentsVBzGڿVBPzG?i+2 word piledNN|?5^?JJ|?5^i-2 word dullishRPʡERB/$INh|?5?i-1 tag+i word JJ stageNNP +?NN +i+1 word affairsNNPSV-NNST㥛 JJ-?NN+NNPx&1? i word scoreNNP&1NNPSB`"NN+@RBRnVBP/$?RB/$i-1 tag+i word IN ultimatumsJJENNSOn?NNZd;Oi+1 word suggestsIN +WDT(\?DTV-?NNSy&1?NNy&1i-1 tag+i word NN disappearedVBN?5^I VBD?5^I ? i+2 word plcNNPM@NNPSK7A`NNSV-VBDp= ףi-1 tag+i word IN cvnJJA`"NNPA`"?i-1 tag+i word , accusedINX9vVBN+?VBDCli+1 word syndromeVBnNNT㥛 JJ1Zd?i-1 tag+i word RB mostJJS!rh?RBS!rhi-1 tag+i word RB eatVB9v?VBN9vi word fabricatedVBNʡE?JJrh|VBDZd;׿i-1 tag+i word WP claimedVBP/$VBD/$?i-1 tag+i word MD reportedlyRB rh?VB rhѿi+1 suffix allNNSNbX9CD#~j?FW%CVBN= ףp=POSRQ?RBʡE?VBPn@MD$CNNPSxVBGL7A`@JJ333333 DT\(\TO㥛 ?CCjtĿINCl@VBPS?VBZ-˿RPX9v޿VBD\(\ϿNNP~jtRBSsh|?տJJSK7A@PRP$Cl?WDTT㥛 NN-i-2 word proprietaryWDTGzINGz?i-1 tag+i word NNS speculatedVBN333333VBD333333?i-1 tag+i word POS belovedJJ"~j?NN/$VBD"~ڿi-2 word morleyRB!rh?INףp= ۿRPCli-2 word textileVBGFxNNMb?JJ-i-1 tag+i word CD essentialJJ/$?NN/$i-1 suffix cofNNPS{Gz?NNP{Gzi+1 word unexplainedNNuVVB\(\VBP\(\?NNSMbJJQ?i+1 suffix neeJJCl?NNCli-1 tag+i word -START- crisesNNSw/?RBzGNNPoʡտi-2 word oftenPRP333333CDnVBZ;On?NNPSClRB/$?INrh|VBP +?VBN?JJ+?RPjt?NN(\VBG5^I ?JJR#~jVBL7A`堿VBDV-?NNS-?POSi-2 word lawmakersJJ"~j?NN/$CCZd;O߿VBN^I + RB+@DTZd;O?VB/$?i-1 tag+i word RB electricityVBPKNNK?i+2 word houses RB +ֿIN^I +?NNSMbXVBGm?JJMbNNZd;?VBN333333WDT^I +VBD333333?i-1 tag+i word JJ embassyNNRQؿNNPRQ?i-2 word result INS?NNSx&1?RB\(\FWCl?VBPw/JJL7A`VBZ(\NNP"~jVBG rhNNNbX9@JJRsh|??VBN!rh?i-1 tag+i word JJ resourcesNNPS|?5^?NNS?5^I ¿NNP rhi+1 word dashiellNNQ?NNPQi word transgenicVBV-NNPV-?i+2 word janitorRB"~jINS㥛@RPi+2 word farmsWDT~jtIN~jt?i-1 word horseVBGA`"NNA`"?i-1 tag+i word ( suspectedVBN-ƿJJ\(\?VBDV-i-1 tag+i word VBG mostRBSHzGNNV-JJS r? i suffix ORSNNSy&1?NNPy&1i-1 tag+i word PRP hurlVBPCl?VBDCli-1 tag+i word , sophisticatedJJE?VBDEi+1 word carrying''333333POS333333?i word fabricsNNSm?NNmi+1 word bouncedVBGʡENNʡE?i+2 word annual NN|?5^RBSV-?JJSV-RB|?5^?VBZS?NNP$CNNPSx&1?CD~jt?NNSv/i-1 word guerrillasVBNK7A`VBDK7A`?i word confidentVBZOnVBPʡEJJV@NN\(\ VBN#~ji-1 tag+i word VBZ amazingVBGrh|JJrh|?i+1 word dutiesPRP$ +?VBG}?5^IJJK7A@NNL7A`i word faultlessNNoʡJJoʡ?i-1 word indebtednessWDTCl?INCli-1 tag+i word CD felonyNNS)\(NN+@JJZd;Oi word mysteryJJSQNN(\?RBffffff i-2 word ableVBS@NN|?5^JJK7ٿNNPi-1 tag+i word WDT storeVBP#~j?JJR#~ji-1 tag+i word DT circulationNN+?JJ+i-1 tag+i word -START- titledNNPMbLSxVBNoʡ?i word minicomputersNNPSNNS?i-1 tag+i word IN blankNNx&1NNPJJx?i+1 suffix neyVB"~?VBD~jt?JJS(\?VBP/$DTI +@NNP(\@NN^I +INA`"?VBN{GzJJʡE?JJR;On?CDZd;OVBGK7?NNSx&1VBZ{Gz?RPvRB㥛 POSl?RBRWDTK7 i suffix rlsNN?5^I JJ)\(VB~jtؿVBPOnNNSX9v@i word hearingVBGSNNS@i-2 word conformingVBRBR?i-1 tag+i word DT rollNNy&1?JJy&1i-1 tag+i word DT misanthropeNNuV?NNPuV i-2 word pigJJS㥛VBGS㥛?i-1 tag+i word POS bluesNNSMb?NNMbi+1 suffix imaNNP/$?NNSSۿJJ!rhNNMbX9ܿi+1 suffix raxNNP?5^I VBNw/JJ?5^I ?VBDw/?i-1 word musicalNNS㥛?NNPS㥛i+2 word accountantsWDTtVINV-?DTuVi-1 tag+i word TO ernestJJS~jtNNP~jt?i+2 word appealedNNMJJ%CԿNNPʡE?i-2 word summerlandJJ= ףp=NNP= ףp=?i-1 tag+i word NN shuttleJJ(\NN(\?i+2 word unpublishedRB?5^I ?IN?5^I i-1 tag+i word JJ sherbetNNSGzNNGz?i-1 tag+i word NN leaveCCnVBPn?i-1 tag+i word NNP votesVBZGz?NNSGzi-2 word allowingJJv/?NNPSEJJRS?NNClNNPCl?i+1 suffix hamPRPGz߿NNPGz?i-1 tag+i word VBD lessJJR}?5^I?RBR}?5^Ii-1 word bovineJJA`"@NNʡEVBGA`"i word shockedNNnVBNGz?JJV-?VBDPni-2 word newgateNNPSjt?NNPjtܿi-1 tag+i word NN votingVBGT㥛 NNT㥛 ? i word spendVB$C?VBPʡE?NN/$VBDEi+2 word shulmanNNPzGʿVBZףp= @INh|?5NNSK7i+2 word abolishedNNy&1JJףp= ?NNP/$?i-1 suffix lecNNPS\(\NNP\(\?i-1 tag+i word RB talkNNx&1?VBNx&1i-1 tag+i word DT silentJJK7?NNK7i word preferencesNNPSMbNNSMb?i tag+i-2 tag CC RBRP333333RBRV-?VBNI +?RBZd;@JJRK7?VBD1ZdӿNNSNbX9VBX9v?NN^I +INn?VBPM?EX%CVBGZd;?JJGz?DTClٿVBZʡE?NNP+i-1 tag+i word -START- anyNNS+NN/$NNPʡE DTsh|@i word barrierNNV-@JJRףp= JJ/$տi-1 word warnedWDTSINS?i+2 word understandingNNClNNSGz?JJR~jthi-1 tag+i word NNPS complicatedVBN-VBD-?i-1 tag+i word POS polarJJS㥛?NNS㥛 i-1 word wantCDX9v?VBPK7PRPX9vοJJ= ףp=?VBRB'1ZNN)\(@JJRX9v?i tag+i-2 tag VBN VBZPRP$!rhܿCCp= ףRBR&1INMb?PRPCl绿VBnDTq= ףp?RB/$?NNP(\?VBGMb?VBDx&1?VBPWDT r?JJCl?RBSQ˿JJSMbJJR?NNPS;OnVBNQRPv?NNQNNS/$?PDT{Gz?i-1 tag+i word CD sittingVBGA`"?NNA`"i-2 word earmarkedDTDl?PDTDli+1 word jaguarDT"~j@JJZd;VBDuV?VBPuVWDTSRBʡEINMbX?VBZZd;?i-1 tag+i word JJ markusJJX9vNNPX9v? i-2 word puffVBGM?NNMҿi-1 tag+i word DT balloonsNNSn?NNni-1 tag+i word -START- outputNNPtV޿VBNZd;NNRQ?CDffffffƿi-2 word instantDTK7WDTK7?i-1 tag+i word RB participateVB9v?NN9v i suffix burJJ?5^I NNZd;NNPM?NNPSI + i+1 suffix p.NN rhNNP rh?i-1 tag+i word TO developVBV-?NNSKNNV-i+1 word exhaledNNS"~j?JJ"~j i word boilNNMb?JJMbi-1 tag+i word RB convincedVBS㥛VBN/$JJ9v@VBDq= ףpտi-2 word withoutJJR㥛 RB rhIN;OnNNS/$?NNP+VBGHzG?JJ%CNNK7A`?i-1 tag+i word JJ plannerNNCl?NNPCl˿i+2 word careersVBN-?VBD-i-1 tag+i word NN overrunsNNSV-?NNV- i word fairyNNS= ףp=ڿNN= ףp=?i-1 tag+i word DT prostituteJJHzGNNHzG?i-1 tag+i word RB testsVBZʡE?NNSʡEi+2 word battleRBA`"?JJA`"i-1 tag+i word DT animalNNV-?JJV-¿i-1 tag+i word RB overstaffedRBZd;VBNMbJJDl?i-1 tag+i word RB approvedVBD㥛 VBNGz?JJT㥛 ? i+1 word eyesVB?VBPJJ+?NN+i-1 tag+i word `` nonsenseNNzG@JJtVRB +i-2 word addictedVB rh?VBPh|?5ֿNNMRBrh|׿INrh|?i-1 tag+i word VB temperaturesNNSS㥛?VBZS㥛i word mathematicsNNS'1Z?NN'1Zi word morningsVBZ&1NNS&1?i word attorneysRB?5^I NNP7A`NNS;On? i suffix key VBNCDoʡNNSzGVBMbXѿFW rhRBR(\VBP1ZdJJh|?5@VBZNNPMbp?NNq= ףp@i-1 tag+i word -START- specialJJHzG?NNPHzGi-1 tag+i word RB healedVBN rh?JJ rh i+2 word aptNNZd;ONNPZd;O?i word waertsilaeMDjtNNPjt?i tag+i-2 tag ( NNPSJJ)\(?NNP)\(i-1 tag+i word -START- nashuaRBSQNNSQJJ㥛 ڿNNPK@i-1 tag+i word DT standardNNSEJJ1Zd?NN7A`?i-1 word tiremakerVBN/$VBD/$?i-1 word appealsNNQ?VBD333333?JJDlVBGQVBNS㥛i-1 tag+i word , cattleNNS?5^I ?JJ?5^I i word codeJJ(\NNPrh|?VBDףp= VBP(\NNx&?i+1 suffix iotNNP ףp= ?NNQRBnFWnҿJJ5^I ?i word koreansNNPSFx?NNPFxi-1 tag+i word NN costNNGz?VBDB`"VBPMbX9VBN? i suffix TNTNNrh|NNPrh|?i+2 word repeatingNN"~JJ"~?i+1 word north RPCC/$POS+?RBRQ?NNSCl?NNPCl?RB?NNQVBD7A`?VBN7A`JJtV@VBZ+i tag+i-2 tag NNS NNPSVBN1ZdVBPOnIN+NNS#~j?NNP#~jNN+?VBDX9v@i-1 tag+i word RBR memoryNN ףp= ?JJ ףp= i+1 suffix hlyJJS rh?IN(\VBZtV?JJRZd;OVBn?RPh|?5@RBRZd;O?POS rhVBN?RBMbXNNMbVBD"~jJJ/$VBPZd;O?i+2 word mayoralVB rhVBP rh?i+1 word steinkuhlerJJ\(\NNP\(\?i word thousandsVBZS㥛ԿNNSS㥛?i-1 word making NN{GzRBx&1VBZ rhNNSV-?RP?JJA`" @RBRA`"JJRA`"?IN7A`NNP~jt?i tag+i-2 tag '' VBJJNbX9?NNNbX9RB?5^I IN?5^I ?i-1 tag+i word NNS accountVBP+?RBRI +ƿNNx& i-1 word gotRPT㥛 NN{GzRBRʡE?JJ)\(?VBD+RBS㥛@VB rhVBNQ?EX~jtINy&1DTV-?CD+NNSDl?JJRʡE i+2 word fact NNPh|?5RPMbRBX9vϿNNoʡJJoʡ?IN`"VBZK7?VBffffff?VBDQi word lobbyingVBGuVNNuV?i-2 word discountingJJR(\?RBR(\i-2 word blocksNNK7A?JJK7Ai-1 tag+i word PRP organizedVBZQVBDQ?i+2 word handlingJJPn?NNHzGNNP~jt?i-1 tag+i word DT boringVBGA`"JJ"~?NN!rhi+1 word buyoutNN㥛 VBN5^I @JJy&1i+2 word cooperateVB/$VBPZd;?VBNE?NN)\(VBDEi word launderedJJʡEVBNʡE?i word momentarilyVBNSRBS?i-1 tag+i word DT eagernessNNCl?JJCli-1 word isolateCD+?NN+i-1 tag+i word NN gnpNNS㥛?NNPS㥛Կi-1 tag+i word '' yearbooksNNS rh?WDT rhi-1 tag+i word PRP$ foundingNNJ +?VBGJ +i-1 tag+i word DT benchmarkJJOn?NNx&NNPGzǿi-2 word restaurantsVBN9v?NN}?5^IJJ9vVBG}?5^I?i-1 tag+i word POS cookingVBG/$NN/$?i word classifiesVBZZd;?NNSy&1VBDOni-1 tag+i word `` quartetRP+NN1Zd@NNPbX9i-2 word sinceVBZV-?CD|?5^ @JJI +VBD|?5^RBRffffff@VBPX9v?RB)\(?VBNx&1NN(\JJSB`"JJRffffffWDTy&1NNS`"οNNPx&?NNPSjtĿVBGmINx&1 @DTʡEi-1 tag+i word NNP brokersNNPSK7A?NNPK7Ai+1 word trainerJJI +?NNI +ֿi-1 tag+i word JJ stewardshipNNSMbXٿNNMbX?i-1 tag+i word NNP deltaJJrh|?NNS/$NNx&1?VBD/$FWK7A`VBP|?5^i-1 word bloodJJS?NNoʡ?VBPNbX9RBV-?INV-VBZ9vNNS"~j?i-2 word nissansRBRMbX?JJRMbXi-1 tag+i word JJ unawarenessNNNbX9?JJNbX9 i-2 word jenaVBNʡE?NNh|?5JJtVi-1 word laboratoryVBZZd;NNSZd;?i-1 tag+i word JJ fundingVBG-NN-? i-1 tag+i word VB administrativeJJJ +?RBV-NN= ףp=i word examinationNN&1?JJ&1i-1 word chamberVBZnNNSn? i-2 word relyRBx&1?JJGzֿNNy&1i+2 word camaraderieVBV-?VBPV-ڿi-1 tag+i word PRP$ fixedJJS?NNS i-2 word stayJJRףp= ?JJףp= i+1 word heroesJJˡE@NNˡEi+1 word paschiVBZK7FW|?5^?JJV-VBD;On i word lucioVBZDlNNPDl?i+2 word involvementVBʡEVBGʡE?i-1 tag+i word IN separatelyRBzG?JJzGi-1 tag+i word CC greedyJJS?NNSi+1 word electricVBG~jt?JJKNNPCl?i-1 tag+i word NNP acquiredVBN/$VBD/$?i-2 word shutteredJJDl?NNDl i suffix suiNNSQ@NNMbX9JJZd;ONNP rhi+1 word wheelsNN-?JJ-i-1 tag+i word DT uproarNNGz?JJGz i suffix areVBNV-EXClRBZd;NNSy&1 NNPx&1 @NNPSZd;NNV-2@VBDK7A`VB rh @CCQVBPjt@DT(\VBGT㥛 ؿCD"~WP9vVBZSſJJR?5^I ڿJJ/$@i+1 word visitorJJ$C?NN$C i suffix unoJJ|?5^NNP|?5^? i suffix BadVBvJJ"~j?NNPzG? i word throwNNPQVBCl?NNMbؿVBN!rhVBPx@JJA`"IN/$i-1 tag+i word NNP abramsonNNPSV-NNPV-?i word lightestJJS(\?JJ(\i-2 word successfulJJS?VBZ|?5^?VBGSNNP㥛 ?NNSh|?5i-1 word freelyJJ~jtȿVB~jt? i suffix nonNNp= ף?JJ{GzINd;ONNPX9v?NNSvi-1 tag+i word -START- neitherNN/$NNPuVCCJ +DT1Zd @RBV-i word benjaminJJQNNPQ?i-2 word serenePRP$333333?PRP333333i-1 tag+i word MD onlyVBX9vRB`"?JJrh|i-1 tag+i word RB fasterRBRS㥛?RBMbX9ܿJJRA`"i-2 word pilloriedVBNzG?VBDzGi-1 tag+i word VBD statisticsNNPnNNPSn?i+1 suffix ileVBGS?JJL7A`RBSZd;OǿVBClNNP"~?NNFx?VBD&1NNS㥛 @WDTy&1PRPbX9?RB/$@RBR%C̿VBN(\?INd;ODT/$PRP$bX9NNPS~jt?VBP&1?RP|?5^?VBZV-JJRi-1 tag+i word DT jetsNNPS-NNS-?i word teacherVBPףp= NNCl?RB}?5^IԿ i+2 word twoVBD$CWDTE?JJ%C?WPV-NNS`"?NNP+MD5^I ?VBG?JJR;On?RPsh|?տNNK7A` CDn?INV-VBZ)\(DTq= ףpRBx&1?VBsh|?NNPSQVBN1Zd@RBRX9v޿EXGz?VBPV-?i-2 word moreover JJSPDTK7A`?RBV-?DTxNNSV-VBDjtCC333333ۿWDTV-?INX9vi-1 tag+i word POS filingVBG/$NN333333?JJNbX9ȿ i word profitNNP$CVBoʡ?NNsh|"@VBN333333JJ{GIN1ZdVBZ㥛 NNSni word retailingNNv@JJ333333VBGV- i word stationsNNSzG?NNzGi+1 word grippedWDTtV?INtVֿi-1 word detailNNS㥛?RBS㥛i-1 word compensationVBZ rNNS r?i-1 tag+i word DT wildJJjt?NNjti+2 word basketNN+RB+IN+?JJ+?i-1 tag+i word -START- pepsiNNSQ@NNMbXٿNNPCli-1 tag+i word CC thoughRBˡEINˡE?i+2 word columbiaINx&NNSFx?NNPFx?RPQ?JJ r?NN rh?RBsh|?i-1 suffix lvyVBZV-?NNSV-NNZd;NNPZd;?i+2 word suitsVBOn?NNV-VBDbX9?VBNEؿVBPx&JJNNPh|?5?i-1 tag+i word VBG hboNN"~jNNP"~j?i-1 tag+i word ( equalingVBGQ?JJQi-1 tag+i word VBD evidentJJFx@VBNx&NN/$i-1 tag+i word `` washNN|?5^?JJ|?5^ٿi-1 tag+i word DT ministryNNP+NNV-?FW"~ji-1 tag+i word VBP hybridsNNSV-?VBNV-i-1 tag+i word NN permittedVBNVBD?i-1 tag+i word DT hackerNNʡE?JJʡEi-1 tag+i word NNS aboardINrh|?VBP(\RBCl߿VBD5^I ۿi-1 tag+i word DT skepticsNNSh|?5?NNh|?5i word mikhailPRP$SNNPS? i-2 word thus CCEJJx&1?VB1ZdNNPSE?RBV-NNףp= ۿJJRbX9?CD-?VBNV-DTZd;O? i-2 word eraVBPh|?5?NNPh|?5i-1 tag+i word ) insistedVBNp= ףJJ-VBDV-?i-1 suffix timNNPSPnNNQ?NNPMbi+1 word weighingNN7A`?JJ7A`i-2 word lynchNNPStV@NNS(\JJMbX9NNL7A`?NNPzGi+1 word jitteryNNPS{GzNNS{Gz?i-1 word absorbDTQۿPDTQ?i-1 tag+i word NNP viningVBGZd;ONNPZd;O?i-1 word analystVBq= ףpVBPq= ףp?VBNSVBDS?i-1 word orderVBZQNNS?NNGzi word resolvingVBGv/?NNv/i+1 word abortionsVBGp= ף?NN;On?VBK7i+2 word warningNNS"~ڿNNMb?VBD㥛 ?JJRzGVBNZd;OVBPMbi-1 tag+i word VBN sparinglyRBMb?NNMbi-2 word circuitVBN|?5^?VBD|?5^ڿi-1 suffix gle JJS +޿RBsh|?IN~jtȿCDV-NNPtV?NNPStVRPV-?JJMbX9ԿNNCl?RBS +?i+1 word institutesNNP/$?JJ/$i-1 tag+i word NN movingVBG/$?NN/$i-1 suffix elyVBGy&1?DT rhINX9v@JJS|?5^JJL7A`@NNS{GzNNPSRBR?5^I ?VBDZd;O?WDTRP"~jRBFx VB333333?RBSx&1CDvJJRB`"PRP$-VBNd;O@VBP(\@VBZZd;?NNx&UH"~ji-1 tag+i word CD twaNNSZd;ONNPZd;O?i-1 tag+i word TO regroupVB rh?NN rhi-1 tag+i word VBZ betterJJRx&RBR`"?RBK7A`? i suffix luxJJS㥛ԿNNPS㥛?i-1 tag+i word DT rationaleJJDlNNDl?i word boilingVBG5^I ?NN5^I  i+1 word says NN}?5^I?CD rh?WDTʡE?RBˡE?INK7A` DTRQ?VBG?5^I JJl NNSMbNNP"~@VBZ-NNPS rh?WP-?i-1 tag+i word DT crackdownNNS+VBNZd;NNQ?i word discriminatingVBGDl?JJDli-1 tag+i word TO enterCCL7A`VBL7A`?i word breakdownNN|?5^?RBʡEJJ`"VBN)\(ܿi+1 word lensesJJMbX?NNMbX i word toneNNS;OnڿNN;On?i+2 word caterNNSK7A@NNPK7Ai-1 tag+i word NN listsNNSZd;O?VBZZd;O i-1 word tiNNV-NNPV-? i word see NNPx&NNPSZd;ONNMbVBDGzJJK7AVBZuVVB~jt@RBA`"VBP"~@i-1 tag+i word NNP backedNNPK7A`VBDK7A`?i-1 suffix dowVBZZd;VB$CNNSZd;?NN$C?i word unswaggedNN rhNNSmտJJV-?i word suspendedVBD9vVBGzVBNJ +@JJ~jt? i word existJJ)\(NN/$ RBRMVBP%C @RB;OnDT|?5^VBw/@i-1 tag+i word VBP stiffJJm?NNmi tag+i-2 tag WP DTVBZ1ZdVBn?VBPʡEֿVBDʡEտi+2 word demonstratorsVBX9v?VBD~jt@VBNEVBPp= ףRBʡE?INʡEi+1 word blowsJJˡE?NNˡEi-1 tag+i word IN housingNNvNNPv?i+1 word contractionsNNK?JJKi-1 tag+i word WDT terribleJJ!rh?VBD!rh̿i-1 tag+i word JJ votersNNPSMb?NNSMbi-2 word underscoreNNQ?JJQi-1 tag+i word WDT costVBPM?VBDMi-1 word recognizesDTHzGRBK7IN$C?i-1 tag+i word DT phonesNNSA`"?NNA`"i word forbiddingNNʡEVBGʡE? i suffix ifyNNV-VBDClVBPGz?RBB`"NNSQNNP1ZdVBB`"@JJni+1 word roommatesVBNʡEJJʡE? i suffix tumNN= ףp=@FWsh|?VBP rhRBK7NNSQNNP~jt?JJ?5^I i-1 tag+i word NN grantingVBG7A`?NNS?5^I JJ/$i+2 word intersectionCDV-?NNPV-i-1 word ps\/2VBPS㥛NN&1?NNPjti-1 tag+i word IN discountNNrh|?JJrh|i-1 tag+i word RB dreamsNNS㥛 ?VBN㥛 i+1 word mixJJrh|?NN-PRP333333 i word pollsVBZ333333NNSw/@NNˡENNPMbi word herbertJJ(\NNP(\?i-1 word incidentsNNKVBP\(\?WDT|?5^?JJ rIN|?5^NNP7A`?RB7A`i-1 word enviableNNS9vNN9v?i-1 tag+i word -START- telxonNNS㥛NNPS㥛?i-1 suffix ecoNNI +?JJHzGNNPS?i-1 word filingsVBGCl?RBNNMbVBN?VBP"~j?WDT/$JJ}?5^IIN/$?i-1 word lashedRP/$RB"~@INV-i-1 tag+i word POS teamVBDClNNCl? i word arnoldNNPq= ףp@VBZ333333JJHzGi word absolutelyRBK7A`?JJK7A`i word devisedVBNMb?JJMbi word discourageVBD&1ڿVBx&?VBP&1?NNx&1JJMi-1 tag+i word CC combinedVBNq= ףp?JJq= ףp i+2 word paysJJZd;?NNZd;i-1 tag+i word CC rejectionVBX9vNNX9v?i-1 tag+i word DT creditNNSNNPS? i-1 word liesRPS?VBGK?RBSNNKi+1 word export$&1NN`"VBNp= ף?JJlNNSv/ݿNNP9v?NNPS#~j?i-1 tag+i word VB excitementNNSZd;OVBNʡENNoʡ?i-1 tag+i word NN memoVBZZd;ONNCl?RBX9v׿i+1 word tokyo VBNDlCDClJJX9v?VBZV-?NNPMbX9NNV-VBDQVB ףp= IN1Zd@ i-2 word six IN)\(NNSn?NNPSRQ?JJZd;ONNK7CDV-߿RBCl?VBD= ףp=VBN= ףp=?WDTtV?PRP?NNPMbXi-1 tag+i word -START- whyNNP +WRBףp= @WDT ףp= NNsh|?ݿi-1 tag+i word CC smartVB\(\߿JJ/$?NNSi-1 tag+i word VBP surelyNNS333333RB333333?i-1 tag+i word DT midcontinentNN?5^I JJ?5^I ?i-1 word brianNNPS)\(RBNNh|?5޿NNP+@i-1 tag+i word NNP brightNNPV-JJ/$?NNKi-1 tag+i word NNP perchesVBZtVNNPtV?i-1 tag+i word `` chillingVBGʡEJJʡE? i word quite VBw/NNʡEJJ?5^I PDTl @VBNQVBPq= ףpRBx&1!@INnVBZS㥛NNPKi-2 word ghostVBZMbVBPMb?i-2 word heroesNN\(\?JJ\(\׿i+1 word collegiateVBG|?5^?JJ|?5^i-1 tag+i word NNS dealtVBPK7VBDK7? i word pumpsNNSOn?NNOni+2 word ratioJJEԸ?NNEԸi-1 word hertzVBZ{Gz?NNS{Gzi+1 suffix sks VBNClJJCl?NNS{GzVBD!rhܿCCq= ףpJJR#~jNNjt@RBRy&1|VBP"~i-1 word inevitableDT9vNNSˡENNˡE?IN9v?i word plenitudeNNX9v޿NNPX9v?i+1 word slumpedVBGx&1NNx&1?VBPA`"?JJKNNPK?VBA`"i-1 word fathersVBN%C?VBD%Ci-1 tag+i word VB exemptedVBNʡE?JJʡEi+1 word short VBNM@NNPDl?VBGHzG?RBHzG?JJoʡVBZv/?NNSClNNDlVBDd;Oi+1 word watersVBNoʡտJJoʡ? i word vt.VBPGzNNPGz?i-1 tag+i word VB broadcastVBNV-?RBV-Ϳi word awarenessNNMbX9?JJMbX9i word publishersNNPS`"?NNSS㥛?NNP`"VBZS㥛i+2 word barksdaleVBZx&?NNSx&i+2 word promisesINZd;O?VBZ%CDT rhPDT rh?VBP%C?RBZd;Oi-1 tag+i word , soldNNsh|?VBNX9v?JJSVBDMb@VBPV-i-1 word ideologiesVBZn?NNSni-1 word stocks VBN}?5^I?JJX9vϿIN"~jVBZ(\?VBGv?VBDQ?VBPGzǿWDTK7?DTx&1RBV-NNvi+2 word floatDT+?VBDffffffJJffffff?IN+i-1 tag+i word DT cosmeticJJ?NNi-1 word gideonVBZClVBDCl?i-1 tag+i word RB brokenJJ!rh?VBP!rhVBNK7A?RBy&1 i+2 word tcmpVB1Zd?VBP1Zd?NN1ZdVBD1Zdi+1 word chopsVBJ +NNJ +?i-1 word smartVBNrh|NNrh|?i word extractedVBN-VBD-?i-2 word position NNS?VBPK7JJS㥛@VBZSӿNNP|?5^VBMbRBNbX9VBNJ +UHZd;?INq= ףp?DTK7?NNSZd;i word suspectVBV-?VBPbX9?JJףp= ?NNK7NNP/$ i word lagsVBZV-?RBRV-i word expiresVBZ333333 @NNS333333 i-1 tag+i word VBZ spunVBNZd;?JJZd;߿ i+1 word adsVBN+JJMbX?NNSA`"NNP-?VBGMbXɿNN-?VBD+?i-1 tag+i word , vowedVBDx?VBNxֿi-1 tag+i word NNP keepNN/$VBD ףp= VBP rh@JJʡEVB r?NNPSX9vi-1 tag+i word NNP fossilsNNSGz?NNGz޿i-1 tag+i word NNS 'sPOS+?IN+i-1 tag+i word DT bumperJJRlҿNNl?i-1 tag+i word RB delayedVBNd;O?JJd;Oi-1 tag+i word `` everythingVBGZd;NNGz?JJQi tag+i-2 tag DT PDT VBNB`"۹?JJ;On?NNPSV-VBGbX9?JJRK7AؿNNPV-?NNV-?JJSL7A`?NNS`"i-1 word rippedRP;OnRBX9v?INSտi+1 word roommatePRP$Q?DTQi-1 tag+i word JJ conceptsNNSCl?NNCli-1 word unsuspectedJJK7?NNK7i-1 tag+i word VBP popVBP'1Z?VB'1Z i word sellerNNOn?JJB`"ٿFWK7i-1 tag+i word DT examinationNN&1?JJ&1i+2 word speculatedNNm?NNPmi-1 tag+i word VBZ distributingVBG1Zd?JJ1Zd˿i tag+i-2 tag NNS VBP VBP~jtEXx&1JJ%C̿INRQNNSjt?VBI +@NNbX9VBNMbX?RBˡEVBD$C?WDT~jt?i-1 word pleadingJJ ףp= ?NN ףp= i-1 tag+i word CC recreationNN`"?JJ`"i-1 tag+i word DT rudderNN`"?JJ`"i-1 tag+i word CC ceaseVBjt?NNjtĿi-1 tag+i word CC packVBx&1?VBPClNNy&1i-1 tag+i word DT whimNNx&1?RBx&1i-1 tag+i word RB ownedVBNQοJJQ?i+1 word fifthNNPSJ +NNPJ +?i-1 word subsidiaryWDTx&1?INx&1i-1 tag+i word `` commandVBP~jtNN~jt?i-1 tag+i word CC electricVBP(\JJ"~jNNl@RBRffffffi-1 word plant POSX9v?VBN/$@VBPsh|?WDTZd;O?JJV-INK?VBZMbX9ܿRBV-NNSzG?NNP#~j?DTQVBD?5^I NNK7i-1 tag+i word DT fabledJJ1Zd?VBN1Zdi word schwerinNNPSq= ףpNNPq= ףp?i-1 tag+i word VBZ angelsNNPSZd;?NNSZd;i-1 tag+i word NNP yearNNP{Gz?VBP$CNNV-?NNPSv/ݿi-1 suffix tinNN-?WDTQJJ%C@INQ?NNS~jtNNP%CNNPSffffffֿi-1 tag+i word `` readersNNS"~j?NNP"~jԿi word drenchingVBGK7NNK7? i suffix citNNE?VBNuVJJ)\(?RBjtNNPGz? i word fabianJJ333333NNP333333?i+1 word positivelyVBZZd;O?RBZd;Oi-1 word underneathPRP$9vPRP333333?NNX9vϿi-1 tag+i word NN directsRB+VBZ+?i word repairsNN+NNS rh@VBN-i+1 suffix kly NNPw/VBDK?VBN-VBPnJJ@INnNNSn?JJRq= ףpVBZd;ORPn?NN(\RBR(\ @WRBw/?i-1 tag+i word CC railwaysNNS= ףp=?VBZ= ףp=i-1 word staggeringNNQRP/$޿RB"~? i+1 word johnVBZ(\?NNS(\NNPףp= ?VB;OnNN~jt?JJ|?5^ i word lullNNuV?RBRʡEJJ)\(i+1 word bullishlyVBNzGVBDzG?i word numberedVBNZd;OǿRBnVBDRQ? i word warmlyRBV-?WDTV-i tag+i-2 tag NN JJRVB rhͿJJ= ףp=INˡE?VBZ5^I ?WDTA`"?NNPS333333VBGX9v?NNX9vRBHzG?RPDlDTSVBDL7A`堿NNSʡEVBN)\(? i word hedgeVB;On?JJV-?NNx޿i-1 word pointedRB/$?NN/$ۿIN5^I RP5^I ?i-1 tag+i word IN mudNNSClNNCl?i+1 suffix areDTZd;?POS\(\PRPMb?JJSI +?RP(\?NNPS?VBG!rhJJnRBRMbCDh|?5?WDT/$@RBSMbPDTnJJRJ +?VBZ-NN'1Z?FWx޿VB"~ VBDV-RB#~jEXV-@VBNʡE?VBPrh|NNPSCl?IN/$NNSK@CCtV?i-1 tag+i word IN kidneyNNGz?NNPGzֿi+1 suffix jayNNPI +?VBPI +i-2 word arrangedJJl?NNS+NNQi-2 word mentionVBGFxNNFx?i-1 tag+i word JJ parkNN}?5^I̿NNP}?5^I?i-2 word wilmingtonJJʡE?VBDʡE i suffix goNNSMbVB@NNףp= VBDV-VBNZd;OͿVBP9v@JJDlVBZ㥛 i-1 tag+i word NN !YEARCDCl?RBCli-1 tag+i word VB reachingVBGףp= ?JJףp= i+1 word intendedCDx?IN`"PRPx޿RB`"?i-1 tag+i word NNP augustinesNNPS}?5^I?NNP}?5^Ii-1 tag+i word VBZ approachVBNZd;NNZd;?i+2 word seizeJJv?VBMbX?VBNvNNMbXi+1 word proposal POS9v?VBNh|?5?VBZ9vJJR rh?NN~jtWDTNbX9JJQտINNbX9?DT#~j?NNSL7A`NNP/$տRBR rhi-1 tag+i word , subtleJJuV?VBuV i+2 word nutsNNPS+׿NNS+?i-1 tag+i word VBD genentechNNPSZd;ONNPZd;O?i-1 tag+i word JJ twiceRB(\?NN(\i-1 suffix mirNN%CܿNNP%C?i-1 tag+i word NNP hillNNPX9v?NNPSX9v߿i-1 tag+i word NNS rumbleVBP%C?JJ%C i+1 word feltWDT{Gz?JJ rIN{GzVBZHzGNNSHzG?NNPM?NNZd;O?VBNI +?i word acceptedNNPuVVBD&1@VBN;OnJJjt?i+1 word longingNNx&1JJx&1?i-1 tag+i word NNP suchPDTK7?JJK7 i word unitsNNPX9v?VBZ5^I ˿NNS5^I ?$Mbi-1 tag+i word PRP$ felonyNNx&1?JJx&1ܿi-1 tag+i word NNP minikesNNS+NNP+?i word rationalJJ1Zd?VBD1Zdi-1 tag+i word VBZ jennieNNd;ONNPd;O? i word aboveNN= ףp= JJffffff@VBZV-VBNE$ףp= VBP(\DT$CVBS㥛RBS㥛@VBD/$RP(\µNNSvINuVN&@NNP1Zd? i word flowsVBZV-@NNSmNNI +i-1 tag+i word VBN tennesseeRPuVNNPuV?i+1 word ricanNNPSMbJJ+N@NNPQ i-1 tag+i word CC ninetyVBNClNN%CVBD9vCDS㥛@i-1 word contendDT(\?WDT(\i-1 tag+i word VBP overusedVBNJ +JJJ +?i-1 tag+i word JJ stratosphericJJzG?NNzGi-1 tag+i word CC landslidesNNSZd;?JJR333333JJؿi-2 word voiceNNSy&1?NNV-?NNP7A`VBMbXi-1 tag+i word TO fixedVBQVBNQ?i-1 tag+i word NNP specialtyVBZOnNN+?VBDw/ i-1 word suit NNPRQVB(\NNZd;VBDMbVBZ~jt @NNS/$VBN ףp= ߿VBP(\?JJRQ?i+1 word perrinNNS-NNP-?i tag+i-2 tag NN RBNN333333?NNS/$?WDTZd;INzG?VBD= ףp=?VBPK7DTMb?VBZ$C?JJRxVB;OnJJ+@RPx?RBQPOSMbX9RBRx?VBN!rhܿVBGʡEi-1 tag+i word DT sorenessNNʡE?JJʡEi word suppressVBCl?JJCl i+2 word eggNNQ@NNPQi tag+i-2 tag WDT CDVBD(\VBNS?POS@JJvϿVBZoʡNNS(\?i-1 word stateswestVBDNbX9?POS rh?JJNbX9VBZ rhNNSRQNNP rh?NNPSOn? i-2 word readNNSףp= ?VBx&1?RB!rh?NNZd;VBDd;O?JJn?i-1 tag+i word TO provideVBB`"?JJB`"i+2 word posesJJQ?INS?NNPQWDTS i word roamVBP$C?VBD$C i suffix tatNNS/$ٿNNsh|?NNPw/? i word flownVBNX9v@NNZd;OJJʡEi-1 word synopticsNNPSS?NNPSӿi-1 tag+i word DT ottoJJ-NNP-? i+2 word hold CC?5^I ҿVBPQ?RBjt?VBNMbX?WDTI +?INzGDTʡE?NNP(\JJB`"NN~jt?VBD^I +?i+1 word committeesNNS-?NNPGzNNPS-VBG#~j?NNMb?JJ/$ݿ i word fredRB+NNP+?i word pocketsNNSV-?JJ^I +NNPS#~ji-1 tag+i word JJ foodsNNPS333333?NNSp= ף?NNSi+2 word darwinRPS?RBSi+2 word spillNNSQNNS?JJ~jti-1 tag+i word NNS monitorNNjtVBPjt?i+2 word radiationVBGʡE?JJʡEi-1 tag+i word NN stoodNNGzVBDGz@ i suffix acyRB rhNNS/$NNPK7A?VB(\JJK7A`NNn @VBNK7i word improvisedVBNw/VBDw/?i+1 suffix uarVBZZd;?DT"~j@JJZd;VBDuV?VBPuVWDTSRBʡEINMbX? i suffix leaRBZd;OJJI +VBL7A`ؿNN+N@NNS'1Zi word simultaneouslyVB/$RB/$?i+2 word historicVBN"~?VBD"~i-1 tag+i word DT climateVBP333333ӿNN\(\?JJQۿi-1 tag+i word -START- carnegieNNʡEӿNNPʡE?i-1 tag+i word TO traditionNNQ?VBQi-1 tag+i word -START- mercedesNNSˡENNPˡE?i word gruesomeVBy&1JJ(\?RB +i-1 tag+i word TO failureVB+NNCl?JJx&1i tag+i-2 tag : VBPINd;O?VB/$?VBPDli+1 word vaccineJJFx?NN~jt?NNPmi+1 word claimsVBGv?NN rh?VBNx&PRPx&1JJX9v?NNP&1ҿ i-1 tag+i word JJ communicationsVBZvNNSv? i+2 word fourVB333333INy&1?NNSx?NNPSoʡJJ{GzVBD r@VBN7A`?RBR r?NNP|?5^?VBG9vVBZ~jt?JJR rؿNNv/RB#~j?i-2 word averyDTxVBPT㥛 INx?NNPT㥛 ?i-1 word restructureJJL7A`?RBL7A`i word inflationNN-?NNP-i-1 word delayedRBRm?JJGzNNGz?JJRSRBV-߿i word editing\/electronicJJʡE?NNʡEi+2 word intrinsicVBN~jtJJK߿NNP+VBDS㥛@i+1 suffix dalVBG?JJZd;ONNx&1ȿNNPh|?5?i-2 word cherubsRBMbпDT-?PDTHzGi+1 word reassuringVBZ㥛 ?RBR㥛 i-1 tag+i word VBN revisedVBN|?5^?JJ|?5^ʿi-1 word fixedJJGzοCDGz?i+2 word jigglingJJlNNl?i-1 word ruledNNsh|?INPn?DTPnRBsh|??i-2 word writesRB;OnIN;On?i-1 word leading NNSRQ?NNPClRBy&1?NNnJJRQ?RPV-NNPSp= ף?VBGK7A?VBDSIN+ηi-1 tag+i word RB relishesVBZ`"?VB`"i+1 word involved JJ rhIN|?5^NNS +@NNP$CVB$CWDT|?5^?VBN`"VBP$C?VBZx&1?RBd;O@NNoʡi-1 tag+i word IN necessityNNS?NNPSi+2 word followsNNSv/NNPrh|?VBGzNNPSrh|NNjtĿJJV-?i-1 tag+i word NNP deserveVB}?5^I?VBP#~jJJףp= i-1 suffix tsuNN= ףp=?JJ= ףp=i-1 tag+i word VB obviousJJZd;O?RBZd;O i word haltVB%C?NNE@PRP$ +VBN9vDT%C̿NNSSi-2 word embryoRBR +@RBL7A`INbX9i-1 tag+i word VBD weakerJJRV-?NNV-i-1 tag+i word CC walkVBZ㥛 VBK7?VBPNNq= ףp?i-1 word actorsVBMb?VBPvWP/$i word voluntaryJJ333333@NN/$RBy&1NNP!rh i+1 word ideaNNI +?NNSQJJw/?RB rhPRP$Q?i-1 tag+i word TO suchVB$C˿PDTw/JJʡE?i-1 tag+i word RB shortJJw/RB$C@NNSi-1 tag+i word DT hospitableJJ/$?NN/$ݿi+1 word claimedNNX9vPRPGzJJ-NNSGz?NNPX9v?RB-?i-2 word teemingNNSHzG?JJHzG i-1 word prosVB!rh̿VBPS@NN333333NNP~jti-1 tag+i word NNP ofINX9v?NNPX9v i word tearsNNSS?NNSi+2 word correctiveVBPGz?JJGzNN/$VB/$?i-1 tag+i word NNPS 'sVBZGzֿPOSGz?i-1 tag+i word VB hardestRBS}?5^I?VBN}?5^I i word aidingNN(\VBG(\? i word heatsVBZ?NNSx&VBD +i-2 word amicableNNPSv?NNSDlNNP~jti-1 tag+i word DT vanguardJJNbX9NNPNbX9?i-1 tag+i word CC uncertainNNmVBy&1JJsh|??i-1 suffix chiNNPZd;?FWV-?NNPSZd;߿NNV-i+1 suffix ngsVBGK7A`VBD!rh?VBN5^I ?PRP$B`"?RBsh|? IN}?5^I?RPVBZףp= PRPB`"JJ;On@NNP;OnҿVBP ףp= ?EX rWDT#~j @DT^I +NNSq= ףpVBQNNPSjt?NN"~jRBRd;OJJRw/? i word condosNNSrh|?NNrh|i+1 word ferrisVBG/$?NN/$i-1 tag+i word , twiceRBX9v?VBDq= ףpVBPjti tag+i-2 tag NNP NNVBG9vVBDS㥛пIN"~?RB{Gz?NNPSK7VBNS?VBP|?5^JJ9vJJSX9vVBZCl?FW/$RPQ?NNPQ?VBZd;NNPn?NNSMbX9?i-2 word redemptionsJJx?NNGzRB~jtȿi-1 tag+i word VBD chargedVBNtV?JJtVi+1 word missileNNPSK7?NNPK7i+1 word annuityJJNbX9?NNPNbX9i-1 tag+i word DT gnpNN#~jܿNNP#~j? i-1 word pactVBZK?NNSKRBq= ףp?NNq= ףpi+1 word twistNNMbX?JJMbXi+2 word exxonCDJ +@WDTQ?VBN/$JJQINQi word viewpointVBZSNNK7A?NNP|?5^ѿi+1 word welfareNNS#~jVBG;On?JJ;OnNNL7A`IN7A`?i-1 word officialsVBNZd;OPOS~jtVBPrh|?IN}?5^IܿNNP\(\VBK?NN"~VBD+@i-2 word gawkyDTʡEINʡE?i word forestryNNSQNN?JJGzi-1 suffix cryVBNZd;ORBZd;O? i+1 word vetoNNSNNP^I +JJI +?i word lawsuitNNSFxNNM @JJZd;VBNK7A i word afloatRPB`"RB/$?NNv/i-1 tag+i word VBD executiveJJ5^I NN5^I @RBi-1 suffix icaVBPrh|?JJ+ۿVBZ/$?NNSMbNNP+?VBrh|NN333333POSK?i-1 tag+i word NN complainedNNv߿VBDʡE@VBNS㥛i+1 word startNNx&RBCl@VBN5^I ӿJJ(\@VBP-i word volkswagenNN#~j@POS +JJA`"NNP= ףp=i-1 tag+i word PRP$ fancyJJS?NNSi-1 word goodyearVBN{Gz@JJQֿVBDHzGi word fertilizerNNS!rhNNZd;O?JJV-i-1 tag+i word JJ scholarshipNNSh|?5NNh|?5?i+1 word conditionsVBA`"?VBGmJJ|?5^?NNףp= ÿRB"~j̿NNP/$i-1 tag+i word IN belgiumNNMbNNPMb?i-1 word worryingIN7A`?PRP$$C?WDT~jtPRP$CRBJ +i tag+i-2 tag VBD NNPWDTQVBZ rпRPB`"@FWMb?NNPDlJJR-?CDPRP$+@VBG1Zd˿NN/$ RBq= ףpPDTʡE?RBRMbX?VBD/$VBNZd;O?JJ= ףp=?PRP'1ZRBSsh|?JJS/$?VBPtVDTMb @NNSzGҿVBRQ?IN9v?NNPSNbX9?i+1 word naturalVBOn?NNP|?5^?VBN(\JJ^I +߿CDxֿi-1 tag+i word VBN restaurantNN= ףp=?JJ= ףp= i word writerVBZ\(\߿NN$C@JJRffffffJJ5^I i-1 tag+i word -START- meharryWRB9vNNP9v?i-1 tag+i word MD reapVBZd;?NNZd;i-1 tag+i word NN learnVBZ̿VBP?i-1 tag+i word , omronJJ;OnNNP;On?i-1 tag+i word JJ ultravioletNNS/$ݿNN/$? i word pwaNNPS1ZdNNL7A`NNPK@i+2 word complainVBGMb?NN!rhVBD$C?VBN$CJJSNNS(\?i-1 tag+i word VBG obtainingVBGuV?JJuVi-1 tag+i word NN fanNNRQ?VBNRQi-1 tag+i word VBG longerJJRMb?RBR~jt?RBHzGi word willingJJ~jt?NNP~jti-1 tag+i word , frenchNNPS/$?JJl?NN+NNPB`"i-1 tag+i word CC evenVBʡERP+RBQ @VBD~jtVBN-ۿJJMb?NNSGzi-1 tag+i word DT nameJJRA`"ӿJJ ףp= NNP ףp= ׿NNn@i+1 suffix gapDTn?VBG}?5^I?NN|?5^WDTMbXJJZd;IN)\(i tag+i-2 tag WP$ NNJJL7A`?NN+?RBV-VBN㥛 i-1 tag+i word DT merchantNN/$?JJ/$i-1 tag+i word -START- humilityNNv/NNPv/?i-1 word sylvesterNNPSZd;OǿNNPZd;O?i-1 tag+i word CC japaneseNNPʡEJJʡE@i-1 tag+i word DT electronicsNNPS(\NNSZd;@NNClJJQ i-1 tag+i word IN newsworthinessNN +?JJ +i-1 tag+i word NNP reformsNNSCl?NNCl i suffix 320NNSRQCDRQ?i+2 word parkedJJzG?NNzGi-1 tag+i word CC wesselsNNPS/$NNP/$?i-1 tag+i word DT nativeNN`"?JJ`" i suffix LBONNʡE@JJGzNNP/$i-2 word magnifiedVBGA`"ۿNN= ףp=?JJxi-1 tag+i word NN deficiencyVBnNNn?i-1 tag+i word VBP applesNNSV-?RPV-i-1 tag+i word DT carpetJJA`"NNPSX9vNNSK7A`NN +@i-1 tag+i word RB retainVBPK7A?JJZd;OͿVBDffffffVB?i-1 tag+i word VBG fundingVBGFxNNFx?i word deadlineNNL7A`?JJL7A`i word rangersNNSClNNP|?5^NNPSA`"?i-2 word mailsonIN9vNNPʡE?NNQi word slovenianJJGz?NNPGzi-1 tag+i word NN writerNNffffff?JJRffffffi-1 tag+i word VB elsewhereRB^I +?JJ^I + i suffix B2VBףp= JJL7A`@NNPZd; i word ericNN{GzJJffffffƿNNPuV?i-1 tag+i word JJ toryNNnٿNNPn?i-1 tag+i word -START- mayhapPDTCl绿NNS333333RB|?5^@NN(\ڿNNPFxi word whitewashNN'1Z@NNSzGRBOnJJ~jti-1 tag+i word NN wantVB?5^I ?NN?5^I i word golfingVBGuVNN r?JJ+i-1 tag+i word VBP worthNN333333JJZd;OIN rh?i-1 tag+i word JJ assistanceNNMb?INMbi-1 tag+i word TO findingNNT㥛 VBGT㥛 ?i-1 tag+i word NN smoothVBHzG?VBDHzGi-2 word reduction$1Zd?NNl?JJlNNP1Zdۿi-1 tag+i word -START- embeddedVBNףp= ?NNPףp= i-1 tag+i word IN repaidNN(\VBNS@JJFxi-1 tag+i word IN australianJJbX9@NNPbX9i-1 tag+i word CC repairNNHzG?JJHzGi+2 word attendantsVBPSJJCl?VBDClVBS?i tag+i-2 tag TO VBNVB-ӿDT?5^I WPʡEƿNNP-JJ^I +PDTMڿVBNM¿WDTʡE?JJR333333?VBGy&1NNx&1CC rh@INQNNS+?VBDM@CDClRB!rh̿i-1 tag+i word VBG pricecuttingVBGQNNQ?i-1 tag+i word NNP learnedVBDx?VBNʡENN}?5^IԿi-1 tag+i word IN refundingVBG?JJi-1 tag+i word IN sellVB#~j?VBP;On?JJoʡ?NNMbi-2 word showroomsNN`"JJSſNNPMbX9? i+2 word addsNNCl?VBGCl i word found NNx&1VBD-F#@VBP-JJ +NNPffffffVBxVBNX9 @INOnVBZ|?5^NNSX9vRB= ףp=i+2 word applicationsVBNjt?JJOn?RB(\VBDx&1i-2 word crisisWDTNbX9INNbX9? i word inningVBGmNNm?i word predictingVBGGz?JJGzi-2 word attachNNS+?VBNI +?JJsh|?IN1Zd?VBP1Zdi-2 word priorityVBZX9vNNSX9v?i-1 tag+i word : beanNN= ףp=?JJ= ףp=i-1 tag+i word DT concordNN'1ZԿNNP'1Z?i-1 tag+i word , alcoholJJRQNNRQ?i+1 word stanleyNN1ZdۿNNP1Zd?i-1 tag+i word NN seatNNSSNNS?i word somewhat JJGzINK7A`RBV-!@DTX9vNNSI +ֿNNJ +VBDK7ARBSV-WDT^I +WPʡEֿi-1 tag+i word MD provideVB'1Z?RB'1Zi+1 word whittakerJJd;O?VBDd;Oi-1 tag+i word WDT trackVBPZd;?NNZd;i-1 tag+i word RB upstartNN"~?JJ"~ i+1 word irksWDT$CIN$C? i word rublesNNS333333?NN333333i-1 word scuttledRB+?VBD+i-1 tag+i word NNP macNNPSbX9NNPbX9?i-1 tag+i word NNS skyrocketedVBPZd;VBN㥛 ڿVBDS㥛?i-1 word engineeredNNK7A?JJK7Ai+2 word rackedNNK7A?JJK7Ai-2 word wrightNNʡEPDToʡ?JJʡE?VBZK7A`?DToʡNNSK7A`ݿi-1 tag+i word VBG bowlingNNL7A`?JJL7A`i+2 word precludeWDTm?INmi-1 tag+i word TO outfitVBFx?NNFxi+2 word generationNNPd;O޿DTd;O?i-1 tag+i word POS worthNNSʡENNm?INV-߿ i word sisNNB`"NNPB`"?i-1 tag+i word CC citywideVBMbJJMbX9?NNp= ףi-1 tag+i word CC guaranteesVBZl?VBѿNNS}?5^Iܿi tag+i-2 tag `` VBN VB1ZdRB!rhNNw/?DTd;O?NNSh|?5VBGx&1JJ㥛 @INQNNPMbX9?i+1 word segmentJJjt VBGGz?NNSOn?NN~jt? i-2 word pumpVBNx&1?VBDx&1 i-2 word bpcaNN^I +NNP^I +?i-1 tag+i word TO vanillaVBX9vNNRQ?JJ~jtNNPGzi word approximatelyRB}?5^I@JJ}?5^Ii-1 tag+i word POS swollenJJX9v@VBN-NNi-2 word wavingVBG+NN+?i-1 tag+i word DT mirageNNPS#~jNNGzNNPʡE@i-1 tag+i word , tinyVBClJJCl?i+2 word ownersNNjtVBNm?VBPjt?JJmINMbX9?DTMbX9i+2 word chairsNNSx&1?NNQſJJxi+2 word industryNNPSA`"˿PDTFx?POSEпVBNS㥛пVBGX9v?VB(\?IN333333RP7A`?VBDv/NNS ףp= VBPVBZ|?5^?NNxJJ(\?DTFxѿNNP1ZdRBjt?i+1 word explanationVBG"~JJsh|??NNؿi-1 tag+i word VBP legitimateVB?5^I ڿJJV-?NN|?5^ i suffix dumNNS ףp= ߿NN㥛 ?JJB`"i-1 tag+i word CC closingVBG#~jNN#~j?i+1 word infantsJJS r?RBS ri-1 tag+i word NNS joinedVBNjtJJ;OnVBDK?i word favorablyVBN/$RB/$?i-1 tag+i word PRP undertookVBPlVBDl?i-1 tag+i word NN thriftsNNPʡENNSʡE?i+1 word mudslingingJJ+?RBRV-NNh|?5 i word mindsNNSV-?RBRV-i-1 tag+i word : produceVBSVBPS? i word aikenNNPCl?CDCli+2 word hawesvilleRBR-NN-?i-1 tag+i word NN specifyingVBGv/?NNv/i+2 word explorationVBԿRP?INPn?WDTPni-1 tag+i word VBZ imperativeJJRQ?NNRQؿi word imperialistsNNPSSNNSS?i+2 word faxedVBNbX9VBDbX9?i-1 tag+i word -START- hondaNNQNNPrh|?PRPli+2 word sectionsRBףp= INףp= ? i suffix 189JJ +CD +?i-1 word stampsVBP7A`RB7A`?i-1 tag+i word CC cultivatingVBGMbX?NNMbXi word windowsVBZ^I +NNSQ?NNOni-1 tag+i word VBN showaNNzGNNPzG? i word tableRB~jtVBʡENN(\@NNSV-JJnJi+1 word pageantJJ}?5^I?RB}?5^Ii-1 word falseNNK7A?JJK7A i word briefsINOnNNSM@NNʡENNP&1ڿi-1 tag+i word RB botherVBMbX?RBMbXi-1 tag+i word DT frighteninglyRBd;O?JJd;Oi tag+i-2 tag WRB VBZVBGx&1JJS@NNx&1RBnNNP-?NNPS;On?i-1 tag+i word PRP$ cabinetNN+NNP+?i-1 tag+i word NNS tiedVBNA`"?VBDA`"i+2 word boostsJJ&1NNP&1?i-1 tag+i word -START- soonJJ1ZdRBZd;O@VBN/$޿NNffffffNNPi-2 word filesNNSZd;O?JJZd;Oտ i pref1 RVBGoʡ?VBPSVBZ|?5^RBR`"CDnUH|?5^WP+PRPʡENNPZd;ߏ+@JJRMbX9DTK7ѿTOZd;OIN ףp= JJPnNNʡERBL7A`NNSlqVB?VBDV-ǿVBN$C?WDTENNPSuV @i+1 word specializesWDT rh?IN rhտi-1 tag+i word NN heinzNN+NNP+?i-1 tag+i word JJ predictedVBD㥛 ?JJMbX9INMҿi-1 tag+i word TO goutyJJ/$?VB/$i-1 tag+i word CC renewsNNT㥛 пVBZM?NNS}?5^I i-2 word cut VBN~jt@DT#~jNNPK7ٿJJQNNʡERBrh|@VBZ~jtNNS/$?VBGK7?CDn i word seesVBZI + @VBSJJp= ףVBDuVi-1 word diplomaticallyVBNV-߿VBDV-? i word snakeNNV-JJQ˿NNPK7A`?i-1 tag+i word RB followVBS㥛VBPDl?JJni-1 tag+i word NNS consumedVBNM?VBDMi-1 tag+i word NNS a.NNZd;?VBDZd;i-1 suffix calCDffffff@JJRh|?5JJClNNSB`"?JJSClRBIN?5^I VBZ|?5^NNPSZd;OVBG9vVBN rhWRB1Zd?NNPS㥛?NN`" @VBDHzG?FWm?RBR/$VBPy&1Կi-1 word saintlyVBzGNNSzG?i+1 word diningNN5^I ?JJ5^I i-1 word burbankNNP/$VBDbX9@NNuVݿJJp= ףпi-1 tag+i word NNPS appearVB/$VBPw/?NNy&1VBD~jti-1 tag+i word VBN recordingVBGffffffNNffffff?i+2 word economicallyRB}?5^I?IN}?5^I̿i+2 word cambridgeNNSQCDQ?i word rodgersNNPSOnNNSx&1NNPoʡ@ i word tautJJʡE?NNʡEi-1 tag+i word RB somewhatRBK7A?VBDK7Ai-1 tag+i word DT feelingNNCl?VBGCli-1 word causticNNSDlٿNNDl? i word strictVBP\(\RBVB+JJQ@NNv/VBNPnпi-1 tag+i word -START- pricesNNPSQNNSm?NNԿ i-1 word hopeWDTx&1NNSCl?NNClINx&1@i-2 word presenceNNSGzֿNNoʡNNPtV?i-1 word dealerINQ?NNQ i word hillsVBZK7A`NNPS~jt@NNPX9vi+1 word declinersJJףp= VBDףp= ?i-1 word weddingNNS+NN +@NNPB`"i-1 tag+i word NN dengNN`"NNP`"?i-2 word skirtJJ+?NN+i-2 word steel NNSQ?VBGL7A`堿RB?VBDK7A?RBRMb?VBNZd;JJRMbпCDGz?NNPFxVBx&1ؿNN%C̿JJRQ@i+2 word splitJJQֿNNQ?i-1 tag+i word IN launderedVBNʡE?JJʡEi-1 tag+i word DT affectedVBNxJJx?i word airwavesNNSd;O?NNd;Oi-1 tag+i word IN frenchJJ{GzNNP{Gz?i-1 word differentPRP$+NNPS}?5^IԿNNS|?5^@NNi-2 word arbitratorVBG +ֿNN +? i word coupleNNS㥛 JJ(\ڿNNV-@FW+i+1 word sexualVBsh|??JJsh|?ݿi-2 word gaborPRP$/$?PRP/$i-1 tag+i word NN travelsVBZrh|?NNPrh| i suffix isyNNSɿNN"~j?JJh|?5i-1 tag+i word VBZ decreasedVBDbX9VBNbX9?i+2 word grandsonVB$C?VBP$Ci-1 tag+i word NNP keanJJbX9NNPbX9?i word bungledVBNGz?JJGzi-1 tag+i word VB onRP5^I ?NNP5^I i-1 word board'sJJl?VBGli+2 word messingerVBZB`"?NNPMbX9INQ i-1 word browVBZˡE?NNSˡEi-2 word vestedDTQ?WDT$C˿INZd;Oi word admittedlyRB/$?NN/$i word witnessesVBZZd;NNS"~?NNPQi-1 tag+i word VB grownVBNZd;O?JJZd;Oǿi+1 word batteriesVBN(\NN(\?i-2 word cynthiaVBZ)\(?NN)\(i-1 tag+i word RB hearVB#~j?JJ#~ji-1 tag+i word PRP$ ownNNClJJR(\VBN;OnJJ%C@NNSX9vNNP/$i-1 suffix nalJJlFW$C?IN`"?MDn@RB(\VBNx&1WDTKNNP rh?NNPS/$?VBGx&1NNNbX9 @VBDX9vVBX9vVBPd;OVBZ"~NNSjt@i-2 word chefsVBZʡE?VBPʡEӿ i word incestVB +NN@JJSX9v޿UH㥛 RB;Oni tag+i-2 tag : NNPSNNP9v?NN(\CDn? i word wisNNP?NN i-1 word datNN?JJi-1 tag+i word IN thinNNSmJJHzG?NNS㥛i-1 tag+i word WP choseVBPjtVBDjt? i word pickedVBP\(\VBN$CۿJJMbVBDHzG@i-2 word discloseNN7A`?NNS7A`VBNMbX?JJMbXi-1 tag+i word JJ closerRBRZd;?NNS㥛JJRw/?i+1 word bearingsJJ5^I @VBG5^I i+2 word danielJJMb?NNPMbi-1 tag+i word JJ crsNNSOn?NNPOn i word waveVBPNbX9ؿNNSMbXNNx&1 @JJV-JJR7A`i-2 word subterfugeVBw/?JJw/i-1 tag+i word VBZ canadianNNPJ +?JJJ +ѿi-1 tag+i word TO petrieVB!rhNNP!rh?i-1 word missesPRP$K7A`PRPK7A`?i tag+i-2 tag VBD ,PDTZd;߿CC-˿VBN#~j@WP+?RP+@NNJ +?IN(\?UHmVBGMbX9DT$CPRP9v?VBI +?RBRQNNPSMbJJSS?JJR(\VBDp= ףJJPn?RBQ?NNSuVNNPV-CDtV?EXx?PRP$V-i-1 tag+i word PRP$ midstNNGz?NNSGzi word appliesVBZ`"?IN`"i-1 tag+i word VBN waivedVBNףp= ?RBףp= i+1 word doctorsNN?JJ|?5^NNPSCDʡEVBP|?5^?i-1 tag+i word RBS goodJJoʡ?NNoʡi+1 suffix ostWPNbX9?PRPRQ?VBvRBRL7A`NNPS(\?JJRL7A`?VBG/$?VBP-?DTx&1?RPrh|?VBDPn?RBZd;O?CD㥛 IN%C?MD5^I ?NNQ?VBN7A`''KWDTMJJh|?5VBZ@POSx&1 NNSoʡ?PRP$MNNP"~ i word temperaturesNNS/$?JJʡEVBZS㥛i+1 word crashedNN?5^I ?JJ?5^I i+1 word edgeVBG&1NNK7?JJ(\i-1 tag+i word IN basingNNMVBGM?i+2 word vitalyNNbX9?FWbX9i-1 tag+i word , pointingVBGV-?NNV-i-1 word agentNN%CNNP%C@i-1 word equallyJJ= ףp=?VBZd;O?VBG{Gz?VBN\(\NNZd;Oi word expertiseVBPx&1RBzGʿVBZ)\(VBq= ףpNN- @VBNni-1 word metricNN{GzNNP{Gz?i-1 tag+i word JJ americanJJDl @NN+NNPNbX9i-1 tag+i word JJR defaultsNNS/$?NN/$ i+2 word dustRBX9vINX9v? i-1 word sonyNNP`"VB㥛 ?NNZd;O?VBDZd;O?WDTV-?INV-VBZZd;Oi+2 word machine RPK7A?NNQ?CDbX9ȶNNSjt?NNPrh|JJ+@PDT rh?VBNnVBP;OnRBK7Aп i suffix uskNN+?JJ+i-1 word earnedRBRsh|?PRP$"~jܿPRP"~j?JJRsh|??i+1 word scareNNPQ?NNQi-1 tag+i word IN failingVBG ףp= ?NN ףp= i word reformsNNS(\@RB+NNK7 i+2 word ryeNNPSv߿VBNx&?JJx&ѿNNPv?i+1 word dennisNNCl?NNPCl˿i-1 tag+i word JJ publicNNw/?VBPy&1ԿJJ r?DTV-NNS(\NNPMbpi word intergenerationalJJK7A?NNK7Ai-1 tag+i word , chopNNx&VBx&?i-2 word fripperiesVBN㥛 VBD㥛 ?i+1 word comparabilityNNSxJJ7A`?NNQ i-1 word connNNSMbXVBZMbX?i+1 word turbogeneratorVBN'1ZJJ'1Z? i word looserJJR/$?JJ/$i-1 tag+i word VBP painedVBN|?5^JJ|?5^?i-1 suffix lboNNSZd;?POSZd;i+2 word resources VBI +?VBGPDTuV?VBNVBPZd;O?JJ9vNNI +?VBDT㥛 VBZK?DTuVNNPK7?i+2 word shellVBNClVBDCl?i-1 tag+i word VBD soloNNK7?JJK7i word highwayNN?5^I @JJ%CCDjtNNSx&1i-1 tag+i word WRB negotiatingVBGʡE?NNʡEi-1 tag+i word -START- maureenNNQNNPQ?i-1 tag+i word VBZ purgedNNS+VBN+?i+2 word committedNNMVBDM?i-1 tag+i word NN fasterNN^I +JJRmRBR9v@i-1 tag+i word VBD resistanceNN"~?RB"~i-1 tag+i word NN orchardINnٿNNQ@RB1Zdi-1 tag+i word VB wheneverWRBv?NNvi-1 tag+i word -START- measuresNNSK7A?NNPK7Aؿi-1 tag+i word NN proposesVBZFx?NNSFxѿi+2 word israeliNN|?5^?JJ|?5^i-1 tag+i word IN sympathyNNjt?JJjti-1 word those JJ)\(@WDTK7A`?DT\(\JJRS㥛VBN ףp= @RBFxIN)\( @NNSZd;?VBGS?NNrhVBDA`"i+1 word superiorJJRFxNNFx?i-1 tag+i word JJR highwayNNMbX?JJMbXi-1 tag+i word IN ordinaryJJ;On?NN;On i suffix ONOFWl?NNPl i word mimicVB`"?JJ`"i word lindensNNSPnJJx&1NNPtVNNPSp= ף@i-2 word manufacturers JJ/$?VB;On?VBG`"?NN+?VBN(\VBP`"DT rhNNPˡE?NNPSˡEi-1 tag+i word JJ cambodianJJ?NNPi-1 tag+i word DT declineNN-?JJR7A`JJS㥛 i word cdNNP rhNNPSGzNNSNbX9NN7A`P@JJʡE i-2 word thawJJm?NNPmi+2 word operatedDTGz?INGz i-2 word emsNNuVVBDuV? i suffix uts VB/$JJʡEINMbX9VBZJ +@NNSK7A"@NNP5^I ?NNPSˡE?NN`"۹ VBDK7A`VBN/$VBPd;OUHQi+1 word attitudesJJ5^I ?NN5^I i-2 word thingINMbX9VBD ףp= MD ףp= ?VBPMbX9?i-2 word bostonVBN333333 @VBP?5^I ?JJQNNPX9v?NNPSX9vNN'1ZԿVBDK7i+1 word manvilleDT?5^I IN?5^I ? i word glassNN+?JJ+i+1 word arrivedNN\(\?VBD`"NNPv/?i+1 word sangerNNjtܿNNPjt?i-1 tag+i word PRP$ onlyJJ +@RB +i-1 tag+i word `` fromVBDjtVBPKINPn @NNP7A`JJQi+1 word givingRB1Zd?NN?VBDMbXɿVBN㥛 JJlNNSi-1 tag+i word POS borrowingVBGK7NNK7?i word noncombatantJJZd;O?NNZd;O i+1 word goodVBPףp= ?RBˡE}@VBh|?5?VBDNbX9?JJSnRBRQ?JJRQNNP#~jܿJJSVBNMbINClVBZK7A`RBSn?POSK7A`?i-1 tag+i word VBD deadJJRX9vJJX9v?i+1 word missionJJ~jtNNQNNPv? i word aaaJJCl@NNPCli-1 tag+i word VBG adviceNNrh|?RBrh|i tag+i-2 tag MD WDTVBRQ?RBK7A`?NNVBDDlJJR/$JJ{GzԿ i+1 word day VBSNNQWDT}?5^IINEDTQ@NNSMbX9NNPM @VBGv/JJZd;O @CDT㥛 ?PRPSRBV-?i-1 tag+i word CC refinancedVBNV-?VBZV-i-1 tag+i word JJ thousandVB&1ҿNNS+NNMbX9CDS@i+1 word owningJJ㥛 ?IN㥛 i word removingVBGRQ?NNRQi-1 tag+i word CC '40sCDuV?NNPGzNNSMbVBDl i suffix sexVBFxNNʡE@NNSK7AVBNvJJ +޿i-1 word dependRBRK7A?JJRK7Aؿi-1 tag+i word NN insistsVBZy&1?NNSy&1i-1 tag+i word JJ inputsNNSh|?5?NNh|?5i-1 tag+i word PRP$ desperateNNSKJJT㥛 ?NNˡE i-1 word abmNNGz?VBDGz i-2 tag $WDTT㥛 ?INy&1?RBQVBZ~jtCDV-VBDFxVBNʡE@NNPQ@NNCl?CC;On?JJSտDT+߿NNSV-VBG#~jԿi+2 word gorbachev VBNCl?RBOnVBZNNPuV?VBDCl׿NNMVBPrh|?WDTh|?5INjt@NNSq= ףpJJ?5^I ?i-1 tag+i word VBG nutsVBZ㥛 NNSV-?INv/i-1 tag+i word NNS unhappyVBPQJJQ? i word talksJJZd;NNZd;OVBDx&EXffffffֿRB+VBZNbX9@NNSR@NNPuVi+1 word veteranCDClNNPSV-ϿJJCl?NNPV-?i-1 suffix resNNPSOnWDTffffff?RBZd;ODTDl?NNCC+JJRQ?NNSOnVBZ?VBB`"?JJT㥛 ?INGzǿRBR~jtVBPʡE?EXZd;O?RP#~j?VBDMbVBN rh?VBG\(\?CD̿NNP(\?i-2 word looseDTjt?RBjtĿi-1 tag+i word -START- owingsNNS+UHx&1NNPm?i+1 word entrekinNNw/?NNPw/i-1 tag+i word RB argueVB?5^I @VBP&1NNV-׿i word fundamentalistsNNPSy&1ܿNNSy&1? i+1 word shopRP+?JJx&1NNK7?JJRԿRB+NNP1Zd? i+2 word d. VBZ(\?NNS(\NNPOn?VB~jtNNPSA`"NNsh|??VBD5^I VBNX9v@CDCli tag+i-2 tag CD :RBPnNN!rh?WDTffffff?JJ(\INףp= ?DTffffffNNS rȿi-1 tag+i word JJ doorNNPSˡENNSvNNffffff?JJQNNP1Zd?i-1 tag+i word NNP yatesNNPq= ףp?NNPSq= ףpݿi-1 tag+i word WP$ husbandVBP}?5^INN}?5^I?i-1 tag+i word IN rockNNS1ZdNN1Zd?i-1 word construction RBtV?VBZT㥛 ?JJK7A`NNQ@VBDGz?NNST㥛 VBGnVBNGzVBPGzi word recordsNNK7AVBDOnVBPSVBZoʡ?NNS + @NNP= ףp=NNPS(\?i word rockefellerNN!rhCDףp= NNPL7A`e@JJV-i-2 word drexelNNPS(\RB^I +?JJ^I +NNP(\?i-1 word counselVBZT㥛 ?NNST㥛 пRB7A`IN7A`?i-2 word stomachVB|?5^NN|?5^?i-1 tag+i word RB boredVBNˡEJJˡE?i-1 tag+i word NN digsVBZMbX?NNSx?NNjti-1 word expandVBG333333?JJh|?5NNPK7?i-1 word radicallyVBNMbX9?JJMbX9 i-2 word chezNNK7A@JJy&1VBDʡEi-2 word restrictiveJJ+?VBD+i-1 tag+i word VBD restoreVB ףp= ?JJ5^I NNOni word christieNNPS(\NNP(\?i+2 word streamsJJq= ףp?RB(\NNPQi-1 tag+i word , dewVBNʡENNʡE?i-1 tag+i word IN dissentNNS`"NN`"?i-1 word cooperativesVBN"~VBD"~?i-1 suffix sly IN rh @VBGˡE?VBDl?VBPsh|?RBSۿVBNL7A`?VBZ ףp= ?VB)\(JJʡE?NNHzGPDTX9v i-2 word him VBNMbX9?JJ(\NNP|?5^?VBGzNNPSSۿNNx&1@JJRrh|߿VBZ㥛 CDX9v?NNS㥛 ?i+2 word illustrateNNPMbNNSMb?i word standardJJsh|?@NNoʡ?RBRDlRBn NNSENNP&1?VBsh|?NNPSHzGi word maybellineNNy&1NNPy&1?i-1 tag+i word NN tradesVBvNNSp= ף?VBNNN+VBZL7A`?i-1 tag+i word CD advancedVBD= ףp=?VBNClǿJJ9vi-1 tag+i word NNP boroughINK7AVBPMbX9NNV-@RBMbX9i-1 tag+i word JJ discontentJJSſNNS?i-1 tag+i word JJ impoundmentNNv?JJvi-1 tag+i word NNS staggeredVBN(\VBD(\?i-2 word offerNNPS +?NNSS㥛DTzGếCCVBZ|?5^ѿJJRQ?RBRQJJ1Zd?NNK7?PDTPnRB333333INn?NNP ףp= VBn?RPtV?i-1 tag+i word NN obviouslyRB)\(?VBD)\(ܿi-2 word degreeVBG?5^I NN(\@JJL7A`i-1 tag+i word CC municipalNNvJJv?i+2 word contactVBNx&RB&1INClۿVBDx&@RPx&1?i-2 word heterogeneousWDTCl?INCli-1 suffix mcaNNPSPnؿNNPPn?i-1 tag+i word -START- breakingVBGK7A?NNK7Ai tag+i-2 tag `` -START-UHK7RBoʡ @NNSNbX9?NNPSʡE?NNPFxPRP$L7A`?CCp= ף?PDT&1?VBDS㥛WDT)\(̿VBS@WPGz߿VBZ/$DTS㥛@CDMbX9MD5^I JJQFWClWRBy&1?VBGQRBR{GzJJRJ +?JJSw/?VBPCl?PRPRQRBSw/EXy&1IN/$?VBNףp= ӿNNK7A` @LSףp= ӿi word affectedVBNRQJJE?VBD+?i word anticipatingVBGX9v?NNPX9vi-1 tag+i word RB awaitVBPd;O?VBDd;Oi-1 word involvingNN`"?JJ`"޿i-1 tag+i word , furukawaVBZ~jtNNP~jt?i word autonomyNNS?5^I NNPn@JJ i-2 word norJJffffffNNGz?NNPp= ף?i+1 suffix rp. VBClFWMbX9POSQVBZ/$?DTtVNNPGz@NNPSFx@NNx JJ;OnNNSzGi word franchisingVBGMb?NNMbi-2 word affectedVBZJ +VBGbX9NNSJ +?JJbX9?i+1 word boostingRB rhIN rh? i word wooWPMVB"~?JJRtVJJ{Gzi word resolvedVBNףp= ?JJ7A`VBDjt?NN{Gzi+1 suffix ttsJJ?5^I ?VBGNbX9?VBNQNNw/VBDQ?i-1 tag+i word -START- hersNNPS{GzNNSy&1JJCl@NNPrh|Ͽi-2 word switchingVBZd;OJJZd;O?i-1 word currencyRB +޿VBZK7?NNSK7VBG?5^I ?NN?5^I VBDrh|RBR +?VBNrh|?i word wonderedJJT㥛 VBDT㥛 ? i word sonsNNPS{Gz?NNS= ףp=NNP?i+2 word bartlettJJ333333?VBD333333i+1 word qintexVBG}?5^I?NN}?5^IԿi word evidentVBPQVBNx&NNV-JJt@i-1 tag+i word VBP directRB;On@JJ;Oni-1 word nabiscoNNPSffffffNNPffffff? i-1 tag+i word -START- otherwiseNNS +RBQ?NNPd;Oi+2 word goingVBG1ZdۿNN= ףp=?CC rh?WPX9v?JJR333333?WDTCl?RP5^I @VBOn?NNPHzGNNSJ +ٿDT"~RBy&1INp= ףJJ= ףp=?RBR333333VBNI +NNPS\(\i+1 word brandVBG/$NNClӿVBDx&1JJrh|߿NNP= ףp=?VBZd;O?i-1 tag+i word VBD superpowerNNCl?JJCli-1 tag+i word CC cheaperNNSJJR'1Z?RB7A`i-1 tag+i word -START- blacksNNPSZd;@NNST㥛 NNPZd; i suffix BBYNNQ?NNPQ i word sacredVBNClJJ@VBDMbi tag+i-2 tag ( PRP$NNq= ףp?NNPq= ףp i word nigelNNPK7?JJK7 i suffix hawJJX9vNNy&1ܿNNP/$@VBX9vNNS5^I ˿i-1 tag+i word IN peoplesNNPSx&?NNPx& i-1 word restVBNuV?VBDuVi+1 word addressVBGʡENNʡE? i-1 word banNNFx?VBFxi-1 word materialVBN{Gz?IN= ףp=VBD{GzWDT= ףp=?i-1 tag+i word DT tirelesslyRB ףp= ?JJ ףp= ߿i-1 word marlinNNP1Zd?NN1Zdӿi-1 tag+i word CC amusingVBGSJJS?i-1 tag+i word , totteringVBGʡE?JJʡE i word backupNNPVBDlNNh|?5?VBDbX9VBPx&ѿJJ rh? i-2 word mildIN ףp= ?RB(\JJRQi-1 tag+i word NNS agreeVB/$VBPZd;O?RBq= ףp i word gainsVBZQNNS9v?NNPV- i suffix lipNNSxNNCl@JJPnVBD?5^I VBP?5^I ?i-1 tag+i word POS u.k.NNPx&?JJOnNNZd;i+1 word dealtNNq= ףp?VBN +JJпi-1 tag+i word JJ fiatNNS&1NNS?NNPp= ף?i-1 word mitchellVB333333?VBP!rh?NNoʡ i word tourVBx&?NNSHzGNN5^I ?VBD&1VBZ"~ji-1 tag+i word CC faresVBZ/$NNS/$?i+1 word scenariosJJ#~j?NN#~jĿi-1 tag+i word JJ designsNNS~jt?NN~jt i word formalNNSClRBrh|NNnJJ= ףp=@i-1 tag+i word NN shoesNNS +?NN +i+1 word annual DT/$VBGSÿNNL7A`POS/$?VBN-ֿVBZ/$VBDI +JJ+?IN/$?i word novelistVBPx&NNCl@JJOnINX9vi word pastureNN(\?RB(\i word fashionNNP rhNN rh?i-1 tag+i word CD pesetasNNSp= ף?NNp= ףi+1 suffix jr.JJ rhNNP rh?i word pleasedVBN ףp= JJ㥛 0@VBDd;Oi+1 word frogsRP#~j?RB#~ji-1 tag+i word NNP teachVB?NNPi-1 word smolderingNN\(\?CD\(\i-1 tag+i word WDT leftVBNHzGVBDHzG? i word ownVBDd;OJJR(\NNSX9vNN!rhRBv/INvVBZ-RPPnVBP7A`@NNP/$VB@JJDl)#@JJSZd;VBN+i-1 tag+i word JJ modernNN/$ٿJJ/$?i+1 word chinaVBNV-?JJsh|??INq= ףp@DTrh|NNSSNNPV-RBbX9NN7A`i-1 tag+i word JJ statutesNNSK7A?NNK7Ai-1 tag+i word DT deterrantJJ!rh?NN!rhi-1 word squeezeVBGףp= NNq= ףp?JJ ףp= i-1 tag+i word IN marriedJJʡE?VBNʡE i suffix 206VBʡECDʡE? i suffix do VBZףp= NNS5^I RBV-FWzGVBDClJJ= ףp=INQVBZd;@NN= ףp=VBNClVBPlq@i-1 tag+i word CC readVBPy&1?VBy&1i-2 word schedulesVBN?JJp= ףVBD(\µi-2 word appetiteNNV-?JJV-߿ i suffix MePRPOn?NNPOni-1 tag+i word , announcedVBD"~jVBN9v@INDli-2 word merelyRPMbX?RBMbX i word guyVBrh|NNSClNN$C?RBS㥛 i-2 word md.NN r?RB ri-2 word continuedVBd;O@NNx&1ԿRBX9v?JJX9vINV-i+1 word malaiseNN+׿NNP~jt?JJ5^I i+1 suffix spyNNPS(\NNP(\?i-1 tag+i word TO acceptVBI +?INI +i+2 word dividendsVBDZd;VBZV-¿VBPv/@JJT㥛 RB;Oni-1 tag+i word , detailingVBG +?NN +i word predictiveJJ~jt?NN~jtӿi+1 word distinguishedRBS\(\?JJS\(\i+1 word cleanerNNS㥛 NN㥛 ?i+2 word groceriesNNCl?INCl i+2 word bassNNPjtNNS^I +׿VBNjt?NN/$?VBD/$i-1 word ultimateNNsh|??JJRQVBPV-i word typicalNN1ZdNNP~jtJJGz@VBN+i-1 tag+i word VB aloneJJZd;O?NN;OnRB ףp= ?i-1 tag+i word NNP mackNNGzNNPGz?i-1 tag+i word VBG advertisingVBG333333NN!rh?JJT㥛 ؿi-1 tag+i word VBN likeRP~jtJJ= ףp=IN +?i+2 word raisedRB?5^I NNK7?JJHzGNNPm? i suffix 981CD?JJZd;OVBDSi-1 tag+i word DT increasingVBGʡE@JJQֿNN= ףp=i-1 tag+i word VB solidlyRBMb?NN`"VBNmi-1 tag+i word DT decentralizedJJ`"VBNK7?RBQi-2 word china NNFx?VBD\(\VBNSNNSSVB`"?JJQ?RB +NNPy&1NNPSRQ? i-1 word hateNNS+?NN+i-1 tag+i word WP visitsVBZV-?NNV-i+2 word underworkedVBN~jt?VBDˡEԿVB-i-1 tag+i word WDT thereNN"~EXT㥛 ?RBX9v? i suffix IMSNNSʡE?NNPʡEi-1 tag+i word PRP$ maritalJJrh|?NNrh|i-1 tag+i word JJ deadJJZd;O?NNZd;Oi+1 word alienatingVBZv/?NNSv/ i suffix coyJJ/$?NN/$ i word cowsVB+NNS|?5^?VBZ!rhi+2 word magazineNNVBD?JJNbX9 NNP\(@VB{GzVBG9v?i-1 tag+i word VBZ improvedVBN|?5^JJp= ף?VBD%Ci word urgentlyRBK?NNPKi+1 suffix dzeNN rRB ףp= NNPCl@i-1 tag+i word NNP givethVBZl@NNSCl߿NNx&1i+1 word munisJJRrh|?RBRrh|i-1 word nicaraguanVBPmNNm?i-1 tag+i word DT billNNZd;@NNPZd; i suffix ypsVBp= ףNNS!rh @VBNFxNN1Zdi+2 word zalubiceVBZMb?VBMb i word choppyJJ9v?RB9v i-1 tag+i word -START- simulatedJJtV@VBDI +VBN rhi-1 tag+i word CC dryNNh|?5RB(\CD\(\VBZL7A`JJuV @i-2 word reviveVBG{GztNN{Gzt? i+1 word navyVBN)\(?VBD)\(ܿi-2 word backlogsVBNM?VBDMi word chemicallyRBn?VBDnѿ i suffix ino VBZd;NNjt@VBDQNNSMbX9NNPMbp?RBZd;RBRZd;CDMbPJJJ +i-1 tag+i word VBD eagerJJRQJJQ?i-1 tag+i word NNP securitiesNNPS|?5^@NNSx&1NNP$Ci+2 word negotiationsVBV-VBG)\(?JJ)\(VBDV-?i+1 word division NNPS㥛@VBSNNPS`"?NNMbVBPffffffJJ~jtVBZ rhNNS}?5^I?VBGK7i word commissionsVBZ ףp= ?VBP+NNSI +?NNq= ףpNNP/$i tag+i-2 tag PRP VBZVBD rVBP/$VBNrh|?VBGˡE?CDX9v?DTL7A`?MDV-RPK7A?NN9v?CCʡENNSv/JJRMb?RBR$CۿVBZ(\VBjt?RBZd;OJJ1ZdIN/$?i+1 word ownerNNx&@JJ}?5^IVBNؿ i-1 tag+i word -START- televideoNNPSQ޿NNPQ?i-1 tag+i word IN seventhJJSſNNPMbX9?NN`"i-1 tag+i word DT sweetJJjt?NNjti+2 word actingVB/$?VBP/$i word vacationingVBG$C?NN;OnJJjti+2 word medicineVBG= ףp=NNSS?NNd;O?i-1 tag+i word NNS furtherJJRRBSVBPZd;RBRl@JJ-˿i-1 tag+i word `` cautionNNMb?NNPMbi-1 tag+i word NNS ratioNNV-?JJV-׿i word deficitsVBZS㥛VBv/NNSq= ףp @NNSi-2 word satisfyVBSNNS?i+1 word healthy RB= ףp=?NN/$RBRq= ףp?VBNCl?JJ= ףp=JJRʡEۿVBClVBZ= ףp=?NNS= ףp=i+1 word primeJJS㥛?NNS㥛VBDV-?VBNV-߿RBK7INK7?NNPS㥛?i-1 tag+i word DT slowingVBGh|?5?NN333333?JJ5^I i-1 tag+i word NNP circleNNQ˿NNPQ?i-1 tag+i word -START- curdlingVBGHzGNNPHzG?i-2 word kidderVBh|?5NNʡE?VBGV-ҿVBNK7?JJDli-1 word expendituresRB^I +߿IN^I +? i+1 suffix #VB|?5^VBG ףp= RBzG @VBNV-JJrh|?IN`"RPL7A`?i-1 tag+i word RB linked''B`"VBNˡE?JJT㥛 i-1 tag+i word DT encouragingVBGGzJJl?NN"~jԿ i suffix ustJJˡE@NN rh?CC|?5^VBP-@VBN+VBDMbX9ԿRB~jt @JJRPnNNP)\(?NNSˡEVB-JJSףp= CDS㥛INOni word xl\/datacompNNPy&1?NNzGRB"~ i word chooseVBD#~jVBM?VBP#~j?JJMi-2 word failedJJZd;O?VBʡE@PDT= ףp=DT333333ۿNNsh|?i+1 word outsiderVBNx&1JJx&1?i-2 word actorsVBN|?5^JJ|?5^?INq= ףp?RPq= ףpͿi-1 tag+i word -START- gilletteRB333333NNP333333?i+2 word toughVB|?5^VBP|?5^?NN|?5^?NNP|?5^ʿi-1 word duffersVBDl?VBPQVBD+ i word laborNNPSX9vNN@VBDףp= JJV-NNSA`"NNP-ƿi-2 word steadilyDTv߿INv?i word vintageJJ{Gz?NN{Gzi-1 tag+i word NNS stressVBPrh|?NNrh|Ͽi-1 tag+i word CC extendsVBZDl?VB7A`RB?5^I ¿i-1 tag+i word CC easiestVBB`"JJSx&1?NNI +i-1 tag+i word IN rightsNNPS5^I @NNS9vڿNNPGz i-1 tag+i word IN fixedJJjt?NNSRQVBNtV?NN ףp= i-1 tag+i word IN discreteJJy&1?NNy&1 i-1 word z''MbX?POSMbXi-1 word nationallyRB^I +IN^I +?i-1 tag+i word VBG scalpsNNSGz?JJR~jthNNCli-1 tag+i word VB allegedVBNK7AJJQ?IN\(\i+2 word april INd;O?VB(\?NNq= ףpVBN(\ @VBZ"~DTd;ONNS"~?VBG~jtÿVBDClJJSi-1 tag+i word DT chancesNNSʡE?NNʡEi-2 word cardiffNNSZd;NNPZd;?i-1 word coverageWDTʡE޿INʡE?i-1 tag+i word TO endVBˡE?NNˡEi-1 word contracts NNSI +VBGx?RBCl?VBD5^I ?RBRV-ǿJJNbX9VBZv/?VBd;OVBN}?5^I?VBP(\¿i word imaginedVBNffffffVBDffffff?i-1 tag+i word WRB nextINʡEJJʡE?i+1 word hegemonyNNPףp= ?NNPSFxJJh|?5i-1 tag+i word , reasonableVB'1ZJJ'1Z? i word polesNNPSNbX9?NNSMbX9ܿNNPv/տi word ordinanceNNSK7ANNK7A?i-1 tag+i word JJ flyingNNlVBGl?i-1 tag+i word JJ scriptwriterNN`"?JJ`"i+2 word adornedVBN"~jܿJJl?VBDGz i+2 word ceoINSDTK7WDTZd;O?i-1 tag+i word DT rubleJJK7 NNm?FWsh|??i+1 word darwinianJJ?NNSVBN +οi tag+i-2 tag PDT ININ`"DT`"?JJ rh?RB rhi-1 tag+i word VBZ goldVBN9vNN9v?i word jeopardizeVB"~j?JJ"~ji word universeNNSʡENNy&1?JJoʡ i word woundVB|?5^?NNS㥛VBDzG?VBN-VBPPnVBZˡEĿi-1 tag+i word : eitherCC|?5^?DT|?5^ i+1 word coldVBG ףp= ?VBNjtJJjtĿi-1 tag+i word PRP viewVBP333333?VBD333333i+2 word dressVBPA`"NNS+?NNv/?i+1 word sportyNNPV-?CDV-i-1 tag+i word RB censoredVBK7AVBNK7A?i+2 word straightRPPn?VBDK7?VBNK7ٿINPnVBZoʡNNSoʡ?i+1 word happenedNNK7?WP{Gzt?WDTDl?INPnDTjt?NNPQVBGʡEi-1 tag+i word DT reproductiveJJ5^I ?NN5^I ۿ i suffix psyDT&1NNSFxNNv?JJvi-2 word hairyWDTʡE?INʡE i word racingVBG+NN+?i-1 tag+i word NN confusingVBGuVտJJv?NNB`"i word diphtheriaNNS rNN r?i tag+i-2 tag VBG VBN JJQ?PDTGzRBRJJR\(\ϿRB|?5^?INK7A`?DTlڿVBG1Zd?VBD5^I VBNx&1ԿRPPnNNPZd;?NNM@i-2 word bannedCC㥛 ڿDTʡEPDTx&1@JJrh|?NNPrh|i-1 tag+i word VB decideVB?JJ i word errorVBZV-VBʡEӿNNV-?JJ(\i+2 word spokesmanPRPm?JJClDTGz?NNPHzGNNPS?RBS#~j?JJS#~jԿi-1 tag+i word '' financingNNmVBGm? i word slidNNw/VBDffffff @VBZZd;JJRQi+2 word hispanicVBDB`"۹NNPSVBNB`"۹?NNS?i-1 word eliminatingNN!rhܿPDT(\JJ!rh?IN ףp= DTOn@RBZd;O?i-1 tag+i word JJ engagesVBZ;On?NNS;Oni word responsiblyRBy&1?NNy&1i+1 word appealedNNPCl?NNPS/$NNSMi-2 word consolidationVBN5^I ?JJ5^I i-1 tag+i word JJ intitiativeJJClNNP'1ZԿNNGz?i word jarringNNClVBG"~jJJuV@i+2 word fieryNNsh|??NNPsh|?i+1 word bought JJSVBZFxNNP^I +@RBE?NN9vʿWDTCl?NNSZd;O?NNPSZd;OVBNvINCli-1 word affairsVBPDlVBZx&1?NNSʡENNX9v?VBDzG?VBNzGi word realizeVBPX9v?VBX9vi+1 word folksJJQ?VBNzGNNQVBDzG?i word studentNNP/$NNQ@JJ"~i-1 tag+i word VBZ endangeredVBB`"VBNB`"?i+1 word litterJJ/$NN/$@ i-1 word ualVBZT㥛 ?JJKPOS|?5^?NNK7?VBDRQi-1 tag+i word NNP iiNNPSK7ANNPK7A?i+1 word voting JJHzG@VB-RB&1VBD{GzVBN{Gz?VBP-?NNPK7ٿNNPSK7?NNrh|i-1 tag+i word NN remainedVBNnVBDn?i-1 tag+i word JJ proteinsVBZˡE?NNSˡE i-1 word fujiJJSӿNNPS?i+1 word tendencyVBGS㥛NNuV?JJx&ѿi-1 tag+i word -START- ratherPRPʡERBQ@NNPV-JJRMbX9RBR`"UHK7i-1 word barrierVBPKNNd;OJJ"~jJJR!rh?RB"~j?i-1 tag+i word JJ impactNNE?JJ-޿NNPtVi-2 word ceasedNNsh|?@JJsh|?i-1 tag+i word NNP ricanJJV-?NNPV-i+2 word nervesPRP$S?RP|?5^VBSIN|?5^?i word progressVB|?5^?VBPFxٿNN+@JJˡERBʡE i word tragicJJ|?5^?NN|?5^ i word demiseNNQ?JJV-RBK7Ai-2 word endingNNS!rhNNS?JJ{Gz?i+1 word designsWDT'1Z?JJ+ηNN+η?IN'1Zi+2 word traboldNN-NNP-? i word churnRBvVBPv?i word steelworkersNNPS rh?NNP rh i-1 tag+i word VBN understandingNNA`"?JJA`"ۿ i word towelNNSѿNNK?JJ"~ i suffix rnoJJtVNNPtV?i-1 tag+i word JJ weldingNNx&?VBGx&i-2 word hobosVBP㥛 ?VBN㥛 i word lagNN(\@RB}?5^INNPGzVBP+?NNSףp= i-2 word fewerVBGZd;ONNL7A`?RB{Gzi-1 tag+i word CC harderVBHzGJJR㥛 ?RBRS㥛? i word irianJJ;OnNNP;On?i-1 tag+i word DT packagingVBGjtNNjt?i+2 word doughertyNNV-?NNPV-i word unclearNN9vJJ9v?i-1 tag+i word RB providerVBvVBPL7A`ؿNNl@JJQi-1 tag+i word PRP$ overheadJJFxNNSnڿNNCl?i-1 tag+i word IN affiliatedVBNGz߿JJGz?i+1 word handlersJJtVNNtV? i suffix lchNNSQVBNmͿNNK7A`?i word emotionNN"~j?JJ"~ji+2 word exactlyVB= ףp=VBD= ףp=? i suffix DLJJJ9vNNP9v?i tag+i-2 tag JJR VB JJClVBNp= ףINw/NNSOn?NNP= ףp=ҿVBp= ףRP~jt?NN rh @RBtV?i+1 word sometimeNN rh@JJ rhi tag+i-2 tag DT .NNPSZd;O?JJ'1ZNNxֿNNP$C i+2 word l.j.DTZd;?RBZd;߿i word dwarfedVBNbX9?JJbX9i-1 tag+i word PRP changesVBZ +?NNS +i-1 tag+i word NNP malcolmNNPSrh|NNPrh|?i-1 tag+i word NNP petroleumNNP!rh?NNPS!rhi+1 word traditionalistJJA`"?NNA`"i word conistonNNx&1?NNPx&1i word retrainingVBGrh|?NNrh|i+2 word exercisedDTʡEWDTV-?INX9vi+2 word purposesNNS"~VBGV-?JJ+?NNS!i-1 tag+i word VBG astrophysicistNNV-?JJV- i word rudeVBMbX9ܿJJS@NNQVBNx&1i word amassedVBPv׿VBNK7A?VBD!rhi-1 tag+i word VBZ doubtVBjtNNjt?i-1 suffix fccVBZx&1NNSx&1?i-2 word commonwealthVBPQNNQ?i+1 word stealthJJ/$NNP/$?i-1 tag+i word PRP proveVBQVBPQ@i word generatesVBZCl?VBPCli-2 word governorsRBSʡE?JJSʡEi-2 word drillNNSPn?JJPnNNPnNNPPn?i-2 word ultimateVBZd;O?NNSd;Oi-1 word intravenousNNS"~?NN"~ i word hitterNNI +?JJI + i word worryVBP/$ @NNSZd;ONNGz?JJMbX9VBD%Ci-1 tag+i word IN fasterJJR-?RB/$RBR/$?JJ-i-1 word awfulJJsh|??NNPsh|?i-2 word restraintsVBPGz?JJGzi+1 word middlemanDT= ףp=?JJ= ףp=i+2 word reliefVBZx?NNS;OnNN rhVBGX9v?i-2 word injunctionVBʡEJJ(\@RBMbi-1 tag+i word NN buysVBZˡE?NNSOn?NNjti-1 word treasurysVBNClVBDCl? i-2 word ittVBDw/VBQ@VBPx&RP@RBi+2 word transactionsVBMb?NNRQVBDv/?VBNv/JJX9v?VBZʡE?NNS/$i-1 tag+i word NN clutterRBR= ףp=NN= ףp=?i+1 word restrictiveRBRsh|??JJRsh|? i word adroitJJ`"?NN`"i+2 word matchNN/$VBN/$?JJV-?FWV- i word troopJJx&1NNx&1?i word recognizedVBDK7?VBNOn@JJQ VBZ+VB{GzNN i word dullerRPoʡտRBRn@JJR?5^I i+2 word meVB rh?NNSMbXNNʡE@JJX9vNNPˡEi-1 tag+i word JJ producedVBD rhVBN rh?i-1 tag+i word PRP scuttledRB+VBD+? i suffix aiVBDMbVBZd;OVBPOn@INoʡi-1 tag+i word JJ tendVBP333333?NN333333i-1 word collectNNx&1?RBx&1i+1 word emotionalNNS|?5^JJX9v?NN~jthi+2 word guildersVBN\(\?JJ\(\׿i-1 word importsVB|?5^NNQVBD"~?JJRbX9RBRQ@VBPJ +i-1 tag+i word NNP heartsVBZGzNNPSx&?NNP9vi-1 tag+i word NNP innsNNPSjt@NNPjt i word lynchNNPʡE?VBDʡEi-1 tag+i word -START- wivesNNPSy&1NNSy&1?i-1 tag+i word TO trimVBZd;?JJZd;i+1 word incomesNN ףp= VBN$C?JJQi-1 tag+i word , virginVBG|?5^JJ|?5^? i-1 tag+i word PRP$ subsidiariesNNS/$?NN/$i+1 word wearyRBX9v?JJX9vi+1 word barometerNNS(\JJ(\?i+2 word componentsDTS㥛?PDTV-JJV-?NNV-RBףp= i word londonVBʡENNSZd;NNPJ +?i word distantJJ?NNi-1 suffix galVBGNNq= ףp?FWClJJ333333NNSB`" @NNP^I +?NNPS333333i word spurtedVBNZd;O?JJZd;Oi-2 word accountantsVBN+JJ{Gzt?INA`"VBT㥛 ?RPA`"?VBDK? i word stand INGzVBMbX @JJ'1ZRBQVBP~jt@VBZnNNSV-NNPClNNNbX9VBDMVBNrh|i word scheduledNNRQVBNmR@JJ ףp= ?VBD'1ZJJR'1Zܿi-1 tag+i word CC whitesVBzGNNS"~?JJR&1i word chortledNN+VBD+? i+2 word tailNNPS㥛CDS㥛?i-1 tag+i word JJ outfitsNNS%CNN%C?i word generatedVBNV-ڿJJZd;VBD{Gz?i+2 word punishableJJ(\?VBD(\i-1 tag+i word DT upgradeNN(\?JJ(\i-1 suffix sit RPsh|??RB)\(NNSFxVBG+VBZlJJB`"ɿNN~jthVBDףp= ?INT㥛 ? i word failedNNP?5^I NNPS㥛 NNX9vVBD`"@VBNV-JJK7?i-2 word beautyNNSoʡ?RP/$?VBPX9vϿRBnIN㥛 VBZSi+1 suffix tntNNMb?JJMb i word finishJJnVBI +?VBP!rh?NNJ +?i+2 word impliesJJ7A`ҿVBN7A`?i-1 tag+i word NNP entrekinNNV-NNPV-?i-1 tag+i word CC ciaNNʡENNPʡE? i-1 tag RBSPOS/$?VBG/$NNˡEVBDClVBN1Zd?NNS)\(?VBQ?JJp= ף@IN㥛 CDX9v?NNP#~j@VBP㥛 ?RBK7?RPGzi-1 suffix balJJZd;O?NNJ +@VBG~jtNNS?5^I i-1 word yenIN|?5^RP|?5^?VBGV-?JJ333333NNQRB= ףp=i-1 tag+i word VBP benefitedVBN)\(VBD)\(?i+1 word prosperousJJS/$?RBS/$i-1 tag+i word CD sovietsNNPS'1Z?NNS'1Zi+2 word franciscoNNPHzGVB+?VBG+JJn?NNtV i-1 suffix %VBS㥛NNPSZd;OVBG333333VBD㥛 JJRV-@CD ףp= RBRNbX9RPtVJJn@VBNERB-?VBZbX9?NNffffff?CCjt@VBPh|?5?IN ףp= ?NNS)\(i-1 tag+i word DT receivedJJ?VBPnVBN +οNNSVBDn?i-1 tag+i word VB abusedNNSGzVBNq= ףpJJ%C?i-1 tag+i word NNP colinasNNPSjtԿNNPjt? i suffix CLUNNP{Gzt?NN{Gzti-1 tag+i word WDT partnershipsVBZ= ףp=NNS= ףp=?i word salingerNNPSClJJRZd;O߿NNP?i word seminarVBV-NNV-?i-1 tag+i word CC methodologyVBRQNNRQ? i word wheelNNFx?JJFxi word initiativeNN"~j@JJ9vNNPn?VBT㥛 пVBPB`"i+2 word legalisticVBNMbXJJMbX?i+1 suffix midRBOn?NNPMb?RP~jtJJ%CNNFx?JJS1ZdVBN~jt?VBPQi-1 tag+i word CC ruralJJT㥛 ?NN rhNNP1Zd?i-1 word printerVBP"~j?JJ;OnNN333333i-2 word skittishNNPS1ZdNNP1Zd?i+2 word surprisesJJV-?NNV-i+1 word hoodsNNClJJRS?JJ'1Zi-1 word insistJJlҿINl?i+1 word renownedJJSuVտRBSuV? i suffix ogs NN$CRB= ףp=NNSZd;OM$@NNPS+VBPX9vINB`"VBZ/$?NNP|?5^VBD/$ٿi-2 word abusesVBZHzGNNSHzG?NNx&1?JJx&1i+2 word limitedNNPSClѿJJ{GzNNK?VBN?5^I ҿRB"~jܿNNSCl?NNPX9v?i-1 tag+i word NNS seemVBPMb@JJRxRBQVBNA`"VBʡEƿi-1 tag+i word , fiscalJJMbXIN^I +NNPK7NN(\@i-1 word agreementIN?VBZK7?NNS/$NNMbVBDNbX9?VBN|?5^WDT i word attackNN/$@RB/$i-1 tag+i word VBG olderJJRQ?JJQi-1 tag+i word NNS urgedVBPlVBNl?i word recentlyNNPSX9vRBx&1?NNRQi-1 tag+i word NNS filingsNNS?VBPi-1 tag+i word NN brothersNNPSQ?NNSQi-2 word provision NN rh?VBZ~jtJJzG?NNPvVBCl?VBGClVBDZd;OPDTClVBNZd;O? i suffix SamMD%CJJ333333NN9vNNPd;O@ i-1 word ledNNP"~jPRP$|?5^ɿNNSZd;?PRP|?5^?JJGzi+1 word languishesNNQ?NNPQi-1 tag+i word WRB sweetJJuV?NNh|?5VBPCli-1 tag+i word MD killVBV-?VBDV- i+2 word browVBZd;O?NNZd;Oi-2 word crime VBZV-DT rhNNP^I +NNMbVBNV-ݿWDT{Gz?JJ!rh̿IN~jtVBp= ף?VBG?NNSV-?i+1 word publishersNNZd;߿NNPZd;?i+1 suffix rugNNS VBN= ףp=@RBRK7AJJ333333@JJRK7A?NNPV-VBM i suffix edoNNQNNPQ?i-1 tag+i word IN truffautNNGz޿NNPGz?i tag+i-2 tag RB VBPVBP;On?DTw/RB㥛 @VBNOn@VBG?PRPFx?RBRp= ףIN?NNSuV?EX rNNZd;OVBDZd;_JJ$C?VBZ/$NNPMbX?JJRjt?VBؿPDT"~i word federalNN~jtCD(\JJp= ף?INv/ͿNNS%CNNP + @i-1 tag+i word VBD bidVBNzG@NNzGi-2 word adoptingJJR?5^I ?NN?5^I i-1 tag+i word VBG universalJJ"~?NN"~ҿ i word urineNNQ?JJQi-1 tag+i word NNP terminalNNPSK7ANN= ףp=?JJ= ףp=NNPK7A?i-1 tag+i word VBP costVBNQ?INQ#i-1 tag+i word -START- installationNN(\?NNP(\пi-1 word audioVBG(\NNFx?JJClǿi-1 suffix yetVBGGz?DTV-?VBDVBNS@JJ(\?NNSzGVB^I +?RBzGINVBP{Gz?WDTX9vJJR|?5^?VBZxNNL7A`RBR|?5^ i-1 word fromVBP%CJJE?NNd;O?EX333333JJR+?PRP$"~j?DTףp= NNSmCC9v?NNPSS$v/ݿPRP"~jRBL7A`ؿVBrh|?INGz?RBRFx?CD&1?VBG+@VBD(\VBN|?5^?VBZjtNNP1ZdӿPDT;OnUHMbX9i-1 suffix hly VBMbXNNPS`"VBG+?NN{GzܿVBD"~JJ?VBZ`"RBDlVBNV-?VBPtVNNSoʡ@ i word jettyNNQ?VBZQi-2 word freshnessRBR?JJRi-2 word reasonablyNNw/?JJw/i-1 tag+i word -START- alltelUHx&1NNP?5^I ?VBCli-1 tag+i word DT insideINK7?JJT㥛 NN)\(?i word maintainVBPV-@NNPw/VBMbX?NNGzVBDI +޿RBR i word eijiJJ-NNP-? i-1 word danNNP\(\?RBʡEVBD5^I i word servantsNNSV-?JJV-i+2 word donaldsonNN?5^I ?JJ?5^I i-1 tag+i word CC textileVB?5^I ڿNNZd;O?JJ$C˿IN7A`i-1 tag+i word VBD unlikelyRB#~jJJ#~j?i+2 word formedNNPS㥛ĿNNPSx&?NNi-1 word world JJZd;VBP$C?WDTZd;@DT +NNS1ZdNNPHzGNNPSw/?VBGS㥛?RB'1ZIN{Gz?VBZCl?NNx&?POSZd;i-1 tag+i word CC glasnostNN9vFW9v?i-1 tag+i word JJ totalNNRQ@JJRQi-1 word scottishJJvϿNNPv?i-1 word accessJJMb?NNMbпi-1 word possibilityWDTʡEINʡE?i+1 word passesIN+WDT+?JJV-?NNV- i word gasbNNP-?NN-i-1 word borderNN$C?JJ$C i suffix SITNNPS^I +NNZd;O?NNP~jti-1 tag+i word RB rightRBM?NN{GzJJ+?i word earliestNN333333JJS5^I ?RBSSi+2 word coversNNQ?JJX9v?NNPX9v i+2 word swapVBNףp= @JJףp= VBDuVVBPuV?i-1 tag+i word JJ civilianJJ(\?NN(\i+2 word famousPOSsh|??JJ;On?VBZ333333NNSm?NN&1VBDx&?i-1 word francVBP(\ڿNN(\?i-1 tag+i word JJ downgradeNN-?JJ-ֿi-1 tag+i word NNS teacherVBPףp= NNCl?RB}?5^IԿi-1 tag+i word NNP coliNNSbX9?NNbX9i-1 tag+i word DT uptempoJJ+?NN+i-1 tag+i word -START- irvingVBG rhNN1Zd˿NNPX9v?i-1 tag+i word NNS overlookVBP?VBDпi word historiansNNPSRQNNSRQ? i suffix exyJJ`"?NN`"i-1 tag+i word JJ bankingVBGp= ףNNCl?JJuVݿ i+1 suffix seFW/$?IN/$i+2 word balloonNNPSףp= ӿNNPףp= ?i word historicalVBPZd;JJ?5^I ?NN|?5^ٿi-1 tag+i word IN acquiredPDTK7VBN!rh?JJMbVBD-?i-1 tag+i word , hiddenJJtVVBNʡE?NNh|?5i-1 word routesVBPvVBDv?i-1 tag+i word NNS worksVBZNNS?i-1 word absolutelyDTMb?RB|?5^JJnNN'1Z?VBN1Zdi+1 word jacobsNNPSSNNPS?i tag+i-2 tag IN WDTRBClNN}?5^I?VBN!rh?JJL7A`?VBZOnۿNNSOn? i+1 word oilDTDl@NNPNbX9VB r?IN9vVBNMb@JJRffffff?VBGQJJuV@VBDˡENNSSNNPS`"RBRffffffVBZʡERB㥛 NNQCCʡEVBPK7A` i suffix uisNNPDl?RBmNNSp= ף?NNSJJoʡi-1 tag+i word PRP collaboratedVBN+VBD+? i suffix uty RB(\VBPX9vVBZʡENNP;OnVB/$NNPSV-NN$@VBD㥛 VBNnJJ rh@NNS|?5^i-1 tag+i word `` invasionNN(\NNP(\?"i-1 tag+i word -START- traditionalJJ}?5^I?NNP}?5^Ii word grudgingVBGMbXJJI +?NNʡEi-1 tag+i word , doubleVBA`"JJA`"?i-1 word chronicallyJJMb`?NNMb`i-1 word lindensVBtVVBPS㥛@NNx&1i+1 suffix ats NNPSNNHzG?CD?5^I ?VBPmWDTMbJJ^I +?VBZ"~VBMbX9ܿVBG?RBRV-VBNx&1IN~jt?JJR)\(?i-1 tag+i word CD barrelNNbX9?JJbX9i-1 tag+i word POS assemblyNNn@NNPni-1 tag+i word RB speakerNNV-?JJV-߿i-2 word madisonJJOn?NN^I +?VBPJ +RBKINB`"DTMb? i suffix 'SVBZ\(\@POS\(\i+2 word vulnerabilityVBZHzG?NNSHzGi-1 suffix arfVBNd;OVBDd;O?"i-1 tag+i word -START- appalachianJJp= ףNNPp= ף?i-1 tag+i word UH onePRPsh|?NNsh|??i word downgradedJJ"~jVBN"~j?!i-1 tag+i word -START- securitiesNNPSL7A`NNSGz@NNP%C̿i-1 tag+i word TO underwriteVBtV?JJ +NNmi+2 word inclinedVBPA`"?VBNA`"i+2 word cigaretteVBGA`"NNA`"?i-1 word widenRBtV@INtVi-1 tag+i word NN follyRB333333NN333333?i-1 tag+i word JJ proofNNSS㥛NNS㥛?i-1 tag+i word DT polypsNNS= ףp=?NN= ףp=i word chaoticVBNtV޿JJtV?i-1 suffix mtmVBZq= ףpNNSq= ףp?i-1 tag+i word DT adjustedVBN= ףp=?JJ= ףp=ҿi-1 tag+i word : doVBx&1пVBPx&1? i word stagesNNS?NNi+2 word fingersVBDKVBZCl?VBn?JJClNNK7A i-1 tag+i word -START- hiroshimaDTv߿WRBNNP-?i-1 tag+i word CD aircraftNNSxNNx?i+1 word legislatorsVBP1ZdJJ1Zd?i+1 word criticalRBNbX9?VBD~jtؿRBR?5^I ?VBN~jt?JJNbX9JJR?5^I i-1 word americansVBvVBPv?i word boredomJJ?5^I NN?5^I ?i-1 tag+i word MD actVBrh|?RBrh|i-1 word brokersVBP5^I JJˡENNSn?VB}?5^IܿVBDˡE?VBNV-?i-1 tag+i word DT blindNNMbXJJMbX?i-1 tag+i word `` craftedVBNp= ף?JJp= ף i word endsNNSGz?NNPQNNPSL7A`?NN$CCC^I +RBMbX9VBZS?i-1 word privilegeVBDx&1ȿVBNS㥛?JJrh| i word woeVBPClNNCl? i word linerNN rh?RB rh i-1 word satJJffffffIN-@VBʡERPjt?RBvNN~jtÿi-1 tag+i word CC transNNPS~jtNNP~jt?i+1 word residenceJJzG?NNzG i-1 word oneWDTʡE @NNPMb?NN(\u@VBD rFW`"ֿ'')\(?JJR#~j?VBZ rh @NNSFxVB/$``)\(@VBPA`"VBNS?RPZd;RBZd;OCD"~j?DTffffffPOS#~j?RBRʡEJJtV INV-i+1 word ninefoldRP}?5^I?RB}?5^Ii-1 tag+i word JJ exceptNNS#~jNNL7A`IN7A`?i+1 word tumblesJJK7?NNK7i+1 word ashoreVBPx&1VBNOn?INKVBD$C˿i tag+i-2 tag RBR CDNNʡE?RBʡEJJy&1NNPy&1?i-1 word largeNNS-?NNP&1VBGx&?JJZd;NN'1Z?JJRRBL7A`? i word hintedVBNX9vVBDX9v?i word economistsNNSCl?NNPCli-1 tag+i word DT registrationNNw/?JJw/ i suffix ens VBx&NNPS5^I @NN(\µ!VBDS㥛PRP333333VBZ7A`#@DT;OnNNSHz$@NNPClgVBN㥛 VBPnJJSINvi+1 word registerJJ/$?NN+NNPK7?i+1 suffix xasRB5^I IN5^I ?NNP7A`?JJ"~jNNx&VBDK7A`JJR/$?VBPK7A`?i-2 word centuryVBP +?RB rhٿVBZSÿNNS(\VBDl?NN{Gz? i word ethicsNNPSʡENNSGz?RBSi-1 tag+i word RB robustJJ~jt?VBq= ףpVBNMRBoʡſi-1 tag+i word NN dutyNNZd;O?JJZd;Oi-1 word fletcherNNP +?NNPS +i-1 tag+i word TO focusVBGz?NNGzi-1 suffix ldpNN/$VBDZd;@VB!rhԿVBN"~ji-1 tag+i word TO vacuumVBOn?JJOni tag+i-2 tag JJR VBGJJMbP?NNMbPi-1 word carlaNNPSh|?5NNPh|?5? i word canNNPS㥛MDI +@VBPSVBZSJJA`"i-2 word backboneNNSʡENNSNNPMb?i word predictsVBZM?NNSSVBDQi-1 tag+i word VB myselfRPSPRPS?i-1 tag+i word IN accountingVBG/$?NNK7?JJxi+1 word bankersNN`"NNP9vʿJJ7A`?i-1 tag+i word -START- pocketsNNPS#~jNNS#~j?i word knowingVBGQ?NNQſi-1 tag+i word JJ judgmentNNV-?JJV-i word revealsVBZ@NNSHzGNNP(\i+1 suffix lacVBZZd;NNnٿNNPGz?i-1 tag+i word IN songNN~jt?JJ~jti-1 tag+i word NN stressNNS~jtNN~jt? i+1 word himVBG rh?VBPjt?NNףp= RBRSVBN(\NNP ףp= RP㥛 VBDuV@CCp= ףNNS!rhRB rVBZ9v@VBB`"?JJ#~jINףp= ?DTp= ף?i-1 word midnightCCClNNMb?RBbX9i-1 tag+i word VB aDTGzNNx&1?NNP-?i+2 word followed NN+?FWoʡ''|?5^WDTh|?5ֿJJʡENNS"~jԿPOS|?5^?JJRʡE@DTh|?5? i word warnsVBZNbX9@NNP^I +NNSINSi-1 word annaudVBZK?NNPSKi+1 suffix rraNNV-VBN`"JJ`"@NNPV-?i-1 tag+i word VBG praiseRBrh|NNrh|?i+1 word nissanJJ~jtINMbVBZ~jt?DTffffff?NNS~jtVBN~jt?WDTSi-1 tag+i word NN probeNNSvNNv?i-1 tag+i word PRP$ quotasNNS%C?NN%Ci word scotlandNNPh|?5?NNh|?5 i word bureauJJMbXNNPʡE?NNSMbX9NNB`"?i-1 tag+i word RB functionVBCl?RBCl绿i word picturesquelyRBQ?JJQi+2 word medicationJJCl?NNCl i-1 word fanJJB`"?NNRQCD +ֿi word offensiveJJtV?VBN-NNL7A`i word societyJJ'1ZNNSHzGNNP= ףp=@NNPS'1ZNN/$@VBP333333 i-2 word tapVBZd;ONNSZd;O?i-1 tag+i word NNP drewRBx&1пVBDx&1?i-1 tag+i word VBG usesVBZ;OnNNS;On?i-1 word meltingNNS|?5^NN|?5^?i-2 word jewelersVBN5^I NNP5^I ?i-1 suffix ticVBDFx?VBClNNPS/$?JJK7NNS= ףp= @VBGʡEVBNp= ףVBZ$CINh|?5?NNP$C?CD~jtVBPNbX9RBA`"?NNCl@i-1 tag+i word IN spaghettiNNSZd;?NN+JJV-i-1 tag+i word MD vigorouslyVBV-RBV-?i-1 tag+i word VBN obtainedVBN r?JJ rؿi word deteriorateJJV-VBPV-?i-1 tag+i word PRP toeUH9vNN9v?i-1 tag+i word DT remorseNN(\?RB(\i-1 tag+i word NNS moreJJR-?RBR-i-1 word submittingNNS/$?NN/$i-1 word takamoriNN&1NNP&1?i-1 suffix idaVBG'1ZԿNNw/?NNPh|?5NNPSDli-1 tag+i word NNP coffeeNNA`"?RBA`"i-1 word faultyNNh|?5?NNPh|?5i-2 word school VBZGzNNS9v?NNP333333?VBDJJRQ?EXS㥛?VBN?RBS㥛JJ ףp= NNn?FWMb i-1 word neatNNS'1Z?JJ'1Zi-1 tag+i word IN erbamontNN!rhJJ!rhNNPx?i+1 suffix lthINA`"?CDoʡNNSK7RB&1VBN/$VBP333333?DT +޿NNGzJJRn?JJ9v?NNPA`"?VBZ+?MDffffffVBI +i-1 tag+i word DT deNNP+FW^I +?NNˡEܿ i suffix ipyJJCl?NNCli-1 tag+i word IN lowJJX9v?NNX9v i+2 word deepJJV-?NNS{GzVBN^I +NNK7VBZ^I +?i tag+i-2 tag JJS RBJJA`"?NNA`"i+1 word questionRB(\NNSn?NNP(\տNNPSNbX9VBGQ@JJy&1?NN+JJR$C?i-1 tag+i word : letVBZK7VBʡE޿VBD-@NNPMi+2 word gatheringsVBCl?NN'1ZJJV-i-1 tag+i word RB reservationsVBZ7A`NNS7A`?i-1 tag+i word NNS makeVBGףp= JJV-ݿNNPˡEVBlVBPFx @i+1 suffix ury RPˡEVBDCl?VBNClNNPT㥛 @INˡE?NNSK7VB-ֿNN\(\ FWHzGCDd;O JJZd;_@i-1 word gallantINCl?RBCli-1 tag+i word , circusNNSNbX9NNNbX9?i-1 suffix hudNN333333?IN333333i-1 word repeatedly NNS rhVBGQ?VBD`"VBNS㥛 @VBPn?VBZ-?VBx&1?NN/$JJ/$i+1 word stageNNS?IN~jtJJZd;OWDT~jt?JJRMbX9i+2 word marxistRPA`"RBA`"?i-1 tag+i word VBD tiedVBN+?JJ+i-1 tag+i word -START- harvardNNNbX9NNPNbX9?i-1 tag+i word NNS soINl?VBPClۿNNX9vRBZd;?i+2 word consequencesVBN +ֿVBD +? i-1 word soRPClJJ@VBZClNNNbX9RBS?5^I VBPPn INA`"?DT1ZdJJS?5^I ?VBNV-JJR^I +?VB"~j?RBv@FWMbX9?VBDp= ףWDTClEX+?WP-?VBGDlNNS/$i+1 suffix chiVBD;OnJJV-INˡE?VBZK7DTˡEFW|?5^? i+1 word wiseNN'1Z?NNP'1Zܿi+2 word nicastroVBN"~jJJQVBD#~j? i word mirrorVB333333?RB333333ÿi+1 suffix ionVBZCl绿CCx&?NNPSQ@CD rh@VBDsh|?WDTˡEWP9vPRP)\(RBS+VBN)\(?NNPuVIN;On?RP+POS㥛 0@RB= ףpWRBy&1?VBG?5^I ?DT"~@JJS-@VB+ηMD-ۿJJRCl@VBPZd;OJJHzG@NN?5^I NNSK7RBRS㥛PRP$ffffff?FWSi+2 word studyFWZd;?JJ{GzNN|?5^?NNPv/?i-1 tag+i word VBD momentumNNK7?RBK7i+2 word refugeesDT7A`@NNSSVBNPnJJ;Oni-1 tag+i word VBG weeklyVBP1ZdRBFx?JJv׿i+1 word freaksNN'1Z?JJ'1Z i word tiredVBDClJJffffff@NNT㥛 CD rhi+1 word propelledNNPS= ףp=?NNS;OnNNPJ +i word engagingJJZd;?NN/$VBG{Gzi-1 tag+i word -START- sriRBףp= NNPףp= ?i-1 tag+i word VBP thinkCD5^I VB&1?VBPMbȿVBN333333i-1 tag+i word CC totalJJtV?RBvNN rhi+1 word consolidationsNNSMbXJJMbX?i-1 tag+i word JJ hopeVBPCl?NNSSNNS?VBDCli-2 word warnerNNuV?VBNQ?WDT'1ZJJ&1ڿIN'1Z?NNP!rhi+1 word collateralJJ{GzRBMNNK7A`?i-1 tag+i word NN grindingVBGffffff?JJffffff޿i+2 word crosslandRBzG?NNPzGڿ i suffix cupNNffffff?JJffffff޿i-2 word adaptNNS"~jNN|?5^VBPOn? i+2 word eliVBP"~j?NN"~jԿi-1 word lastestVBPd;ONNd;O? i-1 word yaVBG;On¿NN333333VB$C?VBP㥛 i+1 word goldmanJJ`"IN`"? i-1 word fccNNSx&1?VBZx&1 i word herNN/$RBR(\NNSQNNPjtRBMbX VBSDTJJv JJR/$WRBB`"PRP$HzG*@RP-CC333333PRPp= c"@i-1 tag+i word -START- ronJJMbNNPMb?i-1 tag+i word JJ bondsNNP~jt?NNS~jti-1 tag+i word -START- broilerNNP/$JJRK7NNCl@i+1 word textsVBNS˿JJS?i word suicideNN r?RB ri+2 word receivershipRB ףp= NNP ףp= ?i-1 word jonesNNOnVBDlVBZ㥛 NNS7A`?NNP7A`?VB(\i-1 tag+i word IN maybeRBK7A`?NNK7A` i suffix IVEJJ{Gz@NNPMPRP$1ZdCDS?VBNףp= i-1 tag+i word CC oatsVBZ?5^I NNS!rhNNFx?i-1 word holidayNNP= ףp=VBZI +NNPSQ@NNS/$i-1 word permanentVBGvNNv?i-2 word deregulatedJJv?NNvi tag+i-2 tag VBG RBRPB`"CC rh?WDTMbXPRP#~j?JJRI +VB`"NNPSE?JJ!rhVBGCl@DT#~j@NNPDT~jtJJSSRBRI +?INL7A`?NNPffffff?VBDoʡVBNRQ @RB;OnNNSx&VBZ(\ſi+1 suffix lpsNNPd;O?VB9vVBGZd;NNd;O@WDTQ?JJd;OINQi-1 tag+i word DT ideasNNS/$?JJ/$i word rollbackRBL7A`NNL7A`?i word spanishJJV- @NNCl׿NNPS㥛i word footholdJJ(\NNSvϿNNS㥛?i-1 tag+i word CC britishJJT㥛 NNPT㥛 ?i-1 tag+i word IN rulingVBGףp= ?NNףp= ÿi word pullingVBGV-?NNV-i+1 word fastballPRP$Cl?NNCli-2 word arrangesJJKNNK?i-1 suffix mboNNSףp= ?RBףp= i-1 word arabVBGMbNNMb?i word meanwhileIN?5^I NNSjtNNP-NNPSZd;NN(\ CCCDMbRB ףp= @i word seethingJJNbX9?NNNbX9i word indianaJJZd;ONNPZd;O?i+1 word compiledIN rh?RB rhi tag+i-2 tag NNS VBZ RPK?NN&1?JJRh|?5?VBN|?5^WDTh|?5VBQVBP%CJJ+ǿINQ?VBD`"?i-1 tag+i word VB fruitNNMb?RBMbпi-1 tag+i word VB carmenNNSףp= ӿNNPףp= ?i word kelly\/varnellNNP^I +?NN^I +i-1 tag+i word VBP highRB#~j?JJ rh?VBNQi-1 word elegantNNS+NN+?i-1 word predictsDTZd;O?INZd;Oտi+2 word storageVBGʡERBˡE?NN"~ҿi-2 word personallyRBR㥛 JJ+?JJR㥛 ?NNP+i+1 word cumulativeDT/$NNP/$?i+1 word grazingNN#~j?RB#~ji word cocktailsVBZZd;׿NNSZd;?i-1 tag+i word -START- axaNN|?5^RB!rhNNPMbX?i-1 tag+i word DT dialJJSNNS@i-1 tag+i word NNPS looseVBPL7A`RBL7A`?i-1 tag+i word VBN deferredVBNnJJn?i-1 tag+i word RB disappointingVBGV-JJV-?i+1 suffix 270NNRQ?JJRQi-1 tag+i word NN insuranceNNPRQNNRQ?i+2 word addressingJJ~jtJJRˡE?NN~jt?RBRˡEi word dampingVBGx&?NNx&i+1 word dilemmaJJRS?NNS i+2 word earnNN\(\?JJ\(\i-1 tag+i word ) vs.JJ9vFW9v?i word camerasVBNh|?5ֿNNMbNNSV-?i-1 tag+i word ) thatDT/$WDTS㥛?IN{Gzi word blockbusterJJRmͿJJL7A`пNNPףp= ?NNV-?NNSZd;Oi-1 tag+i word NN attainedVBN~jt?VBD~jtؿ i word seriesVBGp= ףNNS%'@JJV-VBZ$CNNS)\(NNP%C @NNPSjti-2 word experimentalWDTOnINOn?i-1 tag+i word NNP lVB"~JJRQNNS㥛?i-2 word account VBS㥻VBNuVRBRl?RB= ףp=?JJRlNNSSNNPS㥻?JJ$CNNRQ?VBDS㥛?i+2 word rollersDT~jt?RB~jtؿi+2 word marathonRBn?JJni-1 tag+i word VBG coldJJ~jt?RB~jti-1 tag+i word JJ morselsNN+NNS+?i-1 tag+i word DT yippiesNNPSDl?NNPDli tag+i-2 tag WP RPJJm?VBDmi+2 word comparisonVBPuV?VBN"~NNuVVBD"~?i+2 word hospitalsVBxNNSx?i-1 tag+i word VBZ tiesNNSV-?VBNV-i-1 tag+i word '' barsVBZNbX9NNSNbX9? i+1 word rossJJ?5^I NNP?5^I ?i+2 word statisticalVBNT㥛 пVBDT㥛 ?i-1 tag+i word POS raisedVBN?5^I ?JJ?5^I i-1 suffix ouxJJQ?NNPQi+1 suffix celJJA`"?NNA`" i suffix viaNNS?5^I NNP?5^I ?i word insufficientNN~jtVBNy&1JJ9v?i-1 tag+i word NN refinedVBNv?VBDvi word respondVBX9v@VBNA`"NN\(\ i word hugeJJ}?5^I?NNP}?5^Ii-2 word governmentVBPS㥛?WDT rJJOnVBZB`"DT/$NN/$VBD}?5^I@VBNMbNNPʡECDV-?NNSK7ٿVBd;O?INRQ@VBG^I +׿RBzG?CC?5^I ҿi word inventivenessVBnNNS~jtNNQ@RBFx i suffix xitNNQ@$}?5^IJJjtCDʡENNPS i+2 word b.VBN7A`VBD7A`?i word gabrielWRB7A`NNP7A`?i word norwegiansNNPSS?NNPS i word honorVB7A`?NNStVοJJQNNx&1пi-1 tag+i word NN builtNNSoʡVBN&1?NNy&1VBD"~j?i+2 word cancellationsVBPlVBN+VBDK7A`? i+2 word hisRBRT㥛 ?VBD(\?VBPMbX9VBZ/$?DTFWjt?NNPp= ףRBS+INA`"PRP$GzPOSʡEPRPCl@VB|?5^?NNPS{GzJJS㥛 ?JJV-NN?RBGzNNSMbX?CDq= ףp?VBGsh|??VBNffffff?WDT|?5^RP)\( @i-1 suffix p53VBZV-߿NNSJ +?NNh|?5i-1 suffix sadNNS?NNPSi-1 tag+i word VB payableJJ?VBZi-1 tag+i word CC lavishVBL7A`JJL7A`?i word preflightVBPQJJV-?NNʡEi+1 word actualVBm?JJmi-1 tag+i word DT frameNNl?JJli-1 tag+i word RB yellowRBp= ףؿJJp= ף?i+2 word incentivesRBRCl?JJRCl i word hisPRP$Pn@NNPS\(\NNPSi-1 tag+i word , classroomVBP'1ZNNoʡ?JJxi+1 word showroomsNNPjt޿IN~jtJJZd;?i word expensesNNPSNNS?i-1 tag+i word VBZ brilliantNNSvJJS㥛?NNGzi word chantedVBNw/VBDw/?i-1 tag+i word NNS convictedVBD?5^I VBN?5^I ?i word horticulturalJJNbX9?NNNbX9пi-1 tag+i word VBG laborNN/$?NNP/$i tag+i-2 tag NNP VBVBjt?JJS?PDTK7?POSffffff?''ffffffNNPSV-?RBK7A`INx&1?CD$C?NNPI +VBPZd;VBZClNNS rؿVBG7A`?NNI +JJRQi-2 word causeNNSffffff?RPffffffNNq= ףpݿNNPq= ףp? i-2 word hboVBNK?VBDKi-1 word convertNNS{GzJJT㥛 NNM?i+1 word classesVBG-NN-?i+1 word mileageNN\(\JJ㥛 ڿDT|?5^? i word groansVBZRQ?RBRRQi-1 tag+i word VBD sweptNNMbX9VBDMbX9? i-1 word wakoNNPSB`"?NNPB`"ɿi-1 word minimumVB-VBGw/JJS㥛?NN1Zd?VBN7A`i word envelopeNNB`"?CDB`"i-1 tag+i word IN sportsNNPSףp= ?NNSv׿NNPRQi-1 tag+i word NNP walkingVBG/$?NNP/$i+1 word krasnoyarskINrh|?WDTrh|Ͽi+1 word rainsJJ'1Z?NNMbX9NNP(\пi+1 suffix rawRBZd;JJGz?NNGzINZd;?i-1 tag+i word NN earningsNNSV-?WDTV-i-1 tag+i word NNP labellaNNrh|NNPrh|?i-1 tag+i word PRP$ attemptNN)\(?JJ)\(i-1 tag+i word RB resignedVBN+@VBD+i-1 tag+i word NN absorbedNN1ZdVBN1Zd?i+1 word hurdleJJ rh?CD rhݿi-1 tag+i word JJ wideningVBGV-NNV-?i word protectionismNN"~j?VBN$CRB rh i+1 word atVBD+?VBNK@NNV- @RB rh?CD9vVBGˡE?WDTSVBZ^I +?NNPQINK7 JJSClJJRʡE?PRP$7A`JJ +NNPSB`"VBPzG?DTSRPGzNNSK@VB(\?CC/$?RBR!rhi+1 suffix anoNNPx&PRP)\(NNClFWQJJ(\@i-1 tag+i word NNP inventionsNNS+?VBD+i-1 tag+i word CC wheatNN"~?JJ"~i word mountainVBP+NN33333@JJ r i-1 tag+i word NN tailoredVBNrh|?VBDrh|i-2 word hodgepodgeJJQ?NNQ i word muniJJS㥛@NNNNPX9vNNS+?WRBw/i-1 word finallyVBDS㥛?VBV-?VBPx&VBNl?JJV- i suffix laFWMb?VBZZd;NNP`"@JJVBDFxi+2 word shapesNNSv/NNv/?i-1 tag+i word JJ rhetoricNN;On?JJ;Oni-1 word hammacks''/$POS/$?i-1 tag+i word NN adoptedVBNX9v?VBDX9vi+1 word transformationVBNHzG?JJHzGi-1 tag+i word PRP cutVBClVBPrh|VBD= ףp=@i-1 tag+i word `` sellVBI +?NNMb?JJJ +ѿi-1 tag+i word VBN paidVBNMb?JJMbi+1 suffix xedMDʡEVBjt?VBDʡE?WDTQJJjtINQ?i+1 suffix oulNNS㥛ؿVBD rhRBSʡEVBN#~jJJ)\(@IN$C?DT$Ci-1 tag+i word CD intendedJJZd;VBDZd;OVBNd;O?i-2 word concernedPDTZd;O?JJˡEDTZd;ONNP(\ȿRB(\NNCl? i word alienRB(\ȿNNS(\VBGMbXJJ333333@NNV-VBN i word boxVBDClNN?FWV- i+2 word shyJJh|?5VBDQ?VBNʡEi word preferredVBD= ףp=VBNjt?JJQ@NNP ףp= ?VBGoʡ@NNL7A`i-1 tag+i word NNS hurtVBDzGVBZZd;OݿVBPFx?VBNI +JJˡE@i word fitzwaterNN1ZdӿNNP1Zd?i word payoutsVBZףp= NNSףp= ?i word laughingVBGʡE?NNʡEi-1 word temporarilyVBX9v?VBNjt?JJX9vVBDjti-1 tag+i word DT decorativeNN&1ڿJJ&1?i-1 tag+i word JJ contendsVBZ/$?NNS/$i-1 word nationsVBGGzNNGz?i-1 tag+i word NNP duVBZZd;NNnٿNNPGz?i-1 tag+i word NNP deFWV-?VBP-PRP9vJJ5^I INM @VBZNNP?5^I @NNCl i suffix uumVBOn?NNS㥛 NNףp= ?JJ?5^I i-1 tag+i word VBG lateRBK7?JJK7i-1 tag+i word VBZ overuseNN1Zd?IN1Zdi-1 tag+i word JJ deliciousJJV-NNPV-?i-1 tag+i word IN strategicJJnNNPn?i+1 word includedIN㥛 VBZbX9WDTK@RB+NNbX9?i-1 tag+i word VBP bulkDTx&JJ/$?NN(\i word potatoesNNSE?NNjtJJK׿i+1 word safetyNNPQ?VBPQNNA`"˿JJ#~jVBDQ?i word overthrownNNS㥛INV-տVBNX9v?i-2 word railwayJJMb?RB/$?NNGz i suffix fadNNS㥛 NN㥛 ? i suffix chiNNPSX9vNNtVVBPlJJGzǿNNSB`"?NNPʡE?!i-1 tag+i word -START- technologyNNy&1?NNPy&1i-1 tag+i word DT appropriatelyRB~jtx?JJ~jtxi word momentumNN(\ @FWsh|?VBP rhRBK7NNSQJJ?5^I i-1 tag+i word VBN overNN%CINx&?RPCl?RBMbi-1 tag+i word MD tryVBMbX?RBMbXi word levelingJJR/$NNףp= ?VBG/$i-1 tag+i word DT identityNNʡE?JJʡEi-1 word spotsVBNbX9ؿVBPNbX9?i+1 word containersRBZd;NNV-NNP-@i+2 word affirmativeJJM?NNMi-1 tag+i word NN meaningVBG{GzNN{Gz? i-2 word leadJJR rh?VBMbRBDlNNK7VBD-?RBR#~jĿVBNX9v?JJHzG @i-2 word travelersNN"~jNNP"~j?i word traditionVBQNNQ?i+2 word seriousNNPS/$ÿVBDK7?VBPK7RB+ÿVBZ+?NNP/$?i-1 word sentencesVBPS?JJ(\NNNbX9i word appalachianJJp= ףNNPp= ף?i-1 word recessionNNS(\?RBʡENNsh|?VBNx&RBR}?5^IJJZd;O?INDl?VBZ}?5^I?i-1 tag+i word JJ asJJIN(\@NNy&1RBI +ƿVBNV-i-2 word diegoWDTQEXKNNh|?5?i-1 tag+i word VBD taiwanNNPQ?NNQi word embeddedVBNףp= ?NNPףp= i+1 word bankRPV-VBD-?DTm?NNPSMbX@VBNGzNNPw/?NN rhJJMb?INV-?JJSQUHmVBGy&1?NNSZd;WDTS i suffix sedJJSX9vIN5^I VB|?5^NN%VBNF86@VBPm JJJ +$@VBZClNNPSMbRBbX9CDK7VBDm25@PDTX9vNNSʡENNP333330i-1 tag+i word VBD simpleJJ/$?RB/$i-1 tag+i word IN quarterlyJJjt?RBjti-1 tag+i word NNS brittleNNS)\(JJףp= ?NNGzi+1 word improvingJJQѿRBQ?i-1 tag+i word POS impliedJJ`"VBvVBN ףp= ?i+2 word violatesNNX9v?JJX9vi-1 tag+i word VBG machoNNSClٿVBN-NNmJJx&1@i-1 word conservativesVBDˡEPDTT㥛 ؿVBP'1Z?RBh|?5οVB rh?NNQi word consistentJJjt@NNB`"VBNHzGi+1 word trying JJR~jtVBZQ?NNPSy&1POSQJJKVBNI +?RBR~jt?VBPy&1NNP"~j@VBy&1@NNʡEVBDOnӿi+1 suffix inyNNV-?JJIN1Zdi-1 word focusRB/$?VBD9v?RBRbX9?JJRbX9VBNףp= JJ5^I ˿ i+2 word csfbVBNw/VBDw/?i+1 word contributionJJK7ɿNNʡEVBNT㥛 ?i+2 word kindercareNNP ףp= ?NNS ףp= i-1 tag+i word , wis.JJI +NNPI +?i-2 word gorkyJJS?VBDuVNNSVBNuV?i-1 tag+i word IN israeliJJv/NNPv/?i+2 word promotingNNS/$VBG&1@RB/$?NN&1i-1 tag+i word JJ sanctuaryNNNbX9?JJNbX9i+2 word dodgerNNZd;O?JJRZd;Oݿi-1 tag+i word NNP motorcycleNNPSnNNPn?i tag+i-2 tag VB ``PDTB`"RPMbX9JJ;OnFWV-POSV-?VB+?CD㥛 ?PRP|?5^ѿRBx&ѿIN-?VBZQѿNNS+?NNSVBD~jtx?VBN~jtxDTK7A`ݿNNPV-?i-1 tag+i word IN autosNNSV-?JJZd;ONN}?5^Ii+2 word chivas i-2 word pontINx&?NNSHzGѿJJ(\@NN+VBDGz?VBNGzRBx& i+2 word olayNNP@NNSK7A`NN!rhi-1 tag+i word CD pairsNNSK7?NNK7i+1 word decadeNNZd;O?JJZd;Oտi-1 tag+i word IN lacklusterNNQۿJJףp= ?JJR(\ i suffix TEENNS%CԿNNQ?NNPS㥛i-1 tag+i word -START- unescoJJ+FW+NNPʡE? i word cloudsNNS+?NN+i+1 word tissuei-1 tag+i word NNP fingersNNSClNNPCl?i+1 word proteinsJJZd;O@NNZd;Oi+2 word communistJJʡENNPʡE? i-2 word givePDTK7?JJRZd;?RBRQ?WDTMbX9IN#~jDTS?NNP'1Z@NNPSsh|?JJʡEJJSףp= @VBZp= ףNNSZd;ORPMb?NNx?RBRQi-1 tag+i word MD thinkVB+?NNS+i+1 word accessoriesJJ-NN-@i+2 word promisedVBZmVBPm?RPRB= ףp=@INGzi+1 word menusVBG}?5^I?NN}?5^Ii-1 tag+i word `` consolidationNNX9v?NNPX9vi-1 tag+i word CC fallVB{GzNNPS rNNm@NNPh|?5i word shatteredVBNx&1JJ!rh?VBDDli-1 tag+i word WDT guaranteesVBZV-?NNV-i-2 word rangesRBR+JJ+?i+2 word hispanicsNNPSZd;@NNST㥛 NNPZd;i-2 word berlinRB`"?VB`"i-2 word somewhatNNPw/JJK7?NN= ףp= i suffix numNNSGzNN5^I  @JJRQi-1 suffix ojiNNPS㥛?NNSS㥛i-2 word panicVBGV-JJV-?i+1 word condosJJX9v?NNX9v߿i-2 word delorsJJMbNNPMb?i-1 word marginVBPx&1VBGRQVBNp= ף?NNV-?VBDp= ףi-1 tag+i word NN twiceRBV-?INV-!i-1 tag+i word -START- developersNNS +NNP +? i word harrisNNS#~jNNClѿNNPw/?i-1 word concertosRBw/@IN|?5^NNP+i+2 word sweatRP?INٿNNPCl?NNPSCli-1 tag+i word RB putVBN9vVBPVBZJ +VBV-߿NN\(\?VBDQ@ i suffix cryNNS`"NNRQ@JJjtINSVBZ|?5^i-1 tag+i word , drewVBPlVBDl?i-1 tag+i word RB intendedVBNbX9޿JJbX9?i-1 tag+i word NNP innerVBZʡEJJK?NNp= ףi+1 word spanishDT1ZdӿVBG +?VBN+JJ{Gz?IN1Zd?i-1 tag+i word JJ machineryNNSJ +NNQ?JJ~jti+1 suffix eyeJJRjt?JJJ +RBRl i suffix any PRP$QNNPSQNNʡE@JJnJ@VBZh|?5DTMb?NNSd;OVBGԿRBZd;PDTl?VBNPnCD`"NNPQi+1 word germetenRBV-NNPV-?i-1 tag+i word NNP airplanesNNPSrh|?NNSrh|߿i-1 tag+i word TO auditVBCl?NNCli+2 word exchangesJJFx?NNPFxi+2 word millerNNPS"~NNS"~?JJ333333NNP333333?i+1 word filingNN= ףp=JJ= ףp=?i+1 suffix ids VBGJ +VBN rJJMb @VBZ^I +DT`"?NNZd;O?VBDV-׿CC/$INZd;ONNPzGҿi+2 word filingsRPh|?5?INh|?5i+1 word kindsJJV-?VBV-DTy&1?RBy&1i+2 word willsINCl?RPCli-1 tag+i word POS handoutNNK7?NNPK7 i suffix run NNSQNNQVBDVBN~jt@JJRZd;VBPK@JJClVBZw/VBZd;O@VBG rhٿi-1 tag+i word NNP schoolNNGzNNPGz?i-1 tag+i word JJ violatesVBZ\(\?NNS\(\i-1 tag+i word -START- workersNNSjt?NNPjti-1 word bitterNNK7AJJK7A?i word preludeNNS;OnNN;On?i-1 word cosmicINq= ףpͿNN9v?RBSi-1 word formallyVBDK7VBL7A`?VBNK7?JJL7A`i+1 word borrowingsVBK?JJKǿi-1 tag+i word NN feelingVBGjtNNjt?i-1 tag+i word -START- billNNJ +NNP㥛 ?NNS= ףp=i+1 word resultJJV-?NNV- i word growlsVBZ/$?VBvVBDCl i+2 word riesNN/$ٿNNP/$?i-1 tag+i word NN techniqueVBD/$VBZx&1WDTV-NNT㥛 ?i+1 suffix lewNNHzG?JJHzGi+2 word foldedNNS333333?JJ333333i+1 word afterVBNsh|??JJZd;O DT)\(VBQֿVBDV-INp= ףVBZd;ONNPh|?5NNPSZd;WDTK7NNSMbX@RBR|?5^?VBPMbX9?VBG;OnRB}?5^I@JJR!rhNNI +@RPV-?i-1 tag+i word NN dumpedVBNoʡ?NNʡEVBDK7?i-1 tag+i word PRP launchedVBZK7A`VBDK7A`? i word awakeRBp= ף?JJCl?VBp= ףVBPCl绿 i word angryRBV-NNSJ +JJZd@NNjtVBDS㥛VBPv/i-1 tag+i word NNP neurosurgeonNNS/$NN/$?i+1 word prenticeNNE?JJ= ףp=CC#~ji-1 tag+i word IN yokohamaNN9vNNP9v?i-2 word guildersRB(\?IN(\i-1 tag+i word VB fishingVBG-NNJ +?JJQi-1 tag+i word VBN driftingVBG"~j?JJ"~jԿ i word saulPRP$-NNP-?i+1 suffix dlyRBS @NNS"~j @VBGK7A`?VBDx?RBR+?WDTOn?IN/$MDClVBPI +?PRP$1Zd?JJR+NNPS㥛VB1ZdJJ#~j NNEпPOS^I +VBN|?5^?VBZ^I +@DT{GzNNPS-ۿi+1 word returnedNNPrh|?NNPSK7ѿNNSK7?NNrh|i-2 word benefitedVBNS㥛?JJʡEݿVBD(\i+1 word reportedlyDTv/WDTv/?JJS㥛NNPS㥛?i+2 word renderingNNSClNNCl? i word tabsRBClNNSCl?i tag+i-2 tag VBZ MDVBNQJJQ?i-1 word hoveredRPʡERB9vIN+@i-1 tag+i word IN requiredJJVBD?i-1 tag+i word NNP endVBPX9v?NNPX9vi word floatingVBG rh@JJT㥛 NN#~jNNPMbi word brokersNNPK7ANNPSK7A? i+2 word jr.NNMb@JJSINQNNPI +?NNPSx&1̿RBV-i+1 suffix gly RB @VBZ+?DTV-JJp= ףVBD+JJRS㥛VBPzG?EXS㥛?VBzGNN/$?CCZd;RBSx?JJSx i word yearsNNPSʡENNS$C@JJ+NNPvi word concreteVBPʡEJJjt?VBZ/$NNSX9vVBʡEݿRBZd;ϿNN|?5^@i-1 tag+i word RB displaysVBZSNNSS?i-1 tag+i word VBP closingVBG{GzNN{Gz?i+1 word presumedDTZd;OINZd;O?i-1 tag+i word NN increasingVBG/$?NN/$i+2 word jordanNNPd;O?INd;Oi-1 word bureaucraticJJ;OnNN;On? i suffix LeWRBQNNPQ?i-1 tag+i word CC disappointingNNS㥛VBGx&1JJK7A`@ i-1 word taNNPSDl?NNPDli-1 tag+i word JJ supplyNNSʡENNʡE?i-1 tag+i word POS principalJJʡE@NNʡE i word worsenVBV-?VBPV-JJR㥛 i+1 word summerINQ?NNjt?JJd;ORBԿNNPlҿi-2 word observersINS?WDTSVBNx&1ԿJJx&1?i word approachNNS+RBNbX9NNNbX9@VBNZd;VBP"~j?JJ-IN+i-1 tag+i word RB keenVBv/@VBNI +JJB`"i word wranglingNN?VBGi-1 tag+i word DT moveVBGzNNQ @JJS'1ZRBV-JJ&1i+2 word machinistsVBGQJJn?NN?5^I i-1 tag+i word NNP orchestrationNNZd;NNPZd;?i tag+i-2 tag : VBDNN|?5^?JJR|?5^JJV-NNPX9v?VB(\@VBGMҿi-1 tag+i word DT topicNNZd;O?JJZd;O i suffix 996CD/$?NN/$ i word lumberVBy&1VBP/$?NN#~jNNP㥛 i word fakeNNS\(\ϿJJPn @NNnVBˡEĿVBPn i word absentJJ~jt?NN~jti+1 word reasonsCD㥛 ?JJ㥛 i word persianJJ%CNNP%C?i-1 tag+i word -START- buellRB|?5^NNP|?5^?i-1 tag+i word NNP aimedVBN(\NNv/VBDx&?i-1 tag+i word RB revampedVBZ~jtVBN-@JJˡEVBD-i-1 tag+i word NN latelyRBX9v?NNX9vi-1 tag+i word DT accomplishVBCl?JJCl i suffix FHANNPSMbؿJJ333333NN+NNPʡE@ i word chokedVBNGzVBDGz? i-2 word pageVBDS㥛VBP7A`ҿVBNV-?RBB`"?FWB`"i+2 word brotherVBZv/?NNSv/i-1 word satisfyNNV-?NNP+?JJOn i word paintVBZGzVBPףp= ?NNx&1i-1 tag+i word RB deniesVBZGz?NNSGz#i-1 tag+i word `` environmentalistsNNSCl?NNCli-1 tag+i word VB modifiedJJR1ZdVBN1Zd?i-1 tag+i word , sportsNNPS'1ZԿNNP'1Z?i+1 word tormentsWDTX9vINX9v?i word abettingVBG(\?NN(\i+1 word gortariNNPʡE?FW;OnJJKINxƿi word overrodeVBZClVBDy&1?IN rh i word killVBV-?VBP(\?VBDsh|?i+1 word businesslandNNP"~j̿JJ"~j?i-1 suffix daqNN ףp= ?RBS㥛JJffffff?RPGz i-2 word hand VBGuVJJtVVBPx?VBZ/$ۿNNSCl?VBxNNMb @VBDԿRBSIN?i-1 tag+i word JJ scottishJJ%CNNP%C? i word ragingVBG?5^I ?NN?5^I i-1 tag+i word -START- roughlyRBK7?NNPK7i-1 word formerJJ`"NN\(\?JJRJ +CDHzG?RBSNNSA`"?NNPK7A`NNPS1Zd?i-1 suffix ift NN"~ҿVBD1Zd?JJRPnJJ-ƿVBGV-?NNS/$?VBZ/$VB333333?RPMbX9RBT㥛 ?RBRPn?VBN1Zd˿IN%Ci-1 word syrianJJ-NNSMbпNNMbX?i-2 word wellingtonINV-?NNPV-?WDTV-JJV-i-1 tag+i word RB resolvedVBDjt?VBNjti-1 tag+i word CC loanedVBN"~jVBD"~j?i-1 tag+i word DT tailspinNN/$?JJ/$ i word hold JJROnUH#~jJJ\(\VBZd@RPMbX9NN?VBNmVBPjt@NNPS㥛RB"~jFW+VBD-i word flappingVBG-?JJ-i-1 tag+i word JJ oregonNNPS rhNNʡENNP+η?i+1 word credibleJJˡE@RBˡEi+1 suffix ogy NNRQVBDnVBP1ZdJJ/$?VB^I +RBʡEVBN-IN?NNSnNNPMbX9@VBGV-?i-1 tag+i word VB suchPDTI +ֿJJI +?i+1 word persistentDTV-?INV-i+1 suffix ieuNNPffffff?JJffffffi-1 tag+i word ) shotNN?JJ rVBNni-1 tag+i word NNP newsNNPOn@VBZ-NNPS7A`i+2 word announcementVBDuVͿVBnVBN rh?JJi+1 word wishesJJ|?5^NN|?5^?i+2 word oppositionNNSS㥻JJoʡ?NNP`"RPoʡݿNNPSK7?i+1 suffix lveVBZNNS?VBClWDT/$?RBCl?IN/$i-1 tag+i word CC gambleJJ+NNP+? i word gottenRB+VBN'1Z?JJMbVB-i-1 tag+i word , ravesVBZw/?NNSw/Կi-1 tag+i word JJ messiaenNNS+NNP+?i-1 tag+i word IN hurtVB +?VBP +i+2 word questionVBP~jtNNS ףp= NN1ZdVBZA`"?VB~jt?i-1 tag+i word RB thinNNSףp= JJM@RBv/INx&1i word implicationsNNSMb?NNMb i-2 word bedVBN1ZdNN1Zd?i+1 word unifiedRBRX9v?JJRX9vi+1 word bordetellaJJ r?NN ri-1 tag+i word DT mississippiNN#~jNNP#~j?i-1 word benchmarkNNI +?VBDxCDʡE?JJCl?INlNNPtVi-1 tag+i word UH tahitianJJw/ĿNNPw/?i-2 word evolutionaryVBPʡEVBN}?5^I̿RBSVBDV-?i-1 tag+i word IN plasticNNS㥛?JJS㥛i-1 tag+i word `` bigVBNQJJtV?NNPDl?i-1 tag+i word VBD arcNNPSnNNPn?i-1 tag+i word , manufacturingVBGxNNx?"i-1 tag+i word -START- commerzbankNN&1NNP&1?i+2 word quotationsVB +NNK7A?JJS?5^I ڿRBh|?5?INZd;O?DTZd;Oi word retiringVBGPn?JJRQNN7A`¿i word undercuttingVBGʡE?JJʡEi word convertibleVBPd;OJJtV@NNPtV޿VBCl߿NNZd;?VBDn i word busyNN/$RBR~jtӿVBNB`"VBPI +RBPnNNS9vNNPI +JJCl @i-1 tag+i word CC plungedVBNV-VBDV-?i-1 tag+i word DT mannerJJRxNNx?i-1 tag+i word JJ pushoverNNffffff?RBffffffi-1 tag+i word VBD heldNN"~VBN|?5^?JJQٿi-1 tag+i word DT acluNN{GztNNP{Gzt? i word crudeNNSKJJDl?NN?VBPtVi-1 tag+i word JJ peoplesNNPSq= ףp?NNSq= ףpտi-1 tag+i word CC welcomedVBK7A`VBDK7A`?i-2 word ticketedNN\(\JJ\(\?i+2 word manicVBGnVBNKǿNNn?VBDK?i-1 tag+i word VBD noVBNsh|?RBQUHuV?DTZd;O@NNSV-i+2 word toshibaNN!rh?JJ!rhi-1 tag+i word JJ fuelNNʡE?JJʡEi-1 word projectionVBNrh|?NNK7A`VBDi+1 word predictingVBNZd;?VBDZd;׿i word augustinesNNPS}?5^I?NNP}?5^Ii-1 tag+i word NNP diedVBNףp= VBDףp= ?i+1 word malpracticeVBN/$JJn?VBDI +i-1 tag+i word RB promptedVBN(\¿VBD(\?i word sniffedUH9vVBD9v?i-1 tag+i word VBN americanNNP(\JJ(\?i+1 word schwarzNNPS rNNP r?i-1 tag+i word VBD sexVBNvNNv? i-1 word fed RPh|?5?POSCl?VBN{GzVBZL7A`?NNSSMDX9v?NNPSX9vVBD/$?VBPS㥛пRBsh|?IN^I +VBCl?NNX9v i+2 word sunyCC\(\׿DT\(\?i+1 word blamesRBSտNNP?TOuVi-1 tag+i word VBD innopacNNX9vNNPX9v?i+2 word televisionNNS rhVBK7ٿNN rh?VBD ףp= VBN^I +@JJ"~ji-1 tag+i word TO banxquoteJJףp= NNPףp= ?i-1 tag+i word WDT generatedVBN +?VBD +i+2 word federalNNPQ?NNSm?RBVBD!rh?WDTSJJZd;O?VBG(\?IN +@VBZVBNv?NNx&?RBRZd;OWRB\(\DTm?VBv/i-1 tag+i word JJ reefsNNSK?NNKǿi-1 tag+i word IN durableJJtV?NNtVi-1 tag+i word NNP staunchlyVBD|?5^RB|?5^?i-1 tag+i word POS flagshipNNS?JJSi word chlorofluorocarbonsVBZ}?5^INNS}?5^I?i word headlongVBN;OnRB;On? i-2 word avivDTSINS?i-2 word minorityWDTm?INmi word organizeVB|?5^?IN|?5^i-1 tag+i word , agreesVBZMb?NNSZd;ONNKi+2 word accommodateNNPq= ףp?NNq= ףpi-1 tag+i word VB hitsNNS'1Z?NN'1Z i suffix AraJJ +޿NNP +? i word strayJJA`"?NNA`"i-1 tag+i word TO visitVBK7?NNʡE޿NNPKi+2 word blues''Zd;O?VBZ#~jPOSffffff i-1 word netJJq= ףpINzGVBZMbX9NNSMbX9?NNPQVBG㥛 ?NN~jt?VBNq= ףp?i-2 word opinion VBZA`"VBG\(\?NNd;OVBNI +VBPA`"?WDT rhJJ(\?INT㥛 ?DTQ?i-1 tag+i word NNP saidVBDjt?NNPjti-1 tag+i word IN incitingVBG/$?NN/$i word membersNNPPnNNPS{Gz?NNSx&1@i-1 tag+i word NN frightenedJJʡEVBDʡE? i+1 word crayDT;OnNNjt?JJjtIN;On?i word dNNSjtLSS?SYMn?i-1 tag+i word NNS allVBPʡEPDTGz?RBK7A`VBN{GzDTX9v@i-1 tag+i word NN tallyNNzG?RBzGi-1 tag+i word NNP sellVBʡE?NNPʡEӿi-2 word trillionVBGClJJCl?NNbX9?JJRbX9 i-2 word hNNPSlNNPl?i-1 tag+i word CC personnelVBPnNNS{Gz?VBD ri+1 word ominouslyRBffffff?NNPffffffi tag+i-2 tag CD RPVBPClNNSCl?JJZd;O?NNZd;Oi-1 tag+i word IN continentialJJK7NNPK7? i-1 tag+i word CD microprocessorNNx&1?JJx&1i-1 tag+i word VBD preparingVBG&1?JJ&1i+2 word bills VBZv/NNSv/?VBDCl?VBP?5^I ?RBMbXٿINA`"NNPʡEVBB`" @VBGX9v?JJq= ףp?NN|?5^i word narrowestJJSK?NN)\(JJ;Oni-1 tag+i word VBG predictableJJ= ףp=?NN= ףp=i-2 word appearJJw/?DT/$?NNPB`"?NNB`"PDT/$VBNw/i+2 word durableVB;OnVBP;On?VBGd;O?NNd;Oi-1 tag+i word IN moreRBR rh @NN~jtJJRRQ?JJq= ףpi-1 tag+i word JJ statutoryJJCl?NNCli+1 word germany WRBSVBNQ?JJQNNPV@VBQNN+INQ?DTQNNPSʡE i word starkJJv/@NNv/ i suffix fluNNI +?JJI +ֿi word megawattsNNSCl?NNCli-1 word reluctanceRB;OnIN;On?i-1 tag+i word CC puddingVBG!rhNN!rh?i-1 tag+i word DT outsideINʡE?NNPSSJJq= ףp?NN +?NNP r i word flipJJJ +?NNJ +i-1 tag+i word -START- y&rCC?5^I ڿNN9vNNPA`"?i-1 tag+i word DT recordVBNV-VBV-NNSZd;NN/$ֿJJʡE@i-1 word emergesRBtVINtV?i-1 tag+i word DT mealJJ7A`NN7A`?i-1 tag+i word NNP broadcastingVBG̿NNP?i+2 word contracts RB?NN"~NNP rhNNSENNPSERBRK7JJRV-?JJ?5^I @INL7A`?i-1 word davidNNS|?5^ɿNNPZd;?NNPSQNN㥛 ?FWCl?JJ rhi-2 word firmedNNx޿NNS;On?JJxRB!rhܿi word shorelineVBZd;ONNZd;O?i-1 tag+i word NN cattleNNSK?NN\(\VBDZd;i-1 tag+i word VBD overwhelmingVBGFxJJFx?i-1 tag+i word POS escudomeJJ1ZdNNP1Zd?i-1 tag+i word NNS agoRBL7A`?VBDGzVBP(\JJd;OINp= ף?NNSףp= i-2 word boostJJ|?5^?NNSףp= ?JJR-?NNQRBR-i-1 tag+i word VB investedVBN"~j?JJ"~j"i-1 tag+i word -START- interpublicJJoʡNNPoʡ?i-1 tag+i word `` downtimeNNZd;O?JJZd;OFW^I +߿i word consumptionNNv/?JJv/ i suffix eedVBD/ݤ@RBZd; NNPI + JJRʡEVBZPnVBN+@VBPK7 @INy&1MDw/@NN/$?JJSMbX9NNSn@VBS @JJZd;ORBS"~ji-1 tag+i word DT metallurgicalJJOn?NNOnۿ i+2 word tiesRB|?5^?NNV-JJRV-ڿ i word genresVBZGzNNSGz?i-1 tag+i word VBP neededVBNZd;O?JJZd;Oi+1 suffix mecRB&1NNP&1?i+2 word greaterNN(\?VBD|?5^VBP|?5^?JJQNNSMb?NNPX9vi+1 word guberNNPSMbX9NN/$RBZd;O߿IN(\?NNSHzG@NNP ri-1 tag+i word IN adultsNN㥛 NNS㥛 ?i-1 tag+i word VBN deadNNSSӿJJS?i word computerlandNNSMbJJffffffNNPZd;?i+2 word initiativeJJm?NN|?5^NNPX9v? i word usefulRPClJJtV?INsh|?i-1 tag+i word JJR reportVBPPn?NNPni-1 word governmentalNNOnۿNNPOn?i+2 word traceNNS+?IN+i+2 word indebtednessJJClVBDCl? i suffix /16CD$C?NNS$Ci-2 word specializesVBGˡE?NN rJJV-?i-1 tag+i word NNP opportunityNNd;ONNPd;O? i word cladNNPHzGRB+NN'1ZԿVBNˡE?VBP`"JJMbX9?i-1 tag+i word IN marbleNNS㥛?JJS㥛i word formulaNN r?VBNV-JJHzGi-1 tag+i word VBZ sunkVBN?RBѿi-1 tag+i word , exerciseVBZMbVBPl?NN#~ji-1 tag+i word RB stoppedVBNK7A?VBDK7Ai-1 word islandsRPB`"NNSClǿRB r?NNmINX9v?i-1 tag+i word `` cheersNNSHzGٿFWK߿NNPq= ףp?NNPSd;O i word famousJJClNNPCl?i-2 word revitalizedVBP?NNSi-1 tag+i word NN recordingsVBZX9v׿NNSX9v?i-1 tag+i word -START- imaNNPn?NNni-1 tag+i word JJ professionalNNS1ZdNN-@JJףp= i suffix 230VBN+CD+?i word surveyedVBNMbX@JJRPnJJ㥛 NNSlNNQVBD/$ i word vietJJv/NNPv/?i+2 word predecessorVBZ~jtIN~jt? i suffix 8-2NNS +οCD +?i-1 tag+i word VB gasolineNNB`"?JJB`"i-1 tag+i word JJ agoRB+?NN+ i-1 word oldNNPnNNPSHzGٿVBGjtNNp= ף?CD}?5^I?JJʡE?NNS1Zdi+1 suffix ukiWDT/$IN/$?i-1 tag+i word IN prosNN333333NNS333333?i-1 tag+i word DT askingNN ףp= ?VBGffffff?JJQi-1 tag+i word VBD abolishedVBN)\(?JJ)\(i-1 tag+i word DT membersNNSm?NNPmi+2 word foreign JJ ףp= ?VBZ ףp= ?NNPRQVBV-?RPrh|?NNy&1VBDuV?RBRˡE?VBN{GzVBPGzINrh|NNSffffff?JJRX9vֿi+1 suffix zipWDTS?INSi+2 word telecastNNX9vNNPX9v?i+2 word integrationJJ333333?NNP333333ӿi+1 word inexplicablyVBP㥛 VBD㥛 ?i+1 word inventoryJJR/$?RBQRBR/$RPQ?i+1 word bringRBGz?INClVBPGzWDTCl?i+1 word thaddeusVBNx&1?VBDx&1i-2 word trainsVBNQNNQ?i-2 word reintegratedVBZS?NNSSi tag+i-2 tag '' VBGNN(\?JJ(\ȿi word italianJJQ@NNPQi word encountersVBZ|?5^@NNPSB`"NNS+i-1 tag+i word DT weakestJJSbX9?NNbX9 i pref1 7 VBK7JJZd;O?NN|?5^VBN= ףp=NNP?5^I ?CDq= ף@VBPS㥛RBS㥛NNS@i-1 tag+i word VBN poorlyRP/$RB/$?i-2 word customers VBGtV?VBP~jt?NNS`"NNP`"?VBL7A`NNMbX9VBD ףp= ?VBNjtJJT㥛 ?i+1 word soundedNNSq= ףp?VBZq= ףpi-1 suffix ens RBCl˿NNv?VBD\(\''333333DTK7A`?JJR~jtNNPCl߿MDn?VBtVPOS333333?RBR'1ZVBP +?JJffffff?i-1 tag+i word VBP sacredVBNI +JJI +?i-1 tag+i word , businessNNzGNNPzG?i-1 tag+i word VBZ surroundingVBGʡE?JJʡEi-1 suffix ilmNNSӿVBGS?VBZ$CNNS$C?i-2 word behestJJ+?NNK7CDffffffi+2 word semiannualVB~jtJJx&1?RB$Ci word creativeJJMb@NNV-NNP/$i-2 word arbitrageVBS?NNGzVBDNbX9?i-1 tag+i word -START- flickNNX9v?JJRQNNP^I +i-1 tag+i word RB guardsVBZS?NNSMbX9NNvi+2 word assumedJJ}?5^I?VBG}?5^Ii-1 tag+i word NNP wellRB\(\?CD\(\i word fraudulentVBD ףp= JJ|?5^@NN+i-1 word waddlesVBPףp= INףp= ?i-1 word giddyNNʡE?VBGʡE i word snailNNx&?JJx&i-1 tag+i word JJR buyingVBG7A`NN7A`?i-1 tag+i word IN actingVBG/$?NN/$ٿ i+1 word saabDTMbX?INMbXi-1 tag+i word NNS linkedVBGVBNA`"?VBDʡEi+1 word natureJJCl?NNCl i word plus NNPsh|?VB^I +JJrh|߿INV-@VBPL7A`NNSPnRBSNN+CCʡE3 @i word grabbedVBP= ףp=NNClVBDʡE@i+2 word rarelyWDT+IN+?i+1 word locatedDTd;O?RBd;Oi word somedayVBV-RB^I @NNMbJJMbVBN㥛 i-1 word reachesRBRA`"JJRA`"?i-1 tag+i word NN undertakingVBGy&1NNy&1?i+2 word replacedNNV-տNNPSNNSZd;?JJ= ףp=ڿi+2 word topazVBZClɿMD5^I VBPCl?NNP#~j?JJX9vi-1 tag+i word RB assertVBZsh|?VBPZd;O?RPB`"i-1 word exceedinglyVBN(\JJ(\?i+1 word condemningRBuV?JJuVi-1 tag+i word , allentownNNPS?5^I ڿNNP?5^I ?i+1 word varvaraJJ?NNi-1 tag+i word VBZ delayingVBGbX9?JJbX9i-1 tag+i word IN concernsNNSK?JJKi-1 tag+i word NN araJJ +޿NNP +? i suffix ren UHzGڿNNPZd;O?NNSZd;@VBd;OJJSNNClVBDd;ORB#~jIN#~j i-1 word zipVBDףp= VBP(\RP|?5^NNffffff?IN|?5^?i-1 tag+i word DT bristolNNPSnNNPn?i-2 word stipulatesVBZSӿNNSS?i-2 word solicitVBI +?VBPI +޿i-1 tag+i word NN techniquesNNSX9v?NNX9v޿i-1 tag+i word DT preferredJJ~jt@VBNmNN= ףp=i word refinancingVBGGzNNGz? i word peekNNRQ?JJRQпi-1 word megabyteJJMbؿRBˡENNGz?NNPtVi word reboundVBxi@VBPMRBKVBDni-1 word negotiateJJ)\(?CD)\(ܿi-1 tag+i word DT trustJJQNNQ? i word closer RBR7A`@VBNoʡVBZ +JJRCl@NNP%CINDlVBh|?5VBGS㥛ĿRBV-@NNHzVBPGzJJJ +i-1 tag+i word NNP clubNN)\(NNP)\(?i-2 word legislativeWDTE?RBh|?5INClɿi word somethin'NNx&?JJx&i+1 suffix insNNS㥛@VBDMbP?JJS!rh?CDNbX9ؿWDTV-?VBx&1NNPS +?JJZd;O?VBN#~jRB(\VBGA`"WPtV?VBZSNNS rhNNPJ +POSS?VBPzG?INV-i+2 word shippersRBp= ף?NNjtNNPv/i-2 word assistantNN1Zd?VBN\(\?JJ1ZdVBD\(\i-1 tag+i word CC fitVBZClVBnJJ +? i word textsNNSx&?NNx& i+1 word cosNNPS?NNPSSi+2 word rebutJJRQNN|?5^VBZq= ףpJJףp= @i-2 word machikinVBClVBPX9v?JJ/$ i-1 suffix anRBRnCDx&?NNn @IN ףp= VBS㥛VBGS?JJ|?5^ @JJRDl?NNS +DTGzοNNPS(\RBE?VBNl?NNP= ףp=ʿVBDK FW= ףp=i-1 tag+i word -START- strategyNNoʡ?NNPoʡi-1 tag+i word NN linkingVBGMbX9?NNMbX9 i word blewVBZZd;ONNT㥛 VBD#~j?i-1 tag+i word VB helpVBh|?5NNh|?5? i word talesIN㥛 NNS?5^I ?NNPq= ףp i-1 word iranVBZuVտNNS rh?VBDzGi-1 tag+i word VBN supportVBPV-NNV-?i word crystalNN/$?JJ/$i word trippedVBDnVBNn?i-1 tag+i word JJ shortJJffffff?NNffffffi-1 tag+i word JJ supervisoryJJ5^I @NN5^I i-1 word laptopNNPˡENNSˡE?i-2 word syndicatedJJNbX9?RBNbX9i-1 tag+i word DT diplomaticJJB`"?NNB`"ѿi word sportifVBPNNףp= FWM?i-1 tag+i word DT electricianNN~jt?JJ~jt i suffix ps.NNPSMbX9@JJ"~jNNPQi-2 word presageJJRZd;?DTZd;i-1 tag+i word NN whizzesVBZuVտNNSuV?i-1 tag+i word NNP sandsVBZ&1ڿNNPS{Gzt?NNPn?i+2 word approachJJ'1ZܿNNPS+RBR+@NNuV?JJR+i-1 word buildingVBDK7A@VBNZd;JJʡEIN +?NNPʡE?RPzG?RBMNNsh|?i-1 tag+i word IN integratedJJy&1?VBNy&1i+2 word volatilityNNrh|JJR㥛 VBPV-JJMb@IN`"?NNSGz?VBjtRB`"i-1 word aspectsWDTV-?INV-i-2 word governmentsVBPFx?JJ+ηVBDV-i+2 word acquiresJJS?NNSi-1 tag+i word JJ maestroNNʡE?NNSʡEi+2 word olderVBNbX9?JJKǿINDl?RB+WDT~jti-1 tag+i word VBD moreJJR'1Z?RB+RBRn?i-1 tag+i word `` tryingVBGy&1?NNPy&1i-1 word personJJ9v @VB/$VBGy&1?RB|?5^NN~jt VBDPn?VBNS?i-1 tag+i word PRP$ emphasisNNSZd;NNZd;?i+1 word pregnancyVB{GzJJ+?NNQCD#~ji+2 word errorsVBjt?JJjtܿi+2 word simplePOS%CEX%CRB%C@VBZK7AؿNNSV-?NNQi-1 word electronicallyVBZx?VBPzG?NNSxJJzGi+2 word narrowsJJRbX9?RBbX9 i word marbleNNn @JJn i+2 word biddersDT~jt?PDT~jtVBGGz?NNGz i word bowlsVBZ|?5^?NN㥛 JJ?5^I i-1 word fearingVBZHzGNNSHzG?i+2 word brokeragesNNPSB`"?NNPB`"ɿi-1 tag+i word JJ arenasRBClNN-NNSV-?i+1 word westwardVBGQ?NNQ i word dramaNNSClNN!rh@JJmݿNNP/$i-1 tag+i word DT minuteNN/$?JJ/$ i+1 word ofMDʡENNPSZd;@PRP$QVBGSVBPK7AJJS㥛DTZd;O@RBSuVRBRT㥛 NNSoʡ@WP+VBZ+?PRPS``WDTV-NNsh|@PDTSINM @VBNzG?POS/$ RB|?5^?NNPV-@RPZd"CDC@JJSsh|?@JJRv @VBB`"۹VBDNbX9CC~jti-1 tag+i word JJ strikesNNGzNNSGz?i-1 tag+i word VBZ '''GzPOSGz?i+1 word securitiesNNPK7?VBPB`"?VBN"~j?INPOSQ?''QNNX9vNNPSx&VBG ףp= ?RBR-޿JJ+JJR-?VB-?VBDsh|??i-1 tag+i word IN wireNNSNbX9NNNbX9? i word dentNN/$?JJ/$i+2 word charlieRPVBN/$?RB?VBD/$i word permanentJJ"~j@NNMbXRB;On i+1 word mNN rNNP r?i-1 tag+i word DT gradualJJ(\?NN(\i+1 word withinVBd;O?JJ333333 NNS^I +?VBN{Gz?WDTOnINDl?VBZv/PDT/$RBRmRB/$?VBGS㥛?NN~jt@RP rhDT- i word twinsVB333333NNP333333?i-1 tag+i word IN southeasternJJ#~j?NN#~ji-1 word discouragesVBN/$JJn?VBDI +i+1 word domeniciNNPSzGNNPzG?i-1 tag+i word -START- leverageNNn?NNPni+1 word leeryRBZd;O?VBNZd;Oi-1 word acceptedNNSX9v?IN{Gz?DT{GzVBPX9vi+1 word exchange JJRZd;?VBNQDTL7A`NNPCl?NNSlNNPSuV?NNSRBRMbJJ`"?INL7A`?i word goodnessVBP㥛 NNK7A`?VBZMbi+2 word propertyJJ9v?RBSHzGٿNNS㥛RB^I +?IN+?i word takamoriNN&1NNP&1?i-1 tag+i word -START- waxmanJJV-NNPV-?i-1 word clientJJ7A`NN\(\VBD$C˿VBN/$?RBZd;VBZPn?NNS\(\?VB(\?i+1 word mirroringJJ;On?NN;On i-1 word pongNNPS\(\ϿNNP\(\?i-1 word twistedVBP/$NNS/$?i-1 tag+i word , aerospaceVBx&1ؿVBNtVNN333333?i-1 tag+i word NNP prefectureVBPx&1NNx&1?i+1 word stirsNNOn?NNPOni word sardonicJJS?NN^I +NNSS㥛i+2 word constructNNy&1NNPy&1?i-1 word unusualVBDClNNSʡEJJCl?NNQ?i+1 word fathersVBGh|?5?NNPh|?5i-2 word bearingVBNˡEVBDˡE?i-1 tag+i word NNS whizzesNNS'1Z?VBP'1Z i word faxesNNS|?5^?VBN|?5^i-1 tag+i word IN packagedVBNK7A`?JJK7A`i+1 word management NNP|?5^@NNPS{GzܿVBG㥛 ҿIN{GzDT{Gz@NNSJJp= ף?NNB`"?VBN/$VBPT㥛 ?RBxi-1 word arisingRBuVINuV? i word timedVBN$CVBD$C?i-1 tag+i word PRP strictlyRBV-?VBZV-i-1 tag+i word NN embargoVBGzNN(\?FWp= ףi-2 word robesVBZʡENNL7A`?JJףp= i-2 word consultantsNNPSV-NNSHzGNNʡE?JJʡENNPsh|??i+2 word perezVB㥛 NNP㥛 ?i-2 word inventionVBZʡE?VBDʡEi-2 word workplaceVBZm?VBPmi word estimatedVBPtVJJQӿNNPh|?5NNvVBDK7AVBN rh@ i+2 word jailRP\(\ϿRB\(\?i-1 tag+i word NNP getsVBZ= ףp=?NNPSMbNNPjti+1 word customsJJbX9?NNPbX9i-1 word interestedNNS/$RBR/$?i-1 tag+i word VBP expectingVBGl?JJl i word graceJJ+RBEпNNPMb?NNRQ?i word forecast JJp= ף NNK7?VBDQRBRjtܿVBPsh|?@RBVBQ@JJSS˿VBNPn@INVBZMbi tag+i-2 tag CD $NNjtVBDFxDT+߿VBG#~jԿRBQVBNʡE@WDTT㥛 ?NNPQ@CC;On?JJSտINy&1?VBZ~jtNNS +CDV-i-1 word prideRBT㥛 INT㥛 ?i-1 tag+i word DT blockbusterNNSZd;ONNʡE@JJS㥛i-1 tag+i word . theftVBP+UH rNNh|?5?i+2 word producesNNq= ףpVBPClNNS r?i-2 word automobileVBGʡEJJRp= ף?NNS㥛CDNbX9i word purposesVBZ)\(NNS)\(? i word mayorNN+@JJ$C˿NNPMb?NNS-i word neurologistsVBZNNS?i-1 word crimsonNNMb?JJMbi-1 tag+i word JJ lithographyNNPSlNNl?i word developedVBN/$@VBPKJJ㥛 ?VBZ rhRB= ףp=VBD/$ѿi-1 tag+i word NNP downINNNP9vRPGzRBE@i+1 word stampedeNNzG?JJʡEVBGMbX i suffix hly JJjt @NNMbX9VBP`"NNPVBQRBRQEXX9vRBI +(@NNSv VBD|?5^i-1 tag+i word NN automaticallyVB/$RB/$?i-1 tag+i word NNS eruptedVBNSJJ~jtVBDJ +@i-2 word fundingJJ)\(?NN+VBN#~j?i word coachesNN#~jNNS#~j?i-1 tag+i word JJS appropriateJJ&1?NN&1i-1 tag+i word NN clownsNNSv?NNvi-1 tag+i word VBZ plungedVBNZd;?VBDZd;i-1 tag+i word DT blaseJJ~jt?NN~jti+1 word fightingIN +RP%C?NNPSZd;?NNSZd;RBh|?5i-1 tag+i word VBD momentarilyVBNClRBCl?i+2 word overlookedNNS +?NN +i-2 word miamiJJRv/NNv/?i+2 word japanesePDT rh?JJNbX9INZd;ONNS9v?DTV-?MDZd;?RPv?NNI +VBNHzGRBRZd;O?VBRBn?WDTx&1?WP"~?NNPS/$VBPZd;@JJRZd;ONNPDli tag+i-2 tag CD WDTVBZS?NNSZd;NN~jth i+2 word cyVBPoʡ?VBDoʡi+2 word kidderJJ(\?NN|?5^VBDK7?PDTSJJS|?5^?VBNK7RBK7?VB}?5^Ii-1 tag+i word VBZ typicalVBN+JJ+?i-1 tag+i word RB sureVB~jt JJ@RB +?IN㥛 i-1 tag+i word NN continueVBv?VBP r?NNMbX9i+1 suffix st.JJp= ף@VBNClNNuVݿCDMbi-1 tag+i word RB standsVB1ZdVBN1ZdVBZ1Zd?i-1 word shellNNSh|?5@RPq= ףp?RB|?5^NNZd;OINHzGi-2 word findsJJ~jt?VBZ#~j?NNSv/VB#~jVBGˡE?RBS?NN}?5^IVBNv/?i+2 word racketeeringNNPsh|??NNPS{GzNNjti-1 word conveyDTjt?INjti+1 suffix palNNPQVBw/?RB'1Z?NN?5^I ?CC'1ZܿJJPnؿDT'1Z?i word compositionalJJ+?NN+i-1 tag+i word WDT bothCC-?VBZʡEӿDT^I +VBD"~i-1 tag+i word `` sizeVB%CܿNN@NNP ףp= i+1 word electronicVBZHzG?NNSHzGJJ-?NNDlVBN rпi-1 tag+i word NNS remindsVBZJ +?VBx&1VBPV-i-1 word coolingRPS?INSݿ i suffix ASTNNS?5^I ?RB?5^I NNMbX9?NNPMbX9i+2 word francsRP$CRB$C?i word ballisticNNClJJCl?i+1 word dialingVBG`"?NN`"ο i-2 word eggsRBHzG?INHzG i word behestJJSQNNQ? i+2 word late RBrh@NNJ +RBR9v?IN333333JJRffffff޿VBGtVVBDd;O@PDT(\VBN/$VBP%CJJ/$@RPI +NNS\(\?i-1 tag+i word IN loveVBPT㥛 NNMbX9?RBRQi+2 word sluggishRBףp= ?JJףp= ۿi-1 tag+i word NNP settlesVBZK7?NNSK7i-1 tag+i word JJ elsewhereNNSI +RBI +?i-2 word sufficientlyVBL7A`?NNL7A`i-1 tag+i word -START- fashionNN rh?NNP rh i-1 word { JJR/$DTMb?NNP|?5^VBDl?JJV-?NNףp= ?FWx޿INV-?NNSn?VBDy&1?VBN\(\PRPSRB333333ÿi-1 tag+i word JJ freeJJv/?NNPv/i-1 tag+i word IN fairNNSClJJsh|?@NN/$i tag+i-2 tag : JJRCDQNNQ@RBffffff?INffffff޿i-1 tag+i word NN cNNPˡE?JJˡEi-1 tag+i word JJ conflictNNSGzNNGz?i-1 tag+i word `` netJJK7?FWK7i+1 word regimeJJSQNNQ?i word memorandumNNS ףp= ߿NN㥛 ?JJB`" i+1 suffix geWDTvVBNKVBDK?INv?i-1 tag+i word -START- relatedVBNʡEJJʡE? i word swanNNS+NN)\(?NNP'1Zi-2 word wednesdayJJ~jt?VBD~jt i-1 word popRP㥛 ¿RB(\?NNI +?VBD+JJ~jt?INuVi word pointingVBGV-?NNV-i-1 word copperVBV-NNSw/ĿRBDl?NNʡE?VBZZd;O i-1 word toneVBNT㥛 VBDT㥛 @i-1 word ended NN rhVBNB`"?JJR1Zd NNPףp= RPX9v?RBPn@RBR!rh@JJoʡIN/$i+2 word subvertedVBN+RB+?i+1 word antiviralJJw/VBD;OnRB ףp= @i-1 tag+i word DT picketVBNffffffNNffffff?i word willingnessRBR(\пNNQ @JJR rhJJsh|?i+2 word occursNNjt?JJjtIN rhWDT rh?i+2 word trainedVBNsh|?JJsh|??i-1 tag+i word VB trendyJJ/$?NN/$ i suffix sicNNP~jtJJHz"@NNV-2VBD+VBNʡEƿVBP-ƿRBffffffNNS;On i word boaJJOnNNOn?i-1 word watchesVBPZd;RBZd;?i-1 tag+i word TO irresponsibleVB/$JJ/$?i-1 tag+i word VBZ timidVBNK7AJJK7A?i-1 word tasteVBNjtԿVBDjt?i-1 word surveysVBZA`"VBP/$?NNZd; i-1 word coalNNSd;O?VBDd;Oi-1 tag+i word VBZ expandingNNx&VBGx&?i-2 word institutoNNP rhFWK7A`?INx& i+2 word likeWDT +οINq= ףpݿDT +?NNS'1ZNNPK7A`VB|?5^ڿVBZX9v?VBGQٿNNʡEVBD7A`?MD5^I ?RB +@VBN-RBRMb?VBP)\(?JJV-?JJRMbNNPS}?5^I @i-1 tag+i word DT protestersNNPS!rhNNS!rh?i-1 tag+i word NN verdictsNNSB`"?VBZB`"ٿ i+2 word kongNNFxVBNS?JJuV?INS?DTSNNPSVBS?RBS i word foughtVBPRQVBN(\@NN{GzVBDQ i word gloveNNV-NNPV-?i-1 tag+i word JJS ideasNN"~NNS"~?i+2 word processesDTʡE?PDTʡEVBG?JJ̿ i word pacsNNPSQ @JJbX9NNPZd; i+2 word held VBDK@VBNh|?5޿JJR7A`RB= ףp=?VBZ+NNS+?VBx&JJMbX9?NNP?NNPS^I +UH= ףp=i-1 tag+i word WDT presidentsVBZv/ͿNNSv/?i-1 tag+i word RB eliminateVBX9v?JJX9vi+1 word treasurersNNQNNPQ?i-2 word koreansVBGFxJJFx?i-1 tag+i word DT objectionsNNPSQNNSw/?NNPh|?5 i+2 word vansRBHzG@JJR"~NNoʡRBR(\i-1 tag+i word IN scaleNNX9v?NNPX9vi+1 word stableVBPFx?JJGz?INQNNSGzVB}?5^I?NN}?5^IRBRjt? i word glibJJX9v?NN~jthNNS|?5^i-1 tag+i word RB embarrassingVBGMbXJJMbX?i-2 word narcoticsNNSClNNCl?i+2 word ballooningVBG+NN r?JJuVi-1 tag+i word `` tabloidJJNbX9?RBNbX9 i+1 word sanVBZ333333?NNS333333NNPHzGVB+?VBG+NNtVJJn?i-1 tag+i word DT groundNNPS+NN+?i-1 tag+i word VB sterlingNNClJJCl? i+1 word de VBv/ͿNNPS1ZdۿJJ!rhVBPp= ףRBh|?5NNPK?NN+?FW +@NNSףp= i-1 tag+i word NN rodVBZ +NN +?i word prolificNNS'1ZJJ'1Z?i word reportedJJjtVBD}?5^@VBX9vNNSX9vVBNl?i-1 word convenedJJ/$?RBZd;OͿINSi-1 tag+i word VBP burnedVBNQ?JJQi-1 tag+i word DT canceledVBNx&?NNM¿JJw/i tag+i-2 tag IN VBZVBD!rhRBRRQCDFx?EXS㥛?INV-?JJRV-?PRP$9vVBGzG@VBN)\(VBZNbX9FWd;O?PRP9v?PDTףp= WPMbP?NNS㥛 ?VB;On?JJS/$?NNPS"~?VBPMbJJClDTS?NNK7A`?RBL7A`NNP;OnRBS/$i-1 tag+i word JJ chromosomeNNS?JJSi+1 word componentJJ~jt?NN~jti-1 word profileWDTʡE?INʡEi word tradingVBGV-RBZd;NNM%@JJR$CVBPSJJZd;NNSZd;NNPuV i+2 word colaVBG!rhԿJJ!rh? i+1 word huskJJK7?NNK7i-1 word throwPRP$9vRP ףp= ?PRP9v?IN ףp= i-1 tag+i word JJ costaJJ"~j?NNP"~j i+1 suffix itRBK7AINZd;@VBPGz@WPzG?NNCl?PRPʡECDmNNPSQſJJZd;OVBDbX9@NNS|?5^?RBS$C?VBZ333333 @DT+NNPSVBjt @PRP$ ףp= VBGPn@FWtVWDT rhJJRzG?UH#~jVBNMbRPS㥛WRB^I +?JJS$Ci word importedJJ|?5^VBDX9vVBN{Gz@i-1 tag+i word , exceptVBN;OnJJClIN^I +?i+1 word precisionNNm?JJmi-1 suffix marNNPS +?NNP +i-2 word spiteJJˡE?NNˡEi-1 word delayVBD?CCT㥛 VBNܿNNSK7A`VBG'1Z?NNx&? i word guzzleVBsh|?@NNsh|?i-1 tag+i word NN projectNNjt?VBDjti-1 tag+i word DT citizenJJ\(\NN\(\?i-1 word findingVBD}?5^I?VBN~jtJJ;On?i+2 word chineseINSVBZrh|?VB1ZdRBS?VBDrh|JJ1Zd?i-1 tag+i word IN mutualJJ(\ؿNNP(\?i+2 word privatelyVB rh?VBGzG?NNK7 VBD rhݿVBPʡE@JJSi-1 tag+i word PRP adjustsVBZCl?VBDCli+1 word along JJZd;VBZʡE?DTL7A`NNP-VBD ףp= ?PDTS㥛VBNB`"?VBPZd;ONNStV?VB333333?VBGK7?RBA`"@NN~jti+2 word divingCCoʡ?INoʡi word accusationsNNPSK7ٿNNSK7?i-1 tag+i word DT militaryNNSnJJSClNNh|?5@JJ/$NNPPnؿi word bacillusNNPSnNNv @JJѿNNP~jti-1 tag+i word VB affluentJJ?NNٿi-1 tag+i word RB offerVB'1Z?VBP/$?NNtVVBD +i-1 tag+i word NN serviceNNףp= ?VBDףp= i+1 suffix plcNNPSw/?NNS7A`NNGzNNP?i-1 tag+i word JJ youngerNNHzGJJRHzG?i-1 suffix jetVBNClѿVBDCl? i suffix sumNN/$?JJR"~jJJ9v? i word withinIN9v@CDK7AJJ rhNNP|?5^VBD5^I i tag+i-2 tag NNPS DTVBNV-VBPOnRBZd;OǿVBZ/$NNPSQ@VBG~jt?NNx&1FW9vVB/$?''rh|NNP(\µ?JJ|?5^ѿPOS$C?IN= ףp=?NNSMbXVBDT㥛 ?i-1 tag+i word CC inadvertentJJ r?NN ri word nasdaq\/nationalJJK7NNPK7?i+1 suffix ricVBG-?JJ+NN9vNNPCl?VBP`" i pref1 aJJSd;OUH rhFWK7AVBNV-?DTV-@EX/$NNPS"~*#VBG@NNPm1PDT-?INV-2@VBPw/@WDT+JJ(\@VBD+?NNbX9 @RPzG@$ףp= NNSX9v@PRPJJRKCD(\WPGz޿VBZ!rh@RBK7A@VB}?5^I?RBR-i-2 word nervesVBPV-@JJSNN/$i+1 word stardomJJ㥛 ?NNjtFW\(\ i-1 tag+i word IN appropriationsDTv/NNSv/?i word clearlyRBV-?JJsh|?NNPCli+1 word exorcismNN-JJ-?i word preliminaryJJʡE?NNDlNNPv/i-1 tag+i word JJR applyVBrh|?NNrh|i word sNNP$CVBNQٿNNMPRP$C?i-2 word flooringNN9v?JJ9vi-1 suffix ainWP(\DTԿVBZx&1VBG/$RBHzG?VBDM?RBRL7A`WDTy&1|?JJR +?NNPSp= ףNNjtRPK7NNP`"JJ/$@VBPnNNSK7?INK7A`@VBNFxVBPK7?i+1 word clearVBGffffff?VBDrh|?POS|?5^VBNrh|JJ|?5^VBZ|?5^?DTuV?i-1 tag+i word CC launchesPRP)\(NNS)\(?i-1 word crushVBNKǿVBDK?i-1 word frequently VBZ ףp= ?NNSS㥛VBN(\ڿIN;On?NN/$VBDS㥛VBPʡE@JJGzVBGvRB;Oni word switchedVBN{GzVBD{Gz?i+2 word southernPRP$ףp= NNx&1VBNT㥛 ?JJ/$?NNSZd;O?NNP/$?i+2 word idosyncraticVBPB`"?VBDB`"i-1 tag+i word DT strayNNA`"JJA`"? i word powersNNSv/?NNv/i-1 tag+i word DT provedVBPq= ףpVBDq= ףp?i-1 tag+i word NNS loseVBP9v?VBD9v i-1 word essoNNPSQNNPQ?i+1 suffix ougRP(\пNN(\? i suffix zdaWDTtVNN-NNPuV? i-1 tag+i word -START- advancingVBGʡE?NNףp= NNPh|?5οi-1 tag+i word IN youngerNN~jtJJRMb?JJHzGi-1 tag+i word CC hertzNNP{Gz?VBD{Gzi word undervaluedVBNE @JJE i+1 suffix aneJJRQRBRQ?JJX9vNNP;On@VBRB +?NNK7i-1 tag+i word DT aegisNNSI +NNI +?i+1 word exportsNNʡE VBGz?NNS/$?JJˡE?i-1 tag+i word VBZ seemVBP㥛 VB㥛 ? i-1 word beenVBp= ףؿRB"~?NNZd;VBN +@VBGV-2@VBD rhRP;OnJJRS?NNP+?NNPS$CJJʡE @NNSh|?5 RBRIN~jtDTMb?i-1 tag+i word JJ scientistNNS9vNNOn?JJ)\(i-1 tag+i word DT conductingVBG+NN+? i word krenzNNPPn?NNS?5^I VBD`"i+1 word smolderWDTHzG?INHzGi-2 word balloonistsVBCl?VBPCl i word hughINZd;߿NNPZd;?i+1 word cookiesNNPSnNNPn?i word subjectVBNT㥛 VBP#~jJJMbX@VBZVB|?5^RBʡENN|?5^?VBD\(\i+1 suffix putPOSPnпVBN1Zd?RBRq= ףpݿVBP/$PRP-?JJ rhJJRq= ףp?WDTtV@DT#~jVBGOnNNPSjt?RBNbX9ؿFWT㥛 пNNPS?VBX9vNN/$?i word meringuesNNSGz?VBNGzi+1 suffix zacNNV-VBN ףp= ?JJCli+2 word congenialVBD+?RB+ i word makingVBG/$@VBK7AJJSZd;OJJjtNNQ?i word multipleuserNNSJJ333333@NNffffffJJRw/Կi-1 tag+i word RB acknowledgedVBN(\?JJ(\ i word pauperJJRd;ONNd;O?i-1 tag+i word DT fitsVBZ'1Z?NNS'1Zi-2 word waertsilaeVBG|?5^?NN|?5^i-2 word participantsVBMb?NNP}?5^INN^I +?RB rhINffffff?i+1 word mystery\/comedyJJRGzNNGz?i+1 word cleanJJv/?RBv/i-1 suffix notPDToʡ@VBPClgVBD/$NNS ףp= VBNoʡ?RBS㥛?NNPT㥛 ?VBG ףp= ?JJv?CC?5^I ҿRBRx&?JJR$CRP1Zd?EX㥛 VBNbX9 @NNPSV-?NNx&PRPCl׿INtV?DT~jt?VBZy&1i-1 tag+i word `` appropriateJJ?NNi-1 word chromosomeNNSCD?i word grummanNNPSB`"JJh|?5NN|?5^ҿNNP9v? i suffix ebtJJ`"NN+@NNPi-1 tag+i word POS fledglingNNw/?JJw/i word silversNNPS/$NNP/$?i-1 tag+i word RB luckyIN)\(JJ)\(?i-1 tag+i word VBZ ryeNNK7A`?RBK7A`i-1 word stolzmanVBD+?IN+ i-1 word tvNN333333?VBNh|?5ֿJJZd;VBZGzNNS㥛 ?NNPQ?NNPS +i-1 tag+i word VBD designedVBNףp= ?JJףp= i-1 tag+i word JJ jewishJJGz?NNPGzi-1 tag+i word NNP packersNNPSzG?NNPzGi-1 tag+i word IN enforcementNN&1?JJ&1i-1 tag+i word DT genuineNN~jtJJ~jt? i word decentJJV-@NNV- i word viewsVBDI +RBؿVBZI +?NNSX9v@NNPX9v׿JJ|?5^NN!rh i word heclaNNSSRBS㥛NNP?5^I ?i-1 tag+i word CC restoreJJR rhVB rh?i word ministerialJJFx?NNFxi-1 tag+i word JJ gambleNNV-?JJV-i-1 tag+i word JJ plightsVBPx&NNSx&?i-1 tag+i word JJ vassNNPS= ףp=NNP= ףp=?i-1 tag+i word NN ravineVBClѿNNPCl?i+1 word anheuserNNT㥛 VBDDTK7A?INoʡVBNrh|?i+2 word israelNNPS`"?RBMbX?NN|?5^ɿJJMbXNNSHzG?NNPI +i-1 tag+i word CC thriftsVB{GzNNS{Gz?i-2 word schemesPDTK7VBPK7?i-1 suffix bidIN1ZdVBZ7A`?RBGz?NNZd;OVBDˡE?VBNoʡ?JJGzi-1 tag+i word PRP$ hiddenVBN(\@JJ(\i-1 word teddyNNGzNNPGz?i+2 word thinksNNNNP!rhWDTK7?i-1 word originalNNPQ?NNSVBNw/?JJK7A?VBDw/ i word mowVBD%CVB&1?VBPGzi-1 tag+i word JJ exceedingVBG?NNi+2 word juiceNNM?JJMi+2 word kickbackVBNHzGVBDHzG? i+2 word gameVBG+ۿJJvNN$CRBRNbX9JJR rhRBQ@CD`"?i+1 word allowsWDTZd;O?INZd;Oi-1 tag+i word TO designVBMbX9?NNMbX9 i-1 word herVBDDlJJS/$?INnVBGNNSS@VBZ+RPRQRBR-JJRQ?UH9vNNPn@VBP9vDT-NNPM?VB!rhJJv/?RBSjt?VBNCl?RBCl?CD"~j?i+1 word photofinishingJJQ?NNQi-1 word vosgesNN+?VBP+i-1 tag+i word VBZ calledVBNtV?VBDtV#i-1 tag+i word -START- bioengineersNNSw/?NNPw/i word reportedlyVB rhѿRBZd;O?NNffffffi word writhingVBG/$?NN/$ӿi-2 word fruitlessJJMb?NNMbп i suffix iusNNPrh|?VBP'1ZNNbX9?FWuVտi-1 tag+i word DT opinionsNNS+?NN+߿i tag+i-2 tag RB JJRVBGMbXVBNS?JJ1Zd?i-2 word contentNNPxJJx?i word continentialJJK7NNPK7?i word rivieraNNPSOnNNPOn? i word shellsVBZʡENNSʡE?i tag+i-2 tag , NN NNSnڿRBST㥛 VBZ!rhNN#~j?VBD/$RBMb?VBPjt?POS(\WRBMbX?NNPS㥛?PDT|?5^RBRx&1NNPSd;O޿VBNE?WDTv?DTQ?RPMbX9''(\?EX r?VBGd;O?PRPCl?INZd;O?JJS/$WPCl?VBZd;O?CCRQ?UH&1ҿJJRV-׿PRP$lFWm?JJ rh?CDGz?i+1 word angeredNNMbX?JJMbXi-1 tag+i word DT virtualJJ/$?NN/$i word heavensNNʡENNSʡE?i-1 tag+i word CC permittingNNbX9VBGp= ף?JJ"~i+2 word neaveNNS-NNP-? i suffix TAXNN ףp= @NNP ףp=  i+2 word hourNNP+NNˡEܿRBjtINjt?FW^I +?i-1 tag+i word NNP yetnikoffNNPSZd;ONNPZd;O? i+1 word evenJJ?5^I VBZE?VBףp= ?PDT rhVBD;On?NNSuV?VBN|?5^?VBPffffffINnDT/$VBGQ?RBv@CD(\?NNPSx&POSףp= ۿWDT rh?RPˡE?NNPd;OοNN9vCCQi-1 tag+i word IN risingJJCl?VBGCli-1 tag+i word NNS purportVBP333333?VBN333333ۿi tag+i-2 tag ( DT JJRlINGzοNNPV-?VB`"?VBDV-JJB`"۹?NNSSÿNNPn?VBN-ƿi-2 word troughJJn?NNnٿ i-1 word turn JJRzGJJl@NN/$VBNX9v?IN9v VBGn?NNSoʡVBd;ORPʡEs@VBDX9vRBRzG?RB(\ݿi word strengthenedJJSտVBD-?VBNZd;Oi word tiniestJJS+?JJ+ǿ i word bluffNNPST㥛 NNPT㥛 ?i+2 word defendersCCܿRB?i+1 suffix steJJS?VBGSJJRʡE?NNʡE i word weighMDʡEVBPʡE?i word banerianNNPn?JJni-1 tag+i word JJ voicesNNP+NNPS"~jܿNNSJ +?i word advocatedVBN\(\?VBD\(\߿i word circumspectJJ r?NN rhVBrh|i-1 tag+i word NNS nearVBP{GzIN{Gz?i-1 word conductVBPKNNK?i-1 tag+i word RBR reliableVBX9vJJX9v?i-2 word exclaimsNNK?NNSKi word syndicatesNNSCl?NNCli-1 tag+i word NNS averagedVBNZd;VBDZd;? i word jacobsCD(\NNP333333@NNSK7A`JJX9vi+1 word experienceDTsh|??VBrh|?RB rhٿNN/$ֿVBN?5^I VBPCl?JJS? i word uncleNN-?JJ-i-1 tag+i word IN hondurasNNSZd;?NNPZd;i-1 tag+i word VBP outragedVBNGzֿJJGz?i-1 tag+i word , notingVBG/$?NN/$ i-1 tag+i word -START- regardingVBGV-?NNPV-i-1 tag+i word DT pediatricJJ333333?NN333333i+1 word craneNNPK?NNKi word declareNNS㥛VBK7A?VBPZd;O?i-1 tag+i word VB dampVB?5^I JJ?5^I ?i-1 tag+i word JJ cdsNNPSnNNSMb @JJףp= NNp= ףNNPjti-1 tag+i word CC designVBClNNZd;@JJ(\i-1 tag+i word NN steppingNNSVBGS?i-1 word administrativeNNS!rh?VBZQVBV-i tag+i-2 tag VB PRPVBNjt?JJRMbRP +?VBDjtCD?VBZ{GzJJ rhNNSDTX9v?IN#~j?VBGlNNS{Gz?RBRI +?RBL7A`尿i word submitsJJnVBZn?i-2 word spinalWDTx&1?INx&1 i-1 word jailVBP+NN+? i word admitsINMVBZzG?VBN~jt i suffix oxyJJ5^I @VBZmNNS= ףp=ڿNNMbVBDˡEJJRi-1 tag+i word : fidelityNNK7A`NNPK7A`?i+2 word pricingsNNSS㥛?JJS㥛i word daimlerNN7A`NNP7A`?i-1 word confrontationVBNMbX?NNMbXIN rhWDT rh?i-1 tag+i word VBZ closingNNS?JJSi word turandotJJ`"NNP`"?i+2 word bouillaireNNPx&1?INZd;OͿFWNbX9i word sponsorNNSK7NNK7?i-1 tag+i word , retiredVBNMJJ/$?VBDw/i+1 word hordeJJ{Gz?NN{Gzi-2 word contractsVBDZd;?JJ!rhDTE?NNSZd;RP+?RB+NNq= ףp?i+2 word francaisVBZd;ONNPZd;O?i+1 word controversyNN(\?RBʡEƿINʡE?VB?5^I ?VBGp= ףJJtVi-2 word birthdayRB= ףp=@IN= ףp=i word environmentalistNN/$?JJ/$ i word bingeNNV-?JJV-ҿi-1 tag+i word RB superiorJJB`"?RBB`"i-1 word merchantVBGS㥛?NNS㥛ܿJJX9v?VBNX9v i word inlandVBPsh|?RBsh|??i-1 tag+i word CC producedVBN^I +߿JJw/VBD= ףp=?i-1 tag+i word CC developVBn?VBPy&1NNʡEֿi-1 tag+i word NNP calledNNPV-VBNd;O?VBDjt?i-1 tag+i word , timeNN"~jNNP"~j?i-1 tag+i word DT bungledVBNGz?JJGzi+2 word territoriesVBNClJJCl?i-1 tag+i word JJ tractNNCl?JJCl i word nobodyDT~jtNNPuVVBʡEJJNN~jt@RBSi-1 tag+i word , a\/k\/aVBZoʡVBףp= ۿIN-?i-1 tag+i word TO seriouslyRB1Zd?VB1Zdi word wyomingVBG+NNP+?i-1 tag+i word JJ atmosphereNNSjtNNCl?RBCli-1 tag+i word RB intellectualsVBZV-NNSV-?i-1 tag+i word NN declinedVBZnVBN~jtVBDDl?i-1 word masqueradingINS㥛?RBS㥛пi-1 word virtually VBD{GzDTV-?RB +?NN^I +?CC%CVBN rVBP-?JJx&1?VBh|?5޿i-2 word speedometerDT333333WDT333333? i-1 word noVBGK7?JJHzG?VBN+VBZffffffNNSx&1ԿNN r@CD rhPRP-?NNPS/$?RBRvϿRBQ?WPA`"JJRJ +?NNPNbX9@VB~jt?VBDVBPMbX9i word whoeverVB= ףp=RB1ZdWPV-@DT-NNtVi-1 tag+i word NN spendVBuV?VBDuVi-1 word stealPRP$ʡEPRPʡE?i+1 word brainNNMbINn?JJףp= ?PRP$KRBnҿi-1 word mechanicallyVBNL7A`JJL7A`@i word newportNN\(\NNP\(\?i word phrasingVBG+NN+?i word grapplesVBZRQ?NNSRQi-1 tag+i word VB bulkJJ^I +?NN^I +i-2 word trust VBG rVBD{Gz?RBRQ@JJRQVBʡE?VBNE?VBP?5^I ?JJZd;NN r?i-1 suffix senNNPS{GzNNMbXRBRSNNSx&1NNP{Gz?VBMbX?i-1 tag+i word NNP contractorVBPNbX9NNp= ף?NNPx&ٿi-1 tag+i word NNS routineJJ?NNi word probableNNSB`"JJtV?NN7A`i word punchingVBD+VBGtV?NNjt?NNPZd;Oi-1 tag+i word NNP graceNNZd;O?NNPZd;OͿi word luckierJJR(\?RBR(\i-1 tag+i word NN establishedVBZ333333VBN333333?i-2 word cookingVBNʡE?NNPʡEi-1 tag+i word VBP bumpyINK7ѿJJK7? i-2 word julyVBDX9vVBNCl?EX|?5^?RB|?5^ѿJJ/$?NN/$i-2 word removalJJMb?NNPMbi+1 word blocksVBK7AпNNPn@JJli-1 tag+i word ( pensionNNuVNNPuV?i word peripheralsNNPSRQ@NNPRQi word bioresearchJJQٿNNQ?i-1 tag+i word PRP$ scheduleNNSx&1NNx&1?i-2 word competitorNNoʡ?JJoʡi-1 tag+i word NNP trimVBP"~?NNP"~i-1 tag+i word NNP financeNNPSSNNPS?i-1 tag+i word CD machinistsNNPSw/NNSw/?i+1 word formulatingNN\(\?NNS\(\i-1 tag+i word JJR whoopingJJ~jt?NN~jti word unfoldingVBG+?JJ+i-1 tag+i word DT windshieldNNl?JJlҿi-1 word southeasternRB#~jNNP#~j?i-1 tag+i word PRP stopsVBZX9v?VBDX9vοi-1 tag+i word RB enoughJJ?5^I RBT㥛 @VBN%CNN +?INFxi+2 word fillerVBNCl?JJCli-1 tag+i word , increasedVBNx&JJx?VBDy&1i-1 word undeadVBP(\@NN+NNPSi-1 tag+i word TO senseVBZd;O?JJZd;Oi-1 word hillsVBZh|?5?NNPSxNNS ףp= NN;On?NNPGz i word aidsNNPS㥛 NNSS?RBSNNP㥛 ?i-1 tag+i word CC robotsJJ5^I ۿVB;OnNNSK?NNV-i-1 tag+i word , pieceJJ|?5^NN|?5^? i word sonNNS|?5^NNv/@JJi-1 word repaidRBGzINGz?i-1 tag+i word VBG europeansNNPSy&1?NNS~jtNNP+i+1 word retailerJJV-?NNV-¿NNP|?5^ڿi-1 tag+i word IN farmersNNPS(\տNNS r?NNP5^I i-1 tag+i word CC complexVBsh|?JJsh|??i-1 tag+i word DT courtsNNS"~j?NN"~ji-1 tag+i word JJ cabinetsNN9vҿNNS9v? i word gunNNSx&1NNx&1?i-2 word agencyNNPSx&1@VBDZd;?RBRʡE?JJ r INX9v?NN`"?VBNZd;O߿DTX9vCD+?PRP$|?5^ɿJJRʡEPRP|?5^?VBZx&ѿNNSS?NNPˡEi-1 tag+i word VBG softerJJRZd;?NNZd;i-1 tag+i word , bladderVBP~jtNN~jt? i word darwinNNPSbX9NNPbX9?i-1 tag+i word CC accompaniedVB+VBNjt?JJMbi-2 word handlesNNPSZd;JJZd;?i-1 tag+i word NN randomJJK7?NNK7i-1 tag+i word TO fabricateVBrh|?JJrh|i-1 tag+i word JJ valuedNNS(\VBN(\?i-1 tag+i word VBN plentyJJZd;?NNZd;i-1 tag+i word NN publishingVBGQNNQ?i+2 word repeatedlyNNPS㥛?NNS㥛i+1 word walkwayVBG!rh?JJ!rhi-1 tag+i word `` smallJJ?5^I ?RB/$NNPd;Oi-2 word subordinatedNNSS?NNSi-2 word philipVBZSNNPSy&1@POSS?NNPy&1i+1 word thoughtsVBNʡE?JJʡEi-1 tag+i word DT pistonNNSClNNCl?i-1 tag+i word PRP dubsVBZS?VBDSۿi+1 word hartnettNNPzG?NNzGi+1 word incidentJJ(\CD(\?i word protestVBPtVJJx&1IN/$VBNbX9?NN9v @JJS1Zdi+2 word demographicRBR= ףp=VBP= ףp=?i-1 word recordersVB'1ZĿVBP1Zd?RBMi-1 tag+i word TO neighborJJGzVBS㥛NN/$@i-1 tag+i word NNP yastrzemskiNNPCl?INCli-1 tag+i word DT leveragedJJI +@VBN(\NNsh|?JJRX9vi-1 word leveragedNN?5^I @NNS ףp= ?RBV-JJ/$?i-2 word concedingDTClINCl?i-1 tag+i word `` sesameJJy&1NNPy&1?i word progressesVBZn?NNSni-2 word georgeNN~jtVBDʡEVBm?VBP#~jVBGn?i-1 tag+i word NNS fundingVBP{GzVBG{Gz?i-2 word chemicallyNN+?JJ+i word shootoutRPZd;NNbX9?JJ1Zdۿi+1 suffix eshVBDzGRBR?JJRVBNzG?i+1 word dealersNNP/$VBV-NNPSzGếNN @JJSw/?RBSw/JJEi-1 tag+i word DT oceanJJSʡENN~jt @JJ5^I #i-1 tag+i word -START- shareholdersNNPS(\ڿNNSX9v?NNPSi-1 tag+i word POS no.NNn?NNPni-1 word gaugeNN rh?NNS rhi word twistedJJ @VBNOnRB+VBDGzi-1 tag+i word DT tameJJHzG?NNd;OFWK7A`i tag+i-2 tag WRB CCNN rhVBD= ףp=?JJ@NNSX9vNNPX9v?VB5^I RB9vʿi-1 tag+i word RB damagedVBN!rhJJ!rh?i-1 tag+i word JJ sayVB+VBP+?i word containersNNPS&1?NNSzGNNP$C?i-1 tag+i word DT subsequentJJ{Gz?NN{Gzi-1 word seeksVBZx&ѿNNS?NNSx&?RB\(\JJV-i word grippingVBG(\JJZd;O?NNE i suffix elf PRPMb&@NNSSVB1ZdNNPSClRPSJJ#~jVBZ(\NNPT㥛 пNN-VBDZd;OVBPRB(\i tag+i-2 tag JJR VBNVBDsh|?RPEJJMb?NN(\INE? i word rapidsNNPSzGʿNNPzG?i-2 word organizationINx?DTOn?NNPQ?NNxWDTOnJJQi-1 tag+i word JJ comediesNNSGz?NNGzi word reboundsVBZ$C?NNS$Cӿi-1 tag+i word PRP$ capitalNNףp= ?JJףp= i+1 word cities\/abcNNI +NNPI +?i word bulldozersNNPSjtNNSjt?i-1 tag+i word DT bushelVBNbX9NNbX9?i-1 word bonusesINMb?RPMbi word misguidedVBDK7AVBNp= ףJJ~jt@i+1 suffix bayNNP rh?RBzGJJ9v?NNRQ i word relyVBZ/$VBZd;_@VBPB`"@RB1ZJJh|?5i-1 tag+i word RB suffersVBZ"~?NNS"~i-1 tag+i word CC benefitVBPMbпNNjt@VBDA`"VB'1Zi+2 word becameNN"~VBP/$RBK7A?IN5^I NNP ףp= VBG ףp= ?JJ"~@i-1 tag+i word IN developedVBDS㥛?VBZS㥛VBNˡE?JJˡE i word plungeVB-?NNSHzGNNʡE?JJ+$i-1 tag+i word NN overcollateralizedVBNV-?CDV-i-1 tag+i word DT barrelNNS?RBSi word rivetingVBGrh|߿JJ rh?NNOn i suffix ize VBD"~jVBP|?5^@RBV-VBZ rNNP ףp= JJffffffNNoʡJJR/$INClNNSmVBNbX9 @i+2 word spainJJNbX9?NN +VBDNbX9пCD +?RBMbRPMb?i-1 word senatorsVBP333333?VBNZd;O׿JJ333333VBDZd;O? i word joseNNPSX9vNNPX9v?i+1 word subtleRBRʡE?JJRʡEi-1 word threwRPˡE?RBˡEܿi-1 tag+i word IN irksVBZ#~j?JJ#~j i word pushedRBףp= VBPGzVBN+?JJrh|׿VBD\(\?i-1 tag+i word NN deVBD;OnINS?FWK7A` i word skinsNNSx&?VBZx&i word financialJJlNNNbX9NNPK?i-2 word somersaultingWDTHzG?INHzGi word amendedVBNMbX9?JJMbX9i-1 word repealedRBѿIN?i+1 word gaborJJʡENNPʡE?i-2 word drugsJJ333333NNE@NNSl?i-2 word dizzyingNNK?JJKi-1 tag+i word -START- averageDTHzGNNSZd;NNPMJJZd;_@NNʡERBV-i word volumesNNS+?VBZ+i-1 tag+i word CC presumedVBDsh|?VBN~jt?JJEпi-1 word antagonisticVBNrh|NNrh|?i+2 word shiftsJJ~jt?VBD~jti-1 tag+i word RP somewhatRBK7A`?INK7A`i-1 word somebodyRBx&1JJx&1@i+1 suffix cutVBP333333WDTZd;O?RB333333?DTZd;ONNSK7?NNP= ףp=JJ333333?NNPn?i-2 word riskyVBGz?NNGzi word uniroyalJJffffffNNPffffff?i-2 word brainVBGx&1NNV-?VBD`"?VBNA`"PRPx&JJ~jt@NNSx&?i-1 tag+i word NN quiteVBZ/$RB/$? i+2 word bikeJJRQ?NNQ i suffix KKRNNS ףp= NNP ףp= ?i-1 tag+i word CC createdVBNE?JJE i word y&rCC?5^I ڿUHZd;O׿NN9vNNPPn@i word zalubiceNNZd;ONNPZd;O?i-1 tag+i word VBZ bowlingVBG\(\NN\(\?i-1 word reduceJJ= ףp=NNx&?WDTQ?DT?VBGx?i-1 tag+i word TO bulkNNJ +?JJ"~jVB(\i-1 tag+i word NN vigilNNZd;?RBZd;߿i-1 word thievesVBDK7?VBPvPDTSi-1 tag+i word JJ reviewsNNS5^I ?NN5^I  i word seishoVB rRB/$NN)\(FW?5^I @i-1 tag+i word : downRBףp= ۿINv?NNRQi+2 word normanVBZ-?NN$C?JJ$CVBD-i word weaknessesNNS= ףp=?NN= ףp=ҿi+1 word stopperNNS-NN-?i+1 word amazingRBSv/?JJSv/i-2 word meeting NNPS)\(ԿVBGK7ANNPPn?IN&1NNSE?VB|?5^ڿJJFxNNK7 @VBD(\?RBԿi+2 word supremeNNB`"ٿINp= ףFWbX9? i-1 word raPDTK7VBDK7? i word quotasRBffffffNNP/$VBZffffffNNS;On@NNQi-1 word unionsVBDZd;VBNZd;?JJxֿINx?i-1 tag+i word JJ courtNNS㥛?NNPS㥛i-2 word seizuresNNSK?NNKi word unchallengedVBNMbJJMb?i word outfitsNNS%CNN%C?i-1 word nativeNNPZd;O?NNZd;Oi word saltwaterNNSlҿNNl? i-2 word nov.VBN-?VBD-i+1 suffix atzNNrh|NNPrh|?i-1 tag+i word VBN onlyRB\(\?RPClVBN?5^I ҿJJ(\?INMi-1 tag+i word RBR cripplingVBG1ZdJJ1Zd?i word infringementNN"~j?JJ"~jԿi-1 tag+i word JJ branchNNRQ?JJRQ i+1 word outPRPOn@JJw/ VBZsh|? @NNP+RBQVBN{Gz@PRP$mVBP)\(?RP+VB~jt?VBD{Gz@RBRv/CDV-߿VBGA`" @NNClJJRFx?NNSZd;i+1 word regionsVBPQۿNNSףp= JJClNNHzG?NNPX9v?i+1 word thousandNNK7AJJ%CCDtV@i+1 word noiseJJRx&1JJSx&1?i-1 tag+i word CD paosNNP%CNNPSq= ףp?NNy&1i-1 tag+i word NNP dropNNSX9vNNX9v?i-1 word flabbinessNNS"~ҿVBN$C?NNHzGi-1 tag+i word IN helicopterRBRX9vNNX9v?i-1 tag+i word VBD beforeRBRSRBOnIN r@i+1 word blackhawkJJX9vNNPX9v?i-1 word combinedNNx&1?JJK7A?NNPMbX9i+1 suffix ureVB(\?NNPSjtJJJ +@VBDZd;OJJSV-?VBNRQ?JJR5^I ?VBZZd;?POS(\?VBGd;O RBHzGNNStV޿NNFx?WDT +IN/$?WP|?5^RBSKRBR rh?VBPʡEֿDT'1Z@NNPGzi-2 word systems VBDZd;OJJRGz?VBNQֿVBP#~jVBZX9v?NNSK7VBjtNNPS7A`NNGzJJNbX9 @NNP ףp= ? i word ojiNNPS㥛?CDS㥛i-1 tag+i word NN dioxideNNS㥛?JJS㥛i-1 tag+i word NNP decideFWV-VBQ?VBPQ?NNSVBD7A`i-1 tag+i word IN renaissanceNNP?NN i-1 word corrVBN"~jVBD"~j?i-1 word slashingJJx@RBZd;NNh|?5i+2 word eminentVBZV-?POSV-ڿi-1 word shiedRPtV?RBtVi-1 suffix popRB(\?NNI +?VBD+JJ~jt?INuVRP㥛 ¿i-2 word circumstancesNNPSJ +?NNX9v?PRPZd;JJX9vοNNPtV i suffix tifFWM?VBPNNףp= i+1 word sharedVBGM?NNMi+2 word patelVBPףp= NNL7A`?INʡEi word spankingVBG!rhJJS@NN#~ji word adverseVBClVBGnٿJJx&@NNnVBNMbRBZd;i-2 word weightsVBGQVBZE?NNSENNQ?i-1 tag+i word IN zalubiceNNPZd;O?NNZd;Oi+1 suffix cohVBNZd;?JJZd; i-2 word aidVBNzGNNA`"JJzG?VBGA`"?i tag+i-2 tag `` PRP VBP-?JJS㥛@RBRA`"VBDx&VBN"~j̿RBV-VBZ`"?VB;OnNNQi word curtailVB!rh?NN5^I JJ +i word periodicJJ!rh?NNPS!rh i suffix 700NNSMCDM?i-2 word touristsVBP/$VBNPn?RBq= ףpi-1 tag+i word NNS cathodeVBV-NNV-?i-2 word activeINh|?5?VBG rhWDTh|?5NN rh?i word showtimeJJQNNˡENNPuV?i-1 tag+i word CC actingVBGS?NNSi-1 tag+i word VB overreactingJJq= ףpVBGq= ףp? i suffix innJJ +NNP +?i tag+i-2 tag NNP WDT VBN/$տPOS+VBPףp= NNSV-NNPS/$?VBD/$?VBZm?NNP㥛 VB'1Z?NN{Gz?i-1 tag+i word `` disappointingVBGzGڿJJoʡ?NNmi+1 word cosmeticsNNʡE @RBSMbXJJSMbX?VBP/$?JJZd;ONNSMbXNNP/$VBGffffffi-1 tag+i word NN sheaNNPS= ףp=NNP= ףp=?i+2 word debrisRP9vҿRB#~j?INx&1i-1 tag+i word TO takeVBv/?JJGzNN㥛 i-1 tag+i word -START- aerojetJJ+NNP+?i+2 word missingVBP(\RBCl߿IN#~j? i word ninetyCDS㥛@VBNClNN%CVBD9vi-2 word neighborsNNSh|?5?JJh|?5i tag+i-2 tag VB PRP$RB+NNDl?JJDlѿIN+?i-1 word warmingVBZZd;O?NNSZd;O߿i-1 tag+i word DT perspectiveNN-?JJ-i+2 word dossiersRBGz@JJGzi-1 tag+i word CC schwerinNNPq= ףp?NNPSq= ףpi word mandateVBl?NNףp= ?JJ;Oni-1 word purchasedJJ ףp= ?INuV?RPd;OֿRB/$i-1 tag+i word CC judgmentNNףp= ?JJףp= ۿi-2 word exchangeVBDS㥛VBNy&1NNP{Gz?VBG#~j?NNS$C?VBZNbX9WDTPnVB㥛 ?NNvVBP#~jܿJJ7A`IN?5^I ڿDTl?RBbX9i-1 word fueledRBV-NN rhJJ(\?i-1 tag+i word CC ranVBD333333?NNSmNN~jt i word longer VB1ZdJJ%C RBRlq@JJR@NNSKNNMbRBS@VBZClNNPQbias&PRP$K7A`?``RQ?SYMw/?VBsh|?@UHʡEֿWDT ףp= FWK7A@RPy&1,CCS@RBS7A`INq= ףpVBPA`"?WP{Gz?LS%C?VBG "DTL7A`ePRPMb?NNPo!@WRBS㥛?EX%CNNPS(\JJRS''v/@JJxi@RBRL7A` CDE@NNS-?PDTfffffVBN'1Z VBZHzG?NN{Gz@POSnTOPn@RB(\?MDI +@JJSZd;OVBDʡE $/$?i+2 word elizabethNN/$NNP/$?i-1 word canadiansVBPMbJJ= ףp=VBX9v?i-2 word energyRBKNNSZd;?NNPB`"?VBG7A`?JJm?NN/$VBP/$ƿWDTOn i-2 word toolJJ?VBMbXɿVBG%CNN%C?VBNVBPMbX?i+1 word mosherJJ +޿NNP +? i+1 word mileVBD㥛 ڿNNPZd;?VBPRQNNPS/$VBN㥛 ?i-1 word reasonablePRPv/NN}?5^I?NNPGzi+2 word pageantDT ףp= ?WDT ףp= i+1 word passionJJS?RBSi+2 word craveINjtRBjt? i+1 word arcNNP(\?VBN333333VBDni-1 tag+i word '' leisureNNI +@NNPI +i-1 tag+i word , flowerJJRuVNNuV?i-1 tag+i word DT levelingVBG/$JJR/$NNףp= ?i-1 tag+i word NN deepRBMb?NNMbi-1 tag+i word NNS growingVBGuVNNuV?i-1 word stopsRBq= ףp?NN/$JJB`" i-2 word withNNFx?NNS"~j@CDjtVBGQ@WDT&1@RPʡE?POSL7A`?VBxJJR"~j?VBD VBZHzGDTK7NNPvCC%CRBR(\?IN`"NNPSnʿVBNp= ף?VBP'1Z?RBMbXJJSoʡJJzGڿPDTKRBS/$?i-2 word geraldoNNPSNbX9NNPNbX9?i-1 tag+i word VBG ridJJV-?NNV-i+1 word approvingRPI +RBI +? i word tricksNNSʡE?NNʡEi-1 word bordersVBPGzRBRGz?i word catchingVBGx&?NNx&i word proposesNNSMbX9VBZMbX9?i-2 word requiringNN'1Z?JJVBZV-NNSV-?VBv/VBGZd;? i-1 word wellVBNtVοVBP'1ZRB㥛 @INX9v@DTS㥻VBv/?JJ(\?VBDy&1i+2 word influentialVBZKPOSK?i-1 tag+i word JJ growersNNSS?NNS i word riceVBQNNS%CNN5^I @JJV-i+2 word newsprintNNS1Zd?JJ1Zdi+1 word ranksJJʡEVBGʡE?i+1 word seeksVBD/$WDTm?NN/$?INmi+1 word intermediateNNPZd;?JJʡE?NN`"i-1 suffix ltvVBDtV?VBNtVNNQNNPQ?i-1 tag+i word RB seeVBV-@VBPV-i-1 tag+i word . holdingsNNS(\NNP"~?NNPSy&1?i-2 word incurredVBG?NNi+1 word subcommitteeNNPjtVBD~jtNNPSjt?NN~jt?i-1 word computerizedNN= ףp=?VBG= ףp=i-1 tag+i word NNS predictNNjtVB\(\VBP|?5^?i+1 word multipleVBZʡE?NNS1ZdӿJJh|?5i word anthraxNNSFxѿNN1Zd@JJh|?5 i-1 tag+i word -START- johnstownRBSJJlNNP;On?i-1 tag+i word DT skirmishNNX9v@JJX9v i word ranksVBZ/$@NNSL7A`?VBN!rhNN5^I i word ignoringVBGoʡ?JJoʡi-1 word extraordinarilyVBMbX9VBGJJ~jt@ i+2 word fakeUHGz?RBGzi word miserlyRB(\JJ(\?i+1 word complexesNN(\@JJ(\i word displayingVBG7A`?VBD7A`i-1 tag+i word VBD shiftedJJ5^I ˿VBD5^I ?i-1 tag+i word NNP worldVBZzGNNS+NNv @NNPi word tabloidNNK?NNSV-JJw/@RB +INV-i-1 tag+i word DT commodityNNP^I +?NN^I +i-1 suffix honNNؿNNP?i-1 tag+i word DT porousJJ+?NN+ i word infantNN&1?JJ&1i+2 word studiesDT'1Z?PDT'1ZVBGˡE?JJˡEi-1 word teachPRPjt@NNPjti-1 tag+i word -START- abbieNNMbNNPMb?i word dependsVBZʡE @NNSX9vNNʡEi-1 tag+i word , thinkingNNS㥛VBGS㥛?i-1 word alterJJ|?5^?NN|?5^ҿi-1 word seattleNNPS|?5^NNP|?5^?i-1 tag+i word RB servedVBDʡE?JJʡEi-2 word guideVBClJJCl?i+2 word overboughtJJ~jtNN?5^I VBN(\?i+1 word conditionJJQ?NNQ i word pickVBZ}?5^IVBL7A`?NN/$?JJ/$VBD/$i-1 word sprawlingNNx&?JJx&ٿi+1 word locksNNZd;?JJZd;i+2 word telegraphedJJRGzJJGz?i-1 tag+i word JJ jumboNNSnJJ7A`@NN#~ji-1 tag+i word NNS dragVBPNbX9?NNNbX9i-1 word designerVB~jtVBD~jt?i-1 tag+i word , lowRBףp= @JJףp= i-1 tag+i word DT backbenchJJGz?NNGzi word trafficVBx&1NNw/?NNPw/i-1 tag+i word NN chasingVBGmݿNNm?i-1 tag+i word NNS pastJJ"~j@NNZd;OVBDףp= RBRHzGVBPuVRBNbX9INGz@ i word nixonJJQNNPQ? i+1 suffix ad NN!rh?VBN-DT(\?VBtVοVBP\(\?JJ;On?IN(\NNPZd;ONNPSA`"i+1 suffix upsVBGS㥛@NNMb?JJSV-JJ)\(?NNS\(\NNPˡENNPS|?5^ҿi-1 tag+i word JJ westernJJJ +?NNPJ +i-1 word plottingNN7A`?NNP7A`i word cancelsVBZT㥛 ?VBP rhNNSʡEi+1 word turnoverJJRףp= JJ#~j?NNPi+2 word kerchiefedJJ?NNi-1 word insulinVBNZd;OVBDZd;O?i-1 tag+i word CC publishersVBZS㥛NNSS㥛?i+2 word previouslyNN?VBD(\WDT +?JJ(\?IN +NNPS㥛i-1 tag+i word JJR rapidlyNNStVRBtV?i-1 tag+i word DT mandateNNQ?JJQi word faceliftsNNSOn?NNOn i suffix aa3NNPSMbXJJPn@NNP'1Zi-1 tag+i word , confessesNNSbX9VBZbX9?i+2 word henryNNP^I +?VBDd;OVBNd;O?JJ^I +VBZh|?5?NNSh|?5i-1 word shocksVBN$CӿVBD$C?i+2 word effectivelyVBN7A`?VBD7A` i-1 word shedVBZ㥛 NNS㥛 ?i+1 suffix eonVBPrh|JJClNNrh|?NNPCl? i-1 word 'sVBP`"޿JJ@WP/$?DT ףp= ?JJR'1Z@PRP$&1VBGp= ף?VBDJ + WDT/$VBZNN rh?RBS?VBNMbX9@CDx&1ܿFW'1ZPRPCl?INOnNNPSJ +?RPZd;RB-ֿPDTRQ?JJSMb?POSNNSJ +NNP`"?VBJ +CCK?RBRV-i-1 tag+i word JJ followingVBGrh|NNrh|?i-1 tag+i word RB endsVBZCl?RBCli word bonfireVBNZd;ONN#~j@NNPV-i+2 word surveyedIN$C?VBZ rhWDT$CNN rh?i-1 tag+i word DT vergeNN(\?NNS(\i-1 tag+i word PRP$ bloodstreamNNv?JJvi-2 word liftsVBZ333333?NNS333333i-1 word loadedNNS{Gz?NN{Gzi+1 word turbanJJ(\@NN(\i word accommodatingJJMbXVBGMbX?i+1 word stronglyJJSxRBFx?NNvRBSx?DTףp= i+2 word coughJJR r?JJ ri-1 tag+i word IN overdrawnJJMb?VBNMbпi-1 tag+i word TO iraqVBClNNPCl?i+1 word caseyDTMbXINMbX? i+2 word giveJJlDTjtNNS~jt?NNʡEVBDX9v?VBNX9vWDTjt? i word ordealNNʡE?JJʡEi tag+i-2 tag NNS JJR VBG7A`?VBDA`"?VBPV-?VBˡERBQNNtV޿VBNRBRZd;?JJ~jt?IN{Gz?i+2 word undefinedVBZx&?NNSx&i-1 tag+i word DT paoNNPSS㥛ؿNNPS㥛?i-1 tag+i word NNP eastVBZw/ԿNNPSQRB5^I ?NNP9vi word concedesVBZ?NNSi-1 tag+i word CD megawattsNNSCl?NNCli-1 tag+i word NNP dyerNNI +ƿNNPI +?i-1 word balloonVBZ+NNP+?NNSm?NN+VBD+i word appropriateVB +NNq= ףp RB+VBN)\(JJ?5^I @i+2 word riverRPJ +VBGʡE?NNʡEINJ +@i-1 tag+i word VBZ harderRBRPn?JJSNNERBK7JJR~jt?i-1 tag+i word JJ sedanNNS/$NN/$?i word samplesVBZ rhNNSn?NNCli-2 word requiresJJn?NNni-1 tag+i word DT admissionsNNS(\?JJ(\i-1 tag+i word VB competingVBGMb?NNQݿJJjtƿi+1 word breedingVBV-?NNxֿJJ{Gz i-2 word fellJJK7AINQ?VBsh|?RBGz@JJRMbRBR rhi-1 tag+i word POS pavedVBNoʡݿJJDl?VBD1Zd˿i-1 tag+i word NN dwindledVBN|?5^VBD|?5^?i-1 tag+i word -START- openVBE?INEi-1 tag+i word CC transferVBZ333333VBGz@VBPV-JJR|?5^ڿi word participantsVBNVBDNNSCl?i-2 word foundingVBZX9vNNS\(\?RBףp= ?NN\(\ϿVBD+i-1 tag+i word -START- todayVBNClJJʡENNS+NNPFxRBGzNNI +@i-1 word achieveINEDTE?VBDS㥛VBN}?5^I?JJq= ףpͿ i-2 word mateRB+?IN+i-1 tag+i word CC outsellsVBZV-?INV-i-2 word soulsVBZClVBPCl?i-1 tag+i word VBP suggestingVBG7A`?JJ7A` i-1 word edNNPS= ףp=NNP= ףp=?i-2 word alienatingNN?5^I ?JJ?5^I i-1 tag+i word VBG atopRPjtINjt?i-2 word mackenzieNN/$?VBD/$i-1 suffix affVBZOn?NNSA`"VBn?NN㥛 VBDA`"VBNA`"?i-1 tag+i word JJ dec.$S㥛NNMbX9NNP"~j? i word bataanJJZd;OǿNNPZd;O?i-1 tag+i word VB boostedVBD1ZdVBN1Zd?i+1 word resilientJJR/$ٿVBNnVBDn?RBR/$?i-1 word dryingRP;On?IN;On¿i-1 word exaggeratedJJ+?NNS+i-1 tag+i word NN assaultRPGzNNGz?i-1 tag+i word POS facsimileJJGz?NNGzi-2 word nagayamaNNv/?VBNnJJZd;׿i-1 suffix rlaNNPh|?5?NNPSh|?5i word reporterNN/$?RB(\JJ)\(i+2 word absorb JJ&1?VBDp= ף?VBNd;ONNPSݿVB+׿NNv/VBP+?RB-?VBZw/?i word injunctionVBPSNNS?i-2 word mulfordVBGʡE?NNʡE i word middleNNSQJJR~jtNNq= ףpNNP+?JJn@i+2 word southernersNNL7A`?NNPxNNPS(\?NNST㥛 ؿi+1 word contractorsJJ/$NNPx&1VBDX9vNNK7?VBNX9v?i-1 tag+i word -START- nextRBCl@NNZd;JJQ?NNP;OnIN/$?i+1 word insightsNNPS1Zd?NNP1Zdi-1 tag+i word VB scarceVBS㥛JJS㥛?i-2 word states NNPV-?RPK7?JJv/տNN/$VBN(\?VBPx&@PDTV-߿RB rhINMbVBZsh|?NNSV-ҿi+1 word snakesNN+JJ+?i-1 tag+i word VBZ no.VB5^I ?NN5^I ˿i-1 tag+i word IN affidavitsDTFxNNSFx? i word civicNNS5^I JJ5^I ?i-2 word including VBG/$NN?VBDJ +?RBV-@VBZ/$NNPSMbP?JJCl?VBN/$JJR rh?VBPMbNNSMbNNP1Zd˿i-1 tag+i word NNP speakerNNPK7?NNPSK7NNT㥛 ?VBDT㥛 i-1 word proxyNNx?JJxi tag+i-2 tag PRP WPMDClNN^I +VBDˡE?VBPCl?RBZd;O?INGzVBZ333333i-1 tag+i word CD strongestJJSHzG?NNHzGi+2 word blockNNS+?JJR5^I RB +JJQ?i-1 tag+i word RBR apartRBMb?NNMbi-2 word lexingtonJJ9v?NNP9vi-1 tag+i word POS eggNNP^I +NNOn@JJ(\i-1 tag+i word NNP mineNNFx?VBDFxi-1 tag+i word NN lendingVBGV-NNn@VBZ7A`i-1 word tenantVBZ-?NNSSNNx&1i-2 word cornerJJK@NNKi word trottedVBNd;O?VBDd;Oi-1 tag+i word -START- actuallyRBˡE?NNPˡEi-1 tag+i word TO punishVB{Gz?JJ{Gzi+2 word specialistsJJjt?NNjtRB(\IN(\?i-1 word australiaVBZ rh?NN rhi-1 tag+i word , homeNN%C̿NNP%C?i-2 word properlyRB^I +?NN(\?INMi-1 tag+i word , echoedVBP(\VBD333333?VBZq= ףpi-1 tag+i word JJS !DIGITSNNSq= ףp?CDq= ףpi-1 word ladiesRBRMbпVBffffffVBP;On?i-1 tag+i word RB overdueJJv/@RB~jtVBNmi-1 word limitsVBP"~jRB"~j?i-1 tag+i word IN tiananmenNNP?5^I ?CD?5^I i-1 tag+i word CC censorshipNNDl?JJDli-2 word francsRB(\?JJV-?NNV-׿IN(\i+1 word regulatingJJRn?RBRni-1 tag+i word NNS seeVBP~jt?VB~jti-2 word cananeaVBG(\?NN(\i-2 word disputesNNPSM¿NNPM?i-1 tag+i word VB limbVBKNNjt?JJ#~ji-1 word argumentVBZ#~j?NNSA`"ۿNNSRBMbȿ i word toeNNSʡEƿUH9vNNGz? i word slewRBtVNNtV?i word repurchaseJJK@VBx&$MNNKVBDw/@i+1 word burbankVBGmݿJJK7?NN\(\NNPd;O?i-1 tag+i word `` managementNN^I +?NNP^I + i word eventsNNPSS㥛NNSS㥛?i word extraditionNNS?JJSi+1 word skepticalRBsh|??JJsh|?VBSVBPS?i-1 tag+i word DT upRPS㥛RBx&1?INZd;O߿i-1 tag+i word NNP pointsVBZV-׿NNSV-?i word sellingVB/$տNNx&1@VBGuV?VBNJJCl i-2 word voteNNPSnRBX9v?NNbX9JJX9vNNP ףp= ?VBp= ף?i word lockingVBGL7A`?NNL7A`i word evidencedVBNS?JJS i word sportVBPDlNN%C?JJCl i-2 tag CCRBCl?VBnJJv?VBZ9v?NNSDl?CD|?5^?PRP$rh|?VBGjtJJRx&1?FWPDTK7ARBS1Zd?NNPS/$?UHA`"ӿRPGz?NNjtƿPOS1ZdIN ףp= VBNCl?VBPʡE?WDT/$?PRPHzG?CCT㥛 ?RBRK7A`NNPMb?WRBv?VBD+WPFxDT5^I ?EXʡEJJS/$? i+2 word katzJJHzGNNPHzG?i-2 word totalsRB&1?JJ&1i word eagernessJJRB&1NNS@ i-2 word jimNNPS}?5^INNP}?5^I?i-1 suffix igoVBZZd;O?VBPMbXNNSZd;ONNMbX? i+1 word wppVBZMb?NNPMbi-2 word capacityVBPCl?VBNrh|JJQVBDrh|@VB~jt?i-1 tag+i word IN forcedVBDX9vVBNl?JJ +޿i-1 suffix soxVBZClPOSCl?i-1 tag+i word VBD highRBK@JJKi-1 tag+i word JJ aviationNN+NNP+?i-1 tag+i word RB weakenVBFx?VBPFxѿi-1 tag+i word DT lidNNbX9?JJbX9 i suffix UAWNN333333NNP333333? i-2 word hardVBK?VBG+?RBK7NNQVBNVBPS㥛JJGz i-2 word mindVBZ/$VBGV-?NNV-CD/$?i+2 word diamondRBSʡE?JJSʡEi+1 word heinzJJ|?5^NN|?5^?i-1 tag+i word DT dirtyJJS?NNSi word gnawingJJT㥛 VBGsh|?NN-@i-1 tag+i word NNS viewedVBPMVBN~jt?VBDS㥛ܿi-1 tag+i word -START- secondJJV-?NNA`"UHoʡLSn?RBy&1NNPi-1 tag+i word NNP officialNN333333@JJ%C NNPʡEi word continuallyRBK7?VBPK7i+2 word financingsRBQ˿JJV-NNPZd;?i word aeternaFW1Zd?NN-JJi-2 word malefactorsVBGK7A?NNK7Aؿ i+1 word voidVBNffffff?VBDffffffi-1 tag+i word , leadVBP= ףp=RB"~VBZd;O?JJh|?5@NN`"VBNX9vi-1 suffix ngsPDT(\VBP"~jVBd;OVBD-˿NNSV-?VBNS?VBGCl?RBK7A`տINl?DT%CNNPuV?WDTS㥛?VBZT㥛 NNPS+ۿRP"~j?JJZd;ONN^I +?JJRX9v?i-2 word mortgage RBR?5^I ?JJ;OnRBףp= ?NNV-VBD"~?VBN/$VBPx&@NNS(\@NNP(\ i word headsNN㥛 VBD!rhVBZ"~?VBP^I +NNS/ݤ@i-1 tag+i word NNP orchardNN(\ڿNNP(\?i-2 word publicationsRBQINQ?i-1 tag+i word DT neighborhoodNN7A`?JJR1ZdJJh|?5i+1 word deficiencyNNnJJn?i+2 word historicallyNNSjt?NNjti+2 word active VBDA`"?JJRˡEܿVBNA`"WDTV-?RB-INzG?VBZJ +RBRˡE?POSJ +?i word dilutedVBNjt?JJˡEVBDZd;O?i-1 tag+i word POS apparatNNS%CԿNN%C?i word thievesVBZV-NNSV-?NNPq= ףpͿi-1 tag+i word CC musicianNNK7?JJK7i-1 tag+i word PRP valuesVBZ-?VBD-ӿ i suffix ikeDT|?5^ٿCDx&1NNSuV NNPZd;OVB;On @RP~jtINfffff#@JJRx&VBD/$RBRlVBN(\NN rh?VBPx&RBL7A`@JJʡE?i-1 tag+i word NN fundedVBN(\JJ(\?i-1 tag+i word POS rulingVBG +ֿNNw/?JJM i word ritzyJJPn?NNq= ףpNNPMbXi-1 tag+i word RB getVBP rh?VBN㥛 NN+INClVBsh|?@i-1 tag+i word VBZ danceVBPA`"˿NNA`"? i word spasmsNNSGz?NNGz׿i-1 tag+i word VBG separationNNMb?JJMbi-1 word nowhereVB?VBPRB(\?JJ}?5^IINZd;i-1 tag+i word NNS scrambleVBA`"ۿVBP7A`?JJx&1i+2 word collapseNNS(\VBN$CNNMbVBD$C?NNPOn?i word trespassesNNS1Zd?NN1Zdi-1 tag+i word IN glitzyJJX9v?NNX9vi-1 tag+i word `` summerfolkVB|?5^JJmNN~jtNNP +? i word beyondNN ףp= NNPʡEINGz@i+1 word negotiationsINuVտVBGA`"?RPuV?NNV-VBDL7A`?VBNn?JJn i-1 word easyCD|?5^ʿVBPRQJJQ?NNSh|?5NNPI +?NNPS +NN!rhi-1 tag+i word PRP knowVBPnVBPPn?i+2 word emergeNNS rh?NN rhi word mcdonaldNN-NNP-?i-1 word sprayVBZV-?VBPV-NNSV-VBNB`"ɿVBDK7?i word provingVBG}?5^I?NN}?5^Ii-1 tag+i word WDT moreJJRQ?VBZQi-1 tag+i word CD ruminatedJJHzGVBDHzG?i-1 tag+i word JJ denyVBPV-?NNV-Ϳi+1 word sihanoukVBZSMDZd;?JJA`"i-2 word showtimeNNQӿJJʡE?NNPDl i word tassNNPK7A`?NNK7A` i-1 tag+i word -START- estimatedJJy&1@VBDy&1NNPh|?5VBNv/i-1 word challengeRB +?IN +i-1 suffix olfNNPSZd;NNClVBDM?VBNMVBZMb?NNSS㥛?NNP|?5^?i word cellularNNSRQJJ#~j@NN;OnNNPʡE?DTCli+2 word protectsNNx&?JJx& i+1 word roleVBPDlWDT\(\?JJ&1?WP\(\NNSV-׿VBGv/?NN&1VBN!rh?i word entertainingJJMbX@NNK7VBGGzi-1 word youngNNP|?5^NNPS'1Z?NNV-VBP(\@JJ"~jNNS(\?i-1 tag+i word DT bugabooJJSlNNl?i-1 suffix oydVBZʡE?POSʡEi word ismailiJJxNNPx? i+2 word uses NNPSnڿVBG1ZdNN"~?JJR{GzRBR{Gz?VBT㥛 пJJoʡ?NNSS㥛?NNPlVBNClۿi word interimNN rhѿJJ rh?i word justifyingVBG+?NN+ i word hmongNNPSw/?NNPw/i word foremanNNPn?JJPn i-2 word away PRPGzPRP$Gz?VBDA`"NN㥛 RBS"~jVBNT㥛 VBP$C?JJʡE@VB/$i-1 tag+i word NNS deepJJK7RBK7? i+2 word townNN7A`RB&1?CD/$JJM@RP&1ʿi-1 word chilmarkNNPSQNNPQ? i word nasdaqJJmNNPm?i-1 tag+i word NN desirableNNSRBtVJJ"~?i word fitzsimmonsNNPS7A`NNP7A`?i-1 tag+i word NN snatchersNNPS㥛 ?NNP㥛 ҿi-1 tag+i word -START- takeoverNNP&1NN|?5^@IN9vi-1 word unpublishedVBNZd;O?JJZd;Oi-1 tag+i word NN coursesVBZv/NNSv/?i-1 tag+i word CC orientalJJx?NNPxi+1 word manufacturesJJFxNNPFx?i+2 word enhanceVBZ rNNS r?i-1 tag+i word '' hortonNNPJ +?NNJ +i-1 tag+i word `` liberaNNPoʡFWsh|??NNEi+2 word consolidateVBNOn?JJOni+2 word dioxideJJx?RBMbINMb?VBDxi-1 tag+i word WDT bondholdersVBZ333333NNS333333?i word listlessJJ@NN)\(RBRzG i suffix KEDVBDm?NNPmi-1 tag+i word PRP shapeVBPuV?VBDuVi-2 word audioWDTq= ףp?RBp= ף?NNp= ףINq= ףpi-1 tag+i word JJ holdingVBGzG?JJ7A`NNSݿ i word fleasVB(\NNS(\?i-2 word falconRB(\?IN(\i-1 tag+i word IN sunriseNNS?JJSi-1 tag+i word `` clutterJJRQNNRQ?i tag+i-2 tag , WPVBPSINS? i-2 word adIN\(\VBZ +?NNSV-?VBD rhPOSGz?VBN rh?VBP\(\?RB\(\ i word ratesVBZCl׿NNPSCl?NNS%C@NNZd;NNP/$ i-1 tag+i word NNS muchJJK7ARBK7A?i-1 tag+i word NNS shyVBQ?VBPh|?5VBDʡEi+1 word playingNNS/$?NN5^I RB/$JJ5^I ?i tag+i-2 tag , RBR NNMb?RBR-?JJR-IN㥛 ?VB;On?JJ$C?VBD"~j̿VBP9vVBNjtRB"~i+1 word indefinitelyVBNbX9 @VBPI +VBNsh|?RBni+2 word conventionJJn?NNPni-1 tag+i word NNS sweatVBPx&1?NNx&1 i suffix SinNNP/$?VBNbX9JJV-ͿFW?5^I i+1 word recombinationRB~jt?JJ rPRPNbX9i+1 word imports NNB`"@CCףp= @VBPtVDTףp= NNP!rhVBK7VBNbX9ֿJJV-?INQ?i-1 tag+i word DT disappointingVBGףp= JJDl@NN`"i-1 tag+i word NNP skyscraperVBZ+ǿNN+? i-1 word moreCC333333IN/$?NNPSoʡ?RP333333VBG(\ NNS(\@JJ+@NN\(\VBDy&1NNP= ףp=VBOnJJR rhVBN{GzRBZd;O@i-1 tag+i word -START- toniNNPx&1?CDx&1i-1 tag+i word IN bataanJJZd;OǿNNPZd;O?i word stalloneNNPSZd;OǿNNPZd;O? i suffix .N.VB㥛 NN+RB+NNPS@i-1 tag+i word IN mailNNPn?JJPni-1 tag+i word JJ lowerRBRZd;O?NNClJJRQ?i word o'dwyerNNP|?5^?NN|?5^ѿi word flooringVBG~jtпNNn?JJ/$i word columnistNNK7A?JJK7Ai-1 tag+i word TO manufactureVBףp= ?JJRףp= i+2 word boostedNN333333@JJR5^I JJL7A`i-2 word margolisVBGI +?NNI +i-1 word outlookINSRBS?i-2 word cooperativesVBGS?NNSi-1 tag+i word IN sidNNK7A`ݿNNPK7A`?i-1 word broaderJJh|?5?NNh|?5i+1 word obsessionNNSx&1VBNClJJ|?5^? i-2 word desFWMb?INMbi-1 tag+i word NN vaccineNN r?NNS ri-1 word servingNNK7?RPK7RB\(\?JJn?INCli+1 word kirchbergerRBRZd;JJNNPffffff?i-1 tag+i word DT gridNNSx&1ԿNNS㥛?JJQ i word brosNNPS(\?NNP(\i-1 tag+i word JJS upheavalVBNZd;ONNZd;O?i+2 word thirdsNNQ?NNPQi-1 tag+i word VBN highJJMҿRBM? i word dutchNNPSffffff?JJQ@NNʡENNP;O i word hiborNN!rhNNP!rh?i-1 tag+i word RB trainedJJ1Zd?VBD1Zdi-1 tag+i word -START- isaacJJ{GzNNP{Gz?i-1 tag+i word TO briefVBV-?JJV- i word payingNNPףp= VBGףp= ?i+2 word portfoliosVB +?JJ +i+2 word contractionsJJK?NNKi-1 tag+i word DT bookkeepingJJ +޿VBGzGNNx&?i word sheddingVBGˡE@NNClJJA`"i+1 word legallyCC%CܿDT333333@PRPffffffRBT㥛 i word slammedVBP㥛 VBD㥛 ?i-1 tag+i word NNS ascribedVBPrh|VBNB`"?VBDMbX9i-1 word equipmentVBN7A`@VBPʡE?WDTZd;@INZd;NNPʡEVBG?NNVBD7A`i word beneficialJJ ףp= @INX9vVBNJ +NNnNNP}?5^I?i+1 word meetingsNN|?5^INCl?DTClNNP"~jJJ1Zd @i-2 word artificiallyJJDlNNDl?i+2 word tighterVBZ'1ZNNS'1Z?i-1 tag+i word JJ rivalNNS)\(NN ףp= ?JJ?i+2 word disputedDTn?WDTnNNP\(\?CC\(\ i-1 word jazzVBPMbX9NNMbX9? i word blindJJMbX?NNMbXi-1 tag+i word NN servicesVBZnNNPSn?i-1 tag+i word NNS concreteVBPʡENNʡE?i-2 word meringuesVBGGz?NNGzi-1 tag+i word DT proposalNNPClNNCl?i-1 tag+i word VB fitnessNN9v?RB9vi+1 word refineryJJ5^I ?NN5^I i word naturalJJ/$NNP/$?i-2 word anotherWDTp= ף?VBZI +޿IN?DTQNNPѿRBS㥛?VBDV-POSV-?''~jt?VBNˡE@NNPSMbNNffffff?NNSl JJRSVBS㥛?VBG?RBRS?VBP rhٿJJbX9 i+1 word cars VBQſRBRx&CDM?NNS~jtJJRuV?NNP~jtNNPSVBGK7?NNoʡ?VBDrh|VBNV-JJq= ףp? i suffix bugVBZx&1NNx&1?i-1 tag+i word POS dozenNNGzNNPGz?i+2 word wolfgangVBGK7NNK7?i word pocketbookNNʡE?JJʡEƿ i word dummyNN333333?JJNbX9?FW/$i-1 tag+i word NNP ageRB+NNP+?i word analyzingVBG333333?JJ333333i-1 tag+i word JJ moderateJJGz?NNGzi-1 word sunriseJJ/$NN/$@ i word damperNN{Gz?JJ{Gzi-1 tag+i word NNP commercialsVBZGzNNSGz?i-1 tag+i word IN finlandNNI +޿CD-NNP~jt?NNPSZd;i-2 word puddingCC!rh?JJ!rhi+2 word however VBP)\(?RB-VBL7A`JJjtNNQ@NNSffffff?NNP/$?RPE@VBNlVBZV-i-1 tag+i word NNP planningVBGףp= NNMbPNNPZd;?i+1 word smellsNN ףp= JJbX9RBx?i-1 tag+i word DT midsizedJJS?NNrh|VBNV-߿i+1 word maritalVBrh|NNx&1ȿINCl?JJx&1?DTzGếi-1 tag+i word , clubNN ףp= ?JJ ףp= i-1 tag+i word VBD experienceVB㥛 ?RB㥛 %i-1 tag+i word JJ chlorofluorocarbonsNNS}?5^I?VBZ}?5^Ii-1 word marylandJJʡENNPʡE?i-2 word bracingJJRGz?RBRGzi tag+i-2 tag VB EXVBNK߿VBDK?i-1 tag+i word NN goesVBZL7A`?NNSL7A` i word limpJJrh|?NNrh|Ͽi-1 tag+i word DT tenorNN!rh?JJ!rh̿i-2 word reliesNNSMb?JJh|?5NNQi word anesthetizedVBDK7JJK7?"i-1 tag+i word -START- predictionsNNPSClѿNNSCl?i+1 word projectsNNOnJJRV-?JJFx@INvNNS\(\NNPx&VB}?5^I̿RPv?i-1 word sociallyJJx?NNxi-1 tag+i word `` formVBV-VBPOn?VBD ri+2 word challengesNNSnNNGzVB#~j?i+2 word affidavitVBNQJJQ?i-1 suffix ostVBNbX9?''GzVBPn?RBSrh|?JJSrh|PDT~jtCDnVBDv/WDT|?5^POSGz?PRPʡE?RBJ +?NNS}?5^I?INS?VBGT㥛ĠDT+@NN%C?NNPSQ?RBR(\JJR(\?PRP$ʡEVBP/$?JJw/?VBZK7A`RPZd;NNP'1Zܿi+1 word maniacVBG`"JJ`"?i-1 tag+i word DT growingVBGw/ @NNQJJrh|i-1 tag+i word VBZ conistonNN-@NNP-i+2 word essentialNNPʡE?NNPSʡEi-1 tag+i word VBN beneficialJJM?NNM"i-1 tag+i word -START- renaissanceNNMbRBL7A`堿NNPx?i-1 word panamaVBZT㥛 NNT㥛 ?i-1 word disclaimsVBGV-?NNV-i-1 tag+i word NNP tapeNN?JJi-1 tag+i word DT pediatricianNN/$?JJ/$i-1 tag+i word DT philippinesNNPS(\@NNS㥛 NNPSۿi-2 word profitINS@CC/$ѿVBNd;O޿RBR`"?VBPx&ٿVB?5^I @DTbX9?JJR`"ֿVBGClJJS?RBzG?VBZV-NN(\VBDK߿i+2 word examineMDy&1?NNVBPy&1JJ?VBZMbX9NNSMbX9?i-1 tag+i word NN purportsVBZ/$?NNS/$ i suffix gorNNzG?NNP?NNSq= ףpi word chillingVBGJJ? i-2 word fuelNNn?JJni-1 tag+i word -START- menNN#~j?NNP rhNNSMbX9?i-1 tag+i word DT offeringJJQVBGbX9NN^I +?i-1 tag+i word PRP$ continuedVBNsh|?JJsh|??i+2 word footingRBRMb?JJRMbпi-1 tag+i word DT clinicalJJ-?NN-i-1 tag+i word DT economistNNPS?5^I ҿNNNNPZd;O?i-1 tag+i word TO aggravateVBMbX9?JJMbX9i-1 word meddlingWDTX9vINX9v?i-1 tag+i word VBD takeoversNNSn?RBni-1 tag+i word NNP convertibleNNv/?JJv/i-2 word novemberVBNQ?NNtV?VBDQVBGtVi-1 tag+i word TO claimVBGz?NNGzi-1 tag+i word -START- tonyJJvNNPv?i-1 tag+i word JJ mercuryNNtVNNPtV?i word machineryNNSJ +NNPMb?RBp= ףNN/$@VBDףp= JJ\(\i-1 tag+i word PRP$ costsVBZ(\NNS(\?i-2 word confidentialIN rhݿNNP rh?i-1 tag+i word -START- sometimeRB^I +?NNP^I +i-1 tag+i word DT tinyJJV-?NNV- i-1 word noneIN-?VBZ-?NNS-RBRZd;JJRCl?JJ+i+1 word publishingJJA`"?NNףp= NNPMbXVBGm?i-1 tag+i word WP flewVBx&1VBDx&1?i-1 tag+i word JJ sleddingNNM?JJMi word promptedVBD@VBNNbX9JJˡEi word vulnerabilityNNCl?NNPCli+1 word principlesJJV-?NNV- i suffix ift VB ףp= @JJvNNS5^I NN?5^I @VBDQCCjtĿVBNSVBP|?5^VBZMb`NNPjti-1 suffix ejaNNV-?RBV-i-1 tag+i word DT populistNNT㥛 JJT㥛 ?i word offenseRPClNNCl?i-1 tag+i word -START- sureNNPy&1ܿRBsh|??JJGz i suffix 190JJMbXCDMbX?i-1 word snapsNNSx&1?NNx&1i-1 tag+i word DT poisonJJ/$NN/$?i-2 word intendedVBGx&RB5^I NNx&@JJףp= VBCl? i+1 word t.VBNZd;NNFxNNP-?i-1 tag+i word RB wearVBv/NNv/@i word syndicateVBSNN#~j@JJ rh i suffix othVBDL7A`PDTMbX9@JJ-VBZ+NNSDlNNPjt?CC/$@NN= ףp=VBN#~jVB\(\RPuVJJRA`"CDJ +?VBPX9vIN;OnDTy&1,+@i-1 tag+i word NNP postedVBN1ZdJJxVBDx&?i-1 word refundVBZq= ףp?RBq= ףp i+1 word firm VBZd;CDGzNNPMbؿVBGENNQ?VBN~jt?JJ^I +@VBZrh|ϿNNSL7A`пi-1 word dismissedJJ5^I ?NN5^I  i+2 word arbyVBN~jt?JJ~jti-1 tag+i word NNP mainframesVBZI +NNSjt?NN/$i-1 tag+i word , materialJJMbNNMb? i word invadeVBˡEVBPQ?VBN +i-1 tag+i word JJ helpVBGz?NNGzi-1 suffix ordJJX9vRP㥛 NN#~j?VBP(\VBNGz?CDZd;?NNPffffff?VBʡE?PDTZd;׿RBRClVBDʡE?POS5^I WDTsh|?IN rh?VBGS˿DTffffff?VBZB`" @RBL7A`NNSx&1i-1 tag+i word CC offersVBZp= ף@NNSp= ףi-1 tag+i word JJR varyVBP\(\?RB\(\i-1 word hospitalVBZ9vNNSCl?NNPClVBDQ?VBN7A`POS9v?i-1 tag+i word IN disgustNN~jt?JJ~jt i+2 word porkNNSw/NN'1Z?RBףp= i-1 tag+i word -START- fewNNPMbJJGz@NNL7A`пPRP\(\RB-INV-NNS-i word goodwillNNS^I +NNx&?NNPA`" i-1 word boldJJ/$?RB/$i+2 word overweightVBGB`"@NNMbXJJ#~ji+1 word blitzesJJ'1Z?NN'1ZĿ i word boomRBPnVBh|?5?NNSQNN/$?i-1 word practicallyVBPHzG?VBNHzGٿi-1 tag+i word -START- councilNNQ?NNPQ i pref1 iVBGQ?VBD= ףp=SYMMbX9UHX9vRB&1 @VBQ@PDTVBNZd;O?VBPuV @VBZMb@NNx@LS ףp= INV-?NNPSV-JJSPnJJR7A`FWy&1?JJI +@RP+CC(\CDV-NNSx&@PRPT㥛 RBS-RBR(\NNP?5^I+ i-2 word sonVBDףp= ?RPffffffVBNףp= RB rh@INDlٿi+1 word unawarenessVB)\(NN)\(?i word farmersNNPS+NNSDlNNPfffff@i-2 word contractorPRP$x&1PRPx&1?i-2 word acceptedJJMbX?NNS|?5^NNP1ZdNNPS(\?NNVBD'1ZVBNv?i-1 word classifyRB rIN r?i+1 word surprisesNNSffffff?VB%C?NNPSw/WDTV-JJ%Ci-1 tag+i word CC ethnicVB&1VBNClJJS㥛?i+2 word housingVBG= ףp=ڿVBNn?JJ333333VBDˡENNzG@i-1 tag+i word WRB boeingVBG)\(?NNP)\(i-2 word psylliumRBVBI +JJJ +@JJRʡEVBN5^I ?VBPPni-1 tag+i word NN traffickingVBGSNNS?i-1 tag+i word NNPS threateningVBGvJJv?i-1 tag+i word JJ longJJ!rhRBx&1?NNPףp= ?i-1 tag+i word -START- talesNNPq= ףpIN㥛 NNS?5^I ?i-1 tag+i word , shallowerJJRrh|?NNrh|i-2 word isolatedJJw/@NN(\VBGV-i+1 word spectacularRB~jtx?JJ~jtx i suffix iptNNV-@RBNbX9JJ\(\?NNSףp= i-1 tag+i word JJR appropriateJJ{Gz?NN{Gzi-2 word beforeJJ$C?VBZnRBV-VBDףp= ?NNPPnVB+NNK7A?VBPS㥛?NNPSI +VBGʡEJJSq= ףp@VBNMbX?POSn?NNS + i suffix PWANNPK@NNPS1ZdNNL7A`i-1 tag+i word PRP$ telexNNFx?JJFxѿi-1 tag+i word -START- southJJ-RBmNNP@i word comprehensiveJJ9v?NNI +NNP|?5^?i+2 word mercuryVBl?VBPli-1 tag+i word JJ atomsNNSS㥛?RBS㥛i-1 tag+i word RB respectNN+?NNP+ۿi-1 tag+i word JJ unrestNNSxƿNNx?i+1 word concerns VBDnVBNK?RBS㥛пINuV?VBG rNNPSmJJQ@NNjtNNP`"PRP$ffffff?RP rhPRP+i+2 word postedJJjtNNB`"?RBX9v?NNP1Zd?i tag+i-2 tag JJ WRB WDT$CRB"~VBZ= ףp=DTMb@VBGA`"JJZd;?NNZd;?VBN"~?NNS= ףp=?IN5^I NNPV- i-1 word saveRPl?JJZd;ORBtVi-1 word highlyJJK7A@RBQNNGzVBN9v?i word airplaneNNS +NN +?i word sidhpurNNʡENNPʡE?i-1 tag+i word NN lacksVBZV-?NNSMbVBD333333i+2 word leastDT%C?RPK7A`?RB"~?NNQVBDOnJJB`"?INT㥛 VBGv/?i+2 word norwayNNPSd;O?VBZd;Oi-1 tag+i word `` peanutsNNSoʡNNjtԿNNPףp= ?i-1 tag+i word JJ capacitorsNNS"~?NN"~i word underwriterNNT㥛 @JJKRBS㥛i-1 tag+i word RB riskVBPCl?NNd;OVBDK7A`i-1 word professionVBh|?5@VBPh|?5i-1 tag+i word NNP travelsVBZMb?NNSMbi word fathersNNPS(\NNS!rh@NNPKi-1 tag+i word NNP lotNNPSˡENNˡE?i-1 tag+i word VBD greekJJffffff?NNPffffff޿i-1 tag+i word TO officialJJ~jt?NNS㥛ԿVBʡEi-1 word herselfRBʡE?VBDx&1?RPʡEVBNx&1i word disclosureNNS㥛?JJsh|?NNPi-1 tag+i word -START- nursingVBGRQNN)\(NNP?5^I ?i-1 tag+i word JJS earringVBG(\ȿNNh|?5?JJ+i-1 tag+i word JJ deadlineJJ333333NN333333?i-2 word helpingVB`"?VBN`"i-1 tag+i word VBG granularJJm?NNmi word controversiesVBZZd;NNSZd;?i-1 tag+i word `` departureNN(\?JJx&1NNP|?5^i-1 tag+i word DT sweetenedVBN7A`?JJ7A` i word ballyRB ףp= NNNNPq= ףp @i-2 word historicallyNN(\?VBN(\ؿJJS?VBDQ i-2 word gene JJI +VBZE?NNS㥛 ?RBS㥫?JJRV-CD333333?IN= ףp=NN|?5^ VBDGzVBN)\(?i+1 word sinceVBNHzG@RBZd; @NNPS|?5^ٿVBG +οJJ)\( NNMbX@NNSv@WDTOnVBZ/$INx&1?RP&1DT~jt VBDL7A`CDh|?5VBPSNNPV-?i-1 tag+i word PRP$ presentJJNbX9@NNNbX9i-2 word contributedJJ'1Z?RB +NNMb?CDCli-1 word oaklandFWClNNPSoʡPRP\(\NNoʡ?NNPoʡ?i-1 tag+i word NNS produceVBjtVBPn?JJ rhi-1 tag+i word RB uneasyJJMb?RBMbi-2 word comes JJRʡEWDTsh|?NNPMbX9VB +VBGZd;O?NNHzGRBRʡE?VBN?5^I JJ rh@INsh|??NNSףp= ?i-1 tag+i word -START- magneticPRP$KJJK?i-1 word rebuildingDTK7A`?INK7A`i-1 tag+i word NN agentNN/$?JJGzINrh|i+2 word musicianNNS㥛 NNsh|??JJ+i-1 tag+i word , strikesVBZMbX9NNS-?RBJ + i-1 word halfIN#~jDT r?RPI +JJS@NNS㥛VBDI +?VBNI +RBvi+1 word showersJJ?5^I ?NN?5^I i-1 word londonRPMbRBffffff?RBR-?VBDJ +?VBP"~?JJR-VBZtV?VB-ۿNNPSPn?NNZd;O?JJʡE?NNS rhVBN~jtVBGd;OCDZd;NNP#~ji-1 tag+i word VB reinvestmentNN ףp= ?JJ ףp= i+2 word rangingNN}?5^I?NNP}?5^Ii-1 tag+i word VBP knowVBNbX9?NNSNbX9i+2 word credibleRBRGz?JJRGzi-1 word websterFWjt?INjtĿi-1 tag+i word : makeVB\(\?VBP\(\i-1 tag+i word DT manufacturersNNPS~jt?NNP~jti word renaissanceNNʡE RBL7A`堿NNP`" @i-1 word statelyNNPnNNS?VBNSJJn?i-1 word incurJJ= ףp=?NN= ףp=i-1 tag+i word JJ tumblingVBGn?NNni-1 tag+i word VBD plumbingVBG#~jNN#~j? i word tendVBv/?VBPMb@NNx&1i-2 word ashoreVBG'1Z?JJ'1Zi+2 word attention VBA`"NN rh?VBDx&1?RBR7A`VBPV-?JJ rhJJR7A`?RBQ?VBZ~jti-1 tag+i word WRB lionNN/$NNP/$?i-1 tag+i word VBP tiesNNSCl?VBNClѿi-1 tag+i word CC slumpingNNٿVBG? i word gripesVBZX9v?VBPmNNSbX9?NN!rh i suffix sfyVBK7A`?JJK7A`i-1 tag+i word NNS haulVB\(\?VBPPDT(\i+1 word decidedNN`"?FWQNNPjti-2 word superstarsNNbX9?FWbX9i-1 tag+i word NN payoutNN(\?RB(\i-1 word honorNN ףp= ?JJ ףp= i-1 tag+i word NN packagesVBZ)\(NNS)\(?i-1 tag+i word TO listenVBNV-VBV-?i-1 word beneficialVBGp= ףؿJJV-NN?NNSV-?VBPGz i+1 word roadVBPzG?NNSX9vJJ/$?NNp= ףi+1 suffix bobVBZZd;RBd;O?VBNFxJJd;OVBDy&1? i+2 word sell VB`"?NNPST㥛 VBDM?JJ&1NNS333333RBJ +NNx&VBNʡE?VBPq= ףp?VBZzG@DTQ?NNP?i word opportunitiesVBZx&NNPS#~jNNS/$?i-1 tag+i word NNP lovedVBNKVBDK?i-1 tag+i word : wrongJJq= ףp?RBq= ףpտi word stalledJJV-ݿVBDV-VBNZd;?i+1 word known RBS~jt?VBPMbJJMNNSRQ?JJST㥛 RBMbPNNGz @VBZ/$ӿNNPSv/i word shortageflationNN~jt?NNP~jti+2 word magazinesNNSQJJ"~j@NNʡEVBD)\(VBN)\(?i+2 word uncertainty NNSI +?JJRS?JJQ?NNNbX9RBRSVBPMbX9?RB?IN\(\VBZMbVB-?i-1 tag+i word RB drawnJJK7VBZd;ONNSp= ףпVBNʡE@ i pref1 \NNS9vNNFxJJ+SYMMb @i-1 word incorrectlyVBN(\VBD(\?i+2 word trespassNNS1Zd?NN1Zdi word mutilatedVBN9v?JJ9vҿi tag+i-2 tag VB VBZVB= ףp=?RP+JJv?NN ףp= ׿VBN?5^I ?RBSIN+?i-1 tag+i word WDT !DIGITSCD(\?NNP(\ؿi-1 tag+i word NNP banerianNNPn?JJni-1 tag+i word CD defectiveJJn?NNnٿi-1 tag+i word VBN potpourriNNSx&1NNx&1?i-1 tag+i word CC prostitutesVBZX9vNNSX9v?i+2 word wrappersRPCl?RBp= ףINSi word driftingNNˡEVBG ףp= ?JJ"~jԿi-1 word sweptIN/$?VB(\RP/$ÿRB(\?i-1 tag+i word `` dynastyNNPFx?NNFxi-1 tag+i word IN sharingVBGx&1?JJx&1i-1 word familiarNNSzG?NNzGʿi-1 tag+i word DT apparelNN?JJ i-1 tag+i word -START- energeticJJv?NNPvi-1 tag+i word PRP$ inputNNSFxNNFx? i word astuteJJ333333?RBףp= NN(\i-2 word cattleVBN?5^I VBDMbX?VBPp= ףi-1 tag+i word NNS deeperVBPClRBRh|?5?INoʡJJRMbX?i-1 tag+i word VBD properVBNjtJJjt?i+1 word chartsVBʡEۿVBPʡE? i suffix addJJV-NNSffffffVB#~j @RB~jtNNzGVBD333333VBNZd;VBPK7?i+2 word pressureJJJ +?VBZOn?NNSX9vVBL7A`?RBbX9NNSi-1 word tightlyVBZSVBPL7A`VBNGz@VBDV-i-1 tag+i word NN toolingVBG+NN+?i word playwrightNN$C?JJ$Ci+1 suffix ifsJJx&?NNx& i+1 word hadPDTX9vWDT333333@CDEȿMD)\(NNQ@VBP'1ZPRPx?JJrh|IN|?5^NNPDl?NNPSDl?POSMbX9?VBDT㥛 VBNn?VBZ|?5^ NNSx&@VB$C?VBG;OnRB?JJSA`"i-1 tag+i word NNP utilitiesNNP/$?NNPS/$?NNS333333i+2 word pleadingNNSl?JJlRB`"?RBR`"ο i word sheiksNN+NNS+?i-1 tag+i word VBP unawareVBGT㥛 ؿJJT㥛 ?i+1 word upsetRP/$RB/$?i-1 tag+i word POS downRPףp= JJףp= ?i-1 tag+i word NN comparesVBZ+?NNS+ӿ i word vitalJJK?NNKi-1 tag+i word NN shiftVBnʿNNn?i word contractNNZd;O?JJClNNP333333i+2 word maineVBN^I +?VBD^I +i+2 word reboundVB%CJJ%C?i-1 tag+i word DT hauntedVBNw/?JJZd;O׿VBDʡEi-1 tag+i word VBZ repelVBP?NNi-1 word manufacturedRBR^I +?NN^I +i-1 tag+i word NNS anymoreRBR&1RB&1?i-2 word penneyVBG{GzNNP{Gz?i+1 word applaudedRB)\(NNP)\(?i-1 tag+i word NN sideRB#~jNN#~j?i-2 word fourteenRBI +?INI +޿i word locatingVBGzG?JJzGڿi-2 word believe INp= ףDT;On?NNףp= VBPS?WDTMbX9JJL7A`пNNSQNNP/$?VBSNNPSQ?i word officialsCDSNNSV-?NNMbJJ(\NNPI +@i-1 word femaleJJ~jt?NN ףp= ?VBP&1ڿi+2 word tiltedJJʡE?NNʡEi word dealershipNNGz?JJGzi-2 word trafficRPSNN#~j@VBD(\VBN= ףp=?RBd;O?INS?VBI + i word unawareVBGT㥛 ؿJJT㥛 ?i-1 tag+i word TO concentrateVBX9v?NNX9v i+1 word cropJJx&1ؿNNSʡEJJRlҿNNv/?CD5^I ? i word desotoNNNbX9@NNPNbX9i-1 tag+i word TO repairNNS^I +߿VB^I +?i-2 word frozenJJ/$?NN/$i-1 tag+i word VBZ uniformityJJS㥛NN-?RB\(\i-1 tag+i word `` prettyRBZd;O?JJ5^I FWZd;߿i-1 tag+i word WDT belongVBZI +VBPMb?INKVBDy&1Կi+2 word meanwhile VBDtVRB rhNNSCl?NNPʡE?NNPS+@NNA`"JJRzGVBNtV?VBZn i suffix lugNNPMVBʡEVBPmͿNNZd;?i-1 tag+i word NNS holyVBPK7A`JJK7A`?i+1 word consensusVBGZd;?JJx&1?NNx&1i-1 tag+i word -START- pretoriaJJrh|NNPGzǿNNʡE? i-1 word sinkRBR|?5^?RB|?5^i+2 word regulatorJJ|?5^?NN|?5^ i+1 word loftPRP$333333?NNP333333i-1 tag+i word , evenVBPZd;RBʡE?JJjti word tonawandaNNbX9NNPbX9? i suffix eb.JJNN ףp= PRPJ +RBzGNNPn @i+2 word budgetNN333333VBN-VBP\(\߿JJCl@VBZy&1NNPy&1?VBV-?i+2 word stephenNNSCl?NNClRBL7A`?INL7A`i+1 word shoppersJJ{GzVB-?JJRtVi+2 word leapedNNˡE?JJˡEԿi+1 word cheatingVB%CJJ%C?i+2 word borrowerNNJ +?NNPJ +i-1 tag+i word NNS injuredJJQVBDNbX9VBNDl?i word ceremonyVBDMbпNN?JJ/$i-1 word power INx&@RBRNbX9?JJRNbX9WDT= ףp=VBZ+NNS+?NNPX9v?NNPSX9vRPT㥛 i+1 word ualVBG9v?JJjt?NNK7VBDOn?VBN7A`RBINףp= ?i-1 tag+i word JJ nationsNNSS?JJSi+2 word lanesVBZ㥛 VBD㥛 ? i+2 word withNNPS9vPRP$;On@FWGzVBPV-NN7A`VBDtV?NNS-@RBSS㥛?VBNzG?RP/$?POS!rh?RBRzG?INlҿJJSd;OVBG'1Z?NNP(\CC{Gz?CDˡEJJRSWDT"~jJJMb?VBZ/$?DTn?PRPK7RBClVBCl? i suffix dkaNNS;OnNN;On?i word squeezeVBn?VBDKNNE?FWX9vi-1 tag+i word -START- merrillNNbX9?JJq= ףpNNPsh|??i word detailedVBN{GzԿJJ@VBDQ8i tag+i-2 tag DT FWJJRQNNGzֿFW\(\?i-1 tag+i word -START- noJJX9v߿NNV-CDV-UHtV?RB"~j?DT$@NNSףp= NNPZd;Oi-1 word rollsVBN-RB-?i+1 word restaurantsVBG +?JJv/NNQ?CD?VBDB`"ɿi word searchesVBZX9v?NNSX9vֿi-1 tag+i word IN highJJ{Gz@NNSxRB+NNffffffֿ i+2 word postVB+VBD+?VBNDlJJ333333ÿNNPMb? i word diceNNS r @NN r i-1 tag+i word JJ classicalJJZd;O?NNZd;Oi-1 tag+i word VBD groundNN%C?RB%Ci-1 tag+i word ( phelanNNPq= ףpNNq= ףp? i word atopVB"~jԿRPjtNN$CIN?i-1 tag+i word NN attemptingVBG(\?NN(\ؿ i suffix SDINNPOn?NNףp= ۿJJMҿi-1 tag+i word , measuredVBNv/?VBDv/i+1 suffix eusVBNx&1?VBDx&1 i word lewisNNlNNPl?i-1 tag+i word DT guileNNCl?JJCli word comparedVBN +?JJ(\NNPV-߿i-1 tag+i word DT bpcaNNuVNNPuV?i+1 word ovensNNE?JJEؿi-1 suffix hemJJ(\NN^I +JJRGzVBPh|?5PDTx?VBNm?INnDTQ?VBd;O?RPV-?VBDv/CCʡEVBZQ?NNPʡENNSZd;OMDʡENNPSV-?RBRQ?RBRQJJS/$@VBG#~j?i+2 word designingJJp= ף?NNp= ףi-1 tag+i word POS onetimeJJMbX9?NNMbX9i word stockholderNN9v?JJ9vi word manifestationsNNS)\(?NN)\(i-2 word prolongedVBGnJJn?i-1 tag+i word -START- rickeyCDoʡNNPoʡ?i word o'kickiNNPS?VBDSi-1 tag+i word NNP movedNNSʡEVBDʡE?i-2 word churchVBZQ?NNoʡ?JJoʡVBDQi+1 suffix oasJJGz?NNGzi-1 tag+i word -START- interestJJSSNNw/]@JJbX9NNPZd;ONNSV-i word unsurprisingVBGV-JJV-?i-1 tag+i word : suchJJ;On?NN;Oni-1 word exhibitionNNCl?JJCl i-1 tag+i word -START- northwestJJSQNNPQ?i-1 tag+i word VBN hurtNNSVBNˡE?RBtVi-1 word consideringVBGHzG@JJ{Gz?NNV-RBoʡݿIN/$DT/$?i+1 word shellsJJDl?NNPDli-1 tag+i word RB fervorNN +?JJ +i-1 word alternativeJJ"~?NNV-NNSp= ףi-1 tag+i word NNP relieverNNCl?FWCli-1 tag+i word IN missingVBGS?NNSi-1 tag+i word VBD debateDTZd;ONNZd;O?i+2 word auctionVBDx?JJbX9?VBZ= ףp=?NNS'1ZWRBbX9NNK7A?i word budgetingVBG-NNCl?JJʡEտNNP9v?i-1 tag+i word RP ninefoldDT9vRB9v?i-1 tag+i word RB distressfulNNPMbJJMb? i+2 word ecWDT ףp= ?WP ףp= DT%C?PDT%Ci-1 word merksamerNNPSzG?NN$C?JJ$CNNPzGi word electricNN/$޿FWQRBRffffffVBP(\JJˡE @NNS"~ji+1 word pocketsRB^I +NNMJJQ?JJR^I +?NNP#~ji+1 word damagesJJQ?NNGzVBN(\VBZNbX9?VBNbX9i-1 suffix mpsVBP7A`RB7A`? i+2 word deskRP)\(ܿJJDl?NNDlIN?5^I ?VBjti+2 word injuryVBNMVBDM?i-1 word terminationsVBZFx?NNSFxɿi+1 word terminalsNNK7@JJK7i-2 word vanishedVBNq= ףp?NNq= ףpi-1 word barelyNNV-?VBDQ롿RBR{GzJJR{Gz?VBN;On?JJ{GzPRP$-i-1 word africaVBZ333333?NN333333i-1 tag+i word DT glitchNNSx&1NNx&1? i+2 word himVB +?VBDy&1VBNʡE@VBGRQWDT7A`?JJ'1Z?CD|?5^?RBףp= ?JJR= ףp=IN7A`RPX9vNN ףp= NNS#~j?VBPK?VBZRQi-2 word stemsJJjt?NNPjtԿi-1 tag+i word DT normsNNS%C?NN%Ci-1 tag+i word IN vendorNNX9v?JJX9vi-1 tag+i word POS busyNNP;OnJJ;On?i+1 word anchorDTX9vINX9v?i-1 tag+i word CC hitVBA`"VBNnʿRB{GzVBD(\?i-1 tag+i word JJ searchNNsh|??JJsh|?i-1 tag+i word , tvsNNSMb?NN(\пNNP/$i-1 tag+i word PRP$ uncleNN-?JJ-i-1 tag+i word VBP questioningVBG+?JJ+i-2 word locksNN+?VBG+i-2 word magazinesNNSףp= ?JJS?VBDB`"NNPSVBP+ӿi word draggingVBG㥛 ?NN㥛 i word forthcomingVBGʡEJJ&1@NN/$ i word memosVBZMbX9NNSx&1?NNw/ԿFWV-i+2 word narrowVBN ףp= ?VBD ףp= i-1 tag+i word VBD handilyJJx&1RBx&1?i+1 word generatedWDT +IN +?i+1 word average NNPJ +JJS+?VBNS?JJ1Zd @NN{GzĿRB rhIN$CDTx&1ԿVBV-VBGni-2 word outsideVBG"~NNK7A`ſVBDy&1VBNQJJK7@NNPn?i-1 tag+i word POS tempoJJRClNNCl?i-2 word under VBG ףp= JJSX9vVBNK7?VBPK?NNPSClNNCl?FW#~jJJT㥛 ?NNSNNPy&1?i-1 tag+i word NNP generalJJ9vNNNbX9?NNPni-1 tag+i word '' instigatedVBNClVBDCl?i-1 tag+i word IN receivablesNN?5^I NNS?5^I ?i-1 tag+i word PRP$ continuingVBGK7A`?NNK7A`i-2 word sound\/graphicsNNPSZd;NNPZd;?i-2 word thrillerJJ1Zd?NNOnVBX9vi-1 tag+i word CD noteNNl?INli-1 tag+i word IN tobaccoNNS-NN-?i+1 suffix preNNPbX9?NNbX9i-1 tag+i word -START- saulPRP$-NNP-?i-1 tag+i word JJ realizedJJq= ףpVBNn?NNT㥛 пi-1 tag+i word IN seeingVBG;On?JJ;Onڿ i+1 word liedRB㥛 VBuVJJZd;?i-1 tag+i word CC restrictVBZuVVBB`"?VBPZd;Oݿi+1 word matchJJzG?NNzGINSWDTS? i word caseyNNPSjtNNPjt? i suffix 64NN㥛 CD㥛 ?i+1 word rulingVBZxNNPSQNNSMPOSx?NNP&1? i word iowaRBQNNPQ? i+2 word amidNNS?NNPS㥛VBJJ"~ʿNN?VBDQ?VBPQRB rhi+2 word viennaVBZX9vNNSX9v?NNV-NNPV-?i word wildcatNNI +?UHPnJJPni+2 word recreationNNCl?JJCl i word salaryVBP(\¿NNm@JJMVBDjti+2 word lybrandNNPS rhNNP rh?i-1 tag+i word -START- researchNNn@NNPni-1 word pledgedRBoʡݿINoʡ? i word cordNN㥛 ?VBZ㥛 i-2 word homerJJFxNNPZd;O?VB}?5^INN(\?VBDCl?VBNq= ףpJJRoʡi-1 tag+i word PRP fasterJJR^I +?RBR^I +i-1 word entrepreneurialNN|?5^?VBP +NNSS i+2 word bid VBNm POSMb?INRQ?VBZMbNNPq= ףp?NNPS;OnRB rh?JJv/ @CD/$?VBG&1?NNCli-1 word inspireJJ{Gz?NN{Gzi-1 suffix ereWRBZd;?JJSuVVBP"~j?VBZn@FWoʡWDTOnJJ$C?RB`"@JJR rh?CCy&1VBDV-VBN= ףp=@NN#~jRBSsh|??VBG}?5^I@DTQNNS(\?VB/$?NNP?5^I ?EXv/INQRP!rhmNNPSMb?POSMbXPDT +?RBRV-CDK?i+1 suffix rerNNSjt?NNPbX9NNPSffffffVBGʡENN;OnVBPCl?JJQ@i-1 tag+i word CC datNN ףp= ׿NNP ףp= ?i-2 word azoffJJRQNNQ? i-2 word hurtNNSʡE?NNV-¿VBG +?JJsh|?RBK7ٿ i word vaxJJX9v׿NNPX9v?i word romanticJJ"~@NNy&1̿NNPCli-1 word warnsJJ rhNNP rh? i+1 word endVBNS㥛CDQ?JJS㥛D@NNPQVBDlNN#~ji+2 word printerNN?NNPEؿFWK7A?JJSClJJ rhi-2 word balkedJJK7?NNK7ٿi word finishingVBG-JJQ?NN`"οi-2 word a\/k\/aNNMbX9?FWMbX9i-1 tag+i word VBZ consistentlyNNS\(\VBNK7RB r? i+2 word come VBDZd;߿VBPQINNbX9?VBZV-?NNSd;O?NNPbX9RB(\?NN}?5^IVBNPn?WDTNbX9PRPMbX?JJ}?5^INNPSʡE? i word gentleVBB`"ѿJJZd;O@NNvVBN/$JJRV-RB/$i+1 word steelmakerJJMb@NNPMbi tag+i-2 tag `` NNPSNNPoʡVBN)\(NNoʡ?VBD)\(?i+2 word designedVBG"~jNN`"ֿJJ#~j?VBZ!rhNNSK7?NNP~jt?i-1 tag+i word DT laxativeNNzG@JJzG i word auditsVBZS㥛NNPSףp= NNS!rhNNV-@NNP\(\Ͽi-2 word retainNNPSV-NNʡE@JJvNNPv/?i word typicallyRB`"?NNP`"i word riskingJJMbVBGMb?i-1 tag+i word VBZ interestedVBNK7JJK7?i-1 tag+i word VBP lowerJJRS㥛?RBRS㥛Ŀi word turningVBGQ?NNQi-1 tag+i word NN tradingVBPSVBG!rhNN{GzĿJJK7@i-1 tag+i word , valvesVBZGzNNSGz?i-1 tag+i word IN beleagueredVBNjtƿJJjt?i-1 suffix iczVBZjt?NNSjti-1 tag+i word VBG testimonyNNA`"?RBA`"i+1 word dreamsJJjt?RB㥛 NN5^I ۿi+1 word explorationNN ףp= ?JJR'1ZJJ~jtۿVBD+VBP+? i-1 word blueNNPoʡVBZB`"ٿNNPSHzG?i-1 tag+i word JJ chapdelaineJJ}?5^INNP}?5^I?i-1 word recyclingNNʡE?JJʡEi word hardestNNx&ٿRBSDl@JJSA`"?VBN}?5^IRBGzNNSV- i+2 word oilsJJGz?NNGzi-1 tag+i word -START- anDT1Zd@JJ5^I NNPHzGi+2 word outstandingVBGn?RB"~jNNMb CDMb?JJ&1ҿDT?5^I ?NNPx&1ԿVB"~?i word stuffedVBZ333333VBD333333?i-2 word damagedINZd;DT)\(̿NNT㥛 ?PDT5^I ӿVBPtV?JJ + i+2 word branINv/NNSv/?JJ(\ݿNNP(\?i-2 word collateralNNSQ@NN(\NNP(\i-1 word optionVBZZd;NNSZd;? i-2 word saidDTv?FWT㥛 RB= ףp=PRP$+?VBNʡE@NNSv/?NNPM?JJSOnVBDZd;O@PRPA`"VBh|?5PDTnIN?5^I MD~jt?VBGuVݿJJS㥛?VBZ{Gz?NNK7A?WRB7A`RBRKCDNNPSZd;OVBPsh|?@WDTL7A`@JJR(\? i+2 word ratsVBNffffff?VBDffffffi-2 word garciaVBNtV?JJtVi+1 word semiconductorINl?NNPbX9NNPSZd;OJJ?5^I ?RBli+1 word bilanzVBZx&?NNSNbX9NNPi-1 tag+i word VBG americansCCENNPSE?i-1 tag+i word DT proxyNNS= ףp=ڿJJ= ףp=?i word suggestsVBZy&1,@JJS/$NNS|?5^:i-1 tag+i word DT chivasNNPA`"?NNPSA`"i-1 word securitiesVBPˡEVBZ)\(NNSOn?PRPZd;WDTClӿJJ= ףp=INv/?NNP ףp= RPx&1NN+w@VBD\(\׿VBG㥛 NNPSʡE @RB%C?VBN%Ci-1 tag+i word RB offeringVBGZd;?JJZd;i+2 word strategyVBZ(\NNSM?NNPSS㥛NNl?VBDuVPOS(\@VBPuV?i+2 word conventionalNNʡE?JJʡEi+2 word sleepNN5^I NNP5^I ?i+1 word discourseVBN7A`ڿJJL7A`?NNPMbi-1 tag+i word IN hispanicJJffffff?NNPffffff i+1 word letTOoʡ?WDT(\?JJoʡIN(\VBZV-NNSV-?i-1 tag+i word JJ earsJJ/$NNS/$?i-1 tag+i word , victimNN㥛 ?CD㥛 i-2 word asJJ/$VBZl @NNSV-INSc@JJR^I +VBPM?WDT +?DTEFW'1ZԿRB5^I RBSʡERBR+CDףp= ?VBDMb?NNS?POSuVNNP1Zd?CCh|?5JJSClUHOn?VBGX9v?VBN?5^I RPNbX9?VBvNNPSK7A?i-1 tag+i word CC chattingVBG-?NN-i+2 word unexplainedNNNbX9IN\(\NNS\(\?JJNbX9?i+2 word benchVBNKVBDK? i+1 word aug.VBNS@JJGzVBD|?5^i+2 word delawareVBNlNN/$?VBD(\i-1 tag+i word NN allianceNN`"?RB`"i-1 suffix ahiNNPT㥛 NNPST㥛 ?i-1 word intendedINK7?RBK7?JJQi+1 word nuclearDTV-NNS(\NNPd;O?NNPSX9vNN|?5^VBNMb?JJ`"@i-1 tag+i word JJ workersWPx&NNS5^I ?NNP|?5^ѿi-1 tag+i word VBZ seldomNNS+RB+?i-1 tag+i word IN democraticJJS㥛?NNrh|NNP|?5^i-1 tag+i word POS savingsNNPS-@NNSp= ףNN rh?NNPK7A`i-1 word pointedlyVBN +VBD +?i+2 word ploufVBNq= ףpVBDq= ףp?i-1 tag+i word VBZ nastyJJ+?RB+i+1 word realisticVBZ(\?VBD(\i word countedVBD'1ZVBN'1Z?i-1 tag+i word '' soRB\(\IN\(\?i-1 word causeNNffffff?RBffffffi-1 tag+i word CC boostVBuV?RBRNN&1i-1 tag+i word JJ subordinateVBPB`"JJZd;O?NNsh|?i-1 tag+i word `` peteNNS-JJx&ѿNNPV-?i-1 tag+i word VBZ publicJJ%C?NN%CԿ i-1 word hillRBʡE?NNX9vοCDL7A` i+2 word n.j.NNPSDlNNClٿNNPOn@i-1 tag+i word VBN unsettlingJJ +?NNEԸVBGrh|߿i-1 tag+i word -START- nedDT/$NNP/$?i-1 tag+i word NN preventsVBZGz?NNSGz i word desksNNS$C@NN +JJZd;OտVBZZd;Oi-1 tag+i word NNS satelliteNNp= ף?JJ+ۿVBw/VBP333333i-1 tag+i word RB lateJJx&RBx&?i-1 tag+i word JJ luckVBNB`"NNףp= ?NNSSۿi+2 word received VBPX9vJJm?VBZ㥛 ?NNSjtNNPZd;ϿVBHzGNN\(\@VBNOnCDSINZd;ONNPS7A`?i-1 word blameJJCl?RBCli word properlyNNSQRBFx?JJCli-1 tag+i word DT reasonableJJ +?NN + i+1 word full DTx&1NNV-CCX9v @JJR(\JJGzVBD"~jVBN"~j?VBPGz?INx&1?i+2 word exportersVBZ/$NNS/$?i-1 word fairlyRB/$?INx&1NNSףp= JJsh|?@NNMVBD$CVBNm?i-2 word fascinatedNNSnNNn?i-1 tag+i word VBN solidRB5^I ?JJ5^I  i-2 tag VBNRB+NNP&1?RBS"~j?VBG rh?CCMbPOS rh?PRPS?VBSNNPS +WPQ?RPFxNNzGRBRQ@JJRxƿVBDK7WDTy&1|?NNS/$?CDp= ף?INtV?VBNV-?VBZKPDTjtJJSx&JJS㥛?DT|?5^?EX9v?MDp= ףPRP$Zd;׿VBPFWQ?i+1 word bailoutVBZx&1NNn@POSx&1?JJ7A`NNPx&1i-1 tag+i word , meantimeNNq= ףpRBq= ףp?i+2 word greetedVBZzGNNzG?i tag+i-2 tag WDT VBDVBZ~jtxVBPGzNN~jtx?JJGz?i-2 word slowingDTQWDTQ?i-1 tag+i word , boyNN-UHsh|?@RBlڿi+2 word managedDT\(\IN\(\? i word humansVBZSVBV-VBPSNNSoʡ @VBD7A`i-1 tag+i word NNS offerVB?5^I VBPףp= ?NN?5^I ?VBZףp= i word cortesNNPS㥛?NNPS)\(NNSK7A` i-1 tag+i word VBN contraceptiveJJ9v?NN9vڿi-2 word operationRBV-?INV-׿i+1 word woollyINS㥛?WDTS㥛i+1 suffix lieNNS!rh?NNP r?VB㥛 NNPS!rhVBGZd;O?NNZd;OINQ?i-1 tag+i word RB upsetJJ(\ڿVB(\VBNQ?i+2 word morishitaVBZClJJCl?i-1 tag+i word VBZ startingVBGA`"?JJA`"˿i+2 word crackFWPn?VBjtVBPjt?NNSQӿNN$Ci-1 word appearedJJQ?NNQοi-2 word giorgioJJ}?5^I?NN}?5^Iܿi-1 tag+i word JJ sellVBP~jtNNʡE?JJ-ֿi word syndromeNN(\?JJ(\ҿi-1 tag+i word NNPS fiascoVBZT㥛 NNT㥛 ?i-2 word agenciesNN{Gz?VBD +?VBN +INK7RPK7?VBG{Gz i+2 word old VBDV-CDV-?IN+VBSRPd;O?JJSNNS?VBPS?RBnڿi-1 tag+i word -START- chivasDTZd;ONNPZd;O?i-1 tag+i word NN receivablesNN rh@NNPKNNPSK?NNSVBN;On i word stopVBjt @NNJ +ɿRBRK7A`ſJJ333333VBZK7ѿNNSffffff޿i-1 tag+i word ) listsVBZMbPNNSMbP?i word freedomsNNS`"?NN`"i+1 word settingVBZS㥛ܿJJS?NNSPOSS㥛?i+2 word endingVBG-?NN rhJJd;O?NNP333333i-1 tag+i word -START- madeNNS-VBNV-@NN= ףp=NNP +i-2 word crudesVBNoʡ?VBDoʡi-1 suffix aumNNPNNPS?RB\(\?CD\(\ i suffix schNNP + @JJMbNNq= ףpݿRBEпi+1 word tonesVB(\NN= ףp=@JJʡERBˡEԿi word principleNNS(\NNZd;O@JJDli tag+i-2 tag VBP RBJJK7?NNMb`?WPZd;ONNSX9v?JJRS?NNP?5^I ?VBGsh|??VBD\(\?RBR ףp= ?VBPn?WDTZd;O?IN(\RP^I +׿VBN~jtFWQCCA`"UHQ?RBGz?DTffffff?VB ףp= i word kitadaJJ~jtNNP~jt?i+1 suffix merVBPKIN/$?VBrh|@VBG}?5^I?VBDV-ҿDT/$?PRP$ʡE?NN(\WDTQPRPʡERBV-?NNP9vJJL7A`?JJS~jtVBN'1ZԿJJRq= ףp? i+2 word lifeJJx&1VBDtVEXsh|??RBRQVBZ"~j̿DToʡVBGjtNNjt@PDToʡ?VBP%CVBNE?NNP rVB|?5^@POS"~j?i-1 tag+i word DT rightNNPSV-JJV-?NNZd;O@VBDxVBNRQRBEi-1 tag+i word NNP stoltzmanNN+NNP+?i word lombardRB$CJJmͿNNPK7A`?i word compromisesNNSA`"?JJ$CVBZ5^I i-2 word attendeesVBN~jt?JJ~jti-1 word testimonyVBD1ZdVBNQ?JJGzi-1 tag+i word DT flowchartNNʡE?JJʡEݿi-1 tag+i word CC trainedJJA`"?VBDx&VBNQi word afghanistanNNSEؿNNPE?i-1 tag+i word VBD tradingVBGV-?NNV-i-1 tag+i word DT continuedJJq= ףpNNS㥛 VBN#~j@NNK7A`i-1 tag+i word RB leveragedVBNX9v@JJI +VBDi-1 word citedVBNv?RBDlٿJJS㥛Կi+1 word neighborNN!rhNNPw/NNPSw/?JJ!rh?i-1 word bailoutVBZMbX9ĿNNSMbX9?VBN㥛 ¿VBD㥛 ?i-1 tag+i word CC reportsVBZbX9NNSbX9?i-2 word worstDT~jt?NN~jti-2 word memoriesVBK?VBPKi-1 tag+i word NNS measuringNNx&1VBGx&1?i word deoxyribonucleicVB ףp= JJ ףp= ? i word laudedJJ(\VBD(\?i-1 tag+i word -START- priamNNSK7NNPK7?i-1 tag+i word RP unpreparedVBN#~jJJ#~j?i word goldbergRBV-NNPV-? i+1 word p.m.CDI +@NNSx&1NN rhJJK7A`NNPB`"i-1 tag+i word CC frontVBPnJJn? i+2 word cd JJRS㥛RBRS㥛?JJDl?NNSA`"?NNPA`"ۿRBn?NNMbX9WDTףp= ?INףp= i-1 tag+i word CC hostNNx&1?JJx&1п i suffix e-2VBX9vNNSClJJFx?NNPvϿi word whoopingNN~jtVBClVBGSJJX9v@ i+2 word massNNbX9NNPbX9?i word profoundlyRBy&1?JJy&1̿i-2 word laggingNN+@NNP+i+2 word jewishNNQ?JJQi+2 word folksRBFxٿINFx?i-1 tag+i word TO luxuriousVBV-JJV-?i-2 word doubleJJSQ?JJbX9NNPMb`?i word fartherRBK7ٿJJR+ǿNN{GzRBRX9v? i word parentNNQ@JJS IN+VBDQi-1 tag+i word `` aNNK7A`NNP333333?DTףp= ÿUHjti-1 word lightestNNzG?JJzG i-1 word deskVBN?VBDi-1 tag+i word JJ averageVBPMbNNK7JJbX9?i word messrs.NNPSˡE @NN9v?JJSxJJ/$NNSHzG@NNPxi-1 suffix henDTx?RBSS㥛ԿCD+INʡERBx&1VBn?EX9v?JJR ףp= VBD;On?VBNClJJZd;ORP)\(PRP`"NNSMbX9NNPbX9?NNPS$CVBG+@VBPsh|?տWDTsh|??VBZoʡ?JJSS㥛?NNSi-1 tag+i word `` aboutRBKINK?i+1 suffix nth VBG)\@JJw/?PRPI +޿NNd;OJJRZd;CDMbX?VBPnRB/$IN~jti word affairsVBZ}?5^INNPSˡE@NNS~jtJJT㥛 NNPn i word rodeVBZZd;VBP"~jVBD/$@i word enragedVBNw/JJuV@FW"~i-1 tag+i word VBD antelopeNNSx&1?RBx&1̿i-1 tag+i word CC confusingVBGDlJJDl?i-1 tag+i word , tornVBN~jt?RBrh|FWCli tag+i-2 tag VBZ NNPRP$9v?WPˡE?RBbX9?CDV-ҿVBGMbX?''GzDT!rh?FWx&RBRV-?WDToʡVBZ|?5^?RPsh|?@POSS?IN/$?VBNffffff?NNSZd;ONNPOnCC^I +VBPbX9?PRP~jtRBS-?VBDNbX9NNGzJJClVB~jt?PDTB`"ѿEXʡE?JJSMbJJRvi-1 word considerablyVBD"~j?JJRZd;O?VBNZd;O?RBRZd;OJJw/i+2 word secureRBSʡE?JJSʡEͿJJ(\?NN(\i+2 word faresNN/$NNS/$? i word anewNNSbX9PRP}?5^INNClۿVBRBZd;O?i-1 tag+i word DT gambleNN"~@JJ"~i word workweekNN$C?JJ$Cۿi-1 suffix ondVB(\JJ~jt?RBS+?DTL7A`?NNPʡE?VBG(\VBD5^I ?FWʡEJJR-VBN9vVBP-޿WDTxRBS㥛NNS1Zd?NN+?JJS+INPnVBZ?5^I i word cockpitJJRQNNQ?i-1 tag+i word NN herselfPRP+?NN+i-1 word fieldsINS?RPSVBNCl˿VBDCl?i+2 word monarchyVBZ+VBD+?i word confinedVBN r?JJGzοVBD rh i-1 word riseVBDHzGINDlٿVBNHzG?RBRGz?WDT-?RBNbX9?JJRGzRPJ +i-1 tag+i word NN boughtVBDFx@JJ-NN}?5^IINm i+2 word boomJJ㥛 ?NN㥛 i-2 word havenVBNClѿJJMbX9?NNP~jti-1 tag+i word TO expireNN"~jVB"~j?i-1 tag+i word DT elaborateJJ?5^I ?NN?5^I i-1 tag+i word CC stayVBffffff @VBP9vDT-NN +i-1 tag+i word NN effectivelyRB#~j?JJ#~jԿi-1 word followedVBG~jt?JJZd;O?RB)\(i+2 word testimonyVBNsh|?VBDsh|??i-1 word laotianNNPw/NNPSw/?i-2 word fairnessNN"~ʿNNP"~?i+2 word susceptibleJJp= ףNNPp= ף?i-1 tag+i word DT bankersNNPSRQ?NNPRQi word exceededJJ#~jVBD#~j?i-1 tag+i word CC hurricaneNNbX9?NNSbX9i-1 tag+i word , detailedVBDPnпVBNˡEJJOn?i tag+i-2 tag CC ``INX9vDTX9v?VBT㥛 NN +?EX\(\?RBZd;Oi-1 tag+i word , stallVB ףp= ?VBP ףp= i-1 tag+i word JJR frozenJJS?NNSi-1 tag+i word IN threateningVBG+ۿJJ&1@NNZd;i-2 word modifiesNN333333JJ333333?i-1 tag+i word NN marketingVBGjtNNjt?i+2 word overcomeRBJJ)\(?VBP\(\׿VBNrh|? i suffix ownRB"~j?VBMbCDSVBD&1JJ7A`@RP&1\ @$RQNNw/ NNPS?5^I ڿJJR(\VBG7A`VBPnVBZMbX DTtVFWL7A`JJSCl?UHGzVBNR @POS-NNS(\NNP(\IN@i-1 word nazisNNClVBDCl? i word missesVBZffffff?NNSffffff i+1 word bigVB+ӿRBl@VBD(\?JJSK?JJRS㥛?CDQ?POSjt?RBSKRBRS㥛VBZ9v?DTOn?NN"~ʿVBNQPRP-ӿJJB`"INX9vVBG~jtx?VBP;On?NNSS i-2 word filmVB^I +?NNFx?JJxNNPCli word salomonNNP&1?NNPS1ZdJJOnNN;On?i-2 word inuitNNP1Zd?VB1Zdi-1 tag+i word RB alteredVBD?VBNS˿JJuVi+1 word angryVBNףp= VBDףp= ?i-1 tag+i word -START- aliceNNS㥻NNPS㥻?i-1 word querechoNNPSX9v?NNPX9vi word devicesNNPSsh|?@NNPsh|?i+1 word filledNN~jt?RB+NNSCl绿i+1 word tourismJJʡE?NNʡEi-1 tag+i word DT stingingJJsh|??NNsh|?i-1 tag+i word CC popJJx&1?NNx&1i word characterNNK7A?RBK7A i word ideasJJSNNClRB1ZdVBZ+NNSh|?@NNPV-i-1 tag+i word , smokingVBGRQؿNNRQ? i word farmerNN-@NNS?5^I JJRp= ףJJ+i-1 tag+i word POS orchardsNNSh|?5?JJh|?5i-2 word exclusivityJJSK?RBSKi+2 word breakingVB/$RBA`"?JJuVNNʡE?CDjtĿ i-2 word tinyJJ5^I ?VBNʡE?UHʡENNMbVBDʡEi-2 word customarilyJJGz?NNSGzi-2 word listsVBZd;OVBPB`"@NNS?JJSۿVBDV-i-1 tag+i word NN scheduledVBDK7AVBN?NNMbX i word felixNNjtNNPjt?i-1 tag+i word NN strikesNNS-NNV-VBDh|?5VBZGz?i word elephantsVBZV-ڿNNSV-?i-2 word nightmareJJMb@NNMbi-1 tag+i word `` complexJJ)\(?NN)\(i-1 tag+i word TO leftVBDlJJtV@NN+VBNCli-2 word poisonNN/$VBZ?VBPL7A`?NNS/$VBNL7A`i-2 word hydraulicVBJ +NNףp= @JJv/i word brookingsNNPSZd;ONNSPnNNPL7A`?i-1 tag+i word DT clinicNNSffffffNNbX9?JJMbX i suffix konVB"~JJffffffRBS˿NNPCl? i suffix midNN"~jԿPDT(\ҿVBNK7AVBP;OnJJ333333?INS㥛?DT(\RBffffff޿i-1 suffix ipsRBn?INMb?DTx&1VBK7ٿRPJ +JJ1ZdVBPK7?WDT5^I ?i-1 tag+i word NNS couchNNQ?JJQ i+1 suffix anWDT"~jVB(\?VBD= ףp=@POSV-PDTd;O@JJSffffffJJR|?5^ڿPRP$"~jܿVBGV- @DTS?RPZd;?NN rhPRP"~j?RB|?5^NNSx&1VBN333333JJnJSYMB`"RBSʡERBRFx?NNPMbIN-@NNPS~jtx?VBPZd;?VBZd;O?i-1 tag+i word NN clearingVBGZd;O߿NNZd;O?i+2 word roomsJJ?5^I ?VBPClNNw/ĿRBKJJRMbX?i+1 word chainNNSCl?NNPzG?NNPSˡENNffffff@VBDuVVBNClCDh|?5JJGzi word olympicsNNPSʡE @NNS(\NNPx&1ȿi-2 word investigatorVBNZd;VBDZd;?i-1 tag+i word , packedVBN^I +VBD^I +?i-2 word genes JJh|?5NNh|?5?RB= ףp=?IN= ףp=?VBZ= ףp=VB rVBDCl?CCQ?FW= ףp=VBNCl߿VBPQNNS r?i-1 tag+i word CC cambrianNNPS)\(NNPn?VB{Gzi-1 tag+i word NNP towerNNP"~j?VBZlNNl?i-1 tag+i word DT untappedJJ-?NN-i-1 tag+i word NN aboundNN\(\׿VBP\(\?i-1 tag+i word VBG electedVBN|?5^ѿVBD|?5^? i word sexistJJy&1?NNy&1i-1 tag+i word NN expertVBPZd;׿NNx&?VBD-i-1 tag+i word NNP editorialVBZ333333NN333333?i-1 tag+i word DT fundamentalsNNS+?NN+i-1 tag+i word VB heroesJJR{GzVBNK7A`ݿNNS/$? i word streetNN9v @JJjtVB7A`NNSv/Ϳi+1 word chandlerNNPSS?NNPSi-1 word infringedNNSQNNQ?i word retailerNNS(\NNFx?VBCli word federalistNNNbX9JJrh|NNPy&1?i-1 tag+i word NN gesturesVBZPnؿNNSPn? i suffix 132JJ!rh?CD!rhi-1 word brainNN/$@VBG/$VBDKVBZʡE?NNS+?i-1 tag+i word DT poolNNtV?JJtVi-1 tag+i word NNS soaredVBNxVBDx?i word propositionNNS˿NNPS?i-1 tag+i word PRP husbandNN}?5^I?JJ}?5^Ii word intelogicNNPOn?DTOni-1 tag+i word CC zapotecJJtV?NNPtVi+2 word schroderVBZ/$?NNS/$i+2 word wholesaleVB?JJ`" NN rh@i-2 word wastingNNoʡ?JJoʡݿi-1 tag+i word , contrastedVBNK7A`?VBDK7A`i word repliedVBZx&1VBNRQVBD)\(@i-1 suffix sixIN5^I ˿CD333333?NNP ףp= NN{GzJJM?i-2 word juxtaposeJJ+?NN+i-2 word office VB1Zd˿NNPSx&VBD;OnINRQ@NNPZd;ORBMbX9NNL7A`?VBN;On?VBP'1@JJlVBZ}?5^I?DTni+2 word shelvesNNv/INPn?VBPjt@RPʡE i word rapistNNB`"?JJB`"i word therapyNNSV-NNGz@JJSi-1 tag+i word NN slowsVBZ#~j?RB#~jܿi+1 suffix ealVB{Gz?VBG1ZdӿNN(\VBPK7ARBR/$INK7ٿDTHzG?RBMbX9?VBD rhJJPn?VBZ5^I JJR/$?NNPSA`"?FWy&1|POS5^I ?VBN\(\ϿWDTK7?NNPp= ףi+2 word questioningVBNzG?VBDzGi-1 tag+i word , shortNNJ +JJClRBMbX9@ i word norgeNN rhNNP rh? i+1 word laidNNPSHzGNNHzG?i-1 suffix rdyIN$CNNSʡE?NNPZd;O?NNPS(\RBx&1̿NNZd;?VBPʡEJJx&1i-1 tag+i word -START- harrisNNClѿNNPCl? i+2 word toesJJV-VBDV-?i+1 word chapterVBGX9v?JJ$CNNx&1NNPGz?i word christianNNJ +JJ}?5^INNPV- @i+2 word recapitalizationNNSxNNx?i-1 tag+i word TO receiveVB"~?JJ"~ i word tablesVBZV-NNSv/?NNKi-1 tag+i word TO scuttleJJKǿVBK?i-1 tag+i word JJ feltNNMVBDM?i-1 tag+i word DT substituteNN)\(?JJ)\(i-1 tag+i word NNP sideNN!rhVBMbJJ-?!i-1 tag+i word PRP$ effectivenessNN{Gz?JJ{Gzi-1 tag+i word IN recruitNNuVͿNNPuV?i+2 word soybeansVBZZd;NNPʡENNSʡE@VBDZd;?i-1 suffix ulpVBNA`"@NNVBDʡEi word gilletteVBvRB333333NNPx&?i-1 word limitJJ"~jVBN5^I VBD5^I ?NNjt?RBRV-i-1 tag+i word NN hornNNK7?VBNK7i-1 tag+i word JJ rockefellerNNx&1NNPx&1? i suffix icyNNPSPnпNNy&1@JJ= ףp=NNPi-1 tag+i word DT subjectNNZd;O@JJZd;Oi+1 word personsVBN;OnJJ;On?i-1 tag+i word RBS exerciseVBPPnNNPn?i+2 word partlyVBZ&1?NNS&1VBNV-VBDV-?i-1 tag+i word CC indictedVBNzG?VBDzGҿi-1 tag+i word '' tvNNPGzNNGz?i-1 tag+i word RB ruleVB-?VBN-i-1 tag+i word RB studyVBP`"?JJRtVοNNv/ i+1 word ufoJJ(\?RB/$INI +?i+1 word fanfareRBZd;ONNGz?JJMbpi+1 word radzyminNNjtRB5^I INI +?i-1 tag+i word JJ stepchildrenNNS/$޿NN/$?RB+ǿ i suffix sacNNSJ +NN(\?FW;Oni-1 tag+i word NNP eventNN{Gzt?NNP{Gzt i-2 word shotVBN)\(?PRPS㥛?PRP$S㥛VBD)\(JJS r?RBS ri-1 tag+i word JJ cladVBP`"JJ`"? i+1 word seedVBV-?NNS!rhNN/$?JJw/ĿVBNV- i-2 word past IN#~j?VB rh?NN+ @CCClVBNffffffCDzGJJOnWDTy&1DTrh|?i+1 suffix rinNNS-NNP-?i+1 word sportsNNPq= ףp@VB/$JJv/@NN+ JJRKCDK7A`RB;Onҿi-1 tag+i word NNS foundVBPS㥛VBNM?RB/$VBDy&1?i-1 tag+i word IN kateNN(\տNNP(\?i+1 word dozenDTCl?NNx&JJ1Zdӿi-1 tag+i word CC petrifiedJJx?NNnVBN{GzԿi word unwrittenJJ^I +?NN^I +i+1 word defaultNNuV?JJS㥛NNP/$i-1 tag+i word DT interloperNNffffff?JJffffff i word slatedVBN r@JJlVBDCli word particularsRBSNNSS?i-1 tag+i word NNP protectionNNmNNPm? i word threatNN r?NNP ri-1 tag+i word RB strongerJJR)\(?VBN?5^I RBRʡEi-1 tag+i word `` spooksVBʡENNSK7A`?JJGzֿi-1 tag+i word IN exileNNOn?JJI +CDSi tag+i-2 tag DT MDVBPQ?JJZd;O?NNP~jt?VBZd;?RBFx?NNRQRBRFx i+2 word armyNNSy&1?JJ;On?NNy&1NNP;Oni-1 tag+i word DT formalJJn@NNni-1 tag+i word IN milestonesNNS ףp= ?NN ףp= i-1 suffix fic VBDʡEJJSVBZM?VBnNNPSV-߿VBGbX9?RBMNN7A`?VBN rh?NNSZd;NNPB`"?i+2 word bridgeportNN'1Z@NNP'1Zi-1 tag+i word PRP discourageVBP&1?VBD&1ڿi-1 tag+i word VB closerVBNffffffRBRK7A`JJR%C@i+1 word debrisJJ(\?NN(\i-1 tag+i word , colorVBsh|?NN~jt?RBCl i+2 word ciaVBʡEVBDX9v?PDTI +ֿVBNZd;JJX9vDTrh|? i word hoeNNPx&VBx&? i word seizeVBMbVBPMb?i+2 word companionPRP$+?RB+VBNxJJZd;OǿVBD?i-2 word authoritiesWDTMbVBN`"?INGz?NNS`"DT~jti-1 word producingVBN5^I ˿NN/$?NNS rJJK7?RBx&1i+1 word masterJJ rh?NNPClNNRBv/VBN= ףp=?i-1 tag+i word CC swayVBrh|?NNrh|i-2 word credibilityNNS/$?NNP rhNNPS(\i word notwithstandingRB/$ @VBGENNMb JJSIN/$? i suffix CDsNNPNbX9NNPSV-RBףp= NNMbX9JJףp= NNS rh!@i-1 tag+i word IN physiologyRBMbXNNPMbX?i-1 tag+i word DT projectionNNK7A`?JJK7A`i-1 word incomesVBPGz?VBGz޿i-2 word discriminationVBNx&1?JJd;O?NNSi-1 word credibleNNS'1ZNNV-?JJzGi-1 tag+i word EX haveVBK߿VBPn?NNV-i+1 suffix lowVBNx&1?CDl?IN(\ؿVBGZd;ONN rNNPVBClٿVBDuV?VBP"~j?JJOnVBZʡERBV-@PRPlDTmNNS(\?i-1 tag+i word RB regulatedJJSۿVBNS?i-1 word enjoyPRPq= ףp?NN^I +VBG^I +?NNSq= ףpi-2 word lower NNPmݿJJffffff?CCJJRX9v?RB?5^I NNSʡE?NNMbXRBRrh|׿INK7VBZGz?DT?i-1 tag+i word RBR smokeRB\(\NN\(\? i word bindNNPGzNNףp= ?INп i word enjoyVBPHzG?JJ+VBDuVVBZZd;OVBS? i word soundsVBZRQ?NNSRQi+2 word someoneVB?5^I ?NNQ?JJPnRB|?5^?i+2 word fearedVBG-?JJ-i-1 word gossipyJJS?NNSi-1 word thriftINZd;OVBZ/$NNS/$?VBGV-?NN!rh?VBD1Zd?VBN1Zd˿i-1 suffix sidNNPS'1ZNNP'1Z?i-1 suffix bleNNPSMbX9?$S㥛CCMb?JJ(\@INffffffVBZ(\NN#~j@RBx&?VBNI +?RP9v@VB+CDT㥛 ؿWDT`"PRPv/DTd;ONNPHzG VBG(\?VBDA`"VBP+NNS1Zd@i+2 word abolishVBNRQJJRQ? i-1 word a.NNPS"~NNV-NNPK7?i-1 tag+i word IN repeatingVBGn?NNnٿi-2 word weaponsRBV-?NNSOnNNOn?VBD-VBP-?EXV-ڿi word defaultedVBN1ZdJJ/$?VBDp= ף?i+1 word restrictsVBZV-WDTMb?RBV-?INMbi tag+i-2 tag CC (VBZm?NNSmi+2 word midmorningNNZd;NNSZd;?i word teachingJJ!rhܿVBG(\NNI +?i word restrictedJJQ?VBNI +?NN rhVBD{Gzi-2 word tokyuNN㥛 NNP㥛 ?i-1 tag+i word DT portJJ/$?NN/$i-1 tag+i word NN redVBNmJJm?i-1 tag+i word RB expressVB\(\?JJ\(\i word lastingVBGJ +JJDl @NNx& i suffix kovNN+NNP+? i suffix ossJJR#~jVBDʡEVBPffffffƿVB9vʿRPL7A`@RB-VBN#~jNNP +ֿNNQ?JJQINQ @VBZQDTףp= NNS\(\i-1 word voiceVBZ#~jNNS#~j?NNnVBGn? i word sideVBK7ARB#~jNN|?5^@VBPRQؿJJMbX9NNP-i-1 tag+i word DT negativeNNPn?JJPnؿi word clippedVBN)\(?VBD)\(i-1 tag+i word NN cordNN㥛 ?VBZ㥛 i word stoleVBPvPDTSVBDK7?i-1 tag+i word VBP negotiableDTlJJl? i-2 word putsNNSGzNNGzJJL7A`?i-1 tag+i word `` intenselyRB/$?JJ/$i-1 tag+i word NNP memoriesNNPSMbX @NNS ףp= NNP~jti-1 tag+i word PRP$ costumeNNSQNNp= ף?JJ~jtӿi word pachydermsNNPS= ףp=?NNS;OnNNPJ +i word duodenalJJ~jt?NN~jti+2 word handsomeVBX9vVBZX9v?i-1 tag+i word CC steepJJ= ףp=?RB= ףp=i-1 tag+i word VBZ couchNNK7A?JJK7Ai+1 word creditors NNP?5^I VBK7A`?NNK7VBDZd;OJJS-?VBZ?RBS-VBNB`"?POSy&1?JJX9v?i+1 word oglesJJB`"NNB`"?i-1 tag+i word `` turandotJJ`"NNP`"?i-1 tag+i word -START- tellVB?5^I ?NNP?5^I i+2 word areVBPVBm?WPE?VBZV-NNPSvJJSS?UHClPRP$1ZdPOS rh?NNS+?RBRV-JJRq= ףp@EXCl?WDTK7 NNT㥛 @INm@SYM= ףp=VBNZd; @JJʡE?RB rhNNPq= ףpWRBM?MDd;OCDV-?VBGzG VBDZd;O DTx?RBSMbX i-2 word u.n.NNPS1ZdۿNNP1Zd?i-1 tag+i word VBP sillyJJ&1?RB&1ڿi-1 tag+i word CC keepVBP'1Z?VBD'1Zi-2 word penchantJJB`"?RBA`"NN(\µ i suffix ime JJoʡ @IN/$NNPSERB(\@NN/$@FW^I +߿VBNZd;OVBP-NNP333333ۿMDZd;OVBʡENNSrhi word flounderingVBGNbX9?JJbX9NN9vi-1 tag+i word DT goodyearNNPGzVBPGz?i-1 tag+i word NN retroactiveNNRQVBZV-JJM?i-1 tag+i word : ledVBN+?VBD+i-1 tag+i word DT bottomNNSQJJv/ @NNClJJSh|?5 i suffix uluNNPSDlNNPDl? i suffix lty VBNV-JJFxVBZZd;ONNPS~jtNNMb"@NNS rhNNP~jt?RBX9vVBD|?5^i+2 word prostitutesNNSA`"?JJX9vNN"~i-1 word administeredCCffffff?DTffffff i-1 word loseNNy&1@NNSV-RBR!rhJJS㥛JJR!rh?i+1 word huntersJJX9vNNX9v?i-1 tag+i word NN surprisedVBD`"?VBN1ZdJJ(\ i-1 word hellDT(\JJRʡEۿVBDm?i-2 word later RB"~VBZ;OnNNS;On?NNʡEVBNMb?VBPX9v߿JJRjtVBQ@JJClRBR?5^I ?i-1 tag+i word RBR harshJJI +?NNI +ֿi+1 suffix iacVBG`"VBNSJJffffff@i+1 word philipsVBZ^I +?VBP^I + i suffix nryNNPPn?VBPPnNNtV@JJtVi-1 tag+i word CC penaltiesVBZ`"ֿNNS`"?i word exercisedVBNv?JJ;OnڿVBD"~i word freddieRBlNNP$C?LSV-i-2 word unmaskVBNGz?JJGzοi-1 tag+i word VBD financingVBGQNNQ@ i word silverRBT㥛 VBZ"~NN +?JJ-?i-2 word firemanNN/$@NNP/$i+1 word tighteningJJK7?VBDK7i word sterilizingVBGCl@JJ;OnNNV-i-1 tag+i word '' becauseRBZd;INZd;?i-1 word unfoldedRB/$IN/$?i-1 tag+i word WRB referringVBGRQ?NNRQi+2 word stardomJJ\(\?NN\(\i-1 tag+i word POS diaperJJR/$NN/$?i-1 tag+i word NNS withdrawnVBN~jt?NN~jti+2 word houstonNNPSQNN"~j̿FWQJJq= ףpNNS%C?NNP ףp= @i-1 tag+i word NNS wokeWDTvVBDv? i-1 word byFWK7RBd;OINV-?RPENNSZd;O?JJK7A?NNI +?JJS&1VBN(\DT +?CD/$NNP$C?NNPSB`"?PDTʡEJJR(\?VBG}?5^I@RBSMbX9RBR&1i-1 tag+i word , speedingVBG`"JJ`"?i-1 tag+i word `` safeJJffffff@RBffffffNNffffffFWS㥛i word superefficientNNGzJJGz? i suffix hen PDTZd;OVBA`"?VBNQVBPMbX?JJx&1VBZ rhNNSʡENNP rh?NN}?5^I?i word flourishingNNSV-VBGMb?JJS?NN ףp= i word viacomNN= ףp=NNP= ףp=?i-1 tag+i word NN feltVBZnVBDn? i-2 word oct.``NNS{GzNNMbXJJV-?NNPv/@i-1 tag+i word NN arbitrarilyRBL7A`?NNL7A`i-1 word agenciesVBP~jt?NNSÿIN333333? i word driedJJSVBNS?i-1 tag+i word TO preventVBoʡ?JJoʡi-1 tag+i word TO coastVB;OnNN;On?i+1 word pizzaNNK7NNPK7?i-1 tag+i word PRP sweatVBClۿVBDCl?i+1 word splitsWDTCl?INClۿi+1 suffix ineRB?RPlҿNNzGVBV-WRBGz?VBGnVBP7A`?VBZ\(\ϿDT)\(?RBSx&RBR333333INK7ANNPQ?NNPSA`"JJRJ +@VBDJJQ?FW|?5^?PRPh|?5VBNZd;NNSbX9?CD9v?JJST㥛 @i-2 word provideNN~jt?RBRˡEJJRˡE?VBNGzJJK7A`?NNSQRBI +?i-1 word versionWDTMbX?INMbXi-1 tag+i word , deputyJJjt@NNPtVNNHzGѿVBNni-1 word streakJJX9vINX9v? i-1 word intoVBGK7A`?PDTDl?JJRzGCDB`"NNPSMbpNNA`"?DT\(\?JJ ףp= @RBR(\пRBK7A`ݿIN+NNPx?FWV-?VBPPnVBNHzG?VBZ$CNNSMb?i+1 word doubtsNNS9vVBZ9v?VB= ףp=VBP= ףp=?i-1 tag+i word VB controlsNNMbNNSMb?i-2 word improveJJ}?5^INNPM?NNSʡENNQ?i-1 tag+i word DT pressRBS+NNQ?NNPL7A`? i word lindenJJK7A`NNK7A`?i+2 word particularNNP/$NNPS%CNNS/$?RBK7A`INK7A`? i-2 word grewNN rhVBNMbRBK7A`ݿINK7A`?VBG rh?JJMb@i word cleanerNNx&1RBʡEJJ+JJRFx@i-2 word reboundedJJ(\?RB(\i+1 word quietlyVBx?RBxi+2 word materialVBoʡNN~jtӿJJGz?i+1 word uneasyPRPHzG?PRP$/$RBV-?JJB`"i+1 word tracersNNtVNNPtV?i-1 tag+i word NNP churchNNPSQNNPQ?i-1 tag+i word NN tasteJJZd;ONNZd;O? i suffix idoNNPuVNN/$?RB(\i-1 tag+i word VB plansVBZʡEVB`"NNSMbX?i-1 tag+i word WDT cambridgeJJSNNPS?i-2 word brightNNPv/NNA`"@JJuVCDQi tag+i-2 tag VBZ RBRPy&1?INMb?VBGv/JJ+?DTʡEPDTQ?RBSmJJSm?VBZ9v?NNQ@RBB`"VBNGzWPV-CD#~j?PRPFx?NNS/$?NNPx&ѿVB rh?RBR+?PRP$FxVBDJ +VBPMbXJJRni-1 tag+i word VBD determinedVBG!rhVBN!rh?i-2 word outfitNNPSMb?NNPMbi-1 tag+i word NNP microsystemsNNPSx&1@NNPx&1i-1 tag+i word JJ householdVBZd;ONNZd;O?i-1 tag+i word JJ statisticsNNPS`"NNS= ףp=?NNK7i-1 tag+i word FW castroNNPSClNNPCl?i+2 word mirandaVB+?NNP+i word airconditionerNN~jtCDNbX9JJRp= ף?i word chassisNNSx&1?NNx&1i-2 word splinterVBNQVBDQ?i+2 word indianaNNx&?NNPx&i-1 word naturalizedJJ!rhNNP!rh?i-1 word displayVBZK7A?NNSK7Ai-1 tag+i word , amusingVBGףp= JJףp= ?#i-1 tag+i word -START- announcementNNK7A?NNPK7Ai-1 tag+i word JJS monthlyJJMb?RBMbi-1 tag+i word NNP encounteredVBZ9vVBD9v? i-1 word guyNN +VBD\(\VBv?i-1 word votersVBN~jtVBD~jt?i-1 tag+i word VBD thoroughbredVBN|?5^JJ|?5^?i-1 suffix rreNN(\ſJJffffff޿NNPy&1?i-1 tag+i word CC suggestsVBZQ?NNSQi word strangerJJRMbXNNMbX?i+2 word accelerateVBsh|??NNsh|?i tag+i-2 tag PRP ,NNSS?NNPS㥛VBGz NN%CIN5^I RBS㥛?VBZp= ף?POSS㥻VBNV-VBPV-@JJ/$MDGz?VBGT㥛 VBDA`"? i word othersNNPSNbX9NNSn?NNP(\տi-1 tag+i word -START- oregonNNS㥛NNPS㥛?i tag+i-2 tag VB VB VBGMbX?VBN%C?VBPQ?INJ +RP(\µ?DTv?VBNbX9ؿJJ~jt?NNʡERB㥛 ?NNSףp= ӿi-1 tag+i word JJ organismsNNSRQ?VBNnNNS i word tapedNNtVVBN~jt?JJ}?5^Ii-1 tag+i word NN earnedVBNHzG@VBDHzGi word reasonedVBNV-?JJV-i-1 tag+i word POS thinkingNN~jt?VBG~jti word antillesNNP!rhNNPSQ?NNSZd;Oi+1 word floatingVBNh|?5?JJh|?5i+1 word gorkyNNZd;O?WDTnJJZd;OINn?VBZS㥫?NNSS㥫i+1 word concertJJ+?NN+ i+2 word suedNNPSV-?NNPV-i-1 tag+i word IN aseaNNPSDlNNPDl?i-1 tag+i word NNP interbankNNPS^I +JJl?NN'1Z?RB1ZdNNSZd;NNP$C? i word feltVBNq= ףp?VBPX9vRBHzGVBZy&1VB{GzJJ~jtNNNbX9VBDGz.@i+2 word bakedNNS;OnڿNN;On?i-2 word sigoloffNNV-?JJV-i-2 word keyedJJ~jt?VB~jti+2 word bonusesVBP rhNN rh?i-1 tag+i word DT canadianJJd;O NN&1?NNPJ +?i-1 tag+i word NNS providedVBNB`"ѿVBDB`"?i word awardingVBGHzGNNHzG?i+2 word consultingNNPSˡEWDT\(\NNˡE?INn?DT}?5^Iܿi-2 word curbedJJR-?RBR-޿i word vesselsNNSQ?NNQi-1 tag+i word JJ autumnNN9v?JJ9vڿ i-2 word gateDTS㥛?INS㥛i-2 word deukmejianVBP1ZdJJ1Zd?i-1 tag+i word NNP negroJJd;ONNPd;O?i-1 suffix dio RBRQNN`"?VBD+?VBP`"WDT%C?IN%CԿVBG(\VBN?5^I ?JJClǿNNP9v?i+1 word createsWDT)\(?IN)\(i-1 tag+i word -START- shareJJZd;O߿NNPK7NNʡE@ i word suitesVBZjtNNSjt?i-2 word limitVBZMb?JJM?NNMڿVBDMbi-1 tag+i word CC shotVB+VBD+?i-1 tag+i word TO adequatelyVBSRBS?i-1 word foreverNNnRBS@VBGZd;OJJHzGi-2 word chartsVB;OnNNx?JJ rhͿi-1 tag+i word PRP overINʡE?RPV-@JJSRBA`"i word painfulVBX9vJJ^I +@RBVBDq= ףpi+1 suffix fleNNS"~NN rh?JJ rhNNP"~?i-2 word morselsVB+VBNjt?JJMbi word registeredVBN5^I JJT㥛 ?VBDʡE?i-1 tag+i word VBD reportersNNS"~j?JJMbVBZ ri word imitateVBPGz?NNGzi-1 tag+i word JJ convertibleNN"~j̿JJ"~j?i+1 suffix hopRP+?JJx&1NNK7?JJRԿRB+NNP1Zd?i-1 suffix ungJJ"~jNNS(\?NNP|?5^NNPS'1Z?NNV-VBP(\@i word compatibleVBPSۿVBGjtJJQ? i-2 word hugsNNSS?NNSi-1 tag+i word VBD neededVBNZd;?JJZd; i word drawnRBlNNףp= VBNV-@JJDlNNSp= ףпVBS i+1 suffix ?NNPS/$ÿVBG%CRBRK7JJR(\?NNSPn?VBNtV@PRP$rh|NNZd;O?FW"~?VBPMVBZ~jtNNPV-߿VB9v@JJ(\VBDMbPRPy&1?RB+?IN(\?RPX9v?i-1 word entirelyVBN-?JJ5^I VBD%Ci-1 word deliveriesVBPA`"?VBA`"i+2 word equipmentNN1Zd?VBPCl?EXv/INw/NNPˡE?VBrh|RPJ +?JJv׿VBD;OnVBNQ@VBZ+?NNSMbؿNNPS~jtȿRB5^I ?i-1 tag+i word JJ petNN(\NNSNbX9JJZd;? i+1 word newFWClVBGl?NNS(\RBR +DT5^I ?VBDsh|??PDTI +POSQ?VBN'1ZJJX9v?CD?VBZ+?NNPZd;OVBffffff?RB"~j?WDTPnPRP$x&1?VBPZd;?RPrh|?NNK7INE?!i-1 tag+i word -START- consideredNNSVBNMb?NNPT㥛 i-1 tag+i word VBN rumblingsNNS!rh?VBN!rhi word lettuceJJL7A`NNL7A`?i-1 tag+i word NN transferRBNbX9VBPS㥛NN#~j?i+1 suffix rtyNNPx&1@VBNZd;OǿJJzG?VBGA`"@CDV-WDT/$IN7A`?DT`"NNKVBDV-?POS%C?NNS333333VBV-NNPSSi-1 tag+i word IN '86CDCl?NNPnNNP~jti-1 tag+i word VBG neckJJR-NN-? i+2 word fiveRBR$C?NN/$?VBPA`"˿NNPRQCD;On@NNS㥛 ¿NNPS%C?RPJ +ɿJJoʡݿJJRI +?RB#~jVBZZd;VBsh|??VBDQ?POS;OnUH(\INJ +?VBGm? i suffix mixVB;On?NNSZd;NN1Zd?NNP㥛 ? i+1 word toryNNGzJJGz?i-2 word vividJJV-?NNV-׿i+2 word fourthNN\(\VBN(\?JJX9v?INT㥛 VBX9vRBT㥛 ?i-1 tag+i word JJ democratNN333333NNP333333?i word entitlesVBZZd;O?NNSxVBDx&1i-1 word televideoNNPDl?NNPSDlٿi-1 tag+i word -START- norCC +@NNPd;OWPףp= NNffffffCDJ +i+2 word midafternoonRPV-?RBV-i-1 tag+i word VB earlyJJ|?5^ @RB|?5^ i-2 word donationsJJZd;ONNPZd;O?i-1 tag+i word -START- gainsVBZQNNS9v?NNPV-i-1 tag+i word CC parJJ%CNNxIN|?5^@i-1 tag+i word NN moonieNNSQNNQ?i-2 word soaredVBDw/?VBNw/i word solubleJJMb?NNMbؿi-1 word lengthenedVBG+NN/$?JJbX9ֿi-1 tag+i word NNS floatVBffffffVBP;On?RBRMbпi+2 word explanationNNPSFx?RBR"~?JJR"~PRPx&CDx&?NNSFxѿi tag+i-2 tag ( TOVBZd;?NNZd; i word arenaNNv?RBZd;OտJJV-i-2 word breakdownsVBN~jtJJ~jt?i+2 word fancyRP+?NNSy&1JJQi word comparesVBZxi@NNSX9vVBGRQi-1 tag+i word NNP firmNNK7A`?JJRQNNP333333i-2 word cairenesVBN+?JJ+i+2 word municipalsNNSlNNl?JJ#~j?VBN#~jܿi-1 tag+i word NN stadiumNNSClNNCl?i-1 tag+i word CD degreesNNSZd;?NNV-VBZ!rhi word pitfallsVBDVBZ/$NNS/$@i+1 word hyperinflationVB9v?JJ9vi-1 word trickleRP7A`RBʡEINʡE?i-1 tag+i word RB blameVBPX9vVBX9v?i+2 word photocopiersVB/$տVBG/$? i+1 word bangNNPV-?VBNQJJy&1i-1 tag+i word DT barroomNNzG?JJzGi word bottledVBNnJJn?i-1 word guestVBN rhVBD rh?i-1 tag+i word NNP motorsNNPS/$?NNS(\NNPjt?i-1 tag+i word JJ customsNNS+?NN+i-1 word indirectlyVB~jtJJ~jt?RB?5^I ҿIN?5^I ?VBZK7?NNSK7i+2 word authorizationNNPOn?VBZd;ONNS~jt?POS/$?NN- i-1 word yorkVB-VBGVBN(\VBZQNNP!rh?NNPS$CVBP\(\?JJM@VBDGz?RB1ZdNN'1Z @FWSRBRv/?NNSV-i-1 tag+i word , clothingVBG/$NN/$?i-1 word twiceDTh|?5?RBuV?INGzi word aviationNNPtV@NNPnпJJoʡVBD~jti-2 word pendingJJK7?VBZOn?NNS"~VBGZd;ORBSNN~jtx i word c.d.sNNS"~@NNQNNPJ +NNPSMbX9?i-1 tag+i word -START- meaJJw/NNPw/?i word confessedVBN/$?VBD/$i-1 word predictingJJ rh?NNxRBףp= ?VBNV-i+2 word printingVBGV-?JJ333333@NNx&1NNPZd;Oi+2 word subtractedWDTX9v?INX9vֿi-1 tag+i word ( liborVBPʡEVBNHzGNNP-?i+1 suffix elaFWS㥛?NNS}?5^IܿNN}?5^I?NNPS㥛i word focusedVBNK7JJZd;?VBDA`"?i-1 word indicationWDTSINS?i word solvingNN +JJffffffNNPzGVBG/$@i-2 word populationRBDl?NNINL7A`?VBK7VBPK7?i word steppedVBPNbX9VBNFxVBDJ +?i-1 tag+i word RB thoughtVBGzVBNףp= ?NN +޿VBDI +?i-1 tag+i word IN journalistNN"~?JJ"~i word buildingVBGQNNlq@JJNNPʡEVBZi-1 tag+i word VBD satisfiedVBNzGJJzG? i word steepJJw/ @NNSClNNzGRB= ףp=i-2 word undressVBZ= ףp=?NNS= ףp=i-1 tag+i word IN violettaJJʡENNPʡE? i+2 word anyRP9vJJ`"?RB%C?CDQ@NNP(\?NNQVBDS㥛IN|?5^RBR{Gz?VBGrh|?NNSl?VBNuVDTlVBZFxVBX9v?NNPSbX9EX1Zd?JJR/$i-1 tag+i word NN diesVBZS?NNSSi-2 word becauseFWVBZA`"?NNSS?MD rh?VBx&RB?CD333333?VBNMbX9VBPCl?POSQIN333333DTX9v?NNPQ?VBG}?5^IVBD(\?JJ-?NNK7ٿi word recaptureVBV-?VBPV-ڿi+1 word bollingJJffffffƿNNPffffff? i suffix xusNNSClNNFx?NNPw/?i-1 tag+i word , allPDT= ףp=RBV-@VBZK7DT-?NNPNbX9NNni+2 word languishesNNx&@IN/$տWP-NNP333333i-1 tag+i word , grabVB^I +?VBPClǿJJMbX9 i suffix lifNNP/$?NN/$i word roundedVBDsh|?VBNSJJ}?5^I?i-1 word ferreiraNNPʡE?NNQIN9v i suffix bly NNPS1ZdۿNNrh|VBZ ףp= VBPA`"UH= ףp=RBT㥛Ā3@NNSV- NNP/$VB- JJV-VBN`"i+1 word crudesNN'1ZJJR'1Z?JJ'1Z?i-1 tag+i word IN faceliftsNNSOn?NNOni word blitzesNNSGz?NNGzi-1 tag+i word NN stepRBp= ףNNp= ף?i-1 tag+i word , offersVBZ|?5^?NNS|?5^i+2 word equivalentRBL7A`?VBK7ANN-NNSMbX@JJ!rhܿi-2 word casualVBGm?NNm i-1 word ever VBGn?JJmVBDCl?JJR(\?VBPJ +RBGz?IN}?5^I̿VBˡE?NNQ VBN~jt?VBZʡE?i+2 word irradiatedWDT{Gz?IN{Gzi-1 tag+i word VB ambleVB+?JJ+i word providenceNNS㥛NNPS㥛? i word adDToʡNNV- @JJMbXRB!rh̿NNPv/i-1 tag+i word IN nagsNNSx&?UHx&i-1 tag+i word VBP undervaluedJJVBN?i-1 tag+i word RB forgotVBNQ?VBDQi+1 word utilitiesVBNDlRB?5^I DTNNP5^I  @JJ|?5^ٿNN|?5^CC?i-1 tag+i word VBZ hauntedVBD㥛 VBN㥛 ?i-2 word dialsJJHzG?NNHzGi-1 tag+i word -START- sharpJJ(\?NNP(\i-1 tag+i word DT predominantlyRBףp= ?JJףp= i-2 word priceVBZOn?NN7A`?WDTMڿNNSSVBGz?VBP(\VBGjt?VBDX9v@RBtVJJRbX9?INK7A` @RBRbX9VBNjtRP"~JJ7A`?CC i word lardVBNw/NNw/?i-1 tag+i word IN consensusNN)\(?RB/$NNP9v?i-1 tag+i word POS actingJJ^I +?NNA`"VBG333333i-1 word attorneyVBD(\VBNM?VBPA`"JJsh|??NNPh|?5RBmNNK7A?i word deukmejianJJ= ףp=NNP= ףp=? i suffix ahsFW-NNSV-@JJxNNˡEԿVBDS㥛i-1 tag+i word IN congressionalJJzG@NNPzG i suffix oks NNP㥛 MD-VBDq= ףpJJRV-RBRK7WDT rhVBZ)\@VBʡENNJ +JJClNNSʡE@i+1 word thievesNNJ +?JJJ + i word judgedVBNK7@NN1ZdVBD\(\i-1 tag+i word RBR classicalJJ+?NN+i-1 tag+i word `` masterpieceVBPnNNPPn?i word sweatshirtJJsh|?NNsh|??i+2 word bearableJJI +?NNI +i word baselessJJ{Gz@RBRV-NN&1i-1 tag+i word JJ depositaryNN7A`?JJDl?NNSuVi+1 word reactionsVBN;On?JJx&1?VBP rRPClѿi word tiffanyNNZd;ONNPZd;O?i-1 tag+i word VBP expressedVBDI +VBNI +?i-1 word contactingPRP$)\(?PRP)\(i-1 tag+i word CD costsVBZ rh?NNS rhi word consistentlyNNS\(\VBNMRBˡE@i-1 word insteadVBx&1?VBPx&1VBNxVBDx?i+1 word swiftNNp= ףNNPp= ף?i+1 word cigaretteNNA`"?JJA`"i-1 tag+i word DT exportNNp= ףJJp= ף?i tag+i-2 tag ) VBRB(\?NNSJJZd;OVBNZd;?i-1 tag+i word `` bringVBGX9vֿVBX9v?VBPPni-1 tag+i word RB trippedVBNn?VBDni-1 tag+i word NN bNNq= ףpNNPq= ףp? i-2 word mtmNNm?NNSmi word partnersNNP9vNNPS#~j@NNS/$ i-2 word tagsVBN$CۿVBD$C?i+2 word startingNN\(\?WDTx?RBuV?INxNNP\(\߿RPuVi-1 tag+i word FW francaisesNNS%CԿNNP%C?i-1 tag+i word VBZ markedlyRBffffff?JJffffffi-1 tag+i word RB provokedVBNOn?JJOni-1 tag+i word CD gallonNNSQNNS?JJ~jti-1 tag+i word VBZ sidewaysNN~jtNNSʡERBQ@i-1 tag+i word NNS casualtyNNPS~jtNNP~jt?i-2 word cheeringRB9v?DT9vi-1 tag+i word WP$ principalJJn?NNni+2 word gillettNN)\(?JJ(\ڿVBD ףp= i-1 tag+i word NN amountedVBN7A`VBD7A`?i-2 word operatorsJJv/INvVBx&1VBP㥛 ?RPv?i+1 word parentsVBףp= VBGS㥛?NN"~jVBNHzG?JJT㥛 INM?i+2 word citiesRB㥛 IN㥛 ?i-1 tag+i word NNS oughtMD ףp= ?RBMbX9VBDB`"i-1 tag+i word JJR tidesNNSv/?NNv/Ϳi-1 tag+i word JJ televisionNN rhտNNP rh? i word prebonJJClNNPCl?i word enhanceVB(\@VBP#~jNN~jti-1 tag+i word NN suedVBZrh|VBDrh|?i-1 word reflectedVBG7A`JJZd;O@NN~jti+1 word workers NN㥛 VBPMbNNP/$տVB%C̿NNPSl¿VBNlCDbX9?WDTEJJ&1@INE?VBZʡE?NNS333333i-1 tag+i word NNP arabiaNNPS'1ZNNP'1Z?i-2 word multifamilyVBNX9vVBDX9v?i+2 word megargelINʡE?RBʡEi-2 word fundedRB|?5^?IN|?5^ i-1 word gene NNPCl?VBN;OnIN}?5^I̿VBZh|?5DTV-NNSw/?RB㥛 ?NNsh|?VBDsh|??WDT/$?JJffffff?i-1 tag+i word NN sustainedVBN#~j?JJV-ǿVBDni-2 word customizedNNSuV?NNuV i-1 word b.NNPS5^I NNP5^I ?i+1 word constitutionNNPSL7A`NNPL7A`@i-1 tag+i word RB consultedJJS㥛VBDZd;VBN= ףp=?!i-1 tag+i word IN commercializingVBGOn?NNOni+2 word brobergJJ#~j?CD#~jܿ i word tooVBP'1ZԿUH-RB$C@NNP&1i-1 suffix redNNd;O?VBMbX9PDT{Gz?RBR?NNPS rh?JJR~jt?DT/$ֿRPZd;?CCffffff?INrh|?UH(\ҿVBD(\?NNP^I +?RB㥛 ?JJSMbP?VBP{GzJJX9vWDT1ZdNNSQ?WRBzG?RBSMbPCDMbX9VBGxVBNV-i+1 word peddlingNN(\?JJx&INV- i suffix .A.NNPS|?5^NN?JJX9v޿NNPd;O@ i-1 word wallNNv?VBDvi-1 tag+i word NN kristinNN/$NNP/$?i-1 tag+i word RB controlVBZ+VBPMbX?JJA`"NNMi word steelmakerNNNbX9?VBDNbX9i+1 word stringentRBRGz?JJRGzi tag+i-2 tag NNP IN''9v?JJxPOSQ?NNSMNNPSzG?WDTGz?DTnIN9v?VBZMbX?VBS?JJR/$FWw/?PRP+NNPrh|?VBG{Gz?RP(\пPDTʡERB!rh?RBRClCDh|?5JJSX9vVBP~jt@MD+?VBDDl@VBN rh NNMbCCV-?i-1 tag+i word JJ teamsNNS~jt?NN~jti+1 word worriesJJp= ף?NNp= ףi-1 word deliveredVBMbX9RBMbX9?i+1 word gallopingNNK@VBN|?5^JJ|?5^i-2 word packagesNNSQNNK7?JJZd;NNP!rhi-1 tag+i word VBZ moreINV-RBRuV?JJR rh?i+2 word enthusiasmNN?5^I ?JJ?5^I i-1 word ideologicalNN+?IN+i-1 tag+i word CC dairyNN{Gz?RB-JJ|?5^ڿi-1 tag+i word JJ carefullyRB?NNi-2 word compromiseNNSX9vVBS@NNX9vVBDPn?PDTMbVBNPnJJMbDTMb?i-1 tag+i word CD loadedJJq= ףp?NNtVVBD%C i suffix .35JJ)\(CD)\(?i-2 word unnecessaryEXn?RBni-2 word operateNNK7?JJK7i word extraordinaryJJx&1?NNPx&1i-1 tag+i word IN informedVBNZd;OVBDZd;O?i+2 word chemical VBtV޿VBNV-WDT㥛 ҿINMbNNPʡEDTw/?JJRJ +JJ#~jNN?5^I ?RBRJ +?VBPFxɿRBRQ?VBZ#~j?i word academiaNNHzG?JJHzGi+2 word withoutNNE?INX9vRBRClDTS㥛?RPGzVBGK7ɿCD1ZdPRP$ʡE?VBD(\VBI +VBPJ +?PRPʡEJJQ?POS\(\?RBV-?JJRCl?VBZ\(\߿NNP9v i word oxygenNNSS㥛NNn?JJS㥛 i suffix rrsVBZuV?RBGzVBDw/Կi-1 tag+i word , buysVBZHzG?VBHzGi word headquarterJJV-?NNjtJJRli+2 word perellaJJ^I +NNP^I +? i word hackerJJʡENNʡE? i word deskRBffffffJJ{GzNN~jt@NNS~jti-1 tag+i word IN pcsNNSCl?NNPCl i-1 word sfeNNPS ףp= @NNSlNNPd;Oi-2 word street VB rhѿVBGI +JJT㥛 ?NNoʡJJR"~?VBZy&1?NNP7A`?VBP;OnRBDl?i+1 suffix ddyNNE?JJ9vNNPCl?VBGffffffi-1 tag+i word DT efficientJJ-?NN- i suffix ern CDVBP r?NNP(\?MDv/NNRQCC\(\JJV-o!@DTZd;ONNS5^I  VB+ÿNNPSCli-1 tag+i word NNP acceptancesNNPS^I +?NNP^I +i+1 word chlorofluorocarbonsWDTV-ݿJJzG?NNzGINV-?i-2 word corrugatedNNSClJJoʡ?RBHzGi+1 word couplesVBNQ?JJQi word palatialJJffffff?NNffffffi+2 word bashingNNSrh|?NNrh| i word barberNNzG?JJB`"NNPL7A`堿 i+2 word tileVBZX9vVBPX9v?i-1 tag+i word IN relevancyNNS +NN +?i+1 word grindsJJ-NN-?i-1 word supposedlyVBZ㥛 VBD㥛 ?i-1 tag+i word VBZ perJJRL7A`INL7A`?i-1 tag+i word JJ executiveVBjtVBPV-NN!rh?JJd;ONNP|?5^?i-1 tag+i word CC unpaidJJQ?NNQ i word ftcNNoʡſNNPoʡ?i-1 word speculatorsJJ(\?VBP(\i word privateVB/$JJX9@NNMNNPCl i+1 word corporationsIN/$?WDT/$NN\(\?JJV-NNP;Oni+1 word happyNNPS"~j@JJ"~ji-1 tag+i word NNS slammedVBP㥛 VBD㥛 ?i+2 word endedPOSnRB ףp= NNPw/JJp= ף@NNQ?i+2 word hartleyJJMb?CDMbi-1 tag+i word NN backwardRBsh|??NN`"INQi+1 word balancesWDTMbX9?INMbX9Ŀi-1 tag+i word NNPS jumpsVBPV-ϿNNS{GzNNPmVBZv?i-1 tag+i word PRP feelVBZClVB"~j?VBP~jt?RBClNNV-i word pageantVBNSNNS?i+2 word returnedNNPrh|?NN|?5^?JJ!rhi word weakenedVBNjt?JJ)\(NNPZd;i-1 tag+i word IN underlyingVBGv/JJv/? i+2 word pereVBZA`"POSA`"?i-1 tag+i word VBD pretaxJJ5^I ?NN5^I i+1 word jurisprudenceVBD?NNPS rпNNP/$i-1 tag+i word RB focusedVBNSVBDS?i+1 word nostalgicRBMbX9?JJMbX9ܿi+1 word moderateRB/$@JJQJJRK7ѿi+2 word requiringNNʡE?VBNS㥛ĿJJ(\i-1 suffix useWDTx&1JJB`"?VBZy&1?RB?5^I VBGw/?VBD/$@VBN`"?VBP rhNNPSoʡտJJSoʡ?JJRZd;?RBSoʡݿEXMbX?RP/$FWPn?TOK7NNSSNNQ?NNPDlVBS㥛INuV?PRP$V-?PRPV-i+2 word avoid MDʡEVB/$޿NN\(\JJRQJJOnVBZMb?VBD{Gz@VBNy&1?VBPQ?i-1 tag+i word RB altogetherJJRMbRBMb?i-1 tag+i word VBZ sunyNNq= ףpNNPq= ףp?i+2 word attacheNN(\?NNP(\i-1 tag+i word POS cartNNSxNNx?i-1 tag+i word VBG pollenVBN5^I ˿NN5^I ? i-1 word jujoNNPS㥛?FWS㥛i word journalVBPZd;ONNx@JJ"~ i-2 word kemperNNPSQ?NNSsh|?NNPQտi-1 tag+i word DT becomeVBD(\@VBP= ףp=ڿNNlJJ|?5^CDGzi+2 word monitoringNNJ +VBNGz?JJM?VBZ(\?DT(\NNS(\i+2 word negotiatorsINsh|??JJsh|?ݿi-1 tag+i word NN tapingVBGPn?NNPni+1 word notwithstandingNNPA`"NNjt?JJL7A`i-1 tag+i word NNP freezeNNm?NNPmi word figuresNN+VBDh|?5JJw/VBZsh|??NNSbX9H@NNPi-2 word belowJJGz߿NNGz?i+2 word replyRPEȿRBE? i-1 word busyVBG"~j@JJT㥛 NNS㥛i+2 word carefulVBNMbXJJMbX?i-1 tag+i word CC rumpledVBnVBNZd;OJJHzG?VBDS㥻i tag+i-2 tag RBR ,RBmݿVBNV-?NNjt?NNS\(\JJ ףp= i-1 tag+i word VBN fallowNN rhѿRB;OnJJCl?i-1 tag+i word VBZ expectedVBN|?5^?JJ"~jVBDMb?i+1 word manuallyNNSx&NNx&?i word chineseNNSS㥛ؿNNP r?VBʡENNPS333333?NNrh|JJףp= ?i+2 word turnaroundCCL7A`VBDL7A`?i-1 tag+i word DT troNN|?5^?NNP|?5^i-1 word degolNNPST㥛 ?NNPT㥛 пi tag+i-2 tag RBS VBDRBd;O?JJ\(\ϿNNSVBNJ +?i-1 word unsentimentalNNS+?NN+i-1 tag+i word JJ daysNNPSK?NNPKi-1 tag+i word , involvedVBN㥛 JJlVBDuV?i-1 tag+i word NN lensNNS(\NN\(\@VBZQ i+2 word bearNNSOn?NNOni-1 word momentarilyRBClINCl?i-1 tag+i word WP$ faceVBSNNS?i-2 word proportionsNNS-?NN-i word greenhouseJJ= ףp=VBV-VBP7A`NN|?5^@i-1 tag+i word WDT rangeNN^I +VBP^I +?i+2 word directors JJR\(\WDT(\IN(\?VBG rNN\(\?VBP-?VBZ-NNPzG?NNPS%C?i+1 suffix ellNNS&1?WDT;On?VBZ)\(JJo!NNP/$@MDRQ?VB333333NNNbX9@VBNMb?RBR ףp= VBP?5^I ?RB%C @INNbX9VBG1Zd?VBDw/i-1 tag+i word VBZ fidgetingJJ#~jܿVBG#~j?i word handsomeJJZd;O?NNSVBN$Ci-2 word confessingJJGz?NNGzi-1 tag+i word -START- messrs.NNP(\NNPSCl?NNx&i+1 word monitoringINw/?VBZ(\?NNS(\JJx&?NN~jtVBNM?RBuVi-1 tag+i word JJ salariedJJx&1?VBNNNjt i-2 word inVBDd;OVBNV-JJSzGEX~jt?CCv?WPrh|?RPy&1NNSv/?VBPK7A?JJv/?VBZClCDI +޿JJRQſRBRsh|?VBGZd;ONNQ?NNP(\?UHRQ?FW~jt?POSV-?PDTS?NNPSSſRBS{GzINrh|?WDT㥛 DT/$?RB rhVBx&1?i-1 tag+i word IN substitutingVBG/$?JJ/$޿i-1 word contractorVBN"~jԿWDTw/?INw/NNPNbX9?NNPSNbX9VBD"~j? i word cantorNNENNPE? i suffix oyaNNNNP?i-2 word worldwideNNoʡNNPoʡ?i-1 suffix renVBZB`"?NNSClNNP'1ZNNPSp= ף?NNy&1RB}?5^IԿINS?i+2 word arguedNNPSrh|?NNPrh|i-1 tag+i word VB norieganJJ(\?NNP(\i-1 tag+i word PRP$ asianJJ?NNPi-1 tag+i word NN collateralNNʡE?JJʡEi word hitchesNNSZd;?VBNZd;i tag+i-2 tag IN POSVBGClNNSK7A@JJ(\?NN(\NNPQi+2 word precedeNNx&?JJx&i+1 word proceduralNNPX9vJJX9v?i-1 word furiouslyVBVBP?i-1 tag+i word NNS believeNNʡEIN+VBI +޿VBPtV@i+2 word spencerPRP$mNNSKNNP(\?i-1 suffix reaNNPrh|VB/$RBx&?VBDrh|?VBPX9v?JJ/$INX9v?i+1 word passengersVBG+JJtV?NNʡEӿNNPjt޿i-1 tag+i word , forecastJJ}?5^INNjtVBDCl?VBNV-@VBP+?RBVBZMbi-2 word opportunityVB(\@NNX9vJJ&1i-1 tag+i word JJ troopJJ-NN-?i-1 tag+i word , thinkNN(\?VBPNbX9EX7A` i word cannesNNPS!rhNNSQNNPʡE@i-1 tag+i word RB stemsVBPvVBZv?i word mammalianJJK7A`?NNK7A`i-1 tag+i word RBS positionedVBN +VBD +?i+1 word healthcareRBQֿINQ?NNP5^I ?JJ5^I VBD"~j?VBN"~j i+2 word mrs. WDT rINQ?VBZ?5^I ?NNPffffff@JJx& RBRKVBPFx?VBNm?RBQ?NNSffffffVB rhͿNN/$?VBDx&1ȿ i+2 word norcNNSNbX9?RBNbX9i-2 word shakeVBZK7NNSK7?RB(\NN;OnNNP(\?i word testifiedVBNtVNNGzVBDˡE?i+1 word infringementNNX9v?JJX9vi word toxicologistNNjt?JJjtĿ i suffix nkaJJMbXNNPMbX?i-1 tag+i word DT stomachsNNSCl?NNCli-1 tag+i word IN membersNNPSV-NNS-@NNPMbX i word coyJJ/$?NN/$i-1 tag+i word NNPS industriesNNPSK7A?VBZK7Aпi word electricityVBPKNNK?i-1 tag+i word -START- norcNNHzGNNPHzG?i-1 tag+i word RB sellingVBG`"?JJ`"i-1 word beverlyVBZK7A`NNPS/$?NNPxi+2 word installationsVBZ#~jNNS#~j?i word directedNNPX9v?VBN)\(JJv/VBD333333?i-1 tag+i word DT occasionalJJbX9?NNbX9ƿi tag+i-2 tag CC RPVBsh|?@VBGM?VBD%C?VBNB`"VBPMbXVBZ9vNNSRQi+1 word drawnNNSl?NN`"VBDlVBP`"?i-1 word summersJJl?RBlҿi-2 word prudentVB$C?NN$Cӿi+2 word solidNNV-JJV-?i-1 word riskyNNK7?RBK7i+2 word respondedNNP'1Z?RBSQNNPSMbX9?NNSp= ףNN= ףp=i word relatesVBZ/$?NNS/$i-1 tag+i word CC urgedVBNNbX9VBDNbX9?i-2 word bottledNNQRB}?5^IJJCl?i-1 tag+i word NNPS reportedVBNnVBDn? i+2 word pacePDTS?RBRV-?JJSJJRV-i-2 word drillersRB%C?JJ%Ci-1 tag+i word PRP$ quarterlyVBDNNq= ףp?JJZd;@RBMbXCDGzi word treasurerNNP+η?NNPS$CNNB`"[@VBNsh|?JJw/NNSV-i-2 word candidateNNZd;O?JJZd;ORB#~j?IN#~ji+2 word takeover VBPuVͿJJh|?5VBZ9vNNPCl?VBG^I +?RBCl@NNS㥛 ڿVB^I +NNJ +i-1 tag+i word DT butcherJJRԿNN?i+1 word testsJJ(\VBNKNNMb@NNP ri+1 word styleNNPy&1?PRP$S?NNPSy&1VBGʡENNMb?VBP'1ZPRPSJJPn?i-1 tag+i word RB debateVBPq= ףpNN̿VBp= ף?i-1 tag+i word VBD controllerVBN{GzNN{Gz? i word booneNNPSx&1̿NNPx&1?i-2 word debtsNNSV-VBNV-? i word minusVB|?5^RBffffffNNq= ףpCCT㥛 @VBPQJJPnIN+@ i-2 word sangNN\(\?JJ\(\߿i-1 tag+i word VB overseeNNMbpVBZd;O?RPMbJJ;On i-1 word seaRP'1ZIN'1Z?VBZʡENNSʡEͿNNP$C?NNPS&1?i+1 word inaccurateJJPnVBDCl?RBPn?VBNClٿi-1 tag+i word JJR fitsVBZ-?NNS-ƿ i-1 word lowRP/$RB&1?NNzGJJv/?IN?NNSI +i-1 tag+i word PRP rarelyRB+?VBD+i-1 tag+i word VBP senseNNq= ףp?JJL7A`NNPJ +i-1 tag+i word , publisherCC#~jNNCl?RB`"JJ= ףp=i-1 tag+i word PRP likeVBGzVBPʡE@INQVBD+i-2 word amendmentVBQ?JJQi-2 word solelyNN= ףp=VB)\(?VBGv?JJ +? i+2 word goalDTMb?INMbi-1 tag+i word ( kVBN-NN-?i-1 tag+i word NNS tryVBv/VBP;On@NNGzi word nazionaleJJ'1ZNNP'1Z?i-1 tag+i word NNP christieNNP(\?NNPS(\i+2 word relaxingJJZd;?NNZd;i word parkhajiNNʡENNPʡE?i+2 word wisdomJJ?NNSVBN +ο i suffix ingVBGR1A@NNS/$NNPQ?RBRX9vNNPSGz WDT9vRB9v RPV-VBDuVVB{GFWףp= JJn@VBZ rhDTZd;׿NNPn@PRP^I +CDV-INuVVBNJ +VBPףp= UHzGڿJJS\(\?JJRV-i-1 tag+i word NN pitchingVBGoʡNNoʡ? i suffix creVBZp= ףNNSV-JJPn?NNrh|?NNPv/i word allergicVBP rRPClѿJJ#~j?i+1 word somebodyVBZ-?NNP-RB\(\IN\(\@i-1 word burgessVBZSNNS?NNGz޿FWʡEi-1 tag+i word DT charitableJJOn?NNOni tag+i-2 tag NNPS VBNNN{Gz?JJ{Gzi+2 word lesserNNjtJJjt? i word lobbyNN^I + @JJ rhVBDOnVBGz?VBNGzi-1 tag+i word PRP$ turfNNT㥛 ?JJRQNNPV-i-1 tag+i word NN subsidyVBN#~jNN#~j?i-1 tag+i word JJ antitrustNNS^I +JJ!rh?NNK7A`ݿi-1 tag+i word NN leansVBZ333333?NNS333333i-1 tag+i word DT territoryNN/$?JJ/$i-1 tag+i word , starNNSNNPS?i-1 word collectedJJRʡE?RBRʡEi word pilgrimPDTX9vNNS^I +NNP~jt?i-1 tag+i word NNS persuadesVBZd;O?NNSHzGѿINʡEi-1 tag+i word , statisticsNNPSK7?NNS%CNNP-ۿ i-1 word timNNPSPnNNPPn?i+2 word youngerRBHzG?JJHzGi-1 tag+i word CD chileanJJQ?NNPQi-1 word thought NNSRBRtVJJRtV?CDHzGINx&1?DTK7RP(\JJK7A`RBZd;@i-1 tag+i word JJ trendsVBZQNNSQ?i-1 tag+i word NNP insightsNNPSCl?NNPCli-1 tag+i word JJ stimulusNNMb?JJEVBDKi-2 word speculatedNN7A`JJZd;O?INZd;ONNS7A`?i tag+i-2 tag VBG ''NNSQJJQ?i+1 word country DT\(\?NNP ףp= ׿NNJ +VBN-PRPʡEJJJ +@IN/$տPRP$ʡE?WDT+i-1 tag+i word IN sensitiveJJGz?NNGz߿i+1 suffix nlyVBI +VBG5^I  @NN-?JJSv/RB rhտMDn?RBSv/?VBPQEX-?NNPS㥛VBZE@JJʡE VBD+?WDTʡEIN r@RP/$DTT㥛 NNPS{GzNNSjtܿVBN?5^I @ i word vowedVBZ|?5^VBNOnVBD= ףp=?i-1 tag+i word -START- revenuesNNPSh|?5NNS(\?NNP/$޿i-1 tag+i word DT waitingVBGףp= ?JJ|?5^NN9vڿi-1 tag+i word VB haveVBQ?VBPQ i suffix ctoRBJJK7AFW!rh?i-1 tag+i word VB suitNN ףp= ?RB ףp= i-1 tag+i word VBD properlyRB{Gz?JJ{Gzi-1 tag+i word NN defenseNN/$?NNP/$i-2 word hampshireRPw/RBw/?JJDlNNPDl?i+1 word barbaNNx&1пNNPx&1?i+2 word revolutionVBDl?VBDDli-1 tag+i word VB broaderNN333333JJR&1?JJ/$i-2 word posnerNN?JJ i word rebelVBPClǿNNS`"NNT㥛 ?JJ?i-1 tag+i word IN meredithNNPSx&ѿNNPx&?i tag+i-2 tag NN CCVBGjtVBNPnRP9v?PRP$B`"JJZd;?VBZMbX9DTZd;?CC~jt?INZd;O?NNPS|?5^?WDTS㥛NNl?RBjt?VB rhFWʡE?VBPDl)@VBDOnPOS/$PRPMbX9?NNS?NNPClCDy&1|JJRh|?5? i word knightNNPS'1ZVBNw/NNw/?NNP'1Z?i-2 word explorationVBGS㥛JJjt?NN^I +?VBD%C?VB%Ci+2 word concernedRB"~NNq= ףpRBRA`"?JJRA`"JJ"~?NNPV-?VBq= ףp?NNPSV-Ϳ i word womenJJMbNNPMb? i-2 word sawNNK7AVBP&1WDT ףp= JJl?IN&1?NNS)\(VBףp= @ i-1 tag+i word IN collateralizedVBNX9vJJ;On@NNoʡ i-1 word weekNNSHzGNNuVVBNDl?VBZףp= RBZd;O@VBPbX9?JJV-?DTuVVBDMbRBRGzPOSJ +?WDTq= ףpINHzG?VBG7A`ڿi-1 tag+i word `` theirVBZZd;PRP$V-?JJS㥛i+1 word rapidementFW)\(?NNPnIN+i-2 word trade VBNMbXVBP;On?JJw/ԿINGzVBZ}?5^I?NNPx&@RB)\(NNjtVBD㥛 ?RBRJ +?WDTCl绿NNSy&1i-1 tag+i word NNPS winVBMڿVBPM?i-1 tag+i word -START- amidDT(\VBP;OnPDT(\ҿRBffffff޿IN|?5^@i-1 tag+i word JJ chunkNN7A`?JJ7A`i-1 tag+i word VBD submittedVBNJ +?JJ~jtRBRX9vi-1 tag+i word NNPS passedVBNJ +VBDJ +?i-2 word serialVBP`"?IN`"i word warriorsNNSK?VBNKi-1 tag+i word NNP giantsNNPSx&1?NNSDlNNPQi-1 tag+i word IN marginaliaNNSjt?NNjti word prostituteNNHzG?JJHzG i word showsJJK7VBZQ @NNSMbX @NNPV-NNmVBDNbX9VBPNbX9i-1 tag+i word -START- nortonNNX9vοNNPtV?CC"~ji-1 tag+i word DT jacobsonNNPS|?5^ɿNNq= ףpݿNNPx&?i-1 tag+i word NN noteJJy&1RB'1ZINGzVBPZd;O?NNZd;@i-1 tag+i word NN pushedVBNq= ףpͿVBDq= ףp?i-1 tag+i word JJ accordNNPS~jtNNV-?NNPQ?i-1 word helpsJJL7A`VBMbX@NNSnNNK7i-1 tag+i word IN managerialNN!rhJJ!rh?i-1 tag+i word DT hiringVBGˡE?NN$C?JJ%Ci-1 tag+i word -START- leasewayNNPB`"?RBClNNrh|Ͽ i word pleasNNSGz?NNGzi-2 word briberyNNx&1?VBx&1i word stretchingVBGuV?NNuV i suffix ArcNNPSnNNPn?i-2 word powersVBv/?NN"~JJv/FW"~?i+2 word learningNNS㥛 NNPS㥛 ?VBGˡE?VBN/$?JJV-i-1 tag+i word NN standsVBZ%CԿNNS#~jNNZd;?i+2 word cronkiteNN/$?IN/$޿i-1 word strangeNNS rh?NNxNNP)\(?NNPS$Ci-1 tag+i word CC suchVBjtPDTʡE?JJMb? i word goldenNNPFxJJ/$@NNOni-1 word blottingRP?INi-2 word asepticallyVBN?JJ i suffix coaVBZbX9NNv/?JJ/$i+2 word revealVBG&1?JJQ˿NNv/ͿVBNQRB}?5^IDTV-?i-1 word blinkingJJ|?5^@NNSZd;ONNQRBp= ףؿi-1 tag+i word RB eurodollarsNNPS&1ҿNNSK7?NNP5^I i-1 word stadiumsNNSClRP9vRBjt?INZd;Oi word printingVBGjtNN/$ @JJoʡi+2 word alleysVBPOn?INOni word envisagedRBClVBDCl?i-1 tag+i word DT libraryJJClNNCl?i-1 tag+i word CC comfortVBMbNNS?VBD1Zd i+2 word sangWDTZd;ONNPQѿNNS(\?INZd;O?CD i suffix oveVBN|?5^JJ DT$CNNPK7?NNoʡINM@JJS'1ZVBDffffff@NNS rh RP(\µ$ףp= RBx&1пPDTVBPʡE?VBZ333333 VBx&@i+2 word unableDTL7A`JJ~jt?NNPjti+1 word crisisNNx&1@JJx&1i+2 word believedWDT㥛 IN㥛 ?i-1 tag+i word NNP dynamicNNffffff?JJffffffi-1 tag+i word NN desksVBZZd;ONNSZd;O? i word connerNNPSJ +NNPJ +?i+1 word deathVBNZd;?NN(\JJv/ i-1 word bearNNPSSNNMb?RBMbпNNPS?i-1 tag+i word NNP hoffmanNN rNNP r?i+2 word sexualVBNS?VBDSi-2 word improvementJJ333333NN333333?VBN'1Z?RBzGếINzG?NNS9v?i-1 word employersNNPS~jtNNP~jt?i-2 word wristsVBZX9vNNSX9v?i+2 word interestedNNlCDl? i word washNN|?5^?JJ|?5^ٿi-1 word crippledJJ'1Z@NNrh|RBli+1 word plungedNNPS9vVBGy&1RBEпNNGz?JJrh|NNSjtNNPPn?i tag+i-2 tag FW TONNPS"~j?NNP"~ji-1 tag+i word NNP boatNN+?JJA`"NNP/$?i-1 tag+i word NNS lineupNNsh|??NNSsh|?i-1 tag+i word JJ pullbacksNNSʡE?JJʡEi-1 tag+i word NN allDTL7A`?NNZd;OVBN{GzRB~jt@i word handfulNN/$@JJ/$i+2 word savingsNNPSK @RPHzG?JJFxNNZd;RBʡENNSPnNNPl?i-1 tag+i word RB apartRBn?JJni-1 tag+i word RBR handleVB ףp= ?JJ ףp= i word workoutNNZd;O?JJ&1NNSˡEi-1 tag+i word NNP drawsVBZ%C?VBDʡEINK7A`i-1 tag+i word JJ whiplashNNS5^I ˿NN5^I ?i-1 tag+i word NNS existedVBNGzVBDGz?i+2 word rootedJJ rh?NN rhi+2 word disarmVBNMb?NNMbi-1 word cartoonVBZoʡNNPSv߿NNSoʡ?NNPv?i-1 tag+i word CC handedVBNJ +?VBDJ +i-1 tag+i word -START- noneNNDl?NNPDli-1 word scenarioVBZ;On?NNS333333CDDli+2 word creditsJJ)\(?NN)\(Կi-1 tag+i word DT undeadNNd;O?JJ+NNP+i-1 tag+i word -START- circuitNNP-ӿNN-?i-1 tag+i word JJ foamNNʡE?JJʡEi-2 word reproductiveNNPSI +NNS+߿NNPp= ף?i+1 word brokerage DTlVBn?RPS?NNuVRBI +NNP~jt?NNPStVJJT㥛 WDT"~jIN$C?i-1 tag+i word PRP$ sonNNV-?JJV-Ͽi+2 word blameIN+?WDT+RBR rhJJR rh?i+1 word hungryVBZV-EXnRBw/?i+1 word creatorJJm?RBmi-1 tag+i word PRP decidedVBP/$VBD/$?i-1 word frameworkWDTjt?INjti word disposedVB/$VBNB`"JJ#~j?i-2 word repealCCuVDTuV?i-2 word anybodyVB+?RB+i-1 tag+i word JJS laxNNL7A`JJL7A`?i-1 tag+i word PRP$ expandedVBNv/JJv/?i-1 tag+i word DT dentNN/$?JJ/$i+2 word nothingRBZd;OVBNtV?EXZd;O?JJffffff?DT?NNPˡEi-1 tag+i word : cigaretteNNSA`"NNA`"?i-1 tag+i word DT associationsNNSV-?NNPSV-i+1 suffix funJJRPn?RBPnпi word handledVBZClVBNFx?VBDMbi-1 tag+i word NNP shippingVBG&1?NN&1ʿi-1 tag+i word NN tapersNNS rhVBZ rh?i-1 tag+i word DT collapsedJJS@NNA`"VBNJ + i word sighsNNSDl?NNDli-2 word youngerRBRMbX9?JJRMbX9i-2 word income VBD~jtx?VBN~jtxRB= ףp=?INMbXVBZMbX9VBlJJv/?NNffffffRPffffff?VBP㥛 NNSMbX9?i-2 word greekVBNGz?VBDGzi-1 tag+i word WP elseVBP$CRB$C? i-1 tag+i word DT petrochemicalsNNSK7?NNK7 i+1 word fortNNʡE?JJʡEi-1 tag+i word NNS needVBʡE?VBP%C?RBףp= VBDMbMD +?i-1 tag+i word VBN longVBN$CJJh|?5RBCl@RPx&1i-1 tag+i word DT softerNNJJR#~j @JJK7Ai-1 word carryVBZVB5^I ?RPV-?JJV-NNEпRB?5^I IN rhi-2 word insistsPDT~jt?JJ~jti-1 tag+i word , randomVBZ1ZdJJ1Zd?i-1 tag+i word JJ ghostsVBZK7NNSK7?i-1 tag+i word : socialJJ|?5^NNP|?5^?i+1 word artisticCCQ?JJSMb?RBRK7A`?JJRK7A`JJMbDTQi-1 tag+i word NNP beeperJJ-NN-?i-1 word staffsVBd;O?NNd;Oi-2 word neaveJJ-?NN-i-1 tag+i word WDT giveVBS㥛ؿVBPS㥛? i word spotsNNS5^I ?NN5^I i-1 tag+i word VBZ withdrawnVBNL7A`?JJJ +RBNbX9i word psychiatricJJzG?NNzGi word southeastVBMbX9JJFx?RBٿNNPףp= ۿi-1 tag+i word DT rivetingVBGrh|߿JJ rh?NNOni+1 suffix zzaNNK7NNPK7?i-1 tag+i word DT marvelsNNPSZd;ONNSZd;O?i+1 word hurryJJMbX?NNMbX i suffix lawNNS rhݿJJMbRB ףp= NNPjt?NNB`"@ i-1 word desNNSRQNNPx&?FW$C@NNPSHzGi+1 word streakVBG}?5^INN}?5^I?i+1 word leagueNNPSmJJd;ONNPh|?5?i-1 tag+i word NNS consistingVBG?NNi-1 tag+i word , soCC-VBZX9vVB1ZdRBffffffIN!rhm@i word whittierNNPQ?JJRQi-1 tag+i word -START- unlikeJJA`"RBFxNNPsh|?INrh|@CD㥛 i-1 tag+i word NNP suisseNNPSS㥛NNPS㥛?i-1 tag+i word VB usedVBNQ@JJQi word consortiumNNS'1ZNNtV?JJRQi word richmondNNPS{GzNNP{Gz?i+1 word frothyVBx&1?NNx&1i word terroristVBKJJNbX9 @NNzGi-1 word pickingRPZd;?RBZd;Ͽ i word nedDT/$NNP/$? i word creamyNNxJJx@ i word payoutIN#~jNN +?RB(\i-1 tag+i word VBZ pointVBPK?NNSK i+1 word wentWDTK7A`@JJ/$IN㥛 VBZMbXDTENNSn@NNP rh?NNPS rhݿi-2 word stageVBZoʡ?NNSSſNNP?PRP$ʡE?VBG ףp= NNxPRPʡEJJ&1? i+2 word call INA`"JJףp= ӿVBZV-?NNSV-VB$C?VBG;On¿CDx?VBP'1ZԿWP(\?NNP{GzNNPSq= ףpNNX9vi+1 suffix reeNNQPDTV-VBDX9v@RP rh?DTl?VBx&1NNPSFxJJp= ף?INnNNPS㥛?RB$C?WDTl?RBSClVBNQVBPNbX9?VBZA`"NNS)\(?VBGB`"JJSCl?i word outagesVBZENNSE? i+1 word held JJRI +NNP= ףp=MDq= ףpJJ+NNHzGVBDq= ףp?NNPS(\@RBoʡ@NNS r? i-1 tag+i word -START- corporateNNrh|NNPrh| VBQ뱿JJʡE@i-1 tag+i word IN knowingVBGQ?NNQſi-1 tag+i word POS smoothJJCl?CCCl׿ i word fallenJJq= ףpVBNףp= W@NN|?5^RB/$i-1 tag+i word VBD stunnedVBNJJ?i-1 suffix ubeVBD333333?NN333333i tag+i-2 tag VBN PRP$NN?JJV-VBx&NNSn?i-1 tag+i word JJ foundNNףp= VBDףp= ?i-1 tag+i word PRP expectedVBPClVBN/$VBDX9v? i-1 tag+i word POS supercomputerJJRsh|?NNsh|??i-1 tag+i word NNS torchedVBN$CVBD$C?i word backfiresVBZS㥛?NNSS㥛i+1 word elliottVBClNNPCl?i-1 tag+i word POS bayNNV-?NNPV- i word oddNNPCl?RP~jtRBZd;ONN-CDClPRP333333JJn@i-1 tag+i word , wherebyVBZ+WRBʡE?IN%Ci word abusiveJJm?RB+VBDGzi-2 word publishingNNS`"?NNPQ?NNPS`"VBGh|?5NNK7A@JJ/$i+2 word civiliansWDT|?5^?IN|?5^i-1 word architectsVB;On?VBP;OnJJ"~VBD"~?i+1 suffix secJJq= ףpNNSDT?VBGq= ףp?i tag+i-2 tag ( INNNq= ףp?VBNV-JJZd;?JJRMbX9NNPMbi+1 word upstartRB"~IN"~?i-1 tag+i word VB anythingVBG9vNN9v?i-1 tag+i word VBP sovietJJp= ףNNPp= ף?i-2 word mitterrandJJx&1NNPx&1?i-1 tag+i word RB quietJJS?RBSi-2 word towardsJJV-NNPV-@i-1 word basketVBD?5^I ?VBN}?5^IIN+i-1 tag+i word VB briefJJZd;?RBMbXɿIN rhi+1 suffix rse INMbNNPS~jtFWMb?RBR#~jJJR#~j?NNPZd;OPRP$ʡE?NN9vVBNQJJ&1 @i+2 word assets JJq= ףpVBDMbX9VBNVBPRQпRP rDTS?NNSOnVBG-?NNPRQ?NNS?RBw/?VBZOn?VBX9v? i+2 word notPOSMbXRBB`"?SYM+?JJ~jtFW(\?''MbX?VBZ%CDT?NNMbVBDB`"۹NNSOn@VBG5^I @EXMbIN5^I  RBRy&1?LS7A`VBMbX?PDToʡNNPSGz@JJR{GzVBN)\(RP(\NNPsh|??CCK7AWDTZd;O?i-1 suffix bieVBZ/$?NNS/$NN rNNP r?i+2 word slimyRP㥛 ?RB㥛 i-1 tag+i word VBG westNN%C?JJ)\(RBS㥛п i word aimsVBy&1NN"~VBDQRBGzVBZV-?NNS?5^I ?i-1 tag+i word TO pounceVBDl?NNDli word reprieveVBP\(\ϿNNSMbNNNbX9?i-1 tag+i word DT footNNʡE?JJʡEi-1 word rapedPRP$B`"PRPB`"? i-2 word nextRP/$ƿRBrh|?NNM?JJw/?IN rhVBZE?NNSx&1VBV-Ϳi word forgottenJJnRBR#~jRB(\VBN$C@ i word provesVBZ#~j@NNSzGJJx&i word proclamationNNd;ONNPd;O? i word run VBG rhٿVBDVBN~jt@JJClVBZd;O@NN|?5^JJRZd;VBPK@VBZw/NNS rh i word uneasyJJ`"?NNSRBMb i word slipsNNS-VBD1ZdӿVBZq= ףp?i-1 tag+i word VBP insuredVBN^I +JJ^I +? i suffix ermJJx&?JJRK7A`@NNxNNP5^I i-1 tag+i word NNP developedVBZKVBDK?i-1 word templeNNPSSNNPS?i+1 word novemberJJI +?RBI +i-1 tag+i word DT nextNNSZd;JJv/@NN~jtNNPʡEi-1 tag+i word IN aircraftVBN;OnҿNN;On? i word become VBDVBNQ@RB`"VBZ!rhNNPHzGVBFx @JJ'1ZNNB`"PDTOnRBSlҿCDGzVBPRQ@IN{Gzi-1 tag+i word DT woundedVBNB`"ٿJJB`"? i word wetUHB`"ɿJJA`"?CD+i-1 tag+i word NNS equalVBP&1ڿJJ&1?i-2 word things IN|?5^ڿRPh|?5?JJjtJJS(\VBN+RBffffff@NNy&1VBP;On?DTCl?i word battingVBGRQNNbX9?JJ"~ڿi word deconstructedVBNx&JJx&?i-1 tag+i word VBD winVBT㥛 ?NNT㥛 i word proceduresVBSNNSv/@NN%CVBZEؿi-1 tag+i word NNP aidesVBDQۿNNPSX9vNNSS㥛?i word precludedVBN&1?JJ9v?VBD(\i-1 tag+i word NNS assumedVBPVBN;OnҿVBDˡE?i-1 word evaluateNNS/$NN/$?i-1 word willametteNNPS&1NNP&1?i-1 tag+i word RB lovelyRBS㥛JJS㥛?i-1 tag+i word DT hundredthJJʡE@NNʡEi-2 word speakersVBN)\(VBD)\(?i word collectorsNNSK7?NNK7i-2 word luxuriesVBN333333?JJ333333i-1 tag+i word `` regularJJd;O?NNd;O i word ago NNx&1VBP~jtNNSףp= JJmIN^I @RPʡERBoʡ@VBDGzVBN5^I i-1 tag+i word NNPS describesVBZB`"?NNB`"i-1 tag+i word -START- atsushiNNrh|NNPrh|?i-1 suffix ndyNNw/POS ףp= PRP)\(ܿJJDlVBZS㥛?NNSRQ?NNPy&1?i-1 tag+i word -START- sundaysNNPSDl?RBˡEܿNNP i+1 word iceJJ^I +INS@NNPGzVB= ףp=VBGPn?NN/$?i-1 tag+i word DT mandatoryJJOn?NNOni+2 word before NNʡERBR`"?VBPCl?JJR/$NNPn?VB?5^I VBGZd;O?JJ+?VBNK7?RBMbPINRQNNSv?MDp= ףi-1 tag+i word NN conspiredNNSZd;OVBDZd;O? i-1 word natoNNPS+NNS+?i-1 word abusiveNN㥛 ?CD㥛 i suffix horNNQ@JJClINClVBZ\(\NNSClNNP+i+2 word requiresIN+?NNSMb?NN(\?FWMbWDT+JJ(\i-1 tag+i word POS tonawandaNNbX9NNPbX9?i-1 tag+i word NNS sproutVBPV-?INV-i-1 tag+i word NNP divisionNN rhNNP rh? i+2 word roomVBKVBPK?JJx&1?NNQտRBxi+1 word rumoredNN&1?RB&1i-1 tag+i word -START- highJJ/$@NNP/$ i suffix urs NNd;O VBDL7A`堿JJRCDDlVBPffffffVBKNNPSS㥛@PRPK7?JJ(\VBZJ +@NNSC@NNPni-1 tag+i word NN beretNNn?JJnѿi+1 suffix uzaFW rhPRP9vINʡE?NNP(\пi-1 tag+i word RBR soRBp= ף?INp= ףi-1 word buckleRP?IN i word copingVBGS?NNSi-1 tag+i word VBN americansNNPS+?NNS+׿i-1 tag+i word PRP alongRPL7A`@RB!rhINMbXi+2 word rudolfVBDJ +?VBNK7A`NNPi-1 tag+i word TO checkVB{Gz?JJ{Gzi-1 tag+i word VBD idleJJ(\?VBNoʡNNRQi-1 tag+i word RB backedVBN9vJJ rh?VBD/$ i word u.n.VB㥛 NN+RB+NNPS@i-1 tag+i word JJ explanatoryJJ&1?NN&1i+1 word holtzmanJJHzGNNPHzG?i-1 tag+i word TO aidVB1ZdNN?IN+i-1 tag+i word CC cookingNNZd;O?JJZd;Oi-2 word accounts VBNjt?JJK?IN?NNSbX9RBؿNNK7?VBD rhVBZS㥛?NNPNbX9 i-2 word e.RB{GzԿIN{Gz? i suffix booNNSRQJJSlJJRQ?NNl?i-1 tag+i word VBN carbonNNSʡENNʡE? i+2 word logVBPOnNN7A`?JJd;Oi word multiplesNNS5^I ?NN5^I i-2 word stearnsDT(\տVBDDl?JJ|?5^IN(\?NNPOn?i word vindicatedVBN)\(?JJ)\(i-1 tag+i word TO reflexivelyVBHzGRBHzG?i+1 word convincesINZd;WDTZd;?i word peanutsVBN(\NNjtԿNNPףp= ?VB/$NNSK7A? i suffix groJJd;ONNPd;O?i word commandVBP~jtNN~jt?i-1 suffix canNNoʡ?VBP'1ZJJ#~jVBZ9vNNP ףp= @VBGClFW~jtxRBRI +NNPS\(\?RB{GzVBN-''v?JJR|?5^NNStV?VBtV?VBDClINw/?CD/$޿i-1 tag+i word VB storesNNP!rh?NNS!rhi-1 tag+i word JJ startingVBG|?5^?NN|?5^i-2 word topperVBPB`"VBDB`"?i+1 suffix lliNNPw/?PRP$5^I WRBQi word dovetailsVBZ'1Z@NNSA`"NNvi-1 word perpetualNNV-?JJV- i-1 tag+i word -START- newsprintNNx&1?JJMbXٿNNP1Zdi-2 word revertsVBʡEJJV-?NNPrh|i-1 tag+i word NNP leaguesNNPSB`"?NNSS㥛ĿNNPHzGi-1 tag+i word RB readyVBZd;OJJv?NNL7A` i word quirkyJJMbX?NNMbX i suffix 4.9JJSCDS?i-1 tag+i word IN dispositionsNNPSxNNSx?i-1 tag+i word FW operationsFW~jt?NNP~jtۿi-1 word inevitablyJJVB?i-1 tag+i word VB swellVBjt?NNjti-1 tag+i word POS holdingsNNPS7A`?NNP7A`i-2 word programNNSNbX9VBNHzGVBPv?VBZ;On@NNZd;JJSL7A`WDT@RBʡEֿVBGJ +?VBK7?JJ7A`VBDlINRPV-NNPK7A? i+2 word iVBPMb?JJS?WPx&?JJR+INS@RPffffffDTףp= NNP}?5^I̿NNSp= ףVBZuV?VBˡEVBG$C?RBR(\VBN rhCD/$?NNPSGz?RBClNNA`"ӿVBDMb?WDTQ i+2 word cardRPn?INni-1 tag+i word VBD valuesPDTd;ONNSd;O?i-1 tag+i word NNS singVBP(\@VBG(\i-1 tag+i word NN surgingVBG r?NN ri+1 word politiciansJJ{GzԿVBNʡE?NNMbؿ i suffix ierVBZS㥛VBDy&1RBR^I  @JJ5^I INQNNSw/ FW$CVBP= ףp=JJRl1+@VBnRBzG?WPX9vCDDlNNPZd;O?NN rVBN(\i-1 tag+i word `` comprehensiveJJ/$?NN/$i+1 suffix hicJJE?JJRClVBZnVBʡE?NNʡE޿VBNERBRCl?VBPn? i pref1 SVBGK7A@JJV-տJJSbX9JJRzG?$&1NNSMb RBS~jtSYMB`"VBPffffffFW?5^I PRP!rhUHZd;PRP$-VBDClLSNbX9ؿCCw/?RBR|?5^VBNZd;NNPSZd;_@DTS㥛VB&1CDV-?INPnMDuV @WPA`"˿NN^I +PDT~jt?VBZGzRBZd;ONNP/$,@i-1 tag+i word DT agnellisNNPS(\ @NNP(\ i-1 word coorsVBZ-?NNPSE?NNPEVBD-i-1 tag+i word -START- removedVBN/$?RB/$i+1 word unificationismVBD?5^I @VBQݿVBN&1JJQ i-1 tag+i word NNP manufacturersNNPSV-NNPV-?i-1 tag+i word NN sufficientJJv/?NNv/Ϳ i suffix GEDVB/$NNPS?5^I ¿VBD?VBNA`"@VBP$CNNPףp= i word backsVBZd;OǿIN1ZdJJSd;ONNSDl?VBZʡE?i-2 word heirsNNSGzJJR"~jܿNN/$?i-1 tag+i word IN bricksNNS9v?JJ9vi-1 tag+i word : occurredVBN rhVBD rh? i word priNN\(\NNP\(\?i-1 tag+i word NNP courtNNPSL7A`ؿNN-?NNP ri-1 tag+i word VBD overwhelmedVBN9vJJ9v@ i suffix traJJROnRB~jtNNPn@NNPS㥛 ڿRPq= ףpJJK@NN(\VBDMi word prominentJJ&1@NN&1i-1 tag+i word NNS investigateVBT㥛 ?VBP#~jNNQi-1 tag+i word VBN closerRBR ףp= @NN;OnJJR rVBZ +i-1 tag+i word -START- yourNNPMPRP$ˡE@RBPnNN-CC㥛 JJ㥛 i+1 word heNNPS?JJS(\JJRQVBP rhWDTx&1JJFDTPnNNS@RBR7A`?MDm?VBD rh?VBN+WP+?NNPCDQEX\(\?IN1Zd@UH;OnVBZ rh@RBS㥛?NNS/$?VBS?CCV-@i-1 tag+i word RB probableNNSB`"JJB`"?i word energieproduktiebedrijfNNPSw/NNPw/?i-1 tag+i word -START- noticeJJ= ףp=NN/$NNPx?i-1 tag+i word WDT surprisedVBDjt?JJjti-1 tag+i word VBD pawingVBG rh?NN rhݿ i word zamaJJ~jtNNP~jt?i-1 tag+i word -START- japaneseNN-VBN(\WDTJJy&1NNPsh|??NNPS ףp= ?i-1 tag+i word , inventoriesVBZ%CܿNNS%C?i+1 suffix newWDTPnVBZ+?FWClRB"~j?RBR +VBN'1ZVBPZd;?INE?NNPS~jtӿVBGl?DT5^I ?RPrh|?NN$C POSQ?NNP/$PDTI +CD?JJ|?5^ҿVBDsh|??NNS(\VBffffff?PRP$x&1?i-1 tag+i word CC visitorsNNPSjt@NNS-NNPw/i-1 tag+i word NNP trustNNPSZd;NNPZd;?i+1 suffix lty VBP1Zd?LSףp= JJbX9HNNPsh|?@VB`"?RPjt?NNV-ǿVBDCl@RBSClJJSCl?VBN(\NNS~jti-1 tag+i word NNPS calledVBNZd;O?VBDZd;Oտi-2 word unrelatedNNS?NNPSi-1 tag+i word JJ infinitiNNP~jt?NN~jti-1 tag+i word JJ shopsNNSB`"?NNB`"i-1 tag+i word PRP$ !DIGITSCDMbX9?JJ;On?NNP%Cܿi-1 tag+i word , mailNNMb?JJMbi-1 word profitsIN+?VBGQ?RBx&?NNQVBN~jtJJʡE i suffix atoNNPV-?NNSʡENNCl?JJRQFW!rhi-1 word punitiveNN;On?JJ;Oni-1 tag+i word -START- goingVBGʡE?VBNSNNjti-1 tag+i word DT wakeNNSZd;ONNK7?NNPQi-1 tag+i word NN surgicalJJS?NNSۿi-1 tag+i word POS ranksNNSHzG?NNHzGi-1 tag+i word NNS mostRBSʡE?JJSq= ףpVBNV-ǿi word credibilityCC?5^I NN?5^I ?i-2 word carbonVBZMbX9?NNSMbX9 i+1 word fplVBZzG?VBDzGi word cuisineNNGz?NNPGzi-1 tag+i word NN coughNN~jt?JJ~jti+1 word fastballsNNSClJJRCl? i word mtvNN#~jĿNNP#~j? i-1 suffix `` DT5^I ?PRPjtPDTrh|VBDA`"?RBR&1INJ +?EXQ?JJQ?RPClVB/$?MDʡEWDTJ +?RB^I +׿RBS/$CD9v?JJR+?FW+?LSףp= ӿNNSRQWRBS㥛?NNPSx&VBG5^I VBPNbX9?WP9v?JJSjt?VBZ㥛 ?CCx&1?UHw/?NNP +?PRP$m?VBNZd;?NNZd;Oi-1 tag+i word NN portraitsVBZ$CNNS$C?i-1 word responsibilitiesVBDV-VBNV-?i-1 tag+i word POS upheavalNNp= ף?JJp= ףi word criticizedVBNˡE@RB$CVBD+?JJ/$VBPT㥛 пi+2 word utilitiesVBNxJJ?5^I ?VBZZd;O?RBxNN-?VBDZd;O i+2 word ldpVBʡE?JJʡE i suffix lphNNPy&1@CCQJJd;OUH= ףp=NNS㥛ܿi-1 tag+i word `` nobodyDT~jtNN+@RBSNNPSi-1 word ceremonyRBRl?NNGzJJREȿi-1 tag+i word NNP berraNNPp= ף?NNPSp= ףi+2 word seesawVBN(\VBD(\?i+1 word looksIN"~WDT"~?NN|?5^ʿJJzG?VBD}?5^I"i-1 tag+i word -START- rockefellerNNB`"NNPB`"?i-2 word reflectedJJJ +?NNJ +i-1 tag+i word NN apartmentNNS?JJS i-1 word lesVBPNNףp= FWM?i word enclosedVBN333333?JJ333333i word affidavitNNSrh|NNd;O@JJq= ףpi+2 word quakeDTDl?PDTDlVBN~jtVBD~jt?i-2 word collinsNN+?JJ+ i-1 word vuDTI +NNSV-RBZd;?i-1 tag+i word NN piecemealRB\(\?NNS(\пNNoʡJJS㥛i+2 word doubledRBRffffff @JJRffffff i-1 word beleagueredJJX9v?NNPX9vi-1 tag+i word DT deficitsNNSS?NNSi-2 word exportIN㥛 WDT㥛 ?JJK7?NN +VBDK7Ai-1 tag+i word VB iranVBX9vNNPX9v?i-1 word middayNNSClNNCl?i-1 suffix entNNS"~j?PDTuVINv?JJR7A`?PRP$+RPV-CDzG?WDTʡE?JJ{GzPOSI +?NNV-?FW'1ZԿRBRrh| VBG`"?RBS\(\VBDK7A?NNP|?5^VBQ?NNPS333333?VBNQ?DT+VBP+RBffffff?WRB^I +?EXNbX9пMDM?JJST㥛 ?VBZX9v?i word muslimsNNPS`"@NNSnNNP ףp= i+1 word compatriotNNQNNPMbX9ĿJJ5^I ?i-1 tag+i word VB betterNNq= ףpRBR|?5^JJRCl@JJSۿVB333333RBNbX9@i-1 tag+i word CC swearVBP%C?NN%Ci-1 tag+i word NN complexNN~jt@NNSZd;OJJClRB`"޿VBDQ޿i-2 word gauguinVBG?NNi-2 word clerkVBZq= ףp?NNSq= ףpտ i word maniaNN1Zd?NNS1Zdi+1 word previouslyVBNV-RBK7?IN'1ZVBZ)\(@NNP^I +?VBDV-?POS)\( i suffix arfVBZSVBPS?i-1 tag+i word TO dec.NNPy&1?VBy&1̿i-1 tag+i word CC transformVBoʡ?VBDoʡݿi-1 tag+i word -START- aetnaNNx&1JJˡEܿNNPMbX?i-2 word defeatWDTmINm? i+1 word richNNS333333JJS?RBSۿNNP333333?i+2 word responsesRB+?JJ+ i word alltelVBClUHx&1NNP?5^I ?i+2 word sectionDTV-?PDTV- i word saveVBʡE?VBPʡEi-1 tag+i word VBG landNNS= ףp=NN= ףp=?i-2 word adoptedVBGS㥛NNDlٿPDT%CJJZd;O?DT%C?NNS;Onڿi-1 tag+i word DT checkNN\(\?NNP\(\i word operatorNN5^I ?RB5^I  i word moldVBv/NNuV?VBDZd;׿VBZZd;Oi-1 tag+i word DT missVBPjt?JJsh|?NNFxѿi-1 tag+i word NNPS soldVBNZd;?NNZd;i+2 word placedJJuV?JJR rhտNNjtֿNNPuV?i-1 tag+i word NN exceedVBPV-?NNV- i word veniceNNS/$NN/$NNPrh|?i-1 word establishmentNN?JJi-1 tag+i word VB disorderlyRB"~j̿JJ"~j?i tag+i-2 tag VBG :VBGʡERB333333NNbX9ȶCD~jtJJٿNNPl?VBʡE?NNPS#~j?i-1 word completelyVBNˡE?JJ?IN@VBZ~jtRP"~jNNHzGVBD~jt?i+2 word disabilitiesNNPS5^I NNSMbNNPA`" @i-1 word subsidiesVBNQ?INnٿVBDQVBPOnWDT?i+1 word fantasiesNNK7A`JJK7A`? i word hurdleNN{Gz?JJ{Gz i+2 word data IN`"?DT"~?VBMJJn?NNV-VBP r@RBˡEVBD;OnPDT/$VBN~jt?NNPjti+1 word donovanNN㥛 ҿNNP㥛 ?i+2 word investorsVBDI +@CDDlJJB`"VBG^I +?NNP?RPZd;VBZzG?INB`"?NNSzGVBNq= ףp?WDT$C?NNrh|RBVBPbX9ȶDTrh|VBQ?i-1 tag+i word CC wildNNPPn?JJPni-1 tag+i word RB manufacturedVBNS?JJSi-1 tag+i word DT appellateNNd;O?JJd;O i word hotel''(\NNI +@JJT㥛 NNPNbX9i word perplexingVBG+JJ+?i-2 word awaitedJJ(\?NN(\ݿ i+2 word car VBDZd;OCDK7A`JJSINFxVBZMbNNPX9v?VB^I + @RPsh|?VBPGz?RBd;O@NNx?i+2 word matterRBR +?JJR +i-1 tag+i word , pretaxCCOnJJOn?i-2 word demonstrationsVBNuVJJJ +?VBD ףp= ?i+2 word crossNNP/$@NNPSףp= VBN?5^I ?JJ^I +VBD?5^I i-2 word financialVBOn?NNPS/$@VBP~jtRBQVBN rh?WDT`"NNS +VBGv?NN333333 @VBD333333ۿNNPClJJ/$CDzGINGz@ i+1 word feedNNDl?JJDlٿi-1 tag+i word VBZ undertakingJJ;OnVBG;On@i+2 word soundsVBN/$VBD/$?i-1 tag+i word RB contributeVBMbؿVBPMb?i-2 word requirementsNNVBN-JJS?i-1 word outfieldersVBPClRBRI +?INoʡi+2 word cottonWDTJ +?JJV-?INJ +NNSV-NNPK7A`VBGʡE?NNK7A`? i word cleanVBܿJJK7@NNV-i-1 word reservationsVBP(\NNS(\? i+2 word outNN&1ʿVBNQVBPsh|?ݿIN)\(VBDK7AпPOS|?5^?JJE VBZy&1NNSS?VB?5^I @VBG$CRB)\(@RBR^I +ǿWDTm?DTMb?JJRd;ONNPX9v? i-1 tag+i word VBD jurisprudenceNN?NNPi-1 tag+i word JJ magneticJJS?NNS i word illsNNS9v?NNP9v i-2 word jumpJJQ?VB/$RBX9vNNNbX9?CD/$?i+2 word mergerDTrh|NNPDl?RPV-?NN!rhܿJJGz׿INV-VBG!rh?i-2 word drinkNNSZd;ONNZd;O?i-1 tag+i word VBN nextJJZd;߿RB5^I INFx?i+1 suffix blyDTd;OοPDT)\(JJ\(\ JJSʡEVBNDl?VBP&1VBZA`"@VBD㥛 ?RBSʡE?FW\(\POSsh|?WDT(\?VBG/$?NN|?5^@IN-NNS(\NNPMRBK7ɿ i suffix -soJJV-?NNffffffRB+i word slogansNNS1Zd?RB1Zdi-1 word speculateDTZd;ORBq= ףp?NNq= ףpINZd;O?i-1 tag+i word , averagingJJx&VBGx&? i-1 word kateVBZ|?5^@NNPSB`"NNS+i-2 word patients VB!rhܿVBNZd;O?VBPKNNPDl?JJ~jt@NNX9vVBDbX9RBA`"ӿNNSMb?i-1 tag+i word JJ planksNNSMbX9?NNMbX9 i-1 word townVBGOnJJ~jt?NNw/NNPQ?i-1 tag+i word NNS expressedVBNʡEVBDZd;O?NNS1Zdi-1 tag+i word JJ discountNNZd;?JJZd;i-1 tag+i word POS woesNNS9v?NN9vi+1 suffix eak NN+VBD{GzVBN{Gz?INPnNNS{GzVBˡERBGz?VBZ{Gz?VBG}?5^IJJ\(\?i word bacterialJJ r?NN r i-2 word peatNNPS;OnNNP;On?i tag+i-2 tag : MDVBZd;?NNZd;i+1 word brewerJJRQ?NNPRQi-1 tag+i word NNP islandNNPS'1ZNNP'1Z?i-1 tag+i word RB uncertainJJ&1?NN&1i-1 word caterRBoʡ@JJR333333NNT㥛 i-1 tag+i word RB unscathedJJp= ף?VBDp= ף i word feedNNSNbX9NNPV-NNm @VBD?5^I JJR?5^I VBN= ףp=ʿi-1 tag+i word JJ assetsNNPS-?NNP-i-1 word mansionsINx&1WDTx&1?i+1 word cholesterolJJˡEVBNˡE?VBPʡE?JJRʡEi+2 word fosterVBZKNNSK?i-2 word siliconJJR&1?RBR&1$i-1 tag+i word NN telecommunicationsNNSFx?NNFxi-1 tag+i word WP happensVBZ㥛 ?NNS㥛 i-1 tag+i word VBZ expectVBPʡE?VBʡE i-2 word 've JJ rhNNZd;O?VBNS?RBR#~jRBZd;VBZ7A`?DTV-?RPSۿNNS#~j?INS?CDZd;OVBD㥛 i word thickJJ= ףp=?NN= ףp= i word tempoNNCl?JJRCl i+1 suffix ' VBSNNQ@FW)\(CDFxVBZ(\NNPV-@NNPSMb?VBGA`"@JJI +JJR\(\RBFxNNS!rh?i-1 tag+i word TO scrapVB/$?NN/$i-1 tag+i word POS heftyJJʡE?NNʡEi-1 tag+i word VBG disciplineNNS +޿NNRQ?JJK7i-1 tag+i word DT ritzyJJPn?NNq= ףpNNPMbXi-1 tag+i word DT ruleNNSʡENN ףp= @JJMbi-1 tag+i word RB anathemaNNʡE?VBN1ZdJJv/i-1 suffix urbVBGʡENN~jt@JJjti word accountsNNPS9v?NNK7A`VBDV-VBP +VBZ(\@NNSL7A`?NNPx&1i+2 word zoologyVBP= ףp=VBD= ףp=?i-1 tag+i word DT soonerRBHzG@JJR"~NNoʡRBR(\i-1 word regulationVBZʡE?NNPʡEi-1 word boiseNNPS-NNP-?i+1 suffix temJJx&@VBDKCDx&?INd;ONNPSMbCC#~jVBGbX9?NNy&1?VBN&1WDT"~RBSSRBClDT%C?NNPK7A`?i-2 word beveragesNNST㥛 ؿNNT㥛 ?i+2 word alliedNNP`"?VBD`"οi-1 tag+i word -START- stockNN?NNPClVBV- i+1 word far NNPZd;OͿVBV-NN#~j?VBD~jtxVBNSVBP1Zd?JJ#~jRB#~j@PRP$-INOn?NNSK7i-1 word tentativelyVBN^I +VBD^I +?i-2 word accidentVBNtV?JJtVi-1 tag+i word RB speakVBPZd;O?RBZd;Oi-1 suffix oon NNʡE?VBNV-JJ|?5^ʿVBZQNNS rh@NNP#~jĿNNPSv߿RBbX9?VBDʡE?JJRClCDsh|??i-1 tag+i word FW stagesNN\(\NNS\(\?i-1 tag+i word CC interfereRB +JJٿVBNClVBGz@NNV-i+1 word bypassNNK7AؿMD9vVBbX9JJS㥛?i-1 tag+i word TO happenVBV-?NNSV-i-1 tag+i word NN attitudeVBPL7A`NNn?RB rhi-1 tag+i word NNS doubtVBZVBˡEԿVBPS㥛?NN?VBDOni+1 suffix ows VBMbXNNPSX9vϿNNtV@JJS ףp= ?VBNMb?WDTQ@INQNNPMbXVBGh|?5VBPq= ףpJJS?NNS333333ÿi-1 tag+i word VBD disqualifiedVBNCl?JJCli-1 word siouxJJQ?NNPQi-1 tag+i word VBZ unsolicitedCC^I +JJ^I +?i-1 word morrisNNPy&1NNPSy&1@NNʡE?POSS?JJʡEͿVBZSi-2 word pumpsVBZGzNNSGz?i-1 word easternVBZ\(\?NNST㥛 NNP"~jNNPSX9v?NNCl?FWK7AVBNMbJJZd;?i-1 word richterNNS㥛?NNPS㥛п i word wiseJJGz?RBGz i suffix ALSVBP"~NNSA`" @NNMNNPB`"i-1 tag+i word PRP standVBPDl?NNDli word disabilityVBK7NNtV?JJ~jti-1 word slopesRBCl?NNy&1JJNbX9ȿi-1 word procedurallyJJ= ףp=?NN= ףp=i-1 word rudolfVBZK7A`NNPK7A`?i-1 tag+i word NNS aimedVBN&1?VBD&1i-1 word austereNNnJJn?i-1 word contract IN7A`?NNSX9vNNvVBGd;O?VBDEVBN= ףp=?VBPCl?JJOn?VBZV-ҿVB+ۿi+1 word solicitingVBNʡE?RBʡE i-1 word fendRPI +?INI +i word preparesVBZCl?VBCli-1 tag+i word JJ municipalJJʡENNS"~NNv@i-1 tag+i word `` friendlyJJZd;O?RBZd;Oi+2 word aplentyVBGI +JJ~jt?NNV-?NNP-i+2 word recommendsVBPNbX9EX7A`NN(\?i+1 suffix locNNPʡEVB rhJJbX9H@NNp= ףi-2 word healthNNP^I +?NN^I +?VBD333333VBPʡE@JJK7A`WP9vVBZS㥛i word monstrousJJ +?NN +i-1 tag+i word NN surgeonNNSOnNNOn?i+2 word insuranceRBRffffffVBPPnؿPRP$)\(?NNPSSۿJJbX9JJS&1NNPRQпJJRffffff?PRP)\(RB333333NNStVVBGʡE?VB|?5^?INA`"?NN rh?i-1 tag+i word DT pugetNN"~jNNP"~j? i-2 word slipJJRQ?NNRQ i suffix ainVB r@NNPS rFWMbNNSxiVBN|?5^ɿJJ(\INV-NNPClRB rh?NNx@VBDERBRVBP㥛 0@VBZV-i-1 tag+i word IN sneakyJJ(\?NN(\i-2 word easierNNPSÿVBZd;O?JJS?NNZd;Oi tag+i-2 tag DT RBRNNn?RBRni+1 word shootNNK7?JJK7VBZRQNNSRQ?i-1 tag+i word JJ leveragedCDbX9NNw/@VBNB`"۹JJ#~ji-2 word mattressJJQ˿VBD9v?VBNv/i-1 tag+i word NNS strongerRB333333JJR(\VBPbX9RBRFx@ i+1 word vastJJ333333NNPS㥛VBZ\(\VB333333?VBD/$@ i-1 word norcVBZI +POSI +?i-1 tag+i word IN wiringVBGףp= NNףp= @ i suffix enaNNףp= NNSCl?RBZd;OտJJV-i+1 word ornamentsNNK7?JJK7i-1 tag+i word JJ mostJJSK7ARBSK7A?i-1 tag+i word CC relocateNNˡEVBˡE?i-1 word regardingVBGp= ף?JJp= ףؿNNP rhNNS/$?NNPS(\i-2 word rearrangesNNSFx?NNFxi word upgradesNNS1Zd?INI +VBZK7Ai-1 tag+i word VBZ neophytesVBZ rNNS r?i-2 word collapsingNNSV-NNV-?i-1 tag+i word NNP liableNNx&1JJx&1?i+2 word thoseCDM?RBRh|?5@WDTn?INMbVBZJ +VBPnVBG+JJS1ZdNNP+?VBP +?VBN1ZdRBMbؿDTy&1NN ףp= ?VBDlPDTtVJJRvJJ/$@NNSMb? i suffix tem VBD rhRBGzVBˡEܿNNE@VBPS㥛?NNSSNNP&1ʿNNPSS㥛JJx&1i-2 word prohibitsNNPS%CԿNNS%C?i+2 word inflation JJ/$?NNd;ORBR/$?VBPsh|??RB"~j?NNPV-?VBGMb?VBDKCCK7?JJRSVBNd;O?DT +NNSZd;Ͽi-1 tag+i word NNP brothersNNP!rhVBZmNNPSFx@NNSK?i-1 tag+i word VBD offRBI +?IN;OnRP~jthi-2 word fleeingVB`"JJ`"?i+2 word hambrechtNNPSV-?NNPV-i-1 tag+i word VBD uponRB1Zd?JJ1Zdi-1 word loopholeWDTGzINGz? i-1 suffix cyNNh|?5NNPh|?5?i-1 tag+i word NN conductingJJQVBGQ?i+1 word minicomputersVBPGzNNSJJ333333@NNffffffJJRd;O?i-1 word troubledJJJ +NNP rhտNNS1ZdNNoʡ?i+1 word reboundedNNSZd;O?NN/$JJ7A`ҿi-1 tag+i word NNP sportVBPDlNN%C?JJCli-1 word starterVBZL7A`NNL7A`?i word reproducedVBDCl?VBPCli-1 tag+i word VBZ missVBQ?JJQi-1 word classicNNSQNNQ?!i-1 tag+i word -START- subsequentJJ rh?NNP rh i word couchJJFxNNFx? i-2 word bkRBR rhNN rh?i-1 tag+i word VB reportsVBZ(\NNS(\?i+1 suffix deoJJw/?NNClۿCDQi+1 word highwayJJy&1?NNy&1 i suffix emeNNv @VBDMbVBNmPRPʡEJJ/$ @NNS1ZdNNPjtRBh|?5i word bonusesVBZSNNSS?i word presentersVBZ+NNS+?i word nightlineJJʡENNbX9NNPsh|??i-2 word chainsRBV-INV-?i-1 tag+i word DT tankNN-?JJ-i+2 word sessionsJJ&1?NN&1RB&1i word scribblingVBGS?JJSi-1 tag+i word IN helpsJJnNNQVBZQ?i word limited NNS+NNP~jt?VBZ +VBV-NN7A`VBDnѿJJR7A`VBNSJJGz@i-1 tag+i word NN sayVBP$C @NNh|?5VBZp= ףVB= ףp=i-1 tag+i word CD apparentJJGz?NNGz޿i+2 word keyboardIN|?5^?RB|?5^i+1 word hurtsVBtV޿NNtV? i-1 tag+i word PRP$ headquartersNNSMbNNMb? i suffix alt VBPK7NNP/$?VB%C?NNS?VBDn@DT%C̿NNS{GzPRP$ +VBN9vJJ|?5^i-1 tag+i word RB impasseNN-?JJ-i-2 word expertNN^I +NNP^I +?i-1 word supraventricularNNSA`"NNA`"?i-1 tag+i word JJ governorNNSV-ҿNNV-?i-2 word residentsRP rIN r?i word neurosciencesNNPS +޿NNP +? i word knownsNNS%C?JJ%Ci-2 word neighborhoodJJCl?NNPCli-1 tag+i word JJ changeNNEԸJJffffff޿VBPtV?i+1 word enthusiasmsJJV-?NNPV-i-1 tag+i word NN desperateJJK7?NNK7i+2 word plannedINJ +VBZjtJJ rhVBD&1?VBNZd;O?VBPX9vWDTlRB(\ @i-1 tag+i word IN prospectiveJJV-?NNV-i+1 word modelJJX9v?NNnJJRtV?RBRp= ףRBx&1NNPd;O޿i-1 tag+i word NN attractiveJJ"~?VBP"~i+1 word mandatoryVBNh|?5JJh|?5?i-1 tag+i word -START- turnoverWDTffffff޿NNS?NNPni-1 tag+i word DT daughtersNNSM?NNM i suffix YEENNn?JJˡENNP/$ٿi+1 word husbandsWRBZd;O?NNPZd;Oi-1 tag+i word -START- nelsonNN(\NNP(\?i-1 tag+i word NN professorVBN"~NN"~?i tag+i-2 tag VBD `` JJsh|??VBN rhRBOnNNS)\(?NNPSnNNn?UH~jt?VBZ+NNPSӿ i-1 suffix weVBDK@VBNˡERBClVBMbMD&1ڿNNPSL7A`?NN rPOSMbVBP;O@JJjt޿INnVBZZd;DTFx?NNS ףp= @ i word foamNNʡE?JJʡEi-1 tag+i word POS poorestJJSjt?NNjti-1 word redesignVBG/$JJ/$?i-1 suffix oudJJX9vNNX9v?i-1 tag+i word NNS livingNN;OnVBP^I +VBG?i-1 tag+i word JJ secureVBV-?JJV-i+1 word checkoffDT-?NNS-i-1 word research NNPSOn?VBG/$?NNw/?INNNSGzNNP~jtWDTNbX9?RB/$VBZ? i suffix earNNPSv/ݿRPoʡݿVBD+VBP @IN-@DT+JJZd@NNnRBRx&VBNMbXCD{GzܿNNS\(NNPZd;VBʡE@CC^I +RBS?VBZ/ݤi-1 tag+i word `` auntVBPHzGNNPHzG?i-1 tag+i word JJR interestedJJ/$?VBN/$ i suffix misNN/$JJMbNNPl?i-1 tag+i word JJ includeVBPNbX9?NNNbX9i-2 word strikeRBV-VBDʡEVBZʡE?JJV-?i-1 tag+i word NN fartherJJR+ǿRBjt?RBR!rhNN9vҿi-1 tag+i word RB trulyRB~jt?VBN~jti+1 word classicalRBR+JJ+?i-1 tag+i word VBD understoodJJClVBN7A`?NNK߿i word drinkerNN-?NNP-i-1 word departureVBZ(\?NNP(\ i word tipNNPK?NNSB`"NNB`"?CDK i suffix IFINn?NN{GzNNP/$i-1 tag+i word IN ryeNNS?5^I NN?5^I ?i-1 tag+i word DT inuitNNvNNPv?i-1 tag+i word NNP pursuesVBZ?NNSi-1 word behaviorFW/$?NN;OnIN rhѿ i+1 word ?VBG%CJJ(\NNSPn?FW"~?IN(\?JJR(\?VBZ~jtVB9v@NNPS/$ÿRBRK7VBNtV@RPX9v?PRP$rh|NNZd;O?VBDMbVBPMRB+?PRPy&1?NNPV-߿i-1 word sammyeVBZMbNNPMb?i+2 word stampsVB+VBP+?i+2 word posturingRBR5^I ˿RB?5^I JJR5^I ?JJ?5^I ?i-1 tag+i word : fieryJJ(\?NNw/NNP-i-1 tag+i word JJR workINx&VBMbXNNsh|??i+1 suffix gidJJ^I +?NN^I +i-2 word rustyVBNʡE?VBDʡE i-1 word laNNPS^I +߿NNSʡENNGzNNPS㥛?FWGz?i tag+i-2 tag DT NNPSVBGGz?NNrh|?JJsh|?INDl?i+2 word covertRBRjt?JJRjtINT㥛 ?RPT㥛 i word berraNNPSp= ףNNPp= ף?i-1 tag+i word DT creamyJJx@NNxi+1 suffix umpJJA`"@NNS㥛VBNCl˿i word overworkingNN}?5^IԿVBG}?5^I?i+2 word during WDT= ףp=?JJʡE@VB|?5^?NNPS{GzRPZd;RBNbX9?NN%CԿVBNy&1DT"~jNNP +οVBDQ?VBPd;OIN+i-2 word bankersVBPK7A`?VBNV-VBD7A`i+2 word provesDTʡEJJʡE?i-1 tag+i word CC threatensVBZX9v?NNSX9vi+2 word politeVBZ rh?VBD rhi-1 tag+i word NNP counterpointNNP`"NNS+NN{Gz@i word textilesNNS~jt?JJ~jti-2 word proposalsVBQVBPQ?JJK7A?RB/$INx&1i-1 word impedeNNn?JJn i word psNNS rhNN~jtJJ"~NNPsh|??i-2 word interruptingRB+?JJ+i-2 word refinancingVBG5^I ?JJOnۿNNFxi-2 word boutsNN/$?JJ/$i-2 word consumptionIN-?VBN~jt?JJ-VBD~jt i word drawsVBZ~jt@VBDMbX9INK7A`i-1 tag+i word NN desNN ףp= ߿NNP ףp= ?i-2 word makers RBRZd;@VBP;OnNNS#~j?NNPS#~jVBGK7?NNGzVBDZd;߿INZd;O?JJR(\VBˡE?RBuVVBN{GzJJB`"i-1 tag+i word DT competingVBGzG?JJ/$?NNʡEi-1 word whoeverNNSSVBZS@i+1 word saturdayVBG?JJvNN^I +?VBNoʡi-1 tag+i word -START- excerptsNNSX9v?JJSNNPi+1 suffix obeVBN+VBD+?i-1 word assertsDTZd;@WDT(\IN$Ci-1 tag+i word VBD angryNNS?5^I JJzG?RBʡEi-1 tag+i word , steppedVBNClVBDCl? i-2 word betVBd;O?NNPS rhJJd;ONNP rh?i-1 tag+i word NNS compiledVBNsh|??JJsh|?տi word reformulatedVBN= ףp=?VBD= ףp= i+2 word whenCDQJJR'1ZUH%C?VBD+VBP;On?$ rhNNm?VBmJJRPʡE @NNS|?5^ @RBR)\(JJSV-?VBN rh?VBZxDTp= ףPOS|?5^?RBGz?VBG`"޿NNP~jtx?IN\(\NNPSCl?i-2 word deeperRBRMVBNtV?NNtV޿JJRM?i+1 word cyclingVBZ}?5^I?NNS}?5^IJJV-INV-?i-2 word revampedNNx޿VBNffffffJJ~jt?VBZ~jtNNSffffff?NNPx?i word breedersNNPSK7A`NNS|?5^?NNPNbX9пi-1 tag+i word VBP sellingJJ ףp= VBG ףp= ?i-1 tag+i word RB underminedVBNK7A?VBDK7Ai+2 word cancelVBZNNS?i-1 tag+i word NNS associatedVBNuVJJoʡ?VBDh|?5 i-1 word safeNNSV-NNV-?i-1 tag+i word IN applaudsNN/$JJ?5^I ڿVBZ/$?i+2 word enforcementNNS1Zd?NN1ZdJJ"~j?NNP"~ji+1 word educationalJJHzGNNPHzG?VBZ5^I ?NNS5^I i+1 word leadersJJRK7A`VBN-?JJ(\?DT333333?NNPlRP333333ۿNNRQ?JJSMbX9i+2 word pricesVBoʡſJJRCl?WDTMbX9RBRJ +RPffffff?DToʡUH= ףp=ҿNNPS?5^I ?NNGz?VBD%C?NNS)\(VBPX9v߿INx&1?VBGPn?JJS?VBNGz?RB rhNNPGz VBZsh|??i-1 tag+i word , growsVBZ?VBQVBNzGi-1 tag+i word VB assumedVBNMb?JJMbi-1 tag+i word NN 'tilVBZQINQ?i-1 word dampingVBNjtNNjt?i-1 tag+i word -START- asNNPZd;OVBy&1JJףp= CC^I +RBIN+w@DT + i suffix OUSNNP rhݿNNS"~JJHzG?NN"~ڿi-1 word pitfallsVBDT㥛 ?VBNT㥛 i suffix comNN~jtJJNNPx&1?i+1 suffix nc. NNPS9v@VBG!rhRBClJJ-NNPMbX@NN?5^I POS/$?DT(\NNSZd;Oi+2 word lewdnessVBx&1NNx&1? i word mealyJJ7A`?NN7A`i+2 word overbuiltVBZ}?5^I?NNP}?5^Ii-1 tag+i word NNP figuresNNS?NNP i suffix tnaJJˡEܿNNP-?NNx&1?NNS +RBx&1i-1 tag+i word DT marinesNNPSv?NNSClNNP rпi-1 word shockVBZoʡݿNNSoʡ?i-1 tag+i word NN confirmsNNS/$VBDA`"VBZ\(\? i word nyuVBZ9vNNP9v?i word inexorablyVBPA`"RBA`"? i word forcesVBZSNNSn?VBDV-i word catastrophicNNSSJJS?NN?5^I NNPv/?i-1 tag+i word WP aplentyJJx&?NNx&i-2 word skirtsVBMbXVBP333333JJʡE? i-1 word tankVBZ(\?NNS(\i+1 word progress VBG~jtNNd;OοJJRn?IN{Gz?DT{GzܿVBv/?RBRnѿJJ= ףp=?RBI + i word borrowNNZd;߿IN-VBA`"?i+1 suffix nor NNPS9v?NNMbXVBN!rh?VBZ|?5^NNS(\@VB rh?RBn?VBDJ +JJ$CNNPx&1 i-1 tag+i word -START- communistJJ?5^I ?NN?5^I i-1 tag+i word JJ preferVBPMb?NNMbi-1 word closingRBDl@JJRMbRPK7JJ^I +?NNQ?VBNA`"RBRJ +? i suffix nue JJClVBZ-NNSGzNNPQRB rhVBPV-o@NN$C@VBDQVB9v@NNPSli-1 tag+i word VB dialysisNN}?5^I?JJ}?5^IԿ i suffix draNNPNbX9?NNp= ףJJS㥛i+2 word givesDT/$NNSQNNPsh|??NNT㥛 WDT\(\?JJX9v?INbX9ƿi-1 tag+i word IN dataproductsNNPSZd;?NNS +NNPL7A`i+2 word intertwinedVBPRQVBDRQ?i-1 tag+i word RB structuredJJ9v?VBN9vi-1 tag+i word RB nursingVBGZd;ONNL7A`?RB{Gzi-1 word clearedRPS㥛?INS㥛 i-2 word hostJJHzG?VBG!rhNNS?RBp= ף?i-2 word fitnessVBPx޿RBm@VBZp= ףNNS ףp= NNP\(\?VBNNPSZd;Oi-1 tag+i word CC horseJJRp= ףNNp= ף?i-1 tag+i word VBP riddledVBNX9vJJX9v@i+2 word termsVBZ= ףp=?VBGS㥛?JJV-?NNClJJS;OnWDTrh|߿RBZd;INrh|?i-1 tag+i word CC recordVB&1NNˡE?JJQi-1 tag+i word VB gottenVBN+?RB+i-1 tag+i word WDT mimicsVBPd;OVBZd;O? i+1 word armVBGI +JJ +?NNsh|??NNP i-1 tag+i word MD simultaneouslyVB/$RB/$?i-1 tag+i word VBD !DIGITSJJ#~jNNPh|?5?CD'1Z?NNSGz޿i+2 word teleramaJJQ?NNPQi-1 suffix petNNSGz?VBN;On?NN ri+1 suffix rldNNP'1Z?NNPSQVBG rhNNjt?VBDʡE?VBN~jt?JJK7A@NNSx&i-1 tag+i word RB shagsPDT-VBZ-?i-1 tag+i word VBP findVB333333?RB333333ӿi-1 tag+i word : consumersNNPS%CNNSS?NNPX9vֿi+1 word hiddenVBNx&1VBDx&1?i-1 tag+i word VB shockNNK7?JJK7 i word savingVBG?5^I ?NN㥛 JJL7A` i+2 word tagsVBN$CۿVBD$C?i-1 word obviouslyVBGQ?VBN7A`JJ|?5^?VBDS㥛VBK7i-1 tag+i word WP chairsVBZCl?VBPCli-1 tag+i word TO alertVBʡE?NNPʡEi-2 word viewersVBGd;O?NNd;OVBDX9vVBPX9v?RB$CIN$C?i-1 tag+i word NN expiredVBNMbVBDMb? i word leansVBZ333333?NNS333333i-1 tag+i word RB figureJJSNNS?i-1 tag+i word DT reassuringNNףp= VBG&1JJ/$@i word morningVBGSNNOn@NNP{Gzi+2 word experimentationVBQVBN"~j?VBDGzi-1 tag+i word VB thereEXV-ͿRBV-?$i-1 tag+i word -START- environmentalJJ^I +?NNMbXѿNNPS˿i-2 word network NN rh @VBDʡEӿWDT{GzJJVBZ'1ZVBtV?VBN?5^I ڿVBP/$?INSNNP= ףp=i+2 word persuadeNNSQ?JJn?RBnNNQ i suffix dhiNNP +?NNPSS㥛ԿRBCli-1 tag+i word DT missingVBG/$?JJrh|@NNV- i suffix ral VBPMbX9VBNL7A`NNP rh@NNPSB`"NNZd;OJJRECDtVJJ ףp=+@VBZ}?5^IܿNNS ףp= VB1ZdRBK FWSi word loopholeNN(\?JJ(\ i suffix e-sNN/$?JJ/$ѿi+2 word engineeredVBNV-?JJS㥛INbX9i-2 word ourselvesVBm?VBPmտJJ(\NNP(\?i word advertisementJJClNNCl?i+2 word armedVB|?5^?JJ|?5^i+1 suffix upeJJK7A`?NNK7A`i-1 tag+i word DT featuresNNS\(\?JJR\(\i-1 tag+i word NN revampingVBG!rh?NN!rh i+1 word altoRBMbXѿNNPMbX?i-1 tag+i word JJ coldNN/$?VBN-ۿJJL7A`i+2 word proponentNNX9vJJX9v? i word devoteVBPZd;O?JJZd;Oi+1 suffix garNNP/$NNSNbX9NN㥛 ?JJCl?i-1 word bombardedRBK7A`NNPK7A`?i+1 word ownershipJJX9v?NN+ηRB~jtPRP/$ٿi-1 suffix ape RBSJ +JJSJ +?WDT$CPRPzG?VBZ333333?NNS5^I NNPNNPS?NNq= ףpVBP rhٿIN$C?i-1 tag+i word NNP marwickNNPSʡENNPʡE? i+1 word anneVBDPn?VBNPnؿ i suffix delVBDtVCDnVBPS㥛JJjtNNS +οNNPV-?NNK@FWS@i-1 tag+i word NN writeVBn?NNni-1 tag+i word VBZ boundVBNA`"?JJA`"˿i word discothequeJJV-NNV-? i word guideNNP"~j@NNSB`"NNClѿJJI +FWxƿi-1 tag+i word NNS periodsVBPoʡNNSoʡ?i-1 tag+i word IN unjustJJ/$?NNP/$i-1 word tapersRPw/?RBw/i-1 tag+i word IN neglectNN/$@JJvRBQCDʡE i suffix oom CD-VBP'1ZJJ(\NNS^I +NNP333333?VBh|?5?RBPnNN/$@VBZMbXi word architectureNNʡE?JJʡEӿ i-2 word come VB333333ӿNNPS rVBGClɿJJl?VBD{GzIN9v@NNP r?NN"~jVBNHzG?CDx&1ܿRBh|?5i+1 word straubVBGSNNPS?i-1 word burnsRPCl?RBp= ףINSi-1 tag+i word `` modernizedVBNK7?JJK7ѿi word sharperNNEJJR@JJ|?5^ i-2 word ago VBNK7A`VBPZd;O?RBMb?INMbNNPSףp= VBGS?JJnNNS㥛?PRP$Q?VBD-?DTQNNP~jt?i-1 word lawrenceNN}?5^INNP}?5^I?i+1 word eventNNS㥛CDS㥛?NNPjtJJjt?i-1 word cockpitVBG333333?NN333333i-1 tag+i word -START- goodyearJJffffffNN-NNPrh|@i-1 word abundantJJd;O?NNPd;Oi-1 tag+i word VB impressVBS?RBS i+1 word n'tVBx&1?RB+VBP7A`P@INoʡNNPI + JJv/NNSV-MDn?FWzGVBZףp= ?NNPSK7A`ݿVBDNbX9?VBNClPRP$ʡE i word fareJJZd;OVBZMbXVBp= ף?VBP?5^I ¿NN/$? i word hotelsVBZh|?5NNS9v@NN/$i-1 tag+i word PRP$ massiveNNDlJJDl? i word mixNNT㥛 ?VB;On?NNSZd;i-1 tag+i word NN rootedVBNm?VBDmi+1 word slowingRBRV-JJGzJJR9v@RB)\(?VBD)\(ܿi-1 tag+i word TO entryVB rhNN rh?i word redemptionsNNSGz?NNGzi-1 word flight NNPSE?RB{GzCD?JJX9vVBZ{GzNNS$C?VBoʡNNHzG@NNPi+2 word sept. VBDrh|?VBNSVBZV-VBG㥛 ?JJ&1?NN~jt?RB rhIN rh?NNPffffff޿VBNbX9i-1 tag+i word , videocassetteNNn?VBZni-1 word expandingNN`"?JJx&1INV-?NNPSClNNSCl?i word independentJJCl?NN/$NNPq= ףp?i-1 tag+i word `` squeezeNNK7AVBDKVBn?i+1 word mentionJJ +?NNP +οi-1 tag+i word DT sandinistasNNPSMb?NNS-?NNPnNNPʡEi word frontierJJRvNNPv?i+2 word similarityVBZQ?POSQRB/$VBD/$?i+1 word automaxVBNˡE?JJˡEi-1 suffix rahNNPS/$ٿNNP/$?i-1 tag+i word JJ demandVBSNNʡE?CD~jti-2 word dangerVBGn?NNnٿ i-2 word cbiVBNw/VBDw/?i-1 tag+i word VBD consensusNNSoʡNNoʡ?i-1 tag+i word NNP eraNNPS/$NNS@NNPT㥛 i+1 word voicesJJ|?5^@NN/$NNPVBD+i-1 tag+i word JJ wavesNNS㥛 ?NN㥛 i-1 word insidersJJV-׿VBDMbVBPSVBNʡE?i-1 tag+i word VBG suedVBNzG?JJMbXVBD"~ji+1 word findingVBw/ܿVBPp= ףVBN= ףp=VBDp= ף?i-1 tag+i word TO reformVB9vNN9v?i-1 word balzacVBZA`"POSA`"? i word open MDʡERPʡE?NNn VBDMbVBPoʡ?INPnVBZ{GzNNSK7VB%C@JJ rh@VBN +RBx&1?i tag+i-2 tag RBR CCNN~jtпJJ{GzܿNNSNNPJ +?VBGS?RBMb?i-1 tag+i word IN loyalJJPn?NNPPni-2 word green CDHzGRB?VBZSNNSA`"NNPSQ?NN)\(?VBDS?JJZd;ONNPQi+1 word added RBGz׿NN-@JJ/$INClVBZMb @NNP%C@VB ףp= ׿NNPSMbX9VBPvϿNNS"~j i+1 word forwardJJ rhVBZ"~j?NNS"~jRB(\¿NN rh?VBP(\? i word telxonNNPS㥛?NNS㥛i-1 tag+i word `` neitherCC rh?DTGz߿NNP`"i-1 word greenspanVBZsh|??NNSsh|?i-1 tag+i word NNP seemVBP-?NNS-i word orchestrasNNS(\?PRP!rhRB'1ZFWʡEi-2 word undesirableVBG~jtNNx&1?JJrh|i-1 word reeledRPl?INlҿi-1 tag+i word RB raisedVBK7A`VBNK7A`? i+2 word coreVBX9v?NNZd;JJZd;?i-1 tag+i word IN plasticsNNS(\?NN(\i-1 tag+i word `` createsVBZ5^I ?VB5^I i-1 tag+i word NN polypsNNSQ?NNQ i-1 tag+i word -START- cosmeticsNNSy&1?JJZd;ϿNNPK7A`i+1 word indicatorsVBGuV?JJL7A`?NNni+1 suffix unaNNPSw/NNPw/?i+1 word tariffsVBG7A`JJ7A`?i-1 tag+i word NNS routeVBP%CNN%C?i word meantimeNNjtJJQNNPbX9RB^I +@ i-2 word mixJJ\(\NNPNbX9NNSNbX9?NN\(\? i word quotaNNS"~NN"~?i-1 tag+i word CC republicansNNPS +?NNP +i-1 suffix homVBDZd;?VBMbXVBPMbX?VBNZd;i-1 tag+i word VB rivalJJˡE?NNˡEi-1 word congressionallyVBNMbX9?JJMbX9i-1 tag+i word `` steelNN/$?JJx&1NNP/$i+2 word worked CD+?JJS?NNPZd;?VBܿNNPSZd;NN}?5^I?VBP?PRP"~jINClNNSjti-1 tag+i word PRP$ automotiveJJv/NNPv/? i-1 tag FWNNPSx&1JJ~jtCD+?NN r?RBRrh|WDToʡ?INoʡDT+JJRrh|?NNP'1ZRBI +VBD+'')\(EXMbNNSy&1CCQ?FW/$@POS?5^I ?VBZMb?i-1 word auctionRPtV?NNq= ףp?VBD-VBN-@RBq= ףpINtVi-1 tag+i word JJ pastNNSClNNMb@JJV-i+2 word overcomesNNjt?JJjti word endrocrineJJS?NNNbX9NNP/$ֿi+1 word copyrightJJQNNL7A`VBDh|?5?i-1 word travelingNNPZd;RBL7A`@JJʡENN?5^I i-1 tag+i word JJ matingNNCl?JJCli+2 word launchingNNP{Gz?NNPS{GzRP|?5^?RB|?5^ѿ i+2 word jobsVBPQ?VBG-?RBrh|?NNuVVBQi-1 tag+i word . easternNNPmͿNNPSClJJQ?i-1 tag+i word NNS attributedVBD7A`?IN7A`i+1 word weaverNNSClNNPCl?i-1 tag+i word IN fatahNNSI +ƿNNT㥛 ?NNPZd;Oi-1 tag+i word PRP awardedJJ~jtVBD~jt? i word causedVBNJ +ɿJJZd;VBD5^I ?i+2 word mcenaneyNNSV-VBZV-?i+2 word arrangingRBHzG?INHzGi-1 tag+i word DT textJJSNNS"~jNNx&?i+1 suffix achRP= ףp=?NNSClӿRB5^I ?IN#~j@NNP)\(PRP$Zd;?NNPS~jtJJ!rh?VBx&1?WDT7A`VBDffffffJJRCl?VBN rDTVBZMbX9?NN/$VBPT㥛 пVBG!rhi-1 tag+i word PRP$ libelNN%C?JJ%C̿i+2 word denverNNSSNNPS?i tag+i-2 tag , POSVB ףp= ׿NN-?FWT㥛 пVBP ףp= ?RBV-NNS㥛 NNP㥛 ?i-1 tag+i word '' insureNNKVBPK?i-1 tag+i word JJ scienceNNy&1NNPy&1?i word growersNNSVBh|?5NNSS㥛? i word purpleJJCl?NNCli-1 tag+i word NNS assembliesNNSjt?VBPjti-1 tag+i word CC warningVBG~jt?NN~jt i suffix IPSNNPSy&1NNPy&1?i word removedJJSVBPlVBNtV?RB/$VBDCl?i-1 tag+i word WDT jealouslyRBOn?VBDOni-1 tag+i word DT '80sNNP$CNNSGz@NN~jtCDX9vοi-1 word encouragesNN1Zd?IN1Zd i word araJJ +޿NNP +?i-1 tag+i word VBP unseemlyJJףp= ?RBףp= i-1 word writeIN333333ӿVBZmRPGz?NNSm?JJ ףp= i+1 word reallyVB!rhVBGQVBP?WDT+?IN+NNSjt?i-1 tag+i word IN insuredVBN'1ZJJ'1Z?i word lightedVBNMbX9?JJMbX9i-1 word villagesVBPPnؿINPn?i-1 tag+i word NN hmongNNP?5^I NNPS?5^I ?i+2 word perestroikaNNCl?JJʡE޿RB~jtؿ i+2 word sayVBGp= ף@RBRSVBPp= ףJJ@VBZsh|??NNPSERB$CNNʡE@PRPSNNP= ףp= VBDbX9INK7A @WDTMbX9ԿNNSv/?CCClVBNrh|WPSi-1 suffix pcaWDT#~j?IN#~jĿi-1 word brothersNNPx?NNPS!rhNN rh?VBPS㥫?RBDl?VBZ'1Z?DTmNNS{Gz i word whitesNNSS@JJR&1JJ(\VBzGi word buildupNN rh?JJ rhi-2 word closed NNK7?RP?5^I RBd;O?RBRCl?JJq= ףpͿJJRClӿNNPINA`"VBNx i suffix dupVBPʡEƿNN/$?JJV-?VBNmݿi-1 word balloonsVBx&1?NNx&1i-1 word heatingRPv?RBvi-1 tag+i word VB precludedVBNB`"?JJB`" i word genialJJ+?VBN+i-1 tag+i word IN belowJJ!rhIN!rh@i+1 word exceedingNNS?JJ i word eventNN{Gzt?NNP{Gzti word paramountNNMbNNPMb?i-1 tag+i word VBD steadinessJJRV-ҿNNV-?i+1 word scheduleJJ|?5^?VBN/$NN;On?NNPoʡ i suffix uidVB&1ڿJJ}?5^I?NN!rh?RBRPnпRBx&VBZV-NNS~jthi-1 tag+i word RB passionVBZSNNS?i-1 tag+i word DT navalJJS?NNSi-1 tag+i word NN proceduresNNSE?VBZEؿ i suffix aps RBvVBDClVBZS㥛@VBDlNNA`ТVBN{GzJJS㥛NNSbX9!@NNPHzGi tag+i-2 tag VBG NNP NNS$C?NNP"~jRPI +JJK?NN-RB)\(@IN"~j̿VBDy&1VBNB`"?VBZQi-1 tag+i word IN reportingVBVBG?i-1 word promiseVBZ rh?NNS rhi-1 tag+i word VBD sacNN;On?FW;Oni-1 tag+i word JJ headlightsNN~jtNNS~jt? i word nudeNNtVVBPDlJJ/$@i-1 tag+i word , starringVBG?JJi+1 word waiversJJ/$NN/$?i-2 word crownNNS-?VBZA`"NNPS"~ji word nightmareNNm?JJmi-1 tag+i word , possiblyNNClRBCl?i-2 word acceptingNNQ?JJQi+2 word adaptCC|?5^?DT|?5^i-1 tag+i word ( u.s.aNNPCl?JJCli-1 tag+i word NN treasurerNN#~j?NNP#~ji word supremelyRBp= ף?JJp= ףؿi-1 tag+i word DT technologicalNN;OnJJ;On? i word sufiNNPClVBNv/JJ5^I @i word confidesVBZOn?NNSOnۿi-1 tag+i word JJ obstaclesVBZ rhNNS rh?i-1 tag+i word -START- anybodyNN^I +?RB^I +i tag+i-2 tag `` NNP JJ;OnVBD= ףp=@VBN rhNNSCl?NNPS㥛?VB&1NN(\¿VBPrh|RBV-i-1 tag+i word -START- securedVBNnJJffffff?NNP?5^I i-1 tag+i word , frustratedJJ~jt?VBD~jti-2 word helplessNNSS㥛JJS?NN^I +i-1 tag+i word VBD thirdDTClNNS^I +JJx&1@NNuVi-2 word signingJJV-?NNV- i suffix bulNNPK7A`?RBK7A`i+1 suffix oyaVBZ?NNSNNZd;O?JJZd;O i word vriesRB+NNP+?i+2 word detailVBPףp= ?JJףp= ÿi-1 tag+i word , ferryNNZd;?RBZd;i-1 tag+i word -START- cottonNNS"~jܿNN9v?NNPn?i-1 tag+i word CD threeNNPZd;?VBPRQNNPS/$i-1 word washington RBd;ONNPSQ?VBD(\пVBPˡEVBZ{Gz@NNS7A`NNPv/ͿVBHzGJJ ףp= NN㥛 ?i-1 tag+i word DT tradeNN|?5^@JJ|?5^i-1 tag+i word NNP aslanianNNPGz?JJGzi+1 word -END-NNPSOnNN|?5^@VBZQDTZd;ORPrh|?VBP"~j?NNSy&1@NNP9vRBx&?VBDʡE?SYMM?INK7?VB~jt?POS ףp= VBNʡE''(\?JJh|?5CDʡEi+1 word universePRP$ʡE?NNPʡEi-1 tag+i word DT ldpNN9vڿNNP9v?i-1 tag+i word VBD joelJJ/$NNP/$?i-1 tag+i word -START- mariaNNSS㥛ܿNNPS㥛?i-1 tag+i word -START- medicineNN(\NNP(\?i-1 tag+i word DT leasingVBG rhNN(\@JJI +i-2 word candidatesJJZd;OCDZd;O?i-1 tag+i word MD forceNNv/VBv/? i+2 word termNNV-JJV-? i-2 word sayJJʡE?RBzG@INSNN"~VBDK7A`@VBNGz?EXjtWDTNbX9VBGʡERBRClNNSK?NNP`"VB"~jWPV-?JJRCl?VBP$C?DTA`"?i+1 word teachersVBN{GzܿJJ{Gz?i word nonetheless JJ rhIN+RB rh"@JJSI +JJRClVBZQNNPJ +VBGx&1NNGzi+1 word heartsJJˡEVBN-?NNZd;OVBDx&1п i+2 word dnaNNS ףp= NN(\?JJffffff?i+2 word jamesJJRbX9NNjt?NNPlNNSK?VBGQ뱿i+2 word jeffreyVBNSNNX9v?NNPx&1?i word withdrewVBZRQJJX9vVBD1Zd?i+1 word speculationVBN rпJJ$CVBK7VBGy&1?NNl?VBDV-?i-1 tag+i word , confirmedVBN"~?VBD"~ i-2 word mrVBZjt?NNSjti-1 word misledRP`"ֿIN`"?i-1 tag+i word VBG masonryNNx&1?JJx&1 i word censorNN-VBP-?i-2 word returnedNNn @VB333333VBGMi+1 word disappointedRBS?JJSi-1 tag+i word `` floatUHZd;NNZd;?i-1 tag+i word NNS driveVB(\VBPS㥛?VBD~jti+2 word technicalJJ$C?NNGzJJRNbX9RBRV-@RB ףp= ׿NNSCli+2 word odysseyNNPQDTQ?i+2 word writingJJX9v?VBN-NNK7AVBD|?5^?i+2 word poppingWDT+?IN+ i-1 word asVB(\JJS(\JJRSۿWDTI +INrh|PDT#~jRB}?5^I?VBZ5^I CD(\?NNPV-?DTI +?NNPS~jt?NN$C@FWV-ݿVBDtVVBP+VBG(\JJx@VBNGz?UH$CNNSV-?i word landscapeVB333333NNI +?JJʡEۿ i suffix ezeVBK7A`?NNE @VBDKFWX9vNNSMNNPףp= i-1 tag+i word , suppliesVBZMbX9NNSMbX9?i-1 tag+i word VB genuineVBN~jtJJ~jt?i-1 tag+i word , pessimistsVBZPnNNSPn?i-1 tag+i word RB workingVBGtV?JJtV޿i-2 word coolerNNV-VBPV-? i-2 word lookVBN|?5^POSKRB+?JJR-VBZ~jt?NNS-@VBG1ZdNN}?5^I? i word navalJJI +@NNMbINCli-1 tag+i word NN posturingVBGK7NNK7?i+2 word excessDTrh|NNS|?5^?VB!rhNN|?5^VBP333333ӿUH rh@RBd;O޿INI +?i-1 tag+i word DT hardJJDl@NNoʡRBT㥛 i+2 word disinflationVBxVBPx?i-1 word grantVBZʡEVBDʡE?i+1 word womanVBG +?NNClCCVBN;OnJJʡENNP?i-2 word brandsNNPMbVBvNNPSMb?NNm?VBDX9vVBNX9v?VBPv?JJmͿi-1 tag+i word NNP promotionNNPSV-NNPsh|?@VBZoʡi-1 tag+i word CC accruedJJK7A?VBNA`"˿RBp= ףVBDJ +i-2 word copyrightNNIN?i-1 tag+i word VBZ addedVBNQ?JJh|?5?VBDZd;׿i-1 tag+i word CC joinsVBZMb?VBMbi word malpracticeNNPؿNN333333?JJ333333i+1 word partnersVBN rhJJ`"@NNP;On?VBG333333@NNClJJR7A`i-1 tag+i word , fowardNN{GzJJ{Gz? i-2 word tadNN)\(FW)\(? i suffix ifeVBNK7A`տNNzG?NNPKJJQ?NNS#~ji word commentaryNN(\@JJ(\i-1 tag+i word `` chronicallyRBM?JJ}?5^INN'1Z i word waysNNPS1Zd@NNS$CJJRMbX9ĿNNPV-ǿ i-1 word does JJA`"NNV-JJS7A`RB9vVBZT㥛 VBsh|?@RBSy&1?RBRh|?5?VBPB`" INGz?DTCl?i-1 tag+i word DT supremeJJT㥛 ?NNT㥛 i+2 word partnerJJV-@NNV-i+2 word playingVB+RBZd;INZd;?PRP$+? i word ofINm@VBDK7ٿPRP$Zd;NNPDli-1 word expertiseDT&1@WDTlIN#~ji-1 tag+i word JJ aidesNNS1Zd?NN1Zdi+1 word deniedVBD\(\RBRSۿRB)\(?VBNMbXi+1 word documentaryVBGʡEJJʡE?i-1 tag+i word NNS clusteredVBD ףp= VBN ףp= ? i suffix ass RBENN#~j@JJbX9INffffffNNP333333@VB-?VBPn?VBZSNNS/$NNPSˡEi-1 word automaticallyVBZV-VB-?RBV- i word poundsVBZNNS1Zd @NNi-1 suffix rtyVBNʡEJJzG?VBZx&1NNSףp= ?RB`"NNGz?VBDK7A`? i word flashVBD$CVBP$C?i-1 tag+i word NN dunesNN/$ÿVBZʡENNS^I +?i-1 tag+i word DT removalNN~jt?JJ~jti-1 word movedJJ}?5^I?NNGzJJR+RBR+?RBx&1 @IN)\(RPi-1 tag+i word , sterlingJJ)\(̿VBGh|?5NN`"@i-1 tag+i word NNP aljianJJ7A`ҿNNP7A`?i word originalRP|?5^JJA`"@NNʡENNP(\?i-1 tag+i word IN disclosureNNS㥛?JJsh|?NNPi+2 word focusingVBG9vNN9v?i word civilisedVBN1ZdJJ1Zd?i-2 word ballooningIN+?WDT+NN+?VBD+ i-2 word muniJJn?NNni word smotherVBʡE?JJʡEi+1 word spielvogelDT\(\NNP\(\?i+2 word weaknessesNN?5^I ڿJJS?5^I ?i+1 word patelNNPʡE?INʡE i word busterVBPrh|NNPrh|?i+1 word selectionsNNA`"?VBG ףp= JJPn?i-1 tag+i word DT reportedVBNOn?JJClVBDI +? i word rebornJJZd;?NNZd;i+1 word backgroundsNNV-?JJV-i word basketsNNSuV?NNuVi-1 tag+i word NNP vehementlyRB?VBZ i word memoVBZZd;ONNS{GzNN}?5^I?RBX9v׿NNP㥛 ¿i+2 word decidingVBG+?NNSB`"?NNEJJ~jtxi+2 word woundsVBGDl?JJDl i-1 word joinJJ ףp= ?NN ףp= i word janNNPV-?JJV-i-1 tag+i word IN economicNNQNNPQ?i-1 tag+i word NNP proficientJJjt?NNjti-2 word brantfordVBZB`"?NNSB`"i-1 tag+i word -START- monteRBRV-NNPV-? i word milksNNSZd;O?NNZd;O i+2 word jetsNN?RB{GzJJ{Gz?NNPGzi-1 tag+i word IN describingVBG-?NN-ƿi-1 word received JJMbX?RBRMbDTʡENNSZd;?NNL7A`ؿFWףp= JJRMb?RBףp= ?INS㥛NNP5^I i-2 word otherINA`"@NNPʡEMD$CNNPSˡEԿEX-DTx@FWX9vοVBDGzWDTMbXٿJJ r?RPClVBS㥛ܿVBG?RBB`"RBR9v?VBP`"οVBZSÿNNtVNNSbX9@VBNQ@i+2 word stateVBQ?VBDI +@WDT rh?RPjt?CCd;OVBP$CVBGzG?VBZp= ףVBNV-?RBQ뱿INh|?5PDT?5^I JJ)\(?NNuV?NNS+ηFWx&1NNPjt i word castsVBZ?NNSi-1 suffix omoVBZSNNSClJJ|?5^?i word federationNNA`"JJbX9NNP$C@i-1 tag+i word IN filingVBGT㥛 ?NNT㥛 i-1 tag+i word RB readVBDS?VBZV-VBjt?VBPzGi+2 word healthNNd;O VBD(\VB#~jVBPX9v?RB~jt?RPS㥛ĿNNPZd;O?NNPSd;O@JJ(\ݿVBNNbX9?VBG#~j?FWjt?INMbNNS ri-2 word thriftVBNV-VBDV-? i-1 tag+i word -START- petroleumJJS㥛NNP7A`NNʡE?i-1 tag+i word VBD askingVBPVBG?i-2 word takayamaVBGx&NNx&?i-1 tag+i word PRP enterVBPMb?RBMbi-1 tag+i word NNS quiteVBPClRBCl?i-1 tag+i word IN donorNNV-?NNSV-i-1 tag+i word CC susanVBP&1NNP&1?i-2 word decliningJJX9vVBDPn?DTX9v?VBNPni-1 tag+i word JJS peltzNNPSxNNPx?i-1 tag+i word JJ rollingVBG(\?NN(\i-1 tag+i word JJ sentimentNNS?VBNI +JJT㥛 i+2 word howVBN&1?RBRMb?WDT{Gz?CDSNNSI +?NNP{GzJJ5^I NNPSKNNnѿVBDl¿INHzGVBQ?RB\(\@VBZ5^I ?VBPT㥛 VBG rh?MDʡEi-1 tag+i word TO wrongdoingVBʡEͿVBGNbX9NNx&1?i-1 tag+i word `` snakeNNV-JJQ˿NNPK7A`?i word coloradoNNPSQٿJJT㥛 NNP%C?i-1 word languorousNNSnNNn?i-1 tag+i word DT psychoanalystNNx?JJxi-1 tag+i word , herCC333333PRP$!rhPRPGz? i+2 word !RB+NNZd;OǿPOS1ZdPRP1Zd?JJ +?VBZ1Zd?NNP1Zdi-1 word audibleVBGENNE?i-1 tag+i word NN occursVBZl@NNS333333NNxCDDli-1 word exclusivityVBZT㥛 ?NNST㥛 i+2 word often NNtV?VBNS㥛?WDTp= ףRB!rhIN+?DTOnÿJJd;O?VBDClCC-VBP333333NNSMbXNNP-? i word livesVBZffffff @NNPS= ףp=NNSE@NNʡENNPPni-1 tag+i word IN mundaneJJx&1?NNx&1i+1 suffix eelJJJ +?RPOn@VBZ= ףp=VBZd;?NNE?VBDx&1VBN/$?WDTHzGNNS333333ÿNNPSA`"?PRPPnINMbؿDTl?VBGbX9?JJR333333VBP"~?RBSNNPjt i+1 word tropRB)\(?NN1ZdJJ/$ƿ i-2 word s.p''ENNQ8NNPRQ@i-1 tag+i word VBZ insideRBZd;O?NNZd;Oi-1 tag+i word VB flowsVBZMbX?NNSMbXi word prospectJJZd;NNnNNP`"?i tag+i-2 tag RBR VBPJJ!rh?NNT㥛 VBNNbX9JJRA`"RBmINS㥛?NNSA`"?i-1 word substitutionNNSzGNNzG?i-1 tag+i word DT zurichNNPS rNNP r?i-1 tag+i word TO immigrationVB/$NN/$? i+2 word nameVBL7A`VBD\(\INA`"?VBZ)\(@DTA`"NNSV-i-1 tag+i word NN worldwideNNPq= ףp?INq= ףp i+1 word bindNNGz?FWGzi-1 tag+i word VB doVBP+?RB+i-1 tag+i word PRP carriedVBD= ףp=?VB= ףp=i word pedestrianJJ333333?NN333333i-2 word scholarsVB/$VBP/$?JJ?5^I ? i suffix lkyNNS㥛 ڿJJ~jt?NN+i+1 word contraceptiveJJ|?5^?NN7A`VBNMb?i-1 tag+i word TO possiblyVBQRBQ?i-1 tag+i word VBN offsetVBy&1?RP?5^I VBNuVͿi+1 word canvasJJMbX9?NNMbX9i word travelerNNMb?NNPMbȿi-1 tag+i word NNP p.m.NNB`"RBB`"?i-1 tag+i word JJ straightJJʡE?NNʡEi-1 tag+i word WDT surprisesNNSV-?NNPV-i+2 word coinsNNS= ףp=JJv/?RBv/CD= ףp=?i-2 word responsibilitiesCDzGNNSzG?i-2 word exercisesJJI +NNPI +? i word lavaroNN&1?NNP&1i word congressionallyRBx&1?NNx&1i-1 tag+i word , vt.NNPGz?VBPGzi+1 word industriaNNP rhFWK7A`?INx&i+2 word defendantsNNMb?JJB`"NNS/$NNP+?NNPS&1ҿRPV-?RBCl?i-1 tag+i word NN severeRBClJJCl?i-1 tag+i word NN happenedVBN333333VBD333333?i-2 word ghostbustingVBZ= ףp=?NNS= ףp=i-1 tag+i word JJ perestroikaNN"~FW"~? i suffix guaNNSʡENN5^I ۿNNPS?i+2 word declinedNNSS㥛NNPFx?NNPSFx?RBp= ף?NNV-?CC5^I JJx&1DTbX9?i+1 suffix euxNNmNNPm?i-1 tag+i word DT darwinianJJS?NNPS i word asideVBNbX9RPm @JJ?5^I ҿNNGzRBS@INI +DTV-NNS\(\i-1 tag+i word PRP commissionsVBZ ףp= ?VBP+NNSGzi word containedJJRQVBDMbVBNV-@i+1 word meritsVBG\(\?JJ\(\i+1 word sandwichNNE?FWEп i+2 word a.VBffffffNNPS-NNffffff?NNP-? i word gamesVBZd;ONNPSRQ @NNPy&1 i+2 word katoPOSZd;?VBZZd;i word failingVBG ףp= @NN ףp= JJ&1i-1 tag+i word WP laterRBx&?VBPMbX9RBRGzi-2 word customerVBnʿVBNy&1?NN`"?VBD"~ҿi-1 word yelledRPʡEۿRBʡE?i+1 word defaultsJJR/$DT-޿NN"~j@JJ(\IN-?i+2 word remainsDT%CԿVBGV-NNffffff?JJL7A`?NNP%C?i-1 tag+i word DT defendantJJQNNPrh|NN;On@i+1 word contortedRBS +?JJS +޿i-1 tag+i word NNP stumbleVBףp= ?JJףp= i+1 word paulJJ%C?NNX9v@UHRB +޿NNSKNNP|?5^i+2 word bruteNNT㥛 ?NNPT㥛 i-1 tag+i word NN organVBP&1ڿNN&1?i-1 tag+i word PRP$ coreJJR@NNRi-1 word chryslerNNPS/$JJ333333?NN333333NNP/$?i-1 tag+i word -START- lessRBR/$?LS/$i-1 tag+i word DT issueRBS-NNSQNN%C @JJ{Gzi-1 tag+i word WP controlsVBZOn?VBPOn i+2 word johnNNSJ +NNPjtNNPSV-߿NNB`"?VBD|?5^VBNףp= ?JJ5^I ?INףp= i-1 word nurembergFWvNN rh?VBDʡEi-1 tag+i word JJ palmNN/$?JJ/$i+1 word orkemVBPOn?NNOnJJx&1?VBNx&1 i word naTO1Zd@RP㥛 JJoʡNNK7i+2 word dreadVBPSINS?i-1 word mailingRBR?5^I ?JJR?5^I ڿ i suffix uezNNPE?NNPSEȿi-1 word minimizeVBG+NN+?i-1 tag+i word VBZ scheduledVBN rh?JJ rhi-1 tag+i word '' askedVBNQVBDQ? i word readerVB+NN+?i-1 tag+i word NN clarifiesVBZ!rh?NNS!rhi-2 word bullionNNPS㥛ؿNNPSS㥛?i-1 tag+i word PRP existsVBZB`"?NNSB`"i word principallyVBClRBCl?i-1 tag+i word PRP$ presaleNN5^I ?JJ5^I i tag+i-2 tag DT DTJJq= ףp?NNSK7@NNPI +?NNPSnVBG~jt?NNd;OVBNMbX?VBP"~j?i-1 tag+i word -START- complexJJ;On?NNP;Onڿ i+2 word n.v.RBX9vNNPX9v?i+1 word magnetJJK?VBGK i+2 word rapeJJMbX9NNPMbX9?i-1 tag+i word CC comparesVBZ"~?NNS"~i-1 tag+i word VBP suspectVBv?VBP1ZdJJ7A`i-1 tag+i word PRP$ fledglingVBGZd;OJJw/?NNV-i word mailmenNNS(\?NN(\i+1 word painfullyRBR'1Z?JJR'1Zi-1 tag+i word IN purposesVBZ ףp= ǿNNS ףp= ?i-1 tag+i word IN christianityNNMbXNNPMbX? i-1 suffix cdVBZ|?5^ѿNNS'1Z?NNףp= i+2 word crewVBNoʡ?VBDoʡi word tirelesslyRB ףp= ?JJ ףp= ߿i+1 word omegaJJX9v?VBNX9vi-1 word qualityNNPx&1VBnNNPSx&1?NN"~ҿRBxNNS`"?i-1 tag+i word IN urgingVBGQ?JJQi+1 word demographicVBNEJJE?i-1 tag+i word IN startedVBD!rhVBN!rh?i word veritracNNy&1NNPy&1?i+1 word speedNNQRBRw/JJRw/?VBPuV?JJn?VB!rhVBG"~?i-1 tag+i word `` keyboardNNPFxVBPnпNNx&1@JJ;Oni+2 word cocomJJK7PDTQ?RB~jtIN~jt?DTQ޿VBGK7?i-1 tag+i word -START- maineJJT㥛 NNPT㥛 ?i+2 word coachesVBG(\NN(\?i+2 word machineryRBROnNNPjtܿRBOn@NN-޿JJK7A`?i+2 word rockefellerNNS?NNPi-1 tag+i word NNP empireVBNN? i+2 word qvcNN%C̿NNP%C?i-1 tag+i word POS residentNNClJJCl?i+1 word criticismJJV-DTCl?VB"~j?NNq= ףpտINClǿi-1 tag+i word NNP scoffsVBZ r?NNS r i word growVBZoʡVBS@VBPp= ף?NNSL7A`NNw/i+2 word peugeotJJ +NNP +?i+1 word writtenVBGS㥛?NNS~jtNN)\(i+1 suffix enyNNSV-?JJV-Ϳ i-1 word spotNNSJJ?i-1 tag+i word RB enjoyVBS?VBPSJJ+i-1 tag+i word IN vietnamNN1ZdNNP1Zd? i-2 word wakeNNSMb?VBN;On?JJ/$NNPCl?VBZMbi-2 word discrepanciesVBN\(\JJ\(\?i+1 word tastesJJ~jt@NNP~jti tag+i-2 tag WP PRPVBPtV?VBDtVֿ i word berlinNNPSʡENNPʡE? i word farceNNQ?RBnJJS㥫i-1 word namingCCJ +?DTJ +i-1 tag+i word WP$ firmNNQ?JJQ i-1 word mcaNNPSPnؿNNPPn?i-1 tag+i word TO closeVBS@JJ`"RB rhi-1 tag+i word CD shortfallNN%C?JJˡENNS?5^I i+1 word nobregaIN9vNNPʡE?NNQi-1 tag+i word CC concedeVBZRQVBK7VBP!rh?i-1 tag+i word -START- orNNPK7VB1ZdRBK7VBD+CCHz@JJnNNSd;Oi-1 tag+i word NNP sheiksNNS+?NN+i-1 tag+i word POS broaderJJR~jtx?NN~jtxi-1 tag+i word NN signingVBGbX9NNbX9?i-1 tag+i word VB undulyRPRQRBRQ?i+1 word discountJJ(\?VBzGNNJ +RBzG?VBNi+2 word requireVBGI +NNZd;O?VBPS?WDTZd;?JJS㥛?DTZd;NNP/$i-2 word disneyNN|?5^NNS|?5^?i+1 word indifferenceJJ-?NN-i-1 word contractorsVBNCl?VBDCli-1 word uneasinessRB~jtпIN~jt?i-1 tag+i word DT decentJJL7A`?NNL7A`i-2 word arrogantNNS?RBRrh|?JJGz?VBDGzJJR㥛 i-1 tag+i word NN miningNNuV?VBGuVi-1 tag+i word CC landVBX9v@VBN(\NN?5^I i-1 word alsoNN%CIN`"VBZ\(\?VBDw/?PDTJJS/$VBN!rh?JJRd;OVBG/$@JJPnNNS;OnVBA`"?RBR333333VBPuV@RBm?RPV-ҿi-1 tag+i word PRP onceRBX9v?VBDX9vi-1 tag+i word DT olderJJRI +?NNI +i-1 word lawsonRBl¿VBDOnVBZ(\?VBP +?NN~jti word winnowingNNS?JJSi+2 word latinVBG ףp= ?NN ףp= i-1 word sucreJJbX9FWbX9?i+1 word leveragedVBS㥛?VBG1Zd?JJ)\(ԿNNVBN)\(?RBDT? i word kronorNN#~jJJOnFWA`"˿NNSd;O @ i suffix DRsNNStV@NNvNNPQi-2 word motifsVBZ333333NNS333333? i suffix had NNV-VBD rh+@VBNV-@VBP+JJp= ףIN-VBV-NNPSZd;NNSV-VBZV-CD(\POSPRPy&1i-1 tag+i word RB inaccurateVBd;OVBP333333JJL7A`?i+1 word excitingJJSףp= RBRS?JJSRBSףp= ?i-1 tag+i word VB madeVB?5^I ڿVBN?5^I ? i word ampleJJ-@VBD~jtVBNGzNN{GzWPGz޿i-1 tag+i word VB doubleVB5^I ?RPZd;OݿRBI +JJʡEi-1 tag+i word DT bondNN|?5^NNP|?5^?i-1 tag+i word -START- aDT(\µ!@NNSNNP VBJJuVNNnѿJJRQRBDli+2 word centerNN^I +VBD"~ڿJJS㥛?IN#~j?NNPtV?RPK7ARBOn@ i word digNNʡE?FWʡEi-1 tag+i word RB earnedVBNQJJMbX9ĿVBDJ +?i-1 tag+i word DT optionalJJQ?NNQտi-1 suffix humNNV-?RBS?INSNNPV-i-1 tag+i word VBD whatWP+?VBD+i word completesVBZZd;?NNSZd;i-1 tag+i word POS discerningJJʡE?VBGʡEi+1 word floatedNNPd;O?VBoʡNNףp= ÿi-1 tag+i word CC austereJJ+?RB+i-1 word arbitrarilyVBN?JJi+1 word glossyJJoʡ?NNoʡi+2 word upgradedNNPSX9vRBX9v? i-1 word actVBD\(\?VBN\(\RBV-INV-?i-1 suffix etsVBG/$?VBP{Gz@JJV-?NNP333333?CC%C?IN&1NNPSZd;FW+WDTy&1?DTL7A`RP/$?VBD ףp= ?PRPOnӿNNS\(\ JJRm?VBZzG?VBK7ARBR#~jVBNtV?NNRBMbX?EXA`"i-1 word exchangeableVBN%CJJS㥛?VBDx&1пi-1 tag+i word DT shoestringVBGX9vNN rh?JJtVi+1 word military VBGS?NNjtJJbX9@NNSENNPSClRBVBD-?IN?NNPE i+1 word jetNNQ?JJQοNNPZd;i-1 word resistingJJR(\?RBR(\i-1 tag+i word VB anticipatedVBN'1ZJJ'1Z?i+1 word besideNNPS333333NN333333?i word physicianNNS+NN5^I @JJuVi-1 tag+i word DT upscaleJJK7?NNK7i word cocaineNNHzG?JJRjtJJ%Ci-1 tag+i word '' yelledVBNѿVBD?i-2 word protestingNNS+VBNZd;NNQ?i-1 tag+i word DT kelloggNNv/JJA`"NNP)\(?i word dismissedVBD/$VBN/$?i-1 tag+i word NN thievesVBZ%CNNS%C?i+2 word pledgedNNPSOnNNPOn?i-1 tag+i word NNP brianJJK7NNPK7?i word cardiacMD9vVBbX9JJ㥛 @NN㥛 i word politicianNNA`"@JJA`"i-1 word doublesNN rh?RBR rh i word sproutVBPV-?INV-i-1 tag+i word VB beforeNNZd;OտIN(\@NNSV-RB1Zdi-1 word sensoryNNSS?RBS i suffix J&LNNffffff?RBS㥛NNPx&1i-1 tag+i word VB agonizingVBGMbX9JJMbX9@ i+2 word woreVBZDlNNSDl?i+1 word wathenNNPZd;?VBDZd;i-1 tag+i word VB prevalentJJ?5^I ?NN?5^I i+1 word appointmentNNʡEֿINʡE?i word anticultJJ{GzNN{Gz?i word allegationsNNSsh|??RBsh|?i-1 tag+i word WP hiringNN-?NNP-i+2 word monday RP9vʿJJ1ZdVBNCl?IN?5^I VBZ/$NNS&1NNGz@VBDMb?JJS rh?RBOn?i-1 tag+i word DT buildersNNPS rhͿNNS rh? i word likelyVBnRBScNN)\(VBDMbVBN~jtJJ-'@IN +NNP/$ӿi-1 word sportswearVBGm?NNmi-1 tag+i word NN sharedVBDZd;OVBNZd;O? i+2 word lieJJ!rh@NN;OnNNPp= ףVB+ӿVBP+?i-1 tag+i word JJ channelNNPS"~jNNP"~j?i-1 tag+i word POS winningVBGSNNS? i word rockyNNSZd;JJ?NNzGi+1 word redderVBZ{GzܿNNS{Gz?i-1 tag+i word DT thirdNNˡENNSʡEJJ5^I ?RBE?NNP?i+2 word flightINQ?NNS{GzNNP/$RPB`"?RB(\?NNˡEJJS㥛?i-1 tag+i word NNP himselfNNPSClPRPCl? i word reichWP+NNP+?i-2 word intricateNNy&1NNS+JJRQ?i+2 word convexNNSMb?NNMbi word designedVBNx@JJ;OnVBDV-i word nettlesomeJJB`"?VBNB`"ٿ i+1 word sideDT?NNS`"NNPV-JJt@NNtV CC"~WDTRQؿRB'1Zi-1 tag+i word RB elseDTMbXRB7A`?JJ}?5^Ii-1 tag+i word DT solidJJx@NNxi-1 tag+i word TO sleightVBףp= NNףp= ?i+2 word investigateNN rNNST㥛 ?RB+i tag+i-2 tag RB -START-NNPSx?VBDVBPףp= WDT}?5^I̿DTbX9?RBRMCDS?VBGh|?5?JJM?VBZRQPOS#~jNNSy&1?JJR%CܿVBNjt?NNPE?PDT$C?RBSq= ףp?EX(\?JJSS㥛ܿNN#~j?RBx&?VBQIN ףp= ?i word difficultiesNNSx&1@NN"~jVBZx&1i word elderlyJJˡE}@RBFNN)\(i-1 tag+i word TO airVB&1NN&1?i-2 word amountsJJRV-?VBNZd;?VBP/$?RB5^I ۿVBvNNS@VBDZd;RBRI +i-1 tag+i word JJ flewNNHzGVBDHzG?i+1 word democraciesVBNGz?JJGzi-1 tag+i word CC ledVBN;OnJJX9vVBD?5^I ?i-1 word destroyingJJRV-NNClPRPCl?RBRV-?i-1 word shermanNNPS|?5^@NNP|?5^i+1 word highlandRBbX9ֿINbX9?i word unendingVBG!rhԿJJZd;?NN rhi+1 word refiningNNn?JJn i word pretaxJJ^I @NNbX9 NNP$CӿCCOnNNSni+1 suffix tooRPʡECC-ۿDT\(\VBD`"?NNPq= ףp?VBZK7?INPnNNSsh|??VB#~j@RBoʡ?NN(\VBN}?5^IVBPy&1?JJ r i+1 word ardentRBS!rhJJS!rh?i-1 suffix kesPRP$/$VBPK7?NNS#~j?NNP\(\RPrh|?VBDV-VBNS?RBMbX9?DT?NNPSK7NNQ?INtV޿VBZClJJp= ף?JJR/$VB&1PRP/$@i-1 word sixtyNN?CDi-2 word lorenzoRPʡE?INʡEi+2 word attacksVBP?5^I RPGz?RBMbX9NN?5^I ?INI +?i-1 word savedPRP$x&1PRPx&1?i-1 tag+i word CC warnsVBZm?NNSINSi-1 tag+i word CC specificVBT㥛 JJJ +?NN?5^I i-1 tag+i word -START- stelcoNNSsh|?NN r@NNPʡEi-1 suffix disNNPSw/NNPw/?i word revampedVBZ~jtVBN-@JJˡEVBD-i-1 tag+i word DT leadsJJʡENNSʡE?i-1 word relationshipDTSWDTS?i word robertsonNNPS-NN7A`NNPK?i+2 word billion JJx&1@VBDQRBZd;O?INZd;O߿PDTd;O?VBNHzG@VBZbX9?NNSbX9NNPrh|VBV-$Fx@NNRi-1 tag+i word PRP missVBP-?RB-i+2 word mortimerVBZoʡ?NNSoʡi+2 word veniceWDTQ?RBv?INZd;Oi word removalNN~jt?JJ~jti-1 tag+i word DT finishingVBGQJJQ?i-1 tag+i word NN firmNNv @VBD+VBPjtƿJJPnVBZvNNSrh| i word dennisNNS rhNNNNP rh?i-2 word grandchildrenVBd;ONNS= ףp=?JJSi-1 tag+i word CC shorterJJRB`"?NNB`"i word vietnameseJJB`"?NNPB`"i-1 word petrochemicalNNSK7NNK7? i word itemRBGzJJ"~VBDGzNNjt@i word euroissuesNNSS?NNPSݿi+1 word snatchersNNA`"ۿNNPA`"?i-1 tag+i word , rangingVBG9v?NN9vi+2 word debenturesVBD/$VBNK?VBG$CJJ`"?NN7A`?i-1 tag+i word NNP recordsNNPSffffff?NNSsh|??NNP= ףp=i-2 word beachNNCl?NNSCl i+1 word beerJJQ?NNQi-1 suffix losVBN rhJJx&@VBZtVNNPK7A?NNPSGzVBD~jti+2 word rewriteNNSv/?NNv/i-1 tag+i word DT properJJS @NN-JJRQi-1 tag+i word NNP approvesVBZI +?VBPV-NNSQ˿i word argumentsNNS9v?VB9vi-1 tag+i word , minimumNN@JJi-1 tag+i word NNS plusCC!rh?VBPL7A`INoʡi-1 tag+i word DT kidsNNSZd;O?NNZd;O i+1 word canVBD(\VBNZd;O?VBPB`"VBZ{GzNNPSK7A`?NNmR@WPʡE?IN;OnNNPRQ?EXI +?RBzG?NNS1Zd@DT&1VBGS㥛WDT~jt@FWCCK7?VBp= ףJJ !i-1 tag+i word NN adjustersNNS(\?VBD(\i-1 tag+i word NNS relateVBZd;OVBPZd;O?i+2 word nerdsVBZ'1Z?NNK7NNP)\(? i-2 word s.VBZ333333VBD333333?i-1 tag+i word POS electronicsNNnʿNNSn?i-2 word hitterVBNClVBDCl?i-1 tag+i word VBG afghanistanNNSEؿNNPE?i word stackupNNx&1NNPx&1? i suffix mlyRBM#@NNSV-׿JJENN+VBD|?5^VBNHzGVBPjtWDTV-i-1 tag+i word TO answerVBK7?PDTK7i+1 word dressmakingJJGz?NNGzi+2 word faunaNNS?JJzGNNQi-1 tag+i word IN improvedJJ-?VBN~jt?NNˡEi+2 word edwinNNSMbXٿNNMbX?i+2 word resistanceVBPKEX"~?NN?i-2 word shopsJJQ?VBDQi-2 word comediesNN|?5^?JJ|?5^ٿi-1 tag+i word IN hk$NNp= ףNNPCl$/$@i-1 word oppositionRBd;OJJV-?IN"~?NN`"?WDT"~i+1 suffix oloJJ~jtVBD~jt?i+2 word thanklessVBZw/POSw/?i-1 tag+i word DT applicationNNV-?JJV-i+1 suffix gic VBGCl?JJMbX9ܿUHx&1INX9v?VBZ r?DTx&1?NNS rNNClRBI +ƿi-1 word luckedRPK7A`?INK7A`i-1 tag+i word VB minimalVBN rhJJ rh?i-1 word motionVBGClNNCl?i-1 tag+i word NN resistantJJ-?NN-i word advisableJJ rh?VBN rhi-2 word followsJJd;O?NNnʿRBZd;߿i-1 tag+i word DT slippageVBPK7ANNK7A?i-1 suffix dumVBGGz?NNGzi+1 suffix booJJ^I +?NN^I +i+2 word deniedNNP`"?VBNsh|?JJuVͿVBDJ +i-1 suffix spyNNlCDl?i-2 word ultimatelyRP?RBi+1 suffix nasIN/$?NNP-?NNPSKNNjtJJ/$ i suffix rts JJjtNNPVBSVBGRBrh|NN/d"VBPx?VBZbX9H#@NNSʡEv+@NNPSMbX@VBDd;OFWKCD i word ridingVBGS?NNSi-2 word passedNNPuV?JJuVi+2 word successfullyDTZd;WDTZd;?JJE?NNE i+2 word macyRBZd;?NNPZd;i+2 word headsWDTL7A`INL7A`?i+1 word eppelNN5^I ?NNP5^I i-1 tag+i word `` goingVBGNbX9?NNPNbX9пi-2 word mixtecJJtV?NNPtVi+1 word multilevelJJn?NNni word escudomeNNP1Zd?JJ1Zdi-1 tag+i word -START- stateNNK7A@RBSJJjtNNPEi-2 word briefVBʡE?VBPʡENN|?5^?JJ|?5^i-1 word seventhVBG+ۿNN+?i-1 tag+i word IN lincolnNNPSԿNNK7@NNPV-i+2 word wholesomeVB%CܿVBP?JJS|?5^i-1 tag+i word RBR executeVB|?5^?JJ|?5^i-1 tag+i word DT diceNNS r @NN r i+1 word derivativesDTT㥛 INT㥛 ? i suffix sinJJ\(\NNSʡENNPS?VBClNNNbX9@VBDx&1ܿi-1 tag+i word IN travelersNNPSZd;?NNPZd;i-1 word plungeWDT!rh?RBˡE?IN!rh̿JJR1ZdRPˡEVBD"~jRBR1Zd?VBN"~j? i suffix DAQJJmNNPm?i-1 tag+i word DT storyNNw/NNPw/?i-1 tag+i word NNP proceedsVBZv?NNSvi+2 word claimantsNNP"~?VB"~i-1 tag+i word CC coronetsNNPSMbX9?NNPMbX9Ŀi-1 tag+i word DT requiredNN{GzԿJJFx@VBNx i word wiserJJRMb?NNMbؿi-1 word aidesNN1ZdVBD'1Z?VBPx&1?i+1 word splintsNN|?5^VBD|?5^?i+2 word matthewsNNSh|?5NNh|?5?i+2 word showingNNX9vJJR+@RB(\RBRףp= i+2 word pushkinVBNQVBDQ?i+2 word trailerRPE?INEi+2 word assistanceNNSMbVBZMb?i-1 word appellateNNV-߿NNPV-?i-1 word crookedNNtV?JJtV i suffix SkyNNPzG?NNPSw/UHw/NN+?JJ+ i word quitVBuV?NNPSv/JJmNN"~jVBDRQ@VBPHzG@RBL7A`пVBZʡEi-1 tag+i word CC ebbsVBZ(\?VBZd;ONN|?5^i+1 suffix ismVBS?NNPB`"JJMbX?NN7A`VBD?5^I @DTCl?FWn?RBRMbVBP\(\?VBN= ףp=RB rJJRMb?VBZ+?INv/?i tag+i-2 tag JJ JJVB㥛 ?RBClVBD?VBPS㥛JJRHzG@DT5^I NNP/$ѿNNSGz?NNPS$CӿNNT㥛 ?FW?5^I ?JJSx&RBRQJJClVBZMbX?VBGFx?VBNʡE@WDT5^I ?EXMbP?INMbX?CD ri+2 word sixthRP~jtIN~jt?i-1 tag+i word NN expressVBPGz@NNd;ORB rINGzi-1 tag+i word NN socketNNv?VBDvi-1 suffix anc NN~jt@POSjt?CDNNS#~j?NNPOnNNPSHzGRBʡEVBZ-@VBP(\ڿi+1 word watchersNN㥛 ?JJQ޿NNP+VBQi-1 tag+i word CD morningsVBZ&1NNS&1?i-1 word nobodyRBJ +ѿINJ +?VBZ^I +?VBDS?VBN rhi-1 tag+i word PRP travelVBP9v?VBD9vi-2 word connecticutJJ/$?NN/$i-1 word pinningJJZd;@RBZd;i-1 tag+i word DT hatNN/$?JJRffffffJJw/Ŀ i suffix UFONNPS㥛?NNPS(\NNSw/NNmݿi-1 word machinesJJ)\(ԿINCl?VBʡEۿVBGJ +?VBD%CVBNMbX9?VBPuVWDTCli-1 tag+i word NNS echoVBZ%CVBPNbX9?NNSE i+1 word thenRB?NNPؿi-2 word downsizedVBN333333?NN333333i+1 word northeastVBG+JJCl@NNPi-1 tag+i word IN jetsNNPSx&NNSx&?i+1 word helpsWDTQ?VB9vVBG\(\NNtV@INQi-1 tag+i word DT aggregatesNNS|?5^?CD|?5^i-2 word fullestJJlҿNNl?i-1 word discriminationVBN-?VBD-ƿi+2 word affectVBGA`"JJA`"@NNʡEi+2 word yearsNNPSCl?RBRjtVBPL7A`堿PRPB`"?DT(\PRP$B`"JJRjt?VB9vRB~jt?NN(\VBDlRP;On?NNPq= ףp?VBGQJJq= ףp?VBZzG?JJS-?VBNv/@INʡE@NNSMbX9i word colinasNNPSjtԿNNPjt?i word forecastsVBZ rh?VBPp= ףNNSʡE?i-2 word counselJJSVBDS?i-1 tag+i word NNP railsNNPSZd;O?NNPZd;Oi+2 word diamondsVBD= ףp=?VBN= ףp=i-1 word talkingNNSGzֿRPh|?5JJ= ףp=@NNlRB/$INMbX@i-1 tag+i word TO plentyNNL7A`VBMJJ?i word poorestJJSzG@NNzGi-1 suffix iefRBQNNPSzGҿINjtVBZy&1?VBClVBD1ZdVBN1Zd?WDTOnPRPtVNNPx&1?NNףp= ӿJJʡE@VBP~jtDTrh|?NNS +?VBG/$?i-1 word including VBGS㥛?JJV-?NNS㥛?RBR{GztVBNx&1?CDy&1|?CCq= ףpJJRQ@RB{GzIN9v?RP5^I NNS"~?NNPV-?i-1 tag+i word VBD insistentVBNClJJCl?i-2 word givensNNPS\(\NNsh|??JJsh|?NNP\(\?i-1 tag+i word IN irvingVBGL7A`NNPL7A`?i-1 tag+i word , coolVBZd;OVBPʡE@NNNbX9VBDE i suffix fitVBI +@VBDA`"VBN= ףp=ڿCCX9vIN1ZdNNSzG JJR-NNPQ JJK7A`@RBRGzVBPMbX @RB\(\NNK7@VBZKi+2 word liarsVBNZd;O?VBDZd;Oi-2 word shakyVBPSۿWDTQIN-?i-1 tag+i word VBD capableJJPn?NNPni-1 tag+i word JJ insistJJ+VBP+? i word usairNNoʡNNPoʡ? i+1 word reneNN`"?JJ`"i+2 word offsettingVBNy&1VBDy&1?!i-1 tag+i word NNP administrationVBP{GzNNV-NNPS?i-2 word gatesJJ@NNʡENNP"~i-1 tag+i word DT atlasJJNNP? i+1 word muchWRBM?DTxJJNbX9?RP~jtVBbX9?NNlڿVBD ףp= ?CCd;OWDTSVBN/$?VBP"~?IN^I +NNSʡEVBZ+?VBG;On?RBQE @NNP(\i-1 tag+i word JJ strikeVBffffff?VBPffffffi-1 tag+i word NNS posedVBNbX9VBDbX9?i-1 tag+i word DT amusementNNtV?JJtVi+2 word telecommunicationsVBG-޿VBNy&1?NN-?JJy&1i-1 tag+i word IN ifiNN-NNP-?i word rankingNN9vVBGL7A` JJS@i-1 tag+i word PRP$ reachNNS㥛 ҿNN㥛 ?i word modernizeVBQ?JJQi-1 tag+i word DT windshieldsNNSy&1?NNy&1i-1 tag+i word CC overdraftJJMbX9NNMbX9?i word yourselfVB1ZdNNzGPRP|?5^ @RB(\i+2 word outokumpuNNPn@NNPPni-1 tag+i word NN wickerNN+?JJ+ i+2 word boldVBN/$VBP`"޿VBZzGNNSm?VB\(\@NN/$?VBDjti-1 tag+i word WRB financingNNS?JJSi-1 tag+i word NNP choosesVBZ+?VBD+i+1 suffix onyJJK7A?NNPSFxVBNGzNNjt?NNPRQi-1 tag+i word NN arrivesVBZMb?NNSSۿRBli-1 tag+i word `` leWRBQNNPQ? i+2 word '40sNNS!rhԿCD!rh? i+2 word timeJJR-NNP(\RBR)\(?VBN\(\?DTS?NNPS rRPMbX9JJoʡPDT~jt?WDTl?INCl@VBGMbX@CDVB^I +@VBD ףp= NNSsh|?VBZ+NNX9vVBP#~jRBNbX9?i-1 tag+i word RB killingJJ= ףp=VBG= ףp=?i word prominenceVBq= ףpNNq= ףp?i+2 word unswaggeringNN rhNNSmտJJV-? i+1 word atopRBRQ@JJRQ i word tvNNPp= #NNPSClۿRB1ZdNNx&"@CDsh|?JJZd;OVBZMbi-1 tag+i word , standardNNxJJ5^I @VBsh|?RBZd;i+2 word resentmentVBZoʡ?POSoʡi-1 tag+i word '' criteriaNNSB`"?NNB`"i-1 tag+i word ) rankingNNVBG?i-1 tag+i word DT bugVBZx&1NNx&1?i+1 word operateRB~jt?JJ~jtȿi-1 tag+i word CC falseJJV-?NNV-i+1 suffix oakNNx&1JJx&1? i-2 word wineVBZffffffNNSffffff? i word actsJJnڿVBZ"~j@VBPZd;NNSףp= ?NNrh|i-1 tag+i word IN alarmNN~jt?JJ~jti-1 suffix citNNS㥛?VBDCl?VBNCl绿RBS㥛VBZS?NNSSۿi tag+i-2 tag NN POSNNZd;O?VBPMb?WDTx&RP5^I CCd;OIN~jt?DT#~jVBZNbX9?VBV-?NNPSS?VBG +NNSJ +RBR^I +?VBNvJJ~jtJJR^I +RB1Zd@VBD?5^I @CDHzG?NNP?5^I ҿ i suffix skiNNP~jt?INClJJQ?NNQVBD5^I i-1 suffix daiNNPS㥛 NNP㥛 ?i+2 word promotionsJJ!rh?NN!rh i+1 word set VB/$NNPS(\JJjtWDT\(\?RB/$?NNQ@INJ +POSHzGWPS㥻?VBZHzG?NNSsh|??NNPMbȿi+2 word wastefulJJףp= ?RBףp= i+1 word worryingRB rh@JJoʡINCli+1 word consumers VBG"~j?VBN +JJw/ԿIN"~j?NNPX9vNNsh|?VBDFx@JJS-?WDT"~j i-2 word luckVBZGz?NNSMbNNvi-1 tag+i word JJS patentNNsh|??JJsh|? i+2 word --VBGZd;O VBPS㥛?JJQ?NNPS㥛?RBSmNNPSˡEJJRV-PRP$Q?VBNˡE?RB333333?RBR'1Z?INx&1FW!rh@DTOn?VBDQ롿CDMbJJS#~j?VBZ5^I ?NNˡE?PRPS㥛NNSOnVBV- i-1 tag+i word NN whinerVBZnNNn?i-1 tag+i word DT bigNNPS-JJ;OnNNPS @ i word zipCC+NNm?NNPףp= i-1 tag+i word DT crestJJS$CNN$C?i-1 tag+i word IN increasingVBGffffff?JJB`"ɿNNtVi+1 suffix eep NNjtVBNjtƿJJ"~j@DTˡEĿNNPQNNPSMbXٿRB$C@VBPQ?INʡE i suffix e-CNN%C?JJZd;VBB`"i-1 tag+i word VBD chargingVBG{Gz?JJ{Gz i suffix ngoNNPSMbX9NNPMbX9?i-1 tag+i word DT constitutionNNMbXNNPMbX?i-1 tag+i word VB calledVBNxVBDx@i+2 word usingRBףp= ?NNK?VBPh|?5?JJ/$NNS!rh?VBtVi-2 word floridaNNPS%CNNP%C?i-1 tag+i word : manufacturedVBN)\(?JJ)\(i-1 tag+i word TO highVBJJ?i word ballooningVBGZd;NNK7 @IN+VB{Gzi-1 tag+i word CC justiceNNx&1NNPx&1?i-1 tag+i word IN doctoringVBGSNNS?i-2 word crosslandVBN`"?JJ`"i word proteinsVBZ-?NNSzGʿINJ +i-1 word companiesRBRFx@WDT rh@VBNA`"?DTlJJI +VBD㥛 ?RBʡEVBG~jt?NNSnINJ +ѿRPHzG?VBZ/$?NN-POS?VBPZd;OǿJJR(\VBOnӿJJSx&1i-1 tag+i word '' disputeVBPuVNNuV? i+1 word deskJJ|?5^NN|?5^?i+1 word accompanyingVBK7A`?VBPy&1JJGzi tag+i-2 tag VBP VBNJJRNN? i word reformNNS'1ZNNPV-VB9vNN&1@VBP&1ڿJJx&1i-1 tag+i word JJS ardentJJS?NNSi word expenseNNS1ZdNNQ?JJSi-1 word clangingRBM?INSRPHzGi-1 suffix ornJJv/VBZ`"NNS?NNP333333?NNPS +?RBV- i word curbsNNS;On?NN;Oni-1 word puristsVBP;OnNNSV-?VBDʡEi-2 word movementsNN?5^I ?VBPL7A`?JJ!rhVBZMbX?NNSMbXVBHzGi-1 tag+i word RB spareVBV-JJV-?i-1 suffix adyVBGMbX9NNPST㥛 ?RPMVBDvVBPCl?INQJJ7A`ҿNNSMbX9RBffffff?NNPX9vοNN|?5^EXh|?5VBS@FWClVBNd;O?VBZPn?i word manneredVBN&1ڿJJ&1?i+2 word appealingDTNNS?RBGz?NNGzi-1 tag+i word VBD havocNNSZd;ONNZd;O?i-1 tag+i word VB lowJJtV?NNtVi-1 word pessimistsRBZd;O߿INPnVBP/$?i-1 word tradingRP?5^I JJR`"NNPSPn?VBNFxVBjt?PRP$ +RB?5^I ?RBRCl?VBPQ?JJ/$VBZ|?5^?NNHzG?VBDx&@WDT@INV-NNSI +?NNPPni-1 tag+i word NNP castNNlVBDl?i+2 word reinventVB/$?VBP/$ۿi+1 word regardedRBSM?JJSMi word unnamedVBN%CJJm@VBDV-i+2 word stompingJJSӿNNS?i+1 word gettingNNNbX9RBA`"ӿINV-?VBZCl?JJ;Oni+1 word carrierNNFx?JJQRB㥛 ¿CDS㥛?i-1 tag+i word VBZ woodNNK7A?JJV-VBN(\ڿi+1 word flexibleNNS/$NN/$?i+1 word unnoticedVB&1VBP&1?i-1 tag+i word DT lancasterNNPS rNNP r?i+1 word rapeseedVBGV-JJV-?i-1 tag+i word NN datesVBZ ףp= NNS{Gz@VBNףp= i+1 word titansNN-?JJ-i word exposedJJ5^I VBD ףp= VBN$C@i-1 word outsideRBGzNN rh?NNPd;O?VBZ/$NNSS㥛i-1 tag+i word PRP$ approvedVBN'1ZJJ'1Z?i-1 tag+i word NN stampedeNN%C?RBQJJxֿi-2 word michaelJJZd;?NNZd;VBNh|?5RBX9v?INX9vNNSh|?5?i-1 word investigatorsVBP?JJRL7A`NNINL7A`?i+2 word polishNNMb?VBDMbпi word collectivesNNS%C?VBZ%C̿i-1 tag+i word TO forgiveVBsh|??JJsh|?ݿi-1 suffix lidRBM?INMVBZbX9ֿNNSbX9?VBGʡEJJl¿NN/$@PRPSi-1 tag+i word CC transmittedVBNA`"?VBDA`"ۿi+2 word sundayINtVWDTtV?JJR-ۿRBPnRBR|?5^@i-1 suffix imbRBL7A`RBR"~?JJT㥛 i-1 word netsRPv?RBOnINA`"!i-1 tag+i word -START- membershipNNE?NNPEi-1 tag+i word POS compositeNNV-JJV-?i-1 tag+i word DT blacksVBZDlNNSDl?i-1 tag+i word NNS fromINMb?NNPMbi-2 word gallowayDT\(\IN\(\? i+1 word jackVBNx&1VBDx&1?i word marketsNNPSQ@NNS-ֿNNP%CVBZx&1i-2 word inspiredNNPlNNS@JJRK7?RBRK7ɿJJ$CNNSB`"?i-2 word qualmsJJNbX9@NNNbX9i+2 word barnardNN`"?RB`"i-1 tag+i word -START- nixdorfRBʡENNPʡE?i-1 tag+i word IN repeatedJJSVBNS?i word senatorNNQNNPQ?i-1 tag+i word DT drawingVBG㥛 ?NN|?5^NNP5^I i-1 word recoveringJJZd;?NNZd;i+1 word procurementVBM¿VBN?5^I @JJ㥛 VBD= ףp=i-1 tag+i word VBD swampedVBNZd;?JJZd;߿i+1 word connectionJJ(\?NNP(\ i word blowsNNSQ?NNQ޿ i-2 word beVBG rh?VBD ףp= VBN`"@VBPmWDTZd;PRPCl?RBMbRBR&1NNx&1WRBGz?CCMb?RBS= ףp@JJSw/VB!rh?CDClEX ףp= JJ-@DT~jt@RPDlFWMbXNNS|?5^NNP ףp= ?PDT`"IN r?NNPSxJJRFx?i-1 tag+i word -START- seeVB#~j?NNMbNNPNbX9 i suffix oggVB$CӿNNSQNN+?JJA`"NNP{Gzt i word lionNNPRQ?NNRQi+2 word producedNNS`"?NNPMb`NN?5^I ?VBD~jtۿVBP`"JJw/?VBZ`"i+1 word factoryJJJ +NNP-?VBNSNNFx?CD-i-1 word stretchingRPZd;OINZd;O?i-2 word omronNNPS%CNNSQNNPZd;? i-1 word 'JJ(\?JJSzGVBNGz?VBZS㥛NNPSOn?NNMbX9?VBDZd;߿RBSzG?VBPA`"ӿRB333333ۿVBGL7A`ؿINX9vNNSK?VBGzNNPQi-1 tag+i word RB neatVBPMbpJJMbp?i-1 tag+i word VBD ongoingVBGh|?5JJh|?5@i+2 word reducedNNPV-VB~jtRBlNNn@VBP~jt?JJ(\INA`"NNS;Oni word coupledVBD+VBN+@i-1 tag+i word CC ancestralVBZ}?5^IܿJJ}?5^I?i-2 word promoterVBD9v?DT ףp= WDT ףp= ?JJ9vi-1 tag+i word VBZ broughtVBN/$?JJL7A`尿WPV-i word electromagnetsVBZ rhNNS rh?i+1 word farmersVBQ?RBZd;VBD^I +?VBN!rhWDTCl?JJx&1INSݿNNP!rh i suffix rth RPn?VBN|?5^VBPd;OJJRQ @INtV@NNP#~jVB;OnNNPS= ףp=RB%C?NN{Gz @VBDQJJRI +NNSX9v i-1 suffix upJJ~jtx?CD/$@PRP$+?VBNMbXEXx&1PRP+RPh|?5DTV-NNPQVBG~jtRBCl@VBDNNS(\?NNʡE?VBPzGWDTd;OֿJJR!rh?RBRV-?VBHzGIN(\п i-2 word sexNNK7?VBDq= ףp?RBRGzCD)\(?VBNq= ףpRBFxJJ"~j? i word repealVBZ9vVBףp= ?NN$C? i word smartJJ$@VB)\(NNSSNN}?5^IRBxi-1 tag+i word DT moodNN+?JJ+i-1 tag+i word , verdictVBPA`"ۿNN"~?JJCl i suffix arsRB+NNPDlٿJJףp= VBN\(\IN$CVBZvo!@NNSw/)@VBX9vNNZd;"PDTS㥛ܿVBPxWPA`"˿NNPS rh?VBDA`"i word intensifiedVBNI +VBDI +?i-2 word volunteeredNNSMbX?JJMbXi-1 word inadequateNNZd;O?JJZd;O i word mobPRP$1ZdNN +?JJ?5^I NNP9v?i+1 word revolutionNNP`"ֿNNPS/$ӿJJx&?NNL7A`?CDDl i word tabooNNSRQJJRQ?i word measuredVBDv/RBX9vVBN)\(@JJʡEi-1 word avenueNNJ +?VBPJ +i-1 tag+i word JJ candyNNS?JJSӿi-1 tag+i word POS outsideJJ1Zd?NN1Zdӿi word moslemsNNPS-?NNP-i-1 tag+i word DT sadNN rJJ r? i-2 word gazaVB|?5^VBPV-?NN|?5^ٿ i word theirsRB|?5^NNS#~jVB|?5^JJ@NN= ףp=VBNPRPv @i-1 tag+i word PRP$ strictJJ?RB i word assertVBZsh|?VBPZd;O?RPB`"i+1 word marioNN-NNP-?i-1 tag+i word NNP prevailsVBZw/?NNw/i word brieflyNNK7A`@RBSV-JJ= ףp=RBsh|?ſVBDMbX9i word importantlyRBZd;?NNZd; i-2 word sitsJJV-CDV-?i+1 word stubbornVBPK?VBDK߿i-2 word soviets VBDtVVBNtV?WDT-RB|?5^INOnÿDTV-?VBh|?5?JJx&1?VBP+?VBGX9vNNZd;Oi+2 word chainsJJS?RBSտi-2 word splendidlyNNS+VBPGzRPrh|?JJ ףp= ?INrh|߿ i+1 suffix aiPDToʡNNHzG?DTnѿi-1 tag+i word VBG towardsNNS5^I IN5^I ?i-1 tag+i word JJ remainingVBG ףp= ?NNxJJbX9?i-2 word approachesNNSJ +CDJ +?i-1 tag+i word JJ believerNN?RBٿi-1 tag+i word CC citesNNSmVBZm? i suffix ung NNRQ@VBDV-?NNP|?5^@VBZd;OJJy&1VBNV-VBPʡEUHw/ĿRBˡEVBZ?5^I NNSFxNNPSX9v׿i-1 tag+i word PRP$ bussieresNNSlNNPl?i-1 tag+i word DT devastatingNNbX9JJV-?VBG1Zd? i+1 word stayVBZy&1ܿNNSy&1?i-1 tag+i word VBN intertwinedVBNRQ?JJRQi+1 word conclusionVBGS㥛JJd;O?NN~jti+1 word precariouslyVBZ333333?NNS333333i-2 word relieveRBR= ףp=NN= ףp=?i+1 word yuppiesJJS?NNS i suffix eboNNS㥛?JJS㥛i-1 tag+i word JJ outcryNNS`"NN;On?INSi+2 word flowersINʡENNSQ?WDTʡE?JJQi-1 word calmedRPQ?RBQi-1 word properJJMbX?NNMbXi word overrideVBS?RBSi-1 tag+i word JJ initiativesNNST㥛 ?PRPT㥛 i-1 tag+i word NN offerVBP(\?NNx&?INOni+2 word equityINJ +?RPJ +ѿVBMbVBGPn?NN?5^I JJ?i-1 word treatyVBd;OVBPd;O?i+2 word storyVBG$CNN+VBDV-տVBPFx?JJ$C?VBZFxNNP rh?i-1 tag+i word NNP cokelyRB|?5^ҿNNP|?5^?i+2 word enjoyVBNClVBPCl?WDTZd;INZd;?NNSGz?VBGzi-1 tag+i word DT plungeNN+?JJ+i-1 tag+i word , kiddiesNNSCl?JJSCli+1 word landownerJJy&1?NNy&1ܿ i-1 word usesNN%C?JJ%Ci-1 tag+i word VBD artfulVBN$CJJ$C?i-1 tag+i word IN truthNN|?5^?NNP|?5^i-1 word someoneVBZFx?JJ rhݿNN7A`VBD%C@VBN㥛 RBPn?INFxi+1 word focusNNPV-NN{Gz?VBGʡEVBN/$JJx&1@i-2 word moralWDTT㥛 ?NNS"~ҿVBN$C?NNHzGINT㥛 i suffix ZBBNNy&1NNPy&1?i-1 tag+i word VBZ determinedVBNV-JJV-@i+1 word waiverNN(\?JJ(\i-1 tag+i word IN hitsNNSCl?NNCl i-1 tag+i word DT perceptivenessNNQ?JJQٿi-1 tag+i word VBD ethicsNNSS?RBSi-2 word ginsengVBtVJJtV? i word jayarkNN$CۿNNP$C?i-1 tag+i word TO upgradeVBffffff?NNffffffi+1 word drasticallyVBZ-?NNPSQտNNS1Zd i word raidNNOn?NNPOnۿ i word rilesNNSmVBZm?i-1 tag+i word IN nikkoNNV-NNPV-?i+1 word griddedPRP$`"PRP`"?i-1 tag+i word NN protestedVBN{GztVBD{Gzt?i+1 suffix nueJJ(\?NNK7A`?VBDE?RBRGzVBPS?NNS+?NNPK7?VBGjtIN(\ؿVBN$C?WDTQRB +JJRNbX9?VB ףp= ߿VBZGzMDMbX9RBS9vDT(\? i word l988CDx&1@NNSy&1ܿNNS㥛i-1 word exportsVBNrh|VBDrh|?i-1 tag+i word VBP bowlingVBGKNNK?i-2 word chasersDTʡENNSMRB5^I ?i-2 word humanaJJ~jth?VBD9v?NNQi tag+i-2 tag ) PRPNNS^I +NNjt?VBZ^I +?VBjti+1 word approximatelyVBN-VBD-@i-1 tag+i word IN limboNNS333333NNCl?JJp= ףi-1 tag+i word DT frayJJNbX9NNNbX9?i+2 word determinedVBZMڿVBʡENNSM?RBʡE?i-1 tag+i word IN alliedJJPn?NNPPni-1 word pillsNN/$VBZ/$?VBPL7A`?VBNL7A`i-1 suffix issJJI +NNPV-?NN~jt?i-1 suffix uneNNS|?5^?NNPSVBnNN㥛 VBN~jt?CDS?VBZ~jti-1 tag+i word IN primeJJGz?NNGzi+2 word disruptionsVBNS@VBDSi-2 word comexVBG+?NN+ۿi+1 word japaneseVBPK7?JJR;On?RBjtRBR;OnCDZd;O@NNSB`"ٿVBv/?VBG~jt?JJX9v?VBZ&1?NNp= ףVBDnINv/?VBN{Gz?NNPw/i word inquiryVBP$CNNv?JJ$CNNP~jt?i-1 tag+i word POS oceansNNPSNNS?i-1 tag+i word NNS indicatesVBZI +?NNSI +i-2 word careersVBG ףp= JJS?NN!rhi-1 tag+i word NNP reducedVBN{GzVBD{Gz?i+2 word bureaucraciesVBNd;O?NN"~ʿVBD+i-1 word plottedNNGzPRP/$ٿJJjt?i-1 tag+i word IN southJJ~jt?NNDlNNPsh|?i-1 word rumoredWDT333333IN333333?i+1 word tumbleCDT㥛 VBK7RB%C?JJ1Zd?NNMbпi-1 tag+i word DT primeJJOn@NN{GzNNPSi+1 word wheelingJJCl?NNPCl i suffix HBJJJHzGNNPHzG?i-1 tag+i word `` personalJJA`"NNPA`"?i-1 tag+i word VBG scotchNN-?JJ-ƿi-1 tag+i word IN combustionNN㥛 ¿NNP㥛 ?i-1 tag+i word RB lessCC~jtVBvJJRE?RBR㥛 ?i+2 word offeringsJJl?VBDli-1 tag+i word JJ anthraxNNNbX9?JJNbX9i-1 tag+i word VBD hitchesNNSZd;?VBNZd; i+2 word luckVBDrh|WDTMbX9VBNrh|?RBGzINS@ i word mazdaWDTtVNN-NNPuV?i-1 tag+i word DT gripRBRʡENNʡE?i-1 tag+i word RB determinedVBNFx?JJQVBDM?i-1 word galleryNN333333?VBNA`"?JJ333333VBDA`"i word banxquoteJJףp= NNNbX9пNNPjt?i+1 word sugarNNSNbX9NN㥛 ?JJCl?NNP/$i-1 tag+i word FW countsNN"~ڿVBZ"~?i+1 word matchingJJRCl?RBRClNNh|?5?VBNh|?5i-1 tag+i word RB rejectedVBNV-ϿVBDV-?i-2 word seasonsPDT/$JJ/$?i-1 tag+i word NNP revolutionNNV-NNPV-?i-1 tag+i word IN revolvingVBG/$JJp= ף?NN-i+1 word exxonWDTFxINFx?i-2 word comparedJJ/$NN㥛 ҿRBRtVοJJRtV?CDbX9?RB?5^I ?IN?5^I NNP|?5^?i-2 word substantiallyVB rhVBPʡE?NN;On?JJv/i-1 tag+i word VBD cableJJ)\(NNP)\(?i word embracesVBZx&1@NNSX9vJJ^I +i+1 word biochemistJJ+?NNP+ i word rexallVBMNNPM? i word poursVBZZd;?NNSZd;߿i+2 word accidentJJ rhRB?5^I ?NNPS㥛?i-1 word ensureINHzG?DTHzGVBNbX9ؿNNNbX9?i-1 tag+i word RB exerciseVBzGVBN̿NNGz@i-1 tag+i word NNP boyUHClNNPCl? i+2 word pileRP?5^I ?IN?5^I i+1 word ownsFW-RBJ +?NNGzVBDJ +NNPʡE?i-1 tag+i word IN academicJJQ?NNQi+1 word electricalVBN= ףp=JJ ףp= @NNP(\i-1 tag+i word IN manufacturersNNPS rh?NNSX9vNNPOni+2 word solidlyRBS?INS i+2 word wallINV-NNSI +@VB&1?RBzG?NNL7A`?VBDjtVBNn?JJ/$ i-1 word tiesJJMb?DTn?NNMbRBni tag+i-2 tag PRP :NNSGzVBx&1VBGK7A`VBDFx?POSw/?VBPEпRBGz?VBZ&1?i-1 tag+i word DT municipalJJbX9?NNbX9i-1 tag+i word PRP$ tinyJJ+?NN+i+2 word knowsDTZd;O?INZd;Oi-1 word verbatimNNQ?NNPQi-1 tag+i word VBD preferredVBNK7A?JJK7A i suffix eve NNSVBDlVBPt@PRP㥛 RBQVBZK7NNPrh|?VB#~j@JJh|?5IN;OnNNSMbi word sensoryJJB`"@NNB`"i+2 word countyIN?NNPK?VBGKRB i word crowdVBPA`"?NNSQNNʡEVBZ\(\Ͽi-1 tag+i word JJR loopholesVBZףp= NNSףp= ?i-1 tag+i word DT dozensNNS/$?NN/$i-1 tag+i word RP thirdNNʡEJJʡE?i word academicNN333333NNP(\?NNS|?5^ѿJJ rh?i-1 tag+i word NNP sentVBD"~j@NN +NNP+i-1 tag+i word NN strainsNNSV-?WDTV-i+1 word democracyNNPSL7A`ؿJJv/ݿNNP ףp= ? i word grantsNNSS?VBZSi-2 word addedNNP)\(?NNoʡWDTT㥛 JJoʡ?DTT㥛 ?NNS)\(i+2 word positionsNN1ZdVBP?JJOn?NNP"~jVBVBG#~j?i-1 tag+i word RB costsVBZZd;NNSZd;?i-1 suffix zacVBZA`"POSA`"? i suffix 191CD|?5^?JJ|?5^i-1 word misconceptionDTCl?WDTCli-1 tag+i word VBN obliqueVBNv׿RP;OnJJ?RBx&1ܿi+1 word giveawayJJK7AFWK7A? i+2 word air VBDV-PDT+?VBP/$VBZlڿDT+NNPv/?VBKǿPOSl?JJDlѿNNjt? i+2 word parVBv/?NNʡEVBDx&1ؿVBNx&1?VBP̿RB;On?i-1 tag+i word VB pushedVBNd;O?VBDd;Oi+2 word frustrateRPx&?RB-INI +i-1 tag+i word DT democraticJJ{Gz@NNP{Gzi-1 tag+i word TO imposeJJxVBx?i-1 tag+i word DT finishNNV-@JJV-i-1 tag+i word NN tileJJRX9vNNX9v?i+2 word botheredJJA`"NNoʡVBNMb?i word sampledVBNMb@VBDMbi word mitigatingVBG$C˿JJy&1?NNB`" i suffix stoDTB`"ٿNNS^I +NNOn?NNPx&1?i-1 tag+i word DT usefulnessNN;On?NNP;Oni+2 word swornNNSZd;ONNZd;O?i-1 tag+i word IN hedgingNN"~j?VBG"~ji-1 suffix may VB"~j@NNoʡ?RBRNbX9VBPK7A`RBv/?INv?PDT/$JJRQVBNZd;OWDTvDT/$?i word originatedVBDS㥛VBPA`"@VBNDli+1 word booksNN\(\?VBZ(\JJS㥛VBP㥛 ?POS(\?i-2 word sylviaJJRQNNPRQ?i-1 tag+i word RB fareVBZMbXVBZd;OVBPzG?NNZd;O?JJʡE i-2 word deskRBGz@JJGzi+2 word outcomeMDA`"VB%CܿWDT{Gz?JJ?INK7 i suffix ferVB?5^I@VBPJ +@RBV-NNSGzINFxNNPSENNl@JJRB`"[@NNP-RPPnJJtVVBDA`"CD$CVBN9vVBZQi-1 tag+i word RB corruptVBNK߿JJK? i word blackNN/$ݿNNP/$?i word confrontsVBZv/?NNSv/ i suffix ufiVBNv/JJ5^I @NNPCli-2 word restructuringsJJV-?VBNV-i-1 suffix liaVBZ rh?NN rhi word entitlementNN'1Z@JJ'1Z i word labattVBENNK7ANNP%C?i+1 word boursesNN ףp= NNPNbX9ȿFWK7? i+2 word weddINˡE?NNPv/@NNbX9JJp= ףFWףp= i word ozonedepletionNN?JJi word significanceNNS)\(NN)\(?i-1 tag+i word VBN allowedJJd;OVBNd;O?i-1 tag+i word IN harddiskNNjt?JJjti-1 tag+i word DT slainNNSvVBNRQ@NNQNNPZd;Oi word pistolsNNS{Gz?NN{Gzi-1 tag+i word NNS fearVBZ^I +VB1ZdӿVBP r?i+2 word membersJJRQ?JJ{GztNNPSK׿NNZd;OJJSx&1?DT rNNP;OnPRP$S㥛?RBSx&1VBNKVBPK7CD+?NNSZd;?FW!rh?INˡE?VBZh|?5?RBbX9i-1 tag+i word VBZ definitelyRBRʡERBʡE?i-1 tag+i word VBG worseRBRy&1?JJX9vJJRzGi-2 word drawingsVBN|?5^?VBD|?5^i-1 word ratherVBNRQJJ㥛 ?VBD)\(?VBL7A`?i word pitchesVBZoʡNNSoʡ?i-1 suffix lubVBZ|?5^?NNS|?5^i-1 tag+i word DT slumpNNZd;O?JJZd;Oi-1 tag+i word VB franchiseeNNffffff?JJffffff޿ i+2 word c.NNP|?5^?NN|?5^i-1 word removingDTZd;OPDTZd;O?i-1 tag+i word CC unfairlyRB +?JJ +i-1 tag+i word DT rumoredVBNx&1?JJ rhNN7A`i-2 word launchedJJ/$NN?NNP"~?i word demonstratesVBZGz@NNPSKNNSףp= VBDʡE i word faxedNNSx&1VBNbX9VBDq= ףp@i-1 tag+i word IN heightsCCS㥛ܿNNSS㥛?i-1 word bottlingNN-?JJ- i word afghanNNSK7A`NNPK7A`?i-1 tag+i word CC looseJJPn?VBPPni+1 word demonstrationsJJ1Zd?NN1Zdi+1 suffix earJJ{Gz?NNy&1?VBDQ@NNS㥛 ?VBPuV?RBx&1?RPB`"VBGX9v?VBN/$?DTMbpVBZjtVBnWDTuVEXA`"NNP`"yPOS|?5^INh|?5?CDʡE @NNPS-?i-1 tag+i word DT flagshipNN^I +?JJ^I +i-1 tag+i word IN executiveJJS?NNSi-1 tag+i word NNS hungVBPʡEVBN}?5^I̿RBSVBDV-? i word shoutsVBZMb@VBPd;ONNSK߿NN?5^I i tag+i-2 tag PRP$ VBNNNSʡE?VBGuV?NNv?RBSV-JJSV-?CDGzJJ|?5^ҿVBZ(\i-1 tag+i word NN processingVBGGzNNGz? i+1 suffix dsVBGK7JJ rh?NNX9vi-1 word applianceNNx?JJxi word muddledVBNV-?NNSV-i-1 tag+i word JJ exerciseVBP㥛 NN㥛 ?i-1 tag+i word VBP winterNN#~j?RB#~j i-1 word seasVBPQ@NNx&IN-i-2 word everythingJJI +?NN"~RBK?PRPS i+1 word cuts JJn?JJROn?INףp= VBG?5^I NNGz?VBN+?WDTףp= ?RBV-NNSOnNNPB`"?i word settledVBN ףp= ?JJ-VBD +ֿi-1 tag+i word CC triggeredVBNCl߿VBDCl?i-1 tag+i word CC icedVBD!rhJJ!rh?i-1 tag+i word IN comsatNNPSuVͿNNPuV?i-1 tag+i word NNP cosmeticsNNPS#~jNNS#~j?i word amendmentJJrh|NNvNNPK?i-1 tag+i word DT pilotNNMbX9JJMbX9?i word ensuresVBZ+?NNS+i-1 tag+i word JJ sympatheticJJ?NNi-1 tag+i word VBG offerVBPPn?RPPni-2 word disadvantageNNB`"VBGB`"?i-2 word stationeryNNSʡE?NNʡEi+2 word contributionsVBp= ףVBPp= ף?RBZd;O?JJZd;Oi word kitchenNNS}?5^INN}?5^I?i word secaucusNNClٿNNPCl?i+2 word suspiciousNNPSl?NNSli-1 tag+i word -START- clarcorNNxNNPx?i-1 tag+i word IN sinNNSʡENNʡE? i+1 word ixlNNPSףp= ?NNPףp= i+2 word btNN?JJi word vickersNNS7A`NNP7A`@i-1 tag+i word TO tradeVBp= ף?JJ +NN;On i word hillNNPX9v?NNPSX9v߿i+1 word delayingVBNʡEVBDʡE?i-1 tag+i word DT genentechNNA`"ӿNNPA`"? i-2 word uses RBNbX9?INNbX9NNS㥛 ?VBNMbCDS㥛?VBDjt?VBPB`"?VBB`"NNS㥛 i-2 word alexNNClNNPCl?i-1 tag+i word DT scarceNNSJJRˡEJJ333333@i-1 tag+i word VBN looseRP#~jRB#~j?i-1 tag+i word PRP$ trespassesNNS1Zd?NN1Zd i word killedVBN/$?VBD/$i-1 tag+i word VB limitsRBp= ףNNSp= ף?i-1 word memberVBNjt?NNQ?RBQVBDjt i suffix aniPRP$xƿNNd;O޿NNP/$?i-2 word sheetsNNSNNPS?i word u.s.s.r.NNSGzNN"~NNP}?5^I?i word sovereigntyNNSGzNN"~@JJx&i-1 tag+i word CC gasolineVB= ףp=NN= ףp=?i-1 word demonstrateDTrh|RBp= ף?JJp= ףпINrh|?i-1 word clarionNN;On?NNP;On¿i+1 word policiesJJ!rh?IN-?VBp= ף?VBGV-ҿNNSVBDx&1VBNRQVBPI +?i-1 tag+i word NNS oweVBP\(\?IN\(\ i+2 word dumbJJ|?5^RB|?5^?i-2 word startersNNn?JJni-2 word assistanceVB/$޿RBI +?NNCli-1 tag+i word CC flameVB^I +NNA`"?JJvi+1 word entryRP+JJ+? i+2 word hellRB(\?NNP(\ i+2 word gonJJR㥛 WP㥛 ?i+1 word newmanVBbX9ֿNNPbX9? i word draftNNSZd;ONNZd;O?i-1 tag+i word NN frenchJJ333333?NNP333333i-1 suffix pleJJ1Zd?NNK7RBR= ףp=VBNsh|?VBPOn@NNPSSVBGl¿DT/$NNPQ@CDtV?VBx&ٿRBx&VBD/$VBZK7IN1Zd?NNSv/?i-1 tag+i word NN guardNNSGzNNGz? i word argueVBDClVBPQ@RBsh|?INQVBGz?NNV-׿i-1 tag+i word NNS unconnectedVBNT㥛 JJ$C?VBDʡEi-1 tag+i word VB grimJJRw/ԿJJw/?i-1 suffix etaVBZ+NNS+?VBNw/?VBDw/i+2 word -END-INJ +?VBZ|?5^?PRPRQ?NNSZd;O@CCClDT(\?VBffffffRBR}?5^I?JJS+ǿFWRQпRBSv?PRP$+VBD!rh?VBPCl?NN{Gz?VBG~jt WRBS㥛RBjtCDMb@SYMMbX9ĿJJMRPT㥛 ?EX|?5^NNPS)\(VBNjt޿WDT9vPDTGzPOSX9v?NNP"~JJRv?UHQ?i+2 word humansVBDV-NNSV-?RBB`"INB`"?i word durableJJw/?NNw/i-1 tag+i word NNS inlandVBPsh|?RBsh|??i-1 tag+i word IN !DIGITSNNS/$JJmNNFxNNPn?CD5^I @i word anxiousVBPClJJCl?i-1 tag+i word DT hearingVBGʡENNʡE@i word episodeVBNClNNS?FWZd;i+1 word cheaperVBZHzG?NNSv/JJ rhi+2 word obstructionNNSzGNNzG?i+1 word chironNNPSnJJjt?NNPffffff i suffix xirNNCl?RBCli+1 word tribeNNPS%CNNP%C?i-1 tag+i word VBN approachedVBNMbX9?RBMbX9i-1 word touristsVBNT㥛 пVBDT㥛 ? i-1 word mailNNp= ףVBDK7AVBNK7A@WDTRQJJ(\DTRQ?NNSףp= ?i word nNNP r?NN r i word litVBD r?FWףp= JJjtRBuVNNPjt?i-1 tag+i word IN luzonNNPSʡENNPʡE?i-1 tag+i word DT involvementNN rh?JJ rhi+1 word recapitalizationJJR|?5^@JJjtVBNQi-1 tag+i word VBZ treasurerJJ+VBNsh|?NNPn?i-1 tag+i word JJ payrollsNNSQ?NNQ i-1 word goyaVBZ+?NNPSx&?NNP333333i-2 word burdensomeVBNʡENNʡE?i word tropicsNNPS!rh@NNSZd;ONNP%Ci-1 tag+i word DT figuresVBZl?NNSL7A`?NN+JJ{GzĿi-1 tag+i word WRB metalsNNSL7A`?JJL7A`i word communistVB rhNNPSSJJE@NNQNNPzG i word shareNN @JJMbNNPK7i+1 word expectsRBV-?NNtVVBPJJx&1 NNSjt?NNP + @i-1 suffix llaVBZ'1ZVBʡE?VBPZd;Oi-1 tag+i word PRP$ emptyJJ5^I ?NN5^I i-1 tag+i word PRP$ pastJJ{Gz?NN{Gzi-1 tag+i word ( netJJ +?NN +οi tag+i-2 tag ) VBGVBq= ףpݿNNq= ףp? i word extentNNv/@JJ/$VBN rh i pref1 lVBN"~?VBGT㥛 RP(\ NNn @PRP)\(NNSrh|?CCZd;O?VBP-?MD-NNPSCl{VBZPn@POS^I +PDT)\(JJS}?5^I@JJR"~@JJ/$@''B`"FWS?RBV-?VB"~jVBD;On@DT"~jNNP#~j+RBS!rh?RBRF@CDd;OIN-?i+1 word largerNNPoʡտVBGv?JJvRBʡEINjtNNSw/?i word testimonyRBA`"NNSoʡVBGzJJPnNNx&1@FWVBNGz i+1 word ourRBKNNnNNSp= ףJJR"~RPjt?PDTZd;O?RBR(\JJ9vDT}?5^IԿVBDS㥛@POSA`"VBNVBP'1ZWDTp= ףINq= ףp?VBZp= ף@VBOn?i-1 tag+i word NNP trainsNNPS}?5^IԿNNS}?5^I? i suffix lus CDxֿVBPL7A`RBSNNSףp= NNPSnNN+VBDKCCʡE3 @JJRA`"INV-@NNPGz VB^I +JJ|?5^@i+2 word concentrateNNPSV-?VBNjtJJjt?VBZ ףp= ?NNSx&1NNPRQ i suffix dipNNPn?VBDQVBMi word buglikeJJV-?NNV-i-1 word colorsVBPp= ף?NNp= ףi+2 word dominateINSWDTS?VBN/$VBD/$? i-2 word suchVBNN~jtVBD{GzJJRzG?VBZh|?5?NNPSnVBGJ +?VBN(\VBPM@JJ333333NNS|?5^@NNP?RBZd;OINCl绿CD rh?i+1 word sowingVBffffffNNffffff?i word replacementVBP}?5^INNSZd;NNZd;_@JJNbX9i-1 tag+i word TO whoopingJJQ?VBClVBGCli-1 tag+i word POS plantersNNPSV-NNS"~ʿNNP/$?i-1 tag+i word NNP moreRBR9vʿJJR%C?NNPSi+1 suffix coaNNx&ѿJJx&?i-1 tag+i word NN marketNNK7A?NNPK7Aؿi+1 word modelsVBP333333ӿJJsh|??NNK7ANNPRQ?i+2 word disagreedVBPMbXVBDMbX? i suffix MAYNNP;On?NN}?5^IܿINQi-1 tag+i word RB sellVBN`"JJ ףp= RBOnVBK7?VBP1Zd?i-1 tag+i word IN detroitNN~jtNNP~jt?i-1 tag+i word JJ buyVBP}?5^INNSSNNK7A?JJS?i+1 word franchiseDTClVBGCl?JJQ?NNNbX9 i+2 word areaNNPSQ?NNSQοi-1 tag+i word PRP monitorVB333333ӿVBPx&1?MDd;Oi+2 word victimsNNX9v޿VBNKRB +IN-?VBGB`"?NNPNbX9RPX9vJJ(\@i-1 tag+i word , sofasNNSx&1?NNx&1i-1 tag+i word JJ terroristJJ9v?NN9vi-1 tag+i word IN sourcingVBGHzG?NNMbJJ'1ZԿ i word emergeVBZ rhVBw/?VBPQ?RB&1NNmi-2 word ministersNNSQ?JJQi+1 suffix rasVBD1ZdNNP1ZdVBN1Zd?NN1Zd? i+2 word wideRBMbX?NNMbXٿVBDClVBCl?i-1 tag+i word `` impressedVBN/$JJ/$?i+2 word arrivedJJGz?NNPGz i word mixtecJJV-?NNPV-i-1 tag+i word RB seemVBHzGVBPHzG?i-1 tag+i word -START- oftenNNPEIN&1RB`" @LSp= ףNNx&1i+1 word carefulVBHzG?NNPHzGi+2 word instituteNNP!rh?JJ!rhܿi-1 tag+i word POS netNN/$?JJ/$ i word seesawJJI +?NNlVBDMbX9Կi-2 word feministJJMb?NNMbؿi-1 tag+i word NN agencyNN~jtNNP~jt? i+1 suffix de NNPS1ZdۿFW +@VBPp= ףNNSףp= NNPK?VBv/ͿJJ!rhNN+?RBh|?5i tag+i-2 tag IN TONNS+?NN+i+1 suffix azeNNl@JJli-1 tag+i word `` vivaFWv?NNPvi-1 word addressedPRP$}?5^I?PRP}?5^Ii-1 tag+i word DT nursingJJmNNm?i-1 tag+i word NNS eastCC~jtVBN|?5^ɿRB/$?i-1 tag+i word : spotJJENNP㥛 NNSlNNS㥛@i-1 tag+i word PRP$ maniaNNS1ZdNN1Zd?i-1 word venturingVBPx&1RB/$INZd;?i-1 suffix scoNNPSK7NNn?RBMb?VBZ㥛 NNS;On?NNPn?i+2 word nearbyJJw/?NNw/Կi word salvageNNjt?JJPnFWQi-1 word unchartedNNSV-?NNV- i word zlotysNNS&1?UH;OnNN+i+1 word burnerNNS㥛?JJS㥛i-1 tag+i word RB actingVBGFx?JJFxi-1 suffix culVBD;OnINS?FWK7A` i+1 word kgbNNPjt?VBN/$JJjtVBD/$?i-1 tag+i word PRP$ twaronNN'1ZNNP'1Z?i-1 tag+i word NN pricingVBGFxNNFx@ i-1 word wangNNSX9vNNP rh?NNPS rh?i-1 word confidentDT rhIN rh?i-1 tag+i word DT moralJJ1Zd?NN1Zdi-1 tag+i word POS offeringsNNSS㥛?JJS㥛 i word dryVBZL7A`JJw/@NNMbX9RB(\CD\(\i word impedimentJJq= ףpNNq= ףp?i-2 word shorterJJS/$?RBS/$ i suffix LED NNPS㥛 VBN~jt@VBPClٿNNPI +VBZ\(\VBQJJ-?VBDsh|?@RB%CIN{Gzi-1 tag+i word , thoughNNw/VBDClVBPRQRB~jt@INFxVBZ +NNPV-JJ(\ i-2 word roweNN)\(?VBD)\(NNPh|?5NNPSh|?5?i+2 word settleVBDGz?VBNGzJJbX9RP-@RB-NNbX9?i word knockedVBDZd;?JJV-NNP?5^I i+1 word dividendsJJR-?VBN{Gz?JJE@RB~jtȿNNSCCy&1?RBR-i+1 word maybeCC1Zd?VB1ZdWDTK7INK7?i word emphasizedVBZA`"VBP?5^I JJZd;O׿VBDn@i-1 word heatsRBx&1?RPx&1i-1 word thrustPRP$S㥛?PRPS㥛i-2 word ozoneVBZzGNNZd;O?JJ`"οi-1 tag+i word `` studyingVBG+?NN+i-1 word recently VBNQ?CDjtJJ`"VBZmDTA`"RBNbX9VBDnJ@VBPSIN(\? i suffix ackVBK7A@VBP&1@JJDlNNd;O@RPx@RBd;O@VBD+RBR= ףp=FW= ףp=VBNPn IN%CVBZv/NNSSNNP{Gzi word implementVBS㥛@JJS㥛NNK7i word syracuseNNx&NNPx&?i+2 word helpsVBZQNN/$?JJx&1?i+1 word privatelyRBS?NN/$VBDMbX?VBNMbXJJSIN/$?i-1 tag+i word IN rolledVBNRQJJRQ?i word collaboratedVBN+VBD+?i+1 suffix ckyVBZʡE?NNPʡE i+1 word kindWDTl?WPli+2 word qualityJJMbVBMb?VBPNNw/? i suffix rldWDTSJJ+VBZzGNNS+NNPHzG@NNZd;@ i+2 word fromVBPZd;O?NN&1RBzG?VB(\?RBSV-JJRjt?INxPRP$Pn?JJʡE?DTx&RPQNNPnCCʡERBRlNNPS'1ZܿVBGx @VBN{Gz?NNSV-?JJSʡE?UH(\VBDCl?WDT-@VBZjtPRPPnMDCli-1 tag+i word JJ paperFWS㥛NNPX9v@NNv/i word timidityNNl?JJl i-1 suffix uhNNP= ףp=?NN= ףp=i+1 word arbitrageJJjt?NNPʡE NNS"~jNNn @i+1 word spreadsJJMb?NNMbi-1 tag+i word VB dataNNB`"?VBNMbX9JJ/$INSNNSOn@VBS㥛i+2 word resignedNNSClNNPZd;?NNHzG?VBPM¿JJV-?INClVBZ+i+1 word staffsJJv/?VBPPnVBG\(\VBN+NNZd;O?i-1 tag+i word JJ attackNNˡE?RBˡEi+2 word conceitNN333333?IN333333 i-2 word nodJJ㥛 ?NNQ?CD㥛 VBQi tag+i-2 tag VBZ VBZNN9v?VBN rh?JJ rhIN+?RPʡEDT^I +VBG9vRB|?5^? i suffix lbsNNSMbX9?NNMbX9i-1 tag+i word NNP developmentsNNPV-߿NNPSV-?i-1 tag+i word -START- usaaNNʡEۿNNPʡE?i+1 word memoryRBRQNNv/JJRQ?JJ|?5^?VBG333333i+2 word fortuneNNP/$VBMbȿVBPMb?JJ/$?i+2 word workerDTy&1INy&1?NN{GztNNP{Gzt?i-1 tag+i word NNP regulatoryNNPSK7NNPK7?i-2 word basesJJffffffƿNNPRQ?NNS ףp= i word idealNN"~j?NNSRBJJPn?NNPCl? i-1 word ,"VBPd;O?VBZS㥛?CC+ηEXQ?NNoʡPOS(\JJRx&?VBN~jtȿRBbX9?VB5^I ?RBSK7CDOnUHy&1?VBGGz?VBD(\?NNS7A`IN{GzԿPRP$!rhJJ$C˿RPy&1$-NNPMbWRBV-?PDTE?WDTPnWPʡE?DT;OnFWV-?PRPuV?RBR +޿NNPS"~ҿ''`"?MDMbJJS&1i+2 word affectionateJJB`"?NNB`"i+1 word believeRB"~?VBP"~i-1 tag+i word DT inexpensiveNNGzVBPzGJJHzG?i+1 word warningVBP+?JJ= ףp=?VBZJ +NNPOnRB rhNNQ?VBN(\JJRQi-1 tag+i word , relativeVBv/ݿJJ|?5^?NNS㥛UHx&1пi-1 tag+i word NNP vastJJCl?NNPCl߿i word discontinuedNNK7NNS333333VBN|?5^@JJ%C?VBDmi word lumpierJJRGz?NNGz i-1 tag+i word POS deterioratingVBG~jt?JJuVNNjti-2 word stanleyNNS?VBNK7RBK7?DTʡE?NNPʡEVBGSi+1 word bombayJJRQ?NNRQi word unifiedVBN5^I @JJ5^I i word decreasedVBNbX9?VBDbX9i-1 tag+i word NNP steinNNPSB`"NNPB`"?i-1 word solidNNx&1?PRPSJJl¿ i suffix steNNSK7A`NNPoʡNNQ @CD`"VBPoʡ?PRPSJJ= ףpi+1 suffix curNNS?JJɿi-1 tag+i word NNP involvedVBN7A`?VBD7A`i-1 tag+i word '' jeansNNPSʡENNSʡE?i+2 word saltzburgVBNQNNPQ?i-1 tag+i word CC dealsNNS?RBi-1 tag+i word NN believeVBNbX9VBPMbX@NN/$ݿIN(\i-1 tag+i word ( naziJJGz?NNOnۿNNP9v i word aroseVB|?5^ʿNN?5^I VBDzG@VBNw/ԿRBNbX9VBZQNNS$Ci-1 word douglasVBD+NNPS/$ݿNNbX9?NNP7A`IN+?!i-1 tag+i word PRP$ restructuringVBGGzNNGz?i-1 word toppedJJQ?NNPQi+2 word shaveNNS +?MD +i+1 suffix nalDT rh?VB/$NNPS{Gz@PDT$CVBN?5^I ?VBPm?JJ rh?INK7A`?JJRVBGv/RBOnNNSGzNNP\(\?NNʡEsVBDrh|@POSE?RBR+@VBZ+?i-1 tag+i word PRP wonVBDףp= ?INףp= i-1 word creekVBZ/$ӿNNPSv/NNST㥛 ?NNZd;Oi word nicaraguanNNP/$NNPSMJJV-o@i-1 tag+i word , frequentlyRBZd;?NNZd;׿ i word spaceJJV-NNPV-?i-2 word gardenNNSvVBmտNNuV?JJRuVVBNX9vJJ!rh?VBZS㥛? i+1 word rentNNSGzJJGz?RBGzi-2 word fingersRBn?NNKJJK7Ai-1 tag+i word NNP commentNNx?NNPx i-2 word finnJJn?NNni-1 tag+i word NN dueVBZ~jtJJ5^I @NNDlRB~jti+1 word populationNNPSK7?VBG rh@NN1ZdJJSʡEJJ!rh?NNPK7 i-1 tag+i word -START- baltimoreNNP!rh?IN!rhܿi-1 tag+i word NNP impliesVBZS?NNSS i word free JJCl#@VBNQVBP$CRBCl?NNSClVBDl?CD9vNNPmNN;Oi-1 tag+i word IN 'emPRP?JJDlCDV-߿i-1 tag+i word DT visJJʡENNGzֿFW-?i-1 tag+i word NNS prohibitVBP#~j?VBD#~ji word depressantNNI +?JJI +i-1 tag+i word JJ welfareNN;On?JJ;Oni word coincidenceNNoʡ?JJoʡi-1 word freudNNPSp= ף?NNPp= ףi+1 word publishedNNPSV-߿NNV-?VBNʡERBʡE?NNSV-NNPV-?i+1 suffix rgyVBNRB/$NNS9vNNP`"@VB/$?NNPSHzGٿJJ%CNNV-ǿ i suffix ypeNNSq= ףpJJV-@NN@NNPK7i word minimumNN +?FWZd;OJJRClVBPV-JJ(\?NNSp= ףi-1 word delegatingJJ;On?RB"~jNNMbؿ i+1 word hairJJMbX?NN(\RBB`"ѿi-1 tag+i word NN borrowingsNNSl?VBDli-1 tag+i word DT heavyweightJJ$C?NN$Ci-1 word exchangedNNS|?5^?NN|?5^RB{GzIN{Gz?i-1 word lookingVBtVRB r?NN rINtV?i+1 word heightsJJv?NNQVBNK7A`ݿi-1 suffix azzNNMbX9?VBPMbX9i-1 tag+i word JJ improperJJףp= ?NNףp= ÿi+1 word cyanamidJJMbؿNNPMb? i+1 word warVBGzVBG~jtRBDlNN|?5^VBNd;OJJ^I +?NNP"~j@i-1 tag+i word POS soleNN?JJi-1 tag+i word CC importedVBNRQ?JJRQi+2 word rollingVBNMb?VBDMbi-1 tag+i word VBD quietRP"~ҿJJ"~?i-1 word ellenRB|?5^ҿNNP|?5^?i-1 tag+i word DT statisticianNNl?JJl i suffix tomJJSh|?5JJn?NNSnNNZd;O?RB7A`i-1 tag+i word `` contravenedVBN㥛 ?JJ9vVBDni-1 tag+i word NN bothCCˡEDTˡE?i-1 word toxinWDTh|?5INh|?5?i+2 word couldJJA`"PDTKJJRMb?CD/$NNPI +?VB(\VBG~jtCC\(\WDTʡEINV-?NNS~jt@NNPS/$ӿVBDMRBRMbVBP~jt?PRP~jtNN1Zd?VBNtV?RB~jtDT"~j@i+1 word fosterNNʡENNPʡE?i-1 tag+i word VBZ busyRBR~jtӿJJףp= ?NNPS㥛i+2 word comment VBNNbX9VBP7A`ҿJJ$CVBZ~jtNNPx&?NNPSPnVBDM @NNS+?VBv׿i word outsiderRBL7A`JJRjtNN"~?i-1 tag+i word IN calculatedVBN7A`?JJ7A`i word culpritNNSʡENNʡE?i-1 tag+i word NN earthmovingJJZd;O?NNZd;Oi-1 tag+i word POS castNNn?JJni-2 word appleVBK7VBPZd;?NNh|?5i-1 tag+i word IN measureNN-?NNP- i word princeNNPS?INSi-1 tag+i word -START- finallyRB rh?NNP rhi-1 word distanceVBGV-NNZd;ORBS{GzJJS{Gz?VBNw/?RBjt? i word massedVBN?5^I VBD?5^I ? i suffix uly VBPQNNS1ZdӿNN1ZdRPRQRBZd @VBNL7A`JJS㥛VBZ(\VB"~i+2 word practices RBp= ף?NNPMbNNPS-?NNZd;O?VBDV-INd;O?DTd;ONNSVBGMbJJJ +?VBN-ƿi-2 word updateNNS1Zd?NN1Zdi-2 word transferredJJR~jtNNA`"JJZd;O?i-1 tag+i word MD tellVB+?RB+i-2 word actualVBP +NNSMbX9NNMbX9?IN +?i-1 suffix iptVBDZd;VBN9v?NNMbXi-1 word recentVBPvJJNbX9@INʡENNSGz?NNPffffffVBGQ?NN)\(?FWZd; i word boutsNNSNNSS? i suffix tabNN%C?JJ9vNNPX9vi word transitionalJJCl?NNCli-2 word diseasesNNZd;?RB333333?JJx&1i-2 word exclusivelyVBGK?NNKi-1 tag+i word : proofVBZ/$ۿNNx&1?VBDԿ i suffix rodVBZ +NN +?i word diseaseNNS= ףp=NN= ףp=?i+1 word tidesJJRZd;O?RBRZd;O߿i-1 tag+i word VBD thermoRB{GzNNP{Gz?i word filingsVBPNNSuV@NNX9vRBS㥛i-1 tag+i word DT sovietsNNSzG @JJClNNPS㥛NNPSjtĿi-2 word monthlyRBINx&1?VBG"~?NN{Gz?i-1 tag+i word RB satisfiedVBNFx?JJFxٿi+2 word smaller VB-NNPS/$?NNSn?VBN%C?JJ/$VBZ/$ÿNNPnNNS㥛?VBDK߿JJRףp= ?RBR/$i-1 tag+i word DT waterfrontNNS'1ZܿNN'1Z?i+1 suffix keeJJDlѿNN +INGz?i-2 word crisesVBʡE?VBP$CRBnҿi-1 tag+i word VBZ setVBT㥛 VBNʡE?RB-i word fantasyNN +@JJ +i-1 tag+i word POS ap600NN rh?NNP rh i-1 word drug VBGSNN^I +ǿFWGzVBNK7?INd;OοVBZ(\?NNSM?NNPV-?VBDK7VBPL7A`堿WDTd;O?JJzGi-2 word bookerNNx&?JJ7A`NNP rhѿi-1 tag+i word JJS americansNNPSQ?NNSQi-1 tag+i word `` esbNNPS9vNN5^I NNPCl? i+1 word wireJJSſNNB`"?VBN"~ji+2 word energyVBNtVIN|?5^NNPV-?VBx&1ؿRP|?5^?NN333333?VBDV-i-1 tag+i word , movesVBZbX9NNSbX9?i-1 tag+i word NNS surfaceNN+VBP+?i-1 tag+i word DT marxistJJHzG?NNPHzGi+1 word depressionJJ|?5^NNP|?5^? i-1 word pleaVBZjtNNSjt?i-1 suffix tiePRP$ r?PRP rؿi-1 tag+i word PRP$ briefNNSV-NN"~j?JJʡEֿi-2 word hammingRP|?5^?IN|?5^i word rumoredJJ`"VBNMb @NN7A`VBDZd;i-2 word accusedNNQVBG㥛 @JJHzGRBZd;O?i-1 tag+i word `` measureNNPʡENNʡE?i-1 word sportyNNS~jtNN~jt?i-1 word tiffanyVBx&1NNSx&1?i word joggingVBG/$NN/$?i-1 tag+i word VBN thereEXp= ף?RBp= ףi-1 tag+i word NN awardVBNʡEݿNNʡE?i-1 word randomlyVBN{Gz?JJ{Gz i-1 word toDT1Zd?PRPV-VBDMVBZQVB`"@VBNPnJJRZd;O?WDTOnJJp= ףWP?RPrh|CCq= ףpտRBSQ롿RBR?5^I ?CD5^I ?PDT r?INoʡUH/$PRP$Cl?$Pn?FW%C?RBZd;߿NNPSh|?5?JJSQ޿VBGoʡ?NN-NNPrh|@VBPv/ NNSPn?i-1 tag+i word -START- dollarNNSjtNN1Zd?JJK7ѿi-1 tag+i word RB dueRBK@JJKi word albaniansNNPS ףp= ߿NNS ףp= ?i+2 word participatingJJrh|?NNrh|i tag+i-2 tag WRB NNPNNZd;O?NNPZd;Oi word switchesVBZ$C?NNS$Ci-1 tag+i word IN gardenNNS?JJSۿi+1 word modestJJMbP?IN~jt?NNP~jtRB)\(JJRjtRBRx&1@i-1 tag+i word CC rubicamRB\(\NNP\(\?i-1 word thoroughbredNNP|?5^?NNS|?5^VBG%C?NNJ +?JJ&1 i+2 word intoNN&1?INRQJJSx&1̿JJR+?PRPS㥛NNS7A`NNP/$PRP$S㥛?VBNA`"˿VBPjtWDTy&1?RP/$VBZd;O @RBRL7A`CDS?FW~jt?JJGz?VBZ!rhԿVBDSRBlҿVBG)\(@RBS"~jܿi word systemsVBZoʡNNPS^I +@NN7A`JJV-NNPHzGi word objectiveNN&1?JJ&1i-1 tag+i word VBN averageJJNbX9?NNNbX9i+2 word limitVBDClVBZ^I +VBP^I +?JJPn?NN ףp= i+1 suffix twDT-IN-?i word regularlyVBPnNNS rhRBffffff@NN?5^I i word supplierNNS㥛@RBRMJJRx&1CDDlRBK7NNS~jt i word arrayNN"~?JJ"~i-1 tag+i word -START- pravdaDTrh|RB rhNNPI +?i word vax9000NNSRQNN+?NNPSi+1 word unlikelyRBSI +?JJSI +NN/$?JJ/$i-1 tag+i word NNS refocusedVBNw/VBDw/?i-1 word reservesVBNq= ףp?VBPS㥛?WDTsh|??JJS㥛INsh|?NNSClVBDx&1̿i-1 tag+i word VBZ safeJJS?RB5^I VBN#~ji-1 tag+i word DT heavierJJR/$?NN/$i-1 word closetNN5^I ?JJ5^I i-1 tag+i word NNP companyNNPSQNN/$ƿNNPS?i word hardcoreNN(\?VBNX9vJJlҿJJRCli-1 tag+i word DT bogusJJX9v?NN{GzFWjt޿ i word slideJJZd;ONN@VBNtVRB/$NNS~jtVB/$? i word emeryNNq= ףpNNPq= ףp?i-1 tag+i word VBN putsVBZ$C?IN$Ci+2 word facedVBG= ףp=?NNjt?JJjti-1 word heapedJJRjt?RBRjti-2 word huggingVBGFxNNFx?i-2 word knightsNNSNbX9NNNbX9?i-1 tag+i word CC analyzingVBGS?JJSi-2 word controversyVB!rhJJ!rh?i-1 tag+i word DT tallJJ/$?NN/$ i+2 word zDT/$NNV-?JJClNNPQ?i-1 tag+i word CC ohUH5^I ?NNSݿVBvi-1 tag+i word JJ membershipsNNSh|?5?NNPh|?5i-1 tag+i word NN staysVBZA`"?NNSK7RBuVi+2 word screechingVBZ?5^I ?VBD?5^I i-1 tag+i word VBG moreRBR= ףp=NN%CܿJJRK7A`? i word dreamVBPCl?NNrh|@JJX9v i-1 tag+i word CC enableJJQVBQ?i-1 tag+i word VB unamendedVBN+JJ+?i word inferiorNNSMbJJMb? i suffix als VBP#~jVBZuV@NNSjt$1@NNPy&1,JJp= ףNNQ!VBNjtCDSRBK7A`VBjtNNPStV@VBDHzGi-2 word unauthorizedVBZ5^I NNS5^I ?i-1 tag+i word VB fundingVBGˡENNS?JJbX9 i+1 word mtmVBDMbX@JJ-INmi word embezzledRBrh|VBDrh|?i+2 word eidsmoIN?5^I NNPK7A`տVBZV-@i+1 suffix ephNNP)\(?CCS㥛RBh|?5ο i suffix absNNP^I + NNPSK7@NNSn@RB^I +NNOn#i-1 tag+i word -START- specificallyRBS㥛?NNPS㥛i word craftedVBNp= ף?JJp= ףi word southwesternNNSPnJJPn?i-1 tag+i word '' observedVBZZd;VBNGzVBD`"?i-1 word champagneVBZ#~jܿVBGK7NNS#~j?NNK7?i-1 tag+i word CC headNN&1?JJGzVBMbPi-2 word signalVBG`"?NN`"οi-2 word airportsNN{GzNNP{Gz?i word instituteNNPS%CNNM?JJ?5^I i-1 tag+i word DT containedVBNK7A?JJK7Ai-1 tag+i word IN softwoodNN ףp= JJ ףp= ?i-1 tag+i word -START- ruralJJK7?NNPK7i-1 tag+i word RB improveIN!rhVBD/$VBT㥛 @PDTi+1 word grabbedNNPx&NNPSx&?i-1 tag+i word VBP turnedVBNS㥛?VBDS㥛i+1 word contraryVBZZd;O?POSZd;Oi-1 suffix gipVBPvVBGv?i-1 word delicateNNS\(\?NN$CӿJJ|?5^i-1 tag+i word NN makingVBGClNNCl@i+1 word lesserRB~jtIN~jt?i-2 word closeVBGT㥛 ?NNˡE @CDDl?RBS㥛INS㥛?NNSClNNPʡEտVBףp= i-2 word italyNNSQ?NNP(\?VB-NN+η?VBP-?JJ +޿VBZQi-1 word usuallyVBPn@RBʡEVBZzG?VBuVJJSVBDSӿJJR ףp= VBNv/? i word riteNNE?JJE i+1 word oasJJGz?NNGzi word rNNP rhNNPS'1ZNNtV@SYMv/ͿLS(\?JJ-NNSxi+1 word teddyJJClNNPCl?i+1 word japan VBS?VBPw/WDTxJJ?5^I INx&1 @VBZQ?RB?5^I ?JJSEVBN;OnNNSQ i-1 word --VBZJ +?PRP5^I PDTMbX9VBPCl?JJ= ףp=?DTB`"?RBK7ٿCCv/?CD^I +JJSV-?VBG(\?VBDS@NN rhNNS1ZdVBOn?RBRK7AINn?UHK7?VBN|?5^WDTy&1?WP"~?RPMbNNPv/RBSV-NNPSClJJRK7A?i-1 tag+i word TO findVBV-?NNV- i suffix RSTJJClNNPl?VBSRBOn?LS-ӿi-1 tag+i word JJ commercialNN(\JJ(\?i-1 tag+i word VBG explicitJJbX9?NNbX9i-1 tag+i word DT terminalNN/$?JJQNNPsh|?տ i word howNN1ZdJJNNPDlWRB~jt@NNS(\i+1 word announcementsNNSQJJV-?NNFxi tag+i-2 tag PRP$ VBZ VBZlNNPjt?RP㥛 ?RBSjt?JJSjtVBNV-տJJv/ @VBG rhNNS(\RBKNNy&1?VBD/$i-1 tag+i word DT levelNN!rhJJ!rh?i+2 word kensingtonNNPSffffff?NNPffffffi word practicallyRBV-?NNV-i+1 word sept.NNS/$VBNtV?NN/$?VBDtVi-1 suffix gin RBX9v?NNp= ףVBDp= ףVBNEԸ''Zd;O?IN rhѿVBGS㥛 @VBPx&1JJI +VBZ#~jPOSffffffi-1 tag+i word VBN negotiatingVBG~jt?JJ~jti-1 tag+i word IN inducesVBZy&1|?NNSy&1|i word strainsWDTV-NNSV-? i suffix ounNNPSzGҿNNPzG?i-1 tag+i word NN dramsNNPSX9v׿NNSv?NNPtVi+2 word silverVBZ r?VBGFx?NNFxNNS ri-1 tag+i word IN thoroughlyNNSHzGRBHzG?i+2 word agenciesVB\(\VBP\(\?NNS\(\?VBN#~jĿJJV-i+1 suffix abcNNPI +?DTDlINDl?NNI +i-1 tag+i word NN linksNNS-?NN-i-1 tag+i word POS abortedVBN$CJJ$C?i-1 tag+i word , accruedVBN~jt?VBD~jti-1 tag+i word DT pittsburghJJffffffNNPffffff?i-1 word naturallyJJK7AVBN?RBK7A`i-1 tag+i word JJ auditsNNSV-NNFx@NNP\(\ϿVBZ/$i word overdueNN)\(VBNmJJd;O@RB㥛 i+2 word restrictVBD9v?MDX9v?VBPffffffVBN9vҿNNI +i-1 tag+i word NNPS parentNNMbX9?VBDMbX9Ŀi+2 word venturesNNoʡ?VBD!rh?RBRV-?VBNjt޿JJKJJRQNNSKi+1 word untilVBD#~j?RB5^I @NNSGz?VBףp= VBP㥛 ҿWDTZd;OVBZ\(\׿RP-PDT/$POSDTjt?NNPV-տJJHzGNNMb?VBNMbX9@INtV?i-1 tag+i word DT sayVBP\(\?VBNS㥛ؿNNʡEݿi+1 word flatsNN rh?NNP rhi-1 tag+i word JJ griefNN)\(?NNS)\(i word bathroomNNSDlNNDl?i word boostedVBN~jtJJK7VBDy&1@i-1 tag+i word IN italianJJ r?NNP ri word deregulatedVBNPn?JJ-ƿVBD(\տi word subcompactVB +NNE@JJMbX9i-1 tag+i word PRP$ artisticJJMbX9?NNMbX9ܿi-1 tag+i word RB understandVBuV?JJSNN7A`i word effectivelyRB?5^I @JJ?5^I i-1 tag+i word NN africanJJDl?NNPDli+1 word castroFWS@NNClNNPNbX9i+2 word burdenVBNnJJZd;O?VBDZd;i+2 word mildewyJJ;On?PRPSNNMbNNPPni-1 word painfullyVBGzVBNGz?i-1 word drasticVBGS㥛?NNS㥛i+2 word restructuredVBN!rh?JJ!rhܿi-1 tag+i word DT shelfNNX9v?JJX9vi+1 word archedNNS"~j?NN"~ji word investigatesVBZ5^I ?VBP5^I  i+1 word jeffJJnNNn?i-1 tag+i word WDT hastyJJZd;O?NNZd;O׿i-1 tag+i word CD flowNN)\(?JJ)\(i-1 tag+i word VBZ shrinkingVBG7A`?JJ7A` i suffix ageVBD(\VBN#~jDTHzGVB(\@VBG+JJ;On?NNxi"@VBP(\@VBZ +FWQJJRA`"RBlNNS NNP/$NNPSK7A`INZd;i-1 tag+i word -START- dallasFWQNNP'1Z?NNSh|?5οi-1 word shakespeareanNNffffff?JJffffffi-1 word uncannyNNSrh|?JJNNnҿi-1 tag+i word JJ benefitNNK7?VBPK7i-2 word nakedVBffffffVBP;On?RBRMbпi tag+i-2 tag PRP JJSVBPl?VBDl i suffix ndaNNS"~j?UHbX9ֿNNffffff?VBPZd;OPRPlJJq= ףpNNPbX9@ i+2 word shopNNPS(\VBD;OnNNP(\?VBP;On?i-2 word inexplicablyVBNw/VBDw/?i-2 word resolutionNNL7A`?VBL7A`i+1 word materialsRBQINQ?JJMb?NNV-VBDOnÿJJRX9v?VBN i suffix 40sNNSMbX@NN~jtӿVBDlCDNNPGzi-1 tag+i word CD surveysNNSQ?NNQi-1 tag+i word , nationalisticJJ&1?NN&1ҿi+2 word creekVBNGzVBDGz?i-1 tag+i word DT beepingVBGZd;?NNZd;i-1 suffix him VBPlҿWDTMbX9VBZd;@RPMbX9?RBZd;O?VBDmJJS\(\CDQNN~jtVBNI +JJMbX?INEпDTv?i-2 word basis RBRMbX?INI +?VBGK7?CCvJJRMbXJJKRP(\µDTbX9ȶNNPV-?RBn @NNzGVBP"~j i suffix ags VBD rhPDT-RBRV-VBPV-RB ףp= NNSx&@NNbX9HUHx&VBZףp= @i-1 tag+i word VBD expectedVBNV-JJV-?i-2 word warrensVBNKVBDK?i+1 word centsJJxNNFxCDm@i+1 word trevinoVBZtVINl?NNPtV?FWli-1 word leavingVBZMVBlVBGbX9JJS?NNS㥛?i-1 word resolutionINQWDTy&1?JJ rh? i word gazetaNNRQؿNNPRQ?i+1 word malpedeNN"~ʿNNP"~?i-2 word safeguardsRBx&IN r?VBZX9v i-1 suffix . NNPSGzVBD'1ZCCn?JJA`"NNPMbX9VBI +@NNJ +?POS ףp= VBN'1Z?''(\?NNS?RB%Ci-1 tag+i word -START- karstadtNNbX9NNPbX9?i-1 tag+i word DT marunouchiNNPSX9vNNPX9v?i-1 word risingRBRffffff@JJRffffffRB#~j?IN/$?NNSK7A`?RPK7JJQNNףp= @i-1 tag+i word CC distributedVBD%CVBN%C? i+2 word cfcsNNzGVBNJ +?JJd;Oֿ i word churchNNPSQNNSQNN?5^I@JJS㥛NNPp= ףп i word probesRBw/NNPnNNS!rh @NNx&1 i word hurtsVBZCl@NNPSQNNSbX9i-1 word confectionerNNPCl?NNCli-1 tag+i word NN ticketNNZd;?JJZd;i-1 suffix eddNNPSp= ףNNPp= ף?i-1 tag+i word JJ openingVBGKNNK?i+1 word children NNPS㥛ܿVB(\ڿPRP㥛 JJ-?VBZx&?NNSZd;׿PRP$㥛 ?VBNx&1VBP7A`ڿINK7A`?i-1 tag+i word NN backupVBPx&ѿNNx&?i+1 word analysts NNPS rhVBDHzG?RBSoʡJJSoʡ@VBNX9vVBP;On?INVBQNN?WDT?JJJ +?NNSQ?NNP"~j i word soulRBʡENNl?JJCli-2 word hintsDTRQINRQ? i+2 word bertRBK7AпNNK7A?i-1 word alumniVBGNN?i-2 word thrustVBPq= ףpNNSDl?NNKǿJJB`" i word vitroNNX9vNNPX9v?i+2 word inacioJJ|?5^NNP|?5^?i word occupiesVBZQ?NNS"~JJjtԿi+2 word survivedNNQ?RBQi-1 tag+i word RB sungVBNjt?NNjti word medicaidVBNmNN+ӿNNP;On?JJ/$i+1 word creditsJJd;O?NNPd;O i word pennyNNSENN/$@JJd;Oi-2 word diverseRB{GzIN{Gz?i-2 word thrownJJd;O?NNd;Oοi tag+i-2 tag ( RBVBV-VBP333333UH㥛 ?i-1 tag+i word CD marksNNS rh@JJ$CNN/$i word rewrappedVBNʡENNp= ף@VBDjt i suffix hapNNS333333RB|?5^@NN(\ڿNNPFxPDTCl绿 i word tracksNNSm?NNSVBZX9v@VBPK7i+1 word dynamicsNNMJJ(\NNPtV@ i word use FW!rhܿJJS?5^I ڿVBPQ@JJʡE INK7AVBsh|?@RP1ZdRB;OnNNPK7A`?NN|?5^@VBNClVBZ`"i+2 word pokesRB㥛 RP㥛 ?i+2 word brandsVBD rVBP r?WDTZd;JJEINK7A`?RBZd;ONNE?i-1 tag+i word DT arcaneJJ +?NN +i+2 word vaporsVBq= ףpJJq= ףp?i+1 word autryJJClNNPCl?i+2 word dropoutsNNPS㥛JJS㥛?i word hashishNNK7A?JJK7Ai-2 word restatedNNS/$NN/$? i suffix gidNNP/$VB +NNNbX9VBN"~JJZd;_@NNSmi-1 tag+i word JJ vocalJJ rh?NN rhi-1 tag+i word NN estVBDZd;ONNP~jt?NNSZd;߿NNMb?RB/$?i word universityNNDl)@JJDl)i word medicalJJNNP?i+2 word reservationsJJ?VBPi-1 tag+i word PRP southernersVBZB`"NNPSL7A`?NNSV-i-1 tag+i word IN asVBZQNNSʡERB#~j<@IN^I +i-1 tag+i word JJ dealtNNпVBD?i word accidentallyVB9vڿRB9v? i-1 tag+i word -START- torchmarkNNP~jt?NN~jti-1 word pumpedVBZ+ӿNNS+? i suffix uroNNPB`"?NNS"~NN;Onҿi-1 tag+i word VBZ exileVBPB`"VBN(\¿NN$C?i-1 tag+i word DT promiseNN rh?JJ rhi-1 tag+i word PRP$ directNNxJJx? i-1 word whenVB= ףp=NNPS$CVBN|?5^@DTx?EXS?VBG\(\@NN^I +?JJSS㥛?INʡEVBD ףp= CD+PRP`"JJK7?NNSʡE?RB`"RBSS㥛ԿWDTsh|??NNP1Zdۿi-1 tag+i word DT diskNNffffff?JJffffffi-1 tag+i word IN bellwetherJJDl?PRPENNX9vi+1 word germanNNPQ!JJ"*@NNL7A`JJS&1RBSjtVBPERB;OnINp= ףؿi-1 tag+i word VBZ essentiallyRBV-?INV-i-1 tag+i word NNP collectorsNNSK7?NNK7i+1 word courtauldsVBNK߿JJK?i-2 word aggressiveVBGMb?JJZd;O?NNGz i-1 word l.NNPS;OnVBGZd;ONNPˡE?i+1 word significantlyVBDT㥛 VBZ`"?VBؿVBPS㥛@VBNx&i-1 tag+i word DT allrightniksNNSrh|?NNrh|i-1 tag+i word DT nfibNNPQ?JJQi-1 tag+i word DT bullNNQ?JJQٿi+1 word pompanoJJCl?NNCli-1 tag+i word IN enactmentNNZd;O?JJZd;Oi-1 tag+i word VB continuingVBGp= ף?JJp= ףi word sundanceNNZd;߿NNPZd;?i+1 word infinitiVBGy&1|?NN333333?JJ~jti-1 tag+i word NNP helicopterVBClNN\(\?JJoʡտi-2 word seagramJJK?NNKi+1 suffix nupNN`"?CD`" i word pbsNNSS㥛NNffffffNNPbX9? i word copyVBP/$?NNSGzNN(\?JJ= ףp=NNP/$i+1 word certain RBw/CCS?VBNlVBPK7A`?VBG333333?NNS!rhVBv?RPCl?NNMbVBD|?5^?JJ(\VBZ!rh?i-1 tag+i word POS balanceNNK7A?JJK7Ai-1 tag+i word -START- !DIGITSCDsh|?LSsh|?@i+1 word competitivelyVBD\(\VBNK7@NN1Zdi-1 word continuedVBDjtVBPd;O޿RBˡEVBGx&1?JJ(\?NNn?i-1 tag+i word NNP orderedJJ~jtVBD~jt?i+1 word rapidRBR/$@JJR/$i-1 suffix ufoWDT(\JJ(\NN(\?NNP(\?i+1 word woundJJ#~jNNPX9vοNNʡE@i-1 tag+i word -START- soCCGz?VB/$ӿLS%CRBMb?INbX9@NNPClPRP$-NN)\(i+2 word relationshipsVBDK7DTZd;O?NNPK7?VBN1Zd?JJK7i-1 tag+i word DT governingVBG\(\@NNMbX9JJ{Gzi-1 tag+i word NNP questionCC(\տVBP(\?i-2 word presidencyVBDoʡݿVBoʡ?i-1 tag+i word CC crunchierRBRSſJJR;On?NN\(\i word burgessJJmNNPm?i+1 word offsetVBK7ARBK7A?i tag+i-2 tag WP JJVBZ7A`?VBPv?JJx&?NNx&VBD+ i word diaperJJR/$NN/$?i-1 word italyPDT-RBA`"ӿDTy&1?i+1 suffix ITSPRP$QWDTS㥛JJClۿRBn@JJSS?JJRlڿVBPL7A`?VBZw/@DTPn?RP)\(NNPS|?5^PDT%CVBD5^I @PRPOn?NNSx&1POSm?CC= ףp=?RBSffffffRBR rhCD?$"~ @MD= ףp=VBN= ףp=INuV?VBGS㥛?NN +NNPKVBV-?i-1 tag+i word RB silentJJMbX9?NNMbX9i word gentlerNNS+JJRK7A`@NNS㥛 i+1 word dishVBGL7A`JJx@NNK7A`i word occasionNNP㥛 VB㥛 ?i-1 word georgeNNP9v@NNT㥛 JJ= ףp=i-2 word obstructionNNrh|?JJrh| i-2 word sale VBNףp= VBZZd;?NNSZd;NNP?VBRQ?NNPSOnJJOn?RB/$NNx&1VBD333333?JJSV-?i-1 tag+i word PRP$ necksNNS|?5^?JJ|?5^i-1 tag+i word DT discoveryNNSh|?5NN~jt?JJZd;O i word twitchVB= ףp=@NN-JJ rh i suffix EMCJJ7A`NNP7A`?i-2 word introducingVBGS㥛?JJ-NNL7A`尿NNPOnNNSOn?i+1 word saltwaterJJ}?5^I?NN}?5^Ii+2 word shearsonNNSV-?VBN$C?VBDrh|VBZV-ϿIN ףp= i-1 tag+i word PRP$ steelyJJK?RBK i+1 suffix s.NNJJsh|?NNPS㥛?i-2 word committeesRB= ףp=?CDMbNNS#~ji-1 tag+i word NN eddieVBN+NNP+?i word exportedVBN^I +?JJ^I + i+2 word eg&gRB/$?NNP/$ѿ i+2 word sackJJ^I +@NN^I +i-1 tag+i word RB stealsVBZZd;?NNSZd;׿i word dispatchedJJ)\(VBD)\(? i-1 word fretDTd;OINd;O?i-1 tag+i word , detachedVBN333333?NN333333i-1 tag+i word PRP continueVBPv/?NNv/i-1 word philosophyVBN"~NN"~?i+1 word magicINX9v?DTx&1?UHx&1RBX9v i word senseNNS-NNPJ +VBV-RBzGNNףp= W@VBPzG?JJV-2VBZh|?5i-1 tag+i word JJ residentialNNS/$JJGz?NNS㥛 i-1 word funVBG1Zd?NN1Zdi-1 tag+i word , milanNNPSPnNNPPn?i+1 word thatcherRBFxVBZ(\?NNS9vNNPClۿNNPS9vڿJJˡE?NNPn i word .whatWDTl?IN'1ZDTjtƿi-1 word detailedJJx&1?NNx&1i-1 tag+i word VBP stemmedVBNd;OVBDd;O? i word axiomsNNPSoʡNNSoʡ?i-1 tag+i word NN automatesVBZCl?VBDCl i word covertVBPT㥛 JJ rh@NNMVBNMbXi-1 tag+i word NNS publishedVBNK7A?VBDK7A i suffix ovaVBZHzGNNw/NNPV- @i-2 word formalVBG+?NN+JJK7A`INK7A`?i+1 word jumboJJGz?NN{GzܿNNPQi-1 tag+i word DT aviationNNoʡ?JJoʡi+2 word dinkinsVBZ(\NNS(\?VBNQ?VBDQѿi-2 word yardsVBGGzJJ(\?NNzG?i+1 word becomesNNS333333ۿNN333333?i word requirementNNv?JJv߿i-1 word unocalNN rhNNP rh? i+1 word data NNPS^I +?VBGZd;O׿VBDffffffRBRHzGVBP rhJJRHzG?NNP{Gz@NNS㥛VBNZd;?JJ9v i word unusedVBN(\JJjt@VBD;Oni-1 word stollNNSʡEVBZʡE?i tag+i-2 tag VBG )VBNS?VBDSi word allegedlyRB rh@JJ rh i-2 word metINRQ?NNP$C@VBGʡE?NN7A`VBPRQJJy&1i-1 tag+i word VBG ontoRBnINn? i+1 word huntNNPSnNN ףp= ?JJ!rhNNPn?VBx&i+1 word employee RBRffffffIN;On?DTK7?JJRffffff?JJMҿNNClVBD;OnVBN}?5^I?RBK7NNPX9v޿VBGX9v?i-1 suffix ladNN`"NNP`"? i+1 word raceDTV-?NNK7@JJRSJJS㥛INV-i word subvertedJJmͿVBD+VBNʡE?i word patersonNN ףp= NNP ףp= ? i word rushedVBNFxѿVBDFx?i-1 tag+i word RB backsVBZ1Zd?IN1Zdi+2 word leagueNNSmJJffffff?RB)\(VBNy&1? i word craveVB"~VBP"~?i+1 suffix lcoVBP~jtVBD~jt?i-1 tag+i word PRP$ linksNNSV-?JJx&NNq= ףpտi+1 word shovelsVBG`"?JJ`"޿i-2 word emeryVBG+?NN+i-1 tag+i word VBN outsideJJtV޿INtV?i-1 tag+i word DT expandedVBNv/?JJv/i-1 word nomuraVBZZd;NNPSK7A`?POSZd;?NNPK7A` i-2 word bJJMb?VBDI +MDQNNL7A`?VBNV-߿i+1 word pushedNNˡE?PRPy&1JJˡEVBNMbX9?VBD-i-2 word summersNN|?5^@NNSClJJK7RBlҿi-1 tag+i word PRP livingVBG%C?NN%Ci word amicableJJvϿNNPv?i-1 tag+i word VB resetVBK7A @VBNGzJJNbX9i-1 tag+i word TO reconstructVBCl?NNCli+2 word nursedWDT(\IN(\?i-1 tag+i word NNP advisedVBD7A`?VBN7A`i-1 tag+i word PRP$ filedVBN +VBD +?i word overreactVBCl?NNCl i word moodNNCl?JJCl i suffix RepNNP|?5^?NNPS|?5^i-1 tag+i word DT sdiJJMҿNNPM?i-1 tag+i word -START- dNNSjtLSS?SYMn?i-1 tag+i word NN robbersNNS}?5^I?NNP}?5^Iܿi word justifiedVBN-JJS㥛@VBDzGi-1 word midwestNNL7A`?JJSL7A`VBNDl?JJVBDI +i-1 tag+i word IN geometricJJ"~?NN"~i-1 tag+i word WDT assumesVBZʡE?RBZd;OVBDZd;i+2 word unexpectedINףp= ?NNPףp= i+2 word basicVBPK?VBG5^I ۿVBNZd;?RB= ףp=VBDKi-1 tag+i word IN admittingVBGS?NNSi-1 suffix corNNPSX9v?NN}?5^I?NNPK7A` i-1 word consultingRB\(\JJV-NNP+NNQ?i word distributesVBZ7A`?NNS7A`i+1 word communityVB~jtVBG#~j?NN~jtJJQNNP|?5^:@i+1 suffix cueNN rh?JJq= ףpNNPSۿi-1 tag+i word PRP feelsVBZZd;O?RBZd;Oi-1 tag+i word , remainingVBG+JJ+?i-1 tag+i word NN countyNN7A`?JJ7A`i-1 tag+i word DT nixonNNPQ?JJQi-1 word heartNNSʡERBA`"NNK?CCKVBZ(\?i-1 tag+i word PRP dealVBZS㥛VBK7?VBD"~i-1 word criticizedNNSClRBCl?i+1 word christmasDTHzGNNPHzG? i word hairNNSSNNS?i+2 word interestingNNPSoʡſNNzGVBD rVBP r?JJzG?NNPoʡ?i word requireVBL7A`?VBPn@NNv/VBDmտi+1 suffix yer PRP$(\?JJSCl?VBNh|?5?DT +?RB;OnNNI +CDI +?WDT$C˿PRP(\JJ)\(INZd;ONNP/$@i-2 word tradedRBtV?VBD5^I VBN5^I ?WDTZd;?JJIN333333ӿi-1 tag+i word -START- apartINMbRB?NNP rhѿi-1 tag+i word , wedgedVBNV-?VBDV- i word sunnyNN9vJJ9v?i-1 tag+i word WDT importsVBZ!rh?NNS!rh i word matchVBP$C?NNK7A?VBDSi-2 word sentencedVBoʡNN1Zd@JJK7 i-1 word overNNMb?VBDNbX9RBR?5^I PRP(\NNP&1JJRE?PDTd;O?VBGM JJQ @VBNPnEX-IN-?VB/$FW(\?RBd;O?DT"~@i-1 tag+i word VBZ advisableVBN rhJJ rh?i-1 tag+i word DT succesfulJJl?NNl i+1 word tabsJJCl?RBCli+2 word germany NNrh|?PDT/$VBN&1INv?VBD&1?RBvVBZ~jt?DTV-ϿNNS~jti-2 word validNNSʡEVBNZd;O?NNʡE?VBDZd;Oݿ i-2 word howlNNSZd;?VBNZd;i-1 tag+i word NN estimateVBPd;ONN1Zd?VB rؿi-1 tag+i word VBG averageJJ ףp= ?NN ףp= i-1 word mightaVBuV?VBPuVi-1 tag+i word VBN dealtNN +VBD +?i word synergyNNQ?JJQi-1 tag+i word , championedVBNmJJ)\(VBD5^I ?i tag+i-2 tag VB IN NNPSE?RBR~jtRP ףp= ?NNPECDV-NNS'1Z?VBG ףp= ?RB)\(NN~jtx?JJRZd;OVBN\(\JJzG@i word condoneVBK7?NNK7ѿi-1 tag+i word DT useVBnVBP`"@NNZd;OݿJJ"~i-1 tag+i word DT syrianNN#~jĿNNPJ +JJDl?i-1 tag+i word JJ subjectNNˡE?JJˡEi-1 tag+i word NNP medicalJJ/$NNP/$?i-1 tag+i word PRP encourageVBPsh|??VBDsh|?տi-1 word aetnaNNx&1?RBx&1 i-1 word fitRPX9vֿINX9v?i-2 word neophytesVBGv/JJv/?i-1 word easilyVBsh|?տVBP(\RB"~j?i-1 tag+i word NN metalsNN"~ڿNNS"~?i+2 word utilityNNq= ףp?JJMbX9NNPMbVB|?5^ɿNNSMb?i-1 suffix pwaVBZ?NNSܿ i+1 word laxRBSL7A`?JJSL7A`i+2 word loopholesVBN;OnVBD;On?i-1 tag+i word RB costVB+VBD+?i+1 suffix kemVBPOn?NNOnJJx&1?VBNx&1i-1 tag+i word VBG bidsNNSjt?NNjti+2 word appealsNNPSL7A`ؿNNQ@NNP"~ji+1 suffix amnRB|?5^?JJ|?5^ i word branchVBMbX9NNPSV-NNRQ@JJZd;O i word fieldNNS㥛?JJ#~jNNPZd;Oi-1 word writingRB1ZdӿJJE?NNEпIN1Zd?i+1 word chargedNNPSJ +NN^I +?RBq= ףpNNP/$i-1 word navalNN-?JJ-i-1 tag+i word NN hopeVBZVBPrh|?NN`"i-2 word harvestedVBffffffNNffffff?i+1 word loafersNNMbX?RB+JJA`"?i-1 suffix ponNNPSzGJJQοNN/$NNP'1Z?i+1 word hemmingJJX9vNNKǿNNP1Zd?i-1 tag+i word VBD stampVBMb?PDTMbi+1 word maneuverJJ +?NN +i-1 tag+i word -START- natoNNP-?JJ-i+1 word culpaJJw/NNPw/?i-1 word instantNN"~j@JJ"~j i word won NNSnѿVBZd;OJJK7VBN/$ @VBPzGRBZd;NNK7AVBD/$@INףp= VBZ333333i-2 word considerVB+ǿVBG+NN r @JJ-i-1 tag+i word TO arrangingVB)\(VBG)\(? i+2 word fineDT+?IN+i-1 word duplicateDT㥛 ?IN㥛 i-1 tag+i word POS originalJJ(\ݿNNP(\? i suffix iatNNPQ@DT-NNS&1VBNX9vNNS?i+1 word pertussisNNK7?NNPK7i-1 tag+i word VB luxuryJJV-ҿNNV-?i-1 tag+i word CC libertyVBN+NN+?i+1 word tradesNNlCCL7A`VBN?5^I CDGz?JJsh|??VBvVBGHzG?i-1 tag+i word CC methodsNNSffffff?JJffffffi-1 tag+i word '' w.i.INQNNPQ?i-1 tag+i word CC riceNNS%CNN%C?i-1 tag+i word VB appliedVBX9vVBN+@JJMb i-2 word wall VBZˡE?NNPSOnJJx&VBDMb?VBP'1ZԿWDT^I +RBS?IN^I +?NNSMbX9@VBGS㥛NNVBN1ZdPOSV- i word todayVBNClJJʡENNS&1NNP"~RBGzNNq= ף@i-1 tag+i word JJ weeklyWRBbX9JJrh|@NN/$i+2 word lendingVBNtVJJ?VBDB`"? i-2 word dejaNNSV-RBZd;?DTI +i-1 tag+i word NNS prescribedVBN?NNOnVBDI +i-2 word translucentDT5^I WDT5^I ?i word seriouslyVB1ZdNNStVVBN+RBMb@i+1 word commitmentsVBGm?NNmi word implicitJJK7 @NNV-RBjtVBNuV i word fiatDT-NNS&1VBNX9vNNS?NNPQ@ i suffix eel NNPS"~jRBB`"NN{Gz@VBDSCDVBP)\(@NNPS?VB"~j@JJ ףp= VBZClNNS+i-2 word advancesJJV-?NN㥛 RBffffff?i-1 tag+i word CC mixNN;OnVB;On?i-1 word strongly VBM?VBDK7?JJ+INoʡ?VBZv/?NNzGVBNE?DTRQNNSp= ףпi+2 word amendmentNNMbVBD(\?VB(\JJMb?i-1 word helicopterVBNjtĿVBPMbпJJʡE@VBV-NNQVBDjt? i word renewsVBZM?NNS}?5^INNT㥛 пi-1 tag+i word CC toledoNNQNNPQ?i word superintendentJJ&1ʿNN&1?i+1 word connotationJJ r?NN ri-2 word gorbachev VBG^I +߿JJK7AVBNGz?NNP/$?VB5^I ?NNMb?FWnRBʡEֿNNSM? i suffix ganVBP&1ڿRBlNNPJ +?NNPSZd;JJ)\( @NNL7A`i-1 tag+i word NN hypothesizedVBN1Zd?JJ1Zdi-1 tag+i word NN missilesNNSCl?NNCl i suffix araNNSK7A`NNK7A`?JJ|?5^NNP|?5^?i-1 word bismarckianJJRSNNK7A`JJ@i+2 word clarifyVBNM?VBDMDT/$WDT/$?i-1 suffix pedRBRx&VBZVBzGa@INS?DT1ZdӿRPV-PDT~jtVBGffffff@JJRx&@NNPQNN%C?NNS|?5^ڿVBNK7A`VBP#~jPRPB`"?RB"~jԿPRP$B`"JJ\(\i-2 word cerealsNNSNNPS?i+2 word singleVB1Zd?RPI +NN~jt?VBDʡEVBPOn?RBGzֿINCl?i-2 word privatelyPDT-?JJ- i word okNN-޿VBNDlJJ+@NNPK UH}?5^I? i word haltedJJvVBDSVBNK7?i-1 tag+i word JJS westJJzG?NNzGi+2 word shirtsVB/$޿VBP/$?i-1 tag+i word POS nobleJJOn?NNOnۿi-1 tag+i word -START- nttJJOnNNPOn? i word petVBP rhNNSNbX9JJZd; @NN㥛 i+2 word beganJJ~jtNNS+?NNPK7?NNPS(\?RB +?NNSi+2 word habitsJJS?NNzGếVBPKi-1 tag+i word PRP haveVBD-VBʡE?VBP/$? i-1 word chopRP ףp= ?IN ףp= i-1 tag+i word CD beginVBPCl?RPCli+1 word fargoNNPS?SYMSINS i suffix lloNNP{Gz?NN{Gzi-1 tag+i word NN hinderingVBG?5^I ?NN?5^I ҿ i word pipeNNSffffffNNffffff?i-1 tag+i word NNS meetingVBG rhNN rh?i-1 word racketeeringNNS㥛NNPS㥛?i-1 tag+i word VBZ !HYPHEN VBGy&1ԿJJzGNN#~j @CDV-?NNP?VB ףp= VBNy&1WDTOnRBzG?NNS㥛 @i-1 tag+i word CC affirmationVBrh|NNrh|?i+2 word deliverNNxJJ'1ZVBZQNNSQ?NNPClVB^I +?VBGx? i+2 word bagsRPI +?INI +i-1 word ailmentVBNd;O?VBd;Oi+1 word proceduresJJ-ӿNNjt@VBNDlPRP$\(\VBGx&i-1 word checkingVBZ\(\?NNS\(\i+1 word factoFWZd;O@INFxNNSNNPV-i+1 suffix creNNSQJJT㥛 ?NNh|?5NNPʡE? i word sofaCD\(\NN\(\? i+2 word rnaVBNn?VBDni+2 word answeringJJZd;JJSZd;NNZd;O?i+1 word spasmsVB +JJ +?i+1 word shapiroNN?5^I ?NNP?5^I i-1 tag+i word JJ feedNN?5^I ?VBD?5^I i-1 tag+i word VBD neitherDTˡEĿRBV-CCGz? i-2 word fateVBZDlNNPDl? i word windyNNNNP?i word accountantsNNS+?IN+i word strugglingVBG;O@NNX9vJJoʡi-1 suffix loyVBGK7A`NNK7A`?i-2 word semelVBFx?NNw/VBD}?5^I?i-1 tag+i word VB oneNNCl?PRPS㥛?JJnVBNQCD%C?i+1 suffix jetNNQ?JJQοNNPZd; i word mathNN-?JJ-i word tripledVBD㥛 @VBNq= ףpJJ-i-1 word counterculturalNN+?JJ+i word sweepingVBGjtJJ㥛 0@NN|?5^ i-1 word sleepVB'1ZRB'1Z?i-1 word subgroupsDT'1ZWDT'1Z? i word equalVBZy&1ԿVBʡE?JJy&1@NN333333FWy&1|VBP"~?RBK7 i+1 word pwaDTMbXٿWDT rhINuV?i-1 tag+i word VBG illJJ ףp= ?NN ףp= i-1 word managers NN(\@VBD7A`¿RBSSӿVBNQINZd;O?JJ`"?VBP-WDTZd;ORB333333?NNSi-1 tag+i word -START- takenNNPzGLSx&1RBʡEVBNuV @i-1 tag+i word DT vagueJJK7A`?NNK7A`i-2 word liberalizedVBDx?VBNxi-2 word mandatoryNNSp= ףFWp= ף?i+1 word yields VBDjt?JJSףp= ?RBSSӿRBʡENNxֿJJRZd;?VBP r?VBNS㥛пJJGz@NNPʡEVBv/ͿRBRbX9i+1 suffix tifNNS~jtJJRףp= FWGz@i+2 word analyzedNNPSZd;ONNPZd;O?i-1 word readingINHzG@JJʡENNK7 i+2 word wcrsVBN rh?VBD rhi+1 word generationNNPʡENNRQ?JJRA`"?JJm?INmտi-1 tag+i word WDT allowVBPS?VBZSi-1 tag+i word NNP edwardsNNS333333NNP333333?i+1 word blendingNNS~jt?JJQNNDl?i-2 word someonePRP$V-?VB-POS(\?VBP-?PRPV-ڿVBZ(\i-1 tag+i word VB maquiladorasNNSQӿNN$CFWPn? i word worthyNNS/$JJsh|?@NNCli-1 tag+i word NN warrantVBZMbVBPOn?NN ףp= ǿi-1 word occupiedJJoʡ?NNPoʡi word deliberatelyVBh|?5RBh|?5?i+1 word pillsNNm?JJ㥛 ?NNP/$NNS/$i word prospectiveVBHzGVBP-JJClg@NN%Ci-1 tag+i word NN rollbackNNL7A`?RBL7A`i-1 tag+i word MD suddenlyVB333333RB333333?i-1 tag+i word DT stringVBGffffffNNffffff?i-1 tag+i word NN planningVBG^I +NNbX9?JJffffff i word ushaJJ rNNP r?i-1 suffix ockCCQ?POSZd;O߿INʡEPDTʡE?VBPV-ϿJJrh|DTClVBZvVBL7A`?RB\(\NNZd;?NNPV-?VBGV-?RPˡE?NNSS㥛?VBD9v?VBN"~WDTS㥛?i-1 tag+i word CC fartherRBRx&1?RBx&1i-1 word ratingNNSDl?VBZDl i suffix phsNNS}?5^I?IN}?5^Ii+1 word portraitsVBGB`"JJB`"?i word chargesVBDSJJ1ZdVBZT㥛 ?NNSlq@VB;OnNNʡEi+1 word beautyJJMbX?NNMbXi-2 word baseballVBGK7ɿNNFxCD{Gz?JJ'1Z@VBZ-NNPX9v?i+2 word swimmingVBGʡEJJRQNNK7?i+1 word denreesJJbX9FWbX9?i-1 word sparkingVBPX9vNNX9v?i-1 tag+i word VBZ doVBPv?RBv׿i-1 tag+i word VBZ behindIN|?5^RP|?5^?i+1 word kingsJJ rh?NN rh i-1 word chipIN;On?VBZZd;?NNSx&1JJn?WDT;OnRBy&1i+1 word cleansVBZjt޿JJSʡERB\(\?i+1 word convertibleVBP(\ڿJJMbXɿDT`"NNSGzNNP/$?NNDl?VBD/$VBNzG@i-1 tag+i word JJ producesNNS#~jVBZ#~j?i+1 word pitchingJJoʡ?NNoʡi-2 word strengthsVBGMb?JJy&1NNjti-1 word malloryNNPS&1NNP&1? i suffix nch JJ&1@NNS+$ rhNNCl@VBNffffffJJR|?5^RB1ZdVBZ\(\׿VBK7A`ſNNPSx&1?DT"~jNNPNbX9 i-1 word neckVBG= ףp=?NN= ףp= i word bourseFW7A`?NNPSlNNPoʡ i-1 word tripNNS+RPRB?NNʡE?VBPV-?JJKINZd;OݿVBZZd; i-1 word waysWDTx&1?INjtDTMbpi-1 tag+i word VB showVB(\?VBP(\i-2 word sharesCCv/CDV-?VBN㥛 ?RB7A`RPS㥛JJClNNPSI +NNd;OVBP`"NNSClVBbX9?WDTh|?5?IN333333 @PDTnVBDffffffJJRbX9DT rh@NNPX9v@VBG ףp= ?i word needlessCCClJJT㥛 @NN$Ci-1 tag+i word , hardyJJV-@NNSʡERB(\NNʡEVBDx&1̿i-1 word depotCCq= ףp?NNV-JJNbX9i tag+i-2 tag VBG `` RP"~?VBDZd;?JJjtINFxRBrh|?NN}?5^IԿVBNZd;VBZd;O?NNSClNNPZd;Oi+2 word auditPDTL7A`?NN1Zd?JJ/$i-1 tag+i word PRP$ importedJJʡEVBNʡE?i-1 word funds VBDq= ףp?WDT\(\?INDTQ?VB(\JJX9v?VBN?VBPMbX9?RBV-ݿNNSd;Oi+1 word specificJJ7A`RP= ףp=?RB= ףp=RBRV-@JJRV-VBN7A`?i-2 word rochesterNNPST㥛 NNPT㥛 ?i-1 tag+i word VBG beneficialINX9vVBNJ +JJ"~j?i-1 tag+i word NNP compositePOSX9vRB&1VBZ1ZdJJ"~j@NNm?VBDGzi word panasonicNN;OnJJI +NNP{Gz?i-1 tag+i word VBP counterRBl?NNV-߿RBR%C̿i-1 tag+i word VBG leftVBN9v?PRP9v i-1 tag+i word JJ unificationismNNSQNNPQ?i word montedisionNN;On@NNP;Oni+1 word scarredRBFx?NNFxi-1 tag+i word VBD privacyVBNK7NNK7?i-1 tag+i word DT sharedVBNoʡ?JJoʡi-2 word unpleasantVBʡEտWDT'1ZJJʡE?IN'1Z? i+1 word diskNNKJJA`"@VBP +VBNh|?5޿i word cooperatingVBGK7?NNK7i-1 tag+i word VBG intactVBlJJl?i-1 tag+i word NN mentionedVBDn?VBNn i suffix walNNSSNNQ@JJV- i word fujiNNP"~?NNPS\(\NN rhCDClJJ|?5^NNSV-@i-1 tag+i word TO chiefJJy&1?NNy&1ܿi-1 tag+i word DT reorganizedNNI +VBN/$?JJ(\п i word copiesNNSGz?NNGz i suffix SAANNʡEۿNNPʡE?i word contemptNNZd;?JJZd;i-1 tag+i word DT flourishingJJ/$@NN ףp= NNSV-i+1 word convictionNNM?JJ!rhCDh|?5?i-1 tag+i word RB concurredVBNX9vVBDX9v?i word anywhereVBG/$ÿRBMb?JJ +EX/$i-1 tag+i word JJ specialNNZd;?JJZd;i-1 tag+i word TO enhancingVBG&1?JJ&1 i word quelleNNP/$?NN/$i word sleightVBףp= NNףp= ?i+2 word gustafsonVBNd;O?JJ%CVBDp= ףi-1 word delicacyEX(\RB(\? i+2 word coneNNPʡE?NNʡEi-1 tag+i word IN startsVBZd;O?NNSd;Oi-2 word stimuliVBZ!rhVBPbX9?VBDHzGѿi word amazementNNE?JJEi-1 word slowlyVBGSJJS?i word stressedVBNVBD?i word proceedingsRB!rhԿNNPJ +?NNSsh|?ݿi+1 word eyebrowsJJ5^I ?NN5^I  i word voidUH(\ҿNN(\?i-1 word glossRPT㥛 ?INT㥛 i word medievalNNjtNNPSJJ$C?i-1 tag+i word CC repeatingNN+VBG"~JJZd;?i-1 word facingVBGffffff?NNRQJJ= ףp=?i+1 suffix eggVBZjt޿POSjt?i-1 word radiationNNPS@NNPi-1 tag+i word JJ breakupNNSQNNQ? i-1 tag+i word -START- venezuelaNN{GzܿRBlҿNNPʡE?i-1 tag+i word NN buildingVBG-?NNK7A`NNPl?i-1 tag+i word NNP prebonNNPCl?JJCli+2 word expendituresNN}?5^IJJRw/?JJ +?i+1 word functionWDT|?5^?VBKJJ#~jDT|?5^NNjt?i-1 tag+i word CC spareVBX9vJJX9v?i+2 word drinkNNSjtNNv/?JJʡE i suffix ydeNNNNP? i suffix 'IlNNP)\(?NNPS)\(i+1 word castleJJB`"NNPB`"? i word reapedVBX9vVBNX9v? i+1 word cladRB`"?JJ`" i-2 word pollWDT?5^I JJFxIN+DT-?NNPFx?RPuV?VBD!rhVBN!rh?i-1 tag+i word `` wildlyRBCl?JJCli tag+i-2 tag RB VBNRBR(\?VBPn?INV-VBG1Zd˿VBZSNNSMbX9ԿRBv/?VBNL7A`?NNPx&ٿVBD5^I JJw/?DT㥛 ?JJRsh|??VB㥛 ?NNPS~jtNNV-?i+1 word usualRB|?5^ @IN|?5^ i-1 word kingdomNNS"~j?VBZ"~jܿi+1 word currently NNPSV-?RBQ@IN-NNSS㥛?NNPQ?NN;OnVBDʡEVBNv?CD-WDT1Zd?DTB`"ٿi word controlledNN/$VBNQ?JJ~jt i word harderRBK7VBZGzVB/$JJy&1NN?5^I RBRffffff@JJR{Gz@i-1 tag+i word JJ citizensVBZS㥛NNSS㥛?i-1 tag+i word NNS sangVBPI +޿VBDI +?i word pharmaceuticalNNK7ANNPsh|??VBZffffffNNSSJJ|?5^? i-1 tag+i word -START- executiveNNSۿNNPS?i-1 tag+i word POS articlesNNS&1?NN&1ڿ i-2 word joinNNPSZd;OJJ-?NN9vNNPx&1? i-1 tag+i word RB discriminatingVBGDl?JJDli-1 word retainsPRP$ +?JJ +i+1 word cotton NNS ףp= VBnVBGZd;?NNZd;VBDS㥻VBNZd;OJJ9v@VBZ ףp= ?NNPV-i-1 tag+i word VBD secureVB#~j?VBP#~ji-1 tag+i word POS rollingVBGA`"NNX9v?JJ;Onڿi word restoringVBG^I +?NN^I +߿i-1 tag+i word NN letVB}?5^IVBPPnпVBD"~j?i+2 word levalNNPSq= ףpݿNNPq= ףp?i-1 tag+i word IN alaskanJJx?NNPxi-1 word debenturesJJ/$IN/$? i-2 word boatJJmͿRBm?i-2 word developingNNSy&1|NN-@JJQi-1 word proteinsDT/$?VBD= ףp=VBN= ףp=?WDT#~j?RB/$IN#~ji-1 tag+i word NNS learningVBGbX9?NNbX9i-1 tag+i word CD p.m.NNA`"?NNS rhRBoʡ?JJnʿINGzi+2 word spudsVBZh|?5?NNSh|?5i-1 tag+i word NN maturesVBZQ?NNSQi-1 tag+i word POS voteVB+?NNSÿJJA`"i-1 suffix twoVBD|?5^?VBZB`"JJl?WDT(\?IN)\(?JJR`"?JJSMb`?RB`"RPffffffNNx&1?RBSMb`VBNxVBPCl@VBGI +?NNPV-NNSuV?NNPStVοi-1 tag+i word DT continentNNtV@NNP'1ZNNPSZd;׿i-1 word beigeNNSZd;ONNZd;O?i-1 tag+i word VBN waitingJJbX9ֿVBG+NN/$?i word clamberedVBN rhVBD rh? i+1 suffix yaJJR㥛 WP㥛 ?i word watchesVBZQۿNNSQ?i-1 word voronezhVBP?VBɿi word confederationsNNPSMbX?NNSMbXi+1 word disposedVBN/$RB/$?i-1 tag+i word NN richJJd;O@RBZd;NN/$ i-1 word exJJR/$NNjt޿FWK?i-1 tag+i word TO produceVBx&1?JJR/$NNq= ףpͿi+2 word fadedVBDCl߿VBNCl?i-1 tag+i word RBS valuableJJZd;ONNPZd;O?i-2 word forceIN!rhVBZrh|?NNSjtRP rh?NNjt?POS= ףp=RBL7A`ؿi-2 word startIN5^I VB(\RP rhRBNbX9@NN&1?JJRQVBPd;O?JJI +?i-2 word agentsVBD1ZdVBN1Zd?i+2 word thatcher RB rIN?NNP rh@RP"~ڿVBD(\?VBNQWDTQJJx&1NNv?i+2 word heavilyNN$C?NNP/$VB)\(?VBG$CۿRBEi+1 word remainingVBPOnNNSNN(\?JJ(\ҿVBZOn?i-1 tag+i word NN strategistNNx&1?JJx&1 i word autryNNClNNPCl?i-1 tag+i word PDT evenJJ rh?RB rh i+1 word pailJJy&1NNy&1?i word transylvaniaJJB`"NNPB`"?i word drainingVBGx&?JJx& i suffix haoRBSNNPS?i-1 tag+i word JJS absorbedVBN|?5^?NN|?5^i-2 word fundamentalNNI +JJI +?i-1 tag+i word DT finishedVBNjt?JJjti-1 tag+i word IN expressNNSZd;NNA`"@JJ}?5^IܿNNP^I + i suffix 600NNP rhVBN1ZdNN rh?CD1Zd?i-1 tag+i word NN investingVBG+?NN+i-1 tag+i word , meansVBZZd;O?NNPSZd;Oi+1 word legislationVBGzVBGNNjtܿVBNzGJJX9v@NNSv/?i-1 tag+i word DT truceNNS^I +VBNS㥛NN+?i+2 word authorizingVBG5^I JJ5^I ?i-1 tag+i word VBG friendlyJJMbX9@RBV-VBN%Ci-1 tag+i word -START- alliedVBNMbX9JJHzGNNP%C?i-1 tag+i word CD incumbentNNNbX9JJNbX9?i-1 tag+i word DT peasantsNNPjtNNPS@NNSd;Oi word developJJL7A`INZd;ONNSKNNP rhݿVB +Y@NNK7VBDKVBP/$?i-1 tag+i word NN fabricatedVBNʡE?JJrh|VBDZd;׿i+2 word quebecNN9v?RB rJJSV-?i-2 word renewedVBGK7@NNK7i-1 word porcheCD~jt?NNP~jti-1 tag+i word . b.v.NNOnNNPOn?i-1 tag+i word NNP acquiresVBZ?VBDi-1 tag+i word NNP mattersNNPSPnNNSPn? i-2 word tvsNNSm?NN-?JJlVBD!rh?VBZmi-2 word proletarianVBNGz?VBDGz߿i-1 tag+i word NNS buyingVBGףp= NNףp= ?i+1 word contract POSZd;O?RBR$CVBNuV?JJ333333VBZX9vNNS9v?NNP'1ZVBGClɿNN@JJRM?i-1 tag+i word RB gottenVB-VBN-?i word nomineesMD/$NNS/$?i-1 tag+i word -START- polishedVBNGzJJFx?NNPI +ֿi-1 word pouringNN rRB rhͿIN rh?JJ r?i-1 tag+i word ( usNNPZd;?PRPܿNNMbi-1 tag+i word VBD placedVBN= ףp=?JJ= ףp=ʿi word passingVBGOnNNOn?i-1 tag+i word CC reducingVBGx&1?NNx&1i word showdownNNx&1?JJjtVBN+i+1 suffix reaNNPS-RBX9v߿NNK7A`FWSJJy&1?NNP(\@VB}?5^I?i-1 tag+i word NNP propertiesNNPSw/?NNSsh|?NNP$C?i word concludesNNVBZB`"@NNS~jti-1 tag+i word VBD becauseRBV-@NNZd;INZd;Oi-1 tag+i word NNS donatedVBNGzֿVBDGz?i-1 tag+i word , latticeRBd;OοNNd;O?i+1 word board'sNNPq= ףpNNPSZd;O@NN|?5^i-1 tag+i word '' whackVB?NNsh|?RB#~ji word flaggingNN?5^I JJ?5^I ?i-1 tag+i word NNP minesNNPSZd;NNPZd;@i+2 word becauseINvDTQ@VBZJ +NNK7?VBDx&1?VBPT㥛 ?WDT&1VBZd;?JJ^I +RBSMbVBN!rh?RB-@JJRm?RPZd;?NNPjtNNPSmJJSMb?NNSNbX9?VBGsh|?RBRCli-1 tag+i word DT protestJJS1ZdNNS㥛?JJSӿi word congratulatingVBGFxNNFx?i-1 tag+i word NN haveVBZ$CVBn?VBP|?5^?NNPni+2 word rights NNPV-@VB~jtPDT9vJJR\(\VBNv?RB+DT9v?VBDh|?5?JJK7ANN'1ZFW)\(VBP{Gzt?NNS|?5^?i-1 tag+i word NNP northeastNN?NNPi-1 tag+i word TO socialismNNjt?VBjti+2 word successorVBNI +?VBDI +ƿi-2 word kindsJJ/$?VBGV-NNSNbX9?NN5^I i word trackedVBN(\?JJ(\п i suffix elt VB{GzJJ9vVBNq= ףp?VBPX9vNNSMbNNV-ݿVBDGz.@RBHzGVBZy&1i-2 word hungryJJw/?NNw/i+1 word proposalsNNP1Zd@VBGQ?JJQNNHzGVBDl?i word environmentalJJsh|??NNMbXѿNNPGzǿi word sittingVBGV- @JJZd;NNRQ i+1 word winsWPtV?NNClJJbX9CDw/?i+1 word pickersVBPlJJ rh?NN333333i+2 word position RBtV?PDT rh?VBGz?VBNnVBP~jtJJSIN|?5^?VBZ)\(?NNSGzRP/$?i-2 word specializingNNV-?VBGV-i-1 tag+i word DT sweatshirtNNsh|??JJsh|?i-1 suffix ectNNPSQJJoʡſVBmNNS-JJR +?RB ףp= INT㥛 ?VBGX9v?VBNE?WDTZd;ODTy&1?VBZx?RPxNN'1Z?VBPuVNNP5^I ?i-1 tag+i word VBD oursPRPV-?NNV-¿i-1 word biotechnologyVBZ"~NNS9v?JJni-1 tag+i word PRP$ premiereNNS/$NN/$?i word repeatingVBGffffffƿJJZd;?NN;Oni word triangleNN"~jNNP"~j?i+1 word applaudsWDTX9v?INX9v i+1 word porkJJ"~NNP"~? i word townDTtVVBN&1NN~jtۿNNPJ +?i-1 tag+i word NNP indexVBZ%CNNPSK7NN rNNPZd;O@i-1 tag+i word NN afterwardRB!rh?JJ!rhi-2 word fenugreekNNp= ף?JJp= ףпi-1 tag+i word DT dramsNNPSnڿNNSS㥛?NNL7A`NNPli-2 word explainsJJq= ףpNNSS?NNPX9vֿVB-NNPS%CCD rhVBPʡE?i-1 word recordedNNS+?NN+ i+1 word ballJJh|?5?NN)\(NNP= ףp=?i-1 tag+i word CC metalNNL7A`?JJL7A` i word store JJRMbRBRI +VBP/$?INK7AVBZףp= VBw/?RBNNt@VBD rhݿJJSNNP㥛 ?i-1 tag+i word NNP ovataVBZ$CۿNNn?CDʡEi word superiorRBB`"NN/$JJ @i+1 suffix awkJJʡENNPʡE?i+1 word robustRB~jt?VBGL7A`?JJMNNS㥛i-1 tag+i word VB citizensVBˡENNSˡE?i-1 word exportNNS"~?NNPʡE?NNPSʡEVBG)\(?NN rhRB%C?IN%Ci-1 tag+i word JJ nastyJJB`"?NNB`"i word worldwideNNPS@NNPS\(\JJnINq= ףpi+1 word financierNNPSrh|JJ @NN"~NNPS㥛i word dauntingVBGZd;O?JJZd;Oi-1 tag+i word `` thinJJGzNNPGz?i-1 tag+i word NNS insistedVBNbX9?VBDbX9޿i+1 word forestNNPCl?NNCli-1 tag+i word JJ unocalJJENNPE?i-1 tag+i word NNS endedIN7A`VBDMbX@VBN㥛 NNZd; i+2 word feVBZʡE?NNSʡEi word burdensVBZbX9?NNSx&NNjtINSi-1 tag+i word DT withdrawalNNV-?JJV-i-1 suffix asyNNPI +?NNPS +NN!rhCD|?5^ʿVBPRQJJQ?NNSh|?5i-1 tag+i word WDT hadVBPX9vVBDX9v?i-1 tag+i word DT rc6280NNrh|?NNPrh|i-1 tag+i word VBG boardsNNSOn?RPOni-1 tag+i word JJ deeperNNSw/JJRw/?i-1 tag+i word NNS estimateVBPX9v?NNX9vi-1 tag+i word NN cdsNNSףp= ?RBףp= i+2 word mineralVBFx?VBPFxi word electrogalvanizedVBNʡEֿJJʡE?i tag+i-2 tag POS DTJJB`"?NNB`"VBDEпVBNE?RBOnӿINOn?i-1 tag+i word NNPS holdNNPX9v׿VBPX9v?i-1 tag+i word NN watchesVBZQۿNNSQ?i word relianceNNPd;O?VBoʡNNףp= ÿ i+1 word hallNNPx&1 @JJ#~jNNPSxVBNףp= NNp= ףi-2 word exchangesVBG+JJ/$?NNoʡ@VBD/$CD)\(RB/$?NNSS i word sourVBd;OJJS㥛@NNMbVBN{GzĿRB333333NNSE i word delvesVBZ;On?NNS;Onڿi+1 word seimeiJJ/$NNP/$?i word repairingVBG~jt?NN~jt i+1 word wageVBG= ףp=RBNNS@JJR$C?JJ rhIN|?5^?i-1 tag+i word FW clipboardNNT㥛 ?RBT㥛 пi-1 word regulatorsINffffff޿VBDZd;OVBsh|?VBPB`"?VBNZd;O?i+2 word depictedJJSSNNS? i word darkVB-NNS+JJCl@NN\(\NNP\(\i+1 word presidencyNN%CVBG%C?i word performVBZ;OnVB?VBPOn?NNQi-2 word balancingRBn?INni word connecticutNNQݿNNPQ?i-1 tag+i word CD keyNNQ?JJQi-1 tag+i word NNPS trustNNsh|?NNPsh|??i word supposedlyRBGz?VBDGzi+2 word costlyVBjt?VBGh|?5޿JJRQ?NN-i+1 word indirectlyWDT㥛 ?IN㥛 i-2 word dJJ r?VBNClNNl?NNP~jtȿi-1 tag+i word VBG kickbacksNNSQ?NNQi word displaysVBZV-VBPX9vϿNNSS@VBNCli-1 word numerousNN(\NNPbX9JJ!rh?NNSrh|?VBN$C˿ i word jumboVBZQNNSnJJm@NN|?5^i-1 tag+i word `` railbikesNNS-?JJ- i word daveVB~jtxVBPffffffNNzGڿNNPjt?i+2 word having VBjtVBG{Gz?RB@NNx&?CDGz?JJjtVBDQVBZL7A`?NNSB`"i word charlotteNN&1NNP&1?i-1 tag+i word IN mindNNZd;O@NNSv/VBN333333JJmi-2 word conceitJJ333333?NN333333i-2 word creditors NNSv$Mb?VBNOn?VBPHzGJJvVBZMb?VB?5^I ?NNS㥛 @VBDOnۿNNPzG i-2 word tiesJJ= ףp=?INn?NNSNbX9?VBjtRPnNN&1VBNS?i-1 tag+i word JJ maturitiesNNPSV-NNSV-? i-2 tag TOVBGDl?VB}?5^I@VBNS㥛?NNSh|?5?NNP~jt?WP&1?VBZMbPOSGzUHCl?DTZd;O?NNPSjt?JJR&1?PRP$K7A?''x&1̿FW5^I ?CCʡEPRP?PDTMb?RBR&1VBD= ףp=VBP rhWDTٿJJMbX?JJS㥛 RBh|?5?RBS rh?CDMb?INMbRPS㥛@NN(\µ?i-2 word dresdnerVBGzG?NNzG i word luckyIN)\(VBNV-JJ$C?RBRQſ i-1 word mildJJQ?NNQi-1 tag+i word NN rulesNNP`"NNS`"?i-1 word mackenzieNN{Gz?JJrh|?FWK7A`VBP|?5^NNS/$i-1 tag+i word DT specterJJRMbXNNMbX?i-1 tag+i word NNP poolVBZV-NNV-?i-1 tag+i word IN breakfastNN{Gz?NNS{Gzi tag+i-2 tag WDT NNPVBPx&1̿RBK7?VBZ}?5^I?NNS(\NNPFx?NNPSFxVBDjti-1 tag+i word JJ staffsNNSV-?NNV-i+1 word slightly VBNZd;VBPx?PRPRQ?VBMbX9JJjtVBDI +?PRP$RQRP(\?RBV-INMb?NNSףp= i-1 tag+i word CC oakVBffffffNNPffffff? i suffix PCANNuVNNPuV? i word negroJJd;ONNPd;O?i-1 tag+i word '' ideasVBZ+NNSDl?RB1Zdi-1 tag+i word RB onlyVB~jtRBV- @JJMi-1 tag+i word PRP$ offRP9vRB9v?i-2 word compiledNNSNNPS?i-1 word !YEARDT/$ݿVBPQ?NNPSS㥛VBG}?5^I?JJ$C˿VBD{Gz?VBNK7CD+NNm?SYM)\(?WDT㥛 ?INffffff?NNS$CNNPT㥛 ?JJSPn?RBSPnRB/$ۿi-1 word impeccableNNS?NNPSi word retiresVBZsh|??NNSsh|?i-1 tag+i word IN corporateNNQNNPQ?i-1 tag+i word NNP openingNNQ?NNPQi-1 tag+i word VB soiledVBNMVBDM?i-1 tag+i word NN worryVBP r?NNSSNNh|?5?i-1 tag+i word NN arrivedVBDпVBN? i word waningVBG/$JJףp= ?NN rhͿ i suffix 968JJh|?5οCDh|?5?i-1 tag+i word RB retardedVBN5^I JJ rh@VBDK7Ai-2 word classNN= ףp=ڿVBDQ?VBG= ףp=?VBNQ i word record NNv@JJR+VBNClٿVBPoʡNNS-VBOnVBG rJJjt@NNP5^I  i suffix TaxPRP$ףp= NNPS1ZdVBK7NNMbX9?NNP&1?i+1 suffix utzNNS㥛NNPS㥛?i-1 word thrustingRP?INSVBZd;i-1 word consentVBZ(\տNN(\?i-1 tag+i word DT eitherDT?RBٿi tag+i-2 tag VB -START- VBZ#~jNNP/$RP5^I ?RB7A`VBD\(\?VBGʡEINQ?DT(\NNK?NNS|?5^?PRPS?JJjt i-1 word tapeWDT$CIN$C?VBZZd;O?NNSZd;Oi-1 tag+i word RB fastVBDV-RBV-@VBNL7A`JJMbX9? i+2 word readVB= ףp=NNx&1ȿVBNSVBP= ףp=?JJ/$@VBZffffff i word bugsNNRBKJJx&1VBK7ANNSsh|?@i-1 tag+i word NN deniedNN+VBD+?i-1 tag+i word JJ bidNNZd;?CDZd;i+2 word questechJJK7A`?RB +CDCli-1 word wasteVBS㥛NNoʡPOS rhJJS㥛?''Q?i-1 tag+i word JJ franchiseeNN-?JJ- i+1 word signNNbX9IN{GzDT{Gz?JJbX9?i-1 tag+i word IN agoRBˡE?NNˡEi-1 tag+i word `` giveVBS㥛?NNPS㥛i-1 tag+i word POS frequentJJK?NNKi-1 tag+i word DT certifiedVBNvJJv?i-1 tag+i word NN unheardJJRQ@NNDlCDsh|?տi-1 tag+i word VBZ helpNN/$?RB/$i-2 word looks RB{Gz?JJL7A`?VBZ(\?NNS(\VBG?5^I PDTE?WDTV-INV-DT`"ֿi-1 word legacyVBZ"~j?NNS{GzNNQi-1 tag+i word CC christiesNNPp= ף?NNSp= ףпi-2 word weaverNNCl?VBDCli-1 tag+i word JJ publishedVBNA`"?JJA`" i+1 word cocaNNDlVBGDl?i word prospectsNNSK7A`@NN rhVBZp= ףVBPxi-1 tag+i word NNS chemicallyRBn?VBDnѿi-1 tag+i word VBP gladJJA`"?VBNʡENNRQi+1 word expenseJJS?NNSi word scuttleVBK?JJKǿi+1 suffix tee VBGClINy&1NNP#~j?NNPSffffff?NNK7A`FWV-VBDGzWDT"~j?RBOnNNSvJJMb?i+1 word aoyamaJJq= ףp?NNq= ףpݿi-1 tag+i word POS legitimateJJK7A?NNK7Ai-1 word talkedINK7?RPK7ѿ i suffix bet VB/$?VBD(\?VBPx&1NNSGzJJHzGNNm?FWMڿVBNm?RB)\(@DTʡEۿi+1 word dioxideNNSˡENN9v@JJni+1 word collapsesNNGz׿NNPGz?i tag+i-2 tag POS NNPSVBNK߿JJʡE?NNS/$VBPnؿNNPSʡE?NNGzVBD~jt?i-2 word sippedVBN(\JJ-?VBDx&1i-1 tag+i word NNP statisticsNNPSK7A@NNPK7Ai-2 word salmonVBNʡENNʡE?NNSd;Oi-1 tag+i word , websNNq= ףpNNSZd;O?JJRv/i-2 word maintainingJJq= ףp?NNq= ףp i suffix conNNP7A`ҿNNPSp= ףNNSB`"NNQ@INx&ٿ i+2 word thinJJRw/?RBRw/Ŀi-1 tag+i word JJ issuesNNS%CNNףp= NNP r?i-1 word ghostbustingVBZK7ɿNNS"~?JJ㥛 i-1 tag+i word JJ freezeNNSy&1NNy&1?i-1 tag+i word `` givenPDT?5^I VBNDl?VBDHzGi-2 word prospectusMDMbX9VB r?VBPv/i+1 word struckNNP-?NNPS-i-1 tag+i word NN lumberVBy&1VBPS㥛?NNX9vϿNNPCli+1 word aloneNNPSV-?NNPV-VBD7A`VBZK7VBNbX9@i-2 word hugelyNNPS~jtNNP~jt?i word carolinasNNPSGz@NNV-׿NNP^I + i-1 word realizeDTd;O?INd;Oοi-1 tag+i word VBZ dwarfedVBNbX9?JJbX9i+1 word lavoroNNw/FWw/?i-1 tag+i word NNP boughtNN-VBD-?i word defectionsNNPMbX9ܿNNSMbX9?i-1 tag+i word NN infightingVBG rпNN(\?JJMbi word abdicateVBJ +VBPJ +?i-1 word surveillanceVBP5^I ӿNNd;O?JJJ +i word prayingVBG ףp= ?NN ףp= i word symptomsNNSV-?JJR㥛 NNNbX9 i+1 word aidsDT`"?VBGV-JJB`"NNClNNP rh?i+1 word clerkNN{Gz?JJ{Gzi word birthdaysNNS&1?NN&1i+1 word forecastsJJx?RBRtVοNNxJJRtV?i+1 suffix momJJ rh?NN rhi-1 word optimismDTnINn?i-1 tag+i word RBR slowingVBGV-NNV-? i word atticJJS?NNzG?NNP%C i word adolphCCQNNPQ? i word crackNNw/?RBRQVBN rhi-1 tag+i word CC themeJJd;O޿NNd;O?i-1 tag+i word NNP productionsNNPˡENNPStV?NNS/$i+2 word seatsJJK7A`VBDK7A`?i-1 tag+i word IN uneducatedVBNZd;JJZd;?i word recruitmentNNoʡ?JJoʡi word shoutingVBGT㥛 ?NNRQJJV-i+1 suffix zer NNPCl?JJp= ף?NNp= ףRBS㥛 ¿JJS㥛 ?RBRjtVBNrh|RB\(\JJRjt?i-1 tag+i word VBZ usedJJA`"ۿVBNA`"?i-2 word bridgeJJ`"?RB`"i+1 word kristinJJ/$?NN/$i-1 word nelsonNNPSCl@NNS(\NNPSi tag+i-2 tag WP -START- VBD^I +?POS+NNPp= ףPRPףp= ?VBZ#~j?DT!rhܿNNS{GzNN1Zd?VBP333333WDT!rh?i-1 word publicationsJJ\(\?VBG1Zd?RB\(\NN1Zd i word weirdVBZʡEJJ?5^I @NN|?5^RBS㥛i word sapiensVBZSNNSClJJ|?5^?i word jacquesNNSx&1NNPx&1?i-1 tag+i word CD individualJJuVNNuV?i+2 word seekingDT$CӿNNS#~jԿNNP/$?NNPS7A`¿NNRQ?VBDףp= VBNףp= ?JJ5^I  i word ottoNNQJJ-NNPJ +?i-1 tag+i word CD expenditureNNV-?JJV-i-1 word performanceVBPtV?WDTMbJJZd;INMb?VBtVNNZd;?VBDI +?VBNI +i-1 tag+i word IN metalNNl?JJli-1 tag+i word PRP$ britishJJbX9NNPbX9?i-1 tag+i word POS abrasivesNNS;On?JJ;On i word frayNNd;O?JJNbX9RB{Gzi-1 tag+i word NN seminarsVBZ|?5^NNS|?5^?i word smilingVBGE?NN rNNPK7i-1 word intuitiveNNK7A`?JJK7A`i-1 tag+i word `` takeINnDTOnNNw/NNP+ۿVBQ@i-1 tag+i word NN circumventsVBZuV?NNSuVi-1 tag+i word NNP blueNNPSoʡNNPoʡ? i+1 word rose WDTx&1?INV-JJHzG NN`"@VBGRQVBD5^I CD|?5^RBPn?VBZoʡNNSQ?VBZd;ONNPS~jtNNPl?i-1 tag+i word IN aikenNNPCl?CDCl i suffix BigVB/$NNPS-VBNQJJbX9@NNPB`"i-1 tag+i word DT payNN +?JJ +i word slightestJJSx&1?JJRx&1i+1 word fundamentalNNPS-RB-?i-2 word theatricalVBDMbX9?INMbX9ܿi-1 tag+i word POS goVBd;O?NNd;Oi-1 word afghanNNSv/?NNv/i+1 suffix rapJJL7A`?NNPQ?JJRCl?NNX9vRBRCli-2 word strengthenVBG?5^I JJV-?NNmi+1 word grandeurJJ +?NN +i+2 word reallyRBR|?5^VB"~jVBPZd;ϿJJR|?5^?WP'1Z?i-1 tag+i word CC streptokinaseNNPZd;@VB!rhܿNNSʡENNv/RBA`"ӿi-2 word studyNNS7A`?JJ?5^I NN$CNNPʡE@ i-1 tag+i word RB industrializedVBNy&1JJy&1@i-1 tag+i word RP unsolicitedVBNK7JJK7?i-1 tag+i word TO overseasRB +VB/$NNSʡEJJʡE @i-1 tag+i word NN semesterNNB`"?JJB`"i+1 word resortNNP|?5^?NNPS|?5^ٿVBNd;O?NNMbX9?JJZd;i+2 word parisNNPSd;O?VBGףp= ?NN/$RBRd;O@JJRd;ONNPMbi-1 word existingNNS-?VBG#~jNNCl?JJFxi-2 word carrierRB;OnNNP\(\VBm?NN7A`@JJSi+2 word ministersJJ +?RBV-NNP-?i+1 word havensCCxDTx?i-1 word graduallyVBZx&?VBP㥛 NNSZd;׿i-1 tag+i word DT thriftsNNSx&1?NNx&1i-1 word storyRP/$NNtVVBD(\ݿVBN-?WDTtVRB-?IN+?i-1 tag+i word IN cheaperNNh|?5JJR/$?JJ(\i-1 tag+i word RB insideRB?JJy&1ܿNN}?5^I̿INDl?VBli-1 tag+i word , breunersNNS㥛 NNP㥛 ?i-1 tag+i word RB stubbornVBZ㥛 JJ㥛 ?i-1 tag+i word DT lobbyistNN(\?NNP(\i-2 word socialVBZX9v߿NNSX9v?VBRQVBG5^I ?NNZd;JJ$C@ i-1 word rjrVBffffffNNPSV-NN7A`?POSRQ?VBPEVBZQ?NNP/$ÿi+1 word service NNPSX9v@JJ-NNp= ףVBN!rhܿPOS^I +RBS?DT%C?VB rhIN%CVBZ(\NNSDlNNP^I +@i-1 tag+i word , baseNN +?JJ +i-1 tag+i word NN sandsVBZV-NNSV-?i+1 word suitsNNv?VBDy&1VBN㥛 VBPy&1?JJMb?NNP/$i-1 tag+i word CC lostVBD#~jNNlVBNMb@JJmi-1 tag+i word DT shoppingJJlNNl?i-1 word sableNNGz?NNPGzi-1 word messrs.NNPSxNNPx?i+2 word fixedVBPS?NNS ףp= ?NNv߿NNP`"ֿVBSۿi word undertakenVBNףp= @JJףp= i-1 tag+i word RB administeredVBNZd;?JJZd; i suffix pen NN rhVBPh|?5?RBx&1?INPnNNSB`"MDʡEVB|?5^@RPʡE?VBZ{GzJJK7@VBDMbVBN +i+2 word oversizedJJV-?VBV-i-1 word overseesRBSMbJJSMb?RB"~jINQ?RP9vVBG+NN+?i-1 tag+i word RB verifiedVBNzG?RBzGi+2 word bacteriumNNK7?NNPK7i-1 tag+i word NN gotRP+NNPnVBDsh|?@i-1 tag+i word NN patternsNNSX9v?NNX9vi-1 word turnedNNSRQRPd;O@JJK7@NNV-VBN5^I VBPV-RBOn?IN(\ i-1 tag+i word NN hedgingNN|?5^?JJ|?5^i-1 tag+i word IN covertJJ"~j?NN"~ji-1 tag+i word CC yatesNNPStVοNNPtV?i-1 tag+i word IN animalNNSNbX9JJtVNNMbX@i-2 word brewedNNQ?NNPQi word appalledDTSJJJ +@RB}?5^IVBN"~ji word mountedVBDx&1?VBNx&1i word crookedJJtV?VBDtVi-1 suffix midJJʡE@INnNNST㥛 ?VBGx&1NN|?5^?VBD+VBN̿JJRDli-1 tag+i word DT financialJJQNNPQ?i-1 tag+i word RBR shapedNNS\(\VBNQJJ+?i-1 tag+i word VB thoughtVBN{Gz?NNy&1VBD~jtx?i-1 tag+i word VBN demographicJJx&1?NNx&1i-1 tag+i word NNP operatorsVBZv/NNSv/?i-1 tag+i word IN nextCD+FW^I +JJn@INT㥛 i word chronicallyNN'1ZRBM?JJ}?5^Ii+2 word hillsPRPuVCDuV?i-1 tag+i word PRP blamesVBZ/$?VBD/$i+1 word assembledVBzGNNPzG?i+1 suffix asbVBPx?IN{GzVBDxDT{Gz?i+2 word gucciVBZ^I +?NNS^I +i+2 word premiumsRPtVINtV?i+2 word antagonisticVB;OnVBP-?JJrh|i-1 tag+i word PRP shutVBZS㥛VBnVBDuV?i-1 word downwardNN r?JJQNNPK7A`i-1 tag+i word DT pollsNNSˡE?NNˡEi+1 word crimesJJx@IN ףp= ?NNMbX9VBD(\VBNZd;?WDT ףp= i-1 tag+i word VBZ softeningVBGQ?JJQٿi+2 word banqueNNS)\(NN)\(?i-1 word huskerRP(\пNN(\?i word yugoslaviaNNS?5^I NNP?5^I ? i word filledVBNOn@JJL7A`VBDʡEi+1 word physiciansJJl?NN+NNP{Gz?i+1 word pressureVBDMVBNMbؿRBSNNPV-?VBx&?VBGJJ9v?NN\(\?i word stupidestJJSK7?JJK7i word studyingVBGOn@NNOni-1 tag+i word `` focusNN rhVB rh?i+2 word redesignVBh|?5?NNSL7A`?JJ1ZdNN#~ji+1 suffix ipeVBD;OnNNPQ?JJ}?5^I i-2 word wideJJK7A`@INMbX9?VBZ rhNNSS㥛?VB1ZdRBvPDT~jti word disabledVBNx&1NNrh|VBDp= ףJJV-@ i word pcsVBPʡENNSMbX@NNMbX9NNPCi+2 word creationVBDtV?VBZ/$VBNSi-1 tag+i word DT armJJSSNNS?i word summaryNNSp= ףNN(\?JJxi-1 tag+i word PRP$ lifetimeNNw/?JJw/ܿi-1 tag+i word NNP parentVBDClNNx?IN+i-1 word massiveNNSzGVBG/$JJGz޿NNX9v@VBD!rhܿi-1 tag+i word `` letDT(\NNP?5^I ?VBsh|?@NNClѿVBPSINCli-1 tag+i word NNP aircraftNNS ףp= ?NNnʿNNP1Zdi+2 word purchase NN@VBDʡE?VBPZd;O?JJ;On?VBZd;ONNPSw/?VBG~jt?RBX9vVBNOnCDB`"?VBZ$CۿNNSQNNP9v i suffix eesMD/$VBPʡENNP-VBMbJJ`"INT㥛 VBDI +VBZ)\h"@NNSd;O*@NNPSL7A`@RBSNNx&q VBNd;OJJR rhi+1 word recommendsNNNbX9?JJNbX9i-1 word trailedJJSCDS? i word unlikeCD㥛 JJA`"RBFxNNPsh|?INrh|@i+1 word reportersVBD5^I ?IN5^I i word chargingVBGCl@JJʡENN~jti-1 word convincingNN"~j?RB"~ji-2 word magneticVBG/$NN/$?i word strategistsVBZ= ףp=NNS= ףp=?i-2 word competitivenessNNPq= ףpJJq= ףp?i+2 word responsibleNN)\(ܿCD)\(?NNPSV-WDTV-?i-1 tag+i word NN krenzNNP`"?VBD`"i+1 word regardlessJJMbXVBD"~jVBNzG?i-1 tag+i word VB giantNNMb?JJMbi word smolderingVBG\(\?NN\(\i-2 word mexicanVBZX9vNNPSKRBX9v?NNPK?i-1 tag+i word RB curbedVBZnVBDn?i-1 tag+i word PRP identifiedVBP(\ſVBD(\? i+2 word chezNNSGzNNGz?i-2 word uncoveredVBZ= ףp=IN= ףp=?i word worthwhileJJrh|?NNrh|i+1 word imitateVBNGzNNGz?i-1 tag+i word -START- initialJJ-?NNT㥛 NNPv/i-1 tag+i word VBG jointJJ!rh?NN!rhܿi-1 tag+i word IN fiscalJJK7?NNK7i-1 tag+i word NN slowlyRBS?NNSi-1 word appartusVBD"~VBN"~?i word riotingVBGnNNn@i+1 word solelyVBNMb?JJZd;O?VBDmi-1 word applesVBPh|?5JJRbX9?NN\(\i-1 tag+i word NN essentialVBZ&1ڿJJ +?NNp= ףi-2 word resolvedVBZK7NNSK7?i-2 word squeezeNNP/$?WDTI +DTI +?VBG ףp= ?NNL7A`i+1 suffix eenVBZHzG?NNSʡE?MDx&1?RBy&1@VBDzG?IN+JJQJJR(\JJSoʡݿVBNSNNP~jtVB rPOS1ZdӿVBG= ףp=?NN-?VBP^I +?CDp= ףi-1 tag+i word , hugsNNSS?NNSi word secretsVBZrh|NNS?JJX9vi-1 tag+i word VBN hadCD(\VBD(\?i+2 word predictVBN(\?JJ(\i-1 tag+i word NN digNNʡE?FWʡEi-2 word compensatedVBGMbX?NNMbXi word dividedVBN&1@JJ-VBDtVi word opinionsNNS+?NN+߿i+1 suffix qvcNN^I +?JJ^I +i+1 word priceJJR(\VBGd;O RBn?INK7VBNZd;O@VBP~jtJJM @VBD~jt?PDTnCD&1?VBZbX9ȶDTK7A`?NNPoʡ?VBv/?NNPSףp= NNʡENNS~jt?i word confessionNNPsh|??NNsh|? i word palmNNzG?JJ/$FW#~j i word carryVBD`"VBPK@NNSClNNPVBq= ףp?NNZd;Oi word runawayJJS㥛 @NN(\RBx&1i word providerVBPMNNCl @JJQVBvi+2 word beijing WDTtV?RB"~jINtVֿVBZp= ףNNS?5^I NNPV-CCV-?NNRQ?RP|?5^@i-1 tag+i word : investmentNNm?JJSݿNNPNbX9i+2 word virologyNNP'1Z?NN'1ZĿi+1 word demand NNPSV-RB"~jNNffffffWDTףp= JJ(\B@DTjt?NNPDlVB/$VBGh|?5?VBNI +@JJRl?INNbX9ؿNNS{Gzti-1 tag+i word NNP tailbackRP(\пNN(\? i word signsNNSx&1?NNPx&1i-1 tag+i word , hundredsNNSm?VBZmͿi-1 tag+i word `` communionNNuVNNPuV?i word discountedVBN rh @JJ rh i+2 word discountsVBZZd;ONNP-?POSZd;O?CD-i-1 tag+i word NNP dodgersNNPSx?NNSRQNNP5^I ӿi-1 tag+i word PRP toldVBDx&1?VBP/$VBNPn?JJuVIN5^I i-1 tag+i word `` spendVBPZd;O?VBZd;Oi tag+i-2 tag JJ : VBZh|?5NNPd;O?VBPZd;O?JJNbX9?NNL7A`?VBDtVVBNQѿRBHzGINZd;ONNSh|?5?NNPSRQi+1 word chineseRBRy&1JJRy&1?JJSINS?i+1 word easierRBCl@JJCl i word searsVBZMbNNPS1ZdNNS rNNPbX9 @WPA`"˿i-2 word expressedNNQ?VBNV-WDTʡEJJbX9INl?RB|?5^?i-1 tag+i word JJ painNNS1ZdNN1Zd?i-1 tag+i word NN expectedVBN/$?VBD/$ i-2 word wifeNNPSSJJ㥛 ?NNPQi-1 tag+i word NN reinstatedVBN-VBD-?i-1 tag+i word -START- westJJnڿINp= ףؿNNP)\( @NN#~jJJS&1RBSjti word clarcorNNPx?NNxi+1 suffix adiNNP/$?PRP$xƿNNd;O޿i word decorumNNSA`"NNA`"?i-1 tag+i word -START- michiganRBlNNPl?i-2 word together NNʡE?RBjt?VBn@VBG7A`JJS˿PDTʡEVBN/$INjtNNS ףp= i-1 tag+i word , executesVBZ+?VBP+i-1 tag+i word WDT smolderVBPCl?VBDCli-1 tag+i word RBR aggravateVBRQVBPRQ?i-1 tag+i word CC expressedVBN}?5^IVBD}?5^I?i-1 tag+i word IN journalistsNNS{Gz?NN{Gzi+1 word navigation VBG+WDTS㥛JJh|?5?INT㥛 ?FWPn?VBZGz?DTS㥛ؿNNSףp= NNP?i word steadierJJRʡE?NNʡEۿi word canadiansNNPףp= NNPSףp= ?i-1 tag+i word DT hospitalsNNPSxNNSx?i-1 tag+i word NNP mePRPGz?NNPGzi word totalingJJx޿VBG7A`?RBRX9vNN|?5^ɿi-1 tag+i word VB arousingVBGX9v?JJX9vi-1 tag+i word , unraveledVBNv/JJQ˿VBD9v?i+1 word uprisingJJ/$ӿNNP/$? i word hatsNN;OnNNS;On?i+1 word iversonVBClJJCl? i word tunnelNNSq= ףpNNq= ףp?i-2 word deprogrammingsVBDMbXVBN333333@INMbX9ܿ i-1 tag+i word -START- separatedNNPB`"NN(\VBNE@RB|?5^ʿCDMb` i+2 word ratVBZ㥛 VBD㥛 ?i word randomlyVBP\(\NNSV-׿RBS @NN7A`i-2 word tbondVBN-VBD-?i-1 tag+i word NNS mentionedVBDd;OVBNd;O?i+1 suffix job VBGZd;O?NNJJR333333?JJ= ףp=?NNP/$RBA`"ۿVBP333333VBZ#~jNNS#~j? i+1 word rankNNSw/?INtV?VBtVNNPSw/i-1 word antitrustJJףp= VBZ"~jVBP^I +NNS"~j?NN/$?i word curtainNNPSoʡſNNPoʡ?i-2 word declaringRBsh|?NNˡEܿJJˡE?EXsh|?? i+2 word .!MDffffffPRP$!rh@NNSd;OINV-?WPX9vNNRQ?VB-RBRlEX= ףp=''(\ڿVBZ7A`¿FWffffffCDv?WDT+ DT|?5^@PDTX9vNNPS~jt?UHˡEVBNMbX9?JJ ףp= ?CCSJJR|?5^?VBGClVBDx?RBS{Gz?JJSI +TOK7?PRPA`"RBJ +?NNP rhVBPh|?5RPjt?POSv/?i-1 word litigationNNPSrh|NNSrh|?i-1 suffix elp VBK7@JJ|?5^NNv/ͿINQRPbX9VBDHzGVBPClRBʡE?VBG/$NNPZd;? i-2 word sen.NNPSA`"NNPA`"? i suffix vorNNS+NNNbX9@VBDjtFWV-VBN"~VBPL7A`@JJNbX9VBZxi-2 word yankedRBMbINX9v?RPʡEi-1 tag+i word DT channelNN+?JJ+i-1 tag+i word NNP silversNNPS/$NNP/$?i-2 word businessWDT"~VBZQDT?NNPMb?NN+?FWV-JJʡEVBDxRBRSVBPrh|VBףp= ?RPPn?JJRS @VBGNNSV-?VBN333333INHzGNNPSOnRBI +? i word cramsVBZZd;?NNSx&1JJQi-1 tag+i word POS postwarJJFx?NNFxi-2 word brochuresNNS5^I ?NN5^I i+2 word arabsDT)\(PDT)\(?RB333333ӿIN333333?i-1 tag+i word NN sickVBPZd;OJJp= ף?NN+i-1 word redeemedVBG|?5^?NN|?5^ i-1 word artsJJRV-NNV-?i-1 tag+i word NNP disapprovesVBZ1Zd?NNS1Zd i+2 word nearVBx?VBG?5^I ?JJv׿NNsh|??RBxNNP333333 i word awaitVBZmVBPjt@RBSVBDd;Oi word relieverNNCl?FWCli+1 word reginaldNN(\?JJ(\i+1 word shevardnadzeRB ףp= NNPCl@NN ri-2 word workingRBFx?IN(\ȿNNSʡEVBG/$?JJOn?NN?5^I JJRX9vRBR"~?i-1 tag+i word JJR goodJJQ?NNQi-1 tag+i word NN openJJn@NN-MDʡEVB/$޿NNSK7i-1 tag+i word , fasterVBKJJR5^I ?RBRzGʿ i+1 word cameNNSoʡ?NNPffffffNNPS/$@INx&1VBZ"~jܿJJʡEDTL7A`RBMb?VBPzGWDT~jt@JJR`"NNq= ףp?RBR`"?VBNi+2 word parrinoNNp= ףNNPp= ף?i-2 word discussingNN-JJ-?i-1 tag+i word NNS operatedVBN7A`?VBD7A`i+1 word notingVBZ(\RB(\?i-2 word killsNN333333?JJ333333i+1 word montbrialNNPv?IN\(\FW +i-2 word organizedNN?5^I ?JJ +?NNPFxi word demandingVBG}?5^I?JJ}?5^Ii+1 word respectabilityWDTQ?NNPQi+2 word popularVBRQ?INnNNK7?JJK7VBD-ӿi tag+i-2 tag VBG VBZWDTGzRBClٿJJRrh|ϿDTq= ףpտNNPS~jt?VBN'1Z?PRP$CVBGT㥛 ?NNPMb?RPm?JJL7A` VBD?5^I ?NNSzGếINKPRP$$C?VBZV-?VB#~j @NN+PDTS㥛?RBRQ?VBP$Ci-1 tag+i word NN stakesNNSZd;?NNZd; i+1 word dyesJJ@NNi word satisfyingVBGJJ? i word meritsNNS-?NN-i-1 tag+i word PRP payVBA`"VBPGz@NN^I +VBDjti-1 tag+i word NN standardsNNPSsh|??NNPsh|?i word warfareNNT㥛 ?NNPT㥛 i-1 suffix (VBNM?CDQ?VBPX9vVBDB`"NNEUH㥛 ?INS?VBZffffffNNPGzֿNNS333333JJoʡ?PRPx&1?NNPSX9v?VBGh|?5?FWbX9?RBV-VBx?i-1 tag+i word NN creativeJJtV?NNtVi-2 word associatedCC(\?VBG(\JJ7A`NNP7A`?i+2 word offersNN rh?JJFxRB rNNPx?i+1 word machine RBffffffJJ~jt?NNPSZd;NNNbX9?FW|?5^?JJRA`"CDd;O?NNPSVBGSi-1 tag+i word RB showVBZQVBCl?VBPjt?NNI +޿RBZd;Oտi word supercomputerVBD/$NNn@JJRI +JJMbX9i-1 tag+i word IN shreddedJJ/$?VBD ףp= VBNʡEݿi+1 word emotionsJJˡE?NNˡEi-1 word phoneVBZbX9 NNSK7A @NNV- i word gawkyVBD9vڿJJ{Gz?NNV-i+2 word belongsNNOn?RBOni-2 word underlyingINlWDTl?VBNMbX?VBDMbXɿi-1 tag+i word RB admittedVBNp= ף?VBDp= ף i suffix NEYNNSsh|?NNQ@JJNbX9NNPB`"ѿi-2 word intelsatJJK7?NNK7ٿi+1 word grainsNNPV-NNV-?i-1 tag+i word VB hopedVBNuV?JJuV i word bumpyJJK7?INK7ѿi-1 tag+i word CD comparesVBZuV?NNSuVi+1 suffix eatRPQſNNPSoʡVBG/$VBD|?5^?JJʡE?IN~jt?JJRv׿RBPn@JJS#~j?RBS#~jNNP^I +VBZn?POSDl?PRP?5^I DTMb?NNSMVB/$NN(\RBRV-VBNbX9޿i+2 word francaisesFWK7?NN ףp= NNPNbX9ȿi word kelloggVB$CӿNNSQNN+?JJA`"NNP{Gzti-1 tag+i word NNS quitsVBZ"~?UH"~i+2 word materializeVBy&1VBPy&1?i-1 word fujitsuJJ= ףp=NN= ףp=?i-1 tag+i word NN intactVBNSNN\(\VBZMJJ^I + @i+1 word young VBP'1ZԿWDT +INDl?NNPZd;ONNQ?WP9v?JJR/$RBR/$?RBy&1?JJ r?VBDCli-1 suffix oopNNB`"?INB`"ٿi+2 word whaleVBGx&1?NNx&1ܿ i+1 word helpJJClIN;OnVB-?RB+?NN333333?RBR+JJR+@VBPK7i+1 word inspiredVBZrh|ϿNNSq= ףp?NN ףp= i+1 word telexesJJK?NNKǿi+2 word racksVBZ\(\ϿVBPA`"?NN;Oni+2 word exacerbatedJJʡENNʡE? i-1 word soulVBN(\?VBʡENNS rh i word henleyNNRQ@NNPRQi word fastenerNNOn?JJSOn i word fearsVBZ333333?PDTS㥛ܿNNS-@RBʡENNZd;O#i-1 tag+i word -START- industrywideNNP(\LSjtRBrh|?i-1 tag+i word TO greenhouseVBˡENNˡE?i-2 word scientificNNSzGNNMbؿVBDL7A`VBNL7A`?WDT&1RBK7?IN&1?i-2 word rejectNNS/$JJ?NNʡEտi-1 tag+i word NNS busyVBPI +NNS9vJJ~jt? i suffix bolNNPNNPS9vNNV-2@JJy&1i+1 word rapeseedsNNPSV-NNQ?JJCli-1 tag+i word IN securitiesCDNNPSq= ףp?NNPS˿i+2 word jenkinsNNPS㥛?POSjtֿVBD(\i word invariablyRBV-?NNA`"NNP-i-1 tag+i word IN pollingVBGˡENNˡE?i-2 word joinsNNST㥛 ?NNT㥛 i-1 tag+i word CC gossnabNNPl?CDli-1 word monetaryNNP|?5^?NNSV-?NNq= ףpJJjt޿i-1 tag+i word VB accumulatingIN5^I VBG5^I ?i-1 word dellumsJJS㥛?NNS㥛i-2 word repairsRBx&1INx&1? i word chosenVBGzNN+VBNZd@JJ\(\VBZFxNNS rhi word proceedsNNSB`"[@VBGX9vVBZT㥛 NNsh|?NNP?5^I i-1 tag+i word RB earlierRBR~jt?RB~jtӿi+2 word tanksVB-VBGuV?NNuVտVBPn?RBnDT-?i word discoveryNNSh|?5NN~jt?JJZd;O i-1 tag+i word CC congratulatingVBGFxNNFx?i-1 tag+i word JJ ownRP+JJ+?i word brewingNNm@JJʡENNPPn?VBGjti+2 word patterns''%CPOS%C?i-1 tag+i word DT rapidlyRB'1Z?JJ'1Zi-1 tag+i word JJ thumbNNSFxNNFx?i-1 tag+i word NN attachVBP rh?JJ7A`NNjti word solidifyVBPCl?VBDCli+2 word swearVBPx&1?NNx&1i+2 word driveVBG+NNʡEͿJJMbX@VBNGzi-1 tag+i word NNP abroadRB rh?NN rhi-1 tag+i word DT dowdyJJK7A`?NNK7A`i-2 word automationVB rhNN)\(?JJmտi-1 tag+i word NN existVB?VBPS㥛NNZd;i-1 tag+i word , threatensVBZzG?INzGi-1 word associationsVB(\@VBP(\i-2 word phonesJJRL7A`?RBRL7A`ؿJJuV?VBNuVi word assemblingVBGZd;?NNZd;i-1 tag+i word RB hopesVBZQ?NNSy&1?VBD9vi-2 word representRBMb?NNDl?VBG/$?JJ-i-1 tag+i word NNP broughtVBNx&NNFW ףp= ǿVBDjt@i-2 word selectionsVBQ@NNQi-1 tag+i word WDT tearRBRQVBZd;?VBPS˿ i word leadsVBP"~JJX9vVBZ+w@NNSX9v?NNPDlVBMbNNnVBD~jti word ukraineNNZd;ONNPZd;O?i+2 word shrinkRBR-?JJ#~j?JJRB`" i word heirNNS"~NN"~?i-1 tag+i word , movedVBNGzVBDGz?i-1 tag+i word CD projectNN9v?JJ9v!i-1 tag+i word JJ notwithstandingNNL7A`RBL7A`?i+1 word arrogantNN ףp= RBRrh|?JJRrh|VBN ףp= ?i-1 tag+i word JJ cortesNNPS)\(NNSK7A`NNPS㥛? i word racistNNM?JJMi-1 tag+i word POS swiftNN(\JJ(\?i word mushroomedNNSZd;VBDZd;?i+1 word historicalJJoʡ?NNoʡ i+1 word isVBN!rh?CC1Zd?NNPSMb@JJR rRBA`"NNPjt?FWx&?VBP&1WPjt@VBZlRP|?5^VBD-WRB r?RBS|?5^?PRP$PnWDT r?DT(\?RBRDl?VBG}?5^I JJNbX9VBL7A`JJS rhNNS@''MbX?POSMbXCD'1Z?EX5^I  @PRP~jt?NNSd;O?INsh|i-1 tag+i word VB touchNNSV-NN)\(?JJ7A`¿i word interviewingVBGE?JJEпi+1 suffix gnsVBZZd;?VBGv/JJK?NNK7A?VBNMWDT'1Z?RBjtIN'1Zi-1 tag+i word `` payrollNNP/$?NN/$i+1 word januaryJJJ +RBʡEINPn? i-1 tag+i word VBG comprehensiveJJx&1?NNx&1i-1 tag+i word NNP sovietJJHzGNNPHzG?i-1 tag+i word WDT suchPDT(\?VBP(\i-2 word monetsNNPS|?5^?NNP|?5^i-1 tag+i word -START- rightsNNSS?NNPSi-1 tag+i word JJ thirdNNSK7JJMbX?NN(\NNPffffff?i-2 word continuing RPGzRBx?INMb?NNS{GzVB/$?JJ/$?NNHzGJJR/$VBGv/ݿi+1 word peterVBZ7A`NNS"~j@RBV-׿NN$C?VBD= ףp=?JJR/$VBNMbXJJX9v i word mattesNNPS)\(NNP)\(?i+2 word drawnNN?JJi-1 tag+i word IN bankingVBGClNNCl?i-1 tag+i word DT warmJJ1Zd?NN1Zdi-1 tag+i word , coupledVBN+@VBD+i-1 tag+i word RB buyingVBP`"VBGQ?NN;OnJJT㥛 i word supportedJJ)\(VBDCl?VBNGzi-1 tag+i word JJS expectVBffffffƿVBPffffff?i-1 word restaurantsVBK7AVBPK7A?i-1 tag+i word VBZ snapJJ~jt?NN~jti-1 tag+i word JJ sceneNNʡE?JJʡEi-1 suffix lseNNK7A?JJK7APOS(\?VBZ rh?NNS^I +i-1 tag+i word : propertyNNjt?NNPjti-1 tag+i word NNS exceedVBP rh?VBD rhi-1 tag+i word DT kidNNMb?JJMbi-1 tag+i word , designVBP= ףp=ҿNNSClNN}?5^I?i-1 tag+i word NNP peckNNPSENNPE?i+2 word substantiallyINy&1WDTy&1?i+1 word accustomedJJ(\ݿJJRffffffRB(\?RBRffffff?i word hillsideNN-?JJ-i word prolongedVB㥛 NNV-VBDbX9VBNQJJnJ@NNSZd;Oi-1 tag+i word RB unlimitedVBNMbJJMb?i-1 tag+i word DT centersNNPSNbX9?NNSʡENNP(\ i-1 word tryRBClNNoʡ?JJ/$VBGʡE?NNP ףp= RPX9v?i-1 tag+i word RB pointVB(\?VBP(\i-1 tag+i word IN peopleNNPS333333ӿNNS1Zd@NNPˡEi-1 tag+i word JJ filedVBDl?VBNli-1 tag+i word JJ papersNNSrh|NNPrh|? i+1 word d.VBJ +NNPJ +?i-1 word longtermNNSSNNS?i-1 tag+i word IN seriesNNSX9vVBGp= ףNNHzGٿNNPZd;O@i-1 suffix ... VBV-RBE?CD/$VBPV-?NNSS㥛NNX9vCC?5^I ҿPRPV-?JJK7INV-ڿVBZS㥛?DTZd;Oi+1 suffix wasVBNZd;O?VBPx&1WDTv @WP#~j?JJR9vJJK7POS)\(NNSQ?NNP?JJS7A`VBGCl'')\(?DT%C @RBHzGVB rhNNPSV-VBDVBZrh|NNv/@CC+?CDl?EXףp= ?INp= ףi-1 tag+i word CC blueprintNNv?JJvi-1 word careenRB~jtIN㥛 RPOn?i+1 word clienteleVBGn?JJFxNNS㥛i-1 tag+i word VBD disappointedVBN?5^I JJ?5^I ?i-1 tag+i word -START- durironNNbX9NNPbX9?i-1 tag+i word TO affiliateVB7A`NNx?JJx&1 i word coedVBN{GzNN{Gz?i word guardedlyJJL7A`RBL7A`?i-1 tag+i word TO twinsVB333333NNP333333? i word oldNNPn?INni-2 word robbingVBG+?NN+i-1 tag+i word NNP bondholdersNNSI +?NNI +i word depressingVBG/$JJ#~j @NNDl i-1 suffix t.NNPSx&1̿NNPx&1?i+1 word chungNNP/$?NNPS/$i word refocusNNbX9ƿVBK7?VBPMbi-1 tag+i word IN ghostNNS㥛?JJS㥛 i-1 tag+i word -START- thursdaysNNPS;On?NNS$CRBNbX9NNP|?5^ٿi-1 tag+i word , identifyJJnVBn?i-1 word shinyNNPS-@NNP- i-2 word sonyNNzGVBNZd;O?DTzG?RBZd;Oi word unaffiliatedJJFx?VBDFx i-2 word viewNNB`"?JJSv/RBSv/?PRPsh|??RBI +IN/$?DToʡJJʡE i+2 word hurtVBGL7A`堿NNL7A`?i-2 word clobberedRBR(\?JJR(\i+2 word nomuraCDV-JJMb?DTV-NNPV-VBV-?RBV-?NNx&i word returnedVBNjt?JJ&1VBDX9vi word transmittedVBNA`"?VBDA`"ۿi-1 tag+i word JJ chidesVB|?5^VBZ|?5^? i word diVBClFWV-?NNV-NNPCl?i+2 word totalingJJS?VBNOnNNSVBDOn?i-1 tag+i word NN emergesVBZl?NNSli-1 tag+i word IN putsVBZ?NNSi-2 word frameVBZ= ףp=?VB= ףp=i+2 word servedVBP#~j?NNZd;O?JJK7A`NNP-?VBh|?5i+2 word sufficientVBNJJ? i+2 word st.JJT㥛 NNS= ףp=NNP"~j?RBp= ףNN rh @VBD-VBPGzֿi-1 word promptedRB^I +߿NNP^I +?i-1 tag+i word JJ pittsburghNN"~jԿNNP"~j? i suffix annNNPSGz׿NNK7NNPI +?i+2 word perfectlyJJv?VBPV-?RPGzǿNNX9vRBd;Oi+1 word operationPOSX9v?VBN&1JJA`"?VBZX9vNNSffffff@VBGE NN`" @JJR|?5^ٿi-1 tag+i word CD rallyNNPS?NNSӿi word experiencingVBG|?5^?JJ|?5^i tag+i-2 tag ( JJJJ333333?INv/?NNPx&1?VBQ?VBGuVRBSNN"~jVBNPni-1 tag+i word NNP feelVBDSVB`"VBPx&?i-1 word consortiumNNS?VBZsh|??VBG~jt?POS;OnNN~jti+1 suffix ansNNS}?5^I @VBK7A`CDRQ?MD$CNN-?VBN(\VBZ}?5^IDTQ?NNPZd;CCI +?RBSZd;ORBR333333VBD\(\FWClIN1ZdJJRV-?VBGWDTʡEJJ`"?RBy&1?NNPS"@JJSK?VBP ףp= ?i-1 tag+i word JJ investmentJJ/$NNP/$?i-2 word ailingJJ9vNNP9v? i+1 word tooVBN}?5^IVBZK7?RPʡENN(\INPnCC-ۿJJ r VBPy&1?VBD`"?DT\(\NNSsh|??NNPq= ףp?VB#~j@RBoʡ?i+1 word numberIN㥛 ?VBGSNNtV?VBNQ?WDT㥛 JJi-1 word creamyNNX9v?JJX9vi-1 tag+i word DT environmentalJJQNNPQ?i-1 tag+i word CC claimsNNSףp= ?VBZףp= i-2 word benchmarkJJV-?CDV-߿i+1 word sparksNN9v?NNP9vi-1 word visiblyJJ)\(?RB)\(i-2 word resoundingNN333333NNP$CNNSEؿRBq= ףp?i-1 word connectedNNS~jt?NN~jti+2 word relativelyVBNZd;OVBDZd;O?i-1 word quebecorNNP}?5^INN}?5^I?i-1 tag+i word NN blamedVBDrh|?INrh| i-2 tag NNPSNNPx&1?DTK7ѿCCjtVBP5^I ?WDTSÿRBGz?RPJ +NNQVBGClVBDCl?RBREINDlCDn?VBh|?5?JJQNNSh|?5VBNbX9VBZ~jtJJR333333ۿNNPSRQ @i-1 tag+i word -START- amgenRB9vNN7A`NNPQ?i-1 tag+i word IN richterianJJDl?NNPDli-1 word intercollegiateNNS\(\?NN\(\i word epilepticsNNSK?NNKi-2 word orders NNPSSNNK7A@RBd;O@NNSK7?VBG/$JJ|?5^ɿRBRJ +VBN\(\RPx&NNPRQi-1 tag+i word NN tumbledVBN㥛 ¿VBD㥛 ?i-1 word excessNNMbX9RBd;O޿JJ(\?i-1 tag+i word RP mexicanJJQNNPQ?i-1 tag+i word NNP climbedVBZ5^I VBD5^I ?i+2 word beneficiariesJJRE?JJEi word unificationismNNSQNNjtֿNNP$C? i word eggsNNPS +NNJ + VBPh|?5RBh|?5NNSRQ@NNPI +? i word pickupNNV-?JJV-i-1 tag+i word VBD photographsNNS}?5^I?IN}?5^Ii+2 word rothschildNNP r?NN r i-2 word zetaRP~jtȿIN~jt?i word southernVB#~jNN&1NNPS㥛?JJd;O@DTZd;O i suffix kesVBZ#~j<@DT}?5^IRPI +JJENNSVBD#~jVBN-VBL7A`NNPx&1NNPSZd; @RBSX9vVBPSRB/$NNS9v%@i-1 tag+i word : uhUHK7?RBK7i word mideastNNPv/JJSHzGJJ|?5^?NNS㥛?IN ףp= i-1 tag+i word : merrillVB{GzܿNNP{Gz?i word consensusVBT㥛 JJy&1NNˡE@RB/$NNSoʡNNP9v?i+1 suffix onsVBDV-?POSx&1?NNPʡEDTL7A`RP"~j?NN-?FWK7A`?VB?CDzG?JJRCl?VBNE?JJ= ףp@VBZ(\VBPX9v?PDTw/RBR JJS(\?PRP$Cl?PRPV-RB rNNST㥛 IN)\(?UHZd;O''x&1̿CC-?VBGQӿNNPSʡEWDTS㥛i+1 suffix iceVBZsh|?POSuV?RB"~jVBNv/?RPrh|׿NN"~?NNS(\VB(\?RBR rhIN~jt?VBDx&1JJ/$@FWvCC#~jPDTnCDE?JJRrh|?UHxVBGSVBPA`"DT r?NNP(\@NNPSFx?i-1 tag+i word RB hitsVBZʡE?VBDʡEi-1 word censorshipEXK7A?RBK7A i word pennedVBN|?5^?VBD|?5^i word continued JJM@VBZxVBSVBD;O@VBNX9vVBP ףp= NNS㥛 NNP7A`NNFWMbJJRˡEi+2 word advisingVBZMb?NNSMbVBN +?JJ +i word nowhereRB"~j@JJlNNPK7A` i word drawNNuV?VBDRQVBP}?5^I?JJMbX9VBZ rпNNS'1ZܿVBbX9?i+2 word hendersonNNS/$JJRoʡNNS㥛?i-2 word nobilityVBG+?JJ+i-1 word nightNNrh|ϿNNPrh|?i+1 word sheddingVBZ?POSi-2 word christmasNNtV?JJtVi word fletcherRBx&1ȿJJ{GzĿNNPtV?i-1 tag+i word IN touchJJNN?i-1 tag+i word -START- mcdonaldNN-NNP-?i+1 word listingNNPS`"NNS`"?i+1 suffix alaVBDh|?5VBNh|?5?i-1 tag+i word CC rNNPS'1ZNN(\?NNP rh i+1 word asiaNNPEпVBMbX9JJRQ?i word institutionNNˡEԿJJ7A`NNPZd;O?i+2 word liberalVBPnNNPSX9v׿NNX9v?VBD"~?VBN-?NNP\(\ i word steelNNPS"~jNN^I +?JJx&1NNPS?i+1 word ceilingNNMbX9VBNJ +@JJCli-1 tag+i word WDT muchRBS?JJSi-1 tag+i word RB tossedVBN~jtVBD~jt?i+1 word evasionNN@JJi-1 tag+i word VB speedingVBGKǿNNK?$i-1 tag+i word TO telecommunicationsVBGzNNSV-NNS@i-2 word thermometersVBl?VBPli-2 word creatorVBNx&JJx&? i suffix TopNNPh|?5INףp= JJsh|?@CDZd;Oi-1 tag+i word -START- beyondINGz@NN ףp= NNPʡEi+2 word seasonNNPS?5^I RB)\(NN'1Z?RBRQ?JJ'1ZVBZNNP?5^I ?i-1 word rejuvenationRBQ?INQi-1 suffix rasVBuVVBP+?RBX9v?NN!rhi word multiyearNNSvJJNbX9?NNMi word mexicanJJ!rh?NNP#~jVBZ$Ci-1 word convictedNNGz?FWGzi word suspectsVBZCl?NNSCli-1 tag+i word VBD operatingVBGRQNNʡE@JJ rhi+2 word velvetNN+?JJ+i-1 tag+i word NNS endowedVBDjtԿVBNjt?i-2 word fannieVBV-NNV-? i-1 tag+i word PRP$ unsurprisingVBGV-JJV-?i-1 tag+i word DT pauperJJRd;ONNd;O? i-2 word oldVBPK7VBZS @NNS+NNP +?VB= ףp=?JJGzNN?POS%C?RBQ?VBGsh|?VBDFx?VBNE?'' rhNNPSZd;INףp= i-1 word luringRP1Zd?RB1Zdi-1 tag+i word VB transVBN-NNP-?i-1 tag+i word TO pointVBK7?NNK7i-1 tag+i word VBD falseJJˡE?NNˡEi+1 word recordedRPRBS?NNSIN?i-1 tag+i word , assistingVBG5^I ?NN5^I  i+1 word laneNNP?VBi tag+i-2 tag MD RBINVB(\?NNZd;Oi+1 word elevatorsVBG#~jJJZd;?NN!rh? i+1 word redJJV-?NNDlRBmINm?NNPʡE?NNPSףp= i-2 word blackINףp= ?NNSV-NNPˡERB= ףp=NNh|?5?VBDV-WDT(\ſJJʡE?i-1 tag+i word , electricJJQ?FWQi-1 word toiletWDTQ?INQi-1 tag+i word CC reapVBMb?VBPMbi-2 word spotsVBG#~j?NNPnJJ!rhi-2 word papersVBGS?NNSRBRMbX9?VBNMbX9VBP-VBZ-?i-1 tag+i word IN hicksNNS7A`NNP7A`?i-1 word unexpectedlyVBClɿVBPCl?VBNV-VBDV-?i-1 tag+i word JJ generalNNPv/?NNS"~JJrh|?NNK7i+1 word structuredDTClRB +@JJRClٿNNClRBRCl?i-1 tag+i word JJ wisecracksNNSX9v?NNPX9vi-1 tag+i word NNP gainedVBNPn?VBDPni word literacyNNS5^I NNJ +@JJy&1i-1 tag+i word VBP discardedVBN㥛 ?VBD㥛 i word wheneverVBP`"WRB7A`@NNZd;INʡEi+1 word recentlyNNPSp= ףRBS&1@JJSZd;JJzGNNPZd;?RBRMb?JJRMbRB!rh?NNGz@VBD-?VBNh|?5NNSCl?RPGzVBP|?5^i word celtonaNN?5^I NNP?5^I ? i word bowedRBjtVBDjt?i-1 tag+i word IN classNNJ +?NNPJ +ɿ i-2 word bookVBD(\RBR`"JJR`"?VBN(\?JJx&1?VBGx&1i-1 tag+i word CC drasticRBx&1@VBPxֿJJZd;NN!rhi-1 tag+i word `` balanceNNQ?RBQi-1 word managingNNSoʡNN(\µ?JJZd;?IN^I +׿i-2 word occasionalVBZCl?VBx&NNSQNNNbX9ȿi-1 word sharpVBGV-JJzG@NN9v?VBDx i+1 word jobsNNPI +VBPK7A`տVBGV-?NNʡE?JJGzi-1 tag+i word DT astonishingVBG1ZdJJ1Zd@ i suffix WasWDT+VBGz߿VBDzG@WRBjtIN^I +i-1 tag+i word `` constituentJJʡE?NNʡEi-1 tag+i word RB developedVBNL7A`ؿJJ?VBDni-2 word czarsDT!rhRB!rh?i tag+i-2 tag MD NN VBʡ@JJX9vNNbX9VBDV-RBRffffff@JJR^I +VBP'1ZWDTx&1?RB'1Z?VBG-VBNQDT +i-1 tag+i word : americansNNPSV-NNSV-?i-2 word droolingPRP$bX9PRPbX9? i word steveVBrh|NNPrh|?i+1 word preventionNNS?JJSӿi-1 tag+i word `` furtherVBNJ +JJRQ?FWZd;Oi-1 tag+i word POS pricingNNh|?5?JJh|?5i-2 word developmentsNN5^I VB5^I ?i-1 tag+i word DT frankfurtNN~jtNNP~jt?i word euphoriaNN|?5^@JJ= ףp=NNP!rh?VBd;ONNS$Ci-1 word contemporaryNNS+?JJ+ i word rideVBX9v?VBPʡE?NN?5^I ?JJtVVBZQi-1 tag+i word DT lookedVBNVBD?i-1 tag+i word PRP$ setVBNʡENNʡE?i-1 tag+i word IN basicJJ?NNi-1 word partlyVBNSVBDS?i-1 tag+i word VBZ putVB(\VBNV-?RBoʡi-2 word polluteJJ|?5^RB|?5^?i-1 tag+i word NNS concludedVBNx&VBDx&?i-1 tag+i word CC lobbyingVBG+NN+?i-2 word electionVBZK7A?NNSK7AVBNZd;?RBZd;i+1 word analysisVBZ/$JJy&1ܿNN1Zd@NNPSi-1 tag+i word NNP declarationNN%CNNP%C?i-1 tag+i word NNPS plansVBZMb@VBPlNNS-i+1 word arkansasJJ#~j?NN#~ji-2 word fulfillingJJSjtJJjt?i+1 word flyingNNl?NNPSK7ٿNNStV?JJ rhi+1 word allianzVBPףp= WDT%CJJ&1?IN%C?NNP&1NNףp= ?i-1 suffix sawVBG(\ڿNN/$NNPCl?i word expandedVBNm?JJ +VBDٿi-2 word disastersVBGQJJQ?i-2 word incentiveVB~jt?NN~jtؿi-2 word induceNNK?JJKi+2 word catalogingJJK7INK7?i-2 word foreign VBPoʡ?WDTrh|?INrh|VBZV-?NNSMb?NNPS?5^I ¿NNZd;OVBNMbVBD1Zd?JJK?NNPxƿi-1 tag+i word DT winterNNPSX9v @NNMb?JJ\(\NNPy&1JJRS㥛i+2 word loudlyRBd;O?JJd;Oi-1 suffix rol JJtV?NNK7ѿVBP/$?RB{GzNNPsh|??NNPSI +VBG333333?NNSV-VB= ףp=VBZQ?i-2 word committedJJK?NNK߿i-1 tag+i word JJR americansNNPSPnNNSPn?i-1 tag+i word VBG developersNNPS ףp= NNS rh?NNP-i+1 word techniquesVBG ףp= ?NNSjt?JJv/NNQ? i word cabalNNS+NN+?i-1 tag+i word NNS observatoryPOSʡENNʡE?i-1 tag+i word `` learningNNPMb?DTZd;׿VBGV-NN5^I JJJ + i suffix -10JJ?NN+NNP+?i+1 word bickwitJJ ףp= NNP ףp= ? i word loanNNP&1?CC +NNPSʡENNI +@JJMi+1 word baggageJJtV?VBDtVi-1 tag+i word CC redJJ㥛 ?VBD㥛 i+1 word treatsINtVWDTtV?i-1 tag+i word RB subvertedVBNʡE?JJmͿVBD+i-1 word amountIN/$VBZGzJJffffff?NNGzVBD?VBN\(\?RB/$?i-1 tag+i word VBZ directedVBNK?VBDK i-2 word chipJJjtNNSx?NNPrh|VBx&1NNPSrh|?RBjt?VBNxVBPx&1?i+2 word collinsVBD+NN+?IN+? i word divingNNoʡVBGMJJ rh@i-1 tag+i word WP askedJJSVBDS?i word supervisoryNN5^I JJ5^I @i-1 tag+i word JJ republicNNStVNNPtV?i-1 tag+i word NNS higherJJRRQPRP rhRB5^I RBR5^I @i word patriotNNsh|??JJsh|? i-2 word wildJJvJJRv?NNOn?INOni word acknowledgeVBPV-@NNV-VBD(\i-1 tag+i word -START- loudJJS㥛?NNPS㥛i tag+i-2 tag NNP VBN JJ?POS rh?RBbX9VBZ r?NNPbX9NNPS`"?NN +VBP?IN|?5^ҿNNSy&1̿ i+2 word tooVBp= ף@NN/$?VBDV-?VBNV-VBGʡEVBP5^I NNSuV?JJjt@RB|?5^?IN333333ÿDT333333?NNPGzNNPS(\?WDTZd;VBZ}?5^Ii-1 tag+i word NN banningVBG?NNi-1 tag+i word JJ acceptableJJ?NNܿi+2 word participateVB r?VBNv?JJSi-1 tag+i word CC anticipatedJJ;On@VBDy&1VBNMbi-1 tag+i word PRP ateVBP$CVBD$C@ i suffix etaNNT㥛 ?JJKNNPQѿi-1 tag+i word CC truckingVBGʡENNʡE?i-1 tag+i word VBN opecRB%CNNP%C?i-2 word baptismJJffffffNNffffff?i word lightweightNNjtVBD rNNP+JJV-@i-1 tag+i word JJ fairwayNNJ +?JJJ +ɿi+2 word volunteerVBZffffffJJGz?NN(\i-1 tag+i word DT adjustmentNNM?JJMi-1 tag+i word IN continentalJJS㥛?NNV-NNPi word marwickNNPSʡENNPʡE?i-2 word conceptionVBNB`"JJ`"?CDV-ҿi+2 word tuckedNNSMbPRPMb?i word gleefulJJCl?NNPCli-1 tag+i word , earmarkedVBNHzGVBDHzG? i word regretNNx&?JJx&i-1 tag+i word NNP zavesNNS%CNNP%C?i-2 word guarantyVBDtVINtV?i word containerboardNNS^I +NN^I +? i word publicDTV-NNSh|?5NNPX9v@VBmRBw/NNxֿVBPy&1ԿJJ(\B@i-1 tag+i word NNP chorusNNSQNNQ? i word blastJJ`"VB㥛 ?NNS㥛 NN`"?i-1 tag+i word JJ touchJJS㥛NNS㥛?i-1 tag+i word VBN yieldsNNSZd;?RBZd;i word essentialVBZ&1ڿJJQ@NNKi-1 tag+i word IN friendsVBZjtNNSjt?i+1 word lubricantJJR9v?NN9v i-2 tag VBDRBS"~?JJRzGVBPDlPOSbX9PDT rпVBG}?5^I?WPS㥛?NN㥛 ?JJSDl?UHjtNNPSq= ףp@PRP$~jtDTQMD~jt?JJHzG?VBZtVFW +?WRB7A`VBD/$VBNK?WDTʡNNSx?RBRS?CDh|?5?NNPV-@EX5^I RPMbX9?PRPMbX?RBZd;?VBv/INx&1?i+2 word bunkerCCnNNn?i+1 word royaltiesVBGMbX?NNMbXi-1 tag+i word , vauntedJJ?5^I ?VBD?5^I i+1 word confusingRBSK?JJSKRBR|?5^?JJR|?5^i-1 tag+i word DT purelyRBA`"?JJA`"i-2 word greeneJJK7?NN+VBZ$Ci-1 word schoolsWDTZd;?RBJ +INZd;VBˡENNMbX9?VBDJJR?VBPK7A`ſi-1 tag+i word PRP adoptedVBZVBP rhVBDNbX9?i+2 word acadiaVBZI +VBDI +? i+2 word whoVBPoʡIN~jtDTjtNNSCl?NNEؿJJRK?CD +?RBm?VBG"~VBZClRBSSVBNrh|@RP+JJ^I +?VBDK7JJS r?PDTGz@NNPCl?VB5^I NNPS/$@i-1 tag+i word NN adjustedNNGzVBNK7A`?JJ~jt i-2 word outVBZ"~jVBDMbCCbX9޿RBRv/VBN r WDT-?JJRv/?VBG r@NNJJJ +?NNPMVBffffffֿNNPSRQ?RBMbX?INV-?VBPˡEԿNNSS?i-2 word practicesNNnڿVBDK7?JJˡE?VBN-i word athleticJJ|?5^?NN|?5^i-1 tag+i word FW giveawayNNQ뱿FWV-JJ"~j?i+2 word apartVBP(\?INZd;OVBZZd;O?VB(\i-1 tag+i word DT victorianJJʡE?NNPʡE i word l.j.NNjtֿNNPA`"?JJ$Ci-1 tag+i word VBD belowVBMRBV-ǿJJ"~INK7A`?i word riddledVBNX9vJJX9v@i-1 tag+i word IN solidVBGSJJS?i-1 word individualsVBP9vRBMb?VBQJJK7?NNoʡVBDbX9JJRV-׿VBN㥛 ?i-1 word amassJJR/$?RBR/$ѿi-1 tag+i word RB defectsNNSffffff?RPffffffi-1 suffix imoNNPStVNNPtV@i-1 word dispelDT"~j?IN"~ji-1 tag+i word CC assistedJJEVBD!rhVBNzG?i-1 tag+i word NNS rangingVBPJ +VBGJ +?i+1 word infocorpNN~jt?JJ~jtÿi-2 word inclinedRBHzG?NNʡEտVBHzGVBGʡE?i+2 word throughVBuV NNPSw/VBPK7CDI +?VBZV-ҿVBG\(\INMbPOS +VBN7A`?WDTHzG?JJ-?NNCl@VBDQ @NNSCl?DTK7?RBRnRB1ZdJJRn?NNPI +i-1 tag+i word `` continueVBS?VBPSi-1 tag+i word VBG earlyVBNClJJ?RBKi+1 word outcryVBN!rh?NN+?JJQٿi-1 word attractsJJM?RBMi+1 word impactJJh|?5@VBX9vNN!rhRB/$VBNMbi-2 word locationVBh|?5VBP= ףp=ҿNNS㥛?i-1 tag+i word DT ricoedJJ rh?NNP rhi-1 tag+i word VBZ incomingVBGx&1JJx&1?i tag+i-2 tag TO )VBOn?VBP ףp= $?5^I ?RBSۿNNP)\(i-1 tag+i word IN changingNNx&1VBGx&1?i+1 word wingsNNS +VBG-?NN +?JJ- i+1 word jailJJNbX9?NNNbX9пi word spurringVBG/$?JJ/$i-1 word sept.JJ?5^I ҿNNP?5^I ?i-1 tag+i word RB induceVB r?JJ ri-2 word painfullyRP(\RB(\?i-1 tag+i word -START- garyVBGSJJsh|?NNP rh?i-1 tag+i word RB riseVBClɿVBPCl?i-1 tag+i word VBP separatedVBNX9vJJX9v?i-2 word giulianiVBGL7A`?JJL7A`i-1 tag+i word NNP notifiedJJL7A`VBDL7A`? i+2 word # NNPSx&1RPjtNN rVBDX9vVBPX9v?JJ/$ֿDT@RBp= ף?JJR+?RBR+ۿIN$CNNS(\NNP~jt@ i+1 word keyWDTIN?i-1 tag+i word NN holdNNQݿVBDMbXVBPʡE?i word supportsNNSHzG?VBDClVBZK7A`@VBV-i word pesticidesNNS1Zd?NN1Zdi-2 word aeronauticalVBP;OnڿNN;On?i+1 suffix ragNNS)\(@JJjtNNZd;Oi-1 word inacioNNS?JJ-NNPx&1i word onetimeJJMbX9?NNMbX9i+1 word richerNNGzRBSۿJJV-?i+1 suffix sfbRBX9vNNPX9v?i-1 tag+i word JJ cheeryJJn?NNnڿ i word robotNNQ?JJQ˿i-1 suffix kemVBZx&NNPx&?i-1 word weirdNNS㥛 ?VBN㥛 i+1 word acceleratesVBGʡENNʡE?i+2 word smallDTK7NNS~jtȿRBKVBDK7A`?JJSlCDI +ֿINZd;?VBn?VBG rh?NNPnпVBP'1Z?JJ+?VBZp= ףVBNd;Oi-1 word horticulturalVBZ{GzNNPS{Gz?i+2 word provisionsVBZv?NNSv i+2 word bajaNNQ?VBDQ޿i-2 word samuraiNN/$?VBD$C˿VBNOn?VBPx&1INKVB/$i+2 word buckleJJ(\VBN|?5^VBD|?5^?UH(\?i+2 word knowledgeJJ"~?NN"~i-1 word tissuesINx&1WDTx&1?i-2 word shareholderRBT㥛 ?VBPClѿJJV-NNd;O?i-1 word stereoNN5^I ?JJ5^I i-1 tag+i word VBZ flushJJ/$?RB/$i+2 word allocationJJ$C?RB$Ci+2 word dependencyJJp= ףNNPp= ף? i word geigerVBN5^I NNP5^I ?i tag+i-2 tag NNS MDVBOn?VBPK7NNS?i-1 word shrontzVBNffffffVBDffffff?i+1 word novelistJJX9v?NNX9v i word uhPRP$= ףp=RBK7UHx&1@JJMbXNNPx&1?i+2 word medicalVBDffffffVBNK7RBS㥛?INMbNNP}?5^IܿVB?JJA`"NNK7?i+1 word horticulturallyCC333333PRP$lPRPJ +?i-1 tag+i word IN sterilizedVBNFx?JJFxi-1 tag+i word NNS surprisesVBZ= ףp=NNS= ףp=? i word gustoNNS^I +NN^I +?i word pleasantJJPn?NNPn i word tameNNd;OFWK7A`JJHzG?i word doubledayNNNbX9NNPNbX9?i word eastwardVBPMbRBv?NNmi-1 tag+i word RBR understoodVBN(\?NN(\i-1 tag+i word NNP collegesNNPS"~jܿNNP"~j?i-1 tag+i word , arsonNNS1ZdNN1Zd?i+2 word metaphorsEXSRBS?i-1 tag+i word NNP textileVBZuVNNh|?5?RBzGếi+1 word rivalRP|?5^?RB|?5^i-1 tag+i word -START- wouldMDS㥛@PDTSUH;OnNNPni-1 tag+i word DT tapesNNSuV?JJuVi-1 tag+i word VBD doVBMbX9?VBP%CVBNCli word overlayJJ/$NN/$?i-1 tag+i word JJ leaguesNNS㥛 ?NN㥛 i-1 word elseVBZ rh?NNS^I +POS(\? i-1 word t.NNPx&1?NNPSx&1̿i+1 word mexicanRPv/RB$CJJQ޿INʡE@i-1 tag+i word JJS sinsVBZʡENNSʡE?i word kennedyJJRQNNPRQ?i-1 tag+i word DT listNNSQNN ףp= ?JJK7Aпi-1 tag+i word , israelisNNPS^I +?NNP^I +i+1 word rethinkVBʡEտRBA`"RBR|?5^?JJ9vi-1 tag+i word PRP$ specificJJ{Gz?NN{Gzi-1 tag+i word NNP publisherNNPy&1NNy&1? i suffix lfaNNSV-NNV-?i-2 word insurance JJK7NNKVBP-?RB+WRB%CNNSx&VB7A`?VBGrh|?INʡE@NNP?VBDMbX9VBNClǿi-1 word factoryNNSQ?NNQi-1 tag+i word NNS headVBPS?JJd;ONNMbXٿi+1 word hazardJJ\(\?NN\(\ i suffix 3-1CDˡE@JJp= ףNNPZd;Oݿi-1 tag+i word TO exchangeVB9vNN9v?i-1 tag+i word DT salingerNNPSClJJRZd;O߿NNP?i word meaningfullyNNʡERBʡE?i-1 word acrossRBRʡE?JJRʡEi word sketchyJJ rh?NN+RB5^I i-1 word puttableRBCl?VBNv/NN7A`i+2 word abusedVBGzRBGz?i word plaintiffNNS7A`NN7A`? i word judgeNNS|?5^NNP7A`VBOn?RBGzNNʡE @JJA`" i-2 word d.NNPSOnNNx&NNP'1Z@i word bumpersNNPSA`"NNPA`"?i-1 tag+i word TO filipinoVBZd;NNPZd;?CDMbPi-1 word abruptNNX9v?JJX9v i word deal NNm@JJSFxJJ|?5VBZS㥛NNSX9vNNP(\?VBbX9 @VBD"~VBNZd;i-1 tag+i word VBD wellUHL7A`RBL7A`?i-1 tag+i word JJ chemicalsNNPSv/?NNSv/ݿi+2 word touristsNNSCl?NNCli-1 tag+i word -START- unableJJ"~j?NNI +NNPMbi word activistNN rh?JJ rh i word etcFWV-@UHtVRBq= ףpVBD+i-1 tag+i word JJ culpaPRP-NNP-?i-1 tag+i word NN turnsVBZ?5^I ?NNSA`"ۿVBDI +i+1 word servedRBʡENNPʡE? i suffix ank NNX9v?VBPJJ?5^I ?VBZMbX9NNS"~VB^I +?NNPS$CRBrh|VBD9v@VBN%CNNPPn?i-1 tag+i word POS offerNNZd;O?NNPZd;Oi+1 word mallsVBG;OnNN;On?i word collapsedVBNMbNNA`"VBD?JJ|?5^?i-1 tag+i word VBP deepJJnNNSV-RBMbX? i+2 word carsVBPJ +?JJ+?INʡE?NNPQRBZd;ϿNNlVBDJ +?VBNʡEi+2 word accordingNNP+VBGvCC;On¿INCl?CDI +JJd;ONNPSFx?NNHzG @RBR!rhVBPQRB?NNSS?VBFxVBN%CԿVBDQ?i-1 tag+i word IN routineJJ1Zd?NN1Zdi+1 suffix ulkVBPnؿVBPPn? i+2 word filmRBSZd;O?JJSZd;Oi+1 word overhaulVBNq= ףp?RBGz?NNPB`"VBGz޿JJV-NNMb?i-1 tag+i word CC bioresearchJJQٿNNQ?i word cocktailJJZd;OVBV-NN9v?i-1 tag+i word JJ frozeNN?5^I VBD?5^I ?i-2 word fieldsVBS?NNPS333333JJSVBZ|?5^NNS|?5^?NNP333333?i-1 tag+i word IN partJJENNPE?i word submittedRBRX9vVBNtV @JJ%CVBD1Zdi-2 word internationallyVBNMbXJJMbX?i-1 tag+i word -START- heavyJJ~jt?NNP~jtȿi+2 word vitalVBG9vNN9v? i word twistVBN$CNNS?CDx&1i-1 tag+i word PRP$ responsesVBZlNNSl?i tag+i-2 tag VBG VBVBQNNlDTS㥛?VBNS㥛NNSʡE?JJSZd;?RBGz?RBSZd;RBR?PRPS?IN/$ @JJR#~jRPv/JJX9v?VBD9vi-1 word focusedRBRl?JJRli-2 word handledNNv?JJv i word upbeatJJ/$NNRQ?VBZZd;i-1 tag+i word , angelfishNN$C?RBvJJCli-1 tag+i word DT bitterJJRL7A`JJRQ@NNx&1 i word delta JJ?NNS/$VBD/$VBP|?5^NNK7A`?FWK7A`NNP/$?VBS㥛NNPS^I +ǿi-1 tag+i word POS casinosNNSOn?NNOni-1 tag+i word NN dealtNNxVBDx?i word attackedVBNp= ף?JJ +ֿVBD!rhVBZ= ףp=i-1 tag+i word DT impedimentNNq= ףp?JJq= ףp i word rainesNNPSʡEݿNNPʡE?i-1 word pleadPRP-PRP$-?i-1 word monsterINClDT rпWDTv?i-1 tag+i word WDT proposedVBVBD?i+1 word symbolismJJRMb?RBRMbi-2 word marginVBZ#~jVB~jtVBP~jt?NNS#~j?i+1 word parentNNPSbX9?JJV-?NNP333333i-1 tag+i word NNP reportedlyNNffffffRBffffff? i word wingsNNMbX9MD +NNSK7?i word buildersNNPS;On?NNSZd;NNPoʡi-1 tag+i word POS waveringVBGʡENNʡE?i-2 word graphicsCC{GzJJR#~j?NN{Gz?RBR#~ji-1 tag+i word JJ anticsNNS+?NN+i-1 suffix fcsWDTzG?DTzGi word draggedVBNjtVBDjt?i+2 word electionVBGT㥛 JJ"~?NNw/i-1 tag+i word JJ auditNNQ?JJL7A`VBP/$i+2 word thereforeVBNS?JJSۿi word resistedVBN+JJOnVBDK7? i word datingVBG rh?NN rhi-1 tag+i word DT contrasNNPףp= NNPS rh@NNSClǿNNuVi-2 word stockbrokersINv/?NNbX9NNP^I +׿i tag+i-2 tag DT VBPJJSʡEƿVBN%CJJRCl?RPS㥛VBZffffff?NNPSzGRB#~jNNCl?VBPʡE?CDZd;ORBSʡE?JJv/ͿINV-RBRx&1пNNSS?POSffffffNNP'1Z?VBGK?VBD&1?FWJ +?i word stricterJJK7AJJRv?NNSӿi-1 tag+i word DT guineaJJrh|NNrh|?i-1 word costlyNNSʡE?NN`"?VBZZd;VBPMbi-2 word accounting DT'1ZܿNNSV-NN;OnVBP\(\?WDT~jt?JJw/?IN~jtVBZV-?RBL7A`VBDxi-1 tag+i word WDT routinelyVBZjt޿RBjt?i+1 word oaklandVBG|?5^ٿRBV-?NNrh|?VBDoʡCDV-JJuVi-1 tag+i word NNP depressionNNvNNPv?i+1 suffix ftyRB㥛 ?NNS ףp= ߿JJ/$?NN ףp= INoʡi-1 tag+i word IN cigarettesVBA`"NNSA`"?i-1 word verifiableNNL7A`?JJL7A`i tag+i-2 tag IN PRPDTK7A`VBG|?5^?JJ"~VBD(\RB(\VBZ/$?VB-RBR/$?VBNtV@INK7A`?NNS?5^I ¿NNP-?CD%CNNPSjtNNS?PDT9v?i-1 tag+i word RB passengerNN?JJi-1 tag+i word `` somehowRBjt?NNh|?5ֿNNP!rhi-1 suffix ckyFW㥛 NNE?NNPʡEݿi-1 tag+i word VBP enoughJJS?RBsh|?NNx&i-1 tag+i word DT peakJJ333333?NN333333i-1 tag+i word NNS movingNN7A`VBG7A`?i word pulloutNNB`"?INB`"ٿi-1 tag+i word JJ lobbyNN$C?JJ$Ci-1 tag+i word NN spillVB+?NNSOnNNMbX?i-2 word traders VBPX9v?RBl?NNS(\?RPm?CCL7A`JJR(\VBNE?WDTQINZd;?VBL7A`?JJx&NNS i-1 word gangVBMbX9ܿVBPˡE?NNZd;i-2 word disorderVBZv?VBPvi-1 tag+i word WDT administersVBZZd;O?NNSZd;O߿i-1 tag+i word IN craneNN^I +NNP^I +?i tag+i-2 tag NNS RBVBN7A`RBRKVBG?NNPDTGz?VBPMbX?VBw/VBD +?INn@DTGzJJX9vCClڿRBMb?JJR`" i word hallVBPT㥛 NN`"?NNPT㥛 ?VB`"i-1 word providesDTX9vNNSClVBG+RBp= ף?NN?5^I ?VBN#~jJJ(\?i-1 word wheelVBN +VBD +?i-1 word theoryVB/$VBPI +VBN9v@NNSۿi+1 suffix gyoNNPʡE@VBPK7A`NNS㥛INvi+2 word ordersNNSV-?VBN9vVBPS?VBDx&1WDT$CINSVBZPn?RBV-JJ(\?VBG#~jNN-@RPV-?NNP +VBbX9?i-1 tag+i word JJ swimmingNN\(\?JJ\(\߿i word yieldedVBDNbX9VBPV-VBNtV@i+2 word geologicallyDTDl?WDTDli+1 word subsidiaryNNPjtNNPS +οVBGZd;NN~jt?VBN!rhJJtV@VBZV-Ϳi-1 word thriftsIN^I +VBffffff?VBPffffffWDT^I +?i tag+i-2 tag RB '' RPGzVBDS㥛?VBNZd;VBPzG?RBˡEԿINp= ף?VBZffffff?NNSZd;JJSNN1Zd?RBRMbX9i-1 tag+i word VBG urbanNNSQJJQ?i-1 tag+i word NNP attractiveJJ"~?NN"~i tag+i-2 tag NNS NNSVBx&1?NNp= ף?JJSq= ףpRBSq= ףp?WDTQ?VBZ\(\NNSK7A?POS?VBNʡEINMbNNPX9v?RB?DT r?VBDy&1̿VBPGzJJS?i-1 tag+i word NNP recordNN?NNPi+2 word skyscraperNNx&1NNPx&1?i word ceaselesslyVBP+RB+?i+1 word viewpointJJjt?NNjt i suffix ise NNSuVVBzGa@NNPSy&1VBDQJJRx&RB$@INtVVBZ%CNNP|?5^JJd;ONNy&1@VBNx&1VBPʡE@ i word betaNNMb?JJKNNPFxi word juxtaposeVBy&1ԿVBPx&?IN+i-1 tag+i word NNS openVBPp= ף?JJp= ףi-1 tag+i word NN driveJJGzIN+VB^I +VBPʡEտNNGz@i+2 word allegingNNPSK7ANNPK7A?i+2 word temperaturesIN/$?DT/$ѿVBPʡE?NNʡEi-1 word sufficientNNS?VBNI +JJT㥛 i-1 tag+i word IN polishingVBG1Zd?NN1Zdi word fastenersNNPS+׿NNS+?i-1 word interpretationVBZd;OVBNL7A`@VBDjti word earthboundVBNq= ףpJJx&?NNX9v׿RBQٿi-1 tag+i word NNP phelanNN`"NNP`"?i-2 word supervisoryJJx&1INx&1?i-1 tag+i word `` documentJJSNNPS? i word jointVB#~jNNGz.RBRZd;JJo!#@VBZZd;OݿNNPv/?i-1 tag+i word NNP hotJJ#~j?NN#~ji-1 tag+i word RB resembleJJB`"VBB`"?i-1 tag+i word POS graveNNl?JJli-1 tag+i word RB standVBB`"۹VBP}?5^I?NNuVi-2 word cloudsNNS+?NNP+i-1 tag+i word NN laptopJJGz?NNGz i+1 word cookNNZd;O?NNPZd;O i-1 word off VBNA`"RB~jtWDTQDT/$?NNPSCD)\(?IN/$$}?5^IVBGoʡ@JJQ?NNM?RBRS㥛?JJR^I + i word victorNNHzGNNPHzG?i-1 tag+i word NN indictedJJGzVBDrh|?VBNKi-1 tag+i word IN campusJJR\(\NNB`"?JJ'1Zi-1 tag+i word VB sexVBFxNNFx?i word norfolkNNENNPE?i-1 tag+i word IN s&pNNS?NNPSӿ i+1 word mineJJJ +NNPx?NNZd;O @VBN\(\JJR(\i-1 word sparklingNN rhNNPp= ףNNS rh?i-1 tag+i word PRP$ existingVBGQ?JJjt?NN%C i word cloutNNSV-NN(\?JJ/$i tag+i-2 tag , DT RP{GzĿNNX9v?PRP-?RB{Gz?NNP-VBZoʡݿVBx?JJX9vVBD5^I RBRS?JJRSi+1 word intellectualJJ(\NNP(\?i-1 tag+i word WP seeVBDlVBPDl?i-1 tag+i word VB blameVB333333?NN#~jJJ-ƿi-1 tag+i word NN privilegeNNSrh|VBNʡENN?i-2 word pollinatedVBNV-?NNV-i-2 word governorNNPST㥛 NNuVVBD+@VBN+JJuV?NNPT㥛 ?i+2 word administrativeNNV-?VBDQVBPx?RBV-VBZv/NNSX9v?i-1 tag+i word VBZ likeJJQINQ?i-1 tag+i word RB committedVBNuV?JJ rhVBD?5^I ?i-2 word peasantsJJ1ZdNNP1Zd?i word panamanianJJ+@NNP+i-1 word alliesVBNGz?VBDGzi-1 tag+i word CD injuredVBN?5^I JJCl?VBDni-1 tag+i word IN handyJJh|?5?NNh|?5i-1 word cardiovascularVBG ףp= NN ףp= ?i word worryingVBGGzJJCl@NN~jt i suffix iet NNPSvRP"~ҿVBZHzGJJd;O$@NNx&VBD+VBNuVRBSNNS+NNP +޿i-1 word wholesaleNNSNNMb?JJuVݿ i suffix 961CD(\?JJ(\ i suffix ITTJJ~jthNNPV-?NNSX9vNNMbXѿ!i-1 tag+i word -START- woodbridgeWRBKNNA`"NNP1Zd@i-1 tag+i word NNP rateNNPRQVBPlNN +@NNPS^I +i+2 word produce NN?JJx&INx&1VBZX9vNNP/$DTKNNS rh@VBʡENNPS|?5^ڿVBDL7A`VBNS㥛?VBPB`"?WDTK?i+1 word varietyVBGZd;NNh|?5RBRmCDh|?5?JJffffff?JJRm?NNPZd;O?i-1 word guineaNNzGNNSzG?i-1 tag+i word JJ aircraftJJMNNSV-@NN333333i word nonfictionNNS㥻?JJS㥻i-2 word holdingJJ+?VBNGzNN+ÿVBDGz?i-1 tag+i word CC defendVBZvVBv? i suffix aptVBZ1ZdJJV-?IN+ i+1 word digsJJ= ףp=?NN+ηNNPni-1 tag+i word NNP hearingsNNSʡE?NNʡEi+2 word campaignRBPnIN~jtDT(\?NNPJ +RP= ףp=@JJw/?NNZd;O׿VBP333333ۿi+1 suffix fewDTjtRB(\?NNʡEVBD^I +?VBNV-?VBPsh|?JJClIN +@i-1 suffix tenVBG ףp= RBuVVBZQ@JJRQ?NNSNNSJJRB`"ɿNNPK7A`?VBDDlѿVBNx?RPQ@VB{GzRBRHzG?VBP}?5^I?INi-1 tag+i word RBS respectedVBN#~jJJ#~j?i word unsettlingNNEԸVBGrh|߿JJ +?i-1 tag+i word DT worryNNMbX9?JJMbX9i-1 tag+i word PRP realizedVBD)\(?VBP)\(i-2 word gracefullyNNPNNPS|?5^?NNS^I +i-1 tag+i word POS programNNrh|NNPrh|?i-1 word antonVBZ?NNi-1 word mistakenlyVBN?NNPi-1 tag+i word WP superviseVBP;On?VBD;Oni-2 word almost RP"~?JJE@NN+?JJRzGVBNMVBG~jtNNPrh|?VB$CVBPJ +@RBX9vVBZ%CNNS?5^I ?NNPSK7i-1 tag+i word VBD turkeyJJZd;NNZd;?i+1 word advisoriesNNx?JJxi-1 tag+i word PRP passVBˡE?RBˡEĿ i word museumNN rh@NNSx&1VBNtVJJCli+1 word fraserNNQNNPQ?i-1 tag+i word VBP setVBN5^I ?JJ5^I i+1 word postwarJJ r?NN ri-1 tag+i word DT employersNNPSnڿNNSn?i-1 tag+i word VBD hitPRP$ףp= PDT(\ȿVBNT㥛 ?JJEпVBD(\?i+1 word pistolsJJq= ףp?NNtVVBD%Ci-1 tag+i word -START- senatorNNPQ?NNQi+2 word latestVBDV-?VBN/$VBPRQIN{GzVBZV-NNP(\?VB#~j@NN(\ i+1 word goesJJZd;VBGh|?5NNSClNNS㥛 @i-1 tag+i word NN perchlorateVBP|?5^NN rh?PRPQJJZd;߿i-1 tag+i word NN bankingVBGQ?NNףp= ?JJ5^I i-1 suffix mpyNNS%CNN%C? i suffix anzVBPNbX9NNPNbX9?i+2 word cuddlesMD㥛 ?NNP㥛 i word liquorNNSKNNT㥛 ?JJ(\ i+1 word goldNNP#~j@VBG|?5^NN(\CC)\(?JJ$C?INzG?VBZzGDT)\(i word intelligenceNN?JJMbXNNP/$?i-1 tag+i word JJR fertilizerNNV-?JJV-i-1 tag+i word RB expectVBP/$RBClJJd;OVBx&@i-1 tag+i word DT challengesNN|?5^VBZ;On?NNS rh i suffix ZVBK7ANNM?NNPʡEi+1 word machinesVB/$?NNPSK7VBGV-?NNMbXJJRV-?RBRV-¿JJffffff?NNPi-2 word frankfurt VBV-VBD!rh?VBN&1INPnNNST㥛 JJ|?5^?NNMbX9?RB}?5^I?VBZˡE?NNPX9vi-1 tag+i word VBD condemnsNNS-VBZ-?i-1 tag+i word NN risesVBZPn?NNSPni+2 word reestablishVBZ!rh?RB!rh i suffix -opJJjtNNjt?i-1 word consummatedRBMb?NNMbi-1 tag+i word NN embryoNNffffff?VBDffffffi+2 word replaceNNSsh|??NNsh|?i+2 word failuresJJR?RBRi-1 tag+i word WP favorVBZxVBPx?i+2 word establishedVBZʡE?NNSʡEJJ#~jĿNNCl@NNPGzi-1 word returningNNSClNNPCl?i-1 word indirectNNV-?JJV- i-2 word farVBD-JJSʡE@PRPˡERB(\RP ףp= ǿCC-?PDT'1ZVBNsh|??JJ;On@DT+?VBQNNRBS{GzINA`"?i word antimissileNN}?5^IJJ}?5^I?i-1 tag+i word `` karaokeNNSx&1NNKFWX9v?i+1 word draggingNNSrh|ϿNNbX9?JJxi+2 word intelligentlyVBZ`"?VBD`" i word toutINʡEVBQ?NNQſi-1 tag+i word NN manuallyRB;On?NN;Oni-1 tag+i word VBN desperateJJ+?RB+ i word dumbJJ`"@NN|?5^RBˡEi-1 tag+i word VB appropriateVBN)\(JJ)\(? i+2 word de RBST㥛 VBNlJJ#~j @INZd;?VBZףp= NNPSZd;ORBClFWE?NNS{Gzt?NNPx?NN|?5^VBDX9v?DT rh i-2 word danJJʡEVBDʡE?i+2 word retainVBD|?5^?NNP(\?NNS(\JJ|?5^ i+1 word unaNNPSw/NNPw/? i-2 word lt.NNClNNPCl?i word monolithicNN-JJ-? i word oweVBZx&1VBZd;?VBDDlVBPS @JJ\(\IN\(\i word haplessRBR~jtRBx&1JJ?VB|?5^ɿi word functionsNNS r?NN ri word sourcingVBGHzG?NNMbJJ'1ZԿi-1 tag+i word DT imminentNNSJJS?i-2 word plannedJJ}?5^INN/$ @VBbX9NNSK7i word amazingVBGSJJ(\@NN/$NNPZd;OͿi-1 tag+i word VBP affirmativeVBN/$JJ/$?i-1 word prudeJJbX9?VBDbX9i-1 tag+i word , liftingVBG'1Z?NN'1Zi+1 suffix hatRB'1ZVBPZd;O@RBRHzGNNPS?UHv/ݿCDClVBDZd;@WDTV-DTʡENN rh?CC5^I ?JJS1ZdVBN-JJMbFWjtNNPK7A VBʡE@EXv/VBZDl@NNSy&1?PDTK7 @MDS?VBGA`"?WPMb`?RPq= ףp @POSZd;PRP~jtINx&1?JJRX9v׿i-2 word credit NN= ףp=FWm?JJR +VBNPn?RB ףp= RPV-JJCl?RBRCl@INzG?VBG-?NNPi-1 word totedRPv?RBv i word ohioVBX9vNNPX9v?i-1 tag+i word IN sharksNNSˡE?JJˡE i word spiritVBP +NN +? i-2 word jobJJzGếNNxCDxRBx&1?DT9vPRP$\(\߿VBGZd;O?i-1 tag+i word DT tacitJJ(\?NNQNNPGz?i-1 tag+i word RBS developedJJ`"?VBN`"οi+1 word ingestionJJ/$NNNbX9?JJRjti-1 tag+i word NN 'sVBZRQNNPnPOSbX9H@''GzPRPZd;O߿INS㥛пi-1 tag+i word DT scenarioJJSSNNS?i+1 suffix piaNN}?5^I?JJjtNNP(\i+1 suffix iusINQ?DT/$ÿNNPxWDTmJJx?i-1 tag+i word VB expandedVBN!rhJJ!rh?i-1 word punchingDT+PDT+? i word saksNNPSJ +NNPJ +? i-2 word fromVBD(\VBNQ @RPGz?POSoʡ?NNPV-¿JJSI +UHI +VBP#~jDT/$RB/$RBSI +?''oʡWDT;On¿NNT㥛 JJR~jt?INn?VBGZd;O @JJK7VBZSFW+NNSCl?RBRd;O?CD rh@NNPS(\i-1 tag+i word PRP$ robotNNQ?JJQ˿ i word dengNNPSZd;NN`"NNPq= ףp?i-1 tag+i word , pongRBZd;NNPZd;?i+1 word coffeeCC!rh?JJtV?NN"~jCDx&i+1 word glassNNq= ףp?VBDDlVBNx&1JJ5^I ˿INq= ףp?NNP)\(?i+2 word viewedRB`"?VB`"i-1 word legislatorsVBPsh|?NNS1ZdVBD/$?i+1 word dentsuINCl?NNPCli-1 tag+i word ( rexallVBMNNPM?i+1 word controlledINNbX9VBn?VBPnRBNbX9?i-2 word woundJJjtVBGjt?i-1 tag+i word TO increaseVB'1Z?NN'1ZԿi word bustingVB㥛 VBG㥛 ?i-2 word thicketJJB`"?RBB`"ѿi+1 word collectVBP333333ۿRB333333?i word marketplaceNNSףp= ӿNNQ?CD̿ i word doubtJJvNN@VBDw/VBPCl?RB(\VBZSNNSB`"VB9v@i-2 word dreyfusNNPSZd;NNPZd;?i word lifelongJJSjtJJjt?i-1 tag+i word IN tormentsVBZCl?NNSClɿ i+1 word denyNNSV-?JJV-Ϳi-1 tag+i word VBZ keenlyRB7A`?IN7A` i suffix os.NNPST㥛 @NNClNNPHzGi-1 tag+i word RBR narrowlyRBQ?JJQi+2 word versionRB-?VBGX9vi-1 tag+i word VBG madeVBNMbX9?VBDMbX9Կi+1 word convertedRBMb?NNMbi-1 tag+i word NN starringVBGS?NNSӿi-2 word transNNPSSտNNPS?i+1 word approvedRBMb?JJMbNNP= ףp=?NNPSL7A`NN9v?i+1 word paper NNV- VBDDlRBS= ףp=NNPMbXѿVBHzGٿVBG㥛 ?CDS㥛VBPHzG?JJQ @DT^I +?JJSZd;@VBNuVݿi+1 word opposingRPZd;VBNx?JJjtINClǿi-1 word crumblingNN?JJi-1 tag+i word NNP bondsNNPSV-ݿNNSS?NNPl?i-1 tag+i word DT occupiedJJCl?VBNCli+2 word instrumentsVBNGzVBPK7A`?JJT㥛 ?NNPjtܿNN333333?VBDK7A`i-1 tag+i word VBN firstJJNbX9NNPNbX9?i-2 word complianceJJS㥛NNPS㥛?i-2 word subjectNNS(\NNPv/?VBClRPL7A`?RBL7A`NNCl @VBNK7JJx&1ȿ i+1 word punyVBPzG?JJ+RBNbX9?i-1 tag+i word JJ somehowRB+?NN+i-1 tag+i word RP upRP}?5^I?RBJ +INCl?i-1 tag+i word TO dfcVBV-NNPV-? i+2 word act VBGV-VBDʡEտ''p= ףJJ1ZdNNPClg@NNPS1ZdNNxVBNʡE?POSp= ף? i-1 word irksVBNm?JJm i word istatNNS/$ٿNNsh|?NNPw/?i+1 word dissonanceVBGS㥛?JJMbX9NNZd;Oi-1 tag+i word VBD underpinnedVBNNbX9?JJNbX9i-1 tag+i word JJ mundaneJJ +?NNP + i suffix rNNCl?NNSxJJ-SYMv/ͿLS(\?i-1 word chanceINX9v?WDTS㥛VBDA`"i-1 tag+i word TO pushVBQ@NNSvNNQJJK7ٿi-2 word staffRPNbX9@RBMbX9NN= ףp= @VBDPn?JJ(\ڿINZd;ONNPPnVBQi-2 word happyNNPףp= VBv/?NNMb? i-2 word soon JJS`"ֿDT= ףp=?RB(\NNCl߿WDT= ףp=PRP\(\JJQ?NNSffffffVBNn@VBPʡEۿi+2 word averyNNx?RBRx&1VBNx&1?WDTjt?JJxINjt޿i word rolodexesNNPS}?5^I?NNSQNNPB`"i-1 tag+i word JJ albumNNX9v?JJQNNP+i-1 tag+i word DT staunchlyRBHzG?JJHzGi word smelterRBR-NN-?i-1 tag+i word IN baddebtJJ\(\?NN\(\i+1 word aboutMDv/JJRFxWDT~jtPRP}?5^ICD+NNSQ?INB`"ѿNNPS-VBNˡEWP~jt?VBZX9v?VBP&1@JJm?POS"~jRP/$?NN/$?RBsh|?NNPQVBV-?VBGCl@VBD1ZdDTrh|CC)\(RBRGz?i-1 tag+i word RB eligibleJJ?5^I ?VB?5^I ڿi-1 tag+i word VBP spendingVBGtV?NNtVi+1 word great RB@NNS^I +NNPoʡ?DT ףp= NNPSoʡRBRK7JJMbINK7AVBZx&1?i-1 tag+i word IN samJJ333333NNP333333?i-2 word ohmaeVBGףp= NNףp= @i+1 word portfoliosVB?5^I ¿VBPGz?JJm?NNd;Oi+2 word operating VBNjtPOSS?JJMNN/$VBGZd;?VBD(\?VBP'1Z?NNPˡE?VB&1i-1 tag+i word RB likeVBPJ +@JJx@INy&1ܿVBʡEi-1 tag+i word JJ aboveIN1Zd?RB?NN1Zd i word liberaFWsh|??NNENNPoʡi word taxpayersDT1ZdNNSK7A@JJR\(\NNPʡE i+2 word lipPRPT㥛 @NN rhCDnڿi-1 suffix ulyJJT㥛 @NNףp= VBD+?VBN~jtVBP-RBˡEVBG(\?i-2 word concreteVBZ|?5^ʿNNS|?5^?i word intermediateVBD`"VBS㥛JJK@NNX9vi-1 tag+i word : percentJJ&1NN&1?i-2 word ornamentsRBX9vINX9v?i-1 tag+i word POS packageVBNѿNN? i-1 word ltvVBDtV?VBNtVNNQNNPQ?i-1 tag+i word IN seigeNNS`"NN`"?i-1 tag+i word '' supportedVBN333333VBD333333?i+1 suffix audNNSzGNNrh|?JJ~jti-1 tag+i word NN individualNNQ?JJQοi-2 word hueglinJJX9v?NNX9v߿i-1 suffix plyVBNV-?VBPL7A`NNSZd;OVBGV- @JJ"~@RB(\ȿDTX9vֿNNGzFWףp= VBS?VBD333333?RBRtVJJRtV?RP)\(IN7A` i suffix ussVBCl?NNP+?RB+VBDCli-1 tag+i word VBD dismalVBNy&1JJy&1?i-1 tag+i word VBD at&tNNPS^I +׿NNP^I +?i-2 word negroNNd;ONNPd;O?i-1 tag+i word NN dramaNN{Gz?NNS{Gzi+2 word whateverVBD̿VBN"~?JJKi-1 word focusingRBRZd;?JJRZd;JJV-VBG9vRBn@NN;Oni-1 tag+i word VBG responsiblyRBy&1?NNy&1i+1 word falconJJp= ף?NNPp= ףi-1 tag+i word RB subsidizedVBNEȿJJE?i-1 tag+i word POS notableJJDl?NNDli word enthusiasmNNV-?JJd;ORBQۿ i+2 word bonoJJQ?NNQi-1 tag+i word DT protestantsNNPS(\?NNST㥛 ؿNNPB`"i-1 tag+i word JJ expressNNP|?5^?JJR|?5^i-1 tag+i word DT southamJJ}?5^INNP}?5^I?i-1 tag+i word VB firedVBN5^I ?JJ5^I ۿi-1 word monitorJJ(\?NNSVBDni-1 word marwickNNPS;OnNNP;On?i-1 tag+i word NNS playVBZSVBQVBP r@NN/$i+1 suffix aigNNQNNPQ?i+1 word revealsNN@JJQNNP|?5^i-1 tag+i word VB averageVBP+?JJ+i word equippedNNPsh|?VBNw/?JJ+?VBD333333i-2 word barneyNNSMbNNMb? i word verbalJJʡE?NNʡEi-1 word resumeVBG r@NN ri-1 tag+i word POS recruitmentNNoʡ?JJoʡi-1 tag+i word VB rankedVBNI +?VBDI + i-1 suffix us VBV-?RP?NN1ZdVBD+IN rh?VBPMbX9?WDT|?5^?RBZd;WP|?5^NNPsh|?i-1 tag+i word IN trainingVBGGzNNGz?i-2 word compriseNNFx?JJFxi word affidavitsJJV-ͿVBZ`"DTFxNNSʡE?i word yetnikoffNNPZd;O?NNPSZd;Oi-1 tag+i word JJ pistolsNNS{Gz?NN{Gzi+1 word provisionsVBNʡEVBP9v?RB333333ۿVB/$JJzGếNNS@i-1 tag+i word JJ amazementNNE?JJEi-1 tag+i word JJS balloonistsVBZ+NNS+?i word snowbirdsNNSOn?VBOni word christiesNNPn@NNPSQNNS|?5^i word batteryNNSClNN/$@JJV- i word testVBZd;O?NN/$@JJS{GzJJRMbJJ|?5^NNS+i-1 tag+i word IN engagingVBG/$?NN/$i-2 word methodVBV-?VBGRQ?NNV-JJRQi-1 suffix den RBsh|??NNP + VB/$?VBG ףp= NNGz@VBD|?5^NNSX9v?NNPS㥛 @JJ|?5^INtVVBZv/ݿ i-1 tag+i word DT pharmaceuticalJJsh|?NNPsh|??i+2 word corp. NNPS+RB(\VBDQVBNGz?NNSV-NNPK7@NN(\ CDPnJJS㥛?IN?DTi-1 tag+i word -START- wayneNNZd;O߿JJZd;NNPS?i-1 suffix hopRP ףp= ?IN ףp= VBZv/?NNSv/i+2 word devisedNNSw/?NNw/i-1 tag+i word NNS sugarNNNbX9?VBPNbX9i-1 word fruitbowlJJS㥛?RBS㥛i-1 word utilitiesCDT㥛 ?VBP?5^I ¿JJRxNNd;O?i tag+i-2 tag NNP NNSNNP1Zd NNPSL7A`ؿJJMPRP{Gz?RB +?CDx&1?RP?NNSjtֿPOSx&INv?VBZy&1?NNV-?VBDv?RBR +οVBPˡEVBNSۿi word harvestJJSףp= NNףp= ? i-1 word yvonNNSlNNPl?i-1 tag+i word PRP$ muniNNS~jtJJ~jt?NN + i word beginVBbX9H@RPClNNd;O CCxVBPS@RBK7NNS1Zdi-1 tag+i word NN beneficiariesNNS|?5^?NN|?5^i word whirringNN/$VBG/$?i tag+i-2 tag PDT RBDTGzRBGz? i+2 word formRBSZd;O@JJSZd;OJJ$C?VBZB`"۹NN$CVBDB`"۹?i+2 word irradiationVBN5^I JJ5^I ? i+1 word pitNN333333?IN333333i-1 tag+i word NN p53NNS?JJS i suffix LieNNB`"@JJuVNNPv/i-2 word rocksJJ/$NNP"~j?NNrh|?i word geneticallyNN= ףp=RBv@JJV-i-1 tag+i word -START- j&lNNffffff?RBS㥛NNPx&1i-1 tag+i word NN terroristsVBZCl绿NNSCl?i-1 tag+i word VBZ seeVBp= ףVBPp= ף?i-1 tag+i word DT petrochemicalNNRQ@JJRQi+2 word volume VBGzG?NNK7ACDS?VBPh|?5οRBClVB-?JJDl@VBZ1Zd?NNS1ZdۿNNPK7Ai+2 word wildlifeNNSZd;OJJ'1ZNNZd;O?NNP'1Z?i+1 suffix nyuDTK7A`WDT9vIN?i+1 word taniiNNP+?RB+i-1 tag+i word NN classNNPV-VBZh|?5NNx&1?i-1 word brokerVBZ;On?NNS~jtNN+i-1 word nekoosaVBZ^I +?VBN㥛 ڿJJ^I +VBD㥛 ?i-1 tag+i word JJ rockNNX9v?JJX9vi-1 tag+i word , strengthenVBZ rhVBGz?JJV- i-1 word kimPOSNNP?i-1 tag+i word PRP$ palatialJJffffff?NNffffffi-1 tag+i word RB discardVB;On?VBD;Oni word scenarioRBK׿NNX9v@JJSSJJ^I +VBZlNNSzGNNPMbX9VBG rhi-1 word soaringVBGGz?NNZd;߿JJT㥛 ؿi word bargainingVBGV-NNQ @JJL7A`i-1 tag+i word DT techniciansNNPSbX9NNSbX9?i-1 tag+i word NN empireNNMbX9?RBMbX9Ŀi+2 word operatorVBN9vVBD9v?i-1 word townsVBZMbVBPMb?i-2 word languageNNSZd;JJS?NN\(\FW/$?VBDQVBNQ?RB rh?IN rhi-1 tag+i word DT bustJJV-ڿNNV-?i-2 word recycleJJCl?NNCl i-2 word lungNN^I +?JJ^I +i+1 word irresponsiblyVBG/$?NN/$ٿi-1 tag+i word ( becauseRB333333ÿIN333333?i-2 word resolutionsNNS(\µ?VB(\µi word minicarNNuV?JJ~jtFW-i-2 word officiallyJJ/$UH/$?RBѿIN?i-1 tag+i word RB godJJףp= NNPףp= ?i word pollutedVBN/$JJ/$?i+1 word aspectsVBRQJJK7A?NNX9v?NNPQ i word nokiaNN~jtNNP~jt?i-1 tag+i word DT protractedVBNRQJJRQ?i-1 tag+i word VBG banVBNvNNv?i+1 word defamatoryDTZd;OINZd;O? i suffix nic NNPS|?5^NN rhFW+JJB`"#@NNSVBw/VBNClVBP$CDTFxNNPJ +?i+2 word countVBZ5^I RB5^I ?i-2 word formerFWClPOSQIN{GzCCQ?JJSx&NNRQ@VBN rhѿVBPMbX9VBZK7A`DTd;ONNPx&1?NNPS&1@RBZd;O?JJq= ףpNNSV-VBGX9v?VBD rh?i-1 tag+i word VBG swapsNNSq= ףp?JJq= ףpi-1 word diplomaticVBGKNNK?i-1 word staredRP r?RB ri word realityNNK7?NNPK7 i suffix tueNNSB`"NNE?JJh|?5 i word starsVBZS㥛?NNS$C?JJ/$NN"~jVBDMi-1 tag+i word IN mazesNNSI +?NNI +i-1 tag+i word IN multipleJJ+?NN+i-2 word survivedNNSDl?NNPDli-1 tag+i word DT whileIN(\NN$C @RB(\JJ-i-1 tag+i word DT periodicNNPS!rhJJ!rh?i-1 tag+i word TO dictateVBbX9?JJbX9 i suffix nasNNPSZd;O@NNA`"VBDʡEVBP;OnRBClNNS?5^I@NNPRQi-1 tag+i word TO reportsVBףp= NNSףp= ?i-1 tag+i word NN legalizingNN/$VBG/$?i-1 tag+i word NNS grabNN|?5^ڿVBP㥛 ?JJx&1i+2 word thereafterVBN1Zd?JJ1Zdi-1 tag+i word NNP jesseNNPSClɿNNPCl?i-1 tag+i word CD wastewaterNN rhNNP rh? i word tenseNNJJ?i+1 word envisionedNNSv/@NNSNNP(\i+2 word advocatingJJSsh|??RBsh|?ݿ i+2 word fund VBD{GzJJnVBMbX9NNZd;OVBNB`"?VBPv/@WDTK7INK7?NNPq= ףpNNPSK7?VBGʡEi+2 word defenseFWV-JJSMbIN$C?PDTS?RBSMb?NN?5^I NNP~jtRP-?JJDlRB-NNSI +?VBDy&1VBPy&1?DTv/CC~jtCDv@ i+1 word knewNNJ +?JJJ +i+1 word displayNN r?JJ r i-2 word see NN|?5^ RBS-JJS-?VBPʡE?IN'1ZVBZoʡDTK7A?VBPn@JJ+WDT1ZdۿRBL7A`?NNPʡEӿVBGNbX9?i word flutingNNZd;@JJMbпVBGMbX9i tag+i-2 tag `` CCFWMbX9JJRV-?RB rhտVBPQNNS;OnVB~jtÿNNPSK7A`?VBG/$JJX9v?NNP+NN㥛 ?VBDd;OVBN|?5^?DTV-?i-2 word prototypeVBNK?RBKi-1 word shares RP~jt?DTx&1?NNS-RB rhVBP"~jWDTx&?VBNS?JJףp= INI +VBGtV?NNVBD7A`?i-1 tag+i word , whiskedVBNl?VBDli-1 tag+i word VBP outRP+@RB/$JJuVͿINRQi+1 word barclaysNNSbX9?NNbX9i-2 word syrupJJRK7?NNMbX9RBR㥛 i word crammedVBDK7?VBNK7i-1 word trulyJJjt?NNMVBNB`"i-1 tag+i word TO toddVBDlNNPDl?i-1 suffix yeeNN&1ڿNNPˡEVBZv/VBD +NNSK7A?i-1 tag+i word VBD bundesbankNNP$C?NNPS$Ci word deseretNNPS^I +NN^I +NNP^I +? i word propelVBPzGVBNףp= NNGzVBZ= ףp=VB^I + @i-1 tag+i word IN cargillJJ+߿NNP+?i word strategistVB;OnNNZd;O?JJx&1 i suffix umnVBPv׿JJ9vڿIN$CVBZtVNNStVNN333333 @i-1 tag+i word VBZ inexorablyVBPA`"RBA`"?i-1 tag+i word NN millsVBZ#~jNNS#~j?i-1 tag+i word IN unfriendlyJJ\(\@RB\(\i-2 word expireNNn?JJni word windshieldNNl?JJlҿi tag+i-2 tag WP POSVBZ?VBi word desperateJJʡE@VBPoʡNNSKRB+NNHzG i+1 word admittedlyVBGI +?NNI +ֿi+2 word thoroughVBP\(\RBK7A`?NN1Zdi-1 tag+i word TO minusVBsh|?RB ףp= IN+@i-1 tag+i word `` firmNNJJ? i suffix A-6NNK7@JJQNNPvi+2 word loadedVBPGzVBNʡEݿJJ/$?VBDp= ף?i word informedVBN!rh?JJZd;?VBD+߿VBZSտNNS`"i-1 tag+i word , entrepreneursVBKNNSK?i-1 tag+i word -START- worseLSbX9ֿWRB1ZdNN-JJRS㥛@RBR;On@UHMbWP"~ڿNNPI +i word insulinsNNNbX9NNSNbX9?i word suppliersNNS/$?NNP/$i-1 tag+i word NN cheapRBPn?NNPn i+1 word your DT\(\?NNP;OnVBG㥛 ?JJK7A` VBNHzGWDTQRPbX9?VBZMb?VBʡE @NN/$VBDGzRBMb?INv@i-1 tag+i word NNS divideVBP|?5^?NN|?5^RBV- i+2 word bINB`"NNS7A`NNP9v?JJX9vNN!rh?RBV-Ͽi-1 tag+i word CC easierVB1ZdJJR1Zd?i+2 word citedNNS㥛 NNL7A`?JJ"~j̿i+2 word fleetingVB rh?NN rhi+1 word functionsNNK7NNSK7? i suffix CRsNNPMbXNNSl@NN|?5^i+1 word cellsJJK7A`?VBGn?VBNV-NN%C i word aptNNPS +οVBD rhVBPZd;OJJ{Gz@IN+VBZ1ZdNNP?5^I i-2 word surelyVBy&1JJRh|?5?NNy&1?RBRh|?5i-1 word fillerNNS|?5^VBNtVNN'1Z?i+2 word bromleyVBPQNNQ? i-1 tag NNPVBZ@NN/$?PDT"~IN;OnVBGMbVBNK7 POS- @MDv@RBSJJRQ FWCl?VBDL7A`e@NNSy&1CDRPQWDTDl?JJ\(\WPy&1?DTˡE}VBlRBRPn UHGz׿PRP$Fxٿ''ʡEݿVBP?PRPZd;?NNPq= ף@CCn?NNPSS@JJSA`"i+2 word abortionJJ;OnNNSp= ףVB(\VBG-NN;On@VBN(\? i+1 word onPRP +NNS333333@NNP9vVB+?RBRy&1?EXClNNPSbX9?PRP$nVBDy&1?VBN)\(@RPKCCxJJRV-?JJSVBPZd;?JJm DTK7ANN&1@FWMbXINx&1VBGX9v?WDTK7AVBZK?RBOn?CDxi word belgianNNPV-JJV-?i-1 tag+i word JJ evenRBMb?JJMb i suffix shiVBNʡEJJGzֿNNSd;ONNPV-@RB+NN1Zd?i-1 tag+i word ( doubledayNNNbX9NNPNbX9?i+1 suffix velVBN9vVBZPnNNPGz?VBG rhVBPn?JJRMb @INS㥛NNSm?JJʡENNMbX9RBd;ODT~jt?VB{GzPOS rh?i-1 tag+i word NNP treatyVBClNNPCl?NNFx?JJw/VBDGzi-1 tag+i word NNS archedVBDMbX9?INMbX9ܿi-1 tag+i word JJ appointmentsVBZ/$ݿNNS/$?i-1 tag+i word RB stripsVBZS?JJSi+2 word templeNNSClNNPCl?i+2 word excitedNNNbX9JJ(\IN +? i word driverNNS+NNv/?JJ(\i-1 tag+i word NN manufacturingVBG(\?NN(\ſi+2 word parallelsVBNQVBDQ?NNPffffff?NNPSClɿNNSM i+1 word miceRBROnJJROn? i+1 word thatVBNWPMb`?VBGKFWjtNNSS㥛@EXv/NNPS?NNZd;O @JJS1ZdVBDjt?VBP?VBZh|?5@DTV-oPRP~jtRBMbRBRHzGPOS\(\?CC rh?INX9v@JJRX9v׿NNPQCDClWDT+JJsh|?MDS?UHv/ݿRP rh?VBˡEPDT(\@i-1 tag+i word : hispanicsNNPS"~j?NNS"~ji+2 word theoryJJGz?NNGzi-1 tag+i word `` engJJ}?5^INNP}?5^I?i-1 word attendedJJK7A`?NNK7A`i-1 tag+i word VB ripeNNѿJJq= ףp?NNS= ףp=VBNףp= i word elizabethNNPHzG?JJHzGi-2 word telephoneJJMbXIN5^I ?RP5^I NNS|?5^@VBG^I +NNɿi-1 tag+i word JJ attachVBP1Zd?NN1Zdi-1 tag+i word DT skiingVBGMbNN-?JJsh|?i word shorterJJR= ףp@JJ/$VBN|?5^NNX9vRBQi+2 word deputiesNNPS333333ӿNNS1Zd@NNPˡEi tag+i-2 tag NNPS ,VBDbX9?NNPS!rh?VBNX9vNNPx&i-1 tag+i word JJ kingVBG1ZdNNoʡ?NNP)\(?i+1 word stepsJJ7A`?RB~jtNN'1Zܿi+2 word voluptuousINGzRPGz? i suffix ond VBZ rhVBQ?NN@CDNbX9UHoʡJJ5^I INn?NNPS-RBL7A`?VBNHzGNNP!rhNNSuVLSn?i+1 word baronVBG r?NN ri+2 word disclosureINv/ݿRPv/?VBNjtܿVBDjt?i-2 word mahathirUH9vVBD9v?i+2 word exerptsVBPS㥛?VBDS㥛i-1 tag+i word NNS accuseVBh|?5VBP"~?INbX9i+2 word stationNNPoʡ?JJʡE?NNʡEͿVBDoʡi word embarrassmentNN~jt?JJ~jti-1 tag+i word POS parliamentJJˡENNPV-?NNZd;O?i-1 tag+i word VBZ veryRB r@NNSJJ/$RBR(\ݿ i suffix -47JJMbX9ĿNNPMbX9?i word favoredNNPsh|?VBN"~j?JJGz?VBD~jt?i+1 word waiteVBPZd;ONNPZd;O?i-1 tag+i word IN positionedVBDSVBNS?i-1 tag+i word JJS averageVBKVBPK?i-1 word empireVBZ/$?NNS/$i-1 tag+i word VBZ insistVB ףp= ?VBP+?NNS+VBN ףp= i word networksVBZDlNNSK7 @NNT㥛 i-1 word bidderVBZS?NNSS i pref1 wRBR rh?VBZCl?RBSlPRPSNNS(\?CDQVBDHzG@FWRQVBQ?JJRx&?VBGVBP'1Z?NNPq= ףp+NNPSv/JJ/$?WPrh@RPKNNZd; @CC5^I IN|?5^@JJS`" @WDT~jt@DTFxMDffffffVBN㥛 RB333333WRBS%@UHA`"i+1 word maxwellJJL7A`RBI +INʡE?i-1 tag+i word DT winnowingNNS?JJSi-2 word epilepsyVBZvVBPv?i-1 tag+i word IN newerNNSx&1JJRE?JJoʡi word projectsNNSK?NNPK7NNPSq= ףp?i+2 word walesNNSZd;NNPZd;?i-2 word stockbrokerVBNx&VBDx&?i-1 suffix sueVBDB`"?VBNsh|??INbX9?VBX9v߿JJSMbRBRMbX?VBPK7AJJ)\(VBZbX9?NNSbX9RB5^I ?NNvRBSK?PDT/$?i word americanaNNS-@NNP-i-1 word think DToʡNNPx&1?RPZd;RB)\(?NNZd;OWDT/$INx&1@NNPSx&1PDTFx?EX/$?JJNbX9 i-1 word goalWDT/$?IN/$ i word bkNNPZd;O?JJZd;Oi+2 word promoteVBG/$JJ/$?i-1 tag+i word JJ jewelNNʡE?JJʡEi-1 tag+i word NNP sheltersNNSx&1?NNPx&1i+1 word monday VBDGz?VBN%CVBPV-JJ/$NNPSx&1ԿVBGGz@RBZd;ONNzGʿIN rhѿNNPMb@i-1 tag+i word VBP accountedVBNx&?JJx&i-1 tag+i word JJ inventoryNNl?JJli+1 word drenchingNNM?JJVBD+i-1 tag+i word NN forgetsVBZm?NNSmi-1 word jazzyJJR+NN+?i-1 tag+i word -START- currencyNNZd;O?NNPZd;O i word whipsVBZPn?VBDPni+1 word discussedWDTL7A`?INL7A` i+2 word bogaJJQ?NNQ i+2 word tykeVBZm?NNPmͿi-1 tag+i word , revoltinglyRBB`"?VBDB`"i-2 word assemblingVBGV-?NNV- i word agendaNNSsh|?NNtV?JJCli-1 tag+i word CD officialJJ rhNN rh@i-1 tag+i word VBN monitoringNNPp= ףVBG(\NN㥛 ?i+2 word executedWDTrh|?INrh|i-1 tag+i word DT barnNN"~?JJ"~i tag+i-2 tag NNP JJSNNPS9vNNSK7JJ&1?NNq= ףp?i-1 tag+i word NNS urgingVBG rh?JJ rhi-1 tag+i word DT requirementNNv?JJv߿i-1 tag+i word JJ tougherVBN+JJR+?i-1 tag+i word PRP$ careerNNS\(\NN\(\? i word caraJJ|?5^NNP|?5^?i-2 word combatJJR(\?JJ(\i+2 word definedNNSK7A?NNܿNNPq= ףpNNPSK7i-1 word barbaraNNPSw/NNPw/? i suffix casNNP9vVBHzGNNPSʡE @NNStV޿NNtV?i-1 word having VBNX9v @RBR9vRPMVBDMbX9PDTZd;OJJRMb?NNS\(\RBy&1?NN"~jJJQi-1 tag+i word IN unileverNNP+?NN+i+2 word pittsburghVBZlNNOnӿNNP{Gz?i-1 suffix teeNNPjt?VBMbPRB(\NNd;OVBPMbP?WDTx?VBZ rhNNPSK7A`VBNS?WPףp= ?VBD7A`VBG(\?IN;On?JJNNS333333?i-1 tag+i word PRP$ livesNNSV-?NNClNNPSi+2 word rebuildingVBN-VBD-?i+1 word retailRPGzJJx&NN-JJSHzG?RBGz?VBGS?i-1 tag+i word VBZ upRB㥛 RPPn@JJRV-JJL7A`INm @i+1 word closingVBZSNNSjtJJJ +NNffffffPOSS?VBP{GzRBOn?IN(\@i-1 tag+i word JJ coupeNNS~jtNN~jt? i word cleverVBZSJJHzG@VBNvRBZd;OVBD#~ji-2 word possessingJJ rh?NN rhi-2 word inhospitableNNʡE?FWʡEi+2 word continentialNNK7?JJK7i-1 tag+i word IN restoringNN^I +߿VBG^I +? i-2 word sodaRB-?IN-i-1 suffix insVBGZd;O?NNPSK7A`?NNCl NNSKVBNQ?INMҿRBS㥛VBDQJJR^I +NNPx&1PRP$ +?VBPV-?JJB`"?DT(\?VBZsh|?RP%C?CC&1?RBR^I +?VB#~j@WDTX9vi-1 tag+i word RB deniedVBN$CVBD$C?i-2 word consortiumNNʡEJJR7A`?RBR7A`JJy&1@VBNOn!i-1 tag+i word -START- stateswestJJSA`"NNQRB#~jNNPS@i+2 word writeJJ;OnVBDS?INVBPSNNK7?i+2 word throughoutVBN{Gz?JJsh|?VBZp= ף?NNSp= ףNNP+NNx&1 @i word widenedVBNK7?JJmݿVBD|?5^ʿi-1 tag+i word NN winnersNNSףp= ?JJףp= i+2 word occasionallyJJ`"?NN`"i-1 tag+i word NN finishedVBD$CVBN$C?i-1 tag+i word JJ rosyJJM?NNMi-1 tag+i word RB centersVBZKNNSK? i-2 word tonyVBZ/$NNS/$?i-1 tag+i word IN campeauNNRQ @NNPRQ i-1 tag+i word -START- nestleNN{GzNNP{Gz?i-1 word railcarNNPSS?NNSS˿i+1 word bookingsNNM?JJMi-1 tag+i word TO importVBL7A`?NNL7A`i word ensuringVBG= ףp=?NN= ףp=i+1 word witty''GzPOSGz?i-1 tag+i word VBG theoriesVBZS㥛NNSS㥛?i word acquirerNNSMNNM?i-1 tag+i word IN revenuesVBZʡENNSʡE?i+1 word drugstoreJJSS˿JJQ?NNI +i-1 tag+i word PRP meanVBPS?VBDSi-1 tag+i word CC advertisedVBN$CۿVBD$C?i-1 tag+i word DT liveJJ+?NN+ i word laJJ(\VBZZd;NNPK7A @FWMb?VBDFxVBN)\(ܿi-1 tag+i word RP easyJJ+?NNS+i-2 word citedNN"~j@JJEVBN-?NNPSM?NNSMi-1 tag+i word IN restructuringVBGZd;NNq= ףp@JJEi word diabeticsVBZ9vNNSQ@NN|?5^i-2 word usefulNNOn?RBOni-1 tag+i word CC nextNNPSB`"JJQ?NNPQ?INx&i-1 tag+i word PRP filedVBNx&1VBDx&1?i word previewVBS㥛NNS㥛?i-1 tag+i word CD remainingNNnVBGn?i-1 tag+i word DT perfectlyRB+?JJ+i+2 word droveRBQINQ?i-1 tag+i word WRB cokeNN-NNP-?i tag+i-2 tag VB VBD VBNQJJZd;O?IN9vVBGZd;OǿRPMbX9ĿRBx&1ȿNNQ?DTMb?NNP?i-2 word flowingWDTMbINMb?i-1 suffix eds VBPV-?VBNNbX9?IN&1RPʡE?RBˡE NNh|?5?VBDS㥛RBRK7A`?WDTOnJJRK7A`JJq= ףp?NNP(\?i+1 suffix ark PRP$V-NNPS\(\VBDMbX9?VBN/$?RBK7A`INK7A`?VBZ~jtNNPQ?VBDlVBGSſJJRQؿNNMbP?POS~jt?i+1 word acceptedRBV-?WDTV-i tag+i-2 tag RP NNJJRʡECD+RBV-?IN+?VBZV-JJNbX9NNS?i-1 tag+i word VB aidVBX9vNNK7?RBSi-1 tag+i word NNS manageVBffffffVBPV-?VBDEi-1 tag+i word -START- calledVBN(\?VBD(\ݿi word scamperVBPHzG?VBNHzGٿi word sweetnessJJ/$NN/$? i suffix reoVBv/NNS5^I NNK7?JJM?VBD%Ci-1 tag+i word NN advertisingNNPˡE?VBGvNNL7A`?i-1 tag+i word JJ racehorseNN&1?JJ&1i word corruptJJ|?5^?VBNK߿NN+NNPB`"?i-1 word invitesJJClNNS%C?RB/$NNRQпi-1 word newlyINX9vVBNzG@JJ rh VBD/$i+2 word cellularJJNNPsh|?VBNp= ף?i-1 tag+i word IN programmedVBNJJ%C?VBDV-ڿi-1 tag+i word NN tribunalNN+?IN+i-1 tag+i word IN soloJJK7A`NNS"~jNNx?i-1 word privatelyVBN(\ @JJ)\(VBDi-1 tag+i word , publishingNNʡE@VBGʡEi-2 word minivansNNPK7A`NNPS&1NNSX9v?i-1 tag+i word CC steerVBuV?NNSʡENNףp= i suffix WarNNP-?VBPClNNPSS i word tenorNN!rh?JJ!rh̿i-1 word transportsDTB`"?JJB`" i-2 word taxiVBDOn?VBGK7AؿNNK7A?INOni-1 tag+i word NN laggingVBGy&1?JJy&1i+1 word authorityVBDZd;ONNP+?NN+VBNZd;O?JJT㥛 ?i-1 tag+i word RB confinedVBN rh?VBD rhi-1 tag+i word DT souringJJx&NNx&?i+1 word consultingNNoʡ?JJoʡ i word tunaNN㥛 ?RBףp= INK7i+1 word garmentNNP\(\?JJ\(\߿i-1 tag+i word NNP scotNNPS}?5^INNP}?5^I?i-1 tag+i word VBP offeredVBN rhVBD rh?i+1 word rillingVBy&1ܿNNPy&1?i-1 tag+i word VBD justifiedVBNOnJJOn?i-1 tag+i word . nicholasNNPtVNNStV@i-1 tag+i word CC defaultedVBNp= ףVBDp= ף?i-1 tag+i word JJ ruleNNS+NN+?i-1 tag+i word VBG chemicalNN-?JJ-i-1 tag+i word JJ busyNNV-߿JJV-?i-2 word targetingNN-@JJ-i-2 word ounceRBx?VBPxJJ~jt?NN~jti+1 suffix andVBZrh|NN?5^I ?JJR-@VBGffffffEXS㥛IN|?5^VBPV-FWʡE?POSʡE?NNPJ +?CC"~jRBRK7A?MDJJ"~?VBDjtWDT-DTS㥛@PRP"~VB~jtWRB%CPRP$K7A`?NNS;On@NNPSCl?JJSjtĿVBN&1?''p= ףRP$CRB rh?CD㥛 @i word exceedsVBZS㥛?VBPh|?5JJSi-1 tag+i word -START- bondsNNPB`"VBZV-ϿNNSzG? i-2 word cabVBGzVBPNNq= ףp?i+2 word concertsVBPMbNNMb?i-1 word fairyVBNX9v?VBDX9vi-1 tag+i word IN sweetnessNN/$?JJ/$i-1 tag+i word JJR cyclicalJJ(\?NN(\ i-1 word iraVBP/$NNSsh|??NN/$?NNPsh|?i word healthcareNNPx?NNx i+1 word flewNNHzG?JJHzGi+1 word literallyVBPq= ףpRBq= ףp?i-1 tag+i word : retiresNNSsh|?VBZsh|??i+2 word emergedNNl?JJli-2 word sightseeingDT+?RB+i word braumeistersNNPS?NNSi+1 word followingJJv/IN?5^I NNPK7A`NNPSK7A`?NNʡE@VBD"~?VBNzG?i-1 tag+i word TO noneVBClNNCl?i+1 word postsNNGzVBN'1Z?JJ5^I ?#i-1 tag+i word -START- institutionsNNSQ?NNPQݿi-1 tag+i word VBP fasterJJR~jt?RBR~jti-1 tag+i word DT minicarNNuV?JJ~jtFW- i word sitesVBX9vNNSX9v? i suffix erbNNrh|?VBNX9vJJZd;i-2 word shapedJJh|?5?NNP+VBI +?i-1 tag+i word PRP$ earnestJJSw/JJQ?NN㥛 i-1 tag+i word -START- shiseidoNNPuVNN/$?RB(\i-1 tag+i word IN pravdaNNHzGNNPHzG?i word noticedVBN~jt?JJ~jt i word mentalJJy&1?NNy&1i-1 tag+i word IN searsNNPS1ZdNNSˡE?NNPv/ݿ i+1 word barsNN(\?JJ(\i word muscovitesNNPSFxNNSFx?i word developerVBPClNN{Gz@JJRx&ٿJJNbX9VBNi-1 tag+i word NN publicNNoʡ@RBJJ$Ci-2 word addisonJJ?5^I ?NN?5^I ҿi-1 tag+i word -START- trifariNNQRBffffff޿NNPK7A`?i+2 word erithmaticVBGGz߿NN"~j@NNPxi-1 tag+i word NNP antiquitiesVBZ|?5^NNS|?5^?i-1 tag+i word IN machinistsNNPSd;OοNNS~jtNNPMbX9?i-1 tag+i word VBZ decidedVBN r?VBD ri word sufferedVBZx&1VBNQJJ;OnVBDףp= @i-1 tag+i word IN whimsyNN333333?JJ333333i+2 word seeksNNEJJ%C̿NNP+?i-2 word influencedVBNp= ף?JJV-NNPB`"? i suffix ntiVBZNNS"~j?NN"~jNNP?i-1 tag+i word DT relatedVBNJJ?i tag+i-2 tag RBS CCVBGl?VBN/$޿JJrh|Ͽ i word ebbsVBZ(\?VBZd;ONN|?5^ i word culpaPRP-NNP-?i+2 word advanceRPZd;?JJGzǿNN;OnVBDV-?VBN= ףp=?RBZd;NNP?i-1 tag+i word NNP firmsNNPnNNSn?i tag+i-2 tag NNP WRB VBQ?NNPSZd;NN-˿VBZV-@NNS(\MD-VBDV-JJlNNPʡERB)\(?i+2 word taxpayersVBZh|?5NNSh|?5?i-1 tag+i word , laundryJJZd;ONNZd;O? i word couldMD㥛 ?NNP㥛 i+2 word conglomerateNNPS)\(NNP)\(?i-1 tag+i word DT congressmenNNPSQ?NNSV-?JJlNNPE i-1 tag+i word PRP$ transylvaniaJJB`"NNPB`"?i word drynessNN}?5^I?JJ}?5^Ii+2 word oaklandNNB`"?POS +VBPoʡUHQ?RB+VBZ +?NNSB`"i-2 word starsNNPSZd;OǿWDT/$VBZS㥛?DT/$?NNSS㥛NNPZd;O?i-1 tag+i word IN cateringVBGˡENNˡE?i-1 word outlawedJJZd;ONNPZd;O?i-2 word canadaVBGw/ԿJJ/$޿NNV-?VBNʡE?RB#~jINRQDTRQ?NNPV-? i word rashNNPSS㥛NNJ +?JJJ +NNPS㥛?i+2 word alterVBףp= ?VBPףp= i word freezerVBPV-ݿNNV-?i+1 word agricultureVBGV-?JJR@NNV-VBi-1 tag+i word NNS exhaustedVBN(\VBD(\?i-1 tag+i word VBG ufosNNPS(\NNS/$?NNP rhi-1 word ticketVBZQVBG~jtJJ1Zd?NNI +INQ?i-1 tag+i word VBG menusNNS^I +?RB9vNN +οi-1 tag+i word IN heavyJJtVNNP(\пNN7A`?i-2 word redingNNPxVBGGz߿NN"~j@i-1 tag+i word NNP hearsVBZ'1Z?NNSv/VBD ףp= ߿ i word toilVBZ+VBP+?i+1 suffix ynnNNClNNPCl?i-1 suffix ata NNPSHzGVBD^I +׿VBN(\VBPMbJJV-NNS+N@NNPA`"?VBNbX9RBd;O?NN/$@INˡEVBG= ףp= i suffix HISNNPS\(\NNPSPRP$Pn@i-1 tag+i word RB droveVBPClVBDCl? i word denyVBP^I +?INZd;OVBZlVB9v?NNV-ͿVBD ףp= i word divestedVBNK߿JJK?i-1 tag+i word VB comfortNNMb?NNPMbi-2 word hurricaneDTx&1ܿPDTx&1?i+1 word backgroundJJ rh?VBףp= RBoʡNNZd;?i-2 word roughlyNNSQ˿JJQ? i word beNNPZd;OVB|?5^@VBPsh|?ݿINʡEVBD= ףp= i suffix UNTNNSMRBClJJQ?NNP~jtNN?5^I ?i-1 tag+i word WP countsVBZh|?5?NNSh|?5i-1 tag+i word RB lacklusterJJRClJJCl?i-1 tag+i word NNP originatedVBPS㥛?VBDS㥛 i word saladNNS;OnڿNN;On?i-1 tag+i word `` enragedVBNw/JJuV@FW"~i-1 tag+i word TO beginVB(\?NN(\i-1 tag+i word NN tacticsNNS+?NN+i-1 tag+i word CD bagsNN= ףp=ʿNNS= ףp=?i-1 tag+i word VB looseNNbX9޿RBjtĿJJL7A`?NNS rhi-1 word raisingVBN rhRBR7A`RBMb@JJR7A`?DTMbXJJm@NN{GzPDT(\տi-1 tag+i word IN removingVBGRQ?NNRQi-1 tag+i word NNP forIN rh?NNP rhi-1 tag+i word CC bouncingNN-VBG-?i-1 suffix mon NNCl?RBJ +IN5^I ?NNS-VBKNNPST㥛 JJ= ףp=ڿVBDB`"?VBNJ +ѿNNP^I +@i-2 word temperaturesVBDl?VBPDlJJRZd;?RBRZd;i-1 tag+i word NNP patNNPZd;O?VBDZd;O׿ i-2 word djiaJJ(\?NN(\i-1 word limitingJJZd;ONNZd;O?i+2 word urineVBKNNS㥛?JJQi-1 tag+i word WP moreRBR{Gz?JJR{Gzi-2 word aidingVBG(\?NN(\i-1 tag+i word IN cardiffNNSZd;NNPZd;?i word counterculturalNNP+JJ+?i-1 tag+i word NNS prevailedVBN(\VBD(\?i-1 word modelNN ףp= CDl?VBP"~JJ㥛 ?VBS㥛VBGʡE?RBS㥛i-1 tag+i word , consideredVBD$CVBN$C?i+2 word bellsouthVBZq= ףp?NNSq= ףpJJnVBGn? i+1 word upNNPSxVBGh|?5?JJQINzGVBD~jt @VBNJ +@RP/$DTQVBZ/$ @VBJ +@NNV-CC#~j?NNS/$RB%CVBPJ +@WDTvNNPQi-1 tag+i word CC ghostsVB㥛 NNS㥛 ?i-1 suffix amnJJ~jt?NN~jti+1 word flavorsJJ/$?NN/$ i word etCCq= ףp?NNV-JJX9vFWbX9?i-1 tag+i word VBD widerRBR\(\?JJR\(\߿ i-2 word jebVBNS?VBDSi word pipelinesNNPS`"?NNS/$NNPʡE? i suffix 5-1CDQ?JJQi+1 word burnsVBZ-VB!rhԿJJ?NNV-? i word bluesNNPS#~jNNSS@NNMbNNP/$ٿi+2 word monkeyVBNʡE?VBDʡEi+1 word grazedWDT?5^I ?IN?5^I i-1 tag+i word NNP judgesNNPSX9v޿NNPX9v?i-1 tag+i word DT peerlessJJ+?RB+i-1 tag+i word NN amountsVBZn?NNSni-1 tag+i word VB racketeeringVBGʡENNʡE?i+1 word windowsNN ףp= JJS ףp= ?i word hulingsNNPSPnNNPPn?i-1 tag+i word CC raiseNN?JJK7VBx&1?VBP rhi-1 tag+i word DT wealthierJJRE?JJEi-1 word geeksNNSQJJRFx?RBQ?RBRFxi-1 tag+i word RB satisfyingVBGbX9ֿJJbX9?i-1 tag+i word -START- veniceNN/$NNP/$?i-1 tag+i word NNS wellVBPvRBv?i-1 word masterVBG-?NNˡE?JJMbi-1 word hardyRBx&1̿IN$CNNSʡE?NNPZd;O?NNPS(\NNʡEVBPʡEi word stitchesNNSFx?JJFxi word proceduralJJ9v?NN9v i word mixed NNS|?5^NNPS7A`NNtVJJ-阮!@VBZlVBD7A`VBNʡERBRףp= JJRtVi+2 word demonstrationsRBSHzGѿJJMbX9JJSbX9?RB!rhVBGMbX9?i-1 tag+i word VB rentVB|?5^@NN|?5^i+2 word ebensburgNNSEJJjtNNFxVBN}?5^I@i+2 word listenVBDQ?VBNQi-2 word revealsNNtV?NNPtV i word rowingVBG/$NN?JJDli-1 word elegantlyVBZ-?PDT-i-2 word north NNK7A`@RBRQؿVBZX9vVBGzNNPS+RPRQ?JJ1Zd?VBG ףp= NNSX9v?NNP(\@ i suffix .R.JJA`"NNPx&?NNSGzNN"~i-1 tag+i word JJ singingVBG;OnNN;On?i-2 word patriarchNNPA`"?JJA`"˿i-2 word completeJJPn?NNP rh?VBP/$NNsh|??i+1 word dullishVBN/$VBD/$?i-1 word insistedWDT-INMbDTV-?i-1 tag+i word VBZ completedVBNy&1?JJy&1 i word flewVBZ ףp= VBx&1VBP㥛 NNGzVBDGz@ i-1 word laidPRPV-ǿRB1Zd?INHzGPRP$V-?RPni+1 word evidence RBv/JJx&?VBDK7?VBNzGINw/ĿVBZ rh?DTffffff?VBGy&1NN\(\i word pertussisNNS rNN r? i suffix vel VBD9vCCOnRBRv/VBNq= ףpRB|?5^JJOn?NNJ +@FWX9vVBP r@JJRClNNSQNNP +?i+2 word comparableVBNrh|NN|?5^NNS!rh?i-1 tag+i word PRP$ hopeNNSzGNNzG?i-1 tag+i word TO developmentsVBlNNSl?i+1 suffix stsJJR-?VBGFx?JJPn@FW"~jCDʡENNPSClVBP|?5^?VBZq= ףpտPRPGzJJS r@VBDw/DTNbX9ȿMDX9vNNSMbNNPv/VBx&1PRP$Gz?VBNX9vWDT(\?NNK7 @RBZd;CC rhRBS + RBRJ +INJ +i-1 tag+i word VBZ quitsVBZ rh?NNS rhi-1 tag+i word NNPS wantVBP333333?JJ333333i+1 word henriVBPMbXNNMbX?i-1 tag+i word DT minorsJJClNNSCl?i tag+i-2 tag NNP RBSJJMb?NNMbi+2 word coloradoNNSClNNCl?i-1 tag+i word PRP electedVBNMbX9?VBDMbX9i+1 word swimmingVBNbX9JJS?NNOni+2 word failureJJ+VBN+?i word epinalersNNPSS㥛?NNSS㥛i word environmentallyRBʡE?JJMbNNx&1̿i-1 suffix twaJJw/?NNw/ܿi-1 word rocketingRPʡERBʡE? i-1 suffix doRBE@VBNZd;OVB~jt @NN}?5^IIN#~jVBZ= ףp=NNP`"NNSE?JJRZd;@RBRS㥛RPCl?VBP|?5^JJJ +WDT/$DTS㥛@i+2 word surgingNNSS㥛?NNS㥛i-1 tag+i word CC dandyVBMbJJMb?i word facilitiesNNSuVNNPuV?i-1 tag+i word CC sentVB}?5^INNSVBDCl?i-1 word markingJJV-NNPV-?i-1 tag+i word DT pertinentJJbX9?NNbX9i-1 tag+i word CC minusCC`"?JJPnNNq= ףpi-2 word capitalismVBjtNNjt?i-1 tag+i word VBP referredVBN-?JJ-˿i-1 suffix rns RP333333?RBx?VBPClDTuVͿNNP rh?VBףp= @NNoʡWDT}?5^IJJy&1|?IN&1i+2 word paschiNNPV-?RBRV- i word seatNNSSNN rh?VBD`"޿ i word agreesNNSL7A`NNKVBNd;ORBZd;INT㥛 VBZv@ i suffix bbyVBNGzRBh|?5οNNP@VBGz?JJSNN|?5^?VBDOnCCS㥛i+2 word petitionVBNQNN\(\?VBDʡE?VB/$NNP\(\ i+2 word cos.JJHzGNNPHzG? i word biggerJJR(\?NNP(\i-2 word supportingNNPSK7ٿVBG-NN-?NNPK7?i+1 suffix rstVBDV-?PDTV-RBRMRBV-NNS'1Z?JJ&1VBN7A`?IN1Zd?DTQVB= ףp=ڿNN|?5^ѿPOSsh|??VBPjt?VBZsh|?i-2 word vowingJJMbX9NNS㥛VB"~j?i-1 tag+i word NN minimumNNSp= ףJJp= ף?i-1 tag+i word VBG asleepNNS5^I RB|?5^?IN ri word abolishVB-?JJ-i-1 tag+i word NNP hotelNNMbпNNPMb? i+1 suffix okNNd;OVBNV-JJ-޿VBDFx?RBd;O? i-1 word haltVBGCl@NNCl i-1 word thatVB#~jԿRBRsh|?JJRJ +VBPClg@JJjtDT;OnPOSv/WPQ˿RB~jt?NNPZd;ORBSV-PDTjt?NNSV-CDjtPRPX9vINS㥛PRP$+?NN/$?CCˡE?VBGZd;?VBNB`"NNPSI +޿EX#~j?JJSMbX9?VBDMb@WDTS㥛VBZJ +@WRB7A`i-1 tag+i word JJ drenchingVBGNN?i-1 word treatmentJJZd;@VBNHzGNNVBD rh i word snappyJJ~jt?NN~jt i+1 word be MD㥛 ?WRB;On?NNDl?DTMVBSRBQ @CC^I +?RBR!rhEX r?JJL7A`堿VBZ-NNP/$i-1 tag+i word JJ corruptionNNS+NN+?i+2 word winningVBG ףp= ?NNx?JJ'1Zi+1 word rhetoricJJ9v?NN9vi+1 word development VBDDl?JJClgIN/$VBx&1NNPSzGCDx&1ܿWDToʡVBZ/$DTl?NNPI +@NNDl@VBNbX9i+2 word investingNNS/$?JJ-NN/$ٿVBD+?VBN rhݿRBS?i-1 tag+i word PRP hadVBDS?VBZV-VBP ףp= i word lead VBDx&RB#~jVBZ/$NNPˡEVBm@JJS?VBNX9vRBRVBPT㥛 @NNCl@JJS|?5^i-1 tag+i word DT handlingVBGV-׿NNV-?i+1 word studentJJ= ףp=?NN= ףp= i-2 word ifVBDZd;O@POS)\(?RP?VBZ rh@VBX9vRBףp= NN㥛 ?RBRv/NNPMDzGNNPSS?JJ(\JJRp= ףIN&1DT|?5^VBPMb@VBGGzFW333333@NNSV-VBNRQi+2 word ghanaRBlINV-?JJZd;?i+1 word commissionJJK?NNMNNP(\µ?NNPS+?NNS +οi-1 tag+i word NN budgetedVBNZd;O?NNZd;O i suffix ONSNNSDl?NNNNPHzGi-1 tag+i word : borrowVBA`"?NNZd;߿IN-i-2 word envelopesVBNCl?VBDCl߿i+1 word preppyJJRERBRE?i-1 tag+i word CC faultsVBPvNNSv?i-2 word youngstersVB㥛 ?NN㥛 i word algerianJJ ףp= ߿NNP ףp= ?i-1 tag+i word NNS enactedVBN ףp= ?VBD ףp= i-1 tag+i word DT computerizedJJ"~ڿVBN'1ZNN?i-1 tag+i word NN chapterJJ(\NN(\?i+2 word controlsJJ#~jܿRPoʡ?VBNV-NNq= ףp@INoʡi+1 suffix eau VBN~jtx?CDK7VBP`"NNPS ףp= ?NN+?NNS-NNPtV?JJK7JJR?5^I ҿi+2 word promotionalVBMbXVBPE?NN7A`?JJ7A`CDRQi word flippingVBG-?NN- i word fierceJJ;On @NN;On i+1 word additionalVBD1Zd?VB!rhܿVBPCl?NN1ZdJJZd;Oi-1 tag+i word VBP punyJJw/?NNw/i+1 word clevelandJJnINn?i-1 tag+i word JJ liberationJJp= ףпNNp= ף?i-2 word sovereigntyRBQ?JJQi tag+i-2 tag . LSVBy&1?JJy&1̿i-1 tag+i word NNS pendingVBGy&1JJy&1@ i+1 word wereEX$C@JJ(\?NNS@NNMb?VBD= ףp=PDTV-IN'1ZVBGSNNPS'1Z @CC㥛 VBMbX9VBPh|?5WDTV-@VBZ- NNPT㥛 FWʡERBFxVBNq= ףp?CDl?DT9vʿPRP$㥛 ?i-1 tag+i word `` forgivenVBN|?5^?RBMbPJJtVi-1 tag+i word , preparedVBNq= ףpVBDq= ףp?i-2 word swissJJ&1?VBZNNSMbX9?NNP&1ڿNN333333ӿVBP(\ڿi-1 suffix aelJJjt޿JJRGz?NNSQNNPSClVBDh|?5?INn?RBRGzVBNh|?5RB)\(̿VBPX9v?WDTnڿVB#~jNNMbpNNP1Zd @i-1 tag+i word DT exodusNNS(\NN(\?i-1 tag+i word IN dampingVBGx&?NNx&i-1 tag+i word VBG hardRB"~?JJ"~ҿi-1 word airlinePOS~jt''~jt?VBZ`"NNS`"?NNP +?NNPS +NN rhVBD rh?i+2 word accusedNNPX9vNNPSX9v?i+2 word syndicationJJRK7?RBRK7i+1 word stemsNNK7A`?JJK7A`i word opulentJJjt?NNjti word tendersNNPx&NNSx&?i-1 tag+i word RB cutsVBNK7VBZClNNSV-?i-1 word airplaneMD +NNS +?i+1 word libraryJJ'1Z?NN'1Zi+2 word smatteringVBX9vϿVBPX9v?i-1 tag+i word WDT needsVBZDl?NNSDli+2 word ironicVBNClVBDCl?i-1 tag+i word JJ antelopeNNS$C?IN$Ci-1 tag+i word VBD feltVBNl?JJl i word eg&gVBV-NNPV-?i-2 word settlementNNSlNNzGVBD~jtȿVBNlVBPzG?JJjt?VBZl?i tag+i-2 tag JJ ,VBp= ףVBD +?JJRI +?PRP-NNPS/$@RP+?FWK7A`?INn?WP ףp= ?VBZSNNPCl˿NNzG?NNSˡEVBP$C?VBNx&1ȿVBG rȿJJxRBRMbX9?RBX9v޿CDL7A`?i word accruedJJK7A?NNPq= ףpVBN-@RBp= ףVBDMbi-2 word moldyJJjt?NNjti-1 tag+i word DT hundredJJZd;VBNQNNnCD-@ i+2 word peckDTq= ףpNNPx&?NNSq= ףpRBRL7A`INq= ףp? i-1 word red NNPS+ۿVBG(\JJ"~?NN`"@CDQVBPClINx&1NNSK7ɿNNPMbXi-1 tag+i word VBZ sincereJJ;On?RB1ZdEXFxi+2 word pickupVBZA`"?VBDA`" i word least PDT{GzJJRX9vVBN/$VBZnNNrh|RBS;On @JJS!rh#@RBnINJJQi-2 word shardsNNl?JJli tag+i-2 tag VB TORB +@NNS+NNPrh|?CD)\(?DT!rh?RP +?INv?JJSJ +?JJRV-UH/$?VBP#~jVBV-CC)\(PDTMb?WP&1?NN&1?RBSJ +NNPS$CFWw/?VBZw/JJMb?PRPx&?VBNw/VBDV-VBGbX9RBR/$?PRP$ClWDT}?5^Iܿi+2 word desksNNSZd;O?JJZd;Oտi-1 tag+i word , seemedVBN"~j̿VBD"~j?i+1 word influencesJJ7A`?NN7A`i-1 tag+i word , serveVB= ףp=?VBPMNNvi+1 word cascadeVBNZd;?JJZd;i-1 tag+i word IN endorsingNN%CVBG%C?i+1 word rankedNNS^I +NNP^I +?i+1 word engineeringJJL7A`ؿNN+ۿCD(\NNP333333@NNSK7A`i-2 word insofarVBGd;ONNd;O? i-2 word userJJʡENNPʡE?i-1 tag+i word NN rolledVBNNbX9?VBDNbX9i word humilityNNv/NNPv/?i-1 tag+i word VBN renamedVBNNbX9?JJA`"ۿNNPףp= i word moonieNNSQNN)\(@NNP(\i-1 tag+i word NN swapsNNS{Gz?VBN{Gzi-1 tag+i word PRP$ premiumJJ/$?NN/$i-2 word smallestJJS{Gz?JJ{Gzܿi-1 tag+i word DT mncNNPSnNNPn? i-1 word fauxNNSV-?NNZd;OFWѿi-1 tag+i word DT tailNNMbJJMb?i-1 word unsuccessfullyVBNA`"VBDA`"?i-1 word perchlorateVBˡENNˡE? i+1 suffix } NNSq= ףp?VBDl?JJsh|?ſNN= ףp=@JJRlPRPSINL7A`?VBZJ +NNP= ףp=VBDy&1?VBN-ƿRB333333ÿDTV-i-2 word impliesNNSNNSS?i-1 tag+i word ( editorialNNV-@JJV-i-2 word westinghouseJJ%CRB"~ڿIN"~?VBPDlNNv?i-1 tag+i word IN ultravioletJJh|?5?NNh|?5i+1 suffix say VBPףp= ?DTI +?NNP{GzVBKRB/$VBDNbX9RBSV-ڿNNSK7A@NNK7JJSV-?JJ+VBZPni-1 tag+i word NNS retainVBZV-VBPV-? i-1 word l.a.NNT㥛 ؿNNPT㥛 ?i-1 tag+i word , freeingVBG?JJٿi-1 tag+i word DT soullessJJR(\JJ(\? i-1 word go RBB`"@JJR(\VBGuVNNSd;O$RQJJ|?5^?INuV?VBMb?RP#~j?NNFxRBRjt@VBPMbVBNuVi-1 tag+i word JJ twistVBN$CNNS?CDx&1 i-2 word told WPuV?WDTffffffJJS㥛NNSmNNPS(\RBA`"ӿNNv/ݿINˡE?DTNbX9NNPl@i+2 word wrightingNNx?NNPx i word toniNNPx&1?CDx&1i-2 word semanticsVBGsh|??NNsh|?i-1 tag+i word -START- murderNNL7A`?JJ$CNNP"~i word adjacentNNHzJJHz@i-1 tag+i word NN capableJJ|?5^?NN|?5^i-1 word worldwideNNPZd;?NNPSZd;VBG+?NN+ i+1 word fadNNV-?JJV-i-1 word proposalsVBP'1Z?WDTE?INEпVBMbX9VBDSVBN5^I ?i-1 word prevalentINl?RBli-2 word stillPRP$RQVBD㥛 RBR(\ݿRBS㥛?IN#~j?NNPZd;?RPzGNN+VBP+?CDQ?JJ{Gz?PRP~jtDT?PDT;OnڿVBNS㥛NNSL7A`JJRQi-1 tag+i word : confidesVBZOn?NNSOnۿi-1 word warmedRP`"?IN`"i-1 tag+i word NNS drawVBZ rпVBP}?5^I?VBDRQi-2 word impactVBGQ?NN333333?UHZd;O׿INOnӿDTOn?NNPZd;i-1 tag+i word -START- mergerRBRRQпNN^I +?NNP5^I  i word saidVBSNN+VBD@CCw/VBN+JJv/NNP㥛 i word leasedVBN-@NN^I +VBD1ZdJJGzi+1 word vehicleJJbX9RBjtNN"~?NNP~jti-1 tag+i word NN thoughtNNV-ڿVBDV-?i word installationNN(\?NNP(\пi-1 tag+i word `` designsNNSFx?RBFxi-1 tag+i word VBN concreteNN= ףp=?JJ= ףp=i word marvelsNNPSZd;ONNSZd;O?i+1 word favoriteRB+JJ/$?NN/$PRP$+?i-1 tag+i word JJ budsNNS}?5^I?NN}?5^Iܿi+2 word puristsVBZʡE?VBDʡEi-1 word altogetherRBRMb?RBMbi-2 word ammoniumVBˡENNˡE?i+1 suffix epsINK7NNS"~NNPSS㥛JJV- @NNHzGWDTK7?RB~jti-1 tag+i word IN taxationNN|?5^ʿNNP|?5^?i-1 tag+i word VBD payoutsVBZףp= NNSףp= ?i word facsimileJJʡE?NNʡE i word unwiseJJףp= ?RBףp= i word expeditingVB+VBG+?i+2 word reinstatedNNGz@RB"~jJJʡEi+1 word mountingNN"~j?NNS"~ji-1 tag+i word NNP millsNNPSx&?NNPx&i-1 tag+i word NNP bankingVBG ףp= NN ףp= @i-1 tag+i word -START- severalNNPV- RB+NN/$CD&1JJ&1@i+1 word becomingINn?RPZd;O?RB +NNP\(\i-2 word ballyVBP?VBDi-2 word explanationVBN"~?VBD"~i-1 tag+i word JJ therapyNNSjtNNjt?i-1 tag+i word JJ crowdNNSQNNQ? i+2 word seaRPQ?VBGZd;NNZd;?RBQ i+1 word toniVBZ)\(?NN)\(i word unknownsCDClNNSCl?i-1 suffix pinRBV-?IN7A`RP7A`?NNSV-i+1 word toolsNNJ +@JJM?VBGJ +VBNMi+1 word mainframeVBZoʡJJ&1?NNPSMbX9POSoʡ?NNV-߿i+2 word separatelyNN"~jNNP"~j?DTClINV-WDTQ?i word governmentsetVBNJ +@JJClNNMbX9i-1 word tateisiNNPX9v?NNPS5^I NNSQi-1 tag+i word TO honorVB7A`?JJQNN\(\߿i+1 word strongRBT㥛 VBDZd;O?VBNMb?JJʡEݿVBZMb?NNS+i word refinedVBNV-?JJsh|??VBD|?5^i+1 word staffersNNS/$NNP{Gz?NNPSy&1VBGʡE?NNffffffVBDsh|?VBNsh|??JJV-?i-1 tag+i word IN euphoriaNNS-NNFx?NNPGz?i-1 word seagramVBZZd;O?VBDZd;Oi-1 tag+i word VBZ overwhelmingVBG(\JJ#~j@NNʡEi-2 word maneuverJJNbX9?RBNbX9i-1 tag+i word , barleyNNPS?5^I NN?5^I ?i+2 word remarkable''KVBZPnпNNSB`"ٿPOS= ףp=?i-1 tag+i word DT totalJJ ףp= ?NNzG?JJRSNNSZd;i-1 tag+i word RB attributesVBZ7A`?NNS7A`i-1 tag+i word `` yesLSףp= ӿNN333333UHrh|?RB7A`@NNP$CNNSKi-1 tag+i word NNP practicesNNPSPn?NNPPn"i-1 tag+i word -START- daffynitionNNK7NNPK7?i+2 word descriptionVBZ$C?VBD$Ci-1 suffix areVBNJ +@DTvNNS`"RBRʡE@IN?JJR"~jVBP= ףp= FW rh?VBClӿWDTNbX9RP rhCC"~PDTPn?RBSRQ?EX/$VBGV- @VBD rhJJK7A`@VBZsh|??NNOnRBV-տNNP-?NNPSZd;?JJSNbX9ؿSYM9v?i+2 word trailNN;OnJJ;On?i-1 tag+i word RB undercoverRPZd;JJZd;?i+2 word commissioningNNS333333NN333333? i word cadgeVBPFx?NNFxi+2 word suitorsWDT5^I IN5^I ?i-2 word parentsNNSQVBNA`"NNQ?VBDA`"?i+1 suffix extJJR{GzܿNNPMb?VBGn?JJK7AпVBD㥛 ?VBP/$?INQ?RPx&1?NNClWDTPnPOS+DTˡE?VBʡERBRzGҿVBNˡE?VBZ +NNPSmͿNNS/$?RBjtܿ i-2 word --NNPSV-?PRP${GzVBGClVBN rؿPRP ףp= ǿRBS?INd;O?MDFx?JJRHzG?VBPx&1?VBZ%CRP ףp= ?FW\(\POSw/?VBDRQ?DT/$?CC~jt?RBRHzGJJS rhWDT rh?JJv@NN(\?NNSDlNNP5^I VBʡECD rhi word outcomeNNS㥛 NNzGa@JJʡENNPK i word richJJ&1@NNx&VBNZd;ORBZd;VBZSNNPEп i+1 suffix duVBZK?NNSKNNCl?JJCli-1 tag+i word PRP loseVBPS?VBDSi word convictionsVBK7ANNSK7A?i-1 tag+i word NNP drillingVBGB`"NNB`"? i+2 word overDT%CNNS㥛?VBD?5^I ҿPOSMb?JJRn?VBPMbX9?WDTA`"@INnCDw/?NNSh|?5?JJ%C?PDT"~jRBNbX9?RBR7A`VBDlVBG5^I CC rh?VBNQſVBZFxNNPd;Oi+2 word mainframesVBB`"NNB`"?WDT|?5^JJX9v׿IN|?5^?NNPX9v?i+1 word lendersNNT㥛 JJnINʡEVBZd;O?NNSHzGѿNNPS㥛?i+1 word performingJJSV-?RBSlJJK7A`i-1 tag+i word CC painfulVBX9vJJX9v?i-1 tag+i word IN supportNN+?JJ+i-1 tag+i word RB westernJJ%C?NNP%CԿi-1 tag+i word DT creationistNNq= ףpJJq= ףp?i-1 tag+i word DT ignominiouslyRB= ףp=?NN= ףp=i word longtimeNN-RBL7A`JJsh|?@NNSCl i word lindaVBPZd;ONNSK7NNP$C?i-1 word towerRP1ZdIN1Zd?i+1 word adjusterNNRBRx&1JJv/NNSCl?NNPx&1?RBx&1i-1 tag+i word NNP officialdomNNPSClNNCl?i+2 word anchoredJJSMb?RBSMbi-1 tag+i word NNP dealingsNNS'1Z?NN'1Zi-1 tag+i word NNP hobbyNNS?NNPSi-2 word succeedsNNPS㥫NNSd;OFWd;O?VBGffffff?NNOni-2 word scanningNNSʡE?NNʡEi word particularRB~jt?NNSZd;JJʡE @NNS㥛 i-1 suffix reiNNQ?NNSQi+2 word passionatelyVBQVBPx&1@VBDS i suffix -75JJCD?i word pollinateVBPx&?VBD}?5^IVBZV-VBףp= ?i-1 tag+i word IN worstJJS1Zd?NN1Zdi-1 suffix inaNN9v?VBD}?5^I?VBNQ˿VBZX9vNNSX9v?NNP?VBGX9v!i-1 tag+i word -START- emigrationNNS?NNPSi-1 tag+i word `` solelyRB-?JJ-i+1 word publicVBP)\(?IN!rh?JJS㥛@VBNHzG?JJR/$NNPd;O޿RBS+?VBDuVRBR/$?VBZZd;O?NN)\( VBGFx?JJS+RB!rhܿVBq= ףpͿi-1 tag+i word NNP meansVBZffffff?VBtVNNSX9v$i-1 tag+i word CC property\/casualtyJJjt?NNjt i-1 word anyVBNS㥛JJR|?5^?VBGʡENN?CDX9v?VBZ-RBRK7VBPV-JJ9v@RPx&1RB?VBD1ZdIN/$NNP +?VB?NNSjt?i-1 tag+i word RB benefitedVBNv/VBDv/?i-1 tag+i word IN properJJOn?NNPOni-1 tag+i word NN filingVBGK7NNSx&1NNZd;O?i-1 tag+i word RB votesNNSB`"?JJB`"i-1 tag+i word IN attractiveNNL7A`JJL7A`?i+1 word policeVBNp= ףJJx&?NNPxƿVBrh|@NNV-i-1 tag+i word CC discardedVBʡEVBNJ +VBDMb?i-1 tag+i word DT toolNNS\(\NN\(\?i-1 tag+i word JJ tonightNNHzGNNPHzG?i-2 word concludesJJRHzG?RBRHzGi word upgradedVBNX9v?JJX9vVBDh|?5?VBPh|?5 i-1 word ... RBE?NNX9vCC?5^I ҿINV-ڿVBZS㥛?DTZd;OVBV-CD/$VBPV-?PRPV-?JJK7NNSS㥛"i-1 tag+i word -START- determiningVBGZd;O?NNZd;Oi-1 tag+i word NNP fitzwaterNN1ZdӿNNP1Zd?i-1 tag+i word NN tashiRB+NNP+?i+1 word sleepVBPZd;RBZd;?i-1 tag+i word IN lexusNN~jtNNP~jt? i-1 tag JJSNNPSxRB(\?PDT(\?VBZ#~jVBDjtNNSK7A?NNPx&1VBPbX9?VBN~jt?JJ"~?RPV-DTX9v޿CDy&1$?VB?5^I ?RBR+?IN&1VBGx&1?NNx&@JJS-JJR+i-1 tag+i word PRP$ balanceNN}?5^I?JJ}?5^Ii-2 word laxativeNNV-JJV-@i+2 word seagramJJR|?5^NNP|?5^? i word dustNNx?JJxi-1 word leanedRBףp= INףp= ? i+2 word grewVBDMVBPtVNNsh|? @JJ(\NNPʡEi+2 word collectiveVB%C?VBDMbX9?NN%CINMbX9ܿi word automaticallyVB/$RB/$? i word salvoNNS5^I NN5^I ?i-1 word luzonNNZd;ONNPZd;O?i-1 suffix earRB{Gz?VBnRBSZd;O?CDCl?INv/@JJR#~jVBNQ?RPX9v?POSV-?NNP)\(RBR?5^I @EX|?5^?JJSZd;OVBPPn?VBZzGʿDTNNʡE?NNSSNNPSx&WDTVBDx&JJ?5^I ?WPd;OCCnVBGMb`i-1 tag+i word NN rackedVBN?5^I ¿VBD?5^I ?i-1 tag+i word CC troublesVBZ9vNNS9v?i-2 word melloanNNzGNNPzG?i-1 tag+i word VBZ wrongRBZd;OIN~jtJJQ? i+1 word blowNN~jtVBDDlVBNS㥛?JJ㥛 ?i-1 tag+i word IN libertyNNSA`"NNA`"?i+2 word regionalRBSm?JJSmNNClNNSFxVBZ r?i-1 tag+i word , housekeepingVBG?5^I NN?5^I ? i-1 word sidNNPS'1ZNNP'1Z?i-1 tag+i word IN boroughNNZd;O?RBZd;Oi-1 tag+i word , lamentedVBD +?VBN +ֿi+1 word retireesVBPCl?NNCli+2 word sustainedVBGOn?NNOnۿi-1 tag+i word VBZ builtNNoʡVBN}?5^I?JJʡEݿ i+1 word nextNNPSmͿVBNˡE?RBjtܿRPx&1?DTˡE?VBZ +JJR{GzܿNN"~jPOS+RBRzGҿWDTPnNNPMb?VBʡEVBGn?JJuVͿVBD㥛 ?NNS/$?VBP/$?INQ? i+1 word year DT +?NNPd;ORP(\VBP~jtJJ333333@INQ @VBGFxVBZERB|?5^NNNNS7A`CDʡE @i+1 suffix mesRBˡEܿNN/$?NNPx&VBDClٿFW|?5^TOuVWDTʡE?NNSMbVBMbVBPx&IN rVBZh|?5?VBN rh@LS~jtJJK7?NNPS r@VBG?RBS?JJS i+1 word abcDTDlINDl?i+2 word welchNN|?5^?JJ|?5^i-1 tag+i word NN graduateVBPffffffNNSd;ONN"~?i word restlessJJ$C?NN$Ci+1 word inspectorJJQݿNNA`"NNP +? i suffix eviVB+NNP+?i-2 word containNNPS rhNNP rh?i+2 word toutingNN333333ÿCDNbX9JJ/$?i-1 tag+i word VBD squanderedVBNCl?JJCli-2 word anxietyNNSNbX9?NNNbX9i-2 word captainVBGV-?JJV-i-1 tag+i word NNP namedNN$CVBNPnؿRBV-VBDMbX9 @VBGzi-2 word breedenRBSK7INEJJSK7?DTE?i-1 word solemnlyRB= ףp=IN= ףp=?i-1 tag+i word JJ applicationsNNSʡE?JJʡEi+1 word basicNNp= ףJJSHzG?RBSHzGVBP'1Z?JJMbX9ܿVB;Oni-1 tag+i word , carpetingVBG9vNN9v?i tag+i-2 tag PRP NNPOSMbWDTCl?NNGzRBRh|?5?INˡE?VBP/$?NNS/$VBjtNNPSGzVBDV-?RBMbX9VBZ"~j?MD+ۿRPS?RBSv/?VBNV-JJR1Zd?i-1 tag+i word IN hardJJFx?RBK?NNx&1i-2 word estimatesVBPףp= ?RBGz?INGz׿VBףp= VBGRQNNRQ? i suffix yukNN/$?NNS/$i-1 tag+i word JJ huskersNNPS(\?NNS)\(NNP\(\ i-1 word know RB(\?DTS?VBMJJI +JJRQ?RBRQEXK7?VBPp= ףINMb?i+1 word failedWDT%C?JJRQȿINq= ףpNNS(\?VBv/?NN{Gzt?CD~jtVBP ףp= i word discoveredVBZA`"VBN-@JJ#~jVBD(\?!i-1 tag+i word POS transportationNN-NNP-? i word djiaNNPSoʡݿNNPoʡ?i+2 word subsidiariesVBZjtֿRBzG?JJzGPOSjt?i+2 word happyRBRL7A`@JJRL7A`i+2 word usairDTw/?INw/i-1 tag+i word VB acrossINQ?RP㥛 ?JJ~jtRBNbX9ؿi+2 word penaltiesVBm?VBPmi-1 tag+i word RB illustratedVBNK7A`տJJ"~VBDv/? i word cfcNNPzG?VBzGi-1 tag+i word RB chargesVBZrh|?NNSrh|i-2 word conditioningNNSL7A`?VBN'1ZNNq= ףp i+2 word bangWRBQJJoʡINoʡ?NNPQ?i-1 word topiaryNNPS333333NNP333333?i-2 word applauseVBN333333RBSſNNS`"?NNnRPS?i-2 word alleyNNX9v?VBPX9vi-1 tag+i word DT integratedVBNMbX@JJMbXi-1 tag+i word NNS bredVBPx&VBDx&?i+1 word panelsNNˡE?JJˡE i-1 suffix a.NNPS"~NNV-NNPK7?i-2 word mountingNNX9vRB(\INl?NNSI +@WDT;Oni-1 tag+i word WDT specializesVBZMb?NNSMbi-1 tag+i word -START- vitroNNX9vNNPX9v?i-1 tag+i word POS pullbackNNSSNNS?i-1 tag+i word VBZ upwardRBNbX9?JJNbX9ȿi+1 word belowNNsh|??VBDV-VBNV-@CDl?VBPS㥛?PRPlRBEؿJJ= ףp= i-1 word repRB{Gz?NN/$NNPni word commentVBM @NNSrh|NNMb@JJMNNPxi+2 word circuitVBPClJJCl?NNClVBDCl?i-1 word populationVBNMbJJZd;VBZ+?NNPFx?NNFxVBD;On?i+1 word marcosCCx&NNPx&?i+2 word burnoutsNNSMbX9?NNPMbX9ܿi-1 tag+i word VB heavyJJRZd;OJJ(\?NNPx?i word droppingVBGh|?5@JJK7A`NNGzi-1 word brewingNNP%CNNPS%C@NNzG?JJzGi-1 word scalingRP|?5^@NNS?5^I RBx&?NN/$i+1 word riverCD/$NNP rh@NNPSsh|?JJ|?5^ʿNNq= ףpi-1 tag+i word TO turnVBPn?JJPni-1 word impressiveJJ rh?NN rhi word rigueurFW^I +?JJˡEܿNNP+i-1 word acresNNPSJJRS?i word overcollateralizedVBNV-?CDV-i+1 suffix rewVBGK7NNZd;O?JJi word krispiesNNPS\(\?NNP\(\i-2 word breachNN/$?JJ/$i-1 tag+i word DT publishedNNffffffVBN|?5^ʿJJ"~?i-1 tag+i word POS rotatingVBG%C?NN%Ci+1 suffix arnNNPS̿NNS?NN?5^I @JJ?5^I i-1 tag+i word `` whackyJJ/$?NN/$ i word humanVBbX9NNOn CD㥛 JJNbX94@DTClNNPZd;?i+2 word pattisonNNE?JJE i word arrestNNPMbJJSh|?5NN}?5^I@RBJ +i+2 word walletNNS|?5^NN|?5^? i+1 word soilVBNsh|?VBDsh|??i+1 word homefedVBNjtJJh|?5VBDjt? i word over INK+@NNSK׿VBQJJLNNh|?5VBDClVBNh|?5VBPGzRPZd; @CD333333RB?5^I NNPh|?5?i-1 word emotionalNNE?JJE i-1 word w.i.NNPQ?NNPSQ i+1 word cdNNSףp= NN333333VBPףp= ?WDT/$JJ333333?IN/$? i-2 word herJJX9v @VBPoʡVBZSNNS&1NNV-@VBD= ףp=JJRoʡݿRBEDTQVBE?VBNy&1INCl绿NNP|?5^?VBG%C̿EXE@i-1 tag+i word , objectedVBN1ZdVBD1Zd?i-1 tag+i word TO midtownVBQݿNNDl@JJ?5^I i-1 tag+i word FW reproductiveJJMbX9NNPMbX9?i+2 word ethicsVB+JJ+?i-1 tag+i word NNP illuminatingVBG'1ZNNP'1Z? i word opposeVBjtRB$CVBDˡEVBPCl@JJ|?5^ҿIN9vi-1 tag+i word NNP equityNN ףp= ?NNP ףp= ߿i word dilemmaNNS?RBSi-1 word overallVBGףp= NNRQ?JJq= ףp?VBD\(\i-1 tag+i word -START- copperINI +NNp= ף@NNPjti-1 tag+i word NN trashingVBG7A`NN7A`? i word m.w.NNSNNPS?i-1 tag+i word TO branchVBMbX9NNףp= ?JJ rhͿi-1 tag+i word -START- proceedsNNSS?NN|?5^NNP?5^I i+1 word anglesJJQ?NNQѿi-1 suffix plaDTCl?RBCli-1 tag+i word POS handlingVBGˡE?NNˡEi+2 word complaintsNNS rhNN rh?i+1 word truckingNNd;O޿JJd;O? i+1 word amokVB-?VBN- i-2 word a.m.RB!rh?IN!rhDT+PDT+?i-1 word possibleINd;O?DTX9vNNSMbX9NNPx&1JJ= ףp=?NN?WDTq= ףpRBB`"i word socialistsNNPS= ףp= @NNSd;ONNPli-1 tag+i word RB meantJJ/$VBP}?5^IVBN~jt@RBˡEVBD +?i+1 word draftedRBCl?JJCl i suffix Q.NNrh|NNPDl?NNPSZd;i+1 word wrappersJJ5^I ?NN5^I i+1 word leaguesNNPSd;ONNPd;O?i-1 tag+i word VBZ equivalentJJS?NNSi-2 word gazetaJJK7?NNPK7i-1 tag+i word NN buyingNN9v?VBG9vڿi+2 word composedRB~jt?IN~jti-1 word zenithNNPSZd;O?NNPZd;Oi-2 word discountsJJQ?NNPQi-2 word overrunsNNSEJJ}?5^I@NNNbX9ȿNNP/$ i word trialNNQ?NNPQi-1 tag+i word NNP federationNN7A`ڿNNP7A`?i-1 tag+i word RB publicizedVBN1Zd?JJ1Zdۿi word additionallyLSףp= RBp= ף?NNPzGڿi-2 word senseNN ףp= ?JJ\(\RB rh?NNPA`"i-2 word tabooJJw/?NNw/i-1 word institutionsWDTףp= ?NNvJJL7A`IN9v?RBV-@i-1 tag+i word RBS contortedVBNOnJJOn?i tag+i-2 tag RP VBP RB)\(?VBDNbX9PRP$-?PRP-JJRJ +IN}?5^IDTٿVB㥛 ?NN(\ڿPDTrh|ϿRBRJ +?JJx&1?!i-1 tag+i word -START- completionNNsh|?@NNPsh|?i word packersNNPSzG?NNPzGi-1 tag+i word PRP$ otherwiseRBI +?JJˡENN~jti-1 word posted JJtV?NN`"JJR~jt?NNSPn?NNPZd;VBDQPDT-?RBR~jtӿRBZd;i-1 tag+i word DT outsetNNS"~jNN"~j?i-1 tag+i word VBP patrioticRBh|?5JJh|?5? i suffix fthRBMb?NNd;ONNPKJJ/$@CD ri word complainsVBZ+?NN+i word thwartedJJjtVBNjt?i-1 tag+i word RB financedVBN ףp= ?VBD ףp= ߿i+2 word considerationCC"~IN"~?NNZd;ONNPZd;O?i-1 tag+i word CC keyVBP1ZdJJ1Zd?i+1 word beatsJJR~jtпNN~jt?i word instrumentNNSp= ףNN/$?JJ$C i-2 word viceNNy&1ܿNNPX9v?RBd;Oi-1 tag+i word ( netherlandsFWmNNPSjt?NNP"~jܿi-2 word excessVBZOn?NNSQFW~jti-1 tag+i word TO westVBʡENNPʡE?i-1 tag+i word CC tourismNN+?JJ+i-1 tag+i word NNP regulatorsVBZX9v?NNSI +VBD ףp= i+2 word inundatedNNPS?NNS i-2 word mail FWA`"VBNʡE?EX#~jJJrh|?RPA`"?NNRQVBPʡE?RB7A`INJ +?VB9v i suffix kryNNv?JJvi-1 tag+i word DT screenNNStVNN+?JJi-1 tag+i word NNS constitutedVBNK7VBDK7? i suffix ics VB~jtFWEVBNMbXVBPSNNPSGz.&@JJ}?5^I NNDl)RBbX9 INZd;VBZ~jtNNS rh.@NNPV-2i-2 word civilNN1ZdVBD ףp= ?VBN ףp= ߿WDTMb?INMbNNS1Zd?i-1 tag+i word VB periodsNNS/$?RB/$i-1 tag+i word VBP joinedVBN|?5^?VBD|?5^ i word idlingVBGQ?JJQi-1 tag+i word CC crippledVBN?5^I @JJ7A`ҿVBDK7A`i-1 tag+i word NNP tradeVBSNNv/@RB$CNNP~jtȿ i word droveVB%CVBPOnJJI +޿IN$CVBD~j@i-1 tag+i word TO traceVBT㥛 ?JJT㥛 i-1 word annualizedJJ}?5^I?NNQIN#~ji-1 tag+i word RBS undervaluedJJZd;OVBNZd;O?i+2 word batterRP r?RB ri+2 word brainsDTK7INK7?i-1 tag+i word `` whoNNJJx&WP`"? i word umwNNP!rh?NN!rh i-1 word passIN$C?RPʡE?RBʡEi word individualsNNS}?5^I?NNP}?5^I i suffix rorVBT㥛 JJ-NNV-2@RB333333ÿVBZV-NNPFxi-1 tag+i word NNP soVB$CRBL7A`INQ@i word bodegasDTZd;OVBP rhNNS(\?'i-1 tag+i word -START- unconstitutionalJJ(\?NNP(\i-1 tag+i word NN jettyVBZQNNQ?i-1 tag+i word DT havensNNSOn?NNOnӿi-1 tag+i word JJ fighterRBR/$NN/$?i-1 tag+i word VBN consistentJJˡE?NNˡEi-2 word complainedCDʡERBd;O?JJPn?NNS?VBD rhJJR;Onҿi tag+i-2 tag PRP CDVBZx&MDCl?VBN$CJJV-VBDMbX9?i+2 word controllersVB{GzNN{Gz?i-1 suffix ads VBNK7JJJ +ٿVBT㥛 @WRB ףp= ׿NN{GzVBDK7?FWx&1RBR"~NNPJ +?RBB`"?VBPRQi-1 tag+i word TO talkVBDl?NNDli word maintenanceVB9vNN9v?i-1 tag+i word IN quotronNNˡEܿNNPˡE?i-1 tag+i word RB innocentNN"~JJ"~? i+2 word bonVBZnVBPn?i-1 tag+i word JJ prominentJJK7A?NNK7Ai+2 word festivalNNP!rh?NNPS!rhVBNQ?VBDQi-1 tag+i word NN hardJJˡE?RB rؿNNS㥛i+1 word essentialDTMb?INMbi+2 word clashedJJx?NNPxƿi-1 word municipalsVBDGz?VBNGz i-1 tag+i word CC erythropoietinVBNV-NNV-?i-1 tag+i word NNP bassNNPffffff?INffffff i+1 word fairINS㥛?RBS㥛JJQ?NNPQݿi word pricierVBV-JJRQ?RBRE i+1 word talkJJ(\?VBN'1Z?RBx&1IN-DTy&1|NNPˡEi-1 tag+i word IN electiveJJ$C?NN$Cӿi-1 tag+i word -START- propertyNN\(\?JJ(\NNP(\i-1 word monitorsVBGS㥛NN/$?JJ9vi-1 tag+i word RB performVBZ;OnVBQVBPx&1? i word signVBPHzGNNףp= @JJKRBbX9i+2 word catchingNNP$CNNPS$C?i+2 word motionsJJQ?FWQi-2 word arrangementVBDq= ףpտVBV-VBNMb?RBFxi tag+i-2 tag WRB VBDRB|?5^?UH rhJJ7A`?i-1 tag+i word VBN aboutINX9v?RP +?RBV-ǿNNw/i-1 tag+i word POS dryNN+JJ+?i+1 word among NNoʡ@VBD?5^I ҿVBNJ +?CD ףp= WRBOnVBG/$JJ/$?VBP/$?RB(\NNSX9vֿNNP!rh?VBy&1i-1 tag+i word VB dismayedNNS%CԿVBN%C?i+1 word clownsNNNbX9?NNSNbX9i+2 word weisfieldNN(\?JJ(\NNPףp= @NNPS{GzԿNNS(\i+2 word eloquentlyWDT$CۿIN$C?i+1 word virtuallyVBZFx?NNSFx i-1 word good NNPSHzGNNx@WDT +VBZK7A`NNSl?NNP?5^I ڿVBGSRBV-CD|?5^?JJw/INZd;?DTK7A`տ i suffix .P.NNK7@NNPK7 i word y.j.PRP$V-NNPV-?i-1 tag+i word VB maintainedJJQVBNQ?i-1 tag+i word DT astuteJJ(\?NN(\i-1 word rubleJJI +@NNI +i-1 tag+i word CD midlandNNS(\NNP(\? i word eaglesNNPSPn?NNPPni+2 word tokyoNNP^I +@NNPSy&1NNSq= ףpNN r?FW?5^I i-1 tag+i word DT riseJJ$CNNPS rNNSK7ANNˡE@ i word joshuaJJRQNNZd;ONNPV-?i+2 word underwrittenVBPGzVBGp= ףؿNN?i-2 word kaysersbergVBnNNn?i-1 tag+i word CC liabilitiesNNSK7?JJRK7 i suffix ONGNNZd;NNPZd;?i-1 tag+i word IN peacetimeJJp= ףNNp= ף?i-1 tag+i word NNS sometimesVBPףp= NNS{GzRB)\(?i+1 word horticultureJJ%C?NNP%CԿi-1 word pressuredRPuVRBuV?i+1 word benightedRBrh|INrh|?i-2 word around VBp= ףVBG ףp= JJ"~jNNK7A`?IN~jt?NNSh|?5NNPSx&JJRuV @RBRvVBP~jt?RB!rh?VBZ;OnNNPA`"? i suffix ocaJJ(\NN(\?i+1 word investigatesINDlѿDTSWDTMbX9?i word participationNN?JJi-1 tag+i word VBD policeNNST㥛 ?RB+NN ri+1 suffix rth RPRB?NNV-VBD7A`?POS+?RBRQ?VBN7A`JJ333333?VBZ+CC/$NNSCl?NNPCl?i+2 word sponsoringWDTMb?INMbi-2 word representingRB$CNN)\(ܿJJ)\(?JJR$C?i-1 tag+i word NNS behindINtV@VBP9vRBK7A`i+1 word isolatedRB5^I ?NN5^I  i word press JJR(\VBP(\?INK7A`ݿNNS+VBK7A`?JJK7A RBS+NNPFx@NNPS/$NNt@RBbX9޿i-1 tag+i word CC gatheredJJQVBDQ?i+2 word breedersNNS|?5^VBN|?5^JJ|?5^?NNP|?5^?i word franklyRB- @NNnJJnDT ףp= NNS㥛 NNP(\? i word pottedVBN"~jܿJJl?VBDGzi-1 tag+i word NN cleanerNNZd;OJJRZd;O?i-1 tag+i word JJ associatesNNSZd;NNPZd;?i-1 suffix eimVBZZd;O?NNZd;Oi word enrollmentNNv/@JJv/i-2 word commodityNNZd;OVBN!rh?RB(\NNPZd;O?VBDL7A`i word parsonsNNPST㥛 NNPT㥛 ? i word doomedVBN~jt?JJS㥛VBDOn?i-1 tag+i word VBN contractingVBGX9v?JJX9vi+2 word makwahVBCl?PDTCli-1 tag+i word DT willingnessNNd;O?JJNbX9RBR(\пi-1 tag+i word IN cubaNNPSffffffNNPffffff? i-1 word moveRBR@WDT%C@VBDv?PDT5^I ?VBPK7IN`"?JJjtVBNvDT5^I NNS`"VBZ`"?VBGʡENNI +RPGz JJR1ZdVB rhRBx& @i+2 word gloryNNv߿NNP`"οVBl?RBd;Oi+2 word overseasVBNVBPʡEƿJJK7@VBZ9vڿNNSx&?VBG~jtÿNNv/VBD$C?i-2 word prebonJJClNNPCl?i-1 tag+i word `` questJJSKNNPK?i-2 word received NNS?VBGM?NNxRBRx&?JJRS㥛VBZ rhRBI +?VBNx&1?POS rh?JJ rhͿi-1 tag+i word NNP telegraphNNPSzGNNPzG?i-2 word scarceNNP~jtVBT㥛 CDCl?NNPnJJT㥛 ? i word funnyJJףp= @NNSzGҿVBN㥛 NNoʡi-1 suffix ogyVBVBDnVBNʡE?VBZtV?VBPS㥛RB1ZdWDTn?INnNNSCl@NNP/$?VBGA`"?JJSſNNʡECDrh|i-1 tag+i word POS gainedVBNQJJ+߿VBDx?i-1 tag+i word VBP urgedVBNv/?JJB`"VBD/$ѿi-1 tag+i word `` seemsVBZoʡ@NNSʡEJJʡENN%Ci+2 word speaksNN+?JJ+i word peugeotNNPSX9vNNPX9v?i-1 tag+i word PRP engineerVBP~jtNN~jt?i+1 suffix irdINʡE?RPʡENNS㥛VBDy&1VBNX9v޿''&1?JJʡE@i-2 word severanceVBN-VBD-?i-1 tag+i word WDT evenRB+?VBD+i-1 tag+i word JJ bidsNNS-?NN-i+1 word reeseNNq= ףp?NNPq= ףpi-1 tag+i word IN oatNN)\(@JJʡERB^I +NNPQ i word riskVBDK7A`VBP7A`?JJMbNNS7A`NNPffffffVBV-?RBd;O޿NN7A`@i word drinkingVBG|?5^NNK@JJZd;i-2 word developmentVBP%C@JJK7VBZSNNSh|?5@VBףp= NNbX9?VBDZd;׿VBNFxi+1 word conflictVBNx&1JJףp= ?NNPK߿i-1 word playersVBA`"ۿVBG7A`?NNK׿VBDFx@VBN/$VBPq= ףp?JJjti-1 tag+i word VBG plansVBZvNNSv?i-2 word pickedVBNv/?VBDv/i-1 tag+i word IN stringVBG1ZdNN㥛 @JJ+i-1 tag+i word , setVB;On?VBNn?NNx&VBDA`"?VBZʡE i word edNN= ףp=NNP= ףp=?i-2 word greaterJJRGz?RBRGzi-2 word shoutingRB}?5^I?IN}?5^Ii-1 word bethlehemVBZ ףp= ?NNPS?5^I NNSx&1NNʡENNPʡE? i word beltNNSMbNNMb?i-1 tag+i word DT stapleNNGz?JJGzi-1 word forecastsDT&1WDTˡEINZd;O?i word maturesVBZ333333?NNS333333i-1 word frameJJx&?NNlWDT +?RBMbXɿIN +VBZ/$i-2 word pulseNNQ?JJQi-1 suffix viaRB`"NNP5^I ?NNPSVBGS㥛JJ?NNM?VBD?5^I ?VBN?5^I i-1 tag+i word NNS workingVBGv/?NNv/ i-1 word badJJ333333?NN333333i word opponentNN/$?JJ/$i-1 tag+i word WP goodNN(\?JJ333333VBDQi+2 word japanRBRq= ףpVBZL7A`VB rhRBSJJRq= ףp?IN/$?NNPK7A`@NNPSp= ףNNS-?VBGGz?NNCl?JJxDT`"?CD(\?i-1 tag+i word DT neckNNm?JJmi+2 word coincideVBN$CVBD$C?i-1 tag+i word `` smartJJrh|?NNrh|i-1 tag+i word IN adverseVBGnٿJJMb?RBZd;i-1 word attractNN333333JJRQ?JJ/$RBR/$?i-1 tag+i word NNP rushedVBNFxѿVBDFx?i+1 word wasteVBGSJJS?i-1 tag+i word NNP ruthNNPSV-NNPV-?i+2 word promoterVBD r?VBN r i+1 word melVBGS?NNSӿi+2 word sillyNNT㥛 JJʡE?FW333333@i+2 word sparkJJR|?5^?RBR|?5^i-1 tag+i word VBZ whoopingVBG rJJ r?i-1 word competeJJRJJHzGRBR?RBHzG?NNi-1 tag+i word RBR mainstreamJJK7?NNK7ٿi+2 word overheadNNQ?JJQi-1 tag+i word -START- meritorNNGzNNPGz?i-1 tag+i word NNS genialVBN+JJ+? i+1 word sen.NNPS rhWDT(\?JJ"~j?IN(\NNP)\(i-1 tag+i word CD broncosNNSn?NNPni-1 tag+i word `` discordNN~jt?JJ~jtпi word convertingNNtVVBGtV?i+1 word shiningJJK7@NNZd;ONNPp= ף i suffix dorNNPrh|?NN㥛 @FWQJJX9vVBZMbNNSHzG i suffix lasRBtVNNS/$@NNP㥛 VBPnJJKNNV-VBDjt޿UHS?i-2 word bankruptcyVBGn?NNni+2 word reflexivelyVBNQ?JJQi-1 word peanutsCCsh|?VBP/$RBsh|??NN/$?i-1 tag+i word NN expertiseNN)\(?VBZ)\(i+2 word manhattanNNPS rhNNSZd;ONN|?5^?NNPrh|?i word projectionNNK7A`?JJK7A`i word undersecretaryNNd;O?JJd;Oi+1 word abusedRB#~j?NN#~ji-1 tag+i word IN poisonNN= ףp=@JJ㥛 NNP/$i-1 suffix dljVBZ9v?VBP9vNNZd;?NNPZd;i-1 tag+i word CC changeVBX9v?VBP/$NNS?JJ}?5^IԿi-1 tag+i word IN benightedVBN/$JJ/$?i-1 tag+i word TO moreVB rRBR?JJREԸ i word smoothNN|?5^VBDHzGCCCl׿JJ-@DTnڿVB-?i+2 word widenedNN(\?JJ(\ i word t.NNPʡE?VB)\(RBrh|߿i-1 tag+i word VBP tumorNN= ףp=?RB= ףp=i word limitingNNZd;OVBG/$?i-2 word answersVB/$JJ/$? i+2 word oil LS^I +?RBK7?VBZL7A`VBV-?NNPSQVBG}?5^I̿JJQ?WDTtV?NNSX9vֿNNףp= ?POSL7A`?INMb`?NNPxi-1 word thoroughlyJJ= ףp=?VBG+?NNS= ףp=NN+i+2 word communistsVBDtV?INjtVBZ-i-1 tag+i word DT cocomJJV-NNPV-?i+2 word numerousJJRQ?RBRQi+1 word breakupVBNS?JJSi-1 tag+i word DT intenseJJV-?NNV-i word automaticIN`"JJ}?5^INNQNNP&1?i+1 word listenersPRP$333333?PRP333333i-1 tag+i word VBN papersNNPSrh|NNSrh|?i-1 tag+i word VB bloodyNNzGJJzG?i+2 word implyJJSNNSK7A`NNPn@i-1 tag+i word DT swankNNZd;ONNPZd;O?i word domesticJJ&1?NN&1i-1 tag+i word NN clerkNNSKNNK?i-1 tag+i word VBZ receivedVBD= ףp=NNVBNoʡ?JJMb i suffix bbsVBZd;ONN|?5^VBZ(\?i-1 tag+i word VB marginRPMbNNS㥛?JJS㥛Ŀi+1 suffix sirJJRbX9NNbX9? i-2 word 'llRBR&1JJѿJJR9v?RP}?5^IRB|?5^@NNԿVBNʡEi-1 tag+i word JJ highsNNSS㥛 @JJxNN ףp= i-2 word bolognaWDTnINn?i-1 tag+i word CC decentJJS?NNSݿi word annuityNN?JJ i-1 word gas NNl@RB ףp= VBGGzVBDRQVBNRQ?UHPnJJFxIN?NNSZd;O?VBZd;Oi+2 word boardWDT= ףp=RBMbX9INnDTx&1 @NNP'1Z@VBx&ٿJJ(\NNMb?i-2 word seemsRBX9v?JJh|?5NNPZd;OVBoʡ@ i word prioriNNMbFWMb@i+1 word nativeNN +NNP +?i-2 word openingRB~jt?INffffff?RP!rhJJ#~jNN#~j?JJRuVݿRBRuV?i-1 tag+i word NNS futuresNNPStVNNPtV?i-1 word typically VBZA`"?VBuVRBQ@VBNGzVBP|?5^?JJZd;O?INQNNSA`"VBGʡE?VBD^I +ǿi-1 word deathsVBQ?VBPQVBNsh|?տJJGzVBDNbX9? i-2 word stirNN~jt?JJ~jti+1 suffix uedVBG+?WDTHzG?NNPSK7NNB`"۹?JJSףp= JJuVNNPMbX@VBN/$ݿVBPK?VB)\(̿RBSףp= ?INHzGVBZ%CNNS+?i-1 tag+i word RB gambleVBףp= ?VBDףp= i+2 word overdraftJJ= ףp=?NN= ףp=i-1 tag+i word CC broaderNNSX9vJJRX9v?i+1 suffix melVBGS?NNSӿi-1 tag+i word JJ placesVBZuVݿNNSuV?i-1 tag+i word CC revolvingVB̿VBG?i-1 tag+i word VBN handsomelyRBq= ףp?JJq= ףpi-1 word certificatesVBD%C?VBN%CVBP`"?IN^I +?NNP#~jPRP$Zd;i-1 tag+i word DT futureNNX9v@JJ|?5^NNP= ףp= i word craneVBN!rhNN'1ZNNP rh@i-1 word techniquesVBN#~j?VBD#~ji-1 tag+i word CD europeanJJZd;?NNPZd;i-1 tag+i word VB pricingVBGZd;ONNZd;O?i-1 word peasantsPOS%C?NNP%C̿i-1 tag+i word VB approvedVBNn?JJn i+2 word babeINS?RBSۿi-1 tag+i word JJ defensiveJJV-NNV-? i word soleFWq= ףpPDToʡJJZd;O?NNy&1i-1 tag+i word NN townsNNX9vNNSX9v? i word redderVBPh|?5JJRbX9?NN\(\i-1 tag+i word RB leadVBP?RBRi-2 word seizeNNh|?5޿VBZd;O?NNSEȿi-1 tag+i word JJ folkNNSnNNn?i-1 tag+i word NN pointsVBZK7NNSK7? i-1 suffix isIN#~jRB?VBECDx&1?JJSuVտVBZFxVBDv/WPʡENNS rhRBRuV@JJR ףp= ?NNPQ?PDT?DT?RBS!rh?RP rhCC-VBNZd;_@FWx&VBP- WDT!rhJJ?5^I @NN= ףp=PRP$Fx?VBGGz@NNPSEXFxi tag+i-2 tag JJ RPNNSL7A`NNV-?JJuVݿi-2 word managingNNS㥛?JJS㥛VBD/$ۿNNP/$?i+1 suffix niiRB+NNP+?i-1 suffix gelNNPSMbNNPMb?i word biennialJJ+?NN+i-1 tag+i word VBD struckVBPV-VBGZd;OVBN9v?i+2 word minicomputersWDTGzNNS9v?NN9vʿINGz?i-1 tag+i word NNS widenVBPB`"?WRB ףp= ׿FWx&1i-1 tag+i word DT upswingVBGˡENN1Zd?JJ i suffix rkyNNPSZd;ONNMbXVBNB`"CDV-ҿJJ)\(?NNPZd;O?i-1 tag+i word PRP$ bottlingVBGK7?JJ-NNKi-2 word monasteryNN?5^I ?JJ?5^I ڿi-1 tag+i word JJ actingJJbX9?NNbX9i-1 tag+i word JJ activelyNNS rhRB rh?i+1 word subsidesJJQNNQ?i-1 word financierNNSy&1|NNPy&1|?i-1 word infamousCDjtJJK7ѿNNPffffff? i-2 word autoVBZS㥛?NNSS㥛ܿVBG-?NNffffff?VBD|?5^@VBNsh|?VBPX9vJJMbX9i-1 word slovenianNNGz?NNPGzi-1 tag+i word NNP embracesVBZ^I +?JJ^I +i-1 tag+i word PRP$ reportsNNS?VBGi-1 tag+i word TO terroristVBKJJK?i-1 suffix eceVBNx޿RB;On?VBDx?RP;Oni-1 tag+i word -START- marksNNSv?NNP(\?VBZOnPRP$m i word buildsVBDjtVBZ5^I @NNSK7A`RBI +i word scrambleVBP7A`?JJ㥛 NNsh|??VBA`"ۿi-1 tag+i word IN dataNNSK7A?NNA`"IN"~ҿNNP/$NNPSZd;?i-1 tag+i word DT racistNNM?JJMi-1 tag+i word CC bogVBCl?VBDCl߿i-2 word liabilityRB/$?VB/$VBGp= ף@NNp= ףi+2 word commissionsVBPQWDTQRBQ?INQ?i-1 tag+i word DT favoriteNN(\?JJ(\ڿi-1 tag+i word NN dogsNNSGz?NNGzi+1 word convinceDT$CWDT$C?i+2 word anthologyVBGNbX9JJNbX9?i-1 tag+i word IN pretaxNNn?JJni-1 tag+i word VBP hostileRBp= ףVBNjtܿJJMbX? i suffix dotVBZMbVBPMb?JJ`"NNP`"?i word bankruptJJX9v?NNX9vi word civilizedVBN7A`ڿJJL7A`?NNPMbi-1 tag+i word IN authorizedVBNZd;JJZd;?i-1 tag+i word JJ containerNNA`"?JJA`"i-1 tag+i word JJS scaredVBNvJJv?i+2 word wonderNNSmͿNNP+NNPSʡE?NN= ףp=?VBPQJJ\(\i-1 tag+i word JJ rapidlyNNSףp= RBףp= ?i-1 word teacherVBN'1Z?VBD'1Zi+1 word skirtsVBNV-JJjtNNPZd;O@i-1 tag+i word DT fecklessJJ&1?NN&1ҿ i-1 word awayRBʡE?NN-VBNQ?JJ!rh?INʡEVB(\ i suffix KGBNNS㥛NNPS㥛? i-1 tag+i word -START- computersNNPSzGҿNNSzG?i word recourseNNh|?5?JJh|?5οi-1 tag+i word JJS advertisingVBG rhͿNN rh?i+1 word shippingVBNX9vJJV-¿INq= ףpNNP(\?VBZd;O?NNI +VBDX9v?i-1 tag+i word VBP wooedNNS'1ZVBN'1Z?i-1 tag+i word -START- eijiJJ-NNP-?i-1 tag+i word PRP$ bathroomNNSDlNNDl? i suffix 869CDZd;?NNZd;i tag+i-2 tag RBR -START-NNX9vFWV-?JJ`"RB9v?i word compositePOSX9vRB&1VBZ1ZdNNS~jtNNPp= ף?JJPn@NN!rhVBDGzi-1 tag+i word JJ yetRBT㥛 CCT㥛 ?i-1 tag+i word RB disputedVBN+@VBD+i-1 tag+i word NNP holmesVBZ%CNNP%C?i word schizophreniaNN&1?FWy&1JJRZd;O i-2 word bayJJ/$VBD/$ѿVBN/$?RB/$? i+2 word iataRB/$NNP/$? i+2 word shawVBX9vNNPX9v? i-2 word doorVBD/$?PDTV-VBNK7?JJK7VBZ/$ÿDTV-?i+2 word absolutelyNNJ +?JJJ +i-1 tag+i word CD allianceNNK7NNPK7? i-2 word naryVBGDlNNDl?i word businessmenVBZ/$NNSDl)@RB +NN|?5^VBDCli-1 tag+i word VBN inaccurateJJCl?NNClٿ i-1 word wordVBG{GzNN{Gz?VBDh|?5VBNh|?5?WDTsh|?RB +IN?5^I ? i word felledVBZ\(\VBD/$@NNPS㥛i+2 word warmheartednessRBRClNNCl?i-1 tag+i word RP becauseRB|?5^?IN|?5^i-1 word cloutJJjt?NNjti-1 word grainsCCI +?DTI +i-2 word issuedVBG rhJJGz@NNd;ORBR|?5^RBx&ѿNNPS㥛?i-1 tag+i word DT rootNN;On?JJ;Oni-1 tag+i word JJ indirectNNT㥛 JJT㥛 ?i-1 tag+i word NN repeatsVBZtV?NNStVi word ascendingVBG/$?JJ/$ i-1 word twaJJw/?NNw/ܿi+2 word flakesRBv/RPv/?i+1 suffix adyVB?NNPS?5^I ?VBPv?NNPzG?RPm?VBNCDT㥛 RB(\ڿINffffffNNSV-?VBZ333333JJ/$NN rhVBDlWDTMbX9i-1 tag+i word DT misguidedVBNp= ףJJ~jt@VBDK7Ai tag+i-2 tag JJR DTNNSʡE?NNPMbXIN/$VBDˡE?VBZ㥛 ?JJMbX9@VBNI +VBGK7NN rhFW1ZdۿJJR!rh̿VBPv?RB"~VB rh?i-2 word trademarksNNSx&1̿NNPx&1?i-1 tag+i word NNP eaglesNNPSPn?NNPPni-1 tag+i word NNP sankVBDS㥛?JJS㥛 i-1 tag+i word -START- investorsNNSQ@RBNNPʡEDTNNPSp= ףi+1 word aviationJJ+NNP+?i-1 word decreeINWDT?i-1 tag+i word JJ licenseNNrh|?JJrh|!i-1 tag+i word -START- miniscribePRP$ +NNffffffNNPp= ף?i-1 tag+i word RB cladJJS?VBNSſ i-1 tag )VBGQNNMbP?FW9v?DT/$VBʡE?JJR?5^I ?NNSS㥛VBN7A`WDTS㥛?RBSJJK7VBD(\?VBP&1?INS?VBZQ?NNP(\i+1 word freezeNNPGzNNsh|? @JJy&1i+2 word limpidVBD~jt?VBN= ףp=INmտi-1 tag+i word CC choseJJ$CNNClVBD9v?i+2 word reeledNNPS"~?NNP"~i word statisticianJJlNNl?i word deliveryNN-?CD-i tag+i-2 tag , TOUHQRBx&1?IN%C? i-2 tag JJSJJR/$?DTQ?VBD-?JJSvNNStVVBV-NNNbX9?RBR/$VBNPn?INSNNPT㥛 VBZB`"۹?NNPS^I +VBGQ?PDT$CPOSh|?5VBP?5^I ҿJJx&1?RPHzG?RB?5^I ?RBSJ + @i-1 word registeringRBy&1INy&1?i word restyledVBN~jtJJ?VBDrh|׿i-1 tag+i word -START- conrailVBKNN +NNPOn?i+2 word worriesNNSA`"NN333333?RBuVͿ i-2 word glutVBMbJJMbX?NNd;Oi+1 word changesVBS㥛?FW?JJS;On?RB|?5^NNSw/?NNPK7JJ;On?VBNQ@EXX9vNNMbX?VBDV-CD&1VBG+IN&1?i+2 word roofingVBGPnNNPn?i word cardiffNNSZd;NNPZd;? i-1 word fineNNPSףp= ?NNSGz׿NNPп i-1 word damnJJ~jt?NN~jti-2 word donnedNNS(\?NN(\ i word funNNSGzNNL7A`@JJʡEVBNx&1i word neither VBZ~jtRBV-VBD-CCCl@IN333333DT^I +@NNPVBGzNN/$JJ5^I  i+1 word gen.JJMbXNNQտVBʡE?i-1 tag+i word PRP$ l'oeilNNtVFWtV?i-1 tag+i word WDT backVBZK7VBPK7? i-1 tag+i word POS contributionsNNS|?5^?NN|?5^ɿi-1 tag+i word DT rowNNV-?JJV-i+1 suffix izaJJx&1?NNx&1 i suffix iesJJSClCDVBZm#@VB"~jNNPSZd;'@JJT㥛 VBDp= ףVBN^I +VBPnRB1ZWRB%CJJR#~jVBGp= ףNN + NNSuV1@INx&NNPli-1 word mazdaVBZQ?CDx&1NNS~jt@NNPˡEi+1 word vowingCD}?5^I@NNSJ +ѿJJ|?5^NNx&i-1 tag+i word NN resurfacedVBDMbX?VBNMbXi-1 tag+i word DT loyalJJ5^I ?NN5^I  i word unionNNK7?NNPK7 i word marionNNx&1NNPx&1?i+1 word estateNNPI +?NNףp= VBG&1?JJ +?RB(\i-2 word wooingJJR9vNN9v?i+2 word playedNNSNNP?i-2 word graduateNNDlNNPDl?i tag+i-2 tag IN JJJJS)\(?FWGzNNS/$RBSSCDʡE?PRP\(\?NNPDlPDTClۿEXn?VBDʡEݿVBPZd;O?JJK7?DT-?MD$CRBRB`"۹?NNPS/$ۿJJRd;OPRP$\(\׿VBGʡE@NNMbRBVBN%CVBZjt?VB(\INh|?5?i-2 word nationwideNNNbX9?JJ|?5^?IN|?5^VBNbX9i+2 word enableNNSKDTv/WDTv/?NNK?i-1 tag+i word DT manaclesNNSB`"?NNB`"ɿ"i-1 tag+i word -START- predictablyRB/$?NN/$i+2 word patients VBGRQJJS㥛?NNP?5^I ?NNSV-?MD9vVB +?NN{GzINV-VBZV-i-1 word englandVBG`"NNP`"?WDTCl?DTZd;INV-i word lotteryJJL7A`NNL7A`?i-2 word lagnadoNNoʡ?JJˡENNPʡE i+2 word road VBD"~VBNoʡ?JJI +?INK7@NNPoʡ?NNPSoʡRPffffffNNZd;ϿVBPMb?VBoʡRB5^I  i-1 word iiNNK7A`?JJK7A`i-1 tag+i word VBN agreesVBZ7A`?NNS ףp= VBNd;O i suffix ork RBKWP9vVBZ(\NNP-˿JJxINx&RBR)\(WDTMbpNNS"~ VBS@NN7A`P@JJSoʡVBP+?i-1 tag+i word VBN fewerJJRT㥛 ?RBRT㥛 i-1 tag+i word DT peopleNNPSmͿNNSClNN/$޿JJ(\µNNPV-?i-1 tag+i word -START- pretaxJJx&1?NNK7NNP$Cӿi-1 tag+i word NNP messagesVBZI +NNS"~j?PRPtVi word troublesVBZ9vNNSʡE?NNQi+2 word hopingNNS +޿JJGz?NNZd;OտNNPZd;?NNPSZd; i word abroadRB(\@JJK7A`NNoʡNNPZd;i-1 tag+i word DT ancientJJffffff?NNffffff޿i-1 tag+i word RB appearVB)\(?JJV-¿IN-i-1 tag+i word PRP$ rightVBNq= ףpJJQݿNNCl?i-1 tag+i word IN recklessJJ+@NN+i-1 tag+i word CC ladenJJA`"?VBPMVBN+i-1 tag+i word DT patronageNNCl?JJCli-1 tag+i word NN backVBP +RPzG?RB r@NNIN/$i-1 tag+i word NN intrinsicJJ?NNMbпVBD+ i suffix ov.VBP1ZdNN= ףp=NNP7A`?i+1 suffix ityNNPS{GzNNh|?5NNSPnWDTCDS㥛@VBKJJSh|?5?POS+?VBN~jt?JJR\(\?VBZI +INV-VBP/$?NNPx?VBG#~jJJ|?5^@VBDzGRBRDlRBS㥛DTZd;O@i-1 tag+i word DT lowerJJlJJRMb @NNSi-1 tag+i word RB disturbedJJjt?VBNjtܿi-1 tag+i word CD haveVBPK?NNSKi-1 tag+i word JJS japaneseJJ +?NNP +οi-1 tag+i word DT creamierJJRʡE?NNʡEi+1 word managedRBOn?JJOn i suffix ficNNPX9v?VB!rhJJn@@NN rh?VBNʡEJJRI +RB`"NNS-i word definitelyVBy&1RBRʡERBQ?i tag+i-2 tag CC NNPDTbX9RBy&1?CDClNNPS^I + @JJRB`"?PRP$-ֿJJS?VBZq= ףpNNPOn?NNSMbX9?PDTV-ϿJJSv/?VBDI +VBNMb@WDT|?5^?NN ףp= ?RBS rhRBRV-IN{Gz?VBG)\(VBP/$PRPʡE?VBʡEi+1 word metaphorsRBuVINuV?i-1 tag+i word NN longerRBDl@JJR?5^I ¿NN&1RBR(\i-1 tag+i word NNS showedVBN$CVBD$C? i-2 word ofVBGI +?WDTv?NN~jt?RBSCl@NNPSCl?VBN+?RPʡEFW\(\?VBDA`" NNSQ?CC{Gz?MDʡENNP{Gz@CDMbXJJSI +@PDT%CRBRT㥛 ?EXNbX9пVBPZd;ODTp= ף?POSq= ףp?PRP7A`?RBEUHzG@INˡE?JJR rPRP$)\(?WP{GzVBZT㥛 JJʡE?VB5^I ۿi+2 word conesNNPS333333NNP333333?i-2 word courtroomVBNV-JJ333333ۿVBDS?i-1 tag+i word VBD fineJJx&1?RBd;ONNuVVBNS㥛п i word abbyNNP@CCS㥛JJzGRBh|?5οi+2 word evisceratingNNSOn?NNPOni-1 word indictmentsVB(\@VBP(\i-1 tag+i word WP happenedVBD rh?VBN rhi-1 tag+i word IN defaultNNZd;?RBZd;i-1 suffix lusNNh|?5VBDVBNV-RBp= ףVBZMbNNSd;O?VB|?5^?JJK7A?i-1 tag+i word IN rentNN+?JJ+i-1 tag+i word NNP paperboardNNL7A`尿NNPL7A`?i-1 tag+i word DT chorusNNFx?JJFx i word oatsNNSoʡ?NNbX9?INv/VBZ?5^I i+1 word bobarNN9vNNP9v?i-1 tag+i word JJ australiansNNPSRQ?NNPRQؿ i-1 tag+i word -START- armstrongJJHzGRBMbNNP-@i-1 tag+i word -START- footballNNV-?NNPV-i-1 tag+i word NNS restrictVBP9v?VBD9vi+1 word servesVBPjtƿNNV-NNPGz?i-1 suffix eenWDTS?WPS$~jt?NNSp= ףNNPZd;?JJRK7A`VBNn @DTMb?RP%C NN;OnRBm?NNPSMbX9?VBD rhJJV-?VBZ/$޿VBp= ףؿRBRINSPRP$-?VBGI +@VBPKPRP-CDI +ֿi+2 word scandalVBG+?NNK7A`JJRZd;ORBRZd;O?VBPK7A`?JJ+i+1 word atomsNNS㥛?JJS㥛 i+1 word onesNNP^I +NNMb?JJSClJJRX9v?VBNS?VBPNbX9JJ-?i-1 tag+i word NNP forecastNN5^I ۿINVBDJ +@VBQVBP-޿ i word bosticNNP/$?JJ/$i-1 tag+i word NN forceRBNbX9пVBD/$NN rh?VBN}?5^Ii-1 tag+i word NNP deukmejianJJ= ףp=NNP= ףp=?i-1 suffix ths INDl@VBNx@WDT`"EXDlѿVBDV-RBRʡEVBPQJJGzVBQ?RB{Gz?NNZd;i-1 tag+i word , assemblyNNPn@RBPni-1 tag+i word JJ jamNNS㥛 ¿NNRQ?JJ+i-2 word defendVBG'1ZԿNNJ +NNP9v? i word lashedRBV-VBDV-? i word siftVBK7A?NNx&1VBZMb`i-1 tag+i word IN increaseVBPPn?NNPni word delegatesNNPS+NNS+?i+2 word trucksNN?5^I ?VBNx޿JJx?CD?5^I i+2 word affiliatesVBG/$?NN/$i-1 tag+i word NNP packagingVBGENNE?i tag+i-2 tag VBP TOVBNZd;ONNPZd;O?i-2 word mistsRPJ +INJ +@i-1 tag+i word RB southRB/$@NNˡEJJFxVBD/$i-1 word jaimeNNS'1ZNNP'1Z?i-1 word woodruffVBX9vVBZX9v?i-1 word shoveRP +?IN +i-1 tag+i word DT longstandingNNVBGMbJJv/@i word rebuffedVBN~jt?JJ~jti-1 tag+i word NNS lindaNNPZd;O?VBPZd;Oi-1 word abruptlyJJ}?5^IVBDS㥛?VBZʡEVBNn?i-1 tag+i word IN mascaraNNSK7A`NNK7A`?i word ornetteFW+NNP+?i-1 tag+i word CC encompassedVBNZd;JJ&1VBDˡE?i-1 tag+i word NN vowedVBDPn?VBZ|?5^VBN-i-1 word goldenVBZ%CNNSNbX9?NNP)\(NNPSGz?NNI +?RBQi-1 tag+i word JJ amNN5^I NNP5^I ?i-1 tag+i word DT deeplyRBHzG?NNHzG i+2 word sinkRBy&1?JJy&1i+1 suffix mcaRP-?JJQ?RB-INZd;O?DTZd;ONNSQi+1 word countyVBGSNNQJJn?NNP㥛 @i-2 word plummetedNNS}?5^I?NN}?5^Ii-1 tag+i word VBG toppledVBNS?VBDSi-1 tag+i word VBZ housedVBNCl?JJCli word misinterpretedJJd;OVBNd;O?i+1 word valeryJJʡENNPʡE?i-1 tag+i word VBG laserCCq= ףpNNK7@JJREJJw/ܿRBR{Gzti word completionNNsh|?@NNPsh|?i-1 suffix aigNNP9v?VBPlNNPSS㥛Կi-1 tag+i word VBP passedVBN~jt?RB~jti-1 tag+i word DT shootoutRPZd;NNbX9?JJ1Zdۿ i+1 word us$RB}?5^I?IN}?5^I̿i+1 word clipboardVBZ rhVBPףp= FW㥛 ? i-1 word flyRP}?5^IRB\(\@JJV-?i-1 tag+i word CC haveVB㥛 VBP㥛 ?i-1 tag+i word `` whetherINx?CCxi-1 tag+i word NNP closeCD$CNNT㥛 ?RBˡEi+2 word fillyVBNS㥛JJS㥛?i+2 word sunbirdJJS?VBNSi-2 word offersDTx&?NNRQ@VBNSӿWDTQοJJw/INFxi-1 tag+i word IN swedishJJx&?NNPx&i-1 tag+i word VBD laidVBN'1Z?JJ'1Zܿi-1 tag+i word NNS ironNNSFxNNFx?i-1 tag+i word RB actNNK7?JJK7i-1 tag+i word IN fossilNNS㥛JJS㥛? i word loosenVB/$?NN/$i word woodwindRP+NN+?i+2 word pairedVBNmJJm?i+1 suffix ailVBnJJSHzG?RBR/$VBN;OnҿJJ"~j?NNPnVBZX9vNNSMb?DTS㥛ܿVBGS?POSS㥛?JJRPn@WDTh|?5INL7A`?VBD;On?CCS㥛?VBPRBZd;ORPGzi+1 word firmsNNSQ?NNPGz.NNPS +VBGNNQ?JJ\(@i-1 tag+i word `` publicJJ;OnڿNN1ZdNNPM?i-1 tag+i word `` galvanizedJJ/$VBDffffff?VBSi+1 suffix tusVB+JJM?NNPw/DTn?NNv/?i-1 word retailJJ-VBZJ +NNS?NNSJ +?RBi word footingVBGjtNNjt?i-1 word controllingNNS%CRPy&1̿NN%C?INy&1?i-1 tag+i word IN widespreadNNSzGJJ rh@NNʡEi+2 word scientificVB~jtNNX9vINq= ףp?i-1 tag+i word NN protectingVBG?5^I ?NN?5^I i-1 tag+i word DT inklingVBGENNE?i-1 tag+i word VBN asideRPʡE?RBS㥛NN7A`i-1 tag+i word DT objectNNMb?JJMbؿi-1 tag+i word NNP proclamationNNd;ONNPd;O?i+2 word gainingNNPn?JJV-RB'1ZVBNffffff?i+1 word hoursVBG㥛 JJx?NNK7?JJRB`"?CD%C?RBZd; i word marlboroNNP(\?JJ(\i-1 tag+i word , balzacNN+NNP+?i-1 tag+i word TO judgeVBOn?NNOni-1 word pawingRPʡEINʡE?i-1 tag+i word : declinedVBN-VBD-?i-1 word comingNNPS?VBGGzRBNbX9@NNGzFW+JJ"~RPjti-1 tag+i word -START- grainsNNSʡE@NNPʡEi+1 word throughVBDjt?JJR/$CDS㥛RPv/?JJffffffNNCl?VBGK7A?NNP/$WDT$CVBZʡE?FWq= ףpCCZd;?NNSffffff?VBN/$@VBP+@RBX9vοVBK7ANNPS/$?IN"~ i word viewedVBZ/$VBPMVBNtV@JJlVBDK7ٿi+2 word recycleRBRjt?JJRjt i word seedsNNSh|?5@RBV-NN ri+2 word litigationNNPSQNNoʡݿVBDI +VBN/$JJ@NNPQ?i+2 word mahlerNNS-?RB-i-1 tag+i word DT soughtVBNX9v?JJʡENN~jti-1 tag+i word NN embodiedVBN)\(?VBD)\(i word showbizNNK7NNPK7?i-1 tag+i word RB involuntarilyJJrh|RBrh|? i word poresNNX9vVBZm?EXCli-1 word prisonersVBPDlRBDl?i+2 word waitingNNSp= ףVB)\(VBGX9v?NNMbX9ܿVBNoʡJJFx?VBZp= ף?i+1 suffix delRBRp= ףJJRtV?RBx&1NNS㥛 NNP|?5^NNPS?JJX9v?NNDl i word arbyNNPnNNPx&1?NNPSGzֿi+1 word eubankDTI +NNPI +?i-1 word convictionNNMVBDM?i+2 word adjustableNNZd;VBNCl?JJGz?VBD{Gzi-1 tag+i word NNP plantsNNS/$?NNP/$ i word speedyVBNV-NNI +JJ/$? i word gizmosNNS(\?NN(\i-1 tag+i word JJR willingnessNN`"?JJ`"i-1 suffix oks JJQ?INoʡ?VB#~j@RPffffff?NNDlVBDlNNPI +NNPS~jt@RBRQWDT333333VBZmi-1 tag+i word VBG workaholicJJ5^I ?NN5^I ˿i-1 tag+i word NNP cropsNNStV?VBZtVi+2 word steelmakerNNMbRBX9v@JJ|?5^i word troublingVBGZd;JJS @NN1Zdi-1 word rubberVBMbX?PDTMbRBM i-2 word fareNNRBR/$@RBoʡJJRCli-1 tag+i word NNS pointVBPB`"?NNx&ٿVBDA`"i-1 tag+i word NN trainingNN-?VBG-i word treasuresNNSS㥛?EXS㥛i-1 tag+i word VBD betterJJRK7A`?RB-޿RBR㥛 ?i-1 tag+i word JJ africanJJd;O?NNPd;Oֿi-1 tag+i word NNP letVBffffffVBPV-?VBDw/?i-2 word ralliedDTL7A`?RBL7A`尿i+1 word regulationsVBG(\JJsh|?@NNV-i-1 tag+i word VBD shotNN{GzVBN)\(?JJףp= i-1 tag+i word DT rollercoasterJJ$C?NN$Ci-1 tag+i word PRP offsetVB`"?VBN`"i-1 tag+i word `` rNNSxNNMbX?JJ-i-2 word amdahlJJQ?NNQi-1 tag+i word VBG heldVBNʡE?VBDʡEi word calculatingNNJ +VBGJ +?i-1 word chambersVBPS?INSi-1 tag+i word -START- freeJJrh|?NNPrh|i-1 tag+i word VBP easyRBNbX9JJNbX9?i-1 tag+i word NNPS tryVBP ףp= ?NNP ףp= i+2 word drabinskyVBףp= ?VBPףp= ÿi-1 tag+i word NNP spanningVBG-?NNzGJJV-i-2 word schneiderVBNw/JJw/?i word overregulatedVBNuVJJuV?i-1 tag+i word IN shutdownsNNSDl?NNDli word weldingNNx&?VBGx&i-1 word purchasesVBD"~?VBP"~JJJ +NNQIN?5^I ?i-2 word corruptionNNˡEԿNNS+JJZd;?i tag+i-2 tag WRB VBINClǿDTCl?NNP!rhVBGX9v޿RBI + NN@JJS㥛@i+1 word schneiderJJOnNNPOn?i-2 word circusVBZ?NNPSv?NNSܿNNPvi-1 tag+i word VB substantiveJJ|?5^?NN|?5^ҿi-1 word marketersNNPffffffVB`"VBP`"?NNPSffffff?i-1 word offerNNPSZd;OJJ"~?RBK?NNPHzGDTףp= ?NNSףp= NN`"JJRm?VBN(\VBZףp= @VBG ףp= ?RBRmINrh|?VBDi word brezhneviteNNPHzG?JJHzGi-2 word expiredRBSݿINS?i-1 word birthRB-NNSffffff?RPffffffNN-?i-1 word odiousNNP|?5^JJ|?5^? i-1 word lasNNP"~?NNPS&1?NN/$i+1 word marksJJm?NNS&1NNPZd;ONNV-?FWFx?CD$C?i-1 word promotionJJK7A?NNK7AINZd;OVBZZd;O?i+1 word moonieJJ(\``)\(@NNQi tag+i-2 tag EX :VBZS?POSS i word clonedVBN ףp= ?NNS ףp= i-1 tag+i word NNP mandatedVBNQVBDQ? i word mistsVBZV-NNSV-?i-1 word technicalNNSʡENN-ۿCDK7?i+2 word challengingRBR +NN +?i+2 word corrugatedNNSClNN rh?JJx&i-1 tag+i word VB gearNNQ?JJQi+1 word manorNNV-?JJV-i-1 tag+i word JJ payersNNPS)\(NNS)\(?i-1 word publishingRBRʡENNʡE?i-1 tag+i word CC turnVBRQ?VBPRQi-2 word trickyNNSQտNNQ?i-1 tag+i word DT aggregateJJ㥛 ?NN㥛 i-1 tag+i word NN addressedVBD~jtۿVBN~jt?i+1 word powerhouseNNZd;O?JJZd;Oi+2 word waertsilaeVBGCl@NNCli-2 word meritsVBPvNNSv?i-1 tag+i word RB lickingVBGDl?JJDli+1 suffix sorNNV- @JJJ +FW㥛 NNSoʡi-1 tag+i word , califNN/$NNP/$?i+2 word delayedDTQNNS~jt?VB&1NN~jtVBP&1?WDTQ?i+1 word declarationVBN333333@NNsh|??JJ+ NNP/$? i word rackedVBNMbX9?JJx&1̿VBD?5^I ?i-1 word bonedRP`"?RB`"ֿi-1 word depositaryNNPT㥛 NNPSS㥛?NNSq= ףpNN(\ڿi-1 tag+i word CC gasNNPSffffffNNPffffff?i-1 word collagesVBP#~j@WDTZd;INB`"i word impoundmentJJvNNv?i-1 tag+i word PRP$ itineraryFWףp= NN9v?JJq= ףpi-1 tag+i word NNP proJJCl?NNCli-1 tag+i word DT sharpestJJSQ?NNlJJjti-1 tag+i word `` crazyVBPFxJJFx? i suffix wapNNDl?VBNSVBP~jt?JJMbNNSףp= ۿVBS?i-1 tag+i word VBZ heightenedVBNjt?JJjtܿi-1 tag+i word VBD southRB/$?JJ/$i-1 tag+i word NNS unlockedVBDZd;O?VBNZd;Oi-1 tag+i word VBP mammothNN rhRPX9vJJ~jt?i-1 tag+i word NNP idealsNNS\(\?NN\(\Ͽi-2 word eitherNNCl?VBDL7A`@VBN/$JJV-ڿNNSx&?VBףp= i+2 word shelfNNPSoʡNNV-?JJV-NNPoʡ?i-1 tag+i word IN sourceNN\(\NNP\(\?i-1 tag+i word PRP$ knowledgeNNSzGNN?FWRQi-1 word eddieNN+NNP+?i-1 tag+i word PRP$ openingVBGK7?NNV-JJRQi-1 tag+i word NN risksVBZn?NNS+?NNX9vi-2 word womanizingVBGʡE?NNʡEi+2 word buildingsVBP ףp= ?NNP ףp= i word raiseVBjt@VBPDlNN1ZdӿRB\(\JJQi-1 tag+i word DT oustedVBNFx?JJxֿVBDrh|i-1 tag+i word VBZ nonvotingVBG-JJS?NNQ i-1 tag+i word DT microprocessorNNPSx&1NNPx&1?i-1 tag+i word `` gonVBG= ףp=?NNS$CJJK7 i+2 word pa.NNPSV-NNPV-?i+2 word reductionsVBZ rNNS r?JJ ףp= ?RBDlٿVBD= ףp=i-1 tag+i word , belongsVBZX9v@NNSX9v i suffix WayNNQ?NNPQi-1 tag+i word RB identifiedVBNMbX?JJA`"VBDZd;Oi+1 word requiringDT^I +IN^I +?i-1 tag+i word NNP preferVBPʡE @NNS/$NNuVi-1 tag+i word PRP$ giantJJuV?NNuV i suffix GANNN1ZdۿNNP1Zd?i+1 word controlsJJPnIN}?5^I̿NNS+NNP+?VBtV?NN-?WDT}?5^I?i word zealandNN^I +NNP^I +?i word distributedVBNZd;O?JJOnÿVBD%C i word adsVBZmͿNNPS'1Z?NNS/$NNPA`"i-1 tag+i word , indicatorNNQ?JJQӿi-1 word disappointingJJS㥛?RBS㥛i word mousetrapNNSOnNNOn?i-1 word southernNNS+ӿJJ(\µ?NN-?NNP"~jNNPSq= ףp?i word doubledRBx&1VBNX9vJJ'1ZĿVBDbX9 @i-1 tag+i word NN spewingVBGv?NNvi-1 tag+i word DT suitableJJףp= ?NNףp= i word waitingVBGQ@NN&1JJq= ףpNNPh|?5i+1 word begunVBK7?VBPK7i word referringVBGCl @NNCl i word successfullyVB7A`JJRV-RBK7A`?i+1 word thriftsVB9v?JJˡE?NNʡEVBNq= ףpͿRBx&1NNP)\(i-1 tag+i word VBZ inadequateRB(\NNPZd;JJ"~j?i word rollingJJ`"@NNPʡE?VBG(\NNʡEi-1 word cycleVBZtV?NNStVi-1 tag+i word VBN higherRBRX9v?JJRX9vi-1 tag+i word RP mostJJS1Zd?RBS1Zd i word faceNNrh|@VBD`"JJRX9vVBPQ @JJ&1VBZSNNSsh|?VBV-? i+1 word tongNNd;ONNPd;O?i+1 word tougherRBHzG@JJy&1NN-i+2 word thurmondWDT(\?IN(\i+2 word introducedVBʡEݿNNV-@JJ!rhNNPClӿi word importsFWKVBPJ +JJSVBZ/$?NNSv @NNffffff i word scabsNNS'1Z?NN'1Zܿ i word rocheNNPSI +NNPI +?i-1 tag+i word JJS knownJJMbX9?VBNy&1?NNHzGi-1 tag+i word WDT recordsVBZCl?VBP rhVBDOni-1 suffix zer NNPL7A`NNoʡJJʡE?DTNNS-?NNPS$C?VBDGzVBNGz@WDT? i pref1 ZRBSNNnJJHzGVBZ#~jNNSQNNPPn)@VBK7NNPS ri-1 tag+i word DT potatoNNSʡENNʡE?i-1 word pavedNNp= ף?JJʡERB5^I i+1 suffix ogoNNOn?JJOni word aggravatingVBG/$JJ/$?i word daffynitionNNK7NNPK7?i-1 tag+i word VBP jealouslyVBNV-RBV-?i+1 suffix rmeJJ~jt?NN~jti-1 tag+i word POS greenJJsh|?NNsh|??i word programmedVBNJJ%C?VBDV-ڿi-1 tag+i word JJ dismalJJQ?NNQi-1 tag+i word , sankNN%CVBD㥛 @VBGzRBT㥛 i+1 word private VBN{GzVBP?JJ-?IN5^I VBrh|?NN}?5^INNPS?RB@CC i word clumsyJJ~jt@NN~jti-1 tag+i word IN switchingNN|?5^ɿVBG|?5^?i+2 word euphoriaDTDlINDl?i word ammoniumNN-?JJ(\NNPˡE i suffix iotJJsh|?NNPn?NNPSnNNsh|??i-2 word lessonsNNm?JJmi-1 tag+i word CD monetsNNPSS?NNSSi+2 word emasculateVBN&1VBD&1?i-1 tag+i word DT branchNNCl?JJCl i suffix DanVBʡENN$CۿNNP-?i-1 tag+i word NNP umbrellaNN;On?VBP;Oni+1 word nelsonNN1Zd?CCnVBG?i+1 word offsettingVBVBP?i+2 word terroristVB|?5^VBPV-?NN|?5^ٿi-1 word angrilyVBNd;OVBDd;O?i-1 tag+i word RB maybeRB#~j?JJ#~ji-1 tag+i word VBD lateRBRtVֿJJX9v?VBNףp= RBL7A`пi-1 tag+i word NNS trimNNP9vVBP9v?i-1 tag+i word VBG yellowNNSZd;OJJZd;O?i+2 word senior JJˡE?NNSQNNPVBGQ?NN)\(@VBNV-VBPK7A?LS%CVBMb?NNPSh|?5οRB= ףp=?VBDEȿIN/$i-1 tag+i word IN mourningVBGl?NNli+1 word situationJJZd;O?NN~jtCD rhVBGX9v?i-1 tag+i word DT phonyJJ`"?NN`"i-2 word causingVBG$CۿNN%C?JJQ˿i+1 word environmentalJJZd;INJ +?VBZClDTJ +VBGZd;?POSCl? i-2 word carsVBPClRB ףp= ?INMbNNPjt޿JJ}?5^I?NNMbX9ԿVBD?VBN-i-2 word municipal WDT +?IN1ZdVBNS㥛VBP ףp= ׿RBKVBffffff@JJzG?NN^I +VBDMbȿi-1 tag+i word DT bassNN}?5^IܿNNP}?5^I?i-1 tag+i word DT nodJJ rhNN rh?i-1 tag+i word DT squashedJJS㥛?NNS㥛i-1 tag+i word IN collateralNNNbX9?JJNbX9пi-1 tag+i word NN chokingVBGʡE?NNʡEݿi+1 suffix wesVBN^I +NNP^I +?i-1 tag+i word NN concernsVBZ r?NNSd;O?NNNbX9i word containmentNNT㥛 ?JJT㥛 i-1 word connaughtNNPSCl?NNSmNNP+ۿ!i-1 tag+i word -START- resistanceNNB`"۹?NNPB`"۹i-1 word ransomVBZV-?VBGV- i-2 word e.e.NN+NNP+?i-2 word senate JJ$CӿNNPMbRBrh|@VBG#~j?NN?VBNʡECD{GzԿVBPZd;OVBZS?NNSh|?5οNNPSI +? i word m.b.a.JJX9v޿NNP(\?NNK7Ai-1 tag+i word IN thoughINJ +?RB= ףp=NNV-i-1 tag+i word IN patentNNS?JJSi-2 word threatNNPSw/NNPw/?i+1 word technology NNrh|?VBNtVοJJh|?5IN?NNPMbX9@VB^I +VBG?RBʡEVBDnVBP1ZdNNSni+2 word delaysVBZoʡNNSoʡ?JJ(\?RB(\ i-2 word vaxNNP9vڿNNS9v?i-1 word meeting NN rh VBD?POSS㥛?RBR'1Z?VBN~jtVBZS㥛ܿJJ@INClNNPd;O?RBRQi-1 word krenzNNS`"VBD`"?i-1 word sportingNNSI +JJV-?NNni-1 tag+i word CC allowedNNV-VBNS㥛?JJ~jtVBD-?i-1 tag+i word WDT otherwiseRB +?VBP +i word subpoenasNNSL7A`?NNL7A`i-1 suffix she VBPh|?5VBZJ + @NNPB`"MDV-VBZd;POSQVBN㥛 NNS~jtNN rhVBDp= ף@i-1 tag+i word VBG indifferentJJ`"?NN`"i-1 tag+i word JJ luxuryNNS~jtNN~jt?i-1 tag+i word CC slatsNNSQ?NNQ i-1 word inchRPS㥛 RBDl@JJzGi-1 tag+i word , opposeVBPCl?JJ|?5^ҿVB9vi-1 tag+i word IN mountingVBGK?NNK i word eliteJJZd;NNGzNNSV-@JJSB`"۹ i word cyclesNNS^I +?NNmJJPni word metallurgicalNNOnۿJJOn?i-1 tag+i word RBR heatedVBNh|?5JJh|?5?i-2 word farmingtonNNA`"JJ(\?NNP!rh?i+2 word greekJJffffff?NNffffff޿i-1 tag+i word -START- vernonNNPd;O?INd;O i word gambleVBZd;?NNP+?NN?5^I @JJ/$VBDףp= i-2 word dominatedJJ= ףp=@NNq= ףpVBN?5^I i-1 suffix yorVBZ|?5^VBN-VBDPn? i suffix spyVB= ףp=?NNSjt޿NNjt?VBD= ףp=i-1 tag+i word , distinguishedVBNzGJJ1Zd?VBDCli-1 tag+i word JJ spasmsNNSGz?NNGz׿i+1 word negativeJJR/$RBRK7?VBNjt?i-1 tag+i word NNP receiptsNNPSS㥛?NNS(\NNPT㥛 i word updatingVBGd;O?JJd;Oi-2 word cheeriosVBNv/?JJv/i-1 tag+i word NNP silverVBZ"~NN"~?i-1 tag+i word DT anticipatedVBNGz?JJGz޿i tag+i-2 tag PRP$ VBGNNS-?NNPV-VBGQ?JJNNtV?VBNʡEVBP-޿RBV-i-1 tag+i word IN raisingVBGˡE?JJˡEi-1 tag+i word JJ tumbleNNQ?JJQi-1 tag+i word DT assumptionNNZd;O?JJ|?5^VBZK7Ai-1 suffix tabRBK7?NN|?5^JJNbX9i-1 word producedJJDl?NN= ףp=PDTQ?JJRףp= ?RBRCl߿VBPi-1 word particularly RBRZd;O?INDl?VBGL7A`VBZ1ZdNNPL7A`JJPn@VBNX9v?RBy&1?JJRClRPZd;NN?5^I ?i+1 word attackJJMb?NNS+VBNT㥛 ?NNnʿNNP~jtۿi word withheldVBNn?NNni+2 word kahanVBJ +NNPJ +?i-1 tag+i word RB bereftVBNK7A`JJK7A`?i-1 word savingsVBZ-NNPSy&1?NNSx?JJZd;NNPS?i+1 word successVBP-NN-?JJV-?RBV-i+2 word brownVBPrh|NNPrh|?i tag+i-2 tag VB NN RP~jtJJy&1?NN(\ſVBD/$ſVBN)\(?JJRI +RB{GzܿINy&1?VB"~VBPQWDTx&?DTV-i word flamboyantJJ$C?NN$Ci-1 tag+i word JJ footholdNN(\?JJ(\i-1 tag+i word TO briskVBzGJJzG? i word mccawNNPSvVBN|?5^NNMb?NNP!rh?VB rh i word zilchNNK7A`?NNSQVBNmͿi-2 word deniedVB+NN|?5^?JJV-i word spendingJJV- NNK7I @VBGrhi-1 tag+i word NN capVBNtVNNtV? i suffix NDSNN$CNNPlqNNPSFx @NNSMbX9@ i-2 word hotVBZv?NNSv߿JJ5^I ?NN5^I  i-2 word acreVBPjtRBX9v?VBDq= ףpi-1 tag+i word JJ holderJJRNN?i+1 word forcesJJMbX9?NNSSNNPFxVBGm?NNK7A`@VBN+i-1 tag+i word NNP cronkiteNNP/$?NNPS/$޿i word grapevineNNv/?JJv/i word houndedJJPnVBDPn?i-1 suffix yokVBq= ףp?NNq= ףpi-1 tag+i word JJ serversNNx&1NNSx&1?i-2 word salvadorVBGv/?NNv/i-1 tag+i word NNP summarilyRB-?VBD- i suffix PBSNNSS㥛NNffffffNNPbX9? i suffix cetUHENNPE? i+2 word toniVBGMbXJJMbX? i word doesRBJ +CC#~jVBP +JJ/$IN"~VBZ1Z@NNSףp= NNPV-¿i-1 tag+i word : weekMDQNNL7A`?JJʡEi-1 tag+i word DT germansNNPSV-?NNSX9v߿NNPi-1 tag+i word NNP legislatorNNp= ף?JJp= ף i-1 word home VB-NNPSsh|?@VBGI +VBN1ZdVBPQVBZX9vNNP\(\?JJZdNN@VBD= ףp=RBDl?NNSbX9?i+1 word started NNK7A@DTuVNNSoʡ?NNPMbX9?RBV-׿WDTV-@JJ7A`VBZoʡVBG/$i-1 tag+i word JJ comedicJJn?NNni-1 tag+i word NN flowsVBZQ?NNSS㥛ܿNN^I +i-1 tag+i word DT disputedVBNjt?JJK?VBDV-i-1 tag+i word JJ dessertNNʡE?NNPʡEi-1 tag+i word IN angloJJA`"˿NNPA`"?i-1 tag+i word , centerNNS㥛?JJS㥛i word conveyorVBP/$NNoʡ?JJ= ףp=i-1 tag+i word DT outgoingVBGʡEJJV-?NN)\( i+1 word ricoRB?INCl?NNPK7?NNPSK7RPClCCܿi+2 word strictVB"~j?VBPV-JJRnٿi+2 word alfalfaVBV-NNV-?i-1 tag+i word IN ersatzJJ-?NN5^I ۿFW+i word complyingVBGʡE?JJMbX9NNV-i-1 word plungedJJRK7?RB)\(@INMbNNjtRBR/$?VBN;Oni-1 tag+i word NNP wrestlesVBZ?5^I ?VBD?5^I i+1 word garden FWx&1VBD/$PRP+?JJ)\(?PRP$+NNPV-?NNQNNPS333333VBN9v@VBP333333VB}?5^I?i-1 tag+i word JJ taleNNS?NNPS i word inksNNSzG?JJzGi-1 tag+i word NNP projectedVBD(\JJ(\?i-1 tag+i word VBP madVBNʡEJJʡE?i word containingVBGCl?NN%CJJQֿi word describeVBMb?VBPMb i suffix ercNNPSL7A`NNMNNPV-? i suffix DFCVBV-NNPV-?i-2 word filmsJJʡE?NNK7A`RBjti-1 tag+i word IN mipsNNSB`"NNPB`"?i-1 tag+i word TO oneVB~jtNNS?CD/$?i tag+i-2 tag CD INJJSPn?VBNT㥛ĠINx&ٿNNSZd;@NNPZd;O VBGK?CCn?NNPSDlRBSPnCDQ?VBZ?DTL7A`堿POSV-?RBjt?NNʡEֿVBD\(\?WDT㥛 ?JJK7?i-1 word battleVBV-RP|?5^VBPV-?IN|?5^?VBZ9v?NNS9vi-1 tag+i word VBN meagerRBRK7A`JJ r@RBMbNN;Oni+2 word unescoVBG+VBNI +?NNMbпVBDI +JJ?i word christopherNNP(\@JJ$CRB/$i-1 word skilledNNP-NNS^I +@WPx&i-1 tag+i word NNP parkNNPSDlNNPDl?i-1 word figuresVBP(\?INFx?DTFxѿNN(\VBD-VBN-?i+2 word classesVBZ-?VB ףp= ?NN +VBNzG?JJzGi-1 tag+i word IN bluntJJQ?NNQi word uncertaintyNNSMbNN|?5^?NNP1Zdi+2 word abandonRBR^I +JJR^I +?i-1 tag+i word -START- pollyRBx&1NNPx&1? i+1 word four VBNK7RBCl?IN9vڿNNPSK7?NN~jtۿVBD+?POSV-ݿVBPn?VBZClNNPK7ѿVBKJJMbXi+2 word ignoramusVBN/$?VBD/$i+2 word twistingNNS%CRB%C?i word envisionsVBZDl?NNS rhٿVBD9vi-1 tag+i word VBD distributedJJOnÿVBNOn?i+1 word propertiesJJ^I +VBG1Zd?RPV-?RBV-NNm @VBDffffffJJR/$i-1 tag+i word RB peanutsVBNnVB/$NNS rh? i word fodderNNS ףp= NN ףp= ?i+2 word datesJJ)\(?NN)\(i+1 suffix .v.NNPSjtNNPjt?i-1 tag+i word NNS purgedVBNMb?VBDMbi word maximumVBQJJʡE@NNrh|?RBSHzGٿRB}?5^INNS㥛 i-1 tag+i word NN ticketedVBNjt?VBDjti-1 tag+i word NN broadcastRBRQIN(\NN9v?i+2 word leaguersJJCl?CDCli-1 word mediatorJJʡEVBDʡE?i-1 tag+i word DT adjacentNNGzJJGz?i+2 word experimentallyNNSw/?RBw/i tag+i-2 tag CC POSNN|?5^NNPh|?5?NNPSJ +NNSGzJJˡE@i+1 word novelNNʡE?JJGzNNP'1Z?i-1 word novemberVBGK7NNK7?i-1 word better VBNQ?INK7VBZ +VBbX9@JJSNNS+?RBQVBGjtRPL7A`?NN?5^I ?VBDw/i-1 tag+i word PRP$ firstJJx?RBxi+1 word showroomNNp= ף?JJp= ףi-1 tag+i word JJ marketingVBGQ?NN}?5^IJJʡEi-1 tag+i word POS slowerJJRCl?NNCl i word ricoedNNPS~jtJJfffff@NNPV- i-1 suffix coaVBN333333?NNJ +VBDHzGi word russiansNNPS\(\?NNS\(\i-1 tag+i word DT borrowerJJR/$NN/$?i+2 word affirmationNNrh|?NNSrh|i+1 suffix shiJJ;OnNNP;On?RP?5^I ҿRB?5^I ?i-1 tag+i word -START- toweringVBGjt?NNPjti-1 tag+i word DT jumboJJI +?NNI + i word sweetsNNSʡE?NNʡEi+1 word subtilisNNPSnNNv @JJѿNNP~jti-2 word condosVBN ףp= ?JJ ףp= i-2 word overpaidVB-VBNlJJbX9?i-1 tag+i word VBD japaneseNNPSV-?JJ +NNPsh|?տi-1 tag+i word NNP relationsNNPS-?NNP-i-1 suffix uce RBRsh|?WDTQ?VBNףp= ?IN +ֿDT +?VBGx?NNoʡտJJRsh|??NNSy&1?RBFxPDT~jt?JJQ˿i-1 tag+i word NN worksVBZv?NNSv߿ i suffix vakNNPSK7JJ+?NNP\(\ i word citedVBN rhJJ1ZdVBDv @i-2 word downsizingNNS-JJRDl?RBRMbXٿi-1 word worthJJ&1NNX9v޿RBR rhJJR rh?RBzG@INKVBG$C?i-1 tag+i word IN holdingVBGFxNNFx?i word chemistryNN ףp= ?JJ ףp= i-1 word contactVBZQNNS(\NN\(\@ i word jesseNNPSClɿNNPCl?i word accelerateVBsh|??VBPsh|?i+1 word hmongJJzG?NN?5^I NNPCl߿i-1 tag+i word IN buyingVBGm?NNm i suffix ARSNNPSQ?NNS"~j@NNzGNNPOn i word excessJJT㥛 @VBZd;NNuVRBjti-1 tag+i word PRP$ soilNNS+NN+?i-1 word roommatesVBP(\?NNP(\ i-1 word unit JJR|?5^NNX9vWDT rh?IN rhտVBZw/?NNSw/VBDx&1?RBR|?5^?VBNKJJ"~j?i-1 tag+i word VBZ attachedVBNp= ףJJp= ף?i-1 tag+i word DT officialJJm?NNmi-1 tag+i word CD nextJJE?INEi word startedVBDw/ @VBNtVJJ1Zd i-1 word -VBNy&1?JJMbVBZQ?NNSV-?NNPDlMDQNNS@VBDS㥛ؿi-1 tag+i word RB deployedVBNGz?JJGzi-1 word clintNNPnNNPPn?i-1 tag+i word JJ reachesNNS ףp= VBZ ףp= ?i-1 tag+i word , chainsVBZX9vNNSX9v? i+1 word away VBNZd;O?VBZCl?DTy&1VBPn@NNoʡVBDL7A`?VBP|?5^?RBFx@RP?5^I ?NNSoʡNNPZd;OVBG9v?JJ{Gi-1 word mentioningVBPsh|?ſNNsh|??i+1 word censorNNS-?NN-i-1 tag+i word RBS survivedVBN9v?JJ9vi word manufactureVBףp= ?VBNNN?JJRףp= i+1 suffix vesVBD-JJRHzGCDp= ף?MDZd;OVBB`"JJA`"@DT"~jܿNNS!rh NNPS+?VBG@VBNx&WDT(\@INA`"VBZMb?NNʡE?POSjt?VBP rh@RB1ZdNNPRQi word erroneousVBK7JJK7?i word casualtyNNPS~jtNNx?JJxNNP~jt?i-2 word typicallyJJRP9vVBN?RBS?INl?i-1 tag+i word PRP$ brotherNNn?CCni+2 word capitaVBZp= ףNNp= ף?NNSp= ף?JJʡERB5^I  i word holmesVBZ%CNNP%C?i word ideologicalNNS+JJI +?NNJ +i-1 tag+i word RB accurateVB!rhJJQ?RBGzi+1 word seasonedRBS?JJSi-1 tag+i word DT lonelyRBʡEJJʡE?i word reportingVBVBGlNNV-@JJʡEINi-2 word disturbVB+?NNS+JJZd;?NNZd;i-1 tag+i word , aidesVBZ333333ۿNNSףp= ?RBGzi-1 tag+i word NN spurredVBN"~j?VBD"~j i suffix mal NNPSK7ARBK7AVBZB`"NNSMbNNPx&1?VB^I +׿NNw/VBNQVBP+JJ-'"@i-1 tag+i word CC usedVBNnVBDn?i-1 tag+i word IN buryingVBG+?JJ+i-1 tag+i word , workedVBD?VBNjtNNP/$i word benefitedVBN+VBD+@i-1 tag+i word DT touchingNN|?5^JJ|?5^@i-1 tag+i word TO fundamentallyVB~jtRB~jt?i-1 tag+i word NNP herselfVBZx&1PRPx&1?i-2 word womanVBDffffff?VBPffffffPRPK7A`?RBPnPRP$K7A`VBGK7?JJjtĿi-2 word disabledVBnVBPn?i-1 tag+i word DT sniperNNS㥛NNPS㥛?i-2 word democratsVBZxRBX9v?NN333333VBDL7A`?VBNL7A`VBP ףp= ?JJX9vi-1 tag+i word DT hurdleNN{Gz?JJ{Gz i+1 word teaJJ!rh?VBD!rh i+2 word dareJJS?NNS i suffix oadNNPSOnRB(\@NNET@VBP/$JJZd;NNS}?5^INNPZd;VBGzi-1 tag+i word WDT fliesVBZ-?VBP-i-2 word entourageRP-?RB- i word checkVBZZd;NNSSNNPMbVB{G@RBx&1ܿNNV-?VBPʡE?JJGzi-1 tag+i word DT essayNNy&1?JJy&1i-1 tag+i word WDT pointsNNSm?JJmi-2 word independenceVBGHzG?NNHzGJJ1Zd˿NNP1Zd?i-1 tag+i word , mildewNNSh|?5NNh|?5?i-1 suffix gnaVBPnVBDn?i word uncertaintiesNNS|?5^?NN|?5^i-2 word fabricVBD1Zd?NN1ZdJJ`"?NNP`"i+1 word thumbJJ333333?NN333333i-1 word quartersVBPK7A?WDTffffff?INffffffVBDK7Ai-1 tag+i word : programCC= ףp=ڿNNZd;O?NNPˡEi+2 word capabilityJJ;On?RB;Onҿi-1 tag+i word VBZ displayedVBN333333?JJ333333i+1 word bombersNNPV-NNV-?i+1 suffix mr.NNSClWPB`"?WDT"~jRBQֿVB}?5^I?VBGS㥛@VBDS?CC\(\?INq= ףp @VBPA`"?JJQJJSX9vPOS'1Z?VBN rhCDjt?VBZ@NNPI +MDV-NN/$RPHzGDTS㥛i+1 word lindaCC-RBL7A`尿INS㥛?i-1 word hughesNNPSZd;O?NNSw/NNP{Gz?i+2 word profitVBS㥛WDTjt?RBnNNSJ +?NNPCl?VBDv?JJR/$@VBZ;On?RBR{GzINh|?5JJQ@NNy&1?PDTv/VBNvVBPV-PRPSDT~jtx?i-1 tag+i word POS nameNNjt?JJjt i-1 word junkVBZd;ONNS9vʿNNHzG?i-1 tag+i word IN colombiaNNPK7A?NNK7Ai word lockheedNNNbX9ȿNNPNbX9? i word growerJJRZd;NNZd;?i-1 tag+i word , gooseberryVBPRQVBNGzNN?i+2 word capelNNP}?5^I?NNPS}?5^IVBNMbVBDMb?i-2 word alternativeWDTI +?DTI +NNP+?VB+RBR"~?JJR"~i+2 word verdiWDTˡE?DTMbؿJJSQNNQ?INʡEi+1 word viewedNNX9vNNPX9v?i-1 tag+i word '' weirdJJx?NNxi+2 word somedayNNPSx?NN rhNNP r? i word alikeVBPZd;NN= ףp=JJMINZd;RBQ@i word understandingNNQ?JJQi-1 tag+i word , assertsVBZ-?NNS-i word apartmentNN rh@JJl VBDFxѿi+1 word searsVBPv/?JJܿIN{Gzti word equivalentJJʡEs@VBPFxѿNNX9vRBq= ףpVBD/$i+2 word diversifyJJ;On?RB;Oni-1 tag+i word -START- quakeVB/$ӿNNbX9?NNP/$ i word nestleNN{GzJJ333333NNPףp= ?i+2 word footballINMbX9VBPoʡ?NN}?5^I?NNPzG i word yankeeJJ ףp= NNPMb?NN/$? i suffix ids RPGzNNv/VBP\(\VBZ~jt@NNS rhQ(@NNP/$VBʡENNPSzGʿJJw/VBDK7AVBNV-RBSi-2 word sillyNNn?JJnѿi-2 word clubsRPK7A?RBlڿIN ףp= i-1 tag+i word PRP$ easternJJlNNPl?i+2 word familiarVBP/$NN/$?i word tong'ilNNPS)\(NNP)\(?i-1 word jokinglyVBNffffff?JJ/$VBDw/Ŀi-2 word revolutionaryNN+?IN+i-1 tag+i word DT brickNNSZd;JJSx&NNGz? i+2 word your VBGoʡ?JJzG?NNERBV-׿INZd;?DTX9vNNS'1Z?VBn?VBDK?VBNPnCD%C?VBPv/WDT +οi-1 tag+i word ( !HYPHENNNP$C?CDB`"?JJ+NNV-INGzοi-1 tag+i word DT barcaloungerNN㥛 ڿNNP㥛 ?i-1 tag+i word VBN busilyRB;On?VBNʡEJJv/i word structuralJJRQ?NNRQi-1 tag+i word CD bribeNNZd;?NNPZd; i suffix auxNNS{GzJJ?NNZd;Oi+1 word phoenixRB+?NNP+i+2 word retailVBG/$RBMbNN/$?VBDm?VBNGz?JJGzοINMb?VBmտi-1 word innovateRBR +?JJR + i-1 word sr.VB)\(VBP"~j?VBD-i tag+i-2 tag VBZ ,RBRX9v?VBNK7ACDK7WDTK7A`?IN9vʿDT-VBD-WPS㥻?NNv/JJRzG?JJm?NNSMb?VBP+?PRPV-RBlVBGK7?VBV-?RPI +VBZ|?5^PRP$V-?NNPSc@i-1 tag+i word JJ featuresNNS?NNi-1 tag+i word VBP approvedVBN7A`?JJ7A`i-2 word colonialNNPv/?JJv/i+1 suffix eamJJ-?JJSy&1RB'1ZJJRGzPRP$ r?RBSʡERBRh|?5οVBNGz?IN%CDT;On@NNSFxNNP%C?NNPSV-NN~jt?VBP?i-1 word polledVBP;On?IN$CVBD㥛 ?i word rainbowNNPMb?NNSv/NN?i+2 word flaggingVBK7?VBP?5^I JJRClٿ i word gopVBT㥛 JJX9vNNˡENNPK7@ i word implyVBPMb?RBMbi-1 tag+i word -START- samuelNNPJ +?VBJ +i-1 tag+i word NNP meanwhileRB{Gz?NN{Gzi tag+i-2 tag JJS CDJJ/$ѿVBNGz?NN^I + i-1 word fareRBRK7A`?NNʡEJJR ףp= i word tennisVBNQNNbX9 @JJRQJJ +i-2 word contraJJR +RBR +?i+1 suffix eloVBx?JJxֿi-1 tag+i word NN faceVB-?VBP~jtVBD#~ji+1 word parts JJ㥛 ?IN?DTMb?VBG ףp= ߿NN5^I @PDT/$VB(\VBP~jtNNSrh|?i-2 word hurterJJK7NNK7?i-1 tag+i word ( sNNP$CVBNQٿNNMPRP$C?i+1 word disputeVBGJ +?JJx&1?NNp= ף i word risksNN)\(JJ/$ӿVBZV-NNSK7 @i-1 word lorenzoVB~jt?VBP~jti word extensionNNx?RBxi+1 word specificallyVBD"~?VBNn?JJ"~NNPni+1 word patients IN?5^I ?NNPS㥛 NN|?5^?WDT!rhJJRQDT^I +NNP7A`ڿVB9vJJS9v?CDK7A`?i-2 word september VBDtVVBNJ +JJQ?NNS{GzRP`"޿RBn@CD5^I ?INPnVBZA`"i-1 tag+i word VBG backVBԿRP(\?RBK7?NNCli+2 word tarnishedNNMNNPM?i+1 word vendorsJJZd;O?INZd;Oi-1 tag+i word VBD forecastVBNMbX?NNp= ףRBRjtܿi-1 word emphasizingNNS +޿NN +? i-2 word woolVBZ~jtNN\(\?WDTmJJCl?RBCli-1 tag+i word , accordsNNS/$?RB/$i word undergraduateNNS?JJSi word grantedVBNRQ@JJ`"VBD\(\i word playersNNPSsh|?ſNNSS㥛?NNPCli-1 word believedDTMbX?RBGzINK7ѿi-1 tag+i word NN narrowsVBZS?NNSS i suffix ord JJR+NNSV-VB㥛 ?VBG rFWMbX9VBPp= ףJJX9vVBZ㥛 NNPx&1@NNPS~jtNN +@VBNx& i suffix bed NN rhVBNv%@CDMbRB VBZ9vNNSX9vNNP+VBPn JJV-?VBD{G:%@VBPq= ףi word torchmarkNN~jtNNP~jt?i-1 word comfortableVBGGz?NNGzi word moreverRB rh?NNd;OοNNPJ +i+2 word harmsWDTMb?INMbi word financingsVBZX9vNNSX9v?i-1 word secureVBsh|?VBG}?5^INN}?5^I?JJsh|??VBZ{GzNNS{Gz? i word runoffNNE?JJEi-1 tag+i word NNS exchangeVBxƿVBPL7A`NN9v?i-1 tag+i word DT pitNNS9vҿNN9v?i-1 tag+i word NN profitNNQ?VBN333333JJOni-1 tag+i word JJ committeesNNSK?NNPK׿ i-2 word brosNNPS)\(?NNS)\(i+1 suffix ghsIN +WDT +?NNp= ףVBDp= ף?i-1 tag+i word VBN imperiousJJ+?NNSRBx&i-1 tag+i word PRP thatRPjtƿVBP/$WDTX9vϿRB1Zd@INʡE?DT^I + i-1 tag+i word VBZ unchlorinatedVBN rh?JJ rhi-1 tag+i word DT muslimsNNPSGz?NNSK7ANNP1Zdi-1 tag+i word -START- remicJJx&1NNPx&1?i+1 word pitfallsWDT/$@WP/$i word historicallyNN}?5^IRB}?5^I?i-2 word unsecuredVBPx&VBNQ?NNZd;VBD rh?i-1 tag+i word NNS shippedVBNx?VBDxi-1 tag+i word `` fanfareVBMbX9ԿNNPn?JJxi-1 word economistsVBˡERBMbX9?VBDQ@VBN9vVBP"~j@JJ9vi+1 word candidacyJJMbX9?NNMbX9i-1 tag+i word -START- expectJJT㥛 INzGVBK7@VBPClۿRBCli+2 word refurbishedNNOn?VBDOn i suffix uffNNv/@JJ7A`?NNS333333NNPjt?MDX9vNNPST㥛 RBʡEi-1 word mattersJJFx?VBPZd;RBRˡE?RB +i-1 tag+i word IN saltNN|?5^?JJ|?5^i word rendezvousedVBD+?VB+i-1 tag+i word NN authorNNCl?INCli tag+i-2 tag VBN NNPIN1Zd?NNSRP1ZdRBR rh?VBP?RB rhͿ i-2 word thenVBZMb?INx&?VBGOn?RB(\?VBD +޿RBR\(\@VBP rh?VBNʡEݿNNP ףp= ?VB ףp= ?POSZd;JJR\(\MD\(\?JJnRP~jt?NNtV i+2 word hopeNNSCl@NNy&1ԿRBQNNPNbX9?NNPSL7A`i word wesselsNNPS/$NNP/$?i-1 tag+i word NNP spillVBNN?i word reformerJJJ +@NNJ +i+2 word broughtNNףp= ?WDT(\?JJp= ףIN(\VBZ-NNP{Gz?NNPS{GzRBjt?i-1 tag+i word NNS rejectedVBN?5^I VBD?5^I ?i word victimsNNPʡENNSʡE?i+1 suffix nksPRPʡE?RB5^I DTA`"VB rNNPSffffff޿VBG@JJ&1 @NNPv/NN +RBSV-JJR-NNSX9vVBDQ?CDHzGVBN(\JJSV-?WDTS?INMbX9?i-1 tag+i word RB okVBNʡENNPˡEUH&1ڿJJGz@i-1 tag+i word JJR qualityNNSJJS?i-1 tag+i word DT typeNN1Zd?JJ1Zdi-1 tag+i word RB supportingVBGbX9?NNbX9i word blockingNNoʡVBP-VBG(\@i-2 word surgicallyJJ?NN̿i-1 tag+i word DT hearingsNNS&1?JJR&1i-1 tag+i word VBG happenedVBNʡEVBDʡE?i-1 tag+i word DT inspectorVBNMbXNNMbX?i-1 tag+i word CC aidNNV-VBNV-ݿJJ!rh̿VBrh|@i word excludesVBZ-?VBD-i+2 word discussionsVBD ףp= VBN ףp= ?RBQ?JJQi word illuminatingVBG'1ZNNP'1Z?i+1 word murderNNPSffffffNNPffffff? i+2 word philCC1ZdNNPSNbX9NNCl?RBClNNP?5^I ?i+1 word overtimeVBN rhVBD rh?i+2 word socialistRPMVBNM?i+2 word finallyRB(\@NN|?5^?VBP|?5^ٿJJ/$?IN|?5^NNP5^I RP#~ji word preserveJJSVBZOnVB333333? i+2 word golfVBG-޿VBZOnNNSL7A`?NNbX9޿i-1 tag+i word JJ anglesNNSn?NNni-1 suffix odyNNPSy&1?RBA`"NN(\VBDS?VBN rhWDTMbX9?JJV- @NNSnVBL7A`@POS-PRPZd;O߿INNbX9ȿVBZNbX9@NNPy&1i-1 tag+i word CC legislativeNN7A`¿JJ7A`? i word glaresVBZ~jt?NNS~jti-1 word unimprovedVBGV-NNV-? i suffix nabNNPl?CDl i word freaksVB~jtNNSv/?NNi+1 word selveVBZNNS?i-1 tag+i word DT statutoryJJ|?5^@NN|?5^i-2 word political JJQIN$C?VBG7A`?NN&1VBD9vWDTE?DTT㥛 RB rhٿVBN9v@VBPB`"۹i-1 tag+i word IN rubberPDTʡENNV- @RBMVBDMbVBtVi-1 tag+i word NN recommendsVBZ7A`?NNS7A`i tag+i-2 tag NN ``JJ|?5^:@VBNzGVBK7ٿRPlPRP(\?VBGrh|DTZd;?NNPSzGڿ''Q?VBD(\?RBS)\(POSQ뱿NNPzGVBZ㥛 NNʡE?JJS)\(?RBEINJ +?NNSOn?FWy&1VBPCli-1 tag+i word VBD chaoticJJtV?VBNtV޿i+1 word pallorJJS?NNSi-1 tag+i word JJ containsVBZ|?5^?NNS|?5^ i suffix fixVBGz?VBDGzi+1 word lesbiansJJ/$NN/$?i-1 word groupsIN5^I ۿVBX9v׿VBDDl?VBNv/VBP~jt?WDT5^I ?i-1 tag+i word DT missileNN`"?JJ`"i-1 tag+i word CC tiedVBN-VBD-?i+1 suffix pmgJJPnNNPn?i-1 tag+i word JJ showingVBG +NN +?i-1 tag+i word NNS committedVBNx?VBDx޿i-1 tag+i word VBG continentalNNClNNPCl?i+1 word women JJ/$?NNʡEӿJJRK7A`?RBʡEDT(\?NNP7A`?VBGvVBN"~INHzGVB"~i-1 tag+i word NNP onePRPK7?NN{Gz?NNP rпCDrh| i suffix lleNNP+@NNPSʡEۿNNV-FW+?JJZd;NNS^I +i+1 suffix zed NNˡEVBN'1ZVBPWDT?5^I ?RBL7A`@DTʡEͿVBm?RPS?INPn?NNST㥛 ?JJ㥛 VBD%Ci-1 tag+i word -START- goodNNPˡEVBNMbJJv/?i-1 tag+i word JJ assistantJJv/?NNv/տi+2 word pertussisNNS rJJ r?i word humanitarianJJ?NNi-1 tag+i word JJ sluggishVBNףp= JJףp= ?i+2 word painsVBB`"VBP~jt@NNSuVVBNbX9޿i-1 tag+i word CC televisedVBNh|?5?VBDh|?5 i suffix JonNNPE?JJEi-2 word simplyJJRNbX9?VBNx&1?JJT㥛 WPV-NNPffffff?NNffffffֿRBRNbX9 i word litleJJ|?5^?NN|?5^#i-1 tag+i word -START- occasionallyRB(\?NNP(\i word deceptiveVBPV-JJV-?i-1 tag+i word IN weakeningVBG㥛 ?JJ㥛 ڿi word lendingVBZ7A`VBGGz JJp= ףNNʡ@i-1 word europeansVBZd;߿VBPX9vVBNA`"@JJS?INS i-1 tag+i word VBN biotechnologyRPh|?5NNh|?5?i-1 word thousandsRBRL7A`?JJRL7A`i+2 word everlastingJJRoʡJJoʡ?i word ironicallyNNP/$?RB/$տ i word hawksPRP$ rNNSjt@PRP)\(NNx޿i-1 tag+i word NNS proppedVBNOn?VBDOni-1 tag+i word IN hastyNNףp= NNSZd;JJn? i word grainVBNbX9VB)\(NNx& @RBx&ѿJJ!rhi-1 tag+i word RB weighsVBZA`"?JJA`"i-1 tag+i word NNP damagedVBN(\?VBD(\i-1 tag+i word IN multiplesNNS5^I ?NN5^I i-1 tag+i word `` notebookJJK7AؿNNK7A?i-1 tag+i word JJ wearyJJv/?NNv/i-1 tag+i word , hammeredVBN/$?VBD/$i-1 tag+i word RB rainNN?5^I ?VBP?5^I i-2 word pacificNNPSMbXNNPMbX?i-1 tag+i word CD insideVBZ+JJV-@INCli-2 word labor VBNq= ףp RBX9vVBZd;O?VBZd;O?JJ-?NNxNNPZd;O?VBD1Zd?VBPjtƿNNS+η?i-1 tag+i word PRP supposedlyRBGz?VBDGzi-1 tag+i word RB offRP&1ҿRBMbXJJ rhINtV@i-1 tag+i word VB reducedJJzGVBNV-@RBNbX9i-1 tag+i word DT prettyRBE?NNS ףp= ߿JJ'1ZNN ףp= i+2 word alternativesVBPQ?NNQ i+2 word losNNT㥛 ?VBNFx?VBPˡEԿJJQVBZ|?5^NNS$CNNPMb @NNPSv i-1 word slumVBGʡE?NNʡEݿi word misconductNNS?NNPSi-2 word sportsIN~jt?RBd;ONNv?VBDjt?VBNrh|VBPv׿WDT(\JJMbX9Ŀi-1 word derivativesVBP r?VB r i word nastyJJOn@JJSClNNB`"RBsh|?i word richterianJJDl?NNPDli-1 tag+i word DT squirmingVBG +?JJX9vNNZd;Oi-1 tag+i word CD declinedNNST㥛 VBNrh|ϿJJ5^I VBD/$?i+1 word rogersNNMڿNNPM?i-2 word culminationWDT ףp= DT ףp= ? i+2 word cropNNV-INMҿRPM?JJV-?i-2 word attractsJJ-CD-?i+1 word shiversJJClVBDCl? i-2 word drewJJ|?5^?NNx޿VBGmݿi-1 tag+i word DT changedVBD`"?VBN(\?NNoʡ i+1 word dumbRBZd;O?JJZd;Oi-1 tag+i word CC disruptVBZJ +VBn?NN"~i-2 word rejectedNNsh|?NNP?JJL7A`? i-1 word lagVBPnINn?i-1 tag+i word CC slappingVBG(\NN(\?i-1 tag+i word DT logicNNSFxNNFx?i-2 word mansionsNNjtVBPjt?i-1 tag+i word DT stuckNNS%CJJ%C?i-2 word recreationalWDTIN?i word politicsFWoʡJJ9vNNS333333?NNPGz?NNPSGzRBK߿NN/$?i+1 suffix iomNN-JJ-?i-1 tag+i word WRB panelliNNQNNPQ?i+1 suffix cawDT(\տNNPq= ףpRBq= ףp?NN-INS?i-1 tag+i word RB submittedVBN+?JJ+߿i-1 tag+i word IN liftsNNST㥛 ?NNT㥛 пi+2 word mecaniquesVBZIN rhNNP&1?FW&1ҿi+2 word alvinVBP\(\NNS\(\?NN ףp= ?JJ ףp= i-1 tag+i word DT jarringVBG"~jJJuV@NNCli-1 word jointlyVB/$?VBPx&?VBN`"?JJ`"VBD~jti+1 word treatmentsNN㥛 ?JJ㥛 i-1 tag+i word IN mountNNPS\(\NNP\(\?i-1 tag+i word DT miserlyJJ(\?RB(\i-1 tag+i word NNS plugVBPClNNCl?i-1 word sippedVB/$NN/$?i-1 tag+i word IN combatNNSK7ANNDl?JJOn i+2 word gold JJ}?5^IPDTtVֿVBPV-RBZd;ODTtV?NNd;O?CC'1Z?IN;On?VBZl?i-1 word lifetimeNNRQCDRQ?i-1 tag+i word RBR sterileJJV-?NNV-i+1 word guaranteeWDT"~j?IN"~ji-1 tag+i word CC constableJJS˿NNPS?i-1 tag+i word JJ manufacturersNNPSsh|?NNPsh|?? i word painNNS1ZdNNCl?JJ~jti+2 word jitteryVBPˡENNn?NNP{Gz i suffix BNNPS㥛NNS㥛?i+2 word janneyVBGSſNNS?i word whiskedVBNl?VBDli+2 word awaitedWDT/$@WP/$i-1 tag+i word NN leavesVBZV-?NNSV-i-1 suffix obeNNPS%CNNJ +NNP7A`?i-1 tag+i word IN riskVBPx&NN&1?JJ`"VBV-?i-1 word siblingsJJx&1?NNx&1i-1 word shootingRP\(\RB\(\@i-1 tag+i word NNP circuitVBPHzGNNPHzG?i-1 suffix eseNN&1VBDX9v?IN= ףp=?DTB`"VBZ5^I ӿNNPMbVBV-@VBGbX9ֿNNSffffff@RB;OnJJ-VBNS㥛VBP?RP|?5^ѿNNPS\(\i-2 word imposingJJrh|?NNrh|i-1 word microsystemsJJ9vVBD9v?i-1 tag+i word NN activityNNʡE?NNPʡEƿi-2 word waiteNNPSZd;ONNPZd;O?i-1 tag+i word RB confidentJJ"~j?NN"~jԿi+1 suffix zleJJˡE?NNˡEi+1 suffix urn NNV-VBNmRBR|?5^RBrh|?NNSoʡNNPSCl?VBG7A`?JJ"~j?NNP rhͿIN)\(i+1 word twistedVBNq= ףp?NNq= ףpi-1 word changingJJ)\(INd;ONNS)\(?DT%C?WDT"~i word exemplarJJ-NN-?i+1 word diplomatNNPjtJJ"~?NN`"i-1 tag+i word POS niceJJ1Zd?NN1Zdi-1 tag+i word VBP watchedVBN%C?VBD%Ci-1 tag+i word NN legislatureVBP1ZdNNbX9?JJV-i word germansNNP1ZdVBP~jtNNS-@NNPS333333?i+1 word energyVBʡE?JJsh|?NNJ +VBNRB/$NNS9vNNPx&1@i word anxietiesNNS +?NN +i-1 tag+i word CC fenugreekVBK7NN?JJni-1 tag+i word CC italianJJMb?NNPMbi-2 word batibotVBZMbX9?NNSMbX9i-1 tag+i word ( listeningNNv/ͿVBGv/?i+2 word stalinVBNZd;?JJZd;߿i word provostNNQNNPQ?i-1 tag+i word CC causesVBZDl?NNSDl i+1 word massVBG)\(?NN?5^I JJZd;O?i+1 suffix undVBN1Zd@DTFxNNPw/NNS$CۿJJˡEVBDv/VBGQ?NNPS;On?NNh|?5?POS?JJRV-?VBZB`"ٿVB{GzPRPGz?RBM?IN'1Z WDTffffff?PRP$GzVBPK?i word provideNN'1ZVBPq= ף@JJn IN ףp= VBˡE@RBCli-2 word retailersVBN㥛 RBK7?VBG"~@NN"~JJMbi-1 tag+i word NN piledVBN?VBDi+2 word extremelyVBGףp= NNEJJtV?i-1 tag+i word VBP quietVBNuVJJuV? i suffix -23JJnNNPNbX9CDX9v? i+2 word feelDT;OnVBPJ +?VBV-JJ= ףp=IN;On?i-1 tag+i word VBG fabricNNS`"NNp= ף?JJM i word finesVBZx&ѿNNSS㥛@NNZd;OJJl i+1 word hongINS?DTSNNPSVBS?RBSNNFxVBNS?JJuV?i+1 word imperfectionsJJV-?NNV-տ i word artsNNSx&@NNPI +VBZMNNPSףp= ? i word dishNNx?JJxi+1 word exhibitsVBPI +?VBI +޿i-1 tag+i word -START- twentyNN ףp= CD ףp= ?i-1 suffix oulVBN(\?NNPClVBʡENNPSCl?NNS rhi-1 suffix .a.VBGq= ףpNNbX9ƿNNPʡE?i word cardholdersVBPV-NNSV-?i-1 word sparkedVBG|?5^NNjt@JJ\(\i-1 tag+i word CC littleNNffffffVBZ(\ؿJJ'1Z@RBI +i+1 word margin NNSV-VBG%C?VBNlCDZd;O@JJQ?VB"~j?NNRQVBPV-NNP#~ji+2 word answersVBGףp= JJףp= ?i-1 tag+i word PRP swimVBPQ?VBDQi+2 word proceedingsVBG'1ZNNB`"?VBDJ +?VBNJ +JJ'1Z?NNPB`"i+1 word familiarJJ`"CD`"NNP^I +NNSOn?NN`"@i-1 tag+i word VBD expendituresNNSffffff?VBNffffffi+2 word force IN7A`NNPSGzNNClVBDv/?VBN r?WDT/$?JJS㥛VB rhͿVBPQ?DTV-NNP ףp= ?i word creditorNN\(\?JJ\(\i-1 tag+i word TO domineeringVBGzVBGףp= JJ(\?i+2 word attractionPDT+?DT+i+1 word workingsJJ r?NN ri-1 tag+i word CD componentsNNSX9v?NNX9vi-1 word ownersVBPK7?JJuVVBZMbX9MD ףp= ?RB/$?NN|?5^VBDsh|?ݿ i suffix adaVBsh|?ݿNNPSmNNmVBPK7ɿJJ~jtNNPjt @i-1 tag+i word NNP helicoptersNNPSrh|?NNPrh|߿i-1 tag+i word VB workingVBG?5^I ?JJ?5^I ҿi-1 tag+i word NN reeledVBN1Zd˿VBD1Zd? i-1 word hartVBPʡENNʡE?i-1 tag+i word CC unobservedVBDClJJCl?i-1 tag+i word IN outdatedJJ rh?VBD rhi-1 tag+i word POS seriesNNSQNNA`"?NNPv?i-1 tag+i word RBS patentNN~jt?JJ~jti+1 suffix elsVB= ףp= NNPS(\RBRnJJRuV @WDT㥛 ?NNPZd;O?VBG;OnNNS&1VBP333333ӿJJX9v@IN= ףp=?VBNV-?NNMb @VBDS㥛VBZ9vi+2 word libyansVBG?NNi word complainedVBNS㥛NNv߿VBDʡE@i-1 tag+i word , minn.NN~jtNNP~jt?i+2 word dieselVBNCl?VBDCli-1 tag+i word TO creakVBrh|?NNSrh|i+2 word notes VBDlJJSI +VBNGz?JJR rh?UH!rhRBp= ף@NNS5^I NNP rhVBGDlѿJJ}?5^I?NN(\?i-1 tag+i word JJ recordedNNQVBNx&?JJ/$i-1 tag+i word NNS lightNN/$?JJ/$ݿi-1 tag+i word JJ machinistsNNS/$?NNP/$i-1 word stunnedPRP$333333?PRP333333i-2 word educatedNNS1ZdNN1Zd? i suffix eskNNS~jtRBffffffJJ{GzNN~jt@i-1 tag+i word POS preciseJJHzG?NNHzGi+2 word honedVBGy&1NNy&1?i word intellectVBP+NN~jt?JJ;Oni-2 word turned CDtVJJR~jt?VBK7JJx@NN1Zd?FWV-?RB^I +NNPV-VBGʡERBR$CVBNK7IN^I +?NNSK7?i-2 word explodedJJʡE?NNʡEi-1 tag+i word IN xeroxJJtVNNV-׿NNPuV?i-1 tag+i word NN turbinesNNClNNSCl?i-1 tag+i word NNP hotelsNN?5^I ڿVBZh|?5NNSV-?i+1 word parkerJJ+NNP+?i-1 tag+i word NNP nakedJJffffff?VBDffffffi-1 tag+i word DT housingVBGOnÿNNoʡ?NNPsh|?i+1 word refurbishedNN$C?RB~jtJJOn i word urgingNNP r?VBGK7A@JJKNNv/i-1 tag+i word , mexicanNNPSJJS? i suffix micRB= ףp=NNSx&NNPl@VB`"?NNPSSJJR @NN\(VBN&1 i-2 word ufosRB(\IN(\?i-1 word dialsVBGZd;?JJZd;i-1 tag+i word NN equalFWy&1|VBZy&1ԿJJZd;?NNd;Oi+2 word collegeVB'1ZWRB9vNN`"VBP'1Z?JJ`"?NNP9v?i-1 word counteredDTS?INSi+2 word asianVBjtCC rh@JJSZd;O?PDTFxRBSZd;O׿DTʡEi-1 tag+i word JJ galleryNNCl?RBCli-1 tag+i word DT furtherJJ#~j?NNZd;JJRˡE@RB?RBR- i+2 word clothiersNNP㥛 ?NN㥛 i-1 tag+i word JJ experienceVB/$NN/$?i-1 tag+i word PRP$ buglikeJJV-?NNV-i-1 tag+i word NN testifiedNNGzVBDˡE?VBNtVi-1 tag+i word NNP challengeNNPS +NNP +?i-1 tag+i word TO stressVBx&1?NNx&1ܿi-2 word suggestVB%CܿJJ?IN|?5^i-1 tag+i word NN sageNNCl?RBCl i word firmerJJ~jtVB"~NNPnJJRGz@RBRzGVBN"~j̿ i+2 word feltVB{GzNNS{Gz?i-2 word frontsVBG ףp= ߿NN ףp= ?i-1 suffix eckVBNGzWDTClǿINCl?VBG= ףp=?NN5^I ?VBDGz?POSʡEi-1 word combiningNNSMbPNNPMbP?i+1 word plant RB"~jVBDx&1?NNS333333NNP#~j?VBG9vNNQk@VBN333333JJV-?INףp= DTףp= ? i-2 word kidNNP= ףp=JJ9v@RB+ۿi-1 tag+i word WDT pechineyNN㥛 ҿNNP㥛 ?i+2 word sweptWDTK7A?INK7Ai word finallyRB rh?NNP rh i word youngRBjtNN$C?UHw/ĿJJV-ϿNNP~jt?NNPSX9v׿i+2 word decidedlyNNPʡENNPS\(\NNSV-@i-1 tag+i word -START- stepVBjtNN rh?RB ףp= ׿NNPA`"i-1 tag+i word NN nextJJ'1ZNNMbRBrh|INx@VBZENNP/$?i+2 word encouragingNNSw/NNPSw/?i word berkeleyNNPSX9vNNx&1NNPS? i+1 word fasbDT{Gz?IN{Gzi-2 word buglessJJ1ZdIN1Zd?i-1 tag+i word CC feltVBPzGếNNx&ٿVBDV-?i+1 suffix rkyNNZd;O?WDTnJJZd;OINn?VBZS㥫?NNSS㥫i-1 word whittleNNPbX9?VBDS?NNPSbX9޿VBNSi-1 word creditorsVBNVBD㥛 @VBPx& i-2 word formVBG"~jNNS/$ӿJJ"~j?NNQ?NNPCli-1 tag+i word `` maximizingVBOnVBGOn?i+2 word lachesVBQVBPQ?i-1 tag+i word VBP uponRPrh|JJy&1INjt?i+2 word cleanersJJX9v?RB/$NNP!rhܿi-1 tag+i word CC selectedVBNjt?JJx&1VBDx&1i-1 tag+i word IN farNNP'1ZJJ'1Z@ i+2 word limpNNSrh|ϿNNrh|?i-1 tag+i word CC evianJJQNNPQ?i-1 tag+i word POS slowJJv?NNvi-1 suffix claNNS㥛NNPS㥛?i word anticipateVBbX9VBP?VBD"~ji+2 word advancesVBN5^I ?JJ5^I ۿi-2 word purposeVBG|?5^?NN|?5^ i word duckNN%C@JJ1ZdCCbX9޿i+1 word boastsCC rhNNP rh? i word bibleNN&1?JJ&1i-1 word approvesVBPT㥛 JJT㥛 ?i-1 tag+i word IN cuminNNS rhNN rh?i word recruitsVBZjt?NNS^I +?NNV-i-1 word deviseJJ/$?NN/$ i-1 word gridNNPS@NNPi-1 tag+i word NNP aloneNNSQRBQ@NNGz. i-1 word feedVBDp= ףVBNp= ף?WDT rh?IN rhNNSV-?NNPV- i-1 word kingJJX9vVBDOnVBZh|?5?NNSv/?NNX9v? i word hudsonNN+?NNPjtJJQ i+2 word boydVBZ;OnҿNNS;On?i-1 tag+i word -START- tymnetNNxNNPx? i-2 word addsVBGX9v޿RB333333NNK7?JJ333333INʡEÿRPDl?NNPL7A`?VBL7A`п i word cetusNNPʡE?CDʡEi+2 word solutionsVBG333333JJ333333?i-1 tag+i word -START- ittNNSX9vNNMbXѿNNP rh?i-1 tag+i word DT employerNNSX9vNNbX9?JJmi-1 tag+i word DT affectVBQ?RPx&1NN!rhJJQ i word ginnieNNbX9NNPbX9?i-1 tag+i word CC coloradoNNPSQٿNNPQ?i-2 word maturingNN ףp= NNP ףp= ?i+2 word nationsDTQINQ?JJjt?NNPjti-1 tag+i word NN broughtNN ףp= VBD ףp= ?i+2 word tascherVBZ(\?NNS(\i+2 word preparationDTQ?INQi-2 word vaguelyJJ?VBZi-1 tag+i word -START- charlieNNoʡNNPoʡ?i+1 suffix almJJ5^I ?NN5^I i+1 suffix lagVBG/$RBףp= ?NNQ?VBDDlVBPףp= JJv@NNPQ i-1 word agoVBNQ?VBPClJJI +޿INGz?DTGz߿VBD/$?i-1 tag+i word DT archaicJJʡE?NNʡEi-1 word mistrustVBNMbX?NNMbX i-2 word headVBZK7?NNSuVNNPK7A?VB}?5^INNPSK7ARBDlNNZd;O?JJNbX9@ i-1 tag+i word JJ aggressivenessNN/$?RB/$i-1 tag+i word IN hawthorneNN/$@JJl¿NNPףp= i tag+i-2 tag VBD IN NNP-?NN"~ʿPDTMbRBRʡE?INGz?DTI +?NNS|?5^VBMb?RB= ףp=JJRʡEVBN333333@JJOni-1 word seoulNNPSCl?NNPCli-1 tag+i word CD randVBPnNNS㥛 @NNZd;O i word englishmanNNSNNPS?i-1 tag+i word PRP$ plainlyRBMb@NN+JJp= ף i word legsNNMbRBSNNSM@ i word creeVB1ZdNNP1Zd?i-1 tag+i word NNS conditionedVBNZd;?VBDZd;i word relationsNNPS/$?NNS&1ڿJJMbNNP rhi-2 word instrumentNNS}?5^I?JJGzVBZw/ĿVBSi+2 word garthNNZd;O?JJZd;Oi-1 word coachVBD\(\VBN\(\? i word sadlyLSQRBT㥛 ?NNP#~ji-2 word healthdyneRB-?IN-i-1 tag+i word VBN neitherDTbX9RBbX9?i+2 word renaultFWZd;OVBZClNNPSX9vNNP@i word meaningVBGˡENNףp= @JJK7A`i word conceptsNNSCl?NNCli-1 word publishersMDVBP?i-1 tag+i word VBN boughtNNvVBNv?i-1 tag+i word DT whimsicalJJ%C?NN%Ci-1 word teachersVBZNNP? i-2 word beatCDS?VBDSi-1 tag+i word -START- contelNNPS?NNSi-1 tag+i word TO comfortablyVBK7ARBK7A?i+1 word kitchenJJ5^I ?NN5^I i+2 word messrs.VBGffffffJJffffff? i-2 word signVBG~jt?FWQNNSK7NNZd;OͿNNPQ?i-1 tag+i word DT continentalNNPS~jtJJx&1?NNPrh|i word frederickNNPB`"۹?JJB`"۹i-1 tag+i word NN parksVBZOnNNSOn?i-2 word rhetoricVBNV-RBK7VBZ%CNNS%C?JJCl?NNK7?JJRZd;i+1 word dominantNNnRBn?i-1 tag+i word CC firemanNN#~jܿNNP#~j? i suffix darJJKNNS/$NNy&1@i-1 tag+i word DT transcriptsNNS"~?NN"~i-1 suffix ivyNNPSmNNPm?i-1 tag+i word PRP pressVBP(\?RB(\¿i-1 tag+i word NN stagesNNSףp= ?NNףp= i-1 tag+i word -START- pettyJJ7A`?NNP7A`i-1 tag+i word `` recombinantJJffffff?NNffffffi-1 tag+i word IN prettyJJ+?NNSRB~jtؿi-1 tag+i word JJS pcsNNS㥛 ?NN㥛 i-1 tag+i word DT correspondentNN+?JJ+i+1 word intimidatingRBR(\?JJR(\i-1 tag+i word JJ posterNN333333?RBZd;JJ^I +i tag+i-2 tag NNPS -START- WDTzG?NNSMbNNPjt޿VBV-NNPSVBNV-VBD~jt?VBP|?5^?DTzGҿi+1 word sweatNNS;On?JJd;O?NN"~i word chekhovJJ#~jNNGz޿NNPS?i+2 word nekoosaRPNbX9?RBNbX9NN= ףp=?JJ$C?VBG~jtNNPʡE?VB ri-2 word spending JJp= ף?NNˡERBSS?VBNp= ף?VBPffffff޿NNPS㥛?VBK7A`VBGp= ף?VBDy&1WDTd;O?RBV-DTd;Oi tag+i-2 tag : PRPNNST㥛 ?NNS?JJuVݿINv/i-2 word luberPDTl?JJli-1 tag+i word JJ mineNNS-NN"~?JJK7i+1 word examinationNNS?JJSӿi-1 tag+i word CC exportVB +NN +?i-1 tag+i word IN shorterNNClJJRS?JJ'1Zi+2 word costsPDTK7A?RPw/?DT rhPRP$x&1NNI +?VBPd;O@CCFxVBNK7A`NNPˡEԿJJl@VBDrh|׿RB#~jԿNNS|?5^@VBGOnVBFxi-1 tag+i word DT pitchNN|?5^?JJ|?5^ i-2 word usNNST㥛 ?POS\(\VBGJ +RPoʡ?JJzG?NN#~j?''\(\?UH&1?RBMVB)\(?VBDtVֿVBZ/$?PDT#~jVBPtV?INoʡi-1 tag+i word VBP falseNNS)\(JJ)\(?i-1 tag+i word , headNN= ףp=?JJ= ףp=i-1 tag+i word `` ironNNzG?FWzGếi-1 tag+i word NN thinksVBZ/$?NNS/$i word marriottNNPbX9NNbX9?i+1 word glanceJJx?RBx i word robinNNPQ?VBDQi word unfoundedVBN(\JJ(\?i word reliableVBX9vJJX9v?i-2 word intenseJJn?NN/$VBG;Oni-1 tag+i word IN dealingVBG&1?NN&1i-1 tag+i word WP ownVBDX9vVBZ rVBQտVBPK7A`? i-1 tag+i word -START- matagordaJJB`"NNPB`"?i word detailsVBZSNNS"~@NNPQi+2 word repositionRPGzRBGzǿIN rh@i-1 tag+i word NN offersVBZ{GzNNSv?RB|?5^i+1 word municipalsJJjt?NNjt i-1 word cropDTS㥛WDTS㥛?RBʡEINʡE?i+2 word tableNNSffffff?NNPSw/WDTV-i+1 word appreciablyJJZd;ONNZd;O? i word botherDTffffffVBPCl@VBMbX?NN(\RBi word huskersNNPS(\?NNS)\(NNP\(\ i+1 suffix a$VBG?NNi+1 word workdayDTNbX9?NN +NNP(\i word meaningfulJJ/$?JJR333333NNV-ҿi tag+i-2 tag JJ VBGNNPSʡEVBGnRB/$?FWS㥛?VBPy&1?JJ&1?JJR rhVBZSNNPMbXVBN^I +?IN"~jܿNNZd;׿VBDw/RBRA`"?NNSbX9? i+2 word walkRPZd;ORBZd;O@i-1 tag+i word -START- bidsNNS|?5^?JJX9vNNPX9vi-1 tag+i word IN wheatNNv/NNPv/?i-1 tag+i word MD likelyRB}?5^I@JJbX9VBn i+1 word loadJJ/$?NN/$INoʡDTd;O?WDT/$i+2 word earmarkingJJ/$?NNP/$ i word danNN$CۿNNP-?VBʡEi-1 tag+i word `` participatedVBN/$JJ`"ֿVBDL7A`@i-1 tag+i word WRB netNNV-?JJV-i-1 tag+i word DT targetNNS%C̿NNx&?JJ^I +i-1 tag+i word -START- haniPRP$xƿNNd;O޿NNP/$?i+2 word tightlyRBL7A`JJK7?NNV-i-1 tag+i word NNP crossNNtVNNPtV?i+2 word constantVBNʡE?VBDʡEۿi word institutionalJJRQ?NNPRQؿi-1 tag+i word VBG slowlyJJxRBx? i-1 word akzoVBZHzG?NNSHzGi-2 word claimRBA`"?JJX9vVBN\(\?i-1 tag+i word VBD coverVBjt?INjt i suffix la.CCʡENN}?5^IRBʡEۿNNPK7@ i word amocoJJGzNNPGz?i-1 word summer NNPSB`"ɿJJ(\տINjt@NNSMbXѿNNPx?NN"~VBDףp= WDTFxRB'1Zi-1 tag+i word CD quarterlyJJX9v?RBX9vi+1 word vehiclesNNClVBDQJJL7A`@VBG#~j?VBNd;Oi-1 tag+i word JJ probesNNS㥛NNPnNNS(\?i-1 tag+i word VBG alongRB rh @RPK7A`?NNQJJJ +INOni-1 suffix ept RBRHzG?VBPQRB ףp= ?IN/$?DTx&1JJRHzGVBGS㥛?JJv/?VBN\(\RP/$ÿVB(\PDTx&1? i word base IN/$VBZ~jtRBw/NNPNbX9?VBI +JJsh|?@NNʡE@VBDMbXVBPMbX?i-1 tag+i word DT fastballNNCl?JJCli-1 tag+i word DT spinoffNN!rh?JJOnJJRbX9i-2 word mannerDTv/NNSv/?i+1 word distractionsNNQ?JJQi-2 word listingVB~jtRB~jt?i-1 tag+i word FW lessJJRA`"?RBRA`" i suffix kkoNNV-NNPV-?i-1 tag+i word NN primaryJJK7ANNK7A?i-1 tag+i word JJR awareJJ%C?NN%CԿi-2 word awaitingVBG/$ӿNN/$?i word offshootsNNS|?5^?JJR|?5^i-1 word shareJJ'1Z@WDTK7INJ +?JJR-RBRy&1?VBZL7A`?NNOnVBDMbVBN(\?SYM9v?RBPnVBGA`"FWI +?NNSx&i-1 tag+i word NN keynesiansNNPS/$?NNP/$ӿi+1 word mergedWDT~jt?IN~jti-2 word mixteVBxƿRP$CNN#~jVBPX9v?WDTsh|??RB~jt?INK7i+2 word wroteNNPSZd;?JJOnNNP1Zdi-1 tag+i word IN immediateJJ~jt?NN~jt i-1 word shotRPjtRBp= ף?IN$Ci word cabinetNNjt?JJ rhNNP+? i word actingVBGʡEӿJJK7A@NNjtNNP(\i-1 tag+i word IN basesVBZ#~jNNS#~j?i+1 word producesWDTʡE?INʡE i word photoVBPx&1NNx&1?i-1 tag+i word POS stockNNPSZd;NNPZd;?i-1 tag+i word , postedVBN|?5^JJV-߿VBDOn?i word postwarJJ/$?NN/$i+2 word resembleVBNףp= ?JJףp= ӿ i suffix ncsVBN333333NNnNNS`"?i-1 word narratorVBZ+?NN+i+1 word intent JJ$C?RBx&1@RBRlJJRl?VBNT㥛 PRP+ۿDT&1PRP$+?NNxi word deflectVB"~j?JJ"~ji word leasewayNNrh|ϿNNPB`"?RBCl i word luresVBZ?NNSܿi+2 word breedingNNS/$?NNP/$i+1 suffix co.NNT㥛 VBNʡEJJ;On DTZd;ONNSzGNNPp= ף@MDn@NNPS= ףp=@i-1 tag+i word VBP forwardVB"~jRB"~j?i-1 word requisiteNNoʡ?JJoʡ i word shootVBPjt?VBDʡEVBRQi-1 tag+i word WDT demandVBP$CNN$C?i-1 word gardenVBZ/$NNS/$?i-1 tag+i word NNP profitsNNSS?NNPSi-1 tag+i word POS joblessJJCl?NNCli-1 tag+i word WDT accountVBP)\(?NN?5^I ¿VBZCli-1 tag+i word VBP unplannedVBNMbXJJMbX?i+2 word cohensNNPSx?NNPxi-1 tag+i word TO garnerNNzGʿVBzG?i-1 tag+i word , !YEARRBSCDS?i+2 word blinkersRBRx&1?JJRx&1i+2 word sandyNNPffffff޿INsh|?NN~jt?RBQ?i+2 word contractorsRBFxINFx?i-1 tag+i word VBP beginningVBGZd;O?JJZd;O i word horsesVBZSNNS~jt?NNP/$i-2 word tracyVBG-?NN-޿i-1 tag+i word VBZ hopelesslyRBp= ף?JJp= ףi-1 tag+i word , castJJClNNd;OVBD}?5^I?i-1 tag+i word DT championshipJJK7A`NNK7A`? i word zeroJJZd;NNw/NNPʡEտVBvCDET@i-1 tag+i word VBP waitingVBG?JJNNi-1 tag+i word DT urgingNNI +ֿVBGI +?i-1 tag+i word VBG votingNN-?JJ-i+1 word priorDT rh?NNPS/$?NNS= ףp=ҿUH rhٿNNP!rhi-1 tag+i word -START- behindINHzG?NNPHzGi+1 word chevyCDS?VBDS i suffix rayVB㥛 JJZd;O@NN r @VBDd;ORB|?5^NNS9vNNP"~ i suffix uttNNP~jt?NN~jti-1 tag+i word NNS likelyJJq= ףp?RBq= ףpi word inequitiesNNPS}?5^INNS}?5^I?i-1 tag+i word DT timelyJJ`"?RB`" i suffix iniJJRQNN"~jԿNNP r@VBSNNS!rhi-1 tag+i word JJ maritalJJ!rh?NN!rhi-1 tag+i word DT japaneseNNPS rh@NNRQCD"~jJJ5^I NNS&1@NNPS㥛i+1 word potpourriNN+VBN&1?JJPnؿi+1 word dishesVBGS?NNS㥛?VBN}?5^IJJ`"?INDlNNSi-1 tag+i word NNP humphriesNNPS333333NNP333333?i+1 word indictmentNN}?5^I@JJ#~jCDDli-1 tag+i word VBN strainedVBNRQJJRQ@i-1 tag+i word LS announcedVBNVBD?i-2 word levineDTm?VBNq= ףpտNNq= ףp?INmi word intercompanyNN(\?JJ(\i+2 word deliciousVB/$?JJQ?NN/$i-1 tag+i word VBD notifiedVBNl?JJl i-2 word howeJJQ?NNENNP'1ZԿi+1 word operatesNNSV-ҿNNPV-?i+2 word tapingDTV-ݿWDTINMbX9?i word airplanesNNPSrh|?NNSrh|߿ i+2 word seedVBZV-?NNSV-i word capabilityNN-?JJ-i+1 word forerunnersJJK7A`?NNK7A`i+2 word december RB@NN~jt@RBR`"VBGK7?JJ rhNNSʡENNPSZd;OJJSuVVBPx&1VBZʡE?NNPZd;O?RPCli+1 word weaponNN%C̿RB-ƿJJ?i+1 word questions VBG+?VB}?5^IRB-VBDp= ףPRP$zG?JJOn?INS㥛RPS㥛?NN/$VBP-?i-1 tag+i word , presidentsNNPSL7A`NNSL7A`?i+1 suffix sysWDT rhIN rh? i word q.NNPDl?NNPSZd;NNrh| i suffix Pa.VBNtVNNPtV?i+1 word plateauJJS㥛?NNS㥛i-1 tag+i word , minimillNN|?5^?VBD|?5^ɿi-2 word kentuckyVBP rh@NNS?5^I NN+i-1 tag+i word PRP$ nameNN333333@JJy&1NNP~jti-1 tag+i word DT cloakNNSNbX9NNNbX9?i-1 suffix kerNNP\(\?RBK7NNoʡPOSGz?JJ"~CD\(\NNS!rhVBD +?''MbX?VBNI +?WP rhRP(\пRBROn?VBP"~jVBZS?i word harvardNNNbX9NNPNbX9?i-2 word bentonJJQ?NNQۿi+1 suffix hes NN-@JJS+WDToʡ?JJHzG@INPnDTؿNNSVBGZd;OPDTuVVBNʡENNPuVi-1 tag+i word JJS haltedJJvVBDSVBNK7?i+1 word defenseNNQ@JJ;OnNNS?5^I ¿NNPSտNNPS%CܿVBG`"޿i-1 tag+i word DT passengerNNOn?JJOni-2 word utterlyRBR9vNN9v?i-1 tag+i word CC directedVBNp= ףJJʡEVBD&1?i-1 tag+i word NNP researchNNP"~j@NNPS"~j i-1 tag+i word JJ administrativeJJQ?NNQi+2 word nigeriaDT'1ZܿNN'1Z?i-1 tag+i word , potatoNN!rh?FW!rhi-1 tag+i word DT damagingVBG㥛 JJ㥛 ?i-1 tag+i word VBG aflatoxinNNS%CNN%C?i-1 tag+i word JJ pigJJMbXѿNNMbX?i-1 word selkirkNNPS/$?NNP/$i-1 tag+i word POS individualJJ(\NNP(\?i-2 word stockRB㥛 @RPq= ףpNNS㥛?VBPX9v IN㥛 NNPʡE?NNSPn?FWSJJ)\(?POSX9vJJR rhVBGMbVBD(\@RBRMb@VBNNbX9VBZ%CVBffffff? i suffix cerNNn@NNSjtRBSJJˡENNP(\? i+1 word runsRBClIN;OnNNPCl?NNPSClJJV-NN(\?WDT;On?i-2 word underwriteVB +?VBP5^I ?NNS(\NNʡEi+1 word ignoredVBv/VBPv/?i-2 word trifleRBDl?NNDli word thinnedVBD+VBN+?i-1 tag+i word -START- utilityINd;ONNPxNN#~j?i+1 word sessionsVBG rJJx?NNCl?i-1 tag+i word NNP depositaryJJK7A`?NNK7A`ſi-1 tag+i word VB downwardRBZd;?NNSV-JJ^I +?NN ףp= ׿i-1 tag+i word -START- fluorJJv/NNPv/?i-1 tag+i word NNP focusNNPSףp= NNףp= ?i-1 tag+i word JJ tourNNHzG?NNSHzG i word toxicNNFx?JJn?VBq= ףpNNSJ +i-1 tag+i word -START- loneNNMbXRB"~ڿNNPZd;O?i+1 word jonathanNNPS$CNNP$C?i-1 tag+i word POS aboutRB"~jIN"~j? i suffix uthNNSMbX9NNPK7A?VBx&NNPS#~jRBzG @NN-?VBD/$JJ~jti-1 tag+i word PRP$ skinNNS㥛?JJjtFW#~j i suffix ancNN+@JJ+ i word pilotRBKIN/$ƿVBZxVB+JJMbX9?NNZd;O?i-1 tag+i word JJ bonNNnFWoʡ?NNSlҿ i suffix sor JJmNNSMbX9VBjtNNPSx&1NN$C @VBD|?5^ʿVBN"~RBRvVBP!rhԿNNPZd;O@i-1 tag+i word IN controlledVBNV-JJV-?i-1 word politicalNNS~jt?NNPK7RBnNNZd;O @JJSClJJh|?5i-1 tag+i word VBZ destinedVBNHzG?JJHzGٿi-1 tag+i word NN sometimeVB`"RB/$?NNx&1i-1 tag+i word -START- rolledNNPVBD~jtVBNCl?JJA`"i-1 tag+i word DT potentialJJv/?NNv/i-1 tag+i word JJR importsNNSffffff?JJffffffi-1 tag+i word VBG managingVBGMb?NNMbi-1 tag+i word VBP beforeRBV-INV-?i-1 tag+i word TO a.NN`"?NNP`"i+2 word instancesJJ`"?NN`"i-1 tag+i word VBG raiseVBʡE?NN(\JJw/i-1 tag+i word DT threatenedJJ7A`VBN7A`?i-1 tag+i word RB lockedVBDrh|ϿVBN/$?JJMڿi-1 tag+i word NNS negotiatedVBN/$?VBD/$i-1 tag+i word IN voicedVBN rh?JJ rhi word catholicsNNSMbX9NNP?5^I NNPSA`"@i+1 word detailingNNʡE?JJʡEݿi-1 tag+i word PRP realisticJJ{Gz?NN{Gzi+2 word addedDTQ?NNPn?NN rhCD= ףp=?JJd;OINQi+1 word classVBGV-?NNx&1ܿRBRK7JJRK7?JJV-?DTZd;ONNPp= ף?i+1 word soaringVB1ZdӿVBP1Zd?i-1 word photoprotectiveNNPSM?NNPMڿi+2 word ambleNNPS+JJʡE?NNPV- i+2 word ateJJR/$NNV-?NNP-޿i-1 tag+i word NNP averageVB$CVBP%CNN#~jJJM?NNPQ?i-1 tag+i word CC packageVB$C@VBPDlNNV-i-1 tag+i word DT hillsideNN-?JJ-i-1 tag+i word CD becauseRBI +INI +?i+1 word lipoproteinsNNjt?JJjtֿi-1 tag+i word CC asherDTffffffNNPffffff?i-1 word entityNN~jtJJ~jt@i-1 tag+i word DT tatteredJJʡE?NNʡEi-1 tag+i word WDT !HYPHENNNPFx?NNPSFxNNMbX?JJMbXѿi-2 word leakedVBD|?5^VBN|?5^?i-1 tag+i word NNP animalNNPSx&1NNPx&1? i word sturdyJJx&1?NNx&1i-1 tag+i word IN publicNNMbX9JJ= ףp=ҿNNPZd;O? i word debutJJZd;VBZ rhVBQNN +@ i-2 word bareJJx&1?VBNx&1i-1 tag+i word , germanJJy&1?NNPy&1ܿi-1 tag+i word VBG unspecifiedVBN(\JJ(\?i-1 tag+i word DT colombianJJK7?NNPK7i-1 tag+i word VBP lightestJJSHzG?JJHzGi word cattrallPOSNNP?i-2 word editionVBNZd;?JJZd;i-1 tag+i word JJ etudesNN+NNP+?i-1 tag+i word IN escrowNNy&1?RBy&1i-2 word american VBPPnJJS㥛?VBZvNNSCl绿NNPy&1MDn@VBSNNPSX9v @NN1ZdVBDNbX9?WDT&1INL7A`?i-2 word volvoJJClNNS%C?RB/$NNRQпi-1 word chillyNNSV-?JJV-i-1 tag+i word RBS favoredVBNffffff?JJffffffֿi-1 tag+i word NNP rostenkowskiNNP5^I ?VBD5^I i-1 tag+i word VBP zombiesNNS{Gz?RB{Gzi-1 tag+i word JJ museNNS?NNSSi-2 word uniceWDTFxINFx?i-1 tag+i word NNS convertibleVBPd;OJJd;O?i tag+i-2 tag : VBN NNPKVBPDl?WDT9vJJ333333?DT9v?VBDlRB|?5^ɿNNuVCDZd;O?i+1 word builtRBR)\(?JJR)\(JJp= ףVBZRQRBX9v?NNl?i-1 tag+i word CC fertilizerNNS!rhNN!rh?!i-1 tag+i word -START- personallyRB$C?NNP$Ci-2 word heelsNNSd;ONNd;O?i-1 tag+i word NNP collapsesVBZrh|?NNSB`"NNuVͿi word pursuitNNS|?5^NN|?5^?i-1 tag+i word IN psychiatricJJ/$?NN/$ӿi-1 tag+i word WDT protectVBZrh|VBPrh|?i-1 word bassistVBN+NNP+?i+2 word already INI +NNS(\NNPNNPS?NNSVBD(\WDTI +?JJ5^I @VB/$?i-1 tag+i word CC chineseNNrh|NNPZd;JJ\(\?i-1 tag+i word PRP$ rigidJJMbX9?NNMbX9ܿi-1 tag+i word VBN copperNNh|?5?JJh|?5i+2 word grimmCDS㥛?NNPS㥛i word convictedVBN㥛 @JJ'1ZVBD?5^I i+1 word biologicalJJZd;CDZd;?i-2 word greenspanJJbX9ȶIN1ZdRP1Zd?NNbX9ȶ?VBD rh?VBN rhi-1 tag+i word NN nationsNNPSnٿNNSn? i+1 word curbJJL7A`NNL7A`?i word pulchritudeVBPQ˿NNQ?i word interestedVBClVBN}?5^!JJ;O.'@VBDq= ףpi-1 tag+i word TO experienceVBMbX9?NNMbX9i+1 word postalNNPK7NNm?JJ~jtпi-2 word leavesNNl?VBmRBGz?RPGzJJ ףp= ?i+1 suffix .n.JJMb?NNMbi-1 tag+i word JJ buildingNNA`"VBGA`"@i+1 word injectionNNS㥛?JJ rhNNP#~j? i word crushJJ~jtCD?5^I VBDl?NN(\?i+2 word imprisonmentNN/$?JJ/$i-1 word burgerVBG-?NN- i word diveNNv?JJvi+1 word reducesNNS?5^I ?VBZ?5^I i-1 tag+i word NNS achievedVBN;On?VBD;Oni-2 word unfriendlyJJ\(\?NN\(\i+1 word soaredVBnڿVBPn?NN`"?NNP`" i+1 word lipVBZ|?5^ѿPOS|?5^?i-1 word balanceVBPzGNNjt?JJS㥛Ŀ i word tailNNʡE?JJʡEi word allianceVB"~NNq= ףp?RB`"JJ)\(ԿNNP+@i-1 tag+i word -START- recoveryNN5^I ?NNP5^I i+1 word victimsVB|?5^NNS?JJS㥛 ?JJx&?NNS}?5^INNPSi word quickerJJRrh|?RB(\NNP"~jJJ rhNN(\RBRZd;@i+2 word correctionsJJuVNNSuV?i+2 word discriminationJJV-VBMRBZd;O@VBD7A`?VBNZd;?VBPp= ףi-1 tag+i word RB owesVBZGz?VBPGzi word powerhousesVBZx&NNSx&?i-1 tag+i word NN continuingNNP rh?VBG rhѿi-1 tag+i word IN floatingVBGQ?JJQi+1 word grandVB~jt?JJQ?NNQNNP/$?i+1 word carelessVBQ?VBPQi-1 tag+i word NNP descentNNGz?NNPGzi word biddersVBZ~jtNNS~jt?i-1 tag+i word NNP worthNNPSOnNN/$JJ rhNNP rh?INS㥛?i+1 word shirtsNNSV-JJR1Zd?NN(\?RBR rhi-2 word peopleVBN`"?VBPB`"ѿVBd;O?VBGp= ף?JJ\(\?NN +RBSףp= ?FW}?5^I̿INʡE?NNS/$NNPK7A`NNPSjt?JJSףp= RB rؿDT&1VBD&1UH ri-2 word consideredRBRGz?JJV-?NNSS?NNPV-ͿNNB`"RBS-?JJS`"οJJRGzi-1 tag+i word JJ viewingVBGI +?NNI +i-1 word attendsNNA`"?VBPA`"˿i+2 word skiddedJJGz޿NNPGz?i tag+i-2 tag DT VBNNSNbX9?JJRX9v?IN/$VBGnVBPv/տPRP= ףp=ڿNNP"~jܿWRBX9vRBSClVBDZd;OVB"~j?RBR?5^I ?NNPSX9vRBd;OCDrh|@FWM?VBNK7AJJMb?VBZ-RPʡENN1Zd?JJSy&1?i-1 tag+i word WRB 'sVBZOn?POSOni-1 tag+i word JJ pricingVBGClۿNNl?JJ+i-1 word mandatoryVBPQJJK?NNʡEFWp= ף?i-1 tag+i word NNP suedVBNtV?VBDtVi+2 word international PRP"~j?RBS㥛ԿPRP$"~jܿJJClNN(\?VBDX9v?VBNQVBP^I +VBZ~jt@NNS!rhNNP"~@ i word judgesNNSZd;ONNP333333VBZ(\NNPSS @ i word kentNN"~NNP"~?i+1 suffix awnNNMVBDlVBP`"?RBMb?INMbпNNSl?JJoʡ?i-1 tag+i word NN achievedVBNS㥛?VBDS㥛i+2 word cloudVBDS?VBZ}?5^IVBPv/i-1 tag+i word CC weightNNSNNPS?i word capitolNNPSZd;OݿNNPZd;O?i-1 tag+i word MD needVBRQ?MDRQؿi+1 word submittedNNS|?5^?RB|?5^i-1 tag+i word NN expenseNNS1ZdNN1Zd? i word norrisJJ+NNP+?i-1 tag+i word ( namedVBNzG?NNzGi-1 tag+i word JJ debateVBK?NNZd;?JJ/$NNP~jti-1 tag+i word NN godsNNSQ?NNQi+2 word elderlyRBL7A`?JJzGNN r?NNP{Gzi+2 word unchangingVBZ`"VBP`"?VBN/$JJ/$@i+1 suffix lorNNSVBNZd;߿RBV-IN&1?NNPffffff@JJh|?5i-1 tag+i word DT carbonNNn?JJnѿi-1 word daughterVBNZd;VBDZd;?i-1 tag+i word -START- gov.NNP7A`?VBP1ZdNN= ףp= i word shouldVBPV-ͿINrh|NNPMbMD333333@NNPS ףp= NNni-1 tag+i word CC subgroupsVBP'1ZNNS`"?NNoʡi-1 tag+i word CC workVBjtNNjt?i+2 word colombiaNNS/$տNN/$? i+2 word aidRBv?NNuVVBD9v?VBN?JJMbNNP|?5^?VBGuV?i+2 word minimalJJRZd;O?RBRZd;Oi-1 suffix zedRBR7A`VBZ333333VBGEIN"~?DT= ףp=NNS-?NNP(\JJR7A`?RP?5^I ?NNT㥛 @VBNWDTnJJq= ףp?NNPS{GzRBzG@i-1 tag+i word NN chokedVBDGz?VBNGzi word underminedVBD/$VBN^I + @JJS㥛NNP+i+1 word !HYPHENVBZq= ףp?VBDm?VBP\(\׿RBS?WDTK7A` CCh|?5?JJRn?NN333333FWMbRBRK7?INZd;O@JJS#~jܿNNSV-PDTERPPnPRPzGNNPQVB?5^I ?NNPSZd;OUHZd;PRP$7A`POSCl@VBGK7?DT%C?RB-?WRBsh|?CD+?VBNMb?JJn? i word issuerNN9v?JJ9vi+2 word integrityJJClVBG-?NN`" i word menellNNPS"~NNP"~?i+1 suffix osyPOS{Gzt?VBZ{Gzti-1 tag+i word NN refurbishedVBNS?NNSſi-2 word helpsVBPEJJʡE?NNPʡEVBsh|??RPQ?RB|?5^NNuV?VBD㥛 i+1 word fractionalRBףp= ?JJףp= i-1 word selectiveVBGGzNNGz?i-1 tag+i word IN socialismJJ"~NN"~?i+1 word factionsPRP$MbX9NNPMbX9?i-1 tag+i word VBZ confidentVBPSVBNtVNNˡEVBZOnJJPn @ i suffix 9-1NNP"~j@CD"~ji-1 tag+i word : giveVB\(\?VBP\(\i+1 word waning''SPOSS?i-1 tag+i word `` generallyRBM?NNPMi-1 tag+i word RB lookVBI +RB+NNx&1@VBN;OnVBPOn?JJOn i+1 word autoRB&1NN9vCDˡE?JJ(\u@INI +NNSˡENNP#~jVBG^I +?i-1 tag+i word NNP archivesNNPSp= ף?NNPp= ףi+2 word weeksRBK7@IN~jt?NNPq= ףpJJ`"?NN{GzJJSףp= i-2 word engineeringVBGʡEJJL7A`?NN/$?i-1 tag+i word NN sentencingVBGMbXɿNNMbX?i-1 tag+i word -START- showbizNNK7NNPK7?i-1 tag+i word VBG beforeRBZd;O߿INZd;O? i+2 word beatNNCl?VBGClVBNB`"JJV-ڿVBDrh|?i-1 word despairsRPCl˿INCl?i-1 tag+i word RB hesitateVBGz?NNGz׿i-1 word mildlyVBGV-JJV-?i-1 word createdPDTjt?JJ^I +RBRQ?i+1 word iacoccaNNQNNPQ?i-2 word kosovoNNS?5^I NN?5^I ?i+1 word agenciesVBGENNʡE @JJ}?5^INNP333333i-1 word thermoVBG)\(NNP)\(?i-2 word decision VBGS?JJPnؿVBNq= ףp?RBoʡVB"~j?NNʡEVBDMb`INd;ODTd;O?NNP(\i-1 tag+i word -START- edistoDTB`"ٿNNPB`"?i-1 tag+i word CC partnersNNPNNPS?i-1 tag+i word `` taxNNI +?PRP$ףp= VBK7i-1 tag+i word VBG dishNNL7A`?JJL7A`i-1 tag+i word RB operatedVBNV-VBDV-?i word fischerNNPS rNNP r?i-1 tag+i word RB groansRBRRQVBZRQ?i+1 word inflationCDS?VBPm?WDTEVBvCC5^I ?IN|?5^?DTA`"NNP+NNSMbпRB?5^I RPh|?5?JJ +NNʡE?VBN|?5^VBGK?VBZK7A`i-1 suffix win NN;OnVBP/$INX9vNNPCl?NNPST㥛 RPCl?RBʡE޿JJS?PDTSi-1 tag+i word VBZ causedVBNMbX?JJMbXi+1 word currierJJKNNPK?i-1 tag+i word , windshieldsNNStV?VBNtVi-1 tag+i word PRP$ votingVBGʡENNʡE?i-1 tag+i word NN coatingVBG^I +NN^I +?i-1 tag+i word IN minpecoNNPSoʡNN}?5^INNPS@i+2 word gambleNN"~NNP"~?i word materielNNSENNE?i+1 word cruiseJJjtNNPjt?i-1 word airportDTx&1?INFxNNPsh|?ݿi-2 word facedVBG= ףp=?JJ~jtNN;On?JJRw/?RBRw/RB?5^I i+1 word actorsPRPZd;JJx&1?VBNx&1PRP$Zd;?i+1 word facingNNPʡENNSn@NNKi-1 tag+i word CD paperNNSS㥛NNPS㥛?i+2 word fueledJJ(\NN(\?i word forgetsVBZm?NNSmi tag+i-2 tag VBZ -START- WDTn?INJ +RBHzGPDTSVBNoʡſJJA`"DTv/NNA`"?VBD5^I ?i word percentNN!rh@JJB`"CDi-1 word investigatingNNP"~j?NNPS;OnNNSffffffi word customizedVBNK7AJJ ףp= ?NNPJ +i-2 word financiereFWbX9?JJbX9i-1 tag+i word NN sapiensNNSMbؿJJMb?i-1 tag+i word JJ solitaryJJl?NNli-1 tag+i word NN hauntsVBZS?NNSSi-2 word imeldaVBZQ?NNSQi+2 word railroad''(\NN(\? i word gramsNNSʡE?NNʡE i word damnRBZd;O?JJZd;Oi-1 tag+i word DT snailJJx&NNx&?i-1 suffix aulVBGʡENN5^I @NNP~jtNNSV-NNPSZd;i-1 tag+i word RB framedVBN}?5^I?JJ}?5^Ii-1 tag+i word NN intitiativeNNn?JJni-1 tag+i word NN clubNNSZd;ONNZd;O?i-1 tag+i word , diminishedVBNJ +JJ㥛 ҿVBDffffff?i-2 word limbsVBG#~jJJ#~j?i-1 word restoreJJ rh?RB rh i word high VBDZd;OVBNoʡVBPJ +NNS rhVBRBK7@NN1Zd JJ+@VBZףp= NNPn?VBGuVͿi word polyrhythmsNNSw/?NNw/i-1 tag+i word DT instinctiveJJMb`?NNMb` i-2 word lackVBZ/$?NNS/$JJOnӿNNw/?VBG)\(i+1 word runnerVBx&JJrh|NNPJ +?i-1 tag+i word JJ tablesNNSv/?NNKVBZV-i+1 word formulaJJHzG?NNHzG i-1 word armVBG?5^I NN?5^I @i-1 tag+i word JJ produceVBP"~jNN"~j?i+2 word chevyRPoʡJJ|?5^@RBSi-1 word allegedNNS?NNZd;O?JJjtINDTX9v?i+1 word yankeeJJ +?NN + i-2 tag PRP$RP|?5^?FW#~jNNS rhCDHzGJJK?POSV-?WRBQEX rh?INZd;O?VBZK7ѿVBNd;O@VBPy&1NNB`"?RBSӿRBRI +ƿPRP$+?VBDx&WDT|?5^ DT\(\?NNPsh|??VB;On?RBS|?5^NNPS/$@VBGQJJRtVJJS(\?i+1 word shadowJJ-?NN-i-1 tag+i word -START- totalVBNԿJJMbX?NNP}?5^Ii+2 word specializingVBGGzNNGz?i-2 word catalogVBNZd;VBDZd;? i-2 word gold VBD&1VBPZd;INsh|?VBZ333333?NNPI +NNPS rh@VBGA`"?RBZd;?WDTsh|??JJA`"NNSy&1Կ i suffix 737NNP/$CD/$?i+1 word fiascoNNPST㥛 NNPT㥛 ?i-2 word villageNNjtVBDMbX9?JJjt?VBNMbX9i-1 tag+i word -START- wellNN +NNP&1RBˡEĿNNSʡEUH rh @ i suffix rapNN@VBPvWDT|?5^ٿJJnWPNNSOnVBJ +? i suffix lthNNB`"[@JJ|?5NNPsh|??NNPS;OnNNSK7i word medicareNNSNNPS?i+2 word conductedNN-?VBP-i word classesNNSV-?VBNV- i suffix fanVBNRQJJQVBRQVBPˡENNGz @i word eveningNNn@NNPv/VBGtVi-1 tag+i word VBP reprintedVBNI +?JJI +i tag+i-2 tag VBZ ''VBP9vPRPʡERB㥛 ?JJ\(\NN;On@INʡE RPL7A`尿VBNMbP?CDx&1пPRP$ʡE?NNS5^I ?VB)\(?VBGx&1DTOn?NNPy&1@i-1 tag+i word NNP gloveNNPV-?NNV- i-2 word j.c.JJl?NNli word microwavesVBZq= ףpNNSq= ףp?i+1 word individualsJJQ?IN?DTQ?NNP(\NNSVBDd;Oi+2 word participatedNNPDl?DTK?VBPQRBFxNNDli-1 tag+i word NNP transmissionNNˡEԿNNPˡE?i word showroomVBZMbXNNMbX?i word anheuserNN?5^I NNPn@DTzGi+1 word lockedNNL7A`VBDL7A`?i-1 word arafatVBZMNNSM? i word markNNP+?NN9v@VBDK7A`RBSxVBN㥛 VBPK7A`?JJ\(\NNS&1 i+1 word mxNNnFW7A`ڿJJGz?i-2 word benefitsJJʡENNP/$?NNPS/$VBNʡE?i-1 tag+i word VBZ foremanNNPn?JJPni word queasilyRB#~j?VBP#~ji+1 word entrepreneurialRBRQ?JJRQi+1 suffix oke NNERBR`"RBA`"?INVBZ5^I ˿VBGv?JJR`"?VBPʡEۿWDT?PRPʡE?CD|?5^NNSS?i-2 word charterVBG+?JJ +?NNP rh i-2 tag ,"NNPSuVVBG7A`¿POSK7A`?RBQ?VBNQ?NNffffffƿ$MCC{Gz?RBRL7A`?EXˡEܿMDm?VBZ1Zd?DTMbRP= ףp=?SYM)\(?PDTQ?WP`"PRP ףp= ?WRBS㥛VBˡEIN"~?JJGz׿FWp= ף?NNPHzGJJRKPRP$"~?VBP(\?CD\(\?WDTNbX9JJSX9v?UHx?VBD/$?NNS$CӿRBSMbX9i+2 word america NNPSB`"JJsh|?NNsh|??RBʡE?INMbNNSCl˿NNP)\( @VB㥛 ?VBNQPOSQ''Q?VBDjt?i-1 tag+i word JJ femaleNNK7A`?JJK7A`i tag+i-2 tag NN NNVB rh?CCZd;RBRINQ?WDT|?5^?VBZffffffDT`"?PDTʡEVBGʡE?JJ|?5^ʿNNSZd;NNP(\?CD{GzJJRGzNNK7ARB/$VBPA`"@RPˡEFW`"?POS~jt@EXףp= NNPSoʡ?VBD'1Z?VBN~jt?i-1 tag+i word VBP quotasNNSffffff?RBffffffi-1 word journalismVBd;OVBNm?JJ/$ i-2 word overVBGNbX9ȿVBP"~jINy&1VBZd;OտNNV-VBDlRBd;O@NNP5^I NNPSx&1JJB`"@JJSx&VBN+@VBZGz޿NNSMb@WDTx&1 i-1 tag+i word IN ozonedepletionNN?JJi-1 word cautiousINJ +?NNSNbX9RBJ +NN/$տNNPX9v?i-1 tag+i word RB highlightVBʡE?VBDʡEi word diversifedNNZd;OVBNFx@JJbX9i word designsVBZGz@NN"~NNSS㥛@RBFxJJmi-1 tag+i word DT burgeoningVBGףp= ?JJ1ZdNN}?5^Ii-1 tag+i word JJ consistsNNSS㥛VBZS㥛? i-1 word jan.CDtV?NNPtVi+2 word collorVBZ-?JJ-i-2 word meetsWDT rh?JJClNNPCl?IN rhi-1 tag+i word DT builtNNS&1VBN&1?i+2 word leadersPOS&1?JJm?VBZ&1NNPmVBK7A`VBDK7A`?i-1 tag+i word VB sloppyRP-JJ-?i-1 word proppedRBbX9INQ޿RPOn?i-1 tag+i word IN finesJJlNNSsh|??NNZd;Oi-1 tag+i word , contractedVBNZd;VBDZd;?i-1 tag+i word DT nestsNNʡENNSʡE?i word aquamarineNN?5^I ?JJ?5^I ҿ i-1 word dr.JJffffffNNPffffff?i+1 word solicitsNNuV?JJuVi+1 word prideVBZjt?VBQ뱿POSjtJJ"~j?NNPKi-1 tag+i word VBZ fineJJS+JJbX9@NNDli-1 word societyNNPSX9v߿NNPX9v?VBy&1̿VBPV-?NN(\¿ i suffix ASBNN rhNNP rh?i-1 word catchINCl?RPS㥛RBROnRBMbX9?JJROn?i-1 tag+i word , curbVBP^I +NN?5^I ?JJ!rh i-1 word bowlRBL7A`?RBRL7A`i-1 tag+i word VBZ basicallyRBFx?JJFxi-1 tag+i word IN principalJJK?NNK i-1 word . VBI +@NNPSGz''(\?NNPMbX9POS ףp= VBN'1Z?JJA`"NNS?RB%CNNJ +?VBD'1ZCCn?i-1 tag+i word PRP boughtVBZQVBDQ?i-2 word fastestJJSx&1?NNI +VBB`"i-1 word copyrightVBNA`"?NNZd;׿VBD- i+2 word noonVBN/$VBD/$?i-1 tag+i word VBN tenfoldRBl?VBN+NN+ηi word reductionNNˡE?NNPˡEԿi+1 word electedVBG/$NN/$?i-1 tag+i word JJ nicaraguaNNSʡENNPʡE?i tag+i-2 tag PRP NNPVBP㥛 ?VBZB`"NNSV-VB(\пNNPSL7A`?VBDCl?VBNףp= i-1 tag+i word VB interpretsVBZ+?NN+i+2 word improvementJJX9v?VBZd;O?VBNK߿NNMbVBDI +i-1 tag+i word WRB botherDTffffffVBPCl@NN(\RBZd;Oݿi-1 word batteringNNS㥛 ?NN㥛 i+2 word pattersonCC(\?VBG(\i word ideologiesNNSn?JJni-1 tag+i word VBG patentNNX9v?JJX9vi-1 tag+i word TO appleyardVBZd;ONNPZd;O?i-1 tag+i word , individuallyRBʡE?NNʡEi-1 tag+i word NN aimsVBZGz?RBGzi+1 word cornersJJ\(\?NN\(\NNPV-CDV-?i-2 word chapdelaineNNPSh|?5NNPh|?5? i word gapingNNOnVBGʡEJJy&1?i+1 word droppedRBRx&JJxVBZnNNPK7A?VB(\NNPSJ +?RBx&?NN"~j?i word resourcesNNPS5^I ?NNSQNNPCl?i+2 word attractsNNP+?VBD+i+1 suffix rry RBp= ףNN!rh@VBDd;OJJ"~?PRP\(\VBZ/$DT(\?NNS$C?NNPV-i-1 tag+i word NNP claimsVBZZd;@NNSMbVBDZd;i-1 word excitingDT!rh?WDT!rhi-2 word giantVBN%CJJV-VBZS㥫NNSSRBMbXNN-?VBDDl?RBRMbX?i-1 tag+i word DT crabbyJJ㥛 ?NN㥛 i-1 tag+i word NNP decidesVBZS㥛@NNSFxJJT㥛 i tag+i-2 tag VBG VBDRPMbXVBGS?CDjt?JJ/$PDTjt?VBh|?5PRPxRB㥛 @FW+PRP$x?RBRVBZ㥛 NNPjt?NN?5^I ?VBD?NNS+VBN}?5^I?VBPCl?INV-JJR +?i-1 tag+i word '' viewpointVBZSNNK7A?NNP|?5^ѿ i suffix CWANNPSuVNNPuV?i-1 tag+i word IN boeingVBGm?NN/$NNP{Gz?i-1 word inspectorNNS\(\NNV-@JJZd;Oi-1 word submitJJNbX9?RB(\VBD{Gzi-1 tag+i word -START- wilfredNNPʡE @VBNNbX9JJ~jtVBD~jt i-1 tag+i word IN representationNN&1?JJ&1i-1 tag+i word NNP agenciesNNSw/NNP\(\NNPSjt?i-1 tag+i word IN outlaysVBP333333NNS333333?i-1 word borrowerNNS/$?NN/$i word contributedJJzGVBDClg@NN+VBNjt i-1 suffix doxNNP"~jINNbX9ؿNNSjtNNPSK7?WDTNbX9? i word resellVBˡEVBPˡE?i word reactedVBNB`"JJMbXVBDd;O@i-1 word associatedNNPS/$NNP/$?i-1 tag+i word NNS blameVBPQ?INQi+1 word increased NNPSbX9?RBnVBZZd;NNS rh?NNPp= ףVBV-ڿNN?JJrh|ϿINn?i word sparkingVBGK7A`?NNK7A`i-2 word nissanVBGv/?NN`"?VBNT㥛 ؿRBR^I +?WDT~jtJJQJJR^I +VBZ~jt? i-1 word dulyVBG(\?NN(\i word speculativeNNP"~jJJ"~j?i-1 tag+i word JJ usedVBNMbXVBDMbX?i+2 word leaveJJ9vDT!rh?RP-?RB-NN9v?WDT!rhi-2 word stagflationVBZh|?5?NNSh|?5i-1 tag+i word VB sentencingVBGK7A`?NNK7A`ݿi-1 tag+i word JJ stimuliNN"~NNS"~?i-1 word manvilleVBDQ?VBPQJJSNNPS?i-2 word vendorDT%C?IN%C i+1 word vice VBClѿVBDMVBN rhݿVBPp= ףVBZZd;ϿNNP/$?RBHzG@NNd;O?POSZd;?JJK7?INףp= i word ryeNNʡE?RBK7A`NNS?5^I i word solvedVBN333333VBD333333?i-1 tag+i word VBG outRP"~?NNw/RBףp= @INuVտi-2 word nearly INL7A`?DTL7A`VBS㥛JJzGa@NN+?JJR;On?NNSZd;OVBDV-ڿRBR;OnVBPERBV-Ϳi+1 word amateurRB?5^I IN?5^I ?i-1 tag+i word NNP seatNN`"?VBD`"޿i+2 word moscow VBG rh?VBD/$?CCd;OVBP9vʿJJ rNNPClRBʡE@NN9v?VBN ףp= ߿NNS|?5^?i+2 word blamedJJQNNQ?i+2 word contentJJ&1?NN&1ҿi+1 word mirandaNNSףp= ӿNNPףp= ?i word disturbedJJ\(\?NNp= ףRBV-VBN-?i-1 tag+i word RB matterVBX9v?NNX9vi-2 word abilityVBB`"ٿRBOn@NNx&?RBROnJJRnJJOni-1 tag+i word -START- armcoNNSx&1ԿNNPx&1?i-1 tag+i word VBG hybridJJn@NNv/ͿNNPV-NNSV-i word maturitiesNNPSV-NNSʡE?NNףp= i-1 tag+i word IN cleaningVBGx&NNx&@i-1 tag+i word PRP presentedVBNʡE?VBDʡEi-1 word nestlePOSE?NNPp= ףVBZENNPSCl@NNSI +i-1 tag+i word PRP$ sixthJJMbNNPMb?i word watchersNNPSQ?NNS+?NNPMbX9i word broadcastINNN/$?RBZd;VBNHzG@JJX9vi-1 tag+i word , callVB r?JJ/$NNPףp= i-1 tag+i word TO matureVB;On?NNS;Oni-2 word twistsVBZ㥛 NNS㥛 ?i+2 word regainVBX9vVBP{Gz?NN"~i-2 word officersVBG{Gz?JJZd;ONNtVֿi-1 word womenNNP)\(ܿNNPSZd;?VBG r?NN)\(VBDffffff?VBN?VBP rhNNSMbi-1 tag+i word VB hurtsNNStV޿VBZtV?i word reigningVBGS㥛?JJS㥛i-1 tag+i word NNP d'aleneNNzGNNPzG?i word wrappingNN333333?VBG333333i-1 word quotesJJINERBE?NN? i+1 word nudeNNGz?JJGz߿i-1 tag+i word NNP subtilisNNGz߿VBD(\NNS= ףp=@i+2 word sonataJJ+NNP+?i word eurodollarNNPuVNN(\B@JJxi-1 tag+i word -START- colgateNNMbؿNNPMb?i word carriersNNPl?NNPSli-1 tag+i word NN raisesVBZ9v?NNS9vi-1 tag+i word NNP townsNNPSZd;NNPZd;?i-2 word blastNN+?JJ-RBrh|?i-1 tag+i word NN insuredVBNHzGJJHzG? i suffix pt.NNSOnNNPOn?i+1 word headingNNK7AINK7A? i word lugsNNS +?NN +i+2 word marginsNNP-?VBGX9vRB +?NNw/?VBD +VBP +?JJZd;i-1 tag+i word `` suchVBx&1PDT~jthJJ}?5^I?i-1 tag+i word DT cavernousJJl?NNl¿i-1 word antarVBZ}?5^I?POS}?5^Ii-1 tag+i word VBP issuedVBNK7A?JJK7A i+1 word grewVBGK7NNZd;O?JJi-1 word strikersVBN rhVBD rh?i-1 tag+i word `` workVBPx&NNE?WP9vVBGz?i-1 word collectsJJ#~j?NN#~ji-1 tag+i word RB pleasedVBNq= ףpJJq= ףp?i-1 tag+i word IN charitableJJA`"?NNA`"ۿi+1 word suddenlyVBZ+?NNPSv/NNS+VBDv/?i-1 tag+i word DT unassumingVBGClJJCl?i-1 word finishedRPZd;RBx&@JJRʡERBRʡE?JJlIN;Oni-2 word geraldNNPX9v?VBDX9vi+1 word leadoffJJ;On?NN;Oni-1 tag+i word RB aimsVBZQ?VBDQi-2 word concern NNPSx?VBDʡE?VBNsh|?VBP$CINw/?NNSK7ARP/$ӿRBMbX?NNCl?FWKJJQ NNPMbi-1 tag+i word NNP winVBx&VBPx&?i-1 tag+i word RB decidedVBN9vҿVBD9v?i-1 tag+i word -START- lettingVBG333333?JJd;ONNPףp= i suffix 35sNNS333333@NNP333333i word paintedVBNrh|?JJrh|Ͽi-1 word ornamentsJJ +?NNʡERBX9v i suffix T.RBrh|߿NNPʡE?VB)\(i-1 tag+i word RB accidentallyVB9vڿRB9v?i-1 tag+i word TO deflectVB"~j?JJ"~ji+1 word luxuryJJ&1?NNP&1VBZd;O?NNZd;Oi-1 tag+i word VBP urgingVBGuV?JJuVi-1 tag+i word NN moreNNZd;OJJRtV@RB/$RBR5^I i+1 suffix ogsRP#~j?JJ(\@NNuVVBP rhRB#~jNNP1Zd?i-1 word blandingsVBP rh?VB rhi+1 suffix itaIN5^I ?NNSʡEJJ5^I NNPʡE?i-1 tag+i word RB weakerJJRjt?JJjt i word gatesVBZMbX9NNPMbX9?i-1 tag+i word , acknowledgedVBNV-VBDV-?i-1 tag+i word NN tntNNPrh|?NNrh|i-1 tag+i word NNP paymentsNNSK7?NNK7i word staffersVBZMڿNNSM?i-1 tag+i word VBG upstairsNNSV-NNx&1?JJ㥛 i-2 word whateverVBZʡE?NNSZd;NNZd;Oi-1 word rebuildVBGw/?JJw/i-1 word discoveredVBGNN?i-1 tag+i word CD battingJJ"~ڿNN"~? i word spraysVBDV-VBZV-NNSV-?i tag+i-2 tag RB NNVBPClJJh|?5INq= ףpJJROnWDTnNNS!rhPOS(\?VBNMbDTK7A`?CDS?NNP1Zd?RB?5^I @VBGjtVBDI +@CC`"?FWףp= VB(\RBRA`"@RP-?VBZ%C?NN㥛 i word broncesNNPSNNP?i-1 tag+i word DT nastyJJSClJJCl?i-1 tag+i word DT morassNNFx?JJFxi-1 word undoubtedlyVBNbX9?JJq= ףpݿVBD +i-1 tag+i word VBZ tantamountVB&1JJoʡ?NNx&i+1 word runningVB/$NN/$?i+2 word partnershipsNNSK7?VBG= ףp=?RBK7A`NN= ףp=VBDDl?JJX9vINK7A`?VBZjti-1 tag+i word VBD waltherNNPX9v?RBRX9v i-2 word pickRP&1?IN&1i-1 tag+i word JJ offshootNN9v?RB9vڿ i-1 word rcsbCD&1NNPL7A`@JJni-1 tag+i word JJ understandingNNNbX9?JJNbX9ؿi word servileVBNnٿJJn?i word appropriatelyJJ~jtxRB~jtx?i-2 word insurersVBDffffffVBuVVBP|?5^?i-2 word concerns VBPX9vPRP$C?JJuVDTw/ԿNNSX9vοINw/?VBZxVBv?RB/$NNZd;O?VBD?5^I VBN/$@i-1 tag+i word VB affectedJJjtVBNjt?i-1 tag+i word IN creativeJJQ?NNQѿi+2 word sylvesterVBGZd;O?JJZd;Oǿ i-2 word cash VBZX9vCDPnVBG?VBDJ +?VBNx&1ؿRBR&1VBPA`"@JJq= ףp?INFx?NNSffffff?VBʡEۿRBMbX9NN ri word principalsNNSMb?NNMbؿi-1 tag+i word CD norwegiansNNP-NNPS-?i-1 tag+i word JJ aboundVBPS?NNSi-2 word moundNNSOn?JJOni-1 tag+i word VB unraveledJJ/$VBN/$?i-1 tag+i word NNP demursVBZT㥛 ?NNPT㥛 i-1 tag+i word IN darwinNNPSbX9NNPbX9?i-2 word concedesVBD^I +?JJR^I +߿ i+1 word payJJ)\(@NNSx?NNP/$MD/$?VBʡERBh|?5NNHzGVBPQi-1 tag+i word DT logisticsNNSV-?JJV-i word allentownNNPS?5^I ڿNNP?5^I ?i-1 tag+i word NN appartusINDlNN'1Z?VBD ףp= i-2 word dinersNNRQ?JJ~jtNNPGzVBX9v i word godsNNPMbX9NNSZd;?NNQi-1 tag+i word NN bulletinVBZPnпNNPn?i word benightedVBNZd;JJZd;@i+1 word accruesNNS?JJSi-1 tag+i word JJ fishNN?JJ!i-1 tag+i word -START- governmentNN?VBN&1JJ~jtNNPCl?i-1 tag+i word , racehorseNNn?JJni+2 word womanJJV-ϿNNPS㥛?RBS?RPUHw/Ŀi-1 tag+i word DT winnerNNZd;?NNP|?5^JJRx&1ܿ i word echoesNNS/$?NN/$ۿ i-2 word restVBNS?JJ rNNP +@NNRQVBGzG? i-2 word ironNNS333333?NNPffffff?NNPSffffffNN!rhJJ!rh?VBZ333333i word spielvogelNNP\(\?CD\(\i-1 tag+i word MD lowerVB/$?JJR/$i word respectableVBP+߿JJK7?NN$Ci-2 word above NNPS$C@RB-޿NN5^I ۿCC#~jJJy&1VBZףp= ?NNPQDTx&1?NNSHzGi-1 tag+i word DT horticulturalJJNbX9?NNNbX9п i suffix ICHWDT9v?NNS9vi+1 word ghostJJl?NNli+2 word hideawayPRP$ʡE?PRPʡEi-1 tag+i word NNP standardNNPSHzGNNMb?RB;OnJJ7A`?NNPKǿ i word deterVB7A`@RB(\NNNbX9PDTX9vVBPA`"?JJsh|?i-1 word confidesWDTOnۿINOn?i-1 word headlightsWDT~jt?IN~jti-1 tag+i word TO marthaNNnNNPn?i+1 word importersVBG/$?NN/$i+2 word articleVBP)\(?JJK7INQ?NNP"~jVB)\(RBS?NN"~j@ i-2 word dareJJSRBS?i-1 tag+i word NNP fallsVBZ㥛 NNP㥛 ? i suffix BIENNMbNNPMb?i-1 tag+i word VB messrs.NNPSQNNPQ?i-1 tag+i word VB labattVBENNPE?i+1 word concedeNNP(\NNPSGzNNSGz@RB~jt?IN~jti-1 tag+i word IN sustainedJJV-?VBNV-i-1 tag+i word PRP$ adjacentJJQ?NNQ i-1 word fansVBDx?VB|?5^@VBPbX9VBNx޿RBCli-1 tag+i word NNP cigaretteNNx&1?VBDx&1 i suffix TWVB㥛 DTQNN㥛 NNPV-@i+2 word recallJJuV?RB-NNPrh|i-1 tag+i word : scientificallyRB ףp= ?NN ףp= i-1 word yieldsRBRffffffVBPףp= JJRffffff?RBK7?INd;Oi+1 word learnNNPS̿NNS?NN?5^I @JJ?5^I i word naczelnikJJ"~jNNGzFW|?5^:@i-2 word droppedJJ-?NN-JJRMbX?RBRMbXRBZd;INZd;?i word anathemaNNʡE?VBN1ZdJJv/ i word shootsNNS?NNi-1 tag+i word DT topJJ"~?NN"~i-1 tag+i word JJ skinNNSMbXNNMbX?i word unpleasantJJS?NNSi-1 word assassinationNNT㥛 ?VBDT㥛 i-1 word usaaNNGz?JJGzi-1 tag+i word DT travelNN{Gz?JJ?5^I NNPq= ףpi+1 word certificatesJJ/$?NN;OnNNP&1? i+2 word caJJNNSxNNPd;OPRP$ףp= ?NNV-@PRPףp= i-1 tag+i word IN copierJJRMNNM?i-1 tag+i word , toldVBDQ@VB/$NNx&VBNT㥛 пJJ+ i word cashedVBZS㥛VBDS㥛?i-1 word generatedJJ{Gz?RBGzINm? i word fedNNSClVBNFx@JJS㥛VBDHzGi+1 word recognizedNNGz?VBDGzi-1 tag+i word JJ capitalizedNNzGJJzG?i+2 word allegoryNN= ףp=?JJ= ףp= i+1 word allNNPMbXMD$CVBG rh@JJZd;OVBN'1Z?WDT^I +IN"~j @DTGzVBd;O?NNnٿVBDMbpNNS㥛 VBP;On?RP?CCjtĿRBVBZS?i+1 word unitholdersJJNNP?i word conferenceNN9v?NNP9vi-1 word oliverNNP9v?RB9vi-1 tag+i word '' fundVBNN?i+1 word channelNNˡENNP{Gz?VBN(\?VBG{GzJJ{Gz?i-2 word quickly VBPw/?RB?5^I VBq= ףpͿNN+VBD%CVBN%C?DTQۿRPK7A@JJR/$IN/$VBGOn?i-1 tag+i word IN furtherDTʡEJJ)\( @RBDlJJRPn i word sillyJJx&1@NNS+NNNbX9RBK7Ai-1 tag+i word RB aroundRP +?JJV-RBh|?5οINS?i+2 word activities VBZ rVB+?JJRjtVBP+ۿRB ףp= IN ףp= ?JJ`"?NNB`"POS r?i-2 word legislatorVBGMb?JJMbi-1 tag+i word `` disappearanceNNA`"?JJA`"i-2 word signsNNSZd;OVBGS@NNK7?JJw/i+2 word redeemRBlVBN)\(?NNK7A`i-1 tag+i word PRP$ countrymenNNSK?NNKi-1 word fierceNNS +?RB +i-1 suffix ntoVBNA`"?NNPS(\POSV-?RBK7A`ݿJJRzGVBZ$CCDB`"NNS{GzRBR(\пFWV-?PDTDl?NNPS㥛?JJ?NNRQ?VBPPnIN+DT\(\?VBGGz?i-1 tag+i word DT mainlyNNSGzRBGz?i+1 word prepaymentsVBv/JJv/?i+1 word expectedVBD|?5^POS`"RB1ZdIN1Zd?VBZ'1ZĿNNPʡE?MDV-? i word dinnerNNCl?RPK7RBRoʡi-1 tag+i word VBD aloneJJDl?CDDli+1 suffix ofaVBG\(\?NN\(\ i suffix hopVBx&?JJI +NNbX9@RB!rhNNSMbNNPS?i+1 word jointJJRxVBNy&1?JJ|?5^NNP~jtVB?NNQVBD!rh?RBRV-?i+1 suffix eafJJJ +?NNJ +i-1 tag+i word NNS agreedVBN7A`ڿVBDrh|@VBPʡE i word polishNNPZd;JJV-@NNi+2 word sackingsRPsh|??RBsh|?i+2 word ethanNNjtNNPjt?i-1 tag+i word PRP yieldedVBPV-VBDV-?i-1 tag+i word NN sucksVBZS?NNSSi-1 word commission VBGd;OFWDl?VBNq= ףpRB{Gz@IN ףp= VBZ$CNN(\VBDT㥛 @RBRX9vWDT ףp= ?NNSK7NNPV-Ϳi-1 tag+i word NN erodeVBPV-?NN㥛 VBD!rhԿi word pouringJJClVBGCl? i-2 word meatIN/$RB$C?JJli-1 tag+i word VBZ disinclinedVBNuV?JJuVݿi-1 tag+i word CD w.NNPSNNS?i+1 word circleNNv/NNP^I +?VBZʡEJJCl?i-1 tag+i word DT bankingVBGx&?NNffffff?JJʡEi-1 tag+i word CC crystalNN/$?JJ/$i-1 word ghostVBZS?NNSjtƿNNMbi-1 word propertiesVBNA`"?NN!rhVBDA`"VBP!rh?i-1 tag+i word -START- northRB"~JJK7A`NNPV-?i-1 word realitiesWDT&1IN&1?i-1 tag+i word DT direFW/$JJV- @NNHzGi-1 tag+i word CC embracedVBNEVBDE?i-1 tag+i word ( jacksonvilleNNPSʡEۿNNnNNP+?i-1 tag+i word DT shotsNNS+?NN+i word maestroNNʡE?NNSʡEi-1 tag+i word DT intangibleNNbX9?JJbX9i-1 tag+i word NNP stationNNPSX9vNNPX9v?i+1 word disingenuousVBZd;OVBPZd;O?i-2 word swedenRPjt?RBjti word cigarettesNNSA`"?VBA`" i suffix mieJJ(\ڿNNP(\?i-2 word classicVBZ ףp= ?NNS ףp= NNQ?JJQi-1 tag+i word VBG transNNSClNNPCl?i-1 tag+i word CD deutscheFWFx?NNPFxi word brobergNNSClNNPCl?i-1 tag+i word VBP repeatedlyVBN/$RB/$? i suffix nnsNNPSjt@NNPjti-1 tag+i word NN pickedVBNFx?JJFxٿi-1 word financialNNPSCl@VBG!rh?JJI +NNX9vRBQNNSX9vNNP#~jĿi-1 tag+i word DT fingerJJ5^I JJR rhNNw/@i-2 word reappearanceJJNbX9JJS㥛 VBNʡE?i-1 tag+i word RB cripplingVBG%CJJ%C?i-2 word plantedNNSV-?VBNV-i-1 tag+i word DT doldrumsNNSףp= NNV-@JJbX9i tag+i-2 tag JJ CDRBʡE@VBNT㥛 VBPV-WDT"~j?VBZh|?5?CDVBGX9v @JJx&1INʡEDTSNNS^I +߿NNP rȿFW\(\?RBRK?JJRKNNPSnѿNN{GzVBD+?VBx޿ i-2 word idea VBGQJJRbX9RBRbX9?NNPClVBT㥛 ?JJzG@NNSVBN(\?RB~jtؿ i-1 word pigNNSFxVBNS㥛NNFx?VBDS㥛?i+1 word recordingVBD9vҿVBNV-?JJˡEܿNNX9v?INrh|Ͽi+2 word action RP5^I VBDV-INS㥛?RBB`"ѿJJR(\?JJS㥛?NNPn?VBNT㥛 ?RBRnѿVBZV-NNS-?i-1 tag+i word VBD envelopesNNS333333?JJ333333 i word craNNffffff޿NNPffffff?i-1 tag+i word DT closetVBN;OnNN;On?i-2 word sentimentVBPn?VBNbX9JJPnؿVBDbX9?i word campeauVB`"NNPS-NNS`"NN~jt?NNPV-@i-1 tag+i word IN snagsNNS)\(?RB ףp= NNQſi-1 tag+i word NNS gloryNN$C?VBP$Ci-1 suffix obsVBNOn?JJQIN rh?VBD-WDT rhi+1 word slimmerRBjt?JJjt i word hewedVBNA`"NN;OnVBDT㥛 ? i suffix asmNNV-?JJd;ORBQۿi-1 suffix rse VBGA`"WDTQDT+?IN"~VBZV-NNSMbP?NN r?JJRI +ֿJJ/$ i suffix LuxFWoʡ?NNPoʡi-1 tag+i word VBD overtimeNNA`"?RBA`"i-1 tag+i word NNS arousedVBDZd;O?VBNZd;Oi-2 word securedINOn?RBv?JJ + i word darklyVBx&RP-RBCl?i-1 tag+i word IN bkJJZd;ONNPZd;O?i+2 word attractingVBʡEVBGT㥛 ?NNʡEۿRBV-i-1 tag+i word NN eyesNNS+?RB+i-1 tag+i word VBG fireNNSMbNNMb?i tag+i-2 tag VBZ RPVBNV-JJV-?i-1 suffix ikkMD^I +׿JJQ?NNZd;߿RBS㥛INv/NNPv/?i-1 word pleaseVBPSJJd;O?NNS%C?VB rh @NNVBDuVi+1 word goingRB/$?INrh|NNSˡE?JJSx&1̿RBRʡENNuV?CCbX9?VBPV-CDS?JJ= ףp=POS/$VBZ/$@VBV-?RBS"~jܿi-2 word outlastNNL7A`?JJL7A`ؿi-1 tag+i word IN connieNNPS/$NNP/$? i word tiesNNSjt?VBNRQNNV-VBZCl?VBX9v i-1 tag+i word -START- graduallyRBQ?NNPQ i word pulledNN}?5^IVBD5^I @VBNB`"i-2 word johnsJJ/$NNP/$?i-2 word sugarVBh|?5NN'1Z?RBRRQ?JJffffffi-1 tag+i word NNP closedVBNףp= ?JJ(\VBDQ?i-1 tag+i word JJR upperJJh|?5?NNh|?5i-1 tag+i word POS objectionsNNPSrh|NNSrh|?i+2 word whether RBx&ѿVBDX9vJJ'1ZINS?NNSNbX9ؿNNP#~jVB ףp= ?VBGn?NNJJR"~jCD㥛 ?PRP~jtпVBZy&1i word overwhelmingPRP^I +JJOn@VBGA`"UHzGڿNNʡE i word lumpedVBNV-?VBDV-i-1 tag+i word NN bidVBD333333NN333333?i-1 tag+i word NN youngNN rhտNNP rh?i+1 word bureaucraticCCGz?RBGzο i-2 word move RBRK7A` @JJh|?5?IN= ףp=?NNSI + RP~jtؿRBQ@VBD}?5^I@JJR"~VBP9vVBNsh|?VBLNN&1@i-1 tag+i word `` tattingersNNPSOn?NNSOn i suffix pusNNB`"?JJ'1ZJJR\(\i-2 word stolenJJzG?VBNw/@NNzGʿVBDw/i-1 suffix ior VBDZd;VBN~jt?JJ9vNNS"~?NNPI +?NNA`"?FWGz@JJRbX9VBZIN rhѿVB\(\POSjt?i word laptopsVBZMbXNNSMbX?i-2 word carriersNNSV-?JJV-i+2 word alarmRPʡE?RBʡEi word comfortableJJQ?NNQi-1 tag+i word PRP anticipatesJJVBZ?i-2 word laurelNNV-?RBV-߿i+2 word senateJJX9vVBZCl?NNSA`"?RBX9v?NNA`"VBPCli-1 tag+i word `` unhingedVBNV-?JJ~jtVB+i-2 word differencesVBG(\?JJtV?NNPSCC(\DT(\? i suffix RAsNNS~jt@NNPmRNNPSx&1@NNx&1VBPZd;ORBy&1i+1 word products NNPSKRBK7NN'1Z@VBDˡEVBNV-?CD!rhINʡEVBh|?5οVBG-JJjt?VBZNNS{Gz?NNPK7i-1 tag+i word NN titledVBNX9v?VBDX9vi word registrationNNw/?JJw/i-1 tag+i word -START- findingVBG)\(NNP)\(@i-1 tag+i word DT republicansNNPSx&?NNSx& i word idleNNPSq= ףpJJA`"@NN ףp= VBNoʡRBV-NNS'1Zi-1 tag+i word RB monitoringVBGNN?i+1 word normalRBV-JJtV޿INZd;O?i word annuitiesNNSCl?NNNbX9NNP/$i-1 word demandsIN'1Z?WDT'1Z i-1 word nameVBZ~jtNNS~jt?NN7A`RBR)\(WDT+?RBrh|?IN+i-1 tag+i word IN centralJJ+?NNP+i+2 word citingNNSףp= ۿNNɿJJRQ?i-1 tag+i word IN contentNN&1?JJ&1ҿi-1 tag+i word NN dictateVBV-VBP?NN$Ci+1 word corinthianNNS㥛?JJS㥛i-1 tag+i word DT imaginativeJJX9v?NNX9v i-2 word growNNn?RB!rhJJSӿi-1 tag+i word VBZ firstRB|?5^?JJd;ONNP?i-1 tag+i word RB setVBS?VBNSۿi-1 tag+i word '' outliningVBG|?5^?NN|?5^i-1 tag+i word VB arousedJJ;OnVBN;On?i-1 tag+i word NNS leeryJJx&1@VBP$CRBMbNN{Gzi-1 tag+i word NN gaugeNNSX9vNNX9v?i-1 tag+i word IN boutiqueNN|?5^?JJ|?5^ҿi+2 word baselessJJ&1?NN&1ڿi word coercionVBx&1NNx&1?i-1 tag+i word CC lethalVBZffffff޿JJNbX9?NN= ףp=i+2 word estimated NNSM?VBx?NNPSK7VBPKRB+?LSM?VBZV-NNPGz?NN rVBDV-SYM~jtCDX9v? i word savedVBN"~jԿVBD"~j?i-2 word downturnVBZPnNNSPn?VBNZd;O?VBDZd;Oi-1 word memorandumVBGGz?NNGzi-1 tag+i word NNS stagedVBD/$?VB/$i-1 tag+i word DT integralJJ"~?NN"~i-2 word hambrechtNNQ޿NNPQ?i+1 word compoundJJX9v?NNX9vi tag+i-2 tag VB RBWDTCl绿PRP$ +޿VBDxֿJJ|?5^VBZ&1RBRʡE?VBN"~ DT!rh?CC/$PDT= ףp=EXV-?UHbX9?PRP`"RB1Zd@WP#~jNN= ףp=?NNS#~j?CDlڿVBG^I +?TOoʡ?NNP ףp= ?JJR9v@VBPy&1INjtNNPSV-RPRQ@VBZd;Oi-1 tag+i word NNS dullJJףp= ?VBDףp= i-1 tag+i word VB specificJJ7A` @RB`"VBNp= ףؿNN#~jJJRI +i word antiqueJJbX9?NNK?VBV-i word windfallsNNSZd;?JJZd;i-1 tag+i word CC governVBʡE?VBPx&1?JJMbX9NNjt i suffix ejaRBSV-NNS@JJ+i-1 tag+i word NNP liberalNN~jt?JJxNNPh|?5i-1 tag+i word TO intellectualsVBjtNNSjt? i word chaseJJ333333@NN333333i-1 word viableNNCl?JJCli-1 tag+i word `` innerVBD+JJ|?5^@NN/$NNPi-1 tag+i word CC wieldsVBZq= ףp?NNSq= ףpi word dismissalNNS%CNNl?JJMbXi-1 tag+i word NNPS aptJJx&1?NNPRQNNPS +οi-1 tag+i word : westNNPJ +?VBI +WRBSi-1 tag+i word VBG collegiateJJ/$?NN/$i word ghostbustersNNPS;OnNNS r?NN㥛 NNPS?i-1 tag+i word VBG pricingNN;On?JJ;Oni-1 word smokersVBPoʡVBoʡ?i-1 tag+i word VBZ attributesNNS+?RB+i-1 word alcoholicNNS?NNi-1 word draculaVBZ;On?POS;Oni-1 word increasinglyJJQ?VBʡE?NNSVBDʡEVBN1Zd''B`"VBPˡE?i+2 word pricedJJ&1VBZlNNSl?NN&1?i word bluntedVBDZd;O?VBNZd;Oi-1 tag+i word NNP s.pNNPS-NNP-? i-1 word tvsVBZm?VBNFx?RBmVBDFx i+1 suffix ''NNx& @JJS rh?JJRHzG?VBN ףp= ?''x&1?JJPnDTbX9RB\(\߿VBQ?CDMbXPRP$+VBZ(\RPDl?FWbX9?VBGl?PRPOn?NNPS rh?POSFxNNS/$@MDuV?UHGz?INFxVBDx&1VBP}?5^INNP^I +RBRFxEXx&1i-1 tag+i word NN viewedVBZ/$VBD/$?i-1 tag+i word NNS windVBP1Zd?VBD1Zdi word ambulanceNNS?JJSݿi-1 tag+i word , insuredVBNQ?JJQi+2 word badgesVBP(\ڿVBD(\?i-1 tag+i word NNS callVBQVBPQ?i-1 tag+i word JJ pensionNNtVNNPtV?i-1 word italianateNN/$?JJʡEVBNK7i word believeNN"~j VBDlVBPZd;O@PRP㥛 JJ%CԿIN;OnVBZ rhVB&1@i-1 tag+i word VBG spreeNNQ?JJQi word ordainedVBN+?JJ+i+2 word earlyVBGZd;O?NNPxVBN?RP9v?RBl¿NN= ףp=?NNSK7?VB|?5^?VBP rпJJSQCDy&1?JJvINClVBDCl?i-1 tag+i word DT resurgentJJʡE?NNʡEi-1 suffix curJJS㥫NN= ףp=IN+?i word internalJJNbX9NNPNbX9@ i-2 word madVBPMbpNNMbp?i+1 word thoroughbredJJ|?5^?NN|?5^ i-1 word 're RBRx&1?VBPZd;ϿVBNʡE?RPZd;NNSjtܿVBI +JJʡE?NN#~jĿINPn?VBGZd;?JJRrh|׿RBK7i-1 word fritteredRPMbX9?RBMbX9i-1 tag+i word DT dummyJJNbX9?NNNbX9 i word wheelsNNSCl?JJRCli-1 tag+i word POS merchantNNX9v?JJX9vi word immoralJJZd;O?NNZd;O i suffix 6-6JJzGNNPzG@ i suffix catNNI +?UHPnJJPni+2 word organizedJJK7A`?NN rhRB333333i+2 word instinctNNK?JJKi word watercolorNNtV?VBDtV i suffix usoJJJ +ɿNNPJ +?i-2 word sortingNNףp= ?NNPףp= i-1 tag+i word DT fascinatingVBG$CJJ'1Z@NNuVi-1 suffix a.tNNP&1?NNPS&1i+1 suffix nchJJh|?5οVB{GzܿRB7A`NNQNNPE@i word freightNN~jt @JJvVBDSi+1 word chemicalsDTx&NNPEȿVB(\NN+?VBD"~VBN}?5^IJJ@i-1 word speechDTd;OINd;O?i-1 tag+i word NN surgesVBZ/$@NNS1ZdVBDZd;i-1 tag+i word PRP$ childNN9v?NNS9vi+2 word neutralizesVBG?5^I NN?5^I ?i-1 tag+i word VBD downrightRBK7?JJK7i+1 word lankaRBףp= NNPףp= ?i-2 word indicatedNN9v?JJ~jtVBNx&1ȿi-1 tag+i word JJ stealsVBZ㥛 ?VBP㥛 i word resignVBZd;O?NNZd;Oi-1 tag+i word DT indicatedVBN^I +@JJ/$VBD/$ i word debNNPS!rhNNP!rh?i+1 word smallerRB$C@NNRQVBDMb?VBNMbؿVBPx&1?JJ)\(i-1 tag+i word JJR resilientJJ$C?NN$Cӿi-1 tag+i word NNP seibVBDX9vNNPX9v?i word inconsistentVBNPnJJPn?i-1 tag+i word VBZ lendVBX9v?JJX9v i-1 tag+i word -START- insuranceNNl?NNPli-1 tag+i word POS turmoilNNS?NNSS i word banksVB|?5^NNPS/$@NNSL7A`?NNP ףp= i+1 word sweptNNMbX9?VBDMbX9i-1 tag+i word VBD portableNN r?JJ ri word divisivenessVBZV-NNV-?i-1 word awardedNNPn@NNPPni+2 word increasingVBSVBPS?NNjt?RBRMJJd;O?i-1 word certainlyRBx&1@VBZNbX9?DT&1VB/$VBGffffff?JJʡEVBPX9v? i+2 word daysNNPSZd;NNh|?5VBNV-?CDV-?FWV-INbX9?NNP5^I RBMb?DTtVNNS/$?VBV-@VBDI +JJSK7A`VBPʡEJJx?i-1 tag+i word IN negotiatingVBG ףp= ?JJ ףp= i-1 suffix irdNNQVBN㥛 JJ~jt?VBZzGNNS㥛 ?NNPzG?VBG$Cۿi word downgradingVBGMbNNMb?i+2 word formalVBN= ףp=?JJRX9vRB|?5^?IN rNNS5^I VBD= ףp=JJSX9v?i+1 suffix desVBvCCʡEVBN rhVBPoʡVBDq= ףpտSYMK?RB`"?CDGz?NNP{Gz@JJRMb?DTQ?WDTv @NNPSzGVBG rh?JJ-NNh|?5?IN`" RBRZd;O߿i+2 word flavorJJR"~ڿRBK7ARBR"~?NNK7A?i-1 tag+i word JJ majorJJI +NNPI +?i-1 word totaledRB?JJɿ i word gold VBA`"VBNzG JJK7NNPMb?NNI +G @FWq= ףpͿVBD-VBPٿNNSv/i-2 word introducedNNPNNPS?VBGV-JJ= ףp=?NN?5^I ¿i-1 word cannonNNSS?NNSi+1 word acidsJJPn?NNT㥛 VBDL7A`i-1 tag+i word VB delayedVBNS㥛?RBS㥛i-1 tag+i word RB switchedVBNK7AVBDK7A?i+2 word terrorismNNS"~NNGz?FWGzVBZ"~? i suffix intVBx&@JJjt?VBD&1VBNd;OVBPbX9?VBZ"~CDI +RB1ZdNNSMbXNN@NNP^I +?NNPSB`"RBRZd;INX9vi-1 word mafiasVBP-?NN-i+1 word soiledNNSZd;ONN㥛 VBX9v?i-2 word procterJJ+NNP+?i word everybodyNNPMbVBPJ +NNSMbNNV- @JJ~jti-1 tag+i word VBD unloadingVBGE?JJEi-2 word worryJJ/$?NN|?5^PRP)\(?RB)\(INZd;?NNSZd;PRP$)\(i-1 tag+i word $ !HYPHENCDJJCl?NN^I + i-1 word mtmVBZq= ףpNNSq= ףp? i word fmNNPK7A`տVBP;OnJJ+?NNPS$C˿i-1 tag+i word IN soRBHzGNN"~jINrh|?!i-1 tag+i word -START- montgomeryNNB`"NNPB`"?i word tacticalJJ$C?RB$Ci+1 word splitVBNp= ףJJp= ף?i-1 tag+i word DT managerNNMNNPM?i-1 word undisclosedDTClJJNbX9?NN/$i-1 tag+i word -START- burgerNNPK7A?RBh|?5INMi+1 word investmentJJRsh|??RBRS㥛NNSDlNNP?VBˡE?JJCl?NNrh|?VBGSPRP|?5^INMbX9ܿNNPS/$VBNʡE?VBD$CRBjtPRP$Gz?i tag+i-2 tag NNP .NN/$FW㥛 JJA`"?INS㥛?NNS;OnNNPjti word accruesVBZ㥛 ?NNSV-NNSi+1 suffix impRBRV-?RBV-i+2 word lastingNNS rhJJ/$@NN(\i+2 word unknownsJJ%CNNS%C?i-2 word nonethelessPRP-@CD-i-1 tag+i word VBD kidnappedVBN}?5^I?RB}?5^Ii+1 word selectionNN1Zd?VB1Zdi-2 word dismissalNNQJJ-?NNP/$? i word greensNNPS%CNNS/$?NNP/$i-1 tag+i word IN carryVB?VBPSӿNN-i-1 tag+i word DT puzzleNNV-?JJV-i-1 word labelVBD%CVBNoʡ?JJ㥛 i+2 word board'sNNT㥛 NNPT㥛 ?i-1 tag+i word NNP primeJJV-@NN㥛 NNP?5^I i-1 tag+i word VB flyVBV-?JJV-i-1 tag+i word , teachingVBGK7NNI +?JJGz׿ i+1 word kochNNK7A`?NNPK7A`i-1 tag+i word -START- akioRB+NNP+? i suffix legRB-NN"~j?JJ"~jNNP-?i word qualityJJ(\?NN ףp= NNP ףp= i word fannieNNPV-?CDV-i-1 word loungeNN^I +?VBP^I +i-1 tag+i word DT looseningVBGMbXNNMbX?i word attractionsNNSK7A?NNK7Ai-1 tag+i word CC startlingJJ!rh?NN!rhi-1 tag+i word -START- felixNNjtNNPjt?i-1 tag+i word , sovietJJ+?NNP+i-1 tag+i word , d&bNN9vNNP9v?i-1 tag+i word POS unfriendlyJJʡE?RBʡEi-1 tag+i word RB achievedVBNI +VBDI +?i-1 tag+i word `` everydayJJtV?NNtVi+1 word wallowingVBZZd;OVBPM?VBDuVi+2 word costumedRBRjtĿNNjt?i-2 word thompsonVBGMbNNMb?i-1 tag+i word VB duplicatedVBNffffff?VBDffffff i+2 word websRBv/?JJv/i+2 word mainlyVBPGz?JJ|?5^?NN|?5^VBGzi-1 tag+i word IN arkansasNNS/$@NNP/$i-1 tag+i word NNP declinesVBZT㥛 ?NNST㥛 i-1 tag+i word DT europeanNNPQ@JJDlNNni-1 tag+i word NN detailingVBGoʡ?NNoʡi-1 word healthNNPV-?NNPS(\ҿNNFx?JJRffffffVBPZd;VBZPnNNSMbX9?i-1 tag+i word NNS standINGzVBB`"?VBPx&1VBNrh|NNrh|?i-1 tag+i word NNS resultedVBN= ףp=VBD= ףp=?i+1 word politicallyRBRˡE?RBrh|JJRˡEܿCCrh|?i+1 word cabalJJ+NNP+?i-1 tag+i word PRP$ nominalNNB`"@JJB`"i tag+i-2 tag DT CDFWV-POS)\(?CDK?RBSVBZ)\(ԿNNSGz?JJMb`NN^I +?i+1 word board VBGV-?NNV-JJSq= ףp@POSʡE?VBN~jtNNP(\B@VBZd;ONNPSMb?JJh|?5 VBZ1ZdRBSCD\(\i-1 tag+i word CC workplaceJJm?NNm i word dangerRBRRQNNB`"?NNS1Zdi-1 tag+i word NN adjustmentNN~jt?JJ~jtӿi-1 tag+i word JJ ratesNNPSRQ?NNSX9v?NNZd;i-1 word servesRBIN?i-2 word classicalVBsh|?ſJJw/?NNZd;Oi-1 tag+i word RBS poisonJJ/$?NN/$i-1 suffix sis VBD7A`?WDT/$?INp= ףNNS rDT/$NN r?VBNGz?RBI +?VBZ-i-1 tag+i word JJ enterpriseNN|?5^?NNP|?5^ʿi+2 word textureVBP r?JJ ri-1 tag+i word NN storedVBN333333?NNJ +VBDHzGi-1 tag+i word NNS showingVBP?5^I VBG(\?JJZd;i-1 word unfairNNPS(\пNNSx&1?RBDl?NNDlVBZ^I +߿i-1 tag+i word DT emotionalJJ/$?JJRSNN㥛 i word battlegroupsNNSy&1?NNy&1i-1 tag+i word NNP computersNNPS(\?NNP(\i-1 tag+i word CC mellowJJʡE?NNʡEͿi-1 tag+i word RB soarVBPx?JJx i word strokeNNx&?JJx&i-2 word mexicoVBZK?NNKi-1 tag+i word VBN a.NNQ?NNPQi+1 word baulieuJJffffffNNPffffff?i-1 word customersDT|?5^?VBA`"?VBD{GzVBNZd;?VBP7A`WDTI +INh|?5 i+1 word zsaRPn?RBni-2 word leisureNNSI +@NNPI +i word underwrittenNN5^I VBNV-?JJ#~j?i-2 word followNNSv?JJS|?5^NNMb@JJB`"NNP-i-1 word recallingRB~jt@IN~jti-1 suffix hedVBP?DTbX9?PRP$KJJRJ +RP`"NNSy&1VBZ㥛 JJSK?VBNQJJV-VBNN= ףp=?RBRK7A?PRPK?INHzG?NNP-RB +?i-1 tag+i word -START- unileverNNP"~j?RBʡEͿINMbX i suffix ROsNNS7A` @NNʡENNPQ i suffix oroNNZd;OJJ(\NNPx&1?i word marriageNNCl?JJCl i word miningVBGK NN"~@JJSNNPS㥛?i word superconductorVBffffffNNDl?JJMbX9i tag+i-2 tag VBD NNSVBNI +VBPq= ףpJJh|?5?PRP&1?INRQ?JJRd;O?DT/$NNx&1ȿNNSDlVBMbX9RBSK7A?RBR!rh @VBDQۿRP ףp= @CDFx?NNPS ףp= ?VBGGz?VBZ|?5^FWףp= RB/$?NNP|?5^JJSK7i+2 word nationRBNbX9NN/$PDTd;O?VBPd;OJJ/$@INNbX9?i-1 word concern JJjt?VBDSVBNS?RB;On?INZd;?NNSK7NN-WDT|?5^ɿDT7A`i-1 tag+i word NN filesVBZ +?VBD +i+1 suffix napNNPS +?NNSp= ףJJV-i-1 tag+i word -START- sonetNN7A`NNP7A`? i suffix ndoNNtV?NNPRQ?NNS"~i-1 tag+i word CD centNNSZd;NN5^I ?JJbX9i+1 word reflectedJJ^I +IN+WDT+?NN^I +?i+2 word restatedVBh|?5@VBPh|?5VBN~jtxVBD~jtx?i+1 word brewingNNuVJJEԸNNPGz?i-2 word ridleyRBRJ +?RBtVNNףp= i word piledVBN?VBDi+1 word sewersVBG-?JJ- i+2 word letNN/$VBP~jt?UHK7?IN-?DT1Zd?RPʡEVBZ{GzJJQ˿NNS{Gz?VBHzGRBZd;?VBG-?NNP~jtWDT/$i+2 word dullerVBPS㥛VBDS㥛?i+2 word miracleVBP"~jVBD"~j?i-1 tag+i word NN somehowRBS㥛?NNL7A`пVBDJ +i-1 tag+i word RB recognizedVBD1Zd?VBHzGVBNPn?JJ rhi+1 word consolidatedJJnVBNn?i-1 word petrochemicalsVBPS㥻NNS㥻?i tag+i-2 tag RB PDTJJ)\(?RB)\(i word nordineJJ rhNNP rh?i tag+i-2 tag '' VBNRB|?5^?NNSuV?NN~jtJJʡE?IN|?5^ i-1 word topVBjtVBG-NNV-?JJ(\ȿNNSGz?NNPMbX? i+1 word usaNN"~NNP"~? i word deaNNd;O?JJd;Oi-1 tag+i word DT latterNNS"~JJCl@NN"~JJRni-1 tag+i word WRB americanJJ(\?NNP(\ i-1 word sonsVBZ-?NN-i-1 tag+i word IN raisedVBNˡE?JJˡEi word monsterJJR/$NNV-?NNP-޿i-1 tag+i word VBP prettyRBx&1ԿVBNq= ףpJJ~jt?i-1 word squaredRB#~jINMbRPK7?NN~jti+1 word triedWDT ףp= ?IN ףp= i-1 tag+i word DT giftNN~jt?JJ~jti+1 word alfrescoVBsh|??JJsh|? i-1 word ifNNS!rh?EXV-?VBP$CINX9vNN$CPRP%CܿRBCl?PRP$)\(?VBGp= #NNPxJJ/$?VBNv/@CD~jtÿDTMb@VBDh|?5CCv/i-1 word respondedRBZd;O?NNZd;Oi+2 word andersonVBP/$VBD/$?i+1 word strainsJJ(\?NN(\i-1 tag+i word RB allegeRBNbX9VBNbX9?i-1 tag+i word NNP cuisineNNGz?NNPGzi-1 tag+i word DT potentiallyRBˡE?NNˡEi+1 suffix arl JJv/NNClVBDK7?POSCl?VBZClNNP9vVBNCl?VBP\(\?IN\(\i-1 word walterNNPSGzNNPGz@i-1 tag+i word MD waggishlyVBX9vRBX9v?i-2 word generateVBZ(\NNS(\?i-1 tag+i word NN infantNNM?JJMi-1 tag+i word CD offIN\(\?RPZd;FW`"ֿ i word nttJJOnNNPOn?i-1 word plantsNNX9vVBD}?5^IVBN}?5^I?RBS㥛 @IN\(\DTV-i+2 word cooperNN'1Z?JJ'1Z i word phonyJJMb@NNMbi+2 word pounceVBN"~?VBD"~i word novitiateNN-?JJ-i+1 word offers VBPI +޿JJMbVBI +?NN`"?RBRJJR?VBGQ?CD= ףp=?VBNZd;߿i-1 tag+i word NN pillsVBZ?5^I NNSE?JJ/$ i-2 word seek JJ{Gz?VBGGzNNPNbX9RP\(\?VBD~jtJJS\(\VBN~jt?VBMbX?NNʡE?i-2 word congressmanVBZv/?NNSv/i-1 tag+i word CD tradesVBZv/?NNSv/i word indefinitelyVBnRBn?i-1 tag+i word POS northNNPnJJn?i+2 word regardingNNw/?NNS!rhJJK7A?i-1 tag+i word VBP fartherRBRx&1?RBx&1i word suggestionsVBZV-NNSV-?i+1 word occurNNS?JJɿi-1 word stearnsWDTDl?INDli-2 word trinityNN/$NNPnRB{Gz? i+1 word thanVBP/$JJ&1NN(\@JJS?5^I ?RBR/$?EXp= ףNNSCl?VBw/CCGzDTK7ѿCDL7A`?RPRQJJR{Gz@VBNq= ףp?RBB`"?VBZZd;ONNPK7A i word constructedVBNX9v?JJX9vi-1 tag+i word JJ misconductNNPSNNS?i+2 word metricsVB7A`?VBP7A`i-1 tag+i word NN curvyJJ%C?NN%Ci-1 tag+i word VBG likeJJ?5^I ҿINGz?VBtV i word forcedNN~jtVBD +JJMbVBN@i+1 word indebtedVB-RB-?i-1 tag+i word NN unitsNNSNNP?i-2 word massacreJJ$C?NN$Ci+2 word underwritingNNS +?NN +i-2 word vehementlyDTGzPDTGz?i word redistributionismNN+?VBZ+i-1 suffix tusVBZGz?NNSGzVBN"~?VBD"~i tag+i-2 tag RP NNPJJGzJJRGzNNGz?RBRGz?i+2 word manager DTףp= ?NNPSx&?VBG?NNCCQ?VBZ/$?VBvVBDClPOSQJJףp= NNPV-?i-2 word cuellarVBDL7A`VBNL7A`@i+1 word environmentNN"~?JJ"~i-1 tag+i word RB limitedVBN~jtJJ~jt?i+1 word vernonNNPS\(\NNP\(\? i suffix AxaRB!rhNNPMbX?NN|?5^i-1 tag+i word IN inboundJJsh|??NNsh|?i-1 tag+i word VBG needVBNK7A`NNK7A`?i word exchangeableNNjtJJjt?i-1 tag+i word DT appropriationNNq= ףp?JJq= ףpi-1 tag+i word VBN strengthenedVBNS?JJSտi+2 word neverJJIN|?5^?NNPw/RBJ +?NNtV?VBDd;OVBNd;O?EXS?i+1 word outfitJJ|?5^ٿVBGX9vNN(\? i-1 word lentVBuVͿNNuV?JJ(\i+2 word producerVBGffffffJJ&1?NNmNNP/$?RP/$ i+2 word grayNN\(\߿JJ\(\?i-1 word preferJJ5^I ۿNNP5^I ? i+1 word palmJJ5^I ?NN5^I i-2 word checkVB+?NNP+i-2 word treatyVBPtVJJw/?VBD\(\i-2 word protectingJJ$C?NNP$Ci+1 word portableVBD rRPV-տRBQ?JJ;Oni word spiritedVBNZd;߿JJ/$@NNPQVBDZd;Oi+1 word contributionsJJ333333?JJR333333VBDB`"?VBNB`"ѿi-1 tag+i word DT politeJJx?NNxi word differentJJ"~j?NNjtܿNNP1Zd i word bansVBZ~jt?NNS/$NN rhi+2 word agreementsVB(\?NN5^I ?VBD?VBP^I +JJ5^I NNP rhݿi-1 tag+i word DT americasNNPS~jt@NNP~jti-1 tag+i word VBP skepticalJJv?INv߿i-1 tag+i word VB packagesVBZ/$NNSS?FWoʡi+1 word speedsVBQNNʡE?JJK7 i-1 word vetoRBRZd;ORB/$?JJR +i+1 word preparedJJ +NN +?JJRK7ARBE?RBRS?i-2 word finucaneNN#~j?JJ#~j i word rearJJd;ONNd;O?i word railroadNNy&1 @JJ-NNPS㥛NNPSOnNNSOni+2 word continuedVBN(\JJnNNSʡENNPZd;VBGˡENN^I +@VBD(\?i+2 word telexesJJ~jtVBD~jt? i-2 word p&gJJT㥛 ?IN rh@RPGzNNP}?5^I?NNPS}?5^IVBG/$RBGzǿNNx&1?i-1 word woodyNNPSL7A`пNNPL7A`? i word fiberNNS$C˿NNv/?JJoʡNNP;OnJJSV-i word scotchesVBZDlNNSDl?i+2 word wheellikeVBG/$?NN/$i-1 word luxuryNN~jtNNP~jt? i+2 word kVBPB`"ɿJJS}?5^INNbX9?VBD^I +VBZ^I +? i-1 word paid VBNINjt?NNS`"NN?RBm?PDTjtJJQDTjt?RP rh? i word woodenJJ%C?NN%Ci-1 tag+i word RB includedVBDffffffVBNffffff?i+1 suffix mlyVBDzG?VBN|?5^JJ1Zdi-1 word swearRP!rh?IN!rhi-1 tag+i word NN forwardRPSRBʡE?NN~jti+2 word moves VBbX9?VBD)\(?VBZL7A`NNPMVBGQ?JJV-NNQVBN~jtRB~jt?i-2 word submarineNNSCl?VBNClNNClVBDCl?i-1 tag+i word DT emhartJJT㥛 NNPT㥛 ?i-1 tag+i word RB slimmerRBbX9VBN}?5^INNx&1JJR-@ i-2 word sec VBRB?RBRQJJRQ@IN?NNl?VBD r?VBPVBN rJJl i suffix ebsJJRv/NNq= ףpNNSZd;O?i-1 tag+i word DT tasselsNNSV-?NNV- i word trade VBNZd;VBP"~j?NNSClVBK7@NNQ+$@RB$CVBDB`"JJlqINnNNPQNNPSRQRP`"i+2 word stadiumNN/$JJ +?NNPRQ?i-1 tag+i word JJ robustJJp= ף?NNp= ףi-1 tag+i word CC wordplayVBѿNNʡE?VBDX9vi+2 word whiteDT+?VBDMbCC㥛 ?PDTMbVBNQJJV-?VBZCli tag+i-2 tag NNP -START-NN+VBDv/?RB rhPRP$-WPףp= ?CDQ?JJ rh?VBZ{Gz?RP+VBmVBP;On?NNP#~j?DT~jt?RBRMbINh|?5UH1Zd?VBGjtWDTxNNPS(\VBNJ +ɿ''uV?PRPNbX9?NNSMbX9?CCjt?MDX9vJJR(\¿FWFxPOS= ףp=? i-2 word irasJJv?IN9vVBNV-i-1 word modestNNq= ףpNNSbX9JJ&1?i+2 word reconstructVBS㥛NNS^I +?NN rhi+1 word wavesNNE?VBGq= ףp?JJK7RBINQ? i-2 tag . NNPSDl?NNK׿INx?NNPh|?5VBB`"FW)\(VBDPn@VBNvJJx&1?VBZ5^I ?DTq= ףp?NNSw/VBG? i word fortyCDS?JJSi+1 suffix aosVBN(\JJ(\?i-1 suffix aenPOS+?IN+i-2 word unsupportedVBZx&NNSrh|NNRQ?i-1 tag+i word VB wickerJJRK7ANNK7A?i-2 word knownNNp= ף?VBG333333?JJ㥛 ?RBQNNPX9v i word slumsNNS+?RB+i-2 word quotesRBRZd;ONN%C?JJRZd;O?JJ%Ci-1 word handleRPV-RBvINQ?DTm?i-1 tag+i word VBZ relaxingVBG/$JJHzG@NNOni-1 tag+i word NNPS votingVBG~jth?NN~jthi-1 tag+i word JJ writerNN5^I ?JJ5^I i+1 word stereoJJ"~ҿNNP%C?DTm?PDTv/NN"~?i-2 word practicingNNSMJJM?i+1 word writerVBG(\JJ+@NN#~ji+1 word healthvestVBZGz?VBPGzWDT{GzIN{Gz?i-1 word balancingRBR +NN +?i-2 word ministryJJjtNNSQ?NNP#~j?NNffffffֿVBDS?VBNSi-2 word campeauNNPףp= ?VBNZd;ONNGz?VBDRQ?JJni-1 tag+i word JJ upwardRB|?5^?JJʡE?NN"~ji-1 word prospectiveVBDʡEVBNQ?NN9v?JJʡEi word stitchedVBNHzG?VBDHzGi+1 word jugglingNNffffff?JJffffff"i-1 tag+i word PRP$ investigationsNNS/$?NN/$޿ i-1 word faceJJMbX9NNClPDTMbX?VBPV-?RBbX9VBZ?5^I ¿DTMbXVBGMbX9?i-1 tag+i word NNP goodJJ#~j?NN#~jܿ i-2 word forVBG'1ZRPy&1NN +?POSGzNNPSbX9?VBZv/NNS/$?NNP/$@RBRjtֿINV-''Gz?VBuVRBS$CEX}?5^IUHQ޿DTS㥛@JJRDl?VBDzGWDTSۿFW\(\VBPx&JJDl?CDx&@RBGz߿JJSˡE?VBNK7A?PDTq= ףp@i-1 tag+i word NNP mintNNPSDlѿNNx&NNPCl?i-1 suffix ienVBZ(\NNS(\?i-1 tag+i word -START- milkNNT㥛 ?NNPT㥛 i+1 word unsoundJJMbNNx&1̿RBʡE?i+1 word decisionsVB/$ݿVBP?VBG-NN7A`@JJHzGi+1 word minivansJJB`"?VBDB`"ɿi-2 word underwritersNNPS(\NNP(\?i-2 word mysteryVBDQJJ|?5^?NNP|?5^INQ?i-2 word notedNN'1ZRBZd;OݿJJd;O?VBG#~j?i-1 tag+i word : scholarshipNNK7?JJK7i word atrociousJJQ?INQi-1 word triggeredJJK?NNNbX9INSi-1 tag+i word VBN capitalNNRQ?JJRQi-1 tag+i word VBP laboringVBGA`"?JJA`"i-1 tag+i word RB donatedVBN(\?JJ(\i-1 tag+i word DT sisterNNMbX9JJMbX9? i word unrestNNSxƿJJSDlNNbX9?JJCli word avoidingVBGoʡ?JJoʡi word outplacementNNʡE?JJ-NNPK7ѿ i word greenVB(\JJZd;O @NNPnNNPʡEi+1 word alcoholicsVBGʡE?JJʡEi+2 word davidJJB`"۹NN~jtJJR/$RBV-׿VBZ^I +?NNS7A`?i+2 word eurodollarsNNSZd;NNPZd;?i-1 tag+i word VBZ completeVBNZd;OJJZd;O?i+2 word organizationNNPSh|?5?NNSK7A`?JJ9vNNK7A`NNPtVֿ i suffix -2sNNSNNP(\NNSv/@i-1 tag+i word VBN strikesNNSI +?RPI + i-1 word pumpVBP'1ZNN'1Z?i-1 tag+i word POS explainedJJEпVBDE?i-2 word sonataNN{Gz@NNP{Gzi-1 tag+i word JJ returningVBGX9v?NNX9vi+1 suffix gesEXX9vIN;On?VBPK7FW)\(CCtV?VB!rhJJRL7A`?VBN= ףp=?NNS@RBHzGRBRL7A`CD~jt?NNPSS㥛JJS;On?VBDw/?WDT`"?RP$C?DTKNNS%C?NNPw/VBGQJJ/$?VBZ}?5^Iܿi-1 word impunityVBPGz?NNGzi-1 word pfizerVBNGz@VBDGz i suffix rchNNL7A`@VBDˡEVBP|?5^ @JJvNNSʡENNP rh?NNPSK i word cartNNSxNNx?i-1 tag+i word CD runoffNNE?JJEi-1 tag+i word DT obscureJJʡE?NNʡEi-1 tag+i word VBG behindJJq= ףpRB"~INʡE?i-1 tag+i word NN initiallyRBM?NNMi+1 word civil JJ?5^I NN\(\VBD5^I ӿVBPףp= ?RB!rh?VB-VBN r@VBZ1ZdDT!rhNNSvNNP㥛 @i word neighborVBS㥛NNPSxNNw/ @JJGzi-1 tag+i word NN rapidementFWPn?NNPni word exceedingVBGMb?NNJJ^I +i word exposureJJ rؿRBQNNx&1?NNS333333i word designatedVBN?5^I ?VBD?5^I i word pouredVBDA`"?VBNA`"i-1 tag+i word JJ pesticidesNNS1Zd?NN1Zdi word aerojetJJ+NNP+?i-1 tag+i word JJ fracasNNStV޿NNtV?i-1 word advisesJJ$CNNP$C?i-1 tag+i word VBN finalizedVBNףp= ?JJףp= i-1 suffix hnsVBZq= ףpտNNPq= ףp?i-1 tag+i word , retailingNNʡE?VBGʡEi-1 tag+i word NN disappearsVBZ?NNSi+1 word quotationsVBK@NNSrh|JJh|?5NNrh|!i-1 tag+i word -START- negotiableJJˡE@RBENNoʡſNNPL7A`i+2 word potatoesVBZQ?NNSQNNK7A`?RBK7A`i-1 word contingencyRBSINS?i-1 tag+i word CC soughtJJX9vVBDDl?VBZ/$i-1 tag+i word NNP declinedVBN-VBD-?i word otherwiseNNy&1JJR$CۿVBP +JJjtNNS +NNPd;OVB/$޿RBy&1$@i+2 word boastsNNPSx&NNPx&?i-1 tag+i word DT spectacularlyJJ(\RB(\?i-1 tag+i word JJR varietyJJ/$ٿNNSmݿNN1Zd?i+2 word loweredJJʡE?NNX9vVBN?i-1 tag+i word NNP armsNNS rh?VBDzGVBZuVտi+2 word imposedNNS?NNPSi-1 tag+i word NN settleVBw/?VBPx&?JJbX9NNjti-2 word lucrativeRBRffffffRBffffff?i-1 word operatingJJL7A`NN}?5^I@RBR!rhԿJJR!rh?RB$CINv/?NNSX9vi-1 tag+i word , resolutionNN/$@NNP/$i-2 word afghanistanNNS%C?NN%Ci+1 suffix gleNNNbX9NNPSJJnѿVBG/$?VBNsh|??i-1 tag+i word NNP quartetsRB/$NNS/$?i+1 suffix heaNN= ףp=NNP= ףp=?i+2 word datedVBDw/RPB`"ٿVBNw/?INB`"?i-1 tag+i word WDT monitorsVBZGz?VBPGzi-1 tag+i word DT causesNNS|?5^?NN|?5^i+2 word predicamentVBDrh|?INrh|i+2 word illegallyVB5^I NNSE?INv/?i+2 word worthyPDTK7A`?RBMDT~jti+2 word everydayVBG|?5^?NN|?5^ɿi-1 tag+i word JJ marginNN|?5^?NNP|?5^i-1 tag+i word CC appellateJJT㥛 ?NNM¿VBDS i suffix -88JJ^I +CD^I +@i+1 word patternsVBGI +?NNzG?JJM i-1 word lawsVBG^I +?NN?5^I VBDmVBPy&1?RB~jtxIN~jtx?i+2 word disasterVBtV?FWtV i-2 word bachNNS+?VBD+i word disappointedVBNʡEJJ&1@VBDPni-1 word appropriationsVBPsh|?VBZGzοNNS~jt?NN/$?VBDˡE?VBNˡEi+2 word basketsVBS㥛VBPS㥛?VBNK7AJJ ףp= ?NNPJ + i suffix ode FWZd;VBNClVBPClۿJJ(\NN333333?VBDQ?IN rhVBZJ +NNPrh|?VB%C?i+2 word johnsonRB!rh?JJ!rhINx&1?WDTx&1i-2 word reflectNNSRQVBPh|?5οVBGZd;ONNn?JJy&1?i-1 tag+i word JJ l988CDK7A`?NNSy&1ܿNNh|?5i-1 tag+i word CC customsNNSL7A`堿NNPL7A`?i-1 tag+i word , followedVBN{GzVBD{Gz?i-1 word straightenRP$C?IN$Ci-1 tag+i word NN coveragesVBZClNNSCl?i-1 tag+i word CC printerNNMb?JJMbi-1 tag+i word , prizedVBNˡE?VBDˡEܿi-1 tag+i word NNP delFWS@NNSi-1 tag+i word CC aggregatesVBZ|?5^NNS|?5^? i word '70sNNSSCDS@i-1 tag+i word VBD littleRB?5^I ?NNS rؿNNSJJMb?CDHzGi-1 tag+i word NNP municipalNNP;On?POSnJJQ?NNCli-1 tag+i word RB earmarkedJJ{GzܿVBD'1ZVBNK?i-1 tag+i word NN voluntaryJJ\(\?RBy&1NN?5^I i tag+i-2 tag LS -START-VBNVBD?i-1 tag+i word DT lessJJS}?5^I?JJRV-RBR1Zd @JJmRBCl?NN㥛 i-1 suffix rce VB|?5^RPVBPx&WDT-?RBNbX9пNNS +?NNPV-JJ?5^I ?NNʡE?VBDuV?VBNQѿINv/i-1 word threatenedJJRv/?RBRv/ݿi-1 tag+i word IN jeopardyNNn?JJvNNP{Gzi+2 word sandwichNNKJJK?i-2 word rivieraDTn?RBni-2 word administrativeNNMbX9?JJMbX9i-1 tag+i word DT evilNNSJJS?i+2 word configurationNNSX9vNNX9v? i suffix AwNNPS㥛UHp= ף?INT㥛 п i word picksNNSSVBZx?VBPV- i suffix tleWRBSVBNK7ARBRVBPSNNPx&1?RBZd; @INrh|NNSy&1?JJRX9vNNClWPԿJJK7A`@VBZ(\ؿCDHzGVBn@VBDZd;i+2 word summerfolkJJ)\(?NN)\(i-2 word proliferatingVBNK7A`տJJX9v?VBP= ףp= i-2 word suit FW ףp= ǿVBD +VBNV-?RPffffff?NNV-WDTZd;RBQ?IN?VBZV-NNSHzG?NNPS@JJSi-1 tag+i word JJ outsideJJ?NN#~jINK7?i-1 tag+i word NNP displaysVBZZd;NNSZd;? i suffix NCERBʡE@NNPʡEi-1 word flightsDT{Gz?VBN{Gzi-1 suffix utyNNT㥛 ?NNSy&1RBSJJh|?5?i-1 tag+i word `` yardstickVB&1ʿNNGz?JJi-1 tag+i word RB longVBP-RBS㥛D@JJQIN㥛 i-1 word statisticRB/$?JJ/$i+1 word forfeitureNNv߿VBN&1WDT`"JJ&1?INI +DTn@VBv?i-2 word completingNNSPnJJ@NNli-1 tag+i word IN testingVBGtV?NNtV i word motelNNRQ?JJRQi+1 word selling VBD;On?NNSQ?VB㥛 FWjtܿNNn?VBNCl?RBX9vIN;On?NNP)\(RP;OnJJT㥛 ?i+2 word targetedJJQNNSףp= JJRK7A?NN333333RBRS?i-1 tag+i word NN eldersNNPS"~?NNP"~ i suffix DiVBClNNPCl?i-1 tag+i word PRP$ cattleNNS\(\?NN\(\i+2 word risingNNSd;O?NNPK7RP"~ҿRBV-NNA`"?VBDA`"?JJZd;?VBZ ףp= i+2 word surviveJJM?NNPMi-1 tag+i word RB lieVB`"@JJRX9v޿NN'1Zi+1 word revampingRBx&1@VBPxֿJJZd;NN!rhi-1 suffix usxVBZS?VBQ?POSNN+ηi+2 word macchiarolaVBPMbX9NNMbX9?i-1 tag+i word NN properlyNNSQRBQ?i tag+i-2 tag `` :JJK7A`NNV- @IN r?CCxRBR#~j?JJR#~jDT?PRP$333333?VBʡEWRBrh|?FWX9v?RB{GzVBGd;O?NNP= ףp=WDTZd;O߿UHv?NNSV-MD㥛 ?NNPSv/VBP-i-1 tag+i word `` pyramidingVBGGz?VBGzi-1 word appropriateVBZuVNNSuV?JJbX9?NNbX9޿i word coopersNNPS rhNNP rh?i tag+i-2 tag DT NNVBG r?POST㥛 ?RBRq= ףpVBP(\?JJR r@NNPS5^I  @JJSVBNMb?NNP333333NNFxJJS)\(?RBS)\(ԿRBzGVBS㥛?VBD^I +?INx&?VBZT㥛 пNNSRQi-1 tag+i word VBZ tightRB)\(?JJ +NNFxi-1 tag+i word VBG targetedVBNףp= ?VBDףp= i-1 tag+i word -START- cubaNN|?5^NNP|?5^?i-1 tag+i word IN limitsNNS-?JJR-i word gimmickryNNv?JJvi+2 word fisheryJJʡENNPʡE?i-2 word bondsNNPSZd;OVBNsh|?VBZvRP"~j?RBp= ף@VBDd;OֿJJMbX9?NNHzG @VBPuV @IN|?5^NNSʡE?VB/$DT1ZdNNP~jt?i+1 word providedNN= ףp=?JJ= ףp=i-1 tag+i word NN cropsVBZ/$NNS{Gz?NNV-i-1 tag+i word NNP parenthoodNNGz׿NNPGz?i-1 word largelyVBN rhJJn?VBDsh|?i-1 tag+i word NNP harrisNNP#~j?NNS#~j i suffix ickVBP(\?NNPˡE@VB~jt?NNPSףp= RBn?JJR#~jVBZS㥛DTB`"NNSZd;OVBDB`"JJSx&INK7NNx&1?VBN^I +JJh|?5 @i-1 word salonVBx&1NNx&1?i-1 tag+i word RB materialJJ$C?NN$Ci-1 tag+i word NNS pitchNNn?NNSni-2 word goldenNNSMbRBp= ף?VBDZd;VBNףp= JJp= ףVBZGz@i-1 tag+i word , hardlyRBCl?NNPCli-1 tag+i word VBG sureJJ$C?NN$Ci+1 word directJJR%CJJ"~jINK?NNPKVBGMbX9?NNRBR%C?i+2 word alitoNNPZd;?NNZd;i+1 word schweppesNN(\NNP(\?i-1 suffix alfRBvIN#~jDT r?RPI +JJS@NNS㥛VBDI +?VBNI +i-1 tag+i word JJ drainNNQ?RBQi-1 word declaredUH(\ҿNN(\?i-1 suffix tosVBZ&1?NNP+NNS&1RBw/@IN|?5^i-1 tag+i word PRP$ portfoliosNNSS㥛?NNS㥛пi-1 tag+i word PRP$ phibroNNPS rпNNP r?i-1 tag+i word JJ forgettableNNS+JJ+?i-1 tag+i word NN disputesVBZw/NNSw/?i word clearerNNS/$JJR-@NN= ףp=i-2 word sidesVBCl?RBV-?VBNZd;ONNClVBD㥛 ?i word manufacturersNNPSHzG?NNS!rh̿NNPDl i word miseryDTKNNQ?RBGzNNPK7i-1 tag+i word NN entriesVBZ(\NNS(\? i word fbiNN7A`NNPM?NNPSni-2 word pointedVBʡEͿNNx&1?IN-@DT-VBGNbX9i+1 word indianVBGrh|?VBNuVJJ333333?i+1 suffix bnlJJCl?NNPCli-1 tag+i word NN rewardsVBZ`"?NNS`"i-1 tag+i word NNS materialJJ\(\?VBD\(\i+1 word fallsJJK7NN|?5^?CDT㥛 RB-NNSL7A`?NNP ףp= ? i word blaseNN~jtJJ~jt?i-1 tag+i word IN bestRBDl?INؿJJS"~RBSS?i word businessNNPSK7NNQ @JJK7NNP= ףp=i-1 word officesVB-VBPv?RBRJ +?NN;OnRBJ +ٿ i word bumperJJRlҿNNl?i-1 tag+i word DT politicsNN}?5^INNS}?5^I?i-1 word french NN(\@VBPCl?NNSl?JJ(\VBD+RBףp= VBZ!rhNNPQ?VB+i+2 word copierVBGl?NNl¿ i+1 word lastVBGQNN&1?VBDh|?5?IN+?RP|?5^NNSd;O?VB/$ۿNNPS= ףp=?NNP-VBZ^I +VBN|?5^@WDT}?5^IWRBRBR$C?RBJJRMbDTCl@JJ(\VBP;Oni-1 tag+i word NN joinsVBZS?NNSSi+1 word warehouseVBN/$?NN/$i+2 word oceanographicNNS5^I NN5^I ?i+2 word periodPRP$K7A`RBoʡտNN$CUHZd;JJd;O @INPnPRPK7A`? i word burnedVBNQ?JJQi-1 tag+i word VB tvNNCl?NNPCli-1 word articleNNMbX9ԿVBDQ?VBNQ޿VBZRQ?NNSRQVBGMbX9?i-1 word nancyNNPS㥛 ڿNNP㥛 ?i+2 word questionableRPsh|??RBK7A`?JJZd;Oi+1 suffix repNNmNNPm? i suffix ulaNN r?VBNV-JJHzGi+1 word sampleVBZ1ZdJJ1Zd?i-1 tag+i word DT surveyedNNQNNSlVBNCl@JJHzGJJRPni+1 word deportationVBGDlJJ ףp= INd;O@i+2 word addingVBN7A`NNףp= ?JJ+η?i-1 word defense VBNOnVBP&1?NNS9v?NNP}?5^INNffffff@VBG#~j?JJMbVBZMNNPSI +i-1 tag+i word NN infocorpNNʡENNPʡE?i-1 tag+i word VBP outsideRB|?5^INoʡ?VBPK7i+1 word experimentJJPn?NNPni-1 word leastNNSh|?5VBNNbX9?INʡE?VBZJJCl@VBD333333VB-?NNh|?5PDT(\?RPV-VBP|?5^ʿRBV-?VBGy&1?$?CD}?5^I?i-1 word contravenedNNSnNNn?i-1 tag+i word PRP$ requestNNS?JJSi+2 word unconstitutionalRP ףp= ?IN ףp= i+1 word optimisticRB ףp= ?NN%CCC1ZdRBR~jt@JJR!rhJJ ףp= i word lieuNN|?5^?JJ|?5^i word heaviestJJSNbX9?NNNbX9i-1 tag+i word NN requiredVBN333333?JJsh|??VBDMbX9 i-1 word indictmentVBN r?VBD ri-1 word rocketNNSˡENNˡE?i-1 tag+i word VBZ bentJJtV?NNtVi-1 tag+i word DT consultingVBG(\@NNʡEJJʡEi-1 tag+i word DT paralegalNNSSNNS? i+1 word dogsNNP1Zd?VBP rhJJ(\@NNuVi-1 tag+i word VBG wasteNNS?PRPSi-1 tag+i word VBZ prettyJJ1Zd?RB1Zd i word kindlyRB/$?JJ/$i-1 tag+i word , schedulingVBGoʡNNoʡ? i word doctorVBQ?JJQi-1 suffix ine''~jt?VBzGNNPSFx?POS'1ZRBRMVBNMbX9 @INp= ף?NNPrh|?CCK7ANNSsh|?PDTˡE?NN!rh?VBDMRB㥛 VBP#~j?RPZd;OVBZjtĿVBGy&1̿JJ)\(̿WDT/$ i word toryNN}?5^INNP}?5^I?i-1 tag+i word WDT nextJJK7?VBDX9vVBPS㥛i-1 tag+i word NNP scareNNMbX9NNPMbX9?i-1 tag+i word NNS ownVBPףp= ?JJ= ףp=VBDq= ףpi-1 tag+i word DT outsiderJJRjtNNjt?i+1 word barrageJJsh|??NNsh|?ݿi-1 tag+i word RB entrenchedJJM?VBNMi+1 word volatileVBN-JJX9vϿIN+RB/$@NNˡEVBDGz?JJRRBR?i-2 word cornersJJZd;OVBQRB~jt?i-1 tag+i word -START- berryNN rhNNP rh? i suffix IRMNN333333?NNP333333 i word hypeNNSh|?5NNE?JJmͿi word conceiverJJSSNNS?i-1 tag+i word NN nowadaysNNS&1RBGz@NNT㥛 i word spotlightNNoʡ?JJoʡi+2 word -END2-POS ףp= VBNʡEJJh|?5INK7?NNP9vVB~jt?SYMM?''(\?VBP"~j?DTZd;ORPrh|?NN|?5^@NNSy&1@NNPSOnRBx&?VBDʡE?VBZQCDʡE i-1 suffix viNNK7ٿJJK7?i-1 word audienceWDTw/@RB$CINw/VBGCl?JJ+NN~jt?VBD)\(?VBN)\(i word mountaintopNNS㥛?JJS㥛i-1 tag+i word JJ specialistJJ?NNi+2 word distractingNNSZd;OVBNMbпJJn?i-2 word pilotVB+PDT+?VBD+VBZ+? i+1 word 'sVBDSVBN+CDS㥛UH9vVBZK7NNSy&1WRBy&1?NNGz @PRPK7A @NNPV-@VBG7A`?VBV-ϿINJJRMbX9FWoʡ?VBP}?5^I@RB rhCC?5^I ڿWPK7A@DT`"?WDT"~j?JJNNPS-@JJS?5^I RBS/$RBRʡEEXv/@i-1 tag+i word NN galvanizedNNS ףp= JJ ףp= ?i+1 word threatsVBZQ?JJQοi-1 word resignedRP|?5^RB+IN +@i-1 word cartelNNp= ף?RBp= ףi-1 tag+i word , unpaidVBDx&1JJx&1?i-1 tag+i word VBD teaVB/$NN/$?i-1 tag+i word : dec.RBMbXNNPMbX?i-1 tag+i word NNP timelyJJ?RBi-1 tag+i word , postFW|?5^NN|?5^?i-1 tag+i word `` closeJJh|?5VBlRB㥛 ?i-1 tag+i word CC prettyVBtVRBtV? i-1 word dec.CDbX9?JJbX9i word karstadtNNbX9NNPbX9?i+2 word jeansRB7A`NNSʡENNPSq= ףp?JJA`"?NNrh|VBD/$ٿVBN/$?i-1 tag+i word NNP buildingVBG%CNN%C?i-1 tag+i word VBD somewhereRB1Zd?NNX9vVBN ףp= i+2 word dumptyRBh|?5INh|?5?i+2 word unclassifiedNNPK7A`?NNK7A`i-1 tag+i word , tradedVBNvVBDv?i-1 tag+i word RB germansNNS?5^I ?NNP?5^I i-1 tag+i word CD muscovitesNNPSFxNNSFx?i word waltherRBRX9vNNPX9v? i-1 word innVBGZd;NNZd;?i+1 word galvanizedJJ ףp= ?NN ףp= i word fellowVBI +޿JJuV?NNZd;?i-1 tag+i word -START- hasVBZ$C@VBtVοPDT rIN$CNNPni-1 tag+i word JJ belongingsVBZ+NNS+?i word effectivenessNN{Gz?JJ{Gzi-1 tag+i word POS publicizedJJGzVBNGz?i-1 word dangersVBPzGRBzG?i-1 tag+i word NN pulchritudeVBPQ˿NNQ?i-1 tag+i word DT fasbNN rNNP r?i-1 word yugoslaviaVBN?5^I VBD?5^I ?i-1 tag+i word VBD civiliansNNSq= ףp?NNq= ףp i word upNNPSRBF@NNo!VBNA`"VBSRPCl{'@JJRV-UH(\JJzGVBZnNNPZd;VBDI +IN+@CD333333ۿNNSB`"i-2 word optionJJRJ +CDnJJK7ɿINuV?NNP +?VBGtVNN?i-1 tag+i word VB actingVBG&1?JJ&1ʿ i word connieNNPS/$NNP/$? i word strongRBS~jtJJZd;O@NNPK7A`i word disinterestedVBNMbX9JJMbX9?i word securedNNZd;׿VBDClJJRbX9VBNS@JJ rhNNP?5^I i word carolNN7A`NNP7A`?i+2 word lobbyistVBjt?INy&1?VBN1ZdۿRBy&1NNPHzG i word adoptsVBZ rh?VBD rhi+1 word defendantsJJX9v?NN~jtxRB7A`IN7A`?VBZS㥛?NNPClVBGKi-1 tag+i word -START- tonsNNS?5^I ?NNP?5^I i word sedanNNS/$NN?5^I ?RB~jti word triggeredNNS rhVBNuV?JJA`"VBDn?VBZV-i-1 tag+i word DT roxboroNN㥛 NNP㥛 ?i+2 word signedJJQ?NNPQ޿i-1 word secondRBS㥛NN~jthRBS+?JJS+JJX9v?VBZ~jt?NNS"~NNP~jt?i+1 word quarterJJ{Gz@NNQRBV-߿INK7DT~jt?NNSNNPX9v i word weakerNNB`"JJRh|?@JJNbX9 i word ploysVBPZd;ONNS/$?NNP#~ji-1 tag+i word CD sacredJJMb?VBDMb i+1 word pulpVBD^I +VBN(\ڿVBP^I +?JJQ롿NNP9vNNV-?i-1 tag+i word : haveVBsh|?VBPsh|??i-2 word strengtheningJJNbX9?NNClVBN&1?i-1 tag+i word NN wreckWP(\NN(\?i-2 word disturbingVBNX9v?JJ&1?NN(\ i-1 tag+i word NNS consolidatingVBP7A`VBG7A`?i-1 tag+i word RB expectedVBN ףp= ?JJjtVBDx&?i word concernJJ&1NNP(\MDv/NNSK7A`NN?5^I @i-1 tag+i word NNP fansVBZSNNPSRQNNS+?i+2 word happenWDTMbJJ$CWPMb?NNV-׿VBDsh|?ſVBNx&1?i-1 word oftenINnVB{GzNNSVBP}?5^I?VBZ|?5^@NNGzRBRHzG?VBDA`"?VBNx?RBx&1?RPB`"JJ#~j?JJRB`"ɿVBG ףp= i-1 word differingVBGGzNNGz?i word tailbackRP(\пNN(\?i-1 tag+i word JJ secretJJMbX?NNS5^I NN rh?i-1 tag+i word DT proposedVBDJJX9vJJSX9vVBNHzG @NNoʡi-1 tag+i word -START- waningVBGףp= JJףp= ? i word ruralVBT㥛 NN%CRBGzNNPX9vJJ^I +@i-1 tag+i word , sellVBZoʡݿVBx&1@VBPFxVBD5^I i+2 word somebodyRB rhNNMbXٿINJ +?VBPMbX?WDTi+2 word passionsVBNZd;OVBDZd;O?i+1 word respectableNNSn?RBRK7A`RBv/IN~jt?NNPZd;?i-1 tag+i word JJ criticismsNNS#~j?NN#~ji+1 word insignificantJJK7A`?RBK7A`i word trustedVBNK7A`JJV-VBDX9v?i-1 tag+i word VBD downRP|?5^:RB@VBN(\VBPV-JJtVIN-@NNP(\?VBʡEi-1 word psychicNNSPn?NNPni-1 tag+i word TO leadVBjtĿJJCl?NNx i word bikingVBG +NN +?i+1 word airedWDTtV?INtVi-1 tag+i word DT consistingVBG#~j?NN#~ji-1 tag+i word DT somersaultingVBGHzGJJx&1?NNbX9i+1 word symptomsVBGNNx&1?JJnINx?WDTx޿i-1 tag+i word NNS altogetherDTffffffֿVBPRB? i word redeemVBQ?NNQi-1 tag+i word , scotlandNNh|?5NNPh|?5? i-2 word vanVBQVBPQ?i+2 word efficiencyVBI +?VBPI +i-1 tag+i word NNPS magazineNNPSV-NNPV-?!i-1 tag+i word -START- defectionsNNPMbX9ܿNNSMbX9?i word gyratingVBGsh|??NNsh|?i-1 tag+i word DT gannNNPSGz׿NNPGz?i+1 word subsidiesVBG#~jJJClNNʡE? i-1 word wingNNQNNSQ?i-1 tag+i word : followedVBN rh?NN rh i suffix uesRBʡENNPףp= RPsh|?ſJJS㥛 PDTd;ONNPSףp= ?FW~jtxVBZjt@VB(\µNNGz.!VBPT㥛 NNS$(@VBDzGVBNGzi-1 tag+i word VBN reinvestmentJJT㥛 NNT㥛 ?i+2 word clobberedVBjtVBPjt? i suffix pigNNSFxNNJ +?JJMbXѿi+1 word francJJtV?NNPtVֿi-1 tag+i word VBP widespreadJJ!rh?NNMbXVBNPni-1 word departedVBN+IN+?i-1 tag+i word JJ troublesNNSQ?NNQi-1 tag+i word NNP treatmentJJHzGNNPX9v?NNPSV-i-1 tag+i word RB introducedVBNlVBDl?i+1 word journalismJJ~jt?NNNbX9?NNPףp= i word nationalizedJJ~jtxVBN~jtx?$i-1 tag+i word DT biographer\/criticNNQ?JJQ i+2 word noneNNS+?VBGHzGNN+JJ|?5^@VBN)\( i-2 word haagVBZNNP?i+2 word provide NNP7A`?NNMbX9WDTA`"?VBDK7A`տVBNx&?VBPv?RBuV@INuVDTA`"VBG9vJJʡEƿNNSRQ?i-1 tag+i word NNP fmNNPS$C˿NNP$C?i word nabiscoNNPSV-NNPV-?i-2 word furnitureRPnNNx&1?RB rh?INZd;OVBx&1 i-2 word net JJRS㥛VB/$JJh|?5NNQ@VBD333333VBPd;OIN|?5^RBRS㥛?VBN|?5^?RBMbX?i-2 word meaningfullyNNʡE?JJʡE i+2 word litNNuV?JJuV i suffix iamNNSK7NNPK7?i-1 tag+i word VBG bicyclingVBGʡENNʡE?i-2 word canvasVBmVBNX9v@NN~jti-1 tag+i word NN loyaltyVBZZd;ONNZd;O?i-1 tag+i word DT complexNNffffff?JJS㥛?VBZ/$i word hangingVBG\(\?NN\(\߿ i word tastyJJGz?NNFxNNPSi-2 word marketplaceVBClVBPCl?i+2 word u.s.s.rVBN'1Z?VBD'1Z i-1 word kobeNNJ +NNPJ +?i word perspectiveNNSI +NN`"@JJʡE NNPjt?i tag+i-2 tag TO VBDRB?VB$C?RBR+ӿJJףp= ?NNS-JJR+?PRPV-IN+@DT rhVBGʡE?NNPRP$Cl?VBN)\(̿NNP"~j̿i-1 word instanceVBNVBD? i word bondINA`"NNZd;O @JJ= ףp=NNPp= ף?i+2 word extendRBoʡ?NNoʡݿVBDnVBNL7A`JJL7A`?INn?i-1 word change NN rhEXʡE?JJ+DT#~j?NNS +RB?VBD(\?CCy&1?INv/?VBZZd;O?NNPzG?i-1 word doskocilNNPSQſNNClNNPV-?i+2 word rewardVBZ"~?NNS"~i-1 tag+i word NNP alongsideVBDZd;OINZd;O?i+1 word moxieVBG}?5^INN}?5^I? i word opensVBZ r@VBMbX9NNSMbNNS㥛i-1 tag+i word IN unfamiliarityNN"~j?NNP"~ji+1 word access NN!rhVBNKVBPZd;JJ ףp= @JJRMb?NNPnڿVBK7A`?NNPSn?VBDx&1?RBRMbNNSQVBG{Gz?RBKi-1 tag+i word NN announcedWDT+VBN333333JJ%CVBDV-@ i word wireNNS㥛 @JJjtֿINrh|VBK7NNS\(\i-1 tag+i word TO ohioVBX9vNNPX9v?i word integrationVBP/$NN(\?JJK7i-1 tag+i word TO reinvestDTV-VBV-?i-2 word stylishlyNN`"NNP`"?i-2 word casinosRB~jtؿINOnDT~jt?VBPOn?i+2 word providerVBPZd;NNZd;?i-1 tag+i word POS brianJJ9vNNP9v?i-1 tag+i word VBZ counterRBK7A?NNGzRBRDlٿi-1 tag+i word , cheeseNNNbX9?JJNbX9i-1 tag+i word PRP valuedVBPxVBN$CVBDJ +?i-1 tag+i word CD artilleryNN-?RB-i-1 tag+i word VB warmingNNZd;O?JJZd;O߿i-1 tag+i word , totalJJ-?NN-ƿi-2 word americans VBP+VBZ(\NNPClNNPSRQ?VBDS㥛VBNx&1?INQ˿NNSFx?VB/$JJMb?RBRQ?i+2 word calgaryNNS|?5^?NN|?5^i-1 tag+i word NN hondasNNPSy&1?NNPy&1 i word shinyNNMNNPy&1?JJCl?i-1 tag+i word POS spinoffNNbX9?RBbX9 i-1 word zincVBK7ٿNNK7?i+2 word involveVB +RBJ +@WDTK@JJMbIN= ףp=DTKi-1 tag+i word , drivenVBNn?RBni-1 tag+i word JJ seeminglyNNPS-RB-?i-1 word upsideJJX9vINZd;ORB@RPnNNQ?i-1 tag+i word IN blipsNNSy&1?VBN/$VBZn i word hiddenNNMbVBNףp= W@JJ`"PRP/$ٿi-1 tag+i word -START- opecNNPx&1?NNS㥛JJX9vֿIN%Ci+2 word physiciansJJ%CNNP%C?i+1 word governedNNS/$NN/$?i-1 tag+i word -START- firstJJ-VBSLS\(\@RB}?5^I?NNP-i-1 tag+i word VBD issueNN}?5^I?JJ}?5^Ii word minimillNN|?5^?VBD|?5^ɿi-1 tag+i word , yesJJ/$NNSʡEUH)\(@RBv i-1 tag+i word -START- luxuriousJJ^I +?NNP^I + i word besetVB +RPK7VBNQJJS㥛@i-1 tag+i word , pledgedVBNnJJ|?5^VBD= ףp=?i-1 word frederickNN\(\NNP\(\? i suffix -doJJzG?NNzGҿi-2 word ancientJJS㥛?NNPS㥛i-1 word b.a.tNNPS&1NNP&1? i-1 suffix n.NNPV-?RBV-i+1 word devicesNNZd;VBGʡE?RB|?5^ʿJJsh|??JJRK? i-2 word nastVBN= ףp=VBD= ףp=?i-2 word stingingWDTQ?INQi word narrowsVBZS?NNSSi-1 tag+i word NNP soldVBDJ +ٿVBNS㥛@NNHzGi+2 word withinRBZd;?NNPPnJJ|?5^?VB(\NNn?i-1 tag+i word -START- appliedNNPV-?VBDV-i-1 tag+i word , thriveVBxVBPx?i-1 tag+i word NN marginNN?NNSi-1 tag+i word PRP maleVB(\RBRV-JJ +? i suffix latNN~jtVBNK7ARBB`"NNS|?5^VB"~JJX9v@i-1 tag+i word RB strangerJJR rNN r?i word checkbookVBP;OnNN;On?i-1 tag+i word DT trainingVBGX9vNN\(\@JJEi-1 tag+i word DT threatsNNSy&1?JJy&1i-1 tag+i word JJ leemansNNPV-?NNSV-i-1 tag+i word PRP dependentVBlJJrh|?NNMbؿi+2 word combineVBNClJJy&1|VBDjt?i word avoidanceNNS)\(NN)\(?i-2 word electricalVBNMb?VBDMbi-1 tag+i word IN earlyRB r@JJ ri-1 word passionatelyJJX9v@VBNX9vi-1 tag+i word TO splittingVB-VBGNNʡE@i+1 suffix ohnJJ|?5^VBZ(\?NNS(\NNPףp= ?VB;OnNN~jt?i-1 tag+i word DT taskNNSDlNNDl? i word chestVBZ}?5^INN}?5^I?i-1 tag+i word VBP thatDT~jtWDToʡRB ףp= IN?5^I ?i+1 word perchesJJ-ۿNNP-?i+1 word utilityNNPS{GzVBGZd;O?RBQ?NN;OnVBPDlJJQ?NNPw/i-1 tag+i word -START- personalINK7JJT㥛 @NNV-NNPK7i-1 tag+i word NN disputedVBN rhVBD rh?i-1 tag+i word JJR engagedVBN?JJV-߿VBDni-1 tag+i word IN strictVBNPnпJJPn?i-1 tag+i word PRP easeVB rh?VBD rhi-2 word deathVBPS?JJ9vNNMbPJJRjt i suffix RABVBtVNNPtV?i+1 word oakesNNPSB`"?NNSrh|NNPjti-1 tag+i word DT proceedsNNSZd;?NNZd;i word panickyJJ/$?NNL7A`VBMbi-1 word concoctionsINx&1RPHzG?RBClɿi tag+i-2 tag VBD WRBNNT㥛 ?JJT㥛 i-2 word sequesterNNMbX9?JJMbX9ܿi+2 word environmentalNNPS`"VBGX9v޿NNSc@JJQNNPy&1i-1 tag+i word -START- nasaNNP-?NN-ƿi word oversawVBZZd;OVBDZd;O? i+1 word paleNN`"?JJ`"i-1 word reichVBZxNNS r@VBD+ i word namingVBG&1?NN&1ҿi-1 tag+i word WDT onePRPS?NNS㥛?CDK7i+2 word valuesVBZ/$?VBP/$JJ'1Z?NN'1Zi-1 word beefingRPK7?RBK7i-1 tag+i word VBG firmJJsh|??NNsh|? i-2 word jRB%CJJ ףp= NNPCl? i+1 word rearJJn?NNnٿi-1 tag+i word JJ hedgesNNSQ?VBZQi word yoshihisaNNA`"NNPA`"? i word tymnetNNxNNPx?i-1 tag+i word , stylishlyRB`"?JJ`" i word dopeVBPh|?5޿NNK7?JJ+i+1 suffix rskWDTrh|ϿINrh|?i-1 tag+i word PRP$ uncombedJJʡE?NNʡEi word acrimonyNNZd;O?JJZd;Oi-1 tag+i word NNP revealsNNP|?5^VBZ|?5^?i-1 tag+i word TO transformVB;On?VBP;Oni-1 tag+i word DT no.CD#~jĿNNPZd;ONNx?JJK7?i-1 tag+i word NN aidesNNClNNSCl?i+1 suffix tinVBDx&?VBNx&JJ5^I INʡE?NNSV-NNPV-?RBʡEֿNN5^I ?i-1 tag+i word -START- tithingVBGZd;ONNZd;O?i-1 tag+i word , pulseNNS㥛?JJQVBK i word bangNNV-NNPV-?i+2 word thoughtRBIN-@NNP333333@VBT㥛 JJtVNNCli-2 word tribunalNN+NNS+? i-1 tag+i word -START- swivelingVBG/$?NN/$ݿi-1 tag+i word `` whereWRBy&1?EXy&1i-1 tag+i word IN juxtaposeVBzGếVBPDl?IN+ i word normanNN/$NNPMb?JJPni-1 tag+i word NN smarterRBRM@NNMi-1 suffix otoVBZ/$?NNS/$i-1 tag+i word NNS outletVBPV-NNV-?i word rubicamRB\(\NNP\(\?i+2 word idealisticJJ?NNi+2 word wilsonNN rhѿNNPq= ףp?NNPS-?NNSV-JJ5^I i-1 tag+i word JJ insideNNIN{Gz?RBQ? i word unionsVBPjtNNSjt?i-1 tag+i word DT surplusNNd;OοJJd;O? i+2 word elieVBG r?NN ri+1 word jumbosNNS(\JJ(\?i-1 tag+i word RB literallyVBPnRBn?i-1 tag+i word VBP consideredVBNףp= ?JJףp= i-2 word bacteriaJJ/$?VBN/$i-1 tag+i word TO penetrateVB333333?NN333333i+1 word photocopiersJJh|?5?NNPh|?5i-2 word establishedJJRClJJQINFx?DTFxNNPjt@NNX9v?i+2 word watchedNNPףp= NNPS㥛 0@VBD~jtVBNQֿJJjt?NNSQi-1 word freshlyVBN%C?JJ%Ci-1 tag+i word DT dreadfulJJS㥛?NNS㥛ܿi-1 word edwardNNffffff?NNPffffffi-2 word reducesVBZ/$NNS/$?NN;On?JJ;Oni-1 word grummanVBZVBP?i+1 suffix car DT rh?NNPy&1VBuVNNS@VBDlJJS?WDT}?5^IIN'1Z?CC333333VBNA`"CDQJJZd;?i-2 word wreckWDT/$?IN/$i-1 tag+i word TO prevailVBx&1?NNx&1i-1 tag+i word VBN zapfelNNS$CNNP$C? i+1 word dungVBZB`"VBP+NNx?i-2 word metallVBPzGNN-?NNPy&1i-1 tag+i word NN lowerVBʡERBnRBR;On@NNsh|?JJRuVi-1 tag+i word DT captureNNʡE?JJʡEi-1 tag+i word PRP optedVBD/$?VBP/$i-1 tag+i word DT fitnessNNrh|?JJrh|i-1 tag+i word NNS centersNNPSjtܿNNSjt?i-1 tag+i word NN annuitiesNNSNbX9?NNNbX9i tag+i-2 tag `` ,VBD-?VBNMbWPx&?RP-VBK@WRBS㥛PDT?5^I RBS/$JJS/$?VBP)\(@JJx&1DT-?RBrh|ϿCCd;O?NNPSV-׿VBG~jth?VBZ5^I ?FWSNNPMbMDUHS㥛@WDT5^I NNtV @NNSClINMb?i+1 word plannedJJ"~?VBZ;On?NNPsh|??NNPSsh|?RP?RBNN"~POS;Oni-2 word techniqueNNSV-VBG(\?NNK?VBDA`"?VBNZd;OJJZd;?i-1 tag+i word VBN hyperRBK7A`RBR~jtJJCl?NN?5^I i+2 word completingRBw/NNvNNSv?JJw/?i-1 suffix ie.FWPn?INx&ѿJJ(\µNNP?i tag+i-2 tag NNP VBPRBS?NNS rh?NNPl?NNPS(\JJ rhNN7A`?CD i word richlyVBP\(\RB\(\?i+1 word zapfelVBN$CNNP$C?i-2 word libyansNNv?VBNvRBvVBDv?i-2 word banxquoteNNSnNNPS?NNPS/$ i suffix gulNNCl?RBRʡEJJA`" i+1 word loveINK7?MDJ +?VBDJ +RBSv/?VBPv/RBK7ɿi-1 tag+i word IN walkingVBGZd;NNZd;?i-1 tag+i word , approvedVBN+?VBD+ӿi+1 word yourselfVB1Zd?RB1Zdi word stabbedVBPˡEVBNV-?JJV-׿VBDˡE?i-2 word rapedVBV-ڿNNB`"VBDrh|? i word extendVBPGz?NNGzοi-1 tag+i word DT limelightNN|?5^?JJ|?5^i-1 tag+i word NN barringVBGGz?NNGzi-2 word papettiNNbX9?NNPbX9i-2 word ignoreINM?DTMVBGX9v@NNFxJJx&1i-2 word misleadingJJV-?NNV- i-2 word heesNNPV-?JJh|?5VBDv/i word slimmerVBN}?5^INNx&1JJR-@RBbX9i-1 tag+i word , useVBMb?VBP9vINZd;O i suffix mpsJJX9vVBZRQ@NNSx&1@NNPmNNMbXVBD9vҿVBPV-Ͽi-1 word makers JJQ?VBMbXɿRBT㥛 ?VBDK?VBNjtINFxٿNNP/$NN rhRBR'1Z?JJR'1ZVBP(\?i-1 tag+i word NN corporatewideVB`"οNNS;OnJJrh|@NNZd; i word nationNNw/?NNPw/i-1 tag+i word JJ structuralJJMb?NNMbi-1 word switchingINx&1RPx&1?i word unifirstRBGzNNPGz?i-1 tag+i word VB attachedVBNOn?JJOni+1 word raisesVBN?5^I JJx&NNx?VBD?5^I @RBRCl@JJR + i+2 word lotsVBx&1?NNx&1i-1 tag+i word JJ hundredVBNjtCDjt?i+2 word exportsVBZ#~j?NNS#~jJJV-?NNPV-i-1 tag+i word DT digitalNNSJJ?i-1 tag+i word IN constantJJT㥛 @NNT㥛 i-1 word cellularNNPSOn?NNPOni-1 tag+i word VBP pigsNNSuV?NNuVi-1 tag+i word VB serviceVBS?NNˡERBtVi-1 tag+i word RB turnedVBN/$?JJ/$VBD+i-1 tag+i word IN zellersNNSClNNPCl?i+1 word sweetenedVB/$NN/$?i-1 tag+i word DT cradleNNX9v?JJX9vi-1 tag+i word IN happyVBZffffffJJGz?NN(\i-2 word billionVB"~RBR~jtRB-?JJRRQ?FWB`"?VBN|?5^ѿWDTCl?DTClNNP{Gz?JJjtNNx&1?VBD$C?VBPX9v޿UHGzIN;OnVBZNbX9?VBGRQ?CDNNSh|?5?i-1 tag+i word JJ entityNNq= ףp?JJq= ףpi word sympatheticJJ}?5^I?NN}?5^Ii+2 word telegraafNNZd;?JJuVFWoʡi-1 tag+i word NN wobblyJJB`"@RBB`"i-1 tag+i word JJ restsVBZMb?NNSMb i+2 word joltRBoʡ?JJ#~jNNP/$ӿi-1 tag+i word NNS lockedVBN +?VBD +i-1 tag+i word VBN mixedVBNJ +?JJJ +i word scientistNNS9vNN-@JJ= ףp=i word maninstaysNNSv/?NNv/i-2 word physicalNNSKNNK?i-1 tag+i word VB hearingsNNS|?5^?RBR|?5^i+2 word aztecNNPJ +NNStVJJ@NNʡEۿi-1 tag+i word PRP readVBK7A?VBP-VBDʡE?i word administrativeJJQk@VBPw/RBV-NNp= ף i-1 tag+i word RB chillingVBGSJJS?i-1 tag+i word JJ eyesNNSB`"?NNB`"i-1 tag+i word , wisNNNNP?i-1 tag+i word JJ sodasNNSbX9?NNbX9i-2 word enthusiasticNN~jtJJ~jt?i-1 tag+i word NNS endorseVBPrh|?VBDrh|i-1 tag+i word IN subordinatedVBNjt?JJ-VBD/$ i word agipNNSzGJJ'1ZNNPV-?i-1 tag+i word `` babiesNNPSvNNSv? i word claudeJJbX9޿NNPbX9?i+1 word halvesWDTuV?INuVͿi tag+i-2 tag WDT :VBZd;?RB㥛 ?NNxVBPCl?JJ(\VBZMbȿNNS-i-1 tag+i word CC grayVB㥛 JJ5^I ?NNSi word costlierJJRI +?JJI +i-1 tag+i word JJR progressNNS?JJS i suffix EATJJ ףp= @NN r?NNP$C i suffix iffNNS1ZdNNPʡERBrh|ϿNNNbX9 @VBNV-CDQPRPClѿJJ7A` @i-1 tag+i word NNS boostVBP r?RBSSӿNNZd; i word milanNNPSPnJJ-NNP/$? i word timelyRBq= ףJJq= ף@i-1 tag+i word IN insufficientJJ~jt?NN~jti-1 tag+i word CD behindRBT㥛 ?NNJ +INA`"i-1 tag+i word VBZ prudentVBNS㥛JJS㥛?i-1 tag+i word CC multipleRBRSJJS?i+1 word meadowsJJ?NN/$NNPx?NNS333333ÿ i-1 word $NN^I +NNP~jtCDMbX?JJMb`i+1 word climbedVBPX9vVBZvNNS"~?NNP|?5^ʿNNPSh|?5VBG"~NN%C?VBDX9v?i-1 tag+i word IN coastJJR{GzܿNN{Gz?i-1 tag+i word PRP$ intentionsNNS~jtx?NN~jtx i+2 word reneJJy&1?NNy&1ܿi+1 word votersJJ+IN1Zd?NNP+?VBX9vJJRX9v?WDT1Zdi word discriminatoryNNrh|JJrh|? i-2 word mintNNK7?JJK7i-1 word incentivesRBClٿVBNw/VBDw/?RBRCl? i suffix kusJJX9vNNPX9v?i-1 tag+i word NN sentenceNN㥛 ?RB(\VBN7A`i-2 word mysteriousWDT+NN+? i-2 word ownsNN ףp= ?INZd;VBZCl?NNPSy&1?NNPx&1 i suffix DPTNNPn?NNnʿi-1 word threatenVBZ;OnNNS;On? i-1 tag+i word -START- paramountNNMbNNPMb?i-1 word deputiesWDTMbX9?INMbX9 i-1 word m.NNPS7A`NNP7A`?i-1 tag+i word CC liftingVBG/$?NN/$ѿi-1 tag+i word POS figuresNNSףp= ?JJףp= i+1 word unifirstRBRMRBM?i-1 tag+i word VBP orkemRPxNNP$CVBJ +?i-2 word played RBʡEVBD$CINV-@VBGv/?VBClNNףp= JJK7A?DTCl?RPGzi-1 tag+i word DT triplingVBGx&1?NNx&1"i-1 tag+i word -START- competitionNN}?5^I?NNP}?5^Ii-1 tag+i word VBG abnormalNNPSPnJJPn?i-1 tag+i word DT wholeJJ~jtNNSmJJS`"ֿNNp= ף@ i word jewishNNPSJJ(\@NN1ZdӿNNPy&1i+1 word spaldingNNZd;?JJZd; i-2 word mineJJM?NNS㥛NNP;On?i+1 suffix ierVBZM?VBN/$@VBP?5^I ڿRB5^I @NNPX9vNNPSuVVBG/$?VBD rhNNh|?5NNSMb?CDS㥛?VB(\JJCl JJRMbi+1 word protestantsJJK?NNPK߿i+2 word malignantVBGn?NNMbX9VBP?JJ1ZdNNS= ףp=?VBi-1 word under FW}?5^I̿CDbX9ȶVBN{Gz?RBsh|?DT;On?NNPSQVBGHzG?JJl?NNQ?JJR}?5^I?UH"~NNSL7A`ؿNNPK7A i-2 word yaleNNK7?NNPK7i-1 tag+i word TO !HYPHENJJT㥛 @NNSq= ףp?NNPSVBV-RB㥛 NNRQ@CD'1Zi-1 tag+i word NNP insuranceNN}?5^INNP}?5^I?i+2 word developingNNSq= ףp?VBNq= ףpJJR-RBR-?i-1 tag+i word -START- wellsNNPQ @NNSʡESYMSINSi+1 word chryslerVBZI +?INI +RBV-?NNPV-Ͽi-1 word housingNNPS ףp= NNZd;O?JJ333333VBZ+׿NNS{Gz@NNPI + i word likeJJR +RP~jtNNS㥛DVBDp= ףCDV-VBPV-@INZd;,@NNP~jtؿVBN(\RBRlJJ"~?NNSZd;OVBX9v@RB- i-1 tag+i word `` inchwormNNCl?JJCli-1 tag+i word -START- normanJJPnNN/$NNPMb?i-1 tag+i word DT oasNNP"~?NNPS"~i+1 word mushroomsJJMbNNPMb?i+2 word escapingVBPS㥛NNS㥛?i word cleverlyJJ+RB+?i word povertyNNp= ף@JJMNNP rhVBK7A`NNSZd;Oi-1 tag+i word CC pourVBMbXVBPE?CDRQi+1 word randomJJGz?VBNlNNK7 i suffix WSJNNP~jt?IN~jti word anybodyDT rhRB^I +NNmR@VBV-JJX9v i word remainNN㥛 RB}?5^IܿVBKVBP/$@VBNi-2 word southamVBPʡE?NNQݿVBDMbXi-1 tag+i word VBG paringVBG\(\?NN\(\i-2 word metersRB/$?JJ/$i-2 word templeVBN{GzVBD{Gz?i-1 tag+i word JJ pipsqueakNNS~jtNN~jt?i+2 word statelyINnRBn?i-1 tag+i word MD somedayVBV-RBV-@i-1 word heavyJJEԸVBZDlNNS-?NNP5^I MDMbX9NNPSS@VBG$CNN|?5^?i-1 tag+i word DT chargesNNSʡE?NNʡEi-1 tag+i word DT congoleseJJFx?NNPFxi-1 tag+i word VBZ letVBPV-?VBN~jt?VBsh|? i suffix ECTJJ/$?NNP/$i-1 tag+i word JJR outNN+߿IN+? i-1 word roleRBX9v?NNX9vi-1 tag+i word DT netsVBZOn?NNSOnۿi-1 tag+i word NN unfairlyRBB`"?JJB`"i-1 word writesRBZd;ONN+VBPNbX9JJ+?INZd;O@NNPNbX9?i-1 tag+i word IN emceeNNS`"NN`"?i word wealthyVBZClVB^I +ǿJJ-?i-1 tag+i word CD carryVBPx&?NNKVBD`"i+2 word spellDTFx?WDTFx i suffix RTYNNjt?NNPjti-1 tag+i word JJ glassNN+?JJ+i+1 word dramatizationJJL7A`?NNPL7A`尿i+1 word outside CDZd;?WDTtVJJffffffINV-?VBZffffffVBT㥛 ?NN rh?VBN= ףp=ҿDTuVNNSffffff?VBG㥛 VBD= ףp=?VBPT㥛 i+1 suffix isWDT r?DT(\?RP|?5^NNS@VBN!rh?JJNbX9FWx&?CD'1Z?RBA`"''MbX?VBP&1VBD-NNPjt?RBS|?5^?EX5^I  @VBG}?5^I POSMbXWRB r?JJR rVBZlVBL7A`RBRDl?INsh|NNPSMb@JJS rhWPjt@PRP~jt?NNSd;O?CC1Zd?PRP$Pni+1 word industry VBDZd;?CD$C?VBX9vVBGQNN1Zd@NNS^I +@NNP+NNNPS(\?VBNM?JJZd;Oi+2 word retailersJJʡEۿWDTV-VBNS㥛?NN/$տINV-? i suffix cotNNPS}?5^INNP}?5^I?i+2 word orderedNNh|?5?RBw/JJ/$i-1 tag+i word CC thirdJJV-@VBL7A`NNRQRB rh i+2 word egonNNPSV-?NNSq= ףpտNNPMbp i suffix RTSNNSNbX9@NNPNbX9i+1 suffix nzaVBClUH= ףp=NNPOn?i-1 tag+i word RB challengedVBN+JJClǿVBDDl?i+2 word kylixIN +?WDT +JJffffff?VBDffffff޿i-1 word leagueVBSNNˡE?JJSӿi-1 tag+i word -START- mipsNNSrh|NNPrh|? i-1 word pollVBZ?5^I ?VBN㥛 ?NN|?5^i-1 tag+i word JJ occupancyNN#~j?JJ#~jĿi-1 tag+i word IN anticipatedVBNQJJQ?i+1 word radioJJffffff?NNPq= ףp?NNPS5^I i-1 word knowledgeableNNQ?JJQοi-1 tag+i word VBZ eckhardNN`"NNP`"?i-1 tag+i word IN southamNN/$@NNP/$i-1 tag+i word DT endNNP+NNS(\NN+@JJsh|?CD|?5^ i word goreVBM?NNPS/$ٿRBMNNP/$?i-1 suffix sks WDTnRB/$DTjt?VB ףp= ߿JJzG?NNClVBDʡEÿNNS)\(JJR;OnVBN-?RBR|?5^?VBP/$ƿINffffffi+2 word greatVBx&1JJM?NN^I +?VBDoʡPDTI +VBNRQRB1Zd?i word hinderingVBG?5^I ?NN?5^I ҿ i+2 word stayVBG"~jJJʡE?NNQ?RBX9v׿VBZjt?NNSjti-1 tag+i word `` suddenlyRBʡE?NNPʡEi-1 tag+i word , handedVBNGz?VBDGzi word thereinVBClRB@NNJJRV-i-1 tag+i word NN monthlyRBV-?NNy&1JJ~jt? i word mannerVBNrh|NNv/?JJRxi+1 word normsVBDMb?VBNMbJJCl?NNPClٿi+2 word earthRPRQRBRQ?i-2 word effortVB~jt?JJ?NN rRB rhݿNNSrh|NNP(\?i word warrantVB?NNl@JJRV-VBPbX9@JJZd;IN rVBZX9vi-2 word beatsRBy&1RPy&1?NN㥛 ?JJ㥛 i-1 tag+i word DT liquorNNSKNNT㥛 ?JJ(\i-1 tag+i word IN cartoonNNPv?NNPSv߿i-2 word countriesNNRQ@VBNv/VBPV-JJPn?IN%CVB%C?RBPn?i tag+i-2 tag NNS VBN WDT'1ZINJ +?NNVBPd;ORB#~jVBDV-@VBNoʡRBRbX9?EXq= ףp?JJVBbX9?VBGX9vNNP{Gzti word isolatedVBPV-VBN7A`JJ~jt?VBD-?i+2 word chortledVBDw/?VBNw/i-2 word glutsVBGvJJv?i-1 tag+i word TO taiwaneseVBˡEJJJ +?NNP|?5^ҿi word whatever NNSJJ +INx&1RPd;OWDTT㥛'@NNP'1ZMDA`"VBQWRB7A`WPʡEi-1 tag+i word , whisperingVBG?5^I ?NN?5^I i-1 tag+i word VB compelledVBN?JJRi+1 suffix tarWDTMҿRB"~ڿINM?NNPCl?JJrh|?NNMbXVBDʡEi-1 word packwoodRB333333DT333333? i+2 word dotUHʡENNʡE? i-2 word asksNNX9v?JJX9vi-1 word activitiesRBuV?VBP +VBNK7A`JJ&1VBDK7A`?i-2 word ineffectiveVBPRQVBRQ?i word carefulJJZd;O?NNMbXVBNHzG i word temptsVBZK7A?NNK7Ai-1 word reformVBZx&1?NNSx&1VBN"~?VBD"~i-1 tag+i word CC fileNNSw/NNffffff@JJ|?5^i+2 word shipmentsNNSGz?NNP!rhVBh|?5RB;On@NNQ?JJjtIN(\i-1 tag+i word RB financeVBX9v?NNX9vi-1 tag+i word JJ ethicsNNPSʡENNSʡE?i+1 word manufacturingNNSMb?NNP r?VBDlٿNNPSX9v?JJOn?NNK7VBNoʡRBli-1 word convertedRP|?5^RB|?5^? i suffix neeVBNA`"ۿNNˡE?DT"~ji+2 word unfilledNNS|?5^NN|?5^?i+1 word occursWDT+?IN+i-1 tag+i word VBD enjoyableVBN+JJ+?i word bruisingVBG rhJJ rh?i-1 tag+i word NNP importsVBPJ +NNSJ +?i-1 tag+i word NN continuedVBDJ +?VBPzGVBNSÿJJ"~ i+1 word herbVBNMbVBDMb?i word taperingVBGv/?JJv/ i-2 word huntNNn?JJ&1NNPnVBG&1?i+2 word porkapolisINV-VBDffffffVBN^I +?i+1 word marshallRBrh|߿NNPrh|?i-1 tag+i word -START- preciousNNS"~JJHzG?NN"~ڿNNP rhݿi word improvesVBZ1Zd?NNS1Zdi-1 tag+i word VBZ vintageJJ;On?NN;Oni tag+i-2 tag RBS NNSVBN +VBD +? i+2 word clueVBA`"VBN$C?VBD1Zdi-1 tag+i word VBZ leveragedVBN1ZdJJ1Zd@i word lexingtonNNZd;ONNPZd;O?i-1 tag+i word NNP postalJJQNNA`"NNPjt?i+2 word computers NNx&1?JJS333333VBNV-?RB&1@VBZQVBG1Zd?RP9vJJK7VBDRBS333333?NNSy&1NNPʡEi-1 tag+i word IN sexyJJ`"?NN`"i-1 word matterNN!rhIN!rh?i-1 tag+i word JJ germansNNS?5^I NNP?5^I ?i word disputeVBCl?NNS㥛@VBPMbPJJ-DT1ZdNNPS i-1 suffix c.NNPSV-NNPV-?i-1 tag+i word NN heardVBNMb?NN;OnVBDmi word suppliedVBNS㥛?JJS㥛i word acclaimNNX9v?VBPX9vi-1 tag+i word VBP prettierJJRy&1?RBy&1̿i-1 tag+i word JJ pointesNNPS/$NNSnNNP{Gz@i+1 word flierJJw/?NNw/ܿi-1 word chief RBQNNS?5^I ?NNPx&1?VBP~jtNNPSzGҿVBGS㥛?JJx&1?NN"~j?INDlVBZ5^I ۿVBCli-1 tag+i word JJ sometimeNN|?5^RB|?5^?i-1 suffix enaJJp= ףNNPS +޿NNy&1|?RBZd;OտNNPv@i+2 word blocksVBPS?VBSVBGSNNS?VBD= ףp=?VBN= ףp=i-2 word widelyINGzDTQVBDl?RB-?NN\(\?JJRZd;JJMڿi-1 tag+i word POS rapidJJFx?NNFxٿi-1 tag+i word POS punchingVBGV-NNV-?i-1 tag+i word DT cannesNNPS!rhNNP!rh?i word sidewaysRBRQ @NNSL7A`NNB`"JJ/$?i+2 word journalIN"~VBZrh|?NNP ףp= JJV-?NN^I + i suffix iteVBN&1INnNNP?5^I ?VBDZd;OPDTl @JJSB`"۹PRPJJ1Zd@NNPS/$޿RB}?5^I@VBPV-?VBZ$CVBRQ?NNGzPOSX9vNNSQi-1 tag+i word VB abuseNN?NNSi-1 tag+i word VBP paidVBNS?JJSۿi-1 tag+i word POS recordJJOn@JJR+NN= ףp=i-1 tag+i word IN illuminateNN)\(VB)\(?i+2 word prohibitedVBZy&1VBA`"VBPA`"?NNy&1?i+1 suffix ayaJJ;OnNNP;On?i+1 word remainsWDTV-?JJX9vINV-NNSQ?NNq= ףp @VBD%CCD ףp= i+1 word mineraNNPKJJK?i-1 tag+i word JJR stringentJJ?NNi-1 word athleticsVBjtܿVBDjt?i word perfectVBP(\JJMbX9@NN$CNNPx&1?VBK i suffix So PRP$-NN)\(CCGz?LS%CJJV-VB/$ӿRBM@IN rh?NNPMi+1 word bealeNNRQNNPRQ?i-1 word mortgageVBZS?NNSV-?NNP?NNPS/$ٿRBQNNK7AJJx&?i word featuresVBZ/$?NNSˡE?JJR\(\NN i suffix rvyRB/$NN%CJJMb?i+1 word appointedRBw/?DT%CVBMbX9?i-1 tag+i word , momNN^I +?NNP^I +i-1 tag+i word NNS lengthensVBZl?NNSli-2 word observingVBNq= ףp?JJq= ףpտi word entitleVBMbX?JJV-RBbX9 i-2 word bitFWGz@JJRףp= NNS~jtVBGQ?$V-NNEi-1 suffix .c.NNPGz?NNGzi word mulitiplierJJQ?NNQi word unsignedVBNRQJJRQ?i-1 tag+i word -START- topJJsh|?@CDZd;ONNPh|?5INףp= i word notifyingVBGn?JJni-1 tag+i word TO anytimeVB!rhRB!rh?i-2 word vagariesJJPnNNPPn? i word gmacNNP7A`?NN rhJJ~jtIN~jti-1 tag+i word VBN resolutionsNNS+?NN+ i suffix udsNNS(\@NNʡEJJVBDQVBZv/@ i word behalfJJX9vοNNS/$NNM?i word sustainVBOn?NNOni-1 word adultVBZnٿNNSn?i-1 tag+i word NNP bourseNNPSlNNPl?i+1 word republicNNPCl?JJCl i suffix narVBV-NNV-? i-2 word emcJJMbX9@NNMbX9i-1 tag+i word IN evenRB'1Z@JJDl?IN/$VBZX9vVBPV-i-1 tag+i word JJ tcmpJJ\(\NNP\(\?i-1 word translucentNNjt?JJjti-1 tag+i word PRP 'dVBP;OnVBZClPOSMbVBDoʡ?MDX9v @i-2 word counterpointVBZ+?IN+i-1 tag+i word DT fruitlessJJ'1Z?NN'1Zi-1 word augustINq= ףp?NNSJ +?VBGGz?NNFx?VBPJ +WDTq= ףpJJ-i-1 tag+i word RB liveJJ= ףp=VBL7A`?VBPT㥛 ?i+1 word aggressiveDT rhIN rh?i word cineplexVB1ZdNNZd;ONNPFx?i+1 word tachycardiaNNA`"JJA`"? i+1 word `NNSQ?NNPSoʡNN!rh?POSE?JJK7A`?VBZEi-1 tag+i word JJ budgetingNNK߿JJʡEտNNP9v? i word tariffNNPvNNv/@PRPClѿJJ~jtCDQi word ordinaryNN^I +JJCl@RB\(\i-2 word coastWDTsh|?ſJJQINsh|??VB;OnNN-?VBDZd;?VBN333333?i-1 word ongoingNNMbX?JJMbXi+2 word ragedDT`"WDT`"?i-2 word regulationsJJ#~j?NNףp= VBNʡE?VBPKRBClVBGףp= ?i-1 tag+i word DT compositeJJ{GzĿNNPp= ף?NNS~jtNNCl i-2 word goesEXx&1RBx&1?NNP'1Z?VB'1ZVBGjt?NNjt i+1 word shunJJQNNPnNNSK7A?i+2 word levinNN rhNNP rh?i word insuringVBG-?JJ-ӿi+2 word bergenVBG?JJi word varietyNNP~jt?NNK7A@NNSClRBmJJ{Gzi+1 word staffNNPSK׿JJ|?5^@NNx&CD+?RBS㥛NNSGzNNP-i-2 word seigeCCS㥛DTn?NN`"i-2 word inacioNN rh@NNP rhi+1 word attractionJJFxNNFx?i word travelersNNPSCl?NNPClѿi tag+i-2 tag JJ VBDTQNN?VBN+@EXQJJ(\¿VBZw/RP;OnNNPS#~j?RBQFWsh|?WDTI +NNS|?5^@NNP&1VBm?VBGX9v?VBDGzCCMb?JJR-i-1 tag+i word , automaticJJK7ANNPK7A?i-1 tag+i word NNP meetingNNPQNNQ?i-1 tag+i word CC showVBQ?VBPX9v?DT+NNA`"VBNw/i-1 word thomsonVBD?VBNJJjtNNS +ֿNNPMbX9ԿRBm?NNB`"?i+1 word fanucWDTClINCl?i+1 word shellpotVBNGzVBDGz?i-1 tag+i word JJ boyNNjt?NNSjti-1 suffix reoNN5^I ?JJ5^I  i-2 word knewVBD= ףp=?VBNm?RB?INK7AVB= ףp=JJ|?5^i+2 word revivalNNSv?NNPvi word northwestNNbX9?JJS{GzJJClRB333333@NNPy&1i+1 word treatmentNNP rh?NN|?5^?JJ/$WP7A` i+2 word ,"JJR(\?PRP$MbRPV-$NNSMbPCD9v?MDS?VBD%C''~jt?WPsh|?VBNV-ڿVB(\PDT%CRBRS㥛@UH;On?FWv?RBS?WRB1ZdCC㥛 VBPZd;JJS?VBZSINx&1ȿJJS"~j?VBGCl˿NNCl@POS+׿NNP\(\?RBSA`"˿WDT(\?DTjt@PRPʡE?LSrh|NNPSʡE?i-1 tag+i word DT recklessNN ףp= JJ ףp= ?i-1 word borrowingsRBlVBN)\(?NNK7A` i+1 word iiNNPSSNNPS? i-2 word paceINZd;O?JJ;On?VBGX9vNNMb`?RBZd;Oi-2 word buoyedVBN`"JJ`"?i+1 word insistVBZ+NNPS1Zd?NNS+?JJq= ףpNNPMbXi-1 tag+i word JJR rawJJl?NNli-2 word predictJJ rhNN rh?i-1 tag+i word PRP$ allegedlyRBx?JJxi word taxpayerNNn?JJMbؿNNP1Zd?VBP1ZdNNS\(\i word officerNN"~NNP"~?i-1 tag+i word DT stormierJJRQ?NNQi word earthquakesDT}?5^INNS{Gz?JJy&1i tag+i-2 tag WDT (CC|?5^DTI +?RB\(\i-1 tag+i word CD sufferedVBN&1VBD&1?i-1 tag+i word DT uawNN333333NNP333333?i-1 tag+i word VBG overcapacityVBN(\NN(\?i word hypercardNNPSClNN= ףp=NNP&1? i suffix arlNNV-JJS㥛NNP9v@NNSCli+1 word reactorNNjt@JJ#~jNNPKi-1 tag+i word NNP duoNNSV-NNV-? i+2 word nov. VBG+?NNP rNNn?VBNFx?VBPnJJ^I +?NNS$CNNPSoʡ@RB&1i-2 word quickerVB(\?JJR(\i-1 word charlieNNS+NNP+?i-1 suffix mumVBN7A`JJNbX9 @IN㥛 VBZ'1ZNNS'1Z?VB-VBGw/NNx&1?i-1 tag+i word VBG siblingsNNS+?JJ+i-2 word andrzejVBZ?5^I ?VBD?5^I i+1 word drinkerJJOn?NNv/ݿNNPZd;Oi-1 tag+i word NN violatedVBNܿVBD?i-1 tag+i word POS boardsNNS-?NN-i word constituteNNKVBD-VBZd;O?VBPNbX9?JJ ri-1 tag+i word VBZ blemishesNNSV-?DTV-i-1 tag+i word VBZ professionalNN9vNNSClJJ$C?i-1 word issues JJףp= INT㥛 DT9vVBNQ?VBPQݿWDT ףp= ׿VBL7A`?RBI +NNy&1?VBDd;O?RBR|?5^?NNSp= ף?JJR!rhi word defendingNNp= ףVBGp= ף? i word gurusNNx&VBD+VBZ7A`NNSCl@i-2 word traditionNNPZd;?VBGx&1?JJx&1NNZd;߿i-2 word honorVBGףp= ?NNףp= i+1 word shallJJL7A`@NN(\NNPDli+2 word riotingINSVBN#~jJJS?VBD#~j?i-1 tag+i word NNP ruledNNSrh|VBDrh|? i word tryingNNPy&1VBGy&1?i word charlieNNP?JJ+NNoʡi+1 suffix eerPRP~jtJJh|?5NNSX9v@NNPGz@NNSVBN333333CD~jt?i-1 tag+i word DT cooperativeJJ㥛 NN㥛 ? i word courtsNNʡENNPffffffVBZ7A`NNS ףp=@i-1 tag+i word CC soRB}?5^I @JJR+NN"~IN rhi-1 tag+i word IN hondaNNʡE@NNPʡEi-1 tag+i word JJ honestyNN|?5^?JJ|?5^i word persecutingVBG^I +?NN^I + i word tapsVBZHzG?NNPHzG i word hasteVBP rhNNSA`"NN|?5^?NNPoʡi+1 word meetsINGzWDTGz? i-2 word why NN(\u@VBNHzGVBPClJJ9vNNPGz NNPSV-?VBDHzG?DT= ףp=?VBd;Oi-1 word steinVBZMb?NNMbi+2 word jimenezNNS㥛NNPS㥛?i word receivedJJM?VBZtVNNlVBDZd;O?VBN(\?VBPni word costumedVBN rh?VBD rhi-1 tag+i word RB leftJJuV?VBMRBM?NNQ?VBDCl?JJRVBN)\(i-1 tag+i word IN hireNNS~jtNN~jt?i word crumblingVBGw/?JJw/ i word fallowNN rhѿRB;OnJJCl?i-1 suffix axaVBZ|?5^?NNS|?5^i tag+i-2 tag NNPS WDTVBNFxVBDFx? i-1 word tropNN)\(FW)\(?i-1 tag+i word IN stitchesNNSFx?JJFx i suffix tay VBK7@JJ +VBDZd;ORBRFxRB ףp= DT-NNw/?VBPK7?NNS|?5^i-1 tag+i word CC installVBZףp= VBףp= ?NNףp= i-1 tag+i word NNS spurtedVBNZd;O?JJZd;Oi-1 tag+i word IN freshNNSh|?5JJ;On@NN(\ i-1 word meadVBD5^I ?VBZ5^I i+1 word protestVBNh|?5ֿJJh|?5?i word offshoreNN/$RBRK7A`RBMbX9?INxMD^I +׿VBMbX9JJx&1@i-1 tag+i word JJ tradesNNS%C?IN%Cܿi+1 word acquaintedNNClRBRQ?RBMbi-1 tag+i word VBN accountableNNSX9vJJDl?RB/$ i word sayingVBGzG@NNtVJJ'1Zi-1 tag+i word RB argentinianJJ+η?NNP+ηi word deliciousNNPS{GzJJENNPK7@i-1 word pithiestNNSoʡNNoʡ?i-2 word moscowRBQ?VBQ i suffix ING VBX9vFWCl߿WRBܿNNStVֿMDmNNnJ@LS$CJJ^I + NNPNbX9VBGw/ @ i-1 word ''VBNZd;?VBZX9v?NNP/$JJSFW(\VBD-?WDT|?5^?RBx&1ؿIN"~j?VBtV?NNPSʡEVBG'1Z?NNZd;?VBPS㥛ԿNNSJ +?MDffffffPDT$CRBRʡEDTmCDrh|CCGz?i-1 tag+i word NNP coatingsVBZx&NNSq= ףp?NNq= ףpNNPx&?i-1 word tomorrowVBZ\(\POS\(\?i-1 word intricateNN;OnNNS;On?i-1 tag+i word DT excusesNNPSq= ףp?NNSʡENN^I +i+1 word souzaINʡE?NNP(\пFW rhPRP9vi-1 tag+i word DT fuzzierJJRS㥛?JJS㥛ܿi+2 word combinesNNS"~VB"~? i word pledgeNNSZd;OݿNNZd;O?i word nervousnessCCףp= NNffffff?NNP(\i tag+i-2 tag VBD WDTRB}?5^ICD+NNP!rh?PRP$/$CCNbX9VBNʡEƿRBRFx?INZd;?VBZZd;ORP?5^I ?JJM?DT+?NNvVBGZd;OPDTQ?VBOnPRP"~j?JJRMb?VBD)\(?NNSn? i word mutantJJ r?NN ri-1 word oxygenNNSS㥛?RBS㥛i-1 tag+i word CC decidingVBG/$ݿNNv/JJ+?i word dreadfulNNS㥛ܿJJS㥛?i-1 suffix ackRPZd;O?VBDlWDT(\JJ/$?VBGI +?JJR rh?EXMNNP%C?VB1ZdNN%C@VBNERB9vINjt?NNSSi+2 word gaylordRBv/@JJv/i-1 tag+i word DT unbornJJ333333NN333333?i-1 tag+i word DT bitchNNS-NN-?i-1 tag+i word RB !YEARCDS?VBDSi tag+i-2 tag VB RBRJJFx?NNFx i suffix let INV-NNSy&1NNP rh?NNPSjtRB1ZdVBDl?VBPOn?JJClVBx@NNK7@VBN~jt?VBZ}?5^I i+2 word p.m.INX9vRBX9v? i+2 word mainNNS)\(NNP)\(?i+2 word disarmamentNN+?JJ+i-2 word compoundJJ}?5^I?NN}?5^Ii-1 tag+i word POS synergyNNQ?JJQi-1 tag+i word CC interiorJJB`"ɿNNPB`"?i-1 tag+i word DT obsessionNNI +?JJI +i word excludedPDTVBN?i-2 word enterprisePRP$|?5^ʿJJd;O?NN`"?VBD +RBT㥛 NNP rhi-1 tag+i word NNP financierNNPjtJJRClNN1Zd @VBD/$ i-1 word payRB\(\JJRX9v?NNSQ?NNP!rhVBNbX9?RPx&?VBPZd;O?JJ rDTMb?NNjtVBDZd;OտVBN"~j?IN(\CDGz?i+1 word boeingCCE?DTEJJRx&1?RBRx&1i-1 tag+i word PRP$ successorNN+?JJ+׿i+2 word spotsJJ9v?NNS9vڿi word racketeeringJJZd;VBGMNNQ@i-1 tag+i word POS oldestJJSCl?JJCli-1 tag+i word DT becauseRBMbINMb?i word perpetuateVBMbXVBPMbX? i-1 word sale NNMbPJJRS㥛JJV-VBZA`"NNSA`"?NNPQRBRS㥛?POSn?VBPV-?i-1 tag+i word VBP tentativeVBlJJl?i-1 tag+i word DT invisibleJJ= ףp=?NN= ףp= i-1 tag+i word POS colorlessnessNNzG?JJzGҿ i suffix mesVBDGz NNPʡE VB"~jVBGZd;OUHy&1JJjtINK7CCx&1@VBPʡE NNS/$A$@WDT{GzVBZ/$@NNPSX9v>@RB!rh@NNZd;!VBNzGCDzG i word muscleNNM@JJKJJRX9vNNSV-i word quintupleRB\(\?JJnVBZK7ѿVBZd; i word shoneyNNSNNPS? i word shakenJJ(\VBNNbX9@NN$Ci-2 word licenseeNNPS9vڿNNP9v?i-1 tag+i word NNS catchVB/$?VBP/$i-1 tag+i word IN slimyJJ㥛 ?VB㥛 i-1 tag+i word PRP$ giddyJJl?NNli-1 tag+i word DT breatherRBR-ӿNN-?i-2 word defectionsVBZMbX9ܿNNS7A`?UHQRB1Zd?VBD1Zdi+1 word nakazatoJJ-NNP-?i-1 tag+i word NNS receivedVBNuVͿVBDuV?i-1 tag+i word VBP fetchinglyRB+?VBN+i-1 tag+i word WDT mostRBSbX9JJSMbX?VBPCl i-1 word testRBy&1FW/$VBDOn?NNOn?VBNOni-1 tag+i word `` standardJJ-?NN-ӿi+1 word agriculturalVBG/$?JJjtNNZd;NNPm?i word laughlinVBOnNNPOn?i-1 tag+i word DT priestJJSK7A`NN&1?JJZd;Oi word advantagesVBZK7ٿNNSK7?i-1 tag+i word NNS forceVBʡEVBPh|?5?NNZd;O?VBDmi word intradayNNSV-ҿJJEпNNK7?i+2 word existingVBZd;O?RB/$?NN9vPDTZd;OJJ(\IN/$NNP5^I ?i-1 word depressedJJS?NNSݿi-1 tag+i word DT minimumVBPV-JJ{Gz?NN/$?JJRCli+1 word biddingVBG@RBbX9NNClFWV-JJRbX9?JJE?i-1 tag+i word JJ allegesNNZd;VBZZd;? i-1 word pallRB?5^I IN?5^I ?i-2 word driveVBZˡE?VB;OnڿRB~jtNN ףp= ߿VBNClJJ rh?i-1 tag+i word NN longingVBGT㥛 NNT㥛 ? i-2 word swigDTCl?WDTCl i-1 suffix &NNPSbX9RB\(\NN}?5^I?JJsh|?NNSp= ף?NNPB`"?i-1 tag+i word DT risingJJ~jtNN7A`VBGA`" @ i word crimpVBv/?JJv/i-1 word house JJM?INl?VBZq= ףp?VBGtV?RB&1NNL7A`堿VBNK?WDTx&1NNS ףp= ?NNPSoʡտVBD/$@VBPjtNNP rhi-1 word turnoverRBˡE?NNV-JJ?5^I i-1 tag+i word NNS gnpNNPd;ONNd;O?i+1 word livingVBZZd;?NNSHzGRBv/i-1 tag+i word RB targetVB'1Z?IN'1Z i+2 word nev.VBOnNNPOn?i-1 tag+i word -START- globalJJ{Gz@VBNRQؿNNPnNNPsh|?i word insidersNNPNNSˡE@NNCDi-1 tag+i word VBN pressedVBN?5^I ?VBD?5^I i-1 tag+i word JJ beepingNNE?VBGEi-1 word pursuePDT/$?JJ/$i word marxismNN-NNP-?i-1 tag+i word DT thinnerNN|?5^ٿJJzGJJRB`"?i-1 tag+i word RB provedVBNx&JJB`"۹VBDMb?i word johannaNNPSX9vϿNNPX9v?i-1 tag+i word NN trainNN'1ZĿJJ%CVBPoʡ?i-1 tag+i word IN slovenianJJGz?NNPGzi+2 word faintingVBV-NNn?JJ rȿi-1 tag+i word JJ fiveJJy&1CDy&1? i word punsVBZX9vNNSX9v?i-1 word seemedJJQ@NN5^I VBDI +JJR/$VBNbX9RB'1ZĿ i word biasNNS(\NN"~?NNP/$?i-1 word accomplishingDT +?NNS +i-1 tag+i word DT oversightJJZd;NNZd;?i-2 word religionVBPB`"NNB`"?i-1 tag+i word IN tracksVBZףp= ?NNףp= i-2 word conclusionJJE?NNPEi-1 word invest RBRv/NNSJ +RB?JJRv/?JJ$CINZd;߿VBZ+?NNKPRP/$޿i-2 word reasonVBOn?NNGz@VBDh|?5VBNh|?5?JJ9vVBZV-i-1 tag+i word , communicationsVBZrh|ϿNNSE?NNGz޿NNPbX9i-1 word believesNNZd;?CD}?5^IVBPZd;ϿPRP}?5^I?RB-EX-?!i-1 tag+i word -START- economistsNNPClNNSCl?i+2 word shellsVBGʡE?NNʡE i-2 word geVBNV-?VBG/$JJ|?5^?NNB`"i-1 tag+i word IN cokeNNuVNNPuV?i-1 tag+i word DT interbankNNp= ף?JJp= ףi+2 word terrorNNQ?NNPQ i suffix TVsNNSL@NNMbNNP rh i word templeNNS㥛 NN㥛 ? i+1 word fmJJ㥛 ?NNS㥛 i-1 tag+i word POS giantJJQ?NNQ롿i-1 tag+i word WDT settledVBNI +ƿVBDI +?i+1 word indiaJJʡEINʡE@i-1 word alarmVBN= ףp=ҿVBD= ףp=?i word collectingNNʡEVBGʡE?i word murderedVBNQ?JJK7AVBDbX9i+1 word efficiencyJJjt?NNmVBNRQ?i-1 tag+i word NN blowVBZMbVBS㥛?INFxi-1 tag+i word NNS insistVBP;On?NN;On i-1 tag+i word -START- suppliersNNS/$?NNP/$i-1 word standsINmͿVBNPnRBRˡE?RB1ZdJJRˡERP +?JJPn?i-1 tag+i word CC renewVBK7?JJv/VBD rhi-2 word embarrassmentNNSS?NNSi+1 word purposesVBGnNNw/?JJQ?i+1 word nationsNNԿNNPjtĿJJSJJSQ?VBN333333?i-2 word mississippiRP}?5^IJJ#~jRB}?5^I?VBD#~j?i-1 tag+i word RB planVB?NNi-1 tag+i word : utilitiesVBZ㥛 NNS7A`?RBli-1 tag+i word NN peaksNNSףp= ?NNףp= i word extrusionNN?JJi word eLSQ?JJNNK7A?NNP rhSYMS㥛?i-1 tag+i word VBN holdRPMbX9NNy&1?RBQ i-1 word tcmpVBZ1ZdNNSx&1NNl@i-1 tag+i word DT whimsicallyRBMbX9?JJMbX9ܿi word thoroughlyNNSHzGRBd;O@JJ+RBRQi-1 tag+i word IN householdNNSQNNT㥛 @JJ= ףp= i word calmVBv/?JJ(\?NNFxi+1 word surviveNN@JJ"~NNP'1Zi+1 word makingVBD\(\?NNp= ף?JJp= ףRBh|?5޿INPnؿi-1 tag+i word , bowaterNNffffff@NNPffffffi-1 tag+i word CC applianceVB|?5^NNM?JJxi-1 tag+i word NN parallelVBVBPx޿RBm@VBZ ףp= i-2 word modelsINX9v?NNx&1RBX9vJJI +?VBNK7?i+1 word carolinaJJNNP? i+1 word make POS(\WDTV-@PRP?5^I ڿJJw/VBZ/$VBv/NNw/?DTA`"NNSh|?5@NNPx&RB~jt@INM#i-1 tag+i word , telecommunicationsNNS333333NN333333?i+1 suffix nnaRBI +NNPI +?i-1 suffix rysVBNClVBDCl?i-1 tag+i word JJ societyNNSHzGNNffffff?NNP)\(? i word giftVB rhݿNNMb@JJK7A`i+1 word gorbachevCC5^I ?PRP$SNNPI +?VBNd;OVBDd;O?i-1 tag+i word VBD worriedVBN"~JJ"~?i-1 word makeupVBZy&1ܿNNSy&1?i-1 tag+i word DT encounterJJ+NN+?i+2 word collegesNNPSxNNSx?i tag+i-2 tag RB VBZDTRQ@NNʡEݿPRPh|?5RB~jt?VBGQNNPS㥛?INd;OJJSEUH&1ڿPDTMbRBS9v?FWףp= VBP333333?WDT"~j?JJQ@RP"~?NNSQ?JJRp= ף@VBNlq@VBZ/$VBDVB5^I RBR~jt?CDףp= ?i-1 tag+i word CD antitrustNNSJ +ٿJJ+?INOni-1 word followingVBNlJJQ?IN"~j̿VBZ/$ݿNNSS㥛NNPV-NNRQ@i-1 tag+i word NNP '60sRBQVBZ%CNNSoʡ?i+2 word scrutinyVB)\(VBP)\(?i-1 tag+i word RB vs.FW rh?IN rhѿi-1 tag+i word DT gateNNK?NNPKi-1 tag+i word WDT meansVBZ+?JJ+ i-1 word cdVBZ|?5^ѿNNS'1Z?NNףp= i-1 word issue VBX9v߿NNvVBDB`"?RBSK?VBNsh|??RBRMbX?VBZbX9?RB5^I ?JJSMbVBPK7AJJsh|?INbX9?NNSbX9i-2 word agnellisJJ-VBG-?i-1 tag+i word JJS brewerNNSzGNNzG?i-1 word techniqueNN+IN= ףp=WDT= ףp=?RB+?i+2 word return NNSNbX9VBDCl?VBNClJJRQRBʡEVBZ?5^I ?JJK7?INsh|??NNP+i-1 tag+i word VBN cheerNN333333?NNS333333i word exporterVBPףp= NNʡE@JJKINʡEi word diamondVBʡENNʡE?i-1 word recognizeNNSS㥛?NN?VBDVBZlPDTd;O i word batchVB|?5^IN~jtNN@NNP7A` i-1 word hurlNNSCl?NNCli-1 word causedJJ)\(@NNSӿNNP9vVBGX9vi word midnightNNQ@JJsh|?RBV-JJRbX9i word commercializingVBGOn?NNOni-1 tag+i word NN grantedVBNCl?VBDCl绿i+1 word searchesJJK7A?NNK7Ai+2 word prepareVBGףp= ?NNףp= ۿi-1 tag+i word DT constructionNNKNNPK?i-2 word unemploymentVBZd;OJJZd;O?i-1 tag+i word VBG farmersNNS(\NNP(\?i-1 tag+i word -START- declinesNNPS$CNNSzG?NNPI +i-1 tag+i word IN astoundingJJPn?NNPni-2 word mahfouzNNK?NNPKi+2 word aspirationsNNQ?JJQ뱿i-1 tag+i word VBZ suingVBG"~j?JJ"~jܿi-2 word probably JJSGzRBR rh?VBNOn?UHxINʡEVB/$@RBp= ף@NN(\JJѿDTx?RBSGz?JJRʡEVBPT㥛 i tag+i-2 tag WP (VBPsh|??RBsh|?i-2 word jewelryVBP rhտJJZd;O?RBQ?NNP/$i-2 word moderationVBG?JJԿ"i-1 tag+i word -START- advertisingJJʡEݿNNʡE? i+2 word capsJJS㥛?NNS㥛i-1 tag+i word DT rev.NN-JJ|?5^NNPh|?5? i word jesterVBZClNNCl?i-1 suffix ceoVBZMb?NNSSVBDzGi-2 word businesslandNNS"~j?NN"~j̿i+1 word currency PRP$ r?NN(\пWDT'1ZJJK7A@INףp= DT5^I @VBN-PRP rؿNNP"~i-1 tag+i word `` clientsVBZGz޿NNSGz?i-1 word presentedVBPsh|??VBG|?5^JJ|?5^?VBsh|?i-1 word brookingsNNZd;ONNPZd;O?i-2 word specializedVBD +VB +?NNPS9vҿNNP9v?i-1 tag+i word , subsidizingVBGV-?NNV-i-1 word estimateDT~jtWDTMbINGz?i word financingVBPʡEVBGNbX9NN'1Z@JJ1Zdi-1 tag+i word JJ brobergNNSClNNPCl?i-1 tag+i word NN lostJJSSVBN/$?JJClVBD?"i-1 tag+i word -START- steelmakingVBGy&1NNCl?NNPX9vi-1 word without PRP$V-VBGjt@NN rhͿPDTJ +VBNGzJJy&1ԿRB?5^I PRPV-?NNSʡE?i-2 word basementsNNSQ?NNQi-1 tag+i word JJ settleVBPK7A?JJRK7Ai-1 tag+i word RB foreverRBRʡERBʡE?i+1 word leavesDT~jt?WDT~jtۿNNZd;O?JJZd;Oi-1 tag+i word NNP attributesVBZ|?5^?NNS|?5^i-2 word conwayDT(\RB(\?i-1 tag+i word DT tipNNSB`"NNB`"?i-2 word peladeauVBNQ޿VBDQ?i+2 word venezuelaNNPS'1ZNNPNbX9?VB&1ҿi-1 tag+i word NNP returnVB rhͿVBP rh?i-1 tag+i word RB ignoringVBG rh?JJ rhi word discardedVBʡEVBNlVBD ףp= ?i+2 word majorIN5^I @VBDl@VBNxJJRS㥻?VBZʡE?NNPZd;VBS㥫JJ33333VBG|?5^?WRBOnDTx&?NN#~j?PDTx&RBRS㥻VBPtV?RPy&1RB1Zd@i+2 word discussionNNSFx?JJCl?NNJ +i-2 word sectionNN+?JJ+ۿi-1 tag+i word NNP marineNNMbX9NNPMbX9?i-1 tag+i word NN bragsVBZʡE?NNʡEi+1 word agency NN+?CD/$?INʡENNPoʡ?NNPSVBG!rh?PRP/$ۿJJ;OnVBZʡENNSx&i word uncannilyRBB`"?JJB`"i-1 tag+i word PRP$ editorialNNp= ף?JJp= ף i-2 word sellJJʡEVBG"~jRBRrh|VBZMbPJJRrh|?NNSx&?NNPK?VB{GzܿRB!rh@NNK7A`IN;OnNNPS?VBD+?VBNv/VBPvi-1 tag+i word -START- offIN{Gz?NNP{GzĿi-1 tag+i word TO anybodyVB ףp= NNS㥛?JJX9vi+1 word deductiblesVBPJ +JJJ +?i+1 word hintedNNS= ףp=?NNP= ףp=i-1 tag+i word TO cureVBM?NNMi-1 tag+i word NNP catcherPRP\(\NN\(\?i-1 tag+i word : advancedVBDV-JJV-?i word whackerNN rh?WP rhi+2 word deckingNNPSFx?NNPFxi-2 word torontoNNK7?VBPQJJ#~jVBZB`"ٿNNP/$?NNPSZd;O?i tag+i-2 tag JJ WP$JJjt?NNS;On?RBClNNV-?VBD1ZdVBN1Zd?VBPi-1 tag+i word RB genuineJJS?NNSݿi+2 word uninterruptedJJʡE?NNʡEi word gainersVBZK7ѿNNSK7?i-1 tag+i word RB tellVBI +?VBPI +i tag+i-2 tag VB CCDT1Zd?NNQ?RBQIN/$NNPSCl?VBNh|?5?VBP+?WDT{Gz?NNP= ףp=RBRw/VBGJ +ٿRP9vVBMbWRBv?JJR r@VBD-JJM?VBZ9v?PRPq= ףp?NNSw/PDT rhEXʡEUHv/ݿi-1 tag+i word -START- indexNNPV-NNp= ף @INB`"i-2 word sustainNN$C?JJ$Ci+2 word wrongVBZS㥛?VBPHzGPOSS㥛NNHzG?i-1 tag+i word NNS flyingNNA`"VBGA`"? i word gandhiNNPSS㥛ԿRBClNNP +?i-1 tag+i word NNP affairsVBZ}?5^INNPSʡE @NNS~jtNNP#~ji-1 tag+i word POS reformsNNSCl?NNCl i suffix gleNNMbX?VBNh|?5VBPףp= @JJRQNNP"~j?MD㥛 VB"~RBQi-1 word restatedRBCl?INCli word disarmamentNNʡE?JJʡE i word hotNNP#~j?MD5^I VB+NN/$VBN)\(PRP'1ZJJ#~j<@i-1 tag+i word , thereNNSClEXo!@RBp= # i suffix etcFWV-@UHtVRBq= ףpVBD+i-1 tag+i word VBD thinkVBʡEVBPʡE? i+2 word mcaRBPnпINPn?i word presentedVBNʡE?JJ"~jVBD5^I i-1 tag+i word CC posturingVBG)\(?NN)\( i+1 word a.g.NNPSDlѿNNPDl?i-1 tag+i word PRP$ notesVBZS㥻NNSS㥻? i word skisNNS%C?NN5^I JJOni+1 word priorityVBG-NNuV@JJh|?5i word headlinesNNPS(\NNS(\?i-1 tag+i word VB fightingVBGQ?VBNFxɿJJFxi-1 tag+i word , calledVBˡE?NNV-VBDy&1|?PDTʡEVBNffffff?JJGzi+2 word oversoldVBN~jt?VBD~jti-1 tag+i word VBG inexplicablyRBGz?VBNtVNNni-1 tag+i word POS cellularDTClJJ(\?NNjti word unsolvedJJ/$NNP/$?i word motivateVBPsh|??VBDsh|?տi-1 word squelchJJ ףp= ?RB ףp= i-1 tag+i word NN handedNNGzVBD!rh?VBNMb? i suffix ekyVBNp= ףRBR#~jJJL7A`?i word vacavilleJJV-NNPV-?i+1 word caratsJJRd;O?RBRd;O޿i word behavedVBNQVBDQ?i tag+i-2 tag DT ''VBG-JJV-@NN +?VBD"~j̿VBP"~j?RB?NNSMbX9ĿNNPCli-1 word notedNNPS rhJJʡE?NN9vRBR/$?RB/$IN`"ֿDT`"?NNPK7?i+2 word heartNNV-?VBN~jt?JJV-¿VBD~jtۿi word civiliansNNq= ףpNNSq= ףp? i-1 word digsRBRMbXٿNNS-JJRDl?i+1 word nemesisJJ r?NN ri-2 word creepiestRPHzG?RBClɿINx&1 i word emsNN|?5^JJK7NNPoʡ?i+2 word reducingNNn?VBDK7A`VBNK7A`?VBPClѿVBZoʡNNSE?i+1 suffix sinPRP$x&1?PRPx&1ԿNN{GzĿJJR{Gz?i-1 word termsVBD(\?VBN(\ؿi-1 tag+i word DT perilsNNSx&1?NNx&1 i+2 word bugsNNS~jt?NN~jt i pref1 8CDK7A`@RBZd;O?NNS +οNNP/$ JJQ?NNS㥛 VBNQ i suffix eam NNPClJJ?5^I ҿNNMb@VBDB`"RBQ@NNSQ JJRMbVBPZd;O?WDT/$VBZmͿi tag+i-2 tag IN FWJJ/$?RB/$޿i word mitigateVBE?NNEi-2 word fancyJJ+?NNP+i-1 tag+i word JJ smartJJ^I +?NN^I +i-1 tag+i word VB comingVBGʡE?VBNʡEi-1 tag+i word IN includedJJQVBDQ?i word bethforgeNNP{Gz?NN{Gzi-1 tag+i word WDT abandonsVBZʡE?RB+VBD#~j i word mintJJMbNNPCl?NNPSDlѿNN rhi word petrocorpNNPSˡENNPˡE?i-1 tag+i word VBG pertussisNN r?NNS ri-2 word adeptsNNuV?JJuVi-1 tag+i word DT surgeNN#~j?JJ#~ji-2 word clipsDT!rhܿWDT!rh?i word exhaustingVBG9vJJ9v?i-1 tag+i word RB grammarNNQ?JJQi-2 word conceptualVBZ;On?NNS;Oni-1 word allow VBD`"NNS^I +?NNPQVBS㥛NNPS?JJR-JJv/?DT/$?NN/$CC/$i-1 tag+i word RB biddingJJvϿVBGZd;OǿNNS?i-1 tag+i word VBG closerRBRQRB"~@JJR?5^I ڿNNQi+2 word stainWDTHzG?INHzGi+2 word rabinowitzVBZFxPOSFx? i word anDT1Zd@JJ5^I NNPHzG i word norNNPlWPףp= NNffffffCDJ +CCsh|@i-1 tag+i word JJ mushroomedNNSZd;VBDZd;?i-1 tag+i word JJ palmsNNSB`"?NNB`"ѿ i suffix *\*SYMK?NN9vJJ+ i word vainNNq= ףpJJq= ףp?i-1 tag+i word NN meetingVBGClNNʡE?JJHzGѿ i+2 word high RBףp= ÿIN|?5^@VBG(\ڿVBZRQ?NNPK@RP +VBN/$?NNDlVBD333333VBP|?5^ٿPRP +?PRP$ +JJGzi-1 suffix sfyJJOnNNV-?NNP+?i-1 tag+i word PRP usefulINsh|?RPClJJtV?i-1 word jailedJJ7A`?NNP7A` i suffix dakJJR/$FWI +ƿNNPS㥛?i-1 word scientistsNNPK?VBP?NNKRBHzGVBDHzG? i word provedJJ?5^I ?VBDZd;O?VBPq= ףpVBNi word printerNNMb?JJMbi-1 word apogeeNNPS^I +߿NNP^I +?i+1 suffix uanJJDl?NNDli-1 tag+i word VBN expensiveJJ5^I ?NN5^I i word pritikinNNPSKNNPK?i-2 word brewingNNSffffffNN㥛 @JJnѿVBuVi-1 tag+i word : orangesNNSZd;?NNZd;i-1 tag+i word JJS thatDTX9v޿INX9v?i word obligedJJZd;OVBNZd;O? i+2 word washNN/$?JJ/$ƿi word rapidlyRB1Z@JJ'1ZVB}?5^INNSJ +i-1 word leisurelyJJ+?NN+i-2 word bluffJJRRQJJRQ?i-1 word cableVBZNbX9NN r?NNP&1i word linkingVBG"~@NNMbX9JJK7i-1 word treasureVBZ}?5^INN}?5^I?i-1 tag+i word VBD solderingJJQ?VBGQi tag+i-2 tag PRP$ -START- VBGn?FWtV?JJSˡE?VBN +NNP$C?JJ~jtпNNnVBD +?RB"~NNSK? i word vestedNNSzGRBOnNN(\ؿVBD'1ZVBNjtJJ+@i-1 tag+i word -START- colonNNSjtĿNNS㥛?NNP&1 i suffix ipeNNoʡ?JJK7A@VBNףp= NNSRQVBG/$i-1 tag+i word PRP continuallyVBPK7RBK7?i-1 tag+i word NNP personnelVBZI +VBPV-NNSX9v?VBDX9vi-1 suffix altVBGCl@NNClNNP/$?VBP/$޿i-1 tag+i word NNP fathersNNPvNNPSHzGNNSh|?5?i-1 tag+i word , maintainVBPGz?NNGz i-1 tag+i word -START- employeesNNS-?RB-i-1 tag+i word DT performerJJ5^I @NNX9vFWh|?5޿i-1 tag+i word VBP unnoticedJJn?VBNni-1 tag+i word JJ vastNNS333333JJ333333?i-1 suffix urt JJ-?VBZK7?NNS~jtVB\(\RB(\NN㥛 FWV-VBNnVBGX9v?VBDuV@POSMbX9?VBP{Gz?NNP333333i word picketingVBGٿNN? i-2 word armJJ?NNPףp= VBD5^I ?NNm?VBN5^I i tag+i-2 tag POS VBPNNSSVBS? i suffix zedNNP/$VBNQ1@VBP+CDV-NNS㥛 RP/$NN)\!RB ףp= DTʡEVBjtNNPS +JJOn@VBDV-2'@RBR/$VBZGzi-1 tag+i word VB continuedVBNJ +JJJ +ٿVBDK? i word tumbleVBQ?NNL7A`@JJ!rh!i-1 tag+i word JJ congressionallyRBx&1?NNx&1i+1 word cocomJJ rh?VBD rhi-1 tag+i word NN midsizedVBNA`"JJA`"?i+2 word breakfastNN%C?VBNx&1JJjtĿi-1 tag+i word NNP muchVBZV-JJ(\?RBMi-1 tag+i word JJS tellingJJ/$?NN/$i-1 tag+i word JJ economiesVBZSNNSS? i+2 word carlINjt?NNPq= ףpNNPSV-@WDTjt޿NNCl i suffix OLDVB5^I ?NNP5^I i-1 tag+i word POS juniorJJX9v?NNX9vi-1 word witnessesVBQVBPQ?i-1 suffix ash RPZd;JJI +CCv?FWX9vVBNw/VBZOnNNGz?VBDw/?NNS/$@RBX9v?IN rh?VBG#~ji-1 tag+i word CC voluntaryJJ!rh?NNP!rhi-1 word aluminumVBZx&NNSx&?RBR-NN-?i tag+i-2 tag CD NNPVBDQ?VBPMbVBZoʡ?NNS;OnVBNMbp?POS)\(``NNbX9?'')\(?INOn?NNPv/ @NNPSGzVBGT㥛 ?JJ(\RBV-i-1 tag+i word IN kneeDT"~jVBNA`"ۿNNˡE?i word condemnsVBZ{Gz?NNS-VBDv/ i suffix ash VBD$CPDT5^I ӿJJS㥛?VBPCl?WDT(\IN= ףp=NNSNNPQ?NNPSS㥛RBOnNN`"@ i suffix llsRBX9vRBR-CDnVBZ$"@NNPS rh @VBD{Gz SYMSJJV-VB7A`VBP#~jINx&1NNP rh?NNZd;O #NNSMb)@i word aspirationsNNSq= ףp?NNq= ףpݿi-1 tag+i word CC loanNNPSʡENNPʡE?i+2 word policiesVB?RPZd;O@RB"~NN&1VBP(\JJOn?INK7A`i-1 word satokoJJ~jtNNP~jt? i word stapleJJvNNv? i+1 word tiesVB㥛 ?VBP㥛 JJ{GzNN1ZdۿNNPJ +?i-1 tag+i word VBD reducedVBN^I +?JJ^I +ǿi-2 word zoningWDTV-?INV-i-1 tag+i word JJ utahansNNPSʡE?NNSʡEi-1 tag+i word NNS fearsomeVBPGzJJGz? i word guysNNS333333 @POSZd;NN"~jUH#~ji-1 tag+i word -START- closerRBR%C?NNP%Ci-1 tag+i word NN fastJJjt?RB~jtNNrh|i-1 tag+i word -START- turkeyNNX9vNNPX9v?i-1 tag+i word IN shortstopNNK7A?RBK7Aпi-1 tag+i word JJ grammarNN}?5^I?JJv/ͿNNSZd;Oi word existingJJ{Gz?VBG r @NN rh i-2 word seaPOSZd;?''Zd;VBZl?VBPli-2 word counselingJJʡEVBGʡE?i-2 word ownershipCCOn?VBNX9v?VBPV-?JJ$C?DTOnNNnVBDX9v i word ifintNNX9vϿNNPX9v?i+1 word deathsJJ rh?VBD rhݿi-1 tag+i word IN clericalNNʡE@JJʡEi+1 word afraidPOS\(\VBZ\(\?i-1 tag+i word PRP$ subsidizedVBN rJJ r?i-1 tag+i word NNP institutionsNNPS(\?NNSV-ڿNNP~jt?i-2 word takeoffVBNʡEVBDʡE?i-2 word turnerNNPS1ZdNNv?NNPCl׿i-1 tag+i word JJ premierNNB`"?RBSJJl?JJRx&1i-1 tag+i word PRP$ paNNSB`"NNPB`"? i suffix -UpJJ(\NNP(\?i-1 tag+i word CC loweredVBNZd;O?JJVBD/$?i-1 word exorcismVBPZd;׿NNx&?VBD-i-1 tag+i word PRP hopedVBZZd;OVBDZd;O? i-1 word need JJjtJJR ףp= ?RBR ףp= INSCDm?VB7A`?VBGp= ף?NN'1ZRB +?i-1 word fosterJJI +?NNI +i-1 tag+i word CC caribbeanNNP +?NNPS +i+2 word mandatesDTClѿINCl?i-1 tag+i word DT pretaxNNSX9vNNv/?JJ9v i+2 word paulVBGMbX9JJ'1Z?NNjt?NNPA`"i-1 tag+i word CD askedVBDFxVBN/$ @NNE i word cdcNNʡENNPʡE? i-1 suffix eNNSʡE?NNʡEi-2 word promisingRBRK7A`RB|?5^?JJ'1ZINQӿi-1 tag+i word IN arrearsNNSGz?NNGz i word sneakyJJ(\?NN(\ i-2 word whomINGzVBPGz?VBGZd;?JJZd;i-1 tag+i word VB allocatedJJrh|VBNrh|?i-1 suffix glyINoʡ?DTRQVBQ?RB-VBPˡE?JJx@VBD{GzNNPK7NNlNNSp= ףпVBG!rhԿVBNm@''B`"VBZ^I +?i+1 suffix rgoNNPS?SYMSINSi+1 word wrightNNGzNNP?5^I @VBi+1 word treatDT1Zd?RB1Zdi+2 word remarkJJRQ?RBRQRBS/$?JJS/$i-1 tag+i word POS listedVBN|?5^?JJ|?5^i+1 word advancesVBG7A`NN333333?JJ;On?i-1 tag+i word POS firstRBQNNPZd;?JJoʡ@i-1 word discretionWDTQINQ?i-1 tag+i word NNP backRB|?5^?NN|?5^i word industryNN(\?NNPQNNPSi word sympathyNN(\?JJ(\ i word sammyeNNS333333ÿNNK7A`տNNPx?i-1 tag+i word JJR superiorJJFx?NNFxi+1 word minutesJJˡE?RBˡEi-1 tag+i word , servedVBNuV?JJ+VBD}?5^IԿi-1 tag+i word VBZ disagreesVBZQ?NNQi-1 tag+i word DT spursVBZuV?JJRVBDL7A`堿i word incentivesVBZ/$NNS/$?i+2 word danceJJ?5^I ?JJSSÿVBNSNN?5^I RBS= ףp=?i-1 tag+i word VB pitchingVBGoʡ?NNoʡi-1 tag+i word VB postingVBG9v?JJ9vʿi-1 tag+i word RBR tightlyRBzG?JJzGi-1 word operaNNS(\?PRP!rhRB'1ZFWʡEi word cheapestJJSMbX9@JJsh|?NNZd;i-1 tag+i word VBP committedVBN;On¿JJX9v?VBDB`"i+1 word leastRBZd;?JJZd;i-1 tag+i word VBZ ruralJJ$CNNP$C?i-1 word understandVBPp= ףNN1Zd?VBNd;OJJL7A`?i-1 tag+i word TO ba3IN-ƿVB"~jNNP/$JJS @i-1 tag+i word POS capitalNN^I +?JJ^I +i-1 tag+i word JJ tvNN-?NNP- i+2 word endsNNPS rh@NNSv/?NNDlNNPMbi-1 tag+i word MD anybodyVB'1ZNN'1Z?i-1 tag+i word TO totalVBQݿJJ)\(?NNffffffƿi-1 tag+i word VBG offeredVBNS@JJV-VBDE i+2 word cbs NNV-?VBNMbXVBP1Zd˿INFxNNPʡEͿVBv/ͿRPGz @JJ!rh@RBK7AVBZ+NNS`"i+1 suffix ardVBRQ?JJʡENNnFW5^I ?RBʡE @VBZI +?CDV-?NNS/$VBD(\POSʡE?JJR"~NNP rh?VBGK7A`?JJSq= ףp@RBR%C?VBN/$ۿDTV-?NNPSMb?VBPnIN +WP9vi+1 word adverseJJoʡ?NNoʡi+2 word manufacturersRB`"?JJx&?NNx&NNP`"i-2 word crossedJJ㥛 NN㥛 ?i-2 word heredityDTV-INV-?i-1 tag+i word CC theirsNNS-PRP-?i word vauntedVBD?5^I JJ?5^I ?i-1 tag+i word VBN aboveINq= ףpRBM?NNA`"i word labellaNNrh|NNPrh|?i-1 tag+i word NN cappedNNZd;VBNCl?JJGz?VBD{Gz i+1 word eggsNN&1?VBN+?CD"~jJJV-NNSh|?5NNPI +?i+1 word canningNN㥛 ?RBףp= INK7i+2 word optionsNNSrh|?NNZd;JJR?RBRJJVBZMb?DTZd;?i+1 word gratuitouslyRBSB`"?JJSB`"i-1 word matagordaNNPS'1ZNNP'1Z?i-2 word insurerJJHzGVBNHzG@i-1 tag+i word RB increasedVBNL7A`JJZd;?VBDv/?i-1 word priestVBZK7A`?NNSK7A` i-2 word lineVBZQNNPNbX9DTףp= VBN|?5^JJ`"VBDl@CDy&1?INףp= ?NNSy&1?VBGh|?5?NNjt?WDTףp= VBM?RB+i+2 word subsidiesVBGjt?JJEԸ?NN333333i-1 tag+i word NN earringVBGQNNQ?i-2 word employeeJJ/$ۿFWQNN?NNSV-?RBV-i-1 tag+i word IN persistentNN{GzܿJJ{Gz?i+1 word favorsWDTA`"?INA`"i+1 suffix dowVBNMbX9?JJClNNQ?i+1 suffix azaJJOn?NNPOni+1 word museumPRP$tV?JJ+NNP&1?i tag+i-2 tag CD DTJJQWDTffffffINZd;NNS9v?NNPSffffff?NNQRBMb?VBNZd;OVBZ㥛 NNP~jtVBG9v?VBDGz?JJSHzG?RBSK7?CDʡE?VBP~jt?i word unpeaceNNʡE?NNPʡEӿi word faithfulNNSQNNsh|?@JJ#~ji-1 tag+i word NN bullNNh|?5?NNSh|?5i-1 tag+i word PRP moveVBw/?VBPK7A`?RBMVBDMbXi+1 word prohibitionVBGffffff޿NNS?JJM i+2 word jan.NN)\(VBNl?JJQ@VBlVBP1Zdi-1 tag+i word RB ultravioletNN(\?JJ(\i word delightedVBNV-JJV- @NNX9vVBDv?i-2 word agreementsRBZd;?NN(\VBNʡE?JJ-?INX9v?DTX9vNNPQVB rh? i-1 word softJJ;OnVBPzGNNSV-@i word offbeatJJtV?NNtVi-1 suffix aceINQRP&1NNPS!rhVBGMbX9?NNS rRBSmݿVBNn?JJ'1Z?NNPCl@FWx&1NN{Gz?VBDmͿJJR9v?RB!rh?PDTMbX?VBP}?5^I?VBZWDTClDTMbX9i+2 word poisoningVBPQVBDQ? i-1 word liveJJINT㥛 NNSQRPʡERBS@NNffffff?i-2 word longer VBNV-RBR"~?JJB`"ѿIN rVB/$?RP1Zd?RB333333?PDT/$?JJR"~NN|?5^NNSV-?i+1 suffix bonVBDxVBN= ףp=?JJx?INMb?NNPh|?5?RBMbNNffffffֿi-1 tag+i word DT restructuringVBG/$@NNSJJZd;i+2 word trickVBP?NNi-1 tag+i word IN adjustingNNL7A`?VBGL7A`i+1 word infantJJM?NNMi-2 word downwardRB~jt?IN~jti-1 tag+i word JJ carnivalNN9vNNP9v?i-2 word latelyNNS㥛 NN㥛 ?i-1 tag+i word , tennisNNQ?VBNQJJRQ i+1 word sexVBףp= ?VBGB`"?NNB`"RBףp= i+2 word chanceVBZʡE?NNS(\VB= ףp=NNK7A?VBDQֿVBNʡE?VBP(\i+1 word contextNNS㥛?JJS㥛i-1 tag+i word DT routineJJtV?NNtVi-1 tag+i word DT freightNNoʡ?JJoʡ i+2 word cellVBZ/$?NNS5^I ˿NNbX9޿i-1 tag+i word -START- internalNNP?JJi+2 word faultyVBNtV?JJtVi-1 tag+i word JJ leagueNNSClNNCl?i-1 tag+i word IN spareJJv?NNv߿i-1 word rougeNNPS;OnNNP;On?i+1 word hollerNNS+NNv/?JJ(\ i suffix ldoCC1ZdNNPSNbX9NNP?5^I ?i word contendsNNSMbXVBDSVBZL@ i-1 word paVBP5^I ?NNS5^I i-1 tag+i word : overlapRB/$ۿVBZS㥻VBPPn?NN-i+2 word depositNNS(\?JJZd;NN +ֿNNP(\NNPSX9v?i+1 word indicatingIN?5^I CCRB ףp= ?i+2 word approachesNNS"~jCD"~j?i-1 tag+i word JJ thawNNS5^I ˿NN5^I ?i-1 tag+i word JJ originalNNK7A?JJK7A i word eddieVBN+NNP+?i-1 word sacksVBN?5^I ?VBD?5^I i-1 word louisNNPS`"?NNSjtNNI +?NNPI +i-1 tag+i word JJ lookVBP\(\?NN\(\߿i-1 tag+i word IN receivingVBG(\?JJ(\ҿi+2 word researchedPRPOn@NNOn i suffix aagNNP?VBN i word nashuaJJ㥛 ڿNNPK@RBSQNNSQi-1 tag+i word RB lagVBPjt?RBjt i suffix lioJJHzGNNP1ZdNNtV?i+1 word takeoversNN'1Z@JJV-VBDMVBNv/@NNSA`" i+1 word niceVBZ1Zd?POS1Zd i word applyVBZd;O@NNQVBNrh|VBPoʡ?RBQINnNNS(\ i+2 word us NNP-NNPSZd;O?VBGK7A`?JJʡENN'1Z?VBNʡEƿWDTˡE?RBZd;OVB~jt?VBD/$ƿVBP/$?INMbX9i-1 tag+i word , restrictiveJJMb?UHMbi-1 tag+i word IN interviewsNNSZd;O@VBN/$NN&1i-1 tag+i word -START- feesNNPʡENNSX9v@JJZd;Oi word activistsVBZA`"NNSA`"?i-1 tag+i word NNP secondJJ/$?NN/$޿i word crucialNNS ףp= VBNh|?5NNsh|?JJv/ @i-2 word girlfriendNN~jtCD~jt?i-2 word defaultRP(\ڿIN(\?i-1 tag+i word NN outgainedVBNS㥛VBDS㥛?i-1 tag+i word , whackVBHzG?NNHzGi-1 tag+i word DT strikeJJjtNNjt@ i-1 word eatRBV-?INV- i word rallyVBPFx?JJL7A`NNP9v@VBl?RB~jt#NNffffff@ i-1 word judyNNPX9v?MDX9vi-1 tag+i word CC insideRBjt?JJjti word runningVBP|?5^ٿVBGףp= ?NNx&JJ9v?i-1 tag+i word JJ seasonalJJ(\?NN(\i-1 tag+i word TO induceJJSVBS?i-1 word tenaciousNNffffff?JJffffffi-1 tag+i word -START- forNNd;OCDINV-@NNPZd;O i word quebecNNPjt?JJV-CDKǿi-2 word stationsVBP'1ZNN'1Z?i-1 tag+i word PRP ringVBPK7A`?VBGK7A`i-1 tag+i word CD asRBˡEINˡE?i-1 tag+i word IN bottledVBN+ӿJJ+?i word marshmallowNNS(\NN(\?i-1 tag+i word IN broadcastingVBG~jtNN^I +@JJrh|i word systemicJJp= ף?NNp= ף i suffix CANRB-JJd;O?NNP{Gz?i+2 word laptopJJ;On?VBN;Oni-1 tag+i word -START- upINʡEֿRBCl?NNPV-տi-1 tag+i word -START- jayarkNN$CۿNNP$C?i-1 tag+i word RB assumedVBZV-VBN$C?JJmݿ i-1 word hughNNPSPnпNNPPn?i-1 tag+i word TO partialJJ}?5^I?NN}?5^Ii-2 word structureNNSxJJQ?NN!rhi-1 tag+i word RB painfulJJq= ףp?VBDq= ףpi-1 word difficultyNNnJJHzGѿVBGOn?i-1 tag+i word NN basicNN333333?JJ333333i-2 word vandenbergVBrh|NNPST㥛 NNP+?i-1 tag+i word JJ spendingJJd;OVBG9vNNS㥛 @i-1 suffix pigVBDS㥛?NNSFxVBNS㥛NNFx?i word stimulatingJJzG@NN5^I ӿVBG/$ i suffix AaaJJCl@NNPCli-1 tag+i word JJ indexNN%CNNP%C?i+1 word illegalVBGZd;O?JJSZd;OWDTGzINGz?i-1 tag+i word TO cfcVBzGNNPzG?i-1 tag+i word . bamNNM¿NNPUHy&1?i-1 word hellsNNPS1Zd@NNP1Zdi-1 tag+i word DT emergingNN!rhVBGHzG @JJoʡi-1 tag+i word DT syracuseNNx&NNPx&? i suffix LDCNNPZd;?NNZd;߿i-2 word certainlyNNS+?VBG%C?JJZd;NN-i word dawningVBG+?NN+߿i word representationNN&1?JJ&1i-2 word seniorNN;On?VBDCl?VBNK7AVBPx&1JJCl?NNSlVBli-1 tag+i word IN hawaiiNNPSؿNNS rh?NNPA`"i-1 tag+i word RB condemnsVBZv/?VBDv/i-2 word weaknessesVBGx&1NNx&1?JJEԸ?NNPEԸi-1 tag+i word , contentedVBNd;OJJd;O?i+1 word financiallyJJSʡEͿRBx&?VB(\?VBGS?JJK7RBSʡE?i+1 word siblingsVBG+JJ+?i-1 word musterJJ"~?RB"~i-1 tag+i word CC worstJJSV-?RBSlJJK7A`i-1 tag+i word JJ assessmentJJMbNNMb? i-2 word goyaNNPS&1?NNP&1i-1 suffix ipeRBB`"@JJMbXINV-NNPjt?NNPSjtRPZd;O?i+1 word definitelyWDTKINK?i+1 suffix sis VBZ/$DTMbNNS!rhNNPGzJJRMbX9@VBNMbX9@JJX9v @INB`"?RBNNˡECC!rh?RBRuV i+2 word marthaNNS?JJSտi-1 tag+i word NNS followingVBG?NNi-1 tag+i word JJ coreNNv/?NNSv/i-2 word solarVBNV-?JJV- i word ronJJMbNNPMb?i word orchardNNP(\?NNx&@RB1ZdJJh|?5INnٿi-1 tag+i word NNP ailmentNNd;O?RBd;Oi-2 word addition NN!rh?VBNx&1CDV-RB%CܿVBZNNPʡE?VB/$տVBG-?JJJ +ɿIN333333NNS?i-1 word fatherJJSNNS?i-1 tag+i word `` alarNN?JJ"~RB'1Zܿi tag+i-2 tag VBZ WDTCD(\?JJRsh|??VBP/$VBZ~jt?RP5^I ?RBp= ף?NNS rhٿCC333333?DT rhNN r?RBS&1?NNPSQVBGL7A`ؿVBDQRBRK7?IN?VBNuV?JJ(\@PRP~jth?NNPRQ?VBףp= JJS&1 i word stuccoNN#~j?JJ#~ji+1 word anonymityVBZ#~j?VBP/$ۿVBDGz i word crazyVBPFxNNSZd;VBN rhJJGz @NNMbi-1 tag+i word VBP seemVBK7?VBNZd;OJJ(\i-1 tag+i word POS accountsNNS?NNi+1 suffix ahoJJ ףp= ?NN ףp= i-2 word recommendingRBv@INvi-1 word approachedVBVBP?i-2 word specializeRBQѿNNw/ĿJJ'1Z?i-1 tag+i word PRP$ browNNGz?JJGzi-1 tag+i word RB tahitianJJjtNNPjt?i+2 word mexicoJJKVBZL7A`?NNS7A`?i-1 tag+i word PRP pickedVBP\(\VBD\(\?i-1 tag+i word . recordsNNPS)\(?NNS)\(i+2 word bribedJJV-?NNV-i-1 tag+i word JJ signalNNV-?JJV-i-1 word dramaVBDFx?VBZMb?NNSMbVBNFxi-2 word definedVBNGzJJGz?i+1 word testimonyVBNGzJJw/?NNP?5^I i-1 tag+i word IN troutNN/$ٿNNP/$?i-1 tag+i word VB openingVBG$CJJ$C?i word signaledVBDtV?VBZZd;OIN}?5^IܿVBNuV?NNPQi-1 tag+i word CC underworkedVB-VBNlJJbX9?i+1 word covertNNSʡEÿVBZʡE?VBGMbXJJMbX? i suffix SKFNNMbNNPMb?i-1 tag+i word VBN affiliateNNd;O?JJd;Oi-1 tag+i word NNS thinkVBFx?VBP +?INni-1 tag+i word JJ industrywideNNPnJJPn?i+1 word tribunalJJ+?NN+i-1 tag+i word VBD asideRPI +RBI +?i+1 word senatorsJJSoʡ?VBT㥛 RBSoʡJJd;O?NNP/$? i+1 word mr.VBN rhINq= ףp @VBZ@VBGS㥛@CC\(\?WPB`"?POS'1Z?RPHzGCDjt?NNPI +NN/$JJQVBDS?NNSClVBPA`"?WDT"~jRBQֿVB}?5^I?JJSX9vDTS㥛MDV-i+1 suffix plyJJRrh|VBN|?5^ѿWDT?EX#~jNNQRBx?UH(\DTMbX9?VBGbX9VBPK7A`?JJh|?5WRB?RPv?VBDDl?CCMbX9ĿINVBjt?i word outlaysVBZx&1пVBP333333NNSx&1@RBFxi-1 tag+i word DT mountainNNzG?JJzGi+2 word inspectionsVBDoʡNNSX9v?VBNoʡ?NNX9vi-1 tag+i word DT derivativesNNSV-?VBZV-i-1 tag+i word CD designNN/$?JJ/$i-1 tag+i word JJ hitVBNX9vNNffffff@VBD/$?VBPKNNS~jtؿi+1 word driftJJPn?NNX9vοNNPK7A`i-1 tag+i word VB tumorJJRI +ֿNNI +?i-1 tag+i word JJ achingVBGGz?NNGzi+1 word maturingNNSNbX9?NNPNbX9i+1 word radiantRBSjt?JJSjt޿i-1 tag+i word DT homeNNQ?RBQ i+1 word '80sJJjtRBjt?i word seminarsVBZ|?5^NNS%C?VBN\(\i-1 tag+i word VBZ insultingVBG\(\JJ\(\?i-1 word fantasizeRPmINm?i-1 tag+i word CC crammingVBMڿVBGM?i word distributingVBGx&1ԿNNK7?JJPn i suffix ORCNNPHzG?NNHzGi+2 word anticipatesWDT`"IN`"?i-1 tag+i word RP rivalJJE?RBEi-1 tag+i word VBZ anybodyDT rhNN rh?i-1 suffix ink JJNbX9INx&1@DToʡRPZd;PDTFx?JJR1Zd?RBRʡE?WDT/$NNPST㥛 ؿRB +NNZd;OEX/$?NNPT㥛 ?i word carefullyNN㥛 RB㥛 ? i-2 word car VBNClRB#~j?IN~jtNNS7A`NNʡE?JJ(\ VBD1Zd?VBPbX9?WDT~jt?VBZCl?NNPRQVB&1 i word sharksNNSx&1?NNK7JJˡEi-1 tag+i word NNS seemedJJp= ףVBDp= ף?i+1 suffix td.NNS7A`ҿNNPQ?NNPSV-@NNJ +LSQVBZ|?5^ i-1 word :CDX9v?NNPSZd;߿VBGp= ףJJV-?NN~jt@NNSS㥛?VBNRQ?NNPSVBD/$VBPHzGRB\(\?INʡEWRBSDTV-?VB ףp= ?WDTZd;JJR|?5^CC= ףp=ڿPRP$ ףp= ?VBZOni-2 word reelingNNS@JJSi tag+i-2 tag NNPS VBGNNP r?VBPJ +?NNSV-NN)\(NNPS +i-1 tag+i word JJ lackNN?5^I ?JJ?5^I i word crestmontNNS'1ZJJR'1ZNNP'1Z? i-2 word otcVBPy&1NNy&1?i-1 tag+i word IN coloradoJJT㥛 NNPT㥛 ?i-1 word metropolitanNNPSQNNPQ?i-1 tag+i word -START- oddsNNPS rh@NNSv/?NNDlNNPMbi-1 tag+i word NNP commoditiesNNPS-NNP-?i-1 tag+i word RB meltsVBZ/$?DTy&1VB ףp= i word fosterJJtV@VBK?JJRKNNtV i word bonnieJJ +NNP +?i-1 tag+i word RB besetVB +RPK7VBNQJJS㥛@i-2 word regulatoryVBGnNN&1?JJlڿi+1 word exhibitNNMbP?JJ5^I ?VBDOni word monsieurNNSףp= NNףp= ?i-1 tag+i word POS weakerJJRQ?NNQi-1 word experiencingVBNS?NN/$VBD/$JJ+?i-1 tag+i word '' incurredVBN{Gz?VBD{Gzi-1 tag+i word IN deputyJJuV?NNuVi-2 word speed RBRd;OJJRd;O?VBP$C?RBtVNNSKVBJ +?RPtV?JJ~jtNNNbX9?i-1 tag+i word JJ noticeablyRBX9v?NNX9vi word scandalsVBZENNSE?i-1 tag+i word VBD closedVBNV-?JJV-ڿi-2 word wantedVBףp= ?VBG+?NNzGJJrh|i-1 tag+i word NN burstRBq= ףpINbX9NN&1?i-1 tag+i word NNS requireVBV-VBPn@NNtVVBDmտ i word snapsVBZZd;O@NNZd;ORBnVBDCli-1 tag+i word NN performancesNNPSI +?NNSI +޿i-2 word standardsNNS(\?VBGZd;ONNʡEͿJJ9v@VBD㥛 i-1 tag+i word , bureaucracyNNJ +?JJJ +i-1 tag+i word VB likeRB;OnINfffff@JJoʡVB rhͿJJR +i+1 word hypercardINjtDTjt?CDMbX9JJZd;?NNP= ףp=i+1 word strongholdsNNS`"NN`"?i+1 word losersJJ%C?NN%Ci-2 word operaPRP$ r?VBʡE?NNʡEDT ri-1 word blackstoneVBZPOS?i+2 word choseNN$C?JJ$CINQ?DTSWRB^I +?i word benefit NNP`"VBDA`"JJR-VBPh|?5@JJ"~jNNSSVBS@NNMbX?CCX9vi-1 tag+i word IN worksVBZx&1?NNSx&1 i+2 word ` NN rPOS rh''Zd;O @WDTw/ԿJJ(\DTT㥛 пVBClVBGv?VBPbX9WP"~? i word jeepsNNPS&1NNSX9v?NNPK7A`i-1 tag+i word POS murderingNNGzVBGGz?i word stoppedNNZd;OVBDDl@JJˡEVBNi-1 tag+i word CC behaviorNN/$?JJ;OnRB rhѿi-2 word culturesJJjt?NNjt i-2 word bpcNNPS= ףp=?NNP= ףp=i-1 suffix binNN$CNNP$C?i-2 word bashingNN%C̿NNP%C? i-1 word ifarNNPSjtNNSDlNNPMbX9?i+1 word wachtlerNNPSQNNPQ?i-2 word removingNNK7JJK7?i-2 word scannersVB{Gz?JJ{Gzi-2 word trusteeNNPS~jtӿNNPS㥛VBDMb?VBP%CԿ i+1 word rapeRPX9vRB +IN-?i-1 tag+i word `` flatteryNN{Gz?RBSJJv׿RBRy&1i-1 tag+i word IN glasnostFW`"JJSHzGNNSK7NNMbX?i-1 tag+i word CC tastierNNERBRV-JJRQ?i-1 tag+i word VBZ apparentVBN"~JJ"~?i-1 tag+i word NN shopNN!rh?RB!rhi-1 tag+i word DT earlierNNbX9JJRZd;@JJw/RBR+i-1 word judgmentVBN}?5^I?VBD}?5^Ii-1 word resignationVBZT㥛 ?NNST㥛 RBR"~?RB"~i-1 suffix gicNNPSx&1?VBG rNNK7ANNPDlNNS(\µ?i-1 tag+i word VBG erodedVBNGz?JJGz i+1 word fund NNS?5^I VBGvNNMb`POS?JJx&?DTףp= ?NNPS㥛 ?VBZNNPZd;?i-1 tag+i word -START- tapVB"~?NNS㥛RB"~ji+2 word itemsVBZd;O?NN^I +ǿVBDCl?JJROnVBPbX9JJV-INOn?NNPS i word enemyNNSMbXNNx&1?JJ ףp= i-1 word reinvestmentNNV-?JJV-i word hemorrhagingJJE?NNI +VBGM¿ i-2 word toVB}?5^I@RBR&1JJR&1?WDTٿVBD= ףp=NNP~jt?INMbVBGDl?WP&1?CCʡENNPSjt?VBNS㥛?POSGzNNSh|?5?''x&1̿FW5^I ?PRP?PDTMb?UHCl?PRP$K7A?RBh|?5?CDMb?RPS㥛@JJMbX?RBS rh?JJS㥛 VBP rhDTZd;O?NN(\µ?VBZMbi+1 word versionNNK7VBNA`"?JJʡE?NNPM?NNPSM¿VBGS? i-2 word hallNNPS/$NNP/$?i-1 tag+i word POS deJJp= ףFWףp= NNPMbX9?i-1 suffix zzyNNS+?JJR+NN+?VBD+i-1 tag+i word , completedVBNK7VBDK7?i-1 tag+i word IN appliedNNP'1Z?DTV-VBN'1ZJJV-?i-1 tag+i word WRB implementedVBN$C?JJ$Ci-1 word activeNNMbX9ԿNNSףp= ?JJd;O?RB)\(i-1 suffix nel NNS ףp= JJClCDV-?VBZ ףp= ?VBP?5^I RBA`"IN#~j?NNPV-VBV-NN"~j?RBR rh?i-1 word murderousNNSw/?NNw/i-1 tag+i word NN quarterlyJJh|?5?RBh|?5޿i+2 word februaryNNPrh|?VBN?5^I ?JJrh|VBD?5^I i+2 word designersVBZHzGPOSHzG?i+2 word encouragedDTV-RBRM?JJRMINV-?i word registrationsNNSףp= ?INףp= i+2 word slowlyVBZK7NNSK7?NNtVNNPtV?i-1 tag+i word TO dutyRB(\NN(\?i-1 tag+i word DT doublingVBGx&1?NNx&1i-2 word pierceRBʡE?JJʡEi-1 tag+i word DT journalisticJJQ?NNQi-1 tag+i word VBN portsNNSʡE?NNʡEi-1 tag+i word NN bearsIN$CVBZV-VBѿNNSS? i word dareNNSrh|߿VBDNbX9VBPMbX9? i word scantJJJ +?NN-VBDffffff i suffix olnNNPSԿNNDl?RB ףp= JJ$CNNP rh?i-1 tag+i word NNP anchormanNN/$?IN/$޿i+2 word harrisVBGS?NNSӿi+1 word authoritiesVBGSJJK7ٿNNh|?5οNNPX9v@ i suffix locJJoʡVBZ`"NNS7A`NNP7A`?NNjt @VBNMbWDTSi-1 tag+i word , makeVBPNbX9?VBNbX9ȿi word seabrookNNT㥛 NNPT㥛 ?i+1 word liquidRBʡEտINʡE?i-1 tag+i word RB shapedJJJ +?VBNףp= ?NNh|?5VBDSi-2 word drinkingNNRQ?VBGRQؿi-1 tag+i word JJ indicatedVBNףp= JJףp= ?i-1 tag+i word NNS marketplaceNN?CD̿i-2 word hundredCDS㥛@VBNClNN%CVBD9vi-1 tag+i word IN witchesNNSn?JJni+1 word workoutJJOn?NNOni word strokesNNw/ԿVBPSNNSw/?i-1 tag+i word POS financeNN$C?JJ$C˿i-2 word contributorsJJ~jt?VB~jt i word caringNNI +?JJI +i-1 tag+i word NNP servicesNNPSS㥛@NNSGzNNP= ףp=i+2 word obscureNNMbJJ5^I ?UHʡEi-1 word ratedNNS&1NNPMb?JJʡE@NNGz VBNSRBB`"i-1 tag+i word TO growersVBh|?5NNSh|?5?i+1 word givesWDTp= ף?DTI +?IN/$NNSDl?VBZDli-1 tag+i word VBZ arrestedVBNX9v?JJX9vi+1 word melloIN= ףp=?NNPmVBP-i+1 word ultravioletJJOn?RBOni+1 word midnightNNClRB$CJJ/$ݿIN@i-1 tag+i word -START- hungaryJJvNNPv?i-1 tag+i word NN arrestNNJ +?RBJ + i suffix Y&RCC?5^I ڿUHZd;O׿NN9vNNPPn@ i-1 word here VB#~jJJrh|VBDʡE?WDTOnDT;On?POS#~jVBNVBPRQ?RBINMbX9?VBZ?5^I ?NNP\(\i word disgustNN~jt?JJ~jti-1 tag+i word POS exposuresVBZ&1NNS&1? i word lachesVBZ%CNNSOnNN+ @i-1 word guberNNSuVVBZuV?i-1 tag+i word CC communiquesVB(\µNNS(\µ?i-2 word violateJJ}?5^I?NN?NNPrh|i+2 word succeedsVBZjtNNSjt?i word streamliningVBG?5^I @NNSJJh|?5i word companiesNNS)\(?NNP/$NNPSJ +ɿi+1 word chairman RBʡEVBNˡE?NNPV-NNPSMbX9@CDB`"ٿJJ+INʡE?NNS/$NNV-?i-1 tag+i word NNP greenVB(\JJm?NNJ +i-1 word unsettledRBMbX?NN +JJˡE i suffix mbsNN VBDT㥛 RBDlIN rVBZDl?NNSQ@NNPKi-2 word humanNNjt?VBNZd;OJJjtVBDZd;O? i word theftVBP+NNSGzNNʡE@JJ ףp= UH ri-1 tag+i word NN loseVBZd;O?VBDZd;Oi-1 tag+i word PRP$ netNNoʡ@JJoʡi-1 tag+i word VBD slowlyVBN'1ZRB'1Z? i+2 word land VBx?NN~jt?FWL7A`VBD-VBNMbX9?JJ5^I NNPSx&RBʡEVBP-ӿPRPy&1NNSx&?i-1 tag+i word TO shawJJX9vNNPX9v? i suffix 89BVBZ rhNNP rh?i-1 tag+i word NNS superimposedVBD&1VBN&1?i-2 word employeesVBNDlJJS㥛ܿVBZ= ףp=?NNS{GzRBrh|?NNrh|i+1 word initiativesJJbX9?NNbX9i-1 tag+i word CC sellVBCl?VBP|?5^?RBENN)\(JJjt?i word immediateVBsh|?JJ;O@NNZd;ONNPPn? i+2 word passRBjtJJʡE?VB +VBP㥛 @ i suffix forJJOn@NNOn i-2 tag `` '' r?NNMb@CD`"EXuV?PRP$+WPMb?VBZFx?TOK7?PDTQտFW rȿJJSK7?JJRRQWDTJ +?NNP/$VBGL7A`PRPV-߿RB r?UH"~j?VBP1ZdDTL7A`@VB?RBS= ףp=ҿVBNoʡPOS= ףp= NNSv/ݿINClMD= ףp=?VBD-ƿJJoʡ?RPS㥛RBRX9vNNPS-i+2 word showroomsNN~jtRPS?VBNjt޿RBSſVBDZd;?i+2 word victoryJJ^I +?VBNw/NNx&1VBDFx@i+2 word tradesVBZV-?VBP)\(JJ"~j?NN"~jVBDOni-1 tag+i word NN heroesNNS}?5^I?JJ}?5^Ii-1 tag+i word PRP trulyVB"~RB"~?i word arsenalsNNS-?NN- i word tellsVBZv?NNSvi+1 word brevettiNNʡENNPʡE?i+1 word surplusNN+?VBN;OnJJ;On?VBD+i-1 tag+i word DT herbalJJ333333?NN333333i+2 word multipleNNSS?VBPS i suffix dio FWMڿINDTClNNx&1 @VBNZd;VBPPnJJ?5^I ?NNP(\µNNPSʡE i+2 word dropNN(\?VBD(\?JJ$C?VBGʡEVBN(\i word litigationNNT㥛 ?VBNrh|JJS㥛i-1 suffix uth NNPS"~ @RBQݿWDT'1ZVBZ(\NNP1ZdNN~jtJJ-@IN~jt?NNSʡEտi-1 tag+i word JJ securitiesNNPS~jtNNSQݿNNPjt@i tag+i-2 tag JJR TONNS rh?VBZd;O׿VBGS@JJffffffֿNNKi+1 word uniformRBRsh|??JJRsh|?i-1 word votedNNS(\ؿRB+@JJ+CD+? i word wallNNʡE@JJQNNSK7!i-1 tag+i word DT improvisationalJJ+?RB+i-1 tag+i word DT majorsNNSCl?NNCli word subliminalVBNvJJv?i word tribunalNN+?IN+i-1 tag+i word , alongVBZ\(\RP +VBN+RBMbXIN&1@i-1 tag+i word CD timesINClNNSZd;O@VBQ뱿JJzGCCp= ףRBDli-1 tag+i word CC catastrophicNNSSJJCl?NNQٿ i+2 word sheRB?5^I IN rh?NNPSL7A`?NN$C @VBN!rh?JJSZd;RBRHzGѿDTx&1NNPʡEVB/$?RPS?JJ&1VBZx&VBDS㥛?RBSףp= @UH9vWDT-NNS/$?i+2 word nightRBx&?INX9vDT/$NNoʡ?VBNoʡWDT1Zd@i word audiencesVBjtNNS|?5^@VBD+VBZQ˿i-1 tag+i word RB happensVBZ'1Z?NNS'1Zi-1 suffix hipVBG"~ڿNNPnRBd;OVBD}?5^I?DTSNNSx&1VBNMbX9ĿEXK7A?INMbX?NNP(\?RBRv/WDTˡE?JJˡE@RP+VBZZd;? i suffix A-2NNSX9vNN;On?JJy&1?CDMbпi+2 word tackleVBN9vJJ9v? i suffix AptVBD rhVBPZd;ONNPS +οJJ&1@NNP?5^I i-1 tag+i word , fakeVBˡEĿVBPnNNS\(\ϿJJ\(\@NNHzGi word christianityNNMbXNNPMbX?i word undressNNI +?JJI +i+1 word attractingNN|?5^?JJ|?5^ڿi-1 tag+i word NN refiningVBGK7A`NNK7A`?i word umbrellasNNSDl?NN+JJQi+1 suffix ennVBZoʡ?NNSoʡi-1 word columbiaIN/$?NNP9vNNPSV-@NNS?5^I NNtV i word learnVBZʡEVBA`"@VBPrh|?NNSzGNNsh|?i-1 tag+i word RB fancyJJx&1?NNQVBDB`"ɿi+1 word buyerNNKVBNh|?5?WDT$C˿JJ7A`ڿINZd;ODTQ?NNP +οi-1 suffix ems VBZ+?VBClRPA`"?JJjt?NNS㥛VBDS?VBNX9v?INʡEտNNS rhVBPDl?WDTCl?RB rhNNPV-?i-1 tag+i word TO erodeVB"~j?NN"~jܿi-1 tag+i word TO conspiracyVB#~jNN#~j?i+1 word ignoreVBPK7RBK7?i-1 tag+i word DT updatedJJd;OVBNd;O@i word payrollsNNSQ?NNQ i word levyNN= ףp=?JJjtVBZ= ףp=VBjt? i word drillVBn@VBPX9vNNA`"i-1 tag+i word JJ directorialJJX9v?NNX9vi+1 word fluidsVBGGzJJMb?NN ri-1 word fearsomeVBP+JJ+?i-1 suffix irs VB"~j?VBNzGVBP?5^I JJ1ZdINjtVBZV-?NNSd;OMDV-?NNK7@VBDsh|??NNPQRPy&1@i-1 tag+i word : laborNNV-?NNPV-i+2 word seducingVBZnNNSn?i word scrimpedVBN/$VBD/$?i+2 word winnetkaNNNNP? i word huskerNNPGz?NNGz i suffix iodJJZd;?NNZd;i-1 tag+i word NNS erodeVBZʡEVBʡE?i word minneapolisJJh|?5NNPh|?5?i-1 tag+i word JJ statisticNNMbX9?JJMbX9i-1 tag+i word VBG indicatorsNNSX9v?NNX9vi-2 word philippinesNNPV-?NNPSؿNNK7VBDx&?VBNx&JJK7?NNSbX9ȶi-1 tag+i word JJ nursingNNw/?NNPw/i-1 tag+i word VBD irasNNS1Zd?NNP1Zdi-1 tag+i word DT sovereignJJ~jt?NN~jti-1 tag+i word VB lostRP~jtRBSmݿVBNp= ף@FWx&1 i suffix 995JJOnCDOn?i-1 tag+i word PRP$ drivingNN+VBG+?i+2 word amityvillesNNPS㥛 ?NNP㥛 i-1 tag+i word CC earlyRBףp= ?VBP"~jJJ}?5^Ii-1 tag+i word IN lungsNNS"~j?JJ"~ji-2 word opponentsVBNw/?VBDw/ܿi-2 word civilisedWDTZd;ODTZd;O?i+1 word commandmentNNx@JJxi-1 word theftsVBPn?NNPni-2 word pearceVBNI +?JJClVBDx&i+2 word weekendsINOn?WDTOnۿi-1 tag+i word TO whatVB)\(WP)\(? i suffix ootNNE @VBDʡECDA`"VBPjt?RB9vڿNNSMbX9VBQJJʡE? i+1 word f.NNP/$?VBD/$ۿi-1 tag+i word : percentageNNjt?NNPjti-1 tag+i word NNS councilsVBPClNNSCl?i-1 word avoidVBGX9v?NNK7?VBNMbпRBR|?5^JJX9v?JJRNbX9пNNSlVBٿi-1 tag+i word , furtherJJV-?RBR'1ZRBuV?CDV-i-1 tag+i word -START- trusteeNNS%CԿNNQ?NNPS㥛i+1 word recoveredNNGz?JJGzi-1 tag+i word NN buildingsNNS5^I ?NNP5^I ӿi+2 word entitleNNV-?VBGV-i+2 word isabellaNN'1Z?JJ'1ZVBZ'1Z?NNS'1Zi+2 word emergenciesNNSMbNNT㥛 ?JJx&1i-2 word abbieRPS?VBNK?RBSNNKi-1 tag+i word POS touristNN;On?JJ;Onڿi+1 word displayedNNPSPn?JJrh|NNPK7i+2 word curtailedVBN;OnVBD;On?i-2 word ralliesDTFx?WDTFxVBNh|?5?VBDh|?5i tag+i-2 tag NNS JJNNK7?WRB ףp= ׿MD|?5^?VBGV-?NNS1Zd?VB(\?EXSWDTbX9?FWoʡ?JJS}?5^IVBDv?POSʡE?RB/$VBP{GzRBR+WPuV?DTMbCCL7A`?JJRB`"''SJJnVBZ r?NNPSDlVBNMbX9?RPS㥛NNPB`"INzG?i word positioningNNQ?JJQ޿i+2 word ventilationVBNtVJJtV?i+1 word boundingVBNS㥛VBDS㥛? i-2 word diedJJ-NNP-@i+1 word inefficientRBS-?JJS-i-1 tag+i word RB earlyRB(\?JJ(\i-1 tag+i word VBZ dueRBzG?JJK7ɿVBN~jti word underscoresVBZMb?RPMbi+2 word runoffNNzG@NNPzGi-1 tag+i word PRP yelledVBPh|?5οVBDh|?5? i-2 word {VB;On?JJGzǿNNK7ANNPCli-1 tag+i word VBD anthraxNN?5^I ?JJ?5^I i tag+i-2 tag RB ,VB~jtPDT-INjt?VBD~jt?VBPRPGzPRP1Zd?NNPS(\VBN{Gzt?DTS@NN333333?RBRPn?JJS|?5^JJR-?JJV-?VBZMb?CC?5^I ҿNNPx&1CD'1Z?VBG ףp= @RBNNS{Gz i+1 word edNNP+?CD+i-1 word packsRP-?RB-i-1 tag+i word -START- othersNNPSNbX9NNSn?NNP(\տi-1 tag+i word VBP prenticeJJ#~jNNP#~j?i+2 word tripledJJR-VBN'1Z?JJ'1ZĿRBR-? i word plateNN+?JJ+i-1 tag+i word NNS aboutRPV-RBףp= INtV@VBP;Oni-1 tag+i word VBD stemVBX9vNN'1Z?JJ-i-1 tag+i word NNP hendersonNNPDl?VBDDli word detachedVBN333333?NN333333i+1 word driversVBZCl?VBGMb?JJMbNNSCli word separatelyNNPSZd;RBoʡ?NN rhVBPbX9JJzGNNPJ + @i-2 word doubtsRBT㥛 ?JJT㥛 i-1 word tedNNP rh?NN rhi-1 tag+i word `` rememberVB/$@JJffffffNN%CNNPZd;Oi word rollersNNSK7?NNK7i+1 word liquidityDTI +@JJ+?NNm@VBNnRBbX9INI +i+2 word marvelVBGn?NNni+1 word financial POS)\(?RBZd;ONNP{GzNNPSEпNNV-ǿJJT㥛 ?VBDL7A`VBNV-?VBP`"?IN;OnVBZ&1VBQѿVBGMbX?i-1 tag+i word -START- dentsuNN-NNP-? i suffix AELVBZrh|NNPrh|?i-1 tag+i word WDT weighsVBDˡEVBZV-?VB= ףp=i+1 word groundsJJ"~j?NN|?5^NNPRQ? i word stupidVBPClNNSClJJ9v@NNQi word argosystemsVBZrh|߿NNPS!rh?NNP|?5^ҿi-1 word educationCCS㥛?DTS㥛ܿi+1 word bowlingVB5^I ˿NN"~?VBPOn?JJS㥛?INOnVBZ ףp= NNPCli-1 word keynesianVBZK7NNSoʡ?NN|?5^i+2 word betweenNNSʡEVB(\?NNA`"VBD ףp= ?JJRn?WDTK7?NNPSbX9?VBGE @RBI +DT;OnNNP~jt VBNʡE?JJ㥛 RPGz?IN&1VBZ~jt?i-1 tag+i word DT ceremonyNN/$?JJ/$i-1 tag+i word IN attackNNsh|??RBsh|?i+2 word interviuNNP +?NN +i-1 tag+i word TO spotVBCl?NNCli-1 tag+i word TO declineNNtVVB|?5^@VBNi-1 word volatileNNjt?JJjti word spinoffNN^I +@JJOnRBbX9JJRbX9i-2 word broadcastingNNPNbX9?VBGNbX9ؿRBˡENN-JJMb`?DTˡE?NNSd;O?i word bussieresNNSlNNPl? i+1 word tendVBZ/$NNS&1?JJ333333i-1 tag+i word , overrodeVBZClVBDy&1?IN rhi-2 word estate RBClINX9v?NNP㥛 ?VBB`"VBG$CNNy&1@CC +޿JJ'1ZVBDOnVBNOn@NNSx&ٿi-2 word enginesJJI +JJR~jtNNI +?RBR~jt?i-1 tag+i word POS lowJJxJJRX9vNN1Zd@i-1 suffix sunNNPSx&1@VBG)\(?NNGz?VBDv?VBNvVBZ333333NNPx&1 i-2 word leapNN7A`?VBG7A`i-1 word truckingNNS(\ſNN(\?i+1 suffix nisRBRrh|JJRrh|?NNCl?NNPCl˿i-1 tag+i word NN mileageNN\(\?NNP\(\i-1 word sourcesVBDv/?VBNv/VBPʡEͿRBv/?NNS1ZdVB)\(i-1 tag+i word JJ dialogueNNS/$NN/$?i-1 word intensifyingRBzG@INzGi-2 word creakVBrh|?NNrh|i-1 word jacquesNNPSV-NNPV-?i-1 tag+i word NN coupVBPd;ONNd;O?i-1 tag+i word , judgedVBNK7@NN1ZdVBD\(\i-2 word longtimeNNʡEJJv߿NNPx?i-1 tag+i word CC welfareNN9v?WP9vi word unpreparedVBNJJ@i-1 tag+i word POS vigorNNSxNNx?i-2 word aviationVBN{GzVBD{Gz?i-1 tag+i word : retailingVBGףp= NNףp= ?i-1 word mortonNNPSnNNPn? i word basesVBZ"~NNS"~?i-1 tag+i word VBD strongerNN7A`JJR(\@RB7A`RBR rhi-2 word fergusonJJS7A`NN7A`?i-1 tag+i word VB interpretedVBNK7?JJK7ٿi-2 word hondaNNS~jtVBGtV?RB~jt?JJtV i suffix bid JJK7A`VBNp= ף@CDZd;VBZMbXNNPZd;VB㥛 ?NNT㥛 @VBDʡE @VBPDlRB%CNNSNbX9 i suffix NGSNNPSsh|??NNSoʡ?NNoʡNNPsh|?i-1 tag+i word POS cairoNNK?NNPKi-2 word japanJJSK7?INL7A`eCDZd;?NNPSQNNvRBR{GzVBNoʡ?VBP/$@DT!rh?VBZ;OnRBSV-?NNP^I +?RB/$?VBGFxJJRm?NNS7A`?VBjt?RPMb?JJv/VBD1Zd˿i+1 word unsecuredNNSsh|?JJʡE@NN/$NNP)\(i-1 tag+i word CC defectiveJJ +?VBP +i+2 word lopezPRP)\(NNP)\(?i-1 tag+i word NN wrappedVBNK7A`?VBDK7A`i-1 word paintedNNl?NNSw/PRPtVJJ?5^I ڿCDtV? i suffix neaVBZ1ZdNNZd;O@JJSNNPx?i-1 tag+i word NNP dayNNPSS㥛NNX9vNNPV-?i word perpetualVBGzJJNbX9?NNSi word extensiveNNy&1JJy&1?i+1 word burgerNNPy&1VBPbX9@NNni-1 tag+i word JJR positionedVBNw/?VBDw/i-1 tag+i word NNP telecastJJSX9vNN+?NNPFxi word followershipRBRClNNCl?i-2 word turgidJJKNNSK?i-1 tag+i word CC lunchNN{Gz?JJ{Gzi-1 suffix aitJJV-INMbWDTMb?VBNV-? i suffix minNNP|?5^?NNPSjtNNS rhJJQNN rh?i+1 word subjectNN9v?JJ9vi-1 tag+i word PRP kinfolkVBDB`"NNSB`"? i+1 word gearNNPS㥛VBzGNN5^I ?VBN̿JJ9v?NNSm?i-2 word storesNN$C?VBDQVBNQ@JJS CDRQVBPjt?IN+?VBZ+DTZd;ONNSy&1 @NNPK?VBDlRPFx?RBKi-1 word groundWDTPnINPn?VBZZd;O?NNSE?NNP}?5^INNPS}?5^I?NNMbCDV-? i suffix 1stNNP~jtJJK7@CD\(\i-1 word though RBRV-VBNZd;IN㥛 ڿVBZffffffJJR9v?JJ+@NN㥛 RBPn@VBG +RPK7i-1 tag+i word RB suspendingVBG~jt?JJ~jtÿi+1 suffix labNNSV-NNV-?i-1 tag+i word DT firmerJJRx&1?NN rhJJ7A`i-1 tag+i word VBD jointJJn?NNn i suffix AsDT +NNPZd;OVBy&1JJףp= CC^I +RBx&1̿IN+w@i-2 word return VBN|?5^RBq= ףpIN!rh?VBZQӿVBJJS㥛NNJ +VBDq= ףp?JJRh|?5?NNS$C?i-1 tag+i word NN goVBZ㥛 VB~jt?VBPS?VBDV-i-1 word styleNNPʡEDTQINQ?VBNv/?VBDZd;Oݿi-1 tag+i word JJ incomeNNQ?NNPQi-1 tag+i word DT dinkiestNN rhJJS rh?i word subordinatedNN;OnҿVBDPnJJMbX9?VBNy&1?i-1 tag+i word RB performedVBNK?JJKi word chancellorVBPMbX9NNS+NN? i word walkedVBPEVBDE?i-1 word bostonVBGPnNN#~j?VBD?5^I VBN?5^I ?JJ(\VBZX9vNNSX9v?NNPtV?i-1 tag+i word DT stockJJQNNPQ?i-1 tag+i word VBZ ratedVBN9v?JJ9vi-1 tag+i word TO improvedVB rhVBNjt@JJK7i+1 word advisesNNx&1?JJ'1ZVBGMbi-1 word confrontsPRP$-?PRP-i-1 tag+i word PRP$ balloonNNS rhNN rh?i word outnumberedVBDx&1?VBNPnJJףp= i-1 word colinasNNZd;O?JJZd;Oi-1 tag+i word NN delaysNNSMb?NNMbȿi word discountingNN~j@JJSVBGsh|?i-1 tag+i word -START- exactlyDT ףp= RB ףp= ?i tag+i-2 tag NNS ''VBNV-?VBD/$IN%CWDTS?i-2 word defianceJJ$C?NN$Ci-1 tag+i word DT arrogantJJ(\@NN(\i-1 tag+i word -START- speedNN)\(?NNP)\(i-2 word evaluationVBG(\ȿNN(\? i+2 word winsNNOnCDoʡ?JJx&1?INJ +@VBZ"~jNNS+NNP7A`RB+i word shortedVBNпJJ?i-1 tag+i word DT relevantVBPZd;OJJZd;@NN"~i-1 tag+i word WDT kindsVBZoʡNNSoʡ?i-1 tag+i word IN insistingVBGzG?NNzGڿi-1 tag+i word DT belzbergsNNPSM@NNX9vNNP#~ji-2 word punchingNN(\?VBG(\i+1 word solderingJJV-?VBDV- i word purelyRBA`"?JJA`"i-1 tag+i word NN spokenVBZʡEVBNx?NNZd;i-1 tag+i word '' thatINPnؿDTMbWDTK7A@i-2 word pharmaceuticalsJJPn?NNSv/ݿNNPʡENNPSʡE?NNT㥛 VBDL7A`i-1 tag+i word NNS returnedVBN^I +?VBD^I +ǿi-1 tag+i word VBZ receiveVBDlVBPDl?i-1 tag+i word CC findVBZd;O?VBPZd;O i-2 word flagNNSZd;?NN+JJV-i-1 tag+i word VBG onePRPoʡ?NNˡECD~jt?i-1 word litigatorsVBPx&?RBRx&i-1 tag+i word VBN litleNN|?5^JJ|?5^?i tag+i-2 tag DT PRP JJSQRBRS@VBPQ@RBQVBZClNNP(\?INtVRP(\?JJlNNV-VBDS㥛?JJRp= ףVBN!rhi-1 tag+i word DT tollNNS"~jNN"~j?i-1 tag+i word CC activateVBPV-@JJSNN/$i-1 tag+i word TO barVBX9vNNX9v?i word machinesNNPS?NNSZd;?RBx&1NNP5^I  i word openedVBN$C@VBP/$JJˡEVBZ"~RB ףp= NNvVBD ףp= @i word safeguardVBMbX?NNMbXi-1 tag+i word VBG frequencyNNSMNNM?i+1 word overcapacityVBG|?5^JJ|?5^?NN{GzܿNNPjti+1 word stimulativeJJR+RBR+?i-1 tag+i word , comeNNQJJ~jtȿVBDjtVBd;O@VBPvi-2 word libertiesJJFx?NNFxi-2 word barriersNNS/$?VBP/$i word involuntarilyRBrh|?JJrh|i-1 tag+i word DT bulldozersNNPSjtNNSjt?i-1 tag+i word JJS drillingNN'1Z?VBG'1Zi-1 word queasilyVBNZd;OVBRQпVBP#~j?i+1 word potatoesNNl?JJlڿi word youngestJJSy&1?NN㥛 JJ9v i word donnaNNPʡE?JJʡEi-1 word poniedIN(\տRP rh?RBCli-1 tag+i word RB liftVBP(\?VBD(\ i word epoNNSV-JJ#~jԿCDPnNNPZd;?i-1 tag+i word WDT cloudVBPoʡ?VBDoʡտi-1 tag+i word DT shipbuilderJJRKNNK?i-1 word baseballNNPSRQNN(\?VBNRQVBPoʡ?WDTmINS㥛VBZn?NNSCl?i+1 word comparisonJJrh|?NN~jt?NNP1Zdi+2 word dealingVBNzG?RBRzGi+2 word shipyardsRBT㥛 INT㥛 ?i+2 word exceedingVBG+NNʡE?JJB`"ɿ i+1 word whatWDT'1ZVBZm?NNP`"VBD|?5^?NNSq= ףpVBN rпVB333333 @NN333333CCT㥛 POS333333ۿINy&1?RPףp= ?JJx&PDTtVVBPK7?RB+VBGGz?DT)\(@i-1 tag+i word VBZ whatWDT/$?RBJ +ٿIN(\WP(\?i-2 word sittingFWZd;O߿EXd;ORB333333?i-1 tag+i word `` unhappilyRB^I +?NNP^I +i-1 tag+i word WDT meantVBZ$C˿VBD$C?i-1 tag+i word VBN customNN?5^I ?JJ?5^I ڿi-1 tag+i word IN chapterJJvNN(\@JJRI +RB ףp= NNP-?i-1 word reprintedNNSI +RB +@JJ"~ji-1 tag+i word WRB offputtingVBGx&1JJx&1?i-1 tag+i word RB lentNN/$JJ/$ݿVBDS?i+2 word agendaRBRZd;OVBZd;O? i-2 word wangVBG1Zd?NN1Zdۿi-1 word benefitedRBR+?JJR+ i-1 word soloRP+NN+?i+1 word softenedRB-?NN- i-1 word mixVBZ;OnNNS;On?i-1 tag+i word NN sinkingVBGvNNv? i word bringVBPq= ףp@JJ{GzVBJ +V&@VBG33333$NNQVBD ri word situationsNNS!rh?VBN!rhi-1 tag+i word DT dullNNy&1JJy&1?i-1 tag+i word DT deskNN{Gz?JJ{Gz i word causesVBZ#~j@NNS}?5^INN|?5^i word launderersNNSq= ףp?VBNq= ףpi-2 word scribbledRBd;O?JJd;Oi-1 tag+i word VB decidedVBNGzVBDGz?i+1 suffix armNNPVBGGzJJ +?NNn i word blownVBD$C˿VBNQ @VBPx&1INKNNSZd;ONNCli-1 tag+i word RB cleverVBZSJJjt@RBMbؿVBD#~ji-1 word looksNNQINffffffRPffffff?JJQ?i+2 word auditsJJ)\(?NN)\(i-2 word shiftingNNSNbX9JJoʡ@NN!rhi-1 word wathenVBZn?NNSV-VBD+i+1 word chief NNPSCl׿JJOnNNGz?POSS?RBZd;O?VBD"~jܿVBNS?INZd;OVBZʡENNP'1Zܿi+1 word virtuesVBT㥛 JJT㥛 ?i-1 tag+i word PRP$ customaryNNZd;OJJZd;O?i-1 suffix orrVBN"~jVBD"~j?i-1 tag+i word VBZ applesVBZ{GzܿNNS{Gz?i-1 tag+i word DT handfulNN/$@JJ/$i-2 word devilsNNS㥛 ?VB㥛 i+2 word relyNN-?JJ-i-1 tag+i word NN practicedVBN/$?VBD/$ i-2 word drug VBN&1?VBP rhRBp= ףNNPPn?JJZd;NN rh?CDPnINtV?NNSʡEͿVBQVBDoʡ i-1 word ltd.VBNK7AпVBDK7A? i+2 word gapVB/$?RPClRBQ?i+2 word ethyleneNNS㥻?VBPS㥻i word devastatingVBGjtܿNN/$JJ5^I  @i+1 word extraditionVBGffffff?JJffffffֿi+2 word foggsJJ-?NN5^I ۿFW+i-1 tag+i word JJ bothDT`"?NN`"ο i word coolsVBZw/?NNSGzֿNN㥛 i word ineffectiveVBPRQJJRQ?i-1 tag+i word NNS contendVBh|?5@VBP"~jNNSi-1 tag+i word NNP worldwideNNPuV?NNPS\(\JJni-2 word wrightingNNK@JJX9vοNNPbX9i+2 word recordersJJ(\?NN(\i word fundamentallyVB~jtRB~jt?i-1 tag+i word IN liquefiedVBN+?JJ+i-1 tag+i word VBD metNNSMVBN ףp= ?JJ+i+2 word hobbyVBDZd;?VBZZd;i-1 word methodicalVBGjt@NNGzJJˡE?i word historicJJCl?NNCli word gobbledygookNNMbX?JJMbXi tag+i-2 tag VBN VBG JJ(\?VBN|?5^NNSK?INx&1?RPl?NN`"CDNbX9VBP rh?RBrh|i word distinctlyJJA`"˿RBA`"?i-1 word earthPOSX9vֿNNlVBZX9v?VBl@i-1 tag+i word NNP guinnessNNPS\(\NNP\(\?i word challengesVBNN|?5^JJGzVBZ`"@NNStV?NNPZd; i-2 word tellNN/$?IN/$WDTzG?JJ㥛 ڿWP|?5^RBzG?i-1 word sprinkledPRP$ +PRP +?i-1 tag+i word JJ remainVBPS?NNSi+2 word prosperousVBZSտPOSS? i word loadVBP/$NNSFxNNI +?i-2 word beyondVBG/$ٿJJbX9@NNV-NNPMi-1 suffix eniNNS'1ZVBZ'1Z?i-2 word specificationsNNSMVBN ףp= ?JJ+i+1 word typesDTS?VBGnڿJJʡEi-1 tag+i word RB postedJJK7VBDK7?i-1 tag+i word : usairNNoʡNNPoʡ?i+1 word millionsVBQ@VBGv/?JJZd;OVBD/$VBN$C?VBPK7RB(\i-1 tag+i word NN diedVBNK7AVBDK7A?i-1 word communistNNS?5^I ?VBZ?5^I i suffix val VBZ$CNNSV-VBX9vRBENN|?5^@VBNZd;OJJK@INClNNPMb i+2 word elNN`"NNP?NNPSNNS`"?i-1 tag+i word RB interpretsVBZGz?NNSGzi-1 tag+i word NN billsNNPSCl?NNSZd;O?NNʡEi-1 tag+i word MD audiencesVBjtNNSjt?i-1 tag+i word JJ limitsVBZ"~jNNS"~j?i-1 tag+i word `` haveVBRQVBPT㥛 @RBZd;i+2 word republicansRB-?NNPSX9v?NNS rJJ-NN r?i-1 tag+i word IN ectoplasmicNNS㥛 JJ㥛 ? i-2 tag WRBEXx?NNPS +VBG ףp= JJ ףp= RBL7A`?VBMb?PRP%C̿NNS+INJJSS㥫?VBPHzG?WDT$CVBZ rh@DTE?NNP#~jJJRClǿFW|?5^?VBN~jtۿNNh|?5?VBD= ףp=?CDQMD- i word wiggleVBNh|?5VB"~VBPtV?i-1 tag+i word CD ordinaryJJV-?NNV-i word preventingVBGbX9?NNbX9i-1 tag+i word -START- atoneVB|?5^@NNP(\CDʡENN(\IN(\ȿ i-1 word denyVBZ(\NNS(\?i-2 word aggregateNNS1Zd?NN1Zdi+1 word tangibleVBZA`"POSA`"?i+2 word counselingVBG(\?NN(\i word displeasedVBN/$JJ/$@ i word yellowRB333333JJsh|? @NNSZd;ONNQi word aforementionedVBN(\ڿJJ(\?i-1 suffix tay VBDˡERBtV @IN'1Z@JJPn?RPA`"NNZd; RBRI +VBNˡE?VBG rh?VBp= ףi+2 word reasonVBZDlNN?VBDjtԿPOSDl?VBNjt?PRP|?5^JJA`"?i+2 word distributorsNNPS`"?NNP`"i-1 tag+i word NN furnishedNNSSJJ+?VBD~jtؿi-1 tag+i word , hispanicJJzG?NNPzGi tag+i-2 tag VBD PRPINK7ANNPSGz@VBNFx?JJh|?5οRBtV?VBZd;O?PDTd;ORBR/$JJRtV?EXZd;VBD?5^I VBPV-?VBZQDTV- NN+@NNPw/@PRP$'1ZRPn?NNSZd;O?CDlVBG|?5^@PRP r?UHzGڿi-1 suffix oupRBRw/?POSd;O?VBN rhJJMbX9IN"~NNSuVWDTMbX9@VBZ\(\@VBGMbX?RBd;ONN$CVBDT㥛 @PDTd;OοDT rh?NNP+?i-1 tag+i word NNP everRBA`"?NNPA`"i+2 word forgetVBPS?PRPDl?VBZT㥛 NNP1ZdӿVBEVBDxPOS/$i+1 suffix rghJJ"~jԿNNP"~j? i-2 word bodyVBZMbX9?DTK7A`NNSMbX9NN= ףp=CCK7A`?RBSSJJl@i-1 tag+i word IN niceJJS?NNSi-1 tag+i word WDT guaranteeVBD rhVBP rh?i-1 tag+i word VBN legendaryRBRmJJm?i-2 word standNN ףp= JJ'1ZNNS ףp= ?NNPClVB^I +?RP#~j?RB#~ji-1 tag+i word IN treasuryNNSPnNNPn?i-1 tag+i word VBD admitsVBZ~jt?VBN~jt i-1 word saysNNPQVBGGzRBsh|?PRP$ʡE?NNS'1ZCDRQ?INS㥛@WDT'1ZEXS㥛?JJ#~j?JJR r?NNPS&1?NNK7A`@VBPףp= RP-DTI +PRPʡEVBI +@VBNCli-1 word adjacentVBZV-NNSV-?i word inadvertentJJ r?NN ri word flashbackJJ;OnNN;On?i-1 word fortuneVBZʡE?NNʡEi+1 word somehowNN$C?VBD\(\NNPOn?JJ+i-1 tag+i word IN discountingVBGX9v?NNX9vϿi tag+i-2 tag RB RP JJ|?5^NN-?RBRV-RB rh?INQ?VBG|?5^PDTK7?JJRV-?VBNS? i pref1 HUH#~jVBN#~jԿFWMbX9VB-PDT rWP9vWRB'1Z@VBDI +?VBZw/?DTJ +NNK7A` RBQkNNSʡERPA`"@LSMD5^I IN rh NNPSPn@VBGHzGJJjt$MbX9@NNPI +,@PRP$\(\@PRP@VBP= ףp=?RBS/$JJSX9vi+1 word pentagonJJ rh?NNP rhi-1 tag+i word IN planningVBG{GzĿNN{Gz?i word sentenceRBʡEVBN7A`NNףp= @i-1 tag+i word , denouncedVBNQVBDQ?i-1 tag+i word IN beijingVBGA`"NNPA`"@i-1 word upscaleNN$C?JJ$Ci-1 tag+i word -START- kentNN"~NNP"~? i word reliedVBPOnVBDOn?i-1 tag+i word , publicJJ/$?NN/$i-2 word emigrationVB333333ӿVBP333333?VBNSVBDS?i-1 tag+i word , cruelJJd;O?VBDd;O i suffix aacJJ{GzNNP{Gz?i-2 word structuresVBD?5^I ?NN?5^I i-2 word pleaseVBP(\NNS%CԿVBNffffff? i+1 word soloJJ~jtVBD~jt? i word sightsNNS/$?NN/$i+1 word letterVBGGzJJK7@NNd;Oi+1 word boxesVBG~jtxNNrh|JJS?i word spanningVBG-?NNzGJJV-i+1 word jailedVBG-?NNh|?5?NNSOn i word shakyRB{GzJJK7?NNʡEi-1 tag+i word DT protocolNN#~j?JJ#~jܿi-1 tag+i word VBZ disputedNNVBNB`"?JJB`"VBD?i-1 word promotionalNNSMbNN|?5^JJbX9? i word trillsNNʡENNSʡE?i-1 tag+i word VBN luckyRBRQſJJQ? i suffix retJJjt @NNST㥛 NNP(\?VBn?NNPSK7ANN/$VBPMbXi-1 tag+i word CC crushedVBNʡE?JJʡE i suffix iumNNS(\NNPZd;JJK7A?NNl@FWQCC/$RBʡEVBZV-i word bankersNNPuVNNPSPn@NNS{GzJJJ +NNsh|?i-2 word notebookNNˡE?NNPˡEi-1 word largerNNCl?VBCl i word west NNPSRQ?WRBSJJ r@RBSjtVBNGzVBPEVBQJJSZd; WDTuVRBS?INp= ףؿNNPI +?NNʡE@i-1 tag+i word -START- feelingVBGffffff?NNffffffi-1 tag+i word NNP classicsVBNNNS?i-1 tag+i word DT tapeNNx&1?JJx&1i-1 tag+i word , cmsJJ +NNP +?i-1 tag+i word VBG broadcastVBN(\?NN(\i-1 tag+i word CD firmJJClNNCl?i+1 word economicVBNDTSտNNS/$տNN)\(PRP$Cl?FW$CRBSA`"JJSA`"?JJRV-?WDTjtIN ףp= ?NNPZd;?VBFx?VBG{Gz?JJCl?VBD5^I VBPCl?PRPClٿRBDli+1 word relationshipsNNPSPRP$S?JJ(\?NN(\i word acceptsVBV-¿VBD|?5^RBv/IN1ZdVBZzG@ i word pa.VBNtVNNPtV?i-1 tag+i word VBN steadyJJ?NNPi+1 word candiceVBG?JJ i word woreNNZd;INDlWP(\VBDL7A`e@VBPHzGi-1 tag+i word JJ mayorNNSq= ףpNN +?JJ$C˿i-1 tag+i word NNS regionsNNSףp= ?VBPףp= i-1 tag+i word RB discountedVBN rh?JJ rhi-1 tag+i word TO protestVBS㥛?NNS㥛i+2 word trackedJJZd;?NNZd;i-1 tag+i word NN belowRBJ +JJbX9INʡE?i-1 tag+i word VBP coveredJJS㥛ܿVBNS㥛?i-2 word accuratelyJJMb?NNMbi-1 tag+i word NNP centreNNPS7A`NNP7A`?i-1 tag+i word -START- tdkNNDlNNPDl?i-1 tag+i word CC overseesVBZ rh?JJR rhi+1 word insideJJ%CDTPn?RBDlNN(\?VBDS?CCPn i word lidNNbX9?JJbX9i word supermarketsVBZ~jtNNS~jt?i-1 tag+i word VBG phasedVBN`"VBD`"@i-1 tag+i word IN rallyNNDl@NNPDli-1 tag+i word TO giveJJ$CVB$C?!i-1 tag+i word NN counterculturalJJ+?NNP+i-1 word baringNNPSv@NNPvi-2 word burfordJJ&1?VBNʡENNPni-2 word uncertainVBNMbJJMb? i-1 word enteJJ'1ZNNP'1Z?i word splittingVBGNNʡE@VB-i word magnificentJJsh|??NNsh|?i+2 word windshieldsRBrh|׿INrh|?VBZ~jtNNS~jt?i+1 word employedNNPS-JJR-?i-1 tag+i word VBN elusiveJJS?NNSi-1 tag+i word PRP$ spareJJ%C?NN%C i word emceeNNS`"NN`"?i-1 tag+i word , franklyRB^I +?JJSNNS㥛 i suffix hunNNMbNNPMb?i-1 tag+i word IN inflatedVBNzGJJMbX9?VBDK7?i-1 tag+i word NN scorekeepingVBG#~jNN#~j?i-1 tag+i word -START- toTOx&?RBtVNNP-ƿi-2 word effectsJJ{Gzt?NN{Gzt i-1 word coldNNI +?VBDNbX9VBNZd;?WDTbX9JJ ףp= NNSʡEi+2 word dealtVBZ +POS +?i-1 tag+i word VBD soaringVBG +?JJ +i+1 word charitiesVBG"~?NN"~i-1 tag+i word , reportsVBZ +?NNS +i+1 word periodsNNP}?5^IVB/$NNX9v@RBR?5^I JJRE?JJV-߿NNSoʡi-1 tag+i word , accountedVBNPnVBDPn?i word resignationsNNPSQݿNNSQ?i word eckhardNN`"NNP`"?i word stewartNNx&1NNPx&1?NNPSCli+1 suffix ogiINV-?NNPV-i word logicalJJ +?RBbX9NN(\տi+2 word rodgersNNSx&?NNx&i+1 suffix den PRP+?DTQ?PRP$+NNPV-?VB}?5^I?FWx&1VBDzG?VBNuV?VBP333333JJ)\(?INQNNPS333333NNQi+2 word lathesVBPJ +VBGJ +?i-2 word guaranteeNN~jt?JJ~jtJJRQ롿 i suffix die JJM?VBN+CDx&1VBPOn?LSV-RBlNNS"~jNNP9v@VB;On?RP9vNNGz׿i-2 word rarelyJJ&1NNSQ?NN-?RPERB!rhi-2 word readsJJ}?5^INNP}?5^I?i-2 word davidNNPSp= ף?NNV-JJZd;?RBZd;NNP/$ſi+1 word provostJJPn?NNKVB|?5^i-1 tag+i word NNS causedVBNMڿVBDM?i-1 word forcesVBDy&1VBNy&1?POS-VBPm?RBoʡ?IN{GzRPCl˿JJV-?i-1 word clearlyVBNzGVBPZd;O@JJ-?INw/VBZ^I +?VB`"VBGCl?VBDʡE i-1 tag PDTDT\(\?VBrh|RBCl?NNv/?VBPV-?JJ rh?INMbXi-2 word frescaJJRʡE?NNʡEi-1 tag+i word JJ chargesNNSS?VBDS i word pashasNNS(\?NN(\i-1 tag+i word `` singinVBGA`"@JJffffffNNZd;OտNNPX9vi-2 word aprilVBNjtVBDjt? i+2 word tassVBNL7A`@VBDL7A`i-1 word beginsVBGZd;O?NNJJK7i-1 tag+i word NNS grumbleVBP+@NN+JJ(\ؿVB-i-1 tag+i word CC persistentJJp= ף?NNp= ף i word 'emRB`"NNPS㥛?JJDlVBD(\POSjtֿCDSPRPCl@ i word slimyVB㥛 JJ㥛 ? i+2 word cornVBZZd;NNSV-?NNPp= ףVBQNNK7?VBN㥛 ڿVBP'1ZJJ333333?i word outspokenVBNuVͿJJ1Zd?NN(\i+2 word expectJJ= ףp=VBDClVBMbVBPCl?NN= ףp=?i-1 tag+i word IN listedVBN(\JJ(\?i-1 tag+i word CC convertingVBGtV?NNtVi-1 tag+i word IN recommendedNNMJJM?i+2 word autobiographyNNPS/$NNP/$? i word vacantJJl?NNli-2 word scandinaviaJJI +?NNI + i word bushNNZd;ONNPZd;O?i-1 tag+i word IN overburdenedVBNxJJx?i-1 tag+i word CC drillVBn@VBPX9vNNA`"i-1 tag+i word WP hateVBPx?JJxi+2 word symbolNNPHzG?NNPSHzGѿi-1 tag+i word DT buyNN5^I ?JJ5^I i word virginiaNN rhJJQNNPDl@i-1 tag+i word WRB sellNNSFxJJsh|??NNuVi-1 word whirringJJʡE?NNʡEi word pricingsVBZS㥛NNSS㥛?i-1 word substitutingRB/$?CC/$޿NN(\?JJ(\i word fattenedVBNtVVBDtV?i-1 tag+i word JJ discretionaryJJS㥛?NNS㥛i-1 tag+i word PRP getVB~jt?VBPGz?RBMbX9VBD1Zdi word excitedVBNd;OJJCl?VBDjti-1 word portfoliosWDTS?INSi+1 suffix kenVBJ +?JJSd;ORBV-@NNSPn?NNQֿPOSMbX9VBZh|?5?NNPHzG?JJL7A`VBDSCC(\VBNINV-?DT$CRBSS㥛?VBP$C?i+1 word adamsJJRQNNZd;ONNPV-?i+2 word quartersJJT㥛 @NN +NNP$CVBGV- i word softRBSNNSzGNNPQVB333333JJ-@NN"~FW rhտJJR-i-1 tag+i word CC turnsVBZ'1Z?NNS'1ZĿi-1 tag+i word RB parentsVBZ9vNNS+?JJ9vҿi-2 word hindemithJJ+?NN+i-1 tag+i word TO igniteVBy&1?JJy&1i-1 word drawingNNSMbNNMb?i word negotiatorsNNS+?VBZ+i-1 tag+i word TO chapterNNP ףp= VBMbXNNCl@i word soybeanNNʡE6@JJo!NNPp= ףi word prevailingJJCl?NN"~jܿVBGbX9i-1 suffix autJJ?5^I @NNMbX9RBZd;O߿i-1 word terrorismRBoʡ?NNoʡݿi+1 suffix ezeNNsh|? @JJy&1NNPGzi word applaudingVBGsh|??RBsh|?i+2 word engineNNPZd;VBZS㥛POSS㥛?JJZd;?i+1 word pickensNNPx&1?NNPSx&1̿i-1 tag+i word '' helpedVBNffffffֿVBDffffff?i+1 word seizeVB(\RB(\?i-2 word nazionaleNN&1?NNP&1i-1 tag+i word NNS resembleVB-޿VBP-?i-2 word deductionsVBZ1ZdNNS1Zd?JJrh|?NNrh|i+1 word bullishJJlVBOnVBPOn?RBl?i+1 word satisfactoryJJR㥛 RBR㥛 @i word precisionJJEؿNNS333333NN+?i-1 tag+i word POS tightJJZd;?NNy&1RB/$ۿi-1 tag+i word PRP$ hotelNNh|?5?JJh|?5i-2 word terminatedVBE?VBP/$JJQi-2 word soundNNSEVBPE? i word strifeNNS#~jNN#~j?i-1 tag+i word CC subsequentJJ/$?NN/$ i word crowdsVBZ(\?VB(\ i-1 tag+i word RBS sophisticatedVBN{GzJJ{Gz?i-1 word paralyzedNNrh|JJrh|?i+1 word countriesNNPGz VBV-VBG|?5^?NNX9v?VBDx?JJZd;O?i word poisoningVBGnʿNNn?i+2 word advisoryJJT㥛 ?NNPT㥛 i suffix 955NNSClCDCl?i+2 word rainbowINX9vNNPX9v@i word directionlessJJ$C?NN$Cۿi-1 word beganJJsh|??RBRzGNNuVVBGX9v@RBzG?i-1 tag+i word IN masqueradingNNw/VBGw/?i-2 word reactionINS?RBSJJzG?VBDzGi-1 tag+i word , namedVBNI +?JJClVBDx&i-1 tag+i word RP lessJJRMbX9?RBRMbX9i-1 word airbusNNPA`"?NNPS1ZdNN(\JJL7A`CDOn?i-1 tag+i word JJ cooperativeJJS?NNSi-1 tag+i word DT mobileJJ{Gz@NNK7AFW7A`ڿi-1 tag+i word VB preciselyVBSRBS?i-1 tag+i word DT aDTK7A`NNPS~jtNNS㥻?NNPy&1?i+2 word reviewNNPv@NNPS&1RP#~j?NN+VBDsh|??RB#~jVBZsh|?NNSMi+1 word moderatelyVBDx&?VBNx&i-2 word conceptsNNV-?JJV- i-1 word sankRBRn?RBA`"ۿJJR= ףp=?i+2 word dynamicsVBD~jt?JJ~jti-1 tag+i word IN a.NNV-?NNPV- i suffix rueNNPRQJJDl@NNx&1ܿi-1 tag+i word DT abstractJJx&?NNx&ٿi+2 word firmsRPS?NNx VBGV-?VBS㥛@JJl?WDT"~jNNPT㥛 JJR-?RBRQ?IN)\(?DTlVBZ~jt?NNPSrh|RBR-޿NNS~jtؿi-1 tag+i word JJ systemsJJV-NNPV-? i word allyVB-?NNGz@RBK7 i-1 tag+i word TO switchVB~jt?JJ~jti word talkingVBGx&1?NNPx&1̿i-1 tag+i word VBD increasedJJjtVBNjt?i-2 word cementNN(\?VBD(\i-1 tag+i word -START- beechNNuVݿNNPuV?i+1 word teacherNNS'1Z?NN'1Z i word giantVBtVNNOn?VBP&1WDTZd;OJJoʡ@NNSuVNNP? i word j.c.VB ףp= VBNKNNP^I +? i+1 word readNNS"~NNjt?JJDli-1 tag+i word NN bulbNNSClѿNNCl?i+1 word inclinedRBRp= ף?JJRp= ףi-1 tag+i word NNS liesVBZ333333?NNS333333i-2 word poolsNNE?JJEi+1 suffix sadNNSRBS?i-1 word marxistNNT㥛 ?NNPT㥛 i+2 word endorsedNN~jt?VBD~jt i word fadNNS㥛 NN㥛 ?i-1 tag+i word JJ insulinNNSNbX9NNNbX9?i tag+i-2 tag $ DTJJ= ףp=ʿNN^I +CDzG?i-1 tag+i word CC resultedJJK7VBDK7? i+1 word aounJJHzG?NNHzGi-1 tag+i word RB somedayRBS?NNZd;OVBN㥛 i+2 word usaDT/$ÿWDTmVBN-?INQ?NNS-i-1 tag+i word PRP knownRB㥛 VBNHzG?JJX9v׿i+2 word disarrayNNSCl?NNCli-2 word assistingJJSRQRBRMb?NN?5^I ڿi word prototypeNN/$@JJKNNSX9vi-1 tag+i word NN pictureNN`"?JJ`"i word organismsNNSRQ?VBNnNNSi-1 tag+i word -START- hassanRB%CNNP%C? i suffix pay VBDl)@JJCl NNSbX9RBRQVBZ|?5^NNV-@VBD7A`CC rhVBNQVBPV-@i word announcerNNsh|??RBSNNP^I + i word morganNN1ZdۿNNP1Zd?i+2 word discountingVBZDlNNSDl?JJd;O?NNd;O޿i-1 tag+i word JJ hybridJJ$C@NN$C i word thinksVBZq= ף@INGzNNS|?5^NNEVBD(\ i pref1 WWDTx&@DTK7 NNSB`"[PRPRQVB~jtWRBx&1@VBDS?WPK7@NNlVBNjtMDB`" @JJR#~j?VBP5^I ۿVBZSRBR!rhINS @SYMMbXUHMbX@NNPA`'@FWCl߿CCxVBGClNNPS333333@JJS|?5^JJjtPDTSCDPnLSbX9ֿRBʡERBSK7?EXy&1i+2 word pakistanVBNʡE?JJʡEi-1 tag+i word JJ businesslikeJJy&1?NN+ۿIN\(\i word service JJR;OnVBPffffffRBtVNNS +VBPn?NNn @VBNףp= JJA`" VBDףp= i-1 tag+i word IN tinyNNQNNSnJJ-@i word dialogueNNS/$NNh|?5@JJ9vi-1 tag+i word CC brazenVBZV-׿VBV-?i+2 word floodNNPSClRPʡE?NNCl?RBʡEi word teemingVBGtV?NNffffffJJʡEi-1 tag+i word NN structuredJJCl?VBDCli+2 word summitNNQ?CDoʡNNPMbX9VBGQٿJJl?i-1 tag+i word JJR shapeJJ%CNN%C?i-1 tag+i word DT secondRBPn?VBZ rhNNS!rhNNPv?JJףp= @NNQi-1 word neighboursVBZGz?NNSGz%i-1 tag+i word -START- disappointmentNNn?NNPni-1 tag+i word , punchingVBG+?VBD+ i-1 word stay VBDˡEVBNˡE?RBtV @IN'1Z@VBG+RPA`"JJPn?NNI +VBp= ףi word findingsJJ)\(NNS)\(?i-1 tag+i word JJ patternNN%C?JJ%Ci+1 suffix ccaNNQNNPQ?i-1 word clammyNNS!rh?VBZ!rhi-1 tag+i word , pianoNNx?JJxi word liberalsNNPSV-ǿNNSV-?i-2 word crowdsNNCl?JJCli-1 tag+i word `` prematureJJK7A@VBPzGڿNNKRBRQi-1 word surrenderNNSNbX9?VBZNbX9i-1 tag+i word JJ iraNNX9vNNPX9v? i word idahoVBnNNMbXNNP rh? i word sexNNX9@VBNvRBGzNNSK7ANNPh|?5VBFxJJ +޿i-1 suffix ianVBSNNQ@VBZQ?VBGx&?VBDmVBNFxɿVBPuVJJ(\NNPSMb@RBNNPM@JJRSWDTSNNS5^I i+1 word attractionsVBZ rh?NNS rhi+1 word alliesJJGz@NNp= ףNNPףp= i+1 word theirCDRQCCS?FWoʡWDT&1RBGzINbX9?VBZMbVBDm?NNSʡEPOS(\@VBNV-NNPmPDT"@RPS?JJ/$VBP+ @VBy&1@NNuVVBGl@DTMҿi-1 tag+i word NNP khanNNP-?JJ-i-1 tag+i word VB demandRPʡENNʡE?i-2 word jettisoningJJZd;O?NNZd;O i suffix as IN&@RPQVBZQRBM@NNK7VBDSVBNʡEJJoʡVBvVBGNNSʡEVBPSi-1 word prevailRPHzGINHzG?i-1 tag+i word CC sayVB rh?VBP rhi-1 tag+i word NNP thinksVBZB`"?INB`"i-2 word slowlyJJRK7JJoʡ?VBClRBCl?NNoʡRBRK7?i-1 tag+i word VB failedVBN!rh?VBD!rhi-1 tag+i word IN moderateJJ ףp= ?NN ףp= i+2 word vanguardNNPSL7A`?NNPL7A`i-2 word matherNN"~?JJ"~ڿNNPS?VBGSi-1 tag+i word VB stereoJJzG?NNzGi-1 tag+i word IN backpedalingVBGZd;O?NNZd;Oi-1 tag+i word PRP threatenedVBPX9vVBDX9v?i-1 tag+i word DT silverNNMJJK7?RBT㥛 !i-1 tag+i word PRP$ undergraduateJJZd;NNZd;?i-2 word summitJJCl?WDTClVBNClNNClVBDNbX9?i+2 word nakedJJn?NNffffffCD|?5^ڿi-1 tag+i word DT idleJJ!rh?NN!rhi-1 tag+i word IN limitedVBN/$?JJ/$ſi-1 tag+i word VBD openVB+JJ&1@RBEi+2 word emergingVBZ"~?POS"~i word pursuingJJQVBGQ?i-1 tag+i word DT mediterraneanJJ ףp= NNP ףp= ?i+2 word commerceNNP&1ڿNNPSh|?5?NNS\(\i+2 word spreadsRBx&1INx&1?i-1 tag+i word IN parentsNNPSV-NNS㥛 NNPx&1? i word phraseNN)\(?JJ)\(̿i+1 suffix guyJJSS?JJ^I +?RBSSRBRNN"~j?i-1 tag+i word DT closedVBN|?5^JJ|?5^?i-1 word thierryNNPv?IN\(\FW +i-2 word devarioDTGzINGz?i-1 word attorneysNNGzVBDy&1?VBNx&?VBPZd;?VBZMb?NNSMbi-2 word happensDT(\?RB(\i-1 tag+i word NN woreNNZd;VBDZd;?i-1 tag+i word NN tunnelNNSV-NNV-?i word sentencesVBZ(\NNS(\?i-1 tag+i word NN finesVBZx&ѿNNSx&?i+2 word goldbergNNOnNNPOn?i+1 suffix edtRBx?JJlNNпi-1 tag+i word -START- essarNNPuV?CDuVi word mildewyJJjt?NNjti-1 tag+i word VBZ winVBPV-VBV-?i-1 tag+i word NN musiciansVBZnNNSn?i-1 suffix abmNNGz?VBDGzi word uncoveringVBGB`"?NNB`"i word cashierJJRJ +NNJ +?i word turmoilNNS~jtNNPn@RBA`"i-1 tag+i word NNP concernsNNS~jtVBZ~jt? i word handyJJ9v@NNMVBNI +i-1 tag+i word CC reducedJJV- @VBDQVBRQVBN`"i-1 tag+i word RB treatINq= ףpݿVBq= ףp?NNMb?JJMbпi+1 suffix cesWDTX9v?NN~jt@FW#~jNNPFxJJSjt?NNSʡE?JJRm?UH"~RB-RBR-VBDGz?VBPZd;VBZClRPsh|??PRPRQINV-NNPSMb?VBGX9vVBN/$JJ~jt@DTMbVB9v? i word queuesNNS5^I ?NN5^I ˿i-1 word soundVB rhNNS/$ٿJJRQ@NNIN333333?i+1 word autumnsJJV-?RBV-i-1 tag+i word PRP$ u.k.NNOnNNPOn?i-1 tag+i word VBP lateJJtV?RBtVi-2 word assertJJQ롿NNQ? i+1 word coolVBGMbX9?NNPMbX9i-1 tag+i word DT quakeNNoʡ?NNPoʡi-1 tag+i word `` sugarNNP#~j?NN#~ji+2 word tapestriesNN9v?JJ9vi-1 tag+i word VBZ keepVBL7A`?JJL7A`i word narratorNNoʡ?JJoʡտi-2 word machineryJJʡEVBD5^I ?VB;OnNNSK?NNV- i+2 word pastNN?VBNy&1RB%CԿNNP rhݿNNPSDlJJClVBDtV?PDT{GzINPn@DTK7?VBx&1?RPL7A`JJS{Gz?CDK7Ai-1 tag+i word RBS metalNNJ +?JJJ +i-1 word generationRBw/INM?VBD&1?WDTzG?NNZd;i tag+i-2 tag RB RBSVBV-RBV-?VBD ףp= ?VBN;OnҿJJK7?NNSV-i-1 word chickenNNSjtNNjt? i word nancyNNQNNPQ?i+1 suffix lesVBNx&1RP?5^I RB9vVBQѿCDy&1MDmNNPSMbX9VBG|?5^VBDX9v?VBP/$?JJx&@VBZ&1?WDTx&1@NNPw/RBSʡERBRp= ףJJS/$?DTV-NNGz@FWCl߿NNST㥛 ?PDT rhտINGz?JJR/$?i-1 tag+i word CC provedJJ#~j?VBD!rhVBNJ +ٿi-2 word rapidNNI +?JJI +i-2 word brakesVBuV?NNSʡENNףp= i-1 tag+i word CC smellVB333333VBPK7AؿNNS?i+1 suffix hadVB$C?NNPSDl?VBG;OnJJrh|MD)\(RB?PDTX9vVBP'1ZPRPx?VBZ|?5^ NNSx&@CDEȿNNQ@VBDT㥛 JJSA`"POSMbX9?VBNn?WDT333333@IN|?5^NNPDl?i-2 word intelogicJJR/$VBN/$?i+2 word fieldsRB"~@IN"~ i word peakNNSoʡNN/$ƿJJ/$?i-1 tag+i word -START- welcomeJJV-ڿNNP(\VB5^I @VBNCli-1 tag+i word NNP woodwindRP+NN+?i+2 word woodchucksVBP/$?NNSGzNNSi+1 word conceptsVBPV-JJp= ף?NNPZd;Oi-2 word paintedNNS(\?VBNtVNN(\VBDtV?i-1 tag+i word IN disputeDT1ZdNN1Zd?i word unusuallyJJzGNN+RB;On@i+2 word prematurelyJJ~jt?NN~jtÿi+2 word rewardsNNMbVBG+?JJZd;i-1 word steepNNSM?NNMi word changedJJoʡNNS7A`VBNh|?5?NNoʡVBDoʡ?i tag+i-2 tag NN PRP$JJS/$WDT+NNP|?5^NNPS㥛 ?DT@NNSRQȿVBn?VBZHzG?NN"~VBDx&1@POSV-?RBS㥛?VBGsh|?տVBN(\JJRBR/$?CD-JJRoʡݿINJ +?FW#~jVBPI +?RPm?i word bolsteredVBNK7A?JJK7Ai word bouncingVBGJ +?NNJ +i-2 word until POS|?5^CDS㥛пJJnVBZ|?5^?NN~jtRBˡE?VBDM?VBP`"?INv/NNS{Gz?JJR/$NNPSK7ѿ i word jaysVBZB`"ٿNNPSHzG?NNPoʡi-1 tag+i word DT caterpillarJJMbXNNK7A`NNP\(\@i-1 tag+i word NNS terminalNN r?JJ r i word duskNN+?JJ+i+1 suffix ggsVBN+?CD"~jJJV-NNSh|?5NNPI +?NN&1?i word minorityNNNNP?i-1 suffix ntiVBDMbX9?INMbX9ܿi-1 tag+i word DT commercialJJ~jtNNCl@NNP/$ӿi-1 tag+i word RB raggedVBN7A`JJ7A`?i word torturedJJMbX?VBNMbXi-1 tag+i word IN infamousJJ\(\?VBD\(\i-1 tag+i word VBD exportVB"~ʿNN"~?i-1 tag+i word JJ attractionsNNSK7A?NNK7Ai word consistingVBG(\ @NN(\ i-1 tag+i word NNP seeksVBZuV@JJw/VBD"~i-2 word become NNPS-?RBK7RBR&1@JJ@NN|?5^VBNjtINl?NNS-JJRHzGNNP(\i-1 tag+i word JJ songNNS~jtNN~jt? i word comedyVBZClNNSˡENN/$ @JJQVBDp= ףؿi-2 word siftedVBNʡE?JJʡE i word edgeNNPSbX9NNrh|?RBlJJx&1NNPbX9?i+1 word failureVBGV-JJV-?i-1 tag+i word : outshinesVBZCl?INZd;i-1 tag+i word NNP concertosNNS?NNZd;OǿVBPGzi-2 word polyesterNNrh|?JJrh|i-1 tag+i word -START- lewisNNlNNPl?i+1 word inningJJ+?NN+ۿi word surroundingVBGbX9@NN~jtJJʡE i word burdenJJ㥛 VBZd;VBPK7A`NNS(\NNS%@i-2 word hospitalVBZʡE?NN/$?JJ/$NNPʡEi word unwarrantedVBNnJJʡE @VBDtVi-1 tag+i word NN criminalNNE?JJEп i word baronNNP r?IN ri+1 word sportJJ1ZdNNP1Zd?i word everywhereRBn@JJlVBD+VBP"~VBN^I +i-1 tag+i word -START- greeceNNS-NNP-?i+2 word prospectVBʡEVBP/$?NNM i-2 word coolRB)\(?IN)\(i-1 word earnings VB(\?NNPSw/VBNԿWDT5^I ?IN/$VBZQNNPV-NNV@VBD?VBP`"NNSx&1@i-1 tag+i word VB passageNNNbX9?VBNbX9ؿi-1 tag+i word DT considerablyRBoʡ@NNoʡi-1 tag+i word -START- foreignJJʡE@NNK7ANNPoʡi-1 tag+i word `` establishmentFWNN?i-1 word attributesVBN+IN rhDTB`"@WDTp= ףؿi+2 word intellectualsINS㥛?VBPK7?PDTK7WDTS㥛i+1 word chapsNNSʡEJJʡE?i-1 tag+i word VBP welfareVBPK7NNsh|??JJZd;Oi-1 tag+i word VBZ correspondedJJffffffVBDffffff?i+2 word prizmVBZjt?NNPjt i word proFW{Gz@NNSPnJJ~jt@NN^I +NNPli-1 tag+i word IN dipsJJuVNNSuV?i-1 tag+i word , plansVBZ ףp= @NNSGzVBNi-1 word presentJJ/$?IN1ZdۿVBZV-DTQNNS+?NNGzWDT+?i-1 tag+i word POS productiveJJS㥛?NNS㥛i-1 tag+i word NN stemmingVBG\(\?NN/$տNNPi+1 word fittingJJ%C?NNS%Ci-1 word policyholdersVBZMb`VBK7A?NNx&1i-1 tag+i word JJ needsVBZ'1Z?NNS'1Zi-1 tag+i word CC georgiaNNPSMbXNNPMbX?i tag+i-2 tag VB JJ JJ)\(VBGJ +?JJR`"WDTSINS?VBbX9?RP r?RB5^I ?NNNbX9 i suffix omaNNP%C@VB/$NNPSSNNZd;?JJ= ףp=NNSl¿ i-2 word carrVBG-?NN- i word visitsVBZ%C?VBPFxNNS9v?NNK7NNPffffffi+1 word assumeVBV-߿PRPףp= ?POSV-i-1 tag+i word POS lurchingVBGp= ף?NNp= ףi-1 tag+i word VBD bornVBN㥛 ?RB㥛 i suffix wdyNNK7A`RBh|?5VBZ ףp= JJZd;?i-1 suffix silVBZw/NNSw/?NNA`"?JJA`"ۿi+1 word improperVBNJJ?i-1 word conditionsVBD(\?VBN(\VBP rh?IN rVBZ%CNN/$i-1 tag+i word POS longstandingJJv?NNvi-1 tag+i word FW moreJJRףp= ?RBRףp= i-2 word vaccineVBG(\JJ333333?NNQ?i-1 tag+i word RB aggravateVBPQ?VBQi-1 tag+i word IN canadianJJrh|NNPrh|?i+2 word eccentricPRP$RQPRPRQ?i+2 word minimumVBGףp= ?JJףp= i-1 tag+i word VB mandatoryPRPQJJQ?i-1 suffix kyoVBPx&1JJ/$?NNS'1Z?NNPV-?NNPSףp= RBˡENNx&1?CD$C i word okla.CCʡENNPʡE?i-2 word warnsNN rhNNP rh?i+2 word privilegeJJx&1?NNx&1ȿi-2 word extrusionsVBG5^I NN5^I ?i+1 word specializedRB +VBD rhVBNzGҿVBPJJX9vIN +?VBm?i-1 suffix veyDTjt?NNS(\NNQVBDQ?VBNSINjtVBZ r? i suffix RUGVBrh|NNrh|?i tag+i-2 tag IN -START-FWPnпWDT{GzVBGK7WP{Gz?PRP= ףp=NNPI +@CCxRBR/$ѿINjtJJsh|??PDTK@EXd;OVBP9vʿRBSʡE?NNPSrh|?JJRQ?PRP$)\(?VBZS㥛NN㥛 VBDy&1VB\(\JJSw/?DTxCDn?VBN/$@RBA`"@NNSsh|?i-1 tag+i word NNS selveVBPX9vNNPX9v?i+2 word masterpieceMD$C?NNP$Ci+1 word beyondNNPn?JJK׿INKVBZZd;O?NNSsh|?NNPM?RBZd;?i-1 tag+i word `` everybodyNNPMbNNSMbNNGz?i-1 word revolutionaryNNPGzNNPSPn?NNS +?JJOn?NN +i-1 tag+i word PRP doubtVBQֿVBP5^I ?VBD-i-1 word premiumsINd;O?RB;On?JJK7VBDQi-2 word uncommonVBNuVVBDuV? i word tanksCD-NNS+@NNv/IN$CVBZMi-1 tag+i word , behindIN333333?VBPX9v޿RB^I + i+2 word secINX9v?VBDVBPWDTQVBN?i-1 tag+i word PRP$ behalfNNX9v?JJX9vο i-1 word theVBG?VBP|?5^NN;On @PRPClNNPK7A@VBK7RBRQ?VBDQVBNx&1?NNSQ@CC"~RBSK7A`?CD;On?MD~jtWDTuVJJ1Zd@VBZˡE RBL7A`?NNPS#~j<@FWMb?PDToʡINJJSX9v @JJRoʡ?i-1 tag+i word VBN ratesNNStVNNP333333?NNPSOn?i+2 word aftereffectsVBGʡE?JJʡEi word overlookVBP?VBDпi-1 word gingerlyVBG%C?JJ%Ci-1 tag+i word DT sellingVBGKNN~jt@JJʡEi-1 tag+i word DT intercompanyNN(\?JJ(\i-1 tag+i word DT cleanerNN'1ZJJRGz?JJ+i+1 suffix egyINClDTCl?VBGS㥫RBQNNsh|??WP{GzWDT{Gz?JJffffff?i-2 word discouragesNN?JJi-1 tag+i word IN zurichNN5^I NNP5^I ?i-1 tag+i word DT textileJJClNNCl?i-1 tag+i word NNP readyJJ!rhNNP!rh?i-1 tag+i word TO resignVBZd;O?NNZd;O i word later VBDmRBRK7A @JJsh|?@VBZ/$NNSJJRPnVB{GzNNV-VBPMbX9INClǿNNPZd;RBS㥛D)@VBN^I +i-2 word preferredRBRQINRQ?VBGvNNv?i+2 word importsJJ!rhܿNNPQ VBNv?NNSQ?RBQ@i-1 tag+i word TO playVBh|?5?JJh|?5i+1 suffix hanVBP/$RPRQJJ&1JJS?5^I ?JJR{Gz@RBB`"?DTK7ѿCDL7A`?NNP ףp= ?VBw/NNPSmNNS?CCGzEXp= ףNNSCl?RBR/$?VBNq= ףp?VBZZd;Oi-1 tag+i word NNP laboratoriesNNPS9v@NNSX9vNNP㥛 i tag+i-2 tag PRP$ RPNNFxٿVBNI +JJm?NNStV?NNPMbX9ĿVBGw/?i+2 word screenRPjtINjt?i-1 tag+i word VBP triedVBNV-?NNV-i-2 word surveyJJy&1?VBGMbVBNy&1NNMb?i+2 word enthusiastsNN"~ʿNNP"~?i-1 tag+i word , unhinderedVBNQJJQ?i-2 word plasticVBNrh|?VBDrh|i-1 tag+i word JJ liesVBZS?NNSSi+2 word realignVBZx&1NNSx&1?i-1 tag+i word NNP basinNNʡENNPʡE?i-1 word jumpedRBZd;INZd;? i+1 suffix h.JJxNNPx? i-1 word amidVBN̿JJRDlJJʡE@INnNNST㥛 ?VBGx&1NN|?5^?VBD+i-1 tag+i word VBD earlyJJ^I +?RBRDlRBy&1̿ i+1 word u.s.RP;On?INK7?VBx?VBN?5^I JJ333333?JJRzG?VBP)\(NNPK7?CD?5^I NNSV-VBG}?5^I?VBDjt?JJS㥛 ?RBRxRBS ףp= VBZV-?RBףp= NN+wFW9vҿi-1 word rankedJJn@NNPoʡNNS^I +$ClۿRBK7A`տNN9v?CDFx i-2 word fhaNN333333?RBtV?INtV޿NNS333333i+2 word eddieRB= ףp=VB+NNv?i-2 word building NNPS{GzĿNNMbX9@JJRS㥛EXClNNP/$?CDSVBQJJbX9RBRS㥛?VBNMbXѿRB~jtx?i-1 tag+i word RBR pertinentJJZd;O?NNZd;Oi-1 tag+i word NN inventoriesVBZZd;ONNSZd;O?i-1 tag+i word -START- southamNNPS}?5^INN(\NNPNbX9?i-1 tag+i word NNS rightVBMRB(\@VBN~jtJJ7A`VBDQi word carryingNNx&1JJK7VBG9v?i word overcomesVBZV-?VBPV-i-1 tag+i word DT grapevineNNv/?JJv/i+2 word eruptNN^I +?JJ^I +i-1 tag+i word -START- considerINzGNNPuVVB/$@NNV-VBPK7A`JJ i word unpaidJJףp= ?NNQVBDx&1i-1 tag+i word RB suspiciousRB$CJJ$C?i+1 suffix unyNNSKJJ+RBNbX9?VBZK?VBPzG?i-2 word fleetVBGNbX9?JJNbX9ؿi-1 tag+i word DT lotJJ$C NNQ?RBRFxRB~jt @FWA`" i+2 word u.n.VBNV-?VBDV-i+2 word causedNNˡE?CDSJJuV?INOn?VBZK7DTOnNNSZd;ORB%C?i-1 suffix hatDTy&1?POSKVBDS㥛@VBNx&WPQ˿VBl?PDTjt?RBRClNNPSI +޿PRP$+?CDjtVBZQk@JJRV-?JJ +?NNPS?RBSrh|PRPX9vNNS"~jVBGX9v?NNGzֿJJSS?WDTS㥛ԿCCrh|EX#~j?INMVBPffffff@RBZd;OWRB7A`i-1 tag+i word CC argosystemsVBZrh|߿NNPS!rh?NNP|?5^ҿi-1 tag+i word JJ handsNNSV-?NNV-i-1 word taking VBT㥛 JJR1ZdӿRBQkINClNNPKRPlq@JJX9v @NN(\?RBRrh|?i-1 tag+i word JJ consortiaNNS㥛 ڿNN㥛 ?i word fuzzierJJRS㥛?JJS㥛ܿi-1 tag+i word RBR effectivelyRBV-?JJV-i-1 tag+i word , askedVBNv/ͿVBDv/?i-1 tag+i word NN satellitesNNS-?NN-˿ i word frenchNNPSZd;O?$ rhNNZd;_JJnJ"@NNPK7A` VBp= ףi-1 tag+i word NNP markkaFW"~?NNP"~ i+2 word petVBx&1?NNx&1i-1 suffix temJJ rh@RBRQ?WDTM?VBZjt?NNPSx&1пVBNQ?IN+VBGp= ף?NNPZd;OMDsh|?ſRPx&?CC/$VBP ףp= RBQVBMb`?VBD$C?DT?NNSnNNHzG i word emphasizingJJԿVBG?i-1 tag+i word IN threemonthNNS(\JJ(\?i-1 word representativesVBPT㥛 пVBDT㥛 ?i-1 tag+i word NN billingNNʡE?VBGʡEi-1 tag+i word RB actedVBN +?VBD +i-1 tag+i word DT separatelyRB rh?NN rhi-2 word hammackVBG rh?JJx&1?NNʡEi-1 tag+i word DT backstopDTx&NNx&?i-2 word bancorpVBGS㥛?NNS㥛i+2 word servesWDT(\ſIN(\? i word whenJJ9vNNPClWRB|?5^@i-1 word reflectingJJK7AVBGx&1?NN?RBRd;O޿VBN{Gz?JJRd;O?i-1 tag+i word WDT representVBZv/VBPv/?i+2 word antiviralRBMb?JJMbi+1 word wiretapJJS㥛?NNPCl˿CD(\ i suffix tupNNSMNN`"?JJGzi+2 word emigrationNNQ?JJQi-1 tag+i word JJ weatherWDTbX9NNbX9?i-1 tag+i word NNP respectNN= ףp=?NNP= ףp=i-1 tag+i word , suggestedVBNMbJJ!rhVBD+?i-1 tag+i word TO inventoryVB5^I NN5^I ?i-1 tag+i word DT gentleJJv?NNvi+1 word institutions VBClNNPS^I +VBGp= ףؿNN/$@JJxINx&1?RBx&1CD?NNP㥛 ?i-1 tag+i word IN mainlandJJsh|??NN7A`NNSSi-1 tag+i word JJ deductibleJJ +?NN +i tag+i-2 tag WDT VBPNNS^I +߿JJZd;O?NNZd;O׿VBZuV?VBPMb i-1 tag+i word CD unconsolidatedJJףp= ?VBDףp= i-2 word taxedVB= ףp=RBNbX9WPFx?i+2 word jasmineJJRZd;ONNZd;O? i word vetoesVBZ;OnNNS;On?i+1 word tackedNNZd;OݿNNPZd;O?i-1 tag+i word PRP$ laboratoryNNCl?JJCli+1 word barclayNNP1ZdVBPp= ף?VBD-ӿi-1 tag+i word NN launderersNNSq= ףp?VBNq= ףpi-1 tag+i word VB otherwiseRBzG?NNzGi+1 suffix leyJJ rh?NNP(\?NNPSX9vRBMbNNsh|??VBD^I +?CCSVBNRQi-1 tag+i word NNS placeVBPZd;O?NNZd;Oi-2 word dependencyJJCl?NNCli-1 tag+i word `` productivityNNbX9NNPbX9@i word latticeNNd;O?RBd;Oοi-1 tag+i word DT blemishJJV-NNV-? i pref1 mJJCl˿VB!rh?IN㥛 EXX9vPRP$1ZdDTh|?5RPB`"POSnPRP~jt?UHbX9ֿFWT㥛 ?RBQ?RBSNbX94@CD +MD?5^I ?VBNCl?VBP~jtRBR/$@JJSʡE@VBGMbXVBDn?NNS(\ @CC`"?VBZB`"?NNQ@NNPMb#NNPS&1JJR rh?i-1 tag+i word , hobosNNSMbX9?VBN㥛 JJS㥛PRPMbi-2 word counterterrorismCC|?5^NNP|?5^?i word preparingVBG&1?JJ&1i-2 word qualifiesJJFx?NN}?5^ICD-i+2 word regionNNSV-JJrh|ϿNNPZd;?i-1 word bitchVBP-NN-?i word islanderNNףp= NNPףp= ?i-1 word knownDTB`"?VBNV-RBtVIN1Zd?i+1 suffix dm.VBNB`"ѿJJnNNPQ?i-1 tag+i word CC timberVBZd;ONNSX9vNNV-?i-2 word museumNNP rNNPSv߿NN\(\VBN/$?JJzGʿ i+2 word loveVBZV-?NNST㥛 RBR-VBG(\ڿNNP(\?i+2 word easiestJJSB`"?NNB`"i-1 word leapingRPjtINjt?i-2 word submitVB/$VBN&1NNK7A?JJffffffNNP/$?i-1 tag+i word CC dataVBMbXNNS333333?NN(\?JJT㥛 NNP7A`i-1 tag+i word `` skyNN"~j?JJ+UHw/i+2 word locksIN(\?WDT(\i+1 suffix debJJEؿCDE?i-2 word grantingJJ/$?NN/$ i suffix rigVBZRQNNSPnNN;On?i-1 tag+i word POS circleNN;On?NNS;On¿i-2 word trucks JJRp= ףVBPlNNQտRBOn?VBDI +?VBNI +ƿJJCl?IN;On?VBZ(\NNS(\?RP;Oni-1 tag+i word CC freedomNNV-?JJV-׿i-1 tag+i word NNP gatesVBZMbX9NNPMbX9?i-2 word liquidationNNCl?RBCli-1 suffix ciaNNp= ף?NNPx&ٿVBPNbX9i-1 tag+i word VBD crimpedVBN1ZdJJ1Zd?i-1 suffix mobNNS1ZdNN5^I ?VBD9vi-1 word remainedVBnNNVBN7A`CD-?JJZd;O@NNSQi word democraticJJX9@NNV-NNP(\i word jeffersonsNNPSV-?NNPV-i+2 word nonworkingRB#~j?JJ#~ji-1 tag+i word VB loveVB@JJClNNSi-1 tag+i word IN suburbanJJrh|?NN ףp= NNPZd;׿i-1 tag+i word IN programmaticNNSX9vJJX9v?i-2 word newestVBPvRBv? i+2 word dec.NNSZd;O@NNP|?5^NNPSZd;OJJ ףp= ?NN$C?VBPxRBOnVBZB`"i-1 tag+i word '' quiteVBPrh|RBrh|?i-1 tag+i word RBR productiveJJ{Gz?NN{Gz i+2 word rankNNZd;O?JJZd;Oi-2 word freedRP&1?IN&1i-1 tag+i word `` oilNNSK7A`NNV-NNP;On@i-1 tag+i word CC purchasingVBGSNNS?i-1 tag+i word VBD motherNN/$?RBR/$i-1 tag+i word DT catalogueNNp= ף?JJp= ףi+1 word graveJJq= ףp?RBq= ףpi-2 word official VBG-JJK7A`?NN1ZdVBDHzG?DT/$?RBRK7A`ݿRBjt?INI +NNSHzGNNPuV@i-1 tag+i word -START- slowingJJV-?NN-VBGMi-1 tag+i word JJ plansVBZI +?NNSX9v?NN5^I i-1 tag+i word IN maturesVBZ)\(?NNS)\(i-1 tag+i word NN grantsVBZoʡ?NNSoʡſi-2 word reagan NNP\(\VBGw/ VBD?NNw/?VBN rh?RBˡEINx&1?NNS+?NNPSX9v׿JJ@i-1 tag+i word JJ europeanJJ7A`P@NNP7A`Pi-1 tag+i word CC mitNNPSMbX9ԿNNPMbX9?i tag+i-2 tag CD CCCD333333?RBZd;O׿INMbXNNSQ?RPV-VBD9v?JJRʡEVBNrh|ϿNNPS㥛VBPCl?WDTK7@JJ1Zd?NNM?CCnѿDTK7i-1 tag+i word VB financeVB-?NN-i-2 word laggedNNp= ףJJR"~j?JJvIN/$?i-1 tag+i word IN peddlingJJ r?VBG r i-2 word garyVBPʡENNʡE?i-1 tag+i word NN shocksVBZ rhNNS rh?i-1 tag+i word VBZ cautiousRBRˡEJJˡE?i+1 word generalRBK7ANNP^I +?RPZd;?VBP%CVBNʡE?INd;O?VBGQ?NNSZd;NNv?FWZd;߿VBDA`"WDTQDTZd;?VB~jtпJJʡE i-1 tag+i word PRP easyMDV-JJKRB +?i-1 tag+i word RBS hitVBNzG?NNzGi-1 tag+i word DT rattledVBNZd;OJJZd;O?i+1 word freightRB(\NNPQJJq= ףp?i-2 word basketsDT+RB+?JJRjt?NNjtܿi-1 tag+i word VBG advisesVBZMb?NNSMbi-1 tag+i word : repealVB$C˿NN$C?i word considerablyRBCl@NNCli-1 tag+i word NN shoutsVBZMb@VBPd;ONNSK߿NN?5^I i+1 word vanguardJJCl?NNCli-1 tag+i word PRP$ twopointNN/$?JJ/$i+1 word postipankkiVBD-JJ-?i word reinstatedVBN-VBD-?i-1 tag+i word DT composerNNP+NN+?JJ+i-1 tag+i word `` clustersNNS?RBi+1 word crudeJJZd;O?NNI +?NNPQ VBGzG?i+1 word forfeitableDTS?RBSӿi-1 tag+i word IN modernJJGz?NNGzi-1 tag+i word , wiryVBZClJJCl?i-1 tag+i word CD requestJJSQNNQ?i+2 word backgroundsVBsh|?VBPsh|??i-2 word generalNNPSnVBPuV?NNSClINQ?DTSտNNPPnпVBMbX9ԿVBDM?VBNjtNNI +?POSS?WDTjtJJbX9VBZsh|??i-1 tag+i word CC telephonesNNʡENNSʡE?i+1 suffix rbyVBNI +?JJI +i+2 word payingVBDףp= ?DTףp= ?INףp= VBNףp= ۿi-1 tag+i word NNS figuredVBNK7VBDK7?i-2 word requisitionDTʡEPDTʡE?i+1 word disagreeVBZA`"VBffffffNNSA`"?RBffffff? i word means NNPSvNNp= ף?VBPX9vNNPZd;OտVBtVVBDClJJRzGJJ+VBZQk@NNSPni-1 tag+i word PRP$ narrowJJM?NNMi word naggingVBG333333JJ5^I ?NN rhi word homologousRB~jt?JJ rPRPNbX9i word monitoringNN+@JJjtԿNNPp= ףVBGCl i-1 tag+i word VBD financiereRBX9vNNPX9v? i word gearNNMb?JJ7A`VBZS㥛VBPOn?i-1 tag+i word RB walkVB~jt?VBP~jti-1 tag+i word JJ counselingNN r?VBG ri-1 tag+i word DT jewishNNPsh|?JJjt?NN1Zdӿi-1 tag+i word JJ doctorsNNPS`"NNS`"?i-1 tag+i word NNS confirmVB|?5^VBPv/?NNp= ף i word etc.VBZzGRBClNNuV?FWQ?i-1 tag+i word CD overRP9vIN9v?i+1 suffix pubNNPoʡտJJoʡ? i suffix nupNNV-?NNSI +ƿJJRoʡJJK7AVBNq= ףpi-1 tag+i word NNS silveryRBX9vJJ +?NNʡEi-1 tag+i word IN thunNNMbNNPMb?i-1 tag+i word , individualJJ?VBNi-1 tag+i word CC analyzedVBNS㥛VBDS㥛?i-2 word importantJJNbX9?NNStV?NNP +VB9vNNPS +?VBGʡERBq= ףpVBPv/?i+1 word fiberVBG|?5^?JJX9vNN +?INV-i-1 tag+i word NN topicVBx&1NNx&1?i-1 tag+i word , runningVBG r?NN ri-1 tag+i word NN scrutinyNNS%CNNx&1?RB ףp= ߿i-1 tag+i word JJ circlesNNSV-?NNV-i word deployedVBNGz?JJGzi-1 tag+i word VBG spectatorsNNSS?RBSi-2 word uniroyalVBN1ZdCD1Zd?i word representativesNNPS|?5^?NNSMb`?NNPni-1 suffix akeNNSn@NNPQRBR +WDT(\?JJGz@RP~jt@NNPSd;OPRP$Q?VBZ|?5^DTB`"?POSjtֿRB|?5^INKVBPMbX9$ףp= NN?PRP#~jVBx&1?VBGClVBD rVBN/$?JJRB`"@ i-2 word esbJJn?WDTV-NNnRBV-?i tag+i-2 tag NN : VBD{GzVBP㥛 ҿJJv/?NNPx&VBVBGQNNHzG?VBNSVBZ?NNPSK7A`?i-1 tag+i word NNP fundingNNPq= ףp?NNq= ףpi-1 tag+i word DT patternNNV-@JJV- i+1 word ifarNN|?5^JJL7A`VBDoʡ?i-1 tag+i word VBD violentJJCl?NNCl绿i+2 word syndromeJJn?NNni-1 word pilsonVBZd;O?VB rVBDx&i-1 tag+i word PRP$ frenchJJm?NNPmi-1 tag+i word VBG maximumJJ'1Z?NN'1Z i suffix omeVBP/$@IN|?5^$V-JJSClNNx&1VBDX9v?PRP$NNSv/RPd;OֿVBN(\u@JJX9v @CDGzRBSlҿNNPS rhѿRB/$PDTOnRBRX9vֿNNPGz?VBZ/$VBv@ i word mealNN7A`?JJ7A`i tag+i-2 tag NNS VBJJMb?RP9v?DTGzVB/$@RBX9vϿNNS$CRBR7A`VBN&1?VBG'1Z?VBDbX9ֿVBZ$C?NN~jt PDT(\EXZd;߿JJR/$@INzGʿVBPQWDTx&1пi+2 word wrongdoingVBNNbX9VBDNbX9?i-1 tag+i word JJ mayoralJJCl?NNCli word brightestJJSQ?JJQi-1 tag+i word VBN slowVBp= ףؿJJp= ף? i-1 tag+i word DT administrativeVBPw/JJw/? i suffix GoVBK7?NNP|?5^FWjti word shopliftingVBGQNNQ? i-1 word deal PRP`"VBD%CԿJJR?VBP(\WDT`"?VBNI +RB}?5^I?NNSOnVBT㥛 ?RBRINOn?VBZˡE?DT`"޿i-1 tag+i word PRP fairerJJR1Zd?RB1Zdi+1 word trialRBDlٿINDl?NNPffffffJJv?NNA`"?VBNtVֿi-1 tag+i word : moreJJRK7A?RBRK7Ai+2 word featuresNNCl?JJCli+1 word agnewNNPS~jtӿNNP~jt?i-1 tag+i word CC qualityNNX9v?NNPX9vi word spiegelNNSS㥛NN-NNPʡE? i suffix IvyNNPm?NNPSmi-1 tag+i word IN placeVBNN?i-1 tag+i word VBD looseRB&1?JJ&1ʿi-1 tag+i word IN iowaRBQNNPQ?i+1 word casualtyNNS~jtNNP~jt? i word spudsJJh|?5NNQNNSMb?i+1 word morningDTK7?NNPNbX9ؿVBGClRBsh|?ݿNNV-PDT+JJ!rh@i+2 word timesVBPw/JJ)\(VBZOn?VBGQNNMb@FW$CPOSMRBRI +NNSA`"VB-˿RBMbX9@VBDQ@VBNS?INnEXQ?JJRV-?RP rhi word adjustableJJZd;?NNZd;i-1 tag+i word PRP slogsVBD/$ٿVBZ/$?i word scaringVBGtV?NN/$JJ^I +"i-1 tag+i word -START- preliminaryJJv/?NNPv/ i word relaxVB'1Z?NNS'1Zi-1 word casualtiesVBP|?5^?NN|?5^i-1 tag+i word JJ enablesVBZ"~?NNS"~i-1 tag+i word POS afraidJJ\(\?NN\(\i word rekindleVBV-?NNV-i+1 word intentionalPOS333333VBZ333333?i-2 word receivingJJ#~jԿNNP#~j?RBR ףp= JJR ףp= ?i-1 suffix acyEX(\RB(\?VBZ"~j?NNS{GzJJV-?NN|?5^RBRQJJRQ?i-1 tag+i word VBZ airedVBN{Gz?JJ{Gzi+2 word modificationsINn?NNSGz?RBA`"ӿNNPGzWDTV-i tag+i-2 tag MD NNPJJV-VBZX9v?NNPV-VB(\@RBZd;?NNV-CCGz?VBP+i-1 tag+i word DT subtleJJʡE?NNʡE޿i+1 word strikesJJI +?VBNnNNuVݿVBDCl?i-1 tag+i word VB becauseDTQRB^I +@NN(\INx&1i+2 word assemblymanJJZd;O?NNPZd;Oi-1 tag+i word -START- trishJJ(\NNP(\?i+2 word muscularJJ/$?NN$CRB{GzԿi-1 suffix xonNNPl?NNlҿi+1 word mundaneJJ +RBRQ?RB +?JJRQi-1 tag+i word CC forgetVB}?5^I?VBP|?5^RB +i-1 word crumbleRB?5^I NN%CRPK?i-1 tag+i word NNS pourVBPtV?NNtVi word skirmishNNX9v@JJX9vi word clericalNNrh|@JJrh|i word handicappedNNPS{GzNNlVBNQJJףp= ?NNSʡE@NNP{Gz?i+1 word raiseCC rhNNMbX9?JJʡERBuV? i suffix kooNNQ@NNPQi word confederationNNP(\?NN(\i word repeatedlyNN rhVBD~jtVBN/$JJQVBClRB rh@i-1 tag+i word DT springVBG#~jNNv/@JJd;O޿i-1 tag+i word VBZ strugglingNNnVBGn?i-1 tag+i word VB airingVBG1Zd?NN1Zdi-2 word regardedVBNX9v?JJX9v i word sunsNNP?5^I NNPSDl@NNS~jti+1 word listsVBG+NN'1Z?JJS?i-1 tag+i word DT easierNNMbXJJRMbX?i-1 tag+i word JJ laptopNNSˡEJJJ +@NNGz i-2 word satIN/$?RPʡEVB"~jԿVBGd;ORBʡE?NN$CJJd;O?i+2 word charlottesvilleVBNtVNNtV?i word retinoblastomaVB/$NNSl¿NN rh@JJ= ףp=i-1 word edgedRPK7CCA`"JJR(\RBR?5^I ?RBK7A` @INGzi-1 tag+i word IN meetsVBZ)\(?VBQNNSS㥛i-1 word folksRPDlJJjtINCl@i-1 tag+i word DT laborNNPSX9vNNGzNNPʡE?i+1 word scienceVBZ-?NN?JJ(\NNP-?i+1 suffix ultFWK7RBS{Gz?VBD+RBR-@VBV-INq= ףp?POS)\(̿NNPxJJxNN ףp= ?JJS{GzJJR-VBZCl?NNSMbX?RBV-?i-1 tag+i word NN wholeJJV-?NNV-i+1 word conistonWDTnINn?i-1 tag+i word NNP optionsNNPS\(\?NNP\(\ i suffix aosVBPsh|?NNSNN|?5^?NNPSq= ףp?NNP%C i-2 word fairVBDSRBףp= VBZw/?NNSZd;OJJףp= ?NN&1? i word frozeNN?5^I VBD?5^I ? i word cementNN㥛 ?JJ㥛 i word tenderedVBPGzVBNZd;O?RBnVBDHzG?i+1 word entrepreneursVBZm?NNSmi-1 word datesRB7A`?JJ7A`i word planningNNPSףp= VBG"~NNB`"@JJ~jtNNPB`"?i word promisedVBNPn?JJA`"VBDˡE?i word washingVBGS?NNS i word dullJJˡE@NNffffffVBD/$i+1 word arafatWDTMbINMb?i word inflationaryJJ7A`?NN7A`ҿi word retainsVBZ-?VB+NNSX9vi word educatingNN+VBG+?i-1 tag+i word : upJJv/տINK7?RP7A`RBrh|? i-2 word fillNNS%C?NN333333?JJMbXi-1 suffix aleFW|?5^?VBD&1NNPNbX9NNSV-ҿRPDl?RBnPOSn?RBRS㥛?INn?VBPp= ף?JJMbX9?VBZHzGNNPSCl?NNCl?JJRS㥛i+2 word whitewashVBNMJJM?i word entrenchedVBN/$ÿJJ/$?i+1 word labelsVBG(\?NNZd;O?JJQ"i-1 tag+i word JJ supraventricularNNA`"JJA`"?i-1 tag+i word IN refiningVBGClNNK7?JJJ +i word charactersNNS~jt?VBZoʡNNPSQi-2 word pantsVBS㥛JJS?NNjti-2 word repeatedlyDTMbX9VBGvNNjt?JJ|?5^?INMbX9?i+2 word airportVBnRPJ +ٿINS? i+1 word paid IN rhRBxJJR= ףp=VBP`"WDT rh?VB`"?NNGz?JJGzNNP#~j? i-1 word riskVBPuV?WDT9vJJvIN/$?VBGp= ף?NNS㥻i-1 word ricanNNRQؿNNPRQ?!i-1 tag+i word RBR responsibilityNNoʡ?JJoʡi-1 tag+i word VBG rapeseedNNV-?JJV-i word dressmakingVBX9vVBGtVNNv@ i word higher VBV-JJMbNN/$RBR㥛 0@JJRoʡ+@VBNx&1RBCl NNPףp= VBDlCCA`"PRP rhPRP$7A`i-2 word rainbowRBnINn? i word buckleVB(\?VBD(\i-1 tag+i word TO evaluationVBh|?5޿NNh|?5?i-1 tag+i word VBZ rightRB|?5^NN~jtJJ +@VBNvi-2 word routeVB%CNNPtV?NNtVJJ= ףp=CD1Zd?i-1 tag+i word NNP enterprisesNNPSffffff?NNPffffffi word declinesNNPS$CRPxVBDh|?5VBNX9vRBMVBZ/$@NNSFx?NNPI +i-1 tag+i word VBD capNNS|?5^NN|?5^?i-1 word rebelsVBD!rhVBPv׿RBR +?JJR +VBNK7A?i-1 tag+i word NNS manufacturedVBPMVBNx&1VBDsh|??i-1 tag+i word TO constrainVBFx?NNFxi-1 tag+i word IN seasonsDTClNNSCl?i-1 tag+i word , warnedVBPV-VBNx&VBDMb?i tag+i-2 tag WP NNPSVBZxVBP ףp= ?NN333333 i+2 word wigsWDT+IN+?i-1 tag+i word NN dishNNGz?JJGz i suffix iosJJQNNSv"@NNPjtVBK7NNPS+@NNV-VBP/$ i+1 word actsJJK?VBKRB/$NNʡEi-1 tag+i word TO proceedNNZd;OVBZd;O?i-1 tag+i word JJ freedomsNNS`"?NN`"i-1 tag+i word CC demandedVBN{GzVBD{Gz?i-1 tag+i word JJ heatNNSClNNCl?i-1 tag+i word , mineralNNA`"?JJA`"˿i-1 tag+i word NNS strengthenVB~jtVBPMbX?JJ~jti+1 word housingJJM?NN\(\NNPMb?VBG#~j?i-1 tag+i word PRP$ scheduledVBNm?JJmi+2 word concludesVBGh|?5NNh|?5?i-2 word traveledNN!rh?JJ!rhܿ i word clownsNNSv?NNvi+1 word setbackNNy&1ܿJJy&1?i word taxationNN`"NNP`"?i-1 tag+i word WDT petVBP rhJJ(\@NN"~ji-2 word printerVBNffffff?JJh|?5VBDffffffNNPh|?5?i-1 word virusWDTV-?INV-i-1 tag+i word NNS dressedVBNX9v?VBDX9vi word rumpledVBnVBNZd;OJJHzG?VBDS㥻 i suffix a-2JJK7A?NNPK7Ai-1 tag+i word IN quiteRB9v?NNʡENNPKi-1 tag+i word IN adultJJ rh?NN rhi+1 word adleyNNrh|?NNPrh|i-2 word terroristsVBD(\VBP(\?RBuVINuV?i-1 tag+i word IN airplaneNNS +NN +?i+1 word revealedVBN-ֿVBD-?i word pessimistsVBZPnNNSPn?i+2 word stupidDTClVBPCl?i-2 word yields VBNʡE?VBP+?DTy&1?RBnNN rhVBDʡEۿJJSNbX9?RPK7?JJ r?INy&1ԿNNSףp= i suffix see VBFx@RP~jtJJjtVBP"~@NNPSQNNMb?VBDGzRB(\VBZuVNNPrh|?i+1 word influencedRBSL7A`?JJSL7A`i-1 tag+i word VBD standVBS㥛?VBPS㥛 i word breadNNK7A`?JJK7A`ݿi word certificatesNNPST㥛 @NNS(\?JJZd;NN +ֿNNPbX9i-1 word requiresNN\(\RBR}?5^IJJ/$?JJR}?5^I?CC+ i word eubankNN rhNNP rh?i+1 suffix sasJJ#~j?NN#~ji+2 word awesomeRB= ףp=ҿIN= ףp=?i-1 tag+i word NNP philoNNx&NNPx&?i-2 word visitors VBK7?VBDA`"JJRl?VBN~jt?VBPnJJ(\RBRlRB㥛 IN㥛 ?i-1 tag+i word DT occupantNNtV?JJtVi+1 word timesVBP#~jܿJJ(\?NNS ףp= NNPRQ@VBB`"NNmFW|?5^VBNX9vi+2 word quips''GzPOSGz?i-1 tag+i word NNS slatedVBNMbX?VBDMbXi-1 tag+i word JJR weightNNx&1?JJx&1ȿi+1 suffix tchNNP#~j?VBG/$NNnJJR rhWDTS?JJ/$?INSNNSCl?i+2 word cyclicalVBPh|?5VBN(\?VBv׿ i word entityNN/$?JJ/$i-2 word mountNNA`"RB?JJA`"?VBi-1 tag+i word `` roadVBx&JJrh|NNPJ +?i-1 tag+i word , vegetableJJ/$NN/$@ i word flapNNw/?JJw/ܿi-1 tag+i word JJ containingVBGQ?JJQֿ i+2 word fdaJJ㥛 ?VBD㥛 i suffix -13NN(\?JJ(\i-1 word hypothesizedNN$CRB$C?i-1 tag+i word JJ tightJJw/?NNw/i+2 word b.a.tVBNbX9?JJbX9i-2 word politiciansVBZx&NNP-?NNB`"?VBDx&?JJRZd;O߿RBRZd;O?VBP-JJB`"i-1 tag+i word VB prolongedNNSZd;OVBNMbпJJn?i-1 word takesRP rhNNCl?RB`"INMbX?VBZ^I +NNS^I +?i+1 suffix ct. VBzGJJZd;OVBNtV@INQ?NNGz?VBD+PRP$Zd;?RBZd;VBZM?NNSMNNPS㥫i-2 word surprisinglyVBGV-NNV-?i+2 word promotionNNS|?5^NNPʡENNPSʡE?VBGK7A`?NNK7VBDHzG?VBPHzGJJK?i word executiveVBPbX9JJJ +NNPZd; @VB|?5^RB= ףp=NN|?5%@VBNV-i-1 tag+i word , enVBMbX9JJK7A`FW?i+1 word driveJJsh|??NNK7A?RBR1ZdRBNNSNbX9?NNPtVi word capitalistsVBZZd;NNSZd;?i word amusingVBGnJJn@i word revisionsNN-NNS-?i-1 tag+i word DT sweatNNQ?JJQi-1 tag+i word VBZ relatedVBNzG?JJzGi-1 word happyRBjtINjt?i+2 word labeledNNSrh|?NNrh|i word hideboundJJA`"?NNA`"i word scrutinyNNSy&1JJjtRB ףp= ߿VBN+NNZd;@i-2 word sierraNNPS?NNP i word missNNS{GzNNPMb?VBQ?RB-NNFxѿVBPL7A`?JJMbi-1 tag+i word POS ghostbustersNNP㥛 NNPS;OnNNSףp= ?i word toshibaNNffffffNNPffffff?i-2 word selectivelyVBNS?JJS i word hinesNNPSnNNPn?i-2 word yesterdayVBP㥛 VBGJ +?NNPS?NNFxٿINNbX9?DT/$RP%C?VBDK7?FWMbX9VBNX9vVB-?JJK7ARBx&?NNSS㥛?i+2 word leeryNNPS;OnJJ;On?i-1 tag+i word -START- accruedVBNq= ףp?NNPq= ףpi-1 word wisdomRBI +?NNI +i-1 tag+i word JJ enlightenmentJJ rhNN rh?i-1 tag+i word DT windowsNNSOn?NNOni+1 word hippieNNPSX9vNNPX9v? i+1 word sinPRP$x&1?PRPx&1Կi+2 word arnoldNNPS/$NNL7A`?RBL7A`NNP/$?i+1 suffix iemNNQNNPQ? i word adeptsNNS|?5^?NN|?5^i-1 tag+i word NN sellingVBG)\(NN)\(?i word distilledVBNʡE?JJףp= ?VBDx&1i tag+i-2 tag JJ RBVBP^I +?VBuVͿCCV-?JJRzGҿPRPʡE?NNSsh|??VBNnʿWPX9v?VBZDTMbX9IN`"?JJnRP"~?NNV-CDV-NNPy&1RBRRQ?EXSVBG\(\?VBDMbWDTMbX9?RBtV?i-1 tag+i word VBD fellowNN~jtJJ~jt?i-1 tag+i word CC terrorVB333333NNtV?NNPFxi word receivershipNN-?JJ- i suffix eps JJʡENNjtVBzGNNPS&1RB1ZdVBZw/@NNS-g!@NNP-VBD'1ZVBN㥛 i-1 tag+i word RB illustrateVBSVBPS?i+2 word serviceVB)\(̿VBGQ?RBMbX@NNSףp= JJV-¿VBNPnPOSX9v?VBZX9vNNVBDlINvRPA`"NNPy&1,@VBP)\(?i-1 word rememberINRQ?DTRQi-1 suffix iatINh|?5?NNPS-RBS? i word ronaldJJy&1NNPy&1?i-1 tag+i word TO hauntVB/$?NN/$ѿ i-1 word poolVBNV-VBDV-?i-1 tag+i word -START- lutherJJd;ONNPd;O?i-2 word viewpointVBD?5^I JJ?5^I ?i-1 tag+i word DT fancyJJʡE?NNʡE i-1 word dpcNNPS!rhNNP!rh?i-1 tag+i word DT thatINsh|?DTrh|WDTX9v@NN$CRBzG?i word egotistNNl?JJlڿi-1 tag+i word -START- leviVB+NNP+?i-1 tag+i word WRB announcedVBNSVBDS?i-1 tag+i word PRP$ tableJJuVNNuV? i+2 word beerVBGʡEͿNN +?NNPMbVBMb?VBPMbȿi+2 word transcanadaVB)\(?NN)\(i-1 tag+i word RBR hospitableJJRQJJQ? i suffix CDCNNʡENNPʡE?i-2 word assemblyNNV-?VBDjtRBn@INnVBZjt?NNPV-Ͽi-1 tag+i word CC filmsNNSL7A`?VBN'1ZNNq= ףpi-2 word matchNNS㥛NNPS㥛?i-1 tag+i word JJ cutNNS|?5^VBNB`"?NNX9v?i-1 tag+i word NNP adoptedVBNK7AпVBDK7A?i word examplesNNSQ?NNPQſi-1 word draggedRBuVտRPuV?i-1 word sorghumNNV-?NNPV-i-1 tag+i word VB acceptedVBN?5^I @JJ?5^I i-1 tag+i word VBD compelledVBD~jtVBN~jt? i suffix ews NNS+7 @NNPSʡE@JJNbX9NN|?5^:VBD}?5^I VBP-RB"~VBN/$CDMbؿVBZ@NNP- i-1 word slightestNNPn?RBPni-1 word bikesVBP +?NN +i+1 word smithNNZd;O߿JJZd;NNPS? i-1 word tiedPRP$V-?RPoʡ?PRPV-ڿINoʡտ i suffix romMDZd;VBVBDjtVBPKJJQIN$@NNPʡE i+1 word james NNPS}?5^INNS㥛?VBD/$?VBNMbNNSx&VBG7A`?JJx&VBPClRBS?VBZx&?NNP}?5^I?i-1 tag+i word NNS subcommitteeVBPNNZd;?RBX9vi+2 word casparJJCl?NNPCli-1 tag+i word DT limitNNPS/$NN/$?!i-1 tag+i word MD surreptitiouslyVBK7ɿRBK7?i+1 word freedmanNN}?5^INNP}?5^I?i word airportNNPSQNNS?RBQJJ~jtNNP{Gz?i+2 word troubleVBZS?VBNSi word investmentsVBZ|?5^NNPS9v?NNS|?5^NNPK7?i word alteredVBNh|?5JJMbX9VBD?i+2 word charitiesVBP7A`RB7A`? i word nomuraJJV-RB/$NN5^I ?NNPrh|?i word agricultureNNSV-NN(\?JJˡENNPS@i-1 tag+i word JJ betNNQ?RBQi-2 word artificialNNSQ?NNQi-1 tag+i word NNS generatorsNNS~jt?NN~jti-1 word initiallyVBN㥛 JJh|?5VBDL7A`@i-1 tag+i word VB manageVBZ +VB +?i+1 word polypsVB= ףp=JJGz?NNQi-1 tag+i word TO runVB rh?VBN rhi word sweatingVBG333333NN333333? i suffix THENN\(\JJV-DT-@NNS-NNPV-PRP$- i-1 word skyVBN"~jVBD"~j?i-1 suffix eas VBDSJJSʡE?VB/$RBjt?RBSʡEVBN#~j?VBPuV @WDT rh?JJL7A`?INw/ԿVBGK7NNV-?NNS'1Zi-1 word nearbyNNS1ZdۿNN1Zd?i word placeboNNS㥛?JJS㥛i+1 word directlyRBR= ףp=?VBDѿVBN|?5^@JJR= ףp=ҿNNuVi+1 word rollsNN~jt?NNP~jti-1 word appearsJJx&1?RBRˡENN ףp= i-2 word constructRBSMb?JJSMbi-1 tag+i word -START- maybeNNPV-RB r @INS i word faaNN{GzNNP{Gz?i-1 tag+i word VBP combinedVBNMbX9?JJMbX9i-1 tag+i word VB asideRBh|?5?INh|?5i word necessityNNS?NNPSi-1 tag+i word VB seaNN r?JJ ri+2 word shareVB{Gz?VBP(\JJxINKCDT㥛 ?NNPSnRBRQ?VBN&1?JJR/$VBDEȿNNCl@PDT-?POSRQ?VBZRQNNS9vNNP)\(? i suffix kanJJv@NNPvi+2 word presenceJJRX9vVBNZd;׿JJZd;?RBRX9v? i word resoldVBPZd;O?VBN+η?RB+ηVBDZd;Oݿi-1 tag+i word WP$ backNN+?RBV-JJ/$ۿi word overbidVBPsh|?VBDsh|??i word provokedNNSrh|VBNOn?JJOnVBDrh|?i-2 word meditationFWʡE?NNʡEi-1 tag+i word CC frozenJJL7A`?NNL7A`i-1 tag+i word VB drawnVBN&1?JJ&1i+1 suffix aseNN"~ڿVBNQRBMbINףp= ?CD5^I ?RP"~jVBPX9vFW(\CCxRBRh|?5WDTPn?PRPV-VBZx&NNS+JJx&1 @NNPtVJJR&1?VBDl?DTMbX9@PRP$E? i suffix -21JJ"~j?CD"~ji-1 word kickedRPy&1?RBy&1i-1 tag+i word RB winningVBG#~j?JJ#~ji-1 tag+i word , offerVBPzG?NN~jtÿVBCli+1 word moscow VBGh|?5?VBDjt?VBPQ?NNPjtVBQNNh|?5CDK7JJK7?IN'1Z@DT'1Z i-1 word bpcaWDT#~j?IN#~jĿi+1 word grammarJJQ?RBQ i word fishNNPSGzNN rh@JJGzNNPX9vֿi+2 word suggestsNNPA`"ۿVBG(\NN?POS1Zd?JJQ?INtVοVBZ1Zd˿DTtV?i word observedVBNX9vJJx&1?VBDI +?VBZZd;i+1 word misdemeanorJJ{Gz?NN{Gzi-1 tag+i word DT deliciousNNPSFxJJh|?5NNPףp= ?i word shoppingNNq= ףp@JJ= ףp=NNP1Zd?VBGMb i+2 word coverageDT(\PDT(\?VBN~jtÿJJ~jt?i tag+i-2 tag IN JJRJJSZd;OǿJJRQ?PRP$ʡE?JJʡEݿVBZ;OnڿNN;On?PRPʡERBS/$INmVBNx&?VBPPnRB7A`?CCPDTʡERBRjtĿVBG/$WP{Gz?DTX9vNNPVBx&?VBDRQ?NNSGzCD|?5^?i-1 tag+i word , guaranteesVBZNNS? i+2 word kkrVBN)\(JJ)\(?i+2 word swampedNNSZd;߿NNP?5^I ?NNPS= ףp=i+2 word abrasiveJJ+?NNSRBx&i-1 tag+i word JJ combineVBPʡE?NNʡEi+2 word politiciansNNx&RB +NNS +?VBNx&?i word legislationNNPL7A`NNL7A`?i-1 tag+i word -START- stunnedRBQοJJQVBN"~j?i-2 word researchersVBPzGJJ?5^I ڿNNPV-?NNxVBD rh?VBNV- i-1 word hadVBG rPDT'1ZJJRh|?5VBDo!RBRjt?VBEUH rhٿRB-NNS/$?PRP$ףp= JJMbX9ܿRBS ףp= ?JJSSÿVBN}?5^I@IN(\µNN?CCOn@DTsh|?? i-1 tag+i word RB schoolchildrenNNS?UHzGڿNNd;Oi-1 tag+i word VB coveredVBN+?JJ+i-1 tag+i word NNS upheldVBPVBD?i+1 word buttonsNNGz?VBDGzi-1 tag+i word NNS pursueVBrh|@VBPKNN\(\i-1 word dismalNN&1ڿJJ&1?i+2 word filesVBZ^I +?NNS#~jܿPOSJJ}?5^IVBN}?5^I?i-1 tag+i word JJ enginesNNS~jt?NN~jti+2 word ridingVBG#~jJJ+@NNsh|?i+1 word confirmationJJGzVBGz?i word swearingVBGffffffNN ףp= ?JJGzi-2 word indexesRBR ףp= ?JJR ףp= i word sadNNS5^I VB{GzԿJJGz@NN rJJRw/RBx&i+2 word rememberNNSx&?NNPx&RBClVBD'1ZVBNT㥛 ?CDQ?JJQ i-2 word sickVBQ?VBDQi-2 word inventionsRB+?JJ+ i+2 word whyVBDA`"@WDTOnIN^I +DTV-?NNS|?5^@VB)\(NNPSClWRBjti+1 suffix ull JJR(\VBN"~j?RBS?INx&1?VBG$CJJE?NNxCCX9v @VBZףp= ?DTx&1NNSףp= VBD"~jVBPGz? i suffix rtzNNP'1Z?VBD{GzFWMbX9 i word lightRBSCDy&1NNSMbX9VB/$JJSc@NNjt@VBNxRBR+i+2 word bankruptNN{Gz?JJ{Gzi+1 word hamiltonJJ"~jNNP"~j? i word megaJJ @NNlRBuVDTMbX9NNSGzֿNNP~jti-1 tag+i word NNP familyRB%CܿNNP%C?i-1 tag+i word VBD drivenVBN}?5^I?RB}?5^Ii-1 tag+i word NNP indicatorsNNPSrh|?NNPrh|i-1 tag+i word IN meetingVBG\(\?NN`"ֿJJrh|Ͽi word breakersVBZ!rhNNS!rh?i-1 suffix darVBZ(\NNPSzGʿNNoʡ?RB/$NNPzG?i-1 tag+i word TO counterVB5^I ?RB5^I i-1 tag+i word IN bowlingVBG㥛 ?NN㥛 i-2 word loseIN-?NNx&1@RBlJJd;OJJR- i suffix FARRBL7A`?JJZd;ONNP{Gz i suffix hin RBv/VBD5^I VBNzGIN@NNSENNq= ףpCDK7AJJV-@NNP/$ݿi-1 word creamierJJZd;ONNZd;O?i-1 tag+i word TO curbVB-?NN-ۿ i word taughtJJK7VBDK7?RBsh|?VBNsh|??i-1 tag+i word NN leadoffNNS?INSi word furukawaVBZ~jtNNQοNNP/$?i-1 tag+i word CC plasticNNFx@JJFxi-1 tag+i word VBP exceedinglyRBMb?JJMbi-2 word revivingNNl?JJli-1 tag+i word RB bluntJJsh|??VBNMNNZd;Oi-1 tag+i word VBZ architectVB ףp= NN ףp= ?i+2 word handyVBDK?VBZKi+2 word algiersJJS?5^I RBףp= ?NNoʡi-1 tag+i word NNS hadVBD`"?POSVBPRQVBN%C?IN-i word neophytesVBZ rVBP|?5^NNSJ +?i-1 word steeringNN~jtRBFx?JJv/i+1 word friday VBDrh|RBR?5^I RBI +?VBGx&ٿNNSX9v?NNP= ףp=VBCl?NN/$?VBNrh|?INoʡſRP+JJS?i-1 tag+i word IN mercuryNN}?5^I?JJ}?5^Ii-1 word montrealNNSS?NNSi+1 word pikaiaVBNy&1?VBDy&1 i-1 word rockCCQ?VBGjtPOSQNNjt?i-2 word tried RBSV-NNS1ZdINSVBMb@RBʡE?VBD^I +JJSV-?VBN^I +?JJ333333i+1 word outputRB}?5^INNFx?FWT㥛 пJJRq= ףp?RBRq= ףpݿVBN1Zd?JJv? i suffix ecoDTSNNPSoʡNN}?5^INNPn@i-1 tag+i word -START- districtNN)\(ԿNNP)\(?i-1 tag+i word CD \*NNS9vSYM)\(?NN1Zdӿ i word nynexNNP333333?VB333333i-1 tag+i word CC bothCC㥛 ?VBZClDTbX9޿i-2 word russianNN"~VBDSNNP"~?VBNS?i word analystJJ/$IN̿NNPq= ףpݿNN!rh@VBNh|?5i word capacitorsNNS"~?NN"~NNP&1?NNPS&1i+1 word themselves NNI +VBD"~j?JJR ףp= POSL7A`尿VBPx@WDT/$RB-VB?DT/$?VBZQ?JJQNNS(\VBG333333?i-1 tag+i word DT customsNNPw/NNPSV-NNSMb@JJ+NNMb i word sandsVBZ'1ZNNPS{Gzt?NNSV-?NNPn?i-1 tag+i word DT sandwichJJMbXNNMbX?i+1 word aidesJJ㥛 ?NN㥛 i+2 word forbidsWDTT㥛 ?INT㥛 i-1 word firmlyJJHzG?VBPI +?PRP㥛 NN;OnVBN;On?i-2 word restyledVBZS@NNSSi-1 tag+i word IN whitesNNS(\?JJ(\i-1 tag+i word IN racyJJ rh?NN rh i word blipsVBZnNNSy&1?VBN/$i-1 tag+i word TO sitesNNSX9v?VBX9vi+1 word philosophersNNPSJJ$C?NNjti-2 word packageRBRy&1JJRy&1?RB/$NNSS㥛?VBK7A`?JJ%C?NN^I +i-1 tag+i word IN contrastJJClNNx@JJSB`"VBN|?5^RBnٿNNSni-2 word diethylstilbestrolVBʡEVBP/$?NNM i-1 word golfNNClVBDM?VBNMVBZbX9?NNSS㥛?NNPMbNNPSZd;i-2 word englishJJMb?INʡEDTFxNNSrh|?NNPNbX9NN/$WDT"~@i+1 word businessmanJJv?NNvi-1 tag+i word JJS sellingVBG-?NN-i-1 tag+i word , wallpaperJJRSݿNN rh?INx&1i-2 word spudsRBOn?INOn i suffix ryeNNS?5^I NNʡE?RBK7A`i tag+i-2 tag VB :NNZd;OVBD(\?JJZd;O?IN\(\DT\(\?RPMbXi+1 suffix hawJJRmJJm?i-1 word iversonNNClNNPCl?i-1 word dycomNNPS}?5^INNP}?5^I?i-1 tag+i word TO allVBV-PDT#~j?DTi+1 word delcoVBP~jtVBD~jt? i word echoVBZ%CVBPNbX9?NNSERBzGNNPzG? i-1 word lostRBv/?NNCl?CDZd;?PRPʡE?JJ(\INmNNPZd;ϿPRP$ʡEi-1 tag+i word `` quislingJJ\(\VBG rhݿNNOn?i-1 tag+i word PRP$ crossNN+?JJ+i-1 tag+i word IN keepsVBZ+?NN+i+2 word jurisprudenceDT rпINClWDTv?VBNʡE?VBDʡEֿi-1 tag+i word NN workersNNPSh|?5?NNPh|?5i-1 tag+i word JJ spiralNNp= ף?JJp= ףi-2 word backlogNNffffff?JJffffffINB`"RBB`"?i-1 tag+i word RB boastedVBN-?JJ-i-1 tag+i word JJ needVBP|?5^?NN|?5^i-1 tag+i word JJS harvestJJSL7A`NNL7A`? i suffix OhVBP!rhNNSʡEUHw/ @NNʡENNPCli tag+i-2 tag CC RBR JJQ?VBD#~jJJR{GzVBN#~j?RBx&1VB~jtRBRV-@IN rhVBZbX9ֿi-1 tag+i word DT burgessJJmNNPm?i-1 tag+i word VB eastNNPS?JJR-NNPl i-1 tag ,"WDTPnJJRx&?WRBV-?DT;OnNNS7A`FWV-?PDTE?EXQ?IN{GzԿNNPS"~ҿVBD(\?$-''`"?VBPd;O?JJ$C˿VBZS㥛?RPy&1RBR +޿VBGGz?VBN~jtȿPRPuV?RBbX9?VB5^I ?CDOnMDMbWPʡE?POS(\CC+ηRBSK7PRP$!rhNNPMbJJS&1UHy&1?NNoʡi-1 tag+i word CD speechNNS\(\NN\(\? i+2 word z.RBʡE?NNPʡEi-1 tag+i word TO sellingVB/$տVBG/$?i-1 tag+i word , choosingVBGZd;O?JJZd;O!i-1 tag+i word NNPS manufacturingVBG1Zd?NN1Zdۿi word nonworkingVBG#~jJJ#~j?i-1 tag+i word VBP intimidatedVBNK7A`?JJK7A`ݿ i word taxesDT}?5^INNS}?5^I?i-1 tag+i word RBS !HYPHENJJ ףp= NNS?CDX9v? i-1 word addNNK7A`JJd;O?RB+?CDFx?i-1 tag+i word IN simpleNNS|?5^JJ +?NN+i-2 word thermoJJX9vNNX9v?i-1 tag+i word IN renewingVBGuV?NNuVi word stadiumNNSClNNCl?i-1 tag+i word NN smashingVBG/$ֿNN +?JJ9vi-1 tag+i word RB speakingVBPVBGn?JJSNNbX9ȶi word gillianJJK߿NNPK?i-1 word relativelyVBZd;OVBGOnJJA`" @RB$C?VBN&1i-2 word deputiesJJd;O?NNd;O޿i-2 word restartersJJˡEVBN-?NNZd;OVBDx&1пi+1 suffix pon VBD1ZdVBN1Zd?CDzG?INK7A`?VBZ-?VB/$ÿJJNbX9NNX9vVBPw/?WDTK7A`RB-ƿi-1 tag+i word ) dismissalNNS%CNN%C?i-1 word sessionsVBNCl?VBDCli-1 tag+i word NNP presidentsNNPSX9v?NNS +οNNPx&1i-1 tag+i word RB proudJJGz?INʡEVBNSi-2 word edisonNNPS!rhNNP!rh?i+1 word answersJJv?RBv׿i-1 tag+i word VBZ chemicalJJOn?NNOni-1 tag+i word , anywayRPMbUHx&1RBNbX9?i-1 tag+i word IN scienceNNPjt?NNjti word demonstratorsNNS5^I ?NN5^I i-1 tag+i word NNP deputiesNNPSq= ףp?NNSq= ףpտ i-2 word st.NNI +?NNP{GzNNPS|?5^?NNSjti-1 suffix ionNNSCl?RBRMbX?INQ@JJRnVBNV-¿JJ&1RBuV?WRBuV?VBGPn?FWMb?PRPףp= ?CD&1PRP$ʡENN^I +NNPS5^I JJSS㥛ܿVBD"~j?VBP-DT^I +?RPV-POSS?NNP~jtEX/$?WDTJ +VBZsh|??CCq= ףpRBSoʡݿVBʡEi-1 tag+i word JJ seabrookNNMbNNPMb? i word winnerJJRx&1ܿNNZd;?NNP|?5^ i-2 word soapNNK7A`?JJK7A` i word hobosNNSMbX9?VBN㥛 JJS㥛PRPMbi+1 word depositaryJJ^I +?NNP^I +߿i+2 word suspendedWDTffffffINffffff?i-1 tag+i word VBP detailedVBNEJJE? i word crapVBPvNNRQ?JJK7i-1 tag+i word NNS fanVBRQNNRQ? i+2 word fuelRB|?5^?JJvNN'1Z i+1 word soulVBD rhJJ)\(@RBSʡEVBN#~jNNS㥛ؿi-2 word rolesNNSZd;ORBZd;O?i word shoulderNNףp= ?JJףp= i+1 word warilyJJIN?i-1 tag+i word WRB muchVB-JJT㥛 ?RB(\пi-1 tag+i word VBZ contributeVBI +?NNI +i-1 word terribleNNHzGNNSHzG?i word liabilitiesNNSK7?JJRK7i-1 word language NNS;OnNN̿VBNx?RBL7A`?INQVBZ(\?VBGZd;?JJZd;FWV-?i-1 tag+i word NN suchJJ$C?NN$Ci+1 word comparesINS㥛DTS㥛?i-2 word weekendWDTK7A`JJQ?INK7A`?VBZ rhNNS rh?NNP/$VB?5^I ?NNy&1 i-2 word city VBI +POSn?VBNbX9VBP/$?RB&1JJPn?NNq= ףpVBD rh?NNSɿNNP+?i-1 tag+i word VB veryVBNq= ףpJJSRBZd;O@i word productsVBZ{GzNNPSh|?5@NNPV-i+1 word kotobukiWDT/$IN/$?i word teachersVBZ~jtNNPSK7A`?NNS333333NNPni-1 tag+i word DT vanitiesNNPuVNNPSv/NNSB`"@i-1 word coburnNNy&1?NNPy&1i-1 tag+i word VB liveRBQ?JJ1ZdCDjtĿVB/$i-1 word coronaVBP&1ڿNNP&1?i word obtainingVBGRQ@NN^I +JJuVi+1 word naggingJJS+?JJ+ǿi-1 tag+i word NN tropNN`"IN+FW1Zd?i-1 tag+i word DT plotNNSZd;OͿNNZd;O? i+2 word tvNN㥛 ¿NNPMb?NNPSʡEVBN'1ZԿi+2 word angelesVBP/$WDTClINCl?VB/$?VBG/$?NN/$i-1 tag+i word TO floatingNNPMbVBGMb?i+2 word emptyRP`"?IN`"i+2 word ethnicRBV-?INV-i-1 tag+i word VB temperatureNNʡE?JJʡEֿi-1 tag+i word VBG apartheidRBR9vNN9v?i-1 word corporationVBNJ +VBP)\(VB)\(?VBGV-?NNV-VBDJ +?i+2 word subordinatesVBP;On?VBD;Oni-1 word authorsNN)\(VBP)\(?i-1 tag+i word POS expertJJV-?NNV-i+1 suffix ageCDGz?JJS"~j@VBP|?5^VBZtVNNx&1?FW/$NNSjtVBx&1JJRA`"@VBGsh|?VBNx&@RBV-?RBSx&1RBRMVBDGzWDTQJJףp= @DT/$@RPS?POStV?INq= ףpNNPS\(\NNP+ÿi+2 word possibilityPDT~jt?VBNV-?JJ~jtINvVBK7A`RPv?VBDQ?i-1 suffix ilt VBZHzGNNSʡE?VBNZd;?EXMbRBA`"ۿNNPRP)\(?NNPn?INV-?i-1 tag+i word VB saferVBP#~jJJR+?RBB`"۹ i word vendorNN;On?JJX9vFWQ i word totoNNSQNNPQ? i word arguesVBP9vNNS"~NNPRPsh|?ſVBZ= ףp@i+2 word appearsRB +?NN$C?JJ{Gzi+1 word customerVBN)\(@JJZd;VBDMbi-2 word coupeNNPq= ףp@JJV-CDK7A`i word embodiedVBN)\(?VBD)\(i-1 tag+i word IN giveawayJJffffff?NNffffffi+2 word lafalceNN+VBD+?i-1 tag+i word JJ gunsNNS-?JJ-i-1 tag+i word NNS offeredVBNh|?5VBDh|?5? i word s&lsNNPSX9vֿNNS7A`P@RBʡENN1ZdNNPuVi-1 tag+i word TO reviewNNS(\NNDlVBOn@i-2 word emphasisVBG?5^I ?NN?5^I i-1 tag+i word , talkedVBD+?VBN rhݿJJEi+1 word electronRB{GzNNP{Gz?i-1 word constrainNNClJJCl?i-1 tag+i word MD heldVBʡEVBNʡE?i-1 tag+i word DT narrowestJJSK?NN)\(JJ;Oni word psychoanalyticJJJ +?NN!rhԿINʡEi+1 word donatedRBh|?5?INh|?5i-2 word overboughtRBMbXINMbX?i-1 tag+i word NN cutoutsNNQNNSQ?i-1 tag+i word NNP fundNNPx&1 @NNx&VBD)\( i suffix bogVBCl?VBDCl߿ i+2 word day NNS|?5^ @JJ@NN-CCh|?5INZd;ODTʡE?VBDRQ?VBNRQRB"~jVBZZd;NNP}?5^Ii-2 word rolodexesVBDQ?JJQi-1 tag+i word WDT unveiledVBZ5^I VBD5^I ? i+1 word letsVBZL7A`NNSL7A`?i+1 word craftsmenVBDJ +?VBNJ +ѿi-1 word organizedNNP rNNPS{GzNNX9v?i-1 tag+i word NNP lillyVBZV-RB ףp= NNPrh|?i+1 word criminalJJ"~NN"~?i+2 word pharmaceuticalVBN333333@JJbX9ȶ?NNSʡENNP$C?NNSÿVBD333333i-1 tag+i word , gatheringVBGDl?NNDli-1 tag+i word NN wavesVBZoʡݿNNSoʡ?i+1 word bolognaNNP +?NN +i-2 word michiganVBPQ?NNS-?VBZ-VBQi+1 word informingNNS(\?NN(\i-1 tag+i word NN passesNNSQ?NNClVBZMb?i+2 word charitableNN;On?NNP;On i pref1 fSYM~jt?VBG}?5^IVBNX9v @VBZp= ף?NNV-2@PRP%C̿CCV-INQVBDʡE@VBx&@RBRˡE @RBZd;@PDTS㥛ܿRBSNNPSK7AJJS$C@VBPtV@WDT+RPHzGNNS&1 @CD|?5^ JJRNbX9?NNPHzG-JJDl@DTʡEUHZd;FW-LS(\?i-1 tag+i word -START- lincolnNNOnNNPOn? i+2 word irsRB= ףp=?IN= ףp= i word selfPRPv/NNv/?i-1 tag+i word JJ timetableNN#~j?JJ#~j i word sleptVBZʡEVB9vʿVBDv/?i-1 tag+i word DT materialNN9v?JJ= ףp=?NNPʡEi-1 tag+i word JJ motorsNNPS5^I ?NNClNNPL7A`尿i+1 word biographersNNP~jtJJ~jt?i-1 tag+i word NNP broadcasterNNV-?RBV-տi word injuringVBG`"?JJ`"i tag+i-2 tag VBG TO WDTh|?5JJ1Zd?NNSCl?JJRsh|?ݿNNPVBT㥛 RP rh?RBRˡE?INzGDT%C?NNnʿVBN(\?i-1 tag+i word VBG covenantNN(\?JJ(\i-1 tag+i word NNPS servicesNNPS rhNNP rh?i-1 tag+i word RBS amazingJJV-?VBGV-i-1 tag+i word DT jeansNNSS?NNSi-1 tag+i word NN bindNN?INпi+1 word investigatorsNNm?RBSJJK7A`NNPjt? i+2 word forVBNQPRPClRBZd;OWDTA`"@CD rhEXnJJSB`"?RP/$?LSV-RBR}?5^I?JJR/$?PRP$?DTQPOSV-?CC&1ҿMDCl?VBL7A`ؿNNPMbпVBP"~?JJtV޿VBZ(\?NNSPn?RBS(\NNPS/$VBGX9vVBD1ZdӿNN"~?IN^I +i-1 tag+i word NN infringementNN"~j?JJ"~jԿi-1 word foundingNNPS(\WDT+RB+INʡE?DTmͿNNS!rh@NNP9vʿ i suffix atyVBClNNGz@VBDGzJJw/NNS-NNPCl?i-1 word monsantoPOSV-?NNPV-i-1 tag+i word VBG bothCC"~j?DT?NNS +i-1 tag+i word IN blackstoneNNV-NNPFxVBPp= ף@ i word suddenNN"~jVBD~jtNNSMbJJL7A`e@i+1 word stampVBPlRBMVBtVNNK7A@VBD|?5^?VBN+i-1 tag+i word JJS followingVBG1Zd?JJI +NNT㥛 i-1 tag+i word NNS unaffiliatedJJFx?VBDFxi-1 tag+i word NNP estimatesVBZS㥛NNSS㥛?i-1 tag+i word VBN deputyNN ףp= ?JJ ףp= ߿i-1 tag+i word RB aimedVBN-?JJ+VBDMbXi-1 word tradedRPHzGJJˡE?NNˡERBHzG?i+1 suffix uct DTZd;?JJS㥛?NNPnPOSZd;?JJR rh?VBN/$޿VBZZd;CCZd;߿VBP`"RB(\i-1 tag+i word IN peakNNSoʡNN?JJV-߿i+1 word sidesCC`"DT`"?VBGV-?JJV-i-1 tag+i word JJ japaneseNNtV?RB/$NNSuVNNPClNNPSK7AпJJ+?i+1 word lawsuitsJJoʡ?INM?RPZd;NNPw/VBGX9vNNʡE?WDTMi-2 word disagreeJJ +޿VBG +?i-1 tag+i word IN ideasNNSV-?NNPV-i word biotechnologyNN"~ @VBDnJJMbXNNSx&NNP?NNPSMڿRPh|?5i-1 tag+i word JJ soundsVBZ~jth?NNS~jthi-1 tag+i word NNP costsVBZ~jt?NNS~jti-2 word overseesNNPSjt@NNPjti+2 word operatesJJK7?NNK7ѿ i+1 word portJJZd;NNPZd;? i word rebuffNNV-?JJV-i+1 suffix udsNN/$?JJ/$INX9vWDTX9v? i word metalsJJL7A`VBZL7A`NNSM@NNPL7A`NN"~ڿVBP"~i-1 tag+i word NNS allyNNCl?RBCli-1 tag+i word CC fledVBD/$?VBN/$i word ministryNNP+NNV-?FW"~ji+1 word barrierJJS?NNSi word scienceNNM?NNPMҿi+1 suffix dieVBPMbX9NNS9vNNOn?JJKi+2 word porchRPh|?5INh|?5?i-1 tag+i word IN prescriptionNNV-?JJV-߿i-1 tag+i word VBD displeasedVBN/$JJ/$@i-1 word discourageNNGz?RBGz i word giltNNPSHzGNNHzG? i+2 word elseDTGz?RBGzVBN{Gz?JJ{GzԿi-1 tag+i word NNP provesVBZq= ףp?NNSq= ףpi-1 tag+i word CC trademarksVBZףp= NNS~jt?NNtVοi-1 tag+i word DT compromiseJJ-NN-?i-1 word ordersRBh|?5?VBP`"ֿNNx&1?JJL7A`INh|?5i+2 word adjustedNNS(\@NNPrh|VB|?5^NNmͿVBP?5^I IN9v?DT9vi-1 tag+i word CD multipleuserNNffffffJJRw/ԿNNSJJ333333@i word consolidatedNNPMb?VBDSVBN?5^I JJy&1,@i-1 tag+i word IN buyNNd;O?NNS~jtۿJJR5^I JJq= ףp? i word pillarNNzG?JJzGi+1 word indicatesDTV-?NNSK7A?INV-ϿVBZK7Aؿi-1 tag+i word NNP joseNNPSX9vNNPX9v? i word beginsNNS|?5^VBDPnVBZMbX9 @VBPxi-1 tag+i word DT northeastJJA`"NNQ?NNPvi-2 word mostlyNNoʡ?JJw/NNPԿi-1 tag+i word , starsNNSmտVBDMVBZS㥛?i-1 tag+i word DT disputeNN-?JJ-i-1 tag+i word DT handicappedNNPS{GzNNSʡE@VBNQNNlNNP{Gz?i word rustingNNT㥛 VBGEȿJJsh|??i+2 word cooperativeJJMb?CDMbi+1 word wordsVBG?JJQ?NNHzGi-2 word liftedJJp= ףVBNMbXNN-@i word compactVBGKJJT㥛Ġ@NNZd;VBDi-1 tag+i word NN layerJJI +VBZQNNm? i+2 word centRBE?INEi+1 word greatlyRP%C?RB%Ci+2 word waddlesNNS(\VBZ(\?i tag+i-2 tag RB WP VB-VBGvNNSVBZ +?VBDq= ףp @VBNFxVBP|?5^@RB333333IN1Zdi-2 word spainJJCl?VBDx&VBP"~j?VBNV- i word rustyNNS#~jJJ)\(?NN/$i word fabricateJJrh|VBrh|?i-1 tag+i word NNP robertsNNPCl?NNPSnNNSJ +i-1 tag+i word CC associatesNNPSq= ףp?NNSZd;NNPy&1?i-2 word bargainingVBNL7A`VBDL7A`?i-1 tag+i word JJ accompanyingNNGzJJGz?i-1 tag+i word NNS tallyNNv/@RBv/i-1 tag+i word NN cutVBDQVBNʡEVBZA`"NNSx&1VBJ +NN r@ i suffix outVBG+VBףp= PDTK7A`տJJrhVBZʡENNPSVBD+WRB?5^I DTZd;CD/$VBPJ +?INZd;'@RP r"@RB`"@NNMbX@NNSS㥛DVBNGzJJS\(\RBR +@JJRMbPNNPʡEi-1 tag+i word NNS bloodNNʡE?VBDʡE i-1 word seedVBZNbX9?POSNbX9i-1 tag+i word IN transportingVBGZd;O?JJmNNI +?i-1 tag+i word IN cheeseNN{Gz?JJ{Gz i+2 word pellJJ`"?NNP`"i-1 tag+i word JJ illsNNS9v?NNP9v i+2 word kind NNMbX9VBNZd;OͿRB"~j?VBZbX9?NNPjt?NNPS+VBDZd;O?IN"~jNNSbX9 i+2 word it JJOnVBffffffRBRv?MDMbX?JJR+?WDTzG @PRPI +@UH rh?VBDV-RBMb?CCʡECDZd;O?INx&1@VBZ~jt?DTx?NNK7ANNS+NNP^I + VBGh|?5FWoʡ?VBP~jt?LSy&1WRB\(\PDT/$RBS)\(SYMjtVBNffffffWPFx?RPPn?POS- NNPSB`"?JJSn?i-1 suffix eatNNPSZd;O?RBZd;OPRPB`"?PRP$B`"VBD~jthVBPuVͿJJMbX@IN1ZdNNSMbX9?RP}?5^I?WDT{GzĿVBZ/$NNPNbX9NN|?5^CD/$VBNT㥛 ?i-1 tag+i word `` thereEXoʡ?RBoʡi+2 word internal VBPw/?WDTvJJx&1̿INv?NNPPn?VBw/NNClVBNx&1?NNS~jt?i+1 suffix ich VBG= ףp=?NNffffff@FWEпVBD+?VBP)\(JJK7VBZK7VBrh|NNPuV?NNS7A`?VBN~jtCD"~j@RBʡEi-1 word whitfordVBZ\(\?NNS\(\i-2 word demonVBZ㥛 VBD㥛 ?i+1 suffix iraVBM?NNMi+1 word regimenJJ(\?NN(\ڿi+1 word capitalNNS rhٿRBS㥛VBDxRBRS㥛VBZDl?NNPSK7VBG(\ſNNbX9INGzJJCl?JJRS㥛?DTGz?VBm?WDTq= ףp?NNPX9v?VBN+?i+2 word chlorofluorocarbonsJJzG?NNzGi-2 word violationVBG-VB-?i-1 word financialsNNPS rhNNP rh?i-1 tag+i word VBN scrapsNNS~jt?RB~jti tag+i-2 tag CC FWFWZd;O?NNZd;Oi-1 tag+i word CC quarterlyJJGz?NNGzi-1 tag+i word -START- heclaNNSSRBS㥛NNP?5^I ?i-1 tag+i word NN patternedVBNMb?VBDMbi+2 word lawyer''QVBZS?POSQ?RBSi-2 word smealNNw/NNPw/?i-1 tag+i word DT monsieurNNSףp= NNףp= ?i-1 tag+i word DT seaNN'1Z?NNP'1Zi+1 word suburbJJffffffNNPffffff?i-1 tag+i word -START- gabrielWRB7A`NNP7A`? i+1 word oct. NNGz?VBD+PRP$Zd;?VBNtV@INQ?NNSMNNPS㥫VBzGJJZd;ORBZd;VBZM?i+2 word osakaJJx&1?NNx&1i-1 tag+i word IN siemensNNPSENNPE?i-1 tag+i word DT proJJ|?5^?NN|?5^i-1 tag+i word NNS severanceNNZd;@RB/$JJy&1i-1 word standingRPFxٿRBh|?5?INFxi word despairNNsh|@NNPjt VBQ i word howardRPA`"@NN-JJ +޿NNPy&1 i-1 word tiePRP$ r?PRP rؿi+2 word agentNNSQ?NN%C?JJZd;i-1 word continuallyVBZ{GzVBMb?VBPSi+2 word copyrightsVBDV-?VBNV-i+1 word contributeVBtV?NNtVi-2 word promisedJJR|?5^?RBR|?5^i word steeredVBNV-VBDV-?i-1 tag+i word NNS liveJJʡEVBPʡE?i-1 tag+i word VBZ standingVBG!rhNN!rh?i-1 tag+i word NNP frequentJJw/?NNw/ܿ i+2 word sideNNPSQPRPjtJJZd;?NNPQ?VBtVi-1 tag+i word NNP novelNN|?5^?RB|?5^i-1 tag+i word NNP fameVBPʡENNʡE?i word rollinsVBZL7A`NNPL7A`?i word highwaysNNSVBZ`"ֿNNS㥛 ?i-1 word somewhereNNPX9v@IN㥛 ڿJJQRB(\i+2 word visitorsVBN/$RBx&JJS? i word laggedRBQVBDGz?JJ/$VBN +?i-1 tag+i word , superintendentNN&1?JJ&1ʿ i suffix llaVBX9vNNGz@VBP;OnJJjtVBZ-NNS%CNNP1Zdi-2 word roundNNS?JJSۿi+1 word routinelyWDTʡE?INʡEi-1 tag+i word NNP pollsterNN{Gz?RB{Gzi+1 word declinedNNSʡEݿNNP/$?NNPS~jtؿNN/$?CDp= ף?VBZS㥛 i+2 word youCDZd;NNPSv/UHMb`VBNh|?5JJ rDTxRP7A`@NNP +PRP1Zd?RBK7A?NNSPnWDT/$WPffffff?VB"~?WRB(\?IN?JJRbX9?VBG-VBDSVBP +?NN~jtRBR5^I i-1 tag+i word , touristsNNSGz?VBZGzi-1 tag+i word , muchRBq= ףp?NN/$JJ ףp= ?NNSV- i word fennelNNSZd;ONNZd;O?i-1 tag+i word NN hauntedVBNCl?VBDCl"i-1 tag+i word -START- devastationNNP/$NN/$?i-1 tag+i word NNS containedVBNMb?VBDMbi+1 suffix eskNN|?5^?JJ|?5^i+2 word indicatesINףp= ?RBףp= i-2 word douglasVBG/$NN(\?JJS?i+2 word quickNNPSZd;NNS;On?NNPV-?i-1 tag+i word RB crawledVBNˡEVBDˡE? i suffix sly INRQؿNNSq= ףpJJS VBNB`"VBD~jtVBPzGRBʡe5@NNPQVBGz.NNZd;_i-1 tag+i word JJ reexaminingVBGRQ?NNRQi-1 tag+i word TO existVB|?5^?DT|?5^i-1 tag+i word VB whateverRPd;OJJ(\INMbX9WDTMbX@i word jewelryJJ(\VBZZd;ONNSZd;ONNP rNNv@JJSZd;O i suffix momNNSh|?5NNA`"?JJT㥛 п i word burnsNNPnVBDp= ףVBZw/NNSףp= @NNP~jt?VBoʡi-1 tag+i word MD tradeVBjt?NNjti-2 word dealsJJR|?5^JJMb?NNPMbX9VB/$NNPSMbX9?RB~jtNN%CԿRBR$C?i-1 word balancesCCMbX9ĿDTMbX9?i-1 tag+i word NNPS lostFW9vVBDGz?VBNsh|?i+2 word specificationsWDTV-߿INV-?i+2 word gallowayNNPHzGJJHzG?i+1 word representedVBGbX9NNףp= ?RB&1i-1 tag+i word DT uneducatedVBN+JJ+?i-2 word walletVBʡEVBNJ +VBDMb?i-2 word rollsVBGh|?5?JJx&1NNMbȿ i word lyndenJJ333333NNP333333?i-1 tag+i word VBD cleanupNN?JJRoʡJJK7AVBNq= ףpi+1 suffix eraJJ rؿNNP r?i-1 tag+i word IN kleinwortNN$CNNP$C?i-2 word victimsVBPʡE?JJZd;ONN= ףp=i-1 tag+i word NN toilingVBGK7NNK7?i-1 tag+i word IN marlboroJJ(\NNP(\?i-1 tag+i word CC perspectiveNNX9v?JJX9vi tag+i-2 tag VBZ JJSRB+?NNS+i-1 tag+i word DT u.s.s.r.NNP}?5^I?NNSGzNN"~i-1 tag+i word -START- beingNNStVֿVBGS@VB{GzWRBܿLS$C i-1 word setsINX9v߿RPV-?VBN^I +߿RBVBD^I +?i-2 word commoditiesVBL7A`VBPL7A`? i word fakingVBGtV?NNtV i word fasterVBKJJʡENNףp= RBRQ@JJR(\@RB rhi-1 suffix adaNNPS)\(?VBDCl?VBNZd;JJ rhٿVBZsh|??NNSMbNNPMb?i+2 word forestsNNST㥛 ?JJT㥛 i+2 word pitcherRBd;O?JJd;Oοi word harmfulVBNjtJJjt?i+1 word smotherVB9vڿRB9v?i+1 word homelandPRP$x&?PRPx&i-1 tag+i word VB crumblingVBGw/?JJw/i-1 tag+i word NNP electronicNNPS'1ZNNP'1Z?i-1 tag+i word NN basketNN +NNP +?i-2 word investments JJR7A`INjt@NNPSFx?RPQNNʡENNSx&ѿJJv/?VBN +RBZd;?i+1 word those JJ +VBDjt?PDTx@RBxDTM IN/$ @VBn?VBG-?NN$CVBNPnVBP+ @WDTli-1 tag+i word JJ laughNNX9v?JJX9vi-1 tag+i word NN tankVBN%CNN%C?i-1 word smallVBGX9vNN5^I VBN-JJMbVBZZd;NNS+@NNP rп i suffix ogiNNPV-?NNV-i-2 word intermediateJJCl?RBClǿi-1 tag+i word PRP$ thinkingVBGV-NNV-?i+1 word standards PDT^I +RBZd;ODTZd;O?VB(\VBGx&VBDmNNPMbX9JJ}?5^I@NNV-?VBP(\? i-1 tag+i word -START- northeastJJ~jtRB?5^I NNGzNNPL7A`@i+2 word catalogJJSq= ףp?RBSq= ףpտi-1 tag+i word -START- sheddingVBG/$@JJSNNSi+2 word ratingVBGmݿJJ!rh?NNPli word recruitingNNV-@JJףp= VBG rh i suffix ofsNNSK7A?NNK7Ai+2 word detainedNN?5^I VBD?5^I ?i+1 word efficientlyRBRM?JJRMi-1 word marcosesPOSrh|?''rh|i-1 tag+i word IN lesNNS~jtJJRףp= FWGz@i-2 word brooklynJJV-?NNPMbX9?PRP$MbX9VBNV-i-1 word taperingRPMbXRB?5^I @NNK7i+1 word anybodyVBNMb?RBB`"ٿINB`"?JJMb i+2 word barsNNSx&1NNGzJJjt?FWX9v?i-2 word ordinarilyJJS㥛?NNS㥛 i suffix IALJJ333333?NN ףp= NNPq= ףp@i-1 suffix ler NNPS/$VBDuV?VBNv/RB?5^I VBZV-NNP/$?JJGz?NNzG@VBP`"IN/$?NNS(\i-2 word attemptedNNOn?RBOni+1 suffix pen RBm?VBDx&1?JJRv߿JJ&1INMbDTT㥛 ?RPx&1RBRv?VBNRQ?VBP +i-1 word finkelsteinVBZ ףp= VBD ףp= ?i-1 tag+i word IN associatesVBZV-NNSV-?i-1 tag+i word NNS plummetedVBNjtVBDjt?i+2 word remarksVBNQ?JJQ޿i-2 word derivationJJ5^I VBD%CVBN-?i-1 tag+i word NNP errsVBDw/ԿVBZuV?RBGzi-1 tag+i word JJ keynesiansNNPSV-?NNSV-i word seagateNNP/$?VB/$i+1 suffix ttiNNʡENNPʡE?i-1 tag+i word CD chocolateNNV-?JJV- i word neigeNNGzFWGz?i-1 tag+i word NNP gatosNNPSx&1NNPx&1?i word advisesNNS+VBZ+?i-1 suffix ourNNSm?CCQ?RBS)\(?JJS)\(RBRx&1RB +οJJR?5^I ?CDKVBGX9v?JJ&1DTtVNNPK7FW|?5^?VBNʡEVBZsh|?VB+NNPS +οNNOn@INzG?i+1 word shakespeareRBrh|߿INrh|? i word sitVBPtV?RBtV i word stingyNNSJJS?i-1 tag+i word NNPS futuresNNPSy&1NNPy&1?i-1 tag+i word WRB excitingVBGX9v޿JJʡE?NNZd;Oi-1 word aggressivelyVBʡE?VBGS?NNK7A`VBDI +VBNv/?JJ +i-2 word infinitiVBZ ףp= NNPS~jtNNSZd;?JJSINS? i word sealedVBNʡE?JJMbXѿVBD333333ӿi-1 tag+i word JJ consolidatedVBNnNNPn? i word nightsNNPS\(\?NNS7A`?UHSRB-NNP\(\i-2 word blackstoneNNP?NNPSٿi-2 word acceptsJJ}?5^I?VBSNN|?5^?i+1 word barnsVB?5^I JJ?5^I ?i-1 tag+i word IN stayingVBG-?NN-i+1 word scheduledVBN$CRBsh|??NNSoʡ@NNPE@NNPSEVBGZd;OJJMNNʡEi-1 tag+i word JJ gnpNNMb?NNPMbi word inventoriesVBZ7A`NNSn@NN rhNNP㥛 i-1 tag+i word CC blastVB㥛 ?NNS㥛 i-1 tag+i word NNP initiativeNN-?JJ- i-1 word djiaRBv/?VBDv/i+1 suffix cdcRBʡE?NNPʡEi-1 tag+i word -START- sowsNNS/$?NNP/$i-1 tag+i word CC needMDX9v?VBClVBP rh?NNI +i+2 word deukmejianVBP1ZdNNP1Zd?i-1 tag+i word NNS transferredVBD(\¿VBN(\?i word tomatoesNNSZd;?NNZd;i-2 word sophisticatedRBK@IN|?5^NNPʡEVBG/$ٿJJףp= ?NN9v?VBP;Oni-1 tag+i word RB marketingVBG/$?NNףp= ?JJx&i-1 word slowedRBX9v?NNX9vi-1 suffix cil NNPSQſNN?5^I NNSENNPV-?VBDʡE?PDTʡEPOSʡE?VBP&1?VBZʡE?i-2 word acresNNSv?NNM?JJGzi+2 word referencesVBNoʡ?NN+?VBDoʡVBP+i-1 tag+i word JJ roommatesNNPSDlNNS\(\?NNPA`"i-1 tag+i word NNS easierVBPxJJR?RBOnRBR|?5^?i word admiresRBKVBZ&1?NNSB`"ٿi-1 tag+i word VBG acquiredVBNCl?JJCli-2 word sowetoVBK7A`VBDK7A`?i-1 tag+i word VB manufacturingVBGx&NNʡE@JJbX9i+1 word sensibilitiesJJ㥛 ?CD㥛 i-1 tag+i word NN boilingVBG5^I ?NN5^I i-2 word succeededDTS?NNPKVBGK?INSi+1 suffix seaVBGʡE?NNʡEVBD}?5^I?VBN}?5^IԿJJMbXٿNNPMbX?i-1 word raciallyVBuVJJuV?i-1 tag+i word -START- becomeVBjt?VBN1ZdۿNNPHzGi word blanketVBPjt@NNv/INV-i-1 suffix verCDbX9EX-JJEVBD ףp= ǿNNSK7A`RBR1ZdVBP-?NNP|?5^ٿCC'1ZܿRB(\?VBq= ףp?PDTd;O?NNPSZd;JJRK@VBNNbX9?VBZI +?PRPCl?RP㥛 ?NNZd;OIN rпVBGn FW(\?DT ףp= @ i word tellVB@VBDZd;VBPv@RBtVVBZFxDTFxNNP?5^I i word megabyteNNSjtNNv/?JJV- i word induceVBS㥛@VBPKJJS i word j.vNNPbX9?NNbX9i-2 word parentVBNJ +JJClVBDzGҿPOS(\?NNPCl?i word remainsVBZZd;@NNS7A`NNnVBDQVBPA`"JJ-i word paradoxVBZw/ܿNN)\(?JJQi-1 word prices RP!rh@VBD;On?JJRK7AпRBR r?VBP'1ZPRP rhJJjt?INV-ڿVB r@RB+NN rh?VBN+VBGS㥛i-1 tag+i word JJ floodingVBG$CۿNN$C?i-1 tag+i word VBG sandVBP= ףp=NNoʡ?RB/$i+2 word neitherRBm?VBNx?JJxֿINmi-1 tag+i word `` arbyNN~jtNNP~jt?i-1 tag+i word MD announceRBK7VBK7?i word criminalityNNV-?NNPV-i-1 tag+i word NN cos.NNPSq= ףpݿNNPq= ףp? i suffix .M.NNA`"NNPA`"? i suffix GHTNNv/?NNP-ۿNNPS{Gz i word rubinNNPSFxѿNNPFx? i+1 word votePRPoʡJJCl?VBZKCD)\(NNS㥻?POSuV@VBNvi+1 suffix ridJJV-?NNV-VBGʡE?i+1 word bouillaireVBZZd;VBDFxNNP`"@FWX9v޿i-2 word sluggishNNFxNNPS㥛?VBGtV?JJoʡi-1 tag+i word `` ideasNNSFx?JJFxɿi-1 tag+i word NN steadilyRBZd;O?JJZd;Oi-1 tag+i word : journalistsNNS+?NN+ i+1 word kernNNy&1NNPy&1?i+1 word slippedVBDZd;NNSZd;?NNX9v?JJX9vi-1 word splitRB%C@NNS㥛VBDʡEVBNʡE?JJ(\?IN/$i+2 word austinVBX9vNNSX9v?RB7A`IN7A`?i-1 word silveryRBX9vINX9v?i+1 word schoolNNRQJJ+@IN$C?NNS+NNP"~?NNPS9vi-1 tag+i word , showVBP1Zd?NNjtVBDS㥛i-1 tag+i word DT overseasJJ/$NNp= ףпNNPS?i-1 tag+i word CC aramidNN;On?JJ;Onҿi-1 word charitiesVBPnRBn?i-1 tag+i word '' calledVBNp= ף?VBDp= ףi word outgainedVBNS㥛VBDS㥛?i-2 word convertingNNsh|?տRB1ZdVBZHzGNNSHzG?NNPsh|??JJ1Zd? i-2 word royNN~jt?JJ~jti-1 tag+i word NNP pollinatedVBNV-?JJV-i+2 word leisurelyVBPZd;O?JJ+VBKi-1 tag+i word IN comparableJJI +?NNI +i-1 tag+i word VB feelingNNp= ף?VBVBG/$i-1 tag+i word VB defeatVBQNNQ?i+1 word standsFWDl?RBMb?NNT㥛 ?JJL7A`RBRMbi-1 tag+i word DT linkedVBNX9v?JJX9v i word chileNNZd;ONNPZd;O?i-1 tag+i word IN huskerNNPGz?NNGzi-1 tag+i word NNS fmNNPZd;VBP;OnJJx&? i+2 word auto NNPGzVBG+?CD?5^I JJ5^I ӿINZd;O?VBZ"~jDT/$?NNPSQNNףp= ?POS"~j?RBRJ +WDTˡEi+2 word espreNN ףp= ?JJR ףp= i-1 word pacificNNPSˡEĿNNPˡE? i suffix napVBPv/?JJ~jt?NNS(\VB(\?NN~jtVBDv/i-1 word slashVBG#~jJJMb?NNʡE?i+2 word developerCC +޿NNS +?i-2 word slimeVBbX9޿JJbX9?i-1 tag+i word IN maneuverNNSx&NNZd;?RBZd;Oi-1 word deliveringJJOn?NNOni-1 word remarkVBNrh|VBDrh|?i-1 word roderickRBl?NNPlڿi word empowerJJR333333VBP333333?i-1 tag+i word IN vitalJJ5^I ?NN5^I ۿ i+2 word onceWDTMb?RP"~?NNS㥛пNNP'1Z?RBR-?VBPV-WP#~j?DT9vNNSzG?NNPSzG?JJ^I +?INʡEJJR-RBffffffi-2 word illogicNNSnNNn?i word positionedVBDFx?VBN|?5^?JJjti+1 word frenchJJS㥛?RB7A`NNQi-1 tag+i word VBD tentativelyRPV-RBV-?i word retiredJJ333333@NNPQ?NNx&1VBD㥛 VBNuVCDCli-1 tag+i word NNP siemienasNNPSMbXNNPMbX?i+2 word hauntsIN㥛 NNS?5^I ?JJl?NNlNNPq= ףpi-1 tag+i word WRB handicappedVBNףp= ۿJJףp= ?i-1 tag+i word NN departedVBNClVBDCl?i word complexNNP;OnڿVBsh|?JJx&@NN!rhVBDQ޿RB`"޿VBZbX9NNSMbi-1 suffix vel DTQVBZ"~jIN㥛 ?NNPS{GzRPvJJMҿNN#~jܿRBRףp= ?WDTCl@RBQ?VBGQNNS{Gz?NNPCl i-2 word benVBZMb?NNS= ףp=NNPClɿNNPSCl?RB(\?NNMbJJHzGi-1 tag+i word DT feministsNNSI +?NNI +i+1 word millionNNPVB(\NN1ZdۿJJRL7A`CDV-2@JJT㥛 INL7A`?i word accomplishVBtV?JJtVi-1 tag+i word PRP$ rivalsNNSCl?NNCli-1 tag+i word PRP$ rulingVBG~jtÿNN~jt?i+1 suffix ranNNPGz?NNPSV-ϿJJX9vNNCl@VBNףp= CDClRB^I +i-1 tag+i word RB badlyRB`"?JJ`"i word tradersNNPSK7ANNSCl?NNP$Ci-1 tag+i word NN breaksNNS+?NNjtVBZףp= i+2 word metropolitanVBNS?VBDSi-1 tag+i word CC beatVBV-ڿNNB`"VBDrh|?i-1 tag+i word CC recordingNN7A`?JJ7A`ڿi-1 tag+i word JJ returnsVBZCl?NNSq= ףp?NNMbX i+2 word nziVBN?VBPi-1 tag+i word DT purposeVBPK7NNK7?i-1 tag+i word IN airlinesNNSrh|?NNrh|i word shipbuildingNNmR@JJxNNP/$?VBGw/ i word persuadingVBG`"?NN`"޿i-1 tag+i word RB throughNN/$RB?5^I ҿIN333333?i+2 word brushedVBN$C?JJ$Ci-1 tag+i word PRP$ cerealNN'1Z?JJ'1Z i word rightsNNPSuV@NNSQ?NNܿNNPjt i word incentiveNN1Zd@JJ{GNNPKi-2 word public NN{Gzt?VBDX9v׿VBN\(\?RB?5^I ?IN?NNSV-JJ{Gz?VBP/$WDTQDT̿NNPV-?VBGˡEi-1 tag+i word JJ supportNN~jt?JJI +VBMb?i+2 word potatoJJ{Gz?NNPffffff?NN ףp= RBbX9ƿINbX9?i+2 word movementJJM?NNMҿi-1 tag+i word CC furtherJJR +RBRCl@JJ'1ZRBZd;O?NNx޿CC(\"i-1 tag+i word -START- inventoriesNNSjt?NNP㥛 VBZGz i-1 word lureVBZQ˿NNSQ?RPjt?JJuVNN+?RBjtINd;Oi+1 word confrontationsVBGuVJJuV?i-1 tag+i word RB insertedVBNV-?VBDV-i-1 tag+i word NNP techNN-NNP-? i suffix SMUNNP&1?NNPS&1i-1 word donaldNNPK7A`?NNPSA`"NNSi-1 word laboratoriesVBG1Zd?NN1Zdۿ i+1 word fiveJJSMb?DTK7?NNS$CNNPx&1VBI +?NNI +?VBDn?RBRI +CD ףp= ?VBN'1ZVBZ/$?JJw/RBK7INT㥛 ؿVBPh|?5? i word salesNNP~jtNNSzG@JJZd;NNClCD+ӿ i word hessNNX9vNNPX9v?i-1 word cautiouslyVBv/VBP9vҿINsh|??i+2 word weaponsNNPVBG?JJV-?NNp= ףRBRDlCDZd;?RBK7A`i+2 word metalWDTClINCl?i+1 word producerVBNZd;?JJS?NNSſVBDZd;߿i-2 word appealsVBDMNNSClɿJJ)\(NNP)\(?VBZffffff?i-1 tag+i word NN onceVBZ"~jWRB\(\RB)\(?NNQINʡE@i-1 tag+i word VBD angeredVBNV-JJV-@ i-1 word man JJFxٿINQ?VBZS?NNP;OnNNvϿPRP?VBNy&1?NNSSNNPSClVBD|?5^ i word ambleVBd;O@VBPoʡJJ|?5^i-1 tag+i word IN setVBPJ +?NN'1ZVBDmi-1 word declineVBDuVRBRMVBN!rh?RBM?INX9v?VBZX9v?RPX9vJJ(\i+1 word finesVBZx&?NNx&ѿi+2 word pulledMDjtNNPjt?i-2 word accidentallyVBPʡEPRPʡE? i suffix nixNNPCl?NNSSRB{GzNN)\(i tag+i-2 tag DT NNP CD1Zd NNS-?NNPNbX9?JJQ?NNOnRBRMbVBPʡE?RBS㥛@INDl?VBZZd;VBGOnJJSClJJR +i-1 tag+i word DT ranksNNST㥛 ?NNT㥛 i-1 tag+i word CC doubtVBZ+VBFx?VBP`"i-1 tag+i word VBZ hitVBuV?VBPuVi word underutilizedVBNffffff?JJffffffi+2 word writerVBZffffff?VBP5^I JJ5^I ?MDffffffi+1 word defendVBPGzǿRBZd;O?JJ1Zd i suffix .12CDMb?NNSMbi-1 tag+i word JJ dependsVBZʡE?NNʡEi+1 word portfolioJJQNNS +οNNP~jt?NNMbVBD ףp= VBN{Gz?i-1 tag+i word NN stabilityNNS1ZdNN1Zd? i word teamNNsh|@VBZmͿWDT/$VBDB`"NNSZd;i-1 tag+i word MD sometimesVBGzRBGz?i-1 tag+i word CC broughtVBV-¿VBDV-?i word crashesVBZx&1NNSx&1?i+1 word sharkNN+?JJ+i-2 word cilcorpVBD)\(JJ)\(?i-1 tag+i word PRP wannaVBrh|߿NNPrh|?i+1 word tateishiJJ;OnNNP;On?i-1 tag+i word POS growingVBGʡE?JJʡEi-2 word vacationsNNSCl?RBClѿi-1 tag+i word NN improvesVBZ1Zd?NNS1Zdi-1 tag+i word DT subsidyNNSQNNQ?i word reportsNNP7A`VBףp= NNPSHzG?VBGNNx&1RBV-VBZ\(\NNSS@i-1 tag+i word VB belowRP?5^I IN7A`?VB^I +߿i-1 word magninRB^I +VBPٿNN+?i-2 word durableVBP?5^I NN?5^I ?i-1 tag+i word DT interiorJJK7A`NNPK7A`?i-1 tag+i word VBG graduateVB-NN-? i word bet VB/$?VBNm?JJjtDTʡEۿNNS rRB)\(@NN#~jVBD(\?VBPx&1i-2 word anscoNNPS}?5^INNP}?5^I? i+2 word ... VBNv?CD333333?VBP-RBy&1?INK7AпDToʡVBGDlNNq= ףp?NNS(\?JJR/$?JJGz?NNPQi-1 suffix rjrVBZQ?NNP/$ÿVBffffffNNPSV-NN7A`?POSRQ?VBPEi-1 tag+i word NNS planningVBGٿNN?i-2 word negligenceJJ r?NN ri-1 tag+i word NNP industrialsVBZ㥛 NNS7A`?VBDl i word lamentNNDl?JJDl i+2 word hadPRP$q= ףp?VBG"~jWDTmJJl?NNMb@RBl?NNPp= ף?RBRxINNbX9?NNPS333333VBZNbX9DTS㥛WRBQJJSM?VBDK7A?VBN r?VBP?5^I POSV-?VB?5^I @CC#~jRBSMNNSV-ǿEXV-JJRS㥛?i-1 tag+i word VBD thoroughlyRB+?JJ+ i word coarseJJuV?NNuVi-1 tag+i word : !DIGITSCDCl?NNPCli-1 tag+i word PRP followedVBP+VBD+? i+1 word cubNNh|?5?JJh|?5i-2 word standardizedVBZZd;ONNSZd;O?i+1 suffix HENUHZd;VBZq= ףp?NNPQINZd;O@PRP$7A`VBNMb?NN333333WRBsh|?JJn?POSCl@PRPzGRPPnNNSV-CD+?RBS?RBRK7?NNPSZd;OVBDm?FWMbRB-?PDTEJJRn?VBGK7?WDTK7A` VB?5^I ?JJS#~jܿVBP\(\׿DT%C?CCh|?5?i+1 suffix soxNNClNNPCl?i+2 word batesDT\(\NNP\(\?i-1 tag+i word VBD developedVBNʡE?VBDʡEi+1 suffix onoFW|?5^:@JJuVNNʡENNPli-1 tag+i word TO feasibilityVBS㥛NNS㥛?i-1 tag+i word JJ firesNNS-?VBZ- i-1 word heldWDTK7A`NNPNbX9?RPV-?RB9vNNS|?5^PRP$m?NNS㥫PDT+?RBR"~?VB"~ʿPRPQDTS㥛JJ1Zd?JJR rIN㥛 VBZn?i-1 tag+i word RB shopNN+?JJ+i-1 tag+i word CC punishmentNNP^I +NN^I +?i+1 word sterilizedDT{GzIN{Gz? i+2 word bitsRB%C?JJ%C i word bagsVBZV-NNSE?NNzGi-1 tag+i word , airlinesVBZoʡNNSoʡ?i-2 word boorishNNPV-NNV-@ i-2 word wordRP|?5^?VBGS㥛?JJS㥛IN|?5^i+2 word quantifyVBn?JJn i word driveVBPQ?JJIN+VB"~j?NNh|?@VBD~jti-1 tag+i word POS noDTV-?NNV-i-1 tag+i word PRP$ ghostJJSʡENNw/?JJZd;O׿i-1 tag+i word IN yugoslaviaNNS?5^I NNP?5^I ?i+2 word generatingJJX9vDTX9v?i-1 tag+i word TO exclusivelyVBnRBn?i-1 tag+i word VBP negotiatingVBGZd;O?JJZd;Oi+2 word smoothlyVBʡE?VBPʡEi-1 word convenienceNNPSA`"?NNPA`"i+1 word marshaNN$C?JJ$Ci word centralizedVBN|?5^ڿJJ|?5^?i-2 word hauntedVBZ= ףp=?NNS= ףp=i+1 word euroissuesVBD-ƿNNPSݿVBNx&JJ|?5^@i+1 word gradesJJMbX9?NNMbX9 i word youthsNNS-?NN-i-2 word transvestitesNN"~?JJ"~i-1 tag+i word CC congratulatedVBNFxVBDFx? i word idealsNN\(\ϿNNS\(\?i-1 tag+i word PRP$ biennialJJ+?NN+i word laboringVBGA`"?JJA`"i+1 word fellowVBNd;ONNMbVBDd;O?JJMb?i word professesVBZS?NNSSi+2 word accompaniesNNGz?JJGzi-1 tag+i word VBP blacksNNSS?NNSi-1 tag+i word DT allegedlyRB`"?JJ`"޿ i word bachNNlҿNNPQ?VBN+i+1 word spousesVBZrh|VBPrh|?i-1 tag+i word , wrightingVBGGz߿NN"~j@NNPxi+2 word bolsterJJ9v?RB9vi-1 tag+i word PRP enoughJJx?RBxi word energizedRBbX9VBNbX9?i-1 tag+i word CC ownVBv?INv i suffix USANN~jtNNP~jt?i-1 tag+i word NNP shoutingVBGRQ?NNRQi word bulliedVBDuV?JJuVi word liquefiedVBNM?JJM i+1 word itsVBPMbX9?WDTnINףp= ?VB@VBGv/ @PDTGz@CD&1JJZd;ߏ!CCQ@VBNX9vDT&1JJRNNI +NNSX9vRB= ףp=RP/$?VBZFx@NNP$CۿVBDHz@LS%C i word chevyJJClNNPCl?i-2 word storyJJS?INK7?VBNSۿRPS?RBjti-1 tag+i word DT viableNNSۿJJS?i word intrastateNN rhͿVBPJ +JJuV?i-2 word unswaggedVBGmտJJm?i+1 word anywayRBR%CJJR%C?JJd;OVBDd;O?i-1 tag+i word RB deliversNNSxVBZx?i-1 tag+i word -START- surveysNNPMbX9NNSJ +?RBʡEi-1 tag+i word CC argueVBuVVBPuV?i-2 word wisconsinNN +޿NNP +?i tag+i-2 tag NNP : NNPS-?VBZHzG?NNSNbX9пNNP?MD= ףp=VBK?NN"~VBD rh?JJZd;Oi-1 tag+i word CD minimumNNy&1?JJy&1i-1 tag+i word IN resaleRBK7AJJvϿNNx&1? i word creakVBrh|?NNSrh|i+1 word chiat\/day\/mojoJJV-?NNV-i-1 tag+i word DT meansVBZp= ףNNSzGJJRzGNNGz@i word internmentNNK7A`?JJK7A`i+1 suffix ejaVBZV-?POSV-i-1 word reactorsWDTzG?INzG i suffix FedNNS'1ZܿVBNm@NNFxNNPV-i-1 tag+i word NN appointeesVBZ;OnNNS;On?i tag+i-2 tag VBZ VBGNNK@CC/$?JJRQ?RBRQRB/$JJDli word operationsNNPMbXNNPSZd;O?NNSףp= FW$C@i-1 tag+i word VBG eitherJJʡECCCl?JJRA`" i+1 word sumsJJS?NNSi+1 word controversialVBD?VBPi word changesJJVBZ/$?NNST㥛 @NNPA`"ۿNNmVBPi-1 tag+i word WP$ americanJJCl?NNPCl i-1 word bonoFWx&NNl?NNP#~ji-2 word remainingNNS!rhJJS?NN(\µVBDQVBNQ?i-2 word equitiesVBGl?JJli-2 word regionNN#~j?JJ#~j i word rescueJJrh|׿VBSNN(\?i-1 word berryVBZMb?NNPMbi-2 word frustrationVBvVBG rh?NNX9vi word privacyVBNK7NNK7?i+2 word walterNNPSGz?NNPGz߿i-1 tag+i word VBZ assistantNN!rh?NNS!rh i word dayNNPV-?NNPSS㥛NNX9vi-1 tag+i word IN ultimatelyRBI +?JJI +i-1 tag+i word NN knownNNPʡEVBNʡE?i-1 tag+i word DT permissibleJJ+?NN+i+1 word angeloVBx?JJxֿ i suffix aim VBZx&NNV-@PDTSVBPzG?JJI +NNSClVB7A`?RBMbX9VBNX9v߿i-2 word appliancesNNS?JJSi-1 tag+i word JJ phrasingNN+?VBG+i+1 word waitingRB;On?INDTp= ף?NNS?RPFxCC i suffix .T.JJuVNNPuV?i-1 tag+i word PRP individualVBPI +NNI +?i-1 tag+i word NNS apartVBP&1NNSnRBCl?i+1 word checkoutNN{Gz?JJ{Gzi-1 tag+i word VBG standardJJn?RBK7A`RBRDli-1 word plantersNNPS rh?NNP rhi+1 suffix obsVBGV-?NNʡE?VBPK7A`տJJGzNNPK7?NNPSSi-1 tag+i word JJ endorsementNN333333?JJ333333ÿi-2 word complyVBGV-ͿJJtV?NNsh|?i-1 tag+i word NNS waitVBP/$?WP/$i-1 tag+i word JJ preventsVBZS㥛?NNSS㥛i-1 tag+i word -START- averyRBxNN(\NNP#~j?i-2 word redesignVBGoʡ?NNoʡi-1 tag+i word `` myPRP$5^I @NNClJJ!rhNNP333333i tag+i-2 tag WP :VBP$CRB$C?i word divestitureJJZd;NNZd;?i-1 tag+i word NN enoughVBZ/$JJHzG@RBx&NNZd;O߿IN~jti tag+i-2 tag ) PRP$JJ?NNS%CRBNN%C?i word investigatorNNףp= ?JJףp= ۿi-1 word solvesPDTp= ףRBp= ף?i-1 tag+i word DT smithsonianJJClNNZd;߿NNPʡE?i-1 word disclosingINE?DTEi-1 tag+i word DT shipbuildingJJjtVBGMbNNGz?i-1 tag+i word DT averageNNQ?JJ%C?NNSV-VBP~jtVBGףp= i-1 tag+i word VBG europeanJJX9vNNP5^I @CD~jt i-2 word need RB~jtNN7A`JJS$CJJR~jthVBPMb?WDTZd;?JJDlVBQ@NNSV-CDtV?RBR333333INZd;RBS$C?i-1 tag+i word VB gainVB5^I ?NN5^I i-1 tag+i word JJ industryNN(\NNP(\?i-2 word zurichJJRCl?RBRCli-1 tag+i word NNP fundsNNPSjt?NNSRQ@NNnNNPV-i-1 tag+i word IN panamaNNPS)\(ԿNNT㥛 NNPv?i-1 tag+i word NNP bonoFWl?NNPli-1 tag+i word DT deadlineNNd;O?JJd;Oi+2 word decliningVBGS㥛JJ r@NNzGJJRMi-1 tag+i word VBN resilientNNnJJn?"i-1 tag+i word -START- nonethelessNN rhNNPJ +RBZd;O@JJRCl i-1 word bandRB;On?NN;Oni-2 word abatementCC#~jNNE?JJ= ףp=i-2 word automatedVBGX9vNNPE?NNPS?5^I ?i-1 tag+i word DT secondaryJJoʡ?NNoʡi+1 word immediatelyVBZ"~jܿNNS"~j?NNPQ?VBG+?NN+RBSQ i-1 tag+i word -START- kirschnerNNP?5^I ?NN?5^I ڿi-1 tag+i word VBN technologiesNNPSOn?NNPOni-1 tag+i word PRP$ benchJJ/$ѿNNSSNNGz?i-1 tag+i word DT fiscalJJ +NN +?i+1 word ruralVBDGzVBZGz?i+1 word sweepingJJx&1VBDx&1?i-1 word money VBDFxINK7A?NNPV-׿NNPS5^I RBw/VBNn?WDTtVJJw/RPB`"?NNS9v?VBZZd;?VBG+?NNtV?i-1 tag+i word NN abusesNNS(\?NN(\i-1 tag+i word IN resigningVBG;On?NN;On¿i-1 tag+i word VBZ reviewingVBGQ?JJQi-1 tag+i word JJ illusionistNN rh?JJ rhi-1 tag+i word NNPS institutionNNZd;ONNPZd;O? i-2 word cibaNNPS1Zd?NNP1Zdi-1 tag+i word DT trulyNNS1ZdӿRB%C?NN1Zd i-1 word bidsVBD+?VBGX9v?VBN+RBRX9v i word set RBZd;VBDGz@PDT~jtVBPʡE?JJnNNSZd;VBsh|??NNCl?VBNm@VBZ +NNP7A`i-1 tag+i word , deregulatedVBNPn?JJ-ƿVBD(\տ i suffix HASVBZ\(\?NNS{GzNNP= ףp=i-1 tag+i word NN trainsVBZ+NNS+?i+1 word antidoteVBGJJ&1?NNMbX9 i word reinaNNS㥛NNPS㥛?i-1 tag+i word RB easyVBZV-VBJJjt?RBK7?i-1 tag+i word DT keyNNP= ףp=NNB`"@VBNJJ&1?FW rh i suffix tusINDlNNPʡE?NNףp= @VBD ףp= CDʡEJJ9vi-2 word refineryVBN&1ҿJJq= ףpͿNNP"~j?i-2 word northeastJJʡEVBPd;OֿVBN?5^I ?NNd;O?NNPX9v? i+1 word cdsVBZQNNS-NNPzGʿJJ= ףp=?NNMbJJRv@RBT㥛 ?i-1 tag+i word `` armsDTQNNSZd;?NNP1Zdۿi-1 tag+i word -START- creatorNNP rh?NN rhѿi word freshmanNN rh?NNP rh!i-1 tag+i word -START- birminghamRB&1NNP&1?i-1 tag+i word CC focusVBbX9@VBPZd;O?NNSV-NN333333JJx&1i-1 tag+i word CC driversVBK߿NNSK?i-1 word rememberedRBST㥛 ?JJST㥛 i-1 tag+i word NNP redNNPS\(\JJNbX9?NNPjtԿi+2 word wirthlinNN{Gz?RB{Gzi-1 tag+i word DT batNNSMbX9ԿNNMbX9?i-1 tag+i word VB immunityNNT㥛 ?JJT㥛 пi-1 tag+i word JJ countyNNV-?JJV-i-1 tag+i word '' themeJJ(\ȿNN(\?i-2 word bitingVBZ|?5^ѿPOS|?5^?i-1 tag+i word CD higherRBR(\?PRP$7A`VBNjtNN/$ۿJJRx&1?i-1 word politicianNNףp= VBDQѿVBGףp= ?VBNQ?i word meritorNNGzNNPGz?i-2 word secretNNGzJJGz? i word glossyIN+NNSQJJ5^I @NNClNNP|?5^i-1 tag+i word DT pamperedVBN(\JJ(\? i word shelfJJd;OVBZZd;OͿNN-F@VBDZd;OVBPsh|?PRPT㥛 i-1 tag+i word VBZ marianJJMbNNPMb?i-1 tag+i word TO growVBL7A`?NNSL7A` i suffix ouzJJ+NNP+?i-1 word lebaneseNNP rؿJJ r?i-1 tag+i word POS existingVBG\(\?JJ\(\߿i-2 word tourismVBNʡEƿJJʡE?i+1 word lubkinNNPuV?NNPSuVi-1 tag+i word MD helpVBX9v?JJX9vi-1 tag+i word JJ rightNN/$?RBMb?JJv׿VBDrh|i-1 tag+i word VBG fathersNNPS+NNSK?NNPʡEͿ i-2 word rushVB/$?JJ/$i-1 tag+i word CC deceptiveVBPV-JJV-?i-1 tag+i word NNS forcedVBNClVBDCl?i word dialysisNNx&1?JJx&1i-2 word mcmasterJJHzGRBR9vJJRV-? i-1 tag+i word -START- hopefullyRBK7NNPK7?i-1 word triggeringRP/$JJ/$?i word falloutNNSSNNS? i word risesVBZPn?NNSPn i-1 word sexVBZV-?NNSE?NNPʡEi-1 tag+i word , risingVBGOn?JJOni+1 word glennVBZoʡ?NNSoʡi-1 tag+i word -START- tendersNNSx&?NNPx&i-1 tag+i word VB solvingVBGffffff?JJffffffi-1 tag+i word POS targetsVBZ~jtNNS~jt? i-1 word formJJRK7?NNMbX9RBR㥛 i-1 tag+i word NNPS blacksNNS9v?VBZ9vi-2 word generaleVBDZd;VBףp= VBPK7?i-1 tag+i word NN demonstratesVBZףp= ?NNSףp= i-1 tag+i word NN leadsNNST㥛 VBZT㥛 ?i-1 tag+i word VBG bullNN$C?VBD$Ci word appearingVBGq= ףp@NNq= ףp i word ingestVB-?VBPʡEVBDi-1 tag+i word NNS shirtsVBZV-NNSV-? i suffix ors VBlVBP\(\DTNNS rh2@NNPPnNNPSn'@RB^I +NN?5^IL#VBD;On CCK7AVBNKJJ#~jVBZsh|?@i-1 tag+i word IN temperaturesNNSʡE?JJʡEi-1 word carefulNNzGNNSzG?i-1 tag+i word CC !HYPHENNNˡE?JJS rhNNSC@NNPffffff޿VBףp= ?CDClӿRBPn?VBDjtINVBZ/$JJR~jtVBN\(\?DTMbNNPSClVBGPnJJQi word populistJJ5^I ?NN5^I i-1 tag+i word , friendsNNPSx&1@NNS#~jNNPi word extremeJJFx@NNPjtNNMbȿRBh|?5VBNm i word tapVB"~?NNS㥛RB"~j i-1 word eastNNˡE?VBP~jtJJ$C?VBZ`"NNSx&1@NNPHzGNNPSX9v i-1 word bachJJ+?NNP+VBZlڿPOSl?i-1 tag+i word NNP issuersNNPS7A`¿NNS7A`?i-1 tag+i word NNS contestVBPB`"ɿJJS}?5^INNbX9?i-1 tag+i word VBP valuesVBZlNNSl? i suffix I.NNx@NNPxi-1 tag+i word -START- butchNNP{Gz?NN{Gzi+2 word turbineVBNGz?JJsh|??NNDl i-1 word ?NNA`"ۿNNPx&1''\(\?UHzG?POS\(\i-1 tag+i word NNS angryJJL7A`?VBDS㥛VBPv/i-1 tag+i word NNS startVBN~jtVBD~jtVBd;OVBPjt @i-2 word requireVBGNNSffffff?NNSJJ9v?i-2 word zeffirelliVBN'1Z?VBD'1Zi+2 word sterilizedVBNFx?JJFxi-1 tag+i word DT sublimeNNSJJS?i-1 tag+i word VB damagingVBGbX9?JJbX9i word provokingVBG#~jJJ#~j?i+1 suffix eirCCS?VBP+ @WDT&1VBy&1@RPS?JJ/$NNuVVBDm?RBGzVBZMbNNSʡEFWoʡVBNV-CDRQNNPmPDT"@POS(\@INbX9?VBGl@DTMҿi word waterworksVBZMbNNPS333333NNSX9v>NNQ@NNPjti word patternNNZd;O @JJZd;O i word treasurysNNPSsh|?@NNPsh|?i+2 word triggeredRBL7A`NN+?WDTT㥛 ?JJzGINK7ѿNNP+?i+2 word soaringVB}?5^I?VBP|?5^RB +i-1 tag+i word `` payVBP\(\NNQ?RBRQJJxƿi-1 tag+i word NNP yesNNS1Zd˿UH1Zd?i word sensationalJJV-?NNV-׿i-1 tag+i word NN drippingVBGCl?NNCli-1 tag+i word IN drivesVBZʡE?VBDʡEi+1 word murdochNNP(\?NN(\ؿ i word aichiNNPClVBPlNNS"~@i-2 word commonsWDTZd;INZd;?i tag+i-2 tag PRP$ , JJS rhVBN/$@RBjt?NNSQVBGMbX?NNMbRBS rh?NNPʡE?JJZd;O?CCnJJR(\i-1 tag+i word IN likelyRBZd;?JJZd; i-1 word too VBP~jtJJA`Т@INV-VBNbX9RBQ@VBDMbVBN rh?VBG{Gz?NN(\NNSCli+1 word rivalryJJZd;?NNZd;i-1 tag+i word NN advisoryNNSQNNX9v?JJ`"? i-1 tag+i word -START- generallyRBCl?NNPClӿi-1 tag+i word JJ heritageNN7A`¿NNP7A`?i+2 word doing RBS㥛?NN rhPOS1ZdӿWDTGz?NNP"~jVBNx&1@JJx&1VBZ1Zd?DTGzi-1 tag+i word NN centerVBmݿNNE?RBRA`"ۿJJR&1VBPB`"@RBsh|?i-1 tag+i word NN entitlesVBZx&1?VBDx&1i word coachingVBG\(\NNn?JJMbX9i-1 tag+i word DT essentialJJQ?NNQi-1 word peccadilloesVBG rhRB%C?NNZd;Oi-1 tag+i word IN burnNN~jtпVB}?5^IVBPx&1@NNSCli-2 word peaceVBS㥫?FWT㥛 ?NNx&1NNP5^I ?VBD1Zdi-1 word problems JJT㥛 ?VBDrh|?VBN rWDTRQ?INoʡVBK7ARPA`"?NNd;OVBPZd;@RB~jti+1 word throughoutNNS+?VB1Zd˿NNPSRQNN(\?VBPʡEVBZSi tag+i-2 tag NNS NNNNMbCD̿MD+?JJSClVB rh?SYMMbX9NNPjtVBGVBNS?VBPGz?VBZ9vڿNNSMPRP$ffffffPRPMbX?RBRZd;?VBDv/?CCL7A`DTQ?RB1ZdۿRBSSӿEX"~JJR?5^I WDTʡE?JJ/$?POS\(\?NNPS rhRP|?5^@LS ףp= INCli word midweekJJ\(\?NN\(\ i word illNN ףp= RBJ +?JJˡE?i word contextNNSI +NNuV?JJ/$ i suffix 0ZXNNP`"@NNSL7A`JJV-CD rh i+1 word bombardedNNSv/?NNv/i-1 tag+i word CC shapesRB/$VBZClۿNNSS㥛?i tag+i-2 tag : RPVBDB`"ٿWDTsh|??NNsh|?JJB`"?i-2 word integrationJJjtNNP$C?NNK7?i+1 word carolJJOn?NNV-NNP?i-1 tag+i word JJ frenchNNPʡEJJ-F@NN333333i-2 word burbankNNPS|?5^ڿNNS|?5^@NNP/$i-1 tag+i word DT formNNSxNNx?i-1 word coldwellNNPSA`"NNPA`"? i-2 word went JJX9vRBR~jt?JJR-RB +VB(\NNʡE?VBNQ?INʡECDn?NNS?i-1 tag+i word -START- pfizerNNS5^I NNX9vNNP?i-1 tag+i word DT slushNNT㥛 ?JJT㥛 i-2 word surprisingNNPffffffNNPS/$?RBq= ףp?NNK׿INq= ףpi-1 word cosmeticsVBPI +VBG5^I NNT㥛 @i-1 tag+i word DT landslideNNV-?RBX9vJJZd;i-1 tag+i word VBG demandVBV-NNV-?i word relevantVBPZd;OJJ@NN"~VBvi-1 word consolidatedNNPS/$JJbX9?NNbX9NNP/$?i-1 word weakeningNN+?JJ+i-2 word opportunisticVBGy&1NNy&1? i suffix TedNNPjt?DTI +JJ/$i-1 word southwestNNPSK?NNoʡտNNP(\ؿi-2 word model NNPˡEVBN= ףp=?VBPS㥛?JJm?NNS{Gz?VBS㥛ܿNNmVBD= ףp=CDtVi-2 word stehlinVBZFx?VBPFxi-1 tag+i word VB homeVB333333NNrh|?RBjt?JJRQi-1 word politiciansRPʡERBMbXNNxVBDV-VBN`"@VBPPn?JJZd;OINʡE?i+2 word clearlyMDS?VBPSNNSQNN|?5^?JJV- i-1 word hisVBrh|VBDRQJJSV-?RBS/$?VBN+׿JJh|?5ֿNNPS rпRB9v?CCnVBPSIN$CCD~jth?NNSK7?VBGK7@NNPx&1NN rh @RBRp= ףVBZʡEi-1 tag+i word , attemptsVBZ!rh?RB!rh i+1 word eastJJʡENN/$VBNK7RBvINv?NNP^I +@ i suffix akuNNPSzGʿNNPzG?i-1 word nursingNN333333ÿJJ{GzNNPZd;O?i word austrianJJd;O?NNPd;Oi-2 word registeredINoʡ?JJCl?WDToʡVBN-NNx&1i-1 tag+i word -START- jewelryJJSZd;ONN?NNP ri-1 tag+i word NNS peugeotNNPSX9vNNPX9v?i-1 tag+i word WDT serveVBPGz?JJGzi-1 tag+i word CC uncommonVBP= ףp=JJ= ףp=?i word ferruzziNN-ӿNNP-?i-1 tag+i word NNS commentaryNN rh?JJ rhi-1 tag+i word TO upVBSRBˡE@IN)\(i word solidlyVBNmRBS@NN`"JJ1Zd i+2 word }INX9v߿NNPMbVB;On?NNPSSNNM?FWx޿JJRMbX9JJZd;O?i-1 tag+i word IN closeRB}?5^I @NNGzJJxVBD^I +i-1 tag+i word CC biddersVBZ~jtNNS~jt?i word firmingVBG(\?NN(\i-1 tag+i word DT fairnessNNˡENNPˡE?i+2 word interiorNN(\RBsh|?INsh|??VBP(\?i+2 word consolidatesDTlRBl? i word recentVBQJJX9v@NN1ZdNNPZd;i-1 word arabianNNPS\(\?NNP\(\ i+2 word ltvNNS)\(RBtV?NN~jti word geneticistNN= ףp=?JJ= ףp= i suffix -upVB ףp= JJK7NNX9v?RBuV?NNSB`"ٿNNPrh|Ͽi-1 tag+i word PRP choseVBDˡE?VBPˡE i+1 word cowsJJQ@NNPV-NNPS+VBNI +i-1 suffix namNNS"~NNPClNNPSE?VBPClJJ^I +VBZK7@i+1 word orderedNNPSףp= RBtV?NNtVNNPףp= ?i-1 word worst VBKNNGz?VBDoʡJJSDlVBGB`"?VBP"~j?JJʡEVBZʡENNSʡE?i+1 word playersNNPGz?VBV-RP+NN7A`@JJQi+2 word cloutVBZ/$?JJS/$JJ~jt?NN rhRPX9v i+1 word edtRBx?JJlNNпi+2 word planningJJ|?5^?NN|?5^i+1 word cultureNNPS rJJv@NNx&1NNPV-i-1 tag+i word NNS slippedVBP\(\VBN-VBD rh?i-1 word deficitNNSSۿVBNCl绿VBDCl?VBZS?i-1 tag+i word , duodenalJJ~jt?NN~jt i+1 word randJJNNP?i word integratedVBNE?JJw/?VBDx&1 i word fannedJJ#~jVBD#~j? i+2 word same PDTOnVBPV-?VBZ= ףp=VBx&1VBDGz׿WDTQJJ1ZdIN5^I ?DTOn?RBS㥛@VBN/$ӿi-1 tag+i word IN estimatesNNSV-?NNV- i suffix LedVBN$C?NNzGNNPS㥛i-1 tag+i word JJ popNNSZd;ONN rh?JJ/$i word wilfredNNPV-@VBNNbX9JJ~jtVBDrh|?i+2 word overlapNNP|?5^?NNPS|?5^i-1 tag+i word CC thoughtVBDx&1?VBRQȿVBNx&i+2 word finishVBP%CԿNN%C?i+1 word brands CDMbXVB;On?VBGd;O?NNq= ףpVBD9v?NNSv/NNPlq@JJx&1CCZd;VBN9vʿRB- i-1 word hairVBG(\?NN(\i+2 word littleRP'1Z@DT&1?NNPZd;?VBP;OnEX rh @JJPnINʡEVB?RBT㥛 NNsh|?VBDm?VBN`"NNSB`"?NNPSʡEi+2 word quiteNNPx&1?INSNNPSx&1RBS?i+2 word willingnessDTV-INV-?"i-1 tag+i word -START- prospectiveJJh|?5?NNh|?5i+1 word adhesivesJJuV?NNuV i+1 suffix 'sVBZK7EXv/@VBG7A`?RBS/$RBRʡERB rhNNSy&1INJJRMbX9DT`"?NNPV-@NNPS-@VBN+JJNNGz @VBDSVBV-ϿWRBy&1?CC?5^I ڿVBP}?5^I@JJS?5^I PRPK7A @WDT"~j?CDS㥛FWoʡ?UH9vWPK7A@i tag+i-2 tag . PRP''\(\?POS\(\i-1 tag+i word IN permissionNNˡE?JJˡEi-1 tag+i word , fixVBGz?VBDGzi+1 word hugelyVBZL7A`堿POSL7A`?i-1 tag+i word IN estimateNNB`"ٿNNPB`"? i word paradeVBNbX9ؿNNPNbX9?i-1 word trottedRPM?INMҿ i word bbnNNPS}?5^INNP}?5^I?i+2 word shirtNNS㥛 ڿJJ~jt?NN+i-1 tag+i word IN polyconomicsNNPS(\NNP(\?i-1 tag+i word PRP$ consultingVBGv/@NNK7JJףp= i+1 word gopVBGA`"JJA`"? i word rockVBZ+߿NNS1ZdNNS㥛@JJX9v i+1 word busyRBx?POS+JJV-߿INB`"VBZ+?i-1 word succeedsVBNZd;JJsh|?INʡENNP(\?RBʡE?i-1 tag+i word POS innovativeJJ ףp= ?NN ףp= ߿i-1 tag+i word VB comeVBCl?RBCli-1 tag+i word NNS officialNNL7A`?JJL7A`i word arousesVBZQ?NNSQi-1 tag+i word NNP listedVBNʡE?VBDʡE i-1 word same INjt?NNS?5^I RBJ +VBD/$޿VBNx&?JJ'1ZVBGy&1NNDl?VBPlNNP|?5^@i word glamorousNNP^I +JJ rh@NNK i-2 word anRBxNNSCl?RBSCl?NNPS"~jJJSNbX9VBPQNN|?5^@NNPS㥛VBRBR rh?JJRCl?VBDSӿWDT rh?RPq= ףpFWK7A`INvVBNZd;ODTlVBZ~jtCDJ +@VBGjt?JJq= ףp? i+2 word rareNNSp= ף@JJ(\?NN(\NNPnNNPSli-1 tag+i word DT idealistNN+?JJ+i-1 word disruptionsRPSINS?i-1 tag+i word JJ arguesVBZ9v?VBP9vi-1 tag+i word RB awayRPX9v߿RBbX9@INK7VB|?5^VBD+i-2 word discothequeJJh|?5?NNPh|?5i-1 tag+i word JJ rulesNNSm?NNmi-1 word investment NNPS+@RBZd;O׿NN9v@VBDnVBNFx?JJMbXNNPS㥛VBGˡEVBZ+?NNSJ + i word l.p.NNK7@NNPK7i-2 word deserveNNʡE?VBʡEi-1 tag+i word POS failedVBNn?VBDni+2 word jointlyNNK7NNPK7?i-1 word targetVBG㥛 ?WDTMbX9?NNX9vJJ?INMbX9Ŀi-1 tag+i word PRP seesVBZK7A`?JJp= ףVBDGzi-1 tag+i word VBG punitiveJJGz?NNGzi word undergirdingVBG/$NNףp= ?JJ rؿi word thoroughfareEXClNN~jt?VBQi-1 word similarNNPSV-NNSCl?NN!rh?JJ$CӿCDV-i-2 word demand NNQ VBD%CVBNK?VBP +@INlVBx&?JJbX9 @VBGT㥛 NNSV-?NNPB`"?RPI +@RBS㥛 i-1 tag+i word DT austrianJJd;O?NNPd;Oi-1 tag+i word JJ bacteriaNNS7A`?JJClNN~jtۿi+2 word reinsRPI + @INI + i-1 tag+i word NNS dispersedVBN?5^I VBD?5^I ?i+1 word alfredVBN|?5^?VBD|?5^i-1 tag+i word DT federallyRB(\?NN(\ i word viningVBGZd;ONNPZd;O? i word frameJJlVBD +NNzG?i-1 tag+i word NNP comingVBGlJJl?i-1 tag+i word `` embarrassmentNN~jt?JJ~jti word furthermoreINNNPZd;ONN rhѿRBRHzGѿJJRffffffRBNbX9 @i-1 tag+i word DT uncoveringVBGB`"?NNB`"i-2 word franchisersJJˡENNˡE@i-1 tag+i word POS betaNNMb?JJKNNPFxi-1 tag+i word DT initiativesNNSv?NNvi-1 tag+i word VB leadingVBGMbX9?JJMbX9i-2 word electromagnetsJJ rhVBP(\NN/$?i word conduciveVBbX9JJbX9?i+1 word realismJJ!rh?NN!rhi-1 word salvageNNClNNPCl?i-2 word hostileINZd;VBZS?NNSSVBtVNNB`"@VBDx&1ܿVBNZd;i word colombiaNNK7ANNPK7A?i word musiciansVBZnNNSn?i-1 tag+i word IN travelNNh|?5?NNP{Gz?NNSffffff i word grainsNNSV- @NNPV- i-1 tag+i word NNS recordedVBDlVBNzG?JJ7A`i-1 word legitimateVBG/$NN`"?JJ|?5^i-1 tag+i word DT aircraftJJjtNNjt?"i-1 tag+i word -START- commissionsNNS/$?NNP/$i tag+i-2 tag CD VBPVBDV-տIN)\(?JJEпNN/$i-1 word consecutiveJJRQ?RBS㥛NNSףp= i-1 tag+i word -START- flightNNPKǿCDMbXNNK7A?i+2 word nasdaqVBuVVBPuV?VBG+NN+?i+1 word alleged''rh|POSrh|?i-2 word annuityJJSNNPS?i-1 tag+i word PRP awayRPMbXRBMbX? i word airedVBN1Zd?JJ9vVBDB`"?i-1 tag+i word DT certificateNNq= ףp?JJq= ףpͿi-1 tag+i word PRP playVBM?VBP"~jܿNNx&1пi-1 tag+i word `` slimeNN?5^I ?JJnRBS㥛Կi-1 tag+i word NNS constituteVBP\(\?JJ rNNKi-1 word existRB(\IN(\? i-1 word imaVBPNNS +?RB?NNPnNNPSMbX9Ŀi-1 word economiesVBPMbX9?NNMbX9i+2 word investigatorsJJV-?VBD/$޿CCVBP?VBNRQi-1 word unavailableRBFxINFx?i+2 word explainingNNPSQNNPQ? i word mildJJ +?NN +i-1 tag+i word `` findNNSVBS?i word profitsNNPnNNSPn?NN(\ſi+1 word comedyJJ|?5^?NNp= ףؿNNP rhi+2 word supplyVBDp= ף?VBNjt?CDQJJ'1Z?VBZ(\?NNS(\NNʡEi word rigidityNNS~jtNN~jt?i word provigoNNPS&1ʿNNSZd;ONNK7ANNP^I +?i word measuringVBG\(\?NN\(\߿i-2 word soundedNNq= ףp?JJq= ףp i-1 word flawWDT= ףp=?IN= ףp=i word rearingVBG\(\NN\(\? i+1 word toolVBGX9v?JJDl?NNL7A`?NNPDl i word yaabaUHQ޿NNq= ףpNNPffffff?i-1 tag+i word PRP$ yearlongNNPnJJPn? i word sisuluNNPSDlNNPDl?i+2 word whirlwindsVBS?JJS i word leeryJJI +@VBP$CNNsh|?RBx&1i+1 word reactedRBI +NNPI +?i+2 word differencesVBP%C?NNX9vVBS?i+2 word combiningJJZd;?RBRZd;VBD rh?VBN rh i suffix elaNN{GzܿRBlҿNNPʡE? i suffix armNNP&1VBSJJ5^I @NN)\(@JJSSRB|?5^NNSV- i word sequelNN/$?JJ/$ i-1 word hotNNS5^I ?NNCl?RBp= ףVBZmi+2 word alienatingINy&1NNSGzNNtV@NNP?5^I ҿi-1 word documentsIN`"?WDT`"VBNQ?VBDQi+2 word unsettledWDT9v?IN9vi+1 suffix fedVBDjt?VBNjtJJHzGNNPQ˿RBX9vNNV-? i word mellowJJ|?5^?NN|?5^ i-1 word easeJJ;OnINNN}?5^I?i+1 word airingINT㥛 JJ(\?NN1Zd i word ciaNNPSʡENNI +NNPx&1@i-1 tag+i word -START- ethicistNNT㥛 ?JJ7A`ڿNNP + i+1 word vaseNNPGzJJGz?i-1 tag+i word NNP courtsNNS7A`?NNP7A`i+1 word firesJJNbX9?NNNbX9i-1 tag+i word NN accompaniesVBZX9v?NNSX9vi-1 tag+i word PRP$ originalJJI +?NNI +i-1 tag+i word VBZ fairJJp= ף?NNp= ףi-1 tag+i word CD metropolitanNNˡEJJˡE?i-1 tag+i word , resinNN~jt?JJA`"VBDx&1ܿi-1 tag+i word DT saggingVBG{Gz?NN"~j?JJ/$i-1 tag+i word NN offIN\(\@RPx&1NNK߿VBDOnCDmRBd;O?i-1 word bossesRP?5^I IN?5^I ?i-1 tag+i word NN fearsomeNNS+JJ+?i-1 tag+i word DT lecturerJJRʡENNʡE?i+1 suffix ims VBGZd;O?JJx&1NNPV-VB|?5^NNjt@JJS㥛 ?VBNx&PRPx&1NNS}?5^Ii-1 word hardestWRBOnVBN/$@NNoʡi-1 tag+i word VBG premiumCC/$JJ/$?i+2 word plansWDTnѿVB@NNPS"~JJRI +VBN!rh?JJMbX9FW}?5^I̿RB`"?NNPp= ף?DT/$?NNSRPn?NNK7VBDPnпINn?i-1 tag+i word DT weeklongNNV-?JJV-i+1 word polandNNP?5^I VBDZd;?INx?RBxJJV-i-1 tag+i word DT viewsNNSy&1?NNy&1i-2 word balloonIN+NN+?VBD+?VBNI +?VBP+WDT+?JJv/i-1 tag+i word , marketingNNSVBGMNNM@i-1 tag+i word RB opposesVBZx?INx i-1 word songVBNoʡ?VBDoʡi word investigatingVBG;On?JJ;Oni-2 word staffersVBDM?VBNMڿJJrh|?VBZp= ףNNSp= ף?VBrh| i+1 word kingNNPA`"?RBh|?5JJ&1?NN~jtпINMi-2 word fisheryJJ rh@NN rhi-1 word artistVBGI +޿NNPI +?i-1 tag+i word JJ debtsNNS|?5^?NN|?5^i+1 word jointsVB/$JJGz?NNS?i-1 tag+i word NN shimmeredVBNjtԿVBDjt? i-2 word fujiVBK7RBK7?i-1 tag+i word VBD convincedVBNQѿJJMbX9?VBDI +ֿi-1 tag+i word CC walletVB|?5^NN|?5^?i word backbenchJJGz?NNGz i-1 word trueIN rRB"~?NNI +?JJ~jt?i-1 tag+i word NN fuelNNSˡENNˡE? i word humanaRB9vNN9vNNP+@i-1 word unfortunatelyVBZ-?VBNK7A`տJJQVBDv/?i-1 word mailersVBPA`"VBN333333?VBDMb`i-1 tag+i word CD summerNNPS!rh?NNP!rh i word forgeVBS㥛?JJS㥛NN5^I ۿNNP5^I ?i-1 suffix lewRPRB rhINffffff @i-1 tag+i word NNP tellVBPFx?VBZFx i+1 word seemNNS333333?NNFx?WDT rh?JJV-IN rhVBZX9vi+2 word environmentPDT$C?JJV-NNRQi-1 word unifirstVBNGzVBDGz?i-1 word chainWDTCl?JJQINClNNxVBDn@VBNh|?5i-1 tag+i word JJR swapJJ"~jNN"~j?i-1 tag+i word NNS developVBDKVBK7AVBP-?i-1 tag+i word NN fundingVBGlJJ#~jNNףp= ? i+1 word capJJ~jt?NNh|?5VBD|?5^NNPS㥛i-2 word demonstratedJJOn?VBN/$NN#~j?i-1 word confusionWDTMbX9INMbX9?i+2 word rangedVBNjtJJd;O@NNPV-i-2 word couplesJJQ?RBQ i suffix artRBCl@NNQ?VBDSRP|?5^?NNPʡE?VBbX9@NNPSbX9VBGV-FWClJJ333333?VBNh|?5VBPQ?INMbNNS9vVBZT㥛 ؿi-1 tag+i word VBG chewedVBN)\(VBD)\(?i-1 word through JJMbX9VBNA`"@RB +οINMNNS-?VBG|?5^NN~jtؿVBD{GzRBSq= ףpտJJSq= ףp?DTM?NNP!rh̿i-2 word dickensNN+NNP+?i+2 word polandCDjt?VBX9vNNx?JJ?5^I i-1 tag+i word WDT perpetuateVBPMbX?VBMbXi-1 word unlikeNNPnпRBSA`"JJSA`"?NNPx&NNPS?VBGd;Oi-1 tag+i word VBZ tradeNN+?VBD+ i suffix ealVB㥛 @NNPS9vڿVBD"~NNS|?5^JJsh|?@JJSFxVBNZd;VBZV-NNPp= ףNN-@PDTK7RBK7A?INClVBPGz?i-1 tag+i word IN creditJJKNNPK? i word posedVBDK@NNzGVBN5^I JJd;Oֿi-1 tag+i word PRP$ hobbyNNPS㥛ؿNNS㥛?i-1 tag+i word JJ namesNNPS|?5^NNS|?5^?i-1 tag+i word VBD uneventfulJJףp= ?RBףp= i+2 word cleansVBy&1WDTʡE?NNjt?RB ףp= ׿INʡE i+2 word upVBNMbXɿDTX9v?CDT㥛 ?VBPoʡVBZCl?NNSQ8@NNP JJSVBD/$?''Zd;WDTףp= @FW$CRB rh@VB"~jPDTX9vINˡEVBGx&1?JJL7A`WPNNK7A@POSZd;?NNPSp= ף@i+2 word movieJJS?NNSi-1 tag+i word JJ prosecutorsNNSx&1?NNPx&1i-1 tag+i word NN interviewerNNˡE?RBˡEi+2 word germanVBGX9v?JJףp= NNMbX?RBףp= ?VBZ?NNS#~ji-1 tag+i word JJ lexingtonNNrh|NNPrh|? i suffix HadVBDCl?WRBMbXINX9vi+1 word crackdownJJq= ףp?NNq= ףpi-1 tag+i word PRP progressVB|?5^?VBPFxٿNNi-1 word splashyNNV-?JJV-i-2 word archedJJ5^I ?NN5^I i-1 word intactJJK?NNKi word herbicideNN/$@VBNV-߿CDSVBP rhJJZd;ONNPV-i-1 tag+i word MD emergeRB&1VB&1?i-1 tag+i word JJ profitabilityNN rh?JJ rhտi-1 tag+i word NNP issuesVBZB`"ѿNNSFx?NNP~jtx?i-1 tag+i word IN epinalersNNPSS㥛?NNSS㥛i+2 word coughedVBPV-NNV-?i-1 word increasedIN333333NNS㥛?JJ)\(?RB333333?NNPSi word disarmingVBG&1?VB&1i tag+i-2 tag : :DT}?5^I?NNrh|?NNPjti-1 tag+i word IN allianceNN)\(?JJ)\(Կi+1 word defianceJJQ?NNQۿi-1 tag+i word RB makeVBDzGVBZ'1ZVBV-?VBPпi-1 tag+i word VBD publishedJJT㥛 VBNT㥛 ?i-1 tag+i word NN bipedNNS?VBDSi-1 word adobeNNPS%CNNP%C? i word sfxVBZOnNNoʡNNPtV?i-1 tag+i word VBP expendableJJMb?NNSMbi-1 tag+i word TO unblinkingVBGuVJJ|?5^?NNffffffi-1 tag+i word DT peruvianJJ rh?NNP rhi+1 word threatensWDT&1?IN&1ʿi-2 word navigationNNL7A`ؿNNPL7A`?i+1 word dictatorJJ+@NNP+i-1 tag+i word IN whittakerNNP|?5^?NN|?5^ҿi-1 tag+i word IN jetlinerNNffffff?JJffffffi-1 tag+i word VBD asRBEINE?i-1 word postalVBZl?NNSli+2 word kabulNNSv/?NNv/i word raucousJJtV?NNtV i word flickNNX9v?JJRQNNP^I +i-1 suffix llsVBNRQ?VBPMb?PRPV-NNFxNNS ףp= RBROn?RB^I +?DTd;OVBZS@NNPVB ףp= RPNbX9?VBDV-¿WDTS㥛IN +?VBG;OnJJRZd;ONNPSrh|?JJK?PRP$V-?i-1 tag+i word DT abandonedJJS㥛VBNS㥛?i-1 tag+i word , limitVBPNbX9?VBN~jtJJCli+2 word paymentVBG= ףp=VBNSNN= ףp=?VBDS? i word murkyVBNB`"JJ`"?CDV-ҿi+1 word adeptsJJ|?5^?NNP|?5^ i+1 suffix ecNNSm?JJRm@JJmVBZ%CNNK7A`i-1 tag+i word DT licensingVBGS㥛NNʡE?JJCli-1 tag+i word RB resentmentNNPn?JJPni-1 tag+i word NNP accusedVBD/$?VBN/$i-1 tag+i word VBP expectedJJB`"?VBDQVBVBN5^I ?i-2 word receiverVB㥛 ?VBP㥛 i+1 word vigilJJ?5^I NN?5^I ?i-1 tag+i word VBD sandraJJS㥛NNPS㥛?i-2 word automotiveNN(\?JJ(\ i suffix USEVBZK7NNPOnNNPS'1Z$-NNL7A` @JJbX9ȶ i word split VBZ)\(NNS&1JJx&1VBDm?VBN'1Z?RB rVB/$?NN r@VBPZd; i-1 tag+i word -START- taxpayersNNS7A`?JJR\(\NNPʡEi-1 word coverVB/$RP㥛 ?RBmͿNNS?CDjtĿJJ?5^I IN= ףp=?i+1 word elderlyJJRL7A`?NNPL7A` i+2 word wiseVBrh|NNPrh|?i+1 word sharpVBʡE?RB$C?NN%C?POSSJJv/VBZS?i-1 tag+i word -START- telosRBClNNPNbX9?NNSjtƿi+1 word modelingPRP$ʡEPRPʡE? i word affectVBQ?VBP r?RPx&1NN!rhJJ!rh i-2 tag WDTJJʡERPT㥛 RBRB`"?NNPSHzG?UH= ףp=VBDV-?POS+NNS7A`?NNP{GzԿCC ףp= INE?JJRB`"?DTL7A`?VBG+VBNZd;OǿVBZffffff@NN+RB;On?PDTʡE?JJS&1PRP$/$PRPS㥛?VBtVRBS&1?CDK7?VBPRQ@i word affectionateVBDB`"VBPx&1JJl?i word equallyVBZd;ORBQ@NNP333333i+1 word brobergJJClNNPCl?i+1 word permeatingNNSy&1NNy&1?i word foolingVBGMbX9NNMbX9? i word dependVBZvVBPʡE?NNRQi-2 word innovativeRB~jt?NN~jti-1 tag+i word WDT controlsVBZ(\?NNS(\i-1 tag+i word VB muchVBV-׿RB r?JJRX9vJJ$C?i-1 suffix eggNNPSKRBFx?NNFxNNPK?i word leemansNNPSClNNSV-NNP`"? i+1 word hurtWDT(\?VBN|?5^ٿRB|?5^?IN(\ڿi-1 tag+i word NNS projectVBPMNNDl?JJq= ףpտi-1 word deepestNN'1Z?VBG'1Zi-1 tag+i word DT catalogNN/$?JJ/$i-1 tag+i word NNS nixedVBPHzGVBDHzG? i suffix usyRBPnNNS9vJJPn@NNGzVBNB`"VBPI +i-1 tag+i word DT sayingVBG?5^I NN?5^I ?i word deserveVB/$?VBPsh|?NNSw/ԿVBN?5^I JJףp= i tag+i-2 tag JJS VBZVBNuVտJJuV?i word coveredVBP+VBNw/?NNGzVBDS㥛?JJ~jt?i+1 word districtsJJ(\?NN(\i-1 tag+i word TO commercialVB rJJ r?i-1 tag+i word IN randomJJˡEĿNNPˡE? i word allanRB\(\NNP\(\?i+1 word bonds NN|?5^?VBNZd;DT1ZdۿNNPMbJJRZd;?JJCl@NNSw/VBd;OֿVBGn?VBD rhRBRZd; i+1 word vs.NN?JJ;OnRB rhѿNNP^I +?i-1 tag+i word -START- debateNNQ?NNPQi-1 tag+i word IN academiaNNHzG?JJHzGi-1 word tonedRP$C?IN$Ci word liberatedVBN%C̿JJ'1Z?VBDK7i-1 tag+i word IN costsNNZd;߿NNSZd;?i-1 tag+i word NN hartungNNPnNNPPn?i+1 word extentJJ)\(JJR/$?NNT㥛 i+1 word ignoringRBQ?JJQi+2 word necessaryVBP9v?JJh|?5ֿDT= ףp=?VB9vRB= ףp=NNh|?5?i-2 word malfunctionsJJx&1?NNPx&1i-2 word polandNNPMbJJSjt?JJ^I +?NNQi+1 word allergyNNx&1@JJ;OnNNPFxVBPnпi-1 word separatingPRP9v?NN9vi-1 tag+i word NN relatesVBZ/$?NNS/$ i word aspectNNS rhNNzG?JJsh|?տVBPS㥫i-1 tag+i word JJ gardenNN333333?JJ333333i word compensationRB\(\NNS9vNNˡE?i word immersedVBN/$?JJ/$޿i-1 word unrecognizedJJ7A`?NN7A`ҿi-1 tag+i word TO ratificationNN\(\?VB\(\i-1 tag+i word DT seaborneJJS㥛?NNS㥛i-1 tag+i word VB putVBʡE?VBN+?JJX9vi-1 tag+i word RBR varietyNNm?RBmi-1 tag+i word IN overlappingVBGv?NNvi-1 suffix icy VBZ~jtNNS~jt?NNS㥛?VBDMbVBPOn?VBNMb?JJFxVBOnVBGv/?RBRl?i word classroomsNNQNNSQ?i-1 tag+i word JJ germanNNPS\(\JJR7A`JJ333333?NNP`"? i word spooksVBʡENNSS @NN&1JJGzֿNNP㥛 i-1 tag+i word VBZ plansVBZ(\?NNSB`"VBN+i word confutatisFW%C@NNjtNNPMbi-1 word steppedRPjtRBl?IN|?5^?i+1 word suzanneVBZ\(\߿NN\(\?i-1 tag+i word VBP mailJJRNN?i word injusticesVBClNNSCl?i-1 tag+i word '' editorialNNQ?JJQi-1 tag+i word CC movedVBNMb?VBDMb i suffix AGOSYMMbX9ĿNNPZd;O?NN"~i-1 suffix niaNNrh|?VBPM?JJSNNS{GzNNP ףp= ?VBMNNPS= ףp=i+2 word enactedJJB`"?NNB`"ɿi-1 tag+i word NN searchNNS\(\NNzG?JJV-ҿVBDˡE i suffix rstNNMINA`"NNP}?5^I@VBD~jtJJSMbX9@RBSI +?VBN)\(JJ(\?VBʡENNPSK׿RB"~@NNSZd;_FWGzJJRvVBP!rhLSE@VBZK7Ai-1 tag+i word DT cloudVBZ5^I VB1ZdVBPv/?NNDl?JJDli word unleashesVB!rhVBZ!rh?i-2 word mullinsNNHzG@JJHzG i-1 word ratVBG㥛 ?NN㥛 i suffix ads VBPEJJ?5^I NNPDlVBZB`"[@NNSK#@VBMbNNI +VBDtVJJR(\ i suffix masNNʡEJJMbX9NNS/$?NNPZd;ONNPSCl @RPQi-2 word strengthenedJJE?NNEi+2 word restrictedVBP{Gz@VBDV-VBZd;i-1 tag+i word TO gainVBNbX9?NN rhJJ{Gzi-1 tag+i word NN pressuresVBZPnNNSPn?i-1 tag+i word NN falteredVBNy&1VBDy&1?i-1 tag+i word TO retreatVB rh?NN rhͿi-1 tag+i word CC nerveVBDSNN(\@JJʡEi-1 word standoffRP +IN +?i+2 word unflakyWDTZd;ODTZd;O?i word norwoodNNP +@LSK7A`ݿNNtV i-1 word haagVBZ?NNPi+2 word doctorVBB`"?VBPB`"JJL7A`?RB ףp= ?MDV-i-1 tag+i word CD a.m.JJq= ףpNNI +?RB?5^I @NNS +i-1 word transferNNV-?JJV-i+1 word sufferedCD rh?NNP rhݿi-1 tag+i word NNP slumNN+?NNS+i word swayingVBGK7?JJK7 i word textNNS"~jNNd;O@JJ`"i+1 word blurringJJ}?5^IRBK7A@RBRMbX9i tag+i-2 tag CC .JJGz?NNPGzǿi word titaniumJJMNNM@i-1 word coeurNNzGNNPzG?i-1 word efficientVBG~jt?JJ;On?NN~jtNNP;Oni+2 word entitiesVBNxJJx?i word katherineJJ|?5^NNP|?5^?i-1 tag+i word NNS claimVBP rh@RBMbX9NN/$i-1 tag+i word VBD surfacedVBN5^I ?JJ5^I i-1 tag+i word NN flapsNNQNNSQ?i-1 tag+i word NNP biochemistNNPS+NN+?i-1 tag+i word NN coolsVBZGz?NNSGzֿi-1 tag+i word '' complexVBZjtJJZd;?NN ri-1 tag+i word DT sterilizingVBGn?JJni+2 word assumesNNQ?JJQۿ i+2 word blowVBZh|?5?VBGK7A?NNK7AؿVBDh|?5RBSPn?JJSPnVBNMb?JJMbi-1 tag+i word TO listingVBGx&1NN~jt@JJ rhi-1 tag+i word VBZ capitalizedNNSbX9VBNK7?JJ}?5^Ii-1 tag+i word NNP placedVBNV-?VBDV-i-1 tag+i word DT speedometerNN~jt?NNP~jt i suffix sanJJ\(\@IN+NNPDl@RB%CNNQ VBNjtVBP&1i-1 tag+i word DT hastilyRB9v?JJClNN$Ci-1 word controversialNNPS"~jNNSn?NNCl?JJh|?5NNP"~j?i word diminishedVBDnJJZd;?VBNzG?NN/$i-2 word recyclingNNʡE?JJʡEi-1 tag+i word `` themedVBN\(\?NNZd;VBD`"޿i-1 tag+i word `` macJJHzGNNPHzG?i-1 tag+i word `` educationNNGz?JJGz߿i-1 word deseretVBZ rh?POS rh i word poloNNRQNNPRQ?i-1 word illustratesWDT rhWP rh?i+2 word warmingNNX9vNNPX9v?i-1 tag+i word IN engineersNNPSQ?NNPQi-1 tag+i word NNP owesVBZ(\?VBPS㥛ԿNN rhi-1 tag+i word VBN contactNN(\?JJ(\i-2 word promiseJJK7ANN~jtۿVBG~jt?JJRMb?RB{Gzi+1 word panelVBGZd;OJJM?NNK i word whoWPQ@NNʡEJJR㥛 JJx&NNPMbX9i-2 word couponCDV-VBNK?NN|?5^VBDKJJS㥛@i-1 word landedVBNClJJCl?i word escortsNNPSKNNS7A`?NNtVi word nicholsRB-ӿNNP-? i+2 word $VBNnWDTw/?DTw/ĿCDClUHGzVBGQ?VBZd;O?RP5^I POSDl?NNPS"~?JJRMbX9@IN&1ҿJJ"~ʿRB~jtNNSMbNNPp= ף?VBHzG?PDT`"RBRbX9JJS rh?VBD"~@VBP`"?NN{Gz?FWv?CCK7ASYM+? i-2 word milkNN#~j?VBDZd;?VBPZd;JJn@NNP+VBli word techniqueVBD/$WDTV-RB= ףp=VBZx&1VBV-NNV-@i+1 suffix uteJJStVDT+?NNh|?5 VBZ/$RBRQJJV-VB?VBGJ +?VBPV-߿INK7 @NNS?NNP)\(?NNPSˡE?RBQ?i-1 tag+i word DT jitteryJJNbX9@NNNbX9i-1 tag+i word RB alcoholNNSDlѿNNPDl?i word resolutionVBZy&1NNjt?NNP$C?i+2 word uninspiredJJףp= ?VBNףp= i+1 suffix anaFWx&?NNPx&i word obscureJJM@VBV-?NN(\RB~jtؿi-1 tag+i word CC naplesNNPSMNNPM?i-1 word keepingDT|?5^?NNPףp= ?JJˡE}@NNlCC|?5^VBPh|?5RBxi-1 tag+i word NN controllingVBGV-?JJV- i suffix uxeJJ?NN i suffix N.HNNMNNPM?i word viewersNNSA`"?JJRA`"i-1 tag+i word JJ prosecutorialJJm?NNmͿi-1 tag+i word NN snottyNNSy&1JJm?NNx&1 i+1 word nyuDTK7A`WDT9vIN?i-1 tag+i word DT linkJJRQNNS㥛?JJSoʡݿi-1 tag+i word NNP hillsNNPS9v?NNP9vi word whimsicalJJ%C?NN%Ci+2 word representJJL7A`пNNL7A`? i suffix OddNNPCl?CDCli-1 tag+i word DT operatingVBGKNN^I + @JJ/$ i+2 word visFWʡE?INʡEi-2 word wheelingNNtV?VBGtVֿi-1 tag+i word NN spreeNNS㥛?JJEԸVBD/$i word screamedVBN9vVBD9v?i-1 tag+i word NNS cancerousVBPʡEÿJJʡE?i-2 word inflatedNNQ?RBQi-1 tag+i word NN cosmeticNNoʡ?JJoʡi-1 tag+i word DT anesthetizedJJK7?VBDK7i-1 tag+i word RBS tedJJ/$NNP/$?i-1 tag+i word , enjoyedVBDCl?JJCl i suffix BizNNK7NNPK7?i-1 tag+i word NNS encourageVB +VBP +?i+1 word basketNN1Zd?JJʡENNP"~j?FW+i-1 word booneNNPS/$NNP/$?i-1 word freddieNNPSbX9NNPbX9?i-1 word sparselyVBN&1JJ&1?i-2 word reynoldsNNPS(\NNP(\?i-1 tag+i word RB relatedVBNCl?JJjt?VBDQi-1 tag+i word NN holdingsNNPS(\?NNS(\i-1 tag+i word IN farmerNN ףp= ?JJ ףp= ߿i-1 tag+i word VBZ jan.VBʡEÿNNPʡE?i-1 tag+i word CC licensingNNoʡ?VBGoʡi+1 word vomitingNNSy&1|VBZ%C?VBPRQi-1 tag+i word NN completeVBZq= ףpտVB(\?VBDPni word activelyNNS rhRBCl?JJq= ףp i+1 word go VBʡENNPSMb?RBX9v?CD\(\VBZ1ZdNNSS㥛?NNP`"?NNd;O?VBDףp= ?POSClVBP\(\߿JJIN\(\i-1 tag+i word CD equippedJJtVVBNtV?i+1 suffix micJJRV-?PRPClٿNNS/$տVBFx?VBDV-RBSA`"DTSտVBG{Gz?IN ףp= ?VBZX9vJJ`"?PRP$Cl?NN)\(FW$CJJSA`"?WDTjtNNPlRB rh?VBNMbP?VBPS@i+1 word companionNNPffffffDT= ףp=?JJI +?i word upholsteryNNtV?JJtV i word cheeryJJ&1?NN&1 i-1 word i MDtV?RBQ?VBPV-@INMbVBZ?5^I VBp= ףNNV-VBD$C@JJnNNPDli-2 word restructuringVBNL7A`?JJ ףp= VBD}?5^I?i+1 word slateJJCl?NNCli-1 tag+i word VBG draftedVBNsh|??JJsh|?i word disputesVBZp= ףVBFxNNSuV?i-1 tag+i word VBZ admitsVBZM?INM i suffix untVB!rh@CDDlNNSףp= VBN;OnVBP/$@INSNNPx&1@RP5^I RBRI +ƿRBx&1NNPS\(\JJJ +NN rh@JJSvVBZCl i+1 word varyVBZV-NNS+@JJR\(\WDTy&1?INy&1 i word beforeNNnRBR$CJJ(\INy1@NNS-NNP'1ZJJRQRB@CCPnVBNʡEDT"~jVBV-VBDVBP/$i-1 word philadelphiaNNSV-NNV-?i-1 tag+i word DT fastenersNNPS+׿NNS+?i+2 word conductingIN|?5^RP|?5^?i-1 tag+i word IN conservativesNNPS&1@NNS"~ڿNNPV-i-1 suffix ms.NNP$C @WP+NNPSrh|FWi-1 tag+i word IN rangedVBPQVBDQ?i+2 word compareVBPxJJR?RBJ +i-1 tag+i word NNP ritesNNS/$?VBZ/$i+2 word syracuseNNPS{GzNNSMINp= ף?NNPoʡ?DTp= ףi-1 tag+i word JJR allyNNMbX9?RBMbX9 i word east INNNPZd;@JJʡE@CC~jtVBN|?5^ɿVBD)\(JJR-RBZd;?VBZw/ԿNNSV- @VB= ףp=NNPS"~NNL7A`i+1 word lineupJJq= ףp?NNq= ףpi-1 tag+i word VBP sujectJJv?VBN+NN%Cܿi+1 suffix llaIN'1Z?NNP(\?NN rVBN)\(ܿWDT'1ZJJ(\?i-1 tag+i word CC droveVB%CVBD%C? i-1 tag+i word NNP jurisprudenceNNP/$NN/$?i-1 word cameraVBZjt?NNSjti-1 word sanitationNNSh|?5?NNh|?5 i-1 word rowJJ333333IN333333?i-1 tag+i word NNP postponedVBN ףp= VBD ףp= ?i+1 word factsJJv?NNvi+2 word annaleeNNSX9vNNPX9v?i-1 tag+i word NNS soldVBPw/VBNoʡ@VBDٿi-1 tag+i word NN sinkVBK7ٿNNK7?i-1 tag+i word IN shameNNSjtNNjt?i-1 tag+i word DT pigstyJJ= ףp=NN= ףp=?i-2 word lincolnNN= ףp=?JJx&1NNPQ?i-2 word rumorsVBPK7A`NNPK7A`?i-1 word remoteVBPENNE?i word pressingVBGZd;O?JJZd;Oi tag+i-2 tag CD VBD NNSzG?NNPˡE?JJ(\NN~jt?VBDʡEJJRsh|??VBZ`"ֿRP1ZdPRP$7A`NNPSv?VBGL7A`RBRA`"RB1Zd?i-2 word gallonsNN%C?NNP%Ci-1 tag+i word -START- followVBv/@NNQINL7A`i-1 tag+i word VBZ goodVBD+JJX9v?VBPʡEۿVBNClRB`"? i suffix oniNNPOn?NNQCDx&1i-1 tag+i word NNS arguedVBD(\@VBN"~NNX9vNNPOni-1 tag+i word RB immuneVB^I +VBPuVͿJJm?RBsh|?i-1 word speedingNN ףp= ?RB ףp= i word bearsVBZGz@VBѿVBP-NNS~jtIN$C i+2 word lost FWѿRB(\NNSK7ANNPDl?VBx&1?NNPSK7?JJX9vNNV-?RBR#~jVBNS?i word federicoJJ+NNP+?i+2 word hardyNNS㥛NNSS㥛?i-1 tag+i word DT targetsNNSʡE?NNʡEi word programNNPClCC= ףp=ڿNNL7A`@JJ-i-2 word competitors VBN~jth?JJX9v?NNPDl?NNK7ٿJJRbX9?VBP+VBl?NNPSDlRBRbX9ֿi+2 word deadlinesVBZ|?5^ʿWDTNbX9INNbX9?NNS|?5^?i-1 word fianceeNN{GzJJ{Gz?i word supercedeVBPx?VBDxi-1 tag+i word NN superiorJJ1Zd?NN1Zd i+1 word half VBZQ?DTV-VBmIN\(\?VBDm?JJv?NNS"~NNPL7A`RBB`"?NN+i-1 tag+i word VBP 'emPRP`"?RB`"i-1 tag+i word VBZ voteVBN +NNy&1VBX9v? i suffix gedVBN|?5.@CDbX9VBPo!RP(\JJ?5^I ?FW"~JJRX9vNNP\(\NNS;OVB NNx&VBZMVBDMb/@RBy&1 INV-i-2 word puttingNNy&1ԿVBGQJJ!rh?i word oranjemundRBMbXNNPDl@CC rhNNʡEUHjtƿi+2 word shipyardVBGx&1RP`"ֿNNx&1?IN`"?i+1 word predictions''x&1̿JJQ?NNQPOSx&1? i word fhaNNPSMbؿJJ333333NN+NNPʡE@ i+2 word rtzVBNI +ֿJJI +? i word flagVBP{GzNNSDlNNsh|?@JJ7A`i-1 tag+i word NNP carriersNNPl?NNPSli-1 word shoppingNNPS/$?NNP/$ٿi-1 word societeNNPNbX9ȿFWK7?NN ףp= i word lackingVBG%C?JJ%Ci-2 word necessityRBSS?JJSSi-1 tag+i word DT teachersNNPSK7A`?NNSNNPni-1 tag+i word DT scrambleNNsh|??JJsh|?ſ i word u.s.a.NNS?NNPCl?NNPS+i+1 word permeatedWDT;On?IN;Oni-1 suffix ausNNPX9vNNPSQ?NNS`"i+1 word castanedaNNS㥛NNPS㥛?i word underlyingVBGQ?JJRQȿNN{Gzi-1 word programsVBPjt?WDT9v?IN(\NNPS rhNNT㥛 VBDl?VBN/$ۿi+2 word devotesNNK7?JJK7i word twopointNN/$?JJ/$ i+1 word trimNNPSDlNNSMb?NNP"~ i+2 word &NNPS"~?NNv?VBPˡEWDTMbRB"~jNNS(\VBNPn?LSףp= DTh|?5VBGS㥛VBDPnPOSd;O?INS㥛@NNPCl@JJ|?5^VBZd;Oֿi-1 tag+i word DT permanentJJ?5^I ?NN?5^I i word naryDTʡE?PDTjt?JJPnINʡEi+2 word shreddedVBOnVBDOn?i-1 suffix actNNClVB9v?DToʡ?NNSV-VBNʡE?IN$C@VBPHzGJJRQ?VBZV-JJffffff?VBDV-RBR/$?WDT1ZdRBx&VBGd;O?i-2 word measuredNNP|?5^?NNS/$?JJ|?5^NN/$i+2 word dominionNNPuVݿRBuV?i-1 tag+i word NNS haveJJ+VBDvVBCl?VBPuV?i-1 tag+i word , improveVBq= ףp?VBP\(\׿NN333333i-2 word competesNNPtV?NNtVοi word recordingJJ-VBGB`"?NN +?i-2 word heartNNPq= ףpVBZ/$VBDDl?JJK7ɿi+1 word cocoaNNx&ѿJJx&? i+1 word s.a.NNS/$ۿJJOnNN ףp= NNP`"@i-2 word consolidatingVBGl?NNl i word skidVBDMb?VBPnҿNNSnٿNNuVݿi-1 tag+i word VBG bouncedVBN?5^I VBD?5^I ?i+1 word immunityVB r?JJ ri-1 tag+i word DT spectacularNN +JJ +?i-1 tag+i word POS chancesNNSS㥛?NNS㥛i-1 tag+i word PRP openedRB ףp= VBD ףp= ?i-1 suffix anyNNPSsh|?VBG ףp= ׿VBNFxVBPB`"?DTlMD+?RBR"~j CDX9v?JJRQ?VBZL7A`пFWV-PRP+NNPx&1?PDTK7?VB(\?VBDrh|?RPx&1NNMbX9RBS@NNSK7AWDTCl?JJp= ף?POS(\@IN7A`i-1 tag+i word VBZ yetRPMbX9@VBN{GzRB/$i-1 tag+i word NNP billsVBZ9vNNPSNbX9?NNSv/@NNP rhi-1 tag+i word DT strokeNNS?JJS i-1 word lotWDTZd;ORBHzGINZd;O?NNOn RBRn?JJRʡE@i-1 tag+i word , settingVBZuVVBGuV?i word advocatesVBZ{GzNNSHzG@NN{GzNNP)\( i-1 word viJJK7?NNK7ٿi-1 tag+i word JJ overridingJJK7?NNK7i+1 word faultINq= ףp?JJDlFWK7i-2 word kidnapJJQ?NNPQ i+2 word paoRP~jtRBMbX9?JJMbX9ܿIN~jt?i-2 word breedingVBNn?VBDni+1 word patriarchyJJS?NNSi-1 tag+i word NN warriorsNNSK?VBNK i-1 word sitRPsh|??RB)\(INtV i word sixtyDTCDZd;O?NNP-i-1 tag+i word NNP lundNNPSd;ONNPd;O?i word advanceNNQJJ9v@RBFxCDZd;i-1 tag+i word DT accusedNNPSK7AVBNSJJT㥛 NNPQ@ i word gloomyJJQ8@JJR/$NN%C i-2 word glitteryVBP~jtNN~jt? i word allowINK7A`VBZOnVBx&1@RBK7NNMbVBDoʡVBPRQ@JJni-1 word !HYPHENPDTKJJ5^I ?RB㥛 NNP +?VBV-CD"~j?NNPSrh|?JJR\(\VBNQVBZEؿNNSsh|?@RBRv/RP rhNNʡE@VBG rhVBDClWDTEԸDTOn?JJS}?5^IVBPGzPOSRQCCSIN"~j?i+1 word shotsJJffffff?RBffffffi-2 word admiresVBKNNK?i-1 tag+i word NN lobbyNNOn?VBDOn i word riskedVBNʡEVBDʡE?i-1 tag+i word NNS firmedVBDsh|??VBNsh|?i-2 word stampsVBNw/VBDw/?i-1 tag+i word NN jesterVBZClNNCl?i-1 tag+i word NNP deputyNNP ףp= ?NNPSV-NNS @VBDVBPX9vJJ%CVBZʡEi+1 word continentalJJ%CIN/$?NNP%C?VBFx?NNFxWDT/$i+1 word borrowersNNuVJJuV?i-1 tag+i word TO soRBoʡ?INoʡi+1 word finlandVBN~jtVBD~jt?i-1 tag+i word IN mainframeJJ㥛 CD1ZdNN ףp= ? i+1 word ricaNNP-@VBy&1JJp= ף i suffix .23JJV-CDV-?i-1 tag+i word NN culpritsVBZ5^I ۿNNSHzG?NNvϿi-1 tag+i word VBD lowerVBN7A`RBRQJJR+?i-1 tag+i word VBZ recoverRBGzNN ףp= VB(\?i-2 word improperlyRB +?JJ +i word alienatingVBG~jt?NN~jti+2 word grownWDT+?POSNbX9IN+VBZNbX9?i-1 tag+i word DT agendaNNCl?JJCli-1 suffix owlRB;On?RBRL7A`JJS㥛?i+2 word offeringNN#~j?VBDK?VBNuVտEXK7A`ſJJV-¿VBGZd;Oi-1 tag+i word NNS fittingVBG%CNN%C?i-1 word reactorIN r?NNP ri-2 word cumulativeVBNRQ?JJ~jtVBD"~@i-1 tag+i word NNP receivedVBZL7A`VBDL7A`?i+2 word clutchVBPd;OFWd;O?i-1 tag+i word DT distinguishedJJrh|VBNrh|@i-1 tag+i word DT retailNN rh NNP`"JJp= #@VBNCli-2 word confederationJJoʡNNPoʡ?i-1 word gilmoreVBZffffff?NNSffffffi-1 tag+i word CC shippedVBN?VBD i word come RBClNN= ףp=JJjtVBZGzNNS"~VBS @VBDy&1?VBNI +@VBPp= ף?i+1 word securityVBGK7A`ݿNN㥛 VBD= ףp=?VBN= ףp=JJsh|??NNP~jt?i-1 tag+i word -START- anthonyJJA`"NNPA`"?i-1 tag+i word VBZ attemptNNX9v?RBX9vi-2 word includesJJx&VBG)\(JJRl?NNQ?i-2 word tellsDTx&1IN +?RPjtƿJJ/$?VBD/$ i suffix che JJA`"FWx&1?VBNV-RB rNNS7A`NNP rh @NNPSI +NNv@DTi-1 word parksNN333333NNP333333?i-2 word season RP+@JJ\(\׿VBD(\?JJRQ?VBN(\IN+NNDl?RBRQRBx&1NNSoʡ?i+1 word leasingNNS㥛NNPS㥛?i-2 word thursdayNNv/?VBN^I +JJv/VBD= ףp=?VB-i-1 tag+i word RB positionedJJKVBDK?i-1 suffix 'llVB7A`?VBP㥛 RBQ?i-1 tag+i word IN spineJJ!rhܿNN!rh? i+2 word najiNNPSrh|JJrh|?i-1 tag+i word PRP$ pretaxJJ|?5^ @NN|?5^ i-1 tag+i word JJ taxpayerVBP1ZdNNP1Zd? i word joinsVBMbNNSSVBZV-@i word threatenedVBN;On?JJM?VBD9v?VBoʡVBPX9vi-2 word achieveNNS"~?NN~jtȿJJA`"VBNˡEi-1 tag+i word RB fallsVBZ-?RBR-i word airportsNNSRQ?JJRQi word responsibilityNNoʡ?JJoʡi-1 tag+i word DT sunsNNPS(\@NNSClNNP rh i word artistNN~jt?JJ~jti word outshinesVBZCl?INZd;i-1 word chargingWDT5^I JJ;OnINDT?5^I ?RBB`"@NNQVBN rh?i word lambertNNPS(\NNP(\?i word shiseidoNN/$?RB(\NNPuVi tag+i-2 tag NNS ``VBˡE?NN;On?VBDʡEPOS\(\''\(\?VBPʡEINMb?NNPZd;O i+1 word dustJJX9v?NNX9vi+1 word fallaciousRBQ?RBRQi-1 word unscrupulousNNSv?NNvi-1 tag+i word POS countrysideNNGz?JJGzi-1 word marriageNNSMbX9NNMbX9?i-1 tag+i word NNS renderedVBNZd;?VBDZd; i suffix 62CD"~?JJoʡNNP\(\i-1 tag+i word RB jokinglyVBP/$RB/$?i+2 word global VBDI +޿JJMb?NNSPnNNPzGVBPI +?NNPSK7VBGzG?NNMbX?RBRMb i-2 word hatVB^I +׿VBNv@NNʡEVBD rhi-1 tag+i word TO magneticallyVB+ÿRB+?i-2 word monstrousWDT +IN +?i+2 word routineJJRQ?RBRQi-1 tag+i word DT lawJJV-NNI +?NNPCl?i-1 tag+i word , playVBV-VBPV-? i+2 word mphVBGCl?VBNClRBlINl?i-1 tag+i word VB repaidVBNQ?RBQѿi-1 word broncsVBPw/ܿNNS333333NN7A`?i-1 word delawareNNPQ?NNPSQi word flowingVBGjt@JJI +NNףp= i-1 word dunkin''/$?POS/$i-1 tag+i word JJ novelistNNOn?JJOni word premierNNSRBSJJl?JJRjt?i-1 tag+i word -START- limitingi-1 tag+i word RB changedVBN(\@JJV-ݿVBDjti+1 word shoppeNN(\NNP(\?i word weathermanNNzG?JJzGҿi-1 tag+i word RB rapedJJV-ڿVBDrh|?VBNB`"i word focusingVBGMbX?NN9vJJT㥛 ؿi word considersNNSGzVBD(\VBZA`"@NNPSCli-1 tag+i word DT travelingVBGoʡ?JJoʡi-2 word croppedDT rh?WDTd;OֿINrh|i-1 tag+i word RB buckVBx&1VBP(\@VBNPnVBDKi-1 tag+i word CD multiyearJJNbX9?NNMNNSvi+2 word hcfcsJJV-?NNV-i word leavingVBG?5^I@NN&1 CDV-i+1 word nomineeJJCl?NNCli word nonvotingNNQVBG-JJS?i word capturedVBNzG?VBDzGế i+2 word hitRPMbXNNK7CD#~j?VBP+?WDTK7A`?RBˡEIN rh?VB+ۿ i-1 word crayVBN rhVBD rh?i-1 tag+i word DT timesNN'1ZNNP1Zd @NNPS"~jNNSffffffi-1 word milkenNNP?5^I ڿVBZ{GzVBDClJJMb@RBjtܿi-1 word produceJJsh|?@NNI +JJRsh|??RBRsh|?RBFxIN +ֿNNSy&1?i-1 tag+i word VB ridNNMJJM? i word colonNNCl @JJ= ףp=NNP&1VB= ףp=NNSjtĿi-1 tag+i word DT adoptingVBGS㥛?JJ-NNL7A`尿i+1 suffix slyVBN$C˿VBZʡE@RBK7@JJSB`"WDTT㥛 ?IN= ףp= NNPK7?VBGMbX?VBD@RBSB`"?POS)\(JJR{GzNNMbXɿRBR{Gz?JJClNNS333333i-1 tag+i word IN disabilitiesNNPSRQ?JJp= ףNNPi+1 word avertsNNjtFWjt? i-1 word stemINʡEWDTʡE?VBGp= ף?JJ~jtNN}?5^Ii word spectatorsNNSS?RBSi+1 word unsuccessfulRBPn?INPni-1 tag+i word DT missionJJMbXNNMbX? i+1 word paceJJ/$?NN/$i word starringNNSӿVBG +?JJi+1 word organizationsJJ{GzDTOn?NNPB`"?VBCl߿NNS㥛?CCOnӿi tag+i-2 tag CC JJR VB)\(?JJRjt?IN1ZdRBRV-@VBN?5^I ڿJJw/ĿNNSSNNP"~jNN~jtxJJS-RBS-?i+1 word squibbNNS(\NNP(\?i-1 word thoroughNNSB`"NNB`"?i-1 tag+i word JJ righthanderNNCl?RBCli-1 tag+i word IN demandJJSտNNS?i tag+i-2 tag '' NNS NN ףp= VBPq= ףp@WDTQ?INMbX9ܿDTQNNSʡE?VB\(\NNPSʡEVBDMbXVBN333333@i-1 tag+i word VBZ bareNNˡEJJK?JJR?5^I ڿi+2 word pursuitVB= ףp=VBP= ףp=?i+1 word elixirWDTClDTCl?i+1 word declinesJJRQ@VBG9v?VBNL7A`NNd;OJJR ri-1 tag+i word CC openedVBNxVBDx?i+2 word vacationVBN)\(VBD)\(? i suffix LAWNNm @NNPm i-2 word any VBGMbX9JJ1Zd?VBNQ?NNS- @VBZbX9ֿVBzGNN\(\@VBD= ףp=JJS)\(ܿWDT!rh?RBZd;IN/$?DTx i-2 word losNNSX9vNNPQ?NNPS~jtVBGOnӿJJ"~jNN/$@JJR㥛 RBq= ףp i suffix kioRB+NNP+? i word grislyJJT㥛 @NNp= ףRBZd;i-2 word ratesRBnѿVBDClVBN~jtпVBPnNNS㥛ĿIN#~j@RP/$VBffffff@VBGSNNSClRBR|?5^?JJzG?NNP-?VBZ5^I ?i-1 tag+i word RBR crowdsVBZd;߿VBZZd;?i-1 tag+i word NN lacklusterRBS?RBRI +޿NNS㥛пi-1 tag+i word PRP$ batteryNNV-@JJV-i-1 tag+i word VBZ superblyNNS+RB+?i-1 tag+i word PRP$ constantNN}?5^IJJ}?5^I?i-1 word registerVBNK7VBDK7?i+1 word adenocardVBQVBNQ? i+2 word slowJJ333333?NNrh|VBPFx?RBn?IN5^I NNSV-?i-1 word naturalNNPS!rhԿNNS?5^I ¿NNPʡE?i-1 tag+i word RB reportedVBX9vVBN/$ݿJJʡE?VBD^I +? i word califNN/$NNP/$?i-1 tag+i word VBZ concernedVBN r?JJ ri-1 word entrepreneurNNZd;INZd;?i+2 word lynchVBZ%C?NNSGzRP5^I NN|?5^?RBxIN5^I ?i-1 tag+i word VB savingsNNS^I +?JJ^I + i word dutyNNS@RB(\JJ-i-1 tag+i word VBD brazilNN"~NNP"~?i+2 word colonistsVBZENNSE? i word seniorNNClJJ(\?NNPv/ i word menNNSMbX9?NNx&@NNP$C i-1 tag+i word , provideINjtԿVBl?VBPZd;O?RBsh|?i+2 word launchedNNPSI +JJʡENNʡE?RBq= ףp?INq= ףpտNNSI +?i-1 tag+i word , informedNNS`"VBN`"?i-1 tag+i word NNP o'dwyerNN|?5^ѿNNP|?5^?i-1 tag+i word NNP arguesVBZ|?5^@NNS~jtNNPi-1 tag+i word NN smokingVBGvNNv?i+1 word directorsVBGKNNVBNzG@JJjtINnNNPV-?i word belfastNNENNP~jt?JJGz i-2 word east VBPv?RBffffffNNS-?NNPnVBDtV@JJOnNNK?VBNMb?VBZ-VB rhi-1 tag+i word NN moveVBZd;?VBNZd;i word rayburnVBrh|NNPST㥛 NNP+?i-1 tag+i word -START- colonyNNCl?JJjtNNPn i word slopeNNSzGNNzG?i word backstageRBA`"?NNA`"i-2 word swearJJʡE?NNʡE i-2 word repVBZS㥻VBPPn?NN rhJJ\(\?RB/$ۿi word maxicareNNp= ףNNPp= ף?i-1 tag+i word VBZ inconvenientJJ-?NN-˿i+2 word schulzVB\(\?NN\(\߿i+2 word expensiveVBZd;ORBtV@NNffffff?JJRDl?RBRDlJJzGVBZjti-1 tag+i word DT waterworksVBZMbNNSxNNV-? i+2 word doNNE?IN{GzܿPRPK?VBS?JJK7A`VBDZd;OVBPnRB1Zd?NNPSS㥛VBN{Gz?JJR7A`WDTp= ף?WPQ?VBZd;ODTK7A?CDbX9NNSv/?WRB?CC +NNPQ? i word keenJJ(\?VBv/@VBP(\VBNp= ףNNV-i+1 word absorptionCCCl׿JJCl?i-1 word boringNNSCl?NNK7?JJQi-1 tag+i word RB doubleVBQտRB ףp=@VBDZd;VBPvJJtVIN&1VBZ +i-1 tag+i word POS putVB{Gz?VBD{Gzi-1 tag+i word RB tenderedVBNn?RBni-1 tag+i word -START- dozensNNSx&1?NNx&1i-1 tag+i word PRP$ boxyNNOnJJOn?i+2 word regularlyWDTGz?INGzi+2 word decidedWDTMbJJx&INMb@NNPNbX9?NNPSZd;i-1 tag+i word PRP$ stayNNS|?5^NN|?5^?i-1 tag+i word -START- ohNNSʡEUHoʡ@NNʡENNPCli-2 word preparingVB&1?NN&1i-1 tag+i word RB illegalJJ rh?RB rhͿi-1 tag+i word VBD leadingJJmտVBGm?i-1 tag+i word JJ builtVBNX9v?INX9vi+2 word videoNNPSSݿNNSSNNK? i word hostVBʡEVBG9vNNS%@RBS/$VBNRQJJx&1пDTv/NNPS㥛?i+1 word modificationNN\(\?JJ\(\i word illusionistNNK7A?JJK7A i+1 word deanNNPS/$ٿNNP/$?i-1 tag+i word DT cruelJJ}?5^I?NN}?5^Ii word propelledVBN#~jVBD#~j?i-1 tag+i word DT steakNNS㥛?JJS㥛i+2 word presidentNNSV-?JJtV@POSZd;?VBZGzINHzG?VB-VBNMbX9@RBQRPRQDT-NNP)\(?VBPB`"?NNPSS㥻NNSVBDQi+1 word asianJJX9v@RBٿNNPI +i-2 word directorialWDTDl?INDlٿi-1 tag+i word -START- deseretNN^I +NNP^I +? i+1 word bill JJRFx?NNSA`"VB(\JJMb@NNxRB/$IN-DTZd;?NNPbX9?VBG;Oni-1 tag+i word RB patentNN{Gz?JJ{Gzi word mississippiNN#~jNNP#~j? i+2 word holeNNSMbX9?PRPMbNNQVBN㥛 JJ/$?i-1 tag+i word IN gemNNGz?JJGz i word minePRPS@JJ㥛 ?NNS-NNPffffff޿NNjt?VBDFxCCʡEJJS?5^I i word spokeNNSHzGJJ"~NNMbX9VBDuV @i word barroomNNzG?JJzGi tag+i-2 tag PRP JJ NNFxPOSv/?VBZv/VBK7?RPx&1?VBDMb?VBPK7RB?5^I INClۿi-1 tag+i word CD arrivesVBZB`"?NNSB`"i-1 tag+i word NN secondJJ1Zd?NN1Zdi-1 tag+i word IN prizesNNSoʡ?NNoʡi-1 tag+i word -START- mayNN}?5^IܿINQNNP;On?i-2 word trainJJoʡտNN'1Z?WDTMb?RB rh?INMbVBClRPd;Oi-2 word protectionsJJ1Zd?NN1Zdi-1 tag+i word JJ fareNNS㥛?JJS㥛i-1 suffix unyNNSKNNK?i-1 tag+i word NNS replacementNN(\?JJ(\ i word slipVBD?5^I VBP?5^I ?NNSxNNx?i-1 tag+i word CC redoingNN}?5^IVBG}?5^I?i+1 suffix effNNn?JJni-1 word guessRB?JJi-1 tag+i word , adjustedVBNFx?VBDFxi-1 tag+i word VBZ pastureNN(\?RB(\i word boastedVBN-?JJ-i-1 tag+i word NNP remodelingVBGZd;NNZd;? i suffix ICONNPQ@NNPSMbNNvJJ?5^I RB/$i-1 tag+i word `` holdVBZd;@VBPjt޿UH#~jNNMi-1 word arrestedJJROn?RBROni+1 word benefitVBZd;ORBZd;O?NN +FWK7JJJ +NNPףp= ?i+1 word artifactJJ'1Z?NN'1ZĿi+1 word sufferingVBNRQVBDRQ?i tag+i-2 tag TO VBP VBx&?JJV-NNjt?WPMRB1ZdIN)\(DT"~?NNPMbJJSK7RBSn?VBN-?CD%C?NNSK7?i-1 tag+i word NNP keptVBDGz?NNPGz i suffix rriNNSx&1NNx&1?#i-1 tag+i word -START- outplacementNNʡE?JJ-NNPK7ѿi-1 tag+i word DT tradesNNS)\(?NN)\(i+1 suffix ampVBD|?5^?VBN+VBPlRBMNNP?5^I VBtVNNPS?5^I ?NNK7A@i+1 word officioJJjt޿FWK?RB/$i-1 tag+i word CD lessVBPV-RBK7AJJZd;ONNHzGCCV-?JJRoʡ@RBRMbi-1 tag+i word DT bearishJJK7A`?NNK7A`i-1 tag+i word NN gearedVBN7A`?VBD7A`i-1 tag+i word DT wavelengthsNNSMbX9?NNMbX9i-1 tag+i word NNP increasedVBNZd;O?JJVBDsh|?ݿ i word tropIN+FW)\(?NNPni+1 word merrillINx@VBZ%C?NNSGzRP5^I NN|?5^?RBL7A`i+1 word casingsRBnJJ1ZdNNd;O?i-1 tag+i word TO commentVBM @NNM i word resultNN|?5^?JJZd;OVBuV?VBP~jt?VBGX9vi+1 word comicVBNw/?RBK7?JJK7VBDw/i+1 word constructionsFW&1ҿVBZIN rhNNP&1?i-1 tag+i word VB restatedVBNCl?JJCli+1 word approvalVBDv?VBPvRB333333NNS333333?VB#~jVBGq= ףp?JJ333333NNjt?i-1 tag+i word RBR efficientJJQ?NNQi word pragmaticJJtV?NNK7VBNxֿi-1 tag+i word CC moreNNSClJJR'1Z@NN +RBRK7A`ݿi+2 word mcgwireNNI +?JJI +i+1 word gridlockedJJn?NNSni-1 tag+i word NNP settlementJJA`"NNPA`"?i+1 word mostlyJJK7VBZ-?NNS-˿RBK7@i-1 tag+i word IN changeNNS1ZdNN1Zd?i-1 tag+i word NN conditionalJJ"~j?NN"~ji-1 word designedRBKINK?i+2 word enactmentNNP +޿VBG +?NNv?VBNK7ٿRBVBZ+?NNS+i-1 tag+i word NNP missileINNbX9VBDʡENNPV-NNI +@i-2 word regulatorsNNPGz?VBCl?NNB`"?VBD ףp= ?VBNNbX9?JJZd;NNS)\(i-1 tag+i word JJ retailerNNS(\NN(\?i-2 word exteriorNNK7AJJx&CDK7A?VBNx&?i-1 tag+i word RB paralyzedVBNSJJS? i suffix batNN/$@NNSv/RBClJJq= ףpi-1 tag+i word DT diversifedNNZd;OVBNFx@JJbX9i word connaughtNNPL7A`?NNL7A`i+2 word playoffsDTˡE?RBˡEi+1 word reminiscentRBGz?JJGzi-1 tag+i word NN relaxingJJZd;VBGZd;?i-1 tag+i word '' standsVBZMbX9?NNSMbX9i-1 tag+i word TO developingVBSVBGS?i-1 tag+i word JJ storesNNPS)\(?NNP)\(i word clashedVBPp= ףVBNuVVBD +?i+1 word parliamentaryVBN rhJJ rh?i+1 suffix bosNNS(\JJRMb?JJ(\?RBRMbi-2 word midlerVBGGz?NNGzi-1 tag+i word VB slightVBN$CJJ$C? i+2 word feeJJ;On?NN;Oni word arrearsNNSGz?NNGzi-1 tag+i word VBD planNNsh|??JJsh|?i-1 tag+i word WDT onceVBPMbRBMb?i-1 tag+i word , sufferedVBZx&1VBDx&1? i-2 word nbiNN ףp= ?VBG ףp= i word crossVBNw/VBP5^I JJ"~?NNS= ףp=NNPtV?VB ףp= ?NN rh? i suffix kerJJRK@RB(\DT\(\NNuV@VBD"~jWP rhVBZZd;RBRZd;@VBPzGNNP- @JJsh|?VBNQNNS;On VBK7ANNPSK7i+2 word asiansNNPS"~j?NNS"~ji tag+i-2 tag ) NN NN|?5^?FW9v?VBZ;On?NNSx&1пDT/$VB"~?VBDy&1?VBNx&1VBPA`"WDT/$?JJK7i word salesmanNNCl?NNPCli+2 word improvedVBP`"ο$L7A`NN-?NNP|?5^?VBK7A`i+2 word seems NNNbX9@JJ-?INx&1NNP-ۿVBGlNNPSQ?RB}?5^I?DTL7A`NNS+VBпi-1 word seniorityNNSSVBNbX9?VBDףp= ۿ i+1 word songNNP333333VBGv/NNK@JJ+VBDoʡi+2 word amongNNPS5^I VBG)\(JJx@IN#~j?JJRx&?VBףp= VBNCl@WDTFxNNP|?5^NNQVBD rRBS;On@RBB`"ٿJJSp= ף?RBRy&1NNSh|?5?i-1 tag+i word IN instantJJlҿNNl?i+2 word hismanalVBZQNNS(\NN\(\@ i+1 word allyNNClNNSClJJRʡE?JJl?RBRʡEi+1 word cursingVBNGzJJGz?i tag+i-2 tag VBG DTCD|?5^ڿRBM?IN;OnVBDK7A`?NNStV?NNPjt?NNPSQRP|?5^@WDTB`"?VBGq= ףpRBR\(\?VBN- JJHzGѿNNK7A? i word peopleRB5^I NNSʡE#@NNPx&NNPSx&1@JJSNN"~CD`"i-1 tag+i word PRP$ plansVBZx&1NNSx&1?i-1 tag+i word TO profitabilityNN r?VB r i suffix notNNsh|??VBNmJJ;On?i+2 word intricateVBDv/?VBNK7A`տJJ"~i-1 word specializedNNPClRBR7A`JJR7A`?NNCl?i-1 tag+i word NNS vestedRBOnVBD= ףp=VBN-? i word pleaNNS= ףp=RBZd;OJJZd;OVBL7A`ؿNN/$@ i suffix linNN|?5^?JJNbX9NNSNbX9NNPoʡ @VBOnNNPSʡERB ףp= i word scotNNP}?5^I?NNPS}?5^Ii-1 tag+i word IN at&tJJ)\(NNP)\(?i-1 tag+i word RB behavedVBNQVBDQ?i+1 word liftedRBGzǿNN rh?VBPPn?JJ+NNSQ?VBv i word appleRBffffffƿJJ;OnNNSffffffNNPQ@NNPS;On$L7A`i+1 word bouncesDTףp= WDTT㥛 пIN+?i-1 tag+i word CC producesVBZCl?NNSCli word participateVBP~jtNN^I + VB r@i+1 suffix ourVBDx?POS`"VBˡE}@PDTy&1?NNPSK7?FW^I +?VBZZd;O?DT}?5^I?IN"~ @WDTJJDlRBR(\JJSq= ףp?VBPS?RBS@NNSp= ףNN\(NNPRQJJR"~VBG{GzVBNw/RPn?i-1 word vaultNN|?5^?VBD|?5^ʿi-1 tag+i word VBG besideRPClINCl?i-2 word japaneseJJ{Gz @FWzG?RBRFx@NNPS= ףp=?RP(\?VBNL7A`WDT㥛 ?VBG(\DTh|?5VBDd;O?VBZl?IN(\NNPI +޿VB;OnNNSVBPw/ @RB㥛 ?JJR^I +NNSL7A`пi+1 word issuerJJ-?VBP-i word leftistJJm @NNm i word infringesVBZ(\?NNS(\ i word femaleJJK7?VBPzGNNSV-NNDl?i-2 word petersJJ`"NN{Gz?CDFx?i-1 tag+i word NN shoddyJJM?NNMi-1 tag+i word JJ carNNGz?NNPGzi-1 tag+i word JJR tradeVBoʡ?NNoʡi-2 word edwardsNNPSClNNS= ףp=VBN&1JJ&1@NNP&1?i-1 tag+i word RB anymoreRBX9v?NNX9vi-1 tag+i word RB unendingVBG!rhԿJJ!rh?i+1 suffix basJJ ףp= ?NN ףp= FWtVοRBq= ףp?IN~jtۿNNPv/?i-1 word induceJJX9v?NNX9vֿi word commandmentNNK?NNPKi word funnelingVBG;On?NN;Oni-1 word jealouslyVBʡEVBP5^I ?VBN1ZdۿVBZOn?i-1 tag+i word IN fla.NNQNNPQ?i+2 word communityJJJ +?VBNZd;OVBZGzֿNNP"~jPOSGz?i word distractedVBD㥛 ?VBN㥛 i word fossilsNNSGz?NNGz޿i word wreakedJJQVBDQ?i+1 word incapableDTCl?RBCli-2 word frustratedJJtV?NNtVi-2 word excuseVB rh?NNS1ZdNNS?i word captureNNʡE?JJʡEi-1 tag+i word RB signaledVBN ףp= VBD ףp= ?i-1 tag+i word IN comparisonNNS rNNoʡ?JJ7A`i+1 word coughVBGSJJX9v@NN~jtVBCli-1 tag+i word VBD surprisedVBDV-VBNףp= JJm@ i word carlNNV-NNPV-?i+1 word obligattoNNMb?JJMbi-1 tag+i word WP feelsVBZ~jt?VBD~jti-1 tag+i word DT maninstaysNNSv/?NNv/i-1 tag+i word JJR biddingNNCl?JJCli-1 tag+i word NN linkedVBZףp= VBDףp= ?i-1 tag+i word NN breakdownNNL7A`?RBʡEVBN)\(ܿi+2 word certifiedNNZd;O?JJZd;Oi-1 tag+i word NN detersVBZ(\?NNS(\i-1 word cardsVB|?5^RB9v?NN +i+1 word enjoyedVBP"~j?NN"~ji-1 word separatelyJJNNzGRBV-?VBNsh|?? i suffix heaNNPSMbNNPMb? i word exemptJJ;On@NNףp= VBN rVBPmRBNbX9NNSVB?i-1 tag+i word DT boysNNSCl?NNCl i word campusNNB`"?JJ'1ZJJR\(\ i word barleyNN?5^I ?NNPS?5^I i suffix sulVBDFxNNP+NNp= ף?i-1 tag+i word JJ learningNN= ףp=NNP= ףp=?i-2 word revisedVBN rhVBD rh?i-2 word culturalVBPKJJR!rh?NNPnJJ;On?i+1 suffix veyNNPSClNN~jtFW&1ҿNNPCl@INGzi+1 word bringsDTMbXWDTMb?INzGҿi-1 tag+i word NNS approachedVBNZd;O?JJB`"ٿVBDx?i-1 word caseloadsVB/$?VBP/$i word collegiateJJ/$?NN/$i-1 tag+i word VBP indicatedVBNuV?VBDuVi word incorrectlyRB(\?VBP(\i tag+i-2 tag RBS POSNNMbPRBV-VBDv/JJ㥛 ?CDX9v? i suffix hubNNx?RBxi-2 word subcompactsVBNtVNNStV?i-1 tag+i word DT riskNNPffffffNN r@JJV-i-1 tag+i word TO remainVB/$?VBNNN}?5^Ii+2 word disbandJJ;On?NNV-VBN㥛 i-1 tag+i word VBZ justifiedVBN1ZdJJ1Zd@i-1 tag+i word PRP apartVBPZd;ORPv/տRBOn?i+2 word reformVBP1Zd?NNSHzG?NN(\?JJzGNNPK7A` i word spendsVBZK7A`?NNSK7A`i+2 word proliferationRBMb?NNMb i word left JJS㥫NN +VBDjt@VBNq= ףp@NNSCl˿NNPMbVBp= ףVBP/$PRP9vRB rȿIN+VBZ|?5^JJRi-1 tag+i word VBP japaneseNNPS$CJJ$C?i-1 tag+i word DT arbyNNPSGzֿNNPGz?i-1 tag+i word POS mysteriouslyRB"~j?NN"~ji-1 word naggingVBPh|?5޿NNh|?5?i-1 tag+i word VBN publicNNx&?JJx&i-2 word appearsNN"~jԿRBINQ?JJ9vڿi+1 word originatedNNS㥛?NNPS㥛i-1 tag+i word JJ trulyVBPQRBQ? i word screenRB/$NNʡE6@JJVBZ(\NNStVVBsh|?i-1 tag+i word VBZ loudVBNmJJm?i-1 tag+i word JJ bagsNNS333333?NN333333i-1 tag+i word TO b2VBףp= JJL7A`@NNPZd;i-1 word usualJJʡE?NN/$ٿNNSCli-1 tag+i word VBN kidnapperNNGz?FWGzi+2 word geduldNN+NNP+?i+1 word flight NNjt?VBDClVBN{GzVBS?NNPSMVBP~jtJJx&1@PRP${GztNNPsh|?JJRZd;O?RBR"~ji+1 suffix dio VBDv/RBR-WDTDTV-ݿNNPZd;ONNPSʡE?NNףp= @INMbX9?VBZ{Gz?NNSjtVBGףp= JJ"~@i-1 tag+i word NN humRBRK7NNK7? i suffix yed JJRPnNNS\(\NNP7A`CCA`"VBNX96)@NNʡVBDQ+"@VBP(\RBlIN7A`VBZ㥛 VBS㥛 JJA`"?i-1 suffix onsVBDKDTK7NNPS?FWMb?VBNx&1WDTQ?NNPZd;ORBsh|?NN/$ӿNNS;On?EXSJJjtVBZ5^I ?VBq= ףp?VBGDlIN$C?RP|?5^?JJROn?RBR;On?VBP ףp= @i-1 tag+i word IN exerciseNNV-?RBV-i+1 word neighborhoodsJJSZd;?JJ)\(NNMb?i-1 tag+i word DT bargainJJMbNNMb?i-1 tag+i word CC financesVBZZd;?NNSZd;i-1 tag+i word VBG spendingVBGMbXٿNNMbX?i-1 tag+i word PRP meansVBZCl?VBDCli-1 tag+i word -START- ratesVBZCl׿NNSCl?i+1 suffix ulbNNX9v?JJX9vi-2 word quotedVBG9v?NN9vi+1 word sheltersNNFx?JJxNNPx&1i-2 word segmentsJJR~jt?RBR~jtӿ i+1 word areaNNK7A`FWSJJHzG @i-1 tag+i word IN southernJJV-?NNPV-i word stromeyerNN~jtӿNNP~jt? i suffix M&AWPS㥛NNJ +?NNPK7A` i+1 word secNNSDT?VBGq= ףp?JJq= ףp i suffix ptyVBZ/$JJGz @NN= ףp=RBMbXɿ i word leakedVBDQVBNQ?i-1 word homeownersWDT7A`IN7A`?i-1 tag+i word IN higherJJR#~j @JJV-RBR{Gz i+2 word beenRBPnVBP`"?INS㥛CD(\?EX!rh?VBDOn?WDT+@VBG/$PDTX9vJJRףp= JJ rh?NNPPn?NNS/$?VBHzGNNPS rhVBNQ?PRP)\(NNRQ?JJSCli-2 word losesVB?VBP i+2 word adsNNPS!rhNNvϿVBDK7AJJMb?VBZOn@NNS(\?NNPQVB%C? i-2 word bindJJSK7ANNPK7A?i word democracyVBQNNCl@JJQNNPjtֿi+1 word providingRBn?INni+1 word extremeRBR㥛 @JJR㥛 i-1 tag+i word DT englishJJףp= ÿNN1ZdۿNNP-?i-1 tag+i word `` leadsNNSK7?JJK7i-1 tag+i word JJ ethnicJJd;O?NNd;Oi-1 word footballVBG\(\NNn?JJMbX9i-1 tag+i word NN consumedVBN)\(?NNVBDRQ i suffix salJJI +?NNP/$?VBJ +NNSxNNv@i+2 word takenVBPQNNzG?JJsh|?RBGzNNP+?i word executedVBNK7?JJK7i-1 tag+i word DT motherJJRFxNNFx?i word negativeNN{GzJJK7A?CDZd;Oi-1 tag+i word NNP nightNNvNNPv?i-2 word acquiringNNPp= ף?NNp= ףi word repleteINjtԿJJx&?NNT㥛 i-1 tag+i word RBR likelyJJ~jt?RB~jti word vendettaNNGz?JJGzi-2 word amount NNPp= ף?VBx&VBGp= ףRBOn?NN|?5^?VBNm?JJ{GzĿINL7A`VBDmNNSZd;i-1 tag+i word VBP exposedVBNˡE?JJˡE i word canvasNNS~jtNN~jt? i-1 word askVB1ZdPRP~jt?RBnINm?i+1 word ambulanceDTm?INmݿi-1 tag+i word , recorderVBZ"~jVBPClNNK7?i-1 word letterVBD9vڿVBN9v?WDT;On?INQVBZ/$?DTʡENNS/$i+1 word alwaysNN&1?JJClCDRQi-1 suffix medNN333333?RBRx&1IN)\(@DT%CJJRy&1NNSQ?VBNrh|׿WDTZd;ONNPSv?VBG/$JJ)\(?VBDZd;?RP-JJSMbX9RB#~j?NNPrh|Ͽi-1 tag+i word IN displayNNSGzNNGz?i-1 tag+i word IN capitalJJ+?NN%CNNPI +?i-1 word crimesVBN/$JJHzG?VBDMb?i+1 suffix ltoRBMbXѿNNPMbX?i-1 tag+i word RB madeVBD ףp= @VBN{GzJJ333333i-1 tag+i word NNS resultVBV-ڿVBPףp= ?NNd;Oi word atlantaNNSoʡݿRB#~jNNSӿNNPS㥛?i-2 word citicorpINX9v?DTX9vi word surveillanceNN(\?JJ(\i-1 tag+i word JJ passedJJ/$ӿVBD/$?i-1 tag+i word IN interviewingVBGE?JJEпi+2 word cyclingVBP +NNZd;?JJ +INB`"۹?i-1 tag+i word RBR crimpVBv/?JJv/i-1 tag+i word WDT halfDT)\(NN)\(?i-1 tag+i word TO gleanVBv/?JJv/i+1 suffix tenVBClJJSoʡNNSCl@VBGˡEĿRBS?NNPV-?IN +JJRK7A RBV-@NNMbX9PRPMbJJh|?5VBZB`"VBN㥛 RBRGz @VBP?WDT rh?i+1 word socialistJJm?NNPmi-1 word wilfredVBD(\?JJQNNPHzG?i-2 word againstVB)\(JJ"~j@JJRClNNS|?5^NNPʡEVBGx&NN|?5^?INCl?VBP)\(?NNPS9v?RBS+POSMb?VBNMbX9ԿRB&1RBRbX9ȶ?VBZS㥛?i+1 word electromagnetsJJ rh?NN rhi+1 word behaviorJJV-?NNV-i word airlinesVBZ/$NNSOn@NNP{GzNNPSGz @NNrh|JJZd;Oi-1 tag+i word , topNN +@JJ + i suffix 4-0JJV-?NN)\(CD)\( i word such VBZjtNNSʡEVBsh|?RBClNN!rhmJJZd(@IN/$NNPoʡVBDClPDTET @SYMB`"VBP ףp= i-1 tag+i word VBP frightenedVBNSJJS?i-1 tag+i word MD repurchaseVBtVVBDtV@i-1 tag+i word NNS goddessVBP-NN-?i-2 word areasJJR333333?RBR333333VBNd;OJJB`"RBV-NNjt?VBDd;O?i+1 word project JJFxNNSJ +NNPSV-ͿVBG'1ZNNV-@NNP r@VBDPnпVBNˡEVBZ= ףp=ڿi-1 tag+i word DT troopNNx?JJxƿi+1 word spiritsVB㥛 VBNZd;߿RBZd;׿VBDx&1JJ~jt @i word incumbentsVBZ ףp= NNS ףp= ?i-2 word goods VB-RPsh|?NN rh@VBNnJJZd;O?VBD+ÿVBPI +RBQ@INh|?5 i+2 word bellIN rhRP rh?DTPn?NNP rh?VBG~jt?NNuVPDTPni+1 word deeplyWRB?JJi-1 tag+i word DT premiumJJZd;O@NNZd;Oi-1 tag+i word JJ becauseINX9v?NNT㥛 RBQ?JJR-JJCli-1 tag+i word JJ episodeNNZd;?FWZd;i-1 tag+i word -START- cocoaNNS/$NN/$? i-2 word meltNNE?JJEؿ i word cokelyRB|?5^ҿNNP|?5^?i+2 word plungeNNPClNN$C @JJV-CD5^I i-1 tag+i word -START- annualJJp= ף?NNPp= ףؿ i word stormVBPx&1NN+?JJK7VBD(\ȿ i+2 word rollJJ㥛 ?JJRx&1?VBZuV?NNS~jt?NNPK7A`VBDh|?5޿RBRx&1VBN^I +߿ i word pistonNNCl?NNSCli-1 tag+i word DT regularJJV-?NNV- i+1 word messJJR(\?NN\(\׿NNPףp= i-2 word salariesVBZxNNSx?JJA`"?NNA`"i-1 tag+i word CD copyNNSGzNNGz? i word outcryNNS`"NNRQ@JJjtINSVBZ|?5^i-1 tag+i word VBP stakesNNSGz?RBGzi+1 word laptopJJh|?5?NNh|?5i word transmissionNNˡEԿNNPˡE?i-1 tag+i word VBP becauseRB"~IN"~?i word arbitrarilyRB&1?JJNNL7A`i-2 word costaNNSMbNNRQؿNNPRQ?VBZMb?i-1 tag+i word NNP realNNףp= NNPףp= ?i-1 tag+i word VBZ balanceNN(\?RB(\i-1 tag+i word `` shadowingNN|?5^VBG|?5^?i-2 word reconstructVBN rhVBD rh?i-1 tag+i word TO shortVBʡE?JJʡEͿi word timberlandsNNS\(\?VBN\(\i-1 tag+i word VBG fundedVBNxJJx@ i+1 word realPOSp= ף@JJR/$?NNP+?VBGMbX9?RBffffff?NNMbX9RBR/$VB{Gz?VBN\(\ϿJJx&?NNPSA`"VBPK7AVBZp= ףVBDy&1|i-1 tag+i word CC returnedVBN'1Z?VBD'1Zi+2 word figures RP\(\?IN"~jDTI +޿VBp= ףPDT/$@VBNJJQ?VBGX9vRBʡEi-2 word greatCD-NNPv?NNPSClNNuVͿJJRK7?RBRK7PRP?IN$Ci+1 word lawmakersNNDlNNP{GzVBuV?VBD+?JJA`"@i-1 tag+i word VB stolenVBNCl?JJCli-1 tag+i word IN investmentJJNbX9NNPNbX9?i+2 word societeNNPv?NNv߿i-1 tag+i word DT iranJJ~jtNNP~jt? i-2 word gapVBZuV?NNSuV i word enableVBQ?VBP rh@JJDli-1 tag+i word '' appearVB$CVBP$C?i-1 tag+i word NNPS jitteryJJ{Gz?NN{Gzi+1 word horseJJCl?VBN|?5^NNGzi+1 word exercisingIN"~?DT"~i-1 tag+i word JJ castingNNSʡEVBGʡE?NN/$?i word sightseeingVBGS㥛NNS㥛?i+1 word observerNN&1ʿCD&1? i-1 suffix ''VBG'1Z?NNZd;?FW(\VBPS㥛ԿIN"~j?CDrh|VBtV?RBx&1ؿDTmJJSPDT$CVBD-?RBRʡEVBNZd;?WDT|?5^?VBZX9v?NNSJ +?MDffffffCCGz?NNP/$NNPSʡEi word probablyRB\(\?NNP\(\i-1 tag+i word WDT buildVBPI +?INI +i tag+i-2 tag . UHNNM¿UHM? i+1 word topVBZ rhٿNNSNNPMbX9MD9vPOS|?5^?CDQ?PRPV-ڿJJ1Zdi-1 word executivesVBPsh|?@JJB`"ٿNNPv/?VB!rhRB/$?NNjtVBD ףp= VBNK7?i-2 word hopingVB~jt?DTV-NN~jtINV-?i-1 tag+i word NN realizedVBN9v?VBD9vi word carelessJJZd;O?NNZd;Oi-2 word departmentsVBDV-?VBNV-i-2 word landscapeVB;On?VBP;Oni-1 tag+i word `` unfortunateJJI +?NNI +i word hundredVBD'1ZVBNxCD= ףp=@JJ rhNNPuV?NNni+2 word eventRBRCl?JJRCli-2 word pilots VBZPnVBGQ?VBNL7A`?JJZd;O?RP\(\NNSPn?VB{GzRBK7ѿNN/$IN\(\?i+1 word strategistJJzGếNNPzG?i-1 tag+i word CD shotNNS`"NN`"? i word motherJJRjtRBMbRBR/$NN r@i-1 tag+i word RB thinkNNx&1VBQVBPB`"?#i-1 tag+i word VB electrogalvanizedVBNʡEֿJJʡE?i-1 tag+i word CC regulationsNNPSV-@NNPV-i+1 word marbleVBtVJJtV?$i-1 tag+i word -START- conservativesVBZv/NNSv/?i+1 word rangedNNSX9v?VBPX9vWDTQ?INQ i word tastesNNPSClNNS#~j@NNPMbi-2 word styleRBX9v?VBP5^I VBNMbX9JJ(\VBDoʡ?i word demonstrationsNNS1Zd?NN1Zdi-1 tag+i word DT firsthandJJ7A`?NNK7ARB/$ſi tag+i-2 tag PRP$ JJNNPQVBGK7A`?NN|?5^VBDJJSQ?JJZd;O?NNS+?i-1 tag+i word JJ requiredNNSSVBNuV?VBDX9vi-1 tag+i word NN asksVBZFx?INFxi-1 tag+i word VBG tableNN?JJi+1 word violenceNNMbX9ԿVBD;OnJJQ?VBGMbX9?VBN|?5^i-1 tag+i word DT respectableJJ#~j?NN#~jܿi-1 tag+i word TO speculateVBE?NNEпi-1 tag+i word IN dec.NNPSx&JJClNN(\NNP/$ @i-1 word thankVBP㥛 NNK7A`?VBZMb i word bassNNSh|?5NNS?INffffffVBZd;ONNPʡE?i-2 word bethforgeNNuV?JJuVi+1 word employeesJJRˡE@WDT-JJMbؿVBD%C̿VBG|?5^?NNFxVBNZd;OݿVBPB`"۹?DT333333ۿCD1Zd?NNPV-VBMbX?IN㥛 ?MDd;Oi-2 word improvementsJJsh|??NNsh|?i-1 tag+i word CC orderlyJJףp= ?RBףp= !i-1 tag+i word NNPS mathematicianNNoʡ?JJoʡi-1 tag+i word DT spendingVBGuVJJ!rh?NN`"οi+1 word rolingNNzGNNPzG?i-1 tag+i word TO corporateVB{GzNNP{Gz?i-1 tag+i word DT downJJMb?RP(\?NN㥛 RB(\FW)\(ܿ i+1 word yogiINV-?NNPV-i-1 tag+i word IN scatteredVBN +JJ +?i word enlargedVBN"~jJJ"~j? i+2 word bullRBʡENNPʡE?i-1 tag+i word IN absurdNNSx&JJQ?NNli+2 word controlINʡE@VBP +JJ9v?VBZZd;O?NNP}?5^I?RPV-RBh|?5?VBNRBR-JJRI +?NNS(\VBp= ף?NN ףp= VBDHzGi-1 word lowerNNx&1@JJx&1NNP/$?NNS/$i-1 tag+i word IN tissueNNS= ףp=NNMbX9?JJh|?5i+2 word discloseVBDZd;?JJZd;VBZ~jtNNS~jt?VBGtV?NNtVֿi-1 tag+i word VBN designNN-?JJ- i pref1 NLSK7A`ݿMD= ףp=JJRQCDS?IN!rhVBGMbXVBP/$DT+?NNPm,@RBSQVBDZd;VBZCl{FWmCCFx @UHV-?RBQ@NNS +VB-WDTZd;JJGzWPףp= $On?NNGzNNPSuV@JJS rhi+1 word againRPS㥛VBPbX9JJZd;ONNSCl?RBR= ףp=ʿJJR= ףp=?VB/$@NNPSq= ףpVBNʡE?RB= ףp=@VBZClNNPS?NNL7A`@VBDʡEPRP rhIN+VBGMbX?i-1 tag+i word CD heesNNPSd;OοNNSzGڿNNPuV?i-1 word negligibleNN(\?JJ(\ݿi-1 tag+i word NN comprisesNNSX9vVBZX9v?i-1 tag+i word IN restrictedVBD{GzVBNZd;?JJ?5^I ? i word drivesVBZp= ף?NNS7A`?NN{GzVBDʡEi-1 word availableNNSCl?NNCl i-1 word look NNZd;O PDTB`"JJRq= ףpRBRZd;ORB~jtVBrh|RP+?JJRQ@WPv/?INX9v @NNSClDTB`"?NNPKi+2 word zoeteNNPS1ZdۿNNP1Zd?i+1 word subscribersVBNZd;?NNV-?JJL7A`i+2 word whichRBRZd;O߿VBD= ףp=RBSv/JJZd;O VBNA`"INQ?JJRZd;O?VBK7ANNPS;On@VBG?5^I NNNbX9@JJS)\(?NNSQ@NNPbX9H@RB)\FWףp= VBZsh|?DTm?CD= ףp=@i+1 word taken VBPtV?JJVBZMbX9?NN#~j?VBDvJJSd;OPOSMbX9VBʡEƿRBSS㥛?NNSPn?NNP9vi+1 word mandatedRBx&1?NNx&1 i suffix ims NNPS`"@VBNI +VBP|?5^RBGzCDClNNP ףp= VBy&1JJZd;ONNA`"VBD`"RBRx&1VBZCl@NNS!@i-1 tag+i word PRP$ affidavitsNNSV-?JJV-Ϳi-2 word restrictions VBN-?JJRZd;NNS(\JJK7A`@PDTw/RBRZd;?RBV-VBZ`"ֿNNPS?VB$C˿NNV-ݿVBPPni+2 word knotsNNSx&JJQ?NNli-1 tag+i word VBG revcoRBףp= NNPףp= ?i-1 tag+i word , shelfVBPsh|?PRPT㥛 NNZd;@VBD~jtxVBZZd;OͿi+1 suffix ouzJJMb`?NNMb`i word contributingVBGNbX9?NN\(\JJv/?i-1 word borenNNy&1RB}?5^IԿNNPT㥛 VBZ}?5^I?INS?i+1 word former VBDB`"?VBNZd;PRPʡEJJ㥛 IN&1DTV-@VBx&?NN\(\PRP$ʡE?VBPV-ڿWDTQi word reconstructVBCl?NNCl i word loyalJJ(\?NN5^I NNPPni-1 tag+i word NNP preferredVBN= ףp=?JJE?VBDK7i-1 tag+i word JJS regimeNNSQNNQ?i-1 tag+i word DT chevroletNNPSjtNNZd;ONNP rh?i-1 tag+i word NNP publishesVBZZd;?NNSZd;i-1 word officiallyVBClRP^I +@RBףp= ӿIN rhi+1 word consistentRBPn?JJPni+2 word sheerDT r?IN ri-2 word transitionVBX9v NN9v?JJR@JJq= ףp?NNPq= ףpi-1 tag+i word VBZ monitoringNNjt?JJjtԿi+1 word discourageVBGzRBGz?i-1 word donatedRP rhIN rh?i word disappearanceNNA`"?JJA`"i-2 word bewitchedVBDoʡVBNoʡ?i-2 word unidentifiedVBDPnVBN(\ݿJJV-? i suffix ran VB)\(RBSNNˡE@VBDy&1,@VBZNNP= ףp=?FWv/VBNX9vVBP= ףp=JJx&1?NNSMi-2 word young NNP?5^I NNPSZd;@JJ-@VBP&1NNSd;OINx?VB&1?NN~jtWDTZd;RB- i-1 word rioFWx&1IN;On?NNPEi word negotiatedVBNʡE?JJVBD9vi word bassoonNNL7A`?VB+NNSmi+1 word shimaJJ/$NNP/$? i+1 suffix :VBPZd;OVBZS?NNP+ INM?VBD rhCD+JJSh|?5޿FWx&NN-@NNSGz.@VB!rhԿEXh|?5NNPSOn?VBN-?JJX9vDT r?RPMbRBoʡտRBSh|?5?RBR?5^I ҿJJR5^I VBG rhi word flexibleJJCl?NNGzNNPi+1 word devilleJJ/$NNNbX9ȿNNP333333?i-1 tag+i word , rolledVBNmVBDm?i-1 tag+i word IN tripleRBoʡ@NNA`"˿CCoʡPRPHzGJJh|?5INuV i-1 suffix daNNPENN rh@VBDS㥛i word indicatorsNNPSrh|?NNSX9v?NNX9vNNPrh|i-1 word guestsVBN~jtۿVBD~jt?i-2 word biggerWDTX9v?VBP7A`VBG7A`?IN-?NNP(\i-1 tag+i word VBG outrightRBV-?JJ(\VBNZd;Oi+1 word mortgagesVBGV-JJS@NNrh|i+2 word later FWGzVBN/$ @NNPS+?RBX9v @NNM?VBD/$ RBRl@CDRQ @JJQIN7A`VBRQNNP+JJRV-i+1 word developmentsJJR5^I JJ5^I ?i-1 tag+i word RB rewardingVBGQJJQ?i-1 tag+i word PRP$ modelNNS +οNNffffff?JJ㥛 i-1 word actionsVBDMbX?VB9vVBP/$?VBNMbXRBMbi-1 tag+i word DT blastNN`"?JJ`"i-1 word reverseJJRI +ֿNNI +? i-1 word tuneVBN~jt?NN~jti-2 word campusesNNSGz?JJGzοi-1 tag+i word RB pleadedVBNA`"VBDA`"?i word outrightNNSQRB/$@JJ ףp= VBNZd;Oi-1 tag+i word PRP$ outspokenJJB`"?NNB`"i+1 word offensiveJJ!rh?NN!rhi+2 word particularly JJ333333 @NNCCsh|?VBPv/?NNPGz?VB|?5^VBGx&1VBNOnRBsh|??NNS(\?i+1 suffix rmyJJDl?NN#~jĿNNPJ +i word differencesVBZClNNS?IN+ i word bragsVBZʡE?NNʡEi+2 word playsWP+?JJ#~j?NNPd;Oi-1 tag+i word RB mentionedVBDK7?VBNK7i-1 tag+i word NN likelyNN)\(IN +JJʡERB1Zd?i-1 word severeVBZClNNS#~jĿNNh|?5 @FWGzCDQݿJJ1Zdi-1 word tradesIN?VBGVBNDl?VBDDli word abundantJJL7A`?NNL7A`i-1 suffix ariVBrh|VBPrh|?i-1 tag+i word IN societyNN#~j?JJ#~ji-2 word blemishNNI +޿NNPI +?i-1 tag+i word DT correctVBP1Zd?JJ rhNNMi-1 tag+i word VB developVB}?5^I?JJ}?5^Ii-2 word london VBNQ?VBGʡE?NNPx&ٿNNPS?JJd;ONNʡEVBD/$?RBMbINMb?NNSQ@RPMbi-2 word sweetenedNNS/$VBNSNNoʡ? i-1 tag+i word JJ cardiovascularJJ ףp= ?NN ףp= i word toughPRP$|?5^ʿJJHzG@NNQٿRBT㥛 INzGNNPHzGi-1 tag+i word DT haveVBZZd;VB$CVBP rh?i-1 tag+i word CC spiritsVBZffffffNNSffffff?i-1 tag+i word VBD issuedVBN333333?JJ333333i-1 tag+i word NNP systemNNPSS㥛NNrh|?NNP#~j?i-1 tag+i word POS starJJZd;ONNZd;O? i-2 word boreJJSvNNv?i-1 tag+i word DT forecastNNtV?JJK7VBNh|?5ֿ i-1 word esbJJnVBDn?i word unemployedNNP(\µ?NN(\µi-1 tag+i word DT fearVBP r?NNMbJJffffffi+2 word traderNNE?NNS`"JJS㥛?i-2 word carolinaIN&1JJK7?NNPMNNB`"۹RB&1?i-2 word average VBZ;On?VBX9vNNK7?EXףp= JJ^I @NNSx&NNPZd;VBGx&1?RB333333CD/$ֿi-1 tag+i word NN sparkedVBDDl?VBNDli word synopticsNNPSS@NNS㥛 ڿNNP9vi+2 word transitVBNbX9?JJbX9޿ i word mimicsVBZd;O?VBPd;Oi-1 tag+i word NN tenderNNZd;?JJZd;i-1 tag+i word NNP controlsVBZ/$@NNS/$ i suffix ol.NNPCl?NNPSCli-1 tag+i word NN whileINK@VBPK7NNmi+1 word chandeliersVBG-?NN-i-1 tag+i word NN developingVBGʡE?JJʡEi-1 suffix lasNNPS rпNN%C?VBD#~jCCffffff?VBNK7A`IN+?NNP(\i-1 tag+i word NNP stevensNNPSI +NNPI +?i-1 tag+i word NNP partnershipNNPS#~jNN333333ۿNNPtV?i-1 tag+i word VBP grownVBNʡE?JJʡEi-1 tag+i word TO cervicalVBoʡJJoʡ?i word chargedVBNx&@JJS㥛VBDʡE i-1 suffix ad NNPS-?NN/$@VBPV-NNS?NNPQVBX9vRBR= ףp=WDTB`"ɿINB`"?VBZ#~ji-1 tag+i word JJ financierNNSbX9NNbX9?i-2 word recordedINSVBPK7ANNK7A?RBS?i-1 word cliffJJv/NNPv/? i suffix hewNNx&1JJ(\ݿVB;OnVBP-?NNSh|?5 i word runsNNx&VBDxVBP'1ZJJ^I +VBZxi@NNSZd;O@i-1 tag+i word PRP$ omniJJNNP?i+1 word territoryJJR ףp= JJ ףp= ?i word keylessJJQ?NNQi word speakerVBNNPSK7NNMb?VBDT㥛 JJV-߿NNP;On@i-1 tag+i word PRP$ rearNNX9v?JJX9vi-1 tag+i word NN enjoyedVBNCl׿VBDCl?i-1 word keychainINʡE?VBDʡEi-1 tag+i word POS panJJClNNPCl?i word marchedVBDGz?RBSGzi tag+i-2 tag DT RP NNPS-?VBGQ?RBx&1?NNX9v?NNSjt?NNP/$JJS1ZdVBN`"?JJh|?5i-1 word coolerVBZV-NNSV-?i-1 tag+i word VBN implicatedVBNQ?JJQտi+2 word earnedRBM?NNSd;O?NNPB`"ɿJJ㥛 ҿNNoʡտRBRMi-1 tag+i word NN walkNNP-VBP-?i-1 tag+i word NNP nationsNNP"~ڿNNPSGz@NNSn i word debtorNNJ +?JJJ +i-1 tag+i word MD remainVBX9v?VBPX9v׿i-1 tag+i word NN illustrateVBP~jt?JJ~jti-1 tag+i word DT itemRBGzJJ"~NN'1Z? i word namedNNPnVBD{Gz?VBN{G@JJv/NNSV-VBGzRBV-i-1 tag+i word , dutiesNNS+?JJ+ i+1 suffix wePDTS㥛INF@RB +VBZQ?CDB`"?JJR(\NNSQNNPL7A`MD#~j?VBNS?RBR(\?WDTh|?5DTQ롿VBV-JJ(\NN1Zd@VBP9v?i-1 tag+i word IN reducingVBGHzG?JJHzGi+1 word inventionJJHzG?NNPHzGi-1 tag+i word JJ accruesVBZS?NNSi+2 word shipbuildingPOST㥛 ?RBjtINjt?VBZT㥛 i+1 word tradedistortingJJSzG?RBSzGi-1 tag+i word VBG findVBPCl?JJCli-1 tag+i word CC receivedVBNK7A`?VBDK7A`i-2 word pokedNN +?JJ +i word appleyardVBZd;ONNPZd;O?i-1 word shelledRP"~j?RB|?5^ڿINSi+2 word characterizeNNPDl?NNDli-1 tag+i word DT clockNNX9v?JJX9vi word contrasNNPS rh@NNSClǿNNuVNNPףp= i word celluloidsNNS|?5^?NN|?5^i-1 tag+i word JJ underwritingJJ +NN +?i word longstandingVBG}?5^IJJQ@NNX9v i-2 word dr.VBZNbX9JJDl?NNS㥛VBDS㥛?POSNbX9?RBDli+1 word inspiringRBR= ףp=?JJR= ףp=i word dinkiestJJS rh?NN rhi-1 word persistentVBZp= ףNNSp= ף?JJV-?NNPV-i-1 word greatlyVBuVVBPuV?VBNʡE JJʡE @i-1 word phelanVBZ!rhܿPOS!rh?i-1 suffix EARNNPT㥛 ?VBD{Gz?JJSPn?VBNK7VBPQ?NNS$CVBG}?5^I?RBSPnRB/$ۿCD+INffffff?DT/$ݿNNPSS㥛JJ$C˿NNm?SYM)\(?WDT㥛 ?i+1 word regularlyJJ#~jNN㥛 VBNCl?VBPw/?RBQVBZK? i-1 word manyVB rؿRBRoʡVBN)\(?VBZv/VBDRQINMҿNNStV@VBGX9v?NNEVBP%C@JJClɿNNPSsh|?տRB ףp= ǿJJRS㥛?NNP'1Zi+1 word meansNNMbX@JJbX9INv/DTv/@NNP1ZdӿVBG/$i word intangibleNNbX9?JJbX9i+1 word zoeteJJp= ףFWףp= INˡE?NNPv/@NNbX9i-2 word restaurantVBD"~j?NNPS#~jVBN"~jNNP#~j? i+1 suffix cNNx&1NNPx&1?i-1 tag+i word WDT targetVBPB`"?VBDB`"i-1 tag+i word POS coastNNZd;O?JJZd;Oi word overcapacityVBZI +VBN(\NN/$?i+2 word advertisingVBZ}?5^I?NNSzG?RBx?JJxNNPV-i-1 suffix oedVBZ(\NNS(\?i-1 word healthyJJ= ףp=NN= ףp=?i-1 tag+i word JJS encourageVB(\?JJ(\i-1 tag+i word VBG hostileJJ^I +?IN^I + i word ineptVBPZd;OͿVBN333333JJ$C?i+1 word machinistsJJS㥛?NNS㥛ܿ i suffix ikkNNPSS㥛NNPS㥛?i+1 word smoothlyVBQտVBPZd;O?RBMbi-1 tag+i word DT nicheNN r?RB ri-1 tag+i word VBN suggestionsVBZV-NNSV-?i-1 tag+i word VBP assemblyNN$C?JJ$C i word fleetNNSPnJJ\(\?NNMbX?i-1 tag+i word IN stageVBP~jt?NNFxѿJJGz߿i-1 tag+i word -START- basedVBD"~jVBN"~j?i-1 tag+i word `` interestingJJV-?NNV-i+2 word controllingRB%CVBGRQ?NNPmVBZd;O@NNPS{Gz?RPxNNPn?i-2 word loosenNNS%CJJ%C?i word chemistJJzGNNzG?i+1 word internationallyRBRMbX?JJRMbXi-1 tag+i word RB excitingVBG rhJJQ?RBV-Ϳi word fascistJJB`"@NNB`"i+1 word disordersNN(\@JJʡEVBDSi tag+i-2 tag IN VBGJJV-?WP ףp= DTPnPRPK7A`?INQ?JJR\(\׿VBGm?RB9vNNPx&@VBSCDRQWDT ףp= ?VBDQ?VBNJ +?VBP/$VBZ'1Z?NNOnÿNNS/$ÿCC'1ZPRP$K7A`RBRV-?EXx?PDTCl?i+1 word judiciouslyRBR +?JJR +i-1 tag+i word -START- humanaNN9vRB9vNNP9v? i word dualRP= ףp=JJ= ףp=?i-1 word scanaVBZjtNNSjt?i-1 tag+i word TO gnpVBL7A`пNNPL7A`?i-1 tag+i word VBZ savvyVBN-ӿRBClRBR%CJJl? i+2 word uclaNNSuVNNuV@i+2 word seabrookVB~jtVBP~jt? i+1 suffix be RBQ @CC^I +?EX r?DTMVBSWRB;On?RBR!rhJJL7A`堿VBZ-NNP/$MD㥛 ?NNDl?i word jeffersonNNnNNPn?i-1 tag+i word VB worseJJRV-?NNSV-!i-1 tag+i word -START- televisionNN?NNPi word accusesVBZtV?NNStVi+1 word befallWDT rh?IN rhi-1 tag+i word DT safeNN~jt?JJy&1NNS{Gzi-1 tag+i word DT paranoidJJB`"?NNB`" i suffix OASNNPS"~NNP"~?i-1 tag+i word , containingVBG%C?NN%C i-2 word ,"VBZ1Zd?FWp= ף?CD\(\?RBQ?WRBS㥛IN"~?UHx?WP`"MDm?EXˡEܿJJRKSYM)\(?PRP$"~?NNffffffƿNNPHzGVBˡEPDTQ?JJGz׿RP= ףp=?RBSMbX9RBRL7A`?NNPSuVVBG7A`¿VBP(\?DTMbNNS$CӿCC{Gz?JJSX9v?PRP ףp= ?VBD/$?VBNQ?WDTNbX9$MPOSK7A`?i-1 tag+i word VBP armstrongNNZd;ϿNNPZd;?i-1 tag+i word IN whileINMb @VBGJJx&WPZd;i-1 word growing NNvRBR%C?JJR^I +?RBDl?VBZ;OnNNS9v?NNPSV-JJy&1?VBNK7A`i word challengingVBGOnJJ(\@NNCli-1 tag+i word DT stopNN7A`?JJ}?5^IRBRK7A`ſi-1 suffix an.CDtV?NNPtVi+2 word completedVBG +NNK7A`@IN;On?DT;OnڿNNPKNNPS㥛 ?i-1 tag+i word NN sparksVBZHzG?NNPHzGi-1 tag+i word NN offshoreINxֿRB?5^I ?NNp= ףi-2 word greatestNN rh?JJ rh i+1 word andNNSQ@CC"~jJJSjtĿ''p= ףPOSʡE?INV-MDNNPSS㥛 @PRP$MbPRPl?VBS?VBZp= ףRBR@VBDV-RP$CWRB%CNNPCl?VBGFxVBP +JJQRBjt?CDGz?JJRzG?VBNl?NN+@FWʡE?WDTZd;ODT333333?EXS㥛i-2 word hungaryDTx&NNP/$VBS?NNPSK7RBx&?NN\(\JJ+? i word hallsNNS rh?NN rhi-1 tag+i word JJS fundNNd;O?JJd;Oi-1 tag+i word IN baltimoreNNClǿNNPCl?i-1 tag+i word TO waitVBp= ף?JJp= ףi word scientificallyRB ףp= ?NN ףp= i+1 word decreasingVBP}?5^I?NNSB`"NNni-1 tag+i word NN restructuringVBG= ףp=NN= ףp=?i-1 word decidedlyJJR= ףp=JJ?VBN-ۿRBS˿RBR= ףp=?i+2 word captivatingVBQVBPOn?NN/$i-1 tag+i word '' hissedVBNxJJZd;OǿVBD?i+1 word better VB- @RPNbX9?VBDT㥛 ?VBPK׿RBI +?NNSQJJQNNFxJJS+VBNT㥛 VBZE?i+1 word corningRBˡENN~jtNNP?5^I ?i-2 word haberleVBNtVVBDtV?i-1 tag+i word VBD boringVBNQVBG5^I ?JJGz?NN= ףp= i word minuteNNQ?FWQJJ? i word chainsVBZp= ףNNSMb@JJV-i+1 word judgmentJJ(\?NN(\ݿi word butterfatJJy&1NN&1?JJRZd;Oi word biomedicalJJK?INKi+2 word advantagesDTK7ٿINK7?i-1 tag+i word JJ aggregatesNNSV-?NNV-i word frightenedVBNSJJMbX?VBDʡE?i-2 word specificVB(\VBGEJJʡE @NNB`"?RBVBZvϿNNSV- i-2 word howVBDtV?VBZh|?5?VBP`"?WDT$CNNP%CԿVB`"?VBGA`"JJV-?NN1ZdFW+?VBN^I +NNSQRB?INJ +DTMb@i-1 tag+i word PRP$ futureJJv/NNv/@i word cancerousVBPʡEÿJJʡE?i-2 word purpleVBNS?VBDS i word caughtVBD㥛 ?NNd;ORBףp= VBN@JJtV i-1 tag+i word NN increasesNNA`"VBZ?5^I NNSd;O?i-1 tag+i word , depressingVBG?5^I JJ r?NNzG i word showedVBDlq@VBN~jtVBP$C˿VBZV-NNSA`"NNףp= i+1 suffix hoxVBv/INv/?VBN ףp= VBD ףp= ?i-1 word themesNN+VB(\VBP +?i+1 suffix forCDK7CCFxEX(\VBD333333ۿVBPMb?WDTClRPh|?5?NN|?5^ @VB1Zd?RBR㥛 ?NNPS;On?VBGCl?FW"~jPOS5^I PRP;On?RB;On?JJR ףp= ?NNPV-ҿJJSL7A`尿VBN{Gz?JJʡEVBZDl?DTNNSL7A`@ i-2 word ploDT|?5^WDTd;O?IN7A`i+2 word limitsRBZd;ONN&1ʿEXZd;O?JJ&1?VBZ!rh?NNS!rhi-1 tag+i word NNS weakenVBQVBP1Zd?VBNMbi-1 tag+i word JJ dropsNNSM?NNMi-1 tag+i word ) introducedJJEVBDE?i+2 word districtsRB1Zd?VBP&1?JJ1ZdNN&1i word subcompactsVBZ~jtNNS~jt?i-1 tag+i word NNP watercolorNNtV?VBDtVi-1 tag+i word '' republicVBZZd;ONNZd;O?i-1 tag+i word , firmNNMbX9@JJbX9NNPSi-2 word darbyNNd;O?JJd;O i word rigidNNX9vVBN"~JJ(\@NNSmNNP/$VB +i-2 word countrymenVBK?NNPKi+1 word violatesNN\(\?JJ\(\ i-1 word jetVBNClѿVBDCl? i suffix ady NNˡE?VBD㥛 VBP-JJ;O."@NNPbX9 INI +NNSGzVBZd;ORBMbX@JJSx&VBNK PRPSi-1 word miles JJK7INI +VBZGz?CC~jtJJS?5^I POSGzVBPsh|?RB^I @NNy&1 VBN|?5^ɿi-1 tag+i word POS motorRBSSNNS?i-1 tag+i word JJ colombianNNPS+JJK7?NN$Ci word ajinomotoJJ/$NNX9vNNP`"?i-1 tag+i word VB extremeJJl?VBNGzRBh|?5i-1 tag+i word VBG maniacRBMbNNMb?i-1 tag+i word NNS remainsVBZK7?VBPA`"NNSGz?i+2 word yields SYMʡE?CDx&VBPףp= ?RB$CNNPSףp= NNuVNNPRQ?JJ~jt?NNSDl? i word forgoJJ{GzVBD ףp= VB5^I @VBNPn i+2 word koriVBZZd;?JJZd;i word miniscribePRP$ +NNffffffNNPp= ף?i-1 tag+i word -START- \*\*SYM+?JJ+i-1 tag+i word VBZ entertainingJJVBG? i word defeatNNK7A`VB?NNSˡEi word plausibleJJ?5^I ?NN?5^I i-1 tag+i word VBD notedVBN|?5^?JJ|?5^i-1 tag+i word NN camerasNNS~jt?VBNh|?5ֿNN?5^I i-1 word guardedlyRBR9vJJ9v?i+2 word aggravatingJJ(\?NNX9vϿVBG9v i+1 word coNNQJJNNPK7A`?VBZ{GzNNPS/$@i+1 word patientVBZv?NNSvi-1 tag+i word NNP heckUHS㥛?NNS㥛i-1 tag+i word TO broadVB= ףp=NNP= ףp=?i-2 word ventilationJJx&1@NNL7A`INtVi-1 tag+i word , americansNNS/$?NNPS/$i-1 tag+i word DT slightJJl?RBl i word penneyNN/$?NNP/$ƿ i suffix ramCC= ףp=ڿNNSʡENNMbȿNNP㥛 ?i+1 word accountingJJ`"@RB^I +NNPn?NN\(\NNS'1Zi-1 tag+i word IN upperJJRRQJJRQ?i-1 tag+i word NNP victimsNNPSۿNNSS?!i-1 tag+i word -START- vandenbergNNrh|NNPrh|?i-1 tag+i word , murderedVBNQ?JJK7AVBDbX9i word mentionedVBNT㥛 ?VBDT㥛 i tag+i-2 tag PRP UHVBZ;OnVB;On? i+1 word liesVBGK7RB^I + @NNRQ?JJRV-JJ/$NNSjt?VBCli-1 tag+i word DT hamakuaNN(\@NNP(\i+1 word flashlightsJJ+?NNP+i word impendingVBGQ?JJn@NNoʡi-1 tag+i word DT oncogeneNN= ףp=?FW= ףp=i-1 tag+i word NNP aroundINx&1@RBB`"NNPMbi-1 word beretVBD+?RB+i word collectedNNSʡEVBNL7A`?VBDx&1ȿi-1 suffix sseIN\(\?NNPjtRB +޿NNK7A@VBDʡEFWNbX9JJ~jt?i-1 word institutionWDT"~?VBNʡE?VBDʡEտDTHzGINV-i-1 word eduardNN rNNP r?i-1 tag+i word IN statesNNSV-VBZV-?i+2 word utrechtNNPSw/NNPw/? i word woodVBN(\ڿNNK7A@NNSGzJJ1ZdRBˡEܿi-1 tag+i word DT coattailsNNSV-?NNV-i word bondholdersVBZw/NNS~jt@NNI +RBA`"ۿi-1 tag+i word VBZ linkedVBN|?5^?VBD|?5^i-2 word yelledVB+NN+?i word endangeredVBB`"VBN ףp= @JJ/$i tag+i-2 tag WP .VBZuVINuV?i-1 tag+i word CD throughIN&1?CD&1i-1 tag+i word NNP addedVBDS㥛VBNS㥛?i+2 word conditioningVBP ףp= ?JJ ףp= i-1 tag+i word VBG executiveJJʡE?NNʡEͿi-1 word announcingDTvVBN"~ʿJJ"~?INv?i+1 word appearedVBZ"~jNNSffffff?VBx&1?RBq= ףp?NNK7?VBPx&1JJSi word remainingVBG1Zd @JJ9v?NNB`"i-1 tag+i word NN droughtNNjt?RB'1ZVBDףp= i-1 tag+i word VBG establishingVBGZd;?JJZd;i-1 tag+i word CC minimizingVBGMb?JJy&1NNjt i suffix \/2JJZd;CDZd;?i-2 word laboratoryVBN ףp= ?VBD ףp= i-2 word colombianVBGzVBP^I +?INK7Ai-2 word mccawVBNMb?JJMbNNPOnNNPSOn?i+1 word expendituresNNM?JJMi tag+i-2 tag JJR IN NNPSPnFWףp= ?VBNMbؿVBP(\?NNSx?NNP+ۿVBG333333RBbX9NNZd;_@JJ +οINףp= i-1 suffix emeNNPHzG?JJlRBV-NNQ?i-2 word transferRB?NN rhVBNv/ i+2 word abcNNSX9vJJRx&1?RBR333333ۿi-1 tag+i word DT arrayJJSۿNNS?i-2 word recklessNNh|?5JJ+?RBRV-i+1 suffix redWPףp= ?VBZDTRP#~jRB^I @VBPp= ףWDToʡ @VBNJ +?JJ?5^I NNP!rhIN rhJJRy&1VBGK7FW+RBRPn?NNPSʡE?JJSףp= VBDQVB/$?NNSl @RBSףp= ?CDx&1?NNHzG @PRPi-1 tag+i word DT damagedNN= ףp=VBNQ@JJ/$VBDmi-1 word british JJRK7?VBPI +?NNOnۿVBG'1ZJJffffff?FWq= ףpͿVBDK7?RBRK7RBp= ףVBZbX9VB/$NNPMbNNS rh?i-1 tag+i word DT quarterlyJJ(\@NNX9vRBxi word graduatesVBZS?NNSMҿNN9v i-1 word !VBP+UHL7A`?NNV-?NNP i word pencilNNS|?5^ҿVBN^I +NNV-? i-1 word yogiNNPSp= ףNNPp= ף?i-1 tag+i word JJ speechesVBZV-NNSV-?i-1 tag+i word JJ crackVBN rhNN rh?i+1 suffix oan NNPS^I +NNHzG@VBNPnDTS?NNSZd;JJ +?VBDx&?RBSVBZnNNPS㥛?i-1 tag+i word NN pastINrh|@VBN7A`NNQ޿VBDI +JJCli-1 tag+i word DT breakingVBG/$NN/$?i-1 tag+i word CC egoVB/$VBPZd;ONN}?5^I? i suffix uneVB^I +RBsh|?NNX9v?VBN+VBPuVͿJJuV?NNPd;O@i word illustrateVB+VBP|?5^@JJnRBT㥛 i+1 word acceptanceNNPSOn?NNClNNPʡEi-1 tag+i word -START- easternCC\(\NNSQNN(\JJMNNPZd;O@i-1 tag+i word NN searchesVBZX9v?NNSX9vֿi-2 word buildsJJ/$NNNbX9ȿNNP333333?i word acknowledgesNNS{GzVBZ{Gz?i-2 word slapsJJRFxNNFx? i suffix rew VBPlVBZRQNNPZd;?VBK׿JJx&VBDFx"@VBN-RB rNNS rhNNPSZd;NNA`" i word feudNNd;O?NNPd;Oi+1 suffix oudDTv/WDTv/?JJ?5^I ?NN?5^I i word bottomJJSh|?5NNSQJJoʡ@NNi-1 tag+i word RB theirsVB|?5^VBNJJS?PRPCl׿i-2 word mich.VBDrh|?VB~jtNNn?VBNrh|RB?5^I i-1 tag+i word NNP competitorNNsh|??JJsh|? i-2 word soilJJ+?VBNʡENNʡE?VBD+i word weeklongJJV-NNV-?i tag+i-2 tag IN VBNVBGˡEVBP-WP rh?VBZ~jt?DTQ?NNP7A`?EXL7A`INA`"JJʡEտFWQ?CDL7A`?PRP$Zd;׿WDT+RP-ۿPRPS?NNS +?RBREVBDx&1VBN&1NNQ?RBGz?CC(\?PDT"~?NNPSlJJR rh? i+1 word culJJJ +?NNJ +i word coalitionNNxֿNNPx?i-1 tag+i word NN appearedJJQVBDQ?i-1 tag+i word NNS affairsJJT㥛 NNPT㥛 ?i tag+i-2 tag JJR VBPINnNNSmݿRP/$?RBʡE?NNClӿVBDw/VBNw/?JJ(\µ? i+1 word headJJ%C?PRP$S㥛?PRPS㥛NN%Ci-1 tag+i word TO haveVBS?VBPSi-1 tag+i word NN apartRPI +?VBNjtRB/$?VBGV-i-1 suffix inyVBDI +ƿVBNnJJ"~j?NNS+?NNP-NNPS-@RB+i+1 word structuralRB/$JJ(\?NN?5^I ڿJJS?5^I ?RBRjt i suffix echNNPSZd;ONN/$?FWQWDTJJoʡ@NNS\(\NNPd;Oi word exploreVB?5^I @RBh|?5JJRZd;NNMbX9ܿi-1 tag+i word NNP campaignNNPSA`"NNPA`"?i word fullertonNNB`"ɿNNPB`"?i tag+i-2 tag MD -START-NNPq= ףp?NNsh|??RBx&1ȿINx&1?VBMbXi+1 word medicareJJRE?JJEi-2 word natwestNNPSbX9ƿNNPbX9?i-2 word longingJJKNNK?i-1 tag+i word , causedVBNGzVBDGz?i-1 tag+i word VBD sustainedVBN|?5^ɿVBD|?5^?i-1 tag+i word NNPS commercialNNJ +?JJJ +i-1 tag+i word NNS baseNNNbX9?VBNbX9i-1 tag+i word DT speedyJJI +?NNI + i suffix teaVB/$NNSZd;ONN/$? i suffix gisNNSI +NNI +? i word leWRBQNNPQ?i-1 tag+i word NN amissNNSEJJ-?NNSVBNDlѿi-1 tag+i word -START- maleJJB`"?NN;OnNNPNbX9i-1 word attractingNNSX9v?NNX9vi-2 word tipasaRBףp= ?INףp= ӿi-1 word remarkableNNS;On?NN;Onҿi-2 word amahsDTZd;PDTZd;?i-1 tag+i word DT markNNK7A?VBN㥛 JJmi-1 tag+i word DT foolishJJ?NNi-1 tag+i word CC gainedVBN rh?VBD rhi-1 tag+i word DT ballotingNNK7A`?JJK7A`i-1 tag+i word DT glitzyNNK7A`?JJK7A`i word conventNN'1Z?JJ'1Zi+1 word familyJJ1Zd?POSV-?NN"~NNP?VBZV-i-2 word frequent''MbX?POSMbXi word usheringVBGx&1?NNx&1ؿi word documentaryNN;On@JJ;Oni-1 tag+i word DT wasatchNNK7ٿNNPK7?i-1 tag+i word JJ paidVBNGz?NNGz i+2 word spotDTK?VBN^I +JJ^I +?NNPKi-1 tag+i word , allowsVBZ;On?DT;Oni-1 tag+i word DT humanJJ rh?NN rh i suffix tutNNmNNPm?i-1 tag+i word DT skillsVBP#~jNNSl?JJx&i-2 word enteredNNPSS?JJHzG?NN/$?CD/$޿NNPSi-1 tag+i word PRP believeVBw/ԿVBPK7A`?VBDli-1 tag+i word CC finnishJJ?5^I ?NNP?5^I i+2 word patternNNw/NNPsh|?ݿDTx&1?INFxJJw/?i+1 word dollarsNN?5^I VBN\(\CDHzG?JJtV?NNPSVBGB`"?i-1 tag+i word TO enticeVBS?NNSi-2 word harwoodJJw/?NNw/ i suffix eimVBP9vNNP9v?i-1 tag+i word JJ monetaryNN333333ӿNNP333333?i word omnibusNNSJJS?i-1 tag+i word NN betsNNSQ?NNQi tag+i-2 tag RB WDT JJMbX9VBʡECC`"PDTX9vVBNnVBPfffff@NNPK7?RBClNN{GzVBDʡE6@VBZK@NNS= ףp=i-1 tag+i word ( aDTp= ף?NNp= ף i+1 word gasbVBDxVBPx?i-1 tag+i word JJ hacklesVBP\(\NNS\(\?i+2 word matureJJv?NNQVBNV-?"i-1 tag+i word -START- specializedVBNV-JJK7@NNPCli-1 tag+i word NNP stromeyerNN~jtӿNNP~jt?i word trappistNNʡENNP-JJK7A@i-1 tag+i word DT rubbleNNQ?JJQi+1 word sverdlovskDTMbX9?INMbX9i-1 tag+i word IN suddenJJNbX9?NNNbX9i-1 tag+i word RB whatRB-WP= ףp=?WDTNbX9i-2 word placementJJ5^I IN5^I ?i-1 tag+i word IN robbingVBG+?JJ+i-1 tag+i word JJ doldrumsNNSjt?NNjti-1 tag+i word DT pcNNʡE?NNPʡEi+2 word store JJv/@NN|?5^?DTףp= ?RBV-NNSK7A?NNPMbXVBClRP(\?PDTK7AVBNjt?i-2 word producersJJq= ףpVBlVBG ףp= ?VBNʡE?RB(\i-1 word countyNNPHzG?VBPHzGNN`"?VBD`"޿i+1 word ultimatelyVBZ +?DTQPOS +INQ?i-2 word tacticsJJd;O?NNZd;ORB(\ȿVBNi word supplementalJJ`"?NN`"޿i-1 tag+i word NN hurtVBv/ͿNNSEVBN(\?NNd;OVBDMb@i word kitschyJJ;On?NN;Oni word exactlyDT ףp= RBsh|??JJ~jti word grilledVBNPnJJPn? i word quayleRBd;ONNy&1ܿNNPX9v?i word whatsoeverVBPV-WDT&1RBףp= @NNZd;O i word coughsNNS+?NN+i-1 tag+i word DT caribbeanNNPSjtԿNNjtNNPJ +?i-2 word distancePRP$-?PRP-i+1 word expertsNNSS㥛NN(\?JJoʡ?NNP/$i+1 word pennsylvaniaJJGz?NNPGzi+2 word colo.NNPSQ?NNPQi+1 word travel NN&1JJRJ +@VBPn?JJQVBZmͿNNPMb?VB{GzVBG rhNNSm?i-1 tag+i word , carriedVBNZd;OVBDZd;O? i+1 word ruthCCT㥛 пNNPT㥛 ?i-1 tag+i word DT earningNNq= ףp@JJzGVBGq= ףpi-1 tag+i word POS elderJJR rh?NN rhi-2 word alaskaNNP'1Z?JJ~jt?NNQi word spaldingVBGI +޿NNPI +?i-1 tag+i word NNPS haveVBh|?5ֿVBPh|?5?i-1 tag+i word WP knewVBP!rhܿVBD!rh?i-1 tag+i word RB lingerVB$C?NNP$Cӿi-2 word trashingNNS1ZdNN1Zd? i+1 word moveJJbX9?NNxNNPjtVBNh|?5?i-2 word nielsenVBNx?JJx޿i-2 word chungDTM?WDTMڿi+1 word simplyJJd;ONN"~?WDT+?EX#~jRBOn?IN+i word applicationNNV-?JJV- i suffix .84JJV-CDV-?i-1 tag+i word CC boomVBh|?5?NNh|?5i-1 word discrepanciesVBP\(\?VB\(\i+2 word hannoverNNX9vNNPX9v?i-1 word ratingsNNOn@RBv/VBD"~jVBbX9VBPS?i+1 word definitivelyNNPS!rhNNP!rh?i+1 word journalistsJJS|?5^?RBS|?5^ѿi word awaitedVBNT㥛 VBDT㥛 ? i+2 word c$VBNGzVBPx&RBQ?INQJJ`"?NNjt?VBDh|?5?i+1 word realizedNN+?JJ+i-1 tag+i word DT aerospaceNNPS rhNNP rh?i-1 tag+i word PRP suitesNNSjt?VBZjt i suffix htaVBZuVMDMbX?VBDoʡi-1 tag+i word CC tradeNNK7?VBDK7i-2 word investorsJJR"~j?NNS~jtNNP7A`VBPʡE?JJ%C@PDTX9vVBNX9vNNPS/$ݿRBp= ףINMbDTVBGz@NNQRBR!rhRP$C@VBG"~@VBDOn? i word ussJJrh|NNPrh|?i+2 word breakdownsVBN~jtVBD~jt?i word behaviorNN rh @JJOnRB-VBD'1Zi-1 tag+i word DT montrealNNSlNNffffffNNPy&1? i word tuneNN|?5^?VBN+JJ~jti-1 tag+i word NNS creditingVBG1Zd?NN1Zdi+2 word needsNNPS?5^I ڿNNSQ?JJ+?NNV-RBR + i+2 word nihVBPQſINQ?i-1 tag+i word DT nasdaqJJmNNPm?i-2 word callingNNS+?VBGQٿNN/$?JJGzJJR-?i word slippingVBGCl?NNffffffJJ7A`ҿi+1 word releasesNNoʡ?JJrh|NNPGzi word symbolsNNS;On?NN;Oni-1 suffix unkVBZ$CVBG9v?NNS9vʿNNX9v?i+2 word birminghamVBD(\?VBN(\i-1 tag+i word VB structuredVBN-?NN-i-1 tag+i word RB loseJJZd;VBuV?RB= ףp=i+1 word actionsNNq= ףpVBZDlVBGz?NNSZd;O?JJzG?i-1 tag+i word DT skittishnessNN rh?RB rhi-1 tag+i word TO locationVBh|?5NNh|?5?i+2 word featuringJJ333333@JJR5^I NNZd;ϿVBNm!i-1 tag+i word -START- percentageNN{Gz?NNP{GzԿi-2 word saferVBGENNHzG@JJ~jti-1 tag+i word `` suggestedVBNCl?VBDCl i word yenNNPSQRBZd;O׿NNB`" @FW/$JJRmJJS㥛INV-NNSbX9@i-1 tag+i word IN attractingVBG9v?JJ9vi+1 word deductionJJEԸ?NNEԸi+2 word luredVBNbX9ؿVBPNbX9?i+2 word debtorsRB!rhIN!rh?i word presidencyNNPSK7NNPK7?i+1 word fightsNNQJJQ? i word nativeJJ%CCDZd;ϿNN\(\?RBh|?5i+1 word buildVBZd;OտVBPM?VBDʡE i suffix BORVBPʡEVBNHzGNNV-?NNP rh?i-1 tag+i word DT failuresNNSHzG?NNHzG i word borneVBN$C?JJ$Cۿi-2 word admitVBZS㥛?JJˡE?POSS㥛RBˡEĿi-1 tag+i word POS convertibleJJl?NNli-1 tag+i word ( s&lNN|?5^?JJ/$NNPʡEi-2 word favorJJ/$?NN/$i word mentalityNN&1?NNP&1i-1 tag+i word NNS changedVBNS㥛VBDS㥛? i-1 word \*NNPq= ףpͿVBZq= ףp? i word strikeVBDjtVBPJJQ IN"~NNPFxVB|?5^?NNffffff@i-1 tag+i word -START- sandraNNp= ףNNPp= ף? i+2 word free VBD"~j?VBNEJJ/$NNSZd;?VBʡE?RBV-NN-IN/$?VBG/$?RPffffffRBRV-VBP"~j?i-1 tag+i word VBD proveVBV-?VBP|?5^IN/$ i-1 word took PRP$|?5^?RP-@JJ+VBD}?5^IRBl?NNS1Zd?NNPS?NNPSClNNOn @PRP333333IN VBZ"~jDT)\(? i word visFW+?JJʡENNGzֿINʡEi-1 tag+i word PRP$ militaryJJjt?NNjti+2 word collagesVBNx&JJx&? i word yourNNPV-PRP$uV@JJףp= ?NN-CC㥛 VBN{GzCDoʡRBPni-1 tag+i word TO enforceVBV-?NNV-i+1 word rectifierJJ rNNP r?i-1 tag+i word IN midsummerNNjt?JJR333333ÿVBNZd; i word dramsNNPSZd;?NNSM@NNL7A`NNPMbi-1 tag+i word DT generalNNʡEJJNNPA`"@ i pref1 UNNw/RBoʡNNPCl&@VBQWRBI +UHzG?PRP$= ףp=FW+NNSFxIN~jt@VBGE RPtV?$MbPRPMb@RBRA`"EXMbJJNbX9VBZ5^I VBDjtCCK7CD rNNPS rh@JJRSVBNS㥻VBPK7Ai-1 tag+i word CD proclaimsVBZV-?NNV-߿i-1 word quicklyJJ\(\INjt?VBx&1@RPB`"ٿRBd;ONNSVBD333333@VBN7A`i word quietedVBN1ZdVBD1Zd?i-2 word ricanNNSףp= VBZףp= ?i+1 word bradyNNS{GzJJ"~NNP7A`? i suffix p.mNNClNNS= ףp=RBZd;?i word pricecuttingVBGQNNQ?i-1 tag+i word NNS warmlyRBV-?WDTV-i+1 word helicopterJJjtĿVBV-ݿNNZd;?i-1 tag+i word VB cowardlyJJ1Zd?RB1Zdi-1 tag+i word WDT suppressedJJI +VBDI +?i-1 tag+i word RBR regulatingVBGx&1NNjt?JJףp= i word hawthorneNN/$@JJl¿NNPףp=  i+1 suffix upWDTvNNPSxVBGh|?5?JJQCC#~j?VBNJ +@VBJ +@VBPJ +@DTQVBZ/$ @NNPQVBD~jt @RB%CNNV-NNS/$INzGRP/$i word personnelNN`"yVBD~jtVBPV-UHClJJZd;O?VBZI +NNS%C!@VBPn i word quarryNNPʡENNp= ף?JJA`"ۿi-1 tag+i word `` globalVBZd;O߿JJZd;O?i-1 tag+i word CC continuedVBClٿVBNL7A`JJˡE?VBD?5^I i+2 word turfVBRQVBP5^I ?VBN1Zdۿi+2 word doomedVBN+JJ+?!i-1 tag+i word NNP representativeVBPENNjt@JJ;On i word frankVBlJJx&1?NNQ"i-1 tag+i word -START- suppressionNNm?NNPmi-1 word mechanizedNN/$?JJ/$i-1 tag+i word RB cutVBPK7AVBNClJJnVBD(\?VB%C?i-1 tag+i word -START- thievesVBZSNNS㥛 ?NNPq= ףpͿi-1 tag+i word JJ chaosVBPsh|?NNSZd;ONNx&1?i word exploitedJJKǿRBX9vVBNbX9?i word moviestarNN?NNPi-1 word movementsVB(\?VBP(\i+2 word chamberVBP+?NNS+RB+?NN+ i-1 word viaNNM?RB`"NNP5^I ?NNPSVBGS㥛JJ?i-1 tag+i word VBG questionableJJ r?NN r i+1 word mostVBD9v?''KVBˡE?VBPy&1?WDTMVBN~jt?RBV-?DTX9v?NNS/$?MD5^I ?RP?NNx&1INzG?POSFxCD㥛 PRP$RQJJtV PRPRQ?WPNbX9?VBZ(\@NNPsh|?i+1 suffix ink MD333333?VBDjtRBR|?5^?CDtVVBPMbX9JJjt?NNSQ?NNPSVBMbRBV-?NNtV?i+1 word reported VBtVNNPS'1Z?RBʡE?NNPK?JJ +NNCl?RBRrh|INx&ѿNNSp= ףؿi-1 tag+i word JJ flakesJJv/NNPv/?i word paralegalNNSSNNS? i+1 word doorJJ&1?NNPnINS㥛?NNP/$? i word nightNNvNNPv?i-1 word narrowlyVBNp= ףJJp= ף@ i-1 tag+i word -START- foothillsNNP)\(?NNS)\(i+1 word executives NNK7AVBNRQ?VBZx&1NNSx&1?MDZd;OVBG;On@VBDVBPZd;?JJK@DTˡENNPZd;ϿNNPS&1i-1 tag+i word DT rawJJZd;O?NNZd;Oտi-1 tag+i word , marksVBmݿVBZm?i-1 tag+i word VB wigsVBI +NNSI +?i-1 tag+i word PRP$ trademarkNN+?JJ+i-1 tag+i word NN occurredVBNmVBDm?i-1 word viewersVBD%CWDT{GzVBN%C?IN{Gz?i-1 tag+i word IN majorJJʡE@NNPʡEi-1 tag+i word CC wonNNSnѿVBNE?JJMbVBDZd;O?VBZd;Oi+2 word dependNNS{GzNNn?JJvi+1 word audioJJ'1Z?INMbX9?DTV-ݿNNSNNCl?WDTi word elevatedVBNSſVBDS?i-2 word knudsonJJ{Gz?DT= ףp=RBʡENNjtֿIN= ףp=? i-2 word wishDTxֿPDTx? i-1 word jobWDTGzJJl?VBZX9vDTGz?NNSX9v?NNl i-2 word ksiNNPSB`"NNPB`"?i-1 tag+i word : foreignNNZd;׿NNP~jtȿVBDQۿNNPSK7A`JJ9v?i+1 word preciseJJRSRBRS?i-1 tag+i word JJ islandNNZd;?CDZd;i-2 word outsidersVB333333?NN333333i-1 tag+i word JJ handheldJJjt?NNjt i word randomNN!rhNNPˡE?VBZ1ZdNNSQJJ/$ @i-2 word transformJJL7A`?NNPL7A`i-1 tag+i word IN bidNNSK7ANNK7A? i-1 word showNNS㥛VBN㥛 ¿VBZsh|?@VBGuVտINB`"?RBRh|?5?WDTK7JJRˡERPV-@JJbX9ƿNNSjtVBPd;O?POS-RB|?5^ʿDTQNNP/$?i-1 tag+i word NNP solNNPSQNNPQ?i-1 word tanksVBP-RB-?i+2 word summoningRB#~j?NNS#~jĿi-1 tag+i word VBD hiddenVBNtV?JJmPRP/$ٿi-1 tag+i word RB seekVBˡE?JJ\(\RB9vi+1 suffix tepRBMbCDS?JJʡE @NNx&1 i-1 tag+i word `` exclusivityNNCl?VBNFxJJ|?5^ɿi-1 tag+i word VB runVB= ףp=VBNE?JJx& i suffix LTYNN9v?JJ1ZdNNPB`"i word mezzogiornoJJtVNNPtV?i word eclecticNNrh|JJrh|?i-1 word conferJJ㥛 ?VBNV-NNq= ףpi-1 tag+i word -START- concernNN?5^I @JJ&1NNP(\MDv/NNSK7A`i-1 tag+i word VBD slightVBNlJJl?i-2 word hybridNNSV-?VBN#~j?RBV-VBD#~jĿi-1 tag+i word JJ enterprisesVBZK7A`NNSNNPV-?i word misunderstoodVBN%C?JJ%C i word comingVBGCl @JJrh@NNh|?!VBNʡEi-1 tag+i word IN transitNNbX9?JJbX9޿i word grappledVBNEVBDE?i-1 word freshJJL7A`VBZp= ףNNSCl?VBG7A`NN{Gz?VBN-ۿVBPh|?5i-1 tag+i word NN makeVB|?5^VBPsh|?@NN rؿi+2 word advancedNNPSbX9POSvWDT{GzIN{Gz?VBZv?NNPbX9?i-1 tag+i word WDT breaksVBZ333333?VBPx&1VBDh|?5i-1 word sound\/graphicsVBP;OnJJ#~j@NNPʡEi word stephenVBNQNNP rh?NNSV- i+2 word 'sPRP$x&1?VBDOn @VBPFx@FWK7A`PRPERBGz NNSV- VBjtVBNv/WDTS㥛JJ/$VBZ㥛 @RPm?NNPS%C @NN/$POS +WRB{Gz?CDlINMbX@UHv/ݿVBGnٿDTK7 @NNPOn @RBSMbX?JJSGzi-1 tag+i word NNS processedJJ~jtVBD~jt?i+1 word arsenalsNNK7A`JJ"~ʿNNS? i-2 word `` MD= ףp=?JJRRQVBPQ?RPS㥛CDjt?PRPS?RB r?JJSK7?WDTJ +?JJoʡ?DTL7A`@EXuV?NNPS-VBGL7A`WPMb?VBMb`NNPT㥛 ?PRP$+VBD-ƿNNClPDTQտRBRX9vVBZuV?FW rȿTOK7?INClVBNoʡ''RBS= ףp=ҿPOSQNNSv/ݿUH"~j?i-1 suffix ngoVBZ}?5^I?NNP}?5^Ii+2 word treasurerNNHzG?JJHzGi+2 word flippingNNnNNPy&1VBPbX9@i-1 tag+i word IN subsidizedJJRQ?NNRQi-1 word aptlyVBDL7A`VBZd;?VBPClۿi-1 tag+i word PRP$ callNNoʡ?JJoʡi-1 tag+i word NN requireNNx&1VBx&1?i-1 tag+i word DT recognizableJJn?NNni-1 tag+i word NNP acquisitionNNPS!rhNNP!rh?i+2 word mcgregorNNP?NNi-1 tag+i word DT downtownNN333333?JJ333333 i suffix IDSNNPS㥛 NNP㥛 ?i word furnishedJJFx?VBD?5^I NNSSVBNJ +i-2 word brainchildJJT㥛 NNPT㥛 ?i-1 tag+i word PRP enjoysVBZZd;O?VBDZd;O i suffix get VB"~@NNPSQJJʡEINT㥛 NNSrh|VBZZd;NNPX9v?NNJ + @VBDPnVBN㥛 VBP(\ @WDTA`"RBi-1 tag+i word WDT feelsVBZQ?VBPQi-2 word offeringsNNSS㥛?VBZS㥛i+2 word batibotVB)\(@VBPɿNNQ i word circusJJ'1ZNNPOn?NNSNbX9NNCl? i-2 word rodeNNQ?NNPQ!i-1 tag+i word -START- solidarityNNjtNNPjt?i-1 tag+i word CC songNNV-NNPV-?i-1 tag+i word -START- judyNNRQNNPRQ?i-1 word poorerJJMbX9?NNMbX9i-1 tag+i word VBZ loadedVBNx&?JJx&ѿi+1 word stridentJJRS?JJSi word globallyVBP%CRB%C? i word envyNNˡE@NNSA`"RB(\JJʡE i word mainlyNNSGzRBoʡ@JJʡEVBDZd;i-1 tag+i word VB unexplainedVBN\(\JJ\(\?i-1 tag+i word , bridgesVBZ rȿNNS r?i-1 word diseasesVB"~VBPtV?VBNh|?5i word gauloisesNNPSDl@NNSClNNPףp= i-1 tag+i word JJ disappointingNNffffffJJffffff?i word barometerNN r?RB ri-1 tag+i word DT mufflerNNzG?JJzGi-1 tag+i word JJ vaccineNNE?JJEؿ i-1 word e.NNbX9NNSbX9?i-1 tag+i word NNPS acceptanceNNPSsh|?NNPsh|??i-1 tag+i word DT noteNN= ףp=?JJ= ףp=i-1 tag+i word VBD abductedJJ= ףp=VBN~jtNNRQ@RBCl׿i-2 word hirschJJʡE?NNʡEi-1 tag+i word VB maleJJ-RBSZd;OǿVBNV-NNMbX @i-1 tag+i word IN deepJJCl?RBCli-1 tag+i word JJ doubledVBNClVBDCl?i+1 word interlopingVBX9v?NNQVBDףp= i-2 word distributorJJ%C?NNV-׿NNPA`"?i-1 tag+i word NNS unlockVBP7A`?JJ7A`i-1 tag+i word NN marchedRBSGzVBDGz?i+1 word legislatureJJS?NNPSi word dormitoryNN~jt?VBD~jti-1 tag+i word DT smokingVBGK7A`NNˡE?JJMi word rectangularJJJ +?NNJ +ɿi tag+i-2 tag JJ DTPOS^I +?VB"~jRBSHzG?RBRMb?CDZd;O?NNPSn?JJSZd;VBG{Gz?WDT}?5^I?VBZn?NNMbX9?NNSrh|ϿNNP%C?INjtVBNL7A`DTʡE?FWRQ?PRP +WRB1Zd?VBDQVBPZd;OJJ!rh̿RPSۿRB"~jJJRT㥛 пi word establishedVB!rhVBD(\?VBN(\@JJX9vVBZ333333NNPrh|i word treatingVBGE?JJEп i-2 tag JJ!VBD ףp= WPS?PRPˡENNP-WRB ףp= ׿VBPZd;O?WDTuV?RP㥛 ?INd;OֿVBN|?5^?RBRx&?CDq= ףpJJV-?FWv/?POSQ@NNSM?UH㥛 VBxRBSQEX?5^I ?NNPS/$?JJS@PRP$5^I ?VBG-ۿVBZQ?JJR rhDTOnPDTQ?CC~jtMDNbX9?''B`"NNX9v?RB(\пi+2 word banks VBP'1ZINX9v?VBZ"~?NNPFxJJSNNFx@VBDʡE?NNS;OnNNPS rпWDT$CRB"~j?i+1 word freedomsNNrh|JJrh|? i+1 word potNNʡE?JJʡEi+2 word disclosedNNPEԸVBNbX9NNSEԸ?NNK7@JJ ףp= i-1 tag+i word NN unclearJJ9v?NN9vi word staggeringVBGMJJ333333 @NNjti+2 word walking NN㥛 INRQȿNNS㥛 ?VB333333VBDZd;O?VBNZd;ORBRp= ףؿRBʡEJJR^I +?RPRQ? i+1 word ibmVBDzG?VBNzGڿJJK7?NNPK7ٿi-1 tag+i word RB movedRBRףp= VBNsh|??VBDQ?i-2 word pricesRBS"~JJRMbX9DT/$NNS +VBV-VBDV-ϿPDTS㥛VBN'1Z?INoʡ?RPˡENNP)\(NNT㥛 ?JJS"~?RBRm?VBG{Gz@RBKǿVBP/$@JJ~jt?VBZ'1Zi-1 word wachtelVBZˡENNSˡE?i-1 tag+i word NNS alikeVBPףp= RB}?5^I@JJMIN5^I i+1 word engagedRBR?JJRi-1 tag+i word NNS discoveredVBNMbVBDMb?i+1 word arizonaVBGJ +NNPJ +?i+1 suffix fcsNNSzGJJzG?i-1 tag+i word JJ behindRPB`"NN/$IN7A`@i+2 word normalINuVNNStVVB|?5^RBS@NNx&CCoʡPRPHzGJJPn@i+2 word morning VBPnJJ"~j?VBDxVBPh|?5VBGMbNNSh|?5?RPn?NNmͿVBN/$@RBˡEINni-1 word tateishiNNPS/$ƿNNP/$? i-2 word pinsNN'1Z?JJ'1Zi-1 tag+i word PRP snapsVBZS?RBnVBDCl i-2 word used JJNbX9@VBV-?VBGDl?RBV-?NN!rhVBDM@VBNv/VBP7A`IN= ףp=DT= ףp=?NNSv/i-1 tag+i word VB allRBKIN~jtDTx@PDTA`"?JJ#~ji+1 word filed DTFxNNPK7AؿRBl?VBNʡE?JJlNNS{Gz?PRP$ +NNPS ףp= ?VBDʡEi-1 tag+i word IN europeanNNSJJv?NNPK7ѿi word regardingNN;OnNNPV-VBGQ@ i-1 word pushJJRQ?RBRQRB rh@INˡE NNP;OnRP^I +?NN;On?i-1 tag+i word JJ rentalJJHzG?NNHzG i suffix so IN +!@VBZX9vVBzGVBP(\JJ`" CC rh@RBRT㥛 JJR+VBNw/RB~jtS @NN(\BVBDx i-2 word labsRB?5^I ?IN?5^I i-1 tag+i word DT lacklusterJJMbX9?RBlRBR/$i tag+i-2 tag WP NNSVBPm@JJxINVBZq= ףpNNSRB/$?NN`"VBD rh?i+1 word butterVBP r?JJ r i+1 word bansJJx&1?NNx&1i-1 word thereinVBZCl?NNSCli-1 word really VBOn@VBG|?5^?NN-VBD(\VBNV-?JJK7A`@VBPp= ף RBˡEVBZJ +? i-2 word yearCCS㥛?JJS rh?DTV-?JJRS㥛?VBbX9ƿRBRy&1JJ+NNP}?5^I @VBZ(\VBGʡE RB+VBNtVVBP}?5^I@RPX9v?INV@CDB`"ٿNNPSA`"NNM?VBDCl?NNSV-WDTSi tag+i-2 tag VBP CDVBNZd;O?WDTOn?JJ5^I ˿INOnNNS~jtNNPp= ףNNPS&1?i+2 word utterancesDTlJJrh|VBrh|?PDTl@i-1 tag+i word CC startedVBN;OnVBD;On?i word biochemistNN+?NNPS+i-1 tag+i word DT calendarNNB`"?JJB`"i-1 tag+i word PRP fallVB/$?NN/$i-1 tag+i word DT changingVBGx&?NNx&i-1 tag+i word -START- askedVBDMbNNPtVRBSVBN +Y@JJ+i word afterwardRBjt@NNffffffJJ!rhNNP#~jܿi-1 tag+i word NN readilyRBHzG?NNHzGi word everlastingVBGV-JJV-?i+1 word prohibitedWDTy&1?INy&1i+2 word packerINV-?NNSbX9NNbX9?NNPV-߿i-1 word obligatoryVBN7A`JJq= ףp?VBDx&1i-1 tag+i word RB plaguedVBZ㥛 VBD㥛 ?i-1 tag+i word , fungiNNS~jt?NN~jti+2 word incentiveNNS rhJJ rh?i+1 word insulinJJMb@NNPPnVBZd;i-1 tag+i word NN testVBoʡNNoʡ?i-1 tag+i word IN strikingVBGZd;JJK?NNK7Aؿi-1 tag+i word NNP discoversVBZHzG?NNSHzGi+1 word jealousyVBG#~jJJ#~j? i word fillsVBZbX9?RBbX9i-1 word stripVBG^I +NN^I +?i+1 word bondholdingsVBNS?JJSi-2 word rolledVBDClRBRʡE?JJRʡE޿VBNCl?i+1 word vividlyMDClVBPCl?i word destroyVBZ/$VB/$?i+2 word saferNNS/$JJR+?NNq= ףpi+1 suffix offVBNx&?JJR?VBZK7A`?DT{Gz?RBRMbPRP9v?PRP$9vNNP/$?VBG/$RBZd;OݿNN}?5^IPDTB`"ɿVB ףp= @VBDʡE @NNSjtVBPh|?5?JJK7A` i-1 tag+i word `` hoodwinkedVBNS@NNp= ףVBD`" i suffix BEVBD= ףp=VBHzG@VBPsh|?ݿNNPK7Ai-1 tag+i word NNPS deputiesNNPSMbp?NNPMbpi-1 tag+i word NNS fledVBDh|?5?VBPh|?5&i-1 tag+i word JJ counterrevolutionaryNNZd;O?JJZd;Oi-1 tag+i word , maybeVB9vRB +@JJd;ONNV-i-1 tag+i word VBN liberalVBPHzGJJHzG?i+2 word morningsNNx?JJx i suffix MANNN;On?NNPZd;?JJ= ףp=i-1 word expressedNNSFxNNP)\(VB-?RB&1NN;On?VBP-JJCl?i word abstractNNx&ٿJJjt?RB~jti word exercisableVBP'1ZJJjt@NN\(\i word retirementNN}?5^IJJ|?5^NNPx&?i-2 word collateralizedNNPS/$ٿNNSV-?NNV-NNP/$?i+2 word favorNNP|?5^NN +?VBNL7A`JJ;OnVBDL7A`?i-1 tag+i word DT horseJJV-JJR|?5^NNffffff@i-1 tag+i word -START- valueJJL7A`пNNPL7A`?i+2 word quintessentialRB ףp= @IN ףp=  i-1 word walkRPlRBZd;?INZd;O?i word thoroughbredJJoʡ?NNP(\?VBN?5^I NNffffff?VBDzGi-1 tag+i word PRP$ animalJJ#~j@NN#~ji+2 word lebanonNN/$?INB`"ٿJJSGzi-1 word healthdyneVBGZd;?NNZd;i-1 tag+i word IN ombNNSSNNPS?i-1 word account NNw/VBDy&1?RB rh?INK7NNPlVB rhѿRP#~j?JJffffff?VBNy&1 i word loneNNMbXRB"~ڿJJL7A`NNPCl?i-1 tag+i word TO slideVB/$?RB/$i-2 word patronsVBPGzNNSGz?i+2 word governNNjt޿JJ&1RB~jt? i suffix 'emCDSJJDlPRPCl@RB`"i+1 word hospitalJJffffff?NNZd;VBN~jtÿVBP(\?RBzGNNPHzG?VBGKi-1 tag+i word NNS doubtsNNS9v?IN9v i word oakJJx&1NNPffffff?VBffffffNNx&1?i+1 word transactionsVBNV-CDbX9?JJʡE?VBG?NNS㥛VBD#~j@i-1 tag+i word NN blocNNSKNNK?i+1 suffix nedVBGSVBD|?5^ɿWP{Gzt?VBZNbX9RBy&1 @NNSV-@RBRMbX9@NNPStV?JJR9vVBPjt?DTn?RP$C?VB rhRBSB`"?WDT~jt?NNMb@NNP9vVBN-˿JJKPOSV-?CDjt޿IN +YJJSp= ףi-1 word enfieldVBZw/?JJw/i-1 tag+i word NNS unidentifiedJJ= ףp=?VBD= ףp= i-2 word linkVBNbX9NNCl?JJ'1Z?i-1 word invariablyVBPʡE?JJʡE i-1 word am VBNS?NNS5^I VBzGҿRBQ?NNK7A`VBDx&JJPn?INnVBGjt?i-1 tag+i word JJ gallopingVBG%C?NN%Ci-1 word markets VBN rhRBRI +ƿRPx&1JJPn?NNClVBD rh@VBP;On?RBZd;O?IN/$ſNNP-?VBG/$?i-1 tag+i word VB moreRB(\JJR$C?JJ)\(RBRB`"?i-1 tag+i word NNP stoneNN-NNP-?i-1 word vehiclesVBD= ףp=VBPZd;O?VBNA`"@JJZd;OFWMbi-2 word intentionalVBG/$NN/$?i-1 tag+i word VBP appropriateJJMb?NNMbi-1 tag+i word JJ homerJJRZd;OݿNNZd;O?i-1 tag+i word RBR viewersNNSA`"?JJRA`" i-2 word leftNNSA`"?VBoʡ?VBGMbP?JJx&?NN#~jCDE?RBKIN'1Z?i+2 word theocracyVBN-JJ-?i-1 tag+i word NN supervisingVBGn?NNni word unleashVBP}?5^I?PDT5^I ӿJJEIN= ףp= i-1 word elieFWS㥛?INS㥛i+1 word rossiniFW~jt?JJQIN~jtVBQ?i-2 word ingeniouslyNNSx&1NNx&1?i+1 suffix oomNNV-@NNPClJJoʡ?VBGmVBNbX9i+2 word skillsCCZd;O?RBZd;OJJS㥛 VBNʡE?JJNbX9i-1 word killersVBPh|?5VBDh|?5?i-1 tag+i word VB seizureNNS㥛?JJS㥛i-1 tag+i word NN moneyNN?NNP̿i-1 tag+i word TO deliverVB~jt?RBHzGINoʡi-1 tag+i word RB laughedVB+VBD+?i-1 tag+i word CC lastingVBG rhJJ\(\ @NNx&i+2 word comparesNN7A`?JJ7A`i-1 word lettersVBP?VBN&1?RBRVBD&1 i word deniesVBZ/$@NNS/$ i suffix oseCCd;OCD$CVBP+ @INMNNPFxٿRPGzVBD7A` @VBZ|?5^NNPSX9vVBNPnVBGT㥛 VB@RBZd;O @NN\(\NNSLJJPn@ i+2 word hasCDK7VBD/$WPrh|?NN ףp= @NNS/$?NNPSMbXPRP$K7?VBPMbVBZGzIN rhMD= ףp=VBN ףp= @WDTnVB"~RBR"~?NNPX9v@CC+PDTV-@JJRx&1VBG333333@JJx?DTsh|?@RB +޿UHI + i-2 word copyJJNbX9пRBR#~jNNZd;@VBNv/i tag+i-2 tag NN JJS JJMbX9ܿNNSJ +VBG'1Z?RB`"VBDl?VBN rhݿVBP!rhNNM?INffffff?VBZw/DTQ?NNPzGi-1 suffix gedJJRtVVBN$CӿVBGI +DT~jt@RPMbJJbX9CCA`"JJStVRBGz?NNS9v@VBQNNNbX9?RBRV-?IN'1Z i suffix BarVB\(\?NN\(\NNP\(\i+1 word weightsVBG'1Z?NN'1Zi-1 tag+i word RB bitterJJ`"?RBSNN9vi word inspectionsNNSm?NNmݿi+1 suffix danJJT㥛 ?NN~jtVBDi-2 word activelyNNˡEJJˡE?i-1 word privacyJJ(\?NN(\i+1 word messiahJJ|?5^NNP|?5^@i-1 word disobedienceWDTMb?NNS1Zd?NN1ZdINMbi-1 tag+i word NN stationsNNSzG?NNzGi+1 word famousRBSL7A`@JJSL7A`i-2 word insiderVBGIN?i-1 tag+i word DT titaniumNN;On?JJ;Oni+2 word evadeVBGuV?VBuVi-1 tag+i word , sleepingVBGףp= NNףp= ?i-1 tag+i word DT eggVBNh|?5NNh|?5?i-2 word payments VBN)\(JJ r?IN^I +DTNbX9VBZd;ORB rh@VBD)\(?NNP"~?NNSPDTNbX9@NNS}?5^Ii-1 tag+i word IN overflowingVBG-?JJ-i-1 suffix amsINSNNPS rhNNFxVBD|?5^?VBNMVBPFx@WDT㥛 ?JJ= ףp=i word undergroundNNMRBoʡ?JJRzGJJ!rh?i+2 word bonnieNNP㥛 ?NNS= ףp=NNJ +i-1 suffix letWDTQ?POSDlVBPS㥛INA`"?VBZV-NNPGz @VBDPRPM @NNSMbX9RBʡENN!rhCDDlJJ +޿VBy&1@i+1 word purchasingJJˡE?NNPˡEi word categoryNNSףp= NNS?JJx޿i-1 word conferencesVBPQ?VBGQi-1 tag+i word DT waveNNSMbXJJR7A`NNGz?i+2 word censorshipNN+?JJ+i-1 suffix ermNNSSNNI +NNPNbX9?i-1 tag+i word JJ pathsVBPRQNNSRQ?i-1 word recoverableCCMb?NNQRBʡEi-1 tag+i word DT oaklandNN +NNP +?i-2 word continuousVBK7JJK7? i word fabledJJ1Zd?VBN1Zdi+2 word convenienceNNPPn?NNQJJS?i-1 tag+i word DT beijingNNʡENNPʡE?i word playoffNNx&1?RB rhVBNSݿi-1 tag+i word VBD membersNNPZd;NNSZd;?i+1 word milksVBZd;OJJZd;O?i+1 word headlineJJQNNPQ?i-1 tag+i word DT annuityNN?NNPi word birminghamRB&1NNP&1?i-1 tag+i word CC osakaNNPCl?JJCli-1 tag+i word DT frozenJJ rh?NN rhͿ i word henryVBPPnNNPPn?i-1 tag+i word JJ perspectiveNNS1ZdNNS?JJKi-1 tag+i word NN peakedVBN-VBD-? i-2 word cfcNNSzGNNzG?i-1 tag+i word NNS sampledVBDVBN?i+2 word hoffmanVBDѿVBZ/$?VBNx&1i-1 word would VBPffffffWDTףp= ۿDTx&?VBx&1?RBGz?RBSx&1?RBRL7A`JJR^I +JJy&1?IN333333NNVBDNbX9?i word penetrateVB333333?NN333333i-1 tag+i word TO coercionVBx&1NNx&1?i+1 suffix no.VBDI +VBNJJ}?5^I@VBZ5^I ˿NNSNNP-?NN~jti-2 word risesNN|?5^VBZ(\?VBZd;Oi-1 tag+i word IN humanJJMbX9ĿNNZd;?NNPjt i word orbitNNSuVNNS?CDn i word photosNNSQ@NNQi-1 tag+i word WDT exceedVBP\(\?VBD\(\i-1 tag+i word NNS gainNNL7A`?VBX9vοVBP"~j?JJrh|i word unmovedVBNDlJJDl@i+2 word extremeRB?5^I ?IN?5^I i-1 word federallyVBNK7?JJHzG?VBDHzGi-1 tag+i word VBP cowardsNNSMbX?JJMbXi-1 tag+i word , bequeathedVBNV-VBDV-?i-1 tag+i word RB dominateVBPl?VBZli-1 tag+i word NNS swelledVBN`"޿VBD`"?i-1 tag+i word JJ farmerNNS?5^I NN?5^I ? i word scopeNNPSNNm?JJ rhVBD~jtxi-1 tag+i word NN assignedVBNX9v?VBDX9vi+1 word spookedNNS9v?NN9vi+1 word fuelsJJB`"?NNFx JJR= ףp= @i+2 word thingJJV-ǿVBZV-?VBRQȿRB+@NN/$POSV-i-1 word fuquaNNPSMb?NNPMb i suffix wthNNx&1@JJ;On NNSI +i-1 word chairNN?5^I ?JJ?5^I i-2 word denverVBGQֿNNQ?i word leveragedVBDK7 VBNClCDbX9JJNbX9@INbX9JJRX9vVBx&1NN\(\@i-1 tag+i word DT accordNNPx?NNS)\(NN rh?JJMbXٿi+2 word convertRBRZd;JJRZd;?i-1 tag+i word NNP overhaulNNPS/$NN/$?i-1 tag+i word `` optionsNNS(\?CD(\ i word diedVBN rJJFxNNPd;OVBD"~@ i+1 word land NN^I +?VBN)\(ԿVBP rhJJ&1?VBuV?VBDQRBR-ӿJJR-?NNS/$NNP ףp= ?i-1 tag+i word JJ steelmakerNNNbX9?VBDNbX9i+2 word knownJJZd; @NNmVB$C?VBP$CVBG rhi+2 word distilledNNS-NN-?i-1 tag+i word VBN easeVB?5^I ?NN?5^I i word sulfurNNSvNNv?i-1 tag+i word VB favorNNV-?JJV-FWV-i word anticipatedVBN!rh?JJS㥛@VBD i suffix ace VBNtVJJRX9vVBZSCD̿NNPp= ף?VBI +JJʡENN @VBDuVVBP+@RBxNNSK7A NNPSjti-1 tag+i word -START- radioNNS@VBNZd;JJ5^I NNPffffffi-2 word identifyingJJSK?JJKi-1 tag+i word POS stockholderNN9v?JJ9vi word admiredVBP/$VBD/$?i-1 tag+i word DT stepNNMb?JJSRB{Gzi+2 word thanksJJ`"?NN`"i-2 word englandVBPZd;?JJZd;?VBZZd;NNPQ?RB/$ۿNNy&1VBDQi-1 tag+i word `` carnivalNNPOnNNOn? i word emcJJ7A`NNP7A`?i word reorganizeVB= ףp=?VBD= ףp=i word dislikeVBPCl?INCli-1 tag+i word VBG suddenJJ|?5^?NN|?5^i word suppressionNNm?NNPmi+1 suffix pet''5^I WDTx&1?POS5^I ?INx&1i-1 tag+i word , introducedVB(\VBNy&1VBD5^I ?i-1 tag+i word JJR smokeNNSClѿNN|?5^?JJnڿ i word tagRB'1ZNN'1Z?i word convincingVBGZd;O JJZd;O @i+1 word aggregatesCC|?5^DTI +?RB\(\i-1 word selling RPv?NNZd;OJJSZd;?DT1Zd?INjtܿNNS+NNPh|?5RB/$RBSZd;PDT1ZdVBNbX9?JJx&1? i word erwinVB/$ÿNNP/$?i+2 word submitsRBv/INv/? i suffix HitVBP~jt?NNP~jti-1 tag+i word JJR levelNNCl?JJCli-1 tag+i word NNS earlyVBP"~jRB"~j@JJ9vi-1 tag+i word JJ naTOK7?NNK7i-1 word earnsRBʡE?INʡEi-1 tag+i word DT belgianJJV-?NNPV-i+2 word strangeNNSX9v?POSʡE޿VBZ}?5^I? i-2 word whenMD-NNPSʡENNClRBV-?CDB`"VBD$C?VBN(\?INQ?VB-VBG~jtx?JJClJJRClǿVBPK@EXx?VBZؿNNS}?5^I?NNP-?FWK7A`JJSS㥫? i-2 word doJJSnVBPClgNNS= ףp=JJʡEsDT/$NNPSmVBNT㥛 RB^I +?INp= ף?NNm?VBDK7AؿRBSn?JJRV-EXK7?VBZX9v@NNPq= ףp@VBQ^+@i word crawledVBNˡEVBDˡE?i-2 word vacationersRB/$?JJ/$i word aggressivenessRB/$NN/$?i-2 word websterJJmNNPm?i-2 word necessaryVBDʡEVB/$?INv/?NNv/JJ!rhi-1 tag+i word CD limitedVBN"~ڿJJ"~?i word physicsNNS)\(NNzG?VBPFxi-1 tag+i word NN depositsVBZ/$NNSK?NNZd;i+2 word chippingJJV-JJSS?NN\(\i-2 word keenanDTV-@INV-i+2 word increasedNNP5^I ?NNPSSRPZd;ONNMbXVBP(\JJy&1@INZd;O?NNSGzi-1 suffix onnVBZMbX?NNSMbX i+2 word lienVBNFxJJFx?i-1 tag+i word , approachesNNSʡEֿIN5^I VBZOn?i word necessitatedVBN(\VBD(\?i-1 word occasionDT/$?RB/$i-1 tag+i word DT primaryJJw/?NN1ZdӿNNPMb i-2 word :NNSCl?WRBrh|?INzG?JJR"~VBDMb?VBZʡE?FW= ףp=PDTʡERBRZd;O?MD㥛 ?VBPDl?RBZd;߿NNPX9vϿUHv?VBGn?JJ+NNPS~jt NNT㥛 VB;On?PRP$333333?VBNS㥛DT\(\?i+2 word fanfareRBZd;O?INZd;Oi-2 word addressingJJ +?NNP +i-2 word millionNNSI +?VBZ+DT&1RP/$PRPV-POSPn@NNP-'@VB|?5^CC|?5^?VBNx&1̿VBPJ +JJDl@NNx&1?RBR(\INK7AJJR?VBDjtWDTv?FW"~?VBG?5^I RB7A`CDzG?NNPS+i+2 word suspendVBNV-VBDV-?i word cautionVBPQ@NNGzNNPHzGi+1 word blockingVBZ rhNNS rh?i-1 tag+i word JJR !HYPHENNN1Zd@VBGClRBQJJNbX9?NNPx޿i+2 word verifyVB(\?NN(\i-1 suffix ims JJnINq= ףp?DTGzǿNNPq= ףp?VBN/$?WDT(\VBDh|?5VBP333333?VBGV-?NNMi-1 tag+i word : blanketVBPjt@NNv/INV-i+1 suffix zsaRPn?RBn i-2 word ...RBffffff?VBGrh|NNSJJ}?5^I?VBL7A`?i-2 word unfetteredVBGʡENNʡE?i word outdatedJJ rh?VBD rhi-1 tag+i word CC distortedJJ?5^I ?VBN?5^I i word tendedVBN/$VBD/$?i+1 word vasesNNS?JJSi word tennecoDTSNNPS?i-1 tag+i word NNS tapestryJJR+NN+?i-1 tag+i word VBZ suggestVBw/?JJSw/ܿi-1 tag+i word RB shookVB^I +VBD^I +? i word mereJJSMbNNxRBS㥛NNP\(\JJffffff@i-1 tag+i word DT drillingNNS?JJSi+2 word curbingVBN/$JJ/$?i-1 tag+i word NNPS oakesNNPSq= ףpݿNNPq= ףp?i-1 tag+i word RB motivatedVBN|?5^JJQ?VBD;Oni-1 tag+i word VB outsideRPV-JJjtINp= ף?i+1 word universallyNNP^I +NNS^I +?i-1 tag+i word DT managingJJ{GzVBGZd;O @NNM i suffix wksNNx޿PRP$ rNNSjt@PRP)\(i-1 tag+i word NN playsVBZsh|??RBMbȿVBDX9v޿i-2 word easternRBRx&1?VBD)\(NNX9v?VBN^I +׿RBx&1i-1 tag+i word CC emigrationNNQ?JJQi-1 word batesNNP\(\?VBP(\NNPS\(\VBD(\?i-1 tag+i word NN sittingVBG5^I ?NN5^I i word endorseVBPrh|?VBDrh| i+2 word planVBGy&1?NNSuV?PDT$CӿVBNCl?INV-JJnVBDzG?VB?NN rJJR|?5^@NNP + VBZ#~jNNPSI +?RBq= ףpտRPV-?DTSݿCD^I +߿ i word coffeeNNPS~jtRBA`"NN|?5^ @JJNNSKNNP;On?i+2 word determiningVBNʡEJJʡE?i-1 tag+i word VB doubtVBffffff?NNffffffi-1 tag+i word `` makeVB rVBP r?i-1 tag+i word NN wrongVBPS㥛JJGz?RBZd;Oi+2 word rejectRB"~j?JJ"~jԿi-1 word pretaxVBGbX9NNS9v?NN(\? i-2 word zeroJJ/$?NN/$ i-1 word rideRP333333RB?5^I @NNL7A` i suffix SCINNP?CDi word increasesVBZn?NNSFx?NNrh|i-2 word vitalVBX9vJJRX9v?i-1 suffix ompVBNGzVBDGz?i-1 word minersVB-޿JJd;O?NNX9v?IN"~i-1 tag+i word IN shortsJJX9vNNSX9v?i-1 tag+i word NNS stoleVBPvVBDv?i+2 word meansRBV-JJRMbX9ĿJJv/INzG?NNS$CNNPx&?VBZd;O߿NNPS1Zd@i-1 tag+i word -START- bushNNZd;ONNPZd;O? i word steerVBuV?NNSʡENNףp= i word electronicsVB/$ֿNNPSZd;ONNPn?FWMbJJV-NNSGz?NNPS?i+1 word chateauJJ+?NNP+i-1 tag+i word -START- housingVBG rhNNv?NNPbX9ֿi-1 tag+i word WP$ highJJ1ZdNNP1Zd?i word discriminationVB5^I NN5^I ?i-1 tag+i word , culturalJJQ?NNQοi+1 word newlyDTףp= ?POSGzINףp= VBZGz?i-1 tag+i word PRP$ heavierJJR/$?JJ/$i word plantersNNPSV-NNS"~ʿNNP/$?i-1 word americanaRBK7A`ݿINK7A`?i-1 tag+i word RB sitVBPtV?RBtV i suffix styNNPFx?JJQ@NNGz߿FWMbX9VBD?5^I JJSClRBsh|?NNS(\i-1 suffix ous VBGV-@RB5^I VBN$C˿CDI +VBP&1JJ(\INbX9?VBZd;ONN;On?VBZtVNNS +@NNPS i word foodsNNPS+@NNSGzǿNNSNNPˡEi-1 word fallenVBK7RPHzGRBw/?JJ|?5^?INK7?i-1 tag+i word DT tenthNNZd;?JJZd;i word communicationsNNPS+@NNQ@JJ"~jVBZrh|NNSy&1 NNPMb`i+2 word eyebrowsVBN㥛 JJ㥛 ?i word yearlingVBG$CJJMb@NN|?5^i+2 word potpourriRB+?NN+i-1 tag+i word POS spiritedVBNZd;߿JJZd;?i-1 tag+i word , knownFWDlVBNPn?JJx޿VBD+߿ i+2 word pillJJCl?NNClѿi+2 word korbinNNZd;ONNPZd;O?i-1 tag+i word , boostVBRQ?INnVBD-ӿi+1 word vesselsVBG-NNJ +?JJQ i word harmsVBZ1Zd?RB1Zdi-1 tag+i word IN supplierNNT㥛 ?JJRT㥛 i-1 tag+i word CC suppliesVBZ`"NNS`"?i-1 tag+i word , dulyVBZ(\RB(\? i word trickyNNSClJJK7?RBI +i word officialdomNNCl?NNPSCli+1 word cheapNNx&1?JJx&1i-1 word electricianVBZS?VBSi-1 tag+i word IN oaklandNNp= ף?NNPp= ףi-1 tag+i word , costumedVBN rh?VBD rhi-1 word agreesWDTKINK?i word legislatureVBP1ZdNNCl绿JJ'1ZNNPL7A`@i-1 tag+i word CC throwsVBZ r?VBD r i+1 word lookJJV-@NNx&1RBjtNNP/$ѿi-1 tag+i word JJ burialNNS?JJS˿i-1 tag+i word NNS concernsVBPh|?5οNNSh|?5?i-1 tag+i word DT comingJJ|?5^ʿNNx&1VBGQk@i-2 word alarconVBNMb?VBDMbi-1 tag+i word -START- backerDT\(\NNP\(\?i+1 suffix ntyVBPClJJRjt?WPx&NNP;On?VBGSNNQRBRjtPOS rVBZ r?DT^I +JJ+@VBNrh|VBDp= ף?IN^I +?NNS^I +@i-2 word gibbonsVBZS㥛?NNSmտVBDMi-1 tag+i word NN timetableNNRQ?JJRQi-2 word williamsDT/$VBD-WDT\(\?NN-?INbX9ƿi-1 tag+i word DT crackRBRQNNRQ?i-1 tag+i word PRP$ dilapidatedVBNnJJn?i-1 tag+i word VBZ thatRB= ףp=INo!@DTx&1VBNL7A`VBPm?WDTT㥛 ؿi-1 tag+i word DT worstJJSPn@JJJ +NNZd; i-2 word sold NNPV-?VBGzGRB+?NNSVBP)\(JJn?DT^I +@VBFx?VBD!rhCCFxVBN1Zd @RBRT㥛 ?NNSRQi-1 tag+i word DT discountingVBGQNNQ?i-1 word pilotVBZKNNSK?RB+IN+? i-2 word oddsNNPSL7A`?VBGK7?JJK7VBZQNNS rhݿNNPQ!i-1 tag+i word -START- electronicJJh|?5?NNh|?5޿i word diggingVBGQNNQ?i-1 tag+i word , chugaiNNPSI +NNPI +?i-1 tag+i word NN accountsNNS+VBZ+? i word housedVBNCl?JJCli-1 tag+i word NNP spiritedNNPQVBDZd;OJJtV? i+1 suffix csVBPn?JJni-1 tag+i word RB hostileVB!rhJJ!rh?i-1 word drinkJJR1Zd?RBR1Zdi+2 word commissionersDT)\(PDT)\(?i-1 tag+i word VBZ declinedVBN^I +?JJ^I +߿i-1 tag+i word NN barsVBZ/$NNS|?5^?NNV-i-1 tag+i word , dictaphoneNNPS%CNNP%C?i word wordingVBG1ZdNN1Zd?i+1 word brawlNNzG?JJzGi-1 tag+i word , gainedVBN㥛 VBD㥛 ?i-1 tag+i word , endedVBNy&1|RBףp= VBD?5^I ?i-1 tag+i word DT feeNNK7?JJK7i word control NNPSʡERBMVBZSNNP'1Z?NNSMbVBK @NN#~j@VBP+?JJ\(\i-2 word whackVBHzG?NNHzGi-1 tag+i word DT rtcNN-ƿNNP-?i+2 word organismsVBn?JJni word macintoshNNGz߿NNPGz?i-1 tag+i word -START- newDTrh|JJoʡ?RBMNNPMb?i+2 word harryJJSNNPS?i+2 word ratificationVBPtVJJw/?VBD\(\i-1 tag+i word , bankersNNPSʡEֿNNPʡE?i word troddenJJK7?NNK7i-1 word charges JJGzIN rhRBHzG?VBD~jtVBNMb?VBP`"?VBv/VBGGz?NN~jti+2 word accountingVB/$?RB`"?JJ`"޿IN{GzDT{Gz?NNP/$i+2 word scoffedNNPSDl@NNSClNNPףp= i-1 tag+i word DT otherwiseRBZd;@JJʡENNMbi+1 word fullyRBR9v?JJR9v i word frothyJJ?NNi-1 tag+i word DT shortagesVBZ-NNS-? i-1 word sufiNNS+?NN+ i-1 tag+i word -START- yasumichiNNSʡENNPʡE?i+1 word intendsNNEJJ̿NNPjt?i-2 word followingVBGn@NNL7A`VBNQ뱿JJn?NNSZd;NNPK7?i+2 word crackedNNPS-@NNP- i suffix ArmIN&1NN9v?RBClNNP&1i-1 tag+i word VBZ sangJJ\(\VBD\(\?i-2 word military NNS+?VBFx?NNPSzGҿVBG/$@NN-VBDn?VBN +?RB ףp= NNPzG?JJtVVBP ףp= ?IN ףp= ?VBZ+i-2 word recognitionVBDsh|??MDsh|? i word jamJJ+NNS㥛 ¿NNRQ?i+1 suffix ficRBRV-@VBZ㥛 NNPSMbXRBS'1ZJJRV-VBNZd;O?RB= ףp=NNP+?JJS'1Z?JJ{GzVBDGz?RP= ףp=?VBG1Zd?NN?WDT#~jVBli-2 word assets VBDx&1VBPPn?JJ r?INS㥛?NNPMbVBGSRB&1NNtV?VBd;O?VBN}?5^I@NNSGz?i-1 tag+i word TO continueNNS rhVB rh?i-1 tag+i word , barVBp= ףNNK7?JJ;Oni-1 tag+i word TO utilitiesVBxNNSx?i-2 word vulnerabilityNN|?5^CD|?5^?i+1 word beansVBN!rhJJS?NNPnVBD;Onڿi-1 tag+i word JJ tumblesVBZ +?NNSZd;NNʡEi-1 tag+i word DT westernJJjt?NNPjt޿i-1 tag+i word DT beliefsNNSQ?NNQٿi word schoolchildrenUHzGڿNNd;ONNS?i-1 tag+i word IN mistrustNNv?JJvi+2 word quarterlyRB +?IN +JJVBDףp= ?VBNGzi-1 word richardNNPQ?NNQٿi-1 tag+i word VBP whatWDTZd;O?WPZd;Oi-1 word optionsNNSNNPVBG~jtNN~jt?RBRFx?VBP?RBl i suffix tly PRP`"VBZ!rhNNS(\NNPvϿVBzGVBN/$ NNo!RBRFx?VBPZd;ORB +6@DT ףp= NNPSX9vJJʡE i word taintNNS?JJS i word repairNNx?JJtVVBffffff?NNS^I +߿i-1 tag+i word DT ncaaNNPSV-ͿNNPV-?!i-1 tag+i word -START- separatelyNNPSZd;RB&1NNPJ + @i-1 tag+i word CC consultingVBGp= ףNNp= ף?i-1 tag+i word JJ yukNNS/$NN/$?i-1 tag+i word NN playingVBGL7A`JJ rhNNx&?i-1 tag+i word NNP aDT#~j?NNx&1?NNP333333i-1 tag+i word IN moderatelyRBzG?JJzGi-1 tag+i word MD monitorVBʡE?VBNʡEi-1 word morningNNʡE@NNS333333ۿVBPoʡRBPnIN-@RPGzVBZx&VBG rhѿi-1 word deficitsWDTsh|?INsh|??i-1 tag+i word RB baseVB'1ZNNT㥛 ?INCl i-1 tag+i word -START- reluctantJJMb?NN rпNNPGz߿ i+1 word alexNNq= ףp?NNPClNNSq= ףpJJCl?i-1 tag+i word RB closedVBN/$?JJV-VBDZd;i-1 word justifiedJJClINCl?i-1 word correctiveNNSGz?NNGzi-1 suffix awsNN?5^I VBDmVBPy&1?WDTx?RB~jtxINZd;DT(\VBG^I +?i-1 tag+i word JJR focusedVBN7A`JJ7A`?i+2 word gephardtNNPSV-ϿNNPV-?i word exportingVBG/$?JJ/$i-1 tag+i word CC convertVB+?VBP+ӿi-2 word salesRBR&1ڿVBPjt?VBZ/$NNPxVB rh?NNPSʡEVBDB`"@VBNoʡJJRˡE?RPV-VBGy&1RB/$?NNSm?INjtNNm?JJ|?5^?i+1 word painterJJCl?NNPCli-1 tag+i word , lentJJy&1VBDy&1?i-2 word minutesNNPSx&1ԿVBGˡE?NNˡENNPx&1?i-1 tag+i word NNP vetoedNNOnVBDOn?i-1 word petroleosNNPS㥛FWS㥛?i word eliminatedVBN}?5^I?JJw/VBDx&?i word radzyminNNPSjtNNPjt?i-2 word grudgingVBGHzG?JJHzGi-1 tag+i word VBG acresVBZ= ףp=NNS= ףp=?i+1 word ministersNNP%CNNSoʡ?JJoʡNN%C?i-1 tag+i word IN cripplingJJh|?5?NNʡEVBGy&1i-1 tag+i word NN nearsVBZS?NNSSi word contrastsVBZS?NNSSi word entitiesVBZX9vNNSX9v?i-1 tag+i word NNP subcommitteeVBPʡENNʡE?i word combustionNNGzNNPGz?i-1 tag+i word NNP operatingVBG-@NN-i-2 word undertakingNNS&1?JJR&1 i word sirensVBZq= ףpNNSq= ףp?i+1 word islamVBGzG?NNzG i word cost JJZd;RB rhINQVBZK7NNPVBx&1?NNK@VBDSVBNQ?VBP ףp= ?NNSffffff i-2 tag CD PRP$S㥛CDS?RP-RB-ۿEXDlUHv/VBZ(\VBDPn?WPK$T㥛 пPOS?NNSPn?RBR!rhMDCl?FWM?NNPtVοPDT rh?RBS= ףp=?NNPSNbX9?WDTʡE@DTMbp?NNV-?PRPS?CCrh|?VBGA`"?VBZd;O߿INv/JJSClVBNGz@VBPSJJv߿JJR +?i-1 tag+i word -START- uhPRP$= ףp=JJB`"NNPx&1?i-1 tag+i word VBZ sufficientVBNV-JJV-?i word unobservedJJCl?VBDCli-1 tag+i word NNS plentyNNv?JJClۿCD i word miceNNST㥛 @NNT㥛 i-1 tag+i word RB sufferedVBNd;O޿JJ;OnVBD^I +?i-1 tag+i word `` goVBK7?NNP|?5^FWjti-1 tag+i word IN repairsNNS1Zd?NN1Zdi word broadcastersNNPStV?NNSQNNPjti+2 word unveilNNSx&1NNx&1?i-1 suffix iosVBZd;VBNZd;?VBPZd;O?WDTS?RB7A`IN9vi+2 word pollutionNNSClWDT/$NNHzG?INMb?i-2 word enterprisesJJ"~jVB"~j?i word highlightsNNSI +?NNPI +޿i-1 word followRBK?NNP-ӿRP`"NNS-?NN ףp= ?i-1 word removeNNtVJJ?NNPʡE?i+1 word basedNNV-JJrh|NNSV-?VBNrh|?i-1 tag+i word TO cleanJJB`"ٿVBB`"?i-1 tag+i word NN winsVBZNbX9@NNSK׿NN\(\VBD+i-1 tag+i word , allegedlyRBZd;O?JJZd;Oi-2 word invitingVBMRBʡE?VBDQi-1 tag+i word VBG prudentJJ(\?NN~jtVBNMb i suffix botFWq= ףpNNPK @NNSZd;NN^I +߿JJQ˿i+1 word telerateDTy&1ܿINy&1? i suffix towRBS?NNSSJJ}?5^INNRQؿi word vandenbergNNNNP?i word improvisationalJJ+?RB+ i word joltedVBNjtJJh|?5VBDjt? i+1 word loss VBG\(\RBRvVBNZd;OWDTClJJ&1@NNV-JJR{Gz?INʡEտNNSQi-1 tag+i word DT restyledVBN~jtJJ?VBDrh|׿i-1 tag+i word VBZ wantVBPS㥛NN"~jVBPn?i-1 word jackingINʡE޿RPMbX9?RB'1ZĿi+2 word justiceVBDGzVBZGz?NNV-?JJV-i word senatorsNNSxNNP rNNPSGz@i-1 tag+i word IN premiumJJT㥛 ?NNT㥛 i word icebergNNSMbX9NNMbX9?i+1 suffix sonVBGK7?JJ-RBS9vRBClNNPS?VBDy&1̿CDS?DTV-?NNX9vVBNI +VBPS㥛NNPʡE@VBClCCnJJS9v?INZd;O?PRP$?i-1 suffix derVB?5^I NNDl?POSV-?UH"~NNPSS㥛VBDy&1?VBN;On?DTrh|?NNPn?VBZffffff?JJR}?5^I?VBGffffff?FW}?5^I̿NNSFx?RB9vRP(\CDbX9ȶJJ~jtVBPKWDTn?INx&ٿi+2 word ultimateRBRQPRP{Gz?JJRx?VBvPRP${Gzi word incumbentJJB`"@NNB`"i-2 word olympicsVBNp= ף?JJp= ףпi-1 suffix rueRB"~?NNI +?JJ~jt?IN ri-1 tag+i word CC electronicsVB/$ֿNNPS|?5^ҿNN#~j@FWMbJJMbXNNS5^I NNPNbX9?i tag+i-2 tag VBG JJ NNPSp= ף?VBD$CVBN(\WDT?RB-NNP ףp= JJS?NN|?5^@RBRx&INʡEտVBZMb?NNSx&1 i suffix eau NNPS-VBD+VBPˡEԿNNSNNPw/ @VB`"JJMbXVBZS㥛NNrh|@i-1 tag+i word RB sourVBN{GzĿJJ{Gz?i-1 tag+i word IN leisureNNjt?JJjti+2 word monasteryJJ㥛 NNPv?NNQi+1 word widerNNK?JJRKVBD?VBN i suffix pieNN+?JJ+i word couplesNNSRQ?NNRQi+2 word pullsNNPx&1?CDx&1i-1 tag+i word VBD concentratedJJ}?5^I?VBD}?5^Ii-1 tag+i word JJ negligenceNN?RB i word spurVBQ@NN1ZdVBN1ZdJJw/i-1 word provedDT/$?NNS rhJJd;O?NN-VBNnRBCl@i-1 tag+i word , tongueVBPOnÿNNOn?RBK7A` i+1 word sungNN~jt?JJ~jti-1 tag+i word VB trappedVBN㥛 ?NNV-IN}?5^I̿i+1 word swingsVB rhտVBPffffffƿNN/$?JJ9vi+2 word municipalitiesVBG?NN i word surfNNSʡENNʡE?i-1 tag+i word ) spoutVBPn?VBZni+1 word variousNNS|?5^RBx&RP(\?VBZ|?5^?INʡE?i+2 word deckerNN/$ݿNNP/$?i-1 tag+i word JJ increasedJJS㥛VBNS㥛? i word asksVBDDlINFxVBZ'1Z@NNS{GzVBHzGNN+i word interviewedVBNx?JJSVBDx&1?i-1 tag+i word NN meantNN-VBD-?i-1 tag+i word VBD flagNNSDlNNDl?i-1 tag+i word NN supressorVBP= ףp=NNT㥛 ?JJMbȿ i suffix JoeJJʡENNP~jt?NNS ףp= i word unamortizedJJ}?5^I?VBD}?5^I i-1 word ciaVBPNbX9NNp= ף?NNPx&ٿi-2 word washingtonJJ\(\߿INZd;PDT)\(VBZ= ףp=NNSQVBd;OVBGZd;OVBDOnVBN rh@NNPS?RBS㥛?NN rh?VBPjt?DTd;Oοi+2 word transformRBh|?5CDI +޿VBDtV?NN#~j?VBNtVi word thereafterVBZd;ORBʡ#@NN?5^I VBP̿JJ7A`NNPtV i+2 word artVBDQ?NNCl?VBNQJJCli-1 tag+i word VBG soonerRBRRQ?JJV-NNNbX9i-1 word hasidicNNPS+?NNS5^I ӿNNP&1i-1 tag+i word PRP$ adviceNN|?5^?JJ|?5^i-1 tag+i word CD markkaNNSZd;?FWZd;Ͽi word patternedVBNMb?VBDMbi+1 word compelledVBZ~jt?JJ+VBDbX9?i word satisfyVBK7A`?JJK7A`i-1 tag+i word TO deterVBCl?JJCli-2 word yokohamaRBjtINjt?i-1 tag+i word RB friendlyJJV-@RBV-i-1 tag+i word TO closedVBN-˿VBD-?i+2 word hasteNNPSoʡNNSoʡ?i-2 word break VB{GzRBR(\пJJR(\?RBL7A`INE@VBZ= ףp=JJ\(\?NNJJSʡEVBPy&1ԿNNS/$?i-1 tag+i word CC throughRB/$NN/$IN%C?i+1 word overcomesNNV-?NNSV-i-1 tag+i word POS taleNNPSB`"NNPB`"?i-1 tag+i word VBZ swayingVBGK7?JJK7i-1 word catalystNNPSS㥛@NNPS㥛i-1 word disbeliefWDTd;OINd;O?i+2 word qualifyJJL7A`?VBN\(\?NNCli-1 tag+i word VBP growingVBGZd;ONNZd;O?i-1 tag+i word POS coalNNCl?JJCli-1 word surgeryRBK?JJK"i-1 tag+i word -START- individualsNNS}?5^I?NNP}?5^Ii-1 tag+i word TO regularVBoʡJJoʡ?i word blackstoneNNV-NNPFxVBPp= ף@i-1 tag+i word DT romanticJJy&1?NNy&1̿i-1 tag+i word , gawkyJJ{Gz?NNV-VBD9vڿ i+1 word grayVBGI +޿VBN㥛 JJ㥛 ?NNPI +?i-1 tag+i word IN southeastJJmݿNNPm?i-1 tag+i word JJ manNNxNNPx?i-1 word gamesVBPV-߿NNS%CVBN^I +?IN= ףp=?VBD^I +ǿi-1 word individual NNPS(\?VBGtVNNGzRBZd;@VBDoʡ?VBN#~jJJ(\NNSp= ף?NNPMb?i+2 word designJJPn?NNˡEVBNSi-1 tag+i word NN sedanNN~jt?RB~jti-1 word indicationsDTK7WDTI +IN rh?i-2 word prudeDTMbINMb?i-1 tag+i word RB endangeredVBN~jt?JJ~jtпi-1 tag+i word VB enjoinedVBN|?5^?JJ|?5^i-1 tag+i word DT benefitVBPuV@NNSSNN r i suffix nexVB333333NNP333333? i suffix 61JJQſCDQ?i word funneledVBNEԸ?VBDEԸi-1 tag+i word VB hundredsNNV-NNSV-?i-1 tag+i word MD failRBd;OVBHzG?VBPi-1 tag+i word RBS compellingVBGOnJJOn?i-1 tag+i word CC flyingVBG!rh?JJ!rhi+2 word americanNNPSd;O?VBGHzG?RBRClVBZuV?JJRMbX9JJʡE?NN$C?VBD7A`?NNSEVBNB`"VBSRB333333@RPOn?NNPX9vPOS+?INni word heftierRBRClJJRjt?NN;On¿i+2 word gametocideVBN)\(?NNV-VBDMbi+1 word angelsNNPS(\NNSx&1̿NNPffffff? i-2 word oilNNPSffffffRPq= ףpRB@VBPJJffffffVBK7?NNV-@INq= ףp?WDT'1ZJJRףp= ?VBG9vVBZK7AؿVBD9v?VBNCl CD̿NNS{GzԿRBRlNNPffffff?i+2 word passiveNNClNNSCl?i-1 tag+i word NNS thatVBP= ףp=WDT@INMbDT`"VBv/NNPSV-i-1 tag+i word VBG placeNNS?RB(\JJx&1ؿi-1 tag+i word NNP machineNN\(\?NNP7A`NNPSCli+1 word dictationJJGzVBDL7A`?VBGz?VBNL7A`堿i-2 word dramaticallyNNSCl?JJClѿi-1 tag+i word CC betterNNGz߿RBRuVJJR{Gz@i-1 tag+i word , onlyRBv@JJvi-2 word karaokeNNK7?JJ;OnVBZNbX9VBp= ףNNSNbX9?i-1 tag+i word POS ozarksNNPS ףp= ?NNSB`"NNPMbX9i word readersVBZ= ףp=VBPA`"NNS-?NNP"~jԿi-1 tag+i word NNS cheerVBbX9?VBPNNw/?i-2 word investigatesNNS?NNPS i-2 word skidRBClINCl?i-1 tag+i word JJ symbolsNNS;On?NN;Oni-2 word cricketVB5^I ˿NN"~?JJʡEi-1 tag+i word JJ longingVBGSNNZd;O?JJKi-1 tag+i word NN dystopiaNNB`"?VBZB`"i+1 word available CC333333ۿJJSQCDZd;ORBHzG?VBZ333333?NNS㥛 ?NNPףp= NN}?5^I?RBS`"@i word sherbetNNSGzNNGz?i tag+i-2 tag VBZ :VB(\NN/$RBK7VBN(\?JJ+?i+1 word tetheredVBN"~j̿VBD"~j? i-1 word seibVBNX9vVBDX9v?i-1 tag+i word VBN bangNNQNNPQ?i-1 tag+i word NNP airwaysNNPS/$?NNP/$ӿi+1 word outrageJJ{Gz?NN{Gzi-1 tag+i word JJ assertsVBZm?NNSmi-1 tag+i word NN swingNN$C?JJ$Ci-2 word manhattanNNGz?VBD9vJJx&1VBZ(\?NNSZd;ONNP&1?i-1 tag+i word DT republicanJJV-?NNPV-׿ i word upwardRB"~j @RP rhNN(\JJ;On?INxi-1 tag+i word RB continuedVBNI +ƿVBDI +? i word aromasRPQNNKNNSK7?!i-1 tag+i word -START- experienceNN333333?NNP333333 i word balzacNN+NNP+? i word matureRBJ +NNL7A`VBPh|?5@JJGzǿNNS;OnNNP +@VBCl׿ i word feb.JJNN ףp= PRPJ +RBzGNNPn @ i word damageVBG+VB`"?NNSX9vNN|?5^?JJMi-1 tag+i word NNP trappedVBNV-?VBDV-i-1 word casualJJJ +VBP~jtNN9v?i-1 tag+i word VBN golfNN{Gz?JJ{Gzi-1 tag+i word RB publishedVBNMJJQVBDx?i+2 word robustVB/$VBD/$?i-1 tag+i word NNS enteredVBNd;OVBDd;O?i-2 word limitationsVBGZd;NNZd;@i-1 word scandalVBZ~jt?VB|?5^NNS~jtRBV-?NN?5^I ڿi-1 tag+i word DT workmanNNX9v?JJX9vi-1 word imperialNNvNNPv? i word hybridNNPV-NNPSV-NNSV-JJV-@NNn?i-2 word orkemVBG?5^I JJMbX?NNP/$?i-2 word austriaVBNnVBDn?i-1 tag+i word NNS offshoreRBRK7A`RB|?5^?JJ'1ZINQӿi-2 word machinesJJ/$INQNNP?RBQ@NN+VBN/$?VBPvi-2 word ibc\/donoghueNNPS(\пNNP(\?i word reinvestedVBNx&?JJx&i-1 tag+i word VBD pastaNNS?JJSi-2 word servicesVBSNNFxVBZv?NNSvWDT|?5^?RBZd;ODT|?5^JJRq= ףp?VBNjtRBRMbXVBG(\?JJK7A`?VBDjt?CCQ? i suffix o.bJJS?RBSi-1 word blackNNSʡEVBGI +?NNsh|??JJHzG i word zoningJJffffffVBGsh|??NNv?i+2 word graveJJRd;ONNd;O?i-1 tag+i word : graceNN}?5^I?NNP}?5^Ii-1 tag+i word VBP followedVBNQ?VBDQi word dizzinessVBV-NNn?JJ rȿi+2 word wallpaperNNGz?RBSݿNNPFxѿi+1 suffix peyNNS|?5^NN|?5^? i suffix ngyJJS?NNSi+1 word colonialistsJJʡE?NNPʡEi-2 word flawsVBNh|?5?RBS㥛VBDh|?5VBS㥛?i+1 word colleaguesVBG rh?JJ/$?NNJ +NNPMbXi word killingNN~jtVBG +@JJ= ףp=i+1 suffix ratCDuVVBI +޿NNPOn?JJ333333?NNQi-1 tag+i word POS canadianJJGz?NNPGzi word sharpestNNlJJjtJJSQ?i-1 word merchandiseJJmNNSSNN~jt?i-1 word perfectlyVBNS㥛?JJ+?NN+VBDS㥛i word possibilitiesNNS;On?NN;Onҿi-1 tag+i word NN automatedJJףp= ?VBNףp= i-1 word godVBZV-@NNSףp= POSʡEi-1 tag+i word -START- sumitomoLSףp= JJ+NNPCl? i-1 word fairNN!rh?FW!rhܿi-1 word costumeNNQ?RBQi-1 tag+i word NNS worthJJQ @NNEVBDQVBPd;ORB+INMb?i word cadillacNNCl?JJ/$NNPl i+1 word pitsNNL7A`?JJL7A`i-1 tag+i word PRP$ genuineJJx&1?NNx&1i-1 tag+i word IN movesNNSQ?NNQi-1 word drainedRPjtRBjt?i-2 word academicNNP'1Z?VBP?5^I VBG?5^I ?NNPS'1Zi-1 tag+i word NN issuesNNS"~j?NNP"~j̿i tag+i-2 tag NNP WP$NNSʡEJJCl?NNClNNPʡE?i-1 tag+i word -START- managersVBZ+NNPS̿NNS/$? i-1 tag+i word PRP$ antagonisticJJrh|?NNSrh|i-1 word embattledNNoʡ?NNPoʡi-1 tag+i word VBP standVBnVBPn?i-1 tag+i word NN cupNNffffff?JJffffff޿i-1 tag+i word VBD asylumNNS!rhNNʡE?JJ`"i-1 tag+i word VB controversyNNSMbNNMb?i-1 word dinkinsVBZMbX9VBN&1VBDrh|?i-1 word choresEXE@RBE i-1 tag+i word -START- guaranteeVBNS㥛NN ףp= @NNP-i+1 word faceliftVBN`"?JJ`"ֿi-1 tag+i word DT coldJJsh|??NN rhVBN\(\߿ i-2 word warJJCl?NNK7A`?VBD/$?VBNʡEֿRBZd;NNPZd;i-1 tag+i word IN invoicingVBGSNNS?i-1 tag+i word NNPS churchNNT㥛 NNPT㥛 ?i-1 tag+i word DT coupleJJ'1Z?NNm?FW+ i word pitNNS9vҿNN9v?i-1 tag+i word NN omitsVBZCl?NNSCli-1 tag+i word NN affectedJJClVBDCl?i+2 word againstWDTS㥛?VBNFxINZd;O?NNP-VBZd;O?JJ/$?JJSZd;JJRCl?NNPSNNT㥛 RB~jt?VBZ333333?NNSh|?5VBGoʡ@VBDE@CDZd;ORPCli-1 tag+i word VB damagedVBNx&JJx&?i+1 word congress VBGK7A`NN= ףp=WDTtVRBnDTK7ANNSV-NNPףp= ?JJA`"?VBDK7@VBNrh|INv@VBZV-? i-1 word sickNNSV-?NNQ?JJQNNPʡERBʡEi+2 word citicorpVBNx&1VBDx&1?i word performancesNNPS rh?NNS rhi-1 word concentratingDTuVPDTuV?i word postingVBGl?JJli+1 word urgesNNGzǿNNPGz? i suffix 8-9CD1Zd?JJ1Zd˿ i suffix farRBh|?5@NNS5^I ӿJJ/$NNFxVBN(\ȿi-1 tag+i word JJ soINrh|@RB$CNNCli-1 tag+i word VBN continuedVBN"~JJ"~?i-1 word openingRPPn?RBPni-2 word stressNN(\?JJ(\i+2 word denominationsRBRʡE?RB/$ÿJJRuVi-2 word acknowledgesVBZK7NNS/$?JJ/$ i suffix lic NNPSlNNoʡVBPy&1ԿJJ\(\"@VBmVBZZd;ODTV-NNSn NNP#~j@RBB`" i suffix pes VBy&1VBPmJJ?5^I VBZjtX @NNS^I %@NNPʡERB/$NNʡ!VBDQVBNh|?5i word landslideJJZd;NNV-?RBX9vi-1 tag+i word JJ governmentalJJ'1Z?NN'1Zi+1 word earthquakeVBG%C?NNV-VBNM¿JJʡE?DTI +?NNPuV i suffix FCsNNP|?5^:VBPzGNNPSX9v?NNSV@NN7A`i-1 suffix lt.NNPSClNNPCl?i-1 word clubsVBZS㥛VBPm?NN ףp= i-1 tag+i word VB conclusivelyJJp= ףпRBp= ף? i+2 word riceNNP +NNPS +?RPV-NNRQ?JJRQNNSV-?i-1 word advance VBG|?5^VBDn?RBR%C?RB-IN+?NN|?5^?JJR;OnWDT+VBZni-2 word bluntedVBG5^I NN5^I ?i-1 tag+i word VBN trivialNNZd;OJJZd;O?i tag+i-2 tag VBD NNPS VB"~ʿNNPS rhWDT-VBGV-NNPK7?DTQ?RPsh|?ſRBOn?NN%CVBNp= ף?JJ/$?INMb i word joinVBZq= ףpNNP1ZdVB)\(@VBD-ӿVBP#~j?JJIN9vi+2 word universalNNSZd;ONNZd;O? i word courtNNPSL7A`ؿNNQ@NNP"~ji-1 word czechNNS}?5^IܿNN}?5^I? i word heinzNN+NNP+? i+1 word sirNNbX9?JJRbX9i-1 tag+i word `` manyJJjt?DTd;O@NNSKNNPCl׿NNv/CD`" i+2 word see RBv/IN5^I JJn@NNP7A`VBPtV?WP +?VBZy&1?VBw/?NNPS-?VBGT㥛 NNCl?VBNQNNSX9v?i-1 tag+i word VBZ mainframeJJRoʡNNoʡ?i-1 tag+i word RB workVBʡEӿVBPʡENNbX9?i-1 tag+i word , turnsNNS= ףp=VBZ= ףp=?i-1 tag+i word TO limitedVBV-JJV-?i+2 word monstrousPDTQ?JJQi-1 tag+i word JJ specializedJJI +NNPI +?i+1 suffix oseVBN/$NNSףp= ?JJRʡEۿRBMbX?CD|?5^NNPSv @POSq= ףp?WDTl?VBD|?5^?JJSV-VBPV-?VBZNNP|?5^VBx&1VBG(\?JJ ףp=INˡE?DTK7A`NN rȿPDTx@PRPq= ףpݿ i word thrustVBB`"VBDrh|?NNSV-NN}?5^I?NNPy&1i-1 tag+i word IN firemanNNP/$NN/$@i-2 word installationNNSNN?i+2 word defend NN1Zd?VBDT㥛 NNSA`"NNPMbRB'1Z@VBNHzG@JJMbIN/$VBZA`"?i-1 tag+i word DT hottestJJSOn?JJOni-1 tag+i word , electedVBDw/ԿVBNw/? i word meetsVBZOn?VBQVBPʡEӿNNSS㥛i-1 tag+i word NNP offshoreRBS㥛NNZd;߿MD^I +׿JJQ?i+1 word rivetedVBG= ףp=NN= ףp=? i word fccJJ-NNP333333@NNPSuVi+1 word thoughtJJT㥛 NNS"~j?NNPjt?VB~jtxNNPS7A`?NNzGڿJJRX9vVBPffffffi+1 suffix tleVBsh|??VBPsh|?DTGz?CDX9vJJRʡENNS1ZdRBRʡE?INMbX9VBGrh|VBDCl@RB/$?VBZV-?WDT= ףp=NNPy&1?NNPSMbJJ%C?NN/$POSQ@VBNjti+2 word sustainableDTK7?RBK7i-1 tag+i word NNPS nextJJS?INSi+2 word righthanderNNClJJCl?i word millingVBGK7ANNy&1?JJJ +i-1 tag+i word CC pricingVBG"~jNN"~j?i-1 tag+i word : technologyNN ףp= ?NNP ףp= i-1 tag+i word NN aliveJJ1Zd@NNOnCD +ֿi word eventuallyRBS?NNPSi+2 word uncoverVBZX9v׿NNSX9v?i+2 word linesNN?JJh|?5NNPjt?VB̿VBG%CRBB`"?i+2 word finishedINoʡJJzG?CDzGVBoʡ?i-1 tag+i word JJ leastJJSx?NNxi-1 word solelyJJ-?NN-i word doctoralJJ= ףp=?NN= ףp=i-1 tag+i word DT friendsNNPSS㥛NNSS㥛?i word hoveredVBD +?VBN +i+2 word crucialVBZMbX9?NNSMbX9i+2 word revenueWDT/$?VBZ +?DTRQ@POSjtĿRB~jtNNStVNNPSB`"?VBGx&1?PDT333333ӿVBNQ?NNPffffff?VBjtƿNNGzVBDʡE@VBPlIN1Zd JJ"~j i-1 word practicesVBPZd;?WDTClJJZd;INCl?i word stylingNNS~jtVBGZd;O?NN~jt?JJZd;Oi-1 tag+i word RB impressiveVB(\JJ(\?i-1 tag+i word JJ raskolnikovNN+NNP+?i-2 word farmerVBNbX9?NNbX9i-1 tag+i word DT collapsingVBGZd;O?JJV-NN^I + i+2 word nrmNNSE?NNPEi-1 tag+i word -START- wrightNN"~ҿNNP"~?i+1 word pollinationINPnRBPn@i-1 tag+i word NN helpNNʡE?VBDʡEVB= ףp=ڿVBPM?i-1 tag+i word DT foodNNʡENNPʡE?i word bouncesRBClVBZCl?i-1 tag+i word CC depthNNSQNNQ?i-1 tag+i word VBD comingVBGM?JJMҿi-1 tag+i word POS shippingNNtV?JJtV޿i-2 word compaqJJ+RBRCl?RBClۿVBD+?i+1 word oncogenesDT~jtVBD= ףp=VBN= ףp=?IN~jt?i+1 word degreesNNbX9?JJbX9ֿi+1 word successful NN~jtRB ףp= @JJRxRBRx?VBNS?IN|?5^VBDSRBSrh|?JJSrh|i-1 word poughkeepsieNNPZd;ONNPSZd;O?i-2 word strategy VBDK7JJ"~jIN?5^I ?VBGrh|?NNMbX?VBNK7?VBPy&1RPGzVBZy&1?RB&1?i+2 word abettingVBG(\?NN(\i-1 tag+i word DT olympicsNNPSQ?NNSQi-1 tag+i word -START- punchingVBGZd;O?NNPZd;Oi-2 word defendsNNST㥛 NNT㥛 ?i-1 tag+i word VBG climbedVBD"~?JJ"~ i+2 word vetoNNSd;O޿VBMbXNN;On¿VBPMbX@JJ;On?VBZd;O?i+1 word tradedJJClNNS)\(@NNL7A`RB rh?NNPsh|?i word surrealJJ㥛 ?NN㥛 i suffix ettNNPSClLSNNP'1Z?i-1 tag+i word NN modifiesVBZCl?JJRCli word leaguesNNS+η?NN㥛 NNPHzGNNPS~jt@i-1 tag+i word RB carriedVBNGz?VBDGz߿i-1 word viewsVBNm?JJy&1VBD`"i-2 word trimmingNNSy&1NNy&1?i-1 tag+i word DT precedentNN"~j?JJ"~ji-2 word taxationVBZT㥛 ?VB|?5^VBP|?5^?NNST㥛 i-1 tag+i word POS devastatingVBGZd;JJZd;@i tag+i-2 tag POS WPVBGB`"?JJB`" i word yieldsVBP?5^I RBZd;VBZ)\(?NNSbX9H@NNPZd;NNHzGi-1 tag+i word NN usedVBNK@VBDKi-1 tag+i word VBD wiseJJGz?RBGzi-1 tag+i word VBN rightRB~jt?NN rhJJ㥛 ڿi-1 tag+i word JJS regardingNNV-VBGV-?i-2 word deathsNNS rh?NN rhݿi-1 tag+i word MD sureVBoʡRBoʡ@i+2 word ailmentsVBMJJ?NNL7A`i-1 tag+i word NNS circulatedVBN|?5^?VBD|?5^i-2 word knownsNNSCl?CDCl i-2 word } VBNA`" VBZQNNSjt?VBA`"ӿNNPSsh|?VBG?NNZd;NNPsh|??JJm@POS1ZdӿRBy&1?IN"~ji-1 tag+i word IN topiaryJJ333333?NN333333 i word issuesVBZB`"ѿNNSsh|?NNףp= NNPˡE? i word leviVB+NNP+?i-1 tag+i word DT wppJJ/$ÿNNP/$?i-2 word christianRBRQؿVBD-?JJ-NNRQ? i+1 suffix enNNbX9?JJbX9޿i+2 word tracyJJ rh?NNP rhi+1 word spiritedRPtV?NNPtVi word indicatesVBZoʡ@NNS +JJA`"i+1 suffix rayVBGI +޿NNˡE?VBN㥛 JJx&1?IN;On?DT;OnNNPh|?5޿i+1 word brokenRBp= ף?NNK7AVBDx&1JJp= ףVBZx&1?VBK7A?i-2 word causedVBNT㥛 ؿNNM?NNP/$?JJCl?VBG(\ i word barrelNNQ@RBSJJbX9i+1 word limitNNPSGz׿NNPGz?i-1 tag+i word RB dinedVBPClVBNK7A?VBDp= ףi-1 word castsVBPNN?i-1 tag+i word VBP gingerlyRB%C?JJ%Ci-1 tag+i word PRP$ clothesNNSffffff?JJmNNʡEտi-1 tag+i word VBD shippingNNB`"?JJB`"i-1 tag+i word NNP republicNNPx?NNPSxi-1 tag+i word -START- yaleVBPI +NNPI +?i-2 word coveringJJ+NNP+?!i-1 tag+i word -START- highlightsNNSI +?NNPI +޿i+2 word pilotVBNѿVBD?i-1 tag+i word POS socialistNNP%CJJ%C?i word subsequentlyNNPMbX@NNzGRB$Ci-1 tag+i word DT eeocNN~jtÿNNP~jt?i+1 word milesJJ+?NN\(\?NNPoʡi-1 tag+i word -START- emcNNP7A`?JJ7A`i-1 tag+i word IN winningVBGS?NNSi-2 word aimedJJq= ףpNNjtNNP/$?VBP-VBG{Gz?i-1 tag+i word VB preserveVBS?JJS i word tackNNS/$NN/$? i-1 tag+i word NNS participatingVBP/$ٿVBG/$?i-2 word santaINS㥛?VBZZd;O?NNSZd;ONNPSOnVBGB`"NN(\?JJ rhi-1 tag+i word NNP spurnedJJnVBDn?i-1 tag+i word , doverNNnʿNNPn?i-1 tag+i word JJ briefsNNSCl?NNCli+1 word imperialNNPQ?VBN1ZdJJQVBD1Zd?i+1 word contemporaryVBK7VBPGzNNS+JJ}?5^I@i-1 tag+i word DT buildingVBGClNN'1Z@JJʡE i word fla.NNQRBʡEۿNNPrh|?i-2 word cigaretteVBA`"VBPA`"?i+2 word differenceVBPzG?VBNNbX9VBDNbX9?VBzGʿ i-2 word sendJJ/$VBZoʡݿNNSoʡ?NNP`"?NNPS&1NNd;O?i+2 word combatNNS1ZdNN1Zd? i word toolsNNS?5^I ?NN?5^I i word looseningVBGMbXNNMbX?i-1 tag+i word IN adjournmentNNOn?NNPOni word troublesomeJJ/$ @NN{GzRBQVBNB`"i-1 tag+i word CC armsNNSCl?JJCli+1 word termsVBGMbPNNV-?VBD/$?JJS~jt?VBN/$ÿJJ&1NNP1ZdVBffffffi+1 word sweatingVBPNbX9?NNNbX9i-1 tag+i word IN datJJ{GzԿNNP{Gz? i word ususalVBJ +JJx&1?NNd;O޿ i word deathsVBDlٿNNSCl @NNSJJSۿi-1 word unauthorizedVBGClNNCl? i+1 word sawDT$CWDT$C?NNh|?5?JJh|?5i-1 tag+i word DT redeemableJJK?NNK߿i-1 tag+i word NN raisedVBNuV?VBDuVi-1 word initialNNSZd;?NNPbX9?VBG9vNNV-JJRGz?JJCl?i+1 word entertainmentVBZZd;?NNPSjt?NNSZd;NNPjti word toxicologyNNV-?NNSV-i+2 word electricCDNbX9WDTQJJClINQ?NNPDl?NNw/ԿJJRp= ף?i-1 tag+i word DT satisfactoryJJRQ@NNRQi-1 word maxwellNNPSK7NNSh|?5NNPZd;O@i+1 word fillingVBMbX?RBMbXi-1 tag+i word -START- cancerNNPbX9NNbX9?i-1 tag+i word POS biographicalJJClNNPCl?i+1 suffix oatNNPPnؿJJNbX9ؿCDS㥛?i-2 word protectNNS'1ZJJjt?NNbX9?VBN(\?VBGףp= i-1 tag+i word PRP$ accountNNMb?JJMbi-1 tag+i word VBP violenceNN|?5^?JJ|?5^ٿi+2 word receiveNNP!rh?VBD?5^I VBN?5^I ?INDl?VBZ+DTDlNNSRQ? i-2 word lureJJR-NN-? i suffix ronNN-?FWzGếJJA`"IN rNNS+NNPl@i+2 word spectacularVBZQVBDQ?i-1 word threeJJSHzG?RBClVBG5^I ?VBDʡEVBNX9vIN`"?VBZZd;JJRS?CDzGNNS%CܿNNPZd;OտJJ)\(NN/$VBQ뱿WDTrh|Ͽ i word circleNNS;On¿NNV-NNPQ?i word mundaneJJV-@NNClNNP +i-1 word tennesseeVBGw/?NNX9v?NNPEi+2 word objectivityVBZ5^I VB1ZdVBPd;O?VBDoʡտi-1 tag+i word DT juniorJJn?NNni+1 word retardedRBK7A?NNK7Ai word norwegianJJX9v@NNPX9vi-1 tag+i word VBZ insuredVBNx&1?JJx&1i+1 word unionNNlVBPzGJJ|?5#IN/$ƿVBZxNNSK7A` @NNPy&1,@NNPS?5^I @i-1 tag+i word WP lackedVBZx&VBDx&?i-2 word distinctionsNNGz?JJGzi+1 word executeVB㥛 RBRQRBJ +?i-1 tag+i word POS garyJJOnNNPOn?i+2 word tractorVB+RB+?i-1 tag+i word , britishJJ^I +NNP^I +?i+1 word uphillVB5^I @NN5^I i-1 tag+i word -START- gopJJX9vNNˡENNP|?5^?i-2 word prevalentRBlJJ= ףp=ڿNN?5^I ?i-1 word localNNP!rh?VBGS㥛?NNSFWm?VBNB`"JJʡEi-1 suffix ffyNNp= ף?VBDp= ףؿ i word citingVBGn?NNPni-2 word bloatedNNSQ?NNQi+1 word profoundVBG/$?NN/$i-2 word refiningVBG/$NNtV?JJJ +i-1 tag+i word IN justiceNN-?JJrh|NNPx&1 i suffix sen VBPV-JJtVVBZFxNNS rhVBףp= ?NNPSZd;׿NNʡEJJR㥛 NNPZd;?VBNZd;@!i-1 tag+i word -START- laserscopeJJ rhNNP rh?i-1 tag+i word JJS aroundIN)\(RB}?5^I@NN"~i-1 tag+i word NNP cheeriosNNPS5^I ?NNP5^I  i suffix eliJJw/@NN/$NNPS㥛NNPS|?5^i-1 tag+i word NN outflowsMDMbX9NNSV-?VBZffffff޿i-1 tag+i word IN rawJJsh|??NNsh|?i-1 word canvasNN}?5^I?JJ}?5^Ii-1 tag+i word : americanJJA`"NNPA`"?i-1 word locksRBNbX9RPNbX9? i-1 word goneJJ"@IN333333NNS+RPrh|RBuV @NNGzRBR~jtCDS?i-2 word festooningNNS?JJSi-1 tag+i word TO rookieVBMbX9NN`"@JJ~jti word preparedJJ|?5^@VB rVBNw/NNsh|?VBDCli-1 tag+i word JJ townshipsNNSMbX?NNMbX i suffix amaNNPSvNNSClJJv/NN"~?NNP +@i word americansCCEVBпNNPSףp= @NNSX9v׿NNPSi+1 word misdeedsNN{GzINrh|JJCl?i-1 tag+i word RB enterpriseRBjtVBZd;NNl?i+2 word signalingNN5^I JJK7AпNNP^I +? i word inchedVBNFxVBDFx?i-1 tag+i word VBP flatJJ"~?RB"~i+1 suffix riaNNPq= ףpIN/$?JJ rhFWK7A`? i word logosNNS{Gz?NN{Gzܿi-1 tag+i word DT rebelJJK7A`?NN rVBPClǿi+1 word properlyNNSQ?NNQi-1 tag+i word NN lurchedJJx&1VBDx&1?i-2 word cautiousVBGL7A`?RBRQ?NNL7A`JJRq= ףpJJq= ףp?INRQ i+2 word echoJJ'1Z?NNZd;INE i word treesNNSMb@NNVBZ|?5^i-1 suffix .h.NN7A`NNP7A`?i word algiersNNS㥛 NNP㥛 ?i-1 suffix dgeNNPffffff?RB+?VBD}?5^I?RBSGzVBN|?5^?RPʡEDT|?5^?VBZ333333JJRvNNtV?WDT +NNPSQVBG"~jNNSS㥻RBRv@JJKIN-?i-1 word greatestNNS㥛?JJS㥛i tag+i-2 tag NNS CDVBPB`"ѿWDTDlEXJ +JJPn@VBZOn@JJR/$ƿNNPSGz?RBR1Zd @NNP(\ſNNSKNN rhVBN+?CCJ +ٿRP|?5^DT"~jVBZd;ORBV-?JJS?5^I IN(\?VBGjtVBD~jtۿi-1 tag+i word -START- brianJJX9vNNKǿNNP1Zd?i-1 tag+i word IN appointedVBNzG?JJzGi+2 word identifyVB-?NNENNSnJJ(\?RB(\ i word stopsVBZRQ?NNS/$VBDX9vοi-1 tag+i word VBD hisPRP$S?NNPS i word gonVBP㥛 JJ}?5^INNS$CVB!rh?VBG333333 @NN333333i-1 tag+i word IN antitrustNN7A`RBQѿJJK?i+2 word reinforceVBNx?VBDxi+2 word leapingRPʡEۿRBʡE?i-1 word brookeNNSʡENNPʡE?i-1 tag+i word `` requiredVBNl?JJli+1 word coverageVBDSNNtV?VBN?JJ㥛 NNPv/?i tag+i-2 tag VB (VBGL7A`пJJL7A`? i suffix rseVBI +?NNPSoʡNN/$?VBDrh|VBNNNPI + WRB1ZdJJR|?5^@VBGnٿUHMbRBPnJJ/$?FWPn?RBR rh@VBPB`"LSbX9ֿWP"~ڿNNS ri-2 word guardingNNM?JJ&1?NNPV-i tag+i-2 tag : CDVBsh|?VBGZd;ORBRʡEݿDT5^I ?NNS{GzNNPp= ף?VBD#~j?JJRʡE?WDT5^I ӿVBZ{Gz?NNh|?5?JJK7A`?VBPsh|??RBK7A`?RPV-i-1 word sellersVBPK7?RBGzVBD'1Zi-1 suffix eps INZd;߿VBN;On¿WDT= ףp=?JJ`"?DT^I +NNP9vRP?5^I ڿRB rh@VBD\(\߿i-1 tag+i word VBZ forcedVBN rJJ r?i-1 tag+i word TO adoptVBV-?NNSIN%Ci-2 word runningJJ^I +׿NNQ?RBnINDl?NNSI +NNPPn?i-2 word hypertensionVBDK7VBNK7? i-2 word feelNNV-VBPy&1?UH1Zd?JJ"~jINV-?VBy&1RBCli+1 word bethlehemVBN1Zd?JJ1Zdi word skyscraperVBZ+ǿNN+? i word boredJJˡE?VBNˡEi+2 word fleetsWDTzG?INzGi-2 word dealershipVBNPnVBDPn?i-1 tag+i word VB destabilizingNNV-VBG +JJQ@i-1 tag+i word NN shellsVBZʡENNSʡE?i-1 tag+i word , soundsVBZʡE?NNSʡE i suffix ldyPRPSNNMbNNPPnJJ;On?i+2 word tailoredNNS㥛?JJS㥛i-1 tag+i word CC stifferVBDlVBP-޿JJRS?i-1 tag+i word JJ capitalisticJJ?5^I ?NN?5^I i+1 word structureNNPp= ףNN/$@VBGrh|VBNxJJx&1i-1 word increasingJJS㥛?NN;On?RBMb?INV-DTK7ѿNNSMNNP;On i word civilWRB1ZdJJx&?NNPS˿ i word loveVBD333333VBP^I +@JJq= ףpNNS?5^I VBx&1@RBRQNNbX9@i-1 tag+i word RB triggeredJJ'1ZVBN'1Z?i-1 tag+i word NNPS financialJJZd;NNPZd;?i+1 word ineffectivenessJJx&1?NNx&1i+2 word referredJJy&1NNPy&1?i-2 word flyingCC'1ZDT'1Z?NNSMb?NN(\JJ|?5^i+1 word brownNNPSDlNNoʡFW1ZdNNPV-@VBDZd;O׿ i word mich.NN +NNP +?i-1 tag+i word VB tackNNS/$NN/$?i-2 word shortsVBPV-NNS?VBD333333ۿ i suffix oreJJRGz@WP(\IN@CDh|?5NNPK7MD^I +׿NNPS333333FWV-CCPnVBDjt @RBR;On!@NNS?5^IRBv@NNh|?5?VBPV-?VBNDlDT"~jVBK7ɿLSMbJJ)\VBZI + i+1 word ghazelJJ+NNP+?i+2 word pickersIN㥛 ?WDT㥛 i word impossibleVBˡENNS#~jJJQ@NN\(\i-1 tag+i word NN cutsNNjtVBZ!rhNNS}?5^I@i-2 word tanksNNSMbX9NNK7@JJ"~ji-1 tag+i word NNP watsonNNP ףp= ?NN ףp= i+2 word look JJ/$ֿVBD/$?VBP!rh?MDffffff?NNPSmNN~jtпRBR ףp= ?JJR ףp= RBVBZS?NNS&1?VBףp= NNPm? i word frenzyNNd;O?RBd;Oi word mediterraneanJJ ףp= NNP ףp= ?i-1 tag+i word NN stretchVB%CNN%C?i tag+i-2 tag CD POSNNmVBD#~jCCV-?JJSRQRBSRQ?JJCl@NNS?5^I ?VBGjt i word ticketNNSDlNNHzG?JJL7A`i-1 tag+i word `` tastelessJJ +?NN +i-1 tag+i word VBP hardRB9v?JJ9vi-1 word overwhelminglyJJx&1?NNPx&1 i word preferVBN9vNNOnVB9v?VBP+@NNS/$ i word khanNNP-?JJ-FW-i-1 word illegalNNSQ?NNQ i+2 word sirJJ= ףp=?NNS+?VBNq= ףp?RB(\пNNPMbXi-1 word politicsINoʡWDToʡ?i-1 tag+i word DT economicJJףp= NNPףp= ?i+1 word confirmedDTbX9RBx&?NNP"~?i tag+i-2 tag CC JJSRBSsh|?@JJS%CJJK7A`NNI +i+2 word herbicideJJQ@NNy&1RB rh i word legendNNMbX?JJMbXi-1 tag+i word DT lifetimeNNRQ?JJRQ i+1 word very NNoʡVBDX9v?RBI +?IN\(\DTT㥛 ?VBE?RPS㥛пVBP/$?VBGPn?i-1 tag+i word CC mopVBZd;O?NNZd;Oi-1 tag+i word PRP enjoyedVBB`"VBDB`"?i-1 word shereVBDGz?NNSGz?NNGzNNPGzi tag+i-2 tag VBZ JJVBP7A`?NNS(\տVBG&1ҿJJtVNN|?5^ʿINQRPZd;OVBZMb?VBDv?RBV-?DTA`"?NNPL7A`VBˡE?CDM?WDT? i word outdidVBPMbXPOSL7A`尿VBD"~j? i word clintNNPnNNPPn?i+1 word minicomputerJJsh|?NNsh|??i-1 tag+i word `` majesticJJZd;ONNPZd;O? i-1 tag SYMVBZˡE?NNS= ףp=?NN= ףp=NNPˡEi-1 tag+i word IN norwayNNMbNNPMb?i-1 tag+i word NNP samuelNNZd;NNPZd;?i-1 tag+i word : whatWDT"~WP"~?i word musicalJJ/$?NNrh|NNPQi-2 word presentedVBNx&1JJx&1?i-1 tag+i word NNP realityNNGz?NNPGzi-1 word papersVBD)\(WDT"~?VBN)\(?IN"~i+1 word reflectionJJR/$JJ/$?i-1 tag+i word VBP jimJJClNNPCl?i-1 word employerCCQRBʡE?RBRMbNNʡEJJR/$? i word coughVB|?5^?NNS|?5^ɿNN~jt?JJ~jti-1 tag+i word NNP bothCC|?5^DT|?5^? i suffix egoVB/$VBPZd;ONN}?5^I? i word chairsVBZ/$?NNS^I +@VBx&1NNSVBPClJJx i+2 word mesaNNPjt޿JJRS㥛RB#~jRBR)\(?i+1 suffix oesVBN/$WDTzG@RBK7A`@VBGClNNSMbX9NNPS +NN+w@CCjtֿVBP~jtDTB`"NNP7A`¿VBzGҿWRBCl?JJʡEVBDffffff?INx&i-1 tag+i word DT alcoholNNMNNPM?i+1 word positionsJJClVBD~jtؿVBN|?5^?VBGˡE?NN!rhi-1 tag+i word RB utilitiesNNP?5^I ?NNPS?5^I i-1 tag+i word NN bolstersVBZK?NNSKi-1 tag+i word DT rigidJJq= ףp@NNSmVBN"~NNq= ףpi-1 tag+i word DT laJJFW?i-1 tag+i word RB improvedVBN~jt?JJQVBD9vҿi-1 tag+i word CC quistNNPQ?NNQ޿i-2 word coasterVBDHzGVBNx?JJ%Ci word pensionNNV-NNPV-?i word surgingVBGQ?JJ?NN rVBDd;O޿i-1 tag+i word , promisedVBNjtVBDjt?i+2 word centralizedJJZd;?NNZd;׿i-1 tag+i word NN joblessJJ-?NN- i suffix TomNN5^I ۿNNPS@DTSWRBQPRP$5^I  i word s.pNNP-?NNPS-i-1 tag+i word NNS featuredVBNK7VBDK7? i word frumpyNNSV-JJ r?NNzGʿi-1 tag+i word RB occurredVBN(\VBD(\?i+2 word breathVBX9vVBP(\@VBDxi word outflowsVBZGzNNS|?5^@NNQMDMbX9i-1 tag+i word IN cos.NNPS\(\?NNP\(\i-1 word saying WDTT㥛 VBZ+?NNS+JJ|?5^ڿIN^I +?DTh|?5VBsh|??RP`"RB"~jNNA`"RBR? i-2 word wis.NNCl?RBCli+2 word sentimentVBN rh?JJ~jtVBD{Gzܿi-1 tag+i word TO seekVBx&?JJx&i word ruefullyRB r?NN ri word headwayNNSmNNm?i-2 word chairsNNPffffff?JJffffffi tag+i-2 tag NN VBNJJR`"VBPoʡRBQVBZ(\@VBDuVWDT/$?DTuVVBnNNPSˡEԿVBG ףp= @NN rh@INʡENNP~jtRPʡEJJbX9NNSV-RBRw/?VBNuV?i+2 word bulletDTx&1?RB+?NN+UHx&1i-1 tag+i word WDT chargesVBZʡENNSʡE?i-1 tag+i word NNP advertisingVBGx?NN%CܿNNPZd;Oi+2 word polarNNQοNNPQ? i word fansNNPSRQNNrh|JJ&1VBZT㥛 NNS/$@NNPCli+2 word delegateJJ ףp= ߿NNP ףp= ? i word twentyNN/$JJx&CDx&1@i+2 word oldestNNCl?JJCli+2 word causingRBy&1@NNffffffJJSi-1 tag+i word JJ strokesNNSw/?NNw/Կi-1 word constraintsVBʡEVBPʡE?i+2 word roderickDTffffffWDT+RBZd;߿IN rh@i-1 tag+i word VBG apartRPʡERBʡE?i-1 tag+i word DT mergersNNS+?NN+i word schaferNNPSENNPE?i-1 tag+i word VBZ playVBCl?RBCli-1 tag+i word VBD municipalVB%CJJ%C?i-1 tag+i word NNP taxationNN\(\NNP\(\? i-1 word holyNNPoʡ?NNoʡi-1 tag+i word '' giovanniNNP/$?VBD/$i-1 tag+i word JJR travelVBP㥛 NN㥛 ?i+2 word bethforgeVBףp= NNףp= @i-1 tag+i word IN stoppedJJˡEVBN-?NNZd;OVBDx&1пi-1 tag+i word PRP plannedVBPQVBNuVVBDS?i-1 word studyNN?5^I VBD%C?VBNClٿ i word sexualJJ~jt?NN~jti+2 word thomasJJClNNPCl?i-1 tag+i word NNP accountingNNPSrh|VBGGzNNx&ٿNNPZd;?i-1 word campeauVBZˡE?NNSˡEVBN/$VBD/$?i word unemploymentNNK@JJd;ONNPK i+1 word ''NNx& @VBQ?CDMbXVBP}?5^IPRPOn?MDuV?JJS rh?JJPnNNP^I +VBN ףp= ?RB\(\߿NNPS rh?EXx&1JJRHzG?DTbX9RBRFxVBGl?VBDx&1RPDl?NNS/$@UHGz?PRP$+''x&1?VBZ(\FWbX9?POSFxINFxi-1 word frequentNNP-NNSS?NNCl?i-2 word novametrixNNPSp= ף?NNPp= ףi-1 suffix penJJI +NN rh?RB7A`ڿINX9vϿRPʡE?DT&1?VBG rh?i word beveragesNNVBZPnNNS?5^I ?i-1 tag+i word NNP mcgregorNNNNP?i+2 word exportNNPQNNPS5^I JJPnNNQ?WDTw/RBK7?INw/?NNSw/?i-2 word lootingJJ1ZdNN1Zd?i word seasonalNNPn?JJtV?NNw/ i word touchVBNHzGJJw/]NNSV-VB|?5^@RB7A`NNx&@i-1 word periodsWDT/$INoʡDTd;O?i+2 word projectedJJˡE?NNˡEĿi-1 tag+i word CD issueNNSV-NNV-?i-2 word rapidlyVBD{Gz?VBN{GzJJMbX9INxNNSףp= ?RPx?NNp= ף?i-1 tag+i word IN maturingVBGRQ?NN ףp= JJi-1 tag+i word TO financierVBJJRrh|߿NN-?i-1 tag+i word NN earningVBG +?JJq= ףpNNPnؿi+2 word financierINK7A?JJK7Ai-1 tag+i word NNS armNNStVNNtV?i-1 tag+i word VBN enthusiasmNNQ?RBQۿi-2 word called NNPA`"?VB1ZdVBDq= ףp@IN|?5^?RP|?5^DTx&ѿNNSK7A`?NNPSI +?VBGClNNGz@VBNbX9JJ~jti-2 word nuclearIN r?VBDnNNPv/NNPSX9vVBNn?i-1 tag+i word VBZ eggJJjt޿NNjt?i-1 tag+i word DT defunctNN/$տJJMbX?JJRV-i-1 word aimedRBn?NNni-1 tag+i word CC simpleJJS(\NN&1?JJSۿi-1 tag+i word DT montgolfiereNNQFWQ@ i+1 word fixJJ!rh?RBd;ONN$Ci-1 word approveNN㥛 ?JJ㥛 i word exchequerNNSNNPK7A`?NNS5^I  i suffix ijiJJ-NNP-?i-1 tag+i word IN grimJJn?CDni-1 suffix oodNNP1ZdCD|?5^?DTʡE?VBZx&VBh|?5@JJ?RBZd;O?IN|?5^NNS-@NNPSx&1VBG(\пJJSX9vVBP"~jWDT/$NN?VBDjti-1 tag+i word CC includeVBOnVBPMb@NN+i word thereforeVBDZd;ORBRV-LSMbRBQk@NNSDlNNZd;i+1 suffix elyWDT-@VBZS?POSFxPRP%CܿNNSGz?CD|?5^ڿVBG+?VBN#~jܿJJʡERPS?INjtVBP%C?DTERBS +?RBRzG @JJSʡEPRP$%C?VBDX9v?NN +?RBNbX9?NNP1Zd?VBX9v?NNPS|?5^JJRHzi+1 word litigatorsJJh|?5?NNh|?5i-1 tag+i word NNS surveyedVBN +@VBD +i-1 tag+i word IN mciNN7A`NNP7A`?i-1 tag+i word VBN hiddenJJGz?NNGzi-1 tag+i word IN titaniumNNK7A`?JJK7A`i+1 word diamondsVBG-?POS|?5^?NN-VBZ|?5^i-1 word disruptVB`"PDTʡENNS`"?DTʡE?i-2 word linemanVBZbX9?NNSbX9i-1 word firedRPZd;@RBZd;i-1 tag+i word CC amateurishJJjt?NNjtƿi-1 tag+i word VB growingVBGQ@NNRQJJQi+1 word amauryNNOn?JJ)\(NNS9v i word paringVBG\(\?NN\(\ i+1 word huhNNPx&1?PRP$= ףp=JJB`"i-1 tag+i word JJ fightNN)\(?JJ)\(i-1 tag+i word VBP chemicalNNjt?JJjtֿi+1 word issueVB rhѿVBGʡEۿJJsh|??NNjtVBD}?5^IRB rh?NNSGz?i-1 word snappingRP!rhRB!rh?i-1 tag+i word VB upIN?5^I ?VBZd;NNPSRP@RBK7A`ſNNQJJGzi+1 word forgettableRB+?JJ+i-1 tag+i word DT panicNN$C?VBP$Ci+1 word golfingVB+?JJ+i-2 word clarinetistWDT+IN+?i-1 tag+i word VBZ christopherRBMbNNPMb?i-1 word riggedRPʡE?RBʡEi-1 tag+i word NN commencedVBDm?VBNm i word forgotVBZʡEVBNQ?VBD9v?i word neighboringJJK7A`?VBGZd;O?NN$Ci-1 word apartmentNNSS?NNSi word shippedVBNZd;O@VBDZd;Oi-1 tag+i word TO coverVBRQ?NNRQȿi+1 word minimumJJDl?NNDlѿi-1 suffix selVBZT㥛 ?NNST㥛 пRBtV?NNffffffIN7A`? i+2 word copyJJSZd;ONNZd;O?i-1 tag+i word `` thinkVBOnVBPl@RBoʡi word ignoredNNPZd;OVBDMb?VBN|?5^@JJʡE i-2 word fauxRBZd;O?JJZd;Oi-1 tag+i word DT shotNN\(\?JJx&1VBNnʿi-2 word foundersVBN r?JJ ri+2 word pointedDTCl@WDT}?5^IINDli word celebratesVBZ5^I ?NNS5^I i+1 word bourseNNP~jt?NNPS~jtINMbFWMb?i-2 word scenariosNNSS?NNSi tag+i-2 tag IN NNWDTsh|?CCn?JJRQ?VBGZd;@DToʡ?RPPRP#~jNNPSZd;?JJS rVBP/$POS333333NNPV-¿VB5^I RBS= ףp=EX WPZd;?VBZ-?NNMbpRB~jtPDTrh|׿PRP$x&?UH}?5^I?JJ}?5^I?CD(\RBR|?5^@INK7A`FWS@VBNV-$S㥛?VBD!rh?NNSQ?i+2 word winterNNS{GzܿNN+?JJ +i word drillingNNP+VBGZd; NN?5^I @JJSi+1 word miningRBS㥛NNT㥛 @JJˡENNSSNNP~jt@VBʡE i+1 word sofaVBG\(\?NN\(\i-1 tag+i word NNP seatsNNPS~jtNNS~jt?i-1 tag+i word NN reportingVBGQNN/$?JJI +i+2 word friday VB~jtVBGI +?RB-NNS㥛RBR= ףp=ʿVBNMbX?JJPn@VBZ'1ZܿVBD?IN/$?VBPJ +WDT+?JJR= ףp=?i-2 word barksdaleNNOn?JJOni-1 tag+i word IN indirectJJʡE?NNʡEi-1 tag+i word VBN searchingNNrh|׿VBGrh|? i-1 tag NNPSVBDQ @''^I +RBT㥛 ?INMbVB/$ݿJJn POSv?RPZd;O?NNPSrh|@FW9vDTzGҿNNSףp= VBGV-NNVBNMVBP-@WDTzG?VBZq= ףp?CDzGNNP|?5^?i-1 suffix nihVBZKVBP!rh?NNSK?NN!rhi-1 tag+i word RB hurtJJʡEVBD?VBPn?VBNOni-1 tag+i word PRP$ lipsNNSףp= ?NNףp= i-1 tag+i word JJ cropsNNSV-?JJV- i suffix oalNNSCl׿NN|?5^ @JJi-1 tag+i word RB ambivalentVBP5^I JJ5^I ?i-2 word begunVBjt?RPʡE?JJV-NNX9vRBI +ƿINFx i word bajaNN$C@NNP$Ci-1 tag+i word VBP gottenVBNMb?JJMbi-1 tag+i word TO armstrongVBX9vNNPX9v?i-1 tag+i word JJR wellsJJPnNNSPn?i+1 word animalsNNSQNN}?5^I?JJMbCC|?5^DT|?5^?i-1 suffix busJJnINS?RPSNNPjt?NNPS1ZdVBG)\(?NNˡECDOn?i-1 word astuteNNMb?JJMbi-1 word perkedINRP?i-2 word softnessRBRClNNCl?i-1 tag+i word POS empireNNV-?JJV-i-2 word incidentsVBZd;O?NNSd;OJJ~jtNN%C?VBD|?5^?i-1 tag+i word VBD trainingNNCl?VBGCl i word linkJJSoʡݿJJRQNNS㥛?i-1 tag+i word RB headsVBZ7A`?NNS7A`i-1 tag+i word VBP gotVBDK7VBNX9v@RBi-1 tag+i word VBZ studyVBNbX9?VBPNbX9 i suffix ionVBD^I +PDTT㥛 ؿJJRZd;RBq= ףpNNPV-o@VB&1CC(\տVBNjtVBPV-@IN ףp= DTZd;NNSx&NNPS)\( NN r+@VBZ+JJMbX?i-1 tag+i word JJ syndicatedJJ rhVBD1ZdVBN{Gz?i-1 tag+i word PRP$ elegantJJ ףp= ?NN ףp= i-1 tag+i word IN fabergeNNjtNNPjt?i+1 word ordinanceVBGCl@NNS㥛JJffffffi-2 word charges RBPnNNʡEPDTtVRBRS㥛ĿJJM¿JJRS㥛?INy&1?DTS?VBG(\?VBNZd;O@VBPoʡտi-1 tag+i word CC aerobicsNNSZd;NNZd;? i suffix 000JJ+CD7A`P@NNP㥛 NNSRQNN/$?i+2 word dreamNNSCl?NNPClRPmINm? i word asherDTffffffNNPffffff? i suffix bokNNvNNP rh?NNSS㥛?i-1 suffix picIN+?NNPZd;O?NNPSZd;OWDT+i+1 word eurobondsJJ"~j@NN-NNP&1 i word gaelicJJtV?NNPtVi-1 tag+i word IN eldersNNPS?5^I ?NNS|?5^NNP(\i+1 word toilingJJ-?NN-i+1 word extensiveINDl?RBDli+2 word margarineVBGMb?NNMbп i word helixNNS ףp= NN ףp= ? i+2 word iraqVBGffffff?NNffffffƿi+1 word entourageVBG= ףp=NN= ףp=?i-1 word designs''x&1?POSx&1i word operaticJJoʡ?NNoʡi-1 word beliefWDTw/IN5^I ?DTrh|? i word settleJJRK7AVBP ףp= ?JJx&1NNSQNNPx&1VBuV@NNjti-1 word seasonallyVBN+?JJ+ӿ i+1 word twDT-IN-?i-1 tag+i word DT marcosesNNPSy&1?NNSMbX9NNPx&i-1 word orchardJJh|?5INh|?5?i word resurgentNNʡEJJʡE?i+2 word stalledJJv?NNPvi+1 word reviewsJJRtVJJK7A?VBNV-i-1 tag+i word , concedesVBZ?NNSi+2 word obligationJJw/?NNbX9RBli word piggybackingVBGX9v?NNX9vi-1 tag+i word VBD britishNNPS rhJJSۿNNPK7?i+1 word creedJJX9v?NNX9vi-1 tag+i word , ingestVB-?VBPʡEVBDi-1 tag+i word PRP$ ivoryNNh|?5?JJh|?5i-2 word schlesingerVBNrh|NNPrh|?i-1 tag+i word CC skidVBPnҿNNClVBDMb?#i-1 tag+i word -START- shipbuildingVBGT㥛 NNOn?NNPx&1ܿi+1 suffix deiRBRV-NNPV-?i-1 tag+i word CC inspiredJJlVBDMbX9ԿVBN?i-2 word kozinskiRB#~jԿIN#~j? i-2 word tapeRBMVBZZd;ONNSS㥛?VB'1ZĿJJ#~jRBS ףp= JJS&1?VBPE? i word websNNq= ףpNNSZd;O?JJRv/i-2 word distributedJJbX9?RBbX9 i+1 word forPOS5^I NNSL7A`@CCFxCDK7JJR ףp= ?JJʡENN|?5^ @NNPV-ҿEX(\VBN{Gz?DTRPh|?5?FW"~jPRP;On?RB;On?VBGCl?VBD333333ۿNNPS;On?JJSL7A`尿VB1Zd?RBR㥛 ?VBZDl?VBPMb?WDTCli-1 tag+i word NN transportedVBNʡE?VBDʡEi-1 word economicsVBPZd;OWDTPnNNZd;O?IN?DT`"i+1 word kronorJJ\(\?NN\(\i-1 tag+i word CC rolledVBN"~jܿVBD"~j? i-1 word cornJJv/NNP333333?NNPS +?NNS/$?RBV- i-1 tag+i word -START- katherineNNP|?5^?JJ|?5^i-1 tag+i word CC cosmeticsNNPSʡE?NNSv/ݿNNPʡEi+2 word langfordCC+JJʡE?NN+i-1 word totallyVBNX9vJJ rh @VBDMbX i word patNNPZd;O?VBDZd;O׿i-1 tag+i word NNS flashVBP$C?VBD$Ci-1 tag+i word -START- disasterNN(\?SYM= ףp=NNPsh|?i word inducesVBZ%C?VBPRQNNSy&1|i-1 tag+i word NN dartboardNN-?NNP-i+2 word diapersNNSK7A`?NNK7A`i-1 tag+i word RB addVBV-?JJV- i+1 word hawki+2 word appointmentsNNSS?NNSi+1 word traditionalJJ5^I ?JJR㥛 RB5^I RBR㥛 ?i+2 word divisivePDTDl?JJDli-1 tag+i word DT ftcNNoʡſNNPoʡ?i-2 word awarenessNNSbX9?VBbX9޿i-2 word benefit VBG%C?JJA`"VBPSÿVBZ-?PRP$V-VBDmJJS +PRPV-?RBK7A?NNPQNNI +?i-1 tag+i word DT quietJJCl?NNCl׿i-2 word swornVBDv߿VBNv?i+2 word processedVBZS㥫NNS(\ȿNN rh?JJ9v?NNPni tag+i-2 tag CD (JJRBRQ?NNףp= i-1 tag+i word ( indiaNNPS'1ZNNP'1Z?i+2 word liquidatingVBNV-NNV-?i word organizedIN!rhԿWRBV-VBZQNNPx&RP/$VBDQ?VBNףp= W@JJOni+2 word eagerNNPSbX9NNS^I +?JJZd;Oi-2 word brothersJJ|?5^NNJJRԿRBRMbRB)\(?NNP|?5^?VBPnؿi-1 tag+i word WRB menNNQ?NNPQi-1 tag+i word CC fisheriesVBZQNNSQ? i word decorNNSOnNNOn?i-1 tag+i word VBP alarmedVBNlJJl?i-1 tag+i word DT statedVBNw/ԿJJw/?i-1 tag+i word TO rallyVBl?RBli-1 tag+i word NN athletesVBZ'1ZNNS'1Z? i word filedVB/$NNFxVBDףp= @VBNJ +@VBPK7AJJ\(\VBZV-i word predatesVBZuV?NNSuVi-1 tag+i word IN happenJJT㥛 VBT㥛 ?i word appointmentNNuV?JJuVi-1 tag+i word `` laterRBw/?NN ףp= NNP/$i-1 tag+i word DT faceJJ ףp= VBPV-?NN= ףp=i-1 word television JJ5^I IN㥛 ?VBPɿRBˡENNSʡE?VB)\(@VBG{GzNN㥛 @VBD{GzVBNd;ONNP{Gz? i+1 word fuelVBPMb?VBGoʡ?NN ףp= ?NNP%CVBMbi+2 word fatherVBNuV?JJDlVBDuVNNd;O?NNSQi-1 tag+i word VBN liquefiedVBN?JJi+2 word governorsVBZA`"NNSA`"?i word demonstratedVBNʡEVBDʡE?i-1 tag+i word DT brookingsNNPSZd;ONNSPnNNPL7A`?i-1 tag+i word DT publishingVBGK7ٿNNK7? i word tapesVBZ/$NNS!rh@NNJJuVi-1 tag+i word NN exemptJJ= ףp=?NNGzNNSi+2 word dutiesRP{Gz?NN +?JJ +IN{GzԿi-1 tag+i word NNS earnedJJ9vʿVBD9v?i-2 word editorNNP"~j?JJZd;ONNHzGi-1 word regulatoryNNS5^I ˿NN5^I ?i+2 word escalatorsRBˡE?NNSˡEi-1 tag+i word JJ stygianJJ333333?NNP333333i-1 tag+i word JJ campaignsNNS+?NN+ i-1 tag+i word -START- federatedNNPףp= ?VBNףp= i+1 word towardsRBRS?NNSi word prescribedNNV-VBNK7A`@JJE?VBDK7i-1 tag+i word CC prepulsidNN5^I @NNP5^I i-1 tag+i word RB fallenVBNS?RBSi+1 word unlocksWDTMb?INMbi-1 suffix ichVB rhѿCC/$?DTjt?NNPS?EX"~?JJRq= ףpVBZ/$@NNST㥛 NNPS(\ҿRP`"޿POSʡE?VBPI +@NN'1ZĿVBDJ + @INp= ףJJ+VBN`"RBMbCDQi-1 tag+i word VB extraRPq= ףpJJq= ףp?i-1 tag+i word NN worthNNMbJJDlINd;O?i-1 tag+i word NN missingVBGJ +?NNJ +i-2 word perhaps VBZ|?5^VBE?VBD= ףp=ҿJJRd;O?RBRd;OVBPd;O?INM?JJS?NN\(\׿JJS/$RBS/$?RBMbNNPCl?i-1 tag+i word RB dealerNN$C?JJ$Ci-2 word desireNN rRB^I +VB+?i-1 tag+i word , scarceVBNJ +ѿJJJ +?i-2 word stealNN)\(?JJ)\(̿i-1 tag+i word VBG giantNNzG?JJzGi-1 word complaintsDTGzWDTIN= ףp=?i+1 suffix nesVBDJ +VBN= ףp=@NNS-DTw/?VBZd;O?NNPSK7JJ\(\?JJSʡERBROnJJRK@CD/$?NNP?PDTKUHˡEIN7A`?VBPL7A`?RBS㥛VBZ +FWZd;OVBGDl?NN(\?i-1 tag+i word NN stewedVBNGzJJGz?i-1 tag+i word NN regulationNNSNNP?i-1 tag+i word DT reassessmentNNMb?JJMb i word yuppieNN+?JJ+ i+2 word loneVBL7A`?RB333333?NNL7A`NNP333333 i word bustNNV-?JJV-ڿ i+2 word gunVBNx&1?VBDx&1i+1 word roometteJJtVNNtV?i+1 word hearingsJJsh|?NNPsh|??i-1 tag+i word POS greensNNPS%CNNS/$?NNP/$i word activityNN;On@NNP;Oni-2 word includedVBNq= ףp?CDjt?JJSNNSx&1?NNP}?5^I?NNPS%CNNp= ףi-1 tag+i word CC potentialNNZd;O?JJZd;Oi-1 tag+i word , faxesNNS|?5^?VBN|?5^i-1 tag+i word , neitherCC9v?DTʡE?JJ333333VBD- i-1 word ownsINQ?RBsh|??JJRSJJ-RBRS?i-1 tag+i word JJ wearingVBGS㥻?NNS㥻i-1 tag+i word WP playsVBZ/$?VBD/$i+2 word incompleteVBNuVVBDuV?i-1 tag+i word JJ thingNN)\(?NNP)\(i-1 tag+i word NN appreciationNNh|?5?JJh|?5޿i-2 word activity JJw/INA`"NN|?5^?VBP~jt?WDT+?VBD|?5^?VBNbX9?EX㥛 DTA`"?NNPMbVBZd;ORP~jtRBX9v? i suffix AMNNPS5^I NNPMbؿDT%CԿVBPGz@NN5^I i+2 word packagingVBG{GzNN{Gz?i+1 word rustlingsRB(\RP(\?i+1 word lawyers VBGClNNS@VBDSJJ rhVBZjtNNPClWP(\?JJSS?VBNsh|??POSMb?IN(\DT#~j?i-2 word oddlyRBS?INSi-1 tag+i word TO yieldVBZd;O@NN NNPKi-1 tag+i word JJ halfDT^I +?NNPnNNS+JJ?5^I ?RBJ +i-2 word yardworkNN +?JJ +i+2 word objectivesIN+RB+@ i-1 word p53VBZV-߿NNSJ +?NNh|?5i-1 suffix macNNHzGNNPHzG?i+1 word odysseyJJQ?NNPQi word substituteVB+NNMb?JJ)\(i tag+i-2 tag VBZ NNPSRBMbX9INMbX9?i-1 tag+i word -START- xeroxNNSnNN^I +NNPMb@DTtVi-1 tag+i word JJ headquartersVBZV-NNSMbNNrh| @i+1 word straightRBRZd;VBP-?JJʡE?VB-RP/$RBjtFW+JJRQ?i-2 word freshVBD㥛 VBNZd;?JJw/Ŀi-1 tag+i word , jewelryVBZZd;ONNZd;O?i-1 tag+i word IN virginsNNS+?NN+i-1 tag+i word IN insiderJJR7A`NN7A`?i-1 tag+i word NNP psychologyFW㥛 NN㥛 ?i-2 word informalJJOn@INOni+2 word collaborationVBG333333JJʡE?NNNbX9i-1 word claimINZd;O?DTHzGWDTMbXi-2 word nortonRB(\?NNS?JJSRBR(\i word concertNNSnڿNN㥛 ?JJ+i+1 word troublesIN&1NN9v?RBClNNP&1 i word pfizerNNX9vNNP?NNS5^I i-1 tag+i word NN fertileJJ rh?RB rh i-1 word gets EXA`"RP(\VBDjtJJR|?5^?PRPOnӿNNP= ףp=JJDl?NNoʡVBNS@RB"~@IN rhi+2 word tierneyNN;On?JJ9vNNP'1Z?i-2 word misrepresentJJ(\?NN(\i-2 word howeverJJ#~j?JJS rh?RBFx?IN(\?RBS rhVBNn?VBPQ @VBZ%C?VBMbX9WDT9vDTrh|NNSK7ѿNNjtVBDˡE i-1 suffix toFW%C?PDT r?JJRZd;O?DT1Zd?JJSQ޿WP?NNPrh|@PRP$Cl?VBGoʡ?VBZQ$Pn?NN-NNSPn?RBSQ롿VBPv/ INoʡNNPSh|?5?VBNPnWDTOnJJp= ףRBR?5^I ?UH/$PRPV-RBZd;߿VB`"@VBDMRPrh|CCq= ףpտCD5^I ? i word tylerNNClǿNNPCl?i+1 word hostsMDX9vJJJ +?NNJ +NNPX9v?i-1 tag+i word NN producesVBZw/?NNSw/i-1 tag+i word `` shapesVBZv/?NNSv/i-1 tag+i word `` tpaNNP"~?CD"~i-1 tag+i word NN wallsVBZ333333NNS333333?i-1 tag+i word VB unawarenessNNx&1?JJx&1i-1 tag+i word TO gopVBT㥛 NNPT㥛 ?i-1 tag+i word NN sluggishNNSmJJm?i-2 word among NNPS7A`?NN$CRBSNNS?NNPV-VBGMbX9?JJSsh|??VBNoʡ?JJ rhi tag+i-2 tag MD VBGVBV-?JJV- i word coverNN|?5^VBPZd;?RBjtINjtNNPK7A`?VB= ףp=?i-1 suffix cosNNSQPOSl?VBZ$C?VBPrh|i+2 word timberlandNNSGz?NNGzi-1 tag+i word VBD ericJJffffffƿNNPffffff?i+2 word pipesRPOn@PRPPnRBSi-2 word dutchVBPjtƿVBN$CӿNNjt?VBD$C?i word reassureVBX9v?VBDX9vi+1 word nestleVBZK7A?NNSK7Aпi-1 tag+i word WDT costsNNSV-VBZV-?i-1 tag+i word JJ industrialistVBPV-NNV-?i-1 suffix laxJJ$C?NN$Ci+1 word boundRB;On?JJ;Oni+1 word processRB㥛 ҿNNOn?WDTzG?JJ ףp= ?INS㥛DTZd;O?NNPrh|VBGx&1ܿi word unsuccessfulJJS?NNS i word laxJJL7A`?NNL7A`i-1 tag+i word NN undidINjtVBZ-VBDtV?i-1 tag+i word -START- abDTClNNPCl? i+1 word lostRBZd;O?NNPS(\?JJh|?5NN @NNPPni-1 tag+i word `` neutralJJS?FWSi+1 word responsibliltyRPjt?JJjti-2 word tissueNN= ףp=?JJ= ףp=i-1 tag+i word RB roughRPClJJCl?i+2 word radicalsJJ+ۿIN+?i+2 word unnamedRB(\?IN(\ i word ivoryJJS㥛NNP= ףp=?NNh|?5?i-1 tag+i word NNS whatWDTuVWPuV? i word gutsNNS(\?JJSNNFxi+1 word systems NNPSV-@VBGp= ף@JJR!rh?JJ"~?NNS-ۿNNP/$VBʡENNClVBNQVBPx&ѿINrh|i+1 suffix wahNNPS̿NNrh|NNPMbX? i-2 word setsNNSM?RBZd;O?NN~jt?VBD\(\VBN\(\?VBPZd;OJJq= ףpi tag+i-2 tag DT )VBZ/$VBP/$?i tag+i-2 tag PRP JJRVB㥛 ?VBP㥛 i-1 tag+i word -START- codaNNQٿNNPQ?i-1 tag+i word NNP assemblyNNJ +RBMNNP/$?NNPS1Zdۿi-1 tag+i word WDT dominateVBvVBPv? i suffix ncy VBP;OnNNPSK7RB;OnVBDB`"ɿJJV- NNS5^I  NNPK7?VBʡENN/$A"@i-2 word participatingVBN7A`VBD7A`? i word richerNN JJRv/@JJ-PRPV-i-2 word firesVBGmJJm?i-1 tag+i word VBN painfulJJ?RBi-1 tag+i word NN handledVBN(\?VBD(\i-1 tag+i word NNS hollerVB+?VBP+i-1 tag+i word DT babyJJSNNS7A`¿NNjt?i-1 tag+i word DT remarkablyRB r?NN ri-1 tag+i word VBD immersedVBN/$?JJ/$޿ i word mightyRBʡE?RBSQJJx&ѿNNGz׿PRPOnӿi-1 tag+i word CC allowVB1Zd@VBPMbXRB(\ݿ i word ill.NNP?INi-1 tag+i word VBG heavierRBR%C?NNB`"۹JJR!rhi+2 word degenerateVBZ1ZdJJV-?IN+i-1 tag+i word VB sealedJJ{Gz?VBD{Gzi-1 tag+i word NNS downwardRB~jt?VBNZd;JJSi+1 word civilianRB?5^I ?JJ?5^I i-1 word plasterRP(\VBD(\?i+2 word gentlyJJx&1NNx&1? i-1 word pwaVBZ?NNSܿi+2 word enforcingJJL7A`?NNL7A`i word unconstitutionalJJ(\?NNP(\i-1 tag+i word DT downwardJJE@NNK7RBQNNPK7A`i-1 word specificVBGbX9?JJ%C?NNClVBN㥛 RBMVBZM?NNSZd;Oǿi word buglessJJv?RBx&1NN'1ZԿi-1 tag+i word JJ electricalJJQ?NNQi-1 tag+i word NNS worriedVBNRQ?JJˡEVBD9vʿi-1 tag+i word JJ coupleJJx&ٿNNx&?i-1 tag+i word NN struckVBD}?5^I?NNSA`"NNS㥛Կi-1 tag+i word NNS representedVBN"~VBD"~?i-1 tag+i word VBZ r.r.JJA`"NNPA`"?i+2 word rearrangesNN+?NNS+ i word bruceNNx&ѿNNPx&?i-1 tag+i word VBZ meantVBNrh|?JJrh|i-1 tag+i word VBZ unlikelyJJ%C?RB%Ci-1 tag+i word CC informativeJJ`"?NN`"޿i word mistakenlyNNSV-RB+?NNi tag+i-2 tag CC DT VBzG?VBP/$VBZS㥫?DTFxNNSS㥫VBG~jtJJˡEVBDHzG?VBN-?WDTFx?RB5^I ˿IN5^I ? i word givensVBZuVNNPuV?i-1 tag+i word JJ francNNS㥛?JJS㥛i word purchaseJJ#~j NNt@VBD/$RBK7A`NNS/$VB?i+1 suffix efsJJv/ݿNNPv/?i-1 tag+i word NN bassistVBPMbX9NNMbX9?i+1 word cuellarNNPGzINMb?FW㥛 i-1 tag+i word NNS wonVBDn?VBPni-1 word confidenceWDT?5^I IN?5^I ?i+1 suffix ferNNP^I +׿INClWRB?5^I POSMbXVBPMbPWDT'1Z?NNSZd;?VBG)\(?NN(\?VBD333333JJR~jt''MbX?NNPSGz?JJˡERBS㥛DT/$?MD9v?VB-i-1 word jerseyNN-?VBP/$JJ +?VBZMNNSM?NNPMb?VBGMbi+2 word responsibilitiesVBNV-VBDV-?i-1 tag+i word PRP$ rockyNNzGNNSZd;JJ? i+1 word owedNN/$?JJ/$ i-2 word w.a.VBZK?NNKi+2 word genentechNNzG@JJzGi word concludeVBP/$?NNS/$i-1 tag+i word IN simplerNN7A`JJRX9v?JJNbX9i+2 word cardholdersWDTV-?DTV-i-1 word billingNNSʡENNʡE? i word laidVBN?5^I @NN|?5^ڿVBZHzGJJw/ i word stonesNNS+?JJ5^I NNi-1 tag+i word DT guaranteedNN333333VBN?JJ?i-1 tag+i word IN persecutingVBG^I +?NN^I +i word relievedVBDV-JJV-?i-1 word crimeVBD/$NNPFxNN&1@i-2 word bryantNN333333NNP333333?i-1 tag+i word DT initiativeJJx&1NNx&1?i-1 tag+i word IN fighterNNS㥛?JJS㥛i-2 word valuedCDV-IN(\@RB= ףp=?NNZd;JJxi-1 tag+i word VBZ awareJJ +@RBNNni-1 tag+i word NN clubsNNSNbX9?NNNbX9i+1 word ratiosNNS(\JJ(\?i+2 word attractiveNNK7A`ݿVBP~jt?RB1Zd?VBZQNNSL7A`VB/$?i-1 tag+i word NN fastballVBPClNNCl?i-2 word ditchVBN+VBD+?i+1 word hurledVBV-VBPV-?i-1 word adoptRBR+?JJR+i-1 tag+i word DT facsimileJJ-?NN-i word chambersNNPS?5^I ?NNS;On?NNGzNNPK7A`?i word backingVBG9vNN|?5^?JJK7i-1 tag+i word , violettaVBD(\NNP(\?i-1 tag+i word VB senseVBʡENNʡE?i-1 tag+i word NNP retirementNNV-JJ|?5^NNP-?i-1 tag+i word NNS destroyedVBN`"?NN1ZdۿVBPK7Ai+2 word geographicJJx&1?NNx&1i word pamperedVBN(\JJ(\?i-2 word administratorVBNV-VBDV-?i-2 word pragueNNP-JJ-? i word olegRB-NNP-?i-1 word coupleCDtV?VBN|?5^ٿVBD+i-2 word constantNNSy&1NNGz@NNPmi+2 word spreadsheetsRB~jtNNmCCFxRBRZd;OտJJMDT^I +@NNSrh|@i+1 word beneficiariesVBN'1ZJJ'1Z? i-1 tag+i word -START- apartheidNNK7A`NNPK7A`? i+2 word baseVBD~jtVBNw/@VBP㥛 ?NNSClMD㥛 VB{Gz?VBG~jti-1 tag+i word VB hurledVBNZd;O?JJZd;Oi+2 word firstVBGsh|??VBNnVBZV-JJbX9VBD;On?NNStV?VBPffffffIN-?RPPnؿNNPS-RBS㥛?NNV-?VB|?5^?WDT-?NNP?i-1 tag+i word UH wonderVBK7A?VBPK7Ai-1 tag+i word DT awardingNNHzG?VBGHzGi-1 tag+i word JJ yankeeNNPMb?NN/$?JJ ףp= i word crackedVBNzG?JJI +VBDV-i-1 suffix dezVBNN?i-1 tag+i word DT tinNNd;O@JJd;Oi+2 word financialsNNPSnڿNNPn? i word harlemPRP$MbX9NNPMbX9?i-1 tag+i word VBZ mindlessJJ+?NN+i-1 word aboutINHzGWP+?NNS㥛 ?PRP$Q뱿PRPQ?JJx&1?VBNB`"۹DTB`"@CD9v?VBV-NNPSPDTtV?WDT+NN7A`?RBRK7A`VBPoʡտJJRx&1?NNP rh?VBGQֿRBl?VBDni-1 tag+i word DT eastNNS/$JJʡENNKNNP㥛 @i+2 word downturnVB{Gz?VBPzG?WPK7AVBDX9vi word quantifyVBn?JJni-1 tag+i word DT gutsNNS(\?JJSNNFxi-1 tag+i word NNP itemNNGz?VBDGzi+2 word lithographyVBNA`"VBDA`"?i+2 word manufacturing VB5^I ?NNA`"VBDv/JJR%CWDTMJJv/?INp= ף?VBZ-ֿRBlRBR%C?NNS?5^I ?i+2 word break JJQ?VBNV-?RBV-@VBGz޿NN"~jPOSGzJJRV-VBPGz?VBZGz?i-1 word auditionRBʡE?EXʡE i suffix kyoJJV-?NNPV-׿i+1 word northwardVBNbX9?JJbX9i-1 tag+i word CC faintingVBG9vNN9v?i+1 word rubenesquelyNNffffffCD|?5^ڿJJn?i-1 tag+i word RB freeVBNZd;OJJZd;O? i+1 suffix a.VBNQRB-NNSZd;NNPsh|??RPA`"@NNZd;i-1 tag+i word VBG democratsNNPSp= ף?NNSp= ףؿi+2 word scramblingVBPv/?JJClNN|?5^ɿi+2 word tenaciousJJq= ףp?NNq= ףpi-1 tag+i word NNS dedicatedVBNsh|?JJL7A`?VBD%Ci-1 tag+i word NNP gillianNNPK?JJK߿i-1 tag+i word RB secureVBGz?JJGzi word courierRBRoʡNNoʡ?i-1 tag+i word JJ marketNNP;OnNN;On? i word greeceNNS-NNP-?i word yastrzemskiNNPCl?INCl i+2 word maeVBZS㥛?NNSS㥛WDTʡEINʡE?i-1 tag+i word VBD carbonNNS㥛?JJS㥛i-2 word filedRB-?NNv/ @VBNuVJJ1ZdӿNNSZd;ONNP ri-2 word tougherNN`"޿VBG`"?i-1 tag+i word NN riskJJX9vNNSV-NN ףp= ?i-1 tag+i word CC addedVBDʡE?VBQVBNl?NNV-i+1 word chillJJV-?NNV-Ͽi-1 word registeredVBPV-VBN+NNn?i-1 tag+i word VBZ meetingVBG!rhܿNN!rh?i-1 word invadingNNSEؿNNPE? i word singerVBD+NNSGzJJR"~jܿNNX9v@NNP(\?i-1 tag+i word NNS equippedVBN333333?VBD333333i word speechesVBZV-NNSV-?i word conceptNNZd;@JJV-VBDsh|?NNSGzi+2 word burningVBNMb?JJMbi-1 tag+i word , lashedRBV-VBDV-?i+2 word draftingVBNx&1?VBDx&1ܿi-1 tag+i word : bondNNʡE?NNPʡEi-2 word ridiculousVBP+?NN+i-1 word yellowNN?5^I ?VBP?5^I i-1 tag+i word NNS moveIN5^I VBVBPx&@i-1 tag+i word : mostJJSV-?RBSV-i+2 word officials JJjt @INʡE?VBGJ +?VBPuV?WDTCDy&1NNSzGNNPV-?VBQNNPSClNNX9vֿ i word tadNNJJQRB)\(?i+2 word intentionsRP9vIN9v?i-1 tag+i word JJ disputesVBZsh|?NNSsh|??i-1 tag+i word NN underwrittenNN5^I VBNPn?JJT㥛 i+1 word playerJJGzNNv/?JJSCl?RB;OnDTd;ONNPy&1?i-1 word pertussisNNS rNN r?i+1 word phenomenaVBNZd;߿JJZd;?i+1 word editionJJ-?NN-i-1 tag+i word IN inchesNNS/$?NN/$i-2 word permittedNNP/$VBK7ANNPS/$?JJK7A?i-1 tag+i word NNP decidingNN%CJJnڿVBG(\?i word sterilesNNSV-?JJV-i-2 word roadsNNSZd;OJJ333333?RBJ +i-1 word entertainmentVBGK7A?NNV-ݿVBP9vWDT+?JJtVVBZ/$NNSZd;Oi-1 tag+i word -START- dljJJ9vNNP9v?i+2 word staysVBGHzGNNK7A`?JJ#~j i-1 word bansVBZHzGNNSHzG?VBNCl?VBDClٿi-1 tag+i word PRP$ breadNNQ?JJQٿi-1 tag+i word PRP opensVBZI +?NNSI +ƿi-1 tag+i word VBD inflatedVBNOn?JJOni-2 word unforgivingJJsh|?NNsh|??i word bedrockNN= ףp=?JJ= ףp=i-2 word quietlyRPx&1?INx&1i+1 word procedureJJ+?NN+i-1 tag+i word VBP encouragedJJS?VBDSi-2 word ominouslyNNffffff?JJffffffi word roadwayNNp= ף?JJʡERB5^I i word overreactingJJq= ףpVBGq= ףp?i-1 tag+i word IN depositNNP'1ZNNI +?JJNbX9i word presentsVBZGz?NNSGz i+2 word peekVB(\VBP(\?i+1 suffix ppeNN(\NNP(\?i-1 word buildsNNx&1NNSx&1?i-1 word attachJJ㥛 ?NN㥛 i-1 tag+i word , includedVBN(\?NN(\ڿ i+1 word natoINsh|??VBN$CӿJJsh|?ݿVBD$C?i-1 tag+i word NNP urgesVBZV-?NNSV-i-1 word approvedJJM?NNMWPbX9?CD!rhWDTbX9RB(\IN(\?NNPL7A`?i+2 word dreamsVBZy&1NNSy&1? i suffix TVNNPp= #NNPSClۿRB1ZdNNx&"@CDsh|?JJZd;OVBZMbi-1 tag+i word IN fleetingVBG5^I JJ5^I @i-2 word replacedNNSJJS?i+1 word banksWDTS?DTA`"VBGx&?NNˡERBSV-JJbX9@INMbX9?NNSX9vNNPSffffff޿JJSV-?CD&1?NNPʡEVB rVBDQ?i-1 tag+i word , whatWPS@DT/$WDTrh| i word pitchNNSnNN= ףp=?JJ|?5^i-1 tag+i word VBN otherwiseRBsh|??NNsh|? i+2 word bobVBPoʡNNx&1̿NNPp= ף?i-1 tag+i word , withrowJJ7A`¿NNP7A`? i word arguedNNX9vVBDx&1@VBNX9vVBP-JJ-NNPOni-1 word dynamicNNSQJJK7@NNK7 i word shineNNNbX9?CDNbX9пi+2 word texas RBx&CC"~jNNSCl?NNP-@VBMbXNNoʡݿVBDGz@VBNGzVBP333333JJK7A?i word candlelightNN?5^I ?JJ?5^I i-1 tag+i word -START- decadesNNSʡE?NNPʡEi word immenseJJn?NNni-1 tag+i word RB buyVBK7A`VBPK7A`?i+2 word shakespeareNNPS ףp= ?NNP ףp= i suffix RioNNPS{GzĿNNP{Gz?i+2 word theirJJS%CVBNT㥛 ?WDT!rh?DTHzG?VBZK7AJJR|?5^?NNPGzMDq= ףpJJnNN rVBD#~jRBRm@RB;On?NNPSZd;OVBGn @VBPy&1?VB"~?IN+?RP33333NNS333333@i-1 tag+i word IN doorNNZd;?JJZd;i-1 tag+i word PRP expectVB}?5^I?VBP}?5^Ii-2 word representsNNSS?NNX9vJJ333333JJRGz?i-1 word singaporeNNPS{Gzt?NNS-NNV-?i+1 word legalizationJJV-?VBNV- i suffix vdaRB rhNNPd;O@DTrh|NNHzGi-1 tag+i word -START- tomorrowNN㥛 ?NNP㥛 i+1 word minicarsJJoʡ?NNoʡ i+2 word stepVBP7A`RB9vIN9v?VBZx&1?RPx&1VBDX9v?VBN&1i-1 tag+i word VBD victoryJJK7A`NNK7A`?i+1 word annuitiesVBNQۿJJ(\?NNGzi word staggeredVBNV-JJ~jt?VBD(\?i-1 tag+i word DT farmingtonNNA`"NNPA`"?i-1 tag+i word VBP idlingJJQVBGQ?i-1 suffix 're NNSjtܿVBGZd;?JJʡE?RBRx&1?VBPZd;ϿRBK7INPn?VBI +NN#~jĿJJRrh|׿VBNʡE?RPZd;i-1 tag+i word IN estimatedVBNrh|@JJrh|i word depressionNNʡENNPʡE@ i-1 word ohUH1Zd?NNS1Zd˿i+2 word inningDTʡE?JJʡEi+1 word hopkinsNNPS"~jNNP"~j?i-1 tag+i word DT highwaysNNSS?NNSi-1 suffix oomVBZMb?RPMbNNx&1?POSMbVBN+JJjtINMb?i-1 word cheaperVBPSNNS? i suffix atiNNS ףp= @NN1ZdNNPSK7A`i-1 tag+i word CC detailedVBN rh?JJVBDjti-1 tag+i word IN interiorVBPQۿJJQ?i-1 tag+i word IN compactedVBN!rhܿJJ!rh?i-2 word dozenIN`"VBGףp= RB?NNZd;OտNNP7A`?i-2 word planeRPMbRB?5^I ?NNʡE?VBN-JJbX9?INMb?VBGʡEi-1 tag+i word NNS brianJJh|?5NNPh|?5?i word interestingVBGFx JJ rh@NNDli tag+i-2 tag VBD EXNNSZd;?RB|?5^NN"~j?PDTClVBNZd;JJHzGѿDTFx? i-2 word postNN`"?VBDSӿJJnVBNS?JJRni+2 word fulfillRBFx?RPFxi word giovanniNNP/$?VBD/$i-1 tag+i word -START- pricingNNPS㥛VBGMbPNNS㥛?i-1 tag+i word NNPS aboutRB-?IN-i-1 word stratosphericNNzG?INzGi-2 word servedJJ?5^I ?RBRT㥛 NNʡE?NNS`"JJRT㥛 ?i-1 tag+i word RB exploitedVBNbX9?JJKǿRBX9vi-2 word snappyVBN~jt?NN~jti-1 tag+i word NNP oatNNQNNPQ?i-1 tag+i word JJ strongerJJRV-?JJV-i-1 tag+i word IN thirdJJp= ףNNPp= ף?i-2 word projectionsVBPMbXRB-?IN-VBGz?JJ"~j?VBDMbi+1 word f.a.o.RBM¿NNM?i word applelikeINx&1JJv/?NNV-i word consistVB!rh?VBPv@NNSEԸNNn i-1 tag+i word DT acclaimedJJm?RBmi-1 tag+i word CC whatWPX9vWDT$C?INQi-2 word ignoredRBCl?NNCli-1 tag+i word JJ materielNNSENNE?i word deficiencyVBnNNn?i-1 tag+i word -START- fewerJJRQ?NNPQi-1 word enichemNNPSˡE?NNPˡEi-1 tag+i word DT hypercardNNPSClNNPCl?i word overuseNN1Zd?IN1Zdi-1 tag+i word VB rivalsNNSjt?VBNjti-1 tag+i word VB goodJJNbX9@RPsh|?NNK7RBA`"i-1 tag+i word RB remainedVBD;On?VBN;Oni-1 tag+i word RB scathingVBG/$JJ/$?i-1 suffix oftVBPzGNNSV-@JJ;Oni-2 word populousVB-RB-?i-2 word targetsNN~jtNNP~jt? i suffix besNNoʡVBD rRBw/VBZ/$@NNS rh@NNPni+2 word pauloNNSx&1?NNx&1i-2 word firmerVBD"~?VBN"~i-1 tag+i word VB onlyRB|?5^JJ|?5^?i-1 tag+i word `` designingVBGvJJ +ֿNNP7A`?i-1 word tallestVBGNbX9пNNNbX9?i-1 tag+i word CC raisesVBZ9v?NN9vi word populatingVBPnVBGn?i-2 word floraNNSzG?NNzGi-1 tag+i word PRP$ fondestJJSMb?JJMbi+1 word attackerPRP$B`"?RBB`"i+1 word attitudeJJ|?5^ @NN|?5^ i+1 word axiomJJ-?NN-i-1 tag+i word JJ watchingVBGMbX9?NNMbX9Ŀi+2 word councilVBG&1?NNPS%CܿNNS?5^I ¿JJ&1NNPbX9?i-1 tag+i word RB sharedVBN%C?VBD%Ci-1 tag+i word IN jumboJJm?NNmտi-2 word collagesJJ-ۿVBl@VBP|?5^RBx&i word credibleJJV-?NNV-i-1 tag+i word VBP behindVBh|?5VBPnINRQ?i-1 tag+i word JJ scheduledJJS㥛?NNKVBN= ףp=i+1 word globexVBNDlVBDDl?i+2 word salarymenJJCl?NNPCl׿i+2 word promptedNN(\?JJR"~?JJ(\VB"~i-1 suffix kinNNPClNNPSCl?NNn?POSd;O''d;O@JJni-2 word foundedNNQNNPQ?i-1 tag+i word NNP updateVBx?VBPw/ԿJJ1Zdi-2 word scaredRP?INi-1 tag+i word JJ proceduresNNS%C?NN%Ci+2 word sothebyRPGz?RBA`"?NNA`"INGzi-1 tag+i word JJ printingVBG/$NNA`"?JJsh|?i-1 tag+i word WP teachesVBZ rh?VBD rhi+2 word reasonableNNPS"~j?JJˡE @NNERB(\WP{Gz?NNSRQNNP{Gzi+2 word shortcomingsNN$CNNS$C?i word princeton\/newportJJX9vNNPX9v?i word motorcycleNNPSnNNPn?i-1 tag+i word NNP pickensNNPS/$NNP/$? i word tearJJ-ۿVBl@VBP|?5^RBx&i-1 tag+i word VB bottledVBNQJJQ?i-1 tag+i word JJ superJJ@JJRSNNK7A`i-1 tag+i word NNS deteriorateVBPV-?JJV- i+2 word sortVB|?5^VBP|?5^ʿPDTSNN-?CD)\(?i+2 word wash.NNMbPNNPMbP? i word wieldsVBZq= ףp?NNSq= ףpi-1 word checkIN= ףp=?WDT= ףp=VBNGzVBDGz?i-1 word metricsJJ?NNi-1 tag+i word DT revisedVBN9v?JJrh|?RB$CVBDQi-1 word surprisedDT-޿IN-?i-1 word acknowledgesDTQINQ?i-1 tag+i word IN nowhereRBbX9?JJlNNP-i+1 suffix oftDTm?NNP333333PRP$1Zd?NNy&1?JJ333333ۿINmi-1 word petroleumNNtV?VBDtVi+1 word atticPRP$x?PRPxi+1 word alaskanVBʡE?NNʡEֿi-1 tag+i word TO startRBvVBv? i-1 tag+i word -START- wholesalePRPRQJJRQ?i+1 suffix eroNNq= ףp@NNPq= ףp i+2 word jeffNNS-JJx&ѿNNPV-?i+1 suffix athVBZx&1?JJoʡ?VBNZd;?NN i+2 word bailoutVBN;On?JJS㥛?NNS㥛VBD;Onҿi-1 word businessesVBNEVBPRQJJMb@NNSX9vVBQ?RBʡEVBDL7A`?i-1 tag+i word DT impressiveJJ/$?NN/$i+1 word l'oeilPRP$tVFWx?NNPrh|i word preventedVBNS㥛ؿVBDS㥛?i-1 tag+i word IN typewriterNN;On?JJ;Oni-1 tag+i word TO crumbleVB"~j?JJ"~j̿i word juncturesNN#~jNNS#~j?i-1 tag+i word VBD bothCC rh?DTv@PDTd;OINRQi-1 tag+i word IN fauxNNS{GzJJ?NNZd;O i word thiefNNrh|?NNPrh|i word questionJJ7A`ڿNNPx&1NN/$?VBDzGCC(\տPDTT㥛 ؿVBPy&1?i+1 word include NNPSSVBD\(\߿WDTQ?INQNNPMbX@NNNbX9?VBN\(\?JJ333333VBZV-NNSʡE?i-1 tag+i word DT imputedVBNMbXJJMbX?i-1 tag+i word PRP$ momentumNNSQNNQ? i-1 suffix { JJV-?NNףp= ?FWx޿JJR/$PRPSDTMb?NNSn?VBDl?VBN\(\RB333333ÿINV-?NNP|?5^VBDy&1?i word scholarNNSh|?5NN+@JJy&1VBD +i-1 tag+i word NN palmNN#~j?FW#~j i+2 word offJJZd;ONNPSA`"NNQVBDCl?WPS㥻?NNPʡE?DTףp= NNSK7A`@VB`"?POS㥛 VBNK7A`@PRPZd;O߿VBZd;OοIN+?VBPClWDT ףp= ׿i+2 word messageRBRCl?JJRClVBPGzVBN ףp= ?JJ`"VBZvVBGz? i word haagVBNNNP? i-2 word runsNNP-NNPSE?VBGRQ?JJK7NN+i-1 suffix zieVBP|?5^NNS/$NN{Gz?JJrh|?FWK7A`i-1 tag+i word NNS correctVBPh|?5?JJh|?5i-2 word talks VBGCl?JJMbNNnVBDˡE?VBN(\?RPA`"?VBP-RBA`"INZd;?DTZd;NNP&1? i+2 word ;NN?VBNv/INCl?RPJ +CDZd;?NNP1Zd@MD$CVBrh|VBDGzNNS%CԿNNPS~jtRBRNbX9JJRx&1RBʡE?VBZ+?VBG~jtJJtV@FWV-i word hurricaneVBJ +NNSbX9NNv/@JJw/i-1 tag+i word TO seagateVB/$NNP/$? i suffix oosNNS)\(?NN)\(i-1 tag+i word VBG shelfNNE?JJEi-1 tag+i word CC noteVBZvVB9vVBP-?NNQۿ i word trainVBPoʡ?NNA`"?JJ~jtNNPMbX9i-2 word repairedVBN|?5^?VBD|?5^i+1 word aloftPRP$-NNHzG@JJy&1i-1 tag+i word -START- waysNNS$CNNP%C?NNPS#~ji-1 tag+i word VB slowerNNSClJJRCl?i+2 word zurichJJRx&?RBRx&NNSףp= VBN5^I JJCl?i-1 tag+i word DT specifiedJJp= ףVBNK7?NNnٿi-2 word finallyRPʡE?RBq= ףpNNbX9?VBN|?5^?JJ)\(INʡENNPV- i word soaredVBNjtNN+VBD5^I  @i word indebtedVBN rJJ r@i-1 tag+i word NNS reportVBP"~jNNS5^I NN^I + @ i+2 word canRBRQ?VBNףp= ۿINV-@NNP/$VBZ/$WRBzG?JJn?VBDI +NNWDT rhDTv@VB +RB?VBPT㥛 VBG/$?NNSw/?JJSy&1RBSw/RP{Gzi-1 tag+i word NNS antelopeVBPʡENNSʡE?i-2 word patronizingRBB`"?VBDB`"i+1 word steadyVB?VBNJJClVBDCl? i word busVBPB`"NNh|?5?JJNbX9 i+1 word tentNNffffffJJffffff? i suffix lliNNPS-NNQNNPsh|??i-1 tag+i word , taggedVBNA`"?VBDA`"i word graphicsNNPSv?NNSh|?5NNP-?i word multinationalJJ)\(?NN)\(i+1 word perhapsWDT rIN r? i suffix yorNNS-NNbX9 @JJ%CNNPMb?VBP/$i-1 tag+i word JJ recallsVBZQ?NNSQֿi-1 word centeriorVBZjtֿPOSjt?i-2 word carverDTv/INv/?i-1 word laxativesRB$CӿIN$C?i-1 tag+i word JJ shipbuildingNNT㥛 ?JJT㥛 i-1 tag+i word WRB noDTGz?RBGzi+1 word federsNNPK7A`?NNK7A`ݿi-1 tag+i word NN germanJJzG?NNPzGi-1 tag+i word POS advertisedJJV-?NNxVBN(\i-1 tag+i word DT richJJI +?NNI +i+2 word theaterNNMbX9ܿNNP?5^I @JJSl?RBSlJJQi-2 word cuckooNNQ@JJX9vNNP^I +i-1 tag+i word VBP attendedVBN{Gzt?VBD{Gzti+1 word argumentsVBG㥛 ?NNSX9v?JJT㥛 NNx&VBD rh?i-1 tag+i word TO cellVBV-NNV-?i word stripesNNS)\(?JJ)\(i-1 tag+i word VBD tangledVBD/$޿VBN/$?i-1 tag+i word JJ malpracticeNN?JJ i suffix nus JJw/IN+@VB|?5^CCT㥛 @JJR rhտVBPQNNSZd;O?RBPnNN}?5^I?i-1 suffix cly WPNbX9?VBZ~jt?VBV-?NNʡEտVBDS㥛WDTNbX9RBʡEJJMڿINuV?VBN{Gz?i+1 word journalistJJGz?NNPGzi-2 word gottenVBZ(\NNS(\?i word throughoutIN#~j?RP;OnCDGz޿i+2 word solelyVBV-?NNS;On?RBV-NNP;Oni-2 word miserNNSClѿNNCl?i-1 tag+i word VBZ vastJJ\(\?RB\(\ i word fuelsVBZ'1ZNNS'1Z?i-1 tag+i word , smellVB+VBPQ?NN/$ֿi-1 tag+i word JJ revampingVBGx&?NNx&i-1 tag+i word CC dissentJJ/$NN/$?i word marginaliaNNSjt?NNjti word downtimeNN^I +@JJ%CFW^I +߿i-1 word ortegasRBʡE@VBPL7A`JJ rNN/$ѿCCd;O i word eatenVBNv/?JJv/i+1 word puttingRP^I +?RBS㥛INw/i-1 tag+i word RB lagsVBZV-?RBRV-i+2 word fujitsuNNPS㥛RBS㥛?i-1 suffix samNNP+?NNPSZd;ONN9v i+2 word saysUH rhNNPMbX?RP{GztWDT+?VBNh|?5?FWZd;OJJRn?''(\?VBPZd;?RBZd;O?NNl?CCjtNNSq= ףp@POS(\VBZd;OVBDFxINB`"?DT^I +NNPSZd;O?JJ +i-1 tag+i word JJ euphoriaNNS-NN-?i+1 word prettyRPzG?RBzGi+2 word succeedNNQRB+NNPI +FWd;O?i-2 word previouslyRB5^I NNoʡ?INB`"JJMb?DTB`"?i+1 word visitedWDT-?IN-i-1 tag+i word JJ flamesNNS\(\?NN\(\ i word unitIN/$NNMbX?JJsh|?NNPd;Oֿi+2 word wantedNNPS +?RP'1Z?IN'1ZNNP +i-1 word volumeVBG(\?NN(\i-2 word zavesRPI +?RBI +i-1 suffix olkNNʡE?JJʡEӿi+2 word taxesJJbX9?VBjt?VBGCl?VBNnNNClɿi-1 tag+i word IN appearingVBGGz?NNGzi-1 tag+i word NN drinkerNNv/?NNPv/ݿi-1 suffix kedCDFxJJR)\(CCZd;O?VBP\(\VBGy&1NNS?5^I ?NNPSn?NNA`"?INMb@RBSK7PRPS$ClۿVBSRP&1@JJSK7?NNPZd;ORBm?DT333333JJS?RBR)\(?VBNV- i-1 word stopVBG +?RBSNN;On@POSMbX9CD\(\JJZd;ONNPn?i-1 tag+i word NN consultingVBGFxNN#~j@JJuVi-1 word johnsVBZq= ףpտNNPq= ףp? i suffix ook VBl @NNMb@NNSjtNNPV-׿JJʡE6VBDx@VBN;OnVBP!rh?RB/$INmVBZxi-1 tag+i word DT waiverWRBX9vNNq= ףp?RBCl˿i-1 tag+i word VBG overIN~jtпRPK7?JJRQRBʡEۿi-1 tag+i word `` readNNPףp= VBףp= ?i-1 tag+i word NNP transportVBV-ݿNNPS|?5^ʿNNV-?NNP|?5^?i-1 tag+i word CD rareVB/$JJV-?NN+i-1 tag+i word NN stemsVBZS㥛@NNSGzRBq= ףpNNxi-2 word pawlowskiNNl?JJli-1 tag+i word DT guideJJI +FWxƿNNP1Zd?NNCl?i-2 word tenn.VBZ9v?NN)\(?JJ(\ڿVBDEi-1 tag+i word DT financeNNM?JJNNPbX9ȶ?i-1 word xl\/datacompVBNGzVBDGz?i-1 tag+i word NNS pcsNNSˡE?NNPˡEi-1 tag+i word `` amazingVBG+JJZd;@NNoʡNNPZd;OͿi word purportsVBZ/$?NNS/$i-1 tag+i word VBZ decreedVBV-VBNV-?i-2 word funnelNNSK7?JJK7i+2 word friendlyVBPn?VBPS㥛NNMbi-1 tag+i word , utilitiesNNS%C?WRB%Ci+1 word interviewNNI +޿VBD?5^I VBN7A`?JJRffffff?JJ(\NNP;On?i word anguishNNNbX9?JJNbX9i-1 tag+i word RB unexpectedVBNX9vJJX9v?i-2 word product VBG}?5^IRB1Zd?JJ= ףp= @IN-ֿDTV-׿VBS㥛NNSCC^I +VBNw/ i-2 word onlyNNPHzG?VBQݿDTZd;?NNZd;RBjt?JJR~jtUH/$VBDˡE?VBN#~j@CD+NNPS?JJSCl?WDTKRBSCl׿RBRS㥛PRP`"NNSMb?PDTK7A?INT㥛 ?VBG!rhJJ(\ҿVBZףp= ?i-1 tag+i word NN debutNN rh?VBZ rh i suffix dgyJJ#~j@VBmJJRI +NN(\i-1 tag+i word DT u.k.NNP= ףp=NNL7A`?JJ9vҿi+2 word hammersteinNNPSRQNNSmNNPOn?i word visitedVBN~jtۿVBD~jt?i-1 tag+i word WDT ateVBD/$?NNP/$i-1 tag+i word JJ postalJJ\(\?NN\(\i+1 suffix rve NNSPn?VBKNNPSKJJ+VBDS?VBZPnNNP;On?NNQVBNSVBP(\?RBK?i-1 tag+i word CC feedNNSNbX9NNNbX9?i word executionsNNS+?NN+i-1 tag+i word JJ distanceNNS+NN+?i-1 tag+i word NN copyingVBGZd;NNZd;@i-1 tag+i word , eg&gVBV-NNPV-?i-1 tag+i word VBZ closedVBNtV?VBDtVi+2 word thyselfNNPRB?i-1 word structuredNNCl?JJCl i suffix ISVBZ9v?VBP9vi-1 tag+i word VB wealthierWPX9vJJRX9v?i word adjustersNNS(\?VBD(\i-1 word skiddedCDGz?INCl?NNSGz޿RBCl i-2 word poolVBGNbX9?JJ7A`¿NNnNNPxi-1 word shevardnadzeJJlVBDl?!i-1 tag+i word `` thirtysomethingVBGQNNzGNNP}?5^I@i-1 tag+i word CC possiblyVBZOnVB1ZdRBZd;? i+1 suffix jrJJnNNPn?i-1 tag+i word NN copingVBGS?NNSi+1 suffix mayNNSCl@JJ(\EX= ףp=ҿFW rh?VBDx&VBNtVVBPI +?INRQVB㥛 ҿNNV-o@DTMb?VBZClӿNNPSd;O?WDT5^I @RPmNNPK7?VBGClRB!rhi-1 tag+i word JJ arrivalNNSB`"NNB`"?i-2 word latestJJ/$VBZ(\?NNS(\NNPuV?VBGZd;NNuV?VBDZd;O?VBPCli+1 suffix idaVBPHzGRBCl?JJClNNPHzG?i-1 tag+i word POS armyNNS/$տNN/$?i-1 tag+i word JJ portraitsNNMbXٿNNSMbX? i word sampleNN!rh?JJ!rhi-1 tag+i word VB yourselfNNzGPRPzG@RB(\i+2 word titlesVBPA`"VBN333333?VBDMb`i+1 word namedRB5^I ?IN-NNP\(\?NNPS\(\JJ-NNx&1?i-2 word sentencesVBDV-RB +ֿIN +?VBZ;OnNNS;On?VBV-? i word key FW rhRBR(\VBNJJ @NNSzGNNX9v?VBP1ZdVBZNNPMbXVBMbXѿi-1 tag+i word VBD effectivelyRBS?JJSi word sanitaryJJGz@NNGzi-1 tag+i word VB brokenVBNsh|?JJsh|??i+1 suffix hudDT333333VBG+?JJMb?NNV-IN333333?i word marketerJJRʡENNʡE?i+2 word emhartNNx&?JJx&i-1 word deathVBGMbXɿNNZd;@VBDd;ORB(\VBZ(\NNS(\?i-1 word argentinaVBN9vVBD9v?i+1 suffix fixJJ!rh?RBd;ONN$Ci-1 tag+i word VB tuneNN+?VBN+i-1 word farmsVBZd;VBPl?RBjti-2 word competitionVBG/$?NNPJ +?RPMb?RBZd;ONNB`"@CC$C?JJI + i-1 tag+i word : albeitVBP/$JJv/ݿINJ +?i-2 word beachesVBDjt@VBZGzVBˡEi+2 word smellyJJjt?NNjti-1 tag+i word NN adjacentNNV-JJV-?i-1 word gorbachevNNPVBGrh|?MD5^I ?VBD rh?VBZI +i word distressNNSZd;ONNZd;O?i+2 word barryNNPSCl?NNPCli word wildernessNN7A`?JJ7A`i-1 tag+i word NN richerJJRGz?NNGzi-1 tag+i word POS headNNʡE?JJʡEi-1 tag+i word NNS underscoreJJܿINGzVBP= ףp=?i-1 word rubenesquelyJJffffff?VBDffffffi word presidedVBNZd;߿VBDZd;? i word lower NNPMbX?RBZd;ONNjtVBD+RBR@VBPX9vVBffffff?JJRh|?@VBN%CJJ)\(NNSV- i word quotesVBZX9v?NNSX9vi-1 tag+i word JJ chemistNNzG?JJzGi word generalVBPA`"JJZd;@NNSlNNPNbX9 @VBClRB-ӿNNKVBNL7A`i-1 tag+i word RB litigationVBNrh|NNrh|?i word publicationsNNSNNP?i-1 tag+i word NNS maintainRBRVBDI +޿VBPoʡ?i-2 word mass.RBv/VBG^I +JJ rNNM@VBD"~j?VBN"~jܿi-1 tag+i word NN togetherRBFx?NNFx i+1 word hasWDTMb@VBZZd;O?FWX9v?CD?5^I VBDMbVBN\(\?JJ|?5^:PRPL7A` @NNPOn?NNPSx&1?JJRGzVBGL7A`NNI +@RBR+IN-VBPv/RB#~j?NNS9v?VBSCCNbX9EXMDTT㥛 @i-1 tag+i word POS earlierRBx&1JJRA`"@JJHzGRBRV-i-1 tag+i word : dealsVBZ9vNNS9v?i-2 word mazdaVBNv/@JJtVVBD333333i-1 tag+i word TO plungeVB!rh?NN!rh i+1 word fitNNPnؿVBDGzVBZ!rh?JJx&1?VBNʡEi-1 tag+i word DT financingVBG$CۿNN$C?i word abrasivesNNS;On?JJ;Oni+1 suffix wapJJR"~jJJw/VBNw/?NN"~j?i-1 tag+i word CC employsVBZV-?VBV-i+1 word adviserVBNq= ףp?NNw/?JJ}?5^Ii-1 tag+i word DT midwestJJSV-NNHzG?NNPV-?i-1 tag+i word DT adhesiveNNMb?JJMbȿi+1 word alarconNNPSQ?NNPQi-1 word gallonVBNQNNQ?i+1 word guaranteesJJV-?NN9v?CC +WDT|?5^?RBףp= INL7A`?NNP}?5^Ii+2 word linedWDT rhNNS rh?i-1 word orphanNNh|?5?JJh|?5i+2 word games VBPZd;O?VBZB`"ٿDTB`"?NNPRQVBDI +VBN rhVBG}?5^I?PDTB`"ɿJJ!rh?VBZd;ONNPSHzG?i-1 tag+i word IN meansVBZX9v?VBPX9vi-1 tag+i word TO compellingVBGv/JJv/?i+1 word signedVBP+RP|?5^RB+?JJ|?5^?i-1 tag+i word VBG expertiseVBNnNNn? i word southVBNNPS-JJ rh @NNoʡVBD/$RBzG @NNP9v?i word overheadJJ㥛 ?NNSnڿRB|?5^?NNy&1?VBNDli-2 word lagoonJJRʡERBRʡE?i word assumedVBNA`"?JJ&1?VBDˡE?VBZV-VBPi+1 word reproductiveNNV-INjtĿFWjt?VBP rؿJJGz?i word analysisNNS;OnNNM@JJ/$NNPS㥛VBP;Oni-1 tag+i word JJ muniNNSK7A?JJjt?NN-i-1 word allgedlyEXx?RBx i suffix VAXJJX9v׿NNPX9v?i-1 tag+i word VBD headlongVBN;OnRB;On?i-1 tag+i word VBZ signedVBN?VBDi-1 tag+i word JJ lifeNN ףp= ?NNP ףp= i+2 word zeroVBlRBrh|?JJ ףp= ?i+2 word lingerVBy&1@VBPrh|PRP$ʡEi-1 word filipinoJJT㥛 ?NN(\տRBR?VBNZd;VBPsh|?@RBSJJRVBOni+1 word hiltonNNPSMbX9NNPMbX9?i+1 word returningVBZRQؿJJMbX9VBDx&@i word supervisingVBGn?NNni-1 tag+i word NN hospitalNNx?JJx޿i-2 word sinyardVBG/$JJ7A`?NN(\?i-1 tag+i word VB recordNNK7ɿVBK7?i-1 tag+i word PRP hundredCD%C?NNPuV?VBDi-1 suffix ulfJJRQNNL7A`NNP5^I ?i-1 suffix ameJJʡE?NNS rVBPS㥛UHClVBZ|?5^?JJR(\NNPn @VBNClRBR|?5^?VBDx&1?JJS`"?WDTS?CDQVB rhVBGy&1IN/$RPxRBzG?NNK7i-1 word hoursRB+?VBGx&1?RBR+NNx&1 i word cwaNNPSuVNNPuV?i tag+i-2 tag JJS CC VBjt?VBGS?JJK7?VBD/$޿RBR+?VBP}?5^IRBClNNSx&1NNS˿VBN{Gzt?JJR+i+1 suffix litVBNp= ףJJp= ף?i-1 tag+i word NNS reportedJJzGVBD^I +VBNM@i word recycleVB333333?NN333333i-1 word workedIN~jtDTPn?RPK7A@RBy&1NN$CVBNV-JJq= ףp?i-2 word transactionsVBNE?JJy&1VBD(\VBZ9vNNS9v?i-1 word liquidationRBDlٿINDl?i-1 tag+i word JJR likelyJJn?RBni-1 tag+i word IN educatedVBNuV?JJuVi word vacatingJJMbX9VBGMbX9?i word eliantiVBZNNP?i word specterJJRMbXNNMbX?i-1 tag+i word CC bodegasDTZd;OVBP rhNNS(\?i word incompleteJJl?NNli word wondersVBZE?NNS^I +VBD-ֿi-1 tag+i word NNP whisperingVBGffffff?NNffffffi-1 tag+i word JJ accountingVBGZd;ONN9vJJ;On?NNPT㥛 ?i+1 word kryuchkovNN%CܿNNP%C?i-1 word raised RBIN?VBG-JJʡENN7A`?RBRjtJJRjt?DTNNS/$?i-1 tag+i word PRP$ rootsNNSh|?5?NNh|?5 i word stalsNNPSS㥛NNPS㥛?i-1 tag+i word JJR builtVBN/$?JJ/$ i suffix ath JJZd;߿NN"~j@VBNsh|?RBX9vϿIN㥛 @NNSX9vNNPMbX9ܿVBjtVBPZd;ϿRP)\(ܿi-1 tag+i word NN monopoliesNNSL7A`?VBZL7A` i word toursNNS5^I ?NN5^I i+2 word clutterRPoʡINoʡ?i word patentedVBN%CJJv/?VBDni+1 suffix ov. RB333333NNQ?VBDffffff?VBNx&1ԿVBPS㥛?JJv߿VBQӿVBG-VBZV-NNSGzIN333333?i-1 word chicagoNNPNNPS ףp= POS?NN&1VBDl?i word attendantsNNS{Gz?RB{GzNNPEVBZ{GzNNPSE?i word sportswearVBP~jtNN9v?JJJ +i-1 tag+i word VBG !HYPHEN CD$CۿNNS|?5^NNPSp= ףRP/$NN;On?JJ rh?NNPCl?JJSSRBRQVBN/$? i-2 word byWDTS?VBZ$C DTvPRPI +޿PDTDl?RBSnCDQݿJJSoʡJJS?RP|?5^NN?5^I ?NNS(\@VBGV-?VBNzG?VBP/$NNP ףp= ?RBRV-߿INq= ףpտVBD ףp= ''QPOS-?RBS?VBClǿCCh|?5ֿNNPS~jt?JJRS㥛@i word sociologistJJx&1пVBPQNN+? i word tightJJJ + @NN^I +RBx&1?CD-i-1 tag+i word VBP irritatedVBNlJJl@i-1 tag+i word VBN idleJJV-?RBV-i-1 tag+i word CC freezerVBPV-ݿNNV-?i-1 tag+i word NN blaredVBN= ףp=ҿVBD= ףp=?i-1 tag+i word RB writeVB~jt?JJ~jti word transportationNNClNNPCl@i-1 tag+i word NN syndromeNN(\?JJ(\ҿi+1 word manufacturersJJ"~DT;On?NNSMb?NNP+?NN?5^I ?FWMbPDT;On¿i word accusedVBD`"?VBN|?5^?JJy&1INX9vNNPQ@NNPSK7Ai-1 tag+i word JJR paidVBN= ףp=VBD= ףp=?i+1 word announcementJJ!rhNNPh|?5?''|?5^NN{GzPOS|?5^?i+1 word extraordinaryJJROnJJ/$ƿINOn?RB/$? i word pushVB7A`?VBP+NNSvNN333333?JJK7ٿ i suffix osaNNMbX9NNP$C?NNPSENNS^I +i-1 suffix badJJ333333?NN333333i-2 word dominantNN r?RB ri+1 word tuesday JJv/IN"~j?NNSl?NNPQRBB`"NN @VBDd;O@VBNZd;OVBPףp= DT"~ji word prostitutesVBZX9vNNSX9v?i-1 suffix ewdNNS\(\NN\(\?i-1 tag+i word JJ reportingVBGrh|ϿNNrh|?i+1 word conduitsNN㥛 NNP㥛 ?i-1 tag+i word DT anxietiesNNS +?NN +i-1 tag+i word VBP noUHQ?RBQi-2 word gemsbokVBDx&1̿NNSʡEJJPn?NNʡEi-1 suffix ritJJR +RBR +?i-1 tag+i word DT complacentJJZd;O?NNZd;Oi+1 suffix nixJJZd;O?VBNZd;ORB+?NNP+i-1 tag+i word RB requestedVBNT㥛 ?JJT㥛 i-1 tag+i word VBN northJJ-?NNP-i-1 tag+i word RB adjustedVBNX9v?JJX9vi-1 tag+i word ( exceptNNv/INv/?i+2 word diseaseVBDsh|?NNPSd;O @NNS1ZdVBNsh|??NNPffffffi-1 tag+i word VB reaffirmVBjt?PDTjti-1 tag+i word -START- seasonalJJnNNPn?i-1 tag+i word -START- dickJJR#~jJJuVտNNP$C?i-1 tag+i word VBN littleJJVBN/$RB~jt? i-2 word lagDTX9vNNPSx&NNSx&?INX9v?i-2 word formallyRBR&1RB&1?i-1 tag+i word NNS supercedeVBDxVBPx? i suffix 850JJGzCDGz?i-1 tag+i word VBZ aimedVBN}?5^I?JJ}?5^Ii word backdropJJ~jtNN~jt?i+2 word cluesRBʡEINʡE?i-1 tag+i word DT villageNNPSjtNNjt?i word loopholesVBZףp= NNSףp= ?i+1 word financing NNPffffffƿRB rȿIN r?NNoʡVBDL7A`?VBNw/VBPSӿNNSuVVBG~jt@JJT㥛 ?!i-1 tag+i word NNP communicationsNNPSm?NNS-NNP~jth i-1 word sunNNPSx&1@VBG)\(?NNGz?VBDv?VBNvVBZ333333NNPx&1i-2 word chairman NNPSClJJV-VBNmRBp= ף?VBGSNNFxVBD`"?VBZOn?NNSOnNNP|?5@i-1 tag+i word TO idahoVBnNNPn?i word overshadowingVBG(\?JJ(\i-1 tag+i word IN ufosNNSQ@JJRSJJQѿNNPKi-1 tag+i word WP sentVBPZd;OVBDZd;O?i-1 word republicanNNPS9vʿNNS9v?NN/$?JJ#~jVB;Oni-1 tag+i word -START- probablyRB\(\?NNP\(\i-1 tag+i word RB inspiredVBNJ +JJJ +?i-1 tag+i word IN hypocrisyNNSɿNN"~j?JJh|?5i+1 suffix viaNNPn?CCffffff?CDV-JJMbX?DTffffffNNP= ףp= i word mogulRBRʡENNʡE?i word billingNNQ@JJK7VBG5^I i-1 tag+i word DT undisclosedJJCl?VBDCli-1 word explorePDTw/NNSh|?5?VBZh|?5DTw/?i+2 word amplifiedWDTq= ףp?INq= ףp i word orangeNNPSsh|?NNq= ףp?JJK7NNPsh|??VBMbXi-1 tag+i word VBZ compellingVBGjtJJjt?i-1 tag+i word -START- appalledVBN"~jDTSJJJ +@RB}?5^Ii-1 tag+i word IN steadilyJJ rhRB rh?i+2 word customer RBS+?WDT)\(?JJK7IN)\(NNjt@JJS+VBNCDx?PRPx޿i-1 tag+i word NNP columnVBZtVNNtV?i+2 word turmoilVBNMb?VBDMbi+2 word farceUHQRBQ?i+2 word directionVB'1Z?JJ'1Z i-1 suffix bePDT~jtx?IN= ףp=WPV-?NNSSNNP}?5^IJJRQ@NNPn VB&1EXS㥛JJS{GzPRP$B`"?VBD?5^I VBN(\ @RPy&1RBK7A?CC%C?VBG@WDTSDTףp= JJR?VBZRBS333333?RBRx&1?i+1 word wakemanNNPGz?JJGzi-2 word propertiesVBGh|?5?NN rh?JJKRBtVVBPtV?i-1 tag+i word RB pressingVBGZd;O?JJZd;Oi-1 tag+i word RB upRPv/RBINjt@i-1 tag+i word VBG outsideJJM?RBh|?5IN;Oni-1 tag+i word NN fightVBNFxNNK7?VBD333333ӿi-1 word buildersRB&1IN&1?i-1 tag+i word DT guerrillaNNS%CNN(\?JJ`"i word diplomaticJJB`"?NNB`"ѿi-1 suffix opyNNPS#~jNNS#~j?i+2 word reflectedJJK7A`RBRMbX9?NN\(\@NNS/$VBNMbX9i-1 word priorNN\(\?VB\(\i word shallowerJJRrh|?NNrh| i word waitedVBNVBD@i-1 tag+i word IN categoryNNSףp= NNףp= ?i word infinitiNNS~jtNN/$NNPS@i+2 word whipsRB!rhIN!rh?i-1 tag+i word , controlVB333333ӿNN333333?i-1 tag+i word NNP statesVBZʡENNPS?5^I @NNSMbX9?NNPi-1 tag+i word JJ processingVBGbX9?JJʡENNףp= ?i-1 tag+i word VBP !HYPHEN NNS!rh?NNS?CDS㥛?JJ +RP;OnNNP?5^I ?VB(\ҿVBGS㥛RB1ZdVBN&1i-1 tag+i word TO calmVBv/?JJv/i-1 word unlessEXK7?RBK7JJ/$ӿNN(\VBDL7A`VBNm?i-1 tag+i word NNS disagreeVBPCl?NNCli-1 tag+i word IN grummanNN|?5^ҿNNP|?5^?i-1 tag+i word NN travelingVBG(\?NN(\ i word promptNNS333333JJMb?NN(\i-1 tag+i word IN aeroflotNNK7NNPK7?i-1 word cynicalRB333333NNh|?5?VBPy&1ԿJJ{GzĿIN333333?NNS(\i+2 word sherrenVB㥛 IN㥛 ?i-1 tag+i word NNPS germansNNPS+?NNS"~?NNP= ףp=i+2 word frostedNNPS\(\?NNP\(\i+1 word encouragesRBK7A`?JJK7A`i-2 word participateJJʡE?NNʡE޿ i word closetVBN;OnNN;On? i+1 word dotNNSMb?NNMbi-2 word stagesNNI +?JJI + i-1 word new VBN rh?VBPnRBX9v߿CDbX9?NNPSuVVBGx?NN'1Z?VBZClNNSv?NNP?JJ(\?VBDffffffJJR̿ i word sameNN(\NNPDlJJL7A`@i+2 word followingVBNL7A`@WDTx&1?JJrh|?INnDT^I +߿NNV-VBDS i suffix dryCD\(\RB(\VBZL7A`JJףp= @NNʡEJJRQi-1 tag+i word VBP potholesNNSI +?VBZI +i-1 tag+i word NNP galaNNS?VBDSݿi-2 word labattNNK7A?JJK7Ai+2 word impressiveNNX9v?JJX9vi-1 tag+i word PRP$ huhNN= ףp=NNP= ףp=?i-1 tag+i word NN assumesVBZx?NNSrh|INtVi-1 tag+i word NNS tailoredVBNB`"۹?VBDB`"۹ i word w.j.JJSNNK7NNP r?i word inefficientJJ9v?NN9vi-1 tag+i word DT senatorsNNPSʡENNSʡE?i-1 tag+i word VBN columnNNStVNNtV? i word victimNN7A`@JJ(\RBV-CD㥛 i-1 tag+i word IN mountainNN|?5^?JJ|?5^ڿi-1 tag+i word JJ buyingNN@JJV-VBGoʡ i word elixirNNCl?RBCl i-1 word fondVBZZd;NNnٿNNPGz?i+1 word formedJJxNNSClۿRB;On?i-1 tag+i word `` awNNPS㥛UHp= ף?INT㥛 пi-1 tag+i word VBZ alikeRB~jt?IN~jti-1 word assemblagesWDT1Zd?IN1Zdi-1 word intellectuallyVBzGJJS)\(ܿJJ{Gz?i-1 word civicVBP5^I NN5^I ?i-1 word diamondsRPʡERBA`"@VBDMbVBNp= ף?JJ/$ѿINx&i-1 tag+i word JJ curbsNN;OnNNS;On? i+1 word cdcRBʡE?NNPʡE i+1 word userJJ?NNi-1 tag+i word IN firstJJT㥛 @RBףp= NN/$?NNPMbi-1 tag+i word `` buyNN?JJrh|VB`"?i-1 tag+i word IN copyrightedVBN?JJi+1 suffix eimVBZ/$?NNS/$i-1 tag+i word -START- campeauVB`"NNPS-NNK7NNPV- @i-1 tag+i word DT buzzNNh|?5?JJh|?5i-2 word lewdnessVBZGzVBPףp= ?NNx&1i-1 tag+i word NN permitsVBZQ?NNnVBDrh|i-1 word nondemocraticNNʡE?NNPʡEӿ i-2 word junk VBZCl?VBףp= ?NNS˿VBDٿVBNClVBPA`"˿JJjtNNSClVBG"~j?i-1 tag+i word NN explodedVBN^I +NN`"VBDS@i-1 tag+i word IN plottingVBGPn?JJPni-1 tag+i word JJ graduateJJw/?NNw/i-2 word dealingVBNrh|JJrh|?i-1 tag+i word JJ proNNJJX9v?FWp= ף?NNSPni-1 tag+i word NNS planNN'1Z?NNP(\VBDClVBPGz? i word rentedVBNX9v?JJX9vi+2 word biggerVBVBDK?VBNKVBPZd;INI +VBZK7ANNS1Zd?NNPtV?i+1 word petroleumNN/$JJL7A`NNP`"@i-1 tag+i word DT dreamJJ'1ZNN'1Z?i-1 tag+i word VBD twiceNNMbXٿRB+?VBNli-1 tag+i word NN proceedsVBZA`"NNSA`"?i-1 tag+i word `` profoundlyRBy&1?JJy&1̿i-1 word whetherPRP= ףp=JJzG?NNS#~j?NNP%CNNPS'1ZܿVBG&1@NNHzG?CDmi+1 word beginVBq= ףpCCHzGCDClWDTx?RB%C?INxNNSzG?NNP\(\? i suffix naTO1Zd@RP㥛 JJoʡNNK7i-1 word pendingVBG7A`JJ9vRBZd;O߿INZd;O?NNjt@i-2 word birminghamNN~jtNNP~jt?i-1 tag+i word NNS priorRBB`"?JJB`"i-1 word juniorVBNS?JJVBDX9vi-1 tag+i word DT glitteratiNNS ףp= @NN1ZdNNPSK7A`i+1 suffix vedNNPX9v޿RBS9vPOSVBNsh|?VBZ ףp= @RBK7A` @NN?VBDx&1WDT|?5^?VBrh|INh|?5DTZd;?NNS+?NNPS +?JJS9v?VBPp= ף?JJZd;i-1 tag+i word JJ proposedVBNuV?NNVBD#~j?i-1 tag+i word IN questioningVBGzG?NNzGi-1 word barringJJ^I +?IN^I +i+1 word ideologicalNNPS+VBG9vJJv/@NNP/$i-1 suffix eks JJV-NNS?WDTtVֿRB-?NNSKJJRFx?RBRy&1INx&1VBZK7A?i-1 tag+i word VB executedVBNMb?JJMbi-1 tag+i word IN showroomsNNS~jt?NN~jt i+1 word timeVBGSRBRPnINCl?RP(\ڿJJRx@NNPK7VB333333ӿRBMNN;On?VBDX9v?JJʡE@VBZ rhVBPB`"ѿVBN|?5^DT rh?NNStVPOSPn?i-1 tag+i word NNS incurredVBPjtVBNjt?JJ(\VBD(\?i-1 tag+i word DT curbNNl?JJli-1 tag+i word TO mindVB/$?NN/$i+2 word dominatedNN= ףp=@JJ= ףp=i-1 tag+i word DT exorbitantJJffffff?NNffffffi-1 tag+i word VBG coughsNNS+?NN+ i-1 tag+i word -START- includingVBGn?NN-NNP|?5^i word surpriseNNT㥛 ?JJR ףp= ߿JJNNPX9v?i-1 tag+i word JJ dairyNNS㥛?JJS㥛i-2 word staggeredJJl?NNli-2 word felledVBN\(\NNS\(\?i word foundersNNP|?5^NNPSy&1NNSףp= ?i-2 word brandNNMbXNNPMbX?i-1 word hampshireVBD?WDT"~jܿVBN(\?JJ(\IN"~j?i-1 tag+i word DT assassinationNN?JJi+1 word earthmovingNNSJJrh|@NN;OnRP}?5^Ii-1 tag+i word NN eastVBD)\(JJCl@NN~jtIN i+2 word wokeNNv?NNPvi-1 tag+i word VBZ mightyRBV-?JJB`"PRPOnӿ i-1 word laffVBN/$VBD/$? i word aidesJJB`"VBZ333333ۿNNSZd@NNPSX9vRBGzNN1ZdVBDQۿi+1 word severanceVBNCl?JJCl i word plantsNNPS|?5^ڿNNS|?5^@NNP/$i-1 tag+i word VBG printingNNx&?JJEпVBG#~ji-2 word islandNNPSʡENNPʡE?i-1 tag+i word JJ countsVBZjt?NNSjti word overstaffedJJDl?RBZd;VBNMbi-1 tag+i word NNP abandonedVBNM¿VBDM? i suffix iskNNS7A`NNP|?5^VBlRBd;O޿NN|?5^?VBDK7A`VBPOn?JJ- @i-2 word trumpetsNNSA`"?NNA`"i-1 word automaticNN/$?JJ/$ i suffix amiVBNmNNQ?FWV-i+2 word actual VBG+?JJq= ףp?VBNp= ףINl?DTQ?NNS +VBP#~j?WDTQRBZd;O?VBZ#~jNNP?5^I i-1 tag+i word NNS interviewsNNS1Zd?JJ1Zdi+2 word tibetJJS㥛VBZS㥛NNS㥛?i-1 tag+i word `` justRB?NNFxNNP|?5^ i word bros.NNPSy&1?NNPy&1i-2 word overheadVBS㥛?JJ rhNNZd;׿i+2 word referJJrh|?NNrh|i-1 tag+i word -START- eastRB= ףp=JJ;On?NNS?5^I ?i+2 word reamsNNSHzGRBHzG?i+2 word wondermentVB5^I ۿVBP5^I ?i+2 word animalNNjt?JJjtCCQ@DTQi word libertyJJ'1ZNNP'1Z?NNK7?NNSA`"VBN+ i word backedVBD7A` @VBPKVBN$CJJ rh?NNPmi-1 tag+i word DT d.c.NN%C̿NNP%C? i word scowlsVBZS?NNS rNNV-i-1 tag+i word IN unwittingVBG}?5^IJJ}?5^I?i+1 word harborsNNPMbXJJMbX?i word correctNNZd;OVBNV-VBP?JJp= ף?NNSKǿVBffffff?VBGK7i-1 tag+i word DT busNNNbX9?JJNbX9i-1 word lightningVBZ +NN +? i-2 word theyWDT(\DT~jt?NN#~j?RB{GzNNPl?EXRQIN~jtпVBDHzG@RP#~jVBMbPDTX9v?VBNT㥛 JJuVVBZ`"޿NNS r?RBRuVCDHzGJJR+VBGm?VBPGz@PRPʡECCxRBSx&1?NNPSQ?i word participantNNMbX?JJMbX i+2 word nor VBDOnVBNEJJCl?NNSˡENNP/$?VBA`"NNPS/$CCDTZd;O?RB&1ҿNN"~@ i word feesNNSX9v@JJZd;ONNPʡEi-1 tag+i word IN treasurerNNSV-NNV-?i-1 word traffickerVBN/$@VBD/$i word unalteredJJK7A`@VBNA`"ۿNN\(\VBD~jti+1 word astoundingRBPn?INPn i suffix nteNNPSV-ҿNNS'1ZRBRV-NNP$C@ i suffix alyNN7A`JJ7A`?i+2 word escalateNNPSvNNPv? i+1 word zeroNNq= ףp@NNPq= ףp i+2 word pay INZd;O?NNS^I +׿MD ףp= ?RBVBDS?CCmVBNtVJJGz?RPS?NNPQ?VBQ?VBG%C?NNK7i-1 tag+i word IN databaseNN r?JJ ri-1 word subsidizingNNSV-NNp= ףJJK7A? i word oakesNNPSq= ףpݿNNPq= ףp? i-1 word openDT&1?VBG rh?JJ%CNN rh?RBK7INX9vϿRPʡE?i word borrowerJJRoʡNNoʡ?i-2 word began RB}?5^I?INK7A`JJ?NN ףp= ?JJSMbRBRnVB"~j?VBGPn?RP9vNNS r i pref1 sJJ"~ @VBZZd;O@CCMb?CDffffffEXFxVBG`"@DTKNNS?5^I @NNPuV)VBGz @PDT|?5^@RBS㥛 FW}?5^I?RP%CNNV-@RBMbX@VBPuV@PRPV-NNPS`"۹$WPʡEֿJJSMbX?JJRbX9@VBN|?5^ @WDTIN\(\ VBD rh@RBRT㥛 ?UHMbX?i-1 tag+i word VBG divisionsNNS?NNi-2 word bringingJJCl?VBP-ƿNNzGếi word heatingVBG= ףp=NNK7?JJZd;i-1 tag+i word VBZ appropriateRB&1JJ&1?i-1 tag+i word JJ gainNNMb?VBPV-NNSd;O i-1 word sonVBPSVBZ|?5^?NNS|?5^NN/$?VBD\(\@VBN}?5^Ii-1 word bernardNNPST㥛 NNPS@VBZ&1ڿi+1 word workstationVBGʡE?NNI +JJ7A`ڿVBNS㥛i-1 tag+i word DT greatNNSClJJZd;O @NNPQ i suffix shaJJ rNNP r?i-1 tag+i word DT rankingVBGCl JJ5^I @NN{Gz i word crashNNS rhNNT㥛 @JJQ롿WDT(\VBPMbi-1 tag+i word , shoppersVBZMbؿNNSMb?i-2 word deconstructedNNSm?VBZm i word fixVBGz?VBDGzi-1 tag+i word PRP bidsVBZGz?RPGzi-1 tag+i word NNS technologiesVBZFxVBPNbX9ؿNNSm? i+2 word j.vNNbX9NNPbX9?i+1 word superpowerVBNuVJJ= ףp=?VBDCli-1 word ralliedDTx&?PDTx&RBJ +?JJJ + i-1 word very RP+VBDMINʡENNP+RBh|?@NN+wJJSMb?VBNh|?5JJS㥛D@VBGZd;OݿNNSSi-1 tag+i word NNS eastwardVBPMbRBMb?i-1 tag+i word IN decidingVBG= ףp=?NN= ףp=i word weatherbeatenJJCl?NNCli-1 tag+i word DT 'sVBZzG@NNPFxPOSbX9CDI +ֿi+2 word albertaJJ|?5^?NN!rhVBD)\(VBPMbRBx?INNNPQ?i word regulationsNNPSV-@NNSDl?NNNNPK7A i word satellitesNN-˿NNS-?i-1 suffix yneVBGZd;?NNZd;i word restoreNNOnJJ5^I VBZd;@JJR rhi-1 word unwarrantedNN?JJi-1 tag+i word JJ continuingVBG +?NN(\NNPOn?i+2 word extrasRB/$?IN/$ i suffix hasNN(\NNS(\?i-1 tag+i word , increasesNNSףp= ?NNףp= i-1 tag+i word RB convictedVBN)\(?JJ)\(ܿi-1 tag+i word IN elaboratingVBGQ?NNQi-1 tag+i word , specialVBPJJ?i-1 tag+i word VBD spunVBN/$?JJR/$ i-2 word n.j.VBG5^I NN"~j?RBmVBZrh|ϿNNSE?NNPbX9 i word exitNNPS NNQ@$}?5^IJJjtCDʡEi+2 word programmaticVBѿNNʡE?VBDX9vi+2 word chemicalsVBPnؿNNPSHzG?CC/$VBPPn?DT/$?NNPHzGi+2 word dallasNNx&1NNPx&1?i+2 word summersNNSCl?NNCli-1 word boursesNNS%CԿNNP%C?i+2 word disksDTPn?NNSQ?JJT㥛 RBPnпCDtV? i word trackVBGz?RBFxNN㥛 ?VBPn?JJDlѿINX9vi+2 word degreeRB\(\?JJ\(\i+1 word favorableRBRl?VBNw/ԿJJRlVBDw/?i word phenomenonNNSvNN+?JJ{Gzi-1 word inchedRP= ףp=ʿRBRw/?RB= ףp=?JJRw/ܿi-1 word uncertaintyVBD+VBN+?RBV-INV-?i+1 word betweenJJ^I +JJSoʡݿVBN rh?VBPrh|?NNSA`"@VBG&1?NNZd;@VBZS㥛?JJR(\RBףp= CDp= ףNNP~jtVBx&ٿVBD}?5^IIN+i word scientificJJˡENNPˡE? i word misledRBjtVBNjt?i word narrowlyRBQ?JJQi-1 tag+i word JJ jewsNNPS5^I ?NNS5^I ӿi word disorderlyJJ r?RB ri-1 suffix rlyRPZd;DTffffff@RBRZd;O?VBP~jt?INQCDrh|ϿJJRClVBZd;OPDTT㥛 ?RB^I +?NNPoʡNNPSCl?PRP|?5^VBD(\?NNSCl绿VBN(\@WDTV-VBGMVBZ!rhJJ1Zd?NNx&?i-1 tag+i word NN behaviorNNʡE?RB ףp= VBD'1Zi-1 tag+i word DT toriesNNSZd;ONNP!rhNNPSQ?i-1 tag+i word CD fleetNNSPnNNPn? i word gutterNNGz?JJGz i word worse NNS ףp= NNʡE RBRy&1,@WP"~ڿLSbX9ֿJJvNNPI +UHMbWRB1ZdJJRDl#@VBP333333 i word smilesVBZjt?NNSjti-2 word measureJJ;OnNNP-RBMbX9@VBGSNNX9v?i-1 tag+i word NN weakensVBZˡE@NNSףp= NNP}?5^Ii+2 word workingsJJSHzG?RBSHzG i word arcNNPn?NNPSni+1 word tearingCC/$NNS/$?i-1 tag+i word DT intendedVBN'1ZJJ'1Z?i-1 tag+i word DT simpleJJ r?NN ri-1 tag+i word RB flatVBN~jtJJ~jt? i word vergeNN(\?NNS(\i-1 tag+i word NN yieldsVBZ;On?VBPZd;NNS?i+2 word certainlyRBZd;NNw/?NNPw/JJZd;?VBx&1i+1 word attention JJRQ?DTʡEۿRBm?VBNw/RBRQVBP+JJh|?5VB333333ÿVBG(\?VBDw/?NNP+i-1 tag+i word DT convinceVBP$C?NN$C i word koreanJJGz@NNPGzi-1 tag+i word , poresEXClNNX9vVBZm?i+2 word solidarityVBN?5^I VBD?5^I ?i-1 tag+i word IN soybeanNNS?JJSӿi-1 tag+i word POS textNNx&1?JJx&1i-1 word attractedJJRK?RBRKi word anymoreVBD/$JJRClRBR&1RBX9@IN~jtNNV- i word lacksVBD333333VBZV-?NNSMbi-1 word supportINMbVBDsh|??VBNsh|?RBMb?i-1 tag+i word NNS talksNNS+?NN+ i-1 word cowsVBd;O@VBPoʡJJ|?5^i-1 tag+i word -START- activityNNHzG?NNPHzGi+1 word resignationsNNjt?JJjti-1 tag+i word VB madJJ$C?VBZd;RBRZd;RBMbi+2 word largelyNNPSV-NNS}?5^I̿NNx?JJ%CԿVBD%C i suffix ulbNNSClѿNNCl?i-1 tag+i word NNP paidVBD/$?VBN/$i-1 tag+i word DT ordinanceNNSK7ANNK7A?i-1 tag+i word NNP approvedVBDʡE?INʡEi-1 tag+i word JJ lateJJ+ӿNNClRBCl?i-1 tag+i word -START- hostNNPS㥛?VBʡERBS/$i-1 suffix usiVBNK7NNPK7? i-2 word game NNPDl?RP&1@JJ^I +WDTI +?DT-NNDlVBN^I +?RB(\?IN= ףp=i+2 word advisersJJsh|?ſRB!rhܿVBDX9v?i-1 word shipyardVBGX9vNNX9v?i word disruptVBn?NN"~VBZJ +i+2 word crammingRPx?INxi-2 word profitsVBN$C?RBRNbX9JJ`"?VB rhRBʡE?VBDMi+1 word trumpetWDTx&1?INx&1i-1 tag+i word NN doVBZ5^I VB9v?VBPI +?i-1 tag+i word IN copyingVBGV-?JJV- i word wellsJJPnINSNNPQ @NNS1ZdSYMSi+2 word monthDTK7JJR/$VBPsh|?VBG= ףp=VBZV-RP ףp= VBDMbP?VBN㥛 ?RBR/$?INh|?5CDbX9RBףp= W@NN(\NNS(\ @JJx&?NNPx&1?VBx&NNPSV-? i+2 word betVBDT㥛 VBNT㥛 ?JJS?NNPS˿i-1 tag+i word DT controlledVBNHzG?JJHzGi word russianNNS-JJ\(\?NNSNNPX9v?i-1 tag+i word VBZ undercuttingVBGʡE?JJʡEi-1 tag+i word NNS appealedVBNMVBDM?i word leominsterNNbX9NNPbX9? i word wakeNNSZd;ONNK7?NNPQi-1 tag+i word RB unpublishedVBNSJJS?i-2 word thinningNNSJJS?i-1 tag+i word VBD strippedVBN1Zd?RB1Zdi+2 word surplusVBZ+POS+?i+2 word michelangelosNNPS}?5^I?NNP}?5^Ii+1 suffix endVBGNbX9?FW)\(ܿCDoʡ?VBM¿NNPS!rh?JJRGz?INB`"JJZd;O?DT~jtNNSQ?VBPGzǿWDTK7?VBNK?VBZK7NNPKRBx&1NNZd; i-2 word fadsNNy&1?JJy&1Կi-1 tag+i word CC wireVBK7NNK7? i-2 word wageVBDA`"NNA`"?RBv?JJGzINT㥛 i-2 word grummanNNA`"?JJQNNPffffffֿi-1 tag+i word TO frenchVBp= ף$ rhJJQ?NNP r?i+1 suffix yorJJOn?NNPʡE?NNQRBSۿVBDi-1 tag+i word NN deferredVBNbX9?VBDbX9i-1 tag+i word VBG extraditionNNS?JJSi-1 suffix aseRP333333VBZ^I +?VBGX9v޿NNS+VBNmտWDTMbRBNbX9?DTd;O?VBʡE?JJV-?NN&1ҿVBDsh|??INJ +RBRMbX9?VBPvEX1Zd?JJRA`"?NNPx?i-1 tag+i word NN freaksNNSv/?NNVB~jti-1 tag+i word CC timesVBZ$CӿNNS$C?i+1 word stigmaDTq= ףp?UHq= ףpͿi word merchantsVBZI +NNSI +?i+1 word conspiredNNSZd;O?NNZd;Oi+2 word postsRBףp= ?CDףp= i-1 word mindVBGZd;O?RB9vNN~jtRBR~jt?JJZd;OIN9v?i-2 word verdiNNSV-?VBDʡEVBP;Oni+1 word hintsJJNbX9?NNd;ONNPoʡݿi-1 tag+i word SYM includesVBZˡE?NNPˡEi-1 tag+i word `` stunningVBG333333JJʡE?NNNbX9i-1 tag+i word NN ralliesVBZ@NNSi-1 tag+i word NN troNNPS&1NN&1? i+1 word feetNNS= ףp=PRP$V-?NN rh?CCbX9޿CDtV?PRPV-JJ~jt?i-1 tag+i word TO controlVB(\?JJ(\ i word spursVBZuV?JJRVBDL7A`堿i-1 word overlyJJʡE?VBPh|?5NNSoʡVBN!rh?RBClɿi tag+i-2 tag WDT VBJJq= ףpVBZVBoʡ?RBS?NN㥛 @CDzGi-1 tag+i word RB attendedVBNPnVBDPn?i+2 word aspiringNNFxNNSFx?i-1 tag+i word CC airJJK7A`VB{GzNN!rh?i word predictableJJ= ףp=?NN= ףp=i-2 word stinnettNNS-RB-?i-1 tag+i word JJ mineralsNNSʡE?NNʡEֿ i word tvsVB!rhNNMbTOuVRBSտNNSL@NNPSi-1 tag+i word PRP doubtsVBZS?MDV-VBDx&i+2 word killsVBx&INx&? i+1 word $VBDh|?5?NNSJ +RBRX9vPOS&1?IN(\?RPA`"@VBZbX9?NN-FRBMbX9@JJSK?VBPPn?CDV-JJR+VBy&1?NNP'1ZCC^I +FWZd;OVBNMbJJʡE?VBGQ?i word marinesNNPSv?NNSClNNP rпi+2 word supposedlyNNSMbXNNMbX9?JJA`"i-1 tag+i word VBD focusedVBNL7A`?JJL7A`i-1 suffix kkoNNPSq= ףp?NNPq= ףp i word amissJJ-?NNSVBNDlѿNNSEi-1 tag+i word `` shutJJx&1VBNK7A`@NNq= ףp i+2 word va.NNENNPE?i-1 tag+i word IN joblessJJˡE@VBN-NN^I +NNPrh|i-1 tag+i word -START- sheratonNN-ƿNNP-?i-1 tag+i word : freshmanNN rh?NNP rhi-1 tag+i word JJ reverseNNQ?JJQֿi word exchangedVBNh|?5?JJClVBDT㥛 ?i-1 word convinceJJL7A`?NNL7A`i-1 tag+i word VB throughVBMRP!rh?RBB`"?NN^I +JJ rINK7?i+2 word atrunJJX9v?NN{GzFWjt޿i-1 tag+i word VBZ quitePDTn?RB= ףp=?JJClVBNsh|?i tag+i-2 tag VBD MDDT+?PDT+i+2 word diligenceJJoʡ?NNoʡi-1 tag+i word RB measuredVBNʡE?JJʡEi-1 tag+i word , bankamericaNNPףp= ?NNPSףp= i-1 tag+i word DT fhaNNP+?NNPSMbؿNN+i+2 word protection JJx&1VBN"~jRBʡEVBMb`VBGS㥛?VBZ$CNNPmR@NNsh|?VBD"~j? i+2 word real INK7?VBZʡE?NNSʡENN1ZdWDTK7JJNNP$C?VBjtԿRP!rhRB\(\@i-1 tag+i word CD gargantuanNNSJJV-?NNZd;Oi-1 tag+i word JJ pcNNPʡE?NNd;O?VBD;Oni+2 word cheeseVBG/$NN/$?i-1 tag+i word NNS continuedVBPZd;VBNףp= ?VBDZd;O?i-1 word saturdayNNvUHSRBQIN9vNNSS?NNPv?RPy&1?i-1 tag+i word NNP cdNN`"?NNP`"i-1 word further RB-@CDnIN rhNNPK7ٿJJVBZDlٿNNSGz?VB?5^I @VBGzGNN9vVBN-ƿVBPx&1? i suffix rtyCDS?JJ(\?NNSh|?5NNPV-VBK7A`NN@VBN+ i+1 word askaVBNʡEVBDʡE?i word transcanadaNNP~jt@VBsh|?ݿNNPSmNNmi-2 word tappedNNPSvJJv? i suffix OANJJsh|?NNPsh|??i-1 tag+i word DT swiftJJ#~j?NN#~ji-1 tag+i word NN partnershipsNNS/$?VBN/$i word affiliatedJJv/?VBNv/i-1 word metalsNNS?NN-?NNPy&1VBZVBPzGi-1 word scholarsVBX9vοVBPv?JJrh|i-1 tag+i word IN eastNNPSʡENNS"~?JJQ?NNNNP333333?i-2 word giantsVBNZd;?JJZd;߿i+1 word corruptRBSMb?JJSMbi-1 tag+i word -START- institutNNmNNPm?i+1 word resinsNNzG?JJzGi-1 tag+i word RB edgedVBPA`"VBDA`"?i-2 word runkelEXX9v?RBX9vi-1 tag+i word NN haltsVBZSNNSS? i-2 word incNNA`"?NNPrh|VBoʡݿi tag+i-2 tag RBR VBGJJx&?NNx&i-1 tag+i word DT peekNNRQ?JJRQпi-1 tag+i word TO automatedVBNX9vNNPX9v?i-1 word boroughNNGzJJK7INd;O?i-1 tag+i word NN proposedVBNK7A?VBDK7Aؿi+1 word additionVBZQPOSQ?i-1 tag+i word JJ stressVBP\(\NNףp= ?JJ(\пi-1 suffix biaNNS?5^I NNP9vNNPSV-@NNffffffRBK7A?IN/$?i+1 word inducesWDTV-?RBDl?JJDlINV-i-1 tag+i word VBG carpetNNX9v?RBX9vi word projectedJJ+VBD#~jVBNʡE@i-1 tag+i word NN sheltersNNSx&1?NNx&1i-1 tag+i word NNP continuedVBDˡE?VBN&1?JJMi-1 word incongruitiesVBPQ?INQi-2 word potentialJJoʡ?NNB`"۹?VBD|?5^VBN+?RB"~jNNPZd;?VBffffffֿi-1 word believe NNSV-RBSV-ǿJJSV-?WDTp= ףEXL7A`?RBʡEVBZV-?INX9v@DT(\i-2 word least POSh|?5RBR/$VBPl?VBZh|?5?INQNNPS/$VBDlJJw/?JJR/$?NNS/$?DT r@NNw/PDTV-i+1 suffix edyNNSZd;ONNPSNNPSuV?NNQ?JJRJJX9v@VBZDl?i+1 word puzzleJJˡE?NNˡE i-1 word toreRPoʡ?INoʡi tag+i-2 tag , VBDVBD"~j@PDTDl?VBNL7A`пDTK?RB-WDTףp= INEԸNNPSd;O?NNMbXVBPK7?NNP+VBGB`"?UHGz?JJtVNNSS㥛i-1 tag+i word NNS bearishIN5^I VBPʡEJJ333333@NNv׿i-1 tag+i word NNP matchVBPK7ANNK7A?i+2 word vaguelyVBN?RBRi-1 tag+i word PRP$ trustedJJq= ףpVBNq= ףp?i-1 tag+i word , repairVBK7A?NNK7Ai+2 word hesitationNNPS}?5^INNP}?5^I?i+1 word pyramidsJJDl?NNPDlѿi-1 tag+i word JJ australianJJQNNPQ?i+1 word creatureJJPn?NNPPni+2 word consistVBGrh|NNrh|?i-1 tag+i word JJ poundsNNSZd;?NNZd;i-2 word residuesVBNn?JJni-1 word committee NNS333333?WDTZd;O?JJVBZ rhNNd;OVBD7A`VBNS?VBPMbP?INX9v?VBMbPVBG(\?RB(\i-1 word mistsNNˡEVBD+VB(\?i word microsystemsNNPSx&1@NNPx&1i+1 word inflateNNSn?NNn i suffix hogVBP?5^I NN?5^I ?i+1 word prospectsNNjtWDTZd;OJJT㥛 ?INZd;O?VBZM?NNS}?5^Ii word vigorousNNSd;OJJd;O?i-1 word tiltedNNPSnNNS~jt?NN~jtNNPn?i-1 tag+i word VBZ sellingNN&1VBG&1?i-1 tag+i word NN tradeNN/$?JJ/$ i pref1 rWDT#~jPOSINFxJJS(\ DTV-RPClNNHz@VBGGz@LS(\?VBNM@``VB33333@FWX9v?VBD@NNS/$@PDTClRBRDlVBPE@$MNNP{G+PRPV-JJR7A`@UHZd;VBZK7@RB!rh?JJ5^I ?CCKCDʡEMDClNNPSvSYMv/Ϳi-1 tag+i word NNP deskNNffffff?RBffffffi word diagnosticsNNPSRQ?NNS9v?NNP1Zdi word neurologistNNSKNNV-?JJZd;߿i-1 tag+i word IN deltaNNV-NNPV-?i+2 word surpriseVBNʡE?RBʡEi word documentNNףp= ?NNPS?JJoʡi+1 word water NNP|?5^?IN"~j?NNSp= ףؿVBGuVJJ`"y@NNK7A`?VBN#~jVBPK7A`RBK7Ai-1 tag+i word IN punchingVBGClNNCl?i-1 tag+i word : symbolNNPS9vNNuV@NNPi-1 tag+i word DT drivingVBG/$JJ/$?i-1 tag+i word CC englishDTFxJJGz?NNPzG?i-1 tag+i word -START- addVBh|?5?NNPh|?5i-1 tag+i word DT midnightJJV-NNV-?i-1 tag+i word NNP forecastingVBGV-NNV-?i+1 word timelyRBR?NNP i word doverNNnʿNNPn? i+1 suffix naVB!rh?VBG333333 @NN333333VBP㥛 JJ}?5^INNS$Ci+1 suffix eedVBA`"NNPSp= ף?WDTʡE@VBZSDTvVBGsh|??VBDK7A`?INZd;VBPMb?RBV-?JJRw/?NNPCl?JJtVNNx&1RBRw/VBN(\NNSq= ףp @i-1 tag+i word : treesVBZ333333NNS333333?i tag+i-2 tag CC ,VBG/$?VBNtVRBRʡEUHbX9ֿJJClDTjt?VBPRQNNS/$@CC㥛 ?JJRGzǿWDT~jtRP+VBuVPDTS㥛VBZK7?RBL@JJSFx@MDMb?VBDCl绿NNPK7A`?RBSOnCD ףp= INx?NNPS|?5^NNtV@EXKWP/$i-1 word tightNNSʡENNʡE?i-2 word friendVBy&1?NNy&1i-1 tag+i word JJ offRPL7A`?NN~jtRBOnINNbX9?i word lampoonNN#~jNNP#~j?i-2 word themesNNSA`"NNA`"? i-2 word beenJJSNbX9пJJR?5^I IN㥛 ?DTrh|NNPS?VBDtVVBPh|?5WDTS㥛?RBRuV?JJ?NNClPDTGzRBSL7A`?VBN;On@VBGv?NNSOnVB1ZdRPQRBK7A? i word payersNNS)\(?NNPS)\( i suffix RTCNN-ƿNNP-?i-1 tag+i word JJ teaNNSZd;ONNZd;O?i word expendableNNSMbJJMb? i suffix enuNNy&1?JJy&1 i word plotNNS/$NN/$?i word reachedVBD~jt@VBN rh@VBPZd;JJ333333NNSGzNNoʡi-1 word limitationsVBDV-VBN/$?NNOn i-2 word nowJJlJJS= ףp=ʿIN;On?DTzG?VBʡEͿVBNMbX9?RB-?RPQ?VBZJJRtVWDT!rhNNPSJ +NNX9v?VBDx&1RBSQRBRtV?VBPS?NNPʡENNSPn?VBGX9v?i-1 tag+i word -START- hospitalNNʡE?JJHzGWP9vi+2 word worthNNrh|?VBDJJSS?RBSSJJK7A?VBZOni-1 word askedRBV-NN rINh|?5?NNST㥛 ?i-1 tag+i word NNP crudeVBPtVNNGz?JJh|?5i-1 tag+i word VBD totalRPffffffJJffffff?i-1 word careersRBSV-?VBNV-ǿ i suffix ttaNNP~jt?NNGz?JJ7A`VBD(\i+2 word deteriorateCDL7A`NNSL7A`?VBN(\JJ(\?i-2 word forestRB(\?JJ(\ i-1 word usxNN+ηVBZS?VBQ?POSi+1 suffix ankNNPףp= @EX7A`NNJ +VBG-ֿUHmDTI +JJSQVBPDlJJx&?IN"~?NNPST㥛 @VBN rhVBDK7A@WDTZd;?NNS-?VBMRPV-i-1 tag+i word NN relatedVBNRQ?JJRQȿ i word curbedVBZnVBDn? i word plowedVBDV-VBNV-?i-1 tag+i word VBD refundsNNSףp= ?FWףp= i-1 word unusuallyJJbX9@NN)\(VBN7A`i-1 tag+i word DT wellNNS?RBMbXNNP~jti-2 word subjectsNNS-RBmINm?VBZ-?i-2 word perestrokiaVBd;O?RBd;Oi-1 tag+i word DT thousandNNQCDQ@i-1 tag+i word PRP guessVBZd;O?VBPv/RBL7A`i word workingsNNPS}?5^INNS7A`?NNK7A`i-1 word rewriteNNh|?5?JJSVBGMbi+1 word willingnessJJRQ?RBRQο i suffix kiaNNPuV?VBZd;ONNZd;Oi-1 tag+i word NN bikeVBZd;߿NNS +NNZd;?i-1 tag+i word JJ pomologicalJJn?NNnٿ i word odeonNNPSZd;ONNPZd;O?i word jetlinerNNffffff?JJffffffi-1 tag+i word RB strikingVBG/$޿JJ/$?i-1 tag+i word DT danishNNPQJJQ?i-1 tag+i word JJ serviceJJMbNNS +NNPn@i-1 tag+i word CC tornVBS㥛JJS?NNjti-1 suffix afeNNV-?NNSV-i-1 tag+i word CC rivalsVBZ7A`ҿNNS7A`? i word basedVBN"~j?VBD"~j i-2 word heckNN}?5^I?NNSffffff?UH#~jJJ'1Zi-1 tag+i word PRP$ rowNN|?5^ʿNNP|?5^?i+2 word damageVBG7A`?RBx&1?NNClӿVBDV-?JJEVBZx&?NNSx&i-1 tag+i word VBD unnecessaryVBZ~jtJJ~jt? i-1 suffix asVBZ5^I NN$C@VBDtVJJS(\VBNGz?WDTI +UH$CINrh|VB(\VBG(\PDT#~jVBP+NNSV-?NNPV-?NNPS~jt?JJx@FWV-ݿJJRSۿRB}?5^I?DTI +?CD(\?i+1 word fillyJJn?NNni-1 tag+i word JJ compactJJV-@NNV-i-1 tag+i word DT applyVBPʡE?NNʡE i-1 word soxVBZClPOSCl?i-1 tag+i word DT combinedVBN333333?JJ&1?NNClNNPv?i-1 tag+i word VBZ pastRB rh@JJ&1IN㥛 i-2 word capistranoNN/$NNP/$? i suffix 7thJJ(\@CD(\i word uninspiredJJX9v?VBDvVBNMbi word foundingNNZd;NNPh|?5VBG)\(JJMb?i-2 word revolutionNNPV-?JJMbINSi word administerVBGz?NNGzi word savviestJJSMbX9?JJMbX9i-1 tag+i word CC standVB rhVBPˡE?NNV-ݿi-1 tag+i word VB japaneseNNPRQJJRQ?i-1 tag+i word JJ aidsNNPS㥛 NNP㥛 ?i-1 tag+i word TO allowVBn?JJn i suffix GodNNPCl?NN+JJףp= i-1 tag+i word PRP$ epicenterJJR(\NN(\?i-1 tag+i word IN somebodyNN^I +?JJ^I +i word oversoldRBzGRPKNN&1JJx& @VBN;On?i+1 word occurredVBQ?VBPQ i suffix rgsNNPSM@NNSoʡ?NN㥛 NNP#~ji-1 tag+i word DT equivalentNN?5^I ?JJ?5^I i word defineNNQVBQ?i-1 word drivingNNPzGRP$C?NNzG?IN$Ci-1 tag+i word TO occasionVB㥛 ?NNP㥛 i-2 word quarterlyRBV-VBZ= ףp=NNS(\@NNPV-NNPSw/JJuV?NNClɿi+2 word boostNN?VBD"~ҿVBNX9vPRP%C?JJuV@PRP$%CVBi-1 tag+i word VBZ recountsVBZCl?JJCli+1 word bargainingJJ/$?NN/$ i word staticNNSʡEJJʡE?i word gruelingJJ!rhVBG!rh?i+1 suffix lid RBRoʡ?VBNQJJDlRBzGҿVBDQ?JJRoʡVBZ㥛 DTzG?NNP?NNjt?i+1 word hymowitzRBMNNL7A`INsh|?? i suffix exRB/$JJjt޿FWK?i+2 word healthcareNNSGz?JJGzi-1 tag+i word DT marginalJJʡE?NNʡEi+1 word shopsNNPS!rhJJZd;?NN㥛 NNPB`"? i suffix ro-NNQJJQ?i-1 tag+i word JJ cognoscentiNNS"~j?NN"~ji-1 tag+i word RB stitchedVBNHzG?VBDHzGi-1 tag+i word DT doctrineNNQ?JJQi-1 tag+i word JJ detectVBn?NNSni+1 word harshRBRX9v?JJV-ݿRBL7A` i+1 word ragJJZd;O?NNZd;Oi-1 word featuringVBGZd;O?JJZd;O i word agaNNPS"~jNN-NNPGz?i-1 tag+i word VB fairJJ!rh?NN!rhi+2 word killedNN{GzVBN)\(?JJףp= i-1 tag+i word NNS helpedVBPףp= JJy&1VBD|?5^?i-1 tag+i word IN searleNNV-NNPV-?i+1 word gimmickJJ;On?NN;Onҿi tag+i-2 tag PRP$ TO VBZx&1NNSK7ANNPK7A?NN ףp= FWRQJJSV-VBNV-?JJ ףp= ǿVB/$VBGMb`RBSV-?i word settlesVBZK7?NNSK7i-2 word dissolvingVBGMbX?JJףp= NN + i+1 word them VB!rh @JJ1Zd VBPn?VBZjt@DTFxNNSVBGHzG@NNA`ТVBDʡE@VBNGz߿RB)\(INS?NNP"~i-1 tag+i word -START- phoenixRB{GzNNPCl?NNSSi-1 tag+i word RB grabVBtVNNPtV? i-2 word work NNPDlVB|?5^?JJ +?NNCCSVBPGzNNS~jt?VBD%CPDTmͿPRPS@RBʡE?DTm?i-1 tag+i word VBZ darklyVBx&RP-RBCl?i+1 word managesNNQ?JJQ i-2 word did VBPB`"DTjt?VBT㥛Ġ"@VBG?5^I NN(\u@VBNuVNNP;On?JJMbVBD(\RBMIN(\¿i-1 tag+i word DT nearNNP$CJJMbX9 @NNZd;OIN ףp= i-2 word newsprintsVBG|?5^NN|?5^?i-1 word weekendVBG~jt?NN(\IN|?5^?WDTMbXWP!rh?RPGzNNP +?i word handilyJJx&1RBx&1? i+1 word farmNNL7A`VBG1Zd?JJˡEi+2 word allowsNNPCl?NNPSClNN(\?JJ(\i-2 word ironicallyNNSܿNNP?i-1 tag+i word -START- seaRBZd;NNV-NNP-@i+2 word lubkinVBPI +NNPI +?i-1 tag+i word CC increasingVBGʡE?NNʡEֿi-2 word depositsVB rJJ r?i-1 tag+i word NNP fiestaNNP+?VBD+i word gloomierFW$CNN?5^I RBRtV@JJ/$JJRq= ףpͿi-1 tag+i word -START- viceNNPMbX9@NNSI +ֿRB(\NNOn i word creditRBST㥛 NN$C@JJKNNP%C?NNSV-i-1 tag+i word JJ notificationNN/$?JJ/$i-1 tag+i word PRP allVB1ZdRB&1ҿDTjt?PDTʡE?i-1 tag+i word NNS offsetVBP"~jVBN"~j?i-1 tag+i word CC tracedPRPʡEVBDʡE? i+2 word wppNN rhNNP rh?i-1 tag+i word VB considerablyNNtVֿRBtV?i-1 tag+i word IN soybeansVBZZd;NNSZd;?i-1 tag+i word VBG lighterJJRMb?NNRQRBR-i-1 tag+i word VBP vintageNNMb`JJMb`?i-1 tag+i word NNS regardedVBNI +?VBDI +i word literallyVBPnRBn?i-1 suffix umeRBQNNT㥛 VBDK7A`?VBN)\(?JJ rINl?DTjtVBGp= ף@i word retroactiveNNRQVBZV-JJM?i-1 tag+i word VBZ suzanneJJ\(\߿NNP\(\?i+1 word monopoliesNNI +?NNPI +i-1 tag+i word NNP thinkVBtV?VBPtVi-2 word contrastJJ1ZdNNw/VBP(\? i+2 word rep.NN7A`?VBN/$?JJl¿NNPEi-2 word engelkenJJ(\ݿNNS?CDK߿DTRQ?RBFxѿ i+2 word dullINS?VBSRBRT㥛 ?JJRT㥛 i-1 tag+i word VBD fartherRBRMb?RBMbi-1 tag+i word RB agreeNNS+IN(\VBZ~jtVBK7A?VBP(\? i+2 word riotRBS㥛INS㥛?i-1 tag+i word VBZ movedVBNbX9?JJbX9i-1 tag+i word DT feministJJuVNN(\µNNP"~j? i-1 tag VB!NNPSDl?JJR(\@$RQTOy&1?RBS㥫CDX9v?EXV-ͿNNPoʡ@CC~jtPOSOn?NNSQ?PDTQӿFWMbX?RBRK7?JJSK7?PRP$JJq= ףp?WRBv?INzG?UHx&?VBPˡE WDTZd;VBZ(\NNd;O?RBSffffffƿVBGp= ףVBD"WPjt?DToʡ?RP"~j@VBNL7A`尿PRPx?VB= ףp=i-1 tag+i word DT vestJJSSNNS?i-1 tag+i word NN acceleratedVBN&1?VBD&1ʿ i word elderJJR rh?NN rhi word ailmentNNd;O?RBd;Oi+1 word alikeVBZ~jtNNS~jt?i-1 tag+i word VBG countingVBG~jtNN7A`@JJGz i word seatsNNSm @NNClNNPSDli+1 word judicialJJR7A`?RBR7A`i-1 tag+i word NNP packageNN/$?JJ/$տi-1 tag+i word ( stonesJJ5^I NNS5^I ? i-2 word saveNN(\?JJ(\пi-1 tag+i word CC bearsVBZy&1ԿNNSy&1?i-1 tag+i word CC drunkVBZ|?5^ڿJJ^I +?NNx&i-1 tag+i word NN plainJJ/$NN/$?i-1 tag+i word NNP assetsNNPS1Zd?NNP1Zd i pref1 0CDy&1@NNSMbJJGzNNPli-1 tag+i word DT severeJJ)\(?NN(\RBd;Oi-1 tag+i word NN visFWʡE?INʡE i word spateNNS?JJSi word addictedVBNV-?JJV- i word motsNNSnFWn?i word repercussionsNNSI +?NNI +i+1 word conglomerateVBG㥛 JJ`"?NNRQؿNNPOni-1 tag+i word VBN sampleNN!rh?JJ!rhi-1 tag+i word JJS attributeNNZd;O?RBZd;O߿ i+1 word ecJJRm@JJmVBZ%CNNK7A`NNSm?i-1 tag+i word RB backVB +RPDl?RB|?5^?NN#~j?VBN/$JJV-i-1 word virtuesVBNS?NNT㥛 VBDGzi-1 word securityNNSOn?VBZd;VBGMbX?NN{Gz@VBD ףp= JJ{GzINDlVBZOni-1 tag+i word IN markedJJ rh?VBDMbX9VBNEȿi-2 word spiegelCD#~jVBNʡEݿJJB`"?i-1 tag+i word RBS bitterlyRBd;O?JJd;Oi-1 tag+i word CC deereJJsh|?NNPsh|??i-1 tag+i word VBD meantVBNV-?JJV-i+1 word factoriesVBQ?VBGV-?NNJ +JJRX9v?RBRX9vJJ~jtNNPq= ףpi-1 tag+i word VBZ covertVBPT㥛 JJT㥛 ?i word prohibitVBD#~jVBP#~j?i-1 tag+i word IN overbreadthNNS'1ZNN'1Z?i+2 word goodyearVB%CVBP%C? i+1 word annJJ5^I NNP5^I ?i-1 tag+i word NNP handedVBNQѿVBDQ? i word spineNN!rh?JJ!rhܿi-2 word steadyRB$CINoʡ@NNPNN+VBDQ?VBNQEX+?i word knowledgeableJJHzG?NNHzGi-2 word accordingNNPS/$?NNp= ף@JJ/$@NNSjtNNP+?VBZd;i-1 tag+i word , loweredVBDNbX9?VBSVBN(\i-2 word wavelengthsJJOn?RBOni word targetingVBGd;O@NNd;Oi-1 tag+i word RB mixedVBNxJJx? i+2 word holyJJSK7A`NN&1?JJZd;Oi-2 word apartheidVBD/$@VB/$VBPV-NNPK7A`i+1 suffix ledRBR;On?VBuV?NNPS(\?JJ+JJSp= ףWDT$C@RBuV@DTT㥛 CDʡEVBGʡEݿNNRQ @VBNA`"VBPQPRP$ +NNS@POSEпNNPffffff?VBD?5^I RBSʡE@INQ VBZˡE i word highsJJxNN333333 NNS(\u@ i+2 word s.c.NNPCl?CDCli-1 tag+i word DT macintoshNNGz߿NNPGz? i word zaitaVBZ#~jVBFxNNP#~j@ i word rawVBP rhJJ$@NNjtVBDZd;i tag+i-2 tag PRP WRBVBuV?NNPSQVBDJ +?VBNHzGVBP}?5^IRBV-?VBZjtDT1Zd? i-1 word nov.CD\(\?JJZd;OտNNPNbX9i-1 tag+i word VBD discoveredVBN rh?JJ rhi-1 word consensusNNPST㥛 ?NNףp= ÿVBPw/ԿRBbX9?VBZGz?NNSx&NNPoʡi-1 tag+i word DT hemisphereNNDl?JJCl׿RB rhi word completelyVBS㥛RBv @JJxi-1 tag+i word NN readsVBZ}?5^I?NNS}?5^Ii-1 tag+i word DT mailNN|?5^?NNS|?5^ڿi-2 word womenVBP/$JJX9v?INw/?VBV-?VBG?5^I ?RBSNN?5^I ڿVBNZd;i-1 tag+i word VBZ tighterJJRGz?NNGzi+1 suffix oniVBZ)\(?NNP/$?NN)\(VBD/$i word modeledVBNV-?VBDV-i-1 word writtenINx&NNSffffffNNPK7A`?RPx&?JJp= ףؿi-1 word moderateNNPSˡE?JJ+NNQ?NNPX9v?%i-1 tag+i word -START- collateralizedNNPh|?5?JJh|?5i+2 word burnsVBNSIN$C?DT$CNNPDl?VBT㥛 NN(\?i-1 tag+i word RB suggestsVBZ/$?JJS/$i-2 word ariseJJ+?NN+i-2 word urban VBG~jt?RBS?RBRRQVBPZd;O?VBZ+DT~jtNNS+?VBZd;ONN~jtWDTK7?JJtVINB`" i suffix afe NNOnVBD$CJJZd;@NNS{GzRBQFWS㥛VBN#~jVBP}?5^I?NNPtV? i+1 word vuRBSV-NNS@JJ+i-1 tag+i word , rememberVBDl?VBZDli+1 suffix tlyVBDQVBPZd;?VBZGz@VBI +NNPSbX9WPS㥛?RPM?NNV-PRPRQ?NNP{GzRBSx&1?JJRGzVBNI +?WDTףp= @DT^I +?RBl@NNS|?5^?CD-INGz.JJSMbX9ԿPRP$RQVBG-?JJ~jtRBR(\u@i+1 suffix salRBR rhINNbX9?POS9v?NNP{GzWDTNbX9NN/$?VBD(\?RBjtԿDT#~j?JJZd;OVBNNbX9?VBZ9vJJR rh?NNSL7A`i-1 word significantVBG+JJCl@NNMbi-2 word drillingVBZRQJJ?NN~jtRB;Oni word thatcherismNN(\NNP(\?i+2 word socketJJzG?NNzGi-2 word flavorVBD/$VBN/$?i-1 tag+i word POS arcticJJbX9NNPbX9?i+2 word reflectJJGz?NNGzVB-?VBP-i-1 suffix uarINSۿNNS5^I NNP"~jRB= ףp=WDTx&1?JJV-?i-2 word turnsVBGV-VBX9vNN(\?INI +?DTI +i-1 tag+i word -START- amdahlNNI +NNPI +?i-2 word remainsVBN!rhRB r?NNS!rhܿJJPnNNDl?JJSQi-1 tag+i word NNS seekVBPK?VBKi-1 tag+i word `` perfectJJK7AؿNNPx&1?VBKVBP(\i-1 tag+i word IN timingVBG~jtNN~jt?i-1 tag+i word DT cornfieldNN r?JJ ri-2 word charlatansNNB`"?JJB`"i+2 word displaysNNL7A`?JJL7A`i word persuadesVBZd;O?NNSHzGѿINʡEi-1 tag+i word JJS wantVBP ףp= ?JJ ףp= i-1 tag+i word , buckleVB(\?VBD(\i word volatilityNNX9v?NNPX9vi-1 word plightsIN rhWDT rh?i word clinicalJJ|?5^@VBNKNNJ +i-1 tag+i word PRP$ assignmentNN333333?JJ333333 i suffix nly VBNT㥛 RBV4@IN(\VBZClVB"~j RPClVBDZd;PDT ףp= VBPV-NNS- NNPHzGJJ-@NN}?5^i-1 tag+i word DT scriptNNS"~jNNFx@JJ/$i-1 suffix hotRB(\?IN$CVBZmNNS5^I ?RPjtNNCl?i-1 tag+i word CD easternJJ9v@NNP9vi-1 tag+i word TO useVBL7A`@NNmNNPV-i-1 word rankingNNPS{GzNNOnJJh|?5RBA`"?NNP333333@i-1 tag+i word DT scenariosVBP/$NNS/$? i suffix zerVBPV-ݿJJ|?5^INPnNNS+NNP/$?NN@i-2 word imperativeVBGz?JJGzο i suffix rer VBNsh|?VBZ/$NNP+η?NNPS$CFWMbNN(\@JJRjt!@VBPMbX9ԿJJ$C NNSQ VB9vRB1Zdi word surfaceVBX9v?VBP+?NN/$?JJX9vi-1 tag+i word NN tracksVBZS㥛пVBP9vNNS5^I ?i word holdingVBG㥛 0@JJHzGNNnNNP?i+1 word truckRBRFxNNMbX9JJRFx?JJMbX9@i-2 word thoughNNSV-VBPn?NN/$ſVBDClJJSDTK7?NNP/$VBNx?VBPOn?PRPMbX?VBZ+ǿRB㥛 ?INnUH"~i+2 word settlementJJy&1?WPףp= ?NNPtVVBGZd;?NNOnÿVBD-@VBN-i word raisingVB-VBG$C @JJ9vNNK7A`NNPJ +?i+2 word belgiumNNP`"@VBPV-NNSI +NNPSq= ףpi-1 tag+i word VBP adultsNNSX9v?VBNX9vi-1 tag+i word CC faceVBS?NNSi-1 tag+i word NNS keepVB9v?VBP9vi word manufacturedVBDsh|??VBPMVBNy&1JJM?i+2 word longerVBZ ףp= ?NNSZd;ONNPSm?RBɿNNCl?VBN%CJJR/$?JJK7A i+1 suffix us JJKNNP?5^I RPA`"ۿRB"~NN/$VBDx&@CCnVBN'1ZVBI +@VBPK7@IN= ףp=?VBZB`"?i-1 tag+i word DT artisticJJbX9?NNbX9i-1 tag+i word JJR fleetNNE?JJEi-1 tag+i word IN lowerNNSV-JJRS?RBRGzi-1 tag+i word -START- whenWRB|?5^@JJ9vNNPCli-1 tag+i word RB benchmarkNNK7A`?JJK7A`i-1 word lindseyNNʡENNPʡE?i+2 word manufacturerJJ|?5^?RBQ?NNjtNNPmi-1 tag+i word VBN onceRBv/INv/? i word fateRBףp= JJʡENNV-@i-2 word glanceNN/$@VBNxJJʡEi-1 word soundingsVBNS㥛VBDS㥛? i+2 word pymmVBN+VBD+?i-1 tag+i word VBD madeNNS ףp= VBN ףp= ?i+2 word buyersVB9vVBG1Zd?RB9v?NN1ZdVBNl?VBP`"JJ5^I ?i-1 word disasterVBGtVNNPSsh|?NNS5^I @NNK7A?NNP%Ci-2 word drawsNNS5^I NNK7A`?JJʡEi-1 tag+i word PRP jumpsNN rhVBD9vҿVBZq= ףp? i word tokyuDTˡENNPK7?VBNZd;OͿNN}?5^I̿CD5^I  i word vowingVBG)\(?NN)\(ܿi word afflictsVBZh|?5?NNSh|?5i-1 word stunningNNS$CNN$C?i+1 word credentialsNNCl?JJCli-1 tag+i word NNS kidnapNNS(\VB(\?i-1 tag+i word , decidedVBDm?VBNuVRBd;Oi-2 word pollsVBNQJJQ? i+1 word pubNNPoʡտJJoʡ?i-1 tag+i word VBZ herbicidesNNSS?PRPSi-1 word publishesRP~jtȿIN~jt?i-1 tag+i word NN oakNNx&1?JJx&1i+2 word roboticNNSK7NNK7?i word reputedVBN/$JJ/$?i-1 word announcedRB ףp= ?NNoʡ?WPw/RBR(\VBN%CWDT(\?JJE?IN!rh?i-2 word obstaclesVBxJJx?i word contractedVBNFxJJV-VBDm?i-2 word providerNNffffff?JJffffffi-1 tag+i word PRP spyVBD= ףp=VB= ףp=?i+2 word relationVBNK7AJJK7A?i-1 suffix orcVBZI +POSI +?i-1 tag+i word VBN tillJJV-INzG?RPtVοi-1 tag+i word VB feedJJR?5^I NNM?VBN= ףp=ʿ i+2 word nealVBZq= ףpNNPS/$NNPCl@i word unspentJJZd;?NNPZd;i-1 tag+i word NNP sectionNN+?NNP+ i-1 word eveJJtVNNtV?i-2 word separatelyJJQſNNPV-?VBV-NNQ?i word waivingVBG= ףp=?JJ= ףp=i-2 word birdcageNNS)\(?NN)\(i+1 word daughterJJ~jt?PRP$rh|?PRPrh|NN~jtؿi tag+i-2 tag ) POSVBZX9vNNS(\?NN!rh?i-2 word leaderVBT㥛 @VBGˡENNJ +VBD333333?VBNClCDS?JJ\(\׿NNS`"i-1 word faultlessVBGNN?i word shortstopNNK7A?RBK7Aпi-1 tag+i word CC cohensNNPSx?NNPxi-1 word directVBGZd;ONNS^I +׿NN(\@JJ1ZdNNPGzi word turbinesNNClNNSCl?i-2 word instance WDT~jt?INvNNS/$?VBNEؿVBD`"޿JJCl?VBZZd;NNPX9v?NNX9vϿi-1 word franklinNNPSCl?JJ+ǿNNP rh#i-1 tag+i word WP predict\/advocateVB/$ӿVBP/$?i-1 word leveledRPʡE?RBʡE i word sleepVBP333333?NNn?JJnڿNNPZd;RB^I + i word joinedVBD~jt@VBNL7A`пJJ㥛 i word excludingNNPZd;߿VBGzG?NN|?5^JJ"~ji+2 word chosenJJ)\(@RBSʡEVBN#~jNNS㥛ؿVBD rhi-1 tag+i word , compilesVBZy&1?NNSy&1i-1 tag+i word POS plannedJJV-NNP ףp= VBNS㥛?i word chevroletNNPSjtNNZd;ONNP rh?i word robertsNNPCl?NNPSnNNSJ +i-1 tag+i word , airborneJJʡE@NNS+UH`"NN/$i-1 tag+i word NNP pullsVBZE?NNSlJJS i suffix AgeRB+NNP+?i+2 word distressNN-@NNP-i tag+i-2 tag PRP )VBZ1Zd?POS1Zdӿi-2 word rocketVBNQ?VBDQ i+1 word tankVBPNbX9EX7A`NN(\?i+1 suffix godWDT+DTnѿIN'1Z?VBGQNNPQ@i-2 word pinpointNNMbX9JJMbX9?i-1 tag+i word RB foundVBNx&1?VBDףp= ?VBZA`"VBMbi-1 tag+i word `` solventJJ(\?NN(\i word welcomeNNP(\VBMbX?NN'1ZVBNPnVBPq= ףpJJ㥛 @NNSvi-1 tag+i word VBP liberalJJHzG?NNPHzGi+1 suffix wdsVBZClRBRK7A?RB;On¿i-1 tag+i word DT bpcNNPV-?NNPSV-ҿi word entertainmentNNPSZd;NNp= ףNNPK7A?i+2 word lockingVBGw/?NNw/i+1 suffix alf VBmNN+VBDm?IN\(\?DTV-RBB`"?JJv?VBZQ?NNS"~NNPL7A`i-1 tag+i word -START- expensesNNPSNNS?i-1 tag+i word CC hewedVBNA`"NN;OnVBDT㥛 ? i word exxonNNPSZd;ONNffffffֿNNPK7A?i-1 tag+i word TO fleasVB(\NNS(\?i-1 tag+i word VBN exportNNbX9?JJbX9 i-2 word test NNSZd;?NNPZd;VB|?5^ٿJJrh|NN ףp= ?VBDtV޿VBNtV?VBP|?5^?RBL7A`?i-1 tag+i word NN rulingVBG|?5^NN|?5^?i-1 tag+i word : crunchNNClǿNNP +JJ~jtVB(\@JJR|?5^i-1 tag+i word VB forcedJJ)\(VBN)\(?i-1 tag+i word IN yamataneJJS˿NNPS?i-1 tag+i word RB lostVBN{GzVBD{Gz?i word jeanetteNNMbXѿNNPMbX?i+1 suffix ots DT|?5^ɿNNPS"~VBGjt@JJK7A@IN|?5^?FWoʡ?NNS|?5^NNPFx?VBClRBffffffNNOnVBDCli-1 tag+i word POS classyJJ+?NN+ i+2 word show VBGoʡ?RBSVBDjt?VBNKCD#~jĿIN1Zd@NNS5^I ˿NNP5^I NNPSx?NNNbX9пVBP333333?JJ rhVBZsh|??i-1 tag+i word NN liesVBZ@NNSL7A`ؿNNh|?5RB%Ci-1 tag+i word VBG republicanNNOnNNPOn?i+1 word cubicNN^I +CD^I +?i-1 word disproveINOn?DTOni+1 word gendarmeJJ~jt?NN~jti+1 word accountedIN-WDT-?NNPʡEVBGMbX9NNZd;?i-1 tag+i word JJ richerJJRl?NNli+2 word several RPx&NN(\RBx&@VBZtV?VBGSNNPʡE?JJKVBD+VBN+?CDtV?VBPENNSJ +?i+1 word opinionVBG|?5^JJ9v@NNMRB?5^I IN?5^I ?NNSQi-1 word functionRBIN?i-1 tag+i word NN consistsVBZ;On@NNS;Oni-1 tag+i word VBP cutVB333333VBNCl?NNClVBD333333?i word missionNNn?JJMbXNNP-?i+1 word merksamerVBG$C?JJ$C i suffix TESNNPSE?NNSZd;O@JJZd;NNMbNNPGz i-1 word meatNNPSzG?VBD?5^I ?VBN?5^I VBP/$?JJ/$NNPzGi word degeneratedVBNV-VBDV-?i+2 word startedNNCl?RBCli-1 tag+i word JJ arabJJףp= ?NNPףp= i-1 word caisseFWNbX9IN\(\?NNPsh|? i+2 word lowsJJB`"?RBʡEIN&1 i suffix gapRBnNNK7 @NNSClJJMbXi+1 word shelfRB(\JJ(\?i+1 word corporate JJh|?5@JJRzG?VBPSRBʡEVBG +?NNS"~RP r?NNq= ףpRBR+VBQ?i-1 tag+i word NNS developedVBPKVBDK? i suffix ras FW-@VBNh|?5ֿPRP!rhRB'1ZNNS+w@NNP1ZdNNPS rh@JJ/$NNV-i-1 tag+i word VB placeRB㥛 NN㥛 ?i+2 word inventoryRBCl?VBNd;O?JJd;OINCli-2 word writingsVBNx&?VBDx&ѿ i-1 word hasVBD"~jNNSS?RBRx&WDTT㥛 VBjt?VBGClNNx?WPX9vVBZ~jt?RBuV?VBP/$RPS?NNPK7JJRA`"@PDTd;OVBNʡE!@JJ'1ZINʡEDT r?CD1Zd?i-1 word psychologicalVBGV-NNV-@i-1 word justiceNNPSFxѿNNPFx?i+1 word bridgesNN rhJJ ףp= ߿VBGX9v? i word hitchNNS+NN+?i-1 tag+i word RB patronizingVBGPn?JJPni-1 tag+i word DT squabblingVBG%CNN%C?i word hasidicJJCl?NNPCl!i-1 tag+i word -START- mechanizedJJX9v?RB/$NNP!rhܿi word undercurrentNNDl?JJDli word divorceNN(\?JJ(\i+1 word providersJJGz?NNPGz i-1 word boys'' rhPOS rh?i-1 tag+i word JJ cheaperRBR rh?NN rhi-1 word cuttingVBԿVBG'1ZRB#~jNNx?JJjtRPA`"?NNSli-1 tag+i word VBG techniqueNN= ףp=?RB= ףp=i-1 tag+i word NN incorporatedVBNCl?VBDCli-1 tag+i word TO futureJJT㥛 ?VBT㥛 i-2 word filingJJI +?NN(\ؿNNP ףp= ׿VBDQVBNx&1?i-1 word poredRPClӿINCl? i word wreckNN(\?WP(\i-2 word animalsJJHzG?NNHzGi-1 word downsizingVBZDl?NNSMbXٿJJ- i-2 word slowVBGS?NN(\?JJZd;ONNPʡEi+2 word finnishJJV-INT㥛 NNx&?i+2 word czechRPQ?INQi-2 word unfoldsNNK?JJKi-2 word strategistsNNSy&1?RPmRBSNNy&1INʡE@ i+1 word opecJJ ףp= ߿NNP ףp= ?i word specifiedJJVBNI +@NNnٿVBDS㥛i-1 tag+i word RB helpVB}?5^I?NN}?5^IԿi-1 tag+i word IN caterpillarJJsh|?NNPsh|??i-1 tag+i word NN worriesVBZp= ףNNSp= ף?i word tradedistortingJJx?NNxi-1 suffix net INzGNNSMbX9?NNRQ@VBNq= ףp?CD#~jԿNNPQVBG㥛 ?JJq= ףpVBZMbX9i-1 tag+i word NNS seldomRB\(\?VBP\(\߿ i+1 suffix e.VBN5^I ?JJx&1VBD rhNNPsh|??INd;Oi-1 tag+i word VBP ceaselesslyVBP+RB+?i-1 suffix antVBZ= ףp=?NNS&1?VBQJJS?NN rh?VBNq= ףp?VBPZd;WDTx?JJRX9v?VBG%C̿RBˡEPOSX9v?CDFxNNPS+VBD~jt@DTQNNPK7APRPX9vοIN"~?i+1 word eclecticRBR-?JJR-i+1 word designeesNNPS +NNp= ףؿNNP rh?i-1 tag+i word DT growerJJR~jtпNN~jt?i-1 tag+i word JJ knightVBNw/NNw/? i-1 tag RBRJJPn@JJRSRBn@VBZMbX?VBMbPVBNʡEINV-?NNPQֿNNQֿFWV-?VBD/$VBPK7?CDnNNSClɿNNPSףp= ?VBG\(\i-1 tag+i word VBZ scriptsNNS!rh?NN!rh i suffix uelNNSˡENNP/$?VB)\(̿RB'1ZNNRQ@VBDd;OVBP'1ZJJQ? i-1 word tabRBK7?NN|?5^JJNbX9i-1 tag+i word NN stretchingVBGuV?NNuVi-2 word piecesNNףp= ۿNNS\(\?JJ+RBSÿi-2 word portfoliosVBDSVBPS?i-1 tag+i word RB inclinedVBN rhJJ rh?i-1 tag+i word NN reportsVBZ-ֿNNPSPn?NNSffffff?RBV-i-1 tag+i word NNS formVB rпVBP r?i-1 tag+i word NNS cfcsVBPzGNNSzG? i word eniJJ'1ZNNP'1Z?i tag+i-2 tag CC VBVBD"~?RBR rhCD%C?JJRZd;O?NNPX9v?VBGK7AVBNZd;VBPjt@IN)\(?NNS㥛VB-'@RB+JJ;OnVBZ&1?NNSv i word tankVBPV-VBN%CNN333333@JJ= ףp=VBD333333ۿi-1 suffix eudNNPp= ףNNPSp= ף?i-1 tag+i word JJ horseNNRQ?JJRxJJ|?5^i word pharmaceuticalsNNPSK7A?NNS"~NNP)\(i+1 word directsNNI +?JJI +i-1 tag+i word VBD wildlyRBDl?JJDli-1 tag+i word WP metVBZI +VBPT㥛 VBDS?i+2 word defectionsVBN1ZdVBD1Zd?i-1 word scheduledRB!rh?NN!rhi-1 tag+i word VBD aboardNNNbX9IN(\?JJh|?5 i suffix hes VBNZd;PRP)\(RB~jtIN5^I VBZK7 @DTV-VBDJJX9v NNGz.VBPV-NNSF8+@NNPDl?VBʡE i suffix EWSNNd;OοNNPd;O?i+1 word aberrationJJ +?NN +i-1 tag+i word NNP marksFW$CNNSd;O?NNPSi-1 tag+i word JJ ticketNNDl?NNSDl i suffix 2-3JJbX9CDbX9?i-1 word dividendRB(\VBDuVտJJˡE?VBNuV?NNMbP i word sumJJR"~jJJ{GzNNuV?i-1 word superconductorNNK?RBKi-1 tag+i word NNP rapidsNNPSzGʿNNPzG?i-1 tag+i word ( rememberNNPmVBZffffffVB&1?i-1 tag+i word JJ kanjiNNffffffFWffffff?i-1 suffix ctsCCv/RBRV-ǿWDTZd;O?VBZ㥛 ҿNNS-VBGMbX9ĿJJ(\?VBPl?WPʡEֿVBDпPDT$C?VBN9v@DTQ?VBK7NNRBQ?INjtNNPx&1? i word parNN(\?CDV-JJV-?INZd;?NNSZd;VBKRB1Zdi-2 word searchingNNSX9v?JJX9v i word bid VBNp= ף@RB%CVBZMbXVB㥛 ?JJ)\(NNw/ @VBD-?CDZd;VBPffffff?NNSNbX9NNPZd; i suffix ilkJJy&1NN(\@FWT㥛 пRBV-NNSZd;ONNP|?5^i+2 word guaranteeVB/$VBP/$?i+2 word puckishNN%CJJ%C?i-2 word major VBoʡVBGm@VBDS㥛?VBPCl?NNS{GzNNPtV?MDMbNNuVͿVBNʡE@RB{Gz?VBZRQJJ^I +i-1 tag+i word VB boundVBNDl?NNDlٿi-1 tag+i word IN pessimisticNNS㥛JJS㥛? i-1 tag+i word NNP beneficiariesNNSE?NNE i suffix omiNNbX9NNPbX9?i-1 tag+i word JJ goldJJsh|?NNP rh?NN!rh?i-1 tag+i word NNP residentialVBGV-JJV-?i-1 tag+i word DT narrowingVBGy&1?JJy&1i-1 tag+i word DT limpidJJMb?NNMbi+2 word persistNNzG?JJzGi word publishedJJZd;VBDMbX9VBNL@NN%CNNP+i-1 tag+i word PRP$ mammalianJJK7A`?NNK7A`i-1 tag+i word TO toppleVBʡE?JJMbXNNQտi-1 tag+i word CC redesignVB?NNi+1 word hitterNNQ?JJRoʡJJbX9?VBNq= ףpi tag+i-2 tag VBZ NNSRP\(\JJ"~j?DTZd;?VBGMbX?NNSCl?JJR7A`@FW= ףp=VBN/$VBPA`"INQ@RB= ףp=CCvVBZClVB&1NNy&1|VBDjtԿRBRv/?i+2 word pitchersNNSQտNNQ? i suffix gitJJV-?NNV- i-1 word artVBZ%CNNS%C?NNCl?RBCli-1 tag+i word NN useNNPn?VBPPn i word duoNNSw/NNw/?i-1 tag+i word DT bahamasNNPSV-@NNV-NNPʡEi-1 tag+i word NN bargainsNNSjt?VBZjt i+1 word cellNNL7A`?VB= ףp=JJ㥛 ?i-1 tag+i word , bigJJSNNPS?i+1 suffix ookINVBZK7DTQ?NNPp= ףWDT +?UHI +NNSM?PRPX9v?JJR5^I RBuVPRP$ˡEĿJJ rh?NNQ޿POS'1Z?VBNS㥛?i-1 word polishNNp= ףNNPp= ף?i-1 tag+i word NN redemptionsNNSGz?NNGzi+1 word underwearNNOn?JJOnӿi word cheatingVBG%CNN%C?i-1 tag+i word RB elaborateVBnJJA`"@NNB`"ٿi-1 tag+i word NN disksVBZQNNSQ? i+1 word ratJJ#~j?NNP#~ji-1 tag+i word NN accruedVBNˡE?VBDˡEi-1 tag+i word NN showsVBZGz޿NNS%C?NN?5^I i-1 tag+i word RBR copyNN= ףp=?JJ= ףp= i-1 word jackNNS%CNNP%C?i word feministsNNSK?NNI +VB%CԿi-2 word boxesVBGv/?NNPS?NNSJJ+?NN"~i-2 word setbackJJR/$?RBR/$޿i+2 word mccawJJV-ҿVBNGz?NNˡEi-1 tag+i word IN giltsNNS|?5^?NN|?5^ i suffix kkaFWPn?NNSɿNNT㥛 NNP"~i-1 word strengtheningRBJ +?INJ +i+2 word montedisonJJOn?NNCl?VBDFxi+1 word flexibilityVBS㥛VBGHzG?NNMbRBR+߿JJR+?JJw/?i-2 word leagueJJSCl?NNPS㥛 VBG +?JJ~jtNNPZd;O i+2 word eyesVBZy&1?VBNbX9VBP/$?NNSy&1NNL7A`?i-1 word paperVBPVBZw/?NNSB`"?VBnNNK7VBD|?5^VBNA`"?i-1 tag+i word DT immediateJJ}?5^I@NN}?5^I i word nikkoNNV-NNPV-? i suffix moNNp= ף?JJp= ףi-1 suffix tiaVBD-?JJ- i word appear NNSVBPCl{@IN#~jVBZ1ZdVB@RBjtVBD~jtRBR|?5^JJT㥛 i-1 tag+i word NN cleanupNNSI +ƿNNI +?i-1 tag+i word NNS meetVBd;O?NNd;Oi+1 word plungeJJ/$ @NNSNNP?5^I CDd;Oi+2 word proposed NNS?NNPA`"?RPV-?VBDS?JJSA`"VBN ףp= JJnVBZ5^I NNVBP$Cӿ i+1 word hard VBDDl?VBNMb?RBʡE@IN"~NNS}?5^I̿VBbX9?JJ7A`?VBP9vNNMbXWP9vi tag+i-2 tag NN MDVB?5^I ?NNZd;ORBT㥛 ?JJEJJRffffffi-1 tag+i word `` betterRBMbJJR-?NNClRBRMb?i-2 word slicingVBNw/NNw/?i-2 word brickNN9vRBd;OοINFx?JJ+ i-2 word markRP\(\RB ףp= IN\(\@ i suffix ERSNNSZd;OM!@NNPlqNNPSy&1 @NNp= ףJJR\(\JJJ +WPx& i-1 word tagNN+?VBD+i+2 word solarJJV-VBNV-?RBOnۿINOn?i-2 word leftistVB`"NN`"? i+2 word akzoVBZV-?NNSsh|?VBoʡRB"~jNNX9vCDh|?5@JJMbX?i+1 word warrenNNV-NNPV-? i suffix binNNP~jt?NNPSFxѿVBDQi-1 tag+i word VBD occupiesVBZQ?NNS"~JJjtԿi-1 word throwingRP?RBi word prohibitedVBN(\?JJ(\ i-1 word onRB-NNPMb`PRP$ +VBGS㥛VBDV-VBPV-VBZ+DTZd;?PDTˡE?UHZd;O׿CCl?CDnJJRy&1NNQ?FWClPRPzG?RBRʡEINx&1?NNPSʡE?JJSNbX9?VBN-WDTK7A`@JJZd;O?WP ףp= NNSX9v?MD$Ci+1 word scapegoatingNN^I +?JJ^I +i-1 tag+i word DT titleNN&1?JJ&1i word vancouverNNPSffffffƿNNPffffff?i+1 suffix uleVBGlNN?VBDMbVBN/$JJ r?NNPoʡi-2 word hillsVBN|?5^JJE?NNPEؿVBD|?5^?i-1 tag+i word NNP ricaNNPSJ +JJMbNNP#~j?i-1 word declinersVBPS㥛CDS㥛?i-2 word coveredVBD +VBZ +?NNSX9vֿJJT㥛 ?NNPni-1 tag+i word CC serveVBZd;VBP{Gz@VBDV-i-2 word alternativelyDTjtWDTjt?i word organizationNNPuV?NNuVi+2 word dennyVB9v?VBN9vi-1 tag+i word WDT appreciatedVBNvVBDv?i-1 tag+i word VBP confusingVBG"~?JJ"~ i word p53RBh|?5NNPn@VBNq= ףpտCD333333?JJK7IN= ףp=NNSh|?5i+2 word gressetteJJ9v?CD9vʿi word creepiestJJSffffff?NNffffffi-1 tag+i word WP enjoyVBZZd;OVBPM?VBDuVi word doctoringVBGSNNS?i-1 tag+i word NN clearJJ5^I ?NNʡERBT㥛 ؿi-2 word sidleyNNrh|VBGrh|?i-1 tag+i word , yetCC/$ @RB/$ i+1 word complicatedJJR/$NNP rؿNNPSx&1?NNSV-߿RBR/$? i word albertNNRQNNPCl?VBNrh|i-1 tag+i word JJ caesarsNNPS'1ZԿNNP'1Z?i word signatureVBPnؿNN&1?JJ+ i word chivasNNPSA`"NNSZd;OJJ'1ZNNPS @DTZd;Oi-1 tag+i word PRP ownJJ1Zd?VBPS㥛пRPjt޿i-1 tag+i word JJ castleNNSB`"NNB`"?i+1 word holligerNN+NNP+?i+1 word mainstreamRBRGz?JJRGz i suffix UweNNP\(\?JJ\(\i-1 tag+i word WDT consistsVBZB`"?NNB`"i+2 word bouncesVBPK7A`NNףp= ?IN+i-1 tag+i word NNP acknowledgeVBP(\?VBD(\i-1 tag+i word CC leadingVBGtV?JJtVi-1 tag+i word IN seasonalJJM?NNMi+2 word bemoaningNNK7A@JJK7Ai-1 word equitiesVBNQVBDQ?i-1 tag+i word DT interestrateNN/$?JJ/$i-1 tag+i word CC profitVBoʡNNoʡ?i+2 word literaryVBPx&NNx&?i-1 tag+i word CC clandestineVB|?5^JJQ?NN;Oni-1 tag+i word JJ videotapesNNvNNSv?i-1 tag+i word VBG continuedJJRˡENNxVBDK7ٿJJ-?VBN= ףp=?i-1 tag+i word TO unveilVB%C?JJ%CԿi-1 tag+i word -START- boeingVBGrh|NNq= ףpͿNNP +?i-1 word equityVBG#~j?WDTʡENNʡE?JJMbXINʡE? i suffix ADENNPSRQNNQ?NNPQi-1 tag+i word CC limitationsNNPSjt?NNSMbXNNP +i+1 word allergicVBZ r?NNS ri-1 tag+i word JJ betterJJR)\(?NNʡERBRʡE?RB)\(i+2 word climateRBV-?PDT7A`?JJ +i+1 word phenomenonNNS?JJuVݿNNPMbi-2 word miningVBG~jtNN~jt?VBD|?5^VBN|?5^?JJMbX?NNPMbXi-1 tag+i word POS investorsNNPSK?NNSSJJSNNP-? i suffix axoNN7A`NNP7A`?i+1 word chantedNNS1Zd?RB1Zdi+1 suffix irtPRP$V-?PRPV-i-1 tag+i word , laptopNNHzG?JJHzGi+2 word impulsesVBP(\?VBNSJJ(\VBDS?i-1 tag+i word JJ plannedVBNlJJS˿NNPB`"?i-2 word corp.VBG|?5^@DT(\?CDCl?VBS㥛RPd;OVBPDlINGzVBZZd;OͿJJ7A`?RBR= ףp=?WDTףp= RBx@NNS{GztNNPS?NNPS-NN/$?VBDDlCC^I +VBNffffffƿ i+1 word tax VBGuV?JJMb?NNbX9ȶ?JJRNbX9RB~jtDTK7ٿVBDCDPnINd;O?VBZ\(\?NNS%C?NNP ףp= i word revampingVBG+?NNX9vJJ5^I i+1 word depositsNNd;O@JJd;Oi-1 word jigglingRP)\(ܿIN?5^I ?VBjt i-2 word bugsVBPQ?JJ(\?RB(\VBZ rhVBx&1i+2 word concerningDTw/?PDTw/i-1 tag+i word NN celluloidsNNS|?5^?NN|?5^i+1 word rigorsJJV-?NNV-i+1 word lookingNNS㥛 ?RBR(\?RB\(\JJRHzGJJ㥛 i-1 tag+i word JJ annuitiesNNS/$?NNP/$i-1 tag+i word DT runawayJJ%C@NN%Ci-1 tag+i word DT printingVBG&1?NN&1i-2 word airlinesVBrh|?VBGoʡ?NN~jtÿVBPMbJJS㥛VBZHzG?i+1 suffix .s.VBx?RBףp= NN+wRBS ףp= RBRxNNPK7?JJ333333?JJRzG?CD?5^I NNSV-VBDjt?VBN?5^I FW9vҿRP;On?VBZV-?VBG}?5^I?JJS㥛 ?VBP)\(INK7?i+2 word adlerVBNMbVBDMb?i-1 word declarationsINV-?WDTV-i word deepeningNN/$VBGX9v?JJOni word unamendedVBN+JJ+?i-1 word beachNNPSCl?NNSClJJCl?NNq= ףpտJJRv/i+1 word choletNNPE?INClFW= ףp= i suffix mpuNN\(\߿NNP\(\? i word ifINn?NN{GzNNP/$i-1 tag+i word CC learnVBZy&1VBS?VBPv/ݿ i-2 word u.k.CC +?DT +JJ\(\@VBOnNNv/i-1 tag+i word VB sublimeJJZd;O?RBZd;O߿i word whoppingVBG{GzJJ{Gz@NNؿi+1 suffix ils NNS@VBDQ?JJR|?5^@INQRPQ?VBK7?VBG/$JJ r VBZv/NNP rhݿRBRQVBNQӿRB+? i word clammyVBZ!rhVBPw/ܿJJ~jt?NN^I +ǿ i suffix rve VBN?5^I VBPGz@INPnVBDnRBZd;O߿VBZOnNNS-VBCl@JJjtNNGz@i-1 word trivialNN333333?NNPS333333i+2 word dentsuINL7A`JJ?RBZd;i-1 tag+i word CD immediateJJB`"?NNB`"i-1 tag+i word IN pressNN(\?JJR(\ i word dramasNNS rhNN rh? i word yeahUH rh@JJ/$NNPMi-1 tag+i word NNS insuranceVBZNNP? i word cmsJJ +NNP +?i-1 tag+i word DT lukewarmJJX9v?NNX9vi-1 tag+i word DT dietNNPSnJJ rhNNQۿNNP(\?i-1 tag+i word NN fileVBZ$CVBMb`NNB`"?RBMbi-1 tag+i word `` armedVBN}?5^IԿJJ}?5^I?i-1 tag+i word DT translucentNN!rhJJ!rh?i-1 tag+i word IN couplesNNSRQ?NNRQi-2 word withdrawalsRBsh|?INsh|??i-1 suffix iarNNzGʿNNSzG?i-1 word sheltersNNPV-VBPClٿVBN}?5^I?i-2 word losersVBNL7A`NN%C?RBd;OJJCl?i word anniversaryJJK7NNK7? i-2 word coalNNd;OVBDCl?JJd;O?VBNCl˿i+2 word gabrielaFWQJJT㥛 ?NNPMi-1 tag+i word POS marketingVBGnNNn?i-1 tag+i word VB registeredVBN~jt?JJ~jti-1 tag+i word RB sadJJx&?RBx&i-1 tag+i word CC solveVBw/?JJS㥛NN~jtؿ i-1 word messNNP(\IN(\?i-1 tag+i word NNP chargesVBZM?NNSMi word differingVBGQ?NNClJJJ +i+1 suffix vanNN㥛 ҿNNP㥛 ? i+2 word back NNGz?JJ(\NNPMbX?RBףp= VBGzGVBD'1Z@VBN?VBPMb`?VBZQ?VBCl߿ i+1 word espsVBP +VB +? i suffix OedNNPS~jtJJfffff@NNPV- i word brantfordNN^I +NNP^I +? i word bribeNNZd;?NNPZd;i-1 tag+i word DT rulesNNPSOn?NNSOni+2 word optimismVBNx&1JJx&1? i+1 word unixVBNZd;OJJZd;O?i-1 tag+i word DT rumorsNNSS㥛?NNS㥛i-2 word impossibleVB(\?NNS(\i+1 word grievanceNNMbX9?JJMbX9i+2 word insulationNNl?NNPlڿi-2 word hotelVBGI +?JJT㥛 ?NN$CVBN+?RBK7ANNP}?5^I̿i-1 word managesINI +?RBRbX9JJRbX9?RBI +i-1 tag+i word NN evaluatesNNSK7VBZK7?i+2 word currenciesJJRffffff?NNffffff i-2 word alanNNP rhѿNNPS{Gz?VBGK7JJK7?NNMbX9i+2 word prussiaNN(\NNP(\?i word lasciviouslyRBX9v?NNX9vi word perfumeNNq= ףp?JJK7FW"~i-1 tag+i word CC burntJJ5^I ?NN5^I  i-2 word rollVBGSݿNNV-?PDTS?JJR/$JJDlNNS;On?i-2 word financierVBZ%CNNP%C?i+2 word listlessJJx?VBNxi-1 tag+i word NNP blameNNFxRBDlVBʡEۿVBP= ףp=@i tag+i-2 tag MD WPVB~jt?NNsh|?VBGS㥛DT?WDTףp= ۿi word antagonisticNNSrh|JJrh|? i+2 word coalJJMNNPM?i-1 tag+i word NNP partnerNNPQ?NNQi-1 tag+i word NNP gatheredVBNI +?VBDI +i word swivelingVBG/$?NN/$ݿi-2 word reproduceNNSNNQ?JJp= ףi-1 tag+i word CD increasedVBN-VBD-@i-1 tag+i word NNP sometimesVBZV-RBV-?i-1 tag+i word DT flatNN!rh?JJ!rhi+2 word purposeNN/$?NNP/$i-1 tag+i word DT ateNNPS rпVBD r?i word presentVB333333?JJx@NNw/VBN#~ji+1 word exhaustionJJh|?5?NNPh|?5i word crushedJJ rh?NNGzVBNS㥛?i-1 tag+i word JJR stridentNNsh|?JJsh|??i+1 word shakyVBZ rh?NNS rhi-1 tag+i word CC saintlyRBx&1JJ5^I @NN+i-1 tag+i word VBG aroundIN-RPZd;ONN㥛 RBS@i-2 word worksVBPx&?IN+VBDx&1VBV-?i word proceededVBZp= ףVBDp= ף?i-1 tag+i word VB issuedVBN9v?JJ9vi-1 word factorsVBPZd;?VBGףp= INS?i-1 suffix sinVBNQJJ333333VBZK7NNSK7?NNP333333?VBDQ?i-1 tag+i word NN startsVBZ+?VBPK7A?NNSMbX9NNMbؿi-1 tag+i word JJ emotionNN"~j?JJ"~ji-1 tag+i word VBD originallyVBN$CRB$C? i-1 word royVBN"~jVBD"~j?i-2 word risksVBPuV?RBw/?NNSCl?NNPX9vRP1Zd$Mbi-1 tag+i word DT voteNNSJ +NN!rh?JJMbi word functionVBCl?VBPMb?NNMbRBCl绿i+1 suffix nelJJRQ@NNEȿVBN(\?VBP-RBZd;ONNPd;O?VBGoʡi-1 tag+i word NNP enactedVBNK7A?VBDK7Ai-1 tag+i word DT gentlerNNS+JJRK7A`@NNS㥛i-1 tag+i word NNP asksNNS{GzNNJ +VBDZd;OVBZPn@ i word soapsNNSK7A`?NNK7A` i word brainsVBPKNNSK?i-1 tag+i word VB likelyRBQ@JJQi-1 tag+i word IN racismNNCl?JJCli-1 tag+i word VBD priorNNST㥛 RBT㥛 ?i-1 word germansVBD7A`@VB/$VBP7A`?VBN)\(NNPni+1 word monasteryNNPSQ?NNSQJJK7A@NNʡENNP- i word seekVBQ?JJK7AVBPZd;@RB9vVBZ|?5^NNP`"i-1 tag+i word TO evadeVB&1?JJ&1i+2 word tristateVBZ+VBP+?i+2 word develop VBN(\VBPM?LS rh?NNSp= ף?VBSVBGV-JJV-VBD(\?VBZK?NNA`"?CD rhRBy&1ԿIN/$?i-2 word farneyRBZd;OINZd;O@i-1 tag+i word NNS betVB&1NNS rVBDHzG?i-1 tag+i word VB matchingNNQVBGQ? i suffix LawJJ(\NN`"?NNPV-?i-1 tag+i word '' jocksNNSMb?NNMbi-1 tag+i word NNP livesVBZQ@NNPSHzGNNSZd;׿NNPDl i word fundedVBNlJJbX9@VBDHzGi-1 word accountingNNPS/$@NNrh|׿JJPnVBZQNNSQ?NNP/$i-1 tag+i word VB unfortunateJJ ףp= ?RB ףp= i-1 tag+i word NNP forceNNPS(\ҿNN`"NNPT㥛 ?i-1 tag+i word -START- fearNNSGzNNtV@NNP?5^I ҿINy&1i-1 tag+i word CC meetingVBG'1Z@NN'1Z i word n.v.VBPV-NNbX9NNP\(\?i-1 word poursRBFxٿINFx?i-2 word directedNNSKJJ|?5^?NN +޿i-1 tag+i word RB quickRBClJJCl? i-1 tag+i word NNPS technologiesNNPSZd;?NNPZd;i+1 word categoriesJJffffff?NNffffffi-1 tag+i word IN carpNNS333333NN333333?i word strainedVBN +JJA`"?VBD%C i word outsetNNS"~jNN"~j?i-1 tag+i word NNP coveringVBGʡENNPʡE?i+2 word bankamericaNNSףp= RBףp= ? i+1 word fujiNNSV-JJ r?NNzGʿNNP~jt?VB~jti-1 tag+i word -START- fuelNN~jt?NNP~jti-1 tag+i word IN strikeNN?5^I ?JJ?5^I i+1 word wertheimVBZ/$?NNS/$i-1 word fieldVBDE?VBG+?VBNEJJ+i-1 tag+i word -START- medicalNNPtVJJtV?i-1 tag+i word DT betterNNP(\µ?RB/$NNp= ףRBR!rh?JJR!rhm@JJtVi+2 word ownershipVBNx&1VBDx&1?i-1 tag+i word JJ dovetailsVBZA`"?NNSA`" i word shackNNP9v?NN9vڿi-2 word givenNNS㥛VBGE?JJMb`i-1 tag+i word CD germanJJx@NN}?5^INNPOni-1 tag+i word NN agreedVBZsh|?VBPQNNX9vVBDV-@ i-1 word how VB/$ÿRBT㥛 @CC^I +JJ(\ @IN$CDT$C?NNPS;On?VBGK7ANNzGVBP#~jUH rhNNSL7A`?i-1 tag+i word -START- u.k.NNSMbJJ5^I NNFxѿNNPK7A`?i-1 tag+i word VBP boundNNSjtVBNjt?i-1 tag+i word RB alterJJrh|VBrh|?i-1 tag+i word RB raiseVB~jt?VBP~jti-1 tag+i word NNP rangeNNP\(\?NNPSMbXɿVBDMbi-1 tag+i word PRP$ outRP+?RB+ i suffix oorNN}?5^I?VBD333333JJq= ףp@NNSZd;NNPv/?NNPSˡEVBG{GzRB+ i suffix DPCNNSp= ףJJJ +NNPNbX9@i+1 word pushoverDTffffff?JJffffffi-1 tag+i word DT vacationingNN;OnJJjtVBG$C?i-1 tag+i word IN mitsuiNNSlҿNNPl?i-1 tag+i word NN measuresVBZHzG?NNSHzGi-1 tag+i word JJ affidavitNNZd;O?JJZd;Oi-1 tag+i word , purchasedVBNrh|VBDrh|?i-1 suffix ilyVB}?5^I@NNPS-VBD5^I ?RBRzGVBPtV޿NN$CDT|?5^VBGd;O?JJQVBN333333?RBI +POS r?IN\(\?VBZ7A`@NNSQ? i word fieldsJJT㥛 VBZSNNS;O@NNP ףp= VBZd;ONNPS ףp= ?NN= ףp= i suffix -12NNPmNNSClNNMb@JJnCDZd;O?i+2 word realizationJJ^I +?NN^I +׿i-1 tag+i word VBP ontoJJMINM?i-1 tag+i word NN recallNNMbX9VBPMbX9?i-1 word sympatheticNNGz?JJGz i+1 word wilmVBN㥛 ?VBD㥛 i-1 tag+i word NNP totalVBPMb@JJMbi+1 suffix ripNNPSS㥛@VBGJ +NN7A`?VBNvJJK?NNPQi-1 tag+i word NNS switchedVBNNbX9VBDNbX9?i-1 word growsRPZd;ORBT㥛 NNK7A`?INjt? i word stampJJ+RBMVBMbX?PDTMbNN+? i-1 tag+i word TO infrastructureVBrh|NNrh|?i-1 tag+i word IN walesNNSZd;NNPZd;?i-1 tag+i word NN riskedVBDʡE?VBNʡEi+2 word refundingJJB`"?NNB`"i-1 suffix cle NNPS;OnINw/?VBZ r?NNS rȿVBGMbX9?NNMbX9ԿVBDmտVBNm?WDTw/NNP;On?i-1 tag+i word DT controllingVBGX9v?JJ+@NNCli-1 tag+i word NN dsNNSX9v?NNPX9vi-2 word contentionJJʡE?VBDʡEi+1 word teamsNNd;O޿JJd;O?i-1 tag+i word VBP revampingVBGx?NNxֿi+1 word genialNNS+RB+? i-2 word ballVBDoʡ?NNoʡJJoʡNNPoʡ? i-1 word ufoNN(\?NNP(\?WDT(\JJ(\i+1 word vacuumJJX9v?RB/$NNP!rhܿ i-1 word 'veNNV-VBDVBNK7 @RB7A`NNSd;OJJni+2 word gatheredJJ ףp= NNPMbX9?NNPS}?5^I?NNSQi+2 word landscapeCC/$޿RB/$? i-1 word voteDT;OnIN;On?NNzGVBDzG?i-1 tag+i word VBZ studdedVBN rh?JJ rhٿi-1 tag+i word DT betsNNPSA`"NNSA`"?i-1 tag+i word DT coverNNK7A`NNPK7A`?i word explainsNNS/$VBZ/$?i word paragraphNNK7A`?JJK7A`i+1 word whinerJJn?NNni word responsesVBZlVBPNNSL7A`@NN+i-1 tag+i word DT soRBDl?INDlѿ i suffix MenNNSMbX9?NNx&@NNP$C i-1 tag+i word JJ ambivalentJJʡE?NNʡEi-1 tag+i word VBG metNNS\(\VBN\(\?i-2 word fishbowlNNS333333NN333333?i-1 tag+i word POS spaceJJV-NNPV-?i-1 tag+i word NNS dealerVBPQNNQ?i-1 suffix okoJJ~jtNNP~jt?i-1 word weaknessRBn?JJni-2 word frenchVBP~jtJJZd;ONNPX9v?VBCl@NNPSX9vNNoʡVBD+i+1 word swelledVB|?5^ٿVBP|?5^?i+1 word argumentNNPS|?5^NN"~?JJRV-?JJHzGINMbDTMb?i-1 tag+i word `` whateverWDT"~j?JJ"~ji-1 tag+i word -START- holdersNNSE?NNPEi-1 word pokesVBD㥛 RPQ?INV-i-1 tag+i word IN playingJJ}?5^IVBG}?5^I?i-2 word warrenVBx&RP-RBCl?i+2 word transportingRBh|?5@NNS5^I ӿJJ/$NNFxVBN(\ȿi-1 tag+i word WP tongueVBZZd;NNZd;?i word railwayNNI +@VBP#~jԿVBGOnJJX9vRBd;Oi-1 tag+i word RB collapsedVBNʡE?VBDʡEi-1 word growersVBZd;OVBPQ?VBDx&?i word woebegoneJJV-?NNV- i suffix URYNNQſJJK7ANNP~jt@i+1 suffix icsVBG`"?RBRd;OVBNq= ףpJJRX9v?VBZ;OnNNP r NNPS/$@VBD?5^I JJSK7A?IN7A`@NNS&1POS;On?VB#~j?JJ= ףp=?RBSMbXVBPn?NN/$?WDTjtRB"~ i word yamaichiJJOnNNPOn? i-2 word tonsNNPnNNv/?JJRM?RBRMڿRB}?5^I?IN}?5^INNSx&ٿ i word policyNNPSPnпNNZd;@JJx&1NNPi-1 word practicalNNS rhNN rh?i-1 tag+i word VBD upRBˡE@RPrh|?VBNtVJJ~jtIN +i-1 tag+i word IN thoughtNN/$?JJVBNRQȿNNSSi-1 tag+i word NNS cheaplyVBP7A`RB7A`?i word intensiveNNPQPRP$1ZdVBNףp= JJ'1Z @NNrh|i+1 word freshVBDzGRBR?JJRVBNzG?i-1 tag+i word NNP yieldsNNSB`"?NNףp= NNPZd; i-1 word hopsRP"~IN"~?i-1 tag+i word IN shorttermJJS?JJRS˿i-1 tag+i word NNP thanINtV?NNPtVi+1 word meeting INI +VBN&1VBPlVBDClPOS^I +?JJE@VBZ!rhܿDT+?VBGCl?NNni word modernizedVBNMbJJMb?i-1 word reliefVBD1ZdNNS"~j?PRPtVVBN1Zd?VBZI +i+2 word rowingINQCC= ףp=?RBQۿi-1 tag+i word VBP carelessJJʡE?NNʡE i suffix ABBRB{GzNNP{Gz?i+1 word steamJJsh|??NNDlVBNGz?i-1 tag+i word NNP roadsVBZh|?5NNSh|?5?i-1 tag+i word , accountingVBGX9v?NNX9vi-1 word vintageJJ+NNP+?i word looseleafPOS^I +NN ףp= ?NNPxi+2 word greatestVBN/$VBD/$?i-1 tag+i word JJ cellularJJDl?NNDlٿ i+1 word tiffNNn?JJni-1 tag+i word NNP offeredVBDbX9?IN+VBNS?JJ?NNPq= ףpi-1 tag+i word NN quotesNNStV?VBZtVοi-1 word pretendNNPQVBGʡENNK7?i-1 tag+i word VBN boroughNNv/?JJ rIN(\ſi+2 word prosperityRB/$?IN/$i+2 word sufferingPDTx&1?DTx&1 i-1 word ldpNN/$VBDZd;@VB!rhԿVBN"~ji+1 suffix hboVBNoʡ?JJoʡi+1 word necessaryNNS1Zd?JJRT㥛 RBT㥛 @RBR$CINMbi word createsNNSI +VBZn?VB5^I  i-1 tag+i word -START- financialJJ{Gz@NNNbX9NNPS㥛i-1 tag+i word -START- filipinoNNPZd;?RBZd;i word declaratoryJJ(\?NN(\ݿi-1 tag+i word VBG buddyNNSffffffNNffffff?i-1 tag+i word JJ rockiesNNSSNNPSS?i-1 tag+i word VBP ashamedJJQ?RBQi-1 word requestNNsh|?INsh|??i-1 word mckennaVBZh|?5?NNSh|?5i+1 word oppenheimerJJS~jtNNP~jt?i+1 word hybridJJV-?NNV-VBGʡE? i+2 word willVBNGz@FWKRB;OnCDlVBD9vڿVBP(\?DTMbX9@NNPv?VBjtNNPSHzG?PRP$oʡ?WPzGNN;On@POS333333ۿCCK?RBRMbX9VBG/$?WDTbX9HJJ/$?VBZ$CNNSw/PDT^I +IN +JJRQ @i word regardsVBZx&?VBDx&i+1 word nationaleJJZd;ONNPZd;O?i-1 tag+i word IN wrappingVBGA`"?NNA`"i-1 tag+i word CC issueVBFx?NNFxi-1 tag+i word PRP$ failedVBNʡEJJ\(\@VBDjt i word feelVB"~j@JJsh|?NN9v?VBDSVBP)\(@RBB`"VBZClNNS+i+1 word eloquentRBS#~j?JJS#~jԿi+2 word point JJZd;?VBDMb?PDTʡE?VBNbX9RB ףp= ?INK7A`RP!rh?NNX9vCDGz?VBGK7NNP/$i+2 word performedNNV-?JJV-i-1 tag+i word NN toryNNPGz?NNGzi-1 tag+i word NN notesNNSy&1VBZ{GzNNPS rh@i-1 tag+i word VBD !HYPHEN JJRzGVBNMNNSp= ףRBw/@NN(\?CDn?JJvNNPV-VBGˡEĿJJSS?i-1 tag+i word IN generatedVBNQ?VBDQi+1 suffix neaNNPKJJK?i-1 tag+i word NN participantNNMbX?JJMbXi-1 tag+i word VBZ triumphedVBNSVBDS?i-1 tag+i word DT charityNN ףp= ?JJ ףp= i-1 tag+i word VB machetesVBZ~jtӿNNS|?5^?NNi-1 word moodyPOS&1?VBZ&1ʿi+2 word westinghouseVBZ;On?NNSGzNNB`"CDHzG?i-1 tag+i word DT enigmaNNGz?JJGzi-1 word bleachedNNw/?RBw/i-1 word answerVBZHzG?DT r?NNSHzGIN ri-1 tag+i word TO adjustVBS㥛?JJS㥛i tag+i-2 tag WP ''VBZףp= VBPd;O@VBDZd;Oݿi-1 tag+i word WDT prospectsVBZ\(\NNS\(\?i word laboratoriesNNPS9v@NNS+?NN= ףp=NNP㥛 i-1 tag+i word NN typicalJJQ?NNQi+1 word litigationNN(\VBNA`"?JJ rhi-1 tag+i word VBZ dizzyingVBG ףp= JJtV@NNKi-1 suffix eesVBZ/$VB|?5^?RP9vVBDZd;O?JJSMb?VBNtV?VBP/$ @NNPS{Gz?RBSMbWDT;OnNNS/$?NNPRBsh|?@NN$CRBR/$JJ{Gz?INjt?VBG+i-1 tag+i word NNP acknowledgesVBZ{Gz?NNS{Gzi-1 tag+i word NNP rayNNPPn?NNPSPnпi-1 tag+i word NN addressesVBZX9vNNSX9v?i-2 word ozonedepletionNN?FWi-1 tag+i word IN a$$zG?NNPzGi+1 word tapedRB"~?NN"~i-1 tag+i word WDT oecdVBZ|?5^NNP|?5^?i-1 tag+i word VBZ wellRBʡE?NNʡEӿi word erythropoietinVBNV-NNV-?i+1 word minorityJJʡE?VBGMbRB1Zd?NNNNP~jti-1 tag+i word , belgiumNNHzG@NNPHzGi-1 tag+i word JJ dumbJJ~jt?NN~jti-1 tag+i word CC slackenedVBNh|?5ֿJJ(\?VBD rhi+1 word memberVBDSVBN(\?JJ"~@INMbX9ܿVBZ$C?NNS$CNNPX9vNN(\?i-1 tag+i word NN includedVBNJ +VBDJ +@i-1 tag+i word RB involveVBP5^I ۿINmVBDrh|VB rh? i word hopsVBZffffff@NNSp= ףRB +VBD&1i-2 word sprinkleJJ rh?RB rhͿi+1 word justiceDTZd;OVBGw/?JJsh|??RBGzINZd;O?i-1 tag+i word CC endsNNPSL7A`?NNS rhݿNNPQVBZQi-1 tag+i word -START- outsideJJS@RBMbпNNPffffffVBI +IN/$i+1 word spokesmenNNSZd;O@CDZd;Oi-1 tag+i word IN bozellNNPS#~jNNP#~j?i+1 word sportswearVBNmJJm?i-2 word expandNNPK7AVBG/$NNX9v?CDl?PRPlJJK7A?NNS㥛 ҿi-2 word survivorsVBGZd;ORBZd;O?i-1 tag+i word DT symptomsNNS㥛 ?JJR㥛 i word nonsenseRB +VBP`"NN+?JJ~jtȿ i word balkVBP rh?NN rhi-1 word academicJJ(\NNP(\?i+1 word whoopingJJR r?JJ ri+1 word wealthVBN/$JJ/$?i+2 word highlyVBG#~j?NNS㥛RB(\?i-1 tag+i word TO povertyVBK7A`NNK7A`?i+1 word desperateNNS?RBSӿi-2 word mergedNNSZd;?NNM?JJ= ףp= i word known JJMb?RPGzNNHzGVBN;On"@VBPh|?5NNP(\VBd;ORB rVBD+߿FWDli-1 tag+i word NNS tankerVBNQNNQ?i-1 tag+i word JJ refiningVBG'1ZNN'1Z?i-1 tag+i word TO relaxNNS'1ZVB'1Z?i+1 word astoriaJJ~jtNNP~jt?i-1 tag+i word WRB thereEXS?RBSi word witchesJJnNNSn?i-1 tag+i word VBN enoughRB1ZdNNw/?JJtVi-1 tag+i word MD postponeVBn?RBni word pinpointedVBN/$ۿJJ/$?i-1 tag+i word NNP platinumNNS"~NN"~?i+2 word literatureJJ/$?NN1ZdNNPw/i-1 tag+i word POS strangeJJ(\?NN(\ i word quellJJ?5^I VB?5^I ?i+1 word repairsVBDGzVBN?JJRQi+1 word whoseRBGzVBZQſNNS?5^I ?NNPSNNPSS?JJ;OnNNq= ףp?VBP+ i word best IN|?5^ڿNNP~jtVB}?5^IܿVBNSRBp= #@RBS1Z@VBPKJJ rhNNQJJSy&1@i-1 tag+i word JJ drynessJJ}?5^INN}?5^I?i-1 tag+i word -START- waryJJx?NNPxi-1 tag+i word : aboutRB|?5^@IN|?5^i-1 tag+i word IN half VBP-DTtV@VBGx&1RB rhͿNNV-VBD+PDTV- @VBJ +VBN/$JJsh|?@NNS;Oni-2 word accomplishedJJ(\?RB(\i-1 tag+i word NNS attachedVBN333333?JJffffff?VBD333333i+2 word canadianNNP333333?RPK?NN/$?VBDQVBN/$RB+?INX9vNNS333333i word technicallyRBjt?NNPjti tag+i-2 tag VBD RBSNNv/?JJv/i-1 tag+i word IN rodgersNNPSRQNNSmNNPOn?i-1 tag+i word -START- companyNNV-o@JJ/$NNPV-VBZh|?5i+1 word arrestedMD~jt?VBD~jtпi-1 tag+i word CD opponentNN/$?JJ/$ i word thriveVBxVBPx? i+2 word joinVBDZd;O?VBN rh?VBPZd;OJJ rhNNSy&1?NNPy&1VB|?5^i-1 word operatesNN1Zd?JJ1Zdi-1 tag+i word RB leeryNNB`"ɿJJX9v?RBi-1 tag+i word NN khanNNP-?FW-i-1 tag+i word RB wantedVBN(\VBD(\?i-1 tag+i word VBP spreadJJ^I +VBNtV?RB/$i-1 tag+i word NNS pollyNNPq= ףp?RBq= ףpi word simulatedVBN rhJJtV@VBDI +i-1 tag+i word DT blockadeVBNMbXNNV-?JJ`" i pref1 oRPMb@VBDK7?POS!rhPRP^I + @RB%C @VBPZd;?NNPSKUH7A`?NNP㥛 p)CClCDI +VBNn?VBZK7?JJSZd;?NN~jt?NNSL7A`?FWh|?5?WDT9vVBV-WRB\(\PDT rhRBRClMD7A` @JJQ?DT-INMbX@VBG1Zd?JJR^I +?i-1 tag+i word NNS neophytesVBP|?5^NNS|?5^?i-2 word fourthVBN`"JJGzVBDS?i-1 tag+i word RB demonstratesVBDʡEVBZʡE?i word federallyRB㥛 ?JJV-NN(\i-1 tag+i word CC sellingNN+?VBGQVBNJJK7?i word tumblesNNʡEVBZGz@NNS|?5^i word standardizedJJV-?VBNA`"NNK7Ai-1 word touchedRP$C?IN$Ci-1 tag+i word TO policeNN|?5^?NNS|?5^i word diagnosticJJ"~?NN"~ҿi-1 suffix rgyVBZ333333NNS333333?i+1 word pipelineVBPJ +JJn?NNS㥛NNPSmNNP"~?i word growingJJq= ףpNNPK7VBGx&1@NNX9vi-2 word german VB\(\?VBD#~jVBN~jt?NNPy&1?JJoʡտNNCl?VBPףp= RB|?5^NNStVi word currencyNNGz?NNPGz׿i-1 tag+i word RB philippineJJ5^I ?NNP5^I i word complacentNNZd;OJJZd;O?i+2 word adjustingNN~jt?JJ~jti-1 tag+i word RB lovedVBNp= ף?JJp= ףؿi+2 word matthewNNNbX9NNPNbX9?i word flowchartNNʡE?JJʡEݿi-1 tag+i word DT cananeaNNPx?JJxֿ i word symbolNNPS9vNNV-2@JJy&1NNPi-1 tag+i word , respondingVBGʡE?NNʡEi-2 word alterNNPS)\(ԿNNQ?JJ)\(?NNPQi-1 tag+i word NN firstJJ"~jNNd;OVBD~jtRBMb@NNSZd;i-1 tag+i word PRP$ allegedVBN-?JJ-ֿi+1 word outrightVBGQ?NNQi-2 word notes NNSGzNNP^I +߿NNPSףp= ?RPd;OֿNNy&1@VBDS㥛RB%CIN9v?JJ~jtVBNS㥛?VBPʡEEXI +?i-1 tag+i word NN endedNNSV-VBNy&1,@JJGzVBDzGi+2 word numberedNN/$JJ/$?i-1 tag+i word CC completeNNClVBffffffJJx&?i-2 word criminalsVB7A`NNv?JJ1Zdi-1 word reinsuranceVBZClNNSCl?i-1 tag+i word NNS sylvesterRBR|?5^NNP|?5^?i+1 word stertzNNPn?NNPx&VBDZd;i-1 tag+i word RB bigJJoʡݿNNPoʡ?i word enactmentNNS?RBvJJZd;O i+1 word leadJJX9v @VBVBG-ۿNNˡERB?i-1 word substantially VBZFx?VB?JJKVBNS㥛?RBRL7A`JJRZd;@NNSFxVBD?PDT i-2 word leanNNCl?RBCli word spewingVBGv?NNvi-1 tag+i word -START- uniceNN%CNNP%C?i-1 word there VBPrh|?VBZB`"@NNSnNNV-VBDClPOS#~jVBNV-RBRQ?INuV?VB/$?WRBZd;?JJV-?i-2 word teaganDTx&?VBL7A`RBx&VBDzGVBZZd;O?i+2 word thoroughbredWDTCl?INCli+1 suffix zdaNNtV?VBDtVVBZGz?NNSGzֿ i+2 word tearVBZmNNSm?i-1 word technologiesRPClRBh|?5INE?i word balancingVBG%C@JJ rhNN)\(̿i+1 word strongerRBʡE@JJʡEi-1 tag+i word ( perINx?FWx޿i-1 word berkeleyNNS/$@NNbX9NNPClٿi-1 tag+i word DT starkNNv/JJv/@i+2 word leavingVBGl?NNNbX9JJˡE?i tag+i-2 tag RB TO RBRsh|?VBPSJJR&1?VBV@JJRQ?NN rVBDףp= IN^I +VBNS RB/$i+2 word plummetedNN/$NNP/$?i+2 word prisonVBZnٿNNSn?VBNZd;O?VBDZd;Oi-1 tag+i word CD flightsVBClNNSCl?i-1 word devicesVBDPn?POS= ףp=?VBNA`"?''KRBKVBZv/i-1 tag+i word RB exaggeratedVBNQJJQ?i-1 tag+i word CC lightweightNNP+JJV-@NNjtVBD ri+2 word constitutionalNNPrh|NNrh|?i-1 tag+i word NNS adoptVBV-?RBSVBDNbX9i-1 tag+i word CC dependsVBZ%C?NNS%Ci-1 tag+i word PRP$ diversifiedVBNZd;JJZd;?i word receiveVB/$?VBP1Zd @JJQVBZ-i-1 tag+i word DT unrelatedVBNSJJS?"i-1 tag+i word -START- subscribingVBG(\?NNP(\ҿ i word ariaNN\(\?JJ\(\߿i+1 word defendedRB|?5^?VBD|?5^ i word little VB(\RBRVBPClJJK7I$@VBZ(\ؿCDHzGNNSK7NNP}?5^I̿RBuV@NN-VBNv/JJRbX9i word retreatVB rh?NNSQNNjt?i-1 suffix men NNPSZd;?VBGjt@NNK7VBNףp= JJnNNSMbNNPx&VBGz?VBD+?VBPn?i-1 tag+i word -START- homefedNNPClNNS'1ZܿVBNm@NNv/i+1 suffix vetNNPDl?NNDli-1 tag+i word IN bNN1Zd?NNP1Zdi-1 word meetingsRPnJJ(\INʡE?i+1 word subordinatedNN"~jJJ"~j@i-1 word maximizeNNSOn?NNOni-1 word meetsNNSGzRBGz?i-1 word problemDTlWDTl?NNM?JJMi-1 tag+i word NNS reachedVBPZd;VBNsh|?VBD;On@i-1 tag+i word CC coloraturaJJK7NNK7?i+2 word indictmentVBZGz?VBDGzi+1 word wreckNNQ?JJQ˿i-1 tag+i word VBG raisedVBNS?VBDSi-1 word cocoaVBN333333?NNJ +VBDHzGi-1 tag+i word RB intensivelyRBNbX9?JJNbX9i+2 word mixte FWPn?INT㥛 ?VBZGz?DTS㥛ؿNNSףp= NNP?VBG+JJh|?5?WDTS㥛i-2 word conventionNNPSjt@NNSV-NNPw/VBZGz?i-1 tag+i word JJ reminiscentJJGz?NNGzi+2 word uncommonJJ|?5^?NN|?5^i-1 tag+i word DT typicalJJT㥛 ?NNT㥛 i-1 word gunnedRPV-?RBV-i-1 tag+i word CD natoNN-NNP-?i+1 word bodiesJJ!rh?NN!rhi-1 tag+i word VBD thinVBNzGJJzG?i-1 tag+i word -START- deliveryCD-NN-?i-1 word assumptionsVBNI +?VBDI +i-1 tag+i word IN importedVBNn?JJni-1 tag+i word POS exposureNNS333333NN333333?i-1 word defendersVBPClۿRBCl?i-1 tag+i word , soybeanNN"~?JJ"~i-1 tag+i word CC whileNNSq= ףpJJZd;IN-?i-2 word suitsVB㥛 ?NN7A`NNS㥛 JJRX9v?JJNbX9i-1 tag+i word PRP recallVBP|?5^?VBD|?5^i+1 word articleNNPSPnNNS~jt?JJx&?NNJ +?NNP;Oni-2 word camerasPDTtVJJtV?i-2 word internalVBZMbX9NNSx&1?NNw/ԿFWV-#i-1 tag+i word -START- consequentlyRB/$?NNP/$i-1 tag+i word , mandateVBl?NNJJ-ۿi+2 word warmedNNPMbX9?NNMbX9i word costumeJJʡE?NNQVBPʡENNSQi-1 tag+i word PRP expressedVBP)\(ԿVBD)\(?i-1 tag+i word NNP urgedVBDʡE?NNPS?5^I ¿VBNffffff@JJMbNNPA`"i-1 tag+i word CD aboveNNSvINv?i-2 word dailyDTףp= ÿVBG= ףp=NN= ףp=?INףp= ?i+1 word gasolineJJENNPE?i-1 tag+i word `` beforeINS㥛?RBS㥛i tag+i-2 tag POS EXJJRbX9JJbX9?i word heartwarminglyRB+?JJ+i+1 word accompaniesWDTMbX@INMbXi-1 tag+i word NNP buildersNNPSoʡ?NNPoʡi-1 tag+i word NN informedVBN= ףp=?JJVBD9vi-2 word naturalUHPnRBffffffNN~jt?i+2 word testedNNPjt?INjti-1 tag+i word NN separateJJCl?NNCli+2 word climbedVBGOnNN/$?JJnNNPL7A`?i-1 tag+i word `` keylessJJQ?NNQ i word wearsVBZX9v?VB㥛 VBP%Cܿi+1 word attractiveNN"~?RBSOn?JJSOnRBR +?RB +޿NNP"~i-1 tag+i word DT metricJJQNNPQ?i-1 tag+i word CC arcadesNNS+?VBZ+i word weekendsVBZOnۿNNSQ?JJCl i suffix oarNNSQVB= ףp=@RBZd;NNRQVBPx?JJ(\i-1 tag+i word IN specialJJCl?NNCli-1 tag+i word NN supervisorNN|?5^?VBD|?5^ʿ i-1 suffix b.NNPS5^I NNP5^I ?i word warrensNNPSV-NNSX9v@NNP(\i word accompaniesVBZX9v?NNSX9vi-1 word seasonsJJS?RBRHzGNNV-ڿIN~jtпi-1 word herbicidesVBGQ?JJQֿi+2 word bondholdersNN|?5^@JJ|?5^i word rocketedJJ7A`VBD7A`?i+2 word investor VBP?RBPnNNP?PRP$Pn?NN?5^I RBRCDJJT㥛 ?VBN"~jԿi-1 tag+i word VBG detailedJJp= ף?VBDp= ף i suffix lJJRQNNS㥛?VB"~i-1 tag+i word DT thiefNNrh|?NNPrh| i word cohensNNPSx?NNPx i suffix itsVBDMbRBrh|NNSV-,@$MbUH"~VBZV-2&@JJR-VBP㥛 INMDTFxNNP\(\VB+JJSNN+wVBNq= ףpi word unfamiliarityNN"~j?NNP"~ji-2 word neededVBPDl?JJZd;O?NNPZd;OVBDl i+1 word owesVBN^I +NNP^I +?i-1 word nearly NN~jt?VBD~jt?PDTT㥛 ?JJDl@DTffffff@NNS(\VBZd;RBS@VBZ rVBNV-IN$Ci-1 tag+i word JJ steelNNffffff?NNPffffffi-1 tag+i word NN statingVBGS㥛?NNS㥛i+2 word squeezePDTףp= ?JJףp= i-1 word chargedINx&1DTGz?RBS㥛? i-1 tag EX RPClPOS7A`RB1Zd?INCl?VBZOn?VBQ?JJx&1?NNV-VBDClVBPrh|?NNSn i-2 word i.NN+?RB^I +VBPٿi+1 word courtesyJJn?NNni word discoversVBZQ?NNSQi+1 word havocVBN%CJJQVBDE?i-1 tag+i word DT sluggishJJQ?NNQi+1 word potentialJJ rh?NN-VBN5^I RBM?INtV?VBZ333333?NNS#~jRP i word danceNNw/VBS?VBPA`"˿i+1 suffix thsJJuV @INX9vVBGA`"NNʡEVBD rhݿCDT㥛 ?i-1 tag+i word , beginsVBZZd;?NNSZd;i-1 tag+i word NN anymoreRBMb?NNʡEVBD/$i-1 tag+i word `` copyrightMDNNZd;NNP"~j?i+1 word criminalsVBPS?NNS(\JJ7A`?NNNbX9NNP7A` i word toTOx&?RBtVNNP-ƿi-1 word boardroomNNx&1?JJjtVBN+i+1 word developVB}?5^INNSZd;O?JJZd;ORB}?5^I?i-2 word colonVBPʡEÿJJʡE?i-2 word heightenINn?RBni word sinkingJJ%CVBGK7A`NNm@i+1 word rebatesVBNnJJn? i word ratedVBDS㥛RBSVBNtV@JJ9vNNPS㥛i word maureenNNQNNPQ?i-2 word chickensRB)\(?NN)\( i suffix 200CDRQ @NNPSNN(\JJL7A`NNP1Zdi-1 tag+i word NNP cos.NNPSQ?NNClNNP +?i-1 tag+i word NN mattersNNSffffff?NNPffffffi-1 tag+i word IN retainingNN ףp= VBG ףp= ? i-1 word ianNN}?5^INNP}?5^I?i+2 word negativeVBG?5^I JJ r?NNzGVBQVBPQ@i-2 word consultingVB5^I JJ5^I ?i-1 word conductsVBPMbXJJMbX?i-1 word heronNNPSy&1@NNPy&1 i suffix EARNNQ@JJrh|NNPKi-1 tag+i word JJ altitudeNN+?JJ+i-2 word primaryNNSX9vNNX9v?i word virulenceNN9v?NNP9vi-1 tag+i word PRP disabledJJv?VBDp= ףVBN rh i word listRB= ףp=JJˡENNy&1@VBPV-NNSQi-1 tag+i word NNS specialistVBPDlNNDl?i-1 word scarcelyVBP?JJS|?5^JJ"~VBMbX9?i+2 word providesJJR +VBN㥛 JJ"~@NNPMbXٿNNPSMbX?NNi-1 tag+i word VBD undercutVBNzG?JJzGi+1 word columbiaNNP= ףp=?VB"~jԿNNSۿVBNHzG?VBPI +JJ= ףp=INoʡ?DToʡտi-1 tag+i word JJS financiallyRBʡE?JJʡEͿi-1 tag+i word JJ banNNSp= ףNNp= ף?i+1 word coveringNNOn?JJOn i word rubleNNS(\NNOn@JJ rhFWsh|?? i suffix lve VB!rhm@NNK7A`JJ r INmVBDrh|CDZd;O?VBP{Gz @VBZKNNPX9vi-1 tag+i word VBZ unknownVBNMJJM?i+2 word supervisorsNNPS\(\NNS\(\?i-1 tag+i word VBG askedVBDK7@VBNK7i+2 word allocatingNN+?JJ+i word authorizationNNI +?JJI + i suffix liaNNSMbX9@NNMbX9i-1 word becomingRB/$?NNQRBR㥛 ?JJR^I +JJOnNNP5^I @ i word surgeNNS/$NNGz?JJ#~j i word show VB{Gz @NN r?VBD&1JJ|?5^VBZ$CNNSNNPy&1?RBV-VBNw/VBPV-@DT+i-1 tag+i word TO unprecedentedJJK7A`?VBNK7A`ݿi-1 word hiringNNV-?JJV-ҿi-1 tag+i word NN stemmedVBN!rhNNMVBD?i+2 word stingraysNNSˡE?JJˡEi+1 suffix ael NNT㥛 ?JJRMbX9ԿVBN?5^I JJ7A`ڿDTnRB1Zd?VBD?5^I ?CC1ZdIN @NNP"~ji+1 word titlesDT rh?PDT rhտ i suffix ket JJ1ZdNNn@CDMbXVBP%C?INV-NNPZd;@VBʡENNPS/$ƿVBDvFW+VBNffffffRBx&NNS`"i+1 suffix dr.VBZrh|VBPx&1VBDX9v? i word fund IN"~jVBZNNSKVBJ +?JJ\(\NNNbX94@VBDX9vVBNOnVBP +?RBFxٿNNP5^I  @i+2 word taxationNNKJJ rhٿNNPFx@i-1 tag+i word VB proddedVBNX9v?VBDX9vi-1 tag+i word CC porkNNSףp= NNףp= ?i-1 tag+i word -START- malaysiaUH9vNNP9v?i-1 tag+i word NNP economicsNNP +?NNPS +i+2 word nixonNNPoʡRPvVBNV-JJS㥛?INv?i-1 tag+i word VB valuesNNSOn?NNOni-1 tag+i word JJ advocatesNNS{Gz?NN{Gzi-1 tag+i word VBN wednesdaysNNSx&?NNPx&i word edwardsNNSClNNPCl@i-1 tag+i word VBG heardRB(\VBNGz?NNEi-1 tag+i word JJ remicNNPSSJJS㥛NNPT㥛 ?i-1 word suspectINbX9?DTbX9i-1 tag+i word IN nicaraguaNN5^I ۿNNP5^I ?i+1 word speakerRBT㥛 ?INT㥛 i word poolsNNSv?NNvi+2 word apparentlyNNPS(\ؿVBNx&?JJx&NNP(\? i-1 word fullNNSSNNS?JJ ri-1 tag+i word NNP standVBM?VBDMi word radicalJJV-?NNV-׿i-1 tag+i word NN looseCCd;ORBd;O?i+1 word shackNN9vڿNNP9v? i-2 word %VBDx&1SYMMbX9WDTMbX9?DTJ +VBZCDL7A`e@VBGJJCl?VBP(\NN`"?LS ףp= RB7A`?NNSQNNPS?FWClVBN/$?PDTV-?IN1ZdJJRh|?5?VB/$CCtV?RBR7A` NNPSx&1i-1 word restrictedNNS/$?VBGZd;ONNZd;i+2 word jaguar VBPQNNSK7A@NNP rh?VBK7A`VBDn?NNS㥛VBN)\(RBCl?VBZ ףp= DTZd;?NNPSJJClۿi-2 word leaders VBZʡE?NNSʡEVBV-?NN rhVBDZd;OͿVBPS?RBRQ@NNPSK7?VBG rhJJx& VBNCl?NNP;Oni-1 tag+i word NNS declareVBPZd;O?NNZd;Oi-2 word upsetDTK7A`INK7A`?i+1 word eighthVBNvϿJJv? i suffix ree VBD{GzVBNQNNSy&1NNP-VB(\?NNPS;OnNNףp= RBB`"?IN(\VBZ9vJJ33333@CD9v@VBP#~j @i word countriesNNSbX9NNPJ +NNPSV-?i-1 tag+i word DT arrivalNNS\(\NN\(\?i-1 tag+i word IN manufacturingJJMbNNP333333?VBG"~ҿNN"~j?i word spokesmenNNPK7NNS/$?VBDmi+2 word abolitionVBѿNNS}?5^IܿVBZl?i-1 tag+i word RB ownVBZw/VB㥛 0@RPOnVBNMbVBPq= ףp?JJ!rh i-2 word w.j.NNPS/$?NNP/$i+2 word crisisVBZ)\(VBDx&?VBNx&POS)\(?i-2 word footstepsPRP$K7A?PRPK7Aпi-2 word oppositeVBjtNNjt?i-1 tag+i word JJ rainNNGz?NNPGz׿ i suffix SeeVBV-@NNPSZd;ONNMbNNPx&i-1 word communistsNN?5^I VBD?5^I ?i-1 tag+i word CC shortsightedVBNJJ?i+1 word muscleNNKJJK?i word polyesterNNzG?JJzGi-1 tag+i word CD sharedJJ#~jVBD#~j?i-1 tag+i word NNS attackNN+?RB+i word printersNNSʡE?NNʡEi-1 word refutedDTMb?INMbi+1 word copiersJJtVNNV-׿NNPuV?i-1 word departmentNNPSS㥻?JJClVBZI +?NNP rhVBG333333?POSsh|??RBGz޿VBS?VBD ףp= ?NN{Gz?RBRGz?VBP&1INʡENNS5^I i-1 tag+i word DT keenJJףp= ?VBN/$NNV- i word w.NNPCl?CD+NNS?VBDZd; i word noseNNSGzNN/$?RBh|?5i-1 tag+i word VBZ uponVB/$IN/$?i+2 word engineersVBNq= ףp?JJMbX9VBD-i-1 suffix rop VBNFxWDTS㥛?VBDMbX9@RPL7A`?PDT/$?RBB`"۹INK7ADTGzJJQNNffffffƿFW)\(?i-1 suffix ane MD +JJMVBDˡE?VBNˡEԿRB?NNSS?NNPSJ +NNMbVBZNNPJ +? i-1 word haveDTtV?RBRA`"VBP-NNP5^I ?INMbVBGjt?JJ r?VBD9vCCQ@CDʡE?VBZ?5^I JJR~jt?VB~jtPDTʡEVBNPn @PRPERBSUHxRP;OnNNSſNNSzG@i-1 word concludedDT333333IN333333?i-1 tag+i word NNS roamVBP$C?VBD$Ci-1 tag+i word DT excessJJ+@NN+i-1 tag+i word JJ laterRB-?NN-i-1 tag+i word VBG futureNNV-JJV-?i-1 tag+i word NNS lateRBR?5^I RBS㥻CDZd;JJMb @VBPMbi-1 tag+i word DT steadilyRBQ?JJQѿi+2 word booksVB"~jRP|?5^?CDˡE?VBP/$?JJ\(\IN|?5^i-1 word establishPRP㥛 @JJMb?PRP$\(\NNK?VBNDlCD'1Zi-1 tag+i word -START- hertzNNPMbX9?FWMbX9i-1 tag+i word VBZ declasseVBNZd;JJZd;? i word gatherJJZd;ODTSտVBX9v@RBxJJR+i-1 suffix elf JJ1Zd?NN{GzVBDMRB)\(?INFx?VBGbX9?DTB`"RP(\µ?NNSv/VBNʡE?VBPOnWDTCl?VBS㥛i word wrestlesVBD?5^I VBZ?5^I ? i-2 word jailJJR r?RBR ri-1 tag+i word DT fasterJJ#~jJJRp= ף?NNV-RBRV-i-1 tag+i word NN muttsNNSGz?RBGzi-1 tag+i word VBN stiflingJJˡEĿVBGˡE?i+1 word tangledNN+VB(\VBP +?i-1 tag+i word IN coldJJNbX9?NNNbX9i-1 tag+i word DT strugglingVBGx&@NNV-JJ333333i tag+i-2 tag NNS VBGRPMVBx&VBGZd;OVBDS㥛?RBRCl?WDTClӿEX= ףp=JJRbX9?NNMb?NNSClVBPZd;INClVBZ rh?NNP|?5^?JJ'1Z?VBNw/?RBX9v?i+2 word requestsRBQ?JJ"~jNNP rhi-1 tag+i word VB eliminatedVBNS?JJSi word indifferenceNN-?VBD-i-1 word mixedNNSV-?NNV-i-1 tag+i word JJ developersNNS~jt?NN~jti-1 word stillVB#~j?VBPM?RBʡEVBZˡE?JJˡE?NNK7FWףp= RBR)\(VBNd;O?WDT~jtJJRNbX9VBDMbX?IN#~j?NNSh|?5VBGq= ףp?i-1 tag+i word PRP$ signalNNMbX9?JJMbX9 i+2 word loadNNSoʡ?JJRNbX9JJNbX9?VBPoʡi-1 word slowerJJ7A`?NN7A`i-1 tag+i word JJ intenseJJJ +?NNJ +i-1 word deteriorateRBRtV?JJRtVi-1 tag+i word , endsCC^I +VBZ^I +?i-1 tag+i word DT yuppieNN+?JJ+i-1 tag+i word VB alterVBh|?5?JJh|?5i+1 suffix mokVB-?VBN-i-2 word sansuiVBGX9v?JJ/$NNV-@RBRtVֿRBKVBZq= ףp?i-1 tag+i word POS marriageNNMbX9?JJMbX9i-1 tag+i word PRP$ filingJJ$CNN&1VBGX9v?i+2 word toxinVB1ZdVBP1Zd@ i word osakaVBV-JJV-NNP'1Z@i-2 word sitcomFW1ZdNNP1Zd?i-1 tag+i word IN oatsNNSK7A`?NNK7A`i+2 word businesses WDTQINQ?VBh|?5JJM?NN+VBD}?5^I?VBNx&1JJRq= ףpVBG|?5^?RBRq= ףp?VBPm?RB(\RP(\?i+2 word pretaxRB9vVBZh|?5DTʡEӿNNˡE?PDTQRBR9v?i-1 tag+i word DT carolinasNNPSGz@NNV-׿NNP^I + i-1 word 'd NNS㥛JJS}?5^IRBS}?5^I?VBNʡ@RBnIN(\VBʡE@VBDv/CClVBP ףp= i-2 word action PRPV-JJMb?VBGMbX9RBZd;O?VBNPnCDV-?VBNN;On?VBDPn?VBP rhi-1 tag+i word NNP col.NNPSClNNPCl?i word chamberlainNNP r?JJ rؿi word boatmenNNSB`"NNPB`"?i+2 word motorcycleNNSx&1̿NNPx&1? i word oddlyRBX9v?JJX9vi-2 word edelmannNNClNNPCl?i+1 word trophyJJ~jt?NN~jti+2 word mirrorJJV-?RBV-i-1 tag+i word IN flameNN+?JJ+i+2 word scienceNN+?NNP+i+1 word workweekCDm?JJmi-1 suffix dryJJnVBGI +?NN rh?RB^I +׿INZd;O i+2 word listNN rhVBNx?JJMbX9i+2 word rivalsVBtV?NNtVRBx&1?JJx&1ܿi+1 word spokePRPCl@RB~jt?NNK7ACD|?5^i-1 word spokenRPS?INSi+2 word ultimatelyNN/$IN333333?VBmݿWDT333333JJRI +?i word holidaysNNSCl?RBClѿi-1 tag+i word DT patriotNNsh|??JJsh|?i-2 word roeckNNԿJJ? i+2 word mostDTCl?CD^I +߿VBDʡEIN-RBRnVBPJ +?JJClNNPjtNNPS)\(NNX9vNNSI +VBZ rhVBNl@WDT$CRBʡE?JJR?5^I ?i+1 word lauderNNP/$@DTx&JJK7A`NNi-1 tag+i word PRP$ elseJJ~jt?NN~jti+1 word executiveNNjt?VBDy&1CDOn?JJS@NNP-@VBClVBGClRBK7Ai word huddledNN"~jVBDZd;@VBNK7i-1 word sometimeJJoʡ?INoʡVBD#~jVBN#~j? i+2 word coliVBN5^I ?JJ rVBD rhi-1 tag+i word FW laserNNffffff?JJffffffi-1 tag+i word JJ quotasNNP/$NNS/$?i-1 word deborahNNPS/$ٿNNP/$? i word owingsNNS+UHx&1NNPm?i-1 tag+i word PRP$ deskNNS~jtNN~jt?i word financierVBJJZd;NN7A` @VBD/$JJRClRBClNNSbX9NNPjti-1 tag+i word IN softJJR-JJ r?NNPQ i suffix eem NNjtJJRxVBNMbX9RBQNNS-VBh|?5@JJ(\VBDGzVBPK7@i+1 word gripesNNK@JJKi+2 word establishJJRS?VBPrh|?JJSVBZx&1NNSrh|NNPMbX9?NNPSQٿNNS㥻i+2 word outweighedNNX9v?JJX9vοi+1 word knowingVB'1ZRB'1Z?i-1 word surprisesNNSV-NN#~j?RB~jti-1 tag+i word NNP richmondNNPS{GzNNP{Gz? i+2 word the"WRBV-?RBSJ +?IN;OnPRPuV?VBD/$WPq= ףpDTZd;O?NNPˡERBRx?MDFxJJS rhտPRP$㥛 RP"~RB/$?VBGFxPDTNbX9NNS{GzĿVBl¿VBNjt?VBPX9vFW|?5^EX^I +?NNPS&1VBZQ?NNQ?CCS?LSRQ?JJRT㥛 ''y&1?WDTCl@JJ\(\POS^I +CDI +?UHB`"? i suffix JanJJV-NNPV-?i-1 tag+i word VBZ nearVBGzINGz?i+2 word predictableJJ$C?NN(\NNP+i word oppenheimerNN(\JJ(\NNP= ףp=?i-1 word deltaVBPCl?VBNDlJJףp= VBDS㥛VB}?5^I?i-1 tag+i word DT espressoNN{Gz?JJ{Gz i word rangeVBPV-?VBZʡENNP\(\?VB~jtÿNNPSMbXɿNNI +?VBDMbi word tighterNNMb RB㥛 JJOnJJR@i+1 word menellNN"~?NNP"~i+1 word interestRB rRPjt?DTK7ɿVBX9v?VBGS㥫RBRDlVBNI +@CCL7A`?INZd;O?WDT}?5^INNPQ CDGz?VBZ~jtȿNN{GzĿVBDw/ܿNNSK7JJRʡE@JJQ@VBP/$?i-1 tag+i word RB treatingJJEпVBGE?i+1 word strongholdJJtVNNPtV?i+2 word closingsVBV-VBNV-? i word vagueVBN ףp= VBGJJ(\@NNffffff i-1 tag+i word NNS upstreamRBQ@JJp= ףNNSoʡi word grudginglyNNSw/RB-?NN㥛 i-1 tag+i word RB hundredsNNS(\?VBD(\i+1 word excrutiatinglyVBHzGVBPHzG?i word montedisonNNq= ףpNNPq= ףp?i-1 tag+i word TO successorVBffffffNNffffff?i-1 word culturalNNS~jt?JJRKNN)\(NNP+?i-2 word forestryVBZQNNSQ? i word millsNNPʡEVBZ#~jNNPSʡE@NNSRQ?NNCl i-1 suffix soNNNbX9JJR^I +?DT1ZdFWMbX9?JJS?5^I ?JJ@VBZClVBGDlNNS/$RBS?5^I VBPPn EX+?INA`"?WP-?WDTClVB"~j?RPClRBv@VBDp= ףVBNV-i-1 tag+i word -START- emergingVBGX9vJJZd;O@NNPQۿi word consequencesNNS|?5^?NN|?5^i word promotionNNPSV-NNPsh|?@VBZoʡi word desktopNNK7@JJK7i-1 word bloodstreamRBV-?JJvNNS㥛i+2 word geneticVBN1ZdVBD1Zd? i-2 word chopNNSGzNNGz?i-2 word splashyNNV-?NNSV-i-1 tag+i word `` shockedJJ9vVBDPnNNnVBNHzG?i-1 tag+i word NN reliefNN +?VBN\(\JJM i word pastNNPSZd;VBGV-JJ@INS@VBDx&1JJSlVBNQNNPS㥛NNSGzVB#~jRBI +?NNmRBRHzGVBPuVi-1 tag+i word RB riskyNNx&VBZ rhVBRQJJ(\@i-1 tag+i word VBP wellNNV-߿RBV-? i+1 suffix my VBB`"@POSx@VBPGzοIN"~j?VBZxNNPףp= RB"~jNNK7AVBDClVBNxUH!rh?JJZd;Oǿi-2 word awareNNSoʡVBGENN/$@NNPV-i+1 word constantlyVBGQ?NNQi+2 word circularsVBGw/NNK7?JJV-i+2 word uniroyalNNx?RBxi-1 tag+i word `` sweetheartNNSX9vNN$C?JJ7A`i-1 tag+i word JJ guysNNlNNSl?i-1 tag+i word CC supportedVBNL7A`VBDL7A`?i-1 tag+i word NNP christensenNNPSZd;׿NNPZd;?i-1 tag+i word VBN consummatedVBNA`"?JJA`"ۿi+1 word angerVBG +?JJ +޿i-2 word highlightNNʡE?JJʡEi+2 word minority VBQCC(\?JJS㥛?DTuVNN㥛 ¿FWS㥛JJRX9vVBPQ?NNP㥛 ?i-1 tag+i word DT exRB/$JJjt޿FWK?i-1 tag+i word IN albionNNˡENNPˡE? i+1 word moonJJ|?5^NNP|?5^?i-1 tag+i word IN foundationsVBZT㥛 NNST㥛 ?i-1 tag+i word IN forcingVBGZd;?JJZd;i-1 tag+i word , forecastsNNS&1VBZ&1?i-1 tag+i word TO leveragedVBx&1JJx&1?i-1 tag+i word IN aliensNNS?VBN㥛 NN%Ci-1 tag+i word DT resortNN9v?JJ9vi-1 tag+i word IN minimalJJ|?5^?NN|?5^i-1 tag+i word JJ easierJJR^I +?NN^I +i-1 tag+i word VBD whipsawedVB rhVBN!rh?JJx&i-1 tag+i word DT portlandNNQNNPQ?i-1 tag+i word VBZ dataVBPK7NNS1ZdNN@i+1 word influenceVB~jtRB~jt?VBG~jtJJffffff?NNMbX9i word undertakingJJENNzG@VBG~jtxi-1 tag+i word VBD overheadRBh|?5?VBNDlNN/$տi-1 tag+i word PRP$ demeanorNNSp= ףNNp= ף?i+2 word tidesVBZZd;O?NNSZd;O߿i+1 suffix ren INX9vϿNNV-VBNSVBP7A`ڿPRP㥛 JJ/$@VBZx&?NNSZd;׿NNPsh|??VB(\ڿPRP$㥛 ? i word borderVBP(\NN(\?i-1 word competitiveJJsh|??FWNNrh|?i+1 word appreciationNNM?NNPB`"VBGMbXJJ|?5^?i-2 word operatorJJp= ףNNPp= ף?i-1 tag+i word RB tagalogNNPʡE?JJʡEi-2 word workers NN-RBR~jtVBNl?JJ!rhܿJJR~jt?VBZI +ֿVB-?VBDtVIN-VBPtV?NNST㥛 ?RB-?i-1 tag+i word RB impossibleVB(\JJ(\? i word fauxNNS{GzJJ?NNZd;Oi-1 tag+i word TO goodJJ#~j?VB#~ji+2 word pitchedVBZʡENNSʡE? i suffix metVBP$CRBRQVBZZd;NNS+JJ+NN?5^I VBDGz@VBNQ@i-1 tag+i word IN damagingVBGd;OJJd;O?i word beneficiariesNNS?NN i word fecalJJ?5^I ?NN?5^I i-1 tag+i word VBG acrossNNV-INV-?i word laughedVBD+?VB+i-1 tag+i word CD rightRBS@NNV-JJ~jtVBNT㥛 i+2 word led NNS'1ZNNPPnNNPSPn?VBG`"?NNOn?JJtVRP;OnVBDVBN(\?RBRoʡIN;On?i-1 tag+i word CC dengNNPSZd;NNPZd;? i suffix illNNPSX9v߿VBPv/RPtVοMDh|?5 @NNQ?NNSSVBZ/$JJlVBNK7WDT$CRBMbX?VBDWRBHzGINDl?NNPRQ@VBPn @i-1 tag+i word IN takeoffRB(\ݿNN(\?i+1 word couponCDzG?NNbX9޿JJ`"޿ i-2 word mudVBv/տNN~jthVBNSJJ5^I ?i-1 tag+i word JJ swissNNPS rпJJzG?NNPS㥛i-1 tag+i word MD ownVBV-?JJV-i-1 word gardenettesVBPClRBCl?i-2 word standsINK7A?RBK7AVBNZd;OJJ+?VBDMbX9i-1 tag+i word IN solarNNOnۿJJOn?i-2 word fossilRBsh|?@NNʡEVBNSJJ+VBD/$?i-1 tag+i word , retainsVBZX9v?NNSX9v i suffix insVBDOn VBPtVJJ~jtNNPSV- @WP+VBbX9 JJRw/NNPMbX9NN㥛 p"VBZףp= +@NNSV-,@PRP$+WDTV-INJ +i-2 word claudioJJ?5^I VBNX9v?NN'1Z?i-1 tag+i word NNP subjectJJoʡ?NN+VBPv i word cokeNNsh|?տNNPsh|??i-1 word breedingJJV-?NNPV-i-1 tag+i word DT sheerNNbX9?JJvϿNNP5^I  i suffix SolNNPQ?NNPSQi word unheardCDsh|?տJJRQ@NNDli-1 word notes VBN?5^I ?WDT"~jRBh|?5NNP9v?VBʡEVBDOn?VBPףp= ۿINCl@DTx&JJm?NNDli-1 tag+i word CC evaluateVBI +?VBPI +޿i-1 word energeticRBQ뱿NNPGz?JJףp= i-1 tag+i word NNP andVBPˡENNPK׿CCn@DTI +i+2 word draggingNNffffff?VB"~j?NNS+VBNZd;i-1 tag+i word NN acquaintedVBNCl?JJCli-1 tag+i word DT acclaimVBPX9vNNX9v?i+2 word saatchiVBGˡENNˡE?i-1 tag+i word NN aimedVBN@NNMVBDx&1i word stifferVBP-޿JJRS?VBDl i word marniJJX9vοNNPX9v?i-1 tag+i word RB indictedVBNCl?VBDCl i-1 tag+i word -START- weisfieldNNPK7?WDTJ +NNCli+1 suffix \/sNN rhNNP rh?i-1 word movingRBrh| @NNS|?5^JJ-NN\(\RPh|?5i-1 tag+i word DT smoothJJ|?5^@NN|?5^i+1 word which VBN~jtCD"~j@NNP/$RB= ףp=NNd;O?VBP)\(JJQVBZK7NNSM?VBG= ףp=?VBD+?i+2 word mandelaVBG?NNԿi-1 tag+i word `` speakerNNʡENNPʡE?i+1 word outlaysJJ333333NN333333?i-1 tag+i word DT denialNNQ?JJQi-1 word yamataneNNPSJ +NNPJ +?i+2 word extensiveJJSVBDT㥛 PDTS?VBNT㥛 ?i word parallelsVBZffffff?NNSClɿVBDMi-2 word picklesVBZd;O߿NNL7A`?JJjti-1 tag+i word NN opportunistsVBZtVNNStV?i-1 tag+i word NN specializingVBGS?NNSi-1 tag+i word JJ tileNN333333?IN333333 i+1 word fellRBClNNX9v@VBD(\JJ+ VBZ{GzNNSrh|?NNP(\@i-1 tag+i word JJ receivablesNN r@NNS ri-1 tag+i word VBZ bankingVBG rNN r?i+2 word spotlightVB|?5^@VBP|?5^ i+1 word selfVB'1ZJJ'1Z?i-1 word northNNPS㥛VB#~jVBP#~j?JJMb@NNPS ףp= i-1 word notablyNN/$IN/$?i-1 tag+i word VBG thereRBDl?EXDl i-1 tag+i word VBZ investigatingVBG;On?JJ;Oni-2 word notingEXx?RBX9vJJtVNNzGVBG$C?i-1 tag+i word VBG coolVBPh|?5JJZd;O?NNL7A` i suffix 'dVBP;OnVBZ7A`MDX9v @VBDtV?POSMbCDT㥛 i word cocomJJV-NNPV-?i tag+i-2 tag RB VBRBRbX9?WDTNbX9INDlPDTʡE?RBCl?WRBZd;?VBZJ +JJRjtJJV-?NNX9v?NNSGz?VBDS VBNy&1?NNP/$?VBG#~jVBZd;RP~jt@VBP9vҿWPNbX9?DT&1i+2 word checksJJQ?PRPQNNMb?NNPMbȿ i word usesJJK7VBD+RBSINSVBZ-@NNSE?i+1 word felonsJJ)\(ܿVBN)\(?i-1 tag+i word -START- hugeJJ}?5^I?NNP}?5^Ii-1 tag+i word VB misleadingJJS㥛?NNS㥛 i suffix jisJJRV-NNZd;NNPX9v>VBV-NNPSʡ@ i-2 word partNNv?VBZHzG?DTA`"˿RBV-?NNP5^I ?VBP^I +?IN%C?VB^I +VBGˡE?VBDEPDTK7A?VBNA`"NNSJJCCFxPOSʡEWDT%CԿCDSi+2 word roughlyVBP?5^I ?VBGZd;NNCl?JJS㥛i word hucksteringVBGX9v?NNX9vi+2 word thriftsJJ~jtRB?5^I ?NNPw/? i-2 word thatVBG/$CCuVPRP$ףp= PRPK7?NNPSS㥛?FWZd;ϿWP/$?RB?5^I ?RBRjtMDCl?WDTʡEEXK7A`?JJSx&NNSERBSHzG@INjt޿VBZx?DT;On @CDOnVBN/$RPoʡݿNNq= ףpPOSEVBDI + @JJjtNNPRQпVB+ @PDT/$?JJRbX9?UHK7AVBPL7A`?i-1 tag+i word NN committeesVBZNNS? i word puertoNNPSK7NNPK7?i-1 word consequentJJRh|?5?NNh|?5i word keepingVBGMbX9?NNPMbX9 i word force NNPT㥛 ?NNPS(\ҿNN5^I @VBDClVBZ-RBNbX9пNNST㥛 VBrh|?JJ/$VBN}?5^IVBPCl?i-2 word flexibleVBZL7A`NNSL7A`?i-1 tag+i word DT ailingVBG|?5^ٿJJL7A`?NNMbпi+1 word production VBV-?NNPS ףp= ?NN-?VBDnڿVBN-?JJSSCD$CJJRQ?NNP +i-1 tag+i word WDT includeVBZX9vVBPX9v?i+1 word classroomJJB`"?NNB`"i-1 tag+i word NNP trosNNSʡE?NNZd;ONNP&1i-1 tag+i word VBP lagVBPףp= ?NNSףp= i-1 tag+i word , refusesVBZS?NNSSi-1 tag+i word VB seeingVBGCl?JJZd;OVBKi-1 word freewayNNSB`"NNB`"?!i-1 tag+i word NNPS jurisprudenceNN r?NNP rпi-1 word evidence VBGMbX9?WDT㥛 VBZ= ףp=DTNbX9NNMbX9VBDNbX9?VBNNbX9RBZd;O?INM@i word repossessedJJV-?VBNV-i-1 word speakingNNPZd;?NN)\(ԿVBDmRBRZd;VBNm?NNS)\(?i-1 tag+i word JJ staplingVBG rNN r?i-1 tag+i word NNS marchVBP(\?NN(\i word realignVBI +?JJI +i-1 tag+i word NNS backedNNP(\ȿVBD r?VBPKVBN{Gz?i word cilcorpNN rh?NNP rhi+1 word totallyVBN+RB+?i-2 word violatesJJ;On?NN;Oni-1 tag+i word NNP policyNNPSPnпNNzG?NNP9vi+1 word evaluatesJJ~jtNNPtV?NNK7i+2 word scaleVBq= ףpVBPq= ףp? i-2 tag VBPPDTX9v?FWK7?NNSoʡ?CDbX9?PRP$ʡE?VBZOnNN^I +ǿEXjtIN1ZdۿNNPSZd;JJRʡE?POS'1ZԿPRP!rh?RBS/$?RBRv?UHy&1?VBG ףp= RBKVB)\(JJS^I +VBDˡEWDTV-?WPx&1?DTnʿ$~jt?NNP(\?MD'1ZVBN ףp= ?VBPsh|??JJS㥛?RPX9v?i-1 tag+i word JJ bordetellaNN9v?NNP9vi+1 suffix gilNN?5^I ?JJ?5^I i-1 tag+i word JJ crucialNNS ףp= JJ ףp= ?i-1 tag+i word , goodyearVBPQֿNNPQ?i-1 tag+i word NN bagsNNSV-?VBZV-i-1 tag+i word NNP wineNNS ףp= NN ףp= ?i-1 tag+i word , tiredJJCl?VBDCli+1 word himself VBD/$@VB= ףp=RBX9vNNFx@PRPtVJJEINZd;?VBZ#~j?NNPDlNNPSClVBN~jth?CDtV?i-2 word supreme VBGRQ?NNA`"VBD(\µ?NNSMb?VBffffffVBPx&1@JJVBZ!rh?NNP333333i+1 word anything VBMbX?JJzGVBNbX9ֿRBClINCl?NNSѿNN&1ڿVBDˡE?VBZ?i+1 word displeasesDTd;O?INd;Oi-1 word recommendedNNS rh?VB rhVBG+NNn?JJQ?i-1 tag+i word POS brilliantJJ\(\?NN\(\Ͽi word tachycardiaNNSA`"NNA`"?i-2 word allegations NNOnVBDI +VBNI +?JJ7A`NNP&1?RPE@RBRnVBGCl?RB1Zd?i-1 tag+i word NN chargesNNS%C?VBZ%Ci-1 tag+i word , counterVBSVBPS?VBDSi-1 tag+i word NNS reflectVBPV-?JJbX9VBDK7ٿi+2 word stockVBD7A`ҿVBN rh NNSx&1?VBGA`"ӿJJ~jtNNPrh|?NNtV?VBPףp= ?IN5^I ?VBv/?JJRA`"?RBA`"VBZw/@DTʡECDZd;ORBRA`"WDTh|?5 i word think NNPX9vVBMb@CD5^I VBPy&1@EX7A`INnNNFxVBDx&1VBN333333RBp= ףNNS+i+1 word flashbacksJJ= ףp=?NN= ףp=i word molecularJJʡE@NNʡEi-1 tag+i word CD extrasNNS/$?JJ/$NN/$ i suffix ial VBh|?5RP+RBʡEVBD\(\VBN|?5^ JJ-,@NNS"~NN/$@VBPINX9vVBGV-VBZ/$NNPn@i word streetsNNPS㥛 ?NNP㥛 i-1 tag+i word JJ barNNE?JJEi word toilingVBGK7NNK7?i+1 word difficultiesVBZm?RBmVBNMbX9?JJMbX9i-2 word churchesVBQݿVBN&1JJQVBD?5^I @i+1 word closedNNˡE?VBNQݿJJV-NNS(\?NNP5^I ۿNNPS;On?i-2 word supercomputersDT ףp= ߿IN ףp= ?i+1 word belongingVBZX9vRBX9v? i+2 word raceJJ(\µ?NN/$?VBPHzGRBV-?VBZ(\?NNS(\i+1 word pictureRBRtV@JJRSNN-RBMbؿJJK7?i-1 tag+i word TO buildingVBG?JJI +NNJ +ɿi word dementiaNNS333333NN'1Z?RB/$ i word coffinNNS%CVBNSNNjt?i-1 suffix rs.NNPSxNNPx? i+1 word relyDT/$WDT/$?i-2 word flurryNN!rh?VBG!rhi+1 word disparitiesJJ(\?NN(\ i+1 suffix c$RBI +?INI + i word squareJJ/$?VBQNNx RB~jt?NNP?5^I ?i-1 tag+i word VBD undertakenVBNv?JJv i word whackVBQ@NNSRB#~ji+2 word plagueVBNzGڿJJ"~VBD+? i word howlNNZd;?JJZd;i+2 word commitment''SPOSS?i-1 tag+i word VBD hardestRBSGz?RBGzi-2 word crashRBRMb?JJRMbi-1 tag+i word VBN leveragedNN!rh?JJjtVBD(\i-2 word thoughtfulJJ?NNi-1 word argueDT'1ZܿWDT/$INL7A`?i-1 tag+i word , thinksNN'1ZIN/$VBZl?$i-1 tag+i word -START- institutionalJJ|?5^?NNP|?5^ i word barVBD{GzVBS㥛?NNP\(\NN"~ @JJoʡi-1 tag+i word NN arguesVBZsh|??RPsh|?ſi+1 word bearishRBRoʡ?VBy&1?RP?5^I VBNuVͿJJRoʡſi-1 tag+i word `` foothillsNNS rh?RB/$NNPˡEi-2 word mappingVBKJJK?i word steroidsNNSn?NNnڿi-1 tag+i word -START- holdVBʡE?VBNʡEi word frighteninglyJJd;ORBd;O?i+2 word listedRBA`"?JJA`"i-1 tag+i word VBP intelligenceNNMbX?JJMbXi+2 word masterNNPV-?VBN^I +?RBV-VBD^I +i-1 tag+i word JJ judgesNNPSrh|?NNPrh|i-1 tag+i word NN stereoNNGz?JJGzi-1 word hopingDTlڿINl?i-1 tag+i word JJ educationNN+?NNP+ i+1 word feb.VBZVBPbX9?JJ?NNbX9i+1 word harperNNPx&1?NNx&1i-2 word chandrossJJL7A`?NNL7A`i word licensingVBGbX9NN$@JJT㥛 i-2 word lightWDT+?NNS+JJtV?RBtVi-1 word expectedNNPS^I +׿JJʡE?NN{Gz?VBNDlRBNbX9 @IN`"DT(\NNP/$i+2 word submittedJJ= ףp=CDM?VBNZd;ONN(\µNNPxi+1 word infectionVBN㥛 JJ㥛 ?i-1 tag+i word DT growVB-?VBPMbXѿNNzGi-1 word salomonNNPT㥛 @NNPST㥛 RB-ƿIN-?i-1 word policiesVBPFx?NNFxѿi-1 suffix sexVBZV-?NNSE?NNPʡEi-1 tag+i word RB amountVBNbX9@VBPNbX9i+1 word humanitarianRB ףp= ?JJ ףp= ߿i-1 suffix ov.CD\(\?NNPB`"ѿJJZd;OտVBDZd;O׿ i suffix 270NNRQCDRQ?i-1 tag+i word WDT meetsVBPʡEӿVBZʡE? i+2 word bandJJ5^I NNP5^I ?i word decreaseVB1ZdۿNN +?JJ i+2 word ourFWM?VBN(\?PRPSRBS?VBZy&1?DT(\?VBDd;O?VBP~jtJJRV-VBGZd;ϿNNPS'1ZJJRBRV-?CDrh|?VBrh|߿NNSV-NNPbX9 NNl?i+1 word spotsVBGq= ףp?NNoʡJJ"~?NNP-VBDCli-1 tag+i word TO furtherRBR?RBA`"JJ;On?VBjt i word oaksNNPS|?5^@NNP|?5^i+2 word asbestosVBN?5^I ?VBD?5^I i-2 word sheltersJJRQNNPRQ? i+2 word fatsNNSp= ף?RBMbNNPL7A`i word liberalizingJJuVVBGuV?i-1 word reproducedNNZd;O?JJZd;Oݿi-1 tag+i word `` abusiveJJ+?RB+ i-1 word trimNNHzG?JJZd;?NNPK7i-1 tag+i word NNP totalingVBGX9v?RBRX9vi-1 tag+i word NN averageNNZd;?INZd;i-1 tag+i word PRP$ tradingNNX9v?JJX9v߿i+1 word electionNNSZd;JJ-?NNlڿi-1 tag+i word NN mixNNSSNNS?i-1 tag+i word JJ tariffNNS㥛?CDS㥛i-1 word routineVBZnNNS'1ZNN{Gz @JJ rhi-1 suffix kisVBP%C?JJOnNN+ǿVBDMbi+2 word jettyDT= ףp=?JJ= ףp="i-1 tag+i word NNS unconditionallyVBPDlRBDl?i word partisanJJMb?NNMbi-1 word frenzyWDTd;OINd;O?i-1 suffix usyJJT㥛 NNS㥛VBG"~j@i-1 tag+i word -START- fletcherNNPtV?RBx&1ȿJJ{GzĿi word roughlyRBK7?NNPK7i word tastierNNERBRV-JJRQ?i-1 tag+i word POS deepeningNN/$VBGX9v?JJOni-1 tag+i word VBG learnedVBNQ?VBDQ i+2 word mr.''\(\?VBZx&1@VBNx&1NNQ?CC+?RBRV-?VBGV-?WPS㥛?RBOn @WRBCl?PDTSMDS?WDTJJtVNNS㥛 ?CDQINX9vUHʡEVBDx&1?NNP?5^I JJRFFWV-?NNPSx&1VBRQ?POS\(\VBP{Gz?RPMb?DT5^I ?i+2 word readsNN`"?JJ`"i-1 tag+i word DT recruitingVBG rhNNV-@JJףp= i word tamerJJvJJRCl?NN~jtӿi-1 tag+i word NNP sawVBZV-ͿPDTʡEVBD㥛 ?i word weakensNNSףp= NNP}?5^IVBZˡE@i+2 word stoodNNS㥛?JJS㥛i tag+i-2 tag FW RBJJRףp= ?RBRףp= i+1 suffix zaiNN-JJh|?5NNP%C?i-1 tag+i word RB specialistNN(\?JJ(\i-2 word supremacyNNSWDTS?i-2 word insteadVBNDlNN ףp= JJS㥛?NNSI +? i suffix basVBw/NNPw/?i-1 tag+i word NN comeVBHzG?VBD7A`ҿVBNFx?VBPd;O?JJ/$NNSuVi-1 tag+i word -START- mourningVBGd;O?NNd;Oi word stoltzmanNN+NNP+?i-1 suffix tapVBZ(\NNS(\?i-1 tag+i word NN decadesVBZQNNSQ?i word jokinglyVBP/$RB/$?i word lubricantsJJ~jtNNS~jt?i+2 word patersonNNQ޿NNPQ?i-1 tag+i word RB filedVBNDl@JJV-VBD$Ci-1 tag+i word NNS lookVBQ?VBPK7?JJK7VBDQi-2 word repliedNNSh|?5UHS㥛RBFx?i word cutbackVBZjtNNjt? i suffix DoPRP$ʡEVBPZd;O @JJK7NNPSVBGz?NN+i-1 tag+i word NN wellNNS㥛@VBD(\RBK7?VBPK7UHPni-1 tag+i word PRP dullerRBRn@JJR?5^I RPoʡտi-2 word multipleVBZh|?5NNx&1?NNPV-i word accomplishedRP+VBN;On?JJDl? i suffix itiNNS~jtNN/$NNPS@i word bowaterNNffffff@NNPffffffi-1 tag+i word : eduardRB ףp= NNP ףp= ?i-1 tag+i word JJ silvaNN-?NNP-i-1 word suspectedJJx&?NNx&i-1 tag+i word VBD sterlingVBG)\(JJʡE?NNHzGNNP7A`?i-1 word practiceWDT~jt?IN~jti+2 word ascribedJJrh|?NNrh| i word busesVBZ(\NNS(\?i-2 word waxmanJJ?5^I NNP?5^I ?i-1 tag+i word DT modelNNsh|?JJsh|??i-1 tag+i word WDT makeVBPʡE?VBʡEi word congressmenNNSףp= @JJlNNPMDClNNPSQ?i+1 word chokingNNS+NN+?i word casinosNNSV- @NNS㥛NNPNbX9VB\(\߿ i suffix lisNN7A`VBD(\JJh|?5NNSuV@NNPFxVBV-NNPSL7A` @i-1 tag+i word VB mostJJSK7?RBSK7ٿi-1 word pinkertonPOSZd;?NNZd;i-1 suffix iceVBDMbX9?JJDlNNPSQ?VBGMbX?VBNףp= VBPS㥛WDTx&1NNp= ףؿVBzGEXV-DTMb?RPJ +ٿNNSl?NNPp= ףRBSS㥛?RBR~jt?CD= ףp=?INx&JJSd;OVBZ/$RBp= ף@JJR~jt i suffix unkVBN?RBѿVBZ|?5^ڿNNS?5^I JJ?5^I NNE@i-1 tag+i word VB staticNNSʡEJJʡE?i-1 tag+i word NNP plantNNPS= ףp=NNZd;NNP&1?i+2 word resolveVBNX9v?VBDX9vi word pessimisticJJS㥛?NNS㥛i+2 word wildlyVB rؿVBPd;ONN1Zd?i+2 word franchisesVBZˡE@NNSˡEi+1 word walkerNN"~NNP"~?i-1 tag+i word CC comeVBN/$?VBDB`"?VBZGzVB㥛 VBPh|?5i-1 tag+i word IN banxquoteNNPNbX9?NNNbX9пi+1 word bankruptciesVBN"~VBD"~? i word yaleJJV-NNPh|?5@RB+NNDlVBPI +UHMbX9 i word hissedVBNxJJZd;OǿVBD?i-1 word restrictsNN)\(?JJ)\( i word cervixNNS9vNNJ +?RBK7Aؿi word redefineVB^I +?NNS^I +i+2 word dismalVBNuV?VBDuVi-1 tag+i word NN behindVBZzGҿVBv/INZd;?NNVBDQi word desiredVBNx&1?JJx&1 i+1 word lbosJJRMb?RBRMbi-1 tag+i word , r.iNNPSOnNNPOn? i-1 word cutsVBGK7A`RP%C?NN"~j?VBDʡEVBNtV?VBPʡE?RB%C i word nz$VBV-$?5^I ?NNP)\(!i-1 tag+i word -START- regardlessNNSRBS? i word away RB/$ @NNo!VBD+JJMbXINw/VBZ"~jVBSRP{Gz@PDTK7AVBNQVBPx&1NNSA`"i-1 tag+i word ) foreclosedVBD333333ۿVBN+?JJtVi-1 tag+i word `` jurisprudenceNNMbX9@NNPMbX9i+2 word duplicateRP +?IN +ֿ i+2 word to VBPw/ĿVBZ;On?DT|?5^ٿCCK7NNPSw/JJR)\(?UH㥛 ?WDTw/@WPX9v?RBRx?VBDQ?VBN#~jԿRBM@NNPxFW rhNNST㥛 ?RBSm@PRP$V-@RP)\( EX7A`VBG;On?$?MD1ZdӿJJS`"VBy&1?CDT㥛 INfffff''B`"JJ-ӿNN?POSnPRPtV?i-2 word revealNNK7A`@NNSHzGRBR$C?JJlJJR$C i-1 word last RBR)\(VBNClVBP1ZdNNPSMbXٿNNʡE?VBDCl?FWQJJ~jt@CD}?5^I?NNS"~NNP|?5^ʿVBG/$i word expandingNNp= ף JJT㥛 VBGET@i-1 tag+i word NNP participateVB5^I  @VBP(\NNK7Ai word plottingVBGPn?JJPni-1 tag+i word NN attractingVBG1Zd?NN1Zdi-1 tag+i word , criminalJJ(\?NN(\ڿi word effectsNNPS@NNP i word wayneNNPS?NNZd;O߿JJZd;i-1 tag+i word NNS telegraphedVBP rhVBD rh?i+1 word openingVB)\(?NNClVBD333333ÿPOSn?JJw/?VBZA`"NNSK7A`?i-1 tag+i word DT jokesNNSNbX9?NNNbX9i word discountsNNSL7A`?JJL7A`пi-1 word turnaroundJJ1ZdIN1Zd? i-2 tag FWVBPX9v?JJ1ZdFW~jt?RBRGzVBGʡE?NNuVտVBZNbX9DTS㥛RBSCCNbX9?INS㥛?NNS|?5^?NNPK7VBClNNPSףp= ? i word wis.JJI +NNPI +? i suffix A21NNx&RBS㥛CDl?i-1 suffix of.NNPSKNNPK?i+2 word oncogenesNNSQCDQ?i-1 word tailoredNNm?VBGm i word risingNNvJJZd;VBrh|׿VBG;On@i word deportedVBNvVBDv?i-1 tag+i word `` dreamNNd;O?JJd;Oi word issuersNNPS7A`¿NNS)\(?NNV-i-1 tag+i word JJ quarterlyNNZd;O@JJ5^I RBh|?5i word racehorsesVBZ'1ZNNS'1Z? i+2 word darkVBGRQ?NNSRQ?NNA`"NNPnʿi-2 word attorneyNNPSPnпNN;On @NNP|?5^i-1 tag+i word RB tripleVB\(\VBPZd;OݿJJ$C@VBZ5^I i-1 tag+i word NNP challengesVBZZd;?NNPZd;i-1 word coherentNNPS/$ӿJJ/$?i+1 word studyJJK7A`VBZNbX9NNSZd;O?NNV-? i suffix hovNNGz޿NNPS?JJ#~ji-1 word movieVBDxVBNx?WDT$CۿIN$C?VBZS㥛?VBGGzNNm?i-1 word soundsRB|?5^INh|?5?JJq= ףp@RPʡEVBNRQi+1 suffix walNNx&1?JJx&1i-1 tag+i word CC frostedNNPS/$ٿNNP/$?i-1 tag+i word POS viewJJK7AؿNNK7A?i-1 tag+i word IN standardizedNNK7AJJV-?VBNA`"i-1 tag+i word NNP holdVB5^I ?VBPy&1?NNPy&1i+1 word speechesJJV-VBNV-?i-1 tag+i word IN overINq= ףp@RPlҿJJMNNlCDV-RBʡE?i-1 word convertibleJJ?VBGV-VBN5^I ?NNjtVBD^I +i-1 tag+i word CD anniversaryNN5^I ?JJ5^I i-2 word brookeVBZʡE?NNSʡE i-1 word cityMD&1VBX9v?INB`"NNP&1?NNzG@VBD333333WDT+?VBZ rNNSQ?VBG+VBN^I +?RB~jt?POS&1?VBP&1i-1 tag+i word VB sellingVBG ףp= ?NN ףp= i-2 word abolishJJZd;NNZd;?i-1 tag+i word IN kingNN(\NNP(\? i-2 word n.vNNPSw/NNPw/?i+1 word lightsJJK7?NNK7i word dabbledVBP= ףp=VBD= ףp=? i-2 word kindVBQVBGA`"RB/$NN= ףp=@VBDS?CC?5^I JJp= ף?NNPmi-1 tag+i word VBN spillNNQ?JJQi-1 tag+i word VBN allDTMbX9?PDT;On?RBi-1 tag+i word JJ decorNNSOnNNOn?i+1 word bulletsVBN-?JJ+VBDMbXi-1 tag+i word NN laggedVBNvVBDv?i+1 word computerVBNʡE?JJRNbX9?CD%C?NNPSzG?RBRNbX9NNS-NNPQ?$L7A`VBZQ?NNx&1VBDS㥛RBSx&1JJClVBG rhͿJJSx&1?i-1 tag+i word PRP$ centennialNN rh@JJ rhi-1 tag+i word NNP rankedVBNX9v޿VBDX9v?i-2 word valuesJJ"~NN9v?VBPDl?i-1 tag+i word IN discountsNNSL7A`?JJL7A`пi-1 tag+i word WRB doVBʡE?VBPV-JJ= ףp=i+2 word wordsRB+IN+?i-1 tag+i word ) getVBS?VBPS i+1 word u.k.VBZx&NNPSClVBGV-JJV-?NNPPn?i-2 word provedJJOn?VBGx&1?JJROnNN^I +RBROn?i-1 tag+i word WDT dependsVBZQ?NNSQi-1 tag+i word POS paintingNNS㥛?JJ333333VBGtVi-1 tag+i word : nonePDTMbX9NNMbX9?i-1 tag+i word WDT performedVBP%CVBD%C?i-1 word guiltyNNSGz?NNX9v?RBZd;Oi-1 tag+i word , epoNNPPn?CDPni-1 tag+i word VBN operatingVBGx&1?NNbX9JJ333333ӿi-2 word silveryNNX9vJJX9v?i+1 word possibilitiesRBK7INK7?i-1 tag+i word POS assistantNNPn?JJPni word thyselfPRPjt@NNPjti-1 tag+i word CC inaccuracyNNSnNNn?i-1 word accidentallyVBʡE?JJʡE i-1 word cyNNh|?5NNPh|?5?i+2 word sulfurJJ'1Z?RB'1Z i-1 word mxNN333333?JJ333333 i suffix .G.VBMbXNNPMbX?i-1 tag+i word IN faceNNS?VBP/$JJCl?VBZSNNSsh|?VBS?i-1 tag+i word NNP agnelliNNPS-NNP-?"i-1 tag+i word NNP pharmaceuticalsNNPS;OnNNP;On? i-1 word seatWDT㥛 ?IN㥛 ڿi-1 tag+i word -START- soybeanNNn@JJ$CNNPp= ףi-1 tag+i word PRP stupidVBPClJJCl? i word tuckedVBN;On?VBD;Oni+2 word pollinationVBZV-?POSV-i+1 word erredVBv׿VBPv?i-1 tag+i word VBN votingVBGZd;ONNZd;O?i-1 word slippedRBZd;O?JJRV-?INzGʿRPʡERBRV-i-1 tag+i word -START- bailiffsPRPGzNNSGz?i word schrodersNNPSjtNNPjt?i-1 tag+i word WDT endedVBNQVBDQ? i-2 word ddiVBZd;O߿VBPZd;O?i-2 word occasionallyVBNZd;JJZd;?i-1 tag+i word -START- mikhailPRP$SNNPS?i-1 tag+i word VB undergirdingVBG/$NNףp= ?JJ rؿi-1 tag+i word VBP dungNN+?JJ+i word recallsVBZzG@VB&1NNS rhVBDd;Oi-1 tag+i word CD adrsNNStV@NNvNNPQi-1 tag+i word IN detailedVBNV-?JJV-ϿVBDʡEi+1 word alcoholDT;On?RB;Onҿi-1 word describingDT/$?WDT/$i+1 word clergymanJJV-?NNV-i word forgivenJJtVVBN|?5^?RBMbPi-2 word carpetCDX9v?NNPX9vi-1 tag+i word NNP buyingNNx&1VBGx&1?i-1 tag+i word NNP woundVB|?5^?VBD|?5^ i suffix OKNN-޿VBNDlJJ+@NNPK UH}?5^I?i word stubbornVBZ㥛 VBN|?5^JJx&1?i word engagesVBZZd;O?NNSZd;O i suffix CESVBPZd;NNPS^I +?NNSx&@NN'1ZNNP(\i-1 word practicedNN\(\?RBRSJJ\(\INS?i-2 word gradualRB?IN i-1 word each NNPS^I +VBG#~j?JJ+NNCl@VBNX9vCDMb?NNP^I +?VBDsh|??VBP/$?RB(\NNSCli-2 word extendPDTK7A?NNK߿JJX9v߿VB&1?i+2 word ploysNNPS#~jNNS#~j?i-2 word ceremonyVBG/$JJS?NNGzNNPV-?i-1 word longtimeRBClNNS?JJEVBZK7ANNSK7A?NNPS㥛?i-1 tag+i word PRP stoodVBZSVBDS?i word tacticsNN+NNS+?i+1 word resistantNN rh?JJR~jtпJJ rhRBR~jt? i-1 tag+i word NNP centerfielderNNPSClNNCl?i-2 word industrialsJJlRPsh|?RB\(\@i-2 word headedNNP^I +?RBuV?NNuVJJ^I +i word oversightRBV-NNQ@VBD/$VBNK7JJZd;NNST㥛 i word whizzesNNFxVBZuVտVBP'1ZNNSV-?i-1 tag+i word DT extentJJ/$VBN rhNNv/@i-1 tag+i word RB playedVBN= ףp=?VBDy&1|?VBtVVBPؿi-1 tag+i word NN allowsVBZCl?PDTʡEJJjti+2 word rublesINjt?VBNx&1?RBjtVBDx&1i-1 tag+i word PRP beginVBJ +?VBPJ + i suffix oup VB1Zd?VBPFx?NNP/$?NNPS/$JJ+NNS?VBD|?5^FWCl?RBRQNNSMbi-1 word major NNPS+?NNn?VBD|?5^VBNףp= ?JJ{Gz?VBZS㥛NNP+VBGoʡ@JJRxNNS +?i-1 tag+i word JJ plotNNSGzNNGz?i-2 word constitutesNNMb?JJMbȿi+2 word smeltingNNP~jt?NN~jti+1 word regularityJJV-?NNPV-i-1 tag+i word NNP matterVBZ1ZdNN1Zd? i suffix actVBoʡ@VBNSNNPV-RPx&1NNv/ @VBDRB"~VBZ/$NNSv/RBR +VBPE?VBGKDTףp= JJK7@i-1 tag+i word NNP liturgyNNPS-NN-?i+1 word fasterNNʡE?VBPE@JJEIN/$VBrh|߿RPK7A`?RB(\i-1 tag+i word RB leaseVBK7A`?VBPZd;OVBD333333i-2 word enjoyVBP+RBS?INM?i-1 tag+i word NN seatedVBNS?VBDSi-1 tag+i word DT profNNSMbXNNMbX?i-1 tag+i word VB freshRB)\(JJ)\(? i-2 word kingJJ?5^I ¿NNؿNNPPn?i+1 word aquariumNNSlҿNNl?i-1 tag+i word DT philippineJJM@NNPMi tag+i-2 tag NN PDTRB(\?NN(\i-1 word financingJJʡE?VBNL7A`?NNףp= VBDK7Ai-2 word problems VBPʡEJJRL7A`?DT?NNjtVBD rh?VBNS?INSRBRL7A`JJS㥛VBuV@VBGQ?RBZd;? i suffix PRONNPlFWl?i word wavelengthsNNSMbX9?NNMbX9 i word hardyRB(\NNʡEVBDx&1̿JJV-@NNSʡEi+1 word employmentPOSp= ף?''p= ףVBG/$?JJA`"@NN/$ i-2 word ethicsVBN~jt?NN~jt i-1 word giftNN!rh?RB!rhi-1 suffix ftcRBx&?NNx&ѿi word toolingVBG+NN+?i-2 word certain VB(\?NN?VBNx&1?INCl?NNSSſJJq= ףpͿVBDx&1RBR|?5^?JJR;OnRBMbX9VBZ(\i-1 tag+i word NN abandonVBX9v?VBP&1NNMbRB~jti-1 tag+i word VBD billionsVBZ+ӿNNS+?i+1 word readersIN= ףp=?DT= ףp=VBPK7?JJzGNNPv߿i-1 word assessmentNNS㥛 VBZ㥛 ? i-2 word allWDTffffff޿JJClVBZSDTJ +VBD/$?VBNsh|?@JJRA`"?NNPZd;@VBPn?NNPSq= ףpVBPV-ݿRB1ZdVBG-IN#~j?RPX9v?NNNNS"~@i word fightingVBGn@VBNFxɿJJ333333i-1 tag+i word VBD introducedVBNK7?NNK7i-1 word quickviewVBDX9v?NNPS㥛 ?VBNX9vNNP㥛 ¿ i+1 word septVBNL7A`?VBDL7A`i+1 suffix ictVB|?5^?NN|?5^VBN/$?CD/$JJ?NNPq= ףp?i-1 tag+i word IN fixingVBGX9v?NNX9vοi+2 word signsVBDA`"?DT333333ÿVBPtV?NNS㥛IN333333?i-1 tag+i word , minusCCp= ף@VBSVBPQRBZd;Oi-1 tag+i word NNP indictedVBN9vVBD9v?i-1 tag+i word DT darkNN#~jJJ#~j?i-1 word museumJJ"~jIN"~j@ i+1 word dukeVBN"~jJJ"~j?i-1 tag+i word VBZ allegedVBN1Zd?VBD1Zdi-1 tag+i word JJ insectsNNSV-?JJV-i-2 word bandwagonRBRʡE?JJRʡEi+2 word fisherNNPRQNNRQ@i-1 tag+i word VBZ guiltNNSA`"NNV-?JJ"~VBDCli-1 suffix uffRBClINPn?VBZX9v?VBX9vRPPnNNCl?VBDA`"?VBNA`"i-1 suffix innVBGZd;NNZd;? i suffix cioNNjt޿NNPDl?VBZDlFWK?JJR/$i-1 word unionNNMb?VBDV-?VBN)\(VBZ'1ZNNSq= ףpNNP5^I ?VB`"i word decidesVBZS㥛@NNSFxJJT㥛 i-2 word raisingVBGNbX9JJS㥛?NNPni-1 tag+i word NN oustedJJrh|VBDrh|? i suffix wooJJ{GzWPMVB"~?JJRtVi word necktiesVBZmNNSm? i+2 word growVBN-VBD-?i-1 tag+i word DT instrumentNN$C?JJ$Ci-1 suffix ogiNNPSp= ףNNPp= ף?i+2 word pentagonVB#~jVBGX9v?NNX9vRB#~j?VBZ/$ٿNNS/$?i word mulfordNN|?5^NNP|?5^?i word pretrialNN'1ZJJ'1Z?i word aerospaceNNʡE?VBNtVVBPX9vJJCl@NNPZd;OտVBx&1ؿNNPS rhi+2 word torstarVBN$C?NN$Ci-1 tag+i word NN thanNNPV-INV-?i-1 word consistentlyVBZffffff?NNSZd;VBN9v?JJ~jtVBDi word informativeJJ`"?NN`"޿i-2 word unamendedVBN+?JJ+i-1 tag+i word RB boostedVBNGzVBDGz? i-2 word day VBGq= ףp?RBʡE?NN rh?VBN rh?JJ(\NNSZd;VBy&1?RBRB`"JJRK?VBP;OnINˡEԿVBZ$Ci-1 tag+i word IN treasurysNNPSCl?NNPCl"i-1 tag+i word RB disproportionateVBuVJJuV?i-1 tag+i word POS fateNNn?RBףp= JJDli-1 suffix leyNNw/?VBD{Gz?VBNZd;JJGzVBZx&1NNS/$@NNP+i-1 tag+i word NN predictedVBN$CVBD$C?i+2 word traubNNPSClNNSCl?i-1 tag+i word `` expensiveVBoʡݿJJoʡ? i-1 suffix $CDMbX?JJMb`NN^I +NNP~jti-1 word salespersonVBZCl?NNSCli-2 word baronFW/$@INS㥛NNPCl i word aounNNPSzGҿNNPzG?i+1 word steelmakersWDTףp= JJL7A`?NNL7A`INףp= ?i+1 word placementCCq= ףp?FW?NNV-JJNbX9NNPi-1 tag+i word -START- fairNN r?JJFxNNPCli-1 word pullingRPffffff@RB/$NNпINZd; i+1 word bandVBGJ +?JJ㥛 NNrh|i-1 tag+i word IN !HYPHEN RBCl?NNS$C?NNP)\(@VBG +JJ|?5^ʿNNQֿRBSCD&1@VBNvVBZd;ONNPSS@JJS +JJR7A`?i-1 suffix lmsVBNKVBDK?i+2 word erodeVBG)\(NNOn @JJx&1 i-1 word heesRBR/$RB/$@i-1 word stanleyJJGzNNPGz? i word while VBGNN^I +VBDZd;WPZd;VBPK7WRB$CVBףp= RB +JJzGINMbX-@NNSq= ףp i-1 word iataNNPS/$NNS/$?i word deservesVBZMb?NNSMbi-1 tag+i word DT expandingVBGT㥛 ?JJT㥛 i+2 word callingNN\(\NNPFx?JJp= ף?i-1 tag+i word VBD votedVBNS?JJSi-1 tag+i word TO putVBDEVBQ?VBNh|?5i-2 word dalkonNNS rh?NNP!rhNNPS!rh?NN7A`JJ7A`?VBZ rhi word estimatesVBZZd;NNPSbX9NNSK7 @NNʡEVBDV-i+1 word cautiousRBp= ף?RBRZd;O@JJp= ףؿJJRZd;Oi-1 tag+i word DT similarlyRB㥛 ?NN/$JJni-2 word cargillNNPZd;NNPSZd;?RBSſINS?i+1 word dawnsVBZx&1RBx&1?i+1 word spinalVBZSVBPX9v߿POSS?JJx޿JJRS?i-2 word clinicVBPKVBDK?i-1 tag+i word VBP sorryVBP-NNSKRBK?JJJ +?VBN|?5^i-1 word defectiveNNSGz?NNGzi-1 tag+i word VBZ companyNNGz?NNPGzֿi-2 word artistJJMb?NNMbi-1 tag+i word DT shellNN&1?JJbX9ƿCD"~ji-1 word growth JJMb?VBD;On?VBNK7ACDsh|?տVBP~jt@INv@NNS +VBB`"NNPS#~jNN1ZdRBn?VBZRQ?i-1 tag+i word , ratedVBNrh|?VBDrh|Ͽi-1 tag+i word RB troubledVBNm JJL7A`e@VBCli+1 word otherVBNS㥛RPB`"ٿVBDZd;?VBx&1?CDʡE?JJZd;DTNbX9?NN ףp= NNS5^I PDT~jtFW-?WDT5^I VBZ rh?RBQ?NNPMbRBSuV?JJRGz?VBPK7RBRGzIN#~j?JJSuVSYMʡEi-1 tag+i word IN ethnicDTFxJJFx?i-1 tag+i word MD eagerlyVB(\RB(\?i-1 word indicatesVBN"~j?VBD"~jԿi-1 tag+i word DT journalNN(\?JJ(\i+2 word conditionsINK7A`?JJCl?VBPzG?NNGzRB ףp= i word assistedVBNzG?JJEVBD!rhi-1 tag+i word RB quiteRBOn @JJoʡINnVBMi+2 word handledVBP}?5^INN}?5^I?i-2 word deridedVBNJJ?i-1 tag+i word PRP$ whoringVBG`"NN`"?i-2 word asbestosVBD'1ZVBN'1Z?i-1 word sillyNNK7@JJMbX9VBN/$޿VB+VBGK7i-1 tag+i word JJ rulingVBGףp= NNףp= ?i-1 tag+i word PRP disasterNNoʡ?RPRBtVJJʡEÿ i word blacksNNPSZd;@NNSJJ$CVBZX9vNNStV@NNPZd;i+2 word milunovichCCSRBx&1INB`"?i-1 tag+i word NNS finishedVBNvVBDv?i-1 tag+i word DT scientistJJ{GzNN{Gz?i-1 tag+i word WDT protectsVBZx&?NNSx&i+1 word conceptualJJ"~?NN"~i-1 tag+i word NNS advocatedVBN\(\?VBD\(\߿i word karaokeVBp= ףNNS?5^I NNˡE?FWX9v?i+1 word seasonVBG-NNrh| @VBDX9vCD^I +@VBPS㥛JJ\(\NNPX9v?i-1 tag+i word CC returnsVBZFxNNSFx? i+2 word iiiNNzGNNPzG? i-2 word four RP;OnJJ&1NNMb?VBDSNNSMbX?VBGZd;?VBNHzGRBCl@IN!rhVBZX9v?NNPE?i+1 word donationsVBGM?NNMi-1 tag+i word PRP exerciseVBPQ?RBQ i-2 word 'm NNV-@RB|?5^?INS?RP/$NNS`"VBw/VBG+?JJjtĿVBDCli-1 tag+i word DT excellentJJM?NNMi-1 tag+i word POS pollingVBGOnۿNNOn?i-2 word warriorsINKRBK?i+1 word circuitsVBNw/?JJ|?5^?NNSi-1 tag+i word VBG oilsNNS/$?CD/$i-1 word impulsesWDTS?INSi-1 tag+i word -START- priceNNP!rhԿNNPS5^I NNSX9vNNsh|?@i-1 tag+i word VBN provideNNSۿINvVBPMb? i word voicedVBN rh?JJ rhi-1 tag+i word DT novitiateNN-?JJ-i-1 tag+i word POS massiveJJS㥛?NNS㥛i+2 word routeNNbX9?JJbX9޿i word indianapolisNNPS)\(NNSˡEԿNNPMbX?i-1 tag+i word CC servicesNNPSCl?NNPCli-1 tag+i word TO demandsVB"~NNS"~?i+1 suffix pitNN333333?IN333333i-1 word takashimayaJJ333333?NN333333ÿi-1 tag+i word NN solicitsVBZ$C?NNS$Ci-1 tag+i word RP mileageVBHzGNNHzG?i-2 word resolveNNS㥛JJ"~NNS\(\?i-2 word sustainedVBP-JJd;ONNv/?IN#~j?i-1 tag+i word IN granniesNNPS|?5^?NNS^I +NNPi-1 tag+i word DT convictedVBNZd;O?JJZd;Oi+2 word affectingPRP$\(\VBNDlJJPn?i-1 tag+i word POS multipleJJh|?5?NNh|?5i-1 tag+i word JJ sensitiveJJZd;?NNZd;i+2 word bulletinsJJtV?NNtVi-1 tag+i word JJ proceedsNNS1Zd?NN1Zd i-1 tag JJRNNS㥛@VBDv/?VBP!rhNNS ףp= ?VBK7AVBNw/?RPx&1ؿVBZX9v޿NNP}?5^INNPSNbX9ȿVBG1ZdFW&1?CC333333IN?JJy&1?RBRffffff?JJR/$RBK7i-1 tag+i word NN breakVBZ"~jNN"~j?i tag+i-2 tag '' ,MDffffffJJ{Gz?VBD"~?VBZx&1@VBG!rh?CDw/?WDTjt?RB{GzVBx&CC= ףp=?VBNʡEVBPffffff?NNP1Zd@NN!rhIN'1Z?NNSi-1 tag+i word DT sourJJx&?NNx& i+1 word diesNN+?JJ+i+2 word sightingsRBI +INI +?i-1 tag+i word RB paidVBZSRB~jtVBNx&1ȿNNsh|?VBDZd;@ i word polypsVBp= ףNNS!rh @VBNFxNN1Zdi-1 tag+i word NN retailerNNCl?VBCli+1 word paintingVBGףp= JJףp= ?NNHzGFWHzG?i-2 word localJJMbX9NNPGz?VBT㥛 NN'1Z?POSS?''SVBPT㥛 ?i-1 tag+i word NN perJJ rhFW/$?INMb?NNZd;O i word safeVBN#~jRBQNNS{GzNNPtV?JJZd;@NNK7FWS㥛VBD$C i+1 word slumNN-?JJ-i-1 tag+i word `` confutatisFW%C@NNjtNNPMbi-2 word excellentDT/$WP/$?WDTZd;INZd;? i suffix S&PNNPSSNN$C?JJsh|?NNP(\?i-1 word heightsINCl?RBCli-1 tag+i word NN licensesVBZ|?5^ڿNNS|?5^?i-2 word bigotryVBG;On?JJ;Onڿi+2 word oppositeVBN"~j?VBP"~ji-1 tag+i word NN ebensburgRBGzNNPGz?i+1 word spillVBNQNNQ?i-1 tag+i word DT batteringVBGq= ףp?NNS㥛пJJ㥛 i-2 word begin JJ/$ƿRBR9vJJR9v?VBNS?RB rhRPK7A@PRPPnINoʡ?NN^I +߿ i suffix lewVBx&1NNʡEVBD(\B@VBP㥛 RBtVVBZV-i-1 tag+i word CC invitesVBZCl?NNSCli-1 tag+i word `` stopVB1Zd@NNSffffff޿JJK7ANNV-i+2 word circulatedJJCl?NNGzNNP|?5^ i word blowVBS㥛?NN9v@VBNx&JJ"~jINףp= VBZMbi-1 tag+i word IN reformsNNS㥛NNSS㥛?i-2 word brainsRBR~jt?JJR~jtпVB$CVBP$C? i-1 tag+i word NN communicationsNNSZd;NNPZd;?i+1 word statelyWDT ףp= DT ףp= ?i+1 word maintainedRB ףp= ?VBG rhVBN ףp= NN1Zd˿NNPX9v?i-1 tag+i word DT underwritingNNS㥛?JJS㥛i-1 tag+i word NNS declineVBtVVBPh|?5@NNV-VBDi-1 word spewingNNv?JJvi-2 word thousandVBN?VBDi-1 word alienNNS(\?VBZ(\i word factoryRBJ +NNP/$NNףp= @JJSi-1 tag+i word DT laterRBRm@JJROnRBT㥛 NNZd;JJp= ף@i-1 tag+i word NN featuringVBGm?NNm i word ls400NNMb@NNPMbi-2 word conditions NNSoʡNNP~jt?VB~jtxJJ(\NNJ +?VBDClVBNʡE?VBPV-?CCDlRBDl?i-1 tag+i word NNP valuableJJ9vNNP9v? i suffix podVBP(\NN(\?i-1 tag+i word JJ reaffirmsVBZGz?NNSGzi-1 tag+i word CC illegalNNS"~JJJ +?NNGz i suffix aldVBD$CVBB`"NNPjt @JJ rhNN-i-1 tag+i word IN routinelyJJSʡERBʡE?i word amountsVBZv/?NNPS/$NNSQ?NNCl i suffix ouxJJS㥛NNPS㥛?i-1 tag+i word `` barryJJMNNPM?i-1 tag+i word IN pollutionNN5^I ?JJ5^I ˿i+1 word arlingtonNNPzG?NNzG i-1 word adsVBDK7?RBR"~VBNK7VBPv?RBS㥛?VBMb?NNjt i word haulVB\(\?VBPPDT(\i-1 tag+i word RB worryingNN~jtJJ~jt?i-1 tag+i word VB yetCCvRBv? i-1 word shopVBZv/?NNSv/i+1 word charges NNHzG@VBDZd;O@VBNI +WDTV-JJV-INV-@VBGV-RBSNNSy&1CDS?DTV-?i-1 tag+i word POS lateJJS?RBSۿi word kleinwortNN$CNNP$C? i+2 word hypeVBZS?NNSS i-2 word chefNNʡENNPʡE?i-1 tag+i word RB accedeVBffffff?RBffffffi-1 tag+i word , crapVBPvNNv?i-2 word propertyVBDB`"VBPffffffWDT;On@RBMbX9IN;OnMD ףp= ?JJM?NNS? i word turnRBClNNy&1?VBDd;OVBNClVBP'1Z@JJV-VBZZd;VB"~@i-1 word happenedJJRq= ףpNNd;OֿRBR|?5^?INw/ĿRB/$i-1 tag+i word IN redNN5^I ?NNPK7A?JJ9vNNSQVBN/$i-1 tag+i word -START- heiwaVB rNNP r?i-1 word reducingNNPA`"NNS?NN9vJJ|?5^?i+2 word intimateJJ +?NN +i-1 tag+i word VB clearingVBGT㥛 ?NNT㥛 i word mainframesVBZI +NNS@NNGzNNP9vڿi+1 word singersNNGz?JJGzi word recklessnessNN"~?VB"~i+2 word specificNN= ףp=@VBN~jtJJ(\ؿINJ +?VBZ= ףp=DTJ +ٿVBNbX9?RBNbX9?i-1 tag+i word VBD concernedVBN +JJ +@i-2 word electricVBZq= ףp?NNSq= ףpi-1 tag+i word NNS aroundINl@VBP$CRPDl?RBffffffVBDQi word distortVBʡE?NNʡE i suffix adoNNPSQٿJJT㥛 NNP%C?i word veteranVBQVBP= ףp=NN/$?JJ(\?FWv/ i pref1 4NNPCl NNPSNNGzVBN$CCD?5^I@JJOn@VBZClNNSuVi word strangeNNDlVBN#~jVBPʡE޿JJm!@NNP+?VB9vi-1 word reducedNNQRB^I +׿JJףp= ?VBG"~ji-1 tag+i word RB trottedVBNd;O?VBDd;Oi+1 word pleasedDT+߿WDT+?i-1 tag+i word , considerVB%C@VBPSNNzGi-1 word chrisNNPSS㥛NNPS㥛?i-1 tag+i word VBP tankNNNbX9?JJNbX9i-1 tag+i word DT evenRB/$?JJ+NNp= ףi+1 word unusuallyVBZA`"?VBPA`"i-1 tag+i word NN differencesVBZClNNSCl?i-1 tag+i word WP 'sVBZL7A`@POSL7A`i-1 tag+i word NNP carryVBQVBPQ?i+1 word heartlandNNPGzJJGz?i-1 tag+i word DT purchasingJJL7A`NNPL7A`?VBGuV?NNuVi+1 word irvingVBNHzGVBDHzG? i+1 word deadVBNK7?JJZd;OVBDX9vNNS+?i-1 tag+i word DT tremendouslyRBʡE?JJʡEi-1 tag+i word DT rothschildsNNPSv@NNSSJJK7ANNP\(\ i-2 word conservativeJJd;O?NNV-NNP9vʿ i+2 word jimVBGK7A?RBI +?NNK7AؿINI +޿i-2 word anticipateJJ/$?NNQJJREԸi-2 word treatmentsJJ rh?NN rhi-1 word doubleNNPX9v?VBFx?NNV-տWDTPnJJnٿINffffffֿDTB`"?NNS ףp= i-1 tag+i word VBG slumpedVBDjt?VBNjti+1 word herbigNNx&?NNPx&i-1 suffix ombVBDS@VBN^I +NN`"i+2 word dormantRPI +@INI +i-2 word politicsNNJ +?JJ~jtRBK?i+1 word farmsJJZd;?NNjtVBN ri-1 word debtsRBQֿINQ?i+1 word lexiconNN +JJ +?i-1 tag+i word CC brickNNS?JJSi-2 word collorJJSsh|??RBsh|?ݿi-1 tag+i word NN petrochemicalNNK7?JJK7i+1 word wheellikeJJʡE?NNʡEi-2 word insiders NNSJJZd;O@NNVBP?INQ?DTuVVBD^I +JJRM?RBRMVBNGzRB'1Z?i+1 word superconductorsNNK7A`JJK7A`?i-2 word cornucopiaJJm?NNmͿi word cargillNNbX9JJ+߿NNPMbX?i-1 tag+i word DT thrustNNy&1?NNPy&1i word venezuelanJJ$C@NNP$Ci-1 word perennialNNZd;?JJZd;i-1 tag+i word CC importsVBZHzG?NNSv/JJ rhi tag+i-2 tag WP$ ,NNK?VBP}?5^IJJ?5^I ?VBZ(\NNSQ?NNP ri+1 word excelJJA`"?NNA`"i-1 tag+i word NNP dynamicsNNPS㥛@NNPSS㥛i+2 word ornetteNNS+NNP+?i-1 tag+i word NN takingVBGT㥛 NNT㥛 ?i+1 word chivasVBNZd;O?VBDZd;Oi-1 suffix tagNN+?VBD+i-2 word boardIN?VBGy&1?WDT{GztNNPQ@VBv?DT ףp= VBD\(\?CCjtVBN#~j @RB rh?NNS%C̿NNPST㥛 NNEJJSVBZ%C?i+1 word fancyRBMb?JJMbi-1 tag+i word JJ rethinkVBL7A`NNL7A`?i+1 word broadlyVBGK7?NNzGVBD~jt@RBRMbX9?JJRMbX9VBN~jtNNPK7i word rivetedVBN{GzVBD{Gz? i+1 word rostDTSNNPS?i-1 tag+i word NN liltVBNK7NNK7? i word shellyRBh|?5NNPh|?5?i+1 suffix rolVBPxVBNˡE?PRPMbJJNbX9INMbNNS㥛RBRCl?RBI +DTZd;O?NNSw/?VBx?PDT/$JJR;On?PRP$Mb?NNPRQȿi+1 suffix inzNN|?5^?JJ|?5^i-1 tag+i word NN outagesNNS5^I ?VBZ5^I  i word socialJJ/$NNP/$@i-1 word carltonNNPSV-NNPV-?i-2 word carefullyRB?RPVBZV-NNSV-?i-2 word matchingNNPjtCDJ +@JJB`"?NNV-i-1 tag+i word JJ wheneverNN1ZdWRB1Zd?i+1 word judgmentsJJ~jt?NN~jti-1 tag+i word DT nearbyJJJ +?NNJ +i-2 word panamaVBGGzNNGz?i+1 word programmersNN(\?VBNX9vJJlҿJJRCli-1 tag+i word NNP eliantiNNP?VBZi-1 tag+i word NNP makeVBP{Gz?NNP{Gzi-1 tag+i word DT restaurantNNK7A?JJK7A i-1 word ` VBP +RBS@NNPtJJS?NN㥛 ?VBNS㥛?UHJ +?NNSPn@VB~jt?NNPSZd;VBDv i word fightVBPE?JJx&1VBJ +?NN+@VBDoʡVBN/$i+2 word owned VBZQۿRPn?RBnNNSWDTCl?NNP-@VBNM?JJINClNNSMbi+2 word vehiclesRB= ףp=?NNZd;OPDT{Gz?JJV-?IN= ףp=DT{GzNNSi+2 word orderlyJJZd;O?NNZd;Oi-2 word wiserJJRMbؿRBRMb?i-1 tag+i word TO shippersVBʡENNSʡE? i-1 suffix bVBDEVBZ ףp= NNV-?i+1 word flightsJJCl?NNP +NNPSZd;O?NNX9vJJR!rh?RBR!rhԿi+1 word beltsVBP/$NNoʡ?JJ= ףp=i-1 tag+i word , designedVBNA`"?VBDA`"i-1 tag+i word VBZ slatedVBNl?JJli+1 word paperboardVBNw/JJw/?i+1 suffix tayVBZy&1ܿNNSy&1?i-1 tag+i word DT wiryJJCl?NNCli-1 tag+i word VBD enthusiasmNNd;O?JJd;Oi-1 tag+i word PRP quitVB㥛 @VBPV-?NNClVBDQ i word none CC%CPDTMbX9EXV-JJSVBClRBSNNT㥛`#@NNSnNNP ףp= i-1 tag+i word IN militaryJJM?NNMi-1 tag+i word NNS regularlyVBPnRBn? i+1 word tntNNMb?JJMbi-1 tag+i word DT midyearNN+@JJNbX9NNPX9vi-1 tag+i word CC deeperJJzGVBZbX9ֿJJRA`"?i-1 tag+i word NN passedVBN+VBD+?i-1 tag+i word DT mergedNNrh|VBNX9v?JJMbؿ i word marketNNPClNNCl@i-1 tag+i word RBR !HYPHENJJGz?RBmݿNNPJ +?CDnNNQ?i-1 tag+i word NNS endVBbX9VBPbX9?i-2 word contemplatingJJ"~?NN"~i word unchangingVBG'1ZJJL7A`@NNzG i word crresNNPS~jtNN/$NNPQ?i+2 word tiantVBZClJJCl?i+2 word foundVBGNNSx&1?NN|?5^?RBi word sound\/graphicsNNS㥛 JJ㥛 ?i word derivativesVBZףp= NNSףp= @i-1 tag+i word NNS polledVBN|?5^?JJ$CVBD)\(#i-1 tag+i word NN environmentalistsVBZX9vNNSX9v?i+1 word ontarioJJL7A`NNPL7A`?i word harborsVBZT㥛 ?NNST㥛 i-1 tag+i word NN interestedJJףp= ?VBNףp= i-1 word israelNNPtV?RBRGzJJRGz?VBPtVWDTnڿINn?i-1 tag+i word JJ pathNNSZd;OǿNNZd;O? i suffix cks RB +NNSMbP*@NNPS'1@JJ}?5^INNV-#VBD\(\VBPMbX9 VBZd;OǿJJSd;OIN1ZdVBZ5^I @NNPzGi-1 tag+i word CD senatorsNNPSDl?NNSDl i word writeJJ~jtVBZ{GzNNSQVB/$@NNQVBDZd;OVBPjt?i-2 word deadlineRB333333@JJ333333i-1 word feministsVBP(\NNS%CԿVBNffffff?i word stiffestNNMbJJSMb?i-1 tag+i word PRP firmlyVBP"~RBGz@VBD|?5^i+1 word packageNNSJJ?i word battlesVBZʡE?NNSʡE i+1 word wantNNPS7A`RB}?5^I?NN'1Z?JJ"~VBZGz޿NNS^I +?NNPm@VBZd;i-1 tag+i word DT dumbJJ(\?NN(\i-2 word approvedNNV-VBN%C?JJK7NNS?5^I NNPjt޿NNPSMbVBG|?5^ @i-1 tag+i word JJ individualNNZd;O?JJZd;Oi-1 tag+i word IN clarinetNNS+NNFx @NNP{Gzi-1 word correspondentVBGSNNS?i-2 word seedsVBNV-?VBDV-i word mayoralJJl?NNClNNPCli-2 word freudDTlINl?i-1 word speciallyJJ1Zd?VBD1Zdi+1 word malefactorsJJ1Zd?NN1Zdi-1 tag+i word VBG leadNN-?JJ-ۿ i-2 word talkINx&RPZd;ODT#~jVBMbXVBG rNNh|?5@RB~jt@i word intergroupNNPS/$NNP/$?i-1 word somehowVBK7?JJ rh?NNPFxi+2 word governmentVBZGzVB-ۿVBD rhݿJJS{Gz?VBNK7@NNP333333?NNSRQ?VBGE@JJؿNNNbX9?RPK7IN~jt@CCZd;O߿VBPK7WDTV-RBp= ףRBS^I +PDTx&1@CDʡE?DTCli+2 word renaissanceJJ?RBVB/$?NN/$i-1 tag+i word NNS readyVBP-JJ-?i-1 tag+i word , economicsNNP~jt?NNPS~jtӿi tag+i-2 tag IN NNSJJRʡE?VBGp= ף$?EXJ +?NNPx&1?RBS"~PRP$~jtVBD(\?WDTPnNN|?5^?VBMb?VBP/$?CCERBR ףp= NNPSh|?5DTy&1@FWMbX9?RB#~jPDT;On?JJSʡE?VBNV-VBZX9vCD/$?PRP~jt?NNSQINw/?JJbX9?WPSRP;Oni-1 suffix farEXX9v?VBG^I +?VBZMbX9?JJRMbX@INd;ONNPL7A`NNPS`"RP/$ӿCCS?RBR%C?VBNSJJʡE?VB"~jVBDZd;NNSDlVBPEпRBPn?NNRQȿCD i word delverNN\(\?RB\(\i-1 tag+i word -START- hugoVB\(\NNP\(\?i word attendedVBPQVBN;OnVBDjt@ i word yogiNNV-NNPV-?i-1 tag+i word TO benefitVB+?NN+i word containerJJA`"NNA`"?i-1 tag+i word DT pistilsNNSV-?NNV-i-1 tag+i word DT horizonNNSX9vNNX9v?i-1 tag+i word TO acapulcoJJtVNNPtV?i-1 word octelNNPSSNNPS?i+1 word above NNSMbX9?JJ rVBD1ZdVBNZd;O@UHx&RBQ?VBG-NN-?VBZGz i word abusedVBN~jtJJ7A`?VBD#~jNNSGzi-1 tag+i word IN decadesNNS^I +?NN^I +i-1 tag+i word POS dogNNS㥛 NN㥛 ?i-1 word insistingWDT+IN+?i+1 suffix ereEX$C@VBG rhٿRP\(\VB/$?CCʡE?PRP$㥛 ?NNPS(\@WDTK7@VBP7A`?NNS/$@VBNHzG?VBZy&1VBDףp= WRBZd;?CDl?JJR;On?FW^I +NNPlRBR?INp= ף?JJS~jt?JJ +DTCl NNT㥛 @RBMbX?PDTV-RBS~jti-1 tag+i word NN catchVBjtƿVBP(\@NNClVBDxi-1 tag+i word VBD protocolNNSnNNn?i-1 tag+i word CC chairsVBZmտVBx&1NNSM@NN333333JJxi-2 word marketWDT}?5^IRP(\?VB9v?EXnIN|?5^VBP{Gz?VBNw/RB?5^I ?VBGGz@JJ/$VBDGzǿNNSʡEտVBZ333333ӿNNPMbXNN'1ZRBRx&1?JJR +@DTzG?i word superagentNNd;O?VBDd;O i suffix roxNNPd;O @DTtVNNSnJJtVNNrh|i word writingVBG9v?NNT㥛 ?JJxNNPʡEÿi+2 word cocoaVBHzG?RBHzGi+1 word belongsWDT#~j?IN#~ji word closingVBGq= ףpNNx@JJZd;O  i suffix oneRBV- @UHʡENNPSq= ףpNNףp= @JJRZd;VBDl?VBPPn?IN +VBZV-PRP$~jtPRPK7@PDTMbX9EXV-VBNnʿNNPtVNNS|?5^RPrh|CC%CCDzGa @JJ- i word figureJJw/VBPnVBPʡE?NNOn?i-1 tag+i word DT sillyJJ;On@NNNbX9RBp= ףпi-1 tag+i word VBP vomitingVBGRQ?NNRQi-1 tag+i word POS showingVBG㥛 ?JJ㥛 i suffix owdVBZ\(\ϿVBPA`"?NNSQNNʡEi+1 word factorJJv/?NN)\(CD?VBGS i suffix UHNNPx&1?PRP$= ףp=JJB`" i suffix unsVBP'1ZJJK7VBZ|?5^:@NNS"~@NNP?5^I NNPSDl@NNNbX94VBDxi-1 tag+i word NNS dwindledVBNClVBDCl?i tag+i-2 tag '' NNPSVBG333333VBZ$C?NNS$CNN333333?i-1 word degreeJJ{GzNN~jtRBJ +?i-2 word placesVBP/$NNS/$?i+1 word flippingJJRMbпNNMb?i+2 word metaphoricalPDTCl绿NNS333333RB|?5^@NN(\ڿNNPFxi+1 suffix umn''}?5^I?JJv/?VBNtVNNx&1POS}?5^Ii-1 word index VBrh|@RPq= ףpNNClVBD"~j@VBZ rh?VBNOnRBRPn?JJ!rhԿJJRPni+1 word capabilityJJMbVBG;OnVBN-NN~jt@i-1 word intriguinglyVBNQ?JJQi word materializedVBNh|?5VBDh|?5?i-1 tag+i word NN scandalsVBZENNSE?i-1 tag+i word NNS aplentyRBT㥛 ?VBPV-ݿNNnJJPn?i word barcaloungerNN㥛 ڿNNP㥛 ? i-2 word miceNN~jtNNS~jt?i-2 word previousNNB`"ѿNNPMbP?VBZd;ONNSQ?i-1 tag+i word POS reichmannNNK7NNPK7?i-2 word contrastedNNoʡ?JJoʡi+1 suffix tabJJZd;O?NNZd;O$i-1 tag+i word -START- discrepanciesNNS\(\?IN\(\i+2 word overshadowingPDTK7?JJK7i word financialsNNPS rhNNP rh?i-1 tag+i word VBD 'emCD\(\PRP\(\?i word betweenIN"~j?JJ~jtNNPK7Ai-1 tag+i word DT liquidatingVBG(\ҿJJX9v?NNSi+1 word nuggetNNPJ +?NNOnJJvi+2 word cheapestJJS;On?NN;Oni word driftedVBDv@VBNvi-1 tag+i word DT mtmNNGzNNPGz?i+1 word signsVBG5^I RBjtNN!rh?VBZZd;?JJZd;?i-1 tag+i word JJ israeliJJףp= ?NNrh|NNPx&1 i-1 word p&gCC|?5^DT|?5^?VBNK7A`VBDK7A`? i word boxesNNSCl @NN$CJJI +i-1 tag+i word VB topazRPClٿNN rh?JJm i suffix vedVB"~j VBD;O1@RBy&1VBZ ףp= NNPKJJE @NN/$A"VBN-1@VBPMbINˡEJJSnJJRjt޿RPxRBR\(\CDffffffƿNNSʡE i-2 word iceNNSGzINGz?i-1 word unadjustedNN ףp= ?JJ ףp= i-1 word fallsNNP333333?NNPS333333RBGzοNNZd;JJR/$RBRMbX?JJZd;? i word virginVBG|?5^JJR ףp= JJ+? i-1 tag+i word -START- publishedVBN+?NNP+i-1 tag+i word NN noiseNNtV?INtVi+1 suffix lsoNNˡE @WDT\(\?DTHzGNNSS @POSQ CDDlNNPʡE@JJV-VBDʡEƿEX333333?VBZZd;O?INbX9ƿNNPSL7A`JJSbX9VBPRBS?i-1 word hyundaiNNPS㥛 NNP㥛 ?i+1 word withoutRBCl@INn?VB&1?NNPSI +NN^I +@NNSX9v?VBNMbX?CD&1@RPQWDTʡEDTrh|׿VBZ rhVBGʡEJJ\(\ VBPvNNPI +?i-1 tag+i word WDT statutesVBZ(\NNS(\?i-1 tag+i word PRP$ footholdNNv?NNSvϿi-1 suffix ephNNP(\?VBZHzGNNy&1i-1 tag+i word TO needyNNK׿VB+NNSV-JJL7A`? i word linksJJR%CԿVBP5^I ۿJJx&VBZ5^I ?NNS r?NN5^I ? i suffix ety RBzGNNS!@VBD9vVBNClVBP333333NNSx&1NNPZd;O?NNPS'1ZJJˡECDS㥛@i+2 word oneyearJJ|?5^?NNP|?5^ i+1 word chipCDp= ף?VBGS㥛?JJZd;NNFxNNP"~ڿi-1 tag+i word , altheaNNPSSNNPS?i word militaryJJSClVBPSJJK7A@NNS1ZdNNPKNNffffffi-1 tag+i word , studentNNV-?JJV-i-1 tag+i word DT resolutionNNʡENNPʡE? i word packVBx&1?VBPClNNV-?JJNbX9пi-1 tag+i word CC privateVBRQJJ333333?NN̿NNPzGi word hewlettNNP?LSi-1 tag+i word JJ wigNNS= ףp=ڿNN= ףp=?i tag+i-2 tag `` DTWDTHzGRBZd;O@NNPZd;@FW{Gz?VBP(\¿UHZd;NNS㥛 ?INjtDT rCDy&1VBGK7AJJS rh?JJoʡ@NNbX9@VBD{Gz?JJR'1Z?VBN rVBZ+VBQ?NNPSMbi-1 tag+i word IN mankindNNV-?JJV-i-1 tag+i word POS portNNQ?JJQi+2 word cautionVBbX9?NNP/$VBNʡENNL7A`?VBDʡE?i-1 tag+i word DT centJJFxNNFx? i word cheapNNS|?5^VBSJJn @NNp= ףVBN/$RB\(\@ i word banVBDClVBNvVBPףp= ?RBףp= VBZףp= NNSp= ףVBףp= ?NN+@i-1 tag+i word VBZ eitherRBV-?DTOn?JJZd;CCjt?RBRZd;OտJJRX9vi+2 word hamperRBRZd;?JJRZd;i word introducedVBZffffffVB(\JJV-NNK7VBDZd;@VBNv @RB"~INˡEi-2 word heardVBZ"~VBS㥛?NNS(\?INFxi word obligationNN}?5^I?JJ9vNNPxi-1 tag+i word IN faultyNN"~jRBX9vJJx@i-2 word dizzinessVBGK7ANNK7A?i-1 word claptrapWDT+?IN+i+2 word vacatingNNPX9v?NNX9vi word slashedVBD|?5^@VBNnJJ rhi-2 word heartsNNPSMbX9?NNPMbX9Ŀi-1 tag+i word JJ jumbosNNSʡE@NN9vNNPףp= i-1 tag+i word JJR capitalJJq= ףp?NNq= ףp i suffix NIHJJKNNPK? i+1 word bid VBG|?5^?NN+VBNDl?POS +?JJ"~ʿCDMbX?NNSB`"ѿNNPd;O?VBd;ORBd;O?VBZ +ֿi-2 word creativityRPZd;?INZd;i-1 tag+i word NN picksVBZy&1?VBPy&1i-1 tag+i word PRP moreVBRBRS@JJRy&1 i+1 word flowJJw/VBPK7NNS)\(ܿNNjt? i-2 word call NNSFxVBG?5^I ?RBtVNNV-@JJ +?RPZd;ONNPVBtVֿNNPSCl?PDTx&i-1 tag+i word DT coincidentJJZd;?NNZd;i word diplomatsNNS?5^I ?NN?5^I i-1 tag+i word VBP homeNNQ?RBJ +ٿVBNK7ѿ i word heededVBNB`"VBDB`"?i-2 word formulatesVBZlNNSl?i word glowingVBGZd;OJJZd;O?i-1 suffix run RBףp= @INx&1NNPClVBJJ9vNN~jtCD rh?RP1Zd@FWX9vοPRP rhٿNNSV-i-1 tag+i word DT politicallyRBZd;?JJZd;i-1 word before NNPSx&RBQIN"~NNSGz?VBGn?NN~jtۿJJx&DT"~?NNPx&1?i-2 word antelopeJJʡE?RBʡEi-1 tag+i word PRP$ headsNNST㥛 ?NNT㥛 i-1 tag+i word RB pastNNl?RBlҿi-1 tag+i word JJ bulletNNK7A?JJK7Ai-1 tag+i word '' levelCCOnNNOn? i word etudesNN+NNP+?i-1 tag+i word IN jointJJʡE?NNʡEi-1 tag+i word IN mentalJJQ?NNQѿi-1 tag+i word VBD resigningVBGMb?NNMb i word bringsVBZ/$@VBPJ +NNSlNN1Zdi-1 tag+i word VBD earnigsNNS5^I ?RBR5^I i+1 suffix aspJJʡE?NNʡEi+1 word favorVB"~?NNSMbX?JJS㥛NNPp= ףi-1 suffix esaVBZK7?NNSK7 i word cornJJv/NNPv/?i word conspicuousJJ rh?NNP rhi-1 tag+i word DT diabetesNNSlNN1Zd?JJ~jtÿi word valiantJJ(\?NN(\ڿi-1 tag+i word VB firmJJ/$ @NNQVBNK7Ai-1 word abandonVBZʡEJJQ?NNSʡE?RB&1NN~jt i word tossedVBN~jtVBD~jt?i word besidesRB~jtIN;O @VBZ5^I NNSsh|? NNPMbVBPSi-2 word coloraturaRBX9vJJ +?NNʡEi-2 word laughlinJJS˿NNPS? i-2 word kong VBNI +RB"~?RP/$޿NNvRBS/$JJRDl?JJ?5^I @VBD= ףp=JJS/$? i suffix NZ$$?5^I ?NNP)\(VBV-i-2 word doubtPDT"~j?VBP(\RBףp= ?JJS㥛i word consumerNNPQNNMbX@JJT㥛 i suffix -04NNSClNNnCDJ +? i suffix net NN= ףp@RB/$NNPK7@VBPGzDTx&1NNSQJJFx?FWK7VBN(\i-2 word alliancesJJNNGzRB= ףp=@i+2 word committingVBN1ZdJJ1Zd@i-1 tag+i word DT claimVBP(\NNS\(\NNʡE@JJI +i-1 tag+i word NNS coverRBjtVBv/VBPZd;? i+1 word seFW/$?IN/$i-2 word seriouslyDTx&1INx&1?i-1 tag+i word DT olympicJJd;ONNPd;O?i-1 tag+i word DT prudentJJV-?NNV-i-1 word stoppedVBGjt @NN333333JJ/$ i+1 word late VBGNNV-?CC^I +JJZd;OINA`"DTK7?NNPZd;?RB&1?VBNbX9@NNSjt?i-1 tag+i word JJ estimateNNSʡENNffffff?JJ +i word attainedVBN~jt?VBD~jtؿi-1 tag+i word JJ favoriteNN9v?JJ9vi-1 tag+i word -START- disabledVBNd;OJJd;O?i-2 word domesticallyNNPS㥛 ?NNS&1NNPI +޿i word marshallNNPSSNNPS? i-1 word sayRBQοNN!rh?WPx&1INZd;O?DTjtPDTZd;JJV-?VBd;OVBDV-VBNV-?WDTI +?VBZMbXNNP`"NNSMbX?VBP+?EXQ?UHx@i-1 tag+i word CC eliVBPZd;NNPZd;?i+2 word kitchenPRP$K7A?PRPK7Aп i suffix atzNN5^I ۿFW+JJ-?i-1 tag+i word NNP seriesNNP~jt@NNPSx& NNK7i+1 suffix netFWQ@RBR~jtؿWDTGzVBZOnIN rhJJV-2@JJR(\DTX9v?VBNbX9?VBD rh?NNK7RB&1NNPZd;VBGKi-1 tag+i word , fameVBMbXNN$C?JJQ i word fowardNN{GzJJ{Gz?i-1 tag+i word POS totalJJA`" @NNA`" i-1 tag+i word NNP gardensVBZV-NNPSd;O @NNSʡEտNNPʡEi+2 word redingNNCl?JJCli-1 word educationalVBGQNNSZd;?NNQ?NNPZd;׿ i word nauseaNNSffffffNNQ?NNP rhi+2 word monetaristVB/$NN/$?i-1 tag+i word DT famousJJClNNPCl?i-1 word themeRBQNNQ?i word cynicallyRB333333?VBD333333i-1 tag+i word JJ operatingVBG/$@NNZd;OJJʡEi-1 tag+i word IN votesVBZMbX9?NNSMbX9i+2 word touristVBN"~VBD"~?i+2 word futuresNNPS{Gz?DTvNNx&1?VBG-JJSVBPS?WDT5^I ӿRB(\µRP"~j?NNPOnVBI +NNS~jt?VBZ/$?IN/$i-2 word dangerousNNSbX9VBN`"VBD`"?VBZbX9?i-1 tag+i word JJ nationNNCl?NNPCli-2 word smokersJJ%C?NN㥛 VBN;Oni tag+i-2 tag , NNPSRBʡEտIN%C?DTmVBHzGVBNCl?VBZZd;ONNSK7ANNP~jtJJK7VBD"~VBPʡEWDTl?NNPSM?NN= ףp=?VBG'1Z?i-2 word borderNNPZd;NNSZd;?NNjtCDjt?i-1 tag+i word RB awardedVBNMbVBDMb?i word gluttedVBNvJJv? i suffix rumNNOn?JJ5^I NNSA`"i+2 word starvedNNPSQ?NNSQJJ/$?NN/$ۿi-2 word reportingJJQ?VBGK7NNZd;O?i+1 suffix owaVBNClVBDCl?i+1 word yieldingDTNbX9?CCNbX9i-1 tag+i word VB sourVBd;OJJd;O?i-1 tag+i word VBP spentVBN#~j?JJ#~j i word playedNNClVBD rh@VBN|?5^?VBPؿRB/$INSVBZ㥛 VBtVi-1 tag+i word , adoptsVBZ rh?VBD rhi-1 tag+i word IN branchesNNSQ?NNQi+1 word excludeJJ{GzĿNNS{Gz?i-1 tag+i word : thatRB+IN333333?DT&1ʿWDTʡE?i word sponsoredVBN'1Z?JJ'1ZԿi-2 word heavy RBClٿVBGS?JJzG@NNV-CCVBMbX9RBRCl?VBN;OnVBPMbX9? i+1 word dejaVBZV-?POSV-i-1 suffix geeNNPS^I +߿NNP^I +?i+2 word ateliersNN rh?JJ rhi+1 word zipserJJx&1NNPx&1?i+2 word pastureRBh|?5?NNh|?5i-1 tag+i word -START- elliottJJOnۿNNPOn? i word ripeNNS= ףp=JJK7A@VBG/$VBNףp= NNѿi-1 tag+i word RB wavesVBZNNS?i-1 tag+i word VBN misledVBNjt?RBjti-2 word tankersVBGbX9?NNbX9i-2 word summerJJm?VBZ/$NNS/$?VBGQRBd;O޿NNJ +@RBRx&1i-2 word telecommunicationsVBGףp= JJףp= ?NN~jtNNP~jt?i-2 word beginsVB+RP)\(ܿNN`"JJ`"?IN?5^I ?NNSrh|i word learningVBG&1NNClJJMbXNNP/$ @DTZd;׿i-1 tag+i word VBG soldVBNZd;VBDZd;?i-1 tag+i word -START- plusCCsh|??NNPsh|?i-1 tag+i word CC slowsVBZ?NNSi-1 tag+i word RB thatRBCl @INx&1?VBZClDTh|?5?JJK7A`VBD\(\VBPSۿWDT{Gzi-1 tag+i word PRP admiredVBP/$VBD/$?i-1 tag+i word VBG usedVBN#~j?JJ#~ji+2 word course VBRQRB/$?VBNRQ?JJNbX9?IN"~jRP9vNN+VBDZd;OPDT/$?VBPZd;O?NNPB`"i-2 word tremorsJJʡE?RBʡEi word announcementNNK7A?NNPK7Ai-1 tag+i word VBP deNNPp= ף?INp= ףi-1 tag+i word `` maximizeVB}?5^I?JJR/$NNOni-2 word apparitionsVBG-?NN-i+1 word redefinitionNNPʡEJJʡE?i-1 tag+i word NNS followedVBN5^I VBD5^I ?i+1 suffix edoJJK7A`?RBK7A`i-1 word droppingNNNbX9RBRRQ?JJV-i+2 word dealerNNtVJJtV?i-1 word dominionNNPSS㥛?NNPS㥛i-1 tag+i word DT weakerJJR?NNi-1 tag+i word -START- betweenIN"~j?JJ~jtNNPK7Ai+1 suffix bby NNPS\(\JJK7A?INRQ?DTRQNNPSPRP$Pn@JJR"~jܿNNSGzNNL7A`i-1 tag+i word VBD homeNNRB@ i+2 word pcPDT~jt?CDV-?RBuVݿDT;OnJJB`"?NNi-1 tag+i word CC deadJJZd;O?NNZd;Oi-1 tag+i word IN outsideVBP +NNjt@RBClJJx?IN5^I i word pressedVBN"~?VBD"~i-1 tag+i word JJ christianNNQJJClɿNNP5^I ?i-1 tag+i word NN defeatNN\(\VB\(\?i-1 tag+i word , chargesVBZZd;O?NNSZd;O i word breastNNSX9vֿNN/$?JJ+!i-1 tag+i word VBD unificationismNNPjt?NNjtֿi-2 word pravdaNNPHzG?NNHzGRBHzG?i+1 word classicsVBN?JJDl?NNPEi-1 tag+i word NN conductsVBZ'1Z?NNSMbXVBD\(\ i word heardVBN!rh@VBPSJJףp= IN|?5^VBZI +RB}?5^INN +VBD'1@i-1 tag+i word NNS respondedVBDZd;O?VBNZd;OͿi-1 word deckerVBZZd;POSZd;?JJZd;VBDZd;?i+1 word terrorismRB rIN r?JJM?NNKFWMbVBN|?5^VBP\(\?i-1 tag+i word DT oxygenNNS㥛?JJS㥛i-1 word aftertaxVBZh|?5NNSh|?5?i word luxuriousJJ;On?NNP^I +VBV- i-2 word spunNNPS}?5^I?NNSQNNPB`"i-2 word pipeline NNSm?VBOn?IN&1?NN{GzVBDRBRp= ף?JJRp= ףVBNrh|?JJ%CVBGRQ?RBFx?i-1 word capitalINL7A`?NNS`"?VBGh|?5RBR^I +?DTףp= VBD"~VBZjtJJMbJJR^I +NNPX9v?NNPSx&1RBFx?NNq= ףp?VBNrh|?i-1 tag+i word VBG measuresVBZQNNSQ?i+2 word cohenCCS㥛NN ףp= RBh|?5οNNPףp= @i-1 tag+i word CD bankingNNV-?JJV-i-1 tag+i word JJ beveragesNNNNS?i-1 tag+i word CC estimatesVBZ/$?NNS/$ i-1 word wereRP!rhmRBPn?NNSv?PDTh|?5?CD!rh?IN/$VBGl@NNPSl?JJSuVVBDClNNPsh|?տRBSsh|??RBRV-JJR rh?CCy&1EXv/VBNoʡ@JJ'1Z @VBZlDTZd;NN"~j VB/$i-1 tag+i word NN 'JJ&1ʿ''V-@NNoʡPOS9vi-1 tag+i word CC deeplyVB-RB-?i-1 tag+i word IN runsVBZ;On?JJ;Oni-1 tag+i word DT taintNNS?JJSi-1 tag+i word DT acceptancesJJOnNNSOn?i word graduateNNPRQVB-NNjt @VBPffffffJJEؿNNSd;Oi+1 word tracesVBNp= ף?JJMbVBDi+1 word unlawfullyVBNtVVBDtV? i word birthsNNS= ףp=?RB= ףp=i-1 word theorizedDT= ףp=IN= ףp=?i-1 word paymentIN^I +WRB^I +?VBNbX9?VBDbX9i tag+i-2 tag JJS PRP$VBjtVBP;OnNNSQNN/$?JJ?i-1 word readyNNPT㥛 NNPST㥛 ?i-2 word continuesNNSV-NNV-?i-1 tag+i word IN zetaNN~jtNNP~jt?i-1 tag+i word '' foundVBD"~j?VBZVBNZd;i-1 word worseningJJZd;?NNZd;i+1 word black JJR9vNNP r?VBGlڿNN~jtVBNQVBP rRBnINn?VBZA`"NNPS rJJ ףp= @VBDV-POS&1?i-1 word blamesVBZmRBSv/տJJSv/?NNSm?i-1 tag+i word VB reservationsVBPGzNNSGz?i-2 word replacementVBNX9v?VBDX9vi+2 word poolsVBNbX9JJS?NNOni+2 word processing VBNX9vJJzGʿJJR^I +߿NNPd;O?NNMbXVBD^I +?CC+IN/$@CDS㥛?i+2 word secretsVBGX9v?NNX9vi-1 tag+i word -START- miltonNN!rhNNP!rh?i word baseballDTnѿPDToʡNN%C@NNP+i-1 tag+i word NNS expectedVBN"~jVBD"~j?i+1 word leserNNP= ףp=?NN= ףp=i word chairpersonNN/$NNP/$?i+1 word presidentVBGv/?NNSI +ֿVBPHzGDTClJJRd;OIN9v@VBjtJJ?5^I NNCl?VBDrh|VBN ףp= NNP'1@NNPSOn?RBV-RPvCD+VBZMb?i-1 tag+i word NN directorNNS+NNSۿNNP? i word treatyVBDGzJJw/NNS-NNPCl?VBClNNGz@ i-2 word feetJJZd;INoʡտVBZENNSE?VB+RBoʡ?NNZd;?JJS+?i-1 tag+i word VBP likeJJܿIN?i+2 word arrangementPDT rJJ r?i-2 word sampleVBN"~JJ"~?i+1 word positionedVBPbX9RBS +RBRn?RB/$?JJRw/i+1 word watchesNNX9v?JJX9vi-1 tag+i word VBG capitalNN'1ZJJ#~j@NNSK7i+2 word organizationsJJSMbJJA`"ۿINRQ?DTRQVBGA`"?RBSMb?i-1 word famedNNK7A?JJK7A i word souledJJ/$?VBD/$ i word mitiNNNbX9пNNPNbX9?i-1 word potentialVBZbX9NNSffffff?NNn?VBGi word caterpillarNNK7A`NNPy&1 @JJ+i+1 word bargainsNNSx&NNx&?i-1 tag+i word VBD commentNN ףp= ?JJ ףp= ߿i+1 suffix uluJJV-NNPV-?i-1 suffix oxyNN|?5^?JJ|?5^i+1 word paradeNNPS㥛?NNPSS㥛VBG rhJJCl?NNK7 i suffix 50sCDnNNSq= ףp@NNP/$i+1 word rebellionJJ`"?NNP`"i-1 word permitJJRx&1?NNSRBR"~i+1 suffix yleVBP'1ZPRPSJJPn?NNPy&1?PRP$S?NNPSy&1VBGʡENNMb?i-1 tag+i word VBN somedayRBMb?JJMb i suffix jetNN;On@JJI +NNPjtNNS㥛 i-1 word payableNNP`"@JJNNMbX9VBDGzRBjtܿINjt?i-1 tag+i word PRP$ statedJJ"~j?NNZd;VBNˡEi+2 word countermovePDTZd;OJJZd;O? i+1 word hourJJSq= ףp?JJQ?NNP+VBGS㥛NN= ףp=FW^I +?PDT(\i+2 word expandNNP(\NNPS(\@JJףp= ?NN&1?VBNףp= RB&1VBZoʡNNSoʡ?i+2 word units VBDV-NNPMb?VB%CNNjtJJS(\VBNx?VBP`"JJS?NNSX9v?i-1 tag+i word NNP orleansNNPh|?5@VBZ333333NNPSbX9NNSSi word assignedVBD(\VBN(\?i+1 word itself VB$C?VBGx?JJx&1NN7A`VBNX9v?VBDq= ףp?VBP$CRB rVBZ{Gz?NNStVi-2 word closenessJJzG?NNPzGʿi-1 tag+i word VB acquisitionNNtVֿNNPtV?i+2 word toolsVBG1Zd?JJx?NNPzGi-1 tag+i word VB alaskanJJ/$?NNP/$ i word freshRB)\(NNSh|?5JJ(\B@NN(\VBNy&1JJR7A`i word microwaveNNE?JJEؿi-1 tag+i word CC shoutedVBDRQ?VBNRQi-1 tag+i word NN accountedVBN㥛 VBD㥛 ?i+1 word speedometerVBNJJ?i+2 word vietnamNNST㥛 JJ1ZdNNT㥛 ?VBD1Zd?i-1 tag+i word IN staffNNy&1NNPy&1?i+1 suffix yet INSVBNn?VBP?RB$C?NNoʡ?VBD7A`RPףp= ?NNS5^I VB|?5^VBGV-ݿJJX9v׿i-1 tag+i word IN allRBq= ףp?NNZd;PDTZd;O@JJʡEݿDTMb?NNPL7A`?i-1 tag+i word JJ hmongNNPSGz?NNPGzi-2 word selling INK7A`?NNT㥛 VBD?JJR?VBP;OnRB"~NNSv?NNPSV-?VBGL7A`?JJClVBNףp= ?i-1 tag+i word DT dissidentJJV-?NNV-i-2 word prayerNN?5^I ?JJ?5^I ڿi-1 tag+i word TO celebrateVBsh|??NNsh|?տi-1 word leadsVBPA`"RBA`"?i-2 word retireesVBZ-VBP-?i+2 word further CDS?JJK7AVBDPnRB'1ZJJRZd;VBNNbX9?VBPINzGҿDTL7A`VBRQ@RP|?5^?NN}?5^I?i-1 word spillsRPNbX9?RBClINCli word gingerlyJJ%CRB%C?i-1 tag+i word NN makersNNS#~j?NNP#~ji-1 word mineralDT5^I WDT5^I ?i+1 word scriptNN/$JJ/$?i-2 word regainNNSQNNQ?i-1 word rejectNNSS?NNSi word dutifullyRBS?NNSi-2 word definitionNN +?JJ +i-1 tag+i word PRP stuffedVBZ333333VBD333333?i word consecutiveJJL7A`@NNL7A`i+2 word vesselsJJV-NNPV-?i+2 word predictedJJS㥛NNPS㥛?i-1 word soughtRB/$RP/$?NNQ?JJQi-2 word miniscribeJJ1Zd?NN1ZdӿIN +VBZ +?i-1 tag+i word TO caracasVBHzGNNPHzG?i+1 word privilegeDTV-@VBGvJJ'1Z?NN333333ۿINV-i-1 word experienceRB`"?IN`"VBZˡE?NNSˡEi-2 word objectivesVBV-?JJV-i-1 tag+i word DT changesVBZq= ףp?NNSHzG?NNi+2 word actorsVB(\VBP(\?i+1 word discrepanciesNN!rhJJ!rh?i-1 tag+i word `` upINl?RP-RBZd;i-1 tag+i word , sensationalJJV-?NNV-׿i-2 word success WDTZd;VBGCl?NNPL7A`пRB/$?IN/$?DTZd;ORPV-?JJM?NN ri-1 tag+i word CC democraticJJ?5^I NNP?5^I ?i-1 tag+i word NN paleVBPA`"?NNA`"i-1 tag+i word IN chickenJJZd;NNZd;?i word messagesVBZI +NNS"~j?PRPtVi-1 tag+i word IN chamberVBZ+VBPMbNNjt?i-1 tag+i word TO supposedVB\(\VBN\(\?i-1 tag+i word POS subordinatedVBNh|?5?JJh|?5i word exemptedVBNʡE?JJʡEi-1 tag+i word NN stageNNoʡ?VBD(\VB5^I ۿi+1 word pilotJJK߿INK?RBKNNK? i word return VBD +JJRQ롿VBN9vVBP rh?JJ-?VBZʡEۿVB-?NNQ@NNSK7i-1 tag+i word NN testsVBZZd;?VBSNNSCl?i-1 tag+i word CC breastNN^I +?JJ^I +i-1 tag+i word TO resembleVBNbX9?JJ rhNNP+i-1 tag+i word DT crashJJv?NNv i word viennaNNS+NNP+?i-1 tag+i word JJ putVBPʡEVBN$C?NN$CӿVBDʡE?i-2 word workstationJJI +?NNI + i word benignIN;OnJJx&1@VB= ףp=NN|?5^RBV-Ϳi-1 tag+i word IN sanctionsNNSv/?JJv/i-1 tag+i word JJ regulationsNNNNPHzGNNSDl?i+1 suffix ithRBZd;?PRPq= ףp?RBR|?5^?NNPV-VBGx@JJ7A`LS"~ʿCC/$IN rh?PRP$ +WDTmNNS&1?VBMb`?CDA`"JJRrh|VBP\(\?VBZ rh?RPCl?NNZd;@VBD~jtNNPS|?5^ڿJJS}?5^IFWn?VBN+?DTDli-1 tag+i word NNP playhouseRB rhNNP rh?i-2 word sincereRB1Zd?JJ1Zdi-1 tag+i word NN hasVBZ333333?NNS{GzNNPףp= ӿi+2 word shillingNNPS rhNNP rh?i-1 tag+i word DT newlyNNB`"RB/$ @NNSClۿJJxi-1 tag+i word PRP$ ailingVBGV-?NNJ +JJ/$i word regardedVBNˡEJJQ@VBDI +i+2 word water NNSK?NNPI +?VBK7A?NNʡEݿCCOn?VBP?VBZKǿVBG rhVBDпCDOnJJI +ƿi-1 tag+i word VBN curbingVBGI +?NNI +i+1 word dodgerRPrh|INrh|?i-1 tag+i word DT advertisingVBG㥛 NN"~?JJMi-1 tag+i word NN whatsoeverVBPV-WDT&1RBףp= @NNZd;Oi word bouyguesNNS)\(?NNP)\(i-1 word kravisNNPS rNNP r?i-1 tag+i word NN legallyRBffffff?NNffffffi+1 suffix uerVBP-JJ-?i-1 tag+i word IN indianJJPn?NNPPni-1 tag+i word NN improvedVBNT㥛 VBDT㥛 @i-1 tag+i word WRB elbowJJ%CܿNN%C?i word thoughtfulJJ?NN i word detourNNn?JJn i suffix cabVBZ㥛 NN㥛 ?i-1 tag+i word NN drillingVBG`"?NN`"i-2 word unclearRBFx@JJFxNNRQNNPRQ?i-2 word chidedNNPS;OnNNS;On@i-2 word mazesVBGףp= NNףp= @i-2 word rabidVBNRQNNRQ?i-1 tag+i word NNS changeVB|?5^?VBPrh|?NNp= ףi-1 tag+i word IN corningVBGbX9ֿNNPbX9?i word exhaustedVBN(\VBD(\?i word persistsVBZ?NNSi-1 tag+i word DT gruffNN"~JJ"~?i+2 word yardsRPCl@RBCli-1 tag+i word DT stuccoNN#~j?JJ#~ji-2 word agreeRBA`"ۿDTd;O?VBV-i+1 word federatedWDTMbINMb@i-2 word dumpingVBZK7NNSK7?i-1 tag+i word NN tradedVBNv?VBDvi-2 word driversNNSS㥛?VBDS㥛i+1 word zalubiceVBPPnؿINPn? i+2 word talk NNSSRPZd;OJJnVBPrh|RB(\@VBZrh|?NNP;OnVBrh|?VBNV-?POS{Gzt?IN}?5^I? i-2 word mikeNN +?JJ +VBZ}?5^I?NNS}?5^I i word nerveVBDSVBP(\NNn @JJ`" i+1 suffix paVBPV-INV-?i+2 word thereVBDV-տINy&1NNPSjt?VBGV-?NN1Zd?NNPsh|?VBN-?SYM+?VBPMb?RP-?WDT(\NNSzGVBy&1RB^I +@JJSCl?DTV-?JJR{GzLSFxJJCl?VBZsh|??i+1 word arrangesRB(\?JJ(\ i word sikesNNPS/$ÿNNSmNNPQ?i-1 tag+i word NNS meansNNS rhVBZ rh?i-1 tag+i word NNP antillesNNPSZd;O?NNSZd;O i+2 word iowaNN/$?NNPzG?NNPSzGʿVBG/$ſi-1 tag+i word -START- machineNNE@JJjtNNPDli-1 tag+i word '' acceptVB?VBP;OnڿINˡEi+1 suffix ian NNSh|?5NNPSoʡRBOn?NNS㥛?VBD~jtVBNOnJJrh|?INK7AVBG~jt?VBP5^I UHw/ĿDTRQ?NNP^I +߿i+2 word vaginalVBoʡJJoʡ?i+1 word momentarilyVBPnҿNNClVBDMb?i-2 word tragicVBP= ףp=JJ= ףp=?i-2 word schoolsVBP~jt?JJMbX?NNP7A`?NN+VBD/$?VBN/$i-1 tag+i word JJ rigidNNZd;׿JJZd;?i-2 word woodwindVBP+?JJ+i tag+i-2 tag RBR JJJJw/?VBGSRBQ?NNFxVBN333333?CDni+1 word strengthenedJJ㥛 ڿNNP㥛 ? i-1 word isVBNZd;_@VBZFxNNPSIN#~jVBGGz@VBP- WPʡERB?PDT?FWx&CC-PRP$Fx?NN= ףp=RBS!rh?VBERBRuV@CDx&1?EXFxVBDv/NNPQ?JJR ףp= ?WDT!rhRP rhJJ?5^I @DT?NNS rhJJSuVտi-1 tag+i word , pleadedJJ9vVBD9v?i-1 tag+i word PRP eitherRBh|?5?DTK7A`?VBPQi-1 tag+i word IN financeNN}?5^I?RB~jtNNPffffff?i-2 word demobilizeNNPS/$?NNS= ףp=ҿNNP!rh i word gasNNPSffffffNNPffffff?i+1 word revisionsJJx?INxi word opposesVBZx?INxi-1 tag+i word , conditioningVBGQNNQ?i-2 word routinelyNNK?RBKi-2 word barringNNPSʡENNPʡE?i+2 word electedVBD+NN+?i-2 word surrenderNN-?JJ-i word feministJJ-?NNZd;NNP"~j? i word pelvicJJGz?NNGzi-1 tag+i word IN offerVBP/$NN/$?i-1 tag+i word CD breachNNS/$ۿNN/$?i+1 word friendlyDT ףp= IN ףp= ?i-1 tag+i word NN sponsoredVBN'1Z?JJ'1ZԿi+2 word poisonNNS-?NNQſJJ/$NNP/$VBZuV?i tag+i-2 tag VBD RBVBDCl?JJx&1?DTMb?JJR~jt?WDTʡEVBZ333333RPˡENNSQ?VBK7AпINQ?UHʡE?NNPSClPRP$|?5^VBNB`"?NNMbXPRP/$?RBT㥛 NNP{Gz?RBR(\VBG$CCCOn@PDTL7A`CDx&1?i+1 word buying JJn @NNq= ףpݿVBDzG?DT-NNPףp= CCJ +?JJR7A`VBNHzGRBw/ĿNNSV- i suffix seyNNPSjtNNS㥛?NNPv/?i word helmuthVBy&1ܿNNPy&1?i+1 word statusVB+NNoʡ?JJM?NNPw/i-1 tag+i word RB worthJJ333333?NN{GzIN#~jVB\(\i-1 tag+i word VBG herPRP$Zd;?PRP1ZdJJR+i word congressNNI +?JJI +޿ i-2 word culNNSJ +NN(\?FW;On i word told VBN@VBP(\ RB~jtۿIN5^I VBvVBGK׿VBDL7A`$@EXv/VBZ'1ZJJZd;NNzG i word goliathsNNSB`"?NNPB`"i-2 word consumers JJA`"NN&1ҿVBDQӿJJRClRB(\NNS+NNP-?VB&1?RPMb@RBRCl?VBP r?VBZI +i-1 tag+i word VBZ growVBK7VBPK7?i-1 tag+i word JJ grievancesNN\(\NNS\(\?i-1 tag+i word DT maleNNPw/?NN~jtJJ;Onҿ i suffix ODEVBZZd;VBDZd;? i+2 word bamSYMUHv/?NNK7ٿNNP(\i+1 suffix besNNPSB`"NNS^I +NN^I +?NNPB`"? i-1 suffix vuDTI +NNSV-RBZd;?i-1 tag+i word , observedJJT㥛 @VBDT㥛 i+2 word care NNQ?RBbX9?INL7A`NNSK7VB ףp= ?VBD7A`?VBN7A`VBPMbP?VBZK7?JJʡEi+1 suffix halNNPSffffff?NNPffffffi-1 tag+i word WDT sideVBPRQؿNNRQ? i+1 word come NNPK7MD\(\?NNMbX?VBZ?5^I NNSOn?DTCl?VBL7A`NNPSK7?VBD\(\߿JJOn i word badVBvJJ"~j?NNPzG?i+2 word brokerVB;On?VBG}?5^I?VBP;OnJJ}?5^IIN%CWRBʡE?VBZ+i+1 word downwardVBL7A`?VBG$C?RB$C@NNp= ף?RBR%C?JJR"~JJK7i word wideningVBG9vNNsh|??JJZd;i+2 word defendantVBNܿVBD?i-1 tag+i word DT mafiosiNNS?NNi-1 tag+i word PRP setVBP ףp= ?VBNףp= VBD1Zd?VBZ%Ci-1 word coachesVBN rNNMbVBD r?VBV-VBP)\(?i-1 tag+i word RB weakenedVBN)\(?JJ)\(i+1 word gymnasticsJJ/$?NN/$i word retireesNNSCl?NNCli-1 tag+i word PRP$ seriesNNSxNNK7AпNNPOn?i+1 word provinceJJZd;OǿNNPZd;O?i-1 tag+i word CC verifyVB(\?NNS(\i-1 tag+i word NNP sunsNNPS rh@NNS"~ҿNNPI +i-1 tag+i word VBP exemptVBPmJJm?i-1 tag+i word JJ developVBPZd;O?INZd;Oi-1 word fannedNN!rh?JJ!rh̿i-1 word internationaleNNPMb?VBD&1NNSSۿINK׿FWM¿ i word r.r.JJA`"NNPA`"?i-1 tag+i word PRP$ commmonJJ^I +?NN^I +i-1 word highestNNx&?NNSZd;O?VBNmJJm?NNPףp= i-2 word straussNNP+RBw/@IN|?5^i+2 word prizesNNnNNPn? i-1 tag+i word VB misinterpretedVBNd;O?JJd;Oi word seaboardNNK7A?FWK7Ai-1 tag+i word VBZ hadVBN rhVBD rh?i+2 word launderersJJq= ףpRPq= ףp?i-1 tag+i word , scenarioNNbX9?JJClۿNNPV-i-1 tag+i word VBZ weatherNNL7A`?RBL7A`i-1 tag+i word VBD defeatedVBN(\?JJ(\ i word picketNNffffff?VBNffffffi+2 word shevardnadzeCC?5^I NN?5^I ?i+1 word spanningNNV-NNPV-?i-2 word imagesNNS+?NN+i-1 tag+i word DT birthdaysNNS&1?NN&1 i+1 word tryNNPS ףp= NNS rh?NNP-i+1 word shiftsVBGZd;OJJZd;O?i-1 tag+i word DT laotianJJzG?NN?5^I NNPCl߿i-1 tag+i word NN poweredVBNCl?VBDCli-2 word mignanelliJJ~jtNN~jt?i-1 tag+i word -START- fiveNNS-JJ333333CD%C@i-2 word driverVBG"~j?JJ"~jܿ i word leagueNNPM?NNPSmNNSClNNE@JJCl i-1 word babyVBDʡE?NNPSV-NN= ףp=JJSۿNNPV-?i-1 word fiscalJJGz?NNClJJRh|?5CDx&1@RBlNNSy&1ܿi-2 word handicappedDT%CRB%C?i+2 word deterJJPn@VBGV-RBPnNNV-?i word semiannualJJV-?RBV-i-1 tag+i word -START- walterRBRZd;JJS㥛NNPv/@ i-1 word potVBN{Gz?VBD{Gzi-1 tag+i word RB settledVBN7A`?VBD7A` i-1 word snapRPV-?NNSCl?RBV-FWCli word countlessJJX9v?NNX9vi+2 word containRBSrh|@JJSrh|i-1 tag+i word CC behindRB/$@IN/$i+2 word businessVBGmVBZ/$?VBDʡEVBN|?5^ @VBPoʡRB= ףp=?VB!rhINENNS?5^I PDTQ?POSV-@NNPQ@RPQJJ7A`@NNd;OCC1Zd?NNPSS?RBRMbpDTx&i word ultravioletNNS/$ݿNNX9v?JJ +οi+2 word frontVBNx&1?VBDx&1i+1 word solidarityDT rh?WDT rhRB?5^I ?JJ= ףp=NNPX9v i-2 word base JJR rhVBK7A?RP㥛 RBR5^I ?RBp= ףWPK7AVBDA`"IN㥛 ?VBNA`"? i word hopesVBZK7@NNS(\?NNrh|VBDQVBNh|?5JJ-i-2 word initiallyVBx&?VBPx&JJ rh?NN rhi word gemsbokNNSS㥛?NNS㥛 i+2 word diskJJˡE@VBGq= ףpVBN333333NNQտVBDS㥛i-1 tag+i word DT informalJJCl?NNCli-1 suffix hunJJRMbпNNMb?i word creditwatchNNQNNPQ?i-1 word courtsVBN(\@VBPlRBSNNPA`"VBV-?NNPS?5^I ¿NNQVBD1Zdӿ i word randVBPnNNS㥛 @NNZd;O i-1 word urgingNNI +?JJMbX9ܿRB/$?NNP}?5^Iܿi-1 tag+i word IN aboutDTZd;INV-RB(\ @NNV-NNPi word parliamentNNPS@NNPSZd;NNZd;OݿJJˡEi-2 word friendshipNNP9v?NNPS9vڿi+2 word rumorsVBD#~jVBN~jt@JJR/$?NNERBR/$i-1 tag+i word NNS affectingVBG(\?IN(\ؿi+1 word enhancementVBSNNS?i-1 word disappointedINx?DTxi-1 tag+i word NNS confirmedCCL7A`VBNtVVBD1Zd@i word milwaukeeNN +޿NNP +?i+1 word fireballsVBPCl?VBDCli-1 tag+i word '' basketsNNSuV?NNuVi-1 tag+i word NNP eurodollarsNNPS^I +?NNP^I +i-1 tag+i word NNP hinesNNPn?NNPSni+2 word networksWDTd;OINd;O?i-1 tag+i word NNS shortRBl?NN/$JJ㥛 ?i-1 tag+i word CD soundCC#~jNNCl?JJV- i word cheersNNPq= ףp?NNPSd;ONNSHzGٿFWK߿"i-1 tag+i word NNP intercollegiateJJMb?NNMbi-1 tag+i word TO formVB"~?NNS"~i word outlinesVBZ +?IN +i word peakingNNVBG?i-1 word outlandishJJ+߿VBG(\NNZd;?i-1 tag+i word DT detailedVBN+JJ+? i-2 word joltIN^I +?NNl@JJ"~RB^I +߿NNP/$ӿi+1 word politicianDTRQ?RBRQi+2 word costaVBZZd;?NNSMbNNoʡ?VBG%Cܿi word spoiledVBPvVBDv?i+2 word bingeVBZV-ҿPOSV-?i+1 word avenueNN`"JJSſNNPMbX9?i+1 word usingRB&1NNSx&1?JJX9vNN= ףp=?VBDClJJS= ףp=VBNGz?VBPv/?i-1 tag+i word NN weathermanNNzG?JJzGҿi word raskolnikovNN+NNP+?i-1 tag+i word DT reformerNNJ +JJJ +@i-1 tag+i word DT criticismsNNS= ףp=?NN= ףp= i word vuNNV-?RBV-i-1 tag+i word RP believingVBG rh?NN rhi+1 word spokesNNFx?JJFxi-1 suffix set NNSS?RBRV-?RPCl@VBZZd;VBGmRB/$NNx&1?JJI +?INK7A` i suffix emyNNSMbXNNPn?JJGz i-2 word mayRPv/?NNMbX?PDTS?RBRx&1NNSy&1?VB#~j@RB+VBD-?JJ-JJR333333@VBGw/@CCvVBPQ?DTd;OVBNnINENNPQi-2 word earthmovingWDTX9v?INX9vi+2 word charterVBZx?NNS{Gz?RB{GzINxi-1 word omegaNNPSGzNNPGz?i-1 tag+i word VB hardNNS㥛RB%C?JJR5^I JJK7A`? i suffix dalNNMNNSNbX9ؿJJZd;@i-1 tag+i word WDT bankersNNPSDlNNSZd;NNP r?i-1 tag+i word NN squeezeNNX9v?FWX9vi+1 word different RB7A`@WDTSJJtVVBV-?NN rhVBDNbX9CDZd;O?INS?NNPZd;Oi+1 suffix oukMDZd;?JJA`"VBZSi-1 tag+i word TO approximateVB&1JJ&1?i-1 word elementsVBN~jt?VBD~jt i suffix ahlNNI +NNPI +?i+2 word warmlyNNPV-?JJV-i-1 tag+i word VBD associatesNNPSB`"ٿNNPB`"?i+1 word ticketVBPףp= NNףp= ?i word masonryNNV-?JJV- i-1 word perRBףp= FW/$?JJ(\NNS&1NNʡE? i+1 word mallNNCl?JJCli+1 word radicalRBSS㥛?JJSS㥛ĿRBRQ?JJRQ˿ i word ohVBvNNQVBP!rhUH7A`P@NNSʡENNPCl i+1 word featDT㥛 ?IN㥛 i word arbitragerRPq= ףpNNq= ףp?i-1 tag+i word -START- contraryJJ"~?NN"~i-1 tag+i word IN piecesNNS+?NN+i+1 word peerlessDT+RBT㥛 ?JJ/$INSտi-1 tag+i word VBZ estimatedVBNZd;@JJ333333VBDI +i-1 tag+i word NNP compactJJT㥛 ?NN~jtVBDi+2 word crudeJJX9v@RBٿNNPI + i-2 word beer NNPSffffff?JJKVBPjt@INV-VBZQ?NN7A`ҿRB-NNSQNNP1Zdi word recognizeVB!rhVBP(\?VBDd;O i word clubNNSZd;ONNK7?JJ ףp= NNP)\(?i word detectivesVBZ(\NNS(\?i-1 tag+i word VB separateVBX9v߿JJX9v?i word imperativeNNn?RB+JJK?VBGzοi+1 word chromosomeRP= ףp=JJ= ףp=?i+1 word someoneWDTrh|JJQWPrh|?DTQNNQ?INQ?i-2 word national JJ)\(?IN{Gz?VBSNNS㥛VBD;OnRBR"~VBN|?5^?VBZA`"?NNPrh|NNPSV-?RBʡE?i+1 word kylixJJS㥛?NNPS㥛i+2 word excessiveRBZd;O?NNSZd;ONNjt?JJjt i word essayNNy&1?JJy&1i-2 word francNN +?JJ +οi+1 word originalNNv@JJvi word shuttleJJ(\NN(\?i word disagreesNNSv/RB1ZdNNQVBZn @VBp= ף i suffix pthNNSQNNMb?JJI +?i-1 tag+i word JJ plasticJJRQNNRQ?i-1 tag+i word NNP charteredNNPp= ף?VBDp= ףi tag+i-2 tag NNP RPVBZ-NNPS1Zd?NNSDl?JJ7A`¿NNP?i-1 tag+i word TO risingVBrh|׿VBGrh|?i-1 tag+i word RB pilotNNK?RBKi-1 tag+i word IN aflatoxinNN%C@NNSʡEJJ%CRBS i word classyJJ+?NN+i-1 tag+i word CC establishedVB!rhVBD!rh?i-1 tag+i word JJ lowsVBZSNNS rh@NNZd;Oi+2 word consumerNNV-?VBDףp= ?JJRV-RB+NNPZd;O?NNPS/$VBG rh?JJZd;?i-1 suffix hitNNSQ?NNPNbX9JJ-?NN|?5^VBNp= ףRB(\?IN"~jDTK7A`?i word reopensVBZ r?NNS ri+1 word restaurantVBV-VBNV-?i-1 tag+i word NNP shoppingVBG{GzNNP{Gz?i-1 tag+i word '' netJJʡE?NNʡEۿi-1 tag+i word RB statedVBD7A`VBN7A`?i-1 word flaringRP +RB +?i-1 word raise JJRL7A`?CC rh?VBN\(\?VBD\(\IN;On?RBRL7A`VBPٿRB;OnJJK7?NNˡEi-1 word collinsJJ+VBD+?i+1 suffix lue VBnʿJJOnÿNNMbXVBDJ +ѿVBNMb?POS5^I NNSʡEVBG"~j?VBP/$RBMIN|?5^@VBZ5^I ?JJR$C?i-1 tag+i word JJ vestedNNSzGJJGz?NN(\ؿi-2 word upheldNN~jt?JJ~jti word transportingJJmNNI +?VBGZd;O?i-1 word marginalNNnٿNNPn?i word lightingVBGPn?NN rNNPRQ?i+2 word lemontNNʡE?NNSʡE޿i-1 tag+i word CC understatedVBN{GzVBD{Gz? i+2 word riseNN/$@VBDQ?VBNQ?VBPp= ףRBtVοINGz?RPT㥛 JJ/$i-1 tag+i word DT skyNNQ?JJQi-1 tag+i word TO provisionalJJ/$?NN/$ֿi+1 word recognitionNN$C?JJV-JJRA`"ӿi-1 tag+i word VBN executiveNNn@RB{GzJJMbXi-1 tag+i word CC streamliningJJ̿VBG? i suffix S.ANNPSV-JJClNNPn?i+2 word clubsCDZd;O?NNPZd;Oi-1 word shiningNNˡE @VBN rJJ~jtNNPv/i-2 word growth WDT{Gz?JJ/$INK7A`?DTK7A`VBh|?5@VBGS㥛CCoʡ?VBN7A`@RB)\(NN!rhܿVBD+VBZ;On?i-1 tag+i word : labelsNNSQ?JJQi-1 tag+i word RB holeVBP㥛 ?VBN㥛 i-2 word killersJJ(\NNS(\?i-1 tag+i word `` regardlessRBGz?NNGz i word burlyNNSZd;OJJ333333?RBJ +i-1 tag+i word RB exposedVBN&1?JJ(\?VBDCli+2 word innovationsDT= ףp=PDT= ףp=?i-1 word analyticalNNPS~jt?NNP~jt i suffix tc.RBClNNuV?FWQ?VBZzGi-2 word featsNNFx?JJFxi-1 tag+i word JJ personnelNNS$C?NN$Ci word accessibleJJp= ף?RBp= ףi-1 tag+i word `` organicJJQ?NNQֿi-1 tag+i word CC promiseVBPx&1?NNx&1i-2 word followedVBN/$?NNMb?JJ?5^I NNPjt i word cottonVBSNNn@@JJZd;VBZzGڿNNSClNNPni-1 tag+i word IN humidJJK7A?NNK7Ai-2 word patternJJnNNSn?RBRV-?RBV-ڿ i suffix 60AJJX9vNNPX9v? i suffix eks NNPSl?NNX9vVBDsh|?NNS9v @NNP"~VBI +VBPZd;OJJ rhVBZ9v@i-2 word aboutVBDMbX9?WDTV-NNS'1Z @VBtV?CDʡEVBG+VBNˡEJJʡE?VBZT㥛 NNZd;?RBR/$ۿIN#~jJJR/$?RPxPOSnRBJ +NNP rhѿCCS㥛?RBSHzGDTp= ףؿNNPS'1Z?JJSM?i-1 suffix ism NNS#~jVBd;OJJE?NNGzVBDʡEݿVBNm?RBoʡ?IN}?5^I?VBGI +?VBPZd;׿VBZ333333?DTni-1 tag+i word VBG documentaryNN$C?JJ$C i-2 word eyeNNnIN+VBJ +WDT+?JJ^I +@ i suffix einNNPSB`"JJNNA`"JJRV-RB@NNPPn?VBCli word traveledVBNClVBDCl? i suffix ero VBDw/ܿCDET@NNSp= ףJJZd;NNP +?VBvNNPS㥛 NNx&@VBNtVRBR}?5^I i-2 word west NNSh|?5?FW$CRB/$VBZV-NN7A`NNP~jt?VB(\ݿVBGl?JJv@i-1 tag+i word NN reportVB(\NNjt?JJZd;ONNPzG?i-2 word crouchedNNK7A?RBK7Aпi-1 word agreementsVB|?5^VBP|?5^?VBNFxVBDFx?i-1 tag+i word PRP beforeRBV-INV-?i-1 tag+i word NN matsudaNN&1NNP&1?i-1 tag+i word NN overseasRBl @NNS&1NNbX9JJ|?5^ i word lillyVBZV-RBPnNNP"~ @i-2 word outlookRBL7A`尿INT㥛 ?JJV-?NNffffffUH$Ci-1 tag+i word JJ owningNNMbX@VBGMbXi+1 word bassistVB+NNv?RB= ףp=i-1 tag+i word VB farmersNNSmNNPm?i-1 tag+i word DT careerNNd;O?JJd;Oi-1 word unamortizedNN}?5^I?JJ}?5^Ii-1 tag+i word JJ sightingsNNK7ANNSK7A?i-1 tag+i word RB outstandinglyRBffffff?JJffffff i word labelsJJQNNS#~j?NNZd;Oi+1 word touristJJJ +NNjt?NNPGz?i-1 word spend WDT rh?JJZd;O@NNHzGJJR rh?RB1ZdINDlDTx&ѿRPQ?PDTx&?RBR rhi-1 tag+i word JJ workingsNNPS}?5^INNS}?5^I?i-1 tag+i word JJ cabalNNS+NN+?i+1 word tonedVBZ$CVBP$C?i+2 word briskNNS㥛?JJS㥛i-1 tag+i word JJ intellectJJ;OnNN;On?i-1 tag+i word NNP totalsVBZ!rhԿNNS!rh?i-1 tag+i word DT cokeNN|?5^ڿNNP|?5^?i-1 suffix ots''%CVBPB`"?JJxVB(\?NN\(\VBDQ?VBNQPOS%C? i-1 word head NNjtVBGGz?VBQ?RPK7A`տRB+?IN= ףp=?NNSMbX9FWHzGٿRBREԸi-1 tag+i word NNS liableVBP㥛 JJ㥛 ?i-1 word quartetVBZ+?VBD+i-1 tag+i word TO southVBJJE?NNP1Zdӿi word plainesNNPx&1?NNPSx&1ܿ i word cefiroJJRQNNPRQ?i+1 word patentJJSK?RBSKVBPˡEԿRBIN?VBˡE?JJoʡ?NNoʡݿ i-1 word ballNNClRPCl?i+1 word paribasNNPv/?JJ ףp= ?NN ףp= FWtVοRBq= ףp?IN~jtۿi+2 word hostsNNRQNNPRQ?i-1 tag+i word , pokesVBZ~jt?NNS~jti-1 tag+i word VBZ outperformedRPq= ףpVBNq= ףp?i-1 tag+i word VBZ sittingVBG'1Z?JJ'1Z i-1 tag+i word -START- lawmakersNNS?5^I ?NNP?5^I i word rocketingVBGMb?NNMbi-1 tag+i word `` rattledVBN#~j?JJ#~ji-1 tag+i word NNP acknowledgedVBPQNN+VBDS?i-1 suffix omaVBP= ףp=NNV-ҿJJd;O?NNPʡE? i word planeNNtV @JJtV i-1 tag+i word TO monitorVBMb?NNMbп i+2 word troVBN&1JJ&1?i-1 tag+i word -START- eastmanJJ7A`NNP7A`?i-1 tag+i word CC blockVB-ƿNN-?i-1 tag+i word NN pulloutNNB`"?INB`"ٿ i word slushJJT㥛 NNT㥛 ?i word opportunisticVBnٿJJn?i-2 word hawaiianVBZ#~jNNS#~j?i tag+i-2 tag MD NNPSCCjtVB rؿRBQ?i-1 tag+i word IN seatingVBGv?JJvi+1 suffix umsVBtV?VBPy&1NNffffff@JJ+NNP/$i-1 word breedNNSuV?NNuVi+1 word frameJJzGNNzG?i-1 tag+i word CC houndedJJPnVBDPn?i-2 word naturalizedVB$CIN$C?i-1 tag+i word `` solidarityNN-NNP-?i-1 word componentsWDTX9v?INX9vi+2 word windyVBPNNNbX9?NNPI + i word irvingVBG/$NN1Zd˿NNPK@i-1 tag+i word JJ merchantNNS&1NNHzG@JJQi-2 word remainedNN rhݿVBG rh?RBx&1?JJx&1ܿi-1 tag+i word DT taxiNN?RBi word smarterVB~jtNN}?5^IRBRV- @JJA`"i-1 tag+i word VB keptVBN/$?NN/$ݿi-1 tag+i word CC unsuccessfulJJS?NNSi-2 word referringRBoʡ?INoʡVB#~jJJףp= ?VBDx&1VBNS?i-1 word collateralVBZM?NNSMi-1 tag+i word PRP$ veryJJRB?i-1 tag+i word JJR funNNSGzNNGz?i-1 tag+i word IN friendlyNNSA`"JJ)\(?RBv/i+2 word engineerJJ= ףp=?VBN= ףp=i+2 word fakingVBNK7A?VBDK7Ai word contentedVBNd;OJJd;O?i+1 word washingtonVBPA`"?NNI +JJbX9INd;O?DTd;Oi-1 tag+i word DT weeklyJJx&@NNzGRBMbXѿNNP/$i+2 word branchesNNPS|?5^?NNSJ +JJ rNNPDl?i tag+i-2 tag WP RBJJSZd;O?RBSZd;O׿i+1 word privilegesNNtVֿVBʡEJJq= ףp?i word georgiaNNPSMbXNNPMbX?i-1 tag+i word DT congressNNI +?JJI +޿ i-1 word inc. VBZd;OJJNNOnÿRBRx&VBN/$޿VBPh|?5?RBx&?INL7A`?VBGy&1?VBDx&1@VBZoʡ?NNS rhi+1 word earnsVB= ףp=NN}?5^I?INVBP}?5^IRBNbX9WPFx?NNP?i-1 suffix tonNNSV-?VBHzGNNPSV-@POSZd;?VBNGz?INFx?JJx&1 VBDjtVBPmRB{GzVBG rhNNٿVBZ$C@NNP +?FW"~j i word groundVBN(\JJ|?5^NNPZd;OVBX9vNNPS+RB%CNNMb@VBDoʡi-1 tag+i word PRP boatingVBGS?NN!rhJJB`"ѿi-2 word directorsVBNtV?NNNbX9VBDsh|??JJvIN(\?i-1 tag+i word VBG humanJJ$C?NN$C i+2 word richNN+?VBP&1INS?DTSNNSp= ףNNP9v?VB&1?i+2 word pleasantVBZ^I +NNS^I +?i-2 word airwaysNNPS{GzĿNNP{Gz?i+1 word scrambledNN+?VBD+ i word skirtVBPV-NNV-? i suffix axiCDlNNPZd;ONNMbX?RBi tag+i-2 tag PRP ''NNSnVBDGz?VBN;OnVBPh|?5οRBHzGVBZ^I +@DT+?i-1 tag+i word VBP appealingVBG?NNi-1 tag+i word JJ stereoNNS?JJSi-1 tag+i word RB imagineJJZd;OVBZd;O?i word circumventVB~jt?JJ~jt i+2 word newNN/$CCZd;ϿVBNq= ףp?RB-?RPPnVBG(\?NNPS?JJDlVBD+ηCDFxWDTw/VB@VBPjt?EXzG?IN&1DTh|?5οVBZףp= ?JJR7A`NNPrh|@JJS= ףp=NNSq= ףp?i word inadequateJJClg@VBZd;ONNʡERB(\NNPZd; i word faultJJS1ZdNN +?NNPMi-1 tag+i word CD nearJJjtNN/$INQ?i-1 tag+i word DT faxNNx?JJxi-1 tag+i word VBG feltVBNV-?NNV- i suffix aleNNS+PRPRQVBD#~jRBSZd;OǿRBRV-VBGzRBT㥛 NNPSB`"VBP{GzNNPw/?JJF@NNB`"@VBNV-UHMbX9i+2 word anheuserVBD~jt?JJjtNNQ@VBN~jtۿRBrh|i word hopefullyRBK7NNPK7?i-2 word hospitalsVBZ= ףp=NNS= ףp=?NNV-?JJV- i suffix WhoNNPKWPm@NNʡEJJR㥛 JJx&i-1 tag+i word NNP acceptsVBZL7A`?VBD|?5^IN1Zdi-2 word episodeDTʡEͿPDTʡE? i word resortVBvNN333333@JJ + i-1 word hallVBZy&1?VB(\@VBP(\NNSy&1i-1 word jacketVBN/$?VBD/$i-1 tag+i word NNS advisoryJJ5^I NNP5^I ?i-1 tag+i word RB firmlyRB;On?JJ;Oni+1 word muttsJJffffff?NNffffffi+1 word outageNNףp= ?JJףp= ÿi-1 tag+i word DT bonesNNS rh?RBuVNN?5^I i-1 tag+i word VBP startVBP#~j?VBNZd;OVBRQпi+1 suffix ips NN%C VBP^I +RB rhVBZ^I +?NNPSPRP$S?VBNh|?5@CDd;OοWDTʡEINʡE?JJ^I +?i-1 suffix eemJJRl?VBN-?VBPQRB333333?VBlJJZd;?NN(\RBRli-1 tag+i word , equalVBʡEÿVBPMJJ㥛 @NNK7i+1 word horticulturalJJnNNPn?i-2 word symbolismVB(\NN(\?i word sterilizeRBV-VBV-?i word cadburyNN(\NNP(\?i-1 word startJJnIN r?VBGJ +VBRQ@RP rRB;OnNNV-׿i-1 tag+i word NN locatedVBNn?VBDni-1 tag+i word RB crumbleVBV-?JJV-߿i word storageVBˡEVBP"~NNPn@JJ(\i tag+i-2 tag JJS -START-VBffffffƿNNPSZd;ONNQ?VBPffffff?JJ|?5^?VBZ+NNSX9v?NNP&1i-1 tag+i word JJ tapeNN(\?JJ(\i+2 word specialistNNbX9JJbX9?i word resolveVB"~?NN"~i-1 tag+i word JJ boutsNNSS?NNSi-1 word overweightVBP?5^I NN?5^I ?i+1 word either IN?VBZGzJJ/$VBD}?5^IܿVBNFx?VBP`"?RB"~jDTٿNNS rh?VBp= ףNN;On@i-1 word picturesNNPSZd;NNPZd;?i+1 word homesVBD333333ۿVBNQ@JJT㥛 ?INX9vNNPzGRB+׿NN!rhi-1 tag+i word NN bidsNNSK7A?VBDK7Ai-1 tag+i word NN plannedVBNp= ף?JJ"~?VBDli word kidnapperNNGz?FWGzi-1 tag+i word DT louisvilleNN㥛 NNP㥛 ?i-1 tag+i word ( grilledVBNPnJJPn?i-1 tag+i word CC allureNNSV-NNV-?i-1 tag+i word PRP snubbedVBPGzVBDGz?i-1 tag+i word , pcsNNSS@NNPVBPʡEi-1 suffix mr.FWMbX?VBDINClVBZMbX9NNS+NNPˡE}@NNPSzGNN/$i-2 word uncertaintyJJx&1?NNx&1i-1 tag+i word RB unifirstRBGzNNPGz?i-1 tag+i word VBZ becomeRB`"VB'1ZPDTOnVBN㥛 @i+2 word interventionDT{GzIN{Gz?i word monetaristNNʡE?JJʡE i word sodaNNSnNNv?JJsh|?ݿi-1 word enough VBGuVJJ/$?NNv/?INZd;O@NNSB`"?VBClVBNbX9RBOnDTKi-1 tag+i word RBR aboutJJ^I +IN^I +?i-2 word danceNN"~?PRPSJJSÿVBZB`"?i+2 word tackerCCKNNK?i+2 word secaucusNNPS9v?NNP9vi-1 tag+i word `` carlNNPV-?NNV-i word tristateJJI +?NNI +ֿi-1 tag+i word NN antiqueNN|?5^?JJ|?5^i word reassuranceVBSNNK?JJv/i+2 word expertNNd;O?JJd;O i-2 word sankRBʡE?JJʡE!i-1 tag+i word IN representativesNNPS|?5^?NNSOnNNP㥛 ?i-1 tag+i word NN scaleNNʡE?JJV-׿VBD#~ji-1 tag+i word NNP carpetNNX9v?NNPX9vi-1 tag+i word NNS unwarrantedVBN/$JJn?VBDI +i-1 tag+i word RB toutedVBNClVBDCl?i-1 tag+i word VBG asideRBbX9JJ?5^I ҿRP ףp= @i-1 suffix oryNNS/$?NNP?NNPSNNFx?VBP/$WDT ףp= JJm@VBNS?VBZ/$RP/$FWp= ף?IN'1ZĿVB/$VBDFxRBL7A`?i-1 word reproduceVBNףp= ?JJףp= ӿi-1 word grandlyVBNClVBDCl?i+2 word ignoredDT`"RB`"@i-2 word premiumsNN\(\RBffffff?CDx&1?i+1 word bureauNNX9v?JJR?5^I ҿJJMNNS-NNPRQȿNNPS ףp= ?i-1 tag+i word DT elseRBoʡ?JJʡENNZd;Oi-1 tag+i word `` realisticJJ+?NN+i+2 word fertilizersNNS#~j?JJ#~ji-1 tag+i word DT processorNNʡE?JJʡEi+2 word resultingVBNZd;O?JJZd;Oi-1 tag+i word , petrochemicalNNK7A?JJK7Aпi word concurredVBNX9vVBDX9v? i suffix ncaRBClNNˡEԿNNP(\?i-1 tag+i word NNP accountantsNNS+?IN+ i-2 word role NN|?5^VBNQٿVBPzGếPRP$C?NNPl?VBG/$?RB㥛 VBDV-?FWV-?JJx&1ԿNNSi-1 word takenDT%C?NNS%C?RP!rh?RBI +?NNOn?VBN!rhJJx&1̿IN`"i-1 word commerzbankDTNbX9RBNbX9?i-2 word windingPRP$x&1?PRPx&1i+2 word minoritiesNNP%C?VBGQ?JJ㥛 NNV-i tag+i-2 tag IN RBWPjt?VBZ rCCn?PDT|?5^ٿVBG/$JJrh|߿NNy&1ܿPRPA`"NNS= ףp=?NNP?VBq= ףp@CD+PRP$333333?VBDJ +JJR333333?NNPSK?JJS/$$}?5^IRB rhٿVBN"~@DTK7IN9vVBPK7A`?RBSx&?i-1 tag+i word NN concernedVBN?5^I ?JJMbؿVBDQ?i-2 word travelingNNZd;O?RBZd;Oտi-1 tag+i word JJ payableJJQ?NNQi-1 word enteredNN ףp= ?RB ףp= i-1 tag+i word IN sdiNNףp= ۿNNPףp= ?i-1 tag+i word DT airlinesVBZ"~jNNSCl?JJZd;Oi-1 tag+i word , dividedVBNtV?VBDtVi+1 suffix twoCDS㥛@PRPʡE?NNSSNNPbX9NNPSffffff?NNGzINClVBDS?RBSV-VBNCl?DTI +VBoʡ?VBG~jt?RBX9v?JJS rؿVBPn?JJ/$޿VBZ rhѿPRP$ʡEi-2 word highwayCDx&1?NNx&1 i word auditNNʡE@JJw/VBX9vϿVBP/$i+1 word koppelJJ/$NNP/$?i-1 tag+i word DT instantJJ}?5^I?NN}?5^Ii-1 word firstVBG7A`NN\(\CDףp= VBPK7INMNNPSI +?VBD&1?JJSx&VBNzG?DTʡE?NNS5^I VB1Zd?VBZx&?JJMbX9?RB"~j?NNP/$i word tonightCCClEXK7A`ſRBbX9NNPHzG?NNV-?VBD5^I i-1 tag+i word JJ tightenerNNCl?JJCli+1 word whizzesVBPFxNNS)\(NNzG? i-1 word finkNNPSK7A?NNPK7Aпi+1 word visitorsNNS(\JJS?NNPL7A`i-1 word prematureRBV-NNSV-? i word reefsNNSK?NNKǿi-1 tag+i word IN norwegiansNNPSzG?NNPzGi-1 word restrictionsRBT㥛 ?JJDlѿIN= ףp=VBPKWDT= ףp=?i-1 tag+i word IN legitimateJJ{Gz?NN{Gz i suffix MNCNNPn?NNPSni-2 word indeed RBRHzGWDTrh|߿RBQ?NNS+?WPxNNx&JJRHzG?INʡEDT/$@JJ'1Zi-2 word embarrassingJJx&1?NNx&1i-1 tag+i word NNS directVBٿVBP!rhJJw/?i-2 word mainsVBZ rhVBS㥛NNSʡE?i word magnoliasNNS/$?NNPFxNNPSMb`i+1 word seepedDTMb?WDTMbi-1 tag+i word VB firstRB\(\?JJ\(\i word basementNNGz?JJGzi-2 word naplesVBG?NN i word prizeINq= ףpNNq= ףp?i+2 word neighborhoodPDT1ZdVBCl?VBP"~ji-1 tag+i word RBR dowdyJJh|?5?RBh|?5i+1 word sluggishVBDףp= ?JJR+JJףp= RBR+?i-2 word colonyVBp= ףVBPp= ף?i+2 word toiletNNX9v?JJX9vi-1 tag+i word NNP lieberNNPS/$NNP/$?i-1 tag+i word NN laughsNN(\VBZ(\?i-1 suffix pan NN#~jԿVBNv/POS"~?NNPST㥛 JJlVBDjt?VBPI + @RB/$?IN{GzVBZ-?NNSʡEVB?NNPPnпi-1 tag+i word -START- candidJJV-?NNRQNNPxi-1 tag+i word IN superpowerJJRDlNNDl?i-1 tag+i word RB oneVBSRBK7A`NNMb@VBNClCDGz߿PRP|?5^?JJV-i-1 tag+i word NNP rodeVBZ\(\VBD\(\?i-2 word bogusNNSʡEJJ&1?NN{Gzi-1 tag+i word NNP worksNNoʡVBDOnVBZ-NNPsh|??NNSZd;? i word pawingVBG rh?NN rhݿ i word boxyVBZmJJM@NNVBDˡEi word johansonNNSV-NNPV-?i-1 word appleVBDS㥛?VBNS㥛VBPQ˿RBp= ףVBZK7NNS㥛 ¿NN +? i word blocWDTSJJoʡVBZ`"NNS7A`NNP7A`?NNjt @VBNMb i word swapsNN(\ݿJJtVNNS5^I @VBN{Gz i word heatNNP%C@RP`"NNMbX?VBNx&1ԿVBPS㥛JJZd;NNSCli-1 word threateningNNv?RBv i suffix AnyDTsh|@NNS+NN/$NNPʡE i+1 word insurerNNPSffffffVBGʡENNʡE?JJffffff?i+1 word methodsJJ9v?NN9vҿi word satelliteVBP333333NNSNN"~j @JJVBw/i word lobbyistNN(\?NNP(\ i+2 word kickNNSFxJJ?NNI +i-1 tag+i word IN inquiringVBGQ?NNQi-2 word rejoinJJS㥛?NNS㥛ܿ i word helmNNx&?NNSx& i suffix UGOVB\(\NNP\(\? i word marthaJJX9vNNnNNPZd;?i-1 tag+i word JJ maleNN)\(JJ)\(? i+2 word dpcINZd;NNS"~?NNZd;?NNP"~i-1 tag+i word DT umwNN!rhNNP!rh?i+2 word geeksNNPSK7?NNS)\(ܿNNP'1Z i-2 word ala.NNSNNPS?i-1 word neighborhoodWDT(\ſIN(\?i-1 tag+i word JJS southNNP9vJJ9v?i word strengthsNNSPn?NNPni-1 word demandedNNSӿJJK7AJJRv?i-1 tag+i word IN associationNNףp= ?JJףp= i+1 word moves IN~jtNNSA`"VBClNNPS)\(VBP{GzWDT~jt?NNP)\(?VBGDl?NNffffff?CDCl?JJ㥛 ?i-1 tag+i word NN breakersVBZ!rhNNS!rh?i-2 word sept.JJK7VBDjt?NNPGz?NNPSGzNNl?i-1 tag+i word RB mechanizedVBNsh|?JJGz?VBDw/Կi-1 tag+i word NNP discoveredVBZ㥛 VBNS?VBD(\i-1 tag+i word JJR satisfactoryJJX9v?NNX9vi-1 word disputesVBPؿJJ?i+2 word institutesJJ +?NNP +޿i-1 tag+i word -START- illinoisVBG-JJENNPX9v?i word kidnappedRB}?5^IVBN}?5^I?i-1 tag+i word RP imagesNNSQ?NNQi-1 tag+i word JJ lendingVBGSۿNNB`"JJS㥛?i-1 tag+i word -START- yearlyNNmRBSӿNNPK7JJ;On?i-2 word taxpayerNNS333333NN333333?i-2 word craftJJ(\?NN(\i-1 word universalNN%CNNP%C?i+1 word lurchVBG333333NNʡE@JJx&1Կi+1 word developerNNPSd;OJJoʡNNPx?i-1 tag+i word TO gatherDTSտJJZd;OVB/$?i-1 tag+i word CD louisNNSNNSp= ף?RBʡEi-1 tag+i word NN plungedVBDtV@VBN}?5^INN"~ҿIN+ i+1 suffix go POSClCD\(\NNP`"?VBʡENNPSMb?RBX9v?VBDףp= ?VBZ1ZdNNSS㥛?NNd;O?VBP\(\߿JJIN\(\i word donatedVBN/$?JJ(\VBDGz?i+2 word academiaNNS rh?NN rhi+2 word dennisCCRQ?DTRQi word potentialVBSNNS-NNrh|?JJw/?i-1 tag+i word NN restrictsNNStVVBDZd;VBZv?i-2 word forcingJJq= ףp?VBNMbNNNbX9?i-1 tag+i word DT attemptNNZd;?JJZd;i-1 tag+i word VBN rocketingVBGMb?NNMbi-1 tag+i word JJ surveysNNSv?JJZd;NNtVi-1 tag+i word , stiflesVBZ/$?NNS9vJJDli tag+i-2 tag DT VBZRB&1@JJSDl?VBDK7RBR!rh?VBPX9v?VBZB`"ٿNNPGzNNPS\(\VBG rh?FWRQ?IN)\(@NNS`"?JJRCl?RP|?5^VB-NN1Zd?RBS)\(VBN1ZdJJQ?CDA`"i word tumbledownJJjt?NNjti-1 word imposingJJ5^I ?VBD!rhVBN)\(i-1 tag+i word JJ rc6280NNI +?NNPI +i word informationNNK7A`?NNPK7A`i-1 tag+i word JJ marxismNN-NNP-? i word trendNNPSoʡNNPoʡ?i-1 tag+i word CD beforeIN(\?JJ(\i word repossesedVBNZd;OǿJJZd;O? i word stuffNNSQտNNA`"?RBʡE i word turgidNNKJJK?i+1 word combinationJJSX9vVBNX9v? i word firmedVBNMVBDM?i+1 word wonderingNNSzG?RPzGҿi-1 tag+i word VBN dataNNSSNN9v?NNPX9v?i-1 tag+i word JJS rivalsVBZx&1ܿNNSx&1?i-1 tag+i word VBP callsVBZK7ANNSK7A?i word observersNNSRQ?RPRQi-1 tag+i word CD managingVBGX9v?NNX9vi+1 word naturallyVBuVͿVBN r?JJoʡ i suffix hedRP+JJS}?5^INNP㥛 VBZd;OJJRClVBP= ףp= RB5^I INJ +NN"~#VBN/$/@NNS~jtJJDl@VBD{G:-@RBSGzVBZxDTV-i-1 tag+i word NNP atlanticJJ+NNPV-?NNPS~jti-2 word lackedNNS"~?NN"~i word softnessNN rh?JJ rhi-2 word pillsWDT/$VBN/$?JJ/$IN7A`DTZd;O@i+1 word weirdNNX9v''&1?JJ{Gz?i-1 tag+i word -START- futuresNNPSʡENNSy&1@RB"~jNNPI +i-2 word encouragementJJR9v?RBR9v i-2 word cowsRB"~@IN"~i-1 tag+i word NNPS closedVBDbX9?VBNbX9 i word louisRBmNNSp= ף?NNSJJoʡNNPDl? i suffix 992NNSsh|?ſNNS㥛?JJd;O޿i-1 tag+i word CC ridVB/$?VBD/$i-1 tag+i word NN armsVBZ-NNS-?i word subtilisNN7A`VBD(\NNS㥛 @i+2 word ministryJJ$CNNS㥫NNPˡE?i-1 tag+i word IN adjustmentNN}?5^I?JJ}?5^Ii-1 tag+i word -START- qvcNNA`"NNPA`"?i+2 word tumbledRBV-INV-?NNPnNNn?i-1 tag+i word `` madeVBNؿVBD?i-1 tag+i word DT fatherNN?RBSJJZd;i-1 tag+i word VBZ parkedVBN?5^I ?JJ?5^I i-1 tag+i word '' offersVBZV-?NNSV-i-1 suffix yteNNPtVJJMbؿRBˡENNGz?i-2 word componentVBGSJJFx?NNsh|??i-1 tag+i word DT bacterialJJ r?NN ri-1 tag+i word NNP affiliatesVBZENNSE?i-1 tag+i word VBN sovietJJFx?NNPFxѿi-2 word babiesNNSCl?JJSCl i+2 word 'llVBP`" @JJ/$VBZ r?NNS ףp= NNPX9vVBClRBS@NNbX9i word buoyantNNRQJJRQ?i-1 word russianNNSHzGNNA`"?JJV-i-1 tag+i word MD assureVBˡE?INˡEi-1 word pipesVBNʡE?VBDʡEi-1 tag+i word NNP colorVBDNNPS(\µNN?NNP(\µ? i+1 word ivyNNSmVBNy&1?JJQi-2 word posedNNSCl?NNPCli word reflectedNNSDlVBNV-¿JJ~jtVBDS?i+1 suffix telCD-NNPʡE?INʡEJJV-@NN/$i word columbusJJx&1NNPx&1? i word availNNPn?JJPni-1 tag+i word IN cambriaVBGSNNPS?i-2 word mastersonNNB`"?VBPB`"i-1 tag+i word NNS pointedVBNMVBDM?i+1 word samuelNN|?5^?JJ|?5^i-1 word plateVBZ}?5^I?NNS}?5^Ii-1 tag+i word -START- deltaVBS㥛NNxJJ+ηNNPZd;O?i-1 tag+i word VB tunedVBNˡE?VBDˡEi word generateJJd;OVBCl?VBP(\?i-1 tag+i word RB forfeitVBZ`"ֿVB`"?i-1 word waterworksINQ?VBDQݿ i word gameJJoʡNNPoʡ?i-1 tag+i word VBD caughtRBʡEVBN^I +?NN"~ʿ!i-1 tag+i word -START- combustionNN rhNNP rh?i-1 tag+i word VBN classicNNPQJJQ@ i word remoraNN1ZdNNSZd;?VBG ףp= i-1 tag+i word NN yourVBN{GzJJ{Gz?i word connectionNNP(\NN(\?i-1 tag+i word IN topgradeJJm?NNmi-1 tag+i word -START- kellyRBX9vNNPX9v?i-1 suffix ortNNPSFxNNPffffff޿RBffffffIN\(\DTQ?VBDJ +@WDT7A`VBN(\VBGl?CDX9vJJR?RP㥛 JJoʡRBRVBP!rh̿VBZMb?NN{GzĿNNSS? i pref1 .DTjtƿIN'1ZWDTl?NNRQCDRQ?!i-1 tag+i word VBD oversubscribedJJuVVBNV-?RBd;O޿i+1 word anxiousRBSZd;O?JJSZd;Oi-1 tag+i word JJ prerogativesNNSOn?NNOni-1 tag+i word PRP$ woodNNSGzNNGz?i+2 word optedRB/$ſIN/$?i-1 tag+i word -START- jeanetteNNMbXѿNNPMbX?i+2 word youngstersJJRK7?NNMbX9RBR㥛 i-1 tag+i word NN layRBR"~NN(\VBD|?5^? i word phaseNNS?JJ-ӿNNP rhi-1 word jacobsonVBPI +NNףp= ?JJףp= DTI +?i-1 tag+i word POS ismailiJJxNNPx?i-1 word requiring NN ףp= ׿VBDMCCCl?INE?NNPy&1DTv/?NNSˡE@PDTv/JJRA`"VBNM?WDTEJJZd; i word proofNNSS㥛NNQ@JJQVBDԿVBZ/$ۿi-1 tag+i word VBZ applicableVBNV-JJV-?i-1 word rockiesVBNZd;O?VBDZd;Oi-1 tag+i word CC bolsterVBK7?VBP?5^I JJRClٿi word wealthierJJEJJR/$@RB|?5^WPX9vi-1 tag+i word POS independenceJJuVNNuV?i-1 suffix nonNNSS?NNSi+2 word ceaseVB5^I ?NN5^I i-1 word enhancesVBPFxNNFx?i+1 word channelsNNSK7NNK7?i+2 word assistNNPSClNNPCl? i+1 word m.j.VBZuV?NNPSuVi word summonedJJX9vVBDX9v?i-1 tag+i word DT prosecutorNNl?JJli-1 tag+i word NN architectVBP rhٿNN rh?i-2 word results VBZX9v@NNSX9vJJRS?VBN/$RB(\IN~jtVBPS?DT~jt?NNP/$@VBSJJHzG@NNd;ORBRbX9i-1 tag+i word VBG shovelsNNS+?NN+ i suffix nkyNNS rhѿJJ-޿NNI +FWoʡJJRy&1@i-2 word scientistsJJ rhNNPm?NN%CܿVBDE@VBN)\(VBPT㥛 EXK?i-1 tag+i word CC longerJJRM?RBRM i-2 word youVBG= ףp=?NN+RPZd;߿NNP~jtPRP+?JJX9vNNSRQ?VBZ{GzVBCl @RBL7A`''v?VBN1Zd?DTrh|׿CDQ?VBDv/JJRMb@RBRVBPI +?IN{Gzt?i+1 suffix egeVBGvRB|?5^NN{GzJJK7A?INuVDTV-@NNPm? i word absorbRB|?5^NNMbVB\(\? i word againVBPoʡRBw/@NNS(\NNP(\?NNPSrh|NNh|?5޿i word fearingVBGQ?JJK7NNCli-1 tag+i word NN routesNNS`"?VBZ`"i-2 word expansionRBjtNNS?JJuVINL7A`?NNP?5^I ?VB rhNNPS-i-1 tag+i word `` greenhouseJJ= ףp=VB#~jĿVBP7A`NN= ףp=?i+1 word mellonNNʡEӿNNPʡE? i+1 word eraJJQNNPQ?i+2 word forgeVBS㥛RBS㥛?i-1 tag+i word CC indicateVBP%C?VB%Ci-1 tag+i word DT costNNK?JJKi-1 tag+i word RB playVBMb?VBPMbi-2 word dealerVBDtV?VBNtVi+2 word scoresNNS+JJ}?5^I@VBK7VBPGzi word lingersVBZ= ףp=?NNS= ףp=i-1 tag+i word JJ stomachNNS|?5^NN|?5^?i+2 word flexibleNNPn?VBGPn i word want IN5^I VBmR@JJʡE6CC5^I JJSV-VBN+RBZd;NNK7VBDPnVBPGz.$@ i+1 word mudVBNS?JJS i suffix DGYJJMbX?NNPMbX i-2 word thanNNS;OnCCL7A`?VBGm?VBNOn?JJ5^I @VBZSRP ףp= ?RBK7JJRxVBD(\DTx&NNPNNPS#~j?PRP rhٿRBR~jtINv?JJStV?VBP+NNףp= VBCl @PDTMbCD-MDV-?i-2 word party VBPoʡRBףp= JJNbX9@RBRZd;OJJRGz?VBNS㥛?VBxֿNN~jtVBDS㥛i-1 tag+i word VB quiteRBZd;?JJq= ףpVBN/$i-1 tag+i word JJ wellRBx޿NNx?i-1 tag+i word JJ eighthJJx&1?CDx&1 i+2 word faxNNS|?5^?NN|?5^ i suffix 8.5NNSK7CDK7? i suffix biaNNPM?NNPS'1ZNNK7A i suffix p53CD333333?JJK7IN= ףp=NNSh|?5RBh|?5NNPn@VBNq= ףpտi-1 tag+i word DT antitrustJJ?NNi-2 word misconductVBSVBPS?VBDSi+1 word cashedVBGzǿVBPGz? i word nihonNN-JJh|?5NNP%C?i-1 word chefsINGzWDTGz? i+1 word hold NNPSX9v׿NNjt?RBRffffff?IN}?5^IVBZQ?NNPvMD5^I ?VB(\WDT}?5^I?RB ףp= i-1 tag+i word NN claimedVBNX9vVBDX9v?i+2 word whole JJ1ZdJJRMbNNPq= ףpVB/$RB~jt?VBDT㥛 VBNV-?RBRm?IN@VBZV-i-1 tag+i word VBG karaokeVBp= ףNNSZd;NNʡE?i-1 tag+i word `` areDTClVBPp= ף?INK7A`i-1 tag+i word RB severeJJDl?RBDli-1 word declinesVBP$CRBR/$?RB$C?JJR/$i+2 word jewelsVBףp= RP/$?IN̿i-1 suffix eumIN"~j@JJ"~jNNtV?VBDtVi-1 word paymentsVBDMbX9@INX9v?VBNrh|RBx&1i word slackenedJJ(\?VBDEVBNQi-1 tag+i word JJ academicNNS|?5^ѿJJ|?5^?i-1 tag+i word NNP chiefsNNPSv?NNy&1NNPJ +?i-1 tag+i word `` nightlineNNbX9NNPsh|??JJʡEi-1 tag+i word DT colonialNNPZd;?NN(\?JJGzi word rusticatedVBNS?JJSi+1 word drilledJJ%CNN1ZdӿRBQ?i+2 word chyronVBGʡENNʡE?i+2 word accuracyVBMbX?NNMbXi+2 word identityJJ"~jVBD"~j? i suffix een VBP(\RB/$VBZ(\NNPjtVBJJRClCDQ?IN"~j?NNStVJJMb@NNɿVBNp= ףi+2 word compellingVBm?VBPmݿi-1 tag+i word CC censoredVBNzG?VBDzG i word employCC`"VBP`"?i+1 word handheldJJS(\JJ(\?i word subjectedVBD333333VBN333333@i-1 tag+i word -START- banksVB|?5^NNS|?5^?NNPrh|i+2 word pregnancyVBRQ?VBPRQi word sincereJJ;On?RB1ZdEXFxi word scriptsNNS!rh?NN!rh i+2 word lasNNSSRB~jt?NNRQ?i-1 suffix xinWDTh|?5INh|?5?i-2 word contributionRBSQJJn?RB|?5^?NNPV-i-1 tag+i word JJ beeperNNPʡENNʡE?i word hesitateVBGz?NNGz׿i-1 tag+i word NNS reducesVBZ/$?VBP/$i word bringingVBGsh|??NNI +JJ+i+1 suffix lay MDCl?NNPSjtVBG rhJJjt?NNV-ڿVBD-ӿRBR!rh?RB!rhNNSjt?VBNHzG?VBPp= ף?VBZClNNP1Zd i word scaredVBDDlѿVBN(\JJK7A`?i+2 word receiversDTv/?PDTv/i+1 suffix notVBP|?5^JJ-RP1Zd?JJR(\RBT㥛 ?JJS;On?WDTSINK7A`@DT"~jVBDv/?POS7A`VBZ)\(@NNʡEӿNNP&1ڿVBG(\?RBSMbX?VBNbX9PRPT㥛 ?NNSQ?MDT㥛 @VBxi word retailersVBZ(\NNPSp= ףNNPJ +? i suffix imyVB㥛 JJ㥛 ?i+2 word beginsVBP1ZdNNSQ?NNFx?i-1 tag+i word DT cloggedJJ-?NNʡEVBNq= ףpͿi-1 tag+i word DT obtainedVBNuV?NNuVi+2 word brilliantDTS@WDTS i suffix -89CDK@JJ~jtNNPx&1i+1 word boilingNNS?JJSſi-2 word suggestsVBGKNNsh|??JJ/$i-1 suffix cesDTRQNNSQNNP;On?NNS?POSy&1?WDTbX9RBK7A`?INnJJRn@VBD#~j?CCRQ?PRP rh''KVBPx&1?VBZv/RP +@JJX9v?VBN+?VBS㥻RBRK7A`VBG)\(i-1 tag+i word NNS stemVBPK7?NNK7 i+1 word addsNNP(\?NNPS(\NNn?PDTX9vWDTCl?JJnDTjti-1 tag+i word '' thrownVBNˡE?NNˡE i-1 tag+i word -START- estimatesVBZ rhNNPSbX9NNS&1? i suffix OMBNNPS?NNSSi-2 word consequentlyVB rhտJJ rh?i-1 tag+i word CC tearsNNSS?NNSi-1 tag+i word NNP nuggetNNPS#~jNNy&1̿NNPCl?i-1 tag+i word : followVBZd;?NNZd;i-1 word patelVBZS?NNSSi-1 tag+i word IN refusingVBG&1?NN&1i-1 word promoteJJZd;O?NNS~jtNNX9v?RBFxJJRZd;Oi-2 word bustedDT&1?IN&1i-1 tag+i word NNS criticizedVBPT㥛 пVBDT㥛 ?i+2 word rossiniNNP~jtFW~jt?i-1 tag+i word DT greatestJJ"~JJS= ףp=?RBSCl i suffix etoJJʡENNS;OnNNP-?VBJ +?NNPS̿NN- @VBN5^I i-1 tag+i word , walkedVBPClVBDCl?i-1 word quakeDTq= ףpWDTq= ףp? i suffix ANSVBZ rh?VBP~jtNNSX9v@NN"~NNPSi+2 word everythingJJ/$?NNNbX9POSK7@VBPI +RBlVBZ}?5^I?NNS㥛 VBʡE?i-1 tag+i word RB vastJJS?RBSi word u.s.backedVBNK7A`JJl?NNPK7Ai+1 suffix ryoNNffffffJJffffff?i-1 word accountsINMbX9WDTMb?VBNV-i-2 word submittedVBNK7A`?JJK7A`i-1 tag+i word NNP waysNNPq= ףpNNPSq= ףp?i+2 word problems IN r?POS?VBN/$RB rȿJJx&?NNvVBDˡE?JJRˡEVBZ#~j?VBGx&1?i-1 tag+i word JJ strifeNNS#~jNN#~j?i-1 tag+i word CC canadiansNNPSףp= ?NNPףp= i-1 tag+i word JJ videoNNʡE?JJʡEӿi-2 word memoryJJ;On?RB;Onҿi-1 tag+i word VBD impressedJJ(\@VBN(\i+1 word under NNK?VBDZd;OVBNGz@VBZ rRBX9vVBGCl @JJRHzGJJMbX9 INuVDT㥛 ?NNSGz?NNP/$?VB333333?i-1 tag+i word NNP theftsNNS&1?NNP&1i-1 tag+i word IN goodyearNNPQۿVBPQ?i+2 word areasJJZd;OݿRPMb?RBMbNNZd;VBDS?VBN?i+1 word billionCDGz?NNV-JJ~jti-1 word youngestNNSHzG?NNHzGi-1 tag+i word JJ minimumJJQ@NNQi-1 word fundamentalNN rh?VBP rhi-1 tag+i word NN ticketingVBGK7A?NNK7Ai-1 tag+i word TO freezeVBMbX?NNMbX i word caseNNPS$CNNV-?NNP333333i+2 word realisticVBZV-POSV-?i+1 suffix 80sRBjt?JJjti-1 word profitablyVBʡEVBGʡE?i+1 word reinsuranceNNP(\VBFxٿVBG(\?RBffffffNN'1Z?VBP +?JJoʡi+1 suffix tiaJJ-?NN-i word collateralNN"~@JJZd;OJJREi+2 word consultantDTI +?NNI +i+2 word diagnosticVBNn?VBDni-1 tag+i word -START- concordNNQNNPQ?i+2 word headachesVBZKVBP%C?NNQӿNNPSE?CCEi-1 tag+i word NNP jewelersNNPSzG?NNPzGi-1 tag+i word , likeNNS㥛VBPSJJxIN~jt@VBRQ?RBMb i+1 word filmVBNL7A`?JJM?NNPI +?NNPS!rhVBG#~jNNK7A`?i+1 word unusualDT/$?NNPK7NNOnVBDK7?RBRB`"?JJRB`"RBˡEIN ףp= ?i+2 word toleranceIN+JJRGzNN+?RBRGz?i-1 tag+i word IN individualNNS+JJQ?NN/$i+2 word frameVBZ/$?VB/$JJS= ףp=?JJ rNNPDl?i word refugeesVBZA`"NNSA`"?i-1 tag+i word JJ prospectsNNS$C?NN$Ci-1 tag+i word NNS storageVBP"~NN"~?i-1 tag+i word '' notesVBZS?NNSSi+1 word warriorsNNDlJJ$C˿FWOn?i-2 word sequenceJJy&1?NNy&1i-1 word shirtsVBNS㥻?VBDS㥻i word unperformedVBNClJJCl?i word eavesdroppingVBGRQNNMb@NNP/$i-1 tag+i word TO overallVB~jtJJ~jt?i-1 tag+i word CC mountVBPn?VBPS㥛NNMbi+1 word underlyingNNV-VBV-?i+1 suffix schNNv?NNPvϿi+1 word survivedJJS9v?RBS9vi-1 tag+i word NNS aboundsVBZV-?NNV- i-1 word paleNNPS= ףp=?NNS;OnNNPJ +i+2 word bankersNNPSI +?WDT/$?IN/$NNPI +i-1 tag+i word NNS regardVBPm?RBmͿi-1 tag+i word VBP therebyVBP/$RB/$?JJZd;Oi-1 tag+i word JJ sweetJJʡE@NNʡEi-1 word edistoNNPm?NNPSm i-1 word fastRBˡEĿJJS㥛пIN$C?i-1 tag+i word CC sendVBDA`"VB\(\VBP$C?i-1 tag+i word IN squareJJm@NNmi+1 suffix omeJJB`"?VBD$C@RBRZd;?VBN|?5^ѿVBP%C?VB+?NNPSQRP9v?NNZd;OWDT/$VBZ @MD\(\?PDT"~jIN'1ZԿDTQ@NNS"~RB`"?JJRX9vVBGK7NNPGzǿCCQ@ i suffix iarVBS㥛ԿVBP rȿJJ+?NN333333i+1 word claimJJFx?VBNK7NNK7A?i-1 tag+i word TO disarmingVB&1VBG&1? i word bootVB\(\NN\(\?i+1 word tumblingNNn?JJni-2 word chipsDT1Zd?NNSX9vNN= ףp=?NNPʡE i+1 word 'llDTQ?INQi-1 tag+i word ( thatDTV-INV-?i-1 tag+i word JJR personallyNNS+RB+?i-2 word middlemanVBm?VBPJJ7A` i-1 word naVB㥛 ?RBRK7NNZd;O i-1 word setRBRV-?JJDlINZd;OVBZZd;RPCl@RBʡE?NN rhi-1 tag+i word NNS westJJS?5^I RBףp= ?NNoʡi-1 tag+i word JJ exhilaratingVBGSJJS?i+2 word joblessVBN"~?VBD"~i+2 word officersINbX9VBMbпVBP"~?JJ~jt?NNPbX9 i word either VB}?5^IRBjt@JJRq= ףRBRlVBP-VBZK7DTY#@VBG(\NNRQ CCGz@PRPffffffJJv/NNSMi-1 tag+i word IN commercialJJK7A`?NNV-NNP`"? i word shieldNNSx&1̿NNx&1?i+2 word commentsLSxVBNoʡ?NNPMbi-1 tag+i word NNPS olympicsNNPSA`"ӿNNPA`"? i suffix LDACCx&NNPx&?i+1 suffix siaNNPٿVBMbX9RBZd;NNK7?CD^I +JJx&1?INy&1i-1 tag+i word CD disbursedVBNQ?NNQӿi-1 tag+i word NN reachesVBZ-?NNS- i+1 word someVBP&1?WDT/$NNPNbX9RBQ?VBNV-JJR rhRPsh|??VBw/]@NNjtCCQ@JJHzGINffffff@DTMbVBZ\(\?VBGʡE@VBDZd;O?NNS#~j i word kidNNMb?JJMbi-1 tag+i word IN keyJJ/$ @NN/$ i-1 word pursuesVB/$JJ/$?i word hypocrisyNNSɿNN"~j?JJh|?5i+1 word awardedRBS?VBDSi tag+i-2 tag JJ NNS VBDS㥛@VBPK7A?IN/$?VBZ!rhNNS$CNNP+?VBMb?VBGx&JJ?NNCl VBN}?5^IWDTzG?RBCl?i word seniorityJJuVNNuV? i suffix oinVBZq= ףpNNPrh|ϿVB)\(@VBD-ӿVBP#~j?JJ(\IN9vi word counterpartsNNS|?5^?NN|?5^ i word robustNN'1ZVBNʡEJJRPnRB"~VBq= ףpJJ`"@i-2 word respondedVBGOnNNOn?i-2 word rebellionWDTtV?INtVֿi word speakingVBPVBG ףp= NNB`"@JJSNNPnʿi word mainframeCD1ZdJJRoʡVBPMbX9JJS㥛NNX9v@i-1 tag+i word DT troublingVBG!rh?JJ{Gz?NNl i word ellenVBN+߿NNP+?i-1 tag+i word DT mindlessJJ{Gz?RBMbNNJ +ٿi-2 word electronicVBNDlJJ^I +߿NNSh|?5?NNP;On?NNPSNNI +VBDDl?i+2 word starsNNPS9vNNP9v?i-2 word individualsJJR/$?NNv@VBGx&1?RBR/$JJT㥛 i word malteseJJp= ף?NNPp= ףi-1 suffix orkVBG +?NNSV-ڿWDTsh|??INףp= JJT㥛 ?RBRV-?VBNRB+@RPK7?MDPn?NN㥛 ?FWSVBP1Zd?DTy&1?VBZPnNNP!rh?VB-NNPS$CVBD~jtJJR|?5^i-2 word delightVBGQݿNNQ?i+1 word representativesNNPS-?RB/$JJ+ηIN/$?NNSd;ONNPʡE i word owedIN(\VBZGzNN;OnVBDK7ѿVBNfffff@JJrh| i+1 word foolVBPRQVBNGzNN?i+1 word idealsRB+NNP+?i+2 word blacksVBZK7VBQ?NNSK7?JJh|?5NNP9vi-1 tag+i word RB establishedVBNp= ף?JJp= ף i word dirtNNK7A?JJK7Ai-1 tag+i word , needMDMbVBPMb?i+2 word legislationNNHzG?VBD/$ۿVBN?JJ'1Z?VBZDlNNS;On¿VBG7A`i-1 word amendmentMDʡE?NN?VBN|?5^?RB1ZdVBD ףp= i-1 tag+i word NNS offeringVBGNN@ i-1 tag+i word NNP supercomputerNN/$?VBD/$ i word weightNNSx&NNPS?VB)\(?RB)\(NNrh|@JJSGzJJ/$i-1 tag+i word VBN offRBDl?RPq= ףp@JJʡENN$CINI +i-2 word bonanzaVBGZd;?NNZd; i-1 word sec VBPn?VBDˡEԿVBNS?VBPClJJ/$NN`"VBZS㥛?NNS~jtNNPi word newcomersVBZvNNSv?i-1 tag+i word -START- policeNNSQ?NNףp= RB%C̿NNPMbؿi+1 word configurationNNV-@JJX9vNNP\(\i+2 word disputeRBSNNm?VBNSJJS?NNSOnNNP㥛 NNPS-?i-2 word dunesVBG/$?NN/$ֿi-1 word allegationsVBNQVBPL7A`?WDTʡERBS?INnҿVBL7A`ؿVBDQ?i-1 tag+i word CD sovietJJQ?NNPQi+1 suffix lvaNNX9v?JJ-NNP~jtx?i-1 tag+i word VBG lessJJRrh|?RBRrh|i-1 suffix ergNNPClNNPSCl?NN rh?VBDʡEFWvi-1 tag+i word IN credibilityCC?5^I NN?5^I ?i-1 tag+i word IN naughtierJJRPn?RBPnпi+2 word bigotryNNM?JJMi-1 tag+i word VBZ offeringVBGv?JJV-NNA`"i-2 word doorsNN㥛 JJ㥛 ?i-1 tag+i word JJ restructuringVBGV-NN"~j@JJ(\i+1 word defensesJJSZd;JJZd;?i-1 tag+i word IN receivershipNN-?JJ-i+1 word befittingRBRl?NNGzJJREȿi word unlimitedVBNMbJJMb?i-1 tag+i word RB downrightVBN^I +RB^I +?i-2 word geneticallyNNK7A?JJK7A i+1 word manNNP}?5^IԿVBG|?5^?NN\(\?JJSQJJOn?INSDTv?NNS㥛 i+1 word weaponsVBGjt?JJMbNNS㥫NNPCl?i-1 suffix nthJJ`"?RPoʡRBRsh|??IN^I +?DT`"?NNPX9vֿRB!rh?NNK7VBDZd;O@VBN{GzVBZsh|?VBx&VBG+ۿVBPx&?WDTV- i-1 tag+i word DT confederationNN(\NNP(\?i+1 suffix hueDTQ?WDT+INZd;i word divisionNN%CNNP%C?i-1 tag+i word DT meltdownNNK7A?JJK7A i word lockVB|?5^?NNS㥛ԿVBN|?5^JJS㥛?i-1 word nasdaq\/nationalNNK7A`NNPK7A`?i-1 tag+i word -START- overseasJJQ?RBQi-2 word expensiveVBtV?NNm?VBD5^I JJR/$VBN333333?JJ9vڿVBZHzG?NNSi-1 tag+i word VBP madeVBN^I +NNP^I +?i-1 word indeedVBRQJJʡE?VBDK7AVBPRQ?RB9vDTA`"?i-1 suffix otaVBZ!rh?VB!rhNNCl?JJCli-1 tag+i word CC carryVB/$VBP/$? i word debtJJV-NNʡE?NNPi-1 tag+i word JJ lauderNNPSK7A`NNPK7A`?i-1 tag+i word RB classifiedJJ#~j?VBN#~ji+1 word immediateDTZd;?RBX9v?JJGzi+1 word manipulationNN'1Z?JJ'1Zi-1 tag+i word IN computerlandNNSMbJJffffffNNPZd;?i-2 word comprehensivenessVBDsh|?VBN~jt?JJEп i+2 word ofPOSMb?JJRGz?VBPZd;?VBZʡE?RBSK7ٿCD333333?''x&1̿WDTx&1 NNP'1Z?PDTv/EXSRPSPRPSNN{GzRB\(\CC\(\JJSZd;O?PRP$+?$}?5^IFW rhVBX9vVBGMbX@WPClJJl?VBDMb?NNSxRBRX9v?INv/?NNPS}?5^I?VBN rDTFx@ i word ownedVBZQVBPuVVBNCl?JJx&1VBDCl?i+2 word taiwanJJ-?RB-i-1 tag+i word VBZ toldVBNw/ĿNNMVBDQ?i-1 tag+i word NN overturesVBZK7NNSK7?i-1 tag+i word JJ feverRBʡENNʡE? i word vernonNNPd;O?INd;Oi+1 word maximaJJMbX9?NNMbX9ܿi-2 word memorandumNNؿNNP?i-2 word engageJJ/$NN/$?i-1 tag+i word , casinoNNMbX?VBDMbXi-1 tag+i word DT leasedVBNV-@JJV-i-1 tag+i word CC dataproductsNNPS{GzܿNNP{Gz?i-1 tag+i word VBP geigerVBN5^I NNP5^I ? i-1 word wideNNSV-NNV-?i+1 word engulfedNNV-?RBX9vJJZd;i-1 tag+i word -START- cargillNNbX9NNPbX9?i-1 tag+i word DT futuresNNPS-?NNSJJsh|?i-1 tag+i word -START- craneVBN!rhNNK7NNPsh|?? i+2 word oursVBZ(\NNS(\?i-1 tag+i word , roboticVBGףp= JJףp= ?i-1 tag+i word IN leominsterNNbX9NNPbX9?i-1 tag+i word , urgedJJV-VBD-?VBNK7A`i-1 tag+i word NNS affiliatesVBZ +NNS +?i-1 tag+i word JJ qualityJJX9v?NN~jthNNPSi-1 word publicizedVBZ333333NNS333333?i+2 word eliminatingVBD/$?VBN/$i-2 word attackJJ;OnINClVBZпDT?NNS`"NNQ?WDTV-i-1 tag+i word , ledVBN= ףp=?VBD= ףp=i-1 tag+i word JJS oneNNtVCDtV?i+2 word withdrawNNSʡE?JJʡEi+2 word neurologistVBZK?NNSKi-1 tag+i word VBD faithfulNNSQNNd;O?JJDli+2 word zavesRB5^I ?IN5^I i word fRBx&1NNB`"SYM~jt?LS(\?i word successorVBffffffNN'1Z@RBRvJJ+׿i-1 tag+i word RB dampVB(\?JJ(\i-1 tag+i word DT calledVBNy&1JJRQVBD&1?i word possiblyVB= ףp=RBX9v @NNClVBZOni-1 tag+i word NN toldVBD?5^I ?VBZ/$VBPd;Oi-2 word cambodianNNPS?INSi-1 tag+i word IN lachesVBZ%CNN%C?i-1 tag+i word VBP salomonNN'1Z@NNP'1Zi-1 tag+i word NN offeringVBGQVBNbX9NNx&?i-1 tag+i word NNP stodgyJJMbX?NNPMbXi+2 word thrustNNV-ڿRBV-?i+1 word doorsVBZMbX9?VBMbX9 i+1 suffix asJJRx&1PRP$~jtVBP r?VBZZd;?RBsh|?@NNS rh?NNPSMbX?WDTnJJ(\RBRK7FWSDTˡERPV-@POSV-?PDTSVBDCl?VBN;On@CCX9v@EXSINOnÿVBG rVBX9v?PRP/$?NNK7@CDSJJSQNNPxƿRBS/$?i-1 tag+i word IN stimulatingNN5^I ӿVBG/$JJzG@i-1 word soulfulNNSB`"?NNB`"i+1 word quietVBD"~?VBN"~ i+1 suffix heNNPS?JJS(\VBD rh?WDTx&1NNS/$?VBS?CCV-@RBR7A`?CDQEX\(\?JJFVBZ rh@DTPnNNPIN1Zd@UH;OnWP+?RBS㥛?MDm?JJRQVBN+VBP rhNNS@i-1 tag+i word JJS unrestJJSDlNNDl?i-1 word improveVBK7AVBGMb?RBMbNNp= ף?JJMbNNSMb? i+1 word geneNNSK7A`տVBGx&NN9vJJR?5^I VBN%C?VBP= ףp=JJ{Gz?i-1 tag+i word TO hearVB+?NNP+i-1 tag+i word DT trappistJJK7A@NNʡENNP-i word understand\/adoptVBMb?INMbi-1 word kentuckyNNE?NNPʡEݿFW㥛 i-1 tag+i word RBR graduallyRBS㥛?NNS㥛пi-2 word boroughNNPd;O?RBGzNNK7i-1 suffix nkaNNS?5^I NN?5^I ?i-1 tag+i word PRP disassembleVB+?RB+i+2 word behalfJJʡE@VBN"~?NN1ZdVBDQi-1 tag+i word NNS citedVBNQVBDQ?i+1 word saucesNNSKNNZd;O?JJSi+1 word receivedNNPS)\(?NNjtNNPS㥛ܿi word excessesVBZпNNSZd;?NNX9vi-1 tag+i word VBZ agreedVBN~jt?VBD~jti+1 suffix urfJJʡE?NNʡE i word seemsVBZoʡ@NNSʡEJJʡENN%C i word thrownJJK7NNˡERB333333VBNGz@i+1 word taxes RBRFxJJ@IN(\?VBG+NNPףp= NN?5^I ?RPV-RBDlJJRFx?NNS5^I VB333333?i+2 word implementVBGzοJJGz?i-2 word extremelyVBN-NN-?i-1 tag+i word POS usPRPCl?NNPCl i word surgesVBZ/$@NNS1ZdVBDZd;i-2 word knockedRP rh?RB rhi-1 tag+i word RB worriedNNClVBN{GzJJZd;?i+1 word joblessJJˡE?NNˡEi-2 word situationINx?VBZZd;ϿNNS= ףp=ڿVBn?NNK7AWDTxRB$C?i-2 word collaborateNNMbX9?JJMbX9i word marathonNNˡE?JJ5^I NNP{Gz?JJSL7A`ؿ i-2 word itelNNnڿRBS?JJ333333i-2 word gloomyNN$C?RB~jtJJOni-2 word maritalVBNS㥛?JJrh|VBDx&1ȿi-1 tag+i word PRP seeksVBNbX9VBZNbX9? i word flavorNNSSNNףp= ?JJ(\ i word dentsuNN-NNP-?i-1 tag+i word TO coughVB|?5^?NNS|?5^ɿi+2 word enough EXL7A`?VBZX9v?JJCl?VBDSVBNHzGRBRMb?VBGZd;O?RBL7A`JJRMbNNSX9vi-1 tag+i word VBD consideredVBNˡE?JJˡEi-2 word basemanNNPSClNNPCl?i+2 word directlyVBK7AVBGK7A?NN~jt?VBNClWDTX9v?INX9vNNPHzGi+1 word philippineJJA`"˿RBA`"?i-1 tag+i word RB priorVBN9vRB9v?i-1 tag+i word , distilledVBNZd;߿JJ@VBDx&1i-1 tag+i word -START- totoNNSQNNPQ?i-2 word traderWDT"~jJJ$CINGz?DTlNNSuV?NNPM?NNPSMNN(\ݿi-1 tag+i word : lyingVBy&1VBG?NN(\i-1 tag+i word POS frontJJffffff?NNffffffi+1 word exclusivityJJ(\?NN(\i-1 tag+i word DT magnificentJJsh|??NNsh|?i+1 word susceptibleVBP rhNN rh?i+2 word businessmenDTʡERBʡE@ i-1 tag+i word -START- professorNNKNNPK@i-2 word ceilingsVB^I +NNS^I +?i-1 tag+i word , pastJJrh|?INrh|i-2 word tongueVB9v?NNS rNN/$?i-2 word mindlessVBG`"JJ`"?i-1 tag+i word POS arrestJJS7A`NN7A`?i-1 tag+i word VBD followingVBG\(\?JJ\(\׿i-1 tag+i word NNS agedVBNDl@JJNbX9VBD9v i-1 tag+i word RB discriminationNN5^I ?VB5^I i word agrochemicalNNPn@JJPni-1 tag+i word DT videoNNQ?JJQi-1 tag+i word `` thusRBZd;?INZd;i-1 tag+i word `` thatWDT#~j?RB +?WP-DTˡE @NNP rhIN|?5^i-1 suffix unsRBh|?5?VBG-NNx&1?VBD$C?VBNFx?NNPn?PRP$?PRP̿RPm?RBRlJJRClINK7?CDnVBZףp= i-1 tag+i word DT signalJJd;OVBD"~j̿VBP"~j?NNd;O?i-1 tag+i word RB involvedVBDv?RBRzGVBNˡEJJm@i-1 tag+i word -START- exhibitNNv?NNPjtVBx&1i-1 tag+i word PRP$ convertibleJJ?5^I ?NN?5^I i word globalNNPnNNPsh|?JJCl@VBZd;O߿VBNRQؿi-1 tag+i word NNP whoWP/$?NNP/$i word oxidizerNN(\?JJˡEINPni-1 tag+i word RB metVBPX9vVBNZd;O@RBRQVBDi-1 suffix ken NN%C?JJsh|??DT%C?NNP?5^I ڿRPA`"@VBDClVBN!rhIN r VBZ~jtÿNNS1ZdRBA`"?i-2 word corporationsNN5^I VBDMbXVBNMbX?RBףp= ?INףp= NNS5^I ?i+2 word democraticVBGDl?NNp= ף?JJ^I +i+1 suffix mitNNPS?5^I JJ/$@NNKCC rh?RB rhNNSClNNPZd;?i-1 word patriarchalNNSMbX9NNMbX9?i tag+i-2 tag VBD PRP$NNP{Gz?RB{GzRBR/$NN/$?i+1 word thoughRBJ +?JJx&1INn?VBPV- i suffix 5.1JJx&1CDx&1?i-1 suffix talPOS9v?VBN)\(DTףp= NNSV-׿VBGSNNbX9?VBP/$RB9v?VBZvJJR^I +JJ|?5^?VBDMbX@NNPSn?RBR^I +?INS㥻NNPMbi+2 word strikingNNClDTCl?i-1 tag+i word CD verdictVBNʡENNGz?RBSi-1 tag+i word TO elationVBHzGNNHzG? i-1 word kiwiNNSGzNNGz? i word oneJJx&NNS+VB(\NNL7A`?CD|?52@VBP/$JJRZd;RBScNNPsh|? DTV-VBNFxPRPZd@IN5^I VBZ/$i-1 tag+i word DT wilyJJ(\?RBv/NNPCli-1 tag+i word NNPS artNNPv?NNPSv߿i+1 word aliskyPRP5^I NNP5^I ?i+2 word supportVBZK7ANNS?CCZd;O߿POSA`"VBN ףp= VBPzG?INS㥛?VBZd;?VBG/$?NNPSQ?VBD㥛 ?JJ rRBL7A`пDTT㥛 ؿNNSmNNP"~ji+1 word headquartersNNq= ףpNNPMbX?''ffffffJJOn?POSffffff?i-1 word publishDTʡE?NNS{GzJJL7A`?RBZd;OINʡEi+1 word globalNNZd;O?IN?5^I ?DT?5^I NNPy&1VBGQ?i-1 tag+i word DT propaneJJ}?5^INN}?5^I?i+1 suffix vocVBN%CJJQVBDE?i-1 suffix incVBK7ٿNNK7?i word perfectlyRB+?JJ+i-1 tag+i word VBP dueJJ ףp= ?RB ףp= i-1 tag+i word `` unsolvedJJ/$NNP/$? i word dunesNN/$ÿNNPOnVBZʡENNPSy&1?NNSn?i-1 word judgeNNPSQVBDoʡ?RBSGzVBN+JJKNNPffffff?i-2 word marketersRBSV-ǿJJSV-?JJMb?NNS{GzVBMbX?VBGZd;RBMbXNNy&1?i+1 word upstairsVBG= ףp=?NN= ףp=i+1 word magazinesJJV-?NN-NNP~jt i suffix J.VNNbX9NNPbX9?i-1 word relativeNNS~jtNN~jt?i-1 tag+i word DT arabJJ(\ @NNP(\ i-2 word declinesRBCl?JJJ +?NNJ +INCli-1 tag+i word NN widerJJRd;O?NNd;Oi+1 word bills NNmRBS?5^I JJS?5^I ?JJ"~?NNSv/?VB+VBN(\?VBPq= ףpDTv/NNP= ףp=ҿVBGףp= ۿi-1 tag+i word VB withdrawnVBN5^I ?JJ5^I i-1 tag+i word , gotVBPQJJ+VBD$C?i+2 word peacetimeVBNMb?JJ/$VBDw/Ŀi word broncosNNS1Zd@NNP1Zdi-1 tag+i word CD spokeNN|?5^VBD|?5^? i word offersNNPSI +JJRB|?5^INnVBZx@NNSZd;Oi-2 word dramaticVBP#~j@WDTZd;NNCl?JJClINB`"i-1 tag+i word NNP tenNNPS㥛CDS㥛@i-1 tag+i word , gainVBN!rhNN!rh?i-1 tag+i word CC fearVBPHzGNNHzG?i word downsideNN/$?JJ/$i word survivedVBDˡE?VBN?5^I ?VBPX9vJJX9vNNSx&1NNPDli-1 tag+i word : datedVBNZd;ONNRQпVBDB`"ٿJJv/?i+1 word sneakerJJrh|?NNrh|߿ i word lieJJuVNNPv/VBM?NN/$?VBD!rhJJRX9v޿VBP!rh?i-2 word shallNNPDlVB +NNʡE?i+2 word safetyVB{GzVBPrh|?RB"~i-1 tag+i word DT gaelicJJtV?NNPtVi-1 tag+i word NN thoroughbredVBN|?5^NN|?5^?i-1 tag+i word NNP readVBZ"~VBsh|?VBDS?i-1 word acceptPDTx&1?JJR?RBR̿DTx&1i+2 word gardinerNNSNNPS? i-1 tag+i word -START- companiesNNPS|?5^NNS)\(?NNPʡEi-1 tag+i word , issuersNNSV-?NNV-i-1 tag+i word DT testJJS7A`NNuV@JJS㥛i+2 word suppliesNNS5^I ?NN5^I i+1 word subrotoJJbX9NNPbX9?i word signalingVBGZd;O?NNZd;Oi-1 tag+i word CC cateringNN^I +VBG^I +?i-1 tag+i word IN sidewaysJJ/$?NN/$i+1 word knottyJJRL7A`?RBRL7A` i word referVB|?5^VBPV-?NN|?5^ٿi word teenageJJtV?NNtVi-1 suffix itaNNPSNN-?POSQ?VBZuV?NNS rNNPjti tag+i-2 tag VBN -START-VBPX9vJJq= ףp@NNSS㥛?NNPv/NNPSA`"?RBB`"NNˡEVBDףp= ?i+1 word hondaJJbX9ƿNNPbX9?i+2 word incriminatingVBZ/$NNSK7A?VBNrh|i-2 word common NNPSPnпVBGJJ9v @NNK׿INrh|?DT ףp= NNPMbX9?PRP$B`"?VBD1ZdVBNCl˿PRPB`"RBw/?VBZffffff޿i+1 word pointingRB+VBD+?i-1 tag+i word CC distributingNNK7?JJV-VBGw/i word mulroneyNNh|?5޿NNPh|?5?i word blueprintNNv?JJv i-2 word weakVBNV-INK?DTKVBDV-?JJSMbX?RBSMbXi word racehorseNNʡE?JJʡEi-1 suffix ercJJL7A`VBDL7A`?VBZV-?POSZd;ORBL7A`?i-1 suffix whoVBDS㥛 @VBP;On@VBNX9vPRPףp= ?JJR{GzCDT㥛 NNP"~NNClVBZT㥛 @DT-?JJHzGNNS333333RBQ?INp= ףRBRx&?POSVBp= ףпi-1 tag+i word : boeingVBG#~jNNP#~j?i+1 suffix pidRBR/$@JJR/$i-1 tag+i word VBP longerRB{Gz?RBRzG?NN%CԿJJR|?5^ i word heartsVBZGzNNPSx&?NNP9vi+1 word consistsNNA`"?JJT㥛 NNPQ?i tag+i-2 tag RB CCJJ= ףp=?PRP|?5^VB9v@UHzGڿVBGSVBZ +DTʡE?FW rh?NNS"~@CDSJJS/$VBD-F@VBN/$VBPI +WDTˡE?INx&?RP|?5^NNOn?RB/$PDTQRBRClNNPSl?JJRJ +?i word differentialNNA`"?JJA`"i-1 tag+i word -START- tassNNK7A`NNPK7A`?i+1 word movedVBP-?NNS-i-2 word koreaVBuVNN@JJS}?5^IVBNCl?JJV-i-1 tag+i word DT choicesNNSjt?NNjti-1 tag+i word IN everybodyNN~jt?JJ~jt i word copperNNSV-NNPjtVBI +NNx&@JJRX9vJJ|?5^INI +i+1 word consumer VBNx&1DTK7NN%CJJRq= ףp?VBP/$JJ-@INK7?NNPffffffVBV-?VBGZd;O?i-1 tag+i word `` disarrayVBDd;ONN"~?JJffffffi-1 tag+i word IN naturallyRBV-?NNPV-i-1 tag+i word CC separateJJFx?NNFxi-1 word participateINS?RBSi word midwesternNNP;OnNN= ףp=@JJ$Ci-2 word keepsJJDl?RP5^I ?NNDlRB5^I i-1 tag+i word NNP timesNNPSV-@NNS&1NNP)\(i-1 tag+i word NN trendsVBZV-߿NNSV-?i-1 tag+i word PRP$ republicanJJK7A?NNPK7Ai-1 tag+i word JJ eggsNNPS +NNh|?5NNPI +?i word contractualNNy&1JJy&1?i-1 word feverVBNtV?VBDtVοi tag+i-2 tag IN NNPSJJ?INMbNNSbX9ȶNNP%CNNPS~jt@RBMb?NN i suffix humNNl?RBRK7RBMbXѿ i+1 word warsVBrh|NNv/?JJzG i+1 word jetsNNnJJn? i+2 word firm PDT}?5^IVBNRQ?VBPOnӿINw/?VBZK7DT~jt@NNPX9v׿NN~jt?VBGZd;߿JJ!rhVBDOn?RBw/NNPSL7A`i word astonishingVBG1ZdJJ1Zd@i-2 word shieldVBZS@VBPM¿NNS rhUH"~NNM?i+2 word dizzyingWDTQEXKNNh|?5?i+1 word detainedNNS)\(?NNP)\(i-1 word suppressorNNS#~j?VBZ#~ji word currentlyRBZd;׿NNPZd;?i-1 tag+i word JJ joblessJJM?NNMi-1 tag+i word VBP boughtVBNRQVBDRQ?i-1 tag+i word FW 'sVBZʡEӿPOSʡE?i-1 tag+i word TO publishVB{Gz?JJ{Gzi word mechanizedJJn@NNP!rhܿVBNsh|?RB/$VBDw/Կi-1 word outliningVBZQNNSQ? i word below RBuV@IN/$*@VBZ~jtNNK7JJSClVBPq= ףp EXxƿVBQRP?5^I JJK7i-1 tag+i word NN abolishedVBN;OnVBD;On?i-1 tag+i word DT federationNNw/JJbX9NNPm?i-1 tag+i word NN justifyingVBG+?NN+i+2 word brokersJJ;On?NN%CVBDQ˿VBNGzRBCl?IN?NNSQ?NNP`" i suffix PCVB9vNNPZd;NNsh|?@JJ;OnVBD;On i word erodeVBZʡEVB= ףp=?VBPV-?NN+VBD!rhԿi-1 tag+i word CC presentersVBZ+NNS+?i-1 tag+i word VBZ featuredVBNx&1JJx&1?i-1 tag+i word VB gotVB~jtVBN~jt?VBD9vi-1 tag+i word NN acquiescedJJw/VBDw/?i+2 word freshRPh|?5RBh|?5?NNʡEVBD1ZdVBN1Zd?JJʡE?i word quotationVBPQNN#~j?JJMbPNNPQi+2 word expectsWDTSINS?i+2 word tasselsRPV-?RBV-i-1 tag+i word DT pressureNNB`"?JJ|?5^FWMbXi+1 word arguedNNPSK7NNSQNNPMbX@ i suffix umbNNSZd;NN~jtRBˡEJJQ@i word cleaningVBGx&NNx&@i word shiftedVBNףp= JJ5^I ˿VBDK?i+1 word overzealousRBjt?JJjti-1 tag+i word IN midnightNN"~j@RBJ +JJnJJRbX9i-1 tag+i word JJ turnVBPl?NNli+1 word magazineNNPST㥛 NN~jtVBPA`"?JJ/$VBZ\(\ϿNNSbX9?NNPjt@i-2 word chojnowskiVBGuV?NNuVi-1 tag+i word NN aidsRBSNNSS?i-2 word athletesRB|?5^IN|?5^? i word pulseVBKNNSS㥛NNMbX@JJ-i-2 word bicycleVBw/?JJS㥛NN~jtؿi-1 tag+i word CD filedVBNK7A?VBDK7Ai word abductedNNRQ@RBCl׿JJ= ףp=VBN~jt i word hangNNPS rhNNP rh?i+1 suffix toePRP$9v?PRP9vi-1 tag+i word VBD hamstrungVBNJJ@i-1 tag+i word , maximizingVBGoʡ?JJoʡտi word referencesVBZT㥛 NNST㥛 ?i+2 word chief IN+?NNS$CNNPSA`"CC rRBS?JJSJJ-NNPʡE@VBh|?5RBffffffƿNN{Gz?VBD-?VBN{Gzi-1 tag+i word DT offbeatJJtV?NNtVi tag+i-2 tag VBZ `` NNQ?PDTp= ףVBN(\VBPGz?WP rh?VBZh|?5DTsh|??JJx&1?VBG&1?WDT rhRBrh|NNPv/VBni-1 tag+i word JJS talentNNK?JJKi+1 suffix aptJJRA`"˿NNPA`"NNPSMbX9?NNSZd;ORBRA`"?i-1 suffix uit VBP(\?NNSGzNNPRQVB(\VBDMbVBN ףp= ߿VBZMbX9@VBGS㥛NN;On?JJRQ?i-1 word percentNN㥛 ?VBP㥛 ҿi-1 tag+i word CC southJJS㥛?NNPS㥛ؿi-1 tag+i word JJ cowsVBZˡENNSˡE? i+1 word hNN/$?NNP/$i-1 tag+i word NN progressesVBZ/$?NNS/$i-1 word marieNNPffffff?INffffffi+2 word tracksNNFx?JJvVBDףp= i-1 tag+i word DT desiredJJx&1VBNx&1?i-1 tag+i word NN headVBPq= ףp?NN&1ڿVBDni+2 word speed WDTPn?INPnNNʡE?VBDX9vֿVBNV-JJ1Zd˿VBZMb?NNSClNNP;On?VBn?NNPSZd;Oi+1 suffix ldpWDTʡE?WPʡEi+2 word filingJJClNNSM?NNP/$?NNS㥛?VBD(\?VBNoʡi word recreationJJSNNP/$NN~jt@i-1 tag+i word NN flownVBNZd;O?NNZd;Oi+1 word candorJJRHzG?RBRHzGi-2 word buyerJJ\(\?NN\(\i-1 tag+i word NNP radioFWMڿNNPv/?VBP +ֿNNCl?i-1 tag+i word `` homeVB1ZdNNX9vNNPx?i+2 word effectiveVBNZd;?VBPGz׿RBZd;OINJJlNNMbX9JJST㥛 RBSMb? i-2 word wetJJPnNNPPn?i-1 word publishedJJRQ?JJSK?VBNRQNNKi-1 tag+i word JJ burnsNNSPn?NNPni-1 tag+i word -START- bargainJJX9vNNX9v?i-1 tag+i word IN modernistJJ$C?NN$Ci-1 tag+i word VBZ compromisesJJ$CVBZ5^I NNSA`"?i+1 suffix hk$VBG~jt?NN~jti+2 word forcesJJ9vҿNNjt @VBD+CC;On?RB;OnIN?5^I ?DT?5^I NNPFxi-1 tag+i word CD principalJJw/VBNbX9NNm?i-1 tag+i word WDT convinceVBP5^I ?NN5^I i-1 word candlestickNNPSDlNNPDl?i-1 word national MDn@NNPS~jt@VBGA`"JJ/$NN"~VBN+׿RBxVBZV-VBDCl?INʡENNSS㥛NNPm@i+2 word computerJJSnNNSQ?NNPS r?NNx&?RBSn?RBRK7AؿNNPʡEVBZd;RPʡE?JJRK7A?RB)\(@INFxVBGK7AJJHzGi-1 tag+i word DT smilingVBG r?NN ri-1 tag+i word JJ counterpartsNNS|?5^?NN|?5^ i suffix els NNPSq= ףp @RBMbXVBDq= ףpVBPV-JJ"~VBZ$C@NNS ףp=(@NNv"JJRClINMbNNPni+1 word sterilesJJK7ANNK7A?i+1 word childhoodJJ#~jVBD#~j?i-1 tag+i word IN zlotysNNS&1?UH;OnNN+i-2 word studiosVBGX9v?NNX9vi-1 tag+i word JJ testNNS+NN+?i-1 suffix ids VBGX9v?RBRX9vVBNK7NNSjt?NNPvVBZSNNʡE@FWq= ףpVBDd;O@VBPX9vϿJJV-i-2 word producedJJRJJMb?NNPK7A`?NN;On?i-1 tag+i word NNP circularsVBZ9vNNS9v?i-1 tag+i word TO tradingVBGNN?i-1 tag+i word VBN standardJJrh|?RBrh|i-1 suffix kzoVBZHzG?NNSHzGi-2 word doctrineVBQVBPQ? i-1 word roseRBRʡEƿRBHzG?INnNNP㥛 ?NNPS㥛 VBG\(\?JJ\(\׿JJRx?i+1 word strategiesVBG|?5^NN^I +?JJ(\VBNJ + i word colaNNzG?JJzGi-1 suffix nikVBZ/$?NNSMbXPOSʡE?NN"~ڿi-2 word clockRP?RB i suffix obeNNSDlNNX9v @JJ(\ NNPp= ף? i word racismNNCl?JJCl i word tubeNN㥛 ?JJ㥛 i-2 word experimentallyRPv/RBHzG@INjti+1 suffix ufoJJ(\?RB/$INI +?i+1 word lillyDTNbX9VBPZd;NNPʡE?i-1 tag+i word WDT dominatedJJzGVBDzG?i+1 word insurersWDT(\JJjt?NNjtIN(\?i word creatorNNP rh?NN rhѿi+1 suffix azzJJ"~j?NNZd;OVBsh|?ſRP+i+1 word growerJJsh|??CDsh|?i-1 tag+i word JJ publishingVBGX9vNNX9v?i-1 tag+i word VBZ funNNʡE?JJʡEVBNx&1i-1 tag+i word NNP projectsNNPSK7@NNPK7i-2 word retiringRBbX9ƿINbX9?i+1 word dollsNN9v?VBNnJJV-Ϳi-1 tag+i word RBS 'sPOS/$?JJ/$i-1 tag+i word , americanJJ + NNP + @ i word centreNNPS7A`NNP7A`?i-1 tag+i word JJ adverseJJ ףp= ?NN ףp= i-1 word apparentNNS-NN-?i-1 suffix ateJJ/$?FWl?RBSINX9v?VBGFx VBPoʡNNuV?POSʡENNS+N@VBoʡJJRV-WDT`"?VBZuV?DT +?NNP1ZdCCˡERBRB`"?CDMbX9NNPS/$?VBDJ +?VBNq= ףp?RP-? i word rev.NN-JJ|?5^NNPh|?5?i-1 tag+i word POS conciliatoryJJ(\?NN(\i+1 word maturesWDT rh?IN)\(DT`"i word nothingNNPvVBGS㥛NNGz@i-2 word marketsRBR-ӿVBPjt?JJQ?INK7A?VBZ= ףp=@DT;OnVBjtVBG^I +?NNS~jtNNPzGVBDv@JJS+VBNq= ףpտRB= ףp=NNCli-2 word constitutionVBZV-?NNSV-i-1 tag+i word IN targetNN$C?JJ$Ci-1 tag+i word -START- capitalNN~jt@JJV-NNPSi+1 word tabooJJ^I +?NN^I +i-1 tag+i word ) determinedVBNZd;?JJZd;i-1 tag+i word JJ brazilJJR-NNP-?i+2 word partiesRPʡERBʡENNlPDT&1JJl?INʡE?DTx?i-1 tag+i word NN singerNN+?VBD+i+1 word drinkingJJRZd;OJJZd;O?i-1 tag+i word NNS susceptibleVBPʡE޿JJw/?VBDd;Oi+1 word receivablesJJxNNPK?NNI +?i word pollinatedVBN?JJ i-1 word martVBZ^I +?VB-ƿNN-?VBD^I +i+2 word rodentsVBG#~jNN#~j?i-1 word fridayVBN9v@RBRMbXVBPJ +JJRMbX?VBZJ +?VBD9vi-1 word carefullyVBNHzG?JJB`"VB@VBPK7Ai tag+i-2 tag RB :VBNFxRB ףp= VB(\EXQ?VBZOn?JJR|?5^NNPT㥛 ?VBDK7?VBPuV?DTL7A`JJRBR|?5^?IN/$@NN+@ i suffix uit VBPK7A`?JJ= ףp= NNPzG?NNPSv/RB(\NNp= ף@VBZʡENNSV- VBuV?VBD +?VBNK7Ai-2 word graspJJ㥛 ڿRB㥛 ?i word haulingVBGJ +?NNJ +i-1 word strong VBGMbXFWsh|?CD+η?JJMbX9NNSn?DT}?5^I?RBS㥛?NN"~j?CCJ +ٿWDT rhIN5^I i+2 word itself NNSʡEVB)\(?RBtV?JJRoʡݿVBNDlDT9vVBZx&1?NNm @VBDL7A`?VBPQֿJJL7A`INDl i+1 word jr.NNP rh?JJ rhi-1 tag+i word NN workdayNN +?VBD +i-1 tag+i word CC upJJnINNNS-VBnRPSRBOn@i+1 word reductionJJ|?5^NNtVֿNNPGz?NNS+?i+2 word agency DTw/@NNPMbX?VB +VBG?5^I ?PDTMbXVBPˡEԿINK7ѿRP|?5^ٿNNPSffffffJJ7A`NNI +?RBx?NNS~jt? i-1 word less EXQINZd;O?VBX9vRBPn?NNCl VBNQ?VBPGzVBGT㥛 ?VBD333333JJRQJJCl@NNSMbX9i-2 word ribbonsRPrh|?NNS333333?RBrh|JJ333333i+2 word peopleEXS?DTJ + VBZ`"?RBFxɿVBPV-RP ףp= ߿CDS㥛?VBA`"@INbX9ֿVBDsh|??PDT/$?VBN rh?VBG5^I NNʡEJJ +@JJR ףp= NNPA`"NNSMbX9RBR333333?i-1 tag+i word ) busVBPB`"NNB`"?i word respondedNNSClVBN ףp= NN9vVBDtV@i-1 tag+i word DT ensuingVBG)\(?NN1ZdJJB`"ѿ i+2 word prosRBh|?5@JJh|?5 i suffix aks VBDDl VBPx&1NNPMbXJJV-VBZʡE @NNSE@VB~jtNNPSMbX@NN\(i-1 tag+i word NNP a.NN`"y@NNPnNNPS|?5^ i word gatosNNPSx&1NNPx&1?i word defyingVBGDl?JJDli word spawnedVBNEؿVBDE?i+2 word playerNNP|?5^ڿVB(\пNNE@RBSnJJSoʡWDTClJJV-IN"~j?i-1 tag+i word , coupleNNS㥛 NNS?JJJ +i-1 tag+i word DT microbiologyNN'1ZĿNNP'1Z?i-2 word engineVBP"~j?VBNK7A`NN"~jVBDK7A`?i-1 word profitableRBx&1?JJx&1ܿi+2 word soviets VBNNbX9VBZ5^I ?NNS"~VBx޿NNx?VBD!rh̿PDTV-RBףp= ?DTV-?i-2 word tearingVB/$NNn?JJGzi-1 word beggingNNSQRBS㥛?JJ(\VBNZd;Oi-1 word impactDT(\?WDTT㥛 пINI + i word cuomoNNnNNPn? i+1 word khanNNPS"~jNN-NNPGz?i-1 tag+i word VBG reboundedVBDX9v?VBNX9vi-1 tag+i word PRP$ skisNNS%C?NN5^I JJOni+1 word unlistedRBvVBDv?i-1 tag+i word RB forcedVBN333333?JJlVBDEؿi+2 word losesJJNbX9?NNNbX9 i word potatoJJRQFW!rhNNSʡENN(\? i word sidleyNNL7A`堿NNPL7A`?i-1 tag+i word JJR thoughtfulJJ?NNi-1 tag+i word CD oaklandNNPV-?RBV-i-1 tag+i word IN openingVBGq= ףpNNq= ףp?i-2 word investRBSNNSZd;O?JJˡE?NNPnؿCDHzGi word distractingJJCl?VBG`"?NN+i+1 suffix awaNNA`"NNPA`"? i word uawNNP333333?NN333333i+2 word revisionVBZ9vJJjtNN333333RBR"~jVBP333333?RB$C@i-1 word scrappingNNjtCDjt?i-1 word downrightJJQ?RB~jtNNZd;Oi word clarinetistNNS+NNCl?JJ+i-1 word quotedVBD\(\?RBjt?JJlIN ףp= i-1 tag+i word JJ shineNNNbX9?CDNbX9пi+2 word kentuckyNNPS;OnNN9v?VBD㥛 VBZ㥛 ?NNSףp= ?NNP-i-1 word tremendouslyNNJJ?i-1 tag+i word VBP thinnedVBN+?VBD+i-1 suffix holNNK?RBKi-1 tag+i word JJ challengeVBN +NN +? i word sushiNNʡE?NNSd;OVBNʡEi-1 tag+i word CC trackVBDl?JJDlѿ i-1 word btNNPSxNNPx?i-1 tag+i word DT parallelJJ= ףp=?NN= ףp=i tag+i-2 tag EX CCVBZ|?5^?VBX9v?JJ1ZdۿNNV-POS㥛 VBPQ?RB1Zd?i-1 tag+i word , necessitatedVBN(\VBD(\?i-1 tag+i word JJ takingVBGK?JJKi+1 word accusationsVBNn?JJZd;OVBD㥛 ? i suffix chyNNw/?NNSB`"JJK7?RB5^I i-1 tag+i word CC backsVBZd;OǿNNSV-VBZx&1? i+1 word heatVBZV-?NNSMbX9NN/$@JJ/$POSʡE?i-1 suffix nanNNPS(\NNP(\?i-1 tag+i word NNP failNNbX9VBoʡտVBP?i+2 word youthVBZX9vNNCl?RB%CIN r?i-1 tag+i word DT monstrousJJ +?NN +i-2 word themselves RBffffff?RBRQ?JJRQJJ?VBMbVBG ףp= NNI +VBZQſNNSsh|??i-1 tag+i word NNP restaurantsVBZv/NNPSv?NNSv/?NNPv i+1 suffix agNNPB`"?VBGGzJJoʡi-1 word weighsJJRˡE?RBRˡEi-1 tag+i word VB furnitureNNx&1?RBx&1i-1 suffix addNNK7A`JJd;O?RB+?CDFx?i word negotiatorVBZ ףp= NNCl?RB-i+1 word votedNNPSMb?NNS +NNV-NNPCl? i+1 word badNNP5^I RB ףp= @VBNx&1VBPzGUH-JJ9vINOn?i-1 tag+i word IN packagesVBZS?NNSZd;O׿VBN i suffix sayVBDSVBZQJJ^I +NNPnCCVBPMb@UHQ@INSNNS?5^I VB/$@RBh|?5NNPS +NNP#~j?VBN)\( i suffix 232CDS㥛?NNPS㥛i-1 suffix osyNNOnNNSOn?i-1 tag+i word RB purchasedVBNS?JJSi-1 word chivasNN'1ZNNP'1Z?i-1 tag+i word POS agingVBGv/?NNv/i-1 tag+i word VBG timeNN7A`?NNP7A`i-1 tag+i word , dependingVBGm?NNm i word arabiaNNPS'1ZNNP'1Z?i+1 suffix hevCC5^I ?PRP$SNNPI +?VBNd;OVBDd;O? i word .270CDRQ?NNRQ i-2 word peckNNSn?NNnʿi-1 tag+i word IN weakerJJRffffff?NNffffff i word bogVBCl?VBDCl߿ i-1 suffix 'mJJZd;@NNP/$VBG`"?RBQNN(\ҿVBDVBNnʿVBP^I + i word myriadVBT㥛 пJJL7A`?NN(\ i suffix ltzNNPx?NNPSxi-1 suffix 'veVBDVBNK7 @RB7A`NNSd;OJJnNNV- i+1 word nowVBNZd;?VBGRP333333FWrh|NN&1?IN㥛 NNPSʡE?RBy&1,@JJJ +DT?5^I ¿VBZʡENNP~jtVB/$ſWDTw/@VBP/$?NNSy&1?VBDw/i-2 word italianJJ?5^I ?NNP?5^I i-2 word twoVBDE@PRP㥛 VB"~jNNSoʡ@PRP$㥛 ?NNPS̿RP5^I VBGGzVBZQۿJJR1Zd?RBB`"ɿVBNV-INCl @JJw/NNPI +NNsh|?RBRS㥛?VBPQ@i-1 tag+i word DT thermoJJ)\(NNP)\(?i+1 word druryNNPHzG?FWHzGi-1 tag+i word NNS taughtJJK7VBDK7? i word stodgyJJRI +JJS㥛 @NNPMbXVBmi-1 tag+i word NN westwardRBQ?NNQi-2 word lesserNNbX9?UHZd;OJJˡEi+1 word motionsNNMbJJMb?i-1 tag+i word TO unescoVB7A`NNP7A`?i+2 word studyingRBv/?JJv/i-1 tag+i word VBN doVBzG?VBPzGҿi+1 word networksJJq= ףp?NNSNN= ףp="i-1 tag+i word IN intercontinentalJJDlNNPDl? i word modernJJn@NN%C NNP5^I ?i word judgmentalVB!rhJJ!rh?i word erithmaticJJX9vοNNPbX9NNK@ i-2 word evenNNPS&1?VBNEJJRˡE?INɿDTX9v?VBZV-?NNSL7A`?VBG9vJJJ +NNbX9RBq= ףpVBX9vRBS?NNPHzGVBDzG?JJSVBP&1?RPM?i+1 word regulatoryVBnVBP-޿JJRS?JJK7i+1 word bolderRB7A`?JJ7A`i word standardsNNPSjt@NN|?5^NNP/$i-1 tag+i word DT shelvedJJA`"?VBNA`"i+1 word weeklyJJ(\@NN(\ i word dustyJJˡE?NNˡE i word deiFW|?5^?JJV-VBD;OnVBZK7 i word columnVBZtVVBPv׿NNStVNNuV@i-1 tag+i word NNS regroupVBS㥛VBPS㥛?i word imposingVBGq= ףp?JJq= ףpi-1 tag+i word PRP$ bikiniNNOn?JJOnӿi-1 tag+i word DT cellNN= ףp=?JJ= ףp=i-1 tag+i word RB damageNNuVVBuV?i-1 word stylingRP~jtJJjt?RBZd;Oi+1 suffix fulVB;OnRB333333 @CDV-JJ~jtIN;OnNNPNN~jtRBRV- @JJRVBNS?VBDSJJSRBS @DT rh?PRP$S㥛?i-2 word felonsVBNtV?JJtV i+1 word saidVBPDlINQJJRQJJw/]VBDsh|?ſNN rh@WDT{Gz?VBZK7VBV-VBG;OnVBNCl@RB-?CDZd;O?NNS5^I @NNP#~j @POS7A`¿RBRGzDT}?5^I?NNPS$C @PRPZd;i-2 word founderNNPSMbXJJ"~NNPCl?i-1 word merrillNNPʡE?VBDʡEi-1 tag+i word NNS inherentVBPuVJJuV?i-1 tag+i word DT redistrictingVBGZd;ONN|?5^?JJ&1i+1 word weyerhaeuserVBPX9v޿RB^I +IN333333?i-1 tag+i word VBN fastRB +?JJ + i word dawnNNffffff@NNSX9vRB+JJ?5^I i-2 word stoppedNNGzJJI +?NNPK7A?VBG9v?i-1 tag+i word -START- a$$V-?RBZd;ONNP&1i-1 word convincedDTS㥛RBZd;߿INx&1?i+1 word speculatorsVBZA`"?JJA`"i word acquiescedJJw/VBDw/?i-1 tag+i word VB monitorVBCl?NNCli-1 tag+i word , swingNNw/VBPV-@VBGV- i+1 word ifVBG;OnPDT~jtJJ/$DTrh|NNPClWP-?JJR9v?NN5^I ?VBDFxVBN&1?VBPS㥛?WDTZd;RBˡE?RBRX9vINsh|??NNSx&1?VB/$@NNPSMbX9?RP-޿i-1 word promptlyVBZ~jt?VB ףp= VBDA`"?DTy&1VBN}?5^I? i word tollNNS"~jNN"~j?i-1 tag+i word -START- mideastNNP/$ѿJJSHzGNNoʡ?IN ףp= i suffix cedNNHzG%FWClVBPQINq= ףpNNPSMbVBG5^I ۿVBNB`".@PRPʡENNPx&1?NNS%C VBʡERBGz.VBD(\50@WDT+VBZ\(\JJ;On@i+1 word packagesNNA`"?CCX9vVBP)\(WDT\(\?JJMIN\(\NNSZd;?VB~jt?i-1 tag+i word CC actedVBNI +VBDI +?i tag+i-2 tag NNS ,WDT~jtVBN$CINv/?WP/$VBPlq@DT&1VBDoʡ@RBRbX9VBG%CRP?RBʡENNQ?NNSGz@JJR|?5^ҿJJ^I +VBZףp= VBK7Ai tag+i-2 tag WP FWRBRGzRBGz?i-1 tag+i word NNP viewsVBD(\NNSX9v?NNPX9v׿VBZ(\?i+2 word cooperativesi-1 word gatheredNNK7?RBK7i-1 tag+i word DT enthusiasticJJQ?NNQ i+1 word rateRB'1ZVBZT㥛 ?MDsh|?VBD +WDTCl?NNSh|?5NN?5^I ?CDZd;?JJjt?INKVBNOn?VBP1ZdӿNNPh|?5VBGGz?i+1 word agreedNN ףp= VBPʡE?JJlVBZB`"ɿNNSFx@NNPA`"?NNPSV-ݿVBG rhi-1 word westernVBNK7ѿJJMbVBZSNNSn@NNP= ףp=?VB+NNPSNbX9пNNOni word ashamedRBQJJQ?i-1 tag+i word PRP buyVB/$VBP/$?i-1 tag+i word DT injunctionVBPSNNS?i-1 tag+i word NN drivesNNS&1?NNzGVBZK7A`i-1 tag+i word NN slidVBZZd;JJRQNNZd;߿VBDʡE@ i word jeansNNSNNPSʡENNSn@i+1 word coatingNNh|?5?JJh|?5i+2 word tokyuCCx&@VBD7A`?VBN7A`NNffffffWPףp= i-1 word apparentlyVBPzGJJ(\@VBZ= ףp=?NNS= ףp=ڿVBSNNV-VBD|?5^?VBNS?i+2 word palaceJJjt?NNjti-1 tag+i word VBP overRP|?5^?RBMbINw/i+2 word unsuccessfulVBZ +?JJffffff?POS +NNSVBNzGڿ i word leaveVBCl?NNV-CCnVBPh|?5@RB-NNS333333i-1 tag+i word CC tartanNN㥛 ?JJ㥛 i+1 word shoesJJDlVBS㥛VBGh|?5οVBNʡE?NN}?5^I? i word lyricsNNS"~?RBy&1ܿNNP-i-1 suffix awkVBV-ݿNNV-?i-1 tag+i word CC mailJJrh|NNrh|?i word waywardJJV-?NNV-i-1 tag+i word VBZ murkyVBNB`"JJ`"?CDV-ҿi word christmasNNPS?5^I JJNNPq= ףp? i-2 word wasPRP$?VBNRQ?VBPFxVB`" RBRʡEIN/$?VBG;OnVBD +?DTQ?RPMb?NNSMbPDTQ?JJSMbX9?JJR+@NNzGRBSX9vWDTS㥛JJ= ףp=@WPS㥛?FWGzPRP|?5^?RBMbX9?NNP!rhCD}?5^IUHGz?i+1 word tiresVB|?5^?NNp= ףJJi tag+i-2 tag , JJR JJRh|?5?PRPCl?IN$C?VBGoʡCDClNNSʡE?WRB$CVBDA`"NN~jt?RBR|?5^?JJ+@VBvRBK7 i-1 tag+i word IN breakVB&1?PDT rhJJ-i-1 tag+i word POS goodNNSCl˿NN rh?JJy&1i-1 tag+i word DT awesomeJJGz?NNGzi-1 tag+i word JJ runnerNNrh|NNPrh|?i-1 tag+i word RB disastrousVBN!rhܿJJ!rh?i-1 tag+i word DT nonvirulentJJ rh?NN rhi-1 word grantingNN+?JJ)\(VBD?5^I i word crunchierJJR;On?NN\(\RBRSſi-1 word actingJJK7NNjt?RBRʡE?JJRʡEտRBsh|??INV-?NNS i word shoddyNNMJJM? i-2 word a&eVBNp= ף?VBDp= ףп i suffix enzNNP(\@NNKVBD`"CDv/JJzGNNS?5^I i-1 tag+i word DT hellVBPʡEۿNNn@RB(\PRP\(\i word grosslyRBQ?JJQi-2 word burdenVBG/$?NNSjt?NNi+1 word carterRB/$ٿNNP/$?i-1 tag+i word JJ creaturesVBZ(\NNS(\?i-1 tag+i word JJ wrondgoingVBGw/ܿNNw/?i-1 word vehementlyVBZGz?NNSGzNNVBD?i+1 word couchVBZQ?NNSQi-1 tag+i word RB consideredVBNʡE?VBDʡE i-1 suffix byVBN(\RPEJJK7A?PDTʡERBSMbX9JJR(\?NNI +?RBd;OCD/$NNSZd;O?FWK7RBR&1NNP$C?DT +?NNPSB`"?VBG}?5^I@JJS&1INV-?i+1 word oughtNN5^I ?JJ5^I i-2 word tibetVBV-VBPV-?i-1 tag+i word VBG investingVBGd;O?NNd;Oi word roustaboutsNNPSˡE?NNPˡE i suffix tcyNNPSrh|NNSS㥛NNDl?NNPFx?i-1 tag+i word VBZ underfundedVBN+?JJ+i-1 tag+i word VBN acrossRPJ +?INK?DTףp= i+2 word morganVBNZd;?VBPx&1JJZd;INV-?VBZrh|RPV-VBDX9v?i+1 word icebergNNPSB`"JJ#~j?NNX9vο i-1 word landNNSOn?VBNˡE?NNOnVBDˡE i word toreVBPq= ףpIN?5^I VBDX9v?i-1 tag+i word NNS tendNNX9vVBA`"?VBP"~?i-1 tag+i word DT ariaNN\(\?JJ\(\߿ i suffix nn.NN~jtNNP~jt?i-1 tag+i word , travelVBP^I +@JJlNNw/i+1 suffix irm VBGENNQ?VBN~jt?RBjt?VBCDGzVBZrh|ϿNNS1Zd?NNPMbؿJJ"~j?i-1 tag+i word NNP againVBPoʡNNx&1̿NNPp= ף?i-1 tag+i word JJ tiesNNSV-?NNV- i suffix gesVBQ VBNVBZ$%@NNPSM@VBDClVBPPRPtVRB-NNPQNNfffff#FWoʡINA`"NNSjt*@JJI +i-1 tag+i word DT heftierJJRjt?NN;On¿RBRCli-1 tag+i word POS readinessNN"~?JJ"~i-1 tag+i word NNS aptVBPZd;OJJZd;O?i+1 word serveRBK?VBKi-2 word trackingJJp= ף?NNZd;NNPCl?NNPSSVBGS?i-1 tag+i word -START- denizensNNSˡE?NNPˡEi+1 word obviousRBRI +?JJRI +i word attitudesVBNB`"RB~jtINB`"VBZNNS1Zd @NNPq= ףpi-1 tag+i word RBR informedJJd;O@VBNd;Oi-1 word covetousNNS+?NN+i+2 word tashiNN+?JJ+i word attributeVBD|?5^VBP|?5^?NNZd;O?RBZd;O߿i-1 tag+i word IN pianoNN^I +?NNS^I +׿i-1 tag+i word VB shostakovichJJ+NNP+?i+2 word macaroniJJ+NNP+? i suffix TEDRB|?5^ʿCDMb`NNPB`"NN(\VBNE@i-1 tag+i word NNP investmentsVBZ|?5^NNPS%C?NNP|?5^?i-1 tag+i word JJ lumberVBPʡE?NNʡEi-1 tag+i word VB undercutVBNuVݿJJuV?i-1 tag+i word JJ parkerNNS+NNP+?i-2 word outlawedJJq= ףpNNPq= ףp?i-1 suffix nyeNNPx?NNPSxi-1 tag+i word CC atticsNNSQ?NNQi word esselteRB}?5^INNP}?5^I?i-1 suffix uptNNX9v?PDTʡEJJX9vDTʡE?NNS`"?NNPzGVB`"NNPSzG?i-1 tag+i word IN otherwiseVB/$޿RBMbX?NNClJJR$Cۿi+2 word prolongedVBNI +?VBDI +i word invitedVBN rh?JJ rhi tag+i-2 tag NN NNPRP9v$ףp= POS|?5^?NNP'1Z?JJS(\VBG@VBD;OnVBN1ZdNNS!rh?VB/$WDTI +?DT%CNNK?RBS(\?RBRK7AؿIN"~jNNPSK?JJR/$?VBPSJJtVPRPT㥛 ?VBZQݿRBS?CDx&?i-1 tag+i word ( cdNNPX9vϿNNX9v?i word stevensNNPSI +NNPI +?i-1 tag+i word `` reformNN +?JJ +i-1 tag+i word VB submittedVBN +?JJ +i-1 tag+i word VB autographedVBN?JJT㥛 пJJRCl$i-1 tag+i word -START- comprehensiveJJףp= NN-NNP|?5^?i-1 tag+i word NN sentencesVBZ(\NNS(\?i-1 tag+i word WRB dramaticallyJJ㥛 ڿRB㥛 ?i word railroadsNNSQ?JJQi+1 word practicesNN?NNP~jt?VBGrh|JJ1Zd?i word therebyJJ(\NNSZd;OVB5^I RBPn@VBD1ZdVBP/$ i-1 tag+i word VBN unprecedentedVBNGzJJGz? i-2 word wereJJR(\?VBZ㥛 RBGz?RBRI +CDS㥛?WDTףp= ?JJ|?5^@NNP"~jNNsh|?FWCl׿NNSQ?RBSv?INGzVBGd;O?VBNE @VBPʡE?NNPSB`"?VB)\(ܿJJSlVBDQDTxRPv/ i-1 tag+i word NNS swellVBZvVBPv?i-1 tag+i word , northeastNNDlѿNNPDl?i+1 word wheatJJPn?NNPni+1 word downsizingJJq= ףp?NN-NNPK7Ai-1 tag+i word DT sprawlingVBGX9v׿JJK?NN\(\i tag+i-2 tag , MDVBRQRBRCl׿RBJ +@i-2 word cropsVBNʡE?JJʡE i-1 word rate VBZOnӿVB$C?RPMb?NN-VBDZd;WDTˡEJJQ?RB(\VBNCl?IN +?NNSQ?i-1 word mergerVBZK7VBMbXɿNNSK7?NNMbX?i-1 tag+i word -START- nauseaNNSffffffNNQ?NNP rhi-1 tag+i word IN freedomNNV-?JJV-i-1 tag+i word CC hispanicsNNPS!rh?NNSx&1NNPzGҿi+1 word russoJJ&1?NN&1ҿi-1 tag+i word -START- ewdbNNNNP?i-1 tag+i word DT libelNNrh|?JJrh| i word deniedNN+VBD|?5@VBNJ +?VBP|?5^JJˡEIN\(\ i word turfNNPV-NNSGzNNx&1?JJ-?INM¿i+1 word branchedVBN/$RB/$?i+1 word planeJJh|?5?NNh|?5ֿi-1 word rulesNN/$VBDxVBP~jt@WDTK?JJ|?5^INMbi-1 tag+i word ( i.e.VBMFWM?i-1 tag+i word RB challengingJJS?NNSi-1 tag+i word NNS ploysVBPZd;ONNS/$?NNP#~ji-1 tag+i word RP bearishJJ?5^I ?NN?5^I i+1 word ambushedNNPS9vNNSS˿NNPjt?i-1 word shostakovichNNS/$?RB/$i-1 tag+i word TO postVBsh|??NNsh|?i-1 tag+i word POS ortegasNNPSn?NNd;ONNP"~i word classicalJJzG@NNzGi-1 tag+i word RB confirmVBPv/?JJv/i-1 word hottestJJClٿVBZQNNSQ?NNCl?i+1 word losingVBjtVBPzGNNv/ @JJV-VBDzG?i-1 tag+i word `` circuitNN^I +?JJ^I + i-2 word aNNPT㥛 ?WRBuV?WP(\RP+?NNSPnVBNq= ףp?JJQ@DTV-?RBRFx@PRP$ +VBECDʡE?EXX9vJJSbX9SYM9v?VBG!rh?VBZ|?5^RBJ +ѿNNPS= ףp=WDTV-o@NN ףp= @POS/$?JJRV-?VBDOnVBPEFW{Gzt?RBS{GzINMb?i word conversationsNNSV-?NNV-i-1 suffix repRB{Gz?NN/$NNPni-1 tag+i word -START- scoresNNSMb?NNPMbؿ i word markkaFWPn?NNSɿNNT㥛 NNP"~i-1 tag+i word CD seriesNNPS/$NNSnNNx&1 @NNP#~ji word diabetesNNPSɿNNSlNN1Zd?JJ~jtÿNNP?i-2 word scatteredVBNq= ףpͿVBDq= ףp?i-1 tag+i word : endVBS?VBPw/CCjtĿi-1 word grownRB&1?NNSFx?JJ +NN(\ȿVBN+i-1 tag+i word VBZ whileNNK7AINK7A?i word participatingNNB`"VBP/$ٿVBGCl@i-1 tag+i word JJ conservativeJJ|?5^ʿNNP|?5^?i-1 tag+i word -START- londonVBʡENNSZd;NNPJ +?i word commodityNN^I +NNP^I +?i+1 word decadenceNN+?VBZ+߿i-1 tag+i word NNP mulroneyNNh|?5޿NNPh|?5?i-1 tag+i word IN historyNN+?JJSNNP?5^I i word logoNNZd;?NNSZd;i-1 tag+i word DT tracerNNtVNNPtV? i suffix lieVBD!rhJJRX9v޿VBP!rh?PRP)\(JJ㥛 NNPn @VBM?NN/$i-1 word fillingDTn?WDTMbXIN)\(i-1 tag+i word DT inadequatelyRBx?JJxi word pitchmenNNSzG?NNzGʿi-1 tag+i word PRP$ shipyardNNS?JJSտi-1 tag+i word NN vitalJJMb`?NNMb`i+2 word changingJJFx?VBNGzRB"~?VBDK7A i word mountVBOn?VBPMb?NNHzGNNPS\(\NNPCl?i word accustomedVBN$CӿJJ/$@VBDFxi-1 tag+i word VBD announcedVBD(\VBNʡE @JJX9vi-2 word respectVB333333WDTsh|?DTsh|??JJ333333?i+1 word drexelJJK7VBDK7? i word raisedVBK7A`NN\(\VBNbX9@JJHzGVBD㥛 @ i+1 word boxJJʡENNʡE? i word sparesNNS-?NN-i word transluscentJJK7?NNK7i-1 suffix eliNNPS+RB ףp= NNPV-@VBZV-i-1 tag+i word NNS slackenedVBNClVBDCl?i-1 tag+i word VB vetoedVBNv/?RBv/i-1 suffix rneRP/$?RB/$i-1 word realizesIN7A`DT7A`?NN#~j?JJ#~ji+1 suffix icyVBN{GzԿWDTMbX9INp= ףDTzG @NNPVBG&1NNS㥛@CC}?5^IVBGzοJJx&1@NNSV-VBDK7ARBK7VBZV-i-1 tag+i word DT improvedJJSnJJn? i-1 word r''x?POSxi word compromiseVBK7?NNSNbX9NNv@JJ\(\i-1 tag+i word JJR tonightNNbX9?RBbX9i+2 word violenceIN?5^I VBFxNNV-@VBNGzRBGzi-1 tag+i word CC busesVBZ(\NNS(\?i+2 word motorCDClJJCl?VBZGz?DTˡE?NNSGzֿCCˡEܿ i+1 word risk NNZd;@VBDPnRBRw/POS~jt?VBNrh|?RBV-ҿVBZ~jtVB$CJJPnJJRw/?VBGn?i-1 tag+i word ( troNN&1?NNP&1i-1 tag+i word DT commonlyNNA`"RBA`"?i-1 tag+i word IN firmerNN= ףp=JJR(\@JJQ޿i+2 word dellumsVBN^I +?VBD^I +i-1 tag+i word DT boomingVBGɿJJMbX9@NNoʡi-1 tag+i word JJ weakenVBMbX?VBPMbX i word jamsNNST㥛 ?NNT㥛 i+2 word steadyVBZ%C?NNS%CWDTV-?INV-i-1 tag+i word DT bruntJJSvNNv?i+2 word sinceVBPNNPS'1ZVBGOnӿJJSQ?JJ rhNNPjtVBD)\(?RBRCl?NNSOnRB?NN|?5^?RBSQJJRClVBNjt?IN?5^I ?VBZOn?i+1 word tomashVB/$ÿNNP/$? i word lovelyVBD+JJ|?5^@RBrh|NNP+i-1 word naczelnikVBZ/$?NNSMbXPOSʡE?NN"~ڿi-1 tag+i word TO illustrateVBGz?JJGzi-1 word speedsRPʡE?INʡEi-1 tag+i word PRP$ textilesNNS~jt?JJ~jti-1 tag+i word NNP institutesNNPSQ@NNS rNNV-NNP7A`i+2 word ogdenVBN +οJJ'1Z?CDp= ףi-1 tag+i word DT dynastyNNMbX9?FWMbX9i-1 word literaryNNCl?JJCli+1 word inexorablyVBZ"~?VBP"~i-1 tag+i word PRP$ legsNNS^I +?NN^I +i+1 word advancersVBNPnVBDPn?i-1 tag+i word PRP woundVBPPnVBD(\?VBZˡEĿ i-2 word riskDT~jtNNS+?NNPv?VBGV-?NNffffffJJ{GzԿIN~jt?VBZ+i-1 tag+i word WP yaVBZ;On¿VBP333333PRPףp= ?i word commandingNN-VBG/$JJ+@i-1 tag+i word DT divestedVBNK߿JJK? i word waiveVBjt?JJjtֿi-1 tag+i word NN conversationsNNSV-?NNV-i word borrowedVBN^I +@JJV-VBDffffffi word subsequentNNSNNP rhJJ@i word weightedVBN"~JJx&@NNV- i+1 word okVBDFx?RBd;O?NNd;OVBNV-JJ-޿i-1 tag+i word DT deseretNNPS^I +NNP^I +?i-1 tag+i word `` wrongJJDl?NNDl i word signalNNPm?VBP"~j?NNZd;O @JJS㥛VBD"~j̿ i+2 word sendNNSA`"NNPSA`"WDTʡE?RBA`"?IN= ףp=VBZA`"?DTHzG?i-1 tag+i word , beachesNNS+?NNP+i-1 tag+i word JJ hillsVBZK7A`NNPK7A`?i+2 word trickleVBN{GzRB{Gz?i-1 word ohbayashiVBNSVBDS?i-1 tag+i word RB attemptNNx&1?RBx&1 i word neckNN\(\@VBN= ףp=ڿJJ +JJR- i word pillsVBZ?5^I NNSE?JJ/$i word altitudeJJ+NN+? i word susanVBP&1NNP&1?i-1 tag+i word JJ seaborneJJCl?NNPnVBDCli-1 tag+i word IN viewRBSNNS?i-1 tag+i word NN awayNNPnRPMbXRBv/ @i-1 suffix tadIN+FW)\(?RBQ?NNsh|?JJ~jti-1 tag+i word , chewVB"~VBP-?NNSh|?5JJ(\ݿi+2 word securityNNP7A`NNPS%CNNL7A`VBD9vʿVBPMb?JJ r?VBZʡENNSS?i-1 tag+i word WDT licensesVBDףp= VBZףp= ?i-1 tag+i word DT incumbentJJ5^I ?NN5^I  i suffix rabVB^I +?VBP(\?NNOn?JJL7A`?NNPQi-1 tag+i word NNP chemicalNNMbX9?NNPS7A`JJ#~j? i suffix G-7JJjtNN-NNPK7A`@i+2 word indexesJJRX9v?NNSX9vi+1 word tradersJJ㥛 ?NNS(\?NNP/$VBG{GzNN%C @VBDSVBNʡE?CD(\i+1 word optionNNS!rhܿNNPʡEVB1Zd?WRBK7NNV-@VBNmJJZd; i word keepJJ rhNNPVBMbX@NNPSX9vNN/$VBDʡEVBPZd;O? i word hbjJJHzGNNPHzG?i word brilliantNNSvJJI +?NNQi-1 tag+i word CC tendVBB`"VBPB`"?i-1 tag+i word JJ forbiddingVBGMb?NNMbi-1 tag+i word VB violatedVBNsh|??JJsh|?i-1 word remainRBRxVBN/$RBOn?INV-NNPJJ@NNtVi word pomologicalJJn?NNnٿi+1 word snagsVBP(\ſVBD(\?i tag+i-2 tag WDT VBNVBx&1̿NNSoʡ?JJ?NNx&1?VBZ i+2 word diedJJ|?5^VBDRQ?VBPRQNN|?5^?i-2 word deportedRBGz?INGzi-1 tag+i word -START- theirPRP$V-@VB1ZdNN"~NNPClDTS i suffix ANKNNZd;O?RB1ZdNNSZd;NNP$C?NNPS^I +JJQ?i+1 word correspondentNNPS/$NNP/$?i-1 tag+i word RB clashedVBNS㥛?VBDS㥛 i+2 word actsJJ/$?PRP$1Zd?VB1ZdNNn?VBNʡEi-1 tag+i word NN northwestJJS/$RB333333@NNSi-2 word graedelVBNzGJJ1Zd?VBDCli+1 word level VBN9vINS㥛DT~jt?NNPQտRBd;ONNK7A`POS rh?JJRv/?JJB`"?VBZ rhi+2 word violatedDTI +?INI +i-1 tag+i word MD explainVB㥛 ?RB㥛 i-1 tag+i word VB exercisedVBN;On?JJ;Onڿi-2 word albumsNNSx&1?NNx&1i+2 word mattersVBS?VBPx&NN9vi+1 word stakeJJJ +?VBGMbX9?RBGzNN%CNNPtV?i-1 tag+i word IN overdueJJGz?RBGzi+1 word afterwardRBX9v?JJX9vi word targetsVBZlIN&1NNSx@NNʡEVBDHzGѿi-1 tag+i word VBD pushVBENNE?i+1 word plans VBN~jt?JJGz޿NNPSDl?NN}?5^IVBDM?NNP&1?VBG-FWClNNSZd;i-2 word sidhpurNNʡE?JJʡEi-1 tag+i word NNP touristsVBZffffffƿNNSffffff?i word balloonistsVBZ+NNS+?i-1 tag+i word -START- usiNNSK7RBZd;OJJ)\(̿NNPCl? i-1 word makeWDTy&1INʡEPRP$Q?JJK@VBG'1ZĿNNrh| @PRP#~jDT)\(?NNP rVBP"~RBMbX9VBjt?RP1Zd?RBR rhJJRffffff?i-1 tag+i word NN shiningVBGZd;O?NNZd;Oi-1 tag+i word CD belowVBZ~jtRBףp= INS?i-1 tag+i word -START- thatWDT5^I RBd;OINV-?DT;On@NNPlJJ+i-2 word lettingVBV-?VBPd;ONN㥛 ¿i-1 word travelersVBNʡE?JJ"~jNNP"~j?VBD{GzVBPK7Ai-1 word mistakesNNX9vVBDK7ѿVB&1VBP&1?VBNK7A? i-1 word boxIN= ףp=?RB= ףp=i-1 tag+i word RP spendingVBG/$NN/$?i-1 tag+i word CC thereforeVBDZd;ONNSDlRBI +@NNL7A`i-1 tag+i word DT standNNx&1VBPx&1?i+1 word toxinNNS rNN r?i-1 tag+i word JJ computingNNSʡEVBG|?5^?NN/$i-1 word matsushitaNNPSKNNPK?i-1 tag+i word NNS warrantVBZ%CVBPPn?IN r i+1 word tripNNPSS㥛@VBGJ +JJ r?NNMbX?NNPQi-1 tag+i word NNP sticksVBZMbXNNS'1Z?NNMbi+1 word careersNN}?5^IԿVBDQJJ7A`ڿVBG"~j̿VBNOn?i word techniciansNNS?NNbX9NNPSbX9i-1 word monteVBD;OnFW|?5^?JJV-VBZK7NNSq= ףp?NNP{Gz?NNPSq= ףpNN{Gzi-1 word kidder POSV-?VBP|?5^JJJ +VBZV-ҿVBG rhVBDw/?DTSNNDl?VBN\(\i tag+i-2 tag TO RP $ rhNNCl?JJR#~j?IN\(\׿DTZd;NNPZd;?VBRB\(\?RBR#~jJJ~jti word nekoosaNNPSENNS^I +NNMbX9NNP$C? i+1 word dougRP(\пNN(\?i-1 tag+i word CC thereNNPV-EXˡE@RBp= ףVBDZd;i+2 word firsthandVBZ#~j?POS#~ji-1 tag+i word DT democratsNNPS)\(@NNS"~j?JJRX9vJJX9vNNPˡEi-2 word payrollNNPˡEVBˡE? i word placesVBZnʿNNSn?i word representativeVBPENN!rh@JJGzi-1 word ruralRBGzJJT㥛 NNP$CNNCl@NNSv?i-2 word dodgersVB/$RB/$?i word predictablyRB/$?NN/$i-1 word blamedJJZd;߿NNZd;? i+2 word yearVBPnRB"~j?NNPS rJJ{GzNNP(\VBZJ +JJRZd;VBbX9RPv/@RBR9v@DTGz?CD?5^I @NNSM @NN333333@RBS/$VBGˡEWDT9vINS?VBDjtJJS/$?VBNK7A`?i+2 word shopsCDE?JJ-ƿIN5^I ˿VBV-?VBPV-i tag+i-2 tag CC PRPINZd;OVBZx&1VB/$@VBPK7ANNSx&1?i+1 word rulerJJ-?NN-i word centeredVBDDl?VBPDl i+1 word pillNN/$?JJ/$i-1 tag+i word CC promisesVBZ%CNNS%C?i-1 tag+i word NNP urgentlyRBK?NNPKi-1 suffix ubt WDT(\IN(\?NN/$VBDQ?VBNQοRB&1VB(\?VBP㥛 ҿEXK?i-2 word understandsRBR?JJRi-1 tag+i word JJ discoveredVBZV-VBDV-?i-2 word tamingVBNʡENNʡE?i-2 word sparkJJB`"ѿRBR-VBHzGNNB`"?JJR/$@ i word eggNN}?5^@VBNh|?5JJZd;RBENNP^I +i-1 tag+i word CC accountedVBN/$?JJffffffVBDS?i-2 word assessVBZbX9NNSbX9?i-1 tag+i word DT slideJJK7A`VBNtVNN(\ @ i+1 word weWDTh|?5DTQ롿JJR(\VBV-PDTS㥛RBR(\?CDB`"?MD#~j?VBNS?INF@VBZQ?NNPL7A`NN1Zd@VBP9v?RB +JJ(\NNSQi-1 tag+i word IN alcoholNNK?FWK i suffix rezNNPST㥛 NNPT㥛 ?i-1 tag+i word POS shopNNSMbNNMb?i-1 tag+i word VBD mostJJSm?NNKRBSRBSOn? i suffix LTHNNm?NNPmi-1 tag+i word NNP officerNN"~NNP"~?i+2 word logosNNPS(\NN(\?i-1 tag+i word NN accessibleJJp= ף?RBp= ףi word stimuliNNSjt@NNʡEJJHzGѿi-1 tag+i word CC deliverVB^I +?JJ'1ZNNPCli-1 tag+i word VBN p53NNZd;RBh|?5IN= ףp=CD333333?i word quarterJJtVNNPy&1NNCl@RBR~jtؿi-1 tag+i word WDT growVBZoʡVBoʡ?i-2 word hellsNNPS-NN(\?NNPn?i-1 tag+i word DT frankingVBGvNN1Zd?JJCl߿i+1 word petitWRBQNNPQ?i word endorsingVBG%C?NN%Ci-1 tag+i word NN satVBT㥛 NN#~jVBDffffff@i-1 tag+i word JJ cheerVBCl?INCli-1 tag+i word IN improvingVBGQ?NNOnJJɿi-1 tag+i word RB affordVBPSVBS?i-2 word combinationJJtV?VBZ^I +?NNS^I +NNP"~?NN"~VBNtVi+2 word slappingVBGClNNCl? i-1 suffix } WDT{Gz?RB rhNNPMbX9?JJɿNNlJJRX9v?VBP/$?INMbX9?VBZʡE?NNS9vVBI +VBDT㥛 ?VBNZd;O?i-1 tag+i word TO rageVBV-?NNV-i-1 tag+i word JJR memoryNNn?JJni-1 tag+i word RB prescribeVBPʡE?VBDʡEi+2 word initialJJ rhNNP rh?i-1 tag+i word VBZ leavingVBG&1?NN&1ҿ i pref1 tNNPSNNMbX9@PDT`"EX{G@MD{GzVBD/$?VBN(\?RBRX9vVBPCl?VBZ~jt?CDJ +JJSxJJʡE?RPbX9 @NNPNbX9t'PRPI +?JJRQIN rh @DTMbP?NNS @VBjt@FWsh|?UH}?5^IPRP$(\VBGʡE@WDT9v@CC?WPxPOSA`"RBK@i word wednesdaysNNSx&?NNPx&i+1 word examinationsVBSVBGS?i-2 word nullifyJJm?NNmi word cloggedJJ-?NNʡEVBNq= ףpͿi-1 word could RBRjt?VBNbX9@VBG-RB/$?VBNʡEVBDDlCCjtJJX9vDT rh i+2 word megaRBE?JJEi-1 word futures NNS㥛?VBNMb?CD̿VBP"~VBZ?NNSܿVBB`"?VBGHzGRBKNNPZd;O?NNPSjtܿVBDFxi-1 tag+i word DT coreJJR9vNN9v?i-2 word ensuringVBZT㥛 NNS rh?JJR-?NNZd;ORBR-i-1 suffix yalVBZA`"NNPS"~jNNS-?i-1 tag+i word DT splashyJJS㥛?NNS㥛i-1 tag+i word NNP fewerNNP{GzJJR{Gz?i-1 tag+i word , launchedVBNh|?5޿VBDh|?5?i-1 suffix hts VBNM?WDT;On?INq= ףpDT{Gz?NNPJJJ +VBD/$VBPB`"RBClVBG9vNN-@i-2 word understateVBGv/տNNv/?i-2 word dabblingJJ rh?NNP rhi+2 word entertainmentJJI +IN/$NNS/$NNP(\?RP/$?NN/$?VBDd;O?VBPd;Oi-1 tag+i word RBR reluctantJJQ?NNQi-1 tag+i word NNP foodsNNPS5^I @NNSjtԿNNPˡEi-1 tag+i word , thripsNNS%CNN-?FW"~i word refiningVBGK7NNQ@JJ?5^I i suffix -52NNQJJQ?i-2 word forfeituresNNK7A`VBPףp= ӿJJS?i-1 tag+i word POS linksNNS"~j?NN"~j̿i+2 word hoechstVBZMbpNNSʡEJJffffff?i tag+i-2 tag RP JJRJJZd;OݿNNPZd;O?i-2 word tumbleNNjt?JJjti-2 word defendersVBܿVBP?i+2 word fractionalNNSK7?VBNL7A`JJK7AпVBD|?5^?NN ri+1 word depositPRP$Zd;JJ-?INtV@NNPbX9VB rhѿNNw/i-2 word provisionsNNSy&1?NNPy&1VBG-?VBD7A`VBN7A`?JJ-ӿi+1 word handlesDTffffffWDT~jt?INni-1 tag+i word RP asRB333333?IN333333i-2 word community VBV-?JJ/$?RBR`"οRB5^I ?VBZnNNSX9vNNPGzNNGz?JJR`"?i-2 word unendingNNzG?JJzG i word close VBx&1CD$CVBP ףp= RB r($@NNSmRPClJJףp= @NN rhٿVBDffffffVBN"~j VBGT㥛 i-1 tag+i word DT amazingVBGA`"ۿJJZd;O?NNK7i-1 tag+i word NN specificallyRB^I +?NN^I +i word telltaleNNSJJ?i+2 word deprogrammingsNNMbX9?INMbX9ܿi word strugglesVBZMbX9@NNSjtVBDw/i+2 word melbourneRP rؿIN r? i+2 word delRBClNNEԸNNPPnؿJJ1Zd?i-1 suffix gue RP9vNNx&?JJSӿINv@VBZ1ZdDT'1ZܿVBSNNSq= ףp?WDT/$ i word tabNN%C?JJ9vNNPX9vi-1 tag+i word DT techniqueVBV-NNV-?i+2 word describedNNSX9v?NNX9v޿i-1 tag+i word NNP restorationNN333333NNP333333? i word flagsVBZDlNNSp= ף@NN ri-2 word attractiveNNPMbJJX9v?VBMbXDTzG?NN7A`?i-2 word reducedVBp= ףؿVBGL7A`NNS?JJRp= ף?JJA`"NNSlҿ i word cloudVBx&?NNDl?VBDoʡտVBPd;O?JJDlVBZFxi+2 word issuingVBERBE?i+1 word quartetNN㥛 @JJ+VBG1Zdi word parkwayNN(\?JJ(\¿i-1 tag+i word PRP$ divestitureNNZd;?JJZd; i-1 word wonVBD+NNS+?RBZd;O?INZd;Oi-1 word replacingJJRQ?JJQi-1 tag+i word IN healthvestJJSK7ANNPK7A?i-1 tag+i word DT knowVBPx&?VBDx& i+2 word tendJJV-?VBG?5^I VBNV-NN?5^I ?i word qualifiesNNSFxVBZFx?i-1 tag+i word WP worksVBZQ?NNS+?VBD+i-1 tag+i word IN hidingVBGMbXNNMbX? i word burialNNS?JJS˿i word deductibleJJ +?NN +i+2 word offerSYMB`"RBNbX9?VB\(\߿JJ/$?NNSʡE?JJS-VBN$C?VBPuVͿVBDMbX9RBS-?VBZZd;O?NNPq= ףpNNM?PDTPni+1 word pattisonRBENNPE?i-1 tag+i word NNP songNN333333?NNP333333i-1 tag+i word JJ sketchesNNS+?NN+i-2 word withdrewNNRQ?NNSRQi+1 word americans JJMb@INʡE?NNPS-?NNQVBD(\RBSZd;OVBNd;OWDTʡEVBZQVBGʡEJJSZd;O?JJRQ?VBP ףp= ? i suffix iasNNMbXVBPL7A`堿RBK7ѿVBZK7ANNS#~j@NNPOn?NNPSMb`JJQ?i+1 word insulateWDTCl?INCli-1 tag+i word `` frankVBlJJx&1?NNQi+2 word underlyingVBGMbX9?JJMbX9i-1 tag+i word TO issueVBbX9?NNbX9 i word busilyRB;On?VBNʡEJJv/i+1 suffix xitIN}?5^I?RB}?5^IVBNNbX9JJNbX9?i+2 word lawsuitsNNZd;@JJR1Zd?RBR1ZdVBN/$?JJ/$VBGZd;i word inflammatoryVBZ9vJJ#~j?NNjtVBNjti-1 tag+i word NNP politicalNNP}?5^INNPSQ롿JJ(\@i+1 word tokyuDTףp= ÿINףp= ?i word memoriesNNS ףp= NNP~jtNNPSMbX @ i word servesVBZV-?NNV-i-1 tag+i word DT measureNNq= ףp?JJvNNP-i+2 word awareNNPS9vNN5^I NNPCl? i word reubenJJFxNNPFx?i-1 tag+i word VB excitingVBGtVJJtV?i-1 tag+i word JJ ideasNNS{Gz@JJbX9NNRQ i suffix lvoNNS5^I NN5^I ?i+2 word ensureNNS rhNN rh?i+2 word liberalizedNNQNNPQ?i-1 tag+i word DT inquiryVBP$CNNZd;O?NNP\(\i-1 tag+i word : joshuaJJRQNNZd;ONNPV-?i-1 word indicatingNNSNbX9NNNbX9?i word maintainsVBZuV?NNSV-VBD"~ji-1 tag+i word JJ payNNSbX9NNbX9?i-1 word alliancesVBN1ZdJJS㥛VBD= ףp=@VBPi-1 word recoverRB +IN +?CC'1ZܿDT'1Z?i-1 tag+i word VBN faceliftNNSOnNNOn? i suffix olsVBSNNn"VBDV-VBP+JJJ +VBZoʡ@NNSDl @i+2 word surveillanceNNV-VBNV-ݿJJ!rh̿VBrh|@i word denizensNNSˡE?NNPˡEi-1 tag+i word DT strengtheningVBGQ?NNQi+1 word dreamJJS?PRP$ r?JJSx&1DT rNNli-2 word scaringJJ-?NN-i-1 tag+i word IN baa2NNbX9NNPClJJd;O @i-1 tag+i word NNS balanceRB"~jܿVB#~j@NN|?5^i-2 word petrieDTPnINPn?JJEؿCDE? i suffix alaNNS?VBDSݿi-1 tag+i word RB brandsNNPS-?NNP-i-1 tag+i word NNP yenNNS/$ƿNN/$?i-1 tag+i word `` completesNNSZd;VBZZd;?i-1 tag+i word IN presidentsNNPS ףp= NNS ףp= ?i-1 tag+i word NNP bomberVBP rhNN+?NNPV-i+2 word escrowVBNV-?NNV-i-1 tag+i word IN linkingVBGK7?JJK7i-1 tag+i word DT barberNNzG?JJB`"NNPL7A`堿 i word peteNNPSzGNNS-JJ= ףp=NNP/$@ i word peruseVBZQVB%C?NN rhi+2 word debtsJJ|?5^VBG|?5^?i-2 word routesVBN!rhܿJJ!rh?VBZ/$NNS/$?i-1 suffix eauVBZh|?5?NNSp= ףVBN/$VBDB`"?i tag+i-2 tag '' -START-CDʡENN/$?NNPL7A`?i tag+i-2 tag ) INVBZd;JJRZd;? i word macyRB rhNNuVNNP(\?i-1 tag+i word NN revolvingNNS㥛VBGS㥛? i word notingVBG^I +@NN^I +i-1 word reachVBP#~jRP rhJJR+?RBtV?i+1 word clinicsNNQ?JJQi-1 word traditionalVBD+NNSS㥫NNJ +?JJS㥛@NNPi+1 word polesVBGI +NNV-?JJn i-2 word knowNNSv/?JJʡE?NNuVWDT~jtRBK7A`IN-?VBZB`"? i suffix FTCNNPSL7A`NNoʡſNNPx&?i word tiananmenNNPˡE?NNV-CD?5^I i-1 tag+i word NN coolerNN(\?WDT(\i-1 tag+i word DT headNN?5^I JJy&1?CDX9vNNP$C@NNS-i-1 tag+i word IN existingVBGKJJK?i word plateauVBZS㥛NNS㥛?i-1 tag+i word POS lendingVBGy&1?NNn?JJ|?5^i-1 tag+i word VBD backRP~jt@RBx&1?NNClJJ(\i+1 word themesVBGQ?NNQi+1 word likely INx&1VBZV-NNSV-?NNHzGRBRGz@WDTx&1?VBNRQ?RB/$?JJV-JJSnҿRBSI +?JJRx&1i+1 word thirdJJCl?INʡE?RPʡENNlVBDy&1VBNX9v޿i+1 word loomsRPI +RBS?NNS㥛i-1 tag+i word -START- chiefJJ%C?NNZd;ONNPK7?i-1 tag+i word TO stronglyVBGzRBGz? i+1 word hookJJ5^I VBN5^I ?i-1 tag+i word NNPS n.v.VBPV-NNPV-?i word volcanoNN^I +?JJ^I +i-1 tag+i word -START- muniWRBw/JJM?NNPX9vi-1 word reductionsWDTp= ף?INp= ףi-1 tag+i word VB adultNN/$@JJZd;INd;Oi-1 tag+i word `` goldenJJ= ףp=?NNP= ףp=i-2 word requestVBQNNMb?JJMbWPQ?i+2 word intendsVBZ|?5^ʿDT|?5^?WDTp= ף?INp= ףi word equitableJJI +NNPI +?i-1 tag+i word NNP appellateNNtVJJtV?i word loweredVBSVBNK7A?JJ'1ZVBD?5^I ?i-1 tag+i word IN horseNN= ףp=?JJ= ףp=i word portfolioNNHzG?NNPHzGi tag+i-2 tag MD DTVB rNN~jt?RBq= ףp?i+1 word hobbyPRP$Pn@NNPS\(\NNPS i+2 word maleVB+?RPZd;?RBZd;׿NNV-VBPV-ϿJJV-INd;O?i+1 word mineralsJJ?NNPi-1 tag+i word DT recordsVBPClNNS/$?NNZd;Oi-1 tag+i word DT coupNN5^I @JJB`"RBRQi word swampedVBNZd;?JJZd;߿i word membershipNNPENNE? i-1 tag+i word -START- expansionNNx&?NNPx&i-1 word shorelineNNQINQ?i-1 tag+i word VBG organizeVB|?5^?IN|?5^i-1 tag+i word , rackedVBNx&1?JJx&1̿i word roadwaysVBS㥛NNSʡE?VBZ rhi-1 tag+i word NNP consistsVBZ ףp= ?NNS ףp= i-1 word oakesVBNw/VBDw/?i-1 tag+i word DT earlyJJo!@RB9vNNI +i-2 word harassmentNNS?5^I ?NN?5^I i+2 word singinVBNDlVBDS㥛VBPA`"@i+2 word managementVB?5^I @VBN9v?RB'1ZNNSJ +VBG$C?NNB`"IN(\JJ-VBDQ?VBZMb?NNPMNNPSZd;?RP/$@VBP(\i+1 word unclearVBN9v?NN9vi-1 word headingRPOnRBFxINʡE? i word casinoNNPOnNNSMbX9NNK@JJ%CVBDMbXi+2 word competition NNPK7?RPI +?NNv/ݿWDTJJnWPA`"DTMb?NNSV-VB$C@INlVBNn?VBPK7Ai word incorporatesNNSvVBZv?i tag+i-2 tag : ,NNX9vPRPV-?JJK7CD/$i-1 tag+i word `` neverNNPq= ףp?VB\(\RB ףp= ߿i+2 word preferRBSݿINS? i suffix eafPOS^I +NN ףp= ?NNPxi-1 tag+i word TO offsetVBl?JJl i word cueJJ#~jNN#~j?i word contrastedVBNK7A`?VBDK7A` i word scoffsNNS rNN`"VBD333333VBZx&?VBA`"˿i-2 word exaggeratedNN+?IN+i-1 word gerrymanderingVBN/$?VBD/$i-1 tag+i word `` realistsNNSS?VBNSi+2 word horsesRPuVNNPuV?i word subduedVBNffffff?JJffffffi-1 tag+i word IN plainJJ rh?NN rhi-1 tag+i word MD comeVBtV?VBNtVi-1 word removedJJ+NN+?i-1 word physicalNN?NNPp= ף?NNSFxɿVBNHzGi+1 word totingNNX9v?JJX9vi word residentialVBGV-NNmJJCl@NNS/$NNPK7?VBx&1i word testifyingNNPlVBGʡE?NNffffffƿi+1 word berraNNV-NNPV-? i word jewelNNʡE?JJʡEi-1 tag+i word NNP postNNS?FWvNNP;On@VBDX9vNNPSQ i word colorsNNSy&1?VBZy&1ܿi-1 word tacticalRBR/$NN/$?i-1 tag+i word IN aramidNN9v?JJ9vi+1 word bluntRBQ?INQi-1 tag+i word VBD fallenJJA`"VBNA`"?i-1 tag+i word DT socialistsNNPSoʡ@NNSw/NNPffffff i word rabidJJFx?NNFxi-1 tag+i word NNP recognizesVBZS?NNSSi word completingVBGv?JJvi+2 word premiumNN rؿJJy&1NNP r?i+2 word factoriesRBK7A`NNQNNPnJJK7A`@NNS-?i word confiscatedVBNrh|?NN{GzVBD"~i-1 tag+i word VBG biddingVBGoʡ?RBoʡݿi-1 tag+i word DT concernsNNS/$?NN/$i-2 word spanishNNP+?JJ+i-1 word granularVBN= ףp=?JJ= ףp=ҿi tag+i-2 tag CC CDNNPMb?NNSMbPNNHzGVBDM@JJR7A`@VBP+?VBN7A` JJK?RBRKRBQ?CDQ?VB\(\?INQVBZl?$Cl?VBG333333?i-2 word globalNNSVBPPnJJK7?INzGVBZZd;O?NNSZd;O߿NNPzG?i-1 tag+i word NNPS littleJJMb?NNPMbi word enduringJJ~jt?NN~jti-1 tag+i word NN calledVBNQ @JJʡEVBDv/i-1 tag+i word DT towelNNSѿNNK?JJ"~i word ticketedVBNjt?VBDjti-1 tag+i word RB retailNN-JJ-?i+1 word qualifiesDT= ףp=WDT$C?IN}?5^I i-2 word raceDTV-?NNSx&1?VBZd;O?NNZd;OJJRHzGJJK7A`?INV-i word holdingsNNPMbNNPSy&1,@NNSʡE?i-1 tag+i word NN dominantJJffffff?NNffffffi word crumbleJJOnVBOn?i-2 word rivalNNPS{GzNNSʡE?JJʡENNP{Gz? i-1 tag+i word -START- civilizedVBN7A`ڿJJL7A`?NNPMbi tag+i-2 tag NNP PRP$NN ףp=@VBPK7JJx&VBZzGNNS5^I NNPK7?NNPSQ?VBGjti+2 word reportingRBR|?5^?JJR!rhVBD+VB-ۿVBP-?i-1 word profferedNNy&1CDy&1?i-1 tag+i word JJ arrangedVBN+?NN+i-1 tag+i word CD closedVBNrh|VBDrh|?i-1 word unprofitableJJRQ?NNRQi-1 word profit VBG|?5^NNK7?JJRZd;JJ`"VBZ{Gz?NNS{GzVBDL7A`?VBNL7A`RBRZd;?i-1 tag+i word `` nothingVBGClNNCl?i+1 word yieldNNPv/?NN-JJR#~j?RBR#~jJJp= ף@VBZ-NNSi-1 tag+i word NNP dutiesVBZ-NNS-? i word innerVBZʡEVBD+JJQ@NNS㥛 NNP i suffix belNNh|?5@RBRʡEVBPClǿJJClǿNNSGzNNPn?i+2 word agentsVB|?5^NNGzVBD1ZdVBPn?JJʡE?VBZ^I +?NNS!rh?NNPni+2 word desireVBZ^I +POS^I +?RBʡE޿INʡE? i+2 word lackRP/$?RB}?5^IJJFxNNB`"?VBPB`"i-1 tag+i word MD singVBS㥛?VBGS㥛i-1 tag+i word CC yardsVBZENNSE?i-1 tag+i word DT shinyJJM?NNMi+2 word claudioRB-?VBD-PRP$-?PRP-i-2 word inheritedVBNm?VBDm i-1 word itVBzGʿPDTX9vINX9v?RBRuV?MDV-WDTx&?VBZx& @RP(\?POS-PRPK?RB(\?CDNbX9пJJS;OnVBD333333@VBNK7 DTxƿNNףp= NNSV-NNPHzG?JJRS?VBP#~jJJ}?5^I?NNPSQi+2 word psychologicalNNʡEVBPoʡ?JJʡE?IN5^I ?VBoʡRB5^I i word collectiveJJ5^I ?NN5^I i-1 tag+i word VBG fasterJJtVJJRQ޿RBRE?i-1 tag+i word , wantVBPPn @JJsh|?NNd;O޿CC5^I VBsh|? i word toadNNZd;O?JJZd;Oݿi-1 tag+i word ) haveVBPx&1VBx&1?i word withrowJJ7A`¿NNP7A`? i word mitNNPSMbX9ԿNNPMbX9?i-1 word legislativeNNS&1NN&1?i word overlapNN-RB/$ۿVBZS㥻VBPPn?i-1 tag+i word CD aroseNNS$CVBD$C?i-1 tag+i word -START- fieldNNS㥛?JJ#~jNNPZd;Oi word sailingVBGDlNNDl?i-2 word pastryVBPGz@WDTGz?NNd;ORB rINV-i-1 tag+i word NNP cynicallyRB333333?VBD333333i-2 word breadthNNSQNNQ?i-1 tag+i word VB lateRB"~?JJnNNq= ףp i suffix tysNNS&1?UH;OnNN+i+2 word feelingNNMbp?WDTMbpi-1 tag+i word `` wageJJRA`"NNA`"?i-1 tag+i word DT lubricantsNNS~jt?JJ~jti-1 tag+i word `` americanJJ"~NNP"~@i word attendantJJGzNNGz?i+1 word sultanNNP/$JJ/$?i word beleagueredVBN rhJJ rh?i-2 word budgetWDTuV?JJ+?INuVͿVBZS?NNSSۿVB}?5^I̿NNQ?i word cursingVBGV-NNV-?i-1 tag+i word VB classifiedVBNNbX9пJJNbX9? i+1 suffix ifJJ/$DTrh|NNPSMbX9?VBPS㥛?WDTZd;WP-?NNSx&1?JJR9v?RBRX9vVBN&1?INsh|??RBˡE?VBDFxPDT~jtRP-޿NNPClVB/$@VBG;OnNN5^I ?i tag+i-2 tag RBR NNPVBN9v?VBPRQ?RBS?VBRQVBG1ZdJJZd;VBDSi-1 word stationsVBMbVBPMb?i-1 tag+i word JJS medicineNN;On?NNP;Oni word preventVBDA`"VB'1Z@VBPGz @JJB`"NN/$i word unfairlyRBGz.@JJGz.i+2 word posnerNNPn?JJRv/JJX9v߿i-1 tag+i word DT legislatureNNbX9JJ&1ʿNNPMb?i-1 word fearedJJRX9vNNSSӿJJT㥛 ?NN-i word imagineJJZd;OVBZd;O? i word learnsVBZʡE?INʡE i suffix KETNNZd;?NNPZd;i word proposedNN7A`VBDS?JJSX9vVBNM@JJy&1INʡEVBi-1 word bebopNN+NNP+?i-1 tag+i word RB resistedVBN+JJOnVBDK7? i word mouthsNNSDl?JJSDli-1 tag+i word JJS renownedVBNuVտJJuV?i-1 word negotiatingVBGZd;ONN~jt?JJi+1 word worldNNPSQVBG rhNNjt?VBDʡE?VBN~jt?JJK7A@NNSx&NNP'1Z? i suffix TBNNd;O@VBNʡERBMڿNNP$C i-1 word big CDv/?VBP~jtWDTRBK7A`IN?NNSGz@NNPSMVBGK7JJMNNm@NNPJ +i-1 tag+i word , freeRBʡEVBx?VBP-ӿ i suffix ubsJJHzGVBZS?NNSQ@NNPx&1VBFxѿNNPSx&1?NN"~jVBDSۿ i word favorNNS-NN-@VBDjtFWV-VBN"~VBPL7A`@JJV-VBZxi+1 word affiliatesNNd;OJJd;O?i-1 tag+i word , sympatheticJJ/$?NN/$i word stockpileVB?NNi-1 word africanVBZ9vVBP333333NNS9v?JJ+?NN~jti-1 word benignVBp= ףNNSL7A`?NNQi-1 tag+i word RB conciliatoryJJV-?NNV-i-1 tag+i word `` reformulatedVBN= ףp=?VBD= ףp=i+2 word airlineINx&1NNSK7A`?NNP/$VBv/RPʡE?VBDw/?JJ/$?i-1 tag+i word '' hadNN+VBD+?i word wertheimVBP9vNNP9v?i-1 tag+i word CD leveragedVBD;OnINbX9VBNp= ף@JJV-?i word statesmenNNSS?VBDS i word fitVBP%C?JJw/@VBZClNNSS㥛VBʡENNK7VBN?RBRGzi word restatedVBNPn?JJPni-1 tag+i word IN masonryNN333333?JJ333333 i word ogdenJJ ףp= NNP ףp= ?i-1 tag+i word , bidVBNFx@NNFxi-1 tag+i word VBG imminentJJ= ףp=?NN= ףp=i-1 tag+i word NNP knockVBMbX?RBRSNN\(\i-1 tag+i word WDT continuedVBZxVBDx?i+1 suffix lvyVBZd;OֿPOSd;O?i-1 tag+i word CC boxyVBZmJJ/$?NNPnؿi-1 suffix avePRP${GzVBGv/VBNCl!@RP~jt?NNSzG@RBRA`"CDʡE?VBDA`"JJL7A`VBZ?5^I PRPv/?NNP!rh?VB~jtPDTʡENNOn?CCQ@JJR~jt?UHxVBP-DTtV?RBGzINMb i word layerVBZQNNm?JJI +i+2 word filedNNPjt?NNPSjtJJ+ηNN|?5^?VBDZd;VBNn?RBsh|?NNS r?i-1 tag+i word CC thoroughfareEXClNN~jt?VBQi-1 tag+i word PRP heldVBP?5^I ڿVBD?5^I ?i-1 tag+i word JJ europeansNNPS{Gz?NNP{Gzi-1 tag+i word NN bondsNNSvNNPv?i word occasionalJJbX9?NNbX9ƿi-2 word overlayJJ+?NN+߿i-1 tag+i word : callsVBZ/$?NNS/$i-1 tag+i word , no.NNPbX9?NNMbVBDS㥛i-1 tag+i word TO u.n.VB㥛 NNP㥛 ?i-1 tag+i word JJ doVBy&1?VBPI +?NN/$i+2 word obligatoryRBX9v?NNX9v i-1 word fearDTK7A`?WDTq= ףpINx&1?i+1 word steveCCSRBx&1INB`"?i-2 word plumbingVBGJ +NNJ +?i+1 word interestsVBN\(\JJV-NNSzGNN/$ @VBD!rhܿJJSZd;?i word insulatedVBN ףp= ?JJ ףp= ǿi-1 tag+i word DT genericJJtV?NNtVi-1 tag+i word VB interviewedVBNS?JJSi-1 word describedNN/$INERBrh|?i word malaysianJJK7A?NNPK7Aпi-1 tag+i word VBP payVBPQ?VBNQi-1 tag+i word NNP connectionNN(\?NNP(\i-2 word reichWDTDl?INDli-1 tag+i word , referVB|?5^VBPV-?NN|?5^ٿi-1 tag+i word DT polishJJjt?NNPZd;NNS?i-1 word militaryVBDoʡ?VBNoʡJJl?IN+NNSrh|߿NNPV-NNPSrh|?NN r?i-1 tag+i word , indulgesVBZX9v?NNSX9vi+1 word redemptionsVBN)\(JJ)\(?i+2 word qualificationsRBh|?5INh|?5?i+1 word scientistNNZd;?JJZd;߿i+1 word hearingVBS?VBPSi-2 word sponsoredJJV-NNPV-?i+2 word prioritiesNNSQNNQ?i tag+i-2 tag CD VB VBGJ +?JJX9vοNN\(\CCd;O?NNPS?NNSzGʿVBClRBRx&JJRx&1?VBNT㥛 RBK7ѿVBZjt?i-1 tag+i word POS debtJJV-NNPV-?i word abstinenceNN#~j?RB#~ji word behringwerkeJJv߿NNPv?i-2 word portsVBG)\(NNS r?NN)\(?VBZ rȿi-1 word souledNN-?CD- i+2 word waysJJp= ףVBuV?NNuVVBDK7?JJSV-?RBSV-VBNx&ѿ i word laymanNN= ףp=?JJ= ףp=i-1 tag+i word DT disabledNNrh|JJrh|?i-1 tag+i word DT fiberJJSV-NNS$C˿NN;On?i-1 word searsVBN?5^I NNtVIN;OnVBDK7?WDT;On?i-1 suffix ckiVBPSNNSRBS?CDS?i+1 word minesNNzGJJQ?NNP{Gz i word mundoNNRQؿNNPRQ?i-2 word featuredNN+?JJ+i-1 tag+i word DT honedVBN-޿JJ-?i-1 word advisoryNNPSˡE?NNPˡEi-1 suffix dzeVBDl?JJli-2 word ignoringVBN$C˿JJ$C?i-1 tag+i word DT attractVBx&1?RPx&1i+2 word attorneysJJv/?NNv/տRB ףp= ?NNP ףp= !i-1 tag+i word -START- bankruptcyNNSS㥛NNHzG?NNP`"i-1 tag+i word VBD buyingVBGK?NN"~j?JJ\(\ i-1 word pileRP~jt?RB~jti-1 suffix pelDT"~j?JJSq= ףpIN"~jRBSq= ףp?i tag+i-2 tag `` JJRVBoʡݿJJoʡ?i-1 tag+i word WDT woollyJJV-?RBV-i-1 tag+i word -START- merieuxNN!rh̿NNP!rh? i-2 word everVBNMbX9?RB333333ӿVBDMbX9ԿVB333333?i-1 tag+i word IN shippingVBG㥛 ?NNrh|JJ-ۿi-1 tag+i word VBN likelyRB1Zd?JJ1Zdi-1 tag+i word NNS packedVBNHzGٿVBDHzG?i+2 word proportionalVBHzG@VBPHzGi+2 word staffNNtVPOS+?JJZd;?VBZ+NNPzGNNPS?i-1 tag+i word NN channelsNNSS?NNSi word realistsNNSS?VBNSi-1 suffix fitRBRZd;?VBNL7A`RBsh|?WPX9vVBDL7A`?NNSˡE?RPX9vֿJJR+VBG|?5^NNK7?JJ5^I ?INX9v?NNPjtNNPSjt?VBZˡEi-1 tag+i word RP allDTrh|?PDTrh|Ͽi-1 tag+i word NN promisesNNS|?5^ʿVBZ|?5^?i word nightclubsNNSK7A?NNK7Ai-1 word wonderINM?WDTn?DTnRP|?5^ٿRBX9vi-1 tag+i word DT highJJK7A`@NNlRB(\i+2 word bruntVBZvVBP"~jܿVBDy&1? i word shapedVBNV-?NNS\(\JJˡE?NNh|?5VBDffffffi-1 tag+i word VBZ clumsyJJV-?NNV-i+1 word expressNNPL@JJLi-1 word narrowVBZA`"NNSA`"?JJ+?NN+i+2 word hammettNNQ?NNPQ i-1 word keyNNV-INMbNNSV-?WDTMb?i-1 tag+i word NNS studyVB'1Z?VBPxƿNN`"i word ezekielNNX9vNNPX9v? i suffix gue VBGJJ9v?VBDClVBN ףp= RBZd;OINQVBGz?NNPSmNNFx@VBPS@VBZZd;NNSX9vNNPM?i word explicitNNQJJQ?i-2 word battlesVBN rпJJx&1?RBףp= i-2 word executeNNS%C?IN%Cܿi+1 suffix flyVBS㥛NN-VBD&1ҿVBPX9v@WDTK7A?JJ'1ZINK7ANNS-?i+2 word propaneRPjtINjt? i suffix CyNNP rh?NN rhտi+2 word irresponsibleVBNGz?JJ rh?NNZd;OFWZd;߿i+1 word prolongedVBGʡE?JJʡEi tag+i-2 tag TO VBVBKJJ/$?NNRQRBR/$RBE?IN'1ZCD/$?NNS1ZdVBNEȿNNPZd;OͿNNPS rCCʡEPDTFx@DTx&?JJR+?i word oversizedVBNJJn?VBD/$i-1 tag+i word RB developVB/$?JJ/$i+2 word germsVBNw/VBDw/?i+2 word flankerWDTMҿINM?i-1 suffix ealVBT㥛 ?VBGnڿVBN^I +?DTMbFWuVտVBP +JJR?PRP$ʡEJJbX9?VBD= ףp= RBRVBZˡE?NNS#~j?NNPV-NNPSV-NNK7ѿWDTʡE?PRP r?RB}?5^I?INX9v?i-1 tag+i word POS waningVBG rh?NN rhͿ i word guileNNCl?JJCli-1 tag+i word NNS correspondedVBNSVBDS?i-1 tag+i word WP thinksVBZ(\?VBD(\i-1 tag+i word -START- lightsNNS?RBi-1 tag+i word NN primeJJ rh?NN rhi-1 tag+i word VBZ suppliedVBNS㥛?JJS㥛i-2 word fingeringNNjtJJjt?i word succeededVBNV-?VBDV- i-2 tag SYMJJn?NNPMDQNN+ۿVBDVBN?UH?i-1 tag+i word WDT collegesVBZ'1ZNNS'1Z?i word swollenJJX9v@VBN-NNi-2 word example VBPmտRBZd;O?VBv?NN +VBNQ?CDV-?VBZx&1?DTNNSS㥛VBGMbJJNbX9VBD1Zd?INbX9ȶi word shoutedVBNRQVBDRQ?i word freseniusNN rhNNP rh@i-1 tag+i word VBZ headquartersNNSnٿVBN$CӿNNI +?i word sorenessJJʡENNʡE? i suffix avaNN= ףp=ڿNNP= ףp=?i word hondurasNNSZd;?NNPZd;i word ominousVBZNbX9ؿJJNbX9?i+1 word partlyJJSMb?RBSMbi-1 tag+i word NN absorbVB\(\?RB|?5^NNMbi-1 tag+i word NN controversiesVBZZd;NNSZd;?i-1 word primitiveNNK?JJKi-1 tag+i word VBZ movingVBGZd;O?NNX9vJJzGi tag+i-2 tag NN )INQ?VBZV-NNSV-?NNX9vWDTQJJX9v?i+2 word assumingVBNClJJ^I +VBDNbX9?NNMbi-1 tag+i word DT affluentJJQ @NNQ i-1 tag+i word DT linearJJx&1?NNx&1i-1 word sundanceNNPS`"?NNP`"i-1 tag+i word VBD concernsNNSn?JJni-2 word influenceJJEVBZOnNNS#~jVBOn?NNPS#~j?NNE@i+2 word culturalVBG/$?NN/$i-1 tag+i word NNP pressNNPS/$NNGzNNPjt@i-1 word suggestingDTq= ףpRBy&1IN(\?i-1 word publicationWDTZd;NNˡEINZd;?NNPˡE?i-1 tag+i word CC onceRBQ?INQi-1 tag+i word NNP telepicturesNNPS +?NNP +i-1 tag+i word -START- catchingVBGx&?NNx& i-1 tag+i word -START- unwillingVBG/$޿JJS?NN~jtNNPV-i-1 word scandinavianNNPSMbNNPMb?i-2 word idealisticNNPS= ףp=NNP= ףp=?i-1 tag+i word VBN aidVBN+NN+?i-1 tag+i word RB liquidNNʡE?JJʡEտi-1 tag+i word JJS germanJJ&1?NNP&1i-1 word september RB;OnNNRQINZd;?JJ(\?VBZ\(\׿NNSX9vNNPSZd;OտVBG9v?CDZd;O?i-1 suffix gan VBGX9v@JJX9v?RBRzGRBHzG?NNSZd;ONNPy&1NNh|?VBDOn?POS+?VBZA`"?i word infamousJJ\(\?VBD\(\i-1 tag+i word DT incentiveNN#~j@JJmNNPK i-1 tag+i word JJ gerrymanderingVBG%CԿNN%C? i-1 word cbsVB= ףp=?NNPSS@NNʡE?VBPZd;OVBZMbX9NNSGzNNP|?5^i-1 tag+i word TO respondVB ףp= ?NN ףp= i-1 tag+i word NNP expectedVBNS㥛?VBDS㥛i-1 tag+i word JJ harborJJRZd;ONNQVBPV-?i-1 tag+i word PRP$ demonicJJl?NNl i+2 word seerJJ$C?NN$Ci word medicineNN?NNPi-1 tag+i word NN schemeNN/$?JJ/$i word sanfordVBNZd;ONNPZd;O?i+1 word chainsNN rh?JJ rhi+1 word participationJJ?VBCl?RBNNCli+1 suffix acyPRP$Q?NNPSL7A`ؿVBG}?5^I?NN ףp= JJ$C?NNP+i word perchesVBZtVNNPtV?i-1 tag+i word JJR lubricantNN~jt?JJ~jti-1 tag+i word `` plaidJJS㥛?NNS㥛i-1 tag+i word RBR intenselyRBK7?JJK7i+2 word projectVBP(\JJx?NNPjt?VBsh|?VBG?NN^I +?VBNffffffi-1 tag+i word PRP producedNNSZd;OVBDZd;O?i-1 word quietRBsh|?ſINsh|??i-1 tag+i word POS fundamentalJJMbX?NNMbXi-1 tag+i word DT furorNNʡE?JJʡEi-1 word petrieVBZ!rhNNPSS?NNSbX9POS!rh?NNPQ롿i word glasnostNN!rhFWn@JJSHzGJJ+NNSK7NNPMbXVBEi-1 tag+i word NNPS '''^I +POS^I +?i-1 tag+i word VBZ toursNNSCl?NNCl i suffix lopVBP/$?JJL7A`INZd;ONNSKNNP rhݿVB +Y@NNK7VBDKi-1 tag+i word JJ jazzNN{Gz?JJ+NNSQٿi+1 word queuesNNSJ +JJRJ +?i+1 suffix 988JJjt?NNjti+2 word stands IN1ZdNN7A`?PDTv?VBNx޿VBPClDTX9vVB{Gz?VBDx?WDT1Zd?RBMb?i+1 word southernVBS@RBZd;OJJQi word fallaciousNNS= ףp=JJ= ףp=? i suffix eraJJ~jtFWV-?NNPףp= NNPSOnNNw/@ i+2 word ever RBHzGINRQ?NNP+VBnNNA`" @JJRK DTRQNNSI +ƿJJw/RBRMbX@VBZx&1ܿ i-1 word areaINX9v?VB/$VBPX9v?RBx&?JJ/$i-1 word citizensNNxֿNNPx?i-1 tag+i word NNP projectNNPSX9vNNNNPʡE?i-1 word suggestsDTl?WDT/$NNFx?JJFxINS㥛?i word separatedNN(\VBNffffff?CDMb`RB|?5^ʿNNPB`"JJX9v?i-1 word continuesRB{GzIN{Gz?i+2 word livingIN/$?VBZSNNP1Zd?VB1ZdRP/$ٿNN-?JJ9v i suffix melNNPSKNNPK?i-1 tag+i word WP winsVBZMbX?NNSMbXѿi-1 tag+i word NN mistsVBZV-NNSV-?i+2 word mellowRBE@IN+DTGzi-1 suffix osaNNP|?5^?NNPS|?5^VBD㥛 ?VBN㥛 ڿJJ^I +VBZ^I +?i word perverseJJX9v?NNX9vi-1 tag+i word NN okJJd;O?NNPd;Oi-1 word mileageNNOn@NNPOni-1 tag+i word `` huggedNN}?5^IVBD}?5^I?i-1 tag+i word IN sufficientJJ;On?NN;Oni-1 tag+i word CD pcsNNSuV?NNuVi+1 suffix henVBN)\(?JJRZd;ODTV-VBJ +?VBDMbX9?NNS~jt?VBZ rhRBCl?CC}?5^IWDTGzNN"~j?VBP㥛 ¿JJX9vINNbX9?VBG= ףp=?NNPT㥛 RPV-@i-1 tag+i word CC caraJJ|?5^NNP|?5^?i-1 tag+i word RB forgettableJJ)\(?NN)\(̿i-1 tag+i word NN discoversVBZ(\?NNS(\i-1 word cognoscentiVBDMbX9?INMbX9ܿi-2 word dairyVBNB`"۹?VBDB`"۹i word expressedVBP)\(ԿNNS1ZdVBN1Zd@JJw/VBDV-?i+2 word illustrationVBy&1?VBPy&1i-1 tag+i word JJ developerJJjtNNjt?i-1 tag+i word JJ barriersNNSV-?NNV-i+2 word stuffNNSClJJCl?i-1 tag+i word VBZ unfoldsVBZ rh?NNS rhi word unconnectedVBNT㥛 JJ$C?VBDʡEi tag+i-2 tag VBP VBZNNx&1?VBN+?WDT5^I ?JJ9vIN~jt?DTnNNSA`"˿i-2 word scriptsVB/$NNS/$?i-2 word boringVBDˡEJJˡE? i-2 word heinNN-NNP-?i-1 word bringJJ(\ؿNN;On?INlqRB9v?RP1Zd @i-1 tag+i word RB representedVBNRQ?JJ&1VBD$Ci-1 tag+i word NNP adeptsNNS|?5^?NN|?5^ i word heavy RBSVBNuVJJRT㥛 UHI +JJ/$@VBZ㥛 NNSMbNN!rhNNPʡE?i-1 tag+i word NNP rightsNNPSV-׿NNS/$ӿNNP?i-1 tag+i word NNP influencedNNPMb?NNPSMbi-1 tag+i word WP haveVBQ?VBPQi-1 word requiredNNuV?RBd;O@IN9vVBG;OnNNSm?i word presaleNN5^I ?JJ5^I i-2 word shortageNN;OnJJ;On?i+1 suffix uldVBPzGaPRP|?5^?NNSMb@VBtV?CDS㥛NNPSK7?VBD|?5^WDTˡE}@FWQVBZK7A`DTHzG?NNPn@RBsh|??WRBJ +@IN{G:!VBGˡEVBNV-?JJd;OWP/$?NNPRQ?RBR%CEX|?5^? i word heroNN$C@VBDw/ܿRBR}?5^IVBNtVi-1 suffix iew NNPS㥛 ?VBDX9v?VBNX9vVBZMNNP㥛 ¿NNnVBP1Zd@WDTX9vINX9v?NNSxi+2 word munsellVBS㥻NNPS㥻?i-1 tag+i word NN northJJx?RB?5^I IN-i-1 tag+i word , lesserJJRv?JJvi word correspondentNNQ?JJQi-1 tag+i word NNS needingVBGʡE?JJʡEi word franklinNN$CۿNNP$C? i-1 tag+i word -START- excludingVBGy&1?NN|?5^NNPZd;߿i-1 word presentersVBP+?NNS+ i word alloyNNMb?JJ|?5^NNSjt޿i-2 word comingWDTV-?JJZd;INV-ݿNNSzGNNP5^I ?RB+?NNOn?i word timetableNNNbX9 @JJNbX9 i-1 word singin''Zd;O?VBZ#~jPOSffffffi-1 tag+i word VBD sentenceNNCl?RBCli-1 word patricofNNPS{Gz?NNP{Gzi-1 tag+i word CD boughtVBNK7NNp= ףVBDJ +?i-1 suffix cmpNNSx&1NNl@VBZ1Zdi-1 tag+i word NNS esbVBPw/NNPw/?i-1 tag+i word NNP leadingVBG9v?JJ(\?NNJ +i-1 tag+i word CC hearVB+VBP+?i+1 word intercollegiateVBGd;O?NNPd;Oi-1 tag+i word NNP enduredVBN9vVBD9v?i-2 word transcanadaDTB`"?JJ&1RB#~j?i-1 tag+i word IN quickviewNNX9vNNPX9v?i word smithsonianJJClNNZd;߿NNPʡE?i-2 word mistakesRBMbпINL7A`ؿJJ1Zd?WDTL7A`?VBNni-2 word capitalsNNZd;@JJMbпVBGMbX9i-1 tag+i word RB acceptableJJx?NNx i word warsVBZZd;OݿNNS7A` @NNlVBDQi-1 tag+i word VBG abandonedRPMVBNM?i-1 tag+i word NNP merieuxNNPE?NNPSEi word conflictNNSGzNNx&@JJX9vi-1 tag+i word CC scoffedVB+NNSQӿNNuVVBDDl@i-1 tag+i word NNP planVBPq= ףpNNx?NNPEؿi-1 tag+i word NN paperVBNClNNCl?i-2 word interestVBq= ףpNN#~jRBR&1VBZ9vRPK7A`@VBD'1ZNNSX9vVBPp= ףWDTE?NNPrh|?JJV-INl¿VBNoʡ@EXxƿRBMb@JJR rhJJSClVBGp= ף?i-1 tag+i word IN henleyNNPRQNNRQ@i word transferredVBDp= ףVBNm?JJS㥛i-1 word pierreNNy&1NNPy&1?i word perestroikaNNSbX9NN/$FWffffff@i-1 tag+i word -START- worthJJ7A`?IN7A`i word accidentNN|?5^?JJ|?5^i-1 tag+i word NNPS fundamentalRB-JJ-?i-1 tag+i word NN inadequateJJX9v?NNX9vi+1 suffix reoJJ"~ҿNNP%C?DTm?PDTv/NN"~?i-1 tag+i word PRP$ noseNNSGzNN/$?RBh|?5 i word fiascoVBZT㥛 NNT㥛 ?i-1 word uncharacteristicallyRB/$JJ/$?i-2 word division VBD?5^I ?INMbNNSMbX9NNPHzG?VBGX9vJJX9vNN/$?PRP$X9vVBNCl绿RB}?5^I̿VBoʡ?i-2 word easedWDTxINx?i-1 word electronicNNPSZd;?NNy&1?JJy&1NNPZd;׿i+2 word warsawVBZ/$VB/$?NNPSnNNPn?i-2 word floor RBjt?DT}?5^IܿVBbX9NNPSffffff?VBDPn?VBNK7VBP+η?INX9v߿NNPffffffi-1 tag+i word RB allowVBZd;O?RBZd;Oi+2 word pollsIN?5^I ?RB?5^I i-1 word incumbentVBZ;OnNNS;On?i-1 word centerJJ= ףp=?VBZGz?NNSp= ףNNP rhNNPSx&1?NNMbXi-1 tag+i word IN singerNNSGzJJR"~jܿNN/$? i word campVB+NNP5^I ?NN+?VBD5^I i+1 word bussieresPRP$lJJ\(\NNPA`"?i-1 suffix ssoNNPSQNNPQ?i+2 word esplanadeJJZd;?NNZd;Ͽi-1 tag+i word NN coinsNNSʡE?NNʡE i word ownersNNS|?5^NNP|?5^?i word councilMD&1NNSQNN(\?JJˡENNP?5^I ?i-1 tag+i word ) concernsVBZ(\NNS(\?i+1 word theoriesVBGMbX9?NNB`"۹VBNsh|?JJK@NNP+VBˡEi+2 word hortonVBQNNCl?NNP㥛 i-1 word edwinNNPST㥛 NNPT㥛 ?i-1 tag+i word IN malignantJJZd;?NNZd;i-1 tag+i word IN wheelsNNSCl?JJRCl i word glitzyNN?JJi-1 tag+i word DT halfheartedVBNJJ?i word prevalentJJ?5^I ?NN?5^I i word homoNNV-@NNPV-i-1 tag+i word `` engagedVBNʡEVBDʡE?i word plumbingNNV-@JJ/$VBGףp=  i word layoutNNT㥛 ?VBDT㥛 i-1 tag+i word POS crackdownVBrh|NNrh|? i word quipsVBZףp= @INh|?5NNSK7NNPzGʿi-2 word pipedVBGjtNNjt?i-2 word licensesINzGWDTzG?NN|?5^ڿNNP|?5^?i-1 tag+i word IN predictiveJJ~jt?NN~jtӿi word abolishedVBNMb?JJZd;VBD;On?i-1 tag+i word CC psychiatricJJCl?NNCli-1 tag+i word CC occurredJJSVBDS?i-1 tag+i word TO chargesVB;OnNNS;On?i-1 tag+i word POS memorabiliaNNSffffff?NNffffffi-1 tag+i word NN twistedJJq= ףp?VBDq= ףpi-1 tag+i word JJ stuffNNʡE?RBʡEi+2 word boughtNNPSV-?NNv?CD?JJNNSV-NNPvϿi-1 tag+i word NNP resumedVBNX9vJJKVBDzG?i-2 word equationVBZ!rhNNSZd;?NNV-i tag+i-2 tag , VBNVBN9vʿVBZ333333@VBʡE?VBGh|?5?CC㥛 ڿNNPSZd;ONNtVVBDK7VBPMb?EXV-?DTV-?IN+?NNSbX9ȶ?NNP;OnRBʡEPDT`"?JJ333333i-1 suffix sasVBPJ +JJuV?NN rhͿ i+2 word flatRB?NNQ?VBDK7JJK7?NNSffffff?NNPQοNNPSi+1 word weeksJJFx@VBG-NNStVi-1 tag+i word PRP acrossVBZQINQ?i-1 tag+i word JJ muscleNNK?JJKi+2 word persistsNN`"?JJ`"i-1 tag+i word RB subsidizesVBZffffff?JJffffffi-1 word sullivanNNSuVVBZuV?i-1 tag+i word JJ yenNNSS㥛?NNS㥛ؿi+1 suffix maeNNPv/?NNbX9CDV-i+1 word referencesWDT)\(IN)\(? i-1 word baseVBGV-JJDl?NN^I +@RBx&VBZQNNSK7ANNPX9v@i-1 tag+i word NN fadedVBD/$?VBN/$i+1 word playwrightJJʡE?NNS㥛NNP$Ci-2 word avenueRBR|?5^?JJ9vVBʡEտRBA`"i-1 tag+i word DT recurringVBGCl?NNCli-1 word rumorsWDTw/IN|?5^@DTCli-1 word successJJˡEIN~jtпVBZ +?NNS"~ʿRB333333?CC~jt? i word carterNN)\(NNP)\(? i word statedJJʡEͿVBN= ףp=@NNZd;VBD7A`i-2 word slatedVB(\?NN?JJGzi-1 tag+i word VBZ cutJJ#~jVBN#~j?i-1 tag+i word VBD pressuredNN)\(@VBD rhVBGK7ѿVBNZd;i word whicheverWDT-?NN- i-1 word suchNNPS-VBGnٿNN rhPRPT㥛 VBD~jtINy&1?VBNʡE?CD9vVBZ/$NNPPnJJ^I +@VBP\(\RBʡENNS/$@JJR{Gz i+1 suffix mxJJGz?NNnFW7A`ڿi-1 tag+i word CC spanishJJx&1NNPx&1?i-1 tag+i word DT lincolnJJ$CNNP$C? i suffix ulkNN|?5^?VBPjtֿJJM?DTx&NNS/$VB(\i+2 word aetnaIN/$?JJRx&1?RP/$NNsh|??RBRx&1VBNZd;O?JJx&1i-1 tag+i word RB knitVBDV-VBPL7A`VBNK7? i word burnVBzGڿVBPx&1@NNSClNNV-i word recommendVB-?VBP-޿i-1 tag+i word DT girlsNNS$C@NN rJJ)\(i-2 word synthesisNN"~?JJ"~i-1 tag+i word CC soldVBd;ONN333333VBN?JJ!rhVBDT㥛 @i-2 word korotichNNʡE?JJʡEi-2 word marcosesVBNZd;?JJZd;Ͽi-1 tag+i word , pleaseNNuVVBuV?i+2 word involvingVBGK7JJ~jt?NNʡEVBN"~?i-1 tag+i word DT facultyNNSNN?i-1 tag+i word , tasteNNV-?JJV-i-1 tag+i word NNS relyVBPl?RBli-2 word maverickJJffffff?NNPffffffi-1 tag+i word -START- lebanonNNtVNNPtV? i+1 word yesNNPClVBy&1?NNʡEUHT㥛 ?JJy&1i+2 word usersDT+߿WDT+?JJRK7A?RBRK7Ai-1 tag+i word NN employedVBN-?NN- i suffix yaVBZ;On¿VBP333333PRPףp= ? i word mildewNNSh|?5NNh|?5?i-1 tag+i word JJ budgetaryNNMJJM?i+2 word massedJJ?5^I NNP?5^I ?i+1 word manualsNNn?JJˡENNP/$ٿi+2 word targetsNN&1JJHzGѿVBGQ?i word respectiveJJQ?NNQ뱿i-1 word motherJJ/$?NN/$i+1 word statisticsNNSMbX9?JJK7A?VBG+?RBZd;ONN+i-2 word createsJJR'1ZܿRBRjt?NNjti-1 tag+i word VBG fixedNNQVBN rh?JJMbi-1 word ailingNN9vNNP9v?i-1 tag+i word , closingVBGbX9@NNbX9i-1 tag+i word CC smellyRB|?5^JJ|?5^@i-1 tag+i word NNP gripesVBZx@NNSNN ri-1 tag+i word , thatDTA`"?INjtĿVBPWDT333333@RBd;OWPxi-1 tag+i word , hellsNNSx&1̿NNPx&1?i+2 word concedeJJL7A`NNP$CVBZ~jtNNS~jt?NNMb?i-1 tag+i word RBR costJJL7A`NNL7A`?i-1 word inducesVBG+@NNvJJDli+2 word deflectVBZK7A`NNSK7A`?i-1 tag+i word VBP positionedVBNbX9VBDbX9?i-2 word quiteVBN;OnJJuV?PRP rhѿNN{Gz?i-1 tag+i word JJ discontinuedVBNV-ݿJJ/$?NN'1Zi-2 word phasesVBNV-VBDV-?i+2 word ghostsNNS㥛 ?VBN㥛 JJ㥛 VBD㥛 ?i-2 word borrowersRB~jt?IN~jti-2 word codpieceVBZX9v?NNSX9vi-1 tag+i word NNS witchVBx&NNx&?i-1 word surgedRBRp= ף@JJRp= ףi+1 word later JJ;On INffffff?DTKVBGףp= RBV-@VBNX9v?WDTffffffNNS rh?NNPtVNNS@VBDX9vVBPA`"ۿi-1 tag+i word DT collectiveJJ5^I ?NN5^I i-1 tag+i word NN sillyJJA`"?RBA`"˿i-1 tag+i word NNP penneyNNGzNNPGz?i-2 word speculativeVBNtV?VBDtVοi+2 word implicationsDTv/PDTv/?i+2 word resolvedNNx&1?JJx&1i-1 tag+i word , softerVBPSJJR/$?JJ9vڿi-1 tag+i word `` tsunamiNNQ?FWV-VBNmi-1 suffix oalNNSd;O?VBDd;OWDT/$?IN/$i+2 word gosplanVBN+?VBD+߿i-1 tag+i word CD passedVBNq= ףp?VBDq= ףpi-2 word pentagonJJRQ?VBPZd;OVBNp= ףNN&1ڿi-1 word crashVBNh|?5VBDh|?5?i+1 suffix lsePRP$~jtNN-@VBD\(\?VBN\(\CDd;ONNP&1ҿi word essentiallyRBV-?INV-i+1 suffix ugsJJL7A`ؿNN`"?VBNRQi-1 tag+i word IN hassanIN+NNP+?i-1 tag+i word RB plantedVBNV-?VBDV-i-1 suffix eloVBZv/?NNSv/RB-?VBD-i word felliniVBSNNPS?i-1 tag+i word VBZ voiceNNSK7NNK7?i-1 tag+i word DT caseNNV-?NNPV-i+1 word faltersJJL7A`NNL7A`?i+2 word idealsJJMb?NNMbi+1 word marshDTX9vINX9v?i+2 word coachNN/$NNP/$?i+2 word excitingVBZd;O?JJZd;Oi-1 tag+i word , hangingNN\(\߿VBG\(\?i-1 tag+i word PRP issueVBHzGٿVBPHzG?i-2 word spotlightVBN?JJlVBDMbX9Կi-1 word primarilyVBDQVBNK7A@RBx&1INx&1?JJ/$ i+1 word armyNNPJ +JJDl?NN#~jĿi-1 word bowlsRB?5^I ?NN?5^I i-1 word refusedRBV-?JJV-i-1 tag+i word CC waitingVBGPn?NNPni-1 tag+i word NN convertibleJJV-NNV-?i-1 tag+i word JJ brooklynNNnʿNNPn?i word geraldoCC1ZdNNPSNbX9NNP?5^I ? i suffix ttoNNPJ +?NNx&JJ-CD#~jԿi-1 word expensesVBN9v?JJ(\VBDʡEINh|?5@VBPjti-1 word bookingDTClJJ +?NN/$ۿi-1 suffix olnNNS)\(NNףp= @NNPV-NNPS"~j̿i-1 tag+i word JJ voluntarilyNN1ZdNNSh|?5RB?i-1 tag+i word NNS wingsMD +NNS +?i-1 tag+i word PRP tenderedVBDGz?VBPGzi+2 word rogersVBDV-@VBNMڿJJ^I +NNP&1i-1 tag+i word NNS imposedVBNS㥛?JJClVBDZd;O i suffix TipNNPK?CDKi-1 word capacityJJZd;FW~jtVBZOn?INZd;?NNSQ i suffix popVBPq= ףp?NNSZd;ONN?JJ%CVB'1Zi word mileageNNPOnVBHzGNNffffff@ i word tashiRB+NNP+?i-2 word greensJJ%C?NN%Ci-1 word scoresIN+?JJ+i tag+i-2 tag , VBVBG!rhVBD!rh?VBPp= ףWDT#~jVBK @RBRbX9NNS`"?PDTmͿJJ^I +JJRbX9?IN9v?NNPQNNx&?FW?UHS㥛?RBvDT^I +i+1 word illustrationVBGB`"?JJB`"i-1 tag+i word , addedVBN{GzVBD{Gz?i-2 word singleVBD1Zd?RBRX9v?JJRX9vVBNV-JJS㥛?RBʡEi-1 tag+i word TO teamsVBMbNNSMb? i word daNNP|?5^?NNJ +?JJ-IN9vi-1 tag+i word DT ratNNx?JJxi-2 word traitVBNV-INV-?i-2 word private VBv/VBN?JJ +IN/$VBP\(\?VBG rhNNSʡERPnRB1Zd?NNZd;OVBDMb?i tag+i-2 tag WRB VBNCC^I +JJ^I +?i+2 word appleIN"~?VBZDl?NNSDlѿNNP rh?JJPn?NNRQPDT rhRB"~i-1 tag+i word IN precisionNNS333333NN333333? i word scenesNNS;On?VBZ;Onҿi-1 word occurJJ+IN+?i-1 tag+i word JJ pipeNNSffffffNNffffff?i-1 tag+i word WDT tradesVBZ"~j?VBP"~ji-1 tag+i word NNP heldVBNVBD?i-2 word chanceNNSKVBK7?VBPNbX9?VBGJ +?NN~jti-1 tag+i word NNP confereesNNS&1?NN&1i-1 tag+i word DT tightJJDl?NNDli+2 word brieflyNNB`"?JJB`"i+2 word preserveRPV-?VBNxֿRBVBDx?INX9v߿i-1 tag+i word DT panasonicNNP{Gz?NN;OnJJI + i word tavernNNV-?JJV-i-2 word monsieurNNS rhNN?RBT㥛 пi+2 word disorderlyVBN㥛 ¿VBD㥛 ?i-1 tag+i word : advisedVBNʡE?JJʡEÿ i word amgenRB9vNN7A`NNPQ?i-1 suffix lty NNPS/$VBGOn?NN`"?JJ?VBZsh|??NNPQRBZd;ORBRNNST㥛 ?i-1 suffix gnsPOSx&1''x&1?VBP-WDT333333IN333333?NN-?i+1 word defectsRBffffffNN7A`@JJ;Oni-2 word perplexingDTp= ףINp= ף?i-1 tag+i word JJ probingVBG5^I ?NN5^I i+1 suffix kkaJJQ?NNP"~NNS rhͿi-1 tag+i word `` belleJJ+FW+?i word steadinessJJRV-ҿNNV-?i-1 tag+i word NNP patersonNN ףp= NNP ףp= ?i-1 tag+i word DT butterfatNN&1?JJRZd;OJJy&1 i word tomNN5^I ۿNNPS@DTSWRBQPRP$5^I i-1 word replacedRBRB`"ٿRBx&1DTˡE?i-1 word databaseNNS;OnNN;On?i+1 word traitsJJ"~j?RB"~j i+1 word blocVB rhJJbX9H@NNp= ףNNPʡE%i-1 tag+i word -START- administrationNN/$?NNP/$i-1 tag+i word CC gemsbokNNSS㥛?NNS㥛i-1 tag+i word NNS lagNN(\@RB{GzNNPGzi word wantingVBGn?NNni-1 tag+i word , demandsVBZ'1Z?NNS'1Zi word persecutedVBNZd;?JJZd;߿i-1 tag+i word RBR affectedVBNʡEJJʡE?i word aspectsNN|?5^NNS|?5^?i+1 suffix yokMDHzG?WRBHzGJJHzG?NNHzG i word themesVBZK7NNS)\(@NNA`"RB+i word normentNNNNP?i word politburoNNS"~NN;OnҿNNPB`"?i+2 word apartheidJJuVFWDlRBuV?VBNDl?i word brethrenNNSX9v@NNX9vi-1 tag+i word IN agricultureJJʡENN?5^I NNPV-?i-2 word capital VBKNNPSS?VBDy&1?VBNy&1RB/$IN/$?JJClNN~jt?VBP rNNSQ?NNPʡE?i-2 word forcesVBN+?VBD+ i word liftsVBZףp= ?NNP333333NNST㥛 ?NNT㥛 пVBD ri-1 tag+i word IN derivativesVBZ rNNS r?i-1 suffix eir RBT㥛 JJS(\?RBS!rhJJS?NNPSjt?VBG rh NNsh|?@VBDjtVBN~jt?JJR/$?NNS rh?NNP+ i-1 tag+i word -START- genentechWDTJJPnNNbX9?NNPV-? i-2 word epaVBK7?RBv/?JJv/տNNK7ѿi-1 tag+i word NN exposingVBG/$?NN/$i-1 tag+i word WDT engageNNSVBPS?i-2 word cautionedEX{Gz?RB{Gzi-1 tag+i word VBZ wildVBPffffffƿJJffffff?i-1 tag+i word , applyVB;On?VBP;On¿i-1 tag+i word DT approximateJJm?NNm i-2 word hitsVBPClVBNSVBDL7A`?i+1 word basesNNʡE?VBDoʡVBNS㥛?JJw/NNSˡE?NNPmݿi-1 tag+i word IN premiumsNNSI +?NNI +i-2 word teodoraniNN-?CD-i+1 suffix derNNPjtVBDl?NN|?5^?VBN}?5^I?WDTy&1?JJRDlRPHzG?DT%C?NNPSZd;OVBD~jth?INd;O?VBZB`"۹RBx&1WPFxCDw/?VBG`"?JJDl@NNSS?RBRDlVBPsh|?UHK7Ai word reconsiderationNNQ?NNPQi word reorganizesVBZK?VBDKi+1 word sedanJJT㥛 ?NN~jtVBD i suffix FewINV-NNS-NNPMbJJGz@NNL7A`пPRP\(\RB-i+1 word randomlyVBN|?5^JJ1ZdVBDzG?i-1 tag+i word DT progressNNMb?JJMb i suffix yteNNSjtRBzGNNv/?NNPˡEJJ +?i-1 tag+i word VBG mixedVBNV-JJRtVJJK7A?i+1 word campaignsJJM?VBGI +VBNMNNI +?i word beneathVBjtINv?RP)\(ܿNNPMbX9ܿi word whimsicallyRBMbX9?JJMbX9ܿi word compellingJJ&1@VBG&1i-1 tag+i word , blockingVBG1Zd?NN1Zdi-1 tag+i word RB leadsVBZ~jt?VBD~jti-1 tag+i word VBD allayedVBN/$?RB/$i-1 tag+i word NN leasingVBGGz?NNGz޿ i word routesVBZ`"NNS;On@NNK7A`i-1 word branchesRB&1?IN&1i-1 tag+i word , fla.RBʡEۿNNPʡE?i-1 tag+i word VB oilNN5^I ӿNNP5^I ?i word brisklyRB~jt?JJSݿINh|?5 i-1 suffix ohNNS1Zd˿UH1Zd?i+1 word competitionJJ5^I VBZuV?VBʡEVBGףp= ?NN;On?VBDL7A`堿VBNn?JJRli-1 tag+i word DT dangerNNS1ZdRBRRQNNB`"?i word agriculturalVBA`"ۿNNSףp= JJNbX9?i-2 word superiorityRPMbXRBMbX?i+1 word castigatingRPףp= ?INףp= i word knowVB^I +?NNV-VBDx&VBNoʡVBPE@VBZrh|NNSNbX9i-1 word shareholderVBGsh|?NNsh|??VBDE?VBNEVBZ/$NNS/$?i-2 word nothingVBNZd;O?CDJJ&1INRQ?DTzG?VBB`"?NN/$?PDTGzi word epicenterNN(\?JJR(\ i word ncaaNNPS?NNPSV-ͿRB'1Zi+1 word developersINh|?5?NNʡE@VBG rhRBh|?5JJ"~i-1 word seizuresVBNh|?5VBDh|?5?i+1 word things VBGV-?NNZd;OWDTZd;OտINL7A`?JJZd;?RBRClJJRCl?EX rRBffffff?i+1 word spentVBZ|?5^NNS|?5^ѿNNPGzNNPSʡE?VBDHzG@VBNZd;CDT㥛 i+2 word watchRPE@JJy&1@NNxRBL7A`INQVBG|?5^i-1 tag+i word TO addressVB?5^I ?NN?5^I i-1 tag+i word ( lindensNNPSp= ף@NNSPnJJx&1NNPtVi word videocassetteVBZnNNn? i suffix ORTVBNV-JJFxٿNNPq= ףp?i tag+i-2 tag PRP -START-PDTX9vVBPy&1@INV-RBw/@NNmͿVBDV-߿DTmCD%C?VB!rhPOStV?VBN}?5^IܿVBZ{GzNNST㥛 MD/$?RBR㥛 JJGzi-1 word associatesVBNB`"ɿVBDB`"?i word fictionNNM?JJMi+2 word closelyNNh|?5?RBNbX9?VBZNbX9VBQVBGZd;?i-1 tag+i word NNP homeNNJ +?NNPx&1?NNPS^I + i-1 word ateNN/$?NNP/$i-2 word !HYPHENRBQPOS^I +?RP ףp= ?''(\DT/$IN%C?MDn?JJRQ?VBGS㥛PRPZd;NNPS?CCClVBNw/ԿNNSoʡ?RBR"~j?VBD rhJJMbXVBZ'1Z?NNʡE?FWS?WRB ףp= ׿VBP ףp= WDTK7AؿCD"~@NNPSMbX9@VB!rh?JJS rhi-2 word owningVBGK7?JJR/$?JJK7RBR/$i+2 word covasNN-NNP-?i-1 tag+i word VBD eitherCCZd;O?DTffffffJJRS㥛RBV-?i+1 word businesslikeRBy&1?JJy&1i-1 tag+i word JJ recoupVBQ?JJQտ i+1 word bondNNx&ѿCD rh?WRBw/JJd;OVBN/$@JJRzG?VBA`"?RPffffff?RBSxRBZd;DTVBDnڿINOn?NNP|?5^i+2 word exchangedJJ'1ZNNP'1Z?i-1 word borneRP/$?RB/$i-1 tag+i word NN failedVBNx&1JJbX9?VBD|?5^?i-1 tag+i word JJ workingVBG(\JJ\(\@NN/$i-1 word measuresNNPS +?VBDbX9޿VBNbX9?WDTuVRB"~j?INHzG?NNP +i word plungingVBG\(\NN\(\?i-1 tag+i word PRP$ specializedVBNT㥛 ?JJT㥛 i word presumablyVBZ5^I RB5^I ?i-1 suffix ety NNPSX9v߿NN(\¿NNPX9v?VBy&1̿VBNV-?VBPV-?WDT$C?JJV-׿DT$Ci-1 tag+i word PRP$ stalwartJJbX9?NNbX9i word gesturesVBZPnؿNNSPn?i word securityNNPV-?VBZʡENNS㥛?JJ/$i-1 tag+i word DT predecessorJJ^I +NN^I +? i-1 suffix edNNPS= ףp=NNP= ףp=?i word melaninRBS㥛NNSS㥛NNd;O?i-1 tag+i word : guaranteedVBD-ƿNNPSݿVBNx&JJ|?5^@i-1 word sessionJJףp= VBDףp= ?RBK7A`@INlNNS~jtRPˡEi-1 tag+i word -START- arnoldJJHzGNNPHzG?i-1 tag+i word WP$ !HYPHENJJn?NNni-1 word natickNNPx&?NNx&ٿi-1 tag+i word RB riskingVBGMb?JJMbi-1 tag+i word VB higherRBRGz?JJRGz i+1 word pcbsJJNbX9?NNNbX9i word abandonsVBZʡE?RB+VBD#~ji+1 word supervisionVBNPnпJJPn? i+1 word topsVBPV-NNS?VBD333333ۿi-1 tag+i word IN longVBZffffffJJS+JJmRBsh|? @IN!rh i word manNNPSw/NNZd;O@NNPjti-1 tag+i word DT overcapacityVBZI +NNI +? i suffix nikJJ"~jNNGzFW|?5^:@i-1 word installationsVBPK7AVBN`"?NN1Zdۿi-1 tag+i word TO dalkonVB"~NNP"~?i-1 word callsVBGMbNN~jt?WDTClINCl?VBZzGڿVBSi-1 tag+i word NNPS snapVBPv/?VBDv/ i-1 word mineNNSʡENNPMNNPSM?NNʡE?POS"~j?VBZ"~j̿ i-2 word wellVBZ1Zd?RB$CNNS= ףp=?DT9v?VBG#~j?PDTd;O?VBN&1?UH`"WPV-?INp= ףNN(\JJKVBP/$?WDTJ +VBV-߿i-1 tag+i word VBD treasurerJJQNNQ?i-1 tag+i word IN oxygenNNSS㥛NNS㥛? i pref1 2 VBPT㥛 JJ~jt@NNSENNS㥛DVBNGzCDףp= !@NNP)\(VBʡERBK7i-1 tag+i word NNP signedVBDS?VBP\(\VBN"~ji-1 word becausePRP$V-?VBN'1ZNNS&1VBGGzJJSoʡ?PRPV-VBPQJJ/$NN"~?RBSoʡݿEXMbX?JJRZd;?RBQ?NNPjt?i-2 word biographerNNPSQNNPQ?i-1 tag+i word JJ sunbirdNNSNNPS?i word contemporaryVBP+JJ @NN-VBy&1i+2 word mastersonJJSNNPS? i-1 word cash FWX9vIN rh?RBVBZOnNNS/$@JJ/$NNm?VBD/$CCv?VBN/$?i-1 tag+i word RB updatingJJ/$VBG/$?i-1 tag+i word CC testNN)\(?JJSGzJJRMbJJPnؿi word competitorNNsh|??JJsh|?i-1 word congress RBDlVBZV-?DT/$NNP+VBHzG?VBP r?WDT/$?INMbX?NNS-NN)\( VBDOn?i-1 word creepingRPmRBm? i-1 word ronNNPSMbNNI +ƿNNP5^I ?i-2 word posingJJA`"?NNPA`"i-1 suffix gidNNA`"?JJA`"i-1 tag+i word -START- whereasRBʡEJJ(\IN$C?NNSuVͿi-1 tag+i word PRP$ soggyJJA`"?NNA`"i-1 tag+i word DT dataNNSh|?5NNh|?5? i word ralphJJd;OUH= ףp=NNS㥛ܿNNPbX9@i-2 word progressingJJR`"RBRd;O?JJ= ףp=i-1 tag+i word , remainsVBZQ?VBDQi-1 word forerunnersVBNMbпVBDMb?i+1 suffix nzyNNrh|?JJrh|i-1 tag+i word , contributedVBNClJJzGVBD1Zd?i-1 tag+i word CC jointVBZZd;OݿVB#~jJJ +@NNi+1 word affordabilityVBZA`"VBPK7A`ſVBD= ףp=?i-1 tag+i word DT backhoeJJx&1NNx&1?i-1 word nationwideJJMNNM? i-1 word milkVBNI +@NNZd;VBDq= ףpi-1 tag+i word VBD fitJJGz?RBRGzi-1 tag+i word DT rivieraNNPSOnNNPOn?i-1 tag+i word DT pickupNNV-?JJV-i-1 tag+i word NNP carsNNPS= ףp=@NNP= ףp=i-2 word milanNNPSPnNNPPn?i-1 tag+i word VBN beforeNNQVBN+IN rh?RBn@RBR +i+1 suffix hthVBNvϿJJv? i+2 word bankNNPSv/?IN5^I ?VB= ףp=?JJRV-VBPL7A`WDT&1VBGV-JJffffffNNףp= VBNKVBDECCZd;O?RB(\NNSn@NNP333333@i-1 tag+i word JJ affidavitsNNS`"?VBZ`"i-1 tag+i word NNPS reportVBP-ֿNNP-?i+1 suffix iet WDTA`"RBp= ףINrh|?JJ(\VBNZd;?VBDV-?CDNbX9?VBPMb?NNPNbX9ؿVBnҿNNw/i+1 word responsibleNNp= ף?VBD ףp= RBR r?JJRCDp= ףRBI +?VBZl?NNS7A`i-1 word leakingJJh|?5VBNS?NN ri-1 tag+i word NNP sheddingNNzGVBGzG?i-1 tag+i word -START- completeVBZV-JJV-?i+2 word tacticsJJ+?RB+ i-1 word ricaVBZMb?NNSMbi-1 word olympicNNPSZd;ONNPZd;O?i-1 tag+i word DT crushNNK?JJ~jtCD?5^I i word adviseNNrh|VBrh|?i word enemiesNNPSh|?5NNSh|?5?i-1 tag+i word WDT processVBZClɿVBPCl?i+1 word unemploymentDTrh|JJM@NN + i+1 word care NNw/VBZS?NNP!rh@VBMb?RB㥛 ?VBPZd;OJJClIN\(\NNSd;Oi word photographsNNS}?5^I?IN}?5^Ii-1 tag+i word RB longerNNʡEۿRBR ףp= @JJRL7A`JJClVBˡERB rh@i+2 word marriedDT~jtпNNS;On?PDT~jt?JJR;OnRBPn?INPni word concludedVBNPnJJuVVBDQ@i-1 tag+i word DT yearlingVBG$CJJMb@NN|?5^i-1 tag+i word VBD easierNNzGRBR rh?RB/$?JJRV- i+1 word moreRB @NNI +RPRQJJR#~jVBGMbX?FWףp= NNSRQVBDNbX9@WDTQVBZ(\@VBp= ף@VBNˡEVBP rh?INK?NNPn?NNPSZd;OCDI +?PRPZd;?JJ/$ DTrh|i-1 word seldomVBK7?VBPZd;O?CD5^I i-1 tag+i word IN maintenanceVB9vNN9v?i-1 word another VBDy&1|?VBNNbX9?VBZ%C?NNPVBGnJJffffffNNCl@RB+?NNSSi-1 tag+i word CC securitiesNNPSnNNPn?i-1 tag+i word JJ dreamsVBZ333333?NNSClNN$Ci word expressingVBG +?JJ +޿i word squabbleNNGz?JJGzi-1 tag+i word PRP$ japaneseJJ&1?NNP&1ڿi-1 tag+i word VBP skywardRBK7?NNK7ѿi+1 word tasteJJRʡE?NNʡEi-1 tag+i word -START- mothersNNPMbXѿNNSMbX? i word across RPL7A`@NN9vVBDʡEVBPMbX9IN(\"@DTףp= VBV-JJR#~jVBN|?5^ҿJJ~jtVBZQNNP&1RB-i word nonvirulentJJ rh?NN rh i-1 word zetaVBZZd;?NNSZd;VBNw/?VBDw/i-1 tag+i word NNP struckNNˡEVBDˡE?i+2 word telerateNN~jt?JJp= ףNNPʡE i suffix ULDMDZd;?VBPV-ͿNNPS ףp= i-1 tag+i word IN targetsNNSʡEVBZʡE?i-1 tag+i word : rowVB/$ÿVBP333333NNjt?i-1 word speculationWDTPnRBJ +ٿIN\(\ @DTV-VBDx&1VBNx&1@ i-1 word humRBS?INS i suffix WHYWRBףp= @WDT ףp= NNsh|?ݿNNP +i+2 word warnedNNPSL7A`VBNlJJl?NNPL7A`@i-1 tag+i word NN durableNN1ZdJJ1Zd?i-1 tag+i word NNS startedVBN^I +߿VBD^I +?i-1 tag+i word DT kennedyJJRQNNPRQ? i word liesVBNS㥛ؿVBZK7@NNSQ NNh|?5RB%Ci-1 tag+i word , truckingVBGsh|?NNsh|??i-1 tag+i word JJ backRB7A`@NN9vVBNv/RP|?5^ѿi-1 tag+i word JJ entrepreneursNNSjt?NNjti+2 word charlesVBNʡERBʡE?RP5^I NN/$?JJZd;? i+1 word jaysNNPSoʡNNPoʡ?i-1 tag+i word , couchingJJRQVBGRQ? i word shrugsVBZ= ףp=?VBD= ףp=i+1 suffix visVBPPnNNPPn?i word overhaulNNK@JJ1ZdNNPA`"NNPS/$NNS333333i-1 tag+i word CD thousandNN333333CD333333? i word witterRBRX9vNNPX9v?i-1 tag+i word NN storeVBZףp= NNGz@JJClRBM¿i-1 word zealandNNMb?VBG/$RBh|?5JJ+ηi+1 suffix iseRBSPnVBP+?INT㥛 DTClNNS?VBHzGJJ9v?CC rhNNPn?VBDsh|?JJS'1Z?WDTT㥛 ?VBZQPOSK7A?JJRA`"VBNB`"۹RBS?VBGS㥛NNuVRBRS?i-1 suffix lue WDTPn@DT/$޿NNPSHzG?NNHzGVBDX9vVBNHzG?JJHzGINS㥛VBZS?NNSZd;ONNPI +?i-1 tag+i word PRP talkVB'1ZVBPjt?VBDSi-2 word reopenedNNSRQ?JJRQi+1 word arguesJJ9vNNsh|?ſNNPV-? i word j.d.NNPQ?NNPSQi word mandatoryVBffffffJJ-F@NNʡEPRPQ i word wrathNNSV-NNV-?i+2 word reboundedRBq= ףpNNSX9vJJMbX@i-1 word mainlyVBNQJJZd;OݿVBD㥛 ?i-1 tag+i word DT advanceJJ9v@NN9vi+1 word herslyJJ{GzNNP{Gz?i+1 word couldWDTZd;?INjtVBGV-NNPA`"?WRBB`"?NNbX9 @VBD ףp= VBNjt?VBq= ףp?NNPSnNNS"~@VBZV-RBMbX?VBPffffffJJ(\ DTMb?CD!rh̿i word clobberedJJ rhVBDˡE?NNS +οVBN rhѿi-1 tag+i word NNP moveVBףp= ۿVBP|?5^NNʡE?VBDZd;׿ i suffix awaVBZ~jtNNQοNNP/$? i suffix SPsNNPS/$@NNS= ףp=?RBClNNd;ONNPq= ףpi-1 tag+i word -START- besidesNNPMbINS㥛@NNS}?5^IRB~jti-1 tag+i word NNP licensesNNS-?VBZ- i word saysNNP ףp= NNPSuVCDsh|?RBSVBZGz@NNS/$i-1 tag+i word NN testifiesVBZ\(\?NNS\(\i-1 tag+i word NNP dealersNNPS;On?NNP;On i word hobbyNNPQNNQ?i-1 tag+i word JJ integrationNNK7?JJK7i-2 word horizonsNNS㥻?JJS㥻 i-1 word yearVB= ףp=RBR/$@CDCl?NNPjtNNPS/$VBG-VBPPn?VBN ףp= ?INV-RPʡERB"~j@NNtV?VBDCl?CCnJJ rNNST㥛 POSV-?WDT(\ȿVBZDlJJR|?5^i-1 tag+i word JJ stepNNS!rhNNHzG?JJ rhi-2 word vaguestVBGRQ?NNRQ i-2 word agipRP'1Z?IN'1Zi-1 tag+i word DT strikingVBGQJJFx@NNv/i-1 tag+i word JJ bureauNNSMbX9NNI +NNPOn?i+1 word accessibleNNn@JJlNNP&1i-1 tag+i word JJR premiumNNGzJJGz?i+2 word aroundVBZZd;׿VB|?5^?VBDV-?POSnJJx&1?NNrh|?VBP+ηVBN%CRB+?NNP!rh NNPS&1@NNS"~ڿJJSffffff?RP)\(MD\(\?VBG'1Z?INffffffi+1 word forecastVBNRQ?JJRQ?JJRQINx&ٿDTx&?NNPS?RBS˿NNQi-1 tag+i word NNP slipVBP?5^I ?VBD?5^I i word noticiasNNS㥛 NNP㥛 ?i-1 tag+i word CD octelNN/$@NNPSCC i word loadedVBN/$?JJx&?NNtVVBDuV i-1 word withVBP333333DT-@VBA`"PDTRQ?CD{Gz?JJRJ +?RBR-?INGzPRP$= ףp=FWDl?WDT1ZdJJOn@PRP= ףp=?CCrh|RBSp= ף?NNPS\(\?VBGV-NN7A`?VBDh|?5RB;OnNNSZd;O?NNP)\(@JJSp= ףVBNX9vVBZrh|i+1 suffix atyJJ5^I NN?NNPjt? i-1 tag+i word PRP$ shipbuildingNN\(\?VBG\(\ i+2 word linkJJCl?RBCli-1 tag+i word CC deadlinesNNSbX9?VBZ~jtVBˡE i suffix hefVBZHzGNN"~?JJʡE i word libyanJJ{Gz?NNP{Gzi-1 tag+i word VBG expectedVBNnJJzG?VBDjt޿i+1 word intenseNNJ +?JJJ +i+1 word pressJJףp= @NNS㥛NNPQNNPSuVi word promisingNNMbXVBGV- JJA`"@i-1 tag+i word IN tripledVBNtVJJ-VBDCl@i-1 tag+i word NNP whackerNN rh?WP rhi-1 tag+i word VB lincolnNNP ףp= ?RB ףp= i+2 word enteJJ'1Z?NNP'1Zi+1 word penneyVB ףp= VBNKNNP^I +?i-1 tag+i word NNS profitablyNNSX9vRBX9v?i-1 word protectedNNV-?JJV-i-1 tag+i word NN turbanNNMb?JJMbi-1 suffix eosFWS㥛?NNPS㥛i+2 word weddingNNV-?JJV-ڿ i suffix eftNNMbX?VBDjt@UH rNNPMbVBP-VBZ|?5^NNSMPRP9vVBp= ףVBNjt@RB rȿIN+JJuVJJRi+1 word localesJJSm?RBSmi-1 suffix rgsRBoʡINoʡ?i-1 tag+i word : shoemakingVBGPn?NNPni-1 tag+i word VBZ harvestedVBNS?JJSۿi word glacialJJS㥛?NNS㥛i-2 word donatingRBV-?INV- i suffix obiNNtVNNPtV?i-1 tag+i word VB underwritingNN|?5^?JJ|?5^ i-2 word juneVBZp= ףNNp= ף?i word quarterlyVB~jtJJX9v>@NNʡE?VBDCDGzRBT㥛Ġi-1 tag+i word JJ rigNNSPnNNPn?i-1 tag+i word , oneRB(\NN?5^I CD+?VBPKǿPRPCl@JJK7VBZ/$i word inheritedVBNh|?5?VBDh|?5i+1 suffix sseRB-NNPʡE?VBMbX9JJL7A`NNS㥛FW? i suffix eds IN&1VBZh|?5@VBD(\VBNV-VBPRBR&1RB㥛 NNS#~j(@NNPV-VBGX9vJJK7ANNMb i word omittedJJOnVBNOn?i-1 word popularNNV-ͿRB^I +DT^I +?NNP +?VBGGzJJZd;O?i-1 tag+i word RBR becauseRBv/?INv/i-1 suffix akoNNPSB`"?NNPB`"ɿi word reflexivelyVBHzGRBHzG?i+1 word billingsJJMb?NNMbi-1 suffix kly NNSQ?VBx&1@RPB`"ٿJJx NNl?VBD333333@VBN7A`RB!rhINjt?NNPK7Aп i suffix iksNNSFx?NNFxi-1 suffix 'n'JJPnNNPPn? i-1 tag+i word NNP minicomputersNNPSNNS?i-2 word changes RBRK7A`VBNv/VBZ|?5^?NNP~jtNNx@VBDy&1?JJRK7A`?VBV-?RB rhJJq= ףpi-1 tag+i word VBD affectedVBNDlJJDl@i+2 word josephsonNNT㥛 ?JJ7A`ڿNNP +i-1 tag+i word JJ fallsVBZV-?NNSrh|NNP ףp= ?i-1 tag+i word WDT abandonedVBN5^I VBD5^I ? i-2 word russVBP +ֿNN%C?FWMڿi-1 tag+i word CC fatsNNSL7A`?JJL7A`i-1 tag+i word VB pcNN;On?NNP;On i suffix 001NNSClCDCl?i-1 tag+i word DT hotJJ`"?NN`" i+2 word n.jNNS ףp= NN ףp= NNP ףp= ?i+1 suffix uriJJ'1ZNNP'1Z?i-1 tag+i word NN swapNNSףp= ۿNN+?JJjt i+2 word oakJJffffffNNPffffff?i-1 word brooklynNNPS-?NNSRQNNPX9v޿i word specializingVBGh|?5@NNh|?5i-1 tag+i word CD averageNN?JJi word monetaristsVBZ333333NNS333333?i-2 word abuseVBNrh|?NNK7A`JJi-1 tag+i word VBN thoughtVBNRQ?RBRRQi-1 tag+i word JJ supportsVBZHzGNNSHzG?i+2 word lengthenedNNS1Zd?NN1Zdi+1 word incentivesJJ+?NN+i+2 word squeakingNNS9vڿNN9v? i-1 word news VBDx&1?VBP +WDTףp= JJxVBZ/$?NNPM¿VBGQοVBNx&1INq= ףp?DTNNSGz?NNʡE?i-1 tag+i word NNS performedVBNRQ?VBDRQ i+1 word viaDTffffffNNP= ףp=NNPn?CCffffff?CDV-JJMbX?i-1 tag+i word NNP fieldsNNPS ףp= ?NNP ףp= i word tedDTI +JJ/$NNPjt?i word unidentifiedNNrh|VBD= ףp=JJM@i+2 word ventureNNSMbNNPK7?NNK7VBDbX9?PDTGzVBNʡE?JJCl?i word sparinglyRBMb?NNMbi word tracersNNPS/$NNP/$?i word objectedVBNNbX9VBDNbX9?i-1 tag+i word DT tabNN%C?JJ9vNNPX9v i word alliesNNPS+NNSjt?VBZK7Ai-2 word rapistRPB`"?RBB`"i-2 word senatorINT㥛 ?NNPSZd;JJT㥛 NNPZd;? i+2 word godVBDS㥛VBNS㥛?VBP!rhUH!rh?NNSL7A`VB+?NN+?i-1 tag+i word IN salmonNNʡE?JJʡEi-1 tag+i word CD straightNNStVJJtV?i+2 word swampVBNʡEVBDʡE?i word adhesiveNNMb?JJMbȿi-1 tag+i word VBP muchJJK7ɿRBK7?i-1 suffix ftyNNףp= ?INףp= i-1 tag+i word IN reconstructingVBG(\?NN/$JJMbi-1 tag+i word CC inventoryNN +?JJ +i-2 word heffnerJJK7A?NNK7Ai-1 tag+i word DT preferenceNNHzG?JJHzG i-2 word gopVBN~jtVBD~jt?i-1 tag+i word PRP acquiredVBN1ZdVBD1Zd? i word leapNN7A`?JJ7A` i+2 word hillVBN ףp= ?JJ ףp= i-1 tag+i word `` violatedVBNMbVBDMb?i+2 word sentimentalVBPZd;JJZd;?i-1 word legitimatelyVBNB`"?VBDB`"i-1 tag+i word IN rebuildingVBGZd;O?JJZd;O"i-1 tag+i word NNP notwithstandingRBx&?NNClINS?i-1 tag+i word NNP branNNSQNNQ?i-1 tag+i word PRP$ drillingNNv/?VBGv/i-1 tag+i word , albeitJJIN?i-1 tag+i word NN triggeredVBNMb?VBDMbi-1 tag+i word VB hearingVBGJ +?NNJ +i-1 tag+i word -START- lillyRBQNNPQ? i suffix EraNNPS/$NNS@NNPT㥛 i-1 tag+i word DT outspokenJJX9v?NNEVBNuVͿi-1 word sugarVBG/$?NN/$VBZ#~jNNS#~j?NNP#~j?NNPS#~ji-2 word complexesVBG;OnNN;On?i+2 word electionsVBNQJJR1Zd˿JJ~jt?NNPDl?RBSNN rhi-1 tag+i word VB specifiedVBNOn?JJq= ףpͿVBDGzi-1 word mercifullyVBDlVBNSJJ(\?i word pleatedVBNv/JJv/?i-2 word groundsNNV-VBDRQVBNRQ?WDTsh|??DTsh|?տNNPV-?i-1 tag+i word VBN madeVBNK7?VBDK7 i word planksNNSMbX9?NNMbX9!i-1 tag+i word -START- productionNN(\?NNP(\i+1 word enterprisesJJV-?NNZd;NNPMbX?i-1 word omnibusVBG)\(?NN)\(i-1 tag+i word NNP mergerNN1Zd?NNP1Zd#i-1 tag+i word -START- dataproductsNNPSHzG?NNSENNP5^I ?i word adenocardNNV-?RBV-i-1 suffix ghtVB#~j?JJR/$VBGCl@WP+?FWZd;O߿RB?DTV-NNS5^I ?NNPS r@POSˡE?CCClPDTʡE?EXd;OVBPMWDT#~j?JJnVBZ"~j̿NNPSRBRmCDMbXѿIN$CVBDQVBNtVRPm?NN\(\?i tag+i-2 tag NNS UHRBR"~JJR"~?i-1 tag+i word JJR orderlyJJ rh?RB rhi-1 tag+i word DT angelsNNPSjt?NNS{GzܿNNP(\i-1 tag+i word VBD closeJJףp= @NNQRBQi+2 word hamperedNNSx&1ԿNNPx&1?i-2 word deteriorateNNStVRBtV?i-2 word deseretNNh|?5ֿVBD/$VBNT㥛 ? i word ghostsVBZK7VB㥛 NNS&1?i-1 word principallyRBClǿINCl?JJd;OVBNd;O?i+2 word actionsJJB`"?NNPv/ݿVBQINHzG?WDTHzGi-1 tag+i word VB europeanJJv/?NNPv/ݿi-1 tag+i word NNP jaysVBZB`"ٿNNPSB`"?i tag+i-2 tag CC '' VBP{Gzt?VBZDT-VBZd;?NNQRBRoʡ@VBN&1RBy&1ԿJJRffffffNNSMbP?VBDMbX?CCܿIN-?i-1 tag+i word DT mistakesNNSX9v?RBSX9vi-1 tag+i word PRP$ proposedVBNCl @JJCl i-1 tag+i word VB alarNNʡE޿NNPʡE?i-1 word beatenRP7A`?IN7A`ҿ i word regieNNPZd;O?JJZd;Oi+1 suffix rlsVBPnпJJ333333?NNOni-1 tag+i word POS peakJJV-?NNV-i tag+i-2 tag IN RBRVBGffffff?NNFxPDTq= ףp?DT!rhԿVBlRBK7A?VBN/$CD\(\?NNPjt?JJMbXVBZQ@VBD+?VBPCl?JJRGz޿NNS!rhi word halloweenNNClNNPCl?i-2 word uncensoredJJx&1?VBPK7ANNK7A`ݿRB(\ſ i suffix ces NNzG"VBNHzGIN+VBZ|?5#@NNP"~VB'1Z NNPS/$#@RB~jtVBDnVBP!rh JJHzGNNSˡE]0@i-1 word musicVBZFx?NNS rh?VBD+VBGQNNA`"?i-1 tag+i word -START- everyoneNNPˡENNZd;@RBK7A`CDT㥛 i suffix potVBCl?NNOn @VBPZd;ϿJJx&NNSlNNPKi-1 tag+i word RB enhancesVBZFx?NNSFxi-1 tag+i word NNP brokeVBV-VBDV-?i+1 word hyenasJJ/$IN/$?i-1 tag+i word DT airborneJJK7?NNK7ѿi+2 word selectedWDTʡE?JJ rh?NN rhINʡEi-2 word unbiasedVBG|?5^JJ|?5^?i word refurbishedVBNX9v?NNSſVBD~jti-1 tag+i word DT transitionalJJCl?NNCli-1 tag+i word PRP$ worriedJJ/$?VBD/$i-1 tag+i word DT clotureNN?5^I ?JJ?5^I i-1 word hitsCCoʡ?INoʡi-1 word unificationVBZOn?NNSOnNNQNNPQ? i word thumbsNNSMb?NNMbi-2 word expensesVBGZd;O?NNL7A`RB"~JJ7A`?i-1 word fetchingJJR7A`?RBR7A`i+2 word guarantyNNV-NNPV-?i tag+i-2 tag VBG (VBPh|?5JJZd;O?NNL7A`i+2 word confrontationsRB ףp= JJ ףp= ?i-1 tag+i word IN standingVBG+?NN+ i suffix -TVNNP?JJbX9HNNMbX9 @CDni-1 tag+i word -START- grousedVBD rh?VBN%CJJGzi+1 word mccartyNN{GzNNP{Gz?i+1 word drippingNN ףp= ?JJ ףp= ߿i-2 word uncoveringVBGZd;NNS333333?JJZd;?NN333333i-1 word primaryJJ%C@NN%Ci-1 tag+i word IN polypsNNSB`"?VBNFxNN= ףp=i word illinoisVBG-JJENNPX9v?i-1 tag+i word VBD experimentalJJCl?NNCli-1 tag+i word JJ tripsNNSrh|?JJrh|i-2 word tashiVBZ+?JJ+i-1 word marineNN|?5^VBG|?5^?i+1 word backedNNSK7A`?RBI +?JJI +NNPK7A`i+2 word departmentsDToʡPDToʡ?i-2 word miscalculatedNNSQ?NNQi-1 word deputyNNSMbX9NNT㥛 ?JJh|?5?i+1 word coordinationJJRHzG?RBHzGi-1 word bankingRBMbX9ĿNNM?VBD+JJX9vINK7?VBZV-NNSV-?i word imminentNN/$NNPZd;JJFx @i-1 tag+i word CC potatoesNNSjt?NNjti word candidateVBPNbX9NNZd;O?JJQi word homefedVBNm@NNFxNNPV-NNS'1Zܿi+2 word appliedJJQ?NNQ i word termedVBClVBDCl?i+1 word repeatedlyNNPMbX9NNSJ +?RBʡEi+2 word credit DTuV@NNP rh@VBNbX9VBG`"?NNZd;VBDB`"ٿRB-ֿ$&1PDTjtVBNZd;OݿJJNbX9INZd;O@ i+2 word maulJJ+?NNP+i-2 word pilevskyRBK7A`INK7A`?i-1 tag+i word VBD laterNNףp= RBRjt@RB1ZdӿVBN"~i-1 tag+i word NNP rodgersNNPSnNNSd;ONNPx&1?i-1 tag+i word WP filedVBPx&VBDx&?i-1 word suddenNN/$?JJ|?5^RBq= ףpi-1 word scoreRBV-?NNV-߿i-1 tag+i word CD potentialJJ~jt?NN~jti+1 word aspectNN㥛 JJ㥛 ?i+1 word projectionsVBMbVBG#~jNNv?JJ#~j?i-1 tag+i word DT pollNNuV?JJuVi-1 tag+i word IN looksNNʡEտVBZ7A`@NNSuVJJRV-i-1 tag+i word JJ eNN rh?NNP rhi word jalapenoJJK?NNK i suffix leyNNPSzGRPmNNbX9?JJ(\NNSZd;NNPq= ףp@i word relaxingVBGOnJJM@NNOni-1 tag+i word -START- bonnieJJ +NNP +?i-1 tag+i word NNP facilitiesNNSuVNNPuV?i word concludingJJx&VBGx&? i suffix IEDNNPnVBDZd;@VBP+ۿi+1 word swellVBjtRBR ףp= RBI +?i-1 tag+i word VBP reinvestedVBNm?JJmi-1 tag+i word RBR roundedVBNSJJS?i+2 word stealingVBN+?VBDClINX9vi-1 suffix oms VBK?NNʡEVBPT㥛 пEX#~jRBx&VBDпPOS;On'';On?INx?VBZ(\DTʡE?i-1 tag+i word NNP liberalizedVBNClVBDCl?i+2 word displayVBZX9vNNSX9v?i-1 tag+i word VBG polystyreneNNʡE?JJʡEi+1 word caesarsJJjt?NNjt i word haniNNP/$?PRP$xƿNNd;O޿i word weepingVBGGz?NNGz i word renewVBK7?JJv/VBD rhi-2 word sharonNN?NNPi+1 word grossNNQJJQ?i-1 tag+i word DT helpNNSMbX9NNMbX9?i-1 tag+i word NN easierRBR㥛 JJRK7?NNMbX9i+1 word gatheringJJSVBV-NNSʡE?NNS?i-1 tag+i word JJ regimenNN/$?NNS/$i-1 tag+i word DT judicialJJ9v@NNQNNPrh|i word calculatedJJI +?VBNGzNNʡEݿi+1 word productivePOS"~j?JJSx&1?RBSx&1RBR+?JJR+ÿVBZ"~j̿i+2 word clientIN)\(ԿRP/$?RBOnۿi-1 tag+i word PRP$ affidavitNNS?JJSi+1 word bostonJJl?NN ףp= RB rȿINtV?DTtVNNPNbX9?i+2 word amuseVBPMb?NNMbi-1 tag+i word VBD flourishingVBGMb?JJMbi+2 word volatileRBv/?NNT㥛 INM?i+2 word concertVBP= ףp=?NN= ףp=i-1 tag+i word VBP convertedVBNV-?JJV-i-2 word riverJJV-?NN/$?NNPx&VBGOni+2 word studentsJJSNNSMb?NN%C? i word degreeNNSʡENNA`"@JJ"~ji-2 word chivasNNSx&INZd;OVBZX9v@i-1 tag+i word MD consistVB-?VBP-˿ i-1 word jos.NN㥛 NNP㥛 ?i-1 tag+i word WDT supplyVBZ+VBP+?NNx?VBDxi-1 word annuallyCC`"?JJR`"i+2 word worseVBNZd;OVBDZd;O?i-2 word aliveNNSˡE?JJM?NNV-i-1 tag+i word IN progressRB ףp= NN ףp= ?i-1 suffix dlyVBZʡE?NNPMbX9?VBGlRBRjt?VBPʡE?JJRRQVB ףp= VBNDlٿEXx?JJtV?NNd;ONNS-NNPS~jtRBQVBD'1Z@i-1 tag+i word RB considerVBVBP(\?VBD(\пi-1 tag+i word RB blinkingVBGZd;OJJHzGNNnRBS@i+1 word holderNN+?JJ+i-1 word lightsVBNv/VBDv/?i+1 word expensive JJRuVRBSJ +?VBNzG?VBPzGJJ-IN}?5^IRBV-?JJS +RBR~jt@i+2 word architectsNNm?JJmi-1 tag+i word -START- skfNNMbNNPMb? i word giveNNV-VBPI +@JJvVBZ~jtNNPMb VBI +!@i+2 word discoverNN~jt?JJ~jti-1 tag+i word POS syndicatesNNSCl?NNCli-2 word genetic VBN{Gz?VBPV-WDTS㥫JJV-NNSX9v?NNQ @VBDMbX9NNPV-?VBʡEIN= ףp=i-1 tag+i word NNP o'kickiNNPS?VBDSi-2 word deliveryJJMINoʡ?VBL7A`?RBoʡNNM?VBDFxVBNFx?VBPL7A`i+1 suffix pigNNrh|?JJ5^I ӿNNPCli word musicianNNK7?JJK7i-1 tag+i word NNS concerningVBGB`"?JJB`"i-1 tag+i word NN decreeVBZ(\տNN(\?i-1 tag+i word RB smoothlyRBʡE?JJʡEi-1 tag+i word NN raisingVBGv/NNv/?i-1 tag+i word -START- marniJJX9vοNNPX9v?i-1 word populatedJJS㥛?NNS㥛i+1 suffix fccRP5^I JJRV-@JJv/RBRd;O i+1 word kkrDTlڿINl?i-2 word himself PDT rh?IN~jt?DTI +VBffffffRP~jtJJsh|?NNףp= ?VBDQVBNQ?RB|?5^?i-1 tag+i word CC innocentNNtVNNPSJJˡE?i-2 word steelmakerNNSNNPS?IN㥛 RB㥛 ?i word alarmedVBNK7JJS㥛@INh|?5i-1 tag+i word NN censorNN-VBP-? i word mythsNNSq= ףp?NNq= ףpi-1 tag+i word CC recommendVB-?VBP-޿i word specificallyNN(\NNPS㥛VBP +RBMbX @ i word optedVBP/$VBD/$?i word travelingNN(\JJoʡNNP rhVBG333333@i+1 suffix iesRBK7JJSףp= ?VBN%CԿ''QVBDL7A`JJR/$@VBG#~j@CCS㥛@NNPSQPOSS?RBSrh|?JJDl@RP~jt?NNn @NNPMbX9?IN`"@NNSOnCDMPRP$J +?WDTGz?PRPSRBRrh|VBPVBZʡEDTQFWVBffffff@i-1 word romanticJJjtĿNNSKNN+?!i-1 tag+i word JJ sound\/graphicsNNS㥛 JJ㥛 ?i-1 tag+i word NNP winterNNPSZd;ONNPZd;O?i-1 word steeredNNSV-RB7A`@JJףp= i+2 word improvingVBGPn?VBN}?5^I?JJffffffi-1 tag+i word RB openedVBNJ +?JJˡEVBD~jthi word francaisesNNS%CԿNNP%C?i-1 word reimbursedJJZd;O?INZd;Oi-1 tag+i word JJ scaleNNˡE?JJˡEܿ i-1 word gainINʡE?JJR +?VB?5^I ڿRBI +NNn?VBNnRBR +JJrh|Ͽi-1 tag+i word JJ atlanticJJ-NNP-?i word collinsNNP+?WP+i-1 tag+i word POS poloNNPRQ?NNRQi-1 word pioneerNNPSB`"?NNPB`" i word friendJJA`"VBRQVBP;OnNNSʡENNGz@i+1 word rejectedVBVBGMbX?VBP?RBZd;?VBZZd;ϿNNPMbXi-1 suffix itiVBZ~jtNNP~jt?i word trusteesNNSA`"?VBZA`"i tag+i-2 tag `` CD VB(\RBEVBPsh|?JJ/$?NNP rh?VBG rhNN{GzܿFWCl?NNSE?i+1 word smokeVBGv?JJR`"?NNvRBR`"i-1 tag+i word -START- sevenCDrh|@VBNK7A`JJ}?5^Ii+2 word forgiveVBNPnVBDPn?i+2 word angeloPRP$-PRP{Gz?RBv/ i suffix FarRB/$?NNP rhѿJJ(\?NNS/$VBNK7i-1 tag+i word DT stronglyRBV-?JJV- i suffix ESTVBDZd;ONNPrh|NNSZd;߿RB(\?NNsh|?@i-1 tag+i word VBP whizzesNNSFx?NNFxi-1 tag+i word WP$ sonNN|?5^?JJ|?5^i-1 tag+i word JJ receivableNN(\?JJ(\i-1 word livesVBDRQ?VBPRQRPx?RBB`"ѿINʡE i suffix omyNNS~jtJJR/$JJK7?NNPX9v޿NN-?i word unwillingVBGZd;JJRQ@NN~jtNNPV- i word edtNNPsh|??NNKJJX9vi-1 tag+i word VBG suitNNS\(\NN\(\? i word likesVBZNbX9?NNSMb?NNMbVBDNbX9i-1 word sansuiRBV-INV-?i+1 word psychoanalyticJJʡE?NNʡEi-1 tag+i word NNP tropicsNNPSCl?NNSCli+1 word subsidiariesVBGB`"?JJ9v?NNEVBNq= ףpi-1 tag+i word , bulgingVBGʡE?NNʡEi tag+i-2 tag ( CCIN333333?RB333333ÿNNP ףp= ?VB ףp= i-2 word problemVBD/$?VBNlWDT$CJJV-INˡEDT+ @RB/$?NN"~? i-1 word endsRPA`"?INA`"i-2 word mcchesneyWDTQINQ?i-1 tag+i word IN citicorpNNK7AпNNPK7A?i-1 suffix uxeJJSNNS?i word renownedVBNmJJm?i-1 tag+i word DT presidentialJJQ?NNQ i word adeptNNS rhVBNnJJ)\(?i-2 word motorVBGI +?VBN"~jܿJJI +VBD"~j?i-1 tag+i word PRP$ aidesJJB`"NNSB`"?i-1 tag+i word POS jan.JJDlNNPDl?i-1 tag+i word VB demandsNNS/$?RP/$i-2 word confirmationWDTy&1INy&1?i+1 word merchantCCX9vJJy&1@NNbX9NNPQi-2 word ticketronVBNDl@JJDli-1 tag+i word DT hopeVBʡE?VBPDl?NNS)\( i+2 word someNNPCl@NNPS$CRP'1Z@RBRV-@VBP㥛 ҿDTMb?VBD}?5^I?NNSd;O޿WDTrh|?EX~jt?VBK7?JJA`" VBZ1ZdRBZdNNx&1?VBNx&1?INVBGS㥛i-1 tag+i word VBZ selectedVBNQ?JJQi-1 tag+i word JJ labelRBRʡENNʡE?i+2 word rejectedNNPGz?NNPSlNNQ@VBDVBN?CDVBZ/$i-1 tag+i word VBN blownVBNK?INKi-1 tag+i word JJ somewhatWDT^I +RB^I +?i-1 tag+i word , therebyRBDl?JJV-VBD1Zdi-1 tag+i word VBP loveVBPv/?JJv/i-1 word unlawfulNNˡE?JJˡEi+2 word sidesJJ?5^I RBSINS?VBD?5^I ?i+1 word renderingJJ/$?NN/$i-1 tag+i word IN slotNNQ?JJQi-1 word fellowNNPrh|NNPS\(\?NN9vVBDB`"VBNL7A`?JJw/ܿi-1 tag+i word NNS feelVBsh|??VBP+?JJ333333i-1 tag+i word VBG complexNNx&?JJx&ٿi+1 word revisionJJ`"?NN`"i-1 tag+i word VBD soldRBףp= VBN\(\?JJzGi-1 word cargillNNS+߿NNP"~NNPS333333?i-1 tag+i word DT uniformJJ%C?NN%CԿi-1 tag+i word VBG commentNNSrh|NNrh|?i+1 word mortgageNNJJRK7A`?POStV?VBNףp= JJV-?VBZtVNNPGz@ i word thawNN5^I ?NNS5^I ˿i-1 tag+i word `` allDT㥛 ?PDT/$RB i word ragNN9v?VBNnJJV-Ϳi-1 tag+i word -START- securityNNd;O?NNPd;Oi+1 word showaVBNClVBDCl?i+1 word risksVBNClJJl?NNS{GzNN(\?VBD!rhܿRBRMb`JJRMb`?i-1 word homesVBN ףp= ?VBD ףp= i-1 tag+i word IN chivasJJ'1ZNNP'1Z?i-1 tag+i word -START- t.RBrh|߿NNPrh|?i-1 word bookedJJK7RB5^I ?IN +?i-1 word illuminatingNN~jtVBD~jt?i+2 word works DT ףp= VBGx&1?NNh|?5?VBDq= ףpVBN333333VBPtV?JJV-?VBx&1̿IN ףp= ?VBZp= ףi-1 tag+i word TO mandatoryVBZd;OJJZd;O?i-1 tag+i word DT preludeNNS;OnNN;On? i word troNNPS&1NNsh|? @NNPQ i-2 word n.jNNStV@NNPtVi word happilyVBP|?5^RBZd;?JJT㥛 i word relocateVBˡE?NNˡEi-1 tag+i word NNP stuckVBZV-VBDV-?i+2 word institutionalJJw/ @NNZd;RBsh|?i-1 tag+i word VBG lookedRBSVBDS?i-2 word contributionsDToʡPDToʡ?JJE?NNPEi+1 word negotiatorsJJClٿNNPCl?i-1 tag+i word NN tumblesNNS/$VBZ/$?i-1 tag+i word VB graveNNSGzJJGz? i suffix SriRBףp= NNPףp= ?i+2 word chargingNNSJ +ٿJJJ +?i+1 word unileverINPn?NNPMWDTPnJJ/$?RBQο i suffix ilt FWMbVBDX9v@VBNQk@INX9vNNPx&VBV-NNPSjtNNrh|RBPnJJS㥛@NNSZd;Oi-1 tag+i word RB overdrawnJJS㥛?VBNʡENN$Ci word mainstreamNNSsh|?JJ~jt @NN$Ci-1 tag+i word TO rideVBI +?NNףp= JJsh|?i-1 tag+i word VBP plusCC rh?NN rhi+1 word consortiumJJ)\(?NN)\( i suffix DueRBtVUH~jtJJX9v @NNSHzGVBNbX9i+1 word respectsWDTV-?INV-i-1 tag+i word CC improveVBjt?VBPM?NN^I +i-1 tag+i word DT alternativeNNZd;O?JJZd;Oi+2 word lindaNN333333?JJ333333i-1 tag+i word JJ pregnantJJ-?NN-i+1 word hoveredVB~jtпVBP~jt? i+1 word scotNNPK7?VBGK7ɿi+1 word constitutionalJJMb?NNMbi+2 word noncashVBPQ?INQi-2 word sweatersNNn?JJRmRB\(\߿i+2 word trialRBB`"?VBGGz?JJB`"NN1Zd˿VBDx&?VBNx&VBPEi+1 suffix aulUHJJ ףp= NNSKNNPnVBGz޿RB~jtNN+w@VBNq= ףp?i-1 suffix d&bVBZ-?NNS-i-1 word respectiveJJ5^I @NN5^I i-1 tag+i word CD titledVBN$C?JJV-ݿVBDGzi-1 suffix bobNNPX9v?NNPSX9vi-1 word investmentsVBDV-VBNV-?VBPOnWDTlJJQֿIN!rh?VBOn?RB rh?i-1 tag+i word JJ dragVBP(\@NNSx&1NNCli-1 word debateJJV-NNMbINCl?i word crescendoNNS"~NN"~?i-1 tag+i word JJ helixNNS ףp= NN ףp= ? i word philNNPSNbX9NNPNbX9?i+2 word mistrustNNy&1?VBGy&1i-1 tag+i word ( redemptionNN\(\?JJ\(\i+2 word pherwaniVBZuV?NNPSuVi-1 tag+i word JJ dynamicJJK7?NNK7i-1 tag+i word DT speculateVBP/$?NN/$i-1 tag+i word CC steelNNPSffffffNNPffffff? i word spillVB{Gz?NNSOnNNPn?JJQi-1 suffix iscNNPSB`"NNSʡE?JJʡENNPB`"?i+2 word rilesJJm?VBDmi+1 word speakingNN rhJJ rh?i-1 suffix vonNNSlNNPl?i-1 tag+i word TO colonVB= ףp=NN= ףp=?i word exchangeNNGz@VBNZd;OVBP(\µ?JJ/ݤVB&1ҿRBbX9i-1 tag+i word , dueNN rRBMbX9?VBZ9vJJ+@VBPvi-1 word playedRBS㥛ؿNN= ףp=@VBNx&1JJClINNNSRQRPˡE@ i word dungNN+?JJ+i-1 tag+i word -START- lyricsNNS"~?RBy&1ܿNNP- i+2 word line POSZd;?JJ{Gz?VBZZd;RP9vRB(\?NNZd;NNP +?PRP$x&1?INCl?VBGv׿i word existedVBDGz?VBNGz i suffix nor PRPx&1NNSuV?RB(\NNJ +?FWA`"˿RBSx&1VBN+JJK7A@VBT㥛 ?i word montgomeryNNB`"NNPB`"?i-1 tag+i word NNP haveVBClۿVBPE?NNPʡEi-2 word applicationNNS/$NNP/$?i+2 word corporationsNNV-VBDK7AVBNK7A?VBP/$?NNSsh|??NNPsh|?i word greenishVBh|?5JJh|?5?i word pediatricJJd;O?NNd;Oi-1 word automakersNNPSX9vNNPX9v?i+1 word bossesNN?5^I NNPMbJJuV?i+1 word satisfiesWDT(\IN(\?i-1 tag+i word -START- costVBN(\ȿNNv?NNP i-2 word rateVBZK7A`NNS;On$?CDGz?IN(\B@CCʡE@VBN rh?NNh|?5?PDT`"?WDTd;OֿJJOn DTQ?NNPM?VBG㥛 RBK7VBD rhVBMNNPSxi-1 word traderRPV-NN(\VBD(\?INV-?VBZGz?NNSGzi-1 tag+i word -START- ddNNPT㥛 ?JJT㥛 i+1 word explanatoryJJMbX9?NNMbX9i+1 word validRBzGҿJJRoʡDTzG?RBRoʡ?i-2 word utilitiesNNMbX?VBʡEVBPV-?NNSv/JJx? i word benchNNSSNNGz?JJ/$ѿ i-2 word hearJJy&1?NNS#~j?VBNL7A`?NNS㥛NNP9vi-1 tag+i word `` rareJJ`"?NN`"i-1 tag+i word -START- recentJJS?NN1ZdNNPCli-1 tag+i word RB warningVBG)\(NN)\(?i+1 word troubleJJn?VBoʡ?VBNjtRBoʡݿVBDHzG?i-1 word missingVBZZd;NNT㥛 @JJp= ף i suffix NuxNNP/$NN/$@i-2 word spurtVBG~jt?NN~jti-1 tag+i word JJ retrievalNNS rNN r?i-1 tag+i word NNP zeroNNV-CDV-?i+1 suffix meiNNP/$?JJ/$i-1 word kantoreiNNSQNNQ? i word unocalNNP+?NNS㥛JJSi+1 word jerseyDTrh|JJGz׿NNPDl?i-2 word advanceVBG7A`RBRNbX9?JJ7A`?JJRNbX9i-1 tag+i word JJ dynamicsNNSHzG?NNHzGi-1 tag+i word VBD satVBN~jt?NN~jtÿi word launchesVBZ/$?NNS)\(?PRP)\(RB~jtVBD9vi+2 word cattleNNS?5^I ?NN?5^I i-1 word holdersVBP\(\VBDq= ףpVBMb? i+2 word gas NNP|?5^?VBOn?VBG`"?VBN(\CDxֿVBZsh|??NNS$CNNQ?JJ"~i-2 word exactRBX9vINX9v?i-2 word assertsNNPSq= ףpݿNNPq= ףp?i-1 tag+i word DT treasuryNNV-?NNPV-i-1 tag+i word NN stylesNNSx?NNxi+1 word mysteriouslyJJZd;OVBDZd;O?i+1 word hedgingJJ|?5^?NN|?5^i-1 word retirementNNPSHzG @NNSx&?NNP`"VBZL7A`i word withdrawVBp= ף?NNp= ףؿi-1 tag+i word '' columnVBPv׿NNv?i-1 word endlesslyJJRQINRQ?i-1 word toyotaVBZ!rh?VB!rhi-2 word announceNNPCl?JJGz?NNGzǿFWCl i suffix a-3JJ5^I ?NN5^I i+2 word steamRPzG?RBA`"ۿINx&1i-1 tag+i word CD lotsNNSp= ף?INp= ף i suffix INSNNSʡE@NNPʡEi tag+i-2 tag PRP$ VBD VB+NNPSB`"?JJK7@NN+?VBG9vڿVBDA`"JJSd;O?VBNV-CD/$޿RB-NNSZd;O?NNPK7i+1 suffix ert VBD-?INFx?NNSʡEÿVBGMbXVBN%CRBRʡEWDTFxJJV-VBZʡE?NNPDl?NNZd;?i-1 word respectIN= ףp=?RBjtNNPMbi-1 word revivedNNV-?JJd;ORBQۿ i+2 word riskVBClNNX9v?VBDCl?JJX9vINNbX9VBZK7?DTNbX9@NNSK7i-1 tag+i word VB hookedPRP$nVBNd;O޿JJ/$?i-1 tag+i word IN excessJJL7A`尿NN ףp= ?RB!rhi+1 word mockinglyJJp= ףNNp= ף?i-1 word factorWDTw/?JJ/$IN ףp= ?RP ףp= DTw/VBGn?NN7A`i-1 tag+i word IN camerasNNSQ?NNQi-1 word opportunitiesVBPA`"?NNA`"i+1 word mineralJJM?NNMi-2 word saying RPFx?RBFx?MDd;OJJjtNNQ?VBDS?RBRʡEJJRʡE?VBPx&1?VBNSVB333333ӿIN`"i-1 tag+i word IN thatcherismNN(\NNP(\?i word constantlyVBOnRBOn?i-1 tag+i word NNP gangVBP/$NN/$?i-1 tag+i word DT consortiumNNS'1ZNNtV?JJRQ i+2 word 're NNx&1@CDx&1RB㥛 ¿VBZ(\?VBMbX9JJZd;O?VBDZd;VBNp= ףVBPMbX9?IN㥛 ?i word beverlyRB ףp= JJK7A`NNPh|?5?i-2 word tightlyNN~jt?JJK7A`?VBGffffffi-1 tag+i word RB realizedVBNFx?JJ/$VBDQ?VB-VBPzGi-1 tag+i word RB assignVBZx&1VBx&1? i word carlosNNPSKJJ-ۿNNPd;O?i-1 word safeguardsWDTx?INxֿi+2 word parallelJJx޿NNx?i+2 word sevenNN!rhܿJJR+JJ!rh?RBR+? i suffix gneNNM?JJVBD+ i word shocksVBZ rhNNS rh? i+1 word paVBPV-INV-?i word dwindledVBN^I +VBD^I +@i-1 tag+i word PRP receivedVBZ-VBD-?i+1 word retinoblastomaDTˡE@INˡE i word reactVBoʡ?VBPMbP?NNV- i+1 word surfNNʡEJJʡE? i suffix braNNSRQNNRQ?i+1 word learningVBZ9vNNS9v?JJ= ףp=NNP= ףp=?i-1 tag+i word IN greenJJNbX9?NNNbX9 i suffix ene NNSh|?5NNPL7A` @NNoʡ?VBDJ +ɿFW= ףp=VBP-˿JJZd;O?VBRQRBQi-1 tag+i word NNP rideVBZ +VBMbX9ĿVBP/$?NNMbi word coronetsNNPMbX9ĿNNPSMbX9? i word parcelVBPx&1?VBDx&1i-1 tag+i word VBZ lessVBN{GzܿRBp= ףJJʡECCxRBR!rh@JJR(\?i-1 tag+i word NN teemingVBGffffff?NNffffffi-1 tag+i word IN writingNNS?JJlVBGZd;i-1 tag+i word RBR abundantJJB`"?NNB`"i word managingJJV-NNP +VBGMb?NNʡE? i word wayNNQ?NNPQi+1 word responseJJ?5^I ?VBDMbXNNsh|?RB-VBN rh@i-1 tag+i word PRP$ leadingVBG rhJJq= ףp@NNZd;Oi-1 tag+i word VBZ sailingVBGDlNNDl?i word prudentJJzG @NNDlVBN;Oni word placementNNCl?JJCli-1 tag+i word `` statistNNV-JJV-?i-1 tag+i word DT rebateJJ#~jVBP~jtNNjt?i word recognizablyRBzG?JJzGi-1 word careerVBP+JJd;ORBGzINm?NNPd;O?i-1 tag+i word JJ whatWP?WDTd;O?NNX9vIN ףp= i-2 word options NNP^I +NNPS^I +?NNVBPOn?RBl?VBZVBZd;?RP?VBDx&1VBN%C?JJRZd;i-1 tag+i word IN visitsNNSffffff?NNPffffffi-2 word freightVBDlJJ-?NNSi-1 tag+i word JJ candidateVBPNbX9NNNbX9? i word get RBMbX9NN333333VBN㥛 VBPˡE@INClVBZ"~jNNP ףp= VBGz@JJ1ZdVBD&1i+1 word restoringINw/?RBw/i-1 tag+i word IN cockatoosNNS)\(?NN)\(i word featuringVBGm?NNmi word belzbergsNNPSM@NNX9vNNP#~ji-1 tag+i word DT receivablesNN`"?NNS`"i-1 tag+i word DT boilNNMb?JJMbi-1 tag+i word VB substitutingVBGDl?NNDli-1 tag+i word , highJJ"~?VBNX9vRB"~?i word technologicalJJMbX?NN;OnJJRK7Ai-1 tag+i word DT cheaperNNnJJR7A`?JJK7A i suffix bonNNSJ +JJ~jtNNtV@FWoʡ?NNPCl?i-1 tag+i word VBD bankingVBGnNNn?i-1 tag+i word CC oceanographicJJ+?RB+i+1 word bonnieRBK7A?INK7Ai-1 tag+i word NNP shopsVBx&1NNPS(\@NNSx&1?NNP(\i word lJJRQNNS㥛?VB"~i-1 word business RB|?5^ѿNN(\?VBDK7A`@VBNK7WDT'1Z?JJMINoʡNNPSx&1?DT|?5^?VBZlNNS}?5^I?NNPrh|VBG@i+2 word travel JJQWRBܿNNS~jt?NNPSzG@VBGS@NNffffffVBDq= ףp?LS$CVB{GzVBNq= ףpNNP7A`i-1 tag+i word CD novelJJV-ڿNNV-? i+1 word testJJ!rh @FW rhNNsh|? JJR +?i-1 tag+i word NNS furnishedVBNQ?VBDQۿi-1 tag+i word DT unfairJJ/$?NN/$ i+2 word sizeFWy&1|VBP^I +?JJ;OnҿVBZd;O?NNSd;OֿNNV-i-1 tag+i word , millingJJJ +VBGK7ANNy&1?i-1 tag+i word JJ islanderNNףp= NNPףp= ?i-1 tag+i word RB pinpointedVBNjtJJjt? i+2 word fanJJFx?NNFx i word jammedVBNQ?VBDQٿi word insurersVBP(\NNS7A`NNPK? i word winterRB#~jNNP333333VBffffffNNPS&1 @JJ\(\NNCl @RBR)\(JJRS㥛i+1 suffix donVBPZd;?WDTx&1JJ$C?INjt?DTT㥛 VB~jtNNMbXVBNV-߿i+1 suffix huhJJB`"NNPx&1?PRP$= ףp=i tag+i-2 tag DT NNSNNPSFx?RBR'1Z?RBQ?VBGJ +JJSh|?5޿NNP^I +?JJMbXNN?5^I ڿVBDJJRDl?VBPE?VBNI +NNS{Gz?VBnRBSh|?5?WDT$C? i word superNNK7A`JJ@JJRSi-1 tag+i word IN assemblingVBGZd;?NNZd;i+2 word balanceNNPE?VBJ +ѿNNV-VBNQVBP}?5^IJJ rh?VBZ?5^I NNS?5^I ?i-2 word positiveNN?JJE?VBE i-1 tag+i word IN unificationistJJS @NN/$NNPʡEi-1 word against VBNx&1?PRPX9v?NNS'1ZNNP㥛 ?PRP$ˡENNPSffffffNNy&1RB/$?INd;O?DTd;OVBGV-ͿJJS˿i+1 suffix uskJJK7?NNK7i-1 tag+i word -START- ordersNNMNNP;OnNNPS{GzNNS/$?i-1 word maturityJJX9vRBV-ҿIN"~j?i-2 word tenureJJClJJR%C?RBh|?5޿ i word datedJJv/?VBNnNNRQпVBDzGi-1 suffix omeINK7?RPS㥛ؿCDzG?JJK7?JJR}?5^INNSDl?VBsh|?NNPS ףp= NNHzG?VBD~jtFW+?RBRE?RBX9v?VBZ9vVBGVBPsh|??WDTMbVBNjtNNPK?i-1 suffix ilkVBNI +@NNZd;VBDq= ףpi-1 tag+i word IN keptVBP^I +VBD^I +?i word deliberativeJJ+?NN+i+2 word boveriNNPSDlNNPDl?i+1 word succeedingNN"~NNS"~? i suffix tarVBP\(\JJ㥛 IN333333NNSK7ANNPS?VBMb?NNp= ף @i word guaranteesNNʡEVBZ&1?VBѿNNSOn?i-1 tag+i word PRP$ preferredNNPS㥛?JJS㥛i word foundationsVBZT㥛 NNS rh?NNZd;Oi-1 word heavilyRBRzGVBNCl?JJjt?VBDS i+1 word iNNP333333CDy&1?NNSQ?RBV-VBD)\(?VBN/$VBP!rh?WDTbX9JJxWRBzG?NN|?5^@INףp= ?DTSVBx?i-1 suffix cbsNNʡE?VBPZd;OVBZMbX9NNSGzNNP|?5^VB= ףp=?NNPSS@ i+1 word peteJJ#~j?CD#~jܿi-1 suffix ndeNNCl?JJ ףp= NNPS㥛i word basicallyRBZd;?JJFxNN{GzԿi-1 tag+i word RB castVBZ}?5^IVBPv/VBDS?i-1 word contraNNS r?NN(\VBZtV޿i tag+i-2 tag VBP CC NNPS +?VBGsh|??JJ-RB"~jDTT㥛 NNSnNNPw/?NNS㥛CC rh?VBNJ +?WDT'1Z?IN+?RPh|?5 i-2 word singVBDNbX9VBNMbX9JJ~jt?i+2 word windowINSNNS1ZdVBZd;RPx&1?NN1Zd?RB|?5^ѿ"i-1 tag+i word -START- withholdingMDmNNS㥛?FWCl߿ i-1 word nihVBZKVBP!rh?NNSK?NN!rhi+1 word stolzmanNNPS㥛?NNSS㥛ܿi+2 word chekhovNN#~j?JJ#~j i word robesNNS?NNi+1 suffix ncsNNPʡE?NNPS ףp= JJ$C?NN|?5^CDGz?i-1 tag+i word NN somedayRBoʡ?NNoʡݿi-1 word wantedVBNA`"?JJA`"INHzGDTHzG?RBZd;NN333333?i+1 word charlotteWDTʡEINʡE?i+2 word krishnaNN~jt?NNP~jti+1 word candidatesJJbX9?NN~jtNNP(\?i-1 tag+i word JJ oustedVBDˡE?VBNˡEi word identifyVBn?JJni-1 tag+i word JJ bulletinNN\(\?CD\(\i-1 tag+i word JJ pumpsNNS"~?NN"~i-1 suffix ralNNPSCl@JJ&1JJR?5^I WDTQ?DT5^I CDGz@VBI +VBPI +INrh|ϿVBZd;ONNPCl?VBGV-NNQ?RBR r?RBrh|?VBD(\VBNx&1NNS(\?i-1 word aliceNNPʡE?NNSʡEi-1 tag+i word TO laughlinVBOnNNPOn? i suffix NetJJ`"@NNGz?NNP'1ZDTB`"NNPSi-1 tag+i word VBZ fitNNK7A`?JJy&1VBNSۿi+1 suffix dakJJ7A`NNP7A`?i-1 tag+i word NNP scienceNN-?NNP-i-1 tag+i word IN baa3JJPn@NNP'1ZNNPSMbXi word fidgetingVBG#~j?JJ#~jܿi-1 tag+i word ( financierJJRMbX9NNMbX9?i+2 word monitoredJJS㥛?NNx&1пNNPlVBN5^I ?NNS%CԿi-2 word pursueVBG"~j̿NN-?JJMbX9i-2 word installVBGV-@NNSx&1?NN!rhJJrh|i-1 tag+i word DT messaNNP~jtFW~jt? i suffix S&LNNPSOnNN(\@JJsh|?NNP#~ji-1 tag+i word POS photographNNS/$ۿNN/$?i+1 suffix ixlNNPSףp= ?NNPףp= i-1 tag+i word DT closingJJSVBGK7A`տNNV-@i-1 tag+i word -START- exactJJoʡ?NNoʡſi-1 tag+i word JJ tiempoNN +NNP +? i word bossesVBZ?5^I VB(\NNSM?i+2 word alaskaVBZd;ONNZd;ϿNNSQ?RBGz?JJGzi+2 word distanceJJ~jthNNP~jth? i-1 suffix pcVBZ;On?NNS;OnNN;On?IN;Oni-1 tag+i word DT floatingVBGSÿJJS?i+1 word receivingNNV-?JJV-i-1 tag+i word VBZ bannedJJ(\VBDDlVBNʡE?i-1 tag+i word JJ electronicsNNS/$NNx&1@JJZd;i word notifiedVBDL7A`?VBN{Gz?JJX9vi word judgmentsNNSCl?FWCli-1 tag+i word RB reliesNNSh|?5VBZh|?5?i-1 tag+i word NN operatedVBN+VBD+?i-1 word hatesPRP$9vPRP9v?i-1 tag+i word NN foolNNˡE?NNSˡEĿ i+1 suffix onPRP$nDTK7ANN&1@PRP +RBRy&1?NNPSbX9?WDTK7AFWMbXEXClJJRV-?VBGX9v?VBN)\(@VB+?INx&1NNP9vVBDy&1?VBPZd;?JJm VBZK?RPKRBOn?NNS333333@CCxCDxJJS i-2 word topNNffffff޿VBDʡE?VBN`"RBuV?IN rhDT rh?RP+JJX9v?i+1 word copperNNPVBD~jtVBNCl?JJA`"i-1 word theatricalNN"~jNNS"~j? i suffix uhJJzGRBK7UHx&1@i-2 word linksVBZv/NNSv/?i-2 word surgeNNrh|?JJCl?VBD7A`VBGx&i-1 tag+i word DT categoryNNx?JJx޿ i word floppyJJx&1?NNx&1i-1 tag+i word VBP executedVBNjt?JJjtֿi tag+i-2 tag NN TOVBNh|?5ֿJJRQ?NNPSNNSx&?DTJ +VBZp= ףNNQINOnRBRQWDT?PRP~jtxVBGS㥛PRP$)\(?RBI +?JJ?RPrh|@VBDK7ѿi-1 tag+i word VBN seizedVBN rh?JJ rhi+2 word strongerRPDlٿEX}?5^IRB(\?VBNvVBDv?i-1 tag+i word -START- addsVBZoʡ @INClNNP~jti-1 tag+i word TO fiveCD333333?NNP333333i word pediatricianNN/$?JJ/$i-2 word flightNNPGzVB|?5^@NNS㥛?POSS㥛?VBPʡERB{GzVBZS㥛i-1 tag+i word : numberedVBNZd;OǿVBDZd;O?i-1 word eliminatedCDx&1?NNx&1i word virtuesNNST㥛 ?JJT㥛 i-1 tag+i word , arguedVBP-VBN rhVBD-@i+2 word sharplyJJ5^I VBD5^I ?i-1 tag+i word CD downRPffffffINffffff? i word herbNNrh|?VBNX9vJJZd;i-1 tag+i word ) dullJJʡE?NNT㥛 VBDSi-1 tag+i word IN favorNNS~jtNN~jt?i tag+i-2 tag RB NNPS NN/$VBDK7?VBPx&?INh|?5?JJRԿVB r?VBNK7RB|?5^?VBZ rRBRMbi-1 tag+i word TO presentVB333333?JJ333333i-1 tag+i word PRP$ muchJJ"~j?RB"~jԿi-1 tag+i word RBR committedVBNClJJCl?i+1 word courtingRBI +?JJI + i word agentsVBZˡEĿVB/$NNPS{GzNNS1Zd? i+2 word kgbVBN+?JJ+i-1 tag+i word : confirmVBP)\(?NN)\(i-1 word arthurianNNSK7A?NNK7Ai-2 word pesticidesVBP\(\?VBD\(\ i+1 word westVBZ~jt?NNS~jtJJvNNK7ѿVBGX9v? i word liningVBGFxNNFx?i+2 word themesVBDA`"VBZA`"?i+2 word fulfillingVBZT㥛 пNNST㥛 ?NN/$IN/$? i word s&pJJsh|?NNP(\?NNPSSNN$C?i-1 suffix alkVBZ{Gz?NNSQRP333333 RBQJJGzֿINGz@i+1 word availVBnJJn?i word comedicJJn?NNni+1 word hydraulicVBZA`"@POSA`"i+1 word entriesVBG/$?NN/$i+1 word squalorVBNZd;߿JJZd;? i-1 word sen.NNPSzGNNPzG?i word enhancesVBZFx?NNSFxi-2 word deterNNPSM@NNS(\NNX9vJJ(\?NNP#~ji-1 tag+i word NN disputeVBPCl˿NNCl?i-1 tag+i word NNS denyVBZd;VBPZd;? i word nrcNNPS\(\ϿNNP\(\? i+2 word smugPDT/$?JJ/$ӿi-1 tag+i word TO allayVBK7?JJK7ٿ i word naplesNNPS;OnNNP;On?i-1 tag+i word VB floraNNS?JJzGNNQi-1 tag+i word , eggsNNSjt?NNjti-1 tag+i word NNS contemporaryJJ+?VBP+i-1 tag+i word , valuedVBNZd;OͿVBDZd;O?i word settingNNZd;?JJ~jtVBZuVNNSClVBGjt?i+1 suffix ife JJRx&?JJ+@VBGZd;?NNP(\?RBRx&NNSI +NNPSSۿRPHzG?RBHzGNNq= ףpVBD rhi+1 word dynamicNNPJ +JJJ +?i+1 word sensitiveRBZd;?JJRrh|JJZd;RBRrh|?i-1 suffix ssaFW~jt?IN~jt i suffix ripNN/$?NNS5^I RBRʡEJJCl߿NNPV-?i+2 word arrangementsCCd;O?NNSd;O i word boostsVBZn?NNSx&1ؿVBD rh i word ledVBDm?NN rhVBN(\ @JJ%CNNPS㥛i-1 tag+i word DT seeVBP;On?JJ;Oni-1 tag+i word DT officeNNSNNPS?i-1 tag+i word NNP circulateNN!rhVBP!rh?i-1 tag+i word CC remainedJJףp= VBDףp= ?i+1 suffix absJJCl?RBCli-1 suffix teaVBN(\JJ-?VBDx&1i word wassersteinJJ^I +NNP^I +?i+1 word sonataJJnNNPn?i+1 word maintainenceJJw/?RBw/ i word firstVBlVBP!rhLS\(\@NNP +?RBV-o@FWGzNNSM NNGzJJRvVBZK7AJJ\( @VBD~jtJJSK7AVBNvi word stretchNN%C?VB%Ci-1 tag+i word CC neighborhoodNNCl?RBClۿi-1 tag+i word , vivaFWT㥛 ?VBDlNN(\i-1 tag+i word CD hitNNoʡ?VBDoʡi-1 word interpretsVBPGzNNS+JJ ףp= ?i-1 tag+i word VB persuadeVBK7?JJK7i-1 tag+i word NNP falteringVBGl?NNl¿i-1 tag+i word VB forwardRBxJJx&1RPX9v@i-1 tag+i word JJ seriesNNx&@NNPClɿNNPSMbXٿNNSQi-1 tag+i word RB refusedVBN/$VBD/$?i-1 tag+i word NNS noDTV-?VBPSRBZd;O?i-1 tag+i word FW avertsVBZy&1?NNSy&1i-1 word ultimatumsWDTV-INV-? i word powerNNPSDlJJR+NNMbX9 @NNPV-i word rostenkowskiNNP5^I ?VBD5^I i-1 tag+i word MD allDTX9v?PDT/$VBCli+1 suffix ize NN9v?INffffffDTjt?NNS(\?NNP5^I VB(\RB(\?WDTnJJh|?5?VBZ(\i+1 word house NN ףp= VBD+POS/$?''/$WDTOnRB1ZdJJR1Zd˿JJS㥛?NNP}?5^I?INʡEDTMbX?VBNPn?i word underwritesVBZ-?NNS-˿i-1 word provisionINOnۿVBZp= ף?NNS!rhJJv/?VBD333333VBN333333?RB%Ci-1 tag+i word RB agonizeVBZ rVBV-?VBP+i-2 word scandalJJS?NNSi+1 word furnitureVBZ!rh?NNS!rhi word copyingVBG-NNl?JJ+NNP? i suffix vs.JJ1ZdNNuVFW rh @VBDtVRBMIN&1@VBZT㥛 NNP(\i word objectivesVBZ^I +NNSPn?JJ㥛 i-1 tag+i word , associateJJʡE?VB|?5^NNKRB333333 i+1 word anRBRFx?JJR|?5^ڿVBD= ףp=@WDT"~jDTS?RBSʡEPDTd;O@JJSffffffSYMB`"VBPZd;?NN rhPOSV-VB(\?PRP"~j?IN-@VBGV- @VBN333333JJnJRPZd;?NNPMbNNPS~jtx?PRP$"~jܿVBZd;O?RB|?5^NNSx&1i+1 word powersJJ1Zd?VBNv/NNi+1 word errorsNNP$CVB!rhVBGuVJJ(\@NNX9vRB(\i-1 word accusationsVBGA`"?NNA`"i-1 tag+i word DT biteNNS1ZdNN1Zd?i-2 word excessiveNNPSQNNPQ?i-1 tag+i word NNS carpVBZd;OVBPS?NNMbi+2 word reflectingRBd;O?NNSzG?RBRh|?5οNNzGʿIN7A`i-1 word revolutionVBG-?NNzGJJV-i word pollutionJJ5^I ˿NN5^I ?i-1 tag+i word PRP$ roaringVBG/$NN/$?i-1 tag+i word VBZ reportedVBNZd;O?JJZd;Oi+2 word cancerJJn?VBDh|?5INV-RB`"?VBNT㥛 #i-1 tag+i word -START- stockholdersNNS~jt?NNPS~jtۿi+2 word huskerVBN\(\?NN\(\i tag+i-2 tag CD VBNNN&1NNS~jt?JJRClJJHzG?NNP+?i-1 word excludingNN~jt?NNPuV?VBG)\(JJ)\(i word disabilitiesNNPSRQ?JJp= ףNNPi-1 tag+i word IN reichNNP+?WP+ i+2 word creeNNvNNPv?i-1 suffix kupNNX9vJJQRBZd;OIN|?5^?i-1 word decentNN9v?RB9vi-1 tag+i word CC wholesaleJJsh|?@NNsh|?i-2 word seethingJJRB`"NNB`"?i-1 word applyRBx&1?JJx&1ܿi-2 word cloudNNJ +FWJ +?i-1 tag+i word NN robesNNS(\?NN(\¿i-1 tag+i word RBS vuNNV-?RBV-i-2 word nestleNNS?VBDSӿi-1 word aviationVBP{GzNNS~jtNN~jt?NNP{Gz?i word victorianNNP'1ZJJ'1Z?i-1 word insiderNNNNS@VBNi-1 tag+i word CC waterNNffffffƿNNPffffff? i suffix TOTOx&?RBtVNNP-ƿ i word humidJJK7A?NNK7Ai-1 tag+i word IN sleekJJDl?NNDl i+2 word bayNNV-NNPV-?i+1 word scrapsVBN~jtNNX9vοJJOn?i-1 tag+i word VBD bipartisanVBNjtJJjt?i-1 tag+i word -START- canonieNN rhNNP rh?i-1 tag+i word NNPS upRPZd;O?NNPZd;Oi-1 word discardedDTx&1?PDT r?WDT&1RBJ +INGzi-1 tag+i word RB winVBPoʡ?VBDoʡi-1 tag+i word DT limitedNN7A`JJR7A`JJMbX9ĿVBNMbX?i-1 tag+i word VBZ steeringVBGffffff?JJffffffi-1 suffix vecNNS rhNN?RBT㥛 пi word utilityNNPMbX?NNjtINd;Oi-1 tag+i word DT maronitesNNPS`"?NNP`"i-1 word reaganNNPy&1JJZd;?NN +?VBDOn?POS+?RB{GzVBZ+ i word importJJjtNNP rhVB5^I ۿVBPM?NNPn @ i-1 word orCCMbX9?RBRS㥛CDQ?EXd;O?IN1ZdVBNE@NNP/$DTRB~jtRBS-?NNPSMbXVBD+JJp= ףRPQVBS㥛@JJSsh|??VBP/$ۿVBZQ?NNQٿFWQNNS!rh?JJRʡE?PRP$+?VBGDl?i-1 tag+i word IN backVBZx&RP}?5^IJJ{G@NNFxVBPx&?RB7A`i word sustainableJJ333333?VBZS˿VBK7Ai word applicationsNNSʡE?JJʡE i word riseNNPS rNNCl@VBD+VBNX9vVBP;On?JJ$CNNSK7AVBFx?i-1 tag+i word WRB properlyRB{Gz?JJ{Gzi tag+i-2 tag PRP RB MDDl?VB?5^I ?RBVBDrh|VBZ1Zd?NNMbPOSS?VBPCl@JJjt޿INMbP?i-2 word arabsRB/$?JJ/$ۿi-1 tag+i word DT nuttNN~jtNNP~jt?i word improveNNMbVBD/$PDTVBP|?5^?IN!rhVBDl)@i+1 word tradeVBNy&1VBDQ?JJR5^I ?VBsh|?ݿVBGK7A?NNx&JJSV-?POS+?RB rh?NNS"~NNPS-JJ&1@RBRrh|׿VBZ+NNPZd;?i-2 word excludesNN"~j?JJ"~j̿i+1 suffix tosRB+NNP+?i-1 tag+i word NNP historicallyRB}?5^I?NN}?5^Ii word illuminateVB)\(?NN)\(i-1 tag+i word JJ sidewaysRBMb?NNMbؿ i word pairedVBN/$?VBD/$i-1 word ambleRB"~@IN"~i-2 word huggedVBNFxVBDFx?i+1 suffix cryNN+?JJQٿVBN!rh?i-1 tag+i word POS flyingVBGK7ɿNNPK7?i-1 tag+i word WRB beNNPK7AVBK7A?i-1 tag+i word -START- giantNNףp= ?JJPnNNPsh|?i-2 word looselyNNCl?JJCl i-2 word sirNNP-?VBZGz?NNPS-NNSGzi-1 word livedRB`"RP`"?i+2 word damagedVB= ףp=VBD= ףp=?i+1 word unanimouslyVBNv?JJvi+1 word merchandisingJJ|?5^?RB|?5^i+1 word increase VB-NN"~WDTPn?JJ|?5^?INPnVBZx&RBK7RBR-?CD5^I ?VBN㥛 ¿NNSx&?NNP ףp= i suffix EdNN= ףp=NNP= ףp=?i word determiningVBP^I +VBG-@NN+i-2 word raskolnikovVBZZd;O?VBPZd;Oi-1 tag+i word NN airborneNNS+JJ+?i-1 tag+i word IN continuingVBG;On JJnJ@NNS㥛i+2 word institutionsDTbX9RBK7A`?INx&1?i-1 tag+i word NN cramsVBZZd;?NNSx&1JJQ i word jazzyNNS+JJQ?NNʡEi word stunningVBGZd;OJJ㥛 0@NNOni-1 tag+i word IN homoNNV-@NNPV-i-1 tag+i word TO pressJJ|?5^NN/$VBS㥛? i word vs.IN&1@VBZT㥛 NNP(\JJ1ZdNNuVFW rh @VBDtVRBMi+1 word controversiesJJ^I +?NN^I +i-1 tag+i word NNP criteriaNNSHzG?NNHzGi+2 word scientistsNNS+?NN+RBK?INKi-1 tag+i word -START- alleganyDT +޿NNP +?i word emphasizesVBZS?NNSw/RBzGi-1 suffix oidJJRNbX9пNNSlVBٿVBGX9v?NNuV?VBNMbпRBR|?5^JJK?i-1 word boostRBw/NNx&1?VBPZd;NNSOnÿJJ(\?i-1 tag+i word NNP chemicalsNNPSV-?NNPV-i-1 tag+i word JJ upsideNNGz?JJp= ףRB +οINjt޿i-1 suffix xesVBlVBDoʡ?VBNˡEVBP㥛 WDTCl?JJԿINCl i suffix ugsVBK7ARBKNNOnVBD= ףp=JJx&1VBZ= ףp=?NNSbX9@NNPuVi-1 word eventually VBPV-VB"~j?JJ rпVBDʡE?JJRnٿVBNw/RB7A`VBZuV?NNSuVi-2 word helped VBOn@JJK7?VBP|?5^ڿRBrh|INK7RPK7?NNSSVBG|?5^NNV-VBD|?5^ i word hansonNN rؿNNP r? i word lordsNNPS(\@JJrh|NNP-i-1 tag+i word NNP miningVBGtVοNNtV?i-1 suffix sieNNPSZd;O?NNPZd;Oi word schwinnJJ +NNP +?i+1 word improvisationNNGzJJGz?i word clarksburgNNPSGzNNPGz?i-1 tag+i word DT sameJJL7A`@NN(\NNPDli-1 tag+i word NN disclosedVBNL7A`VBDL7A`?i-2 word middayVBN +JJ +?i-1 tag+i word DT splitVBNsh|?JJA`"NNx&1?i-1 tag+i word IN pastJJFx?NNFxi-1 word citiesINSVBNffffff?JJS@VBDffffffֿi+2 word abilityJJˡE?NNˡEܿi-1 tag+i word RBR optimisticJJGz?VBPGz i+1 word godsNNPMbX9JJZd;?NNQi word statuteVBK7NNK7?i word promiseVBZ/$ٿVBPx&1?NN-˿RB%CJJ rhi-1 tag+i word DT extendedVBNQJJQ?i word refreshingVBGT㥛 JJT㥛 @i+1 suffix wonNNPK7A`?NNPSK7A`i-2 word figuredDT\(\?JJR\(\i-2 word promptVBG333333JJ~jt?NNCli word manufacturingVBGMbX9JJzGNN#~j<@NNP333333?i-2 word directsNNSX9vJJV-@NN+i+1 word overdrawnRBMb?INMbпi-1 tag+i word CD westJJL7A`?NNPL7A`i word residuesVBZS㥫NNSS㥫?i-1 suffix danRBʡEVBD5^I NNP\(\?i+2 word reviseJJq= ףp?NNS= ףp=VBNףp= NNѿi word engulfedVBZX9vVBG-NNZd;VBDx&1? i+2 word rossINZd;O?VBZFx?NNSFxNNPV-?VBDZd;OJJV-i-1 tag+i word TO generateVBCl?JJCli-1 tag+i word -START- cadburyNNP(\?NN(\i tag+i-2 tag NNS RBSVBDQ?VBPoʡ?VBNV-i-2 word owners VBN|?5^?VBPv?VBK7ARBSh|?5?JJSh|?5޿NNSmNNPK7A`?NNPSK7A`VBDFx?i+2 word zeminNNd;O?JJd;Oοi-1 tag+i word DT happyJJ'1Z?NN'1Zi+1 word viewsJJ(\?NNP(\i-1 tag+i word , publicistNN~jt?VB~jti-1 tag+i word NN resultedVBN#~jVBD#~j@ i suffix fleJJVBD}?5^IRB\(\@NNV-i+1 word timberlandsJJZd;O?RB\(\NNPCl߿ i word halvedNN7A`ҿVBDQVBNvCDffffffƿJJ(\@JJRjt޿i word regularJJ+N@VBoʡVBNX9vNNd;Oi-1 tag+i word -START- businessNNPʡENNʡE@ i word hocNNPS;OnNNP;On?i-1 word trialsVBNZd;OVBDZd;O?i-1 word drinkingIN+?NNp= ףJJffffff޿i word smokersNNS;On?JJR;Oni-1 tag+i word FW vriesRB+NNP+? i word epaNNPSCl׿NNlNNPS? i suffix 448NNSp= ףCDp= ף? i-1 tag+i word -START- microsoftNNP~jt@NNSx&1пRBvNNv i word fatsNNSL7A`?JJL7A`i-1 tag+i word JJ campsNNS|?5^?NN|?5^i-1 tag+i word DT norwegianJJZd;?NNPZd;i-1 tag+i word VBP unusuallyJJA`"RBA`"?i+2 word commitVB"~NN"~?i-1 tag+i word -START- pleaseVB/$@NNS/$NNtVNNPˡEi-1 tag+i word DT taxNNPS1ZdNNENNP&1? i word autumnNN}?5^I?JJ9vڿIN$Ci+1 word struggleJJnѿVBG/$?VBNsh|??NNNbX9NNPSi+1 word solicitationsJJQ?NNQֿi-1 tag+i word -START- rigidJJ/$?NNP/$i-1 tag+i word NN agentsVBZˡEĿNNSˡE?i+1 word sandsJJuV?NNuVi-1 tag+i word DT nazisNNPSx&?NNPx& i word readyNNP`"VBZd;OJJV-@NNL7A`VBD㥛 VBNK VBP-RBK7ѿi-1 tag+i word NN turmoilNNS/$NN\(\?RBA`"i-1 word pitchesVB-VBP-?i-1 word gooseberryNNSˡEĿRBRGzNNX9v?i-1 tag+i word PRP producesVBZCl?VBDCl i-2 word painRBR +NNL7A`?VBGL7A`JJR/$?JJZd;i-1 tag+i word DT looseRB(\?NN(\i-2 word subsidiaryNNPSK7A?VBD?5^I ?VBN~jtJJ;On?NNPx&?VBNbX9i+1 word abbieVBZbX9?NNSbX9i-1 tag+i word , liesVBZK7A`?NNSK7A` i suffix duVBZZd;NNnٿNNPGz? i word freelyRBffffff?JJffffffi-1 tag+i word TO eastJJK7NNP5^I ?VB= ףp= i word glowedVBP(\VBD(\?i+2 word underRBZd;?JJRV-RPV-JJB`"?VBDy&1PDTnNNPS;On?VBNh|?5?RBRd;O?DT~jtNNSZd;ONNP\(\VBV-¿VBPjtIN|?5^ @VBG?5^I @NNK7i tag+i-2 tag IN CCIN ףp= ?DTzGJJRn?VBG%CܿNNV-NNSSRBZd;O?WPFxCCDlRBSMbX9RBRnPRP|?5^?JJrh|@VBDV-?WDTFx?VBZDlNNP+?JJSCl?VBNV-?i-1 tag+i word RB lightJJ5^I ?RB5^I i+2 word acquisition JJSClJJ)\(?NNP5^I VBX9v?NN rVBDX9vRBSCl?VBNX9v?RBRRQпi-1 word hurdleVBZQ?NNSQi-2 word proceedingsJJZd;INZd;@i-1 tag+i word CC tryVBn?VBPxNNy&1i-1 word insulinsVBPZd;?VBNNbX9NNNbX9VBDNbX9?VB(\i+1 word hornsJJ5^I ?NN5^I i-1 tag+i word '' oneNN?5^I CD?5^I ? i word havocNNSZd;ONNZd;O? i suffix amnRBZd;O?JJZd;Oi-1 word squareNNB`"?RBSݿINHzG?VBZQ?DTHzGѿNNSjtĿNNP'1Zi-1 tag+i word `` batibotNNPK @NNSZd;NNX9vFWq= ףpi-2 word increase VBPK7ARPlҿNNSS㥛JJQ@VBG|?5^?NN +VBNRBbX9?INh|?5?VBv?i-2 word purchase INv?VBZX9vJJRʡE?NNPQ?RPy&1RBRʡE޿VBNv?RBPn?DT?5^I ?NNSX9v?JJ rNNMbX9CDT㥛 ? i+1 word downRBSGzPOS|?5^?VBP~jt@JJ?5^I JJRNbX9VBZjt?VBGB`"@RBRQNNI +DTZd;?NNPGzVBDK7@VBN?VB~jt@NNSjti+2 word democracyJJ5^I NNP5^I ?i+2 word cutting JJQ?NNsh|??VBNFxVBnٿRBRQJJRQ?RB|?5^VBZClNNSZd;O?NNP'1ZԿ i+1 word pleaRBRV-VBNoʡ?PRP$C@JJ1Zd?PRP$~jtVBGA`"NN!rhi-1 tag+i word NNP chargingNN}?5^IԿVBG}?5^I?i tag+i-2 tag $ (JJV-CDV-? i pref1 GWDTJJy&1VBZ +?VBQ?CDbX9NNPSX9v@VBG!rh@FWjt?POSNNSrh|NNPV-2.@PDT?5^I IN~jtVBPQRBMbXVBDxWRB7A`CC1ZdMDffffffJJRX9vUHʡEVBNI +?NNi+2 word sessionRPT㥛 RBy&1 @NNL7A`JJx&?IN(\VBGClVB rh?i-1 tag+i word NNS includedVBNtVοVBDtV?i-1 word monthVBx&VBN{GzVBPx&?IN^I +?NNPX9vֿVBDZd;O@RBRsh|??RB!rh?NNQWDTV- JJ`"?VBZsh|?DT`"?RPoʡi-1 tag+i word RP frogsNNS= ףp=?RB= ףp=i word declaringVBG;On@NNK7VBD-i-1 tag+i word CC imposeVBA`"?JJA`"i-1 tag+i word TO evenVBV-?RBV-i+1 word framingDTuVINuV?i-2 word colorNNV-?JJV-i+2 word accordJJJ +?RB~jt?PDTJ +VBG%CԿNNv/i-1 tag+i word POS surpriseJJ7A`?NN7A` i-2 word n.v.NNPSݿVBNx&JJMbX@NNX9vVBD-ƿi-1 tag+i word VBP fewerJJR/$?NN/$i-2 word sakuraNNq= ףp?INq= ףpi-1 word royalVBZA`"NNPS"~jNNS-?i+2 word disciplinaryNNK?RBV-VBD/$i+2 word servantsVB-VBNlJJbX9?i-1 tag+i word CC workedVBNMbXVBDMbX?i-1 word embezzlingJJRE?RBREi-1 tag+i word NN licenseJJ`"NN`"?i+2 word assuranceVB9v?JJI +RB9vNNPI +? i word back VBN)\(VBP9v?NNSSNNPMbRP/$!@RB@(@VBD+FW= ףp=JJB`"@INK7VBZ\(\VB'1ZNNrh i word slotsNNSCl?NNCli+1 word sightVBP rh?RB rhi-1 tag+i word DT anticultNN{Gz?JJ{Gzi word combinedVBD&1 VBNMb@JJDl@NNClNNPv?i word appreciablyNNZd;ORBZd;O? i suffix orfNNPX9v?RBʡEJJ~jti+1 word !DIGITSVBD5^I @WDTS㥛NN +CC= ףp=?RBR rhMD= ףp=JJSS?VBZw/@NNSx&1PRP$QRP)\($"~ @POSm?PDT%CJJRlڿVBPL7A`?DTPn?VBV-?VBN= ףp=PRPOn?RBn@RBSffffffNNPS|?5^JJClۿVBGS㥛?NNPKCD?INuV?i-1 word escortVBZ~jtNNS~jt?i-1 tag+i word NNP executiveVBPˡENN1Zd@JJjtNNPS㥛?i-1 tag+i word CC defaultJJV-NNV-?i+2 word wirelessJJzGNNPzG?i word damagedVBDSNN= ףp=NNSh|?5VBN{G@JJ?5^I i+1 word follyJJ333333?NN333333i word transformsVBZzG?VBPjtNNSS㥫i-1 tag+i word TO gardeningVBGFxNNFx?i-1 tag+i word NNP orchestrasNNS(\?PRP!rhRB'1ZFWʡEi-1 tag+i word NN judgeNNGz?RBGzi+1 word targetedNNףp= ?VBGףp= RBQ?JJQi-1 tag+i word NN refundingNNA`"VBGA`"?i+2 word amocoVBDv/?VBNmNN%Ci-1 tag+i word JJ disksNNSGz?NNGzi word countermoveNNS/$ֿNN/$?i-1 tag+i word NNP nazionaleJJ'1ZNNP'1Z?i-1 tag+i word IN poorerJJRQ?JJ~jtFWMbi-1 tag+i word TO deliberatelyVBh|?5RBh|?5?i+1 word opportunitiesVBDVBNMbпNNCl?JJGzi-1 tag+i word IN goldenJJMbNNPMb?i word subsidyNNjt@NNSQVBN#~jJJI +i-1 tag+i word DT stormVBPx&1NN+?JJK7VBD(\ȿ i word amenUH rh?NNP rhi+2 word peanutsRB"~ڿIN"~? i+1 word aztVBG/$?NN/$ٿINNbX9?VBZ+?DTNbX9NNS+ǿ i word briskVBzGJJDl @NNMbX9i word unhappyVBPQJJQ?i+2 word somewhereRBQVBD(\VBN= ףp=?i+2 word glamorousRBRZd;?JJRZd; i word cvnJJA`"NNPA`"? i word campsVBZ+NNSS㥛?NN|?5^i-1 tag+i word DT poorerNNlJJR rh?JJZd;i-1 tag+i word `` garyJJ}?5^INNP}?5^I?i-1 tag+i word IN namNN^I +NNP^I +?i-1 tag+i word DT quickestJJS;On?NN;On i word majorNN~jtVBDףp= NNPClNNPSd;OJJ|?5^@i-1 tag+i word NNP containersNNSzGNNP$C?NNPS&1?i+2 word employmentRB;On?JJ;Oni+2 word guberIN/$?WDT/$VBPX9v?JJSX9vi-1 tag+i word CD australianNNPx?JJxֿi-1 tag+i word JJ announcedVBNzGVBDzG?i-1 tag+i word RBR validJJ&1?RB&1i+1 word receptivityVBG/$?NN/$i tag+i-2 tag RB RBDTy&1RBX9vϿNNPMbVB&1?EXX9v?NNPS(\?JJS?NNS?CD|?5^RP7A`ҿVBNJ +?VBPq= ףp?VBZlPRPZd;OCC/$?RBR&1?INh|?5?VBGK7A`?JJR;On?WDTffffffNNSK7A`VBD +i-1 tag+i word DT femaleJJzG?NNSV-NNV-?i-2 word strayJJV-INV-?i+1 word insidersJJVBD?i-2 word trainingVBD(\VBN(\?NNSClEXCl?i-2 word folksNNDlEXv?RBJ +ѿi+2 word federicoJJ+?NNP+ i word flashyNN!rhNNP/$JJK7A?i-2 word repertoryVBNPnؿVBDPn?i word disloyalJJZd;?NNʡENNP(\i-1 tag+i word DT overshadowingJJ(\VBG(\?i-2 word winnerNNS;On¿NN;On?!i-1 tag+i word -START- sentencingVBGMb?NNPMbi+2 word intercollegiateJJSMb?RBSMbi-1 tag+i word RB noticedVBN~jt?JJ~jt i word inputsNNh|?5NNSh|?5?i word lecturerJJRʡENNʡE?i+2 word reopeningVBNB`"?JJB`"i+1 word independentJJx&1?NN(\?VBN~jtVBPQRBNbX9?NNP/$VBGI +ƿi-2 word varietyNNS~jt?NN\(\JJˡE? i-1 tag+i word PRP$ embarrassingVBG+JJ+? i+1 word st.JJp= ף@VBNClNNuVݿCDMbi word citicorpVB%C@NNSX9vNNʡE޿JJMbPNNPKi+1 word vriesNNP?FWi-1 tag+i word VBZ exceptVBsh|?JJnʿINʡE? i word thermoRB{GzJJ)\(NNP= ףp=?i-1 tag+i word JJ liberatedVBN%C̿JJ'1Z?VBDK7i+1 word accidentJJh|?5@NN1ZdNNPQi-1 tag+i word ) partnershipsVBZ"~NNS~jt?NNZd;Oݿ i-1 word ruthNNPSHzGѿNNPHzG?i+1 word negotiatorJJv/?NNZd;ONNPEi-1 tag+i word JJ courtesyNNM?JJMi-2 word totaledCD(\?JJ(\i-1 tag+i word , slowlyJJMbXVB~jtRB(\?i-1 word appear RB/$IN%C@JJRrh|JJbX9?VBD|?5^RBSZd;O?RBR rhVBNK@NNtVJJSZd;ODTB`"i-1 tag+i word VBZ fundingVBG +NN+?JJQٿ i-1 word s.a.VBGq= ףpNNFx?NNPPn?i-1 tag+i word RB walkingVBG-޿NN-?i-1 tag+i word IN jewboyNNL7A`?NNPL7A` i word wailVBw/?NNw/ i suffix zorNNV-?JJv/VBZh|?5i-1 tag+i word VBZ hisPRP$\(\?NNPS\(\i-1 word reorganizesJJ r?NN ri+1 word jacobsonNNPSE?NNx&NNP(\i-1 tag+i word NNP conformVB%C@VBP&1NNQi-1 tag+i word NNP accountVBPGzNNGz?i-1 tag+i word NN purchaseNNK7A`?RBK7A`i-1 tag+i word JJ droppingVBG rh?NN rhi-1 suffix madUH9vVBD9v? i word arsonNNS1ZdVBNMbNN|?5^?i-1 tag+i word NN rumoredVBDrh|VBNrh|?i-1 word undercutWDT^I +RB^I +?i-1 tag+i word WRB churchNNQ?JJQi+1 word stalloneRBR|?5^NNP|?5^?i+1 word demonstratorsNN$CJJ$C?i tag+i-2 tag '' FWVBZNbX9NNSNbX9?i-1 word longhaulVBGʡENNʡE?i tag+i-2 tag ( VBNNZd;O?JJ1ZdNNPʡE i suffix ECDNNP|?5^?VBZ|?5^i+2 word reportersVBGI +?NNI + i-1 word she VBZJ + @POSQVBN㥛 NN rhVBDp= ף@VBPh|?5NNS~jtNNPB`"MDV-VBZd;i-1 tag+i word PRP$ vacuumNNS㥛 NN㥛 ? i-1 suffix onINx&1?JJSNbX9?VBDV-VBN-VBPV-WDTK7A`@PRPzG?RB-PRP$ +VBZ+DTZd;?JJRy&1MD$CNNPSʡE?VBGS㥛JJZd;O?FWClNNSX9v?PDTˡE?CDnUHZd;O׿WP ףp= NNQ?NNPMb`CCl?RBRʡEi-1 tag+i word DT warrensNNSX9v@NNP(\NNPSV-i word turnkeyNN%C?JJ%Ci-2 word plausibleNN^I +׿NNP^I +?i-1 tag+i word NN earnsVBZ?NNSi-1 tag+i word MD greatlyVBRQRBRQ? i word r.iNNPSOnNNPOn?i word somewhereRB{Gz@NNZd;OVBN ףp= VBP-JJ|?5^VBZh|?5NNPV-?VB+i-1 tag+i word WP$ bushyVBN㥛 JJ㥛 ?i-1 tag+i word , fennelNNSSNNS?i-1 word substituteNNX9v޿CDX9v?i-1 tag+i word JJ bulbsNNSMbX9?NNMbX9i-1 tag+i word VBN leftVBNM?RBMi word informalJJCl?NNCli-2 word reactorsVBPCl?VBZClɿi word babelistsNNPSK7NNSffffff@NNPjt i+1 word boomNN= ףp= @JJ9vNNPףp= i-2 word progressVB rhѿVBGV-?NNM?JJV-NNPI +i-1 tag+i word DT respondentsNNPSGzNNSGz?i-1 tag+i word VBD negotiatedVBN+JJ+? i word spoutVBZnVBPn? i suffix LenNNPCl?VBCli-1 tag+i word VB lightJJ5^I ?RB5^I  i word vigilNNZd;?RBZd;߿i word wrongdoingNNHzG@JJSVBʡEͿVBGˡE i word sparkVBZ rhVB;On?NN~jti word counterweightJJZd;߿NNZd;?i+2 word severityVBN~jtVBD~jt?i word huggingVBGFxNNFx?i-1 tag+i word VB burnsNNS!rhԿVBZ!rh?i-1 tag+i word JJ momentumNNsh|??FWsh|?i+1 word navalJJS㥻NNPS㥻?i+2 word cancersJJRx&?RBRx&i-1 tag+i word IN tapeNNX9v?JJ(\RB|?5^i-1 tag+i word NNS adornedVBNKVBDK?i-2 word drinkerNNOn?NNPOni-2 word trend VBDB`"ѿVBPV-?INSVBZףp= DTS?NNV-RBGz@RBRDlٿJJMbX9?VBxi-2 word demandedVB{Gz?VBZ{Gzi-1 word fulfillDT(\?IN(\i-1 tag+i word NN outsideRBw/JJ&1?VBN/$IN?5^I @NNˡEi-1 tag+i word DT dinosaursNNSx?NNxi word tarnishedJJL7A`?VBNL7A`i-1 word covetedJJT㥛 NNPT㥛 ?i word disobedienceVBP1ZdNN1Zd? i word befallVBP rh?PDT rhi word controllerNN{Gz?VBN{Gzi-1 tag+i word DT pretrialJJ?NNi+2 word victorNNHzGNNPHzG?i-2 word legislationNNPSV-@NN+?VBDQ?VBPx&1JJzGVBZrh|NNPV-i-1 tag+i word VB increasingVBGMbX9?JJMbX9i-1 tag+i word CC discountVB/$NN/$?i-1 word telephoneVBM¿NNOnVBD㥛 ?VBP㥛 VBZ\(\NNSQ?i word dependingVBGtV@NNtVi+1 word catastropheJJR?RBRпi word newsworthinessNN +?JJ +i-1 tag+i word IN mafiaJJx&1NNPx&1?i-1 tag+i word VBZ controlledJJ rVBN r?i word regionsVBPףp= NNSףp= ? i+1 suffix aWDTJJo!NNSSCC&1?NNP-POSK7APRP%C?RBSKRBOnۿRBRp= ף?CD+INCl@JJSRQJJRZd;?VBG"~j @VBZffffff @WRB9v?NNPSZd;O PRP$%CFW ףp= ?LS$CPDT;On@NN1ZdVBNd;OVBPˡE@DTˡERP&1@VBD#~j @VBx&1 @i+1 word underwritersRP;OnIN;On?i+1 word monitoredWPףp= ?NNPףp= i word stumblingNNJ +VBGjtJJd;O@i-1 tag+i word CC produceNNJJy&1VBsh|??VBP&1?VBNV- i+1 word bitsVBG%C?JJ%Ci-1 tag+i word TO accountVBL7A`?NNL7A` i suffix 72CD(\?NNP(\ؿi-1 suffix zipVBDףp= VBP(\RP|?5^NNffffff?IN|?5^?i+1 word locationJJmNNm?i word offsettingVBG\(\?JJZd;ϿNNxi word uptempoJJ+?NN+i-2 word strengthNNn@VBX9v?VBGnRBX9vi-1 tag+i word `` towardINL7A`?NNPL7A`i-1 word statisticsVBPCl?NNK7VBDS㥛Կi-1 tag+i word RB highRBS㥛NNQJJ r@VBZףp= i+2 word edinburghNNSMbXNNPMbX@i-1 tag+i word DT driveNN)\(?JJ)\(i-2 word pricelessNNʡE?NNPʡEi-2 word spectraNNPˡENNPSˡE?i-1 tag+i word VB wonderVBCl?VBPCli-1 tag+i word NN hopsVBZx&1?NNSL7A`尿VBD&1i-1 suffix seeRBR$CJJ\(\@NNPMbRBl?IN-?DTsh|??VBMVBZHzGٿVBDMNN)\(JJRQ?WDToʡNNSSVBGE?i-1 word fishingNNSffffffNNffffff?i word pricingVBG|?5^NNl@JJ|?5^NNPS㥛i-1 tag+i word NNP tradedVBN~jth?VBD~jthi-1 tag+i word VBZ authorityRBvNNv? i suffix apyNNSV-NNGz@JJSi-1 tag+i word NNP conductVBP|?5^ѿVBZQVB rh?i-1 word europe NNPK7NNRQ?VBDX9vVBPK7?INCl?VBZS?JJ~jtWDTCl?RBzG?DTjtNNSSi-1 tag+i word : buyingJJNN?i+1 word screenNN+NNS/$JJ-?i-1 word linedRP}?5^I?RB +IN|?5^i+2 word inconceivableNNSS?NNSi-1 tag+i word IN mideastJJ|?5^?NN +NNPB`"i word cambridgeJJSNNPS?i-1 tag+i word VB disappointingJJA`"?NNA`"i-1 tag+i word JJ fartherRBS?NNS i suffix OODJJQNNQ?i-1 tag+i word CD ''')\(?POS)\(i-1 suffix ayaNN(\JJ333333?NNPRQ? i suffix NRCNNPS\(\ϿNNP\(\?i-1 tag+i word NN associatedVBNB`"@VBDB`"i-1 tag+i word JJS yieldNNPףp= NNףp= ?i-2 word allianzNNFxVBDK7A`?JJFx?VBNK7A`i-1 tag+i word IN schizophreniaJJRZd;ONNZd;O? i word lomasJJV-NNPV-?i-1 tag+i word , abruptVB rhտJJ rh?i+1 suffix xtsVBNS˿JJS?i-2 word reorganizationVBD"~?VBN/$WDT&1?JJ/$DT&1VBq= ףp? i-2 word landVBZ}?5^I?NNS}?5^IVB~jt@RP}?5^I?JJSNNSRB}?5^Ii-1 tag+i word VBN tradesNNS?5^I ?CD?5^I i-1 tag+i word IN hyenasNNSCl?NNCl i word depthNNSQNNQ? i word peerVBPV-?NNd;OVBZ?5^I ¿VBGz?i+1 word stylesVBGL7A`NNw/?JJPn?NNP&1i-1 tag+i word DT frivolousJJ-?NN-i-2 word order VBGZd;NN5^I ?RBSq= ףpտJJSq= ףp?JJ/$NNPnVBZd;O?WDTjt?INjti+1 word beingNNS?JJS㥛INRQ?VBZ333333NNS333333?RPn?RB;Oni word agnelliNNPS-NNP-?i-1 tag+i word DT contextNNuV?JJ/$NNSI + i suffix CAPNNPS-NNP-?i word foreignersVB/$NNS?RBRV-i-1 word pathsIN333333RB333333?i+2 word facingJJRjt?JJjtNNPSۿRBRClNN%C?i-1 word physiologyNNPrh|?CDrh|i+2 word eduardNNS+NN +?NNP= ףp=?i-1 tag+i word `` todayNNSMbX9NNMbX9? i word reportVB/$RBClNNZd;@VBPK?JJVBZJ +NNS5^I NNPX9v@i+2 word believesNNPS(\@NNS!rhԿNNP/$i-1 word moderatelyJJRMVBNuVJJuV?RBRM?i+1 word partiesVBZvVBffffffֿNN'1Z?JJʡE?i-1 suffix icoRBK?NNSʡE?NN333333?JJ&1NNPNbX9i-1 tag+i word VBN laterRBR +RB +?i-1 tag+i word VBG downrightRB5^I ?RBR{GzJJK7i-1 tag+i word IN greaterJJRMbX9ԿNNPMbX9?i-1 tag+i word NNS scheduledVBD?5^I VBN?5^I ?i-1 tag+i word VBD warnedVBNS?JJSi-1 tag+i word RB grainVBClVBNbX9NNv?i-1 tag+i word -START- allstateNNtVNNPtV?i+1 word storiesNNPSOnVBGK7?JJMbNNffffff?NNPOn?i-1 tag+i word NNPS sanitaryJJ}?5^I?NN}?5^Ii-1 suffix d'sJJl?VBGli+1 word unfoldsVBZ rhNN rh?i+1 word windowNNV-?JJw/VBNMbX9?i+1 word symposiumsJJy&1NNy&1?i-1 tag+i word RB resultVB\(\?NN\(\߿i-1 tag+i word IN recycledVBNS㥛JJS㥛?i-1 tag+i word CC cholesterolNNx?JJx i word sageNNCl?RBCli-1 tag+i word VBZ ordinaryJJ\(\?RB\(\ i-2 word sortVBK7ٿRB`"NNffffff @JJROnJJq= ףpͿNNS/$i-1 word climbsJJRbX9?RBRbX9 i word fixingJJ|?5^NNX9vοVBGy&1?i-1 word purposelyVBZnVBDn?i-1 word stuckVBG%CNN%C?i+1 word doublesJJZd;ONNPZd;O?i-1 tag+i word NNP paysVBZ'1Z?VBZd;VBDE i-1 suffix d.NNP7A`?JJ7A`ҿi-1 tag+i word NN controlsVBZw/?NNSK7A`?VBDV-i-1 tag+i word -START- farmNNS@JJV-NNP'1ZVBjtNNSd;Oi+2 word ammoniumVBˡE?NNˡEi+1 suffix aztNN/$ٿINNbX9?VBZ+?DTNbX9NNS+ǿVBG/$?i+1 word sidhpurRB;OnIN;On?i-1 tag+i word -START- t.t.JJuVNNPuV?i+2 word mandatedJJSNNS@i-1 tag+i word NN dormitoryNN~jt?VBD~jti-1 tag+i word CC commencingVBGA`"?NNA`" i suffix ATE NNPS= ףp=JJS㥛?NNS㥛 NNPjtVBsh|?NNT㥛 @CDZd;RB?5^I @VBZsh|?i-2 word connectionJJ7A`ڿNNS333333@NNP333333NNK7@FW(\JJRV- i word review``NNHzG?VBOn@VBZGzNNS(\NNPGz?i word stockholmNNPSPnNNPPn? i-1 word katzNNPffffff?NNPSffffffi+1 word ambitionNNP-JJ(\?NNw/i word challengedVBN+JJClǿVBDDl?i-1 tag+i word IN giltNNPSHzGNNHzG?i+1 word donoghueDTQ?WDT+INZd;i tag+i-2 tag JJ JJSNN(\?VBPClJJ#~jĿVBZsh|?NNSsh|??NNPmݿ i-2 word area VBGMbNN'1ZIN+η?NNP#~j?VB/$?JJSZd;O?JJjtNNSOn?RB+η i word shot RBp= ףNNS`"VBS㥛JJGzNNd;O@VBNX9v@VBDv?VBP^I +VBZmi-2 word unpaidNNS㥛VBZy&1ԿJJuV?i-1 word mecaniquesNNPA`"?INGzFW&1ҿi-1 tag+i word NN speedingNNS㥛?VBGS㥛i+2 word cooledNNSxNNx?i-1 tag+i word RB eagerRBKVBP(\JJx?i-1 tag+i word NNPS rapeseedsNNSV-?VBNV-i+1 suffix eft RB?INtVVBGClRBSʡEJJSy&1VBPsh|?ſWDTtV?NNP;OnNN"~@VBDmRBRS?i-1 tag+i word DT ceoNNPZd;ONNZd;O? i-1 word use VBS㥛IN\(\NNPSRBˡEܿRP/$VBGX9vJJJ +@NNm?FWPn?VBNffffff?TOK7NNS&1?i-1 tag+i word IN empowerVBP333333?JJR333333i-1 tag+i word NNP americasNNPSˡE?NNPˡEi word practicesNNPSPn?NNPPn i suffix lid NNB`"[FW1ZdۿVBN|?5^PRP|?5^JJ+w@VBGSVBDffffff @VBZZd;NNS㥛 RB+?i word carltonsNNPSMb?NNPMb i suffix oisVBG-JJENNPX9v?i-1 word network IN{GzMDPn?NNMbX9VBDB`"?WDT{Gz?VBGMbX9?RBClVBZ|?5^NNS|?5^? i-1 tag+i word -START- announcedVBNvJJHzG@NNP5^I i-1 tag+i word `` temptingJJ?5^I ?VBG?5^I i+2 word batteriesVBZd;VBNZd;?i-1 tag+i word NN unnervedJJVBD? i word formedVBDlVBNCl?JJ;Oni-1 tag+i word VBZ implicitVBNuVJJuV?i-1 word alteredNNrh|?JJrh| i word wroteMDV-VBDjt?NNPB`"i-1 suffix mesRBR?5^I ?VBP333333?NNP ףp= ?VBOn?RBS@NN'1ZRBSv/տWDTh|?5?JJ^I +@JJRS㥛?CDzGNNS ףp= RPbX9?VBDh|?5VBN9vVBZmCC`"JJSK7?IN;Oni+2 word columnNNI +?NNPnNNPSףp= ?NNSv׿i word chattingVBG-?NN- i suffix skaNNPS'1ZܿNNP'1Z?i-1 tag+i word , southNNPS-JJ&1ʿNNPx&?i-1 tag+i word JJ negotiatingVBGh|?5NNh|?5?i-2 word residentialVBPV-VBNV-?i+1 word reliefVBDxJJʡE?NNP= ףp=VBN~jtxNNE?i-1 tag+i word CC discourageVBx&1?NNx&1 i word gannNNPSGz׿NNPGz?i+1 word lovelyRB%C?NN7A`?JJV-JJR+RBRx&1 i suffix libNNS|?5^JJX9v?NN~jthi+1 word unionsVBZPnNNPSnNNSZd;O?JJS?NNPn?i-1 tag+i word NNP athleticsNNPSoʡNNPoʡ?i+2 word stevensonNNPSClNNPCl? i word praiseRBrh|NNrh|?i-1 tag+i word TO emergeVBm?NNmi-1 tag+i word NNP getVBbX9?VBPbX9?NNP{Gz i-1 word drawNNSV-?NNV-i-1 word magnificentVBZʡENNS^I +?NN/$ÿ i suffix ggsNNPI +?NNPS +NNJ + VBPh|?5RBh|?5NNSRQ@i-1 tag+i word RB leadingVBG+JJ+?i+1 word confirmNNSףp= ?JJףp= i-1 tag+i word IN diphtheriaNNS rNN r? i-2 word busyPRPQ@PRP$Qi-1 tag+i word -START- insideIN+?NNP+i tag+i-2 tag JJ PRP NNzGVBDM?RB^I +?RP~jth?JJS?NNS̿NNPERBR)\(INMb?i word blunderVBʡE?NNSʡEi-1 tag+i word POS fifthRBMb?NNMbi-1 tag+i word DT exchangeNNL7A`?JJL7A`i-1 tag+i word CC outsideVB5^I IN5^I ?i-1 tag+i word RB isolatedVBNSJJS?i-2 word persistentRBp= ףINp= ף? i-1 tag+i word -START- typicallyRB`"?NNP`"i-1 tag+i word JJ turtleNNSZd;NNZd;?JJZd;!i-1 tag+i word -START- undeterredVBNzGJJsh|?@NNPzGҿi-1 word factuallyJJ}?5^I?VBD}?5^Ii-1 tag+i word -START- hhsNN^I +NNP^I +?i-2 word cheaperVBE?JJRCl@NNK NNP"~ji-1 tag+i word CC restrainVBPB`"VBB`"?i+2 word diminishedRBSINEWDTE?NNS?i-1 suffix td.VBNK7AпVBDK7A?i-1 tag+i word NN scrimpedVBN/$VBD/$?i+2 word unrealisticallyVBK7A?NNK7AVBNx?JJxƿi-1 tag+i word -START- ghostUHʡENNʡE?i-1 word reasonVBZX9vNNSX9v?JJx&?RBx&i+2 word complexNNPsh|?VBsh|??VBN-JJʡE@NN'1Zi+1 word building JJPn?JJS/$?CDtVNNPx&NNST㥛 ?NN r?RB|?5^INB`"?VBZV-i-1 tag+i word JJ slowerJJRQ?NNQi word sacrificeVBT㥛 ?JJT㥛 i+1 word several PRP$ףp= JJ +VBNv/?VBCl?DT?5^I VBGMbؿNN rhVBDQ@VBPbX9RB(\IN?5^I ?VBZy&1ܿNNSy&1?i-1 tag+i word NNP alliesNNPS+NNS+? i-2 word heRBzG?RBRw/?PRP$Pn@VBGWDT(\JJS'1Z?DT9vUHzGڿNNuVNNS- RBS'1ZNNPSrh|CD+η?VBNQVBʡE?EXv/?RPMb@PRPJ +?JJRMb?VBDE?JJ|?5^?NNPOnCCS?PDT$C?VBPX9vVBZ333333@IN!rh? i word unableNN rȿNNPSJJMb?i-1 word soberingNNSHzGNNHzG?i+2 word coupleVBPV-RBmVBGZd;ONN^I +?CC%CVBN9v?i-1 tag+i word NNS triedVBN9vҿVBD9v? i suffix OSTJJSZd;O?NNPZd;O i word ballotJJS˿NNS?i-1 tag+i word VBG sustainedJJ5^I ?VBD5^I i-1 word judiciaryVBZNNS?i+2 word taking VBNjt?WDTl?JJˡE?NNPSx?NN^I +?VBDjtNNSxVBG^I +RBRˡEDTli-1 word forkedINOnRPOn?i-1 word physicianVBP-NN-?i-1 tag+i word IN philosophyNNHzG?JJHzGi+2 word statementRB)\(?NNMbX9VBD rh?VBN rhWDTHzGJJMbX9?DTrh|?i-1 tag+i word `` considerNNZd;VBZd;?i+2 word malpracticeVBZX9v@NNSX9v i-1 suffix 'sNNSJ +VBJ +CCK?RBRV-PRP$&1JJ@POSJJR'1Z@RBS?VBGp= ף?RB-ֿNNPSJ +?VBDJ + VBP`"޿WP/$?PDTRQ?INOnJJSMb?DT ףp= ?PRPCl?CDx&1ܿWDT/$NN rh?NNP`"?VBNMbX9@VBZRPZd;FW'1Zi-1 word fingersRBK?INKi-1 tag+i word PRP keepVB|?5^ٿVBP|?5^?i+1 word democratsVBGy&1?CD +?WDT\(\JJDlIN\(\@NNPZd;Oi-1 tag+i word NN sandNN|?5^?NNP|?5^ѿ i suffix en RBףp= ÿNNS%CJJK7A`NNtVFW?JJStVVBPV-߿INK7 @VBMbX9 i+2 word saidVBDB`"JJS^I +?FWFx?VBPZd;OPRP$C?RBMbJJV-NNn@CDMb@IN-WDTVBZ|?5^VBvNNPK7@VBN~jtRBS^I +JJR/$?RBRw/?NNS9v?NNPSffffff?VBGV-i+1 suffix lloNNPmVBP-IN= ףp=?i-1 suffix and UHrh|?PRP$-ֿWDT+ÿRBS?RBR1Zd?EX!rhINX9vJJR{GzVBNq= ףp?RPMb?CCV-PDTx&ѿMDV-?JJMbX9NNSZd;?NNP rh?VBB`"?JJSX9vFWzGDTˡEԿ$/$?PRPV-?RBSMbؿNNPSZd;O?VBG㥛 ?WPZd;NN{Gz?POSsh|??VBD`"?VBZףp= ?CDy&1ܿVBPGzi+2 word designsNNSzGVBZzG? i word donbasVBw/NNPw/? i word valuedVBPxRBS㥛NNS(\NNClVBDOnVBN@i word restaurantsVBZv/NNPSv?NNSv/?NNPvi-1 tag+i word `` bestJJS rh?NN rhi-1 tag+i word NNS waveVBPNbX9ؿNNNbX9?i-1 word compartmentVBN㥛 ?VBD㥛 i-1 word tonightVBZK7A`ſPOSK7A`?i+1 suffix bor NNPSw/?NNA`"VBN|?5^?WDTFxJJMb?IN rh?VBDEؿDTX9v?NNPSi word unexplainedVBN\(\JJuV?VBD rhݿi+1 word effective NNl?VBDGzJJSMbRBSMb?RBRffffff?JJ-?JJRffffffVBN/$?IN?VBZ!rhNNSB`"?i+2 word asideNNPzGNNS\(\?RB\(\NNzG?i+2 word expenses VBN1ZdJJ= ףp=?NNMbX?VBD9vVBZDl?DTjt?NNS rhٿVBGʡEPDTjtRBZd;O? i+1 word stemJJ%C?NNˡEVBDy&1?i-2 word lauderVBZ= ףp=NNv/@JJGzVBDJ +i word ethyleneVBPS㥻NNS㥻?i+2 word leadsNNSA`"VBG/$?NN-? i-1 tag VBGRB`"?JJR/$?UHʡEPRP$Zd;?VBDjt?VBZ1Zd NNP5^I @WDT/$WP#~jFW+VBPV-RBRK7@INK7A`?VBG{Gz?JJL7A`PRP~jt?RBSHzGNNSS㥛PDTI +?CDˡE?RP/$?EX(\NNPSHzG JJSK7?VBNK7A?DT|?5^ʿNN~jt?VBlCC-?i-1 word surviveVB/$ݿJJ+?NNMbпVBN+RB^I +?NNPZd;O i word resaleNNS?RBK7AJJ|?5^i-1 tag+i word TO generalVBClJJCl? i+2 word stopVBK7A?NNPSJ +ѿRBSNNMb?JJRbX9JJMb?NNS r?NNPQi word diminutiveJJ1Zd?NN1Zdi-2 word blamedRBvVBNCl˿JJ ףp= ?i-2 word audienceVBN+JJ?5^I ڿIN+?VBZ/$?NN9vJJR\(\i-1 tag+i word CC expendituresVBZʡE?NNSMbXNN333333i-1 tag+i word -START- discountNNJ +ٿRBClJJQ?NNP|?5^?i+1 word pyszkiewiczNNjtNNPjt?i-1 tag+i word NNS opposeVBP$C?RB$Ci-1 word softwareIN!rhWDT!rh?i+1 word motivationPRP$+?NNP+i-2 word defendantsINB`"?VBB`"?RBB`"NNB`" i-1 word oddNNPS/$?RB~jt?JJ~jtNNP/$i-1 tag+i word DT alongVBP/$RBnNN#~jINX9v?i-1 tag+i word VBD spreadsNNS(\?JJR(\i-1 tag+i word POS logoNNZd;?NNSZd;i+1 word pricedNN(\JJxNNSQ@NNP(\RPV-RB$C?i-1 tag+i word RB existVBPZd;?RBRMJJRQؿi word suspectedVBNV-?JJףp= ?VBDV-i tag+i-2 tag NNP VBDNNP!rh?JJRMbX?VBDV-@VBNGzJJy&1?INX9v?NN}?5^ICD rhVBZ$C˿NNSCl@VBGV-?FWMb`RBR&1?WDTnڿNNPS/$RBA`"PRP\(\i-1 tag+i word IN standardJJOn?NN ףp= NNPV-? i+1 word handRB ףp= ǿJJsh|?@NNS㥛VB|?5^i+1 word hemisphereJJZd;O NNPZd;O @i-1 tag+i word VBD contributingVBG?NNi+2 word prosecutionPDTV-߿VBNZd;?JJ!rh̿i-1 tag+i word NNS drawnVBNK7A`?NNK7A`i-1 tag+i word NN bikingVBG +NN +?i-1 tag+i word NN orkemVBOn?NNPOni-1 tag+i word JJ inkNNS333333NN333333?i-1 word activelyRB&1VBPףp= VBN/$?JJ'1ZVBDT㥛 ?i word practicedVBPQVBNGz?VBD)\(? i+1 word rainJJoʡ@RB?5^I NNP= ףp=i-1 tag+i word VBN plenitudeNNX9v޿NNPX9v? i word plantNNPS= ףp=NN= ףp=@JJSNNPd;O?i word continuingVBGx&1@JJMb?NNK7NNPK7A`?i-1 tag+i word DT startedVBNX9vVBDX9v?i word concomitantNNl?JJlҿi-2 word painewebberRP}?5^IRB}?5^I?i-1 tag+i word IN attemptingNNB`"VBGB`"?i-2 word favoritesJJK7NNPK7?i-1 word airlinesNNS?VBD'1Z?VBNFxJJ"~jIN+NNS{GzVBGZd;O?RB{Gz?i word purportVBP333333?VBN333333ۿ i word shyVBPh|?5VBDʡEVBQ? i-2 word killNN'1ZܿCDMbPRP= ףp=ڿJJ1Zd?i-1 tag+i word NNS appointedVBNMbX?VBDMbXѿi+1 word complainNNSQ?NNPSQi-1 tag+i word JJR complicatedVBNV-JJV-?i-1 tag+i word NNP waltersNNPS-NNP-?i-1 tag+i word NN knowsVBZ^I +?VBN^I +i-1 tag+i word CC animalVBZB`"VBP+NNX9v@JJjti-1 tag+i word VBD lowNNʡERB rh?JJK7i-1 tag+i word NNP technologyNNClNNPCl? i+1 word ateDT rпWDTv?INCli-2 word telexesJJjt?NNjti+1 word biggerJJ rؿRBsh|??VB(\?VBP(\VBGA`"?i-1 tag+i word DT patentJJsh|?NNP ףp= ?NNy&1i+1 word expressionsVBN|?5^JJ|?5^?i-1 tag+i word PRP operatesVBZ333333?RP333333i-1 suffix rew JJM?VBZK7?NNP+VBD~jtVBPB`"NNMbX9INsh|?NNS~jtRPK7A`?RBV-?i+1 word conservationNN\(\?JJ\(\i-1 tag+i word , violentJJ1Zd?NN1Zdi+2 word compactJJV-?NNV-i word oklahomaNNPSSNN$CNNP%C@i-2 word ponyingJJRB`"?RBRB`"i+2 word vegetableNNx?JJxi+2 word reduceVB/$?NNPSx&?NNrh|JJSsh|??RBSsh|?JJsh|?NNS rhNNPrh|׿i-2 word oldestRBSm?VB~jtJJSmVBD~jt?i-2 word strongerJJ+VBN+?i-2 word unscientificVBZ1ZdJJ1Zd?i-2 word capturedNN rh?JJRMbX9JJd;Oi-1 tag+i word CC memorandaNNSq= ףp?UHbX9ֿNN|?5^i+1 word broadcasterNN5^I NNP5^I ?i-1 tag+i word RB trackVBS?NNSi word difficultyNNQ @JJMbVBNV-i-1 tag+i word VBZ dazzlingVBG= ףp=JJ= ףp=?i word stormierJJRQ?NNQi+1 word ulcersJJ~jt?NN~jt i suffix oweVBZd;?NNPST㥛 VBDDlVBPS @JJ\(\IN\(\VBZx&1NNPT㥛 ?i+2 word pessimistsRB/$NNZd;OINuV?i-1 tag+i word , sceneNN= ףp=?JJV-׿VBDJ +ɿi-1 tag+i word NNS candidateNNQ?JJQi-1 tag+i word NNP messiahNNQNNPQ?i-1 tag+i word JJ imaNNPS +NNp= ףؿNNP rh?i-2 word latinVB~jtVBP~jt?i-1 tag+i word NNS runVBZd;?VBPDlVBN9vi-1 tag+i word NNP modelVBPS㥛NNK7ANNP?i-2 word peddlingJJRQ?NNRQȿi+2 word touchedNN$C?VBG$Ci+1 word sparcVBNX9v?VBDX9vi-1 tag+i word CC eastJJjt?NNPjti-1 tag+i word NN unacceptableJJp= ף?RBp= ףi-1 tag+i word NN poisoningVBGnʿNNn?i-2 word celimeneVBN?NNi-1 word trillionVBPx&NNS(\ @NNQJJK7A`?FW/$i-1 tag+i word RB janetJJrh|NNPrh|?i-1 tag+i word POS proposedVBN rJJ@VBDK7 i suffix nnaVBrh|߿NNPSX9vϿNNS+JJʡENNP@ i suffix zipCC+NNm?NNPףp= i word gimmickVBZ;OnҿNNK7?INK7i-1 word emergeWDTS?INS i word oneidaLSQNNPQ?i-1 tag+i word VBD astrayRB-?NN- i suffix USINNSK7RBZd;OJJ)\(̿NNPCl? i word sunVBPClNNCl?i-1 tag+i word NNP reviewNNGzֿNNPGz?i word dependentsNNS1Zd?NN1Zd i+1 word fastINS?RBSVBG= ףp=?NN?5^I JJffffffi-2 word depositVBZNbX9?NNSNbX9i-1 tag+i word IN sellingVBG5^I ?NN5^I i-1 tag+i word VB exactVBNSNN(\ڿJJX9v?i+1 suffix artVBh|?5?RBvFWMbVBP`"?NNP333333?NNPSv߿VBDʡEJJS}?5^I@INZd;O@DTT㥛 ?NN"~RBS}?5^IJJʡE@VBG"~j?VBZRP?RBRx&1?VBN5^I ӿi word mutuallyRB\(\?NN\(\i-1 tag+i word IN foreignJJjtNNPjt?i word cringedVBN|?5^VBD|?5^? i word solarJJOn?NNOnۿ i+2 word sunWDT(\?NN~jt?IN5^I i-1 tag+i word NNS coalitionNNxֿNNPx?i-1 tag+i word CC pitchedVBNx?JJ%CVBDHzGi+2 word scenarioJJ?5^I ?NNP?5^I i+2 word clubNNS!rhNN~jt?JJ#~j?NNPS㥛?i-1 word rollingNNP;On?RPv/?NN&1ʿRBRQJJ?INv/VBGˡEi-1 tag+i word CC proveVB rh?NN rhi-1 tag+i word MD throughVB|?5^IN|?5^?i-1 tag+i word TO completeVB?JJi-1 tag+i word DT prayerNNPV-տNNV-?i+2 word forecastVBNHzGWDTbX9INbX9?NNS;OnڿNNPX9v?NN(\ڿVBDHzG? i+2 word jackNNP/$VBDMbX9?NNMbX9JJ/$? i-1 tag+i word -START- municipalNNT㥛 SYMtVNNPMbXJJw/?i-2 word eveningVBZjt?NNSjtRBR rh?JJR rhi+1 word valuedNNCl?JJCl i suffix ulsNNSCl@NNCli-1 tag+i word VBP goodRB~jtۿVBNx&1ԿJJX9v? i+1 word rjrNNPV-JJV-?NNJ +VBDJ +?i-1 tag+i word -START- soundINEJJ'1Z?NNZd;i-1 tag+i word CC circumspectVBrh|JJrh|?i+2 word corporate VBGx&?NNSQNNPV-?RP`"?VBNDlVBZQ?RB`"ֿJJ r@NN +οCDV-i+2 word catapultVBD/$NN/$?i-1 tag+i word NN safeJJ+?NN+ i suffix -adNN ףp= ?JJ ףp= i-1 tag+i word NNP tableNNSV-NNV-?i word recurringVBG?5^I @NN?5^I  i word armcoNNPS`"NNSx&1ԿNNP{Gz?i-1 tag+i word VB soloRB~jt?NNS&1ʿNNGzJJ+i-1 tag+i word NNP killedVBN/$VBD/$?i-1 tag+i word VBG attitudesNNS~jt?RB~jt i suffix eetNNPS +޿NNV-@FWV-VBPK7A`JJx&NNS333333NNPh|?5?VBV-@i-2 word negotiatedVBZ!rhNNS+ηNNCl?i-1 word trimmedRBRJJR?RBx&1?INx&1 i suffix rraNNPK7?NNPSp= ףJJn i-1 word forNNPSMb?JJRx?VBNˡEJJuV?RBʡE?RBS-RBR;OnNNSvϿNNP/$?CD;On?PRP$Q?VBD;OnVBP\(\WPtV?VBZ}?5^IJJSV-׿VBGX9v?WDTMڿDTffffff?PRPv/VB+NNCl?FWK7A`ݿCCSPDTʡEۿINMbX9i-2 word aliensDT(\?VBP(\RB(\VBD(\?i-1 tag+i word '' donutsNNSuVNNPuV?i-1 word hispanicNNPSClNNS#~j@NNPMbi+1 word tenaciousRB-?JJ-i+2 word elitistsVBN ףp= ?NN ףp= i+1 word vocalRBbX9@INbX9 i word filesNNPʡEVBNN9vڿVBD +JJZd;OտVBZ rh?NNSףp= ?i-1 tag+i word CD followingVBG/$?JJ5^I NN(\ҿi-2 word initialVBGd;OVBNQNNd;O?VBDQ? i+1 suffix iiNNPSSNNPS?i-1 suffix wdyVBGSNNS? i word unbornNN333333?JJ333333 i word tenCDQ@JJK7ANNPtVVB(\i-1 tag+i word ) technologiesVBZ$CۿNNS$C?i-2 word receptivityJJK7A?CDK7Ai-1 tag+i word PRP recallsVBZ~jt?NNS~jti+1 suffix ctoNNPV-FWZd;O@INFxNNSi+1 suffix nceRB(\CCOnJJ~jt@NN7A`?POSFxNNSRQ?JJSVBNZd;?RPףp= WDTZd;VBZQ?FWm?PRPbX9NNP?5^I VBx&?VBGGz?VBD(\@CDS?INq= ףpNNPSS㥛?WRBSRBR(\DT~jt@JJRZd;O@PRP$`"VBP= ףp= i-1 tag+i word -START- trustcorpDT(\NNP(\?i-1 tag+i word PRP hopesVBZI +?VBDI +i tag+i-2 tag VBP NNPS RP rh?RBRB`"۹?VBNZd;@JJRB`"۹DTZd;VBZd;O?RB7A`VBD"~jJJOn?INZd;? i word emhartNNPSDlJJ|?5^NNPjt?i word burgeoningVBGffffff@NNvJJ1Zd i suffix tte VBvVBDx&1NNSA`"RB333333NN㥛 @FW+RBRʡEJJbX9VBZnNNPʡE@i-2 word streetsNNPS㥛 ?NNP㥛 i-1 tag+i word -START- beforeINB`"@RB\(\NNP'1Zi word chanceryNNPSQNNPQ?i word deterrentNNI +?JJI +ֿ i+2 word iceNNPS㥛VBDS㥛?VBNS㥛NNS㥛?i-1 tag+i word VBP engagingJJZd;?VBGZd;i-1 tag+i word TO supportVB?NNɿi-1 tag+i word RB specificVBNClۿJJCl?i-1 word trundlesRP?5^I RB?5^I ?i-1 tag+i word RB landVBKǿVBPX9v?NN7A`i-1 tag+i word RB cleanVBSJJS?i-1 tag+i word IN stiflingNN|?5^ʿVBG|?5^?i-1 tag+i word , modernizeVBQ?JJQi+1 word macariNN7A`?NNP7A`i+1 word triumphJJʡE?NNʡEi-1 tag+i word NNS suchJJS@VBDNbX9пPDTSVBPZd;ORB rhNNS+i-1 tag+i word RB laughVB-NN-?i+2 word modestlyNNCl?RPʡEJJClRB1Zd?INoʡſi+1 word playwrightsJJQNNPQ@i+2 word citationCDS?VBDS i-2 word dawnJJ+NN+?i-2 word grassleyVBGMbJJMb?i-1 tag+i word NN resortVBvNNv?i-1 tag+i word NNP guaranteesVBZV-NNSV-?i+1 word veniceVB/$?JJR/$i word boroughVBPMbX9NN= ףp@RBS㥛JJK7IN +i-1 tag+i word JJ militaryJJ#~j?NNSNNPni+1 word incentiveCCQJJR/$?RBRMbi-2 word recoverVBMbX9NN~jt@VBDˡEVBN%C@RBR~jtJJ~jti+1 word protocolVBGS㥫?VBN㥛 ?JJ'1ZVBDni word droughtNNjt?RB'1ZVBDףp= i-1 tag+i word CC convertibleJJtV?NNPtV޿i tag+i-2 tag FW NNWDToʡ?NNV-?RBV-INoʡi+1 suffix ssoJJ&1?NN&1ҿi word mammothRPX9vJJ~jt?NN rh i word b.v.NNOnNNPOn?i-1 tag+i word -START- cantorNNPE?NNEi-1 tag+i word DT plaidJJCl?NNCli-2 word lewisJJV-?NNxVBN(\i-1 suffix absINS?RPSӿi-1 tag+i word WP earlierRBR1Zd?RB1Zdi+2 word missesNNS?NNPS i suffix vicNNS5^I JJbX9@NNGzi-2 word pianoVBZd;ONNSuV?NNv/JJxi-1 tag+i word VBP obligedVBNZd;O?JJZd;Oi word householdVBZd;ONNV-@VBD"~VBN)\(JJRQ NNSQi+1 word costanzaUH= ףp=NNP= ףp=?i+1 word ronaldNNSʡENNʡE?i-2 word grantsVB+JJL7A`?NNK׿JJRHzG?RBHzGѿNNSV- i suffix 67NNS= ףp=CD= ףp=?i+2 word preventRB+׿NNʡE@VBDK7AVBNK7A?VBP +JJtVi+1 suffix wayINjtFWK7A?WDT1ZdۿRP?5^I ?VBDV-?NNPʡECC~jt?CD333333?JJSd;O?VBG(\?VBNT㥛 JJ9vDTx&1 @NNjt VBP|?5^?VBZCl?NNSoʡNNPSoʡPRP333333ӿRBv/VBPn@RBSd;ORBR%CJJR%C?i+1 word connectorsNNPv/?JJv/i-1 word startedVBGK7@RP?JJʡE NNV-RBoʡ?INV-i+1 word gabrielaNNS}?5^IܿNN}?5^I?i-1 word estate NN)\(VBNoʡ?WDTx&1?VBZT㥛 NNS rhVBoʡVBDoʡVBPsh|??RBOn?INx&1 i suffix uniNNS+?WRBw/JJS㥛@NNNNPX9vi-2 word talentVBK7ARBK7A?i-1 tag+i word VBP placedVBNw/?JJw/ i word nipponNNP= ףp=?VBPK7A`INvi-1 word suitorNNMb?VBDMbi+2 word popularityVBNMVBDM?i+1 word reaffirmRBjt?VBjti+2 word oppenheimerNNPS㥛 NNP㥛 ?i+2 word ministerINK7?NNPS㥛@JJMbNNEVBDV-?VBNV-߿RBK7i-1 word nonvotingVBN^I +߿JJ^I +?i-1 tag+i word , sparkingVBGK7A`?NNK7A`i-2 word engagedVBGmͿNNMbXJJOn?i+2 word bringVBZw/RB/$?NNSw/?JJsh|?ſNN +i-1 tag+i word DT overbuiltJJ'1Z?NN'1Zi-1 tag+i word : taxesDT}?5^INNS}?5^I?i+1 word difficult VBZCl?POS)\(̿VBV-JJMbXJJR-RBV-?NNSMbX?VBD+JJS{GzRBS{Gz?RBR-@ i word pravdaDTrh|NNHzGRB rhNNPd;O@i-1 tag+i word RB citedVBNjtVBDjt? i word masterNNףp= @JJRNbX9JJJ +NNP-i+1 word lumberNNʡE?JJʡENNPT㥛 пNNPST㥛 ?i-1 tag+i word RB experiencingVBG|?5^?JJ|?5^i+2 word dictatorshipsRBSV-?JJSV-i word balloonsNNSn?NNni-1 word cheapestNNS㥛 ?NN㥛 i-1 tag+i word JJ revolutionNN+NNP+?i word wellplacedJJbX9@VBNbX9i+2 word pacificNNPmͿVB ףp= ?NNPSClNNMbPVBP5^I JJQ? i suffix rop VBFx?NNSQRB1ZdIN+JJ"~jNNʡE@FW)\(?VBNGzVBPd;Oi word unificationistJJS @NN/$NNPʡEi-1 tag+i word DT meaningfulNNV-ҿJJV-? i+1 word theyWRBtV?NNPS~jtJJSS?VBNv/WPbX9?NNA`"?NNSrh|?INbX9@DTFxLS;OnCDx&1EX-RBR?VBGOn?VBD%C?WDTx&1NNP`"VBI +CC?5^I ҿMDnJJRbX9VBP{Gz?JJ1Zd VBZE@RBjti-1 tag+i word NN dragsVBZPn?VBPV-VBD rh i suffix TBARBJ +NNPJ +?i+2 word rather VBGʡE?JJR"~jRBR"~j?VBN9v?JJZd;INHzGVBp= ף@NNzGVBPA`"?WDTHzG?NNSjtNNP+ i+1 word dullVBZףp= ?NNSףp= RBS?JJSݿi-1 tag+i word NNP tapesVBZ/$NNSZd;O?NNi+2 word mariaRBRʡE?RBʡEi-1 tag+i word NN changesVBZK7A?NNSCl?JJi word alphabetNNn?JJ;OnFWMڿi-1 tag+i word DT calmingJJffffff?NNMbX9VBG~jti-1 word nutritionalNNPST㥛 NNPT㥛 ?i-1 tag+i word IN revisedVBNZd;߿JJZd;? i suffix acsNNSʡENNPʡE?i+2 word interviewerJJ7A`?NNP7A`i-1 word linkagesWDTS㥛?INS㥛пi+2 word confidentialJJv/?NNK7A`NNP$C?i-1 tag+i word JJ coupsNNSMbX?JJMbXi-1 word directorsWDTV-VBNh|?5RBV-?VBD㥛 ?JJrh|?i-1 tag+i word RB backfiresVBZS㥛?NNSS㥛 i+2 word soilNNSQVBNn?VBDI +?VBZQ?VBPp= ףi-1 word bustedNNP333333VBmNNSK?NN1ZdJJm?i+2 word personVBZ`"NNS`"?RBS?JJSi-1 tag+i word RB knowVBZrh|VBoʡ?VBPrh|?VBNoʡi-1 tag+i word JJ linenNNSZd;ONNZd;O?i-1 word radarNNoʡ?RB/$VBZ(\i-1 tag+i word RB failingVBG&1?JJ&1i-1 word supplyJJ/$?NN}?5^I?INJ +VB|?5^RBJ +?i+2 word philadelphiaNNPS= ףp=?NNP= ףp=i-1 tag+i word RB buildingVBGCl?NNCli-1 tag+i word JJ enactmentRBvNNv?i+2 word startVBNZd;WDT~jtJJClٿINw/DT~jt?NNP~jt?RBK?VBDZd;?i-2 word lopsidedNNSNN?i+1 word francaisesNNP%C?FW%CԿi+1 word thinkVBPMbX9RBp= ף?NNSQ?MD333333?VB(\VBDjti word stemmingNN/$տNNPVBG\(\?i-1 tag+i word VB identityNNK7A`?JJK7A` i-2 word pillVBK7A?VBD/$RBtVIN#~j i-1 word `` JJQ?RBR&1WRBS㥛?PDTrh|JJR+?VBNZd;?VBPNbX9?VBZ㥛 ?LSףp= ӿDT5^I ?NNZd;OPRPjtINJ +?VBDA`"?RBS/$NNSRQNNP +?WDTJ +?VB/$?CCx&1?NNPSx&PRP$m?RB^I +׿CD9v?EXQ?MDʡEJJSjt?UHw/?VBG5^I WP9v?RPClFW+?i-2 word chevyRBZd;OIN|?5^?NNCli+1 word preferMD9v?VBP9vNNP&1NNPS&1? i word mileNN&1?JJ&1ʿi+1 word blessingJJtV?NNPtV i+1 word fishNNPGzDTGz?i-1 tag+i word NN talksNNzGVBZ5^I ˿NNS?i+2 word value VBPMbX9?WDTʡERBV-׿INS?JJDlNNJ +ѿVBGrh|?VBS㥛RP?i-1 tag+i word DT escrowNN7A`?JJ7A`i tag+i-2 tag TO VBZ VB^I + @VBGPnJJV-?NNSſJJR'1ZVBN~jtۿRBRuV?RBzG?NNSp= ף?NNPV-i+2 word unflatteringDTB`"PDTB`"?i-1 word fretsDTL7A`INL7A`?i-2 word analystVBG`"?NN rhJJ-˿INffffff?DTffffffNNPZd;O@i-1 tag+i word RB ungainlyJJK7A`?RBK7A`i-1 tag+i word PRP bringVBP r?VBD ri+1 word soccerJJJ +?NNPJ +i-1 tag+i word CD warrantNNx&?JJRV-JJ㥛 i-1 tag+i word NNP publishersNNP rhͿNNPS rh?i-1 tag+i word VBP bettingVBGx?NNxi-2 word quantifyJJoʡ?NNSn?VBNnNNoʡi word inflateVBx&1?NNx&1 i word russoNN"~NNP"~?i-1 tag+i word JJS winVBDoʡVBKVBP"~j?JJV-Ͽi+2 word penceRB"~jܿNNʡE?VBDK7?VBNK7JJK7?IN ףp= ?DTZd;VBGX9vi-1 tag+i word RBS dependentJJV-?NNV-i-1 tag+i word RB sustainableVBK7AJJK7A?i+2 word valvesNNSGz?NNGzi word framersNNPSV-NNSV-?i-1 tag+i word `` bebopJJ+NNP+?i word freeingJJٿNNԿVBG333333?i-1 tag+i word CC bulldozerNNS㥛?JJS㥛i-1 tag+i word NNP enforcementNN|?5^?VBD|?5^i+1 word eventsNNSbX9NNPd;OVBGjt?NNףp= JJv?VBZbX9?i word ukrainianJJd;O?NNPd;O i word stoodVBMbNNGzVBDRQ@VBN rh?VBP-VBZSi+2 word sufferedDTMbVBP(\WDTMb?NN5^I ?CD"~j? i+1 word rawRBZd;JJGz?NNGzINZd;?i+2 word foreignersJJV-INE?DTEؿVBGGzNNGz?VBDKVBNZd;O@ i word tollsNNSm?NNmi+1 word industrialistJJQ?NNPQi-1 tag+i word NN infringedNNL7A`VBDL7A`?i word aeroflotNNK7NNPK7?i-1 tag+i word IN dealNN/$?NNS/$i+1 word existenceJJSMbJJX9vNNS@i-2 word efficientVBZd;OVBPZd;O@JJ9vi+1 word writesNN= ףp=?JJ= ףp= i-2 word lovePRP$MbPRPMb? i word pcNNPZd;NNsh|?@JJ;OnVBD;OnVB9vi-1 word laggingRPy&1INy&1?i-1 suffix reeVBNX9vINzG?VBZMb?NNSq= ףp?NNPoʡVBDʡEJJRS?VBG5^I ?JJGzNN/$?JJSHzG?RBR!rhCDzGWDTK7A`?VBQ뱿DT(\RB!rhi-1 tag+i word , consolidatedVBNV-߿JJ"~@VBDJ + i-1 word diskNNS&1?VB^I +NN{GztVBDףp= ?VBNףp= VBPI +?JJGzVBZK7A`i-1 suffix oteNNS~jtJJʡE?VBDn?WDTCl绿INbX9@VBG?JJR9vVBP+?NNP?VB rhRB(\?DTMbX9NNjtƿRPCli+1 word shareholdingsVBDףp= VBZףp= VBPףp= ?i-1 tag+i word NNS grantedVBNZd;?VBDZd; i word contelNNPSMbXNNSNNP@i+2 word restoreVBJ +?VBP\(\?NNoʡ?JJA`"RBn? i word bpcNNPSV-ҿNNPV-?i-1 tag+i word POS discontinuedVBNNbX9?JJSտNNX9vi-1 tag+i word VBD causedVBNtV?JJtVi-1 tag+i word RB mergedVBNGzJJZd;VBD`"?i-1 tag+i word VB publicJJx&1?NNx&1i-1 tag+i word NN doubtsVBZl?NNSli-1 tag+i word DT adaptingVBGq= ףpNNq= ףp?i-1 tag+i word VBG horsesNNS/$?NNP/$i-1 tag+i word , testedVBNZd;߿VBDZd;?i-1 tag+i word VB communistsNNPSjt?NNSjti+2 word difficultiesRB7A`NNP?VB㥛 ?JJʡE?VBNʡETOuV i+2 word fallJJv/ݿVBx&1?NNPS rRB$CNNCl绿VBD?5^I ?PDT{Gz@VBNPni-1 tag+i word RB homeNNˡE?JJ{GzRB/$i-1 word scantCD?NNPw/JJ㥛 ?NN1Zdi word destroyedVBPK7AVBNMbX9?NN1ZdۿVBD|?5^?i-1 tag+i word VBD thrownVBNK7?JJK7 i-2 word food INjtVBZ-NNP+?VBG333333NNbX9@VBDl@JJffffffVBNx&1DTzG i word beigeNNSI +JJV-?NNn i suffix AMRNNK׿NNPK?i-1 word projectsRBv?NN+VBDX9v׿VBNNbX9?VBP@JJ!rhVBZvi-1 tag+i word NNS clerksVBP(\NNS(\?i-1 tag+i word RB crowdedVBNV-JJV-?i word personalJJ~jt?NNV-INK7NNPuV?i-1 tag+i word NNPS returnVBP`"?NN`"޿i-1 tag+i word NN factorVBZ333333NN333333? i word sixMD9vRBSCDK @PRPV-ڿJJDlNNPSi-1 tag+i word NNP sisuluNNPSDlNNPDl?i-1 tag+i word JJ patientNNv?JJv i word maybeRBPnC$@NNnVBDK7JJSINSNNSʡENNP?5^I VB9v i-2 word layRB㥛 ¿IN㥛 ?i-1 tag+i word CC meatVB#~jܿNN#~j?i-1 tag+i word PRP$ richerJJRK7A`?NNK7A`i-1 word somethin'VBPʡE޿JJ|?5^@NN㥛 VBV-i-1 tag+i word `` sarakinFW%C?NNSClNNK7i+1 word attributesNNP7A`?VBZ+POS+?RB7A` i-1 word poorNNSCl?POS+?NNClNNPK7AVBZʡEi word waddlesVBZ/$?NNS/$i-1 tag+i word CC freshnessVBV-NNV-? i-1 word may VB"~j@NNoʡ?RBv/?INv?WDTvDT/$?PDT/$JJRQRBRNbX9VBPK7A`VBNZd;Oi+1 word alternativesVBʡEտVBG\(\@NN?5^I JJ{Gzܿi+1 word activistJJRMbX9RBRMbX9?JJ7A`?NNP7A`i-1 tag+i word PRP promptlyVBP+RB+? i+1 suffix %CDZd;O@NNS$CJJ7A`NNPV- i-1 tag+i word JJ responsibliltyNNSjtNNjt?i+2 word assessmentsVBD rh?IN$CRP$C?VBN rhi+2 word evidence POSV-@RB7A`NNSX9vVBPzG?IN#~jܿVBZʡEJJ/$?CC5^I @VBN/$i-1 tag+i word JJR earlierRBRMb?RBMbi-1 tag+i word NN controlVBd;OֿVBPENNQ?RBxi-1 tag+i word , yieldsVBZ(\VBPw/NNSCl?NNMڿi-1 word assemblyVBZ㥛 ?NNS㥛 i-1 word gunmenVBNd;OVBDd;O?i-1 tag+i word JJ preparedVBN +?NN +i-1 tag+i word VBN actingVBGS㥛JJS㥛?i tag+i-2 tag WDT ''JJzGҿVBZv/?NNSʡEVBMbXNN?5^I ¿VBD|?5^?VBPZd;?i+1 word ditchNN#~jNNP#~j?i-2 word illustrationIN~jtNNP~jt?i-1 tag+i word VBG municipalJJS㥫?NNS㥫 i word drugsNNSuV?NNPuVi-1 tag+i word NNP staggeringVBGK7?NNK7i-1 tag+i word JJ approachVBPx&NNS+NN9v@JJK7A`i word rationalizationNNʡE?JJʡEi-1 tag+i word NN headedVBNjt?VBDjtܿi word signingVBGMbX9NNMb@JJ+i-1 word minutesRBCl?RBRQ?IN +RP +JJRMbXi+2 word hondaRB-?JJ- i-1 word emsJJ(\?NN(\i-2 word reestablishJJSoʡݿNNoʡ?i+2 word harmonyVBD%CJJ%C? i+2 word safeDTtVVB{Gz?NNNbX9?VBPNbX9INtV?VBZ{Gzi+2 word fastballsVBsh|??VBPsh|? i+2 word view VB +RP +?NNS333333?NNP333333JJ-?NNGzVBN'1ZVBP9v?RB +i-1 tag+i word CC quantifyVBn?JJni+1 word risingRBףp= VBDףp= ?i+2 word authorshipVBN~jt?JJEпVBDsh|?i-2 word preparedVB{Gz?NN{Gzi word temptingJJMb@NN+VBG)\( i-2 word consJJnʿNNS333333NNl?i-1 tag+i word DT woodenJJ%C?NN%Ci+2 word menellNNPA`"RPA`"@ i+2 word toneVBNZd;߿VBK7?PDT~jti-1 tag+i word `` daveNNPjt?VB~jtxVBPffffffNNzGڿi-1 tag+i word VB sluggishJJMbX?VBNMbXi+2 word mexicanVBNrh|VBDrh|?i-1 tag+i word DT cohesiveJJv?NNvi-1 suffix mptVBZx?VB"~ڿNN1Zdۿ i-1 word juneVBZ|?5^CDS?NNS|?5^?NNPSi+1 word settlementsCD)\(ܿJJ)\(?i-1 tag+i word IN riskierJJRPn?JJPni+1 word cautiouslyJJI +VBDI +?i-1 tag+i word NN publishedNN㥛 VBDK7A`VBN\(\@i-1 tag+i word DT regulatedJJV-?VBDV-i+1 suffix olaWDTlRBMbX9IN#~jDT&1@NNPMbX9?i-2 word goalsNNS~jtNNP~jt?RP%C?NNx&VBNx&?IN%Ci-1 tag+i word JJ turnsVBZS?NNSi-1 tag+i word VBZ aroundRPn?RB?INrh|i word dismayingVBG%CJJtV?NNT㥛 i+1 word oliverNNPSClNNPCl? i word shockNNJ +@JJK7NNP rhi word lancasterNNPS rNNP r? i+2 word warsNNPKVBG@JJ~jt?NN"~i-1 tag+i word VB borrowingsNNSV-?NNPV- i word hangsVBZ)\(?NNSh|?5VBD&1i word provisionalNN +JJ +?i-1 tag+i word POS mainstayNN r?JJ ri-1 word communicationNNPSPnNNSK7A@NNP i word mightaVBZuVMDMbX?VBDoʡi-1 tag+i word '' aroundRBX9v?INX9v i+2 word 'VBx&?VBDףp= ?INV-?NNS%CRBSnVBNrh|WDToʡRP/$NNPSQտJJA`"?JJSn?NNPV-?VBGuV?NN"~POS(\''(\?RBS@ i word urgedVBPlRB1ZdINv/NNPA`"NNPS?5^I ¿JJʡEsVBDM@VBNtV@i-1 tag+i word NN herPRP$A`"PRPA`"?i-1 word pullsNNbX9RBbX9?i+1 word satisfactionJJCl?VBDV-?VBNV-NN㥛 NNP)\( i word piecedVBNZd;?VBDZd; i-2 word hopeWPMVBZT㥛 NNST㥛 ?VBp= ף?NNHzG?PDT^I +VBPT㥛 JJ^I +? i-2 word trueVBGA`"NNA`"?i-1 tag+i word CC bringingVBG(\ȿNN(\?i+1 word describesNNPSB`"NNPB`"?i-2 word refrigeratorVBPV-ݿNNV-?i-1 tag+i word , leasingVBGK7AؿNNK7A?i-1 tag+i word NNP lifesaversNNPS rh?NNP rhi+2 word glossyJJh|?5?RBL7A`пVBD+ i-2 word eachVBDuVVBN5^I ?RBx&1?JJR/$?NNPZd;ORP{GzĿJJMڿNNnCCQRBRMbVBP~jt?NNSh|?5VBMbпIN rh?RBSxVBZHzG?i+2 word amusingJJV-?NNV- i+2 word ifPOSCl@VBPX9v?WDT}?5^IRB/$@NNPB`"VBZx&NNPSnNNS7A`?UHsh|?@NNRQпVBDV-INJ +?DT㥛 MD/$?VBS㥛?RPSݿRBRV-?VBNjt?JJRK׿VBG9vJJMbi-1 tag+i word `` nuxNNP/$NN/$@i-1 tag+i word NNP mercantileNNPSZd;NNPZd;?i-1 word fleetNNS+?NNM¿JJ1Zd i suffix eumNNp= #@VBNtVJJ/$NNSʡENNPK?NNPS!rhi+1 word tempeNNPS;OnNNP;On? i word rootedVBNm?VBDm i word bnlDTL7A`NNRQNNPS㥛?i-1 tag+i word NN outcryVBZ|?5^NN|?5^?i-1 tag+i word NNP nightsNNPSn?NNSS?UHSNNPni-1 tag+i word IN participatingNNB`"VBGB`"@i word earthquakeDT9vNNX9v@NNPSۿPRP$x&1NNPSI +i+1 suffix mboJJGz?NN{GzܿNNPQi+2 word tracesVBZRBSVBDX9v?i word chicagoNN"~SYMMbX9ĿNNPZd;O?i-1 word organizationIN ףp= WDT ףp= ?VBNh|?5@VBDh|?5i-2 word allegedNNP1ZdVBGA`"NN;On@VBDMb?VBNrh|JJQNNS(\?i-1 tag+i word PRP$ answerNNHzG?JJHzGi+2 word donatedVBNV-JJ㥛 ?NNP~jt i+2 word yorkRBv/INK?DT7A`?JJZd;O@NNK7FWCli word moderatelyJJzGRBzG?i-1 word newspaperVBD/$?RBRS˿VBN/$RB$CVBZS?NNSSVBG"~?NNV-?i-1 tag+i word VBG yenNNSK7A`?NNK7A`i+2 word whoseNNPK7?NNPS&1JJ?5^I @NNK7A`?FW㥛 VBPq= ףpRBS㥛i+2 word minutesJJR+INuV?RB|?5^NN?JJ rhѿi-1 tag+i word VBD extendedVBNFx?JJFxٿi+1 word dodderingJJV-?NNV- i word snapVBPv/?JJ~jt?NN~jtVBDv/i+2 word creaturesJJX9v?NNX9vi-1 tag+i word NNP messNNtV?NNPtVi-1 word wieldingNNS+?NN/$JJL7A`?i-1 tag+i word VBP ceramicNNS~jtӿJJ~jt?i word expendituresNNSףp= ?NN333333JJ9vVBNffffffVBZʡE? i word fineRBd;OVBMbX9JJI +@NNKJJS+VBNS㥛пi-1 tag+i word : startedVBNCl?VBDCli-1 word -START2-"CDˡE?JJS#~jԿUHsh|??RP;OnFW`"CCh|?5?RBSV-?RBROn?NNPS ףp= SYMjt?WDT-?VBZ5^I ۿNNS㥛?NNSV-?WRBbX9ȶ?PRP$sh|??JJE?VBx&1?INNbX9?VBDFxDT-?RB?PDTܿJJR rȿLSoʡ?VBGv/?VBNS㥛?TOx?MDJ +?NNPK7A`VBPzGWP~jtӿ$9v?PRPNbX9i-1 tag+i word DT abortedVBNFxJJFx? i suffix ngsWDTV-NNPv/VBP%CVBDK7ARBR|?5^VBN}?5^IUHx&1RBNNPSy&1@JJZd;ONNuVVBZmR@MD +JJR&1NNSI +G.@VBDli-1 tag+i word IN samsungNNPFx?NNSFxi-1 word groupementJJR~jtNNP~jt?i+2 word consideringNN{Gz?JJsh|?տRBʡEӿi-1 tag+i word ( seriesNNPS`"NN`"?i word netherlandsNNP/$?NNPSCl?NNSA`"FWmi-1 tag+i word NN speedVBN1ZdNNX9v?VBPK7i+1 word soughtNNPS/$NNP/$?i-1 tag+i word DT rollerNNS㥛?JJHzGVBNX9vϿi-1 tag+i word RB ufoNNPS(\NNP(\?i-1 tag+i word VBD addedVBNx&?JJx&i+2 word formallyNNPSK7JJK7?i-1 word restyledNNPX9v?CDX9vi-1 tag+i word IN margarineNN/$?JJ/$i word imperfectJJʡE?VBʡEտi+1 suffix mosJJ/$?NN/$i-1 tag+i word NN spokeNN)\(ܿVBD)\(?i-1 word exchange JJPn@RB$CVBZ-VBN$CNNSx&ѿVBI +NN|?5^@VBDZd;O?POSl?i+2 word renoirsNNPSS?NNSSi-1 tag+i word NNP ambassadorVBZMbNNSHzGNNn?i+1 word especiallyVBPA`"?VBNA`"NNE?CDEi word attemptingVBG^I +?NN^I +i-1 tag+i word RBS madeVBNX9v?NNX9v i+2 word ba3NNSS?NNPSݿi word frivolousJJ-?NN-i word consumersNNPS%CNNSV-?NNP9vi word restructuresNNSd;OVBZd;O?i word downsizingNN ףp= @JJ-NNPni+2 word futureVBE?NNEпi-1 word loudspeakersVBPDlVBDDl?i+1 suffix ND-CDʡENNSy&1@NNP9vRPrh|?VBNʡEJJh|?5INK7?VBZQDTZd;OVB~jt?RBx&?NN|?5^@VBP"~j?POS ףp= SYMM?''(\?NNPSOnVBDʡE?i word beachesNNS+?NNP+i-1 word negotiableNNS"~@NNQNNPJ +NNPSMbX9?i-1 word actionVBDMbRB|?5^?IN|?5^VBZ"~j?NNS1ZdۿVBGS?NNSi word oaklandRBV-NN333333?NNP+i-1 tag+i word , parkhajiNNʡENNPʡE? i-2 word aiVBD+?VB(\NNCl?RBx&1i-1 tag+i word DT justiceNNPuV?NNuVݿi-1 tag+i word DT snagNN&1?RB&1i-1 word secretaryRBZd;O?RP333333JJK7A`NN333333ÿVBDˡE?VBNtVi-1 tag+i word DT czechFWQJJT㥛 ?NNPMi+1 word shalesNN5^I ۿNNP5^I ?i word excessiveVB}?5^IVBPT㥛 пJJ+?NN$Ci-1 tag+i word NNP copiesNNSGz?NNGzi-1 tag+i word DT lobbyNNv?JJvi-2 word husbandVBL7A`?RBZd;ONNy&1VBD/$CD~jtJJX9v@INZd;O?VBZ}?5^Ii+2 word mergersNNuV?NNSuVJJ&1?RB&1i-1 word troopINB`"ٿNNB`"?i-2 word strictlyNN)\(?JJ)\(i-1 tag+i word IN franchiseesNNSE?NNE i suffix ool VBDERBRGzVBPRQ?JJMb?NNS+VBZd;OVBGNN/$ @NNPGz?VBNw/INx&1VBZV- i suffix tadNNJJQRB)\(?i word aerobicJJp= ף?NNd;OIN㥛 i+1 word severeRBRd;O?NNClJJR`"JJ= ףp=VBGCl?i+2 word experimentsJJv/?NNv/i-2 word urgedVBDlNNPS r?VBD1Zd?VBN1ZdINDl?NNS ri word surgeryNNSKNN{Gz@RBZd;Oi-1 tag+i word VBD stabbedVBNV-?JJV-׿i-1 tag+i word CD runsVBZZd;NNSZd;?i word johnstownJJlNNP;On?RBS i word elJJZd;NNX9vϿNNPCl?i-1 tag+i word JJ controlsNNS"~?NN"~i-2 word launchNNPv?JJ)\(?VBNvNN)\( i word tasksVBZT㥛 NNS\(\@RB~jtNN!rhi-1 tag+i word , netNNjt?JJjtƿi-1 tag+i word VBN halfDTV-ϿPDT/$NNrh|?i-1 tag+i word VBZ buriedVBDVBN?i-1 tag+i word NN examinerNN ףp= ?NNP ףp= i-1 tag+i word DT rowingNNDl?JJDli word automotiveNNPnNNPMb?JJT㥛 i word compactedVBN!rhܿJJ!rh?i-1 tag+i word JJ workoutNNSˡENNˡE?i+1 word funnyVBOn?JJ㥛 NN~jti-1 tag+i word VB virtuesNNST㥛 ?JJT㥛 i-1 tag+i word DT soybeansNN"~NNS"~?i word apparelNN?JJi+2 word allegedNNPS(\?VBPA`"NNS(\ڿNNA`"?i-1 word greeneRBV-VBDV-?i-1 suffix imaRB?NNS +?NNP ףp= NNPSMbX9ĿNNmݿVBPi-1 tag+i word DT limbsNNFxNNSFx?i+2 word slippingNNSK7?NNK7i+1 word activistsJJn?NNni word windshieldsNNSQ@VBNtVNNy&1i-1 tag+i word IN bigJJOn?NNPOn i word seepedVBZ'1ZܿVBD'1Z?i-1 tag+i word -START- irasNNPSRQ@NNS +NNPV-i-1 word officerVBG{Gz?JJ{GzԿi-1 tag+i word NNS unencumberedVBNv/JJv/?i-1 tag+i word VBP burgerNNMb?JJRMbпi-1 word electronicsVBZK7AпNNPSK7A?i-1 word makwahNNPS%CNNP%C?i+1 suffix utoRB&1NN9vCDˡE?JJ(\u@INI +NNSˡENNP#~jVBG^I +?i+1 word visitsJJ!rh?NN!rhܿi+2 word timberVBN\(\NN\(\?i tag+i-2 tag CD VBG NNx&VBDJ +?NNPSMbP?VBG= ףp=CDClJJ-@IN\(\?RPZd;NNSV-FW`"ֿVBNK7A`ݿi+2 word richerPDTMb?RBMbпi-1 tag+i word NN libraryNN'1Z?JJ'1Zi-1 word provigoVBZZd;O?VBPMbXNNSZd;ONNMbX? i suffix ev.NN-JJ|?5^NNPh|?5? i word mayNNP;On?NN}?5^IܿINQi+1 word operatorNNCl@JJCli-2 word toolingJJSGzNNV-?JJPnؿi-1 tag+i word , triedVBNT㥛 ?VBDT㥛 i-1 tag+i word VB cholesterolJJv/NNv/?i-1 word norwoodNNPS|?5^?NNP|?5^ i suffix cleJJ-FNNSK7A`NNPK7?VB333333?NNPSnNN7A`P@JJRX9vi word guaranteed RBFxVBZL7A`VBV-NNK7VBN/ݤ@VBPoʡJJ+@VBDV-?NNPI +i word hardcoverNNS?JJR5^I JJ}?5^Ii-1 word pledgesVBZ%CVBP%C?!i-1 tag+i word `` shortageflationNN~jt?NNP~jt i word massNNPSNNP?i-2 word hypocrisyVBZ'1Z?NNS'1Zi word sacrificingVBGI +@NN-JJ(\i-1 tag+i word IN ensuringNN= ףp=VBG= ףp=?i+2 word cuminNNSSNNS?i-1 tag+i word DT demandsNNSHzG?JJHzGi-1 tag+i word NNS boughtVBPK7AVBNʡE @RBoʡVBDi word commencingVBGA`"?NNA`"i-2 word newsprintNNh|?5JJK7?VBDK7VB;OnVBGM?i word warningVBGh|?5?NN+?JJ/$i-2 word directlyNN?JJRX9v?JJJ +WPX9vNNPJ +?VBi-1 tag+i word NN consumptionNNv/?JJv/i-1 tag+i word TO cutNN/$VB rh@VBNX9vi word criminalsVBZ;OnNNS;On?i word competeNNKVBDxVBPffffff@JJClVBZZd;OVBl?i-1 word abandonedPDT5^I ?JJ5^I i-1 tag+i word , bringsVBZZd;?NNSZd;i-1 tag+i word VBZ sufiVBNv/JJ5^I @NNPCli+2 word profitsVBX9v@VBG+?VBN|?5^VBP\(\JJQ?VBZˡENNST㥛 пi+1 word affairNNS7A`ҿNN?JJˡENNPMb?i-1 tag+i word IN safeNNsh|?JJsh|??i word satisfiesVBZL7A`?JJL7A`i+1 word fluctuationsJJ(\@NN(\i-1 tag+i word NN mailVBP`"NNSHzGNNQ?i word featuredVBDtVֿVBN~jtÿJJx&1?i-1 tag+i word CC diminutiveJJ1Zd?NN1Zdi-1 word loweredNNPX9v?RPq= ףpRB'1ZINףp= ? i word adiaJJ"~NNP"~?i-1 word sampleNNSB`"?NNB`"i+2 word truckNNFxCDFx?i-2 word failureVB9vVBGnNN㥛 @i-1 tag+i word VBN improvedVBN)\(JJ)\(?i word outside VBS㥛NNPSSRPV-VBPK NNPClJJ)\@NNףp= VBN/$RBQIN +@NNSi-1 tag+i word NNP associatesVBZNNPSl @NNSM?NNPQ i+1 word nameJJ(\NNPSMbX?VBN rh?NNT㥛 NNPMbX i word lienNNoʡ?JJoʡi-1 tag+i word DT collateralJJ$CNN$C@i+2 word concludingNNSy&1?NNPy&1i-1 tag+i word `` squeezedVBNL7A`?JJL7A`i-2 word legionNNSGzNNGz? i-1 word taxiNN?JJi-1 tag+i word NNS guaranteedVBN1Zd?NN1Zdi-1 tag+i word DT sixthJJv@NNʡE JJRCli-2 word educationVBM?VBGS㥛ԿVBN +?NN~jti-1 tag+i word JJ spiritVBP +NN +?i-1 word earliestJJV-INV-?DTX9v޿WDT+NNV-?i word investingVBGS?JJV-RBQNNV-ǿi-1 tag+i word `` slowRB(\VB@JJQi-1 tag+i word RB messrs.NNPS(\?NNP(\ i suffix lot VBZxNNSʡENNPSˡEFWA`"JJp= ףRBRFxIN/$ƿNNPK7?VB+RBZd;?NN}?5^@i-1 tag+i word CC executiveJJMbпNNMb?i-2 word segmentINZd;?VBN(\ҿRBZd;VBD(\?i+2 word wastingVB|?5^?VBD|?5^i word predict\/advocateVB/$ӿVBP/$?i-1 word repairRBSNNx&1VBNsh|?JJ r@INS?NNSp= ףؿi word journalismNNFx?JJףp= NNPvi-1 tag+i word VBZ risenVBNK7A`?NNK7A`i-1 word quarryRBsh|?@NNʡEJJA`"ۿi word testingVBGtV?NNtVi-1 tag+i word PRP trappedVBN\(\?VBD\(\ i+1 word losVBP/$WDTClINCl?VB/$?VBG/$?NN/$i-1 tag+i word JJ basesVBZlڿNNSl?i+1 word brainsJJK7?VBDK7i-2 word penetrateJJʡE?NNʡEi+2 word leadershipNNSvNNPp= ף@NNPS|?5^i+1 word consultantsJJsh|??NNPsh|?i-1 tag+i word DT messrs.NNPSJ +NNPJ +?i-1 tag+i word NN socialistsNNPS`"?NNP`" i-2 word shutRPx&1?RB&1INClۿi-1 tag+i word NNS democratsNNPS +?NNP + i-1 tag+i word CC communicationsNNSGzNNZd;?JJ"~ji-1 word appliesNNx&1?JJx&1i-1 tag+i word RB presentsVBZ^I +?NNS^I +i word surgicalNNSۿJJS?i-1 tag+i word DT waldorfJJ~jtNNP~jt?i-2 word describingRBrh|INrh|?i+1 word femaleRBrh|?NNrh|i-1 word trainVBZd;ONNPKNNSK?NN~jt?WP(\ i suffix -DMJJtV?NNtVi+1 word primarilyVBP-˿VBNI +?JJp= ףVBDMbVB-? i word soxNNP+NNPSzG@NNCli-1 tag+i word NN cautionedVBNClNNClVBDNbX9? i word skillsVBP#~jNNSl?JJx& i suffix visFW+?JJʡENNGzֿINʡEi-1 tag+i word TO makeVB+?JJClNNGzi-1 word greatNNS5^I NNP9vNNPS rh?NNʡE?VBD/$JJE?i+2 word racetracksVBN|?5^?VBD|?5^i word realizesVBZK7?VBPK7i+2 word minicarNNV-JJV-?i word heavyweightJJ$C?NN$Ci-1 tag+i word JJ hotJJ ףp= ?NN ףp= i word buttonJJZd;NNZd;?i-1 word walkin''Gz?POSGzi-1 tag+i word IN lexingtonNNʡE޿NNPʡE?i+1 word hartungNNPnNNPPn? i word wrightNN"~ҿNNP"~?i-1 word yankedRPrh|INrh|?i-2 word difficultVBG(\¿RBI +NNx&WDTT㥛 JJ!rh?INT㥛 ?NNP1ZdVBCl @i+1 word wantedVBZMbX9NNPMbX9?MDsh|?VBDsh|??i-1 tag+i word NNP upheldVBNS?NNoʡVBD{Gzi-1 tag+i word VBD repairedVBN|?5^?JJ|?5^i-1 tag+i word VB ludicrousVBNuVͿJJuV?i-1 tag+i word VB heldVBN rh@JJ/$VBDd;OVB/$i word melloanNNzGNNPzG?i-1 tag+i word VBP financingVBGSӿNNS?i+1 word espanaFWx&?NNPx&i-1 tag+i word VBG awayRP;OnRBjt @NN\(\INx&1 i word layNN+VBDQ@RBR"~VBPQRBSVBZi-1 tag+i word `` distortNNʡEVBʡE?i-1 tag+i word DT lumpierJJRGz?NNGzi-1 tag+i word IN hagglingVBGm?NNmi+2 word transferNNtV?JJtV#i-1 tag+i word -START- neverthelessCCffffffRB1Z@NNV-NNPh|?5i-1 tag+i word NN listedVBN\(\JJ\(\?i-1 tag+i word DT hatredNNK7A`?JJʡEVBNGzֿi word unacceptableJJp= ף?RBp= ף i+1 word n.v.NNPSjtNNPjt?i+2 word residentsVBGZd;ONNL7A`?RB{Gzi+1 word expiredVB1ZdVBP1Zd?WDT+?IN+ۿi-1 tag+i word DT degreeNNSzGʿNN333333?JJ{Gzi-1 tag+i word -START- acceptedVBN\(\JJl@NNPuVi-1 word monthsRBRʡEWDTV-?EXDlѿRB ףp= ?IN5^I @NNZd;VBD333333VBN rh@i-1 tag+i word JJ comedyJJQNNQ?i+2 word beretRB/$NNS+JJn@i-1 tag+i word `` interestNNK7?NNPK7 i-1 word cubeNN333333VBD333333? i+2 word ''VBGjtVBD333333@WDTMbX9DT{Gz@FWMbX9@WP~jtÿVBZB`"?RBRx&1?UHZd;ONNSoʡ?INh|?5PRP$ʡERPPn@PRPCl@RBKJJS`"VBPMb?NNv?NNPETRBS?5^I VBL7A`?VBNp= ף?NNPSA`"JJ~jtx?``)\(@CD{GzMDV-POSKEXd;OJJR ףp= ǿ i word farmsNNSjt?VBDjti-1 tag+i word VBN foundVBN +?JJ + i word foldedVBNCl?VBDCl߿ i-1 word wentRP(\VBG+?JJV-?NNMbX9RBRS㥛VBNQRBJ +?INrh@i+1 word allowedDTV-WDTV-?NNOn@NNPOni-1 tag+i word DT userNNʡE?JJʡEi+2 word insistingVBN9vJJ9v@i+1 suffix gerNN"~j?VBDMVBPx&1VBNsh|??JJjt?VBp= ףؿVBG ףp= RBv@NNPʡE?RBRZd;POSoʡ?INv?RPx&1NNPSQ''oʡDT NNSʡE?i-1 word disappearedINMb?RPMb i+2 word curtNNPS|?5^?NNSjtNNPV- i+1 word foamNNʡE?JJʡE i suffix xed VBNV-r @JJV- @JJRtVNNSˡE NNPS7A`NN?5^I RBRףp= VBPbX9VBZtVVBV- VBD;On@i-1 tag+i word PRP urgeVBPMb?VBDMbȿi word exclusivityJJsh|?VBZ(\NNRQ@VBNFxi+1 word emphasisRBRMbX9JJRMbX9@ i suffix gadNNSDlUH~jt?NNNbX9NNPQ롿i+1 word reachingVBףp= INףp= ? i+1 word line PRP'1ZJJˡE?DT)\(?NNPoʡVBG`"NNx&1?JJR7A`?RBRI +IN)\(NNPSףp= ?JJSh|?5i-1 suffix orm VBGx&VBD}?5^IWRBv?VBZx&1?JJRK7?INSDT-?NNx&?NNS#~jPDT5^I RBR㥛 VBN"~?NNP1Zdi word griddedVBN333333JJtV?VBDq= ףpi-1 tag+i word -START- ellenNNP+?VBN+߿i word appropriationsDTv/NNPSx&?NNSjt?NNQNNPMbi-1 tag+i word IN herPRP$V-@JJx&1PRPd;O@DTQNN ףp= i+2 word islandNNPZd;?VBPRQNNPS/$i-1 tag+i word VBG tenderedVBN?VBDi-1 tag+i word JJ learnedNNClVBNCl?i-1 tag+i word NN exclusivityVBZ(\NN(\?i+1 suffix otoVBN(\JJ#~j?NNPbX9?i-1 tag+i word WDT calledVBN/$VBD/$? i word 'nNNPn?POSMbX9CD\(\ i suffix ibeNNPK7A`?PRP$ +NNZd;O?VBDʡEVBMb?VBP? i word sonetNN7A`NNP7A`?i-1 tag+i word ( laveryNN^I +NNP^I +? i word rollieJJ rhNNP rh?i-1 tag+i word NNS monthlyVBPy&1JJ@RBsh|?i-1 tag+i word , democraticJJ`"?NNP`"i-1 tag+i word DT recommendedVBN^I +?JJ^I +i+2 word glitzRBRQJJRQ?i-1 tag+i word -START- examplesNNSQ?NNPQſi-1 word spaciousVBGRQNNRQ?i-2 word spendJJsh|?NNP~jtVB$~jt?NN~jt @VBN(\?VBP(\RBFx?i-1 tag+i word IN readilyRB"~j?JJ"~ji-1 tag+i word IN mobPRP$1ZdNNQ?JJ?5^I i-1 tag+i word NN idealJJ"~NN"~?i-1 tag+i word DT bomberRBS/$NN/$?i-2 word southeastVBPtVNNtV?i-2 word sheffieldVBZKVBDK?i+1 word rather RPPnVBDZd;OVBPS㥛?NNSx@NNP-?MDQ?VB)\(NNFx?VBN/$INPn?VBZZd;Oi-2 word eliminateWDTV-?VBGCl?JJx&NN7A`INV-i word determinedVBG!rhVBNMb`?JJrh|?VBDM?i+2 word singaporeVBZd;?RBSJJ7A`VBNHzGi-1 tag+i word JJ softNNSzGJJzG?i-1 tag+i word `` plainRBZd;@JJʡEFWMbi+2 word northernVBG~jtNN~jt@i+1 word fartherVBP%C?NNV-?JJ\(\VBDMbi-1 tag+i word JJ allDTʡE?PDT)\(?VBCli-1 tag+i word JJ metaphorNNCl?NNSCl i-1 word uhNN= ףp=NNP= ףp=?i-1 tag+i word VB mipsNNPSy&1NNPy&1? i suffix VenJJ ףp= NNP ףp= ?i word poughkeepsieJJ rNNP r?i-2 word affectingVBZ$C@POS^I +INS㥛пi-2 word fearsNNx?VBDx i word schoolNNGzNNPGz?i-1 tag+i word PRP doVB!rh?VBP!rhi-1 tag+i word IN useNNE?JJQRB}?5^IԿi-1 tag+i word WRB sventekNNPSSۿNNPS? i suffix nel VBJ +?JJ/$NNPS㥛?NNPS"~jNNjt?VBD~jtVBPV-UHClVBZ&1NNSfffff@i-1 word deniedJJ9v?NNʡE?RP+NNS!rhi-1 tag+i word CD chiefNNK7?JJK7i+2 word reasonsNNSV-RBOn?NNh|?5 i+2 word huge VBDZd;?VBNZd;׿IN5^I ۿNNS;OnVBV-NNMb?POS+WDT5^I ?JJvϿVBZx&@RBK7Ai-1 word storiesVBPOnVBDOn?i-1 word inexperienceVBZ9v?NNS9vi-1 suffix bayVBDI +NNPS㥛 VBNbX9NNx&1?NNP㥛 ?i-1 word happeningRPA`"ۿRB9vINjt?i-1 tag+i word RB seldomRB?JJi-1 word suggestedDT ףp= IN ףp= ?i-1 tag+i word VBD anthonyIN7A`NNP7A`?i word overrunsNNSV-?NNV-i-2 word lacklusterWDTffffff?INffffffi+2 word regulatoryVB㥛 VBGJJ?NNˡE@VBD= ףp=VBN/$?RBS?i-1 tag+i word POS surplusNN(\JJ(\?i-1 word sonataRB{GzԿJJffffff?NN)\( i+1 suffix amNNPh|?5?JJGzWPx&?i-1 tag+i word PRP$ flowingVBGzG?JJGzNNGzi+1 word talkingVBJ +?RBE?POSKVBPJ +JJEVBZK?i+1 word receivableNN(\?JJ(\i+2 word localNNP\(\@VBG-RB`"οNN rhVBDmVBNm?JJGzIN`"?i word measureNNST㥛 JJ/$NNCl{@NNP/$VBv/?i-2 word karimJJ-NNP-?i-1 word morallyRBy&1JJ)\(VBNsh|?@i-1 tag+i word -START- paperNNv?JJL7A`NNPy&1 i word tiedRBoʡNNbX9VBDmVBNK7A@JJ+IN+i-1 tag+i word TO petroleosVB&1ҿNNP&1?i+1 word bufferWRB?5^I NNd;OIN?5^I ?VBPd;O?i-1 tag+i word WP urgedRB1ZdVBD1Zd?i-1 tag+i word NN ballotNNS?JJS˿ i word quakeNNB`"[@JJx&1NNP= ףp=VB/$ӿi-2 word borrowingDTDlWDTDl?i-2 word borenNNS rNNPS?NNPSSVBGZd;?JJZd;߿VBZ r?i word claptrapNN+?JJ+i-1 tag+i word NN purposesVBZ(\NNS(\?i word liltingJJ`"?NN`"޿i+2 word mandatoryJJZd;?NNZd;i-1 word bicentennialRBQNNQ?i-1 tag+i word VBD awardedVBN?JJL7A`VBDx&i+2 word toppledWDT(\NN(\? i-1 word tellJJFxCDFx?i-2 word evidence RBMb`VB?JJV-NNMbȿFWMbNNPNbX9?VBD ףp= VBNT㥛 VBZS㥛NNSMb?i-1 tag+i word -START- specificJJ(\?NNP(\i+2 word advertisersVBN/$?NNtV?RBtVVBD/$i-1 tag+i word JJR regulatingVBGHzGNNHzG?i-1 tag+i word PRP parcelVBPx&1?VBDx&1 i-2 word acluVBCl߿NNCl? i-2 word eg&gJJV-NNV-?i-2 word radioVBZK7A`?INK7A`i+1 word achievementJJSS㥛?NNS㥛i word nicknamedINV-VBDffffffVBN^I +?i+2 word cleverlyNNS+?VBD+ i word avoidVBMbX?JJMbX9NNlVBD-VBPx&1?RB(\ҿi-2 word basedNNPS^I +JJ+?NNOnRBbX9IN"~ҿNNS`"?NNPd;O?i-1 tag+i word NNS suiteVBPX9v׿NNS ףp= NNoʡ?RBRQi-1 tag+i word CC tpaNNP"~?CD"~i-1 tag+i word NN parkedVBDx&1VBNx&1? i suffix nerNNS㥛@JJSOnCDffffffJJR#~j@VBZ&1NNSPnNNPrh|@VBMbXNNPSJ +RBSS㥛RBRZd@JJVBPQRB?RPK7VBD+VBN +i-1 tag+i word TO tcmpVB/$NNP/$?i-1 tag+i word CD fitNNSS㥛NNx&1JJVBP r@ i word lethalNN= ףp=VBZffffff޿JJNbX9?i+1 word signalDT$C?PDT$CJJ9v?NN9vi+1 word foundNNP{Gz?JJ"~NNK@VBP{GzWDT?RBffffff?INd;ONNS?i-1 tag+i word DT holeNNS?JJ +NNS+i-1 word saudiNNPV-?NNPS'1ZJJ ףp= i+1 word hypotheticalPRP$Pn?RBPni word europeansNNPS~jt @NNSq= ףpNNPh|?5 i suffix ubtJJvNN@VBDw/VBPCl?RB(\VBZSNNSB`"VB9v@i-1 tag+i word DT surprisinglyRB$C?NN$Ci+2 word neglectVBDx&1?VBNx&1RBQINQ?i-2 word closingNNPSQNN{Gz?JJ{GzNNPQ?i tag+i-2 tag JJ VBPJJRS?RBZd;O?RBR{Gzt?INd;O@DT rhCD/$?RPT㥛 ?VBD~jtVBZ)\(ܿNNP?5^I ?NNy&1̿VBNX9vNNSnڿFWl?VBPI +?VBG?5^I VBuVͿJJE i suffix rleNNSy&1NNV-NNPCl?i word obsoleteVBZZd;OJJZd;O? i word wrapVB?WDT|?5^ٿNN|?5^?WP i-1 word put RBʡEJJRX9vVBNKDTQ?NNS%CRP9v@NN(\PDTףp= ?WDTQJJnINtVVBG(\?i tag+i-2 tag TO TOVBKNNK@i+2 word chancellorVBZ|?5^?VB|?5^i-1 tag+i word JJS stretchesNNS+?NN+i+1 word equationVBG9vJJuV@NNi-1 tag+i word JJ noDT^I +?RB^I +i-2 word microvanVBNp= ף?VBDp= ףi-1 suffix betINh|?5?WDTh|?5 i word inputNNSSVBN-NN"~@ i+2 word moonIN(\VBNQ?RB?i-2 word crudeVBN"~j̿VBD"~j?i word spectacularlyRB(\?JJ(\ i word breachVBClNNS/$ۿNNS㥛?i-1 tag+i word PRP cheaperVBD(\RBRףp= ӿJJRq= ףp?i-1 tag+i word IN storageJJT㥛 NNT㥛 ?i-2 word educatorsNNPSKNNS㥛 NNP`"?VBPM?VBM i+2 word 'veWDTT㥛 IN/$NNSGz?NNP%C@VB+?NNQVBPPn?i-1 word terminationVBtVNNS^I +VBZ#~j?i-2 word republicansDT'1Z?IN'1Zi-1 word pointsRB ףp= ?INvVBV-RP{Gz?RBR~jtӿJJRʡE?VBP"~ji-1 word spanishNNPS+NN+?i-1 tag+i word NNS sawVBPʡEͿJJ +VBD|?5^? i word museNNSSNNS?i-1 tag+i word NNP concludeNNS/$VBP/$?i-1 tag+i word -START- beVBʡE?INʡEi-1 tag+i word VB surprisingVBGV-JJV-?i+1 word panelliWRBQNNPw/?PRP$5^I i-1 tag+i word JJ performVBPʡE?NNʡEi-1 tag+i word -START- daiwaNNClNNPCl?i+1 suffix nitNN|?5^JJzG?VBZMbNNS\(\?NNPnNNPSNbX9?VBGrh|?i-1 tag+i word -START- yieldVB(\NN(\? i suffix OFPRP$Zd;NNPDlINm@VBDK7ٿi-1 tag+i word DT retiredJJ}?5^I?NNx&1VBNS㥛ؿ i suffix 'NNNPn?POSMbX9CD\(\i-1 tag+i word VBD coollyRBZd;O?NNZd;Oi-1 word restoringVBGFxNNFx?i+2 word quotesVBZ\(\VB(\?JJR(\NN\(\?i-1 tag+i word CC rareVB(\JJ(\?i-2 word emissariesVBN?5^I VBP?5^I ?i-1 word fecklessVBGK7NNQѿNNP"~?i-1 tag+i word NN cartelNNSK7ANNK7A?i-1 tag+i word NNS submittedVBD?VBNHzGٿJJ(\i+1 word doubleDTRBQ?INQi-1 tag+i word PRP restructureVB(\?JJ(\i-1 tag+i word DT countertopNNDl?JJDli word swimmingNNd;O@JJ\(\VBGGz i word earsNNS/$?JJ/$i-1 tag+i word `` belgiumNNNbX9NNPNbX9? i-1 word killRP㥛 ?JJPn?IN㥛 NNSy&1?VBPnNNPSy&1i word uneducatedVBNףp= JJףp= ?i word processingVBGMbJJGzNNS㥛 @NNPX9v?i-2 word innovatedNNSGz?NNGzi-1 tag+i word NN resaleNNd;O?JJd;Oi word debatesNNST㥛 ?VBZT㥛 i-1 tag+i word VBP momentarilyVBNnҿRBn?i-1 tag+i word NNP threwNNS rhVBD rh?i+2 word dartboardPRP$Gz?NNPGzֿi word headquartersVBZ/$NNPSNNSlqVBN$CӿNN(\5&@i-1 tag+i word NNP romanticNNP/$JJ/$?i-1 tag+i word DT unifiedVBNFx?JJFxٿi-2 word feudingNN/$?VBNGzJJ9vi word needingVBGʡE?JJʡEi word dessertNNPʡENNʡE?i-1 tag+i word POS stingyJJS?NNSi-2 word sliverNNSB`"NNB`"?i word slowingVBG-@NNQ?JJuV i suffix ereVBDQJJSMbVBNS㥛 VBZ5^I NN/$VBPx IN +VBG/$ÿNNPnٿUH= ףp=ҿJJZd;?MDnVBuVWRB%C@RBClg$@NNSvFWw/?EX%CK"@i-2 word critics RPGz?JJSClVBP;On?RBGzǿINʡEVBZ;OnJJ+NN/$?VBN/$?DTʡE?NNP~jt?i-1 tag+i word VBN sterilizingVBG/$?JJ/$i-1 tag+i word -START- underINFx?RB~jtӿVBDK7i-1 tag+i word IN calculatingVBGJ +?NNJ +i-2 word malesJJ'1Z?NN'1Zi+2 word submitJJL7A`NNPZd;@NNK i suffix UVBNNPjtܿNN/$?JJi-1 tag+i word DT savingsNNS{Gz?NNbX9ֿJJV-ڿi-2 word couldPRPJ +?VBZHzGٿNNSX9vNNZd;VBP(\RB;On?PRP$PnRPL7A`@VBN}?5^I?DTZd;׿NNP㥛 ?VBv/?CCm?PDT/$?RBRx&1JJRRQINtVJJS㥛ؿVBDK7i+2 word issues VBV-NNjtPDTQ?RBRL7A`NNPK7A`JJRL7A`?RBx&1VBDB`"?VBNV-JJn@INx&?DTQCDK7A`?i-1 tag+i word NNP walesNNPS-NNPGz?VBZK7i-1 tag+i word IN awesomeJJ|?5^?NN|?5^i word weekdaysNNSZd;?RBZd;Ͽi tag+i-2 tag PRP FWNNtV?RBtVi+2 word cartoonsNNrh|NNPrh|? i-2 word sunIN333333?JJh|?5NNv?VBD9v?DT333333i-1 tag+i word , chemicalNNd;O?JJd;Oi word contrarianJJZd;?NNZd;i-1 word everythingRB7A`?NNtVοVBDOn?VBNClJJMbX9VBZI +?NNP +?NNPSS㥛Կi+2 word enjoyedJJQ?NNPPnؿNNSʡENN)\(?i-1 tag+i word VB neededVBN#~jJJ#~j?i-1 word sponsorVBD{Gzt?VBN{Gzti-2 word subpoenaJJRsh|??RBRsh|? i suffix genNNSS㥛NNPQJJʡENNNbX9@POS +RB9vi+2 word figureVBrh|ϿRB+NNDlVBPv?JJn@VBZvi-2 word magicalVBGV-JJV-? i suffix ric VBDQٿFWQRBRffffffJJ%C @VBZy&1NNS rNN|?5^VBNRQVBP(\NNPp= ף?i+2 word conversationRB"~?NN"~ i word wigNNS= ףp=ڿNN= ףp=?i-1 tag+i word VBD snagsNNSS㥛?NNS㥛ؿi-1 word triangleNNPStVNNPtV?i-2 word abruptlyJJ#~j?RBRnRBq= ףpݿi-1 tag+i word CC causeVBK7?VBDK7i word examineVB/$?JJ/$i+2 word surgedIN|?5^NNP`"NNv?RBsh|??JJ/$i-1 tag+i word IN innocentJJl?NNli-1 tag+i word CC losesVBZtV?NNStVi+2 word portrayingVBN㥛 NN㥛 ?i-1 tag+i word JJ dressmakingNN"~?VBG"~i+1 word targetJJV-IN㥛 DT㥛 ?RBV-? i-2 word nameVBZZd;?NNSK7A?NNPjt?VB= ףp=NNJ +JJV-i word dressedVBD9vVBN9v? i word crabNNS?JJSi-1 word marksRBR?5^I JJy&1?VBNʡEVBDʡE?RB&1i-1 tag+i word IN nickelNNl?JJli+2 word denyingNNQVBDn?VBNV-JJOn?NNS/$VBGS?i-1 tag+i word TO voteVBx&1@NNSd;ONNni+1 word maniaPRP$1ZdNNQ?JJ?5^I i-1 tag+i word NNS filledVBNL7A`?JJL7A`i+1 word tightlyRBRl?JJRli word violatingVBGZd;O?JJZd;Oi-1 word classesJJ`"IN`"?i-1 word audiencesRP~jt?RB+INv/ i word drinkVBsh|??NNsh|?i-1 tag+i word IN astuteJJףp= ?RBףp= i-2 word inexperienceNNSzG?NNʡEֿIN9vi-1 tag+i word NNP leemansNNPSClNNPCl?i-1 word carolinaVBG ףp= NN;On?VBD{GzVBNS?VBZX9vNNSX9v?i-1 tag+i word , i.e.RB㥛 NN"~FWV-?i-1 tag+i word VBN droppingVBG~jt?JJ~jti-2 word sharecroppersJJ#~j?NN#~ji-1 tag+i word NN reviewVBZGzNNGz?i-1 tag+i word IN buildVBˡE?NNˡEi-1 tag+i word VBZ stopVB/$?NN/$ i word hellNNn@RB(\PRP\(\VBPʡEۿ i word totalsVBZT㥛 ?NNS`"ֿRBS㥛i-1 tag+i word NN rubenesquelyJJffffff?NNPffffffi-1 tag+i word RB prettyVBPzGRB/$?JJjti word executingVBGZd;O?NNZd;O i+2 word ideaVBV-JJ%C?VBDE?VBNEȿVBPQ?RB%CINCl i+2 word astNNSx&1RBx&1?i+1 word flankerVBP\(\NNS?JJV- i word bikiniNNʡEۿJJOnӿNNP1Zd?i-1 tag+i word JJ navyJJClNNPCl?i-1 tag+i word , mgmJJ/$NNP/$?i-1 tag+i word VBZ tomDTSNNPS?i-1 tag+i word NN colorsNNSy&1?VBZy&1ܿ i word go VBNZd;OͿNNףp= FWjtVBDV-VBP9v@JJDlVBZ㥛 NNSMbVBCl@NNP|?5^i-1 tag+i word DT plannedVBNzG@JJ~jt?NNSNNP;On?i+2 word droppingVB$C?NNFxVBP$CJJv/ͿNNSffffffNNP/$? i suffix 60sRBQNN/$CDjtJJ#~jVBZ%CNNS$C@ i suffix ectVB/$@RBp= ףVBNPnVBPn@JJ^I @INPnRPx&1NNPST㥛 NN @VBDmRVBZy&1VBGK7NNSuVCDʡENNP7A`?i-1 word complainDTʡE?VBP+RPK7RBDlINM? i-1 word fellRBX9v@INlRPV-?JJS㥛NNX9vRBR333333JJR333333?CD ףp= ?i-1 tag+i word VBZ afraidJJ}?5^I?NN}?5^Ii-1 tag+i word NNS involvedVBNS㥛?JJw/VBD"~j? i suffix tipNNSB`"NNB`"?i-1 tag+i word PRP$ executiveNNMb?JJMbi-1 tag+i word VBN stepsNN%CܿNNS%C?i-1 tag+i word , hurtNNOnۿVBN?RBClɿi-1 word desertPOSʡE?NNP|?5^?VBZʡENNPS|?5^ٿi-1 tag+i word VBD outINuVRPGz?RBV-?NN|?5^ i suffix garVBPNbX9JJ'1ZԿVBZ9vNNSL7A`NNP#~j?NNp= ף@i-1 word mentalityWDTNbX9INNbX9?i+2 word hugelyNN|?5^NNP|?5^?i+1 word underlinedRBR)\(RBrh|?NN7A` i word iceNNS|?5^NN= ףp=@JJw/ܿNNPS㥛i-2 word serveNNS9vVBN-?JJ!rhi+2 word reconsiderMDh|?5VBp= ף?VBPK7?NNOnNNPK7i word pesticideJJy&1VBrh|VBP\(\NNuV@RB\(\i-1 tag+i word POS chemicalNNT㥛 @JJT㥛 i-2 word lutherVBDbX9@NNuVݿJJp= ףпNNP/$i-2 word cleanerDT+WDT+?i word sventekNNPSSۿNNPS?i-1 tag+i word `` interstateVBףp= NNPףp= ?i-1 tag+i word CD retiredJJCl?CDCli-1 tag+i word `` everyDTK7A @JJ^I +NNףp= NNP/$i-1 word sittingRP&1?RB(\?NNd;OJJ(\?INNbX9?NNS'1ZNNPSq= ףpi-1 tag+i word IN guzzleVBsh|?@NNsh|?i-1 tag+i word , !HYPHENVBPx?VBNp= ףؿIN= ףp=NNQ?NNPS-?VBD(\RBRFx?CD+?RBNbX9NNS7A`ҿVBGKVBZ(\NNPv/?JJrh|@ i+2 word lawsVBZ`"?VBPQ?RPCl߿RB(\IN`"i-1 suffix seyVBGMbNNX9vϿVBP/$JJ +?VBZMNNSM?NNP\(\?i-1 tag+i word TO openVBS㥛@RPrh|JJni-1 tag+i word , lancetNNPE?UHEi-1 tag+i word NNP supportersVBZtV޿NNStV? i word ap600NN rh?NNP rh i+2 word pongNNSZd;NNZd;?i-1 word partnerNNPQ?NNPS rVBGrh|?NNrh|VBD/$ۿi-2 word promptedNN/$?JJ/$i-2 word societeNNP%C?FW%CԿi+2 word versionsVBP= ףp=?RBR9vJJRm i+2 word chewVB"~VBPtV?VBNh|?5 i word chorusNNSGzNNh|?5@JJFxi-1 word federal NNS㥛 @VBVBD(\WDT(\VBPK7JJ!rh?VBZq= ףpNNPZd;O@NNPSw/ܿVBGv/ NNT㥛 @i+2 word balzacJJRy&1?NNP+?NNS+RBRy&1 i word knitVBNK7?VBDV-VBPL7A`i+1 suffix os.NNPp= ף@JJQNNq= ףpݿ i suffix okeFWX9v?VBD`"۹%@INDlDT(\NNSd;O NNPsh|??JJd;O JJRʡEۿVBPOnWDTvRB)\(?VBSNNy&1VBZSRP/$i-1 tag+i word DT obdurateJJ-?NN-i+1 word sense VBʡEVBPʡE?PRP333333JJMbPJJRA`"?CDI +?NNI +JJSp= ף?RBSp= ףPRP$Mb?RBRA`"VBN-޿NNPA`"ۿi-1 tag+i word `` dadJJ|?5^NNP|?5^?i+2 word carolDTHzGNNPHzG?i+2 word responsibilityVBMb?VBPMbi+2 word drexelNNPSˡENN +?NNP~jt?i word promotedVBNS?VBDSi-1 tag+i word DT colorNNX9v?JJX9v i+1 word podJJR(\JJ(\?i-1 word explosionVBNMbVBDMb?i+1 word planningNNSٿJJףp= NN?NNPףp= ?i-1 tag+i word POS slowingVBGy&1?JJy&1i-1 tag+i word NN meddlingNNjt?VBGjti-1 tag+i word PRP endureVB'1Z?VBP|?5^ڿJJ+NNtVοi word existentialistNNS?JJSi-1 tag+i word DT specialJJ\(\@NN\(\i-1 tag+i word NNP cutVBPPnVBDPn?i tag+i-2 tag WRB NNSNNPV-?RBGzNNM?WDTsh|??JJMDTx?NNSV-ҿi-2 word megargelNNSvVBZ/$?DT~jt@PDT}?5^Ii+1 word openedVBP?NNv?JJˡERB(\?VBi+1 word stand RBn?VBPrh|?WDTrh|ϿNNSrh|VB}?5^IVBDS?JJrh|?DTrh|?NNPMi-1 tag+i word NNS purchasedVBNS?VBDSi+2 word announced INK7A NNSK7A`NNP+?NNmݿPOS)\(RB9v?JJ?5^I ?VBZ)\(@NNPS)\(?RP333333? i suffix veyVBFx?NNFxi-1 tag+i word , economiesNNP-NNS-?i-1 tag+i word RB satVBP rhNNSVBDI +?i-1 tag+i word JJ burdensNNSjt?NNjti-1 tag+i word DT glibNNS|?5^JJX9v?NN~jthi-1 tag+i word JJ sectionNNPGzNNGz?i-1 word interestingNNˡE?RBˡEi-1 tag+i word IN trustNNV-?JJV-i word enginesNNS~jt?NN~jti+2 word walkinVBN^I +NNP^I +?i+1 suffix aenJJ+IN+?i-1 suffix hutRPm@RBZd;NN'1ZCD'1Z?INʡEi-1 tag+i word NN criticNN/$?JJ/$i tag+i-2 tag VBG -START- VBDMb?PDTQJJMbIN+?RP1ZdDTMb?RBV-NNMbNNS rhNNPS㥛?VBNZd;?NNPS ףp= VBGoʡ?%i-1 tag+i word NNP telecommunicationsNNPSuV?NNS?5^I NNV-?NNPq= ףpi+2 word enterprisesVBN)\(VBD)\(?i-1 tag+i word DT ellesmereNNPZd;?JJZd;i word confessesVBZbX9?NNSbX9i-1 tag+i word DT professionalJJ{Gz?NNGzNNPS㥛?i+2 word innovatorsNNS;On?JJ;On i suffix ielWRB7A`NNSENN'1Z?NNPHzG?i+2 word divisionsVBZ(\¿NNS?VB1ZdRBʡEPDT~jtVBPJJK7A`@i-1 tag+i word NN underwriterNNx?RBx i word paysVBZ'1Z?VBZd;VBDEi-1 word consideredVBG&1?NNp= ףؿRB"~jNNSd;OJJA`"?i-1 tag+i word NN followedVBN㥛 RBףp= VBD$C?i+2 word occurNNSS㥛?NNMbp?RBL7A`i-1 tag+i word , rosariansVBZHzGNNSHzG?i-1 tag+i word NN eitherCC&1ڿDT&1?i-1 tag+i word PRP letVB'1Z?VBP`"VBD|?5^i word readinessNN"~?JJ"~i-2 word firstIN"~jRB= ףp=@NNx&1?PDT/$VBZvNNPT㥛 ?VB~jt@WDTJJRuV?VBPq= ףp?PRPjt@DT~jtNNSp= ףRBRuVͿVBNMbX?JJy&1?RPGzǿNNPS)\( VBG!rh?VBD/$i-1 tag+i word NNP selectedVBNB`"ɿVBDB`"?i word freightwaysNNPSrh|?NNPrh|i-1 tag+i word -START- ifINn?NN{GzNNP/$i-1 word statesNNP|?5^?VBK7VBPK7?NNPS|?5^i-2 word equityVBNp= ף?VBP?5^I JJuVNNPm?VBM?RB(\VBDzGi+2 word bunchVB\(\?VBPPDT(\ i+2 word samNNPK7?NN"~jNNS333333ÿVBNJ +ѿJJJ +?i-1 tag+i word VBN widerRBRV-?JJRV-i+2 word uniceNNPST㥛 ؿRB|?5^@JJT㥛 ?IN|?5^i-1 tag+i word NNS signedVBDv/VBNv/?i+1 word gamesNNSB`"?NNP rh NNPSQ @JJ&1?NNMbVBNSݿRB-i-1 tag+i word VBP drinkingVBGQ?JJQi+1 word taxpayersJJRX9v?INʡE?DTʡEݿVBMb?VBG333333?NNʡEWPX9vi-1 tag+i word NNP brandsVBZA`"NNPSsh|??NNSd;O?NNPp= ףi word memorabiliaNNffffffNNSffffff?i+2 word recognizeWDT(\NNSQ?NN?i-1 tag+i word DT aluminumNNV-?JJV- i word cakedVBNClVBDCl?i-1 tag+i word DT rebornNNZd;JJZd;?i+1 suffix whoVBI +?EXv?VBZGzVBPL7A`пVBNS?INMbX?JJRoʡNNE @FWGzVBD|?5^POSNNPQRBCDZd;ONNPS333333@JJZd;O RBRoʡNNSS㥛@i+2 word malaysiaVBZ{GzNNS{Gz?i+2 word pierceDT333333IN333333?i+1 word thermoJJ(\VBD(\? i word falseJJo!@NNS)\(RB ףp= NNʡEi-1 tag+i word VB purchasedJJKVBNK?i+1 word arbitraryRBS{Gz?JJS{Gz i word tarNNSX9vֿNNK7?IN333333 i+1 suffix hNN/$?NNP/$i+2 word closingRBRCl?RBClۿ i-1 word buzzRPuVNNS(\ؿRB?5^I ?NN(\?INX9vi-2 word vanguardNNQNNPQ?i+1 word beechamPRPGz߿NNPGz?i word periodicallyLS +RB +?i-1 tag+i word POS matagordaNNP?NNPSi+1 word agentsVBPˡEVBGn?NNMb?JJQۿNNP{Gzi-1 tag+i word DT smolderingVBG\(\?NN\(\i-1 tag+i word VB debateVBy&1NNy&1?i-1 tag+i word `` traviataNNPDl?NNʡEFWQ i word toppleVBʡE?JJMbXNNQտ i-1 word mciVBDQ?NNPClNNPSV-?NNS rhVBNQi-1 tag+i word : financesNNSJ +@NNףp= NNPNbX9i-1 word robertNNPSQNN-˿RBV-NNP"~j @VBZ%Ci-1 tag+i word TO fosterVBK?JJRKi+1 word betteDTDlNNPS㥛?NNS㥛INDl? i word mitreNNPSNbX9NNPNbX9?i word privatizedVBNV-?JJV-ݿi-1 tag+i word IN catholicJJx?NNPx i suffix IGNNN㥛 VBDQۿNNP333333ۿNNPSK7A`JJI +@i word surgeonNNSOnNNOn?i-1 tag+i word WP headsVBZ^I +?VBP^I +VBD333333 i word denverNNd;ONNPd;O? i-2 word red VBx&1?NNV-POSCl?WDT rhJJ~jtIN!rh?VBZ= ףp=?RBx&1@VBD/$VBN/$?NNS+ i word sackNN^I +?JJ^I +i tag+i-2 tag VBP PRPVBN/$TO㥛 ?NNP#~jJJROn?VBDy&1DTˡE@PRPK7ٿRB)\(@VBClPDTX9v?VBP%CRPGz߿CCxRBRx&1EXtV?VBGQ@WDT(\JJS@VBZy&1NNOnNNS/$?CDw/?INMbNNPSv/i+2 word subsidizedRBV-?NNmJJFx?i+2 word detachedNNS333333NN333333?i+1 word coasterNNS㥛?JJHzGVBNX9vϿi+1 word headachesJJ!rh?NN!rhi word mineralJJZd; NNZd; @ i word areRB$CVBPV-o@JJv/INK7A`DTClNNPZd;OVB ףp= ǿNNPSK7A`ݿi-1 tag+i word NN tightenedVBN|?5^VBD|?5^?i+2 word finalVBZJ +?VBPJ +VBG rh?NNQ?IN/$i+2 word enemiesJJSˡE@NNSDlNNx&i-1 tag+i word IN compactNN?5^I ?JJ?5^I ҿi word learnedVBN9v?NN5^I VBDbX9?i-1 tag+i word DT treeNNK?JJKi+1 word presentationsVBP;OnJJ;On?i-1 tag+i word VBZ idealNN/$JJ/$?i-1 tag+i word -START- alreadyNNP/$RBOn@NNԿPRPSJJʡEINI + i word blaredVBN= ףp=ҿVBD= ףp=?i-1 tag+i word NNP codeNNףp= ?VBDףp= i+2 word claimsRBSy&1?JJSy&1VBZ`"NN|?5^?NNSbX9ֿi-1 word summitNNʡEVBGE?JJK7A`RBMbX9INK7A@i word prepulsidNN5^I @NNP5^I i-1 word unknownsVBZd;OVBPNbX9?RPCli-1 word condemningRBR9vNN9v? i-1 word bayNNPS㥛 VBNbX9NNx&1?NNP㥛 ?VBDI +i-1 tag+i word , meaningVBGJ +ٿNNJ +?i+1 word somedayVBNMbVBQVBP1Zd?i-1 tag+i word VBG softeningVBGffffff?NNffffff i suffix LDPNN9vڿNNP9v?i+1 word killingVBPSտVBDS?i word foothillsNNS"~RB/$NNP-@i-1 word itself VBNQ?VBPOnRBʡE?IN;OnVBGˡE?RP(\@JJB`"?VBDʡEDTB`"NNSv/VBS㥛NN+WDTCl? i+2 word cvnNNSA`"NNPA`"?i+2 word cliffordDTX9vϿJJQ@RBS㥛NNP㥛 i-1 word allegingIN'1Z?DT'1ZԿi word prosecutorNNl?JJli-1 word canduNNCl?JJCli-1 word reasonedVBZV-NNSV-?i+1 word chapdelaineNN~jtJJ~jt?i-1 suffix herVBN`"οRBffffff?NNPS?RPRQPRPx&NNS rhտNNv/@RBRw/INtVVBG^I +?VBP ףp= VBZ/$ѿNNPbX9VBrh|?RBSjt?CDbX9JJS/$?VBD +?JJHzG?DT(\JJR)\(?UH9vi+1 suffix proJJV-@NNq= ףpNNPCli-2 word marunouchiNNS/$RBB`"?NN)\(i+2 word lavishNNPףp= VBʡEJJL7A`?i-1 tag+i word DT woebegoneJJV-?NNV- i suffix W.CD+NNS?VBDZd;NNPCl?i word dodgersNNPSx?NNSRQNNP5^I ӿi-2 word vegetablesNNSjt?NNjt i word towersVBZZd;NNSjtNNP-?i-2 word activistVBDlVBPtVNNS?IN/$i-1 tag+i word VB overRBINm?NNP+RPGz@i-1 tag+i word NNS fineryNNQ?RBQi+2 word sampledNNK7A`CDK7A`?i+1 word ticketsVBP{GzJJ#~j@NNS"~VB{Gz?NNZd;OVBN +i+2 word butterNNSGz?NNnJJQٿi-2 word imposedVBG}?5^IJJB`"ѿNNS㥛?i-1 word shipbuilderVBNQ?VBDQi-1 word snappyNN~jt?JJ~jti-1 tag+i word DT northwestJJS|?5^NN|?5^@JJClNNPjti-1 tag+i word NNS ineffectiveVBPRQJJRQ?i-1 tag+i word DT consistVBPE@NNSEԸNNMbi-1 tag+i word VBN difficultiesVBZ(\NNS(\?i+2 word topicsVB/$RPrh|INK7A?i+1 word minerVBZ(\NNPSZd;?NNSvNNPoʡ?i-1 tag+i word NN towerNNSy&1NNy&1?i+2 word turkeyNNP-?NNS-i-1 tag+i word NN rearJJ/$?NN/$ſ i+2 word adPDTMbX?RBGz@IN"~j?DTMbXRP"~jNNGzi+2 word gomezVBPMbX9NNMbX9?i-1 suffix top NNP$C?VBGQѿNN(\@NNSjt?CD\(\RBSVBjtJJzGPOSMbX9i-1 tag+i word IN saidNNP+?VBN+i+2 word faultJJRK?RBRKi word screeningsVBQۿNNSQ? i-1 word tunaNNSQVBGK7NNT㥛 ?i+2 word associationRB +޿NNSK7ANNPjt@NNPS333333?JJd;ONNʡEi-2 word asideNNjt?JJK7AVBGh|?5?i-1 tag+i word , concurrentJJ㥛 ?NN㥛 #i-1 tag+i word -START- certificatesNNP(\NNPSX9v?NNS(\?JJZd;NN +ֿi word humphriesNNPS333333NNP333333? i word szetoNNPS̿NNrh|NNPMbX?i-1 tag+i word CD aboardINV-?NNPV-i+1 word consequencePRPy&1ԿCDy&1?i-1 tag+i word NN governingNNX9v?VBGX9vi-1 tag+i word , specializedNNPS +NNP +? i word \*NNS9vSYMFx?NN)\(i word winningVBG'1Z?NN+JJ#~j i suffix rkeJJv߿NNPv?i-1 tag+i word VBD presentJJzG?NNzGi+1 word worthNNJ +?JJJ +i word dealershipsVB~jtNNS +?NN{GzԿi-1 tag+i word DT fleshpotsNNSMb?NNB`"JJmݿi-2 word advertisementJJ9v?NN9vi-1 tag+i word NN countsVBZE?NNSEi-2 word throwingNNCl?JJRCli+1 word aircraft NN/$ @WDT-JJ^I +INMbNNSX9vNNPRBK7ѿCDV-DTV-?VBNV-?i+2 word trevinoJJ-ۿNNP-?i-1 word correctedNNSףp= VBGܿNNbX9 @JJI +i word easiestVBB`"JJSx&1?NNI +i-1 tag+i word `` withoutINףp= ?NNPףp= i+1 word controlVBx?PDT/$DTZd;O?PRP$Mb?NNSw/?RBRCl?PRPMbRBI +INMbJJsh|?VBP;OnNN㥛 ?JJRx&1?NNPxi word jeffreyNNGzNNPGz?i+1 word earnings NN#~j<VBDx?RBh|?5޿JJR~jt?NNSp= ף?NNPSGz?VBGK7ARBR~jtӿVBN@NNPGzVBbX9?JJS㥛@i+2 word terryNNPS/$NNP/$?i-1 word wendyVBZ ףp= @POS ףp= PRP)\(ܿi-1 tag+i word VBP wallowingVBG +?NN +οi word earningVBG㥛 ?NN^I +@JJMbXi-2 word quistINh|?5?NNPS/$RBh|?5NNP/$? i+1 word usedVBP+?WDTV-JJK7ANNSq= ףp?VB+NN/$?i+2 word competitors VBZ +?VBGQNN~jtÿVBDRQ?VBNMbؿVBP'1Z?RBnJJ9vIN/$?i-1 word williamNNףp= ÿNNP}?5^I?NNPS/$i-2 word associatesRBMb?INMbi-1 tag+i word JJ peasantsNNS?5^I NNP?5^I ?i-1 tag+i word IN specialtyNNZd;OJJZd;O?i+1 word pretrialJJQ?FWQ i word breaksVBZ(\?VBPx&1NNS+?NNjtVBDh|?5i-2 word outfitsNN ףp= ?JJ ףp= i word unlikelyRBZd;_VBZ(\JJd;O@i-2 word beansVBDv?VBPvVBG!rhNN!rh?i-1 word lloydVBZʡE?POSʡE i suffix iacRB ףp= JJ㥛 @MD9vVBbX9NNI +ֿi-1 tag+i word IN inexpensiveJJ;On?NN;On¿ i word averyRBxNNKNNPK7A`@i+2 word esotericVBZ rhVBx&1VBPQ?i-2 word remainVBoʡRPK7JJFx?NN|?5^RBX9vIN}?5^I@i-1 word symptomsDTʡE?VBPʡE i word fondlyVBPZd;ORBZd;O?i-1 tag+i word NN collapsingVBGI +?NNI +i-1 tag+i word DT ensembleJJRQNNRQ@ i word yearlyJJ;On?NNmRBSӿNNPK7i+1 word greatsRBRClJJS㥛@IN rhi+2 word threatsWDTQ?INQοi-2 word restrictedVBP rhNN rh?i-2 word hittingNNSd;O?NNd;O i word flowerJJRuVNNuV?FWx&1NNPx&1? i+2 word beVBGn VBPx&WDT㥛 RP/$?RBVIN ףp= FW/$?VBNn?DTV-?NNK7?RBSSMDI +?NNPSZd;OͿJJMbWPbX9?VBZ9v?PRP%C?NNS|?5^?VB1Zd@PDTJJSS?JJRMb`?VBDM?NNP\(\CD= ףp=?EXI +@i+1 word aptlyVBPClۿRBCl?i word closestNN|?5^JJS?5^I @JJףp= RBsh|?ݿi-2 word overrideNNT㥛 VB= ףp=VBPv/?i-2 word protestsVBN?5^I ?RB333333?INmi-1 suffix uchCD9vNNSS㥛?VB333333?NNPS-NN +?VBDʡEVBNA`"?VBP&1JJMbX9?RBOnVBG7A`PRPT㥛 JJRl @INp= ף @RBR%C@VBZMNNPPni word hopelessNNP^I +JJ)\(@NNQ i-2 word whoVBDV-?VBPS?WDT/$JJ%CWPJ +?DTZd;NNSuV?PRP$V-?RBQ?CCZd;O?RBS?MDClJJSؿVBZ\(\?VBN~jtRPffffffֿPRPjtƿVBS?RBRSCDnVBGZd;NNP5^I  @INK7@NNPS#~jJJR333333NN= ףp=i-1 tag+i word NNS rolledVBN(\VBD(\? i word fightsVBZ rh?VBD rhi-1 tag+i word : belongsVBZS㥛?NNSS㥛i+2 word extentVBP r?NN rпi-1 tag+i word VBP upRPRQ@RBL7A`IN$Ci-1 tag+i word IN russianJJ rh?NNSNNPJ +?i-1 tag+i word RB disposedVBNB`"JJB`"?i-1 suffix tomNNPS?5^I ?NNQNNPMbX? i+1 suffix soVBDCl?NNSK@''5^I ?IN\(\߿RPbX9޿VBٿRBRx&1?VBP9v?VBZ"~j?NNMbp?JJ= ףp=VBN+?WDT?JJRjtVBGGzPOSMbRB333333?DTw/?NNP!rh?JJS|?5^i+1 word already CDT㥛 JJuVͿIN{GzVBZ333333NNPZd;OͿNNPS?5^I ?RPm?RB1ZdNNCl?VBPClNNSx&1?i-1 tag+i word NNP drugNNPSSӿNNPS?i-1 tag+i word DT restJJSZd;NNMbX9@JJ+i-2 word printoutsVBMVBPGz?RBuV i word fultonJJsh|?NNffffffֿNNPh|?5?i-1 tag+i word , enlistedVBN+VBD+? i suffix BOsNNS'1Z?NNrh|NNPK7i word pointedVBP/$VBNuVJJ㥛 VBDjt@i word indifferentVBI +JJn?NN`"i-1 tag+i word DT defamatoryJJrh|?NNrh|i word pricelessJJX9v?NNX9v i-1 word way JJB`"?WDT}?5^IܿRBS+?JJS+VBP rȿEX333333?NNPSy&1?RP1Zd˿NNX9vVBD+RBʡEIN(\?NNPy&1i word farfetchedVBN/$JJ/$@i-1 suffix nieNNPSClNNPCl?i-1 tag+i word NN reporterNN(\?RB(\i word donationsNNSQ?NNQѿi+1 suffix smsVB +JJ1Zd?NNPV-i+2 word republicNNPS?NNPSx&?NNSq= ףpտJJi word engineerVBP~jtNN r?VBZGz߿i tag+i-2 tag PRP RPVB㥛 ?VBD㥛 i-1 tag+i word NN recoupVB|?5^?VBD|?5^i-1 word opulentNNPS'1ZԿNNP'1Z?i-1 word superviseJJCl?NNCli-1 tag+i word NN introductionsVBZ;OnNNS;On?i word subcommiteeWDTKNNK?i-1 tag+i word VBZ everywhereRBRQ?VBN^I +JJS㥛Ŀi-1 tag+i word NN establishesVBZsh|??VBPsh|?ſ i suffix MayJJB`"?NNB`"i-1 tag+i word DT decidedlyRBZd;O?JJZd;Oi+2 word placesRBSʡE?JJSʡEJJ?NNi-2 word discoveriesJJ~jt?NN~jtӿi word prestigeNN(\?JJ(\i tag+i-2 tag DT VBNVBPQVBNX9vNNSMbXJJMbXRBSMbX?JJS5^I JJRQ?RBRZd;O@EX/$RB'1Z?NNPS= ףp=?VBG{Gz?NNA`"?VBZDlNNPK7?i+1 word newspaperJJZd;?NNvϿNNPCli-1 tag+i word JJ courtsNNS{Gz?NNP{Gzܿi-1 tag+i word NN meansVBZDl?NNSDlѿi-1 tag+i word CC fancyVBP;OnJJx&1?NNʡEi-1 tag+i word , pickVBZ}?5^IVBL7A`?VBD/$i-1 tag+i word RBR gauloisesNNPףp= NNPSףp= ?i+1 word auctionsVBN(\JJ(\? i word sumsVBZZd;O?NNSV-?NNV-VBDZd;O i word becaseVBv/VBP9vҿINsh|??i-1 tag+i word WP hewsVBZK?VBP-VBDV-i-2 word interviewsNNSSNNS?i-1 tag+i word JJ bestRBSd;O?JJSd;Oi word duplicityNNZd;O?RPZd;Oi+2 word peaceNNDlJJX9v?VBPDl?NNSX9vi-2 word imageVBPmVBZ~jt?NNS^I +ǿVB(\?VBGA`"?NNS㥛 i word charge JJClWP+VBZmVBbX9?NNMb@VBNX9vVBP#~j?RBHzGNNSףp= NNPZd; i word azemNN/$NNP/$?i+2 word unusuallyVB~jt@VBP~jti-1 tag+i word NNP injectedVBN/$ÿVBD/$?i+2 word either RP-NN ףp= ?NNS|?5^VBN\(\?INZd;O?VBZ|?5^@NNPSB`"JJ\(\WDTzG?RBh|?5VBGB`"NNP/$?i+1 suffix ens JJQ?NN'1Z @CCxPDTmͿWDT ףp= RBV-DT~jth?NNPSx&1̿WP rh?INʡE?NNPZd;i-2 word circlesDTI +?NNI +i-1 tag+i word DT pimpsNNSA`"?JJX9vNN"~ i+1 word wayNNPSoʡJJw/@WDT1ZdۿJJSd;O?RBK7 INjtCC~jt?PRP333333ӿNNP?NNS㥻RBSd;OVBNmCD333333?DTv@i-1 tag+i word WRB establishedVBN|?5^JJ|?5^?i+1 word exposuresVBGX9vNNX9v?i-1 tag+i word VBD returningVBG{Gz?NN{Gzi+1 word religionJJʡENNPʡE@i-1 tag+i word , foundVBN/$?VBD/$i-1 word dollars NNERBR333333ۿRBCl?NNSnJJ}?5^I@VBDOnJJR333333?VBP&1VBNOn?IN ףp= ߿ i-1 word doNNSE?RBRS㥛VBP|?5^VBNZd;OWDT/$RPCl?VB~jt @RBE@NN}?5^IJJRZd;@JJJ +VBZ= ףp=IN#~jDTS㥛@NNP`"i-1 tag+i word JJ desktopNNK7@JJK7 i word riscJJʡERBʡENNPʡE?i-1 tag+i word -START- shouldMD&1?NN#~jINrh|i+2 word bearsJJp= ף?NNp= ףi word okobankNNV-NNPV-?i-1 word mixtureVBZNbX9ؿJJNbX9?i-1 tag+i word IN exportingVBG/$?JJ/$i-2 word plaintiffsVBGv?VBN!rhNNvVBD!rh?i-1 tag+i word RB influenceVBuVVBPuV?i-1 suffix rtzVBZ{Gz?NNS{Gzi-1 word swellingNNS rhNN rh?i-1 tag+i word `` growingVBG +?NN +i+2 word effectsNNoʡVBN9v?VBPV-WDT)\(?JJ+?INVBQi-1 tag+i word NN gandhiNNPSS㥛ԿRBClNNP +?i+1 word plannersNN?JJѿi+1 word debate RB~jtJJRL7A`VB(\@NNPS5^I VBNKJJtV @NNSA`"?NNP r?NNZd;OVBDFxi-1 tag+i word CC workerJJ(\VBCl߿NNA`"?i-1 tag+i word `` whitewashNNOn?RBOni-2 word shoddyNNJ +?JJJ + i word solNNPSQNNPQ?i-1 suffix rld NNPSw/?JJZd;NNx&?VBP$C?RB'1ZIN{Gz?VBZCl?NNS1ZdVBGS㥛?POSZd;WDTZd;@DT +NNPHzGi-1 tag+i word NNP badlyRBS㥛?JJS㥛Ŀi-1 tag+i word NN roofsNNSK7A?NNK7Ai-1 word constitutionVBZ}?5^I?NNS}?5^IԿWDTV-?INV-i-1 tag+i word IN continuousNNK7NNS{GzJJV-? i+2 word turnVBPA`"?RBQINy&1@NNSv/ݿJJ~jtNN+ǿFW= ףp=VBN~jt?i-2 word violatedJJ?5^I CD?5^I ?i word whisperingVBG&1NN&1? i word lengthNNS7A`NNI +?JJh|?5i-1 tag+i word -START- nigelJJK7NNPK7?i-1 tag+i word VBP higherCCA`"RBR(\JJR?5^I ?i-1 tag+i word DT keckNNSʡENNPʡE?i-1 tag+i word TO expeditingVB+VBG+?i-2 word bladderNNPn?JJPn i word shirtsVBZ(\NNS(\?i-1 suffix csbJJnCD&1NNPL7A`@i+2 word coverJJuV?VBZV-NNSZd;OVB~jtӿNNV-?VBDʡE?VBNDlVBPʡEi-1 tag+i word RB exhilaratingVBGd;OJJd;O?i-1 word resourcesVBNV-?VBDV- i-1 suffix yaNN333333VB$C?VBP㥛 VBG;On¿ i suffix top IN?JJQ@NN̿RBRK7A`ſRBK7AпVBZ^I +DTx&NNSQVB)\(@RPEPRPSi+1 word suspicionVBGX9v?JJX9vi-2 word rockefellerRP/$?NN+?RB/$VBZ+ǿNNSsh|?NNP rhNNPSx&1?i-1 tag+i word VB formedVBN+?JJ+ǿi+1 word expressedNNSy&1?NNy&1i+1 word stocksRBCl?JJRT㥛 NNP)\(VBD$CVBPB`"?INCl @VBZZd;O?DT;OnNNSB`"?VBHzGٿUHS㥛VBGp= ף?NNOnPDTVBN~jtJJ(\@i-1 tag+i word NN shellNN1Zd?JJ1Zdi-1 tag+i word VBN suchPDT(\@JJ(\i-1 tag+i word IN judicialJJMb?NNMbi-1 word telerateNNPSw/NNPw/@i-1 word upstreamNNh|?5@JJh|?5i-1 tag+i word NNS saggedVBDV-?VBNV- i word debtsNNS'1Z@JJGzNNw/i-1 tag+i word IN acceptVBv@RPI +RBEؿVBDq= ףp i word joltsNNSx&1?NNx&1i-2 word krisherNNStVNNtV?i+2 word farmerNNbX9IN rؿRB/$?i word interfereVBGz@NNV-RB +JJٿVBNCli word inaccurateJJʡE @NN5^I VBd;OVBP333333i+1 suffix .o.NNM?RBM¿ i-2 word skisRBRv?RBT㥛 JJR+ǿi word coveragesNNSCl?VBZCli-1 tag+i word VBN stampNN+?JJ+i-1 tag+i word NNP vs.IN @VBZ#~jĿNNP(\NN7A`?FW9vVBDtVRBMi-1 tag+i word NN warsVBZZd;OݿNNSʡE@NN;OnVBDQ i+2 word cut NNPS?5^I ¿JJʡEVBD㥛 ?PDT$C?JJRʡE?RBʡENNS r?VBGʡE@NNsh|?VBNMb?VBP~jt?VBZ7A`ڿNNP + i suffix nts JJJ +FWClRB{GzIN+VBZGzT!@NNP rhNNS'1:2@VBS㥛 NNPSx&!@NNMbXy'VBD/$VBNvVBP +i-1 tag+i word NNP odysseyNNS㥛?NNPS㥛 i-1 tag+i word TO superconductorVBffffffNNffffff?i word physicalVBKJJK7?NNPh|?5i+2 word discussVBZ/$?NNSK7AVBx&1RBGz?VBDVBNMb?VBP?JJMb i-1 word tadIN+FW)\(?RBQ?NNsh|?JJ~jti-1 tag+i word , disruptedVBNX9v?VBDX9vi word favoriteJJK7A`@NNVBD/$VB+i-2 word jaguarNNWDTx&1NNPGzVBPQVBNd;ONNSK7A`?VB7A`?JJ ףp= VBD|?5^ڿIN/$?VBZuVDTx&1?VBGl?JJR+?RBl?RBR+ۿi-2 word dictatorialVBZ+VBD+?i-1 tag+i word VB cheeringVBGp= ף?NNp= ףпi-2 word erectJJ rh?CD rhݿ i suffix nedRBxNNS%CCD(\ؿIN ףp= RPMVBZKJJףp= @NN^I +,VBDK73@NNPlqVBX9vVBG!rhVBNo!4@VBPS㥛 i-1 tag+i word JJ investingVBGS?JJSi-1 tag+i word VBD nettingJJA`"ӿVBGA`"? i word castVBN/$@VBPv/JJClVBZ}?5^INNPq= ףpNNZd;OVBD@i-1 tag+i word IN disarrayNNSd;ONNzG?JJ^I +i-2 word painfulNNNNP? i-1 word shutCD'1Z?INʡERPm@RBZd;NN'1Zi-1 tag+i word NN firmedVBN rhVBD rh?i+1 word proponentJJMbX?NNPMbXi-1 word contendsINCl?DT rؿWDT/$EXX9v?RBX9vi-1 tag+i word DT undertakingVBG9vNN9v? i word stealNNq= ףpVBq= ףp?i+1 word accordingVBDV-VBNJ +?JJ i suffix dom NNK7@VBDʡEFWrh|VBNZd;OJJZd;O߿NNP333333?NNPSClRBv@NNSK7AVBPMbXVBZ1Zdi+1 word tapesJJ?NNPi-1 tag+i word TO residentialJJx&1?VBx&1i-1 tag+i word , resignedVBN= ףp=VBD= ףp=?i-2 word moviestarVBZ$CNNS$C?i-2 word relaxJJ"~j?VB?VBPпRBNN~jtÿ i+1 word dr.VBZrh|VBPx&1VBDX9v? i word hogVBP?5^I NN?5^I ?i word overdraftNNMbX9?JJMbX9i-2 word cleaningVBNX9v?JJX9vi-1 tag+i word JJ computerizedJJFx?NNFxi-1 suffix lowVBS㥛JJQVBN-IN㥛 NNPSGz @CC/$RPM?NN|?5^?JJR-RBGz?VBGJ +NNPy&1VBDy&1?VBP?5^I DT+@NNS)\(?i-1 tag+i word NNP displayingVBG7A`?VBD7A`i+2 word despite NNPSd;O?NNsh|?տJJ^I +INtV?NNSK7NNPnRP#~j@RBv?DTtV޿i-1 word charactersVBPnVBGn?i-1 tag+i word IN laughterNNZd;?JJR/$JJq= ףpi word assistingVBG5^I ?NN5^I  i+1 word snapNNSp= ףJJV-NNPS +?i-1 word studentVBZS?VBGh|?5?NNh|?5NNSSi-1 tag+i word , carlosJJ-ۿNNP-?i+1 word georgeJJ/$VBZZd;ONNP1Zd?NN(\@VBD ףp= POSZd;O@VBP1Zd i word tdkNNDlNNPDl?i word distributorsNNPS`"?NNP`"i-1 tag+i word NN malignantJJx&1?NNx&1ܿi-2 word intentJJClNNPbX9?VBGPn?i+1 suffix dorRBRHzGJJ^I +?JJRHzG?NNX9vϿNNPX9v޿i-1 word censusCC333333ۿVBZ333333?i-1 tag+i word VBN staysNNSHzG?NNHzGi-1 tag+i word NNP plainsNNPSX9v?NNPX9vi+1 word bloatedVBQ?RBQi-1 tag+i word `` readyVBNzGJJzG?i-1 tag+i word NN bearNNS$CNNQ?JJh|?5i+2 word middleVBʡEVBPʡE?i+2 word behaviorVBPx&1?NNjtJJ'1Zi-1 tag+i word VBZ appearedVBN"~jVBD"~j?i-2 word arguesRB|?5^@IN|?5^i-1 tag+i word , teamsNNSoʡ?JJoʡi-1 tag+i word RB deserveVBP?5^I ?VBN?5^I i-1 tag+i word JJ oklahomaNNPjt?NNjti-2 word opiumNNPNNPSS㥛?NNS+i word finalizedVBNףp= ?JJףp= i tag+i-2 tag JJ ``''ffffff?VBP}?5^I?NNNbX9?PDT)\(?IN= ףp=?NNPSX9v?UH;OnڿVBG rhտVBZ㥛 @VBDS㥛?POSA`"?FWuVտVBN1ZdۿDT)\(NNSmVBL7A`CDMҿJJRCl?PRP$+TOK7?RB~jtNNP-JJJ +ٿi+2 word messaVB rh?VBP|?5^ѿVBZQi+1 word footstepsNN/$NNS㥛 JJףp= ?i-1 tag+i word JJ classNNPSjtNNjt?i-1 tag+i word NNP hospitalNNL7A`?NNPL7A`ؿi-1 tag+i word RB declinedVBNQ?JJQi-1 tag+i word JJ sellingVBG1ZdNNMbX9@JJ&1i-1 tag+i word NN connectedVBD?5^I ҿVBN?5^I ?i-1 tag+i word IN defensiveJJoʡ?NNoʡſ i word pushesVBZ= ףp=?VBD= ףp= i word mtmNNPn?RP/$NNGzi-1 tag+i word JJS adultsNNSHzG?NNHzGi-1 tag+i word -START- alongINK7@PDTnRBClNNPh|?5i-1 tag+i word NN integrityNN?JJi+1 word deadlineVBGZd;O?JJ`"NNq= ףp i+1 word sold NNPSZd;VBGZd;NN(\?FW-VBZ/$RBQ@CDnVBPClJJK7NNSrh|@NNP/$տi-1 suffix gisVBZ%CNN%C?i-1 tag+i word IN sectionNN ףp= NNP ףp= ?i-2 word furtherPRP$333333?VBGffffff?PRP333333NNffffffi-2 word promisesVBMbPDTMb?NNS?JJSi-1 tag+i word IN cluesNNSv?JJvi-1 tag+i word IN providingNN+VBG+?i word acquiredPDTK7VBNx&1@CDjtJJtV NNPClNNI +VBDFx @i-2 word landmarkFWbX9?NNB`"ٿINp= ף i word rickeyJJ"~jCDoʡNNP/$?i+2 word talksJJX9v @NN^I +VBNlNNSClVBGq= ףpi-1 tag+i word JJ affairsNNPSS㥛?NNPS㥛i-2 word wavedVBG/$NNSDl?NN?JJx޿VBZDli-2 word proneNNOn?JJGzοVBZd;Oi-1 word blipsRPnRBn?i-1 tag+i word VBD risingVBG~jt?JJ~jti-1 tag+i word PRP$ peopleNNPSK7A`?NNPK7A`i-1 tag+i word VB inventivenessNNS~jtNNX9v?RBFxi-1 tag+i word DT unchangingVBGS㥛JJS㥛?i word gyrationsNNSx&1?NNx&1i-2 word decisionsRBRQVBGSJJRQ?NNS?i+1 word relatedNNP +?VB!rh?NNv/VBP!rhRBL7A`?INJ +NNSZd;?i-1 tag+i word IN shellNNh|?5?JJh|?5i-1 tag+i word DT tenderJJRlNNl?i word recognizingVBGzG?NNzGi-1 word magazineINjt?NNSK7A?NN r?VBD(\CCK7AVBN(\?WDTjt޿RB ri+2 word campeauVBDoʡVBNoʡ?JJ`"IN rVBG"~jRBx&1@NN"~j?i+1 word armoredJJ+?VBD+i-1 word hypoglycemiaVBPNbX9?NN?5^I ¿JJx&1i-1 word headsVBPV-?NNV-JJJ +ٿNNPJ +?i-2 word jonesNNPv/?NNPS$C?NNSVBDv?VBNK7A`ݿRB9vVBZx&1i word motivatedVBN|?5^JJQ?VBD;Oni-1 tag+i word `` alphabetJJ;OnFWMڿNNn?i-2 word namedNNK7ٿJJrh|VB?VBGMbX?i-1 word happensJJffffff?RBffffffi-1 tag+i word DT directorialNNlJJl?i-1 word literallyVB ףp= VBP ףp= ?NNPn?JJPn i suffix TPANNP"~?CD"~i-1 tag+i word DT bronfmansNNPS!rhNNSV-NNPL7A`?i-1 tag+i word `` ghostbustersNNSx&NNPx&?i+2 word clearedNNSSJJw/?NNy&1|VBNjt?i-1 tag+i word RB intervenedVB+VBN+?i-1 tag+i word , discoveredVBNK?VBDKi-1 word comfortablyVBQ?INQi+1 word weisfieldVBClNNCl?i-1 suffix iasVBP-?NNMbFW= ףp=?i-1 tag+i word NNS displayVBP1Zd?VBD~jtؿVB"~ i+1 word adm.VBNB`"ѿJJnNNPQ?i-1 tag+i word JJ disobedienceVBP1ZdNN1Zd?i+2 word surprisedVBN)\(?JJ)\( i+1 suffix .PRP$B`"VBDzGWP~jtÿNNK7 @JJRʡEֿDTtV?NNSl?VBtV޿EXK7A` NNPSQ@UH&1@WDT9vFWn?LSX9v@PRPuV?CCClRBSS㥛?RBRX9v?CD/$VBGVBNQ?RPX9vRBCl?PDTGzNNPL7A`?VBP!rhJJS㥛INbX9JJSCl?VBZZd;POSX9v?i-1 tag+i word VBD hadVBD/$PRPy&1VBNMbX?i-2 word existJJT㥛 NNST㥛 ?i-1 tag+i word VBP hopefulVBP^I +JJ^I +?i word outsellsVBZV-?INV- i suffix rekRB +NNP +?i word suitableJJףp= ?NNףp= i-1 tag+i word , managesVBZw/@VBK7NNSQ i+2 word banNNZd;O?VBD?5^I VBN?5^I ?VBPy&1?JJZd;OVBy&1i+1 word easternVBD333333?VBN&1JJ(\@VBZ7A`?NNS7A`NNPV-VBG-?NNK7Ai tag+i-2 tag JJR VBDJJ rh?IN"~?NNSQӿNNPSQ?VBG+NNh|?5?VBNʡE?i-1 word rightsVBG9vNNS @VBDQVBNB`" @VBPA`"?JJJ +NNP+i tag+i-2 tag NNS JJS RPHzG?RB|?5^?INx&1VBGv?VBV-JJ/$NN/$ƿVBPzGʿVBZA`"?i-1 tag+i word JJ inaccurateJJPn?NNPni+1 word aroundVBDv/JJRS㥛ĿPRPGz?RBV-JJMbPRP$GzVBGX9v@VBZX9v?DT{Gz NNSClVBNHzG?NN~jt?VBPS㥛@NNP9vVBˡE@i word occurredVBN ףp= JJffffffVBDp= ף@i tag+i-2 tag NNP VBG NNMb?VBD~jtRBRX9vVBN~jtVBP;OnWDTEVBZ +ֿVB(\?NNPSMbX9?RBX9v?JJ+?NNSS?NNPMb i word around RBbX9 @NNET!VBDGz VBN$CVBP(\INZd%@NNPMbVBʡE JJ!rhmDT^I +߿NNSnRPDl)@i-1 tag+i word TO mergeVBQ?NNQi+1 word commercialNNPq= ףpNNPSq= ףp?RBsh|?NN-JJSClJJjt?VBZV-?!i-1 tag+i word -START- individualJJJ +?NNPJ +i+1 word enteredJJףp= ۿNNףp= ?i-2 word bingeJJV-?NNV-ҿi+1 word straighterVBP^I +@JJlNNw/i-1 tag+i word VBD fiscalJJS㥛?NNS㥛i word verdictsVBZB`"ٿNNSB`"?i+1 word alphonsusNN-NNP-? i word thankRB㥛 JJ#~jܿNNPvVB ףp= @i word account VBPˡE@NNSMNNPtVVB?NNX9v@RBRI +ƿVBNZd;JJ-INSVBZClRBi+1 word investigationJJMbпNNPMb?i word because NNbX9$VBPK7VBZKNNSGzJJClINMbX+@DTQVB|?5^ RBQ@VBD+JJR-i-1 tag+i word VBG producedVBNX9v?VBDX9vi-1 tag+i word CC fujiNNPCl?CDCli-1 tag+i word NN sailedVBNVBD?i+1 word thinkerNN(\ݿJJ(\?i-1 tag+i word `` thankJJ#~jܿNNPvVB ףp= @RB㥛 i word recordingsVBZX9v׿NNSX9v?i-1 tag+i word NNP jrNNPOn?NNPSOnӿi word affluentJJQ @NNQ i-1 tag+i word NNP startingVBG|?5^?NN|?5^i word deadlinesVBZ~jtVBˡENNSbX9?i-1 tag+i word VBD worthNNPS rhVBNʡENNuVIN?5^I JJV- @ i-2 word humRB^I +?IN^I +i-1 tag+i word JJ purchasingVBGA`"NNA`"?i-1 tag+i word VBG structuredVBN!rh?JJ!rhi-1 tag+i word DT massiveJJ+?NN+߿i-1 tag+i word DT treesNNSS?NNSտi-1 tag+i word IN picturesNNS+?JJ+i-1 word proceedRB?INi-1 tag+i word NN moodNNzG?JJzGi+2 word writtenNNPSDl?NNSDlJJQ?NNQi-1 word treesVBK7VBPZd;?NNh|?5i-2 word indiaVBRQVBNuVNNRQ?JJuV?i-1 tag+i word NN gimmickVBZ;OnҿNN;On? i+2 word laneNNSV-JJV-?i-1 tag+i word DT sortNNSV-NNV-?JJCli word cutoutsNNSQ?NNQi-2 word lettersVBh|?5NNSh|?5?i-1 tag+i word IN taiwanNNPSK7ANNPK7A?i-1 tag+i word -START- nrmNNS9vNNP9v?i+2 word criminalNNjt޿VBD ףp= VBP ףp= ?JJx&INV-VBGx&?NNSjt?RPV-?i-1 tag+i word CD defenseNNOnNNPOn?i-1 tag+i word JJ wheellikeJJ/$?NN/$i+1 word lexingtonJJrh|NNPrh|?i-1 tag+i word -START- ronaldNNPy&1?JJy&1i-1 tag+i word NN netRB~jtNNS㥛?JJS㥛i+1 word engineeredRB?5^I ?JJV-NNRQؿ i word polledVBNn@JJrh|VBD)\(i+1 word parisFW|?5^ٿIN%C?NNPQο i word eighthJJCl@NNzGCDx&1NNS/$i-1 tag+i word IN pagurianJJ}?5^INNP}?5^I?i word providingVBGK7?NN+JJ$C i+2 word pleaRB'1ZIN'1Z? i word swayVBrh|?NNrh| i word teamsVBMbNN~jtVBDClJJoʡVBZ?5^I NNSI +@i+2 word modeledNNSClNNCl?i-1 tag+i word , sectionVBZףp= NNPZd;?JJv/NN?VBD-i+1 word ovataNNy&1@NNPy&1i-2 word weakenVBNCl?JJCl i suffix SayJJnNNPQ?NNSnʿi-1 tag+i word IN tragedyNNSv/NNv/?i-1 tag+i word -START- fortyJJSCDS?i-1 tag+i word NN expressedJJy&1VBDGzVBNV-?i+1 word aetnaVBN rhݿVBD rh?i-1 tag+i word JJ albaniansNNPS ףp= ߿NNS ףp= ? i word pugetNN"~jNNP"~j?i word constitutionNNMbXNNPMbX?i-1 tag+i word DT classicJJ~jt?NN~jt i word tiJJˡENNPˡE?i-1 word suisseJJx&1@RB +޿NNPy&1 i word paleVBPuV?NNuVi-2 word diplomaticINHzG?WDTHzGi-2 word lawyersNNGzVBD+?VBNw/ԿVBPOnӿRBQ?INV-?VB(\RPV-i+1 word sometimesNNP(\NNS333333?VBG9vJJ333333NNZd;?i+2 word placementVBNDlJJDl?i-1 tag+i word DT unfoldingJJ+VBG+?i+1 word haberleJJM?NNMi+2 word celebrateVBNGzVB9v?VBP rhi-1 word cananeaVBףp= ?VBPx&NNI +i-2 word exposuresVBZd;VBP^I +?VBDX9vi tag+i-2 tag RBR RB RBX9v@NN1ZdVBNS㥛JJRQVBKVBGʡEVBP\(\?JJ+?IN333333VBZZd;? i suffix eotNNPSX9vNNPX9v?i-1 tag+i word PRP laterVBZ/$RBRK7A`RB/$@i+1 word encoreJJK7A`?NNK7A`i-1 tag+i word JJ aggravateVBPtV?VBtVi-1 tag+i word JJ postwarJJMb?NNMbi-2 word toursVBffffffJJx&?NNCli+2 word abusesVBNM?JJM i word hawaiiNNS rh?NNPA`"NNPSؿi-1 tag+i word DT gunnyNN{Gz?JJ{Gzi+1 word scrutinyNNV-?JJIN1Zdi-1 tag+i word CD o'clockJJA`"ۿVBD(\RBd;O@NNvi+2 word chromosomesNNSK7?NNK7 i+1 word lagRBףp= ?NN%CNNP%C?VBPףp= i+2 word kpmgVBGnNNn?i-1 word coollyVB(\VBP(\?i word doldrumsNNZd;O?JJbX9NNSX9v?i-1 word sophisticatedNNx&1?RBClNNP!rhԿJJ?NNS㥛 i-1 tag+i word IN multifamilyNNSX9vJJMbX@RBq= ףpi-2 word vehicleVBN@JJ#~jVBD&1FWx&i-1 tag+i word JJ aounNNPSzGҿNNPzG?i-2 word frequentlyJJZd;NNDl?VBGDlVBNZd;?i word derivesVBZMb?NNSMb i word navyNNClJJMbX9NNPQ @i+1 suffix liaJJMbNNPMb?i-1 word cropsJJV-?NNSV-i-1 tag+i word DT compositionalJJ+?NN+i-1 word nothing VBZ+?RBw/?NNV-׿VBDʡE?VBNʡEVBPS㥛POSJJS㥛?NNS"~i tag+i-2 tag WDT JJRVBD/$?NNP/$i-1 tag+i word VBZ switchVB/$?NN/$i+2 word whicheverRPMb?RBMbi-1 tag+i word PRP canMDS?VBPSi word indexesVBZʡENNS + @NNHzGi-1 tag+i word IN nearbyJJ{Gz@NNp= ףRBK7ѿi+2 word independentRB}?5^I?NNtVJJ~jthINHzG?NNSS㥛?NNPˡEi word convertVB?NN`"VBDQ޿VBPV-?JJMbXVBZV-i-1 tag+i word NNS turnedVBN9vVBD9v?i-1 tag+i word NN unfoldsVBZE?NNS1ZdӿJJ+i word gollustNN'1ZNNP'1Z?i-2 word inaccurateJJQ?VBDQi word paragonJJQNNPQ?i-1 tag+i word DT halfPDT(\JJV-@NN r DTMb?i-1 tag+i word NNP heardNN(\JJ~jtVBD rh?i-1 tag+i word JJ eraNN?FWi+2 word proportionRBQ?NNQi-1 tag+i word WDT supportsVBZv?VBDv$i-1 tag+i word -START- traditionallyRBMbX?NNPMbXٿ i+2 word tripVBDCl?VBNCli+2 word infidelityVBZd;O?VBPZd;O i+1 word ruleVBGlJJ^I +?NNK7A`?VBDMbi-2 word earningNNSV-?NNV- i-2 word nev.VBZ(\?NNS(\i-1 tag+i word JJ disciplineVBKNNK?i-1 tag+i word DT nrcNNP\(\?NNPS\(\Ͽi-1 tag+i word POS toastedVBDFx@VBNw/JJ!rhԿi-1 tag+i word PRP$ fellowJJ7A`?NN7A` i word askaNNPS'1ZܿNNP'1Z? i suffix zziNNP-?NN-ӿi-1 tag+i word JJ partNN rNNP r?i-1 tag+i word JJ clueNNMbX?JJMbXi-1 tag+i word DT replacementNNMb?JJL7A`NNSZd; i-1 word rentVBZsh|?տNNSsh|?? i word youthJJjtNNSV-NNCl?i-2 word pipesVBG#~jNN#~j?i+1 suffix cofNNP5^I ?VB5^I i word burblesVBZffffff?MDffffffi+2 word needingNNbX9?NNPbX9i word schemesNNSNbX9?NNNbX9пi+1 word informedRBd;OINd;O?i+2 word formationVBZd;OJJZd;O?i-1 tag+i word NNP cocoaVBZbX9NNbX9?i word institutNNPm?NNmi-1 word thanksgivingNNPSS㥛NNPS㥛?i+2 word suspensionRBR~jt?JJR~jti-2 word brooksVBZ'1Z?DTmNNS{GzNNPmRBm?NNRQVBPbX9?JJˡE?i-1 tag+i word VBD uncoveredVBN?JJi+2 word practiceVBGK7NNd;O@VBD~jt?VBNrh|VBPS㥛ؿJJjtNNS"~jVBV-?i-1 tag+i word NNS accountsVBDV-VBZ333333ÿNNS|?5^?i word shortsightedVBNT㥛 JJT㥛 @i+2 word merrillRPq= ףpJJ#~j@NNlҿVBNnVB"~ڿi+2 word heroesNNPST㥛 NNPT㥛 ? i word luxuryNNx&1@NNS~jtJJQRBRQ i suffix rioNN7A`P@JJSSJJ^I +VBZlNNSzGNNPI +ֿVBG rhRBK׿i-1 tag+i word : containerboardNNS^I +NN^I +?i-1 tag+i word PRP$ socialistJJV-?NNV-i-1 tag+i word JJ significanceNNS)\(NN)\(?i-1 tag+i word `` responsibleJJ~jt?NNP~jti-1 tag+i word CC southeastJJI +?NNPI +i-2 word wildlifeRBCl?NNCli word squintedVBD7A`?VBN7A`i-1 tag+i word NNP hopkinsVBZq= ףpտNNPq= ףp?i word dealersNNPSZd;@NNSK7?NNPףp= i+1 word corp. DTtVNNSzGVBClPOSQJJ;OnVBZ/$?NNPGz@NNPSFx@NNx FWMbX9i-1 word bensonhurstNN;On?FW;Onҿi-1 tag+i word WDT 'sNNPPRP`"POSMbX?VBZ;On?i-1 tag+i word IN regularVBNX9vJJX9v? i word millNNP~jtVB1ZdNNV-@JJZd;O߿ i-1 word pinsVBD(\VBN(\?i-1 tag+i word DT brusselsNNPS~jtNNP~jt?i-1 tag+i word CC volkswagenNN?5^I @JJKNNP;Oni-1 tag+i word TO protectingVBʡEVBGʡE? i word assessVBI +?RBI + i word egosNNSʡE@NNʡE!i-1 tag+i word -START- executivesNNSNbX9@NNPd;OVBZDli-1 tag+i word JJ sharksNNSK7?NNK7i+1 word syndicatedPDT/$JJ/$? i word lameJJV-?NNV-i-1 tag+i word NNP vegansNNPS~jt?NNP~jti-1 word renaissanceVBZ$C?NNS$Ci-1 tag+i word DT accusationsNNPSK7ٿNNSK7?i word demonicJJA`"@NNA`"i+2 word parts VBPq= ףpVBʡE?RP +RBQ?NN㥛 ?JJSJ +?RBSJ +VBNd;O?NNPˡE?VBDx&?JJVBG~jt?i-1 tag+i word RB magicNNX9vJJX9v?i-1 tag+i word PRP$ agendaNNSsh|?NNsh|??i-1 word applicationsVBGy&1VBNQJJy&1@VBDQ? i word wonderVBPm@RBrh|WPA`"VB&1@JJK7NNEVBD)\(JJRx&i-1 word maximizingNNSOn?NNOni-1 word backbenchNNGzNNPGz? i word markedRBffffffVBNPn?JJn?VBDHzGѿi-1 tag+i word NN expiresVBZK?NNSKi+2 word preciselyJJ(\?VBDKVBB`"?i-1 tag+i word NNS inningsNNS\(\NN\(\?i-1 tag+i word IN easternJJrh|NNRQNNPm@i+2 word intimacyNNSˡENNˡE?i-1 word wondersWDTl?WPli+1 suffix kgbNNPjt?VBN/$JJjtVBD/$?i tag+i-2 tag NNP PRPNNPZd;VBNMb?PRPGz?i-1 tag+i word PRP applaudsVBDQVBZQ?i-1 tag+i word NN pulpNNQ˿NNPQ? i word talentNN|?5^?JJ|?5^i-1 tag+i word POS fellowNN&1@JJ&1i-2 word travelJJʡE?NNP$CNNPSMb?NNnVBN+?VBP ףp= ׿i word albertaNNPSB`"NNPB`"?i-1 word knightNNx&1VBDNbX9ȿVBP/$RBGzVBZuV?NNPx&1? i suffix 5.4JJQۿCDQ?i-1 tag+i word NN mountingVBGX9v?JJX9vϿi-1 tag+i word , fenugreekNNp= ף?JJp= ףпi-1 suffix isaNNPSʡEݿNNPʡE? i word coollyRBZd;O?NNZd;Oi-1 word weeksINx&1VBZ?NNSRQRBR= ףp=?WDTtVֿRB r?i tag+i-2 tag POS CDNN#~jRB/$JJR+JJ+?i-1 tag+i word POS loadNNSFxNNFx?i-1 tag+i word RBR potentJJ7A`?NN7A`i-2 word preferenceVBG}?5^I?NN}?5^IԿi-2 word robertsRB|?5^?JJ|?5^i-1 tag+i word VBD hardRB9v?VBNV-JJˡE?i-1 tag+i word POS favoriteJJoʡ?NNoʡi+1 word easedNNPsh|??VBD"~NN"~?RBsh|?i-1 tag+i word RB destabilizingVBGDlJJDl?i+2 word believeNNS^I +?NNP^I +VB㥛 VBGbX9?NNbX9VBP㥛 ?i-1 tag+i word JJ agriculturalNNSףp= JJףp= ?i-2 word attendedJJK7A`?NNK7A`i word literaryJJv/NNPv/?i-1 word several RBRffffffVBNx&1JJv?NNPˡE?VB&1ҿNNPS-VBGOn?NNK7JJRffffff?CDGz@NNSK? i word brandsNNS'1Z@NNPV-VBZ= ףp=NNPSm@i-1 tag+i word NNP wonVBPjtVBN"~jNNK7AVBD#~j@i-1 tag+i word VBD flatJJE?VBNV-NNy&1i-1 word crudesVBP%CRB%C?i word unsolicitedCC^I +VBN}?5^IJJGz @i-1 tag+i word VBD combinedVBNjt JJjt @i-2 word mayanUHʡEۿJJ;On@NNPV-i-1 tag+i word JJ underwriterNN?JJKRBS㥛ܿi-1 tag+i word `` handlesVBD`"VBZ`"?i-2 word domesticVBZ`"NNS`"?NNPjt?NNPS/$ƿNNL7A`VBDOn?VBNjtƿJJA`"i+2 word sometimesNNjt?NNPjti word componentsNNX9vNNP9v?NNPS9vҿNNSX9v?i-1 word dodgerNNZd;O?JJZd;Oݿi+1 word sayingVBh|?5RBQNNFx?JJFxINQ?NNSh|?5?i-1 word cilcorpNNL7A`@JJL7A`i-1 tag+i word CD operatingVBGJ +?NNJ +i+2 word kangyoWDTK7A`INK7A`?i word resoundingVBGZd;JJ;On@NN$C i-1 word ancNNʡE?POSjt?CDRBʡEVBZ-@NNS#~j?NNPOnNNPSHzGi-1 suffix ncsVBPw/ܿNNS333333NN7A`?i-1 suffix nueVBN(\RBR-?WDTQ@VBGM?NNSJJR-ƿVBOn?JJClVBPJ +RBffffff?IN ףp= NN~jtVBD(\?DTl?i+1 word notes RB!rh̿VBlVBPx&1NNNbX9?VBDMVBNFx?DToʡNNSlNNP+ÿVBGS?JJV-@i+1 word prudeJJ{GzĿVBGE?NNʡEi-1 tag+i word JJ specialtyNN;On?JJ;Oni-2 word employsJJS?NNSi word cambriaVBGSNNPS?i-1 tag+i word -START- pensionNN(\?NNP(\i-1 tag+i word WP tapeVBP?VBD!i-1 tag+i word POS confederationsNNPSMbX?NNSMbXi-1 tag+i word RB qualifyVBB`"?RBB`"i-1 tag+i word DT franchiserJJR/$NN/$?i+1 word deficitVBPQNNV-?JJv/տNNPoʡ?i-2 word comparisonNNSQJJy&1?NNP^I +?i+2 word aboveNNp= ףVBDp= ף?RBR rhJJR rh?VBNS㥛пJJS㥛?i-2 word facingJJRK7VBG= ףp=NNS?RBRK7?NN(\?i word acceleratesVBZ%C?NNS%Ci word faltersVBZS㥛@NNSx&1NNܿi-1 tag+i word RB exceedVBPV-?VBDV- i word hiringNN +?JJ%CNNPQVBG~jt? i-2 word j.WDTFxINFx? i word magicJJX9v?NNOnÿNNP\(\i-1 tag+i word VBZ packagingNNx?JJxi-1 word meantVBGNbX9?NNNbX9i-2 word alreadyUHClJJRʡE?INQ?NNPSX9v?VBGFx@RBZd;ONNSffffff?NNPm?JJ(\NNX9vVBD'1ZPDTQ?RBRʡEVBNm?VBPy&1ԿDTQi+2 word resemblanceJJ"~?NN"~i-1 tag+i word VBZ symbolNNS?JJSi-1 tag+i word NN dramasNNS rhNN rh?i-1 tag+i word PRP anymoreRB'1Z?IN'1Zi+2 word swellJJRV-?NNPV-i-1 tag+i word , advisedVBN(\ſVBD(\?i-1 tag+i word JJR learningVBG333333NNʡE@JJx&1Կi+2 word symbioticJJ"~?NN"~i-1 tag+i word CC paintedJJx&1?VBNx&1i-1 tag+i word VBG forcedVBNQ?VBDQ i suffix eysVBP/$RBClNNSn@!@NNPK7JJ&1NNsh|?i-1 tag+i word VBN owesVBZ^I +?IN^I +i-1 tag+i word NN forcesVBZ9v?NNS9vڿi word attemptNNSJ +ɿVBDl?RBK7A`NNQ@VBDK7A`տVBNZd;VBPˡE?JJ(\ i+1 word aprilNN)\(VBD ףp= VBN ףp= ?RB`"INB`"?JJ;On¿i-1 tag+i word NNP safeJJtVNNPtV?i word charitableJJףp= ?NNףp= i-1 tag+i word VBZ robustVBNJJV-?JJRPni-2 word placeNNʡE?VBD#~jVBN#~j?JJKNNSK7?NNPʡENNPSʡE@i word employedNN-NNS-VBN-? i-2 word ltvVBDtV?JJMbX9?NNP ףp= VBN/$NN?i word decorativeJJ&1?NN&1ڿi-1 suffix ope VBDX9vWDT{GzIN^I +@NNPK7JJ~jtNN^I +׿VBPK7?RBzG?VBZn?DTjtNNS i+2 word prodRBM?JJMҿ i suffix VELNNq= ףp?NNPq= ףpi+1 suffix p53JJZd;VBGS?VBNx&?NNSVBD/$޿i+1 word sprayNNJ +?JJJ +i-1 tag+i word IN disloyalJJZd;?NNʡENNP(\i-1 tag+i word IN appealNN\(\?JJv/NNPOnVBPK7?PDTK7 i suffix UMWNN!rhNNP!rh?i-1 tag+i word CC punsVBZX9vNNSX9v?i+1 suffix aryRBHzG@NNSMb?RBS{Gz?INE?VBPQ?DTh|?5@CDxVBGJJS㥛?JJS{GzVBZ= ףp=NNP"~?NNPS)\( RBRx&1VBN rhPOSZd;OWDTy&1?JJRy&1VBS㥛NN;OnVBD"~j?i-1 tag+i word VB alongRP5^I @RB/$?JJINʡEi+1 suffix iteVBGw/JJ'1ZWDTvVBw/IN|?5^@NNSGzNNPSK7A?POS/$RBZd;VBZQ?DT\(\ϿNNPoʡ@PRP$+?NNlRBRx&1?VBPZd;OVBNDl? i word dec. $S㥛NNI +VBDx&VBPffffffNNPNbX9@VBL7A`@NNPSx&RB'1ZVBZ;OnJJCli-1 tag+i word IN casinosNNDlNNSDl?i+2 word arriveJJoʡNNS/$NNZd;O?i word defendantNN;On@JJQNNPrh|i-1 tag+i word DT associateNN|?5^JJ|?5^?i-2 word laughterNNSS?NNSi-1 suffix sr.VBD-VB)\(VBP"~j?i-1 tag+i word NNS droppedVBPMVBDM?i-2 word cancelNNS^I +NN^I +?i+1 suffix uelJJ|?5^NNSy&1|NNPRQVBMbVBGoʡ?NNHzG?VBPMb?i-1 word newsprintVB1ZdNN/$?JJZd;O߿i-1 tag+i word DT sexesNNS"~j?NN"~jԿi-1 tag+i word VBP helpVBNK7NNK7?i-1 word verdictVBZGz?NNSGzi+1 word successesNNx@JJxi-1 tag+i word IN comparativelyNNSHzGRBHzG?i+1 word blacksJJ9v?INDl?DTDlVB&1?NNPS9vVBGv?NN9vi+1 suffix in'VBZʡE?POSʡE޿i+1 word editorsNN`"@JJ/$NNP333333i-1 tag+i word NNS attemptRBx&1пVB rh@VBP~jtxNNMbXi tag+i-2 tag DT JJNNnҿVBNMbXJJ(\?VBZ;OnNNS/$ֿNNP;On?VBGMbp i word toiletNNK7A`?JJK7A`i+1 word tendsNNL7A`?NNPL7A`i-1 word obviousNNSSNNS?i-1 word bakedNNSPn?NNPni-1 tag+i word `` promoterNNˡE?JJV-JJR?5^I i-1 tag+i word DT wallNNSK7NN}?5^I?JJGz޿i-1 tag+i word VBZ bidVBN +ֿNN +?i-1 tag+i word VB belfastJJGzNNENNP~jt?i-2 word hordeNNS{Gz?NN{Gzi+1 word competitorsJJRv?CD/$?RBMNNPx&1?VBrh|JJK7A?NNMbX9i-1 tag+i word NN committedVBNGz?VBDGz߿i-1 tag+i word NNP hasVBZRQ?NNPRQi-1 tag+i word CC retailingVBG-NN-?i-1 tag+i word IN handlingVBGv/?JJv/i-1 suffix morWDTnVBNuVINn?VBDuV?i+1 word frankNNS~jt?NNP~jtNNS?VBD#~j?VBN"~jVBPSJJQi-1 tag+i word -START- greatVB rJJv/?NNw/NNPʡE?i+1 word immuneVBN!rh?JJ㥛 VBDtV޿i+1 word goodsJJSʡE?VBNV-?JJ{Gz?NNP +VBG"~ڿNNZd;Oi-1 word promisesVBD{GzDTffffff?INffffffVBN{Gz? i-1 word bredNNPuV?RPuVi-1 tag+i word NN accountingNNPSʡEVBGQNNQ?NNPʡE?i+1 word provedNNʡE?INZd;VBʡEDTZd;?i-1 tag+i word , warmJJQ?NNQi-2 word availableNNsh|?FWZd;OJJ ףp= ߿NNSʡE?NNPZd;O?VB rhi-1 tag+i word NN nationwideJJCl?NNQRB}?5^I i suffix QVCNNPA`"?NNSA`"NNA`"i-1 tag+i word -START- bosticJJ/$NNP/$? i suffix lmsNNSMbX@NNjtRB5^I VBN'1ZJJrh| i word lightsNNS?RBi-1 tag+i word IN sulfurNNSvNNv? i word fingerNNw/@JJ5^I JJR rh i+2 word partJJSB`"?CD-VBGw/?NNSv@RPA`"?VBDMbRBrh|VBNZd;@INA`"NNPZd;JJ'1ZNN-?RBSV-?VBPw/?VBZ`" i-1 word fhaVBZ333333VBD333333?i+2 word orangeVBGQ?JJQֿi+2 word comingRBSI +VBNB`"JJSI +?POS)\(VBP|?5^?RBV-INX9v?NNSK7?NNP\(\NNPSNbX9?JJjt?NNzG'')\(?VB|?5^RPX9vֿi+1 word conferencesJJ+?NNP+ i+2 word ufoJJ|?5^ѿNNlVBNCl?i+2 word broadwayVBNS?VBDSi+2 word applyRBRZd;O?VBPmJJ㥛 NNSPn?NNPPnMDn?VBQRB㥛 ?i-1 tag+i word IN unchallengedVBNMbJJMb?i-2 word installedRB|?5^?JJRT㥛 NNT㥛 ?IN|?5^i-1 tag+i word JJ koreanJJX9v@NNPX9vi-2 word agreedVB!rh?NN rh?VBDCl@VBNSJJx&1NNP|?5^i+1 word pertinentRBRHzG?JJRHzGi-1 tag+i word CD netNN(\?JJ(\ڿi-1 tag+i word IN returnVBPʡEJJsh|?NNS|?5^VBʡE?NNʡE@VBN9vi-1 tag+i word VBP backedJJ/$VBN/$?i word virginsNNS+?NN+ i word drivenRB/$NN\(\JJ|?5^ҿVBNoʡ @i-1 tag+i word -START- wrongJJ1Zd?NNffffffRB~jtӿIN-i-1 tag+i word JJ galvanizedVBN+JJ+?i word athletesNNPSʡENNSZd;O?VBZ'1Zi-1 tag+i word VBG highRBlڿVBGuVͿJJ#~j?i+1 word surgeVBGףp= NNl?JJQ뱿i-1 tag+i word PRP distastefulVBZ/$JJ/$?i+1 word seventhRBxINx?i word vietnamNN1ZdNNP1Zd? i word valuesNNOnVBDzGPDTd;OJJGzVBZn@NNS rh@FW~jtxi-1 word senateVBZClNNSx&1пNNPRQ@NNPSHzGNN"~j?WDTA`"?JJx&INA`" i word newsNNST㥛 пNNP?5^I ?NNPSx&NN"~ @CDMbؿJJI +VBZ-i-1 tag+i word TO smoothVBn?DTnڿi-1 tag+i word VBZ validVBNMJJM? i suffix reaNNPV-JJ|?5^?CDMbX9i-2 word screechingJJ?5^I ?RB?5^I i+1 word deterrentWDT(\?JJ(\i+1 suffix itsVBN^I +?RB|?5^CCQ@RBRSVB"~j?VBD|?5^@WDTzG VBZMb?RPV-?NNS7A`NNPK7A`JJ?LS%CPDTGz@IN(\?JJR~jtPRP$1ZdVBGZd; @VBPQ?DT&1NNMbP?CDGzi-1 tag+i word VBG clinicalVBNKJJK?i+1 suffix otaWDT~jtJJGz׿VBGGz?VBZ~jt?i-1 tag+i word VBN specializedJJzGҿNNPzG?i-2 word takesWDT!rhJJ7A`INjtֿDT^I +VB(\RB-@NNA`"JJRCl?i-1 tag+i word NNP aimsVBZB`"NNSB`"?i+1 word kravisVBPPnNNPPn?i+1 suffix ...NNSHzG @VBPK?NNPQVBZMbRPT㥛 ؿJJZd;O'';On?RBS㥛VBsh|??NN!rh@VBG ףp= IN ףp= ǿNNPSX9v?VBDCl?VBN~jtPOS;On i word coolVBDEVBNw/VBPRQ?JJK@NNS9vVBZd;ONN)\(i+1 suffix aceNNPx&VBP(\VBN!rhVBDMbX@FWv?RBRQRB rh?INV-CDʡEVBʡE?NNGzNNSx&1VBGCl?JJMbX@JJR;OnVBZ(\DTV-?NNPSCl?CCjti word obviouslyRBˡE?VBD)\(ܿVBPZd;Oi-1 tag+i word VBN upINZd;RPK7@RBX9v i word requestedVBNT㥛 ?JJT㥛 i-1 word newspapersVBNK7A?VBDK7Ai+1 word anytimeNNSS㥛?NNS㥛i-1 tag+i word VBN ourselvesRPzGڿPRPzG?i word beijingVBGoʡNNJ +NNPJ +@i word heavierNN= ףp=JJR5^I ?JJ/$RBR%C?i+1 suffix udyJJK7A`VBD+VBZNbX9NNSZd;O?NN+@i-1 tag+i word NNP needVBsh|??VBPV-?NN ףp= NNPK7VBDB`"i word broaderJJRv @JJNNNNSX9vi-1 tag+i word JJ looksVBZKNNSK@NNli-1 word motorVB= ףp=NNPSZd;?VBP= ףp=?VBZS㥛NNSS㥛?NNPZd; i-1 word rollINsh|?VBZ1ZdVBKRP#~j?NN5^I ?RB}?5^I@i-1 tag+i word RB refinedVBN'1Z?VBD'1Z i suffix tsuNNSNNPS?i+1 word differNNSS㥛?RBS㥛i-1 word linkingNNS)\(̿RB|?5^NNPNbX9?i-1 word collectivelyVBG= ףp=?JJ= ףp= i-2 word deepJJ rh@NNx&VBG+ i suffix oft RBQ @VBP/$JJ= ףp@NNX9vFW rhտJJR-NNSV-NNPd;O?VB333333i-1 word postingJJR!rh?RBR!rhi-2 word diseaseNNSQVBZQ?i-1 tag+i word VBZ aNNh|?5?NNPh|?5i-1 tag+i word DT spiritsNNSGz?JJGzi-2 word frontNN ףp= NNP$CJJx&@i word instantJJ$C?NN$C˿i-2 word through VBDI +CDMJJ1Zd?NNSm?VBZ1ZdNNPv/@NNPS?5^I VBGtVNNQFWClVBN9v@i-1 tag+i word JJ crossVBP5^I NNS= ףp=JJI +@NNV-VB ףp= ?i-2 word spoutNNSlҿNNnFWoʡ?i+2 word activistsNNS/$NNP/$?i+1 word spokenVBClǿVBPCl?i-1 tag+i word POS brownNNSB`"JJB`"?i+1 word criticizedRBʡE?VBN$CJJy&1i+2 word ministriesNNGzֿFW-?JJʡEi-1 tag+i word DT indianaJJZd;ONNPZd;O?i-1 tag+i word NNP sapiensVBZSNNS-JJʡE?i+1 word televisionDT?NNPmVB?NNMbPVBDT㥛 ?VBPv/տJJB`"IN i+1 word otcJJx&1?IN/$?NNPh|?5οVB(\ҿVBGh|?5?NNvWDT/$ i-2 word cuts VBDq= ףpJJR!rh?RPI +VBv@VBG ףp= NN&1RBx&1NNS333333?JJx&@RBR!rh̿VBP{Gz i-1 suffix s.NNP?NNi-1 tag+i word DT minorJJףp= ?NNףp= i-1 tag+i word CC auditionVBy&1?NNy&1i+1 word boringJJ rhVBD rh?i-2 word assumeNNNNP&1?JJR1Zdi-2 word trivialINQ?VBDQݿi-1 tag+i word VBN smokingVBG~jtпNN~jt?i-1 tag+i word DT tykeNN(\?NNS(\i-1 tag+i word NNPS shiftedVBNףp= VBDףp= ? i word landedVBNx޿VBDx?i word bargainJJ+VBuVNN^I +@i-1 tag+i word NNP consulNNP+NNp= ף?VBDFxi-1 tag+i word DT grandioseJJv/?NNv/i-1 tag+i word NN detectivesNNS(\?VBZ(\i-1 word especially VBDK7VBNMbp?NNS~jt?NN"~ڿJJh|?5?RB&1?INNbX9?VBZ㥛 VB~jtؿ i word keyedVBNZd;JJZd;?i-2 word faunaJJMbVBGMb?i-1 tag+i word FW lavaroNN&1?NNP&1i-1 suffix xedNNSV-?NNV-JJGzοCDGz?i word probingVBGS@NNSi+2 word liabilitiesVBZtV?INtVi+1 word grainNNMbX?RB(\ſJJB`"۹i-1 word ismailiNNPS-?NNP-i+1 word franchiseeVBZGzֿVBGK7?JJ-NNKPOSGz? i word expireVBMbX?VBP/$?RB1ZdNNQi-1 tag+i word IN closingVBGDl?JJ +NNX9v?i+2 word march VBjt?VBNV-?WDT rh?JJ?DT`"NNSoʡ?NN/$?VBDq= ףpJJSMbRBRnIN)\(VBZoʡNNP`"i-1 tag+i word RB entertainingVBGd;OJJd;O@i+2 word patriarchNNʡENNPʡE?i+2 word childWDTJ +INJ +?i-1 tag+i word CC sandNN"~?VBD"~i-1 tag+i word VBP heardRBjtVBN(\@JJjtIN|?5^i+2 word impetusVBN`"VBD`"?i-1 tag+i word RB boughtVBPףp= VBNvVBDQ@i-1 tag+i word NN appellateNNK7RB"~jJJ(\?i-1 tag+i word RB unforgivingVBGsh|?JJsh|?? i word actorNN/$?JJ/$i-1 tag+i word `` totalJJ`"@NNPQCCX9vi-1 word apartJJRMbRBMb?i-1 suffix mpeNNHzGFWHzG?i-1 tag+i word , advocatesVBZp= ףNNSp= ף?i+1 suffix .w.NNSNNPS?i-2 word democraciesJJ ףp= ?RB ףp= i+2 word gleanVBNS?VBDS)i-1 tag+i word -START- princeton\/newportNNPX9v?JJX9vi-1 tag+i word DT pleasantJJPn?NNPni+1 word appropriationsNNjtVBNRQJJl @RBvi-1 tag+i word DT lowNNNbX9?JJNbX9ؿ i-2 word passINMbXRPL7A`@NN/$?RB!rhNNP/$i+2 word academicPRPzG?RPzGڿi+1 word uncertainRB\(\?JJ\(\ i word severeNN"~jJJV-@RBPni-1 tag+i word RB registeredVBN%CJJl?VBDܿi-1 tag+i word CC enterVBPGz?RBuVVBMi-1 tag+i word IN nervousJJ +?NN +οi-1 tag+i word VBN crankcaseNNtV?JJtVi word fancierJJRQ?NNQ i word scoopsVBZV-?VBDV-i-1 tag+i word DT i.NNHzGNNPHzG?i+2 word maxwellRBRʡENNʡE? i word rollsVBZ +NNS +?i word superblyNNS+RB+?i word argentinianJJ!rh?NNP!rhi-1 tag+i word DT surpriseNNFx@JJR ףp= ߿JJh|?5 NNPX9v?i word marginsNNSV-?NNPV- i suffix mboVBZQNNS{GzJJ"~ @NNOn i word cradleNNX9v?JJX9vi+1 word initiativeNNPSnNNx&1?JJx&1NNPn?i-1 tag+i word VBG heatingVBGbX9NNS㥛?JJZd;i tag+i-2 tag CD TO VB&1NNRQ@RBRK7A`?INV-NNS(\ @JJR-˿JJ/$CCX9vVBN+?RBʡENNP?5^I i+1 word ledPOSEпWDTL7A`?JJ~jtINL7A`VBZE?NNSGzNNT㥛 ?i-2 word particularlyEXSRB!rhNNPQ?VBG?JJDlNNMbXٿJJRʡEۿRBRq= ףp?i-1 word profoundlyJJjt?VBDGzVBGSVBNL7A`?i-1 tag+i word NN himselfPRPT㥛 ?NNPT㥛 пi word margolisNNPSoʡNNPoʡ? i+1 word nodJJ&1?NN&1ڿ i word advertNN= ףp=?RB= ףp= i word springVBT㥛 @VBGV#NN ףp="@JJ)\(NNPjti-1 word directionIN&1?WDT&1ڿi-2 word carveRBS?INSi+2 word cappedJJZd;CDZd;?i word passageVBNbX9ؿNNNbX9?i-1 tag+i word RB suggestVBQ?VBP?JJSHzGi word constrainedNNSv/VBNv/? i suffix njiNN}?5^IJJA`"FWB`" @i-2 word communicationVBB`"?VBPB`"i-1 tag+i word -START- pendingVBGKNNPK?i tag+i-2 tag POS NNS VBvVBGZd;O?NN9v@JJR~jtx?NNP rпJJZd;ONNS?NNPSd;OοVBDZd;߿RBSzG?JJSzGVBNGz?VBPGzi-1 tag+i word '' blueJJ5^I ?NN5^I i-1 word polishedNNRQ?JJ+NNS㥛 ¿i-1 tag+i word NN bornNNHzGNNS"~ҿVBN$C?i+2 word neededJJ/$INMbX?NNSx&?VBw/?WDTMbXٿi-1 tag+i word RB monitorVB(\?VBPy&1?VBNbX9ֿJJA`"ۿVBDy&1i+2 word pressedJJRS?RBRSi-2 word describesNNL7A`?NNPL7A`i-1 tag+i word VBP stubbornVBN|?5^JJ|?5^? i+2 word nodsNNMb?JJMbi-1 tag+i word , riverVBʡEWDT#~jNN333333? i-1 word soilRBp= ףINp= ף?i-2 word rules VBDmJJSbX9?NNP +NNPSjt?JJ/$NNy&1?RBˡENNS/$VB㥛 ?RBSbX9VBPbX9 @i-1 tag+i word DT fansNNSCl?NNPCli-1 tag+i word IN communistJJjt?NNjti-2 word south NNPSZd;OͿRPZd;VBDNbX9ؿPOS333333?VBP333333VBZM?NNPV-?NN?5^I ҿVBNS?''333333RB|?5^?NNS!rh? i-2 tag WP$ VBGzJJ/$ӿNNˡE?RBClNNSy&1NNPʡE?VBDoʡ?VBN9v?VBP"~?VBZGz? i+2 word icedNNSPnNNPn? i+1 word pinsVBG(\?NN(\i-1 tag+i word -START- craNNffffff޿NNPffffff?i-1 tag+i word DT sequelNN/$?JJ/$i-2 word assuranceWDT+IN+@i-1 tag+i word JJ folksNNS{Gz?NN{Gzi-1 tag+i word NNP sixfoldVBZI +RBZd;O@NN/$ѿVBDsh|? i suffix aroNN&1?NNP&1i-1 tag+i word -START- biasNN/$NNP/$?i-1 tag+i word NNP collectedNNSʡEVBDʡE? i-1 suffix \*NNPq= ףpͿVBZq= ףp?i-1 tag+i word -START- westernNNSClJJDlNNx&1NNPHzG@i word constrainVBFx?NNFxi-1 tag+i word IN rivalVBZ$CJJRQ?NNS?i-2 word quietVBN(\¿VBD(\?i-1 tag+i word JJ confidentialNN$C˿NNP$C?i+1 word aboundNN\(\׿NNSbX9?JJSi tag+i-2 tag VBZ VB DTMJJxINtV?WDTm?EXS㥛RBCl?NNP?RBRV-?JJRV-i word predictVBZ$CVBx&VBPS@NNjtVBDB`"ѿi-1 tag+i word DT excuseJJ!rhRBy&1̿NN?5^I ?i-1 tag+i word VBG wireNNjt?JJjtֿi+2 word slightlyIN(\?DTV-NNP-ƿVBʡE?RPˡEJJw/NNL7A`RBX9v? i word nowVB= ףp=RB= ףp=? i-1 word take RBRMbVBGw/VB +RB(\JJRPn?JJ rhINL7A`NNS9v?NNPvRP~jt@NNCl@i-1 tag+i word NNP componentsNNPS9vҿNNP9v?i-1 tag+i word NN sandwichNNSQNNQ? i+2 word dalyWDT'1ZIN'1Z?i tag+i-2 tag PRP$ NNPNNSףp= ?RB-?JJSӿNNP{GzNNlڿ i suffix pinNN/$?JJ/$i word harassedJJGzVBDGz?i+2 word alcoholicVBNNN?i-1 tag+i word CC pipedVBDMbX9?VBNMbX9i-1 tag+i word JJ availNNPn?JJPni word biddingNN-@RBoʡݿJJsh|?VBGI + "i-1 tag+i word -START- independentJJGz?NNPGzi+1 word shoppingNNPS?5^I RB+NNB`"?JJjtDT+?NNPK7? i word deeper RBS㥛NNSINoʡVBN%CVBZbX9ֿNNSw/RBRuV@VBPClJJ rhJJR|?5^:@i-1 tag+i word JJS tradingVBG333333?NN333333i+1 word respectVBw/?NNSw/ԿJJ9v@RB+ۿNNP= ףp=i-1 tag+i word NNP nextIN"~VBZ~jtNNPˡE?JJ#~j?NN)\(RB'1Z?i-1 tag+i word CC employersNNPS㥛NNPSS㥛?i-1 tag+i word JJ gyrationsNNSx&1?NNx&1i+2 word hybridsVBNV-?VBDV-i word megabytesNNSGz?NNGzi-1 tag+i word CC incestVB +JJSX9v޿UH㥛 NNx&1@i-1 tag+i word TO oversightNNK7?VBNK7i+1 suffix namJJv/NNPv/?VBDjtVBNjt?i-2 word besidesNN~jt?NNP"~jNNSGzֿRPMbXVBNMbX?i-1 tag+i word NN veryNNClRBCl?i+2 word soberingNNSJ +?VBZ rVBP|?5^i-1 tag+i word RB '80sPRP|?5^CD|?5^?i word rescuedJJZd;VBDZd;?i tag+i-2 tag ) JJJJE?NNE i suffix -80NNPv/NNv/@JJ5^I CD5^I ?i+2 word retinalWDT}?5^I?IN}?5^I̿i-1 tag+i word DT developerJJRx&ٿNNx&?i-1 word participantsVB!rhVBP!rh?VBNNbX9VBDNbX9?i+1 suffix binVBNh|?5NN/$NNPsh|??i+2 word helpingRPx&1?RBS?NNS˿CD?JJPnNNPw/? i word alexNNPSNNP? i suffix HocNNPS;OnNNP;On?i word spousesNNSK7A?VBNrh|VBZ/$i+2 word sourcesDT+VBPbX9?INS㥛?i-1 tag+i word NN judgesNNPQ?VBZ(\NNPSDl?i-2 word detectedNNRQ?RBRQؿi-1 tag+i word NN grantVB-NN-?i-1 word genuineVBG|?5^JJ|?5^?NNV-?i-1 tag+i word -START- cokeNNV-?NNPV-i+2 word cronyismVBG rпNN(\?JJMb i word malesNNS!rh?VBNrh|NN|?5^i+1 word sunnyvaleNNʡEVBNoʡJJX9v@i-1 tag+i word CD kronorJJOnNNSRQ@NN rhi-1 tag+i word NN mineralNNGz?JJGzi word secondaryNNoʡNNPV-JJ\(\@ i-2 word dumpJJB`"?NNB`"VBDMb`VBPA`"VBN333333?i word despairsVBZB`"?VBP-NNV-i+1 word percentDTCDZd;O?NNP-i+1 suffix feeCC!rh?JJx&1?NNGzCDx&i-2 word distributionNN +?CCv?JJ +VBZx?NNSxֿVBvi-1 tag+i word NNS leakedVBNQ?VBDQi+2 word current RBZd;O@NNSlVBPFx@DTFxѿVBGsh|?VBZ rhNNPMVBbX9?RPDlNNx&1JJ/$INzG@ i-1 word rareNN;On@JJX9vVBNh|?5i-1 tag+i word NNP forgeNN5^I ۿNNP5^I ?i-1 word agreeingJJ+?RB+ÿi+1 word scalpsVBGʡE?NNʡEտi-1 tag+i word NN shelvesNNSA`"?VBZA`"i-1 word hittersVBNKVBDK?i+1 word wholeNNV-JJRZd;O?JJV-?RBRZd;Oi-1 word instructionsVBNʡEINʡE?i word strategiesNNS\(\?RB\(\i-2 word idealsNNS+JJHzG?NNd;Oi+2 word weyerhaeuserNNKǿNNPK? i word dieNNK7NNS"~jVB;On?VBPOn?RP9v i word vergedVBN$CVBD$C?i-1 tag+i word RB herNNX9vϿPRPX9v?i-1 tag+i word JJ winterRBR)\(NN)\(?i word overusedVBNJ +JJJ +?i-1 tag+i word -START- unitNNPʡEIN/$NNMbX?i-1 tag+i word IN gimmickryNNv?JJvi word accumulatedVBN1Zd?VBD1Zdӿi-2 word irritationRB(\JJ(\?i-1 tag+i word RB sanguineVBS㥛JJS㥛?i word atmosphereRB"~jJJClNNGz@NNS5^I i word rejoinsVBZMb?NNPMbi-2 word inappropriateJJ^I +?NNP^I +i-1 tag+i word NNP iceNNp= ף?JJ/$ѿNNPS㥛i word feelingsNNS+?VBD+i word packagesVBZ{GzNNS ףp= @VBNFWoʡi word adjoiningVBG= ףp=JJ= ףp=?i+1 word euphoriaNNPNbX9JJ/$?IN|?5^? i word bruntNNSV-JJSvNNQ?i-2 word consolationVB'1Z?NNS'1Zܿi-2 word broadwayRB`"?JJ`"i-1 tag+i word IN spanishJJv?NNPvi-1 word strawberryNNP ףp= NNPS ףp= ?i-1 word perfectNN|?5^NNP|?5^?i-1 tag+i word JJ educationalJJ?NNPi-1 tag+i word JJ enemyNNSMbXNNMbX?i-1 tag+i word VBP butterNNd;O?JJd;Oi-2 word franciscoNNS(\?VB333333ÿNN/$VBDw/FWʡEVBNS@PRP!rhRB'1Zi-1 tag+i word RB pollinateVBףp= ?VBPx&?VBD}?5^IVBZV-i-1 tag+i word MD overwhelmVBʡE?RBʡEi-1 tag+i word NNP turnVB/$?VBPV-ϿNNV-i-1 tag+i word JJ deliberativeJJ+?NN+i+1 word comprehensiveVBN7A`VBD7A`?i-1 tag+i word IN nicheDTNNʡE?JJCl i suffix yceVBNJJh|?5ֿNNPZd;O?i+1 suffix spsVB +?VBP +i-1 tag+i word NN soarVBjt@NN"~jRBZd;i-2 word launchingNNK7?JJK7i-1 tag+i word NN intensiveJJrh|?NNrh|i-2 word nashuaVBNQVBDQ?i-1 tag+i word PRP$ positioningNNQ?JJQ޿i+1 word seatsCDsh|??NN +ֿJJ(\NNPoʡ? i suffix impVBv/?NNS|?5^NNuV?JJ9vڿi-1 tag+i word NNP armyJJ-NNP-?i-1 tag+i word JJ developingNN(\JJK7A`VBG r?i-1 tag+i word JJ algerianJJ ףp= ߿NNP ףp= ?i tag+i-2 tag NN JJ'' rhVBPI +ƿWDTMb?JJSuVJJRRQ?UHPnVBDjt?JJMbVBZSӿDT}?5^I?NN#~jĿVBZd;O?EXK7A?VBN(\?POSq= ףp?RB= ףp=NNSv?IN^I +?RPw/FWQNNPw/@CCRBRGz?MDsh|?ſNNPS1ZdVBG?i-1 word metalNNPS/$VBGB`"?NNB`"JJZd;OտNNSZd;O?NNP/$?i-1 tag+i word JJ twitchVBS?NNSi tag+i-2 tag PRP$ WDTVBGx?NNxi-1 tag+i word PRP tangleMD㥛 VBP㥛 ?i-1 word butcherNNS?5^I VBZ?5^I ?i-1 tag+i word PRP surviveVBP/$?JJ/$i-1 suffix ankRBRn?IN@DTNbX9VBZy&1JJR= ףp=?RB+?UHPnRP9vVBNMb`VBP㥛 CD rNNPQWDTv/?JJʡE@NNPSzGVBGx?NNS?VBDbX9?NNS^I +?i-1 tag+i word IN turningVBGrh|?NNrh|i+2 word outbiddingVBNd;O?VBDd;Oi-1 word pittsburghVBPK7A?VBZK7Ai+1 word complaintsNNGz?JJGzi+2 word podiumVB"~jԿNN$CIN/$?i-2 word rootsJJˡE?RBh|?5NNP(\? i+2 word soapJJd;O?NNd;Oi-1 tag+i word VB carefulVBNHzGJJHzG?i-1 word revelersVBP(\@VBG(\i-1 word caughtJJv?NNffffffRBPn?i-1 tag+i word NNPS demandNNSV-NNV-?i word overbreadthNNS'1ZNN'1Z?i-2 word wealthierNNENNSE?i tag+i-2 tag , CC RBS%C?RBRsh|??UH)\(?RBGz?INQ?VBZT㥛 ؿNNS +NN㥛 VBP{GzJJRV-?i+1 word interbankVBʡENNPʡE?i+2 word investigationVBZClNNSCl?NN(\?JJ7A`NNPOn?i+1 word transfusionVBN1ZdJJ1Zd?i-1 tag+i word -START- grahamNNRQNNPRQ?i-1 word diversifiedNN'1ZVBG'1Z?i-1 tag+i word CC useVBZ`"VBV-@RP1ZdNNsh|?VBPFx?INZd;i+1 suffix gueNNKJJMbXɿINtV?NNPK7 @NNPS/$RBMb i+2 word digsJJq= ףp?NN-NNPK7Ai word workaholicNNFx?RBV-JJ"~ҿi word boostingVBGPn?JJzGNN/$i-1 tag+i word TO reportVB5^I ?NN5^I i-1 tag+i word , evaluationJJK7NNK7?i-1 tag+i word DT troddenJJK7?NNK7i+1 word protectsRBOn?INS㥛VBDOnWDTS㥛?i word impulsesVBZ7A`NNS7A`?i-1 tag+i word CC coordinateVB+?VBP+ۿi-1 word traditionallyVBNʡE?VBDʡEi word consideredVBN(\ @VBPSտJJV-NNSNNPT㥛 VBDGzi-1 tag+i word PRP ultimatelyVBP333333RB333333? i-2 word fund RBjt?JJCl?VBDHzGRBSSӿVBNX9v?VBP?VBL7A`?RPPn?NNSINx&1NNSS?i-2 word granularNNSʡENNʡE?i-1 tag+i word NNP premiumsVBZx&1NNSx&1?i-1 tag+i word VBZ halfDTMb?RBMbX9?NNZd;OPRP$\(\߿JJ`"i-1 suffix saaNNGz?JJGzi-1 tag+i word -START- howellNNOnӿNNPOn? i word sheaNNPS= ףp=NNP= ףp=?i word organizationsNNPzGNNPSzG?NNS+?JJ+i word withholdingVBG+NNʡE@JJB`"ɿFWCl߿MDmi-1 tag+i word VBZ chiefNNףp= ?JJףp= ۿ!i-1 tag+i word VBD unconsolidatedJJ!rh?VBD!rhi-2 word restrictsJJZd;?NNZd;i-1 tag+i word -START- leonardNN\(\JJ ףp= NNP333333?i-2 word camaraderieDTClNNSCl?i-2 word partiesFW|?5^VBN&1?WDTNbX9JJQ롿DTNbX9?VBGp= ף?NNuV?VBD&1i-2 word popularNNSS?NNtV?VBDd;OWDTx&JJQINx&?VBZGzi-1 tag+i word IN processingVBGMb?JJSNN^I +?i+2 word giantNNP+߿VBNʡEJJ+?VBDʡE?i word authoritiesVBZ~jtNNS&1NNPffffff?i-1 word allayJJ^I +?NNP^I +i-1 tag+i word VBZ shotVB|?5^VBD|?5^?i-1 tag+i word CC ejectedVBN rh?JJ+VBD +i-1 tag+i word , smellsVBZ(\?NNS(\i word smallerJJRV-?NNPV-i word instrumentalJJ333333?NNp= ףVBNL7A` i word scalpsNNSGz?JJR~jthNNCli word eloquentJJQ?NNQi-1 tag+i word DT provesVBZx&?JJx&i-1 suffix aanWDTK7INK7?i-2 word fragmentsVBG^I +JJ333333?NNT㥛 i+1 word reaganDTd;O?JJK7NN(\NNP +?i-1 word smotherVBPʡEPRPʡE?i+2 word cincinnatiRPV-?NNNbX9?JJNbX9RBV-i word scientistsNNP= ףp=VBZHzGNNS(\?i word constitutedVBNK7VBDK7?i-1 word shrewdNNS\(\NN\(\?i+2 word amountsPOSS?VBPS㥛?RB?VBZSNNPQVBS㥛NNL7A`?VBNCli-1 tag+i word , itelNNPV-?DTV-i word reluctantNNV-VBNRQVBPPnRBGzNNPGz߿VB ףp= JJ @i+1 word ministerNN +NNPmݿNNPS~jtӿNNS+JJw/@i-1 tag+i word -START- tryVBPjtNNNbX9VB\(\?i+1 word arbitragersNN%C?NNP%Ci-1 tag+i word IN technicallyRBjt?NNPjti+1 word supremeNNv/NNPv/?i-1 tag+i word RB issuedVBNQ?RBNbX9VBDy&1̿i+2 word lovedVBP!rhܿVBD!rh?i+1 word attackedVBʡEֿVBPʡE?i-1 tag+i word DT tiJJˡENNPˡE?i-1 tag+i word NNS failedVBNZd;VBDZd;?i-1 tag+i word IN thinkingVBG?5^I NN?5^I ?i word altogetherVBPRB{G@DTffffffֿNNPZd;NN"~JJRMbRBRQi+2 word operations VBPMbXJJ;On@VBDZd;O?POS5^I ?''5^I RBV-VBZrh|NNS^I +׿VBRQ?VBGv/NN ףp= @VBNQi-1 tag+i word RB disagreesVBZp= ף?VBp= ף i word sidNNK7A`ݿNNPK7A`?i-1 tag+i word DT failVBS㥛?NNS㥛ܿi-1 tag+i word DT vetoNNA`"?JJ$CVBN5^I i tag+i-2 tag WP , RBRJ +@RBMb?NNSQVBZCl?CDT㥛 VBZd;O?NNV-VBD rh?JJR{GzVBP/$INˡE? i-1 word fordNNZd;POSV-VBPZd;JJx&1?VBZ-@NNPffffff?i-1 tag+i word VBZ windJJV-RB;OnJJR/$NNrh|@i-1 tag+i word TO changeVBw/?NNw/ i-1 word fishNNPQ޿VBNd;O?VBDX9vֿi+1 suffix ulpNNV-?VBD^I +VBN(\ڿVBP^I +?JJQ롿NNP9vi+1 suffix ochNNA`"?NNPA`"i-1 tag+i word NNP failedVBDQ@NNPS㥛 NNX9vNNP?5^I i-1 tag+i word NNP diNNV-FWV-?i+2 word exchangeNNPSy&1?CCS㥛?RBSVBGA`"?JJGzPDTQݿVBPS㥛VBZvDT`"NNSffffffVBS㥛?NNzG IN|?5^?NNPvo!@ i suffix cus VBʡE@NNPSףp= VBPMbX9ԿNNPx&1?NNSClNN333333?VBD5^I ˿CDV-JJi-1 tag+i word , flatVB"~NNS~jtJJ$C?RBK߿i-1 tag+i word DT poorlyRBOn?JJOni-1 tag+i word PRP$ cdsNNPS~jtNNS~jt?i+1 suffix perFW~jt?RBS= ףp=JJR ףp= ?NNSMbJJV-?VBZV-?DT^I +?NNP~jtNNFxVBD^I +VBN?VBPHzG?CDS㥛VBHzGٿNNPSd;OVBG㥛 ?JJSZd;@RBR ףp= RB5^I i-1 tag+i word VBN wrongRBx&@JJoʡINy&1i+1 suffix inoVBZʡENNP/$@VBG/$JJPnNN`"?FWlRBZd;IN rh?i+1 suffix anyVBZ}?5^I?RPA`"?POSZd;VBx&1?VBDx&1@VBN rh?WDT+wJJV-RBSq= ףpտNNPSK7PRP$oʡ?NNx&1FWQNNSS㥛ԿINʡE?JJSq= ףp?VBP@RB㥛 ?NNPjt?WRBSVBGMbX?DTMbX9?CDw/ĿJJRni-1 suffix edeVBQRB ףp= NN#~j?JJnIN"~?DTClӿi-1 word californiaVBPM?NNS&1?NNPL7A`VBMNNPS= ףp=NN+?i word colonialNNHzG@JJJ +NNPZd;?i-2 word burnedNNS㥻?JJS㥻 i word usaNNP~jt?NN~jti-1 tag+i word RB perplexingVBG+JJ+?i-2 word throwNNSA`"RP9vRB%C@IN"~ji word lithotripterJJRT㥛 NNT㥛 ? i-1 tag+i word DT overwhelminglyRBx&1?NNx&1i+1 suffix mpsNNK7A`?JJQ?VBN/$i-2 word personNN+?JJ+EX-?RB-i-2 word viennaRPCl˿INCl?NNPM?NNPSMi-1 word ailmentsWDTQINQ? i suffix nty VBNnNNSNbX9 NNP1ZdVBD!rhCDoʡ@VBPV-ݿJJMb?VBZuVVB(\RBv/ @NNMbX@i-1 tag+i word NNP investmentNNPSClNNd;ONNPn@i-1 tag+i word MD principallyVBClRBCl?i-1 tag+i word IN rightNNw/?RBw/i-1 suffix gunVBG9v?NN9vi-1 tag+i word DT coincidenceNNoʡ?JJoʡi word legalizingVBGn?NN/$JJMbXɿi-1 word operationsJJ9vʿVBDDl?FWMb?VBNtVRB&1?INMbRP&1ʿi+2 word troughedNNV-?JJV-i word countrysideNNGz?JJGz i+1 word fireVBNGzJJ +?PRP$m?PRPmNNx&1Կi-1 tag+i word NN reboundedVBNJ +VBDJ +?i+1 word coatsVBPmINm?i-2 word tuesdayVBGsh|??NN?5^I VBDL7A`?VBNoʡſJJ`"?VBZzGNNSzG?NNPd;Oi word engineersNNPSQ?NNPQi+2 word unnervedVBZQPOSQ? i word pairVBPn?JJPnؿ i suffix lit JJI +?NN333333?VBPZd;RBS㥛VBZ)\(VB/$?VBDA`"@FWףp= VBN'1Z?NNS&1 i-2 word mitNN= ףp=VBV-@VBPMi tag+i-2 tag PRP `` JJ-IN$CVBZ#~j?NNPK7ѿVBD\(\ @VBP~jt?RBx&1@NN^I +POS- DT{Gz?MD= ףp=?VB`"i word forgiveVBsh|??JJsh|?ݿ i-2 word d.c.VBPGzEX7A`NNn@i word leverageNNJ +?JJ +ֿNNPni-1 tag+i word CD calledVBNMbX?VBDMbXi-1 word puppetNN;OnڿVBN;On? i-1 tag+i word NNPS concentratedVBN-VBD-?i-1 word servedRBRZd;?JJRZd;VBN+RBZd;߿INZd;?DTp= ף?RP+?CCp= ף i suffix ch.NN +NNP +?i+1 suffix iltRBX9v?NNRQ?JJR)\(RBR)\(?JJʡE?VBZRQNNPCli-1 tag+i word -START- publicJJʡENNPʡE?i+2 word homesRBX9v?JJ$CۿNNP&1i+2 word defaultJJK7?RBMbINMb?VBGK7i-2 word productsRBSKINx&1NNSK7A`?NNPS1Zd?NN1Zd?JJSK?VBNGzVBDp= ףJJRX9v?RBRjtNNPS㥛RB7A`VBPMb?JJףp= ?WDTx&1?i-2 word closelyNNS~jt?NNPNbX9?VBy&1RPh|?5NNtVJJx&1?i word schizoidJJ$C?NN$Ci word surreptitiouslyVBK7ɿRBK7?i-2 word merchandiseVBNoʡ?VBDoʡi-1 tag+i word PRP stabbedVBPˡEVBDˡE?i-1 tag+i word NN engulfedVBG-VBD-?!i-1 tag+i word -START- systemwideNNP/$?RB/$i-1 tag+i word DT painNN~jt?JJ~jt i-2 word win RBMbXVBZ333333@NNP~jtNN rhտVBPCl?IN/$NNS333333RPL7A`?JJp= ף? i suffix edeNNQ?VBDxVBP$C @RB(\VBZMbX9NNS(\VB"~@JJ㥛 i word embezzlingVBG?NNi-1 word receivableNNS(\VBNGz@VBDI +ƿIN(\i word clutteredVBNףp= JJףp= ?i+2 word executives VBD(\?RBS\(\?VBN^I +?CDZd;O?JJX9vNNPV-MD9vVB&1PRPV-ڿINףp= NNx&1@JJS\(\ i-1 tag+i word -START- democracyNNjt?NNPjtֿi word commercialJJt@VB rRB+NNy&1,NNPh|?5?i-1 tag+i word DT poetryNNNbX9NNPNbX9?i-1 word opinionVBZ333333NNSQ?NN{Gz?IN/$?WDT/$ i-1 word seen NN~jt?RB%CNNSZd;?NNPClRPEJJVBN"~IN-?VBG'1Z?VBZ/$޿ i word rtcNN-ƿNNP-?i-1 tag+i word NNS ratiosNNSzG?NNzGi-2 word leakingVBZ rNNS r?i-1 tag+i word NNS cheaperRBRv/?JJRv/i-1 tag+i word CC mandatoryVBˡEԿJJʡE?NN;Onڿi-1 word sheetVBZ~jtNNS~jt?VBNCl?VBDCli-1 tag+i word -START- addedVBDS?NNP9v?VBN~jtJJ^I +INmտi-2 word occursRB= ףp=?NNT㥛 JJx&1?i-1 tag+i word VB moneyNNMb?NNPMbؿ i+1 word listVB/$VBGtVοNNtV?WDToʡJJL7A`?DToʡ?NNSh|?5i-1 tag+i word RB wastingVBGjt?JJjti-1 word yesterdayNN rRBX9vVBZq= ףp@DTMb?VB?5^I ?VBD r@POSxVBPNbX9@INNbX9@VBGHzGJJxVBNMbWDT1ZdJJRlRBRl?i+2 word jocksNNZd;O?JJZd;Oi+2 word avoidingNN5^I ?JJ5^I ӿi-2 word minimumWDTV-?INV-i+2 word requestNN#~j?JJ#~jRB+?PRP$+i-1 word entireNNSA`"?NNDl?JJuVݿNNPv/i-1 tag+i word '' statuteVBK7NNK7?i-1 tag+i word ( oliverVB ףp= NNP ףp= ?i+1 word whiteNNPSq= ףpJJʡE@NN-RBjt?INMbX9?NNS㥛 ڿNNPq= ףp?i-1 tag+i word VB eligibleJJNN?i-1 tag+i word IN nonfictionNNS㥻?JJS㥻i-1 tag+i word VBZ sureJJK7A`?NNtVRB rh?VBNn i-1 word irs MDV-?VB"~j?NN%C?VBPw/ԿVBZh|?5NNSzGNNPV-׿VBDV-?JJ1Zd i-1 word aidVBGMbP?NN\(\?VBD rhVBN rh?VBZvϿNNS`"i-1 tag+i word VB anewVBRBZd;O?NNSbX9PRP}?5^INNClۿi-1 tag+i word NNP marketsVBZx&1NNPS^I +?NNSy&1NNPRQ? i word analogNN/$?JJʡEINrh|Ͽi-1 tag+i word RB referringVBG+?NN+i-1 tag+i word PRP sellVBlVBP+?RB?5^I i+2 word premierNN-NNP-?i-1 tag+i word DT magicNNʡE?NNP\(\JJX9v?i+2 word longstandingNNL7A`пRB㥛 VBDMbX?JJw/RP㥛 ?i+1 word mysteriesVBGZd;JJS㥛ĿNNP/$?i-1 tag+i word NNP lifeNN rhտNNP rh?i tag+i-2 tag IN RPRB&1?JJRQ?NNSx&1?NNP r?NNPS/$RBS9vVBN/$?JJNNK7A?VBDZd;INQRBRQֿVBG;On?CCbX9޿JJSK?i-1 tag+i word NNP putVBjtܿVBDjt?i-1 tag+i word CC logosNNS{Gz?NN{Gzܿ i+2 word ltd. VB333333NNPSS?JJ~jtCDuVWDTClRBZd;NNP/$@INCl?NNS(\i-1 tag+i word JJ securedVBNCl@JJ~jtJJRbX9i-1 tag+i word DT metzenbaumsNNPSx?NNPx i suffix lryVBZZd;ONNSZd;ONNP rNNv@JJSZd;OJJ(\i-1 word metedIN(\RP(\?i-1 tag+i word NNS freeVBPʡE?RBʡEݿi word weighingVBG7A`?NN7A` i-2 word toneDT+?VBG)\(?VBNMJJ1ZdCDffffff޿i word legislatorJJp= ףNNp= ף?i+2 word survivalJJ{Gz@RB{GzNNzG?NNSzG i word mazesNNSI +?NNI +i+1 word remainNNPS!rh@CD+JJSVBZ)\(NNSL7A`?VBd;Oi-2 word avenaNN&1?JJ&1i-1 word psychologyVBGA`"?NNA`"i-1 tag+i word VBZ ripeVBG/$JJ/$?i-2 word waitedJJ;On?RB;Oni-2 word rebuffedNNS r?NNP ri-1 tag+i word VBN irasNNPw/NNSw/?i-1 tag+i word DT capitolNNPSZd;OݿNNPZd;O?i-2 word analystsNNP/$VBMbVBDMb?VBNS㥛JJRx&1VBPI +?INMb`RBSK7?JJSK7WDT|?5^VBZGzǿDTQVBGCl?NNA`"?JJv@RBoʡNNSGz?i-2 word kleinINbX9ȶ?NNPZd;ONNPS?RPV-RB rh@i-1 tag+i word DT egyptianJJDl?NNPDlѿi-2 word sears VB;OnNN9vNNSm?NNPSnڿRBtVVBP;On?JJn?VBZmտNNPn?i-1 tag+i word RB soundVB rhٿJJ rh?i+1 suffix umePOSV-UHSNNPSSNNA`"@IN/$PRPףp= ?VBNT㥛 ?RB rhVBZ rVBV-߿VBGxJJʡE@JJS rh?VBDV-?NNPʡENNSX9vi-1 tag+i word VBZ tabloidJJ/$?RBˡEINV-i+2 word comprehensiveVBZ333333?VBD333333 i word prideJJ ףp= INT㥛 NNZd;O@i-1 tag+i word VBZ interestingVBGX9vJJX9v?i-1 tag+i word VBG helicoptersNNPS#~j?NNP#~ji-1 tag+i word CC averageNNK7AJJv/VB rhVBPMbX9@i+1 word prisonerJJS/$?NN/$i-1 tag+i word WDT allDT(\?VBPK7RBh|?5? i word zurichNN5^I NNP|?5^?NNPS r i word limitsJJR-JJX9vVBZOnӿNNSm@RBp= ףNNX9vi-2 word descendingRB)\(?NN1ZdJJ/$ƿi-1 tag+i word -START- urgingVBG rNNP r?i-1 tag+i word NN versusRBK7A`NNV-INMbX?i-1 suffix mlyVBDS?VBN rh?VBPI +?PRP㥛 JJx&NNʡE i word rayNNPrh|?NNPSPnпINQi-1 word recurringVBZK7NNSK7?NNM?CDMi-1 word grandioseNNl?JJlڿi-1 tag+i word -START- batchNNP7A`VB|?5^NN}?5^I?i+2 word garmentVBZ\(\߿NN\(\?i-2 word finishedJJRQ?RBRCl?NNRQؿVBN?5^I JJRQi-1 tag+i word VB fasterRBRS?NNS!i-1 tag+i word -START- everythingVBG-NNRQ?NNP'1ZĿ i suffix win VBPˡE@VBCl@RBnNNT㥛 JJR/$NNPS?NNPSbX9VBDSJJV-ϿINRQ i word formerJJ}?5^I@CD+NNPjtNNSQi+1 word measuredRBʡEINʡE?i word centerpieceNN?JJi+1 word spiesVBZQRBQ?i-1 tag+i word RB flickeredVBNVBD?i-2 word sevenNNSZd;OJJMbX9?NN#~jNNP$C?i word directorialJJMbX?NNMbXi-1 word rerunsVBNm?VBDm i-1 word peatNNPSʡENNPʡE?i-1 word employmentNNP1ZdVB9vNNSQ?NNPn?i-1 word discussedJJSVBGS?i-2 word elderlyDTA`"VBSNN{Gz?VBDS?WDTA`"?JJ{Gzi word regimenNNS/$NN/$?i word vincentNNPHzG?JJGz޿NNDli word souringNNx&?JJx&i-1 tag+i word RB draftedVBN/$?JJ/$޿i-1 word detroitNNSrh|NNP/$?NNPS"~jNN$C?VBDrh|?JJ9vi+1 word producersJJrh|NNNbX9пVBDv?CC{GzRBKIN~jt?NNS?5^I ?i-1 tag+i word DT featJJ ףp= NN ףp= ?i-1 tag+i word VBN urgedVBN/$?JJ/$i-1 tag+i word VB minimumJJv?NNvϿi-2 word exerciseVBNq= ףpWDTQ?JJʡEDTQMD)\(NNˡE?VBDDl?POSMb i word aideNNK7A`@JJA`"RBV-߿INCli-1 word spurringNNS(\?NNJJQi+1 word apparentlyWDT/$?NN rh?JJ rhINSDToʡ?i-1 tag+i word -START- comparedVBN +?JJ(\NNPV-߿i+2 word availabilityVBDnҿVBZMbX9VBPoʡ?i-1 suffix getNNffffffƿVBPy&1WDTMbX9?DTd;O?CD+RP\(\ϿJJ@VBNGz?VBGHzGJJRCl?PRP$nRBRS?VBn?EX5^I VBZZd;ϿPRP rhVBDlUHB`"ɿRB\(\?INJ +?NNSMڿi-2 word directVBZK7@NNSK7NN r?JJ ri-1 tag+i word VBD detailedVBN\(\JJ\(\? i+2 word junk RPOn?NNrh|?RBsh|?IN(\?VBNZd;VBP}?5^I?VBOnJJd;O?JJS!rhRBS!rh?i-1 tag+i word VBZ noDTHzG @JJx&RB|?5^UHq= ףpͿ i-2 word gemVBZ5^I ?VBP5^I i tag+i-2 tag `` VBDDTS㥛VB|?5^ٿVBG ףp= JJ/$RPsh|?ſNN&1?NNS|?5^NNPK7A`VBPFxIN(\RB/$?VBDˡE?FWT㥛 ?VBNd;O?WDTS@UHS㥛i-1 tag+i word NN aloftRBHzG?JJHzGi-1 tag+i word NNPS flakesNNPS/$?NNP/$ٿi-1 word propertyNNSZd;?NN)\(?RBOnVBZ(\ i suffix raqVBClNNPCl?i-1 tag+i word , compactVBGKJJK? i-1 word skidVBNSRBS?i word inchwormNNCl?JJCli+1 word bratsVBMbX9ܿJJ\(\@NNSVBNx&1i-1 tag+i word NN checkbookVBP;OnNN;On?i word retardedVBN5^I JJ rh@VBDK7Ai+2 word liberalizingVBRQNNRQ?i-1 tag+i word , echoRBzGNNPzG?i+1 suffix ticVBZ(\?CC/$?JJSx&VBPKPRP$x?WDTˡENNSK7A`NNףp= JJR ףp= VBNE@JJL7A`RBSMbX?NNP r@PRPxIN^I +VB\(\VBGClRBCl?VBDQ?DT}?5^IRBR/ݤ@i+1 word applesVBGV-?NN7A`VBPGz?JJHzG?NNPmVBGzi-1 tag+i word CD americanJJ(\NNP(\?i-1 tag+i word PRP reachVBPV-?VBDV-i-2 word hauntingNNzG?JJzGi word budgetsNNSV-?NNy&1VB^I +i-1 tag+i word NNS firstVBPKRBtV?JJnڿi-1 tag+i word WDT hurtVBPy&1VBDy&1?i-2 word kohlbergNNPS rNNP r? i suffix RowJJT㥛 NN|?5^ʿNNP\(\? i+1 word h.JJxNNPx? i-1 suffix enVBP%CRBMbX9NNStVVBףp= ÿNNZd;?FW?i tag+i-2 tag NN VBVBG{GzRBCl?WRB^I +?JJRV-?NNPMbPJJV-?VBP?NN)\(VBD'1ZNNS9v?PRPSDTMbRPnRBRˡEVBNbX9?WDT;On?INv@VBZ^I +VBi-1 tag+i word RB sectionVBN+NN+? i+2 word artsNNPI +NNI +@#i-1 tag+i word JJ intergenerationalJJK7A?NNK7A i word oboistNN|?5^?JJ|?5^i-1 tag+i word VB hitVB#~j@PRP rhJJ)\(VBN7A`ڿi-1 tag+i word TO mollifyVBq= ףp?NNq= ףpi+1 suffix bexVBNDlVBDDl? i-1 word keep RPV-RB#~jJJClǿINV-?WDT}?5^IDTCl@NNSGz?VBGv/?NNB`"?VBN1Zdi-1 tag+i word IN pleaNNSx&NNx&?i+1 word stiffDTQVBPmVBm?INQ?i-1 tag+i word ( repeatedVBNn?VBDn i+2 word hotJJCl@NNCli-1 tag+i word NNS growVBw/?VBPS㥛ĿNN}?5^Ii-1 tag+i word NN wanedVBNMbX9VBDMbX9?i+2 word gouldoidNN9v?RBSINq= ףpͿi-1 tag+i word , etcFWV-@UHtVRBq= ףpVBD+ i word anklesVBZX9vNNSX9v?i tag+i-2 tag `` POS NNSI +@JJK7ANNp= ף?VBD^I +VBNw/?VBffffffFW^I +@RBx&NNPy&1@i-1 word rothschildsNN}?5^I?VBD-?VBNZd;OVBPDlRB rIN`"? i+1 word rep.NN ףp= ?VBD-JJ|?5^VBZl?NNSQNNPX9v?i+1 word recognizeVBZ(\NNS(\?i-1 tag+i word JJ technologiesNNPSp= ףNNSp= ף?i word burnoutsVBZMbX9ܿNNS7A`?UHQi-1 tag+i word NN seerNNzG?VBDzGi-1 tag+i word NN jailedVBNrh|?JJ-?VBD rhi tag+i-2 tag PRP VBGRPffffffRB7A`NNx?VBPClǿIN)\(?VBx&1?VBDvRBRSVBNZd;?MDd;OJJS;OnPOS|?5^?JJCl@VBZZd;OJJR#~j i word huskyPRPGzNNPGz? i+2 word softVBGtV?NNK7A`VBP"~j? i word passesNNClVBZMb?NNSQ?i-2 word inclusionJJ/$?NN/$i-1 tag+i word NNP onlyJJ?RBi+2 word successNN㥛 ?VBD= ףp=?VBN= ףp=VBPRQRB9vNNSS㥛?VBG?5^I ?i-1 tag+i word -START- swedishJJ~jtNNP(\ @NN`"$&1i+1 suffix ncyJJjt@CDSݿPRPClNNPM?PRP$ r?NNPSClRB$C?VBZʡENNSx&NN/$?WDTjtVB{GzINSDT5^I @VBG333333VBNmݿi-1 tag+i word PRP$ principalJJT㥛 ?NNT㥛 i tag+i-2 tag ( VBGDTV-INV-?i-1 tag+i word DT distinctlyRBA`"?JJA`"˿i-1 tag+i word TO deadlyJJ#~j@RB#~ji-1 word operatedRBSۿINS? i word igniteVBy&1?JJy&1i-1 tag+i word RB findJJ"~VBRQ?VBPV-?VBN(\i word movementsJJHzGNNSHzG?i+1 word choppyRBJ +?JJJ +i+2 word clamberedNNʡEӿNNPjt޿VBG+JJtV?i-1 tag+i word NN statesNNP)\(?VBZ rhNNPS9vNNSJ +?i-1 tag+i word , moreRBRDl?RBHzGѿJJRS㥛i-1 tag+i word RB whereverVBZd;WRBZd;?i+2 word regulationsNNm?VBPffffff?WDTsh|?JJ rINjt?NNSOn?i+1 word johnsonNNP ףp= ?JJSCDx&1i-1 word appealWDTV-?VBNS㥛@VBDS㥛INV-i-1 suffix iveRPMb@NNffffff @PRPy&1?RBSRBR%CPRP$y&1VBDMbVBP rhNNSd;O@PDTK7AVBG|?5^WDT|?5^JJV-?INQ?NNPSX9v?JJRZd;O?DT%CܿNNP;OnCD㥛 VBV-VBNoʡ?VBZffffffFWi-1 tag+i word NN castroNNClNNPCl?i-1 tag+i word RB endedVBNK?VBDKi-1 tag+i word WDT leadVBZ!rhVBPbX9?VBDHzGѿi-1 suffix heyVBNClINV-VBGK7A`RBGz?DTZd;?VBZNbX9JJRʡE޿VBS㥛ĿNNSZd;ORBSv/?RPjt޿NNPK7VBP㥛 @JJ^I +MD~jt?NNPSK7?NNףp= VBDw/ @RBRʡE? i suffix ARTNNPnؿNNPPn?i+1 word neophytesVBZ|?5^?NNS|?5^i+2 word motherVBDlVBG1Zd?NN1ZdVBDGz?VBPGzVBZDl?i word bettingVBGx?NNxi-1 tag+i word JJ riscNNPʡE?JJʡEi-1 word personnelIN#~j?VB%CRBA`"RBR rh?VBPw/ĿJJCli+1 word issues NNS/$?NNP rh?VBGNNSVBDK7A`JJRx@JJ|?5^?RBRClVBNCl?VBZK?CDT㥛 ?i-1 tag+i word POS comedyNNSˡENNˡE?i+1 suffix ada DTSNNSxNNPDl?VBP~jt?RBʡE?INjt @NNVBN/$?VB~jtNNPS/$@JJoʡi-1 tag+i word JJ eyebrowsVBZ +οNNS +?i+2 word parsonsJJy&1NNPy&1?i word salutingVBG+?NN+ i suffix igh NNPn?VBS?RBK7@NN㥛 VBNoʡVBP'1Z?VBZ\(\NNS rhMDʡEVBGuVͿVBDZd;OJJx&@IN"~ i+1 word lackDTE?JJ$C?NN$CINE i word yardNNGz?RBSݿNNPFxѿi-1 tag+i word RB slowingVBGX9v?JJX9v i suffix 746JJףp= CDףp= ?i-2 word maybeVBPd;O?NNPSRQ?NNPRQVBDd;Oi+1 word tuckedNNʡE?NNPʡEi-1 tag+i word DT cutsVBZ-?NNS-i-1 word achenbaumCD\(\NNPNNPS?RB\(\?i word collectVBP+?JJQNNlVBQ?i+1 word insurance NNFx@VBNV-WDT|?5^IN+DTʡE?RPlҿNNPSS㥫JJ/$ۿRBw/VBGV-ͿNNSNNPS㥛?PRP$x&1i+2 word dentonJJ!rhVBD!rh?i+1 word arbitrarilyJJnNNn?i+1 suffix en.NNQտWDT(\?JJGz?IN(\NNP)\(VBʡE?NNPS rhi-1 tag+i word WP championVBP333333?NN333333i-1 tag+i word JJ golfingJJ+NN+?i+2 word assertingNNffffff?JJffffffֿi-2 word countsVBZ|?5^VB|?5^?RP?5^I ?IN?5^I i-1 tag+i word NNP diabeticJJNbX9NNPNbX9?i+1 word reproductionJJS㥛NNPS㥛? i pref1 5JJzG @NNPy&1NN"~j VBDV-VBN"~jCDI +@i+2 word movementsVBZ%C?NNS%CVBNClVBDCl? i word robbedVBNjt?NNjti word pitchedJJ%CVBDlVBNS㥛@i+2 word abroadNNw/?VBD(\VBP(\?JJRQ?NNS/$?VBSNNPS/$ i suffix oasJJV-ҿNNPV-?i-1 tag+i word DT tableNNQ@JJQi-2 word presentNNS= ףp=RBR{Gz?NN= ףp=?JJR{Gzi+2 word flowingNNMbJJMb? i word toolNNzG@INx&1VBGNNS\(\i-1 word developingRBR-JJv/?PDTS?JJRMb?NNh|?5 i+1 word julyVBD5^I NNZd;RBK7AпJJK7A?VBNX9v@i-1 tag+i word JJ insulinsNNSNbX9?NNNbX9i-1 tag+i word IN upwardJJx?INxi+1 word becaseRBA`"?JJA`"i-1 tag+i word TO distressedJJZd;O?VBNZd;Oi+2 word bettingNNS|?5^?NNP|?5^i-1 tag+i word DT flatteringJJQ?NNQ!i-1 tag+i word -START- metromediaNNSףp= NNPףp= ?i-1 tag+i word TO creswellVBS㥻NNPS㥻?i-1 word clinicRBffffffINffffff?i+2 word anecdotalNNPvVBv?i tag+i-2 tag VBD WPPRP$B`"VBGGz?NNp= ף?VBN7A`ҿVBPOn?WDT+?RB?DTZd;JJ rh?VBDx&RBRSINL7A`NNS\(\VB&1ҿRP(\?NNP"~?CCZd;O?RBS?JJSؿPRPB`"?i-1 tag+i word IN analyzingVBGPn?JJPn i suffix xesDT}?5^INNS rhQ!@NNPB`"NNPS}?5^I?NN?5^IVBN|?5^JJI +VBZʡE i+2 word slumJJjtܿNNPjt? i suffix aryNNPv?VBvVBGSVBDjtRBB`"VBZ~jtJJSClVBPQ?JJR/$PDTjt?JJjt(@NNK7FWףp= NNS&1 VBNMbRBRmINʡEDTʡE?i-1 tag+i word RB electedVBNˡE?JJˡEi word incidentsVBZ#~jNNS#~j? i+1 word amJJGzWPx&?NNPh|?5?i-2 word assumedVBGS?NN= ףp=JJEؿi-1 tag+i word VBP guardedlyRBL7A`?JJL7A`i-1 tag+i word NNS balkedVBNQVBDQ?i-1 tag+i word DT deaNNd;O?JJd;Oi+1 word bullockNN"~?NNP"~i word seasonallyRB|?5^?NN|?5^ i+1 word titoVBJJRrh|߿NN-?i-1 tag+i word '' pennedVBN|?5^?VBD|?5^i-2 word vegasVBG333333?NN333333VBN rVBPOnJJ r?NNSOn?i-1 tag+i word VBZ supportNN+VB+?i-1 tag+i word IN polishJJ|?5^ѿNNx&NNPʡE?i-1 tag+i word TO completelyVBS㥛RBS㥛?i-1 tag+i word JJ responsesNNS+?NN+i-1 tag+i word -START- thusUHmJJ"~jNNPd;OLS(\ڿRBGz.@NNPnVBNʡEi-1 tag+i word DT arrangementNN|?5^?JJ|?5^i-1 tag+i word DT executingVBGZd;O?NNZd;Oi-2 word guerrillasNNPK7A`?RBK7A`i-1 tag+i word NNS utilitiesNNSx?JJxi-1 tag+i word IN tearVBB`"?VBPmJJ-ۿi-2 word universityDT|?5^NNSZd;NNPZd;@VBG+JJ/$?VBD~jtۿVBNZd;O߿RB|?5^?i-1 word deterrentsRBv/?JJv/i+2 word close VBDOnVBP(\?INQVBZ)\(?NNPDl?VB/$NN!rhܿVBNPn@JJ/$NNS$CRP|?5^RB rh @ i pref1 LNNl RBNbX9NNS+VBV-INNbX9NNPSsh|?@VBNjt?FWCl?PRP9vWRBQCDZd;JJRtV?NNPrh*@VBDS㥛VBP%CJJx&CC +UHEVBGV-?DTMbXLS/$RBRuV?VBZK߿i-1 tag+i word JJ growingVBGmͿNNm?i-1 tag+i word DT oxidizerINPnNN(\?JJˡEi-2 word commissionJJGz?VBZ\(\߿NNS㥛 NNPS㥛VBGMbNN"~jFW$C@i+1 word turbineJJT㥛 JJRMbNN)\(@i-1 tag+i word `` promptNN(\NNS333333JJMb?i-1 tag+i word NN warningVBG ףp= ׿NN ףp= ? i+2 word hopsNN/$?JJ/$ݿi-1 tag+i word DT tragedyNNPSSNNS?i-1 tag+i word NN earmarkingVBG?NNi word cSYMRQ?$Q?NN/$JJˡENNPRQi+2 word mitreNNʡENNPʡE?i-2 word arrangementsNNK7NNPK7?i-1 word nastyNN)\(?JJ)\(i-1 tag+i word JJ shiftsNN~jtNNS~jt?i+2 word lucioNNDl?JJDli-1 tag+i word JJ extraJJCl?NNCli+1 word nationVBD#~jJJSףp= @JJRMVBNʡEJJ"~?NNPClVBGʡE?NN?i word streamlineNNZd;׿VBK7A@RBQJJ rhi-1 tag+i word IN whoopingJJ(\?VBG(\i-1 tag+i word `` worryingVBGGzJJGz?i-1 tag+i word NN nicheNNS7A`NN7A`?i-1 suffix ftsNNPnVBffffff?VBP+ηWDT^I +?IN^I +i-1 word printersJJp= ף?INp= ףпi+2 word discoveriesWRBh|?5?RBh|?5i-1 word copyrightedNNSNNQ?JJp= ף#i-1 tag+i word -START- interventionNNCl?NNPp= ףNNS+ i suffix .W.NNSNNPS? i word toppedJJMbXVBDMbX?i+2 word viableVB7A`?VBP7A`RBK7INK7?i word directiveVBPOnNN7A`?JJd;Oi-1 tag+i word -START- saysNNPSuVCDsh|?RBSVBZGz@NNS/$NNP ףp= i word tattingersNNPSOn?NNSOni+2 word builderNNS7A`JJ7A`?i-2 word olympicNNP rNNPS r?i+2 word checkVBPQWDTQ?INQNNPsh|?տVBQ?NNsh|??i-1 tag+i word IN hemorrhagingVBGEؿNNE?i-2 word creditorDTQWDTQ?RB&1?IN&1i-1 tag+i word NNS throughRPzGJJ`"IN!rh?i-2 word thinkVBG~jt?JJ(\NNx&VBDZd;?VBN5^I INS㥛RBZd;O?DTh|?5޿MDS?VB rhRPx&1PDTh|?5?VBPI +@NNPSK7ٿVBZ7A`@NNSGz?JJRS?POSx&?NNP/$i-1 tag+i word DT policeNNS;OnNNRQ@JJh|?5i word operatedVBNVBD?i-2 word volatileWDTRBMbX9?JJy&1IN-DT?i-2 word morrisVBNZd;?JJSVBZA`"?NNSA`"NNS?VBDZd;i+1 word managementsVBGx&1?NNx&1 i+2 word keenVBD/$?VBN/$i-1 tag+i word NN targetVBffffffֿWDTA`"NNtV? i suffix ajaNN$C@NNP$C i suffix igsJJ/$VBZDl?NNS}?5^I@VBI +NN&1RBR5^I i+2 word cousinsJJ r?NN ri-1 tag+i word DT groundupJJJ +?NNJ +i-1 tag+i word NN quitVB&1ڿNNPSv/NN rVBDy&1@i+2 word various VBQ?VBG?NN~jtVBN~jt?WDTGzDTNbX9VBD~jtJJ|?5^INx&1?i tag+i-2 tag RB PRP$VBN?VBPZd;OͿJJ/$ٿRBK7A`NN?VBD333333JJRCli-1 word begunVBG9v?NN9vi-1 word improvementNNʡE?VBGI +VBNGzRB1ZdVBDGz?i-1 tag+i word NNP flagVBP{GzNN{Gz?i-1 tag+i word NN referredVBNrh|VBDrh|?i word crankcaseJJtVNNtV?i+1 suffix ttoJJMbVBD(\ݿNNMb?VBN(\? i suffix butJJZd;VBZ rhVBQNN +@i-1 tag+i word CC clothingVBx&1VBGK7NNRQ @JJ-i-1 tag+i word NN hidingNNMb`?JJMb`i-1 tag+i word PRP$ firmNNK7A`?JJK7A`i+2 word settledJJSQJJx&1@NN ףp= NNPˡEԿi-1 tag+i word DT biddingVBG~jtNNCl?JJZd;O?i word burdensomeVBPʡERPd;OֿJJNbX9?NNףp= i+1 word republicanNNPQ?VBGJJ@NN'1Z i word pureJJFx@NNFxi+2 word restaurantsNNP9vNN9v?RBMb?JJMbi word whiplashNN5^I ?NNS5^I ˿i-1 tag+i word VB fastNN+RPJ +RB%C?i+2 word advertisementsNNPoʡDTʡEͿPDTʡE?INoʡ?i-1 word jonathanNNPS rhNNSd;ONNP'1Z@i-1 tag+i word TO smoothlyVB|?5^RB7A`?JJ+׿ i suffix 3.5CD}?5^I?JJ}?5^Ii+1 suffix pieNNPSX9vNNPX9v?i word installedVBN{Gz?JJ{Gzi+2 word seasonallyVBNOn?JJ㥛 ҿVBD|?5^i+2 word craigJJrh|@NNoʡ?CDoʡUHRB +޿NNP|?5^i+2 word messengerRBV-INV-?i-1 tag+i word NNP nabiscoNNPSV-NNPV-? i word pepsiNNMbXٿNNPClNNSQ@i-2 word topiaryNNP(\?NN/$@VBN333333JJ/$VBDni-1 tag+i word TO quarterlyRB$CVB~jtJJx&1?i-1 tag+i word IN humulinNN ףp= NNP ףp= ?i+1 word contendsVBG/$NNV-ͿJJNbX9ȿNNP9v?i+2 word peasantsCCA`"?VBDn?JJHzG?DTA`"VB&1ڿNN7A`FWK7A`i+2 word causesNN}?5^I?JJ}?5^Ii word steelmakersVBZףp= NNSףp= ?i-1 tag+i word , pushedVBDn?VBNn i suffix tecUHʡEۿJJˡE}@NNP(\i-1 tag+i word DT helplessRB^I +JJˡE?NN rhi-1 tag+i word RBR attunedJJ333333?RBClVBNh|?5i-1 tag+i word TO equalVBGz?JJGzi word noneventJJT㥛 NNT㥛 ?i-1 tag+i word JJ neigeNNGzFWGz?i-1 tag+i word `` timidityNNl?JJli-1 tag+i word JJ resortNNOn?JJOni-1 word somewhatJJR/$@RBRHzGVBN(\RBGzVBG+JJ;On@NNvVBDffffffi-1 tag+i word NNP specialistJJd;O?NNd;Oi-1 word onetimeNNMbX9NNPjtJJv?i-2 word telegraphedJJGz?RBGzi-1 tag+i word NNP bicentennialJJQ?NNQi-1 tag+i word -START- importNNP rhNN rh?i-1 tag+i word DT wrongJJq= ףp?NNq= ףpi+1 word warrantsNNP333333?VB rh?VBDx?JJp= ף?NNDl i-1 tag+i word PRP betterVBZ(\JJRffffff?RBR ףp= i-1 tag+i word DT entertainingVBG(\JJRQ@NNX9vi-2 word largerRBRK?JJRKVBN`"VBPQ?JJlVBˡEi-1 tag+i word CC bondholdersVBZI +NNSI +? i suffix NedDT/$NNP/$?i-1 tag+i word NN confiscatedVBNrh|?NN{GzVBD"~i-1 tag+i word TO manufacturersNNStVNNPjt?NNPSSۿi-1 tag+i word DT randomlyRB\(\?NN\(\ i-2 word ledNNRQпVBNn?JJjtDTʡE?NNS rhNNPOn?VBV-NNPS= ףp=?i-2 word mailroomVBZA`"?NNSA`"i word counterrevolutionaryJJ5^I NN5^I ? i word adultNN^I +?JJ~jtINd;Oi+1 word rehabilitationVBS㥛VBPKNNCl@JJ-i-1 tag+i word IN falselyJJV-RBV-?i-1 word genesVBP= ףp=?WDTFx@JJ= ףp=IN`"NNS= ףp=?NNPSV-NN= ףp= i word vivaVBDlFWV-@NN(\NNPvi-1 tag+i word VBN disastrousJJ|?5^?NN|?5^i-1 word bicycleNNPS9vҿNNP9v?i-2 word trialVB&1?RB/$NN+?VBPv/JJ/$?NNPFxi-1 tag+i word RB tiedVBNK7?VBDK7i-1 tag+i word CC destroyVBZ/$VB/$?i-1 tag+i word IN goldNNPzGJJS@NNʡEӿVBD7A`i tag+i-2 tag JJR NNPNNP;OnVBN?JJsh|??VBDni-1 tag+i word IN despairNNx&@NNPx&i-1 tag+i word CC shiftVBMbX9?VBPoʡNN7A`i word depressedJJ/$@VBN/$ i suffix PatNNPZd;O?VBDZd;O׿ i+2 word fastCCCl?VBZ(\?NNSClNN(\i-1 tag+i word DT friendlyNNJJZd;O@RBM i-1 word kumeJJ~jtVBD~jt?i word circumventsVBZuV?NNSuVi-1 tag+i word JJS performingVBGS?NNS˿ i+2 word hatsRPS?RBSi-1 tag+i word RB outweighVBZ(\ݿVBʡE?VBPQ?JJ\(\IN"~i+2 word purseNNʡENNPʡE?i+1 word wants CDOnWDT1Zd?JJI +IN1ZdNNS rh?VBN|?5^NNffffff@NNPA`"?RBˡE i word clonesNNS;On?VBP;On i word townsNNPSZd;NNSX9v?NNX9vNNPZd;?i-1 word boomingJJE?NNEi-1 tag+i word DT offsettingVBGMb?JJMbi-1 tag+i word RB fallVB7A`?VBPh|?5JJL7A`i-1 tag+i word NN uphillVBRBS?JJ"~i+2 word coveringVBZV-NNPS-?NNV-?NNP-i-1 tag+i word JJ nextIN(\?JJ rh?RB|?5^NNP(\µ? i word earnsVBZQ?NNSQ i suffix ninNNSS㥛NNd;O?RBS㥛i-1 word basisRBI +?INI +޿i-1 word viewedVBG(\NN㥛 ?NNPp= ףi-1 tag+i word VBZ judgeNNS|?5^NN|?5^? i+2 word play NNP-VBGB`"NNl @VBNCl@VBP+RBx?CDS㥛NNS%C?VB+?JJ'1ZVBD-RBR9vi-1 tag+i word JJ followVBPS?NNSSi-1 tag+i word JJ suitorNNK7A`?VBNK7A`i word spectacularJJ +?NN +i-1 tag+i word NN earlNNSClNNPCl?i-1 tag+i word DT hadNN|?5^VBD|?5^?i word attorneyNNPSPnNNV-NNPMbX? i-1 word agipVBPvVBGv?i word missionaryJJ-?NN-i word actressNNS㥛?JJmNNPbX9޿ i word rodeoNNS333333NN`"?NNPni-1 tag+i word PRP consideredVBPSտVBDS?i-1 word dudleyNN5^I ?NNP5^I i-1 word settlementsVBNZd;VBDZd;?i+1 word admitCC rh?RB rhi-1 word sterlingVBD/$@VBNClVBP?5^I ?JJQտNNPS?VB r?NNPSSӿNNOni-1 word vietnameseNNSA`"?NNA`"?JJA`"VBZA`"i-1 tag+i word RB happyVBNbX9JJNbX9?i+2 word responseNNZd;OVBDJ +?VBNJ +JJoʡINxֿVBGK7@RB~jt?i+2 word decadenceNNJ +?JJJ +i-1 tag+i word NNS audioNN?INi tag+i-2 tag NNP ''FWX9v޿POS333333?CDsh|??''|?5^VBZK7A`NNSGz?NNP/$?NNPSٿ i suffix ltsVBNX9vVBPvVBZMb?DTy&1NNSw/&@NNP{GzVB ףp= NN1Z i word switchVB!rh@JJ~jtNN/$i+1 suffix sunVBD`"DT`"VBP`"?IN`"? i+2 word tiedJJGz?VBNSNNGz߿VBDS?i+2 word undervaluedWDTq= ףp?INq= ףpi-2 word continualWDT rh?IN rhi-1 word editorsVBS㥛VBP/$?NNQi+1 word internalJJ!rhVBN&1?NN7A`? i word chafeVBP}?5^I?NN}?5^IԿi-1 tag+i word JJ monthlyNNS{GzJJ9v?RBS㥛i+1 word frequentNNSZd;ONNPZd;O? i-2 word wokeJJFx?NNSVBNSi word orangesNNSZd;?NNZd; i-1 word billVBGK7?VBDMbXٿVBN(\?WDTK7A`?NN/$JJnҿNNPSClVBPd;OοVBZuV?NNPCl?VBA`"RB~jtIN+?NNSuVi-1 tag+i word RB goodnessNN㥛 ?VBP㥛 i word commencedVBNmVBDm? i word toxinNNS rNN r? i suffix azzNNbX9@NNSQٿJJ+RB= ףp=VB+i+1 word witnessesJJ{Gz?NN{Gzi-1 tag+i word TO doctorVBQ?JJQi-1 tag+i word DT announcerRBSNNS? i+1 word byrdNNQNNPQ?i-2 word troublemakersNNSrh|?NNrh|i+1 suffix entVBDClɿ''xRPRBbX9NNSS㥛IN|?5^VBNE?CCq= ףp?VBZGzPRPX9v?JJ(\@WP7A`FWZd;O@NNPL7A`CDPn@JJSʡEPRP$`"?WDT"~@DTbX9?RBROn@VB-?JJRZdRBS?VBGjtVBPA`"ӿNNrh|POS^I +@NNPSjt?i-1 word tightenerVBZn?NNSni-2 word philosophiesVB/$VBPZd;?NN)\(i-2 word penceVBjt?RBzG?NNZd;INˡEi word exoneratedVBN +VBD +?i-1 tag+i word NNP foundedVBD rh?VBN rhi word taxableVBN= ףp=JJMb@NN5^I i word innopacNNX9vNNPX9v?i+2 word matchingRP+?JJ{Gz?NN{GzԿIN+i-1 tag+i word DT standstillJJ/$ @NN/$ i word suffersNNS"~VBZ"~?i+2 word standNNx&1NNPx&1?IN5^I ?RP5^I i-1 tag+i word VBN instrumentalVBN!rh̿JJ!rh?i-1 word holdsRPClRB1Zd?NNPnJJ +INK7ѿDTbX9?i-1 word campanerisNNSCl?NNPSCl i-1 word flatJJ1ZdVBD%CVBNX9v?NNy&1?i-1 word total VBN|?5^JJ/$@VBZ5^I ˿NNPK7A?NN rпVBD/$RBV-VBP +INV-?NNS5^I ?NNPS)\(?VBG/$i-2 word messagesVBGMNNM?i word realitiesNNS?NNP i word muttsRBGzNN&1NNSFx?i-1 tag+i word NN ranVBZNNnVBDsh|?@i-1 tag+i word CC gardeningVBG+NN+?i+1 word exceedDTvWDTGz?IN}?5^Ii+1 word communitiesNNvVBN&1JJ&1?CDv?i-1 word accompaniesDT/$PDT/$?i-1 tag+i word IN sweetsNNSʡE?NNʡEi-1 tag+i word JJ directNN%CJJ%C@i-1 tag+i word -START- deanJJ\(\NNP\(\?i-2 word understandJJ1ZdVB rVBP\(\?NNSK7A`NNV-? i word plugVBʡEVBPmͿNNZd;?NNPM i+2 word warmVBDZd;OVBPbX9?RB/$VBZZd;O?NNPq= ףp?VBbX9JJ)\(NNZd;O?i-1 suffix row VBZ+?NNS-JJR/$NNP?5^I NNPS?5^I @RP ףp= ?NN+POS\(\?INv?PRP$9vRBR/$?PRP9v?JJtV i suffix aseVBGףp= CC(\SYMMbX9JJ+NNP{Gz @RBZd;INy&1VBZ~jtNNS`"yNNPS$CVBP-˿LS ףp= VBS㥛@$MNN$@VBDV-?i-2 word professionalVBNQ?VBZ%CNNS%C?NNPS㥛?NNS㥛VBDQۿ i-1 word alanVBZGz?NNPS-NNSGzNNP-? i word cutsVBZNbX9?NNS ףp= @VBNK7NNX9vVBDK7A`i+1 suffix cidJJ ףp= ?VB ףp= i-1 word fabledNNClNNPCl?i-1 tag+i word DT returnJJ~jtJJRQ롿VB}?5^IܿNNK7A`?i-2 word applaudsDT/$WDT1Zd@INZd;Oi+2 word transformsRBy&1@DTy&1i-1 suffix zdaNNS~jt@NNPˡEVBZQ?CDx&1i-1 word strainsVBNv?RBV-VBDʡEi-1 tag+i word JJ weirdJJ)\(?NN333333ӿRB&1ʿi-1 tag+i word PRP$ chivasNNSZd;ONNPZd;O?i-1 tag+i word NNP refusesVBZx&?NNSx&ٿi-2 word bootsVBN^I +NNP^I +?i-1 tag+i word NNP offRPˡE?RBSINy&1?i-1 tag+i word VBZ ordnanceNN|?5^?RB|?5^ʿi+1 word ministriesJJ~jt?NNP~jti+1 word mayorNNPʡE?NNQRBSۿVBDJJOn?i-1 word levalVB#~jVBP#~j?VBNQVBDQ? i word sujectNN%CܿJJv?VBN+ i word pistolNNS`"οNN`"?i-1 tag+i word `` doNNPCl?VBlVBPʡE?JJK7FWzG i word rateVBsh|?NNPS= ףp=NN\(@VBPlJJnNNS㥛 NNP(\?i-2 word hotelsVBPʡENNʡE?i-1 tag+i word NNP helpedNNStVVBDtV? i suffix gunNNSx&1NNx&1?i-1 tag+i word DT adversaryNN#~j?JJ#~ji-1 word smallestJJHzG?RBK7NNI +i-1 word definitelyVBPh|?5VBN(\?VBv׿i-1 tag+i word NNPS fansJJRQVBZB`"ٿNNS9v?i-1 tag+i word -START- soaringVBGd;O?NNPd;Oi word civilianJJ(\?NN(\i-1 tag+i word DT lateRB(\?NNPzG?JJjt?JJSB`"NNA`"i tag+i-2 tag WRB :NNZd;VBPCl@JJ{GzDTffffffNNPv/?RBx&?i+1 word ceremonyNN+?JJ+i-2 word droveJJ%C?NN%Ci+2 word dessertJJX9v?NNX9vi-1 tag+i word CC genentechNNp= ףؿNNPp= ף?i word lavenderJJRZd;ONNZd;O?i-1 tag+i word NNP melloanNNzGNNPzG?i-1 tag+i word RB addressVBGzVBPd;O?NNw/?JJ333333INRQi-2 word marshallVBGCl?NNCli-1 word vastlyVBNV-?JJMbVBD9vҿ i+2 word langWDTB`"ٿWPB`"?i-2 word predictablyNNS?VBZ i suffix 2ndNNPA`"?JJ +?CDˡEi-1 tag+i word CC fillVBV-?VBPV-i+1 word propagandaJJ1Zd?NNP1Zdi-1 tag+i word VBN soVBNRB~jt?INxi-1 tag+i word NN salesmanNNCl?NNPCli-1 tag+i word NNP gibbonsNNPS9vNNP9v?i-1 word kleinVBZ9v?NNP9v i word weekMDQNNL7A`?JJʡEi word systemwideRB/$NNP/$?i-1 word abortionsRBnINn?i-1 suffix rbyVBZGzֿNNS1ZdۿPOSGz?NN1Zd?i-1 word functionedUHV-?NN-޿NNP~jti-1 tag+i word IN cdsNNSRQ@NNףp= NNPQ i word beechNNPuV?NNuVݿi+2 word designerJJ9v?NN9v i suffix rs.NNSHzG@NNPxNNPSˡE @NN9v?JJSxJJ/$ i suffix AMsNNPSZd;?NNSM@NNL7A`NNPMbi+1 word purchasesVBGK7?NNףp= ?VBDbX9VBNMbRBRL7A`JJDlJJRL7A`?i+2 word orientalNN&1?JJ&1ҿ i word spinalNNx&?JJx&i-1 tag+i word VBP muslimsNNPS&1?NNS~jtNNPMbXi-1 tag+i word -START- jailedVBQVBNQ@RB%CIN7A`i-1 tag+i word NN ozoneNNzG?INzGi+2 word ebullientJJ5^I ?RB5^I ӿi+1 word learnedNNˡE?JJClRBd;O?i-1 word heiwaNNףp= NNPףp= ?i tag+i-2 tag ( NN VBx&1VBDMb?VBN~jt?PRP%C?JJJ +?VBGJ +NN/$NNS5^I NNP7A`?i-2 word resultedVBGX9vNNCl?JJn?i-2 word landownersJJ"~NN"~? i-2 word bellJJV-ǿVBDV-?i-1 tag+i word NNPS feelVB}?5^I?VBP}?5^I i+1 word byNNPSZd;JJRDl?JJ;OnWPMVBZnDTMbCDv/?NNPnRBR7A`IN-?VBGB`"VBDlVBP+NNx&1 @RB-?JJSClWDTx&RPS@VBB`"?RBSV-?VBN!rh@FW9vNNS㥛 @i word bundesbankNNPS$CNNP$C? i suffix .m.NNS333333JJQNNm?INGzRB(\@i+2 word magicJJ +?NNʡERBX9vi-1 tag+i word TO widespreadVB/$JJ/$?i+2 word status NNP\(\?RP+NN7A`VBNnJJRMJJDlVBZ9v?VBDGz@JJSףp= @i-1 tag+i word JJ culpritsNNS9v?NN9v i-2 word proFWx&NNSClNN r@NNP#~ji+1 word intuitiveRBR%C?JJR%Ci-1 tag+i word VBZ hispanicsNNPS&1?NNP&1i-1 tag+i word VB identifiedVBN+?JJ+i tag+i-2 tag . CDVBq= ףp@NNPq= ףpi+2 word deliveryVBD|?5^ѿVBN|?5^?VBGMbX9?JJd;ONN!rhi-1 tag+i word -START- istatNNS/$ٿNNsh|?NNPw/?i-2 word discoverNN`"?RBtVJJq= ףp?i+2 word official VBGS?RBx&1NN(\RP1Zd?JJ/$VBZq= ףpVBD333333?VBNSVBP(\INHzG?NNP/$ @ i+2 word lessPOS1ZdIN~jtVBG%C?NNV-VBN/$ݿVBZbX9?RBV-RBRFx?JJRMb?VBMbRP+?VBDL7A`@VBPK7ٿJJ#~jܿNNSZd;Oi-1 tag+i word VBZ concentratedVBNCl?JJCl i-2 word sure CDq= ףpPRPd;OJJMbX?VBZ&1?NNS~jtVBd;OοRBJ +NNM?POS(\?i+1 word attachedVBZffffff?NNSL7A`?NNPS i pref1 3 VBףp= CD'1Z@LSsh|?@INlNNS|?5^?NNP= ףp=NNPSI +JJ'1Z?NN$C VBDX9vRBQ?i+1 word partialRB"~j?VBP rh@JJy&1i+1 suffix atoVBD$C?NNP-?INsh|??VBN$CӿJJp= ףi-2 word skilledVBZ-JJK@VBPV-ݿNN5^I RB9vi-1 tag+i word NNP constituteVB)\(VBP"~j?VBD-i-1 word trialVBNX9vVBZV-NNSV-?NNPX9v?NNPSX9v޿VBG/$?NN/$VBDX9v?i+2 word largeRBQVBZ;On?NNPh|?5JJA`"NNZd;?VBN ףp= @INbX9?DTX9v?VBGV-?WDT!rhRPMb?VBjtNNS5^I PDTjt?CDV-i-1 tag+i word MD usedVBx&1VBNx&1?i-1 tag+i word IN solidlyRBp= ף?JJp= ףi word gardeningVBGQ NNQ @i-1 tag+i word DT gossipyJJCl?NNCli+2 word seatingJJ'1ZNN'1Z?i+1 word facilitiesNN+ @JJRQ?VBN^I +?JJ rhVBd;O޿VBG?i word approximateVB&1JJ(\@NNmi-1 tag+i word , nearRBRClJJS㥛@IN rhi-1 tag+i word VBD gardensNNPSClNNSS㥛?PRP333333i+1 suffix rshRBL7A`RBRX9v?JJV-ݿINX9v?DTX9vi-1 tag+i word IN veteransNNPx&?NNPSV-NNST㥛 i-1 tag+i word NNPS attendantNN{Gz?JJ{Gzi-1 tag+i word NNP yogiNNPV-?NNV-i-1 tag+i word VBG shreddedJJOn?VBDOni-1 tag+i word DT milanJJ-NNP-?i-1 tag+i word IN careNNm@JJ9vNNP-NNS\(\i+1 word concreteNNSp= ףNN ףp= VBD= ףp=?VBN= ףp=JJ ףp= ?VBZp= ף?i+2 word dismissedNN}?5^I@JJ}?5^Ii-1 word partnershipsVBK7ٿVBPK7?WDTCl?INCli word fragmentedVBN/$JJ/$?i-1 tag+i word NNP canceledVBN/$޿VBD/$?i-1 tag+i word TO insiderNNS?VBSi word sterlingVBGZd{#NN)\(@JJRQ @NNP;On?i-1 tag+i word IN betterJJR'1Z @NN(\RBRli word fivefoldRBDl?NN}?5^IVBNOni word ceramicNNX9vNNS~jtӿJJ#~j?i-2 word confidenceRBRK7?JJRK7 i word gulfNNSbX9NNbX9?i+2 word weighedNNPS333333NNP333333?i-1 tag+i word -START- proFWl?NNPli-1 tag+i word NN aboutRBm?INuV@NNPSRPGzJJV-NNMbi-1 tag+i word NN conduitsNNSV-?NNPV-i-1 tag+i word VB earningNNv/?JJoʡVBG#~ji-1 suffix audVBZK?NNPSK i word shrankVBPK7AJJEVBDy&1?i-1 tag+i word PRP useVBVBPMbX9?JJS?5^I ڿNNK7A?i word refereesVBZV-NNSV-?i-2 word ruffoINL7A`?DTL7A`i+1 word tumorVBP= ףp=JJ= ףp=?NN= ףp=i+1 word titaniumNNMNNPM?i word landmarkJJX9vNNPNbX9?NNrh|?JJR/$i-2 word flapsNNSQ?NNQ i suffix PSNNS rhNN~jtJJ"~NNPsh|??i-1 tag+i word JJ nearJJlINl?i+1 word dividendCDGzRBFxJJRGz?JJ$C?NNFxVBNd;O?i+1 word record VBK7ɿVBG\(\JJCl˿NNSoʡNNPS㥛RBK7?NNMb@INQ?DTzG?i-1 tag+i word VB difficultyVBNV-NNV-?i word decidedVBP/$VBNʡE RBd;OVBDsh|?@i-1 word unfairlyVBZS㥛?JJS㥛i-1 word staffersVBNV-ǿVBDV-?i-1 tag+i word IN hostileJJw/?NNw/i word performedVBP rhVBN+?JJKVBD rh?i+1 word givenVBPx&1WDTp= ףJJSINp= ף?VBx&1@NN/$?VBNni word strickenJJsh|??NNsh|?i-1 tag+i word NNP groundNNPv?NNx&ٿVBDoʡi-2 word featuresNNS?VBNNNnٿJJn?i-1 tag+i word NNP despairsNNV-VBZB`"?VBP-i-1 tag+i word NN incentivesVBZ/$NNS/$?i+1 word serious RBS ףp= ?VBN ףp= ?JJʡEVB%CVBGʡE?NN;OnVBD ףp= JJS ףp= ǿRBR ףp= ?JJR ףp= VBPQ?i-1 tag+i word NN altogetherRBPn?NNClRBRQi-1 tag+i word NNP deckedVBN9v@VBD9vi-1 tag+i word `` mitigatingVBG$C˿JJy&1?NNB`"i-1 word contextVB|?5^VBPxVBNRQ?i+1 word clientJJq= ףp?NNPq= ףpi-1 tag+i word VBN outsiderNNL7A`?RBL7A`i word doctrinesNN\(\߿NNS\(\?i-1 tag+i word JJ earthmovingNN= ףp=VBGbX9JJPn?i-2 word filipinoVBPFx?JJMb?VBFxVBG{GzRBMbNN{Gz?i-1 suffix sciNNjt NNPjt @i word invitesVBZCl?NNSCli+2 word place VBDRBRS?INNbX9?VBOnJJVBN?VBPOn?WDToʡ@RB$CDTSNNSS?i-1 tag+i word MD fixedVB|?5^VBN|?5^?i-1 word steadyRB%C?VBN%CNN+?JJ+i-1 word permissionRBuV?JJuVi-1 word prospectusVBZGz?NNSGzi word demeaningJJV-@NNClVBGZd;O׿i-2 word ivoryVBZbX9NNbX9? i word gorkyNNPSZd;ONNPZd;O?i-1 word affordDTd;O?PDTZd;׿JJ/$ӿINCli-1 tag+i word NNS contributedVBN&1VBD&1?i word memorandaNN|?5^NNSq= ףp?UHbX9ֿi-1 tag+i word RB relyVB~jt?RB~jti+1 word obligationDT(\?JJ&1?NN&1IN(\i+1 word radiationVBDbX9NNPMbRPClٿNN~jt @JJ5^I i-1 tag+i word JJ scenesVBZ;OnҿNNS;On?i-2 word boatloadNNDlJJ$C˿FWOn?i word effortsNNSp= ף?NNPp= ףi-1 tag+i word JJ acquirerNNSMNNM? i word poisedVBNp= ף?JJbX9VBD"~i+1 suffix silVBGA`"ۿJJZd;O?NNK7i word overridingVBGrh|?JJS?NNK7i+1 word federicoNN+?NNPS+i-1 word adverseNNl@JJli-1 tag+i word VB transportsVBZsh|??NNSsh|?ݿi-1 tag+i word CC soybeanNNJ +?JJJ +i-1 word miserNNX9v?JJX9vi-2 word formsNNS㥛?VBDVBNV-VBPʡEJJV-?NNSS㥛VB-?i-1 tag+i word , throwJJA`"VBZd;VBP333333?i-1 tag+i word TO doVBCl?NNCli word electronicallyVBZ#~jRB#~j?i-2 word shouldNNPsh|??VBGz?NNQ?VBPjtDT;OnJJKVBDX9v?JJR)\(?VBNnINQ?VBGʡE?NNSˡE?RP @RBR|?5^WDTSRB)\(i-1 word besidesVBGQNN^I +?FW#~jJJRh|?5JJMbX?NNPd;O?i+2 word illegalNNSV-?NNx&1VBDFx?VBNFxVBPMbJJx&1?VBZDl i+1 word bareVBZw/?NNSw/i-1 tag+i word -START- stevenRBMbX9NNPMbX9?i-2 word studyingNNx&1ԿJJx&1?i-2 word cappedJJZd;?NNZd;i-1 word remarksIN9v@DTClWDTK7i-1 tag+i word NNP noDTMbRBPn?NNMbpi+1 word winterJJQ?NNnJJR+?VBP#~jRBB`"۹NNPd;O?i-1 tag+i word DT restrictedVBN!rh?JJ!rhi-1 word tennecoNNSNNPS?i+1 word defeatVBN|?5^VBD|?5^?i+2 word jalapenoNNNbX9?JJNbX9i-1 tag+i word IN tighterNNMRB㥛 JJOnJJR\(\ @i word kinfolkNNSZd;?JJNN~jtؿVBDB`"i word pechineyNN㥛 ҿNNP㥛 ? i+1 word } NN= ףp=@NNSq= ףp?VBDl?VBDy&1?JJRlVBN-ƿPRPSRB333333ÿINL7A`?VBZJ +JJsh|?ſNNP= ףp=DTV-i-1 tag+i word DT bearingVBGSNNS?i-2 word nuisanceVBT㥛 ?VBNClJJٿi-1 tag+i word NN diseasesVBZzGҿNNSzG?i-1 tag+i word NN advisersVBZA`"NNSSNNPQ?i-1 word libyansVBGvJJv? i word seizedVBNx&JJ rhVBD\(\?!i-1 tag+i word -START- annualizedDTʡEVBNMbX@JJOn?NNPJ +i+2 word withdrawnNNSS?RBS i word tubesNNSoʡ?NNoʡ i-2 word okVB9v?JJrh|VBD(\i-1 tag+i word WRB !HYPHENNNPS;On?NNS5^I NN +?JJQi-1 tag+i word DT solvencyJJx&NNx&?i-1 word dorfmanVBZ~jt?NNS~jti-1 tag+i word POS tangibleJJEԸ?NNEԸi+2 word civilNNZd;VBD= ףp= VBN= ףp= @JJףp= ?VBG-NNS1ZdVB-?WRB1Zd?i-1 tag+i word VBN badlyVBN|?5^ٿRB|?5^? i+2 word a.g.VBGV-@NNV-i-1 tag+i word NN approveVB)\(?VBPMbXNN5^I i-2 word smokeVB^I +NNA`"?JJv i word storesVBZx&1NNPSDl @NNS\(\׿NNPHzGi+1 word improvementNNm@VBG-?VBN+JJnѿNNP%Ci-1 word everydayNNuV?VBGuVJJtV?RBtVֿ i word hugsNNSNNSS?i-1 tag+i word NNS leanedVBN rhVBD rh?i tag+i-2 tag `` PRP$ VB/$?WRBQJJ-?VBDX9vRBFxNNP}?5^I@NNjtVBNGz?RBRףp= ?JJRףp= NNSni-1 tag+i word RB wonderVBP+?NNZd;O߿JJK7WPA`"VB= ףp=?i-1 tag+i word IN monitoringVBGS㥫?NNS㥫i-1 tag+i word NNP spielvogelNNP\(\?CD\(\i-1 tag+i word `` crimeNNS+NN^I +?NNP|?5^i-1 tag+i word RB awareRB9vNNV-VBNy&1JJoʡ@VB?5^I i-2 word compactVB +NNDl?JJMbX9 i suffix iceRB9v@NNy&1@PDT`"VBuVINK7ACDffffffNNPS㥛@NNPS(\VBD!rh JJR;OnVBZMbMD= ףp=VBP`"JJ-?NNSMb?VBN1Zdi-2 word newspapersVBZ(\?VBL7A`VBPL7A`?NNS(\i-2 word stabilizeJJMb?NNPMbi-1 tag+i word MD goreVBM?RBM i suffix FULJJ}?5^I@NNP}?5^I i word exportVB&1ڿVBGjt޿NN/$ @JJ rhi+1 word strategyINClDTCl?VBGS㥫RBQNNsh|??WP{GzWDT{Gz?JJffffff?i-1 tag+i word IN riceVBQNNX9v?JJV-i+2 word respectableVBDMVBNM?i-1 word maintainDTK7A`JJtVNNS㥛?WDTGzRBɿIN@ i word m&aNNPK7A`WPS㥛NNJ +? i-2 word navyNNh|?5?RBV-NNP{Gzܿi+2 word goalsRBRףp= ?JJRףp= i word accumulatingIN5^I VBG5^I ?i-1 tag+i word EX onlyRB1Zd?JJ1Zdۿi word mercuryNNSGzNNbX9ֿJJ}?5^INNPq= ףp@i-1 tag+i word VB concernsVB/$NNS/$?i-2 word referencesNNP~jt?VB rhVBN\(\? i+2 word saveVBN;OnIN;On? i-1 word maleNNPx&1?NNPSx&1RPV-JJ+?NN?5^I RB rhNNSV-?i-1 tag+i word DT magnitudeNNPSK7ANNSDlNN(\?i-1 tag+i word DT overallNNS\(\JJ +@NNjti-1 tag+i word TO addVB~jt?RB~jti-1 tag+i word CC injuringJJ`"VBG`"?i-1 tag+i word JJ recommendsVBZNbX9?NNSNbX9 i word eagerVBP(\RBMbVBZq= ףpJJo!#@NN ףp= VBNEJJRZd; i-2 word hunVBMbX?RBRSNN\(\i-1 word !DIGITSVBGFx?WDTlJJ rh?NN5^I ?``RBSK7?RBRrh|JJRrh|VB;OnVBZOnPOSS㥛?NNPbX9CDK7A?NNPSE?PRP$7A`VBN9v?DT+߿RP1ZdNNSM?CCV-?VBD?VBPS㥛RBGz?INy&1i+1 word bureaucratJJX9v?NNX9vi-1 tag+i word NN ownedVBZQVBN1Zd?VBDMbX9?i-2 word repertoireVBZ+?NNS+i-1 tag+i word JJ closeRBNbX9@NNNbX9 i word hondaJJ~jtPRPlNNCl?NNP}?5^IԿi-1 word discriminatoryVBNrh|NNrh|?i-1 tag+i word NN topVBZ rhNNx?JJ}?5^Ii+2 word exteriorDT|?5^IN|?5^?i-1 tag+i word DT sketchyJJ+?NN+i+1 word stumbleNNPSףp= ?NNPףp= i+2 word reginaldNNbX9?JJ/$RB(\i+1 word administrationVBV-ݿNNPS(\?VBGtVNN#~jJJV-?NNPZd;@ i-2 word newWDTOnӿRB{GzINECDuV?VBGMbX9NNX9v?NNSK7?FWSDTZd;VBZ!rh@NNP#~jVBMbVBD㥛 VBNHzG @PRPuVVBPx?JJRS?NNPS rh JJ{Gz@RBR#~jPOSZd;?i-1 tag+i word VBN gomezNN+NNP+?i-1 tag+i word VBD contributedVBNX9vVBDX9v?i-1 tag+i word IN technologicalJJRK7AJJK7A?i-1 tag+i word `` solvesVBZtV?NNStVi-1 tag+i word TO strikeVBK?NNKi word dictateVBS㥛ĿVBP?JJbX9NN$Ci+2 word tennecoCC/$RB/$?i-1 tag+i word PRP supportVBPCl?VBDCl i-2 word pcJJ+ӿNN+?VBDˡEVBP;OnRB^I +?IN+߿VBZˡE?i-1 tag+i word -START- nekoosaNNL7A`NNP= ףp=@NNS^I +i-1 tag+i word -START- pollsNNSMb?NNPMbi-1 tag+i word VBN regardlessRB/$?NN/$i word nonexistentJJ +?NN/$ۿDTCli-1 tag+i word IN milwaukeeNN +޿NNP +?i word exaggeratedNNPS+VBN/$ JJX9v@ i-1 tag+i word PRP$ inexperienceNN(\?JJ(\i-1 tag+i word NNS wonderVBMbX?VBP`"?RBrh|VBD)\(i+2 word cutbacksNNPSp= ףNNPJ +?VBZ(\ i+1 word wifeJJGz?NNGzi-1 tag+i word WP practicedVBPQVBDQ?i word mooniesNNPSl?NNSlҿi+2 word lunchVBG{GzNN{Gz?i-1 tag+i word -START- xLS'1Z?SYMʡEVBCl׿i-1 tag+i word TO investingVBG|?5^NN|?5^?i word childhoodNN!rh?JJ!rh̿i-1 tag+i word JJ friendsNNS+?NN+i-1 tag+i word JJ patriarchyNNSB`"NNB`"?i word negotiatingJJ(\NNx&1?VBG/$?i+1 word commuterVBGMbX?JJMbXi+2 word edwardJJ?5^I NNP?5^I ?i-1 tag+i word NN groundsVBZ"~jNNPSRQ?NNS~jth?i-1 tag+i word DT respectedVBNS?JJSi+1 word considersNNx&ѿRBx&?i word unfoldsVBZoʡ?NNSKJJ+i-2 word treadJJS?RBSۿ i suffix rawVBZ rпNNS'1ZܿVBl?NNEVBD-VBPJ +ɿJJCl @i-2 word engineeredNNSV-?JJV-i+2 word jeopardizeNN;OnCD;On?i word methodsNNSffffff?JJffffff i word fiestaVBD+NNP+?i-1 suffix yerRBRMbNNtVֿJJR/$?CCQRBtV?i-1 tag+i word VBZ regularlyNNSGzRBGz?i-1 tag+i word JJR gauloisesNNPSCl?NNSCli-1 tag+i word CC latinJJx&1?NNPx&1i-2 word talkingVBGh|?5?RBOnNN-@JJvINOn?VBZx&1NNSx&1?NNP;On i suffix cueVBSNNMb@JJK7Ai word marylandNNPʡE?JJʡEi-1 tag+i word CC householdNNzG?VBNx&1JJ~jtۿi-1 word callingRB/$ƿIN333333?RP/$?JJ333333i-1 word trendyJJ r?NNP r i+1 word hughNNP rh?NN rhѿ i word ridleyNNSZd;NNPZd;?i-1 tag+i word TO breakVBV-?NNV-i+1 word treasuryNNP|?5^@RPˡENNK7AVBDCl?VBNClJJ{GzINˡE?i+1 word trackWDTjtĿRBINjt?VBGʡE?JJ rh?NNy&1|i word bequeathedVBDV-?VBNV-i-1 tag+i word IN distractedVBN㥛 VBD㥛 ?i word enthusiastsVBZ+NNS+?i-1 tag+i word DT petiteJJ'1Z?NN'1Zi-1 tag+i word WRB shouldMDV-?VBPV-Ϳi-1 tag+i word VBN shakenJJVBN?i-1 tag+i word RB informedVBDxVBN r?JJCli-1 tag+i word DT mightyJJuV?RB"~ڿNNGz׿ i word postedNNP= ףp=VBNX9v?JJDlVBD`"@i-1 tag+i word NN faredVBNMbVBDMb?i+2 word teachingVBGQNNQ?i-1 tag+i word `` homeroomNN{GzNNP{Gz?i-1 tag+i word TO stockpileVB?NNi+1 word ventilationNNtV?JJtVi-1 tag+i word NNP takeVB~jt?VBP~jti+1 word services VBn@RBZd;VBP?5^I DTQNNSI +?NNPV-@NNPSE?VBGSJJX9vNN^I +@i-1 tag+i word JJ extremeNNjt?NNPjt i-2 word noneNN%C?JJ%C i word donsVBZ}?5^I?NNS}?5^Ii+2 word visibilityNNPS1ZdRB1Zd?i-2 word promotersNNSCl?NNCl i-2 word drop NNPZd;O?VBS㥛VBGV-?NN +ֿVBNףp= JJRDlRBE?JJsh|??DT(\ڿ i word luredVBN9v?JJ9vڿi+1 word bulletinNNK?JJKi+1 word businessVBDClIN%CRBRVBNQNNP{GzVBGT㥛 ?JJZd;WDT/$PRPʡERBnJJR~jtPRP$ʡE?VBHzGRBSNbX9VBPn@DTMbX?NNSʡE?NNS@JJS^I +?i-1 tag+i word NN emergedVBNjtNN= ףp=VBD&1?i-1 tag+i word JJ roastNN!rh?RB!rh i-2 word visJJʡENNGzֿFW-?i-1 tag+i word NN supplyNN+?RB+i-1 tag+i word -START- fNNB`"SYM~jt?LS(\?RBx&1i-1 tag+i word NNP bostianJJ rhNNP rh?i-1 word blacksVBDlVBPDl?VBNT㥛 VBDT㥛 ?i+1 word etudesJJ+NNP+?i-1 tag+i word CC expiresVBZv?NNSvi+1 word forayNNjtJJjt?i-1 tag+i word JJ suburbsNNSm?VBNK7ѿNNQi-1 tag+i word DT underutilizedVBNffffff?JJffffffi-1 tag+i word TO screeningsVBQۿNNSQ?i+1 word colonialPOS/$?VBZ/$ٿi-1 tag+i word DT harvestJJSbX9NNbX9?i word securitiesNNNNP5^I ?CDNNPS(\@NNSZd;O i word wheatNN^I +?WRBS㥛UHh|?5JJ"~NNPv/?i-1 tag+i word DT discountedVBN rhJJ rh?i-1 tag+i word PRP issuedVBZ(\VBD(\?i-1 tag+i word NNP diesVBZ}?5^I?NNP}?5^I i-1 tag WDTDTrh|?NNS ףp= ߿CDvEXT㥛 ?INQWDT+VBZbX9ƿWP'1Z?POSMbX?RB+?NNPV-?VBK7APDT(\?VBNrh|VBPv@RP`"޿NN~jtNNPS1ZdVBDPn?JJ|?5^ٿRBSbX9MD ףp= ?JJSMbX?JJRL7A`尿PRPX9vοCC/$?i-1 tag+i word PRP$ stripNNCl?JJCl߿i+1 word declaredVBZOnNNSOn?i-1 tag+i word IN citizensNN(\пNNS(\?i+1 word important RBRZd;O@WDTHzGVBNX9v?INGz׿RBS(\@VBDX9vJJSCl JJRZd;ORBA`"?NNV-i-2 word significantlyRB"~j?NN"~j i suffix lan VBP1Zd@RB\(\NNPw/NNPSPnJJ?5^I ?NNZd;O@VBDSVB?5^I ?VBZClNNSoʡi-1 tag+i word NNP tracersNNPS/$NNP/$?i-1 tag+i word VBN downRBK?RP5^I ?VBN/$JJ+ӿINq= ףp?i+1 word provideWDTV-?VBNy&1?JJy&1INV-i word instigatedVBNClVBDCl?i-1 tag+i word `` achievedVBNQVBDQ? i-1 word pereNNPSnNNPn?i+1 word applyRBrh|?JJRrh|i+2 word genevaNNjtNNPjt?i-1 tag+i word PRP oweVBZx&1VB rhVBP+@VBDDli-1 tag+i word JJ unlovelyJJ"~j?RB"~ji-1 tag+i word , characterizedVBD^I +?VBZ^I + i word fliesVBZ"~?VBP-NNSK7i+1 word outdatedRB~jtIN~jt?i-1 tag+i word POS unendingJJ rh?NN rhi-1 tag+i word NNS rimaVBPKNNPK?i-1 tag+i word DT scabsNNS'1Z?NN'1Zܿi-1 tag+i word DT setbackNN7A`?JJ7A`i-1 tag+i word -START- hughNNPZd;?INZd;߿i-1 tag+i word RP contractedVBNV-?JJV- i suffix wryRBQ?NNPS~jtNNjtJJFxѿi+1 word fischerJJ\(\NNP\(\?i-1 tag+i word VB bureaucracyNNx&?NNSx& i+1 word peruJJh|?5INh|?5?i+2 word falconRBClNNPCl? i-2 word gulfNNPK7A?NNPSK7Aؿi-1 tag+i word NNS tileNN~jt?IN~jtӿi+2 word floydDTd;O?RBd;O i word esteeDTx&JJK7A`NNNNP/$@i-1 tag+i word , szetoNNPS̿NNrh|NNPMbX?i-1 tag+i word CC jazzVB+NNv?RB= ףp=i-1 tag+i word JJ consistentNNPnJJPn?i-1 word timberlandJJGzINGz?i+2 word barberVBZZd;VBNFxVBDy&1? i word made RBClVBZNbX9NNSw/NNP{Gz?VBʡENNףp= WVBDS"@JJh|?5 VBNv(@VBPi word excellentVBKRB/$NNK7A`JJ?5^I @i-1 tag+i word NN aloneNN%CVBPClRBK7A@ i word porousJJ+?NN+i+1 word licensesNNP|?5^?NN|?5^ڿi-1 tag+i word VBZ togetherRBS㥛?RPsh|?տJJR(\i-1 tag+i word VBZ forwardVBN-RB-? i word readsVBZ}?5^I?NNS}?5^Ii-1 suffix reyJJ/$@VBNNZd;RBPn?i-1 tag+i word CC joinedVBN?5^I VBD?5^I ?i+1 word guidesNNPzG?NNPSzGi-1 tag+i word VBP livelyJJ ףp= ?RB ףp= i-1 word lobbyNN$C?RB~jtJJOni+2 word stonesNN5^I JJ5^I ? i suffix selNNGz?JJMbпCDT㥛 ؿNNPS㥛?NNSCli-1 tag+i word VBN weekdaysNNSZd;?RBZd;Ͽi-1 tag+i word CC threwNN1ZdVBD1Zd?i-1 word outragedRB1ZdIN1Zd?i-1 tag+i word , zbbNNy&1NNPy&1?i word hardenedVBN/$?VBD/$i-1 tag+i word RB defendVBDlVBP^I +?NN(\ i suffix vcoRBv/VBN\(\ϿNNjtNNPMb@i+2 word warningsVBN{GzVBD{Gz?i+2 word favoriteVB+?JJ+i-1 tag+i word JJ applesVBZp= ףNNSp= ף?i-1 tag+i word '' operatingVBGQNNQ?i-1 tag+i word CC oursVBZxNNSX9vοPRP$C? i word conveyVBFx?NNFxi-1 tag+i word WDT lostVBDn?VBPni-1 word attributeJJV-?RBV-i-1 word offensiveNN-?JJ- i+1 word boydJJ-NNP-? i+2 word balkRB+@NNK7A?JJx&1i word stratosphericJJzG?NNzG i suffix oliNNbX9NNSbX9?i-1 word mortgagesVBV-VBNV-?i-1 tag+i word WRB oneCD+PRP`"NN1Zd?i-1 tag+i word TO nonunionJJjt?NNjti-1 tag+i word NNP cuomoNNPn?NNni+1 word confusionVBNE?JJx&1?NNS㥛i+1 word surroundingNN;On?JJ;Oni-1 tag+i word VBG speedNNSoʡNNoʡ?i-1 word program IN333333NNSS?VBvNNQ?VBD~jtпVBN/$@WDTK?JJMbNNPEVBGMb i-1 tag+i word NNS spokeVBD"~?JJ"~i-2 word drivingJJSNNPzGNNzG?VBNS?i-1 tag+i word IN aichiNNSQ?NNPQi-1 tag+i word PRP stemVBffffff?VBPffffff i-1 word debNNPS(\@NNP(\i-1 word imminentNN= ףp=?VBG= ףp=i-1 tag+i word CD rewardNN/$?JJ/$ۿi+1 word chevroletVBZjt?NNPjt i word imeldaCCx&NNPx&?i-2 word monetaristVBDT㥛 VBNT㥛 ?i-2 word crossroadsDT rhIN rh? i word namNN^I +JJ"~NNP +?i word manhoodNNS?RBSi-1 tag+i word , lookVBPx?JJ ףp= RBffffff޿VBS?i-1 tag+i word CC iraNNPS/$NNP/$?i+2 word citizenVBZ"~VBI +ƿVBPMb?i-1 tag+i word WRB toldVBDClVBNCl?i-1 tag+i word -START- bondJJDl NNPEINA`"NN@i-1 tag+i word VBD triumphedVBN7A`VBD7A`?i-1 tag+i word NN favoriteNN/$?VBD/$i-2 word switchedNN{Gz?JJ{Gz i+1 word lotsJJE?NNEؿi-1 word deterringCC/$JJ/$?i-1 word coffeeVBZ"~jNN"~j?i-2 word numericallyVBGʡE?NNʡEi-2 word gnawingNNT㥛 JJT㥛 ?i-1 word loansVBNV-?NNRQRB333333?VBV-VBPʡE?i+2 word floridaVBNDl?JJ rhNNPV-?NNPSV-NN rh?VBDDli-1 tag+i word NN strangeVBV-VBPʡE޿JJ1Zd?i+2 word gamblingJJRQNNSGzNN?VBDbX9VBNʡE@VBPPni-1 tag+i word VBZ sortVBP'1ZNNS?RB`"οIN(\i-1 tag+i word DT buckledVBNʡEͿJJʡE?i word confiscationVBN!rhNN!rh?i-1 tag+i word NNP bailoutINʡENNʡE?i-1 word proposal NNZd;VBDS㥛RBR`"οVBNMbX?WDT-JJS㥛?INE?RB~jt?NNS rhVBZp= ף?#i-1 tag+i word -START- increasinglyRB(\?NNP(\ҿi-1 suffix iedRBv/VBGMbX9?NNPSjt?NNףp= ?PRPV-ڿRP^I +IN&1@DTjt?PRP$V-?JJx?PDTx&RBR/$NNSV-¿NNPQ˿i-1 tag+i word NN scantJJffffff?VBDffffffi-1 tag+i word VBP tearVB9v?RB9vi tag+i-2 tag TO :VB{GzRBn?JJ$C˿i-1 suffix oys '' rhRP ףp= ߿NN&1ڿVBD ףp= POS rh?RBT㥛 ?VBNʡEJJʡE@IN;On¿i-2 word catholicsVBN+?RBˡENNP$CVBD+NNPS/$?i+1 word willisNNx&ѿNNPx&?i tag+i-2 tag VBZ PRPRBSClۿRBRsh|?EXRQVBGOnVBD\(\?WP9vRPQCCI +?JJR;On?VBPoʡNNP/$PDTx&?RBh|?5?VBuVJJS/$PRP$9vWDT#~jԿVBZ\(\NNv?PRPJ +?UHq= ףpͿVBN9v?JJ rh?DTS㥛?NNS/$?INV-?i word belgiumNNPx&1?NN}?5^IܿFWQi-1 tag+i word VBZ slowingVBGtV?JJtVi-1 word senseINA`"?NNSh|?5NNPA`"VBZh|?5?i+1 word presidentsWDTv/ͿINv/?i-1 word larryNNSGzNNPGz?i-1 tag+i word TO holderVB#~jNN#~j?i word transatlanticNNZd;O?JJZd;Oi-1 tag+i word CC stayedVBNxVBDx?i-1 tag+i word RB upheldVBZMVBP9vVBDX9v?i-2 word geeksVBQVBPQ?i+1 suffix amiJJlNNZd;NNPHzG@i-1 word volatilityNN7A`VBDL7A`?VBNnWDTq= ףp?JJ&1?INq= ףpVBZ ףp= @NNS i suffix D&BNNQ?NNPQi+1 word lawrenceNNCl?INCli+1 word publiclyVBNQJJVBDQ?NN?i-1 tag+i word DT contestantsNNSZd;?NNZd;i+2 word claiborneNNPSOn?NNPOni-1 tag+i word NNS increasesVBZV-?NNSV- i word gloatsVBZq= ףp?VBDq= ףpͿi-2 word alloyNN|?5^NNS|?5^?i-1 tag+i word TO trustsVBGzNNSGz?i+1 word urgedVBP/$?JJPnNNSffffff@NNPffffffVB/$RBB`"?VBN/$i-1 tag+i word VB minorNNS/$ٿJJn?NN{Gzܿi-1 tag+i word IN guaranteeVBPRQ?JJRQi+1 word nationalistsJJd;O?NNPd;Oi-1 word southNNPSS @NN\(\JJQ?VBZ(\NNSʡEտNNPZd;Oi-2 word commitmentVBMbVBG&1?NNMb?VBDx&1?VBNx&1JJ&1i-1 tag+i word JJ scenariosNNSK7?NNK7i+1 word conversationVBN!rh?JJ!rhi-1 tag+i word , rulingVBG~jt?NN~jti-2 word decreaseNNʡEӿJJZd;ONNP?i-1 tag+i word : resultsNNS^I +?NNP^I +i-1 suffix oddNNPS/$?RB~jt?JJ~jtNNP/$i-1 tag+i word CC disagreedVBNSNNHzGVBDCl@i-1 tag+i word DT securitiesNNPS`"@NNS(\NNNNPi+2 word validityVBP7A`PDTT㥛 ؿNNzG?i word regroupVB(\?VBPx&1?NNSKNN rhi+2 word torontoVBNx&?CC~jtNN-޿RB/$?JJK7Ai-1 tag+i word VBN offeredRPOnVBNOn?i word exorbitantNNffffffJJffffff?i-1 tag+i word VB liesVBZCl?NNSCl i+1 word ltd.VBZ|?5^NNS7A`ҿNNPQ?NNPSV-@NNJ +LSQi-1 tag+i word RB attachedVBNy&1?VBDy&1i-1 tag+i word NN experienceVB\(\NN\(\? i word gemNNSK7ANN&1@JJGzi-1 tag+i word VBP lentVBNE?JJEпi-1 suffix lixNNPSMbXNNPMbX?i-1 tag+i word JJ looselyRBCl?NNCli-1 tag+i word VB sciencesNNPSV-?NNPV-i+2 word jonesVBN;On¿VBD;On?i word salarymenNNS;On?NN;Oni+2 word publicNNPS&1?VBNV-ڿVBZ`"ֿVBGV-?VBD1ZdDT|?5^NNSDlRB$C?NNK7AVBPʡEUH rhJJffffff?NNPQVB'1Z?WDT|?5^?INd;O?i-1 tag+i word JJR slippedVBNlVBDl? i word meetVBRQ@NNP{GzNN7A`FWV-i-2 word disgustVBNMbVBDMb?i-1 suffix urn JJRzGNN(\VBDX9vVBNX9v?RB(\ݿVBGn?NNS)\(ԿNNPy&1VBOnRPʡEs@JJ rh?RBRzG?INffffffi-1 tag+i word NN exoneratedVBN +VBD +?i word unfriendlyJJGz @RBGz i suffix iveVBx&1?VBZ}?5^INNSMbVBNGz UH= ףp=INJ +NNPMbX9NNPSoʡRP/$VBD rhJJSZd;JJRGzJJV-'@NNOnÿCDMb@VBP|?5^@RBL7A`DTjtĿi+1 suffix .j.VBNVBD?VBZuV?NNPSuVi-1 tag+i word WP opposeVBPˡE?INVBDCli-1 word opposePDT1Zd?JJ1Zdi+1 word concentratedNNPSMbX9?NNSx&1NNP ri-2 word lookingVBG~jtJJp= ף?NNA`"PDTK7?RBDTK7NNP?i word arrivalNNS㥛?NNSS㥛i+2 word louisVBNClNNV-?NNPGz?JJE?NNPSGzi-1 tag+i word IN delaysNNSoʡ?NNoʡi-1 tag+i word IN pollenNNSZd;OVBGV-NNp= ף@i-1 tag+i word DT hammacksNNPSE@NNSx&1NNP rhi+1 word bloomNNP-?NN-i-2 word grand NNPSK7AINK7NNSDlNNPK7A?NNx&1̿VBDK?VBNʡE?WDTK7?JJx&1ܿVBZv?i-1 tag+i word JJ attacksNNS +?RB +i-1 word deaverNNGz?NNPGz i word bugVBZx&1NNx&1?i-1 tag+i word `` secretJJ(\?NNP(\i-1 tag+i word , mayorNNMbNNPMb?i word taintedVBN`"޿JJ`"?i-1 tag+i word VBD oversoldRBx&1VBNx&1?i-1 tag+i word VB hadVBN#~j?VBD#~j i suffix vocNNSZd;ONNZd;O?i-2 word producingNNSx&1NN ףp= ׿JJffffff?VBN= ףp=?i-1 tag+i word DT struggleNNL7A`?RBQJJCli+2 word trillionRBy&1INy&1? i word accedeVBffffff?RBffffffi+2 word respectNNPSMbNNPjtVBZ= ףp=? i word warNNP-?VBPClNNPSSi+1 suffix rvyVBP%C?NN%Ci-1 tag+i word -START- willWRBHzGIN!rhVBZ/$NNPK7MDh|?5 @VBy&1 i+2 word low VBDh|?5?CCp= ףJJRS㥛JJ!rhIN%C?NNS~jt?VBGNbX9?NN(\ VBPv/VBZA`"?RB7A`?VBNh|?5οi-1 tag+i word NN lieVBKNNCl?NNPZd;Oi-1 tag+i word VBD instrumentalJJ/$?NNp= ףVBN(\i-2 word handmaidNNPSB`"NNPB`"? i+2 word loanVBGtV?NN"~VBDMbVBN~jt?JJuVNNS9v?NNPMb?NNPSCl?i+2 word rentsVBZ$C?NNS$Cۿ i suffix offRBMbX9@JJRbX9RPfffff!@NNPSZd;OFW`"ֿIN7A`P@VBZ(\CDMbNNK7A@VBDKCClVBNQVBPy&1JJClNNSDl NNPZd;O?VBp= ףi+2 word abandonedWDT@RPGz?RBGzֿIN i-2 word most VBʡE?NNPS9vVBGQNN?5^I VBD{GzVBZʡEݿNNS#~j?NNPQRB ףp= ?VBN}?5^IԿVBP@JJ+?INV-i-1 tag+i word JJ highlightNNK?JJKi-2 word requestingNN ףp= ?NNP ףp= ׿i-1 word subcommitteeINʡEWDTʡE?i+1 word harsherRBjt?JJjti-1 tag+i word JJ sawNNS(\ؿNN(\?i-1 tag+i word VB laneRBNNP?i-2 word pilsonNNPClVBx&?NNPSCl?NNx&WDTClINsh|??DTd;Oi-1 tag+i word TO bustingVB㥛 VBG㥛 ?i-2 word crustVBZSVBoʡNNSffffff@VBDp= ףi-2 word suisseRBX9vJJMbпNNPsh|??i+1 word storageNNSA`"?JJV-¿NNVBP|?5^i-1 tag+i word IN marketingVBG5^I ?NN5^I i-2 word swoonDTw/CC{GzVBHzGPDTʡE? i word facedVBD(\?VBN/$@JJSۿINvNNS5^I NN= ףp=i tag+i-2 tag ( -START- VBh|?5?NNʡE?CDT㥛 JJ$CVBZffffffNNP?5^I NNPS7A`¿VBG(\?DTp= ף?NNS?i+2 word weakenedNNZd;?CDZd;i+2 word productsJJS%CVBNtV?VBP ףp= ?WDT&1NNS9v?JJGzNN/$RBtV?JJR)\(RPw/?RBS%C?VBMb?VBD%CRBRQ?INn?NNPK7A`?i-1 tag+i word NNP performancesNNPSZd;?NNSZd;i-1 tag+i word IN hawaiianNNP/$JJ/$?i-1 word unanimouslyVBNMbX9ܿVBDMbX9? i suffix ply RBMbX9@INnVBZ+NNE?VBP~jt?VBDxJJRףp= VBNZd;NNS}?5^IVB-@JJI + i suffix awnVBNbX9RBw/NN~jt @VBN~jt@RBR+JJK7A`NNSjti-1 suffix pesRBENNy&1VBDV-տVBNrh|?VBPʡEWDT{GzJJNbX9ȿINx&?i-1 tag+i word WDT freedVBPx&1VBDx&1?i word traditionalJJ}?5^I?NNP}?5^Ii-2 word aloneVBA`"VBGS?JJOn@NNClVBNCl?RBlINE?i+1 suffix m&aNNPK7?JJK7i-1 tag+i word JJ reformsNNS"~?NN"~i-1 tag+i word DT epoJJ#~jԿNNP#~j?i word bushelsNNS(\?NN(\ݿi word gossipyJJCl?NNCli-1 tag+i word IN eitherVBG(\JJx&NNMbX9CC'1Z?JJROnRBSۿDT~jt @i-1 tag+i word VBP impulsesVBZ(\NNS(\?i-1 suffix joyVBG^I +?NNSq= ףpPRPq= ףp?NN^I + i word direJJV- @NNHzGFW/$i-1 tag+i word VBG hostVBNx&1NNx&1?i+2 word agreedNNPSGzRBT㥛 ?VBP1ZdJJ~jt?NNSV-NNPh|?5? i word badlyRB!rh?NN+JJ?5^I ҿVBN|?5^ٿ i word glaxoNN7A`NNP7A`? i+1 suffix psVBGn?RB(\NNnIN(\?i-1 tag+i word -START- joeNNP ףp= ?NNS ףp= i-1 tag+i word -START- tennesseeRB+NNP+?i-1 tag+i word PRP sureRBx?NN ףp= JJbX9i+2 word beyondVBZd;NNK?VBPZd;?WDT-?JJKIN-i word fraughtVBN?5^I JJ?5^I @i-1 word swiftlyVBNʡEݿVBDʡE?i word contraryJJ rh?NN rhi-1 tag+i word -START- reformNNK7?JJ;OnҿNNPRQi-1 tag+i word NN dataNN- NNPZd;O?NNSʡE@ i-1 word gaveRBnڿNN%C?PRP{Gz?PRP${GzRPtVֿi-1 tag+i word VBP hungVBZ?5^I VBNl?NNB`"ѿi+2 word drawsJJ5^I NN+׿NNP~jt?i+2 word still NNPS/$VBGOnJJMbJJSHzGVBNjtWDTA`"IN rh?DTNNSK?NNQ @RBSHzG@RB9v?NNPxֿ i word rioNNPS{GzĿNNP{Gz?i+1 word contactsNNPOnJJOn?i-1 tag+i word JJ connectorsNNPSv/?NNSv/i-1 tag+i word NNP curtainNNPSoʡſNNPoʡ?i word capitalgainsNNSA`"?JJA`"i-1 tag+i word , onceCDV-RBS㥛?INoʡi+2 word statisticsNNPSZd;RBZd;?JJT㥛 ?INRQ?NNPK7VB{Gz?i-1 tag+i word DT strongerJJvNN~jtJJRZd; @i-1 tag+i word , deniesVBZFx?NNSFxi-1 word beginningRBl?VBG rh?NNQJJI +?i-1 tag+i word NNS accustomedVBNFx?VBDFxi-2 word airplanesRPV-?RBV- i suffix lacNNCl?JJ/$NNPli-1 tag+i word DT tweedNN㥛 ?JJ㥛 i-1 word stephenNNPffffff?NNffffffi-2 word minusNNS?CDSi+2 word legalJJ|?5^NN^I +?VBDV-VBNV-?VB(\PRPT㥛 ?VBZrh|RBQ?POSZd;NNSzG?PRP$T㥛 FWʡE?VBP(\?NNPV-RPQi-1 tag+i word TO potentialVBSJJS? i word stageVBMbX9NN/$?VBD(\VBPV-ͿJJrh|NNP/$?i-1 tag+i word VB pointedVBN㥛 ?JJ㥛 i tag+i-2 tag RB JJSVBD ףp= RBR/$JJR/$?VBN ףp= ?JJ|?5^?IN|?5^i-2 word schedulingVBGSNNS?i-1 tag+i word WP$ chiefJJ?5^I ?NN?5^I i-1 tag+i word RBS likeVBOn?JJT㥛 IN5^I i-1 word taiwanNNPGzNNPSGz?i+2 word payments VB}?5^IVBD(\@VBZ{Gz?NNSp= ףRP ףp= ǿNNGzVBPNbX9?INp= ף?NNPB`"i+1 word officesVB;OnVBG|?5^JJ rȿNN1Zd?NNP$C?i+2 word similar JJZd;OVBDjtVBN~jt?INjt?NNPd;O?VB-?CDjtVBP~jtRB?i-1 suffix ujiJJSӿNNPS? i-2 word asiaJJK7NNPˡEVBFxѿNNPSˡE?VBG}?5^I?NNSVBD}?5^IVBNp= ף?i word disheveledVBN+JJ+?i-1 tag+i word IN duckNN%C@JJ1ZdCCbX9޿i+1 word stimulusJJq= ףp?RBq= ףp i suffix elyRBRʡENNSFxNNy&1RBZd;8@RPV-JJSʡEVBPK7AпVBZ rNNPNbX9VBFNNPSZd;VBNGzIN +JJq= ףp@VBD5^I i-1 word volckerVBD"~j?VBP"~j i word 'dPOSMbCDT㥛 VBP;OnVBZ7A`MDX9v @VBDtV?i-1 tag+i word TO purchaseVBp= ף?NNp= ףi-1 tag+i word RB restrainVB|?5^?VBP|?5^i-2 word principleVBQ?NNQi-1 tag+i word : askedVBFxѿVBNp= ף?VBD}?5^Ii+1 word vividRBR= ףp=?JJR= ףp=i-2 word consolidatesJJlNNPl?i+2 word ratesRBRZd;OINNbX9@VBZV-@NNPx&1VBG{GzVBD= ףp=?NNSK7VBNV-?RB{GzĿDToʡWDT}?5^IJJRn?VBP?5^I NNPS^I +NNZd;?VB333333?JJףp= @RPjt?i-2 word venturesNNn?JJni-1 tag+i word NNP sandNNFx?NNPFxi tag+i-2 tag `` FWVBClVBPX9v?JJ/$i-1 tag+i word `` dogsNNS+?NN+i+2 word bridgesNNSʡE?NNʡEi word tormentsVBZCl?NNSClɿ i+2 word goyaJJRʡE?NNʡEi-2 word minersDT/$?PDT/$i word snatchersNNP㥛 ҿNNPS㥛 ?i-1 tag+i word IN doubleRBtV@NNV-JJMbX9VBK7ѿi-1 tag+i word RBR importantlyRBZd;?NNZd;i-1 tag+i word JJ retailingVBGS㥛?NNS㥛i+2 word rigidVBNˡE?JJˡEi-1 tag+i word VBD mtmRP/$NNP/$?i-2 word intenselyNNS1ZdNN1Zd?i tag+i-2 tag NNS CCVBZ~jt?NNPm?VBGGz?RBR(\пVBNS?VBP(\ؿCC?INCl?RBGzRPq= ףp?VBMbX9JJRQDT/$WDT1ZdJJ333333NNrh|?VBDHzGٿNNSi+1 word strangerJJh|?5@RBh|?5i+1 word restraintsNNNbX9?JJNbX9пi-1 tag+i word DT filingsNNSrh|?NNrh|i-1 tag+i word DT welcomeVBPQ뱿NNSvJJ +?NN'1Z i word mercNNPSL7A`NNMNNPV-?i-1 tag+i word DT survivingVBGZd;O?NNbX9JJRQi-1 tag+i word CC deficitsVBZ9vVBv/NNSCl? i-2 word holdJJRh|?5?JJMbX?NNSX9v?NNPX9v׿NN333333RBRh|?5VBN&1?i+2 word morleyNNCl?VBPCli word unspecifiedNNS'1ZVBNy&1JJx&1@VBD/$޿i+1 word overseesWDTK7?INK7i-1 word widespreadVBGJ +NNJ +?i-2 word clientVBN333333RBx&1JJV-?i-1 tag+i word , tanksVBZMNNSM?i-1 tag+i word ( partNNSMbX9NN?NNPK7A`i word shoestringVBGX9vNN rh?JJtVi word protocolNNSnNN%C?JJ#~jܿi+1 word troubledVBGMb?NNMbi word seasonedVBN/$JJ"~@VBD`"i-1 tag+i word VBD appointedVBN-?JJ-i-1 tag+i word TO americansNNPV-NNPSV-? i word laughsVBZ1Zd@JJSNN(\i-1 tag+i word IN revenueNNPS`"NNPnؿNNPv?i+1 word wisdomJJ"~j@NNP"~ji-2 word shameVBjtVBG+?JJX9v?FW"~j i word lureVBd;O?JJd;Oi-1 tag+i word VB smokersNNS;On?JJR;Oni-1 tag+i word JJ traitNNSV-NNGz?JJ1Zdi-1 tag+i word POS limitedVBNh|?5JJh|?5?i-1 tag+i word MD likeVBʡE@RBRlIN"~ji+2 word facesVBw/NNK7?JJ^I +?VBZT㥛 NNSS㥛NNPNbX9?i word occasionallyRB(\?NNP(\i+1 word institutueNN +JJ\(\NNPv?i-1 tag+i word DT endangeredVBNPn@JJPni-1 tag+i word NNP bankerNNPSA`"NNZd;?NNPl¿i-1 tag+i word NNS throwVB9vVBP9v?i-1 tag+i word CD paidNN5^I VBD|?5^?VBN\(\?i word revolutionaryNNV-ڿJJV-?i-1 word heftyNNףp= ?INףp= i-1 word strategyVBZ +?VB㥛 ?NN㥛 VBD + i suffix MGMNNPSNbX9пJJ/$NNP!rh?i-1 tag+i word JJ happyNNSK7JJʡE@NNtVVBPKi-1 word internalJJ~jt?NNPMNNSQNNv/?i-1 tag+i word PRP fixedVBZ|?5^VBD|?5^?i+2 word relaxCDNNQ?NNPq= ףpi-1 tag+i word NN leaseNNI +?JJI +ֿ i-2 word armsVB-JJ|?5^?NNK7?NNP+i-1 suffix wahNNPS%CNNP%C?i+1 word equity NNPClRBCl?POS rh?VBZ rhDTzG?INʡE?VBGZd;O?VBNV-WDTnJJClۿi-1 word factoVBPNNS?JJ"~j?NNQ뱿FWV-i-1 tag+i word NNP gamesNNP rhVBZd;ONNPS'1Z@ i suffix TenNNPtVVB(\CDQ@JJK7Ai+2 word buying VBN`"RBOnNNP ףp= JJMڿNNX9v@VBDS㥛@NNSx&1VBPlIN-?VBZHzGi word stunnedJJzG?VBNtVֿRBQοi-1 tag+i word VBG wrongJJ333333?RB333333i-1 tag+i word NNP creekNNx&1NNPx&1?i+2 word marketing INʡEVB9vNNPSuV?VBGI +?VBDʡE?VBNQCDQ?JJx&NNPuVRBuVNNh|?5?VBPrh|?NNS7A`i-2 word todayRB rh?IN7A`NNSˡENNP)\(?VBV-?VBG ףp= ?JJClNN)\(?i-1 tag+i word IN throwingVBGK7?NNK7i-1 tag+i word PRP hardJJ;On @RB= ףp=VBD;OnCD7A`i-2 word questechJJT㥛 ?NNT㥛 i+2 word reinVBNbX9JJbX9@ i suffix ULANNI +NNPI +?i-1 tag+i word FW bindNNPGzNNGz?i-1 tag+i word IN troubledVBNHzG@JJHzGi word construedVBNZd;?VBDZd;Ͽ i word bannedVBNOn@JJ rhVBDZd;Oݿi-1 word weeklyNNM@NNS㥛 ?RBzGJJMbX9NNPK7Aп i word scottJJGzNNP$C?NNPS +i+1 word apartVBPK7A`?JJVB rؿVBG"~j?RBx&1NNNbX9RBRx&1?i+1 word gloveNN rhNNP rh? i+2 word opecJJSbX9?NNbX9i+2 word prohibitionVBPMb?VBDMbȿi+1 word fiscalNNEVBDPn?VBNPnJJE?INDT?i-1 tag+i word JJ associateNNn?JJni+1 word writingNN1Zd?RPX9v?JJOnRBX9vοINX9vi-2 word brobergVBGCl?RBCl i-1 word plan NNp= #VBDNbX9?JJRd;O?VBPX9v@WDTv/?DT&1NNS&1VBx&1?RBR rVBNCl?INQ?VBZh|?5?i-1 tag+i word , burnoutsVBZMbX9ܿNNS7A`?UHQi-1 tag+i word NN whatWP!rh?IN!rhi+1 word economyVBGMbX9 @NNzGVBD"~JJSL7A`ؿJJR?VBN rhJJQ?NNPbX9i-1 tag+i word JJ limitationsNNSX9v?NNX9vi word wellingtonNNPV-?RBV-i-2 word carryNNx&1PDTFxRB9v?RPQNNS-?VBGSÿJJPn?i+2 word followVBN~jtVBP^I +?IN(\VBZd;O߿VBGDlNNDl?VBD~jt?i-1 word alleghenyNNPS\(\@NNSSNNP ףp= i-1 tag+i word RBR liquidJJV-?NNV-i-1 word rentalNNRQ?NNPRQi-1 tag+i word DT backdropNN~jt?JJ~jti-2 word using RBw/NNS㥛?CDZd;OJJjt?VBZMbX9?NNPS(\пVBGuVͿNNSʡE?NNP?i word exerciseVBmRB rNN/ݤ@VBN̿VBP㥛 ?JJQVBZMbi+1 word obscureNNClNNP㥛 INuV?i-1 tag+i word VBZ cheekyVBNp= ףRBR#~jJJL7A`?i-2 word white VBNJ +?RBMbX?NNSE?NNPGzJJI +?VBDV-NN!rh@VBP}?5^IINMbVBZEVB}?5^I?NNPSףp= ӿi-2 word cheeseJJK?NNKi-1 tag+i word NNP deiVBZK7FWףp= ?VBD;Oni+2 word airedNNPSQ?NNSuVNNˡE? i word tidbitNN+?JJ+i-1 word quotationsVBPʡEVBNMbX9?VBDMbX9VBV-?i-1 word craigNNPSS㥛ԿNNP9v?VBPli-1 word buildingsINV-VBDx&1?VBPV-?VBNx&1i-1 tag+i word VBP disabledVBN?5^I JJ?5^I ?i word assuredVBNQ?JJV-VBDX9v i suffix akeRBlDT +CDHzGVBPMbX@VBZx&1PRP$x&1VBGףp= NNS?INv/VBD/$VBNsh|?NNSB`"NNP}?5^I̿VBMbX@JJʡEi+1 word distractingRB+?JJ+i-1 tag+i word NNP contendedVBZOnVBDOn? i-2 word data VBCl?VBGZd;RBffffffINPn?NNS+NNPl?NN&1@VBPNbX9WDT|?5^JJn?VBZ i suffix .D.NNPSQNNPQ?i+2 word clearingVBNʡE?VBDʡE i-2 word oilsNNSL7A`?JJL7A`i word wisconsinJJ/$NNP/$?i-1 tag+i word JJ lapsesVBZNNS?i-1 tag+i word VBD permanentJJMb?NNMbi-1 word jerusalemNNSd;OVBZd;O?i-1 tag+i word : surfacedJJbX9VBDbX9?i-2 word woollyVBS㥛VBPX9v@JJ'1ZVBD&1ҿi-1 tag+i word DT consentNN rh?JJ rhi-1 tag+i word NNP studiesNNPSʡE?NNPʡE i-2 word visaNN'1Z?JJ'1Zi-2 word adoptsJJx?NNxi-1 suffix ghsJJRˡE?RBRˡEi+2 word activity INDlRBR9vVBP$CNNVBG?5^I ?RBmͿVBN +JJS@JJR9v?DTDl@VBx&1?i-1 tag+i word DT chillyJJV-?NNK7RBxi+1 word tomorrowVBN9v?RB)\(?IN)\(RPJ +VBGK7JJ9vNNx&?i-1 tag+i word NN frenzyNNd;O?RBd;Oi-2 word specterRBRMbX?JJRMbXi word staunchlyVBPGzǿRB= ףp=@JJtVVBD|?5^i-1 tag+i word PRP$ antiheroNNSp= ףNNp= ף?i-1 tag+i word TO youngerVBX9vJJRX9v?i-1 tag+i word NNP agentsNNPS{GzNNS{Gz?i-2 word sofasVBx&1NNSx&1?i+1 word parallelsVBGQNNQ?i-1 tag+i word IN satisfiesVBZL7A`?JJL7A`i+1 word intellectJJ$C?NN$Ci-1 tag+i word DT martiniNNS!rhNN!rh?i-1 tag+i word JJ addedVBDX9v?RPX9vi word acccountingJJRQVBGQNNQ?i-1 tag+i word DT mexicansNNPSZd;?NNPZd;i-1 tag+i word NNP jewsNNP&1NNPS&1?i word granularJJm?NNmi word operatingNNPV-?VBMbVBGʡE?NN9v"@WDT9vJJ)\h"i word peasantNNOn?JJOni-1 word stressDT333333ۿWDT-IN㥛 ?i-1 tag+i word CC artsNNSI +@NNPI +i-2 word appealVBN= ףp=JJʡE?INZd;߿NNS+RPZd;?NNtV?i tag+i-2 tag : RBSNNS+?NN+i-1 tag+i word , talkVBP;OnNNw/@NNPPn i+2 word levyNNPSNNV-?JJ'1ZĿFWV-ݿi word extinctJJ ףp= ?RBRzGNN^I +i-1 tag+i word , soonerVBRQRBRCl׿RBJ +@ i word stairVBP rNNZd;O?JJh|?5ֿi-1 tag+i word DT gunNNx&1?NNSx&1i word producedNNSX9vRBV-VBDx&1?VBN5^I @VBPI +JJK7i word machikinRBClFWʡE@VBPd;ONNV-i-1 tag+i word VBP relatedVBN!rh?JJ!rh i+2 word was$V-NNQ?POSuVRBRClJJ㥛 ?DTL7A`?RBS#~jNNPV-?CC}?5^IRP(\ſFWPn?WDT{GzVBZMb RBDlEXtV?JJRS㥛?VBDzG@VBNp= ףVBPFx?NNPSNbX9?JJSZd;O?VBGˡE?PRP rhVBlCDZd;O?IN7A`?PRP$-?NNSMb i-1 word plusVBDJ +VBNA`"˿RBp= ףVBZMbNNSK7AؿJJK7A?NNPn?i-1 tag+i word JJ racialJJ(\?NN(\i-1 word yardsJJK7@RB-NN= ףp=i-1 tag+i word TO dealVBQ?NNQi-1 tag+i word '' sayVBPffffff?VBffffff޿i word specialNN;OnNNPHzGVBPJJZd;_@i+1 suffix staVBZ/$ÿNN&1?VBDSi-1 tag+i word DT dauntingVBGZd;O?JJZd;Oi-1 tag+i word `` diVBClNNPCl?i-1 tag+i word RB authorizedJJV-VBNV-? i+1 word plotNN +?JJ + i word clauseVBZK7NNPOn$-NNzG @VBPL7A`JJ= ףp=i-1 tag+i word VBZ runVB;OnVBNV-@NNV-i word averagingVBGx&?JJx& i word fearedVBNK7?JJ-VBDX9vi word overburdenedVBNxJJx?i-1 tag+i word DT fbiNN7A`NNPM?NNPSni-1 suffix ncoVBPDlNNDl?i-1 tag+i word IN quickNNSjt޿JJjt?i word sourcesNNS&1?NNP&1i-1 tag+i word WDT emphasizedVBPK7A`ſVBD= ףp=?VBZA`"i+2 word macmillanNNSClۿRB;On?JJxi-1 word excitedRBʡEINʡE?i+1 word integratingWDTK7INK7?i-1 tag+i word CD wiretapWDT(\NN(\?i-1 tag+i word DT ruralJJGz?NNGzi-1 tag+i word CD accountingNNS㥛?JJS㥛i+2 word transatlanticJJSB`"JJB`"?i+2 word modifiesNNP333333VBD rVBZףp= ?i-1 tag+i word JJ clarinetistNNS+NNCl?JJ+i-1 tag+i word IN cuttingJJ(\пVBGQ@NN rhi-1 tag+i word CD massacreVBZp= ףNNp= ף?i-1 tag+i word DT ammoniumNN)\(?JJ)\(i word sparkedVBNDlVBDDl? i-2 word dow VB(\VBDˡEVBN/$@VBPh|?5ֿNNS7A`?NNA`"JJGzVBZ㥛 NNP7A`?i-1 word calculationsVBPQ?VBN1ZdINQVBD1Zd?i word britishNNPV-VBHzGNNPS(\µNNMbXJJףp= W@NNS{Gz?i-1 tag+i word CC peruseNN rhVBZQVB%C? i suffix undNNm@VBPjtINfffff@NNP333333NNPS333333CCx&VBNNbX9 @CDVB!rhRBn?JJRzGVBZ"~NNS|?5^RPDl)@VBD+@UHjtƿJJbX9DT^I +߿i-1 tag+i word NNS woreVBP(\ڿVBD(\?i-1 tag+i word VBG beigeJJV-?NNnNNSI +i+1 word projectedJJ(\?NNP(\i+1 word tanksNNףp= ?JJ"~?RB5^I VBN(\ i-1 word much NNSffffffVB333333?JJ+VBN~jtؿRBR%C@JJRx&1@VBPw/RB5^I INM@VBG333333NN$C?VBDJ +VBZ9v? i suffix ogy NNNbX94@VBDnRBMbXNNSjtNNPˡE@VBRQNNPSMRPh|?5JJlFW㥛 i-1 tag+i word JJ mahfouzJJ+NNP+?i+1 word potteryJJL7A`@NN/$ݿNNP"~ji+1 word dailyNNPS+VBGSRB/$ֿNNnJJZd;@IN/$?NNPZd;i+2 word incidentsJJFxٿVBNFx?i-1 tag+i word DT controlsNNS"~?NN"~i-1 tag+i word IN minoritiesVBZV-NNSV-?i-1 word intellectualNNPS'1ZNNP'1Z?i+1 word storyPRP$㥛 ?NN333333CDFx?JJy&1DT&1NNP&1?i-1 tag+i word NNP threatenedVBNʡEVBDʡE?i-1 tag+i word `` allianceVB"~NN"~?i-1 suffix ndaVBZL7A`堿NNPSˡE?POSL7A`?NNPˡEi-1 suffix echDTd;ONNS}?5^IܿNN}?5^I?INd;O? i word fewerNNPS-NNSRBRT㥛 JJRV-@JJS㥛NNPT㥛 i+1 word koreanVBS?NNףp= RBX9vNNPS%JJ|?5@i-1 tag+i word RB fundVBNbX9NNNbX9? i+1 word slowVBNK7A`JJK7A`?i tag+i-2 tag IN INFWClPDTl¿VBDV-ڿRBx&1VBGMbXѿJJS-?WDT1ZdEXʡE?VBZMbNNP^I +?NNSy&1?NN+@JJGz?VBPX9vIN ףp= @UH"~NNPSQVBN?5^I JJR'1Z?DT rh?RBS +i-1 tag+i word JJ '60sNNS}?5^I?NN}?5^IԿi+2 word demandsVBPA`"RB-@INX9vNNSɿJJh|?5NN"~j?VBD1Zd?VBN1Zdi-1 tag+i word WDT gambleVBZd;?JJZd;i word telephonesNNSʡE?NNʡE i-1 word j.c.NNPGz?NNGzi-2 word advisesNN{Gz?NNP{Gzi-1 tag+i word IN hasidicJJCl?NNPCli-1 tag+i word -START- madisonRB&1NNP&1? i word giltsNN|?5^NNS|?5^?i-1 tag+i word POS youngerJJR{Gz?NN{GzĿi-1 tag+i word VB ratherRBʡENNPʡE? i suffix eur FW^I +?DTX9vϿJJMbX?NNSףp= NNPnVBX9vRBS㥛NN r @VBD ףp= i word sereneNN rRBQJJ"~j @VBRQi-1 tag+i word NN declaredVBNffffff?VBDffffffi-1 suffix lagVBPnINn?i+2 word barabolakNNSq= ףpNNq= ףp?i+2 word brakesVB;On?VBP;On¿i-1 tag+i word CD boatNNSMbXNNMbX9?JJA`"i-1 tag+i word VB cuddlesNNS㥛 NNP㥛 ?i+2 word bombardedNNSK7A`NNPK7A`? i word oustedVBNK7?RBx&VBD/$?JJFxi+2 word filledJJCl?NNClVB+VBP+? i suffix ftsJJSQRB-VBZʡE?NNS/$"@NNPQVB{GzNNbX9VBD ri word atmosphericJJzG?NNzG i suffix onsVBZd;FW$C@VBPI +INQNNSGz1@NNPS/$%@NN~jtS VBDEVBNNbX9RBPnVBZ|?5^ @DT%CCDʡEJJ NNPh|?5 i suffix ckyJJ rh@NNffffffVBNV-RBRQſRBI +IN)\(NNSxVBMbi word defaultsNNPV-NNSS@NN㥛 i-1 word mostly VBZ'1Z?NNS'1ZVB7A`JJ"~j@NN|?5^VBDDl?VBNERBRʡEJJR)\(?RB"~ji-1 tag+i word WDT failedJJX9v?VBDףp= VBNuV i+1 word bearVBNx&?NNjtINZd;OJJ^I +?RPZd;O?i+2 word private CCX9vVBNOn?IN r?NNSy&1RP rJJzG?VBDOnRBR rhJJR rh?RB\(\?VBZ1Zd?VB|?5^?NN"~ji-1 tag+i word NNP asianJJtV?NNPtVi+1 word plateJJJ +ѿNNJ +?i word federatedJJףp= VBD`"οNNPMb @VBN^I +i-1 word stockingRPFx?RBFxٿi word quadruplingVBGʡENNʡE?i word charteredNNPp= ף?VBDp= ףi-1 tag+i word RB advancedJJQ?VBNQ i word inkVBPClNNS333333NNZd;O?i-1 tag+i word IN runnyJJ'1Z?NN'1Zi+1 word bordersJJq= ףp?NNq= ףpi+1 word costingVBZClNNCl?i-1 tag+i word NNS repelVBPX9v?NNSq= ףpVBV-i+1 word edwinJJy&1NNPy&1? i suffix attNNK7ACDKVBENNP%C?JJK?i+2 word domestic NNS&1NNPSӿVBGL7A`?JJzG?PDTL7A`?VBZ&1?NNS㥛CDp= ףRBS i suffix SFXVBZOnNNoʡNNPtV?i-1 tag+i word `` coreNNK7A`?RBB`"JJ r i-2 word jetsNN7A`VBKǿVBPX9v?i word barclaysNNPS1ZdۿNNSFxNNP/$?i+1 word comparativelyVBDx&1?VBZx&1 i suffix EFSINOnNNSv/?NN= ףp=NNP&1ڿi-1 tag+i word VBP soundJJjt?NNjti word concurrenceNN{Gz?NNP{Gzi-1 suffix libJJ`"?NN`"ֿi-1 word backingRPZd;ORBZd;O@i+2 word cultureNN +?FWjt?INMbVBPS?JJZd;O߿WP+VB9v?i+1 word shoddyNNK?JJK i suffix 323CDʡE?NN +ֿNNP}?5^Ii-2 word mightRBmͿVBDS㥛PRPMbXNNSʡENNK7A`RBRX9v?RPA`"ۿVBNS?VBGQ?VBn?JJ rh?IN"~j?DTT㥛 JJRX9vοi-2 word mandatedNNSK7NNV-?JJ +i-2 word shreddedVBDVBN?i+2 word varietyVBDjt?VBZ\(\?VBNGzi-1 tag+i word VBP startsVBZ1Zd?RB1Zdi word yamataneNNPS?JJS˿i+2 word impossibleVBZ= ףp=?RBA`"?JJA`"POS= ףp=i+2 word transfusionVBNX9vVBDX9v?i+1 word spending NNSjtVBNMbX9WDT"~ʿRBxINNbX9?NNPQVBG9v?JJ rh@VBDHzGٿRP/$VBZK7A`?VBQ?NNjti-1 tag+i word VBG herbicidesNNSQ?JJQֿi-1 tag+i word NN breedingVBGy&1NN-@JJ|?5^i+1 suffix oveVBG-RBSv/?VBPv/VBDV-VBN- @RB?NNSMbX9?NNPKMDJ +?JJMbX9NN|?5^UHx&INQѿVBZGzi-1 tag+i word JJ pigsNNSffffff?NNffffffi+1 word worldwideNNPSMbNNq= ףpNNP#~j?i+1 word likelihoodCCxJJRx?i-1 tag+i word IN advisingVBGMb?NNMb i suffix BPCNNPSV-ҿNNPV-?i-2 word europe JJR'1ZNNSJ +NNPMb?RB{GzNN'1Z@VBN?JJ5^I INX9v?VBZ㥛 ?i-1 tag+i word DT resetNN rh?JJlVBNS㥛i word northeasternJJ1Zd?NN1Zd i word pactsNNS{Gz?VBZ{Gzi-1 tag+i word JJ morningVBGSNN+?NNPS㥛i-1 tag+i word IN inverseJJx&1?NNx&1Կ i word niceRBNbX9NNZd;OJJv@VB(\i-1 tag+i word NN joltsNNSp= ף?NNp= ףi+2 word friendJJ333333?NN333333 i suffix royVB/$?VBZ/$i-1 tag+i word , causesVBZ r?NNS ri-1 tag+i word : cultNNPT㥛 ؿVBQNNn? i-1 word mobNNS1ZdNN5^I ?VBD9vi+2 word weeklongVBP-ӿVBDuVVB?i-1 tag+i word NN rentalNNX9v?JJX9v߿i+1 word membershipVBNQRB'1ZԿVBDK7ٿJJZd;?NNPd;O?i-1 word today POSn?VBN5^I ?VBZnDTS㥛NNSClVBuVVBDK7A`INB`"ɿNNPy&1?NNˡEVBP/$ @i word reassessmentNNMb?JJMbi-1 tag+i word POS americanJJGz?NNPGzi-1 word dioxideVBZMbX9?NNSMbX9i-1 tag+i word DT starterJJMb@NNMbi-1 tag+i word VBZ findingVBGL7A`?JJL7A`i-1 tag+i word POS dataNNS333333?JJ}?5^INNK7A`?i-1 tag+i word CD mostNNSGzRBS"~j?JJS~jt?i-2 word shearsonVBPZd;O?RBRQRBQ?VBZd;O i word spareVB(\VBPMbпJJ$@NN i-1 tag+i word IN counterbidsNNSCl?JJCli+2 word mixtecNNPV-UHʡEۿJJ;On@i+1 word vigorouslyVBN?5^I ?VBD?5^I i word downward NNSV-VB-VBNZd;JJS@VBZ$CNNPK7A`RB5^I  @NNA`"INrh|Ͽi-1 tag+i word DT poorestNNnJJSn?i-2 word eruptionNN/$?JJ/$i-1 tag+i word NNS derivedVBQVBN"~j?VBDGzi+2 word doubleVBDoʡſRBR333333@VBNZd;OJJRd;OVBZQ?VBV-i-1 tag+i word PRP secureVBX9vJJX9v?i-1 tag+i word , rocksNNS~jt?NN~jti-1 tag+i word MD gatherVBx?RBx i word oursVBZxNNSX9vοPRPK7?NNV-¿i-1 tag+i word RBS weekendsNNSCl?JJCli+2 word politicalPDT'1Z?VBNK7AVB~jt@VBDK7?JJSZd;OIN9vNNP/$VBGE?JJ~jt@VBZq= ףpNNS(\?PRP$9vNN(\VBPx&ٿPRP9v?RBʡEDTl?i-1 word wieldsJJV-?RBV-NNCl?INClӿi word cantonalJJV-?NNV-i word neighborhoodNNL7A`@RBClۿJJh|?5JJR1Zd i-2 word paVB;On?VBP5^I JJB`"i-1 tag+i word VBZ concreteVB1Zd˿NN1Zd?i+2 word focus VBGX9vֿJJS㥛NNPˡE?NNxPDTMbVBPZd;O?NNS/$MD#~j?VBX9v?NNPSˡE i word cos.NNPS333333?NNClNNP~jti word tetheredVBNbX9RB'1ZĿVBDI +JJ333333?i-1 tag+i word NNP sitsVBZGz?NNSGzֿ i+1 word estNN`" @NNS ףp= JJw/RB rh i word sprayNNSV-NNrh|?JJ ףp= i+1 suffix ftsNNP)\(VB9v?VBGZd;OJJMb@NNʡEVBNq= ףpͿRBx&1i+2 word comfortedNNSףp= ?NNףp= i-1 tag+i word NN formNNh|?5?NNPh|?5i-1 tag+i word CC biographyNNSQNNQ?i word inevitableJJ r?NN ri word determineVBv/?NN\(\JJ`"i+2 word campaigningRPZd;O?VBN +RBZd;OVBD +?i word presenceNNPx&1?NNx&1i+2 word scrambleRB r?IN ri-1 suffix rdaNNPS'1ZNNP'1Z?i+2 word examinerNN|?5^?JJjtNNPI +i-1 tag+i word JJ strugglingVBGjt?JJjti-1 tag+i word NNP metropolitanFWSJJZd;O@NN}?5^INNP/$i-1 word neurologistVBGQ?JJQi-1 tag+i word JJ guyNNCl?NNSCl i+2 word jeepVBPI +?INI + i-2 word anneVBZʡE?NNSʡEi-2 word performingNNS?VBSi-1 tag+i word , cannesNNSQNNPQ? i-1 word tax VBGA`"?VBDV-VBN/$WDTV-?RBB`"ɿVBZPn?VBJ +NNPS(\?NNPNNS= ףp=?NNCl?INV- i suffix felNNS$CNNP$C?i+2 word yieldWDT'1ZRBʡEտINDl?JJjtNN?5^I ?VBN+? i word wigsVBI +NNSI +?i tag+i-2 tag PRP$ INNNP1Zd?RBl?VBNffffff?JJoʡRBRZd;CD%C@JJRV-@NNPS+NNˡEԿFW|?5^?RBSp= ף?NNSZd;OVBPSIN$CRP)\(VBGJJSx&?VBDV-i-1 tag+i word NN crashNN?JJi+2 word securelyVBNS?JJSi+1 suffix hotVBZ|?5^VBQ?NNS|?5^?NNV-?JJNbX9i-1 tag+i word VBD shortJJd;O?NNd;O i word styledVBNX9v?VBDX9vi-1 tag+i word NNP eagerJJoʡ?NNoʡi word entangledVBN333333JJ333333?i-1 tag+i word DT broadcastingVBGy&1?NNy&1i word protestantsNNPSM@NNST㥛 ؿNNP}?5^Ii-1 word pirateJJ/$?NN/$޿i+2 word durationNNSHzGRBHzG?i-1 tag+i word PRP figuresNNS~jtȿVBZ~jt?i-1 tag+i word DT chainsNNSV-?JJV-i word supposedVBDףp= ?VB\(\NNSV-VBNS㥛 @JJ;On i word miltonNN!rhNNP!rh?i-1 tag+i word DT tunnelNNSlNNl?i-1 tag+i word RB reservedVBN#~j?VBD#~jԿi-1 tag+i word NNS cdNNףp= ?NNPףp= i-1 tag+i word IN matureJJQ?NNv߿RBJ + i suffix euxNNPSENN!rh̿NNPx&1?i word guidelinesNNPSx&NNS-?NNP)\(i tag+i-2 tag $ ,CDSJJS?i-1 tag+i word CC copierJJR'1ZNN'1Z? i word hectorNNS㥛NNPS㥛? i-2 word oneVBNoʡDTm?FWQRB)\(NNSK7ARBS= ףp=?CDB`"?VBDjt?JJS}?5^IVBS?IN+?NNPSMb`?VBGʡEWDT+@JJ~jtWPlVBZuV@POSPnؿJJRCl?PRP$Zd;ONNuV?PRPˡE?NNPjtRBR?VBP'1Z i word forgetVBP|?5^RBrh|VBV-@i-1 word originallyVBP}?5^IVBNS @JJCl VBDd;O?i-1 tag+i word NN aroseVBNw/ԿRBK7VBD+?i+1 word schoolsJJDl?NNP(\ҿVB#~jVBG(\?NN|?5^ʿVBD#~jVBP#~j?i-2 word deliveredNNn?RBK׿DTK?NNPNbX9?VB-JJMi-1 tag+i word NN pointedVBNsh|?VBDsh|?? i word zapfelNNS$CNNP$C?i-1 word routeNN"~j?JJ"~ji-1 suffix ceeJJ{Gz?NN{Gzi-1 tag+i word VBN asIN!rh@VBGRBw/JJ +i-1 tag+i word POS standingVBGzGNNS㥛 @JJQi-2 word stableJJK7A`?NNK7A` i word giftsNNSy&1?JJSQNNsh|?ݿi-1 tag+i word RB discountingVBGClNNCl?i+2 word university VBGQNNHzG?INm?VBZKNNPQ?VBMb?RBI +?VBPMbJJQi-1 tag+i word NNS cosmeticNNK7A`?JJK7A`i-1 word securelyVBNjt?JJjtֿi-2 word concludedNNPSd;O?NNSS㥛NNP+i-1 tag+i word RB graveVBPq= ףpNNq= ףp?i-1 tag+i word NN tachycardiaNNSA`"NNA`"?i-1 tag+i word IN wildernessNN7A`?JJ7A`i-1 suffix ier RB1ZdӿVBPKNNSK7?NNffffffVBDGzJJR!rh?VBNGz?JJMb?NNPxi+1 suffix rce JJRClVBNffffff?VBP;OnڿJJmINy&1VBG7A`?NNMbDTy&1?NNSOnNNP/$@VB+i-1 tag+i word DT armedJJMVBNM?i word dizzyingNN(\VBG$CJJx&1 @i+1 word amendmentNNRQNNP"~@''~jt?JJy&1POS~jt i suffix IINNPK7A?NNPSK7Ai-1 word physicistDT\(\IN\(\?i+1 word profferredNNʡE?JJʡEi-1 tag+i word NNP scottNNPS +NNP +?i-1 word crispNN9v?JJ9vڿi word mcintoshNNPS{GzNNh|?5NNPMbX?i-1 tag+i word VBN easyJJ'1Z?RB'1Zܿi+1 word cowardlyPRP$1Zd?VB1Zdi+2 word centreNNP9vNNPS9v?i-1 word envisionsNNK7?JJK7i-1 tag+i word PRP tougherJJR1Zd?NN1Zdi-1 tag+i word : footballNNn?NNPni-1 tag+i word TO governVBS?JJS i+1 word menJJJJSʡE?RBJ +NNPClVBD(\VBN/$ @INCl@DTHzGNNSZd;OVBGx?NN|?5^RBSʡEJJRHzG?WDTMbXi-1 tag+i word RB deepJJ+?NNS+i-2 word resourcesVBZuVNNS{Gz?VB333333?VBGzG?NNzGVBD rVBPZd;Oݿi-1 tag+i word VBN intactJJ5^I ?NN5^I i-1 tag+i word -START- allRB/$?DT{Gz?NNSZd;ONNPV-VBGX9vPDTX9v @WDTrh| i word basingVBGM?NNMi-1 tag+i word IN listlessJJ)\(?NN)\(i-1 tag+i word JJ anywayRBd;O?NNd;Oi-2 word televisedNNʡENNSʡE?i-1 tag+i word CC fishingVBGX9vNNGz@JJn i suffix staNNZd;O?VBD+JJ~jt@NNSKNNPNbX9?VBy&1NNPSMbi-1 tag+i word RBR helpVBDlNN{Gz?JJKi-1 tag+i word CC americanNNPJ +?JJJ + i word marineNNPMbX9?NNtVJJ r?i+1 suffix xinNNS rNN r?i word controllingVBGx&1?JJOn?NNoʡi+2 word grenadaWDT9v@IN9v i-2 tag WPRPQ?CCZd;O?RBS?JJSؿRBRy&1JJ;OnDT9v?VBD-@VBClCDnFWjt?PRPjtƿVBP + @VBGA`"?VBNxֿJJRCl?VBZ ףp= ?NNx&1?NNP(\NNPSw/PRP$V-?INClWDTCl˿WPJ +?RBl?NNSffffffMDCli-1 tag+i word CC annuityJJNNP?i-2 word falteringJJRMNNM?i-2 word managerVBNbX9ȶRB rhIN rh?NNPw/?VBjtܿJJA`"NN?VBD~jt? i-2 word n.y.JJV-RBZd;?NNZd;׿VBDV-?i+1 word suggestedRB+IN+?i-1 tag+i word NN soldVBDx&1?VBNMb?NN"~jINi-2 word journalVBd;O?NNClۿVBDx?VBNV-VBPrh|JJMb? i suffix ahoVBnNNMbXNNP rh?i+1 word superchargerNNQտJJQ?i+2 word flowsVBK7?JJK7i-2 word neglectNNv?JJvi-1 tag+i word DT ironNNffffff?JJffffffi+2 word presentRPv?WPS?VBN +?WDTSJJ +ֿINvi-1 word freseniusNN"~NNP"~?i+1 word laborDTʡE?NNSVBDEؿVBN|?5^?WDTFxJJMbX?IN/$ֿi-1 tag+i word VBP enrollmentNNh|?5?JJh|?5i-1 tag+i word IN thighNNoʡ?JJoʡݿi-1 tag+i word IN angryJJjt?NNjti-1 tag+i word CC voiceNN= ףp=?JJ= ףp= i word filingNNSx&1NN rh @JJuVVBG7A`ҿi+1 word cabinetsNN|?5^?JJ|?5^i-1 tag+i word TO americanNNPCl˿VB-JJK7A`?i-1 word revcoVBZI +?NNSI +?NNI +VBDI +?VBPI +JJI +i+1 word prevailVBZV-NNSV-? i+2 word lawnVB&1?VBPGzVBD%Ci-1 tag+i word NN wallNN333333?JJ333333i-1 tag+i word -START- casinosVB\(\߿NNSV-?NNPNbX9i+1 word jamaicanVBN"~VBD"~?i-1 tag+i word RB alongRBL7A`@INSVBD+i-1 tag+i word WP$ appointmentNNuV?JJuVi+2 word neglectingNNPS(\?NNSFxJJSi-2 word mainstreamNN#~j?JJ#~jRBA`"INA`"?i-1 tag+i word VBP intactNNSnJJn?i-2 word effortsNNPSMbVBGX9vֿRB-NNSVBDZd;O?JJ'1ZĿNNP(\VB+ @i-1 tag+i word TO wholesaleVBJJ?i-1 tag+i word -START- suspectJJ/$?NNP/$i-1 tag+i word DT comptrollerNNSjt޿NN+?NNPjt?i-1 tag+i word VBP broughtVBNQ?NNQi-1 tag+i word VBG tariffNNQ?NNPQٿi-2 word civiliansJJSVBDS? i-2 word norcJJS"~j?RBS"~jNNOn?VBGOnۿi-1 tag+i word PRP$ offerVBPSNNS? i-1 word cmsVBN +VBD +?i-1 word morishitaVBZuV?NNPSClNNS rPOSQ?i-2 word branchNNPS1ZdJJV-?NNPMbX9i-1 tag+i word CC adjustVBP rh@RBMbVBDClVB rhտi-1 tag+i word RB contributedVBNzG?NN+VBDL7A`?i-1 tag+i word JJ fiberNN;On?NNP;Oni+2 word convinceVBl?VBPli-1 tag+i word CC pineNNV-NNPV-?i+1 word medicineVBN{GzJJx&1?NNPI +VBx&1VBD{Gz?RBSx&JJSףp= ?i-1 tag+i word JJ vestsNNS|?5^?NN|?5^i+1 suffix rreRBRK7?JJRK7VBNQVBDQ?i tag+i-2 tag '' CDNNuV?JJuVi-1 tag+i word VBD pregnantJJSK7A`ſJJ/$?NNK߿ i word fraserNNPE?NNSE i word bredVBPx&VBNy&1?VBDNbX9?i-1 tag+i word NNP employsVBZv/?NN333333JJ^I +i-1 tag+i word , controlsVBZףp= NNSףp= ?i-1 tag+i word , listlessRBRzGJJzG?i-1 tag+i word TO betterVBh|?5RBRQ?RBL7A`?JJR1Zd?i+2 word filmsVBGQNN%C?JJK?i-1 tag+i word IN orchardsINh|?5NNSh|?5?i-1 tag+i word POS eliteJJZd;NNGzNNSV-@JJSB`"۹i-1 tag+i word JJ s&lsNNS~jt@RBʡENN1ZdNNP333333i+1 word slideJJ= ףp=?NN= ףp=i tag+i-2 tag JJS :JJNbX9?NNPNbX9ؿi-1 tag+i word IN inventoryVBGvNNv?i+2 word minneapolisNNPSK7NNPK7?i-1 tag+i word DT hallsNNS rh?NN rhi+1 word feverNNx?JJ^I +?INxVB^I +׿ i-2 word lot VB+JJuVVBNZd;?VBPZd;INʡE?NNSʡE?VBGPn?NN9vRBV-i-1 tag+i word CC corrugatedJJK7?VBDK7 i word wearyJJPn@NNMbXJJR/$i-1 tag+i word JJ whoopingVBG rJJ r?i-2 word doomedVB+NNCl?JJx&1i+1 word sherbetNNGz?JJGz i word wanedVBNMbX9VBDMbX9?i-1 tag+i word . wayNNPQ?NNQi-1 tag+i word NN hardwareNNGz?VBDGzi word peacetimeVBP-NNzG@JJp= ףIN/$i-1 tag+i word WDT nipponVBPK7A`NNPK7A`?i-1 tag+i word RB mustardNNʡE?JJʡEi-1 tag+i word VBN lowNN$CJJ$C?i tag+i-2 tag RB POSRB +ֿVBGQJJ r@NNV-VBDx&1VBN(\?i-1 tag+i word IN bassNNSh|?5NNh|?5?i-1 word stolenNNStV?RBtVi tag+i-2 tag NNS WRBINQ?NNSX9vVBzGVBGGzNNZd;VBDCl?VBP`" @i word defectingVBGd;O?NNd;Oi-1 tag+i word CD mayanNNStVJJ@NNʡEۿNNPJ +i word oncogenesNNS~jt?PRP~jti-1 tag+i word DT machinistsNNPS\(\NNSl@NNPvi-1 tag+i word NNPS scheduledVBN-?VBD-i+1 word cherylRBV-VBDV-?i-1 word offersRB7A`?NN/$?VBDxVBN~jtxPRPV-NNSJ +?RPQJJ/$INMb?VBPsh|?JJR r?VBZtVRBRm?WDT+? i word hugelyRB7A`?NN7A`i-1 word vladimirNN%CܿNNP%C? i-1 tag+i word NNP relationshipsNNSS?NNSi-1 suffix enzNNS`"VBD`"?i+2 word kenmoreNNDlNNPDl?i-1 tag+i word DT windsNNS+?JJ+i+2 word showcaseRBK7ɿINK7?i-1 tag+i word NN fallsVBZx?NNSxi-1 tag+i word VB readyVBNzGJJzG?i-1 tag+i word VB focusingVBGT㥛 ?JJT㥛 ؿi-1 tag+i word PRP denyVBP ףp= ?VBD ףp= i-1 tag+i word JJR looseJJʡEۿRBʡE?i+2 word disappointingVBPX9vVBDX9v? i-1 tag+i word -START- ajinomotoJJ/$NNX9vNNP`"?i-1 word munchingNNS(\NN(\? i-2 word woreCDNNS(\?NNPQѿi-1 tag+i word VBD relatedVBNZd;JJZd;? i-1 word feel RBQ @JJRʡEVBP-WDT+JJ/$@DTnѿNNSMbVB+RPSNN^I +VBD~jtȿVBN5^I ?INM@ i+1 word s.NNJJsh|?NNPS㥛?i+2 word valuedVBG(\?NNHzG?JJQi-1 tag+i word NN messNNCl?RBCl i pref1 CVBN ףp= VBPZd; VBGvVBDI +DT|?5^RBR%C?JJRx&INEMDoʡ @$Dl?FWxƿVBQ?CD7A`UH/$VBZx&NNDlٿPOSPRP-RBʡEWRB1ZdSYMMbX9ĿJJrh|RBST㥛 NNPSx&1"@CCQWP+NNSy&1NNPףp= /@i-1 tag+i word NN advantagesVBZK7ٿNNSK7?i word accountedVBN"~JJ-VBDA`" @i-1 tag+i word JJ sweepingVBGQJJx&1?NNxi word promisesVBZT㥛 ?NNST㥛 i+2 word selectionsVBZ+?VBD+i word athleteJJjtNNjt?i+2 word quebecorNNMbX9?FWMbX9 i word watchNNS#~jNNʡE?VBZZd;VB333333?VBPL7A`?i+2 word sleddingVBMbX9?NNMbX9i-1 tag+i word JJ heimersNNPSx&1ؿNNPx&1? i word ratioVBZNN+?JJV-׿i-1 tag+i word VBZ closeJJNNx&RBx&?i-1 tag+i word DT liltingJJ`"?NN`"޿ i+1 word dNNPSMbXNNSOnNNPh|?5?i+1 word populousRBSjt?JJSjtֿi+1 word dependsNNʡE?JJʡERB/$?NNP/$i-1 tag+i word NNS pushVBP+NN+? i-1 word andyNNPx&1?NNx&1i+2 word intermediateRBS㥛RBRS㥛?JJ7A`NNP7A`?i-1 tag+i word VB reformedVBN333333?JJ333333i-1 suffix hugRBx&?INx&i+2 word individualsVBS?VBGx&NNMb?i word balancesVBZMbX9?NNSQ?NNPsh|? i word vodkaNNS;OnNN;On?i+1 suffix pedWDT^I +@JJvDTMb?NNPMbX9@VBZKRBGz?NNRQ@JJSRQRBRv/@VBN+INK7ACDJ +VBS?NNPS^I +?VBG?5^I VBDZd;VBPNNSS㥛?i word advertisersNNPSZd;ONNSZd;O?i-1 tag+i word NNP measuringVBG/$ٿNN/$? i-1 word mainNNSOn?NN;On@JJoʡVBZ#~ji+1 word shortlyVBNK7A?VBDK7Ai+2 word halvedRBR"~j?JJR"~ji-2 word emergeNNCD~jt?NNPx&1?VBGzG?JJzG i suffix 975NNPQCDQ?i+1 word extrusionsJJ?5^I ڿNNSw/NNl?i word agnellisNNPS(\ @NNP(\ i word telepicturesNNP +NNPS +?i-1 tag+i word PRP sentVBNV-?JJV-i-1 tag+i word NNP buildingsNNS ףp= ?NN ףp= i-2 word itCCQ?INw/?JJRV-RPQ?DTʡERBSbX9ȶ?VBDx&1?NN`"NNS-VBZV- @VB"~ڿEXA`"UHq= ףpͿVBN{Gz?NNPM@PDTRQ?WP(\?VBPfffffCD$CMDRQؿJJjt?PRP$/$PRP9v?RB{Gz?RBR}?5^I@JJSx&1VBGV-?i-1 tag+i word , microwavesVBZq= ףpNNSq= ףp? i+1 word noDTHzGNNSFxVBN\(\?IN(\?VBZx& @NNP㥛 VBG7A`?VBP!rh?RP rh?VBDv/?FW+POSףp= WDTHzGVBp= ף?NNPST㥛 NNOnÿi-1 tag+i word VBP recognizedJJZd;VBNZd;? i word jetNNS㥛 NN;On@JJ$CNNP%Ci-2 word moroccoNNPSx&NNPx&?i-1 tag+i word VBP informedVBNK7?JJK7 i word ldcNNZd;߿NNPZd;?i word dazzlingVBGJ +JJ#~j @NNv/տi-1 tag+i word PRP$ titleNNSvNN rh?JJʡEi-1 tag+i word VBZ karenRBZd;ONNPZd;O? i-2 word winsNNS\(\NN5^I JJZd;ORB{Gz@i+1 word shakeoutJJ\(\?NN\(\ i word floatRBRMbпVBP;On?UHZd;RB9vVBy&1|?NNZd;?i-1 tag+i word DT completedVBNGz?JJGzi+1 word interpretationsVBGK7?NN333333ӿJJJ +i-1 tag+i word JJ thoughtVBN&1?NN&1ҿi-1 tag+i word NN looksNNSGz?VBZGzi-1 word everyVBD +CDFx@VBPRQпJJvNNS(\NNP"~RB!rhNN/ݤ@i-2 word chemicalsRB%CIN%C?NNS"~NNP!rhNNPS(\?JJ$C˿NN-?VBD"~i-1 tag+i word NNS movesNNSCl?RBCli-2 word unplannedJJMbX?NNMbXi+2 word electricityNNPjtNNPSjt?i+1 word manageJJRClٿVB +RBRQ?i-1 tag+i word `` seishoVB rRB/$NN)\(FW?5^I @i+1 word agreeVBJ +NNPSmNNSm?RBJ +? i-1 tag+i word IN superconductorNNMbX9?JJMbX9i+1 word outpatientVBNvJJv?i+1 word shownVBK7ANNSQοRBV-?i-1 word horseheadNNS rhѿNNP/$ۿNNPS"~?i-1 tag+i word TO escapeVBn?NNn i+2 word whomNNK7?JJK7i word foreignNNVBDQۿJJI +@NNS+NNPV-?NNPSK7A`i-1 tag+i word TO buyVBPn?VBDGzINMbXi-1 tag+i word -START- monthsNNS/$@RBtVֿNNPNbX9i word succesfulJJl?NNli-1 tag+i word JJ bansVBZ~jt?NNS/$NN rh i word u.s.aJJClNNPCl?i word somehowVBDJ +RBQ8@NNd;O NNP!rhVB㥛 i word soybeansVBZZd;NNPSL7A`NNSClg@NN"~NNPCli-1 word candyVBZlNNSRQ?NN9vJJEi+2 word schaferVBNVBD?i-1 word predictedJJZd;INn?DT= ףp=NNP$C?NNPS$CRB/$NNZd;?i+2 word nervousRBRQ?NNV- VBDKVBNPnVBP(\@JJuV?VBx&1i-1 tag+i word CC aaaJJCl@NNPCli word describedVBPClRBX9vVBZ|?5^VBOnNN(\VBDx&1?VBN+@i-1 tag+i word PRP intendedVBZv/VBNMb?VBD!rh?i+1 word advancedRB9vNNlRBRK7?CDKJJK?JJRK7NNPT㥛 @ i word truthNNS/$NNI + @JJ\(\NNP|?5^i-1 word loathsomeNNB`"?JJB`"i+1 word australiaJJMbNNPMb? i pref1 JJJSGzNNP^I +,@$v/ݿVBZd;JJrh|CDy&1INy&1VBZMNNS|?5^NN-VBDPnVBPʡEWDTPRP)\(NNPS(\@CC+VBNsh|??RB{Gz?i-1 tag+i word POS leadingJJK7?NN~jtVBG{Gz i word collarNNw/?JJw/i word conservativeJJ9v@NNP9vi-1 tag+i word JJ showsVBZK7A`?NNSsh|??JJd;Oi+2 word jammedNNSRQCDRQ?i-1 tag+i word CC proceedMDh|?5VBp= ף?NNOni word kerchiefedCCVBN;OnJJV-?i-2 word gamingNNSy&1NNy&1?i-1 tag+i word RB higherNNPףp= RBR|?5^?JJR}?5^I?i word astoundingJJL7A`?NNL7A`i-1 tag+i word NN provesVBZRQ?NNSRQ i word losersNNSףp= ?VBNףp= i word basicNN-VBNʡEƿVBP-ƿJJʡE@NNS;OnNNP^I +?i-1 tag+i word JJ diverseJJ ףp= ?NNJJR{Gzi-1 tag+i word CC fabianJJ333333NNP333333?i+1 word miamiJJlNNZd;NNPHzG@i-2 word healthcareVBPGzVBZGz?i-1 tag+i word `` okUH(\?JJ(\i-2 word everywhereVBP;On?VBG#~jJJ#~j?VBD;Oni-1 tag+i word RB poisedVBNbX9?JJbX9i-1 tag+i word WP eitherCC#~jDTx&1?RB-޿i-1 tag+i word RB harsherDTZd;JJRZd;?i word fireproofingVBGA`"NNA`"?i-1 tag+i word JJ aboutRBx&1INy&1@RP9vi-1 tag+i word RB understoodJJh|?5VBNrh|?RB\(\߿NNMbп i suffix irs VBN|?5^RB|?5^VBZ @NNS^I +@NNP9v NNPSNbX9 @NN/ݤVBPzGPRPv @VBrh|JJʡEi-1 tag+i word NN matchingVBG"~jJJʡE@NN5^I i+1 word jollaJJ ףp= NNP(\?VBN)\(ܿi word variousJJ~jt?NNP~jti-2 word phelanVBDףp= ?VBNףp= INQ?DTQݿVBG!rhܿNN!rh?i word controversyNN~jt@VBZJ +VBPENNSMbi-1 word presidesINGz?RPGzi word toshiyukiJJ{GzNNP{Gz?i-1 tag+i word CD remainVBP+?NN+i+1 word scandalVBG?JJZd;ONNx&1ȿNNPh|?5?i-1 tag+i word JJ randomlyRB1Zd?NN1Zdi-2 word proceduresVBGbX9@NNuVJJ/$i+2 word viewingVBZ r?VBP r i+1 word packVBNB`"JJB`"?i+1 word stayedVBPClMDCl?i word indictmentNNQ@JJQi-1 tag+i word NNPS codeNNrh|NNPrh|?i-1 tag+i word TO fundVB)\(?NN)\(i-1 word nominalNN/$?VBN/$i-1 tag+i word -START- morganNN1ZdۿNNP1Zd?i-1 tag+i word DT beanballsNNSCl?NNCli-2 word interestedNNvPDTClۿRBR-?JJR-JJCl?VBGv?i-1 tag+i word NNP blamesVBZm?RBmi-1 tag+i word , solidJJV-?NNV-i+2 word behaveNNPS$C?NNS$Ci-2 word excursionsRBK7?JJK7i-1 tag+i word VBN pcNNP;OnNN;On?i+2 word superpowerRBCl?NNCli-1 tag+i word PRP$ forceNN1Zd?JJ1Zdi-1 tag+i word DT annualizedVBNCl?JJCl i word guardsNNSMbX9NNvVBZS?i-1 tag+i word NNP judicialJJSNNPS? i+2 word dyesJJRX9v?JJX9vi word bellwetherJJDl?PRPENNX9vi+2 word bloodyNN+NNP+?i-1 tag+i word JJS exerciseVB+NN+?i word animationNN"~j?JJ"~ji-1 tag+i word `` coldVBNd;ONNPd;O?i-1 tag+i word DT denuclearizedJJx&1VBNx&1?i-1 tag+i word VBN mondaysRB rhNNPClVBZ/$޿NNSZd;? i suffix PERVBNClNNQ?NNPZd;׿i-1 tag+i word VBD underwrittenVBNnJJn?i+1 suffix ollCCQ?POSQCDx?JJMڿDT)\(NNPq= ףp?i-1 tag+i word NN parkNNx?RBQINOni word searchingVBGX9v?NNX9vi+1 word contendVBZ7A`ҿNNPSx&?NNSrh|׿i word drippingVBGn?NNni-1 tag+i word NN seeksNNx&ѿVBZx&?i word unitoursNNPQNNPSS㥛@JJS㥛i-1 tag+i word RB botheredVBNJ +?VBDJ +i+1 word tissuesJJK?NNKi-1 tag+i word VB inputNNSmVBN-NNK7A?i+1 word becauseRBRQ@RP333333VBZʡE?NNPS\(\IN}?5^I?POSMEXSNNP^I +?NNʡE @VBGx&1JJPnWDTMbVBPCl绿VBNx&1VB|?5^?CCMb?NNSE@RB;On@JJRx&1DT$CVBDFx i-2 word mr.VBG%C@DTx&1?NNPK7?VBN#~jVBZ r@RBDl?VBDPn@POSK7A`?NNSHzNN\(\FWX9v޿VBPE@JJ?IN|?5^?CD{Gz?VBX9v?NNPSClWDTףp= i-1 tag+i word PRP$ dueNN/$?JJ/$i-1 tag+i word NNS aNNPn?DTni tag+i-2 tag NNS INVBPV-NNQNNPGz?MD +NNPSMbпJJ㥛 ?DT!rhRP+NNS#~j?CDS㥛?JJSx&1VBN`" @VBZ ףp= RBv@RBRM¿IN?5^I ?VBG~jt@VBDJ +WDT|?5^?FWV-VBx& CCMbX9ĿEX~jt? i suffix nvyNNˡE@NNSA`"RB(\JJʡEi-1 word establishingJJrh|?RBrh|i-2 word nasdaqRBR!rh?JJR!rhJJ rh?VBZy&1NNSS㥛?NNP/$?NNjti-1 tag+i word JJ vanguardNN~jt?JJ~jti-1 tag+i word NN beforeRBʡE@VBD(\INv?NNv/i-1 word tradeVBG?VBPp= ף?PRP$Gz?WDT~jt?RBL7A`?RPsh|??RBR-VB"~PRP"~jIN+NNSrh|?JJ;OnNNNbX9?FWp= ףVBD= ףp=?DT~jtVBZ/$ӿ i suffix rgyNNPS-NNSPnNNE?JJq= ףp?i word starvedVBNʡE?INʡEi-1 tag+i word DT faithfulNN+?JJ+i-1 tag+i word RBR sustainableVBZS˿JJS?i-1 tag+i word NNP frescaVBZZd;ONNPZd;O?i word outflowNN}?5^I?JJ}?5^Ii word harddiskNNjt?JJjti-1 tag+i word RB doomedVBN"~j?JJX9vVBDOn?i-1 tag+i word JJ offersVBZ= ףp=?NNPSI +NNS;On?i-1 tag+i word TO speakVB9v?NN9vʿi word keyboardNNPFxVBPnпNNx&1@JJ;Oni-1 tag+i word MD mostVBx&1ؿJJS}?5^IRBSx&1?i+2 word bottlingNNS-?VBN-i tag+i-2 tag PRP CC VBZ`"?RB|?5^@VBDʡE?POS\(\VBP7A`?JJL7A`VBSINDTsh|?i-1 tag+i word NNP bidVB rNNMb?JJ^I +VBDQ?i word empowersVBZ}?5^I?NNS}?5^IԿi+2 word numbersVBPZd;?NNZd;i-1 word rollieNNPCl?NNSCli+1 word circularsNNPjt?JJV-CDKǿ i-1 suffix !NNV-?NNPVBP+UHL7A`?i word illustratedNNP'1Z?VBD/$?VBNClJJ"~i+1 suffix werCD rJJA`"INClRBI +?DT%C?JJR`"?WPʡEֿNNSQ?VB?5^I ?VBGo!@NN5^I ?RBRʡEVBPp= ףVBNSVBDjtPOSClWDT9v?VBZI +?NNP+ηi+1 word vlasiNN/$NNP/$?i+1 word observeVBZPnNNSPn?i word excitementNNSZd;ONNDl@JJ1ZdVBNʡE i suffix UNYNNq= ףpNNPq= ףp?i+2 word novemberNNSx&VBGMb?RB$C?NNV-i-1 tag+i word RB academeVBDMbNNMb? i word cardsNNPSClNNSV-?NNrh|i-1 tag+i word JJ braNNSRQNNRQ?i-1 tag+i word IN racketeeringVBGx&1NNx&1@i-1 tag+i word DT sovereigntyNNx&?JJx&i-1 word courseIN"~DT+?NNS/$NNnWDTQJJʡE@i+1 word warmingJJZd;O?VBZd;O߿i-1 tag+i word , delicateJJMbX9?NN'1ZĿFW\(\i+2 word complianceNN&1?JJ&1i-1 word mealyRB rh?NNIN7A` i+2 word inc. NNPSDl @''|?5^?VBP%CNNP!rh@CDEJJM INv/?NNS rVBffffffRB-NN(\POS|?5^ i word coinJJQNNPQ?i-1 tag+i word DT conversionNNPn?JJPni-1 tag+i word CD classNNT㥛 NNPT㥛 @i-1 tag+i word NNP bros.NNPSy&1?NNPy&1i-1 tag+i word `` uhJJzGUHzG@i-2 word tithingNNS?NNPSi-1 tag+i word DT covertJJy&1?NNy&1 i word profNNSMbXNNMbX?i-2 word clarinetVB+NNSmNNL7A`?i-2 word mountainRB rhIN rh?NNP rh?JJbX9NNV-տVBP +?i-1 tag+i word NNS overNNףp= VBDClVBPx&1ԿRB ףp= ?INMbX9@RP/$i+2 word wearingNNSA`"NNV-?JJ"~VBDCli-1 tag+i word PRP revertsVBZrh|?VBDrh|i word messiaenNNS+NNP+?i-1 tag+i word RBR circumspectNN rhJJ rh? i suffix .S.NNP|?5^NNSnJJ1Zd@RB-ֿCD rhݿi-1 tag+i word IN asiaNNCl?NNPCl绿i+2 word colleaguesNNS&1?NNnJJ(\?i word immunityNNT㥛 ?JJT㥛 п i word jailNNStVNNx&?JJ+i-1 tag+i word , foughtVBNoʡ@VBDoʡi-2 word contractionVBNlRBl?i-1 tag+i word RB choppyJJ9v?RB9vi-1 word learningNNP rh?NNPS rhNNK7A`VBPK7A`?WDTGzRB rIN"~j?DT/$?i+2 word profitabilityVBG/$?RP!rhNN/$RB!rh? i suffix hurDTGzJJ rhNNP9v@i+1 word weillNNPZd;O?VBNZd;Oi-1 word activistsVBPA`"?NNSA`"i-1 word prosecutionVBD(\VBNDlѿJJn?i-1 tag+i word RB tapedVBN!rh?JJ!rhi-1 tag+i word VBZ tailJJS㥛NNS㥛?i-1 tag+i word IN chekhovJJ#~jNNGz޿NNPS?i-1 tag+i word NN putNNSQVBZd;ONNSVBD/$@VBNS@VBZv i-1 word lackVBNEJJ@NN|?5^i-2 word twistedDT/$WDT/$? i-2 word rudeRB|?5^?NN|?5^i+2 word unificationCC{GzDT{Gz?i-1 tag+i word IN dutyNN\(\?JJ\(\Ͽi-2 word creatingNN;On?RB!rhJJ"~j?VBN'1Zi-1 tag+i word NNP evenVBZQRB?JJx&1i word defamatoryNNrh|JJrh|?i-1 tag+i word JJ advisoryJJ!rh?NN!rh i word pocketNN1Zd?JJ1Zd i word extraRPq= ףpJJˡE@NNlVBDMJJROnRBZd;i-1 tag+i word NNS richlyRB\(\?VBP\(\i-1 tag+i word PRP returnVBP +?VBD + i+1 word done JJSNbX9VBP;OnDT9vJJGzֿNN rh?JJRMbX9?RBZd;O?PRP$\(\߿RBRMbX9 i-1 word coreRB?5^I IN-NN;On @JJ`"i tag+i-2 tag PRP$ VBPNNE?JJn?NNPB`"VB$CNNPSB`"?VBG)\(i-1 word continuingJJZd;O@VBG-NN{GzRBx&1NNP5^I ?i-1 word discloseRPZd;DTS?VBGZd;?JJR/$?JJ/$INS˿i-1 word emeryJJnNNPjt?RBRV-RBV-@INq= ףp i+2 word n.c.NN㥛 NNP㥛 ?i-1 tag+i word RB reinstalledVBNjt?JJjtֿ i-1 word thanVBGVBNK7VBQ@IN`"JJS/$?WP{Gz?VBZS?DT(\ҿCDw/?CCʡEPDTZd;RBS/$RBR9vPRP$ʡE?VBDʡE?NNS\(\߿NNP= ףpJJRn?PRPA`"?RBjt?VBPQ?JJףp= ۿRPI +NN9vi word resolutionsNN+NNS+?i tag+i-2 tag NN VBZWDT'1ZĿVBPףp= JJm?''bX9?RBA`"INw/VBGCl?NNV-?JJRX9vVBNENNPx&?VBV-NNPS%CԿVBDtV?NNS+?POS rhRPX9vֿVBZ+߿i+1 suffix mnsVBD-RBJ +?JJV-?i+1 word refundsVBDp= ף?JJʡE?VBNp= ףؿNNʡEۿ i+1 word low VBZʡEDTmNNSV-ҿRB+@VBDx&@JJ$CIN(\ؿVBClٿNN;On?VBN$Ci word pioneerNNPSJ +NNL7A`NNPˡE?i+1 word rumackJJB`"۹NNPB`"۹?i word brooklynNNnʿNNPn? i word movingVBGZd;O@NNQ JJ"~ji tag+i-2 tag CD JJ NNʡEVBNx?CDzGWDT(\RBA`"?IN(\?VBZ{Gz?JJ/$NNP +οNNSV-VBP5^I ?VBDMbPi word preoccupiedVBD~jtVBN~jt?i-1 word cellsVBP/$VBNjt?JJ!rh?VBD'1Zi+2 word equitiesNNNNP?VBZ+׿NNS+?i-1 tag+i word PRP$ lateJJ-?NN-i-1 tag+i word NNP americanNNPx&1JJx&1@i-1 tag+i word NNS tradeNNS㥛?INnVBPʡE?VBNCl߿i word reviewsVBDx&1VBZ?NNSʡE?NN5^I i-1 tag+i word NNS creptVBDX9v?VBPX9v i word aseaNNPSDlNNPDl? i word lauderNNPSK7A`NNPK7A`? i+2 word bedINCl?NNS㥛 VB㥛 ?VBGK?NNKRBCli-1 word capitolNNPSʡE?NNPʡEi-1 tag+i word PRP muchVBZNbX9RBCl?JJ7A`?i+2 word speakNNZd;?VBZZd;VBrh|ϿVBPrh|? i word burgerRBh|?5JJRMbпNNMb?INMNNPK7A?i-1 tag+i word DT parksNNP㥛 NNPS ףp= @NNSNbX9i-2 word storeNNP`"?NNSMbX?NNMbXJJ`" i+2 word sungJJ~jt?NN~jti-1 tag+i word RB flowVB(\µVBP^I +?VBDV-i-1 word friendlyJJMbX9NNSMVBNK7A`NNףp= ?NNPMbX9?i+2 word rc6280PDTʡEVBN|?5^@VBDw/i+2 word antiqueJJK7ANNK7A?i-1 tag+i word -START- laNNP(\?VBN)\(ܿJJ ףp= i-1 tag+i word CD bidNNS+VBNlNN~jt@ i-1 word of$S?RBRI +CD#~j?VBPX9vVBZoʡPRPѿRB5^I ˿NN@CC`"PDToʡݿJJS㥛 ?VBD$CWPZd;?FW333333?NNPCl?RBS"~PRP$L7A`VBN)\(VBGzJJ|?5^?JJRRQ?UHQ?NNSx&1?NNPS?INw/VBG^I +?WDT%C?DT333333ۿRP&1i-2 word enduredNNQJJQ?i-1 tag+i word IN giveVBZ~jtVBP~jt?i+2 word criticismsVB#~j?JJ#~ji tag+i-2 tag FW VBFWףp= ?NNףp= i-1 tag+i word VBD firstJJ%CܿNNPx&1?RBMbX?VBNvi-1 tag+i word DT bringsVBZCl?NNS~jtNN1Zd i word tntNNrh|NNPrh|? i suffix satNNPSuVͿNN"~VBD%C @VBNn?VBPK7NNS!rhNNPuV?VBT㥛 i+1 word repNNmNNPm? i word signedVBD|?5^?VBP\(\VBN/$?JJKi-1 tag+i word VBN seminarsNNS\(\?VBN\(\i-1 tag+i word JJR specificJJK?NNKi-1 tag+i word JJ gradesNNSM?NNM¿i-1 word aggressiveNNX9v?JJX9v"i-1 tag+i word -START- transcanadaNNmNNPMbX9?VBsh|?ݿi+2 word summaryJJx?NNxi+1 word airborneJJ|?5^?NN|?5^i-1 tag+i word IN motorolaNNPSV-NNPV-?i-1 tag+i word NNP lendingNNףp= ?VBGףp= ÿi-1 tag+i word DT seoulJJrh|NNPrh|?i-1 tag+i word NN boxesNNSʡE?NNʡEi+1 word graduallyRBRS㥛?JJRS㥛 i suffix busVBPB`"NN(\?JJp= ףNNPx&1?i-2 word union VBZ"~DTQ޿RB7A`?NNZd;OVBDQ?PDTQ?VBN +VBPʡE@VBʡEVBGCl@JJS㥛i-2 word concoctsNNS?NNPSi-1 word unsolvedNNPFxNNPSFx?i-1 tag+i word NNP bondNN~jth?NNP~jthi-1 tag+i word NN splitVBDm?VBN?5^I ?RB rVBZ)\(NNS&1VBv/NN)\(?i-1 tag+i word PRP beginsVBZPn?VBDPni-1 tag+i word POS ownVBPDlJJSZd;NN-RB|?5^JJQ@i+1 word uncommonRBMb?DT|?5^PDTx&1i+1 word results WDTMb?VBZq= ףp?VB1ZdJJJ +@INMbRBRʡEVBNA`"?RBOnJJR= ףp=?NNP\(\NNL7A`VBD#~j?i-1 tag+i word DT luxuryNNl?JJlڿi word ticketronNN/$NNP/$? i suffix proJJ~jt@NN^I +FW5^I @NNSPni-2 word temporarilyRBDlINDl?i word leadersNNSK7A`?NNPK7A`i-1 tag+i word NNS involveVBP +?JJ +i-1 tag+i word DT leisurelyJJK?RBKi-1 tag+i word NNS observeVBPZd;O?RBZd;O߿i-1 tag+i word NNP coastedVBN&1VBD&1?i-2 word positionsVBV-?NNS?VBD~jt?VBNT㥛 пVBP333333JJ"~i-1 word greaterNN/$?JJK7?VBd;Oi-1 tag+i word IN arabicNNZd;߿NNPZd;?i-1 word fightingVBNRQRBV-?RPV-NN-?JJ#~ji-1 word brazilianNNK7A?JJK7A i word embryoNNffffff?VBDffffffi-1 suffix iet RBFxVBD?FW"~?VBN+JJoʡ?VBG|?5^?NNQ?INsh|??VBZ ףp= ?NNS!rhNNP~jt?i-1 tag+i word VBD clydeNNNNP?i-1 tag+i word , moldingVBGSݿNNS?i-1 tag+i word DT fluffyJJp= ף?NNp= ףؿi-1 tag+i word IN tvNNv/ @JJMNNPS㥛i+1 word outpostJJv/NNv/? i-1 word d&bVBZ-?NNS-i-1 tag+i word RB quotedVBNx?JJxi+1 word network NNv?'' rhJJX9v?DT?5^I ?NNPjt?RB1ZdCC?5^I ҿPOS rh?NNS'1Zi+2 word cutoutsVBNQVBDQ?i-1 tag+i word VB rewardsNNS/$?VB/$i-1 tag+i word TO osakaVBV-NNPV-?i-1 word seven JJQ?DTK7VBPClWDTZd;O?INSNNSCl?NNPQVBDʡE?VBNʡEi-1 tag+i word RB regardRB%CVBp= ף@VBP5^I i-1 tag+i word NNP digenovaVBZHzGNNy&1NNP(\? i+1 word batNNjtJJjt? i+1 word backVBZMb?PRP$X9vPRPX9v?JJ/$IN-NNSv/RBQVBDGz?VBN#~j@VBPRQ?NNP{GzVBGFxٿNNףp= ?WDTx&?VB!rh?NNPS&1i+2 word shortlyVBNK7A?JJK7A i-1 word riscNNSʡE?JJʡE i+2 word ones VBQ?JJSzG?RBSzGJJRʡEۿLS/$RBV-NN/$RBRK7A@VBPQDTV-?i-1 tag+i word CC loseVBp= ף?VBPsh|?RBCli-2 word employmentIN ףp= RB ףp= ?i-1 tag+i word JJ perINZd;?NN1ZdJJOni-1 tag+i word DT particularJJ|?5^?NN|?5^i-1 tag+i word NN dealsVBZS?NNS|?5^?NN-i+2 word translatedSYM|?5^?NN|?5^i tag+i-2 tag DT POSNN ףp= VBG"~?RBx&1JJ#~j?NNP +?i-1 tag+i word IN americansNNPS~jt?NNS +?NNP}?5^Ii word petrifiedJJx?NNnVBN{GzԿi+1 word moneyJJMb?INA`"?VBGK7?CDZd;OVBD~jt?NNSx&1VB5^I @RPvJJS(\?JJR;On?VBP/$WDTK7RBS㥛DTI +@NN^I +RBRVBNoʡ?VBZ$C?NNP{Gzi-2 word nerveINSWDTS?i-1 tag+i word NNP peaceVB= ףp=NNK7A?VBDʡEi-1 suffix pecJJbX9NNPbX9?i-1 tag+i word TO convictionsVBK7ANNSK7A?i-1 tag+i word , unexplainedJJ rh?VBD rhݿi-1 tag+i word -START- saidVBDl@CCw/JJv/NNP|?5^ɿVBSNN+i-2 word reinvestedDT+IN+?i word bubblelikeJJrh|?NNrh|߿i-1 word kicksINZd;RPZd;? i word pay VB~j@CC rhVBNQVBPV-@RBRQJJZd;NNCl@VBD7A`VBZ|?5^NNSbX9NNP/$i+1 word cellularVBNK7A?JJoʡDT rh?NNPh|?5?VB rhPDT rhi-1 tag+i word POS christianJJx&1NNPx&1@i-1 tag+i word VB threatenedJJuV@VBDA`"VBN`"i+2 word postingsNNMbX9?JJClNNP/$i-1 word recallVBKVBGK?i+2 word dissentNNjt?JJjti+2 word intenselyRB1Zd?JJPnVBD$Ci-2 word coverJJOn@NNSCl?NNV- i+2 word rateVBNMb@VBZ-?NNPJ +NN ףp= CC5^I ?PDT;On?RB&1DTw/?VBP㥛 NNStV?CDS?JJˡE@RBRMbWDT{GzJJRX9v?IN&1? i word s.aNNPSV-NNPV-? i-2 word gainVB;OnRBGzNNEFWsh|?VBNCl?JJ1Zd?INGz?i-1 tag+i word DT anthraxNNSFxѿNNFx?i-1 word partiesVBNGz׿JJV-?VBDQ i word offCClFW`"ֿVBNKCDmVBPy&1JJy&1VBZ(\VBDKIN9v@NN+wNNPw/RBK7 @RPfffff!@NNSMbVBp= ף i+1 word norJJ!rhVBZ|?5^NNS(\@NNP333333NNPS9v?VBDJ +VBN!rh?i-1 tag+i word RBR northJJSۿRBS?i word investigatorsVBZL7A`NNSL7A`?i-1 word hiresVBNx&1JJx&1?i-1 tag+i word VB strengthenedVBN/$?VBD/$ݿi-2 word reclaimNNSCl?NNCli+2 word modelsDTʡE?VBN'1ZJJʡEݿVBD'1Z? i word movedNNSʡEJJbX9NNʡEVBDˡE @RBRףp= VBN!rh?RB-i-1 word fallingINZd;NNS5^I RPMbX9?RB +?i+2 word relieveVBZMbVBPl?NN#~ji-2 word dioxideVBPS㥛NNS㥛?i-2 word layoffsVBGZd;ONNh|?5?VBP|?5^ٿi-1 tag+i word DT commonwealthNNPSK7ٿNNPK7?i-1 word wrongINRQ?DTRQJJtV?NNtVi-2 word afghanVBNK7A`VBDK7A`? i word goyaNNNNP?i+2 word concerns VBNQRB{Gz?DTZd;OݿVBV-?JJ~jt?VBDh|?5?PDTA`"?VBGCl?NN"~VBPbX9?NNP rhi-1 tag+i word IN swellingVBGQ?JJQӿi word frostedNNPS/$ٿNNP/$?i word underminingJJuVVBGuV?i-1 tag+i word TO warsawVBrh|NNPrh|?i word expiredRBZd;VBNnJJ/$VBDX9v@i+2 word redistributionJJ}?5^I?NN}?5^Ii+1 word creaturesNNHzG?JJHzGi-1 tag+i word NN posedNNzGVBNJ +?JJd;Oֿi word criminalJJ#~j?NN(\NNPMb?i+1 word monitorVBClRBOn@NN7A`ҿJJRnRBROnJJ7A`?i+1 word nakedJJZd;@RBsh|?NNP;Oni-2 word excludeVBN?NNi-1 tag+i word VBN timesVBX9vNNSX9v?i-1 tag+i word VBZ nordineNNP rh?JJ rh i-1 word why NN(\VBP(\@WDT ףp= RBZd;OݿINOnNNPK7AVBףp= ?NNPS ףp= VBD= ףp=DTʡE?MDZd;?i-2 word fightJJ~jtDTZd;?NNZd;VBN~jt?i+1 word slouchDTRQ?RBRQ i word wovenJJHzGVBNHzG?NNHzG i word hughesNNP{Gz?NNS{Gzi+1 word ribbonsVBNʡE?JJʡE i+2 word ore.NNQNNPQ?i+2 word fultonNNSClNNK7?NNP^I +i word insightsNNPSffffff?NNPffffffi-1 tag+i word NNP luresVBZ?NNSܿi-1 tag+i word TO copeVBx&?NNx&i-1 tag+i word VBD respondedVBD+VBN+?i-1 tag+i word JJ nonstopJJCl?NNCli-1 word likelyJJL7A`RBnINJ +DT/$NN ףp= @ i+1 word fedJJQ?NNPQ˿i-1 suffix oldPRP$ rhNNPSHzGٿJJSS?VBGSJJRM?NNv/?VBNZd;?WDTbX9NNS +RBq= ףpJJv/?CD}?5^I?INDT+VBZ= ףp=RPrh| @VBDNbX9NNPx&1RBRuVPRP rh?EXp= ף?i word requiringVBG= ףp=?NN= ףp=i-2 word intergroupJJR{Gz?RBR{Gz i+2 word boysVBHzG?NNPHzGi-1 tag+i word PRP$ automobileNN+?JJ+i+1 word miscarriagesVBDl?JJDli-1 tag+i word NNS callsVBZv?NNSv߿i-1 tag+i word NNP remainsVBZˡE?NNSˡEĿi+1 word salingerNNPSQNNPQ?i-1 tag+i word VBD subduedVBNffffff?JJffffff i-2 word taleVBNM?NNM i suffix .J.JJKNNʡENNPK7 @PRP$V-i-1 word masksNNS)\(JJףp= ?NNGzi word efficiencyNNSQNNˡE?RB;Oni word tariffsNNSQ?NNClNNPSCl?NNPQVBP/$i-1 tag+i word DT mumbledVBN?JJffffffVBD333333i-1 tag+i word NNP appearedVBNԿVBD?i-1 suffix terJJS+VBGQ@RPB`"۹?NNZd;?FW/$VBQ?RBRQNNPS?INZd;OVBDS㥛?VBP1Zd?JJˡEDTQRBJ +NNSKPDTuVJJR/$VBN= ףp=?WDTy&1 @NNP~jt?PRP$zGʿVBZrh|PRPx&?CC"~ji-1 tag+i word NN acquiresNNSSVBZS?i-1 word perezFW㥛 NNPGzINMb?i-1 tag+i word '' offerCD$CNN!rh?NNPv/ݿi-2 word representativeNNPSffffffֿNNPffffff?i-1 tag+i word DT cardNNK7?JJK7 i suffix -94CD ףp= ?JJ ףp= i-1 word paroxysmalJJA`"?NNA`"i-1 tag+i word RB contractingVBGMbX?NNMbXѿi-1 tag+i word IN systemicJJp= ף?NNp= ףi-1 tag+i word JJ findVBnҿVBPGz?NN|?5^ɿi-1 tag+i word IN l'orealNNPS9vڿNNP9v?i-1 tag+i word RBR depressVBA`"?JJA`"i-1 word passengersVBNMbXJJQVBD$C?i word multilevelJJn?NNni-2 word scuttleVBD?5^I VBN?5^I ?JJtV?NNPtVi+1 word legalNNPx&?VBG7A`NNClFWʡE?VBNSJJ/$ @INCl?DT(\?i word crawfordJJ~jtNNPtV?NNK7i tag+i-2 tag TO RBJJSNNQ?JJR{Gz?RBR/$VBP;OnNNSMb?CDA`"?VBHzGNNPS`"?RBuVINK7?DTrh|?NNPHzG?VBG +?VBNV-UH/$i word pegasusNNSNNPS?i word defensesVBPZd;NNSZd;?i-1 word euromarketVBZh|?5οNNSh|?5?i-2 word illegalNNSZd;O?NNZd;OINS?WDTS i-2 word onceVB}?5^I?NNʡE?PRP$GzVBZZd;OPRPGz?DTzG?NNS$C?VBNS㥛JJ^I +VBDQVBP@RBGz IN-ۿNNPi-1 tag+i word DT forestJJSlNN~jt?RBV-߿ i-2 word pcsJJX9vVBZ;OnNNS;OnVBQNNʡEPDT;On?VBNX9v?VBP^I +?i-2 word blurryRB|?5^?JJ|?5^i-1 tag+i word NNP nothingNNCl?NNPCli-1 tag+i word TO bothCCV-?DT-?PDTS@VB/$ i-1 tag+i word VBZ highJJtV?RBtVֿi+2 word votingNNMbVBD ףp= VBNPnVBPuVWDT㥛 ҿRB㥛 ?IN㥛 ?VB(\ @i-2 word intelligenceNNST㥛 ?WDToʡ?INoʡVBZMbȿVBD&1i+1 suffix hogJJ?5^I ?RB?5^I i-1 tag+i word `` unlessINI +?WRBI +i+1 suffix vil JJ?5^I NN\(\VBD5^I ӿVBN r@VBPףp= ?VBZ1ZdVB-RB!rh?DT!rhNNSvNNP㥛 @i+2 word condemnNNPS^I +?NNP^I +i-1 word brochuresVBN|?5^?VBD|?5^i-2 word addictsVB"~JJ"~?i-1 tag+i word -START- earlierJJRxRB rh?RBR+@NNPni+2 word exposureVBZtVJJsh|??POStV?NNsh|?i word autumnsNNSV-?JJV-i-1 word thwartJJˡE?NNˡEi-1 tag+i word POS visitsNNSV-?NNV-ݿi+1 word membershipsJJS?NNSi-1 word orthoNNPSV-NNPV-?i-1 word crazyNN= ףp=ʿIN= ףp=? i suffix ban VBNNʡE?VBDClVBNvVBPףp= ?NNSDlJJ|?5^ @RBףp= VBZףp= NNP"~ji-1 tag+i word PRP$ vagueJJbX9?NNbX9i+1 word becomeVB$CNNjt?JJ!rhVBZ\(\?NNS%C̿NNPni+2 word preludeVBNMbX?NNPMbXi+2 word rothschildsCC333333?RB333333i-1 tag+i word WRB tradingVBG'1ZNN'1Z? i suffix vetNNS+NN+? i word dozenNNGzNNPGz?i-1 tag+i word DT leagueNNʡE?JJClNNP)\(i+1 suffix ariNNPm?FW;OnJJKNN7A`?INxƿi-1 tag+i word MD investVB?NNi-1 tag+i word NN smellsVBZ ףp= ?VBD ףp= i-1 tag+i word DT seeminglyRBCl@JJ-NNMbi word parentalNN#~jJJ#~j?i-1 tag+i word NNPS cowsVB+NNS+?i-1 word salingerVBZ rhPOS rh? i-2 word faceRPp= ףNNPX9vVBGsh|??NNSJJRS?JJx&?INp= ף?i-1 tag+i word `` continuedVBNA`"@JJffffffVBDX9vi-1 tag+i word DT eveningVBG+NN+?i-1 tag+i word PRP keepsVBZzG?VBzGi-2 word subcommitteesVB+VBP"~j?JJni-1 tag+i word DT losingVBG|?5^ٿJJ~jtӿNN(\?i-1 word neededNN"~?RBSA`"?JJSA`"CDQRBK?INKNNSOn i suffix CIANNPSʡENNI +NNPx&1@ i-2 word try VBZd;?VBGMbIN)\(NNS;On?NNPNbX9NN-VBPA`"WDTMbXJJx&1?DTn?i+1 word creepingNNB`"?JJB`"i-1 word expensiveNNS?JJS i word naziJJ#~j@NNOnۿNNP\(\i+1 word quarryNNS?JJS i-2 word flowJJ(\@NN(\i+2 word importanceNNS +VBV-?RBB`"?NN +?VBDPnJJB`"VBZV-Ϳ i-2 word boysVBHzG?VBPHzGi-1 tag+i word DT meritNNMbX9?NNSMbX9i word acquaintedVBNCl?JJCl i-2 word cost RBNbX9?PDTS?VBN{GzNNS{GzVBGK@NNClJJV-IN rDT%C?i-1 tag+i word NNP worriesVBZMbX?VBPlNNSX9vi-1 word recommendationsVB-޿VBPuV?VBG rh?JJjti-1 tag+i word IN appealsNNS/$NNPˡENNPSL7A`?i-1 tag+i word IN abstractJJ~jt?RB~jti-1 tag+i word CC bonusesVBZSNNSS?i-2 word midtownNNbX9?DT5^I PDT5^I ?VBGbX9޿ i word crownNNDl?JJtVVBP9vi+2 word standardRB~jt?NNS?5^I ڿNNPB`"?VBHzGѿJJh|?5NN7A`VBDClVBNCl?i-1 word commonlyVBNZd;O?VBP^I +?JJZd;OVBZ;OnVBQNNʡEi-1 tag+i word IN facsimileNN#~j?JJ#~ji-1 tag+i word JJ appleNNPS;OnNNP;On?i tag+i-2 tag VBN ``NNPQ?DT-PDT-?NNMJJy&1i-1 suffix ony INV-VBZZd;ONNPK7A`ݿNNHzG?VBNQ?RBRl?VBPp= ף?JJREȿVB+VBDMb?WDTV-?JJ`"i+2 word handlesCDffffffNNPSV-?NNffffff?NNPV-i+1 word gamblingNNS9vڿJJ9v?i word reinforceVBh|?5?NNh|?5i+2 word offputtingVBZV-?NNV-߿i word usefulnessNN;On?NNP;Oni-1 tag+i word VBG helpsVBZ\(\?VBx&1RP㥛 i-1 tag+i word VBP eitherCCGzDT7A`?RBRzGRB{Gzi-1 tag+i word VBZ analysisNN/$?JJ/$i-1 tag+i word DT presidentsNNPSV-?NNPV-i word developsVBZHzG @VB#~jNNS{GzFW~jti+1 word anticipatesVBNbX9NNbX9?i-1 word microprocessorNNS㥛 VBNX9v?VBDX9vVBZ㥛 ?i+1 word holdsNNPoʡ?NNʡE?VBPL7A`UHx&1JJ?5^I DTOn i word lockedVBNK7@JJMڿVBDK7A i word liarJJVBS㥛ԿNNCl?i-1 tag+i word , combinedVBNCl@JJMbVBDV-i-2 word minesNNPM?JJMi-2 word invariablyJJR ףp= RBRK7A`?NNʡEi-2 word sufferingJJMb?NNMbi+1 word pennzoilWDTS㥛INS㥛?i-1 tag+i word DT documentaryJJB`"NNB`"?i-1 word theaterNNSZd;ONNZd;O?VBDPn?CC"~jVBNPnؿRB"~j?i-2 word delayedNNSoʡ?JJsh|??NNoʡݿVBNB`"ѿRBnIN7A` i+2 word heroRPy&1?INy&1i-1 tag+i word JJ programmingVBGQNNQ?i-1 tag+i word RP moreJJR|?5^RBR|?5^?i word revolutionNN+NNP+?i-1 tag+i word IN delayedVBNJJ?i-1 tag+i word NN orderNN+?NNP+i-2 word shoresNNˡENNPˡE?i word violatesNNS ףp= JJZd;OVBZK7A`@i-2 word combustionVBNX9vJJX9v?i-1 tag+i word DT whollyRB?5^I ?JJ?5^I i-1 word deluxeNNS?JJSi-1 tag+i word VBP murderVB(\RBRrh|NN/$?i+1 word takesDTxWDTE?IN/$ݿ i suffix eepCC^I +FWX9vοJJ/$@IN rVBZ(\¿VBM@RB- @NNlڿNNPh|?5NNPSX9vVBDʡEPDT~jtVBNX9vVBPK7A@NNSh|?i+1 word unisysWDT rhIN rh?i-1 word pearsonNNSV-NN(\?JJSVBh|?5i+1 word fernandoVBZ-?JJ-i+2 word recreationalNNSx&1?NNx&1i-1 tag+i word TO bidVBX9v?NNX9vi-1 tag+i word TO meetVBK7?NNGzNNPˡEi-1 word tidalNNCl?JJV-VBPNbX9ؿi-2 word columnRBMbX?VBNzGJJ+i-1 word medicalNNP/$?NNPS/$NNVBD?i-1 tag+i word CD poundsNN|?5^VBZHzGNNSףp= ?i-2 word landscapingVBCl?JJCli+1 word timetableDT~jt?JJRQ?NNRQIN~jt i word moanVBjt@VBPrh|NNNbX9i word reshuffleNN}?5^I?VBD}?5^Ii-1 tag+i word NNPS copyVBPZd;O?NNPZd;Oi-2 word suspensionVB+׿VBP+?JJ"~NNClINv@i-1 tag+i word VBZ includedVBN1ZdJJ\(\VBDbX9? i word teethNNSˡE@NNʡEJJMbi word crusadeNNM?NNPMi-1 tag+i word JJ upperINʡENNPʡE?i+2 word demandedNNS㥛 NN㥛 ?i+2 word sharpJJffffff?INy&1?NNS rhNNp= ףVBD+ÿVBNQ?WDTy&1i word journalistsNNSMbX9?NNMbX9i-1 tag+i word NNP flightNNP-ۿNN-?i word goodyearNN-NNPbX9?VBPK?JJffffffi+1 suffix vid VBDQѿJJR= ףp=RBR= ףp=?VBNQ?RB9v?VBZףp= @JJKNN@NNS/$ݿNNPzGʿVBPQINh|?5 i+2 word goneWDT333333?IN333333i word renderedVBNZd;?VBDZd;i+2 word providedJJy&1NNSNbX9?NNPSNbX9ؿNNy&1?VBD/$@VBN/$i-1 suffix cioNNS?JJ-NNPx&1i-1 tag+i word RB bestedVBNx?VBDx޿i-1 tag+i word JJ deficitsVBZd;ONNSd;O?i-1 tag+i word VBN setJJVBNV-?NN1Zdi-1 tag+i word DT alumniNNS rh@NNL7A`JJrh|ϿVBV-i-1 tag+i word DT laggingJJ(\@NN(\i+1 word nipponWDTK7A`INK7A`? i word minorsNNSCl?JJCl i word nbiNNPS"~jNN(\NNP㥛 ?i-1 tag+i word IN abundantNN)\(ԿJJ)\(?i-1 tag+i word NNPS divisionNN;OnҿNNP;On?i+2 word revisedSYMv/ͿVBP'1Z?LS(\?INˡE?DTˡEVBFxNNsh|?i-1 tag+i word NNP leftVBNMb?NNPMbi-1 tag+i word NN athleticJJ|?5^?NN|?5^ i suffix benJJFxNNPFx?i+2 word berkeleyINʡE?RPʡERB#~j?NNP#~ji-1 tag+i word CD engineerVBZGz߿NNGz?i-1 word peddlingNNSm?PRP+?NNL7A`i-1 tag+i word IN poolsNNSv?NNvi-1 tag+i word RB changeVBOnVBPK7?NN/$?VBDjti+2 word bandedNNSE?NNEi-1 tag+i word IN unpleasantJJ +?NN +ֿi-1 tag+i word CD industrywideNNw/JJw/?i+1 word presenceVBN(\?NN/$NNPtV?JJFxVBPS i word holderVB#~jNNV- @RB333333JJRQi-1 tag+i word -START- thirdLSx?JJKNNPsh|?i-1 tag+i word -START- effortsNNSp= ף?NNPp= ף i word acluNN{GztNNP{Gzt?"i-1 tag+i word -START- catastropheNNPV-NNV-?i-2 word forfeitureVBNClJJ?VBDK7?i+2 word trousersNNSK7ANNDl?JJOni-1 tag+i word VB servedVBN-VBD-@i-1 tag+i word -START- burmahVBGzNNPGz?i-2 word appointmentNNPl?NNli-1 tag+i word NNP enoughRB +?NN + i word keckNNSʡENNPʡE?i-1 tag+i word NN wrackedVBDMbVBNMb?i-1 tag+i word NN quotasVBZffffffNNSX9v?NN"~i word regulatoryNNPSK7NNPK7?i-1 tag+i word VB pendingVBGZd;?RPZd;i+1 suffix tapCD(\JJS㥛?NNPCl˿i-1 tag+i word VBZ comingNN&1VBG&1?i+2 word plentyVBNCl@VBDCli-1 tag+i word IN projectedVBNK7A`?JJK7A`i-2 word mercuryNNPGzNNGz?i+2 word driedRPV-RBV-?i-1 tag+i word -START- factoryNN-@RBJ +JJS㥻NNP/$i-1 word wasatchNNP\(\?NNPSMbXɿVBDMbi-2 word wedgedVBGʡE?NNʡEi+2 word developsJJQ?NNQ i suffix oakNNX9v?JJx&1NNSNbX9 i+2 word eveNNy&1CDy&1?i word heimersNNPSx&1ؿNNPx&1?i-2 word havensVBN`"޿JJ`"? i-1 word deepNNZd;@NNPZd;ONNS+VBGCli-1 tag+i word , usedVBNZd;JJZd;OVBDd;O@i-1 tag+i word RB failedVBNClJJFxVBD\(\@i-1 tag+i word TO harcourtVB/$ӿNNP/$?i-1 word charlesNNQNNPQ?i-1 tag+i word VBG risingVBGoʡ?NNoʡi+2 word portionVBZV-?VBV-¿RB(\?JJ(\ڿ"i-1 tag+i word -START- blockbusterNNףp= NNPףp= ?i+2 word teachJJS}?5^I@RBS}?5^I i word frescaVBZZd;ONNPZd;O?i-1 tag+i word RBR positionedJJw/VBNw/?i+1 word modificationsVBDoʡ?RBRX9vNNX9v?VBNoʡ i word baldJJ$C?VBD$Ci-2 word victimNNPB`"?NNSzGJJMb?i+1 word valuableNNPM@JJSoʡRBSnRBRV-?JJRV- i word sorryRB rh?NNHzGVBN|?5^VBP-JJ%C@NNSKi+2 word blindPDTx&JJx&?i-1 tag+i word VBG extinctJJ ףp= ?RBRzGNN^I +i-1 word senatorVBDCl?JJSGz?RBSGzVBNClѿNNPn?NNni-1 word streamlineVBNSNNx&?JJS?NNSx&i-1 word governmentVBN)\JJClVBZV-?NNPsh|?@NNPSsh|?POSL7A`WDTy&1|NNSX9v?NNMRBRS㥛ԿVBGS㥛@VBD5^I @IN(\?VB'1ZRBw/i-1 tag+i word VBP tvJJRQNNPNN)\(?i-1 tag+i word `` journeyNN5^I NNP5^I ?i-1 tag+i word NNS starvedVBNʡE?INʡE i+2 word uponIN"~NNPd;ONNPS1Zd?RB"~NNM?WDT"~?JJCl߿i-1 tag+i word NNP wireNNrh|?INrh| i word sevenVBNK7A`JJ}?5^ICDrh|@ i-1 word leeVBZMb?VBSNNPQ?NNQVBDS?i-1 tag+i word DT conservativesNNPS?5^I ?NNS?5^I i+1 word crystalINZd;O?RBZd;Oi-1 tag+i word NNS forecastsVBPp= ףNNSp= ף?i+1 word mainframesRBS?JJSi-1 tag+i word JJR valuableJJZd;?NNPZd;i+2 word houseIN'1Z?RPx&1NNPS/$VBDQ@PDT+?VBNB`"DT\(\RB rh?NN/$VBGCl?CCn?JJZd;O?VBZI +?NNPQοi-1 tag+i word DT tiffanyNNP$C?NN$C˿i-1 tag+i word -START- showtimeNN#~jԿNNP#~j?i+1 suffix popVBZuVտVBP'1ZNNSV-?NN5^I JJ%C?i-2 word minnesotaVBNZd;߿NNPQ?VBDZd;?NNPSQٿi-2 word asianVBZV-VBPMbX9?NNS`"?VBDNbX9i word citywideVBMbJJMbX9?NNp= ף i+1 word tailPOSS㥛?VBZS㥛i-1 tag+i word NNS looksVBZK7?RBRK7i-2 word drilledVBPK7NNOn@RBK7A`i-1 tag+i word , concernedVBNK7?JJMb?VBDNbX9i-1 tag+i word IN happeningVBG^I +?NN^I +i-1 tag+i word `` associatesNNSE?RBEi+2 word involvesNNV-JJV-?i word perestrokiaVBZd;ONNd;O? i-1 suffix --RBSV-JJSV-?WP"~?VBZJ +?DTB`"?NNPv/CCv/?JJRK7A?VBDS@VBN|?5^NN rhCD^I +INn?RBRK7AVBG(\?RPMbPRP5^I NNS1ZdVBOn?NNPSClUHK7?VBPCl?WDTy&1?JJ= ףp=?RBK7ٿPDTMbX9i-1 tag+i word NN contendedVBN-?VBD-i+2 word conformNNX9v?NNPX9vNNPS~jt?JJ~jti-1 tag+i word CC leadsVBZMb?VBMbi+2 word spurredNNS r?NN ri-1 tag+i word -START- seatsNNPSZd;NNSx&?NN;On i+2 word cie.VBN(\µNN(\µ?i-1 tag+i word RB consumedVBDw/?VBNw/i-1 word collateralizedJJV-?NNV-"i-1 tag+i word -START- chamberlainJJ rؿNNP r?i-1 tag+i word '' stuffNNQ?NNSQտi+1 word ewingNN9vNNP9v?i+1 word mustardRBʡEINʡE?i word gallantVBPClVBN(\JJZd;? i suffix no NNx&1UHoʡ@JJy&1,RBQ?VBNffffffVBPSINffffffVBZ|?5^ʿDT^I %@NNSV-VB(\ i-1 word nearVBGh|?5?JJMbX?NNy&1?RB)\(NNSy&1NNPQ?i word prevailVBx&1?VBPV-?NN+i-1 tag+i word TO excessVBZd;JJ"~@RBV-ҿi-1 tag+i word POS amendedVBNV-?JJV-i-1 tag+i word NN bratsNNSS?JJS i-2 word ibm NN= ףp=?JJRoʡWDTI +?JJV-NNSV-?RPףp= ?RB"~j INx?NNPKǿ i+1 word yenNNP= ףp=NNSCl׿JJ= ףp=?NN(\ݿCDd;O?i-1 tag+i word DT legislativeNNv/JJv/? i-1 word bidVBDˡE?VBNoʡ?JJGzIN1ZdVBZ7A`?RBGz?NNZd;Oi+2 word visitNNSK?NNKi-1 tag+i word IN bolsteringVBGA`"?JJA`"i+1 word pickingNN1Zd?JJ1Zdi+1 word phaseJJ rhNN rh?i-1 word intelogicNNPSB`"ɿNNPB`"? i-1 word butNNy&1VBK7NNPSK7?NNST㥛 ?IN333333?VBDn?VBN~jtWDTrh|JJ%CRBSx&1RBRh|?5ֿEXClVBGI +?DTJ +?RP+PDTʡE?CCh|?5?CDˡE?JJS$C?JJR333333?VBP(\?VBZ ףp= ?RBMbX9?NNPx&1?i+1 word doomsayersJJ5^I ?NN5^I  i word waxedVBN$C?JJ$Ci-1 tag+i word CC earningVBGA`"?JJA`"i-2 word slowerNNSx&1JJRx&1?JJ rпVBN r?i+2 word entryDTx&1VBNI +?JJI +INx&1?i-2 word closerVBClNNCl?i-1 tag+i word VBD stricterJJK7AJJRv?NNSӿi-1 tag+i word VBZ pendingVBGS?JJSӿ i+1 word intoRBA`"?NNSy&1PRP|?5^?JJK7AVBGCl?INNbX9VBZZd;?VB~jt?DTQ?FW"~j?VBN(\?JJRMbXPRP$|?5^ɿRP(\¿VBDM?VBPm?WDTQNNP|?5^NNPSZd;O?RBRjt?NNMb?i-1 tag+i word NNP stoodVBP-NN㥛 VBD}?5^I@i-2 word aucoinRBQ?INQ i-1 tag+i word JJ representativeJJtV?NNtV޿i-2 word fraudulentVBGHzGNNrh|?JJV-i-1 suffix nrmNNSd;O?NNPd;Oi-1 word performersVBPX9v?VBGX9vi+1 word principalRB'1Z?DT'1Z?NNP-JJNbX9?NN?5^I ?CC'1Zܿi+1 word shortageJJoʡ?NNGzFW/$i-1 tag+i word RB useVBClٿVBPbX9?NNCl?INbX9ֿi-2 word laboratoriesRBKINK?i-2 word refrainNNS`"JJ?NN{Gz?NNP/$i-2 word acquiredRBRZd;?RBZd;NNSMb?NNPffffff?VBnNNPSM?JJ(\NNL7A`ؿi-1 tag+i word `` feedingNNFx?JJFxi-1 tag+i word -START- singerNNPS㥛?NNS㥛i-1 tag+i word DT squareJJ"~j̿NN"~j?i-2 word shippingJJʡE?NNʡEi-1 tag+i word VB rightVB'1ZRBoʡ?NN333333VBNSݿJJx&1?i-2 word graftedNNSS?NNSտi-1 tag+i word CD violatesJJZd;OVBZuV?NNSffffffi+2 word brizolaVBP-NNP-?i+2 word automaticJJRGz?NNMbpRBRZd;Oi-1 tag+i word IN eatingVBG\(\NN\(\?i-1 tag+i word POS warpedVBNI +JJ|?5^@NNSVBDZd;߿i-1 suffix btsRBQֿINZd;?WDTy&1|i-1 word targetsJJQVBDX9vNNPX9v?VBNQ?i-1 tag+i word ) netJJE?NNEi-1 tag+i word MD musterVB +?RB +i-1 word costaNNPSJ +JJ#~j?NNP'1Zi+1 word nebraskaIN rhݿNNP rh?i+1 word depletionNNzG?JJzGi+2 word donnelleyNNSy&1NNPsh|?RPRQ?JJS㥛?NNS㥛@RBFxINZd;O?i-1 tag+i word JJ adversaryNNffffff?JJffffffi-1 tag+i word NN signedVBN~jtVBD~jt?i-1 tag+i word VBN spanishJJ+?NNP+ i word jewboyNNPL7A`NNL7A`?i-2 word voicesJJ+VBNx?NN;OnIN|?5^i-1 tag+i word NN authorizingVBG#~j?NNP#~ji word takeoffNN(\?RB(\ݿi+2 word hindemithNN"~j?JJ"~ji-1 tag+i word IN steppingVBGsh|?JJQ?NNCl׿ i suffix oteIN ףp= NNSCl VBn@JJ|?5^?VBD= ףp=ҿFWK7A`?VBN +VBPI +@NNffffff?CD rhݿUHZd;ORBjtVBZvMDV-DTGzNNPi-1 tag+i word IN enrolleesVBZSӿNNSS?i word sarakinNNSClNNK7FW%C?i-1 tag+i word VBN includeVB rhVBPB`"?NNK7JJK7ѿi-1 suffix norVBP;On?JJK7?NNPQ?VB;OnڿVBG+NNw/?VBDq= ףpտVBNпi-1 tag+i word IN sortingVBGQ?NNQ i word furorNNʡE?JJʡEi-1 tag+i word PRP$ silkyNNS㥛 ڿJJ~jt?NN+$i-1 tag+i word CC telecommunicationsNNK7NNSK7?i-2 word ratingVB|?5^?NN{Gz JJK7?i-1 tag+i word POS masterJJRp= ףNNp= ף? i+2 word netVBPS?VBZ"~?NNPRQ?NNMbX9UHx&ٿIN+?DT/$NNPSZd;O?VBDZd;VBG9vRB~jtпVBNMb?JJˡE@NNS"~i-1 tag+i word RB entirelyVBNףp= RBףp= ?i-1 suffix ews NNʡE?VBP +WDTףp= JJ-INq= ףp?VBZ/$?NNSGz?VBGQοNNPM¿VBNCl?DTVBDʡEi-2 word aggressivelyVBV-VBG +?RBV-?NN +οi-2 word cringedRBZd;?JJZd;i-1 tag+i word DT yenNNPSQNNS(\ NNQ8@i+1 word bobbyNNSGzJJR"~jܿNN/$?INRQ?DTRQi-1 word requestedNNSh|?5?JJ~jtNNT㥛 ?VBZh|?5PDTuV?i-1 tag+i word DT waywardJJV-?NNV-i-1 tag+i word VB preparedJJy&1?VBNy&1̿i+2 word afternoonNNSףp= ?VBNףp= JJClٿRBQ?VBP +i+1 word abramsJJOnۿNNPOn?i-1 word atlanticVBClNNPSM?VBDFx?VBNFxѿNNS"~jNNPS?i-2 word identifiesRB㥛 IN㥛 ?i word productiveJJ%C?NN%C i word methodNNS333333NN333333?i-1 tag+i word JJ analogNNʡE?JJʡE i+1 word thawJJm?JJRmi-1 tag+i word IN inefficiencyNNSSNNS?i-1 tag+i word DT eighthNNS/$JJK7?NN!rhi-1 tag+i word VBZ topVB/$JJ/$?i-1 tag+i word RB politicsNNSK?RBK߿i-1 tag+i word VBZ worthJJjt INjt @ i word tendsVBZ'1Z?NNS'1Z i-2 word wiryVBZClVBnJJ +?i word bookkeepingVBGzGNNx&?JJ +޿i+2 word liberaNNoʡJJoʡ?i+1 word abandoningRB)\(?IN)\(i-1 tag+i word NNS letVBDA`"VB(\?VBPNbX9?JJ'1Zi-1 tag+i word VBG fueledVBDE?VBNEi-1 tag+i word TO blackmailVBuV?JJuVͿi+1 word industrializedJJQ?NNv߿RBJ +i+1 word duffersJJ+?NNP+i+1 word collegeINV-?JJL7A`ؿNNPm?NN\(\RB|?5^ i+2 word mipsVBZʡE?VBDʡE i word heftyJJMbX@JJRףp= NNS㥛i-2 word traditionalVBV-@VBGX9vNN333333?VBPV-JJʡEVBZ#~jܿNNSx?$i-1 tag+i word -START- congressionalJJQ@NNPQi-1 tag+i word -START- lomasJJV-NNPV-?i-1 word dwarfVBNd;OVBDd;O?i-1 tag+i word DT leftNNSCl˿NN9v?JJMi+1 word opportunistsNN)\(?JJ)\(̿i word publicizedVBN㥛 ?JJ㥛 i word plaintiffsNNSףp= ?NNףp= i-1 tag+i word IN paymentsNNS= ףp=?NNP= ףp=i+1 word bruceNNP`"NN`"?i-1 tag+i word VB advertisingVBGw/NNw/?i+1 word councilNNPGz׿NNPSPn?JJJ +ɿNN333333i-1 tag+i word DT handcuffsNNK7NNSK7?i+1 word boostedNNPX9vNNPSS?NNSx&1i+1 word movementsNNZd;O?JJZd;O i-1 word bonNNSnFWn?i word wherebyVBZ+WRBffffff@JJRuVIN%C i word faxNNx?JJxi-1 tag+i word JJS stableJJOn?NNOn i word turnerNNPjt?CDjti-1 tag+i word VBZ unsupportedVBNQJJQ? i word vassNNPS= ףp=NNP= ףp=?i+1 word architectureNNSOnNNOn? i+2 word doesINRQJJRSVBP)\(JJ`"?DTRQ?NNPZd;O NNPS(\?FWQ @VBNX9v@WDT9vCCT㥛 VBZMbVBd;OVBG rؿRBK7A?NN;OnWPףp= ?CD +ֿNNS!rh? i+1 word codeNNK7?NNPzG?NNPSrh| i suffix oryVBMbNNPSSVBGvRBʡEVBZ9vNNMb@VBD~jtNNPʡE?JJX9v>@VBNjtVBPKNNS$CPOSʡEPRPQi-1 word sellsRBRV-¿NNQ?JJRV-?JJʡEֿVBPV-i-1 tag+i word PRP favorsVBZZd;O?VBDZd;Oi-1 tag+i word NNPS dailyNN+?JJ+i-1 tag+i word NN metersVBZ`"NNS`"?i-1 tag+i word NN subcommitteesNNS+?VBZ+i-1 tag+i word PRP togetherRPMbRBMb?i-2 word stiffestVBN rhݿVBD rh?i-1 word containerVBGPnNNPn?i-1 tag+i word CD contraceptiveNN +@JJ +i word peculiarVBP rȿJJM@NNZd;Oi-1 tag+i word DT bodyRB"~NNPA`"?NN!rh? i suffix yes JJQVBP㥛 NNSA`Т@NNP$CNNy&1CC/$VBN\(\߿UH㥛 @RBFx?i-1 tag+i word DT '90sNNS%C?JJOnCDx&1Կ i-2 word pathJJDl?NNPDlVB+VBG+?i-1 tag+i word PRP$ generalJJy&1?NNy&1i-1 word causesVBG rVBP ףp= RPClѿJJzG@ i suffix kyuDTˡENNPK7?VBNZd;OͿNN}?5^I̿CD5^I i-1 word legionNN?VBDi+1 word havingVBZd;O?RBNbX9?VBD-VBP-?JJNbX9INZd;Oi-2 word imposeNNS%C?NN+JJOn?i-1 tag+i word '' seeksVBZbX9?JJbX9i-2 word reductionsNNx?JJx޿i word defeatedVBN(\?JJ(\i+2 word suggestingRB7A`?JJ7A` i word aimedRB+NNX9vVBDGzVBN(\@JJtVNNPni-1 tag+i word IN touristNNHzG?JJHzG i+1 suffix bNNSB`"NNS㥛@JJENNPX9vi-1 tag+i word NN negotiatorNN-?RB-i-1 word office VBG)\(RBT㥛 ?IN#~jNNS㥛 NNPnNN(\@VBDh|?5?WDT+EXV-JJGzVBZ(\@i-1 tag+i word NN vetoedVBN +?NN +i-1 tag+i word NNP riverWDTENNP}?5^I?NNPSX9vi-1 tag+i word CC casualtyNNx?JJxi-1 tag+i word CD apieceNN JJ +?RB~jt @NNSni-2 word natureJJ;OnNNSq= ףp?NNP?5^I VBʡERBMb?NN$C?i-1 tag+i word , reachingVBG rh?NN rh i+1 word orNNPxCCQ?INʡEVBG}?5^IVBZS?RP-VBDGz?VBP;On¿JJMbDTFx?PRPK?RBK7ɿNNSGz?RBSRBRʡE?NNPSJ +?VBNQ''v?NN\(\@VBS㥛CD|?5^@JJRd;Oi-2 word prepareVBNp= ףJJp= ף?i+2 word exhibitJJOn?NNOni-1 word retailersVBPOn?VBNp= ף?JJʡEVBDCl?i word solicitingVBG-?NNB`"JJ333333ӿi-1 suffix thyVBPp= ף?JJ= ףp=NNP1ZdNNMb?VBD-ӿCD/$?i-1 tag+i word CC urethraJJPnNNPn?i-1 tag+i word JJ tabooNNSRQJJRQ?i-1 word playingVBNmJJ}?5^IܿNNSB`"?VBx&?RB;OnҿNN"~ji-1 tag+i word JJ roadwayNNp= ף?JJʡERB5^I i-1 tag+i word CC deprivedVBN/$?VBD/$i-1 tag+i word -START- reps.JJ"~jNNP"~j?i-1 tag+i word NNP rivalsNNSMbVBZMb?i-1 tag+i word CC rentsVBZ+?NNS+ i word givethVBZl@NNSCl߿NNx&1i+1 word cosmeticRBDlNNSK7A`NNQ?i-1 tag+i word IN fearsVBZS㥛PDTS㥛ܿNNS~jt?i-1 word safetyDT$CWDT$C?VBNV-?JJV-׿i-1 tag+i word VB clonedNNS ףp= VBN ףp= ?i-2 word forgotVBGOnNNOn?i-1 tag+i word DT worksNNSCl?JJCli-1 word friendJJ9vVBNnNNMbVBDn?VBZS?i-1 tag+i word IN bikeNNn?JJni-1 tag+i word MD moreVBV-RBR1Zd?JJR^I +i tag+i-2 tag DT WRB FWK7A`JJRClǿRB&1?NNʡEտJJSoʡCD\(\?VBP"~VBZy&1?NNPS)\(VBGS㥛?JJJ +NNS rh?NNPl?i-1 suffix iumVBP rh?PRPQNNSjt?RBQ?RPʡEJJ^I +?VBD rhݿVBG~jt?VBrh|RBRQINʡENNʡE?POSRQVBZK7A`@i-1 tag+i word JJ futureNNSy&1JJDlNNQ?NNP(\?i-1 word pollutionVBPENNT㥛 ?VBd;Oֿi-1 tag+i word VBG furtherJJR?5^I ?RBKRBRQJJ-?RP5^I i-1 tag+i word CC overboughtJJ~jtMDp= ףVB?5^I VBNzG?i-1 tag+i word DT aboutRB333333IN333333?i+1 word !YEARVBGz?RB9v?NNQ@VBDZd;OMDZd;RPoʡNNPSZd;OCC;OnVBNjtDTV-ǿNNSI +?NNPNbX9VBGffffffƿWDTPnJJCl@INB`" @ i word prayerJJ?5^I ڿNNPV-տNNCl?i+1 word influentialRBR"~?JJR"~ڿJJS rh?RBS rh i+1 word logoNNOn?JJOni word allocatedVBNrh|?JJrh|i+1 word demandsNN"~?VBD1Zd?VBN1ZdPOSjt?JJ"~VBZjtĿi-1 tag+i word MD veryVBV-RBV-?i-1 tag+i word NN importsVBZV-NNSV-?i-2 word teethVBZd;OVBPZd;O?i+2 word declineRB/$@NNZd;VBN%C?JJRK7ѿVBPffffff?JJ ףp= VBffffffƿi word peasantsNNPS@NNS+NNPMbP?i-1 tag+i word DT heelsNNSCl?NNCli-1 tag+i word CC keepsVBZZd;?NNSZd;i-1 tag+i word VBP lastsVBZy&1?NNSy&1i-1 word proprietaryVBGDlNNDl?i+1 word promptlyNNGzNNPGz?i-1 tag+i word NNS interestedVBN/$տJJoʡ?VBDPni+1 word increasesNN&1@VBDM?JJRA`"VBN&1JJ/$VBEi-1 tag+i word CC resellVBˡEVBPˡE? i suffix eadVBD)\(@JJS|?5^RB~jtCDX9vNNSrhVBZ㥛 VB-?RBRVBP(\ @JJRX9vNNP9vJJ~jt@NNZd;O?VBNy&1@i-2 word plant NNPSlJJSVBDK7AVBZn?NNS7A`?INMbX9ܿDTMbX9?NNP7A`?RPK7A`?NNw/VBNp= ף?VBPRQRBT㥛 пi+1 word sonnyJJQٿNNQ?i+1 word adversariesJJ5^I ?NN5^I i-2 word ukraineVBZd;OVBDZd;O?i-2 word expectsNNP'1Z?VBZd;?VBGOnNNGz?JJRjt?VBNK7JJ+NNSK7?i-1 tag+i word VBZ focusedVBNv?VBDv߿i+1 word restrictionDT}?5^I?NNI +JJ? i suffix EPANNPSCl׿NNlNNPS?i-1 tag+i word VBZ profitNNrh|?JJrh|i+2 word imperfectionsVB)\(?JJ)\(i-1 word areasVB/$JJ +VBDSVBN|?5^?VBP/$?RBQINQ?i-1 tag+i word JJ damageVBG+NNp= ף?VBFxi+2 word whoppingIN#~jܿRPZd;߿RBCl?i-2 word presidentsVBNK7A`VBDK7A`?RBRX9vRBX9v?i-2 word paramountNNPSB`"ٿNNPB`"? i suffix owlRBRx&1NNK7A`@JJ/$RBd;O޿i-2 word entireJJClNNP/$NNbX9@ i word raggedVBDx&1VBNS㥛JJRQ@i-1 tag+i word DT embarrassedVBNMbJJMb? i word threeNNP~jtVB9vNNPSJ +NN +CDtV@VBPRQJJ/$i+1 word bikingNN|?5^?JJ|?5^ڿi-1 word bataanWDTK7INK7?i-1 suffix too VBNbX9VBG{Gz?NN(\VBN rh?VBP~jtJJA`Т@RBQ@VBDMbINV-NNSCli+1 word impasseJJ-?RB-i-1 tag+i word `` misleadingVBGV-JJ/$?NN|?5^ʿi-1 tag+i word -START- probingVBGK?NNK i+2 word proJJ\(\?VBNh|?5NN?5^I ?i+2 word textilesRP7A`?IN7A` i-1 word fiatNNPS-RBS?INh|?5? i suffix ISHNNPSrh|JJS㥛?NNP?5^I i-1 tag+i word WDT sophisticatedJJjt?VBDjt i word arcaneNN +JJ +?i-2 word professedWDT5^I ӿWP5^I ?i tag+i-2 tag VBZ EX RBR`"޿JJQ?DTuVNNSQ?CCS㥛?JJRV-?NN7A`?PDT rh?VBZ|?5^VBG'1ZRBmi-1 tag+i word DT cellularNNSRQJJRQ? i+2 word manVB(\NN"~j?JJ!rh?RBbX9i word appartusINDlNN'1Z?VBD ףp= i suffix rmaJJ+?NN+ i word soughtVBNʡE6@VBPQJJEVBZ/$RB&1NNV-VBDMbX9 @i+1 word confessionNNPHzG?VBGHzGi-2 word stimulationVBPCl绿JJCl? i word yesNNPp= ףNNSB`"LSףp= ӿJJ/$NNZd;OUH/$@RBjt?i-1 tag+i word VBD wellingtonRBV-NNPV-?i-1 word admitRBvINv?i word interferesVBZDl?VBV-NNSbX9޿ i word ruledNNSrh|VBNL7A`尿VBD?i-2 word laughedVBNMb`VBDMb`?i-1 tag+i word , auditVB1ZdNN1Zd?i-1 suffix skiVBZ?5^I ?VBD?5^I i+1 word filingsVBSNNSNNB`"@JJOnۿi+1 word prolificJJS'1Z?RBS'1Zi-1 tag+i word NNS screenRB/$NN/$?i word ongoingVBGp= ףJJd;O@NNJ +i-1 tag+i word NN userNN9v?RB9v i word fatJJ(\ @NNSS㥛NNX9vRB|?5^ѿi-2 word turmoilVBNQ?JJV-ҿVBI +?VBPMbi word dubiousJJ/$?NN/$i-1 word coughNN r?NNS ri-1 tag+i word DT boomNNPn?RBPni word widespreadNNSzGVB/$NNT㥛 VBNPnVBPJJʡEv @i-1 tag+i word TO tryJJ= ףp=VBJ +?NNV-i-1 tag+i word VBD drawnRBlVBNS㥛?NNʡEi-1 tag+i word POS taxableNNbX9JJbX9?i+1 word turmoilNN;On?DTFxJJ~jt?i+2 word temporarilyVBP?RB/$?IN~jthVBZRPjtVBD+?VBN+i+2 word hungryRPV-INV-?i tag+i-2 tag TO CCJJR(\?RBRw/?JJ)\(NNS"~NNP'1Z@VB`"޿RBQ?NNʡE?i-1 tag+i word RB giveJJSVBPS@i-1 tag+i word TO hoeVBx&?NNPx&i-1 word representsNNS?JJSi+1 word brieflyINK7AWDTK7A?i-1 tag+i word DT compellingVBG$CJJ$C? i suffix TooVBP'1ZԿUH-RB$C@NNP&1i-1 tag+i word VBG northeastNN+?RBL7A`NNP ףp= i+2 word ortegaVBʡENNPSK7A`?VBD!rh̿VBPʡE?WDT!rhJJ}?5^IIN!rh?NNPw/?i-1 tag+i word CD highNN +?JJPnNNPV-?i-1 tag+i word VBG discreditedJJףp= ӿVBNףp= ?i-1 tag+i word POS soRBX9v?JJnIN}?5^IԿi-1 tag+i word JJ hostagesNNSS?NNS i+2 word ala.RB&1NNP&1?i-1 tag+i word NNP stereoNNA`"JJ~jt@VBD%CNNS5^I i-1 tag+i word VB poorerNNS%CJJR%C? i word heavenNNsh|??RBjtVBNS㥛Ŀi-1 word notableNN+NNS+?i-1 word mclennanNNPS(\NNP(\?i+2 word ammunitionNNS|?5^?NN|?5^i-1 word alleysDT/$WDT/$?i-1 tag+i word JJ modelJJ/$NNPV-?NN"~?i-1 tag+i word IN liveJJ"~?NN"~i-1 tag+i word NN depositNNHzG?JJHzG i suffix IODNNP333333NN333333@i+2 word crescendoVBZd;OVBPZd;O?i+2 word unifirstRBGz?NNPGzi-2 word possibilitiesRB= ףp=?IN= ףp=i+1 suffix tumINl¿RBRQDTl?JJRQ?i-1 word scientificNNPSQտNN㥛 @JJK7NNS#~jNNP"~?VBni-1 tag+i word VBG kidneyNN"~?JJ"~i-1 tag+i word POS gyratingVBGsh|??NNsh|?i+2 word conservative VBNMbX?DTv/PRP$|?5^?NNSjt?PRP|?5^ʿRB^I +VBd;OJJX9v>@NN}?5^IVBPv?i-1 tag+i word RBR convenientJJ rh?NN rhտi-1 word irreparablyVBNw/?JJw/i-1 tag+i word -START- yearsNNS+?JJ+i+2 word announceVBZ\(\@NNS\(\NNn?NNPni-1 tag+i word VBP mostJJS ףp= ߿RBS/$?VBDSi-1 suffix rigVBN^I +?NNClٿVBDNbX9ȿi+2 word duboseRP(\пNN(\?i-1 tag+i word NNP smilesVBZjt?NNSjti-1 tag+i word NNS avoidVB rhVBP rh?i-1 tag+i word DT slouchJJ{GzNN{Gz?i-1 tag+i word NN investedVBNB`"VBDB`"?i-1 tag+i word VBP bearsVBZS㥛?NNSS㥛i word discussedVBP\(\VBNS?VBD;Oni-2 word campusVBN-ۿRB-?i-1 tag+i word CD frontJJS?NNSi-1 tag+i word NN flowNNSq= ףpNNFx @RBx&IN/$i-1 tag+i word VB surgingJJ?VBG i word blamesVBZRQ @RBV-VBD/$ i-1 word woolWDTS㥛INS㥛?i+2 word bottleVBjtVBP+NNM?VBDZd;O?i-1 tag+i word DT fancierJJRQ?NNQi-1 tag+i word RB cheaperJJRS?JJSտi-1 word federalistNNPSd;O޿NNSrh|NNPZd;?i-1 word infuseJJMbX?NNMbXi-2 word resumeRPMb?NNQ?JJQٿRBMb i suffix 009JJ-CD-@i+2 word imminentNNSʡE?NNPʡEi-1 tag+i word TO pleaVBL7A`ؿNNL7A`?i-2 word echoedJJ(\?NN(\ i+2 word bagVBN^I +VBD^I +?i word unnoticedJJ1Zd?VBNnRBMbпi-1 word tacitlyVBN/$?VBD/$i+1 word shuttlesJJ333333?RB'1ZNNjtԿ i word poundNNPzGNNzG?i-1 word stupidestNNS"~?NN"~i+2 word surelyNNS1ZdNNMb?RBS?i-2 word threateningVBZd;?RBZd;i word exclusivelyVBnRBn? i word ghostJJSʡENNK @JJ"~UHʡEi-1 word golenbockVBZ rNNS r?i-1 tag+i word NN planeJJ(\NN(\?i-2 word morningVBbX9?VBG+JJףp= NN1Zd@i word breakfastJJB`"VBN1ZdNNS{GzNNx@ i-1 word bankRBV-NNx&1WDTv/?JJClNNS5^I ?NNPS㥛?VBGx?VBDx&1?IN@NNPS+ۿVBNtVοCD rRP9vVBZ^I +ǿi-1 tag+i word , shipbuildingNN"~j?JJ~jtVBGK7A`i word persistentVBףp= JJ)\( @NN= ףp= i suffix DeeJJ5^I NNP5^I ?i-1 tag+i word TO tvsVB!rhNNP!rh?i+2 word bluntlyVB{Gz?VBD{Gzi+1 word recallVBZS㥻NNSS㥻?i+1 word twistingVBVBP?i word detectiveNN\(\@JJnRBy&1VBP ףp= i+2 word dualIN/$PDTX9v޿JJNbX9?i word fullscaleJJV-?NNV-i+1 word stationNNPKNNPS}?5^I?NNT㥛 ?JJ(\տCDQ޿ i+2 word aiCD(\?VB(\ i+1 word slidJJDlNNP?VBZ㥛 NNjt?i word bandwagonVBrh|NNQ?INʡEi-1 tag+i word DT fairJJ|?5^?VBNtVֿNN!rhNNP rh?i-1 tag+i word NNP chocolateVBPV-NNV-?i+2 word qintexJJ+?CDNbX9пVBN$Ci-2 word bureaucracyNN|?5^VBDMbVB333333 @RBRi+2 word inverseVBZ rh?JJ rhi-2 word careerVBNQ?VBDQѿi-1 tag+i word '' attacheNNCl?JJ7A`ڿFW(\i-1 tag+i word , redVBD^I +JJ^I +@i-1 word thompsonRBMb?JJMbi word reinvestmentNNffffff?JJvNNPV-?i-1 tag+i word PRP$ handlingVBGv/NNv/?i-1 tag+i word VBP onePRPX9vοNNmCDQ?i-1 tag+i word '' kicksNNS$CVBZ$C? i+1 suffix pcJJ~jt @VBK7?VBN#~jNN rhNNP;Oni+2 word givingNNPw/?NNPSw/NNJJ?VBZx&1пNNSx&1?i word cornfieldNN r?JJ ri-1 tag+i word POS westJJV-?NNPV-߿i-2 word fertilizersNNSNbX9NNNbX9?i+1 word conditioningJJ ףp= ?NN ףp= i-2 word provigoVBG+JJDl?NNQi-1 tag+i word DT waitedVBDʡE?VBNʡEi+1 suffix skaINS㥛?VBDʡE?VBNʡENNQNNP rh? i-2 word ky.JJ ףp= NNPClRBCl?NN ףp= ?i-1 tag+i word CC mixedVBD7A`NNS/$VBNnѿJJS?i-1 tag+i word CC enjoyedVBNn?VBDni+1 word organizationNNPףp= ?VBClJJv?NN333333?i word listingVBGClNNZd;O@JJ rhi-1 suffix meaPRP-NNP-?i-2 word overhaulJJx&1?NNx&1i-1 tag+i word PRP stepVBQ?VBDffffffVBZ ףp= i+2 word distributionVBG?5^I NN?5^I ?i-1 tag+i word TO threatenedVBoʡVBNS?VBDx&1i-1 tag+i word IN osakaJJ+NNP+?i-1 word ogdenNNPSK7?NNPK7i-1 tag+i word NN bombNN)\(?VB)\(i-1 word issuersVB9vVBP9v?i-1 tag+i word JJ condosNNSrh|?NNrh| i+1 word elieNNP r?IN ri+2 word right VBPDl@JJPnVBZx&NN;On?VBDjt?PDTh|?5?VBN5^I ?DTh|?5޿NNPV-VBMbi+1 word yellowVBGZd;OJJHzGNNnRBS@i+1 word automaticallyVBNS?JJSi-2 word mcnamaraNN rh?JJ rhi-1 tag+i word PRP assumeVBPy&1?VBDy&1i word patientsNNPSMbX9?NNSZd;ONNPA`"i word recruiterVBP-NN-?i-1 tag+i word RB stayVBPZd;O?VBDZd;Oi word telesystemsNNSS?NNPSSݿi-1 tag+i word NNP personalJJSNNPS? i suffix oukNNmݿNNPm?i word programmaticJJX9v?NNSX9vi-2 word renamedJJHzGNNPHzG?i-1 tag+i word VBZ dividedVBN-?JJ-i-1 tag+i word MD constantlyVBOnRBOn? i suffix rbsVBD(\VBZ(\?NNSQ@VBNK7ѿNN|?5^i-1 tag+i word DT findingVBGZd;NNZd;? i+1 suffix & VBGGz߿RBvJJ rhNNSK7NNPx&@PRP$mNNPSS㥛@NNn?VBN&1VB{GzVBZV-i-1 word residentsVB`"VBP`"?i-1 suffix ikeVBNKIN= ףp=NNS&1ʿVBD +?RBSA`"VBG~jt?JJoʡVBZV-VBMNNPSZd;O?NNPˡEĿJJS rh?PDTKRB+ǿDTbX9?NNQ?VBPzG? i word slogsVBD/$ٿVBZ/$?i-1 tag+i word WDT setVBP ףp= ?VBNS㥻NN ףp= VBDS㥻?i-1 tag+i word NNS resourcesNNSJ +NNPJ +? i word bikesNNPSvNNS`"?NN + i-2 word airJJoʡNNS+NNPA`"VBZd;O?NNPSףp= @VBGCl?NNm?VBD+?i-1 tag+i word -START- bossesVB(\NNS(\?i+2 word divisionVBZ(\NNSZd;?NNPA`"@VBG/$ſNN)\(?JJS㥛 i-1 word straszheimNNZd;OVBZZd;O?i-1 tag+i word JJ markkaFWsh|??NNS#~jܿNNT㥛 i suffix de NNMINMbX@NNSNNPm@VBZVBD;OnFWA`" @VBP-PRP9vJJOni-1 tag+i word NN gasolineNNjt?JJjti word announcingVBG!rh?JJ!rhi-1 tag+i word DT finnishJJMbX9?NNPMbX9Ŀi-1 word mismatchVBDK7?VBNK7 i-2 word topsNN(\?NNSV-JJRX9v i suffix ontVBPh|?5޿JJCl?NNS= ףp=NNPQ?RB +?NNSſVBDK߿JJR'1Zi-1 tag+i word NNS triumphedVBN%CVBD%C?i-1 tag+i word VBZ delistingNN333333?VBG333333ۿ i suffix ERMJJjt?NNjti-1 suffix domRBI +?VBZ"~jܿNNS"~j?VBK7?NNI +CD5^I VBPZd;O?i-1 suffix HENRB㥛 NNP +?RBRv/VBPGzDTOn?VBV-CCSIN"~j?VBNQWDTEԸCD"~j?NNPSrh|?JJR\(\JJ5^I ?POSRQVBZEؿRP rhNNʡE@NNSsh|?@PDTKJJS}?5^IVBG rhVBDCli-1 tag+i word PRP needsVBZ rh@NNS/$RBR&1JJV-i-1 tag+i word DT royalNNPSKNNPK?i+1 word trendNNQֿFW)\(ܿCDd;O?JJ-?NNPK7NNPSGzVBGNbX9?RBx&1i-2 word expresslyNNV-VBGV-? i word angerNNSMbJJRB`"NN|?5^?i-1 tag+i word JJ operateVB~jt?JJ~jtȿi word biannualJJQ?NNPQݿ i word cropsVBZGzNNSSc@NNʡEJJV-i word rewardsVBZ`"?VB/$NNSZd;O i word rodVBZ +NN +?i word executionNNS+NNʡE?JJV-i-1 tag+i word CC shapeVB333333?JJR333333i-1 tag+i word CC earlierJJR{GzRBʡE@RBRCli-1 tag+i word VBP pointNNSʡEVBNd;ONNV-?VBP$C?i-2 word defamatoryVBDMbX9VBPrh|VBNB`"?i+2 word third VBNV-ǿNN~jth?PDTK7A`տRBRjtܿRBE@INʡEVBZ ףp= ?RPZd;JJT㥛 ?NNS ףp= i word smolderVBPS㥛?NNHzGVBDCli-1 tag+i word CD friendlyJJh|?5?RBh|?5ο i suffix mpePRP$tVFWx?NNPrh| i+2 word farmRB(\IN(\?i-1 tag+i word DT dealNNSClNNB`"@JJn NNP(\?JJSFxi-1 word dazzlingNNoʡ?RBoʡi-1 tag+i word , throwsVBZCl?VBCli+1 word mercuryVBq= ףpJJq= ףp?i+1 word notificationJJ;On?NN;Oni-1 tag+i word VBG muchRBQNNClJJPn@i+1 word middleRBףp= ?JJףp= i word singingNNK7?VBGK7i-1 tag+i word NN spurringVBG/$?JJ/$i word morselsNNS+?NN+ i suffix rbyNNPNbX9?NNPSOnRBK7A`@NNB`"UHJJ-@DTV-NNSI +i-1 tag+i word , legsRBSNN333333NNSCl?i-1 word launchedJJSINS@RB&1?RBR&1i-1 tag+i word DT mgmNNPSNbX9пNNPNbX9? i-1 word hipNN$C?VBN$C i word ariseVB%C@VBP{GzԿRBzGNNI +i-1 tag+i word -START- speakingNNPnʿVBGRQ?NNʡEi+1 suffix orpNNS`"NNPQ @VB333333NNPS"~ @NN|?5^JJM i suffix MOBNN9vNNP9v?i+1 word baconVB(\?VBD(\i+2 word urbanNNT㥛 JJ"~NNPuV?NNSp= ף?i-1 tag+i word NNP soughtNNGzVBDGz?i-2 word concentratingVBGV-?NNV-i-1 tag+i word VBN hardRBq= ףp@JJFxIN'1ZܿVBNp= ףi-1 tag+i word JJ suspectedVBNGz?JJGzοi-1 tag+i word : normentNNNNP? i-2 word keep NNSʡEPOSffffff?JJRNbX9VBNn''ffffffRBQ?VBG|?5^?JJI +?NNCl?NNP"~ji word pitcherJJR%CԿNN%C?i-1 tag+i word NN brokenNNSp= ףؿJJK7A?NNx&1i-1 tag+i word RB closerVBh|?5INDlRBR @JJR$Ci-1 suffix rghVBZK7AVBPK7A?i-1 tag+i word CC breakfastVBN1ZdNN1Zd?i-1 tag+i word IN aDT"~jNNV-?NNPffffffi tag+i-2 tag VBZ WPRB1Zd˿NN?JJRCl?WPJ +?RP'1ZNNPV-?NNPSVBG-?PRPV-JJʡEINX9vPRP$K7?VBPA`"˿DTHzG?CDnVB/$?VBDoʡ?RBRQVBNףp= ?i-1 tag+i word , clearJJʡE?NNʡEi-1 tag+i word DT subordinateNN&1?JJ&1i word express VB`"?RB rJJR|?5^JJnINGzNN#~j?VBPMb?NNSZd;NNPOn?i+1 word overseasJJR`"޿RPjt?RBjtJJ`"?i-1 word journalVBZS?NNPʡE?JJ}?5^I̿NNOnFWy&1|VBDGzRBSINS?i-1 tag+i word NNP notebookVBZjtNNSʡENNCl?i word tapestryJJR+NN+?i-2 word rulerRBR-VBZ-?i-1 tag+i word NNP carlosNNPSKNNPK?i+1 suffix air NNVBD#~jĿVBNClJJX9v߿NNS7A`ҿVB1ZdRB rh?WDT/$IN/$?NNPrh|@i-1 tag+i word CC increasedJJ+?VBD r?VBNjti-1 word infrastructureJJM?NNMi-2 word unitholdersVB +?NNSd;ONN`"?NNPd;Oi+1 word abdicateVBZ= ףp=NNS= ףp=? i word themeNNS`"NNK7A?JJK7i-1 tag+i word DT blowsNNSQ?NNQ޿i-1 tag+i word NN advisesVBZJ +?NNSJ +i+2 word opportunityRPʡE?INʡEֿi+1 word mayoralVBGT㥛 JJ"~?NNw/i-1 tag+i word VBP surprisedVBN~jt?JJv/ݿVBD+ۿi-1 tag+i word WDT managedJJ+VBD+?i-1 tag+i word JJ iousNNSDl @NN}?5^INNPQ i-1 word maeNNV-?VBV-i-2 word slippedRB-?IN-ۿi-1 tag+i word VBZ demiseNNK7A?RBK7Ai-1 tag+i word JJ brazilianJJ"~?NNP"~i-1 word collapsedDTV-?RBV-i+1 word behind RBB`"?VBh|?5?JJFNNCl?VBNoʡ?RPp= ף?VBGV-?VBD)\(?VBPh|?5VBZ|?5^i-1 tag+i word NNP timbersNNPS5^I NNP5^I ? i+2 word plusCC rhVBG!rhNNsh|??i+1 suffix rabTOx&?VBNClRBtVJJCl?NNP-ƿi-1 tag+i word PRP compareNN#~jJJjt޿VBB`"?i-1 word awareIN?5^I ?DTNbX9WDT1Zdi word permittedVBN$CJJ/$VBDzG@ i-2 word moreVBP?5^I ҿWP{Gz?NN|?5^?JJS1ZdFWffffff?RPd;OVBDv/PDT^I +׿NNPS333333JJ-?VBZ5^I ۿDTjt޿RBm@NNS|?5^NNP"~?RBRzGIN#~j?VBNɿVB!rh̿CDCl?JJRQ?VBGzG%i-1 tag+i word -START- transportationNN ףp= ǿNNP ףp= ?i-1 tag+i word IN indiaNNʡENNPʡE?i-2 word highsNNSzG?JJRzGi-1 tag+i word , down VBDףp= VBP?5^I IN+?NNSRB)\@UHGzJJMVBG7A`VBZ-RPDl i+2 word bidsVB\(\?WDTy&1NN\(\INy&1?i-1 tag+i word -START- norrisJJ+NNP+?i-1 tag+i word NN acceleratesVBZ%C?NNS%Ci+1 word eliminateVBClRBCl?i+1 word flowerJJZd;O߿NNPZd;O?i-1 tag+i word IN punitiveJJ(\?NN(\ҿi word trumpetsVBDA`"VBZA`"?i+2 word coursesNNJ +ɿVBG?JJI +i-1 tag+i word POS bestJJSZd;?NNZd;i+2 word efforts VBZʡE?NNP= ףp=?NNvVBD#~jRBRVBP?DTq= ףpVBGQ?JJjt?RB+INq= ףp?i word officersNNSoʡ?NNoʡi-2 word responsibleJJS?DTX9v?NNSZd;OVBX9vοVBGNN&1VBPv?i-1 tag+i word NN exceptIN;On@VBN7A`NNQVBDni+1 word venturesomeJJRq= ףpRBRq= ףp?i-1 word vividlyVBZCl?JJCli-1 tag+i word CC nursingNN'1Z?JJ'1Z i word haysNNPS ףp= NNP ףp= ?i+1 word breakdownsNNSSNN/$?JJClǿi-2 word animationNNCl?JJCl绿 i-1 tag+i word -START- toshiyukiJJ{GzNNP{Gz?i word cairenesNNPSS㥛?NNS+NNPi-1 tag+i word JJ biotechnologyNNV-?JJV-i word fenugreekVBK7NN)\(?JJK7i-1 tag+i word JJ breedingVBG333333NN333333? i word aliveRP/$JJ}?5^I@NNOnCD +ֿi-1 tag+i word VBD exhibitJJOnNNOn?i-1 tag+i word JJ presentNNRQ?JJRQi-1 tag+i word DT pennyNNd;O?JJd;Oi-1 tag+i word JJS sprinklesVBZK7A`?NNSK7A` i word dubsVBDSۿVBZS?i-1 word settlingINuVRP rh?RBRV-?RBGzJJRV-i-1 tag+i word VBN adeptNNS rhVBNnJJ)\(? i+2 word pwaVBG1Zd?NNP1Zd i+2 word wifeVB|?5^VBN|?5^?RBˡEINˡE? i word heiwaVB rNNP r?i-1 tag+i word NN settingVBGuV?NNuVտi-1 tag+i word DT middleNNSQJJ%C?NNV-NNP+?i-1 tag+i word RP overseasJJ|?5^?RB|?5^i word adequatelyRBS?VBSi-2 word recognizedNNtV?JJtVi-2 word createJJRnѿJJQ?NNPQ?NNZd;ONNS{Gzt?i-1 tag+i word NN dropNNSjtNNV-?JJPnؿi-1 tag+i word PRP$ pricelessNNX9vJJX9v?i+2 word immigrationVBNA`"?JJA`"i-1 tag+i word CC batesNNSMbNNPMb? i+2 word duNN+?JJ+i word consultedVBN= ףp=?JJS㥛VBDZd;i+2 word catchersJJClINCl?i-1 tag+i word VBP firmlyVBNHzGRBHzG?i-2 word deliberatelyVBG!rhNNK7A`?JJmi word acceptanceNNP(\?VBP1ZdӿNNPSsh|?NNˡEIN/$i-1 tag+i word RB indicativeJJA`"?NNA`"i-1 tag+i word IN oklahomaNNPSSNNPS?i word islandsNNSB`"?JJClǿVBZB`" i+1 word fiatJJ#~j?NNK7NNPGzοi-1 tag+i word TO repaymentVBNN?i+1 suffix iefVB"~POSS?VBPGz@VBZʡENNPh|?5NNCl?VBD5^I WDT&1INv DT&1?JJRp= ףNNPSCl׿RBV-?VBN(\?JJףp= @i-2 word realigningJJw/?NNw/i-2 word limitsJJMb`?NN ףp= ǿRBMbXVBN5^I ?i-1 tag+i word CC refiningNNjt?JJ ףp= VBGx&i-1 tag+i word RB widespreadVBPJJ~jt?NNSտi word singledVBNv/?VBDv/i-1 tag+i word NN claudioNNvϿNNPv?i-1 tag+i word , worryNNS+VBP+?i-1 word bipartisanNNSOnJJOn?i+1 word sackingRB|?5^?JJ|?5^i tag+i-2 tag WDT JJVBZx&?VBP= ףp=?NNS$C?NN`"οVBDv/i-1 tag+i word JJ workVBPsh|??NN(\¿JJ~jti-1 word leverageJJ#~jԿVBZ333333VBv/ͿRBx&?NNX9vVBDMb@i+2 word scrumVBNp= ף?VBDp= ףi-1 tag+i word IN rapeNN~jt?NNS~jti+1 suffix ntsVB+NNPSˡEJJSE@PRP$)\(?VBP}?5^IJJZd;O@DT/$NN@NNP`"yWRB7A`VBG-?WDTv/@NNSK7RBStVINCl@VBDX9v?RPvPOS'1Z?RBR㥛 VBNsh|?VBZQ?RB'1ZPDT~jtӿCDQ@JJR ףp= ?WPB`"?FW ףp= ?PRP)\(i+1 word newsprintNNl?JJ+JJR"~j?VB"~jVBGʡEֿi-1 tag+i word CD damageNN|?5^?JJ|?5^ٿi word entrekinNNPV-?NNV-i+1 word scentsNNK7?JJK7i-1 tag+i word VBZ likelyRBS㥛JJsh|@VBNףp= i-1 tag+i word NN contactsVBZV-NNSrh|?NN\(\i-2 word squibbNNPS"~NNP"~?i-1 tag+i word NN demandVB|?5^?VBPMb?NN(\i-2 word tischINFxRPFx?i-1 tag+i word NNP usedVBN"~jԿJJT㥛 VBDtV? i-1 word meanDT(\ݿJJ/$?VBDK7VBNbX9RBQٿINףp= ? i suffix NALJJK7A`?NNPK7A`i-2 word basicallyJJףp= VBG(\?JJRK7A`?NNK7i-1 word secretariesVBZ;On?VB;Oni-1 tag+i word VBZ entrenchedVBN rh?JJ rhi-2 word gingerlyVBZ(\ſNNS(\?i-1 word steakRBRoʡNNoʡ?i-1 tag+i word NN gurusVBZ7A`NNSCl@NNx&VBD+i-1 word tentativeRB333333IN333333?i-1 tag+i word VBN forthJJRI +JJ&1ҿRPn?i-1 tag+i word VBZ diamondsVBZ|?5^NNS|?5^?i+1 word fallingVBNHzGѿVBDHzG?i-1 tag+i word VB jointJJ7A`?NN7A`i-1 tag+i word VB sureJJn@NNMbRB(\µi-1 tag+i word ( amVBPGz@NNPGzi-1 word unexpectedNNSNbX9?NNNbX9i-1 word teamsNNoʡVBDbX9ȶ?VBN +VBP(\@WDTPn?JJ= ףp=INPni-1 tag+i word VBP reassuranceVBSNNK?JJv/i word imperialJJRQNN +޿NNPZd;?i word negotiateVBPn?NNS/$RBnNNHzGVB;On?i-1 tag+i word VB unwillingVBGQJJQ?i-1 tag+i word POS melancholyJJMb?NNMb i word pathNNSZd;OǿNNZd;O? i suffix ikaFWffffff@NNSbX9NN/$i-1 tag+i word `` shakeNNPjt?CDjtֿi tag+i-2 tag TO '' VB㥛 ¿JJS-?JJRGzRBS?DT%C̿VBG7A`?JJK7ɿNN/$RBS-i-1 tag+i word VBD activelyRBq= ףp?JJq= ףpi word statistJJV-?NNV- i suffix ude NNPd;O?VBjt?JJ rh?VBPQ@RB rhVBZX9vNNSL7A`eNNPSK7ARP+NNףp= @VBDbX9JJR'1ZVBNx&1i tag+i-2 tag FW DT JJRA`"?RBRA`"VBZMb?JJffffffCD+?NNSy&1NNMb?FWK?POSʡE?VBD+ i word sangerNNjtܿNNPjt? i+1 word toePRP$9v?PRP9vi+2 word howardNNSB`"JJjtNNPˡE?i+1 word benefitsJJ^I +?VBN-˿NNMbX9i-1 tag+i word TO traditionallyVBK7RBK7?i tag+i-2 tag JJ WDTNNS?VBZQſVBPClNNSS㥛?!i-1 tag+i word -START- thereafterNNPtVRBtV?i word ectoplasmicNNS㥛 JJ㥛 ?i-1 tag+i word `` rightNNh|?5?JJZd;RB|?5^ڿi word trifariNNPK7A`?NNQRBffffff޿i-1 tag+i word VBD setNN)\(RB+VBK7?PDT~jtVBNףp= ?i word voluntarilyNNSh|?5RB?NN1Zdi-2 word resistanceVBPx&1?NNx&1RBRh|?5?JJh|?5i word eurobondsNNPS|?5^?NNSQ?NNP(\i+2 word upscaleRBFx?NNFxJJNNP?i-2 word postingNNRQ?JJ-JJRSӿ i word liftCCjtĿVBMbX?VBP"~j̿VBD(\i-1 word found RPq= ףpRB-@WDTX9vINn@VBZX9vDTClNNSX9v?RBSx&ѿJJSx&?JJoʡi+2 word soonerJJ$CNNNbX9CD+@i+1 word goodmanPOS?NNi-1 tag+i word NNP dollarNNPSZd;NNm?NNP"~ji-2 word supportsJJRNN?i-1 tag+i word NN endsVBZ/$?NNSףp= ÿRBJ +ٿi+2 word taipeiJJRDl?NNl?NNPzGi-1 tag+i word ) yieldsNNSQVBZQ?i-1 word jewelryNNCl?VBZZd;NNS ףp= @NNP#~jVBClNNPSZd;Oi+2 word zealandNNPV-?VBV-JJjt?NNjti+1 suffix troFWS@NNClJJMb?NNP|?5^i+1 suffix uraJJV-?NNP{Gz?NNffffff?VBNMbJJRffffffi-2 word attractingNNQ?JJK7NNSV-i-1 word mccawJJʡEտNNPʡE?i+1 suffix akyVBZ rh?NNS rhi-1 tag+i word POS tumbleNNNbX9?JJNbX9i-1 tag+i word RB waitingVBG1Zd?NN1Zdi+1 word undesirableVB{Gz?NN{Gzi+2 word spentVBV-NNbX9JJq= ףp?NNP9v?i-2 word livingJJl@NN{GzRB}?5^I? i-1 word did VB"@VBGA`"RB/$?JJRM?VBPX9vVBNʡEUHL7A`JJ'1ZԿINV-NNFxRBRM i suffix fRBx&1NNB`"SYM~jt?LS(\?i+1 word fundingNNST㥛 JJ?NNzG?VBNSӿVB+i-1 tag+i word NNP weekendVBPv/տNNPv/?i-1 suffix ibeVBZ +VBN +NN +?VBD +? i word jimmyRB/$ٿNNP/$?i+1 word targetsNNPV-?INʡEWDTʡE?JJ|?5^ɿNNNbX9i-1 tag+i word RB closingVBGbX9?NNbX9i-1 tag+i word CC managingVBG㥛 NN㥛 ?i tag+i-2 tag VBP EX NNX9vJJRv@VBN㥛 VBZI +NNSZd;O?NNPJJMVBD㥛 ?RBRQRBZd;?i+1 word ogilvyVBZd;OֿPOSd;O?i-1 word porousJJ+NN+? i suffix BKJJZd;ONNPZd;O? i+1 word funJJRPn?RBPnп i-2 word sonsINL7A`?NNPCl?VBG-NN~jt?RBRMRBM?i-1 tag+i word DT homelessNNK7?JJK7i word backhoeNNx&1?JJx&1i-2 word towelINT㥛 ?RBT㥛 i-1 word putsVBNZd;OJJZd;O?i-1 tag+i word RB startedVBN{GzVBD{Gz?i-1 tag+i word RB employsVBZFx?VBPFxi-1 tag+i word PRP avoidVBD-VBP-?i-1 tag+i word JJ slumpVBPd;O޿NNd;O? i-2 word bigVBG{Gz?IN㥛 ?NNS r?VBx&1NNPSCl'')\(?WDTMb?NNP`"VBN`" POS~jtJJx?VBDx&1?VBZQ?RB%CNN5^I ? i suffix AKENNGz?NNPSۿNNPSI +i+1 word innovativeRBSV-?JJSV-i-2 word investmentWDTV-?NNPq= ףp@NN9vVBD|?5^JJ333333?RBRB`"?VBNS?IN rȿNNS"~VB rh?POS%CVBPCl?RBK7A`VBZCl?VBGZd;O?i+2 word fanucNNSJ +NNJ +?i-2 word auctionedRBMbINMb?i-2 word delayJJ ףp= ?NNPm?NN;OnRB|?5^?IN|?5^i-1 tag+i word NN clipsNNS333333?NN333333i word eyebrowsNNS +?VBZ +οi-1 suffix hanPRPA`"?NNPT㥛 PDTZd;RBS/$VBGWP{Gz?NN&1JJMbRPI +RBjt?NNSuVNNPS rhPRP$ʡE?VBDʡE?VBNK7JJRn?VBPQ?CCʡERBR9vCDw/?IN`"JJS/$?VBZS?DT(\ҿVBQ@i-1 tag+i word , scholarsVBZT㥛 пNNST㥛 ?i-1 word robesRBx&INx&?i+1 word counterpartsPRP$L7A`?PRPL7A`JJh|?5NNPh|?5?i+2 word capitalizeVBClVBPCl?i+2 word moderateJJRV-?RBRV-i-1 word biochemistJJ+NNP+?i-1 tag+i word NNS spendingVBG|?5^?NN|?5^ʿi-1 word variousJJ!rh?NNSVBZd;OVBG?5^I @NNbX9 i suffix cosNNS1Zd@NNP1Zd i word appealNNMbX @PDTK7VBP~jt?RB +NNPOnJJ+i+1 word unwiseRB!rh?JJ!rhi-1 word seriouslyVB?VBP+RB1Zd i word outputNNPtV޿VBNZd;NNRQ?CDffffffƿ i-2 word days NNzG?CCʡE?INw/VB%CVBGp= ףпJJMb @VBP/$?RB ףp= NNSʡENNP㥛 i-1 word radioVBNbX9޿WDTv/?RBRQINv/NNP9v?NNjt?VBDbX9?i-2 word operatedNNGzNNPGz?i-1 tag+i word NNS turnVB?5^I VBPRQ?VBDd;Oi+1 suffix rdtNNS㥛?JJ#~jFWMbVBP= ףp=i-1 tag+i word VBG publishingVBG?NNJJx&1i-1 tag+i word NN indifferenceNN-?VBD- i suffix 5-0JJ|?5^CD|?5^@i+1 word disputesVBsh|?NNCl?JJOn? i+2 word dumpVBNv?JJvi-1 tag+i word VBP faceVBP(\?NN(\i-2 word daleyVBNV-VBDV-?i tag+i-2 tag VBD CD DTtV޿NNPx&1?RB)\(?NNoʡ?JJSSÿVBN$CӿRBRsh|?ſJJ9vVBGp= ףؿRBS= ףp=?IN-?RPK7JJR;Oni+1 word lithoxVBv/INv/?VBN ףp= VBD ףp= ?i word unsuspectingVBG1ZdJJK@NNw/ԿNNP\(\ i-2 word cultNNPClNNCl?i-2 word fairerVB1ZdJJR1Zd?i+2 word studioPDTZd;ORBʡE?INClٿ i+1 suffix to PRP$|?5^CCV-RBSʡE?RBRCl˿EXSVBZv/?RP+ NNMb@VB㥛 ?NNPSI +?VBNx&?WDTp= ףؿDTx&1?TOK7NNSv/?RBx&1?CD|?5^?IN(\ҿJJR;On?VBP"~?VBDq= ףp?POSClPRPMb?JJSףp= ÿVBGˡE?JJ"~jNNPT㥛 FW-?''x&1?PDTK7MDV-?UHMb@ i+1 word laNNPx&1?INZd;OͿFWNbX9i+2 word expireRB|?5^JJ|?5^?i-1 tag+i word VBD dataNNSffffff?NNffffffi-1 tag+i word JJ skywardRBd;O?NNd;O i word wanderVBZ$CVBʡEVBP rh?NNjti-1 tag+i word NN admittedVBD\(\?VBZ+VBNK7?i+1 word ribosomalVBNn?VBDni-1 tag+i word NN recognizesVBZzG?VBDzGi+2 word revolutionaryVBN;OnNN;On? i suffix opfNNS/$ӿNNP/$?i-1 tag+i word VB troublesomeNNSJJS?i-1 tag+i word IN laborJJV-NNPV-? i+1 word chicVBʡE?NNʡE޿i-1 word chapmanVBG-?NN-޿i-1 tag+i word PRP$ editorsNNSQ?JJQi+2 word payrollJJJ +?NNJ +i+2 word nondemocraticUHMbJJMb?i-1 tag+i word JJ draftedVBNCl?VBDCli+2 word arbitrage WDTʡEINQοDTCl?RP!rh?VBD(\JJS~jtӿVBN&1?VBQ?JJV- i+1 word poorRB"~j?JJ"~ji-1 word mccarthyNNP1ZdVBPp= ף?VBD-ӿi-1 tag+i word IN frankfurtNNPS"~j@NN!rh?NNPS$i-1 tag+i word -START- reimbursementNNT㥛 ?JJNNP&1ҿi word hawaiianJJ/$?NNP/$i-1 tag+i word NN chopsNNSV-?NNV- i+2 word muchRBzG?FWV-JJffffffINZd;?VBGV-?NN|?5^VBD$C@JJSlVBN/$VBP#~j?VBZMbX?NNSS㥛POSMbX9EXFxRP9vDTK7AVBv@NNP#~ji-1 tag+i word TO sellVBʡE?NNʡE#i-1 tag+i word -START- additionallyLSףp= RBp= ף?NNPzGڿi word restorationNN333333NNP333333?i-1 tag+i word IN canningVBGK7NNK7? i suffix hnsNNPS"~jNNP"~j?i-1 suffix epaNNʡE?VBDv/RBR+߿VBNv/?JJʡEJJR+?i-1 tag+i word VBG infantileJJCl?NNPCli word negotiableJJ|?5^ @DTlRBENNoʡſNNPL7A`i-1 tag+i word VBZ jacquesNNPףp= ?NNSףp= i-1 tag+i word VBP sangVBxVBDx?i-1 tag+i word IN mineJJQ?NNQi+2 word hardestVBNJ +@VBDT㥛 VBPV-߿i-1 tag+i word TO salvadoranNNPVB-JJ|?5^?i-1 tag+i word NN scholarNNSh|?5NNh|?5? i-1 word aepNNPSw/?NNPw/i+1 suffix rleNNMJJM?i+2 word exploresNNPKVBZ$CۿRB{Gz?i word tropicanaJJQٿNNPQ?i word quartetRP+NN1Zd@NNPbX9 i suffix sunVBPClNNCl?i-1 tag+i word DT folksNNSK?VBNKi+1 word coalitionNNPS ףp= ?NNSxֿJJQ@NNNbX9NNP ri-2 word isabellaRP?INɿi word multistateNN\(\?JJ\(\i-1 tag+i word IN vietnameseJJQ?NNPQi-1 tag+i word NN jerkedNN;OnڿVBN;On? i word shotsNN+NNS/$@JJffffffi-2 word identifyVBn?JJni-1 word peterNNPSd;ONNPd;O? i suffix lubNNSZd;ONNrh|?JJ}?5^I?NNP)\(?i-1 tag+i word -START- israeliJJL7A`?NNrh|NNPK7ɿi-1 tag+i word VBZ spotVBPZd;ϿNNZd;?i+1 word surroundedDT-?PDTHzGRBMbпi-1 tag+i word NN no.VBDxNN9v?NNPtVi-2 word comfortNNP/$NN/$?i-1 tag+i word VBD preoccupiedVBN~jt?VBD~jt i+1 word zipWDTS?INSi-1 word activityVBI +ƿVBDRQVBNVBPx?WDTSINS?VBZCl?i-1 tag+i word NN treasurersNNPSQ?NNSQi-1 tag+i word JJ deepRBX9v?FWX9vοi-1 tag+i word -START- lockheedNNNbX9ȿNNPNbX9? i word rootsNNSh|?5?NNh|?5i+1 word diplomaticVBDrh|?JJrh|?RBrh|NNPrh|i-1 tag+i word JJ drinkerNN%C?NNP%C̿i-1 tag+i word RB threatenVBFx?JJFxi-2 word characterJJ rh?NNP rhi word allstateNNtVNNPtV?i word unwelcomeNNZd;JJZd;?i-1 word operateJJ7A`?RBHzGINHzG?NNSv/NNPS?NNPSV-RP7A`¿i+2 word billingRBV-JJM?NNMڿINV-?i-1 tag+i word VB foreverVBd;ORP333333RBsh|?@i+1 word solutionNN rhJJ rh? i-1 word notNNS ףp= RBRx&?JJR$CVBPClgINtV?VBNbX9 @VBG ףp= ?JJv?EX㥛 RP1Zd?NNPT㥛 ?VBZy&1NNx&PRPCl׿RBS㥛?DT~jt?NNPSV-?VBD/$CC?5^I ҿPDToʡ@VBNoʡ?i word bradleyNNSZd;NNPZd;?i-2 word morassNNM?JJMi-1 tag+i word , suggestingNNS㥛VBGS㥛?i-1 tag+i word -START- trueNNPRQJJDl@NNx&1ܿi+1 word amplifiersVBN\(\?VBD\(\i+1 word poisonNNClѿJJS9v?RBS9vCDK7AJJ9v?INV-?i-1 tag+i word CC countsVBZ-?NNS-ۿi-1 word marchWDTK7INK7?i-1 word logicalRBy&1?NNMbJJ;On¿i+2 word targetingVBZENNSE?i-1 tag+i word POS voluntaryJJQ?NNQi-1 tag+i word VBP bringVBPGz?JJGzi-1 tag+i word JJR messJJR!rh̿NN!rh?i-1 suffix st.JJK߿NNPHzGٿNNPS}?5^I? i suffix utoNNPSMbX9NN ףp= @JJʡENNPQ?i-1 word democrats NNS(\NNPw/VBG-?NNy&1VBDK@VBPDl)@IN5^I VBX9vVBNV-RBX9vi-1 tag+i word IN showVBP(\µNN(\µ?i-1 tag+i word NNP justiceVBZMbNNMb?i-1 tag+i word JJ institutesNNPSMbp?NNSA`"NNA`"@NNPMbpi-1 word writerJJ+߿VBZQ?NNP\(\?NNI +VBDGz߿VBNGz?i-1 tag+i word JJ comeVBPjt?VBNMb?NNOn i+2 word alsoVBDlҿJJv/VBZuVNNS!rh?VBG|?5^?RBx&1RBR|?5^?INq= ףpݿVBNMbX?WDTnDTPn?NNP#~j?VBnNNPS$CNN!rh @POSuV?TOZd;OJJR;OnCDʡEi-1 tag+i word JJ cardiacNNQJJQ?i+1 word typographicalVBjt?JJjtܿi-1 tag+i word JJ hotelNNQ?JJQi+2 word indictedRB"~jIN"~j?i-1 tag+i word , attributedVBD|?5^?VBNS㥛?INjtԿ i suffix pidVBv/VBPClNNSClJJ"~@NN r i-1 tag+i word VBD catholicsNNPSMbX9?NNSp= ףNNP+i+2 word installVB#~j?VBPx&1JJRףp= NN#~j?i-1 tag+i word VBD minimizeVB+?JJ+i-1 tag+i word , convertVBZV-VBQӿVBP^I +?NN`"VBDQ޿i-1 tag+i word NNS screensVBPnNNSn?i-1 word figuredRB/$?JJ/$IN`"RP`"?i-1 tag+i word NNP nursingNN`"?NNP`"!i-1 tag+i word -START- throughoutIN#~j?RP;OnCDGz޿ i word bancoJJx&NNPx&?i-1 tag+i word `` cemeteryNN333333NNP333333?i-2 word practitionersNNM?FWMi-2 word taiwanVBK7?NNPS-JJGzRBl?NNP-?i-1 tag+i word '' discountingVBG;OnNN;On?i+1 suffix rahVBV-?NNS#~jNNQi-1 tag+i word NN indexNNPtV?NNtV޿i-1 tag+i word RB dropVB&1?NN&1i-1 tag+i word WDT relyVBPPn?RBPni-1 tag+i word DT suppressorNNM?JJMi-1 tag+i word VB shorterJJRHzG?RBoʡݿVBNX9vi-1 word ferretingRB= ףp=RP= ףp=? i-1 word data VBNbX9VBD^I +׿VBN(\JJ㥛 NNS= ףp= @NNPA`"?NNPS r?VBG= ףp=RBʡE?NNZd;O @VBPMbINˡEi-1 word acknowledgingDT9v?EXX9v?RBX9vIN9vi+2 word objectionsVBK7?JJK7ٿi-1 word contrasRBX9v?NN!rhVBuVVBP+?i+1 word admissionsDT(\CD(\?i+1 word narrowRB333333?IN333333i tag+i-2 tag VBG PRP$INm?DTmͿNNSS?NNP"~jܿNN)\(VBNV-JJv?i-1 word fuzzyNNS+?VBD+i word covenantNN(\?JJ(\ i-2 word ifarNNS|?5^?NN|?5^i-1 tag+i word NN scenariosNNSOn?NNOni-1 tag+i word RB deterredVBNZd;VBDZd;?i-2 word richerNNS9v?NN9vڿ i suffix zleVBsh|?@NNzGJJV-i word fishing\/processingVBG㥛 JJ +?NNRQؿi-1 tag+i word NNS awayVBPx&1RPCl@RBV-i-1 tag+i word CC leavingVBG333333?NN333333i-1 tag+i word RP aboutRBw/?INw/i-1 word rymerNNPS~jtNNP~jt?i word prodigalJJ~jt?NN~jtؿ i word goutyJJ/$?VB/$i-1 tag+i word NNS togetherRBA`"?VBDA`"i-1 tag+i word RB danceVBS?NNSi tag+i-2 tag JJ VBN NNPuV?VBClVBG(\VBDrh|?RBbX9?INzGVBZ/$DTOn?NNS?JJ%CNN'1Z?VBNrh| i-2 word cie.FW~jtNNP~jt?i+2 word eatingVBNףp= RBףp= ?i-2 word viroquaRBIN? i+1 word milkJJ7A`ҿJJR ףp= @NNZd;OVBDZd;i-2 word evenlyJJ?CDi+1 word ballotJJ|?5^?NN|?5^i-1 word fullyJJsh|?ݿNNZd;OVBD~jtVBNjt?RBS?VB r i word cynicNNSRQJJd;O?NNw/i-1 tag+i word POS fortuneNNʡE?JJʡEi-1 tag+i word CD conservativesNNSx&1?NNx&1i-1 word signatureJJS?NNSi-1 word alreadyNNjtINQEXh|?5VBGMbX9VBS@NNSMbX9VBZPn?RPMRB~jt?VBDvVBN rh?VBPCl?JJffffff?FWCli-1 tag+i word DT birdNNOn?JJOnÿi-1 tag+i word VBD wrongJJ^I +RB^I +?i word conditionedVBNZd;?VBDZd;i+1 suffix EARVBGffffffƿWDTPnNNSI +?MDZd;VBNjtJJCl@DTV-ǿCC;OnRB9v?VBDZd;OINB`" @NNPNbX9NNPSZd;ONNQ@RPoʡVBGz?i-1 tag+i word DT rivalJJʡE @NNʡE i+2 word milestonesVBZnVBP/$?NNh|?5οRB rhٿi-1 suffix ild VBGS㥛?VBDB`"ɿPDTx&1?RBRd;O?JJRd;ONNS?NNP&1JJn?NNx&1CD(\PRP`"?RBJ +RP ףp= ?i-1 tag+i word NN sprayNNSV-NNV-? i word launchVBZ\(\׿VB1Zd?NNK7?JJnRB1Zdi-1 tag+i word VBG vengeanceNNv?RBvi-1 tag+i word DT whitewashNNSzGNN^I +?JJ~jti-2 word selectedNNX9vRBx&1̿VBX9v?VBPzGJJl?i-2 word exchequerVBDףp= NNPףp= ?i tag+i-2 tag EX VBZVBZx&?POSx&i-1 tag+i word JJ earNNGz?JJGzi-1 tag+i word DT stageVBlVBPNNZd;@JJA`"NNPI +i-1 tag+i word VBD contentJJ/$?NN/$ i suffix gusJJX9v?NN{GzFWjt޿i+2 word repayNNSZd;?NNZd;i-1 tag+i word TO landVBoʡNNoʡ? i word stepsNNP9vJJʡENNQVBD/$ٿRB1ZdVBZHzG?NNSMbX@ i-1 tag+i word -START- christiesNNSMbNNPMb?i-2 word electronicsVBGzNNSQ?JJQVBDGz?i-1 tag+i word RB forgottenVBN$C@JJnRBR#~jRB(\i+2 word crisesJJK7VBDʡE?VBGZd;O?VBN?5^I ҿi+2 word largerVBN~jt?JJ~jti-1 tag+i word NN worldNNzGNNPzG?i+1 word beveragesJJClVBNGz?NN/$i-1 word ministerNNPK7?JJK7i-2 word relativelyNN(\JJ)\(ԿVBZA`"NNSoʡ? i+2 word laJJ^I +߿INK߿VBGzFWGz?RB^I +?i+1 word roughlyJJSPOS rhVBNS?RBh|?5VBZ rh?RPh|?5@i-1 tag+i word `` overRBQINQ?i-1 suffix vicVBP5^I NN5^I ?i-1 tag+i word , fueledJJQVBDQ?i word panelliNNQNNPQ?i-1 tag+i word VB allowedVBNT㥛 ?RBClVBD'1Zi-1 tag+i word CC engineeredVBNjtJJ{Gz?VBDOnÿi+1 word afnasjevNNHzGNNPHzG?i-1 tag+i word -START- patrickDTB`"NN%CNNP333333?i-1 word companionVBZQNNQ?i-1 tag+i word VB benefitVBZd;O?NNZd;O i suffix JayNN}?5^INNP-?NNPSuV i suffix yrdNNnNNPn?i-2 word filingsJJDlٿIN㥛 CC㥛 ?NNS?NN^I +i-1 tag+i word TO healthvestNNP ףp= ?VB ףp= i-1 word concludeDTDl?WDT/$INGz?i-1 tag+i word DT storeNNCl?JJCli+2 word tuesday VB%C̿RP$CNN!rh@VBDSVBP|?5^RB"~?VBNd;O@JJףp= ?INd;OοNNP7A`i-2 word manhoodVBNS?JJSi-1 word ballplayersVBPCl?NNCl i word papersNNPSMbNNS r?NNPZd;?i+2 word threatDTZd;O?RPxRB`"?NNA`"@VBD+CCʡEVBPʡEۿJJ)\( i-2 word speedsVBP|?5^ڿJJ|?5^?i+2 word askedINE?NNPQ?NNPSFxRBNN'1ZJJx&1ȿ i-1 word coolRPOnRB;On@INZd;O i+1 word near VBX9v?NN+@JJX9v INClRP?5^I RB(\?VBDv?VBNp= ף?WDT(\VBZGzNNSʡE޿i-2 word genialNNPS+NN+?i+1 word relativeJJ%C?VBD%Ci-1 tag+i word DT ordealNNʡE?JJʡEi-1 tag+i word IN naryDTʡE?PDTjt?JJPnINʡEi-1 tag+i word NN specialistNN?JJx&VBP&1i+2 word nosediveRBjtĿINjt?i word mafiosiNNS?NNi-1 tag+i word VB physicianNNy&1?JJy&1i word conformVBZy&1VBS @VBPX9vNNQi tag+i-2 tag VBP WPNNPSy&1VBDI +RBZd;߿VBGʡENNSh|?5?RPx&1?NN +VBN-?WDT/$VBZ?5^I IN +?VB333333?JJ%C?VBPMb`?i-1 tag+i word POS hydraulicJJ`"?NN`"i+1 suffix xonWDTFxINFx?i-1 tag+i word IN cableNNPjt?JJjti+1 suffix yenJJ= ףp=?NN(\ݿCDd;O?NNP= ףp=NNSCl׿i word exhilaratingVBGMbX9JJMbX9?i-1 tag+i word NNP magnoliasNNPSMb`NNS/$?NNPFxi word catherineNN9vNNP9v?i-2 word lehmanRPףp= ?NN+VBDPn?VBPPnJJ+?INףp= NNPxNNPSx?i word suburbanVB ףp= JJtV@NN-NNP$Ci+2 word loyaltyVBZd;O?NNPZd;Oi-1 tag+i word DT specializedJJtVNNPtV? i word assureINˡEVBZV-VBM?i+1 word appearsJJ"~ҿVBZClVBGENNn?i+1 suffix gmaDTq= ףp?UHq= ףpͿNN rhNNPK7AJJ;On?i-1 tag+i word -START- newsNNPEؿNNST㥛 пNNV-?JJI +CDMbؿi word payableVBZVB-ӿVBPQJJtV @NN|?5^i+2 word directionlessJJ)\(?NN)\( i word lineupNNSsh|?NNsh|?? i-1 tag+i word -START- petrocorpNNPSˡENNPˡE?i+2 word benefits VBh|?5?NNjtJJ + IN1ZdWRB1Zd?VBG&1NNS+VBN$C@VBPQ?VBZ+? i word total VBDtVοVBP|?5^@RBvRPffffffNNQ?CCX9vJJRSVBNԿJJI +@IN)\(VBGz?NNP;OnNNS+i-1 word largestJJSRB&1NNSK7A`NN;On?VBGV-?i+2 word marioNNP|?5^?JJ|?5^ i word meantVBD r@VBNZd;O@VBPZd;RBˡEVBZ`"JJ-FNNq= ףp i-1 word thrownJJRQ?RBRQi-1 tag+i word IN flashyJJ/$?NNP/$i+2 word jacksonVBPQ?VBDQi-1 word recallsDTd;OINd;O?PRP$V-?PRPV-i-1 tag+i word WDT wonVBZ+VBD+? i-1 word p.m.VBGOnRBףp= NN"~?VBDZd;ONNPFx @i-1 tag+i word JJR preciseJJQ?NNQi-1 tag+i word RB swiftJJ(\?VBDlVBNSi+1 word seatedNNGz?RBGzi-1 word togetherVBZw/VBPq= ףp?RBh|?5JJjtINh|?5?i-1 tag+i word VBZ requiringNNV-VBGV-?i-1 word exchangesVBP#~j@JJEVB +RBM?NN?5^I VBDZd;?VBNHzG?i-1 tag+i word RB preventVBʡE?NNʡEӿi-1 tag+i word POS rocketedJJ7A`VBD7A`?i-2 word modernINx&1VBGGzWDTx&1?NNGz? i word menusRB9vNNNNSZd;O?i+1 word transNNPv/?VB-JJv/?i+2 word breedenVBDNbX9VBP-?VBNNbX9?JJ~jtRBT㥛 i-1 tag+i word -START- myPRP$;On@RB+JJzGNNPQi+2 word desecrationVBP{GzNN{Gz?i+1 word doingRB(\VBCl?VBPClDT(\?i-1 tag+i word VBZ closerRBRbX9?RBGzοJJR&1VBGS㥛Ŀi+2 word spendsWDTV-WPV-?i-1 tag+i word CC sugaryVBOnJJOn?i-1 tag+i word NN findingVBGFx?NNFxi word delayingVBG1Zd?JJ$CNNA`"?i-1 tag+i word NN assemblyNNMbX9?RBMbX9 i word thriftNN/$?JJDlNNPsh|?ݿi-2 word prospectsJJ~jt?RB~jtۿi+1 word divergentRBDl?JJDli-1 tag+i word DT pimpNNS|?5^NN|?5^?i-1 tag+i word JJ offeringNNSlVBG(\NNn?i word stomachNN|?5^?NNS|?5^i-2 word foraysVBG/$NN/$?i-1 word starpointeNNPSQ˿NNPQ? i+2 word noteJJ}?5^I?NNK߿RBRV-JJR9v?VBNGzRBZd;ONNP(\ڿi-1 tag+i word CD hardJJh|?5?NNh|?5޿i-1 tag+i word NN operatorNN5^I ?RB5^I  i word properNN/$VBNjtJJREJJQ@NNSZd;ONNPOni-1 tag+i word PRP mentionsVBZ"~j?VBx&NNPSGzi+1 suffix cow VBQCDK7JJK7?IN'1Z@DT'1ZNNPjtVBGh|?5?NNh|?5VBDjt?VBPQ?i-1 tag+i word , challengesVBZnNNS#~j?JJGzi-1 word sacredNNSx&?NNx& i suffix tanNNP1Zd?NNSEؿJJ;On?NNjtFWSi+1 word cohenJJzGNNPzG? i+1 word waltVBDv/NNPv/?i-1 tag+i word IN chileNNZd;ONNPZd;O?i-1 tag+i word DT strongestJJS!rh?NN!rhi-1 word congressmenVBrh|VBP(\?VBDoʡi+2 word crimeVBDB`"VBNS?VBP`"JJ rhVBZ+VBFx?i-1 tag+i word NN engagesVBZrh|?NNSrh|i-1 tag+i word `` giantsNNPS9vNNS9v?i+1 word deliveryVBL7A`?VBPL7A`NN r?JJrh|?NNP+i-2 word destructionVBG1Zd?NN1Zdi+1 word adhesiveNNl?JJlҿi-1 suffix rip VBG^I +RB?NNS+VBPV-?INZd;OݿRPVBZZd;NN(\?JJKi-1 tag+i word IN congestiveJJ333333?NN333333i+1 word scottishVBN㥛 JJ㥛 ?i-2 word eatingVBP r?JJ ri+2 word accessNNSmVBX9vοRBX9vNN1Zd?VBN7A`VBPv?JJtV?IN?i-1 tag+i word DT penneyNN ףp= NNP ףp= ? i word legNN"~j?JJ"~ji-1 word poresINCl?RPCli-1 suffix bowNNS+NN+?RBx&1пVBDx&1?i-2 word forgetVBG}?5^I?JJX9vNN +NNP333333?i+1 word initiallyVBZmͿNNm?i-2 word celebrationJJ5^I NNP5^I ? i+1 word ``RBHzGVB'1Z?INh|?5 @NNPSS㥛?JJRx&1пJJ?5^I POS rпDT$CNNV-?FWy&1?NNS"~CD~jtxMD$C?VBDA`"VBNjt?LSxWDTGzVBZ"~?RPtVNNP|?5^RBR$C?VBGh|?5?VBPffffff?i-1 tag+i word RB monetaristsVBZ333333NNS333333?i word brakingVBGuV?NN+JJ}?5^Iܿi+1 word forcedWDTnRB(\@NNGzINʡEi-1 tag+i word DT cdNNPSGzNN"~j@JJףp= NNPV-i-1 tag+i word DT failedVBNx?JJV-?VBDS㥛i word adminstrativeJJZd;?NNZd;i+2 word acceptanceJJ333333NN`"NNPJ +?i-1 tag+i word WDT aircraftVBZ-NN-? i suffix desFW?5^I ?VBN!rhCD?5^I JJtVIN@NNPS㥛VB"~jNNl1!VBP^I +PRPSNNS/ݤ&@JJR333333NNPSX9vVBDQVBZx&1@RB(\i-1 tag+i word IN onceRB= ףp=?NN= ףp=i-1 word surpriseVBNZd;NNZd;?i-1 tag+i word NN firmsNNPSlNNSl?i-1 tag+i word NN forecastVBNx&VBP ףp= INпVB|?5^ʿNNjt?VBDQ?i+2 word hoursVBsh|??NN{Gz?VBD\(\?CCʡE?VBPʡENNSʡEi-2 word distressRBZd;ONNSDl?RBS?JJSoʡNNDli-1 tag+i word WP$ claimsVBZ(\NNS(\?i-1 tag+i word JJS experiencedVBNuVJJd;O?VBD/$޿i+1 suffix .p.NNPSbX9޿NNPbX9?i+1 word featuringVBZnNNSK7?NN7A`?VBN-VBP~jtJJJ + i word slayVBPGz?NNPGzi+2 word equallyVBZZd;?NNPS +?POSZd;߿NNP +i-1 tag+i word VBP announcedVBNZd;O?JJZd;Oտi-2 word destroyedNNSMb?NNp= ףпIN r i+2 word epaVB?VBP i word apieceRB~jt @NNSnNN JJ +?i-1 tag+i word MD earnVB/$?RB/$i-1 word aegisVBZ%CNN%C?i-1 word criticsVBPK7?VBN$CNNh|?5VBD$C?RBMbX9i+1 word outletsJJ!rh?VBG(\?NNʡE i word uproarNNGz?JJGzi-1 tag+i word NNP grainsNNSV-?NNPV-i+2 word dumpingVBw/VBPw/?i-1 tag+i word , farceNNQ?RBnJJS㥫i-1 tag+i word -START- parkerNNjtNNPjt?i+1 word parityVBP\(\NNQ?RBFxJJ|?5^?i-1 word unidentifiedNNV-?RB(\JJ(\ſi-1 tag+i word NNP namesNNSw/NNP/$NNPSMbX9?i-1 tag -START-"NNPS ףp= VBNS㥛?RP;On$9v?TOx?NNPK7A`PRPNbX9MDJ +?DT-?INNbX9?VBPzGJJR rȿSYMjt?WP~jtӿVBZ5^I ۿRBSV-?RBROn?VBGv/?JJE?CCh|?5?WDT-?CDˡE?UHsh|??PRP$sh|??VBDFxFW`"RB?VBx&1?WRBbX9ȶ?NNS㥛?LSoʡ?NNSV-?PDTܿJJS#~jԿi-1 suffix .j.NNPSENNPE?i-1 word insurerVBZ\(\߿POS\(\?i word thriftsNNSS%@NNI +NNPʡEVBZV-VB{Gzi-1 tag+i word JJ chiefsNNPjtVBZy&1NNPSjt?NNSV-?NNQi-2 word abroadNNP|?5^NNPSB`"RB;OnNN)\(ԿVBPV-?JJX9v?IN㥛 ¿NNS&1?i-1 tag+i word VBP 'sPOSSPRPS?i-1 tag+i word VBD planningVBGn?NNnѿi word assumptionVBZClNNA`"?JJ|?5^ i word hauntsVBZS?NNSSi word wrackedVBNMb?VBDMbi-1 tag+i word VBZ abdicateVBJ +VBPJ +?i-1 word tackedRPrh|?RBrh| i word jewsNNS5^I ӿRBˡENNPtV NNPSCl{@ i word merelyVBP333333ۿRBMbX?JJ(\i+1 word sinkingNNvRB%C?JJ ףp= i-1 tag+i word DT estimateVBPS㥛NNrh|?JJ|?5^i-1 tag+i word JJ petroleumNNS%CNNzG?NNPv/?i-2 word patentVBN;OnҿVBD;On?i word streptokinaseVB!rhܿNNSʡENNףp= RBA`"ӿNNPh|?5@ i-2 word lawnNNMbXJJy&1?VB-ֿi-1 suffix banNN~jt?VBFxNNSV-?i+1 word concentrationsVBzGNNPzG?i-1 tag+i word -START- quiteVB +ֿPDTK7A@RBffffffi-1 tag+i word NN jointNN}?5^I?JJ}?5^I i pref1 9NN|?5VBNQCDxi#@JJMbXNNSClNNPL7A`i word earningsNNSx& @NNPSw/WDTV-NNoʡNNPh|?5i-1 tag+i word IN convertibleJJQ?NNQi-1 tag+i word JJ utilityNNQNNPQ?i-1 tag+i word JJ pitchingNNZd;?VBGZd;׿i+2 word grinevskyRB-NNP-? i word bowelNNSoʡNNoʡ?i-1 tag+i word NNP concedeVBP(\?NNS(\i-1 tag+i word : repairingVBG~jt?NN~jt i-1 word cladNN`"NNP`"?i-2 word placedJJI +?NNMbXRBy&1NNP;Onڿ i word kickedVBN^I +VBD^I +?i-1 tag+i word RB chiefNN9v?JJ5^I RB{GzԿi-1 tag+i word VBD describedRBX9vVBDX9v?i-1 tag+i word PRP$ maidenNN+JJ+? i-1 word rep.NNSv/NNPv/?i-1 word motivesRBT㥛 @INT㥛 i word suggestedVBNjtJJ(\VBD}?5^I?i word usuallyRBJ +?NNPJ +i+1 suffix ousVB9vVBGK7A?DT\(\?VBZw/@NNSV-RP(\?RB+w@NNZd;OJJS\(\NNP ףp= ?RBRt@JJL7A`ePOSn?JJRRQVBPGz@IN5^I CDVBD+RBS\(\?VBNQi+1 word terminalNNSˡE?NNˡEi tag+i-2 tag `` VBGNNp= ףؿVBD= ףp=VBNףp= ?RBV-?DTGz?NNPnJJzGi-1 word topicWDT+IN+?i-1 tag+i word VBZ senseVBZh|?5NN%C?RBzGi+2 word court IN/$տVBZ^I +߿NNSQ?RPsh|??VBNS?VBPˡE?RB/$NNPy&1@VB9vJJClǿNN|?5^ VBDFxi+2 word improvementsNNS5^I JJ5^I ?i-1 word givenRB ףp= IN1ZdNNS\(\?NNPZd;?RP~jt@RBS rJJSw/?VBN\(\i-1 tag+i word PRP$ golfNNʡE?JJʡEi-1 word fitzgeraldNNPS\(\NNP\(\?i-1 tag+i word NNPS !HYPHENVBGX9vNNV-?JJS㥛?CDzGi+2 word otherINL7A`пNNPSK7?JJSCl?VBx&1PDTw/?RBSClWDTvJJ$CۿVBZ`"yDT333333?POS|?5^?VBG7A`VBDʡE VBNMbX9@NNSbX9?NNP rh?CCS?VBP@RBV-@RBRףp= ۿCDʡEJJRףp= ?WPNbX9?RP+NNn?i-1 tag+i word RB scheduledJJ{GzVBN{Gz?i-1 suffix roeFWbX9?NNB`"ٿINp= ף i word polarJJS㥛?NNS㥛i-1 tag+i word PRP printedVBP7A`ҿVBD7A`?i-1 word franciscoVBZ㥛 NNPS-NNSDlNNPn?NNPv? i-1 word eraNNPSX9v׿NNS@VBD?5^I VBN?5^I ?NNSNNPNbX9i+1 word frenzyNNrh|?JJrh|i word prohibitionNNHzGNNPHzG?i-1 tag+i word VBZ criminalJJrh|?NNrh|i-1 tag+i word RB repealVBZ9vVB9v?i-1 tag+i word DT startingVBGClNN?JJ?i-1 tag+i word CC landscapingVBGV-NNV-?i-1 tag+i word NN designatedVBN?5^I ?VBD?5^I i+2 word attemptingNNPjt?RBV-JJCl?NNCli+1 word cantonalJJGz?NNPV-NNPS rпi-1 tag+i word NNP cantonalJJV-?NNV-i+1 word alleyNNףp= ?JJףp= ÿ i+2 word ufosVBN{Gz?JJ333333VBD(\i-1 tag+i word `` tiltedNNP(\?VBN333333VBDni-1 word emotionallyRBZd;O?RBRZd;OJJJ +?VBNJ +i-1 tag+i word `` legislationNNL7A`?NNPL7A`i-1 tag+i word VBN demandingVBGK7A`?JJK7A`i-1 tag+i word NNP feudNNd;O?NNPd;Oi-1 tag+i word JJ birthdayNNףp= ?NNPףp= i+1 word candidateNNPClNNSQNNx&JJQ?CDK7?i word supplementNNsh|??JJsh|?i-1 tag+i word NNP israelNNPrh|?VBZrh| i suffix ibaNNnRBˡENNPsh|??i-1 word managementNNS= ףp=NNPSS㥛NNK7?VBDQWDT/$NNPCl?VBPy&1RB5^I @VBZClVB}?5^I?VBGoʡJJ1Zd@VBNS㥛IN~jti-1 tag+i word -START- crawfordNNK7JJ~jtNNPtV?i word concentratedVBDI +ƿVBN(\JJ㥛 @i-1 tag+i word TO separateVBnʿJJn?i+1 word journalsJJS?NNS i+1 word shotVBZ|?5^NNS|?5^?NNNbX9?JJNbX9i-2 word insulinsRP(\?IN(\i-1 tag+i word TO dockVBV-NNV-@i-1 tag+i word VB olderJJR9v?NN9vi+1 word addictsNNB`"?JJB`"i-1 tag+i word VBD opposeVBDVB rhVBPNbX9@IN"~ڿi-1 tag+i word NNP toppedVBDMbX?JJMbXi-1 tag+i word DT hairyJJˡE?NNˡE i-1 word birdVBG$CۿNN$C?i-1 tag+i word RB worksVBZ +?VBP +i-1 tag+i word VBP okVBN/$JJ ףp= ?NNP/$i-1 tag+i word NNS affectedVBN(\µVBD(\µ?i+1 word perpetualVBNS?JJVBDX9vi+2 word contactingNNKVBGK?i-1 tag+i word DT defenseNNxNNPx?i+1 word sharply VBNʡEVBP?WDTV-?UH(\RB?5^I ¿VBjt?NNV-INV-RPv?VBDʡE?i-1 word unremittinglyJJA`"?NNA`"i-1 suffix uraPOSZd;?NNʡENNP;On?VBZZd;NNPSK7A`?i word propaneNN}?5^I?JJ}?5^Ii+2 word offeredVBʡEWDT1Zd?INQ?VBZ%CDTlNNS%C?NNPʡE?i+2 word misleadingNNZd;߿JJZd;?i-1 tag+i word CC transcriptsVBClӿNNSCl?i+1 word marketINʡEDTʡE?VBS㥫?CDV-NNP= ףp= VBG%C @JJRCl?VBNOnVBZQ?NNPSʡENNd;O?VBDClVBPˡE?RB$CNNS rhJJS㥛 @i-1 word barryVBDM?NNPS9vNNMNNP9v?i-1 word locatedJJnINn?i-1 tag+i word `` wheatWRBS㥛UHh|?5NNPn? i suffix arnRB/$NNˡE?VBDףp= VBPM@JJ"~VBZGzNNSzGVBPn?i-1 tag+i word NN tubesNNSoʡ?NNoʡi+1 word birnsJJGzNNPGz?!i-1 tag+i word -START- businessesNNS= ףp=?NNP= ףp=i-1 tag+i word , insistedVBDV-?VBNV-i-1 tag+i word NNS minerNNvNNPv? i suffix -byRB/$NNRQпJJClNNS%C?i-1 tag+i word VB privateJJ rh?NNP rhi-1 tag+i word IN popNNGz?JJGzi-2 word cases VBGz?VBGmտCCINm?NNS^I +JJw/?RBmNN-?VBDOnRBRX9v?JJRX9vVBPʡE?i-1 tag+i word VBN improperJJA`"?INA`"i+2 word create NNPSENNRQJJROnۿVBNV-IN'1ZRPp= ף@RBV-?VBPZd;O?JJDlNNS㥛 ?NNPE?i-1 tag+i word JJ seedsNNSQ?NNQٿi-2 word preferVBK7A?NNq= ףpVBNK7A@JJ333333i tag+i-2 tag JJS ``VBP ףp= ?JJ ףp= i word matingNNbX9?JJClVBGDli+2 word cilcorpRBQNNPQ?i-1 tag+i word VBP headedVBNuV?JJuVi+2 word vermontJJV-?RBV-i-2 word partlyVBZ/$VBCl?NNS/$?NNCli+2 word reserveDTx&ѿPDTx&?i word euromarketNNQNNP㥛 ?NNPS/$ƿi-1 tag+i word PRP belongVBPrh|?RBrh|i-1 tag+i word VBP defunctNNS-VBNQJJJ +?i word paradiseNNPSnѿNNh|?5NNPZd;O?i-2 word heavilyJJS㥛?NNS㥛i-1 tag+i word -START- anywayRBzG?NNy&1NNPJ +i-1 word earlierVBNGz?JJtV?NNPGz?RBGzNNtV޿VBDGzi-1 tag+i word CC somewhatDTX9vRBX9v?i-1 tag+i word -START- edisonNNbX9?NNPbX9i-1 suffix rthVBG$C?VBZX9v?NNPS ףp= NNHzGRBR rhVBPʡE?JJx&1?RB"~j?NNSffffff?RPffffffINKPOSX9vֿJJR rh?NNPS㥛VBQ? i word exodusNNS(\NN(\?i-1 tag+i word IN logicalJJ(\?NN(\տi-2 word eurobondsNNPףp= JJףp= ?i-1 tag+i word IN renewedJJx?VBD+NNX9vVBNGz?i-2 word yearsVBDCl @CCxJJRGz?VBZ?NNSClVBKVBG|?5^VBP~jt?WDTRB\(\ @NNPK7ANNPS+JJ(\տVBN rhDT)\(NNS㥛?INMb?i-1 tag+i word VBD beatenVB|?5^VBN|?5^?i-1 suffix ownVBN(\NNPffffff?JJNbX9?NN(\?NNSʡE?VBPZd;JJR#~jVBDS㥛?PDTS㥛VBG1ZdӿDT/$@RPʡERBRw/?EXL7A`RBK7A`@INmCDn?VBZ(\i-2 word secretariesVBN1ZdJJ;OnVBD1Zd?RB;On?i-1 tag+i word IN scottishJJh|?5?NNPh|?5i+1 suffix otcWDT/$JJx&1?IN/$?NNPh|?5οVB(\ҿVBGh|?5?NNvi-1 tag+i word VBG crucialVBNX9vNNDlJJtV?i+1 word igdaloffNNQNNPQ? i+1 word meanVBZx&1NNSx&1?VBT㥛 RBCl?NNT㥛 ?JJCli-1 tag+i word CC repayVBGz?NNGz i word waiverWRBX9vNNq= ףp?RBCl˿i-1 tag+i word IN holdupsNNSX9v?NNX9vi-1 tag+i word VBZ outRBMbXRP)\@JJMbNNʡEINJ + i-1 tag+i word -START- passengerNN\(\?NNP\(\i-1 tag+i word PRP$ breathNNSxNNx? i word youPRP1Zd?NNP1Zd i-1 word awUHp= ף?NNp= ףi-1 tag+i word IN newlyNNSˡERBffffff?CDףp= i-1 tag+i word VBZ returnedVBN&1?JJ&1i-2 word monitoringJJ rh?NNGzNNPCli+1 word amnestyVBG?5^I ?NNS?5^I i-1 tag+i word RB rampantJJV-?VBNV-i tag+i-2 tag VBD '' RPvVBNMb?WDT= ףp=RBMbINZd;?NNP r@VBNN-CD&1?VBGM?DTGz?JJ/$ i word archedVBDMbX9?INMbX9ܿi-1 tag+i word IN deanJJMbXNNPMbX@i-1 tag+i word TO lightVB/$NNGz?JJsh|?ſi-1 tag+i word VBD ontoRPQſPRP?5^I JJnIN|?5^@i+1 suffix eldRBR#~jVBGQJJS(\JJRQӿMD9vNN|?5^INZd;ONNPGz?NNPS7A`?DTZd;O?NNSjt?JJ~jt@VBZ-VB= ףp=RBK7?VBDq= ףp? i-1 word back JJR rh?VBDlRPS㥛JJ?NNMb?EXMRB}?5^I?INl?NNSSVB|?5^i word clearanceNNSp= ףNNCl?VBP^I +i-1 word postmarkedDT|?5^RB|?5^@ i suffix ITINNNbX9пNNPNbX9?i+2 word occupancyVBbX9?NNPtVNNp= ף?FWMbXi+2 word scarceNNbX9?NNPbX9ֿi-1 tag+i word DT filingVBGKNNMbX @JJ1Zd i word shiftsNNS~jt?NN~jt i-2 word vcrsVB^I +?VBPClǿJJMbX9i-2 word asset INEؿVBZGzRBQNNK7A`VBPV-?WDT/$?NNPZd;O?NNPSK7?RPPnVBNQ?JJQٿ i word tackedVBN rhVBD rh?i-1 tag+i word IN lordsNNPS(\@JJrh|NNP- i word tallNNʡERBsh|?JJʡEs@i+2 word protectNNS-?NNx&?VBNn?VBPxJJףp= VBZ-i-1 tag+i word NNP machinesNNPS?NNPi word railwaysVBZ= ףp=NNS= ףp=?i-1 suffix zes JJ;OnINy&1?DT'1Z?VB'1ZRBlRBSmVBPq= ףp?NN{GzԿJJSm?NNSy&1?i-1 tag+i word DT allowedVBNK7JJK7?i word undevelopedVBN!rhJJ!rh?i+2 word prosperedRB}?5^I?NN}?5^Ii-1 word pickupNNClRBZd;OIN|?5^?i-1 tag+i word IN deathsNNMNNSM?i-1 word exclaimsNNq= ףpNNPq= ףp?i word assistantNNC@JJ$CVBD-ƿVBPQNNS!rhi-1 tag+i word RB stackedVBNd;O?JJd;O޿ i+1 word less VBZˡE?DT= ףp=RPNbX9@JJ/$VBD㥛 ¿VBNsh|?VBPMb?RBzGa@INbX9VB(\ҿNN(\?FWA`"CDV-i-1 tag+i word JJ criminalNN"~?JJ"~ i word shedVBn?JJnٿVBD㥛 i-2 word steadiedNNSy&1NNy&1?i+2 word headlinesPDTS㥛?VBN\(\?RBMb i+2 word leanVBPq= ףpͿNNq= ףp?i tag+i-2 tag NNPS JJ RB-VBZv?NNP`"NN}?5^I?VBDZd;OVBNn@VBPw/?VBnNNPSB`"JJ9vNNSK7? i+2 word eatsRB\(\IN\(\@i-1 tag+i word CC allVBMbJJSVBD+PDT$C?RB`"ֿDT= ףp=? i word spreadVBQݿRB/$NN/$?VBDZd;?VBN(\?VBP{GztJJ&1 i tag+i-2 tag CD -START-NNffffffCDNbX9?VBPMbP?VBNK7?JJʡE@NNSZd;RBRV-?NNPl?VB/$WDT(\NNPSS?VBD)\(INʡEVBZDl?i-1 tag+i word IN minimumNNNbX9?JJx&1пFWZd;Oi-1 tag+i word IN fireNNSGzֿNNV-?JJx&1NNP(\? i word dreamsVBN㥛 NN$CVBZ333333?VBy&1NNSrh|?i-2 word encountersCCvDTPnRB+?i-1 tag+i word DT deathsNNSS?JJSۿi-1 word collectivesVBP%C?PRP%C̿i-1 tag+i word TO becomeVBMbX?JJMbXi-1 tag+i word DT borrowedVBNS?JJSi-1 word householdsINB`"WDTK7?DT~jtVBG~jt?NN~jti-1 tag+i word VB withholdingVBG+NNʡE?JJB`"ɿ i+1 word areJJd;O RP(\?PDTnDTZd;?VBB`"RBSMbJJRS?VBGVBPRQVBZMbNNPRQCCd;O?RBRv/CDB`"۹?INEVBDT㥛ĠVBNl@NNSZd;O@NNPSn@RBrh|߿EXV-@JJSI +?WDTNbX9@NNl@PRPMb?i+1 word sizableRPClRBCl?i word bugabooNNl?JJSli word loomingJJS㥛VBG`"?NNK7i-1 tag+i word IN ourselvesNNS|?5^PRP|?5^? i word '90sNNS%C?JJOnCDx&1Կi+2 word butterfingerNNPV-?NNPSV-i-1 tag+i word NNP desNNPZd;O@VBDOnFW?5^I ?INK׿VBZoʡNNST㥛 i-1 tag+i word PRP$ friendNNSʡENN(\?JJ +i word affiliatesVBZT㥛 NNST㥛 @i-1 tag+i word DT dataproductsNNPSZd;O?NNPZd;OͿi-1 tag+i word NNP cities\/abcNNPOn?NNPSOni-1 tag+i word TO cuttingVBA`"VBGA`"?i+2 word records NNV-CD+ӿJJZd;NNSB`"@VB7A`NNPSq= ףp@RPB`"?INB`"NNPq= ףpi+1 word oceanWDT333333JJS㥛NNPS㥛@IN333333?i-1 word whose VBSJJFx?NNSK7A`?RBV-NNbX9@VBN㥛 VBP}?5^IVBZ(\NNP ri word courtroomNNSSNNS?i+1 word adjustmentINK7A`?NNPK7A`i+2 word depthNNI +?JJI +i-1 tag+i word PRP sleptVB9vʿVBDv/?VBZʡEi-2 word phasedRBEINE?i+1 word printingNNP"~j?VBGz޿JJ/$?NNV-i-1 word plaintiffsVBDHzG?POSQ?VBNHzG''Q i+1 word team DT%C@NNPSV-JJS㥛NN{Gz?RBSʡERBRVBP?JJSʡE?RB'1ZIN%CNNSFxNNP%C?i-1 tag+i word , bakedVBN!rhJJS?NNPnVBD;Onڿi-1 tag+i word , facedVBNX9vVBDX9v?i tag+i-2 tag FW ``'')\(NNQPOS)\(?JJFWx&?i+1 word fueledNNv/?VBGv/RBR1Zd?RB1Zdi-2 word molokaiNN~jt?JJ~jti-1 tag+i word PRP$ hashishNNK7A?JJK7Ai+2 word personalVBx&1NN{Gz@CDʡEVBPx&1?JJZd;ONNPni-1 tag+i word VB caringJJI +NNI +?i-1 tag+i word NN raggedJJ{Gz?VBD{Gz i word bonNNSlҿNNnFWoʡ?i-1 tag+i word DT sightNNV-?JJV-i-1 tag+i word NNS automaticJJV-?NNQIN`"i-1 tag+i word CC surviveVB)\(VBP)\(?i-2 word supplyVBNq= ףp?RBx&1INA`"?NNP~jtJJ;OnNN~jt?VBZbX9NNSʡE?VBʡE?VBD-NNPS+?RBRJ +DTA`"JJRS?i-1 tag+i word PRP handyJJ~jt?NN9vVBNI +i-2 word buying VBZMbRPMbX9ԿVBGT㥛 NNI +?VBD333333?JJ333333?NNPʡENNPS/$?RBQ?VBN rNNSK7Ai-1 tag+i word NN postalJJMbX?NNMbXi-1 tag+i word NNPS plannedVBNFxVBDFx?i-1 word currentNNsh|??JJRK7?CDm?VBPQJJ= ףp=?NNSlҿNNPx&1VBGjt i word rangedVBPQVBNjtVBDrh|@i+2 word rapidementRB)\(?NN1ZdJJ/$ƿi-1 tag+i word VBZ lendersVBZClNNSCl?i-1 tag+i word CC finedVBNQ?JJx&1VBDʡEտi-1 tag+i word POS operatesVBZˡE@NNSˡEi-1 tag+i word NN thatVBDA`"WDT-g @RBZd;OINˡE?VBZ= ףp=DTsh|?NNS+NNCli-1 word centuryVBNMbX9ܿNNMbX9?DTrh|?WDTrh|Ͽi-2 word remicsRBR$C?RBSJJRrh| i word earthyNNV-JJV-?i word concentrateVBX9v?NNX9vi-1 tag+i word `` offerVBrh|?JJrh|i+2 word orthodoxNNjt?INS?WDTSNNSjti-1 tag+i word VB anytimeRBK7A`?JJh|?5NNx&ѿi-1 tag+i word VBG quarterlyJJS㥛?RBS㥛i+1 word suitedRBRZd;ORBZd;O?i tag+i-2 tag RB CD NNP|?5^?VBGDlRBI +?NNClǿVBNK7VBPS㥛?JJ+?VBD rпJJR ףp= i+1 word typicallyNNGz?FWHzGٿJJSX9vRBREԸNNS(\NNPV-?i-1 tag+i word , meanwhileNNP-RB= ףp@NNMbX9 IN?5^I CCi+1 word eliantiVBZ?NNPi+2 word chevronRBR5^I ?JJR5^I  i+1 word j.VBZ333333VB|?5^JJ +NNPV-@i-1 tag+i word PRP$ redJJNNP?i+1 word numbersJJ㥛 ?RBV-NNq= ףpi-1 tag+i word JJ collegeNNPS rNNP r?i-2 word slowedVBG/$NN/$?!i-1 tag+i word NN notwithstandingVBGuVͿRB?JJSINM¿i+2 word slovakiaVBNX9v?VBDX9vi+2 word carisbrookNNPClVBNHzG?CDjti-1 tag+i word DT slimJJ~jt?NN~jti-1 tag+i word VBZ heavyJJx&?NNx&i word propyleneVBPS㥻NNS㥻?i word suggestingVBGZd;O?JJ7A`NNS㥛VBDrh|i-1 tag+i word VB freedVBNK7A`?JJRK7A`i-1 tag+i word -START- upsetVBjtNNnVBNjt@RBx&1̿NNPCl绿 i+2 word kirkVBoʡVBN5^I NNm?i-1 tag+i word VB togetherRPuV?RBsh|??NNS i word rapidVBv/JJ'1Z @NNQi-1 tag+i word DT thinkingJJT㥛 VBGT㥛 ?i-1 tag+i word NN electedVBNV-߿VBDV-? i word kneesNNSV-?NNV-i+1 word concernedRBRx?RBx?INy&1JJRxJJ)\(?i-1 tag+i word IN createVB333333?JJ333333i-1 tag+i word NN intenseJJK?NNKi word franchiseNNSClNNCl?i+1 suffix oreWDTQRPQſNNPEFWףp= VB/$CDI +?INq= ףp?VBNq= ףp?JJ`" DTrh|NNQ?JJSClVBGB`"?VBPzGNNS'1Z?RBRؿNNPStV޿JJR= ףp=?VBD!rh?VBZMbX9?PRPZd;?RBS㥛?i-2 word causesJJ/$?NN/$i-1 tag+i word -START- cibaNNP?5^I ?RBˡENN~jti+2 word irvingNNPjtԿVBP\(\NNPSjt?NNS?JJV-i-1 tag+i word RB nervyJJ/$?RB/$ i-2 word golfVB#~j@VBPRQVBN/$IN{Gzi+2 word datapointRPOn?INOni-1 word coveringNNV-JJSV-?JJRʡE?RBRʡE޿RBQ?INQNNPffffffNNPSffffff?i-1 word relaxJJ$C?NN$Ci-1 tag+i word CC forceVBsh|??VBPS㥛NNB`" i suffix arpNNP(\NN"~j?VBPS?JJ(\?VBZd;ONNS333333i tag+i-2 tag IN MDNN/$?JJ/$i-1 word constituencyJJS/$RB333333@NNSi-1 tag+i word MD bypassVB9vNN9v?i-1 tag+i word NN strengthensVBZ333333?NNS333333i-1 tag+i word CC fixingJJ|?5^VBG|?5^?i-1 tag+i word DT sovietNNPS333333JJ?NNnNNPx&1?i-1 tag+i word DT biannualJJQ?NNPQݿi-1 tag+i word MD neitherCCMb`?VBGzRBjt?i+1 suffix .k.VBZx&NNPSClVBGV-JJV-?NNPPn? i word rompVBtVVBPtV?i-1 tag+i word NNS dueRBPn?JJ+@VBDVBPEi-1 tag+i word -START- sidhpurNNʡENNPʡE?i+2 word totaledVBNn?JJK?NNKVBDni-1 tag+i word VBZ lobbyingVBG(\?NN(\i-1 tag+i word JJR riskNNSMbȿNNMb? i word allPDTK7'@VBNDlVBZK7VBGX9vDTZd1@NNS9vVBP/$NN)\VBD+JJ5^I WDTrh|RBxi@INB`"NNPMbXVBti-2 word resultingJJK7A`NNK7A`?i-1 tag+i word NN exercisedVBN(\?VBD(\пi-1 tag+i word MD storeVBI +?RBRI +i-1 word pigmentWDTS㥛?INS㥛VB;OnVBD(\VBN(\?VBP;On?i-1 word judgesIN{GzNNPSq= ףpݿRB{Gz@NNvNNP!rh?i-1 tag+i word VBN luredVBN9v?JJ9vڿ i+1 word duNNSKNNCl?JJClVBZK?i+2 word temporaryVBK?NNKi-1 tag+i word NN beVBsh|??VBPsh|?ݿi+1 suffix tetVBG1ZdNN㥛 @JJ+i-1 tag+i word CC greaseVBDlٿNNZd;O?JJv/ i suffix idiJJ'1ZԿNNP'1Z?i-1 tag+i word VBZ wordedVBN?RBRi+1 word effectsVBGnѿJJףp= ?NN9v?VBNK7VBCli+1 word climbersJJh|?5ֿVBP rNNZd;O?i-1 tag+i word , armsNNSCl?INCli-1 tag+i word NNP federsNNP'1Z?NNPS'1Zi+2 word daignaultVBNZd;NNPZd;?i+1 word efficientJJRPnRBffffff?RBRPn@JJffffffi-1 tag+i word CC herPRP$;On?VB+PRPL7A` i-1 word fsxNNp= ף?JJp= ףi-1 suffix kidNNPSMbVBNSRBS?NNPjtVBZ= ףp=?i-1 word bureaucracyJJ;On?NN;Oni-1 tag+i word VBZ neitherCCS?RB;OnJJL7A`i word intrauterineJJ7A`?NN7A` i suffix 976NNPZd;OCDZd;O? i+2 word findRBy&1NNSQ?NNPS˿NNPS`"?JJ333333?CD +VBP5^I PRP}?5^I?i word herbicidesJJQֿNNS/$?PRPSi-1 tag+i word -START- writingVBGV-?NNGzֿNNPʡEÿ i word writesNNS~jtNNPVBZT㥛 @i-1 word harlemNNSMbX9?NNPMbX9 i-1 word cokeVBZ|?5^ڿNNS{Gz?MD-i word improvingVBG㥛 @NN rhJJ+i+2 word scrimpingDTQINQ?i+2 word recoveredVBGx&?NNףp= JJʡEi+1 word boostsNN5^I JJ5^I ?i+1 word psyllium NN%CJJWRBʡEDT1ZdVBv/?RPʡE?VBG%C?INV-?NNPQֿi-1 word statisticalJJ(\?NN(\i-1 tag+i word DT partisanJJMb?NNMb"i-1 tag+i word JJS tradedistortingNNxJJx?i+1 word magninNNHzGNNPHzG?i word locationNNOn@VBh|?5JJRZd; i+1 suffix f.NNP/$?VBD/$ۿi-1 word recruiterVBGA`"?NNA`"˿i-1 tag+i word `` naczelnikJJjtNNv׿FWS㥛? i word smellsVBZjt?NNS(\VBD ףp= i-1 word prevent NN"~j?FWK7?JJGz?VBG"~jRB"~j̿PDTuVINFxNNSNNPffffff?i+2 word towersNN rh?JJ rhi-1 tag+i word POS tong'ilNNPS)\(NNP)\(? i-1 tag VBZWP(\RPtV @PRPsh|?տPDT333333ӿRBR(\?CDʡE?VBDT㥛 JJQ?VBZ&1IN\(\׿VBN7A`?RBX9v?CC\(\?DTmͿNNʡEÿNNPS`"JJSnUHq= ףpͿPRP$B`"?FWQVBEVBGMbX?NNPOnۿRBS|?5^?VBP(\WDT/$POSS?NNSQ?EXffffff޿JJR+@''Gzi word stearnsNNPSSNNPS?i-1 tag+i word VBP contributedVBD^I +VBN^I +?i word mondaysVBZ/$޿NNSZd;?RB rhNNPCli-1 suffix katVBZp= ףпPOSp= ף?!i-1 tag+i word -START- investmentNNjt@JJX9vNNP^I +i word yokohamaNN9vNNP9v?i-1 tag+i word IN newarkNNSNNPS?i-2 word angeloNNS-RB+?JJ+VBDv/VBZ{Gz?i-1 tag+i word RB unappealingVBGOnJJOn?i word ninefoldDT9vRB9v? i word oatNN(\?JJʡERB^I +i-1 tag+i word NNP drinkerNNZd;O?NNPZd;Oi-1 word hopelesslyVBN;OnIN;On?i-2 word offered JJMb?RBRV-INʡEDTNbX9NNSMb`?NNX9vRBS+?RBK7A`?NNPrh|?i-1 tag+i word JJ boxesNNS(\?NN(\i+2 word opposedDT;OnNNS&1?NN&1IN;On?i-1 tag+i word JJ sheetNNS{GzNN(\?JJ ףp= i+2 word grabRB+?NNSV-@JJlNN|?5^NNP= ףp=i word understateVBZy&1VBPy&1?i-1 tag+i word IN surveyedVBNm?JJmi+1 word stackedRBQ?INQi-1 tag+i word CC cautiouslyVBClRBCl? i-1 word raceVBP9vNNS"~?NNV-?RBV-߿VBZn?i-1 tag+i word WDT worksVBZy&1?VBPy&1i word lawmakersNNS?5^I ?NNP?5^I i-1 tag+i word VB weightNN㥛 ?JJ㥛 i-2 word corporationVBGz?NNHzG@VBDGzPOS^I +RB ףp= NNPxi+1 word pipesNNS#~jJJ)\(?NN/$i-1 tag+i word NN guineaVBZ1ZdNN1Zd?i-1 tag+i word : seniorJJbX9?NNPbX9 i-1 word toolNNPsh|??VBZsh|?i+2 word massachusettsJJ(\VBD(\?i-1 tag+i word CC passedJJK׿VBD~jt@NNS&1VBN%Ci-1 word squeezedRP?5^I ?IN?5^I i-1 tag+i word NNP upNNPQINʡERPQ?RB9v?VBDv/ i word omitsVBZCl?NNSCli-1 tag+i word NNS secretVBPMbXJJMbX?i-1 word flowedRBffffff?INffffffi-1 tag+i word PRP slayNNPGzVBPGz?i+1 suffix mudVBNS?JJSi-1 tag+i word DT troublesomeJJ|?5^?NN|?5^ҿi+1 word graduateVBG+NNP+?i-1 word friendsVBZx&1?VB(\ڿVBDx&1VBP(\?WDT~jtIN~jt?i word governmentalNNPOn?JJoʡ?NN'1Z i+2 word sageJJCl?NNCli-1 tag+i word -START- nipponINvNNPv?i-1 tag+i word PRP attachedVBDV-?INV-i-1 word doctorVBNx&1?VBDx&1i-1 tag+i word NNP gazetaNNRQؿNNPRQ?i-1 tag+i word CC leasingVBG+?NN+i-1 tag+i word ) ownJJ?RBi word intensivelyRBNbX9?JJNbX9i-1 tag+i word JJ conversionNNP{Gz?NN{Gzi-2 word aggregatesNN{Gz@NNP{Gzi-1 word silverVBGFxNNSV-?NNFx?VBZV-i-1 tag+i word : manufacturingVBGKNNK?i-2 word selectionVBS?RBSi word resembleNNP+VBCl@VBPuV?JJ(\i+2 word confusingVBNX9vJJX9v?i-1 tag+i word IN pumpsNNSGz?NNGzi-1 tag+i word , inexplicablyUH= ףp=RB= ףp=?i word accompaniedRB?5^I VBN/$ @JJMbVBD"~VB+i-2 word tradingVBPK7A?NNPX9v?VBMbX9ܿJJHzG?NN㥛 VBD(\@RBT㥛 INh|?5NNPS"~?WDT= ףp=?VBGv?NNSw/VBZ;OnWRBʡE?RBRףp= CD$C?VBNzGDT+i-1 word penaltyNNl@NNPA`"VBZ(\?NNPS/$NNS(\i-1 tag+i word JJR intimidatingVBG(\?NN(\i+1 word differencesNNP{GzԿVBGv/?JJRDlNNx&1?i-1 tag+i word IN tensDT;OnNNSʡE@NN^I +VBZsh|?i-1 word arguesIN5^I ?DTSݿWDTOni word offeredJJlINq= ףpNNPV-RPOnVBDK7A`?VBNsh|?@CDX9vi-1 word affidavitsVBZd;VBPK?VBNPn?NNX9vVBDv߿i-1 tag+i word NN knockedJJV-VBDV-?i-1 tag+i word RB capitalNNB`"?JJB`"i-1 word tensionVBNRQVBDRQ?i-1 tag+i word IN warmingVBGv/?NNv/i+1 word reviewJJv/NNPv/?i-2 word downgradingVBNv/JJv/?i-2 word aerospaceNNPS|?5^ҿNNSQNNPNbX9? i word folkCDʡENNS;OnNNV- @NNPSi-1 tag+i word NNPS tradingVBGx&ٿNN)\(?NNPV-?i-1 tag+i word NNS completedVBNQ?VBDQi-1 word hollywoodJJ/$NNoʡVBDB`"JJSX9vVBPT㥛 RB +?NNS7A`?VBh|?5@i-2 word outstanding VBZd;OǿINK7A?VBZx&1?DT/$NNS9vNNPSS?JJ?5^I NN?5^I VBD@VBN}?5^IRBK7ANNPQ?i word vividlyVBZClRBCl?i+2 word imbalancesVBGɿJJRˡE?NN?RBRˡE i-2 word hugeVBGL7A`@NNSK?NN)\(JJKVBZKi+1 word accounts VBDʡERBSMbX9JJSMbX9?VBN\(\JJFx?INx&VBG ףp= ?NNMb`WDTx&?NNSV-NNP}?5^I?i-1 tag+i word -START- rupertNN(\ؿNNP(\?i-1 tag+i word IN intermediateVBS㥛JJS㥛?i+1 word march VBZ)\(?NNS)\(NNPV-VBD)\(?VBNQ @RBS㥛IN(\ @VB +JJ7A`NN= ףp=i-1 tag+i word NNS controlsVBPV-¿NNSʡEVBZ rh?i-1 tag+i word CC calledVBN/$VBD/$?i+2 word solveJJ?NNPnRB`"i-1 word relevantNNSjtNNMb?RBZd;O߿IN(\? i word prosJJ333333NNP ףp= NNSzGa@NNQi-1 tag+i word RBR leisureNN9v?JJ9vi-1 tag+i word CD allDTJ +?JJJ +i-2 word australiaVBGNbX9?JJNbX9i+2 word truckeeJJGzNNGz?i-1 tag+i word DT mutuallyRB\(\?NN\(\i-1 tag+i word CC backupNNPVBDlVBDbX9JJ&1@i-1 tag+i word PRP$ crudeJJ?5^I ?NN?5^I i+1 word rollNNP(\CCQ?CDx?POSQJJMڿi+2 word suggestedVB!rhPRPˡENNˡE?NNP!rh? i suffix uliNNSjt@NNʡEJJHzGѿi-1 tag+i word NNP biosciencesNNPSCl?NNSmNNP+ۿi-1 tag+i word : broncsNNS`"?VBN333333NNni-2 word saseboNNPSsh|??NNPsh|?i-1 tag+i word VB easeVBNN?i-2 word airbusNNP1ZdNNx&1?VBD(\i-2 word dyingJJ~jth?VBNQNNy&1?i-1 tag+i word JJ expendituresNNS9v?JJ9vi-1 tag+i word IN cyclingVBG9vNN9v?i word naturallyRBV-?NNPV- i word marvinPRP5^I NNP5^I ?i-1 word taxpayersVB/$?VBP rh?JJsh|?i+1 word broadcastsJJzG?NNzGi word appreciatedVBNvVBDv?i-1 tag+i word DT soulNNCl?JJCli-1 tag+i word DT trifleRB\(\@NNtVJJi word settlementNNPA`"?JJA`"i-1 tag+i word JJ digsJJ-NN`"VBZ-?NNS`"?i word smoothlyVB|?5^RBtV@JJ+i+1 word repertoryNNMbX9ܿNNPMbX9?i-1 tag+i word RB gotVBA`"VBN$C?VBD1Zdi+1 suffix ude NNS"~j?NNPSSNNOnVBDsh|?WDTQ?JJx&1@INQVBZV-NNPh|?5޿VBGB`"?VBNsh|?? i word land VB7A`JJ/$NNrh|@VBN(\VBPHzG?RB5^I ۿNNPL7A`?JJRK7ANNS= ףp= i word sovietNNS+NNP#~jNNPSZd;ONN$CVBD+JJq= ףp@VBZHzGi-1 tag+i word IN sillyNNS+JJn@RB/$i+1 word surveysNNP;OnJJ㥛 ?NNT㥛 i-1 tag+i word NN returnsVBZ"~jNNSS?NN= ףp=i-2 word brieflyRP/$ÿIN/$?i+1 suffix bleVBN|?5^ɿVBPʡE?VBZJ +?NN?CC(\@NNPS~jtȿVBGZd;O?VBD?RPK7RB r?NNSd;O?VBClRBRZd; @NNPDl?JJJ + DT/$?LS/$PRPx&CD~jtINMҿJJSjtJJRʡEWDTZd;OPOSI +?RBS rh @MDd;Oi-1 word laggedVBQRP ףp= ǿRB/$?JJ/$INp= ף?i-2 word warrantNNPS㥛?$S㥛NNA`"CDx?VBPnJJ(\?i+1 word guardNN?VBDi-2 word mammalianVBNMbпVBDMb?i word deputiesNNPSmNNSQ?NNPMbp i+1 word earlVBDK7?NNClVBNCl?JJv/NNP9vi word odditiesVBZSNNSS?i-1 tag+i word '' frenchJJʡENNPʡE?i-2 word africanNN+?IN+ i suffix OutNNPS7A`VBNPnRBA`"ӿNNP$CINsh|?@i-1 tag+i word IN supplyVB~jtNNS%CJJRףp= NNm@i-1 word palaceVBZw/ԿRB5^I ?NNP/$i-1 tag+i word IN prideINT㥛 NNx&?JJV-i-1 tag+i word VBN behindINZd;׿RPʡE?RBd;ONNjti+1 word revivalJJJ +?NNJ +i-1 word economic VBZ}?5^INN!rh@VBG^I +RBClVBNOnVBPClJJףp= NNS$C@NNPbX9NNPSQ?i-1 tag+i word PRP livesNNSbX9VBZbX9?i-1 word freerNNE?JJEi+1 word hedgesVBPsh|?NNSNN?JJsh|??i-2 word bethlehemVBG$C?NNMbX9?JJ!rhi+2 word rebuildVBNDl?JJMVBDI +i-1 tag+i word TO citizensVBbX9޿NNPSV-NNSMbNNPuV?i-1 tag+i word CC stabilizeVBʡE?VBPS㥛NNV-i-1 tag+i word CC outagesNNSy&1?VBZy&1i tag+i-2 tag VBD VBZRPK7A`?RBK7A`ſVBG +?NN;On?JJMi-1 word proponentsVBRQ@VBPRQi+1 word kinfolkPRP$B`"?PRPB`"i-1 tag+i word IN revivalNNSQNNFx?JJjtĿi-1 word historicallyVBvVBPPn?VBN?RB(\i word claiborneNNPS rhNNP rh?i+2 word diethylstilbestrolNN-?JJ-ֿi word sometimeNNPSv/NNQkVBNX9vRBp= c @NNPrh|VB`"i+2 word perlmanCCw/?DTw/i-1 tag+i word JJ influenceNNS'1ZNN'1Z?i-1 tag+i word NNP easesVBZ/$?NNS/$ѿi-1 tag+i word DT openingVBGV- NNK7A@JJ\(\?i-2 word admitsNNCl?JJCli-1 tag+i word JJ advisesVBZA`"?NNSA`"˿i-2 word dinkins NNJ +INS㥛VBGMbX9?VBClǿRPPnRBl?VBDMbX9?VBPCl?JJxi-2 word restoringNNFxNNPFx?i word welcomedVBK7A`VBDK7A`?i tag+i-2 tag VBP WDTPDT rh?VBP(\?IN|?5^?RPX9vNNPJ +VBGQRB ףp= ߿NNvϿVBNp= ף?DTK7A?VBZ/$VBD+JJMb@NNSMbi-2 word visitedNNzG?JJ= ףp=ҿRB333333?VBNFxi-1 tag+i word RB laidVBNZd;O?JJZd;O i-1 tag+i word VBD encouragementNN{Gz?JJ{Gzi-2 word masterVBPX9v׿RBRQNNSFxJJMbX?NNS?CDCl? i+1 word '60sNNPoʡJJoʡ@i-1 tag+i word CC misrepresentsVBZbX9?NNSbX9 i+2 word lullPDTˡE?JJˡEi-1 tag+i word TO delightVBw/?JJw/ܿi-1 tag+i word VB sadNNSZd;OݿJJRw/JJzG?VB{GzԿi-1 tag+i word IN bloodNNV-?INV-i word amateurNNP㥛 VBX9vJJS@NNOnRBS㥛DTX9vϿi+1 word holdoversJJHzGNNPHzG?i-2 word percentage NNrh|?NNPSK7ARB rRBRMbJJrh|IN(\?NNSK7A?RPˡEJJRMb@i-2 word alarmVBDX9vVBNX9v?JJ?5^I INNNSRBl@NN(\i-1 word oddlyNN ףp= RB"~jVBZZd;JJ(\@VBGMbX9i+1 suffix oneWPrh|?DTK7AINE @VBNZd;ORPA`"?NNSffffffVB"~j@JJRbX9ȶVBPCl?RBCl?NNPS?NNPS`"?NNB`"POS(\PRP$\(\߿VBGʡE@VBD?5^I ?WDTDl?JJ7A`VBZ7A`?CCOn?RBS-RBRKJJS rUHsh|?i-1 tag+i word DT trendyVBPjtJJjt?i-1 tag+i word , botheredVBNoʡ?VBDoʡi-1 word condemnedCCGz?RBGzοi word defaultVB1Zd?NN5^I ?RBZd;JJV- i suffix mniVBV-NNSL7A` @NNlJJ#~jNNP? i word losingVBGv?JJ|?5^NNv/?i tag+i-2 tag NNS NNPJJR rhVB333333?NN&1@DTCl?NNP{Gz?VBGsh|??NNS#~j?WDT +JJ= ףp=?VBZB`"?RBCl?VBNnVBP㥛 UH"~EXV-?VBDRBR +?INy&1RP+׿i+2 word theatersVBN#~jJJ#~j?i+2 word teamingNNSRQNNPRQ@i-1 tag+i word NN hundredVBN|?5^ٿCD|?5^?i+1 word gauloisesJJRNbX9?RBRNbX9i-1 tag+i word -START- pilgrimPDTX9vNNS^I +NNP~jt?i+2 word speedingVBN5^I ?JJ{Gz?VBD5^I NNJ +ٿRBMbi-1 tag+i word NN squeezedVBNMbؿVBDMb?i-1 tag+i word `` happyNNPK7A`JJK7A`?i+2 word ambivalenceJJ(\?NN(\ؿi+1 word deputyVBNRQ?JJ?NNV-i-1 tag+i word NNP countriesNNPSV-?NNSbX9NNPJ +i-1 tag+i word -START- giveVB?JJZd;߿NNPh|?5i-1 tag+i word VBD includedVBNCl?JJCli word clusteredVBN ףp= ?VBD ףp= i-1 tag+i word `` blamingVBGDl?NN"~jJJmݿi word splashyJJS㥛?NNS㥛i word supervisorNN|?5^?VBD|?5^ʿi-1 tag+i word , desperateVBPoʡJJ333333?NN%C̿i+2 word dramsJJ`"?NN`"i-1 tag+i word , tenderJJR1ZdӿNN1Zd?i tag+i-2 tag RP PRPRBClINCl?i word advancedVBD'1Z?VBNS JJ;On @VBZ7A`NNPOn?NNbX9i+2 word confirmVBZ~jtNNSv/?NNP|?5^?i-1 tag+i word PRP whipsVBZPn?VBDPni-1 tag+i word JJ pariahNNSQNNQ?i-1 tag+i word DT remainingVBG ףp= @JJv/NNzGi-1 tag+i word VB indebtedVBN-JJ-?i-1 tag+i word VB cellVB= ףp=NN= ףp=?i-1 tag+i word DT stupidestJJSK7?JJK7i-1 tag+i word CC vendorNNQ?FWQi-2 word prescribeJJ?NNi-1 tag+i word VB uphillRB(\?NN(\ſi-1 tag+i word RB awryNNPS~jtRB~jt?i+2 word livesVBDjtVBClINjt?DTCl?NNPQPRP$Q?i-1 word wildlyVBNQNNClJJ/$@VBd;Oi-1 tag+i word NNP mortgageJJZd;NNS㥛NNP= ףp=? i word saferRBB`"۹NNjtJJRB`"@VBP#~jJJSVBmݿi+1 word leavingVBZI +?CDI +ֿ i-2 word onRPp= #@FW7A`ڿCDl¿NNPSjtVBPxNNS-?CC"~INPn?PDT~jt?RBSClVBG?VBD= ףp=WDT(\JJ+?DTClRBDlRBRK@JJRʡE?VBNRQ@VBZuVNNp= ף?NNP;On?VB +JJS9v?i-1 tag+i word TO foreignersVB/$NNS?RBRV-i word unappealingVBGOnJJOn?i-1 tag+i word RB demandVBʡENNʡE?i-1 tag+i word -START- mikeDT|?5^ٿNNPoʡ?INZd;i-1 tag+i word VBN nonethelessRBMb?NNMbi-1 word effortsNNSZd;RBZd;?VBD1ZdVBP1Zd?i word utilizeVBZd;?JJZd;i-1 tag+i word VB breedingVBGʡE?JJʡEi-1 tag+i word : aDTS㥛?NN(\NNP~jt?i-1 tag+i word CC beneficialNNHzGNNPK?JJ~jt?i-1 word certainNNV-VBN|?5^?JJsh|?ݿVBZ!rhNNS rNNPS?NNPSp= ףVBG/$?i word mountingVBGbX9?JJA`"NNK i+1 word duoNNPSp= ףNNS/$ӿJJX9vNNP/$?i-1 tag+i word RB describedVBN(\?VBD(\i-1 tag+i word IN negotiatedVBNw/?JJw/i-1 tag+i word : scaringVBG/$?NN/$i-1 tag+i word CC subcompactVB +NNDl?JJMbX9i+1 word brochuresJJCl?NNGzNNP|?5^i-1 word eldersNNPSq= ףpNNPq= ףp@ i word boomedVBPDlVBNp= ףVBDx&?i-1 tag+i word NN faltersNNSA`"NNܿVBZS㥛?i-1 tag+i word NNP plansVBZv @NNPSQNNSjtNNPni-1 tag+i word DT risksJJ/$ӿNNSuV?NN)\(i+2 word named VBZ;OnNNSQNNPM?NNjtĿJJOn?CDjtܿINRQ?NNPS(\?RBRQȿi-2 word combiningNNSClJJCl? i suffix ESPNN +NNP +?i-1 tag+i word -START- babyCCT㥛 пNNPT㥛 ?i-1 tag+i word WDT stirredVBDV-?VBPV-i+2 word emotionalNNSZd;JJGz?NN|?5^i-1 word fightRPPnRB^I +?INFx?i-1 tag+i word CC xl\/datacompRB"~NNP"~?i-1 tag+i word IN foothillsNNST㥛 NNPT㥛 ?i word relevancyNNS +NN +? i word sheetNNS{GzNNd;O@JJ ףp= VBPzGi-1 tag+i word POS holdVBxֿNNx? i suffix adtNNbX9NNPbX9?i-1 tag+i word DT reservedVBNCl?JJCli+2 word membershipVBG+?NN+INx&1?DTx&1i-2 word tabloidsRB}?5^I?JJ}?5^IԿi-2 word apartmentsVBG#~j?NN#~j i-1 word hackRP+@RB+i-1 word glacialNNS㥛?VBZS㥛i+1 word brightDT/$?NNP/$ i-2 word sentRBx&ѿVBZSNNSv?NNPv߿VBZd;ORPMbX9?JJ1ZdNNrh|?i-1 tag+i word IN colonialNNJ +?JJJ +i+1 word thiefJJRp= ףNNp= ף?i word sellersNNSn?NNPSni-1 tag+i word JJ bronxNNPS&1NNP&1?i-1 tag+i word NNP rescuedJJZd;VBDZd;?i-1 tag+i word DT edwardsNNSK7NNPK7?i-2 word smellsVBZ/$?NNS/$i-1 tag+i word RB expandedVBNB`"VBDB`"?i+1 word mattressVBX9vNNPX9v?i word hacklesVBP\(\NNS\(\?i-1 tag+i word JJ panamanianJJ|?5^?NNP|?5^i-1 tag+i word VBG materialJJjtNNjt?i-1 tag+i word IN securitesNNS|?5^?NN|?5^i tag+i-2 tag JJ TO VBMbX9VBG`"RPK7?NNSMbXJJ㥛 @INQNNPbX9RB~jtNN"~?FW?PRP$+?CD;On?i-1 tag+i word VBZ intentNNd;O?JJd;O i word oeufsVBGzFWGz?INK߿ i word a.NN9v@VBDZd;CC+''EJJʡE?NNPZd;ONNPS(\i-1 tag+i word FW placementsNNPS%CNNP%C?i word rangingVBPJ +VBGB`"?NN9vi-1 tag+i word CD barrelsVBZ%CNNSS?RBjtINMbi-2 word bassistNN+NNP+?i word partnershipNNPS#~jNN333333ۿNNPtV? i word alleyNNm?RPmi+2 word spreadingNNPSh|?5?VBG/$?NN/$NNPh|?5i+2 word simplyNNSӿIN`"?WDT`"NNSS?i-1 tag+i word DT naczelnikJJףp= NNMFWOn@i-1 tag+i word , willingNNP~jtJJ~jt?i-1 tag+i word JJ brightJJCl?VBDCli-2 word involvingVBZ~jt?NNS +?NN|?5^JJClNNP&1i-1 tag+i word NN lessCCn@NN+JJRCl@RBjtRBR|?5^i-1 tag+i word ( j.vNNbX9NNPbX9? i word garyVBGSJJx&NNP9v @i+2 word reputationVBNS㥛ܿVBDS㥛?i+2 word stylesJJSQ?NNQJJRQ?NNPRQi-1 tag+i word NNS ralliedVBP+ۿVBNA`"VBD(\?i word enablesVBZ"~?NNS"~i-1 suffix lenJJ|?5^?RBKǿINK7?NNStV?NNP|?5^?VBK7NNPS;OnҿRPHzGi-2 word damagesDTGzINGz?i word followedRBףp= NNS+NN rhVBDʡE@VBNHzGVBP+i-1 word futureVBGRQ?NNZd;?JJ;OnIN7A`?VBZ^I +NNSʡEƿi-1 tag+i word DT greekJJGz?NNPGzi-1 tag+i word NN enjoysVBZ@NNi+1 word improvementsVBP5^I VBG9vVBN#~jNN+?JJ#~j?i+2 word tweakingPRP$KJJK? i-2 word cieNN rNNP r?i-1 tag+i word CC aboutIN$C?RBx&ٿNNʡEi-1 suffix agaNNP-?JJ-FW-i-1 word democraticNNPSuV?NN"~jVBPNbX9JJHzG?NNSNNPA`"? i+1 word food RBSVBQ?NNPSʡEJJMbNNZd;?VBDNbX9?JJSZd;O?VBNK7A @INʡE?NNP rhVBPQi-1 tag+i word DT purchaserNN?FW i+1 word b.DT ףp= JJ333333NNPRQ@i-1 tag+i word NNP linesNNPsh|?NNPSsh|??i+1 word holders RPsh|??NNPX9v@VBMbXVBG/$?NNV- VBDJ +?VBP|?5^?INsh|?VBNS㥛?JJQ NNSNbX9i+2 word flawsVBNZd;JJx&1VBD= ףp=?INX9v?WDTS㥛i-2 word europeansVB+?NNPSףp= ?NNP+i word annualizedDTʡEVBNI +@JJSNNPJ +i+1 word bullionNNPS"~?NNP"~ i-2 word reyNNV-?VBNHzG?JJ rhINV-VBGm?RPV-?i-1 tag+i word CC wonderVBx&1VBPCl@JJRx&NNMbi-1 tag+i word RB hopeVBK7VBPK7?i+2 word newquistVBZOnۿNNSOn?i+1 word kodakJJ7A`NNP7A`? i word taxedVBN+@JJ+VBDS?VBSi-1 tag+i word NNP orderNNCl?NNPCl i word rewardNN/$?JJ/$ۿi-2 word investingNNMbRBV-JJ%C?i-1 tag+i word PRP droveVBPʡEVBDʡE@i-1 tag+i word VBD goldJJ~jt@NNVBN9vi+1 suffix tieNNK7A`NNPK7A`?i-1 tag+i word JJR miceNNw/NNSw/?i-1 tag+i word NN zNNClNNPCl?i-1 word severelyVBNv/JJv/?i word depressVBA`"?JJA`"i+1 word stampsVBN/$JJ/$?i+1 word platformNN ףp= JJ ףp= ?i-1 tag+i word PRP showedVBP$C˿VBD$C?i+2 word asleepVBNHzGѿVBDHzG?i-1 word running DT(\?NNףp= ۿRBRQJJy&1̿IN(\RB/ݤ@JJRףp= NNSV-NNPCl?i-1 tag+i word IN seatsNNSx?NNxi+1 word suppliersNNZd;?JJZd;i+2 word navigationNNS= ףp=?NNPB`"?NNffffffVBPq= ףpͿJJ;On?DTGz? i+1 word keanNNP/$?VBNbX9JJV-ͿFW?5^I i-2 word kongsbergNNPv/?INv/i-2 word hostsVBN$CJJ$C?i-1 tag+i word RB sustainNNOnVBOn?i+1 word problems VBGVBDp= ףؿVBNDl?POS(\?VBZ(\ؿNNP/$ѿVBHzG@NNHzG?RB'1ZIN-?DT-޿JJ{Gzi-1 tag+i word VBP pleasedJJ㥛 ?VBD㥛 i+2 word prescriptionsNNuV@JJuVi+2 word missionaryVBN-?VBD^I +׿VB+i-1 tag+i word NN shakesVBZx&1?NNx&1i-1 word tiniestNNZd;O?JJZd;Oi-1 word rescheduledPRP$V-?PRPV-i-1 tag+i word IN racialJJ/$?NN/$ i+1 word hotVBQ?NNQi-1 tag+i word VBN postingVBGZd;?JJZd;i-1 tag+i word -START- y.j.PRP$V-NNPV-?i-1 tag+i word VBZ boughtVBN/$?JJ|?5^VBDFx?i-1 tag+i word PRP$ individualJJʡE?NNʡEi tag+i-2 tag WRB ``VBsh|??VBPxVBN$C?JJ i+2 word iraVBP/$VBD/$?i-1 tag+i word DT guestJJS"~jNNK?JJJ +i+1 word perchlorateNN-?JJ(\NNPˡEi+1 word riskingRBZd;O?NNSZd;Oi-1 tag+i word , ala.NN~jtNNP~jt?i+2 word optimisticNNMbVBN㥛 RB @JJ%Ci-1 tag+i word VB boldVBNClJJCl?i-1 tag+i word NNS askVBbX9@VBP;OnVBDʡEi-1 word netherlandsNNPSQ?NNSZd;ONNP!rhi-1 word jointNNPS?VBGMNN ףp= ߿JJffffffVBZy&1NNSV-?NNP-ƿi-1 word thatcherNNtV?VBDX9v?JJX9vVBZx&?NNSx&ٿNNPtVi-1 tag+i word VBD liberalizingVBGuV?JJuVi-1 tag+i word IN investmentsNNPST㥛 NNPT㥛 ? i suffix rotNN333333@JJ333333i-1 tag+i word PRP$ hurricaneNNw/?JJw/ i word fineryRBQNNQ?i-1 tag+i word NN introducedVBN~jt?VBD~jti word wearingVBGL7A`?JJzGڿNNS㥻i+1 word managersNN7A`@JJR~jtJJMb?IN"~jNNP(\տVBGCli-1 tag+i word DT midweekJJ\(\?NN\(\ i word storyNNw/NNPw/?i+2 word operationJJ;On@VBN= ףp=NNsh|?i-1 tag+i word NNP suggestVBZVBPQ?JJSX9vi-1 tag+i word RB concludesVBZHzG?NNSHzGi-1 tag+i word VBN enJJStVRBףp= ÿINDl?i-1 tag+i word PRP knewVBZzGVBDzG? i+1 word car VBuVNNS@CC333333JJS?VBNA`"WDT}?5^IIN'1Z?VBDlCDQJJZd;?DT rh?NNPy&1i word thoroughJJ(\?NN1ZdINT㥛 i-1 suffix oweVBZ/$DT= ףp=?NNS/$?IN= ףp=i-1 tag+i word DT medicalJJ rNNP r?i-1 tag+i word DT organizationNNnNNPn?i-1 tag+i word DT matterRBR +NN333333@JJRd;OJJNNP#~j i+1 word ancVBD +@VBPINDlWP(\i-1 tag+i word NN yearsNNSd;O?NNPd;Oi-1 tag+i word CD megabytesNNGzNNSGz?i-1 tag+i word VB courtsNNSrh|?NNrh| i word nervyJJ/$?RB/$ i-2 word law VBPv?WDTGzNNSZd;ϿVBG^I +?VBD"~jPDTv/VBN?JJOn?INMb?VBZCl?DTv/?VBy&1NNi+1 word mammothVBPE?VBGEȿi word uncombedJJʡE?NNʡEi-1 tag+i word DT codeNN(\?JJ(\ i word swapVBS?NNDl?VBNSVBP~jt?JJMbNNSףp= ۿ i word creptVBPX9vVBDX9v?i word outstandinglyRBffffff?JJffffffi-1 tag+i word NN chosenNNS rhVBNS㥛?NN+i-1 word gravestNNPnпJJPn?i word scalingVBGQNNQ? i-1 word meetVBGZd;JJ-@RP#~j?VBN)\(RB#~ji-1 tag+i word DT polledVBNʡE?JJʡEi-1 suffix iryJJjtVBDX9vVBNX9v?NNjt?i-1 tag+i word -START- freddieLSV-RBlNNP$C?i+1 word promptedIN^I +߿NN rhCD rh?DT^I +?i-1 word brandCC +޿VBNGzVBZZd;ONNS +?NNZd;O?VBDGz?i word disproportionateVBN(\VB/$VBPףp= ӿJJ/$ @NN(\ i+2 word hong RBS?VBZw/ܿNNP +NNPS +?JJ5^I @NN+?RBR~jt?VBPQJJR~jtVBS˿VBGnVBDZd;?VBN+ i suffix DebNNPS!rhNNP!rh? i word nileNNxNNPx?i+1 suffix antNNST㥛 ?VB|?5^CCX9vCDoʡ?VBD`"?JJV-VBZ +ֿRBbX9INCl JJRbX9VBNffffff?NNZd;@POSJ +?RBRh|?5@NNPSI +VBPQ롿WDTn?DTMbpRBSGz.@VBGDl?NNPjt?JJS#~ji-2 word studentVBGʡE?JJʡENNV-VBDT㥛 ?VBN +?VBP= ףp=RBV-?VBQi-1 tag+i word CC improvedVBDffffffVBN333333?JJi-2 word movingRBR+@JJoʡݿINbX9ȶ?NNSClNNPʡE?RBA`"?NN|?5^JJR(\i-1 tag+i word IN victoryNNSˡEԿNNˡE?i-1 tag+i word NNP trendNNPSoʡNNPoʡ? i word peatNNlNNPl?i-1 tag+i word VBG bringingVBG{Gz?JJ{Gzi word plungedVBDHzG@VBNjtNN"~ҿIN+i-1 tag+i word -START- machinesNNSZd;?RBx&1NNP;Oni word straighterNNZd;ORBRףp= ?RBJ +ѿi+1 word campbellNN= ףp=NNP= ףp=?i-1 tag+i word , tasksNNS~jt?RB~jti+2 word highsJJS㥛NNPMbX?VBS㥛?NNMbXVBDx&?VBNx&i-1 tag+i word NNP katoNNV-NNPV-?i-1 word mavensMDn?VBPni+1 suffix ushNNV-VBDDl@VBN5^I JJRh|?5?JJ{GzDT+?NNS+NNPmi tag+i-2 tag VBD VBNJJR\(\߿JJZd;O?NN'1ZRBR\(\?VBNffffffRBw/?INSNNSffffff?i+2 word influenceDTOn?VBDOn?JJOnRBZd;O?IN"~ji-1 tag+i word NNP accountsNNPS9v?NNSK7NNPx&1 i word brewerNNSzGNNzG?i-1 tag+i word NN heightsNNSQ?NNQi-1 word dubiousNNtV?NNStVοi-1 word campaignVBZS?NNSzGNNp= ףVBD/$VBN rh?WDT5^I ?IN5^I i tag+i-2 tag JJS IN$?RBV-?NNS?VBZ^I +VBDSPDT(\?INK7JJ'1ZNNP9vVBGZd;O?VB-?RPV-NNA`"CD}?5^I?VBP|?5^ʿVBNK7?i-1 tag+i word WP wantVBP/$?VBD/$i-1 tag+i word NNS takeVBVBPV-?NN?5^I IN-i-1 tag+i word JJ insidersNNS?NNPi-1 tag+i word DT earthshakingVBGHzGJJʡE?NN9vi-1 word going JJm@INT㥛 @VBZ㥛 RBK?NNmJJR%CRBRS㥛@EXNbX9RPClNNSrh|i-1 word forgerVBNK7A?VBDK7Ai-1 tag+i word NN hurtsVBZCl?NNSCli-2 word bullhornsJJ?NNi+1 word emergencyVBGDl?JJDl i suffix iryRB-NNx@VBP$CJJjt?VBZClNNS= ףp=ڿNNP~jt?i+2 word performNNSS@NN|?5^NNPZd;O?VBPʡEi+2 word strengthenNNFxIN-WDT-?VBGFx?i-1 tag+i word VBP futureJJffffff?NNffffffi-1 tag+i word DT respectiveJJQ?NNQ뱿i-1 tag+i word NNS paidVBPMbNNSʡEVBNZd;@VBDMҿi-1 tag+i word NN victimsNNS= ףp=?NNP= ףp=i-2 word seriousNN/$?JJK7ANNPK7A?VBD/$i+2 word companiesWDTjtNNS(\?NN&1VBDv/?JJSX9v @RBR;OnVBNrh|VBP(\JJR;On?VBSۿJJKPDTNNPtV?VBGMb?RBsh|?ݿIN{Gz?DTx&? i+1 word wasCDl?NNPSV-VBPx&1VBZrh|NNv/@RBHzGVB rhCC+?VBNZd;O?JJK7NNP?VBDDT%C @NNSQ?EXףp= ?JJS7A`JJR9vVBGCl'')\(?WDTv @WP#~j?POS)\(INp= ףi-2 word involveJJ/$NNP/$?i-1 word concentrateRBR/$?JJR/$i+1 word triumphedNNS'1Z?VBD7A`VBZSi-1 tag+i word JJ leaguersVBZ5^I ˿NNS5^I ?i-2 word deltaNNP(\NNPSw/?NNMbpJJ+i-1 tag+i word VB governorJJGzNNGz?i-1 tag+i word DT blandingsNNPSlNNSE?NNPX9vֿ i+2 word :NNK7A`?NNPZd;O CCI +?MDMbpVBDzG?VBNK7A`@WDT-?$-NNS+?CDZd;RBEINHzGPRP$$C˿VBGZd;?VBPFxJJ rh@DTQݿPOSZd;NNPS(\?VBZtV?FWOn?PRP+VB#~ji-1 tag+i word PRP upVBZnRPZd;O?RBv INx&@i+1 word messrs.CCw/?DTx&1INffffff? i+1 word bulbNNX9v?JJX9v i-1 tag+i word IN discriminatoryJJ'1Z?NN'1ZĿ i suffix RAMJJ-NNPENN|?5^?i word apartheidRBR9vRBQNNPK7A`?NN-?NNS?5^I i-1 tag+i word ( controlledVBN"~?JJ"~ʿi+1 word charlesVBy&1NN&1?VBD!rh?CD/$?VBPCl?JJtV i word martinJJףp= NN rhNNPS㥛? i-1 word slayPRPOn?NNPOni-1 tag+i word -START- mortgageNN-?JJ333333ÿNNPbX9i word dissatisfiedNNSClVBN|?5^JJ(\?i-1 tag+i word IN musclingVBGCl?NNCli+2 word barbaraNNPS= ףp=RP'1ZIN'1Z?NNP= ףp=?i-2 word promotingNN$CCD$C?i-1 tag+i word VBZ observeVBPPn?INPni+1 word surgicalNNV-?INV-i-1 tag+i word , fundNN-?JJQVBDd;O i+1 word offVBPh|?5?VBDʡE @JJtDT+NNSQ?VBZK7A`?JJR?VB ףp= @VBG"~ʿRBZd;OݿNNsh|?VBNx&?RBRMbPRP9v?PRP$9vNNPMbi word aspiredVBN~jtVBD~jt?i+2 word sociallyJJm?NNmi-1 word outstrippedVBZK7ѿNNSK7?i+2 word originalNNX9vVBD7A`?VBNʡE?VBPJJV-?NNPQ?i-1 tag+i word JJ ufoNNPw/?NNSw/i-1 word bouncedRBh|?5NNK7AJJlRPMbX@i word reducingVBG#~j@JJ~jtNNx&1 i word easedVBD/$?VBN/$i+2 word drinksJJ-?NN-i-1 tag+i word NN premiereVBZSNNS?i+1 word chosenNNMbȿRBMb?i+2 word expertiseDTx&?RBx&i-2 word melaninJJMbX?NNMbXi-1 tag+i word NN plummetedVBNffffffVBDffffff?i+1 word cloudWDTv/?JJ?5^I ?NN?5^I DTv/i+2 word fraudJJ?VBDi-1 tag+i word , dressingVBG?5^I ?NN?5^I ڿi-1 tag+i word DT conservativeJJL7A`?NNPL7A`i-1 tag+i word NN achieveVBZ/$VBCl?RBQi word polishingVBG1Zd?NN1Zd i word unfitJJn?VBNrh|NNV-ǿi-1 tag+i word NNP oilsNNSZd;O?PRPZd;O i-2 word off JJ'1ZܿNNMbX?VBD= ףp=?JJSK?RBMbX9ܿNNPGzǿVBGB`"?NNPSCl߿VBNmNNSQ?VB(\i word midyearNN+@JJNbX9NNPX9v i word virusNNq= ףp?FWq= ףpi+1 suffix pcsVBP;On?JJS{Gz?JJPn?NNjtNNSˡE i word sweetNNA`"VBPClJJ9v@i-1 tag+i word PRP swissJJHzGNNPHzG?i-1 tag+i word NNP gearVBPS㥛?VBZS㥛i-1 tag+i word NNPS changedJJ9vVBD9v?i-2 word buildersRBRv/?VBN+?JJRv/VBD+ i word mxNNPS333333NNP333333?i-1 word hearingsJJI +ֿINI +?i+1 suffix mphJJʡE?NNʡEi-2 word attractionJJS+?RBS+i-1 tag+i word TO implementVB|?5^?NNK7JJGzοi-1 tag+i word DT expectedVBN7A`JJ/$?VBDDl i word akioRB+NNP+?i+1 word mailmenJJQ?NNPQi-1 tag+i word , assumingVBG+?JJ+i+2 word englandNN'1ZԿJJ'1Z? i-1 word beWPV-?VB&1RBRx&1?VBG@WDTSJJRQ@RBS333333?PRP$B`"?NNSSCC%C?VBN(\ @DTףp= NNPn RBK7A?NNP}?5^IPDT~jtx?EXS㥛VBD?5^I VBZRPy&1IN= ףp=JJS{GzJJR?i word astronomerNNX9v?JJX9vi+2 word characterNNSGzNNGz?i-1 word screamingRBRX9v?JJRX9v i+1 word (NNP rh@VBP +INMbVBZ1ZdRPQVB/$FWv?VBNZd;O?NN(\ @VBDSNNS?5^I @RBRGzJJRDlNNPS?5^I ?VBGK7A`JJ"~RBsh|??i-1 tag+i word VBD prohibitiveJJQ?NNQi-2 word toughnessVBZV-NNV-? i suffix ManNNPSw/NNZd;O@NNPjt i suffix ach NNSK7VBDrh|VBNRBNbX9IN+NNPQ?VBx?JJh|?5 NNGz.@VBP{Gz@i+1 word basisJJL7A`@NNDlCC!rh?VBNMbX9@RBDTE?NNS!rh i+1 suffix vuRBSV-NNS@JJ+i-1 tag+i word VBG mandatoryJJQ?NNQi-1 tag+i word VBD hemorrhagingVBGS?JJSi+1 suffix ughRBV-?CCx&1@NNSffffff?JJR/$RPK?NN +VBDV-?RBR~jtWDT$CINsh|??NNPS/$?FWq= ףpVBG/$VBZʡE?DTX9vNNP"~j?VBK7A`VBPX9v?JJjtCDS㥛VBNK7A@i-1 tag+i word NNP democratsNNPSx&1?NNSuVNNP-޿i-1 tag+i word DT counterweightJJZd;߿NNZd;?i-1 word adoptingVBZL7A`尿NNSL7A`?i-1 tag+i word DT reasonablyRBZd;?NNZd;߿ i-1 word grayJJ|?5^?NNX9v߿CD/$VBZ +οNNS +?i-2 word mayorVBD +?NNPffffffVBP+VBN +ֿNNx&1@i tag+i-2 tag NNS PRPVBD%C?VBN%CRBx&1EXx&1?i-1 tag+i word NN underwearVBPGzNNGz?i+1 word seedsNN= ףp=?JJ= ףp= i word diskNNPtVNNˡE @JJ rhi-1 tag+i word `` cleanJJI +?NNI +i-2 word donoghueVBN= ףp=VBD= ףp=?i+1 word pullbacksNNFxJJFx? i+2 word desJJCl?NNMNNPZd;O?i word acquisitionNN(\NNPRQ @NNPS!rhNNS"~ji tag+i-2 tag JJR VBZVBN?RBR#~j?RBnJJR#~jNNS`"VBG(\?JJX9v?NN-i+1 word chemistryJJzG?NNzG i word mesaNNlNNPl?i-1 tag+i word NNPS struckNNRQVBDRQ? i word motiveJJSZd;NNZd;O?JJZd;i-1 tag+i word TO !DIGITSVBQCDQ?i-1 word necessarilyJJ9vVBq= ףp@RBSVBN9vi+1 word commonlyVBPʡENNSS@NNPi+2 word breakdownPDT{GzJJ{Gz? i suffix eggNNB`"@VBNh|?5JJS㥛i-1 tag+i word JJ insofarNNS5^I ӿRB= ףp=?NNFxi+1 suffix llyNNP9v@RBSʡE?EXffffff?CCjt?CDEINL7A`NNPSl?VBGMbпVBD9vڿPRP-?NNSʡE?JJRK7ADTbX9NNnRBK7ѿRBR(\@VBP ףp= ?WDT1Zd@JJV-VBZZd;O?VBʡE?JJS`"PRP$lVBNV-@RPh|?5FWHzGٿi-1 word messaIN~jtFW~jt?i-1 tag+i word JJ spanVBP;On?NN;Oni-2 word viewedJJrh|?VBNzGNN~jt i-2 word unixVBDl?VBP'1ZܿWDT rh?IN rhVBDʡEͿi+1 suffix ubtRBX9vοNNS㥛VBDzG@JJ-?VBZ5^I ?DT7A`¿NNSVBffffffi-1 tag+i word -START- espsNNd;ONNP~jtNNPSoʡ?NNS= ףp=? i word flightCDMbXNNPS{GzNNQ@NNPʡEi+2 word renewedVBClRBRMb?RB#~j i suffix NTSNNPS|?5^ڿNNSʡE@NNK7JJQNNP$C i-1 tag+i word JJ brethrenNNSʡE?NNʡE i-1 word ontoVBNˡE?JJˡEi-1 tag+i word -START- assumingVBG +?NNP +޿i+1 word salomonVBPMbNNK?JJ= ףp=i-1 tag+i word NN usesVBZsh|?@NNSS㥛ܿJJQVBD+i-1 tag+i word RB edtNNPX9v?JJX9vi-1 tag+i word NNS producedVBDHzG?VBPI +VBN;On?i-1 tag+i word DT sweepingVBG&1ڿJJCl@NNoʡi+1 word detailsmanNN\(\@RBV-JJB`" i-2 word 'sVBP!rhDTT㥛 NNS(\PDT{Gz?RBS(\@RBRNbX9EXNbX9VBDzG?UH&1ڿJJSw/VBNQ?VBZS㥛?NNMbX9?NNPn?VB-?PRP$$C?INRQWDTClVBG{GzRBZd;?CDl?JJRؿRP㥛 WPV-WRBffffff?JJV-?FWh|?5?PRP$CCCx@NNPS)\(?''&1?i word bookingVBGZd;O?NNZd;Oݿi word insofarRBh|?5@NNS5^I ӿJJ/$NNFxVBN(\ȿi-1 tag+i word NN formerlyVBZX9vRBX9v? i word romanNNPS~jt?NNP~jti-1 word streamlinedVBG&1NN&1? i word fuelVB?5^I ?RB'1ZNNZd;O@VBP'1ZJJʡENNSˡENNP~jti-1 tag+i word VB stemsVBZ+?NNSJ +PRP/$޿NNKi-1 tag+i word RB perJJ5^I IN5^I ?i-1 word crescottNNPS/$?NNP/$i-1 tag+i word IN imposingVBGq= ףp?JJq= ףpi tag+i-2 tag WRB JJDTOn?NNl?JJ?5^I RB|?5^@INOni+2 word available NNx&1?VBNQVBPV-ݿVBZ-RBX9v?VBDQ?JJS{Gz?JJx&1ȿNNST㥛 ?NNPZd;߿ i word hungryJJMbX9@JJR^I +NNSnVBNV-i-2 word issuingWDT"~j?IN"~ji+2 word surveyJJ1ZdNNP1Zd? i-1 word cnwVBNٿVBD?i-2 word centsVB~jt?VBG㥛 JJ㥛 ڿNNMb?VBNQRB!rhNNPMbX9? i word gamingNNy&1?VBGy&1i word lighterRBRJJR@NNK7Ai-1 tag+i word NNP normallyRB/$?NNP/$i-2 word participationFWQ?WDT|?5^?JJx&IN|?5^NNS5^I  i-2 word hong VBZSտNNPnVBGK7?RBzGếNN333333POSS?VBPp= ף?JJ{GzNNPSn@i-1 tag+i word NNP stackupNNx&1NNPx&1?i-1 tag+i word VBP negativeJJPn?NNPni tag+i-2 tag JJ PRP$VBNZd;O?JJ;On @DTmNNS^I +?RP+NN{GzԿCDClVB7A`?NNPSffffff?VBP;On?RB+ӿRBRbX9VBZMbNNP +οVBDnINVBGV-i+1 word thoroughbredsJJ333333?NN333333i-1 tag+i word NNP favorVBPjt?VBDjti-1 tag+i word VBP veryRBq= ףp?JJq= ףpi-2 word faresJJʡE?NNʡEƿ i word stampsNNSK7?NNK7i-1 tag+i word CC customNN7A`?RB7A` i-2 word seesNNX9v @RPX9vֿRBQJJbX9INX9v?i-1 tag+i word RBR lbosNNSZd;O?NNPZd;OͿi-1 tag+i word JJ mysteriesNNPS/$?NNP/$ i suffix CVNNNPA`"?JJA`"i-1 tag+i word VBG chapterNN"~j?NNP"~jܿi-1 tag+i word , clammyJJ~jt?NN^I +ǿVBZ!rhVBPw/ܿi-2 word reports NNP5^I RPJ +RBQ?VBD\(\?VBN|?5^?VBG(\?NNSL7A`@NN?5^I RBRSۿJJ ףp= ?IN)\(DT1Zdi-1 tag+i word IN factoriesNNK7NNSK7?i-2 word realismJJ= ףp=VB"~NN|?5^?i-1 tag+i word VBZ valuesVBZ-ӿNNS-? i-2 word kgbJJMbXNNPMbX? i suffix ual VB+RP= ףp=RBPnVBP;On?JJ?5^IL+@VBZd;ONNSK7A`NNPV-?NN$CFWy&1|VBNx i word depictVBPCl?VBDCli-1 tag+i word VBZ detectNNEVBE?i+1 word telecommunicationVBZm?JJmi+2 word softwareVBNZd;O?JJZd;Oi-1 tag+i word POS estimatedVBNHzG?JJHzGi-2 word merchant RB/$WDT&1INMbX@VBHzG?VBN/$?JJX9vVBZDlNNSDl?NNQ롿i-1 tag+i word -START- coffeeNNMbX9?NNPx&NNSGzi-1 tag+i word POS makeNNP rh?VB&1VBP/$ i-1 word dljVBZ9v?VBP9vNNZd;?NNPZd;i-1 suffix ityVBGMbX9POS&1?RP rMD&1VB= ףp=RB@INHzG?VBZ|?5^?NNPS1Zd?EXV-ڿFW~jtWDT/$ƿRBRQ?VBP9v @DT}?5^IVBD/$NNSGzVBN)\(?NNPoʡ?JJ?5^I NNq= ףpi+1 word steadilyNNZd;ONNSV-?VBN9v?JJ9vFWѿi word missingVBGQ@JJS?NN;Oni-1 tag+i word JJ exportNN+?JJ+i word threadsVBZHzGNNSHzG?i-2 word nightNN +?VBDX9v?VBPX9vJJ rhNNP-?NNPS/$i-1 word questionableNNS r?RB +VBZ rRPK7INx&1?i+2 word blockedNNPSMbNNSMb?i-1 tag+i word NN weaponNNSZd;ϿNNZd;?i-1 tag+i word JJS declineNN~jt?JJ~jti-1 tag+i word VBD launchedVBNS?JJSӿi-1 word personalVBX9vNNPSMbVBGx&1NNm?VBPjtֿNNSE@NNPʡEi+1 word senior JJV-VBDX9v?RBR5^I VBNw/?DTNNSV-JJR5^I ?RB'1Z?INV-? i word steelyRBK7JJK7@i+1 word cathodeNNSV-NNV-?i+2 word stretchVBDZd;OVBN9v?NNV-i+2 word cumulativeVBD)\(NNPSjtVBN)\(?NNjt? i+1 word copy JJX9v?DT= ףp=?NNS/$?NNPSZd;OVBDmVBNm?RBR= ףp=NNX9vNNP#~ji word agenciesNNPSjt?NNSw/NNP\(\i-2 word inouyeVBZzG?NNSzGi+1 word themeNNPSA`"?JJX9v?NNP-INClDTCl?i-1 tag+i word -START- benjaminJJQNNPQ?i+1 word stadiumNNSRQJJx&1NNK7?NNP~jt?NNPS ףp= ?i-1 tag+i word JJ mindNNS9vNN9v?i-1 tag+i word WRB thatDT/$@WDT"~jINffffffi-1 tag+i word DT judgeNN{Gz@JJA`"NNPSi-1 word immuneVBnNNn?i-1 tag+i word DT transluscentJJK7?NNK7i-1 tag+i word RB interestedVBClVBNbX9?JJ|?5^?i-1 tag+i word IN licensingVBGq= ףpͿNNJ +?JJ~jtۿi-1 tag+i word DT phraseNN)\(?JJ)\(̿i+1 suffix ernNNPSvVBDFx?DT7A`?NNPd;O?MDjtVBG|?5^?NNrh|?VBN7A`VBM?WDTK7A`VBPjtRBZd;OIN?VBZ(\?NNSB`"?JJE?i-1 tag+i word NNP newsletterNNPSq= ףpNNv@RBrh|i-1 word statementNNSVBDK7A`?RBRSVBNSWDTB`"JJZd;O׿IN&1@RBl?i-1 tag+i word TO dressmakingNN(\?VBX9vVBGV- i word sinJJV-ͿNNSʡENNP/$?NNʡE?FW?5^I VBNbX9i-2 word period CDS㥛?NNS^I +?VBG+?JJ-?VBN333333ۿRBHzGVBPQֿNNPzGҿNNMbP?VBDJJRV-RBRV-? i+1 word howVBN|?5^INQ?NNP#~jFWV-VBD r@RBNbX9VBZ rh@POSM@VBPZd;OͿVB'1Z@RPn?JJV-ͿNNʡENNSQi-1 tag+i word CD relatedVBD +VBNv/?JJ9v?i word articleIN-NNPrh|NNS㥛@RB{Gzi tag+i-2 tag $ INCDtV?JJZd;?NNP~jt i suffix RedNNPS\(\JJzG?NNClNNPMb?i-1 tag+i word DT endlessJJ+?NN+i+1 suffix rioNN;On?JJv/NNP(\? i-1 suffix noVBZffffffNNSx&1ԿJJRJ +?NNPNbX9@NNPS/$?CD rhRBQ?VB~jt?VBPMbX9WPA`"JJHzG?NN r@RBRvϿPRP-?VBGK7?VBDVBN+i+2 word refinancedVBNjt?JJx&NNV-߿i+1 word seriouslyRBR&1?RBh|?5?JJR&1VBGMbX9JJh|?5NNMbX9?VBD7A`?VBN7A`i+1 word flapsVBGʡENNʡE?i-1 tag+i word JJ listNN= ףp=?RB= ףp=i-1 tag+i word CC shakespeareNNPS333333NNP333333?i-1 tag+i word JJ biasNNS(\NN(\? i word criticNNh|?5@JJh|?5 i suffix .25CDl?NNPli-1 tag+i word NNP findsVBZ rh?VBD rh i+2 word cageVBN"~jJJ"~j?i-1 tag+i word DT namesNNS?NNPi word correspondingVBG"~jJJHzG@NN'1Zi-1 tag+i word VBP rejectedVBNS㥛?JJS㥛пi word directsVBZ+?RB+ i+1 word riceJJDlNNvNNPDl?VBv? i suffix oud VBPd;O?VBZFxNNPS㥛VBx&?NN)\(VBDoʡտVBN#~jJJQ@INʡEi-2 word jumbosRPףp= RBףp= ?i-1 word detainedJJRS?RBRSi+2 word stirs''MbX?POSMbXi-1 tag+i word JJS metalJJy&1NNy&1?i-1 tag+i word NNS suggestsVBZFx?NNSFxɿi-1 tag+i word VB losingVBG ףp= ?JJ ףp= i-1 tag+i word VBZ metalNNX9v?JJX9vi-1 tag+i word IN clothingVBGK7NNK7?i-1 tag+i word NNS describedVBOnVBPClVBNp= ף?VBDh|?5?i-1 tag+i word DT subminimumJJ rh?RBX9vNN1Zd i+1 word rareCD= ףp=?VBPrh|?RBMb?VBZ\(\?NNS= ףp=JJMbNNrh|POS\(\i+2 word lookingNNS5^I ?VBGz?JJ1ZdNNv?RBx&WPMDT-?i-1 tag+i word NN hitterNNI +?JJI +i-1 word fastestNNGzVBGGz? i word trosNNS7A` @NNʡENNPQi-2 word wholesomeNNd;O?JJd;Oi-1 word somedayVBK?NNKi-1 tag+i word NN figuresNNSV-?VBZV-i+2 word luckedJJK7A`?NNK7A` i suffix peiDTףp= NN7A`ҿNNP9v?i-1 tag+i word JJ domainJJ$CNN$C?i-1 tag+i word CC unsupportedJJQ?VBDQi+2 word recoupJJQVBDQ?i-1 tag+i word DT tristateJJI +?NNI +ֿi+2 word cooperatedNNT㥛 ?VBDT㥛 i word collectsVBZv?NNSvi-1 tag+i word VB limitedVBN(\JJ(\?i+1 word cyclesVBGClۿJJ?5^I ?NNx&1пi-1 tag+i word JJ jarsNNSK7A`?NNK7A`i+1 word recallsNN!rh?JJ!rhi-2 word variousINnNNSCl?VBZClӿWDTn?i-1 tag+i word NNS eagerJJRV-׿JJffffff?RBw/i word assertsVBZV-@NNS~jtNNq= ףpi-1 tag+i word VBN growingVBGbX9޿NNbX9?i word commonlyRB(\?NNA`"JJʡEi word complainVBHzG?NNHzGi-1 tag+i word NNP yieldNNS1ZdNNP)\(?VBT㥛 ?NNffffffVBP$C@VBZ'1Zi+2 word confederationNNPSnڿNNSn?i-1 tag+i word IN oregonNNMbX9@NNPMbX9i-1 tag+i word VB thrownVBN333333?RB333333i+1 word footholdNNP|?5^JJ|?5^?i+2 word invitingVBGʡEJJʡE?i-1 tag+i word VBN awareDT(\JJm?NNJ +i-1 tag+i word DT classNNX9v?NNPX9vi-1 tag+i word JJ drilledVBN%C?JJ%Ci-1 word koreanNNPS ףp= ?NN;On?JJ;OnNNP ףp= i-1 tag+i word NNP financingsVBZX9vNNSX9v?i-1 tag+i word PRP obviouslyVBPZd;ORBZd;O?i-1 tag+i word IN scenariosNNSx?JJ`"ֿNNPtVi+1 word premiumVB rhͿNN|?5^?JJR rh?JJ{Gz?VBNv i-1 tag+i word PRP$ goodJJˡE?NNˡEԿi-1 tag+i word CD winterNNPS9v?NN rNNP= ףp=?i-1 tag+i word VBP lessJJ!rhRBR(\?RB)\(JJR rhi+1 word cerealNNJ +?JJx&1?VBDv/i+1 suffix rmsVBG^I +INV-?VBZffffff޿NNPMbNN$C @VBNw/RBK7A`?NNPS +JJR7A`@NNSQ?JJS~jt?VBl?JJ|?5^?VBDHzG?PDTJ + i-2 word cageVBZ"~j?NNS"~ji+1 word michaelJJ7A`ڿINn?DTnNNP +NNT㥛 ?VBDq= ףp?VBNq= ףpi-1 tag+i word PRP growVB!rhVBP!rh? i suffix 972JJ(\CD(\?i-1 tag+i word NNP oyVBZףp= NNPS~jtNNPh|?5?i-1 suffix del JJ㥛 ?CDl?VBS㥛NNPSV-ҿVBGʡE?NNjt?VBP"~RBS㥛NNP`"i+1 word considerRBL7A`?NNp= ף?VBQi-1 tag+i word RB shippedVBNoʡ?VBDoʡi-1 tag+i word NN namesCC +޿VBP+NNS?i+1 suffix gunVBPK7VBK7?i-2 word hiltunenNNPS%CNNP%C?i-1 tag+i word NNS allegedVBNV-?VBDV-i+1 word recoveringRBMbXINMbX?i-1 suffix s&lNNʡE?INʡEi-1 word followsRPd;O@INd;Oi+1 word entirelyRPףp= ?RBףp= i word liedJJ+VBD+?i+2 word purchases NNPSNNy&1?CCjtRBSMbXJJNNSy&1VB@RB- @JJSMbX?IN9vi word traffickingVBGSNNS?i word celimeneNNSNNP? i+2 word bansNN'1ZCCjtĿVBMbX?VBPDlJJ'1Z?i-1 tag+i word NNS investedVBN|?5^VBD|?5^? i-1 word c.NNPV-?NNPSV-i+2 word woodyVBSNNPS?i-2 word claimsRBRS?RBQJJRSMDCl?JJ!rh@VBP(\VBZClVBGX9v?NNS +@IN$C˿NN)\(FWZd;߿VBNX9vDTK7?NNP"~jNNPSJ +i+1 word telltaleVBCl?NNCli+2 word attributeVBZ#~jNNS#~j?i tag+i-2 tag TO NNP VBS @VBDERBK7A`JJ\(\NNGz?JJRS RBR333333?NNSx&1?NNP&1i-1 tag+i word NNS recognizeVB!rhVBP!rh? i word witchVBx&NN ףp= ?JJ!rhi-1 tag+i word JJ earlyJJ ףp=@RB ףp=i+1 word politicsNNPJ +RBʡENNoʡ?JJSHzGPOS;On?JJDl?INZd;?VBZ;Oni-2 word scottoNNzGNNSzG?i+1 word wellsVBMbXNNPMbX?RBRDlJJRDl?i+1 word frozenRBRS?JJRSi-1 tag+i word CC checkJJQVBZZd;VBK?i-1 tag+i word JJ chunksNNSv/?NNv/i-1 suffix metNNZd;O?PDTʡE?JJʡE?DTʡENNSKNNPvi+2 word modernizeJJRv/?RBRv/i-2 word songstersVBN'1ZJJ'1Z?i+1 word medtronicVBsh|??NNHzG@FW^I +JJsh|?IN|?5^VBZ#~jĿi-1 tag+i word JJ exchangeableNNjtJJjt?i word colgateNNMbؿNNPMb?i word coveringNNmNNPʡE?VBGsh|?@JJV- i word deviceNNZd;?JJx&1INq= ףpͿi-1 tag+i word `` minimalNNQJJQ?i tag+i-2 tag RBR DT VBG^I +NNQοVBNClۿRBףp= ?NNS"~?NNPZd;OͿJJbX9?VBP~jt?VBZS˿i-1 tag+i word NNP shereNNʡENNPʡE?i-1 tag+i word IN classroomsNNSQ?NNQi+2 word effortINn?VBZ}?5^INNS}?5^I?NNPh|?5NNPSh|?5?JJ|?5^?NNQRB rȿi-1 tag+i word CC preventingVBGbX9?NNbX9 i-2 word bulkWDTRQJJV-?NNPV-DTRQ?i word painlessJJ+?NN+i+1 word epsiodeVBG|?5^JJK7A`?NN/$ i+1 word asPOSV-?VBP r?PRP/$?EXSINOnÿJJSQVBX9v?PDTSPRP$~jtVBN;On@CCX9v@JJRx&1VBG rRPV-@RBsh|?@CDSNNPSMbX?VBDCl?WDTnDTˡERBS/$?NNPxƿRBRK7JJ(\VBZZd;?NNK7@FWSNNS rh? i-2 word woVBZd;VBPnRBS?CDS?i word biographer\/criticNNQ?JJQi-2 word divertedVBG&1?VB&1 i word honestVBzGJJS)\(ܿJJ{Gz?i-1 tag+i word IN chineseNNPS(\JJ`"?NNPoʡ?i+1 word attemptsVBNjt?JJjti-1 word irvingVBDX9v?NNS1Zd˿VBN rhi tag+i-2 tag PDT -START-VBPoʡ?INoʡ i-2 word add VBNm?RBK׿RBREJJRJ + @NNPZd;VB+VBGd;O?JJ)\(?NNtVi tag+i-2 tag NNS RPJJL7A`尿PDTSVBP+?WDT rhRB\(\?IN rh? i+1 word toadVBPClVBDCl?i-2 word depressingNNS~jtNN~jt? i word meaJJw/NNPw/?i-1 suffix ark VBNrh|CDʡE?RBT㥛 IN|?5^ɿNNS~jtJJCl?NN7A`?VBD1ZdNNPbX9?NNPSQi-1 tag+i word `` cerealNNK7?JJClٿNNP ףp= i-1 tag+i word CD reachedNNSGzVBNK7A`NN$CVBDGz@i-1 tag+i word NN indicatesVBZbX9?NNSbX9i+1 word addressesWDT(\?IN(\i-1 tag+i word NN circulatedVBNV-VBDV-?i-1 tag+i word DT blameNNQ?NNSQտi+2 word doggingJJʡE?NNʡEi-2 word waiveJJx?NNxi-1 word pershareNNT㥛 ?JJGzRB~jti-1 tag+i word -START- togetherNNPDlRBh|?5@LSI +NNV-VBNZd; i word eyesVBP㥛 JJ㥛 NNSmR@RB+NNuVCC/$VBN\(\߿i-1 tag+i word NN intellectVBP+NN+? i word dalkonJJffffffNNP r?VB"~i-2 word vogelsteinVBNh|?5RBh|?5?i+1 word medicalVBGJJ VBZtV?NNS~jtNNP~j@VBK7WRB9vNN1Zdi-1 word immediatelyJJRSVBZףp= ?VBT㥛 ?VBD?VBNʡEۿRBRQ?VBPK7JJ- i word n.hNNMNNPM?i-1 word hammackWDT(\IN(\? i word copierJJRnNNn@i-2 word coveringsNNX9v?RBX9vi-2 word metabolismJJS?NNNbX9NNP/$ֿi word fireballsNNSCl?NNCli-1 tag+i word POS populistJJQ?NNQۿi-2 word pulitzerNN$C?JJ$Ci-2 word figuresVBN$CVBPT㥛 @RBQNNSVBx&1?JJףp= ÿNN\(\i+1 suffix arsJJRZd;?INQ?DT?VBZ9vNNPy&1NNPSCCVBN ףp= NNSI +JJ333333@VBGK7CDS@VB/$RPS?VBDV-RBR(\VBPv/?WDT"~?RBI +ֿNN^I +?i-1 word danielNNzGNNPzG?i-1 tag+i word JJ unfitVBNrh|JJrh|?i+1 word numerousJJJ +@VBMbX9VBG rh? i-1 word imoNNPStVNNPtV@i word tomorrowNN㥛 ?NNPS㥛ԿVBS㥛ؿi-1 word jumboNNSףp= ?RBףp= i+2 word complete NN +NNPS/$?VBGxRBR$C?JJR|?5^RB333333NNSCl?NNP/$VBCl?JJK7?i word convinceVBPA`"?NNA`"i word supportingJJjtNN/$VBG(\@i-1 tag+i word POS antitrustJJRQ?NNRQȿi+1 word recordingsRB|?5^INMb?NNX9v?RPMbJJ(\i word condonedVBDFx?VBNFxi-1 tag+i word NN callsVBZ ףp= @NNSoʡNNL7A`i-1 tag+i word -START- jeffreyNNGzNNPGz?i+2 word examinesVBCl绿NNCl?i+2 word welfareVB#~jVBPZd;O?NNʡE?JJ7A` i word combatNNSK7ANNbX9@JJq= ףpi-1 word penneyJJl?VBNM¿NNlVBDM? i-1 tag+i word VBZ comparativelyRBx&1?JJx&1i-1 word warrantVBZn?VBN(\?NNnVBD(\пi+1 suffix ocaVBGDl?NNDli word verifiedVBNzG?RBzGi+2 word stoogesJJMbX9?NNMbX9i-2 word levels VBZM?VBG)\(JJ-NN"~j?VBP\(\RBv/?IN?NNS}?5^IVBM¿JJRS˿VBNGz?i-1 tag+i word PRP neverVBPZd;RBZd;?i-1 word metamucilPDTʡEVBDʡE?i-1 tag+i word WDT shrankVBPjtֿJJEVBDףp= ?i+1 word makes NNST㥛 ?VB+VBPzGJJjt?VBZFxINjtNNPI +?VBGX9vNN rh@CDv/WDTn?i-1 suffix .r.NNPZd;OVBD(\?VBNMbi-1 tag+i word DT catchNNʡE?JJʡEi-1 tag+i word NN focusesVBZJ +?NNS9vNNQi+1 word premiumsVB^I +?VBP/$JJQNNx?NNP/$i-1 tag+i word DT plateNN+?JJ+i+2 word resortsVB(\?NN(\i-1 tag+i word DT mereJJffffff@JJSMbNNxRBS㥛NNP\(\ i suffix lds VBDjtVBNtVJJ7A` VBZR@VBSNNPSGz@RBbX9NNp= ףCD7A`VBP?5^I NNS"%@NNPFxi+1 word heavyNNL7A`CDClJJ rhѿNNPCl?VBK7?RBp= ף?i word earthlyJJ-?NN-i-1 word forcedNNClɿNNPCl?i+1 word europe VB|?5^NNnNNSSNNPx&@NNPSJ +RBA`"VBNNbX9?VBP5^I ۿJJK7A`IN&1@i-2 word shrewdlyNNSMNNM?i word appreciationNNx&1?JJx&1i word seeminglyNNMbRBB`" @NNPS-JJ- i suffix hraJJPnNNPn?i+1 word liturgyNNP}?5^I?NNPSHzGٿNNV- i suffix chsNNSCl?NNCli-1 word changesCCL7A`?VBPL7A`VBN1ZdNNVBDV-?i+2 word acceptsPRPv/CDv/?i-2 word shareholdersJJp= ףNNh|?5@VBDx&?VBN7A`?VBPx&1RB(\NNPMb?VBGZd;i-1 tag+i word NNP holdingVBG`"@NNI +JJ!rhNNPGz?i word outperformsVBZjt?VBDPnINQi-1 tag+i word NNP comeVBPS?VBN"~?NNGzJJ/$VBEi word steadilyRB{Gz@JJ{Gzi word shiftingVBG r?NN ri-2 word receivesNNS9v?NN9vڿi+1 suffix affNNPSK׿JJ|?5^@NNx&CD+?RBS㥛NNSGzNNP-i-1 tag+i word DT seniorityNNS?JJSi word fondestJJSMb?JJMbi-1 tag+i word DT aspectsNNSV-?NNV-i-1 tag+i word CC sophisticatedJJK7A?VBDK7Ai-1 tag+i word TO explicitlyVBjtRBjt?i-1 tag+i word CC dopeNNK7?JJ+VBPh|?5޿i-2 word smallJJA`"@WDTʡE?DT|?5^RBT㥛 NNSI +NNPS(\µVBZClVB/$NNJ +VBDxVBNx?VBPQINB`"۹?NNPw/? i-2 word todtVBN ףp= ?JJ ףp= ׿i-1 tag+i word ( secondaryJJV-?NNPV- i+1 word tearWDTZd;INB`"VBP#~j@ i word hatredVBNGzֿNNK7A`?JJʡEi-1 tag+i word NN agricultureNNSV-NNV-? i-2 word stopVBGL7A`?JJn?NN#~jԿVBN}?5^IԿRB"~IN"~?VBK7i-1 tag+i word VBZ boeingVBGx&1ȿNNPx&1?i word profoundRBrh|VBNK7JJS㥛 @NNw/i-2 word curtainVBGZd;OJJZd;O?i-1 tag+i word NN matingVBGDlNNDl?i-2 word romanNNT㥛 VBN|?5^RBRQJJR rh?NNPT㥛 ?i+1 suffix oks VBGZd;VBD}?5^IWDT"~?RBINy&1?JJT㥛 ?NN+?POS(\?VBP㥛 ?VBZ(\i-1 tag+i word CC sillyJJ$C?RB$C i+2 word wordVBP?5^I NNSxJJ\(\?NNI +?VB?5^I ?i-1 tag+i word -START- seagramNNx&1NNPx&1?i-2 word balloonedRBR(\?JJR(\i+2 word chrisJJ`"?NNP`"i-1 word brokeJJMbINy&1?RBjt?RPv/?NN(\i+2 word marks VBZI +?VBGzVBGZd;ORBʡERPZd;ONNPnٿVBD$CJJMbX9?IN}?5^I@NNSL7A`? i+1 word abRB}?5^INNP}?5^I? i-2 word tongJJK7A?NNK7A i-1 word rigVBN^I +?NNClٿVBDNbX9ȿi-1 tag+i word TO leaveVB r?RB-NN= ףp= i-2 word meetNN'1ZVBNK?CDbX9?JJL7A`DT&1NNS+?NNPL7A` @VBG/$?i+2 word economistsNNʡE?JJʡEi+1 suffix xieVBG}?5^INN}?5^I?i+2 word restructuringJJ333333VBD!rhVBN!rh?RBy&1INy&1?VBG333333?i-1 tag+i word -START- negativeJJZd;O?CDZd;Oi-1 tag+i word NNP beginVBףp= ?VBPx&NNI +i-1 tag+i word DT suburbanJJZd;O?NNZd;Oi-1 word lengthyNN/$CD/$?i+1 word preclearanceVBP/$?JJ/$i-1 tag+i word VBZ surveyedVBNm?JJmi-1 tag+i word JJ linkedVBNX9vVBDX9v?i-1 tag+i word RB cosmeticJJDlNNDl?i word capitalizedNNSbX9NNzGVBD/$?VBNbX9?JJzG?VBZ/$i-1 tag+i word JJ cookingJJ&1VBG\(\NNn?i-2 word susceptibleVBSNNS?i-1 tag+i word JJ policeNNS/$?NNMb?JJtVi-1 tag+i word JJ outINMbX9RP"~jNNK7RB= ףp=?i+2 word revcoNNSI +?VBNI +NNPnNNPPn?i-1 word achievingNNS+?RB+i-1 tag+i word WDT forcedVBNn?VBDni-1 tag+i word JJ offensiveJJuVNNuV? i word eduardRB ףp= NNP ףp= ?i-1 tag+i word DT stopgapNNMbX?JJMbXi-1 tag+i word IN proJJQFWQ?i+2 word falloutRPNNS?INV-ҿi-1 tag+i word NN lobbiesNNS333333?JJ333333i-1 word armedNNPSףp= ?NNSsh|??NN/$JJy&1NNPףp= i-1 tag+i word VBG collateralNNx@JJREJJNbX9 i-2 word pallVBNI +ƿVBDI +?i-1 tag+i word POS renownedVBN/$JJ/$?i-1 tag+i word CC induceVBK?VBPKi+1 word recipientsNNS7A`?NN(\?JJV- i-2 word blocWDTCl?VBN`"RB`"?INCli+2 word basicallyVBGQNN333333?JJzGi-2 word scribblersVBDX9v?VBNX9vi-1 tag+i word NNS affairNN7A`?RB7A`ҿi-1 tag+i word JJS textileNNtV?JJtVi word daughterJJR&1NN&1?i+1 word silvaNNX9v?JJ-NNP~jtx?i word baltimoreNNPp= ף?NN7A`IN!rhܿi-2 word nevadaVBGbX9?NNbX9 i-1 word rosyNNSOn?NNOni-1 tag+i word IN delegatingNN|?5^ڿVBG|?5^? i-2 word ill.JJh|?5VBDx&1ܿNNS= ףp=?NNv/?i-1 word rivals VBNT㥛 WDT rIN/$VBZd;ODTn?VBV-@VBDT㥛 ?NN(\VBP#~j?i-1 tag+i word DT radarNNS/$NNl?JJMbi-1 tag+i word , edgedVBDm?VBNmͿi-2 word similarlyVBZ +RP/$?JJ +?IN/$i-1 tag+i word , coinJJQNNPQ?i+2 word confirmingNN1ZdӿNNP1Zd? i word nervesVBZS㥛NNSZd;O@PRPx&RBSi-1 tag+i word CC plansNNV-VBZ5^I ˿NNSMbX?i-1 tag+i word JJ fujisNNPS?NN/$NNPV-i+2 word wichitaNNPSrh|?NNSrh|߿i+2 word numberVBDuVտVBNuV?VBPRB/$IN rVBZS㥛?DT/$?i-1 tag+i word NN increaseVBP(\NN+@JJʡECC(\i-1 tag+i word DT spateNNS?JJSi+1 suffix ussVB+NNP+?i-1 tag+i word VBZ audiencesVBD+NNS+?i+2 word shouldNNPS(\VBGˡE?CD/$?VBP +?PRP/$ۿRBClNNSV-@NNPjtNNQVBDB`"?JJK7A`?IN/$?DT/$VBK7A`VBNjt i+1 word seenNNCl?VBDx&1VBZClMDx&1?i+1 word agreeingNNS|?5^NN|?5^?i-1 tag+i word NNP followingVBGGz?JJGzi-1 word jenretteNNPS|?5^NNP|?5^?%i-1 tag+i word -START- czechoslovakiaNN-NNP-?i-1 tag+i word NNP jointJJl?NNli-1 tag+i word TO hurricaneNNJ +?VBJ +i-1 tag+i word NNP cornersNNPS?NNPi word stringentJJ&1?NN&1i-1 tag+i word JJ talksNNSףp= ?JJZd;RB+ i word shoeNNS +NN +?i+2 word meltzerNN{GzNNP{Gz? i suffix FDANN&1NNP&1?i-2 word determineVBGrh|?NNSʡE޿NN rJJx&1?i-1 word hackerVBNʡENNʡEVBD|?5^?i-1 tag+i word PRP sawVBPˡEVBDˡE@i word tinkeringNNA`"VBGA`"?i-1 suffix iraNNSsh|??NN-?IN9vNNPp= ף?VBP/$i-1 tag+i word VBN noDTX9v?RB;On?INffffffi-1 tag+i word DT eurobondNN?NNP i word low VBxRBQ@NNVBDvJJRX9vVBPffffffINHzGVBN(\JJ!rh-$@VBZni-1 tag+i word , unocalJJˡEԿNNPˡE? i+2 word a.m.RBjt?INjti-1 tag+i word DT lumberNNl?NNPlڿi+2 word gangstersVBPClVBNK7A?VBDp= ףi-2 word inauguralRBR'1Z?RB'1Zi-1 tag+i word IN fundNN-?JJ-ֿi-1 tag+i word DT neighboringVBGZd;O?NN$CJJK7A`?i+2 word being NNPS;On?VBNnRB%C@VBZ333333?NNSZd;?NNPʡEVB}?5^IܿJJDlNN5^I ?JJSZd;RBSy&1?INZd; i word warnedVBZ+VBPV-VBNMb?JJSVBD@i-1 tag+i word VBP invalidNNS㥛 VBNX9vJJ~jt?i tag+i-2 tag IN )NNPffffffֿVBG?JJV-NNrh| @CDZd;RB7A`?NNSS㥛i-1 tag+i word VBD canadianJJʡE?NNPʡEi-2 word orderedVBq= ףp?NNClѿJJSNbX9RBPnпDTPn?NNP|?5^? i suffix oes VB/$JJzGCC#~jVBNK7A`ݿJJR{GzIN"~NNQx VBP +RBJ +VBZZd;O @NNS rh%@NNP?5^I i word stimulusVBDKNNMb@JJQi-2 word sensitiveJJRrh|?RBZd;?NNSl?VBlNNrh|VBDjtVBN'1Z?i-1 tag+i word PRP$ chiefNN}?5^I?JJ}?5^Iܿi-1 tag+i word DT televisedVBNʡE?JJʡEi+2 word animalsVBV-NNSV-? i word costsVBZ9v?NNSCl?NNʡEi+1 word broughtJJRBR ףp= PRPGz?RB ףp= ?NNS\(\NNPjtNNPSjt?i-2 word blackmailedJJV-?NNPV- i word sickNN +VBPZd;OJJV-@ i+1 word wildCDOnCCOn?VBZ+?NNS+i-1 word singleRBS +?JJS +޿NNCl?JJMbX9ԿCDV-i word streamsNNS?NNпi-2 word betweenNNPS!rhVBGrh|?NNRQJJV-NNSQNNP%C @i-1 tag+i word NNS remedyRBDlNNDl?i word mollifyVBq= ףp?NNq= ףpi-1 tag+i word VBG rampantJJl?NNli-1 tag+i word NNS adjusterVBNsh|?NNsh|??i+2 word retentionVBZ#~jNNS#~j?i-2 word inventoriesRBZd;ONNMbVBGMb?JJZd;O?i-2 word leadership VBN rhݿCD+IN+?RPʡE@NNPS?VBGSJJ rh?VBP +RBi word southeasternJJ#~j?NN#~ji-1 word warsawNNClNNPCl?i-2 word sharplyNNJ +?JJJ +i-1 tag+i word NN peculiarVBP rȿJJM@NNZd;Oi-1 tag+i word WP seeksVBZZd;O?VBPZd;Oi word playhouseRB rhNNP rh?i+1 word pactsVBrh|?JJrh|i-1 tag+i word , notesNNSMbXVBZMbX?i+1 word sympathiesNN +?JJ +޿ i word oceansNNPSNNS?i-1 tag+i word NNP bringsVBZJ +?VBPJ +i-1 tag+i word WDT brieflyNNMbX9?VBDMbX9i-1 tag+i word `` fiveNNlCDl?i-1 word circledRBh|?5?VBNDlNN/$տi tag+i-2 tag WRB RPVBN%C?VBD%Ci-1 tag+i word RB substituteVB+NN+?i-1 suffix bly VBNX9vRBʡEIN9v?NNSK߿VB/$?JJSVBDjt@VBPjt?VBZv/?VBGʡE?NNRQRBR&1@JJRMbXi-2 word capableVBGA`"?JJv/NNQi-1 suffix did RB/$?RBRMVBPX9vUHL7A`INV-VB"@VBGA`"NN(\?JJRM?VBNʡEJJsh|?NNPxi-1 tag+i word -START- grimmNNX9v?RBv/NNPrh|׿i-1 tag+i word CD finnishNNS rhͿJJQ?NNP"~i-1 tag+i word IN franklinNN;OnҿNNP;On? i+1 word .270NNRQ?JJRQi word samovarsNNSZd;O?JJZd;Oi-1 word givesNNv?RBv i suffix ISCJJʡERBʡENNPʡE?i-1 tag+i word JJ hatsNNS;On?NN;Oni-1 word dutchVBP/$?JJrh|NNMbX9?FWoʡi+2 word replicatedVBP(\NN(\?i-1 tag+i word RBR builtNN333333VBNtV?RBzGҿ i-1 tag+i word -START- intensivePRP$1ZdVBNףp= JJ{Gz@NNPQi-1 tag+i word VBG launchNNn?JJni-2 word viewsJJRV-VBP-RB(\VB-?JJ(\?RBRV-?i-2 word fullyRBl?RPl i+2 word m.NN$CۿNNP$C?i-1 word gloomyVBDOnVBZ-ֿNNS-?NNOn?i-1 word wholeVBZ}?5^INNSuVͿNN;On@JJ|?5^?NNPK7i-1 tag+i word NN fearsNNS(\?RB(\i-1 tag+i word RB worriesVBZzG?NNSzGi word replasterJJsh|?VBjt@JJRx&1NNmݿi-1 tag+i word VBZ offRP RB/$?INS㥛@i-2 word hubbardNNM?JJMi-1 tag+i word JJ dollarNNy&1?JJy&1NNPy&1i word politicallyRBZd;?JJZd;i-1 word chaptersVBDMbINMb?i-1 word aboveNN?5^I ?JJ?5^I i-1 tag+i word POS tougherPRP$&1JJR&1? i+2 word dawnVBP%C?NN+RBHzGi-1 suffix ail VBZJ +DTRQ?NN rh@VBNK7A@VBDK7AVBP+WDTRQRBMINHzG?NNSX9v?RPHzGJJS㥛i+2 word subcontractJJX9vNNPX9v?i-1 tag+i word DT dogNNSv/ݿNNv/? i word dulyVBZ(\RB(\?i-1 word carriesJJv/?DTq= ףp?NNSK7NNK7?VBNjt?VBPZd;UHq= ףpͿi-2 word timorousVBGS?NNSi-1 tag+i word VBP openingVBG#~j?NNPnJJ!rhi+2 word recoveryVBP rh@JJ rhi-1 word machineVBZ ףp= ?NNSJ +?NNnѿRB ףp= INx&1i-1 tag+i word NN containsVBZ1Zd?NNS1Zdӿi-1 tag+i word DT borderVBP$CNN$C?i word irritatedVBNlJJl@i word compliedVBNn?JJnٿi-1 tag+i word DT bowelNNSoʡNNoʡ?i-1 tag+i word DT enemyNN ףp= ?JJ ףp= i-1 word supportingVBZS㥛NNSS㥛? i word swearVBP%C?NN%Ci-2 word hancockRPV-?RBV-Ͽi word communionNNPuV?NNuVi-1 word paranoidNN}?5^I?JJ}?5^Ii-1 tag+i word NNS competeVBl?VBP{GzJJClNN(\ҿi-1 tag+i word NN crewRBw/NN(\?VBN-i-1 tag+i word , referringVBGCl?NNCli+1 word killingsJJS?NNd;ORBx&1пi-1 tag+i word JJ institutionNN7A`?JJ7A` i suffix EOCNNP~jt?NN~jtÿ i pref1 gVBNV-@NN|?5^@RBx&1?VBGx@RPd;OPRP$CCD`"PRP$ ףp= FW5^I ?WDTZd;OVBZ-?DTSտPOSZd;NNSZd;O @VB+@NNPS$CJJRףp= VBPx&1@JJ^I +@VBD@NNPy&1,*RBSClRBR'1ZIN~jtJJSCl?UH#~ji word antisonyJJGz?NNGzi-1 tag+i word VBZ inclinedJJA`"VBNA`"?i+1 word punishmentRBR~jtJJNbX9 @NNףp= i-1 suffix eroNNuV?JJR"~jJJ{Gzi word disappointmentsNNSS㥛?VBZS㥛i word visibleJJS㥛?RB+NN|?5^ i+2 word quitNNGzNNPGz? i word planVBDSVBP1Zd@JJ/$VBZClNNSoʡNNPq= ףpVB?5^I ?NN +@ i word tweedNN㥛 ?JJ㥛 i-1 tag+i word JJ cineplexNNZd;ONNPZd;O?i-1 tag+i word VBN imitateVBPGz?NNGzi-1 tag+i word : sheerNNQ?VBQӿi-2 word architectureVBNV-?VBDV-i+2 word achievedVBNV-RBV-?i-1 word eschewedJJ!rh?NN!rhi word descentNNGz?NNPGz i+2 word siteJJZd;NNPZd;?i-1 tag+i word DT securityNNPnNNPPn? i word lunchDT"~jNNQ@VB#~jJJ"~ji-1 tag+i word DT industrywideJJ\(\?NN\(\i word shadowingVBG|?5^?NN|?5^i-1 tag+i word PRP announcedVBZjtVBDjt?i word venezuelaNN{GzܿRBlҿNNPʡE?i-1 tag+i word NN slashingVBGZd;?NNZd;i+1 word proseJJSw/JJQ?NN㥛 i+2 word waterfallVBV-VBNV-?i-1 tag+i word VBP fuelVBP'1ZNN'1Z?i-1 word decadeRBuV?JJS˿IN&1i-1 tag+i word VB angryNNST㥛 JJT㥛 ?i word cherubsJJHzGNNSHzG?i-1 word bryantNN}?5^I̿NNP}?5^I?i-1 tag+i word VB easyJJw/?RBw/i-1 tag+i word JJ improvedVBN9v?JJ9vi-2 word eventRBʡENNjt?JJjtINʡE?i-1 tag+i word NN squabbleNNGz?JJGz i+2 word ``FW#~jRBS㥛?NNPSV-?VBG7A` VBDx&1@VBN?5^I PDTX9v?RBSZd;?INp= ףпUH9vVBZ%C@NNGz?NNSNbX9JJS+?NNP&1?CDl?JJRףp= ?VB/$@VBP|?5^?RP333333RBR+WDTJ +JJFxPOS?CCvDT7A```i+2 word provedVBP1Zd?JJ#~j?NNS!rh?NNP/$ۿVBClNNPSV-¿NN~jtx? i word earnVBCl绿VBP;On@RB/$VBDףp= VBZK7Ai-1 tag+i word NN pcNN;On?NNP;Oni-1 tag+i word VBD sexistJJy&1?NNy&1i-1 tag+i word VBG exportNNZd;?JJZd;׿i-1 tag+i word NNP woodruffMDX9vNNPX9v?i+2 word vietnameseJJq= ףpNNPq= ףp@i-1 tag+i word NNP ls400NNMb@NNPMbi-1 tag+i word VBD ballooningVBG+?IN+i+1 word declineJJR?VBN+RBS㥛NNPX9vJJ)\(?NNSJJSQ?i word ladislavNNP&1?RB&1 i+1 word w.a.CCKNNK?i+1 word sheetVBDNbX9JJMbX9@NNS ףp= VBNDlٿNN'1Z i+1 word ltvNNPMbXVBNtVJJMbX?INtV?i-2 word comparableVBG/$JJx&ѿNNQ?i-2 word agricultureNNʡENNPʡE?i-1 tag+i word -START- maggieNNS9vNNP9v?i-1 tag+i word DT proteinNNw/?JJw/ܿi+2 word preventsNNSˡENNˡE? i word eatingNNRQ?JJK7A?VBG^I + i-2 word echoNNPS㥛 NNP㥛 ?i+2 word proceduresNNPy&1?VBPRQ?NNy&1JJRQi-1 word elsewhereDT9vʿRBx&1ܿINy&1?i-1 tag+i word : nobodyNNS?JJSi-1 word frugalNNPSʡENNSʡE? i suffix ethVBZl@NNST㥛 ?NNˡE JJy&1NNPHzG?i-1 tag+i word CC dreamsNNSy&1?VBy&1i word academePRPʡENN?5^I ?VBDMbi+2 word diplomatsWDTK7A`INK7A`? i+2 word ruthNN^I +?RB^I +ǿi-1 tag+i word RB drivenVBN|?5^?JJ|?5^ҿi+1 word nuanceJJq= ףp?NNq= ףpͿi-1 tag+i word NNP euroissuesNNSS?NNPSݿi+2 word midlerDTB`"INB`"?NNS㥛NNPS㥛?i-1 tag+i word VBG nonrecurringVBG)\(JJ)\(?i word calgaryJJQNNPQ?i+1 word bensonNN$CNNP$C? i+1 word did RBS㥛?NNK7@CCsh|??JJ\(\ INKNNSS?NNPS333333 @RPʡEVBNZd;WDTw/?WRB~jt?DT"~ʿNNPCli-2 word positioningVBGQ޿NNQ?i-1 word sheddingNNS{GzNNS?CDh|?5 i word clunkyNNS rhѿJJV-?NNI +FWoʡi-1 tag+i word IN involvedJJ|?5^VBD|?5^?i-1 word strayNNV-?INV- i+2 word weekSYMʡE?RPQVBNX9v@DTZd; @NNPy&1?VBG%C?VBD#~j?CC|?5^RB9v@NNFx?NNS= ףp=@WDTV-RBRh|?5JJRsh|?VBZ +VBPMWRBVBx&JJoʡIN-i-1 tag+i word NN loadedVBDVBN?i-1 tag+i word JJ filesNNSZd;O?JJZd;Oտi-2 word majorsCDCl?VBDClVBx&ѿVBPK7A?NNSCli+2 word deathJJ(\?VBG(\?VBN(\NN(\i+1 word earningNN`"?JJ`"i-1 tag+i word DT hemorrhagingVBG`"޿JJ= ףp=@NN#~ji-1 tag+i word CD allegedVBN7A`¿VBD7A`?i-1 tag+i word CC puertoNNPSK7NNPK7?i word socialismVBjtNNK7A?JJ"~i-1 tag+i word DT sheratonNNPh|?5?JJh|?5i+2 word important VBEPOSʡEVBNMbпRBVBZM?DTSJJzGVBDMb?PDTMbX9?VBPE?WDTS?IN?i-1 suffix utoNN(\VBZ9vNNSx&1?NNPy&1NNPSn?VBG7A` i suffix bopJJ+NNP+?i-1 tag+i word VBG throughRBRx&1INx&1?i-1 tag+i word RBR deiJJV-FWV-? i word lawnNNJ + @JJ rhRBR+VB5^I ˿ i+2 word bookNN}?5^IJJx&1VBD}?5^I?VBZd;?VBP;Oni-2 word hammondPRP$|?5^?RB|?5^i word requestsVBZx&VBףp= NNSh|?5@i-1 word accordRBCl?VBG rh?RBRClNN rhi-1 tag+i word IN spyingVBGʡE?JJʡE޿i+2 word stimulatorsINn?RBnҿi word workplaceJJm?NNmi+2 word renewalRP+?RB+i word listeningJJףp= NN r?VBGV-?i-1 tag+i word PRP becomeVB{GzVBP\(\?VBDQi-1 word occupiesVBPI +NN}?5^I?RBjtԿi-1 tag+i word : railroadNNPS㥛NNPSOnNNQ?i-1 tag+i word IN collectingVBGʡE?NNʡEi-1 tag+i word NN soaredVBN= ףp=VBD= ףp=?i+1 word shapeVBGV-NNv/տJJRJ +?WDTClJJK7A`?INCl?i-1 tag+i word IN challengingVBG#~jJJn?NN +i-1 word transportationINVBD)\(JJCl@NN~jti tag+i-2 tag NNPS NNVBZx?VBPxVBN+NNP+?i word studiedVBNV-?RB(\VBD= ףp=i word stardomNN\(\?RB\(\i-1 tag+i word NNP stateNNPSNNP?i-1 word rivalJJq= ףp?VBNA`"NNX9vi-2 word taken IN㥛 VBNףp= RBRˡEJJK7A@JJRbX9 @NNS{GzVB{GzVBGuVRB7A`?NNZd;VBZ`"?i-1 tag+i word VBZ flawsVBNxNNSx?i-1 tag+i word NN methodNNS333333NN333333?i+1 word startingJJ)\(IN(\?CCxVBPx?VBN|?5^?i-1 word bolognaVBDn?VBPni+1 word orderlyVB rh?JJR rhi-1 tag+i word JJ associatedVBNK7?JJK7i-1 word leaveVBGZd;VBNK7?JJ|?5^?NNP7A`? i suffix DsNNS rh?NNP rhi-2 word sparksNNd;O?NNPd;Oi-1 tag+i word IN operatingVBGNbX94NNʡE @NNP r@ i suffix resJJR\(\RBB`"NNS㥛 p-@VBCl NNPS/$@JJS%VBDClRPMbNN &VBP-VBZl*@VBNffffffEXtVNNPbX9HVBGRQi-1 word dullishVBZ/$NNS/$?i+1 word index VBGx&?NN`"CDzGJJ ףp= ?DT;On?NNSlNNPQ@NNPSףp= VBDq= ףpտVBNA`"WDTʡEIN= ףp=ڿi+1 word loopholeVBGʡEJJy&1?NNOni+1 suffix felVBN$CNNP$C?i-1 suffix itsVBy&1JJS9v?RBSbX9?VBZrh|NN)\(?VBD%CJJRx&?CDT㥛 NNSA`"?NNPS333333?RBR+VBNCl@VBPGz?JJ~jtDTZd;VBG+?RB(\?CCoʡ?WDT`"IN;OnڿNNPx&1?i+2 word traviataVBG!rhJJq= ףp?NNʡEi word switchingVBG|?5^?NN|?5^ɿi-2 word spateNNq= ףp?JJq= ףpi-1 tag+i word DT astronomerNNX9v?JJX9vi-1 tag+i word -START- fromMDZd;VBINQ @NNP+i word dickensNNS+NN'1ZܿNNPOn?i-1 tag+i word -START- furtherJJx&1?NNSMbXRBR(\ݿRBZd;@NNPI +i word wardensVBZGzNNSQ?NN(\i+1 suffix ndaJJ(\?INS㥛?NNSףp= ӿNNP$CRBL7A`尿VBDX9vֿCC-VBNd;O?i+2 word heterogeneousJJ(\?NNV-߿NNP&1i-1 word brokerageNNq= ףp @JJK7NNPQVBZvi word vaccineJJK7A`NNS rNN!rh?i-1 tag+i word DT appointedVBNK7ٿJJK7?i-1 tag+i word PRP$ investmentNN{Gz?NNP{Gzi-1 tag+i word DT fanfareNNMb?JJMbi-1 tag+i word CC restructuredVBN!rh?JJ!rhܿi-1 word belgiumVBPn@NNx&1VBD rhݿi+1 word beneficialJJRCl׿RBM?RBSv/?JJSv/VBNZd;ORBRCl?JJp= ף?i-1 word watchersVBK7A`VBPK7A`?i-1 tag+i word CC streamlineJJ rhNNZd;׿VBS㥛?i+2 word rennieJJ/$?NN/$޿i-1 tag+i word JJ muchRBZd;O?JJZd;Oi+1 suffix iveRBn @NNS`"?PDT9vCDx&1?IN+JJSI +FWjt?POS"~j?JJRSRPX9v?NN~jtRBRF@VBDX9v?DTjtVBPMb?JJʡE?CCQRBS(\B@NNPSnVBGX9vVBN1ZdNNPFx?VBZd;ϿWDTS㥛?VBZi+1 word overbuildingJJʡE?NNʡEi-1 tag+i word VBD goodJJ +?RB +i+1 suffix urgINd;O?NNy&1JJK7NNPjt i word zipserNNx&1NNPx&1?i word renoirsNNPS|?5^?NNP|?5^ i word have RBMNN333333JJ?NNSv/NNPʡEVBV-2@VBDMbX9VBP(\µ$@VBZCl i word noiseNN'1Z@JJ(\RBPnINtV i-1 tag+i word -START- brazilianNNPSrh|JJrh|?i-1 tag+i word IN chromosomeNN9v @VBN= ףp=JJ$V-i-1 tag+i word VBZ developingVBGV-?VBZV- i-2 word co.NNףp= VBP|?5^?NNP5^I @NNPSMbX9VBGtV?JJK7VBN ףp= ?INx?VBZ/$?DT/$ѿVB(\VBD^I +?WDTI +RB|?5^NNSq= ףpi-1 word rejectedINM?RBDl?JJ}?5^INNP/$ÿi+2 word superimposedNNK?JJK߿i+2 word hellerRBV-VBDV-?i-1 word yieldedRBV-?INV-i+1 word adjustmentsVBCl?VBGA`"ۿNNZd;OJJR-JJL7A`?NNSK7?i-1 tag+i word DT studyNNtV@NNS(\VBNy&1̿JJ-NNPQ?i-1 tag+i word NNP clearedNN$CVBD$C? i-2 word fiveVBG|?5^?VBZ= ףp=INRQRBR-?VBN/$?VBPw/JJRS?NN9v@VBDbX9ֿCCoʡ?NNPSffffff?JJZd;RB^I +NNSX9v?NNPNbX9 i word suisseNNPSS㥛NNPS㥛?i+2 word repaymentVBNX9v?VBDX9vi-1 tag+i word CC bookingVBGZd;O?NNZd;Oݿi-1 tag+i word TO obscureVBV-?JJV-i+1 word loopholesNNSV-VBZV-?i+2 word calculateVBN9v?VBD9vi+2 word radzyminJJK@RBK i word broke INDlDT(\RB(\?JJRʡEۿJJrh|VBD'1Z@VBPNNSMbVBV-RP/$NNtVi-1 tag+i word JJ doubtNNSClNNCl? i word pollyRBK7A`NNPK7A`@i-2 word surgeryVBP rh@JJ rhi word championVBP333333?NN333333i-1 tag+i word CD gardenNNtV?JJtV i+1 word spotJJSQ?JJ^I +?NN%Ci+2 word agricultureINˡE?VBDףp= VBZ/$ i word trailsVBZ~jt?WDT~jt i-1 word saidRBV-WDTtVVB)\(CCsh|?VBN㥛 ?VBZzG?DTuVIN)\(?JJ/$?NNPS)\(?VBD'1ZRPffffffNNS?5^I ?PDT(\?RBR~jt?UHzG?PRP$/$@JJR%CEXS@JJS rh?CDoʡſVBG rhVBPtV?NNPnؿPRP-ֿNNPS?RBS rhi-1 tag+i word IN medicareNN^I +NNP^I +?i-1 tag+i word JJ sterilesNNSV-?JJV- i-2 word 'emVBZ(\NNP(\?i+1 word indicateNNSZd;?JJZd;i+1 suffix dge VBG&1WDTx&1JJNNS(\@NNPK?NNPSZd;RBQտNNQ?INzG?VBZA`"ۿDTtV?i-1 word whereasRBSʡEJJSʡE?i-1 tag+i word IN homelessJJʡE?NNʡEi word nonrecurringVBG)\(JJ)\(?i-1 tag+i word NN plateauNNS㥛?VBZS㥛 i-2 word ms.VBZZd;O?NNSx&?NNPClJJ+NNzGVBDMb@PRPx&1?RB+i-1 tag+i word NN representVBPGz?NNGzi-1 tag+i word ( sayVBV-VBP333333UH㥛 ?i-1 tag+i word DT flawsNNSNNSS?i word continuousNNK7NNS{GzJJV-? i suffix 1thJJFx?CDFxi+1 word injunctionJJ1Zd?NN1Zd i word m'bowJJ+NNP+?i-2 word throughoutJJ;On?RB;OnCDSNNSS?i-1 tag+i word NNP teamsNNSCl?VBDCl i pref1 jVBG r?NNP$$NNPSK7JJCl?VBDvϿFWClRB rhVBX9vϿVBNFxRBRZd;VBPV-?INKVBZ|?5^?NNS ףp= @NNlq!@i-2 word jailedNNQ?JJQi tag+i-2 tag TO INNNSʡE?NNPX9v?VBL7A`尿RB%CNNsh|?JJsh|??IN rh?DTx?i-1 tag+i word RB feltVBZd;OJJ+VBDHzG?i-1 tag+i word NN orCC~jt?IN~jtпi-1 tag+i word VBZ yoshioJJ/$NNP/$?i-1 tag+i word NN donationsNNQѿNNSQ?i+2 word fabianNNnNNPn?i-1 word crisesNNI +VB%C@VBP{GzԿRBzGi+1 word selectingNNSV-׿RB= ףp=?NN{Gzi-1 tag+i word NN wheneverWRB^I +?IN^I +i-1 tag+i word DT burningVBG= ףp=?JJ|?5^NNrh|߿i-2 word extentJJd;OVBZDl?NNSDlNNd;O?i-1 tag+i word -START- dennisNNS rhNNNNP rh?i+1 word observersINq= ףpNNP ףp= ߿NNL7A`JJRy&1?RBRy&1JJX9v@i-1 word chineseRP|?5^ѿRB|?5^? i word crampsNNSNbX9?NNNbX9i-1 tag+i word JJ televisedVBN7A`?JJ"~jVBD?5^I i-1 tag+i word VBP leftVBN+?JJ+i+1 word correspondedNNSw/?VBZw/ i word panamaNNPSvNNT㥛 NNP/$@i+2 word covetousVBZ+?VBD+i word nonstopRP7A`¿JJ\(\?NNCli-2 word electedVB/$JJ/$?i-1 tag+i word NNPS earlyJJV-RBV-?i-1 tag+i word JJ oilNNʡENNPʡE?i-1 tag+i word JJ managingVBGJ +@NNZd;OJJK7i-2 word judgmentVBZVBP? i word feelsVBD~jtVBZʡE@VBPQRBZd;Oi-1 tag+i word NN adsNNPSm?VBZmͿi+2 word succeededNNZd;?JJZd;i-1 tag+i word NNP perFW~jt?IN~jt i word fancyNNx&1VBDB`"ɿVBP;OnJJm @i-1 tag+i word NNS opposedVBN\(\?VBD\(\i-1 tag+i word CD canadianVBNrh|NNNNPQ롿JJZd;O@i-1 tag+i word DT decimalJJ/$?NN/$ÿi word earthmovingVBGbX9JJd;O@NNni-2 word offensiveDTuVWDTuV?i-1 word signingVBNjtԿVBDjt?i-1 tag+i word RB uniformlyRBV-?JJV-i word leadingVBGʡE?JJK7@NNmRi-1 tag+i word NNP accusesNNStVVBZtV?i word interpretVBx&1?JJx&1i word mercedesNNSˡENNPˡE? i word behind VBNlVBP/$NNPHzGRP`"@NN'1Z VBDQCCɿJJw/IN5^I !@VBZzGҿVBHzGRB333333@i+1 suffix vieNNGzVBGSJJ/$?i-2 word stephenNNPS5^I NNP5^I ?i-2 word businessmenNNPS +JJCl?NNPZd;O?i+2 word sloanNNPS5^I NNP5^I ?i+1 word bingeVBGV-ҿJJ+?NN/$ÿi-1 tag+i word VBN beveragesNNSPn?VBZPni-1 word separateCD)\(VBPV-JJ(\NNS/$NN/$?VBN333333@i-1 tag+i word IN unfairlyRBX9v?JJX9vi+1 word seriesNNZd;OVBD ףp= VBNx&?CDT㥛 JJA`"?NNP= ףp=@i word assignmentNN333333?JJ333333i-1 tag+i word -START- iraVBN/$RBuVNNPtV?i-1 tag+i word JJ stripNNd;O?NNPCl?NNSoʡi word procterNN"~NNP"~?i word severalCD&1JJ&1@NNPV- RB+NN/$i-1 tag+i word NN hucksteringVBGX9v?NNX9v i suffix pazNNL7A`?JJmNNP?5^I ?RPClٿi-1 word biddersRB~jt?IN~jt i word clueNN$C?JJ$Ci word vacanciesNNSS?VBNS i word dampVBx&JJ~jt?NNZd;Oi-1 tag+i word NN boostsVBZ㥛 ?NNSX9vVBD rhi+1 word anywhereRB333333@VBN{Gz?WDTK7A`JJ{GzԿIN333333DT/$i-1 word basketsVBK7AVBPx&1?FW+ i suffix PAYVB/$?NNP/$i-1 tag+i word JJ nudeJJGz?NNGz߿i word cabinetsNNS9v?NN9vҿi-1 tag+i word RP thatDT-?WDTSRBClINJ +? i word tonyNNS/$JJsh|? @NNrh| NNPv?i-1 tag+i word CC ailingVBGK7A`ݿJJ(\?NNZd;i+1 suffix gonJJ +VBZ;On¿NNP rhNNh|?5?VBP333333PRPףp= ?i+1 word caricaturesJJK7?NNK7AؿVBG^I +i-1 word unpopularJJKNNPK? i word amiraNNSMbNNPMb?i-1 tag+i word NNP fearsVBZDl?NNSDli-1 tag+i word IN incidentNNjt?JJjti+1 word jimmyJJn?NNni-1 word showedRB;OnWDT= ףp=JJFx?IN`"y@RP^I +DT&1?VBGFxi-2 word breakageJJS ףp= ?NN ףp= i+1 word journalJJ}?5^I̿NNS+?NNnٿi-1 tag+i word VB lendingVBGCl@NNCli word describingVBG-?NN-ƿi-1 tag+i word CC worksVBZ +?JJS+NNSQi+2 word stocksVBGp= ף?NNMbX JJS&1ڿNNPoʡNNPS^I +RBSK7?INsh|??DTI +ֿJJv?WRB?5^I VBZv?PDTI +?VBNSRPNbX9?VBP~jt?WDT/$VBGzRBsh|??NNSZd;׿i-1 tag+i word DT tamerJJRCl?NN~jtӿJJvi word insertedVBNV-?VBDV-i-2 word handfulNNPʡEݿJJV-?NN㥛 i word obeisanceVBNNN? i-1 word &NNPSbX9RB\(\NN}?5^I?JJsh|?NNSp= ף?NNPB`"?i word marketingNNSVBQVBGV-NNT㥛Ġ @JJX9vi-1 tag+i word PRP smokeVB(\?VBD(\i+1 word funds VBN?CDbX9JJZd;?VBDV-VBZbX9DT?NNSClNNPK7AVBRQ@VBGh|?5NNffffff@i-1 tag+i word TO administerNNGzVBGz?i+1 word requiemNNQNNPQ? i word whollyRB?5^I ?JJ?5^I i-1 word thisNNMb?NNS +JJx&1?JJSZd;CD rhIN)\(DT$CVB/$VBD{Gz?VBNv?NNP+׿VBZL7A`@JJR"~jMD~jt?VBGK7WDT$C?PRP= ףp=ڿRBli-1 word modernNNSGz?NNQ?JJQ i-2 word alsoRBRV-?JJRMbX?VBP|?5^JJx&1PRPGz߿NNP&1?VB rhINJ +ɿVBD1Zd?DT;OnNNZd;ONNS/$?PDTL7A`VBG`"?NNPS/$UHL7A`CDx&1?VBNHzGVBZHzG?RPA`"RBQ@CC~jt?i-1 tag+i word CC aimsVBZ1Zd?VBy&1NNSGzi+1 word resumedVBGy&1NNCl?NNPX9vi-2 word snortsJJjtNNJ +NNPK7?i-1 tag+i word CC leveragedJJV-?VBNV-i-2 word portfolio RBRzGINQֿNNP-RBjtNNPSCl?VBG!rh?NN/$?JJRzG?VBP/$JJ+߿DT|?5^?VBV-i-2 word southernNNPS\(\@VBPףp= NNS/$?NNP ףp= i-1 tag+i word , foldedVBNCl?VBDCl߿i+1 word chuteNNFx?JJFxٿi-1 tag+i word RB girlsVB~jtؿNNS~jt?i-1 tag+i word VBD designerNNSJ +ɿNNJ +?i-1 tag+i word VB soVBERBE?i+2 word crimes''rh|VBN?5^I ?POSrh|?VBD?5^I i+2 word mazePDT rh?JJ rh i word qvcNNSA`"NNA`"NNPA`"? i+2 word via VBDSJJS㥛?VBZ(\?NNEԸCC$C @VBNS?RBR&1JJR7A`CD/$NNS +NNPV-߿i+1 word infernoJJRjtֿJJjt?i-1 tag+i word VBZ vestedVBN\(\JJ\(\@i-1 tag+i word JJR yieldsNNSA`"?NNA`"ӿi-2 word arbitraryJJjt?NNjtƿi word ancestralVBZ}?5^IܿJJ}?5^I?i+2 word mauriceRB(\NNP(\?i-1 word dairyNNjt?JJjti word authoritarianJJZd;O?RBZd;O i word urbanNNSQJJʡE?NNV-NNPMbX9?i-1 tag+i word , choseVBZPnVBPX9vNNuVVBD5^I @i+2 word felliniNNGz޿NNPGz?i+1 word economistJJZd;ONN;OnNNPV-?i+1 word amortizationVBNzG?JJzGi word garmentNN~jt?JJ~jti-1 tag+i word PRP$ interimNNm?JJmi-1 tag+i word VBP plentyNNSA`"VBN;OnRBT㥛 ?NN+?i-1 tag+i word VBZ nomuraNNGz@NNPGzi-1 tag+i word PRP heardJJ9vVBDMb @VBZI +VBPSi-1 tag+i word NNS addVBPK7?VBNZd;VBD333333i-1 tag+i word VBN busyVBN333333JJ333333? i+2 word getsRBbX9?VBNvJJmտNNʡEտINI +?i-1 tag+i word POS !DIGITSCDp= ף?JJV-?NNy&1NNPS㥛i-1 tag+i word -START- thriftNN/$?JJDlNNPsh|?ݿi+1 suffix rnoJJRjtֿJJjt?i+1 word compromiseJJn?VBHzGNNnRBHzG?i-1 tag+i word WP$ totalJJZd;?NNZd;i word databaseNN r?JJ ri-1 word beingsVBPNNS(\VB(\?VBDjtԿPDT(\VBNjt?i word breakupNNSZd;OVBNoʡNNx&1@i-1 tag+i word NNS improvedVBN-?VBD-i-1 tag+i word JJ workaholicNNʡEJJʡE?i-1 tag+i word CC sorghumNNMbX?RBMbXѿi-1 tag+i word DT clarinetNNMb?JJMbi-1 word commandingJJ-ۿNN-?i-1 tag+i word JJ hostileNNʡE @JJʡE i tag+i-2 tag VBG INVBPd;O?WDT rWPFxNNmJJR?RBRrh|߿EXMbNNPSL7A`PRP$)\(?VBN5^I ?RBV-?NNS`"PDT-?VBGʡEVBZK7ٿPRP$CNNP$C˿IN333333CC$C?CD/$ֿVBDV-?JJV-տDTzG?RP7A`@VBNbX9ȿi-1 tag+i word RBR painfullyRB rh?JJ rh i word bodiesNNSQ?NNQi+1 word schwartzJJbX9NNPbX9?i+1 word mitsubishiRP?5^I ҿRB?5^I ? i word ratJJxNNx?i-1 word possiblyJJ㥛 VB +@NNuVRBRuV?JJRuVVBP(\i+2 word ernestNNS~jt?NN~jti-2 word contractNNA`"@WDTV-߿NNSKNNPRQؿRBRX9vJJR/$VBN/$?RB$C?INʡEƿVBZtV?VB;OnڿVBG5^I ?JJzGVBD/$CC/$?i-1 tag+i word NNS tableNN~jt?RB~jti-1 word stabilizeNNffffff?JJffffff޿i-1 tag+i word RB betterRBR}?5^I?RBMb@JJRDlNNi+1 word casinoVBG/$NNMbX@JJ|?5^i-1 tag+i word IN reofferedVBNK7A`@JJK7A`i+1 word ballwinNNPT㥛 ?NNPST㥛 i-1 tag+i word JJ teddyNNClNNPCl?i-1 tag+i word VBZ explainedVBNSۿJJ-VBDM@i+2 word arafatDT|?5^WDTd;O?NN|?5^?JJ|?5^IN7A`i word offputtingVBGx&1JJx&1? i-2 word p.mNNPSClJJQ?NNPmͿi+2 word glasgowNNPSv?NNSDlNNP~jti-1 tag+i word , announcingVBG!rh?JJ!rhi-1 tag+i word IN mostJJNbX9RBK7@JJSS@NNnRBS~jti-1 tag+i word IN alagoasNNPV-?JJV-ҿi-1 word tinkerRBm?VBDmi-2 word statedVBZZd;O?NNPSZd;Oi+1 word marvelousRBK7?JJK7i+1 word endedCDsh|?VBPS?RBOnNNPX9v?MDQVBSۿJJʡENNZd; @i-1 tag+i word , planningVBGp= ףNNp= ף?i-2 word flightsRP{GzVBNx&1?JJx&1IN{Gz?i-2 word choiceVBNNDl?JJR&1?JJ^I +RBR"~ji+1 word treasurysJJS㥛?VBS㥛i-1 tag+i word VBD moderateJJ5^I ?NN5^I  i suffix ngiNNS~jt?NN~jti tag+i-2 tag DT VBGFWV-RBSsh|?JJv/տNNSbX9JJRjt?VBGV-?NNjt?VBN"~?CD^I + @VBPV-NNPV-INDlѿ$Q?NNPS333333?RBRCl?VBZ~jtRBX9vJJSZd;O?i-1 tag+i word CC smarterVB~jtRBRK?JJA`" i-2 word craVBNI +ֿJJI +?i-1 tag+i word VBP sleepVBPZd;?NNPZd;i-1 tag+i word CC enoughJJn?RBni-1 tag+i word JJ forecastVBDKNNK?i word envelopesNNS333333?JJ333333i-1 suffix logNNPSX9v?VBG-?NN-NNPX9v i word miffedNNffffffVBDffffff?i-2 word proclaimsVBGx&1JJx&1?i-1 tag+i word VB invitedVBN rh?JJ rhi+1 word alaskaNNQINQ? i word moralJJ9v@RBGzNN1Zdi-1 tag+i word NN unspecifiedNNS'1ZJJʡE?VBD/$޿i-1 tag+i word VBZ capitalNN r?JJ r i-1 word usiVBNK7NNPK7?i-1 tag+i word NNS futureJJMb?NNMbi-1 tag+i word `` withinIN333333?NNP333333i+1 word paperworkVBNK7A?VBDK7Ai-1 tag+i word WP seemVBP1Zd?NN1Zdi-2 word deereJJ?5^I ?NN?5^I ¿i-1 tag+i word DT affiliateNN?5^I ?JJ?5^I i-1 tag+i word NNP marshallNNPSSNNPS?i-1 tag+i word PRP scoreVBP/$?RB/$ i+1 word rowPRP$|?5^ʿJJDl?NNMbX9?RBT㥛 IN333333?NNP rh i suffix oopNNx&1?JJx&1i word restartedVBN|?5^?VBD|?5^i+2 word compromiseRPV-?VBV-i-1 tag+i word DT reservoirNN/$?NNPSjtNNSMҿi-1 tag+i word NNS maulVBDl?VBPQVBD+i-1 word countPRP$S?PRPSi-1 tag+i word DT headacheVBNV-NNV-?i-1 tag+i word JJ faltersVBZL7A`?NNSL7A`i+2 word clocksNNOnNNSOn?i-1 tag+i word RB softenedVBN(\JJ(\?i-1 suffix nksNN rJJ~jtPRP$RQJJR= ףp=ҿVBZףp= VB;On?VBDA`"@RBR= ףp=?VBNPRPRQ?RBjtƿVBPjt?WDTL7A`尿INS㥛DTQ?i-1 tag+i word VBG enoughJJx&1?RBx&1i-1 tag+i word DT presumedJJZd;O?VBDZd;Oi-1 tag+i word VBP welcomeVBNJJ?i-1 word increasesVBy&1JJT㥛 ?NN(\?VBDy&1?RBRZd;?VBN~jtVBPy&1?RBZd; i word skierJJRoʡNNoʡ?i+1 word anymoreVBʡEJJ}?5^INNʡE?RB㥛 ?VBZ'1ZNNS&1?i-1 word mentionedVBNjt?JJjti-1 tag+i word FW boursesFW%CԿNNP%C?i-1 tag+i word NNP prospectusNN9v?JJ9vi-1 word lopsidedCDZd;O@JJNbX9NNi-1 tag+i word DT arabsNNPSK7@NNS= ףp=?NNʡENNP^I + i-1 tag+i word DT russianJJZd;NNPZd;?i-1 tag+i word NNS closerVBPGzRBRGz?i+2 word timberlandsVBZ\(\VBD/$@NNPS㥛i+2 word securitiesNN-޿POSV-?VBN= ףp=JJRS?VBnҿJJ"~j@JJSNbX9?RBx&1INˡE?NNSbX9ȶNNPSx&VBDSNNP&1 @RPˡEVBZʡEi+2 word publicationsVBNSVBDS?i-2 word maloneyJJ/$?CD/$ i-1 word fileNN9vҿINԿRPB`"?NNS9v?RB~jt i suffix rubJJZd;NNZd;?i+1 word traboldCC-NNP-?i-1 word crudeVBNffffff?VBZV-NNSV-?NNPl?NNPSlVBDffffffi-2 word pioneeredNNS~jtNN~jt?i+1 suffix ulfVBZZd;OVBDZd;O?JJ%CNNP%C? i+1 word high NNPS1ZdJJ/$?VBN?RBQ@INx&1 DT~jt?NNPl?VBGtVNNuVVBDB`"VBPsh|??VBZCli+1 word emergesWDTMb?INMbi-1 tag+i word NN managedVBD333333?VBN333333i+1 word providesWDT~jt?RBClIN~jtNNP rh?JJx&1NNB`"۹?i-1 word americaJJ+ۿVBZKNNP+?VBrh|POSK?VBPrh|? i word whackyNN/$JJ/$?i-1 tag+i word VBD northernJJ"~?NN"~ڿ i suffix TERNNPsh|?NNS{GzNN%C@SYM= ףp=CDh|?5i-1 word promotingNN+?NNP+NNS|?5^PRP|?5^?i+2 word estimateWDTClINCl? i suffix pts VBˡEܿNNSsh|?$@VBD+JJ%CIN1ZdVBZ1Z@NNP!rhNNPSS㥛?RB(\NNi+2 word employersVBZ333333?NNP%CNNS#~jJJ%C?INʡE i word errsVBZuV?RBGzVBDw/Կi-1 tag+i word CD flowedNNS)\(VBNjtVBDJ +? i-2 word got VBOn?RPSNNoʡJJR ףp= ?VBN-@INDl?NNSx&NNP1ZdJJffffffRBS㥛?VBGnʿi-1 tag+i word IN noncombatantJJZd;O?NNZd;Oi-1 tag+i word NNP voluntarismNNl?NNP#~jFWx& i word grittyJJ&1?NN&1i word conversionNNP{Gz?NNx&1?JJPni-1 word compositionalNNS+?NN+ i-2 word sowsVBG㥛 ?NN㥛 i word conditionalJJʡE?NN"~jVBNrh|i+1 suffix phyJJx?NNS㥛?NNP"~i-2 word publisherNNPSx&ѿNNPx&?i-1 tag+i word NNS manNNCl?NNPCli-2 word jurisdictionVBGxNNx?i+2 word legislatureNNX9vNNPX9v?i+1 word samplesNNh|?5?JJh|?5i-1 word urgesJJR!rh?RBR!rh i-1 word proJJʡENNy&1FWףp= @RB\(\NNSp= ףNNPli-1 tag+i word POS coreNNq= ףp?JJ(\ؿVBDQٿ i suffix OldNNPn?INni-1 tag+i word RB twiceRB rhVBPSJJn?NN~jti-1 tag+i word -START- citingVBGn?NNPni-2 word minicarsVBGZd;O?JJZd;Oi-1 tag+i word RB diverseVBN7A`JJ7A`?i-2 word documentsVBPQ?VBNI +JJx?VBD!rh?VBZQ i suffix vskJJ?5^I NNP?5^I ?i+2 word galleryVBZQ뱿POSQ?i-2 word headlineVBGCl?NNCl i word linenNNSZd;ONNZd;O?i-1 tag+i word , federatedVBN^I +NNP^I +? i suffix nagNN&1?RB&1i-1 tag+i word IN aetnaNNS +NNx&1?NNP rhi-1 tag+i word CD unnamedJJ'1Z?VBN'1Zi+2 word pictureINFx?VBFxFWClRBR{Gz?JJR{GzJJCl?i word cartoonJJ{GzĿNNPv?NNPSv߿NN{Gz?i word abductionNNMbX9?INMbX9ܿi word curbingNN/$VBG/$?i-1 tag+i word IN chiefNNP?NNI +@JJI +i-1 word tangledRPQRBQ?i-1 tag+i word DT tropicsNNSq= ףpݿNNP%CNNPSS?i-1 tag+i word WDT standNN"~j?RB rhٿVBZnVBP-? i-2 word adsVBN ףp= ?JJw/?VBZS?NNS)\(VB\(\׿RB;OnNNSi-1 suffix vidNN㥛 ?FWCl?JJ rhNNS|?5^ɿNNPZd;?NNPSQ i+1 word sciJJ ףp= ?VBD ףp= i+2 word treesNNS`"?VBN\(\@NN`"VBD\(\i-1 tag+i word WP makeVBZʡEVBPʡE?i+1 word maintainNNP1ZdNNPS1Zd?WDTzG?INzGi-1 tag+i word JJ allyNNn?RBn i word nortonCC"~jNNX9vοNNPtV?i+2 word viewersVBZA`"?JJ5^I ?VBPA`"NNʡERBT㥛 ؿi-1 tag+i word DT faaNN{GzNNP{Gz?i-1 tag+i word , inabilityJJd;OοNNd;O? i suffix vasNNPS @NNPSA`"NN~jt?JJ'1ZDTZd;ONNS/$ i word stripsRBtVJJS㥛VBZS㥛?NNStV?i+1 suffix llsVBпJJV-?RBS?5^I WDTQ@NNP333333@VBD{GzRBRDlJJRK7A`?INK7CDT㥛 NNSV-NNPS\(\VBGOn?NNV-@JJS?5^I ?PDTMbXVBNFxVBP$C?RB/$?WP/$DT + i word bridgeNNS?JJClNNSZd;i-1 word switzerlandVBZsh|?POSsh|??i-1 tag+i word PRP$ neighboursNNMbX9ܿNNSjt?JJGzi-1 tag+i word RB petrochemicalNN(\?JJ(\i-2 word friendlyVBoʡVBPQ?NNMb?VBD&1i-2 word counterpartsNN(\JJ(\?i-1 tag+i word JJ glintNNSʡENNʡE?i+2 word levels INNbX9?VBZ/$VBCl?RPv?JJV-ϿVBNˡE?RBZd;NNB`"JJRʡEVBPʡE?i-1 tag+i word , japaneseINI +NNPSx&1JJd;O?NNP+? i word seeingVBKVBGjt@JJMbi-2 word bronfmanVBNB`"ɿVBDB`"?i-2 word performancesVBPMb?NNS$CNNMbVBZ$C?i-2 word householdVBGv/?NNv/տi-1 tag+i word VBP reducedVBPV-VBNV-?i-1 word lyingINRPFxRBK7?i-1 tag+i word NNS workersNNP333333?IN333333i-1 tag+i word VBZ sinVBNbX9NNPbX9?i-1 tag+i word IN windyNNNNP?i-1 tag+i word NN buildersNNPS9v?NNS9vi+1 suffix astRB= ףp=NNPV-߿VB rh?VBNm@WDT}?5^IVBPxWRBIN}?5^I@RP|?5^NN333333ۿVBZ;OnRBR$C?JJRZd;OVBG~jtJJ!rhFWMڿDTx&@NNPS= ףp=?VBD}?5^I@NNSNbX9i-1 tag+i word DT operaticJJoʡ?NNoʡ i+1 word hk$NN~jtVBG~jt?i-1 tag+i word NNP lotteryNNCl?JJCli word coursesVBZv/NNSB`"?NNQݿ i-2 word ciaNNPSNbX9NNPNbX9?i-1 tag+i word RB continueVBV-?RBV- i word i.e.VBMRB㥛 NN"~FWQ @ i-2 word cueJJ#~jNNGz޿NNPS?i-1 tag+i word CC subjectVBQֿJJK7?NNʡEi+2 word resultedNNS'1Z?NNh|?5?JJ= ףp=i-2 word carriedNN= ףp=VBNS?JJ^I +RBR? i-1 word buyCD7A`?VBNNPSHzGNNClPDTI +?RBRףp= RBB`"DTI +ֿRPx&1?VBNK7IN/$@NNSV-?JJMbX9?JJREȿNNPQ@i-2 word smilingVBG-?NN-i+2 word educationVBPZd;JJ/$?NNSZd;ONNCl@VBDMVBNS㥛ܿ i word vonNN rRBV-NNP\(\@VBZK7A`i word hurdlesVBZClNNSCl?i-1 tag+i word `` wealthyVB^I +ǿJJ^I +? i suffix GetVBPjt?NNPjt i word delayVB(\?NNv/?RB(\VBDv/i-1 tag+i word DT exaggeratedNNPS+JJ+?i-2 word rosesVBN"~jܿJJl?VBDGzi-1 tag+i word DT softeningVBG\(\NN\(\?i word muscularNNQJJQ?i-1 tag+i word NN chefsNNGzVBZ rNNSMb? i word familyRB%CܿNNP%C?i-1 tag+i word POS upscaleJJq= ףp?NNq= ףpݿi-1 tag+i word `` officialJJ?NNi+2 word industrialistsRB r?JJ rȿi-1 suffix hicFWoʡ?NNSGz?NNGz߿JJX9vi tag+i-2 tag VBP -START-INp= ףNNPp= ף?i word uncollaboratedJJ333333?VBD333333i+1 word authorizationJJFx?NNFxɿi-2 word premiumNNP;On?VBPHzGVBGQNNEJJ$C@i-1 tag+i word -START- shortedVBNпJJ?i-2 word genuineJJS?NNSݿIN|?5^WDT|?5^?i word phenomenaNNS~jt?NN~jti-1 tag+i word NNP reportsNNX9vNNPffffffƿVBZjt?NNPSx&1?NNSZd;?i+1 word fencesVBDK7?VBNK7i-1 tag+i word TO promoteVB rh?NN rhѿi-1 tag+i word VBZ mikeNN"~ʿNNP"~?i-1 tag+i word NN girlsVBPOnNNSOn?i-1 tag+i word JJR operatingVBGh|?5NNh|?5? i word citesNNSmVBZm?i-1 tag+i word NNS voteVBPv?VBDvi+1 word indexesNNffffff?JJnJJRbX9?i-1 suffix iusNNP"~?NN"~ i word honedVBN-޿JJ-?i+1 word phineasJJ-?NN5^I ۿFW+i+1 suffix comVBD rhJJ"~jNNPˡE?CCJ +?DTJ + i-1 word alexFWDl?NNClNNP1Zdi+1 word parochialJJRV-RBRV-? i-1 suffix r.NNSJ +NNPJ +?i-1 word preciousVBP"~NNSd;O?NN= ףp=?JJʡENNPL7A`i-1 tag+i word JJ yellowJJHzG?NNHzGi+1 word waveringVBZ+?POS+i-1 tag+i word NNS shotVBP^I +VBN/$@VBDzG i word added VBN~jtRBSNNV-RPX9vJJCl?VBD~jt@INmտNNP9v?VBQi-1 word neighborhoodsINT㥛 ?RPT㥛 i+1 word breederNN^I +?JJR|?5^JJS㥛 i suffix FAANN{GzNNP{Gz? i suffix den NN`"CDPnVBPPRP/$ٿNNP7A`?JJn@@INjtNNSMbVBV-WRB ףp= ׿FWx&1VBD~jtVBNQ@i+2 word birthdayNNPK7A`PRP$KPRPK?JJK7A`?i-1 tag+i word NN quarryNNA`"?JJA`"ۿ i suffix GNPVBL7A`пNN|?5^?NNP/$i-1 word recapitalizationDTw/WDTJ +?INZd;Oi-2 word holdoversJJRJ +?RBRJ +i-2 word renewingNNSZd;NNZd;?i-1 tag+i word IN updatingVBG ףp= ?JJ ףp= i-1 tag+i word -START- criticsNNPSʡENNS(\@RB/$NNPʡEi-1 tag+i word ( italianJJV-?NNPV-i-1 tag+i word VBG pulledVBNn?VBDni+1 word caribouVBNB`"ٿJJB`"?i-2 word studioRP1Zd?RBvIN1Zd?WDT+? i word looksJJ}?5^IVBZ)\@NNS$C?MD-NNDlVBDq= ףpJJRV-RBRK7i-1 tag+i word JJ pleasNNSGz?NNGzi-1 tag+i word , fitsVBZ$C?VBD$Ci-1 tag+i word IN lieuNN|?5^?JJ|?5^i-2 word assortedNNOnNNSOn?i-1 tag+i word CC engagedVBD333333VBZMVBNn? i word mandomNNS㥛NNPS㥛?i-1 tag+i word CC diminishedVBNCl?NN/$VBDX9vi-1 tag+i word DT summitNNCl?JJCli-1 tag+i word DT networksNN +NNS +? i-2 word show NN?5^I VBDnVBNn?WDT&1ʿNNSʡENNPsh|?տRPx@JJM?UHʡE?RBS㥫INw/ĿVBGS㥛 i suffix avy VBNuVUHI +JJx&1@NNSMbRBSJJRT㥛 NNPv@NN(\VBZ㥛 i-1 word trafficNNST㥛 ?VBNʡE?NNT㥛 VBDʡE i+2 word ms. RBHzG?NN(\ @VBDV-VBPV-VBFx?RPHzGVBZGzNNP(\NNPSq= ףp?JJV-i+1 word streetINSNNPMbX9 @JJ\(\?NNjtCDA`" i suffix eshVBNy&1JJR7A`RB)\(NNSh|?5JJ(\B@NN(\ i-2 word deal VBGS㥛?NN1Zd?WDT~jt?JJq= ףpIN~jtRPZd;O@RBQſVBDV-FWMbJJS1ZdVBNV-?i-1 tag+i word -START- beijingVBGˡENN"~NNPQ@i-2 word foughtJJX9v?NNx&1VBD1Zd?i-1 word twaronNN +?JJ(\INV- i+1 word failVBZ%C̿DTS㥛ܿNNS%C?CCS㥛?i tag+i-2 tag VBP :IN{GztDT\(\?VBGS㥛JJMҿNN!rh?VBN'1ZܿRBHzG?i+1 word remarkableRBSzG?JJSzGi+2 word ralliedRB?5^I NNPHzG?NNS?5^I ?NNHzGi+2 word messagesVBPM?RBMi word asbestosVBClRB?5^I NNQ@JJB`"ѿNNS}?5^INNP%Ci-1 word spreeDTd;OWDTd;O? i suffix .26VB/$CD/$?i-1 tag+i word NN showNNOn?VBPh|?5RB1ZdNNS +NNP/$?VBDl?i-1 tag+i word DT baselineJJ9vNNJ +?RBRy&1i-1 tag+i word JJ bnlNNRQNNPRQ?i-1 tag+i word -START- bowingVBGS?NNSi-2 word imperialNNPS"~j?RB5^I ?NNPjtVBZw/Կi-1 tag+i word WRB deepCC^I +JJRB/$? i word hitsVBZ㥛 @VBPClNNSNbX9@NN!rhVBDʡEi-1 tag+i word NNP motherNNGz?JJR㥛 RBq= ףpi-1 tag+i word NN muchJJGz?PRPSRBCl׿i-1 tag+i word PRP$ doubtsNNSDl?NNDli+1 word disclosedNNSffffff?NNPuVNNffffffCCy&1VBNZd;RBZd;?DTd;O@i word vibratingVBG㥛 ?NN㥛 i word czechoslovakiaNN-NNP-?i word franchiseeNNV-@JJrh|VB~jti-2 word soldiersNNP?5^I ?CD?5^I i-1 word minorityVBNZd;NNZd;?i-1 word markusNNX9vNNPX9v?i-1 tag+i word DT riskyJJ`"?RBPnNNʡEi-2 word devaluedVBG"~j?JJ"~ji tag+i-2 tag VBD DTCDrh|׿VBG{Gz?DTQ?VBD(\?NNS9v?VBP+VBZx?RPw/?JJ+?NN= ףp=?PDT(\ȿVBNoʡ?INS㥛VBSRB\(\NNPrh|?i-1 tag+i word JJ locationsNNPSp= ףNNSp= ף?i-1 tag+i word IN sleepNNn?JJnڿi+1 word dictionaryJJClNNPCl?i word sparcstationNN-NNP-?i+2 word accountsVBV-տNNV-VBD~jt?VBNZd;VBPy&1JJSӿNNPZd;@ i word resentVBP`"?VBD`" i+2 word yetVBGʡENN(\?JJ?5^I VBNB`"?i-1 tag+i word JJ souledJJ/$?VBD/$i-1 tag+i word NN declinesVBZ +?NNSI +VBD^I +i-1 tag+i word IN muchNNClRB^I +߿NNS +JJ~jt@i-1 word foundationNNGz?VBPGz׿i-1 tag+i word RB encouragingVBGx&1JJx&1@ i-1 tag+i word -START- witnessesNNSQ?NNPQi-1 tag+i word RBR downwardJJ-?RB-i-1 tag+i word NN rawJJK7?NNK7i-1 tag+i word DT tablemodelNNQ?JJQ뱿i word irregularitiesNN333333NNS333333?i-1 tag+i word IN broadestJJS~jt?JJ~jti-2 word subscribeDTnPDTn?i-1 tag+i word VBZ discountingVBGʡENN1Zd?JJzGi+2 word insteadNNPsh|?տNNPSV-?VBG ףp= RB%C@NN rVBD?5^I ?VBNV-?JJx& i suffix .I.INQNNPQ?i+1 suffix nneNN\(\?VBDPn?VBZ\(\߿VBNPnؿi word permittingVBGp= ף?JJ"~NNbX9i-2 word commentNNP^I +?NN^I +RBPnпINPn? i word subtleVBuVJJ&1?NNʡE޿i word breadedJJ5^I VBN5^I ?i+2 word begin WRBHzGVBDA`"VBNNbX9?NNS-?NNPGz?VBZˡEMDHzG?VBNNPSMNNv?EXffffffֿJJE?i word gatheringNNh|?5@VBPoʡVBGi-1 tag+i word NN freeJJx&1̿NN/$NNP9v?i-1 tag+i word NN assertsNNq= ףpVBZq= ףp?i-1 tag+i word DT spreadNNQ?JJQi-2 word unspecifiedWDT~jtۿIN~jt? i suffix DayNNPSS㥛NNX9vNNPV-?i-1 word poundVBGPnпNN+׿VBDy&1?RBR9vJJR9v?VBNy&1RB)\(?i word misleadingVBGzGJJ@NNRQ i+1 word case NNzG?CCxJJRnPRPV-INd;ODTMbX9@PRP$E?FW(\VBN+JJ;OnNNPFx? i word basketNNP~jt?RBZd;ONN(\@FW+VBP`"JJ +NNS+i+2 word labelsVBZJ +VBP+?VBN(\i+2 word humanaVBZMbX?NNSMbX!i-1 tag+i word JJ reconsiderationNNQ?NNPQi-1 word accumulatedRBCl?JJCl绿i word rectilinearVBPsh|?JJsh|??i word tumbledVBDuV?VBNuV i-1 word airJJ ףp= VBZ{Gz?NNS{Gz?NNPFxNNPS{Gz@NN!rhi word municipalSYMtVJJt@NNS"~NNPjt?VB%CNNI +POSni word addressNNSʡEVB#~j?RBSNNK?VBPd;O?JJ333333INB`"i-1 tag+i word JJ existVBP}?5^I?NN}?5^I i-1 suffix ?''\(\?UHzG?POS\(\NNA`"ۿNNPx&1 i word saltNNS/$޿NN|?5^?JJ|?5^NNP/$? i+1 word oilsVBG/$NNL7A`?JJGz i+2 word leeNNʡE?JJRJJQ i+2 word meltNN333333JJS㥛VBGn@i+1 word correctDT1ZdNNS1Zd?i word philippinesNNP ףp= NNPSx&1@NNS㥛 i word friendsNNPVBZ+NNPS/$@NNSGz?NN+i word committeesVBZ㥛 ҿVBP1ZdNNSx&1?NNPK׿i-1 tag+i word NNP rashNNPSS㥛NNPS㥛?i+2 word governedJJ(\?NN(\ڿi word evaluatesVBZK7?NNSK7i-1 tag+i word TO parVBKNNK@i tag+i-2 tag RB NNSVBPMbX9@VBZv/VBGp= ף@RBR rh?RPnINT㥛 @RB~jt?JJRZd;JJV-NNbX9HVBDuV@DToʡ?VBV-ϿNNS#~j?VBN}?5^Ii+1 suffix gnaNNP +?NN +RBˡEINˡE? i suffix wayJJMbX9FWV-INw/RP"~j@NNSoʡ PDTK7AVBN`"VBP(\VB+CCT㥛 VBD+VBGOnNNPx&?NNPSx&NN+?CDjtUHx&1RBҍ"@VBZI +i-1 tag+i word , pa.VBNtVNNPtV? i+1 word peepNN rhJJ rh?i word rebuttedVBNV-?VBDV- i+2 word bombNNx?JJxi-1 tag+i word PRP knocksVBZB`"?VBDB`" i suffix ratNN`"?JJS㥛NNPffffff@NNS%CԿi-1 tag+i word VBN seriouslyVBN+RB+?i+2 word impactNN333333CC%C@VBPEJJDl?INClDT{Gz?VBʡE?RB+i-2 word trademarkNNS+NN+?i+1 word telecastNNClNNPCl?i-1 word ampleVBNGzNNGz?i-1 tag+i word IN seNNSZd;NN"~jFW/$? i suffix morNNSX9vJJZd;ORB= ףp=JJRI +ֿNNPn@i-2 word policeJJRS?NNS?5^I NNP?5^I ?NN rh?VBDMbпRBRSVBNMb?JJ rhi+1 word palmsVBN"~jܿJJl?VBDGzi-1 tag+i word WDT predatesVBZuV?NNSuVi-1 tag+i word JJ adjustedVBDI +VBN(\JJv@i-1 tag+i word DT airwavesNNSd;O?NNd;O i suffix rusNNHzG@VBD+FWq= ףpJJFxVBZ7A`NNS~jt?i word sophisticatedJJQ@VBDX9vVBNSci+1 word colemanNNP+?FW+i-1 tag+i word NN decidedVBNw/VBDw/?i word appointmentsVBZ/$ݿNNS/$?i-1 tag+i word VBG whileINjtNNjt?i-1 tag+i word NNP emphasizedVBPnVBDn? i+2 word jahnVB|?5^NNP|?5^?i+1 word firedRBˡE?INˡEԿ i-2 word aidsNN333333?VBNףp= ?JJ333333VBDףp= i word statisticsNNK7INZd;NNPK7NNPSDl@NNSn@i-1 word revenue VBN(\RBR-?WDTQ@JJtVINQVBDl?RBCl?NNDlVBD(\?NNSJJR-ƿi+1 word residentialRBʡEJJS㥛ܿNN~jt?VBD/$FWL7A`VBN/$?i-1 tag+i word IN testimonyFWNNMb?JJPn i word titledJJV-ݿNNPMbVBD)\(VBNMbX@LSxi-1 word winningRBrh|VB㥛 JJK7A?NNE?PDTK7ARBRK7JJRK7?i-1 tag+i word JJ autryNNClNNPCl?i-1 word opponentDT"~jWDT"~j? i suffix alfVBGx&1CD|?5^VBZh|?5DTm@VBP!rhRBM?VBx&1NN\(\ @PDTB`"[@VBN/$JJ?VBD+PRPPnPRP$\(\߿NNSB`"NNPV-i-1 word offsetJJPnNNPn?i word imperiousJJ+?NNSRBx& i word berryNN rhNNP rh?i-2 word survivalVBNʡERBʡE?i-1 tag+i word RB eitherCCq= ףpDT?5^I ?RB"~j?i-1 tag+i word PRP surrogateVBףp= JJףp= ?i-1 word conventionalNNS+JJ)\( @NNh|?5 i word saJJK7NNPA`"?NNuVi+2 word canyonVB~jt?NN~jt i suffix sipNNSnNNn?i-2 word activistsNNʡE?JJQRB/$i-1 tag+i word DT neurologistNNZd;?JJZd;߿i+1 word quartersJJX9v?JJRV-NN;On?i-1 word agreedDTZd;RPA`"ۿJJI +RBmINq= ףp@i word expansionaryJJ|?5^?VBN|?5^i word tasselsNNSV-?NNV- i+1 word inc. NNPS9v@VBG!rhPOS/$?NNPMbX@RBClNN?5^I JJ-DT(\NNSZd;Oi word prepareNNK7 VBK7 @i-1 tag+i word IN receiveVBPGz?JJGzi-1 tag+i word -START- strangeVBoʡJJ+@NN/$VBN#~ji-1 tag+i word PRP$ griddedVBN333333JJ333333?i-2 word sabotageNN r?RB ri-1 tag+i word CC fredRB+NNP+?i-1 tag+i word VBG lowJJ&1?NN&1i-1 tag+i word IN unloadingVBGbX9?NNbX9i word governorNNS+׿NNp= ף@JJDli-1 tag+i word NNP chanceryNNPSQNNPQ?i+2 word socialVBm?RB~jtNN rhJJR rhRBR rh?JJX9vi-1 tag+i word DT internalJJV-NNPV-?i word rewardingVBGQJJQ?i-1 tag+i word JJR eclecticJJ-?NN- i-1 word youMD rh?VBuV?VBDtVRBR ףp= JJRE?NNPw/NNjtVBNx?IN(\?VBP?5^I @WDTbX9ƿJJI +?VBGClDT/$RPGzֿRB ףp= ߿VBZCli word hottestJJSOn?JJOni+2 word fruitsVBNn?VBDni-1 word communismNNI +VBGI +?i-2 word futuresVBDE@WDT rVBG"~jVBv?NNPSPn?JJv߿IN/$RBMbXNNh|?5NNSGzRBRI +޿VBPjt?RPK7A?VBN;On?DTS㥛?VBZGz?NNPPni-1 tag+i word PRP$ grandsonVB$CNNjt?JJ!rhi-2 word socialismNNK7A?VBK7Ai-1 tag+i word TO freelyRB~jt?JJ~jtȿi-1 suffix choNNPSX9v?NNPX9vi-1 tag+i word CC outRPq= ףpRBʡEIN~jt?i tag+i-2 tag VBZ PRP$VBPS㥻?RB+?NNS㥻IN+i+2 word colsonVBClӿVBPCl?i-1 tag+i word IN hungaryJJrh|NNPrh|?i-2 word stallJJ~jt?NN~jtӿi-1 word quotronVBD?5^I ?NNP"~?NNPS"~VBN?5^I ¿i+1 suffix ntaVBZ7A`@IN'1Z?NNSʡERP'1ZNNP\(\i+1 word poolsVBGGzNNd;O@JJ\(\i-2 word again DTGzNNS/$RBFxѿUHGz@IN+?VBNw/?VBPV-ڿJJw/VBffffff?RPZd;ONN/$?i-1 word modestlyRBR r?JJR r i suffix .e.VBMRB㥛 NN"~FWQ @i+1 suffix ote VBZKNNPʡE?CDMbVBNvPRPoʡINףp= ?POSuV@JJ rh@VBQNNPSˡE?VBGNN\(\i+1 word happeningVBZ+?POS+i-1 word guaranteesVB +VBP +?i-1 tag+i word POS fiveyearNN+ӿJJ+?i-2 word lathesVBGK7AJJ{Gz?NNy&1|i+2 word zeislerVBNMbXJJX9vVBD%C?i-1 tag+i word JJ dramsNNPSd;O?NNS"~jԿNNP`"!i-1 tag+i word -START- parametricJJT㥛 NNPT㥛 ?i-2 word growingPDTQ?NNSV-NNjtƿJJffffff?i-2 word research VBZy&1@DTA`"VBG+RBClNN^I +FWQ?INA`"?NNSSVBQVBDZd;O @VBN/$޿VBPjtJJ= ףp=i-1 tag+i word CD modelNNuV?JJ-VBDtVi-2 word doing DT"~j@JJSsh|??WDTV-JJoʡINףp= ?JJRQVBZ(\ݿNNSףp= NNP\(\?VB(\@RBʡEֿNNA`"RBSsh|?i-1 tag+i word JJ voiceNNK?JJKi-1 tag+i word JJ boundVBN;On?NN;Oni+2 word listeningRP+JJ+?i-1 tag+i word DT rainbowNNSv/NN?NNPMb?i-1 tag+i word VBZ completelyRBPn?JJPn i word unlessJJq= ףpINA`Т@NNPSWRBI +NNRQCCK7RBRA`" i word nearbyNNPGzNNPSvRBK7A`@NNd;OUHJJ-@DTV-NNSI +i-2 word namesJJQVBNNNV-?NNP +?i-2 word shipmentsNN"~jRB/$?NNP-VBˡE?RP/$JJ&1?i-1 tag+i word NN capturedVBDzGếVBNzG?i word clearedVBDV-?VBNI +?NN$Ci-2 word melodiousFW%C@NNjtNNPMbi word chickensNNS)\(?NNS㥛JJZd;Oi-1 tag+i word JJ minuteJJ/$?NNw/?FWQi-2 word aidesDTX9vVBPClVBN+?JJ rhINX9v? i-2 word crayJJRsh|?NN/$?RP?5^I ҿJJw/RB?5^I ?i-1 tag+i word JJ inventivenessVBnNNn?i word confereesNNS&1?NN&1i-1 word majorityVBN(\?VBD(\i word treasuryNNSPnNNv?JJvNNPv/?i-2 word kotobukiNNPSK7A?VBZK7Aпi-1 tag+i word WDT loadVBP/$NN/$?i-1 tag+i word NN contestVB|?5^JJSuVNNK7A`?i-1 tag+i word RBR pragmaticJJK7?NNK7i+2 word coupeNNPV-?CDV-i+1 word administersWDT9v?IN9vi+2 word compaqJJRzG?RBRzGi word conditioningVBGQNNQ@i-1 tag+i word RB faceVBP+η?JJ+η i+1 word useNNS333333?VBZ333333VBDK7NNn?JJRp= ף?WDTx&1?JJq= ףpVBNq= ףp@RB\(\INZd;ODTnCDSNNP;OnVBNbX9i-1 tag+i word DT appropriateJJMb?NNMbi-1 tag+i word CC deniedVBN~jt?JJ ףp= VBDV-?i tag+i-2 tag JJ ''NN~jt?JJ~jtؿRBA`"INA`"?i-1 tag+i word VBP lostVBN-?RB1ZdVBDGzǿi word bewitchedNNoʡVBNMb?JJA`"i word rothschildsNNSSJJK7ANNP\(\ NNPSv@i-1 suffix ddsWDT"~ʿRBMbIN#~jԿRPHzG@DTMb i suffix hodNNS333333NN333333?i+1 word poundVBX9vNNPSK7VBG}?5^I?NN+JJRn?JJjt@NNPSi-1 tag+i word DT immigrationNNKNNPK?i-1 tag+i word RB vetoedVBK7A`տVBP;OnVBD(\?i-1 tag+i word IN indianapolisNNPS)\(NNSˡEԿNNPMbX?i+2 word rocksRPjt?IN7A`CCɿi-1 suffix ezaNNPSClNNPCl?i-1 tag+i word JJ inningsNNS!rhNN!rh?i-1 tag+i word TO blockVBh|?5?JJ+NN{Gzi-1 tag+i word -START- callFWtVJJ +޿NNK7?NNP\(\VB#~j@i-1 tag+i word VBG galvanizeVBCl?NNCl i word dippedJJV-VBDV-?i-1 word quebecVBZ9vNNS9v?NN1Zd?JJ1Zdi-1 word importingJJRCl?RBRCli+2 word kidnapVBQJJQ? i-1 tag DTRP~jtRBB`"FWA`"?CC"~PDTV-VBZ/$NN#~j @CDjt?NNPSL7A`?JJRrh|?VBG(\EX/$RBRPRP'1ZVBjt NNS)\(?JJSL7A`?RBS㥛 ?INFxVBDV-VBP= ףp=?JJMb?DTT㥛 $Q?POSbX9NNP%C@WRBX9vVBNX9v?WDTx&1@i-1 tag+i word , joinVBZq= ףpVB)\(@VBPx&ٿIN9vi+1 word jigglingVBZK?NNSKi-1 tag+i word JJ daytimeJJB`"?NNB`" i suffix digFWʡENNʡE?i-1 word accruedRB(\IN(\?i-1 tag+i word TO feelVB+?NNS+i-1 tag+i word PRP gatherVB+?JJR+ i word doomNNSKNNK?i+2 word plasticNNSS㥛NNS㥛?i-1 tag+i word TO disposeVBCl?NNCli+2 word oeufsVBZRQVBK߿NNx@VBDGzi-1 tag+i word WP rodeVBP"~jVBD"~j? i word chillWDT$CNNɿNNPE?i-1 tag+i word VBP straighterRBJ +ѿRBRʡE?NNQſi-1 tag+i word IN printingVBGy&1NNy&1?i word unitholdersNNSMbX9?JJʡEӿNNPd;Oi-2 word koskotasVBGffffff?JJffffffֿi word ebullientJJ?NNi+1 suffix aisJJR~jtNNffffffֿNNPS?i-2 word hiborNNp= ףNNSp= ף?i-1 tag+i word TO planVB㥛 ?NN㥛 i-1 tag+i word NN automobilesVBZZd;NNSZd;?i+2 word agreeVBNMbX?RBZd;ONNS/$NNPmVBGZd;JJA`"NN+@ i suffix ucyNNPS?JJSi word flamingoNNPSMbX9NNPMbX9?i word industrialistVBPV-NNS㥛?JJi-1 tag+i word NNS questionVBPHzG@PDTT㥛 ؿNNh|?5VBDzGi-1 tag+i word VBD muchJJ= ףp=?NNI +RBV-@NNP+i-1 tag+i word VBG securitiesNNPSSNNS+ӿNNPZd;?i-1 tag+i word RB clearedVBDx&VBNx&?i+1 suffix rlyNNx&JJSؿVBNZd;CD^I +?VBPˡE@RB9v?RPl?VBZjt?JJlVBD@NNPT㥛 DTy&1?NNS1Zd?VBI +ƿNNPSGz?VBG ףp= RBS?JJRx&1?INT㥛 i-1 tag+i word RB sightseeingVBGy&1ܿNNy&1?i+1 suffix lumNN-?JJ-i-1 tag+i word JJ offerVBP)\(NNSq= ףpNN\(\@INZd;i+2 word laggedVBNQRBJ +?INK7A`ݿi-1 tag+i word VBP safeJJX9v?NNX9v i+1 word stopRB+߿JJ+?i+1 word students NNP'1ZIN ףp= @VBGOnRBK7ٿNN-?WDT5^I JJ"~j @NNSV-VB+ i word soarJJxNNSQVB= ףp=@RBZd;NNVBPx?i+1 word entitlingNN(\?RB(\ i+1 word jayaJJ;OnNNP;On?i-1 tag+i word VBN backRBK7ARP{Gz?NNoʡ?JJ&1 i word resinNN~jt?JJA`"VBDx&1ܿ i suffix HTSNNPSK7NNSK7A?NNܿNNPq= ףpi-1 tag+i word -START- flexibleJJ?NNPi-2 word gouldJJS?RP(\NNSRBm?INSi-1 tag+i word VBP patentJJ|?5^?NN|?5^i+1 word mundoNN= ףp=FW= ףp=?i-1 word weightedNN(\?JJ(\ҿ i word bunkerNNPSnNNPn?i-1 tag+i word PRP$ coachesNNMbNNSMb?i word directorateNNGz@NNPGzi word whitleyJJ(\NNP(\?i tag+i-2 tag VB MD$RQVBQRBRFxٿIN/$?JJS{GzJJRGz?VBNMbX9ܿVBD9v@VBZRQDTRP?NNP\(\?CC|?5^?PRP$MbpVBP/$JJQ?NN r?PRP9v?NNPS'1Z?VBGʡE?RB?5^I NNSV-PDTPn?RBS333333?EXS㥛TOK7i+2 word adoptVBZ7A`NNS7A`?MD+?VB\(\NNEԸ?VBP/$?PRP+JJ%C?i-1 word industryVBPL7A`?JJX9vIN(\տNNS"~RB^I +?RBRMPOSGz?VBN%CNN|?5^?DT^I +VBL7A`VBD/$?WDTHzG?VBZx@NNPSmi word midsizedNNrh|VBNrh|JJS㥛@ i+2 word vuVBZV-?POSV-i+1 word fundedRB(\?NN(\i+2 word embarrassVBZ rNNS r?i+1 suffix lip VBV-?NNV-RBbX9JJ#~jRBRV-JJRp= ף?POS|?5^?VBP rVBZ|?5^ѿ i word adrsNNStV@NNvNNPQi-1 tag+i word , airconditionerJJRp= ף?NN~jtCDNbX9i-1 tag+i word NNP christmasJJNNP? i suffix .95NNSK׿CDK?i-1 tag+i word CC thoroughbredVBNffffffJJ ףp= @VBDzGi word energeticNNQ뱿NNPvJJMbX?i+1 word gerstnerRBV-NNPV-? i word weakenVBN1ZdVB&1?VBPy&1?i-1 tag+i word NN nurseRBREԸNNrh|?FWHzGٿ i+1 word csfbRBX9vNNPX9v?i-1 tag+i word DT handsomeVBN$CJJ$C?i-2 word course DT rhVBQNNZd;VBNzGWDT rh?RBZd;OINM¿JJq= ףp@VBZ?i-1 tag+i word NN ewingNN9vNNP9v? i word selveVBPX9vNNPX9v?i word wallpaperJJRSݿNN rh?INx&1i-1 tag+i word VBD profitVBZ㥛 NN㥛 ?i word fanaticJJʡE?NNʡEi-1 tag+i word VBP completedVBNMbX?VBDMbXi-1 word cardiacVB9vNN(\?JJKi-1 tag+i word CC projectedVBD~jt?VBN~jtۿi+2 word trust NNPSClNNB`"@PDTZd;OǿVBP= ףp=?DT㥛 ?VBSCD&1JJMbINV-NNPS@i-1 tag+i word `` challengingVBG rhJJM?NNi-2 word insulinVBNbX9VBPNbX9?WDTx޿INx?i-1 tag+i word JJ gripesNNS rh?NN rh i word carmenNNSףp= ӿNNPףp= ? i suffix oat RPB`"NNSMbXVBP;On?UHZd;JJ?5^I NNP7A`ҿVBy&1|?RB"~?NNQ@RBRMbпi-1 tag+i word JJ stadiumsNNSCl?NNCli-1 word definesVBPT㥛 пJJT㥛 ? i-1 word s&lNNʡE?INʡEi+1 word cantobankJJHzGNNPHzG?i-1 word nervousVBG'1Z?NN'1Zi-1 tag+i word PRP$ museumNNSx&1NNx&1?i-1 tag+i word , gamblingVBGv/NNv/? i word giantsNNPSq= ף@NNSd;ONNZd;NNPp= ףi-1 word schemeJJjt?RBjti-1 tag+i word TO hireVBG-VB-?i+2 word depositsVBNJJ?i word invest\/netNNPSNNSNNPl? i suffix InnNNPS|?5^ٿNNP|?5^?i-1 tag+i word POS officeNNV-@NNPV-i-2 word tensionVBHzGNNHzG?i+1 word disappointinglyCCp= ףJJRS㥛RB9v?i+2 word aftertaxJJ%C?NNP%Ci-1 word soiledNNSQ?NNQi+1 word measureVBNI +?WDT|?5^?JJM?WP|?5^NNSK7@VBG5^I NNKVBDw/ i-1 word doleRPCl?INCl i+2 word run JJClVBZK7A`?DT-?NNPoʡ?VBNX9vNNxVBDX9v?WDT;On?IN$CNNSK7A`ݿVBG#~j?i-1 tag+i word NN cutbackVBZjtNNjt? i+1 word feeJJX9v?NNX9vi-1 tag+i word JJ contestVBZZd;NNZd;?i-1 tag+i word VBN uponVBNSRBbX9INV-?RPx&@JJI +NNףp= i-2 word wonNNPvRP~jt?RBPnNN ףp= ?VBPZd;JJ㥛 ?INv/i+2 word injectionCCffffff?DTffffffi-2 word catchNNST㥛 NNClJJʡE?i-1 tag+i word JJ margolisNNPSoʡNNPoʡ?i-1 tag+i word , resultedVBN(\ſVBD(\?i-1 tag+i word NNP makersNNPS +?NNP +i-1 tag+i word RB exactlyRB~jt?JJ~jti-1 tag+i word IN overallDTrh|JJ'1Z@NNli word suppressorNNK7A?JJK7Ai-1 tag+i word : sophomoreVB(\пIN'1ZNNˡE?NNPQi-2 word listenDT&1PDTw/?VBV-i-1 tag+i word WDT retailVBZX9v޿VBPS㥛?VBDMi-1 tag+i word VB resolvedNNSVBNZd;?JJ7A`i word precedingVBG^I +?JJ9v?NN"~i word aslanianJJGzNNPGz?i+1 suffix igh WDTV-?INZd;_VBZClNNPl?NNPS1ZdVBGtVVBDB`"VBPsh|??DT~jt?JJ/$?NNuVVBN?RBQ@i word capitalismVBK7ANNK7A?i-2 word israel VBZd;O?NNPSS?CCGz?NNP9vNN/$?VBP|?5^JJl?IN/$NNS/$տi-1 tag+i word CC clearVB}?5^I?NNmRBn?JJ~jti-1 tag+i word JJ beliefNNSʡENNʡE?i-2 word wishesVBG+JJ+?i-1 tag+i word WRB husbandsNNSS?NNPS i word schemeNNS+NN`"?JJ/$i-1 tag+i word IN talksNNS= ףp=?NN= ףp=i+2 word clustersNNSJJ?i-1 tag+i word JJ backedJJV-?VBNV- i suffix tinVBNV-CD\(\VBPGzJJ%C̿VBZPnпNNPMb?NNPStV?NN-?i-1 tag+i word TO operateVB%C?JJZd;RBSi+2 word royalJJ1Zd@NN1Zdi+1 word extraVBCl?VBPM?RBMJJCli-1 tag+i word CC budgetingVBG-NN-?i-1 tag+i word NNS closingVBGjtNNjt?i word reassuringVBGʡEJJv@NNK7Ai-1 word circumstancesJJR"~?RBR"~i-2 word uniformVBZEؿNNSE?i-1 tag+i word NNP pumpingVBPvVBGv?i+2 word newspapersPDTK7A?VBK7Ai-2 word jeopardizeNNnٿNNPn?i-1 tag+i word NN achievementNNS㥛?JJS㥛 i word variedVBNJ +JJJ +?i-1 word couponJJ/$?NN/$i word chileanJJQ?NNPQ"i-1 tag+i word -START- diversifiedVBN"~JJʡENNPv?i tag+i-2 tag PRP$ VB NNPn?RBSx&1JJSx&1?CDh|?5?JJsh|?RP9vNNSEԸ?VBʡENNPQ@RBffffffVBNPnؿINmտVBGS?i-1 tag+i word NN eruptedVBNSVBDS?i+1 word thoughtfulRBR?JJRi+1 word nightNN+ӿCD+?i-1 suffix fed NNPSX9vRPh|?5?POSCl?VBN{GzRBsh|?VBZL7A`?NNSSMDX9v?VBCl?NNX9vVBD/$?VBPS㥛пIN^I +i-1 word citizenVBNA`"ۿVBDA`"?i word compromisedVBDX9vVBNX9v?i+1 word familiesJJtV?NNZd;ONNPbX9޿i word temptedVBN rh?JJ rhi+1 word closesWDT?IN i suffix laeMDjtNNPjt?i+1 word appropriateRBR}?5^I?NN/$JJR}?5^IVB/$? i word curvyJJ%C?NN%C i word thripsNNS%CNN-?FW"~i+2 word senatorsVBQWPQ?i+1 word nursingJJʡE@RBL7A`NNEԸNNP`"i-1 word dealershipRBS?NNSi-2 word substanceJJRQ?RBRQi+1 suffix oidVBNffffff?VBDffffffi-1 tag+i word DT assistantNNjt?JJjti-1 tag+i word PRP scribblersNNSn?VBPni-1 tag+i word RB unpreparedVBNV-JJV-?i-1 tag+i word POS assumeVBS?NNSSi-2 word sector NNPףp= ?VBMbX9@JJl @VBNClNNSx&1NN ףp= VBDv?JJRMbX9RBvi-1 tag+i word VBP echoedVBNMbX9?JJMbX9i-1 word cardinalsNNPSClNNCl? i word hintVB㥛 ?NN㥛 i-1 tag+i word NNP cattrallPOSNNP?i-1 tag+i word VB stadiumsNNSrh|?NNrh| i suffix eSYMS㥛?JJNNS㥛ԿLSQ? i-1 word firePRP$S㥛PRPS㥛?i-1 tag+i word NNP hubNNx?RBxi word unclaimedVBN&1ʿJJjt?VBDrh|i+1 word judiciaryJJrh|?NNPrh| i suffix gon VB(\?NNPS rhINʡENNP +?VBG333333 @NNʡE?VBP㥛 JJ\(\NNS$C i+2 word warVBDʡE?JJK7@VBG rhVBNʡENNB`"i-1 tag+i word VBN insulatedVBN ףp= ?JJ ףp= ǿi-1 tag+i word DT eyesNNSoʡ?NNoʡi+2 word factorsRPX9v?JJZd;@NNB`"INX9v޿VBG rh i word wingVBGʡENNʡE?i-1 tag+i word JJ strengthsNNSPn?NNPni-1 tag+i word TO stealVBq= ףp?NNq= ףpi-1 tag+i word CC retailVBuVNN(\?JJnѿ i word amNNPSENNPffffffDT%CԿVBPV@NN5^I i word factoriesNNSK7?NNK7i+1 suffix fanNNPSV-?NNSRQNNPMbؿi-1 tag+i word DT mcintoshNNPS{GzNNh|?5NNPMbX?i word expectingVBGl?JJli-1 tag+i word -START- marginsNNSV-?NNPV-i-1 tag+i word DT furyNN rh?NNP rhi-1 tag+i word NN downRB?INuVVBZ rhVBzGҿRP= ףp= @NN!rhi-1 tag+i word VBZ outragedVBN(\?RP(\i-1 tag+i word VBD clearNNSh|?5JJMbX?NNEVBPQRBHzG?VBZ-i word selectedVBDGzVBN#~j<@JJ1Zdi-1 tag+i word NN estimatesVBZl?NNS{Gz?VBDV-i-1 tag+i word NNP canNNPnMDn@i-1 tag+i word CC syndicateVBSNNZd;O?JJ5^I i-1 tag+i word CC wrappingVBG^I +NN^I +?i-1 tag+i word RB benightedVBNy&1JJy&1?i-1 tag+i word JJ appreciablyRBZd;O?NNZd;Oi-1 tag+i word RBS seasonedVBNffffffJJffffff?i-1 tag+i word NNP babyNNS?VBDSۿi word economistNNPS?5^I ҿNNNNPZd;O?i+1 word adminstrativeJJZd;?NNPZd;i-1 word cleanerVBZ'1ZNNS'1Z?i-1 tag+i word NNP crimeNNM?NNP rh?NNPS{Gzi-1 tag+i word NNP headsVBD㥛 VBZ)\(NNSX9v@i-1 tag+i word IN railroadNN-?JJ- i+1 word lutzNNS㥛NNPS㥛? i word butchNN{GzNNP{Gz? i-1 word mereNN ףp= ?NNS ףp= i-1 tag+i word NN classifiesVBZZd;?NNSy&1VBDOni-1 tag+i word WDT hostileVBZ^I +JJ^I +?i-1 tag+i word IN buildingNNPv/VBGw/ĿNN333333? i+1 word wall VBNERB~jtпNNP$C?JJʡERBSsh|?տCDHzG?VBPS?IN~jt?VBZ;On?NNS rhNN;On?JJS+i-2 word beginningVBCl?VBG= ףp=JJn?NNuVINx&1i word expenditureNNV-?JJV-i-1 word subtleNNMbX?JJMbXi-1 tag+i word CC whateverWDT)\(?INVBQi-1 tag+i word NN magedNNP/$?VBD/$ۿi-1 tag+i word JJ thoroughbredNN|?5^?JJ|?5^i+1 word turkeyINZd;?VBDZd;i+1 suffix verEXClINK7ٿMDK7NNPSd;O@VBZMbX9?RBRnDT+?POSsh|?CD/$?JJRtVVBD-?VBPS?WDTx&JJrh|RBCl?NNS;OnNNPQJJS~jtVBGbX9VBN#~j@VB?RPRQ?NN?5^I ?i-1 tag+i word NNP receivablesNNPS;On?NNP;Oni-1 tag+i word VBG ozoneNNPzGNNzG?i-1 tag+i word WP passVBZA`"ۿVBPA`"?i-1 tag+i word VBZ dyingVBGK?NNKi-1 suffix uldVBG-RBSx&1?RBR1ZdۿIN333333DT$CJJh|?5ֿVBP rhRBn?NNd;OοVBDZd;O?CCjtVBNʡEWDTףp= ۿVB`"@JJR^I +i+2 word guaranteesNNPX9vJJh|?5?NNT㥛 ?VBDV-VBN/$RBL7A`?IN +i word expensiveRBQ?JJPn@VB~jtNNSSۿNNI + i word repeatTOZd;ONN)\(?NNPS㥛i-1 tag+i word NNP picksVBZv/?VBPv/Ϳi-1 tag+i word VB processingVBG/$NN/$?i-1 tag+i word CC letVBrh|@VBPPnNNSRQVBDQi-1 tag+i word PRP$ loveNNS?5^I NN333333@JJ'1Zi-1 word authoritiesVBN\(\VBD\(\? i word vividJJV-?NNV-׿i-2 word legal MDffffff?WDT'1Z?IN+׿DTEԸVBS@RP|?5^NN~jt?VBDʡEVBNʡE?VBPףp= JJxi+1 word nikesJJy&1NNPy&1?i-1 word rarelyNNp= ף@VBNQCDp= ףVBPQ?VBZ}?5^I?NNS}?5^I i+1 word joyVBN}?5^IVBD}?5^I?i-1 tag+i word VBZ perestroikaNNd;OFWd;O?i-1 tag+i word NN goodmanNNP?POSi word illegalNNoʡRBbX9VBNRQJJd;O@NNS"~i-1 tag+i word TO wooWPMVB"~?JJRtVJJ{Gz i+1 word oyNNP\(\?NN\(\߿i+1 word tournamentsVBGI +?JJI +i word connectorsNNPSv/?NNSv/i word brothersVBZmNNPSn@@NNSV-NNPV-i+1 word hillsNNP|?5^@RB ףp= JJK7A`VBDuVi-1 tag+i word VB agricultureJJENNE?i-1 tag+i word -START- cableJJzGNNPzG?i+2 word armoredRBp= ףINp= ף?i-2 word bergsmaJJˡE?NNˡEi-1 tag+i word PRP sampledVBNMb?VBDMbi word liberalizedRBR/$JJClVBN(\VBDMb?i-2 word childNNSK߿VBGQ?NNX9vPRP;OnJJJ +@INCli-2 word watchedNNSp= ףRB+JJV-VB+?NNPS +?i+1 word comes RBjt?IN-VBZK7A`JJV-NNX9v @VBDףp= WDT-?LS~jtNNP{Gzܿi-1 word suddenlyNNPʡE?NNV-VBD(\VBNL7A`堿VBP1Zd?JJvVBZ\(\?i word presidentialJJ333333?NN333333i-1 tag+i word DT easternNNPL7A`JJL7A`@i-1 word trifleJJDl?NNDli-1 tag+i word VBD afraidVBNZd;JJZd;@i word productivityNNS rhNNzGNNPbX9@i-1 word personallyVBPCl?VBNh|?5JJ+?VBDx޿i-1 tag+i word JJ moonieNN(\?NNP(\i-1 tag+i word JJ disappointedJJ}?5^I?VBD~jtVBNy&1?i word optimisticRBR9vVBPGzPRPMbXRB~jtJJʡE@NN%C i-2 word dashJJQ?NNQi-1 tag+i word VBN billingVBGCl?NN"~j?JJI +i-1 tag+i word VBZ doomedVBN+?JJ+ i suffix HasNNPnVBZ$C@VBtVοPDT rIN$Ci+2 word merelyVBZnNNS rh?NN"~j?i+2 word overallVBD`"?NNSA`"IN`"VBZA`"?i word concernsCD+VBPh|?5οJJ/$VBZ~jtۿNNS(\@VB/$NNsh|?i word vanguardJJGzNN(\µNNPq= ףp?i+1 word fertilizerJJS㥛 ?RBS㥛 ¿JJRjt?RBRjti word artificiallyJJDlRBDl?i-1 tag+i word JJS claimVB|?5^VBP|?5^ʿPDTSNN rh?i+2 word hartfordNNPSʡE?NNQ?JJQſNNPʡEi-1 word collegeNNPd;O?NNQſJJ{Gz?VBZ'1ZDTd;ONNS'1Z?i-1 tag+i word CC troubledVBNRQJJ/$ѿVBD^I +?i+1 word violationJJtV?NNPtVi word republicansNNSFxNNPVBZA`"ۿNNPSo!@i-1 tag+i word TO fakingVBGtV?NNtVi-2 word garneredNNףp= ?JJףp= i suffix EMSNN|?5^JJK7NNPoʡ?i-1 tag+i word , becauseRBX9vIN!rh @VBT㥛 i-1 tag+i word : samNN9vNNP9v?i-1 word somethingIN̿VBZS㥛?VBG5^I VBD1ZdNNSy&1''&1?JJv/@VBNy&1?RB`"@NN ףp= WDTn @NNP/$JJR/$?POSS㥛DT~jtÿi-2 word readyNNZd;JJ~jt?NNPh|?5?VBK7?NNPSZd;i+2 word delectablyNNS?5^I ?NNP?5^I i-1 tag+i word IN packagingVBGʡEͿNNoʡ?NNP-i+2 word offensiveNNuVJJuV?i word corrugatedJJK7?VBDK7i+1 word feministJJɿNNB`"INMbX9? i word rileyNN ףp= NNP ףp= ?i-1 tag+i word , madeRBClNN\(\VBD rh?VBNw/@JJh|?5VBni-1 tag+i word VBD vaticanJJ#~jNNP#~j?i+1 word organJJʡE?NNʡEi+1 suffix imeJJSQPOSPn?VBNI +VBGSDT rh?VBDZd;O@RP(\ڿVBPB`"ѿWRBV-JJCl?NNtV@NNSB`"?RBRPnIN?5^I ?VBMbRB1ZdVBZ rhNNPnJJRx@i-1 tag+i word POS findingsNNS)\(?JJ)\(i-2 word lloydsDTNbX9пINNbX9?i-1 word shabbyVBZ+NNS+?i word exposuresVBZZd;NNSZd;?i+2 word ritterNNCl?INCli-2 word recoveredNN333333NNP333333?i word workstationsVBPsh|?NNS;On?NNPSV-i word intermodaNNoʡNNPoʡ?i-1 tag+i word RB gonVBG{Gz?JJ\(\VBi tag+i-2 tag TO DTJJ)\(?RBV-ҿNNP/$VBZd;NN/$? i word waryJJx?NNPxi-1 suffix atoNNPS+NNS(\?NN;On?i+1 word patriarchJJ rh?CD rh i word most FWClVBNSCDV-VBP%CRB&1NNPZd;ONNS}?5^IVBQJJ^I +NNClJJS;O,@VBD5^I RBSx&q%@i-1 word wardedRP/$?RB/$ֿi-1 tag+i word IN payrollVBP rhNN rh?i+1 word prescribedNNPSjt?NNSMbXNNP +i-1 tag+i word NN millVB1ZdNNuV?JJZd;O߿NNPZd;Oi+1 word minoritiesJJd;O?RBRbX9NNd;OJJRbX9?i-1 tag+i word IN aidingVBG(\?NN(\i+1 word unrestVBNClJJCl?i word characterizedVBZ^I +VBD^I +?i-1 tag+i word CC helicopterNNV-?RBV-i+2 word owingsNNPS+ۿNNP+?i-1 tag+i word PDT alongRBS㥛?INS㥛i+2 word failed VBQJJzGڿNNPx&1?VBG333333?RBMbX?NNS㥛IN|?5^?DT|?5^ɿNNSOn?i-1 tag+i word TO japaneseVBV-JJV-? i+1 word millJJ/$NN/$?i+1 word juiceVBMbXNNq= ףp?JJK7i word angeredVBDy&1ܿVBN rhJJ#~j?i-1 tag+i word , sensitiveJJ +?NN +i-1 tag+i word DT printersNNSʡE?NNʡEi-1 tag+i word , accompaniedVBN?5^I ?RB?5^I i+2 word acquirersJJSq= ףpRBSq= ףp?i-1 tag+i word NN takeVBNsh|?NNB`"?VB +@VBPFxi word irrelevantRB"~jVBNJJB`"@VBvϿNN;Oni-1 word spreadsVBP7A`?WRB ףp= ׿NN(\?FWx&1VB1Zd˿i-1 word banks NN rVBDA`"@DTM?JJ~jtIN5^I VB;On?RBףp= RBR= ףp=?VBNVBP@WDTL7A`尿VBZףp= JJR= ףp=ҿi-1 tag+i word DT pretextNN5^I ?JJ5^I ӿi-1 tag+i word `` grahamNNʡEÿNNPʡE?i-1 tag+i word WP$ dictatorialJJV-?NNV-տ i-2 word onesVBNZd;VBDZd;@i-1 tag+i word NN delayedVBNA`"?JJA`"i-1 tag+i word IN financeerNNX9v?JJX9v߿ i+1 word oatJJ(\ݿNNP(\?i-1 word chooseJJRx&RBRx&?i+2 word traders JJ-ۿRBQIN㥛 VBZ rhNNP&1VBl?RPQ?NN(\?NNS rh?i word interpretedVBNK7?JJK7ٿi-1 tag+i word TO aroundVB/$RBS㥛INS @i-1 word windowNNSZd;?VBZZd;i-2 word nation JJ;OnNN rhͿJJSNbX9?RBRRQ?JJRRQRBX9v@NNSp= ףNNPd;OVBGJ +i-1 word build VBDB`"ɿCD(\PRP`"?JJrh|?NNS~jt?NNP&1RPMb?RBJ +VBG-NN/$?PDTx&1?i-1 tag+i word NN liftedVBNMb`JJKVBD\(\?i-1 tag+i word DT heavensNNSʡE?NNʡEi-1 tag+i word IN regulatorsVBZFxɿNNSFx?i-1 word impliesWDT&1IN&1?i-1 tag+i word RB haveJJoʡſVBDClVB+?VBPK7ɿRBGzǿi-1 suffix p&gDT|?5^?VBNK7A`VBDK7A`?CC|?5^i-2 word composersVBQ?JJQi-1 tag+i word NN grappledVBNEVBDE?i word describesVBZ/$@NNMbVBD ri-1 tag+i word VBZ forcingJJbX9VBGbX9?i word boursesNNP%C?FW%CԿi+2 word releasedNNn?JJ9v?NNPx&1i word railbikesNNS-?JJ-i word mysteriesNNPSFx?NNPFxi+1 word charmNNFxJJFx? i+1 word tomNNףp= ?JJףp= ۿi-1 tag+i word NNS appearRB}?5^IVBlVBP/$ @RBR|?5^i-1 tag+i word CC burlyNNSZd;OJJ333333?RBJ + i-1 word w.j.NNPSENNPE?i-1 tag+i word IN improperlyJJZd;OݿRBZd;O?i-1 tag+i word CD raisedVBNV-VBDV-@i+2 word making RBRʡEVBNKJJ~jt@VBZ/$?RBSNNX9v?JJRzG?NNS rNNPjtֿNNPSX9v?VBD;On i suffix 372JJS㥛CDS㥛?i+2 word fortunesVBL7A`VBPL7A`? i+2 word atopVBPDlVBDDl?i-1 tag+i word VBZ secondJJGz?VBNClRBV-i tag+i-2 tag '' NNP VBD+?VBP333333INE?VBZL7A`?NNSQVBm?NNsh|? @FW(\NNPI +RB rhWDTV-JJ^I + i-1 word lakeVBD9vʿJJ9v? i+2 word heVBDGz?WP-?RBS&1@CD+JJSZd;VBZQ?RPV- NNS-?EX333333JJR'1ZVBGv/VBPx&1NN/$@PRPSRBv@VBQ?WRBB`"?RBRQ?INsh|?NNPClVBN rJJMb?DTK?LSq= ףp?NNPSsh|?? i word greatNNPZd;OVB rNNSClJJ~j@NN ףp= i-2 word nearNNM?NNSFx?JJRBCl? i+1 word r.r.JJFx?RBFxi+2 word angelsNNPSZd;?VBDjtVBNjt?VBP㥛 ?PRP㥛 NNPZd;i+1 word aheadVBZd;O?NNSd;ONNP/$VBGS㥛?NN/$?JJS㥛i-1 tag+i word RBR detailJJ{GzNN{Gz?i-1 tag+i word JJ mixedJJtV?NNtVi-1 tag+i word VB deFWFx?INFxi-1 tag+i word RB bowlingVBG+?NN+i word judiciaryNN|?5^?JJ|?5^i-1 suffix zonNNZd;ONNPZd;O?i-1 word everyone NN~jtVBD`"JJʡE@INjt?NNS~jtRB/$VBPClVBZtV?NNP+VBNd;O?i-1 tag+i word RB contrarianJJZd;?NNZd; i-2 word heldRBRn@WDTOn?JJQ?JJRoʡINOnӿVBI +ƿRB(\ҿVBN rh?VBD rhEX/$NNPjt?NNSMbPDTT㥛 NNPSGzVBGDlNNOn?i-1 tag+i word VBD farmersNNS1ZdNNP1Zd?i-2 word kidneyVBP~jtNN~jt?i-1 tag+i word RBR incentiveJJ333333NN333333?i word tablemodelNNQ?JJQ뱿i-2 word dishesVBNx&1VBPZd;OJJGz?NNS(\?NNP/$NNJ +?VBDDli-1 tag+i word NN growingVBGPnNNPn?i tag+i-2 tag NNP DTNNPSQ @VBPRQWDTV-?VBZ|?5^RP/$VBDGzֿRBR rh?INV-ҿFWV-?DTV-NN/$POS/$NNSJ +?VBDl?PDTS㥛MDx&1?VBG~jt?VBNT㥛 @''/$RB9vNNPMbX?JJR|?5^JJZd;OCDS㥛?i-2 word fairwayVBN/$VBD/$?i+2 word criticismVBP`"?NN|?5^ʿJJMbVBDL7A`?VBZL7A`i-1 tag+i word RBR freelyRB-?JJ-i word lebanonNNtVNNPtV?i-1 tag+i word NNP limitedVBZ +VBD?VBNZd;JJ rhٿNNPK7?i-1 tag+i word VB underlyingVBGZd;OǿJJZd;O?i-1 tag+i word DT legendNNMbX?JJMbX i suffix ndyJJˡE @NNSB`"NNPK7A@VBGzNNPSˡENN-VBNI +VBPjti-1 tag+i word IN trosNNSQ?NN&1NNPw/i+2 word f.a.o.VBPGzNNGz?i+1 word battingNNRQCDRQ? i+1 word fhaDTuVINuV?RBR-JJR-?i+2 word selling VBNHzGNNS333333JJ9v@NN +VBD rhPDTjt?RBjtNNP?VBX9vVBGh|?5 @i-2 word petrovichVBZnVBPn?i-1 tag+i word DT foremostJJ+?NN+i-1 tag+i word IN rankNN)\(?JJ)\(̿i-1 suffix rumRP;On?RB;Oni+2 word nicaraguaNNp= ף?FWp= ףi word accuratelyVBjtRBjt?i-1 tag+i word VBZ comesVBZK7A`?NNPK7A`i-2 word steelmakersNNPS`"NNK7JJR ףp= ?RBR ףp= JJK7?NNP`"?i-1 tag+i word IN applauseNN/$?NNS/$ۿi-1 tag+i word NN burdenVBZd;NNZd;?i word wholesalePRPRQVBVBPx&JJPn@NNsh|? i-2 word atopNNʡE?JJʡEۿ i word ceaseVBjt?NNjtĿi+1 word fashionVBD-JJףp= ?DTV-JJR~jtx?NN~jtx i-1 word inNNSI +CDx&1@VBZV-NNffffff?EX㥛 INtVVBNjtFWx&1WDTn?VBSRP|?5^?RBA`"ӿPRPuV?JJ~jt?DTHzG?PDTV-JJRX9v޿VBDClVBPDlNNPSq= ףp?NNP^I +?RBRRQ?WP(\CC{Gz@RBSףp= JJS?5^I ҿPRP$A`"?VBGS?i+2 word opinionRBS"~jNN+JJ'1Z?NNP/$?JJS"~j?i-1 tag+i word VBD upgradedVBNX9v?JJX9vi-2 word rickelNNPSrh|?NNPrh|i-1 tag+i word VBG specificNNEпJJE?i+1 word expectJJS7A`?NNSx?RBS7A`VBZx i suffix AllWDTrh|RBDT)\(?NNSZd;ONNPMbXVBGX9vPDT rh @i-1 tag+i word CC discouragesVBZX9v@NNSX9vi-1 tag+i word JJ mailmenNNS(\?NN(\ i word warpedVBNI +JJ|?5^@NNSVBDZd;߿i-1 tag+i word IN primaryVBNZd;NNh|?5οJJʡE? i word raiderNN{Gz?JJ{GzԿi-2 word scopeVBZ}?5^IܿJJRh|?5JJx&1?i-1 tag+i word RB cheapJJ{Gz?VBSNNS|?5^VBN/$RBX9v?i-1 tag+i word NN seedsNNSV-?RBV-NNV-i-1 tag+i word CD petJJ|?5^?NN|?5^ҿ i+1 word actNNPd;O@NNPSnVBGCl׿JJClNN?RB= ףp=NNSbX9i-1 tag+i word IN metabolismNN/$?NNP/$ֿi word susceptibleJJw/?VBDd;OVBPʡE޿i-1 tag+i word DT diminishedVBNNbX9JJNbX9? i word germanJJS㥛/@NNPx&"VBˡENNPSHzGNNNbX9JJR7A`i-1 word pennsylvaniaJJSNNK7NNPd;O?i-1 tag+i word JJR rapidNN`"JJ`"?i-2 word suzukiNN)\(@JJ)\(i+1 word dissidentsVBG^I +?NN^I +i-1 tag+i word NNP castleNN5^I ?NNS5^I i-1 word losingNNX9v?VBDX9vi-1 suffix few NNP+NN= ףp=ڿVBDClJJR^I +?CD\(\?NNS%C@VBN\(\RBR^I +WDT+JJNbX9?i+1 word foremanNNB`"?VBGB`"i-1 word gourmetJJSNNSKNNZd;O?i-1 tag+i word RB grantVBFx?VBP(\JJ+ӿi+1 word seasonallyVBPp= ף?NNp= ףi-1 tag+i word DT includeVB?VBP}?5^INNSX9vi-1 word ownershipNN(\NNP(\?i-1 tag+i word NN pairedVBN/$?VBD/$i-1 tag+i word NNP picturesNNPSףp= ?NNS?5^I NNPv/i word conduitsNNP(\NNS(\@i-1 tag+i word WRB specificJJ^I +?NN^I +׿i+1 word tablesINffffff@VBGx&RPffffffNNDl?VBPvJJ/$? i+1 word betsDTNbX9?JJSQ?NN(\JJ?NNPNbX9i word herselfVBZx&1VBPʡEPRPV- @NNKi-1 tag+i word NNP presseNNPS^I +߿NNP^I +?i tag+i-2 tag TO NNSDT|?5^CCL7A`PDTw/RBRx&1?VBG/$CDjt?RPrh|JJ%C@VBNZd;OWDTOnRBzGNNS9v@NNPMbX9VB|?5^?NN%C?INX9v?JJR)\(i-1 tag+i word WDT workVBPx?NNxi-1 tag+i word RB decoratedVBN/$?JJK7VBDCli-1 tag+i word NNP describesVBZʡE?NNʡE i+1 word sameJJq= ףp?NNrh|WDT㥛 ҿRB+߿INMbDTw/? i+2 word oct.NNPnNN5^I ?VBD/$VBN7A`VBGy&1INZd;?VBZRQ?VB7A`RPClRBoʡ @DTv?NNPSQJJClNNSjt?i+1 word meterNNzG?FWzGế i suffix osiNNS?NNi+1 word carpetingJJS㥛?VBN(\NNZd;Oݿi-1 tag+i word CD minutesNNPS`"?NNS`"i-1 tag+i word NNP incomeNNPS rhѿNN)\(NNP;On?i word contractorNNp= ף?NNPx&ٿVBPNbX9i+2 word rolodexesVBPB`"VBDB`"?i-1 tag+i word VBG advisedVBN^I +?JJ^I + i suffix tagRB'1ZNN'1Z? i word petrieVB!rhNNP!rh?i word underwritingJJNbX9VBG +NNMb@i-1 tag+i word CC floatingVBGNbX9?JJNbX9 i-2 word kofyVBPGz@NNPGzi-1 tag+i word NNP yorkersNNSq= ףpNNPSNNPSMb@i-1 tag+i word CC sonsNNPS{Gz?NNS= ףp=NNP?i-2 word timbersJJ\(\?NN\(\ i suffix bicNN}?5^INNPZd;?IN㥛 NNS= ףp=JJZd;O@i-1 tag+i word NN barNN{Gz?VBD{Gzi-1 tag+i word VB thatDTv @NNSvRPJ +WDT\(\ RBRQ?INS㥛? i suffix 'd.VBNK?NNKi word conventionalNNPSJJS?i-1 tag+i word -START- keepVBffffff?VBP`"NNPn i suffix ulpNNSZd;ϿNNX9v?NNPPn?"i-1 tag+i word -START- advertisersNNPSZd;ONNSZd;O?i-1 tag+i word VBZ viewedVBNK7?JJlVBDQi+1 word producingDTx&1ؿRBV-?JJV-INx&1?i-1 word assumingINV-?DTV-׿NNSCli-1 tag+i word DT dalkonJJffffffNNPffffff?i word eliminateNNSJJV-NN-ֿVB/$@ i-2 word judyVBZX9v?VBX9v i+2 word debt VBNoʡ?RBR5^I VBPEJJRlVBGy&1?NNx&1?VBD rhѿINmJJI +?VB?5^I ?RPm?i word sporadicJJffffff?NNSVBNzGڿ i-1 tag+i word -START- utilitiesNNP rhݿNNS rh?i-1 tag+i word DT cockpitJJRQNNQ?i-1 tag+i word DT courtroomNNSSNNS?i+2 word mayanRBMbX?INMbXi-1 tag+i word NNP reshuffleNN}?5^I?VBD}?5^Ii-1 tag+i word POS vosgesNNSV-NNPV-?i-1 tag+i word NNS downRPK7@POS-RBQINX9v i word ringVBPK7A`?VBG+NN!rh? i word yet PDTjtPRP(\NNP5^I NNPSSRPMbX9@CCn@VBN333333RBtV$@INQNNSKVBJJFxNNRQ i tag+i-2 tag VBN DTNNSMb?JJR/$?RP}?5^VBZV-VB rhVBG(\NNRQ@CDjt?JJMbX9 FWGzVBDJ +VBPm?INd;O@NNPx&1?i-1 tag+i word JJ principalJJ(\?NN(\i word correctiveJJbX9?NNbX9޿i-1 tag+i word IN regardNNx?RBxi-1 tag+i word IN henryVBPPnNNPPn?i-2 word libelVBZ/$?VBD/$i+2 word aircraftNNP{Gz?VBGw/ĿNNCl?JJQIN(\RP(\?i word informixNN㥛 NNP㥛 ?i+2 word incurredNNP= ףp=?WDTCl?JJ= ףp=INCli-1 tag+i word NN clothierRBRNN?i-1 tag+i word NNP rocheNNPI +?NNPSI +i-1 tag+i word TO conspiringVBuVVBGuV?i-1 tag+i word WDT sovietVBZHzGJJ#~j?NNPx&1 i word magedNNP/$?VBD/$ۿi+2 word translateDTMbX?WDTMbXѿi-1 tag+i word DT principlesNNSV-?JJV-i word grousedVBN%CJJGzVBD rh?i-1 word warner VBZ +?INZd;O?NNPSV-?NNv/ݿFW ףp= ǿVBDv/POSFx?VBN/$NNS+VBZd;O?NNPOni+1 word passageJJ5^I ?NN#~jVBsh|?i word touristsVBZHzGNNSHzG?i-1 word conversionNNq= ףp?RBq= ףpi+2 word routesJJ~jt?NNP~jtؿi-1 tag+i word JJ filipinosNNPSjt?NNSx&NNPZd;i-1 tag+i word , levelVBPZd;O?VBN$CNN\(\i-1 tag+i word CC mergeVBʡE?JJʡE i-2 word hillNNSпNNP?i-1 tag+i word RB uninterestedVBN ףp= JJ ףp= ?i-1 tag+i word `` certainlyVBJ +ٿRBX9v?INףp= ۿi-1 tag+i word IN folkNNSOnNNOn?i+1 word siemienasNNjtNNPjt?i tag+i-2 tag DT ( NNPSv?VBG\(\?CDClNNPERBB`"?NN'1Z?VBNV-?PRPA`"JJ7A`NNSCli-1 tag+i word VBZ ontoRPh|?5INh|?5?i-1 tag+i word IN kidnappingVBGClNNCl?i-1 tag+i word TO recordVB#~jNNI +?JJV-i word pursuesVBZ?NNS i word buellRB|?5^NNP|?5^?i-1 tag+i word VBZ gotVBN/$VBD/$@i+1 word conferenceJJClNNK7RBxNNPNbX9@i+2 word claimingPRP$x&PRPx&?i-1 tag+i word PRP$ briskNN^I +JJ^I +?i+2 word enhancesDTFxWDT"~@INʡEi-1 tag+i word WP dugVBZ rhVBPtVVBD(\@i-1 tag+i word VBZ confiscationVBN!rhNN!rh?i-1 tag+i word , adjacentJJK7?NNK7i-1 tag+i word NNP accomplishedRP+JJ+?!i-1 tag+i word -START- ironicallyRB/$տNNP/$?i-1 tag+i word NN receiveVBClVBPCl?i-1 tag+i word JJ experimentalJJI +?NNI +i-1 tag+i word -START- foodNNP rhNN rh?i-1 suffix hevVBD rh?VBZI +NNPVBGrh|?MD5^I ? i suffix ute NN(\ @VBDPnFWQRBmNNPS%CJJ= ףp= @JJR"~jVBP-@DT1ZdNNSClNNPlVBX9v@VBN{Gz i suffix ppy VBZffffffNNSK7NNPK7A`RP-JJ}?5^(@NNClPDT%CRB9vVBNbX9VBDbX9VBPS㥛i-1 tag+i word `` sterilizingVBGHzG?NNV-JJMbi-1 tag+i word `` pressVBGzNNS+NNx&1@i-1 tag+i word VBN taughtVBNsh|??RBsh|? i word pretty NNS ףp= ߿JJJ +NN#~jFWZd;߿RBB`"[@VBtVVBD/$VBNq= ףpVBPzGi-1 tag+i word NNS conspiredVBNX9vVBDX9v? i suffix IMANNP(\?NNPS +NNK7i-1 tag+i word NNP likesVBZNbX9?VBDNbX9i+1 suffix rezNNP%C?MD%Ci-1 tag+i word VBD sovietJJQ?NNPQſi word innocenceNN +?RB +޿ i word flierNNS?JJ?5^I JJR;On¿i-1 tag+i word IN biotechnologyNN/$?JJ/$޿ i word albeitINA`"@VBZ~jtNNS'1ZNN'1ZVBP/$JJjt i+1 word mcaJJQ?RB-INZd;O?DTZd;ONNSQRP-?i-2 word tensionsVBD!rhVBNzG?JJEi+1 word pantsJJGz@VBNv/NN'1Zi-1 tag+i word , membersNNPSsh|??NNSlNNP$C?i-2 word drippingRB-NN-?i+1 word requiredWDT?RBB`"ɿINNNSbX9?JJ(\NN/$ @i word negligenceNN?RBi-1 tag+i word IN tennesseeNNPQ?NNPSQi-1 tag+i word RB simpleNNT㥛 ?JJT㥛 ؿi-2 word brokenNNPn?JJPn i word serveJJGzNNSzGVBjt?NNK7A`VBDV-VBP%C @i-1 tag+i word VB filingsNNS?NNi word feelingVBVBG;OnNNCl?JJʡEi-1 tag+i word CC suggestVBP?VBi word instrumentsNNPS~jtNNP~jt?i-2 word centerPOS ףp= '' ףp= ?VBP5^I RB-NNP/$޿VBG/$?JJV-?NNni-2 word draculaJJ1Zd?NNPI +RBR~jtӿi-1 suffix rieINffffffVBZ!rhNNSbX9NNPZd;O?NNPSS?POS!rh?i word confidentialJJ\(\NN$C˿NNPJ +?i-1 tag+i word DT contraJJNN1ZdNNP +@i-1 word hooplaDTCl?RBCli-1 tag+i word POS bidVBN/$ѿNN/$? i-1 word layRBQVBDVBNp= ף?JJMbINRQRPQ?i-1 tag+i word NNS outnumberedVBNPnJJףp= VBDx&1?i-1 tag+i word CC lessVB;OnJJS?5^I ?RBR(\?NNQJJR-i-1 suffix vskVBNw/VBDw/?i-1 tag+i word NN officeNN ףp= NNP ףp= ?i+2 word manuelJJMb?NNPMb i word inchesNN/$NNS/$?i+1 suffix gas FWK7A`JJRd;O?RBRd;OοVBP|?5^NNPMb@NNL7A`?VBGZd;O?CC+JJnIN-?DTB`"?NNS/$NNPS rhi-1 tag+i word VBP flutingVBGMbX9NNZd;@JJMbпi-1 tag+i word , disasterJJ+׿NN+? i suffix NYUVBZ9vNNP9v?i word industrywideLSjtJJQ@NNQRBrh|?NNP(\i word layoffsNNS}?5^I?NN}?5^Ii-1 tag+i word RB managedVBDK7VBNˡE@JJK7 i word tapingVBG1Zd@NNKJJ`" i word tradesNNOnVBNCD?5^I VBP"~jIN%CܿVBZB`"@NNSd;O@VBvi+1 suffix resVBGPn''Zd;NN!rh @RBSQRBRQJJ-@VBSCCIN(\JJSQ?PRP$?5^I ?VBDffffff?VBZ/$DTMNNPoʡNNPSx&1ȿCD{Gz@VBNJ +VBPV-WDTv/ @POSOn?PRP}?5^IRBNNS?5^I JJR|?5^@i-1 word childRP9vVBGS?NN;On?RBRd;O?JJRd;OJJ9vҿi word brushesNNSʡE?NNʡEi-1 tag+i word JJ oversightNNST㥛 NNT㥛 ?i-2 word expressNNMbX9?WDT㥛 ?INd;O?DTV-NNP"~jNNPSMb?i-1 tag+i word NN bargainingVBG-NN-?i-1 tag+i word PRP defiedVBZSVBDS?i word bleachedVBNw/JJw/?i-1 tag+i word DT leanJJCl?NNCl i-1 word aJJx& @PRPm?NNSoʡVB#~jPDT(\IN(\NNPSlJJR}?5^I?VBGMҿFWʡE?VBNCl?VBPףp= RPZd;NNm @RBS㥛?WRBX9vRBR}?5^I@DT$C?$Q?NNPFx?VBZnVBD^I +CDףp= ۿJJSffffffi+1 word allowingNNCl?JJCli-2 word newportJJGz?NNPGzi-1 suffix vanVBZuV?NNSuV i word whinerVBZnNNn?i word originatingVBGjt?NNjt!i-1 tag+i word -START- testifyingVBGʡE?NNffffffƿNNPli-1 word discussingJJGz?PDTGzi-2 word construction VBD"~?VBPʡEJJKINףp= VBZ~jtNNP~jt?NNS㥛?WDTףp= ?VB1Zd˿i-1 word canadianVBN-JJMbXѿVBZ/$NNSZd;?NNPMb?NNPS rh@NNSVBD|?5^?i-1 tag+i word IN crestmontJJR'1ZNNP'1Z? i word jointsVBZB`"NNSB`"?i word recreationalJJK7A`?NN/$ݿVBi-1 tag+i word , airedVBNB`"VBDB`"?i-1 tag+i word NN fieldingNNI +?JJI +i+2 word postmarkedJJPn?RBPni+2 word brooksNNPX9v?VBG'1Z?RBm?NNHzG?JJRmUHmJJZd;Oi-1 tag+i word VBD furtherRB +JJ/$޿RBRx&1@i-2 word planckINzGWDTzG?i-1 tag+i word NN developerVBPClNNCl?i+1 word unitedDTrh|?NNPFxJJMbX9?VBNClѿRB{GzIN{Gz?i tag+i-2 tag RBR ``JJI +?NNI +ֿi+1 word programs NNx&1 @FW+η?JJffffff?VBZSNNSʡE?NNPףp= VBQVBGMbX?VBDHzGJJR5^I VBN)\(?VBPZd;?i-1 word payingRP~jt?NNd;ORBR`"JJR`"@JJd;O?IN~jti-1 tag+i word RB takeVBPS@VBSi-1 word backboneVBNy&1?VBDy&1i-1 suffix .k.VBZOnNN+?VBDw/i-1 tag+i word : releaseVB+?NNP+i+1 word routineNNE?JJEؿi-2 word maintainNNPSKVBGɿNNx&?CDS?JJ|?5^?NNPMbX9ܿi-1 tag+i word NN aiVBZd;OVBPd;O?i word unconsolidatedJJMb?VBDMbi-1 tag+i word TO lowerJJR-RBRK7VBNbX9@i+1 suffix ugeJJCl?IN}?5^IVBS㥻?RPrh|?RBV-?NNX9vVBPS㥻i-1 word resolvedRBX9v?INX9v i word thinINx&1NNSENNPGz?JJq= ףp@NNq= ףpVBNzGRBv/i-1 tag+i word PRP loveVBPZd;?VBDZd;i-1 word israeliNNPS+NNP+?i-1 tag+i word -START- mazdaWDTtVNN-NNPuV?i+2 word helpedNNPDlNNPSX9vRB~jtNNT㥛 @VBN|?5^JJRClJJ㥛 ¿NNS r@i-1 tag+i word NNS propyleneVBPS㥻NNS㥻? i word deeplyNNHzGVBN`"VB-RB ףp=@JJMbi-1 tag+i word VBZ talkingNNPx&1̿VBGx&1?i-1 tag+i word -START- gollustNN'1ZNNP'1Z? i-1 word daveVBNCl˿VBDCl?i-2 word countJJ rhNNJ +RBl?INˡE?i word impressiveVB(\JJ}?5^I?NN/$i-1 tag+i word NNP setupNNSMNNM?i-1 tag+i word VBP isolatedVBPV-VBNV-? i-2 word waitNNFxɿJJFx?i-1 word abnormalNNʡE?RBʡEi-2 word loathsomeVBNB`"?VBDB`"i-1 tag+i word POS automatedJJDlVBNDl@i-1 word visherNNPSCl?NNPCl i word votingVBGMbNN!rh @JJS㥛NNPX9v?i+2 word unlessNNS+JJtVNN/$?VBNh|?5JJRHzG?RBoʡݿi-2 word danglingRPffffffINffffff@i-1 tag+i word IN inspectorNNffffff?JJffffff޿i+1 word filipinoVBZZd;?JJv?NNʡEi-1 tag+i word NNS clearanceVBP^I +NN^I +?i-1 tag+i word TO zNNP`"VBK7ANNˡE@i-1 tag+i word NN policeNNSClNNn?VBDGz i suffix egyNNPoʡNNoʡ? i word adjustJJS㥛VB;On?RBMbNNT㥛 VBD%CVBPjt @i word deliverNNZd;RBHzGINoʡNNPClVB(\@JJ'1Zi+2 word jacketJJm?NNmi+1 word administratorsNN?5^I ?JJ?5^I ڿ i word katoNNV-NNPV-? i+1 word cityVBNMbX9?JJV-?NNPV-?VBG&1?RBOnNNp= ףi-1 tag+i word -START- evenVBNClJJCl@RBL7A`NNPQi+2 word somewhatVBZK7?NNSK7A?NNHzGi-1 tag+i word VBZ nakedVBNPnJJPn?i-1 word vietnamNNPCl?VBPCli-1 word involvedNNSq= ףp?NNq= ףpi-1 tag+i word VBD slowVB{GzܿJJ{Gz?i+2 word union NNP-?VBv?VBGK7A?NN|?5^?VBZʡE?NNSʡEINrh|?DTrh|JJGzVBDA`"VBN r@VBPx޿RB?5^I i-1 tag+i word IN rockefellerJJV-CDףp= NNP|?5^?i-2 word intermissionVBrh|NNPrh|? i-2 word debt VBNCl?RBR&1?VBPKJJR^I +?VBZ333333?RBFxINZd;?NNSK7AпVBT㥛 ?JJI +?NN ףp= VBDq= ףpPDTףp= ?i+1 word cropsJJjt?NNd;OοNNP(\ؿi word imbalancesNNS?JJɿi+2 word causeVBD-?WDToʡ?VBN7A`NN"~INoʡ i word stayVBPK7?RB ףp= DT-NNS|?5^VBK7@NNV-׿VBDZd;ORBRFxi-1 tag+i word JJ democratsNNPSS㥛?NNSK?NNPMbX9i-1 tag+i word IN correctJJ?NNi-1 word weatherVBZw/?NNSGzֿVBN!rhNN㥛 VBD!rh?i word cooperativesNNSHzG?VBZHzGi+2 word discoveredNNS%CNN%C?i-1 tag+i word VBZ dawnsVBZx&1?VBNx&1i-1 tag+i word -START- trinityNNffffffNNPffffff?i-1 tag+i word DT likeNNSZd;OJJ}?5^I@NNףp= WIN ri+1 word tableNNPSw/VBG`"޿NNS?JJ`"VBZ= ףp=NNS(\@NNPV-i word voluntarismFWx&NNl?NNP#~ji+2 word attorneyNNPffffffWDT~jtۿNNn@JJMbIN~jt?i-1 tag+i word -START- previousJJS?NNPSi-2 word windowRPZd;VBG?5^I ?NN?5^I INZd;?i-1 tag+i word VBZ minorJJ%C?PRPx&1NN/$ÿi word increasedJJSVBN rh?NN+VBD @i-1 tag+i word VB individualVBPnJJ7A`¿NNPK7?i word perceptivenessNNQ?JJQٿi+1 word removingRBd;O?NNd;Oοi-2 word possessionRBh|?5?INh|?5i-1 tag+i word VBN softRBSJJS? i+2 word dateNNPVB`"VBN`"?JJRMbPINMbP?DT? i-2 word waveNNSA`"VBGsh|??NN&1?JJB`" i+2 word swayVBrh|?NNSrh| i+1 word wineJJjt?NNsh|?NNPffffff?i+1 word senatorNN{GzNNP{Gz?i-1 tag+i word VBG operatingVBGV-?JJ rhNNDl?i+2 word unchallengedNNMb?NNSMb i-1 word fdaVBZ rhNNS rh?JJ?NNi-1 tag+i word IN growerJJRV-NNV-?i+1 word petrochemicalNNK7VBNZd;OJJ/$@RB(\i-1 tag+i word NN dealingVBG333333?NN333333 i-1 suffix o.VBZuVNNPuV? i suffix MCINNS㥛JJ1ZdNNPZd;@i+1 word tigueINtV?NNtVi+2 word videotapesVBDd;O@VBNK7JJ+i-1 tag+i word IN kodakJJR/$NNP/$?i word handheldNNjtJJjt?i+1 word shipmentsJJNbX9?VBG~jtNN7A`@VBDK7RBR㥛 JJR㥛 ?i+1 suffix nnyNNˡEԿNNPMbVBOn?JJ ףp= i+1 word petrieNN!rhNNP!rh? i+1 word oldNNzGFWK7A`VBP}?5^I?JJCl?VBZ r?NNS rVBG~jt?i-2 word certificatesNNPS^I +NNSK7ANNm@NNPV- i suffix htyRBʡE?RBSQJJx&ѿNNGz׿PRPOnӿi-1 tag+i word DT briefJJh|?5@NNh|?5i-2 word hookerVBN~jt?JJ~jti-1 word bestedJJmտRBR㥛 VBGm?JJR㥛 ?i-1 word terriblyVBN~jt?JJ~jtп i+2 word thisRBR{GzUHV-?VBB`"?MDX9vWRB~jt?DTT㥛 ?TOoʡ?NNS|?5^VBG+?JJMbCDnVBZp= ף?LS"~ʿJJRCl?NNPSINx&1NNPSQ?VBNx&?RPX9vNN%C?POSMRB= ףp= @VBDy&1|VBPMbWDTtVοPRP(\PDTK7i-1 tag+i word -START- vickersNNS7A`NNP7A`@i-2 word largelyVB"~jJJHzG?NN|?5^?JJR"~j?RBq= ףpNNS333333ÿ i word atticsNNSQ?NNQ i word normsNNS/$?NN/$i-1 tag+i word JJ artNNJ +?JJJ +i-1 tag+i word CC renewedVBS㥛VBN|?5^?JJS㥛?VBDKi word subgroupsVBP'1ZNNS`"?NNoʡi+2 word vacatedCDh|?5?JJh|?5οi-1 word supportsNNʡE?JJʡEi word cowardsNNSMbX?JJMbXi+2 word globallyJJR'1Z?NN'1Z i+2 word eggsDT(\ݿNNSrh|RB9vNN rh?INQ@i-2 word movementNNP+?JJ+i-2 word power VB ףp= VBG= ףp=JJq= ףp?VBZ/$?NNSsh|?@NNPV-NN/$?PDT)\(?VBNQVBPNbX9ؿRBGz?DT)\(i-1 tag+i word TO swapVBS?JJSӿ i+2 word mciVBZ ףp= ?NNS ףp= ǿ i+1 word banVBGvNNx&?JJi+2 word lawsonDTNbX9пRBEIN5^I ?i+1 suffix egaNNQVBNX9vWDTK7AJJX9v?INFxɿNNPʡE?i+2 word cholesterolNNSZd;ONNZd;O?i-1 tag+i word IN fantasyNN +@JJ +i word communicationNNQ?JJQi word unlovelyRB"~jJJ"~j?i-1 word chlorofluorocarbonsVBP}?5^INNZd;O@JJ(\i-1 tag+i word VBP doubtsNNS"~j?RB"~ji+1 word virginiaNNh|?5JJ+NNP~jt?i-1 tag+i word NN highsNNSp= ף?NNp= ףi-1 tag+i word CC hispanicJJ&1?NNP&1i-1 tag+i word JJ hollerVB(\?NN(\i-1 tag+i word NN knowVBPDl?NNDl i-1 word wildNNZd;NNSZd;?i-1 tag+i word DT yearNNˡE?JJˡEi-1 tag+i word RB waxedVBN$C?JJ$C i-2 word canVB\(\@RBRnVBNCl@JJw/?JJRףp= VBDV-NNSZd;NNPʡERPMbX9ĿRBOn?NN-IN-VBP'1ZVBGClDTX9v@$RQi+2 word jerusalemJJ&1NN&1?i-1 tag+i word NN towersNNP-?VBZZd;NNSjti-1 word carriersVBoʡVBPoʡ?i+2 word murataJJ(\NN(\?i-1 tag+i word PRP$ newestJJSv?NNvi-2 word removedVBv/?JJv/i-2 word profileNNSʡEVBZʡE? i word aiVBZd;OVBPOn@INoʡVBDMbi+2 word brickRPZd;INZd;?i word republicanNNPQ?NNPStVNNOnJJNbX9?i word palestinianNN-ƿNNPL7A`ؿJJGz?i tag+i-2 tag VB ,RPQӿFWMbP?VBDQRBR"~jVBN}?5^I?NNPMb?VBGffffff?NNK7APOSL7A`?JJR"~j?DTFx?PRP$B`"?VB/$?RBS㥛?INNNS5^I ?VBZMbX?JJʡERBSmݿWDTy&1PRPK7i-1 tag+i word DT dressNN9v?JJ9vi+1 word delaysVB{GzVBG)\(RBR +NN)\(?JJDl?i+2 word desirableVBGENNE?i+2 word parliamentaryVBvVBG rh?NNX9vi+1 suffix tax DTK7ٿCDPnNNS%C?NNP ףp= JJ rh@JJR/$?INd;O?VBNMbXٿRBQVBZ\(\?VBGuV?NNI +VBD$C i+2 word peatNNPn?JJPni-1 tag+i word `` techniciansNNSbX9?NNbX9i word proprietaryNNMbؿJJMb?i+2 word announcingRB!rh?JJ!rhi-1 tag+i word CC promptedVBN"~VBD"~?i-1 word pattisonNNPS}?5^INNP}?5^I?i word unflakyJJl?RBli-1 word ignoringNNjt?JJjtֿi word nosediveJJK7?DTjtĿVB rhNN{Gzi-1 suffix tutNNPSENNPE?i+2 word gainsVBG(\?NNV-VBDv/?VBN!rhJJJ +VBffffff?i-1 tag+i word VBD prettyRB?5^I @JJ?5^I i+1 suffix racVBNuVJJuV?i+1 word airlinesCD/$?NNP\(@JJSQJJ%C  i-1 word 'n'JJPnNNPPn?i tag+i-2 tag FW VBGRB+?JJ+ i word crustVBv/տVBNSNN(\?i-1 tag+i word -START- glaxoNN7A`NNP7A`?i-1 tag+i word IN strokesVBPSNNSS?i-1 tag+i word WP thatDT!rhܿWDT!rh?i word harvestedJJSۿVBNS?i-1 tag+i word , scheduledVBN{Gz?VBD{Gz i word broadVB= ףp=NNP= ףp=? i word fluidVB&1ڿNN(\?JJX9vi-1 tag+i word VB bloatedVBN~jtؿJJ~jt?i+1 word undervaluedRBSףp= ?JJSףp= i+2 word greedNNw/NNPw/? i-1 tag+i word JJ pharmaceuticalNNSSJJ/$?NNGz׿i-1 tag+i word -START- bouyguesNNS/$ۿNNP/$? i-2 word irs VB^I +?NNPS rh?VBGףp= NNP|?5^JJX9vNNn?VBNh|?5?RB1ZdINuVտRPuV?i word integralJJ"~?NN"~i-1 word anything PRPA`"RBMbX9?NNP+VBN!rh?WDTp= ף?INq= ףpVBZ!rh@JJJ +@NN/$RBRSJJR!rh@NNS$Ci-1 tag+i word DT playoffNNx&1?RB rhVBNSݿi-1 tag+i word , euromarketNNPS/$ƿNNQNNP㥛 ?i+2 word genes VBGS?RB)\(VBNGz?VBPClJJGzοDT)\(?NNSVBDCl?RP= ףp=?i-1 tag+i word , usheringVBGx&1?NNx&1ؿi+1 word variesNNT㥛 ?JJV-NNPQտ i word alumniVBV-NNSL7A` @NNlJJrh|Ͽi-2 word oaklandVBDDl?VBjtܿJJRp= ףNNA`"ӿi tag+i-2 tag VBP IN JJRm?WDT/$?VBNV-?VBxJJ/$?NN(\VBDMbDTy&1?RPQRBR'1ZRBK7A`INS?i+1 word fixedMDʡEVBDʡE?i+2 word measurementsWDTzGINzG?i-1 tag+i word -START- majorJJsh|??NN~jtNNP ףp= i-1 tag+i word DT asINw/?VBPffffffRBCl绿VBDףp= i word notedVBNK7JJMbVBD/ݤ@i-1 tag+i word CC marksVBZ/$?NNSZd;ϿRBSi+2 word technologiesRB"~ڿNN)\(RBRQJJRQ?JJI +?NNPZd;O?i-1 tag+i word DT tadNNJJQRB)\(?i-1 word bureauVBZ}?5^I?NNS}?5^I i+1 word lakeNNS/$޿NNP/$? i+1 word avecNNSףp= NNףp= ?i-1 tag+i word RBS renownedVBNV-JJV-?i word theoristsNNSffffff?NNPffffff i+1 word keptNNn?VBP;On?WDT|?5^?JJnѿIN|?5^VB;On i word begsVBZ#~j?VBP/$ۿVBDGz i word allureNNSV-NNV-? i+2 word mdUHx&1NNP'1Z@NNPS(\NNS+i-2 word formedVBQ?JJMb?NNZd;Oi+2 word reports NNPVBnʿRPK7FWV-VBZMbX9INZd;?NNSMb?JJS?NNMVBP(\?RBQi-2 word escortVBNx޿JJx?i+1 word quarterlyVBGS㥛NNClVBDS@VBN"~jJJ/$@VBX9v߿ i word bondsNNS +?NNPGz?VBZV-ϿNNPSV-ݿi-2 word telephonesVBDK7ٿJJMbXVBNʡE?NNHzG?i-1 tag+i word VBD altogetherRBJ +?NNJ +i-1 tag+i word NNS puzzledVBNEJJˡEVBD!rh?i-1 tag+i word VBN reluctantVBNRQJJRQ?i-1 tag+i word VBP declinedVBNM?VBDMi+2 word forecastsVBZ +NNS +?i-1 tag+i word NNP rileyNN ףp= NNP ףp= ?i-2 word breakerJJMb?NNMb i-1 word endNN/$@RB/$?NNS?5^I NNPVB;OnRPd;O?JJ#~ji-1 suffix ret JJMbXVBZ rh?DTd;ONNP(\NNʡE?VBD+?POS rhRB+INd;O?i-1 tag+i word CD russianNNS-JJ-?i+1 suffix iedNNPS/$RBh|?5 @NNP/$?VBGbX9JJB`"NNL7A`?VBD)\(?VBZ rhVBQ?VBNq= ףpտINQJJRQRBRףp= ?VBP~jtWDTjt@NNS-@i-1 tag+i word : obedienceNNS?NNPSi-1 tag+i word WDT advancedVBZ7A`VBD7A`?i-1 tag+i word DT indianNNPlҿJJl?i+2 word cambodiaNN1ZdNNP1Zd?i word pyrotechnicJJCl?NNCl i word curbJJV-VB-?VBP^I +NN}?5^I@i-1 tag+i word DT lookNN(\?VB(\i-1 tag+i word NN commentNNRQ?JJRQi-1 tag+i word VBN materialNNSNNQ?JJp= ףi-1 tag+i word , criticizedVBNX9vVBDX9v?i-1 tag+i word CC indiansNNPSCl?NNSCl i word portNNPnJJPn?i-1 tag+i word VBZ accurateVB(\ڿJJK7A?NN+ηi word licensedVBN{Gz?JJS㥛ܿVBDS?i word defectiveVBP +JJ/$@NN rhi-1 tag+i word VB believedVBN+?NNS+i-2 word lawrenceVBZ-?NNS-˿NNnNNPn?i-1 word ekonomicheskayaNNRQؿNNPRQ?i-1 word monopoliesRBp= ף?JJp= ףi-1 tag+i word JJ !DIGITSNNP#~j?NNPSI +NNZd;CDI +JJ@NNSlڿi+2 word horseVBCl?VBPCl׿i-1 tag+i word TO aboutVB/$RBA`"@IN^I +?i-2 word federatedVBZV-ͿNNPSHzG?NNPSi-1 tag+i word JJ hardJJCl?NNCli+1 word unhealthyVBQ?VBPQi-2 word theatreVBPmݿVBm? i word partlyRBˡE?NNPˡEԿ i word dealsVBZףp= @NNSI +?RBNN~jti-1 tag+i word VBZ underneathJJ"~jRBX9vϿINV-?i-2 word barbersVBZHzGNNSHzG?i-1 tag+i word DT depressingVBG= ףp=JJ/$@NNSi-1 word hondaPOSL7A`?VBZL7A`堿i-1 tag+i word IN nekoosaNNPSENN/$ @NNPKi-1 tag+i word NNP paradeVBNbX9ؿNNPNbX9?i-1 tag+i word -START- nothingNNrh|?NNPrh|i word australiansNNPSRQ?NNPRQؿi-1 tag+i word IN natureNN7A`?JJ7A`ڿi+2 word doubt NN-?CDsh|?VBNʡEIN-VBZMbNNSʡE?RB-?VBDʡE?POSMb?JJSi-1 tag+i word NNP fitnessNNp= ףNNPp= ף? i-2 word fullJJSuVNNK߿VBGX9v?JJ+?RB{GzԿi-2 word bequeathedNNSQ?NNQi-1 tag+i word NN backedVBN rhѿVBD rh?i-2 word publishedDTuVNNPˡE?VBG"~JJS㥛?NN"~?WDTtVRBB`"INV-?i-2 word chargedJJʡE?VBDT㥛 VBNT㥛 ?VBGףp= ?NN +i tag+i-2 tag NNPS VBPJJS?INSi-1 word otherJJ-?NN;OnRB"~DTK7A`NNPSsh|??VBD#~j?JJRS?VBx޿VBG#~j@RBRx&VBNMb?VBZ$CNNSK׿NNPFxٿVBPK7?i+2 word manginoNNPQ?NNQ i-2 word gov.JJ= ףp=NNnNNP{Gz?i-2 word elixirJJjtNNSK7AؿNNjt?i-1 tag+i word , exposedVBNʡE?VBDʡEi+1 word absolvingNNV-?JJV-i-1 suffix mbsJJRbX9?RBRbX9i-1 word strictNNSNbX9?NNS?JJi word insectsJJV-NNSV-?i-1 tag+i word JJ yieldNNףp= @JJZd;OVBDK7A`VB9vNNSףp= i word hard JJS+RBR9vPRPClJJX96%@IN'1ZܿCD7A`RBPn@NNScVBD;OnJJR5^I VBNI + i word chiefsVBZy&1NNPS?NNSV-?NNV-NNPI +i-1 tag+i word DT remarkNNSRQNNNbX9?JJQi word petroleumNNPS!rhNNS%CNNʡE @JJV-NNPK?i-1 tag+i word DT sweepNN7A`?VBNX9vJJtV޿i-1 tag+i word CC armyVBy&1VBPQοNNV-? i word laughVB-NNm@JJX9vi-1 word waftingNNSK7?RPQNNKi-2 word workstationsIN(\@VBNQJJ(\VBDQ? i+1 word luckNNP`"?JJ`" i+2 word buyNNS"~ڿVBGrh|߿VBZm?NNM@VBPv/?JJ +?JJRHzG?VBq= ףpRBA`"VBD{GzINX9v?NNPSClRPKVBN!rhԿi-1 tag+i word -START- ultimateNNPV-?VBPNNni word manzoniNNQNNPQ?i+1 word describingNNB`"?JJB`"i-1 tag+i word `` physicalJJh|?5?NNPh|?5i-1 tag+i word IN spiteNN%C?RBlNNPi-1 tag+i word IN shakespeareNNPJ +?NNJ +i-2 word instrumentsVBGʡE?NNSʡEۿVBZʡE?VBPʡEi word quietlyPRP`"RB`"?i-1 tag+i word NNP runsVBZQ@NN-VBDxi-1 tag+i word PRP backNNPn?VBD(\VBʡERP;On?RB~jt?i-1 suffix edyVBZGzNNSGz?WDTKINK?i+2 word indicatingVBG5^I NN5^I ?i+1 suffix banVBGvJJ`"@NNHzGVBNq= ףpi-1 suffix iwaNNףp= NNPףp= ?i+2 word arthurJJSGz?RBSGzi+2 word fictionJJFxNNFx? i word fasbNN rNNP r?i word geometricJJ"~?NN"~ i word taleNNGz?JJDlѿNNPMbX9?NNPSB`"i-1 tag+i word JJ !HYPHEN NNB`"VBNˡE?RBV-?VBZ#~jNNPOnVBGl?VBDnCDCl?JJRh|?5NNStV?JJS㥛@ i suffix ersFWxIN"~VBZ rh@DT1ZdNNS1ZD3@VB +RB$CVBN~jtNNPX9vNNT㥛Ġ!RBRV-JJ`"yNNPSI ++@RPRQCDJJRS㥛VBDn VBPMb i word echoedVBZq= ףpVBP(\VBNMbX9?JJMbX9VBD333333?i-1 word justifyingJJK7?VBDK7ٿi+2 word initiallyNNK7A`տJJ1ZdӿVBGMb? i+1 word wonNNPSK7A`NNPK7A`?i word rapeseedsNNSV-?VBNV-i-1 tag+i word VBP crazyVBN rhJJ rh?i word arrangedVBNh|?5?NN+VBDL7A`пi-1 tag+i word DT slightestJJSx&1?JJRx&1i word revenueVB333333NNPS`"RB333333NNL7A`e@JJClNNPZd; i+1 word gripNNZd;O?JJZd;Oi-1 tag+i word NNP lateVBZsh|?VBP rhRB@JJv/?NNP^I +i-1 tag+i word POS targetVBZKNNSףp= NN rh?i-1 tag+i word NNP votersNNPS)\(?NNP)\(ܿi+1 word elsewhereJJI +VBZпNNS?NNI +?i-1 word editorialNN"~jRB"~j?i-1 tag+i word NNS clamberedVBN rhVBD rh?i-1 word startlingNNSsh|??RBsh|? i+1 word sandNN%C@VBN!rhܿJJx&NNPHzGi-1 word motorolaVBZ~jt?NNS~jt i suffix kly VBx&NNn INh|?5RP-NNST㥛 NNPT㥛 ؿWRBbX9RB}?5^@VBP1ZdJJuV @DT ףp= i-1 tag+i word , grandchildrenIN#~jNNSDl?VBDd;Oi+1 word preflightJJQ?PRPQi-1 tag+i word NNP thatDT rh WDT㥛 @INx?i-1 tag+i word , contrastsVBZS?NNSS i suffix gnsVBZZd;O @NNSoʡ@NNPx&1JJmNNI +VBDSRBFx i suffix BNLDTL7A`NNRQNNPS㥛?i-1 tag+i word NNS fasterRBR"~@RB/$JJR= ףp=i-1 tag+i word NN flippingVBG-?NN-i-1 tag+i word IN neutralizesJJQοVBZQ?i-1 tag+i word RB fledVBD +VBNbX9?JJq= ףpݿi+1 word fineryNNSQNNp= ף?JJ~jtӿi-1 suffix aepNNPw/NNPSw/?i-1 tag+i word NNP makeupNN;On?NNP;On¿i word liturgyNNPS-NN-?i-2 word pathsNNS333333JJK7A?RBZd;Oi-1 tag+i word `` sometimeNNPSv/RBPn?NNP\(\Ͽi+2 word slatedNN(\?NNP(\i word inboundJJsh|??NNsh|? i suffix JCPNNKNNPK? i word tenantJJV-NNV-?i-1 word resembleNNSףp= ӿNNPףp= ?i-1 word harrisVBClѿNNPCl?i-1 suffix phyVBN"~NN"~?i-1 tag+i word RB grimJJ|?5^?NNFxFWCli-1 tag+i word CC settledVBDVBN?i-1 tag+i word NNP lineNNPCl?INCli+2 word initiativesVBNClJJCl?i-1 word obtainingVBGS㥛NNS㥛?i-2 word decoratedJJ+?NN+i-1 tag+i word , mowVB&1?VBPGzVBD%Ci-1 tag+i word IN handsomeNNSJJS? i word dipVBMNNPn?VBDQ i word piersNNPSSNNPS?i-1 tag+i word : tradingVBGMҿNNM? i word votesVBZq= ףp?NNSv?NNA`"JJB`"i-2 word sheiksRBx&1JJ5^I @NN+i-1 tag+i word NNS heldVBD&1?RBjtVBPbX9VBNx&JJsh|?@ i+2 word flayNN5^I ?JJ5^I i-1 word deliciousRBx&1@JJ`"INh|?5i+2 word youngVB\(\RB ףp= ߿NNS?VBNMbXѿVBP%C?JJClNNSMbX?NNPv@i-1 suffix ctoVBPNNS?JJ"~j?NNQ뱿FWV-i-1 tag+i word NN collapseVBZK7VBK7ANNSB`"NNA`"@i-1 word criticallyRB +?JJ + i-2 word cbs RB(\ſNNS|?5^?NNP(\?RPM¿VBNuV?VBPbX9VBDuVIN+VBZEVBq= ףp?JJQ?NNv/? i word astrayNN-RB-?i+1 word collapseWDT;OnNN5^I ?JJ5^I IN;On?i-1 suffix hus NN/$?VBDA`"RBRMbX9VBN rh?VBZ`"ֿINmVBm?VBG= ףp=?JJZd;OVBP"~jRBL7A`?i-1 tag+i word VBP intolerableJJK7A?RBK7Ai-1 word monarchyVBNX9v?NNS㥛INV-տi word bananasVBP;OnNNSV-?VBDʡE i word glennVBNףp= NNp= ףNNPMbX9?i-1 tag+i word RB reactVBV-?NNV-i-1 tag+i word NNP warnsVBZ^I +?NNP^I +i+1 suffix nenNNSI +JJV-?NNn i word hhsNN^I +NNP^I +?i+2 word again VBJ +NN;On?VBD"~j?CCWDTQINMDT+NNS rh?JJClVBN"~j̿VBP5^I ?RBv/@VBZv/? i-1 tag+i word IN administrativeJJMb?NNMbi-1 word brusselsNNPSlVBG(\?NN%CJJnڿNNPl?i-1 tag+i word NN providedVBNClٿVBDCl?i-2 word strollVB'1Z?NN'1Zi-1 suffix olyNNPoʡ?NNoʡ i word reliesVBZh|?5?NNSh|?5i word manualsNNS/$?NN&1ڿNNPˡEi+2 word pilsonVBGd;O?NNd;OJJx&1?NNPx&1 i word pizzaNNS(\NN(\?i-1 tag+i word RBS tellingVBGSſJJx&1?NNl i suffix urdNNSx&JJQ?NNli+2 word alarconNNZd;O?JJZd;Oi+2 word hughesVBN|?5^?VBD|?5^i-1 tag+i word NNP allenNNPSL7A`пNNPL7A`?i-1 word curdlingNNsh|?NNPsh|?? i word lestVBZ= ףp=VB{GzVBPy&1ԿJJSʡEINE@i-1 tag+i word NNS pledgedVBNRQ@VBDRQi word farmingtonNN1ZdNNP1Zd?i-1 tag+i word , explainingVBGX9v?NNX9vi word midmorningNNP rhٿVBGd;ONN}?5^I@RB$Ci-1 tag+i word TO rapidlyRB}?5^I?VB}?5^Ii-1 tag+i word WP knowsVBZ\(\?NNS\(\i word vaguelyVBNRB?i-1 tag+i word IN exxonNN1Zd@NNP1Zdi+2 word nursingNNPL7A`JJRL7A`?INHzG?DTHzG i suffix abaNNPffffff?UHQ޿NNq= ףpi-1 tag+i word RB describeVBMb?VBPMbi+1 word objectionsNNPv/ݿJJv/?i-2 word homesVBVBG333333?NN333333JJ?i word recoveryNN5^I ?NNP5^I i+1 word antitrustJJ"~j?NNP"~ji-1 tag+i word RB quintupleVBZK7ѿVBZd;RB\(\?JJn i word foulNNMbJJ?5^I ?RBRGzi tag+i-2 tag RP VBZ JJS?RBS1ZdEX/$INMbDT rh?NN5^I JJS1Zd?RBp= ף?NNSQ?i-1 tag+i word VB rampantJJ}?5^I?NN}?5^Ii word insuranceVBZNN+@RBQNNPClۿi-2 word confluenceNN@NNS rhJJRSJJli word fittingVBG?5^I NN!rh?JJ;On?i-1 tag+i word `` indexNNNbX9?NNPNbX9ȿi+1 suffix aumNNPS\(\NN}?5^I@NNPL7A`i word unseemlyJJףp= ?RBףp= i+2 word slowedNNPS/$JJK7?NNPʡEͿi word administratorsNNP;OnNNPS;On?i-1 tag+i word JJ peaceNNS+NN~jt?NNPZd;Oi word profferedVBNy&1?JJy&1i+1 word britain VBN|?5^WDTy&1INB`"?NNP'1ZVBDq= ףp?CC%CJJ'1Z?VBZh|?5?DT%C?NNSh|?5VBx&RPX9v?i+2 word orchardistsVBZHzGNNSHzG?i-1 tag+i word PRP bothCCʡEDTOn@VBPDlRPxi-1 tag+i word `` quickVB$CRB rh@NN'1ZJJ ףp= ?i+2 word materialsNNS5^I VBN ףp= VBD ףp= ?VBZ5^I ?i+1 word uneducatedRBSINS?i-1 tag+i word WDT elixirNNCl?RBCli-2 word regulatedNNSDlRBDl?i-1 tag+i word CD leftNN"~jVBD"~j?i+2 word balancingRB'1ZIN'1Z?i-1 tag+i word NNS announcedJJGzοVBD(\?VBN+ÿi+2 word methodologyNNRQ?JJRQi-1 tag+i word POS moveVBB`"NNʡE?JJi-1 tag+i word DT boxesJJI +NNSB`"?NNv/i-2 word designedVBNʡE?RBKNNS +NNPZd;OVB(\@JJGzNNx&1?i word clipboardNNB`"?RBV-NNS rhi-1 suffix adoNNPSK7?NNPK7ɿi-1 tag+i word DT legitimateJJ+?NN+ i word boreVBZvVBPʡEVBDn@i-2 word brunerJJ333333?RB333333i-1 tag+i word JJ omnibusJJ|?5^?NN|?5^ i word tumorNNx&@JJZd;ORB= ףp=JJRI +ֿ i-1 suffix ifNN$CVBDh|?5CD~jtÿVBP$CPRP%CܿVBGp= #CCv/DTMb@EXV-?PRP$)\(?JJ/$?VBNv/@RBCl?INX9vNNPxNNS!rh?i+1 word oustedNNˡE?JJˡEi-1 tag+i word `` gloomierJJRV-?JJ/$FW$Ci+1 word clearingJJSlVBPV-ϿJJ+NNP-?VBʡE?NNPS-NNn?i-1 tag+i word NN trusteesVBZA`"NNSA`"? i+2 word hardNN+VBD= ףp=ʿVBPMbVBN9v?RB+?i-1 tag+i word VBG representedVBNjtԿVBDjt?i-1 tag+i word VBZ taxableVBN= ףp=JJ= ףp=?i-1 tag+i word DT arcticNNP/$?JJ/$i-1 tag+i word NN entitiesVBZX9vNNSX9v?i-1 tag+i word NN scienceNNZd;NNPZd;?i+1 suffix oadJJRQȿDT?NNSx&?NNP rhNNPSy&1NNClѿVBNK?VBP-?VBZ`"VBGy&1?VBDClӿPDTV-ϿWDT/$INoʡi-1 word considerationRBNbX9INNbX9?i-1 tag+i word VBG followedVBNPn?VBDPnпi-1 tag+i word `` holeVBZzGNNZd;O?JJ`"οi-1 tag+i word DT electricJJ1Zd?NN1Zdi-1 tag+i word -START- ericNN{GzNNP{Gz?i-1 word stake RBRPn?VBPX9v?WDTjtINv@JJV-?NNV-RBQDTS㥛ؿ$ףp= i+1 suffix pleRBL7A` @WPSWDTjt?INGz߿VBZw/?NNS ףp= VBN9vNNJ +?JJS= ףp=?CD?VBPˡE?JJV-@DTZd; VBjtNNPS/$VBDSRBS= ףp=JJRQ?VBGzG?PRP\(\NNPni-1 tag+i word NNP tiedVBD+?IN+ i word anyoneNNPzGNNS|?5^NNT㥛 @CDZd;i-1 tag+i word DT leftoversNNPS(\NNS㥛 NNPMbX9?i-1 word estimatingDT{GzIN{Gz?i-1 tag+i word RB rawVBDZd;JJZd;?i-1 word ballooningNN'1Z?RB'1Zi-1 tag+i word DT aideNNCl?JJA`"RBx&ѿ i word wrongNNRBx&INB`"JJ?5^I@VBPS㥛 i suffix myeNNS333333ÿNNK7A`տNNPx?i-1 tag+i word VB masseRBMbX9FWMbX9? i-1 word keanNNbX9NNPbX9?i+1 word islanderJJףp= RBQ뱿NNPGz?i+2 word radiantPRP$RQPRPRQ?i-2 word translatedJJx&1NNPx&1@ i suffix inyJJ- @NNHzGVBN+RB ףp= ߿NNS/$NNPy&1?VBCli-2 word appliesJJq= ףpݿVBFxVBNjt?i-1 tag+i word NN financierNNCl?RBCli word improviserNNSQNNQ?i-1 tag+i word NNS designedVBNCl?VBDCli+1 word requestsNN ףp= ?JJRV-?RBR9vVBN^I +?JJsh|?VBGQ? i suffix GDPNNNNP?i+1 word research NNP/$?RB+VBDZd;O?VBPZd;?JJK7?VBZ1Zd˿NNK7POS1Zd?VBNDTʡEi-1 tag+i word NNS blendingVBG{GzNN{Gz?i-1 tag+i word JJ depressionNN +NNP +? i pref1 nDTMb@JJNbX9@RPV-NNSx&1@CCCl @TOV-?CDlVB7A` VBGM VBPClWDT+VBZSNN333333?JJRMb?``)\(@PDTV-?EXV-MDQ@NNPSy&1RBB`"[@RBRVBDjtVBNx&?PRPx&JJS-?FWZd;?NNPw/],RBS"~jINʡE @UH?i-1 word simplifiedVBGjtֿNNjt?i-2 word angelsNNPSZd;?NNS$C?JJ㥛 i word futureNNPsh|?ſVBT㥛 RBS㥛NNCl VBPI +JJ^I @NNSy&1 i word treatsVBZZd;O?VBPZd;Oi-1 tag+i word WP understoodVBP"~jVBD"~j?i-1 suffix royVBN"~jVBD"~j?i-1 tag+i word -START- justJJSףp= RB7A`P@NNPZd;VBRQȿJJFxNNx&CC|?5^ i+1 word gmVBG5^I ?JJ`"NNٿWDT|?5^RBS㥛ԿIN|?5^? i suffix mcoNNSx&1ԿNNP{Gz?NNPS`"i-1 tag+i word NNP moneyNNw/?NNPw/i-1 tag+i word DT tropicanaJJQٿNNPQ?i word allegingVBG!rh?JJGzIN'1ZԿ i word bodyNN!rh?RB"~NNPA`"? i word wantedVBN㥛 JJtVVBDHzG@i+1 word accomplishDT?WDTףp= ۿVBHzGi-1 tag+i word VBD unrelatedJJ r?RBoʡVBNKi-2 word analyzeNNy&1?NNSy&1JJ= ףp=?RB= ףp=ڿ i word marianJJMbNNPMb?i+1 word decentJJK7ɿRBK7?i-2 word never VBPClRBV-?IN;On?VBG|?5^?VBNDlRP㥛 ҿJJJ +?VBDv?PRPT㥛 ?PRP$T㥛 VBZd;O i-1 tag+i word VBG conservativesNNPS?5^I ?NNP?5^I i-2 word fragmentedJJMbRBMb?i+1 word british NNPSrh|VBG"~j?JJ9v?RPK7NN?5^I CCd;O?INK7?DTˡE?NNPjti-1 tag+i word NN alongRPPn?NNQRBI +޿INMb?i-1 tag+i word VBZ !DIGITSNNP"~?CDEԸVBN1Zdi tag+i-2 tag PRP$ (NN/$@JJ/$i-1 tag+i word RP outIN+?CD+i-2 word something JJK7A@VBNx&1?POSE?VBZ%CVBG rhVBDsh|?ſRBClۿNNSx&1NN^I +׿ i word croweNNPT㥛 ?NNPST㥛 i+1 word actingVBZS㥛POSS㥛?JJbX9VBNbX9?i-1 word oracleNNPSQNNPQ?i-1 word hopesIN{Gz?VBDV-?VBN}?5^I̿VBPʡEWDT{GzRBSi-1 tag+i word WP leftVBPGzVBDGz?i+1 word headedNNS333333RB333333?i+2 word peddlingNNSm?VBZmi-1 tag+i word , hopeVBDClVBx&ѿVBPK7A?i-1 tag+i word VB liedJJMbVBDMb? i suffix vecVBZ rhVBPףp= FW㥛 ?i+2 word evolveVBNV-JJV-@i+2 word seniorityVBDSNNPS?i-1 tag+i word DT pillarNNzG?JJzG i word rentVBX9v?VBP#~jNN/$?JJV-i-1 word groupWDTMbX9@DT|?5^NNSuVNN\(\VBN rhPOSd;O?JJMbX9VBGK7A?VBDT㥛 @IN$CVBZ\(\@NNP+?RBd;ORBRw/?i-1 tag+i word VBP neitherDT?JJS㥛RBDlѿi-1 word adequatelyVBS?VBNB`"NNSVBDB`"?i-1 tag+i word VBN broadcastVBNX9v?JJX9v i-1 tag+i word -START- operatingVBGx&1NNd;O @NNPˡEi-1 tag+i word CC budgetsVB^I +NNS^I +? i+1 suffix jDTB`"NN%CNNP333333?i+1 word countersVBN5^I JJ|?5^NNP5^I ?NN|?5^@i-2 word dollar VBp= ףNNd;ORBR~jt?VBPSտRBA`"?NNP\(\׿RPFxJJA`"?CC'1Z?JJR~jtINjt@VBZK7i+1 word earlier VBN/$@VBP?5^I ڿJJMNNSMb?NNq= ףp?JJRMbRBzGҿVBD rhVBZM?NNP`"NNPSFx?VBG!rh i word cheerNNS333333NN7A`?INClVB|?5^@VBPi-1 tag+i word JJ signedVBNw/?VBDw/ i word better NNP(\µ?NNX9v~$RBR+ @JJRMbX @IN)\(ܿVB5^I RB +@JJGzVBZ(\ i-1 word ribVBZB`"NNSB`"?i word goddessVBP-NN-?i-1 tag+i word CC gutterNNGz?JJGzi word sundaysNNPSDl?RBˡEܿNNPi+1 word substantiallyVBV-?NNV-VBNnWDT"~@RBn?INʡEDTFxi-1 tag+i word VBG americanJJMbXNNPMbX? i suffix ody NNF%@VBP7A`?JJK?NNPRQVB?5^I RBHzGINSVBZV-DTOnNNSni-1 tag+i word VBD overRP`"VBNh|?5RBK7A`@IN}?5^Ii-1 tag+i word CC conspiracyJJMNNM?i-2 word publishWDTHzG?INHzGi-2 word lendingNNPCl?VBClVBG㥛 NN㥛 ?VBPZd;?JJZd;i-1 tag+i word -START- videoNNPQ?VBNp= ףпNNEi+2 word fennelNNS rhNN rh?i-1 tag+i word VB damageVB1Zd?JJ1Zdi+1 suffix chyJJS?DT+NNSRB+?i-2 word inspectVBGw/NNw/?i-1 word ruling NNP`"VBG(\?VBDMVBZffffff?INNNSClӿNNPSK7?NN(\WDT?i-1 tag+i word CD politicsNNPSGzNNPGz?i-1 tag+i word IN skiJJQ?NNQi-1 word cheapNNX9v?JJX9vINS㥛RBS㥛?i-2 word bestedNNV-VBGK7A?JJx&1RB\(\?i word takeoverIN9vNNP&1NN|?5^@i-1 tag+i word DT consequencesNNS|?5^?NN|?5^i+2 word amountRBRQ@NNPDTMb?JJ(\IN1Zd?VBZK7ѿVBZd;i-1 tag+i word DT fccNNP333333@NNPSuVJJ-i word tithingVBGZd;ONNZd;O?i+1 word reluctantJJRZd;O߿RBRZd;O?i-1 tag+i word VBP wonVBN%C?VBD%Ci-1 word strengthenedRBRHzG?JJRHzG i suffix adeINnNNSQNNPS-JJy&1VBD}?5^@VBPl?RB9vRP`"NN/$?VBZNbX9JJRjtֿNNPQ8VB'1Z@RBSVBNOn@CDB`"i-1 tag+i word VBD renewedVBNv?JJvi-1 tag+i word TO softVB333333JJ333333? i word stoneNNP1Zd@JJ+NN\(\?VBN ףp= CD+RB5^I NNSX9vi tag+i-2 tag FW -START-CCQ?NNPQi+1 word episodeJJ(\?VBN(\ڿ i+1 word gnpNNV-?NNSd;OJJn?i-1 tag+i word NNP waterNN rhNNP rh?i-1 tag+i word -START- gattJJd;ONNPd;O?i-1 tag+i word VBN homeJJV-RBMNNQ?i-1 tag+i word PRP finishVBP!rh?JJ!rhܿi-1 word purchase JJRA`"?VBNmJJV-ҿVBZ333333?NNS333333ÿRB/$?NNn?IN#~jNNPˡEVBDm?RBRA`"i+1 word performancesJJɿNNPI +?VBGPnNNOnÿi+2 word dailyCCV-ͿVBPMbX?JJx&1?INjtNNS?VBMbPVBGx&1NN"~i+2 word hidingJJʡE?NNʡEi-1 tag+i word NNP obscureJJ~jt?NN~jti-2 word verdictsNN~jtVBG~jt?i word delicateJJh|?5 @NN|?5^FW\(\ i word desireJJ9vNNSZd;NNsh|?? i+2 word lastVBG(\?NNjt?NNS\(\RBR/$NNPV-?LSRBx&1?VBDA`"?JJSʡEͿVBN)\( @JJ}?5^I VBZp= ף?VBPˡE?DTA`"ӿEXClVBףp= ۿNNPS}?5^IINy&1ܿJJRV-?RP?5^I CDbX9ȶi-1 suffix nc. VBGy&1?JJRBx&?NNS rhVBN/$޿VBPh|?5?INL7A`?VBZoʡ?VBZd;ONNOnÿVBDx&1@RBRx&i+2 word northeastNNL7A`RB+?JJ ףp= i-2 word ranksVBN-@JJ- i-2 word billNNPGz PDTZd;OVBFx?JJR+INy&1NNSˡE?RBRʡEݿPRPS?RBʡEPRP$rh|VBNMb?VBZK7A`?NNPS5^I @JJv?NN +VBD|?5^?WDT(\?i-1 tag+i word PRP confrontVBPK?VBDK߿i-1 tag+i word NNPS initiativeNNPn?NNni-1 tag+i word WP fightVBPE?VBDEi+2 word relationsVBDrh|?WDTFxRBrh|INFx?NNSnNNPrh|JJ%C?NNx&?i word boozingVBGʡE?NNʡEi word clinicsNNSK7?NNK7i-1 tag+i word CD futureJJ r?NN r i+1 word unitVBGrh|?NN|?5^JJzG?VBZMbNNS\(\?NNPnNNPSNbX9?i-1 tag+i word NNPS dataNNPS)\(?NNP)\(Կi+1 word zayadiPRP$xƿNNd;O޿NNP/$? i word jennieNNPd;O?NNd;O i suffix OMENNSZd;NNPQ?VB#~j@NNPS^I +VBN/$VBPRQIN{Gzi-2 word commerceNN1Zd@VBDffffff?JJq= ףpINQNNSx&NNPffffffNNPSmRPQ?i-1 tag+i word VBG showsVBZoʡ?NNSoʡi-1 word bridgeVBG"~jNNtV?VBD(\VBN(\?RBCl?NNS-i word dominantJJZd; @NNZd; i-1 suffix fosVB(\VBP%C?NNSi-1 word stafferVBNx&1?VBDx&1ܿi+2 word fenugreekJJʡENNʡE?i word languishVBZv/VBtV?JJ|?5^NN= ףp=ڿi-1 tag+i word VBN stiffVBNV-JJV-? i word nihJJKNNPK?i-1 tag+i word VBN jointNN\(\?JJ\(\i tag+i-2 tag `` RPRBl?JJx&1?NNx&1VBl i+1 word eatsVBZV-NNV-?i-1 tag+i word `` enclosedVBN333333?JJ333333i-1 tag+i word VBZ consistentVBNHzGJJ1Zd?NN/$i+2 word shadyNNClNNPCl? i word codaNNQٿNNP\(\?JJ(\i+1 word constrictorsNNOn?JJOni-1 tag+i word RB causeVBtV?NNtVοi-1 tag+i word PRP$ willingnessNNZd;O?JJZd;O i word freedVBDX9v?JJSMbX9JJRK7A`VBN$C@VBPx&1JJHzGѿVBZrh|NNoʡݿi-1 tag+i word PRP$ prosNNSףp= ?NN= ףp=JJ333333i-1 tag+i word VB biddingVBGClNNCl?i-1 tag+i word NNS getVB/$VBPףp= @JJ1ZdVBDi-1 tag+i word RB casualVBNmJJm?i-1 tag+i word IN overhaulingVBG/$?JJ/$i-1 word diamondVBGuVFWʡENNSZd;O?NNDl?VBZZd;Oi-1 tag+i word NNP artsVBZMNNPSףp= ?NNSB`"?NNPп i suffix shoFW?5^I @VB rRB/$NN)\(i-1 word frontNNK?RBR+RB+?JJR rhտi-1 tag+i word DT exposureNN r?JJ rؿ i+1 word jewsJJCl?NNPCli-1 tag+i word NN powersNNSv/?NNv/i-2 word tallyVBZzG?VBzGi word earringVBGL7A`NNw/?JJ+i-1 word woundRPV-RBV-?i-1 tag+i word DT clarksburgNNPSGzNNPGz?i-1 tag+i word DT laymanNN= ףp=?JJ= ףp=i tag+i-2 tag DT ``RBSGz?VBPL7A`?PRP|?5^VBZ5^I NN r?VBGL7A`JJsh|??RBR(\CDGzNNSQ?NNPSGzIN/$?JJRClNNPy&1@JJSʡE?VBNmRB5^I ?VBK7?!i-1 tag+i word -START- scientistsVBZHzGNNS(\?NNP= ףp=i+2 word frequentlyNNq= ףp?VBNDl?JJV-NNP\(\ i word retainVBZV-VB?VBPB`"?JJZd;OͿVBDffffffi word canningVBGK7NNK7?i-1 tag+i word NN choicesVBZ~jtNNSMb?NNi word prenticeNNPSxJJ#~jNNPףp= ? i word coatesNNS;OnNNP ףp= @NNPSKi-1 tag+i word WDT deterrentNNI +?JJI +ֿi word dismissJJoʡVB?VBN+i word acknowledgedJJ(\VBDA`Т@VBPQNN+VBNtVi-1 tag+i word VB overcomeVBNl?JJli-2 word objectionsDTOn?WDTOn i-1 word boxyNNm?JJmi-1 tag+i word NNS cyclingNN~jt?VBG~jtۿi-1 tag+i word PRP hitVBZ㥛 VBPX9v?NNoʡVBD1Zd?i-1 tag+i word JJ owedVBN(\?IN(\i-1 tag+i word NN probesNNSw/?RBw/i+2 word democratsJJ333333NN&1@NNPzGVB㥛 IN333333? i suffix ume VB~jt @NNK7VBP5^I ?NNPy&1VBDy&1FW"~PDT1ZdJJbX9?NNSCli+2 word embracedIN+WDT+?i-1 tag+i word DT kitchenNNS}?5^INN}?5^I?i word exhibitNN ףp= @JJOnNNSClNNPjtVBx&1RB~jti+2 word inventedJJS㥛NNPS㥛@i-2 word secureJJCl?NNPClӿi-1 tag+i word CC processedVBNZd;?JJw/ĿVBD㥛 i-1 tag+i word NN advancedNNPOn?VBNOnNNbX9VBDbX9? i word tacitJJ(\?NNQNNPGz? i-1 suffix itVBD333333@VBP#~jNNףp= PRPK?RB(\?MDV-VBZx& @VBzGʿINX9v?VBNK7 DTxƿRP(\?POS-PDTX9vRBRuV?CDNbX9пWDTx&?JJ}?5^I?NNSV-NNPHzG?NNPSQJJS;OnJJRS?i-1 tag+i word -START- shinyJJy&1NNPy&1?i-1 tag+i word VBN convincingVBG\(\JJ\(\?i+1 suffix eseVBZ@NNV-CCjtPDTv@CDZd;O@INB`"[@DTףp= RBMbXVBn?WRBh|?5?NNSmNNPFxVBD\(\WDTJJV-߿FWV-RBRZd;ONNPSDlJJRZd;O?VBGMb@VBNx?VBPA`"?RPy&1 i suffix -87CDL7A`?JJL7A`i+2 word testifiedCDGz?NNPGz i word arabJJQ@NNPQi-1 tag+i word JJ encouragementNN+?JJ+i-1 tag+i word IN creditwatchNNQNNPQ?i+2 word resolutionNNtV?NNPDlVBGS?JJ1Zdi-2 word towerVBZy&1VBS?VBPv/ݿi-1 tag+i word JJ stylingNN~jt?NNS~jti+2 word periodsIN-?RPV-ҿRB&1 i word sendsVBZK?VBDKi-1 tag+i word JJ toneNNS;OnڿNN;On? i word snagRB&1NN&1?i-1 word standardsVBPv/NNX9v?RBX9vMDMbX9VB r?i+1 word announced JJMbX9VBZ|?5^NNSRQNNPSw/WRBSRBrh|?RBRsh|??VBNGzNNjt@LSNNP9v?i+1 word centralCDS㥛?WDT$CJJx&1 @IN$C?NNPx&1 NNS㥛i-1 tag+i word NN threadsVBZHzGNNSHzG?i-1 tag+i word IN cocaineJJ%CNNHzG?JJRjti word infightingVBG rпNN(\?JJMbi-2 word cautionVBG rh?JJˡE?NNMbX?VBN rhRBHzGNNP rhi-2 word mobilVBP-?VB-ۿ i suffix gilNNZd;?RBZd;߿i-1 word independentlyVBPv/?JJv/i-1 tag+i word TO circumventVB~jt?JJ~jti-1 tag+i word CC performNNw/VB(\?VBPMbпi word enactedVBNS@VBDSi-1 tag+i word NNS addedJJx?VBDsh|?VBN-޿i+1 word cookingJJS?NNPSi-1 tag+i word VBZ exploringVBGsh|??JJsh|?i word nissansNNPSʡE?NNSL7A`пNNP~jt i-2 word yardJJRSݿNN rh?INx&1i-1 tag+i word VBZ throughRPt@RB/$NNd;OοIN+i+1 word unruhCC rhNNP rh?i-1 tag+i word JJ playVBI +NNI +?i+1 word challengeVBOnVBG?5^I RB/$?NN?5^I @JJ{GzĿNNPtV?i-1 word administration NN rhVBDCl?VBP&1?NNSxRB(\?VBNh|?5JJHzGINT㥛 ?VBZ㥛 ?i-1 tag+i word VBZ presentedJJ"~jVBD"~j? i+1 word say JJ+DTI +?VBKJJSV-?VBPףp= ?RBSV-ڿVBZPnNNSK7A@NNP{GzRB/$NNK7VBDNbX9i-1 tag+i word DT firingVBGQ뱿NNQ?i+1 word gomezVBN+NNP+?i-1 tag+i word RP callVB㥛 ?NN㥛 i+2 word deereJJsh|?NNPsh|??i+2 word probeNN/$?JJ/$i-1 word importNNSffffff?JJ;On?RBffffffVBZffffffi+2 word exerciseNNSQ?NNQ i+1 suffix b.DT ףp= JJ333333NNPRQ@i-1 tag+i word NNP stalloneNNPSZd;OǿNNPZd;O?i+1 word remedyVBZDl?NNSDlJJRQJJQ?i-1 tag+i word VBD steadyJJ ףp= ?RB ףp= i+1 word trueJJx&NNMbRBRClVBNMb?RBCl?VBZx&?i-1 tag+i word NNP toyNNGz?VBPGzi+2 word !HYPHEN VBZ(\ſDT1Zd @RP/$?LSZd;O?RB~jtJJSؿNNPSNN rhFWSNNSZd;OIN/$?VBʡE?CCʡERBR`"NNPS"~j?SYMA`"PRP$J +VBGQ?VBDˡE?VBNl?JJx@WPy&1PRPjt?RBS +WDTʡE?PDTd;OJJR?UH|?5^VBP|?5^CD?EXClPOS7A`i-1 word marcosVBZ$C?VBPrh|NNSQPOSl?i-2 word bearishRBʡE?NNʡEi-1 tag+i word DT imagesNNSMbX9?NNMbX9i-1 tag+i word VBP preparedJJy&1@VBNy&1i-1 tag+i word RB thoughIN +@RBRQJJnVBD+i+1 word pashasJJQ?NNQi-1 word dumpedVBGnNNn?i+1 word turbulenceVBNK7A`?NNK7A` i+1 suffix w.NNP7A`?WRB7A`i-1 word wideningNNn?RBn i+1 word jenaJJtV?NNtV i-2 word homeVBGI +NNSRB%C?IN}?5^IVBZtVNNPS/$VBDV-?JJRI +?DT= ףp=NNP`"?VBP&1VBNZd;O?VBffffffֿJJ ףp= ?RBR{GzWDT$C?i-1 tag+i word DT awarenessNNMbX9?JJMbX9i-1 tag+i word RB principalJJw/NNw/?i-1 tag+i word VBP freshVBNjtJJjt?i word coatingVBG^I +NN^I +? i word widensVBZMb?NNSMbi+1 word germsNN?5^I ?JJ?5^I i+2 word earthquakeVBJ +NNJ +?i word valuableNNPxƿJJ rh?NN'1ZĿi-1 tag+i word JJ cheeriosNNPSףp= ?NNPףp= i-1 tag+i word NNS castVBNS㥛ԿNNQVBDL7A`?i+1 word statementsVBGZd;߿JJ\(\?NNI +VBD rh@JJRVBNbX9RBNbX9i-1 tag+i word PRP$ teethNNSˡE@NNʡEJJMbi-2 word precipitousJJʡEVBDʡE?i-1 tag+i word NNS onceINʡE?VBPZd;RBZd;?NNjti word candybarNNSClNN(\?JJMbX9Ŀi-2 word brokerage JJGz?NNx&1VBNQVBPS㥛?VBZv?NNSvVBG rh?VBD?5^I ?RBli-1 tag+i word VBZ issuedVBN333333VBD333333?i+1 suffix cioJJjt޿FWK?RB/$i-1 tag+i word NNP incurredVBDS㥛VBNK7A?IN`"i-1 tag+i word DT percentNNffffff@JJ7A`CDi-1 tag+i word VB crucialVBNʡEJJʡE?i tag+i-2 tag NNS WP$VBGzVBPsh|?@JJlVBD"~?i word slowestJJSh|?5?JJh|?5޿ i+2 word messRP$C?IN$Ci-1 tag+i word RBR advanceNNFx?RBFxi-1 tag+i word POS machineryNN-޿NNP-? i word cupNNffffff?JJffffff޿i+1 word indicatorVBG +JJS㥛@NN㥛 i-1 tag+i word VBP quotedVBNA`"?JJA`"i-1 word duncanNNPSnNNPn?i-1 tag+i word NNP batesNNPMb?NNPSMbi-1 tag+i word POS plungeNNSHzGNNHzG?i-1 tag+i word NN doldrumsNNSMbX?NNMbXi-1 tag+i word NNP valuesVBZʡE?NNSףp= FW~jtxi-1 suffix wayEX333333?VB(\NNPSQ?RP1Zd˿NN rhRBS+?JJS+RB ףp= ߿WDT}?5^IܿNNSB`"VBD`"VBP rȿNNPQVBNnٿJJ?INV-@i word utterlyRBuV?JJuVi-1 tag+i word IN benefitNNB`"?JJV-JJR-i word theaterVBK7ARB"~jNN(\?VBPS㥛JJ/$NNP rh?i-1 suffix nnaVBZ{Gz@VBP-NNSA`"?NNZd; i-1 word saabVBZX9v?NNSX9vi-2 word demandsVBZ-VBG?5^I JJjtƿNNrh|NNPK7@ i word indexNN rh?INB`"VBZ%CNNPSK7NNPv?i-1 tag+i word VBD alarmedJJK7AؿVBNK7A?i-1 word mockinglyVBZx&1?VBDx&1i+1 word members JJm?NNP-NNPSCl@VBG(\?NN'1Z JJRy&1VBNOnVBDjt?FWK?CDffffffi-1 tag+i word RB helpedVBNʡE@JJzGVBD%CVBMbi-1 tag+i word IN bedJJʡENNd;O@VBNMbX9i-2 word communicationsRBZd;NNS rhNNPffffffNNPSCl?VBD+?VBN+EXZd;? i word ranNNZd;OVBDy&1,@VBNX9vRBSVBZNNSmi-1 tag+i word `` functionedJJ-޿VBDFx?VBNV-i-1 tag+i word -START- putVBNmNNS!rhܿNNPh|?5 VBI +?WRBK7NNbX9?VBDp= ף @PDTSi-1 tag+i word RB plaidNN/$?JJjtVBN/$޿ i-2 word whatFWjt?WDTףp= ۿRBV-NNPK7A`VBPnNN5^I ?RBRQVBNʡE?NNPSQJJd;O @VBPQ롿RP(\?INT㥛 VBZ-?VBGV-@NNSX9vJJRS㥛?DTQ@VBDK7A`?i-1 tag+i word CC forcedJJ ףp= VBD ףp= ? i+2 word pairNNS?VBNI +JJT㥛 i-1 tag+i word POS p53VBNq= ףpտNNq= ףp?i-1 tag+i word VBZ notingVBG(\?NN(\i-1 tag+i word , gourmetVBDSVBZ/$ÿNN&1?i-2 word scrappedNNS~jtNN~jt?i-1 tag+i word -START- withoutINL7A`@WRB?5^I RB/$NNPCli-1 suffix nerNNPSM?POSFx?VBD1Zd?IN"~j?VBGS?NNX9vVBZS?NNPZd;OJJQ?NNSoʡ?VBV-FW ףp= ǿVBN~jtWDTHzGi-1 tag+i word VBG fedNNSClVBNFx@JJS㥛VBDHzGi-2 word brokersVBK7AVBGK7A?NNxRB!rhܿIN!rh?NNSx?i-1 tag+i word JJ inherentJJ㥛 ?NN㥛 i word borrowingNN r?JJK7ɿVBGd;Oi-1 tag+i word IN blueJJMb?NNMbi-1 tag+i word NN cameraNN-?JJ-i-1 tag+i word SYM statesNNS= ףp=?NN= ףp= i word liftedVBN~jt?JJKVBD`"?i-1 tag+i word , seriesNNPS{GzNNS/$@NN~jt?NNP= ףp=ҿVBZ$Ci-1 tag+i word DT rocketNNZd;?JJZd;߿i+2 word refrainJJ/$?NN/$i+1 suffix himRB rRP㥛 VBDuV@CCp= ףRBRSVBZ9v@VBB`"?NNףp= NNP ףp= NNS!rhVBPjt?VBN(\INףp= ?DTp= ף?VBG rh?JJ#~ji+1 suffix \/2VBNL7A`?VBDL7A`i-2 word caloriesJJQVBNQ?i+1 word dealerVBPh|?5޿PRPDlѿRB$CJJ9v?NNZd;@VBDZd;OVBNX9v޿CDDl?i+1 word cancellationsNN+?JJ+i-1 tag+i word CC startsVBZB`"?NNSB`"i+1 word achieveNNSp= ף?VBZp= ףi+2 word spokeswomanCCw/VBSVBDjt?JJmNNPm@ i-2 word soleVBNRQJJm@VBDZd;Oݿi word withdrawnRBNbX9NN~jtJJx&1VBN"~@i-1 tag+i word -START- writesVBZx&?NNSNbX9NNPi+1 word pricesPRPRQRBQRPMbX9?VBZ9v?NNPmRRBRzGVBPʡEJJSNNV-?FW#~jVBNp= ף?JJRl?NNPSʡEVBGX9v>@NNSQ?INA`"VB rhVBD&1? i-2 word getNNS}?5^I?NNPS?VBS?RBZd;O?VBZ$CJJI +ֿVBD"~jFWˡERP$C?CDh|?5?INuVVBGClNN rh?RBRGz?VBNh|?5?JJR\(\i-2 word covertVBGS?VBNMbXNNSVBDMbX?i-1 tag+i word IN spudsJJh|?5NNQNNSMb? i word gloomNNSjtܿNNjt?i-1 tag+i word CD pretaxNNSnJJn@NNS㥛i+1 suffix olkPRP$B`"?PRPB`"i-1 tag+i word CC golfVBZClNNCl? i-1 word hongNNV-@JJPnNNP#~ji-1 tag+i word NNP bunkerNNPSnNNPn?i-1 tag+i word VBP bancoNNPx&?JJx& i-1 word u.s.RBR?VBZGz?NNP'1ZܿRBoʡVBGffffffJJ~jt@POSK7ANNSy&1?VBDl?VBPZd;߿VBNK7AINT㥛 JJRVB"~jNNPSK?NNMbX9?i-2 word acceptableCC%CDT%C?i-1 tag+i word VBZ clipboardNNS rhNN rh? i word arenasNNSV-?RBClNN-i-1 word historicNNS/$?VBZ/$ƿi-1 word agonizeRP;OnIN;On?i-1 tag+i word PRP submitsVBZn?JJni-2 word calif.VBZSJJ㥛 ?NN|?5^VBD|?5^ɿi+1 word jeansJJw/@VBN7A`NN~jtVBDx&1i+1 word describedVBDX9vWDTV-?RBX9v?INV-i-1 tag+i word NN inherentJJQ@NNQi-1 word indomitableNN?5^I ?JJ?5^I i+1 word arisingRBJ +@JJJ +i+2 word tradingNNS|?5^VBZ$C˿RPZd;O?CC`"VBNB`"?RB/$IN ףp= WDT5^I VB rh?JJB`"?NNMbX9JJR$CۿVBPʡE?VBD-?VBG-?DTK7A` @NNPS㥛?i-1 tag+i word NN forbiddingVBG~jt?NN~jti-1 tag+i word `` pulledVBNDlVBDDl@ i-2 word low INZd;ORBZd;?VBNp= ף?JJp= ףNNSPnNNP1ZdNN;On@VBDp= ףCDn? i word agreeVBZv/NNS+VBPn@RBq= ףpVBDMbVBPZd;@JJZd;OIN(\i-1 tag+i word NN conceptNNHzG?VBDHzGi-1 word backerNNP\(\?CD\(\i+1 word championsVBGq= ףpJJq= ףp?i+1 word admitsRBv@NNS㥛?VBD~jtCDS㥛ܿJJZd;OտVBZMi-1 tag+i word VBZ replacementNN}?5^I?VBP}?5^Ii word postponedVBD ףp= ?VBNJ +ѿJJ!rhܿi word parentsNNPx&1?VBZ#~jNNPSV-NNS~jtJJ9vҿi-1 tag+i word IN bombsNNSMb?NNp= ףпIN ri+1 suffix oupVBG)\(?NNX9vPOS\(\?JJR333333ۿNNPtV?NNSI +?VB/$ֿJJ rVBDnVBPzGIN%CDTffffff?CD`"?NNPS?5^I ҿVBZuVJJSMbVBNh|?5@RBV-i-1 word typicalNN-JJ-?i+1 word totalVBZ(\NNS(\?i-1 tag+i word NNP proposedVBDʡE?INʡEi+2 word trainsRBffffff޿NNPffffff? i-2 word nbcVBʡENNSˡENN(\?NNPl?i-1 tag+i word DT workingsNNSK7A`?NNK7A`i-1 word satiricalNNSSNNS?i+1 word popularJJ`"RBSx@VB`"?JJSxi word hastilyJJClNN$CRB9v?i-1 tag+i word : sovietsNNPS?NNSi+1 suffix risNNPQοVBG/$?NN1ZdFW|?5^ٿJJ(\?IN%C?i-1 tag+i word IN sikesNNPS/$ÿNNP/$?i+2 word higher VBNlINX9vNNP&1VB㥛 ?VBGMbX?RBl@NN/$VBDl?VBP"~jJJp= ףDTX9v?NNSMbP?i-1 tag+i word NN yellowJJn?NNni-2 word recordsVBZCl?NNPCl?VBG!rhܿNNX9v?VBDClVBPx&1i-2 word handlingNNMbX?JJd;ONNP+? i word study VB(\?NNK@VBNy&1̿JJRtVοVBP ףp= ?JJ-VBZffffffNNPQ?RBL7A`NNS(\ i-1 suffix ;VBZGz?VBHzG?VBP(\PRP"~j?JJ|?5^CCK7A@PRP$ʡE?NNSʡE?NNP r?VBGV-?VBNv/?INd;OCDq= ףp?WDT?RB1ZdDT̿NNPSHzGNNGzVBD+i-1 word extremelyRBx&1UH"~jJJ@NNK7A`i-1 tag+i word `` lessRBX9vRBRw/?JJCli+2 word quietedNNnʿNNPS㥛JJV-?i-1 tag+i word VBP redefinedVBNK7VBDK7@i+2 word sandwichesVBNzG?VBDzG i+1 word alpsJJd;ONNPd;O?i-1 word covertNNSʡE?NNʡEӿi word sharingVBGx&1?JJx&1i-1 word exorciseJJZd;?RBZd;׿i-1 tag+i word TO plannedVBV-VBNQ@JJ-VBDQi+2 word strugglesNNx&1?NNPv/VBGV-i-1 tag+i word RB recoverVBN rhJJw/JJR ףp= VBˡE?VBPS㥛?i+1 word twitchNN|?5^?JJSJJR rhi-1 tag+i word -START- defenseNN`"?JJRT㥛 JJQNNPoʡſi+1 suffix rdiVBZʡE?VBDʡE i+2 word soonVBZ/$?NNSK7A?NN{Gz?RB\(\i+1 word equalNN^I +?JJRMbпRBRMb?JJ^I +׿INQRBQ?i-2 word surroundedNNPSHzGNNHzG?i-1 tag+i word NNP laptopsVBZMbXNNSMbX? i word gossipNNSnNNn?i+1 word civiliansJJ|?5^VBD|?5^?i-1 word generationsVBD1ZdVBN1Zd?RBClINCl@i-1 tag+i word NN valuesVBZv?NNSCl?NNOnJJGzVBDZd;i-2 word supermarketVBN"~jJJQVBD#~j? i word vetoedVBNx&1?VBP;OnRBv/VBK7A`տNN(\VBD ףp= @ i word breakJJ-VBZ"~jVBV-@NN-?VBDuVPDT rhJJR ףp= VBPʡE? i-1 tag+i word NNS compatibilityVBPFxNNFx?i+2 word smarterJJR?5^I ڿRBR?5^I ?i-1 tag+i word POS vaxJJX9v׿NNPX9v? i word deanNNPSnڿJJv/ NNPI + @i+1 word oftenVBN㥛 WDT rh?JJh|?5JJRK7A VBܿRBHzG@IN +NNoʡ?JJSoʡVBZB`"NNS~jt@VBGClRBRT㥛Ġ@PRPMbRBS?VBP?i-1 tag+i word NNS overcomeVBP;On?RB;On i suffix ogoNNZd;?NNSZd;i-1 tag+i word DT youngerJJRMbX9?NNPMbX9i-1 word antirealisticVBG!rhNNK7A`?JJmi+2 word upbeatNNq= ףp?JJq= ףpi-1 tag+i word : severanceJJCl@NNCli-1 tag+i word NNS soughtVBPQVBNtV?NNtV޿VBDQ?i-1 tag+i word JJR cousinVBClNNCl?i+1 suffix top JJB`"ѿVBZ rhٿNNSRB㥛 ?CDQ?PRPV-ڿNNPMbX9MD9vNNʡEPOS|?5^? i word ribNNS?JJSi-1 tag+i word JJ catherineNN9vNNP9v?i-1 tag+i word CC moldVBZZd;OVBv/NNuV?VBDZd;׿i-1 tag+i word -START- ferroNNmNNPm?i-1 word suspensionINq= ףpͿNNq= ףp?i-1 tag+i word VB knownRP~jtVBN~jt?i word administeredVBN(\@JJZd;VBDSi-1 tag+i word JJ compensationNNS9vNN9v? i word ladenVBN+JJA`"?VBPMi word interventionNNS+NNCl?NNPp= ףi-1 tag+i word DT gotNNSq= ףpNNPnVBD`"?i-1 tag+i word NNS sitsVBZ;On?VB;Oni-1 tag+i word IN rollingNNS㥛NNP;On?VBG5^I JJ^I +?i-1 tag+i word DT seniorNNClNNPCl?i word cautiousVBNK7A`JJ333333?RBRˡEi-2 word portraitsJJI +?NNI +ƿi+2 word payersIN5^I RB5^I @i-1 word protectVBNrh|JJK7AINGzVBZ/$DTGz?NNSK7A?VBG?5^I ?NN!rh?i-2 word commuteVBL7A`NNL7A`?i-1 tag+i word POS champsNNSoʡ?NNoʡi-1 tag+i word POS elegantJJ+?VBN+ i-2 word sowNNV-?JJV-i-2 word headquartersNNPZd;O?VBZd;OINB`"?RBB`"!i-1 tag+i word VBZ understandablyJJsh|?RBsh|?? i-1 word pitNNGzֿCDGz?i-1 word homerRPrh|INrh|?i+1 word overdueRB)\(?JJ)\(i-1 tag+i word POS birthdayNN/$?JJ/$i-1 tag+i word TO goJJ+VB+?i+1 word hidingJJ?NNi-1 tag+i word WP begsVBDGzVBZ#~j?VBP/$ۿi-2 word contraryVB"~JJ"~?i+1 word featuredVBPףp= NNCl?RB}?5^IԿi-1 tag+i word VB redrawnVBNV-JJV-?i-1 word addingJJSSRBR +JJ$C?IN{Gz?DT{GzNNS= ףp=NN= ףp=?i-1 tag+i word VBP asRBIN?i-1 tag+i word VBD riskyVBNxJJx?i+2 word cavalierJJ-?NN-i-1 tag+i word IN centerfielderNNS/$JJRoʡNNS㥛?i-2 word confirmVBZlVBl?i+1 word petitionsNNP&1VBN rhJJ&1?VBD rh? i suffix zenVBNCl?JJ#~j@VBZV-׿NNPGz?VBV-?VBG333333RBOnÿNN- i-1 tag+i word , letVBOn @RB1ZdNNZd;OVBD9vʿi-1 tag+i word VBZ greenerJJR(\?NNZd;OVBNh|?5i-1 tag+i word DT mahatmaNNPS-NNP-?i word kidnappingVBGClNNsh|?@JJ/$i word involvementNNS\(\NN"~?JJDli-1 suffix punRP/$?RBQ˿INMbi+2 word editaNNX9v?JJX9v i-2 word open VBʡEVBGS㥛?NNJ +?RBRCl?JJRClJJh|?5NNS{GzWDTT㥛 ?INQDTʡENNP$C?i+1 word shieldVB"~JJffffffNNP r?i+1 word deceptiveRBx?JJxi word overcomeRB;OnVB/$?VBP;On?VBNsh|?JJK7Ai-1 tag+i word NNS readVBrh|VBP(\?VBDoʡi-1 tag+i word CC unusedVBD;OnJJ;On? i pref1 uNNPV-2$CC^I +PDT5^I ӿJJSq= ףpVBDZd;OVBZtVRP-@FW!rhܿRB~jt@INV-@MDzGJJRMbX9VBG`"JJZd;O#@NNE@VB-WRB%CCDMbNNPSQUHZd;O@VBNNbX9VBPZd;?NNSv/?i-2 word fatherINMVBZh|?5?NNSh|?5NNPmWDTM@JJm?i-2 word serkinRB+NNP+?i+1 word enginesNNd;OJJd;O?i-2 word resortJJRbX9JJd;O޿VBףp= NN/$?JJSK?RBSKRBRbX9?i tag+i-2 tag `` .VBx&JJrh|NNPJ +?i-1 tag+i word IN dealsNNSA`"?NNA`"i-1 tag+i word CC lombardRB$CJJmͿNNPK7A`?i-2 word laboringJJ(\?NN(\i-1 tag+i word : bringVBT㥛 ?VBGQNNNbX9i+1 word followJJSNNPNNSX9v?i-1 tag+i word VBZ supermarketNN{Gz?JJ{Gzi-1 tag+i word NNS matureVBPh|?5@NNh|?5i-1 tag+i word NN lapsesVBZV-NNSV-?i-1 tag+i word -START- hewlettLSNNP?i+2 word pollenINV-?VBNV-#i-1 tag+i word -START- braumeistersNNPS?NNSi+1 word quickviewDTv/INv/? i-2 word tabVBZ|?5^?NNS|?5^i-1 tag+i word CD factoryJJQNNQ?i+2 word lengthRPv/RBHzG@INjti+1 word doubtVBZ5^I ?DT7A`¿NNSVBffffffRBX9vοNNS㥛VBDzG@JJ-?i-1 tag+i word DT panamaNNPST㥛 NNPT㥛 ?i-1 tag+i word VBN marginNN rh?JJQNNPV-i+1 suffix erdNNMbX?JJMbXѿ i-1 word sure VBD ףp= WDT$CJJ㥛 ?WPX9v?VBZ ףp= ?DTClNNzGFW\(\INMbX?i-1 tag+i word , developedVBN`"?RB= ףp=VBDuV?i-1 tag+i word JJ earlierRBR;On?NNʡEۿJJR5^I i-1 tag+i word `` maybeNNSʡERBףp= ?NNP(\i-1 suffix basVBPq= ףpͿNNq= ףp?i-1 tag+i word $ !DIGITSCDZd;@JJjtNNP~jt i suffix rexRBRQNNPQ?i-1 tag+i word -START- powerJJR"~NNrh|@NNPʡEi+1 word institutionalJJB`"?NNPB`"ɿi-1 tag+i word `` sellingVBGFxٿNNMb@JJh|?5i-1 tag+i word JJ herselfVBPʡEPRPʡE?!i-1 tag+i word -START- guaranteedVBN&1?NNP&1i word markedlyRBp= ף?JJffffffNN(\ݿi-1 word cornellNNPS333333NNP333333?i-1 tag+i word VB presentJJQ?VBNtVοNN~jthi-1 word proletarianNN5^I ?JJ5^I i-1 suffix uisNNSjtNNI +?NNPI +NNPS`"?i tag+i-2 tag JJS DTNNQ?CDGzοVBP%C?RBd;O?DTX9v޿NNPˡEJJSL7A`NNS`"?VBZd;OVBG)\(VBDoʡVBZMbXɿJJˡE@VBNuVINV-i-1 tag+i word IN lungNNMbX9?JJMbX9i-2 word shoreDTB`"@INB`"i-1 tag+i word NN bankerVBZZd;NNS|?5^NN{Gz?i+1 word blinkingRBp= ף?JJp= ףؿi-1 tag+i word DT m'bowJJ+NNP+?i-2 word redderNN\(\RBRSſJJR;On?i tag+i-2 tag VBN VBN RPˡE @RBRDl@WDTzG?INDlJJR5^I NNP~jth?RBy&1NNVBNGz?JJDTI +i-1 word conferenceVBDtV?VBNtVWDTMbX9INd;OVBZ ףp= DTCl?VBG?NN)\(?i-2 word earlyWDTK7INK7@NN-?VBD= ףp=VBN= ףp=?VBP-i+1 suffix isk VBDPnPOS~jt?VBNV-?RBV-ҿVBZ~jtVB$CJJQ?NNX9v?JJRw/?VBGn?RBRw/VBP +i-2 word brokeragesNNoʡJJoʡ?i tag+i-2 tag : NNPRP$ʡE?NNPp= ף?VBT㥛 NNB`"VBGQVBP%C?JJy&1?INClDT-?NNS(\µ?VBZˡERPClVBDZd;CD#~jVBN/$WDTp= ף?PRPʡENNPSOnRBK7?CC r@i-1 tag+i word VBD jailNNStVNNtV?i+2 word instrumentJJR/$?NN/$i-1 tag+i word PRP workedVBPMbVBDMb?i-1 tag+i word VB waitedVBNMbX9VBDMbX9?i word promotionalJJMbX?NNMbX i+1 word enNNbX9?JJbX9޿i word destabilizingVBGE JJmR@NNV-i word whittakerNN|?5^ҿNNP|?5^?i+2 word backdropINq= ףp?RBRMNNP~jti-1 tag+i word NN hearingVBGzGNNzG? i suffix uorNNSKJJ ףp= NNT㥛 ?NNP?i-1 tag+i word PRP queasilyVBP#~jRB#~j?i word nationalisticJJ&1?NN&1ҿi+1 word danceVBGDlNNbX9?JJClNNPrh|?VBrh|߿ i suffix uerJJrh| NNPK7A`?NNS5^I NNv?i-2 word wordsVBPDlVBNp= ףVBDx&?i-1 tag+i word NNS raiseVBPE@NNsh|?JJEi-2 word solidJJCl@RBT㥛 VBP\(\׿i+1 word beattyDT/$NNP/$? i-1 word weddNNPSp= ףNNPp= ף? i word repNNPS|?5^NNP|?5^?i-1 tag+i word , refurbishingVBG333333?NN333333i-1 tag+i word JJ thatNNV-WDTsh|?@EX-RB5^I INd;O@DTV-i-1 tag+i word IN ashurstJJ&1NNP&1?i-1 suffix ete VBL7A`NNS?NNSѿNNP|?5^?NNPSvRBHzG?FWK7?RBR?JJRJJ%Ci-1 tag+i word NNS generateVBP(\?JJ(\i-1 tag+i word JJR focusNN;On@JJX9vֿVBsh|?i+2 word grottoesNNSv?NNvi+1 word fruitfulVB/$RBR/$?i word intermixedJJFxVBDFx?i-1 tag+i word DT entitlementJJ'1ZNN'1Z@i-1 tag+i word FW aeternaNNQJJFWx&?i-1 suffix genNNSS㥛?RBS㥛i-1 tag+i word , diamondVBʡENNʡE? i+2 word tipsDT\(\ϿPDT r?RBJ +i+2 word concludedJJ%CNN}?5^I?CDMbп i word stemsVBPvPRP/$޿RBq= ףpVBZX9v@NNSSNNJ +VBDʡEi-1 tag+i word RB admitVBZvVBP rh?NNX9vi-1 tag+i word NNS meanVBJ +VBPJ +?i+2 word schoolNN?JJSJJ;On?RBQNNPm?i-1 word piledRBGz@JJGzi-1 tag+i word JJR threatenedVBD333333?VBN333333i-1 word eightVBDGzVBN$C?JJQNNS@NNP1Zd?VBG1ZdNN+i-1 tag+i word JJ northNNSClǿRBZd;O?JJV-i-1 tag+i word DT easyJJMbX9@NNMbX9i tag+i-2 tag `` VB NNSx&1?NNPPn?JJ= ףp=?FWlRBRQ?VBNd;O@VBPMbXRBffffff޿VBNbX9VBGL7A`?NNB`"JJSJ +INK߿ i-2 word coupVBDVBN?NNףp= FWףp= ?i-1 tag+i word JJ commercialsNNClNNSCl?i-1 word forgivingPRPI +޿CDI +?i word prohibitiveJJQ?NNQi-1 tag+i word VBP meetingVBGZd;NNZd;?i-1 word crawledRPv/RBHzG@INjti-2 word petrochemicalNNPn@JJPni-1 tag+i word `` jeopardyJJh|?5NNX9vϿNNPOn?i+1 word weatherVBZL7A`JJL7A`?i word inexpensiveVBPzGJJ/$?NN}?5^Ii+1 word harderVBZ rh?NNS rhͿi-1 tag+i word NNP filingsRBbX9ȶNNSbX9ȶ? i word hipNNHzG?JJHzGi-1 tag+i word NNP driftedVBNRQVBDRQ?i-1 tag+i word JJ recordNNQ?JJQi word obstaclesVBZ rhNNS rh?i+1 word motherJJ/$?VBD/$i word monitorsVBPGzVBZGz?i-1 word tackerWP rhVBZK?NNףp= ۿi+1 word classicVBNl?VBDli+2 word visherVBNB`"۹?VBDB`"۹ i suffix keeJJ ףp= NNPq= ףp?NNffffff?i-2 word prerogativesRBʡEINʡE?i word clustersNNS?RBi-1 tag+i word IN arsonVBNMbNNMb?i word adjustingVBGL7A`NNL7A`?i-2 word banks VBK7AVBN7A`NNSS㥛@VBZGzNNPSX9vֿVBGMbJJA`"?NN(\VBDʡE @RBCl?INDlNNP + i+2 word justVBCl?NNOnWDT{GzĿEXS㥛RB)\(NNPHzG @VBDOnӿRBR&1VBNPn?INFxٿVBZFx?NNPSJ +ѿVBGClRPQJJw/?NNStVJJRClVBPClDT\(\@i+1 word councilorsVBNvJJ-?INh|?5i-2 word lendsRB^I +IN^I +@i-1 tag+i word VB fewerJJRMbX?JJMbXi-1 word lawmakersVBPVBNMbX9VBDMbX9@i-1 tag+i word POS deanNNPn?NNPSnڿi+1 suffix ozeNNPS?5^I ?JJ?5^I i+1 word acquisitionDT|?5^?NNS}?5^IܿNNPoʡ?VBtVֿJJ9v@NNMb?VBNnRB/$i-2 word o'kickiVBDQ?VBNQ?RBQINQ?JJDlNNS?i word individualJJ{GzNNS+NNPn@VBK7NNp= ף@VBNVBPI +i+1 suffix 60sJJoʡ@NNPoʡi-1 tag+i word DT showsVBZB`"NNSB`"?i-2 word skillsVBGMbXNNX9v?JJQ롿i-1 tag+i word NNP usaNNP"~?NN"~i-1 tag+i word NN recruiterVBP-NN-?i-1 tag+i word PRP$ operatingVBGNbX9NNNbX9?i-1 word settlementVBDX9vVBZA`"?NNSI +VBNX9v?JJX9vi-1 tag+i word WRB imbalancesNNS?JJɿi-1 tag+i word NNS extractedVBN-VBD-?i-1 word theftVBN+NNMbXɿVBP/$?i+1 suffix witJJ ףp= NNP ףp= ?i-1 tag+i word RB noJJx&DTV-?RB333333?i-1 tag+i word -START- ladislavRB&1NNP&1?i-2 word periodsVBP/$NN/$?i-1 tag+i word JJ generatorsNNSCl?JJCli-1 tag+i word VBG btNNP +?NNPS +i-1 tag+i word NNP chargedVBNS㥛ĿVBDS㥛?i-1 suffix xicCD5^I NNSA`"?NNPI +ֿi-1 tag+i word NN pushesVBZ= ףp=?VBD= ףp=i-1 tag+i word NNP reynoldsNNPS5^I NNP5^I ?i-1 tag+i word DT peasantJJMbNNMb? i word macNNPjt?NNPSbX9JJHzGi-1 tag+i word DT commandingVBG/$JJ+@NN- i-2 word tv WDT#~jVBZX9v?NNPZd;ONNx?VBD/$?VBNQNNSJ +?VBP +JJxIN#~j?i+2 word accountVBN rJJ`"?NNPSK7i word illustratesVBZx&?NNSx&i-1 word roomsPOS;On'';On?VBP9v?EX#~jRB#~j?VB9vVBDпi-1 tag+i word -START- formerCD+NNPjtNNSQJJ}?5^I@i+1 word evolvingJJJ +RBJ +?i-2 word relationshipNN rh@JJ rhi-1 tag+i word `` socialistJJx&1NNPx&1? i word flakesNNPS- @NNSSݿJJv/NNP/$i-1 tag+i word VBG qualityNNGz?JJGzi-2 word witnessesVBG"~?VBNRQ?NN"~VBDRQпi-1 suffix yleVBD㥛 VBNv/?INQ?VBZQ?DTQNNPʡEi+2 word craftRB+VB+?i-1 tag+i word JJ askedVBN~jtӿJJ~jt? i-2 word flatVBN㥛 INDT?NNSףp= ?NNA`"VBD㥛 ?JJS;On?i-1 tag+i word NNP housingNNQNNPx?VBGtVi-1 tag+i word NN gunnedVBNJ +?VBDJ +i-1 tag+i word VB tradeVBMbX?NN+@VBNnJJףp= i-1 tag+i word NNP toldVBZ333333VBPSVBNClVBDh|?5@i word inspiringVBGʡEJJʡE?i+2 word functionariesNNGz?JJGzi word servicesVBZnNNPSn @NNSGzNNP?5^I i-1 tag+i word NN masqueradingVBG?NN i-2 word sanNNPS-NNSףp= ?NNffffff?NNPv?VBZ㥛 i-2 word harmonyNNQ?JJQ뱿i-1 tag+i word : armcoNNPS`"NNP`"?i-1 tag+i word TO unpublishedVBNrh|JJrh|?i-1 word screensDTK7A`?RBK7A`ݿ i+2 word ancVBP\(\?NNSZd;׿NNPDlNNPSHzGVBZMb?i-1 tag+i word IN secretsNNSX9v?JJX9vi-1 word smoothRBnڿIN|?5^RP|?5^?JJn?i-2 word fernandoVBP-IN= ףp=?NNPm i word tracedPRPʡEVBDʡE?i-2 word eruptedJJV-NNPV-?i-1 tag+i word NNP berlinNNPSʡENNPʡE?i-1 word steelJJ㥛 VBZHzGNNSףp= @NNPFxNNPSMb`NNT㥛 ?VBPffffffi+1 suffix unsIN;OnNNPCl?NNPSClVBG rRBClNN(\?WDT;On?JJ-?i+2 word reconstructedJJA`"?NNA`" i-2 word waysNNPSZd;O?RBʡENNPn?JJp= ףؿNNPZd;OտVB+ÿi+2 word maccabeeNNSKNNK?i-1 tag+i word , searchingVBGX9v?NNX9vi word mentionVB+@JJA`"NN|?5^i word authorizingVBG#~j?NNP#~j i word apart NNP rhѿVBGV-RB?5^I@NNbX9JJoʡRP|?5^?VBNjtVBP7A`INMbNNSnVBZT㥛 ؿi-1 tag+i word NNP runningVBGI +?JJI +i-1 tag+i word JJ flownVBN?5^I ?JJ?5^I ڿ i word namelyRBuV?NNuVi-1 tag+i word NN salaryVBDjtNNjt?i-2 word u.s.a.DT+RBT㥛 ?JJ/$INSտi+2 word reachingVBZGz?NNSGzi-1 word corruptNNPSzG?NNPzGi-1 tag+i word '' eitherCCV-?VBZK7RBV-i-1 word montgomeryNNPSB`"ɿNNPB`"?i-2 word clashJJnNNSn?i-1 tag+i word VBZ shakyJJT㥛 ?RBT㥛 i word cultivatingVBGMbX?NNMbXi+1 word accomplishmentsNN{Gz?JJ{Gzi+2 word fruitlessJJn?NNni-1 tag+i word NNP retailingVBGCl?NNCli word resumedVBN(\JJKVBDM@i+1 suffix ndsJJR/$?PRP$V-?JJV-?NN/$տPOS= ףp=?CCtVRBSClINV-׿WDT/$?VBZL7A`DTMbX?PDTʡECD`"?JJSK?VBGQ?FWDl?RBQNNS\(\VB/$ @WRBZd;O?RBR +VBD/$VBNV-VBPZd;OPRPV-ڿNNPNbX9?i word comprisesVBZX9v?NNSX9vi-1 suffix dex NNClVBD"~j@VBNOnJJ!rhԿJJRPnVBZ rh?VBrh|@RPq= ףpRBRPn?i+2 word philosophicJJ(\?NN(\i-1 word choicesRPx&INx&?i+1 word receptionPOSn?JJ^I +?NN^I +NNPni-1 tag+i word JJ refineryNNʡE?NNSʡE޿i word creditingVBG1Zd?NN1Zd i suffix hmsNNSw/?NNw/i-1 tag+i word -START- claudeJJbX9޿NNPbX9? i word bidsVBDK7AVBPX9vJJX9vVBZCl?NNSQ@NNPX9vRPGzNNtVi-1 tag+i word IN cassetteNNʡE?JJʡEi-2 word habitsJJd;ONNd;O?i word locatedVBD rVBN&1@NNPv i word heirsNNS"~j?NN"~jܿi-1 tag+i word VB netNNjt?JJjti-1 tag+i word PRP$ criteriaNNS1Zd?NN1Zdi-1 tag+i word NNS projectedVBN~jtÿJJjtVBD(\?i-1 tag+i word PRP$ quarryNNPʡENNʡE?i-2 word matthewsJJQ@NNQ i-2 word mcaDTbX9?NN;OnJJMbX?RB?5^I i+1 word idaVBPHzGNNPHzG?i-1 word risksVBDʡEÿVBN-?VBP/$ƿJJQ?VB ףp= ߿NN/$ӿi-1 tag+i word IN bumpsNNSˡE?NNˡEԿi-1 suffix arnRPFxٿJJR/$?RBR/$RBX9v޿IN?DT̿i word dissentNNjt?JJ/$NNS`"i-1 tag+i word VBP eagerJJRQJJn?VBNEi+1 word debentureJJV-NNPV-?i word confinementNNˡE?JJˡEi-1 tag+i word NN intermediateJJ`"?VBD`"i-1 tag+i word ( accessoriesNNPSV-NNSV-? i-1 tag+i word -START- privatelyRB`"?NNP`"i-1 suffix cksRBS㥛NNClPOS/$?RBRh|?5?''/$VBZ(\?NNS|?5^VBPn@VBNn?JJMbX9VBD rh?NNPףp= VBDlVBGv?WDTK7?IN/$RPPn?DTx&1i+1 word permittedNN333333?JJ333333ÿ i word caterVBS?NNSi word programmingVBGQNNQ?i-1 tag+i word DT ivoryJJ= ףp=ڿNNP= ףp=?i-1 tag+i word VBP reluctantRBGzJJGz? i word cleansVBZףp= ?NNSףp= i-1 tag+i word , outRPMbINMb?i-1 word anecdotalNNS/$NN/$?i-1 word advisersVBZ^I +VBNI +VBDʡE?i-2 word economyVBZ/$?RPM?JJHzG @NN~jtNNSMbXRBRx&1?VBN{GztIN{GzVBDE?VBPQ@VBGRQNNPX9v޿VBHzGWDT|?5^?RBNbX9ȿDTQ?JJRx&1i-1 tag+i word NN flyingVBG$C?NN$C i word dept.NNSOnNNPOn?i+2 word cadgeNNFx?JJFxi-1 suffix nteNNPS)\(NN{GzVBD;OnFW|?5^?JJClVBZK7NNSq= ףp?NNPB`"?i-1 tag+i word RB arrestedVBNx&?VBDx& i-1 word o.VBZuVNNPuV?i-1 word totteringRP~jtRB~jt? i+1 suffix r.NNQNNPQ?i-1 tag+i word CC travelNN)\(?JJ)\(i word ditheringVBGtV?NNtVi+1 word acceptableNN(\JJܿRB\(\?i-1 tag+i word VBN belowRBPn?INS?VBK7JJMi word archivesNNPSp= ף?NNPp= ף i word oldsNNSʡE?RBNbX9VBZjtֿi+1 word outlinedNNSB`"?NNB`"i word setbackNNS"~NN-?JJ7A`i-1 tag+i word DT lawnJJ~jtNN~jt?i word paperboardNNbX9?RBw/NNPL7A`?i-1 tag+i word RB inhibitVB"~j?VBNQJJˡEi+2 word sinatraWDTB`"INB`"?i word portugalNNPSx&NNPx&?i-2 word louisVBZ&1?NNPSClNNS&1NN rh?NNPQ?i-1 tag+i word DT flamingoNNPSMbX9NNPMbX9?i-2 word witterNNPS rhNNP rh? i word greaseVBDlٿNN㥛 ?JJʡEi-1 tag+i word DT cftcNNPSL7A`NNPL7A`?i-1 tag+i word DT reducedVBNX9v?NNp= ףJJPnпi-1 tag+i word DT flounderingNN9vVBGNbX9?JJbX9i+1 word objectiveDTX9v?INX9vi-1 tag+i word RB worseVBP333333JJRHzG?JJQRBRS㥛?i-1 tag+i word VBG foraysNNS㥛 ?JJ㥛 i-2 word succeedingNNPw/NNPS-NNM?VBNV-JJV-? i suffix -11NNPmNNCl?JJoʡCDK7?i-1 tag+i word VBZ presentVBNSJJS?i-1 tag+i word VBZ thereEXJ +?RBJ +ɿi+1 word pendingNNPSCl?RBRQ?NN/$?RBRnJJ}?5^I?NNPClVBni-1 tag+i word -START- investorNNP)\(NN~jt?JJd;Oi-1 tag+i word -START- revcoRBI +NNjtNNPʡE? i suffix 2-2NNS(\ؿRB+@JJxCD{Gzi-1 tag+i word TO opportunisticVBnٿJJn?i+2 word politicsJJDl?NNDli-1 word finnishNNS#~jܿNNT㥛 NNP"~FWsh|?@i-1 tag+i word IN speedNNSoʡNNoʡ?i-2 word wiggleVB"~VBP-?NNSh|?5JJ(\ݿ i word ivernJJ= ףp=NNP= ףp=? i-1 word sunyNNSKNNK?i-2 word issueVBGv/?NNGzVBN7A`?RBx&?NNSsh|?NNPS}?5^I?JJT㥛 ?VBDoʡ?CCCl׿RBRʡEJJRʡE?VB|?5^ʿVBZQNNPGz?i-1 tag+i word POS interiorNNS"~NN"~?i-1 word idealistNN+IN+?i-1 tag+i word DT heavyJJ}?5^I?JJRNbX9NN`"i-1 suffix oreVBGZd;OVBD?5^I ?JJRDlDTGz?NNPMbVBOnJJK7@NNbX9@RBR+IN`"οNNS}?5^I @NNPS{Gz?CC333333PDTw/RBʡERPMb?VBN~jtWDTMbX9VBZv/?i-1 tag+i word NNP presenceNNClNNPCl?i word stretchesNNS+?NN+i word cardinalsNNPS|?5^?NNSjtNNPV-i-1 tag+i word NN recordingVBG?NNi word biographicalJJClNNPCl? i+2 word co. NNPSPn @CCQVBPX9v޿NNSy&1VBnRB\(\NNV-VBNKJJ#~jIN333333?NNPq= ף#@i-1 word declaringDTʡEINʡE?i+2 word representativeNNPSV-WRBCl?RBx&NN5^I JJ5^I ?INK?NNPV-?i+1 word footingNN= ףp=JJR(\@JJQ޿i+2 word aloftNNP-RB-?i-1 tag+i word NN americanNNPsh|?JJ&1 @IN~jt i word necksNNS|?5^?JJ|?5^i+1 suffix ltdNNPS{Gz@NNP{Gzi+1 suffix ottVBClNNPCl?i+1 word consentJJS㥛?NNS㥛i-1 tag+i word VBG agreedNN rhVBD rh?i-1 suffix lanJJRd;O?DT&1VBZ5^I @NNP-?NN;OnVBDˡEVBNCl?VBx&1?NNS~jtWDTv/?NNPS-INQ?RBR rPOS!rh?VBPX9v@i-1 tag+i word NN engagedVBDx?NNxi-1 tag+i word RB equippedVBN;On?JJ;Onڿi word sopranoNNS}?5^IܿNN}?5^I?i-1 tag+i word IN sterlingNNv@JJMbX?NNPCl?VBGv/ i-1 tag+i word CC ricoNNPSMbNNPMb?i+1 word septemberNNK7VBDV-@JJ-?CD+VBNV-i+2 word factsVBNX9v?VBDX9vi word turkishJJ/$?NNP/$i-1 suffix vedNNL7A`?FWףp= IN{Gzt?VBNMbXWPbX9?DT?CD!rhVBGQ RBDl?CCp= ףPRPx&1?JJPn?NNSOn?RP\(\?RBRA`"?NNPSFx?JJRA`"WDTbX9NNPI +PRP$x&1i-1 tag+i word PRP$ longtimeJJbX9?NNbX9i-2 word operations CDClRBSNNS^I +?NNPCl?VB&1ҿJJvVBN/$?FW7A`?IN#~jVBZ^I +VBGףp= ۿNN~jt?VBD rhi-1 tag+i word NNP grapplesVBZRQ?NNSRQi-1 tag+i word NNS commissionerVBPQNNQ?i+1 word recommendedVB(\@VBP(\i+2 word everyoneJJZd;O?VBʡE?VBPT㥛 RBZd;ONNKi-1 word lincolnNNPS"~j̿NNS)\(NNףp= @NNPV-i-1 tag+i word JJR straightRB|?5^@JJʡENNsh|?տi-1 tag+i word NNP endedVBN9v?VBD9vi word branchesVBZX9vNNSy&1@NNFxi-1 tag+i word NNS suddenlyRB\(\?JJ\(\߿i-1 tag+i word JJ electricJJ~jt?NN~jti-1 tag+i word VBZ cheaperRBR(\?NNjtƿJJRh|?5i word passengerNNX9v@JJ!rhRBQNNP\(\ i+1 word armsJJS㥛ĿNNx޿NNP~jt? i suffix 90sNNZd;O JJ)\(CD$C@NNS@i-1 tag+i word VBG fearVBPX9vNNX9v? i word murphyNNP1Zd?FW1Zdi+1 word characterJJX9v?NNX9v i word gov.VBP1ZdNN= ףp=NNP7A`?i-1 tag+i word VBG aboveJJJ +RB/$տINQ? i word snagsNNS'1Z?RB ףp= NNDli-1 tag+i word PRP foundVBPA`"VBDA`"?i+1 word focusedRBRjt?JJRjti word lacklusterNNPn JJRʡEJJ7A`P@RBK?RBRʡEi-2 word findingJJRxJJ1Zd?NNRQ?RBL7A`RBR㥛 ?i-1 tag+i word DT oboistNN|?5^?JJ|?5^i-1 tag+i word -START- pershareNN~jtNNP"~jJJMb?i+2 word assaultsNNPS!rhJJ!rh?i-1 tag+i word DT childNNS㥛?JJS㥛i-1 tag+i word IN riotingVBGClNNCl? i+1 word c.NNP{Gz?NN{Gzi+1 suffix etsRB~jtJJS&1?VBZL7A`CDNNP|?5^?VB~jtNN?5^I VBDMbXRBR(\JJRE@JJ!rh @NNS?5^I NNPS~jtVBP333333WDT`"?VBN'1Z@DT7A`?VBG ףp= @INQi-1 tag+i word JJ rateNNK7ٿJJnNNP$C? i-1 word warJJ/$IN)\(?NNPK7A?NNPSK7ANN/$?VBD-?VBN-WDT)\(i-1 tag+i word JJR turnoverNNףp= ?INףp= i-1 tag+i word PRP$ financeNNI +?JJI +i-2 word concertJJRQ?RB+RBRZd;i word brokerageWP-NNP333333NNx&@IN/$տi+1 word opponentJJK7A?NNPK7Ai word portrayalNNSGzNN?5^I ?NNP"~ji+2 word approveNNPS(\ڿNNSV-׿NNJ +?i-1 tag+i word -START- twDTQNNnNNP#~j?i word jacksonvilleNNPSʡEۿNNnNNP+? i word ferrisJJʡE?NNʡEi-2 word henryVBZ/$?POS/$i-1 tag+i word DT !DIGITSNNPSNNпCD~jt?JJ~jt@NNSd;O @NNPy&1,i-1 tag+i word VBP irrelevantVBNJJ?i+1 word simpleDTRB7A`P@JJK7A`INS i-2 word turbansJJʡE?NNʡEi word misrepresentsVBZbX9?NNSbX9i+2 word searsVB;OnNN;On?JJS1ZdJJRK7?RBRK7VBP1Zd?i+2 word vendorVBX9vNNSX9v?i-2 word screensRP|?5^IN|?5^? i+2 word taxNN`"VBD(\?VBNd;OIN5^I VBS?VBGPnNNPE@NNPSVBPZd;O?RB#~j?VBZ#~jJJK7A`JJRn?NNSi+1 word tacticsVBNJ +JJ rh?VBD?5^I i+1 word reorganizationRPn?NNV-?JJRI +VBNK7?JJ(\DTI +?NNPI +i+1 suffix ash VBD{GzRBRlVBN(\NNS㥛 NNP/$VB+@VBGM¿JJS?NN/$?VBPp= ף?RBxJJRl?VBZ㥛 ?i+2 word employedNN"~j?JJ"~j̿i-1 tag+i word RB behindJJ~jtؿIN(\@VBQVBN;Oni+2 word rapidlyNNZd;O?VBףp= VBPףp= ?NNSZd;Oݿi-2 word doctorsVBG?5^I ?NNK7VBDʡEVBPʡE?JJMb?NNPDli+1 word tunedVBV-@VBP"~ʿDT-NNK7i tag+i-2 tag NNP JJVBGX9vVBP}?5^ICD/$?VBZ'1ZNNS7A`?MDT㥛 ?VBMbNN r@FWn?RBR7A`INV-NNPzG@JJ ףp= WDTZd;RBˡEJJR7A`?NNPSʡE?POSZd;?VBDVBNV-''%C?i+1 word murasawaNNA`"NNPA`"? i+1 word gulfVBZZd;OVBDZd;O?JJ%CNNP%C?i-1 tag+i word IN leveragedJJX9v @NN+VBNQi-1 tag+i word , staunchlyVBPGzǿRBZd;O?JJ1Zdi+1 word placedNNSK7A`?VBNClNN~jt?NNPSi-1 word stabilityVBG?NNi tag+i-2 tag VBP NNJJ\(\NNS㥛?VBZw/?VBDRQWDT{Gz?NNSK?VBNjt@IN?DT+ÿVBGZd;O?NNPy&1RPERBRy&1RBOn?i+1 word understoodJJR ףp= RBjt?RBR(\i-1 tag+i word TO expensiveJJtV?VBtVi-1 tag+i word VBP wassersteinJJ^I +NNP^I +?i-1 tag+i word JJ sometimesNNSQRBQ?i-1 tag+i word RBS corruptNN+JJ+? i word guineaJJlVBZ1ZdNNZd;O@ i word nmtbaRBJ +NNPJ +?i+2 word climbingNNS rh?NN rhٿ i+2 word allVBZDlNNsh|?FWZd;NNS rh?VB ףp= ?RBS?5^I ?IN`"?MDQJJSn?JJRbX9@VBDd;OVBNV-@JJ'1ZDTx&?POSMbNNPQRBR&1ڿVBG(\VBP +WDTZd;?RPCl?RBp= ףNNPS-CDsh|?i-1 tag+i word WDT ratioVBZNN?i+1 word scaryVBZ?RBV-?JJV-NNPi-1 tag+i word IN bottlingVBG#~j?NN'1ZJJV-ҿi-2 word documentRB7A`?JJ7A`i-1 word earningJJK7A?VBNV-JJRtVi-1 tag+i word NNP amendmentJJrh|NNPrh|? i word bayNNPSbX9NNV-?NNPi+1 word deeperVBZDl?NNSMbXٿVBN+JJw/VBDK7?i-1 tag+i word RB forwardVBP(\¿RB(\?i+2 word broadcastingRP+@NN-?JJNbX9IN+NNPT㥛 ?NNPSK7Ai word protectiveJJX9v?NNPX9vi-1 word markedlyRBRffffff?JJRffffffi word tenfoldRBl?VBN+NN+ηi+1 word carefullyJJS?JJRK7AؿRBSۿRBRK7A?i+1 word metersNNK7JJK7?i-1 tag+i word -START- southernDTZd;OJJ +NNPZd;O@i-2 word lettuceNNZd;NNSZd;?i-2 word disappointedVB/$?NN/$ i word hurlVBPCl?VBDCli+1 word tellingNNPzGNNRQ@RBS/$?JJS/$CDZd;JJA`"i-2 word ruling VBZ\(\NNffffffFWClPDT;On¿VBN~jt?RBrh|DT;On?VBDffffff?VB\(\?i-1 tag+i word NNP breweriesNNPST㥛 ?NNPT㥛 i word sterilityNNSV-NNV-? i word almostRB"~@IN`"MD$CVB9vNNP~jti word bombardedVBNK7A`VBDK7A`?i+2 word clearanceVBPjtVBDjt?i-1 tag+i word NNP becomeVBPRQVBRQ?i+2 word overwhelmingNNSQ?NNQۿNNPFxVBQӿNNPSFx?i word tangibleJJEԸ?NNEԸ i suffix immNNX9v?RBv/NNPrh|׿i+1 word sherryRB+NNP+?i-1 tag+i word DT specificJJ rhNN rh@i-2 word neutralVBP$C?NN$Cӿi-1 tag+i word JJ novelNN(\?JJ(\ؿi word unawarenessNN r?JJ r i word decideVBy&1 @JJNNʡEFWV-VBD/$VBP @RB rhi-2 word forgottenVBN#~j?VBD#~ji-1 tag+i word RB buysVBMbVBZMb?i tag+i-2 tag `` RB VBP7A`?DT-VB= ףp=VBGI +@JJA`"ӿNNX9vVBDtV?VBNtVNNSClPDT/$JJRZd;ORBh|?5?INL7A`i word solutionsNNSQ?VBNQi-1 tag+i word RB acceptedVBNjtܿJJoʡVBD-?i-1 word grandparentsVBPX9v׿NNS ףp= NNoʡ?RBRQi-2 word fillingNNףp= ?JJףp= i-1 tag+i word VB alfrescoRP+RB+?i-1 tag+i word IN scornfulJJQ?NNQi-2 word executives NNZd;?VBNT㥛 INClVBoʡNNPSffffff?VBG#~j?NNPFx?RB;OnVBP~jt?JJ= ףp=?i+1 suffix lasNNSK7A`NN+NNPy&1?i+1 word plants NNSV-NNPNbX9PRP$)\(?VBGNbX9PRP)\(VBN?RBV-JJI +NNB`"@VBDbX9@i-2 word hazardVB r?NN ri-1 tag+i word NN suppressorNN= ףp=?JJ= ףp=i word intricateJJV-@NNV-i+2 word invisibleVBN;On?NN;Onڿi tag+i-2 tag IN JJSPDT(\JJ +?DT(\?NNPuV?VBGK7RBmNNd;O?i word eagerlyVB(\RBOn?JJ/$i-2 word adjustmentsRBlINl?JJ(\?VBD rhVBNh|?5ֿ i-1 word hardNNJ +?VBDClJJ+η?DTCl?NNS;On?VB#~ji-1 tag+i word `` at&tNNQNNPQ?i+2 word evidentNNSQJJ"~jNNFx?RBV-?VBP/$i-1 tag+i word , accountVBPd;O@NN-RB&1i-1 tag+i word DT staggeringVBG\(\߿JJQ?NN(\i+1 suffix esaJJ%C?NNP㥛 NNv/VBDNbX9?JJRrh|?RBRA`"i-1 tag+i word NN tumblingVBGZd;O?NNZd;Oտi-1 tag+i word NNS providerVBP)\(NN)\(?i-1 tag+i word DT frustratedVBN㥛 JJ㥛 ?i-1 tag+i word JJ flightsNNSCl?NNCli-1 tag+i word JJS retailJJ^I +?NN^I +i-1 tag+i word -START- analysisNNS㥛?NNPS㥛 i-1 word work RPK7?NNy&1ܿJJR|?5^VBPV-JJ+VBZCl?NNSCl绿RB-'@VBDRBR"~j?VBNB`"۹INDlѿDTy&1?i word impasseNN-?JJ- i-1 word holdNNP(\RP;On @RB/$NN!rhJJZd;O?DT+i-1 tag+i word JJ culturalNNS;OnJJ;On?i-1 tag+i word VBZ spousesNNSrh|?VBNrh|i-1 tag+i word NNP schimmelNNPSKNNPK?i+2 word biotechnologyNNV-?JJV-i-1 tag+i word PRP$ separateJJx&?NNx&i-2 word readingNNv/JJI +NNSB`"?i-1 tag+i word NN surgeryNNSKNNK?i word formerlyVBZjtINףp= RB\(@JJ-VBDX9vi+2 word connectionVBPzG?RBx&JJRDl?VBGHzGNNHzG?VBDzGVBNzG?RBRV- i-2 word termVBMbX9?VBP(\?NNNbX9JJw/VBDffffffi-2 word proteinJJ9v?NN9vi-2 word creaturesRP/$RB/$?i+2 word puffersNN$C?RBvJJCli-1 tag+i word DT scholarNNZd;O?JJZd;O i word patentNN9v@JJMb NNP ףp= ?i-1 tag+i word DT livingVBGX9v?NNףp= ?JJEi+1 word lexusVBG(\?JJ(\i-1 tag+i word IN fancyNNbX9JJbX9@i-1 tag+i word DT agendasNNSS㥛@NNS㥛i+2 word africaRBT㥛 NNPv?VBffffffINL7A`?i+2 word minesRBzGNNPzG? i suffix estVBNClMD~jtJJS/1@JJRʡECD-WDTuVNNQNNSvVB|?5^?WRBSRBS)\@VBDJ +JJ'1ZDTV-RB~jt@NNPSпUH㥛 VBPJ +?VBZ(\BNNPGz?RBRnIN?i+1 word tensionsVB?5^I ?NN?5^I i-1 word temporaryVBG(\JJsh|??NNK7A`i-1 word endangeredDT{GzPDT{Gz?JJRQ?NNPRQi+2 word tettamantiNN-?VBJJRrh|߿ i-1 word shyRP9v?RB9vi-1 word conductingJJ rh?VBNKNNQi word offshootNN9v?RB9vڿi-1 tag+i word PRP blockVBDV-VBV-?i+1 word spectatorJJʡENNPʡE?i word relentingVBGbX9?NNbX9i-1 tag+i word PRP$ faithNN+?NNS+ۿi+1 suffix nusVBG}?5^I?JJPn?NNffffff i+1 word endsNNS?JJSi-1 tag+i word RB withdrewJJX9vVBDX9v? i word failsVBZJ +@NNS(\NNffffffi-1 tag+i word VBG arenaNNv?RBZd;OտJJV-i-1 tag+i word VBP linkedVBNh|?5?JJh|?5i-1 tag+i word , luringVBG r?NN rпi-1 tag+i word VBP ampleVBNGzJJGz?i tag+i-2 tag : LSNNPjtVBZjt?JJK?NNKǿi-1 word ospreyNN/$JJ/$@i-2 word worseJJRT㥛 ?NNoʡRBR9vi-1 tag+i word -START- detailsNNPQVBZSNNS"~@ i suffix flyRBSV-VBNSVBPw/?JJ!rhVBCl?RBbX9NN\(\?VBDMbX9i-1 word environmentVBؿVBGK7A?NNK7AVBP?VBZQNNSQ?i-1 word muscleVBZ(\NNS(\?i-1 tag+i word VBZ niceJJRQ?NNRQi+1 word memoriesNN!rh?JJ!rh̿i-1 tag+i word PRP firstVBPMbX9RBuV@JJSVBZK7Ai-2 word opposedVBp= ףWDTʡE?JJp= ף?WPʡEi+2 word crunchierVBPh|?5JJRbX9?NN\(\i-1 tag+i word VBZ outsideRBI +INI +?i+1 suffix ntiVBZ?NNPi-1 word kidneyVBN㥛 ?VBD㥛 i-1 tag+i word : seldomRB~jt?NN~jti-1 tag+i word VBD theirsNNS\(\PRPGz?JJ i word offer NNPOnRPPnNNM@JJRFxVBPGz@INFxVBZףp= NNSq= ףpVB|?5^?VBDA`"CD$CJJףp=  i-1 word markNNS)\(NNrh|?NNPE?i word springsNNPSK7?NNPK7ɿi-1 tag+i word CC seriesJJV-NNʡEۿNNP#~j? i word earlNNSClNNPCl?i-1 word unaditedJJ'1Z?NN'1Z i-1 word meaPRP-NNP-? i-2 word nsaVBV-?JJV-i-1 tag+i word CC boastsVBZMb@NNSʡENNjti+1 word patchJJ'1Z?NN'1Zi-2 word meltdownVBNx&1?JJx&1̿i+1 word morishitaNNPʡE?NNSʡEi-1 tag+i word PRP$ fansNNSCl?JJCli-1 word smallerJJ +VBP`"NNL7A`?i-1 word lynchNNS{GzܿNNP/$?JJM?NN/$RBMVBZ{Gz?i-1 word noxellVBZuV?NNSuVi+1 word merelyINT㥛 RBT㥛 @i+1 word innocenceVB +?NN +޿i-1 tag+i word , rangedVBNV-VBDV-?i-1 tag+i word -START- failureNNn?NNPni+2 word issue NNy&1?VBN-RBRsh|?VBPx&?JJRq= ףp?NNPv?NNPSh|?5VBG(\?RBMDTʡE?JJ"~ҿVBD&1i-1 tag+i word WRB citizensVBZClNNSCl?i-1 tag+i word JJ furtherJJM?RBB`"RBRn i suffix ansNNPSA`".@UH/$VBRQ VBP/$NNP(\BJJRzGJJ)\(VBD/$CCEVBNL7A`RBRRQRPV-NNI +!RBPnVBZK7!@NNSS)@i+1 suffix latVBNX9vVBP}?5^I?RBM?DTV-׿NNZd;߿VBDX9v?CC^I +i-1 word maintainedDT ףp= IN ףp= ?i-1 tag+i word DT breadedVBN5^I ?JJ5^I i-1 tag+i word VB declinesNNSx?RPxi-1 word court VBGX9v?VBDuV@POSMbX9?RB(\NNS~jtVB\(\NNrh|?FWV-VBNnVBP{Gz?VBZK7?NNP333333i-1 tag+i word JJ frontNNSKNN+?JJjtĿi word bowlingVBGK7NN5^I @JJSi-1 tag+i word NNS approvedRPxVBDx?i-1 suffix skaVBZ'1Z?VBP\(\NNSS?NNS?JJ1Zdi-1 tag+i word TO testimonyVBGzNNGz?i+2 word marshaJJʡE?NNS㥛NNP$Ci+2 word portraitsNNPNN?i+2 word industrial JJK?NN rhVBPd;ORBA`"?VBZd;O?NNS rh?RPw/?VBNV-?RBRRQWDT{GzINbX9NNP%CVBDV-i-1 tag+i word PRP thinkVBS㥛?VBPI +?NNV-RBSVBDx&1i-1 tag+i word DT modernizedVBN{GzԿJJ{Gz?i+2 word corryNNSQֿVBZQ?VBGClNNffffff?JJL7A`? i-2 word dpcNNPHzGNNPSHzG?WDTm?INmi+2 word markedVBZMbX9?NNSMbX9 i suffix ata VBuVNNPSFx@FWQVBPK7IN rVBZ$CۿNN(\ſVBNMbX9CDʡEJJ㥛 NNSh|?@NNPd;O?i+1 word brazilDT9vWDTZd;INsh|??i-1 tag+i word JJ darwinianJJ5^I ?NNP5^I i+2 word dominatingDTx&1WDTx&1? i word bagNNCl?INCl i+1 word at&tDTlINZd;O?WDT)\(VBNMbX9VBDMbX9?i-1 tag+i word `` guidelinesNNPSx&NNS-?NNP)\(i-1 word doubt VB(\?NN/$VBP㥛 ҿEXK?RB&1IN(\?VBDQ?VBNQοWDT(\i-1 word plasticsNNV-?RBV-i-1 tag+i word NNP husbandsNNSZd;O?NNPZd;Oi-1 tag+i word RB votedVBNV-VBDV-?i-1 tag+i word CC foundVBN㥛 ?NNClVBDA`"ӿi-1 tag+i word JJ flagsNN +NNS +?i+1 word offeredVBZS?NNSuVNNPJ +NNPS^I +RB1ZdNNQ?VBP rhJJ&1?i-1 tag+i word VBZ somehowRBd;O?NNd;O i+1 suffix --NNPSX9v?RBRV-VBP(\?JJRX9v?CD+@NNQ@VBD rJJSjt?NNPM?RPOnINK7A`JJZd;OVBNMbX9?DTʡE@NNSJ +@VB(\ҿVBG/$ FW/$?RBStVοRB/$?VBZףp= i-1 tag+i word NNP interestNNPKNNK? i suffix orpNNX9v?JJMbPDT(\NNSX9vNNPv/VB%C@NNPSˡEi+1 word ozoneJJzG?NNzGi-2 word mimicNNn?JJn i+1 word flatVBDX9v?CC^I +VBNX9vVBP}?5^I?RBM?DTV-׿NNZd;߿i-1 tag+i word IN allegedVBDVBNI +޿JJ r?i+1 word enjoyIN"~jWDT"~j?RBJ +?JJJ +i-1 tag+i word RB populatedVBN&1JJ&1? i word enticeVBS?NNS i-1 word askaNNS'1ZܿVBZ'1Z?i+1 suffix wppVBZMb?NNPMb i word chunksNNSv/?NNv/i-1 tag+i word DT figureJJffffffNNffffff?i+2 word prospectiveNNSV-?NN;OnJJ|?5^ڿi-2 word spaceNNP~jtӿNNX9vJJR!rh?JJjtVBZSNNSS?i word terminationsNNSy&1?NNy&1i word delayedNN/$RBS㥛VBN{Gz@JJ rhVBDnڿi+2 word significantCDV-JJZd;O?DT r?VBGZd;OݿRBQٿVBDʡE?PDTʡEi word taperedVBNʡEJJʡE?i-1 tag+i word VBZ enoughJJK@RBX9vNN$C?i word stirredVBPV-VBDV-?i-1 tag+i word VBD resetVBlJJl?i-1 tag+i word -START- yesUHQ?NNClNNPjti-1 tag+i word , swissNNPףp= JJףp= ? i-2 word johnNN#~jVBDMNNP#~j?VBNM?i-1 tag+i word DT scottishJJ;On?NNP;On i word whimNNx&1?RBx&1 i+1 word playJJv/?VBZClMDCl?VBGK7ANN rhVBNHzG?i-1 tag+i word NNS failVBPzG?NNzG i+2 word dadINCl@RBClNN^I +?NNP^I +i-2 word assumptionJJRKRBFxٿRBRS㥛NN#~jIN?5^I @i-1 word attitudesVBV-VBPB`"?NNSq= ףpNNi-1 tag+i word NNP germansNNPSQӿNNSZd;O?NNPy&1i-1 tag+i word PRP gotVBP;On?VBNjt?VBDd;Oi-1 tag+i word POS maybellineNNGz޿NNPGz?i+1 word operatorsNN\(@JJ}?5^I NNP`"VBMb?i-1 tag+i word PRP$ hostsNNSQ?JJQi word replacementsNNSjt?VBNQJJZd;Oi-1 tag+i word VBZ mixedVBNʡEJJʡE?i-1 tag+i word DT euphoriaNN^I +?JJ= ףp=NNSjti-1 tag+i word NNS metVBZ^I +VBN ףp= NNffffffVBDCl @i word tagalogJJʡENNPʡE?i-1 tag+i word VB doubledVBNv/?JJ'1ZĿVBDT㥛 i+2 word men VBDbX9RBR/$?JJffffff?IN$C?VB`"?RBʡENNSuVͿJJR/$NNP`"NNGzVBNbX9?i word hybridsNNV-NNSV-?VBNV- i+1 word fanNNPSV-?NNSRQNNPMbؿ i+1 word eyeJJRjt?JJJ +RBRl i suffix ijfNNPSw/NNPw/?i-1 tag+i word NNS nearbyRBV-?DTV-i-2 word norskeIN?NNPi+1 word beingsVBT㥛 JJ r@NN(\ڿi-1 tag+i word PRP seeVBZClVBPS@RB+VBDGz i word footNNSNN+@JJV-i word unhappinessNN/$?VBNGzJJ9vi+2 word demonstratesJJ!rh?NNP!rhi-1 tag+i word JJ primaryNNL7A`?JJL7A`i+1 word lovesNNQ?RBGzNNPK7DTKi-1 tag+i word VB kidneyNN/$?CD/$i-1 tag+i word DT rapidJJQ?NNQ޿i+2 word theftVBGCl?NNClɿi+1 word chorusVBGJ +?NNJ + i suffix ang NNV-?JJV-VBZʡEVBxNNPS rhVBDw/@VBPClNNSoʡNNP= ףp=@i-2 word enhancedNNSRQ?JJ1ZdNNHzG?i-1 word expressNNX9v?VBDoʡRBRoʡVBZGzNNS/$?NNP= ףp=?MD/$i-1 tag+i word NNP plainesNNPSx&1ܿNNPx&1? i-2 word few VBDK7VBGq= ףp?RB!rh@NNףp= RBRMVBPS?JJlINrh|?NNS+?VBZ#~jRPV-VBN+?i-1 tag+i word WRB ogonyokCCHzGNNPHzG?i word treatmentNNPSV-JJHzGNNPX9v?i-1 tag+i word DT forecastingNNGz?JJʡEۿVBGS㥛i-2 word increased VBZd;JJB`"۹?NNS+RB333333@JJRGzNNy&1?VBDuVINtVRBRGz?CD+?VBNjti-2 word calgaryNNPSB`"NNPB`"? i suffix ufsVBGzFWGz?INK߿ i word spokenVBZʡEVBNx?NNZd; i-1 tag+i word NNS entrepreneursVBZmNNSm?i word privilegedVBNxJJx?i-2 word menckenRBrh|INrh|?i-1 tag+i word VBG gallantVBPClVBN(\JJZd;?i-1 tag+i word VB impairRB1ZdVB1Zd?i-1 tag+i word JJ videosNNS|?5^?NN|?5^i-1 tag+i word . projectNNMbX?NNPMbXi-1 tag+i word JJ actJJ&1NN&1?i-1 tag+i word JJ fragmentsVBZCl?NNSCli-1 tag+i word VBZ clearJJp= ף@NNh|?5RB/$i+1 word kidnapperVBNZd;O?JJZd;Oi word operatesVBZK@RP333333NNSoʡ i-1 word broncoVBPDlNNDl? i word metricJJQNNPQ?i-1 tag+i word NNS huddledVBNSVBDS? i word closedVBNClJJʡEӿVBDK7@i-1 tag+i word NNP signalJJmNNPm? i word timeNNPbX9?MDZd;ONNPn?RBA`"JJS㥛 i+2 word tomJJ^I +?VBN/$NNףp= ?i-1 tag+i word CC fearedJJ-VBDX9vVBNK7? i word flushJJ"~j@RB/$NNClۿVBDV-i-1 tag+i word DT widowNNS(\ݿNN(\?i-1 tag+i word JJ noticiasNNS㥛 NNP㥛 ? i+1 word herdNNMbX?JJMbXѿi-1 tag+i word DT middlemanNNV-?JJlNNPsh|?ݿi-1 tag+i word JJS naggingNNZd;O?JJZd;Oi-1 tag+i word ( tidalNNSNbX9ؿJJCl?NNV-i-1 word delmedVBD"~?VBN"~i-1 tag+i word VBZ dawningVBG+?NN+߿ i-2 word joshJJV-?NNV-i+2 word attemptVBD$CVBNV-@RBClINFx?VBGEؿJJx&1NNjt?i-2 word concedeJJ= ףp=@RB= ףp=i+1 word abductionVBNw/JJw/? i suffix hilNNPNbX9?NNPSNbX9i-1 tag+i word NN shakeVBDVBPn?VBPMbX9i-2 word fryarNN\(\RBV-VBDS? i suffix yenNNSZd;O@NNPSQRBZd;O׿NNʡEFW/$JJRmJJp= ף @INV-i-1 word sprinklesVBPK7A`JJK7A`?i+1 word assistanceRBR5^I ۿNNP/$?NNK7A`JJR5^I ?JJv/i-1 tag+i word CC chalkingVBGx&1?NNx&1i word serpentineVBmտJJ/$?NN㥛 i suffix gasNNPSn?NNQ?VBP rhJJ~jtDTZd;ONNS(\?NNP^I +i-2 word airedJJFxVBDFx?i-1 tag+i word CC chiefVB\(\VBDJJx?NN rh?NNPˡE?i word barriersNNSV-?NNV-i-1 word nissan VBG?RB~jtPOS~jt?VBN~jtVBZx&1̿NNI +VBD~jt?VBPp= ףJJDlѿNNSx&1?i-1 word aerospaceNNPSV-߿NNPV-? i suffix OffINʡE?RBʡENNPw/i word cripplingVBGx&JJJ +@NNʡENNPx&1i+2 word modernRBx&@JJoʡINy&1i-1 tag+i word CC canadianJJp= ף?NNPp= ףؿi-1 tag+i word VBG fatJJbX9?NNSGz޿NNoʡRB|?5^ѿi word africanNNPS9vJJV-@NNP ףp= i-1 tag+i word TO mimicVB`"?JJ`"i-1 tag+i word DT flyingVBG|?5^?NN㥛 JJ?5^I i-2 word spillNNSQ?NNQJJSNNPS?i+1 word communicationsVBG%CNN/$?JJ\(\NNSMbX9?NNP)\(ܿNNPSS@i-2 word dramaJJ@NNnNNPV-?i word mysteriouslyRB+?NN+i-1 word internationalNNPS㥛ĿNNPS#~j?NNS rhJJ!rh?NNx&1i+1 word finnishINT㥛 ?RBT㥛 JJjt?VBDjti-1 tag+i word NNP graphicsNNPSv?NNSh|?5NNP-?i word shipyardNNoʡ@JJK7VBDT㥛 i+1 suffix aiaVBDy&1VBNy&1?i+1 word caseloadsNNx&1?JJx&1ܿi-2 word stirsVBDZd;OJJtV?NNPQi word verdictVBPA`"ۿNN @RBSJJ#~jVBNʡEi+2 word shimbunNNP%C?NN-JJh|?5i+1 word complianceJJV-NNP1Zd?VBuV?NNp= ף?RBRVBP1Zdi word stiflingVBGGz?NN|?5^ʿJJˡEĿi+1 word uncertaintyVBD;On¿VBNPnRBRjtJJ+?IN^I +?DT^I +JJRjt?NNP7A`i+1 word strippedNNS-NN-?i+1 word benefitedVBP)\(NN)\(?i+1 suffix ngeVBGˡEVBDʡERB/$INZd;?NNPSuV?JJ+@VBPx?VBN-DTL7A`CDd;ONNq= ףp?RBRMbJJR/$?VBOnNNS(\?NNP{Gzi+1 suffix agoJJ?5^I NNS+?NNS㥛?RBPn?INˡEi-1 tag+i word JJR cripplingJJx&1?NNPx&1i word uncoveredNNSsh|?VBNʡE@JJZd;OVBDS㥻i-1 tag+i word `` novelJJ%C?NNZd;OFWX9vi-1 tag+i word NNP averagesNNSX9v?VBZX9vi-1 word compactNN~jt?RB~jti+2 word rainesVBZsh|??CDsh|?i word unnecessaryVBZ~jtJJS?NNP^I +i+1 suffix buy NN\(\WDT5^I ?JJ\(\?INK7A`?NNPE?RB +RBS&1JJS&1?NNSEi-1 tag+i word FW neigeNNK߿FWK? i word bitterJJV-!@NNRQ JJRL7A`VBNʡEVBPtVRBK7i word interpublicJJoʡNNPoʡ?i-1 word storesIN?RPRB|?5^ڿVBDtV?VBNtVVBP;On?WDTJJV-?i+1 word marathonJJ|?5^?RB|?5^i+1 word understandingJJoʡVBGp= ף?VBNoʡ?NNp= ף i word bpcaNNuVNNPuV?i-1 word resetVBG rhNNSJJ rh?NNSS?i-1 tag+i word -START- geraldoCC1ZdNNPSNbX9NNP?5^I ?i word professorVBN"~NN\(\NNPK@i word corporatewideVB`"οNNS;OnJJrh|@NNZd;i-2 word flagsVBD +@VBPINDlWP(\i-1 tag+i word CD faultlessJJoʡ?NNoʡi-2 word collegeVBD\(\VBNMbX9VBPX9v?RB\(\?VB'1ZJJrh|@NNl?FW%Ci word hamakuaNN(\@NNP(\i-1 tag+i word RB tougherJJR{Gzt?NNQRBRK?VBDMbi-1 tag+i word -START- whoWPS㥛 @JJR㥛 NN-NNPw/i-1 tag+i word VBZ somewhatWPʡEֿRBZd;@JJxi-1 tag+i word NN rilesVBZm?NNSmi+2 word printersDTʡEPDTʡE?i-1 tag+i word JJR soNNRB?i+1 word lauraJJRffffffNNffffff?i-1 tag+i word DT inchNNn@NNSV-VBNffffffJJy&1i-1 tag+i word TO complyingVBGzG?NNzGi+1 word efforts VBN+?RB(\VBZ/$?VB\(\?NNMJJX9vVBD rhJJROn?VBGʡE?NNSOn?NNP{GzNNPS$CRP?i-1 tag+i word CC recreationalVBJJ?i-1 tag+i word RP baseNNh|?5?RBw/JJ/$ i-1 word lizNNPS rhNNP rh?i+2 word former NNV-?VBDV-?RB(\?DTV-?NNPST㥛 JJX9vVBN+CD{Gz?INV-NNS%CNNP rh? i-2 word ourVBjt?RBRMb?JJV-NNPʡE?NNw/ĿNNSx&VBPDlٿVBZ= ףp=?DTx&1?NNPSX9v?RPw/RBQ?VBNffffff?VBDQINPni-1 tag+i word VB pactsVBZ{GzNNS{Gz? i suffix PRINN\(\NNP\(\?i-2 word redfordVBMb@RBRMbRBMb?INMb i+2 word drawRB'1ZINRQ?VBZX9v?NNSuVJJMbP?NNMbX9VBPd;O?i-1 tag+i word NN pressJJ5^I INK7A`ݿNNw/?i-1 tag+i word NNP thriftsNN/$VBZV-NNS"~? i suffix nniNNP/$?VBD/$i-1 tag+i word IN selectedVBNzG?JJzG i word somberJJCl?NN㥛 NNP)\( i suffix raxNNSFxѿNN1Zd@JJh|?5 i suffix eck NNPSEJJ?5^I NN`"@JJR-VBP/$?RBx&1ܿWP(\VBZZd;NNSGzNNP)\(?VB{G@VBN= ףp=ڿUHp= ף?i-1 tag+i word : includesVBZjt?NNPjti-1 tag+i word CC drugNNʡENNPʡE?i-1 word properlyNNbX9ƿVBNK7@VBPMbJJ|?5^VBK7?RBMbi-2 word caygillRBV-VBDV-? i word barnJJ"~NN"~?i+1 word devaluationsVB/$ӿVBP/$?i word clothierRBRNN?i-1 tag+i word TO seizureNNuV?VBuVi-1 tag+i word VBD intendedVBNQ?JJQi word hospitalNNPnWP9vNNZd;@JJQi-1 tag+i word CD cumulativeJJ)\(?NN)\(i word automobilesVBZZd;NNSsh|??NN$Ci-1 word latestVBP-NNZd;O?VBNZd;OJJ-?i-1 word feministVBZB`"NNB`"?i+2 word tariffDTZd;OPDTZd;O?i+1 word wroteNNP333333?NN333333i-1 word maritalJJS㥛?NNSrh|NN9v?i-1 tag+i word NNS spraysNNSV-?VBDV-i-1 tag+i word : wholesaleVBPx&JJx&?i-1 tag+i word JJ variableNN-?JJ-i-1 suffix msyVBZB`"NNSB`"?i word beachfrontJJ$C?NN$Ci+1 word illusionistJJv?VBNvi-1 word mcdonaldNNPSտVBZ/$?POS㥛 i-1 tag+i word PRP$ northJJ|?5^NNZd;?NNP r?i-1 tag+i word CD planesNNSQ?JJQٿ i word makeupJJRMbXNNS?JJK7A`NNP;On¿ i word saggedVBNV-VBDV-?i+1 word foreverVBP/$?JJ/$i-1 tag+i word CC transformsVBZS㥫?NNSS㥫i+1 word photoVBN(\JJ(\?i-1 tag+i word DT trainNNQ?JJQ˿i-2 word largest VBGn?RB`"JJSffffffJJCl?NNSK7NNPL7A`NN#~j@RBSffffff?VBP rhVBZi word remindsVBZJ +?VBx&1VBPV- i suffix STYNNFxNNPSJJGz?i-1 tag+i word CD measureNNST㥛 NNV-?JJOn i word gridNNSx&1ԿNNS㥛?JJQi-1 tag+i word PRP dailyRBT㥛 ?JJT㥛 i-1 tag+i word VB repeatsVBjtNNSjt?i-1 word burnhamNNPS(\NNP(\? i suffix sitJJffffffNNPKVBK7?RBtVNNV- @VBPtV? i suffix mit VBZxNNS7A`ҿVB'1Z?NN/$@VBN~jtVBP- @NNPS/$FWClJJ/$ INCl i word less NNS/$JJ"~j#CC㥛 0@JJSJ +@RBRMbX!@VBN{GzܿLS/$VBZ9vVBNN㥛 0JJRƋ$@VBPV-RBOn i-1 tag+i word ( readVBX9v?NNQVBDףp= i-1 tag+i word PRP$ aluminumNNSw/NNQ?JJ/$ſi+1 suffix kanVBʡE?NNʡEֿi-1 tag+i word NN photosNNSQ?NNQi word marunouchiNNPSX9vNNPX9v? i+1 word toldVBZQNNSQ?NNOn?JJffffffNNP/$ i suffix 100CD7A`?JJ7A`i-1 tag+i word VBZ varyVBPV-?JJV-i-1 tag+i word '' !HYPHENNNPDlNNSDl?NNX9v?JJX9v޿ i suffix limJJv/?NN;OnNNSV-i word percentageNN^I +?NNP^I + i+2 word dr. NNPS$CRBR)\(VBP(\WDTrh|?JJQ?VB(\@NNQ޿INrh|NNP$C?i-1 tag+i word CD executiveNNV-?JJV-i-2 word taking JJRL7A`?RBRL7A`尿VBP(\ڿJJSۿNNDl?VBDPnVBNoʡ?RBMb?IN rh?i-1 tag+i word NNPS organizingVBG-?JJ-޿i+1 suffix scoVBsh|??NNPST㥛 JJsh|?NNPT㥛 ?i-1 word fitchNNPSMb?NNPMbi-1 suffix askVB1ZdPRP~jt?RBnINm?i-1 tag+i word CD islandsNNSB`"?JJClǿVBZB`"i-1 tag+i word NNP belloNN{GzNNP{Gz?i-1 tag+i word VBN foolRBRGzNNGz?i word permissionNNˡE?JJˡEi-1 word narrowerNNPx޿JJx?i-1 tag+i word VBD unpreparedVBN\(\ϿJJ\(\? i+1 word sentRBK7A`?INDlJJq= ףpNNsh|??RBRMWDTDl?i-1 tag+i word `` lockedVBNx&?VBDx&i-1 tag+i word JJ crunchNN1Zd?JJ1Zdi+2 word opportunistsINtV?VBtV i-2 tag POSCDl?IN"~?JJS#~jNN#~j?NNSx@WRBffffff?JJGzRPHzGVBuVNNPSK7A`?JJRL7A`VBDl?VBNPn?WDTJ +FW7A`?RBzGRBSRQ?VBGSVBZ&1?DTSCCsh|??RBRffffff?EXNbX9VBP~jt?WP +?NNPq= ףp? i+2 word seek NNPK7A`?VBG= ףp=NNS?VBDL7A`?VBNL7A`NNSrh|MDRQؿVBRQ?RB'1Z i word limplyRBV-?NN{GzJJ%Cܿi-1 word disappointinglyVBZd;OJJZd;O?i-1 tag+i word NN proteinsNNSʡE?INJ +VBZʡE?i+1 word outlookJJ+?NN+ i pref1 AVBGjtNNK7 LSZd;JJjtCDףp= MDMbDT?5^I @RB$C?CC/$?UH`"?WDTrh|RPS㥛ĿNNS7A`JJS|?5^NNP7A`+@VBP/$@$Fx@VBw/IN/$@JJRQVBDʡEVBN\(\PRPSNNPSZd;@''EVBZOnPDT rh?RBRMi+1 word cedarJJ!rh?NN!rhܿi-1 tag+i word ( clintNNPnNNPPn? i word strainNNS%CNN%C?i+2 word recourseINCl?NNPCli+1 word perestroikaJJʡEƿNNPzGʿIN~jt?i+1 word deutscheWDT&1IN&1?i word knowledgeNNSzGNN?FWRQi-1 tag+i word , teachersVBZ~jtNNS~jt?i-1 word scarfingRPʡE?JJʡEINFxi-1 tag+i word -START- medievalJJ$C?NNjtNNPS i word linesNNPSsh|??NNPsh|?i+2 word outnumberedVBGףp= ?NNףp= i-1 word unstableDTI +INI +?i-2 word retailerNNPS r?NNP ri-1 tag+i word VBG heatRP`"NNjt?JJZd;VBNx&1Կi-1 tag+i word JJ economicsNNSffffffNN+NNP333333?i-1 word digitalVBGNNK7A?VBDʡE?VBNʡEJJT㥛 ?INNNPZd;O?!i-1 tag+i word -START- courtauldsNNS\(\NNbX9NNP\(\@NNPSX9vϿi tag+i-2 tag '' ''NN\(\?RB\(\׿ i+1 word ltdNNPS{Gz@NNP{Gzi-1 suffix ppeNNPT㥛 ?FWT㥛 i-1 tag+i word -START- tooNNP1ZdRB1Zd?i+2 word mundoNNS㥛 NNP㥛 ?i-1 tag+i word POS bluffNNPST㥛 NNPT㥛 ?i-1 tag+i word NNP needsVBZn?VBPni-1 tag+i word VB !DIGITSNN㥛 JJX9vCDL7A`@i word involvedVBPDlRB&1VB+JJ r@NNS㥛VBDI +RBRzGVBNjt@ i word boundNNoʡNNSjtVBNK7@JJA`"˿i-1 tag+i word NNP branchesVBZX9vNNSX9v?i-2 word smokingVBGףp= NNSx&NNFx?VBZffffff? i-1 word parkNN333333NNP333333?i-1 tag+i word NN hitsVBZffffff?NNSffffffi+2 word fewestDT/$޿PDTL7A`INRQCCOn@i-1 tag+i word , cheapestJJS{Gz?JJ{Gzܿi-1 tag+i word DT germanNNPSV-JJ"~j@NNP!rh i-1 tag+i word NNP nomineesMD/$NNS/$?i-1 tag+i word JJ leavesVBZx&?NNSx&i-1 tag+i word JJ peasantNN?5^I ?JJ?5^I i-1 tag+i word DT mixNNSʡE޿NNʡE?i-1 word stimulateVBsh|?ݿNNsh|??i-1 tag+i word CC buysVBZ'1Z?VBoʡݿVBPSi-1 tag+i word NN heldVBZxJJL7A`ؿVBN~jt?NN-VBD(\?i-2 word edinburghNNh|?5NNPh|?5?i-1 tag+i word CC timelyJJ?RBi+1 word sensitivityVBN/$NNʡEJJ/$?i-2 word worthNNSuV?NNP{GzJJl@VBDjtVBNd;ORBJ +INJ +?i word overdrawnNN$CJJ9v?VBNˡEi-1 tag+i word DT finalJJKNNPK?i-1 tag+i word -START- directedVBNOnJJ"~jNNPX9v?i-1 word tiananmenJJ?5^I NNP?5^I ? i-1 tag+i word -START- telefloraNNoʡNNPoʡ?i-1 word expansionNNSS㥛?JJ%CԿNNZd;O@VBDV-?VBNV-RBClVBZS㥛i-1 word chinaVBGZd;?NNZd;i tag+i-2 tag NNPS NNPNNPSMbпNNS}?5^IRBK7ɿVBG;OnRPZd;O?POS333333?''333333VBP= ףp=ҿIN-NNPS㥛?JJZd;O?NNV-?VBD5^I ?VBNVBZd;O?CDzGi+1 word attractedWDTsh|??INsh|?i word chalkingVBGx&1?NNx&1i+2 word foretVBNClVBDCl?i-2 word pretendVBNʡEVBDʡE?i-1 tag+i word NNS hopeVBPL7A`@NNSVB!rh i word wackyJJˡE?NNˡE i word bomberNNPV-VBP rhRBS/$NN|?5^@i-1 tag+i word JJ cocoaJJ/$NN/$?i-1 word marginsINMbVBjt@VBD$CVBN$C?VBPx&ٿRBˡEi word tahitianJJZd;ONNPZd;O? i word peltzNNPSxNNPx?i+2 word pensacolaVBV-NNV-@i word notificationNN/$?JJ/$i word timberlandNNGz?JJGzi-1 tag+i word VB steamNN)\(@JJT㥛 JJRMb i suffix IONNNPSq= ףpNN5^I @VBD-VBZ#~jNNS"~jNNPrh|?i-2 word pleasedDTGzNN㥛 NNP㥛 ?VBGz?!i-1 tag+i word PRP$ correspondentNN&1?JJ&1i+2 word liborNNPSS?NNS/$?NNP~jti-1 tag+i word RB strainedVBN-?JJ5^I VBD%Ci+2 word aerospaceNNPMbX9?NNPSd;OοNNS~jtJJv?NNv i+1 suffix d.VBJ +NNPJ +? i+2 word bothNNPSK7A?VBG#~jNNSA`"˿VB rhRP-NNQ @VBDS㥛VBP333333INjtܿJJ~jt?RB/$?VBNx& @WDTMbX9?DTffffffNNPv/i-1 tag+i word WDT onlyRB}?5^IJJ}?5^I?i-2 word focusedRBzG?JJzGNN1ZdVBG1Zd?i-2 word deckerVBNnJJZd;O?VBDZd;i+1 word contractedRPK7?INK7i-1 tag+i word VBD sweepingVBGX9vJJX9v?i-1 tag+i word : sfxVBZOnNNoʡNNPtV?i-1 tag+i word JJ revealingJJK?NNEпVBGvi-2 word foyerVBGRQ?NNRQi-1 tag+i word NN freezeNNx&1?NNPx&1i+2 word plumbingNNx&1?JJx&1 i-1 tag+i word VBZ misunderstoodJJ%CVBN%C?i+2 word looksVBDV-RBRx&?VBNw/?EX5^I JJS?JJRx&RB5^I ?NNjti-1 tag+i word DT gloomNNSjtܿNNjt?i-2 word pistonINS㥛?RBS㥛i-1 tag+i word RP recordedVBNKJJ?VBDNbX9 i word vocalNNQ?JJQi+1 word pregnantNN-?JJ-i+2 word contendJJSn?RBSni-1 tag+i word VB useNNGz?RBGzi+2 word losersJJ$C?RB$C i suffix incNNtV?CDtVi-1 tag+i word NN recordVBuVNNuV?i-1 tag+i word NN fieldsVBZSVBZd;ONNSzG@NNy&1i+1 word richardNN{Gz?VBDNbX9VBNS?RB{GzNNPoʡJJS㥛?i+2 word rejoinEXV-NNV-?VBZ+NNPS+?i+1 word carbonINMb?JJ'1Z?VBDxVBN= ףp=?RBMbi-1 tag+i word RB fearVBPQNNQ?i-1 tag+i word CC stockholmNNPSPnNNPPn?i-2 word sandsNNPZd;ONNPSZd;O?i+2 word kerloneJJS?NNSӿi word bristolNNPSnNNPn?i-1 tag+i word CC trainingVBGS㥛ԿNNS㥛?i-1 tag+i word JJ introducedINˡEVBDˡE?VBN"~?RB"~ i word limbNNjt?JJ#~jVBKi-1 tag+i word `` educatingVBG+?NN+i+1 word monthlyJJS rh?VBNK?JJsh|?VBZV-VBx&1?NNMbVBDKi-2 word monitorNNA`"@JJ|?5^VBGJ +i tag+i-2 tag JJ RBR RBnNN rh?FWffffff?VBZv/NNSp= ףNNPˡE?VBG(\µ?INl?JJx? i+1 word bulkVBPnؿVBPPn?i-1 tag+i word CC stopVBK7?VBZK7ѿi-1 word gatheringRB$CNN)\(?JJR~jthJJx&1?NNSh|?5i+1 suffix ang VBZ\(\NNS?WP+VBNQVBPxJJClRBSINPnDTPn?NNSA`"?NNPGz @i+2 word defensesNN^I +?JJ^I + i-1 tag+i word -START- complyingVBG +?JJMbX9NNlڿi word reynoldsNNPS5^I NNP5^I ?i-1 tag+i word TO engageVB-?NN-i-1 suffix bonNNSnNNS㥛?JJS㥛FWn?i+2 word malibuVBZʡENNSʡE?i-1 tag+i word VB humanJJCl?DTCl i word sheerJJvϿNNP5^I VBQӿNNʡE?i-1 suffix untVBZGzNNPS|?5^RB/$@VB rhѿINQ NN1Zd?VBD'1Z@VBNsh|?PRPSJJh|?5?NNP\(\?PRP$S?RP#~j?NNS!rhi-1 tag+i word -START- airlinesNNPSNNS?i-1 tag+i word JJ figuresVBZZd;ONNSZd;O?i-2 word fictitiousVBZv/NNSv/?i+1 word digestingNNSHzGRBHzG? i-2 word amidJJ+INzG?WDT5^I DTnVBG+?i-2 word presidentRBbX9NNSx&1ȿVBZn?VBP?WDT+VBG'1NN#~j?VBDRQ@VBNL7A`堿INMb?NNP|?5^ @VBZd;NNPSX9v߿JJS˿i word northeastRBp= ף?NNNbX9@INvJJKNNP(\ſi-1 tag+i word VB eitherRB/$?CC9v?DT{GzJJR^I +i-1 word destroyedINCl?RBCli word nuisanceJJQ?NNQi-2 word disproportionatelyVBv/ݿJJ|?5^?NNS㥛UHx&1пi-1 tag+i word JJ obsceneJJrh|?NNrh|i word electedNNP+VBNl@JJˡEVBD/$ۿi-1 suffix mmyVBZ!rhNNS!rh? i+1 suffix j.NNPV-@VBZ333333VB|?5^JJ +i+2 word languageVBPZd;O?RBZd;OJJQտVBDQ?i+2 word experienceVBP333333UH rhٿJJZd;@DT rh?NNP~jtVBS?NN|?5^VBNK7A`i word compareNNPx&1ԿVBM?NN+CCQVBPQ@JJjt޿VBZ;Oni word nairobiNNtVNNPtV?i-1 tag+i word `` encourageNNx&1VBx&1?i-1 tag+i word VBP espsNNPS +?NNP +i-1 tag+i word RB burnishingVBʡEVBGʡE?i+1 word capitalizedRBzG?JJzGi-1 word summonRBףp= ?JJMbVBKi-2 word clementsVBG\(\?NN\(\i word soullessJJR(\JJ(\?i word philosophicNN;OnJJ;On?i+2 word admiredWDT-?NN(\IN/$i-1 tag+i word VB aloftJJB`"ɿNNS+RBA`"?i-1 tag+i word VB readVBNMb?JJMb i+1 word asksJJ= ףp=NN= ףp=?i+1 word lecherousRBB`"?VBDB`"i word achievementNNS㥛?JJS㥛 i word northNNSClǿNNPp= ףJJE?NNRQRBNbX9@IN`"i+2 word violationsRB;OnVBNS?VBP㥛 JJl?IN;On?NNP?5^I i suffix 30sNNSK@JJ|?5^NNx&CDMbp?NNPSI +i word declassifyingVBGQ?JJQi-2 word charlotteJJ5^I ?VBD5^I ˿i-2 word telegraphWDTtV?INtVi-1 tag+i word CD topNN/$?JJ/$i+1 word frontsJJR7A`NNK7?INK7Ai-1 tag+i word PRP$ shoulderNNףp= ?JJףp= i word through RBRx&1POSA`"RBlVBZsh|?VBq= ףpRPS㥛@NNV-2VBD+CD&1NNSʡENNP\(\׿JJw/INL7A`e+@i-1 tag+i word IN amateurNNOnVBX9vJJ1Zd? i word wobblyJJB`"@RBB`"i+1 word hanoverNNPSʡE@NNSOnNNPEi-1 tag+i word POS seventhVBPl¿JJ$C?NNI +i-1 tag+i word JJ scrapsNNS|?5^?NNI +JJܿi-1 word namedVBGS㥛JJh|?5NNq= ףp@RB{GzNNSClNNPm?i-1 word standardJJRZd;?JJ+NNS`"?NNPp= ף?VBG rhտNN"~jVBDp= ףRBRZd;i-1 tag+i word VBZ boomingVBGˡEԿJJq= ףp?NNMbi+1 word representingJJ`"JJRPnRBR^I +@RBDlNNSRQ?NNP"~ i word helpedVBMbVBDS㥛D@VBN{Gz?VBPףp= JJV-NNStVi+1 word conversionJJQNNPQ?i+1 suffix aft NNSX9vNNPNN/$ @VBNV-?JJ^I +INMbDTV-?RBK7ѿCDV-WDT- i suffix fatJJzG?NN$C?JJRM?RB|?5^ѿNNSS㥛VBZd;Oi-1 suffix werDT r?NNP#~j?NNPSK7INZd;O?VBZI +VBN-?RP(\NNGz?RBRNbX9?JJX9vWDT= ףp=JJRNbX9RBL7A`NNS&1?i+2 word accusersVB ףp= ?VBP ףp= i+2 word necVBN;OnVBD;On?i-2 word whileVBG{GztNNK7PDTX9v?VBNffffffVBP}?5^I?EXX9v?PRPSINn?NNSMb?VB`"RBzG?VBZGz@NNP +NNPS(\JJ9vVBD&1?CDEi+1 suffix fthNNPJ +?NNPSJ +i+2 word executionJJL7A`?NNL7A`i-1 word partisanVBNFxNNFx?i-1 tag+i word JJ acrossVBPlINl?i-1 tag+i word POS dominantJJX9v?NNX9v i+1 word ;NN(\@VBD333333?NNS(\?RBR5^I ?INQJJR;OnVBG\(\RBx&1?CDV-?NNPS{Gz@WP9vVBNV-?VBPjt?RP9vҿVBZx?VBB`"RBS+JJENNPS㥛 i-1 word loudNNX9v?JJX9vi-1 tag+i word -START- projectsNNPSKNNSK?i-1 tag+i word VB resilientVBNp= ףNNjtԿJJMbX?i-1 tag+i word IN pesticideVBP\(\NNQ @JJy&1i-2 word meanwhile CD#~j?NNPV-@VBGZd;OVBD{Gz@CC5^I RBRNbX9RB-JJˡENN}?5^I?VBN|?5^VBPQ?JJRNbX9?i-1 tag+i word PRP$ toeNNSʡEƿNNʡE?i-2 word typicalCDM?JJM!i-1 tag+i word -START- farmingtonNNZd;߿NNPZd;?i-1 tag+i word WP usedVBPffffffVBDffffff?i-2 word auditsNN1Zd?NNS1Zdi-1 word pushedRPQ@RBHzGJJMINB`"?i+1 word countedNNPrh|׿NNX9v?RBv/ i-2 word etc.DTClWDTQ?INV-i word plasticsNNPS|?5^?NNSffffff@NN(\NNP/$i-2 word custodyPDT~jt?DT~jti-1 suffix ninVBPٿNN+?RB^I +i+1 word deterioratingINtVRPB`"?RBK7A`i+1 word typicalNNK7A`?JJK7A` i suffix ats VBP rhNNPlqVBjtNNPSHz @NN7A`JJRX9vVBZE@NNSrh$@RB?5^I VBDvJJ^I + IN)\( i suffix lapVBZS㥻VBPPn?NN㥛 ڿJJw/ܿRB/$ۿi-1 tag+i word WP sangVBZʡEVBDʡE?i-1 word resigningRPʡEINʡE? i+1 word homeJJRT㥛 ?NNPh|?@NNPSV-VBDuV?INK7A`VBNX9v?NN(\@VBGT㥛 RBK߿VBˡENNS7A`RBRT㥛 RPV-ͿDTK7A`?VBZGzJJx&i word remorseNN(\?RB(\i-2 word collectingVBZʡENNSʡE?i-1 tag+i word DT s&pNNPSSNN1Zd?JJ rhNNP?i word looselyNNClRBCl?i word psylliumNNP1ZdNNZd;@RBʡEi word recyclingVBGףp= ?NNףp= i-1 tag+i word VBZ hostVBG9vVBNK7NNCl?i word grandchildrenIN#~jNNSDl?VBDd;Oi word shakespeareanJJJ +?NNPJ +i word botheredVBG+VBNy&1@VBDK7A`i-1 tag+i word IN youthsNNS-?NN-i+1 word mavensJJuVNNuV?i-1 tag+i word VBP unhealthyVBPQJJQ?i-2 word circumventNNS"~?NN"~i word rubenesquelyJJZd;@RBsh|?NNP;Oni+1 word first RBq= ףpIN1Zd?VBZsh|?NNS'1Z?NNDl?PDTV-VBN7A`?POSsh|??VBPjt?DTQVB= ףp=ڿJJv VBDV-?i-1 tag+i word DT hedgingVBG-?NN-i+2 word deficienciesRPK7?RBClINl?i-1 tag+i word -START- vincentJJGz޿NNDlNNPHzG?i-1 tag+i word POS ticketronNNP/$?NN/$i-1 tag+i word NNP blocNNQ?NNPjt?VBZ`"WDTSi-2 word swingsRBuV?INuVi-1 tag+i word -START- chicagoNN"~SYMMbX9ĿNNPZd;O?i-1 tag+i word JJ clinicalJJQ?NNQi-1 tag+i word IN bipNNv߿NNPv?i-1 tag+i word DT contactJJClNNCl?i+2 word probably VBZ-NNSV-?NN&1?RPGzǿJJZd;JJR r?WDTX9v?RB)\(INv@DT7A`NNPS~jt?NNP+η?i+1 word guideNNp= ףJJlNNPCl@i-1 word adjustedVBZףp= RBA`"@NNSףp= ?JJzGNNbX9 i word whimsyNN333333?JJ333333i word ballparksNNSCl?NNCli-1 tag+i word , baldJJ$C?VBD$C i-1 word hugeJJx&1NNS(\?RBsh|?NNMb?VBGL7A`?i+1 word drugsVBNRQJJL7A`ؿNN`"?i+1 word further RBףp= ?VBDMbXNNS1ZdDT{Gz?VBZ(\VBFx@VBG5^I ?JJClIN(\RPDl?NN5^I ӿVBNn?i word disposalNNS/$NN/$?i+2 word usuallyNNy&1VBD9vVBN= ףp=?JJv?NNSv @NNPJ +NNPSMbX9?i+2 word committeeVBDQ?JJRClVBNQJJsh|?NNS5^I NNPE@NNPS(\?NN(\i-1 tag+i word VBD bringingVBGS?JJSi-1 tag+i word JJ pretrialNNMbJJMb? i word hewsVBDV-VBZK?VBP-i-1 tag+i word NN indicateVBP"~j?NN"~ji-1 tag+i word NNP fitzsimmonsNNPS7A`NNP7A`?i+2 word allowNNS?VBDvVBNMb?VBPy&1|JJ?NNS"~jNNP~jtNNPSI +@i-1 tag+i word JJ verbalJJ/$?NN/$i-2 word conversationJJ/$?NN/$i-1 word controversyVBNV-NNv/ݿVBDV-?VBGv/?i-1 tag+i word VB transferredVBNjt?JJjti-1 tag+i word NNP madeNNS㥛VBDffffff?VBZClVBP/$VBNHzG?i word clutterNN$C?JJRQRBR= ףp= i suffix IPsNNS#~j@RBGzNNPV-i+2 word sportsJJS?NNbX9ȶRBd;OVBZ?NNSNNPh|?5VBGd;O?i-1 tag+i word NN sangerNNjtܿNNPjt?i-2 word kelleyJJ~jt?NN~jti-1 tag+i word NN campsVBZ+NNS+?i+2 word resultVBD-CCZd;߿JJOnINףp= ?DTB`"?NNSK7A`RBM?NNK7A`?i-1 tag+i word CC deviceNN rh?JJ rhi-1 tag+i word DT guysNNSm?NNmi-2 word kraftNNPSlNNPl?i-1 tag+i word POS harrowingVBGClJJʡE?NNV-׿i-1 tag+i word , plannerVBZNbX9NNNbX9?i word creatorsNNS;On?JJ;On i word maggieNNS9vNNP9v?i-2 word service VB7A`?JJrh|?VBNffffff?VBPMb?RBA`"ۿNNP$C?VBGV-?NNˡEVBDA`"JJRףp= VBZrh|?NNS`"i-1 tag+i word NNP ramirezNNPST㥛 NNPT㥛 ?i-1 tag+i word NNP strategistsVBZ= ףp=NNS= ףp=?i-1 word slideWDTHzG?INHzGi word reimbursementNNT㥛 ?JJNNP&1ҿi-1 tag+i word IN beefingNNxVBGx?i+1 word ladiesJJffffff?VBDffffffi+1 word abroad VBZ`"DT/$NNSm?NNPSy&1VBGy&1?VBDV-VBNK?JJQNNV-?PDTV-ϿNNP rhi-1 tag+i word NNP giantJJ-?NN-i+1 word slumsVB+VBP+? i word gradesNNSM?NNM¿i+2 word industriesRBRQ?CDClJJHzGINQNNPQ @RB?5^I i+2 word therapyJJbX9?VBDbX9i word legallyRBffffff?NNffffffi+1 word ratesRBRK7NNMbX9?VBDZd;VBP +?JJ+?INV-?NNPK VB|?5^ٿRPV-VBZ/$?JJRn?VBGRQ?VBNbX9@NNSV-NNPS^I +RBʡEÿi-1 word chargeJJx&1@VBDx&?VBN$CRB|?5^?INB`"i-1 tag+i word DT regardNNd;O?RBd;Oi-2 word representativesVBʡE?RBx&?NN;OnJJm?INx&NNPzG i word pianoNNsh|??JJxNNS^I +׿i-1 tag+i word VBD upsetVBNZd;JJZd;?i-1 tag+i word NN commercialNNy&1?JJy&1̿i-2 word originalVBD{GzVBN{Gz?VBP|?5^RB|?5^?VBV-JJS?NN+߿i-1 tag+i word PRP$ surprisingVBG~jtJJ rh?NNd;Oοi-1 tag+i word TO soarVBA`"?NNA`" i suffix timJJMbX?NN7A`@CD㥛 RBV-NNSrh|NNPMbi-1 tag+i word RB tradeVBy&1?NNy&1i-1 tag+i word DT warrantyNNHzG?JJHzGi-1 word chunkVBG7A`?NN7A`i+2 word distastefulVBV-VBPV-? i-2 word wayNN'1ZVBNV-VBGK7ACC333333JJMbPVBPn?VBP)\(?PRPJ +?NNPQ?PRP$lNNPSS?VBDZd;IN+?RP+VBZh|?5?i-1 tag+i word TO farmVBp= ףNNp= ף? i+1 word gonVBZ;On¿VBP333333PRPףp= ?i-1 word beyondNNS-?DTL7A`?WDTxJJR-IN ףp= i word rewriteJJv/VBv/?i+1 word wedgeJJHzG?NNHzGi+1 word unchangingDTZd;O?RBRzGRBK7Ai-2 word operationalNN~jt?JJ;On¿VBGMҿi-1 word creptRBRzG?JJRzGi+1 word maturityNNp= ףJJq= ףpVBNGz@i-1 word farmerNNSx&VBZK7A`?VBGbX9NNMb?i-1 tag+i word NN vestedJJ!rh?VBD!rhܿi-1 tag+i word TO hypoglycemiaVB)\(NN)\(? i-2 word kateJJ|?5^@NNB`"VBNPni-1 tag+i word PRP weighMDʡEVBPʡE?i-2 word resignationJJ/$NNPI +?NN$C?i tag+i-2 tag MD NNS NNV-RBRh|?5VBPB`"RB|?5^?VBK7@VBNx&1?WDTL7A`?INsh|?DTd;O?NNSV-i-2 word symbolVBZOnVB㥛 NNT㥛 NNP/$ @i+2 word million$ ףp= @NNSFxRBtVVBN^I +?DTClVBZB`"?NNPSNN#~jVBDʡEͿJJʡEINS㥛?VBGoʡ?VBzG?POSffffff@RPjt?i-1 suffix ricJJzGINzGVBZ~jtNNS/$?NNPZd;NNPSPn?VBG(\?NNPn?i-1 tag+i word CC offerJJ|?5^VB|?5^@VBP$C?JJRFxNNFxi-1 suffix eskVBN?VBDi-1 tag+i word WDT measuresVBP~jtVBZ~jt?i-1 tag+i word VB climbingVBG+?NN+i-2 word scenarioVBNB`"?VBPQRB ףp= ?VBQ?VBGoʡ?JJX9vRBR ףp= i word listenVB㥛 @RBA`"VBNV-VBP(\?JJ(\NNPi+1 word mafiaNNK7A?NNSK7Ai-1 word compromiseJJX9vοVBGjtRBX9v?NNL7A`尿VBD)\(VBN)\(?i-1 tag+i word PRP exchangeVBP/$?NN/$i-1 tag+i word VB thereafterRBx&1?NNx&1i word discountJJ|?5^NNSffffffֿNNP|?5^?VBh|?5RP5^I RBClNN$@VBP/$i-1 tag+i word CC corruptJJB`"NNPB`"?i-2 word ticketJJR&1NN&1?i-1 tag+i word DT unprecedentedVBNvϿJJv?i-2 word unchangedNNlRBjt?JJl?VBjti-1 tag+i word CC subordinatedVBNX9vJJ(\VBDʡE?i+2 word protestsNN%C?VBGV-JJNbX9?RB?5^I FW;Onҿ i+2 word nextJJRʡEDTVB~jt?RPv/ VBDClCCxINK7@RBRn?VBN|?5^NNSQ˿NNPd;ONNx޿JJSӿNNPSV-RBsh|??JJS/$?VBPQ?VBG333333?VBZGz?i-2 word management VBPbX9INn?VBx&?VBGFx?RBx&?WDTx&?JJB`"VBZ~jt?NNoʡ?VBD= ףp=VBN~jti+2 word methaneRP'1Z?IN'1Zi+1 word developed WDT= ףp=?IN|?5^VB`"NN7A`JJSRQVBZGz߿RBRMb?VBPffffff?RBMbi-1 tag+i word DT aichiNNSˡE?NNPˡEi-1 tag+i word DT northJJ{GzNNZd;NNP{Gz?i-1 tag+i word IN greatestJJSZd;O?NNZd;Oi-1 tag+i word VBN pressureNNGz?NNSGzi+1 word bonusesCCB`"?JJʡE?NN"~ i-1 word curlJJ"~ʿRP rhRBQ?i-1 word weldingVBZEؿNNSE?i-1 tag+i word JJ aroundRPK7A?NNZd;RBsh|?ſIN +ֿi+1 word ovulationVBCl?JJCli+1 word programVBHzG?RBjtJJ rh@VBNV-?NNPx&1NN1Zd?VBDV-CDPnIN333333?VBZNNSd;ONNPSClVBGZd;?CC`"VBP1Zd?WDT5^I DTK7A` @i+1 word recentRPK7RBS?JJSWDTw/IN?5^I @ i+2 word a$JJNNS?i-1 tag+i word IN tandyNNPSˡENNPˡE?i-1 word yearlyVBZmNNSm?i-1 suffix ued VBPd;O޿IN'1Z?VBDjtJJR"~jNNx&1WDTT㥛 ?RB= ףp=ʿVBGx&1?JJV-?i-1 word counteractedJJʡE?NNʡEi-1 word shakeVBD(\NNPS㥛?INx&1RPx&1?POSjtֿi-1 tag+i word VBZ wonVBZ;OnVBNA`"?RBZd;i word influencesVBZ$C?VBP$C i-1 tag+i word NN psychoanalyticJJʡE?INʡEi-2 word luxuriousJJ/$?VBD/$i-1 tag+i word IN burningVBGtVNNtV?i-1 word bulldozerNNS-?NN-i-1 tag+i word FW thereEXMbRBMb? i suffix ONTNNS'1ZNNP'1Z? i+2 word manyNNPS ףp= VBG#~j@RB rh?CC ףp= ?VBZd;NNʡEVBDK7A`@RBRX9vWDTA`"?NNP(\@VBNNbX9RP?DT/$CDsh|?VBZB`"UHS?NNSoʡJJRX9v?VBPMbX?JJK7INv/?i-2 word yield JJ= ףp=?CCoʡ?PRP-RB%C?IN%CNNSMbX?PRP$-?NNnRBR&1VBZZd;DT(\?i-1 word operatorVBNrh|?VBDrh|i-1 tag+i word -START- sourceNNSClNN"~ @JJp= ףNNPQ i-2 word gasbVBNx?NNxi-1 tag+i word PRP$ voiceNN ףp= ?JJ ףp= ߿i-1 tag+i word RB plentyVBZ~jtNN rh@RBHzGVBD!rhi-2 word coinsNNSClRB ףp= NNCl?IN ףp= ?i word investedVBNCl?JJx&1VBD&1? i suffix ony VBGzNN +@VBDMbпFWVBNGzIN7A`JJʡE@RBSNNS/$ NNP^I +?i-1 tag+i word IN fleaJJ5^I ӿNNS!rhNN;On?i-1 tag+i word -START- troubledJJ ףp= ?VBD ףp= i+1 suffix orsVBNX9v?VBPX9v?WDT7A`JJS㥛@JJSrh|@FW\(\?RP/$ÿPOSGz?PRPZd;RBQNNSMbVB)\(CCGzDTnNNPjtRBS{GzINL7A`?JJRV-VBG"~j?VBZ333333?NNn@VBD/$?PDT~jthCDZd;ϿNNPS'1Z?PRP$Zd;?i-1 tag+i word VBZ offeredVBD`"?VBNA`"?JJ(\INmտi-1 tag+i word VBG crooksNNS+?NN+i-1 tag+i word DT apparentJJQ?NNQi word redeemedJJ|?5^VBN|?5^? i+2 word easyJJB`"ѿNN ףp= NNPh|?5RB+?VBNh|?5?i-1 tag+i word VBD homelessJJ333333?RB333333i-1 tag+i word IN maritalJJM?NNM i word espNN +NNP +?i word earthshakingVBGHzGJJʡE?NN9vi-1 tag+i word VBZ fictionNNM?JJMi word telegraphedVBD rh?VBP rhi-1 tag+i word VBP apartmentNN(\@JJ(\i-2 word wagesJJL7A`?NNL7A`i-1 tag+i word NNP farmNN{GzNNP{Gz?i-1 tag+i word JJ navalJJE?NNEi+1 word skirtPRPV-PRP$V-?i-2 word columbiaNNPZd;?VBPL7A`пNNtV?JJ&1NNPSZd;i-2 word flingingINM?VBZh|?5RP;Oni+1 word askedNNP#~j?VBB`"?VBPB`"RB#~ji word disciplineVBKNNS +޿NNl@JJI +i-1 tag+i word : maryJJFxNNPFx?i-1 tag+i word `` strangeJJZd;?NNQNNPMbX9i word harshlyRBv/?JJv/տi-1 tag+i word JJ fateNN= ףp=?JJ= ףp= i+1 word swigJJRCl?RBRCl i-2 word pushNNS rhJJRffffff?NNIN;On i-1 suffix 'd VBP ףp= RBnIN(\VBDv/RBS}?5^I?VBNʡ@JJS}?5^IVBʡE@NNS㥛CCli+2 word publiclyVBPMbX9RBRGzNNNbX9?VBDNbX9RBx&?i-1 word swornVBZ`"NNS`"?i-1 tag+i word PRP baseVBPMbX?VBDMbXi-1 tag+i word DT partialJJM?NNMi word routinelyVBZjt޿VBP"~jJJSʡERBn@i-1 tag+i word JJ inspectorsVBZQ?NNSQi+1 word stormINK7DTK7?i word meadowsVBZMbNNPMb?i-1 tag+i word : receivesVBZ$C?NNS$Ci-1 word novelsJJ+VBPZd;O?VBNuVݿNN;Oni+1 word adjustersNNSK?JJKi word circulationNN+?JJ+i-1 tag+i word DT makingVBGA`"NNA`"?i-1 tag+i word CC dirtNNK7A?JJK7Ai-1 tag+i word VBG hadVBN~jtVBD~jt?i-1 tag+i word MD submitVB1Zd?NN1Zdi-2 word dispositionVBNn?VBDni-1 tag+i word DT louisianaNNPSQNNPQ?i-1 tag+i word DT turbulentJJX9v?NNX9v i suffix aspVBʡE?VBDʡEi+2 word military VBD#~jԿVBPV-INV-?NNS;OnڿNNPuV?NNPS&1ڿRPClJJ"~NNK7A`ſVBN#~j?RBCl?i word unencumberedVBNv/JJv/?i word wheellikeNNSʡEJJoʡ?NN/$i-1 tag+i word PRP$ delayedVBDnڿJJffffffVBN;On@NN/$i-1 tag+i word NNP grabbedVBDCl?NNCli word directmailNNy&1|?JJy&1|i word overpaidVBDˡEԿVB-VBN~jt?i word tentativeVBlNN333333?JJ/$ i-1 word andNNPS= ףp=?JJR{GzVBZ ףp= ?$/$?RBSMbؿCCClUHrh|?JJbX9?WPZd;FWCl?VB= ףp=@JJSX9vVBDV-?RPE RBDl?PDTx&ѿINy&1MDV-?PRP$-ֿVBNZd;׿DTsh|??NNQNNSL7A`?WDT~jtPRPDl?EX!rhVBGmNNP5^I ˿RBR1Zd?VBPv?CDy&1ܿi+2 word swirlDT(\VBP;OnPDT(\ҿRBS㥛ܿIN/$@i word declaresVBZףp= ?NNSףp= i word tbNNP$CNNd;O@VBNʡERBMڿi+1 word helpedIN^I +?VBGClRB/$NN?5^I ?RBRzG?VBP?5^I ?JJ|?5^ i word amdahlNNI +NNPI +?i tag+i-2 tag VBN RBWDTy&1JJmտVBGMbPDT?RBR ףp= RPx&1@CD-?DTsh|?NNPS-?RBQ?VBZZd;O?NN +?VBNV-@INS㥛NNSV-NNPoʡ?VBDoʡJJRPn@i-2 word playingINjt?RP/$RBV-Ͽi-2 word yieldedJJV-?RBV-i word stockbrokersNNSbX9?NNbX9i-1 tag+i word IN idahoNNMbXNNPMbX?i+2 word mindsVBףp= @VBPףp= RP#~j?RBINX9v?i-1 tag+i word DT studentNN^I +?JJ^I +i+2 word structureJJx@NNʡENNPZd;Oi-1 tag+i word NN shoppingVBG^I +NNx&1?NNP%C?i-1 word street RBS?NNHzGVBDX9v?WDT^I +JJx&1?IN^I +?VBZMbXɿNNP?POSV-VBNEVBP'1ZԿNNSS?i-1 tag+i word -START- onlyNNPq= ףpJJS?RBS i word luzonNNPSʡENNPʡE?i-2 word maquetteVBNK7A?JJK7Aؿi+1 word unchangedVBGI +?VBNzGNNI +VBDzG?i-1 tag+i word WDT trumpetsVBZA`"?VBDA`"i-1 tag+i word NNP stalsNNPSS㥛NNPS㥛?i+1 word pompeyNNS|?5^NN|?5^?i-1 tag+i word -START- typicalJJ~jt?NNP~jti-1 tag+i word NN servicingNNjt?VBGjti+2 word intenseVBN rh?JJ rhٿi-1 suffix nutNNPSۿNNPS5^I ?NNx&1i-1 tag+i word IN aroundINQ@RP-ۿRBq= ףpJJli+1 word vacancyVBGʡENNʡE?i word unconditionallyVBPDlRBDl?i-1 tag+i word VB forthcomingJJS?VBGSۿi-2 word stylisticWDT&1ڿIN&1?i-1 tag+i word VB hybridsNNSV-?NNV- i+2 word vaNNPS{GzNNP{Gz?i-1 tag+i word NN screechedVBZd;OVBDd;O?i tag+i-2 tag NNP CCNNS-NNPK7A`@CDL7A`NNPS+׿UHSVBDv@POS(\?PDT-FWHzGWDT333333DTE?NN"~PRPZd;OVBB`"?CC|?5^INn?VBN'1ZVBPCl@JJK7AVBZ333333?RB+?VBG(\i-1 suffix tch IN5^I ?JJOn NN-@JJROn?VBP{Gz?RBMbX9?VBNK7NNPy&1?NNPS?5^I ?RPS㥛FWoʡVBDy&1̿RBROni word orleansNNPh|?5@VBZ333333NNPSbX9NNSS i+1 word costJJ+?NNDl?RBRL7A`JJRL7A`?RBʡENNPRQVBGˡEi-1 tag+i word VBP borrowedVBNCl?JJCli-2 word closetNNʡE?JJʡEi-1 tag+i word PRP$ favoriteJJK7@NNK7i-1 tag+i word TO lockVB|?5^?VBN|?5^i+1 word stricklandNNʡEۿNNPʡE? i-1 word chugINx&RBx&?i-1 word overnightVBNClNNCl? i suffix V-6NNPSNNX9v@JJI +i+1 word makinNNNbX9?NNPNbX9i+1 word shardsVBNMbVBDMb?i+1 word lookedWP+?NNP'1ZĿVBG-NNCl@WDT+JJuVi-1 tag+i word -START- debtNNʡE?NNPʡEi word breadthNNI +?JJI +i+1 word admiresINB`"ٿRBB`"?i-1 tag+i word , closedVBNQVBDQ?i-1 tag+i word NNS cutVBNK?VBPOnRB\(\NNSʡEVBX9vNNEVBD9v @i-1 tag+i word RBR aidJJENNE?i-1 word formingRBRV-?JJRV- i+1 word a.RB-NNSZd;NNPsh|??RPA`"@NNZd;VBNQi-1 word bringingNN ףp= JJ ףp= ?INw/ܿNNSDlNNPDl?RPw/? i-1 tag+i word -START- inflationNN&1?NNP&1i-2 word u.s.s.r.VBZ"~?NNS"~i-1 word official JJ+@RBmտVBZy&1|NNPS?VB+NNPSzGVBDx&?VBNX9vVBGw/ܿNNK7i+1 word hormoneNN-?JJ-ֿi-1 suffix jiaRBv/?VBDv/i-1 tag+i word VBG themesVBZK7NNSK7?i-1 tag+i word RB swapVBP~jt?VBNSNN/$ i word lenNNPCl?VBCli+1 word guardingVBNV-RBV-?i-2 word societyDTS?NNS)\(ܿNNP'1ZNNPSK7?JJSNNX9vοCDL7A`RBʡE?i-1 tag+i word NNP chamberNN+?JJ+i-1 tag+i word IN rigsNNSPn?JJPni-1 tag+i word RB pictureNN?JJi-1 tag+i word NN trustNNGz?RBGzi+2 word schoolteacherJJS?NNSi-1 suffix lcoNNPSQNNPQ?i word liberationJJp= ףпNNp= ף?i word hypocritesVBZ+NNS+?&i-1 tag+i word -START- representativesNNSv?NNPvi+1 word backpacksNNn?JJRmRB\(\߿i-2 word companionINQWDTQ?i-1 tag+i word IN dnaNNPMbPNNPS)\(NNx&1? i word breezeNNSV-NNV-?i-2 word sidedVBGKJJK?i tag+i-2 tag IN '' VBGv/տNNK7A`ݿCDEDTNbX9пNNSʡE?NNPQPRP$Pn?JJQ@PDTK7A?PRPPnRBGz?INS㥛NNPSV-i-1 suffix ronRP!rh?NNrh|?VBD?5^I ?VBN?5^I ¿JJ(\IN;OnNNPʡENNPSffffff? i suffix astRBA`"@VBNS?VB/$VBGV-JJMbNNJ +?RBRGzJJR)\(NNPʡENNPSK7RBS;On @PDT{GzJJSuV@RPJ +VBZ(\ NNSn@VBDQ@CC~jtVBPw/ԿINzG@ i suffix ISMFWx&NNl?NNP#~ji+2 word namesRB~jt?VB~jti-1 tag+i word CD outsideNN= ףp=?JJZd;O߿INy&1i-1 word warrantsNN#~jVBxƿVBPX9v?i-1 tag+i word CC sauerkrautVBZd;O߿NNL7A`?JJjti-1 tag+i word WDT researchesVBZGz?VBDGzi-1 tag+i word DT neededVBD+?VBN+߿i+1 word soonerNN/$VBD#~j@VBG/$?VBN#~ji-1 tag+i word CC closeVBFxѿVBP%CܿRB5^I ?i-1 tag+i word DT weightNNSx&JJSGzNNV-?i-1 tag+i word : translatedVBN?VBDi-1 tag+i word POS resolvedVBNZd;O?NNZd;Oi word startlingVBG$CJJ\(\@NNJ +i-1 tag+i word CC seesawJJMbX9?VBDMbX9Կi-1 word hostileNNE@CDZd;VBPtVοJJZd;NNSI +?NNPSI +i-1 tag+i word NNS bombardedVBNK7A`VBDK7A`?i-1 tag+i word NN presentsVBZˡE?NNSˡEi-1 word accompanyingVBGMbXٿNNMbX?i-1 tag+i word PRP withdrewVBZRQVBDRQ? i word bowingVBGS?NNSi-1 tag+i word CC dissidentNNy&1JJy&1?i-1 tag+i word PRP mapVBP+?VBD+i-2 word datingJJ-DTGzRB/$@i+1 word surgeryVBNGz?WDTKJJZd;O INPnDTK7?RPRQ?RBx&NNL7A` @i-1 word companyNNPSsh|?ݿNNtVRBRK?DTlNNPsh|?RB~jt@VBD+@JJʡEINClVBZ㥛 @VBNGzVB1Zd@VBGS?FWV-JJRWDTCl?POSoʡ?VBPGzNNS|?5^:i-1 tag+i word NN actedVBNZd;VBDZd;?i-1 word althoughNNK7AJJRףp= PRP?JJ&1?IN7A`DT7A`?NNSMbNNP5^I ?i-1 tag+i word , establishedVBNA`"?JJ7A`VBDS㥻i+1 word requiresWDTI +?NN?JJѿINI +i+2 word salomonRB{Gz?NNP{Gzi-2 word behindVBGS?RBOn?NNMbX9JJ~jtNNS$C@NNPFxNNPSCl i+1 word r.NNQNNPQ?i-1 tag+i word DT goldenJJ$C@NNP$Ci-1 suffix thoNNPSV-NNPV-?i tag+i-2 tag EX VBVBZ= ףp=?POS= ףp=i-2 word shapiroNNPS&1JJ333333?NN333333NNP&1? i word periodNNP333333NN333333@i-2 word haroldNNPSV-NNPV-?i+1 word includesWDT"~ @JJ+IN\(\ DTS㥻?NNP-NN7A`?SYMK?VBPoʡi-1 tag+i word NNS anticipatedVBDMbXVBNMbX? i+2 word sure NNQPOS5^I VBP/$?DTsh|??VBS㥛VBDjtVBNjt?RBsh|?VBZ5^I ?i-1 tag+i word NNP copperVBI +NNI +?i-1 tag+i word ) considerVBP/$?NN/$ i+2 word vastVB\(\VBPnVBGn?NNP\(\? i-2 word gonVB㥛 ?RBRK7NNZd;Oi-1 tag+i word CC demandNN~jt?RB~jtؿi+1 word continueRB(\VBZGzNNS-?MDMbX9VB ףp= ߿NNp= ף?i+2 word giftsNNQNNSQ?i+1 word cleanupNN`"?CD`"i-1 tag+i word PRP$ thirdJJK7A?NNPK7Ai+2 word attendeeVBGQ?NNQi-1 suffix bbyVBZ+NN$C?NNS+?RB~jtJJOn i-2 word less NNsh|??RBR?DTZd;OCDMbXVBS㥛?VBNrh|VBPK7A`ݿJJMbNNSm?i+1 suffix pacJJE?CDEi-1 tag+i word NN thinkVBL7A`VBPL7A`?i-1 tag+i word RB accountNNSMVBNZd;NNV-VBPK7?i-2 word euroissuesVBrh|NNPSݿJJ?5^I ?IN-ƿi-1 tag+i word JJ vowingVBG)\(?NN)\(ܿi-1 tag+i word -START- belgiumNNPMb?NN +FWQi-1 tag+i word RB enteredVBNS㥛ԿVBDS㥛? i word fellasVBPnNNSX9v?VBDjt޿i-2 word receiveJJnNN;OnNNPS?i-1 tag+i word DT consensusNN\(\?JJ\(\ i suffix GeeRB^I +߿NNP^I +? i+2 word otcVBZd;OVBPZd;O?NNK7A?VBNʡEJJ= ףp=i-2 word numerousNN +VBNGz?JJrh|?VBZ\(\NNSv?NNPbX9i word enlightenmentJJ rhNN rh?i-1 tag+i word WRB compromiseNNS1ZdNN1Zd?i+1 word wrondgoingJJʡE?NNʡEi+1 suffix gryVBZV-VBDףp= ?EXnRBw/?VBNףp= i word demographicNNx&1JJx&1?i-1 word shareholders NN rh?VBDvVBPjt?JJ(\?RPxRBʡEPOSZd;?VBNK7A?WDTʡEIN;OnNNSjt?VBGzGҿi-1 tag+i word CC bringsVBZI +?NNSI +i-1 tag+i word -START- arthurDTGzJJ rhNNP9v@i+2 word prerogativesVBZOn?VBOni-1 tag+i word CD seoulNNPSZd;OݿNNPZd;O?i-1 tag+i word : leanJJS㥛?NNS㥛 i+1 word u.n.JJMb?NNMbi+2 word lettingRBGz@IN/$RPZd;O i suffix ' POSq= ף@JJ$CVBZMbX9NNPvVBvNNoʡ''@VBPZd;RB+i word statisticNNMbX9?JJMbX9i-1 word flauntsPRP$333333?JJR333333i word chocolateVBPV-NNGz?JJV-i-2 word ls400VBP~jtJJMb@IN ףp= i suffix eer VBPsh|??NNSh|?5NNPrh|?VB rh@NNZd; @VBDzGJJRˡE @NNPSJ +JJzGaINClVBZMb"i-1 tag+i word -START- remarketersNNSGz?NNPGzi-1 tag+i word VBG emsNNPK7?JJK7i word reconfigureVBI +NNI +@i-1 tag+i word NN landedVBNx޿VBDx?i-1 tag+i word CD minneapolisNNPh|?5?JJh|?5i-1 tag+i word VB specializedNNPRQ?VBDRQi word soberingVBGv/JJv/?i+1 word divisionsNNp= ף?VBPQοJJQNNPv/?VBy&1VBGCl? i word letterNN +?NNP +i-1 tag+i word IN sureJJ#~j @NN#~j i-1 tag+i word CC askedVBDףp= ?DTףp= i+1 word catherineNNPʡEƿWRBGz?JJ9vi+2 word slackenedNNjt@JJ7A`NNP/$ݿi-1 tag+i word NNS proposedVBNy&1VBDy&1?i-1 tag+i word NN benefitedVBN(\VBD(\?i-1 tag+i word , dowdyVBZ ףp= JJ ףp= ?i-1 word sinkingVBZ(\ſNNS(\?i-1 tag+i word NNP chainsNNSCl?VBZClӿi-1 tag+i word DT supposedVBNl?JJli-1 tag+i word RB askedVBDn?VBNZd;O?JJNbX9i-1 tag+i word -START- recentlyNNPSX9vRBx&1?NNRQi-2 word ectoplasmicINV-?RBV-ҿi-1 tag+i word NNS relatedVBDOnVBNZd;O?JJtV@i-2 word connollyJJˡE?NNˡE!i-1 tag+i word -START- previouslyNNPQRB~jt@NNX9vINRQؿi-1 tag+i word VB jeopardizeVB"~j?JJ"~ji-1 tag+i word `` businessNNOn?NNPOni+2 word ibc\/donoghueVBN(\?JJ(\пi+2 word rancorousJJFxRBFx?i-1 tag+i word VBG contendsVBZ/$?NNS/$i-1 tag+i word NNP defenseNNPFxNNPSnNN&1?i-1 tag+i word JJ pressNN&1ҿNNP&1?i-1 tag+i word VBG resignedVBNx&1JJS㥛VBDMb?i-1 tag+i word -START- leadingVBGV-JJV-?i-1 tag+i word , composedVBN ףp= ?JJ ףp= ǿi-1 tag+i word `` batmanJJZd;ONNPZd;O? i word aloftRB(\@VBP/$NNS+JJENNzGi+2 word analyzingVBGS?NNSi word multipleJJ?5^I @NNSbX9RBRSNN ףp= i-2 word francaisesVBN ףp= ?VBD ףp= i-1 tag+i word DT suggestVBP"~?NN"~ڿi word presidioJJ!rhNN-?NNPS㥛пi-2 word volumeVBX9vJJV-?NNV-?VBNZd;RB9vINx?NNPrh|i-1 tag+i word DT economicsNNPSClNNSm@NNV-i+2 word crozierNNPGz?DTGzi-1 tag+i word CC plaintiffNNS7A`NN7A`?i word downtownJJ ףp= RBS˿VBN-ۿVBP+NNDl@i-1 word cottonNNSS?NNSi+2 word firedVB+VBD+?i-1 word dealersVBZ5^I ?VBGףp= ?NNףp= VBDQ@VBNHzGVBP5^I RBbX9ȶINOni-1 tag+i word JJR mainstreamNNGzJJGz?i word womanizingVBGʡE?NNʡE i word poseRB"~VB{GzVBPrh|?i+1 word unwittingRBʡEINʡE?i+1 word comfortVB%CԿNNףp= ?JJClNNP+ۿi-1 tag+i word IN whateverWRB7A`NNSWDTZd;?i-1 tag+i word CD appropriatedVBNʡE?VBDʡEi-1 tag+i word VBZ stolePDTSVBDS?i-1 tag+i word IN circuitsNNS\(\?NN\(\i-1 tag+i word CC conveyorVBP/$NNoʡ?JJ= ףp=i+1 word piecesVB'1ZNNףp= ?JJףp= IN'1Z?i-1 word lehmanVBbX9?VBPbX9i-1 tag+i word VBD cardholdersVBPV-NNSV-?i+1 word conventionersNNףp= JJףp= ?i-1 tag+i word TO federatedNNP`"?VBD`"οi+1 word sierraVBN`"JJ`"@ i word rumorsNNS㥛VBw/NNS7A`?i+2 word anthonyNNrh|@JJrh|i-1 suffix .w.NNPDl?INDl i word loungeVBZʡENNL7A`?JJףp= i word unravelingNN"~j?JJ"~ji-1 word informationNNPSx&1 NNS?VBDףp= WDTn?RBZd;INq= ףp?NNPffffff?i-1 tag+i word NN buriedVBNQ?VBDQi+1 word centuryCDd;O NNS rJJ)\(@NN ףp= NNP~jti-1 tag+i word NN quotedVBNx&VBDx&? i+1 word ottoVBN(\?VBD(\ݿi-1 word clearingRB+@JJ(\INx&1RP9vҿi word antitrustNNSB`"VBsh|?JJbX9H @NNlqRBQѿINOni+1 word stoneINnNNPM@VBGʡEi+1 word diminishedVBK7ٿVBPK7?i-1 tag+i word NNS backVBPPnNNS-RBjt@VBDOnRPjt?i-1 tag+i word NNS namedVBN/$?VBD/$i-1 tag+i word -START- similarJJS㥛?NNS㥛i-1 tag+i word NN callVBZOnVBNN rh@ i+2 word mind FWzGVBD%CVBN%C?RPMbX9?RBMbX9NN rh?VBPtV?JJ rhNNPnVBtV?i-1 tag+i word RB weightRB)\(VB)\(?i-1 suffix torNNPSOn?JJMb?WDTjt@RBZd;OIN|?5^?RP ףp= VBGQ?VBDbX9@RBSGzDTw/NNPnVB= ףp=NNS㥛?VBZ)\(NNS rhJJSGz?VBNPnPOS(\?VBP= ףp=?i-1 tag+i word PRP winVBn?RBni-2 word centralRB(\IN(\@NNP~jt?VBG"~NNx&1?VBDV-?VBNV-i-1 word become VBN\(\NNP~jt?RP~jtRBʡEVBDq= ףpJJ@IN}?5^INNSMbNNףp= JJR-RBRMbX@i-1 tag+i word DT workingJJ333333?NNHzGNNP?VBG(\i word enlistedVBN+VBD+?i-1 tag+i word CC monthlyJJ/$?EXX9vRBCli-2 word clothingVBGz?NNS/$?NNK7AJJMbX9ĿNNPMbX9?i-1 tag+i word NNP krispiesNNPS\(\?NNP\(\i-1 tag+i word VBZ threatsNNSy&1?RBy&1i-1 tag+i word , plusNN&1CCX9v@JJ!rhINDl?NNSʡEVB333333i+1 suffix mmaJJRS?NNSi+1 word showtimeVB1Zd?RB1Zdi-1 tag+i word NNP reportVBZ +NNp= ף?NNPS㥛?i-1 tag+i word RB zilchNNSQVBNmͿNNK7A`?i-1 tag+i word , spentJJV-VBDrh|?NN\(\i-1 tag+i word TO asVBjtRBjt?i-2 word inflictNN9v?JJ9vi-1 tag+i word `` unfoundedJJ(\?VBN(\i-1 word dessertNNSʡENNʡE? i word adviceNNʡE@NNSq= ףpRBClJJ)\(i+1 word blownNNSK?VBNKi-1 tag+i word ( relianceVBoʡNNףp= ÿNNPd;O?i-1 tag+i word IN criminalJJV-?NNV-i-1 tag+i word -START- europeanNNPS?JJS i-1 word castNNSClNNCl?i-1 tag+i word NN processesVBZ333333?NNS333333 i+1 word overNNPSL7A`NNP9vVBDQ?NNSZd;@EXClJJK7A`RPA`"?DTˡEܿRBʡE@NNK7@RBRnVBN/$?INq= ףp?VBZzG@JJR5^I ?POSQWDTnVBPbX9ֿCD;On?VBS㥛VBGB`" i word hedgesVBZQNNSQ?i-1 tag+i word DT centerJJx&1@NN`"JJRMbX9 i-2 word pourJJMbX?PRP$B`"?PRPB`"NNMbXi+1 word backersVBG)\(?JJ)\(i word collegeNNPS rNNP r?i+2 word pollyRBp= ף?NNp= ףi-1 tag+i word NNP unfilledVBDMJJM?i+1 suffix sciJJ ףp= ?VBD ףp= i-1 word weeklongVBG+NN+?i-1 word ingallsVBGI +NNPI +?i-1 tag+i word JJ outletNNSV-NNV-?i+1 word affectedRBRh|?5?JJRh|?5i-1 tag+i word DT headsNNSQ?NNQi+2 word nonunionVBNˡE?JJˡEi+1 suffix titNNPQ?WRBQi-1 tag+i word NNP setsVBZ= ףp=?NN= ףp=i-1 tag+i word -START- armedNNPA`"ۿLS"~ʿVBNx&1?i-1 tag+i word DT gluttedVBNvJJv?i+2 word writesJJ5^I VBD%CNNPn?FWnVBN-?i-1 tag+i word RB gearedVBNK7?JJK7i-2 word everybody JJv?NNZd;ORBR㥛 ڿRBlVBG㥛 ?RPK7AVBN`"?INX9v?JJR㥛 ?i-1 tag+i word VBG pcsNNS;On?NNP;Oni+2 word bikesRPuV?INuVi-2 word boomsNNPI +@JJI +i+2 word cleanupVBq= ףp?NNq= ףpi-1 tag+i word DT lostNN= ףp=VBN#~jRBSX9vJJS9vJJ@i-1 tag+i word -START- townVBN&1NNP&1?i-1 word alvinNNPS\(\NNn?NNP}?5^IԿi-1 word meaningINS?WDTSi-2 word interbankNNS/$?NNK7ANNPSS?NNPvVBPli+2 word ratingsNNʡE?NNPʡEտi-1 tag+i word RB ebullientJJ?NNi-1 tag+i word VB vindicatedJJ)\(VBN)\(?i+2 word pillsJJS9v?INV-?RBS9vJJZd;OͿCDK7Ai-1 tag+i word IN looserJJR/$?JJ/$i+2 word argumentVBPL7A`?JJ+VBZv/?VB9vRBjt?VBDMbXi-1 tag+i word , fluorNNP?5^I ?JJ?5^I i+2 word wreakedNNQ?JJQ i suffix AirVBܿNNoʡJJʡENNPsh|??i-1 word englishNNPx&1?NNSjtNNjt?FWx&1i+1 word carryforwardsJJL7A`?NNL7A` i+1 word factJJ5^I ?NNP5^I i-1 tag+i word DT onePRP9v?NNHzG?CDQi+2 word jovanovichNNP/$?VB/$ӿi-1 tag+i word DT ideologicalJJJ +?NNJ +i-1 tag+i word '' knewNN%CVBD%C?i-1 word monitoredWRBzG?JJSINy&1?i+1 word analystCDV-?VBP+JJ1Zd@NNSx&1NNPK7A`ſRBX9vNNV- i-1 tag+i word -START- golenbockRBh|?5NNPh|?5?i-2 word parkedJJ#~j?NN#~ji-1 tag+i word JJ allianceNNP^I +?NN^I +i-2 word undergroundNNS(\?NN(\i-1 tag+i word VBG malaysianJJK7A?NNPK7Aпi-1 tag+i word DT jumpNNzG?RB(\JJ{Gz i suffix arkVBP333333?JJ?RBRA`"JJR/$RBQNNSVB%C?VBZ rhNNPL7A`e@RBS㥛 NN;O@VBDK7A`VBN㥛 INOnNNPSDli-1 tag+i word NN hotNNp= ףJJ rh@PRP'1Z i suffix orbVB\(\?RB|?5^NNMbi-1 tag+i word JJR offRPv?NNPnпRB/$?IN ףp= ׿i-1 tag+i word , flyVBNSNN333333VBP/$?i-1 tag+i word VBZ vacatingVBGMbX9?JJMbX9i-1 tag+i word NNS trackedVBN(\?JJ(\пi+2 word continentalJJV-NNP$CNNS= ףp=?NNS@i-1 tag+i word WP writeVBZ{GzVBPjt?VBDZd;O i-2 word '''|?5^JJy&1|POS|?5^?NNP{Gz?VBS㥛VBG333333?VBD/$ſNNSQ@RBRoʡ?VBNB`"RBS˿JJRoʡNNPSx&NN1ZdRPp= ףWDTRQVBZ~jtxINjt @VBPx&1?i word developingVBZV-VBSVBG+@JJm?NNni+1 word canadianVBN&1?JJ&1ڿINX9vRBX9v? i word happy VBDbX9PDT%CVBPKJJ?5^I @NNPK7A`NN&1VBZffffffNNSK7VBNbX9 i word sweatJJQVBZClVBClۿNNK7?VBDCl?VBPZd;O? i word buddyNNSffffffNNffffff?i-1 tag+i word NN peerVBZ?5^I ¿VBPV-?NNMbX i-2 word paulNNPS㥛?VBD"~?VBP"~jNNPSS㥛ԿNNtV? i word dumpVBZQVBrh|?RB/$i-1 tag+i word NN tendsVBZ"~?NNS"~i-1 tag+i word WP claimsVBZ|?5^?VBP|?5^i-1 tag+i word POS futureNN)\(JJ)\(?i+2 word abusiveJJGz?NNGz i-1 word rodePRP$Pn@NNPS\(\NNPS i word warsawJJClNNjtNNPZd;@VBrh|i+2 word rubberJJRM?RBRMi-2 word abortionNNCl?JJClۿi-1 tag+i word RB tabsNNSCl?RBCli-1 word questioningDTMbX9?WDT rINi-1 tag+i word IN weekendsVBZOnۿNNSOn? i+1 word motsNNSlҿNNnFWoʡ?i-1 tag+i word VB overallDTmJJm?i-1 tag+i word JJ votingVBG}?5^INN}?5^I?i-1 word speculatedDTZd;OINZd;O? i suffix 00sNNPS1ZdNNClCDX9v?JJ5^I NNSA`"@NNPjtֿi word agreeingVBG|?5^?NNS㥛JJT㥛 i word piecemealRB\(\?NNS(\пNNoʡJJS㥛i-1 tag+i word CC elderlyJJZd;?RBZd; i word prizedVBNˡE?VBDˡEܿi+2 word evaluateWDT/$?IN/$i-1 tag+i word VBN carpetingVBG(\NN(\?i-1 tag+i word DT communicationNNQ?JJQi-1 tag+i word IN autonomyNNS?JJS i word bestedVBNx?VBDx޿i-1 tag+i word -START- overallUHx&ٿJJ"~@NNw/CCI +LS rhRBy&1?DT;OnNNPV-i-1 tag+i word NNP quotesVBZ\(\?NNS\(\i+1 suffix purRB;OnIN;On?i-1 tag+i word VBP studentNNjt?JJjti+2 word called VBD~jt?RBNbX9NNPSx&1?NNMbX@VBN?VBZmͿDTGz?NNS^I +ǿNNP-JJx&1i-1 tag+i word : negativeJJy&1?NNy&1i word publisherCC{GzRBRh|?5JJR}?5^IJJ+NNPy&1PRP$X9vRBʡENNw/]!@i-1 word leadershipRP+RBRv/RB!rh̿VBD rh?NNA`"?i-2 word farmsVBN333333?JJ333333ۿi-1 tag+i word NNP senatorsNNPS;On?NNS(\?NNPw/i-1 tag+i word JJ proxyJJRNN?i-1 tag+i word IN claimsNNSZd;?VBNI +NNK7i-1 tag+i word IN laboratoryNNMb?JJMbi+2 word improveVBDClNN7A`@RB1ZdJJtVVBNE?i+1 word ceilingsNN^I +JJ^I +?i-1 tag+i word TO drawVBbX9?NNS'1ZܿNN1Zdi+1 word reynoldsRBRX9vNNPX9v?i-1 tag+i word VBZ muchJJEDTX9vRB(\@i-1 tag+i word NNP amassVBMb?RBMbi-1 tag+i word -START- viroquaNNGzNNPGz?i word noticeablyRBX9v?NNX9vi-2 word fencesNNS~jt?NN~jti-1 tag+i word , n.hNNMNNPM? i word ironNNSFxNN(\@JJJ +FWzGếi word laggingVBG333333JJsh|? @NN ri-1 tag+i word NNP europeansNNPS\(\?NNP\(\Ͽi+1 word graphicsJJRd;O?RBRd;Oi-1 tag+i word NN recruitsVBZQ?NNSQſi-1 tag+i word NNP inquiriesNNS= ףp=?NN= ףp=i-2 word factoriesVBy&1?VBPy&1JJ^I +߿NNP^I +?i-1 suffix avoNNP r?NNPS rRB|?5^?NN|?5^i-2 word intervenedJJ|?5^?NN|?5^i-1 tag+i word RB reverseVBQ?VBPJJR ףp= i-1 tag+i word WP !HYPHENVBDrh|NNS{GzRBrh|?NNP{Gz?i-2 word whittakerNNh|?5?JJh|?5i+2 word koreaRB}?5^I?VB}?5^Ii+1 suffix lamVBGzG?NNzGi-1 tag+i word VB profoundJJFx?NN|?5^VBNK7 i word tissueVB|?5^NNS= ףp=NNNbX9@JJh|?5 i suffix 'EmNNPS㥛?POSjtֿVBD(\i-1 word spanningJJV-NNPV-?i-2 word earthboundVB$C?VBP$Ci-1 tag+i word JJR basketVBP`"NNL7A`?JJ +i+1 suffix lixJJS㥛?NNPS㥛i-1 word regulationsVBZm?VBPm i suffix cNNRQSYMRQ?i-1 tag+i word DT narrowerJJR%C?NNw/ĿNNPףp= i-1 tag+i word DT inevitableJJ r?NN ri-2 word kidnapperVBPMbX9RBRGzRBx&?i-1 tag+i word RBR activistJJm?NNmݿi-2 word femaleNNSffffff?NNffffffi+1 word plasticsVBGDl?JJDlٿ i-1 word dryJJnVBGI +?NN rh?RB^I +׿INZd;Oi-2 word o'connellCDMb?NNMbi+1 word lachesDTؿIN?i-2 word liquidateNNp= ף@JJp= ףi-1 tag+i word POS restrictedVBNx?JJMbX9NN rhi-2 word lobbyingVBNQVBDQ?i word everythingJJQNNP'1ZĿVBGv/NNDl)@i+1 word buddyVBGffffffNNffffff?i-1 word exertedRPX9v޿INX9v?i word theoriesVBZS㥛NNSS㥛?i+2 word irelandNN?5^I NNP?5^I ?i-1 tag+i word NNP thoughtVBDA`"?VBNA`"˿i-1 tag+i word RB afterwardRBffffff?NNffffffi-2 word assurancesJJ|?5^VBD|?5^? i word gladJJA`"?VBNʡENNRQi-1 tag+i word NNS laterINClǿRBK7A?NNSRBR r?JJvi-2 word conistonWDT9v?IN9vi-1 suffix gesNNPSq= ףpݿVBD|?5^FWMڿVBZ%CWDTh|?5JJR)\(@DT?5^I NNP!rh?NNoʡVBPx&1@NNSEVBVBGCl?JJB`"CCL7A`?RBR)\(VBNQ@RBRQ?IN/$i-1 tag+i word RBR unchangingJJzG?NNzGi word graduatedVBZGzVBDGz?i-2 word bricksVBP +JJ +?i+1 word toleranceNNP+VBD+?JJ rh?NNi-1 tag+i word , ifintNNX9vϿNNPX9v?i word freshnessVBV-NNV-?i-1 tag+i word VBD futureJJ(\?NN(\ڿi-1 tag+i word CC martexNNSNNPS?i-1 tag+i word DT veryRBx& @NN&1FWV-JJGz?NNS㥛 ڿNNPMbPi+1 word mountainRPuV?NN^I +JJ^I +?INuVNNSV-NNPV-?i-1 tag+i word CC declareVBK7A?NNK7Ai-1 tag+i word IN sunnyJJ9v?NN9vi-2 word pressedJJ1ZdRB1Zd?i-1 tag+i word , sisterNN-?CD-i-1 tag+i word NNP displayedVBDK7?NNPK7 i word sloppyJJ-?RP-i-1 tag+i word JJ exchangeJJnNNx&1@RB$Ci-2 word writerVBGX9v?JJjtNNA`"i word domesticallyRB+?NN+ӿi+1 word universityCDS㥛@JJ#~jNNP~jt@VBNffffffNNV-? i word revcoRBv/VBN\(\ϿNNjtNNPMb@i-1 tag+i word TO lungVBZd;ONNOn?JJGzοi-1 tag+i word DT turgidJJK?NNKi-1 tag+i word CD p.mRBZd;?NNClNNS= ףp= i suffix ock VBDsh|?NNPA`"@NN r@NNPSB`"JJq= ףpRBRSVBN!rhVBP7A`?RBS?VBZ+߿VB㥛 ?NNSK7CDK7Aؿi-1 tag+i word DT copyrightsNNSQ?NNQi-1 word subordinatedVBGjt?NN?5^I VBPx&1JJn@NNSlVBli-1 tag+i word `` trickyNNSClJJCl? i word exactVBNSJJ5^I @NNjti-1 tag+i word '' pcNNˡE?NNPˡE i+1 word bestRBS㥛?NN"~@JJd;OIN ףp= i word interloperNNffffff?JJffffffi-1 word slovakiaVBN +VBD +?i-1 word perceptionRB~jtIN~jt?"i-1 tag+i word -START- speculationDTZd;NNZd;?i-1 tag+i word , johannaNNPSX9vϿNNPX9v?i-1 tag+i word IN costaNNPSMbJJ|?5^?NNPK7i-1 tag+i word NNP attorneyNNPSPnNNV-NNPMbX?i word proteinNNw/?JJw/ܿi-1 word mainframesWDTI +?INI +i-1 tag+i word MD definitelyVBy&1RBy&1?i-1 tag+i word NNS poseVB{GzVBPrh|?RB"~i word articlesVBZw/ĿNNSʡE?NN&1ڿi-1 tag+i word VBN blueJJ5^I ?VBN5^I i+1 word legacyPRP$Q?NNPQi-1 tag+i word JJ stewedVBNRQJJRQ?i+2 word technologicalJJR7A`?RBR7A`i-1 tag+i word `` transferredVBD"~j?JJ"~ji-1 tag+i word NN courtesyVBZnNNn? i word estRB(\?NNGz?VBDZd;ONNPDlٿNNSZd;߿i-1 tag+i word DT atmosphereNN"~j?RB!rhJJCli-1 tag+i word CC termedVBClVBDCl?i-1 word slidingRP9vIN9v?i-2 word raise VBG(\NNrh|JJM@IN#~j?VBZMbNNPˡE?RBZd;O߿JJRMbXCDV-?RPV-NNSp= ףؿi word tightlyJJzGRBzG?i word waltersNNPS-NNP-?i word eccentricJJrh|@VBDQٿVBZy&1VBNRQi word charmingVBGJJ/$?NN/$i-1 tag+i word TO writeVB~jt?NN~jtؿi-1 tag+i word IN pursuitNNS|?5^NN|?5^?i-2 word prosecutorialDTCl?RBCl i word mergerRBRRQпNNrh|@NNP ri-1 word fripperiesWDT㥛 ?IN㥛 i-2 word authorityVBq= ףp?NNS+NNL7A`?JJjt i word exRB/$JJjt޿FWK?i word herniatedVBNʡE?JJʡEݿi-1 tag+i word PRP$ racingVBG+NN+? i+1 word csVBPn?JJni+2 word loudspeakersRPp= ףINp= ף?i+1 word expertJJ-NNP-? i word a$$V-@RBZd;ONNP+JJi-1 tag+i word `` adjustedVBNv/?JJv/i-1 tag+i word VBD thoughtNNZd;OVBN}?5^I?JJ$Ci+1 word action VBG/$?VBNjt?CDZd;ONNSjt޿NNP +DTZd;VBZd;O?JJx&1?NNKRBJJRףp= ? i word ethosNNS+ÿNN+?i-1 tag+i word VB hyperactiveJJCl?NNCli-2 word marcusVBPZd;ϿNNZd;?i+1 word regionalVBN#~jJJ#~j?i+1 word pronouncedRBR)\(?RB)\(i-1 tag+i word VBN contentJJRuVJJ^I +?VBNHzGi+2 word unfortunatelyVBK7ARBZd;?INrh|i-1 tag+i word DT exhaustingVBG9vJJ9v? i suffix tonVBSJJp= ףNNjt@CC"~jRBV-VBZzGڿNNS}?5^INNPrh@i+1 word electNNPSw/NNSX9v?NNP-i-2 word infamousNNPRQNNRQ?i-2 word resignationsNNPnJJtVοVBNjt?i-1 tag+i word POS hopesNNSzG?VBNh|?5NNZd;O i+1 word show NNS|?5^?VB(\JJ~jtWDTzG?INDT(\µ?NNPv?VBGV-NNZd;?RB rhտVBZNbX9пi+1 word concertosRB+NNP+?i-1 tag+i word IN benignJJʡE?NNʡEi-1 tag+i word DT bonusNN^I +?JJ^I +׿i word pleadedVBNA`"JJ9vVBDMbX9@i-1 word uncertainNNMb?RB;OnNNP(\?i-1 tag+i word RB pushedVBN?VBDܿi-1 tag+i word , messrs.NNPS$C@JJSxNNPOni-1 word straightRPKINK?i-1 tag+i word JJ recordingVBGʡE?NNʡEi+1 word expansionNNRQ?VBN ףp= JJRRBffffff?NNP/$JJ@ i suffix UpRBCl?INʡEֿNNPZd;RPtV?i word corruptionNNS+NNK7?JJvi-1 tag+i word VBG graceNNx&1?JJ+RBEп i word puzzleJJV-NNV-?i-1 tag+i word TO boostVB-?NNP-i-1 suffix aabVBZX9v?NNSX9vi-1 tag+i word PRP wroteMDV-VBDjt?NNPB`"i-1 tag+i word VB pragmaticJJx?VBNxֿ i word enigmaNNGz?JJGz i-1 tag+i word -START- americansVBпNNPSuV@NNSuV i-1 tag+i word VBZ mediaJJ(\NNP(\?i+1 suffix niaNN333333NNPMbX?JJDlPRP$1ZdVBNoʡ? i word artfulJJ$C?VBN$C i word sceneJJq= ףpVBDJ +ɿNNS"~jNNS㥛@i-1 tag+i word VB interestingVBG/$JJ/$? i word gramNNSʡENNʡE?i-1 tag+i word TO somehowVB㥛 RB㥛 ?i-1 tag+i word JJ boostJJSClVBNK7ANNףp= ?i+1 suffix erbVBNMbVBDMb?i-1 tag+i word PRP$ stakesNNSףp= ?NNףp= i-1 tag+i word IN miceNNSm?NNmi-1 tag+i word VBN purchaseNN?JJѿi+1 word tumbledNNPE?NNPSEi-1 tag+i word NN brewedVBNQ?NNQ i+1 word part VB?VBDtVJJS}?5^I@INZd;?VBZJJS㥛?DTA`"?NNP)\(?RP?RBjtNNZd;ϿRBS}?5^IVBPtV?i-1 tag+i word TO suburbanVB ףp= JJX9v?NNPMbX9i+1 word detailedVBP= ףp=?RB/$ӿDT/$?VBG/$?NN/$RBR= ףp=i-1 word penetrateVBGQ?JJR(\?JJQRBR(\i word privatelyRB`"?NNP`"i-1 word brainsVBS㥛RP%C?VBPx&1?RBh|?5IN +NNSKi-1 tag+i word NN nicknamedVBDffffffVBN^I +?INV-i-1 tag+i word NNP faunaFWʡENNSʡE?i+2 word sterlingNNl @NNS?5^I JJv/տRBGzINjt޿i+1 word entitiesVBNL7A`JJL7A`?i-2 word egyptianVBNK7VBDK7?i+2 word albaneseNNbX9NNPbX9?i+1 word stanceJJZd;?PRP$&1JJR&1?NN;OnVBN?i-1 tag+i word NNP clubsNNPSx&1?NNSm?NN ףp= NNPffffffi-1 tag+i word DT borrowingVBGL7A`NNL7A`?i+2 word groundIN rh?NNP%CRPSſJJʡE@NNRBZd;߿i word broadstarJJ rhտNNP rh?i-1 tag+i word VBP allowedVBDV-VBNV-? i word sentJJ/$NNP+VB}?5^INNMbVBD!rh"@VBNS# @VBPMbX9i+1 word becameJJSQCDy&1WDTl?JJ~jtINlNNPZd;O?VBGT㥛 NNGz@i-1 tag+i word WP hadVBP`"VBNZd;VBDv? i-1 word talkRP/$RB"~JJGzֿINn@VBZ{Gz?NNSQi+2 word continuationVBD(\VBP(\?i-1 tag+i word NN aroundVBDp= ףRB&1 @IN/$DT^I +߿NNSnRP^I +@NNGzi-1 tag+i word VBN placedVBNCl?NNCli word periodsVBPoʡNNSS㥛?RB/$ i-2 word millVBN?VBDi+2 word seoulRBRuVJJRuV?i-2 word publiclyRBSZd;O׿JJSZd;O?RB|?5^RP|?5^?i-2 word suggestedVBDZd;O?RB= ףp=VBNS㥛пJJ333333IN333333?i-2 word blockbusterVBNףp= VBDףp= ?i-1 tag+i word -START- dueJJ^I +@UH~jtNNSHzGVBNbX9i-2 word western JJ~jtINPn?VBZxRBX9v߿NNMbX9VBDZd;OVBNZd;O?VBPMbX9?NNSx?i-1 tag+i word VBD betNNnVBNn?i-2 word providesVBZtV޿NNStV?VBGT㥛 ?NNOnӿJJR-VBNEȿJJ#~ji-1 word projectedDTK7A?INK7Ai+1 suffix engNNPS rhNNP rh?i-1 tag+i word DT indirectJJ?NNܿi-1 word divorceVB|?5^NN|?5^?i-2 word simpleVBZClNNS#~j?JJZd;O?NNHzGVBD/$?i-1 tag+i word DT newhouseNNMNNPM?i-2 word organsNNV-?JJV-i-1 word seeminglyVBZK7ANNP +VBG!rhԿJJ|?5^@VBN;On?RB-i-1 tag+i word NN betterRBR7A`@RBQ?JJRMbi-1 tag+i word IN upNNX9vRPsh|?JJuVRBMINo!@i tag+i-2 tag NNP ``NNS9vVBN1ZdWDTA`"?DTA`"NNˡE@''~jth?VBD-VBMb?NNPS/$?RB}?5^IRBR1ZdCDxIN1ZdJJHzG?WPףp= ?VBZMbPOSv?UHm?FWoʡ?VBP?5^I ?NNP(\?JJR1Zd?i word shrinkingVBG{Gz?JJ{Gzi+2 word nominalRPK7A`RBK7A`?i-2 word channingVBKJJK?i+2 word shareholderVBZ?5^I NNS?5^I ?RBxINx?i+1 word eligibleVBX9vNNSX9v@JJ~jtCDZd;O߿i-2 word fridmanNNv/NNPv/?i tag+i-2 tag ( ''FWM?CDB`"?JJCl?NNSNbX9ؿNNPS㥛ĿVBMNNX9v߿i-1 tag+i word VBZ easyVBN(\JJ(\?i-2 word broadVBZMbNNSMb? i-2 word pullVBʡEIN+?NNSʡE?VBD+i-1 suffix tnaNNx&1?RBx&1i-1 tag+i word ) representVBPX9v?VBDX9v i pref1 kVBDJ + @CCFWoʡ@JJSClDT"~jVBZ?5^I ?VBGPnNNSd;O @VBNK7 @RBR/$NNPS~jtJJ-NN|?5^ @CDjtNNPlVBK7A@VBP?RB^I +INB`"RPGzi-1 tag+i word NNS numberedRBnVBDn?i-2 word additionalVBZ= ףp=?VBGlVBNK7NNl?VBD|?5^?i-1 tag+i word NNP chambersNNPS?5^I ?NNS\(\NNPK7A`?i-1 tag+i word JJ metalsNNSL7A`?NNPL7A`i-2 word originatedVBGA`"@JJffffffNNZd;OտNNPX9vi word accurateJJ7A`@VBvRBGzNN+ηi-1 word layoutVBP-?JJ~jtRBT㥛 i word austereRB(\JJ(\@i-2 word underlinedVBG7A`?JJ7A`i+1 suffix ept WDT|?5^?DT/$?VBP~jt?RB}?5^I?INQVB;OnJJK7ٿNN-?VBD~jtVBNrh|?i-1 word felledJJZd;O?RB\(\NNPCl߿i+1 word berlinJJ`"NNP`"?i-1 tag+i word NNS beforeVBP/$RBQտINjt?!i-1 tag+i word NNP appropriationsNNPSbX9ֿNNS;OnNNPMb@i-1 tag+i word NN allegationsNNSsh|??RBsh|?i-1 tag+i word -START- postedVBNx&?VBDV-NNPS㥛i-1 tag+i word VB timelyJJv?RBv׿i+1 suffix arcNNP(\?VBNZd;OVBDd;Oi+2 word aldersonDT-IN-?i word intolerableJJK7A?RBK7Ai+2 word backedJJ~jt?CDRQ?NNPNbX9i-2 word microsoftDTx&?RP'1ZܿNN;On?PDTx&VBP;OnRB'1Z?i-1 tag+i word VB tradingJJR$CJJp= ףNNoʡVBGbX9@ i word take RBRQINv/DTOnNNSJJPnVBP+@VBDtVVBNsh|?CDZd;ONNP+ۿVBx&1@NNB`"i-1 tag+i word NNP carrNNPSQNNPQ?i+1 word compellingRBSV-?JJSV-i-1 tag+i word VBD troublesomeJJNbX9?VBNB`"RBQi word shiningVBGZd;O?NNZd;Oi+1 word stabilityVBNPn?VBDPni-1 tag+i word CC splendidlyRB+?VB+i-1 tag+i word CC thereinNNJJRV-VBClRB@i-1 tag+i word ( seeJJGzNNP~jtVBQ @VBPy&1NNPSZd;O i-2 word intoVBGX9vֿNN|?5^FW= ףp=ҿVBP&1ڿRPq= ףp?RBGz޿VBD|?5^WDTjt?JJ'1Z?NNSp= ףNNPMbVBNK7@IN|?5^?DT/$i word adoptedVBN@JJ5^I VBDNbX9?VBZVBP rhi-1 suffix icsNNP^I +VBNS㥛NNMbX?VBD㥛 ?RB rhDT`"NNPSʡE?VBP?INffffff?JJl@VBGZd;WDT +ֿVBZ-NNS'1Z?VBjtܿi-1 tag+i word JJ endedVBNʡE?VBDʡEi word relishesVBZ`"?VB`"i-1 tag+i word DT stimulantNNGz?JJGzi+1 word spellsNN"~?VBG"~i-1 tag+i word VBG upsetRPMbXVBNMbX?i+1 word extractingRBK7@JJK7i-1 tag+i word IN propositionNNS˿NNPS?i-1 tag+i word RBR allyRBʡENNʡE?i word youngerVBX9vNN!rhJJR`"@JJGzNNPMbX9i word leisurelyJJK?RBKi-1 word diabeticsVBGbX9?NNbX9i+2 word allentownNNPS1Zd?NNP1Zdi word sensibleNNy&1?JJy&1i-1 tag+i word : monthlyJJX9v?NNPX9v i suffix 3-7VB%CJJ= ףp=CD1Zd?i-1 tag+i word `` frequentJJOn?NNv/ݿNNPZd;O i-2 word !VBDʡE?JJ +?VBNʡENN +i word abandonedRPMVBN rh@JJ#~jVBD/$?i+1 word store RB/$NNxƿVBPGzVBffffff޿RPʡEJJ= ףp=@INʡE?NNPʡE?NNPSmi-1 word engineeringWDTV-VBʡENNSX9v?NN#~j@VBDV-i-1 word slumsVBNL7A`?JJL7A`i-1 tag+i word DT coffinVBNSNNjt?NNS%Ci-2 word obedienceNNx@JJx i+1 word whenCC}?5^IVBP㥛 ¿DTV-NNPETRPV-@NNS~jt?VBN)\(?VBZ rhVBD!rh@JJRZd;OJJjtINNbX9?NNʡE @RB +?WDTGzVBG= ףp=?VBJ +?i word figuredVBN~jt?JJ\(\VBDK7?i-1 tag+i word NN batteriesVBZENNSE?i+2 word hornsJJʡE?RBʡE i word orNNSd;ONNPK7VB1ZdRBK7VBD+CC7A`@JJnIN~jtпi-2 word affectJJMbNNSx&1VBG rhRBS?NNK7VBPZd;? i word techNN-NNP-? i suffix msyJJZd;O?NNZd;Oi+2 word pullbackVBN|?5^VBD|?5^?i-1 tag+i word RB smarterNNX9vϿRBRX9v? i word silkyNN+NNS㥛 ڿJJ~jt?i-1 tag+i word TO repeatedlyVBClRBCl? i suffix oilNN@VBP+?RBA`"VBZ+NNSy&1NNPv/@JJQi-1 tag+i word WDT shouldMD ףp= ?NNPS ףp= i-1 word residentialVB/$NN/$?i word foncierNNP~jt?JJR~jti-1 tag+i word JJR emphasisNN/$?JJ/$i+1 word sourcesNNx&1?JJˡE?NNP㥛 i-1 tag+i word IN speedsJJ|?5^NNSMb?NN(\ i suffix ffs JJ- VBZx&?VBN+VBP/$NN{GVBD333333PRPGzNNSK7%@NNPQVBA`"˿NNPSCl?i-1 tag+i word VBZ foughtVBN{Gz?NN{Gzi-1 tag+i word VBD reducingVBGoʡ?JJoʡi+1 word foundationsDTףp= INףp= ?#i-1 tag+i word TO understand\/adoptVBMb?INMb i suffix hitVBDV-@VBZKNNSA`"JJX9vNN rhPDT(\ȿRB{GzCD+VB r?PRP$ףp= VBPlҿPRP rhWRBOnVBNZd;O@i-1 word splendidlyVBZ ףp= ?NNSGzVBNOnNN+VBDOn?i+1 word barrickJJK7NNPK7?i+1 word berriesVBNJJ?i-2 word cardholdersVBV-?NNPV-i-1 tag+i word WDT draftedVBPClٿVBDCl?i tag+i-2 tag MD CDRBrh|?JJrh|i-1 tag+i word IN anthraxJJ?5^I NN?5^I ?i-1 tag+i word VBP preferredVBNd;O?JJd;Oi+2 word briefNNSzGJJ/$?NNK7A`i-2 word change VB;On?NN= ףp=?RBRy&1RBV-NNSoʡ?JJ$C?CC^I +VBNjtDTE?NNPSi+2 word confinedVBG\(\?NN\(\i-1 tag+i word IN chickensNNS)\(?NNS㥛JJZd;Oi tag+i-2 tag JJS VBNNw/?JJw/i+2 word discrepanciesVBG5^I RP!rh?JJ5^I @IN!rhi-1 tag+i word -START- pretendVBףp= ?NNPףp= i word indiaNNʡENNPx&?NNPS'1Zi word rotatingVBG%C?NN%Ci-2 word bossesNN;On?JJ;Oni-1 word dailyJJ}?5^INNSCl?NN= ףp=?i-2 word fervorVBGClNNCl? i word beatVB)\(?JJ r?NN- VBDZd;O?VBPv?RBDlIN-޿i-1 word sanyoNNPSV-NNPV-? i-1 tag PRPVBGjt?PRPK?JJRMb?VBDQ@CCʡEVBNd;ORBRx޿JJS +?NNPuVCD/$NN#~j<POSV-NNSV-IN ףp= NNPSoʡ?WP|?5^VBZʡE @RPCl@VB-?VBP/$@WDTQ?JJd;ORBNbX9?MD rh@UH9vDTOnPDTʡE?RBSjt? i-2 word no.NNʡE?JJʡEi-1 tag+i word , conductedVBN!rh?VBD!rhi-1 tag+i word -START- uniroyalNNPV-?JJV-ݿi-1 suffix cedDTq= ףp?VB rhPDTQ?RBR}?5^INNPSX9v?RPjtJJ"~j?JJRFx?NNP/$?NNʡE?WDT?5^I ?RBʡEWPw/VBG rhINL7A`@VBZvNNSv?VBN%CVBPw/ܿi-1 word chairsRPˡE?INˡEi-1 tag+i word PRP unilaterallyRB)\(?IN)\(i+1 word tighterVBPQ?RPCl߿RB(\i-2 word arguedJJS㥛NNS㥛?i-1 tag+i word VBD pushedVBNrh|?JJrh|׿i+1 suffix ico INp= ף?VBGy&1?NNPV-NNPSd;ONN{Gz?CCܿWDTKRB?VBK?RPCli+2 word indiaRB9v?JJh|?5?VBNOn i word stringVBGd;ONN}?5^I@JJ+i+1 word feelsWDT㥛 ?IN㥛 ڿ i+2 word mineVBZS㥛VBSPDTS㥛ܿNNS~jt?NNS@i-1 tag+i word RB obsoleteJJZd;O?VBZZd;Oi+1 suffix oydJJ-NNP-?i tag+i-2 tag RBR INJJClNNSSNNK7?RBS㥛?i-1 tag+i word DT worthwhileJJrh|?NNrh|i-1 tag+i word PRP$ reducedVBN(\?JJ(\ i-1 tag+i word -START- leveragedVBNxJJx?i-1 tag+i word DT ivyNNPSmNNPm?i word cooperativeNNPS333333JJCl?NNClNNP333333?i-1 word copyingNNPffffff?NNffffffֿi+2 word notablyJJClRBR rh?RB1Zdi+2 word journalistsNNPQRBS+NN+?RB ףp= ?IN?5^I ?i-2 word essenceJJffffffNNPffffff?i-1 tag+i word WDT juxtaposeVB-˿VBP-?i-1 tag+i word -START- cSYMRQ?NNRQi-1 tag+i word `` leveragedVBNZd;JJZd;?i word gibbonsNNPS9vNNP9v? i word gripRBRʡENNʡE?i word massacreVBZp= ףNN&1?JJV-i-1 tag+i word `` moderateJJV-?NNV-߿ i+2 word suchMDZd;ONNZd;RP/$CD~jtVBG|?5^@NNSʡEINS㥛DT rNNPq= ףpVBD rWDTMbX9?EXʡE?JJ$C?JJRm?VBZ(\VB r?RBoʡ@RBROnVBN{Gz?VBPZd;߿i-1 tag+i word POS creativeJJjt?NNjti+1 word reductionsNN-?JJ-i+1 word shocksNNS"~jJJ rh?NNQi-1 tag+i word PRP mightaMDMbX?VBDoʡVBZuVi+1 suffix logJJ{Gzt?NNL7A`VBNS㥛?i+2 word quicklyRBuVNNSK7?NNPSףp= RPM?JJ/$?NN!rhܿVBD5^I ˿VBN"~j?i+2 word previous NNSףp= ?RBuVտNNS㥻VBDZd;CC(\IN^I +?VBN7A`?RBRףp= ۿVBP(\JJK7AJJRףp= ?NNP r?i-1 tag+i word NN liveJJ)\(?NN)\(i-2 word oeufsJJFW?i-2 word reportersJJCl?NNCli-1 suffix iodRPK7ANN333333VBD333333?VBN̿RB)\(IN^I +@i-1 word amauryFW rhPRP9vINʡE?NNP(\пi+1 word publishesWDTOn?INOnӿi-1 tag+i word VBZ leftNN9vVBNQ@JJ/$i+1 word designersNNX9v?JJQVBMbX9i-1 tag+i word NN fuelsVBZ'1ZNNS'1Z?i-1 tag+i word DT dissatisfiedNNSClVBN|?5^JJ(\?i word submarineNNCl?JJCli+2 word closed NNPSMbX?NN +?VBDzGJJR|?5^DTףp= NNSnٿVBNzG?JJffffffCDS㥻?NNPMb@ i suffix dNNSjtLSS?SYMn?i word praisingVBG-?NN-޿i word investmentNNPSClJJ1ZNNM@NNP?5^I ?i-1 tag+i word DT impactNNSZd;ONNZd;O?i+1 word nancyWDTB`"RB}?5^I?JJ}?5^IԿINB`"?i-1 tag+i word NNS derivesVBZMb?NNSMb i-2 word sainJJZd;O?NNZd;Oi word softeningVBG(\?NNp= ף?JJQٿi word continentalNNPS~jtJJʡE?NNNNPm@VBOni+1 word municipalNNPL7A`VBw/?JJS㥛i-1 word statementsVBNPn?VBDPni+1 word regulatorsNN?VBDʡE?JJʡEIN/$?DT/$NNPMb i-2 word doseJJM?VBNMi+2 word bancsharesNNSB`"NNPB`"?i word breakingVBGzG?JJQNNS㥛i word unknownVBNMJJM?i+2 word partnersRBZd;ONNv/JJ(\ҿVBGX9v?NNPCl?RPZd;O?i+1 word therapyVBKJJK?i-1 tag+i word NN auctionVBPbX9NNbX9?i word eligibleVB?5^I ڿJJClNN?VBN5^I ˿i word firsthandVBMVBPp= ףJJ7A`?NNK7ARBV-?i+1 word dogmaJJ;On?NN rhNNPK7Ai-1 tag+i word -START- pennzoilNN~jtNNP~jt?i-1 tag+i word VB cheatingNN%C?VBG%Ci-1 suffix vinNNP}?5^IԿNNPS\(\NNn?i-1 tag+i word DT worldNNX9vJJuVտNNP{Gz?i+2 word billionsNNSsh|??NNK7A?JJK7AVBZsh|?i-1 tag+i word CC doubleVBV-ҿVBPClJJPn?RBMbпi-1 word scatteredJJˡERB~jtNNm?NNS+?i-1 tag+i word JJ adviceNNSq= ףpNNq= ףp?i-1 tag+i word DT sturdyNNx&1JJx&1?i-1 tag+i word TO volunteerVBv/?NNv/Ϳi word beatriceNNDl@JJ'1ZܿNNP= ףp=i-1 tag+i word `` leadVBK7NNK7?i+2 word tomorrowVBDx&1RBRx&?VBN"~j?RB5^I ˿JJRS㥛JJʡE?NNʡE?i+1 word changingVBN1Zd?VBD1Zdi-1 tag+i word -START- creativeNNP/$JJ/$?i-1 tag+i word RB taxedVBN"~?JJ"~i-1 word prof.NNPSKNNPK?i-1 word masculineNNSB`"NNB`"?i+2 word somethingRB'1ZNNSK7A`@NNPSK7ٿVBGx?JJK7NNxEX'1Z? i word fruitsVBZ}?5^I̿NNSMb?NNuVi-1 tag+i word CD fidelityJJ)\(NNP)\(?i-1 word blownRBK?INKi word stronglyVBZQVBGzRBm@JJV-i-1 tag+i word JJ infantNNQ?JJQi-1 tag+i word VBD sufferingVBG\(\?JJ\(\Ͽi+2 word bookedWDT +?IN +i-1 tag+i word -START- lawNNV-?JJMNNP?5^I i+2 word cheapVB/$NNS/$?i word accompanyingJJ)\(?NNSVBG-?i-1 tag+i word IN machineryNNq= ףpNNPq= ףp?i-1 tag+i word NN moxieNNSB`"NNB`"?i+1 word profitableVB= ףp=?RBV-?NNV-RBRQ?JJRQֿJJ= ףp=ڿi+1 word allusionsJJ+?NN+i+2 word speculationRBJ +?NNVBDK7A`?VBNK7A`JJ`"?NNS!rhܿi word martiniNNS!rhNN!rh?i+1 word cumbersomeRBRK7?JJRK7i-1 word exhibitDTA`"ӿVBD~jtVBNX9v?NNL7A`@NNPw/i word orthodoxVBjtJJ r@NNSFW"~ji-1 suffix why NNPS ףp= VBD= ףp=VBP(\@WDT ףp= NNPK7AMDZd;?VBףp= ?NN(\RBZd;OݿINOnDTʡE?i-1 tag+i word VBZ indictedVBNMb?JJMbi-1 tag+i word WRB halfPDTd;O?VBPd;Oi-2 word teddy''MbX?POSMbXi-1 tag+i word PRP twiceNNQJJS㥛RBX9v?i-2 word intellectualsJJV-VBCl?NN'1Zi-2 word appearancesVBZ"~jNNSzG?NNMbXi-2 word leaguesNNSJJS?i-1 tag+i word POS perestroikaNNSMڿNNʡE?FWni-1 suffix faaRB rh@VBZS㥛DTnJJ333333?NN9vPDTS㥛POSS㥛?VBP+i-1 word activatedNNSʡENNʡE?i-1 tag+i word -START- employeeNNn?JJˡENNP/$ٿi+2 word affectedWDTFx?INFxi-1 tag+i word DT touristNNsh|??JJsh|? i word asaNNPSSNNPS?i-1 tag+i word JJ floppyJJx&1?NNx&1i+1 word boardsNNl?JJE?VBGL7A`i-2 word branchesRB r?NN r i word detersVBZ(\?NNS(\i word alcoholFWKNNP rh?NNSDlѿNN;On?JJ+i word pushoverNN%C?RB%Ci+2 word sustainNNSB`"?VBGQֿJJB`"NNQ?i+1 word pierreVBNQVBDQ?i-1 tag+i word CC putNNV-VBD/$VBNx&1@VBPMbX9ܿNNS+VB1Zd? i word bonesNN?5^I NNS rh?RBuV i-1 word .270VBGRQNNbX9?JJ"~ڿi+1 suffix ojoNNV-JJV-?i+2 word krenzJJ`"?NNP`"i+1 word basketballNNPQNNQ?JJ%C?FW%Ci-2 word gains VBPZd;OVBN!rhJJI +INbX9NNPA`"VB%CNNq= ףp?RB$C?RBR\(\@JJR&1NNSm@NNPS}?5^IܿVBGd;O?i word apparatNNS%CԿNN%C?i word embarrassedVBNV-JJV-?i-2 word challengingRBjtNNPffffff?VBG/$?JJHzG?NN/$FWV-i-2 word repeatedNN7A`?JJ7A`i-2 word vacuumRPV-RBV-?i word antiquitiesNNS|?5^?VBZ|?5^i-1 word furnitureRB rh?NNnJJZd;Oi+1 word committee FWV-RBjtNNPzG@VBGClNNK7VBDn?NNSvNNPSbX9?JJ(\?i-1 tag+i word NNS analyzeVBP;On?VBD;Oni-2 word carpetingVBT㥛 пJJL7A`?NN(\i-1 tag+i word TO suppressVBCl?JJCli-2 word belgiumVBNV-?JJV-ڿi-1 word supposeJJRQRBR rh?RBClɿi-1 tag+i word TO continuedVBEVBNE?i-2 word defaultsNNPx&?NNPSV-NNST㥛 RB +?IN +i+2 word insuredJJ\(\NN\(\?i-1 tag+i word DT ingeniouslyRB+?NN+ i word tideNNX9vNNPX9v?i-1 tag+i word , scowlsVBZS?NNS rNNV-i+1 word major VBDMڿVBN5^I RBE?JJRS?NNP5^I JJ ףp= ǿCDINK7A`@DTV-?NN rhi-2 word pimpsNNSX9v?VBZX9vi word toastedVBDFx@VBNw/JJ!rhԿi-1 tag+i word JJ startVBMVBPM?i tag+i-2 tag RBS PRP$VBGSſJJ$C?NNlVBNx& i+2 word coldVBZd;O?VBPd;Oi-1 tag+i word NN graduatesVBZS?NNSMҿNN9vi+2 word scandalsNNV-JJV-?i word average NNxVBPMbX9?VBMbXRB|?5^JJ-F$@INZd;DTHzGNNSClNNP`"VBGףp= i-2 word precisionNNSSVBN333333?NNMbp?i-1 tag+i word -START- unlessNNRQCCK7RBRA`"JJq= ףpIN7A`@NNPSi-1 tag+i word TO hopeVBffffff?NNSffffff޿ i word sisalNNQNNPQ?i+1 word outdidNNSm?NNPmi-1 tag+i word JJ pcbsCD5^I NNSA`"?NNPI +ֿi-1 tag+i word NNP irvingVBGClNNPCl? i+2 word fees JJR(\JJ= ףp=VBZv?DT$CӿNNSvVB!rh?NNV-CCX9v @VBP!rhIN$C?NNPd;OVBG"~j? i+1 word ad JJ;On?NNPZd;OVBN-VBP\(\?IN(\DT(\?VBtVοNNPSA`"NN!rh? i suffix udaNN&1NNP&1?i word acceptancesNNPS^I +?NNy&1ܿVBPZd;JJOnNNSS㥛 @NNP)\(i-1 tag+i word NN amountNNQ?RBbX9VBPK7Ai+1 suffix 'emNNPjt?VB ףp= VBP ףp= ?CDjtֿ i-2 word datVBZ"~jVBPClNNK7? i word pagesVBZ(\NNSˡE@NNMbi-1 tag+i word WP tvVBZMbNNMb?i-1 tag+i word DT unauthorizedVBNZd;߿JJZd;? i+1 word aidJJR= ףp=?JJZd;O@NNPSRPCl?RBClǿNN$CRBR= ףp=i-1 tag+i word DT opposingVBGV-?JJV-i-1 tag+i word DT bewitchedNNoʡVBNMb?JJA`"i-1 tag+i word `` gentleVBB`"ѿJJRV-JJ;On?i+2 word afraidVBGE?NNˡEPDTV-VBPJ +JJ{GzĿDTV-?i-1 tag+i word JJ flawsNNSS㥛?NNS㥛i-1 tag+i word DT revampingVBGK7NNʡE?JJ5^I i+1 word requirementJJw/?NNw/Ŀi-1 word resultedRBRJ +?JJRJ +i-1 tag+i word RBS troublingVBGZd;JJZd;?i-2 word frawleyVBZL7A`NNSL7A`?i word overnightJJ㥛 @NNw/MD$Ci-1 tag+i word JJ honorNNStVοNNtV?i-1 tag+i word POS femaleVBP rؿJJGz?NNV-i+2 word annuallyJJ+VBN+? i suffix oriFWMb@NNxNNP&1?i-1 tag+i word VBD likeJJv?IN9v?VBd;O?VBN(\i-1 tag+i word `` rectilinearVBPsh|?JJsh|??i-1 word assaultINK7A`?WDTK7A`i-1 tag+i word IN epilepticsNNSK?NNKi-2 word elementsVBN ףp= @JJ+VBDjti-1 tag+i word VBG japaneseNNPSV-JJPn?NNP rh i word grimJJ$C@CDnJJRw/ԿNNSFWCli-1 tag+i word NN upstairsJJ= ףp=NN= ףp=?i+2 word recognizablyRBzG?JJzGi word concerningVBGv/?NN= ףp=JJB`"i-1 tag+i word DT heatNN%CNNP%C@ i-1 word helmJJRB`"?RBRB`"i-1 tag+i word DT screeningVBG9vNN9v? i+1 word biteDT+?JJ+i-1 word vigorouslyVB)\(?VBPQֿNN(\RB1Zd?JJ1Zdi-1 tag+i word JJR borrowingVBGS@NNSi-1 tag+i word CC tbondJJQ@NNMbNNPni+1 word cycleRPףp= NNq= ףpͿJJQ?VBGпi-2 word wordplayNNSX9vJJX9v?i-1 tag+i word DT confirmingVBG+@JJnNNv/i-1 tag+i word JJ newsNNPST㥛 NNPT㥛 ?i-1 tag+i word VBD lotsNNS~jt?NN~jti word fearsomeVBPGzNNS+JJ ףp= ?i-1 tag+i word -START- pressureNNS|?5^NN|?5^?i-1 word extensiveNN-?JJ-ۿ i word printsVBZHzG?NNPS!rhNNS$Cۿi-1 tag+i word JJ ourselvesNNS&1PRP&1?i word recoverJJw/NN ףp= JJR ףp= VBN rhVBPA`"?RBGzVB$C @ i+1 word cultJJRQ?NNPRQi-2 word acceptJJR$C?NN/$JJX9v?NNP;Oni-1 tag+i word RB exceedsVBZh|?5?VBPh|?5i-2 word boastsJJl@NNli+2 word marcosDT(\WDTrh|IN9v?i word capitalistJJm?NNmi-1 word summarilyVBZ{Gz?NNS-VBDv/i+1 word europeansVBG`"?JJ'1Z?NN`"޿NNP'1Zi-2 word clearedJJS'1ZVBNHzGNN'1Z?VBDHzG? i+2 word pickVBZSۿVBA`"VBPjt@RB{GzNNP{Gz? i-2 word mitiVBPQ?NNQi tag+i-2 tag NNPS :NNK7A`?NNPK7A` i suffix ums JJjtVBDZd;ORB+VBZ~jtNNSZd;#@NNPI +NNPSx?NNZdFW\(\i-1 word animationNNS|?5^?NNCl?JJL7A`i+2 word pinheadedVBɿVBP?i-1 tag+i word NN streptokinaseNNP%C@NN%C i-2 word down VBZClNNS/$ۿVBQ?JJh|?5 @VBDFxVBPJ +RB!rhINMbXNNP-VBGClNNtV?VBNjt?i word universitiesNNSGz?JJGzοi-1 tag+i word VBG draggedVBNZd;OVBDZd;O@i-1 tag+i word NNS coveredVBN$C?VBD$C i word loathJJm?VBPZd;ϿVBNsh|?NN#~jĿi-1 tag+i word -START- paxusNNSClNNsh|?տNNP$C?i+1 word fragmentsNNZd;O?JJZd;Oi+1 word harlemJJ(\?NN(\ҿi-1 tag+i word DT honestyNNV-?JJV-i-1 tag+i word -START- whateverMDA`"NNP'1ZWDTNbX9 @INFx i+2 word ringDTGzοNNPGz?i-2 word discussVB?5^I ?INA`"JJZd;NNV-?FW?i+1 word bidderJJv?NNSRBQտi+2 word professorVBNrh|NNPrh|?i-1 tag+i word NN mockinglyRBx&1?NNx&1 i word dropsNNSM?NNMi-1 word rewardRBRClNNCl?i-1 suffix rusVBGFx?NNFxRBV-߿INпWDTV-?i+1 word defectiveRBR= ףp=JJQRBQ?VBP= ףp=?i-1 tag+i word JJ lovelyJJV-?RBV- i-1 word cardVBZ-NNP-?WDTx&?INx&i tag+i-2 tag VBP `` INJJRrh|EX rRPHzG?RB333333@NNHzGRBRrh|?POSSVBNZd;?PRPS?JJ+DT?i-1 tag+i word TO faceVB/$VBP ףp= NNʡE@ i suffix tasNNh|?5RBffffffVBZffffffNNSK7 @NNPB`" NNPSMb?i-1 tag+i word DT departmentsNNS)\(?NN)\(i-2 word schemeVB+VBD+?i-1 tag+i word VBG supportVB㥛 NN㥛 ?i-1 word suitsVB(\VBP~jt@VBNm?NNmINbX9i-2 word payingRPM?JJ"~NNZd;VBN~jt?WDTQRB1ZdۿDTQ? i word holeVBN㥛 VBP㥛 ?JJd;OVBZzGNNS+NNRQ@i+2 word bloomingdaleNNSV-?VBNףp= JJV-i-1 tag+i word -START- !HYPHEN JJRV-?CDQ?NNPbX9?JJx?NNK7ѿVBN9vҿRBRHzGRBRQVBZd;OͿVBGA`"?NNSJ +i-1 tag+i word IN increasedVBN#~j?JJ#~j i suffix esaNNlNNPl? i word visaNNZd;NNPZd;?i word worriesVBZGz?VBPlNNSS㥛?i-1 word toughJJCl NN%C@RBsh|??INGzVBZV-NNSCl@NNPHzG?i-1 tag+i word NNS countedVBDS㥛VBNS㥛?i-2 word fiberWDTJ +?INJ +i+2 word unfairlyRB~jt?JJ~jti+2 word plungingVBG\(\NN\(\?i-1 tag+i word NNPS tradeNNK7A`?NNPK7A`i-1 tag+i word DT saferJJR?5^I ?NN?5^I i word stimulatorsVBZ+NNPSK7ANNSx&1? i word spottyJJ}?5^I@NNQRBV-i word pyramidingVBGGz?VBGzi-1 word deductJJ= ףp=?NN= ףp=i-1 tag+i word VBN canadianJJ rh?NNP rhi-1 word feelingDTIN?i-1 tag+i word NN triggersVBZS?NNSSi-1 tag+i word NN exerciseNNQ?JJQi-2 word distinctiveDTDlINDl? i word warmJJZd;@VBS㥛?RB|?5^NNoʡi-1 tag+i word NN doomedVBNX9vJJX9v? i word right VBDףp= VBPʡEVBENNPSV-JJ"~@NN^I +ǿVBNX9vRBx&1$@VBZʡENNPffffffi-2 word pompanoJJCl?NNCl i word bareJJR?5^I ڿNNˡEJJK7A?VBPw/i word clubbedNN?5^I VBD?5^I ?i-1 tag+i word TO southernJJ#~j?VB#~ji+2 word proveIN~jtпVBCl?NNE?RBRHzGVBPClJJ~jthi+2 word weighingVBNGzJJGz?i+1 suffix usaNN"~NNP"~?i-2 word antonJJq= ףp?NNq= ףpi-1 tag+i word JJ pinkJJ@NN i word riskyJJ +@NNx&1 VBNxRBPnVBZ rhNNSMbXVBRQi+1 word craigNNQNNPQ? i-2 word b2NNPSMbXJJPn@NNP'1Zi-1 tag+i word NNS increasedVBN9vVBD9v@i-1 tag+i word NN jointsVBZB`"NNSB`"?i-1 word divingVBGK7ANN1Zd?JJI +i+1 word u.s.a.NNZd;NNPZd;?i+2 word rumorJJRQ?NNRQi-1 tag+i word JJ wrongdoingNNS?JJSi+1 word conductingNNZd;?JJZd;߿i+2 word together NNS㥛?VBP?JJ/$IN ףp= NNS9v?NNP9vVB}?5^I?PDTSWDTuV@DT/$i-1 tag+i word VBN japaneseNNPS"~jNNSffffffJJA`"NNPv?i+1 word nonethelessVBNA`"?JJA`"ۿi-1 tag+i word JJ giantJJK7A`?NNK7A`i-1 tag+i word POS tvNNd;O?NNPd;Oi-1 suffix air FW!rhܿINS?VBZn?NNS?5^I ?NNPS#~j?VBG(\?RBX9vNN= ףp= VBNsh|?JJ"~j?NNPFxi-1 tag+i word CC hadVBNMbXVBDMbX?i-2 word showsJJX9vVBlVBPl?VBN+?NNm i+2 word no.INFxٿNNP?RPV-NNRB@i+1 word companyJJR7A`RPh|?5PRP$oʡ?NNPS~jtVBGMbX?JJ= ףp= @FWQVBDsh|?WDTx&1RB-DT㥛 @NNjt?NNSX9v@VBNCl @VB?5^I ڿIN rhCD~jtxVBZ/$NNPK7Ai-1 tag+i word NNP followVBP?NNi-2 word aquariumNNSCl?JJRCli-1 tag+i word VBP gonVB333333?NN333333 i+2 word wereWDT+?NN"~j?NNS'1Z@RBRtVINx&1@JJSʡE?VBN/$@JJ ףp= ?VBZB`"RBK7A`?PDTMbXCD{Gz?NNPStVJJRHzGVBDv/VBPS㥛?DTʡE޿VBX9v׿EX +?VBGʡE?NNP+ RBSʡEi-1 word citing NN rhVBDjt޿JJRˡENNPSSVBG rh?VBNffffff?JJ333333?NNS+ӿNNPZd;?i-1 tag+i word IN machiningVBG(\NN(\? i-2 word and WPFxCC rEXʡEVBZffffffVBD%C?UHQ?DTHzGRP)\(PRP$rh|?WDTQRBSCl@VBNZd;?VBP rh?POSS㥛PDTPnNNPSPnVBGK7A?NNSNbX9?NNP?WRBv?FW\(\?RBMb?INEJJS|?5^JJR+?MD5^I ?JJxNN㥛 ?PRP r?VB#~j@RBRV-?CDMbX9i-1 tag+i word PRP actVBP?5^I ?NN?5^I i-1 tag+i word -START- politicsNNSx&1NNx&1?i word maneuveringVBGMbX9NNMbX9?i+2 word uncriticalVBGuVJJ|?5^?NNffffffi word disqualifiedVBNCl?JJCli+2 word whackNNSRB#~jVBQ@i+1 word refinedNN'1Z?RB'1Z i word alJJ+NNP+?i-1 tag+i word CC marketingVBQVBGʡE?NNrh|?JJ/$i-1 tag+i word NNP sheetsNNSS?NNSi-1 tag+i word PRP linkedVBNA`"VBDA`"?i-2 word spahrNNSffffffJJ r?NN"~i-2 word usersRBHzGNNmCCZd;߿VBP333333?JJK?DTZd;?NNSNbX9VBh|?5?i-1 tag+i word VB narrowJJQ?RBQֿi-1 tag+i word NN suitVBPˡEԿNN ףp= ?VBD/$i-1 tag+i word CC crampsNNSNbX9?NNNbX9i-1 tag+i word NN jacquesNNSy&1|NNPy&1|?i-1 word securedJJ/$?NN/$i-1 word worriedNN/$?RPZd;RBR/$RBsh|?INI +? i word dutiesVBZ-NNSB`"@JJ+NNGzi-2 word britain NNPSGz?VBDx&1VBN?5^I ?VBP~jtNNS+NNP rhVBGd;O?JJ333333?NNB`"RB"~j?i+2 word statesDTCl?NNPm?VB"~j?RB\(\NNx&VBDʡEJJDlٿi-1 tag+i word JJ sacredVBNS˿JJS?i-1 tag+i word ( deliverVBZd;?NNZd;i word analyzedVBNS㥛VBDS㥛? i suffix rtaNNPSB`"NNPB`"?i+1 word sequelsJJʡE?NNʡE޿i+2 word insideRBOn?NN$C˿JJjtINHzGDTHzG?NNP|?5^i-2 word wallsDT5^I PDT5^I ?VB^I +VBD^I +? i suffix NCHNNPʡE?VBDʡEi-1 tag+i word NNP owningVBGy&1?NNy&1i-1 tag+i word NNP voicesVBZ%C?VBP%Ci-1 tag+i word PRP$ opulentJJjt?NNjti-1 suffix yesWDT;OnIN;On?i-1 tag+i word -START- tanksNNS-?CD- i word finestJJq= ףpJJSq= ףp?i-1 tag+i word DT newsletterJJx&1NNd;O@JJRMbXRB&1RBRzGi-2 word bruisesNNB`"?JJB`"i word cavalierJJ-?VBD-i-1 tag+i word -START- officeNN ףp= ?NNP ףp= i word cdsRBףp= NNMbX9JJףp= NNS rh!@NNPNbX9NNPSV-i-1 tag+i word VB depressedVBN= ףp=JJ= ףp=? i-1 word metJJv?NNPvDTʡEPDTʡE? i word punkNN+?JJ+i-1 word interstateCDCl?NNCl i+1 suffix inDTx&1VBDˡERBjt?NNSS㥛@JJSMb?JJR|?5^WDTV-RPn?''Q?PRP)\(?EXClUH`"VBNx& @WP/$NNMb @LS|?5^ɿVB`"?RBS333333VBPX9v?POS + CCHzGNNP`"VBZZd;?IN rhNNPS㥛 ?VBGl¿FW1Zd?JJK7APDTK7RBR/$@CDL7A`? i word cabVBZ㥛 NN㥛 ? i+2 word take NN?5^I ?VBPMbX9RBʡEVBGQNNSh|?5NNPSPnWRBZd;O?JJCl @NNP"~jVBZDl@VBMbX9?VBDZd;?VBN?i-1 tag+i word JJ strangeJJ㥛 ?NN㥛 i-1 word wipeRPZd;O?RBB`"@JJMbXINV-i-1 tag+i word JJ footingVBGjtNNjt? i suffix pelVBd;O @NNףp= VBNףp= VBPE?VBZ= ףp=NNSq= ףpi-1 tag+i word IN cementNNp= ף?JJp= ף i word castroNNPSClNNClNNPQ?i-1 tag+i word DT aerobicsNNS㥛 NN/$?JJ~jtؿi+2 word fartherRBT㥛 NN5^I JJR+ǿRBRv?JJOnNNS%C?i-1 tag+i word DT promptedJJˡEVBDˡE? i word forIN/$@NNP&1NNd;OCDi-1 word seasonVBZSNNS?i word pervasiveJJMbX9?JJRGzRB~jti word channelsNNSS?NNSi-1 tag+i word NNP controlNN(\NNP(\?i-1 suffix uroVBD}?5^INN}?5^I?i+1 word certainlyNNS/$NN/$?i-1 tag+i word NNS wheneverVBP`"WRBˡE?INjt޿i word commonsNNSrh|NNP333333NNPSMbX?i-1 tag+i word IN menswearCC^I +NN^I +?i word collagesVBZmNNSm? i word smallNN+NNP{GzܿJJy&1@DT5^I RB/$ i+1 word tedRBS/$NNPS㥛?VBʡEi-1 tag+i word NNP broncesNNPSNNP?i-2 word unfortunateDTSINS?i-1 tag+i word -START- scenarioNN@VBG rhJJMbRBK׿NNPDlѿi-1 tag+i word VB weirdJJ㥛 ?RB㥛 i-1 tag+i word NNP seesVBZGz?VBSVBDx&1 i word tripsNNSrh|?JJrh|i-1 word extendedVBG/$NN/$?i-1 tag+i word -START- useNNP|?5^?NN|?5^ i word steamNNq= ףp @JJT㥛 JJRMbVBPNbX9ؿNNSi+1 word coupleJJS @NN(\VBNFxi-1 tag+i word , operatingVBGʡE?JJ㥛 NNB`"i-1 tag+i word RB engineeredVBN'1Z?JJ'1Zi-1 tag+i word NNP flowerFWx&1NNPx&1?i-1 word preserveDTS?RBSӿ i-1 word mustVBK@NNd;OINi-1 tag+i word -START- esteeDTx&JJK7A`NNNNP/$@ i suffix uldNNPK7A`MD&1@NNnPDTSUH;OnINrh|i-1 tag+i word IN jan.$v/ݿNNPv/?i word processorNNʡE?JJʡEi+2 word kneesVBZV-RPSӿINCl?i-2 word johnnieVBZDlNNSDl?#i-1 tag+i word JJ redistributionismNN+?VBZ+i tag+i-2 tag JJR PRP$NNʡE?JJʡEi+2 word specializedJJHzG?NNS +?VBGnRB +NNEVBPMbi-2 word filledJJʡE?NNK7A`?NNPDl i suffix nesVBP;OnVBˡEJJK7NNF8"RB +NNSZd;O*@NNPSJ +!@RPxVBNX9vVBZ+@NNPxVBDh|?5PRP~jtINK7A`i-1 tag+i word VBN openJJRQ?RBRQi-1 tag+i word NN deviceINq= ףpͿNNq= ףp?i+1 word shapedVBN+RBA`"RBRFx?i-1 word negotiatedVBNʡEJJʡE?i word backlogNNS|?5^NN|?5^?i-1 tag+i word NN turbineNNMbX9?RBDlJJbX9i-1 tag+i word JJR degreeNNSˡENNˡE?i-1 tag+i word VB treasurysNNPENNPSE?i word redeemingVBGZd;JJZd;@i-1 word rudimentaryNN333333?JJ333333 i+2 word fireJJSKNNPK? i word pricesNNS ףp= ǿNNZd;?NNPClٿNNPSQi-1 tag+i word CC fantasizeVBVBP?i+2 word urethraVBP~jtNN~jt?i-2 word hoechstJJv߿NNPv?i-1 tag+i word IN posturingVBGZd;ONNZd;O?i-1 tag+i word TO democracyVBQNNQ? i word rareVBN(\VBy&1JJKw!@NNli-2 word cartelJJ{Gz?VBN{Gzܿi+2 word chicagoINoʡ?NNS!rh?NNPNNPS{GzRPZd;RB\(\NNB`"JJ\(\?i-1 tag+i word JJ exhaledVBN"~jVBD"~j?i-1 tag+i word JJ lessNNS/$RBRx&1?JJRi+2 word newspaperJJSRQ?VBGV-?RBSRQJJCl NNPx&1?i-1 tag+i word DT disheveledVBN+JJ+?i-1 tag+i word VBD insideRBQINQ?i word shovelsNNS+?NN+ i word acuteJJA`"?NNA`" i suffix FIBNNPQ?JJQi tag+i-2 tag : SYMVBN?NN+ۿVBDMDQJJn?i+2 word jacobsenNNSS?NNS i word cureVBM?NNMi+1 word measurementsNN333333@JJ= ףp=NNPRQ i-2 word gangJJjtNNjt?i+2 word helicoptersNNSQ?JJQٿ i-1 suffix ,"JJRx&?PRP$!rhPRPuV?NNPMbVB5^I ?RBSK7DT;OnVBGGz?VBD(\?VBN~jtȿVBPd;O?WDTPnJJ$C˿RBbX9?NNPS"~ҿJJS&1VBZS㥛?FWV-?WRBV-?RBR +޿$-PDTE?IN{GzԿWPʡE?POS(\NNS7A`RPy&1NNoʡMDMb''`"?CC+ηCDOnEXQ?UHy&1?i-1 word stumblingNNS5^I NN5^I ? i+1 word ...IN ףp= ǿNNPQRPT㥛 ؿJJZd;ONN!rh@RBS㥛VBPK?VBG ףp= VBZMbVBsh|??VBN~jt'';On?POS;OnNNPSX9v?VBDCl?NNSHzG @i-1 tag+i word CC geeksVB'1ZNNPSl?JJQVBZ~jtNNSPn@NNPli-1 tag+i word POS rightsNNPSK7NNSK7A?NNܿNNPq= ףpi-1 word spiritRBR +?JJR +i-1 tag+i word DT notedVBN㥛 ?JJ㥛 i+2 word egoNNSZd;O?NNZd;Oi word sumitomoLSףp= JJ+NNPCl?i-1 tag+i word JJ fraudulentJJM?NNMڿi-1 tag+i word DT clueNN\(\?JJ\(\Ͽi+2 word extraVBX9vNNPMNNSM?VBN333333?VBDMb?i+1 word neighborhoodNNnʿNNPn?i-1 word constitutionalNN$C?NNS|?5^?JJ/$RBI + i-1 suffix exJJR/$NNjt޿FWK?i+1 word lynchVB{GzܿJJ%CNNPE@ i word wedgedVBNV-?VBDV- i pref1 ePRPffffffVBD?5^I ?JJSZd;?CDrhUHtVNN333333@RB)\(@RBSSRP/$JJ"~?VBZK7?DTjt@CC`"@PDTSYMS㥛?VBPQ@FW/$?VBrh|@INCl?VBGp= ף@VBNK7A`?JJROnLSQ?NNSffffff?NNP*NNPSZd;PRP$\(\RBRK7A`?MDV- i+2 word g.VBN|?5^?VBD|?5^i+2 word casingsNN-?RB-i+2 word involvedNNS㥛?VBNZd;?WDT+JJ= ףp=?IN+?NNSQNNP+NNPS5^I  i-2 word ;NNnڿFWX9v?NNS5^I JJR\(\VBG +VBZZd;?RP(\PRP/$ٿEXQ?MD= ףp=JJS1Zd?VBDʡE?VBNK7A`VBPT㥛 ?POSSNNP7A`?INd;O?NNPSDl?JJ;On RBMbVB`"?CDT㥛 ?i-1 tag+i word RB thereVBEXGz?RB(\տi-2 word relateVBSNNSS?i-1 tag+i word RB listedVBPnVBN ףp= JJ$C?VBDK7A`?i+1 word clashJJ"~j?NN"~j i-1 word enFW?VBP%CRBMbX9NNStVVBףp= ÿNNZd;?i-1 tag+i word VB helpsVBZ9v?JJ9vi+1 suffix eumPRP$tV?JJq= ףpNN/$NNPMb@i-2 word antarVBG/$?NN/$i-1 tag+i word NNS allowedVBD)\(?VBP)\(i-2 word bundesbankNN$C?JJ$C i suffix CIONN㥛 NNP㥛 ?i-1 tag+i word VBP cyclesNNSPn?JJPni-2 word developerNN&1NNP&1?i-1 word whartonNN|?5^?RB|?5^i-1 word gamblingVBPK7A`?NNMbX9JJ%CVBDGzi word infocorpNNʡENNPʡE?i+1 word vetoesVBFx?JJFx i suffix gryJJ-"@NNSˡERBV-NNL7A`VBDS㥛JJR^I +VBNV-VBPv/i-1 word creamNNSGzINGz?i-1 tag+i word JJ indianJJ ףp= @NNOnNNP%Ci+2 word menstrualNNSffffffVBZffffff?i-1 word knowledgeWDT +IN +?i+2 word attitudeNNQ?JJQi-2 word councilVBPV-JJI +NNPQ?VBV-?VBG%C?NNy&1?VBDE?VBNEȿi-1 tag+i word PRP$ dreamNN\(\?JJ\(\i-1 tag+i word WDT physicsNNzG?VBPFxNNS)\(i word enterprisesVBZ(\NNPSffffff?NNSFx?NNP9vi-1 tag+i word CC espnRBd;ONNPd;O?i-1 tag+i word WDT studyNNffffff?VBZffffffi-1 word draftNN +?JJ +i-1 tag+i word NN spentVBN~j@JJ7A`VBD&1VBRQȿNNoʡi-1 tag+i word -START- smilingVBGK7?NNPK7i-1 tag+i word DT fixedJJ1Zd?NN"~VBNy&1i word libertiesNNPSQ?NNPQ˿i+2 word branchNNSlNN1Zd?JJ~jtÿNNP\(\?NNPS\(\Ͽi-1 tag+i word -START- resultsNNS~jt?NNP~jti-1 tag+i word JJ borderVBPmNNm?i-2 word tripledJJ~jtxVBN~jtx?i+1 word criticNN#~j?VBNuVͿJJK7?NNP+߿ i word speechJJClNNS\(\NNbX9@i-1 tag+i word VBG homeRBmR@NN|?5^JJx&i-1 tag+i word JJR toxicNNSJ +NNJ +?i-1 tag+i word VBZ soRB/$@VBNQJJ㥛 INSi-1 tag+i word : publishedVBN+?VBD+ i-2 word rep.VBZ%C?VBP%CNNSK7NNP rh?NNPSQi+1 word challengingRBn?INni-1 tag+i word TO adviseNNrh|VBrh|?i-1 word intradayNNSףp= ?NNףp= JJv?VBDv i+1 suffix fmNNS㥛 JJ㥛 ? i word classVBP&1ڿVBZh|?5NNP/$VBGzNNPSjtNN`"@i+2 word fuzzyJJ|?5^@RB+NNni-1 tag+i word NN priorRBʡE@NNtVJJh|?5 i word fieryJJ(\?NNw/NNP-i-1 tag+i word CD fewerNNPS-JJR-?i+1 word diligenceVBJJ?i-1 tag+i word NNP felledVBDS㥛?NNPS㥛 i suffix gosNNPnNNSPn@i-1 tag+i word -START- cynthiaNNʡEۿNNPʡE?i-2 word rationaleVBGoʡ?NNoʡi-1 tag+i word DT outlawedJJoʡVBNoʡ?i-1 tag+i word IN brantfordNN^I +NNP^I +?i-2 word volatilityDTbX9?INbX9 i-2 word &NNPS7A`@NNʡE@VBDSPOSʡE@VBPˡEVBZq= ףp@VBGV-RBMWDT)\(?INFxDTI +?VB+JJZd;FW^I +NNSV-NNP~jt i word laptopNNClNNSˡEJJ+@i word thirtysomethingVBGQNNzGNNP}?5^I@i-1 tag+i word VBG wellRBHzG?JJRHzG i word swingVBPV- @VBGrh|NNffffffƿJJ$Ci-1 word forecastVBZʡE?DTKNNSʡEINK?i-1 tag+i word NNP ceramicsNNPSE?NNPEi-1 tag+i word JJR lbosNNS㥛 ?NNrh|NNP-ۿi-1 tag+i word JJ accustomedVBN(\ݿJJ(\? i-1 word sirNNPSSNNPS?i-1 tag+i word DT developingVBG rhJJ rh?i+2 word provisionVBZOnNNOn?i-1 tag+i word NNP flakesNNPSS@NNSSݿNNPQi-1 tag+i word NNP rentalNNPS{GzJJGz?NNP(\տi-1 tag+i word PRP ranVBDS?RBSi-1 tag+i word DT persistentJJ?5^I ?NN?5^I i word sandNNPClNNx&@VBD"~VBP= ףp=RB/$NNSSi+1 word flowsJJw/VBMbXNNv?i-1 tag+i word NNP hintedVBN;On¿VBD;On?i+1 word coverVBQ?NNQi-1 tag+i word RB routinelyVBP"~jRB"~j?i+1 suffix ickPRP$-NNPS/$?JJrh|NN$CNNPMbX9?i+1 word clearanceNNS^I +JJjt@NNS㥛i-2 word biosourceVBN333333VBD333333?i+1 word identificationVBP(\ڿVBD(\? i-1 word firmRB?JJtV NNK7ѿVBP/$FW?5^I POStV?VBZ|?5^?NNSK7ANNPʡE?IN~jtVBGz?VBG^I +?VBDS㥛@VBN|?5^WDT~jt?i-1 suffix rug NN^I +ǿVBPL7A`堿WDTd;O?INd;OοVBZ(\?NNSM?NNPV-?VBGSVBDK7FWGzVBNK7?JJzGi-1 tag+i word NN drenchingVBGoʡNNoʡ?i-1 tag+i word JJ samaritansNNPSHzGNNSMbX9@NNtVi-1 tag+i word NNPS americanJJB`"?NNPB`"i-1 tag+i word JJ chapsNNSˡE?NNˡEi-1 word suvivorsVBNMbXVBDMbX?i word coloraturaNNK7?JJK7i-1 tag+i word IN englishJJ= ףp=NNQNNP?5^I @NNSZd;i-1 tag+i word JJ proceduralJJ9v?NN9vi+1 word counterculturalRB+?NN+i-1 tag+i word CD brownVBNS㥛JJS㥛?i-1 tag+i word VBD thwartedVBNjt?JJjti-1 tag+i word JJ longtimeJJL7A`?NNL7A`i+1 word highlyRBRZd;O?JJRZd;ORB(\@IN(\VBZx&?VBDx&i-1 tag+i word DT produceVBP^I +?NN^I +i-2 word fendedVBNK7JJK7?i-1 tag+i word DT relyVBZ/$VBP/$?i-2 word spiesJJPn?RBT㥛 NN ri-2 word activitiesNNPoʡ?VBˡEԿVBG/$RB?NNV-?VBP'1ZJJK7i-2 word ownedINJJv@NNP-NNK7A`?RB?i-1 word shadyNNPnNNPPn?i-1 word plainlyNNSSVBN-޿JJFx?VBD~jtؿi-1 word joinedPRP$+RB+?i-1 tag+i word NNP outVBZRP? i suffix lixNNS ףp= NN&1?JJNNPjt?i+1 word rangesNN+WDT+? i+1 word pasoJJZd;NNPZd;? i-1 word lossVBDOnVBNOn?VBPd;OJJ(\?VBZx?VB rؿRB= ףp=NN/$? i word fungiNNS~jt?NN~jti+2 word carrierINV-?VBZ\(\DTףp= ?NNPA`"?NNK7VBD"~jCCRQJJ"~j? i word coversVBZK7@NNSK7i+2 word supportingVBGL7A`?JJL7A` i+1 word tellVB"~?NN"~i-2 word earnsPDTl?DTZd;OͿNNVB!rhi-1 tag+i word VBZ recallingVBGv/?JJv/ i suffix marNNSZd;ONNCl@JJx&i word prescribeVBPʡE?VBDʡEi+2 word containedVBGS?NN= ףp=JJEؿi+2 word keenanJJrh|INrh|? i word pinkJJ@NNi-2 word housingVBP ףp= ?NNS!rh?NNP ףp= VBZ!rh̿i-1 word antagonistsVB!rhVBP!rh?i+1 word eagerNNSoʡ?NNPoʡi-1 tag+i word `` dialogueNN9v?JJ9vi-1 word amongNNOnRBRZd;O?JJRZd;ORBbX9CDOnÿNNPQVBG/$?JJNbX9@i-1 tag+i word POS dejaRBSV-NNV-?i-1 tag+i word , placesVBZ\(\?NNS\(\Ͽi-2 word cardsNNGz׿JJmVB r?VBNQ?i-1 tag+i word NN sizesNN}?5^INNS}?5^I? i word boonNNSx&1NNx&1?i-1 tag+i word IN blacksVBZ;OnNNSףp= ?JJ$Ci-1 tag+i word : barVB\(\?NN\(\NNP\(\i tag+i-2 tag VBG NNSRBRNbX9?VBGX9vNNX9v @IN#~j?RB"~jJJR!rhNNP?RPI +JJK7?VBD)\(?JJSV-?VBNrh|WDTQ?NNSʡEi-1 tag+i word CC proNNtVJJS㥛?FWtV?i-1 tag+i word `` hostileJJB`"@NN~jtNNPffffffƿ i-2 word go NNPn?RBHzG@PRP$ʡE?CDnEX-IN-NNSQJJRtVPRPʡEVBQNNffffff?RBRtV?JJV-i word stomachsNNSCl?NNCli-1 tag+i word RB surprisingVBG{GzJJ{Gz@i+2 word recommendingNNPSMb?NNPMbi-1 tag+i word VBN throughRPlRBV-IN!rh @i+2 word corningJJˡENN?5^I NNPK7? i suffix JIANNPSoʡݿNNPoʡ?i-1 tag+i word JJ potentialJJ+NN+?i word entitledVBN)\(@JJX9v߿VBDMbi+2 word elusiveVBN~jt?JJ~jti-1 word public NNPSʡE @RBzG?NN9vPOS^I +?JJ'1ZVBZ +?NNPK?VBGK7RBR~jt?VBPuV?INI +NNStVi word averagesVBZClNNSCl@i-1 tag+i word RB passionatelyRBS?JJSi-1 word richlyVBN7A`?JJMbX9ĿVBDQۿi+2 word religionsVBT㥛 ?VBP#~jNNQ i suffix ormVBPn@NN(\u@VBDnVBPx&1ؿJJˡEVBZZd;ONNS"~j NNPh|?5i-1 tag+i word JJ brokenJJp= ף?NNp= ףi-1 tag+i word DT differingVBGQ?NNClJJJ +i-1 tag+i word CC coreNN{Gz@RBMbJJMbX9VBHzGi-1 tag+i word NN delayNNv/?VBDv/i-2 word mozartRB+NNP+?i-1 word diseaseVBDd;O?VBPd;ONN(\NNP(\?i+2 word vogueRBK7?JJK7i word councilsVBPClNNSCl? i+2 word wipeDTrh|׿INrh|?i-1 tag+i word -START- takamoriNN&1NNP&1?i-2 word typesVBG +NN㥛 @JJʡEi+2 word prosperVBP#~j?NN#~j i word stallVB ףp= ?VBP ףp= i-1 word counterDTSVB5^I NN5^I ?INS?i-2 word entertainersVBZCl?NNSCli tag+i-2 tag TO CD VBD-?CD +?NNSClNNP-?VBN-˿JJDlINT㥛 ?DT~jth?VB%C̿RB9vNN!rhPDT~jthi+1 word linkedVBZ|?5^NNS|?5^?NNDl?JJDli+2 word facilityVBG)\(NNPn@VBP|?5^JJ;On?NNSX9vNNPK7NNPSX9v?i-1 tag+i word JJ comicJJ~jt?RB~jt i suffix omoJJ+NNPh|?5?NNjt?LSףp= i word peckNNPSENNPE?i-1 tag+i word JJ examinerNNSq= ףpNNq= ףp?i-1 tag+i word NNS asideRB|?5^?IN|?5^i word smokingVBG ףp= NNCl@JJ!rhi word attestsNNSK7AVBZK7A?i word thought RBMbXNNClVBD㥛 @VBNx@RBRRQVBZL7A`NNSSVBzGJJOnINQMDʡEi+2 word liaisonsVB\(\VBN\(\? i+2 word nailVBNh|?5RBh|?5? i word optionNNPJ +NNJ +?i-1 suffix lumVBGʡE?NNʡEݿ i suffix JrNNPSOnӿNNPOn? i word spillsNNSClVBZCl?i-1 tag+i word PRP$ kylixNN?JJi-2 word moves NNK7VBDK7?VBN rhJJx&1?VBZCl?NNPK7?VB9vRBʡEVBPʡE?i-1 tag+i word MD aboutVBˡERBA`"?INPni-1 tag+i word IN startVBP%CԿNN%C?i+1 word treasuresDTIN?i-1 tag+i word JJ titleNNS9vNNuV?INrh|i-1 tag+i word VBN evenRBV-?JJV-i-1 tag+i word JJ confirmVBPףp= ?NNףp= i suffix risNNV-NNPn?NNS#~jJJB`"?i word chromosome$V-NNS㥛D@VBN= ףp=JJPn i-1 tag+i word VBP showVBPjtԿVBjt?i-2 word fightingNNVBGʡEJJZd;?i+1 suffix asmVBNd;O?VBDd;Oi-2 word surfaceNN"~JJ"~?i-2 word lobbyVBNX9v?NNSſVBD~jtDTy&1WDTy&1?i+2 word threatenedNNSK?NNPK׿i-2 word jerseyNNPSV-JJRV-NNV-?NNPV-?i-1 tag+i word JJ freewayJJ5^I NN5^I ?i-1 tag+i word NNPS producedVBNClVBDCl?i+2 word pritikinNNPSn?NNSSNNPMbX9i-1 tag+i word -START- reservesNNStV@JJClNNP#~ji-1 tag+i word `` conservativesVBZRQNNSRQ?i-1 word happenJJPnRBPn?i-1 suffix fsxNNp= ף?JJp= ףi-2 word smoothlyRPw/@INw/NNSn?NNPn i-2 word seatVBZDl?VBn?VBPQVBDX9vֿi-1 tag+i word , plumbingVBGZd;ONNZd;O?i-1 tag+i word VB optimisticRB~jtPRPMbXJJffffff?i-1 word deadlineRP+NN'1ZVBN'1Z?VBPMbX?NNPRQ?VBzGNNPSRQi-1 tag+i word `` greatNNI +޿NNPI +?i-1 tag+i word JJ arrangementNNjt?JJjt޿i-1 tag+i word -START- largeVB~jtJJx@NN^I +NNP|?5^ i-1 tag+i word TO noteVBGz?DTGzi-1 tag+i word DT screechingVBGS?NNL7A`JJjt?i-1 tag+i word NN tagNN'1Z?RB'1Zi-1 word brittonNNP(\INFx?FW"~ji-2 word noiseVBDtVVBRQVBN rh?JJ(\i word climaticJJMbX?NNMbXi-1 tag+i word POS closeNN{Gz@RBL7A`JJT㥛 i+1 suffix ec.RB|?5^NN(\?VBDFx VBNʡE@VBPQJJ(\µ?NNPp= ף?VB"~j?i-1 tag+i word TO undermineVB rh?JJ rhi-1 tag+i word JJ kgbNNX9vNNPX9v?i-1 tag+i word RB bondNNI +?JJI +޿ i word midstNNSGzNN\(\?NNPp= ףi-1 tag+i word VBG redoneNNS?CDy&1UHʡEi-2 word distractedVBG rh?NN rh i word fillerVBD|?5^NNffffff?JJw/Կi-2 word homefedJJSn?RBSni-1 tag+i word `` basketNNZd;O?RBZd;O i word cerealJJ"~NNP ףp= NNjt @ i+1 word dutyJJ5^I VBGZd;O?NNm?i-1 tag+i word POS detectiveNNNbX9?JJNbX9i word recommendedVBNFxѿNNMJJ ףp= ?i-1 suffix co.WDTFx?RBK7AпJJd;ONN?VBP/$?NNPSVBZ|?5^?DTV-NNPMbX9VBGoʡ?FW^I +VBDM?VBNV-CD$CӿINS㥛?NNSB`"?i-1 tag+i word DT gravestJJS?5^I ?NN?5^I ڿi word shippersVBʡENNSʡE? i word speedJJNbX9NNSoʡNNP)\(VBL7A`?NN/$@VBD~jtVBNX9vVBP"~ji-1 tag+i word WDT amountsVBZ{GzNNS{Gz? i word pereNNPMb?RBnFWnҿi+2 word strikeNNPffffffWRBV-VBNFx?JJ"~?IN!rhԿi word masqueradingVBG;On?NN;On i word quietVBNuVJJQ@RP"~ҿNNp= ףпRBSi+2 word unsecuredNNS$C?NN$Ci-1 tag+i word , somehowRB~jth?NN~jthi-1 tag+i word JJ rubleNN^I +?JJ^I +i-1 tag+i word POS judicialNN}?5^INNPS?JJQ޿i-2 word suddenlyJJR/$?NN/$i-1 tag+i word DT connoisseurNNCl?JJCli-1 tag+i word DT greenNNoʡ?JJsh|?@NNPʡEi+2 word rules NN%CVBDxVBPGz?JJuV?IN1Zd?DT{Gzt?RBX9vCCS㥛?WDTSNNP^I + i word howellNNOnӿNNPOn?i-1 word unileverVBP%C?VBGK7A`NNX9v i suffix owsJJoʡVBN/$DT;OnNNP^I +VBZp= #'@MDMbX9PDTʡEJJRzGRB#~jܿVBD~jtVBPNbX9VBK7NN|?5^NNSQk$@i-2 word adultsVBNGzRBK7A?VBDZd;? i suffix susINMbX?NNSNNPK7A?VBT㥛 JJy&1NN!rh @RBMbX9i word hammacksNNPSE@NNSx&1NNP rhi+1 word matterJJv/@NNy&1WDTMڿRB^I +DT)\(?NNP1Zdi-1 tag+i word DT crapJJK7NNK7?i-1 tag+i word -START- laborNNSA`"NN^I +?NNP^I +i-1 tag+i word , gentlenessRBRClNNCl?i-1 tag+i word JJS complexJJ-?NN-i-1 tag+i word WDT haveVBZVB~jthVBPL7A`?i-1 word embezzledJJRrh|?RBRrh|i-1 tag+i word CC failVBM?NNMi-1 tag+i word -START- dealersNNPS-NNS+ @NNPw/i word impressVBZd;?RBZd;i+2 word smokeVBPOn VBDjt?VB rh@i-2 word showingNN1Zd?JJR?VBN?5^I EX= ףp=RBMbVBuVJJ+?i word pipsqueakNNS~jtNN~jt?i-1 word mountainVBGZd;ONNClRBS㥛@INjt?JJE i-1 word sixCD333333?NNP ףp= NN{GzJJM?IN5^I ˿ i+1 word roomJJ/$@VBGmVBNbX9NN+׿i-1 tag+i word IN southwesternNNSPnJJPn?i+2 word battingNNRQ?JJRQi-1 tag+i word DT forthcomingVBG|?5^JJK7A`?NN/$i-1 tag+i word RB overJJRQIN7A`?NNP ףp= ?VB&1RP?5^I @RBNbX9i-1 tag+i word VBP rightJJy&1@VBNNbX9RBˡEi-1 tag+i word JJ fidelityNNMbؿNNPMb?i+2 word offsetVBNZd;OJJL7A`RBL7A`?NN?5^I VBDh|?5?JJRh|?5RBRh|?5@VBP|?5^?i-1 tag+i word DT agricultureNNZd;NNPZd;?i-1 word mauriceNNzGNNPzG?i+2 word stodgyNNPʡEDTʡE?i-1 tag+i word CD connerNNPSJ +NNPJ +?i-1 tag+i word DT goodJJ)\(@NNS/$NN%Ci word meltdownNNK7A?JJK7Ai-1 tag+i word -START- bnlDTL7A`NNPL7A`?i word countertopNNDl?JJDli-1 word pushingRP!rh@JJh|?5NN9v@RBˡEIN\(\NNP/$ i word lyingVBy&1VBG?NN(\ i+1 word kassNNPS/$ݿNNbX9?NNP7A`i-1 word recorderVBN?NNi+1 word pepperJJK?NNKi+1 word withdrawalsNNPd;OJJd;O? i word sowingVBGʡENNʡE?i word fertileJJ rh?RB rhi+1 word protestsJJ~jt?NN~jti-2 word trialsCCQ@DTQi word incitingVBG/$?NN/$i+1 word povertyNNSV-JJV-?i word ortegasNNPSn?NNd;ONNP"~ i word lungVBZd;ONN- @JJˡE i word innNNPS|?5^ٿNNP|?5^?i-1 tag+i word CC elsewhereVBoʡRBoʡ? i suffix wisNNlNNPl?i word meetingVBGMb NN%C@JJ/$NNPQi-2 word televisionVBZjt?NNSjtMDd;ONN`"޿VBDHzG?VBNClJJ"~ʿIN ףp= ?i word creditsVBZ1ZdNNS?NNK7ٿ i suffix thaTOK7JJRQVBNQNN-?NNPZd;? i word selectNNPS/$ѿNNP/$?i-1 word electionsVBN?5^I ?JJX9vVBD?5^I INX9v? i word skiingVBGClNN$C@JJsh|?i-1 tag+i word IN embodyVBEпVBPE?i+2 word carlosRB-ۿNNP r?RP-?JJ rNN|?5^?VBD|?5^ʿi-1 tag+i word VB defyingVBGDl?JJDl i suffix ert NNSSNNPS(\RPB`"NN#~j?VBD5^I VBPB`"?RB= ףp=VBZrh|NNPT㥛 ?VB-?JJ}?5^I @VBN"~ji-1 tag+i word VBG bearingNNMb?JJMbi+2 word nobelRBn?INni-1 tag+i word PRP$ cheekNNSClNNCl?i+1 word pfeifferNN`"NNP`"? i-2 word ual VBˡE?RBSrh|?VBPˡEVBZ(\DTClRPnNNʡEVBDZd;?JJSrh|VBNZd;RB{Gz @VBGK7A?NNS(\?i tag+i-2 tag WDT ,RP`"޿CCh|?5?VBNʡEÿJJR#~jVBPp= ף?EXX9vRB9v?NNSףp= JJ-NNjtVBDq= ףp?VBZT㥛Ġ@DTSVBRQ?INp= ףNNPX9vi+2 word growersINh|?5VBtVVBPtV?NNh|?5?i+2 word veteransNNPV-NNSV-?i-2 word jacksonvilleRBʡEۿNNPʡE?i+2 word aquariumJJ}?5^I?NN}?5^Ii word editorialVBZ333333NNQ@JJQ i-1 word him RPMbX9?RBZd;O?NN~jtDTv?VBZd;@VBDmJJS\(\VBNI +CDQVBPlҿWDTMbX9JJMbX?INEпi-1 suffix lioVBZGz?VBPtVNNSGzNNtV? i-1 word comeVBGS㥛RBZd;O?NNV-RBRL7A`JJK7A`IN/$?RPOn?i-1 tag+i word NNS fitVBPp= ףVBNV-?VB}?5^Iܿi-1 tag+i word JJ claimsVBZJ +NNSuV@NNGzi+1 suffix ltzNNPSI +?JJSxNNm@JJT㥛 NNPMbX i+2 word %VBZMbؿJJR'1ZܿRB5^I @RPؿNNS"~WDTS㥛IN5^I ۿVBGx&1NNPZd;OVBK@NNX9VBD&1?POSy&1$ףp= JJ?VBPS㥛?DTQ?VBNGz? i word maleRBSZd;OǿVBNV-RBRV-JJrh|?NNPy&1VB(\NN7A` @i-1 tag+i word NN sadNNSSJJS?i-1 word perfumeVBN)\(?VBD)\(ܿi+2 word maximNN~jt?VBG~jti-1 tag+i word POS sheddingVBG)\(?NN)\(i+1 word beretVBN/$޿VB+NNn@JJjti-1 word crisisVBDS@VBNSINjtVBZ- i word foesNNST㥛 ?NNPT㥛 i-2 word lesterJJ"~jԿNNP"~j?i-2 word forcedVBˡERBʡE?NNZd;O i word nobelNNnNNPn?i+1 suffix enaINV-?VBGoʡ?JJp= ף?NN`"FWV-?VBNZd;߿RBV-߿ i word famedVBNv/?JJv?VBDT㥛 i-2 word pauperNNl?JJli-1 word investingNN%C@JJ%Ci-1 tag+i word IN backingVBGZd;?NNZd;i-1 tag+i word JJ enrollmentNNRQ?JJRQi-1 tag+i word TO hughesNNPX9v?NNSX9vi-1 tag+i word RB respondNNQοVB rh?VBNA`" i-2 word men NNSbX9?NNP`"RBEJJR~jtx?VBNS㥛?VBPjtJJRP9v?NNX9v@VBDjt?i word futuresNNPSA`"@RB"~jJJsh|?VBZ rhNNSMbX?NNP-i word redrawnVBNV-JJV-? i word ateVBDK7@VBP$CNNPS rпNNP/$i-1 tag+i word DT bluesNNPS#~jNNSS㥛?NNP{Gz i suffix .39CD~jt?JJ~jti-1 tag+i word NN jumpedVB/$VBNjtVBD?i-1 word transportNNMb?JJMbi-1 tag+i word PRP asideRP= ףp=?RB= ףp=i-1 tag+i word VBD operationsNNP +NNPSoʡ?FWMb?i+2 word scatteredNNrh|?JJrh| i word butterNN#~j?JJRzGJJd;O i+2 word earINK7A`VBZK7A`?i+2 word homefedVBNZd;OǿJJZd;O?i-1 tag+i word NN lienNNq= ףp?JJq= ףp i suffix apeRBNNK@VBDMbXJJR333333VBPMbX?JJx&1 NNS~jtVBbX9?i tag+i-2 tag FW INRBKFWK7A?JJx&1?NN'1ZĿi+1 word sagesNNx&?JJx&ٿi-1 tag+i word DT everydayNNMbJJMb?i-1 tag+i word PRP clearVBK7VBPFxJJm@INq= ףpͿi-1 tag+i word DT automobileNN`"?JJ`" i word no.CD#~jĿJJMbNNP'1VBn?$ClۿNN)\@VBDB`"RB ri+2 word remainingNNSl?VBPnпNNClVBN&1JJT㥛 @VBZy&1Կi-2 word reminderWDTQWPQ?i word administrationVBP{GzNN(\ڿNNPzG? i-2 word viaNNʡENNPp= ף?NNPS|?5^?JJ= ףp=ʿi-1 tag+i word NNS asVBP`"ֿRBX9vINrh|?i word jeopardyJJ-NNm?NNPS?i-1 tag+i word DT recordedVBNvJJv?i tag+i-2 tag POS NNRB(\FW= ףp=?JJJ +ѿRP?NNPw/?NNPS`"?NNbX9?JJSS㥛?JJRuVVBN#~jRBSQ@RBR rh?INV-?VBZNbX9VBGSCCCl׿VBD?5^I VBPDlCDMbNNSbX9?i+1 suffix hefNNX9v?VBNʡEJJK7i-1 tag+i word ( burnsNNS~jtпNNP~jt?i-1 tag+i word VB unableJJ ףp= ?NN ףp= ǿi word charityVBNNQ?JJ ףp= i+1 word roastVBNPnJJPn?i-1 tag+i word CC understandVBˡE?VBPˡEԿi-1 tag+i word NN liningVBGFxNNFx?i+2 word virtuallyRBV-?INOnRPOn?NNv?VBNvVBPV-i-1 tag+i word VBG uponJJ333333IN333333? i word bushyVBN㥛 JJ㥛 ?i-1 tag+i word , resultingVBG333333@NN333333i+2 word inexpensiveDTzGPDTGzRBHzG?i-2 word augustNN+ @VBDB`"VBNK׿JJ$CINףp= ?NNPGzRBZd;? i-1 word debtVBGPnRB㥛 VBDX9vVBNM@VBq= ףpRBR㥛 ?INJ +?CDV-?VBPGz߿NNS/$NNPS(\NNRQ@JJjtVBZK?i word thierryVBPp= ףNNPp= ף?i word discouragesVBZX9v@NNSX9vi-1 tag+i word PRP cheapensVBD~jtVBZ~jt?i+2 word eighthIN ףp= RPQRB)\(@i+1 word pushingVBZv/NNSv/?i-2 word inquiryVBDS?VBNSJJnڿNNPn?i-1 tag+i word -START- pulpNNSZd;ϿNN\(\?NNPni-1 tag+i word -START- pioneerNNL7A`NNPL7A`?i-1 tag+i word VBG louderRBRX9v?JJRX9vi-1 word benefitJJsh|?@JJRX9v?RBsh|?WPX9vVBZQNNSQ?i+1 word vesselJJE?NNEi+2 word elementJJS333333RBS333333?i-1 tag+i word NNPS designeesNNPS +NNS +?i-1 word actualVBPDlNNS-?NN~jtJJJ +NNPX9v?i+1 word combatVBٿVBG-?NNv/?JJQNNPvi word armenianJJuV?NNPuVi word confrontVBPK?VBDK߿i-1 tag+i word VBN struggleNNy&1?JJy&1i+2 word upperNNPST㥛 NNPT㥛 ?i word regulatorsVBZ/$?VBPp= ףNNSjt?VBDZd;Oi-1 tag+i word NNS allowVBSVBPS㥛@NNMbINK7A` i suffix 011JJK7CDK7?i-1 tag+i word RBR offersJJNNS? i-1 word told RBMbEXp= ף?JJRQINK7A?NNS"~j?NNP r?PRP$ rhPRP rh?VBZ ri-1 tag+i word IN sentimentNNI +?JJI +i-2 word challengeVBD;On?NN+?VBN;OnJJ+i+1 word arrivesNNB`"?CDB`"i-1 tag+i word JJ regardingVBG㥛 ?NN㥛 i-1 tag+i word DT festivalNN-?JJ-ӿi-2 word overstatingNNS-?NN-i+2 word izquierdaNNPMJJM?i-1 tag+i word CC skepticsNNPSKNNS㥛 NNP`"?i-1 tag+i word NN nudeVBPDlJJsh|??NNEi-2 word employerNN(\?RP-@JJ(\RB- i suffix DukNNףp= ӿNNPףp= ?i-1 tag+i word DT indicatesVBZy&1?NNS"~jԿJJA`"i-1 tag+i word NNS comingVBG +?NN + i-2 word dustJJSNNS@i+1 word flagshipJJDl?NNDli-1 tag+i word CC anklesVBZX9vNNSX9v? i word hateVBPx?JJx i word many PRP$QNNCPDTl?VBNPnNNSd;OVBGԿRBZd;CD`"JJS㥛%@DT ףp= @NNPT㥛 i+1 word expertiseNN/$VBDSVBNQVBG/$JJ~jt @i-1 tag+i word RB surprisedJJQ?VBD"~VBN`"οi-2 word gorgeousNNMb?JJMb i-1 word noseVBDlRPFx?VBNl?INFxi-1 tag+i word JJ packageNN|?5^?JJ|?5^i-2 word alongINuV?RB/$JJJ +NN㥛 ?NNPq= ףpտi-2 word breadJJRzGNNzG? i word hadNNV-INQNNPSZd;VBDL7A`.@POSVBV-PRPy&1VBZV-NNSV-VBNV-@VBP+JJp= ףCD(\WRBMbXi tag+i-2 tag PRP$ NNNNSS?NNV-JJT㥛 ?i-1 tag+i word IN provedVBNV-VBDV-? i-1 word u.k.VBZOnNN+?VBDw/i-1 tag+i word IN drillingVBGI +NNI +?i-1 tag+i word : setVBNGz?VBDGzi-1 tag+i word , raisedVBNuVNN\(\VBDMbX9?i-1 tag+i word DT negotiatingVBG`"޿NNS?JJ`"i-1 tag+i word RB generatedVBNMbVBDMb?i-1 word shownJJRQ?NNlRBV-INDl?DTDlNNSZd;? i word sfeNNlNNP rh?NNPSZd;i-1 tag+i word DT dec.VBZ;OnNNzG@NNPi-1 suffix nst NNPSffffffJJS˿NNS'1ZRB/$?INd;O?DTd;OPRP$ˡEVBGV-ͿNNy&1VBNx&1?PRPX9v?NNP㥛 ?i word fieldingVBGK7ANN1Zd?JJI + i pref1 cPOSX9vPRP\(\PDTCCFxJJSI +WP+VBZʡE @MD9vFWB`"VBPjt@NNPSVJJRB`" @CDZd;O DTClNNCl@RBCl?VB ףp= @VBN{Gz @JJV-@VBDbX9 @RPQRBRX9v?WDTSNNPffffff0IN/$SYMRQ?VBGrh|@$V-NNS#~j@i-1 tag+i word POS onlyJJA`"?RBA`"ۿ i word keanJJbX9NNPbX9?i-1 tag+i word RB selectedVBN{Gz?JJ{Gz i word cancerNNbX9?NNPbX9i-1 tag+i word NNP steelworkersNNPS rh?NNP rhi-2 word generationJJ?NNi+2 word britainRBlNNZd;VBN+JJl?IN+?NNSZd;?NNP~jt?NNPS~jt i word agingVBGI +@NNKJJ ףp= ߿i-1 word uninsuredVBPB`"JJZd;O?NNsh|?i-2 word controlledNNPSjtNNuV @JJ"~NNP333333i-1 tag+i word NN playedINSVBD(\?VBNFxi+1 suffix seeVBѿRBK7VBDZd;O?VBGK7?POSGz?LSZd;OJJ-VBZGzNNKVBPSNNS)\(?NNP/$?MDS?NNPS~jt?VBNZd;Oi-1 tag+i word CC creditsVBZ1ZdNNS1Zd?i-1 tag+i word POS financialJJ~jtNNP~jt?i-1 tag+i word VB leadVB?JJi+1 word noticeablyVBNX9v?JJX9vi+1 suffix orn RBR#~jĿRBv/VB'1ZRPv/?JJS"~?RBS"~JJR#~j?VBP$C?DTV-?JJEпNN/$VBDK߿i-2 word earnedJJPn?NNPni-1 tag+i word VB feb.PRPJ +RBzGNNPCl?i-1 tag+i word IN germanNNPy&1̿JJy&1?i-2 word shakesNNX9vϿPRP$9vPRP333333?i word managementNNPSK7NNx&?NNPDl?i-1 word partyRBMbp?NN rh?VBDK7A`?VBNʡEJJzG?VBZClNNSCl?i-1 tag+i word IN speakingVBGʡENNʡE?i-1 word favoredDTQ?NNףp= ?JJףp= INQi-1 word rogerNNPSq= ףpݿNNSX9vNNPsh|??i-1 suffix ialJJRGz?VBV-NNPSK7A`?VBN +IN= ףp=NNSZd;O?VBGZd;O?JJPn?VBPjtWDTA`"VBZxNN$C @VBDZd;O?RB"~NNPHzG?i+1 suffix ongDT|?5^VBZM?VBG{GzJJ(\ NNQ@NNSoʡ?VBNh|?5@CD ףp= VBDEPDTS㥛VBP?INS?NNP|?5^VBp= ף?RBuV?WRBOni-1 tag+i word VBZ tradingVBGK7?NNQ޿JJ1ZdNNP rh?i-1 word clientsJJRQ?RBRQVBPRQRBS?INSտVB^I +@NNjti-2 word revivalPRPx&ѿPRP$x&?VBPQJJMb?NN= ףp=i+2 word tabooVBPd;O?NNSÿINRQi-1 tag+i word CC reopensVBZ r?NNS ri word atlanticNNPC@NNPS~jtJJSRBOni+2 word deoxyribonucleicNNPV-NNV-?i word failureJJx&1NNPnVB+NNL7A`@ i-2 word lotsVBG+?NN+ i word feverNNSxNNd;O?RBʡEi word congenialNNS+JJ+?i word optionsNNPS\(\?NNS(\?CD(\NNP\(\i word dealingsNNS+@VBNSNN&1i-1 tag+i word JJ angeredJJMbXVBDMbX?i-1 tag+i word IN psychicsNNS㥛 ?VBN㥛 i+1 suffix woVBG`"NNSlڿNNPMbX?NN`"?DTV-?EX+?JJrh|RBRBRK?WDTT㥛 ?IN'1ZVBZq= ףp?VB~jtNNPSQ? i word boomsNNSn?NNnѿi word slumpingVBG?NNٿi+2 word isolationVBNp= ףVBDp= ף?i-2 word decidedVBX9v?PDTQJJJ +ѿ i word matterJJVBZ1ZdNNP#~jVBX9v?NNjt @JJRd;ORBR +i-1 tag+i word IN addedVBN?5^I ?JJ/$VBDPn i suffix osyVBPK7A`ݿNNSuVJJK@NNDli-1 tag+i word VBG rightsNNPS&1NNP&1?i-1 word leezaNNPSClNNPCl?i-1 tag+i word VBD closerRBRQJJR rh?VBN|?5^i+2 word preclearanceVBZp= ףNNSp= ף? i word p.m.NNx&1?NNS rhRBX9v?JJnʿINGz i suffix nisNNP rh?NNw/@JJRQVBNQJJp= ףNNS7A`?i word retinalVB= ףp=JJ-?NN}?5^I̿ i-1 word darkNNS-?RB-i+2 word growthVBV-?VBGw/?NN +?RBRV-?JJ{Gz?VBDNbX9?NNP ףp= JJSh|?5?VBNlҿRB5^I INFx?VBZ +JJRCl?WDTHzGDTSտi-1 word minoritiesVBMbX9@VBPMbX9 i+2 word treeFW`"ֿJJx&1?IN\(\?RPS㥛?RBh|?5NNx&1i+2 word intendVBPZd;OVBZd;O@i-1 tag+i word : challengeVB/$@NN/$i-1 tag+i word CC parcelsVBPףp= NNSףp= ?i-1 tag+i word -START- moreverRB rh?NNd;OοNNPJ +i-1 word provesIN#~j?DTMbؿVBPRQWDTq= ףpJJRQ?i+1 word fidelityDT9vIN9v? i-2 tag LSVBʡE?JJ/$NNKǿNNPq= ףpVBZjt?i-1 tag+i word RB yetVBNZd;JJKVBQRB)\(@i-1 tag+i word JJ heroesNNSCl?NNCli-2 word depletionJJzGVBNzG?NNQ?CDQ i word grantJJGzVBB`"@VBP(\PRP$ ףp= NN7A`@i-1 tag+i word NNP eubankNN rhNNP rh?i-1 tag+i word NN underneathJJx&1INx&1?i word treasurersNNPSx&1?NNSQNNP$Ci-2 word krispiesNNPS/$ٿNNP/$? i word tardyRBˡEVBNSJJ)\(?i-1 tag+i word VB adequateNNʡEJJ ףp= ?VBN+i-1 tag+i word DT impendingVBGQ?JJn@NNoʡ i+1 word daveNNS/$JJRoʡNNS㥛? i-2 word rossVBPx&1?NNPsh|??VBx&1NNPSsh|?VBDV-CDV-?i-1 tag+i word : exceededJJ#~jVBD#~j?i-1 tag+i word IN permanentNNQJJQ? i word enough NN|?5^VBNMbVBZ/$VB|?5^JJrh@VBP$CRBQ@IN rhNNSh|?5i-1 suffix htyJJMb?RBMbi+2 word electronicsWDT/$JJ;OnINrh|?NNPCl?NNPS rhRP rh?NNX9vi-1 tag+i word -START- serialNNP)\(JJ)\(?i+2 word purchasedPOSGzNNx&1?VBZGz?NNSx&1i-2 word overseasJJ rhVBZ?NNSVB@VBDQ?VBNQVBP7A` i suffix 550JJjtCDjt? i+2 word maryVBD-VBN-?i+2 word daikinNNSQNNP\(\VBQ?IN\(\?i+1 word underneathVBZx&1?NNx&1i+1 word dissentJJQ?NNQi-1 word white VBNw/JJRSVBZV-ڿCDjt@NNSy&1NNP/$NNPSV-@NN+?JJI +ֿ i word heroesNNClNNSףp= @JJR{GzJJ}?5^IVBNK7A`ݿi-1 tag+i word POS potentialJJMbX9?NNMbX9i+2 word spottedJJ(\?VBD5^I ۿNNP(\IN5^I ?i+1 word approachJJRCl?JJ1Zd?VBZFxNNSK7APRP$Zd;?VBGX9vRB?5^I NNjt? i suffix dowNNSV-NNV-?i+1 word reformsVBGV-?JJjtNNl@NNPV-PDTJ +i-1 tag+i word JJ armyNNSMbпNNZd;?NNP;Oni word steeringVBGffffff?JJffffffi+1 word primitivesVBNJJ? i suffix tioVBZNN+?JJV-׿i-1 tag+i word DT teemingVBGʡE?JJʡE i word diesVBZ+@NNSy&1NNP}?5^I i word jailedVBQJJ rh?VBD~jtVBNd;O@RB%CIN7A`i+1 suffix podJJR(\JJ(\?i-1 tag+i word IN professionalJJ|?5^?NNzGNNPm?NNSffffffi-1 word paribasVBPq= ףpͿNNq= ףp?i+2 word devicesVBPKVBNMb?JJMbVBDK?i-1 tag+i word `` shockproofJJJ +?NNJ +i-1 tag+i word PRP understandVBsh|??VBP-?NNPsh|?VBDy&1MDzGi+1 word maybellineJJZd;O@NNZd;Oi word controlsVBP+JJGzVBZQk@NNS$C @VBSNN rVBDV- i word dragVBPV-@NNSx&1VBN^I +JJS㥻NN!rhi-1 tag+i word VB lentVBN#~j?JJ#~ji-1 tag+i word PRP$ autumnNN$C?IN$Ci-1 suffix orbDTQۿPDTQ?i-1 tag+i word VBG fastRBRQ?JJRQ i+1 word irs PRP$-VBD1ZdDT-?NNS1ZdۿRP{Gz?WDTsh|?JJ1Zd?INjt?VBZ1Zd?i+1 suffix rsyVB?5^I ?VBGp= ףJJtVNN(\?RBʡEƿINʡE?i-1 tag+i word DT academicJJʡE?NNrh|NNP(\?i-1 tag+i word CC erithmaticNNK@JJX9vοNNPbX9i+2 word sansuiVBPbX9VBbX9?i word rethinkVBL7A`NNL7A`?i-2 word catalystDT%CPDT%C?i+2 word publicityNN\(\?RB\(\i-2 word handedEXL7A`RBL7A`?i+2 word lacklusterVBGffffffNNffffff?i+1 word finallyRBMbX9INMbX9?i-1 tag+i word IN somersetNNPS'1ZNNP'1Z?i-1 word recombinantNNPx?NNxi-1 tag+i word RBR complexJJ|?5^?NN|?5^i+2 word beachNNA`"IN= ףp=VBP!rh?JJGz?i-1 tag+i word CD memoNNS{GzNNx&?NNP㥛 ¿i-2 word waterhouseVBGGz?NNGzi-1 word stylishlyVBP`"VBNSſJJMbX9?i-2 word pressJJQ?NN+VBNQWDT!rhEXS?RBSIN!rh?NNS+?i+1 word performRBʡE?JJʡEi-2 word recentVBZd;ONNPSPnRB?VBDS?VBNQVBPm?VBGvJJZd;VBZQ@NNX9vWDTK7INtV?NNS-?NNPZd;ϿDTCli+2 word crushedNNSGz?VBNMb?NNGzVBDJ +i-1 tag+i word VBZ unrealizedVBN"~jJJ"~j?i-1 tag+i word NN communistJJ rh?NNMbX9NNPd;Oi+2 word drivesVBP +NNS}?5^I̿RBRRQ?NNoʡJJm?i-2 word performanceNNPI +?VBEVBGI +޿NNbX9JJRbX9?VBNE?i-1 tag+i word CC modifiesVBZ333333?NNS333333i-1 tag+i word PRP gonVB㥛 ?VBP㥛 i-1 tag+i word DT cynicalJJx&1?NNx&1ؿi-2 word engineersNNrh|VBDh|?5?VBN= ףp=VBPh|?5RB9v?INy&1VB= ףp=? i+1 word ageNNPˡE?RB'1Z?NN}?5^IVBNV-?JJp= ףIN'1Zi tag+i-2 tag '' .JJZd;OǿVBZK7?DTq= ףp?NNSKNNPq= ףpVBD%C?VBNZd; i-1 word yaleNNPS/$JJ$C?NNPx&1i-1 word longstandingJJM?NNMڿi word whittleNNPףp= ?WRBSNNM?JJ"~jWPԿi+1 word raisingVBZPnNNRQ?POSPn@JJRQi word alreadyRBOn@NNԿPRPSJJʡEINI +NNP/$i+2 word street JJSRQ?VBPS?WDT/$@IN7A`?NNS$CNNP$C?RP9vRBMbRBSsh|?տVBNECDHzG?JJx&1VBZ;On?i-1 tag+i word RB scoredVBNQ?JJQi-1 tag+i word `` streamliningVBGK7?JJK7i-1 tag+i word , handledVBNK7VBD#~j?VBZCli-1 tag+i word IN changedVBNffffff?JJoʡݿVBDCli-1 tag+i word JJ portableNNSˡEܿNNˡE? i+2 word barNNʡE?VBp= ףNNSZd;i-2 word america NNPoʡ?JJy&1VBDx&RBSQݿRB`"NNSMbȿVBx&NNPSL7A`NNbX9?JJSQ?VBZ!rh?i-2 word castroVBPClNNy&1VBx&1?i-1 suffix ats VBNV-VBPy&1,@RBQ?RPx&1NNSuVNN㥛 VBG-?VBDK@IN5^I NNPw/VBX9vi-1 word transcriptVBNMbX?NNMbXi-1 tag+i word DT tragicJJ|?5^?NN|?5^i-1 tag+i word MD benefitVBbX9?NNbX9i-2 word fargoNNPSx@NNPxi-1 tag+i word JJ lboNNbX9NNPbX9?i+1 suffix vskDTMbX9?INMbX9i-1 tag+i word POS recurringVBGQ?NNQi+2 word tomatoesJJL7A`NNL7A`?i+2 word hiborRPp= ף?INp= ףi-2 word becameRBR+ۿRB|?5^ٿINZd;?NNS5^I VBGˡE?JJSNN&1?JJRA`"?i+2 word optionNNPSrh|?NNjt?VBPy&1@JJV-INy&1NNS~jthNNPrh|i-1 tag+i word NN dummyNN/$?FW/$i-1 tag+i word NN yardNNGz?RBSݿNNPFxѿ i word nineRB)\(NNP5^I VBMbNNV-CDtV @UH(\i word inverseJJx&1?NNx&1Կi-1 tag+i word PRP$ commercialJJ~jtNN~jt? i word halfRBM?VBGx&1JJQ?PDTB`"[@VBx&1VBN/$NNPV-NNS333333VBD+CDQDTm@VBZh|?5PRP$\(\߿NNQ@VBP!rhPRPPn i word takingJJKVBGZd;@NNGzi+2 word confessedNN rNNP r?i word architectsNNPS?NNSʡE?NN333333NNPVBZNbX9i-1 tag+i word POS bibleNNI +?JJI + i-2 word a.NNPS+ۿNNP+?i-1 tag+i word NN eurobondsNNPSZd;ONNSZd;O? i+2 word liftVBD-?VBPDlVBN-RBDl?i-2 word quakeJJ#~jNNP/$ӿRBoʡ? i suffix ousNNPS{GzVBPV-PRPNbX9NNStV VB~jtVBD\(\VBNZd;ONN+INQVBZNbX9ؿJJR|?5^@JJd;O0@RBRtVRB{Gz?NNPNbX9?i-2 word terrorismWDTClۿWPCl?i+2 word suddenlyIN9vDT9v?NNx?JJxi-1 tag+i word RB readilyVB(\RB(\?i-1 tag+i word PRP asRBʡEݿINʡE?i+2 word diagrammingNNx&1VBGx&1?i-1 word catererJJvVBDv?i-1 tag+i word , leadingVBGSJJS?i-1 tag+i word CC s&lNNPSOnNNPOn?i-1 suffix laeNNjtVBDjt?i+2 word naturalNNP/$?NNPSOnRPKJJOnNNZd;O?RBK@INK?i-1 tag+i word NN discountedVBNHzG?JJHzGi-1 tag+i word JJS testimonyNNSoʡNNoʡ? i word oldestMD~jtJJS'1Z@JJClNN?5^I i word seatedVBN/$?VBD/$i+2 word gebruederNN~jt?JJ~jt i+1 word onlyVBN%C?WDTʡEEX-?IN r@NNPˡE?NNSEVBI +DTT㥛 MDn?NNPSh|?5VBG5^I  @JJʡE NNy&1RPMb`?VBDsh|??RBSv/?JJSv/VBPQ?RB rhտVBZE@i-1 tag+i word POS rightNNFx?JJFxi-1 tag+i word '' meaningVBGClٿNN|?5^?JJK7A`i-1 tag+i word DT burglaryNNS㥛?JJS㥛i word roaringVBG/$NN/$?i-1 tag+i word VBG continuingVBG\(\?NN-NNPS?i+2 word strengtheningVBNQVBDQ?i-1 tag+i word CC beggingVBGQ?NNQi-1 tag+i word DT secaucusNNClٿNNPCl?i+1 word universalVBNMbNNPZd;OVBD(\?i-2 word overseeingNN\(\?JJ\(\׿i-1 tag+i word NN alloyNN|?5^?JJ|?5^i-1 tag+i word PRP steelyRB%CܿJJ%C?i-1 tag+i word VBN policeNNSV-ݿNNV-?i-1 tag+i word RB necessarilyVB/$RB/$@JJCli word crackdownNNS+VBrh|NNʡE@VBDv/VBNZd;JJjti+1 word mcdonaldDTK7A`?INK7A`"i-1 tag+i word -START- residentialNN ףp= JJx&1NNPK7?i word brainchildNNCl?NNSCli+2 word disputesJJSK?RBRx&VBNV-VBPx&?VBDV-?RBSKi+2 word disqualifiedRBCl?NNCli-1 tag+i word NNPS riverfrontNN?RBi-1 tag+i word NN overNNʡERBh|?5INQ?RP/$ݿi word ratificationVB\(\NN\(\?i word dressingVBG?5^I ?NN?5^I ڿ i+1 word uponVBD1ZdVBN1Zd?VBPw/?JJQVBZ-?VB/$ÿNNܿi+2 word downsideRP}?5^I?RB/$INw/Կi+2 word plaintiffVBNx&?JJx&i-1 tag+i word CC commercialJJ(\?NN(\i+1 suffix ramRBjtNN;OnCC`"VBNV-?WDT5^I NNPSClVBP1Zd?VBGZd;?JJZd;@VBDV-NNSd;ODTK7A` @NNP5^I VBHzG?CDPnIN333333?VBZi word pumpingVBPvVBGˡE?JJzGi-2 word hardlyVBZl?NNSlJJSd;O?RBSd;ORBR333333?JJR333333i-2 word warnedDTx&1RB;OnNNZd;ϿINK?i-1 tag+i word IN revcoVBN\(\ϿNNP\(\?i-2 word liaisonsNNGzNNPGz?i-1 tag+i word -START- taiwanNNˡENNPˡE?i+1 suffix ffsJJ(\@VBPPnVBG5^I VBN+NNZd;O?i-1 tag+i word CD equalingVBGQ?NNQ i word oecdVBZ|?5^NNP|?5^? i word usersVBZX9vNNSX9v?i word upstartNN1Zd@JJ1Zdi tag+i-2 tag TO , VB%C?$MNN5^I ?JJR/$ݿJJ"~j?NNPRQ?VBDQοVBNX9vRBGz? i suffix CNWNNPSOnNNPOn?i-2 word recordersVBZq= ףpNNSMbPNNFx?i-1 tag+i word , defendsVBZ(\?NNS(\i-1 word scaredRP"~?RB"~i-1 suffix elsVBNS㥛@WDTy&1|?INV-?DTv/JJR +NNPS(\NNx&RB~jtNNPGz?VBG(\?JJX9vVBD9v RBR +?VBP-?i-1 tag+i word JJ emhartNNPSDlNNPDl?i-2 word establishJJ"~j@VBN{GzԿNNʡEJJRi-1 tag+i word DT conventJJ'1ZNN'1Z?i+1 word homersNNK׿VBDK?i word ignominiouslyRB= ףp=?NN= ףp=i+1 word accordWDTJJxNNPx?DT?i-1 suffix lesNNP$CVBP/$?VBZV-?NNL7A`LS ףp= INQ?NNPS~jtӿSYMMbX9VBN\(\׿RP!rh?POS~jt?NNS!rh?PRPx&1VBV-?RBRGz@FWʡE?WDTGz?JJ7A`VBDRQRB&1@VBGZd;O?'')\(CC9v?JJS?5^I JJRS㥛?i-1 tag+i word , incestNN;On?RB;Oni+2 word inequalityVBN(\?JJ(\i+2 word clementsVBZ\(\?NNS\(\i-1 tag+i word VB increasedVBNS?JJS i word fanVBRQVBPˡENNGz @VBNRQJJQi-1 word crackedRPGz?RBGzi-1 word ghostlyVBZ/$NNSףp= ?VBN㥛 i+1 word callsNNS333333VBZd;VBP?VBG~jt?NNQ?i-1 tag+i word NNP burglaryNNtV?JJtVi-1 suffix ushJJRQ?JJQNNPsh|?RP^I +?CC5^I ?RBRQVBZB`"ѿRBV-@VBD1ZdVBGn?IN|?5^VBP~jt?VBN rh@VBS?NNx&?NNSMbi-1 tag+i word CC merchantsVBZI +NNSI +?i-1 tag+i word , stoppedVBN|?5^VBD|?5^? i-1 tag NN#NNPw/?VB+RBSʡE?WP&1CCMb?PDTʡECD +?JJS~jtRBMbX9RBR~jt?NNPSffffffƿUHPnVBZ%C@INA`"?MDEԸVBPJ +?VBN)\(?DT?5^I NNGz@PRPMbX9ĿWRBw/?EX&1FWˡE?WDTZd;JJS㥛RPn''|?5^?VBGQPOSףp= ?PRP$PnVBD= ףp@NNSMb?JJR/$SYM9v?$ףp= i+2 word timingJJV-INV-?i-1 word naughtierNNSGzNNGz? i word palaceNNvNNPv?i+1 suffix calNNPSS㥛VBG%C?WDTClVBZ?DTZd;O@NN~jt CCd;O?CDZd;?JJX9v@RP9vNNSQWRB9vRBS%C?IN"~ JJS333333VBN'1ZNNPףp= ?VB)\(@RBR|?5^?JJRv/PRP$Pn?VBDQ?VBPK7A`ݿRB +@i-1 tag+i word JJ broadcastVBN+׿NNJ +?INʡEi-1 tag+i word VBZ wealthierJJR|?5^?RB|?5^i-1 tag+i word CC drivesVBZNbX9?NNSNbX9i-1 suffix nupNNI +?JJI +i-1 tag+i word VBZ eagerJJx&1?NNx&1i-1 tag+i word : nothingNN rh?VBG rhi-1 tag+i word RB pageantVBNSNNS?i-1 tag+i word TO publicVB/$JJ/$?i+1 word wantingNNX9v?JJX9vi-2 word mortgagesJJ?RBEINJ +i+1 word crownJJ1Zd@NN1Zdi tag+i-2 tag NNPS ``''Q?VBZB`"ٿNNS9v?POSQJJRQi-1 tag+i word VBG hypoglycemiaNNSNbX9NNNbX9? i-2 word nhiNNPSQ?NNPQi-2 word stylesNNSm?NNmi-2 word arizonaNNPMbX?JJGz?RBʡEi word pennzoilNNv/NNPv/@i-1 tag+i word NNS necktiesNNSm?VBZm i+1 word tvVBN'1ZCDJJK7@IN$CDT$C?NNP%C@RBNbX9NNvi-1 tag+i word WP pushedVBPGzVBDGz?i-1 tag+i word CC fundingVBG&1?NN&1i-1 tag+i word NNS jerusalemRB7A`NNP7A`?i-1 tag+i word , launchesVBZ9v?VBD9v i-2 word cokeNNOn?JJOni-1 tag+i word CC growingNN9vVBG9v?i-1 word plaidNN?5^I ?JJnѿIN333333i-1 tag+i word NNP chiefJJsh|??NNsh|?i-1 tag+i word NNP cardsNNPSClNNSCl?i+1 word tennesseeVBDZd;O?NNP-@VBNZd;OLSZd;ORBK7i-1 tag+i word NNP reportingVBG)\(?NN)\(i word reservationsVBPGzNNS$C?VBZ7A`i-1 tag+i word POS rareJJ\(\?NN\(\i-1 tag+i word IN comingVBGQkJJ7A`@NN/$i+2 word physicalJJy&1?VBG~jtؿNNK7i-1 word peabodyJJ"~j?NN"~ji-1 tag+i word TO balanceVBCl?NNCl߿i word devotesVBZ+?RB+ÿ i word trendsNNSMbX?VBZMbXi-1 tag+i word POS monthlyJJPn?NNPni-1 tag+i word JJ alumniNNSCl?NNCli-1 tag+i word NNS followVBPJ +?NNJ +i-1 suffix fthJJrh|NNPrh|? i word pointsVBZV-?VBףp= NNSm?JJmVBDi-1 tag+i word RB transferredVBDB`"VBNB`"?i-1 suffix ffs VBPbX9?WDT"~@INQNNd;OVBDHzG?VBNHzGPOSQ?''QDT/$VB? i+2 word lungJJQտNNP&1NNw/@NNSoʡVBNQ?i+2 word speakerNNA`"?JJRQNNP&1i word southernersVBZB`"NNPSS@NNS|?5^i-1 tag+i word , ill.NNP?INi+2 word septemberRPV-NNOn?VBDtV?VBNh|?5RB\(\?INrh|?NNSMbXVB-ӿi-1 tag+i word CC disputesVBZFx?VBFxi-1 suffix buyDTI +ֿNNPQ@VBNK7JJMbX9?NNClNNSV-?NNPSHzGRBB`"JJREȿIN/$@CD7A`?PDTI +?RBRףp= VBRPx&1?i-2 word montgolfingVBG-NN-?i-1 tag+i word VBZ thoughtRBsh|?ſVBD rhݿJJClINQVBN|?5^@ i word coreJJʡE?NNv@VBDQٿJJR9vRBQNNSv/VBHzGi-1 tag+i word , remainVBSVBPS?i+1 word rockersNN"~?JJ"~i-2 word racismJJjt?CD#~jVB{Gzi+1 word democraticRBR"~?JJR"~RBx&1?NNP|?5^@JJ|?5^NNx&1 i word expectVBDX9vVBPCl@JJSINzGVBZ$CVB @RBClNNʡE i+1 word getsNNzG?JJzGҿi word protractedVBNRQJJRQ?i+1 word maierNNPB`"?VBB`"i+1 word knowledgeableNNCl?JJCli-1 tag+i word RB laggedVBNQ?RBQi+2 word womenNNSQ?NNPMb?NNMbJJSQRBRE?JJREi-1 tag+i word NN increasedVBNvNN+VBDq= ףp?i+1 suffix ams VBGMbX?FW+η?JJR5^I JJ\(\ @NNSʡE?VBQRB㥛 NNK7?VBDHzGVBN)\(?VBPZd;?VBZSNNPClӿi tag+i-2 tag EX VBPVBZMbPOSMb?i+2 word declaredLSQRB-ӿNNPM?i-1 word handfulDT{Gz?VBN{Gzi-1 tag+i word IN chillyJJV-?RBV-i-1 tag+i word NNS flickeredVBN/$VBD/$?i-1 tag+i word NN stashedVBDv?JJvi-1 tag+i word NN wovenJJHzGVBNHzG?NNHzGi+1 word beliefWDT&1JJ/$?INGzDT&1?VB"~NN%Ci-1 word tenorVBN/$VBD/$?i word jerusalemRB7A`NNP7A`?i-1 tag+i word `` anythingVBG;OnNN rh?JJZd;NNP(\?i-2 word earthVBZzGNNx&1?NNSQJJ ףp= ?RBV-?i+2 word thighVBG"~jNN"~j?i-2 word contemporaryIN+?NNPNNS?JJ+i-1 suffix ol.NNClNNPCl?i-1 tag+i word NNS footstepsNNS㥛 ?VBN㥛 i-1 suffix ppiNN#~jVBP#~j?i-1 tag+i word -START- alfredNNP%C?NNPSmVBN$Ci tag+i-2 tag PRP$ :NNP|?5^?VBD(\?JJV-?NNCli-2 word yankeeJJQ?NNQ i suffix WDBNNNNP?i-1 tag+i word CC tomatoesNNSZd;?NNZd;i-1 word identifiedRP(\NNSS㥛?RB(\?NNS㥛ؿi-2 word agriculturalDT~jtWDT~jt?i-2 word insuredVBN1Zd?JJB`"NNB`"?VBD1ZdۿRBR9vJJR9v?i-1 tag+i word IN ratsNNS(\?NN(\ؿi-1 tag+i word IN runningVBG{Gz?NN{Gzi-1 tag+i word JJ putsVBZV-?NNV- i suffix ndsFWEVBNK7A`NNSMbX'@NNPZd;VBV- VBZMbXy)@NNPS}?5^@VBDQCC^I +RBRV-RP/$JJy&1 NNvo#VBPV-RB{Gz i suffix 'n'CCL7A`?POSQCDOni-1 tag+i word DT taleJJDlѿNNDl?i-1 word laurenceNNv?NNPvϿ i word typesNNSʡE@NNʡE i word messVBD\(\NN333333@JJR!rh̿RBClNNPtVi-2 word enterNNPh|?5NNSjtNNx&1@JJmi-1 tag+i word JJ tasksNNSˡE?NN!rhVBZT㥛 i-1 tag+i word CC creeVB1ZdNNP1Zd?i-1 tag+i word JJ easyJJw/?NNw/ܿi word hispanicJJQ@NNPQi+1 word restraintVBGJ +NNJ +?i+1 word weakensNN ףp= ?NNP ףp= i+1 word studies NNX9vRBRʡEJJRʡE?IN;On?VBZ|?5^DT;OnڿVBS㥛VBNʡE?JJMbX?NNPV-?i-1 tag+i word VBP opposedVBNClJJCl@i-1 tag+i word NNP filesNNSʡE?NNPʡE i word noticeVBDnVBPn?RBMbNNPjt@MD= ףp=JJZd;ONN\(\? i suffix rntJJ5^I ?NN5^I  i word aboardVBP(\JJh|?5INףp= W@NNPV-RB\(\NNNbX9VBD5^I ۿi-2 word enormousWDTMbX9NNV-@JJ"~NNPnINMbX9? i word norwayNNMbNNPMb?i-1 tag+i word IN prayerNN?5^I ?JJ?5^I ڿi-1 tag+i word VBG unfairJJ^I +?NN^I +߿ i-2 word nyseNNPS9vNNuV@NNPi word amusementNNtV?JJtVi+2 word luxuryVBZ~jt?VBGMbX?RB~jtNNMbXi+2 word gooseberryNNSGzNNGz?i word aboundsVBZV-?NNV-i-1 tag+i word DT c$Q?NNPQi-1 tag+i word -START- martinJJףp= NNPףp= ?i-1 word reportWDT7A`RBNbX9NNP"~ʿVBG rh?VBD333333@NNS)\(?VBNK7?JJ?5^I NN&1CDX9vJJR?INQ?DTZd;O?RBRRP㥛 VBZ-@ i suffix .85CDCl?NNSCl׿ i word beatsRBA`"INA`"VBZ(\?NNS#~j? i word ruderNNPS~jtNNP~jt?i-1 tag+i word NNS listVBP rhNN rh? i+1 word mesaVBDNbX9?JJRrh|?RBRA`"JJ%C?NNP㥛 NNv/i+1 word racialVBNB`"?JJ(\VBD7A`?DT(\IN(\? i word amountVBPS㥛RBX9vVB +@JJGzNN+ @VBNZd;Oi-1 tag+i word JJ tradedNNSClVBNClVBD!rh@i-1 tag+i word DT looksNNS(\?NN(\i-1 tag+i word VB meringuesNNSGz?VBNGzi-1 tag+i word JJ bowlsVBZ|?5^?NN㥛 JJ?5^I i-1 tag+i word CD rulingNNZd;?VBGZd;i+1 word retirementNNPx&?VBQ?NNPSV-@NNh|?5FW}?5^I̿JJuVͿ i-2 word mackNNEVBDGz?VBZGzJJE? i word build NN7A`UH= ףp=RBB`"ɿVBZ +NNPZd;OVB#~j @JJMbVBD rhVBPQ@INI + i word bruteVBQJJ/$?NNT㥛 i-1 word envelopeVBZB`"?NNSB`"i word messageJJDlVBNy&1NNv/?i-1 tag+i word -START- stewartNNPx&1?NNPSClNNx&1i word pretoriaNN/$?JJrh|NNPuVi-2 word libyaJJV-?NNV-i-2 word studiedVBN&1VBD&1?i-1 tag+i word NNP promisesVBZPn?NNSPni-1 tag+i word VBP privilegedJJx?VBNxi-1 tag+i word VB detailedVBN/$JJ/$?i-1 tag+i word JJ chillWDT$CNN$C?i-1 tag+i word PRP$ atticNNoʡ?JJoʡտi-1 tag+i word JJ wrapWDT|?5^ٿNN|?5^?i word insistsVBZE@VBPI +NNSffffffi-1 word illustrateJJ+NNP+?i-1 tag+i word `` cheaperJJSJJR1Zd?NN!rhi+2 word strikersRBK7A`տINK7A`?i-1 tag+i word IN measuredVBNX9v?RBX9v i suffix USJJ)\(PRPMb@NNMbNNPi-1 tag+i word NN laterRB"~j?RBRX9v?NN1Zdi-1 tag+i word CC canceledVBN-?VBD-i+1 word pullbackJJ ףp= ?NN ףp= i suffix mosNNS#~j@NN"~FWV-VBZMbX9i-1 tag+i word NN frameNN +?VBD +i-1 tag+i word VBD thatINMb@DT{Gz?RPS㥛ԿJJZd;OWDT +RB/$i-1 tag+i word NNS belowVBP/$JJSClEXxƿRBK7@INV-i-1 tag+i word JJ headNNSK7NN^I +?JJJ +i-2 word introductionsVBPK7A`?VBDK7A` i+2 word herVBNfffffRBR-?RBNbX9@VBZQ?IN;OnVBP㥛 JJR?5^I ҿVBˡEĿVBGzG?JJtV@VBD;OnRPʡENN ףp= @NNS(\ݿNNP1Zdi-1 word nipponNNPSzGJJmNNP'1Z?i tag+i-2 tag DT JJRJJ/$?NN/$ſi+2 word regulatorsRBX9v?INX9vVB/$NNP"~JJʡE? i suffix eonNNPSZd;ONNZd; @FWV-ݿJJ/$NNSClNNPh|?5i+2 word defeatedWDT(\?IN(\i-1 tag+i word POS eighthJJ9v?NN9vi-1 tag+i word NNP existVB(\VBPS?NNjti+1 word amazementVBP)\(ԿJJ}?5^I?NN}?5^IVBD)\(?i-1 tag+i word JJ punishmentNN9v?JJ9vi-2 word sourcesDT/$?VBGnNNn?IN/$ƿ i word newestJJSv?NNvi-1 tag+i word NN rockedNN(\VBD$C?VBNпi+2 word insureNNPGz?NNPSMbؿNN\(\߿i+1 word takingJJ|?5^IN1ZdӿVBuV?NN +@VBNjti-1 tag+i word VBP campeauNN`"NNP`"?i+2 word lewisNN(\?JJ(\i-1 tag+i word RBR progressNNn?RBnѿi-1 tag+i word DT inequitiesNNPS}?5^INNS}?5^I?i-1 tag+i word JJ borrowingVBGrh|NNrh|?i-1 tag+i word NN aboveINw/ @RBˡEVBP rh$ףp= NNK7i-1 tag+i word , serpentineVBmտJJ/$?NN㥛 i-1 tag+i word NN sublimeJJ;On?NN;Oni word faceliftNNSOnNNOn?i-1 tag+i word NN savedVBN"~jԿVBD"~j?i-1 tag+i word MD reportNNmVBm?i-1 tag+i word CD spentVBDClVBNNbX9@NN +i-1 tag+i word NN yieldVBrh|NN#~j@VBDV-i word mushroomsNNS{Gz?NNP{Gzi word complianceNNSNNCl@JJT㥛 NNPCli-1 suffix dit VBFxNNI +?VBD)\(ܿNNPSA`"VBN)\(?RB7A`?INMVBZ1ZdNNSMbX9@NNPA`"?i word tailoredVBNDl?JJS㥛VBD㥛 i+2 word roebuckNNS+NNP+?i-1 tag+i word , doVBV-VBPV-? i-1 word janNNSV-NNPV-?i word colorlessnessJJzGҿNNzG?i+2 word omitsVBNw/?JJZd;O׿VBDʡEi-1 tag+i word POS behringwerkeJJv߿NNPv?i-1 tag+i word DT magnetNNSKNNK?i-1 tag+i word ) wavedVBN?5^I ڿVBD?5^I ?i word clarinetJJMbNNP{GzNNS+NN`" @i+2 word sleepingVBGRQؿNNRQ? i word leanedVBD rh?VBN rhi+1 word promotionalNNS$CۿJJCl?NNClVBZHzG?NNPS!rhi word managerialJJ!rh?NN!rhi-2 word negligibleNNT㥛 ?JJT㥛 пi-1 tag+i word NNP campNNP5^I ?VBD5^I i-1 tag+i word VBZ feb.NNP?JJi-1 tag+i word IN fleeingVBGv?NNvi word interviewsNN&1VBN/$NNSR@JJ-i+1 word antiqueJJDl?NNDli-1 suffix benNNPB`"?NNPSB`"i-1 tag+i word VBZ directJJA`"?NNA`"i-1 tag+i word VB trickyJJI +?RBI +i-1 tag+i word NNS doVBS?VBPK7?INQi+2 word sceneJJjt?INtVֿDT/$VBtV?PDT/$?VBNjti-1 tag+i word NNP reviewsVBDx&1VBZx&1?i+1 word attainedVBG~jt?NN~jtؿi+2 word bombshellPDTuVտRBK7A?JJCli word contraceptivesVBZ1ZdNNS1Zd?!i-1 tag+i word -START- complianceNNCl?NNPCli word tailspinJJ/$NN/$?i word increasinglyRB(\?NNP(\ҿi+2 word sacksVBZ?5^I NNS ףp= JJ?5^I NNFx? i word lancetUHENNPE?i-1 tag+i word NN compoundJJX9v?NNX9vi-1 tag+i word JJR leaksNNSsh|??NNsh|?i+2 word salvadoranVBZ-NNS-? i+1 word bullVBG$CJJQ?NNh|?5i+1 word difficultyVBDףp= ?JJSCl?RBSClVBNףp= "i-1 tag+i word -START- researchersNNPS㥛 NNS&1ڿNNPS㥛@i-1 tag+i word NN plantsNNPS|?5^ڿNNS|?5^?i-1 tag+i word NNS tellVBZd;OVBPZd;O?i-1 suffix cdsVBPףp= VBN(\VBD333333?i-2 word family JJR|?5^?RB @RPrh|VBvVBG rVBDOnWDT$CۿINK7A?NNSףp= ?VBZףp= ӿJJMbNN333333?VBP!rhi-1 tag+i word JJ dishNNˡE?JJˡEĿi-1 tag+i word , cairenesNNPSS㥛?NNS+NNPi-1 word observationsRBˡE?INˡEԿi-1 tag+i word NN capitalizedVBZ/$VBD/$? i word daysNNPS?NNPi+1 word condemnsRB-?VBD-i-1 tag+i word VBN repeatedlyNN rhRB rh?i-1 tag+i word VBP targetingVBGzG?NNzGҿ i-2 word khanRB-?NNP-i-1 tag+i word RB targetedJJ$C?VBN$Cۿi word earnestNN'1Z?RBRnJJSX9vJJ/$?i-1 tag+i word RB announcedVBN"~?JJK7AVBDrh|?i-1 tag+i word NNP guerrillasNNS r?NN r i suffix silJJ ףp= ?NN ףp= i-1 tag+i word NNP rheingoldNNPSZd;NNPZd;? i word gainNNl@VBN!rhVBPSJJˡENNSZd;NNPzGVBʡE@i-1 word carewVBDB`"?VBZB`"?VBPB`"INB`"i-1 tag+i word -START- appleJJ;On$L7A`RBffffffƿNNPE@i-2 word lawsuitVBNbX9?JJbX9 i word scriptNNS"~jNNFx@JJ/$i+1 word originatingVBK7?VBZK7ѿ i suffix bJJSYMK7?RBʡEi-1 tag+i word , helpedVBN?5^I VBD?5^I ?i-1 word pretrialVBGMbX9NNMbX9?i-1 tag+i word JJ centersNNPףp= VBZZd;NNPSMb?NNSV-i-1 tag+i word NNP electronicsNNS1ZdNNPK?NNPSMb? i-2 word boutNN/$?JJ/$i-1 word walkedRP= ףp=RB= ףp=? i word imaNNPS +NNK7NNP(\?i-2 word albertaIN/$@CC+NNGzi-1 word freshnessVBZE?NNSE i word baitNNS rhѿNN rh?i-1 tag+i word JJ confinementJJˡENNˡE?i-1 tag+i word PRP$ czechNNPMbX9ĿJJ5^I ?NNQi-1 word exactlyRBʡE@IN`"JJ +VB/$NNn?i-1 tag+i word DT columnistNNK7A?JJK7A i suffix 983CDS?NNPSi-1 tag+i word NN treesVBZK7NNSK7?i-2 word reporterNNPn?JJPni-1 word championNNjt?JJjti-1 tag+i word CC sterlingNN(\?JJZd;OݿNNP$Ci-1 tag+i word IN shorelineNNZd;O?VBZd;Oi-1 tag+i word : exceptCCsh|?INsh|??i+1 suffix leeNNPS?JJ(\ڿNNPRQ i-2 word nvRBClINCl?i-1 tag+i word RBR befittingVBG/$JJ/$?i-1 tag+i word TO readVBsh|??NN/$JJ'1Zi+2 word montbrialVBPp= ףNNPp= ף?i word catastropheNNSMbX9NNFx@JJClNNPV-i word garbageNN?JJMbX9NNP r?i-1 tag+i word RB concedeVB|?5^?VBP|?5^i-2 word representedVBNJJ?i+2 word terminalsJJˡE?RBˡE i+2 word metNNPˡE?NNPS?NNZd;VBDʡEVBPL7A`пJJ ףp= VBZʡE?NNS333333?i-1 tag+i word RBR inspiringVBGʡEJJʡE?i-1 suffix lawVBDMb?POS^I +VBPy&1?VBy&1VBG&1?JJB`"VBZS?NNPSlNN(\?NNSS㥛ؿNNPT㥛 RBB`"?PDTʡEVBNZd;O?WDT%C?INnDTSӿ i word rosyVBPK7A`ݿNNSuVJJK@NNDli-1 word welfareVBNK7NNK7?i word thursdaysNNPS;On?NNS$CRBNbX9NNP|?5^ٿi-1 tag+i word PRP$ emeryNNq= ףpNNPq= ףp? i word spunJJR/$VBDB`"?VBPB`"VBN"~?JJZd;߿i+1 suffix rmoJJ(\VBD(\?i-1 word series NNPSoʡJJSX9vCD%CNNSx?NNffffff@VBDV-VBP?JJV-VBZ rhDT+NNPK7A`@i-2 word visitINNbX9ؿJJNbX9? i pref1 hCDX9vNNPSL7A`VBN9v@NNSX9v@NNPC-CC^I +JJR\(\@PRP$ +@VBG333333?VB%C?MD-ۿ''(\VBZq= ףp?PRP333333@VBPV-?RBRMb@INʡE6UHK7A`?FW+VBDB`"@WRBOnRBSMbX?JJ'1Z?POSRBʡE?JJStVֿPDT~jt @WDTmDTsh|??RPx&1NN@ i word windsNNS+?JJ+ i+1 word gapVBGw/?NNʡEӿWDTMbXJJZd;IN)\(DTn?i+1 suffix oss RP9v?RBRvVBN5^I @INnVBG$CNNPx?RBS?NNQVBDK7A`JJR{Gz?WDTClJJ%C?NNS)\(?i-1 tag+i word DT advertisementNNCl?JJCli tag+i-2 tag CC VBG NNSV-?RBA`"?NN%C̿JJq= ףp?VBG'1Z?VBN;On¿DTX9v?NNPGz߿VBjtRP$CVBDX9vJJSGzi-1 tag+i word VBG ballyhooedVBNQ?JJQ i suffix elmNNSx&VBʡE?NNx&?VBP(\?RBʡEVBZ(\i-1 tag+i word PRP feltVBP rhVBD rh? i+1 word ladyINMbX9?WDTMbX9JJsh|??NNsh|?տ i-1 tag+i word -START- freseniusNNP rh?NN rhi word elaboratingVBGQ?NNQ i+2 word packVBZB`"?NNPSClNNSB`"NNPCl?i-1 word slashedNNP-JJL7A`?NN+ӿi+1 word americanNNPSB`"VBDMbX9?VBP|?5^@IN"~@PRP$+?VB1Zd?VBZQ?NNPA`"VBGx?FWjt?WDTw/RB"~NNSQſJJtV@NN333333 VBNMbX9?LS-ӿDTMi-1 tag+i word -START- mciNNK7A`տNNPK7A`?i+1 word moranNNK׿NNPK?i-2 word healthyVBV-?NNClVBPQJJCl?VBZ$C˿NNSvi+2 word october VBJ +RBZd;ORBRʡE?NNPJ +NNPSbX9NNv/VBDMb?VBN$C?JJd;O?NNSbX9? i word weighsVBZMb@VB= ףp=JJA`"VBDˡEi word resigningVBGy&1?NNy&1i-1 tag+i word POS hopeVBP+NN+?i-1 suffix lonVBNQNN~jt?VBx&1i word telemarketingJJ/$VBG(\NNx&1?i+1 word tunnelsJJR/$NN/$?i-1 tag+i word RB outRPB`"ٿRBV-?IN5^I i-1 tag+i word IN ushaJJ rNNP r?i-1 tag+i word NNP sirensNNSq= ףp?VBZq= ףpi+2 word illuminatingVBNClѿJJMbX9?NNP~jt i word harassVBT㥛 ?VBP#~jNNQi-1 tag+i word TO auctionVB"~?NN"~i-2 word knowsRB%CԿCC^I +JJQ?i+2 word aflatoxinVBZzGҿNNSzG?i+2 word squareVB~jtпRBxINuV? i-1 tag+i word PRP$ consolidatedVBDA`"JJA`"?i-1 tag+i word CC refundingJJ'1Z?NN'1Zi-1 tag+i word IN desJJNbX9NNPNbX9? i word kellyRBX9vNNPX9v?i-2 word supplyingNNS{Gz?NN{Gzi+1 word edgedNN)\(?VBD)\(i word pigmentNNx&?JJx&i word inaccuracyNNSnNNn? i+2 word peerNNSB`"RPnJJB`"?RBV-INX9v?i-1 word remainingNNSh|?5NN#~j?JJM?VBDV-i+2 word countersNNSK7A`NNQ?RBDli+2 word relatingVBP/$?VB/$i-1 tag+i word IN whatJJV-NN{GzWPx&@DT\(\WDTZd;O?i word logisticsNNPSI +NNSV-?JJV-NNPI +?i-1 tag+i word IN expandingVBGT㥛 ?NNT㥛 i-1 tag+i word DT backJJ^I + @NNnRB1ZdNNPʡEi-1 word clipboardVBN rhVBD rh?i-1 tag+i word VBZ useVBOnVBPOn?i-1 tag+i word VBD propelVB}?5^I?NN}?5^I̿i+2 word yastrzemskiVBZClPOSCl?i-1 tag+i word MD launchVB1Zd?RB1Zdi-1 word jackalsVBP$C?VBD$Ci word alagoasJJV-ҿNNPV-?i-1 tag+i word NN papersNNPd;O?NNPSd;O޿i-1 suffix orpNNL7A`@JJL7A`i-1 suffix uinVBNS?NNtV?VBDK7i-1 tag+i word VBD outfieldVBNx&1NN)\(?RBRQi+1 word editorialJJuV?NNuVi-1 tag+i word -START- okobankNNV-NNPV-?i-1 tag+i word JJR confusingVBG|?5^JJ|?5^?i-1 tag+i word RB doubtVBn?NN~jt?RB(\JJoʡտi+2 word townsNNS㥛 VBNx?JJ"~j?VBDHzGi-1 tag+i word NNP writerVBZ\(\߿NN\(\?i+2 word quinlanJJGz?RBGz׿i-1 tag+i word POS airportNN~jt?JJ~jt i+1 word feelVBZ= ףp=NNPSA`"?NNS= ףp=?NNPA`"i word swallowedVBNQ?JJQi-1 tag+i word NN watchersNNSSNNPSS?i-1 tag+i word NN needsNNB`"IN&1VBZw/?NNSbX9?i-1 tag+i word NNP storesNNPEVBZV-ͿNNPSףp= @NNSp= ףi-1 tag+i word VBG sentJJ+VBDd;O@VBNK7 i suffix OESNNST㥛 ?NNPT㥛 i-1 tag+i word VB relatedVBNK?JJKi-1 tag+i word POS officialJJ"~j?NN"~j i suffix nwaNNbX9NNPbX9?i-1 tag+i word -START- simpleNNuV@JJuV i suffix lynNNnʿNNPn?i-1 tag+i word VBP convertibleNN(\ڿJJ(\?i-1 tag+i word CC advertisingVBGZd;NNZd;? i-2 word godNNST㥛 @JJR+?NNT㥛 RBR+i-1 tag+i word PRP$ arrestJJSпNN?i tag+i-2 tag `` TOVBPSJJ7A`NNSQNNPףp= ?VBq= ףp@VBGGz?NNq= ףpi-1 tag+i word CC operatesNNS(\VBZ(\?i+2 word awardNN㥛 ڿNNP/$?VBMJJFx?i-1 tag+i word IN insuringVBG-?JJ-ӿi+2 word recantedNNPʡE?JJʡE i-2 word madeVBGK7A`VBPZd;VBNZd;NNPK7A`?RBQNNPnVBZZd;?NNSn?RBRV-߿JJRx&1ؿDT/$?VB/$ @VBDHzGJJm @ i-1 word twNNS+NNP7A`NNPSjt@RB}?5^I?NNMbX?JJ9vVBZS㥛?i+2 word motorolaNNSlNNl?i-1 tag+i word JJR sugarNNSHzGNNrh|?JJ'1ZԿi-1 tag+i word VBZ japaneseVBPV-JJV-?i+2 word postponedNNPMbVBGMb? i suffix nse NNPS +RPClRBw/JJd;O@NNS rhVBtV?NNB`" @JJRT㥛 VBPbX9?VBZh|?5NNPMbX9 i word stuntNNK?JJK߿i+1 suffix nkaRBףp= NNPףp= ?i-1 tag+i word VBZ thinkingVBGK?NNK i word sonataNN{Gz?NNPK7A`NNPS{GzԿ i word sciNNP?CD i word sedansVBZ ףp= NNPS~jtNNSZd;?i-1 tag+i word MD loseVBl?RBli+1 suffix akeJJSHzGWDTV-@VBZjt JJ-?NNK7A RBK?INMNNSd;O@VBv/POS(\PRP?5^I ڿDT/$?NNPV-?NNPS?5^I VBN}?5^IVBG-?i-1 tag+i word NN citedVBNp= ףJJrh|VBDMb?i-1 tag+i word PRP overwhelmVBZ(\VBP(\?i-1 word turningNNS"~jVBV-RPp= #@RBFx?JJ"~j?INX9vi-2 word appellateNNx&@VBD-?VBGX9vVBNx&i-1 tag+i word DT demonstratorsNNS5^I ?NN5^I i-1 tag+i word JJ lightNN9v?JJ9vʿi+2 word wantsDTq= ףp?NNPS"~j?NNSDlRBRQNNPB`"ѿi-1 tag+i word NN labsNNT㥛 NNS|?5^?RB'1Zi-1 suffix xtyNN?CDi-1 tag+i word JJ investmentsNNS|?5^NNP|?5^?i+2 word woebegoneVBMb?NNMbпi+1 word awardJJL7A`?NNL7A`ؿi+2 word talkedVBZ|?5^?VBP|?5^i-1 tag+i word NN !HYPHEN VBNy&1CD)\(?INlVBZZd;OJJRw/RBףp= @NNDlVBD?5^I ҿNNPMbXVBG+?JJjt?NNS= ףp=i word institutesVBZ= ףp=NNPSn@NNSsh|? NNFx @NNPli-1 tag+i word , miredVBNS?VBDSi-1 tag+i word PRP$ gloomyJJV-?NNV-i+2 word statutesCD(\JJS㥛?NNPCl˿i word collegesVBZ'1ZNNPS"~jܿNNS'1Z?NNP"~j? i+2 word wakoNN(\?JJ(\i tag+i-2 tag : NNPRBbX9VBP`"?WDT rh?NNP7A`DT}?5^I?CD'1Z?NNPS9vRPClVBDbX9?RBRbX9PRP$|?5^ʿJJV-?IN1ZdJJRbX9?NNSQ?VBd;ONNZd;OVBN rhVBZ rh?i-2 word housecleaningVBGS?NNSi-1 tag+i word -START- privateVB +JJ`" @NNNbX9NNPmi-1 tag+i word -START- vanguardNNV-NNPV-?i+1 word flickeredNNS?RBi word galleryRBClNNCl? i+1 word bitJJCl?NNCli-2 word kickbacksNNSQ?JJSQi-1 tag+i word IN shadyJJPnNNPPn? i word oceanJJSʡEJJm RBʡE޿NNP/$ @NNMb?i-1 tag+i word VBN staffsNNS+?VBN+i word processedJJK7AVBDh|?5?VBFxVBNx&1?i-1 tag+i word DT sharpshooterNNZd;NNPZd;?i+1 word frontRBjt?JJy&1?NNy&1̿INjti tag+i-2 tag CC WDTNNS|?5^?VBZ|?5^i-1 tag+i word IN hcfcsNNSx&?NN)\(ԿNNP&1i-1 tag+i word RB hogVBP?5^I NN?5^I ?i-2 word approvalsJJn?RBni-1 tag+i word IN californiansNNPSZd;O?NNPZd;O i-1 word petNNSGz?NNGzi+2 word losses VBDZd;@RBRпJJR?NNPB`"RP= ףp=JJ +޿INMb?VBNSVBP"~RB|?5^@DTMbVBrh|NNA`"ӿi-1 word robinNN$CNNP$C?i-1 word vogelsteinVBDS㥛?JJDl?RBDlNNS㥛 i word sharpNNP(\JJ(\?i-1 tag+i word , highlightedVBNS㥛?JJS㥛i+1 suffix ata RBRHzGVBP rhJJRHzG?NNPS^I +?NN#~j?VBNZd;?JJy&1NNPʡE?VBGZd;O׿VBDffffffi-1 tag+i word VBN !HYPHENNN"~jԿVBN1ZdCD#~j?JJK7NNS~jtNNPx&?VBGV-?RBJ +? i+2 word ford NNPS +VBDS㥻?VBN~jt?INZd;JJ?VBG{GzNNP+@VBjtRPJ +?RBS㥛NN?RBRNbX9?i-1 tag+i word JJ openedVBNv?NNvi-1 word accountantsVBNA`"VBDA`"?i+1 suffix eleVBGn?JJFxNNS㥛i-1 suffix yed JJ~jtNNʡE?VBDCl?RBxINn?JJRSRPˡE@VBN&1?RBRm?VBPK@NNSSi-2 word rubicamRPJ +?RBJ + i word nakedVBNPnJJʡE?VBDffffffi-1 tag+i word `` taskNNK7?JJK7i-1 tag+i word -START- craigNN|?5^NNP|?5^?i-1 tag+i word -START- bigVB/$JJCl?NNP333333i word depositNNPS^I +NNZd;@JJJ +NNP~jt i-1 word feltJJ +?JJRJ +RB +RBRJ +@i-1 word chauvinismJJQ?NNQi-1 word offeringNNPSV-?RBxNNS?WDTn?JJbX9?INnNNPV-VBA`" i suffix boxVBDClNN?FWV-i-1 tag+i word DT methaneNNv?NNPvi+1 word manhattanRBK7ANNPd;O?VBQݿJJ+?NNX9v?JJRRQi-2 word sightJJPn@NNPni+1 word prosecutorsVBP&1?JJ333333?NN rhINv/ͿVBD&1ڿi+1 word prematurelyNN/$?JJR"~jJJ/$տi-1 tag+i word JJ bikeNN+?IN+i-1 tag+i word VBP sometimesVBGZd;ORBZd;O?i-1 tag+i word , unclaimedVBN&1ʿJJjt?VBDrh|i-2 word luxuryVBNRQ?JJRQ i+1 word pactNN㥛 VBDw/VBNS@JJq= ףpNNS"~j?NNPjt?VBGMi+2 word canadaNN|?5^ɿVBDOn?VBN/$RBPn?NNS?NNPףp= NNPS;OnJJPni+2 word looseINuV?DTuVNNSZd;?NNPZd;߿NNn@VBPʡEۿPRP\(\RB(\i-1 tag+i word NNS absorbedVBN rh?VBD rhi-1 word fisherVBPT㥛 NNPT㥛 ?i+1 suffix altNNE?VBDv/VBN +JJK7A`?NNPv/?VBGMbi-1 word leadersVBN~jtVBP rh?JJzG?NNSrh|߿NNPmRBzGếVBDq= ףp@ i suffix SisNNB`"NNPB`"?i-1 tag+i word VB gardenVBNQNNQ?i-1 word pumpingIN'1ZRP'1Z?JJzG?NNzGڿ i word runnerNNV-?NNPrh|?RBRDli-2 word millerDTZd;?JJ ףp= ?NN ףp= INZd;i-1 tag+i word IN potatoesNNSK?JJK׿i-1 tag+i word CC amahsNNSS㥛?VBDS㥛i-1 word lastedJJR^I +RB^I +?RBRy&1̿i-1 tag+i word IN horsesVBZ|?5^NNS|?5^?i-1 tag+i word DT armenianNNPuVJJuV?i-1 tag+i word `` topJJ"~?NN"~i-1 tag+i word JJ distractingVBG+?NN+i+2 word riskedJJx&1?NNx&1i word explicitlyVBjtRBjt?i-1 tag+i word VBN flashyJJ!rh?NN!rhi-1 tag+i word JJR mailNN~jt?JJ~jti word commissionerVBPQNNQ?i-2 word axiomsNNSA`"NN|?5^?NNPoʡVBP rhi-2 word brockvilleRBQINQ?i+1 word sharonVBV-?VBGV-i+1 word adornedJJGzNNB`"ѿNNSM?i word europeanNNPOnNNSjtJJt @NNT㥛 CD~jti-1 suffix dieNNPK7A`?NNPSbX9NN+i-1 word howardVBZL7A`NN"~?NNP&1 i-2 word dryNNS+?NN+i+2 word cairoi+2 word kenoshaVBNtV?VBDtVi+2 word cripplingINL7A`?NNPL7A` i suffix ten VBNQ@INףp= NNP"~jNNxFW#~jRBR#~jLSp= ףRBQ?JJRh|?5VBMbX@JJHzG?VBP(\?i-1 tag+i word NNP assistantVBP\(\NNbX9?JJ1Zd i word lotsINp= ףVBD+NNS`"@NN~jti+1 word federalRBMbDT%C @NNPjt@WDTClVBD1ZdINq= ףpVBZuV?VBS㥛NN/$NNS}?5^IVBGjtVBNCl?JJRS㥛?JJy&1i-1 suffix guyVBv?NN +VBD\(\i+2 word arizonaVBnNNPn?i+2 word department NNPSJJMbX9ܿVBZZd;NNPjt?VBy&1VBGw/?NNClVBNS㥛?VBPv/?NNSZd;? i-1 tag+i word NN uncollaboratedJJ333333?VBD333333i-1 word joiningNNPOn?IN +CDDlJJPnWP +?i+1 word anticipationVBNx&1JJx&1?i-2 word filersVBP1Zd?VBD1Zd i word bullNN@JJQٿVBD$CNNSh|?5i-1 word freezeVBNtVJJtV?i word fidelityJJ$CNNS㥛NNPjt@i+1 word somewhereVBN rhݿVBD rh?i+1 word income NNvPDT"~jVBNh|?5IN333333NNPT㥛 ?VB333333VBG ףp= JJRn?VBPGzJJV-@DTNbX9@NNSd;Oi word prohibitsVBZ#~j?NNSQVBDZd;Oi-1 tag+i word , buildVBMb?UH= ףp=NNv/i-1 tag+i word NN dynamicsNNSMNNPM?i-1 tag+i word WP runVBMbXVBPMbX?i-1 tag+i word FW noDT+RB+?i+2 word wiringNNI +NNSI +?i-2 word disclosedVBZbX9?NNGzֿPOSbX9CDX9v?RBX9vINGz? i word maulVBD+VBDl?VBPQi-2 word fueledINy&1?WDTy&1JJNbX9?NNNbX9i-1 tag+i word -START- likelyJJT㥛 ?RBT㥛 ؿi word departingVBGw/?JJw/i+1 word gimmicksJJRMbX?NNh|?5޿JJ{Gzܿ i word stereoNNK7?JJM?VBD%CVBv/NNS5^I  i+2 word dutyVBN^I +JJZd;OVBZV-NNSV-?RBV-?NN(\VBDGz? i suffix mmyNNX9vFW/$VBPw/ܿJJ!rh?VBZ!rhNNP/$?RB/$ٿi-1 tag+i word -START- centralJJZd;?NNPZd;i-1 tag+i word -START- marketsNNSjt?NNPjti-2 word antagonistsVBN!rh?VBD!rhi+1 suffix sitVB rhѿNNvPRP$Zd;JJK7?INtV@NNPbX9i+2 word liquidVBG ףp= NN\(\ϿCDzG?i-2 word hypoglycemiaNN333333?VBG333333RBR)\(?RB)\(i+2 word malcolmVB+VBP r?JJuVi word goodmanPOSNNP?i-1 tag+i word NNP concludesNNVBZ?i-1 tag+i word NN namingVBG&1?NN&1ҿi word liberalVBPHzGJJI +?NNFx?NNPK7i-1 tag+i word NNS archVBP㥛 ?NNS㥛 i+2 word residualVBZ+?VB+i-1 suffix onoFWx&NNl?NNP#~ji-1 tag+i word , electronicsNN= ףp=NNS= ףp=?i-2 word switzerlandRBStV?CDZd;O?JJStVNNPZd;Oi-1 tag+i word DT strangerJJR= ףp=NN= ףp=?i word lesutisNNzGҿNNPzG?i-1 tag+i word DT israeliNNPS|?5^JJsh|??NNPx&1ؿ i+2 word sexRBʡENN|?5^?JJ|?5^ٿVBNʡE?i-1 word trainingJJGz?NNGzi-1 tag+i word VBP unlikelyJJK7A?RBK7Ai-2 word invitationVBm?NNmi-1 suffix nnyNNPS~jt?NNnҿVBP+JJNNSM@NNP/$i+1 word headlightsJJQ?VBDQi-1 tag+i word VB serveNNKVBK?i-1 tag+i word ( ballooningVBG-NN-?i+2 word exaggeratedVBzGVBPzG?i+1 word shiftedVBD5^I ˿NNPSףp= NNK?i-1 tag+i word RB afraidVBN9vJJ9v?i-1 tag+i word JJ financialJJףp= NNPףp= ?i+2 word realitiesVBy&1JJy&1?i-1 tag+i word NN overheadJJZd;?RBZd; i suffix 4-1CDS?JJSi-2 word investigatingJJB`"?NNB`"i+2 word signatureNNPS rh?NNP rhi word believerNN?RBٿ i suffix NODTT㥛 UH(\@RB~jt?NNPZd;Oi-2 word approximatelyNNSGz?NNGzi word tumblingVBG @NNGzJJGzi-2 word springRBK7?NNT㥛 пVBZ5^I i word yasumichiNNSʡENNPʡE?i-2 word minpecoVBNL7A`?NNGzNNPVBD9v@NNPS?i-1 tag+i word NN spraysVBZV-NNSV-? i suffix SFENNPSZd;NNlNNP rh?i+1 word shearsonIN5^I ?VBNx&1пJJQVBDK?i+1 word lawrensonNNPSX9vϿNNPX9v?i tag+i-2 tag TO JJWP= ףp=?JJR5^I ?NNP-VB|?5^?VBDQVBN{GzWDTV-CC%CJJSGz޿VBP-VBGX9v?IN~jtRBR r?NNS~jtCD rhտJJv?NNsh|?RB r?DTl@i-2 word burblesJJRffffffNNffffff?i-1 tag+i word IN halvedJJ(\@JJRjt޿NN7A`ҿVBDQVBNvCDffffffƿi-1 tag+i word DT bestJJSrh| @RBSv?JJ&1NNNbX9NNPI +i-1 tag+i word DT physicianJJ-NN-?i-1 tag+i word NN prosecutorsNNSx&?NNPx&i+1 word foodsJJDlѿNNP/$?NNPSV-ҿNN/$VBD㥛 VBNZd;?i-1 tag+i word CC nonethelessJJSI +RB1Zd@JJFxIN+i-1 word explainedRBd;ORPd;O?i-1 tag+i word VBZ confinedVBNGz?JJGzοi-1 word transgenicNNPSZd;?NNPZd;i-1 tag+i word TO whateverWDTʡE?WPʡE i word suitorNN= ףp=?JJvVBNK7A` i word jetsNNPSX9vNNSX9v?i word disappearsNNSVBZ?i-1 tag+i word IN geneticallyRB= ףp=?NN= ףp=i-1 tag+i word DT spanishJJ?NNPi+2 word anotherDTT㥛 ?NNSGzVBX9vNNw/?VBNB`"?VBPVBGL7A`VBDJJOn?RB%C?WDTIN&1RPˡE?NNPX9v@i-1 tag+i word CC holidaysNNSCl?RBClѿi-1 tag+i word VBG stripesNNS)\(?JJ)\(i-1 tag+i word , stepVB +?NN +i+1 word incorporatedNNS(\?VBN(\i-1 tag+i word CC cutVB333333?VBG~jtVBNV-?VBD~jti tag+i-2 tag ) NNP VBDV-?VBNp= ףVBPGz?RBq= ףpIN5^I ?VB= ףp=JJ-NNX9vVBZK?NNSv/NNPMbX9? i word kiwiNNGz?JJGzi-1 tag+i word DT fierceJJ;On @NN;On i+2 word gearNNK7@JJS㥛NNPmi-1 tag+i word NNS bareVBPw/JJw/?i-1 tag+i word IN peerlessNN|?5^ɿRB?5^I ¿JJS?i-1 tag+i word NN doseNNM?RBMi-1 tag+i word VB offsetVBQ?INQi word underfundedVBN+?JJ+i+1 word mightNNPy&1VBG(\IN-VBP(\WDTʡE @EX1Zd?RBMbX?NNS rh?JJ?5^I ¿WPQ?NNPSx&1?CDSVB1ZdNNZd@VBZV-DTQi-1 tag+i word NNP recountsNNSV-VBZV-?i-1 word frolickedRBR)\(?JJR)\(i-1 tag+i word -START- laterNNSRBRMb?RBMbX9?NNPK7i tag+i-2 tag WP CCVBZ/$INOn?NNS/$@RBOnVBD i word itelDTV-NNPV-?i-2 word plungeVBZ rhDT5^I @VB rh?CDMbX?WDT'1ZJJMbXINףp= i word cooperateVB9v?NN9vi+2 word gesturesJJʡE?NNʡEi-1 tag+i word NN tumorJJ= ףp=NN= ףp=? i+1 word co.NNT㥛 VBNʡEJJ;On DTZd;ONNSzGNNPp= ף@MDn@NNPS= ףp=@i-1 tag+i word NNS stinkVBP +?NN/$JJy&1i-1 word pointingRPn?INnѿi-1 tag+i word VBD boughtVBNm?VBDmi-1 tag+i word RB unregulatedVBNuVJJuV?i+1 word listeningNNS+JJ333333?NNw/ܿi-1 tag+i word POS !HYPHENNNP7A`VBGOn@NN%C?JJSrh|JJR?5^I ҿCDT㥛 JJE@NNSSÿi-1 word collectingRP+JJMb?NNMbIN|?5^RB/$@i-2 word hammersteinRB rh?JJ rhi-1 tag+i word VBD bestRBB`"ٿRBS rh@JJSI +VBNS i word oregonNNE?JJ㥛 ڿNNP+NNPS rhi+1 suffix uptRBSMb?JJSMb i+1 word cupNNNbX9VBGV-JJ-@ i+1 suffix ca NNSm?NNPS5^I ?NNuV?CD-WDTS㥛?PRP-@RBMJJZd;OVBZB`"DTS㥛i-1 tag+i word VB poisonNNS/$NN/$?i-1 tag+i word NNP doesVBZZd;O?NNPZd;Oi-1 word merelyVBxJJ+?VBD+?VBNw/ܿVBPp= ף?RB+i-1 tag+i word CC togaVBZvVBffffffֿNNA`"?i-1 tag+i word VBZ readyVBNvJJv?i word restructuringVBGQNNnJ@JJX9vi tag+i-2 tag VB VBGRPX9vJJףp= ?JJR~jt?RBRMRBV-ϿIN-?i-2 word cuttingJJ+@RB= ףp=VBGjt?NNjtNNSsh|?i+1 word cancersJJ?5^I NN?5^I ?i-1 tag+i word TO witVB%CNN%C?i word uprisingVBGMbNNMb?i-1 tag+i word POS onceRBJ +?JJJ +i-1 tag+i word POS littleJJ9v?JJRbX9RBl?i+1 word marginsNNSX9vVBG}?5^I?NNX9v?JJ#~ji-1 suffix nlyVBN rhINPnпVBGK7?NNK7A`PDTMb?PRP +VBZK7A`@DTI + VBD)\(?CDS㥛VBPZd;O@JJKWDTffffffNNSHzGNNP= ףp=ʿVBMbX?NNPS(\?RB?i-1 tag+i word CC henceVBZ}?5^IVBOnRB @NNINGz޿i-1 tag+i word DT motionJJmNNm?i-1 tag+i word POS troopsNNS%C?NN%Ci-1 tag+i word JJ formulaVBNV-NNV-?i-1 tag+i word WDT neitherRB\(\CC|?5^DTI +?i-1 word ancientJJffffff?VBDffffff޿ i word hogsNNS@NNZd;NNP/$i+2 word progressVBD+?PDTʡE?RBRV-?VBP"~RBV-DTʡEͿNNx&? i word titleNN@NNSw/JJClRBV-ݿINrh|i-1 tag+i word JJ revisionsNNS-?NN-i-2 word director NNPSHzGVBN^I +NNS|?5^NNP㥛 @VB7A`VBGSNNE?VBD^I +?JJ~jt?i-2 word ownerJJ$C˿NNPQ@VBNZd;ONNx&1VBDZd;O?i-2 word bottleVBL7A`?NNS?5^I NNrh|߿i-2 word violettaVBGK?JJNbX9RBS?NNʡE?i-2 word nursedRPS㥛ĿRB~jt?VBD(\i-1 word recoupDTK7?PDTd;OοIN~jti-1 tag+i word : postedJJnVBDQ?NNPZd;VBN'1Z?i-1 tag+i word RB half VB!rhDT/$?PDTzG?CDQVBPoʡտJJDlVBZh|?5RB7A`?NNl?i+1 word listedVBG~jtӿJJx&1?NNSſRB333333ÿNNSʡE?NNPʡEi+2 word burdensNN1ZdVBD1Zd?i-1 tag+i word VBN unsignedVBNRQJJRQ? i suffix ave VBZClNNPp= ף?JJxCCnJJR7A`VBP-$@IN$CNNS?5^I VBK7 @NNV-VBDMbX9RB+i-1 tag+i word PRP rodeVBZS㥛ؿVBDS㥛?i-2 word creamyVBNGz?NNGzi+1 word microphoneNN333333JJ333333?i word routineVBPoʡNNCl RB9vJJnJ@VB/$i+1 word missingVBNS?VBDSi-1 tag+i word TO loosenVB/$?NN/$i+2 word hopesNNS-?NN- i-1 word bellNNPS~jt?VBGRQ?JJNNRQNNPli-1 tag+i word NN fireWDT+NN+?i-1 suffix /uaNNP㥛 NNPS㥛 ? i-1 word itelVBG/$?NN/$i-1 word considerJJNbX9?INmݿDT1Zd?NNP5^I ?NNPS$CVBGQ?RB;OnNNCli-1 tag+i word VBD firmerRBRzGVBN"~j̿JJZd;OJJR\(\?i+2 word testsNNPS?VBG+NNx&JJQ@NNSNNPQۿi word triumphedVBNMVBDM@i word devastationNN/$?NNP/$i-1 tag+i word VBG yetCCQ?RBQi+2 word contemporaryVBZ+?NNSGzNN+JJ}?5^I?i+1 word wondersPRPd;ONNT㥛Ġ@CDMi+1 word editorNNJ +?JJx&1RB&1i-1 suffix hawNNPSʡENNPʡE? i suffix BayNNV-?NNPNNPSbX9i-1 tag+i word NNP protectsVBZrh|?VBPrh|i+1 word octoberINsh|?@JJ`"ֿVBP+?RBSNNni-2 word performerNNP+VBNZd;JJ+?VBDZd;? i-2 word litNNSClNNPףp= NNPSDl@i-1 tag+i word DT putVBDy&1?VBZDlNN +οi-1 tag+i word NNP ezekielNNX9vNNPX9v?i+2 word mixedVBGףp= DTWDT?NNףp= ?i-1 tag+i word IN severeJJOn?NNOni-1 word marcorNNPSX9v?NNPX9v i suffix eas RB+N@NNSF@NNP"~jJJ/$?VBDK7A`PRPZd;NNnVBPINx?VBZ+VBZd;ONNPS-VBGh|?5i+2 word deregulateRPtV?RBtVi+1 word nathanNNRQNNPRQ?i+1 word movieVBGSJJ/$?NNGzi+2 word wendyNNSCl?VBNClѿi-1 word edgingRPT㥛 RBR|?5^?RBT㥛 ?JJR|?5^i word sandwichNNSQNNjt?JJMbXi-1 tag+i word NN replacedVBZ+VBD+?i-1 tag+i word DT youthNNX9v?NNSX9v i-1 word busRPSINS?i-1 tag+i word NNP hocNNPS;OnNNP;On?i+2 word defensiveRPS?INSۿi-2 word euromarketJJX9v?NNPX9v i word grindsNNSjtVBZjt? i-1 word autoNN(\VBZ9vNNSx&1?NNPy&1NNPSn?VBG7A`i-2 word reconstructedNNSS?NNSi-1 tag+i word DT stimuliNN!rhJJHzGѿNNSbX9?i-1 tag+i word , bassVBZd;ONNZd;O?i+1 word leaveNNPSʡENNSn?RBoʡi-1 tag+i word DT newportNN ףp= NNP ףp= ?i word eyeglassesVBZʡEݿNNSʡE? i+2 word cureNN9vNNS9v? i-1 word punkVBZ+߿NN+? i word dandyVBMbJJMb?i-1 word canadaNNPS"~j?NNP"~jԿi+1 word surgeonVBPrh|NNrh|?i-1 word broadstarNN rhտNNP rh?i-1 tag+i word NNS calledVBPClٿVBN?VBD/$i+2 word minersVBw/NNPw/?i-1 tag+i word JJ hospitalNN~jt?JJ~jt#i-1 tag+i word -START- establishingVBGMb?NNPMbi-1 word sheetsJJ@RBi word accountingVBGv/NNq= ףp@JJMb NNPy&1@NNPSi word sleddingNNM?JJMi+1 word seniorityJJR㥛 ?RBR㥛 ڿi-1 tag+i word DT longestJJS5^I ?NN5^I i-1 tag+i word CC humanJJ^I +NNP^I +?i-1 tag+i word NN surveysNNSA`"?NNA`" i word bloodINV-NNSNbX9NN(\ @JJ/$VBDʡEi-1 tag+i word POS lesterJJ"~jԿNNP"~j?i+2 word financiallyVBV-?NNV-i-1 word carolNNjtܿNNPjt? i+1 word jarsJJ^I +?RB^I +׿i-1 tag+i word VB educationalJJd;O?VBNd;Oi+1 word evidentVBPQ?RB㥛 ?JJoʡi-1 word buying VBA`"?RPM@NNNbX9?VBDOnۿINL7A`?NNS|?5^ɿJJnRBR)\(VBNOn?RBMJJR)\(?i+1 word broncosJJn?CDn i+1 word seaNNʡEVBD}?5^I?VBN}?5^IԿJJMbXٿNNPMbX?VBGʡE?i-2 word turbanVBZ(\@NNS5^I ۿVBNʡERBMbi+2 word bearishRB|?5^JJRQ?JJX9vRBR"~jܿi-1 tag+i word IN privilegeNN/$?NNP/$i-1 tag+i word IN recordsNNSrh|?NNrh|i-1 tag+i word `` worthINuVVBOnNNMb?i+1 word fearsomeVBZ ףp= ?NNSGzNN+i-1 tag+i word NN illustratesVBZx&?NNSx& i-2 word am VBK7JJoʡ?NN ףp= @VBD~jtCD;On?WDTv/?PRPFx?INT㥛 ?NNS;OnVBNClRB{Gzi+1 suffix ltvNNPMbXVBNtVJJMbX?INtV? i word cloakNNSNbX9NNNbX9?i-1 tag+i word RB cruelJJp= ף?NNp= ףi-1 word hopkinsJJ/$NNP/$?i-2 word manvilleVBGI +ֿNN/$?JJFx?i-1 tag+i word POS hugelyRB~jt?NN~jti tag+i-2 tag IN (NNHzG?PRPzG?JJjt?NNS rNNPV-׿PRP$zGi-1 tag+i word -START- repeatTOZd;ONN)\(?NNPS㥛i-1 tag+i word DT taiwaneseJJQ?NNPQ޿i-1 tag+i word TO keepVB+?NNP+i-1 tag+i word RP overRBzGINzG? i suffix V-BNNPK7A`NNS'1ZNN@JJrh|i+1 word sourceJJRClJJK7VBNffffff?NN{Gzt? i word owningNNS@JJٿRBOnVBGףp= i word make VBGףp= NNmVBDzGVBPV-@VBZx&1VB(\@JJK7A`RBh|?5NNPMbX?i-2 word convinced NNPKRB(\@WP+?JJRSNNSQ@NNV-WDT+JJ1Zd?INi-2 word saladVBN!rhJJS?NNPnVBD;Onڿi word citizenNN\(\?JJ\(\i+1 word reformNNS-?NNP-PRP$ףp= NNPSv/?NNA`"?VB r?JJsh|?ݿi-1 tag+i word CC imperfectVBʡEտJJʡE?i+1 word lagoonJJjt?NNjtֿ i word prisonVBoʡNN?5^I@JJ!rhi-1 tag+i word VBG prolongedVBNlJJw/?VBDbX9i-2 word trendsJJ{Gz?NNS㥛RB-ӿNNP/$ƿ i+2 word jpNNOn?RB`"JJy&1̿i word captainVBPV-?INV-i-1 tag+i word `` aerospaceNNx&1?NNPx&1i-1 tag+i word CC ridersVBZv/NNSv/?i-1 tag+i word RB assumeVB~jtVBP~jt?i-1 tag+i word IN veryRBK7A`?NNK7A`i-1 tag+i word IN completingVBGv?JJv i word q45VBZ~jtNNP~jt?i+1 word videoJJw/?NNClۿCDQ i word placedVBZjtNNbX9VBNZd;O @JJjtVBD= ףp=?i-1 tag+i word VBD virulenceNN9v?NNP9v i word turbanJJMbNNMb?i-1 tag+i word NNS winINRQVBFx?VBP9vi+1 word distributionsJJx&1?VBDx&1 i suffix urfNNS`"NNDl@JJ-?INM¿NNPV-i-1 tag+i word VBG aromasNNKNNSK7?RPQ i-1 tag+i word POS overregulatedVBNuVJJuV?i word plaguedVBZ㥛 VBD㥛 ?i-2 word johnsonVBNK߿VBDK?i-2 word particularVBGS㥫NNS㥫?i-1 tag+i word , workingVBGCl?RBCli+2 word chickensJJSGz޿VBGz?i-1 word heredityNN$CVBV-VBP?i word detroitNN/$NNP/$?i+1 suffix joyRBJ +?VBD}?5^I?VBN}?5^IWDT"~j?JJJ +IN"~ji word eurobondNN?NNPi-1 tag+i word CC stadiumsNNS\(\?FW\(\i-1 word compellingNNSSNN rJJS?i word declineVB~jt?NNS㥛@VBDzGJJR7A`CDZd;VBPK@VBN㥛 JJ-i-1 tag+i word NN farmsVBZjtNNSjt?i-1 tag+i word CC lackingJJ%CVBG%C?i+2 word national NNKLSFxٿVBZ1Zd?RBK7NNPSK7AVBGx?VBDzGVBNS@VBPK7?JJ5^I NNSK7A?VBp= ףNNPI +?i-1 tag+i word `` busterVBPrh|NNPrh|?i-1 tag+i word NNP universeNNʡE?NNSʡE i suffix -44NNP/$ÿRB#~j?JJ}?5^Ii word lobbiedVBNZd;?VBDZd;i-1 tag+i word JJ englishmanNNPS?NNSi+2 word requisiteNNA`"?JJA`"ۿi-1 suffix rmoVBG)\(NNP)\(?i-1 tag+i word IN boldJJR`"޿JJ`"?i-1 tag+i word JJ appearingVBGףp= ?NNףp= i word skepticalINv߿JJv?i-1 word holdingRP9vRB(\?INKNNPQ?NNPSQi-1 tag+i word IN diagnosticJJ"~?NN"~ҿi word cheaperRB7A`NN|?5^VBD(\JJRGz@RBRp= ף@JJi-1 tag+i word POS parentNN+JJ+?i-1 tag+i word DT worseNNEJJRE?i-1 tag+i word IN retreatNNSQNNQ?i-1 tag+i word -START- hogsNNS@NNZd;NNP/$i+1 word sentencesJJQ?NNQi+1 suffix lem NN@VBNZd;O?VBZI +DT@NNSw/PRP$S?NNPSEпINw/NNP^I +RBA`"JJMbi-1 tag+i word DT multipartyNNK7?JJK7i-1 tag+i word CC agreedVBNE?VBDEi-1 tag+i word JJ adiaNNP"~?JJ"~i-1 suffix dr.JJffffffNNPffffff?i-2 word producer NNPSOn?JJR?RBRxNNPCl?NNʡE?FW&1ҿIN rhVBZпNNSʡEi-2 word swapsNNZd;?JJZd;i-1 tag+i word VBG nekoosaNNP^I +?NN^I +i-2 word assumingNNMb?RBvNNPJ +?i-1 word duringNNʡEӿPRPx&1RBnIN+DT+?NNP"~j?PRP$x&1?JJS㥛?i-1 tag+i word VBD capitalNN+?JJ+ i word priestJJSK7A`NN&1?JJZd;Oi-1 tag+i word RB teachVBZ\(\߿VB r?NNPK7i-2 word wroteNNP;On?DTZd;?RBZd;VBMbXNN&1ҿi+1 word secretVBZMbX?NNSMbXi word underscoreVBP= ףp=?JJܿINGzi-1 tag+i word NN rareJJrh|?NNrh|i-1 tag+i word IN 'sVBZˡE?POSˡEi word weisfieldWDTJ +NNClNNPK7?i-1 word districtsVBDWDTCl?VBN?INCli-1 tag+i word DT rudeJJ/$?NN/$i word unnervingVBGl?JJx&1?NNrh|i-1 tag+i word CC grownVBI +VBNI +?i+1 word backlogJJL7A`?NNL7A` i word ufoNNPS(\NNSw/NNmݿNNPS㥛? i word handedVBNS@NNGzVBDrh|VBZnѿi-2 word playersNNM?JJI +NNS5^I VBGzG?i-1 tag+i word DT linksNNS^I +JJR%CԿNNx&@i-1 tag+i word NNP carefullyRBx&?NNx&ѿi-1 tag+i word -START- henceRB?NNGzNNPQ i suffix vilWRB1ZdJJffffff@NNSNNPS˿ i word marchNN(\VBP(\?i-1 word steelmakingVBN(\VBD(\?i tag+i-2 tag : DTNNSV-?NNPX9vNNZd;O?VBDZd;O?VBNMb?JJ%C̿VBZV-i-1 word investor IN'1ZԿNNSNNPS㥛?VBG%C?NNHzG?VBNffffffWDT'1Z?JJ"~j@NNPSףp= RB"~jVBDS?i-1 word branchedRP/$?IN/$i+1 word delightedWDT'1Z?IN'1Zi+1 suffix zilDT9vWDTZd;INsh|??i-1 tag+i word JJ woundVBN-NNS㥛VBD|?5^?i-1 tag+i word DT universityNN~jt@JJ~jti-1 tag+i word NNP debateNNQ?NNPQ i word espnRBd;ONNPd;O?i-1 tag+i word NNS comeVBD!rh?VB$C?VBPsh|??VBNFxNNPn i+1 word ca NNSm?NNPS5^I ?RBMCD-WDTS㥛?DTS㥛NNuV?PRP-@JJZd;OVBZB`"i word intercollegiateJJS@NN/$RB;Onҿi-1 tag+i word VBZ designedJJlVBNl?i-1 tag+i word VB inevitablyNNS"~RB"~?i-1 word homeworkVBNZd;O?JJS㥛ĿVBDܿi-2 word janneyNNPS +NNP +?i-1 tag+i word DT yaleNNPV-@JJV- i-1 word earnJJR/$?RBX9v޿IN?RBR/$RPFxٿ i suffix oulRBʡENNPJ +?NNPSZd;OݿJJ-ֿNN#~j?RBRGzi-1 tag+i word : noDTRQ?RBRQi+1 word itemsVBG~jtӿNN/$VBNRQ?JJMb@NNP/$VBK7Ai+1 word floorsVBNʡEͿJJʡE?i-1 tag+i word -START- raNNPjt?NNK7A`տINK7i+2 word plainNNMb?JJMbi+1 word picketRBB`"?JJffffffNN9vڿ i word earNNS5^I NN9v@JJGzNNP-i-2 word permitVBN?RBRV-JJ{GzJJR9v@i-1 tag+i word `` mooniesNNPSl?NNSlҿi-1 tag+i word NNP independentNN/$NNP/$?i-1 tag+i word IN vancouverNNPSffffffƿNNPffffff?i word reminiscentNNSJJS@i-1 tag+i word IN commonsNNP333333NNPSMbX?NNSrh|i-2 word laughsRB rh?VBN(\JJI +i word misanthropeNNPuVNNuV?i-1 tag+i word PRP$ templeNNS㥛 NN㥛 ?i-1 tag+i word PRP$ homeNNQ@JJ/$VBNlڿi-1 tag+i word NNP foesNNSzG?NNPzGi-1 word foreignNNZd;?JJMbX9?VBZlڿNNSjt?NNP}?5^INNPSJ +ٿRB$Ci word arrivesVBZS@NNSףp= RBli-1 tag+i word TO joinVB?JJi word advocatingVBGm?JJmi-2 word marthaVBN}?5^IJJ}?5^I?i-1 tag+i word NNS outperformsVBZjt?VBDPnINQi-1 tag+i word VBP openRB +?VBNK7AJJK?INSi+1 word collectionNNSQ?VBNV-?JJx&1i word distortedVBNSJJ?5^I ?VBDRQпi-1 word performINSDT-?NNSS?WRBv?NNvPDT-i-2 word convertibleNN;OnҿVBDV-?VBNL7A`?RBS㥛IN/$?JJMbXNNPv/?$v/ݿ i suffix etCCq= ףp?NNV-JJX9vFWbX9? i-1 tag+i word PRP$ contemplatedVBNQJJQ?i+1 word unremarkableNNMbRB9v?JJx&i-1 tag+i word -START- assumeNNV-NNPy&1VBw/@VBP"~jPDT1Zdi-1 tag+i word NNS letsVBZ-?VBP- i+1 word carlIN\(\VBZClVBP\(\?POSCl?i+2 word westernRPGzNNy&1|?RBRS?IN/$?NNSvNNPʡE?i+1 word gambleNNPL7A`пWDTZd;RB333333?NN?5^I i-1 suffix sayPDTZd;VBNV-?WPx&1NNP`"VBd;OVBP+?EXQ?INZd;O?UHx@NN!rh?VBDV-WDTI +?NNSMbX?RBQοVBZMbXDTjtJJV-?i-1 word costingJJRy&1?RBRy&1i-1 tag+i word IN perestroikaNNS5^I NNvFW@i+1 word contelJJ|?5^?NN|?5^i-1 suffix lleVBDQ?VBPQJJSNNS(\?NNPS?NN(\¿i+2 word executive POSS㥛?VBNףp= ?PRPx&1RBZd;O?CDx&1?NNPCl?JJffffff?NNVBD +WDTlIN\(\߿VBZS㥛VBClѿi-1 tag+i word RB drasticallyRBMb?JJMbi-2 word acquisition JJR^I +JJK7DTK7A`?RPsh|?տRBOn?NNMbX9?JJSxNNPS)\(?VBDA`"RBR^I +?NNP~jt?i word reexaminingVBGRQ?NNRQi-1 tag+i word VBG mogulRBRʡENNʡE?i-2 word presentsNNGzJJˡE?NNS^I +?i+1 word goddessNNS-NN-? i word read VBN5^I @VBZK7NNSd;ONNPףp= VBS?NNQJJx&VBD㥛 @VBPK7ٿi word arousingVBGX9v?JJX9v i-2 word deadRBRzGRBZd;?INZd;JJzG?i tag+i-2 tag RB NNPNNzGVBP5^I @INDl?VBZffffff@NNPNNPS&1ҿVBNw/!WDT~jtRBRˡEVBDףp= W@RB!rh@NNS rhJJRh|?5?VBy&1VBGZd;O?JJ^I + i word underwentJJx&1VBDx&1?i-1 tag+i word DT rebuffNNV-?JJV-i-1 tag+i word TO surviveVBHzG?JJHzG i word passedRB~jtNNS&1VBNZd;O@JJ(\VBDDl?i-1 suffix zisNNClVBDCl? i-2 word guyVBZ(\?VBD(\i+1 suffix yee RBK7JJMҿNNClJJRffffff?RBRffffffVBN}?5^I?VBGX9v?VBD;OnIN;On?DTK7?NNPX9v޿i-1 suffix sic JJ}?5^IRBQNNSZd;׿VBZFx?NNPV-NNPS#~j@VBGv/NNd;O?VBD+VBNV-i+2 word stickierNN-?RBS-i-1 tag+i word , travelersNNPSnNNPn?"i-1 tag+i word -START- brezhneviteJJHzGNNPHzG?i word creepingNNB`"VBGB`"?i+2 word kicksNNPS rh?NNS rhi word advertisedNNxVBDp= ף?JJV-?VBNQi-1 word discountsRBKINK?i+1 word hundredsVBʡE?VBDM?VBNMVBPZd;O?JJʡEINZd;Oi-1 tag+i word RB actsVBZZd;?VBPZd;i+1 suffix utyVBGZd;O?JJ#~j?NN(\VBNRQ?i word cookingVBGMJJ/$?NNjt?i-1 tag+i word , thrustVBB`"NNV-ڿVBDrh|?i-1 tag+i word `` raisingNNPJ +?VBGJ + i word tankerVBNQNNQ?i-2 word clinicalVBZX9v?NNSX9vi word conversationVBPDlNNDl?i-1 word trainsVBPDlVBNV-VBrh|? i-2 word hulkNN%CNNP%C? i+1 word sinkNNtV?CDtV i-1 word tomNNQNNPQ?i+2 word surgeryJJRS?JJSi-1 tag+i word NNP logisticsNNPSI +NNPI +? i+1 word foesNNK7A`NNPK7A`?i-1 tag+i word CC heldVBNEVBDE?i-1 tag+i word JJ audioNN rhѿJJ rh?i-2 word bluesRBMbNNPMb?i+1 suffix canNNSOn@CCK7?VBGuVVBPffffff?JJ/$@WPʡE?VBZ333333RBX9vEXI +?PRP$+?NNP^I DToʡRPv/VBD(\?LS-ӿNNPSZd;OFWx&1?VBN|?5^?WDT~jt?NN-VBjt?INMbX?i+1 suffix ldsDTOnNNK7@VBDjt?RBRsh|?VBZ rhNNSClNNP)\(ԿVBv/ͿRBʡEVBPtV?RBSSӿJJSףp= ?VBNrh|?UHx&1JJ= ףp=@JJR$C? i word carsNNS&1?NNP~jtNNPSjt @i-1 tag+i word IN announcedJJoʡ@FWClNNSQοVBNʡEi-1 tag+i word NNS besiegedVBNCl?VBDCli-1 tag+i word IN proofNNQ?JJQi word graduallyRB$C?JJ㥛 NNx&1NNPQi word baselineJJ9vNNJ +?RBRy&1i word designeesNNS +?NNPS +i+2 word whollyIN7A`RB r?JJjtԿi-1 tag+i word VBZ scienceNNv/?NNPv/ i suffix lpsVBx&1RP㥛 NNJJR~jthJJ㥛 VBZ)\(@NNSGz?i-1 tag+i word VBD becomeVBNl?RBSlҿi-1 tag+i word : likelyJJK7A?RBK7A i suffix wlsNNS rVBvNN rVBDClJJ?5^I VBZ@i word plannedJJ?NNPQ?VBV-NNSVBD/$?VBNA`" @VBPQi-1 tag+i word CC higherRBR1ZdJJR&1@NNDli tag+i-2 tag RB WRB INClRBףp= VBNnCDGzEXx?JJ7A`?VBzGếNNPSV-?NN(\?VBPA`"NNP%CԿi word mindlessNNSRBV-JJn @i-1 tag+i word VBZ integratedVBNw/?JJw/i+2 word givenJJK7A?INZd;@DTKNNS$CNNP}?5^I?RB"~jNNZd;O?VBN333333i-1 tag+i word NNS sweepsVBZx&1?VBDx&1i-2 word directionDTy&1RBy&1@ i+1 word lawsJJw/ĿNNPffffff?NNPS^I +NNˡEܿVBD?JJR rh?CDjt޿VBPK7 i+1 word diedNNSQNNQ?i-1 tag+i word VBD equalJJ$C?RB$Ci-1 tag+i word CC assureVBZV-VBV-?i-1 word brokenRP?RBi-1 word surveyVBZ r?NNS(\VBNSNNQVBDQ?i word involveVB7A`?VBDrh|VBP;On @JJ㥛 INmVBZK i+2 word hudINV-?RBV-i+2 word expressedNNPS㥛 NNʡENNPRQ?i-1 tag+i word PRP$ worseningVBGK7A`?JJK7A`i-1 tag+i word DT takeVBbX9VBPbX9?i-1 tag+i word VBN thatINv?DTtVWDTV-RBrh|?i-1 tag+i word PRP attendedVBPQVBDQ?i-1 tag+i word , mainlyRB(\?JJsh|?VBDZd;i word hartungNNPnNNPPn?i-1 tag+i word , separateJJK7A`@VBPjt޿NNʡERBʡEi-1 tag+i word DT sitcomNN/$?JJ/$i-1 tag+i word CC madeVB㥛 VBNK7?NNx&1ԿVBD/$?i-1 suffix ldsVBDDl?''Zd;WDTK7?NNSx&1?VBG~jt?RB~jt?POSZd;?VBPnNNbX9RPp= ףJJB`"۹DTˡE?IN7A`?RBRffffffVBN ףp= JJRffffff?i-1 word perspectiveVBNX9v?VBDX9vi-2 word congressJJSZd;OVBNx&1@JJCl NNP(\ VBGT㥛 ?VBP +VBZ{GzNNPSNbX9?NNT㥛 RBSZd;O?RB/$?VBDbX9ֿIN?5^I ڿNNSl @VBE? i suffix relNNZd;O?RBSJJ-ֿi-1 tag+i word NNS listenVBP(\?JJ(\ i word honeyNNʡE @NNS/$VBNSJJʡEi+1 word colorsNN\(\?JJK7A`JJRMbXi-2 word exceedVBV-JJ5^I @NN(\VBNJ +@i-1 tag+i word NNP wantVB}?5^IVBPS?IN5^I i word researchersNNPS㥛 NNS&1ڿNNPS㥛@i-1 word gottliebVBPtV?NN= ףp=ڿVBDZd;Oi-1 tag+i word , boeingNNPDl?VBGDlѿ i word burntJJ5^I ?NN5^I i-1 tag+i word IN organizingVBGףp= ?NNףp= i-1 tag+i word VBZ affectedVBN|?5^?JJ|?5^i-1 word combinationJJ)\(?NN)\(i-2 word panelJJzG?INZd;O?DTZd;OݿJJRMbX9NN}?5^IVBNbX9ȶ?RBRMbX9@i-1 tag+i word VBD offsetVBNjt?JJjti+1 word partnershipsVBNsh|??JJsh|? i suffix TRONNPS&1NNsh|? @NNPQ i-1 word linNNP?VBG̿i-1 tag+i word DT pieceNNS(\NN(\?i-1 tag+i word CC yetCCܿVB7A`ڿNNPSSRB rh?i-1 tag+i word JJ distressNNSZd;ONNZd;O?i-1 tag+i word IN impunityVBNGzNNGz?i+1 word restrictionsNNPx&1?VB rh?NNrh|@VBD rhVBN?5^I ?VBP㥛 JJMbXVBZ$Ci-1 tag+i word -START- missionNNP-?NN-i-1 tag+i word WP dependVBZvVBPv?i-1 word createNNS5^I NN^I +JJS@i-1 word refusingVBGGzNNGz?i-2 word actionsJJRMbVBPn?JJ;On?RBtVRBR\(\?VBNjti+2 word primaryNNS-˿VBZ-?i+2 word literacyVBNQJJQ?i-1 tag+i word , howWRBM?NNPMi+1 word keepsWDTK7?INK7 i-1 suffix me VBPQINS@NNSbX9RBClVBQ?RPQ?JJMb?VBD+RBR1ZdJJR1Zd?WDTzGVBZbX9?DTL7A`i-2 word imperiledDT}?5^INNS}?5^I?i+2 word paradoxVBPQ?INQi-1 word engineNNSCl?VBN/$?NNJ +?INtVi-1 tag+i word IN contelNNPSMbXNNPMbX?i-1 tag+i word IN holdVBCl?NNZd;?JJROnJJʡEVBNV-i-1 tag+i word RB avoidingVBG#~j?JJ#~ji-1 tag+i word DT unpleasantJJMbX9?NNMbX9i-2 word needsJJ333333NNSV-NNPʡEVBMb?VBG"~jNNRQ @i-1 tag+i word JJ branchesNNClNNSCl?i-1 tag+i word IN alienatingVBG~jt?NN~jti-1 tag+i word VBZ recallVBPS㥻?NNS㥻i+2 word meganeVBNp= ף?VBDp= ףi+1 word vitallyWDTFx?INFxi-1 tag+i word DT continuingVBGjt@JJ(\NNRQi-1 tag+i word DT triedJJ\(\@NNMbXVBNd;O޿NNSi+2 word blottingNN?RBi-2 word frustrateNNʡE?NNPʡEi word fruitlessNN9vJJ9v@i-1 tag+i word WP$ artNNCl?JJCli word cemeteryNN333333NNP333333?i word revisionVBPZd;ONNZd;O?i-2 word downtownNNS9vڿJJ9v?i-2 word sometimes VBy&1VBNq= ףpVBP;OnNNPPnNNSGzJJMb@NN7A`?RBV-IN~jt?i-1 tag+i word VBD sparkVBZ rhVB rh?i-1 tag+i word WDT crimesNNS ףp= ?VBD ףp= i word burstINbX9NNSK7JJ|?5^NN9v@JJSK7RBq= ףpi word amountedVBNsh|?NN/$VBDQ@i-1 word farmers VBNףp= ''ffffffIN/$?VB?5^I VBDˡE?POSffffff?VBP +?RB/$VBZn?i-2 word minorVBZ+?NNS+i-1 tag+i word NN predictsVBZS?NNSSi+1 word crackerNN!rh?JJ!rhi-2 word criteriaNN1Zd?JJ1Zdi-2 word averagesNNSMbNN|?5^?NNP1Zdi+1 word gideonJJClNNPCl?i-1 tag+i word '' spokeVBDHzG?NNSHzGi word ascribedVBPrh|VBNB`"?VBDMbX9i word louisvilleNN㥛 NNP㥛 ?i-2 word dixiePRPGzNNPGz?i word dramaticallyRB㥛 ?JJ㥛 ڿ i word joyNNSFxNNFx? i-2 word goalNNPx&1IN(\RB(\@JJx&1? i+2 word utahJJMbNNSMb?i-2 word unstylishRBoʡINoʡ?i-2 word reportVBDw/VBNx@VBP;On?RBQ?NNPK7?VBGd;O?JJl?DTK7NN + NNS$CӿRPffffffVBZV-?JJR(\INZd;O?i word pledgedVBN$C?JJ|?5^VBDEi word a\/k\/aVBZoʡVBףp= ۿIN-?i+1 word architectsVB333333NNI +?JJʡEۿi word gasolineVB= ףp=NNM @JJX9v i word dogNNS9vNN9v?i-1 tag+i word DT flapNNw/?JJw/ܿi-1 tag+i word VBZ knownRPClVBNp= ףJJʡE?i-1 tag+i word JJR shirtsVBZX9vNNSX9v?i tag+i-2 tag JJ VBDNNS#~jJJR(\?RBZd;O@VBNxRBRٿWPS㥛?DTS?CDy&1?VBnNNPSOnJJQ?RPDlNNPCl?VBGtVVBDuVͿIN-?WDT?5^I NNS㥛VBP|?5^?i-2 word defiantlyVBGPn?NNPnпi+1 word createdVBP(\WDTA`"?RBףp= ?DTA`"NNSV-?VB(\?VBNV-CDףp= i-1 word tiresomeNNn?VBZni+2 word disposalNNS?RBSi-2 word liberalRB"~?JJR"~jJJ"~RBR"~j? i-1 tag+i word NN demonstrationsNNS1Zd?NN1Zdi-1 word englishmanVBZCl?NNSQNNSi-1 tag+i word RB relievedJJV-?VBDV-%i-1 tag+i word JJ editing\/electronicJJʡE?NNʡEi word fruitionVB333333ӿNNx&1?JJK7 i-1 word like NNSw/?NNPS㥛 JJ rhNN+ηVBDSPDTKRB+ǿDTbX9?NNP(\?VBGDl?JJSS?VBNKIN= ףp= i suffix ddsRBK7NN1ZdJJINClVBZoʡ @NNSZd;O@NNP(\NNPS rh@i-2 word repaidJJSV-?RBSV-i+1 suffix run INV-VBZQFWjtRBZd;NNE?WDTV-?NNS~jt@NNP|?5^VBQ?JJ~jt?i-1 tag+i word FW bourseFW?NNPi-1 tag+i word -START- boatmenNNSB`"NNPB`"?i word occupantNNtV?JJtVi word generallyRBT㥛 ?NNPT㥛 i-1 suffix lit VBDʡERBRNbX9VBNʡE?RB%C@JJRNbX9?NNSNNPS?JJX9vNNL7A`IN/$i-1 word u.s.s.r.VBD(\?VBNMbNNPZd;O i word trekNNP +?RB +i-1 tag+i word -START- abuseNNPS'1ZNN'1Z?i+2 word puttingJJX9vNNS^I +VBvRBq= ףp?NN= ףp=CD&1@i-1 word curryNNV-?FWV-i-2 word decadesVBP+?NN+JJQ?NNPQ i-1 word ojiNNSS㥛NNPS㥛?i+1 word unwarrantedVBZX9v@NNSX9vi-2 word cadillacJJ㥛 NN~jtVBOn?i+2 word massonVBN-VBD-?i word cassetteNNʡE?JJʡEi+2 word advisorNN|?5^NNP|?5^?i+2 word fundamentalNNS"~?VB"~VBGVBNv/VBDˡE?i-1 tag+i word PRP$ advertisingNN^I +?VBG^I +i-1 tag+i word VBG reebokNN rhٿNNP rh?i-1 tag+i word TO limitVB/$?NN/$i word overbuiltJJQk@VBNh|?5NN~jtNNPi-1 word stanzaJJT㥛 ?NN~jtVBDi+1 word fearedNNPS?VBGSi+1 word markingNNMb?VBDMbп i+2 word boreNN"~j?NNP"~jܿi-1 tag+i word RBR leaksJJ^I +NNS^I +? i word simpleJJS(\JJROnۿVBNxRB/$NNS{GzJJ\(\@NN/$?i-1 tag+i word POS quelleNN/$NNP/$?i word extracurricularJJn?NNnڿi-1 word recognizableVBG&1NN&1?i-1 tag+i word DT congressmanNNSv/NNx&1?JJ +i-1 tag+i word TO withdrawVBp= ף?NNp= ףؿ i suffix TapVB"~?NNS㥛RB"~ji-1 tag+i word DT catholicJJHzGٿNNPHzG?i+2 word aisleRPA`"RB+INS㥛@i-1 tag+i word NNS notedVBDZd;O?VBNZd;Oտi+2 word ownerVB`"NNP`"?i+2 word intendedJJMbp?INm?DTGz߿VB'1Z?NNMbpWDTtVi-1 tag+i word JJ ebensburgNNK7NNPK7? i suffix PanJJjtNNPjt?i+2 word salisburyNNSV-NNV-? i word pipedVBDMbX9?VBNMbX9i-1 tag+i word DT heroVBNtVNNtV?i-1 tag+i word RB correctedVBN?JJi-1 word systems NNPV-?NN|?5^?VBDףp= ӿVBPzGVBZ rh?NNS rhVB+׿VBNףp= ?WDTMbX9INMbX9?i+1 word instead VBNv/ @INS?NNSMb?VBʡEVBGZd;O?JJFxٿNN= ףp=@JJSClVBD(\ RBMVBZtVi-1 tag+i word -START- betsyNNPZd;O?INZd;Oi-1 tag+i word DT onceNNP rRBnJ@NNJJ ףp= i-1 tag+i word -START- perrierRBQNNP'1Z?NNSi-1 word housesVBD;On?VBN;OnVBPA`"@JJV-VBX9vNN"~i-1 tag+i word WP americanJJ"~NNP"~?i+1 word prof.VBN/$JJ!rh?NNPS?i word rockiesNNPSS?NNSSi-2 word sharkVBPh|?5޿NNK7?JJ+i-1 tag+i word JJ tasteVBP/$?NNSGzNNSi word justiceVBZMbNNSSNN(\@JJrh|NNP-?i-2 word sverdlovskNN?5^I ?JJ?5^I i-2 word heroNNS}?5^I?IN}?5^Ii-1 tag+i word -START- labattNNK7ANNPK7A?i word majesticJJZd;ONNPZd;O?i-1 tag+i word RB officioJJR/$FW/$?i+2 word brazilVBG9v?NNZd;ONNP(\?i+1 word beginsNNPSuV?NNl?JJlNNPuVi-1 suffix dpcNNPS!rhNNP!rh?i-1 word periodRPK7ANN333333VBD333333?VBN̿RB)\(IN^I +@i+2 word holdsJJbX9?NNPZd;?NNffffffRBq= ףp?INq= ףp i-2 word kpmgNNPSʡENNPʡE?i+1 word napkinJJK7?NNK7i word paulineVBbX9ֿNNPbX9?i-1 word wimpingRPGzRBuVտINv? i word fillyNN'1Z?RBxNNSni-1 tag+i word NNP no.VBx&1?NNCl?NNPV- i+1 word swapJJw/VBNw/?NN"~j?JJR"~ji-1 tag+i word DT transcriptNNS"~NN?RBNbX9i+2 word chauffeurVBNGz?JJGzi-1 word customsVBZ(\VB(\@VBPp= ףi+1 word regroupNNSK?VBPKi word evaluationVBh|?5޿NNRQ?JJK7i-1 tag+i word RB minorJJ/$?VB rhRB(\NN`"i-2 word battleRBA`"VBZ/$ӿNNST㥛 ?VB)\(?NNPSv/JJffffff?NNOnVBNZd;O?i-1 tag+i word NNP repNNPS|?5^NNP|?5^? i word shipsNNSL7A`?NNL7A`i word believedVBNCl?VBDK7VBZV-NNS+i-2 word immuneNN(\?JJ(\ҿi-1 tag+i word NN involvedNNS㥛VBN rh @JJX9v?VBDFx VBPCli-1 tag+i word VBD soilNN\(\?JJ\(\i-1 tag+i word IN businessmenNNS +?RB +i+1 word thriftNN+?JJ$CNNP +NNPS"~?i-1 tag+i word RB showedVBNKVBDK?i-1 tag+i word -START- channelNNNNP?i-2 word gaugeJJ/$?RB/$i-1 tag+i word VB threatenVB rh?IN rhi+2 word chancesVBD/$JJ(\IN!rhVBx&?RB1Zd?NN(\?i-2 word consistsJJV-?NNV-i-2 word countyNNS(\?NNPNNSCCʡEJJ ףp= @VBZ(\i+2 word libertiesJJZd;NNPZd;@i-1 word o'kickiVBPSNNSRBS?CDS?i+2 word treatyJJzGNNPzG?i+1 suffix lbsNN\(\?JJ\(\i-1 tag+i word DT holyJJ= ףp=ʿNN +NNPT㥛 ?i-2 word replaceVBZClNNSCl?JJzGNN-?NNP+?i-1 tag+i word VB seasonedJJ`"?VBD`"i-1 word rescueJJ/$VBZ?5^I NNS?5^I ?NN/$? i-2 word vuRBK7A?INK7Ai-1 tag+i word , theDTʡE?NNPʡEi-1 tag+i word RB appliedRBnҿVBNn?i-1 tag+i word JJ epaNNPS?NNPSCl׿NNli-1 tag+i word VBZ cleanerJJRʡE?RBʡEi-1 suffix eanVBPZd;O?VBGV-JJ;OnVBDK7VBNbX9RBRX9vNNP= ףp=@NNPSMbX?NNCl?INףp= ?NNSZd;O?VBd;ORBQٿDT(\ݿi+1 suffix opy NNPSZd;ONNX9vRBR= ףp=DT= ףp=?NNP#~jVBDmVBNm?JJX9v?NNS/$?i+1 word attendantNNPS{GzNNv/?NNP-ۿi-1 tag+i word NN queuesNN5^I ˿NNS5^I ?i-1 word probably RBR#~j@JJA`"?VBDCl?JJRd;OVBNFxRB)\(VBZbX9NNS(\?VBS㥛i+2 word deficitsVBDB`"ѿVBP+η?VBNB`"?JJ+ηi-1 tag+i word , kelloggNNPGz.NNGz.@i+1 word alexanderNN'1Z?JJ'1Zi tag+i-2 tag VBG VBPRP'1Z?UHʡERBRQVBN~jt?JJRbX9?DTJ +?NNSn?NNP"~j?NNRQ@IN/$?VBD rh@JJSMb?RBSMbVBPsh|?ſWDT rVBKRBMbJJzGCDy&1i-1 tag+i word VB preferredJJ+VBN+?i+1 word recognizesWDTzG?NNZd;O?NNPZd;ODT{GzINHzGi-1 tag+i word NNPS embodyVBPQ?NNQֿ i suffix HUHNN= ףp=NNP= ףp=?i-1 tag+i word -START- buoyedNNS`"ֿVBN`"? i-1 tag+i word -START- officialsCDSNNSV-?NNMbJJ(\NNPI +@i-1 tag+i word VBZ republicanNNPzG?JJzGếi+2 word stylingRB~jtIN~jt?i-2 word winnersRPףp= ?INףp= i-1 tag+i word DT forumJJ5^I NN5^I ?i+1 suffix corVBDffffff?VBN)\(WDTI +RBh|?5INh|?5DT|?5^?VBh|?5?NNQi-1 tag+i word NNP walkVBP+?NNP+i-1 tag+i word JJS payVBPzG?JJzG i+2 word win JJsh|?ݿNNSZd;ONNPSQ?VBG1ZdNNv?VBDA`"VBNL7A`?VBPGz?NNP!rhi-2 word statementsNNS?NNPi-1 tag+i word NNP amNNPMbVBPʡE@NNPS)\(i-1 tag+i word CD seatsNNˡENNSˡE?i+2 word sovietNNSV-?JJnҿINK7?VBZClNNP;OnVBS?VBDv/?CDMVBPT㥛 NN"~j?CCMbX9?RBSGz?RB\(\JJSGzi-1 tag+i word VB wellplacedVBNbX9JJbX9@i-1 tag+i word VBD dealingsNNSS?VBNS i-2 word wppVBZI +RBR?RB\(\ϿPOSd;O?i+2 word dystopiaJJB`"?NNB`"i+1 word anemiasVBd;O?JJd;O޿ i+1 word aideNNʡEJJʡE? i word rivalVBZ$CJJ%C @NNS)\(NN/$RBEi-1 tag+i word JJ increasesVBZ|?5^NNS|?5^?i-1 word roadwayIN5^I ?VBD)\(?VBN)\(JJ5^I i-1 tag+i word PRP$ sortingNNoʡVBGoʡ?i+1 word deliversVBZ#~jRB#~j?i+1 word crowdedRBRʡE?JJRʡEi-1 tag+i word `` landscapeVB333333NNI +?JJʡEۿi-1 tag+i word NN dinnerNNoʡ?RBRoʡi-1 tag+i word ) mafiaNNSʡEͿNNʡE?i-1 tag+i word VBZ brianJJS㥛пNNPS㥛?i-1 tag+i word IN pureJJ+?NN+i-1 tag+i word TO jumpVBGz?NNS(\NNtVֿi+2 word libertyNNSA`"?NNA`"i-1 tag+i word NN plansVBZK7A`NNSK7A`?i-1 tag+i word VBZ wertheimVBP9vNNP9v?i-1 word rapeseedsVBN#~j?VBD#~jĿ i suffix ked''B`"VBZp= ףPRP$nVBGRBK7AVBJJ9v@NNE!INVBNCl{.@NNP-VBD r(0@VBPB`"DTʡENNSX9vi+2 word merchandiseJJsh|??DT;OnNNPSVBffffff޿VBG-?RB/$NNDlѿPDT;On@i+1 word tycoonJJ~jt?NN~jti-1 tag+i word DT sequesteringVBGnѿNN^I +?JJ%Cܿi-1 tag+i word DT unflatteringJJB`"?VBGB`"i-1 tag+i word NN concreteNNZd;?RBZd;Ͽi-1 tag+i word NN registrationsNNSףp= ?INףp= i-1 tag+i word NNS packageVBP1Zd˿NN1Zd?i-1 tag+i word JJ dueNNS!rhܿNNxJJOnRBzG@i-2 word atlantaNNbX9VBDZd;ONNPbX9?VBNZd;O?i word processVBPx&ѿJJ/$VBZClɿRBV-NNC@VBNʡE i word struckNNSA`"VBGZd;ONNnVBD@VBN9v?JJR/$VBPV-i-2 word spokespersonsDT㥛 ?PDTZd;OǿINQi word blemishNNV-?JJV-i-1 tag+i word PRP$ expensiveNNSSۿJJS?i tag+i-2 tag NNS (NNDl?VBPDli-1 tag+i word NN markedVBD rȿVBNK7A?RBffffff i+2 word peruNNh|?5?JJh|?5i+2 word decentJJS?NNSݿi-1 tag+i word NNS payVBOn?VBPRQ?NNZd;O׿VBDV-i-1 tag+i word NNP carolinaNNPS ףp= NN\(\NNPK7?i word includedJJjtVBPsh|?VBNZd;ϿNN(\ڿVBD@ i-1 word j&bNNrh|NNPrh|? i-1 word weakNNS|?5^RBK?NN|?5^?INKi+1 word court NN&1RBSNNP9vNNPSQVBGv?JJV-@VBDSVBNףp= ?VBPHzG i word slowVBN㥛 VBP|?5^ڿRB rhVB?5^I@JJq= ףp@NN&1 i+1 word spankingJJHzG?NNHzGi-1 word springNNB`"?JJB`"RB rhIN rh?i+1 word discriminationVB5^I ?WDTd;O޿DT-?RB5^I INoʡ?i word frankingVBGvNN1Zd?JJCl߿i-1 tag+i word , overwhelmingPRP^I +JJMbX9?UHzGڿVBGQi word gallopingVBG%C?NN%Ci word jealousyNNOn?JJOni-2 word norfolkJJMbP?RBMbPi+1 word physicalDTCl?WDTCli-1 tag+i word DT ozarksNNPSFx@NNˡENNP ri-1 suffix ndsINK7ANNSQVBZx&1?NNP/$JJSCl?JJ;On@NNx&1VBNxֿRBRJ +@EXX9v?VB`"οVBGK7?RP{GzDT|?5^?JJRQ RBS㥛?VBPK?RBSClWDT~jtNNPSQ?VBDx&i-1 suffix ultVBZnٿNNSn?NNPMbX9?NNOnVBD|?5^ʿWDTK7A`JJPn?INK7A`?i-1 tag+i word DT shopsNNS"~?NN"~i-1 tag+i word MD allyVB-?RB-i-1 tag+i word VBZ redeemingVBGZd;JJZd;@i+1 word goriotNNPMb?RBnFWnҿ i-2 word inc.INˡE?VBZv/?RB|?5^VBD|?5^?PRPCl?NNSԿVB)\(NNPS(\JJ r?DT rNNP}?5^I?VBGh|?5?NNPnVBN!rh?VBPX9vi+1 word drabinskyNNPZd;?NNPSx&1JJZd;O i+2 word engVBZ}?5^I?NNS}?5^Ii-1 tag+i word VB espsNNPSCl?RBCli+1 suffix bitJJ|?5^@NNZd;VBDOnIN+i-2 word requestsNNSrh|?NNrh|i+2 word drinkingVBGoʡVBNMbX9NNoʡ@VBDMbX9?i word inappropriateVBMbJJE@NNNbX9i+1 word statesmenVBG}?5^I?NNSJJK7 i word harborVBPV-?JJRZd;ONNQ i+2 word mtmNNSm?NNmi-1 tag+i word DT turmoilsNNSMbX9?NNMbX9i-1 word cedarNNPSzGʿNNPzG?i word minutesNNPS`"?NNS`"i-1 word dramaticVBZmNNSQ롿NN`"?JJx?i-1 tag+i word DT farJJQNNPQ?i-1 tag+i word JJ surroundingVBG(\?NN(\i-1 tag+i word `` universalJJ/$ӿNNP/$?i-1 tag+i word IN whoeverNNtVWPtV?i+1 suffix reyJJ{GzNNP{Gz?i-2 word preliminaryNNS{Gz?NN{Gz i+2 word didVB\(\WDT~jtVBZZd;NNS|?5^?RBV-?NNV-CC$C?JJRlPRP$Zd;?VBP㥛 JJZd;O?VBG(\?VBD㥛 ?NNPx&1ԿDTT㥛 NNPSS㥛VBNL7A`INx&1?i-1 tag+i word NNP brethrenNN9vڿNNS9v?i-1 tag+i word CC penceNNSx@NNxi+1 word horrorJJ$C?NN$Ci word buckingVBGZd;O?NNZd;Oi-1 tag+i word : onceRPClRBS?INM?i word releasedJJ&1VBDMVBZClNN+VBN^I +@i-1 tag+i word VBD enoughJJS㥛RBS㥛?i+1 word catastrophicRBRCl?JJRCli word suppliesVBZ/$NNS/$? i-2 word barVBZ?NNPJJ9vڿNNQFWZd;?i-1 word servicesVBˡENNuV@VBDh|?5VBNMb?VBPx&1IN rhNNS +NNP;On?i-2 word differNNSʡE?JJʡEi-1 tag+i word JJR creditworthyJJV-NNV-?i-1 tag+i word CC costNNSoʡNNoʡ?i-1 word gainedJJRA`"?JJ-?IN ףp= RPQRB)\(@NN-RBRA`" i word porcheJJ~jtNN\(\NNP rh?i word consistsVBZQ@NNS}?5^INNB`"i-1 tag+i word DT topiaryNNnJJn?i-1 suffix forVBZ}?5^IFWK7A`ݿVB+VBD;OnVBNˡEJJuV?NNP/$?CCSRBS-CD;On?INMbX9VBGX9v?VBP\(\PRPv/RBʡE?PDTʡEۿRBR;OnNNPSMb?JJSV-׿PRP$Q?WDTMڿDTffffff?JJRx?WPtV?NNCl?NNSvϿi+2 word chaoticIN= ףp=VBGw/?NN^I +PDT5^I ӿVBP}?5^I?JJT㥛 i-1 tag+i word POS bancsharesNNPS#~jNNP#~j?i+2 word watergateVBNMbX?NNMbXi-1 tag+i word -START- conistonNNL7A`NNPL7A`?i-1 tag+i word NNS insideVBDlVBPDlNNSnRB'1ZIN'1Z@i-1 tag+i word TO agreeVBZd;O?JJZd;Oi-1 tag+i word POS zamaJJ~jtNNP~jt?i-1 tag+i word NNP koreanJJףp= ?NNPףp= i-1 tag+i word JJ squareNN333333?JJ333333i-1 tag+i word JJ mountaintopJJS㥛NNS㥛? i+2 word rainVB333333VBP333333?i-2 word managedVB(\?NNSvNN?5^I i-1 word littonNNPS9vNNP9v?i word yankeesNNPSV-@NNPV- i word unjustJJ/$?NNP/$i+1 word warrantJJ;OnNN;On?i-2 word shoutsVBNd;ONNPd;O?i-1 tag+i word JJ lurchVBPx&1?NNx&1Կi word sunbirdNNSNNPS?i+1 word common VB"~?JJS= ףp=VBNʡE JJV-@DTSCDT㥛 ?NNPENNPS!rh?NN!rhRBS= ףp=?RBR r?JJR rؿi-1 tag+i word VBG breakthroughNNv?RBvi-1 word causingJJL7A`VBNL7A`?NN'1ZĿJJR'1Z? i+1 word callRP㥛 RBNNPn?TO㥛 ?JJjtƿVBZnNNS= ףp=?NNP= ףp=i+2 word murderedRPsh|?RBsh|??i-1 tag+i word TO disappearNN"~jVB"~j?i-1 tag+i word `` reducedVBNx?VBDxi-2 word shapeRBS!rh@VBx&?JJS!rhNNT㥛 ?JJS㥛i-1 tag+i word DT episodeVBNClNNCl?i-1 tag+i word PRP anythingNN"~@NNP;OnVBPsh|?ſVBGCli+2 word classVBDZd;OVBNZd;O?RBףp= ?DTX9v?NNPx&NNPS%CJJ&1NN/$i+2 word flurryVBDS?VBNS i-1 word dareVB+@VBPT㥛 JJZd;i-1 tag+i word -START- jeromeVB|?5^NNy&1NNP333333?i-1 tag+i word IN iranianJJv/?NNPv/i-1 word buyersNNI +IN{GzVBPx&1RPFx@RBm? i suffix D.sNNS"~@NNQNNPJ +NNPSMbX9?i+1 word generatorsJJQ?NNQi-1 word annualJJK7A`?NNSQ?NNPSy&1VBGx&?NNjtJJR i+1 word archVBZ +οNNS +?i-1 word openedRBRK@RP^I +?JJRjtNN"~IN^I +߿i-1 tag+i word , longstandingVBGMbX9JJMbX9?i word initialJJ-?NNT㥛 NNPv/i-1 tag+i word , novelistNNx&?VBPx& i word potentJJT㥛 ?NNT㥛 i-1 tag+i word -START- dpcNNSp= ףJJJ +NNPNbX9@i-1 tag+i word POS wildJJ +?NN +i-1 tag+i word JJ hiborNNMbXNNPMbX?i-2 word cedarJJSNNS?i-1 tag+i word VBG budgetedVBNV-?VBDV-i-1 suffix efsWDTGz?INGzi-1 tag+i word NNP republicansNNP+?NNPS+ i-1 word winJJS?INX9vRPCl?RBʡE޿NN/$?PDTSVBP/$i word exploringVBGsh|??JJsh|?i-1 tag+i word VBP recordedVBN(\?JJ(\i-1 tag+i word VB diminishedJJ/$?VBDK7VBNbX9 i-1 word %RBRNbX9JJRV-@CD ףp= VBZbX9?VBS㥛CCjt@VBPh|?5?VBG333333NNffffff?VBNERB-?IN ףp= ?NNS)\(NNPSZd;OJJn@VBD㥛 RPtVi-1 tag+i word `` realJJv/ @NN~jtNNPxi+1 word grantJJMbX?NNMbXi word suspensionNNCl?JJCli+1 word achingJJGzVB/$NNn?i-1 tag+i word IN disinterestedVBNMbX9JJMbX9?i-1 word mindsIN1ZdRB1Zd?i-1 tag+i word -START- oncePDTZd;ORBtV?NNClIN㥛 ?i-2 word huttonNNS~jtVBZ'1Z?VBP(\? i-1 word sellRB/$?VBNS㥛ԿRPS?NNS;OnVBףp= PDTRBRm?PRP)\(INʡE?NNPSGz?JJR rh?JJ?NNP7A`VBG rhNN +?DTT㥛 ?CD ףp= i+1 word habitsVBG`"JJ|?5^?NN r?i+1 word moslemsJJxNNPx?i+2 word transportationDT"~jNNPV-ϿVBQVBG+JJv?NNA`"?RBClIN"~j?i+1 suffix cusRBbX9?NNPRQVBGʡEJJS㥛@NNI +?VBN/$ i word btNNPS +NNP +? i-2 word starPOSGz?VBNZd;O?RBR$C?''GzRB$CJJZd;Oi-1 word filingNNP/$?NNEԸ?VBNPn?JJ(\VBZCl?NNSCli-1 word happilyJJT㥛 ?NNT㥛 VBD?VB|?5^VBPw/i+1 word threeVBK?VBDX9v@VBPNbX9?NNSL7A`?NNPSQVBGʡEVBNQJJ?5^I RP rh?NNV-?JJSCl?RBSClINʡE?RB/$PDTV-DTy&1?NNPClǿi word baggageNNB`"?JJB`"i-1 tag+i word NNP earNN-?NNP-i-1 tag+i word JJ comingVBG%C?NN%C i+1 word softJJ-?NN-i word unhingedVB+VBNV-?JJ~jti-1 tag+i word VBZ furtherRBףp= RBRˡE?JJv?JJRh|?5i-1 word appropriationVBZy&1NNy&1?i+2 word distressfulVBD/$NNPQIN}?5^IܿVBN}?5^I@i+1 word ministryNNPSʡE?NNS333333JJS㥛NNKNNPd;O@i-1 tag+i word JJ woesNNSffffff?NNffffff޿i word hagglingNNmVBGm?i-1 tag+i word CC spreadJJQVBD?5^I @VBQݿVBN&1i+1 word floridaRBCl?JJCli-1 tag+i word JJS appearVBZd;@VBPnRBCli-2 word eight VBPClVBNHzGٿRB9v?IN9vNNSNNPy&1@JJmNN"~j?VBD?RBRʡE?CDK7A`VBZ?JJRʡEտi-1 tag+i word , raisingVBGT㥛 ?JJT㥛 i-1 tag+i word -START- enfieldNNPCl?NNCl߿i-1 tag+i word RB dolledupJJ{Gz?VBPʡEƿVBNmݿ i-1 suffix r''x?POSxi-1 word lorimarNNPS +?NNP +i+2 word automotiveIN-RB?5^I NN}?5^I?NNPClJJffffff@i-1 tag+i word NN stressedVBNVBD? i-2 word pulpVBNjtNN&1@JJQVBZd;ONNSX9vi-1 tag+i word VBD preciseJJM?NNMi+2 word considerableVBDCl?NNZd;O?VBNClJJZd;Oi-1 tag+i word PRP$ chapterNNPsh|??NNsh|?i-1 suffix aldVBZ/$?NNPS!rhPOS㥛 NNSNNPp= ף@ i-1 word siteVBDX9vVBN"~j@RBZd;VBZtVJJZd;?NNy&1i+1 word practiceDT%C?NNSffffffJJjtܿNNCl?RBrh|IN%Ci-1 tag+i word DT delayingVBG rhտNNA`"?JJrh|i-1 tag+i word NN minicomputerRBRI +NNI +?i-1 tag+i word , sometimesNNS +UHy&1RB(\?i word alternativeJJV-ͿINʡENN rh?i-2 word boeingJJK7ANNS{Gz?NNPMbX9NNPSm@RB/$NNq= ףpCC/$?CD$Cӿi+1 word intersectionNNPS?NNPi tag+i-2 tag IN `` VBD/$VBN㥛 ?RBQ@VBZq= ףpNNPMVBGjtJJʡEUHT㥛 ?NNSsh|??EX+?NNPSףp= ?NN\(\?i-1 tag+i word IN lockJJMb?NNMb i word pullsVBZE?NNSlJJSi word maritalNNGzJJGz@i-1 tag+i word NN mannerVBNrh|NNrh|?i+1 word compactVBGq= ףpJJq= ףp?i-1 word expertsVBDzGVBPp= ף @RPT㥛 NNGzIN rhͿi tag+i-2 tag , WRBRBoʡտINoʡ?i-1 tag+i word VBZ likewiseRBV-?VBN;OnNN/$ƿi-1 tag+i word RB expressedVBN㥛 ?JJ㥛 i+1 word hisNNVBD rh@CCSRBRZd;ODTSӿCD|?5^VB- @JJy&1NNSRQPDT rh@VBNףp= ?VBPuV RBNbX9INV-@VBG{G@NNP+RPMb?WDT~jtWP!rh?VBZK7? i-1 word hand INw/VBZPnؿVBDHzG?VBNHzGWDTMbP?JJʡEտDTMbPNNS$C?RPw/@RBMbX?NNˡE i-1 suffix z''MbX?POSMbXi word tennesseeNNPSQRPuVRB+NNPrh|?i+1 word singerJJ/$?NNMbX9?NNP rhi-2 word acrossJJʡENNv@RB~jt?INSNNSx&1NNPsh|?տ i word downVB= ףp=UHGzVBZx&1$RQJJ1ZNNSVBNZd;VBG7A`NNPK7A`տRP+w*@VBDףp= RBPn%@FW(\POS-VBP!rhINMb@NNS?5^I i-2 word printingDT|?5^?VBG'1ZNNCl@WDTI +JJV-INh|?5i+1 word interestingRBJ +?JJJ + i suffix iwaVB rNNClNNPV-?i-1 tag+i word -START- wasVBDzG@WRBjtIN^I +WDT+VBGz߿i-1 tag+i word -START- staffNNT㥛 ?JJZd;߿NNPRQi-1 tag+i word DT votesNNSA`"?NNA`"i-1 tag+i word NNP aeronauticsNNPS/$NNS#~jNNPV-@ i word doorNNPSˡENNK7 @VBD333333JJ{GzNNSZd;NNP1Zd?i-1 word seriousNN|?5^?JJx?IN+?RB ףp= i word pittsburghJJffffffNN"~jԿNNPM?i-1 tag+i word VBN forwardJJuVRPB`"ٿRBˡE?i-1 tag+i word IN jetNNPn?JJ(\ؿNNP%Ci+1 word consolidatesJJRlRBl?i+1 word notionVBGJJ/$?NN/$i-1 tag+i word NNPS askedVBNV-VBDV-? i word brownNNSB`"VBNS㥛JJZd;?i-1 tag+i word CC cakedVBDCl?VBNCli-1 tag+i word WP runsVBZq= ףp?VBPq= ףpi+1 suffix iczNNjtNNPjt?i-1 tag+i word DT auditNNE?JJE i suffix eceRBS@NNMbXٿJJZd;ONNSMbX9NNP/$?VBPni word lookingNNPA`"VBGw/?NNS㥻i-1 word humansVBDM@JJ/$?NN333333VBNMRB +i-1 tag+i word VB swallowedVBNQ?JJQi word creswellVBS㥻NNPS㥻?i-1 tag+i word VBZ supposedVBNrh|?JJ"~VBD{Gz i+1 word both VB$C?VBG&1?NN7A`VBD?5^I ?RP ףp= ?DTRQVBZ/$?JJ?5^I NNS/$WDT$CRBSIN5^I @i-2 word demographicNNS-NN-?i+2 word stampRBn?VBDnѿi-1 tag+i word TO veryVBV-RBV-?i-2 word scoresNNL7A`CD|?5^@NNP+?NNS~jtJJ|?5^i-1 tag+i word NNP politickingVBGx&1NNx&1?i-1 tag+i word IN financingVBGjtNNjt@i-1 tag+i word CC wooingVBGv?NNvi-1 tag+i word DT telemarketingVBG(\NNx&1?JJ/$i-1 tag+i word POS petNN|?5^?JJ|?5^i-1 tag+i word NNS heroRBR}?5^INN\(\?VBDw/ܿi-1 tag+i word VBG jailedJJrh|?VBDrh|i-1 tag+i word -START- tennecoDTSNNPS?i word determinesVBZ?NNS"i-1 tag+i word -START- christopherJJ$CRBxNNPJ +?i-2 word chineseJJA`"?NNlҿVBDL7A`?VBNL7A`RB/$NNP`"? i word frozenVBG333333NNmRBOnÿVBNCl?JJm?i tag+i-2 tag ) RBVBS?VBPSi+1 word friendsVBG}?5^IJJ}?5^I?i+1 word consciousnessVBbX9޿JJbX9?i word czechoslovakJJ+?NNP\(\NNPSK7i-1 tag+i word RB supportsVBZV-?VBV-i+1 word credibilityDTHzGINHzG?i-2 word exxonNNZd;O?VBVBGK7i-1 word directsNN~jtVBPK7NNS)\(ܿJJK7A?i-1 tag+i word ( tryVBPp= ףVBp= ף?i-1 word bringsRBzG?INGzVBDA`"RPS㥛? i suffix CawNNMb?NNP!rh?VB rhNNPSvVBN|?5^i-1 tag+i word JJS buildingNNNbX9?VBGNbX9пi+2 word visualsVB+VBNjt?JJMbi-1 tag+i word VBD miredVBNʡEJJʡE?i+1 word stateJJRSNNJ +?VBG%C?JJS rh?RBS rhRBtVINI +@NNP;On?NNPSV-VBDT㥛 ?VBNzG?WDT~jtJJ"~VB rhi-2 word robertNNPSS?VBGZd;ONNPS?i-1 word circulateRBjtINjt?i+2 word cascadeRB= ףp=IN= ףp=?i-1 tag+i word , wagesVBZQNNS%C@INA`"i-2 word ambivalenceVBZd;NNPZd;?CDMbPi+1 word necktiesNNSmVBZm? i word hubNNx?RBxi-1 tag+i word VBZ comeVBP-VBN-?i+2 word introduceVBZuV@NNSuVi+1 word ifintJJ-?NNP- i word seemedVBG+RB+NNxVBD'1@VBNGzJJp= ףi+2 word second VB1ZdVBDV-?CCT㥛 ?RBZd;O?DTZd;JJQ?NN/$PDTMbIN"~i-1 tag+i word , higherJJRbX9?RBbX9i-1 tag+i word WDT amountNNx&1?VBx&1̿i-1 tag+i word NNP vegasNN/$NNP/$?i-1 tag+i word DT creepiestJJSffffff?NNffffffi-1 tag+i word VB overseasRBV-?JJV-i-1 tag+i word NN samplesVBZ rhNNSn?NNCli word endlessJJMb?NNMbi-1 tag+i word : nNN rNNP r?i-1 tag+i word NN insideVB(\RBV-?NNʡEINCl?i+2 word searchingVBZ?5^I NNS)\(?NNʡE i word addsVBZoʡ @INClNNP~jt i word toddVBDlNNPDl?i-1 tag+i word -START- shortVBNV-JJ(\?NNP㥛 ҿi-1 tag+i word JJR seriesNNSoʡNNoʡ?i-1 suffix ualVBPvVBZT㥛 ?POS|?5^?JJRVBG= ףp=JJ rhNNffffff@VBD)\(?VBN#~jNNPS%C?RB|?5^?INx&1?NNSˡENNPx&1?i+2 word cycleRB%CԿNNCC^I +POSZd;?JJQ?VBZZd;VBG?i+1 word kolberJJS㥛NNPS㥛?i-2 word franklinNNPSQ?JJ"~j?NN"~jNNPQi-1 tag+i word WP resoldVBPZd;O?VBDZd;Oݿi+1 word homeownersVBV-VBPV-?JJy&1?NNy&1ܿi-1 tag+i word VBN voidUH(\ҿNN(\?i-1 tag+i word JJ repurchaseJJK@NNKi+2 word brewingPDTPn?NN%C?PRPPnJJ%C i+1 word giveWDT~jt?NNSOn?JJOnIN~jti-1 tag+i word PRP unlikelyVBZ(\JJ(\?i+1 word counselingVB rhJJ rh?i-1 tag+i word DT judiciaryNN-?JJ-i-2 word breakersVBM@VBGsh|?JJQNNffffffֿ i word removeVBK7A`@VBPx&1NNZd;VBDq= ףp i word secretVBPMbXNNS5^I JJRQ@NNRQNNP(\ i+1 word coupVBDnJJuVJJSd;O?VBNh|?5@NNd;Oi word hostagesNNSS?NNSi-1 tag+i word WDT ledVBNsh|?ſVBDsh|??i tag+i-2 tag WP$ INNNSMbX9NNMbX9? i word kabulRBK7A`NNPK7A`?i-1 tag+i word IN yamaichiJJOnNNPOn?i-1 tag+i word VB wastingVBG"~jNN"~j?i-1 tag+i word JJ techniquesNNS+?NN+i-1 tag+i word PRP pointsVBZ?VBD i+1 word withVBD~jtCC/$JJS}?5^IPRP$ +DTDlNN^I +@WDTmJJzGRPCl?LS"~ʿNNPI +FWn?VBN+?VBP\(\?PRPq= ףp?VBMb`?JJRrh|NNS&1?RBR|?5^?CDA`"IN rh?NNPS|?5^ڿVBGx@VBZ rh?RBZd;?i-1 tag+i word JJ bearingVBGˡENNˡE?i-1 tag+i word VBZ urgedVBD?5^I VBN?5^I ? i word hk$VBZ~jt$MbX9@NNp= ףNNPQ i-1 word cfcsDTzGWDTzG?i-1 tag+i word VBD highpricedVBNL7A`JJL7A`?i-1 tag+i word IN boughtVBN㥛 ?NN㥛 i-1 tag+i word -START- reportsNNS rh?NNNNPK7i+2 word retirementVBZd;ONN;On?VBN}?5^I?VBPClٿJJQNNPw/i-1 tag+i word IN towRBS?NNSSJJ}?5^INNRQؿ i-1 word suedRBtV?NN/$JJR"~ji-1 word sverdlovskVBNw/VBDw/?i-1 tag+i word PRP ourselvesVBZKPRPK?i word considerableVBS㥛JJA`"?NN +i-2 word wisecracksVBѿNNʡE?VBDX9vi+2 word beachesNNS+?NN+VBD/$VB/$? i suffix mahVBGzNNPGz?i word foundedVBN}?5^I?VBD}?5^Ii-1 word eugeneNNMڿNNPM?i-1 tag+i word `` tellVBFx?VBP?DTFxi-1 word supervisorsVBP(\?JJ(\i-1 word makesNNPSK7RPZd;?PRP/$@INtVοVBNw/?JJ~jtVBZMbX9NNSw/ܿNNP\(\PRP$/$RBףp= @VBPʡEۿNNNbX9@VBD+JJR/$i-1 tag+i word , emphasizingVBG?JJԿi-1 tag+i word DT balanceNNMbp?JJMbpi+1 suffix biaVB"~jԿNNVBNHzG?VBPjtJJv/INK7?DToʡտNNP= ףp=? i-2 word prosNNSffffff?JJPn?NNPnNNPffffffi-2 word institutionalVBDbX9VBPQWDTK?JJ|?5^?INKVBZZd;ONNSZd;O?i-1 tag+i word NN returnVBRQ@VBPGzNNi-1 tag+i word NNS displaysVBPX9vϿNNSX9v?i-1 tag+i word -START- workingVBG-JJ-@i-1 word latinNNP%CNNPSffffffֿNNS~jtNN-?JJ%C@i-1 tag+i word TO archrivalVBX9vJJX9v?i word sustainedJJK7A`?VBDʡEVBN^I +?i-1 tag+i word TO fightVBJ +?JJMNNʡEƿi-1 word generally IN(\VBZ1Zd?VBEVBPB`"@NNMbXѿVBD7A`VBNuV @JJA`"VBGMbX?RB'1Zi+1 suffix untINq= ףpDT"~?WDT-?VBNK7A`CDQ?NNSFxJJbX9?NNPSnVBGOn?WPw/RBh|?5?NNP9v?VBjtJJRX9vNNL7A`@i+2 word traditionalistsVBMbX9ԿVBNoʡ@JJjt i+1 word open RBm?RBRv?VBNRQ?JJRv߿RPx&1VBDx&1?VBP +JJ&1INx&1?i-1 tag+i word -START- contractNNZd;O?JJClNNP333333i+2 word stemsNN ףp= ?VBG ףp= i-1 tag+i word , receiveJJlVB +?VBPx&1?i+2 word workers NNSL7A`?VBZL7A`NNPS#~j?NN"~jJJV-?IN/$RP#~j@VBGGzRB(\VBN#~jNNPQ?i-2 word preciselyRB rhJJ rh?i+2 word hollywoodVBPB`"NNSI +?VBN(\¿NN(\? i word scrapsNNI +NNS|?5^@RB~jtJJܿi-1 word goodsNN?5^I ?VBDSVBP?5^I VBNS?i-2 word recallJJHzG?NNHzG i word p.mNNS= ףp=RBZd;?NNCli+2 word gideonVBPClJJM?CD"~jVBD/$?i+1 suffix mtmINmVBDMbX@JJ-i+2 word evaluatingVB5^I ?NN5^I i-2 word defectiveVBZnNNSK7A`?RBRQRBGz?i-1 tag+i word VBN auditsNNPSףp= NNSףp= ?i+1 word drivenVBHzGVBPHzG?i-1 tag+i word DT breezeNNV-?NNSV-i-2 word specificallyJJS^I +?RBS^I +JJlNN"~ʿNNPʡE?i-1 tag+i word -START- bostikNNZd;NNPZd;?i word disapprovesVBZ1Zd?NNS1Zdi-2 word coupleNNuV@NNPuVi word hungaryJJZd;ONNPZd;O?i+1 word confirmsRBK7A`?JJK7A`i+2 word urgingNNx&1?JJx&1i-1 word acquired RB-޿IN&1?NNS1ZdNNPM @JJR{Gz?NNjtRBRoʡVBP\(\@WDT/$DTRQȿJJNbX9 i suffix eirNN&1ʿVB1ZdJJS㥛VBZZd;DTSNNS"~NNPClPRP$v@i+1 word squaresVBNnJJ"~j?VBDI +ƿi-1 tag+i word -START- jayNN}?5^INNP}?5^I? i-1 word fund JJ)\(IN?5^I VBZn?VBGPnNN(\@VBNjtWDT1Zd?NNSnRBNbX9?VBDjt@i-1 tag+i word JJ listedVBNMb?JJ= ףp=ҿVBD`"i word foundationNN5^I ۿJJPnNNP/$@NNPSjtܿi+1 word pondsJJOnӿVBG#~jNNA`"?i+1 word launchedJJMNNSFxNNPsh|?NNPSsh|??RBM?NNFx?i-2 word minoritiesNNPS"~j?NNS"~ji-1 word retireeVBZ= ףp=?NN= ףp=i+1 word toursVBZClVBG-NNM@i+2 word shocksJJX9vNNnڿNNPjt@i-1 tag+i word RB onceVBV-RBK7INV-?i-2 word gilmoreNNp= ף?JJp= ףi+1 suffix sedWP/$?CDbX9?NNPS+?NNS㥛 @VBN"~jRBRjt?WDTX9v?JJffffffNNP^I +VBK7?RB`"?INSVBZZd;NNSV@VBP+?DTZd;?MDClVBG5^I VBD;OnCCy&1JJRjti+1 word matchmakingJJ)\(?VBN'1ZNNV-߿i+1 word manager VBS''oʡRB`"NNSV-NNP +?VBG= ףp= JJsh|??NNX9v@POSoʡ?i-1 tag+i word RB exitNN}?5^I?NNP}?5^Ii word assistanceNNMb?INMbi-1 tag+i word DT standingVBGX9v?NNʡEJJK7i-1 tag+i word VBD deemedVBNrh|?JJrh| i-2 word omniNNS?NN i+2 word faceWDT(\JJ-IN(\?NNS(\?VBSNNv/?CDS?i word lifestylesVBZHzGNNPSԿNNS rhNNP%C?i+2 word primeUH9vJJGzIN1Zd?DT1ZdӿNNP9v?RB/$NNGz?CC/$?i-2 word helixNNV-?NNPV-i-1 tag+i word DT thoroughJJ(\?NN1ZdINT㥛 i-2 word joinedNN'1Z?JJClNNPM?NNSK7A`?i-2 word confereesVBNtV?VBDtVi+1 word glutsVBGvNNv?i word promotingVBZoʡVBG?JJ+i word announced WDT+NNSQοNNP5^I VBDףp= W@VBP-VBN ףp= ?JJQ?INDlVBZjtNN rhFWCli-2 word wrongDT~jt?NNSDl?JJGz?NNGzPDT~jtӿRB1ZdVBZ+i-1 suffix isk WDT9vJJd;OVBZK7A`VB^I +NN!rhVBDףp= ?VBNףp= VBP^I +@VBGp= ף?IN/$?NNS&1?i-1 tag+i word VBZ feltRBHzGVBDHzG?i word dedicatedJJL7A`?VBDzGVBNw/?i-1 tag+i word CD packagingVBGV-NNV-?i-1 tag+i word DT autographedVBN(\JJ(\?i word classicJJ9v@NN~jtNNPQi-1 tag+i word NNP reportedVBNX9vVBDX9v?i+2 word corruptVBZ+?NNPSMbPOS+NNPMb?i-1 tag+i word NN metNNSVBN;On¿NNHzGVBDv/@i+1 word peladeauJJS㥛NNPS㥛?i-2 word existingWDTT㥛 ?INT㥛 i-1 suffix lveVBGQ?JJ;OnNNMbX?i word platformsNNSx&1?NNx&1ܿi-1 suffix outVBG)\(?VBNQֿPRP#~j?JJS1Zd?DTy&1RP|?5^?VBV-PDT/$?RBS1ZdIN#~j?NNPSEXJ +VBP|?5^?WPE?NN~jt?NNS-?NNP|?5^?RBRK7A`CDI +?JJRx&1?PRP$#~jVBDGzWDT333333JJK7A`?VBZI +ֿRB1Zd? i word rudderNN`"?JJ`"i-1 tag+i word JJ mathematicsNNS'1Z?NN'1Zi+1 word broaderRB㥛 ?JJ㥛 i word convertsNNSQ?NNQi-1 word contendedDT)\(?IN)\(ܿi word certifiedVBNy&1JJy&1?i word argumentNN~jt @JJ~jtINi-1 tag+i word JJ neighborhoodsNNSMb?NNMbX9RBZd;i-1 tag+i word POS chancellorNNS+NN+?i+1 word nurseNNMbX9?JJMbX9 i+1 word sangVBZ\(\VBPxNNSA`"?NNP+?WP+i word stewardshipNNSMbXٿNNMbX?i-1 word normallyVB(\@RB~jtVBD#~jԿVBN/$VBPZd;?JJK i suffix ils CD/$VBPClWDT~jtRBMbNNS(\"@NNPSZd;@JJ㥛 NNS#"PRPZd;OVBZ+@NNPbX9i+1 word discontinuedVBN/$ݿJJ/$?i-1 word poisonNNS!rh@JJ/$VBZ?5^I i-2 word kageyamaJJK7A?NN+ηIN/$?VB(\ڿWDT/$i-1 tag+i word JJR profitNN#~j?JJ#~jԿi+2 word soundedDTK7@INK7JJq= ףp?NNPq= ףpi word chasingVBGmݿNNm? i pref1 'NNPS/$VBD+POS~jt$@NNSy&1RBR㥛 ''X9v>@PRP5^I @NNPJ +VBZFx?MDX9v @RPx&1JJx&1NNCCL7A`?IN-?VB/$VBPffffffRBsh|? CD'1Z@i+2 word naiveJJsh|??NNsh|?i-1 tag+i word NNS tripleVBn?VBP&1NN/$i+1 word dramaticRBSMbX?JJSMbXRBRQ?VBNx&JJx&?JJRQӿi-1 tag+i word DT nominalJJ@NNʡERBˡEܿ i+1 word c$INI +RBI +? i word castleNNS;OnNN;On?i word monumentalJJV-?NNV-i+2 word meetsNNGzRBQ?EXQVBZ rNNSMb?i-1 tag+i word POS equivalentNNq= ףp?JJq= ףpi-2 word climateVBP(\?NN(\i word inhumanJJE?NNEȿ i word guestNNK?JJJ +JJS"~j i+2 word keepJJ/$NNffffff?JJR`"?NNS~jtNNP+MD-?VBK7?RBR`"޿VBN5^I ۿDTx&1?WP/$?INK?NNPSy&1?VBDrh|WDTGzi-1 tag+i word VBD rightRB{GzNNjtֿJJ$C?VBNi+1 word delegationJJ(\?NNP(\ i word martVBPףp= NNGzRB^I +NNPbX9 @i-1 suffix legNNPA`"ӿVBZK?NNSKNNA`"?i-1 tag+i word , mostJJS ףp= @RBSK7RBHzGVBDMbXi word shostakovichJJ+NNP+?i-1 tag+i word IN timesNNS ףp= ?VBN333333CDzGi+2 word fernandoJJ-NN-? i-2 word parVBp= ף?NNp= ףi-1 tag+i word NNP playsNNPd;OֿVBZ?NNPSNbX9i+1 word categoryDTףp= ?INףp= i word humorNNSX9vNNX9v?i word cigaretteNNK@JJB`"VBDx&1NNSA`"i-1 tag+i word DT defensiveNN%C?JJ%Ci-1 tag+i word VBN readingVBG^I +NN^I +@i-2 word flowsJJuV?NNuVi+1 word stimulationVBKJJK?i-1 tag+i word RB unexpectedlyRBI +?JJI +ֿi tag+i-2 tag VB NNPSVB+?VBNn?JJ+VBDni-1 tag+i word JJ shirtNNS9vڿNN9v?i-1 word towardsJJ rhNNP rh?i-1 tag+i word DT steadyNNSGzJJ +?NNV-i-1 tag+i word CC deviseVB?NN&1JJ/$i-1 tag+i word CC diedVBNSJJ1ZdVBD\(\?i+2 word carpetNNP~jth?NNPS~jthi word embassyVBZ+NNh|?5?JJR?5^I JJQNNPRQ? i word taskVBuVNNSDlNNsh|? @JJK7 i+1 word corn RBRV-VBPq= ףp?DTV-?VB'1ZNN}?5^IRBS"~JJS"~?JJRV-?RBv/RPv/?JJ㥛 ? i-1 tag ''RBRʡEMDffffffNNPSʡECDrh|NN ףp= ?VBD-?VBNZd;?VBP}?5^I?WDT|?5^?RBZd;?VBtV?JJuV?CCGz?PDT$CIN/$?VBZX9v?DTmNNS|?5^VBG;On?FW(\NNPNbX9i+1 word customersRPʡE?JJMbVBDx&1ȿNNS?5^I VBP#~j?NNCl @RBRSINCl?VBG/$ֿVBZ)\(?NNP rVBsh|?JJR%C?TOZd;OWDT?5^I RBʡE޿i-2 word lendersVB&1?NNFxJJ/$NNPrh|?i-1 tag+i word TO throwVBMb?NNMbؿi-1 tag+i word : neverWDTZd;RB333333?NN?5^I NNPL7A`пi tag+i-2 tag JJ CCVBG-?NNS?RBGzNNP!rh?CDL7A`?VBZ&1FWjt?RBRV-WDTPnPRP&1?JJRK?INnѿJJ rh?NNrh|@VBNX9vRP rh?DTL7A`?VBl?NNPSy&1VBD"~VBP(\#i-1 tag+i word PRP$ entrepreneurialJJS?NNSi+2 word outside VBPDlRBV-?RPJJx&1NNQIN%C@DTZd;O?NNSnNNP~jt?i-1 tag+i word VBP believeVBP㥛 ?PRP㥛 i suffix xtyDTCDZd;O?NNP-i-1 tag+i word NNP usesVBZS?RBSi word plasticVBPrh|NN'1Z@JJ"~ i word liableVBP㥛 JJ|?5^?NNx&1i+2 word m'bowNNS+NNP+?i-1 tag+i word TO surfaceVBX9v?NNX9vi+1 word attachJJ1ZdNN1Zd? i+2 word lead NN!rhVBDA`"RBR~jtVBN333333?JJQIN"~RB~jt?VBPK7AWDT"~?NNSbX9?VBGz?i word withholdVB"~j?JJMbX9NNS㥛i-1 tag+i word IN borrowerJJRJ +NNJ +?i+1 suffix winMDT㥛 ?NNPSQ?VBDT㥛 JJy&1VBZV-NNSMbX9ԿNNP ףp= ?i-1 tag+i word JJ relationshipsNN^I +NNS^I +?i-1 tag+i word DT rallyNNZd;@RBL7A`JJL7A`NNPA`"i-1 tag+i word NN sweptNNGzVBDMbXɿVB rпVBNrh|@i-1 tag+i word VB voiceNN7A`?NNP7A`i-1 tag+i word NNPS hopeNN}?5^I?VBD rVBPK7Aпi-1 word criticalNNP?5^I ?NNPS?5^I VBG5^I NN~jt?JJ7A`NNS#~j?i+2 word rekindleJJʡEVBDʡE?i-1 tag+i word RP dodgerJJZd;OݿNNPZd;O?i-1 tag+i word RB adaptedVBNQ?JJQ޿i-1 suffix atzNNPffffff?NNPSffffffi-1 tag+i word IN engineeredNNy&1|CD!rhJJ rhVBNK7A`?i-1 tag+i word -START- standardJJ?NNi-1 tag+i word JJ !YEARCDp= ף?NNx&1NNP"~ڿ i word breathNNx?NNSxi+1 suffix selJJZd;O@NNQNNP(\?INDlVBPi word regulateVBPn?VBPClNN rhi word managesVBZCl@VBK7NNS= ףp=i-2 word meantimeVBG rNN r?i+2 word continueNNPSJJ"~j̿VBN%C̿VB/$?JJSV-INT㥛 VBGK7VBPV-?RBv/NNSX9vNNPq= ףp?NNQ?VBD'1Z?DT= ףp=?i-1 word facilitiesWDTIN?i+2 word sparkedRB㥛 JJR^I +?JJSi-1 tag+i word IN ateVBDCl?NNPCli+1 word investingRB7A`WDT/$JJsh|??IN/$?RPK7ѿVBGsh|? i word hollerVBP+NNK7A`VBZ}?5^IVBK7A`@i+2 word consolidationRBMb?INMbȿi word happeningNN ףp= JJB`"VBG"~ @i+2 word lincolnNN ףp= VBZZd;JJrh|?i-1 tag+i word IN tidbitNN+?JJ+i-2 word earmarkNNn?JJni tag+i-2 tag FW FWNNP%C?NNS%CԿJJQ?NNQ뱿 i word listedVBPnVBN9v @JJZd;O?VBDi word copyrightedVBN"~j?JJ"~ji word takeoversRBnNNSn?i-1 tag+i word IN spreadsJJ/$VBZK7NNS/$?i+1 word externalINK7A`?NNP@NNPS1ZdVBG rhJJˡE?RBK7A`i word overloadNN^I +?NNP^I +i+2 word order VBK7?JJjtVBDy&1INT㥛 VBZSNN'1Z?VBNQ?RBT㥛 @NNSQNNPCli-1 word upwardNNS-?NN-i-1 tag+i word VBP foundVBzGVBN333333?VBD{Gz?i+2 word exceptVB(\RB-޿NNjtJJRCl?JJGz߿INl?i-2 word nobodyVB㥛 ?DTHzG?RB㥛 INHzG i-1 word moodJJ|?5^@NN|?5^ i+2 word told NNPuVNNE@VBD`"?PRPDlѿJJClNNSDl?RPCl?CDDl?VBP`"INCli-1 tag+i word `` solvedVBN333333VBD333333?i-1 tag+i word , haulingVBGJ +?NNJ +i-1 tag+i word TO westernJJd;O?NNPd;Oi+1 word settledVBZV-VBDV-? i suffix can NNPSSNNS VBZ$CVB-CCZd;JJƋ(@IN~jtNNSNNPGzi word reorganizedNNI +VBN/$?JJ(\пi-1 tag+i word NNP publicNNS/$NNZd;O?JJ-ֿNNPx&1i+1 word canada NNRBp= ףDTSNNSxVB~jtJJ333333VBN/$?VBP~jt?INjt @NNPDl?NNPS/$@i-1 tag+i word NNP superagentVBDd;ONNd;O?i+1 word carpet''5^I POS5^I ?i+1 word leonelVBP-NNP-?i-1 tag+i word NN radicalJJV-?NNV-׿ i suffix CFCVBzGNNPzG?i-1 tag+i word CD beatsINA`"NNSA`"?i+2 word tunnelNN^I +VBGZd;O?JJV-i-1 tag+i word CC firedVBNV-VBDV-?i-1 word sensitivitiesRB;OnVBP;On?i-1 tag+i word TO agentsVB/$NNS/$? i+1 word us VBZB`"?NNP?5^I VBI +@RPA`"ۿVBPK7@JJKIN= ףp=?RB"~NN/$VBDx&@CCnVBN'1Zi-1 tag+i word IN proxyJJtV?NNtVi+1 suffix edaNNS㥛NNPS㥛? i suffix hthNNv/JJGz?CDx&1NNS/$i-1 tag+i word VBN testimonyVBNGzNNGz?i+2 word historyCDK7VBPZd;O?JJV-@INQ?DTQNNPSNNPSL7A` @NNZd;Oi-1 tag+i word : collectsVBZv?NNSvi-2 word crushJJSӿNNS?i-1 word upsetRB(\IN(\?i word appliedVBNS@JJ/$ѿDTV-NNP/$?VBX9vRBnҿVBDV-i-1 tag+i word JJ permanentJJ1Zd?NN1Zd i word annualJJp= ף?NNPp= ףؿi-1 tag+i word RB theaterVBK7ANN;On@JJ/$RB"~ji-1 tag+i word POS jointJJB`"?NNB`"i-1 tag+i word PRP$ dressNN rh?JJ rhٿ i word along VBN+INCl;$@VBZnVBDmPDTnVBPB`"RB/$?NNPh|?5RPZd; @JJ/ݤNNX9vi-1 tag+i word DT mappingNN^I +?VBG^I +i-1 tag+i word : leftVBNoʡVBDoʡ?i word undergoneVBNjt?CDjti-1 tag+i word CC gardenJJClVBPn?NNK?i-2 word displayNNSRQJJ"~?NN rhi-1 word rennieNNPSClNNPCl? i word oddsRBK7NNSZd;O@NNPMbNNPS rh@JJNN1Zdi-1 tag+i word PRP griddedVBDq= ףpJJq= ףp?i-1 tag+i word IN absoluteJJy&1?NNy&1i-1 tag+i word RBR engagedVBNS?VBDSi+1 word coolsJJR㥛 NN㥛 ?i-1 tag+i word NN ampleJJ+?NN{GzVBD~jti tag+i-2 tag VB NNS JJR{GzRBZd;O@IN rVBD!rhJJQNNV-RBRCl@VBPGzVBNm?DT+NNSGz?RPi-1 tag+i word RB namedJJy&1VBDjt@VBNK7i-1 tag+i word JJ distancingJJmVBG!rhNNK7A`?i-1 tag+i word NN imperativeNNE?RB+JJʡEۿi+1 word prospectiveVBG1Zd?NN1Zdi+2 word televangelismNNSZd;O?NNZd;Oi+1 word peacefullyNN?JJi-1 word chainedVBZ1ZdNNS1Zd?i tag+i-2 tag PRP WDTVB+RP333333NNQVBD+?VBP rh?RBGz?VBZA`"? i suffix vanNNPSZd;NNCl?JJClNNPZd;?i+1 word spendsNNK7A`?JJK7A` i-1 tag LSVBNVBD?i word allegedVBp= ףVBD/$VBNʡE?JJ/$?IN\(\ i word domainNN$C?JJ$Ci-1 tag+i word JJ interestNNx?NNPxi-1 tag+i word -START- hudsonNNPV-?NNV-i word standstillVBNK7JJ㥛 @NNMi-1 word spokeRPK7?RBK7i word appearedVBNDlJJZd;OVBD)\(@i+1 word ralliesJJK7A`?NNK7A` i word earthNN1Zd@JJV-NNP +i+1 word magnoliasNN/$?JJx&1NNP/$i-1 tag+i word IN rancorJJS1ZdNN1Zd? i suffix ccoJJp= ףDTzGNNSQNN@i-1 tag+i word -START- littleRBX9vNNPffffff?JJI +?i-1 suffix sedDTMbXJJRV-?VBPSPRPQVBGuVVBV-?RBRʡE?RB rh?VBNV-ݿCD\(\VBZ7A`NNP5^I NNSʡE?PRP$}?5^I?IN~jtÿRPw/?JJnNNrh|@VBD(\i-1 tag+i word . useVBV-?NNPV-i-1 suffix queNNPSEȿNN+WDT= ףp=?RB+?IN= ףp=NNPE?i-2 word glossyVBN|?5^?VBD|?5^i-1 tag+i word PRP$ tenderNNZd;?JJZd;i-1 tag+i word PRP planVBq= ףpVBPsh|??VBDuVi+1 word heartwarminglyVBZ+?VBD+i-1 word esteeNNPSK7A`NNPK7A`?i-1 tag+i word JJ floatingVBGjt?JJX9v?NN#~ji-1 tag+i word NNP threatNN"~?NNP"~i-1 tag+i word NNP exchangedJJClVBDCl? i word iraNNPS/$NNX9vVBN/$RBuVNNP @ i-2 word plusRPMbNNClǿCC`"?VBN ףp= ׿JJn?INMb?VBGv/i-1 suffix ein POS'1Z?VBNx&JJDl?NNSClRBDlNNx&1VBD333333@VBZ'1Z@NNP9vi-1 tag+i word -START- sanrakuNNPzG?NNPSzGʿi-1 tag+i word NNP contendVBHzGVBPHzG?i+1 word creditworthyRBRx&?JJRx&i-1 tag+i word NNP lambertNNPS(\NNP(\?i-1 tag+i word -START- eprexRBRQNNPQ?i word westwardRB?NNi-1 tag+i word NN leatherNNS?INSi+1 word organsJJn?NNni word splendidlyVB+RB+?i-1 suffix cueVBZ?5^I NNS?5^I ?NN/$?JJ/$i-2 word translationsNNffffffJJRffffff?i-1 tag+i word NNS heatVBPS㥛NNS㥛?i-1 tag+i word MD leadVB-?NNSVBDDli-1 tag+i word -START- edNNP= ףp=?NN= ףp=i-1 tag+i word , sterilizedVBNMb?JJMbi-2 word ogilvyVBDSRBRS?JJM@NNP1Zd?NNPS1ZdNNMi-1 tag+i word IN ticketNNL7A`?JJL7A`堿 i suffix A-1NNX9vJJX9v?i-1 tag+i word IN runVBG rhٿJJQVB?VBPV-?i-1 tag+i word JJ provisionalJJjt?NNjtֿi+1 word venturesJJmR@NN(\VBNX9vRB/$NNPsh|?VBGoʡi-1 tag+i word , orderedVBNd;OVBDd;O?i-1 tag+i word IN joggingVBG/$NN/$? i+2 word onlyPRPJ +?WPX9v?DTjt?JJOn VBDDl?JJSX9vVBP-WDTX9vNNPrh|VB|?5^ @VBGOn?FW-RBx&1?VBZL7A`?NNPS333333VBN(\INSRPNbX9NNSZd;O׿NNCl@RBS rh?i-2 word lawsuitsINˡENNSM?NNMRBˡE?i-1 tag+i word NNS hitVBPsh|??VBNjt?NN ףp= ׿VBDK7AVBoʡi-1 tag+i word TO levyVBjt?JJjti-1 tag+i word CD workweekNN$C?JJ$Cۿi-1 tag+i word VBP regroupVBPK?NNSKi+1 word report JJNbX9@VBDQ?RBINV-DT~jtNNP"~j?NNPSsh|??NNZd; JJRPnVBN?WDT?VBZx&1NNSZd;O?i-2 word elongateJJ`"NNP`"?i word educationalVBNd;OJJy&1?NNP rhտi-1 tag+i word CC acccountingVBGQNNQ?JJRQi-2 word pennantRBףp= ۿINv?NNRQi word religionNNQNNPQ?i word taiwaneseVBˡEJJn?NNP%Ci word scholarsNNSNbX9?NNp= ףVBZT㥛 пi-1 tag+i word CC continentalVBOnJJOn?i-1 tag+i word CC frenchJJI +?NNPI +i+2 word droppedNNPZd;@VBG`"JJZd;?NNq= ףp i suffix amyJJx@NNxi word speedometerNN~jt?NNP~jti+2 word combustionJJK?CDKi-1 suffix lksRB?5^I IN9vVB-RPDlJJK7A?NNzGVBDZd;?VBP?5^I @i-1 tag+i word JJ creditsNNSK7?NNK7ٿi-1 tag+i word NNP stearnsNNPS?NNPSSi-2 word realizeIN"~?VBZMbp?NNS~jt?RBrh|߿NN+VBDEXS㥛JJ%C@i-1 tag+i word DT likelyJJ?RB i word lieberNNPS/$NNP/$?i-1 word stadiumNNQVBZnNNSn?JJQ?i word interlopingNNQVBGQ?i+2 word warnerVBDZd;O?VBNCl?RBףp= ?NNSZd;ONNPB`"JJK7NNGz?i word minoritiesVBZV-NNSV-?i-1 tag+i word PRP$ accountingVBGh|?5NNh|?5?i-2 word rightNNS㥛VBD/$JJRQINOnÿVBCl?RPnRBʡE@i-1 tag+i word VBZ ceramicJJX9v?NNX9vi+2 word overflowingRBQ?INQi-1 tag+i word NN debateVBPA`"NNA`"? i word boyNN|?5^NNSjtUH?RBlڿNNPCl? i word owesNN rhIN^I +VBD(\VBZ{Gz@VBPˡEi-1 tag+i word PRP offVBZSRPw/@RB1ZdNN+IN;Onڿ i suffix dbyJJ/$?NN/$i-1 tag+i word VBZ buildingVBGClNNV-?JJJ +ɿi-1 tag+i word CD shoppingNNK7?JJK7i-1 tag+i word NNP europeanJJ rhNNP rh?i-1 suffix ileJJS㥛ԿNNA`"?NNS r?RPK7?DT;OnVBPtVοEXbX9ȶ?RBuVCDZd;VBZMbP?JJRzGʿNNPS)\(VBD+RBRv?VBN$C?INDlNNP/$VBGHzG@WDTʡE?i-1 suffix ttyNNSPnJJ(\?NN!rhܿWDTQ?RB rȿINQi-2 word grievanceVBNEJJ1ZdVBSۿVBPFx@i-2 word howardNNPS"~NNP"~? i+2 word cityVBMbX9?RPxJJ @NNx&1VBN/$VBPmRBy&1INn?i+1 word protestersJJrh|?NNrh|Ͽi-1 word rhetoricNN(\VBG(\? i suffix lerVBPGzWDT(\NNx& @FWK7JJRsh|@RPoʡտNNSnNNPp= ף@VBZ}?5^ICDףp= VBNh|?5JJV-VBV-?VBD|?5^RBRn@i-1 tag+i word VBP shoutingVBGV-?JJV-i-1 tag+i word DT spooksNNSffffff?NN&1NNP㥛 i-1 word elaborateVBGDlNNbX9?JJCli+1 word democratNN/$ſNNP|?5^?VBI +޿JJ +i-2 word copyingNN ףp= ?NNP ףp= i-1 tag+i word DT golenbockNNV-NNPV-?i-1 tag+i word CC incorporatedVBD~jtÿVBN~jt? i suffix NAMNN^I +JJ"~NNP +? i word lurchVBPK7A`?NNK7A`i-1 tag+i word RB stodgyJJx&1?VBmJJRI +i-1 word wrote RBCl?RPClDT/$NNP?VBG?VBP rh?VBDINrh|?VB rhNNi-1 word contributeJJR5^I ?RB|?5^?RBR5^I JJINE? i word blankNNS"~JJ#~j<@NNmNNPi-1 word wantsNNd;OFWd;O?i-1 tag+i word JJ attitudesVBZNNS!rh@VBNB`"INB`"i+2 word vomitingNNSffffffINV-WDTV-?NNQ?NNP rhi+2 word racialRBp= ף?JJp= ףпi-1 tag+i word -START- muchJJK7@NNS= ףp=RBV-NNFxNNP~jti-2 word declassifyingJJQNNQ?i-1 tag+i word DT fanNNQ?JJQi-2 word jurisprudenceWDTRQ?INRQi-1 tag+i word `` uphillJJˡE?RBA`"NN +i+1 word detailJJZd;׿NNSX9vRBRv/NNGz?JJRv/?i-1 word glasnost''GzPOSGz?i-1 suffix uteRBR5^I RB+ۿJJR5^I ?CDX9v?NNPJ +?IN$CWDTQ?VBZDl?NNSV-׿VBZd;OJJRQVBDp= ףVBNQNNZd;?VBPFx?DTm?i-1 word puckishNN+?JJ+i word lengthensVBZl?NNSli-2 word presseNNSV-VBDV-?i word sterilizedVBN!rh?JJ!rhi-1 tag+i word , everlastingVBGV-JJV-?i-1 tag+i word WP hardRBR9vRB9v?i+2 word conservationVBNsh|?VBDsh|?? i word courseNNPSZd;NNPZd;?i word respectivelyRBffffff?JJ ףp= NNni+1 word danielVBʡEVBD;On?VBN;On¿VBPʡE?JJv/NNPv/?i-1 tag+i word DT warsawNNPCl?JJCl i word outletVBPV-NNSV-NNˡE@i-2 word wearingJJw/ĿNN/$?JJRffffffi+1 word suggestionsVBNV-JJ333333ۿVBDS?i+2 word letterVBn?NNni-2 word metalsVBD/$VBNGz?VBPh|?5JJSNNPX9v?VBMbPi+1 word resolvedPOSJJv/VBZ?RBv/?i+1 word spareNNV-?RBV-i-1 tag+i word CC continueVBPClVBCl?i-1 tag+i word JJ footageNNS$CNN$C?i-1 word furorRP`"WDTx&1IN/$? i word shellJJSNN|?5^ @CD"~jRBQNNS~jtNNPx? i word arabicNNZd;߿NNPZd;?i-1 tag+i word VB sovietJJ!rh?NNP!rh i word urgeVBPMb?NN'1Z?JJ'1ZVBDMbȿ i-2 word wireNNV-?JJV- i word vegansNNP~jtNNPS~jt?i-1 tag+i word CC reportedNNSx&1VBN^I +VBDGz?i-1 tag+i word `` inflationNNS?NNPSi+2 word stickRP/$?NNPnпINn i word heesNNPSMbNNSˡENNP/$@i-2 word componentsINX9vVBZ +VBMbX9ĿNNMbVBP5^I @JJMb?i+2 word noriegaVBʡE?JJMbXNNQտi-1 tag+i word IN unlocksVBDMbVBZMb?i word includeNN7A`VBDbX9VBPA`"@JJFxVBZX9vNNSX9vVBI +@RP+i-1 word signedIN|?5^NNS}?5^I?NNP(\?RPS㥛RB ףp= @NNK7A@JJL7A`i-2 word arbitragerNN;On?NNP;On i word haltsVBZSNNSS?i-1 tag+i word IN explicitJJFx?NNFxɿi-2 word seemedNN㥛 VBsh|??NNS+JJNbX9?i+1 suffix arrNNPQ?INQi-1 word rekindleVBGZd;OǿJJZd;O?i-1 tag+i word CC aboveVBJJZd;_@NN/$޿IN`"i-1 tag+i word NNP sayNNPtV?VBD333333VBZ(\VBK7VBPGz?i-1 tag+i word NN oldsVBZjtֿNNSʡE?RBNbX9i+1 word conventionalJJ5^I @VBsh|?RBZd;NNx i word loanedVBN"~jVBD"~j?i-1 tag+i word , titlesVBZ^I +NNS^I +?i+1 word demeanorsJJ9v?NN9vi-1 tag+i word NNP laterRBGz?VBDmRBRtVi-1 tag+i word IN sheetrockVBNrh|NNrh|?i-1 tag+i word -START- policyNNM?JJx&1NNP~jti-1 tag+i word PRP$ rollingVBGˡENNPˡE?i-1 tag+i word NNS affectJJ rVBP r?i-1 tag+i word NN bouncedVBN/$տVBD/$? i+2 word voteJJ/$INKRPK?NNSʡE?NNPMVBM?VBGMNNS? i suffix ileNNS/$VBPJ +ɿVBNWRB$CNN)\(@VBDFxRB+ @NNPSZd;VBGJJd;O@JJR}?5^I?CD"~jWPZd;VBZw/FW7A`ڿVB?CCIN7A` @RBSNNPMb?i-1 tag+i word VBP logicalJJbX9?RBbX9i-1 word thingPOS5^I VBN333333WDTM?IN!rh?VBZ5^I ?DTʡEVBD333333?i-1 word redemptionsWDT"~jIN"~j?i-1 tag+i word JJ setbackNNS"~NN"~?i-1 tag+i word IN scheduledVBNZd;OJJZd;O?i-1 word sucksRPV-RBV-?i+1 word strieberNNP(\?JJ(\ i word juliePRP)\(NNP)\(? i+2 word onWDT rh@NNSHzGVBZd;JJSףp= ?PRP$V-׿RPʡE?PRPV-?RBRKCDA`"?VBGx&1?JJR^I +׿VBDK7POSsh|?RB1Zd?VBP(\?VBZT㥛 ?DT5^I PDTS㥛NN&1FW?WRBK7NNPSCl?VBN?INʡECCnJJʡENNPM?i-1 tag+i word VBD filedVBNFx?JJzGVBDʡE? i word worksJJClVBZ33333@NNSѿNNPsh|??NNoʡVBDQJJS+VBP-i-1 tag+i word CD boeingVBG1ZdNNP1Zd?i-1 tag+i word RP fixedVBNMbX9?JJMbX9i-1 tag+i word TO haltVB%C?DT%C̿ i-1 word rimaNNmݿNNPm?i word cautionedNNClVBDNbX9?VBNCl i word talk VBNx&1VBP#~jĿNNSL7A`NNPPnVBbX9@NNx&1@VBDSJJ?5^I PRP$Pni-1 tag+i word VBP innocentsNNPS1ZdNNS1Zd?i+2 word compilesVBPy&1NNy&1?i tag+i-2 tag WRB IN RBZd;O?NNʡEVBDClINZd;OVBL7A`VBG(\DTy&1?NNSV-?VBNCl?JJS㥛@i+1 suffix balJJ+IN?5^I ?DT?5^I NNPK7A`VBGQ?NNZd;O? i-2 tag PRP VBOn?CD\(\JJSJ +UHvϿ''1Zd@PRPZd;?JJRlVBDx @VBP1Zd?RBSSſEXS㥛?IN`"JJQտCCˡE?RP rh?PRP$ rhVBN~jtӿRBR/$?POS\(\TO㥛 ?RBjt?WP9vDT/$NNPS+VBGh|?5@MDRQؿNNDlNNSjtNNP9vPDTMb?WDTˡEVBZ{Gz?i-1 tag+i word IN overbuiltJJ?NNPi word monitoredVBP%CԿVBNX9vJJX9vNNP"~VBDuV@i+1 suffix eceVBG"~?JJffffff?NNGzi-1 word announcementRBE?NNSZd;VBNoʡ?JJEVBDbX9ֿi-1 tag+i word TO investNN ףp= VB ףp= ?JJSGz޿i-1 word sentraVBZ~jtJJ~jt?i-1 tag+i word TO settleNNSQVBQ?i-1 tag+i word POS sovietJJ/$NNP/$?i-2 word twentyRBRZd;OݿRBZd;O?i-1 tag+i word CC talkVBsh|?@VBPx&1NNx&1i-2 word messageRB;OnNNp= ףVBDvVBNmJJsh|??VBZv?RP;On?i-1 tag+i word DT herniatedVBNʡE?JJʡEݿi-1 tag+i word NN receivingVBGL7A`NNL7A`?i-1 tag+i word DT airNN+?JJ+ i word trimVBP(\?JJS㥛?NNP(\VBZd;?RB{GzԿNN/$i-1 tag+i word DT enlargedJJ"~j?VBN"~ji+1 suffix gopVBGA`"JJA`"?i-2 word povertyVBPZd;?RBRMJJRQؿ i word theoryNN/$?JJ/$i-1 tag+i word -START- rallyNNKRBNNP"~ @i-1 tag+i word DT gorillaNNlNNPl?i-1 suffix rorNNS= ףp=WDTx&1RP`"VBZbX9?INףp= ?i-1 word deviceWDT"~JJvIN#~j@ i+2 word boxyJJ= ףp=?NN= ףp=i-1 tag+i word POS crudeNNSxNNx?i+2 word vocalRBR rh?JJR rhi-1 word redfordVBZMbX9DTMbPOSMbX9?RBMb?i-1 tag+i word ) packageNNuV?VBuV i word luckedVBNMbпVBDMb?i-2 word triangleJJ/$?NN/$i-2 word communist NNl?VBP"~RBMbp?IN?5^I ?VBZ"~?RP?5^I JJˡEVBDp= ף?VBNp= ףi+1 word spainNNP㥛 ?VBGM?NNMRB= ףp=ʿINT㥛 i-1 tag+i word VBN disposedJJ/$?VB/$i+1 word somberVBN㥛 VBD㥛 ? i+2 word zbbRBzG?NNSNNPOn?i-1 tag+i word DT quadruplingVBGʡENNʡE?i-2 word laurenVBPGz?NNSv/VBZv/?VBGzǿi-1 tag+i word RB evolvingVBGrh|?JJrh|i word affirmationVBrh|NNrh|?i+2 word anybodyPRP$nJJX9v@RB+VBNd;O޿i-1 tag+i word TO veteranVBQNNq= ףp?JJQ޿i word catalogsNN(\NNS(\?i-1 tag+i word JJ vegetariansNNPSʡENNSʡE? i-1 suffix alNNPSuVNNPuV? i word blocksNNSS?NNSi-1 word commentNN)\(RBR'1ZԿWDT(\?JJFxIN(\RB\(\@i-1 tag+i word , usesINSVBZx&1?NNSS㥛i-1 tag+i word WP filesVBZ?VBi+1 word plaidJJ?NNS+RB/$NN㥛 ?i-1 tag+i word POS benchmarkNNm?JJV-?VBP~jtRBSX9vRBRA`"i-1 tag+i word DT untriedVBNS㥛ĿJJS㥛?i-1 tag+i word DT seventhNNMbX9JJMbX9?i+1 word placesJJSjt?VB ףp= NNS/$JJsh|??NNSi-1 tag+i word JJ declineVBP;OnNN;On?i-1 tag+i word -START- earningsNNSCl?NNoʡNNPh|?5i word sketchesNNS+?NN+i-1 word ammoniumJJZd;߿VBP|?5^NN rh?PRPQi-1 tag+i word DT mileageNNPX9vNNX9v?i-1 tag+i word NNP intendedVBNVBD?i+2 word framedRBE?INEi-1 word flowingRB?NNi word tastelessJJV-@NN\(\UHʡEi-1 tag+i word IN railroadsNNSQ?JJQi-1 tag+i word CC marketerJJRʡENNʡE?i-1 tag+i word DT breakupVBNoʡNNCl?NNSv/i-2 word allowedVBZZd;VBZd;?NNSl?NN/$ i suffix nceVBZGz NNP +@VBGV-NN9v&@FWffffffVBN +VBPSVBn @PDTZd;OCDSNNPSsh|?RP(\VBDd;OJJ!rhNNS(\RBPn@IN"~?WRB\(\i+1 word animalJJrh|NNPrh|? i-2 word walkJJ㥛 NN333333VB333333?RB㥛 ?i-1 tag+i word , lateVBPlRBffffff?JJZd;INCli-1 tag+i word NNP indictmentNN&1?JJ&1i+2 word formerlyJJX9v?NNPX9vi-1 tag+i word RB accusedJJoʡVBDQ?VBNV-?i word impairedVBNoʡJJoʡ@i-2 word argumentRBRv?RBvi-1 tag+i word RB pollinatedVBNS?JJSۿ i word pcbsCD5^I NNSA`"?NNPI +ֿi+1 word curvyVBP%C?NN%Ci-1 tag+i word RB discouragedVBDEؿVBNE?i-1 tag+i word VBG helpedJJI +ֿVBDI +?i-1 tag+i word DT oregonJJ㥛 ڿNNP㥛 ?i-1 tag+i word NNP laneNNP?VBDi+1 word anthraxNNP?5^I VBNw/JJ?5^I ?VBDw/?i word inabilityNNd;O?JJd;Oοi word californiansNNPS-@UH/$NNP i word briefRBMbXɿNN$C?VBNI +JJZd;_@IN rhNNSV-NNPNbX9VBV-?i-1 tag+i word RB loveVBK7ɿNNK7?i word gourmetVBZ/$ÿNN&1?VBDSi-1 word socialistNNPSx&?NN㥛 VBD"~VBN rhJJ@NNSq= ףpտNNPZd;Oi word deductiblesVBZx&1NNSx&1? i word mayanNNStVJJ@NNʡEۿNNPJ +i-1 tag+i word VBN ottoNNQNNPQ? i+1 word pipeNNPQ?JJ}?5^IVBD;Oni-1 tag+i word PRP askingVBGˡE?JJˡEi word xVBCl׿LS'1Z?SYMʡE i suffix ntoMDd;ORPX9vRBnNN`"޿PRP?5^I JJFxINx&1@i-1 word delaysVBDoʡVBNoʡ?i-1 tag+i word VBN riotingVBG+NN+?i+1 word structuresJJCl?VBG7A`?NN)\(i word shoemakingVBGPn?NNPni-2 word colombiaNNS= ףp=?JJK7A?NN rh i suffix AgaNN-NNPGz?NNPS"~ji-1 tag+i word NN advertisedVBNSVBDS?i word superviseVBP;On?VBD;On i suffix 989CD/$@JJx&NNPni-2 word regroupVB rh?JJR rhi+1 word order NNK7?WDTFx?JJw/?DTT㥛 ?NNPS㥛 VBMbJJR/$@RBRˡEWPFxi-1 tag+i word , aboutRPS@RB!rh@INT㥛Ġi-1 word employVBGK7A`NNK7A`?i-2 word commissionsRB+?VB+i-1 tag+i word VBZ containedVBNK7A?JJK7Aпi+1 suffix agsVBD(\?VBN$C˿VBP(\ſJJ$CVBGV-NNPn @i-1 tag+i word CC restartedVBN|?5^?VBD|?5^i-2 word paribas VBZףp= ?VBP rhIN9v?NNSףp= NNP&1ҿNNPS&1?VBGK7A?$ףp= NNK7Ai+2 word mass.NNPnNNPPn?i+2 word stoltzmanVB+?VBN+ i suffix entVBGh|?5VBP333333ÿVBRQ?NNPSB`"NNzG@VBNffffff?VBZClNNSVJJSq= ףp@DTClJJRuVJJ/ݤ @VBDʡE@FW)\(?RBR/$ۿRBS%INECDNNP1Zd?i word franchiserJJR/$NN/$?i-1 tag+i word JJ cheapRBx&1?NNx&1i-1 word filipinosWDTZd;INZd;?VBDSVBQVBPx&1@i word continueNNSGzVBMbX9 @NNQ VBDQVBPV-o@RBV-VBZ-i-1 suffix ustNNV-?CD}?5^I?JJRX9v޿JJ%CVBZ|?5^DTffffff?VB{Gz @VBDOnPDT +?IN;OnNNSV-?NNP-VBNCl@VBPV-WDTOn?PRP$S㥛?VBGffffffֿRB(\?PRPS㥛i+2 word hovnanianNNV-?JJ1ZdVBNi-2 word chooseNNE?JJx&1JJRZd;Oi-1 tag+i word VBZ dramaJJmݿNNP/$NNʡE?i-1 tag+i word VBZ enteredVBNn?JJni-1 tag+i word VB offshootsNNS|?5^?JJR|?5^i-1 tag+i word DT reportingNNQ?JJQi-1 word responsibilityVB"~VBP"~?i-1 tag+i word CC wickedlyRBl?JJli word genentechJJPnNNPMbNNPSZd;OWDTNNuV @i-1 tag+i word VBZ hostileJJCl?JJRZd;VBNV-i word sverdlovskJJ?5^I NNP?5^I ?i-1 tag+i word RB tradingVBG/$NN/$?i+1 word bizarreRBRK7?JJRK7i-1 word recognizedIN!rh?RB!rhܿi word falteringVBGl?NNl¿i+2 word associatesVBN\(\JJ(\?NNP~jt?VB+RBvNN)\(?i-1 tag+i word IN awakeVBPCl绿JJCl?i+2 word engineeringVBNX9vJJjt@NNP(\i+1 suffix diaNNMbVBDףp= VBNmտJJ9v@INʡE@NNP!rhi+2 word peterNNP +?JJENN= ףp=?VBDJ +ɿ i word acresNNGzIN= ףp=VBZ= ףp=NNP~jt?NNS'1Z?i-2 word exposedNNJ +?JJQ?VB|?5^i-2 word boothsRB}?5^IIN}?5^I?i-1 tag+i word -START- sharesNNS ףp= NNP ףp= ?i+1 word buildingsNNFx?JJClNNP ףp= i tag+i-2 tag NN NNSEX= ףp=?VBZV-@NNP1ZdNN#~jWDT)\(?VBPjt?JJtV޿INV-?VBGDlDT㥛 RPV-RBRI +޿VB㥛 RB333333?NNSI +VBNM@NNPSʡE?VBD333333i-1 tag+i word `` seethingJJNbX9?NNNbX9i word inspectorsVBZl?NNSli-1 tag+i word , exportersNNSV-?FWV-i-1 tag+i word -START- elNNPX9v?NNX9vϿ i-1 word pulpVBDʡEVBNA`"@NNi-1 tag+i word RB triesVBZA`"?NNSA`"i-1 word expenseVBZ㥛 ?NNSV-NNS i+2 word hideVBNCl?JJCli+1 word installedNNSˡERBˡE?i-1 word germanyPRP+JJK7VBZ+MD+?PDTK7?POS+?i-2 word confrontationIN1ZdNN1Zd?i-1 tag+i word NN isolatedVBN'1ZJJA`"?VBD-?i+1 word palominoJJ333333NNP333333?i-1 tag+i word POS fairNN;OnJJd;ONNPPn?i-1 word dutifullyVBNPnVBDPn?i word graveyardNN-?JJ-i+1 suffix licVBGMbX9?JJR/$RBR/$?IN!rh?POSA`"VBDuVJJS+VBZ/$ @JJT㥛 RB!rhܿRBS+?VBNHzG?VBP)\(?NNP-?VBq= ףpͿNN)\( i-1 word persuadesVBZClNNSCl?i+1 suffix n'tNNSV-NNPI + MDn?VBx&1?VBP7A`P@JJv/PRP$ʡENNPSK7A`ݿRB+FWzGVBDNbX9?VBNClINoʡVBZףp= ?i-1 tag+i word IN pediatricJJ rh?NN rh i suffix mmaNNS?RBSi-1 tag+i word JJ periodNN333333@NNP333333 i word rayonNNrh|?JJrh|i+1 word motorolaWDTlIN#~jDT&1@i-2 word whereaboutsPRP$rh|?PRPrh|i+1 word intelligenceJJ?NNPClǿVBZ/$տVBPMbXPOS/$?i+1 word depositoryNNPX9vJJX9v?i-1 tag+i word NNS isVBZ9v?VBP9vi-1 tag+i word CC sportsVBZp= ףNNPSZd;ONNP\(\?i+2 word reducesNNbX9?JJClۿNNPV-i-1 tag+i word POS classNNʡE?NNPʡEi-1 suffix tteNNPSQNNPQ@i-1 word supplyingNNp= ף?JJp= ףi-1 tag+i word PRP passedJJDlVBD"~jVBN9v@i-1 tag+i word -START- evidenceNNx&1?NNPx&1i-1 tag+i word VBZ offenseRPClNNCl?i+1 word rentalIN5^I ˿NNPJ +VB(\?NNGz?VBPtVJJ5^I ? i word sandraNNp= ףJJS㥛NNPNbX9?i-1 tag+i word NN rideVBZd;ONNd;O?i+1 word peopleJJRQ?PRP\(\VBZHzG?VBNuV?NNS㥛?VBDSJJS= ףp=?JJ+@WPSVBPˡE?WDTjt?DT'1ZVBS㥛NNPSjtֿRBFxRBS= ףp=NNSMbXVBG\(\?CD?INq= ףp@NNP(\ i word trivialJJZd;O?NNZd;Oi-1 suffix yenRP|?5^?VBGV-?JJ333333NNQRB= ףp=IN|?5^i+1 word mitreNNPx&ٿVBPNbX9NNp= ף?i-1 word independentJJ/$?NNS/$NNP{GzNNPS-?NNMbXѿVBP)\( i-1 word alNNPuV?NNPSuVi+2 word jewelerVB5^I NN5^I ?i+2 word exhibitionsJJI +?RBI +i-1 tag+i word RB fragmentedVBN/$JJ/$?i word flickeredVBNv/VBDv/?i-1 tag+i word NN commissionsNN\(\NNS\(\?i+2 word recentlyINv/VBZh|?5NNPK7?NNPS㥛 ?JJZd;O?NN'1Z?WDTv/?RBw/i+1 word suggestNNPSbX9NNSbX9?i+2 word bureauJJR(\µNNP(\µ?i word appealedVBNp= ףVBDp= ף?i tag+i-2 tag VBN MDRBtV?INtVi+2 word reformsWDT"~VBGuV?JJuVIN"~?i-1 tag+i word JJ emphasisNNSOnNNOn?i-1 tag+i word VBP eliminatedVBNffffff?JJffffffi-1 word emergencyVBZ)\(NNStVֿNNK?i word reformedVBN333333?JJ333333i-1 suffix dia JJˡE?VBPw/ĿINK7ANNSjt?NNPQ@VBV-NNx&1@FWffffffRB(\ſNNPS"~ji-1 tag+i word RB worthyJJ/$?NNS/$i+1 word infestationJJ-?NN-i-1 tag+i word POS retailJJ`"NNP`"? i word scoresNNSjt?JJ+NNPMbؿi-1 tag+i word CD rublesNNS333333?NN333333i-1 tag+i word NN trainerNNSOnNNOn?i+1 word consideringVBP$C?NN$Cӿi word secondsNNS$C?NN$Ci-2 word runoffJJK7CDK7? i suffix \/BNNQ?JJQi+2 word koppelVBʡERBS/$NNPS㥛?i+2 word acceptedNNPV-?WDT)\(JJV-߿IN)\(?i+1 word delayedRBA`"?NNA`"i-1 tag+i word NNP agreedVBNK7ٿNN/$VBDNbX9@i-1 tag+i word JJR leisureNNQ?JJQ i word isaacJJ{GzNNP{Gz?i-1 tag+i word VB closeRBQ?VB/$?VBPQRPCli-1 tag+i word NN solidarityNNP?5^I ?JJ?5^I i+2 word englishVBD+VBPGz?JJtVVBZ+?NNSDlNNP(\ @NNPSSNNx& i+2 word rockJJ+?NN+߿i+1 word oprahVBV-?NNS#~jNNQi+1 word across RP9v?NN7A`?INZd;O׿VBG rh?NNSHzG?RBS?VBDK7A`VBNx&1@JJ?5^I NNPMbX9i+2 word organicNN"~ҿNNP"~? i word everyJJ^I +DTNbX9@NN;OnRBQNNP"~j i-2 word temporaryNNPSx&1NNZd;O?VBDMb?VBNMbJJZd;ONNSx&1?i+2 word droolingVBZB`"?NNB`"i-1 tag+i word : cutNN +VBDK7AJJK7?i+2 word discountJJ}?5^I?VBD}?5^ICDS㥛NNS㥛?i-1 word outcomeVBZd;O?NNSd;Oi+1 word sharesPRP"~jRBnCDQ@PRP$Gz?NNPSV-?JJRQ?POS?RBRQNNI +CCVBNv/?VB~jt?NNSPnVBG%CVBDK7ѿ''Zd;VBPMbDTX9v?JJRA`"@NNP(\?i word veteransNNPCl?VBZSNNPSd;OֿNNSffffff? i word swissJJq= ףp@NNPSMbȿVBNNNNNP~jt i-1 tag+i word NNP payVBGzVBPx?NNM?NNP/$i-1 tag+i word -START- penaltyNN9v?JJ1ZdNNPB`"i-1 tag+i word VB quietNN(\?JJ(\i-1 tag+i word , castsVBZ?NNSi-1 tag+i word IN philippineNN~jtJJy&1?NNPˡE?i-2 word randomNNv?JJv߿i+2 word threateningNNS+VBN+?i-1 tag+i word IN priorCDnJJn?i-1 tag+i word NNS thoughtVBNGz?VBDGzi-1 tag+i word DT dubiousJJ/$?NN/$i word penaltiesVBZ`"ֿNNS`"?i-1 tag+i word NN economiesNNS +?NN +ֿ i word animalNNPSx&1JJ!rhNNV-@VBP+RB/$VBZB`"NNSNbX9NNPx&1?i-1 tag+i word RB fundedVBN-?JJ%CܿVBDHzGi-1 tag+i word , fearVBP\(\NN\(\?i-1 tag+i word CC writingVBGrh|?NNrh|i-2 word gainedPDTʡE?NNʡEJJZd;?VBNZd;i word chemicalsNNPS/$@NNSv/ݿNNPV- i word nyseNNPSHzGѿNNPHzG?i tag+i-2 tag PDT MDVBP/$VB/$? i word wiringVBGףp= NNףp= @i-1 tag+i word '' showsVBZFxNNSJ +?VBDNbX9i-1 tag+i word NNP promotingVBZoʡVBGoʡ? i suffix ArtNNʡE@NNPSNNPSv߿i-1 tag+i word IN hypoglycemiaNNNbX9?JJNbX9 i suffix enyVBP^I +?INZd;OVBZlVB9v?NNV-ͿVBD ףp= i-2 word accustomedVBGT㥛 JJT㥛 ?NNJ +?VBJ +i-1 tag+i word IN sexNNPh|?5NNSK7ANNZd; @i+2 word curtisJJ(\ڿNNP(\? i+1 word sadRBS?NNSi-1 tag+i word VBG addressNNSʡENNʡE?i-1 tag+i word IN knopfNNS/$ӿNNP/$?i-1 tag+i word PRP findVBPS?VBDS i suffix HerPRP$ffffff @WRBB`"NNPjtNNSQi-2 word guaranteesJJ{Gz?NN{Gzi-1 tag+i word PRP warnedVBZ+VBD+?i-1 tag+i word '' pilotIN/$ƿVBZxNNMbX9? i-1 word west VBxƿNNPS+?VBDx?NNP+VBZ+?VBGQ?NN'1ZJJR7A`VBP?5^I JJv/@i+2 word drugsRBGzNNx&ѿVBDS㥛VBNK7?JJEԸ?NNSK7A?i-1 word decisiveNNJ +@JJJ + i-2 word end VBNQ?JJS?JJRjtDTMbX?NNP rhݿVBʡERBrh|CC}?5^INN{Gz?RBRjt?NNSm?i-1 tag+i word VBZ committedVBNV-JJV-?i-1 tag+i word VB capitalJJZd;ONNZd;O?i-2 word backedNN/$?JJ/$ i word bedVBX9vNN@RBʡEÿJJʡEVBNT㥛 i-1 tag+i word POS releaseNNFx?JJFxi-1 tag+i word JJ indicateVBPZd;?NNZd;i-2 word hertzVBZ{Gz?NNS{Gzi+2 word gorensteinWRB7A`NNP7A`? i-2 word ` PRPoʡVBZX9vNNP-VBoʡ?NNMb @POS~jtCDFx''9v @VBPoʡi-2 word assignmentJJ}?5^I?NNuVRBQi-1 tag+i word VBZ whitleyJJ(\NNP(\?i+1 word marwickNNlNNPl?i+2 word deceptiveNNxVBDx?i-1 word christianNNPSQ?NNSQi+2 word factoVB?JJ i suffix boaNNOn?JJOni word covetedJJ +?VBD rhVBNzGҿi-1 tag+i word NNP disclosedVBN"~jVBD"~j? i+2 word heatNNS㥛?JJS㥛i-1 tag+i word JJ centerNNSKNNK?i-1 tag+i word VBZ constantJJGz?NNGzi word carpetingVBGlNNl@ i-2 word rankNNSw/NN7A`@JJ333333i+1 word dollarNNvVBDA`"?JJRQ?RBRK7AVBPQJJtV@INZd;?NNPK7i-1 tag+i word PRP$ sovereigntyNNSGzNNGz?i-1 tag+i word DT basketFW+NN+?i word bacteriaNN ףp= JJClVB rNNST㥛 @i-1 tag+i word WDT marksVBZFxNNPFx?i+1 word commonwealthNNPuV?JJ#~j?CDoʡi-1 word priceVBDClVBN(\DT}?5^IܿNNSQ@NNPSh|?5?RB!rhNNQ?JJ/$IN}?5^I?VBZtVVB~jtÿJJR rhVBP}?5^IRBR rh?NNPV-׿i-2 word headingRBS㥛JJS㥛?i-1 tag+i word IN orbitCDnNNSuVNNS? i+2 word sasNN rhNNP rh?i-1 tag+i word NNS metalNNm?JJmi-1 tag+i word IN parentNNjt?JJjti word houlianNNPjt?JJjti-1 word rationalizationWDTp= ףINp= ף?i-1 tag+i word IN softnessNN rh?JJ rhi word marcosesNNSMbX9NNPx&NNPSy&1?i-1 tag+i word JJ barrierNNV-@JJRףp= JJ/$տi-1 word outcryVBNZd;ORBZd;O?i+1 word toutingNNSv?NNvi+2 word licenseJJ= ףp=?NNP= ףp=i+1 suffix lerNN&1JJS)\(?VBPp= ף?JJ`"ֿINI +NNS+NNPv?NNPS/$?RBS)\(VBGX9v?RBS㥛?VBD-VBN~jt?CDDl?VBZI +?PRPDlѿi-1 tag+i word NNP aideNNCl?INCli-2 word advisersINL7A`?NNPv/ͿDTL7A`NNPSK7?JJ^I + i word quotedVBNtV @JJ`"VBDFxi-1 tag+i word : totalsVBZV-NNSV-?i-1 tag+i word , costumeVBPʡEJJ}?5^I@NNi+1 word continues DTL7A`пJJSVBPEWDTQ?EXx?RB|?5^?INd;OVBZJ +VBGGzNN}?5^I@i+2 word paintingFWx?NNPrh|PRP$tVi-1 tag+i word WRB firstRB"~?JJ"~i-1 tag+i word , upscaleJJZd;?NNZd;i-1 tag+i word IN refinedVBNsh|?JJsh|??i-1 tag+i word POS tailNN ףp= ?JJ ףp= i-1 tag+i word VBP believedVBN(\VBD(\?i-2 word classroomsVBZZd;?NNSZd; i-2 word '60sNNSSCDS@i-1 tag+i word VBP moreVBNMbX9JJR'1Z?RBR{Gzi-1 tag+i word NNS southRBK7?NNK7i-1 tag+i word VBN pregnantNNffffffJJffffff?i-1 tag+i word DT steepNN\(\ϿNNSClJJ$C?i-2 word transportNNrh|NNPrh|?i-1 tag+i word NN acrossINFx?RBZd;VBDʡEi+1 word crowdsVBZClRBRK7A?RB;On¿i-2 word recognizeJJrh|NNPrh|?i-1 tag+i word IN inadequateJJS?NNSi-1 tag+i word RP reassuringJJʡE?VBGʡE i word parkerNNS+NNjtNNP@i+1 word hostileNNGzINy&1?WDTy&1VBGGz?i-1 word chosenNNSx&1NNx&1?i-1 tag+i word VBP commonlyJJʡERBʡE?i-1 word consulJJx&1?NNx&1i-1 tag+i word RB revivedVBNw/?JJA`"VBDd;O i+1 suffix byVBN!rh@JJ;OnWPMRPS@NNx&1 @FW9vVBDlVBP+WDTx&VBZnNNS㥛 @NNPnVBB`"?RBR7A`VBGB`"JJSClIN-?RB-?RBSV-?NNPSZd;JJRDl?DTMbCDv/?i-1 tag+i word NN owedVBDI +ƿVBNsh|??NN;Oni-1 tag+i word ) confrontsVBZv/?NNSv/i+1 word lyonnaisNNffffffֿNNPffffff?i-1 tag+i word DT fadsNNSʡE?JJʡE i+1 word dyerJJMbNNPMb?i-1 word factionWDT\(\?IN\(\i+1 word throwingNNS1ZdNN1Zd?i+2 word votedRBףp= ?NNL7A`?CD{GzԿJJ{GzDTʡE?NNPZd;Oݿi-1 word lovesNNGz?NNPGzֿi-1 tag+i word JJS betterRBR+?JJR+i word directoryNNv?NNPvi word unexpectedlyJJI +ֿVBDSRBFx? i suffix bosPRPMbJJL7A`NNSףp= W@NNPףp= NNx&VBN㥛 i-1 tag+i word DT naacpJJGzNNPGz?i word managerNNMNNPM?i-1 tag+i word JJ changedNNS7A`VBNʡE?JJOn?i-1 tag+i word VB satNNS!rhVBN!rh? i+1 word layNNPSjtNNSjt? i+2 word '70sNNSHzGNNClCDV-@ i word deeJJ5^I NNP5^I ?i word convertedVBNV-?JJV-i-1 word carrierJJ rh?NNy&1NNP rhNNSy&1?i-1 tag+i word NN leveragedVBDMbX9JJffffff?NNsh|?? i suffix furNNSvJJ'1Z?NN"~ҿi word directorNNSۿNNP?NNS+ i-1 tag+i word VBZ entrepreneursVBZ1ZdNNS1Zd?i-1 tag+i word RB recordedVBNPnVBDPn? i+1 word clipJJ#~jJJRp= ף?NNV-RBRV- i suffix EDTNNKJJX9vNNPsh|??i-1 word neatlyVBDHzGVBNHzG?i-1 word intersectionsVBN= ףp=?RBQVBD(\i-2 word updatedNNPSmNNPm?i-1 tag+i word CC makeNN1ZdVBJ + @VBP= ףp=i-2 word incapableVBGl?JJq= ףp?NNnVBN{GzԿi word diabeticJJNbX9NNPNbX9?i-1 word internationallyVBGMbXJJMbX? i+2 word shedVBx&1RP㥛 NNZd;?JJMbVBZ\(\?NNSZd;NNPMb?i-2 word couponsNNSK7A`NNK7A`?i-1 tag+i word JJ quotronNNPX9v?NNSX9v i word linearJJx&1?NNx&1i-1 tag+i word PRP$ rhetoricNNS;OnNNI +?JJ9vi-2 word postedVBGDlJJl?NNK7A i+1 word longVBZL7A`NNSL7A`?NNP~jth?RBx&@NNxVBNffffffJJQIN|?5^ʿi-1 tag+i word NN maintainsVBZ"~j?VBD"~ji+2 word cradleRPʡEINʡE?i-1 word yieldingJJR~jt?RBR~jt i word findsVBZrh|?NNSq= ףpVBD rhi+2 word poorerRB\(\?JJ\(\߿i-2 word encourageJJbX9?NNbX9޿i-1 tag+i word RB permeableVBv/ͿJJv/?i+2 word focusedVBG rNNK7A`?JJy&1Կi-1 tag+i word JJ forcesVBZ"~NNS"~?i-2 word adaptingNNSx&JJQ?NNli-1 tag+i word , sayingNNT㥛 VBGT㥛 ?i+2 word judge VBS?NNV-?VBZSDTSӿNNS/$?NNP)\(?IN"~j?VBGV-JJ)\(VBDMb?VBN5^I ?WDTClRBZd;? i word limitNN r@FWClVBN~jtVBP^I +?JJClVBV-?NNPS/$i-1 word levelingRB/$?NNbX9IN rؿi+1 word siemensINV-?RBV- i word notesVBPzGRBSVBZB`"۹?NNSQ@NNP~jtNNPS|?5^?NNSi-1 word sorbusNNS㥛?JJS㥛i-1 tag+i word -START- hughesNNPX9v?NNSX9vi+1 word electionsJJ!rh?NN!rhi+1 word sapiensNNV-@NNPV-i word retrievalNNS rNN r?i word shimmeredVBNjtԿVBDjt?i-1 tag+i word WRB collectivesVBZ%C̿NNS%C?i+1 word believingINoʡRPoʡ?RB|?5^?VBD|?5^i+1 word producedNNPSCl?JJ rhWDT rh?RBV-INx&1DT7A`?NNSV-?NNP{Gzܿi word cuddlesNNS㥛 NNP㥛 ?i+2 word judgmentVBHzG?VBPHzG i-1 word rev.NNPCl?NNPSClɿi-2 word townshipVBZQ?NNSQi-1 tag+i word DT conditionNNM?JJMi-1 tag+i word IN herbicideNN(\?JJ+ӿNNPV-i-2 word cooganNNPST㥛 NNPT㥛 ?i-1 tag+i word NNP produceRBZd;ONNA`"ۿVBP(\?i-1 tag+i word NNS somewhereVBP-RB-? i word woesNNSx?NNxi-2 word increasinglyRBףp= ?JJףp= ۿi-1 tag+i word `` beeperNNx&1?JJ/$VB(\i-1 tag+i word CD platformsNNSx&1?NNx&1ܿi+2 word mohanJJuVNNPuV?i-1 tag+i word JJ bonoNNSp= ףNNQFWzG?i-1 tag+i word NNS earlierJJR/$VBPh|?5RBR rh?RBHzG?INQi-2 word carolinasNNPS +NNP +?i word trustcorpNNP(\?DT(\i-1 tag+i word IN paintedVBNʡE?JJʡEi-1 tag+i word POS moreRBR rh?JJR rhi-1 suffix ohnNNPoʡ?NNPS7A`NNA`"?VBDףp= i-2 word communistsNN%C?VBD?5^I ?CCjtVBN?5^I RBjt?NNS%CԿi-1 tag+i word FW hundredCD+?VBD+i+2 word distortedVBGPn?NNy&1JJE?i-1 tag+i word CD designsNNSrh|?NNrh|i-1 word exercisableNNPS㥛?$S㥛i-1 tag+i word DT whirlwindJJV-?FWV-i-1 word dignitariesVBNHzGٿVBDHzG?i word lawsuitsNNSQNNsh|?@RB ףp= NNPS㥛VBZjti+1 suffix ung VBZB`"NNPCl?NNPS/$JJMbVBDClRBR/$?JJR/$WDT +NNQ@WP9v?VBPOnRBy&1?INDl?i-2 word debentures VBnVBZMbXNNSMbX?NNP|?5^RBd;O޿NNMbXVBDx&1?VBN)\(@JJX9v?i+2 word titaniumNNS +?NN +i-1 tag+i word , unhappinessNN/$?VBNGzJJ9vi tag+i-2 tag `` INVBK7A?FWOn?NNPA`"?RBRVBG)\(?VBDjtVBN^I +WDT1Zd?RBv/?VBZECDjtֿUH&1?NN r?EX"~j?NNS'1Z?RP+JJ?5^I ?DT rhi-1 word notingDTT㥛 WDTJ +INtV@i-1 tag+i word DT glamorousJJK?NNKi+1 suffix sueVBD}?5^IRB rh?NNSGz?VB rhѿVBGʡEۿJJsh|??NNjti-1 suffix ypeNNV-@JJX9vNNP\(\i-2 word erroneousVBZ= ףp=NN= ףp=?i+2 word lopsidedPDTZd;?JJZd; i+1 word - JJx&1NNnSYMffffff@LSx& @INB`"?NNS7A`NNPMbX9?RPB`"ٿVBPQRBZd;VBCl׿i-1 tag+i word NNS experiencedVBN#~jܿJJ9vڿVBDGz? i word teaVB/$NNSZd;ONN/$?i-1 tag+i word VB changeVB-?NN!rhJJ~jti-1 tag+i word DT songNNJ +?JJrh|NNP9vʿi-1 tag+i word DT stereoNNʡE?JJʡEi-1 tag+i word VBG paidNNClVBN~jt?JJx&1̿i-1 tag+i word JJ placementNNCl?JJCli-1 word hastilyVBN/$?JJ/$޿VBD9vi-1 tag+i word IN easyVBN㥛 ڿJJZd;NNPI +?i-1 tag+i word : steveVBrh|NNPrh|?i+1 word bitterlyRBS?JJSؿi-1 tag+i word IN bacillusNNPSnNNv @JJѿNNP~jt i+2 word gridVBNˡE?JJˡEi-1 tag+i word DT preliminaryJJDl?NNDl i suffix uanNNPSMNNSJJ`"@NNZd;ONNP/$i-1 tag+i word `` jakeVBQNNCl?JJV-׿NNPq= ףpտ i-2 word reidVBnVBDn?i-1 tag+i word JJ waterworksNNPS333333NN333333? i-2 word fatNNx?JJv/NNSx?i-1 tag+i word POS secondJJx&?NNSHzGѿNN+RBS㥛?i-1 tag+i word CC politicsNNSx&1?NNx&1i-1 tag+i word JJ systemNNK?JJ"~NNPx&1пi+2 word petrochemicalsNNS?NN i-1 word rudeNNSS?JJSi word quotationsNNSMbX?NNPMbXi-2 word counterJJx&NNS㥫?NNSCl?i-1 word rally VB(\NNPS/$NNClPOSJ +?IN5^I ?VBGuVͿRP"~ڿRB(\?VBDDl?VBN(\PRPd;OJJSVBZA`"ۿi+1 word caughtJJSNN+VBDS? i-1 word hearNNS+?RP+JJ+?RB+IN333333?DT333333i+2 word algeriaNNSZd;ONNPZd;O@i-1 tag+i word DT dallasJJMNNPM? i word helpsVBx&1RP㥛 JJ㥛 NNMVBZ)\(@i-1 tag+i word NNP pipelinesNNPʡE?NNPS`"?NNS/$i+1 word ralphNNZd;O?VBNV-߿JJZd;OݿVBDV-?i+2 word sappingVBGRQNNRQ?i-1 tag+i word : meanwhileNNS#~jRB= ףp=?CDMbi+1 word althoughJJQINX9v?DTX9vRBECCE?VBNQ?i-1 tag+i word NN pleadNNV-JJ?5^I VBD~jtӿVB`"? i suffix wigNNS= ףp=ڿNN= ףp=?i-1 suffix hesJJZd;O?NNPSZd;O?VBD r?INI +?NNSw/NNMbVBP"~j?VBN rVBZV-NNP{Gz?VBB`"RBZd;O?RBRA`"JJRA`"?RP~jtȿi-1 word salinasNNPʡE?FW;OnJJKINxƿi+2 word giveawayFWV-?NNPV-i-1 tag+i word NNP dataNNPSSNNSV-NNGz׿NNPS@ i suffix AdDToʡNNV- @JJMbXRB!rh̿NNPv/i-1 suffix cerVBGZd;O?NNDlWDT+?JJMbX9IN+VBZ= ףp=?NNS+? i word cibaRBˡENN~jtNNP?5^I ?i-1 tag+i word IN businessNNPK7?JJK7 i suffix MACNNP7A`?NN rhJJ~jtIN~jt i word weldedVBNx&?FWx&i-1 word assumedDT +WDTMbRBrh|@IN i-1 word left JJ+?VBG9vNNPMb?CCɿNNSQRBףp= INDlVBMRP/$@NN;On?FW#~jVBZp= ף?i-1 word tracksNNףp= ?NNPףp= i+1 word pigNNrh|?JJ5^I ӿNNPCli-1 tag+i word NNS subsidizeVBPQVBQ?i+2 word directiveJJK7A`NNPK7A`?i-1 tag+i word NN capitalJJ1ZdRBR|?5^VBZbX9NN`"@i word earnigsNNS5^I ?RBR5^I i-1 tag+i word DT sensibleJJ%C?NN%Ci-1 tag+i word DT alaskanJJ r?NNP ri+1 word rubinNN/$NNP/$?i-1 tag+i word , practicedVBNsh|?VBDsh|??i+1 word casesVBsh|?NNlJJSB`"?RBSB`"VBN"~?JJrh|?NNPCl?i-1 tag+i word VBG disasterNN(\?JJ(\ҿi+1 word orangeVBGʡE?NNʡEJJZd;NNPZd;?i-1 tag+i word CD pointsVBףp= NNSףp= ?i-1 word threatNNzGVBNJ +?JJd;Oֿi-1 tag+i word CC divingNN^I +?JJ+߿VBGI +ֿi-1 tag+i word RB excludedPDTVBN?i-1 tag+i word NNS testedVBNh|?5?JJ= ףp=ҿVBDKi word enrolleesVBZSӿNNSS?i+2 word administerVB1ZdJJR1Zd? i+1 word catsVBGB`"?JJB`"ٿi+2 word controlledVBZffffffNNSffffff?NN?JJ/$NNPV-? i-1 word onceRBZd;O?VBG+NN&1RBRQVBNHzG @VBx&1JJS9v?JJRS㥛@DT"~jRBS9vNNPbX9JJ`" @VBD^I +?VBZV-i-1 tag+i word NNP reassureVBX9v?VBDX9vi-2 word immunitiesVBZB`"NNSB`"?i word bailiffsNNSGz?PRPGzi-1 tag+i word NN stemVBPtVNNtV? i-2 word gripVBNMb?JJ|?5^NNPCl?i-1 tag+i word VB feministsVB%CԿNNS%C? i suffix CRANNPffffff?NNffffff޿i-1 tag+i word IN viewsNNSS?NNSi-1 tag+i word VBZ weldedVBNx&?FWx&i-2 word impedeNNL7A`RBL7A`?i-2 word feastedVBI +VBNI +?i-1 tag+i word JJ pullNNSKNNK?i-1 tag+i word NNS deterVBPS?JJ(\NNNbX9 i-2 word coedNN~jt?VBD~jti+1 word agreementsVBZd;?VBN(\?JJ333333?NNtVVBD(\i+2 word slideVBA`"@VBPA`"VBG= ףp=JJ/$@NNS i word yoshioJJ/$NNP/$?i+1 word cementVBNzG?JJI +VBDV-i+1 word galleryNN-˿JJ-?i-2 word victoryNNM?JJM i suffix 9.4CDGz?JJGzi-1 tag+i word CC vnetNN7A`NNP7A`?i-1 tag+i word VBG idleNNPSq= ףpJJq= ףp?i-2 word pointsDTMbX9@VBףp= VBGʡERBp= ףпNN?CDףp= ?JJy&1?INMbX9i tag+i-2 tag VBN , VBZCl˿VBG?RBvNN㥛 ?CD(\µIN333333?RPZd;?DTV-NNPrh|VBX9vNNSl?RBRGzJJ'1Z? i word expertNNP"~VBD-VBPZd;׿NNd;O?JJV-?i-2 word correctVBK7?JJˡE?NNV-NNPSi+2 word discussingRP(\RB7A`?JJE?INS i+1 word ribsPRP$B`"?PRPB`"i word mascaraNNSK7A`NNK7A`?i+2 word alfredNN/$?JJ/$i-1 tag+i word , paintVBZGzVBPףp= ?NNx&1i-1 tag+i word NNP aptVBD rhJJA`"?NNP)\(i-1 tag+i word PRP proceededVBZp= ףVBDp= ף?i-1 word colombianVBZ#~j?NNS#~ji word chickenNNS9vNNʡE@JJZd;i-1 tag+i word JJ addressRBSINq= ףpͿNN9v? i word crimeNN7A`@NNP rhNNPS{GzNNS+i-2 word nicknamedVBV-NNPV-?i-1 tag+i word JJ shoppingVBGףp= NNףp= ? i word skyNNPSw/UHw/NN|?5^?JJX9vNNPzG? i suffix ukeNNV-NNPV-?i-1 word ambulanceVBGmݿNNSJ +?NNHzG?i word temporalJJQ?NNQ i+1 word hillNNbX9޿NNPS?JJ$Ci-2 word gottliebVBGZd;O?JJZd;Oi-1 suffix eveRBSV-ǿJJSV-?RBd;OJJZd;VBDS㥛INZd;O?NNSV-NN`" @VBN}?5^I?DTx&?WDTp= ףEXL7A`?VBKVBZV-? i suffix kisNN5^I JJOnNNS%C?i-1 tag+i word WP$ hairNNSSNNS?i-1 tag+i word JJ zipserNNx&1NNPx&1?i-1 tag+i word PRP lookVB1Zd?NN1Zdi+1 suffix cksPDTWDT&1?DT$CNNS;OnڿNNPףp= JJ"~?VBP(\?RBrh|?VBZQ?NN-F@JJSSVBN+ IN +?JJR?5^I ¿UHS㥛VBp= ף?NNPS9vVBGw/@VBD$Ci-1 word backersVBNZd;OVBDZd;O?i-1 tag+i word VB spendNN/$VB/$?i-1 tag+i word NNS monitoringVBG(\NN(\?i-2 word thousandsNNSQ?NNP/$?NNPS1Zd?VBGnNNS㥛JJ1Zd i word solvesVBZtV?NNStVi word unileverNNPn@INMbXNN+RBʡEͿCDh|?5i-1 tag+i word NNS theaterVBPS㥛NNPS㥛?i+1 suffix rtsPRP$L7A`?WDTuV?NNw/@RBSIN`"FWjt?VBPsh|?JJ\(\?NNSoʡ?CCףp= @VBZx&1?DTMbX9RBMbVBv/?NNPS$CJJR r@RBR;On VBGZd;VBNn?RP +@VBD5^I ?PRPL7A`NNPjtPDT/$CDK7A`i-1 tag+i word VBD baggageNNtV?JJtVi-1 tag+i word IN turkeyNNK7?JJK7i word backlitJJl@NNli+2 word carry RBbX9?VBDZd;O?JJS㥛ĿNNSrh|?VBPZd;OJJRM?VBG(\?NNClVBN1Zd?RBRMڿi-1 tag+i word -START- larryNNPGz?JJGzFWHzGi-2 word conferNNV-?NNSV- i-1 word noonNNSZd;߿NN ףp= @NNPʡEi+2 word !YEARNNPSRBRMbX9?VBNMb?RPClDTZd;OݿNNP"~jNNd;O?VBPS㥛UHZd;JJRQVBuVJJSK7A`ſINFx@NNSffffff?VBZK?VBGoʡ?JJ(\VBDʡE?WDTB`"RBE@CDI +@i word bronfmansNNPS!rhNNSV-NNPL7A`?i-1 tag+i word NN droppedNNSףp= VBNK7A`VBDS@i-1 tag+i word , arguingVBGPn?NNPnпi+1 word exposureNN= ףp= @JJKNNPSi-1 tag+i word `` infinitiNNʡENNPʡE?i-2 word relations NNPrh|?JJ"~jNNCl?JJSy&1RBSʡEVBNy&1WDTʡE?INQVBClVBDy&1?RB^I +?i-1 word painewebberNNX9vVBDX9v?i-1 tag+i word DT excessesNNSX9v?NNX9vi-1 word spiritedDTZd;ONNtV?NNPQi+1 word permitsVBK7VBGRQؿNN7A`@JJ"~jCDFxi+2 word gauloisesRBuVFWףp= VBD r?i+1 suffix gan DTFxٿJJQVBGˡENNKVBD$C?VBN$CWDTI +@IN ףp= NNS333333?NNPSw/?NNP%C?i-1 tag+i word IN ironNN-?JJ-i-2 word proveVB1ZdNNjt@VBN\(\JJ= ףp=i-1 tag+i word , expectedVBNJ +@RBZd;VBDh|?5 i-1 tag+i word NN sweetenedVBN(\JJ-?VBDx&1 i-2 word buyNNK?RB'1ZܿCCJJSS㥛?RBRPn?VBZI +?CDnٿRPQVBP}?5^I @JJZd;O?INZd;NNPJ +VBRBSX9vοJJRPnNNSGzNNPS ףp= ?i-1 tag+i word NN preparedVBNQ@NNSVBD;Oni-1 tag+i word NNP playwrightNN$C?JJ$Ci-1 tag+i word JJ stepsNNSNbX9?NN?5^I RB1Zdi-1 tag+i word JJ refusalNNSQNNQ? i-1 word itemJJrh|?NNZd;VBDGz?WDTX9v?RBvINX9vֿVBGzi-1 tag+i word NN handlingVBGʡENNʡE?i-1 tag+i word IN quotationsNNSMbX?NNPMbXi-1 suffix raiNNS;OnVBNKJJ/$?i-1 tag+i word `` devastatingVBGGz?NN"~jJJ&1i word intervenedVB+NNSV-VBNL7A`ؿVBDS㥛@i-1 tag+i word VBN markNNMڿNNPM?i-1 tag+i word -START- visaNNZd;NNPZd;? i word piecesNNSCl?NNCli-1 tag+i word NNP pennantVBSNNˡE?JJSӿi+2 word signalVBP$CRB$C?i word composerNN+?JJ+NNP+i word executeVBQ?JJQ i suffix ARENNNbX9?JJbX9NNP9v i-1 word cars VB(\?NN~jtVBP/$RB&1VBDZd;?VBNjt޿WDTGz?IN&1?DTA`"i-1 tag+i word TO angeloNNP'1Z?VB'1Zi+1 suffix ulaJJHzG?NNHzGi-1 tag+i word RB construedVBNZd;?VBDZd;Ͽi+1 word technologiesNNPSZd;NNQ?VBDn?VBNp= ףVBPnJJjtNNPV-@i-2 word devotesJJʡE?NNʡEi-1 tag+i word CD rubleNNzG?JJ333333NNS(\ i+1 word soNNMbp?NNSK@RBRx&1?POSMbRB333333?VBZ"~j?JJ= ףp=VBP9v?NNP!rh?DTw/?VBٿVBGGzVBDCl?JJS|?5^VBN+?''5^I ?WDT?IN\(\߿RPbX9޿JJRjti-1 tag+i word IN defenseNNPSmݿNNPm?i word custodyNN9v?JJ9vҿi+1 word significant NN+VBDMbX?RBSGz?RBRV-?VBN/$VBPV-JJx&1?VBJ +?DTjt?INHzGVBZNbX9?NNSGzRBx&1? i word marks INZd;OVBmݿVBDV-PRP$mJJ$CVBZV-@NNSQ@NNPtV?RBSNN/$FW$Ci-1 tag+i word CC penaltyNN/$?JJ/$i-1 tag+i word RB slapsVBZDl?VBDli word reasonablyRBZd;?NNZd;߿ i word gunnedVBNJ +?VBDJ +i word bondholdingsNNS rh?VB rhi-1 tag+i word POS dreamNN/$?JJ/$i word replacedVBD+?VBZ+VBNZd;?JJZd;߿i+1 suffix bowNNPGz?JJGzi-1 tag+i word -START- rightRB333333?NN333333i-1 tag+i word `` developedVBNʡEJJ/$?VBD#~j i word clubsVBFxѿNNPSx&1?NNS r @NN&1NNPffffffi word enthusiasticJJQ?NNQi+1 word fervorJJ +?RB +i-1 tag+i word DT stolenVBP{GzNNB`"VBNd;O?JJ\(\?i+2 word poundINQVBGz?RBQ?NNQ?VBDy&1?VBPGzJJK7Ai word speculatedVBNʡEVBDʡE?i-1 tag+i word NN drivingVBGx&NNx&? i suffix CALJJ(\@NNP}?5^INNPSQ롿i-2 word refurbishingNNS333333NN333333? i-1 word freeJJ\(\NNSV-?NNP`"NN^I +?JJR-?RBR!rhi+1 word receiversNNV-@JJVBv/i-1 tag+i word NN imposedVBNffffff?VBDffffff i word wickerNNx&1?JJ+JJRK7A i word leaksNNSK7@NNKJJ^I +VBZ"~ji-1 tag+i word NN finishesNNS rh?NN rhٿ i-1 word soldNNKJJSS?JJRM?RBRuVJJףp= IN~jtؿRP/$?RB@i-2 word thirdsi-1 tag+i word POS lowerNNPMbX?NNףp= JJRI +?JJK7A`i-1 tag+i word VBN scheduledVBN$C?JJ$C i word remicNNPSSJJrh|NNP-@i-1 tag+i word JJ sopranoNN}?5^I?NNS}?5^Iܿi-1 tag+i word -START- nearbyUHRB1Zd?NNPGzJJMbX9?NNPSvi-1 word banalVBZrh|NNSrh|?i word legislativeVBPK7JJS?NN(\i+2 word thoroughlyJJ= ףp=?NN= ףp=i-1 tag+i word IN cnwNNPSOnNNPOn?i word grindingVBGffffff?JJffffff޿i tag+i-2 tag . NNPSNNP-?NNPSn?NNSnѿNN-i-1 tag+i word NN blockNNS5^I NNS?JJK߿i-1 tag+i word -START- krenzNNS?5^I NNP?5^I ?i word contendedVBZOnVBN-?VBDPni-2 word williamNNB`"?RB|?5^JJʡEͿNNPT㥛 ?NNPST㥛 i+1 word comingVB-ۿVBP rh@NNsh|??JJ%Ci-2 word instigatedNNSCl?NNCli+2 word antarVBD ףp= ?VBN/$VBP~jtINMb?DTMbVBGMb?NNMbi-1 tag+i word IN hypercardNN= ףp=NNP= ףp=?i+1 word temperaturesVBV-VBPV-?JJJ +?NNJ + i+1 word holyVBZK7A`?NNSK7A`i-1 tag+i word JJ eitherCCGz?NNQRB)\(?i-1 tag+i word ) bondNNMbX9NNPMbX9? i word tornFWClVBN~jt?JJS?VBS㥛RBrh|NNjti+1 word athleticsVBN'1ZNN\(\JJB`"?i tag+i-2 tag VBZ VBDRP|?5^IN|?5^?i-1 suffix demNNPS(\?NNP(\i+1 suffix trePOSVBPNbX9JJX9vNNPQ@VBPnNNp= ף?i-2 word restructureJJ~jt?NN{GzNNPʡEi+1 word notedNN~jtNNP~jtNNPSv/? i suffix ineVBNMRBmINClPRPn?NNPSVBD+UH(\NNP!rh?VBP@CDHzG@JJ +@NNMbX@CCʡERBRy&1VB#~j@JJS!rhNNS333333JJRffffffi-1 tag+i word DT burdenJJMbVBPK7A`NNS(\NN5^I @i+1 word uncheckedRBMb?NNMbi+2 word comedyJJSGzCD rhJJ333333?NNSFx?NNPSKNN^I +RBSGz?i-1 tag+i word VBZ castVBNDl?NNDli word deliversVBZx?NNSxi+2 word machinesJJOn @RBS㥛NN{Gz?VBDV-JJRʡERBRʡE?VBNףp= i-1 tag+i word DT stripNNSMbNNjtĿNNP rh?i-1 tag+i word RB spiesNNS rVBZ r?i-2 word personnelJJV-?NNV-i-1 tag+i word NN plungeVB$CNN$C? i word firm JJRQ@VBZvNNPq= ףpRB{GzVBD+VBPK7NNS^I +NNx@VBNK7Ai+1 word matthewsJJSNNGz?NNP+@i-2 word pyszkiewiczRBˡEINˡE?i-1 tag+i word NNP caseNNPS$CNNP$C?i+2 word contraceptivesNN#~j?RB#~ji+2 word averagedNNn?RBni-1 tag+i word , respectivelyNNnRBffffff?JJ ףp= i+2 word weekliesNNSV-?NNV-i-1 tag+i word DT premiereRBSJJl?NNuV?i-1 tag+i word DT soccerNNˡE@JJˡEi+2 word campanerisVBZClVBnJJ +? i word bulkNNS/$VB(\NN|?5^?VBPjtֿJJM?DTx& i suffix uleNNSHzGVBv/?NNT㥛 @RBSS㥛VBN;OnJJPn? i word chaosVBPsh|?NNSNNp= ף?i-1 tag+i word JJ flowsVBZQ?NNQi+2 word liftsRP~jtRB~jt?i-1 suffix shiNNHzGVBD?VBNSRB/$VBZ5^I ?NNS5^I NNPzG?NNPS\(\?i-1 tag+i word JJR nationNNM?NNPMi-1 word decideJJCl?INClǿi-1 tag+i word CD hitsVBPClNNSCl?i-1 tag+i word WRB askedVB= ףp=VBNX9vVBDˡE?i-1 word shiftRP rhRBK@NNZd;ORBRPn?JJRPnJJ-ƿVB333333?i-1 tag+i word -START- beaconNNbX9޿NNPbX9?i+2 word votersVBT㥛 пNNT㥛 ?i+2 word cherubsVBGffffff?NNffffffi-1 word paramountNNPSClNNSq= ףpNNP/$@ i suffix anoNNSV-NNl@JJ ףp= i-1 tag+i word NNP robertsonNNPS-NN7A`NNPK? i-1 word part WDT333333?NNPE?VBGJ +?RBX9vNN'1ZVBPGz?JJ}?5^IIN~jtVBZX9v?NNSX9v i-1 tag UHVBK7A?RBffffffNNn?VBPK7APRPsh|?JJʡE?NNPw/?i-1 tag+i word JJ anymoreJJRClRBtV?INS㥛i-1 tag+i word CC improperJJx&1@NNL7A`INtVi word bilbreyNNPPn?NNPni+2 word bioresearchNNQ?JJQٿi+2 word robberiesVB'1ZܿVBP'1Z?i-1 tag+i word NNP announceVBPrh|?NNrh|i-1 tag+i word VBP deeplyRBMb?JJMbi word governmentNN?VBN&1JJ~jtNNPCl? i+1 word ontoVB333333?RP;OnNN#~jVBDjt?VBNjtԿJJ-ƿINM?VBZh|?5i tag+i-2 tag JJS VBNNNStVNNtV?i+1 suffix oon RBrh|?INSVBZMڿDTCl?NNSM?NNPnڿVB!rhNN}?5^I̿VBN/$?WDTMb?EX= ףp=JJ(\?WPJ +i-1 tag+i word JJ americansNNPSV-?NNSNbX9NNPS˿i-1 tag+i word TO porkNNJ +?VBJ +i+2 word fearingNNSHzG?RBHzG i word hyperJJCl?NN?5^I RBK7A`RBR~jti-2 word scrutinyJJS?NNPSp= ף?JJRMbX9ĿNNSNNPjti-1 word herbalNNSZd;ONNZd;O?i word convenienceJJjt@VBffffff޿RB/$NNDlѿNNPSi-1 tag+i word NN circularsNNSV-?NNV-i-2 word judgeRPʡEJJV-?NNSS?VBffffff?VBDM?JJRGzVBN㥛 ?RBMb @DT(\PRP$V-?NNPZd;ONNy&1INq= ףp?VBP-PRPV-WPi+2 word liftedNNI +?JJx&1?NNP/$NNPSQi+1 word routesJJK7?NNˡEĿNNP~jtؿ i-1 tag+i word -START- agreementNNP rVBN(\ڿNN +?i+1 suffix htsNNGzVBDQRBR!rhԿPOSMb?NNPS/$@NNS\(\DTEȿNNPw/?VBGh|?5?RB"~'')\(VBPx&1VBN5^I ӿJJR!rh?VBrh|?PDTK7JJK7?i-1 word quarterlyNNPSw/VBGm?NN)\(?WDTV-JJsh|?NNSoʡ@i word confuseVB)\(?JJ)\(i-1 word suggestDTrh|RBffffff?NNzGIN+? i word userJJʡERB9vNNMb?i word advisoryNNMb NNP5^I ?NNSQJJˡE @i+1 word chidesRB|?5^?JJ|?5^i-2 word respectsVB&1?VBP&1NNSGzNNGz?i-1 tag+i word JJ viewingsNNSB`"?NNB`"i+1 word mahfouzJJMb`?NNMb`i-1 tag+i word JJR returnVBP|?5^NN|?5^?i+1 suffix ked VBPQֿRB= ףp=@INQNNS r?NNPRQVBQ?VBG-VBD$CWDT+VBZ|?5^JJKNN rh @WP+?i word locationsNNPSp= ףNNSp= ף?i-1 tag+i word DT originalJJv/@NNv/i+2 word mackenzieJJx?NNPxi-1 tag+i word NN assortmentNNm?JJmi-1 tag+i word JJS expectedVBNmJJm?i-1 suffix jor JJRxJJ{Gz?NNS +?NNPS+?VBGoʡ@NNn?VBD|?5^VBNףp= ?VBZS㥛NNP+ i-2 word darkVBPMVBN+JJA`"?i-1 tag+i word NNP aplentyVBZ-JJ-?NN|?5^ѿi+1 suffix annJJ5^I NNP5^I ?i-1 tag+i word VB foundVBN/$?NN/$i-1 tag+i word NNP gotVBDoʡ?NNPSoʡi-1 tag+i word JJ politicalJJʡENNPʡE?!i-1 tag+i word PRP$ supercomputerJJRZd;O߿NN +?JJQi-1 tag+i word IN midwesternNN= ףp=@JJ$CNNP;On i suffix inzNNP+?NN+i-1 word philippeNNPT㥛 ?FWT㥛 i+2 word tapesNNSQ?JJQi+2 word napkinNNPS}?5^INNP}?5^I?i-1 tag+i word VB supportNNQ@RBy&1VB/$VBP/$i+2 word considerJJS$CJJ\(\?NNSKNNPI +NNPSK7?RB^I +߿NN(\@RBS$C?i-1 tag+i word -START- salomonJJOnNN~jtNNPm? i suffix ope CDB`"VBP+@IN$CVBZ&1VBM@JJ#~jNN}?5^I@VBDˡERBx&1̿NNSx&1NNPZd;Oi-1 tag+i word JJ artistNN/$?JJ/$޿i+1 word beforeRBRؿINClVBP%CNNSQ?NNPClNNPSʡE@VBDMڿJJSuVVBNw/?JJRK?RPS@VB ףp= VBG?5^I ?RB NNm@JJ#~j?VBZQi word stealthNNoʡNNPoʡ?i-2 word disobedienceJJjt@NNjtVBD#~j?VBN#~jRBMbX9?IN/$VB1Zdi-1 tag+i word NN skiddedVBNffffffVBDffffff?i-1 tag+i word JJ sentVBNK7A`?NNK7A`i-1 tag+i word NNP gainNNzG?NNPzGi-2 word treatmentNNM?JJM¿i-1 tag+i word CC consolidateVBCl?NNCl˿i-1 tag+i word NN olympicsNNPST㥛 ?NNST㥛 i word alisardaNN-NNP-?i+2 word raiderJJSrh|RBSrh|?i-1 tag+i word CC adverseVBClJJCl? i suffix OyVBZףp= NNPS~jtNNPh|?5?i-1 suffix tovVBZZd;׿NNSZd;?i+2 word folsomNNPn?JJPni word holdersNNSE?NNPEi+1 word complainedNNS?CDSi+2 word deltaCC#~jVBZ#~jԿNNSףp= NNPFx? i-2 word ? VBD%C?VBNZd;VBZ5^I ?INuV?NNSKNNP$CNNPSZd;O?NN= ףp=?JJ+i-1 tag+i word NN combinedVBNZd;O?JJS㥛ĿVBDܿi-1 tag+i word , developersVBZy&1ܿNNSy&1?i-2 word whetherVBNuVINZd;?DTmRPh|?5?NNx&VBZZd;O?VBK?JJ rhVBDMbX?NNSuVݿNNPSZd;OտPOS/$ſVBPMbXRB= ףp=?NNPQ@i-1 tag+i word DT midstNNp= ף?NNPp= ףi+1 word jargonNNh|?5?JJh|?5i-1 word average VBDlVBGbX9ȶ?NN+η?JJK7A`@VBZ"~jNNPffffffRBv׿VBDMbX?VBNoʡſIN"~RPףp= ÿi-1 word spentJJST㥛 ?RBS\(\NNSnٿ i-1 suffix awUHp= ף?NNp= ףi-2 word backingNNPSL7A`?NNSL7A`NN9v?JJ9v i+1 word a\/sNN rhNNP rh?i-1 tag+i word VBG beatNN'1Z@JJ~jtRBX9v׿VB?5^I i pref1 xSYMʡEVBCl׿LS'1Z?i tag+i-2 tag VBZ WRBINK?DTKVBP%C?PRP%C̿i-1 tag+i word MD thatDTjt?WDT/$?VBJ +RBx&1ȿINx&1?i-1 tag+i word RB relevantVBvJJv?i word confirmingJJnNNv/VBG+@i word currentNNPKJJ@NNZd;O i suffix 750CD+?NNP+i+1 word avoidedRBV-?VBN;OnNN/$ƿi-1 word stirsRPtV?NNPtVi+1 word quakeRBDlDTDl?i-1 tag+i word NNP oaksNNPS|?5^@NNP|?5^i+1 word shelvesJJRʡENNʡE?i word explainVB%C?RB㥛 NN;Oni+2 word regulationNNFxѿVBm?VBG|?5^?JJ~jt i-2 word zipRBףp= RP(\NN rh?JJ rhINffffff?i+1 word tidbitJJ+?IN+i-1 tag+i word IN petroleumNNuV?JJuV i-1 word porkNNSV-?NNV- i-2 word r.i.NNV-?JJV-i-1 tag+i word '' growlsVBvVBDClVBZ/$?i+2 word proposingVBN\(\ϿNNP\(\?i-1 tag+i word VB brisklyRB~jt?JJSݿINh|?5 i word playsNNPSNbX9NN rhVBDT㥛 RBMbȿVBZ/$@NNSm?NNPd;Oֿ i-2 word coNNq= ףp@NNPq= ףpi-1 tag+i word VBZ cheeryJJ +?NN +i+2 word overseeWDTZd;O?INZd;Oi-1 tag+i word NNP distressfulJJQ?NNPQi+2 word demolishVBx&1VBNx&1? i word kidsVBʡENNS333333@NN%Ci-1 suffix essCC~jt?NNSI +JJRQRB/$?VBMNNPSx&1?FWʡERBRoʡEX;OnINq= ףp?DTmͿMD/$VBGB`"?VBZX9vJJ7A`?NNQ?VBDFx?VBP{GzVBNZd;?WDTn?NNPrh|i word inningsNN/$@NNS/$i-1 tag+i word JJ refocusVBbX9?NNbX9ƿ i word except INK7A*@VBZzGNNS#~jNNP&1JJ㥛 RBnVBDnCCsh|?RBRZd;OVBN9vVBsh|?NNi+1 word candlesNN"~?VBD"~i+1 word klerkNNPx&1?IN㥛 FWK7A`i+1 word marketingRPZd;JJ1Zd@NNS㥛?VBN&1ҿRBtVDTI +?NNPy&1?i-1 tag+i word RB turnVBZZd;VBZd;?i-1 tag+i word DT deltaNNS㥛?NNPʡENNPS^I +ǿi+2 word trendINˡE?VBGv/?VBZQ?RPˡENNoʡVBDQVBP)\(?JJ$Ci-1 tag+i word VBG littleJJ'1Z?RB'1Zi-1 tag+i word DT grudgingVBGMbXJJI +?NNʡEi-2 word convertJJ#~j@VBN|?5^NNV- i word shortsNNSX9v?JJX9v i+2 word alNNp= ףVBp= ף?i-1 word ackermanVBZOnVBDOn? i-2 word bidsNN$CRBx&1JJ$C?DTK7?WDT ףp= i+1 suffix ibbNNP(\?NNS(\i-1 suffix anoJJQNNSDl?NN+i-1 tag+i word VBP stayedVBClVBNCl?i-1 tag+i word -START- optionNNJ +?NNPJ +i-1 tag+i word : fultonJJsh|?NNffffffֿNNPh|?5?i word disappointmentNNMbX?JJV-NNPni-1 tag+i word JJ copyrightNNSQJJL7A`?NNʡEi-1 word soldiersVBN +JJ +?i tag+i-2 tag `` VBP VB"~?JJV-?VBNB`"RBRCl?VBPzGڿNNSPnVBG?NNQVBD~jthRBm?NNPd;O? i-1 tag+i word -START- organizedNNPMWRBV-VBNFx?IN!rhԿi-2 word lacksNNX9v?JJX9vi-1 tag+i word JJ grindsVBZ-?NNS-i-1 tag+i word NN eggsRBh|?5NNSh|?5?i+2 word poresVBNRQNNRQ?i-1 tag+i word WDT helpVBPrh|?NNrh|#i-1 tag+i word -START- poughkeepsieJJ rNNP r?i-1 tag+i word CC messrs.NNPSffffff?NNPffffffi-1 word dangerousVBPS㥫NNSjt?NN;On?JJsh|?տi-2 word motorsVBG7A`?NNnѿVBD7A`RBR9v?JJR9vʿCDn?i word coatingsVBZx&NNSq= ףp?NNq= ףpNNPx&?i+2 word creditwatchVBNB`"ٿVBDB`"?i-1 tag+i word JJ dutiesNNGzNNSGz?i-1 tag+i word DT refinancingVBGFxNNFx?i-1 word genialJJ+?NNP+i-1 tag+i word RB completelyRB rh?JJ rh i word federsNNPS'1ZNNP'1Z?i-2 word writeWDTK7A`?INK7A`i-1 tag+i word JJ fellowNN{Gz?JJ{Gzi word quotronNNSX9vJJX9vNNEԸNNPjt@i-1 tag+i word JJ sweepNNS+NN+?i-1 tag+i word VBN stolenVBNbX9?JJbX9޿i-2 word accountedJJRˡE?RBK7INV-@DTjtJJQ?NNjt?RBRˡEi-1 word supermarketVBZA`"NNSA`"?i-1 tag+i word CC unswaggeringVBGmտJJm?i-1 tag+i word VBZ spottyJJ}?5^I@NNQRBV-i-1 tag+i word JJ standstillJJ㥛 ?NN㥛 ҿi+1 word benignRB1Zd?IN1Zdi-1 tag+i word `` differentJJ"~j?NNjtܿNNP1Zd i suffix ATONN-JJ-NNPZd;? i+1 word drugNNS VBN= ףp=@RBRK7AJJ333333@JJRK7A?NNPV-VBMi+1 word thinksNNbX9NNPbX9?CDʡEPRPʡE?i+2 word arlingtonNNzGNNPzG?i-2 word burnhamNN/$CD/$?i-1 tag+i word IN semiconductorNN?JJ= ףp=ڿJJRV-տi+1 word shafferNNS㥛ܿNNP r?JJd;Oi-1 tag+i word CC fulfillVBDFxVB rh?VBPSӿi-1 tag+i word -START- canadianJJS㥛NN%CNNPX9v @i+2 word sensationalJJV-?NNV-׿i-1 tag+i word WDT nyuVBZ9vNNP9v?i-1 tag+i word NN showdownJJjtVBN+NNx&1? i word logicNNSFxNNFx?i-1 tag+i word VBN feltVBP㥛 VBD㥛 ? i word anscoRBvNNPv?i-2 word plansVBDA`"?RBRuV?VBN rhͿRPrh|RBV-¿NNSK7ACCX9vJJ&1VBZGz?JJRuVVBGQVB9v?NNPn?VBPw/?i word backpedalingVBGZd;O?NNZd;Oi+1 suffix howJJClWDTzG?VBZ`"?VBGV-NNSK7DT(\µ?INq= ףp?NNPsh|??VB$C @VBN|?5^VBPZd;OͿRB?5^I RPn?NN rhVBDK7?FWV-POSM@i-1 tag+i word , eagerVBZq= ףpJJףp= @JJRQNN|?5^i-1 tag+i word JJ driveNNB`"?JJB`"i word filipinoNNPK@VBZd;JJ&1?NNzGRBRZd;CDMbPRBZd;i-1 tag+i word NNS rawVBP rhJJ rh?i-1 tag+i word VB audiencesVBZQ˿NNSQ?i-1 word greaseNNSA`"?VBGv/NNrh|׿ i-2 word feeRBw/?INw/i-1 word floatJJx&1RBx&1@i+2 word worriedNNPSy&1NNSףp= ?NNjt?NNP㥛 i-1 tag+i word IN borrowedVBN(\?VBD(\ i word gaspVBʡE?VBDʡEi-1 tag+i word JJ candidJJK7?NNK7i+1 word wordedRBV-?JJV-i-1 word synchronousJJl?NNl¿i-1 word palmsVBNKVBDK? i suffix madJJS㥛 @VBZd;VBNʡERBMbRBRZd;i-2 word expendituresNNPS/$NNS/$?i-1 tag+i word NN saltwaterNNSlҿNNl?i-1 tag+i word JJ raiseVBsh|?VBPPnNN^I +?i-1 tag+i word JJR twitchJJ rhVB rh?i+1 word complex VBG~jt?JJX9vINV-NNPjt?NNPSjtԿNNh|?5?RBS-?JJS-RBRv/?JJR;Oni-1 word financiersVBNMbX?VBDMbXi-1 tag+i word , orderlyJJ㥛 ?RB㥛 ҿi+1 suffix xirWDTClDTCl?i-1 tag+i word DT headwayNNSmNNm?i tag+i-2 tag NN PRPVBZn?NNSQ?VBD ףp= i-2 word qintexVBZ rh?NN rhi+1 word banningNN+?INbX9?DTbX9VBG+߿ i word silentJJ`"@NN`"i+1 suffix uumJJX9v?RB/$NNP!rhܿi+2 word legitimateNNK7ANNPK7A?i+1 word partyNNK7A`ݿPOS%C?JJ?5^I DTClNNPB`"@VBV-NNPSSVBGPn@i+2 word winfreyVBV-?NNS#~jNNQi-1 tag+i word DT questionVBP r?NN+?NNPx&1i-1 word cerealNNSʡE?VBGnڿVBNK7A?NN~jtVBDK7Ai-1 tag+i word NNP buildVBZ +VBT㥛 ?VBD rh i word bondedNN/$VBN/$?i-1 tag+i word -START- letNNPMbX9VB(\@RB1Zdi-2 word financeVBPV-JJZd;VBZI +NNSX9v?NNoʡ?VBDuV@VBNMbX9 i+1 word lawNNPMbVBK7NNPSK׿VBGffffff?NN rh?JJʡE?NNS"~j i+1 word wearVBZʡENNL7A`?JJףp= i-2 word sulyaNN= ףp=?JJ= ףp=i-1 tag+i word DT literaryJJv/NNPv/?i-1 tag+i word RB aboveVBh|?5RB"~?VBD^I +JJNbX9ȿIN!rh?DT$Ci-1 tag+i word VBD publicNNRB~jtӿJJK@i-1 tag+i word VBP concludingVBGx&?JJx&i-1 word smoothlyVBNjt?NNjti tag+i-2 tag , CDVBGV-?$-CD"~?EX +?VBNʡE?WDTQJJL7A`VBZV-?DTK?RBR-NNPSV-ݿVBPS?RBK?NNPK?INKJJR+?UHv/VBDRQ?RPHzG@NN!rh?NNSSſVBA`" CCx?i word innocentNNPSJJ{Gz@NN rhi-1 suffix oorVBPA`"VBZʡENNSCl?NNP rhNNPSK7A?VBGʡENNd;OPOS+?i+2 word specialRPjt?RBNNCl?JJClINjtܿNNP? i word occursNNxCDDlVBPffffffJJ rhVBZX9@NNS333333i+2 word holdingVBP$CRBMbNNSX9vNNPZd;?NNPSX9v?JJK@NN{GzVBNy&1i word textileVB?5^I ڿJJףp= NNʡE@RBzGếIN7A`VBZuVi+1 word stemmedVBPd;ONNSDl?NNʡE?RB1ZdVB/$i-1 tag+i word DT copyrightNNv/?JJv/ݿi+2 word greaseNN~jt?JJ~jti-2 word majorityNNPX9vNNxVBD(\?VBNMb?JJ~jthNNSuV?i-1 tag+i word PRP oughtMDHzG@VBPV-RBSVBD-i word soundtrackNNZd;?JJZd;i+2 word institutionJJK7RBV-VBNPn@i word biosourceNNSV-NNPV-?i-1 tag+i word TO accuratelyRBn?VBnҿi-1 tag+i word VBZ allergicRPClѿJJCl?i-1 tag+i word NN chemistryNN ףp= ?JJ ףp= i-1 tag+i word DT jumbosNNSK7?NNuVJJK7Aпi-1 tag+i word NN considersVBZ(\?VBD(\ i word '40sCDuV?NNPGzNNSMbVBDli-1 tag+i word IN peanutsNNSK?VBNKi+2 word newmarkNNPSJ +NNPJ +?i-2 word potentiallyVBG rJJ?NNn?i+1 word businesses NNSx&NN+VBNI +@JJDl?RBSoʡݿJJSoʡ?NNP{Gz?VB(\տVBGS㥛пRBQi+2 word centralNN{Gz?NNPMJJܿVBGMbX?RBʡE?i word externalJJ(\ſNNP(\?i+2 word interbankNNv@JJv i-1 word folkJJʡEӿNNʡE? i suffix dusNNS(\NN(\?i-1 tag+i word TO humanNNPPnVB?5^I CD㥛 JJm@i-1 tag+i word IN intenseJJʡE?NNʡE i-2 word earnRB{GzܿIN1Zd?VBGI +ƿRPrh|JJ rhNN/$@i-1 word edisonNNP#~j?NNPS#~jԿ i word slowsVBZˡE@NNSRB#~jܿi tag+i-2 tag VBD )VB#~j?VBP#~jVBG\(\?VBNA`"JJK?i-1 tag+i word RB favoriteVB+JJ+?i+1 word formalVBG%C?JJ%Ci-1 tag+i word JJ raisingVBGRQ?NNRQi-1 tag+i word VBP votingVBGjt?NNjti+2 word conductVBy&1ܿNNPy&1?i word proceedMDh|?5VBh|?5@NNZd;Oi-1 word improperVBGA`"NNA`"?i word homelessJJ+?NNl¿RB333333i+1 word recordersVBZnNNOn?JJA`" i-1 word (FWbX9?VBZffffffNNPGzֿVBx?NNEVBPX9vRBV-INS?NNS333333NNPSX9v?VBGh|?5?VBNM?UH㥛 ?PRPx&1?JJoʡ?VBDB`"CDQ?i-1 tag+i word CC cherryVBPlJJK7?NN'1Zi-1 tag+i word VBP electedVBNQ?JJQi+2 word upsetNNPffffffNNffffff?i-1 tag+i word RP betterJJRoʡRBRZd;?RBEi word cleanupVBNq= ףpNNV-?NNSI +ƿJJRoʡJJK7Ai word researcherCCKNNSKNNK?i+1 word lincolnJJ ףp= VBD ףp= ? i suffix 108NNSPnؿCDPn?i-1 tag+i word NNP somehowRB)\(?NN)\(i-1 tag+i word , metalsVBZL7A`NNSL7A`?i-1 tag+i word VBP bothCCxDTx?i-1 tag+i word NNS clashedVBPp= ףVBNEVBD~jt@i+2 word risesINm?JJzG?NNzGRBmݿi+2 word cooperatingJJCl?VBNCli-1 tag+i word `` nineCD;On@UH(\RB)\(NNP5^I i-1 word comesRPbX9?RBS@NNJ +JJSsh|??JJR#~jJJd;OIN㥛 i-1 tag+i word JJ toolsNNS5^I ?NN5^I i word somebodyVBZV-VBy&1NN}?5^I @JJx&i-1 word dispersedINV-RBV-?i+2 word grilledNN!rh?JJ!rhi-1 suffix omy VBDCl?WDTQ?DTQNNSV-VBGffffff?JJGz?VBNZd;VBP$C?RB)\(?INMbX9?VBZ&1?VBX9vNNNbX9i-1 tag+i word TO overreactVBCl?NNCli word congratulatedVBNFxVBDFx?i-1 word readerVBZrh|?NNSrh|NNVBD? i suffix hatIN ףp=@DŤ$@JJRffffffVBL7A`eJJ-!WDT%C'@RB33333@NNS rh NNPS NNPSV-NNCl; VBD(\ RBRjtĿRP rRBSV-VBPClWPB`"$@VBNL7A`EX-VBZB`"i-1 tag+i word RB defectiveNN= ףp=JJ= ףp=?i-1 tag+i word JJ organsNNSV-?RPV-i-1 tag+i word NN promiseVBZ/$ٿNN/$?i-1 tag+i word POS preferredVBNI +?JJI +i-1 tag+i word -START- janJJV-NNPV-?i+1 suffix nowVBP/$?JJmRDT?5^I ¿NNSE@IN㥛 NNPS7A`?VBNRQ?VBZʡEVBDw/WDTw/@VBGVB/$ſRP333333RBy&1,@NNQ@FWrh|NNP~jti+1 word circlesVBG\(\NN\(\? i word renoirNNNNP?i+2 word shortRP+?INl?DTV-i word roommateNNSQNNQ?i-1 tag+i word NNP establishedNNPrh|VBDˡE?VBN"~i-1 tag+i word VBZ americansNNPSQNNSQ?i-1 tag+i word IN stackingVBG= ףp=?JJ= ףp=i-1 tag+i word NNP recruitsVBZx?NNS r?NNV-i-1 word stovallVBZzG?RBzGi+1 word hoovesVBNGzJJFx?NNPI +ֿi-1 tag+i word RB treatsVBPZd;OVBZZd;O?i-1 word distinctiveJJ5^I ?NNP5^I  i+2 word evilVBZx&?POSx&i-1 tag+i word IN networkingNNx&1?VBGx&1i+2 word vesselJJ r?NNP ri-1 tag+i word NN motsNNSnFWn?i word attractsVBZGz@NNSV-RB + i suffix eryVBNq= ףpNNZd;O@FWV-DTw/]@RBRy&1VBP1ZdVBDףp= CD-NNSnVB7A`NNPSQWDTHzGRB +@NNPjtJJ~jt?JJSQi-1 tag+i word PRP$ arsenalsNNS-?NN-i-2 word garthNNMbNNPMb?i word microprocessorNNPx&1?NNPSx&1NNx&1?JJx&1i-1 tag+i word -START- legalNN^I +JJ^I +? i suffix 500CD'1Z@JJQNNjtֿNNPjti word intimidatedVBNK7A`?JJK7A`ݿi-1 tag+i word , headquartersVBZQNNQ?i+1 word commentsJJ|?5^ڿVBZ'1ZԿNNV-VBD333333VBN?POS'1Z?i-1 word successesVBN;On?VBD;On i suffix ves VBʡERB%CVBNV-VBPB`"JJ(\VBZ"~)@NNSMb+@NNPZd;O "NNPS#~j<@RPJ +NN5^I 'VBDA`"PRP= ףp@i-1 tag+i word `` defensiveNNx&1VBx&1JJh|?5?i-1 tag+i word NN wearVBP^I +NN^I +?i+1 word nervesVBGzGJJQ@NN5^I VBsh|?ݿi-1 tag+i word TO transferVB?NNP i+1 word doesNNS?5^I ҿVB%CܿDTB`"JJtVNNL@VBP~jtNNPuVVBDffffff?VBNffffffCCjtֿWDTzG@RBK7A`@INx&NNPS +WRBCl?i-1 tag+i word JJ selfPRPv/NNv/?i-1 suffix undRBR9vWDTw/VBZV-?NNP!rh?VB rhCDV-?JJSx&?VBG/$RPKRB;On@$Mb?INGz@NNPS}?5^I?JJR9v?VBNK7AVBPNbX9DTK7A`?NNSsh|?RBSx&ѿVBDK7A@JJʡENNh|?5i tag+i-2 tag WDT )VBPPn?RBPni word packwoodNNV-NNPV-?i-1 tag+i word NN damageNNSX9vNNX9v?i-1 word pipelineNN&1?RB&1i word questioningVBGMbX?JJ+NNzGi-2 word finlandVBD-JJ-?NN~jtNNP~jt?i-2 word bowlingVBZ ףp= JJ ףp= ?i word deterioratingVBG~jt?JJuVNNjti+1 suffix xicJJR~jt?NN)\(JJCli-1 word alienatingDTtV?INtVi-1 suffix udyNN?5^I NNPX9v?MDX9vVBD%C?VBNClٿi+2 word explainsNNPbX9?JJbX9i+2 word sinyardJJI +ֿRBy&1VBDI +?VBZ +INRQ?i-1 tag+i word VBZ bryanNNffffffNNPffffff?i-1 tag+i word NNP savingsNNPS +?NNP +i-1 tag+i word VBN interestedVBNSJJS?i+1 suffix ymmDTGz?INGzi+1 word conversationsJJoʡſVBK7?VBGS㥛VBNI +NNK7?i-1 tag+i word CD refinancingVBGNbX9ȿNNNbX9?i-1 tag+i word NNP scaleNNPS㥛пNNS㥛?!i-1 tag+i word PRP$ macroeconomicJJ rh?NN rhi-1 tag+i word DT orangeNNPSsh|?NNPsh|??i-1 tag+i word NN spendingVBG ףp= NN ףp= ? i word footeNNʡENNPʡE?i word criticizeVBʡE?VBPʡEi+1 word trailNNL7A`?JJL7A`i-1 tag+i word DT middayJJK7ANNK7A@i-1 tag+i word NN breakdownsNNS~jt?NN~jti+1 word stripVBNvJJv?i-1 word unsecuredNNPSZd;NNSZd;?NN"~j?JJ"~ji-1 tag+i word PRP concernsNNS+?VBZ+i-1 tag+i word JJ boroughNNK7?JJK7i-1 tag+i word JJ correctiveJJbX9?NNbX9޿i-1 tag+i word CC assortedVBN)\(ԿJJ?VBDQi+2 word housecleaningNNSZd;O?NNZd;O i+2 word killNNSV-VBG"~?JJ?5^I ڿNN"~VBDK7A@VBN= ףp=?RBd;Oi-2 word describedVBNMJJy&1?VBDOni+1 word toastJJ+?NN+i-1 tag+i word POS slideNN7A`?JJ7A`¿i-2 word barnardNN`"?RB`"JJ`"NNP`"?i-1 tag+i word DT minincomputerJJR+?NN+i-1 tag+i word , captainVBPV-?INV-i+1 word carmonCC|?5^NNP|?5^?i-1 tag+i word -START- primeMDsh|?JJ rNNPI +@ i+1 word aimsJJx&NNx&? i word easy VBNNEVBNʡENNS+NNPI +?MDV-RB/$?VBZV-JJMb@ i suffix -GMJJJ +NN7A`¿NNPQ@i+1 word steelyPRP%CܿPRP$%C?i-1 tag+i word CD wondersVBZ^I +?NNS^I +i-1 suffix nse INX9vNNPB`"VBNOnVBP&1?NN`"?WDTQ?JJMbVBZd;O?NNSrh|NNPSI +VBG#~j?i-1 tag+i word RB smartVBQNNSSJJp= ף?RBxi-2 word productionsNNS㥻CDS㥻?i+1 word dwightJJsh|?NNPsh|??i-1 tag+i word IN thumbNNS)\(NNCl?JJMbX9i-1 tag+i word , spawnedVBNEؿVBDE? i-1 word viewVBZMNNSxNNnVBP1Zd@WDTX9vINd;O?i-1 word aircraft WDT rhVBZoʡRP/$NN-ƿVBD|?5^ѿIN9vVBG-?DTMbXٿNNP(\ҿNNPS~jt?VBN|?5^?RB;On@ i-2 word rowJJw/?NNw/ԿNNPx&VBx&?i-1 tag+i word TO overrideVBS?RBSi-1 tag+i word JJ bbnNNPS}?5^INNP}?5^I?i+2 word sardonicNN rhRB^I +JJˡE?i-1 tag+i word VB furtherNN)\(JJCl?RBR%C?JJRT㥛 RBMbX9i+2 word stirrupsRPQRBQ?i-1 tag+i word IN ricoedJJCl?NNPCli-2 word undertakenNNMbX?JJMbXi+2 word burnerRP+?RB+i-1 tag+i word IN netJJ5^I ?NN5^I ۿ i word kidnapVB(\?NNS(\i-1 tag+i word VB taxedVBN= ףp=?JJ= ףp=i+2 word deprivingNN?RBi+2 word collectionINK7RPK7?i+1 word architectNN= ףp=@JJ$CNNP;Oni-1 tag+i word , ruralVBT㥛 JJT㥛 ? i-1 word homoVBZSNNSClJJ|?5^?i-1 tag+i word JJ trillsNNSʡE?NNʡEi+1 word ineffectiveVBZRQ?NNSRQi-1 tag+i word -START- studentNNMbX9?JJClNNP/$i-1 tag+i word NN bikesNNS +?NN +i-1 tag+i word NN dyesNNS`"?NN`"i word aluminumNNSw/NNK7A`@JJRQi+1 word fulminationsJJ(\?NNP(\i-1 word issuedWDTT㥛 ?JJˡE?NNˡEINK7ѿRBSi-2 word promptlyDTjt?PDTjtRP rhRB rh@i-1 tag+i word IN starVBP\(\NNS?JJK7NNP"~?i word savingsNNPS @NNSh|?5NN/$@JJ(\NNPI + i-1 tag+i word , miniaturizedVBN\(\?VBD\(\i-1 tag+i word IN duplicityRPZd;ONNZd;O?i-1 tag+i word NNP spunVBPB`"VBDB`"?i-1 tag+i word NN comingVBGx&1?NNx&1i-1 tag+i word TO californiansNNPS?UH/$NNP"~ i-1 word riceNNP\(\NNPS\(\?NNSV-VBNn?VBDK߿i-1 tag+i word IN !YEARCDR@NNSClNN/$JJZd;ONNP%Ci word followingVBGo!@NNNbX9JJK7A`?NNPi-1 word undergraduateNN rh?JJ rhտi-1 suffix en.NNPSzGNNPzG? i word wavesVBZ"~jNNSbX9?NN㥛 i-1 word bouncesRPtVRBd;O@IN/$i word fingerprintJJ1ZdۿNN1Zd?i-2 word protractedNNStV޿NNtV?i-2 word nursingNN{Gz?JJ{GzNNPA`"NNPSMbX9?NNSZd;Oi-1 tag+i word DT weatherbeatenJJCl?NNCli-1 tag+i word NN executiveVBPK7NN(\?JJS㥛NNPZd;O?i+1 word traversoNNMbXѿNNPMbX?i-1 tag+i word DT flipJJJ +?NNJ + i+2 word honeNNPSV-?NNPV-i-2 word mattersNNQѿJJR|?5^RBR|?5^?JJQ?INMbX?RBMbXi-1 word pickedNN1ZdVBP\(\JJV-INbX9 @RPlRB\(\?i+2 word ruinedDTn?RBni-1 tag+i word DT dormantNNSʡEJJl?NN~jtȿi-1 tag+i word -START- healthNNm?NNPmi-1 suffix steJJS㥛?VBS㥛NNoʡVBDjt?VBNjtԿPOS rh''Q?i-1 tag+i word NNP advisersNNPSm?NNPmi-1 word scienceNNP`"?NNPSKNNnVBD/$VBN/$?VBZ333333NNS$C?i-1 word forgetDTrh|?RBrh|׿i+2 word ivoryWDTbX9INbX9? i-2 word bothRBR㥛 VBNS?VBZd;ONNPSjt?FWK?VBGT㥛 JJx&1 JJRZd;?JJSv/?VBPjt?NNPK7AVBZSNNSQӿNNK7@VBD(\?RBy&1i-1 tag+i word VBP viewVBPZd;O?NNZd;Oi+1 word exceptVBPDlNNʡE?JJ"~jRB}?5^I? i suffix wanNNPSK7ANNS;OnNN"~CDT㥛 NNP!rh @i-1 word simpleJJMb?NN9vRBi-1 tag+i word NN guaranteedVBZL7A`VBPVBDm?i+2 word economicsVBNVBD?i+2 word spiritsNN ףp= ?NNS ףp= i word at&tRB)\(NN1Zd?JJ)\(NNPB`"@VBzGNNPS^I +׿i-1 tag+i word NN hollerVBZ}?5^IVBA`"?NN$C˿i-1 tag+i word '' reportsVBZ(\?NNS(\ i word lookedVBZ(\JJClVBNQRBSVBDbX9H@i+1 suffix irsPRP$-VBDK7NNPQ?JJ(\?INjt?NNSmVBG= ףp=?NNZd;?WDTsh|?VBZ1Zd?NNPSV-VBN?RP{Gz?DT-?i word reasonableVB'1ZJJ7A`@NN~jti+2 word brighteningNNV-?JJV-i-1 tag+i word NNP menellNNPS"~NNP"~?i-1 tag+i word DT depressedVBNʡEۿJJʡE?i-1 tag+i word DT gripesVBPmNNSm?i+1 word inexpensiveIN rhDTHzGVBPQ?RBx&1@NNQi-1 tag+i word VBZ notedVBNffffff?JJffffffֿ i word foyerJJSNbX9NNNbX9? i suffix TONNNS"~jܿNN"~j?i tag+i-2 tag DT RBDTzGNN?RBR+?JJRoʡJJSOn?RB;On¿CDSNNSrh|?NNPSy&1|JJMbVBD-?VBPT㥛 VBNK7A?PRPK7ANNPNbX9VBGHzGRBSK7A?VBZS?i word dormantJJl?NN~jtȿNNSʡEi-1 tag+i word IN deferringVBGx&1?JJx&1пi+2 word surgicalVBDffffffVBZd;ϿVBP(\?NNˡEi-1 tag+i word CC asaNNPS?NNPSSi word fuelingVBGZd;O?JJZd;O߿i+2 word healthvestNNsh|??JJsh|?տ i+2 word fasbJJxCD{GzVBZffffffNNSףp= ?RB+@i word koreagateJJQNNPQ?i-1 word eatenRPv/?RBv/i+1 word excessiveVBZT㥛 ?NNST㥛 пJJMbVBGMb? i+2 word meanIN$CDTMb?VBPJ +WDT!rh?JJJ +?i-1 tag+i word IN americanaNNS-@NNP- i word minn.NN~jtNNP~jt?i-1 tag+i word VB panicNNSMbNNT㥛 ?JJx&1i-1 word repeatingNNS"~?RB"~i-1 tag+i word DT assumedVBN;OnJJ;On?i+2 word mikhailJJ rhͿNN1ZdӿVBDZd;OFW1Zd?RBZd;O?NNP rh? i suffix -15JJQNNPQ?i word centralNNPSB`"JJZd;ONNPS?i+1 word office NNPSoʡVBGPn?JJ;On?VBZʡEӿNNPuV?VB/$NN9vVBDʡEFWvPOS!rh?CDM?NNSi-1 tag+i word '' freeJJL7A`@NN9vCDtVi-1 tag+i word IN yearsNNSS㥛?NNPS㥛i-1 tag+i word NN rangesVBZ rh@NNS rhi-1 tag+i word DT definitiveJJjt?NNjti-1 tag+i word DT exemplarNN-?JJ-i+2 word amenitiesVBP= ףp=ҿNN= ףp=?i-1 tag+i word RB dilutedVBNjt?JJˡEVBDZd;O?i-1 tag+i word IN publisherPRP$X9vNNQ?JJK7A`i-1 tag+i word RB adjusterNNx&1?RBx&1i+1 word ambleVBZ!rhVB+NNS|?5^?i-1 tag+i word MD hardlyVBuVRBuV?!i-1 tag+i word DT fundamentalistsNNPSy&1ܿNNSy&1?i-1 tag+i word NN favoredJJ~jtVBD~jt?i-2 word comprisesNN\(\?JJ\(\i-1 tag+i word `` communismNNSNNPS?i+2 word circledNNjt?JJjtĿi-1 tag+i word RB allowedVB|?5^VBNNbX9?VBD\(\߿ i word armsNNSX9v@NNP1ZdۿVB1ZdVBDzGJJClINClVBZS㥛DTQi-1 tag+i word JJ swornNNFxJJ rh?NNS/$VBN"~j?i-1 tag+i word `` eyeglassesVBZʡEݿNNSʡE? i-2 word centVBPFx?NNFx#i-1 tag+i word -START- xl\/datacompNNzGNNPzG?i-1 tag+i word VBZ scarceVBN;OnJJ;On?i+1 word signalsVBNJ +?JJmVBGx&1i-1 tag+i word `` muchRB;On?JJ;Onڿi tag+i-2 tag PRP$ ''JJHzGVBZS㥻NNSS㥻?NNHzG?i-1 tag+i word NNP directiveNN7A`?JJd;OVBPOni word agendasNNSS㥛@NNS㥛i-2 word motherNN+?CC-VBPˡE?JJ rhINS㥛?VB rhRBL7A`尿i-1 word conistonNNPNNPS?NN9v?JJ9vi-1 tag+i word TO hintVB㥛 ?NN㥛 i-1 tag+i word DT lengthNNS7A`NNI +?JJh|?5i word cautionsVBZffffff?NNSffffffi+1 word ralliedNNPzGNNQ?VBP~jtWDT^I +?JJQ޿IN^I +NNSZd;O@ i+2 word 'dVBPPnVBZbX9?NNSDlVB+NN)\(?CDCli+1 suffix wedNNPSQ뱿VBZoʡNNPPnVB+WDT㥛 @VBGtVNN~jt@JJS㥛INNbX9NNSX9v?RBʡE?POSGz׿VBP r?DTV-VBNK߿i-1 tag+i word UH lotNNjt?RBjti+2 word countries JJSRQRBRMb?SYMʡECDʡE?VB(\NNPSx&?NN?5^I ڿVBD/$?NNS%CNNPSJJR333333?JJv?i-1 tag+i word VBP aerobicsNNSA`"˿NNA`"?i-1 tag+i word NN rightRB(\@NNx&?JJ rVBDh|?5VBZʡEi-1 tag+i word NNP producesNNd;OVBZףp= ?NNSI +i-1 tag+i word -START- suddenlyRB?NNPi-1 tag+i word DT shakyJJʡE?NNʡEi+1 word rainbowJJGzNNPGz?i word aftermathNNS~jtNN~jt? i suffix ogaVBZvVBffffffֿNNA`"? i word data VBuVVBPK7JJx&1IN rNNS}?5^I@NNPS/$ @NN{GzVBNMbX9NNPK7A`i-1 tag+i word JJ tavernNNV-?JJV-i-1 word nerveVBZ7A`NNS7A`?i word castlelikeJJGz?NNGzi-1 suffix ottNNPS/$?NNP/$i-1 suffix suiRBV-INV-?i word characterizesVBZʡE?VBPʡEݿi-1 tag+i word JJ lootNNS rNN r?i+2 word accountedVBD-RBffffffNN;OnJJ;On?VBNOn?i+1 word governmentNNPSjtRPJ +RBV-NNP+NPRP$ rh@VBD?VBPK7A`CD"~jVBMb@PRPZd;OIN~jtVBG333333?NNSףp= JJ"> @NNSVBN/$DT +?i-1 suffix arm RPMbX9?RBuVVBD= ףp=?WDT|?5^?JJMbXVBG?5^I NNZd;O@VBN= ףp=ҿDT|?5^i-2 word applyingVBrh|NNd;O@RB\(\i+1 suffix 'llDTQ?INQi+2 word giovanniRP@VBP(\NNS-RBw/VBDi+1 word israelVBD-?CC1ZdVBN-JJRMbX9ԿRB1Zd?IN r?NNP1Zdi-1 tag+i word WRB mostJJSS㥛?RBSS㥛Կ i-1 word vansVBoʡVBPMb?VBD"~i word employersVBZRQNNPStVοNNS}?5^I?NNP!rh?i-1 tag+i word RB rendezvousedVB+VBD+?i-1 tag+i word DT themesNNSK7?NNA`"RB+i-2 word funds VBGoʡſJJRJ +VBN ףp= ׿RB}?5^IIN\(\?VBK7AJJ rhNNm?VBDy&1?RBRJ +?VBP/$?i tag+i-2 tag PRP$ CCVBNn?CD}?5^I?JJS@VBZ+NNSQNNPq= ףpVBG~jtNNtV?i+2 word stake VBGx&1?NN^I +?CDGz?VBPZd;OIN5^I VB/$JJV-VBD/$?VBN/$ſRBPn? i-1 word unixVBG rh?NN rhi-1 tag+i word JJ studiesNNPSn?NNSni-1 word gripesRBmINm? i word pactNNPCl?NNCli-1 tag+i word PRP$ railroadNNSOnNNOn?i+1 word vigorousJJClVBZ(\@NNS5^I ۿRBMbVBDHzG?VBNCli+2 word spenderRB?5^I ?JJ?5^I i-1 tag+i word CD agreedVBDCl?NNy&1ܿINFxi-1 suffix vorVBNV-JJV-? i suffix corJJS1ZdNNSOnNNZd;O?NNPx? i-1 tag+i word -START- alongsideVBPq= ףpRBQ?IN333333i-1 tag+i word -START- shopJJ ףp= NNP ףp= ?i-1 tag+i word CC watchNNQVB333333?VBPL7A`?NNS#~ji-2 word scarcelyVBN"~JJV-NNtV?i-1 tag+i word , dressedVBN/$?VBD/$i-1 tag+i word DT dept.NNSOnNNPOn?i-1 tag+i word -START- fundNN"~j?IN"~ji-1 tag+i word JJ reportedVBN +VBD +?i tag+i-2 tag RB VBDJJRS@INʡECDy&1?VBZEؿVBV- JJffffff@NNST㥛 RBRh|?5?EXMVBGV-@RBDl?DTSNNPV-?NN\(\RP+VBN/$@VBP7A`WDT +VBD+wPDT^I +?i-1 word heclaNNS㥛NNPS㥛?i-2 word estimatedNN?VBNoʡVBPK?RBp= ףINp= ף?NNSKJJI +?i-1 tag+i word DT !YEARCDK7A`@JJ㥛 NNPQ i word entryVB#~jNN#~j@i word underneathJJMRBX9vϿINʡE?i+2 word atlanticRPˡE?RBˡEi+2 word exchangeableDT/$NNP/$?i-1 word listedIN +RB +?i-1 tag+i word -START- crouchedDTV-VBNV-?i+1 suffix ploJJ)\(?NN)\(i-1 word frostedNNPSNbX9?NNPNbX9i-1 suffix iebVBPtV?NN= ףp=ڿVBDZd;Oi-1 tag+i word IN surgeryRBKNNK?i word indicatingVBG7A`?NN7A`ҿi-1 tag+i word NNP ruderNNPS~jtNNP~jt?i+1 word thursdayINGz?DTZd;NNP}?5^IԿRB?NN!rhVBDI +VBNI +?JJli-1 word mgm\/uaNNPS㥛 ?NNP㥛 i word lipsNNSףp= ?NNףp= i+2 word woesCD@NNPSZd;ONNPʡEi-1 tag+i word NN obtainedIN ףp= VBN$C?VBDrh|i-1 tag+i word JJ unnervingJJrh|?NNrh|i+1 word disobedienceWRB1ZdJJx&?NNPS˿i+2 word assertVBZB`"NNSB`"? i word !YEARNNSClNNPJ +NNPSZd;OտJJ#~jNNQVBDSCDQ.@RBK7i-1 tag+i word VBZ coolVBNw/JJw/?i-1 tag+i word VBP brokeVBDʡE?JJRʡEۿi+2 word exercisableJJRV-NNV-?i-2 word droughtWDTK7A`?INK7A`ݿi-1 tag+i word IN relatedVBN$CJJ$C?i word sluggishJJp= ף @NNSmVBNNbX9NNQi+1 word dedicatedNNS;On?NNP;Oni-1 tag+i word DT upholsteryNNtV?JJtVi+1 word frequentlyRBRK7?RB +JJRtVοi-1 word tehranJJNbX9?INNbX9ؿi+2 word employsVBSJJ/$?NNʡEi-2 word sportingNNSZd;ONNZd;O?i-1 tag+i word VBP pursuingVBGQ?JJQ i word suedVBZrh|VBN/$@JJMbXVBDI +ֿi-1 word talksVBP?5^I @JJOn@INI +VB-RB?5^I NNzGVBDZd;?i+2 word embarrassmentPDT{Gz?JJ{Gzi+2 word slippedNNS?JJSNNPV-?VBV-i-1 suffix ray VBPV-INV-NNSMbX9VBDQ?VBNZd;CD/$JJ|?5^?VBZMbX9?NNrh|?i-2 word returnsJJS?RBlJJRPn?i-1 tag+i word NNP checkVBL7A`?NNPL7A`堿i+2 word requirementsVBV-NNRQ @VBNQJJRS?VBPٿJJNbX9 i word nrmNNS9vJJNNPZd;O?i+2 word baltimoreNNPClNNPSCl? i-2 word willVBGI +VB= ףp=?CCbX9?PRP$Mb?VBD|?5^DTK7A?PRPMbWDTS?VBZRP"~jNNMbпNNSGz?PDTh|?5EXS㥛IN/$޿NNPSsh|?JJS{GzJJRDlVBN ףp= VBP +JJ^I +?RBK7A?NNPK7?RBS333333?RBR~jt@i word jewelersNNPSzG?NNPzGi-1 tag+i word VBG higherVBN?5^I RBRw/?JJRE?i word nantucketNNK7NNPK7?i word conspireVBP?NNi-1 tag+i word , humanVB ףp= JJ ףp= ?i-1 word owningNNbX9CD|?5^?PRP|?5^JJNbX9IN)\(NNP"~j?RBS?i word pollingVBG(\NN(\?i-2 word proseJJRy&1?RBRy&1i word attachedINV-VB(\VBDS㥛VBN-@JJ rh? i+2 word iiJJtVNNPtV@i+2 word callsNNPSMbp?VBGZd;ONNX9vVBNB`"JJNbX9?NNPMbpVBX9v?i word comparativelyNNSHzGRBn?JJx&1i tag+i-2 tag JJ VBZVBFxDTzGNNPS~jtFWp= ףRBR/$?VBNV-EX|?5^?JJvWDTjt?VBGZd;O?RP~jtRBjt@NN1ZdRBS7A`?INp= ף@JJS/$JJRQ롿WP`"NNSjt?NNPm?i-1 tag+i word VBP speculatedVBNT㥛 ?VBDT㥛 i-1 tag+i word -START- unusedJJ(\?VBN(\i-1 tag+i word PRP achievedVBNVBD? i word clerksVBP(\NNS(\?i-1 word mightNN(\RBh|?5?NNPV-VBGz@i word trainingVBG(\NN= ףp=@JJQi-2 word chugaiVBnRBn?i-1 tag+i word VBD absentJJ~jt?NN~jti-2 word reachingNNP9v$Q?NNzG@i word happenedVBNrh|JJMVBDQ@i-1 tag+i word DT whoppingVBG{GzJJ{Gz@NNؿi+1 word pleasureJJ\(\?NN+VBDT㥛 ?i word donnelleyNNx޿NNPx?i-1 tag+i word DT picassoNN?5^I ڿNNP?5^I ?i-1 tag+i word VBG spittleNNS+NNA`"?RBMi+1 word towelsNNSNNPS?i+2 word taughtJJPn?NNPn i word praNNPl?NNPSʡEFW/$i-2 word tractorsJJn?NNni-1 tag+i word TO trickVBx?JJxֿi-1 tag+i word NN financingNN1ZdVBG1Zd?i-2 word helicoptersRBn?JJni-1 word zoningNNSOn?RPOni-1 tag+i word RB suchPDT r?JJ rؿi-1 tag+i word IN expandedVBN~jtÿJJ~jt?i-1 suffix datNN?JJi-1 tag+i word TO cloudVBV-?VBZV-i+1 suffix dom NN-@NNPv/VBZ+DTV-?VBGzFW\(\CCV-׿VBNCl?JJ+@IN5^I NNSMbpi+2 word locationRBGz?NNGzi+2 word polypropyleneVBZK7NNSK7?i-1 word bloatedNNQ?JJQi word homeroomNN{GzNNP{Gz?i-1 tag+i word IN onlyPDT ףp= NNS(\JJd;O?RBV-?i-2 word pamperedVBGMb?NNMbi-1 tag+i word CD scatteredVBN~jtJJ~jt?i-1 tag+i word DT meantimeNNQ?JJQi word includingNN-NNP|?5^VBGn? i suffix igyNNPV- @JJxNN~jt i-1 word donNNS rhVBD rh?i word irresponsibleVB/$VBNʡEJJS㥛?i-1 tag+i word VBP englishNNP5^I ?JJ5^I ۿi-1 tag+i word PRP$ promotionalJJMbX?NNMbX i+2 word waitVBNZd;?VBDZd;i-1 tag+i word VBN takeVBP?NNSi-2 word loans VBDMbVBNMb?JJn?NNPV-?RB333333NNzG @NNS|?5^?VBrh| VBG ףp= i-1 tag+i word NNP equitiesVBZ$CNNPSV-?NNS$C?NNPV-i-1 tag+i word CC eliminateVB1Zd@JJA`"NN-ֿi-1 tag+i word CC cyclicalJJI +?NNI +i-1 tag+i word NN m.w.NNSNNPS?i+1 word chairNNˡE?JJtV?INSi-1 word concurredDTQۿINQ?i+1 word penaltyVBN1ZdNN1ZdVBD1Zd?VBP1Zd?"i-1 tag+i word VBG intercollegiateRB;OnҿJJ?NN'1Zi-1 tag+i word JJ feelingsNNS+?VBD+i-1 tag+i word NNS lyphomedNNPX9v?VBDX9vi-1 tag+i word CC coffeeNNSPnNNPn?i+1 word cardiovascularVBP ףp= ?JJ ףp= i word performersVBZS㥛NNSS㥛?i-1 word recoveredRBA`"?NNA`"i word viroquaNNGzNNPGz? i+1 word sunyVBZK?NNSK i word duNNnٿNNPGz?VBZZd;i-1 tag+i word POS sacrificingVBG?5^I ?NNK7JJ(\i+2 word william VB-NNPS rh?RB/$NNSy&1NNP|?5^ڿIN/$?JJQӿNNffffff?VBD/$RBR-?VBN㥛 ?i-1 tag+i word PRP farmsVBZjt?VBDjti-1 word giant VBN\(\߿VBMbX?RB;OnVBDʡE@INx&1NNPrh|?NN333333WDT rh?JJ(\i+2 word invitesDTClNNPCl?i-1 tag+i word NNP switchesVBZ$C?NNS$Ci-1 tag+i word -START- riscNNPʡE?RBʡE i word votedNN(\VBD(\u@JJSVBN(\ i+2 word subtletyDT~jtPDT~jt?i word parenthoodNNoʡ?NNPoʡi+2 word disputadoJJK?NNPK i-1 word ms.WP+NNPSrh|FWNNP$C @i tag+i-2 tag NN RPINK7A?NNSq= ףp?VBNq= ףpRBClRBRQi-1 tag+i word -START- sidleyNNL7A`堿NNPL7A`?i+1 word eveningJJMbX9?NNMbX9i+1 word shrankIN/$WDT/$?i+2 word astonishingVB5^I ۿNNoʡ?VBD(\i-1 tag+i word DT increaseNNS#~jNN?JJ$C i word speaksVBZV- @JJK7AVBD&1i-1 tag+i word JJ preferredJJ ףp= ?VBN/$NNOnVBDp= ף?i+1 word knockedNNw/?JJw/i+1 word scoredNNPSRQ?NNPRQi-1 tag+i word , processedVBNnJJn? i suffix giaNNPSMbXNNPMbX? i word revealVBoʡVBPoʡ?i-2 word remembersNNS&1?NN&1!i-1 tag+i word -START- biologicalNNP?5^I JJ?5^I ?i-1 tag+i word DT accountingVBGX9vNNClg@JJMbi+2 word copyrightRBL7A`?NNL7A`VBPNNS?i-1 tag+i word POS bankingVBGNbX9?NN|?5^JJy&1Կi-2 word acquire JJ/$NNK7?NNPL7A`VBQNNPS?VBGS?VBNZd;?UH= ףp=RBsh|??i-1 tag+i word WP failVBP?NNSi-2 word lukassenJJ?NNi word licenseNNS?JJGzNNPʡEVBK?i-2 word !YEARDT/$?VB~jtRBRJ +@VBNzG?WDTV-VBZX9v?JJRZd;ONNP)\(?NNPS5^I RP +VBDCl@CCM?EX +?JJvϿINDl?CD&1NNSy&1RBRQNN/$VBPuV?VBG'1Z@i-1 tag+i word CC cigaretteNNB`"?JJB`"i-1 tag+i word RB progressesVBZ"~j?NNS"~ji word increaseSYMMbX9VBPV-LS ףp= JJ"~ NNS#~jVBQ@NNffffff@CC(\i word prosecutorsNNPy&1NNSy&1?i-1 tag+i word VBG becomeVBN ףp= ?NN ףp= i-1 tag+i word NN u.n.RB+NNP+?i-1 word devoteJJR㥛 ?JJ㥛 i-1 word columnVBNʡE?VBDʡEֿ i-2 word bearWDTDl?INDli word ladderedVBNQJJQ?i-2 word somebodyRBZd;O?RPJJ'1Z?NN'1ZINmi-1 tag+i word VBD somberNNP)\(JJ)\(?i-2 word melancholyVBPtV?VBGtV i-2 word step VBZv?NNS\(\RBA`"?JJRv/?RBRv/JJˡEINA`"VBGQ?NNli-1 tag+i word -START- barelyRB-?NNP-i-1 tag+i word CD multistateNN\(\?JJ\(\i-1 tag+i word NN earnVBPQ?VBDףp= VBoʡ i-1 word coupVBGOnNNOn?i-1 tag+i word WDT readersVBPA`"NNSA`"?i-1 word basicNNSv/ݿNNPV-NNPS#~j@VBGL7A`?JJ}?5^I?NN1Zd?VBNV-RBQi+2 word hudsonVBPlINn?VBDQݿi-1 tag+i word JJR vividJJV-?NNV-׿i-1 tag+i word CD swedishJJ\(\?NN\(\i+1 word institutionNNMbNNPMb?NNPSZd;ONNSFxJJK7A`?i+1 word lucrativeRBRK7JJRK7?i word enhancingVBG&1?JJ&1i-1 word occurredRBffffffINffffff? i-1 suffix orVBP/$ۿRB~jtNNP/$RBS-?CDQ?NNPSMbXJJSsh|??PRP$+?JJp= ףRPQVBS㥛@IN1ZdJJRʡE?VBD+NNQٿFWQNNS!rh?RBRS㥛EXd;O?VBGDl?VBZQ?DTCCMbX9?VBNE@i-1 tag+i word VBZ lowRBsh|??VBNʡEJJuV?i-1 suffix vcoVBPI +JJI +VBZI +?NNSI +?NNI +VBDI +?i word seasonsDTClNNSCl?i-1 suffix irkNNPS/$?NNP/$i word surprisingVBGPnJJrh!@NNGzi word peruvianJJ rh?NNP rhi-1 tag+i word VBG laterRBR\(\@RBVBNףp= i-1 tag+i word -START- taipeiDTףp= NN7A`ҿNNP9v? i word bypassVB9vNN9v?i word abramsonNNPSV-NNPV-?i word !DIGITS LSsh|?@VBZ rhNNPV- VBPRQNNPSV-JJ rhNN!rhmVBDv/VBNGzCD333331@RBnVBI +NNSzG?i-1 tag+i word DT musicalJJp= ף?NNp= ףi-1 tag+i word VBD mainlyRB-?JJ-޿i-1 tag+i word RB runVBZw/VB-?VBP}?5^I?VBN-VBDʡE i-1 word high RBM?IN/$?VB"~jԿVBGZd;OJJV-NNףp= ?VBDDlVBNQ?NNPPnVBZx&1NNSm?i-1 tag+i word CD examinesVBZK7?NNSjtJJCl绿 i word agedJJNbX9VBD9vVBNDl@i-1 tag+i word VB shabbyJJףp= ?NNףp= i+2 word proposesNNPS"~?NN^I +NNP㥛 ?i-2 word threatensJJ+?NN+߿ i word pastaNNSKNNZd;O?JJSi-1 word jokesDT?INi word transitNNbX9?JJbX9޿i word intelligentVBT㥛 JJT㥛 @i-1 tag+i word DT consolidatedJJx&1?VBNx&1ȿ i+2 word signVBZZd;OJJCl˿RBCl?VBDZd;O?i-1 tag+i word PRP !HYPHENNNPʡEJJ"~VBDd;O?JJSZd;O@JJRMRBZd;i-1 tag+i word DT deadNN"~NNS{GzܿJJMb?i-1 tag+i word NN causesVBZMbX?NNSMbXi-1 tag+i word NN impossibleNN\(\JJ\(\?i-1 tag+i word JJR boeingVBGHzGNNPHzG?i+1 word small NNMbJJS rh@CDx&1?WDTQINQ?NNP~jtVB+?RBffffff@VBN)\(VBPx&1пJJ= ףp=RPZd;VBD㥛 ?i-1 tag+i word POS culturalJJ+NNP+? i-2 word shunNN-VBG-?i+2 word california RPq= ףpNN~jt?CCE?VBP|?5^INq= ףp?NNS/$?NNPSQVBDZd;VBNE?CD/$RBSNNP~jt?VBPn?i-2 word pullsNNS'1Z?NNjt?JJx&1i-1 tag+i word VB financingNN|?5^@JJL7A`VBG}?5^Ii tag+i-2 tag NNPS IN NNPS/$?JJZd;OVBPh|?5?NNSSNN|?5^ɿVBDZd;?VBNDl?RBMb?VBZh|?5޿NNPsh|?@i+2 word tossingRP-PRP-? i+2 word fiatNN-?CD-i-1 tag+i word DT viennaNNS+NNP+?i-1 tag+i word IN topJJn?INNNDl?NNS-PRPS i+1 word faceVBP(\JJB`"?VBZ(\NNSx&1NNPJ +?NNPS^I +?i-1 tag+i word JJ cypressNNPffffff?JJB`"NNSտi+1 word standingVBZ|?5^@POS|?5^i-2 word yatesJJʡE?NNʡEi+1 word nastyRBB`"?JJB`"i-1 word gyrationsVBN/$?VBD/$i-1 suffix eonVBNrh|?VBDDl?VBZCli-1 tag+i word JJ middlemanNN= ףp=?NNP= ףp=i-2 word indirectlyCCjtֿRBjt?i+1 word premieringVBZd;ONNSd;O?i-1 tag+i word CC halfDT/$PDTV-ϿNNʡE?JJV-i-1 word disclosedDT^I +NNS7A`?RBDl?NNQRBRDlJJQ?IN^I +?VBZ7A`i-1 tag+i word -START- litJJjtNNPjt?i-1 tag+i word NN remainingVBGX9vJJX9v?i-1 tag+i word RB backgroundNNoʡ?JJoʡi-1 tag+i word IN twiceVBI +PDT`"RB5^I @i+1 word voyageJJ+?NN+i-1 tag+i word DT roommateNNSQNNQ?i-1 suffix keyNNV-VBDDlWDTMb?INMbNNSjt?NNPCl?i-1 tag+i word NNS mountedVBNX9vVBDX9v?i+1 word islandNNPSVBGV-?NNK7A`JJ rNNP333333?i word videotapesNNvNNSv?i-2 word formerlyVBN{GzJJx&?NN/$i-1 word vaccineVBZ1Zd?NNS1Zdӿi-1 tag+i word VBZ disagreeVBPA`"?NNSA`"i word initiatedVBNV-?VBDV- i+1 word usxNNP+VB(\VBGffffff?RB-޿NNffffffWDTK7AJJ+?INOn?i+1 word cartsJJRp= ףNNp= ף? i+2 word june WDTx?RBoʡNNS&1?NNPjtVBDQVBG1Zd?NNMb?VBNQ@INʡERP rh?NNPS&1? i suffix bleVBZClNNP'1ZJJRQVBPʡERB~jt?RPZd;OݿVBjt@VBNOnVBDy&1DTlVBGjtJJx1@NNSʡEWDT+IN&1NNRQ?FWsh|??i-2 word deemsNNMb?JJMbi+1 word winnerIN-DT-?NNPV-?NNV-i+2 word obstacleVBZV-?VBZd;?NNZd;VBDV-i-1 tag+i word , harassedJJGzVBDGz?i-1 tag+i word NNS outsideVBP"~jRBS?NNv/ݿIN㥛 ?JJV-?i-1 tag+i word NN lookVBZV-VB(\?NN(\?INmi-1 tag+i word DT existingVBG rh @NNd;OJJ$Ci-1 tag+i word , lumpedVBNV-?VBDV-i+1 word tappedVB+@VBP+i+2 word plasterRPm?RB(\INQi-1 tag+i word NNP robbersNNSMbX9?NNPMbX9i-1 tag+i word RB builtNN+VBD!rh?VBV-VBNZd;O?i word trundlesVBZ?5^I ?NNS?5^I i+1 suffix catJJ`"?NN`"i+2 word ferdinandNNPSsh|??NNPsh|?i-2 word reconsiderNNS?JJS i suffix pleRB9v@VBZSJJROnۿ$L7A`NNPS^I +?FW+VBD~jtJJS(\PRPHzGWPGz޿CD&1INuVVBL7A`?CCoʡRBRSVBP|?5^NNSL7A`@JJ= ףp=@NN#~j@VBN|?5^NNPy&1i-1 tag+i word CC fisheryJJʡEƿNNPʡE?NNSrh|NN rh?i+1 word sventekJJʡENNPʡE?i-1 tag+i word DT higherNNZd;JJRMb@JJni-1 tag+i word CC brotherNNSQNNQ?i-1 tag+i word -START- dailyJJQ@RBQNNi-1 tag+i word DT charterJJy&1?NNRBR%C i word bustedJJ"~j?VBN"~jܿi-1 tag+i word DT statesNNPSMb?NNPMbi-1 tag+i word VBN sundanceNNZd;߿NNPZd;?i word survivesVBZJ +@NNSV-JJ+ i-1 word paceRBv/?INv/i word accordedVBNoʡ?JJ㥛 VBD%C i suffix tesRP333333JJQ8CD|?5^JJR&1VBV-RB'1ZNNx&1NNP(\BVBZjt,@VBPGz.INʡENNS!rh-+@NNPSSc @VBDSPOSVBNףp= i word backlogsVBPX9vNNSRQ@NNGzINB`"i-2 word earthquakeNN(\?VBDX9vVBNCl?JJV-VBZB`"?NNS9vVBL7A`?i-1 tag+i word JJ canadianNNPy&1JJGz@NN`"i-1 tag+i word JJ pitchmenNNSzG?NNzGʿi word bratislavaNNP= ףp=?NN= ףp=ڿi-1 tag+i word IN honestyNNSHzGNNHzG?i-1 word masonVBZV-?NNV-i-1 tag+i word DT imperialNNPL7A`?JJZd;ONN +޿i-1 tag+i word NNS careNNK7?JJK7i word minimizingVBGMb?JJy&1NNjti-2 word perpetratedNNZd;OJJZd;O?i-1 word mohamadUH9vVBD9v?i word measuresNNSffffff?NNGzNNPK7AؿVBZ^I +?VBP~jti-2 word openedJJX9v?IN"~?NNP+?VBnٿVBGQ?NNh|?5PDT(\i+1 suffix iod VBZ(\NNP+?VBGT㥛 NNV-RBR;OnڿJJRMbX9?VBNMJJK7A @NNS(\i word prerogativeNN/$?JJ/$ i word childVBPZd;ONNSA`"NNPn @JJX9v i-1 word s.NNNNP?i-1 tag+i word VBZ greenJJoʡ?NNoʡi-1 tag+i word NNP muddledNNSV-VBNV-?i-2 word riddledJJNbX9?NNNbX9i-1 tag+i word VBG accountsVBZK7ٿNNSK7?i-1 tag+i word CC dismissVBoʡ?JJoʡi-1 tag+i word -START- marketNNK7@NNPK7i-1 tag+i word TO mostRBS +?VB~jtJJS~jt?JJFWCli-1 tag+i word JJ murkierJJRFx?NNFxi word intentionsNNS~jtx?NN~jtxi word sothebyNNP;On?NN;Onڿ i-2 word cornJJV-NNPV-VBNGz?NNV-@VBDCli-1 suffix mpuVBZףp= NNPS~jtNNPh|?5? i word scotchNNPrh|?NNmJJ-ƿ i+1 word beefNN!rh?RB!rh i suffix olyNNPT㥛 ?NN rhͿVBDtVVBN/$CDjt޿VBPK7A`JJ?i-1 tag+i word IN catholicsNNPS+?NNS+i-2 word containsJJS㥛NNS㥛?i-1 word ratesRPʡE?RBv?NNʡEVBP ףp= @VBN"~j?JJx?RBR"~WDTE?EXGz?NNSʡEVBףp= VBDzG?JJSClIN)\(i word sparklingVBGK7JJ rh?NNX9vi word highlightedVBNS㥛?JJS㥛i-1 tag+i word IN blockingVBP-VBGm?NNףp= i-1 word bankerRBROn?RBOni+1 word afternoonINd;ODTCl?NNPA`"JJ%C@WDTMbX9RBQi-1 word gallopingINA`"?RPA`"i-1 word doubledDT~jt?IN~jti-1 tag+i word IN envyNNˡE@NNSA`"RB(\JJʡEi+2 word responsiveVBNMbJJMb?i word imaginativeJJX9v?NNX9vi-1 tag+i word VB hurtVBNx&1?RBRx&1i-1 tag+i word DT chaosNNSuVNNuV?i-1 tag+i word VBP lowJJh|?5?VBNh|?5i-1 suffix opsNNSV-RP"~JJp= ף?NN/$RBq= ףp?IN"~?i+1 suffix istNNPS1Zd?RBRMbX9?VBP5^I ?VBZ+NNS{Gz@VB-JJPn @INMbX9?JJR(\DToʡ?NNPjt?VBGtVοNN&1VBNx&1?WDToʡRBMbVBDʡEi word encouragingRBMbX9NNS㥛JJjt@VBG rhi-1 tag+i word DT brightestJJSQ?JJQ i suffix olkVB|?5^NNMb?VBDB`"CDʡEJJʡENNS(\?NNPq= ףp?i-1 tag+i word DT southwestNNQ?NNP rJJS +?i-1 tag+i word TO convertVBMbX?JJMbXi-2 word backerNNPSMbNNPMb?i-1 tag+i word JJ drivesNNSGz?NNGzi-1 tag+i word , notedVBNQVBDQ?i word peddlingVBGMbX9?JJ r?NN"~jVBV-i-1 tag+i word NN reachVBI +?VBPn?NN ףp= ߿VBDi-2 word sorghumNNSV-?NNPV- i-1 tag+i word VBD manufacturingVBG"~jNN"~j?i-1 tag+i word DT iranianJJRQ?NNPRQi-1 tag+i word NNP lawNNP9vNN9v? i suffix wns NNSVBD(\CDClNNSA`" @NNPZd;?NNPSZd;VBNx&1JJ%CVBZ\(\?i-1 tag+i word JJ meetingVBGK7NNK7? i+1 word 'emNNPjt?VB ףp= VBP ףp= ?CDjtֿi+1 word hittersNN= ףp=@JJ= ףp=i word mountainsNNP ףp= NNPS\(\@NNSSi+1 word sweepsNNQ޿NNPSS㥛NNSS㥛?JJQ?i-1 tag+i word DT seepedVBZ'1ZܿVBD'1Z?i-1 tag+i word JJ blowNNv/?JJx&1INh|?5 i word pineNNV-NNPV-?i-1 tag+i word TO correctVBv?JJvi-1 tag+i word NN higherRBR1Zd?JJRsh|??VBDli-2 word developersVBDCl?VBPClNN@JJףp= NNP ףp= i-1 tag+i word NN politicsNNS)\(?NNMbX9FWoʡi-1 suffix uts VBPK7A`?VBGK7A`NNL7A`?VBDʡEVBNClPOS|?5^?JJZd;O?CCsh|?''|?5^RBʡE?RP%C?i word anytimeNNx&ѿVB!rhRBB`"?JJh|?5i+2 word united NNPSÿJJQ@RBClNNSffffffVBD+VBNB`"NNPSS?RPK7A`?NN/$?i-1 tag+i word , firstRB7A`?JJv/NNPZd;O?i word overweightJJ?5^I ?RB?5^I i word dioxideNNS㥛?JJS㥛i+2 word spurringNN/$?JJ/$i-1 tag+i word NN appealNNCl?JJ+RB +i-1 tag+i word RB clutteredJJףp= ?VBNףp= i word aegisNNSI +NNI +?i-1 tag+i word IN diplomatsNNS?5^I ?NN?5^I i-1 word busiestNNS㥛 ?NN㥛 i-1 tag+i word NN isVBZZd;O?NNPZd;Oi-1 tag+i word JJ elephantsVBZV-ڿNNSV-?i-2 word beatriceVBNlVBDl?i word lukewarmJJ rh?NN rh i+1 word kateINMb?JJףp= ?DTMbVBNp= ף?RBCli-1 tag+i word NN toolsNNSJ +?NNJ + i word saw VBOnPDTʡEJJ +VBZV-ͿRB&1NN?VBDT㥛Ġ@VBPv/ NNS(\ؿi-1 tag+i word DT britishNNPNNPS1Zd@NNS{Gz?JJx&1@NNMbX i word dressNNDl?JJDli-1 tag+i word , somebodyVBy&1NNy&1?i-1 tag+i word VBZ vomitingVBG-?NN-i-1 tag+i word NNS shunNNP-VBP-?i-1 word conclusionVBNV-?VBDV-׿ i word titlesVBZ^I +NNS^I +?i-1 tag+i word VB singingVBGp= ףNNp= ף?i-1 suffix mit JJ!rh?RBMbVBDuV?INx&1 @RBRuVJJRx&1?VBGE?NNFxVBN5^I i-1 tag+i word CC becomeVBN{Gz?VBPB`"?JJ1ZdVB?NNq= ףpVBDʡEͿi-1 tag+i word , redefiningNNsh|?VBGsh|??i word gardensNNSQ?PRP333333NNPʡEVBZV-NNPSjt@i-1 tag+i word . madeVBN'1Z?VBD'1Zi-1 tag+i word RBR unifiedVBN9v?JJ9v i word sweepsVBZx&1?VBDx&1 i-1 tag+i word -START- continuedNNP7A`VBNMbXJJ333333 @VBD;On¿i+1 word remoraVBP1ZdIN1Zd? i-2 word cJJ&1?VBN?NN&1VBDi-1 word selavoNNPS rNNP r?i-1 tag+i word NNP detergentNN/$?NNP/$i word eruptedVBNClJJ~jtVBD rh @i-1 tag+i word CC instinctJJKNNK?i+1 word definitionRBR333333NNbX9RB?5^I ڿJJʡE޿JJRy&1?i-1 tag+i word NNP tipNNPK?CDKi word squaredVBN~jt?JJ~jti-1 tag+i word POS narrowNNOnJJOn? i word filmsNNw/NNSS㥛D@RB5^I JJKVBN'1Zi word bertholdVBNMbNNPMb?i-1 tag+i word DT validPRP|?5^JJ|?5^@NNZd;Oi-1 tag+i word , conflictNN"~?JJ"~i word unfortunatelyJJK7A`RBK7A`? i suffix xinNN r@NNSv/JJ%CRBSNNPx&1i word alexanderVBNZd;NNPZd;? i+2 word hahnRBrh|߿NNPrh|?i-1 tag+i word JJ threeCDv/ݿNN rNNP/$?i+2 word electricalVBG/$NN/$?i-1 tag+i word , declinesVBZ/$?NNS/$i+1 word revolutionaryJJRQNN5^I ?NNPK?i+2 word whileJJjtNNQVBD&1?PDTS?VBNMbX9@VBPZd;?INX9vVBGʡENNPSV-RBRx&1ȿRBh|?5NNSM@NNPVB/$VBZףp= ӿi+2 word contextVBN~jt?RBrh|FWCli-1 tag+i word NN accountNNQ?RBV-VBPoʡ? i word thusVBNʡEUHmJJ"~jINZd;NNPd;OLS(\ڿRB/$@NNPni+1 word legionJJy&1NNPy&1? i-1 tag+i word -START- crestmontNNS'1ZNNP'1Z?i+1 word publisherJJzGҿNNSy&1NNP}?5^INNm@RBRzGJJRMbXi+2 word priorityJJ\(\?NN= ףp=RBQINQ?NNSxNNPMbX? i-2 word goneNNPS~jtRB;On@JJA`"i-1 tag+i word IN deeperJJR^I +?RB^I + i suffix ottNNPSjtJJS㥛NNbX9?NNPGz?i-1 word nuclearNNPSK7NNMb?NNPmݿi-1 tag+i word VBP thereEXbX9?JJ㥛 RBI +?i-1 tag+i word -START- slidesNNSMb?NNPMbi-1 tag+i word NN huddledVBDGz?VBNX9vNN"~ji+1 word discountedRBHzG?NNHzGi-1 tag+i word DT unfriendlyJJ?RBi-1 tag+i word IN heckVBPMbpUHT㥛 ?NNX9vϿ i word chiefNNPZd;O@VB\(\RB{GzԿNN!rhVBD㥛 VBP$CJJlq@VBZ$Ci-1 tag+i word MD noVB-RB + @DTMbi-1 tag+i word DT turnVBNClNNCl?i-1 tag+i word JJ mockinglyRBp= ף?NNp= ףi-1 tag+i word NN memosVBZMbX9NNSx&1?NNw/ԿFWV- i word slowedVBD!rh@VBNClJJX9vi-2 word deliveringNNST㥛 ?NNT㥛 i word suspendingJJ~jtÿVBG~jt?i-1 tag+i word , sexNN +?JJ +޿i-2 word miseryNNGz?NNPGzֿi-1 tag+i word `` tooUH-RBE?NNP5^I i-1 tag+i word -START- normallyRBGzNNPGz?i+1 suffix pelNN5^I ?VBDףp= ?VBPףp= JJ/$VBZNNS?NNPlҿi-1 tag+i word IN utahEXMbNNuVտNNPFx?i-1 tag+i word IN medicinesNNPS~jtNNP~jt?i-1 tag+i word NNS journalVBPZd;ONNZd;O?i+1 suffix ddsNNn?PDTX9vWDTCl?JJnDTjtNNP(\?NNPS(\i+2 word pragmatistRB|?5^?IN|?5^i-1 tag+i word VBZ foreverRBp= ף?JJp= ףؿi-1 tag+i word NNS globallyVBP%CRB%C?i word jenkinsVBZ(\NNP(\?i-1 tag+i word NNP purchasingVBGy&1?NN~jt?JJ|?5^ʿi word assembliesNNSjt?VBPjti-1 suffix alyDTy&1?PDT-RB9v?NNIN7A`i+1 word mousetrapJJRCl?RBRCli+1 word toxicNN)\(JJClJJR~jt?i word unflatteringVBGB`"JJB`"?i-1 tag+i word PRP$ marketingVBGʡENNsh|??JJʡEƿi word maquiladorasNNSjtNNHzGFW/$@i-1 word thrillerRB?5^I IN?5^I ?i-1 tag+i word : bothDTB`"?VBD-CCZd;߿i-1 tag+i word TO taskVBuVNNuV?i-1 tag+i word DT swanNNS+NN)\(?NNP'1Z i word hideVBP$CNNS1ZdJJ)\(VBV-@i-1 tag+i word PRP$ fatherJJRmNNm? i+1 word barNNPMbNNSJJDl?NNI + i-2 word kkrVBN ףp= RBʡE޿INʡE?VBD ףp= ?i-1 tag+i word VB immediateVBsh|?JJsh|??i+1 word peaceFWv?VBD-?VBNK7A`JJv/NNPx&1VB"~j?VBGm?NN rhi+1 word balloonistsJJNbX9?NNNbX9i+2 word fractionallyJJ|?5^?CD|?5^i-1 tag+i word CC deepVBX9vPDT~jtJJ(\@RBʡEVBZ(\¿i+2 word retailingVBGd;ONNS333333?JJK?NN!rhNNPCli tag+i-2 tag VB WDTVBʡENNʡE?i-1 tag+i word IN hiringNN/$?NNP/$տi-1 tag+i word NNP timetableNNsh|??JJsh|?ݿi+2 word easier NNP-VBN333333?WDTSIN;OnDTEVBPsh|?RB`"?VBsh|??JJ333333NN-?JJR1Zd?i+1 word visitJJ㥛 ?NN㥛 i-1 word corporatistNN"~?JJ"~NNP"~ i-1 tag CCRBSx&VBD(\@VBPʡE?VBZMb?EX= ףp=VBNxWPZd;DT%C?FWT㥛 PRPDl?RBB`"PDTn?VBGRQNNClVBL7A`@PRP$p= ף?WDTx&1CD+?NNPSuV?JJSʡE?JJy&1?RPnCC(\¿$/$?NNSNNPK?RBRL7A`INDlMDV-?JJR~jt?UHrh|?i-1 tag+i word VB risingVBG333333?NN333333i-1 tag+i word DT contemporaryNN-JJ-?i+2 word getting RBq= ףp?NN%C@WPS㥛JJSʡE?VBNmݿJJ`"οVBZClRPFxNNSPn?NNPSPnIN +?NNPK7A`VBV-i word refundsNNSףp= ?FWףp= i+1 word fishingINHzG?JJHzGi+2 word throwsVBZS?NNSm?RBClNNV- i word boysNNS rh@NN rhi word desolateVB ףp= JJ ףp= ?i-2 word mincemeatNNSnJJR rh?JJn?RBR rh i suffix eudNNd;O?NNPd;Oi+1 word conventionNNPSZd;NNףp= ?JJףp= NNPZd;?i word autographedVBN)\(JJ|?5^?JJRCli-1 tag+i word NNP antitrustJJ}?5^I@NN}?5^I i-2 word joseJJ"~j?NNP"~j̿i-1 tag+i word CC scuttledVBNx&?JJx&i-1 tag+i word VBZ downRP;OnVBNK7RB/$@INp= ףi tag+i-2 tag NN VBDVBZ1ZdJJRlRBtV?VBDZd;ORBRl?WDTGzJJVBNT㥛 ?NNZd;@RPp= ף?NNPv/տVBHzG?VBGsh|?ſNNSL7A`?INʡEݿDTHzG?i-1 tag+i word JJ applelikeJJv/?NNV-INx&1i-1 word observersVBD;On?VBףp= ?VBPףp= VBN;Onҿi-1 tag+i word NNP systemsNNPS rh@NNP)\(VBZoʡi-1 word deliberatelyVB +?VBNuV?JJV-i+1 word discontinuationVBNh|?5JJh|?5? i word scoredVBNQ?JJQi-1 tag+i word IN cooperatingNNK7VBGK7?i-1 tag+i word , presumablyVBZ5^I RB5^I ?i-1 tag+i word WP believeVBP"~?VBZ rhVBCl i+1 word onceRB7A`@WDT`"?JJX9vNNPʡEVBʡE?RPzGVBNn?DTףp= @NNSjtCCOnVBZ+@NN rh@POS rhINbX9 i word asked VBNK7A@VBPPnRBSDTףp= NNPtVVBlNNEVBDS@JJ'1Zi+1 word shiftNNHzG?JJHzGi-2 word performedRB`"?RBR(\@JJ`"JJR(\i+1 word personnelRBZd;ONN/$?VBGSJJ)\(?i word crowdedNNSx&VBNV-?NNQJJ(\µi word loyaltyVBZZd;ONNZd;O?i-1 tag+i word CC lengthyJJ|?5^?NN|?5^ɿi-1 tag+i word RB fanfareNNZd;O?JJZd;Oi+1 suffix honJJ|?5^?RB|?5^i+2 word hellsNNSn?NNn i suffix N.JNN ףp= NNP ףp= ?i+2 word miserlyRB rhIN rh? i suffix mer VB7A`RBRzGVBNZd;ONNS/$NNP rhCD+NNPS;On?RBZd;ONN;On?FWh|?5޿JJ'1ZJJRʡ @i+1 word pierceJJ333333NNP333333?i+2 word shereWDTd;ONNʡE?JJʡEINd;O?i-1 word hemisphericNNPSPn?NNPPni word !HYPHENVBNX9vNNPSsh|?JJRRQ?VBPMbX?RP㥛 PRPECDCl@RBRv/?PRP$-VBZS㥛DTMbRBSJJx&1+@NN@INClJJSCl?VBGMbX VBDNbX94 VBWDTʡEUHzG?RBRQ@NNSsh|?@NNPuV?``)\(@i word predictedVBD^I +@VBNZd;OտJJ"~jINMҿi+1 word invoicesJJQ?RBQi-2 word checkoffJJ(\?NNw/NNP- i word permitJJSVBPS?i-2 word tendencyVBV-?NNV-i word dignityVB1ZdNN1Zd?i-1 tag+i word ) borrowingVBGMbXNNMbX?i-1 tag+i word DT scopeNN rh?JJ rhi-1 suffix rsyVBNV-NNv/ݿVBDV-?VBGv/?i+2 word satisfyNNS%C?NN%Ci word derivativeJJ1Zd?NN1Zdi-1 tag+i word , okla.CCʡENNPʡE?i-1 tag+i word IN ammoniumNN?JJi+1 suffix ruhCC rhNNP rh?i+2 word cosmetics NNsh|??FW"~RB333333NNPSV-?VBGy&1JJGzοIN333333?NNSRQ?NNP/$i+1 word containsNN|?5^?JJ|?5^i-2 word administrationVBG= ףp=@RB"~j?NNp= #VBDףp= ?VBNףp= JJ?IN~jt?NNSZd;O? i word supply VBPS㥛VBZ+VBw/?JJʡENNET@VBDxJJRףp= RB+NNS?5^I i-2 word citizensJJCl?RBV-?NNV-NNPCl i word cableJJbX9NNPbX9@i-1 tag+i word NN sayingNNMbX9VBGMbX9@i word thinnerJJzGJJRB`"?NN|?5^ٿi-1 tag+i word NNP mineralsNNSV-?NNPX9v?VBDV-NNPSX9vϿi-1 tag+i word VBN undulyRB}?5^I?JJ}?5^Ii-1 tag+i word DT marineJJ%C?NN%Ci-1 tag+i word JJ fasterNN1ZdJJRS?RB ףp= RBRZd;?i+1 suffix oryNNPS(\?RPQ?NNS\(\NN|?5^RBR'1Z?WDTzG?NNPQ?VBGJ +?JJ"~j?VBN?5^I PRP$㥛 ?WPzGDTV-VBnIN/$VBP-޿RBDl?CDA`"?JJR;On? i word mediaJJ(\NNP(\?i-2 word removeNN"~ڿJJ"~?i-1 tag+i word JJ wayNNP\(\?NN\(\߿ i suffix ILLMDK7A@JJq= ףpNNPni-1 word pulitzerNNS㥛NNPL7A`NNPS$C?JJʡE?i-2 word possibleWDTV-JJ}?5^I?IN{Gz?NNSd;O?VBG)\(RB&1NNl?i-2 word shareholdingsNNףp= JJRףp= ?i-1 tag+i word -START- lawyersNNPK7?NNPSvNNSCl?i-1 tag+i word NNP armoredNNPl?VBDli-1 tag+i word -START- farNNS/$RB`"@JJZd;ONNP{Gzi-1 tag+i word VBG improvedVBN"~ʿJJ"~? i+2 word joniNNP+?WP+ i word louderJJRX9vRBRX9v?i+2 word steerNNSK7ANNK7A?i+1 word droveRBI +?INI +޿i-2 word bioengineersRP +?IN +ֿi-1 tag+i word DT hybridNNQ?JJClNNPSV- i suffix -inJJJ +NNSbX9NN'1Z?i-1 tag+i word IN solvingVBG +?NN +i-1 tag+i word JJ russoNNP"~?NN"~i-1 tag+i word VBG resumedVBN~jtVBD~jt?i-1 tag+i word -START- rayNNPQ?INQi-1 tag+i word VB unrulyJJZd;?RBZd;׿i+1 suffix uitVB?NNX9v?VBDE?VBNEJJMbX?INOnNNSK7ANNPM?i word collapseVBZK7VBK7ANNSB`"NNCl@JJOn i suffix mopNNZd;OVBZd;O?i-1 tag+i word NNS believedVBNDl?VBDDli+1 word handledRBSK?JJSMbNN(\i-2 word enforcementVB1ZdNN1Zd?i-1 word nationaleVBZClIN%C?NNPI +?FWJ +i tag+i-2 tag CC CCVBZ rh?NNS rhi+1 word koreansNNPFx?JJFx i word roadVBx&JJrh|NNPJ +?i-1 tag+i word DT stimulatorsNNPSK7ANNSK7A?i-1 tag+i word -START- exxonNNPSZd;ONNENNP)\(@i-1 tag+i word POS weeklyNNS rhJJS?NNEȿi+2 word preciousPDTS㥛POSX9vֿVBZX9v?DTS㥛?NNS/$NN/$?i-1 word exclusiveNNSn?NNni-1 tag+i word , signalingVBGZd;O?NNZd;Oi+2 word inconsistenciesRPuV?INuVi-1 tag+i word IN chefNNʡE?JJʡEi+2 word changedVBPmIN7A`NNSʡEVBm?NNʡE?VBD7A`?i-2 word textsNNPSRQNNSmNNPOn?i word domineeringVBGzVBGףp= JJ(\?i-1 word competingNNjtNNSjt?JJI +@RBjti word brusselsNNPS~jtNNSףp= RBףp= NNP/$ @i+2 word tartanNN333333JJ333333?i-1 word closingsVBN?VBDؿi-1 tag+i word NNS sparredVBNS㥛VBDS㥛?i+2 word dialsNNQ?JJQi word athleticsNNPoʡ?VBףp= NNPSoʡNNS?NN\(\i-1 tag+i word NNP stockNNPSףp= NN`"NNP rh?i word initiallyRB5^I ?NNMNNPSʡEi+1 word performersJJ;On?NN;Oni+1 word constructionNNSClNNPmͿVBG?NN(\?JJS;On?CDPnJJS?i+1 suffix eryRBSClۿJJy&1@NNP rhVBZX9v?RP`"NNMbXѿNNS-VBD rhͿVBG rhWDTV-?INnDT#~j?VBV-?NNPSnѿJJSX9vVBNFx?VBPbX9ֿRBQ?CC1Zd?i+2 word baronsJJK7A?NNK7Ai+1 suffix gthVBGKJJK7A@NNPn?JJSZd;O?VBN;OnRBS㥛i-1 tag+i word RB litVBD r?RBuVFWףp= i+2 word treacherousJJ-?NNʡEVBNq= ףpͿi-2 word rebatesNN ףp= ?JJKVB rhݿi-1 tag+i word NNP praisingVBG-?NN-޿i-1 tag+i word NNP planeNNx?JJxi-1 tag+i word VBG cottonNNy&1?JJy&1ܿi-1 tag+i word VB completedVBN?JJi+2 word kilometerVBDʡEVBNʡE?i-1 tag+i word JJ suddenNNuVVBD~jtNNSMbJJMbX9@i-1 tag+i word JJ socialistJJ!rh?NN!rhi+1 word sellersJJx&1?NN~jtNNPZd;׿VBMb i word sportyJJK7A`?NNK7A`i-1 tag+i word NN breakingVBGMbNNMb?i+1 word scantRBZd;O?RBSV-NNffffffJJClɿi-1 tag+i word CC southernersNNPS?NNSi-1 tag+i word VBZ patientJJ#~j?NN#~jԿ i word ritesVBZ/$NNS/$? i word radiosVBK7NNSK7?i word presidingNNh|?5VBGh|?5? i+1 word suchVBNSRBRK7A`?VBP㥛 ?VB\(\?VBGʡEVBDm?NNSK7@JJn NN/$@VBZK7ADTK7@WDT-RBK7INS㥛?JJRK7A`i-2 word changedVBףp= ÿNNStVNNM?JJˡEi-2 word vacationingJJ)\(VBD)\(?i+1 word trainNNP%CԿNNS?JJ9v?i-1 tag+i word NNS undermineVB9vVBP9v? i+2 word u.s.WDTClɿJJQ?INZd;ONNP/$?NNS rh?VBP?5^I WP!rh?RPx&1?VBNK7?CDbX9?RBK7A`?NNKVBnVBGZd;VBZV-VBD!rh?PDTbX9?i tag+i-2 tag WDT RBVBPV-VBDV-?i word outragedRP(\VBN ףp= ?JJGz?i-1 tag+i word RB existsNNS= ףp=ڿVBZ= ףp=?i+2 word toward RB/$?JJRS㥻?VBN/$ۿJJ}?5^INNClVBDmCC/$RBRV-?NNSq= ףp?NNPq= ףpVBGNbX9?i-1 tag+i word NN streamsNNS?NNпi-1 word deliveryVBN^I +?NN"~?VBD/$i-1 tag+i word RB evidentVBPQJJףp= ?NN(\i-1 tag+i word VBG copperNNI +?JJI +i-1 word ventureNNffffffVBDffffff?VBN)\(RBV-?IN-ֿVBZ1ZdӿNNSV-ڿi-1 tag+i word CC maximumVBQNNʡE?JJK7i-1 word strategicNNS(\µ?NNPS"~?VBG rNNK7ANNPMbXѿi-1 tag+i word IN divisionNN}?5^I?NNP}?5^Ii-1 tag+i word TO longJJCl?RBClǿi-1 tag+i word NN equivalentJJ?RBq= ףpNNni-2 word pressuredVBMb?JJMbi+1 word campsNNK7A`?JJK7A`i word catcherPRP\(\NN\(\?i-1 tag+i word CC friendsVBZףp= ӿNNSףp= ?i+1 word dartboardNN(\?NNP(\i+1 word extensionNNPS333333NNP333333?i+1 word examinerNNZd;O?NNP%CJJOn? i suffix zes RBzGVBPK7JJ ףp= NNP$CNNPS$C?VBDSVBZV-o@NNSX9v>@NNbX9 i+1 word cash VBD{GzRBRlVBPp= ף?RBxVBZ㥛 ?NNS㥛 VBv/@JJL7A`?NNP"~jVBN(\JJRl?VBGM¿NNʡE?i+1 word deferringRBZd;O?JJZd;Oݿi-1 suffix iamNNPS/$NNףp= ÿNNP}?5^I?i+1 word musclesVBPV-@JJOnNN'1Zi+1 word soundsDT +?WDT +οJJJ +?NNJ +i-1 word clinicalNNPS9vNNS\(\@INKVBZQi-1 tag+i word DT socialistNNPHzGJJZd;?NN"~i-1 tag+i word NNS findVBQVBPQ?VBDQi tag+i-2 tag VBN VBPNNS~jtNN)\(NNPV-?WDTMbXJJ1Zd?IN㥛 ?VBZL7A`?VB-?JJSS㥛?VBNZd;RBR\(\?CDZd;OJJRI +DTQ?VBGuVRB\(\?WPlRBSS㥛VBPrh|׿RP-?i-2 word assessmentJJSHzGNNHzG?i-1 tag+i word JJ wildJJ\(\?NN\(\ i word headedVBN @JJ&1VBD(\INףp= i-1 word revealedDTMbINMb?!i-1 tag+i word -START- mediobancaNNˡEԿNNPˡE?i-1 suffix war NNPK7A?NNPSK7AVBD-?VBN-WDT)\(JJ/$NN/$?POSZd;O?IN)\(?VBZZd;Oi+1 suffix hip PRP/$ٿRBQտNNS+VB{Gz?VBGK?JJ}?5^I?NNoʡJJR?5^I ?NNP(\ſVBDX9vVBN ףp= CDp= ף?i-1 suffix eep VBZ= ףp=NNPZd;OVB'1ZJJClǿWDT}?5^IDTCl@INV-?RPV-NNST㥛 ?VBG|?5^NN/$@VBN1ZdRBKi word fishermenVBʡENNSʡE? i suffix uce VBn@@JJw/VBP ףp= @RBZd;ONNS^I +NNK7?JJR/$VBN'1ZNNPx&?i+2 word maintainedVB rh?VBP rh i word emptyVBZ/$JJGz @NN= ףp=RBMbXɿ i word bilanzVBPNbX9NNPNbX9?i-1 tag+i word NN riskierRB{GzJJRDl?NN +i-2 word purchasingVBPffffffNN{Gz?JJ{Gzti word montgolfiereNNQFWQ@i word shutdownsNNSDl?NNDli word attemptedJJM?VBDʡEVBNi+1 word decemberVBNQ뱿JJHzG?RBԿi-1 word temperaturesNNʡERBjt@VBPʡE?EXjti-2 word hommaVBGNN@i-1 tag+i word VBZ detailedVBNJ +JJJ +?i+2 word rivalJJR&1NNS&1? i word deputy VBZʡENNS|?5^NNPSV-VBDVBNnVBPX9vJJ(\@NNP;OnNN)\(?i+2 word threeNNS~jt?RP7A`?CDx&?WDTClۿINQտJJK7NNGz@RBRM@JJRMNNPMbпVBzG?VBDʡE@VBNRBoʡݿVBZףp= NNPS'1ZVBPV-i-2 word jacobsonNNPSClNNSMbNNPX9v? i word poniedVBPClVBDCl?i+2 word interimVBZ333333?NNS333333VBNOnVBDOn?i-1 tag+i word RB undevelopedVBN!rhJJ!rh?i+2 word become VBDQCDCl?VBPףp= ÿVBZh|?5?NNSFxNNPS^I +׿JJ5^I ӿNNPA`"NNsh|??i word stabilizeVBPS㥛NNV-VBʡE?i+2 word chargesNNM?VBDʡEVBNCl@JJS㥛VBZCl?NNSMbVB ףp= ǿVBGS㥛?i-1 tag+i word -START- whereINʡENNPClMDnWRB(\@RB7A`JJ1Zdi-1 suffix car NNPClNNPSh|?5?NN`"?VBNy&1?WDTCl?VBD(\ݿJJQ?INxNNS(\? i suffix ubeNN㥛 ?JJ㥛 i+2 word removedJJSbX9NNbX9?i-1 tag+i word VBZ suspectNNK7JJK7?i-1 tag+i word DT edgyJJ(\?NN(\i+1 word directionNNV-VBDףp= JJp= ף@VBNx?i-1 tag+i word VB holderNN333333?RB333333!i-1 tag+i word -START- ambassadorNNrh|NNPrh|? i suffix iwiNNGz?JJGzi-1 tag+i word NNS disputeVBP?NNi word thousandVB&1ҿNNS+NNsh|CDB`"@i-1 word polystyreneVBG̿NNx?JJʡE i-1 suffix atJJRK7APRP$'1ZVBP"~jJJp= ף?PRP~jt?NNSClRBRv/?JJS|?5^?VB㥛 CDrh|?NNPS"~j?VBGjtܿDT-?NNPn?CC;OnINRBSV- @VBD rhVBNB`"VBZ~jtRP-ۿNNB`"?RBoʡ?PDT"~j?i-1 tag+i word CC strohNNPSS˿NNPS? i word opiumNNB`"?JJB`"i-1 suffix eefNNSZd;?VBDZd;i-1 word reassumeVBGˡENNS?JJbX9i word notablyRB/$?JJ/$i word neutralizesVBZQ?JJQοi-1 tag+i word RP oneRB;OnCD;On?i-1 word judiciali word menstrualJJffffff?NNffffffi tag+i-2 tag PRP INRPGzRBDlѿJJSjt޿UH9vINDlPOS|?5^MD(\VBS?VBPK7@JJRRQVBGS?VBZ#~j @NNSM?VBDw/?RBR(\?NN)\(WDTZd;O?JJI +DTDl?RBSjt?VBNZd;Oi-1 word smokeVBN9vVBD9v?i+1 word relationsCD rhݿJJFx?INnNNP7A`VB7A`NNX9v@i word damagingVBGCl JJv@NN;Onڿi-1 tag+i word RB holdVBV-?VBPˡE?VBD;Oni+2 word recklessNNZd;ONNSL7A`?JJzG?RBI +޿i word triggersNNSSVBZS?i-1 tag+i word WDT includedVBPsh|?VBDsh|??i-1 tag+i word NN branNNSGz߿NNGz?i+1 word watergateRB'1ZIN'1Z?i-1 word bioengineersVBP㥛 VBN ףp= VBDw/?i+1 word regulationVBD)\(JJˡEWP9vNNP?VB;On?VBGX9vNNCl?i+2 word wasteVBP rhNNSA`"NN|?5^?NNPoʡ i+2 word p&gNN+NNP+?i-1 tag+i word JJ s&pNNPX9v?NNX9vο i suffix rns VBV-NN33333 VBD\(\CD+INGzVBZOn"@NNPSSVBPv/JJ/$NNS(\µ$@NNPuV?i tag+i-2 tag VBG NNPRP$rh|NNPSy&1?RBw/INZd;ONNClVBNI +NNSZd;O@NNPx&1?VBPPn?WDTףp= @PRPS?JJGz?VBZS㥛DTT㥛 RPL7A`VBD(\?CCJ +?PDTv/RBR(\JJRJ +@i-1 tag+i word JJ aidNNP1ZdNNS!rhVBNK7A`NNCl@ i-2 word whamUHy&1?NNM¿NNPi word occasionsNNS?IN̿i-1 tag+i word IN malaysiaNNPDlNNDl? i word startsVBZl @VBPK7A?NNSMbX9 RB1ZdNNMbؿi-1 tag+i word JJR convincingVBG"~JJ"~?i-1 tag+i word VBD earlierNNSX9vRBR ףp= ?RBZd;O?VBNGzi-1 tag+i word VB excellentJJHzG?RB/$NN`"i-1 tag+i word CC mipsRBGzNNPV-NNS#~j@ i word telexNNFx?JJFxѿi-1 tag+i word , estimatedVBN}?5^IVBD}?5^I?i+1 word preventsNNS㥛?JJS㥛 i word breedVBPV-?VBNh|?5NNh|?5?VBDV-ڿi+1 word aimedNN!rh?RB+?VBG/$ i word bloodyNN ףp=INSNNSQJJK7@ i word harryJJbX9NNPbX9?i+2 word drillVBZZd;O?NNSʡEƿNNx&1ܿi+2 word beigeNNSnNNn?i+2 word leaseVBp= ףVBPv/?JJv/NNp= ף?i-1 tag+i word VB backingVBG+NN+?i-1 tag+i word WP aboutVBZuVRBOnINMb?i-1 tag+i word VB stupidJJCl?NNSCli word worriedVBNx&JJʡE@NNClVBDL7A`i-1 tag+i word NNP impactJJv/NNPv/?i+2 word participantsWDTsh|??JJlINsh|?NNS?NNVBD9vVBN?VBP$C˿ i-1 word postJJjtNNjt?RBSrh|?JJSrh|RB{GzIN{Gz?i word postponeVBn?RBni-1 tag+i word DT tumorJJw/NNw/?i-1 tag+i word VBG freerNN&1JJ-JJRMb? i-2 word keptRBRMbJJPn?INnѿRPn?RBQNN5^I ۿJJRMb?i+2 word preparesRB!rhܿIN!rh?i-1 word indexesJJʡEVBDʡE?i word metaphorNNSClNNCl?i+1 suffix aldDTK7A`?NNSʡENN"~j?JJ(\INK7A`i-1 tag+i word VBZ irrelevantJJ;On?NN;Oni-1 tag+i word IN luckNNT㥛 ?VBNT㥛 ؿ i word ardentJJS?NNSi+1 word insulinsJJK7?NNK7i-1 tag+i word VBP exhibitsNNSCl?VBNCli word entrepreneurialNNSJJS?i-1 tag+i word DT beatVBD+ηJJJ +@NNMbXi-2 word concededJJ7A`INX9v?NNPOn?DTX9vNNPSS i-2 word fed RBRK7JJR/$ۿVBMbVBN$C?VBGX9vNNy&1VBDbX9?RB)\(?VBZMb?NNSHzG?PRP$&1JJ{GzVBPrh|?i-1 tag+i word NNP intergroupNNPS/$NNP/$?i-1 tag+i word NNS controlVBP}?5^INN\(\@NNP;Oni+1 word restructuring POSZd;?JJ$C@IN%C?VBGjtNNsh|??VBD5^I VBNS㥛''Zd;WDT%CԿi word hostile NN(\VBNERBp= ףVBZ^I +VB!rhJJRZd;IN^I +NNPffffffƿJJx&1@ i suffix scoNNPffffff?NNPSV-RP+NN/$?VBNMbX9ܿRBʡE?VBZT㥛 i-1 tag+i word RB beforeRB ףp=@INJ +DT"~jVBSVBDq= ףpVBNV-JJRZd;Oi-1 tag+i word NNP rulingVBG ףp= NN ףp= ?i tag+i-2 tag NN WPNNPS +NN^I +?RB rh?JJ rhݿNNPCl绿i word achievingNNV-VBGV-?i-2 word simplifyJJRˡE?RBRˡEi+2 word newarkNNMb?JJMbi-2 word issuesVBP?5^I DT1ZdVBV-?INbX9?RBR rhNNPzG?RP{Gz?RB +JJR rh?NNv/JJl?VBN-?NNPS5^I ?VBDʡEi-1 tag+i word NNS needsVBZ/$NNS/$?i+1 word vulnerableRBSn?JJSV-VBNSi-1 tag+i word RB harmsVBZ1Zd?RB1Zdi-2 word monopoliesNNS9vRB&1NNp= ףVBNjtVBPE?JJ rh?VBZ/$?i-1 tag+i word DT teenageJJtV?NNtVi-1 tag+i word DT bubblelikeJJrh|?NNrh|߿i-1 tag+i word NN frayNN{Gz?RB{Gzi-1 tag+i word VBD palmsNNSGz?JJGzi+2 word threwDTT㥛 INT㥛 ?i+1 word goodyearDTV-INV-?i-1 tag+i word DT scalingNNQ?VBGQ i word sesameJJy&1NNPy&1?i-1 tag+i word IN trimJJ/$?NN$CRB{GzԿi+1 word cooperationJJuV?NNuVi-1 tag+i word -START- shellRBsh|?NNPx?NNS~jt i-1 word shawNNPSʡENNPʡE? i suffix ocoJJGzNNPGz?i-1 tag+i word DT masterNN㥛 @JJRSJJQοNNP-i+1 word wellingtonVBV-?VBDV- i+1 word mikeVBZ +?POS +i-1 word distributorsRB r?JJjtԿIN7A`i-1 word recommendingWDT(\IN(\?i-2 word centeriorVBGB`"?NNB`"i+2 word transactionVB$C˿NN(\пVBDZd;?PDTw/VBNQVBPxJJjt?i word beforehandNNRB@i-1 word bailiffVBN rhѿVBD rh?i-2 word outflowRB ףp= IN ףp= ? i suffix kidNNSnٿNNʡE?JJMbVBDMb?VBPnҿi-1 tag+i word DT detourNNn?JJni word pastimesNNSrh|?NNrh|"i-1 tag+i word NNPS administrationNNx&NNPx&?i word skiddedVBDffffff?VBNffffffi-1 tag+i word DT cloutNN/$?JJ/$i-1 tag+i word -START- carriedVBVBNNbX9?VBDHzGѿi-1 word nearestJJjtֿVBG+NN rh?i+1 word clothesVBG/$JJ r?NN/$?NNP r i+1 word e.VBN5^I ?JJx&1VBD rhNNPsh|??INd;Oi word cathodeVBV-NNV-? i-2 word jan.NNT㥛 VBGT㥛 ?i-1 tag+i word `` teddyDTB`"ɿNNP|?5^?RB}?5^IFWCli+2 word treatisesVBNrh|JJrh|? i-2 word trimNN+NNP㥛 ҿVBZ9vNNSCl?JJ+?i-1 tag+i word RB complicatedJJrh|VBNrh|@i-1 tag+i word TO satisfyVBK7A`?JJK7A`i-1 tag+i word ) attachedVB(\VBD(\?i-1 tag+i word DT guyVBrh|NNrh|?i-1 tag+i word NN fansNNSrh|?NNrh| i word copeVBx&?NNx&i-1 tag+i word VBZ yieldVBP-VB-?i-1 tag+i word NN springVBG rhNN rh?i+2 word turnedNNSK7A`?NNP!rhNNPSK7A`NN}?5^I@POS(\?JJd;OֿVBZ(\ i suffix PANCDv/NNP#~j?NNJ +ѿ i-1 word lawVBG&1?RBB`"?JJB`"VBDMb?VBZS?INMbX?DTSӿVBy&1NN(\?PDTʡEVBNZd;O?VBPy&1?NNPSlPOS^I +WDT;On?NNSS㥛ؿNNPT㥛 i-2 word separatedVBNQ?JJHzGVBD(\i-1 tag+i word PRP atticNNx?JJxi-1 tag+i word VBD suitNNZd;?JJZd;i+1 word problem PRP$S?NNPSEпINw/DT@NNP^I +RBA`"NNRQ@VBNZd;O?JJy&1VBZI +NNSw/i+1 word surveillanceNNSK7A`NNK7A`?i-2 word migrateVBZd;ONNSʡEJJI +?i-1 tag+i word VBP spousesNNS/$?VBZ/$i-1 suffix iesRBRX9v@CD(\JJRh|?5POSrh|?PRPZd;PDTx?NNPZd;@VBClJJSsh|?VBD/$?''Mb?JJQ DTp= ףRBSNNSˡENNPSM@VBNV-?WDT\(\?VBZrh|@NNMbXINPn?UHq= ףpͿVBGl?VBP5^I  @RPA`"?i word minikesNNS+NNP+?i-1 tag+i word NNP assurancesNNPSOnNNPOn?i-1 tag+i word IN doVBjt?VBPjtֿi+2 word demographyVBZd;@VBNZd; i suffix rol VBx&@RBMVBP+?NNS|?5^NNPSʡENN&1@JJHzGVBZSNNPˡE?i-1 tag+i word WP takeVBPtV?VBDtV i suffix ied DTV-VBZd;NNCl'VBD'1-@JJR1ZdVBNp= #/@RBMbX9VBZףp= NNSV- JJCl@VBPuVINDlNNPNbX9?i-1 tag+i word NNP weaponsNNPSZd;NNPZd;? i-2 word f.VBNX9vNNPVBQNNPS'1ZĿNNCl?VBDX9v?i+2 word embezzlingVBN +?JJ + i word nuttNN~jtNNP~jt?i-1 tag+i word NN getVBP9v?NNQ뱿VBMbi-1 tag+i word NNP findVBZd;OVBPZd;O? i word datNN ףp= ׿JJ{GzԿNNP(\? i-2 word seenVBZ/$JJ{Gz?NNp= ףRB/$?CD rh?i-1 tag+i word NN attractsVBZ +?RB +i-1 tag+i word TO proceduresVBSNNSS?i-1 word booksVB#~j@WDT333333RBRQNN|?5^INE?i-1 tag+i word NN seemedVBG+NNxVBDq= ףp?i-1 tag+i word JJ cellNN+?VBP+i-1 tag+i word NN principalJJ"~?NN"~i+1 suffix venVBG~jt?NNuVVBD%C@NNSNbX9?VBN&1POSףp= ?VBbX9 @PDT rhJJS{GzRPMbX9?VBZKNNPd;OοNNPSx&VBPˡEDT/$CD(\?CCQWDT"~JJ-INףp= RBFx@ i suffix oys NN/$VBDZd;OVBPPnNNS= ףp=@NNP#~jVBV-RB ףp= JJ^I +VBZ-'@i-1 tag+i word PRP$ canalNN+?JJ+ۿi+2 word cineplexVBG7A`¿NN +RBZd;?RP333333DTbX9?VBZd;Oi-1 tag+i word IN abandonedVBNw/?JJw/i-1 tag+i word PRP$ bestJJS/$@RBSV-NNuVJJjtܿi-1 tag+i word DT landJJZd;NNPM?VBPB`"ٿNN ףp= ? i+1 suffix laNNPx&1?INZd;OͿFWNbX9i-2 word bancoFWx&?NNPx&i-1 tag+i word CD bushelsNNS(\?NN(\ݿ i word dinedVBNK7A?VBDp= ףVBPCli-1 tag+i word NN straighterRBRzG?NNzGi-1 word existentNNS@JJSi+2 word flyingNNMbXRBSClJJSCl?JJEؿNNSK7?VBGS?i-1 tag+i word VBN easternJJV-NNPV-?i+2 word fearsJJJ +VBD~jt?IN9v?VBP9vVBNT㥛 пi-2 word devices RBSzG?RBv/?VBʡENN{Gz?JJSzGRBRKEX(\RP\(\?JJy&1?JJRK? i suffix R.INNPSOnNNPOn?i-2 word stateswestRBS-?JJS-i-1 word dosesVBNM?VBDMi-1 tag+i word DT secureNNMbпJJMb?!i-1 tag+i word -START- downgradedVBN"~j?JJ"~ji-1 tag+i word NNS relentVBPx?JJxi-1 word impedimentsVBNCl?JJCli+2 word nullifyNN)\(?JJ)\(i-1 suffix nduNNCl?JJCli-1 tag+i word , involveVBZKVBv/VBP333333@JJRQi-1 tag+i word NN aideNN!rh?RB!rh̿i+2 word brutishJJ+?RB+i-1 tag+i word NNP strikeNNFx?NNPFxi-1 tag+i word PRP pastJJ rhINS@VB#~ji+2 word shiftedNNV-?NNPV-i+1 suffix rylRBV-VBDV-?i word groundsNNPSd;O@NNSh|?5?NNjt޿NNP ףp= VBZ"~ji-1 tag+i word RB stimulusNNq= ףp?JJq= ףpi-1 tag+i word IN misleadingVBGNbX9?JJNbX9 i suffix tee VBPS㥛ؿWDTKRBX9vNNP%C?JJ~jtNNV-o@VBD rhVBNS㥛DTx&NNS~jti-1 tag+i word IN fearNN-?JJ-VBDV-VBPV-?i+2 word bedfellowsVBPx?JJRxi-1 word crowdVBG+VBD+?i-1 tag+i word -START- stocksVBZv/NNSPn?JJףp= i-1 tag+i word CC regulatorsVBZd;O@NNS1ZdVBD/$i-2 word wooedNNSnѿVBNE?JJMb i+2 word flawWDTS㥛INS㥛? i suffix holJJ+FWKNNn@i-1 tag+i word `` lowerVBv/ͿJJRv/?i-1 tag+i word DT renewedVBNS@JJSi-1 tag+i word VBP backVBZd;ORPFxɿRB㥛 ?JJ~jt i-1 word keckPOSʡENNʡE?i-1 word oboistNN+NNP+?i-1 tag+i word RB slowerJJRjt?JJjti-1 tag+i word IN liarsNNSZd;O?NNZd;O i word rushNNSuVNNuV?i-2 word quinlanNN= ףp=JJSۿVBDʡE?i-2 word declinedNN㥛 JJRףp= JJp= ף?VBNvVB ףp= @i+1 word texasRB5^I IN5^I ?NNP7A`?JJ"~jNNx&VBDK7A`JJR/$?VBPK7A`?i-2 word fartherRBRx&1?RBx&1i-1 tag+i word JJ amendmentNNvNNPv?i-1 tag+i word , easedVBD/$?VBN/$i-1 tag+i word NN signNNbX9?RBbX9 i word foolNNSˡEĿRBRGzNNX9v?i+1 word datingNNMbX?JJMbXٿ i+2 word abVBGNNx&1?JJoʡi-1 tag+i word RBR inclinedVBNNbX9JJNbX9? i suffix akyJJCl @NNK7ARBʡE i word devilsJJ㥛 NNS㥛 ?i-1 tag+i word RB concertosVB+NNS+? i+1 word ! SYMRBRffffffRBMb@JJRJ +?NNS)\(WRBS㥛JJJ +ٿVBNZd;OVBP/$?UH"~j@NNP+NNw/ @VBDB`"ٿi-1 tag+i word JJ uncertainJJ`"?NN`"i+2 word trimmedVB)\(VBP)\(? i word cappedJJGz?VBD{GzNNZd;VBNCl?i-1 tag+i word VB operatingVBGFxNNFx?i+2 word forecastingVBGS?NNSi-1 tag+i word PRP$ mainstayNNsh|??JJsh|?i word stockholdersNNS~jt?NNPS~jtۿ i suffix curVBZClVBS㥛?NN+VBDQVBP|?5^@RB/$i word dawdlingVBG|?5^?NN|?5^i-1 tag+i word NNS blownVBPx&1VBN +?VBD$C˿i-1 tag+i word IN grazedVBN?5^I VBD?5^I ?i-2 word omnicorpNNPSV-?NNPV-i word renewedVBNMbX@NNX9vVBDsh|? JJʡEƿVBS㥛i-1 tag+i word VBG diminishedVBNS?JJSi-1 tag+i word DT boardroomsNNV-NNSV-?i-1 tag+i word PRP approveVBZzGVB'1Z?VBPRQ?INOnVBD}?5^I̿i-1 word thirdVBZzGJJ~jt?NN~jtNNPzG?i+2 word doverCD rNNP/$?NN(\i-1 tag+i word , decideVBK?RBKi-1 tag+i word RP bloodNNNbX9?JJNbX9i-1 tag+i word RB educatedVBN"~j?JJ"~ji word predominantlyRBDl?NNrh|JJףp= i+2 word scientificallyNN ףp= ?JJ ףp= i-2 word chainVBDPnVBNPn?JJzG?VBZ(\?NNS(\NNzGڿ i word grownJJx?VBI +NNffffffRBʡEVBNS@i-1 word releaseNN^I +JJX9v?RBRGz?RBm?VBNףp= i word televisionNN|?5^?NNP|?5^i-1 tag+i word PRP$ forecastNNʡE?JJʡE i-2 word boonVB7A`NNPS/$NNx?JJx&1NNSMbX9NNPw/?i-2 word discussionsJJ5^I ˿PDT5^I ?i word purposeVBPK7NNK7?i-1 tag+i word NNS goVBʡE?VBPʡEi-1 word manhattanNNV-@RBMbX9INK7AVBPMbX9i+2 word indicatorsNNS/$տNNP!rhVBG&1NNERBSA`"JJSA`"?JJQ@i-1 tag+i word JJR thereafterRBʡE?NNʡE i-2 word your RB9v?VBD`"?VBNV-INףp= ?VBMbX9?NNPSV-?VBP ףp= ?JJ$C?VBZQNNSClNNPK7A`RP+?NNV-׿i-1 word refineryIN5^I ?NNPK7?RB5^I VBDK7i tag+i-2 tag NN INCDjt?NNPSMb?VBNjt@WDTjtFWL7A`堿NNSx&1?RBR +?JJRRQVBGSVBP rh@RBE?VB/$JJSS''QDT{GzRP~jtNN(\?NNP|?5^ʿCCffffff?EXK7A`?IN(\?VBDx&JJ'1ZVBZQ?POS"~ji word vacationNN-?NNP-i-1 tag+i word NN outlaysVBZx&1пNNSbX9?RBFxi-2 word startsRPˡERBˡE?i-1 word acknowledgeDT|?5^?IN|?5^ڿi-1 tag+i word PRP aiVBPMb?VBDMbi-1 tag+i word PRP triedVBD/$?VBP/$i word predecessorNN^I +?JJ^I +i-1 tag+i word NNP suburbNNx&1?VBDx&1 i suffix hiaNNʡEۿNNPʡE? i word rankedVBN/$ۿVBD/$?i-1 tag+i word VBZ handsVBZ!rhNNS!rh?i+2 word propertiesRBCl?VBDv/CDףp= VBPv/?JJ{Gz?INMNNPףp= ?i tag+i-2 tag ) NNSNN~jtVBDX9vVBPx&@WDT{Gz?RB rhIN{Gzi-1 tag+i word NNP quitNNZd;OVBDMbVBP +?i-1 tag+i word JJ usesVBZuVNNSuV?i-1 suffix necRB;OnIN;On?VBZ1Zd?NNS'1ZNNPSHzGNN1ZdVBDtV?VBP;On i word knotVBNmNNm?i-1 tag+i word CC printsVBZHzG?NNPS!rhNNS$Cۿi-1 tag+i word , chiefNNףp= ?VBDK7A`VBZ$CVBP$CJJjt? i suffix RANNK7A`տINK7NNPjt? i-1 tag+i word JJ manifestationsNNS)\(?NN)\(i+1 word lebanonNNSտNNPS? i word anticsNNS+?NN+i-1 word truckNNPnVBDFxVBNFx?JJB`"@VBZ{Gz?NNSK߿i+2 word assumptionsVBK7JJK7?i-1 word deterNNS;On?VBZ;Oni+2 word repairJJ}?5^I@NNEIN ףp= ߿VBZy&1NNSy&1?i word rebuildingVBGZd;O?JJZd;Oi-1 tag+i word IN workNNSnNNn?i-1 tag+i word CC laterRB333333?RBR!rh @NNHzGJJRQVB{Gzi-2 word harderVB/$?NN/$i-1 tag+i word DT gapingVBGʡEJJy&1?NNOni tag+i-2 tag IN VBDDTMb?RPA`"@NNHzG?PRPMbX?PDTvINjt@VBD+JJˡEWDTn?NNSV-ϿRBR/$?EX{Gz?NNPST㥛 ?JJSMbPRP$MbXVBPMbP?JJR/$ NNPbX9?WRB7A`VBNS㥛?VBZHzGVB/$CDy&1?VBGw/RBvi-1 tag+i word JJ homeNNSHzGNN9v?JJ= ףp=ҿNNP333333?i+2 word takeoversJJ|?5^?JJR rh?NN|?5^ɿRBR rhi-1 word cookingNNS/$?CD/$i-1 tag+i word NNP ignoredVBD(\?VBNMbNNPZd;Oi-1 tag+i word RB wantVB㥛 ?VBPQRBZd;JJ%Ci-1 word budgetsWDTy&1?VBN}?5^I?INy&1VBDuVVBPQi+2 word fannieNNPSbX9NNPbX9?i-1 tag+i word PRP operationalRP-JJ-? i suffix loyCC`"VBP`"?NNSjt޿NNMb?JJ|?5^i-1 tag+i word VB seemedVBN rh?VBD rhٿ i word cut VBv?NNMbVBPV-VBZA`"VBG~jtJJ)\(VBDsh|?@VBNQ@RB\(\NNS!rhi-1 tag+i word MD eitherCCjt?DTMVB)\(RB&1?i-2 word adaptedNNRQCDRQ? i word hoardsVBZd;ONNSd;O?i-1 tag+i word -START- corroonNNnNNPn?i+1 word grannyJJMb?NNPMbi-1 tag+i word VBG haltNNSSNNS?i-1 word contemplateNNDlVBGDl?i word performingNNS˿VBGB`"?JJli+1 word basicallyVBNn?RBni word monarchyNN7A`?JJ7A`i-1 tag+i word JJ ladyJJSx&NNQ @JJp= ףi-1 tag+i word VBD netDTx&1NNS`"NNʡE@JJQѿVBN(\i-1 word notifiedRB^I +IN^I +?i-1 tag+i word DT seriesNNS)\(NNCl@NNPCli-1 tag+i word NNP talentNNʡE?JJʡEͿi word unfortunateNNI +RB ףp= JJ rh?i-1 tag+i word IN promisedVBD rVBN5^I @JJA`"i-1 suffix achNNS㥛?VBDn?NNSDlJJ/$?VBNT㥛 PRPjt@RB"~ʿVBP\(\POSl?JJR rh?VBZlڿCDMb?RP rhVBG#~j?NNP}?5^INNPSZd;O?i-2 word reinstatementVBN%C?JJ%Ci+2 word stayedVBNxVBDx?i tag+i-2 tag JJS POSJJxNN ףp= ?JJSDlVBNHzG?VBPZd;RBZd;O߿NNSE?VBGS? i word crooksNNS+?NN+ i-1 tag+i word CC administrativeJJ/$?NN/$i-1 tag+i word DT excaliburNNPSI +NNPI +? i+1 word arabVBNClJJCl?i+2 word propelRB^I +IN^I +? i-1 word find JJR5^I VBN"~CDx&1NNSSRP{GztJJ333333@NN ףp= ?PRPzG?RB#~jܿINSVBGNbX9i-1 tag+i word VBP minorVBN+JJ+?i-1 tag+i word `` specificJJ(\?NN(\ i word f.e.NNPS~jtӿNNP~jt?i+2 word cargillVBP&1NN&1?i-1 word grilledRB!rhNN!rh?i word squashedJJS㥛?NNS㥛i-2 word perozoNN&1?JJ&1ʿ i word brewedVBNQ?NNQi-1 tag+i word TO assistVB㥛 ?PDTClNNV-i word robbingVBG+?JJ+i-1 tag+i word DT agaNNPS"~jNN-NNPGz?i-1 tag+i word NN showingVBGzG?NNzGڿi-2 word massiveNN+@RBDlINbX9i word suppressedJJI +VBDI +?i+1 word nursesVBDZd;VBNZd;? i-2 word hairVBX9vNNX9v?i-2 word bordenVBNjtVBDjt? i+1 word bids NNPV-VBDQ?JJ/$@INZd;OVBN rVBZ^I +VBGoʡ?NNGz@CC/$i word conclusivelyRBp= ף?JJp= ףпi-1 tag+i word PRP regardVBPGz?RBV-տVBDK7Ai+1 word belgianJJ~jt?VBD~jti-1 tag+i word TO unrelatedJJ(\?VB(\i+2 word distinguishedVBZGz׿POSGz?i+2 word barriersDT#~j?VB7A`?VBDq= ףpPDT|?5^VBPx&1RBK7ٿi+2 word candidatesJJrh|?VBD5^I RBDl?NNINDli-1 tag+i word NNP workersNNPSp= ף@NNSX9vֿNNPDli word undisclosedJJCl?VBDCli+1 word resignedNNMb?VBZ/$VBGMbRB/$?i-1 tag+i word VB insulinRB ףp= JJNbX9NNZd;?i+2 word contractorJJ?5^I ?NN?5^I VBDm?VBZx&1VBP#~j?i-1 tag+i word CC consequentVBMbJJMbX?NNd;Oi-1 tag+i word PRP notesVBZ$C?VBPzGRBS i-1 tag+i word NNP discretionaryJJM?NNM i word pollNNSV-NNK7A`?JJuVi tag+i-2 tag TO WRBVBd;O?NNGzRB/$i+1 word independentlyVBZv/VBCl?NNSv/?RBCl绿i-1 tag+i word NN challengesVBZ?VBi word strikesVBDh|?5RBJ +VBZrh|?NNST㥛 @RPI +JJh|?5NNSi-1 tag+i word NNP youngNNPSX9v׿NN"~j?NNPJ +ٿ i word cocoaJJ/$VBZbX9NNS/$NN(\@i word resultsNNSS?NNPS i suffix ushVBDV-CD?5^I VBP+JJn@NNSGzVB#~j?RB/$NNGz@i-1 word abstractNN/$?JJ/$ i word spiderNNPSClNNPCl?i+2 word establishmentNN?JJi-1 tag+i word -START- concernsNNS+?CD+i+1 suffix p&gRBSINV-JJS?RPV-?i-2 word distributorshipVBNx&1VBDx&1?i-1 tag+i word `` cheeriosNNPS5^I ?NNS5^I i-1 tag+i word JJ levelNNSZd;NNQ?JJ+i-1 word alliedNNPClNNPSCl?i-1 tag+i word NNS appliedVBNV-?VBDV-i-2 word inflation NNMbX9ԿVBD;OnڿJJy&1VBZ9vVB?RB(\?JJRV-?RBR|?5^VBNjtNNSjt?VBG"~j̿CC(\i-1 tag+i word RB sketchyJJ5^I ?RB5^I i-1 tag+i word VBN fellowNNd;OJJd;O?i+2 word cheaperJJRx&1?NNSRBR"~i+2 word powerfulJJsh|??NN= ףp=VBDK7AVBZd;OVBPZd;O?i-1 tag+i word ) dailyRB(\?NNSJJZd;i-1 tag+i word POS finestJJq= ףpJJSq= ףp?i-1 tag+i word CC aerospaceVBPX9vNN+?JJx&i-1 tag+i word NN manualsNNS&1?NN&1ڿi-1 tag+i word MD purchaseVBZd;O?NNZd;Oi+1 word excursionsVBG~jtJJK7?NNV-i-1 word trailingNNS +οCD +? i word owensNNPS;OnNNP;On?i+2 word rendezvousNNS}?5^IVBZ}?5^I? i+2 word dishNNV-?JJV-i word windowlessJJd;O?NNd;Oο i word wageJJRA`"NNA`"?i+2 word crawlNN rh?NNP rhi-2 word passengersNNSˡE?NNˡEԿi-1 tag+i word JJ conservativesNNPS1Zd?NNS1Zdi-2 word gardensRBV-?VBG7A`NN ףp= ?JJ|?5^ٿINʡEi-1 tag+i word NNP foncierJJR~jtNNP~jt?i-1 tag+i word `` offVBFxINFx?i+1 word establishedRB~jt?JJR rhNNFxRBR5^I ?i-1 tag+i word RB flawedRBRsh|?VBNzG?VBD9v i word fadingJJOn?VBGOni-2 word sternJJ?NNԿi+2 word deportedNNPSv?NNPvi+1 word peoplesNNPMb?VB1ZdJJ#~ji-1 tag+i word VBD spikedVBN/$?JJ/$i-1 tag+i word JJR observersNNS333333?RP333333 i suffix hanNNSK7A`NNP= ףp=?NNh|?5FW-JJA`"ӿINy&1@i+1 word messageVBG~jtпNNq= ףpJJ rh?i+1 suffix illCDCl?EXMb?DTZd;OǿRPrh|RBuVPRPuVNNSZd;O@VBCl?VBG1ZdVBDrh|VBN rNNPFx?JJRFx?PRP$sh|??WDTM@WP%C?NNv/@PDTIN㥛 NNPS +@VBP-?JJ rVBZx&1i+2 word unsupportedVBP333333JJV-?NNQi tag+i-2 tag -START- -START2-"$9v?NNS㥛?RB?NNPK7A`VBPzGLSoʡ?NNSV-?WRBbX9ȶ?MDJ +?JJR rȿWP~jtӿRBROn?CDˡE?INNbX9?SYMjt?PDTܿRBSV-?JJS#~jԿFW`"VBZ5^I ۿCCh|?5?PRP$sh|??UHsh|??TOx?VBx&1?JJE?VBDFxVBNS㥛?WDT-?DT-?RP;OnPRPNbX9NNPS ףp= VBGv/? i suffix sksNNClgVBDDlRB~jtINFxVBZ + @NNSw/]#@VBHzGJJ ri word magazineNNPDlٿNNPSV-NN?JJ/$i-1 tag+i word VBN payoutNN#~j?IN#~j i word beautyNN&1@JJZd;OVBDMbXi-1 tag+i word CD rowingNN/$?VBG/$i+2 word attendantJJ$C?NNP-ۿPRP${GztVBN{Gzi+2 word drivenNNCl?JJCl i+2 word toutNNSS㥛?VBZS㥛i-1 tag+i word RB narrowRBZd;OJJK7?VBNni-1 tag+i word CC matherNNPS1ZdNNP1Zd?i-1 tag+i word VB apartheidNNS?5^I NNI +?RBQ i word datesVBZ ףp= NNS{Gz@VBNףp= i-1 tag+i word `` volatilityNNX9v?NNPX9vi-1 tag+i word JJ fruitsNNSMb?NNuVVBZ}?5^I̿ i word meadNN1Zd?NNP1Zdi+1 word despiteINI +?DTClNNP-RBRx&1?WDT~jtRBq= ףp? i word fruitNNMb?RBMbп i-1 word dunnVBZOn?NNSOni-2 word splendidVBDjtԿVBNjt?i word retreatedVBNʡEVBDʡE?i-1 tag+i word IN savingVBGCl?JJCli-1 tag+i word POS ledVBNE?VBDEп i word oilsNNPL7A`NNSv/ @PRPZd;ORBMbCD/$i+2 word connectedJJR~jt?JJ#~jRBR~jtVBG#~j?i word simplerNN7A`JJRX9v?JJNbX9i-1 tag+i word JJ nicaraguanJJK7A`?NNPK7A`i-1 tag+i word NN reorganizesVBZK?VBDKi-1 tag+i word VBG allDT(\PDTOn?RBx&1 i-2 word xJJK7@NNK7i-1 tag+i word , glossyJJ+?IN+i+2 word ruralNNS1ZdJJ333333@NNSJJRˡENNPS1Zd?i-1 word strikingNNS/$?NNMbX9?JJMbX9NNP/$i word philippineJJ'1Z@NN~jtNNP(\ i-1 tag+i word RB deferringNNV-VBG`"?JJtV i word fifthRBMb?NNMb i+1 word justVBQ@NNPSKPRP`"NN @NNSB`"?VBPnJJʡERBE@POSq= ףpVBN㥛 ?DTX9v?CDS㥻?VBZv/?VBG+VBDQ?WDT?INDl RP/$i+2 word publisherJJS?NN rNNPh|?5i-1 word roundVBZʡE?NNSʡEi-1 tag+i word NNS aboveVBoʡRP(\µVBP"~jRBQ@IN~jt?VBZV-i-1 tag+i word NN coupleNNn?NNSnʿi-1 tag+i word NN slipsVBZq= ףp?NNS-VBD1Zdӿi+2 word containersVBN}?5^IԿJJ rhVBD}?5^I?NNP rhNN?5^I @i-1 tag+i word MD warmVBS㥛?RBS㥛i-2 word treasury NNK?RBRA`"INʡEVBDHzGRBSX9vVBN+?RBxRP333333VBK7?VBGK7JJ`"?NNPQ?i+1 word agentVBG%CܿJJQ޿NNA`"@NNPq= ףpi-1 tag+i word NN becomeVB^I +?VBD^I +׿i+1 word bedfellowsJJx?NNxi+2 word pendingVBNQӿRBS?VBDQ?VBPSi-1 word swedishFWA`"˿NNSJ +?NN/$CDi word customsJJ+VBZbX9NNSzG@NNPRQNNPSV-NNV-i+1 word heimersJJ(\NNP(\?i-1 tag+i word VB developedVBN`"?VBD`"i-1 tag+i word , fitnessNN-?VBD- i word rifeJJʡE?VBNK7A`տNNy&1 i word browNNGz?JJGzi+2 word leasingVBP-VBD-?CDlNNQ?NNPZd;Oi-1 tag+i word JJ flavorNN(\?JJ(\ i word punishJJ{GzVB{Gz? i word exceedVBPI +@NNV-VBDPn i+1 word emhartJJZd;VBDZd;?i+2 word lehmanJJ5^I IN5^I ?i word scheduleVBJ +NNSx&1NNQ@JJʡEi-1 tag+i word NN formulaNNHzG?JJHzGi-1 tag+i word VBP closeVBGT㥛 VBNZd;ORBZd;OݿJJ^I +?i+1 word excuseJJ'1Z?NN|?5^VBN|?5^i-1 tag+i word NN silvaNNV-?NNPV-i-1 tag+i word CD carsNNPSCl?NNPCli-1 tag+i word JJ eurodollarsNNS/$NNʡENNPS$C?i-1 tag+i word : somewhereVBPnRBPn?i-1 tag+i word VBD oustedVBNx&?RBx&i word graftedVBN\(\@VBD\(\ i+2 word easeVBNuV?JJ{GzNNSffffff? i word sufferVBP rh?NN rhi-1 tag+i word JJ stumblingNNJ +VBGjtJJd;O@ i+2 word ebbsVBZ(\?NNS(\i+2 word belongedINtV?WDTtVi-1 word validRBM?INMVBZbX9ֿNNSbX9?VBGʡENNʡE? i word texansNNPS"~j?NNSRQNNP{Gzi-1 tag+i word DT undercurrentNNDl?JJDli word commentingVBGNbX9?NNNbX9i-1 tag+i word JJ railsNNPMbNNPSMb? i-2 word perVBNn?JJnNNP-NNS@NNSi-1 tag+i word NN launchedVBNjt@VBDjt i word n.jNN ףp= NNP ףp= ? i-1 word brewVBZ~jt?NNS~jti-1 word civilNNPSQ?NN(\?VBP1ZdJJV-NNS= ףp=?NNPQ˿i+1 word customVBNx&1JJx&1?i-1 tag+i word IN surfaceNNX9v?JJX9vi-1 word mondayNN^I +?VBG^I +i-1 tag+i word NNP machineryNNp= ף?RBp= ףi-2 word soviet VBGz?NNPSx&1пVBZ)\(?NNSQRBtVIN"~NNPB`"JJCl?NN@VBDB`"?VBNRQVBP+?i-1 suffix gas JJ(\?IN?VBZp= ףNNS333333?VB7A`¿VBGGzVBDRQVBPL7A`UHPnRB/$@NNJ +?CCd;OVBNRQ?i-1 word peacefulVBGٿNN?i-2 word speechVBZףp= NNSףp= ?i-1 tag+i word VBD hillsNNPSuV?NNPuV i+2 word due VBZtV?NNP~jtNNT㥛 @VBPbX9VBNA`"?JJCl?NNSvϿNNPSQտVBD)\(i-1 word dissentEXNbX9пRBNbX9?i+1 word schroderNNP9v?VBP9vi-1 tag+i word JJ protestersVBZ1ZdNNS1Zd?i-1 tag+i word DT politburoNN;OnҿNNP;On?i+2 word beghinJJZd;?NNZd;i-1 tag+i word NN filedVBN-@VBD-i-1 tag+i word , exceedVBPOn?VBDOni+1 word clearly VBS?NNPSNNPSw/?RP/$?RB/$NN(\?JJ/$VBZV-?NNSV-i-1 tag+i word IN chargeNN+?WP+i-2 word bankingINK7VBK7NN㥛 ?VBD$C?VBN$CVBPK7?RBףp= i-1 tag+i word DT strictJJB`"?NNB`"i-1 tag+i word POS deputiesNNPSRQNNSRQ?i-1 tag+i word DT backsNNSd;O?JJSd;Oi+1 suffix ishNNPSrh|VBN%CRBn?IN/$?NNPSNNh|?5VBD?WDTףp= ۿDTZd;O@VB5^I JJ|?5^?CCd;O?VBPOn?JJRNbX9RPSRBRNbX9?VBGv/?i tag+i-2 tag EX JJSVBZh|?5?POSh|?5 i word valueJJL7A`пNNPL7A`?i+1 word shakenVBNRB? i word keenlyRB7A`?IN7A`i-1 tag+i word JJ limitingVBGZd;O?NNZd;Oi+2 word valleyNNPuV?JJuVݿRBbX9ֿINbX9?i-2 word hitchVB+?NN+ i+1 word left VBGClJJSy&1INtVNNP;OnNN"~@VBDmRBSʡERBRS?VBPsh|?ſWDTtV?RB?i-1 tag+i word NN operatorsNNS-?NN-i-1 tag+i word PRP skirtVBPV-NNV-?i-1 tag+i word DT orthodoxNNSJJS?i word nearestJJSQ?NNPQi-1 tag+i word DT earliestJJS5^I ?RBSSNN333333i-1 suffix konJJSS˿NN ףp= ?VBD/$i-2 word inside NNPSjtNN^I +VBD+?IN5^I ?NNSx&1ԿNNPjt?VB5^I RB/$ÿJJq= ףp?i-1 word colorNNPSX9v?NNSGzNNGz?NNPX9vi-1 tag+i word , fannedJJ#~jVBD#~j?i word threatsNNSy&1?JJy&1RBy&1i-1 tag+i word , razorVBZh|?5NNV-?JJv/i-2 word aimingVB-?JJd;O?RBd;ONNP-i+1 suffix texNN}?5^IԿVBG}?5^I?i-1 tag+i word DT havenNN?RBؿ!i-1 tag+i word NNP transportationNNQNNPQ?i word injuredVBDVBNZd;O?JJl? i word trishJJ(\NNP(\?i-1 tag+i word CC faunaNNSzG?NNzGi-1 tag+i word VB deliveredVBN-?JJ-i-1 word slightly INZd;O?VB"~RBRy&1?VBNGzRBZd;O?VBZy&1RP?5^I JJB`"?VBDQٿJJR?5^I ?i-1 tag+i word JJS prospectiveVBP-JJ-?i word strengthenVBZ rhVBA`"?VBPMbX?PDTZd;OJJx&1i-1 tag+i word CC giftVB rhݿNN ףp= ?JJKi-1 word nikonJJSS˿NN ףp= ?VBD/$i-1 tag+i word -START- nancyNNQNNPQ?i+2 word detergentJJR/$NN/$?i+1 word starsVBGZd;O?JJZd;Oǿi-1 tag+i word , puckishIN+JJ+?i-1 tag+i word DT staidJJOn?VBNClNNtVֿi tag+i-2 tag NN WP$NNSGzNN?5^I VBDI +?VBNI +JJ?5^I ?VBZGz?i-2 word clearlyINjt?DTRQVBV-?NNQVBPV-WDT;OnJJQ i-1 word ncaaNNPSX9v?NNS +οNN'1ZNNPHzG?i-1 tag+i word DT bureaucratsNNSHzG?NNHzGi+2 word respondJJ^I +?FW^I +i-1 suffix oanNNx&RB`"NNS333333?NNPˡE?VBGlJJ/$i-1 tag+i word , subsidyNNI +?JJI +i-1 tag+i word PRP$ standstillNNJ +?JJp= ףVBNK7i+2 word viacomVBG&1?NNRQNNPI +?i+1 word searchJJ~jt?NN~jti-1 tag+i word CD buildingVBGK7?NNK7i-2 word tunnelNNPV-?NNV-i-1 suffix ows DTʡENNS#~jNNPSZd;?RPK7A@NNS?VBP+@JJX9vVBZmVBOn?RBT㥛 WDT?5^I INZd;Oi-1 word connoteJJ +?NN +i+1 word brooksRBIN?i-1 word toolsVBNx&1VBDx&1?i-1 tag+i word JJ airlinesNNPSK7A`?NNPK7A`ݿi+2 word repliedNN"~jNNP"~j?i word strictlyVBZV-NNSˡERB +?i-1 tag+i word '' screamedVBD9v?VBN9v i word moreVBQ RBy&1VBPJJq= ףpIN|?5^JJRsh|0@RBRd;O-@VBNFxNNSB`"NNo VBZQNNP7A`FWV-VBDS i suffix ese NN(\WDTRB/$NNSK7A@NNP(\VBPV-INI +VBGzNNPS ףp= @JJGz'@VBN(\CD"~ji-1 tag+i word CC endedVBN/$VBD/$? i-2 word woodNNMbX?VBD?5^I VBGz?NNSX9vVBNE?i word produceJJQVBrh|?RBZd;ONNmJJR/$VBNV-VBP;On@ i+2 word meetNNP"~j?VBA`"?INA`"VBGn?NNvi-1 tag+i word CC rayonNNrh|?JJrh|i+1 word retailingNNPClJJCl?i-1 tag+i word DT tariffsNNSCl?NNCli+1 word contraNNPS!rhJJQ?NNPK7Ai-2 word frivolousJJ-?VBD-i tag+i-2 tag CD PRP$NNPnRBS'1ZJJS'1Z?RB#~j@INGzNNSOnۿJJMbXɿi-1 suffix ext RBSʡEVBNCl?JJMbX9@NNSvNNPS㥛?VB|?5^NNPSˡEVBGClNNRQ@VBDMbVBPxi-1 tag+i word NNS patientJJv?NNvi-1 tag+i word IN disasterNNCl?JJCl i suffix RESNNPoʡ@NNPS~jtNNSw/ĿNN/$IN= ףp= i suffix egsNNSM@NNMbVBDGzVBPSRBSVBZrh|?i-1 tag+i word NNS warnedVBN-ƿVBD-?i+2 word laggingVBvVBNv? i suffix PaoNNPSS㥛ؿNNPS㥛?i word dissidentJJ|?5^?NN|?5^i+1 word borrowingJJDl?NNDli-1 tag+i word JJ bargainingVBG?5^I NN?5^I ?i-1 word nielsenNNPS{GzNNP{Gz?i-2 word coincidenceDT&1@IN&1i-1 tag+i word NN attemptVBtVVBNZd;NNS㥛?i-1 tag+i word VBD delightedJJ r@NNX9vVBN/$i word refundingVBGˡE?NN)\(ԿJJni-1 tag+i word VBZ finishedJJʡEVBDʡE?i-1 tag+i word NN brandsVBZxNNSx?i word odysseyNNS㥛?NNPS㥛i-1 tag+i word DT lobbyingVBGMNNM?i-2 word foreignersVBNףp= NN}?5^I̿VB~jt?i word concertedVBN rJJ r? i+1 word teeJJ+?NN+i-1 tag+i word DT lboNNP{GzNN rh @JJGzi-1 tag+i word CC veryRBMb?JJMbi-1 word philosophersVBPCl?VBNx&1INClVBDx&1? i word betsNNPSA`"NNSMbX9?NNQi-1 word circusNNPSv?NNV-VBZ?NNSl?NNPvVB~jti+2 word jumpedNN r?NNP ףp= NNPSSJJHzG?i-1 word civilianNNM?JJMi-2 word hurdlesNNPd;OJJd;O?i-1 word concededDTX9vINX9v?i+1 word midsizedJJA`"?NNA`" i+1 word mateVBGuVJJ?NNʡE? i word hurledVBNZd;O?JJZd;Oi+1 word protection JJK7ANNPS/$?RPq= ףpNN333333 @NNSI +NNPMb`VBx?VBDZd;VBNw/Կi-1 tag+i word DT surrealNN㥛 JJ㥛 ?i+1 word secondVBNʡEPRPx&1JJ= ףp=@INʡE?PRP$x&1?NN= ףp=i-1 word ceaselesslyRBʡEINʡE? i-1 word themJJ(\NNxֿCCʡEJJRGzVBPh|?5RBRQVBG#~j?VBd;O?NNS(\?DTQ?VBNm?INnJJS/$@PDTx?VBDv/RPV-?RBRQ?VBZ(\NNPʡEMDʡEi+2 word swelledJJS㥛?NNPS㥛i+2 word perspectiveRBK7?JJK7i-1 tag+i word , managingNN{G@JJ"~NNP +VBG9v i-1 tag+i word JJ monetaristNN$C?JJ$C˿i-1 tag+i word , galvanizedJJMbXVBDMbX?i-1 tag+i word RBR expensiveJJ|?5^NN/$RBQ@i-1 tag+i word : firstNNPsh|??VBʡERBM?JJI +i-1 word conflictingNNS~jt?RB~jt i-1 word best NN-?CDtV?VBP;OnNNSQ?VBjtRBy&1?VBDsh|??VBN-JJʡE?IN)\(NNP"~VBGL7A`i+1 word consistentlyVBQ?VBPQRBRMbX9?VBNMbX9i-1 tag+i word NNS refusedVBNV-VBDV-?i+1 suffix lpaNNPw/?JJw/i-1 word pressureVBNMbX9?NNT㥛 ؿVBD'1Zi+2 word golden JJQVBZMb?RPZd;?VBDMbINGz߿VBG/$?NNPMb?RBx&1NNoʡi+2 word changesRBRA`"RBʡEINd;OοVBZT㥛 ?RBSMbX?FWK7?JJSMbXNNS9vVBG~jt?NN~jtۿJJRQ˿VBv?VBD-?VBNzG?VBPffffffJJK7A`i-2 word discussedNNSDlNNPDl?i-1 word blanketNNI +?JJI +i+1 word stuckJJ+VBD+?i-1 tag+i word IN ashoreRBK?INKi+1 word abundantNN/$IN/$?i-1 tag+i word WP leadVBZ1ZdVBP1Zd? i-1 suffix am VBzGҿNNS5^I VBDx&VBNS?JJPn?INnVBGjt?RBQ?NNK7A`i-2 word mingoJJy&1?NNy&1Կi-2 word confinementNNZd;?JJZd;i-1 tag+i word CD tiffanyNN+NNP+?i-1 tag+i word JJ secondsNNS$C?NN$Ci-2 word tellingNNGz?RBR|?5^JJGzNNP rhNNPSQ? i+1 word cNNx&1NNPx&1? i word towardINL7A`?NNPL7A`i-1 tag+i word IN spendingNNˡE?VBGˡEi-1 tag+i word PRP$ dipsNNSv?NNvi-1 tag+i word NNP sniffedUH9vVBD9v?i-1 tag+i word VBP apartRPK?JJFxRBClǿi-1 tag+i word -START- bruceNNx&ѿNNPx&? i-2 word arbyNN~jt?VB~jti-1 tag+i word IN rentalJJS?NNS i-1 word elmNNPS㥛 ?NNP㥛 i-1 tag+i word , goldNN/$@VBNxJJʡEi-1 suffix satIN-@VBʡERPjt?RBvNN~jtÿJJffffffi+2 word stockholmJJRCl?NNPPn?RBRClNNPSPni-1 tag+i word NN materializesVBZZd;O?NNZd;O i+2 word ladaINClRPCl? i word towJJ}?5^INNRQؿRBS?NNSSi-1 suffix hinCDOnPRPzG?JJGzοNNSK?NNPK7A`?PRP$zGNNPSw/NNQ?i+1 word loans MD$CNN"~jRBR333333VBN+NNP5^I ˿VB?VBGˡEĿJJR333333?JJDl@i+2 word benackovaNNS}?5^IܿNN}?5^I?i-1 tag+i word VBG oddRP~jtJJ~jt?i-1 tag+i word VBN sparcstationNN-NNP-?i word genprobeNNP"~NN"~@i-2 word hashidateNN#~jNNP#~j?i+1 word lawtonCC+JJʡE?NN+i-1 tag+i word JJ typesNNSB`"?NNB`"i-1 tag+i word , doubtsVBZENNSE?i-2 word toolsRBNbX9?INNbX9i-1 tag+i word VBN capabilityNN-?JJ-i+2 word restrictiveJJV-?NNV-i word epilepsyJJvDT&1NNSFxNNv? i suffix eak VBPV-@VBMb @JJOn@NN(\?VBD/$NNSx&PDT rhJJR ףp= RBEVBZMi-1 word requirementWDTnINn?i-1 tag+i word POS debtsNNS\(\?NN\(\i-1 tag+i word RBR likeJJJ +INJ +?i-2 word contemplateNN(\?JJ(\i word professionalJJ?5^I ?NNPK?VBPPnNNSw/NNL7A`ؿi-1 suffix visNNPS rNNP r?i-1 tag+i word VB hybridNN/$@JJ/$ i-1 word johnNNPoʡ?NNPS7A`NNA`"?VBDףp= i-1 tag+i word -START- closedJJGz?VBNGzi-1 word comparativelyRBSx&1JJx&1?i-1 tag+i word CC principalVB ףp= NN~jt?JJ&1 i word slimNNSV-JJv/?NN;Oni-1 word stickRPʡE@NNd;ORB9vINQi-1 tag+i word CC veterinaryJJ"~?NN"~ҿ i-1 word starNNPSGzVBDjtVBNjt?VBZ(\NNSˡENNPMb@i+1 word junkyardVBGEȿJJsh|??NNT㥛 i word fameVBPʡENNrh|?JJQVBMbXi-1 tag+i word IN gossipNNSnNNn?i-1 word agentsVBP ףp= ׿JJQ?NNnNNP!rhi-1 tag+i word CC likeJJ+ۿIN+?i-1 tag+i word IN samovarsJJZd;ONNSZd;O?i-1 tag+i word NNP allDTbX9?VBPI +PDTʡERBQ@i+1 word seoulDT$CIN$C?i-1 tag+i word VB anscoRBvNNPv?i+2 word spanish NNS+NNPV-?JJuVCCGz?WDTQRB+?INQ?DTGzNNPSV-VBNuV?i-1 tag+i word VB sexualJJ~jt?NN~jti-1 tag+i word CC onlyJJ-?RB-i+2 word eyebrowRBʡE?NNʡEi-1 tag+i word RB abusedJJJ +?VBNJ +ѿi-1 tag+i word : herPRP$ʡE?PRPʡEi-1 tag+i word IN lessRBRB`"JJX9vJJR-@NNni-2 word reinsVBffffffNN&1?JJ/$?RB{GzԿ i word jumpsVBZʡE@NNS{GzNNPmNN rhVBD9vҿVBPV-Ͽi+1 word versionsVBMbVBGʡE?NNʡEVBN`"VBPS?RBKi-1 tag+i word NNS revealVBoʡVBPoʡ?i+2 word feministsVBB`"VBPB`"? i word varyVBPX9v@JJClRB\(\i-1 tag+i word CD chineseNNPS9vNNSS㥛ؿNNP rh@ i+1 word oddVBGZd;O?JJZd;Oi-2 word calculationsNNS㥛VBGS㥛? i suffix eefNNGz@NNSw/RBNbX9JJ ri+2 word reductionVBDK7AVBNK7A?JJoʡݿNNPoʡ?VBJ +?RBJ +i-1 tag+i word NNS shapedVBNx?VBDxi-2 word penaltiesVB1Zd?NN1ZdJJ?VBNi-1 tag+i word NNS admittedVBNHzGѿVBDHzG?i-1 tag+i word RB estNNMbؿRB333333?NNP`" i word loomsVBZsh|? @NNSzGRBR}?5^INNli word helicopterRBRX9vVBClNN)\(@RBV-JJoʡտ i-1 tag+i word VBD inappropriateJJ+?NN+i-1 word ceaseJJ}?5^I?NN}?5^I i+2 word eyeVBN%C?VBZ)\(?NNSS㥛VBQNNʡE?VBDV-ݿRBRjt i+1 word per VBZS㥛NNSS㥛?FW~jt?VBD/$RBR ףp= RB5^I NNP~jtJJuVNNʡE@VBN/$?JJR ףp= ?i+1 word sessionVBGK7ٿNNK7A@VBN|?5^VBPK7JJGzNNS㥛 ¿ i word drunkVBZ|?5^ڿJJ^I +?NNx&i+2 word created VBE?NNPS#~jԿVBGZd;OտJJRZd;O߿VBP(\JJClDTףp= ?NNx?INףp= NNPKǿi+2 word furorPDTjt?JJjti+1 suffix fhaRBR-JJR-?DTuVINuV?i-1 tag+i word RBR preciseJJx&?RBx&i+2 word spraysNNV-JJV-?i+2 word dalkonVBZffffffVB&1?NNPm i suffix rosNNQJJ333333NNPHzGNNPS(\?NNSzGa@i-1 tag+i word NN reserveVBx&VBPy&1NN7A`?i+2 word raise NNP}?5^IJJMEX-VBZvJJSx&1?VBPsh|?RB r?IN&1NNSCl?VB r?VBGtVNNx? i-2 word butFWV-NNPSq= ףpJJRZd;׿VBZMbX9?RP?5^I ?NN333333VBV-JJSۿDTy&1?POS~jtVBPrh|?NNP-@RBSRBRRQJJSJ + @VBGx&1VBD/$@VBN1ZdNNSʡE?CDX9vINJ +ɿWDTn?PRP9v?RB|?5^?i-1 tag+i word VBN pouringVBGCl?JJCli-1 tag+i word JJ bruntNNSV-NNV-?i+2 word reachJJK7NNS)\(@NNPK7A`?VBClNNK7VBDˡE?VBNˡEԿi+2 word slatsNNSQ?NNQi word shockproofJJJ +?NNJ +i+2 word suspectRBR&1?JJR&1ҿi-1 tag+i word VBZ cottonVBZzGڿNNffffff?JJSi-1 tag+i word NN derivativesNNSK7?VBZK7i+1 word coatingsJJy&1?NNy&1i-1 tag+i word TO antiqueNN+߿VBV-JJS?i-1 tag+i word NNS requiredVBNh|?5?RBVBDDli-1 tag+i word IN averageNNQ?RBףp= JJQ?i+2 word bobbyJJRy&1?RBy&1̿ i-1 word nowINV-?NNP(\¿VBGPn@VBN/$WDT"~VBZtV@UH&1ڿVBP#~j@DT$CJJv׿NN/$VBDV-2NNS|?5^VB}?5^I?EXQ?RBPn? i+1 word flyVBS㥛NN-VBD&1ҿVBPX9v@JJ'1ZNNS-? i word norcNNHzGNNPHzG?i-1 tag+i word NN thereVB;OnRBK7 @EX&1NNNbX9IN-i+2 word ginnieRBl?NNPl i word abruptVB rhտVBN|?5^JJ~jt?i+1 word mccallNNSNNPS?i-1 tag+i word JJ renoirNNNNP?i word hopelesslyJJp= ףRBp= ף?i-1 tag+i word JJ hedgingVBG/$NN/$?i word roboticVBGףp= JJףp= ?i word montgolfierVBP+NNP+?i+1 word neigeJJFW?i-1 tag+i word NN appearVBjt?JJjt i-1 word luxNN-JJFW1Zd? i-1 word featWDTX9vINX9v?i-1 tag+i word JJ organizationsNNS+?JJ+i-1 tag+i word -START- quotronNNPzG?NNzG i suffix USTRBx&1?NNPX9v?NNPSZd;NNsh|?i-1 tag+i word RB agoRBL7A`尿JJ/$INK7A?i-1 tag+i word DT tuftsRB-NNP-?i+1 word skillsDTy&1?PDTMbXJJMbX?RBy&1Կ i word held VB'1ZNN9vVBN/$@VBP'1ZPRPSNNS+RBxVBDCl@JJѿVBZx i suffix nenNNSZd;ONNZd;O?i-1 tag+i word TO argumentsVB9vNNS9v?i-1 tag+i word DT syndicateNN7A`@JJ7A`i-1 tag+i word RB indicatedVBNI +?JJI +i-1 tag+i word CC ignoredJJˡEVBDX9vVBN|?5^?i-1 tag+i word VBZ offensiveVBN-JJ-?i-1 tag+i word NNP vetoNNX9v?NNPX9vi+2 word milanNNSPnRBףp= NNPV-?i-2 word zoeteNNPSp= ףNNPp= ף? i word donutsNNSuVNNPuV?i word salariedJJx&1?VBNNNjti-1 tag+i word DT debateJJ(\NN(\?i-1 tag+i word JJ batchNN~jt?IN~jt i word assumeVBDy&1PDT1ZdVBPˡE@JJy&1NNSSNNPy&1VB~jt @NNw/ i+2 word cameJJx&1?NNSʡE?NNPtVVBGSNNq= ףp?VBD(\i-1 tag+i word DT picnicJJFW+NNʡE@i-1 tag+i word -START- eitherCC+?DT{Gz?RBR= ףp=RB㥛 i suffix shyVBDʡEVBN㥛 VBPh|?5JJv@NNP/$VBQ?NNJ + i word lousyJJ~jt?NN~jti+2 word protestersNNʡE?JJQRB/$i-1 word regulatorIN{GzWDT{Gz?VBNS㥛?VBDS㥛i-1 tag+i word IN underminedVBD+?NNP+i-1 tag+i word NN prevailsVBZE@NNSX9vNNףp= i+2 word identifyingVB9v?VBP9vi+1 word separateJJjtVBN/$?NNK7?i-1 suffix ums RP9vVBDQVBNL7A`?IN"~?NNSClJJw/ĿNNS㥛WDTV-RBMbX9@i word assortedVBN)\(ԿJJ?VBDQi-1 tag+i word DT supplyNNS|?5^NN|?5^?i+2 word compensationNNK7?NNPK7 i word thanksVBZx&NNS/$ @JJ+i+2 word concreteJJv?NNPvi+1 word aroseRBQ?JJQi-1 tag+i word , sinNNPFx?JJV-ͿFW?5^I i word assumingVBGV-?JJ+NNP +޿i-1 tag+i word VB outRBoʡ@NNmJJRMbPJJsh|?IN +VBG+RPsh|??i word middlemenNNSRQ?NNRQi-1 tag+i word JJ longerJJRx?JJ+RBRClǿi-1 tag+i word , distractingVBGnJJn? i word remarkNNSRQNNS㥛?JJ ri-1 tag+i word NNP printingNNjt?VBGjti+1 word mainlyRPV-VBN(\?VBDX9vNNSV-?VBPV-i-1 tag+i word TO workVBV-@JJ/$NNi+1 word resultedNNS?VBPSi-1 suffix leeNNPQ?NNQVBDS?VBZMb?VBSi-2 word sensationalismRBV-?JJB`"PRPOnӿi-1 tag+i word IN likeIN&1?CDV-JJx?NNS㥻NNP~jtؿi-1 tag+i word VB supermarketNNV-?JJV-i-2 word guidelinesVBDT㥛 NNPMbVBGMb?JJT㥛 @i-1 tag+i word POS operatingVBGjt?NN\(\?JJ- i word faithNNS+ۿNN+?i+2 word farmersVBGjt?JJ7A`?NNffffffƿFW"~jWDT rh?RB7A`IN rhi-2 word silverVB(\?RP"~NNˡEVBD+RB1Zd?IN}?5^Ii-1 tag+i word VBD stuckVBN~jt?NN~jti-1 word bloodyNNjt?JJjti-1 tag+i word NN publisherRBRh|?5RB rNNS?i+2 word machikinJJZd;CDZd;? i-1 word delNNPSV-ҿNNx&1?NNP`" i-2 word castNNDl?NNPʡE?JJ+i+1 word refundingNNbX9@JJ?5^I RBxi-2 word overallVB rh?NN)\(@JJ;OnNNP㥛 i-1 tag+i word POS regretNNx&?JJx&i word competitionNN}?5^I?NNP}?5^I i suffix rksNNP{GzFW$CJJS+VBmݿVBPI +VBZfffff@NNSvZ#@PRP$mNNrh|NNPS/$@VBDDlJJX9vINZd;ORBSi-2 word claimantsVB333333VBP333333? i+2 word coloNNPSV-NNPV-?i-1 word receiveRBMbJJR-?RBR-JJKINn@RP$Ci-1 tag+i word IN droveJJI +޿VBDI +?i word nonunionJJ @NN i-1 tag+i word NN destroyedVBN|?5^VBD|?5^? i suffix FCCNNPSuVJJ-NNP333333@i-1 tag+i word -START- fourCD @IN-SYMʡENNMNNP?5^I i+2 word bombersVBGOn@NNnJJS㥛i-1 tag+i word JJ diskNNh|?5?JJh|?5i word egyptianJJDl?NNPDlѿi-1 tag+i word CC beautyNNv?JJv߿i-1 word mahfouzVBZV-POSV-?i-1 tag+i word RB executiveNN'1ZJJx&1NNPx&1?i+1 word shadeJJ333333?NNP333333i-1 tag+i word DT runningVBGrh|JJrh|?i+2 word keepingNNS^I +?NNPnJJmi-1 tag+i word JJ romanNNPS~jt?NNP~jti-1 tag+i word DT detailNN\(\?JJ\(\i+1 word anniversaryJJK?CDKi-1 word exceptionallyJJv/?RBv/i+1 word scientificJJ(\?NNP(\i+1 suffix emtJJOn?NNPOnۿi-2 word regretRBRI +޿RBI +?i-1 word misrepresentsVBP%CNNP%C?i+2 word specialtyJJMbPDTMb?i+1 word colonyJJp= ף?NNPp= ףi-1 tag+i word IN merrillNN;On?NNP;Oni-1 tag+i word TO whoeverVB= ףp=RBNbX9WPFx?i+1 word sporesNN?5^I ?JJ?5^I i+1 suffix bed RBx&1?NN%C?JJp= ףVBZvNNSm?VBG"~VBPX9vWDTV-?INV-NNPV-NNPSS㥛@ i-2 word ottoJJ(\ݿNNP(\?i-1 tag+i word , letsVBZI +?NNSI +i-1 word courtaulds''Zd;POSZd;?i-1 tag+i word JJ symptomsNNSNbX9?NNNbX9i-1 tag+i word NNS dismayedVBP(\VBN(\?i+2 word deferVBGtV?NNtVi-1 tag+i word DT coolNNS9vJJOn?NN rhi-1 tag+i word VBG gasolineNNJ +?JJJ + i suffix umpVB'1Z?RB+NNn@RBRv/VBPQ?JJoʡVBZKNNS(\i-1 tag+i word CC properNNSZd;OJJPn?NNlڿi+1 suffix ingVBDx&1?JJ"~ڿCCDlٿWDTZd;PDT+RBRMb@INx@RBZd;O?VB|?5^?NNPSjt?JJS9vҿVBNx&1NNoʡ?RBSq= ףp?JJRS㥛VBPB`"?FW7A`ҿPOSV- PRPV-CD?''J +VBZv/?NNPffffffUHV-?PRP$K7VBGB`"@RPPn@NNSMbX?WRB ףp= ׿WPlDTˡEi-1 tag+i word , disputedVBNV-JJ333333ۿVBDS?i-2 word falseVBGZd;߿JJZd;?i-1 tag+i word IN toshibaNNffffffNNPffffff?i-1 tag+i word VBP caughtJJy&1VBNRQ?RBV-׿i-1 tag+i word DT beginningVBG/$NNʡE @NNP~jt i-2 word idaNN1ZdNNP1Zd?i+1 suffix gulVBGʡENNʡE?i-1 tag+i word MD totalJJVB?i-1 tag+i word NN targetedVBD{GzĿVBN= ףp=?JJSi-2 word carefulJJV-NNPV-? i+2 word asiaVBZ)\(VBNnNN/$?CDS?i-1 tag+i word PRP usedVBZClVBDCl?i word orientedVBN333333?JJNbX9VBDV-i-1 tag+i word JJ jealousyNNOn?JJOni-1 word where NNd;O@PDTd;O?POSOnNNS(\VBOn?VBGK7A`?VBN|?5^VBP|?5^JJGz޿VBZxֿNNPmͿi word lifetimeNN\(\?JJ\(\i tag+i-2 tag ( CDPRPܿJJQINx?NNPZd;?VBGz?NNQ?FWx޿VBN-i-1 word molotovVBZZd;׿NNSZd;?i+2 word saucesVBZ/$ÿNN&1?VBDSi-2 word exportedVBMbX9NNPMbX9? i+2 word gulfNNZd;O?VBD(\?PDT(\ȿJJZd;OIN~jtDTV-@i-1 tag+i word VBZ cyclingNN(\?VBG(\i-1 tag+i word NN hoardsVBZd;ONNSd;O?i-1 tag+i word DT packagedVBNffffff?JJffffff i+1 word workNN)\(VBZSNNPSGzVBP9vWDTRQ?RB rؿDTI +?NNSGz?VBG%CԿRBRffffff?PRP1Zd?IN rhJJK7@NNPʡEÿVBffffffi-1 tag+i word DT koreanJJQ?NNPQi-1 tag+i word VBP keyJJ/$?RBR(\NNx&1Կi-1 tag+i word VBD figuredVBN\(\?JJ\(\ i+1 word alanNNJ +?JJRMbX9JJZd;NNP|?5^?i-1 tag+i word DT fellowJJ&1?NN&1i+2 word failingNNS;On@NNPS;Oni-1 tag+i word NN headquartersNNSQNNQ?i-1 tag+i word IN maximumNNS㥛 NNOn?JJCli-1 tag+i word DT claptrapNN+?JJ+i word exposingVBG/$?NN/$i-1 tag+i word VBD resilientJJRQ?NNRQi-1 tag+i word VBP calculatedVBNCl?JJClٿ i suffix 103NNS;OnCD;On?i-1 tag+i word RB shellNNn?RBni+2 word outlineRB/$?NN/$ i suffix lowRP?5^I NN(\¿IN?5^I@JJSClVBPjt@NNSQ VBZZd;ORBB`"VBDJ +VBNuVJJPn@VB ףp= @JJRX9vEXxƿi+2 word railwayNNSOn?NNPOni-1 word korotichVBZʡEPOSʡE?i-1 tag+i word NNP furtherCC/$RBS?RBR(\?JJjti word licensesVBZ= ףp=ڿNNS{Gz?VBDףp= i-1 tag+i word IN usedVBNS?JJS i+2 word cfcJJzGVBNzG?i-1 tag+i word CC hotelNNPn?JJPni-1 tag+i word VBP jumpedVBNx&1?VBDx&1 i-2 word sheNNP$CNNˡE?RPMbX9VBP/$ۿPRP$+?VB`"DTM?NNSx&1?VBNA`" VBDRQ@PRP'1Z?JJZd;?INQVBGK?RB5^I ? i suffix o-1JJS㥛?NNS㥛 i suffix urgNNPRQ?RBGzNNPSGzNNJ +?JJ|?5^i word machineNNPSClNNPn@JJjtNNPuVi-1 tag+i word CC analyticalVB5^I JJ5^I ?i+1 word motorcycleNNPS/$NNP/$?i+2 word schedulesVBGx&1?NNx&1i-1 tag+i word NN arbitragerRPq= ףpNNq= ףp?i+2 word opportunitiesVBZd;OJJZd;O?i-1 tag+i word CC herbicideVBP rhNNZd;O?JJ rhi+1 word victoriesJJrh|?NNrh|߿i-1 suffix sec NN`"VBNS?JJ/$NNPVBPn?VBDˡEԿVBPClVBZS㥛?NNS~jti+1 word showed NNPSQ뱿WDT)\(?JJ333333IN)\(VBZSVBGtVRBʡE?NNS㥛?NNSS?NNPFxi word suddenlyVB333333RB㥛 @JJ\(\߿NNPB`"VBZx&1 i suffix 4-6NNPʡERBrh|@JJ}?5^ICD{GzԿi-1 tag+i word , wearNN~jtVBOn?JJ㥛 i-1 tag+i word IN sayingVBG= ףp=@NN= ףp=i-2 word increases JJ333333?VBNN?PDTMbVBPZd;DT+VBG~jtCCCl @VBNl?i-1 tag+i word '' carryingNN333333?VBG333333 i+1 suffix abRB}?5^INNP}?5^I?i+2 word califNNB`"ɿNNPB`"?i+1 word springINFxJJ@VBG-?RB}?5^INN㥛 ?i word unchartedVBNoʡտJJoʡ?i-1 tag+i word NNS increaseVBPw/?NNL7A`?SYMMbX9LS ףp= i-1 tag+i word NNP citedVBNSVBDS?i-1 tag+i word DT diamondsNNS~jt?NN~jt i+2 word in"VB333333VBNy&1?VBZʡEӿRBClEXX9vPRP$K7@VBGm?DT-@INCl NNPS~jt?JJS`"@RPK@NNPlCCGzSYMoʡ?VBDCl׿LSV-ҿPDTEWDT ףp= ?POSvNNSm?''ffffffJJy&1?NN?CD ףp= ?JJRPnпUH%CFWx&PRP ףp= RBSMbX9?RBRX9vVBP^I +?WP rh?$Clۿi+1 word assetsVBN1Zd?VBPsh|??JJ;OnڿNNPZd;@VB rhVBGV-NNsh|?i-1 tag+i word IN isabellaVBZ-NNP-?i-1 tag+i word DT outflowsNNSQ?NNQi word undercutJJx&1ܿVBNNbX9?RB-VBDRQ?i-1 tag+i word JJ brewingVBGv/տNNv/?i+1 word flagsVBN$C˿JJ$C?i-2 word soakingJJS㥛?VBN(\NNZd;Oݿi-1 tag+i word -START- tvsTOuVRBSտNNP?i-1 suffix ec.CDbX9?JJbX9i-2 word hanoverVBNKVBDK?i-1 tag+i word NNP reducesVBZ333333?NNS333333ӿ i+2 word envyVB(\PDTOnVBNOn?NN7A`?JJ|?5^?i-2 word massonVBPrh|JJV-߿INZd;O?DTZd;OVBrh|?NNV-?i-2 word approvesNNnJJR7A`?JJK7Ai tag+i-2 tag NNPS WRBVBPw/?VBDw/i-1 tag+i word POS joiningVBG?NNi-1 word disabledNNS+׿NNPS+?i+1 suffix psiJJ^I +?NNP^I +߿i-1 tag+i word CC pressNN+?JJ+i-1 tag+i word JJR inventoryNN?JJؿi word researchNNPS"~jNNffffff?NNP|?5^?i word slashingVBGZd;?NNZd;i+1 word mergersJJQVBNx&?NNJ +?i-1 tag+i word WP argueVBPsh|??RBsh|?i+1 word sustainedJJS\(\NN|?5^?VBD|?5^ɿRBS\(\?i word columnsNNS7A`?NN7A`i+1 word duringFWx&1UHV-?IN rNNPSDlNNv@VBZS㥛NNPˡE?VBD rhCD!rhNNSx&1@JJSSVBPx?VBK7JJ rhRBK7AWRB ףp= ׿VBGv?VBNZd;@ i word miredJJʡE?VBDSVBN&1?i word cumulativeNNSd;OJJZd; @NNK7i-1 tag+i word NNS amountedVBNGzVBDGz?i-1 tag+i word DT blownNNClNNSZd;OVBN|?5^?i word mendacityNNM?JJM i word regimeNNSQVBNzGNN?i-1 tag+i word NN piecedVBNZd;?VBDZd;i-1 tag+i word NN menusNN}?5^INNS}?5^I?i-2 word leadsJJS/$?RBS/$VBP`"JJ rȿVBZ+VBQNNn?i+1 word aerobicNNS㥛 NNOn?JJCli-1 tag+i word VB basicNNS;OnJJ;On? i word extrasJJ/$NN/$NNS/$?i-2 word nationalisticNN&1?JJ&1ҿi-2 word goingNNx&1NNP$C?VBMbX9 @NNSx&1JJh|?5i-1 word needingVBDbX9JJbX9?i-1 tag+i word IN embezzlingVBG?NNi-1 word assumesWDTrh|INrh|?i word placementsNNS333333ÿNNPMbX?NNPS%Ci-1 tag+i word JJS excitingJJS?NNSi-1 tag+i word NNS buyVBD`"VBPQ @JJmտVBV-׿RB-NN|?5^i-1 suffix oshNNX9vVBDClVBNMbX9?i+2 word inevitablyJJJ +?NNPJ +i-1 tag+i word DT featherlessJJtV?NNtVi word steelmakingNNCl?NNPX9vVBGy&1i-1 tag+i word CC repressingVBGB`"?NNB`"i-2 word occurredJJˡE NNʡE@NNPZd;OCDoʡ@NNS7A`i-1 tag+i word VBN whatWDTl?WPli tag+i-2 tag VBN IN RPRQ?DTxNNSI +JJR;OnJJ~jtRBR;On?CD?5^I IN+NNPCl?VBGHzGNN"~@VBPGz?RBCl?i-2 word hurdleVB-VBP|?5^?VBGNN ףp= ? i-2 word songJJoʡ?NNh|?5 @FWrh|VBPw/RB~jtNNPMbpi-1 tag+i word NNP depositNNʡE?NNPEԸNNPS^I +i word sprinklesVBZK7A`?NNSK7A`i+2 word common NNP1Zd VBGd;OVBDV-PDTNbX9@CD7A`?RBw/JJzG@NNGz@VBN ףp= ?INQ?DTB`" i-2 word planesVBN㥛 ?VBD㥛 i-1 tag+i word VBP criticizedJJ1ZdVBN1Zd?i-1 tag+i word -START- tradingNNPzGVBG\(\NNOn@i-1 tag+i word , bouncingVBG ףp= ?NN ףp= ׿i-1 tag+i word -START- carNNjt@JJ7A`NNP/$ݿ i-1 word wageVBZ/$?NNS9v?NNzGi-1 tag+i word JJ giantsNNPSV-?NNSRQNNPNbX9? i suffix ghtINZd;MDQ@JJRbX9VBNPn@NN(\?CCClEXK7A`ſFW ףp= ǿJJ r @VBZh|?JJSGzVBPGzNNSNbX94NNPZd;O?CDS㥛@RBjt@VB33333RBRx&1NNPSClWPV-DT(\VBDX9ȶ!@PRP+i-1 tag+i word DT messageJJDlNNDl?i-1 tag+i word CD lireNNK7 JJ(\VBPx&NNSK7@i-1 tag+i word VBG dsNNSK7?NNPK7i-1 word angelsNN(\?NNPn?NNPS- i+2 word alexJJOn?NNPOni-1 tag+i word PRP askVB`"VBPV-?INq= ףpi-1 word scandalsVBZ333333?NNS333333i-1 suffix ernNNPX9v@JJK7VBNbX9@PRP&1?FWK7AVBZMbP?NNSK7RBK7A?VB+NN/$VBDzGINZd;?DT7A`NNPS/$?VBP;OnWDT|?5^ɿi+2 word potholesNNSˡE?NNˡEԿi word truffautNNGz޿NNPGz?i-1 suffix somVBZV-?VBGV-i-1 tag+i word VB considerableVBS㥛JJS㥛?i+2 word payrollsVBNSJJS?i-1 tag+i word VBZ cooperativesVBZHzGNNSHzG?i-1 word embarrassingNNS+?VBNMbXJJjt?i-1 tag+i word IN schemesNNSNbX9?NNNbX9пi+2 word specializesNNS?JJSi+2 word deemedNNzGNNPzG?i-1 suffix neaVBףp= ?VBPx&NNSzG?NNOni-2 word upheavalPRP$w/?JJw/i+2 word patientJJ&1?NN&1i word lickingJJDlVBGDl?i word clientsNNSS㥛?VBZGz޿NNPS"~i-1 tag+i word TO selectedVBNZd;?JJZd;i+1 word monetaristJJ|?5^?NN|?5^i-1 tag+i word `` someoneCD㥛 NNMb@JJClNNP rhi-1 word tuesdayVBPDlWDTV-INV-?VBDDl?i-1 tag+i word DT ghostlyNNS㥛 JJףp= ?NN/$i-1 tag+i word CC downRBʡE?JJ rIN~jt?RP333333i+1 word virulenceJJ r?NN ri-1 tag+i word IN sentJJDlVBDDl?i-1 tag+i word DT timingNNB`"?VBGB`"i+1 suffix amaJJ|?5^@NNP~jtVBGClNNx&1i-1 tag+i word DT orderNNDl?NNPDli word compositesVBZMbNNSMb?i-1 tag+i word NNS amnestyNN?5^I ?VBD?5^I i+1 suffix eemVBZX9vNNS333333?NNFx?WDT rh?JJV-IN rh i word rabbitNNffffff?JJffffffi-1 tag+i word RB ranksVBZffffff?NNSZd;VBN!rhi word aggregatesVBZ|?5^NNS/$?NNV-CD|?5^i-1 tag+i word NNP congressmanVBZQNNQ?i-1 tag+i word PRP$ burgeoningVBGQ?NNQ i word summerNNPS!rh?NNP!rhi-1 tag+i word PRP considerVBʡEVBP= ףp=@VBD/$i-1 tag+i word , tastelessUHʡENNMbJJ5^I ?i word pictureVBP%C?NNM?JJ\(\RB|?5^ɿi+1 word nerveJJ(\VBDS?VBP(\?VBNSi+1 word handleRBR5^I @RB5^I i-1 tag+i word RB elevatedVBNSſVBDS?i word a VBJJJ +NN(\@JJRQINFxDT$!@NNPx&1NNPS~jtUHjtRB/$NNSi-1 tag+i word DT troubledNN?5^I JJ^I +?VBNHzGi-1 tag+i word `` heavyUHI +JJI +?i-2 word pigmentVBZx&?NNSx&VBNGz?INGzi-1 tag+i word NNP groundsNNPS ףp= ?NNP ףp= i suffix TWANNPZd;O?NNSZd;Oi+1 word fearsRBR"~VBNMbX9JJX9v?VBZT㥛 ?NNST㥛 NNPB`"?VBV-VBDQ? i suffix GOPNNPK7@VBT㥛 JJX9vNNˡEi-1 tag+i word NN officialJJRB~jtNN/$@i word smartestJJSS?RBSSi-1 tag+i word JJ piecesNNSףp= ?NNףp= i+1 word tracyNNP-޿NN-?i+2 word vividlyVB+NN+? i-1 tag CDPOSˡERB}?5^IJJS#~j?'')\(?RPNNSJ +@NNPK7A?NN{Gz?CC#~j?NNPSOn@VBZʡE?RBRV-IN?SYM)\(?WDTZd;O@VBD\(\?VBPzGVBNFxVBGMbX9DTˡE``RQ?RBSV-߿FW/$ӿJJHzG?CDnJJR(\@PRP$7A`VBPni-1 tag+i word IN pigNNSFxNNFx?i-1 tag+i word PRP vividlyVBZClRBCl?i-1 tag+i word JJ maniacRBV-NNV-?i-1 tag+i word JJ competingNN|?5^VBGMbX9?JJGzi-1 tag+i word `` norCCd;O?NNPd;Oi-1 tag+i word NNP quotationNNQ?NNPQi-1 word climbRBR"~?JJT㥛 RBL7A`i-1 word satelliteVBGL7A`NNPS~jtȿNNS~jt?NN}?5^I?NNP~jt?i word gregoryJJ-NNP-? i word guiltVBDClNNSA`"NNV-?JJ"~i-1 tag+i word NNP lesutisNNPzG?NNzGҿ i-1 word norVBP;On?JJ~jt@VB;OnڿVBG+NN^I +VBDʡE?VBNʡEi-1 tag+i word WDT cutVBPV-?VBDV-i-1 word instrumentVBZ!rh?NNSMbX?NNi-1 tag+i word VBP appearedVBNA`"?JJA`"i-1 suffix apyNNSKNNK?i-1 tag+i word NNS montgolfierVBP+NNP+? i suffix NOWVB= ףp=RB= ףp=?i-1 tag+i word POS holidayNNbX9NNPbX9?i-1 tag+i word VBN abackRPS㥛RBS㥛?i-1 tag+i word TO crushNNDlVBDl?i-1 tag+i word IN sickJJʡE?NNʡEi-1 tag+i word NN actNNn@RBGzֿJJsh|?RBR +i-2 word woodchucksVBGV-NNV-?i-2 word atticNNStVNNtV?i-1 tag+i word TO bacteriaVB rNNS r? i-1 word gmVBMb?NN(\VBPMbX9RBMbVBZʡENNSʡE?NNP~jt?i+1 word interventionVBN+@JJ+i-1 word level NNh|?5WDTCl@INV-ǿVBZ"~jNNPClRPoʡRBx&?JJT㥛 ?VBGQDTQi+1 word individual JJA`"?VBDzG?VBNtV?CDI +?VBPClٿPRPI +DTMb?VBG^I +?RBlIN'1Z?NNPV-UH rؿNN|?5^i-1 tag+i word IN inksJJzGNNSzG?i-1 tag+i word NN appropriateJJ/$?RB/$i-1 word mainstayVBG㥛 ?RBRI +NN7A`i word flemingNN}?5^INNP}?5^I?i+2 word botheringINn?NNPn i suffix SexRBGzNNPh|?5NN/$@i-1 tag+i word , uniroyalJJ"~jNNP"~j?i-1 tag+i word -START- bordenNNPjt?INjti+1 suffix ketNNPx&1NNS rhFW+VBNB`"VBG%C @NNPSʡERBy&1IN{GzCDV-VBS㥫?NN|?5^?VBDClJJRCl?VBP%C@VBZQ?DTʡE?JJbX9ֿ i word ironicNNQJJQ?i+2 word sayingNNPw/?NNPSw/RBjt?NNy&1CCjtJJy&1?i-2 word psychoanalystVBZ&1NNS&1?i-1 tag+i word JJ birnsNNSGzNNPGz?i word survivingVBGZd;O?NNbX9JJRQi tag+i-2 tag NNPS VBDNNS(\?NNP(\ i word lootNNS rNN r?i-1 tag+i word VB discountVBzG?NNzGi-1 tag+i word WDT arousesVBZQ?NNSQi-2 word palaceNNPv?JJRvi tag+i-2 tag CD JJSNNV-׿JJV-? i+1 word ranNNPףp= ?NNX9v?VBNףp= JJX9vi-1 tag+i word , smithklinePRPGz߿NNPGz?i-1 word marketVB{Gz?RPlVBDMbX9?VBGh|?5?JJ(\?WDTzGDTbX9?NNPʡE?NNSS㥛NN5^I POS#~jRBK7?IN`"޿VBZDl@RBRnVBNnVBPMbX?i-2 word readerWDTrh|INrh|?i-2 word rectangleVBN333333?VBD333333i-1 tag+i word `` onlyRBV-JJV-?i+1 word sentenceNNRQJJSMb?VBN rhJJ/$?VBDCli-1 tag+i word JJ movesVBZQNNSQ? i word whamSYMUHv/?NNK7ٿNNP(\i-1 word thrivingJJClVBPv/?NNK7?RBL7A`NNPi+1 word unfitVBNrh|?JJrh|i word minimizeVB+?JJ+i word referredVBN~jtJJ-˿VBDrh|?i-1 word pediatricianVBN|?5^?VBD|?5^i-2 word endorsedJJQNNQ?i word militantJJ?NNi-1 tag+i word IN naomiNNbX9NNPbX9?i+1 word system NNPSMbJJzGếWDT"~INd;ORBSSVBNK7ARBClDT%C?VBGbX9?NN/$@VBDX9vCC#~jNNPK7A`?i-1 tag+i word NNS accusedVBNS?VBDSi-1 tag+i word NNS boreVBZvVBPʡEVBDn@i-1 tag+i word IN hunterNN5^I NNP5^I ?i-1 word royaltiesVBP!rhVBN!rh?i-1 tag+i word NN guillermoNNQ޿NNPQ?i-1 tag+i word IN tediousNNS= ףp=JJ= ףp=?i+1 suffix keyNNPjt?VBDv/ͿVBNClVBP{Gzt?WDTJJjtINQ?i+2 word adjacentVBP/$NNFxɿNNPʡE?i-1 tag+i word NNS wrappedVBPK7A`VBDK7A`?i+2 word coolerDTV-JJ(\?NN(\INV-?i word fishingVBG+NNK@JJ-i-2 word clarifiesNNS!rh?VBZ!rhi-1 tag+i word CD labelsNNSZd;O?NNZd;Oi-1 tag+i word RB letVBEVBPS?VBDxi-1 tag+i word IN theftJJx&1NNSGzNNB`"?i word handlesVBZoʡ@VBPClVBDZd;Oi-1 tag+i word DT grantedVBNˡE?JJˡEi-1 tag+i word NNP effectsNNPNNPS@i+2 word targetDTmINm? i word stepVBDd;ORBx&VBZ ףp= NNS!rhNNPA`"VBq= ףp @JJNNL7A`e@i-1 word lawyers VBN#~jWDTMb''p= ףVBP(\?INJ +?VBQNN"~jԿVBD#~j@POSp= ף?i-2 word wholeVBP}?5^INNSjtNNK7A?JJRQ?NNPjt?i-1 tag+i word JJ interstateNNP$C?NN rhJJZd;?i-1 tag+i word DT characterNNK7A?RBK7Ai-1 tag+i word -START- kellwoodVBNʡENNPʡE?i word petrochemicalsNNK7NNSK7? i+1 word wrapJJL7A`?NNX9vNNPQ?i word obligesVBZ-?RB- i-2 word elieJJR{Gz?NN{GzĿi-1 tag+i word DT listedVBN~jt?JJ~jti-1 tag+i word CC clearerNNS/$JJR+?NNq= ףpi+1 word candidRBK7?JJK7i word clarifyVBT㥛 ?VBPT㥛 i-1 tag+i word DT heirsNNS"~j?NN"~jܿi word spiritsVBZffffffNNSK7A?JJGzi+1 word desolateJJSʡERBSʡE?i-1 tag+i word JJ fodderNNS ףp= NN ףp= ?i+1 word auctionJJE?NNK׿NNPv/i+2 word christinaVBN?NNPi-1 tag+i word POS citicorpJJMbPNNPMbP?i-1 tag+i word VBD haveVBP= ףp=?NNZd;VBy&1?i-1 tag+i word -START- jacobsJJX9vCD(\NNP333333@NNSK7A` i suffix llyRBRVBP|?5^JJx&1IN?5^I NNS1ZdNNPSʡEJJRV-NNP'1@VBN$CLSMbXVBVBDVBZtVRB~j7@NNh|? i+2 word baa2VB"~jNNP/$JJS @IN-ƿi-1 tag+i word JJ billingNN rh?JJ rhͿi-1 tag+i word TO condoneVBK7?NNK7ѿi-2 word allegedlyJJRrh|?JJtVRBRrh|NNtV?i word transportsVBZsh|??NNSsh|?ݿi+1 word sprintNNPV-PRP- @JJ)\(i word celebratedVBNrh|JJrh|?i+2 word visitsNNV-?INV-߿i-1 tag+i word VBG peachesNNSB`"?NNB`"i-1 tag+i word CC butterJJRzGNNzG?i-1 suffix mic VBPClVBZ}?5^INNS?NNPy&1|NNPSQ?NNx&1 @JJRX9vJJʡE?INQVBG^I +RB-VBNOni-1 word unescoNNMbNNPS+NNS+?RBMb?i-1 tag+i word NN averagesVBZMbNNSMb?i-1 tag+i word DT caveatNNQ?JJQi-1 suffix bopNN+NNP+? i-1 word 'emRBtVοJJ`"NNP(\?i-1 tag+i word , spendingNNd;OVBGd;O?i-1 word montedisonNNPS!rhNNP!rh?i-1 tag+i word VBG forwardRBy&1?JJ-NNQi-1 tag+i word CC heavyNNMbX9VBZ㥛 JJq= ףp? i word uniteVB{Gz?JJ{GzԿi-1 tag+i word NN laboratoriesNNS= ףp=?NN= ףp=i-1 tag+i word IN remicsNNSQ@NN(\NNP(\i+1 word contestNNSbX9NNK7A`?JJ#~ji-2 word regularVBZ/$VB+NNʡE@JJʡENNPv/i-1 tag+i word JJ portrayalNNSGzNNGz?i word censoredVBK7AVBN rh?VBDzGi+2 word commissionNNS/$?NNPˡE}@NNPS7A`ڿJJI +NN;OnVBNRB?VBZ rhi-1 word comicNNSoʡNNoʡ?i+2 word debutVBDZd;?VBNZd;i+2 word generateJJ rh?NNS~jtNNx&1?i-1 word purchasingNNSoʡ?NNoʡi-2 word nauseaVBGffffffNNSNN333333?i+1 word combustionJJDl?VBNDli-1 tag+i word CC chafeVBP}?5^I?NN}?5^IԿi-1 tag+i word RBR creditworthyNNoʡ?JJoʡi+2 word anticipatedVBNvJJHzG@NNP5^I i-1 tag+i word , maineNNMbNNPMb?i+2 word guardNN +?VBN +ֿi-1 tag+i word RB disappearJJrh|߿VB㥛 VBP}?5^I@i+2 word barclaysNNq= ףp?JJq= ףpi-2 word phoneNN~jt?JJ~jti-1 tag+i word IN samuraiNNy&1?JJ"~jFW9v?i+1 word investorNNPˡE?VBףp= ?NNWDT rJJl?INCl?DTףp= i+1 suffix ilyNNvPOSV-?RBR1Zd?VBPRQ?VBG~jt?VBZK7A`NNPS+FWѿNNSOn?INS?NNPDlVB^I +RP/$?JJ}?5^IVBD/$@WDTK7A`?VBNQ@JJR1ZdDTMbпRBʡE i+2 word castWRBv?NNvi-1 tag+i word JJ severeJJ= ףp=?RB= ףp=i-1 tag+i word VBN herPRP$V-?RP-PRPy&1? i suffix oid NN!rhRBFxNNSV-JJ}?5^I @VBD-VBPx&1?UH(\ҿINV-NNPPnVBMbX?i+2 word pointingJJnѿNNn?i-1 word complainingRB+IN+?i-2 word predictedJJ/$?NN/$ i+2 word kurtNNPSZd;OǿNNPZd;O?i-1 tag+i word NNP offerVB(\VBPq= ףpͿNNl?i-1 word benchVBGGz?NNGzi-1 tag+i word VB waitingVBG+?NN+i-1 tag+i word POS runawayJJK7A?RBx&1NNMb` i+1 word manyVBDV-2@VBP+?RBPn@NNS(\NNPV-RP#~jNNJ +WDTKVBZMbp?DT{GzVBNbX9?VBNGzJJJ +INQi+1 word gephardtVBP= ףp=NNS㥛?JJ#~jFWMbi-1 tag+i word IN epilepsyDT&1NNSFxNNv?JJvi word influentialJJMbX9?NNMbX9i word blackmailVBuV?JJuVͿi-1 tag+i word VBN executionNNS+NN+?i-1 word gratuitouslyJJB`"?NNB`"i-1 word twinsNNPSK7A`?NNPK7A`i-1 tag+i word IN womanizingVBGʡE?NNʡE i word jumbosNNx&JJK7AпNNPףp= NNS rh@ i+1 word popVBZuVտVBP'1ZNNSV-?NN5^I JJ%C? i-2 word espnVBNK7AؿJJK7A?i-1 tag+i word RB wholesomeVB%CܿJJ?IN|?5^i+1 suffix nieNNQWDTʡERBK7A?INVBZS㥛?NNSS㥛``)\(@JJ(\i+1 word sirensJJq= ףp?NNPq= ףp i-1 word n.RBV-NNPV-?i-1 tag+i word PRP madeVBPX9vVBD9v?VBZ/$i-1 tag+i word NN efficiencyNNSQNNQ?i word depictedVBNB`"?JJB`"ٿi word depositsNNSNbX9?NN\(\VBZ/$i-2 word supposedNN5^I ӿVBK7?JJ rhi-1 tag+i word DT nerdsNNPSrh|NNSzG?NNPxi+2 word holders VBD +޿INK?WRBw/VBZZd;?NNPX9vVBGE?JJ\(\?NNEVB-ӿWDT-?RBZd;Oi-1 tag+i word VBD advantageNNSV-NNV-?i-1 tag+i word PRP survivesNNS(\VBZ(\?i+1 word strikingRBCl?NNCli+1 suffix eysNNOnۿNNP;OnVBDQVBG ףp= ?JJPn?i+2 word arrangeVBS㥫JJRT㥛 ?RBRffffff i suffix oanVBPrh|JJx&NNPK7A`?VBjt@NNPSʡENN(\@CC +i-1 tag+i word VB falseJJ(\?RB(\i-1 word hubertNNP?INZd;OͿFWSſ i+1 word ownPRP$#~j?VB+RB+?POS+?PRP!rh?JJ+VBZ+i+1 suffix did CCsh|??VBNZd;JJETWRB~jt?DT"~ʿNNSB`"?NNPS333333 @RPʡERB㥛 @NNK7@WDTw/?INKNNP r i word clydeNNNNP?i+1 word secureRBE?JJEi-1 suffix anaVBZjtNNSjt?RBK7A`ݿINK7A`?i-1 tag+i word JJ unpeaceNNʡE?NNPʡEӿi+2 word confirmedJJrh|?VBZʡE@NNPI +?NNrh|FWI +ƿPOSʡEi-2 word infringeNNsh|??JJsh|? i word beefJJ rNNGz@NNSw/RBNbX9i-1 tag+i word -START- troubleJJMbNNMb?i-1 tag+i word PRP$ ranksNNS-?NN-i+1 word treatyJJ5^I NN?NNPjt?i-2 word plightNNPS5^I NNP5^I ?i-2 word detectVBn?JJni-1 tag+i word : useVBPHzGVBHzG?i word pilevskyNN&1NNP&1?i+2 word moodyNNS}?5^INNP(\JJ9v@NN;OnVBNX9v޿RBZd;O?i+1 word supportersPRP$$C?JJn?NNnPRP$C i-1 word oatNNQ?NNSQ i word repayVBGz?NNGzi-1 tag+i word DT farmersNNPSS㥛NNPS㥛?i+1 word aplentyNNP-NNS^I +@WPx&i+2 word originallyCDS?RBRtVJJSJJRtV?i-1 tag+i word POS moneyNNP(\?NNPS(\п i+2 word yuriJJ+NNP+?i word reducedNNK7AVBDx&VBNy&1@VBPV-JJZd;?VB{GzRBNbX9 i word altheaNNPSSNNPS?i-1 tag+i word VBG pencilNNS|?5^ҿVBN^I +NNV-? i+2 word hearNNS5^I ?VB+VBGMbX9NN㥛 ?VBN+VBPQ?JJ+?VBZ5^I i-1 tag+i word DT ventilatedVBNCl?JJCli-1 tag+i word POS costsNNSE?NNEi-1 tag+i word PRP regardsVBZx&?VBDx&i-1 tag+i word JJ ricoedNNPS~jtJJx@NNPjt i+2 word huntVBGV-?NNPV-i word upstreamJJQNNSoʡNNffffffRBQ@i-1 tag+i word DT uncoveredNNSsh|?JJsh|??i-1 word globalVBG~jtNNS%CJJZd;O?NN333333@i-1 tag+i word RB reachesVBZA`"?VBPA`"i-2 word anticipatingNNZd;O?JJZd;Oi-1 tag+i word IN checkNNSSJJKNNS?VBK?i-1 tag+i word POS imprimisNNPl?NN/$JJMbi-1 tag+i word -START- prospectJJZd;NNnNNP`"?i+1 word enrollmentJJRQVBPRQ?i+2 word refocusingNNSQNNQ?i word brittleNNS)\(JJףp= ?NNGzi-1 tag+i word NNP veteranNNS㥛?JJ#~jFWMbVBP= ףp=i-1 tag+i word JJ officersNNSoʡ?NNoʡi-2 word peterVBZ-?VBD- i word spyVB= ףp=?NNSjt޿NNjt?VBD= ףp=i-2 word dalbarNNPSrh|NNPrh|?i word troubleNNMb?JJMbi word sufferingVBG/$ѿNNv/@JJ&1i-1 word jamesNN ףp= NNP ףp= ?i word woodbridgeWRBKNNA`"NNP1Zd@i-1 word malaiseVBZK7A`?INK7A`i+1 word participantsDTMbVBDףp= ?VBNףp= INMb?i+1 word specificationsVBGM?JJ-?NNMNNP-ֿi+1 word intellectualsJJA`"?RBClNNzG?JJRT㥛 i-2 word costlyVBGFxJJv@NNףp= i-1 tag+i word , pcVB9vNNV-@JJ;OnNNP|?5^i word potentiallyJJ;OnNNˡERB!rh?i+1 suffix lubNNPZd;ONNPSw/NNh|?5?i+1 word lossesVBPˡE @VBZS?NNMb@NNPClVBD~jtRB r VBNnDT'1ZVBjt?WDT1Zd?JJMb@IN'1Z?NNS㥛 VBGʡEi+1 suffix bouVBNB`"ٿJJB`"?i word indicateVBP|?5^ @NNp= ףVB'1Zi-1 tag+i word VBZ imminentJJZd;?NNPZd;i-1 suffix sulJJx&1?NNx&1i-1 tag+i word DT beeperJJS㥛NNV-JJRFx?i word deliveredVBN?5^I @JJ-VBDvi word intendedJJX9vVBNL@NNMbVBD㥛 ҿVBZv/i-1 word yearsVBPq= ףpRBOn@VBD7A`WDTx?JJRNbX9JJ9vRBRbX9?DT?EXQINDlVBZd;O?NNSX9vNNPSGz?RPV-NN-?VBN/$NNPGzi+2 word uncertainJJS'1ZRBSʡERBv@i-1 tag+i word VBZ reservedVBNffffffֿJJffffff?i-1 suffix .s.NNMbX9?POSK7ARBoʡJJRVB"~jVBGffffffJJ~jt@VBZGz?VBDl?VBPZd;߿VBNK7ANNSy&1?NNP'1ZܿNNPSK?RBR?INT㥛 i-1 tag+i word , leastVBZnJJSn?i-1 tag+i word VB interestedJJ r?VBN ri+2 word prosecutorsRPn@IN ףp= WDTQNN(\?NNS(\i-1 tag+i word , buttonNNZd;?JJZd; i suffix BamUHy&1?NNM¿NNPi-1 tag+i word IN cheekNNS rNN r?i-1 tag+i word DT intradayNNx?JJmNNSV-ҿi-2 word consultantNNPʡE?VBZ-NNPSK7ѿi+1 word neverVBDK7?RBCl@INClNNPX9vMDK7NNPSA`"?JJZd;Oi-1 tag+i word IN birdNN\(\?JJ\(\i-1 tag+i word VBN alongRPx&1JJ㥛 RBjtINB`"@i+1 word groundVBGJJ&1?NN!rhVBN/$?i word promptingJJtVNNI +ֿVBG+?i word associationNNS?JJSi-1 tag+i word , aichiVBPlNNPl? i word fromJJQIN$@NNPʡE MDZd;VBVBDjtVBPKi word carolinaNNPS ףp= NN\(\NNPK7?i-1 tag+i word NNS wantVB rhVBPZd;O?VBDK7i-2 word indicateNNjt?RBKJJffffff?NNP(\VBP(\?i+1 word weekendsJJSCl?RBSCli-1 word plantagoVBZ$CۿNNn?CDʡE i-1 word daleNNPSA`"NNPA`"?i-1 tag+i word NNS determiningVBP^I +VBG^I +?!i-1 tag+i word -START- beneficialJJX9vNNPX9v?i-1 tag+i word -START- wantedVBNn?VBDni-1 tag+i word DT narrowVBN/$JJ/$?i-1 tag+i word JJ earthquakeNNPSI +NNI +?i-1 tag+i word DT awkwardNNGzFWjtJJ +? i suffix troNN rNNP~jt@NNPSClNNSʡEi-2 word pinkertonJJ9vNNSK7?NN`"?VBDL7A`?JJRQRBRQ@i word mahatmaNNPS-NNP-? i+2 word buckVBNsh|?JJsh|??i-1 tag+i word RB spentVBP~jtVBNsh|?VBDx?i-1 word stepsNNP9vRP?5^I ڿVBD\(\߿VBN\(\?WDT= ףp=?RB rh@INMb?DT^I +i word surrogateJJףp= ?VBףp= i-1 tag+i word JJ indexesNNS`"?NN`"i-1 tag+i word -START- brunoJJ|?5^NNP|?5^?i-1 word acadiaNNSjtNNPQ@NNPS"~ji word anchormanNN/$?IN/$޿i word contentiousNNSoʡJJoʡ?i word machiningVBG(\NN(\?i+1 word graspingRBʡE?NNʡEi-1 word mingoVBZ}?5^I?NNP}?5^Ii+1 suffix awlNNzG?JJzGi word assemblyNNSX9vNNPNNPS1ZdۿJJ"~jNN333333@RBxii+1 word shipyardVBN(\JJ(\?i-1 tag+i word : speedVBK7?NN1ZdӿVBDZd;Oi-2 word outflowsJJ/$?NN/$i+2 word assignmentVBN+׿NNJ +?INʡEi-1 tag+i word -START- ogdenJJ ףp= NNP ףp= ? i-1 word sciNNPjt @NNjt i-1 word allegesDTV-WDTZd;INNbX9?i-1 tag+i word RB imposedVBNQ?JJ"~jVBDʡEi-1 word banqueNNPSEȿNNPE?i+2 word subliminalJJJ +?VBNvRBOn i word tidalNNSNbX9ؿJJZd;@NNMi-1 tag+i word JJ commandmentNNPKNNK?i-1 tag+i word JJ recoveringVBGʡE?JJʡEi-1 tag+i word `` yeahUH$C?JJ/$NNP/$i-1 word continentalNNP1ZdNNPS1Zd?i-2 word internationalVBDsh|?VBNA`"?JJ#~jĿVBZw/?NNS~jt?NNP1ZdNNPS5^I ?NN"~jܿi-1 suffix ussVBPGzPRPnNNSCl?NNPrh|?VB+NN rhPRP$n?i-1 word lubyankaNN?5^I ?NNS?5^I i word leadoffNNS?INSi-1 word lubricantsVBG{GzNN{Gz?i+1 word alfredoRBK7A`JJK7A`? i-1 word atJJRK7ACC;OnPDT"~j?INJJS|?5^?RBSV- @CDrh|?VBD rhDT-?NNB`"?VB㥛 NNSClNNPn?PRP$'1ZVBNB`"RP-ۿPRP~jt?RBoʡ?RBRv/?NNPS"~j?VBGjtܿVBP"~jJJp= ף?VBZ~jti-1 suffix desIN(\ @NNPSHzGJJRˡE?JJK7A`?RBS㥛?RPGzFW)\(?PRPSNNSn?CCZd;O?RBR ףp= VBGd;OVBZ!rhNNl?VB!rhVBNDlVBP~jt@DTʡEPOS +NNPL7A`?VBDʡE?WDTOnۿi+2 word blockingNNZd;OJJZd;O?i+2 word hurricaneINMNNSENNPJ +NNoʡ?VBDM?VBN ףp= ?VBP(\?JJQ i suffix ICsNNSQ@NN(\NNP(\ i word demursVBZT㥛 ?NNPT㥛 i tag+i-2 tag RP JJNN%CԿEXDl?NNS+JJS㥛? i word priorVBP(\RBy&1,@NNSrh|JJCl?NNQ VBN9vCDni-1 tag+i word VB studyingVBG'1Z?NN'1Zi-1 word membersVBffffffJJd;OֿVBDrh|POSL7A`尿VBNS?VBPrh|RB$C? i-1 tag+i word DT communicationsNNPS/$?NNStVNNOn?NNP~jti word resignedVBPV-NN+VBN{GzJJ;OnVBD~jt @i+1 word appealNNPSNbX9?NNSWDTK7?JJ/$?INK7NNP-i-1 tag+i word -START- reubenJJFxNNPFx? i-2 word boyNNSB`"VBN/$@JJv/?VBD"~ji-1 tag+i word JJ lenderNNS?NNPSi+1 word margolisJJoʡNNPoʡ?i+1 word fingersJJCl?NNV-NNP rh?i-1 tag+i word NN advisedVBN-VBD-?i word reactorNNMb?NNPMbi+1 word electricityVBP?5^I @RBKNN ri word bearingVBG~jtNNm@JJMbi+1 word shuffleNN rh?JJ rh i+1 word rosyPOS{Gzt?VBZ{Gzti+1 word routeVBPV-߿RBףp= ÿINK7 @NNS%CNNtVJJStVi-1 tag+i word NNS backfiredVBNvVBDv?i-2 word agentJJV-׿VBNV-?i-1 tag+i word -START- changesNNSA`"?NNPA`"ۿi+1 word tiredRBQ@JJQi word disruptedVBNS?JJx&1VBDX9vi-2 word embodyJJQ?NNPQֿi-1 tag+i word NN feedNNV-?NNPV-i-1 tag+i word -START- sixMD9vRBSCDK @PRPV-ڿJJDlNNPSi-1 tag+i word NN openedVBNClVBDCl? i+2 word tapeNNSJJ?RBmINm?i tag+i-2 tag VBN PRPRBMNNPZd;߿VB1Zd?RPS㥛ĿNNy&1?VBPMb?i-1 tag+i word NN loomingVBGK7?NNK7i-1 tag+i word NN focusNN|?5^?VBD5^I ˿VBʡEi-2 word jeffersonJJDl?NNDl"i-1 tag+i word -START- chairpersonNN/$NNP/$?i-1 tag+i word NNP rightNNjt?RBoʡNNPffffffi-1 word twistingRPOn@PRPPnRBSi+1 word antillesNNPST㥛 ?NNPT㥛 i-1 tag+i word NN limitsVBZ= ףp=ڿNNS"~j?JJX9vi-1 tag+i word NNP aspectsNNSQ?NNQ i+2 word testRB㥛 ?DTMbPVBG+JJ^I +?NNB`"?RBRQVBPZd;ϿWDTMbP?i-1 tag+i word NNP stagedVBD"~?VBPV-NNPK7A`i-2 word shareVBjt?JJRjt?UH(\RBx&1@RBRjtVBP/$RPbX9VBD ףp= NNPNbX9IN~jt?VBG+?NNSS?NNZd;O?FW9v?WDTx&1ԿVBNh|?5?JJp= ףi-1 tag+i word NN bordetellaNNP rNN r?i-1 tag+i word DT garbageNNMbX9?JJMbX9i-1 tag+i word DT talentNNʡE?JJʡE i-1 word upVBPzGEXx&1DTV-NNPQRBRV-?VBHzGVBDWDTd;OֿVBG~jtRBCl@CD/$@NNS(\?JJR!rh?JJ~jtx?IN(\пVBNMbXPRP+RPh|?5PRP$+?NNʡE?i-1 tag+i word NN supplementNN ףp= ?JJ ףp= i-1 tag+i word RB enhanceVB#~j?VBP#~ji-1 tag+i word `` listenVB rh?RBA`"NNPi word foremostJJ+?NN+RB|?5^?VBD|?5^i word microsoftNNSx&1пRBvNNvNNP~jt@i+2 word millsJJ/$?NNffffffNNP/$VBffffff? i+1 word well JJ;OnNNh|?5RB~jt@NNPPn?VBClVBNMb?VBP"~?INVBZ?NNSbX9VBDV-i-1 tag+i word DT dyingVBGPn?NN#~jJJv׿i-1 tag+i word , tankVBPV-NNS?VBD333333ۿ i suffix allPOSRBRQ@NNSDl)CCI +PDTrh|@RBRʡENNPSx&1UHx&ٿVBG+JJ/$?NN/$@VBD)\(CD|?5^ڿVBNDlVBP7A`?DTZd;O&@LS rhVBV- @INB`"JJRNbX9FWtVVBZ㥛 NNPQ i-1 word whomVBPMbX?VBNZd;VBDZd;?VBMbXi+1 word yardsRB!rhJJ!rh?NNE?RPEi+2 word grantedVB(\RB(\?i-2 word herbicidesNNPZd;?JJZd;i-1 tag+i word CD swissJJA`"@NNNNPFxi-1 tag+i word : mortgageNNPS㥛VBtVֿNNV-@i-1 tag+i word NN custodyNN9v?JJ9vҿi-1 tag+i word NN coversVBZK7@NNSK7i-1 tag+i word NNP eveningVBG㥛 NN?NNPv/i word adversaryNN+@JJ+i-2 word bullsNNSy&1?VBZy&1Կi-1 word kanjiVBGffffffNN"~j?JJffffffi word respectVBw/ԿVBP333333NNV-@JJZd;߿NNP9vi-1 tag+i word -START- thierryVBPp= ףNNPp= ף?i-1 tag+i word PRP becauseINjt?RB{Gz?NN5^I VBD+i-2 word economic VBZMbNNS5^I ?VBG"~?NNn?WDTHzG?IN333333 RBK7?DT`"?JJSVBD{GzVBN{Gz?VBP(\?i-2 word ortegaVBGʡENNʡE?RBRʡE?JJRʡEVBNv?JJvi word redesignVB?NN i word dnaNNPS)\(NNV- @NNPL7A`i-1 word uncommonRB= ףp=NN= ףp=?i-2 word builtNNZd;@JJMb`NNPB`"i-1 tag+i word CC quickerNNP"~jJJRCl@NN(\i-1 word distributeNNVBZ~jtӿJJQ?NNS|?5^?VBNQi-1 tag+i word CC unknownsNNSCl?CDCl i-1 tag WP$ VBN㥛 VBP}?5^INNSK7A`?NNP rVBSRBV-NNbX9@JJFx?VBZ(\i+1 suffix avyRBp= ף?NNPCl?VBK7?JJ rhѿNNL7A`VBD)\(ܿVBN)\(?CDCli-1 tag+i word JJ materialNNm?JJmi-1 tag+i word JJ degreeNNtV?JJtVi-1 word agreeDT-ƿRBʡEۿINQ?i-1 tag+i word , suspendedVBNGz?VBGzi-1 tag+i word NNS resentVBP`"?VBD`"i-1 tag+i word JJ '''ffffff?POSA`"?RB+ i word zhaoNNPS?RBSi+2 word gatherVBZ rhNNS rh?VBNClVBDCl?i-1 tag+i word NN tweakingVBG/$NN/$? i+2 word wishJJSMb?JJMbi-1 word outwardlyVB!rhJJ!rh?i word furtherCDV-RB-@JJRK7RP5^I JJ">%@NNʡECCV-VBd;O VBPZd;DTʡENNS&1FWZd;ORBRDl@VBNJ +NNPI +i-2 word costs RBR㥛 VBN/$VBP`"JJ rh?RP$CӿDT(\@VBG-?RB(\?NN rVBD rh?INlJJR㥛 ?VBJ +?i+2 word admittedVBNm?JJmi-2 word troubleDTFxѿPDTFx?RPjt?INjtܿi+1 word pistolVBGmJJm?i-1 tag+i word RB sophisticatedVBNJJ? i-1 word tollVBGX9v?JJX9vϿi-1 tag+i word NNS scramblingVBG ףp= ?NN ףp= i word concurrentJJ㥛 ?NN㥛 i-1 suffix ddNNtVֿNNPtV?i-1 tag+i word NNP informationNNK7?NNPK7 i+2 word ritaNNʡE?JJʡE i-1 word } NNS9vNNPMbX9?NNlRB rhINMbX9?JJRX9v?VBNZd;O?VBP/$?WDT{Gz?VBZʡE?VBI +JJɿVBDT㥛 ?i-1 tag+i word ( taiwanNNPT㥛 ?CDT㥛 i+2 word collapsedVBGFxRB\(\?NNL7A`? i word myselfNNSSRPSPRPffffff@NNCli-1 tag+i word NN waveNNV-?JJV-i+1 word oklahomaNNSPnJJPn?i-2 word missingJJK7VBNK7?NN{Gz?VBDX9v i word grimmNNX9v?RBv/NNPrh|׿i+1 suffix gin CCHzGWDTx?INxNNS%CNNPCl?RB%C?VBbX9?VBG%C?JJQ?NNRQVBNlCDA`"?VBPV-i tag+i-2 tag RB DTVBnVBDK7AVBPd;O?JJRS㥛?VBZjt?FWJ +?NNPv׿NNSS㥛?DT(\VBGQ?NN(\@JJS rh?RBS$CӿVBNbX9 @RBsh|?RP rh?JJX9v@RBRS?CDˡEi-1 tag+i word NNP hoveredVBN +VBD +?i-1 tag+i word CC desertNNX9v?JJX9vi-1 tag+i word JJ penceNNSףp= NNףp= ?i+1 word innovationJJ#~j?VBZ/$?VB;OnNNS9vJJR~jt?i word mahfouzJJ+NNP+?i-1 word nazionaleNNw/FWw/? i word reeledVBN1Zd˿VBD1Zd?i-1 tag+i word DT capitalNNh|?5?JJh|?5i-1 tag+i word -START- drugVBrh|NN㥛 @JJjtNNPi-1 tag+i word DT semiconductorJJ"~NN"~?i-1 tag+i word , homefedNNnNNPn?i-1 tag+i word NNS unionsVBPjtNNSjt?i+1 word discountsVB ףp= ?JJzGNN ףp= JJRA`"?VBZbX9ֿ i word panicNNQ@JJV-VBP$CNNSQ i suffix MTMRP/$NNGzNNPn?i-1 tag+i word `` colaNNzG?JJzG i+2 word gemRP~jt?IN~jtȿi-1 tag+i word NN thinJJ +?NN +i-2 word straszheimVBGl?RB&1?NNx&1?VBNRQJJClIN㥛 ?NNPK7i-1 tag+i word NNS jitteryVBP ףp= ׿JJ(\?NNˡENNP!rhi-1 word tumorVBNuVVBDuV?i-1 tag+i word VBP startedVBNzGJJZd;OVBD333333? i word ernestJJS~jtNNP~jt? i-2 word lowsVBZS㥛?VBPIN ri-1 tag+i word IN seasonallyRB|?5^?NN|?5^i+1 suffix conNNPSQ?NN +VBD(\JJ/$@NNP&1VB(\?i-1 tag+i word VBG megaNNSGzֿJJ= ףp=@NNli+2 word ballyVBG1Zd?JJ1Zdi+1 suffix &lsVBN"~jܿJJ"~j?i word allayedVBN/$?RB/$i+2 word lizhiNNV-?JJV- i word hardlyNNPClVBuVRB/$@i-1 suffix 270VBGRQNNbX9?JJ"~ڿi word managedVBPSVBNNbX9?JJVBDS@i-1 tag+i word JJ investigatorNNףp= ?JJףp= ۿi-1 tag+i word DT naphthaNN!rh?JJ!rh i word pursueVBrh|@VBPKNN\(\i-1 word throughoutJJQ뱿NNPQ?i-1 tag+i word JJ shockNNRQ?NNPRQi-1 tag+i word , coalNNMb?JJMbi-1 tag+i word TO negotiateVB;On?NNS/$NNHzGi-1 tag+i word DT aroundRB-?NNjtINS㥛?VBP-i-1 tag+i word NNP colonyNNp= ף?RBp= ףi+2 word drivingNNPzGDTw/WDTw/?NNzG? i word pathsVBPRQNNSRQ?i-1 tag+i word , repliedVBNh|?5VBDh|?5? i word updateVBx?VBPw/ԿJJ1Zd i suffix PaNNSB`"NNx&NNP/$?i-1 tag+i word DT obviousJJGz?NNGzi-1 tag+i word NN chemicalNNSV-NNp= ף?JJv/?i+2 word magedVBGV-NNV-? i-1 word d.JJ7A`ҿNNP7A`?i-1 tag+i word NNS plaidVB+NN+? i suffix unaFWʡENNS~jt?NN"~?RBףp= INK7i+2 word momentumNN;On?VBS?VBPSNNS;On i+1 word clubNNh|?5?NNPZd;ONNPSw/ i word myPRP$Q8@NNClRB+JJClNNP(\i-1 word barclaysNNP}?5^I?INˡE?NNbX9i-1 tag+i word DT elJJZd;NNPZd;?i-1 word adviceRBSS㥛?JJSd;ONNP9vi-1 tag+i word RB speaksVBDS㥛VBZS㥛? i word turtleJJZd;NNSZd;NNZd;?i tag+i-2 tag PRP MDVB~jt@VBPQRBh|?5VBDJ +i-1 tag+i word NN marketsNNPS r?NNP rȿi-1 tag+i word -START- sammyeNNS333333ÿNNK7A`տNNPx?i-1 word acquisition VBDx&1?RBRm@VBNJ +WDTm?INmNNS%C?NNPSHzG?JJy&1RBmVBZ%CNNPHzGVBG333333@i-1 tag+i word VBZ brokenJJ(\INDlVBNZd;O?i-1 tag+i word DT nileNNxNNPx?i-1 word autosVBZ&1?NNS&1i+2 word scaringNN?RBR`"RBPn?JJRMbX9JJ"~i-1 tag+i word NNP messingerNNPSHzGѿNNPHzG?i-1 tag+i word RB financingVBPʡEVBGʡE?i-2 word entrenchedNNSh|?5NNh|?5?i+2 word discordINd;O?RPd;Oi-1 tag+i word DT demonNNh|?5?JJh|?5i word unraveledJJq= ףpVBNmRB-VBD9v?i-1 tag+i word PRP$ associatesNNPS^I +?NNP^I +i-1 tag+i word NNP flatsNNSʡE?NNʡEi word legendaryJJMb@VBNClNNuVݿRBRmi word barringVBGGz?NNGzi-1 tag+i word IN deNNPV-INq= ףp?FWQ?JJDli-1 word handoutNNS|?5^VBZ|?5^?i+1 word intrinsicNNK7A?RBK7Ai-1 tag+i word PRP buildVB ףp= VBPn?RBB`"ɿi-1 tag+i word IN tradingVBG rhNN rh?i-1 tag+i word NNP aramidINV-NN +?JJ(\i-1 tag+i word IN afflictsVBZh|?5?NNSh|?5i word choosingVBGZd;O?JJZd;Oi-1 word ethnicNNPS ףp= ߿NNS ףp= ?NNCl?JJCli-1 tag+i word NNPS laidVBZHzGVBNHzG? i+2 word putVBPM?NNS)\(JJSoʡ?VBNsh|??INA`"VBZCl?DTDl?NNPjtNN ףp= VBD333333RBSoʡݿRBR%CWDTl?RBCl?VBGz?VBG/$޿JJZd;?i-1 tag+i word NNP nativeRBh|?5JJ+ηNNv/? i-1 suffix raPDTK7VBDK7?i-1 word doing PDTjt?JJSMb?JJRZd;?RBRZd;RBjtINzGJJʡE?RBSMbDT%C?NNʡEWDTh|?5i-1 tag+i word CC aroundRB rhտIN rh?i-1 tag+i word DT credibleJJV-?NNV-i+1 word prestigeVBDS?NN/$JJ/$ݿi-2 word every VBZQ?DTnVBM¿NNV-?VBNffffff@RBRQINw/?VBD+WDTh|?5?NNSNbX9?NNPZd;O i suffix SeaNNV-NNP-@RBZd;i+1 word formationJJ}?5^IVBD-?NNZd;O?VBNI + i word divideVBP|?5^?NN|?5^RBV-i-1 tag+i word IN optimismINnNNn?i-1 word times INSCDzGJJ/$@NNDlVBDV-JJR(\?RBR?5^I ?VBN|?5^?VBP$C?RB7A`?WDT㥛 NNSQi-2 word inspireNN#~jVBMbVBPˡE? i+2 word seenDTV-?WDTV-NNK7A`?JJK7A`i-1 tag+i word -START- seniorJJ^I +?NNP^I +i-1 tag+i word NNP lightJJX9vNNX9v?i-1 tag+i word DT stupidJJQ?NNQi-1 suffix avyNN|?5^?JJEԸVBZDlNNS-?NNP5^I MDMbX9NNPSS@VBG$Ci word gouldoidNNPPnJJPn?i-1 tag+i word JJS executionNNw/?JJw/i+1 word appealsNNV-?JJV-ڿi+1 word earthwormsJJV-INV-?i-1 suffix elmRPʡENN~jt?RBRB`"JJRB`"?NNP㥛 VBʡENNPS㥛 ?i-1 tag+i word RB aspiredVBN~jtVBD~jt?i-1 word toward RBS㥛INSDTS?VBG|?5^?JJuV?JJRS㥻NNP1Zd?NNPS1ZdNNQRBRS㥻? i word beaconNNbX9޿NNPbX9?i tag+i-2 tag EX -START-VBZMbX9ܿPOSMbX9?i-1 tag+i word IN koreanJJbX9?NNPbX9޿i-1 word dowdyNNS?VBGSi+2 word technology VBGx&1?NNlRBx&1NNPGzοVB/$?JJK?VBDQVBN&1?VBPMb?VBZvi-1 word again NNVBNʡE?INQDTx&1VBQ?JJ/$VBDClVBP~jt?RBv/? i+2 word rtcVBZʡE?PDTʡEi-1 tag+i word VBG sourJJT㥛 @NNSMbRB333333NN"~ڿi word collapsingJJV-NN?5^I VBG ףp= @i-1 word called NNd;O?CDףp= ?RB/$ƿVBZ|?5^NNSZd;NNPˡE?PRP$GzVBG#~jJJQPRPx?INˡERPʡE@i+2 word imaginableVBsh|?JJsh|??i-1 tag+i word CC veteransVBZSNNSS?i+2 word memberVBGSNNK7APDTMbX9JJˡE@VBZ%CNNSv/?i+1 word capacityNNʡE?VBDQVBNGz?JJ-ֿIN㥛 VBG rhi-1 tag+i word NN toursNNS)\(?NN)\(Կi-1 tag+i word RB lackVBP333333?RB333333i+2 word overwhelmNNx?VBDx!i-1 tag+i word WDT electronicallyVBZ#~jRB#~j?i+1 word discoversNN(\NNP(\? i word dirtyJJS?NNS i suffix urtVBw/?NNPS9v?RBRx&1RB"~jCD)\(ܿJJB`"[NNPʡE?NNHzG?VBD&1?VBN= ףp@VBPKǿJJR|?5^VBZZd;OݿNNSGzi-1 tag+i word JJ culturesVBZSNNSS?i word ohbayashiNN"~jܿNNP"~j?i+1 word inherentNNS/$?NN/$?JJ㥛 i word thirdVBL7A`RB?5^I ?NN}?5^ILSx?JJ "@DTClNNSvNNP?i-1 tag+i word NN a.NNʡENNPʡE?i-1 tag+i word VB costsNNS|?5^?NN|?5^ٿ i word onNNQNNPV-RPsh|?@ i suffix OctJJ?5^I ҿNNMbPNNP&1?i-1 tag+i word IN overnightMD$CJJ㥛 @NNw/i-2 word enteringJJ`"NNP`"?i-2 word applicationsVBA`"?JJA`"i-1 tag+i word DT imperialistsNNPSSNNSS?i-1 tag+i word PRP$ pencilsNNSX9v?NNX9v i+1 word budsNN/$?JJ/$ i word frescoVBNMbX9ܿNNMbX9?i-1 tag+i word `` arabianJJV-NNPV-?i-1 suffix adeRPV-?PDT/$NNPS&1?VBGK7A`?VBPQ?WDT~jt?RB%CNNK?PRP}?5^INNPI +޿RBREԸJJRy&1FWp= ףDT+?JJA`"VBZ= ףp=VBD= ףp=?NNSʡE?VB"~IN!rh?PRP$B`"?VBN$Ci-1 tag+i word IN fieldsNNST㥛 ?JJT㥛 i-2 word proposed VBx&1RBL7A`尿INFxVBPKVBZx&1 @NNSZd;ONNPS&1VBG|?5^@JJjtԿNN~jt i-1 word faaPDTS㥛POSS㥛?VBP+RB rh@VBZS㥛DTnJJ333333?NN9v i+1 word tourVBGv/JJv/?i-1 tag+i word NNP devicesNNPSsh|?@NNPsh|?i word daughtersNNMNNSM?i-2 word housesNNS+VB{Gz?NNEؿVBD{Gz?VBPnJJE?i word reinvestVBZV-VB?DTV-i-2 word cruiseVBNVBD? i suffix cts RBRQVBZ"~**@VBOnNNPSZd{#@RPffffffJJQx%PDT#~jNNPX9vNNn#VBD{GzVBPffffffPRPZd;NNSzG.@ i suffix uraRB/$NN ףp= ?NNPrh|?JJni-1 tag+i word TO zoningVBG-NN-?i+1 word glasnostRBHzGINHzG?i-1 tag+i word -START- turnerNNPjt?CDjti-1 word recoveryVBDd;O?VBZd;Oi-1 tag+i word -START- viacomNN= ףp=NNP= ףp=?i-1 tag+i word VBP consistentJJ?NNi+2 word severeRBGz?JJGz׿i-1 tag+i word JJ witterRBRX9vNNPX9v?i-1 tag+i word TO dieVB;On?NN;On i+2 word songPOSGz''Gz?i-1 tag+i word NNP contendsVBZ)\(?NNS)\(i-1 word inspiredNN!rh?JJMb?RB"~ i word bumpsNNSˡE?NNˡEԿi-1 tag+i word NN subsidiariesNNSZd;O?NNZd;Oi+2 word carriesJJSX9vRBSxNNl@JJnٿNNPFx i-1 word bombVBN^I +NN`"VBDS@i-1 tag+i word IN fishingNNx&1ܿVBGx&1?i+1 word financesJJPn?NN/$NNPQi-1 word approachNNP+VBD+?JJK߿i word liquidityNNGz?FWGzi tag+i-2 tag `` ( VBD/$ƿVBN?VBZ-?JJSKNNS ףp= @NNPףp= VB/$?VBG(\NNzGi-1 tag+i word -START- hePRPPn@JJjtܿNNPi word cosmeticJJ}?5^I?NN}?5^Iܿi+1 word traitJJ rh?NN rhi-1 tag+i word -START- yeahUHZd;O?NNPZd;Oi+1 word fieldingVBGK7AJJ1Zd?NNI + i+1 word putsDT?NNSy&1?JJPnNNV-?RBK7?INVBZy&1Կi-1 tag+i word NNP stockbrokersNNSbX9?NNbX9i-1 tag+i word RB angryJJ)\(?RB)\( i word gdpNNNNP?i-1 tag+i word DT dunesNNPSy&1?NNSʡENNPOni word metzenbaumsNNPSx?NNPxi-1 tag+i word NN downwardVBZ$CVB-RBrh|@NNT㥛 INrh|Ͽi-1 word retrieveVBKNNjt?JJ#~ji-1 tag+i word RB removedVBPlVBNQVBDCl?i word dinosaursNNSx?NNxi-1 tag+i word RB pilipinoNNZd;?NNPZd;i-1 word needsRBlINX9v?JJx&1@NNPn?RBR~jtJJR~jt?VBP/$ƿWDTOni-1 tag+i word NN akinNNVBN&1ڿVBZClJJ~jt @RBni-1 tag+i word , guaranteedVBPSӿNNX9vVBN^I +?JJVBDL7A`?i+1 word boostJJQ?NNQi word masculineJJFx?NNFxi-1 tag+i word PRP forcesVBDV-VBZV-?i-1 tag+i word CC ratedVBNy&1?VBDy&1i-1 tag+i word DT hipNNHzG?JJHzGi-2 word consistentlyRBq= ףp@NN~jtVBNK7JJ~jt?INlҿDT ףp= i+1 suffix herDTQPDT~jtSYMʡEVBDMb?FW-?JJlqPOS\(\LSx&1VBK7A`@CCnRBSuV?CDjtINJ +@WDTjtJJSuVVBN7A`PRPT㥛 JJRx&1VBZE@RP{Gz@NNS rhPRP$(\?RBRp= ףMDQ?NNPS9vڿVBGMbX9?NNrh|?RBy&1?NNPPnVBPx&1? i-1 word ricoNNP&1NNSʡE?NN333333?JJ&1 i suffix erkNNSKNNK? i+2 word fla.NNPSʡEۿNNnNNP+?i+1 word citiesJJ?NNPi tag+i-2 tag JJS VBPNNPSQ?NNSQVBNvJJv?i-1 tag+i word `` unidentifiedJJ(\?NN(\i+1 word specifyingJJ1ZdNN1Zd?i-1 tag+i word NNS acceptanceVBP1ZdӿNNHzG?IN/$ i-1 word langVBZ"~VBsh|?VBDS?i+2 word arrogantVBrh|?VBPrh|i-1 tag+i word , uninvitedVBNʡEJJʡE? i-2 word yorkVBClVBD㥛 RBRRPnڿNNPGzWDTMb?POSMbX9?RB"~jNNPS5^I ?VBGI +?JJX9v?NNoʡNNS9v?VBPCl?VBNINOn?VBZ?i-1 word slatsNNSQRBQ?i+2 word throwVBP`"WDT"~j?NN`"?DT"~ji-2 word blacksJJS㥛пNNSK7?NNPzGҿVBzGNNPS!rh?RBRT㥛 VBNS㥛?JJRX9vi-1 tag+i word PRP$ fiscalJJx&1?NNx&1i+1 word husbandVBZy&1DTx&1PRP$V-?VBDQٿVBNRQPRP}?5^IJJrh|@ i+1 word campNNPS?5^I ?NNP?5^I i-1 word scriptVBNZd;?VBDZd;i-1 tag+i word NNS operatingNNv/տVBGS㥛?WDT9vi-1 tag+i word VBP recordVBEԸJJ^I +?NNL7A`пi+1 word cautionNNS+?JJRE?RBREVBZ+i-1 word urbanNNSV-?NNV- i word carewsNNPSB`"?NNPB`"i+1 suffix zesJJ'1Z?INZd;DT{GzNNS)\(NNPZd;ONNʡE@VBPFxWDTuV@i-1 tag+i word CC terminalNNw/JJw/?i-2 word tighterVBN)\(?VBD)\(ܿi-1 word fultonJJClNNPCl?i+2 word caveneeNN= ףp=?JJ= ףp=i-2 word counteredJJ`"?NN`"οi word governingVBGCl@NN#~jJJ{Gzi-1 tag+i word RB muchVBNK7AVBP^I +RBʡEJJl?i+2 word drasticallyVBPGz?VBGGzNNT㥛 ?JJV-NNPQտi+1 word imageVBNCl?NNDlVBG}?5^I?JJ^I +JJSMbX9?i+2 word delayingVBGףp= ?NNףp= i+2 word cigarettesNNMbX?JJMbXi-1 tag+i word IN feministJJHzG@NNHzGi-2 word promotionalVBPB`"ɿJJS}?5^INNbX9? i suffix OLFNN333333?NNP333333 i word defendVBZvVBx?VBPv/?NN(\i-1 tag+i word : heavyNNK7?JJK7i+2 word publishedDT~jt?PDT~jtJJK7NNPK7?i+2 word sellersJJGzVBGGz? i-2 word sinNNbX9NNPbX9?i-1 tag+i word DT monarchyNN7A`?JJ7A`i+2 word graduallyRPzG?RBK7A`INS㥛пi+2 word overturesVBNM?VBDMi-2 word occasionsVBGz?JJGzi-1 tag+i word CC sheddingVBGNbX9?JJNbX9ؿi-2 word anonymityNNS-VBZ-?i-1 suffix comVBZtV?NNPSCl˿NNStVNNPCl?i-2 word johnstownRPI +RB;On@INp= ףi word processesVBZ333333?NNS333333i-1 tag+i word VB fraudulentJJ/$?NN/$i+2 word bruneiNN|?5^ڿNNP|?5^?i+1 word seldomVBZ+NNS+?i+2 word managerialNNףp= ?RBKVBD!rhi-1 word reporterVBZ㥛 VB +VBPn?i-1 tag+i word VBN earlierRBRI +?NNKJJRQ˿RBzGi+2 word unscathedVBNlVBDl?i-2 word discountNN"~RB$CNNPK7A`?JJT㥛 ?NNSsh|?i-1 tag+i word VBD warningVBGNbX9?NNNbX9i+2 word brushesNN+NNS+?i-1 tag+i word JJ forceJJ-VBZ-NNZd;?i-1 tag+i word JJ inquiryNNSNNPS?i-1 tag+i word NN votesNNS#~j?VBZ#~ji-2 word crushedRBGz?JJGz i word trustNNZd; @VBP(\JJT㥛 NNP(\?VB5^I ?NNPSZd;RBGzi-1 tag+i word NN raiseVB5^I ?VBP"~jNN(\?RB\(\i tag+i-2 tag ) CD VBD333333ۿVBN+?VBPtVNNPtVVB`"@VBGMbXNN~jt?JJRbX9޿JJtVINbX9?i-1 tag+i word NNP gabeleNNNNP?i+1 word headsJJRX9v?NNV-VBZd; i word afraidNNX9vVBDbX9JJy&1@VBNQi+2 word europeanNNS#~jNNPffffff?NNffffffJJ"~jܿIN!rh?VBZm?i-1 word highlightingJJRQ?RBRQi-1 tag+i word -START- britishVBw/JJK7ANNP%C? i suffix rohNNPSS˿NNPS? i-1 word sandVB rпVBNrh|@NNS?JJSVBD;Oni-1 word choppingRPh|?5?RBh|?5i-1 word votingNNx&1?NNPZd;?VBZh|?5NNPSxNNSbX9i word insuresVBZtV?NNStVi word preferenceNNHzG?JJHzGi-1 tag+i word DT libyanJJ{Gz?NNP{Gzi-1 tag+i word JJ blocksNNSNNSS? i word themedVBD`"޿VBN\(\?NNZd;i-1 tag+i word DT hardcoverNNS?JJR5^I JJ}?5^Ii-1 tag+i word NNP passedJJVBD? i-1 word pillVBZ/$?NNS/$VB/$VBD-VBNOn?RBl?i+2 word efficientRBp= ף?NNp= ףi word lobbiesNNS333333?JJ333333i-1 word fancyNNS`"?NNjt?JJ9vRBRʡEi-1 tag+i word IN disposingVBGˡE?NNˡEi-1 tag+i word IN freseniusNN"~NNP"~?i-1 tag+i word JJ lostNN+RBSʡEVBN5^I ?JJ)\(@VBDK7Ai-1 tag+i word CC franchisesNNSp= ףVBZp= ף?i word decadesNN^I +NNPʡEVBZQNNS ףp= @i-1 tag+i word VBD perRB/$IN/$?i word guaranteeVBD rhVBNS㥛VBPl?JJRQNNP-NN ףp= @ i suffix wkyVBD9vڿJJ{Gz?NNV-i+1 suffix igeFW?JJ㥛 NN/$VBDS?i-1 tag+i word IN quotingVBGRQ?JJRQi-1 tag+i word CC rayburnNNPST㥛 NNP+?VBrh|i-1 tag+i word VBG offNNS+RPClg@NN)\(VBNKRBx&1?INZd;i-1 suffix htaVBuV?VBPuV i suffix wesVBPˡENN rhIN^I +VBD(\VBZ{Gz@i-1 tag+i word `` computersNNS;On?NNP;Oni-1 word driveVBK7RP}?5^I@RB+WDTT㥛 пJJQINM?DTףp= i-1 tag+i word VB bothCCʡEDT~jt?PDTNbX9?RP333333ۿVBN#~ji-1 word germsWDT~jt?IN~jti-1 tag+i word DT sympathyNNJ +?JJJ +i-1 tag+i word RB dailyJJ?5^I ?RB?5^I i+2 word declarationsNNZd;OVBNףp= ?JJjti-1 word inchingRPGzRBGz?i-1 tag+i word , washingVBGS?NNSi-1 tag+i word -START- holidayDTClPRP$sh|?տNNx&1?NNPOnۿi word operateVBZ~jtVBV-?VBP~jt?JJy&1RBSi-1 tag+i word POS lamentNNDl?JJDli-1 word knockingNNSClVBN)\(@JJS㥛i+2 word minivansVBPB`"?RBB`"ɿ i word remedyNNDl?RBDli+1 word gujaratNNPuV?CDuVi-1 tag+i word DT dieselNNjtJJjt?i-1 tag+i word NN arrangedVBNL7A`?VBDL7A`п i word awryRBQ?NNPS~jtNNjtJJFxѿi-1 word producersVBMbPVBPFx?VBNHzGVBD= ףp=?i+2 word mainstreamJJ/$VBN/$?i-1 tag+i word NN stepsVBZ/$?VBD/$ٿi+1 word personallyRBR+?JJR+i-1 tag+i word RB capableVBZV-VBʡEۿJJjt?i-1 tag+i word : discountedJJʡEVBNʡE?i-1 tag+i word VBG australianJJ7A`?NNP7A`i-1 tag+i word DT stunningJJJ +?NNJ +i word vengeanceRBvNNv?i-1 word valdezVBNN?i+1 suffix uidRBʡEտINʡE?i word doomsdayNNA`"?JJA`"i-1 word tradersIN5^I VBˡE?NN|?5^VBDM?VBN?5^I CDVBPnڿJJq= ףp?i-1 suffix ntzVBDffffff?VBNffffff i suffix iraNNSMbNNPMb?i-1 tag+i word JJS sovietJJNbX9?NNPNbX9ؿi-1 word pyramidsVBDK7?VBNK7i+1 word districtJJ"~j?NNP%C?CD/$NNˡEĿi-1 word houstonNNPS#~j@VBGy&1NNX9vNNPA`" i suffix bit JJ'1ZNNSQNNPjtVBD#~jVBP#~j?VBNQPOSClCD/$VBp= ף?RBMb@NN;O@i+2 word galsworthyNN+NNP+? i word lavishVBL7A`JJL7A`?i word itineraryNN9v?JJq= ףpFWףp= i-1 tag+i word DT celebrityNNtV?JJtVֿi word chenilleNNS^I +NN^I +?i-1 word grabbedJJQ?RBQ i-1 word clipRPX9v?RBX9vi word underworkedVB-VBNlJJbX9?i-1 tag+i word DT markedVBN?5^I JJ?5^I ?i-1 tag+i word PRP$ growingVBGQ?NNPQi-1 tag+i word TO enhanceVB~jt@NN~jt i word shameNNSjtNNjt?i-1 tag+i word VBN sterilityNNSV-NNV-?i+1 word exercisesJJV-NNV-?i+2 word buildRPK7?VBNffffffֿNNSV-NNPˡE?NNPSK?JJRPnVBX9v?RBRPn?VBZܿMDQ?NN/$?VBDK7JJؿINK7i+2 word widespreadVBNbX9VBPNbX9?JJS?NNSտi-1 tag+i word CD levelVBPOnNNS㥛?JJB`"ɿi word prosecutorialJJ1Zd?NN1Zdi-1 tag+i word DT grippingVBG(\JJZd;O?NNEi+2 word beltwayVBP-IN-? i word mikeDT|?5^ٿNNPq= ףp?NN"~ʿINZd;i-1 tag+i word WDT attemptVBPK7A`?VBDK7A`տi tag+i-2 tag ) ''JJʡE?NNT㥛 VBDSi+2 word nerveVBZ rhNNS rh?i-1 tag+i word CC stolenVBNoʡ?VBDoʡi-1 tag+i word NN helpsVBZ?5^I ?NN?5^I i-1 word certificateWDT|?5^?IN|?5^i-1 tag+i word NNP seeVBPM?RBMi word shortlyVBNq= ףpJJK7ARB +? i word pegsVBZ/$?VBP/$i-1 tag+i word RB eccentricJJrh|@VBDQٿVBZy&1VBNRQi-1 tag+i word VBP convincedVBD(\RB= ףp=VBG5^I ۿVBNn@JJ+?i-1 tag+i word DT briskJJ(\?NN(\i-1 word besidePRPFx?NNFxi-1 tag+i word NNS generatedJJZd;VBDx&@VBNMbi-1 tag+i word VBD tariffPRPClѿNN~jt?NNP)\(i+2 word portraysNNT㥛 ؿNNPT㥛 ? i+1 word hudJJMb?NNV-IN333333?DT333333VBG+? i+2 word ageNNS?JJSRBףp= ?INףp= ÿi+1 suffix wigJJRCl?RBRCli+2 word oscarJJ(\@NNP(\i-1 tag+i word DT molecularJJʡE@NNʡEi-1 tag+i word NNS representVBX9v׿VBPX9v?VBDX9v߿i-2 word swimmingNNSZd;NNZd;?i+2 word nonsenseVBZ`"?PRP`"i-1 tag+i word -START- kelloggNNSQNNMNNPףp= @i-1 word involveVBGQ?JJ;OnNNMbX? i word sharesNNP ףp= ?NNS ףp= i-1 tag+i word RB bruisingVBG rhJJ rh? i word flintNNK7NNPK7?i-1 suffix mixVBZ;OnNNS;On? i+2 word feet VBʡENN^I +VBNʡE?VBP'1Z@INI +?JJx&1VBDS㥛CD^I +?RBI +i-1 tag+i word JJ managedVBNOn?VBDOni-1 tag+i word NNP officeNNP-?NN-i-1 tag+i word NNP informedVBZSտVBDS?i-2 word paintingJJRSVBGPnRBRtV@NNOnӿi-2 word crossVBD= ףp=?VBP= ףp=RBM?VBZMNNP(\?NN(\ i suffix iahNNSQNN?NNPQ?i-1 tag+i word NNS inheritVBP= ףp=?RBR= ףp= i suffix yonNN333333?JJ333333ӿi-2 word provokingRBR|?5^JJ|?5^?i+1 word geneticNNPOn?VBGX9vNNV-JJ-?i word consolidatingVBG7A`?VBP7A`i+1 word associatedNNzG?NNP~jt?RBZd;?JJni-1 tag+i word NN repairVBV-NN%C?JJ1Zdi-1 word gorgeousJJ(\@NN(\i-1 tag+i word PRP fightsVBZ rh?VBD rhi-1 tag+i word VBP climbedVBNX9v?NNSX9vi+1 word kabulVBNK7A`VBDK7A`?i-1 word chemicalVBZV-WRB1Zd?NNSV-?NNPPnпNNPSPn?VBG^I +NN1ZdVBD(\?i-1 tag+i word CD participantsNNS?VBDi-2 word divingVBI +NNI +?i-2 word lunchNN7A`?JJ7A`i-1 tag+i word NNPS seekVBP`"?NNP`"i-1 tag+i word VBD workVBNN?i+1 suffix ool VBGMbX?VBPRQNNPI +NNPS9vVBNGzJJx@IN$C?NNS+NNw/ i suffix oshNN/$NNPp= ף@NNPS{Gzi word cyclingVBGNNʡE@JJ +i+1 word jointlyVBNL7A`?VBDL7A`堿 i suffix rsyVBZJ +VBPENNSMbNN~jt@i+1 word inquiryJJR$CJJx&1NNPDl?i-1 tag+i word IN mainframesNNS9v?NN9vʿi word acclaimedJJm?RBmi-1 tag+i word IN obtainingVBG^I +?NN^I +i-1 tag+i word NN foundNNSX9vVBN\(\?NNrh|INOnVBDI +@i-1 tag+i word VBP teachingVBGsh|??JJsh|?i-1 tag+i word IN needNNK7A?JJK7Ai word triggerNN^I +?NNS^I +i-1 tag+i word VBD robbedVBNjt?NNjti-2 word policiesFW1Zd?JJOn?VBNQNNˡEĿi word blendingNN{Gz?VBG{Gzi-1 tag+i word JJ advertisingVBGx&1NNx&1?i-1 tag+i word CD perINZd;O?NNRBףp= JJʡEi-1 word drivenRPw/?JJR7A`?NN{GzԿRBR7A`RBsh|?տi-2 word invitedPDTI +ֿJJV-DTrh|?NNSQ?VB#~jNNV-?i-1 tag+i word ( maryJJSNNPS?i-1 tag+i word CD madeNNI +VBDjt@VBNS㥛i-1 tag+i word JJ presidentialJJGz?NNGzi+1 word wagesCCZd;O?DTZd;Oi-1 tag+i word VBG extendedVBNK?VBDKi-1 tag+i word , enableVBP rh@JJ rhi+2 word inflatedJJQ?NNQi-1 tag+i word NN narrowedVBNS?VBDSi-1 word muscularNNSx&?NNx& i suffix BoyUHClNNPCl?i-1 tag+i word DT deviceNNoʡ?JJoʡݿ i word geraldVBB`"JJ(\NNP+?i-1 tag+i word DT headlinesNNPS(\NNS(\?i-1 tag+i word DT snappyJJ~jt?NN~jti+2 word basesVBCl?VBPCli-1 word humanNNPSZd;RB ףp= NN+?JJNbX9NNSx&1?NNP1Zd?i-1 tag+i word VBN dueJJ|?5^?RB|?5^ѿi+2 word schoolsNN rhVBDJJS rh?VBN?RB|?5^?IN|?5^ i word coolerVBZd;WDT(\JJRX9v?NNZd;O?i-1 tag+i word VB ourselvesNNSq= ףpPRPq= ףp?i-1 tag+i word NNP sedansVBZ ףp= NNS ףp= ?i+2 word swiftNNPSoʡݿNNPoʡ?i-1 tag+i word WDT referencesVBZ rhNNS rh? i suffix ppiNNP#~j?NN#~ji word defectsNNSOn?RPffffffVBZX9vi-2 word flatsNNX9vVBGK7JJ rh?i+1 word licenseVBNlڿJJl? i word outfitNN-?RB\(\VBFx?i-1 tag+i word NNP springsNNPSK7?NNPK7ɿi word contributeVBMbX9?VBPRQ?NN;Oni+2 word goldmanINףp= NNSn?RP|?5^?RB&1ʿNNA`"VBN|?5^?VBP&1JJ|?5^ i word shunVBPbX9@NNnNNPy&1i word pollsterNN{Gz?RB{Gzi+1 word dialogueJJK7A?NNK7Ai+1 word straussVB+NNP+? i word soonVBN/$޿JJxNNPVBףp= RBq= ף@NNL7A`i-1 tag+i word JJ goodNNSNbX9JJʡE?NN?5^I ?NNP&1i-1 word unstylishNNSoʡ?NNoʡ i+2 word sold IN +NNS;On?NNP1Zd?JJzGNNuV?VBPA`"?RB~jtWDT +?DT^I +NNPSX9vVBD rhCC^I +?VBN(\?i word trademarksVBZףp= NNSS㥛?NN㥛 i-1 word observedRB#~jԿIN#~j?i-1 tag+i word DT resultVBGX9vNNoʡ?JJZd;Oi-2 word convocationJJ-?NN5^I ۿFW+i-2 word fasterJJR'1Z?JJ~jtпRBENNSNNP rh?i-1 tag+i word RP shopNNK?JJKi word explainedVBNSۿJJ+VBD rh@ i-1 word otcVBG#~j?NN#~ji-1 tag+i word -START- treasuryJJK7ANNP~jt@NNQſi-1 word brownsVBPK7ANNK7A?i word politickingVBGx&1NNx&1?i word blemishesDTV-NNSV-?i+2 word toxicJJX9v@DTQ@VBNX9vRBQi+2 word honeyNNPS5^I ?NNS5^I VBN(\JJ-?VBDx&1i-1 tag+i word : evenJJ rh?RBv/VBoʡi word intellectualJJy&1?NN|?5^NNP(\?i-1 tag+i word DT hospitalNN%C?JJ%Ci+2 word aspectRB;OnCD;On? i word boardsNNSCl?RPOnNN-i-1 tag+i word IN sacrificingNNjtVBGjt?i-1 tag+i word VBD agreedVBN"~?VBD"~i+1 suffix cilNNPSPn?JJJ +ɿNN333333NNPGz׿ i word messaFW~jt?NNP~jti word contingencyNNy&1?JJy&1i-1 tag+i word NNS jumpVB rhVBP rh?i-1 tag+i word IN northeasternJJ1Zd?NN1Zdi-1 tag+i word JJ leasesVBZQNNSQ?i word permeableVBv/ͿJJv/?i-1 tag+i word NNP quakeNNPtVNNtV?i-1 tag+i word IN tonyNNS/$JJ~jt@NN ףp= i-1 tag+i word RB smotherVBʡE?JJʡEi-1 word startsDT+NNPʡE?VBʡEÿVBGV-?NNV-RBOn?WPJ +?i-1 tag+i word NNP strategistVB;OnNN;On?i-1 tag+i word JJR understoodVBN ףp= ?JJ ףp= i-1 tag+i word NN attestsVBZK7A?NNSK7Ai-1 tag+i word DT boldJJ\(\@NN\(\i+1 word furnishedRBMb@NN+JJp= ף i word dragsVBD rhVBZPn?VBPV-i+1 suffix cotVBGK7ɿNNPK7? i suffix verWP- @RPzG@RBGz@NNSKVB"~j?WRBp= #@VBP#~jWDT+w"@JJR/$VBN㥛 VBZ~jtDTKNN/$?CDx&MDA`"NNPSMbXVBD\(\JJS㥛 JJSSUH/$RBRʡEEXKINK@FWClNNP`" i+2 word s.a.NNPZd;O?FWT㥛 ?JJ-?NNd;OINGzi+2 word mentionPDTjt?JJQINʡEi-1 tag+i word NNP negotiatorNN ףp= ?VBZ ףp= i word mergeVB"~j?VBPQ?JJʡENNQVBDQi-1 tag+i word VB costlierJJRI +?JJI +i-1 tag+i word VBG covertVBNMbXJJMbX? i word dogsNNPS+NNS?5^I @NN^I +NNPX9vi+1 word widelyVBDCl?VBPZd;?VBNClJJZd;i-1 tag+i word JJ pleaNNSSNN~jt?RBZd;Oi word drawingVBG㥛 ?NN|?5^NNP5^I i-1 tag+i word IN manicJJ~jtNNPK?NNPSx&1Կ i-2 word seemJJS㥛IN333333?NNST㥛 ?VBNbX9пRP|?5^RB@NNV-?VBNuVi+2 word besidesVBZ rh?NNS rhi-1 tag+i word JJ brickNNV-?JJV- i word bogusJJX9v?NN{GzFWjt޿ i word solidVBGSNNL7A` RB5^I ?JJM@i word rendezvousNNK?JJKi-1 tag+i word NNP walkedVBP(\VBD(\?i+1 word swiftlyNNV-VBGV-?i-1 tag+i word IN both NN`"CCS@PDTmͿJJRA`"DT-?CDJ +?VBP$CJJnINQi-1 tag+i word RB concentratedVBNjtJJjt?i-1 word witmanVBZNbX9?VBDNbX9 i+1 word heckNNPS㥛UHp= ף?INT㥛 пi+1 word desperatelyRBjt?INjti-1 tag+i word , acquiredVBD$C?VBN$C˿i-1 tag+i word , torstarNNK7ٿNNPK7?i+1 word printerNNHzGJJHzG?i-2 word puckishWDT+?IN+i-1 tag+i word PRP treatVBMbPVBPMbP?i-1 tag+i word JJ treatyNNS-NN-?i-1 tag+i word -START- calgeneJJѿNNP? i word statesNNPSw/]@NNSh|?5 @NNSNNPjt VBZ/$i-1 word freeingPRP$rh|PRPS?JJR+i-1 tag+i word ) encourageVBbX9?NNI +޿NNPtVi+1 suffix eefNN!rh?RB!rhi tag+i-2 tag CC NNSRBS|?5^ѿJJR{Gz?VBG?RBCl PRPMb?NNSK@INT㥛 VBN|?5^?VBP}?5^IVBZrh|?PDTx?JJSNbX9VBD#~jWDT= ףp=NN@NNP9v?VB|?5^?RBR(\CDI +NNPSCl?JJbX9?DT|?5^i-1 tag+i word CC repeatedVBNPnVBDPn?i-1 tag+i word CC lousyJJ~jt?NN~jti-1 tag+i word NNS counterVBZףp= RBףp= ?i word manuallyRB;On?NN;Oni-1 tag+i word `` freedomFWrh|NN333333@RB~jtNNPS㥛i+1 suffix urbNNL7A`?RBRʡEݿRBʡE?NNPffffff?JJ?5^I i-2 word specialistsVBGMb?NNMb i word start RBvNNS"~NNP9vFWClVBPS@NNS㥛?VBDSVBNMbVBPn @JJZd;Oi-1 tag+i word DT falloutNNSSNNS?i-1 tag+i word NN announcerNN^I +?NNP^I +i-1 tag+i word JJ senatorsNNPS}?5^I?NNS7A`NNPHzG?i word uninvitedVBNʡEJJ!rh?VBDq= ףpտi-2 word heartwarminglyNNS+?NN+ i word leasesNNS\(\?VBZ\(\i-1 tag+i word VBP lookVBVBP~jt?NNxi+2 word zapotecJJV-?NNPV-i+2 word enfieldNN/$?JJ/$MD/$NNS/$?i+2 word hawkersNNS/$?NN/$ۿi-1 tag+i word -START- artNNPʡENNʡE@i-1 tag+i word TO teachVBuV?NNuV i word fluNNI +?JJI +ֿi+1 word massedNNPA`"@NNPSbX9NNSFxi-1 tag+i word NNS deliveredVBN= ףp=?VBD= ףp=i-1 tag+i word CC rumorsVBw/NNSw/?i+2 word rumoredNNK7NNPK7?i-1 tag+i word CC becauseRBS㥛@NNbX9INS㥛пVBZKi+1 word conservativeIN rh?DT rhͿRB#~j @NN/$RBRx&?JJRx&JJףp= i-1 tag+i word `` sophisticatedVBDK7VBN|?5^JJn?i-1 tag+i word VBN accomplishedVBN;On?JJ;Oni word authorityNNv?RBvi-1 tag+i word VBN breakingVBGx&1?NNx&1i word kiddiesNNSCl?JJSCli-1 word redoingNNSZd;O?RB9vNNi-2 word presidentialWDT ףp= ?IN ףp= i-1 word shelfVBGX9vNNX9v?i-1 tag+i word NNS showVB~jtVBPtV?NNʡEͿVBDS㥛Կi-1 tag+i word WDT spreadsVBZ/$?NNS5^I ˿NNbX9޿i+1 word coastNNS/$JJK7ٿNN%C?NNP|?5^?i-1 word whateverNNI +?VBDX9vVBNuVCDʡEPRPʡE?JJ-?i-1 tag+i word CC takeVB~jt@VBPA`"CDZd;O i suffix iloNNx&NNPx&?i-1 tag+i word NNPS nameNNPS(\NN(\? i suffix AreNNPSK7A`ݿRB$CVBPV-o@JJv/INK7A`DTClNNPZd;OVB ףp= ǿi-2 word transportationCC/$RBRK7?JJV-VBZV-RBV-?NNM?i+1 word refusalJJjt?RBjtԿ i word horseNNCl@JJI +JJRRQ i-2 tag VB"VBD/$DTv@PDT rh?CDx?NNPSS?VBGuV?$ClۿNNMbX9NNPK@CCZd;?WPbX9RP&1?UHS㥛?PRP\(\@WRBx&1?INv/?MD+JJR r?''ffffffFWM?VB(\?PRP$^I +ǿPOS~jtNNSK?RBS(\EX\(\VBN7A`ҿRBQӿJJSw/?VBP1ZdWDT)\(?JJ~jt?VBZ/$RBRˡEi+1 suffix lonNN;On?NNP;On i-1 tag+i word -START- similarlyRBMb?JJ-NNP'1Zi-1 tag+i word NN designNNS-NN-? i word upheldVBDh|?5?VBZMVBPZd;OVBNS?NNoʡi-1 tag+i word NNS thereVBPzGEX ףp= RBX9v?i-1 tag+i word JJ reshufflingNN-VBG-?i-1 suffix ran RBw/?VBNʡEJJ rVBZuVտNNS rh?RP?NNʡEVBDzGINq= ףp?i-2 word learnedINZd;?WPZd;i+2 word freelyNNPS"~jNNS~jtȿNNPI +?i+1 word lemontRB5^I IN5^I ?i-1 tag+i word JJ acceptancesVBPZd;NNSZd;? i+1 word run NNE?WDTV-?RBZd;NNS~jt@NNP|?5^VBQ?FWjtINV-VBZQJJ~jt?i-1 tag+i word NNS redderVBPh|?5JJRbX9?NN\(\i-1 tag+i word JJ rightsNNPS%C?NNP%Ci-1 tag+i word , servingVBG= ףp=?NN= ףp=ڿi+1 word swedenDTQ?INQi-2 word tryonVBZq= ףpݿNNSX9v?RBV- i+1 word sackNN{Gz?JJ{Gzi-2 word wellcomeRB㥛 ?JJ㥛 i-1 word respondentsVBN9vʿVBD9v? i-2 word fileVBGNN`"?WDTGz?JJzGDTGzNNS?NNPQ?i-2 word organizationsVBD+?VBN/$JJR rh?RBˡE?INuV?NNni word abandonVB?VBP-?JJrh|NNMbRB~jt i word healedVBN rh?JJ rhi-1 tag+i word RB tryVBZK7AVBGz?VBPtV?i-1 tag+i word IN boaNNOn?JJOni+2 word watchingVBDZd;VBNZd;?RBK7ٿINK7?i-1 tag+i word IN salomonNNPS1ZdNNP1Zd?i+2 word creamierVBZZd;ONNPZd;O?i+2 word titleVBM?VBDʡERBR9v?VBPMVBZ"~j?NNSX9vi word developersNNPS ףp= NNS9vNN~jtNNP @VBZy&1ܿi-1 tag+i word , refusingVBGMbX9NNMbX9? i word labsNNS|?5^?RB'1ZNNT㥛 i-1 tag+i word NN seeVBZ$CVBP$C? i suffix woeVBPClNNCl?i+1 word rapidlyRB+?JJRNbX9RBRNbX9?VBPV-?JJʡEINjti-1 tag+i word `` sometimesNNP;OnRB;On?i-1 tag+i word VBD collapsedVBNʡE?JJʡE i word roofsNNSK7A?NNK7Ai-1 tag+i word CC jalapenoJJK?NNKi-1 word estimatedCDQ?WDT|?5^JJ/$IN ףp= ?DT'1ZNN +i-1 tag+i word VB directVBٿJJ?i-1 tag+i word , etc.NNuV?FWQ?VBZzGRBCli tag+i-2 tag CC VBNRB~jtпVBDsh|?JJx&?NNS(\VBGDlVBP ףp= ?WP5^I ?VBZClѿDT+MDp= ףNN(\ VBNp= @CDX9v?VB?5^I INV-?WDT5^I ӿi-2 word especiallyNNPףp= ?VBPS㥫JJZd;@NN;OnCDMbXi word untappedJJ-?NN-i word transportNNP!rhVBQ?NNPS|?5^ʿJJOnNNbX9ȶi-1 tag+i word NNP treasurysNNPSV-?NNPV-i-1 tag+i word VBP fruitbowlNN7A`?JJV-RBd;O޿RBRx&1 i suffix nctVBNQRBRzGJJ-@JJRV-NNS-NNS㥛i-1 tag+i word `` maharajahsNNˡEԿFW-NNSx&1?JJxi+2 word quartetPOS+?IN+i+2 word interviewVBGˡENNPˡE?i-1 word disneyNNw/?JJw/i-1 tag+i word CC shouldMDFx?NN +NNPMbi+1 word pagongJJZd;NNPZd;?RBZd;i-1 tag+i word JJ withdrawalNNSSNNS?i+2 word dramaVBGRQ?NNRQi-2 word accordVBPv?VBN~jtVBbX9i+1 word hookerJJ$CNNjtֿNNPA`"?i-2 word smaller NNPS+RBRx&1@VBPv?JJ;OnVBZvNNS+?VBKRBPnVBDK?JJRl?VBNjti-1 suffix aps DTQ?NN+RBSףp= ?RBRV-?JJRV-VBPB`"NNSx&1?VBw/@JJSףp= WDTQRB'1ZĿIN'1Z?i-1 tag+i word VBN gentleJJ= ףp=?RB/$VBN/$i-1 tag+i word DT angerNNSMbNNMb?i-1 tag+i word IN fastRB!rh?JJ!rhi word serversNNx&1NNSx&1?i-1 tag+i word `` bertieNNS!rhNN}?5^INNP9v? i-1 word lifeVBPMbX9ԿNNSx?NNѿi+2 word tastelessJJ5^I ?NN5^I i+2 word ladenNNS+JJA`"?NNMi-1 tag+i word DT southNNw/NNPJJK7@i+1 word perceptionsVBNbX9VBDbX9?i+2 word divorcedRB|?5^ʿCDMb`NNPB`"NN(\VBNE@i tag+i-2 tag , RP VB rh?VBGMbX9?INsh|?JJQ?VBZK7A?NNSK7ARBsh|??NNEؿVBPRQȿi-2 word othersPRPGz?JJGz?NNS= ףp=NNPClVBDl @NN/$VBN?VBPQi-2 word ferriesNNZd;?RBZd; i word twaronNN'1ZNNP'1Z?i-1 tag+i word NNS movedVBNQ˿RB-VBDS? i+1 word lieVBGZd;O?NNPS!rhNNS!rh?NNZd;Oi-1 tag+i word JJ limbsNNSZd;O?NNSNNPK i+1 word moodVBK?VBPKJJzG?NNzGi-1 tag+i word NNS plungedVBNX9vVBDX9v?i+1 word wouldWP/$?NNSJ +?EX|?5^?VBDjtVBNrh|?RBR%CINffffff CDMNNPCl?WDTCl@PRP|?5^?VBZClVBB`"FWQVBPףp= RBOn?DTMbпNNPSS㥛@VBGX9v?JJy&1NNCl߿i-1 word chalkingRPx&1?RBx&1i-1 tag+i word CC condonedVBNFxVBDFx?i-1 tag+i word NN summaryNNSp= ףNN(\?JJx i+2 word san VBHzGJJSˡE?PDT rRBSˡEĿVBN+NNPZd;ONNPSx&NNq= ףp@VBD ףp= ?IN$CVBZ5^I ?i+2 word laurelVBNS?NNPSi-2 word investigatorsDTm?INSWDT{GzWPB`"?i-1 tag+i word NNP deniedVBP|?5^VBD|?5^?i-1 tag+i word TO grantVB/$?PRP$ ףp= JJsh|?i-1 tag+i word DT retiringVBG7A`?NN7A`¿i+2 word injunctionPDTS㥛JJS㥛? i+2 word mgmRPS?INSi+1 word weighsWDT +?IN +i-1 tag+i word JJ detailVBPPnNNPn? i word clipsNNS333333?NN333333 i word aminoNNT㥛 VBDL7A`JJPn?i word franchisesVBZp= ף?NNSp= ף i+1 word pigsJJffffffVBZ1ZdVBGJ +?NN&1?VBDV-ڿVBPV-? i word pongRBZd;JJZd;NNPZd;?i+2 word bleakRPV-INV-?i-1 word dustyNNʡE?JJʡEi+2 word argueNN rh?VBN rh?JJ?5^I VBZ"~jNNSzG?NNPq= ףpi+1 word veveyNNPA`"?INGzFW&1ҿi+2 word adoptionINp= ףVBZ/$DTZd;O@MDK7A?RPxVBDx?WDT/$i-2 word hollistonJJq= ףp?NNPq= ףpi+2 word severingVBGB`"?NNB`"i-1 tag+i word VBN releasedVBN+?NN+i+2 word guessDT rhNN rh?i-2 word cuminNNSKNNV-?JJp= ףпi-2 word travelsVB rؿNNP r? i suffix ips VBZ-@VB~jtRBtVNN333333VBDvVBN rhJJlINp= ףNNSQ^%@NNPA`"?FW"~VBPi word drasticallyRBMb?JJMbi-1 word stallionVBGClNNB`"?JJ|?5^i+1 word residuesNN\(\?VBP\(\i+2 word crowdsDTClRBCl?i-1 tag+i word DT commentNNuV?JJuVi tag+i-2 tag WP$ VBNNSGz?NNGzi-1 tag+i word VBN goodJJPn?VBNPn i suffix vitNNSrh|NNd;O@JJq= ףpi+2 word cananeaVBGGz?NNGzi+2 word light NNx&1̿RBRT㥛 @VBNjtDTy&1?VBG+JJ'1Z@RB"~jVBZffffff?NNSx&1PDT-JJR|?5^i-2 word attendsNNS#~jNNV-?RBףp= ۿi+1 word receiveNNS= ףp=?VBZ= ףp=WDTGz?INGzi+2 word burgerNNSK7A?JJQNNPni-2 word shoppingNNZd;O?JJZd;ONNPA`"?NNSA`"i-1 word governorsVBPrh|?VBDrh| i+1 word fareJJA`"?NNA`"ۿi-1 tag+i word VBD revealedVBGVBNv/VBDˡE?i-1 tag+i word MD closeRBrh|VBrh|?i word clotureNN?5^I ?JJ?5^I i-1 tag+i word VBD spendingVBGK7A`NNK7A`?i-1 tag+i word CC uniceJJB`"NNPB`"?i-2 word uptempoNN"~j?JJ+UHw/ i-2 word carlVBZ'1ZPOS'1Z?i-1 tag+i word , slatedVBNn?VBDni word stepchildrenNNSSNNM?RB+ǿi-2 word crowdVBjtVBP{Gz?RP1ZdNN7A`i word criticismNN= ףp=?NNP= ףp=i+1 word sheiksJJ5^I @NNPClVBNv/i-1 word rumpledNNSnNNn? i word utterJJ$C?NN$Ci-1 word looserVBP㥛 NN㥛 ?i-2 word aircraftVBDx&JJuVտNNP1Zd?VBN/$?NN`"i+1 word assuresRBV-?NNV-i-1 tag+i word RB extraJJM?VBDMi-1 tag+i word VBP luckierJJR(\?RBR(\i-1 tag+i word POS aluminumNN-?JJ-޿ i word kyleNNP7A`?JJx&1пFWK7A`ݿi word murkierNNFxJJRFx?i-1 tag+i word RBR seniorityNNʡE?JJʡEi+1 suffix seyINMbX?DT"~jNNP+?NNʡE?JJx&1i+2 word portableJJ9v?NN9vi word aeronauticsNNPS/$NNS#~jNNPV-@ i+1 word grabTOx&?RBtVNNP-ƿi-2 word speculation VBx?RBʡEVBDFxѿJJRL7A`?RBRL7A`VBP-ӿIN9v?DT9vNN{GzJJx&1?NNPDl?i-2 word experiencedVBZL7A`NNSL7A`?JJK7?NNK7i word careeningVBGw/?NN^I +JJbX9޿i-1 tag+i word VBZ operationsNNSףp= FWףp= ?i-1 tag+i word , walkVBl?NNli+1 word reservesNNP/$VBMbNNK7?VBD!rhVBN/$VBPMb?JJ&1?NNS ri-2 word contradictoryDTK7?PDTK7i tag+i-2 tag : VBNNPS?DTS㥛NNPw/?CCʡEPRPv/?RBrh|߿VBGJ +JJZd;NNˡE?WP"~?CDl?WDTy&1NNSINrh|?i-1 tag+i word DT daikinJJQNNPQ?i-2 word olderRBS-?JJS-JJClINCl? i word uncRBClNNPCl?i+1 suffix ety VBGZd;NN"~VBDQ?JJRm?RBRmVBPQVBN ףp= ?JJV-?VBZHzGCDh|?5?NNP;On? i word sticksNNMbVBZMbXNNS'1Z? i word bitJJjtPOSClVBzGếNN~jtпRB!rh @i word dystopiaNNB`"?VBZB`"i-1 tag+i word -START- libertyJJ'1ZNNP'1Z?i+1 word heftyINoʡRB㥛 ?NNS ףp= ߿JJ/$?NN ףp= i-1 tag+i word NN burdensVBZbX9?NNS= ףp=INSi-1 word fisheriesVBNQVBDQ?i-1 tag+i word VB noneNN-?JJ-i-1 tag+i word RB intentNNh|?5?JJh|?5i-1 tag+i word DT pocketbookNNʡE?JJʡEƿi+1 word unilateralVBNGzJJGz?i-1 tag+i word : pongNNPZd;?JJZd; i word phelanNNrh|?NNPrh|i tag+i-2 tag `` NNNNPSp= ףRB +ֿVBZ?NNS'1ZJJMb@NN?5^I ?VBNSۿVBP㥛 WDTOnIN?5^I ?VB?5^I ?VBGV-FW rhJJR r?DTOn?VBD?RBR rNNP)\(i-1 tag+i word CD crashJJy&1|VBPMbNNS rhNN!rh?i-1 tag+i word '' gatheringNNDl?VBGDli+2 word fundingRBw/INw/?NNSjtNNPV-?JJV-NNjt?i-2 word portableNNQ?RBˡEJJ ri-1 tag+i word VBZ shootVBPRQ?VBRQi+2 word prof.WDTx&1INx&1?i+2 word decideNNSnʿRBˡENNSVBDn?VBN^I +JJˡE?i+1 word robertJJSINFx?NNPSNNS㥛@VBD-?VBN%CRBRʡEWDTFxi-1 tag+i word DT civilisedVBN1ZdJJ1Zd? i word investVBPn@VBPV-?JJSGz޿NN/$RBV-ݿi-1 tag+i word RB atopVB"~jԿIN"~j?i-1 tag+i word VBZ failVBP%C?PRP%C̿ i word tiltedNNP(\?VBN333333JJQ?VBDRQi-1 word quinlanVBDSۿNNS?i+1 word ridiculousNNP1Zd˿JJ1Zd?RB+i+2 word chinaRBMbINS?NNSSVBSJJ/$@NNv/?VBDv/i+1 word guestsPRP$Gz?PRPGzi-1 tag+i word RB showsVBZʡE?VBPNbX9JJZd;i-1 word puzzleIN|?5^WDT|?5^?i word packagingJJjtNNP-VBG)\(NN~jt@i-1 tag+i word DT handyJJV-?NNV- i-1 word loanVBGlJJ/$NNx&RB`"NNS333333?NNPˡE?i+1 suffix talVBNˡE?RB$CNNPS-JJV-@INm @VBDB`"?JJRS㥛?VBZZd;OտVBGMbVBPbX9?DTпRBSJ +RBRS㥛WDTA`"ۿNNSV-߿POSCl?VBܿNNjtJJSJ +?NNPv?i+2 word proceedRB-?VBNEJJ5^I VBDOn?i-1 tag+i word VBD okUH~jt?NNP~jti+1 word arenaVBGoʡ?JJoʡi word traditionallyRBl?NNPMbXٿVBK7i+1 word catholicsNNPS~jt?NNP~jti-1 tag+i word DT budgetaryJJ;On?NN;Onҿi+2 word licensingDT|?5^CC|?5^?i tag+i-2 tag NN RBRINA`"?VBGףp= ?RBV-?NNZd;NNPA`"i-2 word linenVBnVBNZd;OJJHzG?VBDS㥻i-1 suffix nzaVBDJJT㥛 ?NN~jt i-2 word usxNNHzGVBG)\(?VBN$C?JJ/$i-1 tag+i word CC slippingVBGCl?NNffffffJJ7A`ҿi-1 tag+i word JJ statesNNS^I +?NN^I +NNPsh|?NNPSsh|??i-1 word indicateNNʡE?JJʡEֿIN-?DTQ?WDTS㥛i-1 tag+i word VBP alongRP;OnRBL7A`?INGzi-2 word portrayingRBx&1INx&1?i+1 word terroristVBNʡEJJʡE?i word grandsonVB$CNNjt?JJ!rhi-1 tag+i word PRP anecdotalRPv׿JJv?i-1 tag+i word DT worthNNSxNNx?i+1 word infrastructureVBGw/?JJw/i-1 word surgicalVBG rNN r? i word wilburJJ?5^I NNP?5^I ?i-2 word judgesVBN?5^I VBPsh|?RBV-VBZV-NNPbX9?VBsh|?JJMb@VBDsh|?? i word put VBZGzNNPh|?5 VBGKNNffffffRBoʡPDTSVBN/$@VBP|?5^?WRBK7NNS?5^I VBx&1 @JJS㥛 VBDzG@i-1 tag+i word , exercisedVBNʡE?VBDʡEi-1 tag+i word VBZ loomingJJS㥛VBGS㥛?i-1 tag+i word NN highwayNNSx&1NNx&1?i+2 word noteholderVBP^I +VBG^I +?i-1 word traitVBNV-?JJV- i-2 word soVB+?CCCl?VBPGz?VBZZd;OINh|?5?RBRx&1EXX9v?JJRHzG?DT'1ZԿNNX9v@VBDd;OVBNZd;NNS(\?NNPFxJJK7A`?WDTMbRB/$i-2 word questionsJJtV?VBN/$RBJ +i+2 word plowedJJRn?RBRni+1 word measuringNN/$?JJNNPjtܿi-1 tag+i word POS bryantJJ}?5^I̿NNP}?5^I?i-1 tag+i word POS eagernessNN-?JJ-i-2 word hispanicJJZd;?NNZd;i-1 tag+i word DT immenseNNnJJn?i-1 tag+i word POS excessiveJJoʡ?NNoʡi+1 word european NNP~jt VBMڿJJMb?VBD/$?RB'1ZINDl?VBG/$?NN/$VBNp= ף @JJR/$DTDli+2 word modelNNS㥛NNPS㥛?i-1 word technicallyVB rhٿJJ\(\?NNjti-1 tag+i word NNP watchersNNPS333333ۿNNSm?NNPMbX9i-1 tag+i word NNS targetsIN&1NNSK7A`?VBDHzGѿi tag+i-2 tag IN VBPJJx&1$~jt?INX9v?PRPףp= ?RBClVBVBPMbWP-?DTp= ףNNOn?POSV-RBSn?EX1Zd?PRP$ףp= ۿVBGS㥛ĿVBZK7ɿNNSS?JJR/$?VBN+NNPI +?PDTDl?RBRZd;O?JJSni+1 suffix ppyNNPS"~j@RBRE?RBJ +?JJREJJGzi-1 suffix eibVBNX9vVBDX9v? i-1 word twoJJl?NNx&1?NNSuV?NNPStVοRPffffffVBNxRB`"IN)\(?VBZB`"JJSMb`?RBSMb`JJR`"?VBPCl@VBD|?5^?WDT(\?VBGI +?NNPV-i-1 suffix oisVBD +?NNx&1NNP/$?i-1 tag+i word `` ohVBP!rhUH!rh?i-1 tag+i word DT departingVBGw/?JJw/i-1 tag+i word RB merchandisingVBG|?5^NN|?5^? i-1 word thinNNn?CDOnJJmNNSK?NNPK7A`?NNPSw/i-1 tag+i word IN investingVBGrh|@NNrh|i word inventoryVB5^I VBGvNN@JJFxi+2 word excludingRBR"~?RB"~i word screeningVBG9vNN9v?i-1 tag+i word VBP dippedJJV-VBDV-?i+1 word leatherJJS?NNSi-1 suffix ifyPDTS㥛JJS㥛?RB rIN r?i-2 word potpourriNNS+?NN+i+2 word struggleJJ㥛 ?VBG?JJRL7A`NNd;Oi+2 word kuiperNNFxNNPFx?i-1 tag+i word VBD openingVBGrh|?JJrh|i-1 tag+i word `` bugsVBK7ANNS/$?JJx&1i+2 word journalistRBףp= INףp= ?i-1 tag+i word JJ airborneJJOn?NNOni-1 tag+i word DT carelessJJ1Zd?NN1Zdi word invisibleJJ= ףp=?NN= ףp=i-1 tag+i word IN totalJJ!rh?NN!rhi+1 word preferredVBFx?VBPd;OVBG(\JJ7A`@NNy&1i+1 word happensWDT rhWP rh?i-1 tag+i word DT alienNN ףp= @JJ ףp= "i-1 tag+i word -START- republicansVBZA`"ۿNNPS@NNSK7NNP(\i+1 word swissJJMbX9?VBNv/NNtVֿVBDʡE?i-2 word vacatingNNS-?NN-i word previouslyNNPQRB~jt@NNX9vINRQؿ i word vastNNS333333RB/$NN{GzNNPףp= JJ`"y@i-1 tag+i word NN somewhereNNbX9޿VBZh|?5RB? i word coupeNNS~jtNN~jt?i+1 word slowdownVBGMbVBN?5^I JJV-?i+1 word suppliesNN'1Z?JJR'1ZJJ7A`?VBNS?i-1 tag+i word IN leadingVBG~jt?JJ~jtȿi-2 word injectNNK7NNPClJJx&1?i-1 word assetJJd;O@VBGPnRBZd;NNZd;Oݿi-1 tag+i word DT biologicalJJS㥫?NNS㥫i-1 tag+i word IN supermarketsVBZ~jtNNS~jt?i word clothiersNNPS+ۿNNP+?i+1 word purchaseVBNRQ?JJ~jt?NNSffffffֿNNPx&?NNoʡJJR;On?RBR;OnVBP/$i+2 word marketWDT|?5^NN!rhNNSm?VBx&1?CD"~jVBP/$VBZV-@WRBI +PDT rhJJR~jth?VBG$@FWK7DT r@RP(\¿RBףp= ?NNP/$ RBR/$IN)\(?VBN~jtJJJ +?VBDI +ֿPOSrh|?CCp= ףRBSlҿNNPSK7A`?i-1 tag+i word , benefitCCX9vVBP)\(NNCl?JJL7A`i+2 word wouldWDTv?RBd;ORBRMbX9NNPS rCD-ƿVBG)\(VBN|?5^@VBP-JJMbX9@PRP ףp= ?NNS)\(?RBSq= ףpJJRtV?VBD7A`VBZx&?DT5^I ?NNoʡ@FW/$ÿCCOnӿJJSX9v@NNPQοVB`"IN(\@i-2 word flashesNNZd;?RBKJJʡE޿i-1 tag+i word POS wackyNNˡEJJˡE?i-1 tag+i word NNS broadlyVBPvRBv?i+2 word ceaselesslyNNPSQNNSQ?i-1 word mammothVBGjtֿNNjt?i word underpinnedJJNbX9VBNNbX9?i word benchmarkNNPGzǿNN?5^I ?RBSX9vRBRA`"VBP~jtJJCl?i+1 word cripplingIN%C?RBR1ZdRB%CJJR1Zd?i+1 word mediaJJ!rh?NNP!rhi-1 word takeover NNSK7?VBS㥛VBG~jt@NNI +?VBN rhJJX9vRB|?5^VBDQVBZ(\i-2 word hiredNNPS}?5^I?JJV-?NNV-NNP}?5^Ii-1 tag+i word `` fairJJ rh?NN rhi+1 word director VBZ/$޿VBGA`"?NNtVRBClǿINK7NNSl?NNPn@JJxVBD-ƿPOSV-?VBPzGi-1 tag+i word NN defaultsNNS333333?NN333333i-1 tag+i word NNS streamedVBN7A`VBD7A`? i suffix witVB%CNN%C? i-2 word manyVBG5^I ?NNPnVBNKCDX9v?INZd;VB`"RB|?5^ڿRP r?DTRQ @VBZMbXNNPZd;OݿNNSx&1@JJGz?VBD{Gzt?VBPJ +?WDTli-2 word universalNNS(\NN(\?i-1 tag+i word -START- revenueVB333333NN@RB333333JJClNNPoʡ i-2 word fastVBZENNSJ +RB+?JJ(\NNP(\?i+2 word buildersJJGz@VBNh|?5NNuVi-1 tag+i word NN maybellineNNPM?NNMi-1 tag+i word , budgetedVBN9v?VBD9vi-1 suffix tvsVBZm?VBNFx?RBmVBDFx i suffix ggyJJm@NNmi-2 word rustlingsVBG-?JJ-i+2 word reactionsNNS rVBZ r?i-1 tag+i word -START- plansNNPS!rhܿNNS!rh? i suffix aul VBy&1@NNS?VBPQJJK7AؿNNP-?VBD+PDT(\PRP$-NNS333333i-2 word duringVBGq= ףpNNS㥛VBNV-?CD^I +?JJMbX?NNS7A`?NNP'1Z?NNPSS i+2 word trimVBNʡEJJʡE?i word orderedVBNZd;OǿJJ~jtVBDy&1? i word knocksVBPSVBDB`"VBZZd;?i-2 word registerDT+NNK7VBNw/VBx&@JJSK? i word rocketNNZd;?JJZd;߿i-2 word performVBGV-?JJSNN/$i-1 tag+i word NN milkNNSZd;ONNZd;O?i-2 word clothesNNS\(\VBN^I +RB +VBDGz?VBZNbX9?i-1 word restartedPRP$T㥛 PRPT㥛 ? i word basinNNʡENNPʡE? i word comicNNSSRB= ףp=NN ףp= ?VBNHzGJJZd;O @ i word greekJJMb@NNPMbi-1 tag+i word IN ideologiesNNSn?JJni-1 tag+i word CC violenceNN~jt?RBFxJJGz i suffix eloNNP'1Z?VB'1Z i suffix serDTzGVBGS㥛ĿFWJJRjt@VBZV-NNS"~ NNPCl@RBsh|??JJB`"[INDlCCq= ףpRBR/$@VBNoʡVBh|?5NNsh|??VBPGzi-1 tag+i word JJ bureaucraticJJ rh?NN rhi-1 tag+i word NN lateNN{GzJJp= ף?VB|?5^RBDl@i+2 word judicialDTSWDTMbX9?INDlѿi+1 word proposesNN\(\?JJ\(\i-1 suffix egeNNS'1Z?NNPd;O?NNQſVBDx&1ȿVBNS㥛?JJh|?5VBZ'1ZDTd;Oi-1 tag+i word JJ britishJJX9v@NNPX9vi-1 tag+i word NNP maleNNʡE?NNPʡEi-1 word units JJ5^I INV-?VB\(\?VBG?NNQVBNSVBP;On?WDTZd;?VBDx&1@DTZd;NNPB`"i-1 word coincidenceWDT/$IN/$?i-1 tag+i word DT niceNNp= ףJJp= ף?i+2 word chargedNNSMbX9?NNL7A`?JJ$CNNPK7A`i+1 word felledVB\(\NN/$@JJoʡNNPK7? i word billNNS= ףp=NNS?NNPK7i+2 word surrenderRBR(\пNN(\?i word biosciencesNNPSCl?NNSmNNP+ۿ i word whereWRB%C@RB7A`EXy&1JJ1ZdINʡENNPClMDni+2 word obtainNN rJJjt?INX9v?VBZ^I +߿DTX9vNNSx&1?VB?NNPS(\пi-1 tag+i word RBS senseNNNbX9?JJNbX9i+2 word challengeVBZxPOSx@i-1 tag+i word VBG casinoNN%C?JJ%Ci-1 tag+i word PRP graduatedVBDGz?VBZGzi-1 tag+i word CC incentiveNNQ?JJQi-1 word utilityNNS!rh?NNP^I +?NNPSK7VBG-NNRQ?VBPjtƿ i word sriRBףp= NNPףp= ? i+1 word sizeNN9v?WDTnJJh|?5?INffffffDTjt?NNP5^I i-1 tag+i word DT upstreamJJffffff?NNffffffi word himselfNNPSClPRP?NNPT㥛 п i word coldRB~jtVBNjtJJS㥛 @NNPd;O?NN㥛 i-1 tag+i word CD shipsNN|?5^NNS|?5^?i word innocentsNNPS1ZdNNS1Zd?i-1 tag+i word IN experiencedVBD-JJ%C?VBNV-?NNFxѿi-1 word bureaucratNNS+VBZ+?i-1 tag+i word `` noUHx?JJ}?5^IԿNNPQտDTʡERB? i-1 word theyVBP㥛 @JJ^I +INV-RPjt޿JJRʡE޿RBGz?RBRʡE?NNSZd;OVBNClDTZd;?VBS㥛ĿVBDw/ @VBZNbX9VBGK7A`NNףp= MD~jt?RBSv/?i-1 tag+i word IN intermissionNN+?IN+i+2 word streakNNV-?JJV-i-2 word primeNNPK7?JJK7 i suffix ewyJJjt?NNjti-1 tag+i word RB furtherJJ}?5^IRBw/?RBR/$?i-1 tag+i word DT influentialJJCl?NNCl˿i-1 tag+i word NN serialNN(\?JJ(\i-1 suffix ugeNNPS;OnVBGL7A`?JJx&1NN ףp= ?RBOnNNSI +?NNP;On? i+1 word luisNNP|?5^?JJ|?5^i word concordNNSNNPS? i suffix lks NN&1VBNKRB+NNPuVJJ'1ZVBDx&EXffffffֿVBZNbX9@NNS@$@i-1 tag+i word NNP registerNNPSV-߿NNPV-?i-1 tag+i word '' marthaJJX9vNNPX9v?i-1 tag+i word RB disagreeVB+?JJ+i-1 tag+i word `` onePRPjtNNMbX9CDA`"@i+2 word amenableVBRB? i word royalNNPSKNNPK?i word northernNN"~ڿJJ"~? i word biteNNS1ZdNN1Zd?i-2 word fibersJJ;OnҿVBPʡE?NN;On?JJRʡE i-1 word dullNNA`"?JJVBGy&1i-1 tag+i word VBZ eastwardRBm?NNmi+2 word juxtaposeVBZxNNS r@VBD+i+1 word sillyVBuV?VBP&1ڿNNA`"˿VBDʡE i suffix rghJJffffffNN"~jԿNNPM?i-1 tag+i word TO proveVBQ?NNQi word proclaimVBGz?VBPsh|?NNSffffffNNQi-1 tag+i word CC invokesVBL7A`VBDzGVBZZd;O?i-1 word containJJtV?NNtVi+2 word trickyVB1Zd?RBClINzGi-1 tag+i word IN bordenJJZd;ONNPZd;O?i-2 word receiptsRBR/$?RB/$i+2 word coordinateNNffffffNNPffffff? i+1 word dueNNP+NNPSZd;ORBQNN'1Z?JJK7VBZ~jtNNSV- @i-1 tag+i word JJ favorNNMbVBP}?5^I?NNSB`"VBN"~i+2 word clothingNNx&1?RBx&1i+1 word generationsVBT㥛 JJT㥛 ?i+1 suffix iftNNPS"~?NN/$VBN`"?JJ!rh?NNPK7 i+2 word away NNSſVBPK?IN~jtNNPʡEVB~jtVBG&1ʿNNS(\?JJoʡ?RP~jt?VBZ(\i-1 tag+i word CC disappearedVBNQVBDQ?i-1 tag+i word VBZ makeVBS㥛?VBPS㥛i-1 tag+i word NN besidesNNSףp= INףp= ?i-1 tag+i word IN bourseFWMb?NNPMbi-1 suffix tesVBZ\(\RBR%C?EXGz?INh|?5 @VBNClVBP1Zd @WP rh?DTZd;O@NNX9v PRPffffff?VB VBGtV?VBDK7A?JJh|?5?RP1Zd?RBQ?NNPSClJJSClPRP$K7WDTKNNSCl?NNPbX9ֿCCRQJJRMbi-1 suffix borNNK7VBDp= ף?VBPQ?JJMbX9VBZzGNNSZd;?NNPMb?NNPSMbi-1 tag+i word DT newspapersNNPS^I +NNS^I +?i word albuquerqueNNPSףp= ӿNNPףp= ?i-1 tag+i word PRP drawsVBZNbX9?VBDNbX9i+2 word bomberJJ/$NNP/$?i-1 tag+i word JJ reportNNHzGVBPHzG?i-1 tag+i word NNS ignoreVBP#~j?RB`"INQi-1 tag+i word NN titansVBZx&1ܿNNSx&1?i word receiptsNNPT㥛 VBZvNNPSS㥛?NNSCl?NN(\ڿi-1 tag+i word NN furtherRB!rh?NNSzGNNnJJ`"?RBR&1@i+2 word requirementVBGT㥛 NNT㥛 ?i-2 word kingsVBA`"?VBGA`"i+2 word franchiseVB㥛 ?VBP㥛 JJ^I +?NNP^I +߿i-1 word crossNNS?5^I ?CD?5^I i-1 word teamVB7A`?RP/$NN"~jVBD?VBN rhտVBP7A`RB/$?i+2 word spinoffNNSZd;׿NNPZd;?i word stimulantNNGz?JJGzi word tellingVBG9v?JJ ףp= ?NNsh|?i-1 tag+i word VB redeemedVBN|?5^?JJ|?5^i word hamstrungJJ@VBNi-1 tag+i word '' asksVBZ-?VBD-i+1 word crosslandRBRQINRQ?i-1 tag+i word -START- soloJJK7A`@RBA`"ۿNNMbXٿNNPV-i-1 tag+i word NN movedNNʡEVBDʡE?i word restrictVBZuVVB(\@VBPQݿVBD9vi-1 tag+i word '' keptVBDMbXVBN333333@INMbX9ܿi tag+i-2 tag RBS DT VB ףp= NNClPOS/$?VBPPnRBV-?NNPZd;O?VBG(\ JJoʡ@VBNZd;O?i-1 tag+i word VBG excitedVBNd;OJJCl?VBDjti+1 word levels IN"~?VBGV-NN!rhm@VBDS㥛JJS㥛?VBZ9vNNPSVB rhJJR +?RBRnVBN(\?i-2 word turtleRBZd;NNPZd;?i+1 word loose VB"~j?NNd;OVBDm?DT(\NNSRQNNPSn?JJRʡEۿVBPPnNNP"~i-1 tag+i word TO belowVB|?5^IN|?5^?i+1 word triesNNSNNPS?i-1 tag+i word POS unsettledVBNjtJJjt?!i-1 tag+i word -START- charactersNNPSQNNSQ? i suffix ozyNN7A`JJ7A`? i suffix rugNNPSSӿNNSClNNv߿JJL7A`@NNP&1i+2 word disquietingNNx&1VBZGzVBPףp= ?i-2 word shiftJJ rh@NNS9vNNP)\(VBGx&1ȿNN333333VBDZd;O?VBNZd;O i+1 suffix dNNPSMbXNNSOnNNPh|?5?i+2 word commercialsJJ`"?NN`"i-1 tag+i word JJ drippingNN ףp= ߿VBG ףp= ?i-1 tag+i word NNS staffsNNSMbX?NNMbXi+2 word c.i.fNNQ?JJx&VBDSi word cowardlyJJ1Zd?RB1Zdi-1 tag+i word -START- nihJJKNNPK? i-2 tag UH JJR"~?DT!rh?NNSVB)\(?RBR"~VBD= ףp=?WDT!rh̿VBN= ףp=RBnVBZʡEUHM?JJ r@NNjti-1 tag+i word IN creditorNN(\?JJ(\i-1 word downtimeNNSoʡVBNoʡ?i-1 tag+i word IN freeingVBG?NNԿi-1 word their VBG rh RBT㥛 NNsh|?@VBDjtJJS(\?RBS!rhVBN~jt?NNPSjt?NNS rh?JJR/$?NNP+JJS?i-2 word payoutsNNףp= NNSףp= ?i-1 tag+i word WRB wellVBL7A`UH rhRB^I +?i-1 word discussPRP$n?PRPni word unauthorizedVBNZd;߿JJZd;?i+2 word rumpledNNSZd;ONNZd;O?i+1 word upbeatJJS#~j?RBS#~jJJRv׿RBRv?JJ ףp= RB ףp= ?i+1 word francaisJJR~jtNNP~jt?i tag+i-2 tag RBS PRPJJRQVBv/VBPv/?RBRQ?i-1 word secretJJMbXNNP(\NNʡE?i-1 tag+i word VBG oversoldNN?5^I VBN(\?JJ~jti-2 word phasingVBNMbX9?JJMbX9i-1 tag+i word DT governmentalJJOnۿNNPOn?i-1 tag+i word DT longtimeNNSClJJ9v?NN rh?i-1 tag+i word JJ awayRBCl?NN rhRPv/?i-1 tag+i word CD breastJJS㥛NNSX9vֿNN?i word nowadaysNNS&1RBGz@NNT㥛 i word midcontinentJJ?5^I ?NN?5^I i-1 tag+i word PRP$ controllingVBGx?NNxi-1 word hybridNNS r?VBNV-NNQٿi-1 tag+i word NNP repliedVBZx&1VBDx&1?i-1 tag+i word -START- epoNNPV-?NNSV-i-1 tag+i word `` mostJJS/$?RBS/$i-1 tag+i word IN swissNNPS^I +JJ)\(NNPDl?i-2 word anticipatedWDT`"NN"~?JJ"~INI +DTn@i word uncommonVBP= ףp=JJ= ףp=? i suffix SALNNʡE?NNPʡEi tag+i-2 tag NNP ( RBT㥛 ?NNP1Zd?NNPSQNNGzFW9vҿVBPtV?INy&1VBZp= ף?NNSʡE?VBtVJJv?i-1 tag+i word ( sellVB`"?JJRlNNMbPi-1 word vegasVBZp= ףVB +?NNSxJJ333333?NNOni-1 tag+i word VBZ shortRBB`"?JJffffffJJR +ֿi-1 tag+i word RB unifiedVBNsh|?@JJsh|? i word trustsVBGzNNSGz?i-1 word fruitfulNN/$?NNS/$i word checkoffNNsh|??NNPsh|? i word bonusNN^I +?JJ^I +׿i-2 word hornsVBZ$CVBʡEVBP rh?NNjti-1 tag+i word VBP tapingVBGNN?i+1 word requirementsVBGuV RPMbNN@JJʡE?INi-1 tag+i word -START- rmiNNMNNPM?i word enjoinedVBN|?5^?JJ|?5^i-1 suffix sfeNNSlNNPd;ONNPS ףp= @i-1 tag+i word , translatedVBN-?VBD-i-1 word storeINMbX9?WDTMbX9NNCl?RBCli+1 word moviesJJRGz?JJQ޿NNPGzNNp= ףؿi-1 tag+i word PRP$ victoryNNM?JJMi word bottlingVBGA`"@JJ rNNm i-2 word s.c.VBZNbX9NNNbX9?i-1 tag+i word CC recognizablyRBzG?JJzGi-1 tag+i word VB disputedVBNtVJJtV? i suffix 944CD~jt?NNP~jti-1 suffix isiNNPS5^I NNSQNNPX9v? i word vestsNNS|?5^?NN|?5^ i word policeJJ㥛 NNOnVBDGzRBFxNNSʡE6@NNPMbؿi+2 word brancaNNZd;O?VBNV-߿JJZd;OݿVBDV-?i-1 tag+i word RB laterRBROn?NNuVJJRSݿRB/$? i word urgesVBZV-?NNSV- i+2 word spedNNL7A`?RBL7A`i+2 word joltsJJNbX9?NNNbX9i-2 word exodusNNS㥛?JJS㥛 i word phonesNNSA`"?NNA`"i-1 word stevensonNNPS^I +?NNP^I +i-2 word juniorVBZ'1Z?NN'1Zi-1 tag+i word VBZ plentyVBNQNNQ?i-1 tag+i word RB vaguelyRB?VBNi-1 tag+i word IN splitsVBZCl?NNSClۿi+2 word mutationVBNCl߿VBDCl?i+1 word visiblyDTd;OοPDT)\(RBCl?i-1 tag+i word POS leastRBSJ +?JJS +JJZd;OͿi-1 word bulletJJV-INV-?i-1 word barriersVBP;On?WDTV-?RB;OnINV-i-2 word attentionVB7A`NNuVVBD+VBNL7A`?JJ/$@NNS1Zd?i-1 word warmlyVBN~jthJJnVBDS?i-1 word illinoisVBD +?NNx&1NNP/$?i-1 tag+i word NNP nekoosaNNV-NNPV-?i-2 word studiesNNPSzG?NNQۿVBP-?INˡE?VBZvDTˡENNPzGVB9vi-1 tag+i word DT p53NNv/?JJv/i word activateVBPV-@JJSNN/$i+2 word aggressivelyVBZx& @VBGzG?POS{GzJJzGNNSMbXi-2 word suppliersVBGsh|?NNsh|??i-1 tag+i word NNS churnVBPv?RBvi+1 word applicationVBuVJJuV?i-1 tag+i word TO persistentVBףp= JJףp= ?i+2 word lotteryVBGGz?JJGz׿i-1 tag+i word NNP piersNNPSSNNPS?i-1 tag+i word , suchVBD+JJV-@PDTy&1?NNsh|?RBEi word arithmeticNN{Gz?JJ{GzԿi-1 tag+i word NNP classVBP&1ڿNNK7?NNP;On?i-1 tag+i word JJ moneyNNSsh|?NN}?5^I?NNPQ?i-1 tag+i word CC darkVB-JJB`"?NNp= ףi+2 word vaccineVBG rJJʡE?NN~jti word soothingJJ&1?NNMbX9VBG i+2 word ?VBP rhJJRQ롿NN rh?PDT+?POS+DTZd;@VB;On@NNPSx&1пRP rhTO㥛 ?WDTףp= ۿRBMbNNPFxVBG ףp= @JJV-VBNx?VBDq= ףpտIN#~j?i-1 word macintoshVBDClVBNMbX9?NNX9vi+1 suffix dleVBNZd;ORBR5^I @RBGzCD rhݿVBG'1Z?JJNbX9NN~jtÿVBDV-?i+2 word determinationPDTSJJS?i+1 suffix ibeVBD +?NNPS%CVBN +NNP%C? i word s&lNN(\@JJsh|?NNP#~jNNPSOni-2 word floatingVBZlNNSl?WDT|?5^IN|?5^?i word obligationsNNV-NNPS(\NNS}?5^I?i-2 word philosophicNNSnFWn?i-1 tag+i word IN fundingVBG}?5^INN}?5^I?i-1 tag+i word RB dawnsVBZ(\?VBD(\i-1 tag+i word NNS addictedVBNV-?JJV-i-1 tag+i word , providedVBT㥛 VBN~jt?VBD ri-1 tag+i word IN combinedVBN?5^I JJ?5^I ?i-1 tag+i word RB outstripsVBPIN rVBZS㥛?i-2 word emergenceJJZd;O?NNPZd;Oi-1 tag+i word PDT haveVB-VBP-?i-2 word campanerisRBV-?CDV-i-2 word recaptureINOn?RBOni-1 word imposeJJy&1?NNy&1i-1 word deservesJJRZd;?JJh|?5?RBR5^I ۿi-1 tag+i word DT museumNNQ?VBNtVJJCli-2 word patientVBrh|JJrh|?i+2 word jackingVBD9v?NN9vi-2 word times PDTS?JJ?VBZS㥛?DT+ǿNNSףp= ?NN7A`?RB rhVBDʡE?CC~jtVBNZd;POS rhCDQVBV-¿i-1 tag+i word NNP claimantsVBZ rhNNPS!rh?NNS rh?NNP!rh i-1 word feNNPSOnVBGB`"NN(\?JJ rhINS㥛?VBZZd;O?NNSZd;Oi-1 tag+i word VB secureVBMb?RBMb i word belloNN{GzNNP{Gz?i-1 tag+i word NN compositesVBZMbNNSMb?i-1 word visibleVBGtV?NNZd;OJJK7?i-1 tag+i word -START- americanCCZd;RB-JJB`"[NNPZd;@i word kickbacksNNSQ?NNQi-1 word hurriedlyVBNrh|?JJrh|׿i+1 word estimatesNNS?JJMbؿNNPFxNNSoʡi-1 tag+i word -START- searleNNSy&1NNPy&1?i-2 word groupVBDn?IN-?RBZd;O?PRPSNNGzRBROnVBNI +?JJROn?NNPFx?RPENNPS"~jVBPPn?JJA`" VBZMbX@NNSsh|?VBxi-1 tag+i word JJ novelsNNS;On?JJ;Oni-1 tag+i word CD groceryNNSZd;ONNZd;O?i-1 tag+i word JJ ignoringVBGQ?JJQi word psychicVBZ-JJ-?i-1 tag+i word , actsVBZK7?NNSuVJJnڿi word attunedJJ333333?RBClVBNh|?5i-1 tag+i word NNP estimateVBPq= ףp?VBq= ףpi-1 tag+i word VBZ increasedVBN!rh?JJ!rhԿi-1 tag+i word `` ballyNNNNP?i-1 tag+i word JJ protestantsNNPSB`"?NNPB`"i-1 tag+i word TO earlyVBjtJJjt?i-1 tag+i word NN succeedingVBG"~?NN"~ i suffix won NNSnѿJJK7NNK7AVBPzGVBZ333333INףp= VBZd;OVBD/$@VBN/$ @RBZd;i+1 word marketerJJT㥛 ?NNT㥛 i+2 word votesJJh|?5?NNh|?5i tag+i-2 tag NNP WPVBZjt?NNPSx?NNPQVBNh|?5VBDh|?5?i-2 word insureJJV-@RBʡENNP333333i-1 tag+i word -START- wernerRBSS㥛NNPS㥛?i-2 word shockRPoʡݿINoʡ?i+2 word schimbergNNP`"NN`"?i-1 tag+i word IN youthNNSK7AؿNNjt?JJjti word burglaryNNS@JJSi-1 tag+i word : ivernJJ= ףp=NNP= ףp=?i+1 word creditJJ'1ZܿNNP7A`?VBNv/?VBP{Gz?DTx&1?IN9vJJRh|?5?NNq= ףpWPGz޿VBCl?VBG&1?VBZ&1ڿNNPS`"RBCli word genericJJQ?NNQ i+2 word deadVBG#~jJJ ףp= @NNMbXi-1 tag+i word IN flashesVBPKNNSK? i word majorsNNSCl?NNCl i suffix miaVB)\(NNSNbX9NN/$@JJPn i-1 word onesVBPbX9RBS +RB7A`?i-1 tag+i word NN beatVBv?NN333333VBDMb?VBP~jt?RBClIN-޿i+1 word eurodollarsCDZd;JJjt?RB?5^I @NNP^I +VBZsh|?i-1 tag+i word NN evenNN|?5^JJNbX9VBNZd;ORB= ףp= @NNS~jt i word redoneUHʡENNS?CDy&1i-2 word foreverJJS?NNQVBDbX9VBNQ?RBp= ףؿNNSZd;Oi-2 word lubricantVBDlٿNNZd;O?JJv/ i word birdsNNS#~j?NN#~ji-1 word desperatelyVBP"~?VBNjtVBDjt?VB"~i+1 word degolJJ|?5^NNP|?5^?i-1 tag+i word RB threeNNPMbX?CDMbXi-1 word trailerNNS+NN+?i-1 tag+i word JJ vigorNNSV-NNV-?i-2 word scottishVBDd;O?NNPDl?VBNd;ONNDli-1 word barberNNV-NNSV-?i+2 word takeoffNNSQRBQ?i-1 tag+i word CD upRP1ZdRB1Zd?i-1 tag+i word VBG beneathVBjtRP)\(ܿIN?5^I ?i-1 tag+i word RBR emphasisVBMbXNNMbX?i word harcourtVB/$ӿNNP/$?i word americanRB-IN~jtNNSNNP|?5^?VB-JJClg@NN&1CCZd;i+1 word leaksJJRMbX9?RBRMbX9 i word neededVBP}?5^IVBN rh@RBMҿVBD= ףp=ʿJJA`" i-1 tag+i word , nonethelessRBS?JJSi-1 word cultureFWjt?WDT;On?JJoʡIN;OnRB+NN rh?i-1 tag+i word TO buildVB +?JJ/$NNPZd;Oi-1 word protestersVBP!rh?VBD!rh i word lesNNS~jtJJRףp= FWGz@i+2 word kraterJJv/?VBNtVNNx&1i-2 word fossilsPDTV-?JJV-i-1 tag+i word JJR munisNNSFx?JJw/NNMbX9ܿi-1 tag+i word NN shackNN9vڿNNP9v?i-1 tag+i word DT hostDTv/NNv/?i-1 tag+i word JJ maneuveringVBGMbX9NNMbX9?i-1 tag+i word PRP imaginedVBDffffff?VBNffffffi-1 tag+i word DT filipinosNNK7NNP;OnNNPS;On@NNSSi word solitaryJJl?NNl i word porterNNSX9vNNPX9v? i word jarsNNSK7A`?NNK7A`i-1 tag+i word IN psNN~jtNNP~jt?i-1 tag+i word NN soxNNClNNPSCl?i+2 word superiorVBK7?VBPK7 i-1 word axaVBZ|?5^?NNS|?5^i+2 word quickerJJR^I +?NN^I +i+1 suffix tolVBGmJJm?i-1 word conditionVBZMbVBPOn?NN ףp= ǿi-1 word tandemNNPS(\?NNP(\ i-2 tag RPRBRףp= IN^I +?VBP'1ZWDTRQпDTZd;RBS9vNN ףp= ?RBGz?NNSv?NNPSn?VBG"~j?VBDL7A` VBZ#~jĿRP$C?JJSX9vCCbX9޿VBNffffff$ rhNNPZd;?VBK7A`?JJ ףp= ?PDT#~j?JJRQ?i-1 tag+i word NNP uponVBZK7A`տINsh|??NNP+i+1 word descriptionsJJS?NNSi+2 word bostonNNPSQ?JJ-?NN-NNPQοi-1 tag+i word PRP sprinkleVBDMbXVBPMbX?i-1 word repurchasingVB/$JJ/$?i-1 tag+i word NNP awardNNbX9?RBbX9i-1 tag+i word POS dawdlingVBG|?5^?NN|?5^i+2 word saturdayVBQRB+?NNMbX9VBD?JJZd;׿NNSHzGi word gossnabNNPl?CDli-2 word vulnerableVBK7JJK7? i word rocksNNS~jt?NN~jti+1 word espreNNbX9NNPbX9?i+2 word spiritedVBZtV?NNPSZd;ONNPQ i-1 suffix heVBI +@NNoʡMDsh|?@NNS-DTZd;ORBRrh|VBPx&1 JJPOSʡE?RB= ףp=?VBD(\@VBNZd;IN ףp= VBZV@NNPSGzi word proposalNNzG?NNPzGi-1 tag+i word NN lovelyJJrh|?RBrh|׿ i word formsNNSZd;?JJOnNN1Zdi-1 word depressingJJ= ףp=?NN= ףp=i-1 tag+i word IN accessoriesJJZd;ONNPZd;O?i-1 tag+i word PRP$ backRBx?NNxƿi+2 word developersRB333333?WDTLSp= ףNN ףp= IN? i+2 word usxNNffffffVBDffffff? i-1 word cultNNMbX9NNPMbX9?i-1 suffix evaNNQ?NNPQi word occupancyNN#~j?JJ#~jĿi-2 word historiansJJS|?5^?VBPbX9?RBS|?5^ѿINbX9ֿi-1 tag+i word CD alongNNMbXINMbX? i suffix askVBDʡEVBP= ףp=?JJK7INq= ףpNNSDlVBS@RB1ZdNNK7@i-1 tag+i word DT mouthsNNSDl?JJSDli-1 word higherJJL7A`ؿIN"~?NNSp= ףVBGrh|RB#~jNN%C?VBP|?5^i+1 word debutPRP$Q?PRPQJJV-?VBNV-տi-2 word missionVBN ףp= ?JJlNNPv/?i-1 word electionNNSd;OVBZd;O?i-1 word barteringRPA`"RBA`"?i-2 word payableCDtV?NNPtV i suffix USSJJrh|NNPrh|?i-1 tag+i word NN cocaJJDlNNDl?i-1 tag+i word PRP plansVBDJ +VBZ/$?NNSS㥛"i-1 tag+i word -START- speculativeJJ"~j?NNP"~ji-1 tag+i word CC offeredVBN ףp= ?JJ(\VBDp= ףi word extendsVBZDl?VB7A`RB?5^I ¿i tag+i-2 tag RBR NNRBMb?VBGA`"˿NNjt?JJd;OIN +i-1 tag+i word VBD recordNNCl?JJ\(\ϿVBNT㥛 ؿi+1 word expiresRB/$?VB/$i-1 tag+i word VBN announcedVBNGz?VBDGzi-1 tag+i word PRP$ dataNNS rh?NN rh i suffix 0thJJS%@NNy&1CDNNS)\(Կi-1 suffix immVBNv/VBDv/?i-2 word linkedVB7A`JJoʡ?NNP?i-1 tag+i word `` cheapJJI +?NNI +i-1 tag+i word TO reinforceVBh|?5?NNh|?5i+1 suffix xes VB333333?NNPףp= NNMbX@RBRFxJJRT㥛 ?JJ"~jIN(\?VBGRPV-RBDlNNS5^I i+2 word scareJJRQ?NNPRQi-2 word noticiasNNRQؿNNPRQ?i+1 word cocotteJJʡE?NNʡEi-1 word olympicsNNd;O?VBDd;Oi-1 word businesslikeNNS\(\NN\(\? i-1 suffix laNNPS^I +߿NNSʡENNGzNNPS㥛?FWGz?i-1 tag+i word CC membersNNSE?NNPE i word pastryNNX9v?VBNʡEJJK7i word reachingVBG&1?JJףp= NN rhi-1 tag+i word DT vitalJJ/$?NN/$i+1 suffix clyVBDQ?NN?VBNQJJi-1 tag+i word CC mitigateNNEVBE? i word huhNN= ףp=NNP= ףp=? i suffix RMSNNPnNNPSlNNSp= ף@i-1 tag+i word JJ bentNN;On?JJ;Oni-1 word rumblingsWDTClINCl?i-1 tag+i word JJ turfNNSGzNNGz? i suffix PutWRBK7NNbX9?VBD&1@PDTSVBNmNNS!rhܿNNPh|?5 VB㥛 ?i+2 word tasksDT-?VBQNNʡEPDT-VBP^I +?VBZ;On i+2 word humVBG= ףp=?NNS$CJJK7 i+2 word n.y.NNbX9NNPbX9? i word widerRBR!rh?VBPKJJR?NNd;Oi-1 tag+i word NN militaryNN`"ֿJJ`"?i-1 tag+i word RB forecastVBQ@VBPx&JJSS˿NNS?VBDw/ i+1 word daysNNT㥛 CDCl?RBzGNNP$CۿVBG}?5^IJJL7A`e@ i word dealerVBPQNN1Zd?JJ$Ci-1 tag+i word DT flowNNh|?5?JJh|?5i-1 tag+i word DT deeperJJRS?NNSi-2 word legitimateVBGMbX9JJZd;?VBDK7?i-1 tag+i word JJ advertRB= ףp=NN= ףp=? i word upsideRBMbX?INjt޿NN rh?JJZd;Oi-1 tag+i word VBZ prevailVBPV-?NNV-i+1 word largely RPZd;?NNtV?VBN{Gz @VBPtVRBZd;ϿJJRzGVBZ?NNSԿJJ+VBDI +RBRzG?i+2 word graciouslyNNP ףp= ?NNPS ףp= i-1 tag+i word DT postNNZd;?VBN333333JJ i word baa3NNPSMbXJJPn@NNP'1Zi-1 tag+i word IN atticJJ%C?NNP%Ci word realisticJJS㥛?NNS㥛i-1 word politburoNN}?5^I?VBD}?5^Ii+1 word youngerRB7A`?IN7A`i+1 word shockNNʡE?VBNx&1?JJ;OnNNP^I +i word crossroadsNNS/$?NN/$i+1 word propagandistsJJ ףp= NN ףp= ?i-1 tag+i word DT toughestJJS/$?NN/$i-2 word decidingVBZ= ףp=NNS= ףp=?i+2 word doubtsNNST㥛 ?NN(\?JJ(\VBZT㥛 i-1 tag+i word NN footstepsVBZ/$NNS/$?i+1 word standard VBD;OnVBN+η?JJ/$ @DTHzGѿVBPn@NNX9vINHzG?NNP/$FWq= ףpͿVBPS㥛ؿi word withoutINZd;O@WRB?5^I RB/$NNP/$i-1 word utterlyJJFxVBDV-?VBNli-1 tag+i word NNP objectedVBNjtVBDjt?i-1 tag+i word VB droppedRP(\VBN/$VBDDl@i-1 tag+i word ) lookedVBN(\VBD(\?i word managersNNP~jtVBZ+NNPS/$?NNSK7?i-1 tag+i word DT brazilianJJn?NNPni-1 tag+i word NNP tapsVBZHzG?NNPHzGi-1 tag+i word VBZ merelyRBS?JJSi-1 tag+i word VBG marineNNp= ף?JJp= ףi+2 word choiceVBS㥛VBPS㥛?RBʡEINʡE?i-1 suffix ebtVBDX9vRBR㥛 ?VBPGz߿VBZK?CDV-?NNPS(\VBGPnRB㥛 JJjtNNS/$VBNM@VBq= ףpNNRQ@INJ +?i word announceVBI +?VBPrh|?NNDlRBK7i-1 suffix kusNNX9vNNPX9v?i-1 tag+i word , shortlyRBq= ףp?VBNq= ףpi+2 word investigationsNNSZd;NNZd;?i-1 suffix lot NNSK?VBT㥛 пVBDClRBRn?JJRʡE@WDTZd;ONNFxVBPB`"RB%CINGz?VBZKi tag+i-2 tag PRP TODTL7A`INS@WDTzGVBD+ i+1 word termVBGbX9ȶ?JJ+ @NN|?5^VBD`"JJR7A` @RBRB`"RB(\NNPV-i-1 tag+i word IN giantJJE?NNE i-1 word peerRPp= ףINp= ף?i-1 suffix iliNNP-NNPS-? i-1 word panJJK7A`NNPSx&NNPffffffƿVBPuV @i-2 word murderingVBN$C?JJV-ݿVBDGzi-1 tag+i word VB cheaperJJRJ +?JJJ +ٿi-1 word containers''Zd;VBZl?VBPlPOSZd;? i+1 suffix coVBZ{GzNNPS/$@NNQJJNNPK7A`? i-1 word five VBN^I +?JJV-?VBZ&1NNSp= ף @NNPQVBG= ףp=NNtVVBD1ZdIN= ףp=i word butcherJJRԿNN? i-1 word eyesWDT;OnIN;On?i+2 word sympathyVBQ?NN㥛 JJ!rhԿi-1 tag+i word NN statesmenNNSS?VBDSi-2 word fixedEXq= ףp?JJ~jtVBGz޿RBMbNNn?VBPGz?i word centersVBZˡEĿNNPSh|?5 @NNS#~jNNPʡEi-1 tag+i word NN hadNNPSZd;NNSV-NN(\VBDE@ i+1 word fallJJ|?5^@INQVBZ~jtDT\(\RBZd;OͿNN ףp= WDTK7A`?i word displayVBP1Zd?NNSGzNNGz?VBD~jtؿVB"~ i word tiempoNN +NNP +?i-1 tag+i word NNS circuitNNSClNNCl?i word lingeringNNh|?5VBG"~?JJvi word unprecedentedVBNK7AJJK7A?i+1 word metromediaJJ\(\?VBDףp= VBNmտi+1 word wheelNN+?IN+i-1 tag+i word NNP networkNN`"NNP`"?i tag+i-2 tag JJR JJINZd;O?RPZd;OݿRB"~j?JJRK?VBPKJJ"~ji-1 tag+i word RB unchartedVBNoʡտJJoʡ?i word utilitiesWRB%CRBlJJxVBZGzNNSL7A`?NNPI +?VBxNNPSoʡ@i-1 tag+i word IN laserNNV-?JJV-i-1 word petersVBPS@WDTNbX9ȿRBZd;OINNbX9?VBZFxNNA`"ۿi-2 word vagueVBNGz?JJGzοi-1 tag+i word RB inflammatoryNNjtVBNjtVBZ9vJJ#~j?i+1 word ethnicJJ%CNNP%C?i-1 tag+i word -START- diedVBD~jtVBN`"?NNPd;Oi-1 tag+i word PRP lookedVBZ(\VBD(\?i+2 word hubbardRB+IN+?i-1 tag+i word NN artificiallyJJDlRBDl?i+2 word generallyNNQ @VBD'1ZVBP9v?RB9vNNSx&1NNP%CVBJ +JJHzG?i+2 word contrastDTffffff޿INffffff?i-1 tag+i word VBG openVBZd;RP?INSi-1 tag+i word CC storageNN%C?JJ%Ci word cascadeNNPS-NNP-?i-1 tag+i word TO chineseVBʡEJJV-?NNPrh|i+1 word higher VBNX9vNNSS˿JJL7A`NN\(\?CC +?WDT㥛 RB;OnINS?VBZQ?DT +VBV-?VBDffffff@VBPZd;i-1 tag+i word NNP brosNNPS(\?NNP(\i+1 word spendDT~jtWDTK7?VBuV?NNuVINB`"i-1 suffix ulaVBZ;On?VBD9vVBN9v?POS;Oni-1 word oldestVB~jtNN~jt?i+1 word heartwiseVBNK7A?VBDK7Ai-1 tag+i word CC neededVBN?JJRQVBDGzi+1 word conceptionsVBvVBPL7A`ؿNNl@JJQi+2 word notingVBD㥛 ?JJRQ?RBNbX9VBNy&1NNRQi-1 tag+i word NN controlledVBN/$?NN/$i-1 tag+i word WDT qualifiesVBZ-?NNS-i-1 tag+i word NNP capacitorsNNPS&1NNP&1?i-2 word likely VBjt@RBSSVBZFxɿNNSFx?VBNCl?RBR"~JJS㥛RPM?RBB`"?NNjt JJSS?i-1 tag+i word DT scantJJ-?NN-i-1 tag+i word IN connoisseurJJʡENNPʡE? i suffix yet VBQJJNN|?5^CCv@RB}?5^I"@NNS#~jNNPSSRPMbX9@VBN333333PRP(\i-1 word criminalNNP +?NNq= ףp?JJI +i-1 tag+i word JJ illustratedVBNClVBDCl?i-1 tag+i word DT bipartisanJJGz@NNGzi-1 word contraryDT`"?NN`"οi-2 word studentsNNV-?VBGz?VBPsh|?NNSffffffJJRMbпi-1 tag+i word , signaledNNPQIN}?5^IܿVBN}?5^I@VBD/$i+2 word ilkkaNN/$ÿNNP/$?i-1 suffix lryVBClNNPSZd;ONNCl?VBZZd;NNS ףp= @NNP#~ji-1 tag+i word NNP outdidVBPmVBDm? i word philoNNPx&?NNx& i word workerNNn @JJ(\NNPlVBCl߿VBPzGi word nuclearNNP/$ֿNNʡE?JJ333333RB%Cܿi-1 tag+i word PRP rememberVBPCl?MDCl i word egoVB/$VBPZd;ONN}?5^I?i-1 tag+i word JJ readerVB+NN+? i suffix 89ANNP7A`@CD7A` i+2 word deal VBNMVBP/$JJ/$?NNPZd;O@VBrh|PDTA`"?UH&1ڿNNPSʡEVBD!rhܿi-2 word dressedNNSX9v?JJX9vi-1 tag+i word IN technologyNNPSx&NNPx&?i-1 word technologicalNNS{GzNN{Gz?i word aflatoxinNN'1Z@NNS/$JJ%CRBSNNPx&1i-1 tag+i word `` committedVBNrh|JJrh|?i-1 tag+i word IN steadyJJ#~j@NN#~ji-1 tag+i word NNP priorRBx&1?NNClJJv/i-2 word smartRBSINS?i-1 word madisonNNPSmNNPm?i-1 tag+i word CC tellVBrh|?VBP㥛 ?RBlVBDZd; i word leavesVBZX9v?VB/$NNSCli-1 tag+i word VBN healthvestNNPZd;?JJSZd;i-1 tag+i word DT playedVBNV-?NNV-ݿi-1 word barrowNNPSv?NNPvi tag+i-2 tag , ) VBZy&1?DTZd;NNS\(\ϿRPˡEܿVBNS㥛пWDTZd;?JJOn?INx&NNPGz?VB~jtRBCl @NN%CVBDFx?i+1 word socialJJR㥛 JJ7A`VBN$C@NNA`"RBR㥛 ? i suffix berMDClJJˡECDoʡNNP= ףp%@NNPS/$RBClVBZVBffffff@NNrh|RBS/$PDTʡEVBDMbJJSV-VBP~jt@NNSjt i-1 tag+i word CC jewsNNP$CNNPS/$?RBˡEi tag+i-2 tag RBS VBZVBNV-NNSCl?JJˡE?RBsh|? i word topicNNy&1?JJZd;OVBx&1i-1 tag+i word `` asRBCl?NNPClѿi-1 tag+i word CD japaneseJJl?NNPl i word trueJJDl@NNx&1ܿNNPRQi word fiveyearJJ+?NN+ӿ i suffix oitJJ`"?NNP/$?NNK7Ai-2 word pleadingsVBClӿNNSCl?i+1 suffix unk JJRy&1@VBZA`"?RB&1NNB`" VBNnʿVBPS?JJ ףp= INtV?NNSA`"VB/$ۿRPRQ?i-1 tag+i word VBN earthlyJJ-?NN-i-1 tag+i word NN preventedVBNS㥛ؿVBDS㥛?i-1 tag+i word PRP$ nearestJJSQ?NNPQi-1 word integratedJJV-?NNV-i-1 tag+i word VBG turnedVBNZd;O?VBDZd;O i word airingVBG1Zd?NN1Zdi+1 word broderickJJA`"NNPA`"?i+1 word chipsNN~jt?RBx&1CDd;OοJJK7?i+1 word peltzNNm@JJT㥛 NNPMbXNNPSI +?JJSxi-1 tag+i word CC prosecutorialJJPn?NNPnؿi+1 word sanitaryNNPS}?5^INNP}?5^I?i-1 tag+i word CC hazelnutVBDGzVBZRQVBK߿NNx@i-2 word hardwareVBˡEVBPˡE?NNSI +VBZI +?i-1 tag+i word NNP unleashesVBZ!rh?VB!rhi-2 word shoesJJS?VBN/$RBx& i word sexyJJ`"?NN`"i-1 tag+i word IN contingencyNNy&1?JJy&1i-1 word midlerNNGzVBDGz?i+2 word microprocessorVBZ&1POS&1?JJRK7RBRK7?i-2 word conductsNNMbX?JJMbX i+2 word best IN~jtVBZ9v?DTxֿVBG{GzRBCl?PDTQݿPRPMb@VBPMbJJQ?VB5^I ?NNˡECCI +?CDMbi-1 tag+i word VB lonelyJJZd;O@RBZd;Oi-1 tag+i word RB allJJzGPDTT㥛 @VBNDlRBx?INDT/$?NNSV- i-1 word agaJJ-FW-NNP-?i-1 tag+i word RB fineVBMbX9JJMbX9?i-1 tag+i word NNS mergeVBPQ?VBDQi-1 tag+i word JJ lienNNB`"?JJB`"i-1 tag+i word TO physicalVBKJJK?i-1 tag+i word CD enthusiastsVBZ+NNS+?i-1 tag+i word VBD claimsVBZmտNNSm?i+1 word dinnerNNS㥛?JJS㥛 i word slapsVBZDl?VBDli-1 tag+i word NNP engagesVBZl?NNSli-2 word duplicateNN ףp= ?JJ ףp= i-1 tag+i word VBP risenVBN9v?JJ9vi+2 word claimVBDx?PDTT㥛 VBNxVBPlJJZd;@VB"~j i-2 word jazzNNjtNNP+?JJjt?VBN+i+1 word precedentJJMb?NNMb i word triple PRPHzGVBMbX9?RBoʡ@NN}?5^IVBP|?5^CCoʡJJRQ@INuVVBZ5^I i word yearlongJJuV?NNPnNNPoʡi-1 tag+i word JJ consecutiveNNZd;OJJZd;O? i word neverRBX9v @NNPQ?VB\(\NN?5^I VBPZd;WDTZd;UH/$i-2 word inventoryVBG7A`NNtV?JJV-?IN`" i-1 tag+i word -START- democratsNNSV- RBMbNNPsh|??VBZS㥛NNPSʡE @i-2 word audiencesVBDMbX?VB+?VBNMbXJJ+i-1 tag+i word RB exceedingVBG^I +?JJ^I +i-1 tag+i word TO securedVBNM?JJd;OֿVBDZd;Oi+1 word austereRBJ +?JJJ +i-1 tag+i word DT ballparksNNSCl?NNCli-1 tag+i word -START- d&bNNE?NNPEi+1 word linedNNm?RBmi+1 word grantedVBrh|?VBPrh|i+2 word cornerNNSn?NNni-2 word debatesVBZMb?NNSMbi-1 tag+i word IN profoundJJ?NNi-1 tag+i word NNS registeredVBN333333?JJʡEVBDl?i-2 word redemptionNNjtNNPjt?i-1 word gardensVBD\(\POS333333?''333333RBNNP333333NNE@i word consolidateVBCl?NNCl˿ i word triesVBZrh|@NNSZd;ONNSi+1 word materialNNS= ףp=JJp= ף?NN(\VBN{Gz?RBʡEINʡE? i word togaVBZvVBffffffֿNNA`"?i-1 tag+i word POS fiscalIN|?5^@JJK7A`NNoʡſi-1 tag+i word VBG upRP(\B@RB +JJʡEINS㥛i+1 word proletarianVBP5^I JJ5^I ?i-2 word equipment VBVBGV-VBNʡE?VBZ/$?NNS9v?NNPS!rhRB?NNV-?VBDS㥛?VBPS㥛JJ`"IN= ףp=?i word dartboardNNPSNNS?i word angelfishNN$C?RBvJJCli-1 word trompeNNHzGFWHzG?i word pesetasNNSp= ף?NNp= ףi+1 word leadsDTK7A`?INK7A`i-1 tag+i word RB leastJJSB`"?RBB`"i+2 word bogartVBDPn?WDTX9vVBNPnؿINX9v?i-1 tag+i word IN microwaveNNE?JJEؿi+2 word ellisVBDK7?JJv/NNP9vi-1 suffix eer NN/$?VBZRQNNPClVBP+RBGzINGz@NNSRQ?NNPS}?5^I?RPp= ףJJMbVBNQ?i-1 tag+i word CC shatteredVBNx&1JJ!rh?VBDDli word chokingVBGʡE?NNʡEݿi-2 word gallonNNQ?JJQi-1 word wipedRPq= ףp?RBˡEINRQȿi-1 word wreakedNNSZd;ONNZd;O?i-1 tag+i word JJ phenomenaNN~jtNNS~jt?i+2 word thousands NN5^I ӿVBNGzUHHzG?RBx&1 IN(\?NNS;On?NNPv/?RPClӿDT;Oni-2 word stringJJRV-RBjtVBZ+?JJV-?NNQۿVBD+i-1 tag+i word NNPS chargedVBD~jt?VBN~jtۿi-1 tag+i word VBD buriedVBNMb?JJMbi-1 tag+i word JJ mineralNNjt?JJjti-1 tag+i word -START- autoNNQ@JJʡENNP?5^I i word gunnyNN{Gz?JJ{Gzi tag+i-2 tag NNPS CDVBG/$?NN-VBN-?JJv?NNS-NNPS㥛ܿNNPSS㥛?i+1 word today NNPS)\(VBG@RBJ +?NNtV?VBD"~VBP5^I ?VBy&1?VBNrh|?JJh|?5INn?NNS7A`?NNPGz.i-2 word harlanDTjt?INjt i+2 word dogsJJMbX?NNMbXi-1 tag+i word NN datingVBG rh?NN rhi-1 word crossedRPS?INSi+1 word closerRBB`"@JJB`"i-1 tag+i word DT luncheonNNE?JJEؿi+1 word policyNNPVBG&1JJx&1@VBZV-RBK7INp= ףNNS㥛@CC}?5^IWDTMbX9VBDK7ADTzG @NNSV-VBGzοVBN{GzԿ i-2 word 'reVBKRBR!rh̿VBPsh|?ſEX㥛 VBDw/DT rhVBGNbX9?JJ\(\@NNDlVBNMRBB`"JJRPn?IN(\RPQ?CDp= ףi word arrangesVBZ}?5^I?NNS}?5^Ii+2 word nikkeiRP{Gz?IN{GzĿi+2 word slowsVBZQ?NNSQ i+1 word kumeUHSNNPS?i-1 tag+i word DT accidentNN|?5^?JJ|?5^i word approachedRBMbX9VBNV-?JJB`"ٿVBDx?i-1 tag+i word NN spaldingVBGI +޿NNPI +?i-1 tag+i word DT coalNNx?JJxi-1 word propaneNN+NNS+? i+2 word aztNN㥛 ?NNP㥛 i+2 word scantRBK7A`?INK7A` i-2 word flawVBZS㥛VBN(\?JJ(\ȿVBDS㥛?i-1 tag+i word TO communistVB rhNN7A`@JJ +i-1 tag+i word , embarrassedVBN-?JJ-ƿi-1 tag+i word NNP tarNN333333?IN333333i-1 word secretlyVBN!rh?JJ!rhi-1 tag+i word VBN factoryJJQNNQ?i-2 word milestonesJJ9v?NNP9v i suffix ABDTClNNPCl?i-1 tag+i word NNP nameDTSNNS?i-1 word subpoenaNNw/ԿNNPsh|?@JJp= ףi+2 word cents RP㥛 NNffffffֿVBNB`"RBR rhJJRQ?VBDB`"?RBw/ @IN"~jVBZA`"?NNSK7i word outbreakVBZS㥛NNS㥛? i suffix 973NNPSZd;OտCDZd;O?i+1 word aliveNN9v?JJ9vi tag+i-2 tag JJS VBDVBNMbX9JJMbX9?i-1 tag+i word VB defineVBQ?NNQi-2 word censoredVBGzG?NNzGi-1 word foolingNNStVRBtV?i+1 word twice IN`"?VBCl@RBq= ףpVBDJ +?VBN`"?RPrh|׿VBPOnJJ(\VBZMbX9i+2 word developedNN+?CDʡE?PRP~jtJJPnؿIN+DTV-NNPPn? i-1 tag+i word JJ industrializedVBNMb@JJ+NNPSi-1 tag+i word JJ advancedVBNy&1JJy&1?i+1 word telecommunicationsVBMbXNNh|?5?VBP\(\@JJy&1INvNNS1Zd?NNP7A` i+1 word pathJJMbX9?NNMbX9i+1 word riversideJJZd;?NNZd;Ͽi-1 suffix aryJJmDT`"?NNP-NNPS-?NNp= ף@VBG rhVBDZd;O@IN1ZdVBZClNNSX9v@VBNbX9WDT^I +?RBS㥛?RP333333i-1 tag+i word , combiningVBGX9v?JJX9v"i-1 tag+i word VB disproportionateJJ&1?VB&1VBN(\NNy&1i+2 word disobeyVBPjtVBDjt?i-1 tag+i word -START- lucyJJSNNPS?i-1 tag+i word CC forgoVB-?VBNPnVBD ףp= i-1 word philipNNPV-NNV-?i-1 tag+i word JJ controlNNQ@VBClNNS|?5^i-1 tag+i word RB unlikelyJJA`"?RBA`"i-1 tag+i word , imperialJJzGNNPzG?i-1 tag+i word NNP spokesmenNNPK7NNS/$?VBDmi-1 suffix ev.NNPSClɿNNPCl? i word gunsNNS-?JJ-i-1 tag+i word JJS noiseNNPn?RBPni-1 word liquidNNZd;O?JJZd;Oi-1 tag+i word , '''bX9?VBZ5^I POS(\i-2 word continentVBN(\NN;On?JJJ +? i+1 word elseNN-@NNP&1ҿPRP$~jtCDd;Oi-1 tag+i word JJ closedVBNJ +ѿJJ^I +VBDB`"?i-1 tag+i word VBD concreteVBK7AпNNK7A?i-1 tag+i word NNP auditsVBZ1ZdNNS(\ NN@i+2 word hinderingNNA`"?JJA`"i-1 tag+i word IN treasuresNNSS㥛?EXS㥛i-2 word possibilityVBG5^I ?RBuVNNuVJJK7A?i-1 tag+i word IN deconstructedVBNx&JJx&?i-1 tag+i word PRP safeJJ$C?VBD$Ci word connectedVBNCl@JJԿVBDS㥛i word stygianJJ333333?NNP333333i-1 tag+i word VBZ mistrustNNMb?JJMbi word deterrantJJ!rh?NN!rhi-1 tag+i word JJ generatingVBGL7A`?NNL7A`i+2 word concessionsDTףp= ?VBNCl߿RBףp= ۿVBDCl? i+2 word ltdNNPS'1Z?JJ rh?NNDlRB +޿VBZx&NNPCli-1 word torontoNNPSoʡNNS/$NN!rh?NNPoʡ?VBGEi-2 word parityVBPuVNNuV? i word posterJJ^I +NN333333?RBZd; i word angloJJA`"˿NNPA`"?i+2 word vandenbergJJT㥛 INT㥛 ?i-1 tag+i word RB survivesVBZ+?JJ+i-1 tag+i word CC leaveVBx&1ȿVBPx&1? i word visualVBZ +JJJ +?NNKi-1 tag+i word VB dualRP= ףp=JJ= ףp=?i word northwardRBGz?JJGz޿i+2 word relatedVB rNNSx&1 @NN;OnJJ|?5^i-1 tag+i word JJ providedVBD= ףp=?VBN= ףp=i+1 suffix ibmJJK7?NNPK7ٿVBDzG?VBNzGڿ i word edgyJJ(\?NN(\i-1 tag+i word DT confessedVBN/$?VBD/$i+2 word poundsNNS/$?RBffffffNN/$INffffff?i-1 tag+i word NN edtNNKNNPK?i-1 tag+i word NN intriguingJJS@NNSVBG5^I i-1 tag+i word IN greatNNPA`"?JJJ +NNx&1 i suffix icoJJ+NNP+? i-2 word roadNNPˡE?NNS^I +׿NNw/ܿCD ףp= ?i-1 tag+i word VBZ paidVBN/$?JJ/$ i+1 word woRBWDTT㥛 ?EX+?NN`"?VBZq= ףp?JJrh|IN'1ZDTV-?NNSlڿVB~jtNNPSQ?VBG`"RBRK?NNPMbX?i-2 word index JJDlVBD rhPDTV-VBN"~@RPK7RBh|?5INRQ@VBG/$?DTV-?NNSA`"VBZA`"?i+1 word brotherVBDB`"PRP$(\?VBPx&1PRP(\JJl?i-1 tag+i word NN fillerNNffffff?JJw/ԿVBD|?5^i-1 tag+i word DT turnsVBZv׿NNSv?i-1 tag+i word JJ consentNN(\?NNS(\ i word repelVBV-VBPB`"?NNSq= ףpNNi-1 tag+i word , campeauNNS`"NNP`"?i-1 tag+i word VBZ archVBP +?NN +οi-1 tag+i word TO toutVBQ?NNQſINʡEi word sparredVBNS㥛VBDS㥛?i-1 suffix tolNNPSʡE?NNPʡEi+1 word albergRBZd;ONNPZd;O?i-1 tag+i word '' minorityNN?5^I NNP?5^I ?i-2 word unanimouslyRBףp= INףp= ?i+1 word linenNNSI +JJV-?NNni-2 word wilhelmNNP r?NN ri+1 word blockadeNNS%CNN(\?JJ`"i-1 tag+i word DT teamVBZmͿNNm?i-1 tag+i word IN thanksgivingVBGNbX9ؿNNPNbX9?i+1 word shareVBGMbX9JJ rh@INK7@JJRbX9޿VB1ZdVBP +NNPS^I +FWx޿VBN(\CDn?NN$CCCGz?WDTMbX9NNPZd;VBD;On?i-1 tag+i word -START- breedersNNP|?5^NNS|?5^?i-1 tag+i word TO settingVBG~jt?JJ~jti-1 tag+i word CC advocatingVBGm?JJm i-1 word namNNS"~JJ^I +NNPh|?5VBZK7@NNPSE?i+2 word thanksgivingVBGS㥛NNS㥛?i-2 word kenoshaNNPI +?JJI + i+1 word bagsVBGV-NNPn @JJ(\i-1 tag+i word DT sufferingJJx&1VBGMbNNv/@ i+1 word exitIN}?5^I?RB}?5^IVBNNbX9JJNbX9?i word protestersNNPS!rhNNS/$?VBZ1Zd i word evansNNPX9v@NNPST㥛 NNS|?5^ɿi-1 tag+i word NNS amassedVBPv׿VBNK7A?VBD!rhi-1 tag+i word VB victimNNV-?RBV-i-2 word salomonNN= ףp=JJ= ףp=? i word easesVBZ/$?NNS/$ѿi+1 word palestinianVBNffffffJJffffff?i-1 word medicareNNENNSE?i-2 word unhinderedNNy&1?JJy&1 i-1 word cwaVBZ(\?NNS(\i+1 suffix wth NNsh|?ſJJR)\(VBN;OnJJ?VBZ?VBʡE?VBGV-׿VBDoʡſVBPI +i-1 tag+i word POS tailoredVBNS㥛?JJS㥛i-2 word dubbedDTQ?NN'1ZNNPMbX i suffix iroNNsh|??JJFxѿNNPZd;Oǿi-1 tag+i word VB !HYPHEN VBoʡ @NNMbX9ԿVBN&1NNPSFxVBGMbX9CDtVPRPEJJ"~?JJRCl?RP}?5^INNS rh?NNPT㥛 @i-1 tag+i word CD heldVBN-?VBD-i-1 tag+i word ) loseVBP rh?RB rhi-1 tag+i word CC dismayingVBG%CJJtV?NNT㥛 !i-1 tag+i word VBG infrastructureNN?JJi word galvanizeVBCl?NNCli-2 word towersNNSMbX9NNMbX9?i+1 word ramirezMD%CNNP%C?i-1 tag+i word DT subjectsNNSCl?NNCl i word tracerNNtVNNPtV?i-1 tag+i word IN feltVBD{Gz?VB{Gzi word metabolismNN/$?NNP/$ֿi-1 tag+i word DT contributingVBGSJJv/?NNQi+2 word pensionVBG-?JJ-ӿIN?WDT i+2 word starINzGếVBʡE?DTRQi-1 tag+i word JJ falconNNNbX9?NNPNbX9i-2 word rationalVB{Gz?JJ{Gzi-1 suffix irmVBZ|?5^?NNSK7ANNPʡE?VBN|?5^POStV?IN~jtWDT~jt?RB?VBGz?FW?5^I VBDS㥛@VBP/$VBG^I +?JJtV NNK7ѿi-1 tag+i word NN spotsNNS5^I ?NN5^I i-1 tag+i word -START- andyJJx&1NNPx&1?i-1 tag+i word NN decreasesVBZ/$?NNS/$i-1 tag+i word VBP academePRPʡENNʡE?i-1 tag+i word IN barclaysNNSFxNNP/$?NNPS1Zdۿi-1 tag+i word NN grabbedVBP= ףp=VBD= ףp=?i-1 tag+i word NNS runningNN+VBP|?5^ٿVBGtV?i-1 tag+i word VBZ refreshingVBGT㥛 JJT㥛 @i+1 word ownedVBPZd;RBZd;?NNQٿNNPQ?i-1 tag+i word PRP happenVBP?JJi-1 tag+i word IN timetableNN~jt?JJ~jti-1 tag+i word RB testedVBN#~j?JJHzGVBDjt?i-2 word administeredNN(\?RB(\i-1 tag+i word NNS reservedVBDCl?NNP-VBP%CVBNrh|?i-2 word conjuresNNQNNSQ?i+2 word authoritiesIN-?NNSMbPNNP9vVBK7?NNPSMbP?RBףp= ÿVBN'1ZJJX9v? i word lutherJJd;ONNPd;O?i-1 tag+i word IN rosyNN/$VBPK7A`ݿNNSuVJJ r@i-1 tag+i word JJ marriageJJX9vNNX9v? i word sunkVBN?RBѿi-2 word slightlyNNy&1?JJ$C?VBClVBN/$i-1 tag+i word VBN overlyRBv/?JJv/i-2 word hiltonJJzGNNPzG? i+2 word tensNNS%C?VBNffffffNN%CVBDffffff? i suffix NBINNPS"~jNN(\NNP㥛 ?i-1 tag+i word -START- boyerNN ףp= NNP ףp= ?i-1 tag+i word CD riverVBP/$NN/$?i word cockatoosNNS)\(?NN)\(i-1 suffix aft DTMbXٿNNP(\ҿNNPS~jt?NN?VBN|?5^?JJ +IN9vRP/$VBZoʡVBG-?RB;On@VBD|?5^ѿWDT rhi word bitterlyRBd;O?JJd;Oi-1 tag+i word VBD tetheredJJ333333?VBNbX9RB'1ZĿVBDI + i word remicsNNPNNPSNNSS @NN(\ i word lucyJJSNNPS?i word tangledVBN/$?VBD/$޿i-1 tag+i word `` lifestylesVBZHzGNNPSԿNNS rhNNP%C?i-1 tag+i word CC furnitureNNX9v?RBX9vi-1 tag+i word DT solePDToʡJJCl?NNK7FWq= ףpi-1 tag+i word NNS connectedVBNoʡ@JJMVBDjti word listenerNN+?JJ+i-1 tag+i word -START- rulesVBZ'1ZNNS'1Z?i-1 suffix hoeRBʡE?NNʡEi-1 tag+i word RB pricierVBV-JJRQ?RBREi word pivotalJJffffff?NNffffffi+1 word touchesVBGQJJQ?i-1 word reigningNN~jtпJJ~jt?i-1 tag+i word NNP requiringVBGM?NNMi+1 word turningDTw/ԿINw/?i-1 tag+i word DT smallJJ +NNP +?i-1 tag+i word VBN trulyVBNMRBM?i word roofingVBGp= ףNNp= ף?i word weatherVBK7A?JJS㥛ĿNNjt @JJR㥛 WDTbX9RBzGWPK7Ai-1 tag+i word NNS encouragedJJˡEVBDˡE?i+1 word acquiredVB/$?JJGzοNNV-WDT rh?RBq= ףpIN^I +DTn?NNPx&@i word ramirezNNPST㥛 NNPT㥛 ?i-1 tag+i word JJ shipyardNNT㥛 ?VBDT㥛 i+2 word fraserJJRffffffNNffffff?i-1 tag+i word NNP pioneerNNPSJ +NNPJ +?i-1 tag+i word NN bribedVBN"~VBD"~?i word clothingVBGQNNK7A`@JJ-VBx&1i-1 tag+i word DT federalistNNNbX9JJrh|NNPy&1?i word separationNNMb?JJMbi word attacheNNCl?JJ7A`ڿFW(\i-2 word grimlyCDx&1NNx&1? i suffix keiNNPSףp= NNK7A`NNP9v?i-1 tag+i word JJ defeatNNSˡENNˡE?i-1 tag+i word CC hk$VBZ~jt$/$?NNPCl߿i+1 word specialistsNNX9v?NNPx&?VBDd;ONNPS|?5^ɿi-2 word robinJJQVBDQ?i-1 tag+i word NNP futuresVBZ rhNNPS"~j?NNPv/Ϳi-1 tag+i word JJ velvetNNS+NN+?i+2 word classicNNmNNSm? i word iiNNPSK7ANNPK7A?i-1 tag+i word NN joinedJJ`"VBD`"? i word rolesVBV-NNSV-?i-1 tag+i word RB markVBPK7A`?VBDK7A`i word misdemeanorsNNS1Zd?NN1Zdi-2 word facilitiesJJ(\ؿINx&@NNP~jt?VBGFxRB"~jԿNN~jti-2 word questionNNSd;OֿNNx&1@RBQNNPh|?5INQ? i word egadNNNbX9NNPQ롿NNSDlUH~jt? i-2 word iiVBZ+NNS+? i suffix -edJJtV?NNtVi-1 tag+i word TO enfieldVB`"޿NNP`"?i+1 word jenniferJJ333333?VBD333333i-1 tag+i word NNP sanitaryJJ/$?NN/$i+1 word planesNNS㥛?RBR/$JJS㥫NNS-JJR/$?i word establishesVBPsh|?ſVBZsh|??i-1 tag+i word DT billingVBGNbX9ȿNNNbX9? i-2 word gridVBNd;O?VBDd;Oi-2 word makeupVBPp= ף?NNp= ףi-1 word laudedRB{GzNNP{Gz?i word exquisiteJJ+?NN+i-1 tag+i word CD phoenixNN)\(NNP)\(?i word solventJJ(\?NN(\i-1 tag+i word RB occurVBP%C?NN+RBHzGi word fragileJJˡE?NNˡEi-1 word windingRP-?RBQֿINx&1i word kVBN-NN-?i-2 word arrestNNSZd;JJ?NNA`"@NNPq= ףp i-1 word eggRBFx?NNFxNNPK?NNPSKi-2 word m'bowJJx&1?RBx&1пNNP+i-1 tag+i word TO learnVBsh|??NNsh|?i-1 tag+i word CC sufferedVBNFxVBDFx?i-1 tag+i word TO murderVB ףp= NN ףp= ?i-1 tag+i word NNS satVBPDlVBDDl?i+2 word productVBNCl?POSjt?RB333333?NNSoʡJJS rhVBD~jtVBZ}?5^IRPx?NNtV?PDTK7AINQ?DTFxJJS㥛@NNP rhRBS rh?i-1 tag+i word NNS wiggleVB"~VBPtV?VBNh|?5i-1 tag+i word VBD cattleNNS!rh?NN!rhi-2 word pieceNNPS)\(NNI +VBNClJJCl?NNS/$?NNP)\(? i word alliedVBNMbX9JJMb?NNPMb?i-1 tag+i word NN princeINSNNPS?i-1 tag+i word JJ glasnostNNL7A`FWL7A`?i-1 tag+i word NN motherNN-?RB-i+2 word reefsINOn?JJOni+2 word harassVBT㥛 ?VBP#~jNNQi-1 tag+i word WRB deliveredVBNV-?VBDV-i-1 tag+i word -START- olderJJRGz?NNPGzi-1 tag+i word VBN commentaryJJDlNNDl?i-1 word doorsVBD㥛 ?VBPrh|ϿJJ7A`i word cavernousJJl?NNl¿ i word cftcNNPSL7A`NNPL7A`?i word excaliburNNPSI +NNZd;NNP/$?i-1 tag+i word JJ diesVBZ+?NNS+i-1 tag+i word CC bidsVBZS㥛?NNSS㥛i word tightenedVBN|?5^VBD|?5^?i-1 tag+i word -START- masonNNh|?5NNPh|?5?i-1 tag+i word VB servileVBNnٿJJn?i-1 tag+i word VBZ restrictedVBN7A`JJ7A`?i+2 word importedNNRQ?RBRQi-1 tag+i word VBD dismayedVBNT㥛 JJ(\@INCl i word floorNNL7A`?NNPnVBG{Gzi-1 suffix cutNN-?VBPDl?RP?5^I ?VBDK7VBN&1WDT~jt?NNSJ +ٿRBJ +?RBRSIN+VBGSÿVBCC1ZdJJS㥛?DTJ +?i word bipartisanVBNjtJJ㥛 @NNGzi-1 tag+i word , backedVBN7A`VBD7A`?i-2 word occupiesINGz?RBGzi+1 word brushbacksVB ףp= ?VBPClۿJJT㥛 i+1 word tackVB/$VBPK7?NNVBDjti-1 tag+i word VBP eatenVBNv/?JJv/i-2 word bronnerNNPSCl?NNPCli-1 tag+i word PRP layVBPQVBDQ?i-1 tag+i word NNS carriedVBN+VBD+@i-1 tag+i word MD inevitablyRB?VBi+2 word horticulturalVBZV-NNPSV-?i-2 word bartlettVB333333RPˡE?PRP$333333?RBMbX?PRP333333i+2 word colonialVBZ~jt?VBP~jtпi+2 word nestsNNS(\?NN(\ؿi word uninterestedVBN ףp= JJ ףp= ?i+2 word surfaceVBNʡE?JJʡE i word utahEXMbNNuVտNNPFx?i+2 word justifyNNSL7A`ؿDTEԸWDTEԸ?RBh|?5?NNn i word minersNNSd;O?VBDd;Oi-1 tag+i word VBZ scaredJJV-VBNV-?i-1 tag+i word DT individualJJ;OnNN;On@i word culturalNNS;OnJJʡE@NN(\NNP`"ֿ i+2 word denyCCsh|?VBS?JJK7A`տNN+ηINsh|??i+2 word londonJJA`"VBZK7@JJRV-?VBGOnNN;On?POSK7VBNB`"?RPV-?NNPSQ?RBRV-INV-NNSjt?NNP ףp= ߿RB rh?VBD"~j?VBP rhi-1 tag+i word JJ alleysVBP/$NNS/$?i-2 word influxJJOn?NNOni+1 suffix queVBG|?5^NN}?5^I?CCX9vֿCDV-?JJsh|?DT(\?NNSK i word givenVBDHzGPDT?5^I VBN(\u@RB\(\NNPp= ף MDffffff i+1 word tensDTQ˿INQ?i+1 word enviableVBZ9vRBR9v?i-1 tag+i word RB accuratelyVB-RB-?i-1 tag+i word , askVB1Zd?RB1Zdi-1 tag+i word NN startVBK7?FWClNNd;O?JJX9vVBD\(\Ͽi-1 tag+i word NNS stuckVBPK7AVBNʡE?VBD{Gzi-2 word suspendedJJffffff?NNQCDףp= ?i+1 word mathematicsNN'1Z?JJ'1Zi+2 word fairerVB1Zd?NN1Zdi-1 tag+i word : wearingVBGzG?JJzGڿi word elusiveJJS?NNSi-1 tag+i word NNS handleRBRx&VBPx&?i+1 word citizensJJ(\?NNP(\DTm?PDTmͿi+2 word soughtJJROn?CDQ?NNPʡE?NNPSx&NNSV-i-1 tag+i word VBP sweatingVBG333333NN333333? i word beansNNSPn?NNPni word airwaysNNPS/$?NNP/$ӿi-1 tag+i word CC denyVBZlVBsh|??INZd;Oi-1 tag+i word PRP$ quotaNNS"~NN"~?i-2 word aztecJJV-?NNPV-i word someoneCD㥛 NNMb@JJClNNP rhi-1 tag+i word JJ scrutinyNNSS㥛NN r?JJjti-1 tag+i word WDT democratsVBP5^I NNPS5^I ?i-1 tag+i word IN plantNNV-JJV-NNPV-?i-1 tag+i word CC expertiseVBPx&1NN#~j?VBq= ףpi tag+i-2 tag , NNPVBPS㥛ĿNNPGz @PDTNbX9JJS1ZdEXuVVBD;On?JJZd;O?VBZV-?NNx&1 @RBQ?VB`"CD-?MDMbVBGPn?RPjtPRP$CNNSjtCC/$INJ +?NNPSMbVBN#~j?WDT$C @DTmFWQRBR)\(?JJR rh?i+1 word impulsesVBP(\NN/$?JJ rh i-1 tag+i word NNP biotechnologyNNjtNNP@VBDnNNPSMڿi-1 tag+i word JJ leftistJJ1Zd?NN1Zdi-1 tag+i word JJ learnVBPzG?NNSzGi+1 word increasinglyVBP?EXS㥛?RBS㥛VBi-1 tag+i word DT phenomenonNN{Gz?JJ{Gzi+1 word disasterNN5^I JJS +VBGX9v?JJ(\?i-1 tag+i word , brewingVBGNN?i word soaringVBG"~@JJ}?5^INNMbNNPd;Oi-1 tag+i word IN establishedVBNbX9@JJbX9i+1 word morallyRB1Zd?IN1Zd i suffix put VBK7A`?VBNZd;O@CDffffffƿVBP|?5^?VBZGzNNS$C VBGKJJS㥛 NN rhVBDm@RBoʡNNPtV޿i-1 tag+i word CC chemicalNN?5^I ?JJ?5^I i-2 word pluralityNNSS?NNSi-1 tag+i word NNP servesVBZV-?NNV-i-2 word amendmentsRBR +JJQ?VB(\i+1 word commentaryNNrh|VBNK7?NNS rhJJQ?i+1 word cessationJJ rh?NN rhݿi-1 tag+i word RB capitalizedVBN}?5^IJJ}?5^I?i-1 tag+i word `` insideJJ+?NN+i-1 tag+i word TO offshoreVBMbX9JJRQ?RBˡEԿINA`"i-1 tag+i word DT excludingVBG"~j?JJ"~ji word distanceNNS+NN(\?JJ^I +ǿi-2 word expectingNNPS~jt?JJ~jti+1 word choresVBS?PRP$x&1?JJRZd;O?VBPtVPRPx&1NNPQi+1 suffix aveNNS/$@VB\(\NNM?CCZd;OPDT-WDTQ@JJZd;OWP/$?NNPSE?VBDClJJRoʡVBZFxINS%NNPSRBK?JJSClVBN+?POSZd;O?EXx?DTQ?i+2 word batchVBPA`"VBA`"?i+1 word accurateRBR{Gz?JJR{Gzi-1 tag+i word CC richJJE?NNPEпi-1 word liberalizedNNZd;O?JJZd;Oi-1 tag+i word NN profileJJV-INDlNNd;O?i-1 tag+i word -START- compareCCQVBZd;O?NNPx&1Կi-1 tag+i word CC alcoholNN-?JJ-i-1 tag+i word DT freshlyRBQ?JJ%CNN1Zdӿi-2 word enfieldJJQ?NNPQi-1 word silencedRPsh|?RBsh|??i word accessoriesVBZ +NNPSV-NNSK7A`?JJZd;ONNPZd;O? i word edgedVBPA`"VBNmͿVBDK?i-1 tag+i word VB attractiveVBZd;OJJZd;O? i suffix eek MDQVBZd;O?NNV-?VBPZd;@NNSV-JJET@CDRB9vVBZ|?5^NNPI +i-1 tag+i word NNP goodnessNNMb?VBZMb i+2 word n.m.NNA`"NNPA`"?i-1 suffix illVBZMbX9?NNT㥛ĠFWףp= NNPSQJJRB`"VBGZd;O?VBD{GzVBNQ@VBP(\¿JJRBRtV?CDL7A`VBMb@CC+?WDT`"?DTˡE?RPffffff?RB%CNNS`"NNPn@IN#~jMDRQؿi-1 tag+i word NNP mailVBPtV?NN= ףp=ڿVBDZd;O i suffix buy VBNh|?5VBP@RBxINMbXNNSX9vVBףp= @JJx&NN+?VBDSJJR5^I i+1 word dottingVBZClVBP/$ٿNNh|?5?i-1 tag+i word RB commercialJJ+?RB+i word sweetenedVBZZd;VBN&1?JJp= ףVBDffffff?i+2 word spokesmenJJsh|?տRBsh|??i-1 tag+i word NNS tallJJsh|??RBsh|?i word assailantVBx&NNx&?i-1 tag+i word TO easternVBQJJX9v@NNP+i+2 word centersRBKNNB`"ٿJJjtINK?VBZx&1?NNS^I +NNP= ףp=?i+1 suffix golNNP|?5^?JJ|?5^ i+1 word incoJJnVBDn?i-2 word herbicideVBV-?VBDV-i-1 tag+i word TO headVBQNNQ? i suffix YOUPRP1Zd?NNP1Zdi-1 tag+i word NNP partnersNNPS~jt?NNS/$NNPjt?i word bureaucratJJ+NN+? i word careJJ+NNSףp= NNP&1?VB/$@NNPSPnRBMbNN?5^I @VBP= ףp= i word fabricJJS㥛NNP(\NNS`"NNQ@i-1 tag+i word -START- czeslawNNjtNNPjt?i+2 word turnoverVBDMbXVBN333333@INMbX9ܿi-1 suffix hasJJ'1ZWPX9vNNPK7RBuV?VBD"~jRBRx&VBP/$JJRA`"@VBjt?NNx?PDTd;ORPS?CD1Zd?VBGClNNSS?VBNʡE!@DT r?WDTT㥛 INʡEVBZ~jt?i word undercoverRPZd;JJZd;?i-1 tag+i word VBN officialJJ+?RP+i-1 tag+i word NN rigueurJJˡEܿFWˡE?i-1 word preachingWDT{Gz?WP{Gzi+2 word harderRBR"~?RBK7JJRX9v i word caveatNNQ?JJQ i suffix ajiNNʡENNPʡE?i+2 word wrestlingJJ/$?NN/$i-1 tag+i word NNP agreementNNT㥛 NNPT㥛 ?i-1 tag+i word VB originatingVBGjt?NNjt i word trifleRB\(\@NNtVJJi-1 tag+i word VBG springVBG'1ZNNNbX9?JJuVi word aggravateVB(\VBP%C@JJMbX9i-1 tag+i word DT proudJJCl?NNCli word addressedVBN/$JJS㥛VBDV-?i-2 word syndicationDT/$WDT/$?i+1 word optionsJJJ +VBQ@PDTw/NNI +@DTw/?i+1 suffix iroNNPZd;IN;On?NN?5^I ?FWx&1i-1 tag+i word POS pcNNK7A`ݿNNPK7A`? i word sangVBDw/@VBZʡEVBxVBPI +޿JJ\(\i-1 tag+i word NN toolVBGNNjt?INx&1 i word liveVBq= ףp?RBQ?NNNbX9 VBNx&CDjtĿVBP'1@JJ?5^I VBZCli word economiesVBZSNNSoʡ@NN +ֿNNP-i-1 tag+i word CC paidVBDX9v?VBNX9vi-1 tag+i word NNS exceptJJbX9RBRZd;ORBnINʡE@i-1 word whileVBGHzG@RBRv?JJE?VBZV-NNPT㥛 JJRzGʿVBN㥛 ڿRB~jt?NNPS1ZdNNvEXbX9ȶ?INZd;OտDT;OnNNS rh?i-1 word measurementsVBNMbX?JJzGVBDV-߿i-1 tag+i word JJ cleanNNJJ?i-1 word baltimoreJJ}?5^I?NN}?5^Ii-1 suffix n'tVBN ףp= ?RB(\?DTq= ףpVBZ9vNNPE?VBDZd;O @PDT~jtJJSECD'1Z?NNSbX9?INKVBx@JJjtƿRBRʡEVBPsh|?RPZd;OVBG= ףp=?NNK7i-1 tag+i word CC bagINClNNCl?i-1 tag+i word DT rulingVBG7A`?NNJ +JJ%Ci-1 tag+i word `` soonVBףp= RBK7A@NNbX9JJܿi-1 tag+i word DT prioriNNMbFWMb@i-1 tag+i word DT fdaNN&1NNP&1?i-1 tag+i word CC meansNNPSZd;O?NNPZd;Oտi+1 word theseNNPSDlWRBh|?5?VBNJ +VBPCl?VBGMb?FWV-NNSQINn@VBZS?NNMb?CCjtWDTJJGzNNP(\?VB"~?RBK7A`?PDTv@VBDV-RPy&1DTףp= i word enfieldNNDlNNP1Zd?VB`"޿i+1 word powerfulJJS㥛CDV-PRP$S㥛?RBST㥛 ?JJSRQRBRMbX?JJRMbXi+2 word eurodebtVBDX9vVBNS?JJ i word yield JJPnVB(\ @RPV-RBZd;NN(\u@VBDClNNP$CVBN/$VBPx&1 @IN`"VBZ'1ZNNSV-i+2 word where JJ`"NNPVBoʡ?NNPSVBG5^I RB`"@CDL7A`VBZK7A?NNSV-NN?5^I @VBDʡERPʡEVBNK? i word huggedNN}?5^IVBD}?5^I?i-1 tag+i word NNP managesVBZ{Gz?NNS{Gzܿi word machinistsVBZPnNNPSNbX9ؿNNS @NNP/$i-1 tag+i word NN respondedNN9vVBD9v?i-1 word financiallyVBCl?VBNJJS㥛?i+1 word hiringNNP333333NNK7A?WP-POSV-?IN/$տVBZV-ҿDTjt?i+1 word bannedNNSˡEĿNNPK7?RB?NNK7JJVBZˡE?i+1 word units VBPClǿNNSQ?NNP?NNVBN\(\?CDQ?JJL7A`ؿVBG%C@RBbX9VBDrh|? i+1 suffix oyNN\(\߿NNP\(\?i word contactsVBZV-NNSrh|?NN\(\ i word bozellNNP#~j?NNPS#~ji-2 word huntingVBGffffffNNffffff?i-1 tag+i word TO malignancyNNPh|?5VB rhѿNN~jt?i-2 word launchesNNSK7A?NN?JJ~jti+1 word nomuraVBNMbJJMb?i-2 word menstrualRPK7ARB)\(IN^I +@i word sunriseNNS?JJSi-1 tag+i word CC suburbanJJʡEۿNNPʡE?i word mortgageVBtVֿJJtVNNx@NNPףp= i-1 tag+i word JJR clauseNN1Zd?JJ1Zdi-1 tag+i word VB productivityNNS rhNN rh?i-1 tag+i word PRP$ incentiveNNNbX9?JJNbX9i-1 tag+i word DT navyJJI +NNPK7A?NNCli+1 suffix ols NNMb@VBD9vVBNMVBP#~j?JJX9v?IN}?5^I̿NNS+VB333333JJR㥛 WDT}?5^I?NNPS?VBGV-i-1 tag+i word DT implicitJJV-?NNV- i suffix '86NNPnNNP~jtCDCl?i-1 tag+i word CD democratsNNPS= ףp=?NNS= ףp=i-1 tag+i word NNP reinvestmentNNV-NNPV-?i+2 word hailedNNS/$?NNP#~j@RB"~j?JJ~jtINq= ףpVBZ/$i word preciousNNS"~JJHzG?NN"~ڿNNP rhݿi-1 tag+i word CC faxedVBNbX9VBDq= ףp@NNSx&1i-1 word stateJJV-?INGzǿDTSVBGffffffRBR"~WDT)\(?NNS"~?NNPv/NNPSh|?5?NN rhVBNV-?FWClVBDM@VBZ}?5^IVBMbX9?RB?VBP1Zdi+2 word montrealVBGV-?NNV-i+2 word detailedNNK7?JJK7i-1 tag+i word CD !DIGITSNNPx&1?NNSMbJJS?NN +ֿCD^I + i suffix ird VBL7A`CDQLSx?RBrh|?DTClNNPMbX9?JJffffff?NNMbX?VBZʡENNSCl i-2 word signaledJJ}?5^I@NNP}?5^Ii-1 tag+i word `` buzzyNN+NNP+? i word catchJJʡEVBʡE@NNʡEVBDxVBNmVBPQ?i-1 tag+i word NN climbsVBZDl?NNbX9RBDlVBDT㥛 i+2 word postingJJRuV?RBR/$RBGz?UHL7A`i word castingNNMbX9@VBDV-VBG(\ڿNNSʡE i word intentVBGh|?5NNHzG@JJ|?5^i word sublimeNNjtRBZd;O߿JJ(\@i-1 tag+i word RB unwarrantedVBN\(\JJ\(\?i-1 tag+i word DT photographicNNSÿNNSʡEJJ㥛 ?i-1 tag+i word IN cloudsNNS+?NN+i-1 word pilotsVBx?NN\(\VBDQ?VBNQVBP\(\?JJxi-1 tag+i word PRP longVBPffffffRB㥛 JJl@i+1 word toyotaVBZ~jt?WDT~jti-2 word guestJJvNNClٿNNP?i-1 tag+i word DT transitionNN333333?JJ333333 i word murderVBNN-F@FW;OnҿJJRGzRBRrh|JJ$CNNPoʡi-1 tag+i word IN noonNN|?5^?RB|?5^i-1 tag+i word NNP concoctsVBZ+?NNPSMbNNPZd;Oi-2 word convinceNNGz?JJRGzVBNZd;OJJZd;O?INMbX?DTMbXi-1 tag+i word VBN biomedicalJJK?INKi-2 word auditorsNNPS rhNNP rh?i-1 tag+i word VBG irasNNPSClNNSCl? i word lividVBNX9v׿JJA`"?NNS|?5^i+2 word restartedVBN|?5^?JJ|?5^i-1 tag+i word IN earnestJJSMbNNQ@JJx&1RBRn i word hungVBNZd;?VBPʡERBSVBZ?5^I NNB`"ѿVBDV-?i-1 word notionWDTK7INK7?i-1 tag+i word RBR thereafterRB rh?NN rh i word ricaJJMbNNP#~j?NNPSJ + i+1 word akzoIN(\?VBZ~jt?NNS~jtȿNNP(\WDT(\RB(\?i-1 tag+i word DT lengthyJJK7A`?NNK7A`i-1 tag+i word DT gulfNNSbX9NNbX9?i-1 word oranjemundNNS rhVBZ rh? i suffix lumNNS rNN+@JJ`"i-1 suffix tanINK7ANNSZd;O?NNPQ?NNPSQNNV-@VBPMbX9PRPZd;ORBMbX9i-1 tag+i word MD eliminateVB?NNSi word applauseNNS/$ۿNN9v@NNPV-i-1 tag+i word DT babelistsNNSffffff@NNPjtNNPSK7i-1 word fireballsWDTHzG?INHzGi+2 word monetaryJJR+VBP rhٿLS~jtRB"~?NNPK7VB rh?RBR+?i-1 tag+i word -START- citicorpNNSX9vNNCl˿NNP\(\?i-1 tag+i word NN oughtMD$C?NNT㥛 RBʡEVBDPni word skyrocketedVBN㥛 ڿVBDS㥛?VBPZd;i+2 word bakkerVBN\(\?VBD\(\i+2 word yamaichiJJNbX9?NNNbX9i+1 word wivesRBx&1JJ5^I @NN+i-1 tag+i word TO removeVBZd;?NNZd;i-1 tag+i word `` aboveVBy&1JJQ?NNP1Zd?i-1 tag+i word -START- threeCDMbX@JJ/$NNsh|?NNPV-VB9vi-2 word espreRBQINQ?i-2 word boatingVBG!rh?JJ!rh i-2 word edsNN^I +JJ^I +?i-1 tag+i word NNS recordVBPoʡNNoʡ?i+1 word adjustedRB|?5^?NN|?5^i-2 word glamorousJJ+?NNP+i-1 tag+i word NNP silvaNNPV-ͿNNx&1?VBDS㥛i-1 tag+i word DT wardairNN;OnNNP;On?i+1 word mulroneyJJQNNPQ?i+1 suffix tnaVBN rhݿVBD rh?i word approveNN?5^I VBD}?5^I̿VBP'1Z?IN(\VBZzGVB$C@i word bitterestJJSˡE@NNSDlNNx& i-1 tag+i word -START- attorneysNNP7A`NNS;On?RB?5^I i+2 word unemploymentVBPClNNCl?JJX9v@VBNX9vi-1 tag+i word JJ egosNNSʡE@NNʡEi+2 word protectorINx&1?RBx&1i-1 tag+i word IN investorsNNPSx&1?NNPx&1i-1 tag+i word RB knownJJB`"?VBd;ORBh|?5VBNx&?i-1 tag+i word IN baringVBGS㥛NNPS㥛?i-1 tag+i word DT addedVBNp= ף?JJMb?VBD㥛 ڿi-1 word despite VBZS㥛DT +VBGX9v?NNPDTuV?NNPK7RBmJJ(\?NNSjt@i-1 tag+i word NNP streetsNNPS㥛 ?NNP㥛 i-1 suffix flyRB\(\@RP}?5^INNPnJJV-?VBDPn?i+2 word barrelsRBClINCl?i+1 suffix iryJJx&1NNPDl?JJR$Ci-1 tag+i word NN startedVBNKǿVBDK?i-1 tag+i word NN obligationsNNPS(\NNS}?5^I?NNV-i-1 tag+i word , wilfredNNPjtVBDjt?i-1 tag+i word NN surfNNSʡENNʡE?i-1 tag+i word NN propelledVBN#~jVBD#~j?i+2 word irreparableCCjtֿRBjt?i-1 tag+i word NN monopolyNNtV?VBDtVi-1 tag+i word , householdVBN}?5^INN1Zd?VBD"~i-1 tag+i word ( ascapNNP-?NNPS-i-1 tag+i word RBS desolateVB ףp= JJ ףp= ?i-2 word attendanceVBE?RB+?VBN+NNE i-1 tag+i word -START- elsewhereUH= ףp=ҿRBS?NNPSi-1 tag+i word IN hiborNN/$ѿNNP/$?i+2 word worry MDX9v?NNX9vVBN+?JJRMbVBPS㥛JJ\(\VB(\?JJS+?NNPm?i-1 tag+i word JJ slipNNSxNNx?i+1 word studioNNPS"~?VBGףp= NN)\(?JJv?NNS㥛 NNP"~i-1 tag+i word JJ canvasNNS~jtNN~jt? i word d&bNNQ?NNPQi+1 suffix rowVBNbX9?WDToʡNNSK7?VBZK7NNP rhNN(\?VBDʡEDTB`"?RPJ +PRP$|?5^ʿRBZd;?JJ/$?INQVBGK7i+1 word prebonJJsh|?NNffffffֿNNPh|?5? i word zbbNNy&1NNPy&1?i-1 tag+i word DT shortJJ;On@NNʡE NNP ףp= ?i-1 tag+i word DT laundryNN)\(?JJ= ףp=JJRQ i-1 tag+i word NNP manufacturingNNCl?VBGCl i suffix -99NNP rhտCD"~j?JJ/$i-1 tag+i word NN votedVBNL7A`NN(\VBDS?i+1 word lawsonJJK7NNPK7?i+1 word merieuxNNmNNPm?i+2 word segmentJJS㥛?JJSGz?VBNZd;O?NN&1NNP rhi+1 word releasedVBףp= NNSףp= ?i-1 tag+i word JJ cooperNN}?5^INNP}?5^I?i-1 tag+i word NNS steeredVBNV-VBDV-?i-1 tag+i word DT bulkNNS/$NN$C?JJ= ףp=!i-1 tag+i word DT extraordinarilyNNPS1ZdRB1Zd?i-1 tag+i word -START- readyVBNRQJJq= ףp?NNP(\i-1 tag+i word '' portraysJJ^I +VBZ^I +?i-1 tag+i word NNP dailyVBZ"~jJJ"~j?NNZd;?RB|?5^?FWoʡi-1 tag+i word CC oranjemundCC rhNNP rh?i-1 word denominationsNNףp= RBSÿINtV?i+1 word sentimentVBGv/JJzG?NN~jti-2 word thoseVBGjt?JJ$C@VBD~jt?VBP(\@WDT`"?VBq= ףp?RBQ?VBZ㥛 NNSjt?NNPsh|?VBNˡEܿINE NNtDT%Ci+1 word philosophyJJ㥛 ?NN㥛 i-1 tag+i word POS primaryJJ?5^I ?NN?5^I ¿i-1 tag+i word CC wantJJSV-JJV-VBsh|?VBPx&@i-1 tag+i word VB accomplishVBHzG?JJHzG i word henceVBOnNNNbX9RB ףp=@INGz޿VBZ}?5^INNPQi-1 tag+i word IN sweepingVBGJJ?i+1 word obstaclePRPV-CDV-?i word hauntingVBGGzNNGz?i-2 word truthVBZ'1ZNNS'1Z?JJR^I +?RBR^I +߿i-1 tag+i word IN amNNPS5^I NNP5^I ?i+2 word administration PDTX9vRBQ?INQDT^I +NNPSV-NNKVBD"~?CC-?VBGv/JJbX9VBZʡEӿNNP?5^I @i word jurisprudenceNN#~j@NNP#~j i suffix MTVNN#~jĿNNP#~j?i word trusteeNNS%CԿNN?JJ)\(NNPS㥛i word obtainedIN ףp= NNuVVBNʡE@JJ rؿVBDrh|i-1 tag+i word VBN betterRBRʡE@RB㥛 JJR(\i+1 word christianJJDlVBGDl? i+1 word sinsJJjt?NNjtֿi+1 word reservationsVBGzVBPGz?i-1 word ribbonsVBDtV?VBNtVi+1 word ravineNNClѿNNPCl?i-1 tag+i word IN nonunionJJ(\@NN(\i+1 word underscoredNNSn?NNni-2 word slumpJJK7?NNK7 i word pigstyJJ= ףp=NN= ףp=?i-1 suffix estVBD;On?VBZV-?RBRv/IN;On@NNPSS@VBNQ@NNT㥛 @PRP/$޿VBT㥛 VBGX9v?VBPʡEDTZd;OݿFW/$POS rh?RB'1Z?CDtV?WDTNbX9JJL7A`NNSV-?NNPQkWRBOnJJSL7A`JJRI +ƿi word panhandleJJMbȿNNPMb? i word bankerNNPl¿VBZZd;NNPSA`"NNS|?5^NNh|?5@i-2 word subsidiesNNOn?JJOnRB+ǿIN+?i-1 tag+i word NNS integrationVBP/$NN/$?i+1 word traderRBzGếNN;On¿CDw/?VBP$CJJ#~j?VBZL7A`NNSL7A`?i-1 tag+i word VBG spotNNh|?5?JJh|?5i-1 tag+i word CD nationwideNNSRBK7AJJ\(\?i-1 tag+i word CC examineVB/$?JJ/$i-1 word significantlyRBK7JJRq= ףp?VBK7A?VBDX9vINKRBR?VBNi-1 word blockJJʡENNPV-?PDTʡE?RBV- i word alwaysNNPS}?5^INNP}?5^I?i-1 tag+i word RB frustratedVBNClJJCl?i-1 tag+i word IN advanceNNZd;?CDZd; i word taipeiDTףp= NN7A`ҿNNP9v?i-1 tag+i word VBZ longRBy&1?JJy&1 i word johnsNNPS"~jNNP"~j?i-1 tag+i word -START- herNNSQPRP$ffffff @WRBB`"NNPjti+2 word petroleumJJMb`?NNZd;ONNPQ?i+2 word kelloggJJK7A?RBK7ANNv/?VBDv/i-1 tag+i word JJ phenomenonNNSvNNv?i-1 tag+i word NN treatVBZ= ףp=VB= ףp=?i-1 tag+i word NNP vonVBZK7A`NN rRBV-NNP\(\@i-1 tag+i word NNP redeemVBQ?NNQ i suffix eahUH rh@JJ/$NNPMi-2 word matterNNSDlNNPjtĿVBw/VBG&1@RB?5^I ?NNV-JJʡEVBZDl? i suffix otoNNPQVBPx&1NNSQNN$C@JJ/$i-1 tag+i word -START- turnsVBZoʡ?NNSoʡ i word babyNNE?VBDSۿCCT㥛 пJJSNNS7A`¿NNPT㥛 ?i-1 suffix oyaVBZ+?NNPSx&?NNP333333i-1 tag+i word JJ cabinetNN7A`?JJ7A`ڿi-1 suffix ispNN9v?JJ9vڿi+2 word towerJJPnпVBGPn?i-1 tag+i word NNP sportsVBZq= ףpNNPSx&?NNPL7A`i-1 tag+i word DT grayJJjt?NNjt i+2 word liesRB/$?FWʡEJJS㥛?INxNNRQ? i suffix doxVBZw/ܿVBjtJJV-?NNCl?FW"~ji-1 tag+i word VB provedVBNMb?JJMbؿ i-1 word seesNNP{GzNNPS{Gz?NN%CRBRGzVBNSۿJJsh|?@VBZ/$NNS/$? i+1 word duckNNV-JJV-?i-1 tag+i word NN dominatedVBN?5^I ?VBD?5^I i+1 suffix holDT;On?RB;Onҿi-1 tag+i word DT fewestJJSv/?NNv/i-2 word marketingNNI +?VBN ףp= ?WDTClJJffffffINCl?VBGZd;O?i-1 tag+i word WRB bovineJJzG?NNzGếi-1 tag+i word CC policeNNST㥛 @NNT㥛 i-1 tag+i word CC widenedJJmݿVBDSVBN?i-1 tag+i word NN soINv/?VBP+RBv?VBDʡEi-2 word economicallyCCrh|?RBrh|i+2 word conservativesRB= ףp=INE@VBZ= ףp=VB{GzJJ= ףp=?JJSʡEVBPy&1Կi-2 word makingVBP VBZףp= RBR^I +RB^I +?IN$C?NN;OnNNPSV-?JJRT㥛 ?NNSp= ף?NNPx?VBJ +@JJT㥛 ?JJS;OnWDT$CVBGףp= i+2 word calif.NNPSGz?JJRQNN`"NNPGz @JJV-i-1 word explicitlyVBjt?PDTjt i+2 word drug VBPK7AWDTGzRBK7A`?INGz?NNP?5^I ?VBGK7JJʡE@NNʡEVBD;Oni-1 tag+i word DT businessmanNNjt?JJjt i suffix almVBv/?JJ?5^I ?NN|?5^ڿFW#~ji word matagordaNNPSJJB`"NNP!rh?i-1 tag+i word RB compliedVBNn?JJnٿi-1 tag+i word NNS devoteVBPZd;O?JJZd;Oi word cohesiveJJv?NNvi-1 tag+i word TO capitalismNNK7A?VBK7Ai word curtailedVBN;OnVBD;On?i-1 tag+i word NNS publisherCCSNNS?i-1 tag+i word NNS momentumVBP rhNN rh? i+1 word saksJJV-VBPV-? i-1 word deanRBRX9vNNPX9v?i-1 tag+i word `` yellowJJ?5^I ?RB?5^I i+2 word restrainingNN333333JJ333333?i-1 tag+i word VBD illustrateVBPT㥛 ?RBT㥛 i word spurredVBN"~j?VBD"~ji-1 tag+i word NNP expressedVBDT㥛 ?JJT㥛 i+2 word shipsRB/$IN/$?i-1 word deereVBP)\(@NN)\(i-1 tag+i word , nmtbaRBJ +NNPJ +? i word billsNNPSE?NNSMbX9@NNʡENNP"~jVBZ9vi word showingJJ|?5^NN㥛 ?VBP?5^I VBG+?i+2 word excavatorJJʡE?NNʡEi-1 tag+i word RB fallaciousNNS= ףp=JJ= ףp=?i-1 tag+i word , thirdJJJ +?NNJ +i word transcriptNNS"~NN?RBNbX9i-1 tag+i word CC a.NNPS rhNNP rh?i+2 word urgesVBN-?VBD-i-1 tag+i word POS proJJZd;FWZd;?i word telefloraNNoʡNNPoʡ?i-1 tag+i word DT skierNNoʡ?JJRoʡi+1 word sectorNNSMb?VBG?5^I ?NN333333 @JJn@IN&1DT&1?i-2 word reputationCD +NNS@JJRQ?i word semesterNNB`"?JJB`" i suffix gly NNP(\ҿNNScFWB`"VBP/$VBDB`"VBN+RB5^I 3@VBZQNNSw/VBGzNNPS-JJ+Ni+2 word virgilioJJn?NNP%CVB(\i word unplannedVBNMbXJJMbX?i-1 tag+i word NNS totalingVBGx?JJx޿i word subpoenaNNS(\NN(\? i+1 word kitNNMbJJMb@i-2 word blaineDTV-INV-?i-1 tag+i word WRB farmersNNSV-ҿNNPV-?i+2 word anxietyNN333333?VBG333333i+1 word magneticNN7A`VBDK?VBPKJJ7A`?i-1 word suggestionWDTrh|INrh|?i-1 tag+i word VBZ actingJJS㥛?VBGS㥛i+2 word perceptionsVBV-?VBP/$JJ}?5^IԿi-1 tag+i word DT happensVBZy&1?JJy&1i word calgeneJJѿNNP?i+2 word perfectNNS㥛 NN㥛 ?i word convincedVBDZd;VBN r?RB= ףp=VBS㥛VBG5^I ۿJJףp= @i-2 word amsterdamRBףp= NNPףp= ? i word havensNNSOn?NNOnӿi+2 word editorsVBNS㥛RBS㥛? i+2 word axaNNA`"ۿCDA`"?i-2 word noticeNNSxVBZx? i suffix logNNPʡE?NNS|?5^NN\(\ @JJV-INrh|Ͽi+2 word themeVBGtV?JJtV޿i-1 tag+i word NN l988NNjtCDjt?i-1 tag+i word VBG bingeNNV-?JJV-ҿ i word tasteVBP/$?NNSGzNNffffff?JJw/i-1 tag+i word VBZ newsNN"~j?NNP"~ji-1 tag+i word NNP martVBPףp= NNGzRB^I +NNPbX9 @i-1 tag+i word JJ viewsNNMbRBؿNNSx&1?i-1 word negotiationsVBN;On?VBD;OnҿIN|?5^WDT|?5^?i+2 word restoringVBNS㥛?VBDS㥛i word studiosNNSQ@JJZd;ONNDli-1 suffix tax VBJ +NN@VBDV-WDTV-?VBZ#~j?NNS;On?NNPNNPS(\?VBGw/ܿVBN/$RBB`"ɿINV-i-1 tag+i word DT tradingJJ}?5^IVBGK7A`NNE@i-2 word enjoyableVB+?NNP+i word flatteringNNQJJQ?i-2 word counterpartNN/$ſVBI +޿JJp= ף? i word bleakJJK7A @VBoʡNN(\RB"~ji-1 tag+i word IN pbsNNSS㥛NNffffffNNPbX9?i-2 word truckRB%C?NNS%CVBN?5^I ?JJ?5^I i-1 tag+i word NNP neurologistNNSKNNK?i-1 tag+i word VB stoodVBN rh?NN rhi-1 tag+i word TO fileVBv@RBSNNJJ$C˿i-2 word statutoryVB ףp= NN ףp= ?i-2 word biggestNNvPDT rhJJ rh?VBZ9vNNS9v?VBGv? i suffix niaNNS1ZdNNPQ@NNPSGzNN= ףp=?FWy&1JJRZd;OJJ㥛 i-1 word computers WDT|?5^@VBDZd;ORBR;On?VBN rh?VBPh|?5RBv?IN-ۿVBsh|??WRBˡE?JJR;OnDTjtNNSX9vi-1 tag+i word IN ferruzziNN-ӿNNP-?i-1 word criteriaVBNV-?VBDV-ڿi-1 tag+i word VBP readNNV-NNSd;OVBN^I +@JJCli tag+i-2 tag VBN ''NNSrh|?JJrh|i-1 tag+i word , strictVBP\(\JJ!rh?NN"~i-1 word divergingJJx&NNx&?i-1 word muckedRPV-INV-@ i-2 word lugsNNK7A`?JJK7A`i-1 tag+i word TO dizzinessVBV-NNn?JJ rȿ i word belongVBDy&1ԿVBZI +INKVBPCl@RBrh|i-1 tag+i word JJ meanVB?5^I ?JJ?5^I ҿi+1 word gatheredNNS;OnNN;On?i word correctedJJClVBNCl?i+2 word angerVBPV-VBNK7NNK7?VBDV-?i-1 tag+i word CD rubenesquelyJJ|?5^?RB|?5^ڿi-1 word tasksRBR|?5^?RB/$JJR;Oni-1 tag+i word '' clausesNNS\(\?VBZ\(\ i+2 word lizNNPSCl?NNS rhNNPffffff i suffix arrNNPSQNNPQ? i suffix texNNPʡE?NNSJJMbi-1 word momentaryVBZNNS?i-1 word currently JJRQ?VBPK7 @JJʡEIN+@VB(\?VBGE?RB(\VBNjt?NNtVVBDRQ VBZ rh?NNS7A`i-1 tag+i word DT siouxJJS㥛NNPS㥛?i-1 tag+i word DT shiftJJ+NNSlNNQ@i-2 word eventuallyVBDx?VBNMRBZd;?IN+?RPZd;JJ|?5^ѿNN-i-1 tag+i word CD specificNNS!rhJJ!rh?i-1 tag+i word VBP suchPDTMbX9?JJMbX9 i word choresNNS`"?NNP`"i-1 tag+i word JJ chateauVBPˡEԿNNˡE?i+2 word husbandPRP$ʡE?PRPʡEi+1 word inquiriesJJK7A?NN1ZdRBx&i-2 word recoveryNN`"?CD`"i-1 tag+i word PRP$ commitmentNNDl?JJDli+1 word wisecracksVBGX9v?JJX9vi+2 word quayleNNOnNNPOn? i suffix HENWRB|?5^@JJ9vNNPCl i-1 tag $NNP~jtCDMbX?JJMb`NN^I +i word penaltyVBDd;ONNh|?5 @JJx&1NNPB`"i-1 tag+i word IN farmNNV-?JJV-i-2 word carpenterDT/$տNNSOnۿIN/$?VBZOn?i-1 tag+i word DT lifelongJJSjtJJjt?i-2 word joiningVBN㥛 JJB`"NNPn?RBS?NNQi-1 tag+i word IN celimeneNNSNNP?i-1 tag+i word VBP comingVBG?JJ i word bishopNNSMbNNPMb? i-2 word run NNPSNbX9пNNl?NNPX9vJJCl˿VBDw/?JJR|?5^VBNw/ܿRB= ףp=@INCl?NNSSi-1 word developerJJ +޿NNP +?i-1 tag+i word DT italianateNNK7NNPClJJx&1?i+2 word reportINzG?NNSDl?NNPS(\пVBG(\JJGz?RBzGPOSʡE?NNPX9v@VB\(\VBD(\?VBN(\NNv/VBPCl绿VBZK?i-1 tag+i word NNP virginiaNN`"ֿNNP`"?i-1 tag+i word -START- deeJJ5^I NNP5^I ?i-1 tag+i word DT amsterdamNNPSw/NNPw/?i-2 word manufactureVBףp= ?NNSK7?NN(\FW"~i+1 word janeiroFWx&1IN;On?NNPEi+1 word partnershipJJ$CNNPS@VBN(\?NNw/VBD/$?i+1 word commercialsJJZd;?NNPGzNNbX9ƿi+1 suffix ug.VBD|?5^VBNS@JJGzi-1 word continueRB rhINE?DTl?VB;OnҿVBGM?JJPnNNzGi-1 tag+i word RB tripledVBN~jtxVBD~jtx?i+1 suffix skyJJZd;ONNPSx&1PRP5^I NNA`"?NNPd;O?i-1 tag+i word JJ nomuraNN/$޿NNP/$?i-1 tag+i word NN agoRPʡERBjt@NN/$VBN5^I VBPʡEJJS˿INʡE@i+2 word easesJJ$CNNP$C?i-1 tag+i word CC sayingVBGʡE?NNʡEi+1 word assemblyVBP$CNNV-?JJoʡ?NNPMi word obsceneJJrh|?NNrh|i+1 word courtsJJQ?NNE?NNPw/NNS%Ci-1 tag+i word -START- tedDTI +NNPI +?i+1 word promotionsJJS㥛RBR{GzNNS㥛?JJR{Gz?i-1 word mentallyVBN5^I JJ rh@VBDK7Ai-1 tag+i word VB replacedJJZd;߿VBNZd;?i-1 tag+i word '' agreesVBZT㥛 ?INT㥛 i-2 word derivedNN(\?JJ(\ڿi-1 word manufacturingRBX9vNNX9v?VBNMbJJS㥛VBDK7@i word rebatesVBZMbXNNSMbX@i-1 tag+i word NNS styledVBNX9v?VBDX9vi+2 word januaryVBZZd;?NNSZd;NNZd;?JJZd;i-1 tag+i word IN connaughtNNL7A`NNPL7A`?i-1 tag+i word POS sixthRBK7?JJK7i-1 tag+i word VBG agentJJZd;NNPZd;?i-2 word rights RP{Gz?VBPy&1?IN{GzԿNNS(\?DTx?VB|?5^JJ(\?NNOn@VBD{GzPDT&1VBN`"޿RBZd;NNPV-i-1 tag+i word RB insistVBD7A`VBP7A`? i word lensNN\(\@VBZQNNS(\i-2 word acquisitionsVBPI +JJQֿDT?NNS9vVBGOn?NNq= ףp?CCi-1 tag+i word DT carewsNNPB`"NNPSB`"?i-1 tag+i word VBD runVBʡEVBN;On?NNx&i-1 tag+i word PRP$ decisiveJJK7A?NNK7Ai-1 tag+i word DT ploNNP~jt?NNPSJ +ѿNN|?5^i-1 tag+i word CD emhartJJ'1ZNNP'1Z? i+2 word pushNNPQVBN~jt?JJQ?VBD~jti-2 word denominationNNy&1?NNPy&1i word quotingNN/$JJRQVBGy&1? i+1 word ramJJuVNNPuV? i suffix ugeNNP}?5^INNSV-NNV-?JJ}?5^I? i+2 word thusJJˡE?NNh|?5NNPffffffƿi-1 tag+i word VBZ workVB rhVBPS?NN/$ӿi-1 tag+i word VBD toadNNZd;O?JJZd;Oݿi-2 word peoplesVBZZd;ONNZd;O?i-2 word losses VBG +RBZd;O?NNjt JJy&1VBZ/$?VBD333333?VBNOn?INxNNSDlNNP(\?i-1 tag+i word RB youngerJJRV-?JJV-տi word departureNN(\?JJx&1NNP|?5^i-2 word prisonVBNX9vVBDX9v?i+2 word prevailVBN +?JJRX9v?NNV-VBD +VBZd;i-2 word institute VBPDl?VBZ`"DTK7AVBGvNNw/ĿVBNvJJsh|??INK7A?NNPn?i-1 tag+i word CC undergoNNˡEVBDffffffVBZd;ϿVBP(\?i+2 word environmentalistsVBP/$?NNSClJJCl?NN/$i-1 tag+i word VBZ awaitedVBNT㥛 VBDT㥛 ?i-1 tag+i word TO determineNN\(\VB\(\?i+2 word sandersonNNS ףp= NNP ףp= ?i+2 word grazedNNS?5^I ?NN?5^I i+2 word glucksmanNNlNNPl?i-1 tag+i word PRP diesVBZ1Zd?NNS1Zdi+2 word quotationVBK7NNK7? i+1 word knotJJS㥛?NNS㥛i+1 word intendNNPSQ?NNSQٿi-1 tag+i word JJ formedVBNx?JJxi-1 tag+i word , merchandisingNN\(\?RB\(\i-1 word american VBN-JJR|?5^VBSNNPSx&1@RBQNNx&1?FW~jtxVBDClVBP{GzJJGz޿CD/$޿NNS~jt?NNPrh|@ i word fluffyJJp= ף?NNp= ףؿi-1 tag+i word RB timberlandsNNS\(\?VBN\(\ i+2 word l.p.JJ"~jNNP"~j?i-2 word level NN|?5^FWKVBPS㥛?VBNʡE?RBʡE?CDX9v?NNSS?JJ|?5^?VBD= ףp=JJRףp= RBRZd;? i word closesVBZuV?NNSuVi-1 tag+i word VB halfPDTPn?PRPPni-1 tag+i word NN peggedVBN-VBD-? i-2 word moodRBRv?JJRv׿JJzGVBNzG? i-2 word noteNN|?5^?JJ|?5^ i-1 word r.NNSJ +NNPJ +?i-1 tag+i word NNP earnedVBN7A`VBD7A`?i-1 tag+i word DT unusuallyRBK?JJ9vNN+ i word netsVBZOn?NNSOnۿi-1 tag+i word VBG sellJJsh|??NNsh|?i-2 word receptionVBV-NN9v?JJZd;Oi+2 word bankerRPClNNP\(\׿IN+?i-1 tag+i word RB squareVBQRB~jt?JJZd;Oi tag+i-2 tag NN DTEXq= ףp?INQ?RP)\(?NNSCl{RBS~jt?VBPp= ףпVB|?5^?NNPSnCCQJJR&1ҿVBDV-?RB~jt?WRBA`"?WP&1JJVBZ\(\?PRP$ +VBGM @FW rпMDDl?JJS7A`ڿSYM9v?NNGzPOSE?CD/$DTZd;?RBRPnNNP= ףp=?VBN r?''~jt?WDTK7A`i-1 word francoiseNNy&1NNPy&1?i-1 word fuelingJJ5^I ?VBD5^I  i+1 word pastDTClNNbX9?NNSMb?JJK7?RBlҿi-1 tag+i word JJ fallVBPK7A`?NN5^I ӿJJ/$VB rؿi-1 tag+i word NNS collapsedVBNT㥛 JJsh|?ݿVBD\(\?i-1 tag+i word NN inflateVBn?NNni+2 word providingNNSMbX?VBGjtJJMbXNNjt?i-1 tag+i word VBP riseVBy&1NNy&1? i suffix barVBD{GzVBNNSClNN}?5^@JJGzi word boomingVBGw/JJl @NN|?5^ i suffix egaJJ @NNlRBuVDTMbX9NNSGzֿNNP~jti-1 tag+i word RB pointsVBZ +?NNS +οi-2 word theaterVBNףp= ?VBDףp= i+1 word personal NNPx&RBB`"?VBDпVBN"~jܿJJR'1ZVBZ rhDTZd;O?NNT㥛 пPOS rh?RBR'1Z?JJ+ǿi-1 tag+i word VBD successfullyJJRV-RBV-?i-1 tag+i word JJ lowJJx&?NNA`"RBtVֿ i-1 word peteNNSClNNPCl? i word terrorNNtV?NNPFxVB333333 i word genderVBʡE?JJRHzGNN}?5^Iܿi+1 word involveRBCl?IN/$VBClWDT/$?i-2 word buriedNNMbXNNPMbX?i-1 tag+i word NNP sinatraNNPS㥛 ڿNNP㥛 ?i-1 tag+i word JJ motifsNNSB`"?NNB`" i-2 word ohDTn?WDT!rh̿UHv?RBvINʡEi word bargainsVBZjtNNSjt?i-1 tag+i word -START- yet RBV- @NNX9vNNP5^I INQNNS\(\VBQCCffffff @PDTjtJJSi-1 tag+i word CC deathsVBDlٿNNS rh?NNM i suffix day NNP5^I VB/$ JJzGa@NNʡE?VBD +VBNA`"CDQNNSSRBK @i-1 tag+i word IN paradiseNNh|?5NNPZd;O?NNPSnѿi-1 word districtVBZ7A`NNS7A`?NNOn?JJKNNPL7A`?i-2 word nonstopNNK7JJ7A`¿NNPʡE?i-1 word complianceNN?5^I JJ\(\?RBy&1i+1 word complaintJJd;OοNN;OnNNP?5^I ? i word bornRBX9vNNS"~ҿVBN333333 @NNZd;O i word accordJJMbNNS)\(NNPtV?VB&1?NNPS~jtNNd;O?FWMbX9i-1 tag+i word `` thirdJJffffffNNPffffff?i-1 tag+i word CC philosophyVB;OnNN;On?i-1 tag+i word NN resolutionVBZy&1NN333333NNPOn?i-1 word catalogueVBZMbXNNMbX? i suffix BBNNNPS}?5^INNP}?5^I? i suffix dugVBPtVVBD(\@VBZ rhi tag+i-2 tag , WDTNNQUH= ףp=VB-?RBS㥛Ŀi word acceleratedVBN&1?VBD&1ʿ i-1 word armsVBClVBP-NNQ8@NNP1Zdi-2 word geometricVBG"~JJZd;?NN+i-2 word appropriationsVBy&1?VBPy&1i-1 tag+i word PRP$ caesareanJJX9v?NNPX9vi word orchestraNNʡE?RBQJJT㥛 i+1 word cardNNʡEJJʡE?i-1 tag+i word : alongRB-IN-?i+2 word tweedVBZX9v?VB㥛 VBP%Cܿi-1 tag+i word POS screensNNSx?NNxi+1 suffix ndyVBZQ?DT-NNSQIN-?i-2 word meetingsVBG'1Z?VBNV-?NN'1ZVBDV- i+1 word noneRBV-ݿINV-?i-1 tag+i word IN parkwayNN(\?JJ(\¿ i word buyingVBP`"VBGn?NNx @JJ5^I INV-ҿi-1 tag+i word DT distinctJJʡE?NNʡEi-1 tag+i word NNS removeVB7A`?VBPx&1VBDq= ףpi-1 word nebraskaVBP\(\NNSJ +?NNS?JJ1Zdi tag+i-2 tag RB )VBNHzGJJEVBDuV@i+1 word sublimeVBZd;O߿NNL7A`?JJjti-1 tag+i word -START- furukawaNNQοNNPQ?i-1 tag+i word IN functionsNN rNNS r?i-1 tag+i word -START- meetingVBGQ?NNQi-1 tag+i word JJ emptyJJl?NNli-1 tag+i word WDT bearsVBZ-?VBP-i-1 tag+i word VBD containmentJJT㥛 NNT㥛 ?i-1 word soaredNN7A`RBR㥛 ?JJClINx&1?RPx&1RBx&1? i suffix dewNNSh|?5VBNʡENNMb?i word encouragedVBN'1Z?JJy&1?VBDPni word televisedVBNq= ףp@JJKVBDZd;i+2 word radioVBN333333VBD333333?i+1 word ziyangRBSNNPS?i+1 word officialNNffffff޿VBNI +?RB5^I VBZMbNNSV-@NNPGz?JJRQi-1 suffix angVBZ"~NNSX9vNNP rh?VBGzNNPS rh?NNZd;VBDS?VBPˡE?i-1 tag+i word JJ alternativeJJS?NNS i-1 tag+i word PRP$ ghostbustingVBGsh|?NNsh|??i-1 tag+i word FW communistsNNPS"~j?NNP"~ji-1 suffix inoVBNZd;VBPsh|?@RBSJJRVBOnJJT㥛 ?NN(\տRBR?i word charlatanryNNʡE?JJʡEi-1 tag+i word VBP seeVBS?NNPSi+2 word alwaysJJK7ѿNNPv/տPRPq= ףp?NNS#~j?NNL7A`ؿ i-1 word laysRPK7ARBlINX9v? i-1 word mgmNNOn?JJOni+2 word funnyRPzG?RBzGҿNNP/$NNPS/$?i+1 word distateVBGK7A`?NNK7A`i-1 tag+i word NN trackNNV-?RBV-߿i word kerloneNNV-NNPV-? i suffix unyVBZK7AJJ%C?NNw/i+2 word assertionJJKPDTK?i-2 word barrierVB rhNN rh?i-1 word philosophicNNSlҿNNnFWoʡ?i+1 word copingNNS㥛?JJS㥛i-1 tag+i word : getVBm?VBPmi-1 tag+i word NN reflectedVBNHzGVBDHzG? i-2 tag NN$JJCl?NNPrh|?VBV-LS ףp= VBN5^I ?RBSNbX9?JJRMbWDTV-@RB)\(̿CDK7A?NNoʡ?VBG9vIN r?UHS?PRP$/$WP+?RP{GzFWENNSX9vWRBMbX?'' ףp= ?VBZ~jt?POS?5^I ?PDT&1?RBR rhSYMMbX9VBD$C?$p= ף?MDK7ٿDTT㥛 PRP+CCm?EXw/NNPSSJJSL7A`VBPx&ѿi-1 suffix ntsVBD-JJm@NN/$NNP%C IN= ףp=?RPFx?NNSKRBRZd;ϿPRP$rh|?VBGX9v?VBNffffffƿ''oʡVBZK7?NNPS rhJJRI +WDTV-@DTMbX9FW!rh?PRP-RBZd;VBPy&1POSffffff?VBS @UH"~i-1 tag+i word CD pointVBPENN= ףp=@JJKVBDV-ڿINX9vi-1 tag+i word VBZ grownRBʡEVBN rh?JJv/i-1 tag+i word IN gamingVBGy&1NNy&1? i suffix antVBPM @RBMb INX9vJJS ףp= JJRV-VBD~jt?VBZ`"NNPS= ףp=JJd;O!@WDTZd;OPRP$ ףp= NNSvVBRQ@NN/$ @NNPx&1̿CC5^I VBNv/i+2 word channelsVBNOnJJOn?i-1 tag+i word `` parenthoodNN#~j?NNP#~ji+2 word recordingJJS㥛NNNNS?VBNS㥛?i word bulletinNN+?CD\(\VBZPnпi-1 tag+i word VB felledVBZ\(\VBD\(\?i-1 tag+i word RB unsettledJJ%CVBD%C?i-1 tag+i word NNP operationsNNP#~j?NNPS)\(FWV-?i+2 word michelinRB rh?IN rhݿi+1 suffix ielJJv/NNPv/?VBʡEVBD;On?VBN;On¿VBPʡE?i-1 tag+i word RB stronglyVBZQRBQ?i+2 word objectedNNPK7JJK7? i suffix ragVBPV-@NNSx&1VBN{GzJJmտNNp= ף?i-1 tag+i word DT scruffNNSףp= NNףp= ?i-1 tag+i word -START- demandNNd;O?NNPd;Oi-1 tag+i word NN opportunitiesNNPS#~jNNS#~j?i+1 word assistantVBZ!rhNNx&1?POS!rh?JJx&1i-2 word gradesRBV-ϿJJV-?JJRMbNNMb?i-1 word ernestNNʡENNPʡE? i-2 word '80sVBNjtVBDjt? i word furyNN rh?NNP rhi+1 word responsesJJ?NN i word livelyJJ ףp= ?RB ףp= i+2 word tripleVBHzGNN{Gz?VBD?i-1 tag+i word JJS peaksNNSZd;O?NNZd;Oi-1 tag+i word RB yourselfVB1ZdPRP1Zd?i-1 suffix ishPRP$\(\VBG7A`VBDM?VB/$VBPI +?VBZ ףp= CDv/NNS/$?FW +?RBRK7VBNRQ?PRP㥛 @IN~jt?NNPv/?NNPSx&1NNE?RBsh|?JJRK7?JJx&1WDT$CDTOn?i-1 tag+i word DT settingVBGB`"NNB`"?i-2 word stretchNNSV-?NNV-i+1 word capabilitiesPOS/$?JJ/$i-1 word lookedRB&1?INS?VBSRP&1JJS?PRPSi+2 word pipelinesVBZ$CVBP$C?i-1 tag+i word POS passengerNNZd;?JJZd;i-1 tag+i word PRP marksVBZV-?VBDV-i-1 suffix tedCD?5^I @JJRK7?PRP$nRPʡEƿPDTʡE@IN1Zd?WDTKNNtV?DT|?5^?RB?5^I ?NNPS!rh?JJ(\?VBZ^I +VBNA`" VBPV-FWGzPRPjtNNSPn?NNP rпVBG7A`VBDPn?VB"~j RBRh|?5?i-1 tag+i word RB preparedJJzG?VB rVBN-i+1 word assessmentsJJ333333?NN333333i+2 word deterrantRB㥛 ҿIN㥛 ?i-1 word shapeRBSJ +JJSJ +?i-1 tag+i word WDT grazedVBPp= ףVBDp= ף?i-1 word catholicNNT㥛 NNPT㥛 ?i-1 tag+i word , roofingVBGx&1NNx&1?i-1 tag+i word POS endorsementNN1Zd?JJ1Zdi-1 tag+i word VBZ closestJJSsh|??RBsh|?ݿi-1 tag+i word ( abstinenceNN#~j?RB#~ji word eyebrowNNʡE?JJʡEi-1 tag+i word VBP irkedVBNI +?JJI +i+1 word seven VB= ףp=?JJS{GzVBPzGʿVBGx&1?VBZffffffRPzG?RB&1ʿNNFxVBDZd;?NNS(\POSffffff@JJV-?INDl i word ninthJJ rh?NN rhi-1 tag+i word JJ marbleNNS?JJSi-1 tag+i word DT gloomierRBRtV@NN?5^I JJRSi-1 tag+i word NNP haysNNPS ףp= NNP ףp= ? i word savvyVBN-ӿRBClNNSRQJJl?NNRQ?RBR%Ci-2 word mitsukoshiJJ+?NN+i-2 word resourceNNPSQNNPQ?i-1 tag+i word VBG bacteriaNNS r?NN ri-1 word formalVB`"INClNNK7@JJ= ףp=NNP#~j?i-1 tag+i word IN reducedJJDl?VBNMb?NNGz׿i-1 tag+i word IN futureJJ&1@NN&1 i word work VB;On@JJMbNN`"y@INx&RBR)\(VBP(\@WDTMbpRBKNNSsh|?NNPZd;OJJSoʡWP9vVBZ(\i+2 word plazaRPy&1INy&1?i-1 tag+i word PRP$ formalNNSClJJCl?i word helicoptersNNPS= ףp=?NNP= ףp=i-1 word outokumpuVBZףp= NNPS~jtNNPh|?5?i-1 word connerNNPSRQ@NNPRQi-1 word committedVBG-NNV-?JJ~jti-1 tag+i word CC workingNNrh|@JJKVBGGzi word ethicistNNT㥛 ?JJ7A`ڿNNP +i-1 tag+i word VBN northwardRBGz?JJGz޿i-1 tag+i word -START- adDToʡNNV- @JJMbXRB!rh̿NNPv/i+1 word reserveNNPSKJJMbNNQNNP;On?i-1 tag+i word JJS detectiveNNMb?JJMbi word trimmedVBNS?JJSi-1 tag+i word NNP palmeroNNPS㥛 NNP㥛 ?i-1 tag+i word POS brandsNNPSX9vNNSX9v?i-2 word authorVBZ\(\?RBSx&ѿJJSx&?NNS\(\i-1 tag+i word CC priNNZd;OͿNNPZd;O?i-1 tag+i word IN continuedVBD{GzVBNV-׿JJK7A?FWMbi-1 tag+i word VBP aimedVBN+?RB+i-1 tag+i word VBP continuedVBNZd;OJJ5^I ˿VBD㥛 ?i-2 word atmosphereVBGy&1NNy&1?i-1 tag+i word DT netherlandsNNPSZd;O?NNSA`"NNPsh|??i-1 tag+i word VBZ openingVBGQJJQ?i word drivingVBG +NNsh|?JJ/$?i+2 word convincingVBP|?5^?VBNףp= NN|?5^VBDףp= ?i+2 word exorciseVBNS?JJSÿi tag+i-2 tag IN :VBN"~?VBZ}?5^I?VBGS?NN{GzĿJJS{GztPRP= ףp=RB= ףp=IN= ףp=?CDOnJJ5^I PDTʡENNSK7?JJRV-?NNP|?5^?VBDS㥛?CCuV?DTp= ףRBRV-VBP\(\ i word nailNNK7A?RBK7A i suffix kleVB(\?VBPMbX?VBDZd;Oi-1 tag+i word RB asVBV-RBV-@VBN+JJQINl?i-1 tag+i word TO cooperateVB9v?NN9vi-1 word michiganNNSZd;ONNV-?JJV-VBZZd;O?i-2 word caterpillarJJsh|?NNPsh|??i-1 tag+i word VB therapyNNSKNNK?i-2 word writtenNN rhVBDS㥛NNPMb@NNS|?5^?JJ+i-2 word silvermanNNZd;?JJZd;Ͽ i-2 word folkNNSI +JJV-?NNni-1 tag+i word IN audioJJ|?5^@NNrh|DTCli-1 tag+i word VBN boundingVBGS㥛?JJS㥛i word sensitiveJJp= ף@NNp= ףi-1 tag+i word VBG sparesNNS-?NN-i-1 tag+i word DT surprisingJJK?NNx&1VBGQտ i word finalJJKNNPK?i-1 tag+i word IN shopliftingVBGQNNQ?i-1 tag+i word JJ religionNNQNNPQ?i-1 tag+i word NN scatteredVBNuV?VBDuVi-2 word gauloisesVB+NNSQӿNNuVVBDDl@i-1 tag+i word NN wardensVBZGzNNSQ?NN(\i word constantJJQ@NNMbNNPmi+1 suffix us$RB}?5^I?IN}?5^I̿i-1 tag+i word CC generalNNQJJQ@i-1 tag+i word , boughtNN%CVBNmJJlVBDS@i+1 word kangyoNNPʡE@VBPK7A`NNS㥛INvi-1 word coughingRPjt?RB ףp= ߿IN%C i+2 word -VBG"~j?NNV-?JJ/$i-1 tag+i word RB desperateJJʡE?NNʡEi-2 word scalesJJRoʡ?JJoʡi-1 tag+i word NNP i.NNZd; @NNPZd; i-2 word turnoverVBG ףp= JJtV@NNKi+1 word charactersNNPSZd;JJZd;? i-1 word rawNNSx&NN?5^I ?JJli-1 tag+i word WDT openedVBZ"~VBNzG@VBDPni+2 word upsideRBGz@JJGz i suffix ily FWoʡVBʡENNPS1ZdNN+ VBPʡEJJ!rh @VBZ\(\NNS㥛 0NNP"~jRBoʁ2@VBD-VBNRQi-1 tag+i word CC jeepsNNPS&1NNSX9v?NNPK7A`i word typewriterNN;On?JJ;Oni+1 suffix hisWDTZdPOSOnWRBjtNNPS+NNSV-VBGzG@JJQkRP!rh?RBy&1NN5^I NNP ףp= PDTQ@RBR@VBD333333@VBNMbVBPˡEWP!rh?CD|?5^INd;O @JJR(\VBZ-@DTQVB|?5^@CCSi+1 word provocativelyRBRv/?JJRv/i-1 word regardedRBjt?NNL7A`?INPni+1 suffix esyJJn?NNni+1 word exchanges VBZd;ORBRBRL7A`NNPQ?NNPSS㥛VBNT㥛 ?JJRL7A`?JJ|?5^?DT?NNSʡEi-1 tag+i word DT amexNNP;On?NN;On i suffix ses NNSB`"[,@NNP(\uNNPS'1Z@NN)\h&FW%CԿVBNZd;ORB$CINHzGVB(\JJVBDlVBPtVVBZsh|+@i-1 tag+i word NN setNNSZd;VB|?5^NN7A`?VBD`"VBN!rhm@VBP}?5^Ii+1 suffix udaNN&1NNP&1?i word indosuezNNPSEȿNNPE?i word hyperactiveJJCl?NNCl i word rerunsVBZFxNNSS?NNmi-1 tag+i word IN shrankVBP/$VBD/$?i+1 word revenues NNOn?JJK7INʡE?NNP(\?RBS㥛VBDK7?VBN-WDTMbDT~jti+1 suffix usyVBG#~jJJK7?POS+RBx?INB`"VBZ+?i-2 word usualPRP$x&1?NNS;On?PRPx&1ԿNN;On¿i+2 word georgiaDTB`"?VBNw/JJw/?INB`"i-1 tag+i word VBD entitlesNNSxVBZx?i-1 tag+i word DT emsNN|?5^NNP|?5^?i word longestJJS5^I ?NNtVNNPDl?i-1 tag+i word DT prolongedVBNI +NNV-JJ{Gz@i-1 tag+i word VBG thinkVBA`"?NNA`"i-1 tag+i word NNP fuseVB!rhԿNN!rh?i-1 word patentNNSuV?NNEJJ"~jԿNNP ףp= ?VBZuVi-1 tag+i word VBG abroadNN rؿNNPZd;RBh|?5@JJK7A`i+1 word bicycleRB +NNP +?i+1 word heartJJʡE@DTOnRBDlVBOn?NNZd;Oi-1 word deadlyNNK7A?JJK7Ai-2 word antarcticaVBPS㥛?NNS㥛i-1 word irreparableVBFxVBPsh|?NNSZd;ONNE?i word translucentJJ!rh?NN!rh i-1 suffix feVBGB`"NN(\?JJ rhINS㥛?VBZZd;O?NNSZd;ONNPSOni-1 tag+i word NN followingJJ{GzԿVBGQ?NN/$ѿi word magneticallyVB+ÿRB+?i-1 tag+i word NNS haplessVB|?5^ɿRBR~jtRBx&1JJ?i-1 suffix youVBP?5^I @VBGClJJRE?VBuV?RPGzֿNNjtVBNx?VBDtVIN(\?RB ףp= ߿DT/$VBZClNNPw/MD rh?RBR ףp= WDTbX9ƿJJI +?i-1 word realizedNNDl?JJDli-1 word miniscribeVBZ +VBN +NN +?VBD +?i-1 tag+i word NNP treasurersNNPS$C?NNP$Ci+2 word himselfVBDX9vNNSClJJS㥛@RBZd;O?NNP ףp= i-1 tag+i word DT animalsNNPSףp= ÿNNSX9v?NN+i-1 tag+i word IN shiftingVBGʡE?NNʡE i suffix tetRP+NN1Zd@NNPbX9i-1 tag+i word NNP continueVBDQVB= ףp=VBP9v@NN#~ji+1 word achievedNNQ?JJQi-1 tag+i word VBN awayRP%C@RB%Ci-2 word chargingJJ;On?RBp= ףNN1Zd?i+1 word scaredJJSףp= RBy&1?JJy&1RBSףp= ? i word coastJJtVJJR{GzܿVB;OnNNl @i word erbamontNN!rhJJ!rhNNPx?i word tougherNNuVVBDMbRBRK?JJRףp= W@VBNrh|RBGzNNSPRP$&1i+2 word sparklingNNSʡE?NNʡEi-1 tag+i word NN capitalistsVBZKNNSK?i+1 word balloonRBw/JJS㥛ĿWPJ +NNjt?WDTJ +@ i word boyerNN ףp= NNP ףp= ? i+1 word donsNNPx&1?JJx&1i word plantagoNNy&1@NNPy&1i-1 tag+i word NN boomNNSQNNQ?i-1 tag+i word IN extendedJJnVBDL7A`VBNm?i-1 tag+i word IN nestleJJ333333NNP333333?i-1 tag+i word CD compromiseNNSjtNNjt?i-1 word treatNNSV-?NNSſRBK7ѿCD/$i+2 word titledVBGGz?NNGzi-2 word pairsNNS= ףp=?NN= ףp=i-1 tag+i word VBD quotedVBNl?JJli-2 word rayburnJJGz?RBGzi-1 tag+i word DT meaningfullyNNʡERBʡE?i-2 word magicianNNK7?JJK7 i+2 word twNNPS9vNN~jt?NNPI +VBZ9v?VBP9vi-2 word hunterNNPSL7A`VBG\(\?JJ\(\߿NNPL7A`?i-1 tag+i word VBG profoundJJrh|?RBrh| i suffix LaVBN)\(ܿJJ ףp= NNP(\?i-1 tag+i word CC releasedVBN&1?JJ&1i-1 tag+i word VBZ neverthelessJJoʡRBoʡ?i-1 tag+i word DT noneventNNT㥛 ?JJT㥛 i-2 word protectedNN(\?JJ(\"i-1 tag+i word -START- terminationNNtV?NNPtVi+1 word implementationVBx&1?NNx&1i+2 word hiredNNSuVJJuV?i+2 word cartoonVBGZd;?NNZd; i-2 word sungNNSh|?5NNh|?5?i-1 tag+i word DT athletesNNPSʡENNSʡE?i-1 tag+i word , sayVBn?NNPS +CCVBPbX9?UH'1Z?NNSNbX9i-1 tag+i word DT pejorativeJJ r?NN r i+1 word sunVBD`"DT`"VBP`"?IN`"? i+2 word goesNN'1Z?NNPSJJ|?5^?i+2 word memoryNNS?5^I NNL7A`ؿJJsh|??i+2 word chromosomeNNJ +?JJh|?5CD+? i word watsonNN ףp= NNP ףp= ?i-1 tag+i word IN conformingVBG?NNi-2 word paintJJCl?NNClɿ i+1 suffix c.NN{GzNNP{Gz? i word routeVBףp= ÿVBP%CNNStVJJR"~jNNMb@i-1 word informNN1Zd?NNP1Zdi word classicsNNS?VBNi-2 word householdsVBD~jtVBP~jt?i-1 tag+i word JJ dodderingNNKVBG`"JJ333333? i-1 word lireVBGClJJCl?i+2 word signaledNNS ףp= JJ rh?NN rhNNP ףp= ?i-1 word samuraiNNS;OnVBNKJJ/$?i-1 tag+i word JJ trainsPRP$+NNS+?i-1 tag+i word VBG rightNNMJJ/$޿RBOn@i word investigateNNQVBT㥛 ?VBP#~ji-2 word societiesVBPA`"RBA`"? i suffix USHNNZd;ONNPZd;O?i-1 tag+i word DT parentJJv/NNv/? i-1 word macNNHzGNNPHzG?i-1 tag+i word VBZ unconvincingVBG~jtJJ~jt?i-1 tag+i word WDT ownedVBPuVVBDuV?i word blessedVBNQ?JJQi word boutiqueNN|?5^?JJ|?5^ҿi-1 tag+i word POS exportNNx&?JJx&i-1 tag+i word RB causedJJMbVBNMb?i-1 tag+i word CC saksNNPSJ +NNPJ +?i-2 word pitchDTK7AINK7A?i-1 tag+i word -START- partlyRBˡE?NNPˡEԿi-1 tag+i word , hailedVBNQVBDQ?i-1 tag+i word -START- yutakaUHSNNPS?i-1 tag+i word RBS handledVBNrh|?VBDrh|Ͽi-1 tag+i word VBP includedVBNQ?VBDQi-1 tag+i word NNP intelligenceNN/$NNP/$?i-1 tag+i word CD tonyJJjt?NNjti word applaudsVBZv/@NN/$JJ?5^I ڿVBDQi-1 tag+i word NNS exhaledVBNOnVBDOn? i-1 word bond VBN9vJJS㥛?NNSʡE?NNPQ?VBZ/$VB(\VBGw/NN9v?VBD5^I ?VBP-޿INi-1 word sinyardVBZ~jt?VBT㥛 ?NNS}?5^IVBD rh i word incomeNNPS rhѿNNp= ף?NNP~jt i word countNNSMbX9NNMbX9?i-2 word containersVBGףp= ?JJףp= i-1 word guidelinesVBGB`"?JJB`"i-1 word restlessNN~jt?JJ;OnVBP+i word suspiciousJJ$C?RB$Ci+2 word seatedJJGz?NNGzi-2 word voluntarilyVBG-?NN-i-1 tag+i word VBD soRBx&?IN|?5^VBN+i-1 tag+i word RB punyVBZK7AJJK7A?i word footageNNS$CNN$C? i word nodNN rh?JJ rh i word razorVBZh|?5NNV-?JJv/i-1 tag+i word JJ returnVBPw/?NNSNbX9NNjtĿi-2 word piloteNNS+JJn@RB/$i-2 word extraordinaryVBPjtNNSjt?i+1 word argueNNPSy&1RBMbNNPw/?i+2 word bustedVBN333333VBD333333? i word passVBˡE?NNuVVBPn?RBˡEĿVBZA`"ۿNNS(\ i word customNNV-@NNSw/RB7A`JJ?5^I ڿi-1 tag+i word NNS carryVBP?NNPi-1 tag+i word DT liberalsNNPSV-ǿNNSV-?i+2 word transplantingNNP"~NN"~?i+1 word colombiaVBP-?JJK7ANN-INK7A?i-1 tag+i word , israeliJJ-?NNP-i+1 word entitlesJJMbXVBDxNN~jtRB"~j?i-1 word manhandledRP-PRP-? i+1 word wynnNNClNNPCl?i-1 word woollyVBZV-NNSV-?i-1 tag+i word RP storeJJRʡENNʡE?i-1 tag+i word VBG alligatorRB+NN+?i-2 word anywayNNy&1NNPy&1?VBZ(\RB(\?i-1 tag+i word DT jointNNPv/?JJzG@RBRZd;NNQi-2 word signedVBGS㥛NNQ?VBDw/VBNw/?JJ"~jNNPQ?NNPS333333?i-1 tag+i word NN hopesVBZT㥛 ?NNST㥛 пi-1 tag+i word VBD herbicideVBNV-߿NNm?CDSi-1 tag+i word IN criminalityNNV-?NNPV-i+2 word precisionNNSmJJHzG?NNS㥛i-1 tag+i word NNS outlinedVBNV-?VBDV-ڿi word initiativesNNS?PRPT㥛 NNvi word justifyVB1Zd?NNP1Zdi-2 word scaleJJl?VBDli+2 word sullivanNNP^I +?NN^I +i-1 tag+i word IN coolingVBGV-ݿNNV-?i+1 word williamVB?NNi-1 word authorityRPJ +ѿDTEԸWDTEԸ?INJ +?i+1 word academeVBPMb?RBMb i+2 word consNNS333333?NN333333i-1 tag+i word VBD hundredsNNQNNSQ?i+2 word whoeverRBK?VBP-VBN= ףp=?JJJ +i+1 word adobeVBN+VBD+?i-1 word ogilvyVBZV-?NNSV-NNZd;NNPZd;?i+2 word openingJJ?5^I ?VBNQ뱿NN`"NNP333333? i suffix nstINʡE@RBRMNNP~jtMDw/VB㥛 ڿi-1 tag+i word NNS occurredVBN|?5^VBD|?5^?i-1 suffix sesVBN~jtNNPS㥛?NN rhVBDxVBPv/@PRPK7A`?RB(\?DTffffff?VBG?WDTS?NNSxRBRK7ɿJJI +?RPʡEPOSrh|?''rh|INV-CDM?PRP$K7A`VB'1Z i word weaponNNSZd;ϿNNZd;?i-1 tag+i word DT flagNN7A`?JJ7A`i-1 tag+i word PRP$ technologyJJvNNPv?i-1 word geneticallyVBN'1Z?JJ'1Zi-1 tag+i word VB nothingNN5^I ?NNP|?5^VBGʡE i word delNNSFWS@i+1 word paintsVBZףp= ?NNSI +NNd;O i suffix G&GNNPV-?VBV-i-2 word biddingNNV-JJRQ?CD㥛 ?DTGz?NNPv/ i-2 word backJJSJ +?RBRMbX?RBZd;OIN}?5^I?NNPh|?5?VBV- VBPSӿVBZ/$?JJR5^I $ rhRBSJ +VBDGz?NNjt@VBN(\?JJClVBG|?5^i-1 word earthquakeVB"~j?NN +VBDS㥛?VBN/$?NNSJ +@NNPʡEi word magisteriallyRB+?NN+i-2 word sealedVBZSVBNS? i-1 suffix m.NNPS7A`NNP7A`?i-1 suffix halNNSMbX9NNMbX9?i-2 word detailingWDT ףp= ?WP ףp= i+2 word scoreVB+@JJRT㥛 RBRT㥛 ?VBPSJJHzGNNPx&1i+1 word positionVBNB`"?JJbX9?VBGoʡNNvFWjtJJS&1?RBR/$JJRJ +?i-1 tag+i word FW mundoNNRQؿNNPRQ?i-1 word drinker''MbX?POSMbXi+1 word terryPRP\(\NN\(\?i-1 tag+i word NNS reformVBP&1ڿNNS'1ZNNNbX9?i+2 word interpretingRB rh?RP rh i word kateNN(\տNNP(\?i+2 word agriculturalRBRuV?JJRuVݿi-1 tag+i word NNP littleJJjt?NNPjti+2 word closetVBMRBM?i word foreclosedVBN+?JJtVVBD333333ۿi-1 tag+i word NN activistsVBZA`"NNSA`"? i word sorelyRBʡE?JJʡEi+1 word exceptionsWDT+JJK7?NNvi-1 word excitementVBP{Gz?NNOnJJ7A` i+2 word setNNS㥻?JJR1ZdӿVBD^I +?RBNbX9@VBNQVBZ'1ZNNSMb?NNPʡEVBw/NNPSRQJJ㥛 @VBPw/WDT+LS;Oni-1 tag+i word VBP timeRB'1ZNNffffffNNPK7A`?i-1 tag+i word WP decideVBPʡE?RBK7A`ſVBD333333i word specialtyNNX9v@JJQVBDw/VBZOni-1 suffix eupVBZy&1ܿNNSy&1?i-1 tag+i word JJ gemsNNS?FWѿi-1 tag+i word JJ physicianNNS+NN+?i-2 word inflateVBD+NNS+?i-1 tag+i word TO assessVBI +?RBI +i-1 word means VBP= ףp=RBp= ףINK7@VBZ+NNPOnJJ{Gz?NN}?5^I@RBRZd;O߿DTjtFWMbJJRZd;O?i-1 tag+i word CD yearsNNPK׿NNPSʡENNS?i-2 tag -START-"WPCl?LSףp= ӿRPp= ף?FWS㥛PRPK7?RB-PDTX9v?VBDK7A?VBN(\ݿJJR~jtUH/$ƿPOSsh|??WRBy&1?RBS|?5^?EXzG?NNS r?NNP5^I JJSx&1?VBPK7ACDm?CC㥛 ?INrh|WDTZd;OǿDTL7A`?NN1Zd?VBlMD= ףp=?PRP$V-?VBZM?JJHzGRBRp= ףؿNNPSx&1VBGNbX9''uV?i-1 tag+i word IN atmosphericJJzG?NNzGi-1 tag+i word NNS receiveVB?5^I ?VBP?5^I i-1 word ghostsRBʡE?INʡEi-1 tag+i word IN layoffsNNS}?5^I?NN}?5^Ii+1 word jurisdictionNNSMbVBZMb?i-1 word examinersVBOnVBDOn?i-1 word bomberPOS/$?JJ/$ i suffix S.pNNPS-NNP-?i-1 tag+i word VBD fireballsNNClNNSCl?i-1 tag+i word NNS displayedVBN'1ZVBD'1Z?i-1 word fossilNNA`"?JJA`"ۿVBZw/NNSw/?i-1 tag+i word IN stealingVBG+?NNX9vJJCli+1 word somethin'VBZʡE?POSʡE޿i-1 tag+i word IN wisconsinJJ/$NNP/$?i-1 word flawsDT(\WDTx?INx&1 i word nikesNNPS-@NNP- i suffix seNNSZd;NN"~jFW/$? i-1 word sawVBG(\ڿNN(\?i+1 word concentratingNNP&1?JJ&1i+1 word satellitesJJ-?NN-˿i+1 word propelVBPףp= VBDףp= ?i+2 word monitorCDuVVBNMbX?NNuV?VBDMbXѿi word opposingVBGV-?JJV-i-1 tag+i word NN obligattoNN#~j?CD#~jԿi-2 word burroughsRBS㥻?INS㥻i-2 word upholdNNMbX9?JJMbX9 i word fairerJJR1Zd?RB1Zd i-1 word wakeRPrh|RBrh|?i-1 tag+i word IN alisardaNNP-?NN-i-1 tag+i word IN wyomingVBG+NNP+?i-1 word bleachJJ+?NN+ i-1 tag IN!PRP$Fx?WDT ףp= ׿PDTw/?INZd;VBG'1Z@VBZOnJJK7A?RBJ +ѿRBRx&1VBNm@DTtV?PRPbX9?NNS/$@JJRn@UH~jtпNNzG@NNP/$ @VBbX9 WRB7A`EXv/?VBDnPOSˡENNPSbX9?FW!rh?WPK?RPףp= CDlMD$CJJS"~jܿVBPI +$S㥛?CCGzοRBSK7i+1 word relativesVBDGzVBN$C?JJV-ݿi-2 word spottyVBNZd;?VBDZd; i word couponNN`"?NNP`"i word computersNNSV-?NNP"~NNPS&1? i-2 word kerrVBP?NNi-1 tag+i word IN uncertainJJ%C?NN%C i suffix lelVBPx޿JJ= ףp=?VBZ ףp= VBRBm@NN= ףp=i-1 tag+i word NNP s.aNNPSV-NNPV-?i+1 word thyselfVBZ\(\߿VBjt@NNPjt i+1 word treeNNx&1?JJx&1i-1 tag+i word NN addedVBNJJoʡ@VBDDli+1 word befallenVBQVBPQ?i-2 word federallyJJK?INK i word nicheNNn @NNS7A`RB rJJClDT i-1 word stepRBR$C?RBʡE @IN/$NNSzGRP+NNCli+2 word witnessVBZrh|?VBDrh|i+1 word requisitionNNV-?JJV-i word executivesNNSNbX9@NNPd;OVBZDli-2 word assertionRB/$?JJ/$i-1 tag+i word VBD poofNNK?RBRffffffRBS㥛i-1 tag+i word POS leadNNJ +?JJJ +ѿi word showroomsNNS~jt?NN~jti-1 tag+i word JJ radarNNl?JJli-1 tag+i word JJ aloftRBzG?NNzGi-1 tag+i word NNS beginVBPx&1?RBK7VB +i+1 word saladNN!rh?FW!rhi-1 tag+i word NNP embassyVBZ+NN+?i-1 tag+i word NN minersNNSd;O?VBDd;Oi+2 word downpaymentsJJNN@i-1 suffix olaVBZ~jt?NNS~jti-1 tag+i word RB proposedVBNoʡVBDoʡ? i word cocaJJ(\NN(\?i-1 suffix cnwVBNٿVBD?i-1 tag+i word DT africanJJPnNNPPn?i-1 tag+i word CC harlemPRP$MbX9NNPMbX9?i-1 word additionalVBGv߿NNX9v@JJx&i-1 tag+i word NN readyJJ㥛 ?VBD㥛 i+1 word miniscribeVBD +?VBN +i-2 word winnetkaNNP?INi-1 word concedeDT;OnڿRB ףp= INT㥛 ?VBQNNQ?i-1 tag+i word `` refocusedVBNx?JJ#~jVBD'1Zi-1 tag+i word NNP guysNNSZd;?POSZd;i+1 suffix eilPRP$tVFWx?NN!rh?JJ!rh̿NNPrh|i-1 tag+i word TO centeriorVBnNNPn?i-1 tag+i word NN bluntedVBNZd;OVBDZd;O?i+1 word arrayJJK7A`@NNZd;ONNPffffffi-1 tag+i word DT leavingVBGS?NNSi-1 tag+i word IN manufacturedVBNJJ?i-2 word illinoisVBZsh|?NNPsh|?? i+2 word beefVBNPnJJPn?i-1 tag+i word DT modifiedVBNDl?JJDlٿi+2 word leadingNNV-?VBD/$VBN/$?JJV-VBZbX9?NNSbX9i+2 word stallingNNSn?NNni-1 tag+i word -START- almostMD$CVB9vNNP~jtRB"~@IN`"i-1 tag+i word JJ knockedVBD?5^I ?NNP?5^I i-1 tag+i word NN createsVBZI +?NNSI +i-1 tag+i word CC everybodyVBPJ +NNJ +?i+1 word concoctionsJJSffffff?NNffffff i word songNNZd;_@NNSʡEJJK7ARB\(\׿NNPCli-1 tag+i word VBN followingVBG㥛 ?NN㥛 ڿi-1 tag+i word DT exactJJ +?NN +i-1 tag+i word JJ checkingNN\(\?JJ\(\i-2 word fallingNNsh|?ſJJ$CRBd;O@i-1 tag+i word IN excerptsNNS|?5^?RB|?5^ i-2 word pondNNClNNPCl?i+1 suffix ninNNHzGNNPHzG? i suffix ullVBT㥛 ?NN1Zd?VBDRBRʡEJJʡE@NNSni-2 word watergateJJrh|?INrh|i-1 tag+i word CC counselingVBG(\?NN(\i word purchasingVBG(\NNuV?JJrh|NNPL7A`?i word embargoVBGzNN(\?FWp= ףi word toppledVBNS?VBDS i word flyingVBG&1@NNmJJ+NNPK7?i-1 tag+i word -START- drugsNNSuV?NNPuVi word appointeesVBZ;OnNNS;On?i-1 tag+i word VB leveragedNNV-?JJV-i+1 word definesNNE?NNPEi word manfredNNPv/?VBDv/i-1 tag+i word NNPS subtilisNNnNNSn?i-1 word stageVBZ rhPRP$HzG?NNvVBPDlPRPHzGJJ/$@i+1 word mentalityJJPn?NNPn i suffix ssyIN+VBZ+NNSQNNP333333ۿNN{GzԿJJR?5^I JJS%@ i+1 word word''x?JJv?POSxNNvi+2 word genialRBR+?JJR+i-1 tag+i word JJ contentiousNNSoʡJJoʡ?i word reshufflingVBG-?NN-i-1 tag+i word DT youngestJJSy&1?NN㥛 JJ9vi-2 word roofsJJR7A`NNK7?INK7Ai word tourismJJ+NN+? i+2 word zipVBZ(\NNS(\?NNQVBGQ?i-1 tag+i word VB increaseVB-?NN-i-2 word reservedNN1Zd?JJ1Zdӿi word dismayedVBN^I +JJrh|@INClVBP(\NNS%CԿ i word fracasNNStV޿NNtV? i suffix aigNN|?5^NNP|?5^? i-1 word pastNNPSjtVBGGzRB$CNNI +@JJ"~jNNS r?NNPjt?i+1 word professionalNNPCl?NNCli-1 tag+i word NNP considersNNSGzVBZˡE?NNPSCli word flingingVB;OnVBGM?NNh|?5i+1 word boundaryJJR"~?NN"~i-1 tag+i word , fileVBP(\?NNSRBQ i-2 word tentVBZCl?NNSCli-1 tag+i word , swimmingVBGGzNN\(\?JJ ףp= i tag+i-2 tag ) .VBG?NN +?VBDZd;O?JJENNP-VB(\i-1 suffix eshVBN-ۿVBPh|?5JJL7A`VBZp= ףNNSCl?VBG7A`NN{Gz?i-1 tag+i word `` retailersVBZ(\NNPSp= ףNNPJ +?i-1 tag+i word : soCCGz@RB/$IN~jti word visitorsNNPSK7?NNS9v?NNPw/i+2 word exoticNNSjt?NNjti-1 tag+i word VBN moralRBGzJJGz? i+1 suffix edNNP+?CD+i-1 tag+i word RB accommodatingVBGMbX?JJMbXi+2 word desertsNNS+?NNP+i-1 word drivesWDT +?IN +i-1 tag+i word VBG caughtJJffffffVBN+?NNʡEֿ i word shabbyJJףp= ?NNףp= i-1 tag+i word NN developedVBZA`"ۿVBNjtJJ?5^I ?VBD'1Z?i-1 tag+i word : texacoNNS㥛NNPS㥛?i+2 word space VBffffff?NNPS/$VBGVBPffffffRBZd;O?NNPV-@JJZd;ONN9v?PDTK7?NNS{Gzi-2 word effect RBjtWDTMJJq= ףpINM?VB r?NNjt?CCE?VBNjtƿCDnDTEi-1 tag+i word POS alwaysNNPS}?5^INNP}?5^I?i+2 word campaignsVBNClVBDCl?i-1 word institute WDTzG?JJMbINzGNNPJ +?VBZd;OVBN㥛 VBPZd;O?NNS{GzĿNNFx?VBDp= ףVBZ+i-1 word openlyVBNʡE?RBOnVBDʡEINOn?i-1 tag+i word VBD shockedVBN\(\JJ\(\? i-1 tag+i word PRP distinguishedVBZʡEVBDʡE?i-1 tag+i word VBZ awayRPClRBCl?i-1 tag+i word PRP seizeVBMbVBPMb?i-1 tag+i word -START- longerJJR&1?NNPQRBR/$i-1 tag+i word POS surgeNNS/$NN/$? i word nestsNNSʡE?NNʡEi-1 tag+i word DT increasedVBNbX9@JJbX9 i word amidDT(\VBP;OnPDT(\ҿRBffffff޿IN|?5^@i-1 tag+i word PRP$ westJJGz?NNPGzi-1 tag+i word VBG noteNNK?NNPKi-1 tag+i word NNP standardsNNPS rh?NN|?5^NNPMbi-1 tag+i word IN lavenderJJRZd;ONNZd;O?i-1 tag+i word RB bleakRB"~jJJFx?VBoʡNN|?5^i-1 tag+i word , bothNNzGCCQ?PDTx&1@INףp= DTS㥛ؿNNSV-i-2 word operatingINV-VBZ rh?NNS rhNNPCl?RB$CNN(\?WDTV-?JJB`"?i word stackingVBG= ףp=?JJ= ףp=i-1 tag+i word JJ overchargeVBPV-NNS/$NN= ףp=?JJI +i-1 tag+i word DT utilityNN= ףp=NNP= ףp=?i-2 word stonemasonJJGz?NNPGzi-1 tag+i word POS greekNNP rhJJ rh?i word telecastJJSX9vNN+?NNPFxi-1 tag+i word JJ consultantsNNSQ?NNQi-1 tag+i word DT badlyRB+?NN+i+1 word unsettledJJSK7RBSK7?i word viewershipVBv/ͿNNv/? i suffix mezNNS+NN+NNP+?i-1 tag+i word VB dementiaNN/$?RB/$i-1 tag+i word VBZ czechoslovakNNPSK7JJ+?NNP\(\i+2 word youngestVBZA`"VBPA`"?i-2 word precedeJJCl?NNSCli+1 word defaultedVBGtV?NNtVi-1 tag+i word IN cambodiaNNSNNPS?i-1 tag+i word NNP createdVBN~jtVBD~jt?i-1 tag+i word TO thatDT/$@WDTvINT㥛 i suffix aiaNNSʡENNSNNPMb?i-1 tag+i word VBP lackeysNNS}?5^I?JJ}?5^Ii+1 word crazeNNl@JJli-1 tag+i word -START- wppNNP㥛 ?DT㥛 i-2 word denouncingJJ?5^I ?NNP?5^I i-1 tag+i word , videoCC{GzNN{Gz?i+1 word marketersNNSV-?JJ}?5^I?NNS㥛?NNPA`"VB'1Zi+1 word distressfulNNPQDT rh?RBMbi-1 tag+i word , integratedVBN rh?JJMbVBD;Oni-1 tag+i word TO bargainVBuVNNuV?i-1 tag+i word DT inherentJJV-?NNV-Ϳi+1 word clients VBDؿVBN$CJJ{Gz?DTT㥛 VBGQݿWP\(\?VBP?INy&1?NNʡE޿ i word thumbNN|?5^?JJMbX9NNSZd; i-1 word growINl?JJR/$JJlRBR/$? i suffix ybeNNnVBDK7JJSINSNNSʡENNP?5^I VB9vRBPnC$@ i word chopsNNSV-?NNV- i suffix Q45VBZ~jtNNP~jt?i-1 tag+i word NN enterprisesVBZQſNNSQ?i-1 tag+i word IN warmRB+NNnJJ|?5^@i-1 tag+i word NN acceptanceNNClNNPCl?i-1 tag+i word : oneCDˡEPRP/$?NN$C?i-1 tag+i word JJ rentNN/$?JJ/$i+1 word decision JJRʡE?VBN&1?JJ"~jNNPV-?NNPSn?POS|?5^?RBRnNNZd;OVBZ|?5^NNSZd;i-1 tag+i word NNPS employedVBN-?NNS-i-1 tag+i word -START- j.c.VB ףp= VBNKNNP^I +?i-1 tag+i word JJ secondNN?JJi+1 suffix manNNPCl?VBbX9ֿNNPS`"?NNA`"VBPERB"~NNS rDT^I +?JJoʡ?FW+JJS7A`RBSjtJJR rh?INPn?VBD +POS?VBGx?CCVBN"~j?CDB`"ٿi+1 suffix iew INX9vDTQ@RBK7A`?JJRffffff?VBPZd;OJJB`"ɿNNP+?NNX9vVBDMbX9VBN/$?WDTMbX9i-1 tag+i word CD statesVBZT㥛 NNSjt?NNCli-2 word lawyerCDClVBPV-EXClVBZM @NNSDlNNX9vVBDV-?i-1 tag+i word VB aboutNNP"~ʿVB?5^I INS㥛?RPn?RB rh?i-1 tag+i word NN journalNN;On?JJ;Oni-1 tag+i word IN befallVBP rh?PDT rhi+1 word twiddlingVBRQȿVBNPnVBDd;O?i-1 tag+i word NNP pachydermsNNPS= ףp=?NNS;OnNNPJ +i-1 tag+i word TO glasnostVBENNHzGFWuV?i word renamedVBNNbX9?JJA`"ۿNNPףp= i-1 tag+i word VBZ correctVBGK7JJK7? i suffix ncoJJx&NNPx&?i-1 tag+i word . earlyRB%CJJ ףp= NNPCl?i word untriedVBNS㥛ĿJJS㥛? i word ifiNNP-?NN-i-1 tag+i word POS madeVBN?JJѿi word revealingVBGvJJK?NNEпi-1 tag+i word RP mountingVBG|?5^?JJ|?5^i word conductsVBZ'1Z?NNSMbXVBD\(\ i word icedJJ!rh?VBD!rhi+1 word necessityJJy&1?NNy&1i+1 suffix youRBtV?VBZ~jt?DTV-VBCl?VBP333333?INK@NNP"~ʿNNK7A?CC|?5^?VBN9v?NNSx&JJ{Gz PDT1ZdVBD i word theNNS-NNPV-PRP$-NN\(\JJV-DT-@i+1 word goodnessVB ףp= @RB㥛 JJ#~jܿNNPvi-1 tag+i word DT uncertainJJ +?NN +i-1 tag+i word VBZ recordNNS㥛ܿJJS㥛?i word southwestNNP rJJSENN;On@ i word hcfcsNNSx&?NN)\(ԿNNP&1i word shelvesVBZA`"NNSA`"?i+2 word edelsonNN$CVBD$C?i+1 word donuts''/$?POS/$i-1 tag+i word JJ gramNNʡE?NNSʡEi+2 word clerkVBNMbX9?JJMbX9i+1 word publicityJJPn?NNPni-1 tag+i word NNS brokeVBPVBD?i-1 tag+i word VBG chorusNNS rhNN rh?i-1 word updatingVBZK7ٿNNSK7?i-1 tag+i word VBZ frustratedJJClٿVBNCl?i-1 tag+i word JJ motelNNRQ?JJRQi+2 word fossilVBGtVNNtV?i+1 suffix heyDTFxLS;OnNNP`"VBGOn?VBNv/JJ1Zd WPbX9?VBZE@CDx&1JJRbX9NNPS~jtVBD%C?VBP{Gz?RBR?INbX9@MDnNNA`"?NNSrh|?VBI +EX-WDTx&1RBjtWRBtV?CC?5^I ҿJJSS?i-1 tag+i word , printingVBG|?5^NN|?5^?i word protectedJJ?5^I ?VBN?5^I ¿ i word rompsNNS"~j?NN"~j i word clinicJJMbXNNSffffffNNbX9?i word clothesNNSffffff?JJmNNʡEտi-1 word altitudeEX+?NN+i+2 word hospitalJJ7A`NNSGz?NNP"~NNPSDlNNJ +?VBN7A`? i word trulyNNS1ZdӿVB"~RBjt@NN1ZdVBNL7A`VBPQJJEi-2 word twiddlingNNSMb?NNMbi tag+i-2 tag ) DTJJRV-?NNV-i-1 tag+i word VBN basicallyNN{GzԿRB{Gz?i-1 tag+i word POS hbjJJHzGNNPHzG?i-1 tag+i word WP dreamVBPCl?NNCli word requestVBK7A`JJK7NN\(@JJSQRB"~jNNP!rhi-1 tag+i word CC lightingVBGM?NNMҿi-1 tag+i word TO handleVBB`"?JJB`"i-1 word m'bowVBDx&1?NNS+NN+?RBx&1п i word hassanNNPK7A?RB%CIN+i-1 word humorWDTnINn?i-1 tag+i word NN drewVBK׿JJףp= NNOnVBDp= ף@ i+1 word waveNNSNbX9ؿJJ?NNm i suffix 8thJJ\(\ @CD\(\ i-2 word budgetsVBy&1JJsh|??NNmi+2 word bulldozersRB㥛 ¿IN㥛 ?i+2 word hypoglycemiaNN㥛 NNS㥛 ?VBNMbX9?JJMbX9Ŀi-1 tag+i word JJ tiredJJ +?NNT㥛 CD rhi word regulationNN9v?NNPjt?NNS i pref1 BVBDSCC$C?RBRK7?INX9v@NNPS~jt@VBQPDToʡFW r?LS$CUHCl?VBP;On¿WP-WRBܿVBGV-VBNZd;OJJSX9v?NNP`"۹.@DTCl?NNSnRBSS㥛?CD)\(JJR%CNN`" RBKPRPGzJJ rhVBZJ +i-2 word membershipsVBNQNNQ?i word clausesNNS\(\?VBZ\(\i-1 tag+i word NNP seaboardNNK7A?FWK7A i word worldVBZzGNNS+NNPZd;O?NNZd;@WDTSJJuVտi+1 word normanNNFx?JJMbVBD +i-1 suffix neyJJʡE?VBN?5^I @INK7A?RPB`"?NNS9v?VBD"~RBMbXVBZZd;?NNPS5^I NN7A`?VBPA`"WDTtVNNPx&1VBG+?i-1 tag+i word `` everyonePRP$~jtNN~jt? i word gabeleNNNNP?i-1 tag+i word NNP rogersNNS^I +NNP^I +?i-1 tag+i word DT rabidJJFx?NNFxi-1 tag+i word , distortedVBNRQ?VBDRQпi-1 tag+i word RB importVBP'1Z?NNʡEVB;On i word gomezNNS+NN+NNP+?i-1 tag+i word DT overwhelmingVBGʡEJJʡE?i-1 tag+i word DT verbalJJHzG?NNHzGi-1 tag+i word NN fueledVBDS?VBN{GzJJS㥛ܿi word nursingNNP rhNNJ +@VBG|?5^RB{GzJJQi-1 tag+i word NNS risingVBGMbNNMb@i word financedVBN ףp= ?VBD ףp= ߿i-1 tag+i word DT distilledJJGzVBNGz?i-1 tag+i word VBD boostedVBNK7?JJK7i+1 suffix batJJ/$?NNMbX?NNPvVBٿVBG-?i-1 tag+i word VBD consolidatedVBN/$JJ/$?i-1 word candlelightNNZd;?RBZd;߿ i suffix 53VBDV-CDV-?i+2 word currencyVBGʡENNS9v?VBK7RPK7?NN9v?VBNX9v?JJX9vi+1 word possible RBST㥛 пVBNClPOSbX9PRPx&VBZbX9?CD|?5^?NN~jtVBDCl?NNS rhRBI + INI + @JJS+?VBPMbi word imprimisNN/$JJMbNNPl?i-1 tag+i word RB signedVBD= ףp=?VBNV-?JJKi+1 word dutifullyNNGz?JJGzi-1 tag+i word DT islandNNSV-NNV-?i-1 tag+i word RB universityNN5^I ?JJ5^I i-2 word protestNN= ףp=?JJ= ףp=i-1 tag+i word VBD alienJJ9v@VBGMbXNNZd;ORB(\ȿVBNi-1 word startingNNS`"οJJ7A`?NN`"?IN+?RB7A`i+2 word naturalizedVBZ!rhVBK7A?VBD^I +׿i-1 tag+i word DT transferNNSKNNK?i+1 word indeedNNSHzG?NNHzGi-2 word mollifyVBNK7A?JJ/$޿VBDq= ףp i+2 word trueJJuV@NN-VBNd;O޿RB)\(DT)\(@NNSNNPq= ףpVB+?i+2 word metricVBZS?RBSi-2 word exploreVBPZd;RBRˡE?JJMbX9ܿi-1 tag+i word DT honeyNNʡE?JJʡEi-2 word catherallVBN(\JJ(\?i-1 tag+i word DT groundsNNjt޿NNSjt?i-1 word fundamentallyVB#~j?VBP#~ji word contemplatedVBNL7A`JJL7A`?i-1 tag+i word VBN trainingVBGMb?NNMbi tag+i-2 tag '' NNIN9vNNS1Zd @RB= ףp=?NN/$VBNjt@VBPuVJJ~jt?NNPˡEVBGMbVBD/$CCoʡ?RBRʡEVBZd;OVBZd;WDT r? i suffix tepVBDd;ORBx&VBZ ףp= NNS!rhNNPA`"VBq= ףp @JJNNL7A`e@i-1 tag+i word CC fabricsNNSm?NNmi-1 tag+i word JJR spinalNNx&?JJx&i-1 tag+i word NN uponJJ1ZdIN1Zd?i-1 tag+i word DT architectNN'1Z?JJ'1Z i suffix mum VBQFWZd;OJJRClVBPV-RBjtNNMb`?RBSHzGٿJJNbX9@NNSGzi-1 tag+i word TO pesticideVBrh|NNd;O@RB\(\ i word recallVBP@NNGzVBD|?5^VBZ#~ji-1 tag+i word DT insultingVBG^I +JJK7?NNK7Aؿi+1 word recessionJJK7?VBD~jt?VBNT㥛 пNNDlNNPoʡ?i+1 word promiseJJOn?VBGMb?RBOnNNMbпi+2 word incumbentDTˡE?RBˡEi+1 word copiesNN?JJi-1 tag+i word RB pendingVBGJJ\(\@FWףp= i word masterpieceVBPnNNPPn?i+1 suffix samNNPMb?VBZMbi+1 word genesDTK?PDTKNN"~j̿JJVBNx&?i-1 tag+i word IN japaneseNNPSSJJrh|?NNP+?i-1 tag+i word NN interlopingVBGQ?NNQi-1 tag+i word DT pelvicJJL7A`?NNL7A` i suffix ombVB)\(NNQ?JJxi-1 word reassessmentVBNVBD?i+1 word issuedVBZ333333NNS333333?i-1 word justifyPDTS㥛JJS㥛?i-1 tag+i word RB bloatedVBNQJJQ?i word plightsVBPx&NNSx&? i-2 word long VBGmRB}?5^I@NN7A`?VBNV-?JJzGIN?VB1ZdVBDV-WDTK7A`DTnNNSMb?i-1 word weakenJJMbINQ?RPQӿRBMb?i-1 tag+i word JJ conglomerateNN"~?JJ"~i-1 tag+i word DT leadingVBGV-@NN;OnJJi+1 word assertsNNm?JJmi+1 word pilipinoINZd;?RBZd;i-2 word executionsNNP1Zd?NNjtRBtV?i-2 word brought NNPA`"VBFxPRP$tVPRPx&?RBrh|?IN{Gz?RPA`"@JJNbX9NNn@ i suffix 2-5CDtV?JJtVi-1 tag+i word WDT controlVBZ$CVBP$C?i+2 word officerNNP^I +?VB\(\JJS@NNX9vVBDRB{GzԿi-1 tag+i word : collectJJQNNʡEVB^I +?VBP/$i+1 word checksNNmVB rhݿVBPQJJx&1@i+2 word antoliniJJGzVBD rh?VBN%Ci+1 word jetlinerNNPS~jt?NNP~jti+2 word featuredNNS'1Z?NN'1Zi-1 tag+i word MD bringVBG-NNsh|?VBV-?i-1 tag+i word NNS owedVBNS㥛?VBDS㥛ܿi-1 tag+i word DT controversyNN(\?VBZJ +VBPEi-1 tag+i word -START- cimflexJJnNNPn?i+1 word archiveJJT㥛 ?NNT㥛 i-1 tag+i word VB freeVBN㥛 JJʡE?NNV-RBV-i-2 word aloftVBN+NN/$JJV-? i word kgbNNS㥛NNPS㥛?i-1 tag+i word CC westNNPNbX9?JJoʡ?NN+i+2 word serialJJRQ?NNRQi-1 word pesticideWRB\(\NN\(\?IN\(\?VBZS㥫NNSS㥫?VB\(\i-1 tag+i word VBZ nonethelessVBGx&1RBx&1?i+1 word touchVBZd;?JJE?NNtVi-1 tag+i word NN smokeNNv?JJvi+2 word indeedFWJ +?NNJ +JJV-NNPV-?i-1 tag+i word RB returnedVBN +VBD +?i-1 tag+i word IN michiganNNrh|JJ;OnNNPHzG@NNPSZd;i-2 word blendingNN{Gz?JJ{Gzi-1 tag+i word RB shutVBZ#~jVBNS?VBDm?i-1 tag+i word CD shelfNNX9v?JJX9vi-2 word priestVBPK7A`JJK7A`?i word approvesVBZˡE?VBPV-NNSV-׿i-1 tag+i word NN inflowsNNSMbX9?NNKVBZx& i-1 word yetVBZxNNL7A`VBDWDTX9vJJ(\?JJR|?5^?NNSzGVBGGz?RBzGRBR|?5^VB^I +?VBNS@DTV-?INVBP{Gz?i tag+i-2 tag CD ''``)\(@NNQJJ(\i+2 word trainNNSZd;NNA`"@JJ}?5^IܿNNP^I + i word hyenasNNSCl?NNCli-1 tag+i word CC brewingJJ%CVBGbX9NNS?i-1 tag+i word VBZ droppedVBNOn?JJOni+2 word herselfVB9vڿRB9v?i+1 word broodJJS\(\?NN\(\i-1 word normalJJOn?NNOni word quartersNNPSx&1NNSx&1? i-1 word j.NNPT㥛 ?NNPST㥛 i-1 tag+i word WDT movesVBZMb?NNSMb i suffix /32CDn?NNSEJJMbXٿi-1 tag+i word DT damperNN{Gz?JJ{Gzi-1 tag+i word NNPS limitedVBN+NNP+?i word neverthelessRB'1@NNd;O JJoʡNNPh|?5CCffffffi-1 tag+i word VB forceNNST㥛 NNT㥛 ?i-1 tag+i word CC bruteVBQJJ/$?NNT㥛 i-2 word lightingJJ"~j?NN"~ji-1 tag+i word NN surroundingVBGv/?NNv/ݿi-1 tag+i word MD doVB|?5^?VBP|?5^i-1 tag+i word VB silentJJHzG?NNHzGi+2 word breedNNGz?JJOnNNPV-ڿi-2 word theftsVBPˡENNn?NNP{Gzi-1 tag+i word NN asIN5^I ?RBx&?NN}?5^IVBDX9vi-1 tag+i word RB goVBˡEԿVBP= ףp=?NNS㥛 VBNZd;OͿi+2 word sheetJJ@NNZd;RB~jti-1 tag+i word VB removedJJSVBNS?i word discrepanciesNNS\(\?IN\(\i-2 word special NN/$?VBNv߿POSZd;?VBPZd;JJPn?VBZNNS?VBG/$VBDQٿi-2 word medicineVBN㥛 JJlVBDuV?i+2 word outrageNNSNbX9NNNbX9? i word relateVBZd;OVBPZd;O?i-1 tag+i word NNP refugeesVBZA`"NNSA`"? i+2 word know JJRFxJJV-?INx&1?DT333333ۿMDT㥛 ?RBʡE?RBS"~jVBZQ?NNSQNNx&JJSS?WDT- i word griefNN)\(?NNS)\(i-1 tag+i word MD delayVB(\?RB(\i-1 word pensionNNSDl @NNP rпNN'1Z?CCS㥛?VBNOnVBPˡEVBZOn i-2 word glovesVBNV-?JJV-i-1 word athletesINx?VB'1ZVBP'1Z?RBxi-1 tag+i word DT requisiteNNGzJJGz?i-1 tag+i word NNP geniusNNPFxVBP'1ZNNx?i-1 tag+i word DT magicalJJRoʡJJoʡ?i-1 tag+i word TO burnVBv?NNvi-2 word structuredVB +RBRQ?JJRClٿ i-2 word bagsVB333333NNP333333?VBNʡEݿJJ/$?VBD ףp= i+1 word haveVBDxJJSClRBCl@DTx?NNPmVB\(\NNPSףp= @NNQ?PDT-VBN+?INS%WP/$?CCZd;OEXx?JJ5^I WDTsh|@VBZClNNS@i tag+i-2 tag VBP JJSJJ#~j?NNMbRBv/?i+1 word reluctancePOSX9v?VBZX9vϿi-1 tag+i word CC youngerJJRm?NNmi+1 suffix rgeJJROnVBP(\VBN-ֿINjtNNP5^I ?POSZd;O@NNPSp= ף?NNSVBD ףp= VB/$?JJl?RBZd;O?VBZMbNNSnVBGuV?i+2 word franchiseeNNPSGzֿNNPGz?i-1 tag+i word -START- mercuryNNK7A`ſNNPʡE?NNSGzi-1 tag+i word NN contendsVBZ|?5^?NNS|?5^i-2 word somewhereNN#~jܿCD#~j?i word violettaJJʡEVBD(\NNP~jt? i suffix 280NNK7A`@NNPK7A`i word trumpetVBPjt?NN-?JJGzi-2 word felonyVB/$?VBP/$i-1 tag+i word PRP reportVBZKVBP%C?NNQӿi-1 tag+i word RB europeansNNPSl?NNSli-1 tag+i word JJR unifiedVBNX9v?JJX9vi-1 tag+i word VBN buyingVBGV-?INV-ҿi+2 word sidingNNx&1?VBGx&1i-1 tag+i word NN showersVBZ#~jܿNNS#~j?i-1 word disarmRB\(\?JJ\(\i word intellectualsNNSx@VBZV-VBjti-1 tag+i word JJR sportifNNףp= FWףp= ?i-1 tag+i word PRP$ jcpNNPK?NNKi+1 word commentingRBNbX9?JJNbX9i-1 tag+i word RBR exposedVBNˡE?JJˡEi-1 word nation VBZMbXٿNNSSNNx޿VBNp= ףINFx?RBMbȿDTZd;@VBDp= ף?POSS?WDTZd;i-2 word materializeVBuVVBPuV?i-1 tag+i word PRP$ shoeNNS +NN +?i-1 tag+i word CC perfumeNNK7?JJK7i-1 word coastNNPS{Gz?NN)\(?VBPK7?VBZ\(\NNSZd;?NNPZd;VBK7i-1 word retinoblastomaVBP= ףp=NNd;O?JJd;O? i+2 word aug.VBNzG?VBDzGڿi+1 word mazdaVBZGz?NNSGzֿNNtV?VBDtVi-1 tag+i word CC giveVBK7@VBPJJ"~jNN{Gzi-1 word predatesCCRQVBZ\(\DTףp= ?i word sandinistasNNS-?NNPnNNPʡENNPSMb?i+1 word exclusionJJRw/JJw/? i suffix awsVBZ~jt@NNSFx@NNjtVBDMbX9VBNxINK7A`i word rejectionVBX9vNNX9v?i-2 word streamlineVBNNX9v?JJQi-1 word changedJJStVRP~jtRBףp= ÿINʡE? i word akinVBN&1ڿVBZClJJ~jt @RBnNNi-1 tag+i word NN tiffNNSzGNNzG?i word weekendNNPv/?VBPv/տi-2 word interests NNP-NNuV?PDT/$?CD`"?VBPK7A?VBZK7ANNSK7VBGX9v?JJ|?5^DT/$i-2 word herselfDT%C?IN%Ci-2 word clocksRP~jtIN~jt?i-1 suffix raxVBZS㥛NNS㥛?i-2 word friendsVBN}?5^INNw/?JJJ +?INDli+2 word roger''oʡPOSoʡ?i-1 tag+i word DT meanwhileNN rh?NNPSZd;NNSd;Oֿi-2 word necessarilyDT(\ݿIN(\? i word alertVBʡE?NNPʡE i word peakedVBN-VBD-?i+2 word otherwiseRBRn?RBMbX?NNtVJJ i+2 word jazzVB+?NNP+RBRZd;RB+JJRQ?i+2 word bourseFW$C@NNSףp= NNPS㥛i-1 tag+i word VBZ shorterJJRRQ?JJZd;VBNˡENNV-i-1 tag+i word TO sortVBx&1?NNx&1i-1 tag+i word NNP falconNNPSp= ףNNp= ף?i-1 tag+i word IN simplifiedVBNZd;O?JJZd;Oi+2 word hangsNN&1?NNP&1i-1 tag+i word DT motiveJJSZd;NNZd;O?JJZd;i-1 word shruggedRPX9v?INX9v޿i-1 tag+i word RBS experiencedVBNx&JJx&?i-1 tag+i word JJS beginningVBGQ?NNQi+1 word salaryNN9vVBNK7A@JJ333333i word arguingVBGPn?NNPnпi-1 tag+i word VBZ lostVBZClVBNCl?i+1 word admissionVBGrh|JJ}?5^I?NNi-1 word fearsRBvNNv/?WDTxJJffffffIN5^I ?NNPؿi+1 suffix ser RBJ +?VBDVBNS?JJK7AINFx@NN333333 FWK7A?VBPX9v޿DTK7A?NNP ףp= @i-1 tag+i word DT pendingVBG~j@NNClgJJh|?5i-2 word executedVBDrh|VBNrh|?i-1 word gainsCCL7A`VBP!rhJJw/?VBZʡEVBq= ףp?VBDL7A`? i-2 word (NNtV?CC|?5^VBZzG?DTI +?NNS(\ڿPRP$zGCDMbP?VBٿVBPOn?PRPZd;?RBS㥛@JJRJ +NNPS~jt?VBNJ +@NNP;On?VBG rhVBDQFW9vҿJJSKIN+?JJGzi-1 tag+i word `` convenienceJJjt@VBffffff޿RB/$NNDlѿNNPSi-1 tag+i word TO crustVBv/տVBNSNN(\?i word claudioNNvϿNNPv?i word pullbacksJJʡENNSʡE?i-1 tag+i word NN saladNNS;OnڿNN;On?i-2 word rememberJJK7ѿNNnNNPffffff?i-2 word shortNNPNbX9?NN}?5^IVBD㥛 ?VBN+JJ+?VBZ+?NNSEȿi-1 tag+i word DT wordingVBG1ZdNN1Zd?i-1 tag+i word `` vehementJJX9v?NNX9vi-1 word fibersVBNx?VBDxi word hoffmanNN rNNP r? i suffix ennVBNףp= NNp= ףNNPMbX9?i tag+i-2 tag PRP VBDRPDl@RB^I +NNSS㥛JJy&1VBG%C?VB7A`@POSbX9VBN(\INMD~jt?VBP}?5^I?DT rhVBZ r?NNp= ף@VBDMb?RBRV-?CDףp= JJRV-?NNPHzG?i-1 tag+i word NNS tradedVBDVBN`"@JJ'1Z i+1 word fdaVBN rhJJ rh?i-1 tag+i word VBG sentencedVBNZd;O?VBDZd;Oi-1 tag+i word DT fiveCD7A`?JJ(\NNPy&1i+1 word narrowsVBGbX9NNbX9?i-1 tag+i word VBD changesVBZh|?5VBPNNSl?i-1 tag+i word NNP roustaboutsNNPSˡE?NNPˡEi-1 tag+i word RB sorryRBClNNHzGJJʡE@i-1 tag+i word WP mostJJSZd;O?RBSZd;O׿i+1 word managingNNSףp= INףp= ?i-1 tag+i word VB americansNNS$CNNPS$C?i-1 tag+i word RB reasonedVBNV-?JJV- i word paperJJL7A`NNSS㥛NNPn?NN?5^I @FWS㥛VBNCli-1 tag+i word TO noVBV-RBA`"ۿDTd;O?i word anemiasRBK7ѿNNSV-?NNV-i+2 word courtsVBA`"VBPvJJRS㥛?i-1 tag+i word DT peritonealJJ"~?NN"~ i word solveJJQNN~jtؿVBS? i word soloJJZd;?NNSlNNRQ?RBn?NNPV-i-2 word openerCDˡE@JJp= ףNNPZd;Oݿi-1 tag+i word JJR returnsVB rhNNS rh?i-1 tag+i word VBZ promisedVBNv?VBDvi+1 suffix elpVB-?RB+?NN333333?RBR+JJR+@VBPK7JJClIN;Oni-1 tag+i word DT gleefulJJCl?NNPCli-2 word buyersVBP`"?NN\(\JJZd;?RB+?i-1 tag+i word NN summitVB`"NNK7?INCli-1 tag+i word DT communistsNNPSNbX9@NNS㥛 JJ?5^I NNPjti-1 word workingEX}?5^IRBK7A?INM¿RPJ +?JJ= ףp=NNV-?i word burningJJ|?5^NN!rh?VBG+?i word menswearCC^I +NN^I +?i-2 word threeNNPSK7?VBGS?EX}?5^IDT?VB!rhNNSVBD rh?INuV?RBd;OοRBRx&1?CDGz?VBZˡE?NNSQNNPZd;OVBP~jt?VBNlJJ/$i+1 word conlonNNMbX?NNPMbXi-1 tag+i word VB cautiouslyRBA`"?JJA`"i word inefficiencyNNSSNNS?i-2 word endowmentVBNClVBDCl?i-1 tag+i word NN incidentsNNS#~j?VBZ#~ji-1 tag+i word NNS excessiveVBPT㥛 пJJT㥛 ?i word carriedJJT㥛 VBDv/@VBQNNV-VBNI +ƿi tag+i-2 tag , NNSVBDxVBP rhCDHzG?JJS ףp= ?NNK7A @VBѿVBZlRP9vʿFWV-?CCK7A`@EXZd;?INMbVBNrh|?NNP'1Z?RBSL7A`UHV-WP(\NNSx@WDTK7A`տJJzGҿRBRB`"NNPSS?DT7A`PRPh|?5RBsh|?JJRʡEVBGK7ٿPDTK7A`? i word walkVBPp= ף @JJK7AVBZNNPSVBX9v?NN?i-2 word produceJJRT㥛 @WDTy&1?RB%C?INy&1JJ$CNNx&RBRffffffi-2 word fiscal VBZM?NNSMNNP^I +?VBG\(\JJV-?NNrh|RB ףp= VBDS?VBNSWDTx?INoʡ?i-2 word detroitVBZ"~jNNPI +VBx&?NNPSQNNh|?5VBD&1JJX9v?i-1 tag+i word JJR widerVBPKJJRK? i word mgmNNP!rh?NNPSNbX9пJJ/$i-1 tag+i word IN treadmillsNNSQ?NNQ i word peaceVBDʡENNS+NNB`"@NNPZd;OVB= ףp=i-1 tag+i word CD filingVBGT㥛 ?NNT㥛 i word unscathedJJp= ף?VBDp= ףi-1 tag+i word PRP$ backlogNNSGzNNGz?i-1 tag+i word VBP sureJJI +?VBG +ֿVBNZd;RBl? i word vcrsNNSV-@NN|?5^NNP^I + i suffix ll.INNNP?i-2 word millsVBNjt?JJ/$VBDx&1VB ףp= ?NN`"i word justifiesVBZS㥛?VBjt޿VBDh|?5i-1 tag+i word VBG illegalNN/$VBNRQJJ9v? i word cultVBQNNT㥛 ?NNP~jt?i-1 tag+i word VBD headquarterJJRlJJV-?NNjti-1 tag+i word CC thoroughlyRBRQRBQ?i+2 word coorsVB-?VBD-NN+NNPHzG?VBZ-?i-1 tag+i word DT expectVBP/$@NN/$i-1 tag+i word TO perpetualVBGzJJGz?i word middlemanNN/$?JJlNNP;On i word viableJJS?NNSۿi-1 tag+i word JJ federalJJ333333NNP333333?i word techniquesNNS?NNi-2 word barclayNNPMbX9?JJp= ףFWףp= i word yelledVBPh|?5οVBNѿVBD'1Z?i-1 tag+i word IN coatesNNPSKNNS;OnNNP ףp= @i word narrowedVBD1Zd?VBNL7A`INQi+1 suffix uysNNI +NNPI +?i-2 word conventionalPOS-RPCl˿NN +?RB-?IN{Gzi word insulinNNv@NNSNbX9RB ףp= JJNbX9i-1 tag+i word PRP$ livingNNS?JJSi-2 word clergymanVBZK?VBP-VBDV-i-2 word mathematicsVBD'1ZVBN'1Z?i-1 tag+i word JJ leadingVBGL7A`?JJL7A`i-1 tag+i word VBD broughtVBNq= ףp?NNq= ףp i suffix joyVBS?NNFx?VBDuVVBPHzG?JJ+VBZZd;ONNSFxi-1 tag+i word JJ draftNNSZd;ONNZd;O?i word nonprofitNNp= ףJJp= ף@ i+2 word toddIN(\@RP= ףp=RB\(\i+2 word isolatedNNPI +?NNPSI +JJ-?NN-i word alcoholicJJ/$?NN/$i-1 tag+i word VBP liquidVBZV-JJ"~?RBx&RBRPnпi+2 word unusualVB㥛 ?NNPSPn?JJrh|NNP&1i-2 word borrowedVB9v?NN9vRBRX9v?JJRX9vJJ~jtNNP~jt?i+1 suffix ghtJJV-?WPQ?VBZrh|PRPn?NNPS rhPRP${GztVBPOnPOS;OnCDENNSv?NNPMbINh|?5JJR +?FW+VBNp= ףDT"~VBD"~?RB rh@VBB`"?RBR)\( EX1Zd?VBGQ?WDTv@RP/$NNd;O?i-1 word clockRB)\(VBDX9v?RP)\(@VBNX9v#i-1 tag+i word -START- anticipatingVBGX9v?NNPX9vi+1 word authorizedNN7A`?JJ7A`i+1 word shoutedNNSQNNQ?i-1 tag+i word DT wrathNNSV-NNV-?i word surrenderedVBDx?JJxi tag+i-2 tag ) WPVBN(\VBD(\?i-1 word claimingJJT㥛 NNX9v?INn? i word nickelNNl?JJl i+1 word irasVBN1Zd?VBD1Zdi-2 word pictureVBGZd;O?JJZd;OǿJJR ףp= RBRZd;ORB rh@VBZ!rhNNS!rh?i word substanceVB(\NN(\?i-1 tag+i word VBN coastalJJS㥛?NNS㥛i-1 tag+i word -START- revisingVBGX9v?NNPX9v޿i+1 suffix intDTV-?VBD!rh?JJRV-VBPʡEVBNy&1?RBRV-?VBZKINHzGJJGz?NNSK?NNP/$VB rh?VBGL7A`NN/$PRP- @i+1 word rootedVBG5^I NN5^I ?i-1 tag+i word NNP actorNN/$?JJ/$i+1 word steelworkersJJ+NNP+?i-1 tag+i word VBP ralliesVBZGzǿNNSGz?i-1 tag+i word JJ notableWDT+JJ+?i-1 word positionIN;On?VBZuVDTSWDTK7PRPuV?i-1 tag+i word -START- civilWRB1ZdJJx&?NNPS˿i-1 word ballotVBT㥛 пVBPB`"NNtV@VBDCli-1 tag+i word VB upwardRBI +@RP rhNNy&1JJ"~ʿi-1 word allowedVBPV-NNSV-?i-1 tag+i word ( limitedVBNV-JJV-?i word mattersVBZjt?NNPSPnNNSzG?NNPffffff i-2 word dirtNNSSVBZS? i word teddyDTB`"ɿNNPGz@NNClRB}?5^IFWCli+2 word monumentalVBMbXVBPMbX?i word schoolteacherJJRSNNS?i-1 tag+i word VBP betterJJ1ZdJJRRQ?RB%C?RBR-i-1 tag+i word VBD predictingVBGn?JJni-2 word scienceNNn?JJnڿi+1 word percentageVBN~jtÿJJ7A`CDGz?i-1 tag+i word NN inningVBG+ۿNN+?i-1 tag+i word PRP callsVBD-VBZ-?i-1 word almost JJ9vNNQ?PDT~jtCDQRBʡEINx&1@VBMbX9?VBPvDTNbX9?NNSQVBNy&1? i suffix ORYNNv?NNPvi-1 tag+i word RB niceVB(\JJ(\? i word sabineJJL7A`NNPL7A`?i-1 tag+i word RBR venturesomeJJCl?RBCli-1 word crucialNNSnNNMbX?JJV-i-2 word hefnerRBFxRPFx?i-1 tag+i word POS demandsNNSDl?NNDl i suffix OilUHS㥛JJ'1ZNNPV-NNQ @NNSK7A` i word memberNN{GzNNP{Gz?i-1 tag+i word -START- ledVBN$C?NNzGNNPS㥛i+2 word airwaysJJ&1NNP&1? i+1 word turnNNSoʡNNJ +?JJJ +ѿi word outgoingVBGʡEJJV-?NN)\( i suffix NTTJJOnNNPOn? i word minesNNPSZd;NNPZd;@i-1 tag+i word RB !HYPHEN VBB`"?RB!rhVBNX9v?NNPB`"?NNn?CD)\(̿VBPA`"?JJMbNNSʡE?i-1 tag+i word , haveVBClӿVBPCl?i+1 word suitorNN-?JJ-i-1 tag+i word POS tradingJJ%C̿VBGMbXNN!rh?i+2 word kennedyMDV-VBZV-?VBD$C?NN$Ci-1 word memorableINrh|NNrh|? i word seibNNPX9v?VBDX9vi-2 word stingraysJJClNN$C?RBvi+1 word timingVBNjtJJjt?i+1 word greaterVB(\?VBP㥛 ҿJJHzGNN㥛 ?RBZd;O@i-2 word involvesWDTʡENN ףp= ?JJ ףp= INʡE?i word bolsteringVBGA`"?JJA`"i+1 word lindseyNNʡE?JJʡEi+2 word smokingVBZvVBv?i+2 word aichiJJCl?NNCl!i-1 tag+i word PRP$ manufacturingVBGzGҿNNzG?i-1 tag+i word DT gangNNn?JJZd;NNSoʡi+1 word voluntarilyVBP?JJi-1 tag+i word NNS sportifVBPFW?i-1 tag+i word CC resultVBX9v?VBPFxѿNN1Zdۿ i word pimpNNS|?5^NN|?5^?i-2 word showroomJJlNNl?i-1 tag+i word IN lostJJS㥛 VBNK@NNʡE޿RBS9vJJNbX9i word revertsVBZrh|?VBDrh|i+2 word mazdaNNPSx&1NNPx&1?i-1 tag+i word JJ unitoursNNPSS㥛@JJS㥛NNPQi word messengerNNI +?FWI +i word denouncedVBNQVBDQ? i+1 word seatVBG/$JJRQ @NNnNNPʡEi-1 tag+i word NN unfairJJDl?NNDli+2 word depressingRBRzGJJzG?i-1 tag+i word IN pricingNN%CJJ ףp= VBGMb? i word beanNN= ףp=?JJ= ףp=i+1 word happenDTT㥛 ?INT㥛 i-1 tag+i word , nodsVBZ(\@NNS5^I ۿVBNʡERBMbi-1 tag+i word FW straightRB+?JJ+i-1 word distinctlyNNP5^I JJ5^I ? i+2 word cubeNN333333?JJ333333!i-1 tag+i word -START- oranjemundNNP(\?NNʡEUHjtƿRBMbX i word asNNPsh|?VBDSCC^I +NNSʡEIN/$1@VBZQVBZd;VBGRB5^I @VBNʡERPQVBPSDT +NNK7JJ-i-1 tag+i word DT taperedVBNʡEJJʡE?i-2 word designingNNPA`"?CDA`"i-1 tag+i word CC casinoNNSMbX9NNMbX9?i-1 word disksDTjt?WDTnINffffffi-1 tag+i word PRP$ neckJJףp= VBN= ףp=ڿNN{Gz?i-1 tag+i word DT lotteryNNS?JJSi-1 tag+i word RB singVB(\?VBGV-NN^I + i suffix bieVBP%CNNP%C?i-1 tag+i word RB ignoredVBN;On?JJ;Oni word anxietyNNd;O@RBV-NNPK7 i+1 word acidVB ףp= JJ ףp= ?i-1 word breadWDTS㥫?INS㥫i-1 word previousVBGrh|ϿNNrh|?i-1 tag+i word , sortNNʡE?VBʡEi+2 word total JJL7A`NN1Zd˿VBDl?PRP$oʡ?CD)\(?VBPI +VBN rh?VBZS?VB r i suffix rmyNNSnNNPʡE?VBy&1NN?VBPQοJJ-i-1 tag+i word , declaringVBG-?VBD-i-1 tag+i word CC taxedVBDS?VBS i-2 word getsNNP9vJJzGʿNN|?5^@PDTw/RBMbNNSL7A`?i word restaurantJJB`"NNPp= ף?VBD|?5^NNzG @ i suffix derJJrhNNSGz.JJROn"@VBPJ +@VBNZd;NNPffffffVB!rh @RBnJVBD(\FW rh?INzGNNPSx&1 NNA`"@RBRA`Т@WPA`"VBZ ri-1 tag+i word JJS clearingVBGlNNl?i+1 word exerciseVBGzGJJ +޿NN rh?RBSPnJJSPn?RBJ +ٿi-1 tag+i word NN channelVBZNbX9NNNbX9?i-1 tag+i word VBZ ledVBNV-?JJMbXVBDI +i-2 word budgetingVBGK7NNjt?JJʡEտi-1 tag+i word , peacetimeNNQ?IN/$VBP-i-1 word knudsonVBZNbX9POSNbX9?i-1 tag+i word , ultimatelyRBQ?JJQi-1 suffix oriNN&1NNP&1? i suffix igeNN"~jJJ(\?FWGz?NNSni-1 tag+i word NNS overallJJ/$?NN333333RB +i-1 tag+i word DT leadJJ?JJS|?5^NN rh?i-2 word fundamentalsVBbX9?JJbX9i-1 tag+i word `` lookingVBGw/?NNS㥻NNPA`"i word specifyingNNv/VBGv/?i-1 word healthcareVBNGzVBDGz?i-1 word bettingDTClINCl?i tag+i-2 tag RBS INNN~jt?RBx&1?JJ9v i word joelJJ/$NNP/$? i suffix y-3NNPjt?JJjt i word stinkJJy&1VBP +?NN/$ i word postalJJsh|?@NNHzGNNPjt?i word everyoneNNPˡENN#~j @RBK7A`CDT㥛 PRP$~jti-1 tag+i word CC overNN"~jJJGzIN(\NNP+RBw/ @i+1 suffix ybeINK7?CC1Zd?VB1ZdWDTK7 i word kodakJJR/$FWI +ƿNNPS㥛?i-2 word discussionVBh|?5NNh|?5?i-1 tag+i word NNP theaterNNV-NNPV-?i-1 tag+i word NN tendingVBGʡE?NNʡEi+1 word roundJJ rh?VBGh|?5NNA`"RBMbXѿ i word rockedVBNпNN(\VBD$C?i+1 word groupVBPX9vDTffffff?NNPtV?NNPS?5^I ҿJJX9v?JJSoʡRBV-VBZuVVB/$ֿNNGz?JJR333333ۿCD`"?NNS~jt?VBG)\(?POS\(\?IN%Ci word designerJJR/$RBV-׿VB~jtNN+@NNSJ +ɿ i word kingVBNQNNn?NNPZd;O?VBGZd;i-1 word brought VBD+VBNGzRPV-@IN333333 RBR +RB}?5^I?WP+?JJRV-ҿNNV-?i-1 tag+i word CC spendingVBGClѿNNCl? i word colorVBsh|?NNPS(\µJJX9vNNCl @VBDRBClNNP(\µ?i-1 word barrelsINjtJJjt?i-1 tag+i word JJ deNNSFW? i+2 word dialVBN'1ZJJ'1Z?i-2 word halvedNNS?JJSտi-1 word approximatelyNNp= ףCDRQ?NNP+NNSsh|?JJ~jt?i tag+i-2 tag VBD : INGzVBGQRBw/?NN㥛 ڿPRP${GzVBPmտPRPV-?JJQ@VBˡE?RPK7A`?VBNZd; i-1 word urgeDT rhIN rh? i+1 word soxNNClNNPCl?i word unhinderedVBNQJJQ? i suffix nth RB$CNNˡEVBN&1NNSK7A`NNPZd;߿RP;OnCDx&VBPl¿JJS㥛@i-1 tag+i word , personnelJJuVNNSd;O@UHClNN-ӿi-1 tag+i word JJ subordinatedJJX9v @VBN"~jNN;OnҿVBDuVi-1 word performedRP9vRB/$?IN r?i-1 tag+i word RB forgetVBT㥛 ?RBT㥛 i-2 word gerrymanderingVB&1?NN&1i-1 tag+i word JJ nissansNNSL7A`пNNP~jtNNPSʡE?i-2 word roomsNNKIN ףp= VBPK?RP ףp= ?i-1 tag+i word `` gamblingVBG/$NNMbX@JJ|?5^i-1 tag+i word DT quirkyJJMbX?NNMbXi-1 tag+i word RB degeneratedVBNV-VBDV-?i-1 tag+i word PRP preparesVBZCl?VBCli word celebrateVBsh|??NNsh|?տi-1 tag+i word CC volumesVBZS㥛NNSS㥛? i suffix HOTMD5^I JJX9vNNP#~j?i word considerVBPA`"@JJINzGNNPuVVB9v@NNQVBDˡEi-1 tag+i word VBP aboutRP|?5^ٿRBjtINZd;O @ i+2 word howlVBZZd;RPZd;?i+1 word freseniusDT/$ÿWDTmINQ?i word weaponsNNPSZd;NNPZd;? i word aljianJJ7A`ҿNNP7A`? i-2 word fbiNNSL7A`堿VBNS㥛?JJS㥛NNPL7A`? i word cluesNNS rh?NNʡEJJv i word aliceNNS㥻NNPS㥻? i+1 word ms. VBD+RB!rh?INHzG@NNPMbX9JJ!rhCDsh|?WDTKVBZ= ףp=@DTGz i word tiffNNSzGNNzG?i+1 word instructionsNNCl?JJCli word organicJJQ?NNQֿi+2 word authorityVBG rhNN ףp= CCQ@VBN#~jJJ+DTFxNNSuVNNP+@i-1 tag+i word DT recreationalJJ/$?NN/$ݿi-1 tag+i word RB suitedVBNoʡ?VBDoʡi+1 word dovetailsJJv?NNvi-2 word reluctantlyVB?VBP;OnڿINˡE i+1 word proJJV-@NNq= ףpNNPCli-1 tag+i word IN remicJJv/?NNPv/i-1 tag+i word VBN lessRBRlJJRl? i word rangesVBZQ@NNSQi-2 word resetVBP)\(VBD)\(?i-1 tag+i word `` reflectVBPn?JJni word malcolmNNPrh|?NNPSrh|i-1 word bearsVBPp= ף?INK7A?VBZOn?NNSOnVBERPrh|i+1 word engineersVBG-NN rhNNP r@ i+2 word halfNN~jtVBD333333@RBRMbVBNbX9?VBvVBGQIN~jtxVBPʡE?VBZq= ףp?JJ+NNSq= ףpJJRMb@RBp= ף?RPNbX9? i-2 word u.s.WDT#~jPRPlJJ333333?DTOn@NNP&1VBI +@VBNS?CD rNNS$C?VBG rпNN?VBDL7A`RBRL7A`?PRP$rh|?INNbX9JJRQNNPST㥛 RBK7?CC-?VBP'1ZVBZ~jt?i-1 tag+i word , birdsNNS#~j?NN#~ji-1 tag+i word POS boredomNN?5^I ?JJ?5^I i-1 tag+i word DT foreignJJjtNNPjt?i+1 word massicotteNNSףp= NNPףp= ? i word searleNNSy&1NNV-NNPCl?i-1 tag+i word -START- studentsNNSK7A?JJQNNPni-1 tag+i word VB slumsNNS+?RB+ i word portsNNʡENNSʡE?i-1 word listenersVBN5^I VBD5^I ? i word iffyVBsh|?JJsh|?? i word testsINKVBZMbX?VBSNNS/$@JJ|?5^i+2 word assignedNNS~jt?RB~jti word alternativelyRBGz?NNPGzi word gamblingVBG?NN%C?JJQi word featherlessNNtVJJtV?i word ensuingVBG)\(?NN1ZdJJB`"ѿi word finishedVBNCl?JJv/VBDffffff?i word stayingVBG-?NN-i-2 word clarificationRBRK7A?JJRK7A i-1 tag WRBWDT"~jPOSOnRBh|?5?NNS^I +?UH rhNNPSx&1ؿVBG)\(?VBD"~jPRP`"NNP/$?VBNbX9EXS?JJSS㥛?VBN"~j?JJx&1@VBZxֿNNtV @PDTd;O?RBSS㥛ԿVBPT㥛 DTCl@CCMbX9CD+INSMDV-?i-1 tag+i word DT crowdedJJV-NNQVBN{Gz?i+1 word gyrationsJJn?NN\(\VBDMbX9Կ i+1 word winMDT㥛 ?NNPS5^I ?VBDT㥛 VBZV-NNSMbX9ԿNNP|?5^ i+2 word oyVBNjtJJjt? i word momNNSh|?5NNx&@JJT㥛 пNNP^I +i-1 tag+i word NNP industryNNPSNNP?i+1 word salesmanNNS'1Z?JJ'1Zi-1 tag+i word ( playersNNPSsh|?ſNNSS㥛?NNPCl i word bipNNv߿NNPv?i-1 tag+i word DT delicateNNjtJJjt@ i suffix .V.NNP r@VBPV-NNxi-1 tag+i word IN throughJJ5^I NN{GzԿINp= ף?i+2 word signingVBP$CVBNK7NN$C?VBDK7?i-1 suffix wasJJSuVPRP$x&1?VBGDl@VBDq= ףpVBPV-JJNbX9@RBw/?INK?JJR#~j?VBNʡE@DTMbX?PDTClRBS(\?RBRQ?VBZoʡNNffffffNNSOnCD;OnNNPS7A`WDT+RP}?5^INNP+i-1 tag+i word , yigalCC|?5^NNP|?5^? i+1 word job VBP333333JJ= ףp=?RBA`"ۿNNJJR333333?VBZ#~jNNS#~j?NNP/$VBGZd;O?i-1 tag+i word VBN offeringNNuV?VBGuVտi-1 word vappenfabrikkNNPv/?INv/i-1 tag+i word PRP suspendedJJL7A`VBDL7A`?i+1 word applauseNNS333333NN`"?NNPni-1 tag+i word IN algiersNNP㥛 ?NNS㥛 i word recommendsVBZ(\?NNS(\i-1 tag+i word CC skinNN!rh?JJ!rhi-1 tag+i word NNP activityNN333333?NNP333333ӿi-1 tag+i word IN crimeNN!rh?NNP!rhԿi-1 tag+i word NN upRP;On¿RBGz?NNV-߿JJCl@IN1ZdNNSCl i-1 suffix f.NNP= ףp=?NN#~jVBDX9vi-2 word seatsCDCl?VBNClNNnٿNNPn? i suffix PECNNPZd;@RB%CNNS㥛JJX9vֿIN%C i word takenVBNuV @NNPzGLSx&1RBʡEi+2 word fabricateNNSNbX9?NNNbX9п i suffix 87JJClCDCl?i-1 tag+i word VB inferiorNNSMbJJMb?i+1 suffix susNNMbXJJx&1?NNP-?VBGZd;?i-1 word ballisticNNSCl?NNCli-1 suffix oveNNK7@RBR@VBPK7WDT%C@VBZ`"?VBxJJlINMbX9NNSoʡ?JJR1ZdNNPK7?RPMbX9RBx&?VBDv?VBNvVBGGzDT ףp= PDT5^I ?PRPMbX i word impairVB1Zd?RB1Zd i+1 word footNNm VBN9vJJ= ףp=@i+2 word reactionJJK7AVBNK7A?RBA`"?NNA`"i+1 word painfulJJSK?JJKi-1 tag+i word JJ oddJJZd;O?RBZd;Oi-1 tag+i word NNP useNN;On?IN;Oni-1 tag+i word , perishablesVBZq= ףpݿNNSX9v?RBV-i+2 word triplesNNPSNNSS?i-1 tag+i word , aztecUHʡEۿJJ;On@NNPV-i+1 word leverageJJR +?RBR +i-1 tag+i word , apartVBZT㥛 ؿVBP{GzRBʡE?i-1 tag+i word RB adoptedJJh|?5VBD~jtVBNffffff?i-1 tag+i word VB isabellaNN1Zd?NNP1Zdi tag+i-2 tag : VBZWDTHzGRBPn?INjt?VBZCl?NNSQ?VBPnNNPS%CNNMb?i+2 word fatahVBZd;O?NNSd;Oi-1 tag+i word JJ icebergNNSMbX9NNMbX9?i-2 word allotmentsJJS?NNSi-1 word mutualNNSd;ONNd;O?i-1 tag+i word IN enfieldNN/$NNP/$?i+2 word clinicalJJZd;߿NNZd;?i+1 suffix ssyJJv/?NNoʡNNPh|?5޿i-1 tag+i word TO definitiveVBףp= JJ+?NNZd;O߿i-1 suffix ptsVBDMڿVBNT㥛 ?VBP~jt?RBv/NNSSJJv/?NNMbXi-1 tag+i word -START- ginnieNNbX9NNPbX9?i-1 word involvesJJ^I +NNL7A`ؿRBSsh|??JJSsh|?RB7A`NNSS㥛@i-1 word discontentVBG5^I ?NN5^I i-1 tag+i word RB improvingVBGK7?JJK7i word driversVBK߿NNSK? i suffix ued NN9vVBD7A`(@VBN/$1@VBP7A`PVBSJJV-?FWMbJJRˡERBI +VBZ#~jNNS&1NNPףp= i-1 tag+i word NN packsVBZ= ףp=?NNS= ףp=i-1 tag+i word JJ planNNS333333NN333333?i word fetchinglyVBN+RB+?i+1 word licensedNNZd;ϿNNPZd;?i-2 word weeklongNNX9v?VBDX9vi-1 tag+i word TO vetoVBJ +?NNCl?JJ(\ڿ i word kylixJJNN?i-1 tag+i word NNP scotchNNrh|NNPrh|?i+2 word islanderJJQ?NNQ뱿i-1 tag+i word RB astronomicalVBJJ?i-2 word disinclinedVBuV?JJuVݿi-1 tag+i word DT directorateNN-˿NNP-?i-1 tag+i word DT fujiNNPS\(\NNSV-@JJ|?5^NN rhNNPA`"?i word contestNN@VBZZd;VB|?5^VBPB`"ɿJJS/$i+1 word convincingJJ`"NN`"?RBR"~?JJR"~VBN'1ZRB'1Z?i-1 suffix fleJJDl?NNDli-1 tag+i word JJ catastropheNNSMbX9NNjt?JJCli word ralliedVBDMbX9@VBP+ۿNNS^I +VBNA`"NNPni word shorttermJJRS˿JJS?i-1 tag+i word , processingVBG?5^I NN?5^I ?i+2 word plantRBK7A`INS?VBl?NN~jt?VBD/$NNS r?RPSVBG)\(NNPSV-JJ1Zd˿VBN"~?VBPlVBZV-NNPGz?i-1 tag+i word VBZ plannedVBNX9v޿JJX9v? i word baa2JJd;O @NNbX9NNPCli-1 tag+i word VBZ requiredVBNZd;O?JJZd;Oi word workersNNPSQ@NNSˡE?IN333333WPx&NNP5^I i word blamingJJmݿVBGDl?NN"~ji word wastewaterNNP rh?NNx&1@JJףp= WP7A`i+1 word zurkuhlenNNPZd;?INZd;߿i-2 word sweatVBP%C?NN%CRB(\?JJ(\i-1 tag+i word DT bleakJJʡE?NNʡE i word dealtVBPK7NNzGVBDn@i tag+i-2 tag NNP TOVBNzGPRP)\(ܿRBrh|?JJR~jtNNPCl?VBSVBD +?JJ~jtx?NNjt?RBR/$NNSX9vNNPS~jt?RPV-POSMbXVBZx&1@i+1 word marshmallowJJ㥛 ?NN㥛 i-1 tag+i word POS chambersNNSGz?NNGzi-1 tag+i word NNP definesNNS-VBZ-? i suffix hosNNS+ÿNN+?i-2 word votingVBʡE?NNp= ף@JJʡENNPp= ףi+2 word coastJJ/$?RP"~JJR{GzܿNNd;O޿IN"~?i-1 tag+i word NNS differentialJJA`"NNA`"?i-1 tag+i word DT cameraNNB`"?JJB`"i word leaguersVBZ5^I ˿NNS5^I ?i+2 word incestNNS~jtNN~jt?i-1 tag+i word NN overthrownVBNX9v?NNS㥛INV-տ i word birnsNNSGzNNPGz?i+2 word might WDTʡERBK7AINKNNSDl@VBX9vJJ333333NNZd;VBDX9v?VBNRQ?EX-DT @NNPOn@i-1 tag+i word TO wrapVB?WPi-1 tag+i word NN accompaniedVBN"~?VBD"~i-1 word artilleryNNd;O?RBnJJ1Zdi+2 word proceduralNNA`"?NNPA`"i-2 word illustratedJJZd;@NNw/NNPI +?i-1 tag+i word TO expandVBn?NNni-1 tag+i word POS aviationNNS㥛NNPS㥛?i-1 tag+i word `` unfairlyRBZd;?JJZd;i-1 tag+i word NNP retainsVBZ+?VB+i tag+i-2 tag VBN (JJ rPRPNbX9RB~jt?i-1 suffix croNNPS/$?NNP/$i-1 tag+i word JJ coedVBN{GzNN{Gz?i word adaptingVBGq= ףpNNq= ףp?i-1 tag+i word CD debNNPS!rhNNP!rh?i word lubyankaJJMbXNNPMbX?i-2 word remarksVBPؿJJ +?NNS|?5^?RB|?5^VBDQ?VBNS㥛i+1 word socialistsVBGjt@NNjt i suffix ridJJ ףp= @NNS`"NNP#~jVB/$?NNPSV-NNClVBD/$i-1 tag+i word VB riskNNd;O?RBd;O޿i-1 tag+i word `` machikinFWCl?NNCl i word yukNNS/$NN/$?i-1 word briefNNSZd;VBZtV?VBGʡEJJ$C@NN㥛 i word threatensVBZd;O@NNSX9vINzGi word provinceNNPn?NNn i+2 word thatRBzG?UHv/@NNS}?5^I?EXx&1INx&FWw/VBN&1ڿVBZCl?DTy&1ܿNN333333?JJSjtֿJJK7ѿVBDuV?CDFx?JJR~jtPOSClǿPRP㥛 ?VBʡE?PDT/$RBRPn?VBPV-?WP+VBGd;O?WDTx?RPDlCC rh?NNP'1ZPRP$ˡE?NNPSv/i+1 word corporationNNV-?JJ-?NNPQ i-2 word ldpRB~jt?IN~jtVBZ!rh?NNS!rhԿi word lincolnshireNN^I +NNP^I +?i-2 word butcherRB?5^I ?RP?5^I JJ#~j?NNK7NNPGzο i suffix BTNNPS +NNP +?i word reichmannNNPK7?NNK7i word originallyVBN$CRB$C?i word schedulesVBZ'1ZNNS'1Z?i-1 tag+i word NNS labeledVBN?5^I ?VBD?5^I i-1 tag+i word NNP allyNN/$?RB/$ i word poolVBZV-NN%C@JJHzGi-1 tag+i word RB damnRBMbX9?JJMbX9i+1 suffix .m.CDI +@NNSx&1NN rhJJK7A`NNPB`"i+1 word tradingJJRS?NNS)\(VBPCl?JJ)\(@NN'1Z?CC= ףp=ڿPOS-VBNV-NNPS$C@INnCDV-?NNPbX9VBK7A`RBbX9@VBDMbVBZ#~ji-1 tag+i word JJ continentalNNP%C?JJ%Ci+1 word statisticalRB-?JJ-޿i+2 word steadilyVBK7AVBPK7A?NNS{GzJJ?NNZd;Oi+2 word scrambledNN'1Z?RB'1Z i word spanNN;OnJJ+VBPZd;O?VBNuVݿ i+1 word pcsNNSˡEVBP;On?JJS{Gz?JJPn?NNjti+2 word aroseNN= ףp=?NNP= ףp=i-2 word helicopterVBNDlNN/$տRBh|?5? i-1 word onlyRB rh?VBS㥛@NNPS(\?NN?PDTMb?VBN+ CDS㥛WDTffffffVBDK@PRP +INx&NNSX9v޿VBGy&1?VBPy&1VBZK7A?DT!rhNNPJ +ɿJJm?i-1 tag+i word VBZ bestRBSy&1?VB}?5^IܿJJSZd;i-1 tag+i word JJ basicNNMbX9?JJMbX9ܿi-1 tag+i word RB executeVB/$?JJ/$޿i-1 tag+i word IN wholeJJQ@NNx&1RB +i-2 word priorVB9vNNS9v?i word wisecracksNNSX9v?NNPX9vi+2 word effectJJm?NNS\(\VBZd;O?NN'1Z?VBDClVBNClۿVBPZd;OWDT(\? i word sacNNSJ +NN(\?FW;Oni-1 tag+i word CC affectionateVBPx&1JJl?VBDB`"i+2 word willing CD"~PRP}?5^INNPM?RBClVBGx&1?NNsh|??VBNRQJJMbX9@NNPSʡEi-1 tag+i word DT packageJJX9v׿NNX9v?i+2 word transportJJ= ףp= NNGz?NNP\(\@VBZvNNSʡE?i-2 word supportedJJSʡEͿNN/$?JJx&1Կi-1 tag+i word JJ anniversaryJJMbNNMb? i-1 tag+i word `` disappointmentNNV-?JJV- i word fleaNNS!rhNN;On?JJ5^I ӿi-1 tag+i word JJ copyrightedJJZd;OVBNZd;O?i word observeINPnVBP/$?RBZd;O߿i-1 tag+i word WP loveVBPtV?VBDtVֿi-1 tag+i word -START- virginiaNNSJJQNNP/$?i-1 tag+i word JJR perCC333333NNSMbX9INʡE?i-1 word missionaryNN+?NNP+i+1 word nearbyVBNI +?JJI + i+1 word tabNNZd;OJJZd;O?i+1 word giantsCD~jtJJK7A`@NN= ףp=i word bridgesVBZ rȿNNS r? i word videosNNSMb?NNMbi tag+i-2 tag JJR PRPNNM?NNPMi-1 word relieveNN/$?RB/$i-1 tag+i word JJ regularlyNNSClRB#~j?NN?5^I i-1 tag+i word VBP troublingVBGS㥛JJS㥛?i-1 tag+i word IN listingVBGV-ͿNNV-?i-1 tag+i word PRP harderVBZGzVBS㥫JJRv?RBRffffffi+1 word mexicoVBK?VBGy&1?NN|?5^WDTKINK?NNP~jti-2 word pollenIN/$?RB/$i-2 word collarVBZ`"VBMb@VBPHzGi-1 tag+i word NNS featureVBZNbX9VBPNbX9?i-1 tag+i word PRP$ edgeNNl?RBli-1 tag+i word JJ involvementNNS\(\NN~jt?JJ~jth i word midwayCCT㥛 NNSK7A`NNn?i-1 tag+i word VBD childhoodNN!rh?JJ!rh̿ i-1 word f.w.NNPDl?INDli+2 word doggedNNPS\(\NNP\(\?i+2 word ideasNNS|?5^?JJ(\?NNDli-1 tag+i word NN martinNN rhNNP rh? i suffix CarNN/$ @JJ7A`NNPZd;i+2 word piece VB1Zd@RP/$?RBSV-?VBPV-RB+׿IN^I +JJ/$NN?5^I ?PDT̿JJSV-i word batibotNNSZd;NNX9vFWq= ףpNNPK @ i word gattJJd;ONNPd;O?i-1 tag+i word `` howWRB ףp= ?NNS(\NNPrh| i suffix e-1JJ +?NNPQNNV-?i-1 tag+i word DT privilegeNNS rhNN rh?i-1 tag+i word RB !DIGITSCD9v?NNS㥛 @RBnJJ"~ji+2 word south DT-?NNPx&1?VBGJJMb?NN'1Z?VBN?NNPSvRBDlIN- i-1 word readNNQRB;OnVBGQ?RP;On?i-1 tag+i word DT stonesNNS?NNi-1 tag+i word , f.e.NNPS~jtӿNNP~jt?i-1 tag+i word RB unraveledJJ㥛 ?RB-VBNJ +i-1 tag+i word JJ disturbingJJ+?NN+i word wallowingVBGMb?NNMbi-2 word apartRBMbRBRMb?i-1 tag+i word , throughRB%CIN%C?i+2 word deficitJJ$CINjtVBjt?NNV-VBDI +?VBNDl?VBP+i word cognoscentiNNS"~j?NN"~ji-1 word inflictRBR~jtJJ~jt?i-1 suffix cus VB~jtNNV-RBRbX9?VBZ?NNPvJJRbX9NNSl?NNPSv?JJ5^I ˿VBD9v?VBNףp= RB/$?i-1 tag+i word RB senseJJzGVBPzG?i+1 word threatenedNNSZd;?WDTEJJR333333JJؿNNPE?i-1 tag+i word PRP hearVBK7AVBPK7A?i-2 word demonicVBZS?NNSSi-2 word featuringJJV-?RP~jtNNˡE?RBZd;Oi word inspiredVBN~jt?JJVBDMbX9Կi+1 word testingJJGz?NN-VBN/$i-1 word carryingRPRQ?RBx&IN"~i+1 suffix vorJJtVNNSRB +NNSMbX?NNPp= ףVB"~?i+1 word eightJJPn?INMbX?VBGGz?RBMb?NNVBDbX9VBNbX9?i-1 tag+i word VBP limitedNNS+VBN/$?JJ~jt?i-2 word thinksVBZNNS?i-1 tag+i word CC identifiedVBNoʡJJ rhVBD/$?i-1 tag+i word POS challengeJJ +NN +?i+2 word confidenceWDTSINS?i-2 word obligationINV-NNPV-?NNV-߿VBDOnVBNOn?WDTV-?i-1 tag+i word VBP attractsVBZV-?NNSV-i-1 word steadilyJJjtNN{GzVBD?VBN{GzRBoʡ?VBGS? i word goriotNNPSnNNPn?i-1 suffix rtsNNSףp= ÿWPJ +?RBRjt?RB ףp= ?JJRK7A`NNZd;O@JJq= ףpNNPS?5^I ¿VBN-VBPMbX9DTCl@VBGV-?VBDZd;?WDTuVINDl?RPT㥛 VBZZd;NNPx&1VBPn?i tag+i-2 tag : RB WDT(\?JJ%C̿INˡE?VB?CCjtĿJJRK7RBRK7?NNPp= ף?RBEؿNNDTClNNS\(\ i word bentJJ= ףp=?NN= ףp= i suffix ariRBffffff޿NNPK7A`?NNQi+2 word nebraskaJJn?RBnٿi-2 word dustedRP~jt?NN+RBOnÿi-1 tag+i word RB compareVBZ;OnVBP;On?i+1 word lifesaversNNPSV-NNS"~ʿNNP/$?i-1 word middlemenVBPCl?VBNCli word electoralJJV-?NNV-i-2 word plaidRB+VBD+? i suffix PCsVBPʡENNSMbX@NNMbX9NNPCi+1 word survivesNNSn?JJni+2 word humptyRPMbRBMb? i word upturnNN|?5^?VBP|?5^ѿ i-1 word kidsVBNV-?JJV-i-1 tag+i word NN underminedVBN ףp= @JJS㥛VBDd;Oi-1 tag+i word : votedVBNKVBDK?i-1 tag+i word -START- exceptIN&1?NNP&1i-2 word reserve VB+?RBw/JJR+VBN$CIN1ZdVBZK7?NNS rNNv?VBD$C?JJʡE?i-1 tag+i word DT leastRBSOn?NNEJJKJJS= ףp=?i+1 suffix citVBPQNNV-?JJv/տNNPoʡ?i+1 word daughtersJJʡE?RBʡE i word dejaRBSV-NNS@JJ+i-2 word finishRBCl?NNCl i+1 word gainJJSE?VBNK?RB5^I ?NNSX9vNNPzGVB/$JJK7A`@NN"~i-1 tag+i word VB workedVBDZd;VBNZd;? i word ridVB/$?JJ~jt@NN~jtVBD/$ i+1 word naNN333333VBP㥛 JJ}?5^INNS$CVB!rh?VBG333333 @i-1 tag+i word JJ elementNN r?JJ ri-1 tag+i word NNP diagnosticsNNPS1Zd?NNP1Zdi+2 word runningJJE@INh|?5NNS/$VBGL7A`ؿNNMbXVBNClWDTh|?5?i-1 tag+i word CD selectedVBNCl?JJT㥛 ?VBDK7A`i word constituentJJʡE?NNʡEi word propertiesNNPSw/?NNSsh|?NNP$C?i-1 word vigorousJJ#~j?NN#~ji+1 suffix sheNNS%CNNPjtVBtV?JJ㥛 NNGz?VBPʡECDx?WDTffffffVBZ!rh?DTʡEVBDT㥛 ?VBNMbX9RB$CINˡE @i-1 tag+i word CC suggestedVBDHzG?VBNHzG"i-1 tag+i word -START- congressmenMDClNNSCl? i-2 word notWDT|?5^?JJy&1ԿDT= ףp=NNK7A`PRP|?5^ٿVBףp= @VBGQ?VBPI +?JJSZd;?CDPnINʡE?JJR7A`NNP(\NNPS#~jԿWP~jtVBZ{Gz?RB|?5^@PRP$ +޿VBN\(\?NNS+?PDTx&1RBR+?VBDKRP+i+2 word practicingVBP;OnNN;On?i-1 tag+i word JJ alfrescoRBsh|??NNsh|?i-1 tag+i word DT unitJJsh|?NNPsh|??i+1 word extendsWDTV-?INV-׿ i word chillyJJ1Zd@NNK7RBi+2 word jacobsonVBD㥛 NNPGz?INmտVBN(\i-1 word emergingJJoʡNNoʡ?i-2 word toyotaNNS~jt?CDClVBZ~jtNNPCl?i+2 word floor VBD/$?VBZsh|??JJRX9vVBP#~jRBnIN'1Z@NNP^I +?JJCl?NN$Ci-1 tag+i word CC cocktailVBV-NN9v?JJZd;O i+2 word and!CC-@JJR!rh?VBNffffff@VBP?NNS$C?NNP333333?PDTKRBSK7A@CD~jtÿWDTDTx&1?$?5^I ?FWS?VBZd;?INA`"PRP$ +?VBZQ?JJI +?POSp= ף@RBRRQEX ףp= VBDSտNN?''&1?RPJ +RB(\MDS㥛?NNPSQ?JJSK7UHuV?VBG(\WPJ +PRP1Zdi-1 word waywardNNGz?JJGzi-1 tag+i word VBN financingJJ~jtNN~jt?i-2 word presumptionJJSp= ף?RBSp= ףi-1 tag+i word , scoffsNN`"VBD333333VBZ!rh?VBA`"˿i-1 tag+i word , borrowingVBGMNNM?i-1 tag+i word PRP$ productionsNNSm?NNmi+2 word include NNPS+VBNX9vWDTZd;?INZd;ϿVBZDl?NNPI +JJ-?NNS㥛пVBP/$RBT㥛 ؿNNSV-?i+2 word teacherNN'1Z?JJ'1Zi+2 word children JJ$CVBPzGʿRB㥛 ?INʡE?VBZK?VBzG?NNn?VBDKJJR$CۿDTʡEi-1 word crumbledVBGVBNv/VBDˡE?i-1 tag+i word POS continuingVBGQJJK7@NN/$i+1 word pioneeredNNNbX9@NNPNbX9i-2 word tennisVBZClNNCl?i+2 word freedomNNSA`"NNA`"?RBCl?INCli-1 tag+i word CC pricingsVBZS㥛NNSS㥛?i-1 word verticallyJJoʡ?VBDoʡi-1 tag+i word MD makeVBh|?5?RBh|?5i-1 tag+i word WDT understateVBZy&1VBPy&1?i-2 word accomplishJJQ?NNQi-1 tag+i word , maintainsNNSV-VBZV-?i+2 word committeesNNSE?NNPEi-1 tag+i word VBP hookedVBNrh|JJrh|?i-1 tag+i word NNP scotchesVBZDlNNSDl?i+1 word minorVB rh?RBn?JJ)\(i-1 tag+i word POS deputyNNuVJJuV?i-1 tag+i word , saferVBmݿJJRI +?NN/$i-2 word qualityJJjtVB rh?RB +NN~jtJJR;OnVBPS?i+1 word fannieVBZS㥛?NNSS㥛WDTʡEINʡE?i-1 tag+i word PRP motivateVBPsh|??VBDsh|?տi+1 word definitionsVBGZd;O?NNZd;Oi word strongestJJSGz?NNGzi-1 tag+i word NN aidNNtV?VBDtVi-1 tag+i word `` beVBHzG?NNPHzGi+1 word quiteNNStVVBNDl?POS/$WDT$CۿJJDlIN$C?VBZQ?i+1 word jiangNNd;O?JJd;Oοi tag+i-2 tag JJ POSINL7A`пVBZ㥛 ?JJGz?VBGFx@VBNS㥛?JJRbX9VBPV-WRBbX9DTbX9CD{GzԿNNS ףp= ?RBZd;NN"~?NNP?5^I NNPSZd;VBDHzGѿ i suffix BenNNP?INi-2 word fastballVBDCl?JJCl?VBNClRBCli-2 word inconsistenciesWDTS?WPSi-2 word fellowNNPS}?5^I?NNSClNNPK?i-2 word being VBP/$?RBx?JJRMb?NNPq= ףpJJQNNv/?VBD ףp= IN= ףp=?VBGMbX?VBNE?RBRq= ףpRPd;O?i-1 tag+i word IN reinvestedVBN{Gz?JJ{Gzi-1 tag+i word DT unemployedNN(\µNNP(\µ?i-1 tag+i word CC dumpVB/$?RB/$i+2 word risenNNSX9v?NN)\(?NNPʡEi-1 tag+i word VBG goldJJRQпNNRQ? i word hellsNNPS(\NNSx&1̿NNPffffff?i-2 word contributeJJRn?RB/$RBR +JJDl?VB/$i-2 word unexpectedVBPL7A`DT\(\?VBףp= NNB`"۹FWCl?CC\(\i-1 tag+i word JJ charmNNSB`"NNB`"?i-1 tag+i word -START- facedINvVBN"~j?VBD|?5^ i+1 word airNN{GzVBD#~jĿVBNClWDT/$JJ'1ZIN/$?NNPJ +@ i word absurdJJQ?NNlNNSx&i-1 tag+i word NNP sparksVBZ9v?NNP9vi word chemicalNNPS7A`NNSV-NNMbXy!@JJ i suffix upsVBP'1ZNNS1Z@NN(\ JJV- i-1 word rehabilitationRBRA`"ۿNNA`"? i-1 suffix taNNPDlNNPSDl? i word dozensNN rVBZx&1NNS"~ @i-1 tag+i word NNS factoRBFW?i-1 tag+i word VBN clearerJJR/$?NN/$i+1 suffix ainCC/$ÿCDOnJJR= ףp=?VBNPnVBZMb`NNP"~PRP rhNNSy&1?RBR= ףp=ʿINNbX9VBP|?5^?RPQ?NNZd;O?RBV-@NNPS~jt?JJSE?WDT㥛 ?JJjtDT)\(?VB%CPRP$KVBG㥛 ?VBDA`"?i+2 word voluntarismFWl?NNPli-1 tag+i word CC purchaseNN1Zd?VB1Zdi-1 word criminalityRBS㥻INS㥻?i-2 word craneINK7?DTK7NNS㥛?JJS㥛i-1 tag+i word `` majorNNPd;OJJd;O?i-1 word permitsVBPQNNQ?i-1 tag+i word , advertisingVBG(\?NN(\ i suffix DadJJ|?5^NNP|?5^?i-1 tag+i word NNP magazineNNPCl?NNCli-1 tag+i word `` constantJJm?NNPmi-1 tag+i word JJS impactNNS?JJSi+2 word maximizeVBN&1?JJ&1NNNNS?i tag+i-2 tag MD WRBVB#~jNN'1Z?JJQ?i-1 tag+i word IN cottonNNSV-NN-@NNP/$i word midwestJJSV-NNHzG?NNPV-?i-1 tag+i word , leftVBD+?IN+i word pilipinoNNPxNNx? i word skewedVBN\(\JJ\(\?i-2 word courtsVBNbX9JJS?NNOn i-2 word urgeJJuV@NN rhNNPQi-2 word menaceVBNbX9VBDbX9? i word lesterNNP"~j?JJ"~jԿi-1 tag+i word NNP moslemsNNPS-?NNP-i word greenerJJR(\?NNZd;OVBNh|?5 i suffix lex VBRQRB`"޿NNSMbNNPQ @VBZbX9NNPSNNRQVBDQ޿JJx&@i-1 tag+i word IN markedlyRB(\?NN(\ݿi-1 tag+i word NNS giveVBsh|?VBPsh|??i+2 word retailerWDT"~IN"~?i-1 tag+i word NNS firmVBP)\(NNS +NNV-?JJbX9@i tag+i-2 tag TO -START-VBJ +?PDTK7NNGz?i-1 tag+i word `` zincNNtV?CDtVi+1 word cignaRBˡEINˡE?i-1 word glitteryVBZB`"ɿNNS~jtJJ ףp= ?i-2 word finalVBX9vϿJJx?NNm?FW\(\VBPʡEƿRBv/INMbp? i suffix ssoNN ףp= JJ{GzNNP(\? i word dptNNnʿNNPn? i-2 word cd VBNףp= INMbXVBZףp= ?NNSףp= RPEؿRBRffffffVBPףp= JJRffffff?RB|?5^@DTףp= ?i word bolsterVBP?5^I RBR"~INʡE޿JJRClٿVB^I +@i-1 tag+i word RB anticipatedVBNh|?5?JJh|?5i word despitePRP$QIN7A`?RBzGNNP̿i-1 tag+i word JJ grislyJJS?NNd;ORBx&1пi-1 suffix artVBZ%C@NNFx?RBV- CCKNNSZd;VBPK?WDT333333?VBNrh|INK7A?VBCl@JJMbXRPnѿRBRZd;?VBD^I +JJRMbNNPE?VBG7A`?i-2 word erbamontJJFx?VBDFxi+1 word stadiumsNNCl?JJCli+1 word racehorsesVBN|?5^JJ|?5^?i-1 tag+i word DT mexicanJJX9v?NNPX9v i word thighNNoʡ?JJoʡݿi-1 tag+i word NNPS mainframeNNMbX9?VBPMbX9i+1 word circumstancesVB(\DT"~?JJ(\?UH"~i-1 suffix nty VBPHzGRBV-JJRx&1?NNPHzG?NN`"?VBDSVBN+?RBRx&1INV-?i-1 tag+i word NNP hopesVBZ@NNSm NNKi-1 tag+i word TO homerVBq= ףp?NNq= ףpi-1 tag+i word NN foraysVBZq= ףpտNNSq= ףp?i-1 tag+i word CC controlsVBSNNSK7@JJGzNN}?5^IVBZw/Ŀi-1 tag+i word NNP judiciaryNNS?JJS i word rulesNNmNNP`"VBZ'1ZNNPSOn?NNS ףp= ?i+1 word torresNNP|?5^?NN|?5^i+2 word different NNPS(\@VBP|?5^ @IN{GzDT;On?NNSK7AJJ rh?NNMbVBDSVBNy&1RB㥛 ?NNPSi-2 word demonstrationVBS㥛?NNS㥛i-1 word industrialsVBD(\VBPh|?5ֿVBN"~?i-1 tag+i word RB supplyVBPw/NNw/?i-1 suffix sorVBZbX9NNSbX9?VBNM?VBDMi-1 tag+i word , idealNNClNNPCl? i word thingNN)\(?NNP)\(i word skepticsNNPSKNNSK7A?NNh|?5NNPS㥛?i-1 tag+i word RB jackVB(\NNCl?RB~jtؿi-1 tag+i word VBZ predictingVBG rh?JJ rhi word emergingJJʡE?NN!rhNNPQۿVBG7A`?i-1 tag+i word JJ aboardRB`"IN`"?i word creaturesVBZ(\NNS(\?i-1 tag+i word DT namJJ"~NNP"~?i-2 word lifetimeVBGRQNNbX9?JJ"~ڿi+1 word displaysNNSS?RBSNN r?NNP ri-1 tag+i word CD dataproductsNNPSDl?NNPDli word formulatedVBN ףp= ?JJ ףp= i-1 tag+i word VBD sendingVBG(\µ?JJ(\µ i-2 tag RB!VBG\(\?NN7A`?FWQPOS5^I JJS?PRP~jt?INv/ͿVBNMbpWPzGVBZx&1?DT(\EX r$}?5^IRBSB`"CDEȿPRP$V-VBP/$?WDT'1ZRB/$ݿNNS'1Z?NNPS~jt?JJx?NNPOn?CCCl?PDT ףp= MDDl?UHK7@TOoʡ?VBD(\?RPS㥛@VB{Gz?RBRL7A`?JJR^I +?i-1 tag+i word TO preserveVBZOnVBOn?i-1 tag+i word VB listeningVBG ףp= NN ףp= ? i-2 word listJJX9v?NNV-VBGrh|? i word dialNNS@JJS i word sugaryVBOnJJOn?i-1 tag+i word VBN randomlyVBP\(\RB\(\?i word employsJJ^I +VBZZd;@VBV-RB ףp= NN333333VBPFxi+1 word america JJ~jtNNS&1?NNPS?VBS?VBGSNNS?WDTZd;OCDMbXINZd;O?i-2 word gimmicksVBPV-JJjt?NNx&1Կi-1 tag+i word JJ brandsNNPS)\(@NNSy&1NNPZd;OͿi-1 tag+i word : studiosNNSZd;O?JJZd;Oi-2 word bipartisanVBZ333333VBPOnVBNףp= @NNOn?VBD?5^I i-1 tag+i word NN fundNNSNNPoʡ?NNT㥛 @VBDvVBNOnVBZi+1 word constituteVBZ/$NNS/$?i-1 tag+i word CC participateVBK7?NNK7i word adjustedNNGzVBNMb@JJSӿVBDi+2 word debatesRBSv/?JJSv/i-1 tag+i word JJ veteranJJ%C?NN%C i-1 word flowVBDV-?VBNV-RBy&1?INy&1i-1 tag+i word DT cattleNNSffffff@NN= ףp=JJ= ףp=ڿi-2 word notionWP\(\?DT\(\i-1 tag+i word IN angerJJRB`"NNB`"?i-2 word airingJJ'1Z?NN'1Zi word socialistVBP-JJv@NNDlNNP r?i-1 tag+i word IN excessesVBZпNNS?i word undeterredVBNzGJJsh|?@NNPzGҿi-1 tag+i word PRP worryVBP%C?VBD%Ci-1 tag+i word `` excessiveVB}?5^IJJ}?5^I?i word deliveringVBGMb?NNMbi-1 word nickelVBNlVBDl? i word soulsNNSCl@NNCli-2 word dogmaVBQJJ/$?NNT㥛 i-1 tag+i word DT thinNN/$JJ/$?i-1 tag+i word DT expenseNNS?JJS i word natureNN7A`?JJ7A`ڿi-1 tag+i word NNP tumbleJJ!rhԿVBQ?NN㥛 i-1 tag+i word CC encouragingVBGffffff?NNffffffi-1 tag+i word NN gemsNNSZd;O?NNZd;Oi-1 tag+i word , seeVBZ?5^I ڿVBZd;VBPT㥛 ?i-1 tag+i word RB routeVBףp= ÿNNףp= ?i-1 word triggerJJ(\?NNP(\ i-1 word lockNNp= ף?RBp= ףi-1 tag+i word DT dampJJZd;O?NNZd;O i word seNN"~jFW/$?NNSZd;i-1 tag+i word VBD outsideRBl@NN(\INK7A`JJ5^I ?NNSi+2 word linkingNNS\(\@CD\(\i-1 word republicansVBP+?RBCl?NNK7VBD(\ i word bidderVBuVNNuV?i word accountableNNSX9vJJDl?RB/$i word advertisingNNQE"@JJsh|? NNPS㥛?VBGlqi-1 tag+i word RB spottedVBNHzGVBDHzG? i word lifeNNK?NNPKi+2 word educatedJJRZd;ORBRZd;O? i suffix feeNNSPnNNP~jt?NNPS~jtRB}?5^INNh|?5@VBP(\JJK7i-1 tag+i word VBD quickerJJ rhRBRZd;@RB(\JJR(\ i word magnetNNSKNNK?i+2 word dialogueVB/$RBR/$?JJRCl i+1 word )NNףp= @FWmVBN?5^I ?LS rh?RBV-?INV-VBGh|?5?NNPSzG?VBP ףp= CD!rhVBDx&NNPK7A?VBZGzRP/$JJx&1 NNSA`"?PRPx&1?VB rhi-1 tag+i word JJ mailNNףp= ?JJףp= i-1 tag+i word NNS alongRPM?RBbX9IN"~?i+2 word witnessingRPDlRBrh|׿INq= ףp?i-1 tag+i word WP expectedVBDtV?VBNtVi-1 word dominantNNPV-JJZd;O@NNL7A`i-1 suffix larNNjt?VBG/$DT^I +?VBZHzGNNP$CRPRQ?JJL7A`VBX9v@NNPSI +?RBClWRBbX9JJR-RBRw/?VBNv/INZd;OCDV-VBDX9v?NNSZd;O?i+1 word possiblyINOn?RBOni-2 word exportsRBm?NNSffffffNNPv/VBmտRPE?JJ|?5^NNn?VBN~jt?i word blacklistingVBGSNNS?i+1 word prosecutionsNNFx@VBGX9v޿VBPV-NNS/$JJtVi-1 tag+i word VBG crazyNNSZd;JJQ?NNMb i suffix diaNNPS'1ZNNSrh|NN/$JJ/$NNPK7@i+2 word benefitedWDTv/?NNV-NNPV-?DTv/i-1 tag+i word '' authorVBZ\(\NN\(\?i-1 tag+i word NNS breakVBn?VBPʡE?VBDuVi-1 tag+i word TO blameVB/$?NN/$i+2 word potentiallyVBClNN rh?JJX9vֿi word exportersNNSV-?FWV-i-1 tag+i word NNP ratesNNPSJ +?NNSʡE @NNP%C!i-1 tag+i word VBN jurisdictionalNNQJJQ?i-1 tag+i word POS sisterNNS?JJSi-1 tag+i word TO ownVBzGếJJzG?!i-1 tag+i word -START- eventuallyRBS?NNPSi-1 tag+i word PRP$ claimsNNSZd;O?NNZd;O i+1 word pcNN rhNNP;OnJJ~jt @VBK7?VBN#~ji-1 tag+i word NNS giantVBPMbWDTZd;OJJI +?NNZd;@VBtVi-1 tag+i word JJ recurringVBG9v?NN9vi-2 word redefineWDT"~WP"~?i word utahansNNPSʡE?NNSʡEi-1 tag+i word NNS germansVBP~jtNNPSS㥛?NNSw/?NNPrh|׿i+2 word influencedDTFxPDTFx?i-1 tag+i word -START- procterNN"~NNP"~?i+2 word triedDTV-?NNSV-JJtVVBNtV?RBx?INx޿i+2 word rockyVBG?NN i+1 word lienVBPB`"JJZd;O?NNsh|?i word framatomeNN ףp= NNP ףp= ?i-1 tag+i word PRP$ inventoriesNNS rh?NN rhi-1 tag+i word -START- bishopNNSMbNNPMb? i word aramidNNMb@JJINV- i suffix due VBDVBP+NNPl?NNS!rhܿVBRB!rh@NN|?5^ VBNp= ףJJx"@VBZ1Zd i pref1 DJJR$CSYM= ףp=UH~jtPRP$V-RP?5^I ڿ$S㥛NN'1ZPRPZd;VBDʡENNPjt.@FWn?VBP1ZdJJK7A`VBZMb@DTZd;OVBG9v?VBNMbXٿRBCD-NNSjtVBV-CC#~jINjtNNPSV-2 @i-2 word confinedVBMJJM? i-1 word sadNNS?NNPSi-1 tag+i word JJ limitVBP= ףp=NNOn?FWCli-1 tag+i word CC newsprintNN1Zd?RB1Zd i word jeromeNNy&1NNP333333?VB|?5^i-1 tag+i word DT happenVBy&1?NNK7JJ+i+2 word secretlyNNuVVBB`"@VBPv/ i word panJJClNNPCl? i word bebopJJ+NNP+?i-2 word centennialNNGz?VBDGzi-1 tag+i word PDT thatDT\(\?RBv/?IN`"i-2 word nomineesVB`"޿NNP`"? i word servedJJףp= VBD'1Z@VBNbX9i+1 suffix got POSS㥛JJ-ӿINʡEVBZA`"?NNPS= ףp=NN5^I ?NNSQ?NNPNbX9?VBrh| i-2 word loadVBoʡ?VBPoʡi-1 tag+i word NNP respectableJJT㥛 ?NNT㥛 i-1 tag+i word VBN adenocardNNA`"?RBA`"i word ontarioNNv/NNPv/?i-1 tag+i word RB mildlyRB$C?NN$C i word trendyVBPjtJJQ?NN/$i-1 tag+i word NNP policeNNSʡE@NNʡE i word fatherRBGzNN$C@CC-JJRmJJZd;NNP ףp= ?i-1 suffix dalVBPNbX9ؿJJV-VBZ~jt?NNS~jtVB|?5^RBV-?NNx?i-1 tag+i word VBG fraserNNP-?NNS-i-2 word passionJJ?5^I ?NNP?5^I NNSʡE?NNʡE i word andyJJx&1NNPx&1?i+2 word acquiredVBmNNV-?VBPm?WDTZd;OJJS㥛?INZd;O?NNPv/i-1 tag+i word NNS implyVBPMb?RBMbi+2 word contemplateNN= ףp=?JJ= ףp=i-1 tag+i word JJ petrochemicalJJV-NNV-?i+2 word movingNN rh?JJ rhٿi-1 tag+i word , readilyVBZMRBM?i-1 tag+i word RB writhingVBG/$?NN/$ӿi-1 tag+i word NNP tellsVBZv?NNSvi-2 word taxableWDT+VBN(\?JJ(\пINZd;DTQ?i-1 word livingRP5^I ?RB5^I NNSx&1?NNPSx&1 i+2 word bitRB/$ @IN +VBD㥛 PDTp= ףRPEԸi-1 tag+i word MD entitleJJV-RBbX9VBMbX? i word oozeNNSSNNS? i word claimNNzG @PDTSVBPQ?JJI +VBZx&NNS\(\VB +?RBMbX9i-1 tag+i word NN lowVBDjtVBZnIN?5^I NNZd;?JJ)\(?i word rollercoasterJJ$C?NN$C i word angeloVB'1ZNNP'1Z?i word minincomputerJJR+?NN+i+1 word irregularitiesVBGSNNS?i-1 tag+i word DT viewNN)\(?JJKNNS/$i-1 tag+i word PRP$ lacklusterJJ/$?NN/$i+1 suffix ustINp= ףVBZ-?VBQ@NNPS\(\@VBPnRP/$NNSܿVBNʡE?WDT333333?PRPx&1?JJ~jtDTX9v?VBGSRBPn@CDjt NNPrh|POSq= ףpNNFx?VBD ףp= ? i word applesNNSI +?RPV-VBZq= ףpi+1 word rothschildINS㥛NNPQֿFW/$@NN ri-1 word encourageJJʡEVBp= ף@RBSNN|?5^JJRoʡ?i-1 word turnsVBPv?JJoʡ?IN= ףp=RPHzG?RB?5^I ?NNoʡi+1 word growth VBGV-׿VBN;OnVBPI +JJ?VBZ?VBʡE?NNsh|?ſVBDoʡſJJR)\(i-1 tag+i word FW ''')\(POS)\(?i word perchloratePRPQJJZd;߿VBP|?5^NN rh?i-1 tag+i word NNP godsNNSMbX9?NNPMbX9i-1 tag+i word CC francesNNPZd;O?NNPSZd;Oi+1 word housesVBNL7A`JJNbX9DTZd;O?VBGK7A?NNsh|??CCZd;O߿JJRv/?RBRv/ݿi+1 word conciliatoryRBRCl?JJRCli+2 word gliedmanNNMbX9?JJMbX9i-1 tag+i word PRP$ auditsNNS1Zd?NN1Zdi-1 tag+i word IN intentNNGz?JJGzi-1 tag+i word IN riskyNNSMbXJJMbX?i-2 word approachVBDMb?VBN"~jԿRBp= ףVB?JJE?NNffffffi tag+i-2 tag VBN NNSNNP`"VBGGz?VBD?5^I ?VBN?5^I ¿RBRS?JJ(\?VBZ$C?RBV-?VBPX9vINnRP(\?JJRx&1?VBzG?NNQNNSV-WDT|?5^DT9v?i-1 tag+i word TO weatherVBK7A?WPK7Ai-1 suffix uanVBPmVBGʡEJJʡE?NNm?i-1 tag+i word WP setVBDv/?VBPV-VBNjt޿i word turbineNNMbX9?RBDlJJbX9i-1 tag+i word CC smokingNNA`"?VBGA`" i word tenthNNZd;?JJZd;i-1 tag+i word JJ supplierNNS~jtNN~jt? i-1 word seemRB333333?VBlJJZd;?NN(\RBRlJJRl?VBN-?VBPQi-2 word lloydNNSCl?NNCl i word mildlyRB$C?NN$Ci-1 word seedsRBV-VBDClVBNGz?i+2 word dealers JJR&1?NNT㥛 VBDFxɿRBR rhVBNX9v?JJ= ףp=ҿINE?VBZJ +NNSJ +?RB+i-1 tag+i word TO wailVBw/?NNw/i-1 tag+i word WRB searsNNPJ +?NNSJ +i-1 tag+i word DT providenceNNS㥛NNPS㥛?i word overwhelmVBZ(\VBʡE?VBP(\?RBʡEi+1 word pacificNNd;ONNPB`"@NNPSMbXJJZd;i+1 word graceNNPZd;OͿVBGCl?JJ7A`?NNjti-1 tag+i word , subjectVB-NN+VBD\(\VBPtVJJ ףp= @VBZi-2 word distributesVBZ+?NNS+ i suffix -beJJuV@NN"~jNNS(\i-1 tag+i word JJ cumulativeNN%CNNSd;OJJ/$?i-1 tag+i word WP continueVBZ-VBP-? i word kidneyCD/$NNףp= ?JJ"~NNPGzֿi+1 word disposalJJZd;ONNZd;O?i-1 word exerciseNNQ?JJQ i-1 word timeVBDENNSS㥛RBʡEINʡEDTJ +?JJSSVBNCl?VBPQWDT㥛 ҿVB+?NNmVBZ{Gz?NNP&1VBG!rh?JJ(\@RP(\@ i word stewedVBNJJ? i-1 word drewJJM?NNMbX9VBDOnRBCl?INjtƿNNP+RPʡE?i+2 word artificiallyJJ7A`?NN7A`i-2 word famousNNP#~j?VB\(\?NNPS?NNʡEÿVBDuVVBP\(\i word insultingNNKVBG$CJJʡE@i word misinterpretVBZd;O?NNSEȿNNh|?5޿i+2 word beneathNNSKVBZK?i+1 word driverVBZ㥛 NN㥛 ?i word loweringVBGPn?NN~jtۿNNPKi tag+i-2 tag RBR PRPJJ(\?NNV-VBNCl i word birthJJ;OnRBffffffNN7A`@ i suffix thsNNQJJSDlVBPRQJJQ @NNSNbX9#@NNP7A`VBDlٿRBʡEi word stampedeNN%C?RBQJJxֿi+1 word nicaraguanNNDlJJDl? i suffix rnaNN-JJFW1Zd?i-1 word exileVBZ+?RB+i-2 word committeeRBbX9?JJ +NNK7A`VBNSۿJJRS㥛NNS ףp= ?VBV-ݿVBDl@CCp= ףVBPT㥛 WDTK7RPw/?IN`"޿WPT㥛 ?VBZ\(\NNPʡE@i-2 word quotationsNNrh|JJrh|?RBrh|VBPrh|?i-1 tag+i word DT offensiveJJ~jt?NN~jtؿ i word shakeNNPjt?VBDVBPn?VBPMbX9CDjtֿi+1 suffix eneVBGx&NNףp= VBN%C?JJR?5^I VBP= ףp=JJsh|??NNSI +?i word containsNNSx&1VBZx&1? i word pounceVBDl?NNDli+1 word strictVB|?5^?NN|?5^i+2 word continuingVBZ/$@NNS/$VBN~jtNN333333?VBDMb?i+2 word estimatesVBPףp= ?JJ/$?NNSV-NNPv/NNtVVBD?i+1 word drinksJJR-JJ-?i-1 tag+i word , opensVBMbX9VBZMbX9?i word decoratedVBDL7A`VBNX9v@JJK7i-1 word containingNNPZd;?NNS㥛?RBJ +JJJ +ɿi+2 word dissidentNNS$CJJ/$?NNy&1i tag+i-2 tag DT VBDRB-VBPffffffPRPm?FWK?RBRtV?JJRjtINFxCDK7NNSbX9?NN"~jVBD+VBNK7A`?RBS"~?PDT(\JJS(\@JJlNNPw/VBK7?NNPSI +VBG+ i-1 tag+i word VBZ authoritarianJJZd;O?RBZd;Oi-2 word -START-"VBNS㥛?WP~jtӿRBSV-?FW`"VBGv/?VBx&1?RP;OnRB?RBROn?MDJ +?WDT-?NNPK7A`WRBbX9ȶ?PDTܿCDˡE?JJS#~jԿUHsh|??DT-?$9v?NNS㥛?LSoʡ?CCh|?5?INNbX9?SYMjt?VBDFxNNSV-?PRP$sh|??VBPzGJJE?VBZ5^I ۿTOx?PRPNbX9NNPS ףp= JJR rȿi-2 word reported VBNmVBPGzDTOn@NNS;On?NNPnڿRBʡEWDTV-JJQ˿IN?NN\(\? i+2 word cubaVBGzNNGz?i-1 tag+i word -START- goyaNNNNP?i+2 word urgedNNx&1?VBDQJJ~jt@INV-?NNS%CNNP +RBV-׿i+1 word hancockRBh|?5NNPh|?5?i+2 word larsenDT +?RB +i-1 tag+i word NNP journalismNNףp= ?JJףp= i-1 tag+i word DT fatNNd;OֿNNSJ +JJ#~j? i word twice VBNlVBPx&NNSoʡNNPRBp= c)@PDT`"VBDq= ףpJJ7A`?INEVBI +NNZd;O i suffix kitVBZL7A`NNL7A`?i-1 tag+i word '' allDT$C?PDT$Ci+2 word squintedNNS+?RB+i-1 word pioneeredVBN+JJ+? i-1 tag+i word NNP gubernatorialJJ +?NN +i-1 tag+i word NNP bNNʡE?NNPʡEi+2 word sellerVB}?5^IVBPPnпVBD"~j?i+1 word volatilityVBZQVBGDl?JJB`" NN9v@VBNV-POSQ?RBQINQ?i-2 word compilingWDTS?INSi-1 tag+i word JJ tastesNNPSSNNSS? i+2 word nagsRBsh|??NNsh|? i-1 tag+i word CC capitalizationNN(\?JJ(\i word overwhelminglyRBx&1?NNx&1i-2 word stoneNN\(\VBD;OnVBN;On?JJ\(\?IN;On?DT;Oni-1 tag+i word CD ft.NNSNN?i-2 word esplanadeVBNˡE?VBDˡEܿi+2 word preliminaryVBZoʡ?NNSoʡſ i word texacoNNS㥛NNP/$?NNPSffffffi word pedaledVBNy&1?VBDy&1i word sizableJJ ףp= ?NN ףp= i+1 word smelterNNy&1?JJy&1i-1 tag+i word -START- moreINQRBRS@JJR-NNPK7A`i-2 word instrumentationNNS}?5^IܿNNA`"?JJT㥛 i word jailhouseNN/$?JJ/$i-1 tag+i word VBD rekindleVBV-?NNV-i-1 tag+i word DT troughNNS7A`NN7A`? i-1 tag+i word CD representativeJJv?NNvi+2 word experiencedVBZRQ?DT"~jNNS$C?JJA`"IN"~j?i+1 word throwersNNHzG?JJHzGi word endowedVBNjt?VBDjtԿ i suffix colNNSnNN%C?JJ#~jܿi+2 word acquireJJRJ +JJ^I +NNPPn?VBG~jt?NNʡE?VBDrh| @VBNrh| i-1 tag+i word NNS orderedVBNCl@VBDCl i suffix bagNNCl?INCli+2 word capitalizationNN7A`JJ7A`?i+1 word predictsNNsh|??JJsh|?i-1 tag+i word CC usesVBZʡE?JJʡEi-2 word lebanonJJx&1NNPx&1@i word israelisNNPS^I +?NNP^I +i word celebrityNNtV?JJtVֿi-1 tag+i word IN haveVBPZd;NNSOnJJ7A`@NNˡEi-2 word peelbackNN}?5^I?JJ}?5^Ii-1 tag+i word NN originatedVBPDl?VBNDli-1 tag+i word NN objectivesVBZ^I +NNS^I +?i+1 suffix ape RB +IN+?RPX9vNNP(\µJJRJ +?WDTClVBGV-JJffffff@NN/$?VBDK7Ai+1 word witnessVBKVBP(\JJؿNNMbpNNPx&1? i-1 word zeroNNuV?JJR"~jJJ{Gzi+1 word scriptwriterJJy&1?NNy&1ܿi-1 tag+i word RB sovietJJ+?VBD+i-2 word billingJJq= ףp?NNPq= ףp i-2 word richNNS+?NN+i+1 suffix omaNNSPnJJPn?INˡEDTˡE@i+2 word compared VBGK7?VBD&1?NNPq= ףp?NNSX9vNN~jt?VBNS?CDCl?JJ +JJRʡEVBZq= ףpտ i word riverJJMbX9NNS333333NNP|?5^ҿVBʡENNPSX9vNN"~@VBP/$WDTbX9i-1 tag+i word CD advertisingVBGK7A`?NNzG?JJ7A` i+1 word my JJZd;OǿVBZxVBB`"@POSx@VBNxVBPGzοUH!rh?RB"~jNNK7AVBDClIN"~j?NNPףp= i+2 word hurdlesJJX9v?NNPX9v i word seaNNK7@NNSq= ףpJJV-RBZd;NNPA`"?i tag+i-2 tag TO NNVBPQWPy&1̿CD~jt?IN rhJJS ףp= VBDv/FW%C?NNSK7?VB|?5^?NNPSV-?JJR?5^I @WDT rhJJn?VBZQDTS㥻NNP~jtRBR&1ҿVBGjtֿVBN-?NNRQ@RB +?CC{GzPDT-?RBSi+2 word appearedJJ(\?NN(\ i+1 word beatVBrh|NNS~jt?NNS㥛i-1 word videoNNPK?JJHzG?NNHzGCDKi+2 word rattleNN;On?NNP;Oni-1 tag+i word RB heavyJJ`"?VBNuVRB!rhi+1 word millerVBD`"NNMڿVBNS?JJS˿NNPM?i word iranianJJn?NNPni-1 tag+i word WDT linksVBZ5^I ?VBP5^I ۿi-1 tag+i word PRP$ oneCDS㥛?NNS㥛i-1 tag+i word CC slowVBʡE?JJʡEi+1 suffix tesNNPS1Zd?JJRGzVBDMbX9 WDTd;O@JJX9v?NNSffffffCC|?5^CD+?IN"~jVBPjt?DT +?RBʡEݿNNPffffffRBRK7VBGS㥛?POSX9v?VBRQ@VBNrh|?VBZmRPV-NNK7@SYM= ףp=i-1 tag+i word TO quellVB?5^I ?JJ?5^I i word opportunistsVBZtVNNStV? i word picnicJJFW+NNʡE@i-1 tag+i word JJR prematurelyRB"~j?JJ"~ji-2 word hostageVBG-NN-?i-1 tag+i word VBD dueJJˡE?RBˡEԿi-1 tag+i word CC lingersVBZ= ףp=?NNS= ףp=i-1 tag+i word JJ seemedVBNʡEVBDʡE?i-1 tag+i word , obscureJJʡE?NNʡEi+2 word circleJJMb?NNP|?5^NNV-?i word pretendVBףp= ?NNPףp= i-1 tag+i word IN scopeNNS?NNPSi+2 word reaffirmingNNSCl˿NN9v?JJMi word consentualNN&1JJ&1?i-1 tag+i word -START- lawsuitsNNsh|?@RB ףp= NNPS㥛VBZjtNNSQi-1 tag+i word RBS germanJJjtNNPjt?i+2 word inevitableDTv?PDTV-VBNv?RB{GzINvi+1 word professorNNSNbX9NNHz@JJJ +FW㥛 i-1 tag+i word -START- briefsINOnNNSv/?NN= ףp=NNP&1ڿi-2 word qualifyJJ333333?VBN333333i+2 word unfamiliarNNS"~ʿRB+?JJˡEi+1 word quotasVBPffffffNNffffff?i+1 word temporarilyRB/$?JJ/$i-1 tag+i word IN rebelNNS`"NN`"?i+2 word misadventuresVBsh|??JJsh|?ݿi-1 suffix izeRB5^I INM?RBRK7A`?VBG+NNx?VBN#~jRP)\(?NNSjt @JJRK7A`VBX9vVBDPDTQ?VBZlJJjt?VBPQDT ri+2 word patternedJJOn?NNOn i suffix GERNN1Zd?NNP1Zdi-2 word composite VBQ?RB rh?JJRPnWDTMb?JJ!rhԿINMbRP rhNN㥛 RBRPn?i-1 suffix rstVBGGz?NNZd;?FW;OnҿINMVBZd;O?JJ`"VBDh|?5?JJSbX9NNP/$NNPSI +?RB"~j?NNStVVBX9v?VBN)\(?CDףp= VBP?DTʡE?i+2 word stationsVBNd;OJJ ףp= ?NNPE? i word sold VBd;ONNX9VBDjt@VBPZd;OJJK7 INRB(\VBNw/'@NNSX9vi word residentJJCl?NNCli-1 tag+i word VBN askingJJ333333ۿVBG333333?i-1 tag+i word -START- alarmedINh|?5VBNvJJ-?i-1 tag+i word IN takingVBGMbX?NNMbX i suffix rms NNP`"VB1ZdNN}?5^VBDT㥛 RBGzINFxVBZV-@DTQNNSJ +(@NNPS= ףp=?JJMbX9VBPjti+2 word freezeNNPmVBGB`"?NNB`"JJm?i-1 tag+i word DT flexibleNN"~JJ"~?i+1 word property NN +ֿJJ|?5^?IN7A`?NNSZd;OVBGCl?VBNZd;OǿWDT/$DTRQȿVBDV-?i word temperatureNNL7A`?JJL7A`i-1 tag+i word CC sweepingJJ ףp= ?VBG ףp= i-1 tag+i word CC exchangedVBNy&1VBDy&1?i-1 word sendsNNS!rh?NN!rhi-1 tag+i word IN peakingVBG?NNi word veterinaryJJ"~?NN"~ҿi+2 word mentalVBG\(\?JJ\(\Ͽi+1 word relianceJJw/?NNw/i+1 word reducedVBZ ףp= ?VBV-@VBPV-RB ףp= i-1 tag+i word DT concreteJJzG?NNzGi-1 tag+i word VBP speedyVBNV-JJV-?i-1 word fanfareIN ףp= WDT ףp= ?i-1 tag+i word NN exposedVBNK7VBDK7?i-1 tag+i word DT soundtrackNNZd;?JJZd;i word biologicalNNS㥫NNPClٿJJq= ףp? i+1 word must VBDGzοCD(\ WDT/$?PRPףp= @JJ!rhVBZ&1ҿNNSm @NNPSJ +NNPPnNNS?VBNGz?IN/$VBGZd;i-1 tag+i word NNP commercialJJK7?NNK7ٿi+2 word consecutiveINlҿRPl?i+1 word resignationJJ/$?NNT㥛 ؿJJR ףp= ߿i+2 word appearNN rhVBPrh|?JJףp= ?VBZPnNNS ףp= ?VB rh?RBB`"i-1 tag+i word VBP analgesicJJffffff?RBffffffi-1 tag+i word NNP resourcesNNPS~jt?NNSzGNNP= ףp=i-1 word racismVBZ333333?NNS#~jINʡEi-1 word troublesVBN~jtӿVBD~jt?i-1 word avondaleNNPST㥛 ?NNPT㥛 i-2 word interconnectNNSI +NNJ +?JJK߿i-1 tag+i word VBZ convincedJJmVBNm?i-1 word cherryNN(\ڿNNP(\?i-1 word restrictVBˡENNSˡE?i+1 word toughVBDMbX9?VBMbX9?NNMbX9i-1 word importantJJ;OnNNS{Gz@NNPS+VBGQRBSNNB`"۹?i-1 word ozoneVBZQNN'1Z?JJI +NNPzG i suffix kupVBDlNNGz @VBDbX9VBNoʡVBPx&ѿJJzG?NNSZd;ONNP~jtx?i-1 tag+i word DT showVBPClNN1Zd@JJ|?5^RB㥛 i-2 word nineVBD"~RBR/$VBNv/?CD333333?RB/$?NNSoʡ?NNP333333NNni-1 word turbineNNףp= @JJףp= i+1 word smarterNNX9v?RBX9vϿ i word greedyJJS?NNSi-1 tag+i word CD owedJJrh|VBNrh|?i-1 tag+i word -START- partNNA`"@NNPA`" i+2 word royNNMbX?NNPSV-@NNPV-VBPMbX i+2 word went NNPS?NNPS9vNNS9v?NNGz@VBDZd;JJ ףp= INI +?VBGRB ףp= ?i-1 tag+i word -START- tenCD$C?JJK7ANNP{GzԿi tag+i-2 tag `` NNSJJjt?FWZd;߿RBMbXVBMbVBG`"οNN|?5^VBP/$?JJR-?VBZv/?VBDQ?VBN/$?WDTv/?NNSK7A?RBR-IN㥛 ?DTv/NNPsh|??i+1 word settlementVBNbX9?VBP%CԿJJʡEDTZd;O?NNP/$NNK?VBDMb? i+2 word t.VBN= ףp=?VBD= ףp=i-1 suffix rosVB!rh̿VBPS@NN333333NNP~jti-1 tag+i word IN doubledVBNnRBx&1VBDףp= @i+1 word pastaVBZ/$ÿNN&1?VBDS i word cruelJJZd;@NNX9vVBDd;Oi-1 suffix iniVBDjtVBPSNNL7A`?NNP?i-2 word statisticsWDTK7RPS㥛ԿVBN&1?JJ&1INCl?i-1 tag+i word NNS workerVBPzGNN-?NNPy&1i+2 word unifyingJJOn?NNOnۿ i suffix neyNNP%C@NNPS"~NNMb@VBNSCD/$JJ(\NNSli-1 tag+i word JJ pastimesNNSrh|?NNrh|i-1 tag+i word NNS processingNN/$?NNPX9v?VBG\(\i-1 tag+i word NN holdingVBGClNN1ZdӿNNPQ?i-1 tag+i word TO summarilyVBGz޿RBGz?i+1 word situatedRBQ?JJQ i-2 word hasINK7ٿJJSGz?VBG9vVBD㥛 JJKDTMbNNPV-?RP/$@RBSv/RBRHzGCDjtJJRI +VBoʡCCp= ףNNPS;OnVBNM""@VBPNN/$PRPCl绿RBZd;O?PRP$!rhܿWDT r?VBZK7ANNSh|?5οi-1 tag+i word NNP jeffersonsNNPSV-?NNPV-i-1 tag+i word MD furtherVB(\RBRx?RB"~j?i-1 tag+i word PRP cartedVBP rVBD r?i-1 tag+i word VBG rejectedVBN"~?JJ"~ i+2 word copeJJ%CNN%C?i-1 tag+i word NNS 'NNP\(\POS= ףp=@''/$VBPZd;JJVBZv/i-1 word droveNNPCl?RPffffff?JJClRBV-?INuVi-2 word importNNL7A`VBD5^I VBGL7A`?JJ5^I ? i word fadsNNSʡE?JJʡEi-1 tag+i word VBG putVBx&?VBN(\?JJʡEVBDMbX i word shapesNNS'1Z?RB/$VBZI +?i-1 word displayedRBjtINx&1?JJn?NNCli word confusingVBGL7A`JJRQ@NN"~j i+2 word liabilityVBGM?NNSI +?NN"~ji-1 tag+i word '' doctrineNN"~ʿNNP"~? i-1 tag+i word POS revolutionaryJJV-?NNV-i-1 word pleasurableVBP㥛 NN㥛 ?i-1 tag+i word -START- abbNNP{Gz?RB{Gzi-1 tag+i word DT ethosNNS+ÿNN+?i-1 tag+i word IN cautionNNI +?NNPI +i+2 word discretionRBEJJE?i+2 word lindenVBN㥛 ?VBD㥛 i-2 word cos.JJy&1?PRPT㥛 INuVNNn?RBuV?i+1 suffix cdsNNPzGʿJJ= ףp=?NNMbJJRv@RBT㥛 ?VBZQNNS-i-1 tag+i word VBN quietJJ"~?NN"~i+1 word houseworkRBRd;OJJRd;O?i-1 tag+i word JJ climaticJJ#~j?NN#~ji-1 tag+i word DT secretJJ-?NN-i+1 word profit JJR(\?RBRZd;VBN/$JJ$C @DTm?VBP +?INmNNPnVBT㥛 ?VBG$C NNGz@VBDbX9CCOni+2 word cumulativelyRBʡE?NNʡEi+2 word intelNNPRQ?VBDh|?5NNPSS㥛VBNh|?5?JJx&1i-1 tag+i word RB chantedVBNw/VBDw/?i word educatedVBNFx@JJFxi-1 tag+i word CC abusiveJJGz?VBDGzi+1 word obeisanceVBN?RBi-2 word twiceJJzG@RBDlNNjtVBZףp= i-1 suffix tryVB$C?RBRMVBNA`" VBP~jt?VBGʡE?POSX9vοWDTCl?JJVBZV-?NNSV-?NNPSmRPZd;?DT^I +NNP ףp= RB9vNNQVBD +@INMbi-1 tag+i word PRP$ affiliatedVBN7A`?JJ7A`i+1 word pessimisticIN7A`JJR$CRB7A`?RBR$C?i+2 word steveIN+NNOnÿJJh|?5NNP|?5^@i+2 word tobaccoNNS?NNi-2 word dependsVBGʡEJJʡE@NNENNP#~ji-1 word chippingNN\(\RB\(\?"i-1 tag+i word -START- contractingVBGjt?NNjti-1 tag+i word VBN tradingVBGNbX9?JJ +NN= ףp=ʿi-1 suffix offWDTQVBNA`"RB~jt$}?5^IVBGoʡ@RP +RBRS㥛?CD)\(?NNPSNNM?JJR^I +IN7A`ҿDT/$?JJQ?i-1 word hanoverNNPSZd;NNPZd;?i-1 tag+i word , medicaidNN+ӿNNP+?i-1 tag+i word PRP$ marbleNNA`"?JJA`" i-2 word wardNNPnNNPPn?i-1 tag+i word -START- baseNNNbX9NNPNbX9? i word let VBD/$@VBN~jt?INClVBZ}?5^INNSRQNNP(\VB#~j@RB rhNNVBPS?JJ'1ZDT(\i-1 word fruitVBGHzGNNHzG?i+2 word racismJJMbX9?VBNMbX9 i+1 word suitINOnNNSK7AVB?NNA`"?VBDE?VBNEJJMbX9?i-1 tag+i word ( pacsNNPSA`"?NNPA`"i-1 tag+i word DT outcomeNNPKNNS㥛 NNzGa@JJʡE i-2 word themVB/$?JJRd;O?VBPRQINS?RBRT㥛 VBNOn?VBGףp= ?NNPI +RPp= ףJJ9v?VBD(\WDT ףp= DTZd;CD%CNNPSjtNNm@RBM?i-1 word mayorVBDPn?VBZ|?5^VBN-i-1 word detectives''GzPOSGz?i-1 tag+i word NNPS putVBD`"?VB`"޿ i-1 tag+i word PRP$ longstandingNNZd;VBGX9vJJQ? i word rupertNN(\ؿNNP(\?i+2 word interestRBRv/ͿDTףp= NNP^I +NN/$?VBZ&1?PRP$QVBGZd;?JJRQWDT㥛 IN`"?NNS#~jܿVBCl?JJS㥛?VBDMbX9?VBP)\(VBN~jtRBʡE@NNPS(\i+1 suffix oth VBD?5^I ?NNS/$VBPE?RBSIN5^I @RP ףp= ?VB(\@VBGbX9ȶ?JJ?5^I NN|?5^WDT$CDTRQVBZ/$?i-1 tag+i word DT satelliteNN'1Z?JJ'1Zi-2 word districtsVBVBP|?5^?VBGClRB?JJi-1 word staffVBZOn?NNSA`"VBn?NN㥛 VBDp= ףVBNp= ף?i+1 word releaseNNX9v?VBNvJJX9vNNPv?i word choosesVBZE?NNSV-VBD+i-1 tag+i word POS plansVBZ\(\߿NNS\(\?i+2 word destroyJJ rhINVB rh?WDTZd;O?DTsh|?տ i-2 word cropJJ?5^I ?VBNS?NNQRBV-INV-?i-1 suffix allNNPSSRB?DTMbX9?VBZ\(\@NNPA`"?VBoʡ?VBDx&1?VBNFxJJRxINK7AVBG9vNNSZd;O?NN)\(?WDT9vPRP\(\RPq= ףpVBP= ףp=?JJffffff?i-1 tag+i word TO indicateNNB`"VBB`"?i-1 tag+i word NNP laboratoryNNnNNPn?i tag+i-2 tag WRB PRPDT ףp= ?NNPSSۿWDT ףp= NNPS?i-1 word betweenRBv/JJ rhPRP$-?JJRV-NNSHzG@VBPKPRP-WDTS?WPSCDI +ֿNNPSn?VBG +VBNGz߿NNPPn$~jt?NN7A`? i-2 word bid VBy&1|?JJv/NN(\?VBDEPDTjt?CD(\?RBFxINPn?DTx&VBN9v@WDTZd;ONNP(\i-1 tag+i word NN resembleVBP7A`?JJ7A`i-1 tag+i word -START- betterRBRZd;?JJRMڿIN)\(ܿ i word dowdyJJZd;?NNK7A`RBh|?5VBZ ףp= i-1 tag+i word NN crownVBP9vNNDl?JJtVi-2 word future VBZ+RBʡE?INQNNS㥛ܿVBD1ZdVBN1Zd?PRPClٿPRP$Cl?JJ ףp= ?i-1 word littleNNSQVB rhͿJJR1Zd?WDT(\?CD rhNNPsh|?POSClVBPL7A`JJV-@NN9vVBDlRBR~jt?VBNsh|?RBRQ?INQտVBZy&1RP(\@DT(\i-1 tag+i word JJR !DIGITSNNS~jtNNP~jt?i-1 tag+i word JJ playingVBG+η?NN+η i word rentalNNPS{GzJJ9v@NN rhNNP(\տi-1 tag+i word PRP$ southJJQ?NNPQi-1 tag+i word DT doorNNSy&1NNy&1? i suffix claNNSSRBS㥛NNP?5^I ?i word claimedVBPx&VBNX9vVBDx&1@i-1 tag+i word VBD chosenVBNX9v?JJX9vi+1 word coinsVBSJJffffff@NNA`" i word cellVBJ +VBP+NNjt@JJ= ףp= i word woundsNNPS7A`NNSv?NN1Zdi word hemisphereNNDl?JJCl׿RB rhi-2 word higher WRB$CVBDZd;RBR rh?JJV-?IN$C?NNStV?JJR/$ۿVBy&1RBNbX9NNVBNZd;?VBPK7A`?CDL7A`?i+2 word eurobondsVBZh|?5οNNSh|?5?i+2 word thinkingVB333333?JJ333333 i-2 word feesNNS$CRBGz?NNoʡVBDZd;OVBNZd;O?JJ rh?VBZ$C? i+2 word ariaVBZʡEVBDʡE? i word cattleNNSy&1, @NN%CJJ/$VBDZd;i word seaborneJJv/@NN-VBDCli-1 tag+i word DT mileNN&1?JJ&1ʿi-1 tag+i word CC forecastVBDClVBPCl@ i suffix .55CDCl?NNPCli-1 suffix imeVBPQRP(\@DTJ +?VBZy&1|?NN'1Z?WDT㥛 ҿCCOn?VBG!rh?JJK?VBDS㥛NNSL7A`尿JJSSRBFxVB㥛 ?VBNx?CDRQ?IN"~jNNPJ +NNPSFxɿi-1 tag+i word VB organizedRP/$VBN~jt?JJ rhi+2 word generousVBS?NNSi-2 word kahanJJ-?NN-ֿi-1 word returnVBv׿NNSv?NNNbX9JJ(\IN +?i-2 word headachesNNoʡNNPoʡ?i+2 word lookedMDK7VBDK7?RBZd;߿INZd;?i-1 tag+i word IN completeJJ!rh?NN!rh i+1 word sumJJ"~jNNܿCD rh?i-1 tag+i word VBZ evenRBGz?NN-JJ^I +߿i-1 tag+i word IN advancedVBN㥛 JJ㥛 ?i-1 tag+i word IN livingVBGd;ONNZd;_@JJMi+2 word computingVBNʡEJJK7A`?VBD ףp= i-1 tag+i word NN dilemmaNNS?RBSi-1 tag+i word NN campaignsNN9vNNS9v?i-1 word pyszkiewiczVBZjt?NNSjt i+1 word spanNNS;On?JJ;Oni-1 tag+i word IN shipyardNNX9v?JJX9v i word quickJJK7A @NN'1ZVBN^I +RBn?NNSjt޿VB$C i word tykeNNS(\NN(\?i-2 word dividendNNʡERB"~j?VB5^I VBPQJJV-?i-1 tag+i word NN productsNNPS"~?NNP"~i-1 tag+i word NNP liltNNʡE?JJʡE i suffix \/aVBZoʡVBףp= ۿIN-?i-1 tag+i word NNS suggestVBDK7A`VBPK7A`?i-1 tag+i word RB specializedVBN\(\JJ\(\?i+2 word delectableJJMb@NNMbi-1 word distantNNS)\(ԿNNrh|@JJ/$?CD ףp=  i+1 word l988JJjt?NNjt i word sowsNNS/$?NNP/$ i word coalNNSCl׿NN|?5^ @JJi-1 tag+i word IN remodelingVBG +?NN +οi-1 tag+i word VBN wheneverWRBzG?INzGi-1 word lawsuitsVBNv?JJˡEVBDMbX9i tag+i-2 tag DT INJJR7A`?WDTZd;?NNPʡE?CC"~RBSZd;O?VBN#~j?JJ/$?PRP?JJSA`"˿RBMb?VBZV-?DT(\?NN/$?FWh|?5VB/$RBRK7@CDMbX?INKVBGQۿVBD ףp= VBPZd;ONNSm?NNPS5^I ?i-1 tag+i word NN madeVBN?NNV-VBDV-?i+1 suffix aubVBGSNNPS?i-1 suffix voyNNPMb?NNMbпi-1 tag+i word IN behalfNNS/$NN/$?i-1 word disturbingJJK7NNPK7?i-1 tag+i word NNP hopeVBP1Zd@NN1Zdi-1 tag+i word VBD undulyRBMb?JJMb i-2 tag DT"PRP$ +WDT5^I ?VBZ"~j?NN{Gz?NNSK7?WRBuV?NNPSʡEJJRX9v?VBPʡE?JJ'1Z?PRPCCHzG?JJSQVBGK7 DT;OnVBDS㥛?VBmRBR;On?MDA`"?''q= ףpRPʡE?RBQտNNP%CEXq= ףp?FWffffff?CD~jt?WPSINSVBN+POStV?PDTPnRBSK?SYM9v?UHZd;i word addressesVBZX9vNNSX9v?i word customaryJJZd;O?NNZd;O"i-1 tag+i word -START- connecticutNNQݿNNPQ? i+1 word omniVBPuVVBGuV?NNVBD?i word appellateJJMb@NNx&1RB"~jVBDS i-1 word a.m.JJX9vNNP&1RBzG?NN1ZdVBD?VBNRQпi+2 word dowdyVBG+?NN+i-1 tag+i word POS prospectsNNSZd;O?NNZd;Oi word physicistVBPL7A`пNNL7A`?i-1 tag+i word POS sittingVBG&1?JJ&1i-1 word issuingNNPSNNSʡE?NNP&1i-1 tag+i word RB declaredVBD ףp= ?JJ ףp= i word principalVB ףp= JJK7?NNjt?VBNbX9i-1 tag+i word JJ stripsVBZB`"?JJB`"i-1 tag+i word CC workstationsVBPsh|?NNSsh|?? i word top PRPSJJMb@IN#~jNNSzGVBw/?NN rh?CDZd;OVBZ rhNNPh|?5i+2 word nowhereRP-RB+ηIN?i-2 word refusalVBjtRBjt?INMbXi-2 word unlessVBD|?5^VBZn?NNSx&1NNQ@JJ/$ݿi+1 word pollinatedRBV-?NNPV-i word veslefrikkNNPSS㥛NNPS㥛?i word unchlorinatedVBN rh?JJ rhi-1 tag+i word DT zeroNNܿCDK7@JJZd;i word educateVB/$?NN/$i+2 word guppyVBNFx?VBDFxi-1 tag+i word PRP askedVBPPnVBDPn? i-2 word citeNNSFxNNFx?i-1 tag+i word NN knowledgeableJJm?NNm i word ozoneINzGNN ףp= @JJ= ףp=CDQNNPzG i-1 word saltVBP/$޿NNP/$? i suffix ETSNNPST㥛 ?NNPT㥛 i+1 word punkJJ+?NN+߿i word lastestJJSd;O?NNd;Oi+1 word lobbyistsNNv/?JJv/i-1 tag+i word CC challengeVB+?NNS+i tag+i-2 tag : JJSINOn?RBOnۿi word interbankNN/$ @RB1ZdNNSZd;NNPuVNNPS^I +JJClɿ i word dyesNNS`"?NN`"i-1 word federationVBZ㥛 NNS㥛 ?i-2 word regieNNP|?5^?FWZd;OVBZCl i-2 word oecdNNp= ףVB|?5^VBPv/?i-1 tag+i word TO asbestosJJB`"ѿVBClNNS}?5^INN$C@i-1 tag+i word NN maintainedNNS1Zd˿VBD1Zd?i-1 tag+i word NNP storeVBPp= ף?RB^I +NNP㥛 ?VB-ƿNN'1ZVBD rhݿi-1 tag+i word PRP$ laterRBRp= ףRB rؿJJ;On?i-1 tag+i word DT dynamicsNNS㥛 ?NN㥛 i+1 word dunesVBGʡE?JJsh|??NNx&1i word liftingVB'1ZVBG!rh?NNQ?i word d'aleneNNzGNNPzG?i+2 word queuesRBʡEINʡE?i word toweringVBGjt?NNPjti-1 tag+i word , becomesVBPK7VBZK7? i suffix DERNNP"~JJ$CNNL7A`?VBDK7RB~jtӿINFx?i+1 word perlmanNNPS/$NNP/$?i+1 word cyclicalRBR(\?JJR(\i+2 word priorVBG/$NN/$?i-1 tag+i word POS incentiveNN;On?JJ;Oni-2 word postmarkedRBPnJJR-ۿRBR|?5^@ i-1 tag+i word CC contraceptivesVBZ1ZdNNS1Zd?i+1 word suspendedNNSQNNP-?JJ= ףp=NN r?RBSV-RBsh|?ſi-2 word reparationsNNPS-?NNSK7JJ+i-1 tag+i word CC representVB'1Z?VBD'1Zi-1 tag+i word DT stepsNNS5^I ?NN5^I  i+2 word hoodVBP(\?VBD(\i-1 word hoylakeVBZ|?5^NNPSmNNP-?i-1 tag+i word WDT transformsVBZjt?VBPjti-1 tag+i word DT affairNNS ףp= NN ףp= ?i-1 tag+i word NN languishedVBDGz?VBNGzi-1 word gorkyVBNVBD? i suffix zzaNNS(\NN(\?i-1 word orangeWDTENNPE?i+1 word embracesJJ"~NNP"~?i word intimidatingVBGZd;?NN(\JJ rhտi-1 tag+i word RB lapsedVBNK7A?VBDK7Ai-1 tag+i word NN gainedVBNv/?JJzGVBDrh|i-1 tag+i word DT dukeNNV-NNPV-?i-1 tag+i word VB evenhandedJJPn?PRP$\(\VBNDli word solicitsVBZ)\(?NNS$CJJuVi+2 word officesJJV-տVBn?VBNy&1RB|?5^VBDy&1?i-1 tag+i word TO costaNNP r?VB rؿi+1 word lectureJJS"~jNN"~j?i-1 tag+i word IN glowingVBGZd;OJJZd;O?i word ejectedVBN rh?JJ+VBD +i-1 word transcanadaVBZsh|??NNPS`"?NNSMbNNPʡE?i-1 tag+i word JJ refundingNNGzοVBGGz? i-2 word take JJMNN+RB+@VBGB`"DTX9v?NNPI +RPV-?JJRGz?VBNq= ףp?VBPIN|?5^NNS?RBRK7A`i+1 suffix eetCCbX9޿JJR(\?VBDNbX9NN5^I RBR(\տVBNʡE?INSCDZd;߿NNSzGPRP$V-?PRPV-VBG"~j?NNPMbX9 @JJZd;O@i+1 suffix emsVBGE?JJx&1?NN㥛 ?VBDy&1CD"~NNPSh|?5 @POS(\?DT-޿JJRENNPp= ףVB+ӿWDT/$?PRP}?5^IINMbX9NNS|?5^RBR}?5^IVBPx&ѿRBzG@VBZ(\ؿVBN rh?i word hammondNNPSw/NNPw/?i-1 tag+i word NNP doNNPQVBn?VBP$C?NNS5^I  i word latinNNP/$VBPGzJJ1Z@NNV-NNPStV?i-1 tag+i word IN coreNNJ +?JJJ +i-1 tag+i word PRP$ teamNNSZd;NNZd;?i-1 tag+i word JJ trappedVBN333333?JJ333333i-1 tag+i word DT paragraphNNK7A`?JJK7A`i word portraitsNNS+?NNMbXٿVBZ$Ci-2 word cycleVBZoʡVBA`"?NNHzGIN-?i-1 tag+i word CC unexpectedVBNnJJn?i-2 word pharmaceuticalNNSףp= ӿJJNNQ?i word punitiveJJDl?NNDli tag+i-2 tag PDT VBGVBv/NNv/?i+1 word substituteDT+?RB+i-1 tag+i word IN competingVBGMbX?NNMbXi+1 suffix badUH-JJ9vINOn?NNP5^I RB ףp= @VBNx&1VBPzGi-1 tag+i word CC openVB rh?JJ rhi+1 word instrumentVBN~jt?JJ~jt i word speakVB9v?VBPZd;O?RBZd;ONN9vʿ i word tpaNNP"~?CD"~i-1 tag+i word TO driveVBy&1?NN+JJK7i-2 word sporadicJJS?NNSi+1 word posedNNV-?RBV-i-1 tag+i word VBD strikesVBZ|?5^NNS|?5^?i-2 word aluminumVBGA`"NNX9v?JJ;Onڿi word scorekeepingVBG#~jNN#~j?i-1 tag+i word VBZ oneJJSPRP}?5^I?NN1ZdCDx&1@i+1 word linksVBG-?NN-i word headlightsNNS~jt?NN~jt i+2 word bad NNPSԿRBzGVBP$CJJ㥛 ?VBZx&?NNSx&NNP`"RPzG?VBD$C@i-1 tag+i word JJ knowVBP/$?NN/$i-1 tag+i word POS landNN}?5^INNP}?5^I?i-1 tag+i word VBZ restaurantJJp= ףNNPp= ף?!i-1 tag+i word -START- statisticsNNPnNNPS'1Z?NNSK7?INZd;i-1 tag+i word RB usedVBNQJJV-?VBDS㥛?i word participatedJJ`"ֿVBDL7A`@VBN/$ i-2 word theNN7A`?EXjtIN= ףp=?NNPSsh|??VBN/$WP!rh?VBJ +?MDA`"?PRPT㥛 NNPl @RBS!rhJJS\(\?FW(\ݿVBPK7A''d;ORB"~jNNSRQ?VBZy&1?RPRBR"~jJJRQWDTbX9?JJK7?DT$C?VBDʡE?PDTS㥛VBGHzGPOSv/?CDGzi+1 word viewingsNN!rh?JJ!rhi-1 tag+i word RB knewVBDuV?VBʡEVBP)\(i+1 word insistedNNS(\NN(\?i-1 tag+i word NN patientsNNPSZd;O?NNSZd;Oi-1 tag+i word DT provisionalJJV-?NNV-i-1 tag+i word DT sellerNNK7?FWK7 i-1 tag+i word -START- certainlyNNSSRB rh?JJrh|i-1 word texasNNPS&1?NNDl?VBD/$JJp= ףNNSClNNPHzG?PRP$Gz?i+1 suffix ypsVB= ףp=JJGz?NNQi-1 tag+i word VBD acrossRP?NNjtINL7A`?i+1 suffix mixPRP333333JJrh|?NN-i-1 tag+i word CC capitalNNSSNN r@JJV-i-1 word airedNNSx&?RB(\?NN(\NNPx&i+2 word capitalismNN"~?JJ"~i-1 tag+i word -START- trinovaNN1ZdNNP1Zd?i word instinctNNK?JJK i-1 word seeVBDMJJRQ?VBZHzGٿNNSSNNPSVBMNN/$IN-?VBGL7A`пRBR$CDTsh|??JJ\(\@WDToʡRBl?i-1 tag+i word NNP scramblesNNS/$?VBZ/$ i-1 word deadNNffffff?VBDffffffi-1 tag+i word IN materialNNl?JJli-1 tag+i word JJS a$JJ$?i+1 word mclaughlinJJ+NNP+?i-1 tag+i word NNP tapingVBGL7A`堿NNL7A`?i-2 word affiliateVBN"~VBD"~?i+1 word millsVBG&1?NNK7AпJJ^I +NNPB`"ѿi-1 tag+i word DT lopsidedVBNvJJv@i-1 tag+i word NNP rangersNNPSA`"?NNSClNNP|?5^i-1 tag+i word VB exchangedVBD"~jVBN"~j?i-1 tag+i word VBN openedVBNVBD?i word encouragementNNT㥛 ?JJT㥛 i+1 word meantDTh|?5WDTh|?5@ i suffix 880NNx&1CDx&1? i suffix ANDNNP/$ DTI +VBPˡENNPSrh|CCMb@i-2 word encouragedJJX9v?NNX9vi-1 suffix othNNPSFxRBp= ף?NNSK7VBGjtֿVB!rhRP"~j?FWK7?VBDI +?VBPV-?VBNK7CDףp= INK7?NNP&1@JJ5^I ?NNx&1i-2 word allegationVBGClNNCl?i-1 word prosecutorsVBNx&1@RBSINS?VBDV- VBPV-?i-1 word speakRB~jtNNGzIN rh?i-1 suffix ebyVBv/?VBGMb?NNKVBNZd;?JJMbNNP/$? i word archNNS㥛 NN +οVBP333333?i+1 word clarinetistJJ{Gz?NN{Gzi+1 suffix dedPRP$`"NNh|?5@RBv/@VB?CD ףp= PDTHzGRBRI +@VBN;OnWDTK@JJPnVBZv?DT-?NNPv?JJSMVBD5^I NNS'1Z@RBS~jt?IN-JJRSFWQVBPDlRPPRPsh|??MDQNNPS ףp= i-1 tag+i word VBZ prideNNCl?JJCli-1 tag+i word VBP financialJJʡE?NNPʡEi-1 word debutVBZoʡ?NNSKJJoʡ?RBnIN7A`i+1 word leanedNNS rhNN?RBT㥛 пi word scribblersVBPnNNSn?i-1 word clampingRPZd;O?RBZd;Oi word pressuresVBZPnNNSPn?i-1 tag+i word DT moreNNPNNS+RBRT㥛 @NNd;OJJRjt"i-1 tag+i word DT nasdaq\/nationalJJK7NNPK7?i-1 tag+i word VBP pedaledVBDy&1VBNy&1?i-1 word specialtyVBZClNNSn?JJHzG?NNʡE?RBRi-1 tag+i word , timesCC+ @WDT{GzNNS5^I VBZK7A`i+2 word incorporatedNN^I +NNP^I +?i-2 word garnerJJ{Gz?RB{Gzi-1 word rockefellerNN/$?VBD/$ i+1 word bNNPX9vNNSB`"NNS㥛@JJEi-1 tag+i word NNP liftsNNP333333VBD rVBZףp= ?i+1 word liabilitiesRBROnNNffffffJJRV-տCC%C?JJK7ٿi-2 word securityRB rhDTy&1?NNS%CNNP(\?JJ(\NNPn?VBD"~VBN"~?i+1 suffix adeDTQNNS㥛 ?NNP rhRBRrh|׿JJR5^I ?VBPQVBZ/$WDTy&1?NNM?PRPx&1?NNPS(\VBGx&?VBD^I +RB1Zd@INK7A?VBNv?POS`"?VBKRBSX9vJJSV-?JJ|?5^FWbX9?i-1 word mathematicsVBPףp= NNCl?RB}?5^IԿi-1 word plannedNN}?5^I@JJsh|?NNPGz?i-2 word impressesJJx&?NNx& i suffix end CCjtĿVBPh|? @RB~jtINZd;ONNSMbVB ףp= @NN333333?VBD333333NNPq= ףpVBZZd;O NNPSoʡJJMb?CD|?5^i-2 word syntheticsVB"~jVBPQ?IN1Zdi word officialNN rh@RB~jtNNPʡEVBʡERP+JJZd;i-1 tag+i word CD videoJJ5^I ?IN5^I ˿i-1 word creativeNNSn?NNni-1 tag+i word NNP driftNNPK7A`NNK7A`?i-1 tag+i word DT correspondingNN'1ZVBG"~jJJHzG@i+1 word nazionaleRBClNNPCl?i-1 tag+i word IN rapidementFW+?NN+i-1 tag+i word DT temptsVBZK7A?NNK7Ai-1 tag+i word NNP proxyNNFx?JJFxi-2 word necessitatedVBGX9v?JJ$CNN&1 i suffix tiaNNSʡENN/$?RB/$i word advantageNNV-?NNSV-i word disinclinedVBNuV?JJuVݿi-1 tag+i word CC baselessJJ{Gz@RBRV-NN&1i-2 word stoltzmanVBN+JJ+?i+1 word everything RPjt?JJ#~j NNoʡVBD rh@VBNSۿINEؿVBGv/?VBʡE?RBSi-1 tag+i word DT pigmentNNx&?JJx&i-1 tag+i word VB nastyJJ&1?RB&1ʿi-1 tag+i word NNP surviveVB+?NNPSx&1пNNV-߿NNPZd;Oi-1 tag+i word JJ flyVB'1Z?NN'1Zi-1 tag+i word RBS financiallyRBV-?JJV-i-1 tag+i word JJ diversifiedJJ/$տNNP/$?i-2 word consideringVBGK7NNx?FWp= ף?VBPʡEJJ;OnNNS|?5^?i-1 tag+i word DT warningVBG5^I NN%C@JJ/$i-1 tag+i word , eitherNNzGCCVBPRQؿPRPffffffRB"~ @DTzG?NNSMi+1 word cerealsNNʡE?JJʡEi-1 tag+i word CD ouncesRB+NNS+?i-1 tag+i word NNP lightingVBGy&1NNX9vNNPRQ?i-1 tag+i word , preferredVBNK7AJJK7A?i-1 tag+i word VBZ asRBZd;O@INZd;Oi-2 word footballVB$CVBPd;O?NNV-?NNPS&1NNP&1?i-1 tag+i word CC nightclubsNNSK7A?NNK7Ai-2 word steamJJףp= VBx&1?NN rh?i-1 word stuffINPn?RPPnVBNA`"VBDA`"?i word realizedVB-NNT㥛 пVBD|?5^?VBNS㥛 @VBPK7JJni-1 word decemberPOSnVBPٿJJn?VBZ"~NNPQNNZd;O@i+2 word convictedVBNT㥛 ?VBDT㥛 i word intenselyRBw/@JJw/i word advisersVBZA`"NNPSm?NNSSNNPn?i word postmarkedVBNJ +?VBDJ +i-1 tag+i word VBN soonerRBRGz?RB㥛 JJRq= ףp i-2 word lifeNNd;OJJMb?RB+NNPI +?i-1 word journalistsWDTL7A`?RBS㥛?IN(\i-1 tag+i word NNP principalJJ9vNN9v?i+1 suffix fatWDTMbINMb?i+1 word unauthorizedDTS㥛?INS㥛i word bradstreetNNPS +޿NNP +?i-1 tag+i word JJ haveVBP"~j?NN"~ji-2 word theoryVBzGNNzGVBNzG?RBZd;O@INGz޿VBZ}?5^Ii+2 word electronicJJx&1пNNPx&1?VBL7A`?VBG rh?NN rhVBD~jt?JJSL7A`VBP~jti-1 tag+i word NNS manufactureVBNNN?i+1 word transportableRBR-?JJR- i-1 word co.DTV-VBGoʡ?JJd;OVBDM?CD$CӿRBK7AпINS㥛?NNPSNN?FW^I +WDTFx?VBZ|?5^?NNPMbX9VBNV-VBP/$?NNSB`"?i-1 word functionsVBP&1?NN&1i-1 tag+i word VBP laggingVBGSJJS@i-1 tag+i word VBP elderlyRB-JJ-?i-2 word shallowerRBR?JJRi-2 word abandonedJJV-?NNV-i+1 word beginningJJn?NNPxNN-?JJSQJJRQRBRQ?i+2 word guestsDT+IN+?i+1 suffix ody NNA`"VBNMb?VBP/$INbX9@VBZ-?NNPSVB(\?NNPSL7A`@VBG)\(RBS WDTE?JJL7A`DTd;Oi-1 tag+i word VBN sabineJJL7A`NNPL7A`?i-2 word involvedVBGPn?NNK7A`JJʡEDTNbX9?NNSK7A?NNPNbX9i-2 word experienceVBGQNNRQ?NNSjt?JJuVRB{Gz?i-1 tag+i word NNP securityVBZʡENN;OnҿNNPX9v?i+1 word plumbingVBNʡE?VBDʡEi word publishVB{Gz?JJ{Gzi-1 tag+i word JJ zoningNNS㥛VBGS㥛? i+1 word rockNNJ +?JJMbXNNPL7A`?i+1 word light NNS?VBP-?VBZ;On?DT-?VB-POS;OnJJ/$ÿIN-NNS/$ݿi-1 tag+i word WP amountsVBZS㥛NNSS㥛?i-1 tag+i word RB checkVBlҿVBPʡE?RBx&1ܿJJL7A`i+1 suffix kinNNPMbXNNPSuVNN?JJK7?i-1 tag+i word , headedVBNS㥛@VBDV-INףp= i-1 tag+i word IN calmJJFx?NNFxi+1 suffix aidWDToʡ@DT}?5^I?VBDsh|?ſRBRp= ףINZd;ONNPSl@NNPʡE@VBP)\(PRPZd;RBx&1ȿRPCl?CDZd;O?JJR ףp= VBClJJK7APOSx&1VBNCl@VBZʡENNSuV@VBG;OnNNV-@i-1 tag+i word NNP businessNNPSK7NNPK7?i-1 tag+i word DT vietnameseJJzG?NNPzGҿi word salvadoranVB-JJ|?5^?NNPi word outperformedRPq= ףpVBNq= ףp?i+2 word listingsVBS㥛?NN)\(?JJQRBx&1ܿNNPi-1 tag+i word PRP$ fleetJJV-?NNV- i+2 word hereNNSMbX9?NNPZd;OVBNuVNN5^I ?RBRS㥛?POS;On'';On?JJX9vDT~jtVBMbX9?JJRS㥛VBDK7A`@VBP rhVBGB`"i+1 word mankindDT̿IN? i word lapsesVBZsh|?NNSsh|??i+2 word recognizingJJ7A`VBP7A`?i word bloatedVBNSJJS?i+2 word f.o.bJJK7A?NNK7Ai-1 word eurobondsNNP&1JJjt?VBD&1i-1 tag+i word PRP$ heavyNNClJJCl?i-1 tag+i word , trackNN r?RB r i word tinyNNzGVBClNNSnJJK@ i+2 word useVBGZd;O?NNp= ף?VBZ(\CD/$޿FWIN rh?NNS1Zd?NNPX9v?NNPS333333VBPʡE?DT rhRBGz@VB}?5^I?JJMbVBD rVBN/$ JJRGz?i-1 word thereforeVBNV-RBZd;OINZd;O?JJR+?JJQNNL7A`VBDv/ @RBR+i-1 word ironicCDx&1WDTjtNNx&1?INjt?i-1 tag+i word TO collectVBV-?NNV-i-1 tag+i word DT estimatesVBZ^I +NNS/$?NNi-1 tag+i word , pausesVBZ|?5^?NNS|?5^i-1 tag+i word NN asideRB(\?VB(\i tag+i-2 tag PRP VBVBPjt VBZ{GzDTsh|?ſRPMb@NNuVRBRQ?VBD$CVBNx @WDT/$?NNSB`"?NNP(\MD+JJSrh|?JJK7A@WP|?5^PRPK?RBS㥛?VBL7A`?INK7POSw/?CD7A`JJR{Gzi+1 word breweryJJSx&ٿJJx&?i word robbersNNSK?NNPK i word lackRB333333VBPNbX9?NN?5^I ?JJ?5^I RBR= ףp=i+2 word juliusNN$C?JJ$Ci-1 tag+i word NNP cardinalsNNPS|?5^?NNSjtNNPV-i-1 tag+i word NNP easternCDJJV-?NNPZd;i+1 word everyoneJJ~jtINX9v@DT ףp= VBD~jt?WDTZd;O߿i+1 word semesterJJd;O޿NNd;O? i word claims VBDZd;RBRx&1VBNI +CDClNNSX9v@NNˡEVBP|?5^JJnVBZ/$ @i+1 word oppressionJJ?NNi-1 tag+i word NN homeRBRX9vֿNNX9v?i+1 word shoulderVBN\(\߿JJ\(\?i word competingVBGK7@NNV-oJJv/տi-1 tag+i word , veteranJJPnNNPn?i-1 word viciouslyVBGPn?JJPni-1 tag+i word DT starNNoʡ@JJFxNNPI +i-1 word scabsRPSӿINS?i+1 word sportifNNS~jtJJRףp= FWGz@i word salespersonNNRQ?JJRQ i word brianVBJJDlNNKǿNNP1Zd@ i+2 word wardVBGQNNQ?i+2 word amsterdamJJR333333RBR333333?VBNnѿJJS?NNS/$VBD7A`i-1 suffix owdVBG+VBD+?i-1 tag+i word -START- franklyRBV-?JJV-i+2 word fifthVBPV-?JJV-i+2 word determineNNPSx?VBG\(\NN9v?VBN㥛 JJSNNS㥛 ?NNPx޿i-1 tag+i word DT wonderVBPRQпNN/$VBDl?i-2 word productivityJJ}?5^INNP}?5^I@i-1 tag+i word DT nautilusJJsh|??JJRA`"NNQֿi word marianaNNSX9vNNPX9v?i+2 word becomingRBPn?NN&1?CC^I +JJv/տINv/?VBG/$i-1 tag+i word RB quitVBDM@VBZʡEJJmi-1 tag+i word NN ledVBN(\NNZd;VBDףp= @ i word abackRBS㥛?RPS㥛i-1 tag+i word NNP attendantsNNPSE?NNPEi-1 tag+i word , reactedVBNQVBDQ?i-2 word linesNNS^I +NN^I +?VBD'1ZVBN'1Z?RBZd;O?INZd;Oi-1 tag+i word `` dptNNnʿNNPn?i-1 tag+i word WDT operateVBZ~jtVBP~jt?i-1 tag+i word TO muchJJK7A`?RB +CDCl i+1 word humNNK7TOK7?i-1 word undulyVBN&1ڿJJjt?RBˡEi+1 suffix rysVBS㥛JJS㥛?i+1 word amparanoPRP)\(NNP)\(?i-2 word alternativesVBtVֿNNPtV?i-1 tag+i word VB compromiseVBHzG?NNHzGi-1 tag+i word NNP performedVBPd;OVBDd;O?i-1 tag+i word WP lostVBNd;OVBDd;O?i-1 tag+i word CC shelfNNn?JJV-VBD rhi word departedVBNClVBDCl?i+1 word contentiousRBoʡ?JJoʡi-1 word michael RB)\(̿NNSQVB#~jNNPSClNNMbpVBDh|?5?VBNh|?5VBPx&1 @JJjt޿NNP r?"i-1 tag+i word `` disproportionateVBPףp= ӿJJS?NNK7A` i-1 tag+i word -START- currentlyRBZd;׿NNPZd;?i-1 tag+i word -START- sadlyLSQRBT㥛 ?NNP#~ji+2 word spewingJJ^I +?NN^I +i+2 word idealDT$CWDT$C?i-1 tag+i word NNS malignantVBP= ףp=VBNK7A`տJJX9v?i+1 word militiaJJ-?NN-i-2 word gebhardWDT"~ʿIN"~? i word cnwNNPSOnNNPOn?i-2 word likesNNS/$?JJ/$i+1 word stationsJJd;ONNP ףp= NN7A`?i+1 word citedVBZZd;ONNCl?RBX9v׿i+2 word fannedNN#~jNNP#~j?i-2 word replicateVBZKPRPK?i-2 word advocatesRB-?VB333333?JJrh| i word vosgesNNPS$C@NNSX9vNNPA`"ۿi word montgolfingVBG+NN r?JJuVi+1 word legislativeINS㥛?JJ(\?NN(\RBS㥛Կ i-1 word dayVBD-?WDTS㥛?VBNPnIN&1VBZHzGѿVBGoʡ?VBP/$NNPNbX9?POSd;O?NNFxRBR|?5^RB~jtNNSK7A`VBE@i-1 tag+i word NNP proceedingsNNSJ +NNPJ +?i-2 word viciousVBZtV?NNStVJJd;O?VBDd;Oi-1 word looselyVBNuVJJ= ףp=?VBDCl i word ridersVBZv/NNSv/?i-1 tag+i word VBD foundVBNL7A`?RBL7A`i-1 word advanced NNPSX9v?NNV-?NNPX9vVBGQRBDl?JJx&1?INrh|ϿVBZvNNSv?i-1 tag+i word IN facedNNS5^I VBN5^I ? i+2 word mail INQ?VBd;O?RPRQ?NN{Gz?VBDMRBJJmVBPmտVBZA`"?NNSA`"NNPd;O޿i+2 word renouncingNNS!rhNN!rh?i-1 tag+i word DT southernJJZd;?NNGzNNPS㥛пi-1 suffix wns RPClNNK7A?RBRS?VBZd;OJJRSVBPS㥛?RBsh|??INQ?VBZMbJJ- i suffix airJJ?NNDl@VBNtVֿVBP rRBffffffNNSMbX9NNP~jt?VB}?5^Ii+2 word greenishJJ`"@NNS\(\VBNQNNh|?5VBDSi-1 tag+i word NNP sciencesNNPS%C@NNP%Ci-1 tag+i word VB broughtVBN7A`?RB7A`i+1 word trendsJJSQ?JJQi+2 word grabbedNNS= ףp=JJI +@NNQi-2 word framesJJRx&1?RBRx&1i-2 word embargoNNPSffffffNNPffffff?i-1 tag+i word NN dealVBMbXɿVBNZd;NNv?i word threateningVBG%CJJL7A`@NNZd;i-1 tag+i word NN holidayNNS㥛?JJS㥛Կ i+2 word fansVBCl?RP(\VBN(\?JJoʡݿNNPJ + i word timerNNQ?JJQi+1 suffix ire JJ?VBGV-NN)\(?FWX9v޿VBDFxVBZDlNNP9v@PRP$m?POST㥛 ?VBN?5^I PRPmi-1 tag+i word NNP singerNN-?NNP-޿i+2 word jokesJJRK7?RBRK7ɿ i-2 word weekNNPSMb?CCQ?RBSL7A`?INMbVBZ-?VBMVBGRQRBv?WDTjt޿JJp= ףؿNNv?FW^I +NNS(\?PDT$CJJSL7A`VBPl?DT?5^I ?NNPoʡi-2 word monday VBjt?VBGQJJʡE?NNx&1?VBD7A`VBN7A`?RBPn?NNPrh|?INPnRBR!rhJJR!rh?i-1 tag+i word VB followershipRBRClNNCl?i-1 tag+i word VBP stableJJPn?NNPn i-2 word turn VB5^I ۿJJ;OnNN1ZdVBZʡE?NNS#~j?VBDQ?VBN?VBPSӿRBq= ףp?INI +ֿNNPv/?i-1 word designDTZd;?NNSJ +NNI +?WPuV?RBL7A`?INuV i+2 word fledNNPS#~j?NNP#~j i word linkedVBGVBDZd;O?VBN@''B`"JJ5^I VBZףp= i-1 tag+i word DT existentialistNNS?JJS i word realINClRB"~j?NN㥛 JJ33333@NNPE i-1 word ripensRBR'1ZRBRQ@JJR~jti word handicapNNJ +?JJJ +i-1 tag+i word RB pulledVBDGz?VBNGz׿ i-1 tag+i word -START- criticismNN= ףp=?NNP= ףp=i+2 word mankindNNMb?JJMbVBZ̿VBPuV?NNSzGi word ellesmereJJZd;NNPZd;?i-1 tag+i word VBZ earlierJJROn?RBOni-1 word franchisesIN{GzRB{Gz?i+2 word concernINClNNS7A`?NNPRQJJʡE NNV-@VBDQ?VBN\(\׿RBCl@i-1 tag+i word JJ albuquerqueNNPSףp= ӿNNPףp= ?i-1 word greenVBNHzGJJZd;ONNMbX@NNSFxi-1 word sometimesNNSףp= RBjtCC`"VB#~j@VBPZd;? i+1 word tonsVBjt?VBP\(\JJ|?5^CDbX9?i+2 word chauvinismRB(\?JJ(\i word shirkingVBGx&1?NNx&1i word privilegeNNS rVBNʡENN㥛 @NNP/$i-1 tag+i word JJ changesNNSS?NNSi-1 tag+i word VBZ laggedVBN/$?JJ/$i-1 tag+i word JJ hitsNN~jtNNS~jt?i-2 word strong NNPA`"?VBGz޿RBrh|?VBDxWDT"~jJJV-׿NNS~jt?VBGQNN= ףp=?VBNx?INx&1?VBZuVi-1 word recantedPRP$/$?PRP/$i-1 tag+i word NN livesVBZZd;׿NNSZd;?i word sociallyRBRRB?i-1 tag+i word CC foulNNMbJJ?5^I ?RBRGzi-1 word egregiouslyJJDl?RBZd;VBNMbi word legitimateVB?5^I ڿJJGz@NNq= ףpJJRjti-1 tag+i word CC urgingVBGK7A`@NNK7A`i-1 tag+i word WDT graduallyRB㥛 ?JJ㥛 i-1 word shieldNNPS!rh?NN7A`JJ7A`?VBZ rhNNS rh?NNP!rhi-1 word embarrassedNN/$޿NNP/$? i suffix rry VBD(\NNS{GzWRB9vRB rNNDl?FWHzGVBNQVBPx&@JJQοNNP'1Z @VBq= ףp?i-1 tag+i word NN motifsNNS㥛 ?NN㥛 i-1 suffix ods VBDv/VBNS?POSS?VBP?5^I RBX9v?RPT㥛 WDT/$INMDTd;O?NNPSNNCl? i suffix e-AJJ r@NNS&1NNV-RBB`"NNP)\(@i-1 tag+i word . imposeVB/$?NNP/$i-1 word vagueIN9v?NNSq= ףp?VBZq= ףpRP9vi+2 word leaderVBD rhRBZd;?VBZffffffNNPsh|?JJGz@NN/$?i+1 word quickly INnWRBw/?JJRq= ףpNNPw/VBZd;OVBN-RBR(\ @VBPnJJRQNNSn?RPn?VBDK?i+1 word pollyDTq= ףpNNPx&?NNSq= ףpRBRL7A`INq= ףp?i+1 word barryNNd;O?VBDd;O i+1 word thinRB +?NN +i-1 tag+i word `` atrociousJJQ?INQi-1 word moonies''Q?POSQi-1 word prettyJJ(\?NNSPnRB rȿNN!rhܿi-1 tag+i word VBZ happeningNN"~VBG"~?i+1 word pioneerJJGzNNPGz@i-1 tag+i word RB sentJJ#~jVBD r?VBPh|?5VBN"~j?i-1 tag+i word IN satelliteNNSNNL7A`?JJS㥛?i-1 tag+i word , thanksVBZuVNNS?5^I @JJ+i-2 word raisesNNd;O?JJd;O i word kneeDT"~jVBNA`"ۿNNˡE? i suffix xieNNB`"?NNSB`"i word keynesianJJ|?5^?NNP|?5^i-1 tag+i word JJ boysNNSw/?NNw/i-1 tag+i word , suggestsVBZw/?NNSw/i+2 word issued VBPn?NNPSɿNN rhVBPClWDTFx?VBZFxNNS(\ȿVBGV-JJV-?IN(\?NNP?i-1 word confrontingRBDl?JJNbX9NNZd;Oi-1 tag+i word NN launderingVBGʡENNʡE?i word aspiringVBG#~jJJ#~j?i word shippingVBGjtNNS㥛@JJI +i-1 tag+i word DT fabricJJHzGNNHzG?i-1 tag+i word IN fidelityJJ|?5^NNP|?5^?i-1 tag+i word PRP reducedVBN rhVBD rh?i-1 tag+i word PRP employerNNףp= ?JJףp= i-1 tag+i word JJ fundNNZd;?JJףp= NNSd;Oi+2 word recommendedNNNbX9?JJNbX9i+1 word workedVBK7VBPK7?i-1 tag+i word TO advisingVBrh|VBGrh|?i-1 tag+i word DT narratorNNoʡ?JJoʡտi word renewingNNuVVBGuV?i+1 word skinsNN/$?JJ/$ i+2 word u.k.VBZ5^I IN5^I ?i+1 word fcb\/leberVBZHzG?NNPHzGi-1 tag+i word DT ongoingVBG|?5^JJ`"@NNJ +i-1 tag+i word DT backingNNffffff?VBGffffff i-1 tag+i word -START- thereforeRBZd;O@RBRV-NN rhLSMbi word restructuredVBDrh|VBN|?5^@JJ!rhܿi-2 word euphoriaVBQNNMbX@NNP|?5^i-2 word executive VBDd;O?VBP rVBuV?VBG{Gz?NNClNNPK7ɿVBNtVJJ&1?VBZ r?i word minpecoNNPSoʡNN}?5^INNPS@i word discreditedJJףp= ӿVBNףp= ?i-1 tag+i word NN intendedVBDzGVBNOn?NNMbi-2 word buffetNNʡE?JJʡEi-1 tag+i word TO supplyVBS?JJʡENNMbi word overchargeVBPV-NNS/$NN= ףp=?JJI +i-1 tag+i word RB receivedVBDNbX9?VBNNbX9i-1 tag+i word NN showedNNףp= VBD|?5^@VBZV-NNSA`"i-1 tag+i word DT distressfulJJ?5^I ?NNP?5^I i-2 word prosecutedNNZd;@JJZd;i-1 suffix caaNNPSX9v?NNS +οNN'1ZNNPHzG?i-1 tag+i word NNP sonataNNPS{GzԿNNP{Gz? i+1 word chefNNX9v?VBNʡEJJK7i-1 tag+i word JJ geneticistNN= ףp=?JJ= ףp=i-1 tag+i word NNP downsizingNNK7A?NNPK7A i word nuxNN/$@NNP/$i-1 tag+i word `` microvanNNCl?JJCl i-1 word few NNS%C@NNP+VBDClRBR^I +JJR^I +?CD\(\?NN= ףp=ڿVBN\(\WDT+JJNbX9?i-1 suffix nowUH&1ڿJJ ףp= RBRQVBP~jt@WDT"~EX|?5^?NNP(\¿NN/$JJRQ?NNS|?5^VBGPn@VBN/$VBZtV@DT1Zd?VBT㥛 VBDV-2IN(\?RBK7?i+2 word hearingsVBNV-?JJV-i-1 word place NNSnNNP ףp= ?NNMbX9DTZd;?VBD$C?VBN$CJJ/$?INQRP&1RB~jtȿi-2 word responsiveVBN7A`?VBD7A`i word reachesNNSSVBZ;On @VBPA`"i-1 suffix era NNPSX9v׿VBD?5^I VBN?5^I ?RB'1ZNNPNbX9NNS@FWʡEPRP!rhVBZjt?NNS/$i-1 tag+i word JJ frustratingJJ㥛 ?NN㥛 i-1 tag+i word RB ordainedVBN+?JJ+ i suffix aenNNS+NNP+?i+2 word industrializedJJ~jt?NN~jti-1 word eyebrowsVBP333333?NNS㥛 NN +οi-1 tag+i word CD clericalJJEԸ?NNEԸi-1 tag+i word DT scheduledVBN|?5^JJCl @JJR'1Zܿi-2 word aspectsNNK7?NNPK7i-1 tag+i word VBZ speaksVBZK7A?JJK7Ai+1 word papersNNPy&1?NNh|?5?VBG^I +VBN5^I JJ#~j?i word worseningVBGK7A`?JJK7A`i-1 suffix ridNNPS@NNS r?VBNV-NNQٿNNPi+1 suffix bolJJ;On?VBGZd;OPOSS?NNZd;OVBZS i word maineJJT㥛 NNMbNNPoʡ? i-2 word mncJJKǿNNPK?i word compiledVBN|?5^?JJ|?5^i+2 word wideningNN$CRB$C?i word newsprintRB1ZdJJX9vNNP1ZdNN+@NNSCli-1 tag+i word JJ commentaryNN-?JJ-˿ i suffix bayJJB`"?NNB`"ٿi+1 word causeNNx&?JJx&i-1 tag+i word -START- cilcorpNN rh?NNP rhi-2 word midwestJJL7A`?RBL7A`i-1 tag+i word IN summarilyRB|?5^?JJ|?5^i+1 word substantial VBG-VBD+WDT;OnRBS+?RBRʡE?JJRK7A`VBP)\(?VBN+?VB-?JJjtNNS㥛RB(\?IN;On?i-1 tag+i word DT rearingVBG\(\NN\(\?i-1 tag+i word DT editorialNNA`"?JJA`"i-1 tag+i word IN controlVB-ӿNNZd;O?RBQJJx&1ܿi-1 tag+i word POS collapseNNOn?JJOni-1 tag+i word IN wildJJMb?NNMbi-1 tag+i word NN laidVBN|?5^?NN|?5^ڿi+1 word authorshipJJGz?NNGz i word upon VBZK7A`տRP(\?JJSVBNSRBK7?VB/$NN/$IN)\(@NNP+i-1 tag+i word JJ hessNNX9vNNPX9v?#i-1 tag+i word -START- unemploymentNNK@JJd;ONNPKi-1 suffix ignINEWDTM?WPuV?DTZd;?VBZS?NNPSK7ARPn?NNSzGVBp= ףVBD/$VBG rhRBCl?VBN rh?NNP}?5^INNT㥛 JJJ +?i+2 word deals VB+?NNPnNNS?VBDn?JJRQ?RBRQJJZd;?VBZnCDv/i-1 word preventedVBGףp= NNףp= ? i-1 word whatDT?NNx&?RBSZd;O׿VBP rhINMb?JJw/VBZ-?VBT㥛 ?RB333333JJSZd;O?POSE NNP|?5^?VBD1Zd?VBNjtWDT!rh?NNSnCC#~ji-1 tag+i word WDT assignsVBZS?VBDSi-1 tag+i word VBG myselfPRPCl?NNCli-1 tag+i word RB trailsVBZ~jt?WDT~jti-1 tag+i word NN unrelatedVBNDlѿJJn?VBD(\i+1 word smashingJJT㥛 CDbX9ȶNN`"?i word beefingVBGx?NNxi+1 word awareRBR%C?JJR%CԿi-2 word townshipsCCjtĿVBS?VBPw/i+2 word ancestralNNS?NNPSi+2 word kakumaruVBPK7A`NNPK7A`?i-1 tag+i word NN americansNNPS1Zd?NNS1Zdi tag+i-2 tag , PRP NNSGz?NNPʡEƿVBMb?NNX9v?VBNE?RBV-?IN}?5^IVBZ?JJ$CVBDMVBP ףp= UH&1? i suffix ienVBGMbXJJS㥛?NNNbX9?VBNRB(\ȿNNS(\i word invoicingNNS?VBGS i word easeJJuVݿVBD rhVBv?NN/$?i-1 tag+i word NN orderedVBNtVVBDtV?i-1 tag+i word IN nonperformingVBGrh|JJrh|?i+1 word tracksNNq= ףp?WDTףp= ?JJ~jtx?INףp= VBZvNNP+i-1 tag+i word PRP putVBZ/$ÿVBrh|?VBP`"?VBDA`"˿i-1 tag+i word JJ relationsNNS&1ڿJJMbNNPʡE?NNPS|?5^?i+2 word finance NNʡEVBDZd;@VBNZd;RBM?NNSNNPS/$?JJ"~jNNP- @VBGQտ i word wisdomNN?JJi word overall VB~jtJJn&@DTlNNPV-UHx&ٿNNS\(\LS rhRBffffff?NNsh|?VBDvCCI +i-1 tag+i word NNP reachVBoʡ?NNoʡi-1 word expertNN~jtVBG`"JJ rh?i+2 word spankingVBNHzGVBDHzG?i word proliferatingJJnڿVBGn?i+2 word fightsVBNOn?JJOni-2 word pertinentJJV-?NNV-i-1 word worry VBJJRENNSbX9PRP}?5^IRB{Gz?IN rh?DT rȿNNClۿCC)\(RBR~jt@WDTOn?i word bedfordNNzGڿNNPzG?i word inspectorNNʡE?VBNMbXJJffffff޿i+1 word climaticJJʡE?NNʡEi word interestJJSSNNV-2@JJbX9NNP)\(NNSV-i+1 word dawdlingVBZQ@POSQ i suffix mpt VBjt @NNsh|??RBw/NNSA`"NNPA`"JJ@VBDK7A`տVBNmVBP-޿i-1 tag+i word NNS statesNNSHzGNNPHzG?i+1 word compared WDTnٿVBNS?IN}?5^I?DTSNNSn@VBGJJʡE?RBR)\(RBtVVB"~NNGzJJR)\(?i-1 tag+i word VBN nearbyRB"~j?JJ"~ji+2 word neighborsVBZMb`NNS+?INZd;i+2 word martexNNSNNSS?i+2 word contributedVBNףp= WDTV-ݿJJMbXINV-?NNPMbX9?VBGZd;ONN?i-1 tag+i word CC pullVBT㥛 ?NNT㥛 i+1 word conceptDT/$?NNS?VBNS㥛ĿJJ{GzIN/$i word timbersNNPS5^I NNP5^I ?i+1 word infamousDT\(\?IN\(\i-1 tag+i word RP runningNNQ?VBGQi tag+i-2 tag CC MDINCl?VBrh|DTzGế i word batesNNPSMbNNSMbNNPMb?i+2 word dishesVBZx&1?VBDx&1i+2 word inflowsJJ~jt@NN|?5^RB/$NNPd;Oi-1 tag+i word NN diningVBGL7A`пNNL7A`?i-1 tag+i word DT entityNNK7?JJK7ٿi+2 word angryDTd;OοNNS{GzܿNNP(\NNPSjt?PDT)\(RBCl? i word seerNNzG?VBDzGi-1 tag+i word , mildewyJJjt?NNjti+1 word constraintsJJ|?5^NN|?5^?i+2 word possiblyRB/$?JJ/$i-1 tag+i word DT derivativeJJbX9?NNbX9i word fastestJJSbX9 @NN$CJJGzi-1 tag+i word VBD thrivingVBGuVJJuV@i-2 word reasonableNNPS{GzNNV-WDT?5^I JJDl?IN?5^I ?NNP(\տi-2 word sellsRBRd;ONN~jt?VBGZd;O׿JJRd;O?JJ rh i suffix ege RBNbX9VBZ"~NNS rNNPA`"?VBNbX9?NNPS rVBNʡEVBP}?5^I?NNtV?i-1 tag+i word VBZ undervaluedVBNT㥛 ?JJT㥛 i-1 suffix ouzVBZV-POSV-?i-1 tag+i word VB roadsNNSMb?NNMb i pref1 XJJ'1ZNNx&1?RB"~DTtVNNSnNNPsh|?@i+1 suffix payMD/$?VBʡERBh|?5NNHzGVBPQJJ)\(@NNSx?NNP/$i-1 tag+i word POS allegedVBNZd;?JJZd;Ͽi+1 word pipelinesJJZd;?NNZd; i+1 word bsnVBP`"ֿIN`"?i+2 word congressNN)\(?VBNSNNP(\?NNPSd;O?VBG?IN)\(?RP)\(JJy&1,VBPMbVBZw/VBS㥛?VBDK7A?NNSI +?RBp= ף? i-1 word sanNNPSX9vJJZd;?CDMbX9NNPS㥛?i word streamedVBN(\VBD(\?i word attributedVBNffffff?JJMbX9VBDFx@NNPIN;On i-2 word corpNNP"~?NNPSy&1?NNS(\NN"~?JJ"~ i+1 word eachNNh|?5VBDffffffDTVBx&1?JJ$CVBGI +?VBPK?IN#~j@NNPS~jtRBw/?VBN rWDT7A`VBZbX9@RP= ףp=?NNSS㥛?i+1 word returnNNPSCl?VBGNbX9?RBrh|?NNClVBNmJJ +?IN)\(NNP rhͿi-1 tag+i word NNS improveVB&1VBP&1?i-1 tag+i word PRP$ skidNNn?NNSnٿi-1 tag+i word RB botheringVBGn?NNni-1 tag+i word -START- abortionNN= ףp=?NNP= ףp=i+1 word victorJJX9v߿NNPn?JJRv/ i word arvindNNPʡE?INʡEi-1 word aroundNNuVJJX9v?INK7VBZ$CDTK7?NNPn?$Mb?i-1 tag+i word IN mainstreamNNQNNSsh|?JJZd;@i-1 tag+i word TO keyVBMbXѿJJMbX? i suffix laxVB'1Z?NNS'1ZJJL7A`?NNL7A`i-1 tag+i word -START- floorVBG{GzNNL7A`?NNPni-1 tag+i word DT gasbNNP-?NN-i+2 word nadirJJZd;?NNZd;i+1 word russiaRBZd;INy&1NNPK7JJZd;O?NNK7?CD^I +i+2 word deregulatedNNZd;?JJZd;i-1 suffix ipyJJS?NNS i+2 word trapVBG㥛 ?NN㥛 i-1 tag+i word , reachedVBNbX9?NNVBDA`"ۿi-2 word overhaulingJJGz?NNGzi-1 tag+i word VBZ peggedJJ~jtVBN~jt?i-1 tag+i word JJR podVBP(\NN(\? i suffix try JJR+VBP/$?RBMbXVBq= ףp@NN+@FW"~jVBNʡEVBZK7ANNSQNNP rhNNPSJJ"~ i+2 word itsVBNʡEWDTV-?DT#~jܿPOSX9v?PRP333333RBSh|?5INKVBDJ +?RP?RBDl?NNSV-NNPZd;ϿVB~jtNNPSX9v?JJS?VBPoʡWRBX9vRBRI +?CDK7A`@JJRCl?VBZd;O@JJQտNNK7VBG{Gzi-1 word anywhereDTMbXRB-?JJx&1?i+1 word shelbyVBGKNNPK?i word bearishVBPʡEJJNbX94@NNjtIN5^I i tag+i-2 tag TO JJRVB/$?NN|?5^JJS?JJR(\ i suffix men VBʡENNPSQ?RB +VBD/$UH rh?NNP!rhMDClNNKCD?5^I JJDlVBZ/$NNSHz(@i-1 tag+i word RB straightJJ$C?NN$Ci-1 suffix amyNNX9v?JJGzIN1Zd?i+1 word garrettNNPQ?INQi+2 word permitNNPKRBS㥛?RPV-NNw/JJuV? i-2 word dnaVB ףp= VBN rJJ ףp= ?VBD r?i+1 word objectsVBG"~JJ333333@NN+NNPtV i word tandyNNPSˡENNPˡE?i word promptlyRB+?VBP+i+1 word distractedWDT㥛 ?IN㥛 i word gorillaNNlNNPl?i-1 tag+i word JJ billsNNSV-?NNPV-տi-1 tag+i word `` maquiladorasFW-?NNSK7ANN$C i+1 word wahNNPS̿NNrh|NNPMbX?i-1 word landscapeNNˡEܿVBP rhٿVBZNbX9NNSʡE?NNPNNPS?i word deprivedVBN/$?VBD/$i-1 tag+i word POS returnsNNPSSNNSS?i-1 word vehicleVBZ/$?NNS/$ſWDTw/INw/?i-2 word insertedVBG ףp= NN ףp= ?i+1 suffix bulVBNK7A`VBDK7A`?i-1 tag+i word NNP wayNNPzGNNzG@i word disturbsVBZ(\?VBD(\i word plantedVBNV-?VBDV-i-2 word gesturesJJ|?5^?NN|?5^i-1 tag+i word CC harassVBT㥛 ?VBP#~jNNQi-1 tag+i word RB posedVBNV-VBDV-?i-2 word becaseJJtV?RBtVi-1 tag+i word WP pointsNNS%C?VBZ%Ci-1 tag+i word , timedVBN$CVBD$C?i-1 tag+i word VBD promisingVBG/$JJ/$?i-2 word difficultiesVBG rJJ r?i+2 word humanNNPX9v?NNZd;ϿVBD(\?VBN/$JJX9v?NNS ףp= i word repaymentVBNN?i-1 tag+i word DT quickviewJJMbX9NNPMbX9?i+2 word crystalVBPZd;OJJZd;O?i+1 suffix ordVBG\(\INK7?DT"~?CCˡEܿVBZ\(\NNP;On?RB9v?NNSoʡVBZd;ONNףp= @''x?WDTQJJ~jt?POSxRBRRQVBPuV?i-1 tag+i word , diabeticsVBZ9vNNS9v?i+1 word earnedNNPS9v?NN rhVBP-WDTw/?RBHzGINw/NNPsh|??VB7A`¿ i word toriesNNPSQ?NNSZd;ONNP!rhi-2 word reviewVBNDlJJDl? i suffix ystVBNh|?5JJ'1ZIN̿NNPq= ףpݿNNMb@ i-1 word uvbVBG/$ٿNN/$?i+2 word oughtVB$C?VBPzGDTQRBSINQ? i word paloRBMbXѿNNPMbX? i word ouncesRB+NNS+?i-1 tag+i word PRP suspectJJ+߿VBʡEVBPJ +? i word edistoDTB`"ٿNNI +޿NNPx&1?i+1 word metalsNNS"~JJbX9@NN!rhNNP rhݿi word obviousNNGzRBZd;OJJGz?i+1 word counteredNNPSףp= ?NNSףp= i-2 word reversedJJRn?RBRn i word porkVBJ +NNSףp= NN/$@i-2 word speculatePDTZd;O?JJy&1?NNMbXi+2 word predatesVBPuVNNuV? i+1 word godVBGQNNPQ@WDT+DTnѿIN'1Z?i-1 tag+i word TO goldVBClNNCl?i-1 word smuggleRP~jt?IN~jtȿi+1 word foreignersJJQNNQ? i-2 word ontoVBN rNN+NNP#~jJJd;O?NNS+?i-1 word braziliansVBPw/?VBDw/i-1 tag+i word -START- falconNNPx&?INx&ٿi-1 tag+i word NN designedVBN-?VBD-i-1 tag+i word VB deeperJJRQ?JJK7AVBN%CRBɿRBRCl?i-2 word physicsVB'1ZVBPq= ףp?NNuVտi word economyNNS|?5^ѿNNjt?NNPX9v޿ i suffix ongJJSʡEVBNjtVBPq= ףpVBX9vRBS~jtNNPS(\?NN~jtVBD`"VBZS㥛 NNPпRPV-@RBX9@PDTnJJ-'@INNbX94@NNSʡEi-1 tag+i word VBZ haveVBL7A`尿VBP^I +?JJuVi-1 word vitallyVBNFxVBDFx?i-1 tag+i word JJ historicalNN|?5^ٿJJ|?5^? i word grazedVBPp= ףVBN?5^I VBDMbX?i-1 word credentialsVBN ףp= ?VBD ףp= i-1 tag+i word CC failedVBN9v?VBD9vi+2 word meantJJSVBZףp= VBGMbNNSףp= ?NNh|?5? i+2 word sale INzG?VBDPn?PDTK7A`@VBNPnJJK7A`RBR?5^I ?VBGZd;ONNPNbX9?VBNbX9RPHzGRB^I +?NNZd;O?i-2 word swirlJJ(\?NN(\ҿi-1 tag+i word -START- variousJJ~jt?NNP~jti word bureaucratsNNSHzG?NNHzGi-1 tag+i word RB balloonVB+?RB+ i suffix EliDTNbX9VBPZd;NNPʡE? i+1 word idleVBNZd;ONN~jtÿVBDV-?JJ'1ZVBG'1Z?i-1 tag+i word CC bradstreetNNPS +޿NNP +?i-1 tag+i word DT wingsNNMbX9NNSMbX9?i-1 word pressNN+?VBPx&1?JJjtIN&1?VB%CRB㥛 i+1 word arthurNNPOn?INT㥛 ?JJv/NNOn?i+2 word priceVBMb?VBDT㥛 ?VBZ|?5^ѿJJRy&1NNPFx?RBRy&1?VBNx&1JJS?RP$C?RB$C@NN?5^I VBGX9vPOSS?IN$Ci-1 tag+i word -START- eightNNPxDT(\CDV-2@VBN|?5^JJEi-1 tag+i word CD panhandleJJMbȿNNPMb?i-1 tag+i word '' burblesVBZffffff?MDffffffi-1 tag+i word PRP aloneRBףp= ?RPrh|JJMb?NNd;Oi-1 tag+i word DT adequateJJx&1?NNx&1i word primericaNNPX9v?NNPSX9vi word broadcasterNNV-?RBV-տi-1 tag+i word RB justifiedVBNNbX9?JJNbX9i+1 word bearsWDT"~?IN"~i word journalistNN"~?JJ"~ i word arthurDTGzJJ rhNNP9v@ i-1 tag+i word NNP semiconductorNNX9v?VBZX9vi-1 tag+i word TO caterVBS?NNS i word dadJJ|?5^NNP|?5^?i-1 tag+i word WRB fortunateJJT㥛 ?NNT㥛 i+1 word fixxNNS㥻NNPS㥻?i-1 word arkomaNNʡENNPʡE?i-2 word detailedVBT㥛 NN?5^I JJuV@VBZ +NNS +?NNP?5^I i word validVBNMPRP|?5^RB&1JJ r@NNZd;OFW1Zdۿi-1 tag+i word TO hideNNS1ZdJJ333333VBK? i word diningVBGL7A`пNNL7A`?i+1 word coorsWDTQINffffff?DTHzGNNP7A`?NNGzCCQi+2 word sentenceJJv/VBNZd;?NN(\ i-2 word cellVBZDl?VBV-VBGGz?NNMb?NNSbX9޿ i word bulletNNV-?JJK7AINV-i-1 tag+i word NNP footballNNrh|ϿNNPrh|? i+2 word cokeNNP-RBL7A`?JJ&1ڿIN+?i word industriesNNP5^I VBZʡENNPSbX9@NNS rhѿJJi-1 tag+i word CC pushedVBN= ףp=ʿVBD= ףp=?i word commoditiesNNP-?NNPS-i-1 tag+i word JJ deductiblesVBZx&1NNSx&1? i word yvonPRP$lJJ\(\NNPA`"?i-1 tag+i word NN dependingNN(\VBG(\?i-1 tag+i word NNPS dealersNNPףp= ?NNPSCl?NNSMbi+2 word lawyers VBNB`"?JJ rINZd;O@NNS ףp= VBG(\?RB$C NNZd;OǿCCZd;O?VBPZd;NNP^I +i-1 tag+i word TO nz$$?5^I ?NNP)\(VBV-i word publishingVBGx&1JJ-NNL7A` @i-1 suffix uidNNZd;O?JJZd;Oi+1 word motifsJJx&?NNx&i word retainingVBG ףp= ?NN ףp= i suffix nodNN rh?JJ rhi-1 tag+i word NNP pilotsNNPSףp= @NNPףp=  i+2 word sawDT\(\?NNPS㥛 ?NNS&1RB\(\NNPI +޿i-1 tag+i word NNP highJJNNPuV?RBOn?i-1 tag+i word RB closesVBZuV?NNSuVi+2 word reportedlyVBZv/NNSv/?i-1 tag+i word CD birthsNNS= ףp=?RB= ףp=i word dealingVBGT㥛 ?NNT㥛 i-1 word tastefullyVBN/$?JJK7VBDCl i+2 word luisNNPSoʡNNPoʡ?i-1 tag+i word JJ moviestarNNPNN? i suffix oirNNPSjtNNSMҿNNʡE?NNP?i-1 tag+i word DT reinvestmentNN%C?JJ%C̿i word confidenceNNS/$NNw/@RBK7ٿNNP\(\߿i+2 word difficultVBQVBPL7A`?VBG-ֿNNPn i word glitchNNSx&1NNx&1?i-1 tag+i word NNP tendsVBZv?NNSvi-1 tag+i word NN shockNNoʡ?NNPoʡݿi+1 word consumptionVB{Gz?NN ףp= @JJ#~jԿDT/$ۿNNS5^I NNP#~ji-2 word upbeatNN ףp= NNP ףp= ?i-1 word carriedINq= ףp?DTRP}?5^IRB ףp= ǿJJ rh @i-1 suffix \/2VBPS㥛NN&1?NNPjt i word phibroNNPS rпNNP r?i+1 word notificationsNN+JJ+? i-1 word menVBPnڿJJ`"޿NNPQVB+?VBG`"?NNffffffVBDPn?VBN&1?i word peerlessJJS㥛@RB)\(NNuVi-2 word engulfedNN-?JJ-i-1 tag+i word IN undressNNI +?JJI +i-1 word toppingDT~jt?PDT~jti-1 word marryPRP$-PRP{Gz?RBv/i-1 tag+i word RBR mundaneNNZd;OJJZd;O?i word subscribingVBG(\?NNP(\ҿi+2 word walkedVBPClNNSCl?i-1 tag+i word , garmentNN~jt?JJ~jti-1 tag+i word JJ undertakingNN?JJi-1 tag+i word RB flownVBNQ?JJQi-1 tag+i word DT kettleNNV-?JJV-i-2 word plightsVBP rh?PDT rhi+1 word criticsWDTjtRB#~jIN333333@i-1 tag+i word DT longJJ/$@NNMbRBE NNPffffff? i+1 word dateJJ;On¿NN(\@VBNoʡJJRK7A`ſRB~jtNNP i+2 word west VB&1NN|?5^?VBD rJJSClINx&?NNPʡE?NNPSh|?5VBP|?5^UH}?5^I?RBx&NNStV?i-2 word envisionNNx?JJxi-1 word concerningNNQ?NNPQٿi-1 tag+i word PRP incorrectlyVBP(\RB(\?i-1 tag+i word VB westernJJ rh?NNP rhi+1 word locationsVB^I +VBP^I +?VBG(\JJ(\?i-1 tag+i word IN landingVBGnNNn?i-1 suffix arlNNPCl @JJnNN rINCli word unrealizedVBN"~jJJ"~j?i-1 tag+i word POS democracyNNQ?JJQi-1 tag+i word VB beepNN= ףp=@JJʡERBˡEԿVB(\i-1 tag+i word VBN awryRBn?NNjtJJFxѿi-1 tag+i word DT renaissanceNNZd;ONNPZd;O?i-2 word opinionsRBIN? i-2 word hadVBP!rhRP rh?VB+VBNn@RBy&1@NNPK7A`?VBGtVֿRBSClWDTSIN/$?DT rCDy&1?VBZZd;JJREJJ-?RBR#~jܿJJS?5^I ?NNS1Zd?NN%CVBDZd;O i-1 tag+i word IN lunchDT"~jNN|?5^?JJ'1Zi-1 tag+i word CC fellowVBI +޿JJp= ף?NN/$ſi+2 word assumptionJJI +?VBNx&1NNI +VBDx&1?i-1 tag+i word DT misdemeanorsNNS1Zd?NN1Zd i word dismalNNQVBNy&1JJK? i+2 word juryJJS?NNSi+1 suffix hurINT㥛 ?JJv/NNOn?NNPOn?i-1 tag+i word NNP hadNN~jtVBD5^I ۿJJ+VBN= ףp=@i-1 tag+i word VBD freedJJHzGѿNNoʡݿJJSMbX9VBNm?i-1 word semiconductorVBGI +NNI +?i+2 word consideredINp= ףDTp= ף?NNP1ZdӿNNPS1Zd?JJDlNNX9v?RB(\? i-1 word goldVBGtVοNN;On?INq= ףpVBZQۿNNSjtNNPV-? i-2 word came VBMbNN!rh?VBD+CD?NNPSB`"?RB&1?VBN`"?EXMJJ9vINoʡ?NNPB`"i-2 word seldomRPK7?RBR}?5^I?RBK7JJR}?5^Ii+1 word drillNNCl?JJCl i suffix mapVBD+VBP+?i+2 word successful VBD"~jPOS)\(RBˡEVBZ)\(@NNT㥛 ?JJT㥛 VBP?INˡE?VBbX9i-1 tag+i word TO rigidVB +JJ +?i+2 word generatedNNPʡE@NNPSʡEi+1 word abusesJJm?VBGNN%C?i+1 word activityVBNB`"۹JJQ?NNS+NNPDlVBGDlNNjt@JJRzGi+2 word copperNN$C?VBP$C i word authorVBZ\(\INClNN- @NNPQi-1 tag+i word RB provokingVBG#~jJJ#~j?i-1 tag+i word `` fabricNN(\?NNP(\i word tobaccoDTzGNNSQNN7A`@JJ%Ci+2 word stereotypeJJ#~j?NN#~jԿi+1 word dispersedNNP?5^I ?NNS?5^I i-1 tag+i word RB mattersVBZh|?5NNSh|?5?i-1 tag+i word NN storageVBˡENNˡE?i-1 word unnecessaryNNS\(\?JJ9vNNjti-1 tag+i word NNP togetherRB-?NNP- i word sinkVBK7ٿNNK7? i word daiwaNNPCl?NNCl i word dukeNNV-NNPV-?i+1 word sketchyDT+RB+?i+2 word cookingNNZd;O?JJZd;Oi-1 tag+i word PRP hireVBP/$?VBD/$MD-ۿi-1 tag+i word NNP hallVBPT㥛 NNPT㥛 ? i+1 word hit NNP rhMDMbX?JJSNNʡE?VBPOn?NNStV?VBZuVVBOnVBDGz?RBSDl@VBN}?5^IRBA`"i+1 word explodedNNPS#~jNNS#~j?i word handcuffsNNSK7?NNK7i-1 tag+i word RB representVBP^I +?JJmVBDX9vVB-?i-1 tag+i word NNP copyingNNNNP?i+2 word chairman NN%C?VBD`"?CD+RB7A`?IN7A`NNPSX9vJJ r VBZ~jt?NNP rh?VBNVBP/$@ i word alterVB +?JJ + i suffix ivaVBDlFWV-@NN(\NNPv i+1 word meatVB ףp= RPQſVBNT㥛 ؿPRP?5^I JJ9v?INCl?i-1 tag+i word CC bloodNNV-?JJV-i-1 tag+i word DT tabloidNNSV-NN rh?JJp= ףi+2 word beliefsVBHzG?NNHzGi-2 word mergerNNZd;?VBDzG?VBNSJJRQؿNNS(\NNP(\?i-1 word deeplyVB= ףp=NNp= ףVBD~jtVBN|?5^?VBP= ףp=?JJzG?i-1 tag+i word RB forbidsVBP`"VBZ`"? i-1 word can NNS-ֿVBʡE@VBGS㥛''v?VBP|?5^RBI +INX9v?JJrh|NNrh|RBRI +NNPSi-1 tag+i word DT disguisedVBN"~jJJ"~j?i-1 tag+i word VBD disruptedVBNx&1?JJx&1i-1 tag+i word RB tradedVBNʡE?JJtVοVBDQ i word deluxeJJ?NNi-1 word staleyVBZx&1VBDx&1?i-1 tag+i word VBD arrivedNNS`"VBD`"?i-2 word confrontsRBR-NN-?i-2 word evacuationVBN= ףp=ҿVBD= ףp=? i suffix tosNNPnѿVBʡENNPSx&1RB?5^I NNCl?VBPGzJJjtNNSp= #@i-1 tag+i word JJ stableNNV-?JJV-i-1 tag+i word NN guyNNS㥛?RBS㥛i+2 word veteranVB%CVBD%C?JJT㥛 ?NNPT㥛 i+1 word cavalierNNZd;ONNP rh?NNPSjti-1 word anticipatingJJR rJJ r?i+2 word powerJJ/$ CCGz?VBNClNNPSX9vNNGz?JJRV-տINh|?5NNPvVB?VBDS㥛?PDTQ?VBPzGDTGz@RB7A` @VBZB`"?NNS ri-2 word provocationVBDl?VBDDl i word markusJJX9vNNPX9v?i-1 tag+i word -START- backRB r@JJxIN!rhNNP`"i-1 tag+i word EX appearVBPjtVBZ1ZdVBX9v?i+2 word streetsVBP$C?VBD$C i word staffNN^I +?JJZd;߿NNP rh?i-2 word preventRBJJn?NNnFW?i-1 tag+i word VBN observersNNSzG?RPzGҿi word distancingVBG!rhNNK7A`?JJmi-1 tag+i word JJ fmNNPp= ףJJp= ף?i word handoutNNK7?NNPK7i-1 tag+i word DT perfectJJK7A`@NNK7A` i word rolledVBDˡE?VBNS?JJMbNNPi-1 tag+i word NNP premiumVBZV-NNV-?i-1 tag+i word PRP$ buyVB/$NNSh|?5JJL7A`? i word liltNN/$?JJʡEVBNK7 i word pleaseVB +@NNS/$NNV-NNPˡEi+1 suffix medJJRffffffVBMbNNQ@VBNx޿RBRffffff?VBPQPRPGzNNPS\(\VBG+JJrh|VBDx?WDTM?RBM@INMbX9NNPx?DT(\NNSK7A`@i+1 word audiencePRP$333333?VBGʡENN"~jܿJJGz?PRP333333i word sentencedVBNjt@VBDjti+1 word nomineesNNPSd;OοNNSzGڿNNPuV?i-1 tag+i word VBD aboveINS㥛?RB~jt?NN/$JJ\(\VBNEi-1 tag+i word JJ masterNN"~?JJ"~i-1 tag+i word TO halfDTMbNN|?5^?VBtVi-1 tag+i word IN dazzlingVBGV-JJZd;?NNv/տi+1 word independenceNNS㥛 VBNMbпJJzG?i-1 tag+i word NN devotedVBNˡE?VBDˡE i-2 word maleNNQVBDX9vVBNX9v?JJQ?i-1 word technology VBZ"~j?VBDnVBPS㥛WDTn?RB!rh?INnVBJJZd;O?NNV-?VBNʡE?NNPZd;i word unnervedJJVBD?i-1 tag+i word DT yieldNN-@VBN/$JJףp= ÿNNP&1i-2 word ongoingWDTS㥛INS㥛?i+2 word lettersNNuV@POS rh?VBN|?5^JJ&1INVBZ rhNNS|?5^? i word swankNNZd;ONNPZd;O? i word poorerVB9vNN7A`FWMbJJRS㥛@JJDlNNS%Ci-1 word travelNNS{Gz?NNPS{GzRP~jtRB/$NNL7A`ؿRBRףp= ?JJtVֿINtV?i-1 tag+i word PRP$ resetJJK7A`NNK7A`?i-1 tag+i word , fellasVBPnNNSX9v?VBDjt޿i-2 word mitsubishi NNPSx&1?NN1ZdRB/$NNS/$NNPFxѿVBHzG@VBDNbX9?VBNNbX9VBPn?VBZKi-1 tag+i word JJ broncosNNS rh?NNP rh i+1 word katzNNrh|NNPrh|?i-1 word formedNNPZd;O?NNPSZd;O i suffix MacNNPjt?NNPSbX9JJHzGi+1 word respondedNNSjtƿRBClNNPNbX9? i word d.c.NN%C̿NNP%C?i-1 tag+i word DT palestinianJJlNN-ƿNNP?i-1 tag+i word NNP refundingVBGK7NNK7? i-2 word lost VBB`"FWK7PRP$1ZdINq= ףp?VBG^I +߿NNS?RBRnVBN(\?JJ;On?NNSy&1ܿJJRn?i-2 word mixedJJ)\(?NNENNP5^I ?i-2 word researchesNNS?5^I ҿNNE?NNPy&1 i word rivalsVBZʡE?VBP/$ݿNNSp= ף?VBNjtNNCli-2 word releaseNNPSK7NNSK7?i+2 word expressNNsh|??JJS}?5^IܿJJd;OVBZQ?NNSQſNNPjtVBG333333?i-1 tag+i word NNP n.v.NNbX9NNPbX9?i word refineryNNSʡE޿NNsh|??JJ\(\i+1 word spottedNNPS +NNP +?i-1 tag+i word VBN paperboardRBw/NNw/?i-1 word burdenVBZMb?NNSMbRBZd;O?NNZd;Oi+1 word telephoneJJV-NNPtV?VBG|?5^?NN㥛 i-2 word slashingNN rhVBZZd;NNSZd;?JJ rh?i-2 word pushingNNS rh@JJK7NN5^I ?RB+i-1 tag+i word `` deadVB ףp= JJ ףp= ?i-1 word duckingRBjt@NNSIN|?5^i+2 word strengthPOSp= ף@VBNp= ף?VBP7A`JJp= ףVBZ%C VBV-?VBG7A`?i-1 tag+i word DT husbandNNK7A`?NNPK7A`ݿi-1 tag+i word JJ highNNm?JJClRBA`"?NNP|?5^?i-1 tag+i word TO secondVB'1ZNNSV-JJx&@i-1 tag+i word NNP libertiesNNPQ˿NNPSQ?i+1 word blazerJJp= ף?NNp= ף i word cheeseNN{Gz@JJ{Gzi-1 tag+i word CC arguedVBNjtVBDjt?i-1 tag+i word VBP ralliedVBD~jt?NNP~jti+1 word suspectsNNRQ?JJRQ i suffix 9-6JJw/CDw/? i-1 word long VB rhJJx&1?VBPw/IN+ǿCD&1?NNS rhNNPףp= ?VBGK7NN{Gz?VBNʡEJJRZd;RB?VBZzGi-1 tag+i word CD pagesNNS\(\?NN\(\ i suffix akaVBV-UHSJJV-NNPv/@i-1 tag+i word POS midtownJJCl?NNCli-1 tag+i word VBZ goVBP'1Z?NNJ +JJPnVBK7?i-2 word embracedJJZd;@NNQNNP+?RB+NNSsh|?i tag+i-2 tag TO RBRVBy&1ܿJJRK?NNףp= ÿi-1 tag+i word NN spreadVBP333333?NN%C?VBDSi-1 tag+i word IN therapyNNS?JJSi-1 tag+i word VBD throughRPPn?RB-@INCl i+2 word agreementNNl?VBDd;O?VBNv׿JJ5^I ?NNS`"?NNPMi-1 tag+i word , clauseVBZK7NNPOn$-NNx&1@VBPL7A`JJbX9ȶi word mainstayNN +?JJ +i-1 tag+i word NN circledVBNjtĿVBDjt?i+2 word flattenVBN(\?VBD(\ i-1 word loveNN7A`?RB7A`ҿi-2 word fifthRBx&1NNS1ZdNNPX9v?NNPS/$NNm?VBDrh|i-1 tag+i word `` prosNNP ףp= NNS ףp= @i tag+i-2 tag WDT NNSVBPMb @NNSQ?JJ~jtNN1ZdJJSbX9?RBSbX9RBoʡNNP@VBʡENNPS5^I ?VBN rhINI +VBDjtJJRGz?VBZDli+1 word tallyJJzG?NNzGi word demeanorNNSp= ףNNp= ף?i-1 word succeedRB~jtIN~jt?i-1 tag+i word VBG admittedlyRB/$?NN/$i+2 word ballsVBP{Gz?VBD{Gz i suffix ieuNN|?5^?JJ|?5^i-1 tag+i word , oversizedJJ/$?VBD/$i-1 tag+i word JJ financingVBG/$?NNjt?JJZd;Oi-2 word conlonNN5^I @JJ5^I  i word showaNNzGNNPzG? i+1 word plcNNS7A`NNGzNNP?NNPSw/?i-1 tag+i word CC basketballRB\(\JJK7A`VBV-NN)\(@i-1 tag+i word , claimsVBZ333333?NNSX9vCDCli+1 word scaleDTMbX9?VBNq= ףp?JJq= ףpINMbX9ܿ i word erodedVBNGz?JJGzi-1 word listsRB5^I NNS5^I ?DTZd;OWDTZd;O?i-1 word amazingDT1ZdIN1Zd?NNHzG@JJ!rhNNP$Ci-1 tag+i word CC firstJJK7A?RBK7Ai-1 tag+i word `` loweredVBNNbX9?JJNbX9i word contortedVBNOnJJOn?i tag+i-2 tag TO PRPNNMbX9RBRZd;OJJRrh|߿JJMbX?DTV-NNSrh|ϿNNP-@VB ףp= ?i word shareholdersNNPSNNPS(\ڿNNSX9v?i word meditationNN?5^I ?JJ?5^I ڿi-1 tag+i word NNP robinNNPQ?VBDQi-1 tag+i word JJ 'sPOS^I +?VBZ^I +i-1 tag+i word IN exportVBGjt޿NNq= ףp?JJV-i-1 tag+i word PRP$ plightNNp= ף?JJp= ףؿ i word perilsNNSx&1?NNx&1i+1 word currenciesJJw/?NNPw/i-2 word starvingNNMb?JJMb i-1 word swapJJE?NNPEi-1 tag+i word CC heatingVBGV-NNV-?i-1 word swissNN~jt?JJI +NNPV-?i-1 tag+i word NN riskyNNK7AJJK7A? i+1 word psNNnIN(\?VBGn?RB(\i+2 word federationVBN;OnNNP;On?i-1 tag+i word VB orderlyJJ?RBɿ i word nasaNNP-?NN-ƿi-1 tag+i word WRB marianaNNSX9vNNPX9v?i+2 word situationNN+VBPJJ+?INGz?VB?RPGzi+1 suffix cosJJn?CDnCCx&NNPQ?NNPSSi-1 tag+i word VB wetUHB`"ɿJJA`"?CD+i-2 word sleekVBG%C?NN%C i suffix anaNNPSQRB9vNN9vJJʡENNSq= ףp?NNPjt @i-1 tag+i word VBG lacklusterRB9v?NN9vi+1 word doubledNNCl?JJCli word nondemocraticJJ+?VBD+i+2 word billingsNNRQNNPRQ?i-1 word bannedJJ?5^I NNP?5^I ?i-1 tag+i word VBN satisfyingVBG= ףp=JJ= ףp=?i+1 suffix val RBX9vVBPvJJQ?RP|?5^?DT|?5^NNS333333?NNPS㥻?VB#~jNN`"?VBDv?VBNjtIN|?5^?VBGq= ףp?i-1 word specialistsVB rVBP^I +?NNS i word sizeVB%CܿNN@NNP ףp= i-1 word cessnaNNPDl?NNDli-1 word indianNNPSSNNS?JJS˿NNPS?i-1 tag+i word POS longestNNDlNNPDl?i-1 tag+i word NN recycledVBNS㥛JJ rh?VBD333333ÿi-1 tag+i word WP walkVB}?5^IVBPMb?VBZ{Gzi-1 tag+i word CD firstJJ%C?RBsh|?NNPCl?i+2 word judgesVBNx&1?JJ1Zd?INrh|VBGzRBT㥛 ?NNMbXJJS rh?RBS rhi-1 tag+i word DT unspentJJZd;?NNPZd;i-1 tag+i word PRP$ raiderNN{Gz?JJ{GzԿi-1 tag+i word VBN stripsNNStV?RBtVi word monsoonNN`"?JJ`"i-1 word passedRP/$NNSK׿NNxֿJJV-ڿIN@ i word paoNNPSS㥛ؿNNPS㥛?i-1 tag+i word -START- ashurstNNPrh|?INrh| i suffix :30NNSx&1NN rhJJˡECD?5^I @i+2 word europeansVBD%CVBN%C?i+2 word fitnessRP ףp= ?JJ ףp= WDTClDTCl? i word effectVB +NNʡE?NNPDli-2 word sportVBZ/$?VBPx&1?NNS/$ſNNx&1пi-2 word ps\/2NNx&RBS㥛CDl?i-2 word bicyclingVBGʡENNʡE? i suffix 348JJT㥛 CDT㥛 ?i-1 tag+i word -START- doVB5^I ?VBPʡE @PRP$ʡENN+NNPQi-1 tag+i word VBZ albertVBNrh|NNPrh|?i-1 tag+i word POS cabinetNN rh?JJ rhi-1 word dictateDTV-INV-?i word speculateVBE?VBP/$?NNni-1 tag+i word JJ discountingJJ-NN-?i+2 word readyJJq= ףpNNPq= ףp?i-1 tag+i word VBZ somethin'NNx&?JJx&i-1 tag+i word JJ republicanNNP'1Z?NNPSMbпJJK7Ai+1 word stonesVBDrh|VBGsh|?JJJ +?NNCl׿i word macroeconomicJJ rh?NN rh i+2 word rideNN%CNNPQJJMb?NNPS9vҿVBN+?i-1 tag+i word NN assuranceVBnNNn?i-1 tag+i word VBD gainersVBZK7ѿNNSK7?i-1 tag+i word CC saveVBʡE?VBPʡEi word promoterNNS㥛@JJx&1JJR?5^I i-1 tag+i word DT midlandNNsh|?տNNPsh|??i+2 word others NN㥛 RB)\(?NNS|?5^@NNPv?RPףp= ۿJJRvVBNOn?VBPA`"?INS㥛VBZ/$JJQi+1 word economistsWDTuVVBGtVJJtV?INuV?i word rhetoricNNS;OnNN{Gz @JJzGi-1 tag+i word `` americansNNPSRQNNSK7NNPK7A` @i-2 word educatingJJT㥛 NNT㥛 ?i word kingpinsVBZZd;ONNSZd;O? i pref1 QPDTK7A@RB(\NNPSZd;RP+INh|?5NNS5^I  VBZʡE?NNPR&@VB= ףp=CDKǿJJSKRBR~jtؿJJ7A`NNMbi-2 word forecastsJJx?INxi-2 word justiceRBRGz?NNrh|?JJrh|RBGz޿i-1 tag+i word VB irresponsibleVBNʡEJJʡE?i-1 tag+i word IN coupNNSٿNN?i+2 word nikkoNNl?JJl i word officeNNFx?NNPFxi-1 word withdrawDTS?INS˿i-1 word forestVBGlNNl?i-1 tag+i word RB unfairlyRBMbX?JJMbXi-1 tag+i word DT soundNNjt@NNPh|?5NNS+i-1 tag+i word PRP$ catalogsNNS(\?NN(\i+1 word causedWDTS㥛?NN5^I ?WP/$?VBG5^I INvi-1 tag+i word TO felliniVBSNNPS? i+2 word mareJJS\(\?NN\(\i-2 word intelligentPDT(\VB(\?VBPNNS(\i-2 word burlingtonNNP?NNPSi-1 tag+i word IN affidavitNNSrh|NNrh|?i word oversubscribedJJuVVBNV-?RBd;O޿i+1 word explainDT!rhܿWDT!rh? i word onceVBPGzRBfffff1@WRB\(\VBZ"~jNNPOnRP(\JJMbVBsh|?NNB`"[#VBDX9vPDTZd;OVBGV-IN@CDV-i-1 tag+i word JJ alliesVBZK7ANNSK7A?i-1 tag+i word : paulineVBbX9ֿNNPbX9?i-1 tag+i word VBN bidsVBPX9vNNSX9v?i-1 tag+i word NN bossesVBZ?5^I NNS?5^I ?i-1 tag+i word VB importedVBNףp= ?JJ rhVBDQi+2 word tabloidVBN rh?JJ rh i word plans VBPlNNPS+NNoʡVBDJ +NNSMb@NNPnVB`"VBNSVBZM@i-1 suffix .i.NNPSQNNPQ?i+2 word zachariasVBP#~jԿVBGOnNNNbX9?i+2 word casinoRB= ףp=JJ/$NNPOn?IN-?i word quickestJJS;On?NN;Oni-1 tag+i word RB recoveredVBN)\(VBD)\(?i-2 word handsomelyVBGx?NNxi+1 word otherwiseNNK7A`VBDV-?INT㥛 WDTT㥛 ?JJDl? i word uniceNN%CJJB`"NNPK7?i-1 word dealsVBD#~j@JJ㥛 ?VBN#~jRB㥛 i-2 word criticismJJQNNQ?CCS㥛?PDTQݿRBtV@DTGz i-1 tag+i word IN fecalJJ?5^I ?NN?5^I i-1 tag+i word NN envisagedRBClVBDCl?i-2 word earliestJJDl?NNDli-1 tag+i word NN climaticJJʡE?NNʡE i suffix DowJJ1ZdNNP1Zd?i-1 tag+i word IN concedeVBP~jt?NN~jti-1 tag+i word , readingVBPuVVBGuV?i word journalisticJJQ?NNQ i suffix IDENNSB`"NNh|?5NNPA`"?i-1 tag+i word JJ muttsNNS&1?NN&1i+2 word handlersJJtV?VBDtVi+2 word realistsVBZsh|??POSp= ף?VBDSۿi-1 tag+i word JJ warningVBG/$NN/$@i-1 tag+i word -START- moneyNNSʡENN/$@JJNbX9NNP= ףp=ڿi-1 tag+i word , buyVBJ + @VBPmͿNNClRB(\i+1 word guerrillasNNSK7A`NNPK7A`?i+1 word personJJx&?VBG{Gz@VBNClNNGz CDS㥛?i-1 tag+i word NNP benchmarkNNI +?JJI +i-1 tag+i word VBP allDT/$PDTQ?RB!rhi-2 word batchRBm?INmi-1 tag+i word , cavalierJJ-?VBD-i word clandestineVB|?5^JJQ?NN;On i word matherNNPS1ZdNNP1Zd?i word turbulentJJS㥛?NNS㥛i word inventionsNNS+?VBD+i-2 word inevitableNNQ?JJQտi-1 tag+i word JJ ranVBNX9vVBDX9v?i-1 tag+i word NNP haagVBNNNP? i+2 word alecVBNV-?NNV-ݿi-1 tag+i word PRP lowJJ(\?RB(\ҿi+1 word unsolicitedVBZ^I +POS^I +?JJQVBDQ?i-1 word survivalRBjtINjt?i+2 word resolvingVBN(\NNv/VBDx&?i-1 word justicesVBN^I +VBD^I +?i+2 word silveryNNK7?JJK7 i suffix ich NNPS rRBZd;VBNZd;OWDTCl@VBZSVB+NNL7A`JJʡE@WP+NNSQNNPI +?i-1 word provide RBRlPDT!rh?VBNGzIN{Gz?WPGz޿DT(\NNS +?NNP7A`JJV-NNMbX9?JJRl?RB{GzCD%C? i+1 word namVBDjtVBNjt?JJv/NNPv/?i+2 word bismarckianVBZx&?VBDx&i+1 word researchersNNPx&?NNw/?JJQINKi+1 word flownRB?5^I ?JJ?5^I ڿi-1 word remainderVBT㥛 VBPzG?VBDX9vi-2 word attacksRBRQ?JJRQ i word newarkNNPS?NNSi word registerNNPSV-߿NNPV-?i word balloonNNPˡEVB+?NNSS㥛RB+NN @i-2 word extraVBN~jt?VBD~jti-1 tag+i word RB convincingVBGtVJJtV?i+1 word inventoriesVBD rh?VBZd;ONN1ZdJJd;O?i+2 word significantlyNN/$?VBN(\JJ/$VBD㥛 ?VBP"~j?i+2 word objectiveVBN!rh?VBD!rhi word imputedVBNMbXJJMbX?i-1 tag+i word CC askVB+?NN+i-1 tag+i word VBD awayRBy&1|VBZ"~jRPGz?VBNQi+2 word tendsVBNCl?VBDCli-1 tag+i word TO dreadedVBK7JJK7?i-1 tag+i word : claimVBZx&NNx&?i-1 tag+i word VBD deeplyVBN`"RB`"?i tag+i-2 tag JJ WPNNPS"~?NNmͿJJm?VBZ#~j?NNS#~jNNP"~i word maronitesNNPS`"?NNP`"i-1 tag+i word NN idleNN~jtÿJJ~jt?i-1 tag+i word CC lowsNNSzG?JJRzGi-1 word smokingVBNvNNv?i word combiningVBGX9v?JJX9vi-1 tag+i word , qualityNNMb?JJMbi+2 word marketersNNZd;O?JJ(\?VBGuV i+1 suffix mNN rNNP r? i suffix tor VBZ/$NNSsh|?MDd;OVB(\?RBOnNNd;O"@VBDy&1NNPrh| @RBSSVBN~jtJJRV-տVBPT㥛 ?JJh|?5i-1 word indicatorsRBV-NNSv߿JJoʡNNrh|?VBZv?i+1 word cablevisionJJlNNPl?i+2 word prettyINlڿDTl?VBD)\(?VBN)\(i-1 tag+i word RB firstNNPn?JJnٿ i-2 word gemsVBN{GzNNZd;OVBD? i word feeVBP(\NNM@JJK7RBq= ףpi-1 tag+i word WP resignedVBPV-VBDV-?i-1 tag+i word JJ portfolioNNHzG?NNPHzGi+1 word mccawDT(\տNNPq= ףpRBq= ףp?NN-INS?i-1 tag+i word VBZ unflakyJJl?RBli-1 tag+i word DT coarseJJuV?NNuVi-1 word distilledVBZPnNNSPn?i-2 word wouldNNPS?RB/$?JJ~jt?IN rh?VBZ;OnNNPQ?VB +@NNM?RBRʡE?JJR"~j?TOK7RP!rhNNSEVBPףp= VBNJ +?DTrh|VBGV-ͿVBDlCC'1ZܿPDTxi-2 word boostsVBZEPOSE?i+2 word violetDT/$?RB/$i-1 tag+i word , alasNNSRQUHS?RBtVi-1 tag+i word NN householdsNNSʡE?NNʡEi-1 tag+i word POS publisherJJR}?5^INN}?5^I?i-1 word adjustmentsVBV-ڿVBPV-?VBNGz?VBDGzi-1 word jettyINQWDTQ? i-2 word bikeVBZQIN +WDT +?VBN +VBDS㥛?i-2 word cushionNNSQ?NNQ޿i word buryingVBG+?JJ+ i-2 word owedVB9vNNP9v?i-2 word massesJJ rh?NN rh i word esbRB rhٿNNPy&1 @NNPS9vJJV-NNffffffVBPw/ i word aliensNNS?VBN㥛 NN%Ci-1 tag+i word NNP commutesVBZRQNNSRQ?i-1 tag+i word VBG tiedVBNbX9?NNbX9i word specializesVBZV-?NNSMbVBDA`" i suffix CMSJJ +NNP +?i-1 tag+i word VBD paymentsNNSK7?NNPK7ٿi+1 word careerJJV-?NNV-i-1 word nikkoNNPq= ףpNNPSq= ףp?i-1 tag+i word `` asbestosNNP%CNN rh?RB?5^I i+2 word presidentialVBDA`"?RP ףp= ?VBNA`"ۿRB ףp= i-2 word teamsVBPPn?VBGrh|?RB~jtNN+߿RP~jt?i-1 tag+i word IN fujisNNPSI +@JJRV-NNbX9ȶNNP%Ci+2 word evolutionVBNSNNS?i-1 word colleaguesVBD rпVBPK7?VBNZd;Oi-1 tag+i word IN packNNNbX9?JJNbX9пi-2 word shevardnadzeVB㥛 VBG?5^I ?NN?5^I NNP㥛 ?i-1 word yamaichiNNPSZd;߿NNPZd;? i+2 word nowNN7A`VBDGz׿JJRL7A`VBZ"~?NNPS(\?FW+VBPv/VBNjtNNSM?VBG!rh?JJ?INX9v @DTS㥛?NNPxVB~jtRBRL7A`?WDTy&1RBSi word supressorVBP= ףp=NNT㥛 ?JJMbȿi-1 tag+i word NNP delorsNNPSV-NNPV-?i-1 tag+i word VBZ littleVBPClNNSK7RBE @JJ~jti-1 tag+i word CD lowerJJRxRBRx?i+2 word addressJJ{Gz?NNSRB9v?i-1 tag+i word IN repossesedVBNZd;OǿJJZd;O?i+1 word disturbRBRʡEݿRBʡE?i-1 tag+i word NN premiumsNNSʡE?NNʡEi-2 word abandonNNSrh|VBGd;OJJJ +?NNˡE?i-1 tag+i word POS zoningVBGffffff?JJffffffi-1 tag+i word -START- caesarsNNS;OnNNP;On?i-2 word composedIN'1Z?RB'1Zi word botheringVBGn?NNni+1 word sienaNNV-FWV-?i+2 word lightweightJJ+?RB+i word enjoyedVBB`"VBNV-?JJClVBD-? i word splitsVBZCl?NNSClۿi+1 word grantsNNK7@JJK7i-1 tag+i word JJ blewVBZZd;ONNT㥛 VBD#~j? i+2 word wayFWoʡVBP~jtIN7A`?VBDPn?RB'1ZĿNN+PDT&1VBNx?VBZnNNStV@NNP"~jVB+JJR"~j?JJp= ףi-2 word complicatedVBGDlJJDl?i-2 word auctionVBw/RPGz?INGzNNSw/? i suffix JimCC rhJJClRBENNP~jt@ i word careerNNS\(\NN`"?JJd;Oi+1 word fountainsJJ^I +VBGMbX9NN @ i-2 word palmNNPSCl?NNSCli-1 tag+i word PRP$ rivalNNMbX?JJMbXi+1 word spiralRBQJJQ?i-1 tag+i word IN waterworksNNS}?5^INN}?5^I?i+1 suffix etoJJI +?NNSNNP^I +i-1 tag+i word CD hundredVBNZd;OJJClCDNbX9?i-1 tag+i word PRP$ potentialJJT㥛 ?NNT㥛 i word popVB'1ZVBPq= ףp?NNSZd;ONN?JJ%Ci word officioJJR/$NNjt޿FWK?i+2 word techniquesVBPK7A`?JJ+?NN+VBK7A`i-1 tag+i word RB keyedVBNZd;JJZd;? i suffix pacNNX9vNNPX9v?i-1 tag+i word NNP directmailNNy&1|?JJy&1|i+2 word resentJJ?NNi-1 tag+i word JJS routeNNStVNNtV?i-2 word reactorVBZrh|NNPrh|?i-1 word meaningfullyVBNʡE?VBDʡEi+2 word americanaJJZd;NNZd;?i-1 tag+i word JJ makeupNNK7A`?JJK7A`i-1 tag+i word NN cuttingVBGh|?5NNh|?5? i-2 word spedJJSL7A`NNPL7A`?i+2 word actuallyVBZd;O?NNPS'1Z?INZd;ONNP'1Zi-1 tag+i word POS commercialJJ1Zd@NN1Zdi-1 suffix ykeVBQ?VBPQi+2 word ontarioVBNRQ?VBDRQ i word radioNNPSʡENNQ @FWMڿVBNZd;VBP +ֿJJClNNPX9vi+2 word prospectusVB~jtVBP~jt?i-1 tag+i word NNP ownedVBN)\(?VBD)\(i word blandingsNNPSlNNSE?NNPX9vֿi word naphthaNNjt@JJ!rhVBNQTOK7i+1 word abortionNN/$RBMbINV-?RP +VBG/$?i-1 tag+i word RB proneJJn?VBN= ףp=RBMbXi-1 tag+i word NNS balkVBP rh?NN rhi-1 tag+i word NNS rivalsVBP/$ݿNNS rVBZ? i suffix boyUHsh|?@RBlڿNNPL7A`NNtV?NNSjti-1 tag+i word . a.''ENNQ8NNPRQ@ i+2 word few VBZ-?NNzG@VBDp= ףRBSKVBP(\?VBMVBGsh|?JJSK?NNS-i word stumbledVBNZd;OVBDZd;O?i-1 tag+i word POS overbuiltNNE?JJEi-1 tag+i word POS revisedVBN/$ѿJJ/$?i+2 word catchNNʡE?RBRZd;JJʡEJJRZd;?i+1 suffix lapJJp= ףNNp= ף?i-1 tag+i word CC placedVBD`"?VBZjtVBNB`"i-1 tag+i word DT kidnappingNN/$?JJ/$i-2 word lengthyVBPCl˿NNCl?i-1 tag+i word NN improvementsVBZ= ףp=ڿNNS= ףp=?i-2 word mussoliniVBN"~JJ"~?i+2 word backlogsVB ףp= JJR ףp= ?i-1 tag+i word VBZ boringJJx&1?VBGx&1i-1 tag+i word JJ firmRB{GzJJ-?NNi-1 word researchersVBD#~j?VBPy&1VBNbX9ȶ?NNPZd;O?i-1 tag+i word VBN falseJJQ?RBQi+1 word sikesNNPSmIN)\(?NNPm?DT)\(i-1 word formationRBRM?RBM¿i-1 tag+i word DT chiefJJ%C?NNI +NNPZd;? i-1 word fortNN rhNNP rh?i-1 tag+i word NN headsVBZV-NNSV-? i-1 word flewRP5^I IN5^I ?i word opposedPDTX9vVBNDl?JJZd;O?VBD;Oni-1 tag+i word VBD toleranceNNK7A?RBK7Ai word occurringVBGrh|@JJQNN&1i-1 tag+i word NNP goVBPM?VBMi+2 word policy VBNK7?INGz?NNPCl?NNPSGzRPGzJJK7@NNS㥛PDTS?VBPtVRB/$ۿVBZK7VBn?i-2 word anyoneINS?VBZ|?5^?VB+?VBPJ +WDTSi+2 word learnVBp= ףؿNNSy&1NNy&1?JJp= ף? i+2 word heckVBN'1ZJJ'1Z? i word ferroNNPm?NNmi-1 word assertionsWDTQINQ?i-2 word corryJJ|?5^RBV-INGz?NN|?5^?RPV-? i-1 word olegNNA`"?NNPA`"ӿi+2 word chargeNNGz?VBD~jtVBNV-VBP+?JJ/$?VBZ~jt?NNPFxi-1 tag+i word NNP britishNNPjtJJjt?i+1 word videotapesJJ/$?NN333333ÿCDNbX9i-1 tag+i word JJ costsNNSX9v?NNX9vi+2 word rushforthVBZMbNNPMb? i-2 word mrs.VBZK7A?VBPrh|NNSClPOSl?i word interpretsVBZ ףp= ?NNSGzNN+i-1 tag+i word PRP$ movementsNNSHzG?JJHzGi-1 tag+i word TO getVBV-?NNPV- i word actVBZ!rhNNS1ZdVB$C?RB$CNNK7@RBR +VBP?5^I ?JJZd;i-1 word spillVBDl?VBPDlVBNMVBDM?i+2 word including NNPNbX9NNPS ףp= ׿VBGbX9޿VBP;On?VBNGzJJʡE?VBZK7ANNSM@VBtVNNGzVBD"~j?i-1 tag+i word DT sensoryNN?5^I JJ?5^I ? i+1 word likeRPRQJJQNN)\(?RBSCl˿VBNQֿNNPB`"VBG"~?NNS|?5^ @MDPn?VBd;ONNPSףp= JJS ףp= ?RBRQ?VBPV-@RBjtINq= ףp?VBZX9v?VBDQJJRQi word modifiedVBNjt?JJDlٿJJR1Zdi word extraordinarilyNNPS1ZdVBN= ףp=RB7A`?i+1 word centersVB~jtVBGKRBKNN+@JJ/$?NNP= ףp=? i word verifyVB(\?NNS(\i-1 suffix merRPrh|NNPSJ +?VBGRQNNS/$@WDTFxVBNZd;NNP`"?JJ}?5^IINjt@VBZK7AؿNNsh|??VBD~jth?JJRJ +CDHzG?RBףp= i-1 tag+i word , fluidNN(\?JJX9vVB&1ڿi-1 word japanese VBGZd;OVBDX9v?INVBZV-NNSvϿVBB`"?JJ~jt@NN~jt?VBNEVBPw/?RBMNNP(\?i-1 tag+i word VBP labeledVBN ףp= ?JJ ףp= i-1 tag+i word DT naturalJJ-NNP-?i+2 word unileverNNSB`"?NNPB`"i-1 tag+i word RBR asRB +?IN + i word paltryJJV-?NNV-i-1 tag+i word DT theftNN/$?JJ/$ i word clear VBP"~JJbX9%@INq= ףpͿVBvRB+@NNx&1VBNMbXRPoʡݿVBZ-NNSxi-2 word chancellorNNzGNNPzG?i-1 tag+i word `` deepVBMbJJ5^I ?NN+i-2 word analysisRBRSRBS?i-1 tag+i word RB hadVBQVBNx&1?JJZd;VBD+?!i-1 tag+i word NNP administratorsNNPS;On?NNP;Oni-1 tag+i word DT koreagateJJQNNPQ?i word inevitablyVBNNS"~RBMb?i-1 suffix rioIN;On?VBZ;On?NNS333333NNPQ?NNnFWx&1CDDl i-1 word vaseVBDGzVBNGz?i-1 tag+i word PRP$ flintNNK7NNPK7?i-1 tag+i word `` walkVB7A`VBP7A`?i-1 tag+i word PRP$ turnaroundNNsh|??JJsh|?տi-2 word sufficientVBGz?JJGzi+2 word conceivablyNNSV-?VBZV-i-1 tag+i word NNP navalJJCl?INCli+1 word packagingCDV-JJMb?NNX9v?RB(\i word dellumsJJK7ѿNNPK7?i-1 tag+i word JJ latinNNPSHzGٿJJCl@NNV-NNPQi-1 word fiercelyVBNSJJS?i-1 tag+i word NNS knewVBPB`"VBDB`"? i word adoptVBuV@IN%CNNSRBSVBDNbX9 i word grayVB㥛 NNS+NNMbRBZd;߿JJDl)@i+1 suffix ormVBףp= ?NNT㥛 ؿNNPSv/?JJSjt?VBNRQ?RB?RBRsh|??DTK7?NNS-?NNP(\JJʡE?JJRsh|?INK7PRP$ףp= i+2 word occurredJJKIN(\NNSq= ףp?NN= ףp=?WDT(\?PRP rhѿi word oceanographicRB+JJ+?i-2 word licenseNN +CD +?VBZ}?5^I?NNS}?5^Ii word universalJJ rhNN"~ҿNNP/$?i tag+i-2 tag . SYMUH?NNPi+1 suffix olyVBZK7A`?NNSK7A` i+1 word life RPHzG?RBHzGVBD rhRBRx&VBGZd;?NNP(\?NNPSSۿNN ףp= JJRx&?JJ-?NNSI + i word seasNNSbX9?JJSNN\(\׿ i-2 word neatJJT㥛 NNS'1ZRBx&1?i-1 tag+i word DT salespersonNNRQ?JJRQi-2 word clutchNNPSS㥛?NNSS㥛JJ/$IN/$?i-2 word dissatisfactionVBG㥛 ?NN㥛 i+2 word graphicsJJL7A`RBI +INʡE?i-1 tag+i word RB wealthyJJCl?VBZCli-1 tag+i word RP sellingVBG;On?NN;Oni-2 word whoppingNNSlNNQ?JJZd;i word gentlenessRBRClNNCl?i-2 word friday VBD(\NNPQVB333333?RBQVBN&1?CD1Zd JJZd;O?NNS~jt?RPV-NNK7A@i word fianceeNN-?JJ- i word vestJJSSNNS?i-1 tag+i word DT cwaNNPSuVNNPuV?i-1 tag+i word DT downsideJJ/$NN/$?i+1 suffix iarNN`"@JJ`"CD`"NNP^I +NNSOn?i word ungentlemanlyJJ&1?RB&1i word conditionNNM?JJM i+2 word flowVBZ㥛 ?VBGʡENNB`"?JJV-?IN|?5^RP|?5^?NNS/$i-1 word chairmanVBNsh|?VBP/$?VBZ'1ZԿNNPCl?VB/$VBGClVBDsh|??POS'1Z? i+2 word goNNP(\?VB|?5^@VBNQRBRlJJNbX9DT1Zd?RBm?VBDʡE?CDvNNSS㥛?VBGy&1NN^I + @VBZףp= VBPGzPRPv?INCli-1 tag+i word DT lightedJJMbX9VBNMbX9?i-1 tag+i word VBZ volkswagenNNK7A`?POS +JJQNNPjti-1 word brieflyNNPnVBDPn?"i-1 tag+i word -START- accessoriesVBZ +NNS +?i word adjusterNN^I +?RB%CVBNsh|?i+1 word transporterNN?JJi+2 word crudesUHI +JJI +?i word partnershipsVBZ'1ZNNS#~j@VBN/$NNZd;Oݿi-1 tag+i word DT machikinVBPd;ORBClNN rFW#~j@i word allegoryNN= ףp=?JJ= ףp=i+2 word britishRB^I +VBDFxVBNp= ף?DTNbX9?NNPM?VBS@RPh|?5NNOnNNPSv/?CCNbX9VBPE?RBRʡE?JJNbX9JJRʡEֿi tag+i-2 tag NNS PRP$JJZd;ONNSQVBGX9v?VBDQVBPDl?EX rh?RB&1?INS㥛?VBZʡEVBB`"?VBNm?RBRZd;O?RP\(\?NNB`"RBSV-?WDTMb i word blockNNPI +?VBy&1@NNK7A`?VBDV-JJ+NNS5^I i-1 suffix oatRBx&1@JJx&1NNQ?NNSQi-1 tag+i word DT vansNNPSʡENNSn?RBoʡi-2 word marksJJGzοNN/$?CDCl?RB(\IN/$@VBZ$CNNSSi-1 tag+i word NN beginsNNSVBZ?i word appropriatedVBNʡE?VBDʡEi word frankfurtNNPK7A`?NNPS9v?JJR|?5^NNQi word restrainVBPnVBn?i-1 tag+i word POS pleaNNZd;O?JJZd;Oi-1 tag+i word RB believeJJ%CԿVBbX9H@VBP5^I  NNi word travailsNNSʡE?NNʡE i suffix dly NNPRQRBnj7@VBD~jtVBNV-VBPSVBZClNNSSVB= ףpNN-LSQJJ"@i-1 word sedansVBP~jtJJMb@IN ףp= i+2 word expectedRB333333@NNSCC㥛 ?RPOnWDTQ?VBNB`"۹DTQNNPT㥛 JJGzCDFx?VBZd;O?VBG#~jRBR?INA`"VBZClNNPS;On?JJR333333?NNSSi-1 tag+i word : obligatoryNN{GzJJA`"?RB7A`i-1 tag+i word JJ surviveVB"~?JJ"~i word reintegratedVBN7A`?JJ7A`ҿi-1 tag+i word CC businessmenVBZ/$NNS/$?i+1 word theaterIN;On?NNSS㥛RB;OnJJ~jth?NNPPn?i-1 word scene NNSJ +ɿNNPClVBy&1RBV-׿JJR/$VBN(\?VBP/$?JJMbNNE?VBDNbX9i-1 tag+i word , revenuesNNSʡE?RBʡEi-1 tag+i word PRP downRPMb@RBX9vIN i+2 word fareRBoʡ?INoʡi+2 word unfriendlyIN ףp= ?RB ףp= i-2 word weakensJJ?NNPi-1 tag+i word JJ rangesVBZA`"NNSA`"?i-2 word mccarranNNq= ףpNNPq= ףp?i-2 word veniceVBN?RBѿi word strategicJJoʡNNPoʡ?i+2 word guidelinesVB"~JJ"~? i+1 word tonJJ ףp= RB/$INʡE?i-1 tag+i word NN sendVBZvVBS㥛?VBPGzi-1 tag+i word JJ manualsNNSˡE?NNPˡEi+2 word displayedNN#~j?JJ#~ji-1 tag+i word IN rollieJJ rhNNP rh? i-1 word car NNPClVBD(\ݿVBNy&1?JJQ?INxNNSףp= ?NNPS{Gz?NN`"?WDTCl?i+2 word beginning CDDlVBPKWDTx&1?JJ'1Z@VBZNNMb?INh|?5?NNS?VBNOn i word twaNNSZd;ONNPZd;O?i+1 word dealsRBS㥛NN +JJS㥛 @VBq= ףpͿVBG{Gz?i-1 tag+i word CC inadequateVBZd;OJJZd;O?i-1 tag+i word FW factoJJK7AFWK7A?i-1 word announceJJrh|?NNrh|i-1 tag+i word NN pulledNN}?5^IVBD}?5^I?i-1 tag+i word NN operatingNNClJJVBGn@ i suffix 'sVBV-߿VBDB`"RBSNNV-VBZ^I @NNPV-NNPS/$RBR㥛 ''GzJJ/$INV-CDI +ֿNNSRPx&1POSK7"@PRPm?i-1 tag+i word WDT adjustVBDDlVBPL7A`?NNT㥛 i word beatingVBGx&NNx&?i+2 word stallNN ףp= JJ ףp= ?i-1 tag+i word `` abandonVB;OnVBP-?JJrh|i word unfixedVBP}?5^IJJ}?5^I?i-2 word hyperinflationVBNB`"?VBDB`"ѿ i suffix helVBNbX9NNbX9? i suffix labNN|?5^?NNPʡENNSʡEi-1 word underminedNNK7A?RBK7Ai-1 word quiteNNp= ףRBQ?INQJJS@CDni-1 tag+i word NNP hamburgerRBR rhNN rh? i+1 word wangINPnDTPn?i-2 word ratioJJ#~jJJRMbX?VBMbXRB#~j? i word meltsVBZ/$?DTy&1VB ףp= i word sell VBN`"VBZoʡݿNNSFxNNPʡEӿVBV-@NNMVBD5^I JJ+?RBʡEJJRGzVBPjt?i-1 tag+i word JJ burstNNSK7NNoʡ?JJ|?5^i+1 word blockVBGjtJJOn?NNпNNPMb?i-1 word abbieVBZ/$?NNS/$NN rNNP r?i+2 word fungiNN{GzNNS{Gz?i-1 tag+i word IN gotVBDS?JJSNN+i-1 tag+i word NN thoughRB5^I IN5^I ?i word pitchingNNV-?VBGV-߿i-1 tag+i word -START- nineCD+?VBMbNNV- i word tangleMD㥛 VBP㥛 ?i-1 tag+i word `` appearVBrh|?VBPrh|i-1 suffix skyVBD"~j?NNK7?VBN"~jRBZd;OIN7A`? i suffix ledJJ5^I @VBPQkDTSNN/$&PDTʡEVBNˡE0@JJRNbX9?LSxNNSʡEVBFxٿVBZ^I +NNP|?5^VBGVBDSc1@RB(\uCD#~j i word milkJJy&1NN(\@FWT㥛 пRBV-NNSZd;ONNP|?5^i-1 tag+i word VBG plasticJJ?5^I NN?5^I @i-1 tag+i word RB abolishVB-?JJ-i-1 word settingWDTB`"?JJQ?INx&1RPK @RBbX9NNbX9JJRGzRBRGz?i-1 word patronsVBGzVBPGz?i-2 word concealVBZ+NNS+?i-1 tag+i word -START- deferredJJGz?NNGzi word stabilityNNS1ZdNN1Zd?i-1 tag+i word NN hiringVBGjt?NNjti+1 suffix xusJJ(\VBG(\?i-1 tag+i word DT truthJJ\(\NNS/$NNV-@ i suffix lagJJ7A`NNsh|?@VBP~jt?NNSnRBjt i word sourceNNSClNN-@JJp= ףNNP ףp= i+2 word boyerVBN ףp= ?VBD ףp= i+1 word depotIN\(\?FWNbX9NNtVοNNP/$?i word tacklingVBGS?NNSi-1 tag+i word PRP$ doctrinesNNS\(\?NN\(\߿i-2 word josephVB)\(VBP"~j?VBD-i-1 suffix ifeVBPMbX9ԿNNSx?NN%CVBD}?5^I?i-1 tag+i word NN beforehandRB@NN i word noonRB|?5^NN|?5^?i tag+i-2 tag '' PRPNN$C?CD$Ci-1 word correctRB?VBPNNS|?5^?NNQJJV-?i-1 tag+i word MD onceVBS㥛RBS㥛?i-2 word gardenerNNI +?JJI +i word expansionNNPx&NNx&?i word incurredVBDx&VBPjtVBN$C@JJ(\IN`"i-1 tag+i word CC thinkVB333333?NN333333i-1 tag+i word VBG seemVBDGzVBPK7A`?NNOni-1 tag+i word WRB isabellaNNv/NNPv/?i-2 word charitableEXSRBS?IN ףp= WDT ףp= ?i-1 word wranglingWDT?INi+1 word enablesWDTZd;?INZd;׿i-2 word yugoslaviaRBV-?INV- i-1 tag+i word -START- reductionNNˡE?NNPˡEԿ i-2 word isPRPCl׿CCPDT|?5^?WP^I +NNPV-EXzG?JJR^I +?WDTJ +ɿNNQRB1Zd @CDZd;VBD-FVBN/$?DT)\(RPK7JJSzG?NNS"~jܿRBSZd;@VBZK7WRBM?RBR/$?VBGV-@VBPQFW~jth?POSB`"VB INV-?JJRQ@NNPS9v@i-1 tag+i word VB spentVBNʡE?JJʡEi word definingVBG-?NN-i-1 tag+i word PRP$ greatestJJSzG?NNzGi+1 word thurberWDT)\(IN)\(?i+1 word overridingJJ333333?NN333333i-1 tag+i word VB preventVB ףp= ?JJKNNʡEi-2 word commentsNNSMb?VBNClJJ9vVBDCl?NNPQ?i+1 word macmillanVBNx?JJxi+1 suffix masVBZ~jt?DTHzGNNS~jtNNPHzG?i-2 word achenbaumCD\(\?VBN+JJ+?NNP\(\i-1 tag+i word RB fivefoldVBNOnRBDl?NN}?5^Ii word crashedVBNClѿVBDCl?i-1 tag+i word -START- applauseNNPV-NNV-@i-1 word assuranceNNI +NNPI +?i+1 word coupeJJK7A`?NNK7A`i word subsidizedJJL7A`@NNRQVBNoʡi tag+i-2 tag , JJSNNPS/$RBS\(\?PDT rhJJS{GzĿJJtV?NNS/$?i-1 word nacionalINx&NNP rhFWK7A`?i+2 word spendingVB/$?WPԿVBDʡEJJSK7RBREWDTףp= ?VBNx&1?JJFxDTK7NNPCl?NNMbp?IN}?5^IԿJJRE?VBPy&1?VBZy&1i word olympicJJd;ONNPd;O?i-1 tag+i word VB counterRBoʡ?NNoʡi-1 tag+i word DT behestNNQ?JJSQi-1 tag+i word VBP protectedVBNQ?JJQi-2 word bridgesVBZ`"ֿNNS`"?i-1 tag+i word NN mafiaFWGzNNMbX?RBp= ףi word smithklinePRPGz߿NNPGz?i-1 suffix hamNNPS(\NNP(\?i-2 word childhoodJJ/$RB/$?i+1 word norodomNNPS?INSi-1 tag+i word DT signJJKVBPHzGNN}?5^I? i word tapeVBDVBP?NN)\(@JJ|?5^ RB|?5^i-1 word sparkRBPnINPn? i word balkedVBNQVBDQ?i-1 tag+i word NN caughtVBNh|?5?NN1ZdVBD/$? i word plainsNNPSX9v?NNPX9vi-1 word architectureVBD/$?VBN/$i-1 suffix ragIN&1?RPPnRBX9vi-1 tag+i word JJ electoralJJV-?NNV-ݿi+1 suffix uisNNP|?5^?JJ|?5^i word jitteryVBP ףp= ׿JJo!@NNx& NNP!rhi-1 tag+i word , assistVB&1?VBP&1i word restrictiveUHMbJJMb?i-1 tag+i word TO toxicVBq= ףpJJq= ףp?i-1 tag+i word NNP judgeNNʡE?NNPʡEi-1 tag+i word DT supplierNNbX9@JJRK7ARBK7CDDli-1 tag+i word JJ primeJJ(\?NNGzNNPMbp?NNPS^I +i-2 word whereVBv/@VBP^I +RB333333NN +DTZd;VBG?5^I JJL7A`?CDV-?NNPV-?NNPSVBDNbX9PRP%C̿INK?VBZv/?i-1 tag+i word DT bolsteredVBNK7A?JJK7Ai+2 word twistRB{Gz?NNS㥛JJQi-1 tag+i word NN needNN(\?MDffffff?VBFxVBPMb?JJ;Oni+1 word provisionNNSQ?JJS˿NNS㥛i-1 word minuteNNSMbJJMb?NNx&1VBP\(\Ͽi+1 word predictVBN r?JJ ri-2 word sigurdNNPS{GzNNP{Gz?i-1 word things VBʡERP;OnVBP{Gz?WDT%C?NNSX9vJJzG?JJRX9v?RB$C?IN ףp= DT%Ci-1 word persuadingNNS~jtJJ/$?NN/$տNNP+NNPSy&1?i-1 tag+i word VB losersNNSףp= ?VBNףp= i+2 word entitlesNNp= ף?JJp= ף i-1 word nutNNPS5^I ?NNP5^I i-2 word sellersVB;On?NNw/CDw/?VBP;OnRBGzDTGz?i+1 word kofcohJJZd;VBNZd;?i-1 tag+i word , drillersVBZPnNNSPn?i-1 word levelsRB~jtIN~jt?VBDI +VBNI +?i+2 word airlinesVBDx&?JJHzG?NNSx&NNPw/@VBFx?NNPS~jtNNGzi-2 word oxygenNNʡEVBPʡE?i+2 word altimariNNvNNPv?i+1 word expenditureNN%C?JJ%Cܿi-1 tag+i word DT precedingNN"~VBG^I +?JJ9v?i-1 tag+i word TO accordVB&1?NN&1i-1 tag+i word TO pairVBPn?JJPnؿi-1 tag+i word NNP hulingsNNPSPnNNPPn?i-1 word polesNNnVBx&@VBPx&RBn? i word atomsRBS㥛NNSS㥛?i-2 word honedVBNK7A`?JJK7A`i+2 word tariffsVBZHzGNNSHzG?NNT㥛 NNPT㥛 ? i-2 word teamVBG;On@VBDoʡ?VBNoʡRBRJJ9vJJR?NNP ri-1 tag+i word VBG lostRBR= ףp=PDTZd;OVBN~jt@VBD%Ci-1 tag+i word DT hypeNNSh|?5NNh|?5?i+1 suffix ikeJJףp= VBG"~?RBq= ףp?RBSCl˿INq= ףp?JJRQNNsh|??VBDQJJS ףp= ?POS +VBN"~j?RPRQVBZB`"?MDPn?VBd;ONNPSףp= RBRQ?VBPV-@NNPSNNS-@ i suffix yanNNStVJJQ@NNT㥛 NNPv/i+2 word !DIGITSVBDK7 @$RQNNSZd;?PDTw/JJRm?PRP$9v?WDTh|?5?RB +?MD?5^I FW%CVBPI +?JJ~jtx?DTzGCCʡE޿RBRʡEEX?5^I ?POS&1?NNPS%C?UH9v?PRPlINX9vοVBG ףp= ?VBNE?VBZx&?NN/$?RBSv/?CDٿJJSˡERPX9vNNPtV@VBT㥛 ?i-2 word bonesNNS?5^I ?NN?5^I i+1 suffix lanDTS @VBG}?5^IVBNS㥛INQVBZA`"VBPZd;OͿRBnNNPx&1?NNPSx&NNL7A`@JJRMbX9NNS&1ʿJJ~jtVBDX9v?i word remodelingVBGjt?NNjti-1 tag+i word VBN beatenVBNw/?JJw/i+1 word chancellorNNPffffff@RBV-JJQIN&1?i-2 word expenseCCJ +?DT-VBGV-?RBffffffNNV-i-1 tag+i word -START- anheuserNN?5^I NNP?5^I ? i word drainNNQ?RBQ i+1 word the VBG&1 @WDT(\uVBK@CCx?CDS㥛?FWV-NNPSx&1?JJSClVBNZd;OݿDTQ8MD333333?PRP${GzPRPX9v׿RB^I +߿NNPl JJRGzVBPGz@JJq= ףpWPK7A`?NN^I +WRBZd;OǿPDTDl)@''Zd;O?VBZK7 @NNS/$RBRx&1UH rhVBDoʡ@RPZd;?POS7A`RBSlINET@i-1 tag+i word RB fraudulentJJ(\?NN +VBD ףp= i+1 word doVBQ?RBn?JJSS?RBRMbpWRB(\?VBGGzPOSZd;VBN(\?DTI +NNPQNNPS"~j?NN\(\?VBDFxVBPQJJ-MD ףp= ?RBSSÿINK7AWDTGz@NNSS@VBZv׿i-1 tag+i word TO antitrustVBsh|?JJsh|??i word consolidationNNX9v?NNPX9v i+1 word gramNN%CԿJJ%C?i-2 word harvardNNPx&?NNPSMbX9ԿNNGzֿ i-1 tag WPRBRGz?VBPI +@WDT!rh?JJ-VBZMbX@PRPףp= ?POSL7A`VBNv/INI +@CDT㥛 NNQVBDh|?5@CC#~jJJSZd;O?DT?RBx&?NNPRQRBSZd;O׿NNS333333JJR{GzVB;On?i-1 tag+i word IN achievingVBGV-?NNV- i suffix oddRP~jtRBZd;ONN-PRP333333JJn@NNPDl?VBDli-1 tag+i word JJ spreadVBPOn?JJOni-1 tag+i word DT stopperNNNbX9?JJNbX9i-1 tag+i word JJ inquiriesNNS/$?NN/$i-1 tag+i word NNP 'emNNP(\?VBD(\i-1 tag+i word VBD aroundVBnRB+η?IN-?i+1 word neurologistNNq= ףpNNPq= ףp?i-2 word roommatePRP$x&1?DTx&1i+1 word linersNNZd;?JJZd;i-1 tag+i word DT signingVBG +NNS?JJ+i-1 tag+i word JJ atopNN$CIN$C?i-1 tag+i word DT breadJJS㥫NNS㥫?i-2 word successorJJV-?NNT㥛 NNPMbX9i+2 word predictingVBQVBPQ?i-1 tag+i word NNP theoristsNNSffffff?NNPffffffi-1 tag+i word CC riesNNPSOnNNPOn?i+1 suffix ole NNPq= ףpͿVBGX9vRBRZd;OVBPDlVBN!rh?JJZd;O @VBZSNNSK7A`?NN5^I JJRZd;O?WDT\(\?WP\(\i-1 tag+i word PRP$ earlierNNSQJJRCl@JJOnRBRvi+1 word bankingNN"~?VBDʡE?POS r?VBPDlJJ rhVBZ rNNPQ޿i word circuitsNNS\(\?NN\(\ i word hairyNNˡEJJˡE?i-1 tag+i word VBD deniedJJI +IN\(\VBD\(\?VBNI +?i-1 tag+i word VBG sidewaysNNS|?5^RB|?5^?i+2 word exemptingJJ-VBD-?i-2 word rivalsRB= ףp=?IN!rhԿDTV-?VBx&1ܿRPʡEVBPx&1?i-1 tag+i word IN remoraNNS ףp= ?VBG ףp= i-1 tag+i word RB moreVBNQJJRѿRBR(\?i-1 word chanceryNN(\JJ~jtVBD rh?i-1 tag+i word DT hurryNNS~jtNN~jt? i suffix punVBDB`"?VBPB`"VBN"~?JJZd;߿JJR/$i-1 tag+i word CC deterVBMb?VBP?5^I ڿPDTX9vi-1 word panelVBE?VBPEi word injectedVBN/$ÿVBD/$?i-2 word normanNNP;On?NNPS;On i-2 word . NN~jtxDTq= ףp?NNS;OnNNP~jtVBB`"VBG?FW)\(VBDZd;O?JJS?INS㥛?NNPSvϿ i word stressNNCl?JJ/$VBx&1?VBP`"޿NNS~jti-1 tag+i word '' fraudulentNNV-JJV-?i-1 tag+i word NNP zNN rhNNP rh?i-1 tag+i word VBP purchaseNN/$?JJ/$i tag+i-2 tag RBS -START-NNP7A`?JJ7A`i-1 tag+i word NNS likeIN+@VBA`"?JJ+VBDrh|VBPGzRBCli-1 tag+i word RB stoodVBMbVBDMb?i-1 tag+i word DT miningVBGMbXNNK@JJV-i-1 tag+i word NNS ledVBNjtܿVBDjt?i-2 word conditionDTS?WDTSVB rhJJ rh?i word nicaraguaNNSʡENN5^I ۿNNPS?i+2 word demand VB ףp= NNSQ?NNPV-RP(\?JJ rh?NNRQؿVBDJ +VBNx&1?VBPClRBffffff?INSӿVBGx&1?i-2 word injuriesVBDlٿNNS rh?NNMi-2 word sohmerNNPMbX9VBB`"VBPB`"?NNSB`"NNPS ףp= ?i-1 tag+i word RB disappointedVBN(\JJffffff@VBDGzi word l'orealNNPS9vڿNNP9v?i-1 tag+i word CD ufoNNmݿNNPm?i-2 word rothschildNNPS?NNPSSi+2 word strong VBDffffff?PDT-?VBNq= ףpVBP^I +?JJQNNK?VBG{GzRBZd;?VBZ"~j?NNS"~jԿNNPJ +VB^I +ǿi-1 tag+i word CC holdVBK7VBPK7?i-1 tag+i word -START- equallyRB333333?NNP333333 i+1 word newsVBMbX9ԿJJK?VBD(\JJRQ?NNB`"POSZd;VBNoʡ@CD?INV-VBPQ뱿VBZX9v?NNPDl?VBGtV?RBR/$?RBv?NNSd;Oi-2 word friarNNS/$VBZ/$?i+2 word narrowlyRBQ?JJQNN ףp= @NNP ףp= i-2 word breakthroughVBNh|?5VBDh|?5? i-1 tag+i word NNP transatlanticNNZd;O?JJZd;Oi-1 tag+i word VBD zhaoRBSNNPS?i-1 tag+i word NNP capitalNN+NNP+@ i+1 word starNNPCl?JJrh|?NNMbXVBDʡEWDTMҿRB"~ڿINM?i+2 word consentVBNGz?JJ"~?NN"~ҿVBDGzοi+1 word hendersonNNP/$?JJ"~jCDoʡi word metropolitanJJ(\@NN1ZdFWSNNPʡE?i word displayedJJ333333NNPK7VBDl?VBN;Oni-1 tag+i word VBG pizzaNNS(\NN(\?i word understatedVBNtV?JJ/$VBD!rh?i-1 word networksVBP(\?JJ(\i+1 word inspectionNN9vҿJJ9v?i-1 tag+i word CC worriesVBZzGNNSzG? i pref1 FRBRV-CDQk@SYMʡEVBNMDT rhPRPMbX9NNSjtIN?5^I @MDZd;JJR#~jVBDnڿJJMbX9VBZ= ףpNNsh|?VB?5^ILSx?CC-NNPSZd@VBGCl?VBP +$ rhFW(\RBClNNPy&1,-@i+2 word villanuevaNN`"?JJ`" i+2 word markVBD|?5^VBNq= ףpJJRoʡVBP|?5^?JJrh|?NNPrh|NNPS rhNN?i-1 tag+i word JJ scaredJJMb?VBDMbi word crumbledVBN-ֿVBD-?i-1 tag+i word JJ humanJJPn?NNPni-1 word prominentNNP+߿JJ+?i-1 word hundredsNNnJJR`"VBPn?RBR`"?i-1 tag+i word IN respectVBP333333NN333333?i-1 suffix xasPRP$Gz?NNPS&1?NNDl?VBD/$JJp= ףNNSClNNPHzG?i-1 tag+i word , henceRB rh?NN rhi tag+i-2 tag NNPS NNPSNNrh|?NNPrh|i-2 word poniedRB333333ۿIN333333?i-1 tag+i word DT acrimonyNNZd;O?JJZd;Oi-1 tag+i word `` irasRBy&1NNPV-NNPS$C@NNSClٿNNx&1i+1 word notebookNNʡE?NNPʡEi-1 word guileVBNV-?NNClVBD+ i-1 word line VBPK7A`WDTHzGINx&1?RPp= ף?NNPS㥛 ?VBGL7A`?RBS㥛?NN#~jNNP㥛 VBDL7A`?VBNS㥛?JJS㥛п i-2 word n'tVBDZd;O VBNNbX9@NNp= ףJJRCl?NNPS\(\VBG(\WDTzGDTx&1?RBR{Gz?VBPGzWPV-?TOoʡ?NNPٿRB@NNS/$VBDl#@CCsh|?JJ;On@VBZ~jtRP ףp= PRP(\PDT~jt?EXV-?INDli-1 tag+i word NN pressedVBNl?VBDl i-2 tag NNS VBZPnJJSK7A`?PRP$~jtDT&1NNMbXVBSINsh|??WP%CRP7A`ҿVBD|?5^?NNPV-?RBSS㥛VBGQ?$?WRBSEX?VBP\(\@NNS= ףp=?PDT~jt?FWq= ףpVBNMbpPRPMb?RBV-?CC rhRBR}?5^IJJRS˿UH333333WDT^I +߿CDZd;O?NNPS/$?JJjtPOS;On i word amahsNNSS㥛?VBDS㥛i tag+i-2 tag JJ RBSNNPQVBV-?VBGQJJ|?5^?NN5^I @RB= ףp=NNSjtĿi-1 tag+i word RB lowerRBRp= ףVB"~j?VBPX9vJJR^I +?i-1 tag+i word RBR speedNNNbX9?JJNbX9i tag+i-2 tag CD NN CCJJ7A`ҿVBD9vJJRHzG?RBRʡEVBNGz?RB!rhԿVBZMbX?DT1ZdۿNNS@NNP1Zd?NNSS㥛 i word embodyVBPGz@RBףp= NNsh|?VBEп i suffix rniJJX9vοNNPX9v?i-1 tag+i word POS siemensNNPSDlѿNNPDl?i word uniformityNN-?RB\(\JJS㥛i-1 tag+i word NNP instrumentsNNPS~jtNNP~jt? i word excuseVB1Zd?RB$CNN?5^I ?JJ!rhi-1 tag+i word , institutedVBNV-VBDV-?i-2 word coffeeNNS"~?NN+JJx?VBD!rhIN+?i-1 tag+i word NN placedVBN1Zd?NNV-VBD +?i word hendersonNNPDl?VBDDl i-1 word hostJJ|?5^ʿNNP|?5^?i-1 tag+i word RB needsVBZʡE?NNSʡEi+1 word persuadedNNS333333?JJ333333RB"~?VB"~i-1 tag+i word DT timidJJK?NNK׿i-1 word angeloVBZv/?NNSv/RB-?VBD-i+1 word domestic JJRMbX9@JJzGếNNPy&1ܿVBGDlNNB`"RBRrh|ϿINd;O?DT&1VBD"~jVBNv@WDTˡEi-2 word bollingNNPbX9?NNPSbX9i+1 word differentlyRBHzGVBDHzG?VBI +VBPI +?i-2 word aetnaVBZx&1NNSx&1?i-1 word returnsDTuVͿWDTFxIN|?5^?i-1 tag+i word CC gripesNNSQ?VBZQi word campaigningVBG-NN-?i-1 word magneticVBZSNNSS?i-1 tag+i word NN hitchNNS+NN+? i-2 word varyRBK?INK i suffix xicNNSJ +NNFx?JJn?VBq= ףpi-1 tag+i word CC renoirsNNPS|?5^?NNP|?5^i-1 tag+i word DT likesNNSMb?NNMbi-1 tag+i word -START- fatherCC-RBI +NNP ףp= ?i+1 word outflowsJJ+?NN+i-1 tag+i word IN firmingVBG(\?NN(\i+1 word retailersJJSbX9?RBSbX9NN|?5^NNP|?5^?i+1 word cookbookPRP$ˡEĿPRPX9v?NNGzi-1 tag+i word PRP$ alienNNS(\JJ(\?i word reviewedVBNףp= ?JJףp= i-1 tag+i word NNS collectedVBNL7A`?VBDL7A`i-1 tag+i word : overRBClINHzG?VBd;Oi-1 tag+i word , pocketNN1Zd?JJ1Zdi-1 tag+i word VBG yankedVBNK7?VBDK7 i word censusNNS333333ۿNN333333?i+1 word impairVB1ZdRB1Zd?i-1 word surelyVBP+?VBN333333?JJ+VBD333333i+1 suffix iatJJ#~j?NNK7NNPGzοi-1 word veteransNNx&JJT㥛 NNPp= ף?i-1 tag+i word `` lividNNS|?5^VBNX9v׿JJA`"?i-1 tag+i word RB disclosedVBDy&1VBPClVBN`" @JJףp= i+2 word dreadedRB+INv/RP~jt?i+1 suffix mal RBV-NNPrh|?VBG%C?VBDnVBNn?JJ(\INZd;O?VBZQ?NNsh|?i-1 tag+i word IN flatJJ ףp= ?NN ףp= i-1 tag+i word WDT buyVBS㥛VBPS㥛?i tag+i-2 tag TO NNPSDTX9v?INX9vi word protectsVBOnVBPrh|NNSx&VBZV-@i-1 word eastmanNNPSZd;׿NNPZd;?i-1 word flowerNNQοNNPQ?i-1 tag+i word -START- bernardNN= ףp=NNP= ףp=?i+1 word celluloidsNNw/?JJw/ i suffix daNNP|?5^?NNJ +?JJ-IN9vi-2 word islamVBGm?JJmi-1 tag+i word DT associationNNA`"?JJA`"˿i-1 tag+i word POS meetingNNx&1?JJx&1 i suffix lvaNN rh@VBDS㥛NNPEi-1 tag+i word VBZ handledVBN?5^I ?VBD?5^I i+2 word libertariansDT!rhRB!rh?i-1 tag+i word RB harshJJQ@VBPh|?5VBNffffffRBClɿVBDX9v i suffix zemNN/$NNP/$?i-1 tag+i word NN haltNN +?PRP$ +i-1 tag+i word TO gatheringVBGʡE?NNʡEտi tag+i-2 tag VBG CDNNP1Zd?VBZ= ףp=NNS= ףp=?JJ1Zdi-1 tag+i word DT independentNNP+?JJ+i-1 tag+i word VB exercisesNNS?JJi-1 tag+i word JJ loopholeNN(\?JJ(\i-1 tag+i word NNP choresNNSZd;O?NNPZd;Oi-1 word plantingNNPSh|?5?NNPh|?5i-1 tag+i word VBZ zipCC+NN+?i-1 tag+i word JJ contraceptiveVBPM¿JJ?NNˡE i+1 word ford NNP(\?VBʡE?NNNbX9CCˡEܿVBPuV?JJ&1?IN-?WDTq= ףpDT333333i word tallestJJS/$?NN/$ i word sightJJV-NNV-?i-1 word imaginativeINX9vNN1Zd?JJOni-1 tag+i word NNP grantsVBZKNNSK? i+1 word maeNNPv/?NNbX9CDV-i word awardedVBNCl?JJRQVBDE?i-1 tag+i word TO donbasVBw/NNPw/? i-1 word own RBPn?NNS-?JJ$C?NNFx@VBD`"VBPZd;NNP|?5^?VBG rh?VBNK7ɿRBRʡEINi+1 word layoffsVBG ףp= JJ ףp= ?i-1 tag+i word CC taxpayerNNS\(\NNn?JJMbؿi-2 word basketballVBPMbVBNp= ף?VBDʡE?i-1 tag+i word -START- locatedVBNv?NNPvi-2 word meddlingVBZCl?NNSClɿ i-1 word bush VBNw/@VBP~jt?RBS㥛?INsh|??VBS?VBGn?JJ(\CC5^I ?VBZB`"ѿNNnVBDMNNSMbNNPp= ףi+1 suffix awsVBPK7JJw/ĿNNPffffff?NNPS^I +NNˡEܿVBD?JJR rh?CDjt޿i-1 tag+i word PRP$ insuredNNS9vVBN9v?i-1 tag+i word DT strainNNS%CNN%C?i-1 tag+i word RB workedVBZ\(\VBN rh?VBD`"޿i-2 word surplusesRBR-?JJZd;JJR-RBZd;?i word indicativeJJA`"?NNA`"i+1 word sanctionsJJzG?NN1ZdJJRq= ףpVBPjt޿VBGGz?i word supersonicJJ1Zd?NN1Zdi-1 word locationsRB|?5^?JJ'1ZINQӿRBRK7A`i-1 word reinsRB{GzԿIN{Gz?i tag+i-2 tag CC WRBVB%CNN%C?i-2 word screenNNMb?JJMbi-2 word charitiesVB+VBP+?i-1 tag+i word DT fundingVBG rhNN rh?i+1 word offering VBPsh|?VBZMbXٿNNPK?NN5^I ?POSK7A`?VBNv/@JJq= ף@NNSnRBZd;VBDQ PRPT㥛 i suffix efsNNPI +VBZ(\NNPS?NNS/ݤ@NNJ +i+2 word timelyJJzG?NNzGi-2 word unconditionallyCCjtĿVBMbX?VBPDl i+1 word me VBS㥛 @JJSVBPp= ףNNP{GzRP;OnNNffffffFWsh|??VBDL7A`?VBN rhٿRB rhINB`"@i-1 word claimedJJK7A`INn?DT{GzWDT/$NNK7A`?i-2 word passesNN(\տNNP(\?i+2 word burgessVBNZd;O?VBDZd;Oi-1 tag+i word DT slowerJJR?NNԿi-1 tag+i word NN dovetailsVBZv?NNvi-2 word lovelyJJ+?IN+i-1 tag+i word NNS studiedVBN!rh?RB(\VBDL7A`i+1 word called VBP9vNNS rh?NNPx&1NNPSS?RB/$?VBNSJJ/$INQDTy&1NNx&1?CD +WDTV-?i-1 tag+i word DT riteNNE?JJEi word atsushiNNrh|NNPrh|?i-1 tag+i word DT flierNNS?JJ?5^I JJR;On¿i-1 tag+i word VBP staggeringVBGףp= JJףp= @i word trainedJJ"~j@VBDʡEVBNQi word forgettableNNS+JJ/$?NN)\(̿ i word pigNNSFxNNJ +?JJMbXѿi-1 tag+i word , averyNNx&1NNPx&1?i-1 tag+i word VBG crudeJJzG?NNzGڿi+2 word indexationJJR)\(?RBR)\(Կi-1 word artificiallyVBNp= ףVBDp= ף? i word mncNNPn?NNPSni-1 word breakdownNNףp= VBDףp= ?i-1 tag+i word IN honeyNNS/$VBNSNNoʡ?i+2 word record VBPlJJQ?VBZq= ףp@NNPSK7?NNQRBSffffff?JJSffffffCDʡENNPVBD&1?LSʡE@NNSbX9޿i-1 word crystalNNV-ݿNNP#~jVBD/$?VBP)\(NNPS#~j?i-1 tag+i word NN exhibitNN~jt?RB~jti word affectingVBG(\?IN(\ؿi+1 word markkaNNS rhͿJJQ?NNP"~ i-2 word alarNN/$VBG/$?i-1 tag+i word VBZ suchPDTl?JJl i suffix .44VBףp= CDףp= ?i-1 tag+i word DT temptingVBG%CJJ ףp= @NN+i-1 tag+i word VB hotVB+VBN)\(JJ?i-1 word lowestNNV-?NNSV-i word fisheriesVBZQNNSQ?i+2 word holidayVBNV-VBDV-?IN)\(WDT)\(?i-1 tag+i word NNP rigVBZRQNNRQ?i-1 tag+i word VBZ fewerJJR r?NN rؿi-1 tag+i word NNP copyVBP#~j?NNP#~ji-1 suffix eidNNPT㥛 NNST㥛 ?i-1 tag+i word JJ rallyNNn?RBMb NNPtV?i-1 tag+i word NN dismissedVBN/$?VBD/$!i-1 tag+i word -START- altogetherRBZd;?NNPZd;i word lamentedVBN +ֿVBD +?i-1 tag+i word , joustingVBGI +?JJI +i word antiheroNNSp= ףNNp= ף?i+2 word torchedNNP?5^I CD?5^I ?i-1 tag+i word TO eitherDT9v?VBI +RBMbпi-1 tag+i word VB quietlyPRP`"RB`"?i-1 tag+i word DT ladyNNʡE?JJʡEi+2 word ornsteinNNFx?JJMbVBD +i+1 suffix aimJJFx?VBNK7NNK7A?i-1 tag+i word VBZ acrossINFxٿJJR#~jRP~jt?RBK7A?NNMbX9i-1 tag+i word IN boomedVBNp= ףVBDp= ף?i word fourteenJJRClJJ|?5^ʿCDsh|??i-1 tag+i word VBN consideredVBNS?JJS i+1 word sheNNGz?VBNMbX9WDTffffffNNS%CNNPjtJJ㥛 VBDT㥛 ?VBPʡERB$CVBZ!rh?CDx?INˡE @DTʡEVBtV?i+1 suffix gnpNNSd;OJJn?NNV-?i-1 word spainINʡEVBDʡE?i-1 tag+i word CD directorateNNjt?NNPjti-1 word progressRBq= ףp?INq= ףpi+2 word cheekVBPOnÿNNOn?RBK7A`i-1 tag+i word DT forfeitureVBP&1NNjt@RBB`"JJjti-1 word patternVBNrh|@NN ףp= VBDZd;i+1 word advertisingVBDV-VBNK?VBGw/JJ)\(@NNy&1 i suffix welNNS;OnNN@JJMbi-1 word institutionalVBG ףp= @NNPS/$?NNSףp= ӿNNQNNP/$i-1 tag+i word NN penaltyNNd;O?VBDd;Oi-2 word honestyRBL7A`INL7A`?i-1 tag+i word -START- shakenVBN$C?NN$Ci-1 tag+i word NN turnedVBNQVBDQ?i+1 word demisePOSK7A?VBZK7Ai word cholesterolJJQVBNbX9NN!rh@i-1 tag+i word VB happenedVBNGzJJVBDm?i+1 word implicationsNNx&JJx&? i pref1 z UH;OnLS7A`VBGsh|??JJh|?5NN\(\@CC+VBNmͿSYM+?CD"~j @RB{GzVBvNNSʡE?NNP7A`i-1 tag+i word NNP contractedVBNh|?5VBDh|?5?i word breatherRBR-ӿNN-?i-1 tag+i word JJ blocNNPK7?NNHzG?NNStVVBNMbJJoʡi-1 suffix nryNNPSQNNPQ? i word staffsNNSE@VBN+NN(\i+1 word azoffVBGClNNPCl?i-2 word massachusettsRBx&1?JJx&1NNX9vNNPX9v?i-1 word stimulatingJJ?RBFxJJR|?5^i+1 suffix gelDT\(\NNP\(\?i-1 tag+i word IN charlieJJ+NNP+?i-1 tag+i word NNP plasticsNNPS|?5^?NNSQ?NNP/$i-1 tag+i word TO disputeVBCl?NNCli+1 word contentNNK7@JJ-JJRZd;O i-2 word windVBGGzJJʡE@NNS i-2 word brewVBD`"VBNS?RBp= ףINp= ף?JJS˿i+2 word strategicRBsh|?VBZZd;?NNSZd;RPV-?JJV-߿NNV-VBD#~jVBNZd;O@i-2 word handyVBGKJJK?i word associatesRBENNPx&1VBZMbXNNPSRQ@NNSCl?i-2 word revolutionariesVBG?JJ i-2 word opecDT$CWDT$C?i-1 tag+i word , administeredVBDSVBNS?i-1 tag+i word PRP$ objectivesNNS㥛 ?JJ㥛 i-1 tag+i word IN defectingVBGd;O?NNd;Oi-1 tag+i word CC financeVBPʡENNʡE?i-1 tag+i word VBN notifiedVBNOn?JJOni-1 word malteseNN5^I ?NNPNbX9NNPSp= ףi word meharryWRB9vNNP9v?i-1 tag+i word JJ wildcatUHPnNNPn?i-1 tag+i word DT reputedVBN/$JJ/$?i tag+i-2 tag UH VBDRB rhٿJJ rh?i-1 tag+i word IN naziJJ1Zd?NNP1Zdi word fiberallNN$CӿNNP$C?i-1 tag+i word -START- programJJ-NNPENN|?5^?i word embracedVBDuV?VBN~jtJJ/$i-1 tag+i word NNS aloftVBP/$RBV-?JJ+i-1 word compoundVBPNbX9NNNbX9?i-2 word suspendNNPSGz׿NNPGz?i word assessmentNN#~j?JJ#~ji-1 word unwrittenNN&1JJ&1?i-1 tag+i word IN retiringVBGRQ?JJRQi-1 tag+i word NNP parsonsNNPST㥛 NNPT㥛 ?i-1 tag+i word -START- esbNNnJJV-RB rhٿNNPK7? i suffix 997JJFx?NNFxi-1 word minpecoNNHzG?JJHzGi-1 tag+i word DT driedVBNS?JJSi-1 tag+i word DT tiresomeNNnJJn?i-1 tag+i word IN overworkingVBG}?5^I?NN}?5^IԿi-1 word ateliersNNP&1?FW&1ҿVBZIN rh i+1 word mayRPmVBZClӿVB㥛 ҿVBGClVBDx&RB!rhDTMb?NNPSd;O?INRQNNSCl@WDT5^I @EX= ףp=ҿNNPK7?JJ(\NNV-o@FW rh?VBNtVVBPI +?i tag+i-2 tag PDT NNPVB-VBP-?RBS㥛?INS㥛i word alienatesVBZ333333?NNS#~jINʡEi word hauntedVBN@JJZd;O׿VBD-i+1 word venezuelaFWS㥛?NNPS㥛i-2 word cluesIN)\(?WDT)\(i-1 tag+i word MD backVBn@RBni-1 tag+i word PRP battlesVBZʡE?NNSʡEi-1 tag+i word ) needsVBZq= ףp?RBq= ףpi word computerizedJJ-@VBNS㥛NN)\(?VBDw/ i-2 word sideNNS-PRP-?NNʡE?NNPʡEi word towardsNNS"~jJJ"~jܿINS@VBZ(\ſi word hindemithVB+NNP+? i suffix onxNNPS&1NNP&1?i-1 tag+i word NN attendantsVBZ{GzNNS{Gz?RB{Gzi-1 tag+i word VBN widespreadJJNbX9?NNNbX9 i-1 suffix ec NNX9v?VBDCl?VBNClJJoʡVBZV-ڿNNSA`"@VBPOSV-?VBPJ +ѿi-2 word goodyearRPffffffJJffffff?i-1 word trackingRPq= ףp?JJq= ףpi-1 word obtainJJRQ?RB}?5^IVBNNbX9пi-1 tag+i word NNS halfVBPI +NNI +?i-1 word edwardsVBP%CNN"~?JJ"~VBZ%C?i-2 word providingJJ@NNi-1 tag+i word : sayVBFx?VBPFxi-1 tag+i word CC boostsVBZK7A?NNSK7Aпi+2 word deficiencyVBN!rh?JJ㥛 VBDtV޿i-1 tag+i word RB firmerVB"~JJR"~?i word budgetedVBNJ +@NNZd;OVBDffffffi+1 word solarNNP/$?VBN'1ZVBDV- i word arcticJJ/$NNP/$@i-1 tag+i word WP liveVBZClVBPCl? i suffix ompVBtVVBPtV?NNzGRB"~NNPy&1?i-1 tag+i word : allowVB(\?VBP(\ȿi-1 word squanderedRB㥛 ?IN㥛 i-1 word plentyJJRx&1?RBRx&1 i word turnedVBNB`"JJ/$VBDjt@i word hundredsVBZmͿNNPnNNSK7A@NNVBD(\i-1 tag+i word , initiatedVBNV-?VBDV- i suffix ops VBZS@NNP(\NNPS(\@FW~jtVBD7A`JJV-NNS7A`P@VBX9vRB +NN?5^Ii+2 word neatlyVBNS㥛?VBDS㥛i-1 tag+i word DT deputyJJZd;NNZd;?i-1 tag+i word NN battingVBGRQNNRQ?i-1 tag+i word NNS workedVBN~jt@VBD~jt i word abusesNNS(\?NN(\i+1 word where NNJ +?VBDSݿRBRv/RBKNNPZd;OVBZd;O@NNPS{GzJJzG?VBP9vVBZ +@NNS&1i-1 tag+i word -START- actingVBG9vNNZd;?NNP(\i-1 word weightNNPSn?NNSSRBR1Zd?JJR1ZdNNPMbX9i-2 word surpriseNNPSV-?NNPV-i word infringedJJQNNL7A`VBDh|?5? i-2 tag RBS VBPMbX?RB9v?VBZw/NNSX9v?VBCl?VBGQNNCl?NNPQJJ/$?VBD?VBN~jti+1 suffix thy VBh|?5?JJZd;VBNCl?VBPQRB= ףp=?NNS= ףp=NNFxRBRK@JJRx&1VBZ= ףp=?NNPFx?i+1 word franchisersJJ`"?VBD`"i+1 word anyoneVBPE?JJPnIN ףp= ?DT ףp= NNI +VBDˡEi word squirmingVBG +?JJX9vNNZd;Oi+2 word necessarilyWDTSINS?i-2 word spokesman NNʡ@FWK7A`ݿRBRʡE?NNPZd;ORBʡEVBDCDSVBNMb?JJ#~ji-1 tag+i word CC printingVBGh|?5NNh|?5?i-1 tag+i word DT priorNNS7A`JJv?NN\(\i-1 tag+i word ( pyrotechnicNNClJJCl?i-1 tag+i word DT mainframeJJ}?5^I?NN}?5^Ii-1 tag+i word DT trumpetNNGz?JJGzi word armstrongJJHzGVBX9vRBMbNNZd;ϿNNP/$ @i-1 tag+i word NNP stirsVBZZd;O?NNPSZd;Oi-1 tag+i word JJ ditheringVBGtV?NNtV i word limboNNS333333NNCl?JJp= ףi-1 tag+i word `` absolutelyRB/$?JJ/$ƿ i word primeNNPS^I +JJS@NN rNNP|?5^ҿMDsh|? i pref1 d$RQLSS?CDGz VBDʡE?RPDl@PDTV-NNPMb)VBPA`"?DT1ZdPRP9vNNPSNN!rhm@CCHzGJJ"~j?MDV-JJS~jth?JJR/$UHGzPOS-RBy&1@VBm @INZd;O?SYMn?VBGK7A@VBNE?VBZn@FWT㥛 ?NNSNbX9 @RBSV-RBR$C?i-1 tag+i word PRP$ revisedVBN/$?JJ/$i-1 tag+i word DT s&lNNP%CNNp= ף@JJq= ףpi-1 tag+i word CC thereafterVBZd;OVBP̿RB;On?NN'1Zi-1 tag+i word DT harderNNOnJJR$C?JJrh| i+2 word heedVBGV-?NNV-i-1 tag+i word RB fiveCDS?NNPSi-1 tag+i word , hotel''(\NN(\?i-2 word competeJJRʡERBRʡE?RBCl@INCli-1 tag+i word TO curtailVB!rh?NN5^I JJ +i+2 word poltergeistsNNS㥛 ?VBN㥛 i-1 tag+i word IN olderJJClJJRZd;@NNGzi-1 word rilesNNSS㥛?VBZS㥛i+1 suffix ica CDMbXNNP^I +@VBˡENN(\@WDTZd;OJJRQINZd;O?NNS&1?VBGSi-1 tag+i word DT adroitJJ`"?NN`" i suffix TORNNMb?NNPMbi tag+i-2 tag IN ,INZd;O?NNPS= ףp=JJR~jt?VBZʡERB-RBSMb?RP\(\POS&1?NNPZd;OͿPDT#~j?RBR?VBGV-VBP$CJJl@CDV-PRPS㥛пVBD;OnVBNA`" @DT/$@EX#~j?JJS|?5^ NNy&1NNSA`"ۿVB$C? i suffix ryoNNffffff?VBDffffffi-1 tag+i word TO no.VBp= ףNNK7@NNPy&1 i suffix len NNPSL7A`пVBGV-JJClNN?5^I VBDoʡRBGzVBN33333s#@VBP{GzNNSZd;ONNPMb?i-1 tag+i word NN brokeVBDCl@NNtVINli-1 tag+i word -START- takeVBtV?INtVֿi-1 tag+i word IN perspectiveNNSDlNNDl?i-1 tag+i word VB arbitrarilyRB?JJi-2 word settlingNNQ?JJQi+2 word anywayIN`"VB/$VBP/$?RB`"?i-2 word bacteriumVBN5^I ?JJ rVBD rhi-1 suffix vs.JJMbX9NNPMbX9? i suffix oms NNP(\RBS㥛JJR㥛 JJ+NNS/$%@NNPSbX9NN%C RBR}?5^IVBZZd;O@i tag+i-2 tag NNPS CC NNPS/$?JJp= ףVBDClRBCl?VBS?NN333333VBNCl?VBP333333ۿNNP9v i word center VBmݿNN#~j@RBRA`"ۿJJRw/VBP?RBsh|?VBN/$JJS@NNSKi+1 word threatJJ$CNNP"~VBZuVNNL7A`?POSuV?i-2 word campaignNNn?VBDSRBR/$VBNS?JJ`"?JJR/$?VBZzGڿVBSi-1 tag+i word NN improvingVBGK7A?NNK7Ai-2 word madridJJd;O?NNd;Oi+2 word georgeVBGp= ףNNClٿVBD= ףp=JJOnӿVBZ +?NNSZd;ONNPDl?i-1 word mississippiVBP#~j?NN#~j i word fourNNPGz CDzGa@IN-SYMʡENNM i+2 word hateVBv/VBPv/?JJy&1?RB`"i-1 tag+i word , payableVB-ӿVBPQJJZd;O?NNjtܿi-1 tag+i word IN westernVBPV-JJQ@NNPK7Ai+2 word deeperJJ-RBRbX9ֿNNPnNN ףp= @JJRbX9?i+1 word stripsRBB`"?JJB`"VBN|?5^?NN|?5^i-1 tag+i word RB nettlesomeVBNB`"ٿJJB`"?i+2 word golenbockVBZV-NNSV-?i-1 tag+i word NN damagedVBNQVBDQ?i-1 tag+i word RP suchPDT&1ڿJJ&1?i-2 word fabricationVBD/$NNSMbX?VBN/$?NNPMbX i suffix MERJJQNNPI +NNT㥛 ?i-2 word capitalizedRBrh|?INrh|׿i-1 tag+i word `` buyingVBGffffff@NNffffffi+1 word symbolVBZSJJ;On?VBGZd;OPOSS?NNZd;O i-2 word diskWDTp= ף?INp= ףi word alfalfaNNSV-NNV-? i word presseNNPS^I +߿NNP^I +?i-1 tag+i word `` conduciveVBbX9JJbX9?i-2 word nekoosaCDFxJJ"~j?VBG^I +?VBN^I +?NNjti-1 tag+i word IN beforeNNSV-RBMbX @NNvINV-i-1 tag+i word NN fingersNNS+?NN+i tag+i-2 tag IN VBRBSx&1?VBDV-JJGz@NNPx&1CC9vʿEXh|?5JJR㥛 VBNEWPsh|?DTrh|?RBRZd;ϿRB}?5^I@CDK7INMbXJJSx&1VBGHzGٿWDTFx@VBZ!rhNNQ@PDT'1ZܿNNPSnѿPRP$mPRP/$?NNSV-?VB{Gzt?i-1 tag+i word TO copyrightNN+@JJEVBK7i-1 tag+i word DT redFWx&1пVBN%CJJOn?NNPK7?NNK7A`?VBDDli+1 word trusteeRB)\(IN)\(? i+2 word w.NN7A`¿VBG7A`? i word pilotsNNPSףp= @NNPףp= i-1 tag+i word VBN strikeNNjt?VBDjti-1 tag+i word IN arcticJJMNNPM?i-1 tag+i word : twVB㥛 NN9vNNP-?i-1 tag+i word NN facedNN= ףp=VBD= ףp=?i word circularVBZ)\(̿JJq= ףp?NNQi-1 word saferVBG rJJ1ZdۿRB#~jNN|?5^@i-1 suffix belNN/$?VBNoʡ?JJ㥛 VBDMbi+2 word lingersNNI +?JJI +i-1 tag+i word JJ millsNNPSbX9?NNSCl?NNClNNPbX9i-1 tag+i word CC cervixNNS9vNNJ +?RBK7Aؿi-1 tag+i word POS happeningVBGB`"?JJB`"i-1 word towersINZd;?RPZd; i word purgedNNS+VBNv/@VBDMbi tag+i-2 tag CC NNJJSZd;O?JJRHzGٿVBGL7A`堿VBPL7A`?DTx&1?NNSL7A`@VB;On?RBRnNNPS!rhRP1ZdVBDA`"CDx&1INZd;EXK7A`?UH㥛 PRPMb`?RB rhٿCCp= ףпWP9vNNV-@PDT+?NNPd;OFWRQVBZSMDd;OVBNuV?WDTGzJJrh|? i suffix ubaNNP|?5^@VB/$NNPSffffffNN|?5^i+2 word inexplicablyINX9vWDTX9v?i+1 word coachNNMbVBP\(\JJZd;@i+1 word sweatersJJQ?NNQi-1 suffix dedPDT r?DT-CDDl?RBS?WDT/$VBG"~jNNS!rh?NNPjtVBNJJ&1ҿRP#~j?NNT㥛 @RBSQ?JJSQRBR!rh@JJRGzINˡEVBbX9i-1 tag+i word CC tiananmenNNV-NNPV-?i-2 word yuppieWDT+?IN+i word reaffirmingVBGM?NNM i word steadyRBKNNPJJ rh@NNSGzNNp= ףi+2 word savingJJ-?NNʡEƿVBGh|?5 i word dljJJ9vNNP9v?i+1 word facesNNPK7?WDTNNZd;OǿJJʡEݿ i suffix deaJJd;ONNd;O?i-1 word communications NNP#~j?VBw/NNPS?NNK7?VBP rhݿWDTZd;ONNSv?VBNףp= JJT㥛 ?IN333333VBZI +i-2 word fosterNNQVBlJJx&1?i-2 word literacyJJ+?RB+i+1 suffix uchNN\(\?INrh|RBV-@RP~jtJJRK7A`NNP(\VBNPnVBGq= ףpVBD'1Z@NNSFx@VBPQ?WDT rh WRBM?VBZ +?VB"~@RBRK7A`?JJEDTjtCCd;Oi-1 word doubtsINy&1|?WDTy&1|i-1 word meritorNNPSq= ףpNNPq= ףp? i suffix itaJJK7?VBZ#~jNNSy&1?NNP#~j@VBFxNN333333i word resourceNNPSzGNNPzG?i-1 tag+i word DT lullNNuV?RBRʡEJJ)\(i+2 word o'kickiRBQտINQ?WDTGz i word spyingVBGʡE?JJʡE޿i word circuitNNP1Zd?VBPHzGNNSClNNsh|?@JJ^I + i-1 tag+i word PRP$ broadcastingVBGˡE?NN~jtJJ9vi-2 word bureauWDT}?5^IVBNCl?JJClIN}?5^I?i-2 word sweetVB'1ZJJ'1Z?i word includesVBZ/$?NNP/$i-1 word planeVBNˡEԿVBDˡE?i-1 tag+i word PRP introducedVBZffffffVBDffffff?i-2 word sterileJJ rhNN rh?i-2 word appearanceNNSʡENNʡE?i-1 suffix nch VBD+RP ףp= VBPCl?JJMbINp= ףNNPʡE@VB+VBGGz?VBZZd;OտNNSOnӿRB1Zd?NNrh|i word examinesVBZK7?NNSjtJJCl绿i-1 tag+i word CC unamortizedJJ}?5^I?VBD}?5^Ii-1 word sectorRBʡE?VBD~jt?NNSʡEVBN~jt i word tycoonVBZnNNn?i-1 tag+i word VBD thereEXZd;O?RB rhVBNV-i+1 word while PRP$bX9NNSQ@VBN㥛 @VBP/$PRPbX9?JJm VBZV-RP|?5^?NNQ?VBDp= ףINRQVBG/$?DT/$i-1 tag+i word -START- articleNNPuVNN(\@RB{GzIN-i-1 tag+i word -START- consumerJJT㥛 NNPv/NN-@i word mainlandNN7A`NNSSJJsh|??i-1 word substancesVBN1Zd?VBD1Zd i suffix MMGVB5^I NNP5^I ?i-1 word samuelVBDףp= ?VBNףp= i-1 tag+i word DT hudsonNNPx&1JJQNNL7A`@i-1 tag+i word DT humanitarianJJ?NNi-2 word brotherNNPSnNN~jtؿJJDlNNPZd;? i word rapedVBNB`"JJV-ڿVBDrh|?i-1 word spending VBDS@JJRˡE?RBRˡEVBN^I +INJ +DTClJJ%CNNZd;?NNST㥛 ?RBJ +?WDTCl?VBZ'1Z?i-2 word toshibaVBD-?VBNI +JJ~jt?NNP~jti-1 suffix shyRB9vRP9v?JJzG?NNzGế i+2 word myJJ{GzINI +@NNS333333NNPS/$?RBrh|@NNsh|?@CDV-?UHQ?DTSVB%CVBD|?5^CC}?5^IVBNx&1̿NNPGzRP&1i-1 tag+i word VBN cynicNNw/NNSRQJJd;O?i tag+i-2 tag JJR NNSNNSA`"?JJx?NNMbX9i-1 tag+i word DT winnersNNPSHzGNNSHzG?i word datapointNN{GzNNP/$?NNPS/$i-1 tag+i word DT absolutelyRBK7?JJK7i-1 tag+i word NN allowedVBN!rhVBD!rh?i word devotedVBNˡE?VBDˡE i suffix FMNNPS$C˿NNPK7A`տVBP;OnJJ+?i-1 word kinjiNNPV-?NNV- i word batNNSMbX9ԿNNMbX9?i-1 tag+i word DT perverseJJX9v?NNX9vi word clienteleNNSn?NNni-1 tag+i word WDT dwarfVBZSVBPS?i-1 word family NNPS-VBDK7?VBNDT|?5^VBK׿VBGV-RBS?NNd;O?POS r?VBP5^I ?JJ`"i-1 tag+i word POS closingJJv/VBGx&NNw/@i-2 word walkoutsNNZd;ONNPZd;O?i-1 word noticeVBnINS?RPJ +ٿJJ= ףp=CD= ףp=?i-1 tag+i word `` excellentJJףp= ?NNףp= ۿi-1 tag+i word DT glitteryNN~jt?JJ~jt i word flowedVBNjtVBDJ +?NNS)\(i+1 word actuallyNNbX9VBP&1?EXffffff?RBffffffNNS +?NNPʡE?VB&1JJ/$i-1 suffix vasNNK7AJJ}?5^INNP'1Z?i-1 tag+i word NN nonethelessVBZQRBQ?i-1 tag+i word VBP learningJJ|?5^VBG|?5^?i word greaterJJRMbX9ԿNNPMbX9?i+1 word australianJJ&1NNP&1?i-1 tag+i word NNP aviationNN~jt?VBD~jti-1 tag+i word IN naplesNNPSMbpNNPMbp? i+1 word buy RBS&1JJS&1?WDT5^I ?INK7A`?RB +NN\(\JJ\(\?NNSENNPE?i-1 tag+i word DT steadierJJRʡE?NNʡEۿi-1 tag+i word CD nonprofitJJffffff?NNffffffi-1 tag+i word NN outrightNNSQRBQ?i-1 word defendsVBG(\NN}?5^I?JJjtԿi+1 word payoutVBNJJ?i-1 tag+i word VBN analogNNrh|?INrh|Ͽi+2 word sedanNNMbX9ܿJJMbX9?i-1 tag+i word CC goldVB|?5^ɿNNSv/NNS? i word belleJJ+FW+?i word backwardRBsh|??NN`"INQi-1 tag+i word `` attentionVBZd;@NNtVNNPK7Ai tag+i-2 tag NNS POSVBT㥛 ?RPx?VBDNbX9?RBRoʡ?RB{GzNN|?5^NNSClٿVBZCl?JJʡEDTS?VBG"~?JJRoʡWDTA`"VBNVBPI +@IN7A`?WRBˡE?i-1 word relationsVBDlVBPQ?NNʡE?VBDI +i-1 tag+i word , makingVBGFx@JJ7A`NNMbX9i-1 tag+i word JJ inflationaryJJ7A`?NN7A`ҿi-2 word businesses RBGz@VBZOnRP?JJuVݿVBG~jtпNNK?VBNMbX9VBPQNNSV-VBd;Oi-1 tag+i word CC asIN(\RB(\?i-1 tag+i word , plungedVBNJ +VBDJ +? i suffix WERJJRL7A`?NNPL7A`i-1 word surreptitiouslyVBK7?NNK7ɿi-1 tag+i word IN cellistsNNS+?NN+ i suffix rge JJ?5^I VBD rhWP+VBZV-VB= ףp= @VBNX9vVBPJ +@RBK7A`NNSy&1NNP= ףp=NN/$@i+2 word driverVBD/$?VBP/$i-1 tag+i word DT secretlyRB"~?NN"~i+1 word trustedPRP$S㥛PRPS㥛?i+2 word investmentJJSףp= INSRPDTzG?JJ$C NNKRBSףp= ?VBNE@VBDnPDT +?RBZd;O@NNSNbX9пVBZNbX9ȿVBrh|?VBG?SYMSNNPS㥛?i-1 tag+i word -START- informixNNP㥛 ?NN㥛 i-1 word builtEXMbRBA`"ۿINV-?NNSʡE?RP)\(?NNʡEi-1 tag+i word NN audioNN ףp= ?JJ ףp= ǿi-1 tag+i word NNPS angelsNNP(\NNPS(\? i+1 word ' JJR\(\CDFxRBFxVBZ(\NNPV-@NNS!rh?VBSNNPSMb?VBGA`"@JJI +NNQ@FW)\(i-1 tag+i word VB deputyJJMbX9?NNMbX9i-1 tag+i word , unleashVBP}?5^I?PDT5^I ӿJJEIN= ףp=i+1 word cancer VBD;On?VBN;OnRBrh|?IN%CJJw/ܿNN|?5^@VBPʡEݿVBZʡE?VBp= ףCD/$i-1 tag+i word DT parNNMb?JJMbi+1 word exposeVB/$RB/$?i word stumbleVBX9v?VBPMbJJ= ףp=i word intitiativeJJX9vNNP'1ZԿNNM?i-1 tag+i word CD postedVBNjt?VBDjt i-1 word ericNNx&NNPx&?i word sovietsNNPSCl@CD+JJClVBZ)\(NNSNNPS㥛i-1 word participationNNV-?VBDV-i+1 word brokeVBZ5^I ˿NNSS?NNZd;?VBPʡEۿWDT?PRP\(\RB(\INi-1 tag+i word VBN sterlingJJ rh?NNP rhi tag+i-2 tag VBP )NNS"~j?VBN ףp= RBˡE?i-1 tag+i word NNP physicistVBPL7A`пNNL7A`?i-1 tag+i word PRP$ blessingNNn?JJnٿ i+1 word rigsJJRQ?RBˡEԿINA`"VBMbX9i-1 tag+i word VBZ anywhereVBG/$ÿRB/$?i+1 word saltzburgNNjt?NNPjti+2 word higginsNNPʡE?NNʡE i word demonNNh|?5?JJh|?5i-1 word successfulRB%C@NNS5^I NNP rؿNNPS~jtJJPnNNףp= ?EXSi+1 word weaknessVBK7A?INX9vDTX9v@JJX9vVBD(\i+2 word leakedNNS(\?NN(\i-1 tag+i word NNS dependVBPRQ?NNRQi-1 suffix rryPRP$-VBDM?PRPy&1?VBGffffff?NNPZd;O?FWʡECC)\(JJREVB?5^I ?VBPffffff?VBZK7?NNPS~jt?RPV-?RBROn?WDTOn?DT rȿJJˡEܿNNHzGNNSuVRBCl?IN\(\ i word toutedVBNClVBDCl?i-1 tag+i word IN expectedJJx& VBNx& @i-1 tag+i word NN trundlesVBZ?5^I ?NNS?5^I i-1 tag+i word NN elsewhereRB?NNٿi-1 tag+i word DT jewelsNNS/$?NNPS/$ſi-1 tag+i word -START- amDT%CԿNNP%C?i+2 word assumeVBS?VBPSi word narrowingVBGy&1?JJy&1i word averagedRBmVBDn?VBNzGi-1 tag+i word IN workstationsNNPSV-NNSV-?i-1 word revenuesVBP-?VBN-i word elegantJJPn@VBN+NN ףp= i-1 tag+i word JJ solicitsJJuVVBZuV?i-1 word never VBPHzG@RB|?5^VBZMb?VBN(\@JJ7A` VBD?5^I @RBR#~jINd;ONNPuVVBZd;O?i+2 word directorVBN'1ZRB'1ZNNSGzNNP\(\?VBGClJJw/?NNʡE? i word monthsNNS/$@RBtVֿNNPNbX9 i+2 word sonyVBD ףp= ?FW ףp= ǿNNP{Gz?NNPS'1ZNN\(\?i-1 tag+i word DT famedVBNvJJv?i-1 tag+i word VB simpleJJE@JJROnۿVBNxi-1 tag+i word NN bufferVBd;O?NNd;Oi-1 tag+i word NNP studyNNL7A`?RBL7A`i-1 tag+i word -START- thePRP$-NN\(\JJV-DT"~@NNS-NNP1Zdi word mankindNNV-?JJV- i word shrinkVBDl?NNDli-1 tag+i word IN promisingVBG|?5^JJQ@NNMbXi-1 tag+i word JJ spreeJJRQؿNNRQ? i word ascapNNPS-NNP-?i-1 tag+i word NNP filingVBGd;ONNd;O? i-2 word ford NNʡEINx&1?VBZ~jtVBPx&?JJCl?NNS+ηNNP!rh?VB= ףp=NNPS!rhRBx&1i-1 tag+i word DT whereaboutsNNHzG?NNSHzGi-1 tag+i word RB reducedVBD ףp= VBNQ?JJ(\пi+2 word hillsideVBZX9vVBG-NNZd;VBDx&1?i-1 tag+i word JJ assemblyNNjt?NNSX9vRBQJJJ +i word daytimeJJB`"?NNB`"i+2 word videocassetteNNSMb?NN(\пNNP/$i-2 word persuadedJJ"~NNP"~? i word diluteJJ^I +VB^I +?i word unificationNNQNNPQ?i-1 tag+i word NNPS insightsNNPSL7A`?NNPL7A`i-1 tag+i word CC rebatesVBZJ +NNSJ +?i-1 tag+i word RB integratedVBN^I +JJ@VBDoʡi-1 tag+i word NN obscureJJCl?NNCli+1 word resetVBDlJJRbX9JJ rh@VBNV-Ͽi-1 tag+i word IN smuNNPS&1NNP&1?i-1 tag+i word VBP bestRBSʡEJJSy&1RBFx? i word fear VBZ^I +NN&1@VBDMbXINv/NNSGzNNP?5^I ҿVBHzG?VBP/$?JJ&1 i-1 tag+i word DT rareJJ= ףp=?NN= ףp=i-1 suffix aagNNPVBZ? i+2 word rowVBDq= ףpVBP333333JJq= ףp?NNPjt?VB/$ÿNNQi-1 word works RBx?JJR rhRBRM @VBPX9vWDTDl?JJHzGIN`"RPsh|??NNx&1NNS= ףp=NNPX9v? i suffix ibsNNSrh|?NNrh|i-1 tag+i word IN whittierJJRQNNPQ? i+1 word put VBGOnNN +?DT#~jNNPS?JJy&1VBX9vNNPSjt?RBjt?POSPnпVBP/$WDTtV@PRP-?i-2 word negotiatingNN(\NNPV-?VBZʡE?NNSʡEJJ+?i-1 tag+i word NNP launchedVBNS?VBDSi word languishedVBNGzVBDGz?i-1 tag+i word JJ hidingNN333333?JJ333333i-1 tag+i word NNP attractVBZvVBv?i-1 suffix dogVBNzGVBDzG? i word fujisNNZd;NNPX9v>VBV-NNPSʡ@JJRV-i word zVBK7ANNn?LS7A`SYM+?NNPʡE!i-1 tag+i word -START- conferenceNNrh|?NNPrh|i-1 word specificallyVBNClVBDCl?i+1 word secretaryNNPSGzJJsh|?NNQ@CDGz?VBPX9vRB/$տNNPDl@i+1 word cheerJJClNNSX9v@VBN333333NNni-1 tag+i word DT metropolitanJJ+NNP+?i-1 tag+i word DT diveNNv?JJv i suffix duoNNSw/NNw/?i-1 tag+i word -START- arbyNN rhNNP rh?i-1 tag+i word CC shoppingNNK?VBGK i+1 word vossJJ|?5^NNP|?5^?i-1 tag+i word NNS createdVBNV-?VBDV-i-1 tag+i word VB frothyNNJJ?i-1 tag+i word DT successorRBRvNNv? i+2 word busyNNI +NNPI +?VBZV-?POSV-߿ i suffix PRANNPl?NNPSʡEFW/$ i-2 word goodNNPS#~jWDT%C?IN9v?VB/$?NNffffffVBD"~RB9vJJR|?5^?NNSDl?DTx&1NNPSJJ`"οFWV-ݿRBR|?5^VBN~jtVBP5^I ? i word gearedVBN?JJK7VBD7A`i-1 tag+i word DT deadlyJJ= ףp=?RB= ףp=i+1 word circusNNOnNNPOn? i+1 word whoJJRoʡNNPQVBI +?NNE @FWGzPOSINMbX?VBD|?5^VBPL7A`пRBCDZd;OVBZGzNNSS㥛@NNPS333333@JJZd;O RBRoʡVBNS?EXv?i+2 word induceNNSX9v?NNffffffVBZK7A`?i-1 tag+i word RB impressVBB`"?RBB`"i+1 word overthrownNN7A`?JJ7A`i-1 tag+i word DT bitterestJJSˡE@NNSDlNNx&i-1 suffix lchJJ ףp= ?RB ףp= i-1 tag+i word '' enoughNN/$JJZd;IN|?5^RBK@i+1 word santaNNSʡERP'1ZNNP\(\VBZ7A`@IN'1Z?i tag+i-2 tag DT :VBD+ηJJS~jt?RBROnVBP{Gzt?CDuV?NNSK7ɿJJjt?NN(\ҿNNP +?RBؿVBGw/?FW= ףp=VBNףp= ?NNPSHzGJJRx?i word assurancesNNPSOnNNPOn? i-1 word discNNPSB`"NNPB`"? i word skiJJQ?NNQi-1 tag+i word NNP loanNNPsh|??JJsh|?i-1 tag+i word NN turnVBMbX9ܿVBPZd;O?NNˡEi+1 word generousRBx&1?JJx&1ؿ i word spellVBoʡ?RBoʡݿi+1 word sightseeingDTmRBm?i-1 tag+i word IN pullingVBGV-?NNV- i-1 suffix ` VB~jt?JJS?VBNS㥛?VBP +NNSPn@NNPSZd;NN㥛 ?VBDvUHJ +?RBS@NNPti+2 word electoralVBV-?VBPV-i+2 word safestVBNףp= ?JJףp= i-1 tag+i word IN conductingVBG}?5^I?NN}?5^IԿi-1 tag+i word DT anywhereEX/$RB/$?i-1 word fidelityNNS|?5^NNPZd;ϿNNPS^I +?i-1 word orderingDTtV?NNSS?RBSINtV i word wivesNNPSy&1NNSCl?VBZy&1VBzGi+1 word introducedJJRV-RBK7?NNRQ?JJbX9i+2 word publishJJRVBD{Gz?VBNGz?i-1 tag+i word IN violatingVBGZd;O?JJZd;Oi-1 word putting NNV-?RBRZd;RBSDTRPS?PDT?VBN^I +JJRZd;?NNS|?5^ҿi-1 word complexJJ ףp= NN ףp= ?i+2 word punishmentNNP|?5^NNS+NN^I +? i-1 tag+i word DT aforementionedVBN(\ڿJJ(\?i-1 tag+i word JJS dependentJJ{Gz?NN{Gz i-1 word kidVBZ= ףp=?NNPSMbNNPjti-2 word phraseVBP)\(?VB)\(̿i-1 tag+i word TO floatVB9v?RB9v i suffix dicJJK@NNSzGNNPClNNPS!rhNN(\VBNzGڿi-1 word beijingVBNZd;?VBDZd;i-2 word gymnasticsVBDv?VBZoʡVBNw/ԿRB/$i tag+i-2 tag VBP DTINM?VBPp= ףJJRGz?JJT㥛 ?PDTzG?NNSy&1NN|?5^?VBDʡE?RBR㥛 VBNT㥛 WDT9vRBsh|?VBZy&1?DTRQпVBGuVݿ i+1 word thisNNPS+WRBjtJJR(\VBG)\(INE?VBףp= ?VBP+@VBNMbXJJ/$ NNq= ףp @NNSoʡ?RBR}?5^@PDTDl @RP~jt?VBZx&1?DTMbVBD"~jPOSOnWDT5^I RBOn?NNPJ +i-1 tag+i word CC bulliedVBDuV?JJuVi+2 word perceiveNNP~jtxDT5^I JJ333333?i-1 tag+i word NNP comesVBZ ףp= ?NNS ףp= i-1 tag+i word PRP contendsVBZS?VBDSi+2 word profoundlyNNT㥛 ?NNPT㥛 i word touchingJJ|?5^@NN|?5^i-1 word rectilinearVBZQNNSQ?i-1 tag+i word CC headedVBNx&VBDx&?i+2 word francoisJJ\(\NNP\(\@i-1 tag+i word `` tinkeringNNA`"VBGA`"? i-1 word betWDTh|?5INh|?5?i-1 word supersonicVBN1ZdNN1Zd?i-1 tag+i word CC unnecessaryNNP^I +JJ^I +?i+1 word africanJJn @VBNDl?NNDlNNPni-1 tag+i word IN tightJJ;On?RB;Oni-1 word atticJJv/?VBNtVNNx&1i word fittestJJS(\?NN(\i-1 suffix lts RBjtNN5^I VBD'1Z?EX= ףp=IN{GztVB`"?VBN'1ZVBPMbPJJn? i suffix oloNNPxJJZd;?NNSlNNp= ף?RBn?i word schedulingVBGoʡNNoʡ?i-1 word attemptVBZx?NNxi-1 tag+i word TO individualVBV-JJV-? i+1 word aINCl@WDTDTˡELS$CCC&1?VBNd;ONNSSPRP%C?CD+NNP-PRP$%CFW ףp= ?RBSKRBRp= ף?VBG"~j @RBOnۿVBZffffff @NNPSZd;O JJSRQPOSK7AVBx&1 @VBD#~j @JJo!NN1ZdWRB9v?PDT;On@JJRZd;?VBPˡE@RP&1@i-2 word damageJJV-?NNI +?CD rhݿRB&1?IN&1NNP^I +VBrh|i-1 word tankerNNQ?JJQi+1 word tommyNNPn?JJPni-1 tag+i word PRP$ debtsNNSGz?JJGzi+2 word drillingWDT333333IN333333? i suffix edy VB+NNPSSJJK7A`?NNPRQ?VBZClNNS"~RBDlNNjt@VBDp= ףؿVBNV-i-1 tag+i word CC setVBJ +VBPK7AпVBN= ףp=NN(\?VBDS㥛?i-1 tag+i word RBS performingJJlVBGl?i-1 tag+i word IN alexNNPSNNP?i+2 word delmedNNrh|VBGrh|@VBNS?JJSi-1 tag+i word JJ lacklusterJJˡE?NNˡEi-2 word whirringJJoʡ?NN/$NNSʡEi-1 tag+i word VBG iceNNS|?5^NN|?5^?i word judgmentNN?5^I ?JJ?5^I i+2 word silasJJB`"?CDB`"ٿi+1 word bandsNNʡE?PDTʡE i word sheetsNNSS?NNSi word festivalNN-?JJ-ӿi-1 tag+i word , devilsNNS㥛 ?JJ㥛 i-1 tag+i word VBD finlandNNQ?NNPQi word transactionsNNS&1?NNPS&1ڿi-1 tag+i word VBD disturbedVBNV-?RBV-i-2 word uncoverVBZd;O?VBPZd;Oi+2 word foothillsRBxINx?i-1 tag+i word DT littleJJQ?NN(\ RBB`"[@RBRi-1 word henryNNPSQNNPQ? i+1 word goneNN"~?VBD+?JJS"~POSʡEJJ+VBZʡE?i-2 word persuadeJJQNNPQ?i-1 tag+i word NNP kitadaJJ~jtNNP~jt?i-1 tag+i word , celebratesVBZ5^I ?NNS5^I i word honestyNNSHzGNN rh@JJ= ףp=i-1 tag+i word VBP steppedVBNn?VBDnڿi-1 tag+i word TO h.g.VBMbXNNPMbX?i-1 tag+i word IN abuseNN +?JJ + i word stealsVBZx&?VBP㥛 NNSZd;׿i+1 suffix oamNNʡE?JJʡEi-1 tag+i word DT vietnamNN1ZdNNP1Zd? i word stagedVBD/$@VB/$VBPV-NNPK7A`i-1 tag+i word DT chapterNNQ?NNPQ i word graveVBT㥛 VBPq= ףpNNSGzNNx&1?JJ#~j?i-1 tag+i word IN adequateJJHzG?NNHzGٿi word preciseNN)\(RBx&JJ+N@i-1 tag+i word JJ eurodollarNNPzGNN#~j@JJK7i-1 tag+i word -START- doubleRBX9v@JJrh|NNPL7A`堿 i word candidJJ&1@NNS㥛NNPxi-1 word bitingPRPT㥛 @NN rhCDnڿi+1 word sundayJJRx&1ܿNNx&1? i word look VBDjtVBN;OnRB/$INmNNPX9vVB|?5^@NNE?VBP/$@VBZV-JJףp= i+1 word slashingNNQ?JJQi word husbandNNPK7A`ݿVBP}?5^INN7A`@JJ}?5^Ii-1 word favorableNN}?5^INNS}?5^I? i-1 word propRPL7A`?INL7A`i-1 tag+i word -START- sexNNGz?RBGzi-1 tag+i word , frontierJJRvNNPv?i-2 word computer VBNI +VBPv?INK7?RBʡENNʡE?VBD"~j?JJ?VBZNNSKVBV-?RPQWDT rhi-1 tag+i word NNS worseRBRS㥻NNSX9vJJR-?NNDl i word audioDTClVBPJJw/ @NNRQINi+2 word staffersNNMb?JJMbi-1 tag+i word IN longerVB/$JJR/$? i+1 word wideVBP㥛 NNS㥛 ? i suffix zSYM+?LS7A`NNX9vi word campaignVBoʡݿNNPSA`"NNA`"?NNP{Gzi+2 word scenesPRP$ʡEPRPʡE?JJRQRBRQ?i-1 tag+i word PRP lostVBPV-JJR^I +߿VBDCl@ i+1 word goyaVBZ?NNSNNZd;O?JJZd;Oi-2 word professorJJJ +?NNSQVBN㥛 NN#~j?NNP|?5^?i+2 word frankfurtVBGK7VBNK7?NNK7?VBK7i-1 tag+i word IN madeVBNn?VBDni-1 tag+i word RB rolesVBV-NNSV-?$i-1 tag+i word DT telecommunicationsNNSjtԿNNK?JJsh|?i+1 word calendarJJK7A`NNoʡſIN|?5^@i+2 word weekendNNPS^I +߿RPK߿INK?NNP^I +? i word hookedPRP$nVBNA`"JJK7A@i-1 word welcomedNNoʡݿJJSMbX9VBN$C@JJHzGѿJJRK7A`i+2 word deliberatelyNNh|?5?RBh|?5i word faintingVBG9vNN9v?i+1 word excitementJJX9v?NNX9vi-1 tag+i word IN recommendingVBGL7A`?JJL7A`i-1 tag+i word , rollingJJm?VBGmi-1 word nonprofitNNPSjt?NNPjti-1 tag+i word DT bicentennialNN%C?JJ%Ci+1 word idrocarburiNNP'1Z?JJ'1Zi+1 suffix lleJJ/$NNNbX9ȿNNP333333?DT?5^I IN?5^I ?i tag+i-2 tag '' :VB?NNsh|?RB#~ji-2 word outfieldJJRQ?NNRQi+2 word penaltyNNS1Zd?NN1Zdi+1 word anteatersJJ= ףp=?NN= ףp=ҿi-1 tag+i word RB frontRBy&1?JJy&1 i word fixedVBMbX9NNK7AVBD|?5^?VBN!rh @JJVBZ|?5^NNSRQi-2 word norwoodVBN+JJ+?i-1 tag+i word IN capitaNNS㥛 ?NNClٿJJMb i suffix ELFPRPjt@NNPjti-1 tag+i word VBG workVB~jtNN~jt?i-1 tag+i word WDT futureVBPI +JJI +? i+2 word pageNNV-JJ1Zd˿RB~jt?i+1 word markedlyINoʡDTK7ѿRBm@i-1 tag+i word DT churchNNPV-?NNSQNN?JJx&1ܿi+2 word reminiscentNNv?JJvi+1 word verdiVBZʡE?VBDʡEi+1 suffix sacVBD;OnINS?FWK7A`i-2 word hearsRB㥛 RP㥛 ?i tag+i-2 tag NNS -START-JJ~jt?VBPS?RBffffff޿JJRV-׿PDTT㥛 ؿIN(\DTvNNPS?VBNL7A`?CDZd;WDT/$@VB9vNNPSEԸVBGףp= NN'1ZܿVBD-?VBZ/$?NNS|?5^?i-1 tag+i word NNP swavelyRB?5^I NNP?5^I ?i-1 suffix ubsVBZS㥛VBPm?NN ףp= i-2 word fraudNN +?JJMVBCli-1 tag+i word NN speakingVBG5^I NN5^I ?i word petrochemicalNNK@JJ= ףp=NNPZd;O?i-1 tag+i word NNP televisionNN +NNP +? i suffix gerRPq= ףpJJR rhQ&@VBN{GzVBZy&1NNS+wJJX9vVBD+FWI +RBRZd;_@RBV-?NNCl @VBPx&1INuVVBQNNPSx&1NNPT㥛 ? i word outNN%C !JJS\(\VBNPnNNPS7A`RPK7)@NNSGzVBG+NNP$CVBD+RBS@IN~jt @CD+VBZJJRMbPi word restrictsVBZv?NNStVVBDZd; i word coliNNSbX9?NNbX9 i suffix balNNVBNRQؿJJ ףp=@NNS+NNPsh|?VBZd;O߿ i word suingVBG"~j?JJ"~jܿi word aerobicsNN$@NNS`"RBףp= ۿJJ~jtؿi+1 word stateswestNNd;O?JJd;Oi+2 word fasterNNPMbX9VBDOn?JJMbX9?INOni-1 tag+i word DT lockNNm?JJmi word relatedJJ/$@VBDV-oVBNS?i-1 tag+i word DT netJJPn@RBʡENN?5^I i-1 tag+i word `` takingVBG|?5^?NN|?5^ٿi-1 tag+i word JJ structuredVBNmJJm?i+1 suffix elfNNStVVBNPn?INQ?VBPmտJJ5^I  NNPSClVBGˡE @NNP!rh RBGzNNMbXCDtV?PRPtVVBZ rh@VBZd;@VBDE@ i suffix ean JJbX9H@VBPx&@NNS?5^I NNP#~jVB\(\?NNPSx&NNxVBDSJJSʡECD~jtRBK7i-2 word severeNNd;O?RB#~jINпNNSuV?NNPGzJJ#~j@ i+1 word been VBrh|ϿNNzGVBDx@POS1ZdӿVBPq= ףp?VBZ1Zd?RBd;O @VBNKJJx&NNSZd;߿i-2 word punitiveVBG(\?NN(\i-1 tag+i word , distributesVBZ$C?NNS$Cۿi-1 tag+i word WDT requiredJJʡEVBDp= ף?VBN(\µi-1 tag+i word -START- placeVBx?NNI +޿NNP(\i+1 word disksJJV-?NN +?CCq= ףpRBR{GztJJREVBP"~i-1 tag+i word CD globeNN$CNNP$C?i+2 word baseballDTSNNSMbXNNP~jt?NNPSZd;O?NN;On?JJjtINL7A`?VBZCli-1 tag+i word JJ newsprintNN+?JJ+i-1 tag+i word IN filipinoJJ&1?NNzGNNP/$?i-1 word droppedVBMINT㥛 ?RBR rRBʡEJJR r?i-1 tag+i word DT bargainingNNx?JJL7A`VBG{Gz i word justRBQ@NNP?5^I VBRQȿJJFxNNClCC|?5^JJSףp= i tag+i-2 tag CC NNPS NNףp= ?VBD?5^I ?JJ~jtINQ˿VBZFxVBʡE?NNPSd;O?VBP/$DTFxNNSA`"?NNPV-?RB/$VBN?5^I i-1 tag+i word , tryNNMVB rh?VBPh|?5ֿi word thinnestJJS rh?NN rhi-1 tag+i word JJ disturbedJJp= ף?NNp= ףi+1 suffix kyuDTףp= ÿINףp= ?i word evaluateVB{Gz?VBPI +޿NNV-i-1 tag+i word DT capitalisticNNK7JJK7?i-1 tag+i word JJ troubledVBD|?5^VBN)\(?JJ9v i word angelsNNPS1Zd@NNSuVNNP9vi-1 tag+i word VBD soonerNNd;OֿRBRd;O?i-1 tag+i word JJ accountsNNSx&?NNx&i+1 word atlanticJJjtRBI +ֿNNPS?i+1 word merchandiseNNv/?NNPQVBGB`"ѿJJ~jt?i-2 word sedanJJuV?JJR~jtNN-i-1 tag+i word NNS processNN/$?VBP/$޿i-1 word obtainedJJ5^I IN5^I ?i+2 word mineralsNNSOnNNOn? i+1 word yet RPףp= ?VB|?5^VBGV-ݿVBP?VBNn?RB$C?INSNNS5^I JJX9v׿NNoʡ?VBD7A` i word soapNNSw/NNn@JJx& i word hugoVB\(\NNP\(\?i-1 tag+i word DT stateNNSJJ`"NNP rh@ i word oyVBZףp= NNPS~jtNNPh|?5?i-1 tag+i word DT merksamerNNPSˡENN-ӿNNPzG?i-1 tag+i word CC multinationalNN)\(JJ)\(?i-1 tag+i word PRP$ dismissalNNMbX?JJMbXi-1 suffix wanNNPSGz?NNPGzi word companyNNPSQNN9v@JJ/$NNPV-VBZh|?5i-2 word betterPRPʡEJJn@VBvNNM¿VBDnPDT rhPRP$ʡE?i+2 word usualCC"~jܿNNS"~j?i-2 word impairedVBZ= ףp=?NNS= ףp=i tag+i-2 tag NN EXVBZ7A`?NNS7A`i-2 word porousNNS+NN+?i-1 tag+i word CC getVBZ"~jVBRQ?NNx&1i-1 tag+i word IN federalNNJJ-NNPS?i-1 tag+i word IN frontRB`"?JJKNN+?i-2 word third NNS+VBffffffJJ +?VBDn@VBPK7RBZd;OݿINh|?5 @VBG+NNQſVBNnNNPQ?i-1 tag+i word IN protestsNNSZd;?VBNZd; i word losesVBZtV?NNStVi word retireeVBuVNNjt @JJ(\ i+1 word corpNNPS"~ @NN/$JJjtNNS`"NNPQ @VB333333i-1 tag+i word VBD tighteningVBGQNNQ? i word asleepNNS5^I RB|?5^?IN ri-1 tag+i word VBP scoresNNS+?JJ+i+1 suffix anzJJ&1?IN%C?VBZx&?NNSNbX9NNPB`"NNףp= ?VBPףp= WDT%Ci-2 word versionJJ㥛 ?NN㥛 i word awedVBNZd;JJZd;@ i suffix petNNPX9vNNPSX9vRBX9vNNn @VBPK7?JJK7?NNS ףp= i-1 tag+i word IN fewerJJZd;JJRl?NNjtܿi-1 tag+i word IN accountsNNSx&VBZx&?i+1 word bancroftDTm?INmi-1 tag+i word VB enoughNN{Gz?VBNMbX9RBL7A`?INL7A`VB|?5^JJ?5^I ?i-1 suffix unnVBZOn?NNSOni word glitterNNS{GzNNS?CDh|?5 i+1 word itJJRzG?VBNMbWPzG?CDmPRPʡENNPSWRB^I +?INZd;@JJS$CWDT rhDT+RPS㥛VBDbX9@NNS|?5^?UH#~jVBGPn@VBPGz@JJZd;ONNCl?RBK7AVBjt @RBS$C?NNPSQſPRP$ ףp= FWtVVBZ333333 @i-2 word dealersNNZd;O?VBDNbX9?JJRmVBN+VBP"~j?JJ&1?i+2 word validDTm?RBmi-2 word solicitationsJJQVBNQ?i word schimmelNNPSKNNPK?i-2 word nadirVBZq= ףpVBP(\VBD333333?i-1 tag+i word CC highVBPJ +JJJ +?i+2 word anything JJS\(\JJRd;ORBˡE?VBPZd;OVBGENNS/$?NNPS}?5^IܿRP\(\?JJjt?NNv?RBRd;O?NNPA`"i-1 word trendingRBR5^I ۿJJR5^I ?i-1 tag+i word PRP$ prominentJJm?NNmi+1 word rublesVB/$JJ/$?NN/$CD/$? i word richesNNSS?NNSi-1 tag+i word '' lateJJbX9RBbX9?i-2 word predictionsRBp= ף?INp= ףNNSKNNK?i word magicalJJRoʡJJoʡ?i-1 word unflatteringNNMbXٿNNSMbX? i word barryJJMNNPM?i-1 tag+i word JJ titansNNSV-?NNV-i-1 tag+i word IN setupJJGzNNGz?i-1 tag+i word VBD pinpointedVBN= ףp=?JJ= ףp=i+2 word dollar VBNL7A`尿VBP"~j@RBB`"INzGVBG+ӿVBZV-RPCl?VBD(\?NNMb?CCA`"VB(\JJS@i+1 word sterileRBRV-NNX9v@JJp= ףVB(\i-1 tag+i word CC permanentJJ;On?RB;Oni-1 tag+i word DT frumpyNNSV-JJ r?NNzGʿ i-1 word dowVB$CNN$C?i-2 word gatosVBZx&1VBDx&1?i+1 word hotelsNN-NNPNbX9ؿJJV-?i-1 word hispanicsVBP&1?NN&1i-2 word playsRB-?NNPNbX9?DTNbX9IN- i+2 word try VBDNbX9?VBN-ƿRBʡEտVBZFxɿNNSv?VBףp= VBG rhCC5^I VBP(\?JJ(\NN&1@ i-1 word foodVBG +?NN㥛 ?VBDtVJJʡEVBZENNSn?i-1 word horticulturallyVBPZd;OͿVBNPn?JJʡEÿi+1 suffix issJJMbX9?VBNv/NNtVֿVBDʡE?i-1 tag+i word PRP cautionVBPv?NNv i word rowVB/$ÿVBP333333NN#~j?JJx&1NNP\(\?i+1 suffix ewsINV-RBv?NNP}?5^IVBGtV?RBR/$?VBN)\(?NNSd;OJJrh|?NNSVBD(\POSZd;VBPQ뱿JJROn?VBZX9v?VBMbX9ԿCD?i-1 tag+i word VBD contemplatedVBN%C?JJ%C i suffix .74NNSGz޿CDGz? i-1 word paulNNSV-NN)\(?NNP~jtNNPSZd;i word inherentNNQVBPuVJJˡE@i-1 tag+i word DT pureJJ`"?NN`"i-1 word adequateNNT㥛 ?NNS+?VBN+JJT㥛 i-1 word contractingJJ"~VBD"~?i-1 tag+i word RB optimisticRBR9vJJ9v?i-1 tag+i word JJ patentsNNS ףp= ?NN ףp= i+2 word kompaktNNMbJJMb?i word simulatorNN;OnNNP;On?i-1 tag+i word VBN talkNNSL7A`NNL7A`?i+1 word perestrokiaDTA`"@WDTd;OINˡEi word ogonyokCCHzGVBq= ףpNNP\(\?i-1 tag+i word NNS dislikeVBPCl?INCli-1 tag+i word VBP likelyJJv@RBvi-2 word quipsVBZX9vNNSX9v?i-1 tag+i word VBP afraidJJS㥛?VBN}?5^INN(\ҿi word filipinosNNPSMbX9@NNSffffffƿNNK7NNP- i-1 word unprecedentedJJCl?CDx&1DTV-i word profitabilityVB rNNV-?JJ rhտi-2 word vroomVBP+JJ+?i-1 tag+i word NN usersVBZX9vNNSX9v?i-1 tag+i word , fearingVBGQ?JJK7NNCli+1 word givensDT\(\IN\(\?i-1 word jalapenoNNE?FWEпi-1 tag+i word JJ mindsNNSV-?RBRV-i+2 word subcompactJJ/$?NN/$i-1 word altimariVBrh|VBPrh|? i-2 word uponVBNZd;O?VBDZd;Oi+2 word criticsVBG;OnڿJJʡENNʡE?VBPPnRBh|?5RPh|?5?NNPuV?i+2 word tellingNN!rhVBPK?JJK7?VBZ-?NNP-VBZd;i-1 tag+i word CC seatingVBG%CNN%C?i-1 tag+i word `` confidenceNN\(\?NNP\(\߿i-2 word regionalVBPy&1RBy&1?i-2 word lombardVB/$NN/$?i-1 tag+i word RB concernedVBN{GzJJ{Gz?i-2 word unionsRBR(\JJ(\?i word tediousNNS= ףp=JJ= ףp=?i word embarrassingJJ-?VBG-i+1 word overwhelmingVBZV-POSV-@ i word rookieVBMbX9NN`"@JJ~jti-1 tag+i word JJ airportNNQ?RBQi-2 word allowNNS~jtȿNNP?NNPSSVBGPnNNv/ݿJJv?i-1 tag+i word NNP comfortNN+?NNP+ۿi-1 tag+i word ( goldNNv/?JJv/i-1 suffix igh VB"~jԿVBGZd;ONNףp= ?VBDDlRBM?VBZx&1JJV-VBNQ?IN/$?NNSm?NNPPn i suffix yneNNZd;O߿JJZd;NNPS?i+1 word dramaJJjt?NNMbVBGCli-1 word rapidlyVBZ333333NNS333333?VB}?5^I?VBGrh|?VBDB`"?VBNB`"JJSi+1 word overallVBDjtԿPOSRQ?RBjt?VBZRQVBGtV?JJtVi-1 word constantlyVBPbX9?VBNK7A?JJK7AINbX9ֿi-1 tag+i word VBD freshJJR7A`JJOn?VBNSi word establishingVBGT㥛 ?JJZd;NNPMbi-1 tag+i word VBG transferredJJ?5^I ڿVBN?5^I ?i-1 tag+i word , withoutINn?NNPn i word shookVBD{Gz@VB^I +VBP?5^I NNNbX9i-1 tag+i word VBG clobberedVBN rhѿJJ rhVBDˡE?NNS +οi-1 tag+i word DT framersNNPSV-NNSV-?i word commerzbankNN&1NNP&1? i word even VBV-RP}?5^IJJ~jt?VBNˡE RB%C.@DTNNST㥛 NNPQNNMbVBDV-VBPClIN/$VBZZd;Oi word hoodwinkedVBNS@NNp= ףVBD`" i word flawedRBRsh|?VBNzG?VBD9vi+2 word genuineNNSˡEVBZˡE? i-1 tag+i word POS relationshipsVBZS㥛NNSS㥛?i-2 word millionsNNPS?NNSOnNN/$?i-1 tag+i word PRP$ retailNNv@JJvi-1 tag+i word CC intendVB/$VBPZd;?NN)\(i word transparentJJS㥛?RBp= ףNNK7Aпi-1 word coversDTˡE?RBˡE i+2 word fixNNSGzNNGz?i-1 tag+i word JJ randomNNSQJJA`"?NNv߿i+2 word tormentsVBGjtNNjt?i-1 tag+i word '' noNNPq= ףpDTq= ףp?i-1 word dynapertJJZd;O?NNZd;OͿi-1 tag+i word JJ attitudeNNSx&NNx&?i-1 tag+i word VBP meantVBN~jt?JJ~jti+1 word stagesNNGzFW\(\RBrh|INEVBGp= ף?JJHzG?i+2 word outflowsVBQ?DT/$IN/$ÿi-2 word wagonsVBMbX9VBNMbX?VBD!rhܿi+2 word improvisedVBD+?NN+i-1 tag+i word DT startlingVBG$CJJ$C?i-2 word evidentJJ|?5^?RBRZd;O?NN|?5^JJRZd;Oi-1 tag+i word NNS herPRP$ffffffPRPffffff? i suffix gmaNNSQNNZd;O@JJGzNNPT㥛 i+1 suffix rdeJJ{Gz?NN{Gzi-1 tag+i word , flowingVBG`"JJ`"? i-1 tag+i word -START- followingVBG?NNPi-1 tag+i word RB supportedVBN)\(?JJ)\(i-1 tag+i word JJ savvyNNSRQNNRQ?i-1 tag+i word PRP fondlyVBPZd;ORBZd;O?i-2 word addressedNN}?5^I?JJ7A`RBZd;O?i-1 tag+i word NN abusedVBN#~j?VBD#~ji+1 word governmemtJJOn?NNPOnۿi-2 word landslidesJJRv/?RBRv/ݿi-2 word providedJJS@VBGV-NNQRBX9vi-1 word acquisitionsWDTsh|??NNMbp?INK7A`i+2 word anyoneJJL7A`?RBʡEVBNQ?NNV-INʡE?i-1 tag+i word NNS cottonVBSNNS? i-1 word necVBP;OnRB;OnIN;On?VBZ1Zd?NNS'1ZNNPSHzGNN1ZdVBDtV?i-1 tag+i word IN virtueNNB`"?NNSB`" i-1 word jobsVBNOn?JJQIN rh?VBD-WDT rhi-1 tag+i word IN retiredVBN%C?JJ%Ci-1 tag+i word , giveVBCl?JJy&1ԿNNPK7A i word zooNNSQNNQ? i+1 word whyVBNS?RB7A`?IN&1VB;On?RP^I +?NNMbؿi word developmentsVBZDlٿVBlNNPSV-?NNSZd;?NNPV-߿i-1 tag+i word VB springVBG"~ڿNN"~?i word dilapidatedJJn?VBNn i+1 word roweVB)\(NNP)\(? i word worstVBNMbJJ;On NNS rпNNPSNN-JJS{Gz@RBSI +?i-1 tag+i word , amenNNP rhUH rh?i word spurnedJJnVBDn?i-1 suffix proNNPlJJʡENNy&1FWףp= @RB\(\NNSp= ף i suffix himNNx&1?RBx&1i-2 word bringVBGjtֿVBClRPʡERBʡE?NN rh?JJ/$?i-1 tag+i word : everythingVBGZd;ONNZd;O? i-2 word neckRB;On?IN;OnNNS@NNSV-JJ ri-1 tag+i word JJ deservesNNSMbVBZMb?i-1 tag+i word RBS perfectJJv?NNv׿i-2 word confirmedVBDJ +NNPX9vNN~jt@VBNJ +?JJQi-1 tag+i word TO licenseVBK?NNK i word gleanJJv/VBv/?i+1 word lokeyJJjtNNPjt? i+2 word pollNNClVBGHzG?JJ㥛 ?i-1 word liberalsWDTGz߿INGz?i-1 tag+i word NN streakVBDX9vNNX9v?i-2 word coachVBD\(\?IN\(\i-1 tag+i word IN pagesNNSS㥛?NNS㥛i-1 word laveryIN= ףp=?JJ^I +FW9vҿi-1 tag+i word IN armoredVBNGzJJGz?i-1 tag+i word DT flashbackNN;On?JJ;Oni-2 word grantedJJjt?NNjt i suffix ENN rh?NNP rhi-1 word aeronauticalNNPSGzNNPGz? i+2 word butRBlڿEXNbX9пMDzGJJ+@RP!rhFWףp= VBS㥛?INRQ?UH%C?VBZS㥛?VBDX9vNNS?NNPSZd;?JJRMbVBGoʡſVBPʡE?WDT&1ڿDTx&1NN\(\?NNP +RBR`"ֿCD(\?VBNv?JJS"~?i-1 tag+i word IN contemptNNZd;?JJZd;i-1 tag+i word POS executiveJJ1Zd?NN1Zdi-1 tag+i word '' lastsVBZ+?IN+i+1 word buildersINx&1NNPCl@NN#~jJJx&1i-1 tag+i word IN timberNNQ?JJQݿi+2 word persuadingJJR+?VBN+i word checkingJJ\(\NN\(\?i word engineeredVBNoʡ?NNy&1|VBDOnÿJJ-CD!rhi word softwoodJJ ףp= ?NN ףp= i-1 word additionsVBPCl?VBDCl$i-1 tag+i word IN property\/casualtyJJV-?NNV-i word regulatedVBNRQ?JJZd;O?VBDV- i suffix mobPRP$1ZdNNQ?JJ?5^I i-1 tag+i word DT notebookNNMb?NNPClNNSQi-1 word adoptionVBZ/$?NNS/$i-1 tag+i word NNP becauseRB-ƿIN-?i-1 tag+i word JJ intermodaNNoʡNNPoʡ?i-1 tag+i word VBD hurtVBQNNEVBN(\@JJ}?5^Ii-1 tag+i word VBN furtherJJq= ףp?RBq= ףpݿi-1 tag+i word JJ okUH-?NN-޿i+2 word performanceVBG&1NNJJSV-?VBN$CJJK@INʡENNSʡE?i+2 word presidingRBh|?5?INh|?5i-1 word resellingRBCl?INCli-1 tag+i word -START- signsNNSx&1?NNPx&1i+2 word expressingVBPA`"?NNSA`"i-1 word improvementsVBP5^I NNw/?JJq= ףpտi-1 tag+i word NNPS systemsNNPSffffff?NN7A`NNP~jt?i-2 word nicaraguaVBD-VBG-?i-1 tag+i word DT monopolyVBN/$NN/$?i-1 tag+i word NNS forecastVBP(\?VBD(\i-1 word tweakingVBN~jtVBD~jt?i-2 word monsterVBD?NNPS rпNNP/$ i-1 tag+i word -START- rochesterRBGzNNPGz?i-1 tag+i word TO withholdVB"~j?JJMbX9NNS㥛i-1 word closed RPSNNZd;O@RBR-?JJRHzG?INjtNNST㥛 JJx&1RBbX9@NNP i word racialJJMb @NN +NNP&1i+1 word strikeJJQNN1Zd?VBN?5^I @RBffffff?NNSNNPFxi-2 word airborneVBZ+?VBD+ i suffix ckiNNPS?VBDSi word excerptsNNSDl@JJSRB|?5^NNPi word staplingVBG rNN r?i-1 tag+i word -START- searsNNS rNNP r@i+1 suffix useCDSNNP(\?VBGx&1FWKVBZʡEÿDT(\VBDjt POSI +RBX9v@VBA`"ӿEXSNNPS\(\VBN(\@''/$VBPCl绿WDTʡE?JJV-ǿCCMb?INDlRP333333NN|?5^ @NNSE@RBRQ@JJRʡE?i-1 tag+i word NNP placementsNNP333333?NNS333333ÿ i-1 word hePOSʡE?VBNZd;VBPx&1 MDsh|?@RB= ףp=?RBRrh|IN ףp= DTZd;OVBI +@NNPSGzVBD(\@VBZV@NNS-NNoʡJJ i suffix CanNNPS㥛MDI +@VBPSVBZSJJA`" i word pointNNSbX9VBDl@NNGz@VBD&1VBNd;OVBP-?JJ rhINX9vi-2 word surplusJJ$C?IN$Ci+1 word limitedINK7ٿNNPMb?NNPS+NNM?VBN?RBV-?i+1 word innopacJJE?CDEi-1 tag+i word RB miningNNPS㥛?NNS㥛i-1 word hendersonVBN)\(?VBD)\(i-1 tag+i word RB manneredVBN&1ڿJJ&1?i-1 tag+i word JJ sonNN`"?JJ|?5^NNSMbX9i-1 tag+i word NN portfoliosNNSd;O?NNd;Oi-1 tag+i word DT nuisanceJJQ?NNQi-1 word serviceNN333333VBPoʡ?WDTףp= ?JJS?INףp= NNSffffffNNPQ? i+2 word live VB(\?NNxVBPQVBGQRBSbX9JJSbX9?JJ333333?IN+NNSCl? i-2 word 'dRBˡE?IN(\DT+?VBA`"?VBD}?5^I?PDT+VBN}?5^Ii+1 word romanticVB\(\VBN\(\?JJjt?NNPjti-1 tag+i word NN intensifiedVBNI +VBDI +?i-1 tag+i word TO forecastVB&1?JJ/$NNX9vi-1 tag+i word MD evenVBQRBQ? i word buoyedNNS`"ֿVBN`"?VBDA`"?CCA`"i-1 tag+i word , whittleWRBSNNPS?i-1 word libyanNNOn?NNPOnۿi-2 word greatsJJS㥛@NNPClRBRClRBCl?IN rhi-1 word chorusVBGFx?NNFxRBV-߿INV-?i+2 word forgoJJ ףp= VBN ףp= ? i suffix %-3JJ333333?CD333333i-1 tag+i word -START- everDT+NNSClNNPX9vNN!rhRB-F@IN|?5^i-1 tag+i word DT popJJʡEտNNʡE?i-1 tag+i word RB autumnsNNSV-?JJV-i+2 word reviewingDT ףp= ߿IN ףp= ?i-2 word animalRBB`"۹?NNPPnVBZd;JJS㥛?NNnVBDp= ףVBNp= ף?VBP`"?i-1 tag+i word PRP aroundRPRB@INv/i-1 tag+i word JJ victorianJJn?NNPni word whackedVBNd;O?JJd;Oֿi-1 tag+i word NN causedVBNx&?VBDx&i-1 tag+i word NN importNNffffff?VBPffffffi-1 tag+i word NNP earlyJJ1Zd?VBPRBK7?i+1 word littleVBDsh|??VBPsh|?VBZ`"?NNCl׿WDT= ףp=CDX9vVBN-?NNPSMbRB= ףp=@JJCl?INMbX9DTGz?NNSSNNPjtVBsh|??POSQ@i+2 word adoptedNNJ +NNPJ +? i-2 word r.NNMbNNPMb?i-1 tag+i word RB criticizedVBN= ףp=ڿJJ|?5^VBD +?i+2 word banningNNy&1?JJy&1ܿi tag+i-2 tag VBD VBGRP5^I ?RB rhѿNN rhJJR"~jJJ rh?INK7NNSS?i-2 word pricingVBZMb?NNSSۿRBlJJ)\(?VBD)\(i word imposedJJ)\(VBDbX9VBN;On@i-1 tag+i word PRP$ totalJJl?NNli-1 word backhoeRBʡE?NNʡEi-1 word completedJJR;On?VBPV-RB^I + JJ|?5^?NNV-?RBR{Gz?i-1 tag+i word , kelly\/varnellNNP^I +?NN^I +i word crosslandNNRQNNPRQ? i suffix 352JJV-CDV-?i-2 word infectionPRP$9v?PRP9vi word oppositeVBtVJJ5^I @NNL7A`PRPi+1 word pieceJJffffff?NNGzVBG"~?i-1 tag+i word POS remarkNNV-?JJV-߿i+1 word campeauNNMbпCDK7JJK7A?VBP`"VBN~jtx? i-1 tag+i word VBG counterclaimsNNS㥛 ?NN㥛 i-1 tag+i word DT huggingVBGFxNNFx?i+2 word phoenixNNPS(\?NNSRQNNP ףp= i+1 word contractingJJ?NNi+1 word indicationJJ&1?RB&1ڿi word slippageVBPK7ANNK7A?i+1 word hypocrisyNNx&1JJx&1?i-1 tag+i word JJ markNNS&1NN&1?i-1 tag+i word VBG combatNN-?JJ-i word acceleratingVBGL7A`?NNL7A`尿i-2 word helmuthVBZQVB rh?VBP|?5^ѿi-1 tag+i word DT todayNNP!rh?NN!rhi+2 word strikesJJR7A`NN7A`? i+2 word six NNbX9ȶ?JJ~jt?NNPZd;NNPSK7A`?RB(\?VBN9vVBZGzNNSy&1?VBffffffֿVBD9v?i-1 tag+i word JJ savingsNNS9v?NN9vi-1 tag+i word NN nearJJJ +RB-INZd; @i-1 tag+i word VBG strategiesNNS\(\?RB\(\i-2 word believesVBZx&?WP+?POSx&JJDlNNPMbX?i+2 word individual RB= ףp=?VBPuVNNPx&1VBGVBDʡEVBNT㥛 JJ~jt?VBZK7?NNSbX9?NNp= ף?i-1 tag+i word POS increasedJJK7?VBD5^I ˿VBNn i word jonJJENNPE?i-1 tag+i word NN foesNNSK7A`?NNPK7A`i-1 tag+i word VBG lowerNNK7RBR}?5^I@RB ףp= ׿JJRx&1i-1 suffix eapRBS㥛?NNX9v?JJX9vINS㥛i-1 tag+i word RB opposedPDTX9vVBN}?5^I?JJKVBDbX9? i+1 word eggVBZjt޿POSjt?i-1 tag+i word -START- dataNNPS}?5^I?NNS!rhNNPʡE?i word seagramNNx&1NNPx&1?i-1 tag+i word RB supportVBZvVBx&1@NNSnNNףp= i word hitVBNbX9@JJ rhPDT(\ȿVBNZd;O@PRP rhWRBOnNN#~jVBDV-@PRP$ףp= VBPQ?RB{GzVBZKCDClNNSA`"NNP~jti word copyrightNNP"~j?MDVBK7NNMbX9?VBNrh|JJffffff?NNSQi+2 word coyoteVBP rh?PDT rh i word post VBsh|??FW"~jNNP;On@JJw/NNS(\NNPSQNNjt@VBDX9vVBN^I +i-1 word receivingNNL7A`?JJL7A` i pref1 MIN= ףp=WRB|?5^PDT333333?RBRQ뱿NNPS/$@UH9vVBP(\WDTtVRB1ZdNNPl-@VBD\(\WPS㥛JJSS@FWMb?PRPA`"?DTx&1?NN/$NNSrh|JJRS㥛?SYMtVVBGx&VBNS㥛VBZsh|?CDGzJJ= ףp=RBS$CӿVB= ףpPRP$~jt?RP/$i-1 tag+i word JJ dnaNNxNNPx?i-1 word electromagnetsVBP(\?JJ(\i-1 tag+i word JJ formsNNSS?NNSۿi word troubledJJ"@VBClVBN"~jNN?5^I VBDS㥛i-1 tag+i word -START- mostRBS rh?VBNClRBףp= NNP ףp= NN7A`JJSQ@ i-2 word areJJRԿDTnFWxƿRB= ףp=?NNPQ?EXh|?5INd;O@UHy&1?VBGv/ @VBNEȿJJS @RPZd;?NNSl?CD?5^I @VBDDlWDT\(\VB/$ RBRʡE@NNPS|?5^ٿJJSZd;߿VBPx&1VBZENNS㥛PDT"~jRBSZd;?i tag+i-2 tag NNP NNPS JJ ףp= ?NNPB`"۹NNPS?5^I VBG&1?VBPS㥫?VBN+NNSrh|?VBNbX9NNHzG?VBDMbX9i+1 word audiencesVBD+?VBZ+VBd;O?JJd;Oi+2 word detailsNNP|?5^RPʡE?VBDQ?CCy&1VBNQѿINʡEDTPn@i word treadmillsNNSQ?NNQi-1 word exteriorFWx&?NNPx&i-1 tag+i word JJ aerospaceJJʡE@NNʡEi-1 word identityRP'1ZRB'1Z?i-1 word fifthJJrh|NNPrh|? i+2 word mmgRBh|?5?EXh|?5 i word bancaRBClNNPCl? i+1 word freeDTmͿNNS1ZdӿNNP9v?NN5^I WDTl?RB%C?IN;On i+2 word case DT-VBx&1?JJS~jtRBSClۿJJvPOSZd;VBPx&1VBZZd;?NNPffffff?NNPSffffffVBGv?RBK7@NN-?i-1 tag+i word VBZ lateRBh|?5?JJh|?5i word surplusNNSffffffNNʡE@JJ&1i+2 word negotiatorJJx?NNxi-2 word revampNN5^I ?JJ5^I  i word rubberPDTʡENNV- @RBMVBDMbVBtV i word motionNNm?JJmi-1 suffix eftNNSQJJ+?NNI +?FW#~jCCɿVBG9vRP/$@VBN+VBMRBףp= INDlVBZp= ף?NNPMb?VBP/$?i-1 tag+i word NN throughINX9v@NNPOSA`"RB;OnVBD+i-1 tag+i word RB lighterJJRx&1?RBRx&1i-1 word strongestNN^I +JJ^I +?i-1 tag+i word , permittedVBD-?VBNI +JJ/$i-1 tag+i word NN chestVBZ}?5^INN}?5^I?i-2 word slideVBZ~jtVBN= ףp=VBD +?i-1 tag+i word IN filipinosNNPSl?NNPli+2 word automobileVBN%CVBD%C?i word arbitratorNNSI +NNI +?i-1 tag+i word NN deputyNNS|?5^NN|?5^?i+2 word applesIN{GzRBRMb?VBV-WDT{Gz?JJRQݿi-1 tag+i word DT bugsNNSCl@NNRBKi-1 tag+i word CC bredVBDnVBNn?i-1 word soccerNNSrh|?NNrh|i+2 word permissibleRP+IN+?i-1 tag+i word DT launderingVBGK7NNK7? i-1 word u.n.NNS\(\?NN\(\Ͽi-1 word deserveVBw/ԿJJRQ?NNw/?RBRQi-1 tag+i word IN homeNNPtV?NNX9v>@JJSClRBClJJZd;Oi-1 tag+i word JJ rolledVBNoʡ@JJˡEVBD%Ci-2 word angelesNNS'1Z?NN'1ZJJMNNPM?i word innovativeJJ/$?NN/$i-2 word toutedVBl?RBd;ONNv߿NNP`"οi-1 word mannerJJQ?NNQi-1 word guildersVBN333333?VBD333333i-2 word partisanRPFxINFx? i word purdueNNPK?JJKi+2 word pennantVBPZd;O?JJd;ONNPd;O?INRQVBx&i-1 tag+i word RB suspendedVBNQ?VBDQ i word dpcJJJ +NNPNbX9@NNSp= ף i word imagesNNSFx?NNFxi-1 tag+i word WDT quiteVBZ$CۿRB$C?i-1 tag+i word DT swissNNPnNNPSK7A`?VBNJJw/?i word refusedVBNJJnVBDX9v@i tag+i-2 tag ( .NNPx&?FWmNNPSʡE?JJ +?NN +οi-1 tag+i word DT toyJJR$CۿNN$C?i-2 word shipsVBZMNNSM?NNCl?JJCli-1 tag+i word WDT accountsVBZS?VBP +NNSB`"ѿi-1 suffix mciVBNQVBDQ?NNPClNNPSV-?NNS rhi-1 tag+i word JJ arrangesNNS}?5^IVBZ}?5^I?i-1 tag+i word NNS rollNNSÿVBZףp= VBPK7A?i-1 word defendantsVBNX9v?RBB`"?JJB`"VBDX9vi-1 tag+i word , tradingVBGZd;O?NNZd;Oi+1 word stoodVBGx&1NNOn?JJ)\(̿i-1 tag+i word NNS argueVBPQ?INQi-1 tag+i word , sentJJEVBDE?i-1 tag+i word PRP$ kneesNNSV-?NNV-i-1 tag+i word PRP$ desireNNSZd;NNsh|??JJ9vi-1 word perceptionsINM?WDTM i-2 word ancNNV-VBDDlVBNʡE?JJQ?INL7A`?NNSDl?VBDlRBT㥛 i+2 word keepsNNM?RBzGJJS㥫i word straightNNStVJJuV?NNGz VBNv/RBS@i-1 tag+i word DT flamboyantJJ$C?NN$Ci-1 tag+i word DT visitNNB`"?JJB`" i suffix danNNS/$NNx&1?RB~jtNNPx&1?i-1 tag+i word NNP companiesNNPSMb?NNPMbi+1 word chargeNNSnNNPp= ףNNPSp= ף?VBGMbX?NNjtJJROnVBN-ֿJJFx@i-1 tag+i word NN dailyRB r?NNS/$JJnٿNN r?i-1 tag+i word TO winVB/$?JJR/$i-1 suffix serVBP㥛 NNK7?JJX9vi-1 tag+i word NNP liesVBZ/$?NNS/$i tag+i-2 tag JJ NNPSNNP"~j?NN"~jJJV-INV-?i+1 word odditiesNNPm?JJmi-1 word wreckWDTMb?INMbi-1 tag+i word CC straussRB+NNP+?i word culpritsVBZ5^I ۿNNS+?NN;On i word blameJJ-ƿINQNNSQտVBh|?5@RBDlNNClVBP|?5^@i word balancedVBNQ뱿JJ'1Z?VBD&1i-1 tag+i word CC bringVBQ@VBG`"οNN +JJA`"i+2 word possibleVBZ(\ſNNS rh?NNPy&1?RBK7?NNпJJZd;IN(\? i suffix NEWDTrh|NNP&1JJw/@RBMCD^I +߿i-1 tag+i word IN nicaraguanJJm?NNPmݿ i-1 word ceoVBZMb?NNSSVBDzGi-1 tag+i word PRP$ topJJE@NNE i+1 word itemVBN?JJq= ףp?NN~jtCDx&?i-1 tag+i word CD votesVBZ +ֿNNS +?i-1 tag+i word -START- poundNNzG?NNPzG i suffix lor VBsh|?NNPS(\µNNd;O@VBD rhVBPMbX9JJX9vRBClNNS+NNP?5^I ?i+2 word adjusterJJ+?NN+i-1 tag+i word POS ailingVBG$C?JJ$C˿i+2 word moneyRP&1WDTxDT/$VBtV@PDTS?POSq= ףpVBGGzǿRBlNN+?VBDˡE?VBNL7A`?JJjt?VBZuVNNS1Zd?VBPQ?INI +NNP ףp= i-1 tag+i word NN awareNNS/$JJʡE@NNni+2 word breastJJ= ףp=NN= ףp=?i-1 tag+i word TO herPRPV-PRP$"~?VBSi+1 word predictableRBR#~j?RB#~ji-1 tag+i word -START- redJJ㥛 ?NNP㥛 i-2 word extensionsNN/$?JJ/$i-1 tag+i word NN coastNNQ?JJQ i word shipVB&1?NN&1ڿi-1 word reflectNNSx?RPx i word demand RPʡEVBZd;VBGV-JJjtVBN9vCD~jtVBPS?RB~jtؿNNSV-NNPʡENNV-2@i word messingerNNPSHzGѿNNPHzG?i-2 word ministriesVBjtVBPjt?i-1 word reassignedJJSv/?RBSv/i-1 tag+i word NNS siftVBZMb`VBK7A?NNx&1 i+1 word twoVBoʡ?VBG~jt?VBPn?PRPʡE?NNSSNNPbX9RBSV-VBNCl?JJ/$޿DTI +PRP$ʡEJJS rؿCDS㥛@VBZ rhѿNNPSffffff?RBX9v?NNGzVBDS?INCli-1 tag+i word DT smartestRBSSJJSS?i-1 tag+i word NN towardsIN%C?VBZ(\ſNNSSi-1 tag+i word JJ koreansNNPSFx?NNPFxi-1 tag+i word NNS retiredVBNI +VBDI +?i-1 tag+i word : muchRB|?5^?JJ|?5^ i suffix extVBPx&1RBuV?INZd;@JJRv/NNPx&1JJ$@VBDX9vFW^I +VBNX9v߿CD+VBZ/$NNSNbX9NNPSB`"NN5^I ˿i+1 word ratioWDTJJJ +NN#~jܿNNS}?5^I?DT?i word countrymenNNSK?NNKi-1 tag+i word NNPS heldVBNK7A`?VBDK7A`i-1 tag+i word VBD beatriceNNDl@JJ'1ZܿNNP= ףp=i-1 tag+i word IN landmarkNNDl?JJR/$JJX9vi-1 tag+i word NNS expressVBd;O?VBPd;Oi-1 tag+i word POS controllingVBGMbPJJMbP?i+2 word transitionVBNMbX?VBDMbXi-1 tag+i word DT modernJJ/$?NN/$NNP5^I ?i word presidentsNNPSjt?NNS(\?NNPzGVBZv/Ϳi-1 tag+i word NNS contributeVB"~jVBP"~j?i+1 word belongingsJJףp= ?NNףp= i-1 tag+i word `` terrorismJJMbȿNNMb?i-1 tag+i word VBN palestinianJJ\(\?NNP\(\߿i-1 tag+i word NN repairsNNSq= ףp?VBN-NNMbX9i-1 tag+i word VB ultimatelyRBv/?JJv/i-1 tag+i word DT bootsNNSK7ANNPK7A?i tag+i-2 tag NN WRBVBDGz?VBNGzVBPtVJJMbX?VBZ~jt?NNS~jtVBtV?NNMbX i word newerNNSx&1JJRE?JJoʡ i word witVB%CNN%C?i-1 tag+i word JJ obligationNN}?5^I?JJ9vNNPx!i-1 tag+i word -START- laboratoryNNV-?JJbX9NNP ri-1 suffix oseWDTl?NNS㥛 @VBP}?5^IDT{GzVBSNNPS㥛 VBGS㥛?JJV-?PDT1Zd?RBR5^I ?VBNMbX9ĿVBZ(\JJR|?5^?NNHzGVBD ףp= RBK7A INB`"?RPK7ɿNNP!rh? i word waitVBp= ף?VBP/$?JJp= ףWP/$i-1 tag+i word NNS outIN?5^I RP|?5^ @RB rhi word photofinishingVBG"~NN"~?i-1 tag+i word JJ checkNNlVBl?i word cruiserVBZ%CNN%C?i-2 word grownJJX9v?RBuVNN{GzVBNv׿i+1 suffix lvoDTClNNPCl? i word mobileJJ%C @NNx&1FW7A`ڿi word evolvingVBGrh|?JJrh|i-2 word decideNNSJJ7A`?RB7A`VBS? i word ropeVBPsh|?ſNNsh|??i tag+i-2 tag VBZ VBPJJjtVBNRBNbX9?IN?DT/$VB ףp= ?VBGsh|?? i word sniperNNS㥛NNPS㥛?i word enjoyableJJ+?VBN+i+1 suffix wns JJ(\?UHʡEVBZx&1NNP?5^I ڿNNffffff?VBDJ +FW-VBP;OnRBK@NNSV-i-2 word outsellsCDX9v?VBDX9vi+2 word encourageVBGˡENNˡE?i-1 tag+i word PRP ribsNNSB`"?NNB`"i-1 tag+i word NNP insuredJJv?NNVBD rhi-2 word bidderJJR~jt?RBR~jtÿi word substitutingVBG'1Z?NNDlJJ/$޿i-1 word effectivelyVB'1Z?VBDx&1?RBRVBNףp= ?VBP333333?JJ?5^I IN'1ZVBZX9v?i+1 word muddledVBV-?NNPV-i-1 tag+i word DT pollutedVBN/$JJ/$?i-1 tag+i word NNS knownVBPh|?5VBNOn?JJV- i word fledVBN{Gz?JJq= ףpݿVBDv/?VBPh|?5i+2 word massiveVBPV-INzGVBZzG?NNPK7A`VB/$VBD/$@i word attacksNNSx?NN`"RB +i-1 tag+i word CC nearVBZ$CJJGzοRB ףp= ǿINʡE?i tag+i-2 tag VBZ ) VBGEԸ?NNVBNKPRP-JJDl @NNSbX9PRP$-?RBy&1INX9v?i word democratNN333333NNP333333?i word concernedRBxJJGz@NN-VBDq= ףpVBNNbX9?VBPZd;i-1 tag+i word CC toldVBNbX9VBDNbX9?i word excusesNNPSq= ףp?NNSʡENN^I +i+2 word mileageJJRd;O?RBRd;Oοi-1 tag+i word NNPS laggingVBGQ?NNQi word firemanNN;On@NNP;Oni-2 word scientistFW rhPRP9vINʡE?NNP(\пi-1 tag+i word NN reprieveVBP\(\ϿNNSMbNNNbX9?i-1 word viennaVBP-NNS+?NNZd;VBZB`"?i-1 tag+i word JJS halfPDTMb?NNGzJJZd;Oݿi-1 tag+i word NN wonderedJJT㥛 VBDT㥛 ?i-1 tag+i word NN filipinosNNPSZd;NNSZd;?i+2 word oasisRBʡEJJʡE?i-2 word contendedJJrh|?NNrh|i-1 tag+i word FW abuseNNK?RBK i word sixthNNʡE RBK7?NNPMb?JJRClJJ@i-1 tag+i word NN feeNNq= ףp?RBq= ףpi-2 word regardVBxNNSx?RBZd;INZd;@i word immigrationVB/$NN$C?NNPK?i-1 tag+i word VBZ involvedVBNDl?JJV-VBDDli-1 tag+i word NNP doorNN333333?VBD333333i+1 word reputationJJL7A`?VBNL7A`i+1 word drainingRB㥛 ?JJ㥛 i-1 word skisVBP%C?JJOnNN+ǿVBDMbi-2 word rejuvenateJJX9v?NNPX9v׿ i suffix 92JJNNvCDK7?i-2 word permitsJJRGzֿNNGz? i suffix -toJJzG?NNh|?5NNPQi+1 word deviceNN-ƿJJ-?i-2 word applyPRP$rh|?CCʡEPDTQ?VB/$JJrh|DTjt?NNS/$? i word joshNNx&1NNPx&1?i-1 tag+i word JJ foreignNNS+NNP+?i-1 tag+i word VBP disgustedVBNq= ףp?JJq= ףpݿi-1 tag+i word RB troublingJJGz?NNGzi+1 word easilyIN$C˿VBZ;OnDTMbпNNS;On?RP/$?RBClWDTK7A`?JJ/$i+2 word deterioratingVBPtV?RBtVi+1 word reasonableNN/$VBDrh|?VBNrh|VBPjt?NNPjtVBG/$? i suffix carNN +Y@JJQFW-i word limitationsNNPSjt?NNSq= ףp?VBNMNNX9vNNP +i-1 word releasedNN?5^I ?INn?JJ/$?RBX9vi-1 word confrontVBN|?5^JJ|?5^?i-1 tag+i word CC noDTCl @JJB`"RBˡEi-1 tag+i word TO setVBoʡ?VBNoʡ i-1 tag+i word -START- concernedJJFx?VBNFxi-1 suffix big NNPSMVBGK7RBK7A`NNPJ +NNSGz@JJMNNm@CDv/?VBP~jtWDTIN?i-1 tag+i word JJ windfallsNNSZd;?JJZd; i+1 word golfVBN rhVBP{Gz?JJ rh?VBG?NNJ +ɿVBD/$i+2 word existDTjtNN|?5^VBDGzVBNS?VBPPnؿJJS㥛?IN333333? i+2 word rentVBNmJJbX9NNSMbX9?WRB%CRBbX9?NNq= ףpVBDm@i-1 tag+i word NNP valuedVBNw/?VBDw/i-2 word specifyNNzG@CDzGi+1 word panicJJQ?NNQտi-1 word using JJRffffff?RPHzG?NNPx&1?NNK7A`VBD7A`IN5^I ?JJoʡ?NNSx&VBG rh?RBX9vVBNCl?RBRffffffi-2 word strategicNNvJJx?NNPn?i word forfeitureVBP&1NNjt@RBB`"JJjti-1 tag+i word DT persecutedVBNZd;?JJZd;߿ i suffix tmaNNPS-NNP-? i word 'tilVBZQINQ?i+1 word usinesNNP|?5^?FWZd;OVBZCl i word podVBP(\NN(\?i-2 word clonedVB ףp= JJ ףp= ? i word dockVBV-NNV-@i word fundingVBP{GzVBG5^I NNlq@JJK7ANNPq= ףp?i-1 tag+i word JJ reportsVBZd;ONNSd;O?i+2 word jailedVBPrh|NNrh|?i-1 tag+i word POS carltonsNNPMbNNPSMb? i suffix n-2NNn?JJni word campaignsNNS(\@NN(\ i word agreedVBPrh|RB-INy&1VBZ%CVBMbX9NN rVBDHzG'@VBNtV@i-2 word significanceVBG^I +?JJ^I +i-1 tag+i word RB slashedVBN|?5^VBD|?5^?i word estimateVBENNh|?@VBPnJJS㥛NNSʡENNPB`"?i-2 word warsawNN(\?VB/$ÿVBP333333VBGJ +? i word trainsVBZ+PRP$+NNPS}?5^IԿNNSQ@ i word bottleNNQ?JJQi-1 word corryVBffffffVBPffffff?VBGffffff?NNffffffNNPܿi-1 tag+i word VB telltaleJJ?NNSi word recordedJJy&1?NNP+VBNffffff@NNQVBDsh|?i+2 word telephoneVBD+?VBN+JJMbX9@NNPzG?VBMbX9NNPSzGi-1 tag+i word VBD citedVBNuV?JJuVi-2 word availabilityJJZd;?NNZd;i+1 word debtsVBGFxNNNbX9?JJ!rhԿi-1 tag+i word VBG stapleJJK7A?NNK7Ai+2 word restrictions RPv/RB$CVBZuV?INʡE@VBGbX9?NNP/$NNSuVJJR/$?JJv/i+1 suffix mpeNNPS;OnNNP;On?"i-1 tag+i word POS recommendationsNNSRQ?NNRQi-1 tag+i word -START- gmacNN rhJJ~jtIN~jtNNP7A`?i-1 tag+i word CD newlyRBX9v?JJX9vi+2 word seedsNNףp= JJʡEDTV-?RBjt?i-1 word schaferNNPS/$?NNP/$i-1 tag+i word PRP sendsVBZK?VBDKi word completedJJ/$VBD7A`?VBNFx@i-1 tag+i word VBG issuingNN~jtVBGNbX9?JJRQi word commercialsVBZGzNNSn?NNCli-1 tag+i word VBN bothCCp= ףDTp= ף?i-2 word replicatedJJ'1Z?NN'1Zi+1 word confidenceVBGK?VBDX9vVBNGz?RBRS㥛JJ{GzJJRS㥛?NNPx&1?i-1 tag+i word POS gamblingVBGbX9?NNbX9i+2 word mediaNN{Gz?JJT㥛 NNSffffff i-2 word niceJJd;O?NNd;Oi-1 tag+i word NN languishVBZv/VBtV?JJ|?5^NN= ףp=ڿi-2 word items VBDx?VBNHzGRB +VBDl?RP&1?JJS㥛ܿNNS1Zd?NN rINK7A`VBZv/i-1 tag+i word VB lasciviouslyRBX9v?NNX9vi-1 tag+i word DT mintNNMb?JJMbi-1 tag+i word IN retailingNNn?VBGni+1 word probingVBGNbX9JJNbX9? i word usiNNPCl?NNSK7RBZd;OJJ)\(̿i word materialNNSNNX9@JJnVBD\(\NNPʡEi-2 word classesNNSClJJ-NNPA`"VBZRQ?NNPSA`"?i-1 tag+i word DT clipboardNN&1?RB&1i-1 tag+i word DT cairoNN+NNP+?i word spaghettiNNSffffff @NN"~jJJV-i-1 tag+i word DT allyNN-?RB-i-1 tag+i word RB placedVBNp= ף?JJS㥛VBDMbXѿi-1 tag+i word NN noRBCl@DTCli-1 tag+i word JJ exclusivityNNoʡ?JJoʡտi-2 word workweekRB{GzINS@RPDlJJ= ףp=?i+1 suffix umbJJ1ZdNN333333RBZd;O?i-1 word record JJ/$VBN(\?INK7A`RBX9vNNSZd;OVBʡE?NNh|?5 @CDZd;?VBPv/i-1 tag+i word DT filesNNS9v?NN9vڿi+2 word eventuallyJJ7A`WDT%CRB}?5^I?IN%C?NNSn?NNP7A`?NNPSnٿRP}?5^Ii word wellcomeNN"~jNNP"~j?i-1 word increase RBX9vINI +?VB%CVBGx&1?JJDlNNSv?NNjt@VBNK7VBZCl?i-1 word afternoonsVBGʡE?NNʡEi+2 word postponementVBG(\?NN(\ҿi-1 tag+i word NNP meadowsVBZMbNNPMb? i word ldpNNP9v?NN9vڿi-1 tag+i word WDT buildsVBZI +?RBI +i-1 tag+i word DT approximatelyRB1Zd?JJ1Zdӿi-2 word flamboyantNNzG?VBDzGi word neighboursNNSjt?JJGzNNMbX9ܿi-2 word timelyVBNJ +?VBDJ + i word budsNNS}?5^I?NN}?5^Iܿi-1 tag+i word PRP showVBPl?VBDli-1 tag+i word JJ principlesNNSQ?NNQi-1 tag+i word MD costRB rhVB rh?i-1 word formulaVBN9v?VBD9v i suffix got NNPSoʡRP+VBNx&1@VBZʡERBNNSq= ףpVBKJJNNRQ VBDzG$@VBP/$i-2 word citingNNCl˿JJPnVBGGzVBNd;O?i-1 tag+i word RB separateJJV-VBPV-?i-2 word forgeJJT㥛 ?NNSS㥛?NNX9vi-1 word laborJJMbX9VBZzGNNSZd;?NNPMb?NNPSMbNN!rhܿVBPQ? i-2 word dueJJ/$?VB?5^I RBvNNKVBDCl?VBNrh|VBPx&?i-1 tag+i word POS skyNNPSw/NNL7A`NNPzG?i-1 word legalVBGNN@FWClJJ333333NNS)\(?NNP^I +?NNPS rhi-1 word noticiasNN= ףp=FW= ףp=?i+1 word specifiedVBZ/$VBCl?RBQi+1 word judgeNNPSZd;ORBQտNNS㥫?JJrh|INjt?DTtV?NNPV-? i suffix IsVBD+VBNSRB(\NNPB`" VBZ(\u@i word therapeuticJJ-?NN-&i-1 tag+i word `` counterrevolutionaryJJV-?NNV-i word newcomerNNn?NNPni-1 tag+i word DT bankruptcyNNPSrh|NNPrh|?i-1 word jurisprudence''}?5^I?POS}?5^Ii+1 word disappointingRB@JJi+1 word usersVBZ;On?DT;OnVBGʡE?NNS㥛?JJx&1i-1 tag+i word VBN togetherRBRL7A`RBL7A`?i word criteriaVBZB`"NNS%C@VBN㥛 NNl i suffix imaDTv߿VBPKWRBNNClNNPh|?5@i-2 word carterJJ(\RBRJ +RB r?i-1 tag+i word IN contractingVBG)\(NN)\(?i+1 suffix asoJJZd;NNPZd;?i word assignsVBZS?VBDSi-1 tag+i word , includeVBP|?5^?JJ|?5^i-1 word sidesVBZd;OVBPHzG@NNT㥛 INx&1?VBDCli-2 word superficialNNS1Zd?JJ1Zdi word trinityNNy&1?NNPy&1i-1 tag+i word VBG congressmenNNSy&1?NNPy&1i-1 tag+i word IN colonNN= ףp=?JJ= ףp= i word marginRPMbNNSJJV-?NNX9v@NNPCli-2 word retrainingINrh|?VBDrh|i+2 word reprintedNN +NNP +?i-1 tag+i word NN layoutNNT㥛 ?VBDT㥛 i+2 word threatensNNzG?JJzG i+1 word taleJJ5^I ?NNuVVBGMbp?i+2 word representingJJRbX9޿VBN9vJJK7?INbX9?DT`"?RB`"NNZd;O߿i-2 word jewboyVBZB`"NNPSL7A`?NNSV-i+2 word policesNN{Gz?JJ{Gzi-1 tag+i word DT shirkingVBGx&1?NNx&1i word margarineNN/$?JJ/$ i suffix LagNN(\@RB{GzNNPGzi-2 word hearingsVBG&1?NN&1 i word freerVBJJRˡE @NN&1JJ- i suffix is.JJI +NNPI +?i+1 word impressiveRBR rh?JJX9vJJR rhRB|?5^?RBSQ i+1 word haltVBGMbNNbX9?JJK7A`?i-1 suffix nixNNPSZd;O?VBG rh?NN rhJJ{GzNNPS?i-1 tag+i word NN helpedVBN5^I JJQVBD rh?i+2 word spokenJJʡENNʡE?i+1 word roilingRBR-RBV-?JJ}?5^Ii word steppingVBGS㥛JJQ?NN7A`i-1 tag+i word NNP concerningVBGy&1?NNy&1i-1 tag+i word VBG gapNNn?RBni+1 word upwardVBZy&1?VBy&1VBN|?5^?JJ|?5^ʿi+1 word decideVBOnRBOn?i-2 word jacketVBZmJJ/$?NNPnؿi-1 tag+i word VB resultedVBN/$?VBD/$ i+1 word lawnJJoʡ?NNoʡi-2 word wrinkleWDT9vWP9v?i-1 tag+i word RB reactedVBNT㥛 ?JJMbXVBDI +?i+1 word cooperativesVBZ~jt?NNS"~JJ?NNEпVBG i word troopsNN%CNNS%C?i-1 word dynamicsVBNMVBDM?i-1 tag+i word JJ springVBGxNN(\@NNPjti-1 tag+i word JJ dealingsNNSףp= ?NNףp= i-1 tag+i word CC michelangelosNNPSS?NNPSi word institutionsNNPS(\?NNSZd;O?NNPClۿi-1 tag+i word -START- at&tVBzGRB)\(NN~jt?NNPK7A? i-2 tag IN!NNMb?RBR rh EXx&1@PRP$)\(?DT1Zd?RBClNNS/$?VBD\(\߿$?JJSZd;?VBZʡEFW9v?VBlUHʡE?WPFxNNP/$?JJR1ZdۿPOSh|?5?PDTx&?CC{Gz?JJv/?PRPzGڿCD9v?IN+MDVBPV-?VBNˡE''NbX9WDTS?RPsh|?RBS~jtNNPS㥛 VBGOn?i-1 tag+i word NNS listedVBNCl?VBDCli+1 suffix ondJJK7A`?CD rh?VBZZd;O?VBDnڿRBSxVBN;On?WRBw/NNPq= ףpVBA`"?NNSPRPx&1INQ?PRP$x&1?NNSsh|?JJRzG?RPffffff?RBZd;ϿDTi-1 tag+i word -START- costaVBJ +JJp= ףNNPd;O@i-1 word competitorVBZQPOSQ?i-1 word indicatedDT +?JJZd;OIN}?5^IԿi+1 word worksNNPSx&NNCl?INmWDTm@JJClWP+NNP(\?i-1 tag+i word VBZ incorporatedVBN^I +?VBD^I +i+2 word tryingPRP$bX9PRPbX9?JJB`"?VBNB`"ٿi-1 suffix uck VBDFxRBRjtĿJJB`"@RP/$?NN= ףp=NNSK߿VBNFx?IN/$VBG%CVBZ{Gz?i+1 word combiningVBNbX9?NNNbX9i-1 word chemexNNPS"~jNNP"~j?i-1 tag+i word IN swapsNNSuV?JJ$CNN(\ݿi-1 word lapsedNNGzֿNNPGz?i tag+i-2 tag TO (VB;On?JJ;Oni-2 word viacomJJRQ?IN/$NNSlNNP+?NNPS&1ҿRB/$?NNRQȿi-1 tag+i word -START- profitNNSףp= NNd;O@NNP$C i word travelJJSNNSffffffNNPMbؿNNbX9?VBD9vVBP(\@ i suffix rshJJK7@NNI +ֿVBDX9vVBNffffffVBPh|?5RBClɿ i+1 word tuneVB+JJrh|?NNMb?i-1 tag+i word VB castingVBGK7A`NNK7A`?i+1 word ceramicVBZX9vVBPX9v? i word gangJJZd;VBP/$NNSoʡNNʡE@i+1 word provigoINl?WDTl i word aboundVBD'1ZVBPT㥛 @RBGzNNx&IN-i-1 tag+i word PRP$ playingVBGL7A`ؿJJZd;?NNSi tag+i-2 tag NNP )VBD\(\NNPSsh|?VBN\(\?NNPsh|?? i word retailVBPOnÿJJh|?'@VBZX9v޿VBGz NNx&1VBDMVBNClCD%Ci-1 tag+i word DT advisoryJJE?NNEi-1 tag+i word VBZ nextINSJJI +JJRv/RBq= ףp?i-2 word interpretsJJ+?VBP+i+2 word archrivalJJR/$NNP/$?i+2 word morrisVBV-?VBP rRBbX9i-1 tag+i word DT crossVBNGzNNGz?i word arabianJJV-NNPV-?i word harsherDTZd;JJRZd;?i-1 word getting NNS#~j?VB㥛 RPS VBDB`"۹?VBNrh|?RBV-?JJR?JJn?NN9vPDTS㥛?RBRQ?IN|?5^? i+2 word daveJJR%CԿNN%C?i-2 word promotionJJZd;ONN\(\?VBNZd;O?RB\(\VBZMbؿNNSMb?i-1 tag+i word VB dueRB9v@JJ%CNN rh i word oughtRB%CMD?5^I!@JJ~jtNNV-VBDzGVBPV-PRP+i-1 word representingRBRGz?JJRGzi+2 word tendedNNPZd;O?NNZd;Oi-1 word prosecutingNNsh|?@JJsh|?i-1 tag+i word IN newsprintNNSClNN rh?JJx&i-1 tag+i word JJ retirementNNClٿNNPCl? i word focusNNZd;O?VBD5^I ˿CDV-VBPZd;O?JJmNNSV-VBjt@NNPSףp= i+2 word deadlinePDTrh|?JJrh| i-2 word iCClRBS}?5^I?JJRJ +VBNMҿPRPQ?VBG|?5^?DTw/?RPx&1VBZ$CRBK7A?INy&1?NNSQNNP(\VBD?JJS}?5^INNV-?JJGzֿRBR}?5^I?VBP"~j?VB?5^I i-1 tag+i word , producedVBDHzG?VBNHzGi-1 tag+i word NNPS prescribedVBNCl?VBDCl i word walletVB|?5^NN|?5^?i-1 tag+i word FW laNNPX9v?FWX9v޿i-1 tag+i word DT potentJJzG?NNzGҿ i-1 word eliVBZV-RB ףp= NNPrh|?i-1 tag+i word JJ uncertaintiesNNS|?5^?NN|?5^i+1 suffix rdsJJ^I +@VBDS㥛?RBRS?VB`"?NNh|?5 @PDT^I +PRP$V-?NNPA`"VBGʡE VBNMbX?VBPZd;?PRPV-ǿRBNbX9RPEDTZd;O?i word redistrictingVBGZd;ONN|?5^?JJ&1i-1 tag+i word PRP$ prenticeNNPSxNNPx?i+2 word contractNNHzG?VBD rh?NNS+?VBʡE?VBGQ?JJ rhVBZףp= NNPS rh?VBNjtVBP)\(?RBlDTp= ף?PRP$ʡEPRPʡE?NNPZd;?i+2 word indianINPnDTPn?RBJ +?JJJ + i+2 word loss RBX9vJJRv?VBN'1ZܿVBZOnINClNNZd;VBD'1Z?FWI +?JJx? i-2 word fla.FWQJJv/NN+?NNP"~? i suffix UBSNNPS㥛NNSm?NN ףp= i-1 tag+i word VB naTOoʡ?JJoʡi-1 word lightingRBV-RPV-?i-1 word productionNNSm?VBG+NNE?RBQ?INxֿVBZmi-1 tag+i word IN offeringVBG+?NN+ i suffix kuaNN(\@NNP(\i-2 word hamiltonJJ rh?NNP rh i word asylumJJ`"NNS!rhNNʡE?i-1 word includes JJMbINS㥛?NNK7A`?CCZd;O?RBREJJRE?PRPSRBMbPOS +DTZd;ONNSS?NNP{Gzt?i+1 word mutualNNMb?JJ/$?RBS㥛IN?5^I ?NNPy&1i+1 word induceVB+ÿRB+? i suffix SCOJJ+FW+VB7A`NNPMb @ i suffix aftVBN;OnҿRB(\VBZ-NNS;On?NNP ףp= ׿JJA`"NN|?5^@VBD(\ i word chunkNN7A`?JJ7A`i-1 tag+i word NNP notesVBZ{GzܿNNPS%CNNS`"@NNP~jt i word transNNPS~jtNNSx&VBN-NNP+ @ i suffix kemVBV-?RPxJJOnNN|?5^ڿRBGzֿNNPbX9?i-1 word seizeRP5^I ?RB5^I i-1 suffix tcyNNrh|NNPrh|?i-1 tag+i word , upsetVBMbX9ԿVBNoʡ@JJjt i pref1 INNPGz.-@RB(\LSjtJJ#~jNNSMbXNNPSCl@VBD+VBZNbX9@CCx&PRP$1ZdJJSSVBNףp= VBPJ +INHzG?VBK VBGQNNZd;OFWjtܿDTX9vi-1 word missedRBJ +?NNJ +i-1 word cleanupNNI +?JJI +i word patronizingVBGPn?JJPni+2 word hittingRBSV-?VBNV-ǿi word indicatedVBNRQJJ"~jVBD$C@i-1 tag+i word VBG sideJJ?NNܿ i word reliveVBP}?5^I?JJ}?5^Ii+1 suffix eck INp= ףNN\(\JJS9vVBP"~jRBDl?DTFx?NNPX9v?JJ9vRBSX9vVBN#~jUHp= ף?i-1 tag+i word `` evergladesNNS;On?NNP;Onڿi-1 tag+i word JJS poisonJJʡE?NNʡEݿi word pistilsNNSV-?NNV-i-1 tag+i word JJ raggedVBDX9vJJX9v?i-1 tag+i word IN intradayJJ7A`?NN7A`ҿi-1 tag+i word , rudimentaryJJ333333?NN333333i-1 tag+i word PRP$ postJJV-VBNʡEͿNNS(\NNFx?i-1 tag+i word CC becomesVBZ/$?NNS/$ i word felonyNNS)\(NNFx@JJbX9i-1 tag+i word NNP jeffersonNNnNNPn?i-2 word ended PRP$7A`RB\(\׿NN(\RBRQ @JJRjtVBNJJ@IN5^I NNS7A`i+2 word insistVB ףp= ?NNPSCl?NNMbVBPZd;JJCl?NNS/$ƿNNPx&1ȿ i suffix inaNNPS ףp= NNJJ5^I NNPSc@i-1 tag+i word PRP$ standardNNMb?JJMbi-2 word immediateNNX9v?JJX9vi+2 word proposalVBD|?5^?PDTx&1VBNERB~jtӿINFx?DT$C?RBRxJJp= ףNN333333ӿVBGS?VBP5^I JJRx?NNSNNPI +i word grammarNNSZd;ONNCl@JJx&i-1 word intellectualsVBS㥛VBPX9v@JJ'1ZVBD&1ҿi-1 tag+i word PRP$ holdingVBG!rhܿNNʡE?JJq= ףpi-1 tag+i word JJ consultingVBGq= ףpJJQ?NN ףp= ?i-1 word country RPCl?NNHzGVBDʡE@VBNffffffPOS~jtVBP7A`¿WDTx&?VBB`"@VBZq= ףp?NNSnIN9vRBSi+2 word brethrenNNK7A`JJRK7A`?i-1 tag+i word NNP zealandNN^I +NNP^I +?i+2 word picketRBffffffINffffff?i word subsidiariesVBZjtNNSX9v@NNffffffi+2 word berriesJJGz?NNGzVBNK߿i-1 tag+i word VBN limitedJJV-?VBNV-ݿi+1 word areas NNX9vVBNX9v?VBףp= ۿRB\(\RBS/$JJS/$?CDoʡJJ +?DT\(\?NNPK?VBGx&?i-2 word conn.NNPSVBZQNNS㥛 NN)\(?JJS?i-1 tag+i word JJ fancyJJCl?NNCli+1 word republicansVBN-?JJ-i-1 tag+i word , proposedVBNjtԿJJ= ףp=?VBDMbؿi-1 tag+i word JJ buildingsNNZd;ONNSZd;O?i-1 tag+i word JJ shootsNNS?NN i word meatVB#~jܿDT/$ۿNN rh@NNP#~ji-2 word centuriesVBG1Zd?NN1Zdi+1 word drawbackJJSˡE?NNˡEi-1 tag+i word VBG trackRBDlNNDl?i-1 tag+i word , importsVBZ|?5^NNS|?5^?i-2 word extrusionVBZw/?NNSw/i-1 tag+i word -START- atlanticRBOnNNPOn?i-1 tag+i word IN employerNNZd;O?JJMbFW}?5^I̿i-1 word predictJJoʡ?NNoʡݿINFxDTFx?i-2 word varnellNNPS?NNPi-1 word alternativesVBGq= ףp?NNq= ףpi word sciencesNNPS r @NNSHzG?VBNHzGNNP r i+1 word loverJJM?NNMڿi+2 word deferenceVBZ#~jܿNNS#~j?i-1 tag+i word IN distressedVBN|?5^JJ|?5^?i tag+i-2 tag NN ,VBx&?NNHzG?RBRI +VBGx&1VBZrh| JJR +RPDl?VBDn?POS+?JJx&1?IN+RBDl?NNSB`" @WDT?VBNT㥛 ؿCD rhٿVBPMDTuVNNP(\@i-2 word marcosDTMbNNSrh|?NNPSrh|VBNx&?RBx&INMb?i-2 word potatoesNNPS?5^I NN?5^I ?i-1 tag+i word -START- quantumNN~jtNNP~jt?i word dresdnerNN&1NNP&1?i-2 word advancingVBDףp= ?JJףp= i+2 word employeeNNV-?JJV-VBZ(\?NNS(\i+1 word aerospaceJJ!rhNNP!rh?i-1 word desperateVBFxNNFx?i-1 tag+i word DT presidingVBGh|?5?NNh|?5i-1 word longer FW1ZdۿJJMbX9?VBZ rh@NNSK7AVB&1?RB +NN(\VBPX9v?PRPvi tag+i-2 tag ( NNP NNPtV?NNPS-NNKVBPGz@JJy&1|VB ףp= VBDnVBNMbX9@NNS~jtпi-1 word readilyVBrh|?VBDCl?VBNClVBPrh|INMVBZM?i word picturesNNPSףp= ?NNSףp= ?JJ+NNPv/i-1 tag+i word DT venezuelanJJ$C@NNP$Ci-1 tag+i word NN enNNtVINtV?i-1 tag+i word '' laterRBRʡERBʡE? i suffix eosVB&1ҿNNSMb?NNMbNNP&1?i-1 tag+i word IN askaNNPS'1ZܿNNP'1Z?i-1 tag+i word PRP$ prescribedJJE?NNEi-1 tag+i word CC roofingVBGJ +NNJ +?i word imaginableVBPؿJJ?i+1 suffix btsNNS9vVB= ףp=VBGFxNNNbX9?VBP= ףp=?JJ!rhԿVBZ9v?i-1 word seemsVBNV-?VBP r?RBL7A`VBZOnVB+JJ"~?NNʡE?VBD㥛 i-1 word weaponsVBNNN? i word leaseVB ףp= ?VBP7A`?NNFxٿJJ(\VBD333333i-1 tag+i word CD cerealNN~jt?JJ~jti+1 word cigarettesVBA`"?JJA`"i word freneticRBRMbX9JJZd;?VBQi-1 tag+i word `` inchVBl?NNli+1 word inventionsJJ\(\?NNP\(\i word confusedVBNRQJJK7A?VBDx&1i word understandsJJZd;VBZZd;? i word vetoNNPX9vVBJ +?NNm@VBN5^I JJʡENNS;On i word luckNNSSۿVBN(\NNZd;?i-1 tag+i word RB mellowJJ+?NN+i-1 word flickNN rh?NNP rhi tag+i-2 tag VBP VBNN#~j?RBܿJJ#~jܿi-1 word mentorNNPSS@NNPSi-1 tag+i word -START- thoughINNbX9?DTClNNPh|?5@JJrh|NNClRBV-i+1 word balanceRP?5^I NNK7AJJR(\?JJK7A?IN?5^I ?VBZ(\i-1 tag+i word NN voteVBPGz׿NNGz?i-1 tag+i word JJ focusNNV-?CDV- i suffix DIONNNbX9?JJ5^I NNPA`"i-1 word negativeNNSK7JJ!rh?NN}?5^Ii+2 word streptokinaseJJX9v?NNX9vi-1 tag+i word VB throwingVBGCl?VBNCli+2 word realizeRP333333VBNOnVBPxJJOn?NNS333333?VBx@i word insiderFWjtܿJJR7A`JJOnۿNNPV-׿VBlNNx&1@i-1 tag+i word NNS spanVBP$C?VBNuVݿJJ+i-1 word backed NNPSn?RBSK7RBS㥛?INxNNPnRP333333?NNCl?JJSK7?VBGCl i word francNNV-?JJV-i+2 word hungaryNNS?5^I ?NNP?5^I i-1 tag+i word NNS thickJJ= ףp=?NN= ףp=i-1 word erodeRBS㥛JJRx&RBRd;O@i+2 word alyceCC{GzRBKIN~jt?i-1 tag+i word NN wildcatNNPn?JJPni-1 tag+i word CC s&pNNPOn?NNh|?5?JJJ +i-1 tag+i word WRB jonJJENNPE?i-1 tag+i word DT spankingJJ!rh?VBG!rhi-1 tag+i word -START- tradersNNP$CNNPSK7ANNSCl?i-1 tag+i word JJ whileNNQ?JJQ i+1 word juneJJjtINM?VBNy&1RB~jtVBDy&1? i word towerNNSy&1NNNbX9?NNP"~j?VBZl i word favorsVBDZd;OVBZCl@NNS(\i+2 word perpetratedVBN|?5^JJQ?VBD;On i+1 word --VBD rRBRV-VBNMbX9?DTʡE@NNSJ +@VBG/$ VBP(\?RPOnINK7A`VBZףp= NNQ@JJZd;OJJSjt?NNPM?RB/$?JJRX9v?CD+@NNPSX9v?FW/$?RBStVοVB(\ҿi word centennialNN rh@JJ rhi+1 suffix mezVBN+NNP+?i-2 word events WP#~j?RPV-RBRQ?VBNffffff?VBPQ?JJQDTuV@NNPQ?VBQVBD^I +INWDT#~jԿ i+2 word yesUH5^I ?JJ;On@VBvVBGZd;NNvVBDh|?5?VBNh|?5 i-2 word someNNSˡE@RPˡE?JJRtVοVBZ%C VBMbX9?VBGd;ONNzGWDTJJ +@DTv@NNPSS?RBrh|VBD`"?VBNV-@VBP!rh?RBR/$ٿINCl?NNP~jti word brendanNNx&1пNNPx&1?i-1 tag+i word VBZ becauseVBjtRBbX9ȶ?INsh|?? i-2 word man RBMb?NNjtVBZ|?5^@NNP rhNNPSB`"RPV-?NNSFxUH rh?JJK7? i word bitsVBZ(\ſNNSx&1?NNli-1 tag+i word VBG suchPDTd;OJJd;O?i-2 word technicalVBsh|?VBN~jtÿJJsh|??VBD~jt?i word polyconomicsNNPS(\NNP(\?i-1 tag+i word DT disorderlyJJn?RBnڿi-1 tag+i word DT gouldoidJJPn?NNPPni-2 word terminalJJ+?NN+i-2 word watchingVBPMJJ+NNSlNNP/$?VBM?NN/$?i-1 tag+i word IN bottleNNQ?JJQ i word tractNNCl?JJCli-1 tag+i word RB harmlessVBSJJ/$?NNʡEi-1 tag+i word NN basesVBZ5^I ˿NNS5^I ?i+2 word pigletPDTl?VBGԿJJX9vi-1 tag+i word VBP sortNN{GzJJ +οRBRQ?i-1 word subrotoVBZ/$?NNS/$i word malignancyNNPh|?5VB rhѿNN~jt?i-2 word franceJJsh|?@NNSV-NNPZd;O?NNMbX9JJR`"?RBR`"ֿi-1 tag+i word RBR equippedVBNsh|?JJsh|??i word unveiledVBZ5^I JJlVBD(\?i-1 tag+i word PRP talkedVBD/$?DT/$i-2 word months NNnJJSDl?CDbX9?VBP#~jԿRBSIN~jtRPV-?VB$CJJV-VBNX9v?NNS= ףp=NNPx&1?VBGoʡݿi+1 word cheeryVBZK7?NNSuVJJnڿi-1 tag+i word DT baggageNNK7A`?JJK7A`i-1 tag+i word IN particularRB~jt?NNSZd;JJOn?NNv/ i+2 word poorVBD/$?NNPV-?VBPl?JJR333333JJV-i+1 word newmarkVBNV-?VBDV-i-1 tag+i word NNP donsVBZ}?5^I?NNS}?5^I i suffix ots FWn?VBD+JJR|?5^JJQѿNNSuVN#@NNP +VB;OnNNPSףp= @NN/ݤ!INp= ףi+2 word redemptionsDTʡEPDTʡE?i-1 tag+i word `` liarVBS㥛ԿNNCl?JJi+2 word recombinantVBD ףp= ?VBN ףp= i suffix EggRBENNP^I +NN|?5^@JJX9vi+1 suffix iahJJ|?5^NNP|?5^@i+1 suffix urt VBN rh?VBPHzGWDT(\?NNPS rVBGv?JJV-@NNp= ףؿVBDSRB~jtIN(\ڿNNP9vi word namesakeNNA`"?JJA`"i-2 word doubtfulVBPI +ֿNNzGRBSINS?VBJ +? i-1 tag+i word -START- brokerageNNx&@IN/$տWP-NNP333333i-1 tag+i word -START- nobodyVBʡENNV-?NNPʡEi-1 tag+i word DT inningVBGDlNNDl?i-1 suffix xusNNMb@NNPMb i+1 word aiDTnѿPDToʡNNHzG?i+1 word stewedJJGz?NNGzVBNK߿i-1 tag+i word JJ livesNNQVBZQ?i-1 tag+i word IN fannieNNPV-?CDV- i word fadedVBN/$VBD/$?i-1 word project VBZMb@DTVBNZd;O?WDT?RB1ZdNNSClNNP-?VBG`"?NNK7A`i+2 word scenariosVBZ\(\?NNS\(\Ͽi+2 word glimmerVBZh|?5?POSh|?5i-1 tag+i word IN monetaristJJ +޿NN +?i word editorsCCK7ANNSS?JJQi-2 word canadian VBZ(\?NNSK7VBsh|?RPX9v?NNS?VBNZd;O?RBX9vοMD/$VBDMbRBRh|?5VBPx&1̿IN/$ i word troughNNS7A`NN7A`? i-2 word does VBG+INZd;OVBZ9vNNS(\JJSEVBN)\(?VBP&1WDTHzGVB&@RB9vNN/$VBD"~jJJjti-1 tag+i word PRP longerRBRGz@RB!rhJJRV-i-1 tag+i word , inclinedVBNT㥛 ?VBDT㥛 i+2 word ceramicsNNSjt޿NNMb?JJ|?5^i-2 word marbleNNS7A`?NN7A`i-2 word supportersVBGDl?NNMbX9ԿJJ"~j?VBNi+2 word tissuesJJX9v?VBPX9v߿i word plummetedVBNMbX9VBDMbX9@i-1 tag+i word IN rerunsVBZFxNNSFx?i+1 suffix let TOoʡ?NNPZd;O?RBOnNNZd;FW= ףp=INx&1VBZ(\?NNSV-?VBGx&1?WDT(\?JJL7A`@i-2 word stockholdersRB~jtۿIN~jt?i-1 word regardRBˡEINˡE? i-2 word dieJJ333333?NN333333i-1 tag+i word JJ warfareNNT㥛 ?NNPT㥛 i word minicomputerRBRI +NNI +?i-2 word swellVB|?5^RB"~j?INvi-2 word unfavorableVBZjtNNSjt?i-1 tag+i word DT ribJJSNNS?i-1 tag+i word CC hopingVBGx&?NNx&ѿi-1 tag+i word IN politicsNNSKJJ9vNN(\?i-1 word effectiveJJrh|?NN-ֿVBN-RBxIN~jtؿNNPw/?i+1 word scandalsJJ#~jNN#~j?i-1 tag+i word PRP comeVB7A`?VBP7A`i-1 tag+i word IN lovelyRBL7A`пNNP+VBD+JJjt@i+2 word vauxhallNNSMbXNNPMbX?i word prefectureVBPx&1NNx&1?i-1 tag+i word `` metVBN)\(?JJ)\( i word mackNNGzNNPGz?i-1 tag+i word : domesticJJ&1?NN&1 i-2 word put VBNV-NNSʡE?NNPoʡ?NNPSGz׿RPv?JJ= ףp=VBD%CIN5^I ?NNbX9@JJRp= ף?RBRp= ףRBʡEi+1 word purchasedVBn@NNPn i-1 word anNNP= ףp=ʿVBS㥛RBE?NNn @CDx&?JJRDl?IN ףp= NNPS(\VBGS?VBDK VBNl?FW= ףp=DTGzοRBRnJJ|?5^ @NNS +i-1 tag+i word DT maturingVBGS㥛?NNS㥛Ŀi+2 word percentageLS-@RB r?NNS/$VBG㥛 NNB`"CCOn?PDT`"?SYM/$ i suffix AteNNP/$VBD?NNPS rпi-1 tag+i word VBN needVBN/$NN/$?i+1 word newsletterNNPSrh|?JJq= ףp?NNPvi+1 word workerJJK7A`?CD"~j?VBP#~jԿVBGOnNNMbi+1 word gillelandNNʡE?NNPʡEi-1 tag+i word NN magisteriallyRB+?NN+ i+2 word paidNNPEVBxNNK7A?VBPx?JJ!rh?INV-DTV-?NNSsh|? i word jan.$v/ݿVBn?RB(\NNV-VBDPnJJDlNNPZd;O@i-1 tag+i word VBP harmfulVBNjtJJjt?i-1 tag+i word CC muscleNNSV-JJRX9vNN(\? i word flapsNNSQ?NNQi-1 tag+i word VBP evidentNN= ףp=JJ= ףp=?i+1 word representsWDTJ +?INJ +i word appropriationNNq= ףp?JJq= ףpi-1 tag+i word NNP ranksVBZK?NNSKi-1 tag+i word IN establishmentNN?JJi+1 word achenbaumNNPS\(\NN}?5^I@NNPL7A`i-2 word wallcoveringsVBGx&1NNx&1?i+1 word liberal RBHzG?RBS%C?RBRI +@VBNHzGJJS%CԿJJRI +VBPh|?5?JJ333333INGz?NNPh|?5i-1 tag+i word `` couldNNP㥛 MD㥛 ?i+2 word acceptNNPK7AJJClٿNN~jt?JJR rhVBN)\(?RBMbi-1 tag+i word NNS anticipateVBbX9VBP?VBD"~ji word somersetNNPS'1ZNNP'1Z? i-1 word lisaNNPSʡEݿNNPʡE? i word dropVBFx?JJPnؿNNNbX9@VBNGzVBPd;ORB1ZdNNSQi-2 word impcoNN(\µJJ(\µ?i-1 word tossingPRP$GzPRPGz?i-2 word connectedVBGzNNSGz?i-1 tag+i word VBG closeNNSB`"VBKJJ^I +@NNFxɿVBN}?5^IRBJ +?i-1 tag+i word DT walkingVBG\(\?NN\(\Ͽ i+2 word cash JJ+η?PDT(\տVBN9vCDn?NNS|?5^?DTMbXVB&1?NNq= ףpVBDV-?CC333333?RB\(\?i+1 word gunnersJJ(\?NNP(\i-1 tag+i word JJ subpoenaNNS(\NN(\?i word providedVBT㥛 VBNZd;?JJʡEVBD#~ji-1 tag+i word IN reaffirmingVBGM?NNMi tag+i-2 tag VBP NNSVBDʡE?WDTzGVBZ+?NNPffffff?CCGzINˡE?NNPS1ZdVBG%CVBNoʡ?NN?RBZd;?JJ$C?RPS㥛?VBZd;O?RBS rh?RBR(\JJSFxɿVBP$CDTʡE?NNSy&1EX(\JJR&1? i word storedVBN333333?NNJ +VBDHzG#i-1 tag+i word -START- piggybackingVBGX9v?NNX9vi-2 word kidnappedNNPSv?NNPvi-1 tag+i word CC eliminatingVBGl?NNli-2 word learnVBy&1?NNy&1i+1 word directionlessJJR$CۿRB$C?i+1 word shellNNy&1?RB-NNPzG?i-1 tag+i word POS ringVBG!rhNN!rh?i-1 tag+i word : procedurallyJJQRBQ?i+1 word empireJJףp= VBGV-NN|?5^?i+1 word abuseVBJJ(\@NNxFWKi-1 tag+i word NN intervenedNNSV-VBNy&1VBDCl?i-1 tag+i word PRP$ viewJJrh|NNrh|?i+1 suffix kiaDTA`"@WDTd;OINˡEi+2 word gardenJJRK7VBN㥛 ?JJB`"ѿNNPZd;O?NNS㥛RBRK7?i-1 tag+i word IN listeningVBG(\?NN(\i word fighterNNףp= ?RBR/$JJS㥛 i suffix yleNNP rh RBd;ONNy&1ܿFWK7A`ݿJJ#~j<@(i-1 tag+i word . energieproduktiebedrijfNNPSw/NNPw/? i suffix ceeNNS`"NN\(\?JJ-i+1 word theoristsVBP~jt?NNP~jti tag+i-2 tag , VBG CC!rh?VBNIN{Gz?RB`"?VBDB`"JJؿDT(\?NNS-޿VBG{GzNNQ?i-2 word navalNNSJ +NNPJ +?i-2 word chiefNNPSQRBQNN-?JJS㥛VBZZd;NNP}?5^I@ i-1 word cartINRP?i-1 tag+i word VB impairedVBNoʡJJoʡ@i word norieganJJ(\?NNP(\i-1 word producesJJK7A?VBPw/JJRRQ?NNˡERBRE i word regardVBp= ף@VBP?NNn?RBJ + VBDK7A i word metRBRQVBZjtNNS+JJ+NNGzVBDjt@VBNQ@VBP$C i suffix REDNNP/$NNMbXVBD`" @VBN^I +?VBP%CԿJJFx? i word endureVB'1Z?VBP|?5^ڿJJ+NNtVοi+1 word believesWDTDl?JJ/$INDlٿVBZ)\(NN/$?POS)\(?i word overboughtJJ~jtMDp= ףVB?5^I VBNzG?i+2 word portfolioJJ!rhNN9v?VBDI +VBNV-?VBPDlRBp= ףؿNNP)\(?VBDl? i+1 suffix orNNSGz?RBRʡE?''v?VBP;On¿DTFx?RBK7ɿNNPxVBS㥛RBSNNPSJ +?VBDGz?VBZS?RP-NN\(\@JJRd;OPRPK?CCQ?INʡEVBG}?5^IVBNQJJMbCD|?5^@ i word j&lNNffffff?RBS㥛NNPx&1 i word wooingVBG(\?NNvJJ"~ji-1 tag+i word JJ markdownsNNS-?NN-i-2 word splitsDTV-?RB}?5^INNZd;߿i-2 word headlightsVBZ~jtVBS㥛ؿVBPQ? i word skinFW#~jNNSMbXNN|?5^@JJFxi+2 word underwritersJJZd;O@CD ףp= NNS)\(Կi-1 tag+i word NN dodderingJJV-?NNV-i-2 word historyNN5^I ?JJClɿVBD5^I ӿMD5^I ?NNSQi-2 word indemnificationVBZ\(\NNS\(\? i+2 word ssNNOnۿNNP9vJJGz?i-1 tag+i word JJS defensesVBPZd;NNSZd;?i-2 word production NNy&1VBN rh?RBR%C?JJE?JJR%CԿNNSKVBmտVBGn?NNPˡE?CCZd;߿DTB`"?RBNbX9VBDA`"i-1 tag+i word VBN bolsterVBʡE?INʡE޿i-2 word failuresNN"~FW"~?i-1 tag+i word VB sometimeVBNX9vRBX9v?i-1 word movielandVBvNNv?i-1 tag+i word NNP goldVBPٿNNS㥛FWq= ףpͿNNP/$?i-1 tag+i word -START- newportNNGzNNPGz?i-1 tag+i word VB longerJJRQ?RBRQi-2 word coronaNNPnNNPPn?i word bemoaningVBGMbX9?NNMbX9Կi+1 suffix setWDT\(\?NNPS(\VBNd;O?JJFx@WPS㥻?NNM?VBDlJJRbX9NNPMbȿVBGnRBp= ף@VBZHzG?POSHzGNNSsh|??VB/$RPvINJ +i-2 word pottedVBNKVBDK? i word underINFx?RB~jtӿVBDK7i-1 tag+i word DT ultimateJJv?NNnNNP~jt i word causeVB5^I ?NN+@VBDK7VBN{GzJJ`"NNS1Zdi word householdsNNSʡE?NNʡE i-2 word ownVBGʡE?POS?RBFx?DTEؿJJ1ZdNNzG?VBDX9vVBPd;O?MDʡEVBRP'1ZNNPffffff?VBNʡE?INOn@i word palmeroNNPS㥛 NNP㥛 ?i+2 word secretariesJJGzVBDGz?i-1 tag+i word RBS influencedVBNw/?JJw/i word michiganNNrh|JJ;OnRBlNNP/$@NNPSZd; i suffix ohNN+VBvUHK7?i-1 tag+i word JJ lobbyingVBGI +NNI +?i+1 word laserJJ~jtNNV-FWK7A?i-1 tag+i word , whileINPn@VBףp= WRB$CRBV-NNMbXVBDZd;JJA`"i-1 tag+i word NNP startedVBNV-VBDV-?i-1 word improperlyJJQVBG`"?VBN"~j?NNV-VBDtV?i-1 word injunctionVBZ(\NNPSMbX9ԿNNPZd;?i+2 word ignoreJJKRBMbVBM?i-1 word manipulatesPRP$V-?PRPV-Ϳi-1 tag+i word TO complainVBHzG?NNHzGi+1 suffix macRBlNNP$C?LSV-i-1 tag+i word DT allegedVBNx&1@JJx&1i-1 tag+i word VB playsVBZmNNSm?i+1 word amountsNN333333?INףp= ۿWDTMJJffffff?WPM?DTףp= ?VBGi-2 word fragilityVBENNHzGFWuV?i-1 word decisionsWDTFx?RB(\ſINMbؿ i+2 word nickNN#~jĿNNP#~j?i+2 word wheezingRBxNNSnNN'1Z?i word guerrillasNNS r?NN ri-1 tag+i word IN p53NNSh|?5NNh|?5?i-1 tag+i word VBG girlsNNSS?NNS i-1 word lazyNNK?JJKi-1 tag+i word DT kanjiNNK7A`JJA`"FWK7A@i-1 tag+i word `` disappointedJJx?VBDxi-1 tag+i word DT plusCC"~JJK?NNx&1пi-1 tag+i word : knownVBN(\?JJ(\ȿ i word barelyRB-?NNP- i suffix row JJZd;O?VBN?5^I INGzVBZoʡNNPQVBK@NNS㥛?CDoʡVBPʡE@RBy&1NNS?5^I i word chiracJJ/$NNP/$? i+2 word tinyIN+?VB+i-1 word consumerNNZd;O?VBZ7A`NNSK7A`?NNPS㥛?NNPSS㥛VBGSۿi-1 tag+i word VBZ executiveJJV-?NNV-ڿ i word lineINClNNPCl?i-1 tag+i word NNS pumpVBMbVBPMb? i-1 word pcVBZ;On?NNS;OnNN;On?IN;Oni-1 tag+i word DT plugNNM?NNPM i-1 word lenNNP;On?NNPS;Onҿi word margaretNNPS9vڿNNP9v?i+1 word changeRBIN ףp= ?NNSʡE?NNPjtVBGjt?JJV-ڿNN;Oni-1 tag+i word JJS windowsVBZ^I +NNS^I +?i-2 word recruitedINv׿NN)\(?RBClJJoʡݿi-2 word assassinationsVBPI +޿VBNMbX@RBˡEVBD(\i+2 word subtleJJMb@NNMb i+1 word artNNPSv߿JJ$C?NN$CNNPv?i-2 word children JJnNN~jt?RBMVBZMbX9?DT~jtNNS ףp= VBMVBDd;OPDTK7A`?VBN㥛 ?IN#~ji-1 tag+i word -START- quarterRBR~jtؿJJtVNNPy&1NNCl@ i word tacticNNrh|?JJrh|i+1 word biggestVBZV-POSV-?i-2 word compensationNNPQJJRrh|JJQ?RBRrh|?i-1 tag+i word NN seriesNNPSMbXNNPMbX?i+2 word wednesdayMDQJJGzNN"~@VBPjtRB+?INrh|Ͽi+1 suffix ackVBGQNN~jtPOS&1?WDTZd;OPRPX9v?RBtVVBZK7?PRP$X9vNNS7A`JJR9vNNPNbX9?VBNףp= ?VBP'1Z?DTE?VBB`"?JJ|?5^?JJSˡE?INNNPSHzGVBD(\?i-2 word resellJJM?RBMi-1 tag+i word CD indexNN9vNNP9v?i-2 word toleranceNN`"?NNS`"i-1 word impliedJJvVBG~jtпNNV-?i+1 word amount JJS?INQDT"~?VBG"~jJJRX9vVBN\(\WDT-?NN!rh?WPw/i-1 tag+i word NNP expertNN"~?NNP"~ i suffix 004RBSCDS? i word fitsNNSjtVBD$CVBZp= ף?i-1 tag+i word VBP eligibleVBN5^I ˿JJ5^I ?i+1 suffix eds NNP/$NNPSV-JJL7A`?NNQ?RB/$?INQVBX9v?VBDM?VBNMVBPZd;O?i-1 tag+i word JJ bureaucratNN+?JJ+i-1 tag+i word VBP yetVBN333333RB333333?i-1 word extendsNNd;OοINd;O?i-1 word packagedJJVBN?i-1 tag+i word RB runsNNSCl?JJCli-1 tag+i word POS overlayNN/$?JJ/$i-2 word antiqueVBN?VBDi+1 word createDTMbpWDTx&1?INjti-1 word bonds VBN/$?WDT~jt?IN"~jDTRQȿRBoʡNNuVVBDQ?VBPX9v?JJ(\VB~jt@VBGl?i-1 tag+i word POS settingNNSClVBGq= ףpNN;On? i suffix gemJJGzNNSK7ANN&1@i+1 word carnivalDT|?5^VBNjtJJjt?IN|?5^?i+1 word appealingRPQ뱿RBL7A`@INtVi-1 tag+i word VB lawfulJJ1Zd?NN1Zdi+1 word considerationJJMbX?NNlRBR`"οi-1 tag+i word WDT inducesVBPRQVBZRQ?i-1 tag+i word NNP respondedVBNX9vֿVBDX9v?i word fleetingVBG5^I JJ5^I @i-1 tag+i word JJ sportswearVBP~jtNN9v?JJJ +i word carnegieNNʡEӿNNPʡE?i+2 word remainNNSzGVBG +NNNbX9?JJd;O?VBNHzG?i-1 word electedJJ rIN(\ſNNv/?i-1 tag+i word DT newNNPQJJ~jt@CD^I +߿i+1 word earringsJJʡE?NNʡEi-2 word weaknessCC333333DT333333?i-2 word invitesNNSS?NNSi+1 word constructedRBV-?NN{GzJJ%Cܿi+1 word period VBGT㥛 VBNMRBR;OnڿJJK7A @JJRMbX9?NNS(\NNV-VBZ(\NNP+?i-1 tag+i word DT prominentJJCl?NNCli-1 tag+i word VBD missingVBGS㥛@JJ-NNS"i-1 tag+i word JJ responsibilitiesNNS+?NN+ i+1 word cageNNOn?JJOnÿ i word boringVBG/$JJ@NNV-VBNQi-2 word amountedJJRGz?RBRGzi+1 suffix fplVBZzG?VBDzG i-2 word spotNNSh|?5NN= ףp=?JJ?i-1 tag+i word VBG developedVBNS㥛?JJS㥛i-1 tag+i word `` banksNNSQ?NNPQi-1 tag+i word JJ democraticJJCl?NNX9vNNPMb? i+1 word baseRB333333IN@NNSNbX9RP"~jJJ^I +?NNy&1?i-1 tag+i word NN confidentNN+JJ+? i+2 word keptVB+NN\(\@JJI +VBN/$޿i-1 word himselfRBZd;IN(\@RPMVBGS?JJB`"ѿNN!rhVBDMbX9VBNMbX9?i-1 tag+i word VB announcedVBNGz?JJGzֿi-2 word regularlyINK7JJ/$?VBN/$RBK7? i+1 word m&aJJK7NNPK7? i word manorNNSV-NNV-?i+1 word equipment NNSh|?5VBG(\µ?NNv/?JJn?INX9vDTX9v?VBDS㥛JJSGzVBNsh|?i-1 suffix stsVB-RBX9v@VBDK7 @VBPZd@RPʡE?VBNw/ WDTV-¿JJClINQDTX9vNNA`"VBZNNSX9vRBR|?5^POSx&1?''x&1̿NNP/$?i-1 tag+i word NNP dartboardNN(\?NNP(\i-1 tag+i word NNP centeredVBPDlVBDDl?i-1 tag+i word NNP issueVBZbX9NNbX9?i-1 tag+i word IN carnivalNNMbX9NNPQ?JJjti word sanrakuNNPSzGʿNNPzG?i-1 tag+i word NNS lostVBP!rhRBR~jtVBNS㥛?VBDA`"?VB/$ٿ i word jumpedNN+VBDS @JJ^I +VB/$VBNPni-1 tag+i word NN tuckedVBNzGVBDzG?i-2 word anywhereNNOn?JJOni word responsibilitiesNNS+?NN+i-1 tag+i word NNP villageNNHzGNNPHzG?i+2 word trafficRBS㥛?NNX9vVBNZd;OJJQ?NNSQVBG5^I ?i-1 tag+i word NN videoNN"~j?JJ"~ji-1 tag+i word DT contraryJJRQ?NNRQi-1 tag+i word VBD longJJV-?VBN333333RBMҿi+1 word salinasNNPSKNNPK?i-1 tag+i word VBP hadVBNʡE?JJQֿVBD|?5^?i+2 word tylerNNP~jt?NNS㥛?JJmCD+i word analyzeVBP;On?VBD;Oni-1 tag+i word DT hellsNNP(\?NNPS(\i-1 tag+i word , droppingVBGv/?JJv/Ϳi word soichiroJJbX9ƿNNPbX9?i-1 tag+i word NNPS oliverNNClNNPCl?i-1 tag+i word RBR intentNNV-?JJV-i+2 word insidersNNS?NNPWDT?INi+2 word chettaNN9v?JJ9vi+1 word castingJJJ +?NNPJ +i-1 tag+i word JJ lendersNNPS#~jNNS(\?NN(\ڿNNP#~j?i+2 word lessonVBNQ?VBDQ i suffix redJJSףp= @JJ@RPOnVBGx?VBy&1,NNS/$CDn @VBDY0@RBV-2PDTK7VBNQE0@VBZmNNPSmFWx&1пVBPQIN!rhJJR%CNNPFx?NN(\µ$i word proppedVBNOn?VBDOni-1 word enforcementNN|?5^?JJ|?5^i-2 word internationaleNNPS%CNNS333333ÿNNPMbX? i+1 word levyJJENNPE?i-1 tag+i word NNP innNNPS|?5^ٿNNP|?5^?i word compilesVBZy&1?NNSy&1 i+1 word .WDT9vJJS㥛WP~jtÿPOSX9v?VBDzGDTtV?PRPuV?CD/$INbX9JJSCl?VBNQ?RPX9vVBtV޿RBRX9v?NNPSQ@VBP!rhVBZZd;LSX9v@CCClNNK7 @EXK7A` NNPL7A`?VBGJJRʡEֿFWn?RBCl?NNSl?UH&1@PRP$B`"PDTGzRBSS㥛?i+1 word lobbyistJJQNNPQ?i-1 tag+i word DT pedestrianJJ333333?NN333333i-1 word exceededJJSn?RBSni-1 tag+i word : oatsINv/NNSv/?i-1 tag+i word `` boldJJ\(\?NN\(\׿i+1 word adamecRB&1NNP&1?i-1 tag+i word RB preventsVBZMb?VBDMbi-1 tag+i word NN disagreedVBD&1?NN&1 i word hailedVBDS?VBPX9vVBNQi-1 tag+i word PRP rideVBCl?VBPCl׿i-1 tag+i word VBG pickedVBN|?5^JJ1ZdVBDzG? i-1 suffix go RBB`"@JJR(\VBPMbVBNuVJJ|?5^?$RQVBMb?RP#~j?NNFxRBRjt@INuV?VBGuVNNSd;O i suffix OrJJnIN~jtпNNSd;ONNPK7VB1ZdRBK7VBD+CC7A`@i-1 tag+i word POS fakeJJM?NNMi-1 tag+i word POS marathonJJSL7A`ؿNNZd;?JJ5^I i-1 tag+i word JJS christianJJ-?NN-i+1 word cockinessNNP-JJ-?i-1 tag+i word IN referencesVBZZd;NNSZd;?i-1 tag+i word NNP snapsVBZZd;O?NNZd;Oi+2 word scaredNNSOn?NNOnӿ i word whyNNsh|?ݿNNP +WRBףp= @WDT ףp= i+1 word traffic VBlVBG1Zd?VBZ㥛 NNP\(\NNK@VBDGz?VBNGzWDT#~jJJ= ףp=?i-1 tag+i word IN highwayJJ +CDjtNN;On?i+2 word specificallyJJ333333?RB333333ۿi-1 tag+i word NN rockVBZ+߿NN+?i-1 tag+i word PRP sumsVBZZd;O?VBDZd;Oi-1 word piggybackingRBnINn?i-1 tag+i word NNP remainVBPp= ף?NNp= ףi+2 word includedNNףp= ?RBRHzGJJRxJJ/$?IN~jtDT~jt?i-1 tag+i word NN gnawingVBGsh|?NN-@JJT㥛 i-1 tag+i word DT rendezvousNNK?JJKi-1 word learnDT̿IN?i-1 tag+i word DT trunkNNS?5^I NN?5^I ?i+2 word nearestJJS?RBSտi+2 word planeVBGMbX?JJMbXi-1 tag+i word CC drinkingVBGnNNn?i-1 tag+i word VBP indifferentVBI +JJI +? i word besideVBzGҿIN-?RPClRBjt?VBDQݿ i word toledoNNQNNPQ?i-1 word expandedNNST㥛 ?NNtV?JJtV޿NNPT㥛 i+1 word againstNNPSzG?NNS= ףp=?FWS?JJCl JJR\(\NNPV-VBDSVBG rh?VB(\?RP(\?RBjtVBPMbNN(\?RBR\(\?VBN rh@IN/$VBZ"~ji-2 word regulatingJJRv?RBRv׿i-1 tag+i word VBN tacticalJJ$C?RB$Ci-1 tag+i word CC fireproofingNNA`"?VBGA`"i word wrappedVBPK7A`VBNK7A`?VBD7A`ڿ i word move VBNZd;IN5^I VBZClNNPL7A`RBvNN"~j@JJS'1ZVBPV-2@JJB`"NNS\(\VBnʿVBDX9v i-2 word easyNNʡEPRP$ʡEPRPʡE?JJQVBQ?VBGʡE?i-1 tag+i word VBD mistakenlyNNSV-RB+?NNi-1 tag+i word CC furiouslyNNS%CRB%C?i-1 tag+i word CC movingVBGuVNN?JJ`"ֿi+1 suffix shaJJ$CNN$C?i-1 tag+i word NNP measuresVBZCl?NNSCli+1 word mathematicianNNPSoʡJJq= ףp?NNP9vi-2 word having RBGzοIN$CNNSHzGVBQ?RPn?VBNffffff?CDNbX9VBPMbX9JJ~jt?NN'1ZVBDv/VBGA`"?i-1 tag+i word DT costaJJK?NNPKi-1 tag+i word DT verdictNNGz?JJGzi-2 word looniesNN/$VB/$?i word returningVBGNbX9?NNNbX9i-1 tag+i word JJ basketNNS+NN+?i-1 tag+i word JJ fiscalJJZd;?NNZd;i-1 word pocketsVBNʡEVBDʡE?i+2 word overhaulVBNZd;OVBDZd;O?i-1 tag+i word NNP airlinesNNPS333333 @NNSNNPV-i-1 tag+i word VB effectVB +NNʡE?NNPDli-1 tag+i word NNP moanVBjt@VBPrh|NNNbX9i-1 tag+i word `` grayingNNX9v?JJX9v׿i-1 tag+i word VB landNNjt@JJZd;ONNPˡEi-2 word fcb\/leberNNPSffffffNNPffffff?i-1 tag+i word NN brushesNNSʡE?NNʡEi+1 word temporaryNNQӿVBP%C?JJI +IN5^I ?VBZKRB)\(?i-1 suffix ppyRBjtINjt?NN~jt?JJ~jti-1 tag+i word CC intenseJJ;On?NN;Oni-1 word enter INʡEDTʡE?NNSrh|?PRP$~jtVBDMbPRPy&1?JJ(\?NN-RBRV-i-1 tag+i word DT desertJJʡENNSjtNNv/?i+2 word cardsVBy&1VBPy&1?VBN rVBD r?i tag+i-2 tag MD POSCC^I +?DT^I +i-1 tag+i word NNP courierNNoʡ?RBRoʡ i suffix IFINN-NNP-?i-1 tag+i word VB declassifyingVBGQ?JJQi+2 word waftingJJ rh?FW rhտi-1 tag+i word TO carryVBCl?NNSCl i word madJJS㥛 @VBZd;VBNʡERBMbRBRZd;i-1 suffix ullVBGy&1NNSSRPCl?NN/$@JJ/$INClٿi-1 tag+i word NN dipVBMNNPn?VBDQi+2 word criticalVBS?NNPS#~j?NNSS㥛?DTSտNNoʡi-1 tag+i word CC vcrsNNSV-@NN|?5^NNP^I +i-1 tag+i word , hopingVBGFx?NNFxi+2 word selfishJJx&1?NNx&1ؿi-1 word potterVBN\(\?VBD\(\ i word sitsVBZ#~j?VB;OnNNSGzֿi-1 tag+i word DT mulfordNN|?5^NNP|?5^?i-1 tag+i word WDT generatesVBZCl?VBPCl!i-1 tag+i word -START- earthquakePRP$x&1DT9vNNMbX9?NNPSۿi-1 tag+i word NN restructuresVBZd;O?NNSd;O i word sugarNNp= ף@VBPNbX9JJ'1ZԿVBZ9vNNSL7A`NNP#~j? i-1 word lieJJtV?RP&1ʿNNtVRB/$?INˡEܿi-1 tag+i word TO serviceVB|?5^NNZd;O@JJA`"˿i-1 tag+i word RB correctVB5^I JJ5^I ?i-1 suffix nceNNPST㥛 ?''}?5^I?JJsh|??NNPuVݿIN(\DTV-POS}?5^INNS"~?VBHzGVBGVBDJ +?VBPx&1VBZEJJR?WDTzGNNX9v?RBSlRBRbX9ȶ?JJSl?VBNx&1?FW㥛 ?RBI +?CD!rh@i-1 tag+i word VBZ intendedVBNףp= ?JJףp= i+2 word switchNNS+NN+?i-1 tag+i word DT livesNNPS333333NNS333333?i-1 tag+i word NNP clothiersNNPS+ۿNNP+?i-1 tag+i word DT crescendoNNS"~NN"~? i word poisonNNS/$NNbX9H@JJffffffNNPMbi-1 tag+i word CC tinNN㥛 ?JJ㥛 ¿i-1 suffix telVBG/$?NNJ +?RBp= ףVBZy&1ܿNNSy&1?NNPS?NNPSSi-1 tag+i word DT districtNNFxNNPFx?i-1 tag+i word NNS massedVBN?5^I VBD?5^I ? i word costaNNP~jtVBy&1NNPSMbJJK@i-1 tag+i word NNS farVBNK7NNPK7?i+2 word despairNNZd;?NNPZd;׿i-2 word miracleVBoʡVBN5^I NNm?i-1 tag+i word DT southwideNNV-NNPV-?i+2 word stores VBClJJGz?NN!rhVBGK7A`NNPl?RPT㥛 POSMbX9CD\(\RB rIN9v@ i suffix 107CDzG?JJbX9NNPCl˿ i+1 word cos.JJQNNq= ףpݿNNPp= ף@i-1 word coloradoNNPSK7?NNPK7ɿi-2 word european VBD~jt?VBP?5^I ?IN?5^I VBZףp= ۿNNRQVBN~jtRB?5^I ?NNStV?NNP|?5^?i word distressfulJJ}?5^I@NNP}?5^Ii-1 tag+i word DT votingVBGʡE?JJ/$NNzGNNPX9v? i suffix ttsNNSZd;@RBGzNN9vi word peelbackNNMbX9JJMbX9? i word rebateVBP~jtNNjt?JJ#~ji-1 tag+i word VBZ cleansVBZjt?NNSjt޿i+1 word minimillsJJK7?NNK7i+1 word containerNN|?5^CD+NNPT㥛 ?RB5^I JJ|?5^?i-2 word acquistionNNP'1Z?VBN'1Zi word noncashJJ`"?NN`"i+1 word boorishRBRMb?JJRMbؿi-1 tag+i word IN neurosurgeonNNPSNNV-?JJ'1ZĿFWV-ݿ i+1 word lotDTS㥛?VBG/$UHjtNN/$?NNPzGҿi-1 tag+i word PRP$ causeNNS1ZdNN1Zd? i word casualVBNmJJm?i+1 word redistributionismVBZ+?JJ+i-1 tag+i word WP chooseVBP#~j?VBD#~ji-2 word colo.NNMb@JJMbi+2 word perimeterVBGK7A`VBPK7A`?i word understoodVBD"~j?VBNHzG@VBP"~jRB\(\߿JJffffffNNRQi-1 tag+i word IN determiningVBG9v?NN9vi-1 tag+i word NN pollNNV-?NNSV-i tag+i-2 tag NN ''VBPy&1WDT/$?INx&1ؿNNP%CJJMbX?NNʡE?VBD$C@NNSK7A`?VBx&VBNrh|VBG?RBR"~RB rVBZ5^I ˿i-1 tag+i word CC chosenVBZFxVBh|?5VBNm?i-1 tag+i word PRP survivedVBPX9vVBN-ӿNNPDlVBDˡE?i+2 word techniqueVBZʡE?NNS~jtJJB`"?NNFxVBDvRB333333IN333333?i-1 tag+i word NNS formedVBNl?VBDli-1 word handsIN+?VB+RP!rh?RB!rhi-1 tag+i word : insideNNP rh?IN rhݿi+2 word killingVBG+?VBN(\JJ#~j?i-1 suffix gotNNSDl?JJRʡEVBNQ?DTV-?NN{GzRBRʡE?CD+JJ)\(?VBD+EX~jtRBS㥛@INy&1VB rhRPT㥛 i word blamedVBDrh|?INrh|i-1 tag+i word -START- timingVBGx&ѿNNOn?NNPV-i word unpublishedVBN㥛 JJ㥛 ?i-1 tag+i word PRP slopesVBZy&1?VBy&1i-2 word brutishRBl?JJli word wardrobeNNSMbX9NNMbX9?i-1 tag+i word VB postponedVBN!rh?JJ!rhܿi+1 word solutionsCD|?5^ʿNNSZd;?NNB`"JJQ?i word comfortablyVBK7ARBK7A?i+2 word dickensVBZ;OnVBP;On?i-1 tag+i word VB cutNNSVBNS?i word cocotteRBRʡENNʡE? i+2 word lendNNGz?INK7A`WDTK7A`?JJRGzi-1 tag+i word WDT stemVBPZd;?NNvϿVBD~jti-1 tag+i word DT perpetualJJS?NNSi-1 tag+i word VBD regardlessJJR"~jRB"~j?i-1 tag+i word NNP nikesNNPSGz?NNPGzi+1 word possibilityJJSh|?5?JJX9vNNʡEi-1 tag+i word DT woundsNNPS7A`NNSv?NN1Zdi+1 word guineaJJK?NNPKi word overpricedJJSۿVBNS?i+1 word laggingNNPSQNNQ?i-2 word gapingWDTGzINGz?i-1 word ortegaVBZ/$?VBD ףp= ?VBN ףp= POS/$i-1 tag+i word NNP offeringVBPGzVBGp= ףؿNN?i-1 tag+i word CC steamVBPNbX9ؿNNNbX9?i+2 word concurredVBPnNNSn?i-1 tag+i word DT noncashJJ`"?NN`"i-2 word upgradeVBGv?JJvi-2 word berraVBV-?NNPV-i+2 word capitalistsJJSK?RBSKi-1 tag+i word VBZ historicalVBPZd;JJZd;?i word transformVB9v?VBP;OnVBDoʡݿ i word double VBP/$JJDl)NNPL7A`堿RB333333#@RPZd;OݿNNV-VBDZd;IN&1VBZ +VB/$ƿi-1 word climateVBZ-?NNPSQտNNS1Zdi word awkwardJJ +?NNGzFWjti-1 tag+i word NNP productsVBZ{GzNNPSx&?NNPʡEӿi-2 word employVBN#~jJJ#~j?i-1 tag+i word VBG polishJJV-NNPV-? i word limbsNNSx&1@NNffffffNNPKi-1 word agriculturalNNPPn?VBPףp= VBZHzGNNPSPnпNNS(\?i-1 tag+i word , firedVBNMb`VBDMb`?i word understandablyRBsh|??JJsh|? i+1 word oakJJx&1?NNx&1 i word abbieNNMbNNPS@VBP%Ci+1 suffix fdaVBN rhJJ rh?i-1 word mountingNNCl @JJCl i+2 word richmondNNPSMbXNNPMbX@i-2 word tapesNNSQ?WDT/$JJQWP/$?i-1 tag+i word CC packedVBNv/?VBDv/i+2 word dynastyVBZoʡVBףp= ۿIN-?i+2 word quoteVBZ&1?VBD&1i+1 word provenzaVBClNNPCl? i+2 word door RB;On@RP/$NN/$޿VBNKNNS/$?NNPV-?NNPSmͿJJ(\µIN'1Z i suffix ays VB|?5^NNPS/$@VBDK7A VBNClJJJJRMbX9ĿNNP(\uRBT㥛 ?NN- CDsh|?VBP rhVBZ-'@NNS/$#@i+1 word searchingVBNrh|׿VBDrh|?i-1 tag+i word JJ posturingNN'1Z?JJ'1Zi-1 tag+i word VBN overtimeRBzGʿNNzG?i+1 word jenksNNClǿNNPCl? i word frogsNNS= ףp=?RB= ףp=i-1 word domesticallyVBN+?VBD+ӿi-1 tag+i word , sparklingJJ rh?NNX9vVBGK7 i suffix wdsVBZ(\?VB(\i-1 tag+i word VBZ surprisingVBGx&1JJx&1@i word installVBZףp= VBףp= ?NNףp= i-1 tag+i word IN desertNNSʡENNʡE?i-2 word burstVBG/$NN{Gz?JJV- i word livingVBP^I +VBGPnNN5^I  @JJ+i word depositoryVBClNN333333 @JJMbX9 i word bounceIN|?5^VBtV?VBP-?RB(\NNK7Aؿi+1 suffix itzRBMNN/$?JJ-INsh|?? i word hornVBNK7NNK7?i-2 word turningNNS/$NNQ?JJˡE?IN5^I VBPʡEi+1 word africaNNP rh?VBJJ1Zd˿i+1 word plazaJJMbPNNPMbP?i-1 tag+i word NNP netJJK7A?NNK7Ai word heightsNNPDl?CCS㥛ܿNNPSDlNNS"~j@NNDl i word poorlyRP/$RBMb?JJOni word patientJJ ףp= ?NN ףp= i+2 word spiegelVBN1ZdJJ1Zd? i suffix bor NN/$@VBDףp= VBPV-?JJnVBS㥛NNPSSJJRZd;ONNSA`"NNPv/?i-1 tag+i word JJR efficientJJMb?NNMbi+1 word challengesNN ףp= ?NNP ףp= i word protectVB(\?VBPV-@JJrh|NNMbVBZʡE i word ombNNSSNNPS?i-2 word secretary VBNzG?JJK7A`?VBZuV?VB~jtпNNSRBR= ףp=@VBP%CNNSuVVBDzGҿJJR= ףp=i-1 tag+i word POS crowdedVBNV-JJV-?i+1 suffix torNNSK7A`?JJRrh|NNP+@VBxIN+VBNQٿVBPzGWDT rDT;On?RB;OnҿJJST㥛 ?CD/$ѿVBGRQȿVBD-ƿVBZ/$޿NN-?POSV-?PRP$S?JJʡE?RP|?5^RBROnNNPSZd;Oi-1 tag+i word RB compromiseVBQ?NNQi-1 tag+i word JJ watersNNSV-?NNV-i word disclosedVBPClVBN7A`?JJףp= VBD?i-1 tag+i word PRP reboundVBCl@VBPCli word ingredientNNʡE?JJʡEi-1 suffix eetNNP?RP|?5^VBP'1ZԿWDT^I +IN?NNoʡVBD?VBGZd;VBN(\POSV-JJRQ @VBZzGNNSףp= @RBZd;O?i-1 tag+i word -START- kemperNNP(\?NNrh|IN;Oni+1 suffix lmsVBN"~jܿJJl?VBDGzi word siemienasNNPSMbXNNPMbX?i+1 word interstateNNPvJJ?NNSx&1NNx&1?RB"~i+2 word practicedWDT5^I ӿWP5^I ? i word abDTClNNPCl?i-1 word paschiNNV-FWV-?i+2 word approvalVBNʡEVBPnJJMbX?VBZn?NNP5^I ?VB~jtVBG%C?NN(\i-2 word predictingNNʡE?JJR+JJʡERBR+?i-2 word charge VBGh|?5?NNK7VBD(\PRPV-DTffffff?NNPZd;PRP$V-?WDTMҿRBMb?INRQJJʡE?i+2 word endrocrineNN/$?NNP/$ֿi-1 tag+i word VBG nonexistentDTClJJ +?NN/$ۿi-1 word developmentNNy&1|VBDy&1|?RBRRQVBN/$JJtVNNS/$?RBS?i-1 tag+i word NN draggingVBG㥛 ?NN㥛 i word turnoverNNSV-NNPnNNA`Т@WDT)\(EXKRBQINףp= i-1 tag+i word -START- strongNNPK7A`RBS~jtJJZd;O@i-1 suffix tepRBʡE @IN/$NNSzGRP+NNClRBR$C?i+2 word gizmoPDTL7A`JJL7A`?i-2 word resistRP&1RBE?IN(\ſi-1 word olderNN~jt?JJ~jt i word buy VBףp= @JJx&VBNh|?5NNSX9vNN+?VBDSJJR5^I VBP@RBxINMbXi-1 tag+i word , killingVBGv/?NNv/i+1 word comfortableCCS?RB;OnJJL7A`i word unforgivingVBGsh|?JJsh|?? i+2 word orVBPCl?JJZd;?RP~jt@NNPECDZd;O?IN}?5^IJJRV-VBNuV?NNI +POSK7ACCMb?DTSPRPffffffRB|?5^NNSZd;OUH= ףp=VBZ?5^I ?VBDףp= WDTMbVB\(\@RBRCl?MDd;ONNPSw/@VBGʡE?i+1 word maintenanceNN(\INtVVBGjt޿JJ-@i+2 word anywhereVBGv߿NN?NNPmi-1 tag+i word NN debatesVBZT㥛 NNST㥛 ? i+2 word bulkVBZCl?VBPClVBN?5^I ?VBD?5^I i-1 suffix miaVBPNbX9?NN?5^I ¿JJx&1i-1 tag+i word : toughPRP$|?5^ʿRBT㥛 NNQٿNNP rhJJZd;O@ i-1 word copyNNPS#~jNNS#~j?i-1 word bilbreyRBPn?NNPni-1 tag+i word RB hangsVBZh|?5?NNSh|?5i-1 tag+i word VBZ a.NN~jt?NNP~jti+1 word surveyNN~jtNNPHzG?NNPSCli word hypothesizedVBN1Zd?JJ1Zdi-1 tag+i word VBP adoptedVBN/$?JJ/$ i+1 suffix noWDTHzGVBp= ף?VBG7A`?FW+POSףp= VBN\(\?DTHzGNNPST㥛 VBP!rh?NNP㥛 NNOnÿVBDv/?NNSFxIN(\?RP rh?VBZx& @i-1 word truthRBQݿWDT'1ZJJh|?5?NNh|?5οIN~jt?i-1 suffix numVBZx&NNSx&?RBR-NN-?i-1 tag+i word VB existingVBGp= ףJJp= ף?i-1 tag+i word DT gainVBPQ޿NNoʡ?JJCli-2 word stompingNNB`"ٿJJB`"?i-1 tag+i word PRP mostJJSjt޿RBSjt?VBPv/i-1 word channelNNPV-VBZ ףp= ?CDV-?NNS ףp= NN"~j? i word namesCC +޿NNPHzGVBP+NNS@NNPS~jt? i+2 word stemVBx&1пVBPx&1?i-1 tag+i word DT educationNNS㥛?JJS㥛 i+1 word spyNNPS(\NNP(\?i+2 word opposingINV-VBPV-?VBG rNN r? i word sexesNN"~jԿNNS"~j?i-1 word admitsWDTZd;OտINZd;O?i-1 tag+i word NN turnoverNNQ?RBQi-1 word lukewarmNNX9v?JJX9vi word moderateJJK7A@NNK7Ai-1 tag+i word VB accompanyingVBGL7A`пJJL7A`?i-1 tag+i word VBN oneNNK7A`տJJSտCDoʡ?i-1 tag+i word DT exxonNNPl?NNlҿi+2 word malefactorsJJX9v?NNX9vi-1 tag+i word CD coursesNNSQ?NNQݿi-1 tag+i word CC fundVBQ?VBP +?NNQJJ(\RBFxٿi-1 tag+i word VBG thatRB +?WDTX9vJJnINJ +?DT"~j?NNSCli-1 tag+i word MD includeVBPy&1VBy&1?i-1 tag+i word , lessJJRrh|VBZ9vRBRuV?i-2 word sleepingVBGףp= NNףp= ?i+2 word removalVB+?IN+i-2 word nobelVBZ333333NNS`"?NNni+1 word crossJJsh|?NNPsh|??i-2 word flowersJJ1Zd?NN1Zdi word walkingVBGB`"?NNGz?NNP/$i-1 tag+i word PRP$ ultimateJJ"~j?NN"~jܿi-1 tag+i word JJ ukraineNNPZd;O?NNZd;O i suffix EndNNPMbNN5^I @RBI +޿i word weddingNNP333333VBGv/NN`" @JJ rh i suffix toeNNSʡEƿUH9vNNGz?i-1 tag+i word CC reliveVBP}?5^I?JJ}?5^Ii word lawyersNNPSvNNSCl?NNPK7?i-2 word sorryWPtV?NNtV i suffix ftyNNS㥛JJMbX@JJRףp= i word traceNNPB`"?VBT㥛 ?NNPSB`"ɿJJT㥛 i-1 tag+i word IN expensiveRBq= ףpNNGzJJ(\?i word executesVBZ+?VBP+i-1 word replaceJJR9v?JJS㥛?NN9vFWx&1VBDQRBSmݿVBNp= ף?i-1 tag+i word VBP aliveRP/$JJ/$? i-1 word yourNNMb?FW333333@JJRmJJ7A`ҿNNSL7A`?NNPNbX9NNPS{GzRBh|?5i-1 tag+i word DT majorNNPSd;ONNPd;O? i word spiesVBZ r?NNS ri-2 word farmingRPn?INni-1 suffix per NNS(\NNP +?NNtV@RBvVBZQ?FW/$?VBDy&1VBNMb?RBRS˿VBPSVBMbXVBGzG?JJI + i word bikeNNS +NNsh|?@JJnIN+VBZd;߿i-2 word handilyNNEпINE?i+2 word hedgeNNCl?JJ333333RBd;Oοi+1 word hotelCD-JJv@NNw/i-1 word diamandisNNPSw/NNPw/?i word sterileNNn JJn @i-1 tag+i word -START- reinaNNS㥛NNPS㥛? i word benNNP?INi-1 tag+i word IN dynamicVBNlJJl?i-1 tag+i word : unsuspectingVBG1ZdJJK@NNw/ԿNNP\(\i-1 tag+i word RP windowlessJJd;O?NNd;Oοi-2 word shaleNN/$CD/$?i-1 tag+i word CD middleJJR~jtNNA`"JJZd;O? i-2 word jakeNNJ +NNPJ +?i+2 word gentlenessNN rh?JJ rhi-1 tag+i word VBZ dejaNN+?JJ+i+1 word competitiveRB rhRBRDlJJ?NN;On i suffix RALNNx&INv/ͿNNPy&1NNS%CJJ/$@ i suffix ft.NN?NNSi-1 tag+i word DT revivedJJh|?5VBNGz?NNClۿi-1 word nailedRPV-ҿRBsh|?INQ@ i suffix 9thNNS rJJ r?i-1 tag+i word NN surplusesVBZ-NNS-?i-1 tag+i word RB engulfedVBZX9vVBDX9v? i-1 suffix tvNNPS +NN333333?VBNh|?5ֿJJZd;VBZGzNNS㥛 ?NNPQ? i+2 word doneNNP1ZdRPSNNx?RB@INni-1 tag+i word VB owningVBGd;ONNd;O?i-1 tag+i word NN hotelsNNSMbX9?NNMbX9Ŀi-1 tag+i word DT djiaNNPSoʡݿNNPoʡ? i suffix autNNPGz?VBZd;O߿JJ rh?NNNbX9i-1 tag+i word POS legNNl?JJli+1 word automatedVBףp= ?NNףp= i word receivesVBZ$C?NNS$Ci-1 tag+i word JJ tangentialJJ r?NN ri-2 word januaryIN/$VBPjtRB/$?VBDjt?i+2 word imperfectJJ +?NN +ֿi-1 tag+i word JJ solidlyRB/$?JJ/$i-2 word cantorNNPS\(\NNP\(\?i-1 tag+i word NNS dominatedVBNKVBDK?i+1 word metalNNʡE?JJSJ +?RBSJ +JJK7ANNSmNNPx?i-2 word autryVBMb?VBPMbȿi-1 tag+i word VBZ managingVBGףp= NNףp= @i-1 word eitherVBM?VBG rh?NNVBDx?VBN%CܿJJ;On?i-1 tag+i word , overweightJJ?5^I ?RB?5^I i-2 word suddenNNZd;?VBD#~jJJtV?VBZx&NNSn?VBMi+2 word meaningNNPS)\(ԿJJʡE?NNʡENNP)\(?i tag+i-2 tag JJ $NNS?5^I NN?5^I ?i+1 suffix eme INClDTCl?NNV-JJR㥛 RBR㥛 @VBPMb?VBNKJJ|?5^@NNP\(\NNPSA`"?RBMbi+1 word punitiveVBJJ?i word subordinateJJ"~?NNy&1̿VBPB`"i-1 tag+i word '' dominateVBx&1VBPx&1?i+1 word pursuitJJQ?NNQ޿i-1 word computer NNPnVBGS㥫VBDzG@WDTʡE?INy&1NNS;OnJJVBZn@VBT㥛 NNPSn@NN9vڿVBN~jtVBPV-?i-2 word cocomNN rhVBNx?JJMbX9i word lettingJJd;ONNPףp= VBG333333?i-1 tag+i word JJ fossilNNS?JJSi+1 suffix kkrDTlڿINl?i word architectJJ'1ZVB ףp= VBPA`"NNQ @i-1 tag+i word NNP courseNNPSZd;NNPZd;?i+1 word chamberJJ%C?DTx&1?NNPK?VBGJ +RB-޿NNSCC#~ji-1 suffix in'VBV-VBPʡE޿JJ|?5^@NN㥛 i+2 word terribleVBDEVBPE?i-1 tag+i word DT slowestJJSh|?5?JJh|?5޿i word contentVBNHzGJJV-@JJRuVNN ri-1 word airingRBFx?JJv׿VBP1Zdi-1 tag+i word DT echoesNNS/$?NN/$ۿi+1 word should RB+ÿVBGQNNSZd;?NNP#~jVBNrh|WDTMb?JJ+?NNtV?INPn DT9v?NNPSy&1?WRBsh|??i-1 tag+i word CD genericJJv?NNvi-1 tag+i word JJ risksNN}?5^IVBZSNNSuV@i-2 word boatersVBGI +NNV-?JJni-1 word stagesNNSEVBPE?i-1 tag+i word EX 'sVBZMb@POS7A`VBDCli-1 suffix llyIN&1VBDZd;OǿVBPGz@JJK7?RB/$CCB`"?RBRMbX9VBG㥛 VBN/$@VBZ㥛 ?PRPd;ONNPSh|?5JJRQ?DTV-?RPʡE?NNmRNNSx&1NNPE?VBV-?POSJ +?PDTJJS)\(ܿ i suffix ykeNNS(\NN(\?i-2 word maxicareNNPSx&1?VBG1Zd?NNX9vVBNNbX9?JJp= ףNNPx&1i+1 word bulbsNN\(\?JJ\(\i-2 word instructionsNN ףp= ?JJ ףp= i-1 tag+i word POS eurodollarNNbX9@JJp= ףNNPsh|?i-1 tag+i word VBN committedVBN)\(?JJ)\(i+1 word gerrymanderingJJX9v@NN"~jNNP&1i-1 tag+i word DT fmJJ5^I NNP5^I ?i word equitiesVBZ$CNNPSV-?NNS$C?NNPV- i+2 word hallCC#~jNNd;O?JJMbX9Ŀ i+2 word alanJJy&1?NNPy&1i-1 word retailerJJףp= ?VBD(\?VBN333333i word specialistJJʡEVBP!rhNNV-?i-1 tag+i word NNP wantingVBGn?NNni+1 suffix ms. RB!rh?INHzG@DTGzNNPMbX9VBD+CDsh|?WDTKJJ!rhVBZ= ףp=@i+1 word minnesotaVBGGz?JJGz׿i-1 tag+i word IN bitterJJZd;O?JJRL7A`NN|?5^ i suffix ureFWMbXCDRBB`"?NNS(\NNPx&NNS㥛#@VBN-VBZ)\(JJV-@VBDX9vINmVBQ@VBG +ֿVBPx&@JJRףp= i+1 word statementIN$CNNS㥛?JJsh|??NNP~jti-1 tag+i word MD beginVB1Zd?NNS1Zdi-1 tag+i word IN pressureCDNN?i-2 word hudsonNNV-?NNPV-i word finlandCD-NNPʡE޿NNPSZd;NN1Zd?i-1 tag+i word NNP adsNNS/$NNPA`"NNPSp= ף?i word lopsidedVBNvJJv@i-1 word carlosVBZtVNNPtV? i suffix RNNP rhNNPS'1ZNN(\?i-1 tag+i word NNPS lawNNrh|?NNPrh|i-1 tag+i word CD revolvingVBGMbJJm?NNrh|i-1 word rumbleIN;On?RP;Oni-1 tag+i word `` mentalJJMb?NNMbi-1 word reports JJClӿNNZd;@VBP{GzWDTSRBZd;O׿INZd;O@NNPK7VBDS?VBNʡEi-1 tag+i word , repleteJJx&?NNT㥛 INjtԿi-1 word deridedRBh|?5INh|?5? i word windowNNSPnNNPn?i-1 tag+i word DT correctedVBNffffff?JJffffffi+2 word decadesJJ+VBPZd;O?VBNuVݿNN;Oni tag+i-2 tag VBG VBGNN%C?NNPS?RP~jtVBGS㥛JJ +?i-1 tag+i word IN prosecutingVBGK?NNKi-1 tag+i word NN vesselsNNSQ?NNQi+2 word tuckerNNB`"?JJB`"i word unlockedVBNZd;OVBDZd;O?i+1 suffix nosDT;OnJJ rh?NN rhIN;On?i-1 word seniorNNP(\?NNV-?VBDZd;VBNNbX9пJJRbX9JJMb?VBZx&1NNS"~?i word nicholasNNStV@NNPtVi-2 word germansNNK7A`VBDClJJK7A`?INX9vVBN+?i-1 tag+i word RB appointedVBN}?5^I?JJ}?5^Ii-1 tag+i word '' performersVBZS㥛NNSS㥛?i word collateralizedVBNX9vJJX9v?NNoʡNNPh|?5?i-1 tag+i word NN approvesVBZʡE?NNSʡEÿi+1 word forecastersVBZ rhNN rh? i word lendJJX9vVBZClVBX9v?VBPCl?i+1 word attendedNNSʡE?NNPQNNPS rh?i word bordetellaNNK7?NNPK7i-1 tag+i word TO transportVBOn?JJOni-2 word comparesRBʡE?JJʡEտi+1 word goalsJJbX9?NNbX9i-2 word incendiaryNN\(\?NNS\(\i-1 tag+i word TO trustVB5^I ?JJ5^I i-1 tag+i word IN prevailingVBGbX9JJCl?NN"~jܿi-1 tag+i word VBN clothingVBGmNNm?i-1 tag+i word PRP involvedVBD+?VB+i-1 tag+i word NNP insistsVBZI +?VBPI +i-1 tag+i word VBD helpRPʡENN1Zd?JJGzֿi-1 tag+i word DT mysteryNN(\?RBffffffJJSQi-1 suffix olmNNNbX9?NNPNbX9VBZw/ĿNNSw/? i+1 word inWP/$PRP)\(?JJSMb?CDL7A`?FW1Zd?DTx&1NNSS㥛@CCHzGUH`"NNP`"VBPX9v?VBDˡELS|?5^ɿPDTK7VB`"?VBGl¿VBZZd;?NNMb @RBjt?RBS333333JJR|?5^POS + ''Q?WDTV-JJK7ARPn?VBNx& @IN rhRBR/$@EXClNNPS㥛 ?i-1 tag+i word NN totalsVBZbX9?NNSbX9i-1 tag+i word -START- buyingVBGQNN)\(?JJi-1 suffix staNNP'1ZIN+NNPSJ +WDT+?JJ#~j?i-1 word chenilleNNS(\?NN(\¿ i-1 word doneINv/DTV-@RP"~jRBd;ONNw/?JJR}?5^IRBRQ@JJ/$i+1 word kidder RPHzG?RBIN rh @NNSMbVBOn?NNK7RBRZd;OVBPOnJJbX9VBZMb?i-1 word cooperativeVBPL7A`NNL7A`?i-1 tag+i word JJ intellectualJJy&1?NN|?5^NNP(\? i word floraJJzGNNQNNS?i-1 tag+i word JJ sumsNNSV-?NNV-i-1 tag+i word RB mentionVBA`"?JJA`"i-2 word savvyVBGRQ?JJRQi-1 word stationRB/$?NN/$JJy&1|?FWy&1|i-1 tag+i word DT victimNN(\?JJ(\i+2 word naplesVBNVBD?i-1 word delcoNNPSQNNPQ?i word throwingVBGMbX?VBNClNNbX9i-2 word definitelyRBR(\?JJR(\i-1 tag+i word VBN tanksNNS$C?IN$Ci-2 word executionNNS~jtۿJJQ@NNV-i-1 tag+i word NN tellVBd;O?RBd;O i-2 word eyesVBD/$@JJ!rh?VBN/$NN!rh̿ i word rancorJJS1ZdNN1Zd?i-2 word opportunitiesVBD!rhܿNNPSV-NNSV-?VBN#~jJJ+?i+2 word declinesJJ&1NN)\(@VBP$C?WDTI +RB$CDTI +?NNSK7A`NNPMڿi-1 tag+i word CC rarelyRB(\?JJ(\"i-1 tag+i word PRP$ superefficientJJGz?NNGzi-1 tag+i word RB fixedVBN/$?JJ/$i-2 word merrillNN/$RBMVBZ{Gz?NNS{GzܿNNP/$?JJM?i-1 word chemicalsDTvWDTv?i word holidayPRP$sh|?տJJRQNNPˡE?DTClNNS@i-1 tag+i word IN cardsNNSrh|?NNrh| i word bombNNQ?JJxVB)\(i-1 word wrappedRP&1?RB\(\IN/$ƿi-1 tag+i word VBG aimedVBN9v?JJ9v i-1 word nineNNSMbX9NNMbX9?i-1 word alcoholNNK?RBKi+1 word inspectorsNN"~?JJQNNPQ?VBG"~i-1 word processesVBGx&1JJx&1?i+2 word borrowedNNS9v?NN9vi-1 word analogNN-NNPX9vNNPSX9v?VBG-? i suffix ttiNNSffffff @NN"~jJJV-i-1 tag+i word DT airtimeJJrh|ϿNNrh|?i-1 word consolidationVBZI +?NNSI +i-1 tag+i word NN negotiatedVBN)\(VBD)\(?i+1 word measuresNNL7A`WDT"~j?JJ#~j?DTq= ףpNNSQ?NNPCli-1 word averagedINRQпRBRZd;ORBRQ?JJRZd;O?i word telegraphNNPSzGNNPzG?i-1 tag+i word TO sacrificeVBT㥛 ?JJT㥛 i-1 tag+i word NNS pitchesVBZoʡNNSoʡ?i word playingVBGPn?JJ9vNNDl?NNPd;O i word capFWZd;ϿNNS|?5^VBNtVNNtV?i-1 tag+i word TO speakerVBNNP?i-1 tag+i word , apartmentNNuV?JJRQVBDFxѿi-1 tag+i word IN faultJJS1ZdNN +?NNPMi-1 tag+i word ( authorNNQ?NNPQi-1 word regionalNNd;OֿJJd;O?i-2 word ideologicalINS?NNP+JJK߿FWK7A`VBDv/?i-2 word urgentlyJJRv?RBRvi-1 word conglomerateWDTq= ףp?NNq= ףpi-1 tag+i word IN recordedVBNMڿJJ(\?NNP+i-1 word financiereFWtVοINMbNNPv/?i+2 word makes VBG5^I ˿VBNh|?5WRBʡENNx&JJROnWDTvJJ"~j @INOn@DT?VBK7ٿNNP9vCDRQi+1 word scenarioNNQ?JJQi+2 word injuriesNNSM?NNM i suffix AGEWP-JJ|?5^NN?5^I@IN/$տNNPzGi-1 tag+i word CC futureNN'1ZܿJJFx?RBS㥛i-1 tag+i word VB surprisedVBNL7A`JJL7A`?i+2 word flierNNSZd;ONNPZd;O?i+1 word gangbustersIN?5^I ?JJ?5^I ҿi-1 tag+i word , meditationNN?5^I ?JJ?5^I ڿi-1 tag+i word DT lardVBNw/NNw/?i-1 word paleontologicallyVBPVBGn?JJSNNbX9ȶi-1 tag+i word NN mountedVBNRQVBDRQ?i-1 tag+i word , lestVBZ= ףp=VB{GzVBPy&1ԿJJSʡEINE@i-2 word wantsVB-?VBG-i-1 tag+i word RB driveNNQ?JJQi-1 tag+i word -START- kodakFWI +ƿNNPI +?i word landingVBGnNNn?i-2 word gainersNNSPnؿCDPn? i+2 word panNNPSh|?5NNPh|?5?i+1 suffix tanNNX9v?JJRRQRBK7ANNPxƿVBQݿJJ= ףp=@i-1 tag+i word NNPS gamesNNPSZd;?NNPZd;i+2 word enlighteningVBDGz߿VBNGz? i word wishesVBZl?NNS|?5^NN)\(i-1 tag+i word DT savviestJJSMbX9?JJMbX9i-1 tag+i word JJ recourseNNh|?5?JJh|?5οi+1 word intitiativeJJn?NNni+1 word historyJJGz?WPzGDT!rh?NNPS㥛VBGrh|?RB ףp= ǿNNrh|WDTzG?i-1 tag+i word , shippingVBG)\(NN)\(?i-1 tag+i word IN zeroNNzGCDzG?i word repeatsVBZtV?VBjtNNS)\(? i word octelCCNNn?NNPZd;i+2 word prescribedINv?NNSvi-1 tag+i word IN alcoholicJJ/$?NN/$i+1 word counterterrorismJJ}?5^I?NNP}?5^Iܿi+1 word malcolmJJrh|NNPrh|?i-1 word provokedJJQ?NNQi-1 tag+i word VBZ interiorJJOn?NNPOni-1 tag+i word TO lessVBEJJRE?i-1 word locallyJJSVBNS?i-1 tag+i word VB littleJJS㥛?VBNbX9RBoʡ?i-1 tag+i word CC topVBV-ݿNNS+JJ-?NNˡEԿi+1 suffix ystCDV-?VBP+JJ1Zd@NNSx&1NNPK7A`ſRBX9vNNV-i-1 tag+i word NNS angeredVBNGz?VBDGzi+1 word auditsNN#~jPRP$1ZdVBNףp= JJm@NNPOn?VB/$i-1 tag+i word -START- baronNNP r?IN ri-1 tag+i word -START- saltNNS/$޿NNP/$?i word conservativesVBZnNNPS@NNStVֿNNx&1NNPmi-1 tag+i word NNP lynchNNPʡE?VBDʡEi+1 word falseVBN\(\VBD\(\?i word resilientJJ + @NNV-VBNp= ףi-1 tag+i word NNP euphoriaVBd;ONN`"?NNP7A`?i-1 tag+i word NNP overRPGzIN{Gz?NNP1Zd?VBPMbXi-1 tag+i word JJ cadillacNNOn?NNPOni-1 tag+i word DT rearNNS?JJSi+1 word resistanceNNPV-VBG"~?NNd;O?JJ%CVBD#~j?i+2 word maintainingJJjt?NNjti word delistingNN333333?VBG333333ۿi-1 tag+i word DT tumbleNN5^I ?JJ5^I i word tiresomeJJn?NNni word alleganyDT +޿NNP +?i-1 tag+i word NNS flatNNSClJJoʡ?RBHzGi+2 word maybeNNPSRQ?NNPRQi-1 tag+i word , tobaccoDTzGNNʡE?JJ%Ci-1 tag+i word NN averagedVBNQտRBmVBDx&1?i word foodstuffsNNSZd;O?NNZd;Oݿi word industrializedJJ{GzNNPSVBNI +?i+1 word instrumentsNN&1ҿVBG/$ٿJJ rh?i-1 word savingCCERBR}?5^I?JJh|?5NNPh|?5?NNPSE?VBG^I +NN ףp= ?i-1 tag+i word DT softNN"~FW rhտJJS?i+2 word passedJJSMb?NNMbi-1 tag+i word VBG goodwillNNA`"?NNPA`"i+1 suffix culNNJ +JJJ +?i-1 tag+i word VBP keptVBNGz?INGzi+2 word ensuingDT1ZdIN1Zd?i-1 tag+i word VBD nextJJZd;?RBGzIN/$ۿVBNX9v߿i-2 word mileagePRPHzGJJh|?5INuVRBoʡ@NNA`"˿VBD\(\CCoʡVBN\(\? i word achingVBGGz?NNGzi+1 word heritageJJ?5^I NNP?5^I ?i-2 word adventureVB333333?VBP333333i-1 tag+i word NN featuresVBZ/$?NNS/$ſi word reserveNN7A`?VBh|?5VBP~jti-1 tag+i word CC hedgeVB+׿JJ\(\?NNx޿i-1 tag+i word RB mutualNNP{Gz?JJ{Gzi word dramaticJJ/$?NN/$i-1 tag+i word NN accruesVBZV-?NNSV-i tag+i-2 tag NNS DTRBRMbX9VBG`"οWDTMbX?POS9v?RBQ?NNPS?INv?''KNNx&1NNS1ZdVBV-?RBS +VBDNbX9?VBP㥛 ?VBZ(\RP/$NNPSV-VBNJ +@JJ rhDT'1Z?PRP rhCC? i+2 word gov.RP}?5^I?RB}?5^Ii-1 tag+i word JJ c.d.sNNPSMbX9?NNS"~@NNQNNPJ +i-2 word lowestNN-?JJ+ǿRBmi-1 word highlightNNSK?NNKi-1 tag+i word , agreedVBq= ףpNNx&VBDL7A`?VBN(\@VBP$CRB-i-2 word retainedNNP rh?NN rhi word terroristsVBZCl绿NNSCl? i word kettleNNV-?JJV-i+2 word juttingJJ= ףp=?NN= ףp=i-1 tag+i word `` consensusNN+?JJ+i+1 word disturbedRBp= ף?JJp= ףi-1 word brutallyVBNB`"JJV-ڿVBDrh|?i-1 tag+i word IN downtownVBP+NN|?5^?JJS i suffix ellPRP\(\NNPT㥛Ġ@RBq= ףp@VBDx&1VBNq= ףpCDSVBP ףp= @NNPSV-NNQ?UHI + @VBZd;O@JJ&1JJR)\(VBZ +DTFxNNSˡE i-1 tag+i word CC involvesVBZV-?JJV-i-1 tag+i word VBD iceNNGz?JJGzǿi-1 tag+i word WDT startedVBN?VBDi word engagedVBD(\?VBNX9v@VBPv/ݿJJV-߿VBZMNNxi-1 tag+i word RB comeVBNB`"@JJoʡVBI +VBP)\(?i-1 tag+i word NN ragingVBG?5^I ?NN?5^I i+1 word closingsJJ/$RBw/NNMbX9?i-1 tag+i word JJ herPRP$+?RB+i-1 tag+i word RB reinvestVBZV-VBV-?i+2 word highwaysVBZ rȿNNS r? i word hopingNN5^I VBG5^I ?i-1 tag+i word DT terminatedVBN|?5^@JJ|?5^i+2 word leveragedNN+?RBROnJJRnRB7A`P@INQDTVBClVBG+ i word soilNNS+NNK@JJNbX9i+2 word clothesVBZ}?5^I?VBPjtNNS}?5^IJJjt?i-1 tag+i word DT unidentifiedJJK7?NNK7i-1 tag+i word TO actNNGzֿVBGz? i word gateNNK?NNPKi-2 word conspireVBx?JJxֿi+1 word frequencyVBG)\(JJ)\(?i+2 word anytimeVBNNbX9?JJNbX9i-2 word operaticFWsh|??NNENNPoʡi-1 tag+i word NNPS securitiesNNP +?NNPS +i-1 tag+i word , paralyzedVBNKJJK?i-1 word schemesWDTK7?INK7 i suffix ATTJJd;ONNPd;O?i-1 tag+i word DT starsNNSQ?JJ/$NN"~ji word daihatsuNNP+?NN+ӿi-1 tag+i word NNS cautionVBPMbX@NNMbXi word compatibilityVBPFxNNFx?i-1 tag+i word DT resoundingVBGZd;JJ;On@NN$Ci-1 word commonwealthNN)\(NNP)\(?i-1 tag+i word DT contestJJS"~NN"~?i-1 tag+i word IN supersonicJJ1Zd?NN1Zdi-1 tag+i word -START- acquiredNNPClVBNHzG?CDjti-1 tag+i word , copyrightNNrh|?VBNrh|i-1 word latchJJMINM?i-1 tag+i word DT delverNN\(\?RB\(\i-1 tag+i word VB requiredVBN +?JJ +i-1 tag+i word RB payVBS?NNSտi word gubernatorialJJ +?NN +i-1 tag+i word IN kiwiJJGzNNGz?i-1 tag+i word NN flowingVBGp= ף?NNp= ףi word readingVBPuVVBGV-NNq= ףp @i-1 tag+i word NN impulsesVBZL7A`堿NNSL7A`?i-1 tag+i word RB sendVBx&?VBPx&i-1 tag+i word NNPS leaguesNNSd;ONNPSd;O?i-1 tag+i word -START- directVB'1ZJJX9v?NNPA`"i word coincidentJJZd;?NNZd;i-1 tag+i word PRP$ debutNNZd;?JJZd;i-1 tag+i word NNP summonedJJX9vVBDX9v?i+1 word david INh|?5NNPzGʿVBNQ?VBPQJJKVBZףp= @NNS/$ݿRB9v?NN@VBDQѿi-1 tag+i word NN aerobicsNNM?RBףp= ۿNNS㥛 i+2 word boonVBNbX9NNPbX9?i tag+i-2 tag NNPS VBNNPSQ?NNPQi+2 word recorderNN ףp= ׿NNP ףp= ?i-1 tag+i word DT breakJJR ףp= NN ףp= ?i-1 tag+i word IN j.d.NNPSQNNPQ?i word cimflexJJnNNPn?i-1 word marshallNNP-?NN-i+2 word demeaningVBG\(\JJ\(\?i-1 tag+i word TO zeroNNPʡEտVBvCDDl?NN(\?i-1 tag+i word `` balancedJJ'1Z?VBN'1Zi-1 tag+i word DT passingVBG/$NN/$?i-2 word obtainedJJ?NNd;ONNPMbȿi-1 tag+i word JJ plightNNSClNNCl? i word wavedVBN?5^I ڿVBD?5^I ?i-1 tag+i word NNP conferenceNNV-NNPV-? i suffix diNNV-FWV-? i-1 tag+i word -START- advocatesNNS)\(?NNP)\(i+1 suffix rorJJ$C?NN$Ci-1 tag+i word , outlinedVBN rh?VBD rhi-1 tag+i word DT stiffestNNMbJJSMb?i+1 word refugeesJJA`"?NNPA`" i word stayedVBDK7A`?VBClVBN7A`i+1 word tankersVBGbX9?NNbX9i-1 tag+i word CC callVBZd;?VBP/$NN7A`ڿi-1 tag+i word , areVBPK7?NNPZd;OVB ףp= ǿi-1 tag+i word DT oldestMD~jtJJSn?NN?5^I i-1 suffix indNNPSx&?JJI +@DT"~VBZGzNNjt?VBN"~NNP9vFWV-?INuVͿJJR5^I RBˡECDx&1WP#~j?WDTT㥛 ?NNSSVBGʡEۿPRP$rh|RP{GztRBR~jt?PRPx&? i-2 word mercRBL7A`VBD;OnJJL7A`?VBN;On?i-1 tag+i word DT metVBZ|?5^NN1ZdVBDzG? i suffix ssaFW~jt?NNP~jti word unilaterallyRB)\(?IN)\( i word sailedVBNVBD?i word falselyRBV-?JJV- i word coupsNNSMbX?JJMbXi word promoteVB rh?NN rhѿ i+2 word )FWtV?INsh|?@VBG{GzNNP ףp= @NNPSx&1?JJJ +NNS+VBDQUHtVVBZK7A`PRPFx?VBM?RPHzGCCL7A`?JJSHzG?VBN~jtVBPL7A`NNʡECDl?RBZd;?i+1 word liningJJ?5^I ?RBT㥛 NN/$?i-2 word variesJJKRBK@i-1 tag+i word DT memorandumNNS ףp= ߿NN㥛 ?JJB`"i-1 tag+i word NN overbuildingVBGʡENNʡE?i-1 word preventsVBPS㥛NNS㥛?i+1 word contributedNNP\(\?VBPlVBDX9vi word definitiveJJx@NNClVBףp= i-1 tag+i word DT bloodyNN+NNSQJJ-@i-1 tag+i word VBD bloodyJJS?INSi-1 tag+i word , furnitureJJMbXNNMbX?i-1 tag+i word NNP powerNNPSDlJJRQNN/$?NNPl? i+2 word armsJJ|?5^?NNNNP-i-1 tag+i word IN scrutinyVBN+NN+? i word widowNNS(\ݿNN(\?i-1 tag+i word VBD brendanNNx&1пNNPx&1? i-2 word fansVBPCl?NNCli word grievancesVB1ZdNNSK7A`?NN\(\i-1 tag+i word NN combineVBP'1Z?NN'1Zi-1 tag+i word -START- kkrNNP ףp= ?NNS ףp= i word cambodianJJ?NNPi+2 word defectiveNNS9v?JJ9vi-1 tag+i word DT maximumRBSHzGٿJJCl?NNJ +i-2 word mediaNNS333333?WDTJ +?NN?VBGINJ +i-1 tag+i word DT putsVBZGz?NNGz i-2 word s&lPDTʡEVBPOnVBN㥛 ¿VBDʡE?VBZʡE?i-1 tag+i word VBG brothersNNPSS㥛?NNPS㥛i+2 word valuingNN^I +?JJ^I +i word gooseberryVBPRQVBNGzNN?i-1 tag+i word NN innocenceNN +?RB +޿i word forwardNNSVBN-VBP(\¿RB-@VB"~jRPoʡ?JJ!rhi-2 word jimmyNNPʡE?JJʡEۿi-2 word colleaguesVBDv?VBN +VBPZd;?NNP+?VB@NNjti-1 word prospectDTA`"@WDTd;OINˡEi-1 tag+i word VBG insideRB/$INZd;?VBPx&1 i word lakeNNPrh|?VBP/$޿NNCli-1 word busilyVBGv/?NNv/i word friendlyJJNbX9"@NNSA`"RBX9vNNVBN%Ci-1 tag+i word DT autocratJJjtNNjt?i-1 tag+i word IN zipNNףp= ?NNPףp= i+1 word discretionaryNNPMRBREJJRE?JJ#~jINnDTh|?5@i-2 word pittsburghVBGV-?NNPGz?RPFxٿRBX9v޿NNSJJ/$?IN?i-1 tag+i word VBZ doubtsNNSʡE?NNʡEֿi-2 word offsetNNSQ?JJd;O?NNK7Ai+1 word kraterNNtV?NNStV i-1 word termNNNbX9NNPNbX9?i+2 word surroundingNNSZd;JJSx&NNzG?JJ(\? i word shirtNNS9vڿNN9v?i-1 tag+i word NNP subsidiariesVBZjtNNSjt?i+1 word wideningNNSL7A`?JJL7A`п i word rootNN;On?JJ;Oni-2 word carbideNNbX9NNPbX9?i-1 tag+i word VBN ranNNףp= VBDףp= ? i suffix 597CDS㥛?NNPS㥛 i word torresVBPlNNPl?i-1 tag+i word JJ offeredVBNClJJ(\?NNPˡEܿi-2 word philippineVBZʡE޿VBD(\POSʡE?VBN(\?i+2 word zillionVBNv/?VBDv/ i word quitsNNS rhUH"~VBZS@i-1 tag+i word NN degreeNNT㥛 ?JJT㥛 i+2 word habitatRP!rhIN!rh?i+1 word attendantsCDMbXNNK7A?NNPKǿi-1 suffix 'emRBtVοJJ`"NNP(\?i-1 tag+i word NN pastaNNSKNNK?i-1 tag+i word NN electronicsNNSMb?NNMbпi-1 tag+i word NNS dec.NNPClVB㥛 @VBPffffffRBq= ףpͿVBDx& i+2 word tapVBZvNNSv? i suffix terCCL7A`JJR&1\!@INsh|?CD-VBZ~jtNNPSK7RPJJ(\տNNZd;@VBDX9vPDTX9vWP7A`RB;O@NNSDl)VBA`"VBNʡEsRBR-F#@VBP{GzĿNNPM? i suffix gelNN-CD\(\NNPOn @NNSS㥛JJK7i+2 word standardsWDTJ +?JJOnۿNNPOn?INJ +i tag+i-2 tag NNS WDTIN/$NNS'1Z?VB7A`?NN;On¿VBDv/VBP1ZdۿRBX9v?i+1 suffix ope RB;OnIN&1@NNSL7A`?VB|?5^NNPS}?5^I?JJ-VBDx&1̿VBNNbX9?NNPM@NNRQ PDT/$VBP5^I ۿDT/$?i word finnishNNS rhͿJJK7A@NNP7A`i-1 tag+i word NNPS chargeVBP#~j?NNZd;׿VBZmi-1 tag+i word VBD cerealNNv/?JJv/i+1 word clarkVBDlNNPDl?i-1 tag+i word RB confirmedJJ\(\ϿVBDSVBNbX9@ i-2 word tireRB~jt@IN~jti-1 tag+i word NN vs.IN;On?VBZOnFWʡE@NNK7AJJFx i suffix lavRB&1NNP&1?i+2 word procurementNNS= ףp=JJy&1NNjtRBn@i word groundupJJJ +?NNJ + i+1 word deepVBP~jt?JJX9vοINʡEDTˡEĿRBx?NNMbVBNjtƿi-1 word shortlyINRQ?RBRQȿi-1 tag+i word VB quotingVBG/$?NN/$i word targetedVBNA`"?JJ(\µ?VBD"~i-2 word rallyVBZˡE@NNSˡEWDTX9vWPX9v?i-1 tag+i word RP longtimeJJK7?NNV-RBL7A`i-1 tag+i word VBG amnestyNN)\(?JJ)\(i-1 tag+i word VBN nearJJ^I +RBʡEIN ףp= ?i-1 tag+i word JJ trainingVBGm?NNS㥛ؿJJzGڿ i+1 word cbs RBMb?NNPQ@VB㥛 ?JJh|?5NNy&1WDTQCCMbIN$C?DTv/i-1 word bakerVBD ףp= ߿VBZ7A`ڿPOS!rh?i-1 suffix toyNNM?RBM¿i-1 word generateVBP(\NNSZd;ONN%C?JJV-?VBNʡE i word penceVBX9v߿NNSJ +@NN/$JJFxVBDzGi+2 word obedienceVBGZd;ONNZd;O?i-1 tag+i word NNP catholicsNNPS}?5^I?NNP}?5^Ii-1 tag+i word NN attributedNNPVBN ףp= ?VBD(\?i+1 suffix rilJJ;On¿NN)\(VBD ףp= VBN ףp= ?RB`"INB`"?i-2 word startingNN/$CD/$?i-1 tag+i word VBZ richerJJRA`"?JJ-PRPV-i+1 suffix rnaFWoʡ?NNPoʡi-1 tag+i word VB encouragedVBN'1Z?VBD'1ZԿ i word ashoreRBK?INKi-1 word partnersNNS rNNP+?VBN+VBPI +JJ~jt?VBZʡE?i-1 tag+i word VBG holidayNNA`"?JJA`"i-1 tag+i word -START- markNNFxNNPFx? i+1 word donINT㥛 ?DTT㥛 i-2 word signatureNNm?INmi+1 word keepingVBPS?VBDSi+1 word buyersNNPlVBԿVBP-NN1ZdJJQ@i+2 word recipesNNSʡENNʡE?i+1 word rights VBGK7A?POSMb?'')\(VBPx&1DTEȿNNS\(\VBoʡ?RB"~NNffffff @PDTK7VBN\(\JJx&NNP(\@i-1 tag+i word JJ careVB9v?NNS)\(ܿNNZd;?JJPni-1 tag+i word NN dotVBZMbVBPMb?i-2 word chaseNNP#~j?NNPS#~ji word judicialJJ-?NN +NNPQ?"i-1 tag+i word -START- differencesNNS+?IN+i-1 word historicalNNSh|?5NNh|?5?i+2 word concededDT333333?RB333333i+2 word imposeVBZK7AVBPK7A?JJ;On?VBD;Oni-1 word collorVBP-IN= ףp=?NNPm i word olderNNQJJR!@VBPGzJJoʡNNPGzRBx& i suffix ladNNS;OnڿNNPHzGRB+NNZd;OVBNx&1?VBP`"JJGz@i-1 tag+i word NNS stepVB7A`?VBD7A` i word syrianJJDl?NN#~jĿNNPJ +i-2 word cairoJJ(\?RP/$VBNZd;߿i-2 word responseVB+NNJ +?JJI +?i-1 tag+i word JJ follyNNDl?RBDli word arcadesVBZ+NNS+?i-1 tag+i word -START- trialNNQ?NNPQi word swelledVBNx&1JJMbVBDQ@i-1 tag+i word NNP sullivanNNPSZd;NNPZd;?i-1 tag+i word PRP workVBx&1?VBP(\?RBR)\(NN"~ji+1 word covetousJJ+RB+? i suffix rce VBDClVBNoʡJJRˡEVBPCl?NNPSGzJJ rhٿNN333333@RBJ +VBZ-NNSClNNP"~?VBX9v?i-2 word coverageINMDT~jt?PDT~jtRBM?i word redeemableJJK?NNK߿i-1 tag+i word RB offersVBZn?INni-1 tag+i word VBD devisedJJMbVBNMb?i-1 tag+i word VBD airedVBNp= ף?JJp= ףп i-2 word )JJFxٿNNSv/DTZd;NN5^I ?VBDJ +?CDjtԿVBPʡE?WDT(\µUH$C?VB)\(RPˡEܿNNPy&1RB㥛 VBNS㥛 @IN)\(̿VBZ/$?PRP$-?VBGʡE?$^I +@PRP-i+2 word beatingVB-?IN-i-1 tag+i word NNP traviataNNSʡENNPʡE?i+1 word fertileRBSZd;OǿNNZd;O? i+1 word sengNNPS rhNNP rh?i word disposingVBGˡE?NNˡEi+2 word enjoysVBN~jt?JJ~jti+2 word totallyNNPSPn?NNS㥛 ¿JJsh|?NNPʡEӿi-1 tag+i word NNP attachedVBNS?VBDSi-2 word courtNNl?VBD/$?VBN(\?JJZd;OVBZ|?5^?RB(\?DT"~?NNP= ףp=VBHzGNNPSL7A`?WDT|?5^VBGM?VBPGz?INoʡNNSi-1 tag+i word CC accusedVBNx&1пJJffffff޿VBDK?i+1 word counterVBZ/$?VBzGVBPzG?NNSףp= NNPSS㥛? i word asianJJStVοJJHzG?NNSNNPS?i word maintainingVBG)\(?NN)\(i word defendsVBZ(\?NNS(\i+1 word representativeVBG{GzNN{Gz? i suffix sadVB{GzԿJJGz@NN rJJRw/RBx&NNS5^I i-1 word driftIN?5^I ?RP?5^I i-1 tag+i word POS portfoliosNNSv?NNvi word premediatedUH|?5^JJףp= ?VBDZd;Oi word bullishVBB`"ѿJJCl@NNMbXVBN?5^I i+1 word leadingVBZuVPOSuV?i-1 suffix romEX333333NNPSSPRP$"~j?PRP"~jNNP1ZdӿCC9v?PDT;OnRBRFx?JJR+?UHMbX9VBD(\VBN|?5^?VBP%CRBL7A`ؿVBrh|?VBZjtDTףp= NNd;O?NNSmCD&1?INGz?VBG+@JJE?$v/ݿi-1 tag+i word IN verbatimNNSrh|JJrh|?i+1 word points VBQ?JJ!rhWDT ףp= ?NNS^I +NNSVBD+CD +@RB~jt?WP ףp= NNP{Gz?i-2 word forwardNN-?JJ-i-1 tag+i word IN trumpetVBPjt?NNjt i-2 word krizDTtVINtV?i-1 tag+i word NN cyclesNNmNNSm?i-1 tag+i word VB meaningfulJJR333333JJ333333?i word identifiedJJQVBDS㥛?VBPx&1VBN(\ @i word advisedVBN7A`JJ?5^I VBD~jt?i-1 word rousselRBffffff?NNffffffi-1 tag+i word VBZ satisfiedJJ#~j@VBN#~ji-2 word involuntarilyRBn?INni-1 tag+i word -START- eliDTNbX9NNPNbX9?i+1 suffix .g.NNPSDlѿNNPDl? i word accuseVBP"~?INbX9VBh|?5i+2 word ratedVBN9vJJ9v?i-1 tag+i word DT polesNNPv/տNNPSNbX9?NNSMbX9ܿi-1 tag+i word VBZ aloneJJK7?RBK7 i word paNNSB`"NNx&NNP/$?i-1 tag+i word CC !DIGITSVBʡENNP+?NNSS㥛?JJ/$CD#~j?i-1 tag+i word WDT pegsVBZ/$?VBP/$i-1 suffix uelNNSx&?VBN|?5^?JJ+VBD|?5^NNQ?i-1 tag+i word JJ fundsNNP)\(NNPS\(\?NNS!rh?i-1 tag+i word POS outokumpuNN\(\߿NNP\(\? i+2 word homeJJRx&1?VBZbX9?NNSoʡVBʡENNPS&1VBDL7A`INA`"?JJCl?NNPS㥛?RB"~VBPE?MDNN㥛 JJSClVBNZd;O׿RPK7A`?RBR&1?i+1 word announceNNPSlNNSp= ף@NNPni-1 tag+i word IN repeatedlyRBQ?JJQi-1 word prepaymentNNSV-NNV-?i-1 tag+i word JJ eatingVBGA`"JJA`"@NNʡEi word unhealthyJJQ?VBPQi-1 tag+i word IN derivativeJJx&1?NNx&1i-1 tag+i word POS southwestJJS}?5^INN}?5^I?i-1 word roughlyVBuVտVBPZd;RB rh@VBDZd; i+2 word slipJJRQӿNNP1ZdNNPSDl?NNSClRBRQ? i word insureVB9v?VBPK?NNd;Oi-1 tag+i word NN keptVBD%C @VBN(\RB+IN +i-1 word hypoglycemicNNNbX9?JJNbX9i-1 tag+i word -START- spiegelNN-NNPʡE?NNSS㥛i-1 tag+i word RB farfetchedVBN/$JJ/$@ i suffix dstNNSGzNN\(\?NNPp= ףi-1 tag+i word `` trackingVBG rhNNP rh?i-1 tag+i word WRB crimeNNV-?NNPV- i suffix lueNNSRQNNP ףp= ?NNPSoʡNNMVBN5^I JJMb@i-1 tag+i word VBG mealyJJ7A`?NN7A`i word adjustmentNN/$@JJ/$i-1 tag+i word VBD merelyRB/$?JJ/$ۿi+2 word knowingVBN5^I JJ5^I ? i-1 tag+i word NNP adminstrativeJJZd;?NNZd;i+1 word copiousRB?NNGzNNPQi-1 tag+i word `` putJJ%CNN\(\VBDx&1?VBMbX9?i-2 word hazelnutVBGzFWGz?INK߿i-1 tag+i word DT royaltyNN%C?JJ%C i word easierRBRx&?VBPxRB+?VBZʡEVB1ZdNN7A` JJRM@ i word lackedVBDx&?VBZx&i-1 tag+i word DT offeredVBNbX9?JJbX9i-1 tag+i word RB carryVBRQ?VBPRQi-1 word norwegianVBGrh|NNrh|?i-1 tag+i word , educationNNZd;ONNPZd;O?i-1 tag+i word JJ legislativeVBPK7JJ#~j?NNX9vֿi-2 word votedIN{GzDT{Gz?VB~jt?RBx&1NNh|?5JJv/?i-1 word added JJ rh?NNX9v?VBNSWDTV-NNSGzNNPM?RBzGʿINMbX@DTQi-1 word reflexivelyVBHzG?NNHzGi-1 tag+i word IN fallVBPv?NNPn?JJn i+2 word reyRBSS㥛NNPS㥛?i-1 word candidJJRQNNPxNNV-?i-2 word economistsIN;OnҿVBZ$C?DT?5^I JJDlVBDL7A`?VBNZd;?VBP"~jRBDl?i-1 tag+i word DT atlanticJJS㥛NNPS㥛@i-1 word steamNNMbX9?RBDlJJbX9i+2 word factoryVBQ?RBQJJRJ +?RBRJ +JJKNNPK? i word redNN +@FWx&1пVBD\(\VBNzGaJJT㥛 !@NNSQNNPMb?NNPS\(\i-1 tag+i word VB beginVBq= ףp?NNq= ףp i word speedsNNSMb?NN(\JJ|?5^i-2 word gainingJJ\(\?VBN\(\߿ i suffix ntaNNSӿNNPS㥛?NNSoʡݿRB#~ji-1 tag+i word CD factorNNK7?JJK7i+2 word finlandNNؿJJV-NNPV-?i+1 suffix nstIN/$RBjtNN(\?VBPMbVB(\?NNS= ףp=?FWS?JJR\(\NNPV-NNPSzG?VBDSJJCl VBG rh?VBZ"~jRP(\?RBR\(\?VBN rh@i word franchiseesNNS rh?NN rh i suffix eidNN~jt?NNS?5^I RBR9vRBQ i word centNNSZd;NNZd;@JJT㥛 i-1 word anticipatesRBV-?JJV- i word alarmNN r?JJ ri+2 word discouragesNNV-߿NNPV-?i+2 word competitiveRBףp= VBPףp= ?JJ?NNi-1 tag+i word IN rickeyJJ"~jNNP"~j?i-1 word anyoneVBZl?JJCl?NNSlRB}?5^INNrh|i word pejorativeJJ r?NN r i suffix oapNNSw/NNn@JJx&i-1 tag+i word VBD herJJK7PRPl@DTx&1RB|?5^PRP$)\(i+1 suffix ior INV-?DTClNNPS/$?JJL7A`?NNffffffVBDX9v?JJR~jt?NNSPnNNPy&1|?RBR5^I VBNw/?UH rhٿRB'1Z?i-1 tag+i word VBN roommatesNNS?NNPi+1 word directorateJJjt?CDjti+1 word administratorJJI +?NNPI +i-1 tag+i word TO bigJJFx@NNPFxi word swedishJJK?$&1NN^I +NNPB`"?i-1 tag+i word NNP pulpNNNNP?i-1 word armstrongVBX9v?VBNX9vi+1 word eddieVBPMbX9NN(\?JJKi+2 word measuresVBNGzJJGz? i+1 word nov. VBG-VBDffffff?VBPS㥛?IN333333?NNSGzVBQӿRB333333NNQ?VBNx&1ԿJJv߿VBZV-i+1 suffix romNNPx&1 RBRCl?IN rh?VBDX9vWDT/$VBZlRP&1?PRP rh?CDB`"?NNPSS㥛VBPS㥛?JJjtRB}?5^I?WRBX9vCC}?5^I?UHGzVBGn?DT^I +NNA`"@FWClVB$CۿPRP$x&1VBNK7A`?NNSZd;O?EX/$JJRT㥛 i-1 tag+i word RB forgeVBS㥛?JJS㥛i-1 tag+i word RB mexicanVBZ$CNNP$C?i word fairfieldNNPS`"NNP`"?i-1 tag+i word JJ revealsVBZQ?NNSHzGNNPx&1i-1 tag+i word RB emergeVBZ rhVBx&1VBPQ? i word hatJJw/ĿVBZ~jtNNˡE@JJRffffffRBRjtĿWDTmi-1 word leaderNNPRQ@INjtNN`"RBX9vֿVBD`"i-1 tag+i word PRP$ parkingNNOn?VBGOn i word fuseVB!rhԿNN!rh?i-1 tag+i word `` investorsNNPS9vNNS9v? i word rigVBZRQNNSPnNN;On? i-1 word spinRP7A`?NNSV-RBV-?IN7A`i-1 tag+i word IN extensiveJJy&1?NNy&1i-1 tag+i word NNPS investmentJJ"~jNNP"~j?i word demandedVBN{GzVBD{Gz?i+2 word legislatorsVBZ333333VBN-VBDrh|?i-1 tag+i word IN northJJjt@NN&1NNPQi+2 word soaredNNPSGz?NNS+NNq= ףp?JJ= ףp=?NNPi-1 tag+i word , lostJJV-VBDV-?i+1 word camerasNN1Zd?NNP1Zdi tag+i-2 tag NNP POSCCOn?RB?NNS`"?NNPClNNPSw/?VBZJ +?NN/$?VBD~jt?VBN5^I VBPjtIN(\VBG&1ҿJJOnFWjt?CDI +?i-2 word piggybackingVBNˡE?JJˡEi-1 tag+i word IN wastewaterWP7A`NN%C @JJףp= i+1 word stationaryJJRQ?NNQi-1 tag+i word NNS quietedVBN1ZdVBD1Zd?i-1 tag+i word DT earNNS5^I NN5^I ?i+2 word goodsJJ(\?NNd;OJJRq= ףp?RBˡENNSS㥛?RP?5^I ?i-1 word severityVBG/$?NN/$ i word telosNNSjtƿRBClNNPNbX9?i-1 word wickerNNS+NN+?i+2 word serkinVBZ7A`NNSCl@NNx&VBD+i-2 word weeklyINjt?RBjtNNRQؿNNPRQ?i-1 tag+i word RB remainsVBZ|?5^?NNS|?5^i-1 tag+i word VBP aroundRPK7RBS?INxi-1 suffix howPOS-UH rhRB{Gz@NNPS;On?NN?5^I CC^I +VBN㥛 ¿VBGS VBZsh|?@NNSA`"VBp= ף?VBPq= ףpWDTK7JJRˡERPV-@IN|?5^?RBRh|?5?NNPEJJGz@DT rh?i-1 tag+i word DT amountsVBZ(\?NNPS/$NNSZd;߿i+1 word footballNNPp= ףVB(\пVBG'1ZNNV-@JJw/ԿIN'1Zi-1 tag+i word VBG lieNNPoʡտNNV-?JJuVi-1 word wellcomeRBS㥻?INS㥻i word eurodollarsNNPStV?NNS1Zd?NNʡENNPK i word planesNNSQ?JJQٿ i word rollerJJHzGVBNX9vϿNNS㥛?i-1 tag+i word VB noteVBPQ?NNQi-1 tag+i word VBZ travelVBPm?NNmͿi-1 tag+i word NNS jumpedNN+VBD+?i+2 word eventualVBK7A`NNK7A`?i+2 word capitalsNNS7A`?NN7A` i word silvaNNPENN rh@VBDS㥛i-2 word gleefulFWDl?NNClNNP1Zdi word conceitVBPA`"NNA`"?i-1 tag+i word TO earthNNMbX@NNPMbXi-2 word desertNN?VBGZd;RBNbX9?JJ;On?INNbX9i-1 tag+i word DT mostNNPM@RBSV-@JJSSJJ+NN-i-1 tag+i word NN leftVBZ|?5^VBNK7JJnҿVBDRQ@i+1 word downgradeJJB`"?RBB`"i word granniesNNPS|?5^?NNS^I +NNPi-1 tag+i word NNS valuedVBNZd;O?VBDZd;Oi-1 tag+i word DT nondescriptJJx&1?NNx&1i-1 tag+i word -START- listNNˡE?JJˡEi word surprisesVBZ= ףp=NNPSw/NNS(\@NNPV-i-1 tag+i word NNS leftVBDI +VBPvϿVBNtV@RBPni-1 tag+i word IN reps.NNPMbX9NNPSMbX9@ i-2 word sandVBZMb?VBMbNNSS?NNMbJJ= ףp=?i-1 tag+i word NNP airportNNPSQNNq= ףpNNP{Gz?i-1 suffix donRPMbVB-ۿNNPSPn?JJ7A`@VBGd;OVBZ%CVBDuV?RBR-?VBN~jtVBP"~?RB㥛 ?JJR-CDZd;NNP#~jNNtV?NNSL7A`?i-1 word depositoryVBZvNNSv?i-1 tag+i word VBG harderRBR}?5^I?NN}?5^Ii-1 word sacrificeJJRGz?RBRGz i+2 word pulpVBP^I +?NN(\ſJJ|?5^i+2 word natureNNS(\RBRK7A`?NN(\?JJRK7A`i+2 word parryJJrh|߿NNrh|?i+2 word rayburnNNNNP?i word unveilingVBG!rh?JJ!rh̿i+2 word kiddiesNNPSvNNSv?i-1 tag+i word `` murderJJRGzNN!rh@NNPjt i-1 word 'mNN(\ҿVBDVBNnʿVBP^I +JJZd;@NNP/$VBG`"?RBQ i suffix zacNN+NNP+?i-1 tag+i word CD reflectedVBN-?VBDZd;ONNSDli-1 tag+i word -START- quipsVBZףp= @INh|?5NNSK7NNPzGʿi+1 word reflectsJJ rhNNx&1?RBbX9i+1 suffix ncoVBDn?DT|?5^IN|?5^?JJni-1 tag+i word DT habitatsNNK7A`NNSK7A`?i word choicesVBZ~jtNNS1Zd?NN5^I  i+2 word omanVB;OnҿNN;On?i word swavelyRB?5^I NNP?5^I ?i+2 word trademarksNNjt?JJjti-1 tag+i word RB astoundingNNHzGJJHzG?i-1 tag+i word POS industryNN/$ÿNNP/$?i-2 word conductingVBZQNNS rh?RBlIN= ףp=?i-1 tag+i word CC costsVBZK7A`?NNSK7A`i+2 word until VBGMb?RBV-ҿVBD/$?VBPuVINy&1VB ףp= ߿NNClӿVBN-JJ(\?NNSffffffNNPK7A`?i-1 tag+i word IN saferJJRS?JJS i word yigalCC|?5^NNP|?5^?i-1 word yield RP?VBD/$?RBMb@INClVBZZd;VBZd;OJJl?NNZd;߿JJRI +?RBRI +EXףp= VBGtV i-1 tag TOPRP$Cl?JJRZd;O?VBGoʡ?DT1Zd?NNPSh|?5?JJp= ףPRPV-UH/$FW%C?RBSQ롿JJSQ޿VBDMWP?$Pn?RPrh|RBZd;߿CD5^I ?VBNPnVBPv/ VBZQWDTOnNNP(\?INoʡPDT r?RBR?5^I ?NN-NNSPn?CCq= ףpտVB(\@ i+1 word nbcNNS/$NN/$?JJ$Ci-1 suffix riaVBNV-?VBDV-ڿi+1 word holdingsNNPSX9vNNS~jtNNw/@JJrh|NNPQ?i-1 tag+i word , amountsVBZzG?NNSzGi-1 tag+i word IN prepaymentNNjt?JJjt i-1 word citeRBS?VBSi-1 tag+i word POS sheffieldJJPnؿNNPPn?i-1 tag+i word VBN leeryJJZd;O?NNZd;Oi-1 tag+i word VB issueVB rh?JJ rhѿi-1 tag+i word PRP hurtsVBZQ?NNPSQ i word indianNNPS%CJJq= ףp@NNOnNNPOn i suffix eptVBDy&1@VBN;On?RBRZd;OVBPKCCsh|?IN ףp= @VB rh?RPI +RBnNNx&JJ1Zd˿VBZZd;ONNSvNNP`" i+2 word n.vNNPw/NNPS{GzJJy&1?i+2 word anchorVB?5^I NN?5^I ?i+2 word breaksJJZd;?NNPZd;i-1 tag+i word RB myselfPRPFx?NNFxi-2 word actorVBZ/$?VBD/$i-1 tag+i word VBG lightNNʡE?JJjtVBN ri+2 word w.va.NNPSGzNNPGz? i-1 tag+i word POS manufacturersNNPSq= ףp?NNPq= ףpi-1 tag+i word -START- federalINv/ͿNNS%CNNPuVͿNNx&CD(\JJNbX9@i+1 word effortVBG-?NNh|?5@VBD}?5^IVBNGzVBP}?5^IJJ +@NNP5^I PRP$q= ףp?i-1 tag+i word VBZ allDTGzPDT+JJB`"RBtV@i-1 tag+i word `` collarNNw/?JJw/i-1 tag+i word VBN existVBMbVBPMb?i-1 tag+i word TO everydayVBZd;OJJZd;O? i+2 word etFWNbX9IN\(\?NNPsh|? i+1 word seeMDS?VBѿNNPS~jt?VBPSVBZp= ףNNS)\(?NNPMi word landscapingVBGV-NNV-?i-1 tag+i word JJ orderNNPoʡ?NNoʡi+1 word professesPRPSNN-?CDEi-1 tag+i word VBD sluggishVBN-JJ-?i-2 word ventureJJQٿNNSKNNPp= ף@NN rhVBDq= ףpVBNʡE?i-1 tag+i word DT tenantJJV-NNV-?i-1 tag+i word JJ tracksNNS-?NN-i-1 tag+i word VBP showingVBGMb?JJMbi-1 word pearceVBPx&VBDx&?i-1 tag+i word TO colombianVB(\JJn?NNP%Ci-1 tag+i word JJ beginningVBG&1NN&1?i-1 tag+i word IN licenseNNʡE?NNPʡEi word transplantNNSI +NNrh|@JJʡEi+1 word graedelNNzGNNPx&NNPS?i-1 tag+i word ( heldPRPSJJCl˿VBD;On?i-2 word industryNNSxֿNNP-?NNPSw/?JJQ?CC^I +FWMbJJR/$INS?VB!rhVBG?5^I ?JJS\(\RBS\(\?VBP!rh?RBMb?NN)\(VBDS㥛ؿVBNMb?RBR/$@ i+1 word sureINףp= JJRMbRBMb`?RBR}?5^I?i-2 word climbedRBR7A`?JJ|?5^ٿJJR7A`NNx&1VBNI +?i word volunteerVBv/?NNv/Ϳi-1 tag+i word RB copyingVBG(\?JJ(\ i word evianJJQNNPQ?i-1 tag+i word NN believedVBN333333?VBD333333 i word laneNNP@RBVBDi+2 word stagedNNK7A`NNPK7A`?i-1 tag+i word NN concludedVBNX9vVBDX9v? i suffix lse NNA`ТVBP$CJJOn@NNS/$RBy&1@VBNRQVBZ%CDTMbXNNP+VBKi-1 tag+i word DT past VBGV-JJSlVBNx&1JJ|?5^:@NNSx&1NNPS㥛NNPSZd;RB +NN)\(?INZd;?i-1 tag+i word VB downJJsh|?RP(\ @$RQRB333333INq= ףp?i-1 tag+i word DT damageNN~jt?JJ~jti-1 tag+i word NNP technologiesNNPSCl@NNSZd;NNPFxi+1 word upscaleRB333333IN333333?i word structuredJJ|?5^?VBDClNN-VBNX9v?i-1 tag+i word CC subjectedVBN333333@VBD333333i-1 tag+i word PRP personallyRBCl?VBDCli-1 tag+i word DT shieldNNSx&1̿NNx&1? i suffix husNNPd;OLS(\ڿRB/$@NNPnVBNʡEUHmJJ"~jINZd; i+1 word lin NNEVBDq= ףpRBQJJ&1?INQ?VBNMb?RBR9vJJR9v?NNP r?VBGMbi-1 tag+i word CC controlVBtV?NNx&ѿJJ?5^I i-1 tag+i word -START- psylliumNN-@RBʡENNP~jti tag+i-2 tag : INVBQӿJJ#~j?NN?VBNZd;OUHK7?RBK7i-1 tag+i word WDT prohibitsVBZZd;O?VBDZd;Oi-1 tag+i word RB becomeVBv׿VBP(\VBNtV?i word freshlyRBQ?JJ%CNN1Zdӿi-1 tag+i word WP triggeredVBZV-VBDV-?i+1 word salariesJJx?NNxi word alliancesVBZ/$NNS/$?i+2 word swings NN`"VBN-POSjt?NNS%C?VBZl?VBG9v?RBZd;VBDGz?JJzG?i-2 word cambriaNN`"?VBD`"޿i-1 word require VBG/$JJRn?RBRnVBN/$JJ㥛 @DTV-?RB?5^I NNףp= ?PDT{GzINX9v?NNS333333?i-1 tag+i word VBG falseJJZd;?NNZd;߿i-1 tag+i word CC fruitlessJJn?NNni-1 tag+i word IN shortNNsh|?RBZd;JJ#~j@i+2 word analystsVB/$RBV-@RBRffffffINX9v?NNPSS?VBD/$?VBPQ뱿WDTX9vNNPjtPRPZd;ONNʡEVBNZd;?JJClNNSh|?5?i-1 tag+i word NNS travelVBP?5^I ?NN?5^I i+1 word probablyPOSsh|?WDT(\?JJZd;IN(\VBZ/$?NNS(\NN%C@FW\(\i-1 word improvedJJS?INjt?NNSffffff?VBGA`"RBjtNNZd;?i-1 tag+i word WDT buoyedCCA`"VBDA`"? i-2 word agJJNNPʡE?NNPSʡENN?VBDQ?VBNQi-1 word arousedVBG㥛 ?NN㥛 ڿi+1 word advisedNNCl?NNPCli-1 suffix egyVBD +VBZ +?VB㥛 ?NN㥛 i+2 word presentersVBZ+NNS+?i-1 word october NN rVBD-?VBN-WDTFx?JJ^I +?INFxVBZ!rhԿVBGbX9NNSB`"ɿNNPʡE?i+1 suffix oilVBDV-NNPS`"JJ7A`@CCʡEINNbX9?WDTS㥛RB㥛 VB r?NNsh|??DT~jt?NNSSNNPNbX9VBPK7A`VBZʡEVBN/$?JJRffffff?VBGQRBRffffffi+1 word momentumRBRQDTl?JJRQ?INl¿i-1 word giants VBDRQ@JJRQINNNS9v?VBZd;OFW9v''oʡVBP/$?VBZB`"ٿVBNtVPOSoʡ?i-1 tag+i word VB awakeVBp= ףRBp= ף?i-1 word phonyNNM?JJMi-1 tag+i word -START- verbatimJJMb?NNPMb i-2 word letsVBjt@VBPnRB-JJmտi-1 tag+i word POS attemptsNNSQ?NNQi-1 tag+i word DT argumentNN~jt @JJ~jtINi+2 word lawrencevilleNNPq= ףp?NNPSq= ףpi+1 word exportersJJZd;@NNZd;i word investsVBZZd;?NNSZd;i-2 word alwaysJJRvRBGzNNSxJJ5^I ?RPGz?i-1 tag+i word : breederVBʡENNuVͿNNPl?i word relationshipsVBZS㥛NNS@NN rhi+1 word stressJJ~jt?NN~jt i suffix 690NNS$CCD$C?i-1 tag+i word VBD togetherRP^I +?RB+?PRP$+i-1 tag+i word , mciJJ1ZdNNP1Zd?i-1 word introduceJJv?NNvϿi-2 word reorganizeNNv/?VBGv/i-1 tag+i word DT hardestNNx&ٿJJSA`"?NNSV-i word mourningVBG-?NN-i-1 word atlantaNNx?RBxi word returnsVBZp= ף?VB rhNNPSSNNS}?5^@NNZd; i word rankVBPMbNNd;O?JJ)\(̿VBD rhVBZMbX9i-2 word apparentlyJJˡE?INClDT~jt?VBh|?5RP?5^I ?RB;On@NNˡEPDT~jti+2 word districtNNS{GzNNPJ +?VBG{Gz?NNQVBP{GzJJ#~j?VBZCli+2 word confederationsNNPSS㥛?NNPS㥛i-1 tag+i word JJ presenceNN{GzNNP{Gz?i-1 tag+i word NN spareJJ/$@NN`"VBPMbпi-1 tag+i word NNP earlierVBZGzNNP-RBRoʡտRBZd;O @VBDSi-1 tag+i word IN disarmamentNNʡE?JJʡEi-1 tag+i word `` badVBvNNPv?i-1 tag+i word DT alarmNNq= ףp?JJq= ףpi-1 tag+i word JJ enemiesNNPSh|?5NNSh|?5?i word disastrousJJjt?NN|?5^VBN!rhܿ i-1 word soonRBbX9?VBNV-NNbX9VBDV-@i-1 tag+i word NN dominateVB$C?NN$C i-2 word twNN9v?JJ9vi-1 tag+i word NNP looksVBZ-?MD-i+2 word largestRB333333?IN333333i-1 word seduceDT~jtпPDT~jt?i-1 tag+i word NNS taxNN?5^I ?NNP?5^I i suffix -22JJ{GzNNP{Gz?i-1 tag+i word RBR pictureRB|?5^ɿNN|?5^?i+1 word states VBsh|??VBGx&1?JJx?INd;O?NNSHzGNNPS㥛ĿNNvSYM= ףp=CD+?WDTd;O޿i word conspiredVBDʡE?NNSZd;OVBNX9vi-1 tag+i word DT incompleteJJl?NNli+1 word valuationVBK7JJK7?i-1 tag+i word IN controlsNNS rh?NN rh i suffix lar VBoʡNNPSZd;VBD +VBNX9vJJT㥛`$@DTClRBQ?NNq= ףp?VBZ)\(̿NNSl NNP+i-1 tag+i word CC developsVBZ#~j?VB#~ji-1 tag+i word NN humanJJK7?NNK7i-2 word unisysDTrh|?INrh|i-1 tag+i word VBN promiseNN%C?RB%Ci+2 word elsewherePRP$L7A`?JJA`"NN1ZdPRPL7A`RBV-?NNPˡE?i word independenceNNuV?JJuVi+2 word finalsJJ%C?FW%Ci word minusculeRBSS㥛JJZd;@NN7A`VBNQi+1 word undisciplinedRBSZd;?JJSZd;i-1 tag+i word JJ baitNN rh?NNS rhѿ i+2 word sunkNN/$NNP/$? i-2 tag VBZ!RPGz?RBx&CCffffffRBR&1?EXn?MDV-''bX9?PRPRQ?JJRv߿PRP$y&1?WRBM?INX9v?NNPSJ +?WP rhVBZV-NNuV?VBDKNNSV-?CDQ롿JJ"~?VBMb?PDTrh|DTvUH&1ڿVBGn?VBPxWDT-޿POSGzRBS(\?FW~jt?VBNRQ?NNPI +?JJSbX9i-1 word wisconsinNNP/$?VBNQJJ/$VBDQ?i-1 word abandonsJJROn?RBOn i suffix lonVB= ףp=NNSOnJJ)\(NNCl @NNPK7A`?i+1 word traveledNNnRBGz?VBNtVi+1 word freedomJJˡEINK7A`ݿDTV-?NNS+VBGzNN~jt @CCV-׿VBNX9v?i-1 tag+i word -START- homePRP$NN?5^I @NNPHzGi-2 word clipboardRBףp= INףp= ?i-1 tag+i word RBR yieldNN#~j?RB#~ji+2 word featureRBSv/?JJSv/i-1 suffix tleJJ@VBPL7A`?CD rhVBZ(\NNSV-RPtV@VBN$CWDTM?POS~jtRBR~jt?DT(\NNPq= ףpVBoʡNN(\µ?VBDV-?JJR1Zd?NNPSCl?RBRQ?INxi-2 word managers VB ףp= ߿NN|?5^?VBD +?PDTDT?JJ333333VBN +VBPffffff?RBq= ףp?VBZ+NNS?NNPʡEi+2 word dismissalVBP-?NNSQVBZQ?VB-i-1 suffix ITSVBN9v?RBGz?CDK7A?INy&1VB;OnVBD?VBPS㥛WDTlDT+߿RP1ZdNNPbX9CCV-?VBGFx?POSS㥛?RBRrh|NNPSE?VBZOnJJ rh?NN5^I ?NNSM?``RBSK7?JJRrh|PRP$7A`i-1 tag+i word VBN timelyJJPn?RBPn i+2 word a"VBDS?CD(\VBPn?JJ rhVBZ"~?PRP$ +VBG~jtпRBS rh?JJRClDTxCC+PRP|?5^?VB/$?RBR+EXZd;?RPCl?POS%CFWy&1?MD9v?JJSw/WDT~jt?NNn?NNP%C?WRBbX9?PDTV-INUHClӿVBNy&1?$/$?RBw/?NNSHzG?NNPSx@WP?5^I TOx&?i-1 tag+i word NNP autoNNPSMbX9NNh|?5NNP^I +?i-1 word freightNNS?NNпi-2 word build JJzG?NN`"?RBRClJJRCl?WDTS?NNSoʡ?VBHzGRB`"?INSVBZZd;ONNP)\(? i+1 word dsVBGK7JJ rh?NNX9vi-1 tag+i word JJR moreRBR#~j?JJR#~ji-1 tag+i word RB boostVB ףp= ?JJ ףp= i-1 word forecastingVBV-NNV-?RBK7AпINK7A?i-1 tag+i word NNS fareVBV-@VBPV-NNV-i-1 word survivingNNS?JJSۿi-1 tag+i word NNP homerNNS +ֿNNB`"?RBRQi-1 tag+i word DT restlessJJ$C?NN$Ci+2 word sushiNNʡE?JJʡEi+1 suffix the DTQ8INET@MD333333?VBG&1 @RBSlRBRx&1NNPSx&1?UH rhJJq= ףpWRBZd;OǿVBDoʡ@VBZK7 @CDS㥛?''Zd;O?WPK7A`?CCx?PRPX9v׿NNS/$PDTDl)@PRP${GzVBNZd;OݿWDT(\uPOS7A`RB^I +߿NNPl VBPGz@RPZd;?NN^I +FWV-VBK@JJSClJJRGzi-1 word grossNNS?JJSi word cyclicalNNT㥛 JJT㥛 ?i+2 word streamlineNNSnڿNNCl?JJFxi word assumesVBZd;O @INtVNNSrh|RBZd;OVBDZd;i-1 tag+i word JJ netNNnNNS(\JJB`"@i-1 tag+i word DT unlikelyJJn?RBni+1 word penniesPRP$S?PRPS i-1 word eNNSʡE?NNʡEi+2 word hacklesRBIN?i-1 tag+i word CC heesNNPSK7ANNPK7A?i word rapeseedNNV-?JJV-i+1 suffix itiVBGy&1|?NN333333?JJ~jti-2 word lithographyDTlWDTl?i-1 tag+i word PRP$ moveNNL7A`?NNPL7A` i-1 word alecNNPS\(\NNP\(\?i tag+i-2 tag POS WDTIN%CRB%C? i+2 word red NNSm?RBR|?5^?VBG rh?RBh|?5NN5^I ?JJR-?VBPmJJ)\(̿INh|?5?VBh|?5NNPMi-2 word centersVBK?JJRKRBy&1INy&1? i suffix 60KNNV-@JJX9vNNP\(\i+2 word expiresNN-JJGz@VBbX9?i-1 tag+i word NN criteriaVBZB`"NNSB`"? i word nixedVBPHzGVBDHzG? i+1 word m.w.NNSNNPS? i word makersNNS/$?NNPnNNPSI +i word skittishnessNN rh?RB rhi+1 word circumspectRBRK7?JJRK7ٿi-1 word therapyNNSKNNK?i tag+i-2 tag CC PRP$PRP$+?VB+i-1 tag+i word CC deportedVBDv?VBNvi-1 tag+i word JJ overJJV-INS?RPy&1|NNSK׿i+1 word tacticalVBNZd;O?VBDZd;Oݿi word crimpedVBN1ZdJJ1Zd?i+1 word underwriterVB"~ڿJJCl@NNsh|?NNPˡEi-1 tag+i word NNS serveVBPzG?NNSzGi+1 word longerINbX9?DT VB&1RPV-ҿRB'1@NNsh|?@VBPSJJ/$i-1 word trivestNNPSX9v?NNPX9vi-1 tag+i word TO homeVBSNNS? i-1 word bobNNPSX9vNNPX9v?i-1 word situation WDTl?JJ+VBZ'1Z?VBNbX9RBCl?NN/$ݿNNSDlVBN1Zd?VBPT㥛 @INQi-1 tag+i word POS reservedJJMbX9?VBNMbX9i-2 word slowdownNNSoʡ?JJR/$?JJ9vڿVBZoʡVBPSi-1 tag+i word IN aspiringVBG#~jJJ#~j?i-1 tag+i word PRP$ eighthJJV-?NNV-i-1 tag+i word POS startlingNNsh|?JJsh|??i-2 word symptomsVBN㥛 JJ㥛 ?NN333333VBPn?NNSʡEi-1 suffix jayNNPSI +NNPI +?i-1 word quietlyVBPx&VBDx&?i-1 tag+i word POS brainsVBPKNNSK?i+1 word mikhailWDTh|?5VBN;OnҿRBZd;OVBD;On?INL7A`?i+2 word openedNNPK7A`NNS?VBD rh?VBNKJJ?5^I ?NNS\(\?i+2 word costumeNNPvNNPSʡENNSI +?i-1 word scaringRPGzRBGz?i-1 tag+i word IN happenedJJ+VBN+?i word decimalJJ/$?NN/$ÿ i-1 word poloNNP ףp= NNPSd;O@NNSRQi-1 tag+i word NNP warNNP-?VBPClNNPSSi+1 suffix ptsNN}?5^I?VBNjt?VBPV-JJ$C?NNSuVNNPQi-1 tag+i word JJ nerveNN(\?VBP(\i+1 word dependentNN"~?RB"~RBS{Gz?JJS{Gzi+1 word allegedlyIN(\VBZ^I +@WDT(\?POS^I +i-1 suffix amaNNSMbVBNFxNNT㥛 ?VBDFx?VBZp= ף?i-2 word argueJJZd;O?NNnٿNNPDlVBQVBPQ?i-1 tag+i word VBN insufficientVBNy&1JJy&1?i-1 tag+i word NN disguisedJJMbVBDNbX9VBN(\? i+2 word agNNףp= ?NNP?VBPףp= JJi-1 word interest INn?VBZL7A`NNSQ?RBV-?VBN^I +?VBPHzG?WDTQJJˡEVBHzGNNw/?VBD^I +DTMb?i+1 word reservedPOSffffff?VBZffffffֿi-2 word governNNʡE?RB ףp= VBD'1Zi-1 word reactionsVBPK7?NNK7 i-1 word usedNNMbX?CD\(\PRP\(\?RBQ޿IN;On¿DT)\(?VBK7AпJJHzGi+1 suffix nerVBZ(\DT(\?VBGV-NNDl?VBDtV?CD+WDTsh|?INsh|?տNNSL7A`MD~jtVB|?5^NNPSQ?JJZd;?NNP/$?JJS= ףp=?VBN#~jRBxi-1 tag+i word IN merchantJJ-NN-? i word framedVBN}?5^I?JJ}?5^Ii-1 tag+i word -START- graceNNL7A`NNPL7A`@ i word nerdsNNPSsh|??NNSףp= ?NNP%C i-1 word aidsNNPvNNʡE@FWq= ףpVBPX9vϿVBZSNNSjt?i-1 tag+i word NNP lookVBuV?VBP&1ڿNNA`"˿VBDʡEi-1 tag+i word DT distantJJ?NN i word lonelyJJzG@RBzGi-1 tag+i word VBP deserveVBw/?NNSw/Կi-1 word withholdingNNS`"?NNP`"i-1 tag+i word '' songRB\(\׿NN\(\?i+1 suffix oldNNPSZd;FWCCoʡ?JJX9vNNS}?5^I?RBv/?DT)\(NNPffffff?CDnMD5^I ?VB(\VBGGzNNZd;O?RBRffffff?VBPd;O?INDlVBZlڿVBNjtWDT}?5^I?RP}?5^I?i-1 tag+i word NN fundsNNS{Gz?NN{Gzi-1 word stonesVBN?5^I ?VBD?5^I i word geneJJClNNPCl?i word transferVBGz @NNx&1@JJR|?5^ڿVBP'1ZRBNbX9VBZ333333NNSKNNPi-1 tag+i word RBR perJJ ףp= IN ףp= ? i word monetsNNSSNNPSS?i+2 word suggestVBDffffff?VBNX9vVBPS?UH;OnJJJ +?MD;On?VBSi-1 word julianNNZd;O?NNPZd;Oi-1 tag+i word JJR symbolismNN(\?JJ(\i word createdJJ~jtVBD?VBNNbX9?i-2 word bought NNS~jt?NNPS~jtпJJh|?5VBDK7?VBNK7VBPjtRB(\?VBG?NNV-IN(\ڿNNP#~j@i-1 tag+i word DT lightJJQ?NNQ i suffix herNNPSClVBD{Gz WPK7AVBG(\CDV-JJR`"y@UHK7FWZd;OLSI +VB9vEX}?5^INNRQRB rh@DTNbX9@RP-?RBRK7@JJV-2WRBʡEIN rhٿNNP-VBZOnNNSy&1,PRPx&1@CC%C @PRP$(\u@VBPClWDTbX9VBN"~ji word merksamerNN-ӿNNPzG?NNPSˡEi-2 word kennedyVB +?RB +i+2 word disruptedNNPS/$NNףp= ӿNNPʡE?i-2 word trackNNS|?5^JJ"~jNNP"~j?VBZ|?5^?i-1 tag+i word NN kitVBZL7A`NNL7A`?i-2 word scramblingVB+?NNSJJHzGi+1 word counselJJv@NN/$NNP(\?INDlVBPi-2 word visitsVBףp= ۿJJ-?CDoʡi-1 tag+i word NN premiumNNSClNNCl?i-2 word pushedRBR|?5^?RBnJJR+ηi-2 word industrialNNPSS㥛?VBD?VBNS㥛?JJQNNSy&1?NNPS㥛 i word shereNNPʡE?NNʡE i word tileJJRX9vNN^I +@INX9vi+1 word enemiesJJZd;O?NNZd;OVBDB`"VBh|?5@VBPV- i+1 word walkNNd;O?JJ+NNP+i+2 word faithPDTZd;OVBNn?VBD+ۿi-2 word listlessVBG?5^I JJ r?NNzG i word adultsNNSV-@VBNX9vNNi-1 tag+i word CC treasurerNNPS$CNNP$C?i word malignantJJtV @VBP= ףp=NNʡERBZd;OͿVBNK7A`տi word poweredVBNCl?VBDCli-1 tag+i word CC wantedVBNv/VBDv/?i word paintingVBGtVNNS㥛?JJ333333i-1 tag+i word CC increasesNNS7A`VBZ7A`?i+2 word johnsVBDK7A`IN+?VBGh|?5i+2 word bicentennialNNuVݿNNPuV?i-1 tag+i word NN slumpVBZy&1NNy&1?i+1 word fatalVBNx&JJB`"۹VBDMb?i+1 word hauntedVBGCl?NNCli-1 tag+i word JJ nikesNNP$CNNPS$C?i-1 suffix lemJJMVBZd;O?DTlNNS(\NNPMbX9NNM?WDTl?i+1 word sterilityJJ㥛 ?VBNV-NNq= ףpi-1 tag+i word NN patrolNNMb?JJ{GzVBZd;i+2 word statismRBbX9?JJNNP+i+2 word secretJJ1ZdNNP1Zd? i+2 word joseVBZ333333?NNS333333i+2 word consolidatedNNPSq= ףpNNSI +@NNPX9vֿ i suffix pedNN1ZVBDˡE=0@NNPS{GzRP(\RB r JJ;On?VBG5^I ۿVBVBNt'@VBP\(\VBZOnNNPSNNS= ףp=IN}?5^I̿i-2 word crescottNNPS&1NNSV-NNPB`"?i-2 word processRBoʡ?NNʡE?VBDCl߿VBNʡE?VBPKJJtVVB/$?VBG ףp= ?i-1 tag+i word IN helpNNSy&1NNy&1?i-1 tag+i word NN embracesVBZ;On?NNS;Oni-1 tag+i word RB bizarreNNSZd;OJJX9v @NNZd;OVBDGzi word moreoverRB/$@NN/$i-1 tag+i word VBZ subjectJJ"~j@NNSRBʡEVBNd;Oi+1 word stepchildrenVBNV-JJv?IN9vi+2 word companyRP(\?VB$C˿VBG?VBDffffff?VBP㥛 NNsh|??CCsh|?IN1Zd@DTx& @PDTtVNNSS?RBnVBZZd;?NNP= ףp=NNPS +ֿJJQVBNףp= ?JJRbX9 i-1 word fameNNSuVNNQVBZ?i-1 tag+i word VBD fraughtVBNףp= JJףp= ?i-1 word jitteryNN1Zd?JJ1Zdi word seizureVBuVNNʡE@JJS㥛i-1 tag+i word IN olympicsNNPSMbX?NNS(\NNPT㥛 i+1 suffix losVB/$?VBG/$?NN/$VBP/$WDTClINCl?i-1 tag+i word CC rationalJJ1Zd?VBD1Zdi-1 suffix ful VBN{GzEXSDT{Gz?NNS(\?NNPSNNPS~jtVBGٿJJT㥛 ?NNˡEFWffffff?RB%C@VBZ-i+2 word measureRBR/$VBN)\(?VBG^I +NNuV?RBDl?JJR/$?NNSENNP-VBK7A`տJJ}?5^IVBP;OnVBZ= ףp=?VBD$CӿPDTʡE?i-1 tag+i word NN poisedVBN"~?VBD"~i tag+i-2 tag RBR VBDJJoʡNNbX9VBNˡE?RB333333ӿIN+?NNSV-?i-1 tag+i word NNS funneledVBNOn?VBDOni-1 tag+i word CC premieredVBNףp= VBDףp= ?i-1 tag+i word , cleverlyRB+?JJ+i-1 tag+i word DT sightseeingVBGJ +ɿNNJ +?i-1 tag+i word VBP temperatureJJQۿNNQ?i-1 tag+i word NN complainsVBZ+?NN+i-1 tag+i word DT federalJJMbNNPMb?i-1 tag+i word WDT bannedVBNjt޿VBDjt?i-1 tag+i word , keptVBDQ?VBNQi-1 tag+i word VBD offeredVBNV-?JJV-i-1 tag+i word VBG lexusNNffffffֿNNPffffff?i-1 tag+i word RB asksVBZHzG?VBHzG i-1 word betaNNSQ?VBZQi+2 word quotedVBP\(\VBG?5^I NNףp= @JJ1ZdNNP$Ci-2 word channelsJJE?VBDEi+1 suffix aitJJ rh?NN rh i word engageVB@VBP ףp= ?NNSDlNN$Ci-1 suffix rveNNPS|?5^?VBZ7A`WDTx&?RB(\ݿNNP|?5^?JJ$CNN|?5^RBRQNNSK7ɿVBw/ԿVBD$C?DT rh?JJRQ?IN333333 i word banqueNN rNNP r?i-1 word broadNNV-?JJʡERB333333i-1 tag+i word CD indicatesVBZףp= ?NNSףp= i-1 tag+i word JJ kindsVBZh|?5NNSh|?5?i-2 word brusselsNNPSPnNNPPn?i-1 suffix oll VBKVBN㥛 ?INsh|?VBZMbVBGX9v?RB}?5^I@NN{Gz?NNSʡEJJX9vϿRP#~j?i-2 word cheneyJJSn?DTDlRBSnINDl? i-1 word jcpNNPSw/?NNPw/i-1 tag+i word NNS landVB/$NN/$?i word boundingJJS㥛VBGS㥛?i-2 word researcherJJ"~j@NNP"~j i-1 word teaVBN(\JJ-?VBDx&1i+2 word afterINx&1?VBZ(\DTKCDS?VBP}?5^IPRPSVBffffffVBD\(\?JJp= ףNNS^I +@JJR?VBGZd;OͿRBX9vVBNʡE?NNPCl?NNPS+NNS㥛?i-1 tag+i word IN noJJuVDTV-@UHCl?RBffffffNNPZd;Oi-1 tag+i word NN aircraftNNSx޿NNZd;O@RB(\VBD(\ i word oilJJ'1ZNNPV-NNQ @NNSK7A`UHS㥛i-1 tag+i word JJ chemicalNNX9vJJX9v? i-1 word pureNNPn?JJPni-1 tag+i word , nervesNNSx&?PRPx&i word actuallyRBˡE?NNPˡE i-1 word shipVBG"~ڿJJX9v?NN;Onҿ i suffix ASNNPA`"˿INA`"?i-1 tag+i word VBP shortJJy&1?RBy&1i-1 tag+i word VBG declinesNNSM?RBMi word contrastJJClNNx@JJSB`"VBN|?5^RBnٿNNSni tag+i-2 tag VBP POSVBPK?NNSKIN+?WDT+i-1 tag+i word DT veteranFWClJJzG@NNMb i suffix ujiJJ|?5^NNSV-@NNP"~?NNPS\(\NN rhCDCl i word tuftsRB-NNP-? i word ageRB+NNP+?i-2 word crucialVBT㥛 VBG9v?NN|?5^ҿJJ/$?i-1 tag+i word , sealedVBNV-տVBDV-?i+1 word claimingRBV-?JJV-i+2 word knottyVBP-?NN-i+1 word brianNNh|?5?NNSh|?5i-1 tag+i word IN kyleNNPK7A`?FWK7A`ݿi word secretlyRB"~?NN"~i-1 tag+i word NNS bringVBPffffff@VBGffffffi-1 tag+i word -START- toughINzGJJV-?NNPˡEi word normallyRBtVNNPtV?i-1 word imbalancesWDTjt?INjti+1 word combineNNʡE?JJʡEi-1 tag+i word IN middayNNrh|?JJrh|i word cambodiaNNSNNPS?i+1 word bethforgeVBG$C?JJ$C˿i-1 tag+i word PRP handedVBZnѿVBDn?i+1 word bargainVBK7NNK7?i word speculationDTZd;NNZd;?i-1 tag+i word DT conflictNN;On?JJ;Oni+1 word backingJJL7A`?VBNL7A`i-1 word placementIN ףp= VBN$C?VBDrh|i-1 tag+i word RB mutilatedVBN9v?JJ9vҿi+1 word resources JJRn?JJS@NNK7ARBRnVBNh|?5NNSJ +NNPx&1 @NNPSQտVBG&1i+1 word diplomacyVBG}?5^I?NN}?5^IԿi-2 word ronaldVBZ+NNPST㥛 POS+?NNPT㥛 ?i tag+i-2 tag CD CDVBPMRB333333?VBPnCC/$JJSQVBGQݿVBN{GzܿDTV-?RP9vNNS7A`?NNP +INFx?VBD%CԿNN)\(?JJ;On?VBZHzGFWA`"?RBRHzG?CD&1NNPS{Gz?JJRuVտWDTEi-1 tag+i word DT settlementsNNQNNSQ?i-1 tag+i word CC shiftingVBGsh|??NNsh|?տi+1 suffix minNNjtRB5^I INI +?i-1 tag+i word -START- ryderNNP-?NN-ֿi-2 word syrianNNB`"?INB`"ٿi-1 tag+i word JJ eventsNNPSS㥛NNSS㥛?i word yearbooksNNS rh?WDT rhi-1 tag+i word CC looksVBZRQ?NNSClJJ-i-1 tag+i word -START- cladRB+VBN|?5^?NN'1ZԿNNPHzG i suffix olfVBZClVBGV-NNS㥛D@JJ-i word finishesNN rhٿNNS rh? i+2 word s&pVBPZd;O?JJ$C@VBZ"~j?NNSGzNN/$VBDS i suffix wed IN= ףp=NNS"~j VBGMbRB rNNZd;OVBNMbXy,@JJFxVBjtVBDS+@RBRsh|?VBP}?5^IVBZn i-1 word clarinetistWDT+VBD+? i-2 word boomIN}?5^IԿJJB`"?VBN{GzRBbX9޿i word detailingVBG= ףp=?NN= ףp=i+2 word memoriesVBD#~j?JJ#~jĿNNSQVBKRBףp= ?NNK7i-2 word polesVBN}?5^I?VBD}?5^Ii+1 word repaidVBP|?5^RB|?5^? i word unescoNNPMb @JJ+FW+VB7A`i word circlesNNSV-?NNV-i-1 tag+i word PRP$ mostRBSv?JJSvi-1 tag+i word CC tourVBZ"~jVBx&?NNh|?5VBD&1i-1 tag+i word VBP blessedVBNQ?JJQi-1 tag+i word DT legumeNNGz?JJGz׿i-1 tag+i word NN nuggetNNPSOnNNPOn?i+2 word separateVBGzG?NNZd;OVBD9v?CD5^I ?WDTV-?INV-VBZ9vNNSGz? i-1 word pcsRBʡE?JJʡEi-1 tag+i word `` glasnostNNGzFWGz?i+2 word attributedJJbX9NNbX9?i+2 word plottingVBNDl?VBDDli-2 word givesCCʡERBZd;ODTZd;O?NNPh|?5NNPSh|?5@RPmNN/$?i-1 tag+i word RB beginVBP?NNp= ףVBQֿi-1 tag+i word IN offsetVBPzG?VBN+?NN~jtÿJJ-VBX9vi+2 word rocketJJNNP?i+1 word slowlyVBK7VBPZd;?RBRL7A`?NNh|?5JJRL7A`i-1 tag+i word JJS nextJJK7?INK7i-1 tag+i word IN organizedVBNS?JJS i-2 word wooNNI +?JJI +i-1 tag+i word NNP angelsNNPS|?5^@NNP|?5^i-1 tag+i word -START- atlantaNNSoʡݿRB#~jNNSӿNNPS㥛?i word sheffieldJJPnؿNNPPn?i-1 tag+i word VBG shippingVBG^I +NN^I +? i+2 word lose NNPMbX?MD rh?JJd;O?VBDnٿVBPV-?RBd;OVBZNNSx&1ܿVBG/$NNMbؿi-1 word billionVBGh|?5?FWV-INp= ף?NNPnNNS)\(@JJRZd;VBPnJJffffff?CCK7ARBRZd;@DT +޿NNjtVBD rh?VBN-?RBh|?5οi-1 tag+i word CC existingJJ)\(VBG)\(? i suffix -onNN-NNSrh|?JJm?i-1 tag+i word CD frenchNNP(\@NNPS ףp= JJDlNNA`"i-1 tag+i word JJ manorNNSV-NNV-?i-2 word reluctantVBA`"@VBPQNN333333JJsh|?ݿi-1 tag+i word IN utterlyRBuV?JJuVi+1 word vomicaNN/$@NNP/$i-2 word number JJMb@IN̿VBZ"~jNNSMbX9?NNPSy&1RBp= ף?NNX9vVBNZd;NNPOn?i-1 tag+i word VBD meetingVBGK7A?NNK7Ai+2 word painterNNPjtJJjt? i+1 word l.p.NNPSbX9޿NNPbX9?i word ultimatumsNNSOn?NNZd;OJJEi-2 word valdezVBQNNSv/ݿNNB`"?i-1 tag+i word JJ rushNNuV?NNSuVi+2 word brokeragePDTK7VBNQ?RBX9vINX9v?VBZGz?NNSGzVBK7?VBDQi-2 word plentyUHx&NNSx&?NNV-?JJV-i-1 tag+i word VBN unfairlyRB-?JJ-i-1 tag+i word NNP actressNNS㥛?JJmNNPbX9޿i-1 word privateVBG^I +NNbX9?JJh|?5?NNSGzֿNNPzGNNPS)\(i+1 word floorVBNCD-RBIN?NNSMbX9JJGz@NNS?i+2 word maturityVBPh|?5޿JJQVBtV?RBv/?NNw/ĿVBN+? i+1 word leeNNPS?JJ(\ڿNNPRQi tag+i-2 tag WRB VBPVBZ%C̿NNS%C?VBNʡENNʡE?i-1 tag+i word WDT banVBZףp= VBPףp= ?VBDףp= i-1 tag+i word NN includeVBZd;?RP+NNuVVBDbX9VBP|?5^@JJV- i word heapNNI +?RBI +i-1 tag+i word NN disasterNN(\?JJ(\i-1 tag+i word IN oddsNNSS㥛 @JJRBK7 i word askRB1ZdINq= ףpVBV-@NNGzVBDʡEVBP= ףp=?i-1 tag+i word JJ tapingVBGV-@NN|?5^JJ`"i-1 tag+i word DT utterJJ$C?NN$Ci+1 word sterlingVBFx?NNFxVBDsh|??VBN rhJJQNNPp= ףi word explainingVBGX9v?NNX9vi-1 tag+i word VBG geneticallyRBV-?JJV-i word pennsylvaniaNNPSGzNNPGz?i-1 suffix abyNNPSV-NN= ףp=JJSۿNNPV-?VBDʡE?i word outlinedVBNS?VBDS i+1 word dropJJPn?NNSK7VBGHzGRBGz?NNPnVBN-?CD\(\i-2 word advisoryVBNGz?JJGz i word visitVBK7?NNzG?JJB`"NNPKi-2 word tingesNNSQNN5^I ?JJS㥛i-1 tag+i word NNP libraryNNV-?JJV-i+2 word edelmanDTffffffNNPffffff?i-1 tag+i word NNS ariseVB%C@VBP{GzԿRBzGNNI +i-1 tag+i word JJ costNNS^I +NN^I +?i-1 tag+i word JJS votingNNʡE?JJʡEi-1 tag+i word DT routeNN"~j?JJR"~ji-1 tag+i word NNS clippedVBN)\(?VBD)\(i-1 tag+i word NNS concernedVBPZd;VBNZd;?JJ r @VBD r i-2 word assemblymanNNףp= ӿNNPףp= ?i-1 tag+i word TO flowNN(\ݿVB(\?i-1 tag+i word -START- murataNNPZd;O?NNS(\NN㥛 ҿi word anythingJJZd;RPS㥛ĿNNPVBG7A` NNQ@VBPsh|?ſi-1 tag+i word JJ institutionalNNPK?JJKi+1 word bebearJJbX9޿NNPbX9?i+1 word winnersNNd;O?JJd;Oֿi+2 word pushingVBN!rh̿JJ!rh?i word ultimatelyVBP333333RBRQ@JJPn i+2 word hitsJJ+?RPzG?NN+RBzGi-1 tag+i word RB chosenVBʡEVBNv?JJPnؿi-1 tag+i word IN articleNNMbXNNPMbX?i-1 tag+i word : remainsNNSVBZS?i-1 tag+i word IN serviceNNS㥛?JJS㥛i-1 tag+i word DT radioNNPSʡENNʡE?i-1 tag+i word NNP gloatsVBZq= ףp?VBDq= ףpͿi word concoctsVBZ+?NNPSMbNNPZd;Oi-1 tag+i word JJR mesaNNQNNPQ?i-1 tag+i word JJ horizonNNSMbؿNNMb?i-1 word pressedRB?5^I ?JJ?5^I i-1 word estimatesVBGtV?NN+VBP|?5^ٿRB= ףp=INx?DT^I +׿ i-2 word katzJJ~jt?NN~jti word reinstalledVBNjt?JJjtֿi-1 tag+i word CC breachVBClNNCl?i word lifesaversNNPS rh?NNP rhi-2 word clashedNNSQJJQ?i word prospectusJJ9vNN9v?i tag+i-2 tag MD VBZVBd;O?RBd;Oi-1 word lexusNNMb@NNPMbi-1 tag+i word CD rentedVBNX9v?JJX9vi-1 tag+i word IN scientificJJˡENNPˡE?i word glitteratiNNPSK7A`NNS ףp= @NN1Zdi tag+i-2 tag POS VBVBjtֿJJV-?NN+NNP"~?i word salisburyNNV-NNPV-?i+1 word accuratelyRBR/$?JJR/$ i word aztecUHʡEۿJJ;On@NNPV-i-1 tag+i word TO germanVBˡEJJ{Gz@NNP ri-1 tag+i word VBD breathyVBNSۿJJS?i-1 tag+i word NN screenVBZ(\NN(\? i+2 word sickVBZQVBQ?i-1 tag+i word TO touchJJ}?5^IܿVB}?5^I?i-1 suffix cmsVBN +VBD +?i+1 word houstonCCffffff?NNPffffff i word affairNNS ףp= NNrh|?RB7A`ҿNNPNbX9?i+2 word wordplayNNSX9v?NNPX9vi word attentionVBZd;@NNtVNNPK7Ai-1 tag+i word VBZ achieveVBP/$?JJ/$i word surviveNNPSx&1пNNV-߿VBP`"@JJףp= NNPZd;OVBZd;O?i-2 word tiniestVBPh|?5޿NNh|?5?i-2 word therapyVBZ9vNNS9v?i-1 tag+i word NN affiliateVBnNNn?i-2 word proposal IN/$?NNPK7VB ףp= ?NNPSK7?VBNq= ףp?RB/$RBR9vJJR/$VBG/$?JJX9vNNMbVBD{Gz? i word crsNNSOn?NNPOni-2 word sunglassesNNS㥛?RBS㥛i+1 word spreadNNS%C?NN rhJJx&1NNP`"ֿi-1 tag+i word NN certificateNNV-?VBDV-i-1 word shuttlingVBP= ףp=NNoʡ?RB/$i-1 word plainVBG5^I JJ"~?NN\(\VBDףp= ?i-2 word disposableIN-?VBZQNNS(\NN\(\@WDT-i-1 tag+i word NN bitPOSClNNCl? i suffix istJJrh@NN;O@PDTClDT|?5^NNS\(NNPSQRBRMVB- @VBD7A`CDx&1VBPʡ@VBNx&RBtVINX9vNNPZd;O i word alarJJ"~RB'1ZܿNNPʡE?NNjt?i-1 tag+i word DT needVBNV-NNQ @NNSQRBS"~j i word ratherRBT㥛Ġ@DTK7ѿNNPlJJRMbX9RBR`"UHK7PRPʡE i suffix opyVBP/$?NNSGzNN(\?JJ= ףp=NNP/$i+1 word businessmenVBNuVJJn@NNP`"i-2 word sophisticationWDTzG?INHzGDT{Gzi-1 tag+i word DT manufacturingVBG rh@JJX9vNNli-1 word proceduresVBNuV?VBDuVIN\(\WDT\(\@i+2 word performancesVBZS㥛?NNSS㥛NNoʡVBDK7ٿVBPK7?JJoʡ?i-1 word struckRP/$?IN/$i-1 tag+i word -START- whamSYMUHv/?NNK7ٿNNP(\i-1 tag+i word CC contaminatedVBN|?5^?VBD|?5^i-1 suffix iteNNPS)\(@NNS~jt@VBZ+η?JJ'1Z?JJRSVBSVBG7A`NN"~?PDTuV?RPGz?VBDX9vVBN?CD-?RB%CIN(\DT +NNPtV i+2 word drewVBGd;OJJ"~j?NN= ףp=i-1 tag+i word VBP mitreNNPNbX9?NNPSNbX9 i suffix Ba3JJS @IN-ƿVB"~jNNP/$i+2 word projectsNN̿VBN(\?RB+NNSvNNPK7A?VBv?VBGQ?JJS㥛 i+2 word momVBNMWDTy&1RBS㥛INuVտDTRQ?JJM?i+1 word poorerVBP1Zd?JJOnNN\(\߿i-1 tag+i word NN tonightCCClNNCl?i+1 word showing VBPINE?NN&1POS㥛 JJHzG?VBZZd;?NNSI +?RPEPRPZd;O߿ i-1 word cie.JJ(\µNNP?FWPn?INx&ѿ i word jamieJJ(\ڿNNP(\?i-1 tag+i word `` climateNNT㥛 ?JJV-NNPQտi+1 word assetVBZd;O?VBGnJJ^I +@NN#~jVBN%C?RB$CRPMbi tag+i-2 tag CD WPVBDT㥛 VBNT㥛 ?i word landslidesJJؿNNSZd;?JJR333333i-1 tag+i word VB climbedVBN= ףp=JJ㥛 ¿VBD rh@i-1 word associationVBZ?NNPVBN"~VBD"~?i-1 tag+i word NNS toldVBN?5^I ¿VBDJ +?VBP~jti-1 word councilNNSEPOSʡE?NN&1VBZʡE?VBP&1?i word severanceNNZd;?RB/$JJ rh?i-1 word bradleyNNPn?NNPx&VBDZd;i+1 word sponsoredNN1Zd?RB1Zd i-1 tag+i word NNS manufacturingVBGNbX9ؿNNNbX9?i+1 word seizuresNNh|?5?RBvJJZd;Oi-1 suffix venUHzGڿRPy&1@VBZZd;OVBrh|?NNPSl?VBG+JJSw/?JJRX9v @VBN|?5^ DTV-?JJNbX9NN`"VBPM?VBDK7?RBS rRBROn?WDT\(\@RBX9vINjtNNPV-NNS?i word harmlessVBSJJ/$?NNʡE i suffix man IN/$޿JJ-'@JJR7A`NN~jt@NNPSʡEVBNoʡPOSVBZQDTClCD㥛 NNSv/VBx&1NNPZd;O @i-1 tag+i word CC s&lsNNS&1?NNPPnNNPSX9vֿi+2 word reactorVBNrh|JJrh|?i word vegetableNN/$@JJ/$i+1 suffix ontNNPSx?RBCl?NNy&1̿JJy&1?INClٿNNPxi-1 tag+i word , borrowedVBN= ףp=?VBD= ףp=i-1 word mulfordNN+VBD+?i-2 word inventivenessVBNm?JJmi-2 word cultivatingNN-?JJ-i-1 word studioVBP`"WDTmݿVBN"~j?INm?VBD7A`ҿi-1 tag+i word VBZ dutyNN)\(?JJ)\(i-1 tag+i word PRP$ headNNn?JJnڿi-2 word currenciesVBˡEJJ$C?NNPK7i+2 word coatingsJJd;O?VBDd;Oi-1 tag+i word VBZ consideredVBNCl?JJCli-1 word attributedRB~jtJJ~jt?i-1 tag+i word IN incrediblyRB/$?JJ/$i-1 tag+i word CC tripledVBN'1Z?VBD'1ZĿi word upgradeVBffffff?NNQ?JJ(\ i suffix ait VBDd;OVBPʡE @NNS)\(JJx&1NNjt@WP/$VBZmVBp= ף?RBSi-1 tag+i word JJ tacticNNrh|?JJrh| i word socketNNv?VBDv i+1 suffix iVBx?RBV-VBN/$VBP!rh?WDTbX9NN|?5^@CDy&1?JJxINףp= ?DTSWRBzG?VBD)\(?NNP333333NNSQ?i+1 word seekingNNSMbX?NNGz@NNPGzVBZMbX i word tartanNN㥛 ?JJ㥛 i suffix kVBN-NN-? i-2 word inksNNzG?JJzG i suffix aphNNPSzGNNS/$ۿNN/$?JJK7A`NNPzG?i-1 word surgeonVBNrh|?VBDrh|i-2 word zapfelJJ ףp= ?NNoʡݿVBP$C i-1 word itsRBDlVBNbX9INmտCDT㥛 NNNbX94@VBD rhVBP-޿JJ|?5^?NNSA`"?JJRx&?NNP(\@VBGxRBRvNNPS333333?JJS9v?RBSbX9?VBZrh|i-1 tag+i word NNP basketNNjtNNPjt?i-1 tag+i word PRP strugglesVBZw/?VBDw/i-1 word watchdogVBNzGVBDzG?i+1 suffix arzNNPS rNNP r?i-1 word arrangementVBZx?NNSxֿi-1 tag+i word NNP monteNNPSV-ҿNNPV-?i+1 word townsNNʡE?NNPʡEVBP;OnUHʡEJJ#~j@i+2 word cellsJJ rh?VBN rhͿi+2 word shicoffNN!rh?JJ!rh̿i-2 word reformsFWX9v?RBT㥛 ?NNMINuVi word dependentNN^I +VBlJJx @i+1 word terribleDTn?WDT!rh̿INʡEi-1 tag+i word -START- provinceNNnNNPn?i-1 word calculatedDTK7AINK7A?i-1 word afterPDTuVWDT= ףp=RBNNSHzGVBGn@NNCl?JJR r?RBR rVBNA`"ۿINʡE?DT rh@NNP~jtJJE?FW^I +JJS+VBPJ +ٿ i-1 word run NN~jtCD rh?RBףp= @NNSV-NNPClVBRP1Zd@JJ9vFWX9vοPRP rhٿINx&1i-1 tag+i word RBR disciplineNNףp= ?JJףp= i+1 word designerMD~jtJJS~jt?NN= ףp=?JJV-׿VBDJ +ɿi-1 tag+i word DT acquiredNNI +VBNʡE?JJK7A`i-1 tag+i word DT vaccineNNQ?JJQٿi+1 word repelVBZNNS?i-1 tag+i word DT haltVBN9vNN9v? i word spikedJJ/$VBN/$?i-2 word complainRBʡEINʡE?i-1 tag+i word VBD brianVBNNP? i word cyNN rhտNNP rh?i word brushbacksNNSCl?JJCli+1 suffix olmJJrh|NNPrh|?i word decentralizedJJ`"VBNK7?RBQi-2 word proteinsRBR= ףp=?NN= ףp=i-1 tag+i word , declinedVBNV-VBDV-? i word dogmaNNSQNNCl?NNPT㥛 i-1 tag+i word DT sprayNN ףp= ?JJ ףp= i+1 word weakenCC(\RBZd;O?JJMbX i+1 word dragNNS)\(@JJ)\(i-1 tag+i word VBZ askedVBNʡE?JJSÿVBDFxi-1 tag+i word NN gearNN"~j?JJJ +VBP/$? i word drugVBrh|NNPSSӿNNS @JJjtNNP&1i-1 tag+i word WDT olderVBPGzJJRGz?i-1 word cancerVBZ= ףp=?NNS= ףp=NN= ףp=?WDT+?JJ= ףp=IN+i-1 tag+i word NNP telephoneNNClNNPCl?i-1 suffix gonNNL7A`?TO1Zd@JJV-VBZnNNS(\?RP㥛 i-1 tag+i word POS salaryJJV-ݿVBP(\¿NNrh|?i-1 tag+i word VBN addedVBNjt?JJjtܿ i+2 word j.e.NN{GzNNP{Gz?i-1 tag+i word IN concentratedJJHzG?VBNHzGi word recombinantJJffffff?NNffffff i word grabJJ^I +NN|?5^ڿNNPtV?VB㥛 VBP(\?i word climbedVBPvJJ/$VBZ5^I NNSX9vNNQVBD'1@VBNʡEi+2 word wellsRB\(\JJSIN\(\?i-1 tag+i word NN waitingVBGh|?5?NNPh|?5i-1 tag+i word DT holidayNNףp= ?JJףp= i-1 tag+i word NNP movesVBZT㥛 @NNST㥛 i-1 tag+i word JJ pressureNN?JJi-1 suffix tlyVBMRBGzRP?5^I NNPx&1JJZd;NNI +PDTV-RBRZd;O?VBN333333 @DTx&1NNS|?5^VBZ ףp= @VBG(\?VBDB`"?VBPw/@JJRV-@INMb?CDjti-1 word employees VBDʡE?VBP/$?VB㥛 @RBV-?NNA`"WDT rhJJGzINx&NNPQi-2 word speakingJJjt?NNjti+1 word basemanNN/$޿JJ/$?i-1 word anthraxVBZS㥛NNS㥛? i pref1 vJJSSVBGm@VBNx&VBZˡE?NNˡE@PDTd;OINI +@JJS㥛?PRP|?5^NNS`"@NNPn#VBffffffֿUH(\ҿVBP?DT+FW= ףp=@NNPS r JJR}?5^IVBDI +?WDTHzGRB?5^I @CC{GzRBR(\ݿCD㥛 i word comparisonNNS rNNoʡ?JJ7A`i tag+i-2 tag `` JJJJVBNB`"?FWK7A@NNS$C?UHw/VBGL7A`VBDoʡ?CDuV?PRPuVDTS㥛INCl?NNPMb?VBzGNNPSd;O?NNV-?VBPS㥛RBL7A`?i-1 tag+i word NN gatheringVBGNN?i+1 word corryNNMbX9?NNPMbX9i+2 word unworthyJJ`"?NN`"޿i-1 tag+i word CC industryNNʡENNPʡE?i-1 suffix fatVBZMNNSM?i-1 tag+i word `` psylliumNNMb?NNPMbi-1 tag+i word IN amiraNNSMbNNPMb? i word liarsNNSZd;O?NNZd;O i+1 word g.NNbX9NNPbX9?i word airtimeNNrh|?JJrh|Ͽi word backfiredVBDv?VBNvi-1 tag+i word RB soughtVBN&1?RB&1i-1 tag+i word DT landmarkNNNbX9пNNPNbX9?i-1 tag+i word , conspiracyNNSrh|NNrh|?i-1 tag+i word NN backlogsNNGzNNSGz?i word creamierJJRʡE?NNʡEi word partnerNNQNNPQ?i-1 tag+i word , beforeCCPnRB?5^I INM?i-2 word paranoidVBZB`"NNB`"?i+2 word substanceNN(\?JJ(\%i-1 tag+i word -START- appropriationsNNPS-NNS-?i-1 tag+i word NNS gainedVBN|?5^VBD|?5^?i-2 word goldsmithJJʡE?RBʡEi+1 suffix far VBV-NNK7@VBNSVBP1Zd?INOn?RBHzG?VBDK7?PRP$-JJʡE NNSK7NNPZd;OͿ i+2 word novaNNnNNPn?i tag+i-2 tag PRP$ NNSNNS?VBGJJNbX9?NNffffffCD5^I  i-1 word farmDT|?5^WDT|?5^?i+1 suffix ale DTd;O?VBZ|?5^RB5^I NNS+?VBN\(\?JJS?RPV-?NNPʡE?VB +?VBGˡE?NNv VBD)\(INMbX9?i+2 word monthsVBDV-VBN r?RB(\?IN9v?RP9vVBGx&1?JJ"~j?NNoʡi-1 tag+i word TO retireeVBuVNNK7@JJ i word yearJJ+NNP%CNNPSv/ݿRBOnNN#~j<@VBP$Ci-1 word battlingVBZvNNSv?i+1 word wageringJJDlVBNDl@i+2 word clausVBZ\(\?NNP\(\i-1 tag+i word NNS compareVBP5^I ?NN5^I i-1 tag+i word PRP$ sightsNNS/$?NN/$ i word robotsJJ5^I ۿVB;OnNNSK?NNV-i-1 tag+i word , findsNNSq= ףpVBZq= ףp?i-1 tag+i word DT accompanyingNN;OnҿVBG&1?JJ5^I i word communistsNNPK7NNPS)\@NNS333333 JJ?5^I i+2 word convenedNNPx&1@JJx&1i-1 tag+i word NN talentsNNS+?NN+i+2 word exaggerateNNSjtVBNjt?i-2 word solvingNNʡE?JJʡEi-1 word presentsRBʡEֿDTʡE? i suffix urlVBPCl?VBDCli-1 tag+i word CD plusRBSNNq= ףpIN/$?CCv/?JJPni-2 word lubricantsJJMb?NN rVBFx?VBPFxVBGGzi-1 tag+i word TO relyVBuV?RBuVi-1 tag+i word NNP aidNNS!rhNN(\?VBD"~i-1 tag+i word VBZ troubledJJm?VBNmi-1 tag+i word JJ emotionalJJ`"?NN`"ֿ i suffix tsyNNPZd;O?INZd;Oi-1 tag+i word VB americanJJ/$?NNP/$i-1 tag+i word VBD stepsNNSʡE?JJʡE i word proveVBP-?NNV-IN/$VB|?5^ʿi+2 word theoristsNNS ףp= @NNP ףp= i-1 tag+i word RB collectVBp= ףVBPp= ף?i word decisiveJJK7A?NNK7Ai-1 tag+i word JJ .270NNRQCDRQ?i-1 tag+i word NN contractingVBG"~NN"~?i-1 tag+i word VBG tradingVBGx?NNxֿi word personallyVBDClNNS+RB\(\@JJK7ɿNNP$Ci-1 word hedgersRBS㥛INS㥛?i+1 word mcdermidVBPQNNQ? i-2 word halfJJ(\@NNV-VBDʡEVBNʡE?RB+׿NNP!rhܿi-1 tag+i word VBP propelVBףp= ?VBNףp= i word smallestJJSh|?5@NNV-JJi+2 word repeatedNNPRQ?NNRQȿi-1 tag+i word JJ cosmeticJJ+?NN+i-1 tag+i word JJ worksVBZCl?NNSCli-1 tag+i word RBR focusedVBNClۿJJCl?i+2 word manipulationNNV-?JJV-i-1 tag+i word , offVBDQCClVBPy&1RBʡ!@INNbX9 NNSERPi-1 tag+i word , lushNNOnVBNbX9JJS?i-2 word judicialJJ7A`?NN7A`¿i-1 suffix igsNNS-JJRDl?RBRMbXٿ i word ailingVBGsh|??JJ!rh?NNJ +i-1 tag+i word NNP givensNNPuV?VBZuV i-2 word setRBINRQ?NNS\(\?VBK7?JJ/$?NN5^I ?VBD-?VBNX9vi+1 word marstonNNPSZd;NNPZd;?i-2 word pricedIN^I +NNSZd;VBn?JJL7A`?NNQ?RB1Zdi+2 word collectedNN?JJ-ӿNNPʡEi-2 word possiblyVBd;ONNffffff?RP/$?JJh|?5RB/$i+1 word alleysVBG ףp= ?JJQ?NN ףp= ׿VBDQi-2 word towardVBGm?RBRQNNZd;?JJPnIN-?RP`"?NNS+?NNPx&1i+1 suffix mmyJJ{Gz?NN{Gzi-1 tag+i word VBD pleasedVBNMbXJJMbX@i-1 tag+i word DT ghostbustingVBG= ףp=NNS㥛?JJd;O޿i tag+i-2 tag , INVBCl@VBNK7A`VBZKNNSNbX9INM?NNPK7NNPS +VBD-?UHK7A?JJ-VBGCl?VBPMbP?RBNN? i-1 word hVBNx&1JJ+?VBDV-i-1 tag+i word JJ picketingVBGٿNN?i+2 word walkoutJJ/$?RB/$i-1 tag+i word VB anemiasNNSV-?NNV-RBK7ѿi-2 word disputedJJI +NNPGzNNPSGz?NNS{Gz?NNQ?i-1 word merchantsNNv/ݿIN(\?RBI +i word emigrationNNCl?JJQNNPSi-1 tag+i word VBZ mostRBSK7ѿJJSV-?VBNSCDV-i-1 word hedgeVBZ333333NNS333333?i-1 tag+i word VB hardcoreNN(\?VBNX9vJJlҿJJRCli-2 word gamblingVBNbX9ؿVBPNbX9?i-1 tag+i word VBD generalJJ(\NNP(\?i-1 tag+i word PRP$ kinfolkNNSl?JJNN~jtؿi-1 suffix ep.NNSv/NNPv/?i-1 tag+i word TO restructureNNOn?VBOni-1 word terroristVBZ#~jNNS#~j?i-2 word jamesVBD"~j?VBN"~jԿRBV-NNSJ +NNPuV?VB(\JJQ?NNJ +i-1 tag+i word DT lithotripterNNT㥛 ?JJRT㥛 i-1 word preciseINʡEJJJ +?NN!rhԿi-1 tag+i word DT orphanJJh|?5?NNh|?5i+1 word poundsVBn?NNnVBD㥛 VBNQCD-@JJMbi+2 word handleIN rRPoʡ?JJCl@NNh|?5VBDx&VBNQRBK7Ai+1 word forbiddingNNMb?JJMbi-1 tag+i word VBG whatWP#~jWDTFx?IN +i-1 word womanVBD~jtӿPOSS?JJ?5^I VBZy&1NNSffffffVB`"?VBGS?NNni+2 word economistJJA`"NN-ֿNNPffffff@i-1 tag+i word NN downsizingNN-?JJ- i-1 word julyNNI +JJM?VBD+?VBP-i-1 tag+i word , fillsVBZbX9?RBbX9i-1 tag+i word NNP employersVBZRQNNSRQ?i-1 tag+i word `` breadthNNI +?JJI +i+2 word exclusivelyVBNA`"?JJA`"i-1 tag+i word NN chiefNN9v?JJ9vڿi-1 tag+i word VB stiffNN-RBrh|ϿJJd;O?i+1 word ownersNNP#~jVBGףp= JJnNNGz.@RBx&1?INʡE޿i+2 word naggingsVBG+?NN+i-1 tag+i word -START- goldNNʡE?JJT㥛 NNPy&1?i word fingersNNSMb`?NN+NNPCl? i+1 word wornRBRbX9?JJRbX9i+2 word documentsNN9vҿVBDv/?VBZ^I +NNS= ףp=?VBNv/ݿi-2 word modifyNNPX9v?JJX9vi-2 word interiorVBPOnNNSE?NN7A`?JJd;ONNPEi-1 word graduatedVBGzINGz? i word liquidRBRPnпRBx&VBZV-NNS~jthJJK7A`?NNy&1?i-1 tag+i word NNS luckedVBNMbпVBDMb? i suffix rgoJJ~jtNNPx?VBʡE?NN r?FWp= ףVBDQVBNPnVBP(\?i+2 word unlocksNNMb?JJMbi tag+i-2 tag RBR TOVBp= ף?NN +?RBFxJJ(\տi+2 word standingNNS+?VBD+ i word gnpVBL7A`пNN|?5^?NNP/$i word rochesterNNPGz?RBGzi word sharpshooterNNZd;NNPZd;?i-1 tag+i word CC demeaningNNClVBGZd;O׿JJV-@i-1 tag+i word NNS chapsNNSʡE?NNʡEi-2 word longestRBS\(\?JJS\(\i-1 tag+i word WDT inspireVBPMb?NNMbi-1 tag+i word NNP interviewedVBDx&1?VBNx&1i+2 word greenJJMbXINT㥛 ؿMDrh|?VB +޿RBMbX?VBD+VBN+?i-2 word payoutRBEINE?i-1 tag+i word PRP$ heavenNNsh|??RBjtVBNS㥛Ŀi+1 word proposedNNS?JJoʡRBuV?NNP333333i-1 tag+i word NNS happyJJbX9?VBDbX9i-1 word difficultJJPn?NNPni-1 word entrepreneursVBZmVBPm?i-1 tag+i word JJ magicianNNS㥛 NNsh|??JJ+i-1 tag+i word -START- whichWDT ףp= @VB+NNS9vNNPFxi+1 word momentsJJ%C?NN%Ci+1 suffix rueJJx&NNMbRBRClVBNMb?RBCl?VBZx&?i-1 tag+i word NNP onceNN\(\NNPV-RB㥛 @i-2 word scheduledNN#~jRBRK7A`ſVB9v?JJ333333i word fairnessNNˡENNPˡE?i+2 word mortgageRBV-?NNlPDTK7A`JJ rhDTK7A`?NNSJ +ѿNNP^I @NNPS^I +i-1 tag+i word NN passengerNNQ?RBQi+2 word resultsSYM?JJzG?RB5^I ?VBD{GzJJRn?VBNx?NNPL7A`NNSX9v?EXK7?VBMbX9NNS㥛VBPQLS ףp= INZd;NNPSE?WP(\ i+2 word ploVBP|?5^IN/$VBV-? i word consulNNP+NNp= ף?VBDFxi+1 word proceedsJJFx?NNFx i word widenVBPB`"?WRB ףp= ׿FWx&1i-1 tag+i word NN throwingVBGjtNNjt?i-1 tag+i word PRP$ coyJJ/$?NN/$ i suffix wimVBPQ?VBDQi-1 tag+i word DT sharperNNEJJR@JJ|?5^ i word burgsNNSoʡ?NNoʡi word earmarkedVBNA`"?JJ{GzܿVBDx&1i-1 tag+i word JJ poorerJJROn?NNOni-1 word hurricaneNNM?JJMi-1 tag+i word DT closestJJSbX9?NN|?5^JJףp= i-2 word roomRPGzJJS@NN1Zd?VBN;OnRBQIN)\(?NNSx& i suffix T&TNN1Zd?JJ)\(NNPB`"@VBzGNNPS^I +׿RB)\(i-1 suffix esbJJnVBDn?i-1 tag+i word PRP$ desksNNS +?NN +i+1 word confidentialVBPrh|NNPJ +?JJ$C˿NNPS\(\VBZrh|?i-1 word virtualNNSnNNn?i-1 tag+i word , recallsVBZ&1?VB&1i-1 word providingJJOn?NNOni+1 suffix erkNN{Gz?JJ{GzFWK7A`NNPx&1?IN㥛 i suffix ole NNS|?5^VBDK7?VBN㥛 NNʡE?PDT{GzJJS`"ֿVBP"~j?JJPn@VBZzGFWq= ףpRB +i word fertilityNN333333?JJ333333 i-1 word outEXJ +JJHzGٿRBS1ZdWDTPnPDT&1ڿCD;On?WPS?VBZV-INm@DT/$PRP$B`"?VBGʡEJJS1Zd?RBS @NN9v?VBNMbX9?PRPB`"i-1 tag+i word IN beefJJ rNN}?5^I@NNSw/RBףp= i+1 word pretaxNNʡEVBD!rhJJRzG?VBNMbXٿRBX9vJJ(\@i+2 word glasnostFWV-?NNX9vJJʡEi word mazzeraNNw/NNPw/?i-2 word architecturalNN(\?JJ(\i+1 word helperNNPv/?NNv/i-1 tag+i word -START- yearNNP9vNN +?RBOni-1 suffix theFWMb?PRPClRBRQ?MD~jtJJ1Zd@NN;On @NNPS#~j<@JJSX9v @VBDQVBNx&1?RBL7A`?CC"~PDToʡRBSK7A`?CD;On?JJRoʡ?VBP|?5^WDTuVNNSQ@NNPK7A@VBK7INVBG?VBZˡE i-1 tag+i word CC cardiacVBbX9JJS㥛?NNK7AؿMD9vi-1 tag+i word PRP underwriteVBPuV?RBuV i-2 word t.NNPS/$NNP/$? i-1 tag+i word IN irregularitiesNNS333333?NN333333i+1 word penaltiesNN~jthINn?JJV-VBx&1?VBNoʡ?i-1 tag+i word RB plannedJJI +VBD}?5^IVBN9v?i+2 word physicsDTV-JJV-?i-2 word articleRBMNN!rh?JJE?IN/$@VBZ(\NNPGzVBvNNPSp= ףi-1 tag+i word PRP$ americanJJ9v@NNP9vi-1 tag+i word RB grazingNN#~j?VBG#~j i word awareNN%C VBNy&1RBuVDT(\NNS/$VB?5^I JJKw%@i-1 tag+i word JJ straighterRBRl?NNli+2 word minusJJPnNNq= ףpCC`"?i-1 word monstrousNNSOn?NNPOni+2 word necessityVBG/$?NN/$i-1 tag+i word VB feminineJJ +?NN +i-1 tag+i word DT cutVBZd;OVBPZd;O?VBN-NN-?i-1 tag+i word DT prosecutorialJJOn?NNOni-1 tag+i word IN freeNN+CDxJJK7NNSClNNP/$RBHzG@i word japanese NNS'1Z@NNPˡENNPS{Gz?JJQ@CD"~jWDTRB/$INI +VBV-NNrh|VBN(\VBPV-i-2 word industriesJJp= ףNN$CINQ?VBD?WDT$C?i-1 tag+i word DT usPRPm?JJ)\(NNPmͿi-1 tag+i word NNPS insistJJ;OnVBP;On?i+1 suffix ikaIN~jt?JJʡEƿNNPzGʿi-2 word infectedNN?5^I ?JJ?5^I i-1 tag+i word VBD monthlyNNS`"RBK?JJ/$i word fleshpotsNNSMb?NNB`"JJmݿi+2 word grandINuV?NNK7A?RBZd;JJK7ARBR + i-1 word mesaVBZK7?NNSK7 i word good PRPSJJK1@NNP&1VB#~jRB|?5^@NNPnVBDlVBNNbX9VBPʡEۿNNSˡERPsh|?i-1 tag+i word -START- \*NN9vSYM9v? i word palmsNNSM?JJGzNNB`"ѿ i word dugVBD(\@VBZ rhVBPtVi-1 tag+i word RB plausibleJJ?5^I ?NN?5^I i+2 word maintainRBx?NNnVBDjtVBNjt?VBPI +?JJM?NNPx&VBI +i-2 word environmentalNNPzG?VBPJ +?NN'1ZJJm?VBDJ +i-1 tag+i word NNP aboutRB333333IN333333?i word contestantsNNSZd;?NNZd;i-1 word trackVBuVNNX9v?JJZd;i-1 tag+i word , whereasIN+?VBGh|?5VBDK7A`i-1 tag+i word DT overridingVBGrh|?JJrh|i-1 tag+i word NNS messNN\(\?VBD\(\i-1 tag+i word NN reactingVBGV-?NNV-i+2 word squaresNNSnJJn?i-1 tag+i word VBG inventoryNNjt?JJjti-1 word hiddenVBx&NNx&?i-1 word sisterVB`"VBP`"?i-1 tag+i word JJ memoryNNl?JJli word saggingVBG{Gz?NN"~j?JJ/$i tag+i-2 tag VBG WDTNN/$?JJ/$ i+2 word pineNNV-NNPV-?i-1 tag+i word NNP minorityNNvNNPv? i-1 word hideJJ/$?NN/$ i-2 word rise JJS?RBR~jt?JJR~jtVBZFxVB{GzNNQ?RBSJJMbX9?NNSFx?NNPh|?5NNPS ri-1 tag+i word IN neitherRBClCCCl?i+1 word bottomJJMb?NNMbпi-2 word powerfulWDT-?IN-VBffffffVBGffffffNNffffff?VBDEVBPV-?i tag+i-2 tag VBN NNRB|?5^?CD333333?NNPl?VBQDTl?NNS9vNNPSʡEJJ ףp= ?NNffffff RBRףp= ?UH(\ҿINn?VBZ/$޿VBG#~j?RP&1JJRKVBNʡE?i-1 tag+i word PRP createdVBNV-VBDV-?i-1 tag+i word RB guardVBRQVBP5^I ?VBN1Zdۿi-1 tag+i word : havingVBG|?5^?NNP|?5^i+2 word alabamaVB1ZdNN/$?JJZd;O߿i-2 word labelsVBNSۿJJnʿNNP'1Z?i-1 tag+i word VBN clearJJoʡ?NNSV-RPoʡݿRBV-?i word indulgesVBZX9v?NNSX9vi word defunctVBNQJJK7@NNS-JJRV-NN/$տi word contractingVBGv/NNuV?JJX9vi+1 word payingINlRP= ףp=?JJGzNNl?JJR-RBRsh|?@RB= ףp=i word stationNNPSX9vNNPX9v?i tag+i-2 tag POS NNPJJRuV?VBGnJJS㥛?DTMb`?NNP +?CDMbX?VBD$CӿVBNV-NNZd;O@PRPCl?JJS'1Z?VBFxRBSV-RBRsh|??INV-NNS7A`@NNPSL7A`ؿPRP$&1VBP-?VBZjt?FWKRBGz i+1 suffix onaNNPJ +?VBGJ +i-2 word leadingVBPv/?JJGz@VBZv?NNSv߿RBx&1 NN+? i-1 word jockVBGMb?NNMbi-1 tag+i word NNS costsNNSmVBZm?i-1 tag+i word NN undercutRB-JJ9vVBDRQ? i word coupNNE@FWCl?VBPd;ORBRQNNSٿVBףp= JJB`"i-1 word recommendDTˡEINˡE?i-1 tag+i word VBD ruralRBGzJJGz?i-1 tag+i word , expressingVBG +?JJ +޿ i word stemJJ-VBD~jtVBˡEܿVBPS㥛?NNMbX9?i+2 word tablesJJGzVBGz?i-1 tag+i word DT dailyJJbX9?NNbX9i word wasatchNNK7ٿNNPK7?i-1 tag+i word RB shotsNNSffffff?JJffffffi+2 word conspiracyVBG#~jNN#~j?i-1 word receiptsVBPvVBNT㥛 ?VBDMڿ i-1 word adrsVBN{Gz?VBD{Gz i+2 word role JJRA`"RBh|?5NNClRBR}?5^I?INh|?5?VBZ~jtVB`"VBDX9v?JJ333333? i suffix kieVBMbX9NNV- @JJoʡi-1 tag+i word NNS filedVBNX9v?VBDX9vi-1 tag+i word `` monitoringVBGK7ɿNNK7?i word meddlingNNjt?VBGjti+2 word oversightNNʡEVBQֿJJK7? i suffix hicVBZ-NNSS㥛NNPv/?JJR"@NNQkRB+i-2 word sailedNNPMbp?NNPSMbp i-1 word arbyVBZGzֿPOSGz? i word smokeVBD!rhVBP r?JJ= ףp=NNSClѿVB(\?RB\(\NNh|?5@ i word tomashNNPZd;?NNZd;i-1 tag+i word -START- amateurRBS㥛NNP㥛 DTX9vϿJJQ@i-1 tag+i word DT undergroundJJ!rh?JJRzGNNʡEݿi+1 word sitesVBffffff@JJffffffi-1 tag+i word DT fragileNNˡEJJˡE? i-2 word bestNNSJ +VBS?NNˡE?JJS5^I ?RBSFx?JJK7A` i word ersatzFW+JJ-?NN5^I ۿi-1 word fiestaWDT+?IN+i-1 tag+i word IN theirsNNSClNN= ףp=RB|?5^PRPjt?JJuV@i-1 tag+i word NNP beVB= ףp=?VBD= ףp=i word traviataNNP+?NNSʡENNʡEFWQi word triplingVBGx&1?NNx&1i word supraventricularJJA`"?NNA`"i-2 word admittedRB|?5^?IN rVBGtV?NNS5^I NNtVi word doublingNNx&1VBGx&1? i-1 word four NNPNNPS?NN`"?CCQ?RBRx&1JJS㥛NNSX9vINjtCDKJJRx&1?i-1 tag+i word NNS metalsVBP"~NNS"~?i-1 tag+i word MD designerVB~jtNN~jt?i-1 tag+i word RB appealedVBNʡEݿVBDʡE?i-2 word bogartRBh|?5NN\(\?RBRh|?5?PRPV-ͿJJ\(\׿PRP$V-?i-1 word completeVBL7A`NNPSvNNSv?NNL7A`? i word parksNNSy&1ԿNNPClVBZOnNNPSʡE?i-1 tag+i word RB seatedVBNGz?VBDGzi-2 word alteredVBG1ZdNN rhNNS r?i-1 tag+i word IN freedVBZrh|VBDrh|?i+1 word countrysideJJjt?NNPjt i suffix TDKNNDlNNPDl? i word formNNSNbX9NNPh|?5VB rh?NN~jt?VBD rVBPv/?i-1 tag+i word IN bouncesVBZCl?RBCli-1 word overseasNNK7@VBGK7i word heightenedVBD/$VBN^I +@JJ$Ci word educationNNl?JJZd;NNPZd;Oݿi-1 tag+i word NNP pagongNNPS\(\ϿNNP\(\?i-1 tag+i word VBZ overINQ?RP9v@JJ1ZdRBףp= CDMbX9i-2 word requirementNNSˡEԿNNˡE?i-1 tag+i word DT dellumsJJK7ѿNNPK7?i+1 word allianceRBuVNN'1ZNNP+JJMbX @i-1 suffix gneNNK7?VBZ#~jܿVBGK7NNS#~j?i word performerNNSx&1ԿJJ#~j?NN'1ZFWh|?5޿i-1 tag+i word NN missesVBZffffff?NNSffffffi word counterbidsJJClNNSCl?i word crowningJJQ?NNQi-1 tag+i word TO reconfigureVBI +NNI +@i-1 tag+i word VBD difficultyNN`"?JJ`"i-1 tag+i word JJ antimissileJJ}?5^I?NN}?5^Ii-1 tag+i word IN weepingVBGGz?NNGzi-2 word countryNN/$RB&1NNPʡEVBjtܿVBZT㥛 NNSv/?VBG/$@VBDV-ڿJJR|?5^?VBPffffff@IN"~?PRP$x&1?JJ;OnPRPx&1̿JJSB`"۹i word confirmedCCL7A`VBNzG?JJ\(\ϿVBDS?i+2 word ogilvyVBV-?VBD= ףp=?RP?5^I ?VBN= ףp=IN r i-1 word fillVB?5^I RP&1?JJ?5^I ?IN&1i+2 word monthlyNNZd;O׿IN&1?VBDV-VBPV-?RB&1ڿi-1 tag+i word JJ giveVBPOn?NNOni+1 word thereRPףp= CCV-?VBD ףp= ?WRBZd;?NNPX9vNNSMbVBK7A`?JJoʡNN+?JJS~jt?RBS~jtFWMbVBNlVBPbX9@IN+N@DToʡVBZ(\JJRQ?WDTKRBl?i+1 word postedVBoʡNN+VBPoʡ?JJK7AпNNSK7?NNP$C?i-1 tag+i word VBP assuredVBNV-?JJV-i-1 tag+i word IN qualifiesNNS}?5^IVBZ}?5^I?i-2 word sourceNNSjtNNPh|?5?VBG333333NNsh|??CCV-׿JJsh|?DTV-?i word gargantuanNNZd;ONNSJJV-?i+2 word sourceVBZ5^I ?VBP5^I i+1 word rallyNNPS&1@NNS"~ڿJJ+@NNzGNNPli-1 tag+i word CC touchVBK7?RBK7ɿi word infrastructureVBrh|NN(\@JJSi+1 word occupancyNNPn?JJPni-2 word dottingNNCl?JJCli+1 word earnigsVBNZd;OVBDZd;O?"i-1 tag+i word -START- continentalJJX9vNNPX9v@i-1 tag+i word WDT steelmakersVBZףp= NNSףp= ?i-2 word firms VB-JJx&1DTv/VBP= ףp= @WDTv/?RBJ +?INvVBZ;On?RPZd;@NN;OnڿVBDx&NNSSi-1 tag+i word VB jewishJJ;On?NNP;On¿i word stackedJJd;O޿VBNd;O?i-2 word tastelessJJʡE?NNʡE i suffix LASNNPQ?FWQi+1 suffix oweVB)\(NNP)\(?i-2 word paroxysmalNNA`"?NNSA`" i suffix essVBPoʡJJ5^I  @NNS+WRBI +VBD rhVBZS㥛NN5^I @RBS+CDL7A`INQ@VBGx&1VBNMbX NNP333333?VB)\(?RBRCl@FWZd;߿LS/$RB7A`@CCV-@NNPS{GzJJS rh?JJR ףp= @UHʡEi-1 tag+i word JJ sayingVBGQNNK7?JJ'1Z i-1 word next JJMbX9@NNRQ@RBSʡEVBN#~jNNSvNNPS㥛?NNPSˡEVBGClVBDMbi-1 tag+i word NNP amicableJJvϿNNPv?i-1 tag+i word NN consistentJJQ?NNQ i word masseRBMbX9NNK7A`FW?i-1 tag+i word VBG drinkVBsh|??NNsh|?i-1 tag+i word VBP malignantNN333333RBZd;OͿJJ$C?i-1 tag+i word JJ hondaJJ~jtNNP~jt?i-2 word articlesNNףp= ?JJףp= i-1 word wearVBI +RP(\?NN~jtVBNI +JJ1Zd @IN(\NNSI +?i-1 tag+i word VBD armedVBN^I +ǿJJ^I +? i+2 word kateDTv?NNSB`"?NNPvNN rh?VBDbX9JJ?VBZB`"i+1 word investmentsNNP9v?WRB7A`NN~jt?JJRPn?VBNˡE?WDT7A`?JJd;OIN^I +׿i word ralliesVBZQ@NNSQi-1 tag+i word -START- analystIN̿NNPq= ףpݿNN!rh@VBNh|?5JJ/$i-2 word usuallyNNP-ӿRB +VBNX9vRBRsh|?JJX9v?IN +?NNS|?5^JJR;On?i word orphanedJJx&VBNx&?i+1 word restoreVBNx&1̿VBDx&1?i-1 tag+i word NNP delegatesNNPS+NNS+? i word newlyCDףp= JJSINffffffNNS~jtRBq= ף@NNB`"i-1 tag+i word POS australianJJ+?NNP+i-1 word romanNNPMbX9NNPSMbX9?i-1 word assumeINl?DTjtJJm?i-2 word strategistJJy&1ܿNNPy&1?i-1 tag+i word JJ grittyJJ&1?NN&1i tag+i-2 tag DT TOFWh|?5޿RBR rh?CDZd;OJJ?JJRB`"?VBPMbVBN+N@VBZ^I +RPx&1NNSrh|?NNPDlNNPS}?5^I?NNS㥛?JJSRBK׿VBS㥛VBGL7A`?i+2 word perilousCCrh|?RBrh|i+1 word offshootNNGz?JJGzi-1 tag+i word DT intricateJJV-@NNV-i-1 tag+i word DT oddsNNSQ?NNQi-1 tag+i word NN onlyJJRB?i word derivedVBDGzVBQVBN"~j? i suffix 005RBClJJNbX9CDMb? i word sdiJJMҿNNPOn?NNףp= ۿ i word eatVB9v?VBN9v i-2 word tiedNNPNbX9?NN(\ſJJ+i-1 word discountVBNV-JJ/$VBZRQNNSʡE?NNPK7NNPS9vҿNNh|?5@VBDV-?i-1 tag+i word , machineryJJ rhNN rh?i-2 word raisedRBX9vVBK7?JJʡENNJ +?VBDV-VBNsh|??i+2 word marketsVBDS㥛?JJSNbX9?IN/$VBG/$?JJQ@PDTVBNZd;O?DTsh|??VBZZd;O@NNFxWDT~jtNNPQ VB;OnRP\(\?NNSClRB|?5^i+2 word laborINGzNNS/$NNPZd;O?VBZd;O?JJ%CNN+?RBGz?i tag+i-2 tag WP VBZNNP"~?VBDMb?VBNjt޿POSB`"VBP(\JJ"~VBZ~jt?NNSd;O޿ i-1 word actsDTv/?JJ&1?NN&1CCv/i-1 tag+i word NN workVB= ףp=VBPh|?5NN&1@NNP+i-1 tag+i word NNP sportyJJK7A`?NNK7A`i-1 tag+i word TO nantucketNNK7NNPK7?i+2 word chainJJףp= ?NNP~jthVB|?5^VBGSRBjtNN;On?JJSS˿VBNOn?i-1 tag+i word PRP easierVBZʡEJJRS㥛?RBR(\?i-1 tag+i word VBP hospitalNNP㥛 ҿNN㥛 ?i-2 word akronVBDsh|?VBNJ +ٿJJL7A`?i-1 tag+i word IN spotNN?JJ i-2 word mipsNNPS-?NNP-i+1 word bikesVBS?NNffffff?RB +i-1 tag+i word JJ powerNNGz?NNPGzi-1 tag+i word NNP democraticJJT㥛 ?NNPT㥛 пi+1 word indicatedVBGV-?NNS|?5^?JJx?NNMNNPV- i+1 word beesJJ~jt?NNCl߿VBNX9v?i-1 tag+i word DT joltsNNSCl?NNCli+1 suffix loyJJʡE@NNʡEi-1 suffix ettVBD?NNPS/$VBNNNP/$?i-1 word tenderVB?5^I VBPˡENN`" @INZd; i word modelNN?5^I @VBDtVVBPS㥛JJ"~jNNS +οNNPV-? i-2 word warsRB +?RP +NNʡE?JJʡEi+1 suffix oorNN1ZdӿVBNCD-RBv׿IN|?5^?NNSMbX9NNP/$?JJE@i-1 tag+i word IN makingNNK7A`JJDlٿVBGbX9@JJSZd;Oi+2 word hotelNNP~jt?VBGh|?5?JJx&1?NN(\i-2 word circulationVBZV-?INV-i-1 word declinedNN ףp= ?JJ9vRBRK7A`ݿi word delegatingNN|?5^ڿVBG|?5^?i tag+i-2 tag JJ JJRVBPx&1?JJy&1VBZp= ףNNSA`"?NNP?VBGx&NNw/?i word elaborateVBnJJx& @NNPni-2 word packerJJbX9VBDbX9?i+1 word importanceJJR$C?RBR$Ci-1 tag+i word NNP voteVBPjtNNjt?i-1 tag+i word IN provingVBG/$?NN/$i-2 word mumbledRBzGINzG?i-1 tag+i word CC swissJJX9v?NNPX9vi word tightenerNNCl?JJCli-1 word radicalVBG~jthNN~jth?i-1 tag+i word DT placeboNNS㥛?JJS㥛i-1 tag+i word CC properlyRBbX9?JJbX9ƿi+2 word hamiltonNNPNNPS?i word watchedVBNRQ?JJ!rh?VBD%Ci-1 tag+i word VBD slippedVBNZd;VBDZd;?i-1 tag+i word CC ethyleneVBPS㥻NNS㥻?i word centeriorVBnNNPn?i-1 tag+i word VBD bringVBA`"?VBGA`" i-2 tag VBGJJSL7A`?VBZ'1ZDT'1Z?VBGzPRPףp= ӿMDd;OPRP$K7A`RP+POSClIN!rh?VBDK7APDTCl?CD-?VBG9v?WPzGEX(\NNPQ?CC㥛 ?RBSsh|?VBPJJʡE?$Q?JJRlWDT5^I ?RB333333?NNPSrh|?NN7A`?FWV-?NNSI +?VBNK7@RBRMbX9Կi-1 tag+i word VBP downRBMRP"~j@NNHzGJJ(\ҿIN&1?i-1 tag+i word VBG ferrisJJʡE?NNʡE i-2 word pairNNMbX9JJMbX9?i-2 word constructionsNNPA`"?INGzFW&1ҿi-1 tag+i word DT tapedVBNoʡ?JJ(\NNtVi-1 tag+i word RB noteVBP?5^I ?VBD?5^I i word networkNN`"NNP`"?i-1 tag+i word CC plumbingNN/$?JJ/$ i-1 word beetNNSGz߿NNGz? i suffix indCCɿFWV-VBZ~jtRBZd;O?INʡE@NNPp= ףVBHzG @RP+?JJ(\ VBD)\(NNx&1?VBNʡE JJR/$VBP|?5^@NNSCli-1 word scrapVBGjt?JJjtֿi-1 tag+i word PRP$ laudedJJ(\VBD(\? i-1 word dietVBZ rh?NN rh i word directRB;On@NN1ZVBP!rhJJ33333@NNPA`"VBMb i word creekNNx&1NNPx&1?i-1 tag+i word NN vacanciesNNSS?VBNSi+1 word commodityNNOnJJOn? i suffix panVBNuVݿNN;OnNNP= ףp=JJ~jtӿVBPZd;O?i-1 word rigidNNA`"?JJA`"i-1 tag+i word PRP decideVBh|?5VBP'1Z?RB"~i word telephoneNNClNNPCl?i-1 tag+i word , noDTI +?RB+NNPNbX9?i+1 suffix ukeVBN"~jJJ"~j?i-2 word experts RB+?NN\(\VBNh|?5οDTQVBD\(\?JJx&1INQ?VBZ?NNSi-2 word davisNNPSS˿NNPS?i-1 suffix chyVBNX9v?NNS㥛INV-տi-2 word factorVB|?5^NNS(\?JJK?NNNbX9?VBGni-1 tag+i word DT flaggingJJ?5^I ?NN?5^I i-1 suffix ezeVBNtVVBGףp= NNq= ףp?JJ7A`¿i-2 word insulationVBGA`"NNA`"?i+1 word geniusJJx?NNPxi-1 tag+i word DT factorJJ7A`NN7A`?i-1 tag+i word NNS plowedVBNV-?VBDV- i+1 word parkPRP$V-JJmNN?NNPPn? i-1 word benNNPSB`"NNPB`"?i-1 tag+i word NNP 'sNNPS/$NNV-POS;On@PRPL7A`?VBZV-NNSNNP ףp= i-1 tag+i word NN recordedVBNQ?JJGzVBD1Zd i word andNNP/$ DTI +VBPˡENNPSrh|CCMb@ i word goingNNjtNNPNbX9пVBGMb@VBNSi word struggleNNQ?RBQJJRQ i+1 word p53JJZd;VBGS?VBNx&?NNSVBD/$޿ i word smellVB/$VBPx?NNK7A?i word disbursedVBNQ?NNQӿi-1 tag+i word NN schedulesVBZ'1ZNNS'1Z?i tag+i-2 tag '' RBVB?DT$C?VBP;OnڿPDT$CINˡEi-1 word injuringRBm?INmͿi-1 tag+i word VBZ gobbledygookNNMbX?JJMbXi-1 suffix ystVBPq= ףp?NNPS㥛VBq= ףpNNPSS㥛@VBDS?VBNSi-1 tag+i word JJ likeVBl?NN+INףp= ӿ i+2 word knewDTMbINMb? i word windNNrh|@VBD1ZdJJR/$VBP1Zd?RB;OnJJV- i word scareNNMbX9NNPMbX9?i+1 word agreement VBN rh?JJK7A?NNPSۿVBGp= ףRBbX9ֿIN|?5^DTZd;O?NNS7A`ҿNNףp= ?CD?5^I ?i-2 word pensionNN-?VBD7A`VBN7A`?WDT r?JJ-IN ri word unblinkingVBGuVJJ|?5^?NNffffffi-1 word president VB|?5^?NNPS= ףp=RBX9v?FWK7A`JJMbNNSv/?MDT㥛 ?VBGX9v?NN9vVBD'1Z?WDTQINZd;?NNPL7A`e@i-1 tag+i word RB clearVBp= ףVBNSJJZd;O@i-2 word breathVBPX9v?NNQ޿VB rhi-1 word dennisNNI +NNPI +?i-2 word critiqueNN7A`?JJ7A`i-1 word contributedRPZd;RBNbX9?INS㥛i+2 word undertakingsVBG9vJJ9v?i-1 tag+i word NNP waxmanNNPSQNNPQ?i-1 tag+i word TO exportVB"~j?NN"~ji-1 tag+i word IN timeNNʡE?NNPʡEi-1 tag+i word VB stepsNNS9v?NN9vi-1 tag+i word WP monitoredVBDMb?VBP%CԿNNP"~ i suffix mpyNNSV-JJMb@NNp= ףINK7ѿi word lyphomedNNP~jt@VBNbX9NNPSA`"VBDX9vi+1 word particularVBZPn?VBDPni+2 word couchingNNSRQNNRQ?i-1 tag+i word CC attributedJJMbX9VBD-?VBNn?i-1 word belowDTn?NNB`"VBDS@VBN"~jJJGz?INni-1 tag+i word IN subpoenasNNSL7A`?NNL7A`i-1 tag+i word IN marxistJJOn?NN rhNNPL7A`i-1 tag+i word -START- outINsh|?@NNPS7A`VBNPnRBA`"ӿNNP$Ci-1 word huttonVBDPn?VBPPnNNPSx?NNPxi-1 tag+i word VBD seeksVBZ/$?VBD/$i word sophomoreNNPQVB(\пIN'1ZNNˡE?i-1 tag+i word : mendacityJJMNNM?i-1 tag+i word NN choosesVBZV-?NNSV-i-1 tag+i word VBZ reducedVBNʡEJJʡE?"i-1 tag+i word -START- authoritiesVBZ~jtNNS&1NNPffffff?i-1 word forgiveJJ~jt?NN~jti-1 word exhibitionsWDT㥛 ?IN㥛 i-1 word athenaNNPS +޿NNP +? i word rebelsNNS`"?NN`"i+1 word chicagoJJtV?NNtV i+2 word fairJJR!rh?RBR!rhi-1 tag+i word CD faceNNGz@JJ!rhJJRX9v i word end INZd;ONNP+VBS@NN/$@CD|?5^RB\(\JJ$C?CCjtĿVBPS㥛NNS(\i-1 word scaledRPOn@RBOni-1 word ownedINp= ף?VBGQ?NNQݿJJRFx?RBRFxRBp= ףi-1 word flameVBDV-?VBN&1ڿJJKi word breweriesNNPST㥛 ?NNPT㥛 i-1 word cleanNNSʡE?NNʡE i suffix IDALSQNNPQ? i suffix OURVBN{GzJJ$C?NNP-ۿPRP${Gzti-1 suffix dueNNS㥛CD"~j @JJ\(\INNbX9ȿRPjtRBjt?i-1 tag+i word CC plungingVBG\(\NN\(\?i word featureVBZNbX9VBPNbX9?i tag+i-2 tag VBG CCJJ7A`?VBD!rhRBR1Zd?IN#~j?DTNNP?5^I ¿PDT?VBPClNN~jt?RBZd;O?NNS\(\?NNPSClRPl?VBN+PRP|?5^?JJR1Zdӿi-1 tag+i word JJ multipleJJ/$?NN/$ݿi+2 word attractedVBGx&1NNx&1?i-1 tag+i word NN fillyRBlNNl?i+1 suffix sexNNB`"RBףp= VBףp= ?VBGB`"?i+1 suffix rimNNP"~INnNNPSDlNNSMb?RBn?i+1 suffix bid JJ"~ʿVBZ +ֿCDMbX?NNSB`"ѿVBd;ONN+VBNDl?NNPd;O?VBG|?5^?RBd;O?POS +?i-1 tag+i word PRP$ robesNN(\NNS(\?i-2 word unitedVBZ"~jܿNNS!rhNNPRQؿNNPSDl?VBGGzNNK7?VBDv׿IN+i-1 tag+i word NN doveVBZZd;VB/$ٿVBDx&1?i tag+i-2 tag VBD VBRBRd;O?JJRoʡVBNjtJJB`"۹?INGz?RB;OnNNZd;O?i-1 tag+i word NN onRPˡE?NNQNNP|?5^ٿi+1 word predictionNN/$@JJ/$ i word gapNNv?RBnNNSCli word ambivalentNNʡEVBN rhݿVBP5^I JJjt@i+1 word componentsNNPy&1NNPSKJJ~jt?NNq= ףpi-1 tag+i word NNP careNNq= ףpNNPV-?NNPSPni-1 tag+i word VB associatesNNPMb?NNPSV-NNSʡE޿i-1 tag+i word NN payCC rhNN rh?i+2 word torturedRBS@JJMbXRPCli-1 suffix ole JJ?RPPn?NNףp= ?WDTGzIN1Zd?VBZ}?5^INNSuVͿNNPK7RBy&1?i word fisheryNNPʡE?NNSrh|NN rh?JJʡEƿi+1 suffix laxJJSL7A`RBSL7A`?i-1 tag+i word IN warsawNNjtNNPjt?i-1 tag+i word NN prayingVBG ףp= ?NN ףp= i+1 word patentsIN/$?RP/$JJMbX9NNPMbX9?i word responsibleJJ~jt?NNP~jti+2 word substituteNNSjt޿NNjt?i+1 word imagineRB|?5^?NNP|?5^i word electricianNN~jt?JJ~jti-1 tag+i word , locatedVBDVBN@i-2 word residentNNCl?RBCli-1 word averyVBN(\RBxVBD#~j?i+2 word unobservedJJT㥛 @VBDT㥛 i-1 word provisionalVBG}?5^IJJx&1@NNQi-1 tag+i word IN mandatoryJJS?NNSi-2 word aheadVBN/$JJ/$?CCQ?DT-PDT$C i suffix AddNNPh|?5VBh|?5? i word cousinVBClNNCl? i word steinNNPSB`"NNPB`"? i+1 suffix ofVBPK7ARB|?5^?``JJRv @VBNzG?VBGSWP+PRP$QDTZd;O@POS/$ NNSoʡ@PDTSCDC@WDTV-NNPV-@INM @JJS㥛CC~jtRBSuVVBB`"۹RPZd"PRPSRBRT㥛 VBZ+?NNsh|@MDʡENNPSZd;@JJSsh|?@VBDNbX9i word publishesVBZZd;?NNSZd;i word decreedVBV-VBNV-?i-1 tag+i word DT communistNNPK7@NNPSSJJ9vNNQ?i+1 word importantlyNNP333333RB333333?i-1 tag+i word VBN jamaicanJJ"~?NNP"~i+1 word raggedJJA`"?RB7A`NN{Gzi-1 tag+i word VBN unrestJJClNNCl?i-2 word windsJJSHzG?JJHzG i word ploNNPSJ +ѿNN|?5^NNP~jt?i-1 tag+i word JJ sublimeJJjt?NNjti-1 word tidbitIN+WDT+? i-1 word cftcRBx&?NNx&ѿ i word hortonNNJ +NNPJ +? i-2 word fallVBGz׿VBGK7JJx&1?NN/$?RBSv/?JJSv/RBZd;ϿINI +?i word manaclesNNSB`"?NNB`"ɿi+2 word clarinetVBN+?NNCl?NNP{Gzi-2 word respectableJJQ?NNv߿RBJ +i word appetiteNNA`"?NNSoʡտVBNV-JJHzGi-1 tag+i word `` downRPsh|?ſRBDl?JJjti-1 word consultantNNS-NNʡENNPX9v? i word resetNNZd;?VBD333333ÿVBNV- VBPx&1JJˡE@VBZQNNSlVBS㥛 @i tag+i-2 tag VBG PRPNN ףp= VBDQVBNʡE?PRP9vRB +IN~jt?RP~jtJJX9v?i-1 tag+i word DT valuationNNl?JJli+2 word moviesNNZd;ONNSZd;O?i-1 tag+i word IN amazingVBGNbX9JJNbX9? i-1 word armyINh|?5?VBClWDTh|?5NN\(\?JJoʡտi+2 word arithmeticVBZS㥛?NNSS㥛 i suffix CMPJJ\(\NNP;On?VB/$i word grantingJJ/$VBG7A`?NNS?5^I i+1 word mixedVBjt?JJjti-1 tag+i word : fearsVBZMbX?NNSMbXi-1 tag+i word JJ contraJJMbX9?NNPMbX9i word discretionaryJJ(\?NN(\i-1 word tariffsDT/$WDT"~@INQ i word snottyNNSy&1JJm?NNx&1i+1 word growersNN(\?JJ(\i-1 tag+i word `` workingVBGZd;O?JJZd;Oi+1 word discoveredNNPSMbX9?NNSEJJV-i-1 tag+i word NN securedVBNA`"?NNZd;׿VBD-i-1 tag+i word JJS !HYPHENNNSQ?JJףp= @NNMbXCDh|?5޿i word similarlyRB7A`@VBN/$NN/$JJbX9NNP'1Zi word catholicNNPST㥛 JJd;O?NNP~jti word certificateJJq= ףpͿVBDV-NNrh|?i-1 word equateJJ1Zd?NN1Zdi-1 suffix deaRB~jt@JJ~jti-1 tag+i word NN shrinkVBDl?NNDl i suffix ribJJSNNS?i-1 tag+i word WDT alongVBP rhRP`"޿RB(\@INCli-1 tag+i word NNP investorsNNPS(\?NNP(\i-1 tag+i word DT biggerJJR(\?NNP(\ i word ditchNNPS#~jNNP#~j?i-1 word numberINd;OVBD+WDTd;O?VBN +@NN-i+2 word relationshipRBK7?NNGzJJ~jt?i+1 word readerNNPx&1JJx&1?i-1 tag+i word DT celtonaNN?5^I NNP?5^I ?i-1 tag+i word NN specialNNE?JJEпi-1 word restrictionVBZ"~j?NNS"~ji-1 tag+i word NN reclaimVBPh|?5@NNSClVBNX9v߿VBuVi-1 word seeingDT~jtPDT~jt?i-2 word boostingRBRʡE?RBʡEi-1 tag+i word IN drinkingVBGʡENNK7 @JJjti word spittleNNS+NNA`"?RBMi+1 suffix easDT\(\?VBףp= ۿVBGx&?RBS/$JJR`"޿NNPK?JJ/$?JJSMb?VBPMbpNNClVBNX9v?RB rhRPjt?FW+CDoʡi word accordsNNPS㥛 ?NNST㥛 ?RB/$NNPI +޿i+1 word completeVBsh|??VBNT㥛 VBDm@i+1 word diabeticJJp= ףNNPp= ף?i-1 tag+i word VB ricoNNClNNPCl?i-1 tag+i word DT parliamentaryJJd;O?NNd;Oֿi-1 tag+i word DT resignationsNNPSQݿNNSQ? i+1 suffix ;RBR5^I ?VBZx?NNPS㥛NNPS{Gz@NNS(\?INQVBB`"NN(\@VBD333333?VBPjt?CDV-?JJR;OnVBG\(\RBx&1?WP9vRBS+VBNV-?JJERP9vҿi-1 tag+i word VBN experienceVBCl?NNCli word conductingVBG9v?NNB`"?JJQi-1 tag+i word IN exchangeNNS@VBNZd;OJJjti-1 word slosbergNNPSCl?NNPCli+1 word wednesdayVBD/$VBN@RB/$INL7A`пNNSMb?JJ(\?i-1 tag+i word NNS lowerRBR-JJRZd;O@VBV-VBD+i-2 word gentlerRBRףp= @JJRףp= i+1 word entertainingRBl?JJli-1 tag+i word JJ droppedVBNlVBDl?i word wrestlingVBG?5^I NN?5^I @i-1 tag+i word JJR mousetrapNNSOnNNOn?i+1 word assailantVBN(\@JJ(\i-1 word occursRB= ףp=?IN= ףp=i-2 word responsibilityJJ^I +?VBGPn?RB~jtNNFxѿi-1 tag+i word , noneRBSÿNNS@NNSnJJ+i+2 word commentatorsJJ(\?NNP(\i+2 word suburbanVBZh|?5?NNS ףp= NNffffffֿNNP"~jԿ i suffix esyVBZnNNPn?JJMi-1 tag+i word IN promotingVBG+?JJ+i-1 tag+i word RB personallyRBK7?JJK7ɿ i-2 word bredNNP/$VBG/$?RBRx&?JJRx&i-1 tag+i word RB 'sVBZS㥛POSS㥛?i-1 tag+i word DT mythsNNSq= ףp?NNq= ףpi-1 tag+i word RB wearsVB㥛 VBP%CܿVBZX9v?i-1 tag+i word TO grievancesVB1ZdNNS1Zd?i word decidingJJ(\?VBGNbX9?NNˡE i suffix hioVBX9vJJ/$NNP/$?i-1 tag+i word DT chargeNNCl?JJCli-1 tag+i word RB nationalizedVBN~jtx?JJ~jtxi word caracasVBHzGNNPHzG?i-1 tag+i word TO slowVBjt?NNK7AJJ- i word rapeNN~jt?NNS~jti-1 tag+i word NNS seizedVBN\(\VBD\(\?i-1 tag+i word IN gorkyNNPSZd;ONNPZd;O? i word desertNNSv/NN-@JJ|?5^i-1 tag+i word TO athleticsNNSףp= ?VBףp= i-1 word creeNNSv/?RBv/ i+1 word fangNNV-?JJV-i word adjournmentNNOn?NNPOni-1 tag+i word POS smokingVBGV-?NNV-i word procedurallyRBQ?JJQ i word crestJJS$CNN$C?i-1 tag+i word DT publicNNS}?5^INNx&1 @JJp= ףNNP^I +i+2 word brokeVBPMb?JJMbVBZ(\տNNPOn?NNPSOnNN+?VBDMbi-1 tag+i word VBP preferVB9v?VBN9vi+2 word immediatelyJJ-?NN-i-1 tag+i word JJ overdueNN)\(RB)\(JJ)\(?i+2 word french NNP9vRP rhJJ~jt?VBNjt?VBP+RBI +?INVBZE?NNPSʡE?NNSEi-1 word testsNNʡE?VBDʡE i+1 word inkJJS?NNPSi-1 tag+i word JJ rollersNNSK7?NNK7i-1 tag+i word NNS chancellorVBPMbX9NNMbX9?i-1 tag+i word JJ soulsNNSCl@NNCli-1 tag+i word DT cyclingVBG"~NN-?JJ +i-1 tag+i word , eurobondsNNPSףp= ?NNSh|?5οNNPMbi-1 tag+i word CD sellingVBGL7A`NNL7A`?i-2 word beatenJJCl?RBCli-1 tag+i word NN watchNNZd;?VBZZd;i-1 tag+i word RB handlesVBZCl?VBPCli word refinancedVBZV-VBNV-? i word uvbNNPjtܿNN/$?JJi-1 tag+i word POS consumerNNsh|?NNPsh|??i-2 word adultVBZ= ףp=NNS= ףp=?i-1 word always VBGtV?RBrh|?VBDX9v?VBNbX9?VBPuV@VBZd;?NN"~jJJ?5^I INMbi-2 word machineNNffffff?VBDd;O?PDTʡEVBN^I +CDffffffJJK7A`? i word add NNSffffffNNPh|?5VBNZd;RB~jtNNzGVBD333333VBPK7?JJV-VBh|?5 @i word studdedJJ rhٿVBN rh?i-1 tag+i word CC matureJJS㥛NNP +@VBV-׿NNbX9i-2 word chryslerVBPI +?JJ-VBI +޿NN-?VBD$C?VBN$Cӿi-2 word tablesVBP;On?RB;Oni-1 tag+i word NN forcedJJ+?NN~jtVBN)\(i+2 word violettaVBPx&RBGzNNSV-?NNP ףp= ׿VBK7ANNh|?5޿VBDʡEVBN"~@i-2 word casinoVBDQ?PDTOnVBNK7ٿJJ-?CD-i+1 suffix ortNNPSv/?NNPp= ףINV-VBZbX9ȶVBn?RP;On?NN}?5^I$&1VBDNbX9пVBP}?5^IWDT?JJMb?VBGjt?RB+NNSoʡVBNV-JJRʡE?DT~jtPRP$q= ףp?i+2 word penangNNP/$?NNPS/$i-1 tag+i word CC hugelyRBV-?NNV-i+1 word londonVBPZd;?WDTx&1JJ$C?INx&1?VB~jtNNMbXVBNV-߿i word attitudeVBPw/NNSx&RB rhJJA`"ۿNNK@i word nervousJJ +?NN +οi tag+i-2 tag FW JJNNPGzNNGz?i-2 word rockingJJOn?VBNClNNtVֿi-1 word linerVBNVBD?i-1 tag+i word VB fraughtVBNK7AJJK7A?i-1 tag+i word -START- many VBNPnJJ1Zd#@DT rhNNSSNNPx&1 PRP$QVBGԿRBZd;NN9vPDTl?i-2 word assistantsPDTMbX9NNMbX9?i-1 word swingsWDTjtRBMbX9?JJy&1IN/$?i-1 tag+i word VBZ takingVBGl?NNli-1 tag+i word JJR noticeNNCl?RBMbJJ~jti+2 word trainingNNPSClJJx&1?NN1ZdJJRl?RBX9vNNPCl?i-2 word abandoningJJMVBNM?i+1 word drillingNNp= ףJJ'1Z?RBʡE޿NNP/$ @i-1 tag+i word JJ sciencesNNSHzG?VBNHzGi-1 tag+i word : plusCCv?VBvi-1 suffix ddyNNPGz?VBGʡENNSi-1 tag+i word NNP hitNNP~jtVBD?VBP~jt?NN i-2 word s.a.NNP%CNNPS%C@i-1 tag+i word NN totalJJjt?NN`"IN)\(i+2 word preferredVBP+ӿJJx&1?DT`"NNSd;ONNP= ףp=ڿVB+?NN?i-1 tag+i word DT arithmeticNN{Gz?JJ{GzԿi word cynthiaNNʡEۿNNPʡE?i-1 tag+i word , herbVBNX9vJJZd;NNrh|?i-1 word bizarreNNffffff?JJffffff޿i-1 word intenselyVBNX9v?JJoʡVBDB`"i-1 tag+i word NN inchedVBDFx?VBNFx i+2 word getDTʡEݿVB?5^I ?NNPSn?RP(\@VBD-ֿVBN)\(?WDT?JJffffffNNP~jt?MDS?RBENNS ףp= ?RBRv׿VBZx&?NNX9v?VBP= ףp=?JJRv?VBG(\?INʡEi-1 tag+i word IN divorceNN(\?JJ(\i+1 suffix styINV-?DTffffffNNS?5^I VBG?5^I ?RBB`"?WDTZd;O׿JJB`"i+2 word jerricoNNPX9v?VBDX9v i word thunNNPMb?NNMbi word belatedVBNQ뱿JJQ?i-1 tag+i word WDT favorsVBZ(\?NNS(\ i word eliDTNbX9VBPZd;NNPʡE?i-2 word thereforeNNSQVBN= ףp=NNQ?VBD= ףp=?i-1 word contentedNNd;O?JJd;Oi+2 word sectorJJm?VBm i+2 word runsVBDS㥛?CCVBNv/JJ)\(?NNPK7NNPSGzNN?i-2 word tinkerNNmVBDm?i-1 tag+i word NNP engineeringNNPSGzNNPGz?i-2 word experimentsNNDlNNSDl?i+1 suffix pt.NNS/$VBNtV?NN/$?VBDtVi-1 word minorNNw/?JJw/i-2 word stocksVBPNbX9?VBNh|?5RB rhVBG(\?RBSGz?NNP/$RPZd;VBDQ?JJR"~j̿RBR%C?IN-?NNuVJJ"~j?NNS^I +VBoʡ?i-1 tag+i word `` realignVBI +?JJI + i-2 word upRPS㥛DT&1?NNPףp= ?PDT#~j?RBMb?JJSNNx&1ȿVBPh|?5IN5^I @CDK7?VBʡEVBGlRBS9vRBR}?5^I̿VBNK?NNST㥛 @VBZw/JJRENNPS(\VBDSi-1 tag+i word RB lookedVBNx&JJClVBDI +?i-1 word kotobukiNNPS#~j?NNP#~ji+2 word superconductorVBNsh|?JJKVBDʡE?i-1 tag+i word VBD confidentVBNA`"JJA`"?i+2 word economiesJJQ?VBRQNN/$ٿRBJ +i+2 word retiredRBRQſJJQ?i word aeronauticali-1 tag+i word -START- halfDTQNN?5^I @RB$CNNPV-i-1 suffix butVBDn?DTJ +?NNy&1NNPx&1?VBK7PDTʡE?CDˡE?VBNX9vWDTrh|JJ;On?EXClVBGI +?VBP(\?RP+NNSZd;CCh|?5?RBRh|?5ֿJJS$C?VBZ~jt@RBZd;O?RBSx&1INK7NNPSK7?JJR333333?i-2 word despite VBPRQпVBZL7A`NNS{Gz?NNPp= ף?JJ|?5^ѿNNʡEݿJJSV-?VBGp= ףCDoʡ?RBV-i-1 tag+i word , n.m.NNPA`"?NNA`"i+1 word jacksonNNPSClɿNNtV?JJQNNPjtĿi-1 word damagedRBjt?JJjti-1 tag+i word DT sterlingNN-NNP-?i-2 word fraudulentlyJJsh|??RBsh|?i-1 suffix lexNNPPn?NNPSZd;ONNV-?FWDl?VBDQ?VBNQJJ ףp= i-1 tag+i word NN emptyVBZ/$JJGz?RBMbXɿi-1 tag+i word -START- ralphUH= ףp=NNP= ףp=?i+2 word marryingNNK7?JJK7i+2 word infocorpNNv߿JJv?i-2 word relatedVBDQVBNQ@VBPʡE?JJS?VBZV-?NNP= ףp=VBʡEsNNCl?i-1 suffix ketDTbX9?VB{Gz?NNZd;O?VBGI +?NNPʡE?RBRnRBK7?VBNvVBPMbX?WDTzGINZd;O?RPlJJ/$?VBZʡENNSOnVBDZd;O?POS#~ji word indiansNNS^I +NNPS^I +?i-1 tag+i word , wellUHQ@NNV-տRBQ VBPoʡi-1 tag+i word VBD folksNNSDl?JJDli-1 tag+i word PRP$ agipJJ'1ZNNP'1Z?i tag+i-2 tag CC VBP VBDMbX?RB+?NNS㥛 JJ7A`NNOnINQRBRSVBNMbXVBPƋ!@WPQ?VB#~j i suffix oofNNSS㥛RBS㥛NN"~j?VBDԿRBRffffffJJ rh?VBZ/$ۿi+2 word spreadNN/$?VBD/$VBZ|?5^VBKVBPPn?i-2 word brokerJJFxNNFx@ i word jewelsNNPS/$ſNNS/$?i word canonieNN rhNNP rh?i-1 tag+i word NNP depotNNX9vNNPX9v?i-1 word definitiveNNS㥛?NNSS㥛 i word metersVBZ`"NNS`"?i-1 tag+i word NNP clearlyRBS?NNPSi-1 tag+i word WDT tradeVBPʡE?NNnVBDGzi word footballNNS㥛?NNPS㥛i-2 word bookingJJtVRBtV?i-2 word unlikeVBD{GzVBNFx?VBPw/ܿJJMNNSMbXNNP`"NNPS`"?NNm?i-2 word cincinnatiJJNbX9?NNPNbX9i+2 word benefitingNN"~?NNP"~i-1 tag+i word IN caseyNNPSjtNNPjt? i word eldersNNPSHzG@NNS|?5^NNPK7A` i+2 word failVBZd;ONNd;O?i+1 word moralDTrh|RBrh|@i-1 tag+i word POS waterworksNNSZd;NN&1@NNPjti-1 tag+i word NN losingNN/$ſVBG/$?i-1 tag+i word TO prominenceVBq= ףpNNq= ףp? i+1 word hboVBNoʡ?JJoʡi-1 tag+i word -START- lindaNNSK7NNPK7?i tag+i-2 tag NN NNPSVBZ7A`?NNS7A`RBL7A`?NNL7A`п i suffix 0.6JJGzCDGz?i-1 tag+i word `` weddingNNv/ @JJ+NNP333333VBGv/i-1 tag+i word IN landNNzG?JJRK7ARB5^I ۿi word prematurelyRB"~j?JJ"~ji+1 suffix nic IN|?5^VBZy&1?NNSHzGRB{Gz?NN"~?FW^I +VBN rпJJ?5^I VBsh|??NNP%C?i+1 suffix bsnIN`"?VBP`"ֿi-1 word brotherVBDK7A?VBNK7ANNQ޿NNPQ?i-2 word analyzingVBN~jt?VBD~jtпi-1 word frankfurtJJ-?NN-i-1 tag+i word IN feelingVBGQNNQ?i-1 tag+i word RB grownVBN{Gz?JJ{GzԿi-2 word journalistsNNS㥛VBD\(\?RB-?VBP\(\JJ rȿi word sinatraNNPS㥛 ڿNNP㥛 ?i-1 tag+i word IN clearanceNNSp= ףNNp= ף?i-1 tag+i word VB onceRBm?INmi-1 tag+i word CD mexicanJJS㥛?NNPS㥛i-1 tag+i word JJS turnoverNNSV-NNV-?i word portlandNNQNNPQ?i-1 tag+i word CC lockingVBGL7A`?NNL7A`i tag+i-2 tag POS JJNNSZd;O?NN(\?JJx&NNP+JJSCl?i+2 word washingtonRB(\NNSʡE?VBHzGVBD?WDT$C?CC{GzPDTʡE?NNPRQ?VBP5^I DTHzGVBZX9v?JJ333333NNK7?VBNB`"ɿi+1 word surveyedVBZ#~j?JJ#~ji-1 tag+i word NN runningVBG5^I @NN5^I i-1 tag+i word VBG financingNNS㥛?VBGS㥛i-1 tag+i word NNP watersNNSʡENNPʡE?i-1 tag+i word NNP mysteriesNNPSQ?NNPQ i-1 word fact INsh|?@NN{GzVBDZd;׿VBNʡE?VBPS㥛VB?WDTK7A`JJMbPDTrh|i-1 word marsamNNPS|?5^ڿNNP|?5^?i-1 tag+i word RB blurryJJS?NNSտi-1 tag+i word NNS postedVBNVBD?i-1 tag+i word IN laterRBx&1JJR|?5^?JJSRBRrh|׿i-1 word wastewaterNNPSV-JJHzGNNPX9v?i+2 word carbonRBMbX9RPMbX9?JJm?NNmi-1 tag+i word CC misleadingVBGZd;߿JJZd;?i+1 suffix ockVBG@VBuVտRPS@NNMb?CCv?RBRJ +WDT㥛 RBA`" VBN㥛 JJ;On?NNSd;ONNPSVBDEؿIN?POSrh|?VBP/$JJRJ +?DToʡVBZrh|NNPʡEi+1 word markets JJSx&1RBR(\RBjtDTNNPy&1 JJ~jtNNPS~jtVBGS㥛@NNp= # @JJR(\?VBNzG?CDVB&1 i word everRBT㥛 @IN|?5^DT+NNSClNNPx&1NNRQi+2 word levelJJbX9?IN%CVBZ"~j?VBZd;ONNJ +ٿVBDI +?VBNVBPK7?i-2 word boatmenNNPS#~jNNP#~j?i-1 tag+i word `` meetVBCl˿NNPy&1?FWV-i-2 word fuelingNN333333?JJ333333 i word hunterNN5^I NNP5^I ?i-2 word subsidyVBG-?NN333333?JJV-i-1 tag+i word ) coolerVBZd;JJRX9v?NNV- i word ozarksNNSB`"NNˡENNPʡENNPSˡE @ i-2 word gunVB%C?JJ%CԿi-1 tag+i word JJ disputeNNS?NNPSi+1 word oddlyNNq= ףp?JJq= ףpi-1 tag+i word JJ riskNNB`"?JJB`" i-1 word boomVBZMb?RPMbPOSMbINMb?i-1 tag+i word IN peatNNlNNPl?i-2 word usinorNNx&1JJV-NNPʡE? i word tapersVBZ rh?NNS rhi word potpourriNNSx&1NNx&1?i-1 word viacomVBZtV?NNStVi-1 tag+i word RB respondedVBN'1Z VBD'1Z @i-1 tag+i word VBG sizableJJ ףp= ?NN ףp= "i-1 tag+i word NNS disappointmentsVBZS㥛NNSS㥛?i tag+i-2 tag NN RBSVBZw/VBPZd;?NNSw/?NNZd;i word improvedVB rhNNˡEVBD(\JJSnVBN/$ @JJˡE?i word impressionistJJMb?NNMbi+2 word textileNNw/VBNK߿VBx&?VBPx&JJ= ףp=?i-1 tag+i word : whicheverWDT-?NN-i+1 suffix osaINV-?VBD^I +?DTV-VBP^I + i+1 word flagVBG/$NN?JJv@VBDDlNNPZd;Oi-1 tag+i word JJR coolsVBZ㥛 ?NN㥛 i word crammingVBMڿVBGM?i-2 word documentaryVBNB`"VBDB`"?i-1 tag+i word VBN stepchildrenNNSV-NNV-?i-1 word deterredJJ ףp= @NN333333RBQֿi-1 tag+i word CC securedVBN333333JJ333333?i-2 word tobaccoVBNZd;߿JJ|?5^?VBMbX?VBGZd;NNRQ?VBDx&1i-1 tag+i word , plannedVBNd;OVBDd;O?i-1 tag+i word DT americansNNPS333333?NNSPn?NNP&1i-1 tag+i word VB shakespeareNNn@JJlNNP&1 i word net NNPxiJJNbX94@NNX9v@FWK7VBN(\RB/$DT/$VBPGzNNSMbX9i-1 tag+i word IN deliveringVBGMb?NNMbi+1 word smoothNNHzGVBHzG?i-1 tag+i word DT amountNNGz?JJGzi-1 tag+i word TO chewVBx&1?NNx&1 i-1 suffix naVB㥛 ?RBRK7NNZd;Oi-2 word durablesNNףp= ?VBDףp= i-1 word tastyNNSPn?NN(\ſNNPni-1 tag+i word NNS investigatesVBZ5^I ?VBP5^I  i suffix 400NNS?JJQCD{Gz?NNPMb i+1 word notVBNbX9INK7A`@VBZ)\(@MDT㥛 @VBxJJS;On?NNSQ?VBDv/?VBP|?5^PRPT㥛 ?RP1Zd?DT"~jRBT㥛 ?RBSMbX?POS7A`JJʡENNP&1ڿJJR(\VBG(\?NNGz?WDTSi+1 word methodologiesNNZd;?JJZd;i word divorcedVBNQ?JJHzGVBD(\i+1 suffix pseNN5^I ?JJ5^I IN;On?WDT;Oni+1 word deliciousNNPCl?VBPʡEƿVBNmݿJJZd;?CD i-1 word drumRP;On?RB;Oni-1 tag+i word NNS indicatedVBNˡEVBDˡE?i+2 word brainVBv/VBGKNNS㥛пVBP= ףp=?JJS㥛?VBZKNNSK?i-1 tag+i word VBG mtvNN#~jĿNNP#~j?i-1 tag+i word VB completeJJRmJJCl@VBN ףp= i+1 suffix .r.JJFx?RBFxi-1 tag+i word DT robustJJףp= ?RB/$NNjti-1 tag+i word DT ambulanceNNS?JJSݿ i suffix urbVB-?VBP^I +NNMbX@JJV-VBDx&1i word scramblingVBG ףp= ?NN ףp= i-1 word hedgesNNx&1?VBDx&1 i-1 word culINS?FWK7A`VBD;Oni-2 word althoughVBnCCGzJJS{Gzt?CD rhVBZS?NNP/$տVBD ףp= ?INq= ףp?RBS{GztJJˡE?NNS~jt?NNPSbX9?NN(\JJRGz?VBP"~j?i word correspondedVBNSJJffffffVBD/$?i+2 word rehabilitateVB rh?VBPh|?5ֿNNM i-1 word dirtVB;OnڿVBP1Zd@JJRK7ANNjt i-2 word flyWDTJ +@VBClNNSCl?WPJ +i-1 tag+i word JJS nursingVBGHzGNNK7A`?JJ#~j i-1 tag+i word -START- yoshihisaNNA`"NNPA`"?i+2 word pacemakersRBx&1пINx&1?i+2 word overturnVBD㥛 VBN㥛 ?i-1 tag+i word NN wheellikeNNSʡEJJʡE?i+1 word south RBSˡEVBN{Gz?JJQJJSˡE?RBT㥛 INL7A`?NNPv?VBffffffVBD/$?i+1 word strenuouslyVBG(\?NN(\i-2 word carelessRB$CJJ$C?i-2 word theirVBffffff?NN1ZdCDHzGNNPJ +NNPSI +RBS㥛?NNS;On?RBSV-?VBP~jtJJx&1 RPV-VBGClۿVBNZd;@INNbX9@VBZ"~?VBDV-i-1 tag+i word `` immoralJJ1Zd?NN1Zdi-1 tag+i word POS advancedJJQ?VBNQi-1 tag+i word `` clarifyVBT㥛 ?VBPT㥛 i-1 word reported JJjt@NN rVBNzG?DTK7A`@INxVBGZd;RBR)\(?JJRQWDTGzRBzGʿi-1 tag+i word VB causeJJ`"VBN{GzNN|?5^? i word pavedVBD1Zd˿VBNoʡݿJJDl?i-2 word civicVBZ= ףp=ڿNNS= ףp=?i-1 tag+i word DT belatedVBNQ뱿JJQ?i+1 word aeternaFWoʡ?NNPoʡi-2 word prohibitionVBNp= ףJJMbX9?VBDffffff޿ i+2 word rawNNl?JJli-1 tag+i word IN surveillanceNN(\?JJ(\i-2 word reduceRB1ZdNNI +@RBR rh?JJjtVBZNNSnڿNNP&1ʿi-1 tag+i word IN panicNNS`"NN{Gz?JJ+ӿi-2 word televisionsVBZnNNn?i-1 tag+i word JJ outletsNNSʡE?NNʡEi-1 word placementsVBP +?JJ +i-1 tag+i word `` uninvitedJJq= ףp?VBDq= ףpտi+1 suffix isyJJx&1?NNx&1i word naughtierRBPnпJJRPn?i-1 tag+i word VBD profferedVBNy&1?JJy&1 i word meritNNSMbX9NNMbX9? i suffix .K.NNSMbJJGzNNHzGNNPh|?5?i-1 tag+i word JJ cursingNNV-?VBGV- i-1 tag+i word DT representativeNNPn?JJPni word slippedVBDv/@VBP\(\VBN㥛 i tag+i-2 tag PRP .VBNʡEVBDʡE?i-1 word constantNN}?5^I@JJnNNPmi+1 word uncoveredVBnѿVBPn?i word indicatorNNQ?JJQӿi-1 tag+i word DT roughJJMbX9@NNMbX9i-1 tag+i word DT mildNN +JJ +?i word hospitableNN/$ݿJJA`"?JJRQi word involvesVBNV-JJV-VBZh|?@VBPK7NNST㥛 i-1 tag+i word NNS helpVBNQNNV-?VBPd;O?i-2 word essentiallyJJRףp= ?JJJ +VBףp= NNJ +?i tag+i-2 tag PRP$ PDTNNd;O?JJd;Oοi-1 tag+i word NN guideNNh|?5NNPA`"?NNSB`"i-1 tag+i word RB liberalizedVBNxJJClVBD rh?i-1 tag+i word RB upbeatVBZZd;JJZd;?i+2 word quarryVBGA`"ۿJJZd;O?NNK7i-1 tag+i word PRP$ fiduciaryJJZd;?NNZd;i+2 word agitatedINK7A`WDTK7A`?i-1 tag+i word CC careNNZd;OVBMbPVBPMbX?i-1 suffix udiNNPS'1ZJJ ףp= NNPV-?i-1 tag+i word `` callsVBZQ?NNSQi-1 word cadwellNNPS?NNPi-1 tag+i word CD streamedVBN rhٿVBD rh?i+1 word arrangementsVBG$C?NNQJJ|?5^?i+1 suffix lopVB}?5^INNSZd;O?JJZd;ORB}?5^I?i-1 tag+i word DT recognizedJJGzVBN= ףp=?NNi+2 word psylliumVBZʡE?VBG/$?NNx&1 i word target NNnJ@VBDB`"VBPB`"?WDTA`"VBZKNNSrh|VBS㥛?JJ;OnIN'1Zi-1 tag+i word VBN crimeNNjtNNPjt?i+1 word hurdlesJJ9v?NN9vi-2 word directionsVB5^I ?VBP5^I ӿi-1 tag+i word IN interstateVBPV-JJoʡ?NNSNNP)\(?i+2 word forumVBGMbX?RBS㥛ܿJJMbXɿINS㥛?i-1 tag+i word VB cardiacJJK?NNKi word splintsNNS|?5^?VBN|?5^i-1 tag+i word VBN testsNNSK?INKi-2 word phillipsJJRV-RBV-IN= ףp=@i-1 tag+i word VBD likelyJJ5^I ?RB5^I ۿi+1 word crevicesRP= ףp=?IN= ףp=i-2 word blairNNPS}?5^INNP}?5^I?i-1 tag+i word JJR chineseJJ%CNNP%C?i-1 word strangerVBN= ףp=VBD= ףp=?i-1 tag+i word PRP$ workNNS?JJS i+1 word adiaJJ?NNi-1 word suggestionsINv?WDTvi-1 tag+i word TO contemporaryVBy&1JJy&1?i-2 word entrepreneurialRBR +?JJR +i-1 tag+i word POS uneasyJJS?NNS i word dailyVBZ"~jNNSˡEJJffffff!@NNvFWoʡRBx&1 i-1 tag+i word TO beVBʡE?NNPʡEi-1 word beginVBGCl@RBX9v?NN rhVBNX9vJJI +IN rhѿi-1 tag+i word IN proddingVBGHzG?NNHzGi-1 word spellingIN"~RP"~?i+1 word durableJJp= ף@NNS?5^I RBˡENNjtƿi+2 word kirgiziaDTI +?RBI +i-2 word paxusVBPVBN?i-1 tag+i word NN stimulatorsVBZ+NNS+?i-1 tag+i word NN promisedVBN/$?VBD/$i-1 tag+i word VBD railwayNN%C?RBd;OJJ+׿i-1 tag+i word JJ glossyNNSQJJQ?i+2 word currently CDMbWDTV-RBʡENNPMbNNPSˡEܿJJS?NNjtVBDClCCv?VBNDl?UHZd;ODTZd;O?NNSn?i-1 suffix ols VBD)\(ܿRBROnVBNx&1WDTZd;?JJR-@NNT㥛 JJS㥛?INQVBPK7A`ſRB&1?NNPJ +?VBV-i-1 tag+i word NNP balancesNNSsh|??NNPsh|?i-1 tag+i word IN biddingVBGRQNNRQ@i+2 word beatriceVBNbX9NNbX9?i-1 word acquiringNNPSp= ףNNQJJR%C?VBN-NNST㥛 ?NNP1Zd@i+1 word jenkinsRB(\NNP(\?i+1 word discretionVBZQVBDv/POSQ?VBNv/?i+1 word glitterVBG/$@JJSNNSi-1 tag+i word VBD whileJJX9vINX9v?i-1 tag+i word NNS solidifyVBPCl?VBDCli word methodologyVBRQNNRQ? i-1 word opecJJbX9NNPbX9?i-1 tag+i word CD feelNN+?RB+i-1 tag+i word NN highJJX9v@NNSClNNjtRB!rh@VBDZd;Oi+1 word aerobicsVBPA`"˿NNA`"?i-1 tag+i word NNPS designNN$C?VBD\(\NNP333333i-1 tag+i word DT beneluxJJS㥛ԿNNPS㥛?i-2 word shortlyCD?DTw/?INw/NNi+2 word sequelVBPS?RBSi+1 word activatedJJm?NNmi-1 tag+i word TO ddVBtVֿNNPtV?i+2 word correspondingVB"~j?VBP"~ji word parkingVBGOnNNI +?JJCli-1 tag+i word DT prospectiveJJʡE?NNʡE i suffix psiNNMbXٿNNPClNNSQ@i-1 tag+i word JJ playsVBZ rh?NN rhi-1 tag+i word JJ breedVBNh|?5NNh|?5? i+2 word kochVB-ӿVBP-?i+1 word ambitiousVBZnRBRףp= ?POSn?JJRףp= i-1 word lightIN$CNNS'1Z?NNPQNNPSQ?VBGl@NN rhJJZd;O?i-1 tag+i word VBD eyebrowNNʡE?JJʡE i word spiteNN%C?RBlNNP i word pepperNNE?FWEпi-1 tag+i word RB freneticVBQRBRMbX9JJZd;?i+1 word infringedNNL7A`RBL7A`? i-1 word tinyRB+JJ"~j?VBDI +ƿVBNnNNS+?i-1 suffix ursVBPm?RBn?IN/$VBZMb?NNSGzVBGx&1?NNx&1RBR+i-1 tag+i word -START- nicholsRB-ӿNNP-?i-1 tag+i word NNP coolJJMbX9?NNMbX9i-1 tag+i word `` berkeleyNNPSX9vNNPX9v?i-2 word programs NNI +JJR333333NNPZd;?VBGV-@JJ(\VBDK7A`տVBPl?RB9v?INh|?5?RPV-i-1 suffix eryNNSK7A VBPRQпVBGZd;OݿNNPSMb?VBDv/ݿFW9vҿJJSMb?VBNsh|?JJS㥛?INoʡ?VBZ%CWDTx&CDFx@NNPX9vRP+RBJ + @NN}?5^I@RBRV-i-1 tag+i word JJ implicationsNNMbNNSMb?i-1 tag+i word NN stirsVBZQ?NNPQi-1 tag+i word RB encouragesVBZ-?JJ- i word parkINOnNNP|?5^?NNPSDlNNףp= ?RBQi+2 word indicationsVBZX9v?VBDX9vi-1 tag+i word JJ maverickNNSMbX9NNMbX9?i-1 tag+i word CC loungeVBZʡENNL7A`?JJףp= i-1 word emphasizeRBRK7A`?JJRK7A`i-2 word sympathyNNSX9v?JJX9vi-1 word providedJJ1Zd?VBNnNNClٿi-1 tag+i word NNP studentsNNSMb?NNPMbi-1 word dominateCCˡEDTˡE?i-1 tag+i word TO transgenicNNPV-?VBV- i suffix 088CDp= ף?NNx&1NNP"~ڿ i+2 word jobVBZGzVBDJ +ѿRBRsh|?@VBN&1?JJGzJJR-i word transitionNN333333?JJ333333i+2 word administratorJJ/$?NN/$i-1 tag+i word IN leasedVBN^I +?NN^I +i word flagshipNNrh|@JJrh|i-1 tag+i word NNS trustVBP(\NN(\?i-2 word banningVBGL7A`堿RBnNNL7A`?INn? i word munisNNSFx?JJw/NNMbX9ܿi-1 tag+i word JJ odditiesVBZSNNSS?!i-1 tag+i word -START- uneasinessJJ{GzIN~jtпNNMb? i+1 word ,"VBʡE?PDTClCDQ?EX~jtJJV-WP"~ڿDTX9vNNP?5^I ?UHMb @JJS/$?WDT(\VBZffffffֿRP+ӿINjtNNSS@MDI +RBS"~j?SYMjtVBDjtPOSX9vLS@CCX9v?RBV-@WRB1ZdPRP)\(?JJRFx?NNZd;O @NNPS= ףp=?PRP$'1Z VBG= ףp= RBRzG?VBNZd;?VBP)\(FWK7?i+1 suffix eruJJh|?5INh|?5?i-2 word riflesVBZd;ONNZd;O@i-1 tag+i word -START- kyleJJx&1пNNPx&1?i-1 tag+i word JJ highwayNNCl?JJCli-1 tag+i word RB discourageVBM?JJMi-2 word lessonVBNd;O?VBDd;Oi word frequentJJJ +@NN333333NNPZd;Oi-1 tag+i word IN affectsPDT#~jNNSsh|?ſVBZ/$?i-1 tag+i word RB frustratingVBGNbX9JJNbX9?i+2 word adviserJJw/?PRP$S㥛PRPS㥛?NNw/Կi+2 word prepaymentVBN!rhJJ!rh?i+2 word professionalWDTK7A`JJxINK7A`?DTsh|??VBGzG?RBsh|?տNNzGVBNx?i+1 word leaderVBDlNNGzVBPtVJJףp= W@IN/$NNS rh?NNP'1Zi+1 word movingNNtV?VBDtVRBS}?5^I?JJS}?5^IJJjtNNSjt?i-1 word customerVBDV-?VBNZd;NNK?INKJJx&1i word pendingRPZd;NNPK?VBGPn?NNh|?5FWףp= JJV-@INd;O@ i suffix pheJJClNNPV-NNSMbX9NNFx@i-1 tag+i word JJ liquidityNNGz?FWGzi-1 tag+i word VBD implicitRBjtJJjt?i-1 tag+i word IN tenseJJ?NNi-1 tag+i word DT importNNjt?JJjti-1 tag+i word IN salisburyNNV-NNPV-?i+1 suffix busVBN rh?JJ rhi+1 suffix kitJJMb@NNMb i+1 word loan VBNPnRBSVBZnNNPS㥛?JJ +?NNHzG@VBDx&?DTS?NNSZd;NNPS^I +i+1 word sponsorsJJV-NNV-? i-2 word featRB ףp= ?NN ףp= i+1 word furrowsNNPn?JJPnؿ i+1 word oneJJ&1ҿRBq= ףpCCOn?VBG+@VBD r?VBZx?NNV-POSV-WDT{Gz?DT5^I @RPA`"?JJROnUHsh|?IN"~ҿNNPS"~jVBNZd;OVBP|?5^?NNSffffffNNPClVBK7A`?RBS-JJS-?i+1 word robinVBNh|?5NNPh|?5?i-1 tag+i word -START- doubtsVBZjtNNSjt?i-1 tag+i word JJ survivesVBZn?NNSni-1 tag+i word VBD interestedVBNZd;JJZd;@ i word failNN(\ VBPL7A`@PRP%C̿RBd;ONNSVBJ +@i+2 word research VBGOn?RBSmJJSm?WDT9vJJCl?NNPMb?NNPSp= ף?NN)\(IN9v?NNSV-i+1 word gardinerNNSNNPS?i+1 word showsVBPPnJJV-NNPHzGNNPSZd;?VBGoʡNN rh@i+2 word employees RB㥛 @NNSlNNP{GzVB$C@NNMb?VBD+߿WDTZd;O?VBGS?VBN9vҿVBPClINjt i word scruffNNSףp= NNףp= ?i-1 tag+i word JJ firstJJCl@NNS'1ZNN7A`RBI +ƿi+2 word deductVB rhVBP rh?i+2 word overrideVBDQ@NNPS㥛 NNX9vNNP?5^I i-1 tag+i word -START- worstRBS@NNS rпVBNMbNN~jtNNPSi word sidelinesNNSףp= ?JJףp= NNףp= i-1 tag+i word : jumpedVBD^I +?JJ^I +i-1 word brandsVBD-?RBv/IN#~ji+2 word murderousIN+?VBD+ i-2 word taskNNSK7NNOnNNPSVBGOn?NNPSd;O?i-1 tag+i word DT straightJJd;O@NNA`"RBT㥛 i-1 tag+i word POS brewingNNuV?JJuVi+1 word massachusettsNN9vVBDQ?JJbX9VBGNbX9?VBNQi-1 word congressionalNNSMbX9?NNPS(\пWDTKNNx&1?NNP'1Zi-1 tag+i word VBZ somebodyNNA`"?JJA`"i-1 tag+i word , infrastructureNNK?JJKi+2 word categoryJJffffffVBNffffff@i+2 word italyNNPRQ?RBvNNx&@VBP-JJL7A`VBZ-?i-1 tag+i word , massNNPSNNP?i-1 word intensifierNNSoʡ?NNoʡi-1 tag+i word IN owningVBG{Gzt?JJMbX9NN㥛 ?i-1 tag+i word DT trinityNNw/?NNPw/i tag+i-2 tag VBN TONNP~jtNNSX9vJJ\(\NNGz?i+1 word accountantsNNP+NNQ?JJ!rhܿINuVVBD+?i-1 tag+i word VBG costVBNjtNNjt?i-1 tag+i word CC misinterpretVBZd;O?NNSEȿNNh|?5޿i+2 word sparksNNʡE?JJHzGWP9v i-1 word juryNNSʡEVBNKVBDK?VBZʡE?i-2 word environmentalistsVBPzG?VBGS㥛?NNS㥛FWzGi-1 tag+i word VBD armoredVBN+JJ+?i+2 word princeton\/newportRBQ?NNClJJ~jt i word alasUHS?RBtVNNSRQi-1 tag+i word RB affectedVBNZd;O?JJlVBDFx?i-2 word fertileVBP rhNN rh?i+2 word deprivedVBNZd;?JJZd;i-1 tag+i word -START- nomuraRB/$NNQNNPOn@i-1 tag+i word -START- lyndenJJ333333NNP333333?i-1 tag+i word VBN mostJJS'1Z?RBS+NNSnٿi-1 word analgesicNNSffffff?JJffffffi-1 tag+i word NNS maintainedNNrh|VBD?VBN&1i tag+i-2 tag JJ INVBG&1RPףp= ÿFW!rh?NNPQCC/$޿RBR-JJRQ?VBNQ?VBP7A`?WDT5^I DTS㥛IN rhVBZB`"RB(\VB;On?CDZd;?PDTKNNPSDl@VBD/$?JJ&1?NNQNNS/$?i-1 tag+i word NN dispatchedJJ)\(VBD)\(?i-1 tag+i word VBN holdingVBG= ףp=NN= ףp=?i+1 word replacesRBl?JJli-1 tag+i word WDT occursVBZffffff?VBPffffff i suffix EPONNPZd;?NNSV-JJ#~jԿCDPni+1 word specialtyNN-?JJ-i-1 word australianNNSbX9VBGv/տNNNbX9?i-1 tag+i word RB nextJJJ +ѿINJ +?i-1 tag+i word DT hostileNNJ +JJJ +?i+1 word nobilityVBZZd;O?VBPZd;Oi+2 word accomplishVBNx&1RB㥛 ?VBDˡEܿ i-1 suffix btNNPSxNNPx?i-1 word motorcycleVBNʡE?VBDʡEi-1 tag+i word RBS upbeatNNQ?JJQi-1 tag+i word JJ polyrhythmsNNSw/?NNw/ i word beliefNNSʡENNʡE? i+2 word kahnRBjt?INjti-1 word chemicallyVBPlVBN+VBDK7A`?i-1 tag+i word JJ melaninNNSS㥛NNS㥛? i suffix tisNNP7A`NNL7A`@JJQ FW%C@i-1 tag+i word RB overallJJ ףp= VBDvRBOn? i word decreeVBZ(\տNN(\?i+1 word groupsNNS\(\NNPˡENNPS|?5^ҿVBGS㥛@NNMb?JJSV-JJ)\(?i-1 word proposed VBG rh?JJZd;OVBD(\JJRuV?RBZd;ODT~jt?NNSCl?NNrh|?INjtƿVBNV-ݿRBRuVͿVBPNNPK7 i word taggedVBNA`"?VBDA`" i suffix rinNNPSq= ףpNNPq= ףp?i-1 tag+i word POS potentiallyRB;On?JJ;Oni+2 word alexanderNNSK7NNFx?FWQi-2 word statistUHMbJJMb?i+2 word mcdonaldJJh|?5NNh|?5?i-1 tag+i word VB maximumJJ}?5^I?RB}?5^Ii+1 word unsignedVBNT㥛 ?JJT㥛 i-1 tag+i word ( c.i.fJJ-?NNSVBDli-1 tag+i word NNP spreadsVBZp= ף?NNSp= ףi+2 word injectionsVBN㥛 JJlVBDuV?i-1 tag+i word VB expectedVBNZd;׿JJZd;?i-1 tag+i word VBZ settingNNS㥛?VBGS㥛ܿ i-1 suffix myJJI +?NNSZd;O?NNPffffffVB/$NNL7A`@FWRQCDS㥛?VBPCli-1 tag+i word NNP traceNNPSB`"ɿNNPB`"?i-1 tag+i word TO aggressivelyVBzGRBzG? i suffix ollVBP^I +?JJV-VBZףp= NNS)\(NNP(\?NNʡE @i-2 word deteriorationJJ{Gz?NN{Gzi-1 tag+i word CC divorcedVBNQ?JJHzGVBD(\i-1 tag+i word VBG stylingVBGZd;O?JJZd;O i+2 word fear VBEJJRl?DTףp= WDT/$NNB`"?RBRJ +VBPE?VBNh|?5?PRP/$JJMbXIN;On @PRP$/$?i+2 word destroyingNNPSMbXNNMbX@NNPi-1 tag+i word MD uniteJJ{GzԿVB{Gz? i word nelsonNN(\NNP(\?i+2 word ascendingPRP`"NN1Zd?CD+i-1 tag+i word RB visibleJJS㥛?RB+NN|?5^i+2 word buildingNNSDlNNPtV?VBG~jtпRBZd;ONNS㥛?VBNX9v?JJsh|??i-1 word martiniVBP!rhNNʡE?VBDjti-1 tag+i word IN retailJJ}?5^I?CD%CVB-NNZd;O?i-1 tag+i word JJ escortsNNPSKNNS7A`?NNtVi word affectsVBZ/$?PDT#~jNNSsh|?ſi-2 word structuralIN= ףp=WDT= ףp=?i-1 tag+i word PRP$ creditorNN)\(?JJ)\(i-1 tag+i word , dumpVBZQVBQ?i tag+i-2 tag `` )NNP/$UH$C?JJ/$ i-2 word likeVBK?VBG&1?CD~jtMD +VBN1Zd?VBPPn?JJRMbX9VBDQFW5^I ?VBZtVNNSxƿINQ?NNP`"?NNPS;On?JJ(\NN rPOS+?RBy&1?i-1 word tourismNNQ?VBDQ޿i-1 suffix mniVBGNN?i word bladderVBP~jtNN~jt?i-1 tag+i word VBD harshlyRBv/?JJv/տi-1 tag+i word IN principleNNS(\NNZd;O@JJDli-1 tag+i word RB femaleVBPK7A`տJJK7A`?i-1 tag+i word -START- miseryDTKNNQ?RBGzNNPK7i-1 tag+i word IN edistoNNI +޿NNPI +?i-1 word runawayNN+?VBDMb`VBNX9vi-1 word leaseVBZd;ORP333333RBʡE?i word prevailedVBN(\VBD(\? i word mutualNNSoʡտJJp= ף?NNPX9vi-1 tag+i word CC sometimeRB#~j?NN#~j i word dumpedVBN+?JJy&1ԿVBDK7?NNʡEi tag+i-2 tag NNS VBDWDTL7A`?RP~jt?NN~jt?VBNm?NNSClJJx&1?RBRJ +CDRBFxINEVBGx?JJR+ηVBMbX?VBDHzGVBPd;O$i-1 tag+i word VB telecommunicationsNNSMbX?NNMbXi-2 word wordedVBNRB? i+2 word imaVBNh|?5VBDh|?5?i-1 word corinthianNNS7A`?NN7A` i-2 word pileNNS&1?UH;OnNN+ i+2 word lazyNN/$JJ/$?i+1 word crashesPDTuVJJuV?i+1 word prestigiousJJSRQ?RBSRQ i-1 word sideNNPSOnEX-IN-?NNPOn?i+2 word manageVBGbX9?NNbX9 i word rainNNFx@NNPQVBP?5^I i-1 tag .CCn?POS333333VBN'1Z?VBP+RB%CUHS?NNS?NNʡE?VBD'1Z''bX9?VBI +@NNPSGzJJA`"NNP\(\i-2 word lindaVBZOn?NNSOn i+2 word toryVB"~j?JJ"~ji-2 word detergentRBR㥛 ?RB㥛 i word breedingVBG~jtNN r?JJףp= i-1 tag+i word VB breakVBˡE?NNˡEi-2 word lemmonJJV-?NNV- i word charmNNSB`"NNB`"?i-1 word glovesRPK7?INK7i+1 word investigationsJJZd;?RPZd;i-1 tag+i word NNPS federicoJJ+NNP+?i-1 tag+i word DT fallNN&1@JJ5^I VBP\(\?VBG+i+1 word generouslyVBN+?VBD+ i word putsVBZ~j@NNSʡENNSIN$Ci word furnitureJJMbXVBPZd;OտNNCl@RB+i word downrightVBN^I +JJx&RBR{GzRB;O@i-1 tag+i word PRP realizeVBX9vVBPX9v?i+1 word crankcaseVBNtVJJtV?i-1 tag+i word NNP grainNNL7A`?JJ!rhVBL7A`i-1 tag+i word RBR chineseJJy&1NNPy&1? i+2 word rNN(\?JJ(\i-1 word pricingVBPV-?RPPnNNK7A`i-1 tag+i word JJ warmingVBGjt?NN(\?JJS㥛i-1 tag+i word CC automobileNNʡE@JJx&ٿINV-i word waveringVBGv?JJA`"NNMb?i+1 word tobaccoNNPSzGڿJJzG?i-1 tag+i word NN subminimumJJw/?NNw/i+1 word namesVBClɿNNSzGҿJJCl?NN+VBDQ?i+1 word turnkeyVBP{Gzt?IN{Gzti+1 suffix ettNNP?NNzGINQi-1 tag+i word JJ smallNN+NNP+? i word seldomJJNNS+RBd;O@NNnVBDʡEVBPMbXi+2 word customers VBZX9v?NNPSp= ף?RBR|?5^@JJS㥛JJRx&IN&1?NNSffffff?NNPx&VBHzGRBjtNNoʡݿi+2 word shownNNPSjt?NN~jtJJjtNNP~jt?i-1 word spokesmanVBNmNN+VBD?i+2 word startsJJ~jt?NNDl?NNS1Zdi word reflectJJ}?5^IVBDK7ٿVBlڿVBPy&1@i-1 tag+i word NNS participateVBbX9?VBPbX9޿i-1 tag+i word NNS shookVBP?5^I NNNbX9VBDK7A`?i-1 tag+i word NN closedVBNʡE@JJx&VBDSi-1 tag+i word DT hundredsNNS$C?NN$Ci-1 word blaredNNSNN(\JJ?5^I INRBl@i-1 word showsWDT?5^I JJ= ףp=IN"~j?VBZmDTʡENNS+?NNPSZd;?VBP= ףp=? i-1 word gameCDQNNP?5^I ?UHClNN^I +?i word recoveringJJʡEVBGʡE?i-2 word targetedJJjt@RB+NNP ri-1 tag+i word RB strikesVBZh|?5?JJh|?5i+1 word tapingDTClNNPL7A`堿PRP$NN&1@VBzGVBPJJn?i-1 tag+i word DT reflectVB-VBP-? i+1 word usesJJ5^I ?NN5^I i word arrangingVB)\(VBG)\(?i+1 word transportsVBsh|?ݿNNPsh|??i+1 word exclusivelyVBPZd;O?NNSV-VB(\ؿi-1 tag+i word VBP fuelingVBGZd;O?JJZd;O߿i word censorshipNNPSNNjt?JJDli-1 tag+i word , militantJJ?NN i word dwarfVBZSVBPS?i-1 tag+i word IN unfixedJJ}?5^I?VBP}?5^I i word uphillVBRBoʡ?JJrh|?NNRQi+1 word mechanizedRBjt?JJjti+2 word installationCCxINx?i-1 tag+i word PRP awaitVBPS?RBSi word nixdorfRBʡENNPʡE? i word geniusVBP'1ZNNK7A@FWuVտNNPOni word leonardNN\(\JJ ףp= NNP333333?i+2 word electronJJ(\VBD(\? i word doveVBZZd;VB/$ٿVBDx&1?i+1 word thomasNNS~jtVBZ~jt?i-1 tag+i word NNP virusNNq= ףp?FWq= ףpi-1 tag+i word JJ judgmentsNNSCl?FWCli-1 tag+i word VBG headNNuV?JJuVi-1 tag+i word JJ designerNNV-?RBV-׿i-1 tag+i word TO erroneousVBK7JJK7? i suffix rofNNSMbXNNMbX?i+1 word conservativesVBG?5^I VBN-?JJ~jti-1 tag+i word RB influencedVBDHzG?VBNHzGi-1 tag+i word VBP mePRPX9v?NNPX9vi word bouncedVBNffffffVBDffffff?i-1 tag+i word PRP$ nativeNNDlCDZd;ϿJJE?i word holdupsNNSX9v?NNX9v i suffix emaJJv/NNʡE?VBN1Zd i word late NNS\(\VB|?5^NNʡE%RBRS㥛VBPT㥛 RBx&1H.@CDZd;NNP~jt JJQ$@JJSB`"VBNףp= INClVBZsh|?i-2 word backfireEXK7?RBK7i+2 word destructiveVBoʡJJ~jt@NN'1Zi+1 word askingDTQRBh|?5@INuVi+1 word corporatismNNPZd;OJJZd;O?i+1 word rocketingVBNRQ?NNRQi+1 word diseasesNN"~?JJ"~i-2 word moderatelyVBV-VBP333333UH㥛 ? i word essarCDuVNNPuV?i-1 word flyingJJx&NN}?5^IRB~jt?INoʡ?NNP}?5^I?NNPS}?5^IRPZd;i-1 word recordingNNPSNNP?i+2 word leasesNNjtVBGjt?i-1 tag+i word JJ sufficientJJ~jt?NN~jti tag+i-2 tag VBG WRBNNS;On?NNPZd;RBh|?5@NN rؿJJK7A`VBZ;Oni+1 word circulationJJR}?5^I?RBR}?5^Ii-1 tag+i word RB brokeJJMbRB+߿VBD;On@DT(\ i word b2VBףp= JJL7A`@NNPZd;i-1 tag+i word CC oneRBX9vNNGzCDx?i+2 word maintenanceVBN/$?JJ/$ֿIN$CDTHzGѿRPCl?i+2 word shelteringIN333333?NNP333333i+2 word movedRP~jt?NNB`"?CCDlWDTZd;?RB rhINZd;DTZd;?NNSʡEi-1 tag+i word -START- whittleNNP/$?NNM?JJ"~jWPԿi-1 tag+i word `` amountedNN/$VBD/$?i-1 tag+i word ) sideVBjtNNjt?i+1 word extendedNNP+ۿVBPB`"?NNSmRBB`"ɿNNPSCl?i+2 word sprayVBZV-VBGV-?i+2 word debateCD!rhNNPtVRPtV?JJ!rh?i+2 word warrantsNNClѿRB rh?NNPCl?VB rhѿi+1 word still VBMbVBDMb?CD|?5^?WDTS?NNSw/@NNPKNNPS+?JJQNNʡE?PRP|?5^RBT㥛 IN"~j?i-1 tag+i word `` kemperWDT5^I NNP5^I ?i+2 word handedJJK7A`VB(\@VBP(\NNSrh|NN;On?i+1 word resembleNNS7A`?NN7A`i-1 tag+i word `` antisonyNNGzJJGz?i-1 tag+i word JJ botheredVBG+VBN+?i-1 tag+i word , sweetenedVBZZd;VBDZd;?i-1 tag+i word VBG graveVBT㥛 JJT㥛 ?i word champagneNNM?JJVBD+i-1 tag+i word DT boostVBN}?5^IԿNNZd;O?FWˡE i suffix YesNNPjtRB(\LSףp= ӿNNClUH{Gz@i+1 word relationshipNNrh|@VBGd;OJJR?5^I ?JJZd;ONNPI +i-1 suffix ireNNPʡEVBG/$RBT㥛 NNd;O@VBD?PDTMbP?JJRn?RPxPRP$S㥛RBRnVBZ/$?WDTn?INK?CDn?DTV-?VBNX9v?PRPl?JJ'1Z?NNSMbX?i-1 tag+i word DT promoterNN r?JJ ri-1 word submarineNNClJJCl?i word photographNNS/$ۿNN/$?i-1 word cartingRP9v?RB9vi-1 tag+i word JJ managementNN"~jNNP"~j? i suffix bizNN}?5^I?JJ}?5^Ii-1 tag+i word NNS bounceVBtV?VBP-?RB(\NNK7AؿIN|?5^i-2 word reachedVBGGzJJHzG?NN%C?CD}?5^Ii+1 word resolutionsVBNV-?JJV-i+1 word acquiringINZd;?RPNbX9?RBNbX9WPZd;i-1 tag+i word CD backlogNNSJ +NNJ +?i-2 word abstinenceVBZ1ZdNNS1Zd?i-1 word preparePDT/$?DT/$i+2 word appropriationsJJ +?VBv?VBGvNNx?RBR +JJRxi+2 word collateralJJRv/?RBRv/i+2 word disobedienceJJ?NNVBZ1ZdVBP1Zd?i-1 tag+i word CC continuingVBGMb?NNMbi-2 word blamesNNGz?JJGz i word gaugeNNX9v?NNSX9v i suffix tel ''(\JJ/$DTV-NNSK7ANN&1@NNPSMbXCCUHx&1NNP^I + @VBCli-1 tag+i word DT tvCDsh|?NNPjtNNV- @RB1Zd i word h.g.VBMbXNNPMbX?i+1 word surgedNNP?VBG̿NN ףp= ?RB ףp= i-1 tag+i word , financeNN?JJ i-2 word kkNNV-ϿNNPV-?i-1 word expectationsINy&1?RBy&1̿i-1 word holdings NN)\(WDT"~?RBB`"?INMbVBZJ +?NNS/$VBx&1VBPVBDףp= i word metromediaNNSףp= NNPףp= ?i-1 tag+i word NNP threeNNPSZd;ONNPFxCD333333@ i word intendVB/$VBPZd;?NN)\(i+2 word averagesJJRm?NNmi-1 tag+i word NNP cooperativeNNPS333333NNP333333?i-1 tag+i word VBP heldVBN+?JJ+i-1 tag+i word -START- erwinVB/$ÿNNP/$?i-1 tag+i word VB insiderVBNNS㥛?JJOnۿi-2 word sheerVBGQPRP^I +JJMbX9?UHzGڿi-2 word copiersJJQ?NNQi+1 word dramsJJrh|?NNrh|i-1 tag+i word IN disappointingVBGh|?5JJh|?5?i-1 tag+i word DT confusingVBGZd;JJZd;?i-2 word earningsVBCl?VBD?5^I WDTx&1?VBNOn?NNS(\ҿJJzGVBZ9vRBA`"@NNSJJRK7@VBPlRBRK7IN/$NNPx&1ȿi word swellingJJMbX9NNʡEVBGK7A@i-1 tag+i word IN ozoneCDQNN333333?JJ= ףp=i-1 tag+i word JJR influentialJJ"~?NN"~ڿi-1 tag+i word VBP centerVBPS㥛?JJRS㥛Ŀi word victoryNNSˡEԿNN%C@JJףp= i suffix ABCNNPSOnNNPOn?i-1 word inflationINI +?VBDףp= ?VBG|?5^@RB rhNN|?5^ i-1 word iceVBZ rhNNSn?NNCli word forbidsVBZ`"?VBP`" i word iraqVBClNNPCl? i-1 word jayNNPSI +NNPI +? i-1 tag+i word WDT characterizesVBZʡE?VBPʡEݿi-2 word meterWDT%C@IN%Ci word sometimes NNSNbX94VBGzVBPףp= VBZV-JJʡENNP~jtVBGZd;ORB/$'@UHy&1i-2 word institutedVBGS㥛ԿJJGz?NN/$ƿi-1 tag+i word CC curtailedVBD;On?VBN;Oni+2 word counterNNPSRPV-NNS?VBDOnӿVBNOn?INV-?i-1 word howeverJJ +?VBZ rhVBRQRBMbX?NNx& i word detectVB-?NNSnNNEi-1 word lackedCCZd;O?RBZd;Oi+2 word nastyRBSB`"?JJSB`"i word admittedVBDHzGVBZ+VBN9v? i+2 word billRBX9vNNV-ͿCCGzVBPrh|?DT(\?VB\(\?VBGjt?VBD/$?JJ^I +߿INMbVBZ ףp= NNSSNNPx&1?VBNFxi-1 tag+i word PRP$ mindNN ףp= ?JJ ףp= i-1 tag+i word DT universeNNoʡ?JJoʡi-1 word questionIN r?VBPw/?WDTSRBX9vֿi word strengtheningNNQVBGQ?i-1 tag+i word PRP$ nextJJm?INmտi-1 tag+i word VBZ crowdsVBZCl?VBCli-1 tag+i word WP putVBPX9v?VBDX9v i-2 word myJJ= ףp=?INKNNS%CNNPQ?VBG= ףp=?RBK?NNSi+2 word saintlyNNS+?NN+i-1 tag+i word PRP$ deliciousJJ`"NNP`"?i-1 tag+i word DT raggedVBNffffffJJffffff?i word enthusiasmsNNS7A`?NN7A` i word slowlyVB~jtRB+N@NNSVBN'1ZJJT㥛 NNSCli tag+i-2 tag `` ''VB&1ʿNNjt?JJ%CNNPZd;O?i-1 tag+i word NNS keenVBP(\JJ(\?i word commonwealthNNPS;OnNNP;On?i word idealistNN+?JJ+i-1 word intermediateNNPSE?JJv/NNPv/i-1 tag+i word RB needVBI +@VBPA`"VBN rhi-1 tag+i word CC backlogsVBPX9vNNS?INB`"i-1 tag+i word JJ steepNN7A`JJ7A`?i word fulfillVB rh?VBPSӿVBDFxi word mineralsNNSK7A`?NNʡEֿNNPX9v?VBDV-NNPSX9vϿi-1 tag+i word IN slightJJd;O?NNd;Oi+2 word paintsVBN(\?VBD(\i-2 word bondholdersVBI +?INI +i+1 word respectedRBSm?JJSmi-1 tag+i word '' suchVBZjtJJV-?VBDKi+1 suffix lawVBK7NNPSK׿VBGffffff?NN?JJQ?NNS"~jNNPMbi-2 word concentrationJJjt?NNjt i+2 word tankJJ333333?NN%CNNSX9v?i-1 tag+i word DT broadestJJS$C?RBSA`"NN1Zdi+2 word acknowledgingJJX9v׿NNMbX9?RB~jti-1 word policy VBDMbVBPOn?VBZ~jtVBOnNNS㥛?VBNMb?JJFxNNS~jt?VBGv/?RBRl?i+1 word soviet VBPMb?WDTA`"RBp= ףNNPNbX9ؿVBnҿNNw/CDNbX9?INrh|?JJ(\VBDd;OVBNsh|??i-1 tag+i word TO easeJJuVݿNNV-VBx?i-1 tag+i word VBN becauseINK7ARB\(\ @NNEп i suffix oodJJx&1INV-VBZSPRPSVBffffffLSK7A`ݿNNPʡE?RPsh|?JJR1ZdRBX9vNNS ףp= VBDMb@VBNw/?VBP9vNNzGa@i-2 word spentJJ}?5^I̿NNVBNx&?i-1 tag+i word , plasticVBPrh|NNrh|?i word greatlyRBRQ?VBRQi-1 tag+i word IN supplementalJJ`"?NN`"޿ i word seem JJRxNNS-VB~jt?JJ(\VBNMbX9VBPK7@RBQNNZd;VBDGzi+2 word strategiesNNSVB$CRBClNN|?5^VBP$C?JJS@i-1 tag+i word VB depletedVBNQ?JJQ i word pariahNNSQNNQ? i word maidenJJ+?NN+ i suffix 3JJtVNNNbX9VBDX9vCDjt@LSsh|?@RBnNNSNNPni-1 tag+i word DT retireeNN= ףp=?JJ= ףp=i-1 tag+i word NN routineVBPoʡNNoʡ?i-1 tag+i word CC ruinedVBNn?VBDni-2 word gunnersJJK7?NNK7i-1 tag+i word CC yenNNS/$NN/$?i-1 tag+i word IN considerableJJq= ףp?NNq= ףpտ i word ignoreVBNbX9?JJMbVBD{GzVBPMbX@RB`"INQVBZ{Gzi-1 tag+i word VBZ neededVBN~jtÿRBMҿJJx&1?i-1 tag+i word NN coveringNN/$VBG`"@JJV-i word southwideNNV-NNPV-?i-1 tag+i word , greenishVBh|?5JJh|?5?i+1 word shovingNN rVBDn?VB&1ڿi-2 word materialsJJV-?VBNX9v?NNrh|?VBDxi+1 word collegesWDT'1ZIN'1Z? i suffix WisNNNNP? i+2 word handRP/$NNףp= ?CD+VBPxINuV?VBi-2 word cateringVBOnNNSOn?i+1 word useryNNP r?JJSNNK7i-1 tag+i word NN poolNNMbX9?JJMbX9i+2 word mcdonnellVBZ'1Z?NNS'1ZVBNZd;?VBDZd;i-1 tag+i word DT therapeuticJJ-?NN- i word listsVBZ/$NNS/$?i-1 tag+i word NNS yankedVBPClVBDCl?i-1 suffix ncyNNPS㥛 ڿVBDK7?POS+?VBNzGVBZ rhVBG?5^I ?NN7A`INRQȿRB-?NNSK7JJS/$RBRuVտWDT+?NNP-?VB)\(?VBPMbXJJ$Ci word aircraftJJ)\(NNn @VBD(\VBN;OnҿRB(\VBZ-NNSh|?5?NNP ףp= ׿i word investorNN~jt?JJd;ONNP)\( i+2 word rjrVBDE?JJEi word showersVBZ#~jܿNNS#~j?i-1 tag+i word TO magneticVBKJJK?i-1 tag+i word WP tracksVBZ r?VBP ri+1 word broadcastingNNPQ@JJ +޿NN(\CDjti-1 word sensitiveNNSK7A?NN%CJJE?i-1 tag+i word VB blockbusterJJRmͿJJJ +?NNoʡ i+1 word momJJ rh?NN rhi-1 word dollarJJ|?5^RBRw/?INZd;OVBZHzGVBG?5^I ?VBDX9v?RPRQ?JJR-NNP/$VBX9v@NNSy&1?VBNX9vRBDl?NNi+2 word struckJJsh|??NNsh|?i-1 tag+i word DT shoesNNSCl?NNCli+1 word californiaJJZd;VBNoʡ?NNMbX9NNP +?i-1 tag+i word NN chefVBZHzGNNHzG?i-2 word limpidVBG`"JJ`"? i word moJJp= ףNNp= ף?i-1 tag+i word NNP cellularJJCl?NNq= ףpNNPʡE?i+1 word advisersVBZ rhѿNN#~j?POS rh?JJ|?5^NNPQ?i-1 tag+i word PRP constituteVBOn?VBPOn i word slightJJn@RBlNNd;OVBN\(\i word machetesNNVBZ~jtӿNNS|?5^?i-1 tag+i word JJ ricanJJFx?NNPFxi+1 word ourselvesVBʡE?JJʡEi-2 word margins JJSJJR|?5^VBPPn?INjt?VBZ +VBGˡENN~jt @RBR|?5^?RB9v?VBPnؿi-1 tag+i word NNS remainingVBGq= ףp?NNq= ףp i word nikonRBS˿NNPS? i+1 suffix ! JJRJ +?NNP+WRBS㥛NNw/ @VBP/$?SYMRBRffffffUH"~j@RBMb@NNS)\(JJJ +ٿVBDB`"ٿVBNZd;Oi-1 tag+i word IN trackingVBGS?NNSi-1 tag+i word JJ republicsNNSp= ף?NNp= ףؿi word squeezedVBN?JJL7A`VBDMb?i-1 tag+i word `` murphyNNP1Zd?FW1Zdi-1 word refugeRBCl?NNCli-1 tag+i word VB drivenRBlVBNl?i-1 tag+i word WDT designsVBZm?JJmi-1 word dominatedVBG!rhNN!rh?i word murderingVBGGz?NNGz i+1 word hitsVB'1ZNNS?JJ!rh?INCli word demandsRP/$NNDlJJHzGVBZ!rh?NNSQ @VB"~i-1 tag+i word `` vandenbergNN\(\׿NNP\(\?i+2 word lexusIN(\?VBZ~jtNNS~jt?VBD~jt?VBP~jtRB(\i+1 word painsVBGS㥛NNS㥛?i-1 tag+i word DT globeNNʡE?JJʡEi-1 suffix .n.NNS\(\?NN\(\Ͽ i suffix eapVBsh|??JJ?5^I @NNZd;O VBN/$VBPMbRB5^I @NNS|?5^i+2 word tradedVBGtVοNN'1Z?JJMڿNNPd;Oοi-1 word rolledNN9v?RPK7?JJ9vRB|?5^ѿINh|?5i-1 tag+i word NN previewVBS㥛NNS㥛?i-2 word cellsVBZʡE?VBPʡEݿJJV-?NNV-i-2 word titleDTS㥛?INS㥛i+1 word countsVBV-NNV-?FWjt?PDT~jtӿJJjtDT~jt?i-1 tag+i word PRP$ eloquentJJQ?NNQi-1 word floorNNP(\VBPA`"VBGʡENNA`"?NNPSK7A?i+1 word ebensburgNNGzJJK7INd;O?i+2 word filipinoNNS?VBZS i+2 word perVBNoʡݿRBRjtJJ ףp= ?JJRjt?VBGsh|??VBD1Zd˿i-1 tag+i word DT attendantJJ+?NN+ i word shagsVBZ-?PDT-i-1 tag+i word IN postmarkedVBDJ +VBNJ +?i-2 word staunchlyJJRHzG?NNHzG i+2 word 'mDT)\(ܿRBuVIN?5^I @i-1 tag+i word DT tentativeNN333333?JJ333333i-1 tag+i word DT burstJJSK7NNK7? i+2 word got VBP?5^I ?JJZd;?NNPnMD~jtNNPS|?5^JJS~jt?JJR= ףp=?RBR㥛 ?NNS5^I VB?5^I NNMbX9? i word swimVBPQ?VBDQi+1 word philosophicVBZnVBPn?i-1 suffix rch NNPSOn?NNw/?WDTѿINMbVBZ?VBG/$?RB/$NNSGzNNP~jti+1 word doomedVBvVBG rh?NNX9vi-1 word receivesRBw/JJw/? i-1 word hatsVBPx&1?NNx&1i-1 tag+i word : twelveCDZd;O?NNPZd;Oi-1 word veniceVBPvJJoʡ?NN+i-1 tag+i word IN recognizingVBGzG?NNzGi-2 word enforceVBMb?NNMbi word discreteJJy&1?NNy&1i-1 tag+i word RB eagerlyRB/$?JJ/$i-1 tag+i word TO defaultNN1ZdVB1Zd?i-1 tag+i word IN irianJJ;OnNNP;On?i word drilledVBN%C?JJ%Ci+2 word steakVBoʡVBPQ?VBDףp= i-2 word incurJJQ?NNQi+1 word clinicalVBGQ?JJQi-1 tag+i word CD refurbishingVBG5^I NN5^I ?i word terminationNNtV?NNPtVi-1 word leftistNNK?JJK7A`?NNPK7A`NNSK i word aboutDTZd;NNPZd;ORBK7@NNJ +PDTK7A`տRPSVBP;OnVBZuVRBR +@JJ}?5^IN-F(@VBw/NNPSVBNGzi-1 word brooksVBZmNNPS~jt@NNPI +VBDli word dodderingNN~jtVBG`"JJ rh? i suffix medVBD+.@NNSK7 IN"~jNNPMbX9?NNPSA`"VBNE.@RBsh|VBZ rhVB"~j VBG+JJCl@VBPmRLS"~ʿNNn@CCL7A`RPq= ףpi-2 word accoladesJJjt?VBNB`"RBV-i+2 word advisedRBzGNNPzG? i word sound RB rhINEJJ33333@NN ףp= ǿCC#~jVBNQNNS+NNPh|?5VB?i+1 word kennedyNNPSuV?NNSq= ףpNNPp= ף i word fiscalNNSʡENNPK7NNsh|??CDzGJJMINB`"?i-1 word isabellaVBZ'1ZVBʡE?VBPZd;O i+1 word willWP%C?DTrh|ϿNNMb@NNPףp= ?VBM?CD= ףp=?INzGaVBG/$WDTM@VBZZd;PRPsh|?PDTVBD"~ RPQNNPSK7@PRP$sh|??VBNˡE?VBP-?JJNbX9 RBx&@NNS +@EXMb?i+1 suffix rriNN+VBN&1?JJPnؿi+2 word party VBGA`"JJRJ +IN+?DTzG?NNPC@VBzGRBSNNX9vVBDClJJOnNNS?5^I i-1 tag+i word NNS preventVBPE?NNI +VBDA`" i-1 word ranRBw/?NNʡEVBNʡEJJK7INOn?RP? i-1 word whoNNClVBP;On@PRPףp= ?DT-?NNS333333VBp= ףпRBQ?POSVBZT㥛 @CDT㥛 RBRx&?JJHzGJJR{GzNNP"~VBDS㥛 @INp= ףVBNX9vi word cateringVBGlNNl?i word recruitNNuVͿNNPuV?i+2 word choresNNPQRPx&1?NNQ?INx&1i-1 tag+i word `` standVB^I +?JJ'1ZNNPCli-1 tag+i word -START- baseballDTnѿPDToʡNN%C@NNP+i-1 tag+i word NNS uninspiredVBNMbJJX9v?VBDvi word feminineJJ +?NN + i-2 word delNNSq= ףp?NNPSq= ףpi-1 tag+i word WRB giantJJ|?5^?NN|?5^i-1 word anticipateDT@INi-1 tag+i word NNP sociologistVBPQNNQ?i+1 word foreignJJK7A`?CCʡE @PDTVBP~jt?IN#~j?VBZ$CVBJ +?RBR rhVBN333333ÿWDTq= ףpNNPx&?NNS5^I JJRy&1?RBZd;ODT/$ѿNNX9v VBDjtƿJJS{Gz?RBS{Gzܿi-1 tag+i word -START- oceanNNZd;OJJ$CRBʡE޿NNP/$ @i-1 tag+i word CD bitsNNSl?NNli-1 word convertingVBN/$JJ/$?i-1 suffix nic NNPS}?5^ICDx&1INsh|??JJ9vNN)\(@VBN1ZdWDTjtRBffffffNNSV-@NNPOni+1 word destructionJJSNNPS?i+1 word albumsVBPx&1NNx&1?i-1 tag+i word JJ gearNNCl?JJClǿi-1 tag+i word , leatherNNn?JJRmRB\(\߿i-2 word processorNNK?JJKi-1 tag+i word RB montgolfingVBG+NN r?JJuVi-1 tag+i word TO higherJJRuV?RBR(\տVBV- i-2 word ecJJ(\VB= ףp=NNZd;O?VBDEVBNp= ף?VBP= ףp=? i+2 word riadNNP/$?VBD/$ۿi+1 word tenderJJ{Gz?NNZd;VBNZd;?i-1 word controls NNPJ +?VB= ףp=NN&1JJROn?JJS㥛?RB-?VBDDlRBROnINˡEԿi-1 tag+i word VBZ humanaRB9vNNP9v?i-1 suffix sdiJJ~jt?NN~jti-2 word outshineJJ~jt?NN~jti+1 word active NNףp= JJSy&1VBNSݿJJmVBDCl@RBSQ?VBP rhRBzG?NNSPn?i-1 tag+i word NN oversoldNNL7A`RB1ZdۿVBN(\ſJJuV@RPKi+2 word fallingVBNʡEVBPS?PRPx&1?JJmPRP$x&1NNV-?VB(\i-1 tag+i word , dataNNPS r?NNSQ?JJQNNP r i word arabsNNP^I + NNPSK7@NNS= ףp=?NNʡEi-1 tag+i word VBD eastNNPS(\NNSn@NNPJ +i-1 tag+i word DT clearJJRQ?NNRQi-1 tag+i word DT awardNNV-?JJV-i-1 tag+i word NNP mazzeraNNw/NNPw/?i-1 tag+i word RB covetedVBNzGҿJJ +?VBD rhi-1 tag+i word RB bidNN"~jVBD333333?VB;On? i word starNNPB`"ѿVBMb?NN/$@VBP\(\JJHzGNNSHzGi+2 word shippingNNq= ףpNNPq= ףp?i-1 tag+i word PRP$ townDTtVNN~jtۿNNPx&1?i-1 tag+i word JJ indiansNNPSx?NNSxi-1 word regionVBNMb?VBDMb i word due VBP+UH~jtNNSSVBRBjt@NNSVBDVBNQJJ5^I B!@VBZ1ZdNNP&1i-1 suffix ing''&1?PRP7A`?RB= ףp=?VBK7?RBR9v?CDrh|߿VBDA`"NNK?PDTS㥛?RBSHzGUHʡEVBN{Gzt?DTԿNNSRQ?IN1ZdJJR)\(?JJSV-׿VBPPnWDTnWP#~jVBZV-NNP333333NNPS|?5^?PRP$~jt?RP㥛 0@FW+EX(\VBGbX9ȶJJZd;O@POSuVCC㥛 ?i-1 tag+i word TO cineplexVB1ZdNNP1Zd?i word studentsNNSK7@JJQNNPJ + i+1 word gave NNSʡE?VBD+POSZd;O?WDTrh|?VBZZd;ONNPSʡERB+?DToʡNNPrh|?i-1 tag+i word IN involveVBP/$?JJ/$i+2 word expansionJJ~jt?VBZ?NNSNNPFx?NNPSnNNZd;OVBD5^I  i-2 word hit CDX9v?JJ7A`?RP= ףp=NNPffffffVBGRQNNEؿVBDZd;O?INK7A@VBZMbX9RB1ZdNNS|?5^?JJSA`"?i word palestiniansNNPSGz?NNSGzi+2 word namelyVBN^I +?JJ^I +i-1 tag+i word JJ existingVBG(\µJJGz?NN\(\i-1 tag+i word TO groupementVBZd;ONNPZd;O? i word tensVBZsh|?DT;OnNNSʡE@NN^I +i+2 word influencesNNSx&1NNx&1?i+2 word relocateNNˡE?NNPˡEi-1 tag+i word DT checkoffNNsh|??NNPsh|?i-1 tag+i word TO ukrainianJJd;O?NNPd;Oi+1 suffix gal JJ/$ @INK7?DT(\?NNPQ?NNClFWʡE?JJSZd;OVBNSWDTGzNNSZd;OVBGB`"i-2 word advertisingWDT5^I ?NNV-?JJA`"IN5^I VBPGz?i+1 word performanceRBףp= NN'1Z?JJw/?VBG`"i tag+i-2 tag NNP VBZINClJJRQȿNNQ?VBNZd;?VBZMbX9VBV-POS'1Z?RBR?VBP;On?RBGz?JJRNNPK7A?VBDZd;RPGzNNS5^I NNPS9v?i+2 word alongNN;OnCD\(\VBPA`"?JJV-?IN/$VBZA`"ۿDT/$?i+1 word quotationVBZQ?JJ7A`?NNPMb i+1 word doseJJzGNNzG?i-1 tag+i word JJ pashasNNSʡE?NNʡEi-1 tag+i word NNP influencesVBZ$C?VBP$Ci-2 word stennettVBZClVBP/$ٿNNh|?5?i-1 tag+i word NNPS lieVBP!rh?VBD!rhi+2 word giantsRPoʡ?INoʡi-1 tag+i word TO snowbirdsVBOnNNSOn?i-1 word poorlyVBNOn?VBDOni+2 word fundamentalsVB"~VBP"~?i-1 suffix irtVBP1Zd@JJRK7ANNjtVB;Onڿi-1 tag+i word VBN foreverRPsh|?RBsh|??i+2 word bringingNNPSMbpNNK7?JJK7NNPMbp?i word torchedVBN$CVBD$C?i+2 word grossRB(\?JJRv/JJv/?NNP(\ i word piloteNN333333FW333333@i-1 word grosslyVBP333333JJV-?NNQi-1 tag+i word VBD provokedNNSrh|VBDrh|? i-2 word heatINn?NNPQ롿VBDli+2 word controversialRPʡEINʡE?i-2 word uninsuredJJq= ףpVBDV-NNq= ףp?VBNV-?i-1 suffix lacNNPSX9vϿNNPX9v?i-2 word lawsonVBG)\(JJHzG?NN/$RBGzֿIN1Zd@RP|?5^i-1 tag+i word IN metamucilNNPSʡENN&1ʿNNP= ףp=? i word carNN/$ @JJ7A`NNPZd;i-1 tag+i word NN drivenVBN\(\?NN\(\i-1 tag+i word DT abruptVBN|?5^JJ|?5^?i word revengeNNp= ף?NNPp= ףi word archaicJJʡE?NNʡEi-1 word josephVBZHzGNNy&1NNP(\? i suffix guyNNSClNN$C?RBS㥛VBrh|i-1 tag+i word VB brokeRBB`"@JJ1ZdINS㥛ؿNNSMbRP/$i-1 tag+i word IN skepticismNN-?RB-i-1 tag+i word , blamesVBZq= ףp?RBq= ףpi+2 word entireVBP(\?VBZ(\i-2 word deductibleNNSI +?NNI +i word outweighVBZ(\ݿVBʡE?VBPQ?JJ\(\IN"~i+2 word bancorpRB"~NNP"~? i suffix acoNNPSffffffNNS㥛NNP/$?i-2 word shipmentJJ9vNNS9v?i-1 tag+i word DT listenerNN+?JJ+i+1 word assignmentNNʡEPRPQ@PRP$QJJʡE?i word communismNNSNNPS?i-1 tag+i word CC fishermenNNSʡE?VBʡEi tag+i-2 tag . NNUHzG?NNA`"ۿNNPx&1JJCl?NNPSCli+1 word began NNPSw/?NNn?DTx&1NNP(\VBGˡEWDTI +@JJʡEIN ףp= NNS333333?i+2 word rosenfeldJJxNNPx?i word workingNNP?JJˡE?VBGV-@RBClNNJ +i+2 word exasperationVBP +?NNZd;OVBDMbi+1 word nominationJJp= ף?NNPp= ףؿi-1 tag+i word DT malteseJJp= ף?NNPp= ף i suffix 977JJbX9޿CDbX9?i+1 word robbersNNPMbX9NNMbX9?i-1 tag+i word IN goodJJ(\?NNrhRBjt@i+2 word additional NNsh|?VBP%C?RBʡE@VBDMbXJJvVBZ}?5^I?NNSV-VB5^I ?RP\(\ i+2 word popNNPCl?NNʡE?VBPFxJJ^I +INClNNSx&1?i-1 tag+i word VB entangledVBN333333JJ333333? i suffix ofaNN\(\?CD\(\i+2 word fashionNN(\JJMbXѿVBDl?RBffffff?i+2 word miscellaneousVBNnJJn?i-1 word advertisingNNPSjt?NNA`"VBNS?WDT+?JJ$CIN+NNSK7A`?NNP\(\i-1 word billsINZd;O?VB(\VBG{Gz?NNSVBDMbXVBNS㥛@VBPףp= ?WDTZd;Oi-1 tag+i word DT fileJJ ףp= NN ףp= ?i-2 word airline RPjtRB?VBPvNNzGVBD/$?VBNClJJK?IN333333NNS\(\?i-2 word bhagatNNS?JJSi+1 word trulyJJbX9WRBCl?RBV-?i-1 suffix ureINjtJJR= ףp=?NNPQFWMbX?NNSxPRPJ +JJ ףp= ǿRPzG?RBR= ףp=ʿVBZx&1@VB(\?NNPS&1VBG(\?NNMbXVBDK7ѿRBV-VBNHzG@WDToʡ?WPX9v?DT'1Zi-1 word clumsyVBZB`"NNSB`"? i-1 word seekNNPDlRP ףp= ?RB333333NNK7A`@JJ|?5^ٿINʡENNSS㥛i-2 word convincingNN rh?JJ rh i word amuseVBMbVBPˡE?NN#~ji+2 word guaranteedVB9v?NNbX9VBDV-?VBN9vWDT?DTNNSV-NNPbX9?i+1 word savingsJJZd;OVB1Zd?VBN1ZdNNV-NNP r?i-1 tag+i word NN issueNNV-?JJV-i-1 word warrenVBZCl?NNPSp= ף?NNSClNNPp= ףi word outletsNNSK7?NNK7i-1 tag+i word NNS worryNNʡEۿVBPʡE?i-2 word seizedNNI +VBN +?JJHzGѿ i+2 word headNNZd;?VBDrh|?JJuVNNP1Zd?VBB`"NNPS1Zd˿i-1 tag+i word , allegingVBG'1Z?IN'1ZԿi+1 word faresVBGoʡ?NNoʡi+1 word anthologyJJNbX9?NNNbX9 i word timidJJX9v?VBNK7ANNV-i-2 word facilityJJx&RBˡE?NNd;ONNP9v@i-1 tag+i word POS premierJJRT㥛 @NNT㥛 i+2 word intentionDT!rh?RB!rhi word protestsNNSZd;?VBNZd;i word overlappingVBGv?NNvi+1 word posturingJJl?NNK7RBp= ףп"i-1 tag+i word JJ environmentalistNN/$?JJ/$i-2 word opposingJJMbNNMb?i-1 word arbitrageNN rh?JJDlVBZm?NNSmVBG rhRBDl?i-2 word continentalVBClVBDCl?i-1 tag+i word JJR beginningVBGʡE?NNʡE i+1 word garyNNPS rhNNP rh?i-1 suffix maeVBV-NNV-?i-1 word atmosphericNNzG?JJzGi-1 tag+i word DT interimNNMbX9JJMbX9? i suffix didINjtVBZ-NNPxNNS㥛VBDK7A` @POSL7A`尿VBPMbXJJ&1@ i-2 word deNNSS?NNP%C?NNh|?5FWV-CCq= ףp?VBPJJ +? i word happenVBx @VBP?NNSV-JJMbNNK7i-1 tag+i word NNS frequentlyRBuV?JJuVi word reservedVBDK7A`?NNP-VBP%CVBNPn?JJi-1 word cruiseNNPSx&1?NN rh?RB rhNNPx&1 i-1 word justRB(\?VBDd;OCD}?5^I?VBGClVBNp= ף@VBZsh|?JJRX9v޿JJEؿNNPSVB+?NNʡEֿPDT +?VBP|?5^INE?DTffffff?NNSSi+1 word overheadVBGZd;?VBNjtĿNNZd;VBDjt? i+1 word gazaJJJ +?NNPJ +i-1 word mexicoRBK?NNPK i suffix UNCRBClNNPCl? i+2 word cupVBʡENNuVͿNNPl?i-1 tag+i word -START- hectorNNS㥛NNPS㥛?i-1 tag+i word DT firstJJ + @NNx&1JJSK7AJJRvRB +NNS"~NNPOn?i-1 word concernedNNw/RBV-INB`" @RP-i+1 suffix odeJJˡE?NNSV-NNP(\NNPSrh|VBG|?5^NNʡE?VBN(\ڿPRPPn@i-1 tag+i word PDT stereoVBv/NNv/?i-1 tag+i word POS specialtyNNy&1?JJy&1i-1 tag+i word RB promotedVBNS?VBDSi word succeedingVBG"~?NN"~i-2 word vehiclesIN-?NNS)\(?PRP)\(RBI +?EXMbi-1 tag+i word PRP$ heirNNS"~NN"~?i-1 word emancipationNNd;ONNPd;O?i+2 word endorsementJJ9v?RB9vi+1 suffix maxVBNˡE?JJˡEi-1 tag+i word CD goldNNX9v?JJX9vi-1 tag+i word NNS visitedVBN~jtۿVBD~jt?i+2 word christianNNtVNNPtV?i-1 word spoiledRBQINQ?i-1 tag+i word RB honestVBzGJJS)\(ܿJJ{Gz?i-1 tag+i word NN offeredCDX9vVBNx&JJ7A`?NNPOn?VBDS㥫i-1 tag+i word NN allyNNffffff?RBffffffi-2 word obscureFWClVB~jtVBDh|?5JJSjt?NNh|?5? i word nfibJJQNNPQ?i word easternNNPSClNNQCC\(\CDJJ+ @NNSQNNP ףp= @VBQi-1 tag+i word NN !DIGITSCDn?NNSS㥛NNvJJZd;ONNPGz?i word irradiatedVBD5^I VBN;On?JJNbX9?i-1 tag+i word RB welcomeVBMbXVBP333333JJʡE?i+2 word australiaNNvNNPx&1?VBG}?5^I?i-1 tag+i word PRP$ standNNSK7AпNNK7A?i+1 word ratingNNPjtNNPS'1ZNNjt @JJi-1 tag+i word NN readNNMbXVBNMbX? i-1 word weVBMbNN rVBNˡEJJjt޿INnVBZZd;RBClVBP;O@DTFx?MD&1ڿVBDK@NNPSL7A`?POSMbNNS ףp= @i-1 tag+i word NNS nextIN@VBP~jtJJ|?5i+1 word enterpriseJJNN|?5^ٿNNP!rh? i+1 word mipsWDTʡEINʡE?i-1 tag+i word CC encourageNN/$VB/$?i+1 word liquidatorJJjt?NNjtֿi word shoppersVBZMbؿNNSMb?i-1 tag+i word RBR houseworkNNSSNNS?i tag+i-2 tag NNP NNPVBZ{GztNN~jtNNP~jtIN~jt@JJRMbp?VBD-''?WDT9v?UH9vNNPSSFWl?RBRA`"?MDM?POSE@PRPQ?RBS㥛CC/$CDvVBGl?VBPMbX9DTL7A`VB~jt?VBNQ?JJx&?NNS+η? i word taxPRP$ףp= NNPS1ZdVBK7NNjt @NNPV-i+1 word ukraineJJE?NNDlCDZd;Ͽi+1 suffix cheDTV-?WDT&1IN}?5^I?i-1 tag+i word NN changedVBNNbX9VBDNbX9?i-1 tag+i word , thanksgivingVBGSNNPS?i-1 tag+i word CC divisivenessNNV-?VBZV-i+1 suffix ameWDTw/ @NNPSbX9@VBGjtNN)\(?JJSQCDy&1RBR`"?POSoʡ?VBNK7?RB(\?DTMbJJ ףp= ?NNSoʡ?VBPzGIN +VBZQJJRd;ONNPX9v i word repaidVBNZd; @VBPw/RBQѿNNSV-VB|?5^JJFxNN(\VBD?i-1 tag+i word , videosNNS5^I ?NN5^I i-2 word themeVBGjtJJjt?i-1 suffix oenNNPSKNNSK?i-1 tag+i word CD originalJJtV?NNtVi-1 tag+i word CC ceramicsNNS|?5^?NN|?5^i-1 word indefinitelyVBG~jt?JJ~jtÿi-2 word stamfordJJGz?NNPGz i word occurVBS㥛?VBP%C?NN+RB/$ i word serialJJ?NN(\?NNP)\( i word restNNMbX9@JJ+JJSZd;i+2 word colonNNS= ףp=VBGw/@NNw/VBNCl?JJClѿVBZ= ףp=?i-1 tag+i word DT visualJJK?NNKi+1 suffix jevNNHzGNNPHzG?i-1 tag+i word NNP indianNNPS%CNNP%C?i-1 tag+i word DT alteredVBNJ +?JJJ + i suffix FBINNPSnNN7A`NNPM?i word furiouslyRB%C?NNS%Ci+2 word summer VBNX9vNNSd;O?VBDB`"?VBGjtJJMbX9?NNq= ףp@JJRd;OVBP;On?RB;OnIN"~VB-޿i-1 word wordsVBPoʡ?WDTp= ף?INp= ףVBoʡVBDMbVBNMb?i-1 tag+i word VBG weakerJJRV-@NN(\JJbX9i+2 word almostRBQVBNV-NNPX9vVBx&1?VBDV-?WDTjt?JJRVBPlڿJJh|?5INjtVBZI +?RPQ@NN(\ @NNSS㥛пi-2 word paragraphRBDl?INDl i+2 word buysVBN)\(ԿJJ?NNPV-׿VBDQNNPSV-?i-1 tag+i word -START- heesNNS$CNNP$C?i+1 suffix opsVBJ +NNPS!rhNN?VBD333333ۿVBPV-JJHzG@NNP!rh?i-1 tag+i word JJR validJJ1Zd?FW1Zdۿ i word minerNNvNNPv? i word proxyNNʡE?NNS= ףp=ڿJJRJJV-?i-1 tag+i word JJ salaryNNn?JJni+1 word beggarsJJ#~j?VBG#~ji+2 word tearsNNSS?NNSi-1 suffix ers''(\WDTV-?VBN\(\PRPV-CC(\տJJR|?5^ʿVBG"~jJJ`"?VBZA`"DT-RPn?NNS?INq= ףpNNPS/$ۿVBPCl@WPlNNP'1ZĿCD#~j?VBDK7?FW&1ҿWRBˡE?NNMbXPOS @VBEȿRBSq= ףpRBR"~@MD{Gz?RB rh?i-1 tag+i word : yourPRP$oʡ?CDoʡi-1 tag+i word PRP noVBZ|?5^ʿDTZd;ORBCl?i-1 tag+i word -START- meatDT/$ۿNNoʡ?NNP#~ji word changingVBGS㥛?NNS㥛i-1 word studiesVB|?5^VBP@VBG?5^I ?VBN333333ۿNN`" i+2 word farVBQ@RBSJ +JJR(\INK7VBNZd;OͿNNFx?JJSJ +?WDTK7?PRPS?VBZ|?5^JJFxVBDףp= CD\(\NNPS/$RP`"ֿRB(\DTw/?NNSl@i-1 word affectVBQVBGK7A`?NNK?VBNʡEֿJJxֿINy&1DTy&1?i+1 word myselfVBDSVBzGҿVBPS?RBjt?INni+2 word inventoriesVBD rh?VBN rhi word picassoNN?5^I ڿNNP?5^I ?i-1 tag+i word WP accountsVBZʡE?NNSʡEi+2 word senseWDTA`"?DTA`"i-1 word workstationsRBV-?JJV- i word buysVBPSNNSOn?NNjtVBZQ @VBi-1 tag+i word NN determinesVBZ?NNSi-1 tag+i word NN sometimesNNSʡERBʡE?i+2 word landslidesJJ333333?RB333333i-2 word suttonJJ rh?NN rhi-1 tag+i word VBZ madeVBN?JJZd;OVBD;Oni-1 tag+i word NNS cringedVBN|?5^VBD|?5^? i+2 word bigVBD(\RBSS㥛?VBP'1Z?PRPS㥛INZd;OVBʡENNˡE?PDTS㥛?VBGx&1VBZQJJ"~jJJSS㥛ܿVBN"~j?WDTZd;O?RB7A`?NNSMb?NNP/$?i tag+i-2 tag NNP ,NNnWP+VBPsh|??IN1ZdVBZ/$@NNPSQ@RBV-?RBR-?VBN㥛 ?CDPn?PRP$Gz?VB= ףp=VBDjtĿPOS~jt?JJ+DTQ?NNS'1Z NNPp= ף@i-1 tag+i word NNP markNN/$?NNP/$i-1 word messiaenPOS+?IN+i-1 tag+i word JJ uvbNN/$?JJNNPjtܿi-1 tag+i word `` psychicVBZ-JJ-?i-1 tag+i word -START- w.j.JJSNNK7NNP r?i word alongsideVBDZd;OIN1Zd˿VBPq= ףpRBQ? i word escapeNNnVBn?i word suggestVBDK7A`JJS?5^I VBPM@VBZx&1VBn?NN"~ڿi-2 word versoVBtVPRPjtJJZd;?i+1 word reports JJp= ף?NNPbX9VB~jt?NNx&NNSZd;O?RBRSRP1Zd?DTK7A`?VBZlVBGZd;ORBSJJRm@IN1Zdi-1 tag+i word DT cheapestJJSS?JJK7A`NNZd;i-1 tag+i word DT selectNNPS/$ѿNNP/$?i-1 tag+i word VBP anxiousVBPClJJCl?i+2 word wittyVBZ(\NNS(\?i+1 word stolenVBCl?VBPCli+2 word expertsNNPT㥛 NNPSS㥛?NNSnVBNQ?JJQi-1 tag+i word NNP commitmentNNS?VBDSӿ i suffix nieNNPS/$NNV-?CDV-JJ +NNSQNNP}?5^I@i-2 word rodmanVBGlNNv/@NNP +i-1 tag+i word RB recallVBZ#~jVBP#~j?i word togetherPRP$+RPM@JJR(\VBPI +INQVBDA`"CC/$VBNZd;RBB`"[&@NNPNbX9PRPPnNN)\(RBRL7A`EX}?5^ILSI +i-1 word vacuumVBZS?NNSSJJRZd;O?NNZd;Oi+1 word emptyPRP$K7A?NNl?JJlPRPK7Aпi word shortfallNNS?5^I NN%C?JJˡEi-1 tag+i word NNS bilanzVBPNbX9NNPNbX9? i suffix inkVBDx&1INnNNS/$JJ CD5^I NNrh|?EX7A`RBp= ףNNPX9vVBZd;O @JJSoʡݿVBN333333JJRQVBP~j@i+2 word assentVBZ(\@NNS5^I ۿVBNʡERBMbi-1 tag+i word NNS perJJףp= VBD;OnINh|?5@VBP +VBNʡEi-1 tag+i word DT distressedJJ&1?VBN&1i-1 tag+i word NN submittedVBN"~?VBD"~i-1 tag+i word CD retailJJjt?NNjti+1 word ignorancePRP$333333?JJR333333i-2 word worriesVBCl?VBPCli-1 tag+i word DT americanJJ ףp= @NNRQNNPQ?NNSi-1 tag+i word NNP articlesVBZw/ĿNNSw/?i-1 tag+i word NN surplusNNSffffffNNE?JJKi word ventilatedVBNCl?JJCli-1 tag+i word : stockNNn?NNPni-2 word leatherNNSX9v?VBZX9v i word nichesVBZClNNSCl?i word stashedJJvVBDv? i suffix ken VBZʡENNSFxJJ-?CDClLSx&1VBP/$RBMbINDlNNPB`"VB&1?NN~jtVBNCl;!@ i word buzzyNN+NNP+?i-1 tag+i word PRP$ pilotVB+NN+?i-1 tag+i word -START- cetusNNPʡE?CDʡEi+1 word koreaVB}?5^I?NNPS-JJ&1RBX9v߿NNP(\@i-1 tag+i word ) actVBZ!rhNN!rh? i suffix sarNNPuV?CDuVi+2 word twiceJJRw/?RBRw/i word vigorouslyVBV-RB&1?JJ?5^I i suffix lcoNNSsh|?NN r@JJtVNNP'1Zܿ i suffix OneINʡEDTV-NNS+NNPsh|? NNV-?CDNbX9@PRPsh|?@JJd;Oi-1 tag+i word `` revitalizedVBN?NNP i word winsNNS/$@NNV-VBD+VBZMbX9?i+1 suffix pecJJ ףp= ߿NNP ףp= ?i-1 suffix pidVBZQ޿NNSQ?JJOnÿNNOn? i word s.p.a.NNPS!rhNNP!rh?i-1 tag+i word NN thrivingJJL7A`?VBGL7A`i-1 tag+i word NNP filedVBNtVVBDtV? i suffix emoRBX9v׿NNP㥛 ¿VBZZd;ONNS{GzNN}?5^I?i+2 word builtDTS?NNPSJJx&1NN"~j?VBN+WDT#~j?RB333333?IN#~ji-2 word fidelityNNPSp= ףNN)\(NNP\(\@i-1 word asahiNNPST㥛 ?NNPT㥛 i-1 word relianceVBZuVNNuV?i-1 tag+i word TO rewriteJJv/VBv/?i-1 tag+i word NN wrestlingVBG?5^I NN?5^I @i+1 word basketsJJRK7ANNv/տNNP +?i-1 tag+i word NNS retreatedVBDʡE?VBNʡEi-1 tag+i word NNP morningNNNbX9?NNPNbX9ؿi+1 suffix uffNNRQNNPRQ?i+2 word distributorJJ7A`ڿNNI +RB/$NNPuV@i-1 word harboringNNV-?JJV- i word laserCCq= ףpNN= ףp=@RBR{GztJJoʡJJREi-1 tag+i word DT prototypeNN/$@JJKNNSX9v i-1 word ec VBDCl?VBNClVBPJ +ѿVBNNX9v?POSV-?JJoʡVBZV-ڿNNSA`"@i+2 word bobarNNPʡEƿWRBGz?JJ9vi-2 word contentiousVBoʡ?VBDoʡ i word topazRPClٿNNL7A`?JJmNNP?5^I ? i suffix B-1VBNSJJS?i-2 word crusadeDTffffff޿UH~jt@NNPZd;O i word bereftVBNK7A`JJK7A`?i+2 word pittstonNNPSM?NNPM i word eprexRBRQNNPQ?i-1 tag+i word JJ moveVBףp= ?VBPtVοNNS\(\NNv?i-1 tag+i word DT criminalNNCl?JJv/NNPMb?i-1 tag+i word JJ clumsyJJʡE?NNʡEi word photographicNNSʡEJJ`"@NN\(\i-1 tag+i word IN attacksNNS`"?NN`"i+1 word inflowsVBN ףp= ?JJ ףp= i-1 tag+i word CC fabricJJ +NN +?i-1 suffix iwiNNSGzNNGz?i-1 tag+i word DT dueVBJJ? i-1 tag RBVBP-?FW㥛 PDTjtRBRrh|?WDT(\CDMbX9ԿVBNx@JJK@NNSMbRBS!rh̿WPMbX?PRPy&1WRBZd;?CCMbVBDX9v?VBZd;O@NNPjt?DTʡEEXGz?JJSʡERPzGPOSS㥛?VBMbX?INZd;O?JJRNbX9ȿUHq= ףpVBGMb?''B`"NN'1ZRB r?NNPSDli-1 tag+i word IN mccawNNoʡ?NNPoʡi-1 word capitalistsNNSKVBDK?i+2 word weaverVBNCl?NNCli-2 word federal NNPRQ?VBʡENNPS9v@VBGV-?NNSRBRoʡINOn?NNS/$?VBD/$ݿVBNS㥛@VBPSJJ~jtVBZL7A`i-1 tag+i word CC disabilityVBK7NNtV?JJ~jti-1 tag+i word DT u.n.NN+NNP+?i+2 word amicableVBN㥛 JJ㥛 ?i+2 word likely NNPS+?VBGuV?INNbX9ؿPOS/$JJ|?5^WPA`"˿NNS+VBDl?WDTNbX9?VBZ/$?NNPKNN9v@i-1 tag+i word DT recordingNNK7A`?JJClVBGV-ݿ i+1 word madeINS㥛?NNS|?5^ @JJFx VBPQPRPx&1?VBZ\(\RBSX9vPOSѿWDTy&1?DTQNNP9vVB rh?NNK@VBD?5^I RB +?i-1 tag+i word IN unveilingVBG!rh?JJ!rh̿ i word dyingVBGCl?NNx&1JJv׿i-1 word sufferedNNV-RB ףp= ?INn?JJ1Zd? i word differVBPʡE?NNʡEi-1 tag+i word NNP returnedVBNV-VBDV-? i+1 word jayVBPI +NNPI +?i-1 tag+i word NNP norgeNN rhNNP rh? i+1 word pageJJDlNNDl?i tag+i-2 tag IN NNPINHzGFWMb?VBZMbX9DTOnPRPrh|NNSA`"RBR}?5^ICD/$?VBG?NNoʡVB;OnCCCl?EX|?5^?PDTh|?5PRP$rh|?VBPV-WDTMڿJJA`"?VBDDl?RB%C?NNPm@NNPSK7 @JJR9vi-1 tag+i word NN nervesVBZS㥛NNS?5^I ?RBSi word orientalJJx?NNPxi-1 tag+i word VB withheldVBNn?NNni-1 tag+i word IN supportingVBGjt?JJjti-1 tag+i word VBG heightenedVBNS?JJ{GzVBD/$i-1 word observeINV-DTV-?i-1 tag+i word DT backlitJJl@NNli+1 word embryoJJffffff?NNffffffi word obliqueRP;OnJJ?RBx&1ܿVBNv׿i-1 tag+i word RB bestINlNNP9vRBS9v?RBl?i+2 word doctorsWDT9vWP9v? i suffix ifsNNS+@NN+i-1 tag+i word PRP$ stoneJJ+NN+?i+1 word jonesNN+?JJ1ZdNNPl? i suffix tahRB|?5^NNSMbXٿEXMbNNw/?NNP|?5^?i-1 word damageNNS?JJzGNNx&VBNʡEݿi+1 word pointVBZKDTV-?NNSK?VBGA`"ӿNNA`"?VBPʡEJJ!rh?INHzGi-1 tag+i word NNP gomezNNS+NNP+?i word seizingVBGMb?NNMbi+1 word certificateNNxCDx? i word irksVBZ#~j?JJ#~ji-1 tag+i word CD promptedVBNM?VBDMڿi-2 word waterVB/$RBx?NNh|?5?VBPsh|??EXS?JJJ +INCl?i-1 tag+i word NNP shieldsNNPSA`"NNPA`"?i-1 tag+i word NNPS doesVBP +VBZ +?i-1 tag+i word JJR affectedVBNh|?5JJh|?5?i-1 word fliedRP+?IN+i+1 word playoffDTB`"?PDTB`"ɿJJn?NNni+2 word musicNNPS㥛RPJJA`"?RBS+?RBRh|?5?RBh|?5IN?i+1 word laughJJ`"?NN`"޿ i word soccerNNGz@JJˡENNSjti-1 tag+i word VBG confessionNNsh|?NNPsh|??i-1 tag+i word DT recoveringVBGʡE?JJʡEi+2 word dangerousVBS?NNMbXCDS㥫?i+1 word rules MDmNNPSʡEVBG"~jVBNMb?JJZd;ONNNbX9 @FWCl߿NNSʡE?NNPp= ף?i-1 tag+i word NN retireesNNSCl?NNCli tag+i-2 tag RBR VBNRBzG?JJNbX9@VBNCli-2 word fujitsuVBZ"~j?NNS"~jԿi-1 tag+i word DT suspensionNNCl?JJCli-1 suffix enoNNE?FWEпi-1 word standRBMbINq= ףp?RP+?JJ㥛 ?NNHzGVBD㥛 i word viewNNPܿVB9v?RBClNNS㥛 @VBD333333VBP}?5^I@JJ|?5^NNS/$ i+2 word hboNNP/$?NNS/$i word refusingVBGx&1?NNx&1Կi-1 tag+i word NNP banksNNPSHzG?NNSJ +NNPq= ףpi-1 suffix q45NNSZd;?VBZ ףp= NNPS~jti-1 tag+i word NNP whileNNx&INx&? i word shapeVB333333?JJ%CNNv?VBDuVJJR333333VBPuV?RBoʡi word establishmentNN?JJFWi+1 suffix ladFW!rhRB`"?JJ`"NN!rh?i+1 word billingNNQJJQ?i+1 suffix asyINp= ף?DT(\ݿPRP$/$RP+JJL7A`?PRPHzG?RB/$?i+2 word inadvertentNN?RBi-1 tag+i word `` lookVBX9v?NNPX9vi word stiflesVBZ/$?NNS9vJJDl i-2 word lawsVBNGz?JJGzֿNNNbX9?VBGNbX9 i word engJJ}?5^INNP}?5^I? i-1 word rossWDT!rhIN!rh? i-1 tag+i word -START- consumersNNP333333?NNS333333ӿ i suffix aa2JJd;O @NNbX9NNPCli word outokumpuNN\(\߿NNP\(\? i suffix gin VBPS@RBK7NNPClVBbX9H@NNA`"@CCxJJR ףp= VBGOn?NNS#~jRPClJJ&1i-1 tag+i word CC orchestraJJT㥛 NNʡE?RBQ i word governVBS㥛@VBPx&1?JJV-NNjti-1 word guaranteedVBGxNNSS?NNx?NNPSݿi word inklingNNE?VBGEi-2 word drivesJJRK7?RBNbX9IN/$RBRK7ѿRPK7A`?i+1 word marinaVBZClJJ9v?NNZd;i+1 word conformNNX9v?NNPX9vi word yearningVBGGzNNGz?i-1 tag+i word DT fullscaleJJV-?NNV-i+2 word pinkertonVBDܿPOSѿJJ333333ӿVBN?VBZ?i-1 tag+i word RB acuteJJA`"?NNA`" i suffix lesVBNlVBPoʡNNPKVBʡEJJRףp= NNS7A`*@FWHzG?VBZʡE3"@NN(\O"MDffffffRPV-VBD rhRBGzIN㥛 NNPS/$@JJffffffi+2 word pointsRP ףp= JJS㥛VBDZd;@VBN)\(RBv/ @INV-?VBZZd;VB/$ٿi+2 word armstrongINX9vVBNJ +JJ"~j?i word gridlockedVBNnJJ"~j?VBDI +ƿi-1 word leftfieldNNOn?NNSOni+1 word trainingVBNbX9JJRL7A`?JJ#~j@VBZ-?NNRBRL7A`ؿi-1 tag+i word DT foundationNNPn?JJPn i word yatesNNPStVNNPtV?i word unregulatedVBNuVJJuV?i-1 tag+i word RBR controlVBp= ף?NNp= ףi-1 tag+i word NNP cutsNNSn?NNni-1 tag+i word DT boonNNx&1?NNSx&1i-1 tag+i word IN recyclingVBG ףp= ?NN ףp= i+2 word injuredRBZd;?INZd; i word ewdbNNNNP? i word wearVBd;OVBP^I +JJ㥛 NNv@i-1 tag+i word JJ soloNN~jt?JJ~jti-1 tag+i word NNS dareVBPMbX9?NNSrh|߿VBDNbX9 i word martexNNPS?NNSi-1 tag+i word CD libyansNNPSʡE?NNSNNPvi-1 tag+i word PRP$ sellingVBG)\(NN)\(?i-1 tag+i word -START- upgradesINI +VBZK7ANNS1Zd?i-1 tag+i word NNPS antillesNNPS!rh?NNP!rhi-1 tag+i word RB stalledVBNףp= ?VBDףp= i-2 word waltNNw/?JJw/i-2 word sovereignINNbX9?WDTNbX9i-1 tag+i word VBZ firmNN?JJi-1 tag+i word DT pitcherJJR%CԿNN%C?i-2 word advancedNNPSZd;O@VBG+?RBbX9?NNRQؿJJHzGNNPZd;Oi-1 tag+i word MD continueVBQ?VBPQֿi-1 tag+i word NN likeINʡE@NNZd;RB'1ZVBD$Ci-1 tag+i word VBG overlyRBoʡ?JJoʡi word receivableNN/$@JJ/$i word torstarNNK7ٿNNPK7?i-1 tag+i word , joinedVBNMb?VBDMbi-1 tag+i word CD learnsVBZʡE?INʡEi-1 tag+i word IN valiantJJ(\?NN(\ڿi-1 tag+i word DT capNNZd;?FWZd;Ͽi word authorizedVBDsh|??VBZ$CۿVBN(\?JJ;Oni-1 tag+i word CC mistrustNNSy&1NNy&1?i word entrepreneursNNjtVBZS㥛VBKNNSoʡ@i+1 word drynessVBffffff޿JJ~jt?NNʡEi-1 tag+i word TO payVB%C?NN%Ci-1 word coarseVBZV-NNSV-? i suffix olmNNPSjtNNPjt? i suffix CSFNNP"~j?JJ"~j i suffix ELSVBZrh|?NNPrh|i-1 tag+i word CC freeVBtVοVBPRQJJʡE?i+1 word unfairRB\(\@NNtVJJi-1 tag+i word NNS investVBPV-?RBV-ݿi word issuingVBGNbX9?JJRQNN~jti-1 tag+i word NN outfitRB\(\NN\(\?i-2 word forbesJJuV?NNuVi-2 word ballotWDT1ZdIN1Zd?i-2 word listingsJJ&1@NNx&RBoʡi-1 tag+i word IN yaleRB+UHMbX9NNDlNNPK7?i-1 tag+i word CC shawVBX9vNNPX9v?i word portrayedVBP/$VBD/$? i+2 word wireVBZGzVBG~jt?POSGz?JJ~jti+1 word fleetVBG"~j?RBR(\տJJ/$VBNK7A`?JJR(\?i-1 tag+i word VBG ruefullyRB r?NN r i word hearVBL7A`?VBP&1?JJ#~jNNP+i-1 tag+i word VB sensoryJJS?NNS i suffix 687JJ(\CD(\?i word philosophyNNS㥛@JJClVB;Oni-1 tag+i word NNS riseVB(\?VBP"~jܿNNn?VBD+i-2 word declarationJJ%CNNP%C?i-1 tag+i word VBD liberalizedVBN/$?RBR/$i-1 tag+i word NN buildsVBZ#~j?NNSK7A`VBDjti word congressionalJJ?5^I @NNP?5^I i-1 tag+i word DT fullestNNDlJJSDl?i-1 tag+i word NNP resourceNNPSzGNNPzG?i-1 tag+i word VBN randomJJl?NNli+1 word hudsonJJCl?NNPCli-1 word demographicNNX9v?JJX9vi-1 word commodityVBZ rhVBP&1NNPT㥛 ?NN&1?NNPSFx?i-1 tag+i word NN runNNZd;O?VBD}?5^IVBN"~jVBPX9vNNSMbVBffffff?i-1 tag+i word VBD placeNNSSNNS? i suffix amsVBDClVBN㥛 JJ#~jVBZuV@NNSK7@VB|?5^NN}?5^Ii-1 tag+i word NN cateringVBGOnNNOn? i-1 word sent RBMCDNbX9JJtVRPMbX?NNS+?VBGClNNK@VBN|?5^?INDl i+1 word ploJJ)\(?NN)\(i-2 word expect RBX9vNNPn@VBx?NNPSI +NN~jtJJRQۿVBPjtֿJJp= ף@NNSZd;Oi-1 suffix iacVB9vNN(\?JJKi+1 suffix eupJJq= ףp?NNq= ףpi-1 tag+i word -START- oilsNNSp= ף?RBMbNNPL7A`i-1 tag+i word DT monsterJJR/$NNV-?NNP-޿ i word workedVBDh|?5?VBZ\(\VBPMbVBN@NNP/$ i suffix toyVBPGzJJR$CۿNNy&1?i-2 word conferencesVBG-NN-?i-2 word reliefJJMb?RBZd;߿NNQ?i-1 tag+i word DT missionaryJJ-?NN-i word studiesNNPS9v?NNSnNNPʡEi-2 word quarter RBSnNNPA`"?JJSn?VBNNbX9?JJS㥛INʡEVBZd;O?RBsh|??NN7A`i word scathingVBG/$JJ/$? i word teensNNSMbX9?NNPMbX9i word samaritansNNPSHzGNNSMbX9@NNtVi-1 tag+i word JJ debtorNNJ +?JJJ + i+2 word grimNNPSS?NNPSi+1 word aliensJJ ףp= ?NN ףp= i-1 word hulingsVBZq= ףp?VBDq= ףpͿi+2 word maximumNNHzGJJHzG?i+2 word stimulusDTKINK?i+1 suffix ralVBG9v?VBNK7VBZw/@RBx&@JJRy&1VBn?INL7A`@PRP$ףp= VBD%C̿JJV- @RPZd;?NNzGaJJSjt?VBPʡEWDTd;ODTHzG?NNSy&1CD|?5^?FWZd;߿NNPK7ACC(\RBS%C?RBRx&1?i-1 suffix ardJJoʡJJR-?NNJ +?VBNK7ADTV-?NNPx&1?IN|?5^?VBG/$?WDT333333?VB;OnҿVBD&1?RBw/NNS-POSףp= ?RBRzGVBZT㥛 ?NNPS(\RP9vi-1 word mushkatVBZp= ףпPOSp= ף?i-2 word compareJJK7A`?INPnDTPn?NNS+NNP+?NNK7A`i+2 word devaluationJJZd;O?RBZd;Oi-1 tag+i word CC lacklusterRBRJ +JJJ +?i-1 tag+i word IN coventryNNnٿNNPn?i+1 suffix rnsCD~jtJJRv/?RP rhNNbX9@VBDnWPFx?PRP!rh?VBG㥛 ڿNNPOn?NNPSmVBNK?PRP$ffffff?VBP}?5^IVBZ-VBK7A`DT ףp= JJM?RBRv/WDT ףp= ?RBbX9IN~jt?i+2 word easilyVBZmNNSGz?VB;On?RPMb?NN;OnVBNtVINMbпi-1 tag+i word , equivalentVBPFxѿJJ"~j @NNMbXVBD/$i word appointedVBDMbXѿVBN/$@JJV-o i word shutJJx&1VBZQVBnNNq= ףpVBDq= ףp?VBN}?5^I@i-1 tag+i word JJ aspectVBPS㥫NNS rhNNzG?JJsh|?տi word overturesNNSK7?VBZK7i-1 tag+i word NN strengthenedVBNy&1VBDy&1?i-1 tag+i word IN predominantlyRBrh|?NNrh|i-1 tag+i word DT axiomsNNPSoʡNNSoʡ? i word suiteVBPX9v׿NNS ףp= NNoʡ?RBRQi-1 tag+i word VBN pikaiaNNSʡENNSNNPMb?i-1 tag+i word NN exchangeNNM?RBMi+1 word heavily VB&1RB;OnVBD rh@RBR1Zd?JJ!rhNNSףp= VBGZd;O?NN'1ZܿJJR1ZdVBPQ?VBZZd;?i+2 word concedesWDT= ףp=IN= ףp=? i word staysVBZA`"?NNST㥛 ?NNHzGRBuVi+1 word expresslyWDTT㥛 ?INT㥛 i+2 word cooganVBNRQ?VBDRQi-1 tag+i word VBG recklessJJd;O?NNd;Oi-1 tag+i word DT centerpieceNN?JJi-2 word decemberWDTMb?VBNSNN"~?VBD?DTMbi-1 tag+i word , youPRP1Zd?NNP1Zdi-1 tag+i word JJ hurdlesVBZClNNSCl?i word combineVBPZd;O?NNZd;Oi-2 word surviveNNZd;ONNSZd;O@i-1 tag+i word CC neitherRB^I +ǿCCʡEDTx&1?i-1 word drunkVBGx&NNx&? i word mapVBP+?VBD+i-1 tag+i word RB slouchNNRQ?RBRQi-1 tag+i word PRP$ waveringVBG rh?JJA`"NN\(\߿i+2 word paribasNNPh|?5?VBPGzRBh|?5VBDGz? i+2 word yen VB rh?JJFxNN rhRB?VBZ$CCC333333CD~jt?IN;OnڿDT333333?i-1 tag+i word VBD holdNNʡE?RBʡEi+1 word largestJJ9vNN1ZdPOS(\?VBPl¿RBx@VBZ(\i-2 word parachuteNN|?5^ҿNNP|?5^?i-2 word disciplineNNS}?5^I?RBK7?NN}?5^IVBK7i-1 tag+i word NNS shakyJJ rh?RB rhi-1 tag+i word ( balloonNNˡE?NNPˡEi-1 suffix lynNNPS-?NNSRQNNPX9v޿i-1 tag+i word NNP hammondNNPSw/NNPw/?i-1 tag+i word DT comfortableJJQ?NNQi-1 tag+i word , ohUH&1?NN&1ڿi-1 tag+i word VBD unmovedJJDl@VBNDli-1 tag+i word '' shrugsVBZ= ףp=?VBD= ףp=i-1 tag+i word , heldVBNw/VBDw/?i+2 word boozingNNʡEVBGʡE?i tag+i-2 tag WDT ``PRP`"VBDoʡտVBZ`"?VBPoʡ?i-1 tag+i word IN sacNNSJ +NNJ +? i suffix taxNNOn@CCOnRBNbX9NNSnNNPV-JJK7@i-1 tag+i word NN limitVB ףp= NN ףp= ?i-1 tag+i word VB settledVBN-?JJ-i-2 word avoidedVBG|?5^?NNA`"?JJ rh i-1 word tykeVBQ?VBPQi-1 word conjuresRP$C?IN$Ci-1 suffix ontJJR rhտNNPL7A`?NNPSL7A`RB+?NNK?VBN|?5^RBR+JJ|?5^?i-1 tag+i word JJ nobelNNnNNPn?i+2 word perhapsNNSCl?NNZd;VBx&1i-1 word extendRPSPRPS?i-1 tag+i word VBZ lightNNl?JJli-1 tag+i word MD soundVB rh?RB rhi-1 tag+i word NNP inspectorsVBZQ?NNSQi word ceramicsNNSZd;?NNZd;NNPENNPSE?i+2 word recordingsVBh|?5?NNh|?5i-1 suffix nesRBS +JJR/$VBPB`"RBv?IN(\?VBZ㥛 JJoʡNNjtNNP7A`?NNPSV-VBDQRBR/$?VBh|?5VBGoʡ@NNSV-?WDTˡE?VBNMbX?i+1 word centerNNSy&1?NNPffffff@NNPS rNNjt?CDףp= VBPMJJMb VBZMi-1 tag+i word JJ increaseNN1Zd?JJ1Zdi-1 word grimlyJJQ?NNQi+2 word increasinglyVBx&?NNx&i+2 word analysisPOSK?VBZK߿i+1 suffix ienJJZd;O?NNsh|?NNP rh?VBPB`"NNS rhi-1 word stealthVBP rhNN+?NNPV-i-1 word processingWDT|?5^JJR&1RBm?IN~jthNN&1?i-1 word draggingJJrh|?NNrh|Ͽi+1 word undertakingIN&1?RB&1JJy&1?NNy&1 i+2 word ricoNNPw/VBGw/?NN%CԿVBN~jtVBPNbX9?JJClNNSA`"?i-2 word comprehensiveVBN7A`VBD7A`?i-1 tag+i word DT plaintiffsNNS(\?NN(\i-1 tag+i word JJR downwardRBx&ٿJJx&?i-1 tag+i word IN reinvestmentNN&1?JJ&1i-1 word slatedNNrh|@RBrh| i-2 word footVBGrh|NNrh|? i-2 word cardNNnNNPn?i word raymondJJV-NNPnNNPMbX9?i+1 word girlsVBPnпJJ333333?NNOni-1 tag+i word NNP unexpectedlyRBS?VBDSi-1 tag+i word VBN netJJ(\?NN(\ i suffix RMINNMNNPM? i-2 word bailRPV-?RBV-i-1 tag+i word VBD aboutRBT㥛 ؿRPZd;@VBNjtJJ(\IN ri-2 word assortmentNNMbX?JJ&1NNP~jti-2 word rangeNNPʡE?NNJ +?JJ(\ڿRBDlIN(\?i+1 word eloquentlyVBZ$CۿRB{Gz?NNPKi-1 tag+i word PRP describedVBZ|?5^VBD|?5^? i suffix tieNNPS(\NNSNNMbXJJq= ףp?NNPn@i-2 word effectiveJJ|?5^INI +VBZ;OnNNP;On?VB~jtxVBG%C?RB(\@NNMb i+2 word lagMDnWRBtV?NNK7A?CDMbXINʡENNPKǿ i word flyVBCl?RBq= ףpNNnVBNSVBPw/?JJV-i+1 word educationVBG+?JJoʡ?NNP+i+1 word germansNNPS(\ @RB?5^I NNJJR-JJ?5^I NNS-@NNPuVi word vehementJJX9v?NNX9vi word insolventNNoʡJJoʡ?i word decidedlyRBZd;O?JJZd;Oi-1 tag+i word `` influenceINV-VB?NNףp= ?JJx&i-1 tag+i word -START- sterlingVBG"~NN@JJrh|NNP$Ci+1 word sceneJJPn?NNPni-1 tag+i word JJ statedJJGzVBNGz@i+1 word droppingRB rh?JJ rh$i-1 tag+i word -START- extraordinaryJJx&1?NNPx&1 i suffix 767NNSjtCDjt?i-1 word actuallyVBZGz?VB'1Z?VBG+?NN+VBDbX9ƿVBNm?VBPx&1JJʡEi word upstairsNNSV-NNS@JJ ri-1 tag+i word PDT aiVBPoʡ?INoʡi-1 tag+i word DT intactVBPX9v߿JJX9v?i+1 word companiesNNn@VBNQ@RBp= ףDTbX9?CD$C?VBGT㥛 @JJ"~ʿVBD`"JJSףp= ?RBR9vNNPS-RBSrh|?INS@NNS+CCbX9JJRMbX9?WDTtVRPFxVBZX9vNNPvi word trashingVBG7A`NN7A`?i-1 tag+i word JJ preflightJJʡE?NNʡEi-1 tag+i word NNP societyNNPq= ףp?VBP333333NNp= ף?JJ+NNPS'1Zi+2 word befallVBPx&NNSx&?i-1 word peruvianNNSK7A`?NNʡEֿVBDV-i-2 word settledRBZd;@NNClǿVBDzGJJ^I +INm?NNS~jt?RP-ۿi-1 tag+i word IN cattleNNS?5^I ?NN?5^I i-1 tag+i word JJ estRB5^I ?NNP5^I i-1 word investorsJJ㥛 ?VBPuVWDTMbX9?NNPSZd;?NNtVVBDZd;@IN/$VBI +VBN&1 POSS?VBG?''SRB ףp= ?WPuV?NNSh|?5?NNPv?i-2 word importanceNNV-?NNSV-i-2 word current NNPx&1NNjt@VBDZd;?VBN+JJ +?INX9v?VBZ/$VBGX9vJJRVBP/$?WDT/$NNSB`"۹?i-1 tag+i word PRP$ portraitNNS+NN+?i+2 word indicatedNN ףp= NNP ףp= ?i+1 word yearsIN?5^I ?DT?CD+@RPS?RB+VBDV-RBRV-VBGMbX9NN;OnCCJJ㥛 JJRI +?NNS9v?NNPZd;Oi-1 tag+i word PRP rightVBp= ףRBGz?JJ㥛 i word missilesNNSCl?NNCli-1 tag+i word CD networksNNSZd;?NNZd; i pref1 VNNPQ+@NNPS ףp= @VBNp= ףпNNS|?5^VBMbؿRB(\VBPGzJJtVINd;OVBZSVBGENNK7A` POS +FWuV?VBD(\i-1 tag+i word IN gameJJoʡNNPoʡ?i-1 tag+i word DT halloweenNNClNNPCl?i-1 tag+i word NNP observedVBNmVBDm?i-1 tag+i word CC associateVBP%CJJK7A`?NNSVB~jtпi-1 tag+i word NN indicatedVBN\(\JJQ?VBDHzG?i-1 tag+i word PRP wantVBV-@VBPClVBN+VBD!rhi+2 word opposesNNSS㥛NNPS㥛?i-1 tag+i word : marvinPRP5^I NNP5^I ?i-1 tag+i word IN midtownVBN+CDSRBK7ANNP}?5^I̿JJGz?NNZd;O?i tag+i-2 tag CD NNSNNV-NNPV-?i-1 word sundayVBDFx?VBGV-JJFxNNx&1?NNPv/i+1 word tumorsNNSX9vֿNN?JJS㥛 i+2 word v.JJK7NNK7? i-1 word dimeNNPSuV?NNPuV i-2 word calmJJ1Zd?VBD1Zdi-1 tag+i word CC joltedVBDjt?VBNjtJJh|?5i-1 tag+i word WRB resetVBNʡENNʡE?i word intermissionNN+?IN+i-1 word endingJJFx?NNV-INʡE?i-1 tag+i word RBR involvedVBN?JJi-1 tag+i word TO compensateVBq= ףp?JJq= ףpi-1 tag+i word JJ gridlockedJJI +?VBDI +ƿ i suffix LITJJjtNNPjt?i word encompassedVBNZd;JJ&1VBDˡE?i-1 tag+i word `` customizedJJ ףp= ?NNPJ +VBNK7Ai word explodedVBDL7A`@VBNx&NN`"i-1 tag+i word VBD actorsNNS/$?RB/$i-1 tag+i word -START- unfilledVBN~jtJJףp= ?NNPMi tag+i-2 tag EX INJJn?VBZ rhNNSnVBK߿POS rh?VBPK?i-1 tag+i word VBZ bothCCS?VBZ\(\DTˡE?JJ(\i-2 word prostaglandinVBNS?VBDSi-2 word donbasNNSd;O?VBDd;Oi-1 tag+i word VBZ benchmarkNN~jt?JJ~jti-1 tag+i word DT showingVBGNN? i+1 suffix (RBsh|??INMbVBGK7A`FWv?VBNZd;O?RPQNNP rh@NNPS?5^I ?NNS?5^I @JJRDlRBRGzVBZ1ZdVBDSVBP +VB/$JJ"~NN(\ @i-1 tag+i word POS averageNNNbX9JJNbX9?i-1 tag+i word `` grosslyRBQ?JJQi-1 tag+i word CC underwearNNMb?JJ)\(VBRQVBPMbpi-1 tag+i word VBG haveVB$C?VBP$Ci+1 suffix ndoVBZ-?NN= ףp=JJ-FW= ףp=?i word durironNNbX9NNPbX9?i-1 tag+i word : wsjNNP~jt?IN~jti-1 tag+i word RB lesserJJRV-?RBRV-i word ballyhooedVBNQ?JJQi-1 tag+i word NNP heavyJJSӿNNPS? i+2 word dampVBN?5^I VBD?5^I ?i-1 word finalVBN= ףp=?RBvNNS$C?NNP~jtNNPS?JJsh|? NN- @i-2 word bellsouthJJ!rhVBN!rh? i suffix 991NNSX9vNNX9v?i-2 word defendantVBn?NNni+2 word creativeVBZ +VBT㥛 ?VBD rh i-1 word h.NNPSSNNPS?i word sortingNNZd;OVBGZd;O?i+1 word virtuePRP$-?PRP-i-1 tag+i word VBZ duncanJJsh|?NNPsh|??i-1 tag+i word NNS wieldingVBG`"?JJ`"޿i-1 tag+i word -START- nuclearNNʡE?JJx&?RB%CܿNNPKi+1 word worriedJJx&1VBNh|?5οRB+?i-2 word restrictingNNS"~NN"~?i-1 tag+i word NNS reboundVBDnVBffffff@VBP ףp= ׿RBK i+2 word hostVBZMb?IN +NNx&1?JJx&1пNNP9v?i-1 word orkemVBZx&NNPx&? i suffix ief VBP$CIN rhNNSlNNPoʡVBʡEJJ'1@NNS@VBD㥛 VBN(\RB~jtVBZFx i suffix OjiNNPS㥛?CDS㥛i-1 tag+i word IN agingVBGX9v?NN rhJJ ףp= ߿i-1 tag+i word VBZ chassisNNSx&1?NNx&1i-2 word macchiarolaNNPSffffff?NNPffffffi word admittingVBGS?NNSi-1 word burgsRBoʡINoʡ?i-1 suffix eak RBRoʡVBNZd;?RBjtRPV-?JJx?VBDZd;PRPB`"IN(\?NNSZd;?PRP$B`"?NNCl?VBPoʡi-1 tag+i word VB forthVBKRBףp= ?JJMbi-2 word classificationsNNSrh|NNrh|?i-1 tag+i word JJ summitNNS7A`ҿNN)\(?JJn i+2 word helpINrh|NNS\(\NNPJ +?NNPS;OnRBRlVBP#~jJJRl?DTy&1?VB}?5^I?VBGQNN`"?VBN/$?RBGzοWDTM?JJ/$i word luncheonJJEؿNNE?i-1 tag+i word JJ veritracNNy&1NNPy&1?i word thrivingVBG rhJJ rh?i word approachesVBZOn?NNSʡEֿIN5^I i-1 tag+i word DT heaviestNNNbX9JJSNbX9? i suffix ACHNNPjtVBZ\(\߿VBjt@i tag+i-2 tag NN (JJK7A`IN^I +?NNPPn?VBGQ?NNx&1ܿVBD/$VBN/$?i-1 tag+i word DT actNNS1ZdNN1Zd?i+2 word yellowRBp= ף?JJp= ףؿi word merrillJJ%CNN~jt?NNP r?VB{Gzܿi-1 tag+i word NN shopsNNSn?NNnҿi-1 tag+i word ) conspireVBP?NNi-1 tag+i word WDT beginsVBPxVBZx? i-2 word news VBN/$RB/$?NNx&?VBP#~j?WDTMbX9JJw/ԿINd;ODTNbX9пNNS!rh?VB#~jNNP?i-1 tag+i word JJ rebelsNNS`"?NN`"i-1 tag+i word NNS underwentJJx&1VBDx&1?i+1 word cable NNK7CCOn?VBN/$?JJ'1ZDTOnNNPJ +@MDd;ONNPSJ +IN ףp= ?i-1 tag+i word CC exporterNNK?JJKi-1 tag+i word NNP workVBZ(\VB(\@VBPZd;O?NNJ +NNP-i+2 word risksNNB`"JJZd;?IN|?5^VBZ^I +?NNS^I +VBRQ? i word ravesVBZw/?NNSw/Կi-1 tag+i word -START- octelNN!rhNNP!rh?i-1 tag+i word NN legNN?5^I ?JJ?5^I i-1 tag+i word -START- insurersNNSKNNPK?i+2 word europe JJ\(\?NNQVBD#~jĿRBRv/VBZrh|?DTV-?NNPHzGNNPSMbX?VBG-?VBP~jtRB +NNSMbXi+2 word sealedNNx&1?JJx&1i-1 word strollingRP(\RBZd;IN7A`?i word introductionsNNS;On?VBZ;Oni word royaltyNN%C?JJ%Ci-1 tag+i word PRP$ fitnessJJSQNNQ?i-1 word firmedJJ)\(@NNV-NNP rh i word wooedNNS'1ZVBN'1Z?i-1 tag+i word VB creatorsNNS;On?JJ;Oni-1 word confereesVBN%C̿VBD%C?i-1 tag+i word NNS depletedVBD&1?VBN&1i-1 tag+i word VBP dismayedVBN\(\׿JJ\(\?i-1 tag+i word -START- sixtyDTCDZd;O?NNP-i-1 tag+i word POS asRBK7A?JJV-߿IN%Ci-2 word opposeVBG~jtпVBNK7?JJ;Onҿi+1 word o'brienNNS rhNNP rh?i-1 word definingNN-?JJ- i suffix AULNNPS/$NNl@NNPA`" i-1 word wetCDOnCCOn?i-1 tag+i word CC provideNNZd;JJ9vIN +VBS㥛@VBP/$?i-1 tag+i word DT freeNNPtV?JJoʡ?RBZd;NNK7 i word roastNN!rh?RB!rhi-1 tag+i word IN heftyJJRףp= JJףp= ?i+1 word bundesbankNNP^I +JJ^I +?i-1 word surveyedJJx&VBPK@VBNK?NNKVBDCl?i+1 word fibersNN|?5^?JJ|?5^ɿi tag+i-2 tag `` VBZVBN ףp= ǿVBZ7A`VB}?5^I?NN rh RB{GzNNSx&FWzGRBRClӿEXI +?INFx?DTʡEVBG9v @VBPX9v?NNPv/?JJˡE?JJRCli-1 tag+i word , stemsVBZʡE?VBDʡEi word declaredVBZ rhVBN|?5^?JJ ףp= VBDzG?i-1 tag+i word `` abnormalVB^I +׿JJ^I +?i word protestedVBN(\VBD(\?i+2 word namibVBZMbVBPMb?i+1 word inventedVBy&1NNy&1?i-1 tag+i word CC noneNNV-?EXV-i-1 tag+i word VB listNNDl?JJDlѿi-1 suffix lizNNPS rhNNP rh?i-1 tag+i word PRP betDTʡEۿJJjtRBp= ף@VB333333ÿVBP+i-1 word costsVBP9vҿJJzG@INGz?RPw/RBʡE?VBDB`"VBNS㥛i-1 tag+i word IN nomuraJJV-NNPV-?i+2 word hourlyINQRBQ?i-1 tag+i word JJ politicianNN&1?JJ&1i-2 word personalNNPA`"?NN9v?WDTʡE?JJ +?INʡENNSʡEi-1 tag+i word VBG ropeVBPsh|?ſNNsh|??i-1 tag+i word RB embracedVBN/$?JJ/$i-2 word opposesNNSJJRA`"@JJS㥛i-1 tag+i word , diedVBD r?VBNMbXJJZd;Oi-2 word gomezNN+VBD+?i+1 word camouflageNNSK7ANNDl?JJOni+2 word fightVBG9vJJ9v?i-1 tag+i word CD parkingNNCl?JJCli-1 tag+i word DT underlyingVBGI +@JJ~jtNN{Gzi-1 word soviet NNMbX9?VBD?FW"~?JJoʡ?NNS!rhVBG|?5^?RB/$VBN+VBZ+NNP~jt?i-1 tag+i word NNS northeastRBoʡ?NN)\(INvi-1 word showingVBN ףp= RBMIN?5^I ?DT?5^I NNSM?JJףp= @NNHzGi-1 tag+i word CC relyJJh|?5VBCl?VBP;On?RBjti-1 tag+i word RB cottonNN-?JJ-ӿi-2 word oppositionVBA`"VBGA`"? i word voiceNNSK7NN}?5^I @JJ%CNNP7A`i-1 tag+i word DT transcanadaNNPSmNNPm?i-1 word carpenterVBZA`"NNSA`"@RB|?5^?VBD|?5^i-1 tag+i word PRP coveredVBP+VBD+?i word calmingVBG~jtJJffffff?NNMbX9i-2 word revenuesJJZd;?NNPn?VBGSi-1 tag+i word JJ paleVBP`"?NN`"i-1 tag+i word NN supplierRBRMNNM?i+1 suffix mumVBGx&1?NN;OnJJDl?i-1 word energyNNS333333?VBZ333333i+2 word stanceNN\(\׿POSffffff?VBZffffffֿJJ\(\?i+2 word chipsJJX9v?NNPA`"VBnRBA`"?NNX9vVBPn?i-1 tag+i word IN resolveVB"~?NN"~i+2 word ineptCC333333PRP$lPRPJ +?i-1 tag+i word NNS expiredRBZd;VBNX9vJJ/$VBDGz@i word prepaidNNV-VBNףp= ?JJx&i-2 word bloodVBG/$?VBN/$NN/$VBD/$@i-1 tag+i word VB sufficientVBq= ףpJJq= ףp?i-1 tag+i word NNS closedVBNT㥛 VBDT㥛 @i word indirectJJh|?5@NNh|?5i-1 word deployedINZd;O?RBZd;OͿi-1 tag+i word VB vacationNN-?NNP-i-1 tag+i word -START- isRB(\NNP-VBZQ @VBD+VBNSi+1 word estimate NNQWDTT㥛 JJx&1?IN̿NNPZd;OJJROn?VBZ~jtDTT㥛 ?NNSGz?i word disputedJJjtƿVBD9v?NNVBN%C?i word nonperformingVBGrh|JJrh|?i word supermarketNNS?JJSi-1 tag+i word VB adenocardRBQNNQ? i word lovedVBNCl˿JJp= ףؿVBDK?i-2 word inexorablyVB"~NNS"~?i-2 word lighterVBP%CRBR-?RB%C?JJR-i word hispanicsNNPS9v@NNS"~jNNP"~ji-1 tag+i word VBG togetherRP(\?EX}?5^IRBjtPRPPni+2 word commercializeVBN#~j@VBD#~ji-2 word assistJJˡE?NNˡEi-1 tag+i word NNP simulatorNN;OnNNP;On?i-2 word projectsVBK7?NNSZd;O?VBNMbJJK7?VBDV-i-1 tag+i word IN yardworkNNCl?NNPClѿi tag+i-2 tag CC :MDFx?VBG/$FW\(\VBDMbXVBZQDTn?JJS?CDMb?NNS|?5^?NNPS)\(NNnڿVBPK7IN/$?VB333333?RB}?5^I?NNP)\(i+1 word indiansJJx&1NNPx&1@i word artilleryNN-?RB-i-1 tag+i word NNP employeesNNPV-NNPSV-@i-1 tag+i word CD ashurstNNPSK׿NNPK?i-1 tag+i word DT personnelNNS +?JJx&1?NNq= ףpi-1 tag+i word CC breakingVBGQ?JJQi-1 word cumulativeVBPd;OJJh|?5?NN ףp= ?%i-1 tag+i word DT fishing\/processingVBG㥛 JJ +?NNRQؿ i pref1 KVBA`"?WDT5^I NNP +0@NNPSK7@RB\(\ JJR/$JJNNSjtFWjt?VBDGzVBNMb?VBP`"IN;OnVBG"~?NNQi+2 word settingVBNClJJCl?VBZףp= NNSףp= ?i word diversifiedNNP{Gz?VBNZd; JJI +@NN/$i-1 tag+i word DT interviewsJJSNNSS?i-1 tag+i word DT sidelinesNNSףp= ?JJףp= NNףp= i-1 tag+i word VB occurringVBGQ?JJQ i word playNN9vVBDtVVBP1Zd?RBClVBZSVBI + @JJh|?5i+1 word disagreesVBZQRBQ?i-1 tag+i word DT resultingVBGMbпNNClJJˡE@i-1 tag+i word DT idealJJDl?NN/$?NNSRBi-1 tag+i word DT weatherNN'1Z?RBw/JJS㥛ĿJJR㥛 i+1 suffix uceRBy&1?INDl?NNP`"VBy&1NN`"?WDT!rh?i-1 tag+i word JJ endsNN$CNNS$C?i-1 tag+i word MD wellVBOnRBOn?i+1 word specialistRB(\JJX9vNN|?5^?i+1 word bowkerJJA`"NNPA`"?i+1 word illustratedNNPS'1ZԿNNNbX9?JJNbX9NNP'1Z?i-1 suffix traCDNbX9пVBZZd;ONNS r?JJT㥛 ?NNT㥛 i word multilayerJJK7A`?NNK7A`i-2 word pitchersJJ= ףp=NN= ףp=@i+2 word wandaNNPSGzNNA`"?JJQ޿NNPX9vֿ i-1 tag+i word -START- listenersNNPSZd;NNSZd;?i-1 tag+i word JJR inclinedVBNp= ףJJp= ף?i word southamJJ}?5^INNPS}?5^INNS㥛?RB}?5^INNPm?i-1 tag+i word RB pocketsNNS^I +?JJ^I +i-1 tag+i word DT toxicologistNNjt?JJjtĿi-1 tag+i word NNP initiallyNNPSʡERBʡE?i+2 word sensitiveVBP~jt?RB$C?IN$CVB~jti-1 tag+i word VBG remadeVBZd;@VBNZd;i-1 tag+i word JJ complianceNNT㥛 ?JJT㥛 i-1 tag+i word NNP unitholdersNNSd;O?NNPd;Oi-1 tag+i word NN overhaulNNS333333NN|?5^@JJ1ZdNNPzGi word agonizingVBGMbX9JJMbX9@i-1 word boggingRBp= ףؿRPp= ף?i-1 word blockadeRPMbXINMbX?i+1 word softwareJJ;On?VBZ~jt?NNS~jtؿNNP!rhܿVBGjtֿNNFx?VBN;Oni word reofferedJJK7A`VBNK7A`@i word stridentJJsh|??NNsh|?i-1 tag+i word VB naphthaTOK7NNK7?i-1 tag+i word POS becauseRB rh?IN rhi-1 tag+i word NNS beatVBPoʡ?VBDoʡi-1 tag+i word DT omnibusJJ~jt?NN~jtؿi-1 tag+i word NNP protestantsNNPS7A`?NNP7A`ڿi word regulatorVB5^I NN5^I ?i+2 word globeRP9vIN9v?i-1 tag+i word IN bufferNNv?JJv׿i+2 word sequesterNNS333333?VBN333333i word floodingVBG$CۿNN$C?i-1 tag+i word -START- macyRB rhNNuVNNP(\?i-2 word innopacJJECDE?i word psychoanalystNNx?JJxi word stennettNNPSClNNPCl?i+2 word damagingJJ rؿNN r?i-2 word determinedNNX9vVBD/$NNSX9v?VBN/$?i-1 suffix athPRP333333?RB(\VBZ(\NNS(\?PRP$9vVBGMbXɿNN-?VBDd;Oi-1 tag+i word DT soaringVBGoʡ@NNMbJJ|?5^i-1 tag+i word : lenVBClNNPCl?i-2 word adjustedVBGZd;ϿJJuV?NN"~ڿi-2 word telltaleNNS?RBi-1 tag+i word NNS showsNNSVBZ?i-1 word oceanVBPZd;O?NNZd;Oi-1 tag+i word RB growingVBGzG?NNPzGi-1 tag+i word TO approveVBJ +?NNJ +i-1 tag+i word VBD penneyNNZd;O?NNPZd;Oi-1 tag+i word NNP regulatesVBZ^I +?NNS#~jܿPOSi-1 tag+i word NN consultantsNNSMb?VBZMb i word yankedVBPClVBNK7?VBDV-ڿi+1 word embassyJJh|?5?NNPh|?5޿i-1 tag+i word JJ interestingJJJ +?NNJ +i-1 tag+i word RB implementVBV-?JJV- i-2 word use JJS1ZdRBR+@CDClVBGʡE?NNMb?VBNv/JJʡE?NNS1Zd @NNP㥛 VBK7JJRuV i-1 word carlNNPCl @JJnNN rINCli-1 tag+i word IN yourPRP${GztJJjt?NNP-ۿi-1 tag+i word JJ fewerJJRZd;O?NNPZd;O i suffix broNNPS rпNNP r? i suffix oon RB^I +@NN~j@NNS7A`NNPV-VBNNPSv߿VBN/$޿JJ{GzVBZni-1 tag+i word NNP districtNNPSZd;ONNPZd;O? i word hboNN"~jNNP"~j?i-1 tag+i word DT contractualJJy&1?NNy&1i+1 word chunksJJuV?NNPuVݿ i-1 suffix ofCC`"JJRRQ?UHQ?VBN)\(NNSx&1?JJS㥛 ?WDT%C?JJ|?5^?FW333333?RBS"~VBG^I +?VBZoʡCD#~j?RP&1RBRI +NNPCl?PDToʡݿNNPS?DT333333ۿ$S?VBD$CRB5^I ˿VBGzINw/VBPX9vNN@PRPѿPRP$L7A`WPZd;? i suffix -``NNQJJ(\``)\(@i-1 word interbankJJS @NNPV-VBDffffffVBNGz?i-1 tag+i word TO showVB+?RB+i-1 tag+i word , boostingNN/$VBG/$? i suffix PLONNPSJ +ѿNN|?5^NNP~jt?i+1 word expectationVBG$CJJOn?NNzGi-1 tag+i word JJ compoundNNV-@NNSNbX9JJ ףp= i-1 tag+i word , rollsVBZ"~j?NNS"~ji-1 tag+i word RBS sustainedVBNMb?JJ/$VBDw/Ŀi-1 tag+i word IN negotiatorsVBZ+NNS+?i-1 tag+i word NN authorizedVBNʡE?VBDsh|??VBZ$Cۿi-1 tag+i word `` bedrockNN= ףp=?JJ= ףp=i+1 word leemansJJV-NNPV-?i+1 word departmentsNNP-?VBGl?NNd;OJJjtֿi-1 tag+i word DT clienteleNNnNNSn? i suffix andNNPSjtVBPn@JJnJINGzJJRK7ANNP ףp= @VB"~j @VBGV-CDV- @RPʡEVBN+VBZnMDzGRBzG?VBD|?5^NNSK7 NNrh| @i-1 tag+i word DT humorNNSX9vNNX9v?i+2 word comesDT?PDT;OnڿRBxJJK7A`NNPh|?5?i-1 word urgedJJ/$?NN/$i+1 word readyRB&1?IN&1NNS?5^I NNPʡE?NN+VBDʡEVBP rh@i-1 tag+i word -START- anxietyNNd;O@RBV-NNPK7i-1 tag+i word `` executiveNN|?5^?JJ|?5^i-1 tag+i word TO screenVBsh|?NNsh|??i word grumbleVB-VBP+@NN+JJ(\ؿ i+2 word fatNNSGzNNGz? i suffix lteRB}?5^INNP}?5^I?i+2 word refocusedVBZQ@POSQi-2 word sociologistNNx&1?JJx&1пi-1 tag+i word NNP suggestingVBGrh|?VBDrh|i+1 word inningsNNS!rh?JJ!rhi-1 tag+i word IN infinitiNNS~jtNNP~jt?i+1 word effectivelyVBK7?VBD"~RBR?JJRVBZS㥛i-1 tag+i word RB endVB;On?NN;Oni-1 tag+i word VBP salvageNNjt?JJPnFWQi tag+i-2 tag WP IN VBDZd;ODTx&1?NNSjt?VBNZd;VBPMbX?RB-޿VBZ"~ڿNNP{Gz?VBMbXCC#~jPOSn!i-1 tag+i word -START- midmorningVBGK7A`NNGz?NNP rhٿi-1 tag+i word VB cdsNNSNbX9?NNPNbX9i word repairedVBN|?5^?JJ|?5^i word merieuxNNPSENN!rh̿NNPx&1? i-2 word meanNNPSI +?RBJ +?CCCl?JJףp= DTZd;NNSI +i-1 word breakupNNQ?JJQ i word treeNNPS-NNQ?JJKi-1 word transaction VBD!rh@JJRuVVBNV-?WDT\(\@VBZQ?DTxNNSX9vWRBuV?RBx?NNV-JJQIN$Ci+1 word scoreJJS?NNSi-1 tag+i word RB broughtVBZbX9VBNGz?JJx&VBD!rh?i-2 word wheatNN+@FW!rhJJv/VBZ?5^I NNS!rhNNPv/?i-1 tag+i word JJ creepingVBGB`"?NNB`"i-1 word commentsVBPI +RBzGINoʡ?NNPMbVB-@VBD/$VBNClۿi-1 tag+i word DT privatizedVBNV-?JJV-ݿi+2 word frankVBDd;ONNPq= ףpNN/$@JJ$Ci-1 tag+i word NNP claiborneNNP rh?NNPS rh i suffix FEENNSGzNNMbX9?NNPx&i+2 word pregnantVBSVBPDl@NNDli-2 word silkyNNS9vڿNN9v?i+1 word sharfmanJJsh|?NNPsh|??i word balanceJJ'1ZVBDl@NN5^I ?RBw/i-1 tag+i word DT answerNNM?NNSM¿i-1 tag+i word DT panickyJJL7A`?NNL7A`i-1 tag+i word VBN hitWRBOnVBN}?5^I?NN/$i-1 tag+i word TO increasedVBNA`"?JJA`" i+1 word everJJS~jtVBPK?JJGz?INl?NNPx&VBZd;NNPSDl?NNQ޿i+1 word believedRB(\?VBP(\i-1 word afternoonJJRClJJ|?5^ʿCDsh|??i-1 word runkelVBZV-?NNSV-i word terminatedVBN|?5^@JJ|?5^i-1 tag+i word NNS besidesINS?VBPSi+1 word remediationNNoʡ?JJoʡi-1 tag+i word IN occasionsNNS?IN̿i-2 word textilesVBG(\NN(\?i word persuadeVBK7?JJK7i-1 tag+i word NN bemoaningVBGMbX9?NNMbX9Կi tag+i-2 tag VBD VBDRP)\(VBN9v?RBDl?i-1 word dozenVBZQNNSK7A?NN/$i-2 word lortieRBRl?JJRl i word countsVBZM@NNS|?5^:NN"~ڿi-1 word wheatVBZ/$NNS/$?i-1 tag+i word ) lookVBP~jt?NN~jti-2 word dismalVBGENNE@i-2 word thoroughbredRPA`"INA`"?i-1 tag+i word VB citedVBN!rh?VBD!rhi word payrollVBP rhNNSI +NNS㥛?JJ5^I NNP(\?i+1 word venture NNPS^I +NNp= ףRBSKVBPʡEֿJJjt?JJSK?RBRZd;VBNh|?5?NNPMb@ i word levelNNn@@CCOnRBRv/VBNq= ףpVBPT㥛 JJS㥛ĿNNSףp= i-1 tag+i word JJ respectNN~jt?JJ~jti-1 tag+i word NN strugglesVBZjt?NNSjti-1 suffix orsVBDS㥛 @VBN+JJJJRL7A`VBGp= ףRBK7A`?NN^I + RBRx&DTClNNPQ?NNPSm?POSS?INq= ףp?NNSV-''SWDTZd;OWPMbP?VBZ(\?VBS㥛пVBPjt@RPx&?i-1 tag+i word NN refereesVBZV-NNSV-?i+2 word adjustsRBFx?INFxٿ i pref1 1 VB/$NNPSSVBZ rhRBx&1?NNS?5^I@NNP\(JJjt@NN"~jVBDSCDDl)@ i word lesserRBRV-JJV-NN`"RBZd;OJJR+@i-1 tag+i word DT probableJJ7A`?NN7A`i-2 word contextNNQRBQ? i suffix 7-1NNCD?i-1 tag+i word NNP billNNZd;?NNPZd; i word labNNPʡENNSʡENN|?5^?i-2 word habitatJJ rh?NN rhi-1 tag+i word NNS expireVBP/$?VB/$i-1 tag+i word JJ officialNN +?JJ +i-1 word watchedNNM?JJMڿi-1 tag+i word RB cdsNNS-?NNP-i word parcelsVBPףp= NNSףp= ?i+2 word programs NNMVBD+RB +VB`"@JJL7A`RBRGzIN +?NNPOnFWNbX9?JJRGz?i-1 tag+i word VBD spentVBZd;VBNZd;?i-1 word revealINHzG?DTHzGi-1 suffix golNNPST㥛 ?NNPT㥛 пi-1 tag+i word , makeupJJRMbXNNMbX?i-1 tag+i word RP entryNN+?VB+i-2 word elaborateWDTCl?JJCli-1 tag+i word NN managingVBGK7A?NNK7Ai-1 tag+i word , overRBˡE?INˡEi-1 tag+i word DT peelbackJJMbX9?NNMbX9i-1 tag+i word , crowedVBGMbVBNX9v?VBDCli+1 word bickeringVBG|?5^JJzG?NNi word sylvesterRBR|?5^NNP|?5^?i-1 tag+i word NNP intermixedJJFxVBDFx?i-2 word reachNNPQ?JJK7?NN^I +?JJS$C?RBSA`"VBN rRB#~jNNS"~ i-2 word ricaJJR5^I ?RBR5^I ۿi tag+i-2 tag WP NN VBNtVVBZoʡ @NNSq= ףpտVBx&1VBDffffff?VBP#~jRBMbXNNP"~JJSi+2 word virtueINɿRP?i+1 word augustRB#~jIN#~j? i word raNNPjt?NNK7A`տINK7 i-1 word rule VBGʡE?DTsh|?RP(\VBD+?NNS~jt?WDTClINS @RBT㥛 @NNʡEJJVBZ+i-1 tag+i word JJ noteNNSClNNS@RBףp= FW?5^I i-1 word products RB +?VBNzG?WDTx޿INx?VBP"~jJJ-?VB1ZdVBGv/?NNS˿VBDףp= i+2 word plummetingVBGd;O?VBDd;O޿i-1 word lungsVBNX9vVBDX9v?i+2 word incomeVBSCCQ?RBʡEVBN^I +WDTGzINX9v?DTRQȿJJ"~ʿNNZd;O?VBDZd;O?FW9v?JJR(\VBPL7A`?NNP)\(? i word boughtVBDMb!@VBN^I + @VBPMbJJʡEINmVBZQRBoʡNN'1Zi-1 tag+i word NNP sometimeRBm?NNmi-2 word exportersJJZd;O?NNZd;NNPZd;i tag+i-2 tag NN CDVBDCCjt@INEJJRm?RPGzCDK׿VBGOnJJv/?RBRjt?VBPxWDTy&1?DTV-?VBZ{GzVBq= ףp?NNPSNNZd;NNSCl˿VBN㥛 ҿNNPX9v?POSPnؿRBmi-1 tag+i word `` goodNNV-NNPNbX9ؿJJ/$? i word unlockVBP7A`?JJ7A`i-2 word nowhereNNS\(\?VBN\(\߿i-1 tag+i word VBZ hopeVBPMbX9NN= ףp=?VBZMbX9i+2 word avenueRBxNNPJ +?INx?NNPSJ + i suffix otaNNS"~NN"~?JJ&1?NNP&1i word downgradeNNuV?VBNbX9JJ-ֿi+2 word series IN9vVBGz?NNPSQ?VBG&1JJ1ZdVBD-?CCA`"ӿVBNNbX9NNP?NN= ףp=ʿRB;On?RPrh|DTS㥛?i-2 word labelingJJ?NNi+2 word foundationsVBPn?VBPMbX9VBG= ףp=?NN= ףp=VBDi word projectNNPSX9vNNHz@VBDjtVBPMJJ^I + IN/$NNSlNNPZd;O?i word topiaryJJ`"?NN`"i-2 word cutbacksVBNCl?JJFxNNP(\?i-1 tag+i word NNP candyNNSV-NN(\?JJSVBh|?5i-1 tag+i word -START- finnairNNS!rhNN rhNNP^I +?i+2 word hauntRBQ?NNQi-1 suffix ossVB rؿVBN&1?JJRʡEVBPd;OWDT!rhJJV-ҿIN|?5^?NNS?5^I ?RPT㥛 ?RB= ףp=NNV-?VBD&1RBRʡE?VBZx?CD?5^I i-1 word donsNN/$?VBG/$ i-1 tag `` VBG5^I RPClPDTrh|INJ +?NNPSMbX9VBNJ +?WP9v?FW+?RBS/$NNPsh|? NN㥛 ?LSףp= ӿRBn@NNSw/?WDTJ +?JJE?WRBS㥛?MDʡEJJR+?VBZ㥛 ?RBR&1CD9v?UHNbX9?DT5^I ?VBCl@CCx&1?VBDZd;߿PRPjtEXQ?PRP$m?VBPˡEԿJJSjt?i-1 tag+i word , shoppingVBG;OnNN;On?i word puckishIN+JJ+?i+1 word sopranoNNPMFWQJJT㥛 ?i-2 word stylingRB~jt?JJ~jti-2 word propyleneVBPS㥻NNS㥻?i-1 tag+i word DT wrongdoingNNHzG?VBGHzGi word roommatesNNP"~NNPSDlNNSMb?i+1 suffix hit VBPOn?VBZuVMDMbX?RBSDl@NNʡE?VBDGz?VBN}?5^IRBA`"NNStV?NNP rhVBOnJJSi+1 word northernVB rJJMbX9?NN rNNPNbX9@i word generatorsNNSDl?JJClNN~jti-1 word southeastJJtV?NNPtVi-1 tag+i word NN terminalRBˡENNˡE?i tag+i-2 tag CC -START-JJS(\VBN(\VBZS DTʡE@RBS㥛NNP}?5^I?CCQINx @VBGB`"?WDTV-WP~jt?VBDVBPmRBS/$?RBRw/ @EXjt?UH5^I ?JJQۿNNd;O@NNS+VBX9v?PDTMbпCD"~JJRCli+2 word embassyJJDl?NNPDl i-2 word herbNNy&1@NNPy&1 i word needsRBq= ףpIN&1VBZʡEs@NNS333333JJV-NNB`"RBR&1VBPni-2 word specialtyJJV-?VBGˡERBV-NNˡE?i-1 tag+i word -START- jimRBENNP333333?CC rhi-1 tag+i word NNP neighborNNPSxNNx?i+1 word correctiveJJ/$?RB/$i-2 word earlierNNPSK7?VBGv/?NNv/VBDGz?VBNGzNNS%CNNP-ۿi-1 tag+i word DT schemeNNS+NN+?i+2 word unnecessaryVBMbNN^I +WDTx&1?JJʡE?INjtDTMbp i word departNNQſVBQ?i-1 tag+i word CC freightNNQ?JJx&VBDSi+1 suffix oms VBGQNNP rhJJR/$?JJv/NNw/@RBR/$ֿVBP`"WDTx޿INRPI +RBS?i-2 word lipperNNPS~jt?NNP~jti-1 word ambivalentRB rhտIN rh?i-1 tag+i word VBG limpJJrh|?NNrh|Ͽi word symbolicJJ~jt?NN~jti+1 word roderickNNPS/$?NNK׿NNPffffffi+1 suffix eltIN{GzVBZHzGNNSHzG?NNPM?NNZd;O?VBNI +?WDT{Gz?JJ r i+1 word qvcNN^I +?JJ^I +i-1 word angelesNNP~jt?NNPS~jtVBGOnӿJJ'1ZNNS㥛?JJR㥛 RBq= ףpNNS{Gz? i word wokeVBZSWDTvVBDK7?i-1 tag+i word DT brakingVBGuV?NN+JJ}?5^Iܿi-1 tag+i word NN chargedVBN~jt@VBD~jti-1 tag+i word IN admiresNNSB`"ٿVBZB`"?i+2 word detectWDTn?INni word distinguishedVBZʡEVBNK7?JJ^I +VBDX9v?i-1 tag+i word CD britishJJ rh?NNP rhi+1 word dismayedVB%CԿNNS%C?i-1 tag+i word RB refocusVBMb?VBPMbi-1 tag+i word NNP diabetesNNP?NNPSɿi-1 tag+i word ( keepingVBGMbX9?NNPMbX9 i word dawnsVBZ\(\?VBNx&1VBD(\i-2 word chicago NNPSQ뱿JJv/VBP1Zd?POSVBNjt޿RBSۿVBZ rh?NNPRQؿNN333333?VBD}?5^I?JJS1Zdi-2 word tragedyINxRBx?i word bassistVBPMbX9NNMbX9? i+1 word boatNNPA`"JJMbX9?CDS㥛?i+2 word constructionDTK?VBMb?VBG~jtRB;OnNNA`"?FWSPDTK߿JJCl?i-1 tag+i word CC tonightNN'1Z?VBD5^I EXK7A`ſi-1 tag+i word CC twistedJJQ?VBDQi+2 word triggerJJ^I +?RB^I + i word issueVBZbX9NNS$CVBd;O@NN7A`@RBS-VBPHzG?JJFx i-1 word fieldingVBI +NNI +?i-1 word drapePRPzG?NNzGi-1 tag+i word JJ slideNNS~jtNN~jt?i+2 word family VB|?5^VBG|?5^?VBDZd;O?CDClJJ|?5^RBV-?NNMbXɿVBNZd;OIN$C?i-1 tag+i word VB timidJJ/$?NN/$i word beneluxJJS㥛ԿNNPS㥛?i tag+i-2 tag NN WDTNNS\(\?NNd;O?VBD㥛 VBN㥛 ?VBPffffffJJZd;VBZ?i-1 tag+i word VBP nextRBl?JJli-1 word januaryNNS"~WDT~jtÿNNFx?INˡE?i+2 word heavyNNPK7A`NNx&?NNSy&1|?VBN(\?JJ(\ i suffix SoxNNPSzG@NNClNNP+i-1 tag+i word NN overbuiltJJGz@VBNh|?5NNuVi-1 tag+i word NN technologiesNNSMb?NNPSMbi-1 tag+i word JJ carryingVBGGz?NNGzi-1 tag+i word NN ruledVBNL7A`尿VBDL7A`?i-1 suffix urlRP rhRBQ?JJ"~ʿNNSCl?NNCli word cambrianVB{GzNNPS)\(NNPn?i+2 word bidderINn?DTni word recordkeepingVBGnNNn?i-1 tag+i word VBG formalJJrh|?RBrh|i-1 tag+i word IN fingerprintNN1Zd?JJ1Zdۿi+2 word revivedNNHzG?NNPHzGi-1 tag+i word -START- tokyuNNPGz?VBNZd;OͿCD5^I DTˡEi+1 suffix dayJJRh|?5VBGVBZV-RP+VBN|?5^@RB+?FWI +ƿNNSK7A`@VBZd;O߿CD;OnNNPSQ?VBPV-JJMb?DTGz@JJS'1ZPRPSNNP!rhRBRv߿INMbp?VBDX9v?WDT}?5^INNoʡ?i word subscribersNNSQ?NNPQi+1 word appointeesJJ;On?NN;Oni+2 word tackedVBNʡE?JJʡEi-1 tag+i word NN crashedVBNClѿVBDCl?i-1 tag+i word NNP explainsVBZ/$?NNS/$i-1 tag+i word NN bonoJJʡEFWʡE?i-1 tag+i word DT reintegratedJJ7A`ҿVBN7A`?i-1 suffix emoVBNClVBDCl?i+2 word middlemanVBD= ףp=VBHzG@VBPsh|?ݿNNPK7Ai+2 word resemblesJJS{Gzt?RBS{Gzti-1 word handsomeNNSV-?NNV-i-1 word retiringVBNClRBCl?i+1 word leadershipNNP&1VB{Gz?NNS+JJ-@NNn i word locateVBL7A`?JJjtNNV-߿i-1 word cautionPRP$ʡEEXK?NNKPRPʡE?i-1 word income VBDy&1|?RBRS㥛?VBNX9v@VBPw/WDT-IN-?VB/$JJnJJRS㥛i-1 tag+i word `` clunkyNNS rhѿJJV-?NNI +FWoʡi-1 tag+i word JJ damnJJ|?5^RB|?5^?i-1 tag+i word NN toreVBD?5^I ?IN?5^I i-1 word burmahNNGzNNPGz?i-1 tag+i word IN entrepreneurNNE?JJE i-1 word gulfNNL7A`NNP5^I ?JJRQi+1 word talentsJJ+?NN+i-1 tag+i word JJ politburoNNS"~NNP"~?i-1 tag+i word JJ downVBK7RP)\(?RB/$տNNKJJ rh?INK?i-1 tag+i word CC publishingVBG9v?JJQNN~jtӿi-1 tag+i word RB hardJJ`"RB`"?i word adaptedVBNQ?JJQ޿i-1 tag+i word JJ deputyNN/$JJS?NNPQ?i-1 tag+i word `` manageVBJ +?NNJ +ٿi-1 tag+i word NNP dogmaNNCl?NNPT㥛 NNSQ i suffix zzyNN ףp= NNP+?NNS+JJQ?i+1 word jurisdictionalVBNOn?JJOni-1 tag+i word NNP builtNNPSxVBNHzG?RB/$VBDMb`i-1 tag+i word JJ gamblingVBGq= ףp?NNq= ףpi+2 word damperVBK7VBNffffff?VBDS㥛i+1 word activitiesNNv@VBGB`"NNSDlJJ`"?i tag+i-2 tag DT ,VBD)\(POSNbX9VBPS㥛?VBNPnNNSK7A`@NNPS)\(?JJjt?JJR"~jCDV-?VBGzVBGZd;O?FW rh?RBSy&1?RBRFxRBn?INI +NNQ?JJS|?5^NNPK7A?WDTuVVBZsh|?? i word usNNMbNNPJJ)\(PRPMb@i-2 word believedVBZsh|?VBX9v?NNSsh|??JJX9vϿi-1 suffix linNNPSCl?VBG̿NN1ZdӿVBDZd;O?VBNZd;OJJ+ǿNNP'1Z?i-2 word whimsicalIN+JJ+?i-1 tag+i word `` yaabaUHQ޿NNq= ףpNNPffffff?i-1 tag+i word DT marylandJJʡENNPʡE?i-2 word archrivalNNPSMbNNPMb?i+2 word coffeeJJ/$NN/$?i-2 word decidedlyRBh|?5VBGʡEJJl?i word embattledVBNnJJn?i-2 word aspectRB㥛 ?JJ㥛 NN$C?NNP rhCC= ףp=ڿ i-1 word dishVBNGz?NNGz i+1 word dealINHzGDTHzG?NNPVBG(\RBx&ٿNNMbX?JJ+?i-1 tag+i word NN dedicatedVBNX9v@VBDX9vi+1 word supply RBoʡVBDʡECCMbX9ĿVBPV-?JJ"~@DTMbX9?VBGbX9NNq= ףpVBNQ?WDTxINx?i word productionNNP(\NN(\?i-1 tag+i word NN viewVBPw/ԿNNw/? i word u.k.NNPx@NNSMbJJףp= NNHzGi-1 tag+i word JJ uneasinessNNX9v?JJX9vοi-2 word neitherVBZ(\?NNSB`"VBN+i-1 word irresponsibleNN/$?VBG/$i-1 tag+i word DT memberNN{GzNNP{Gz?i-1 word commonJJI +?INZd;O?NNS-NNPGz߿RBZd;ONNl?VBDB`"?VBNJ +ѿi-1 word boostedNNS5^I ?RBR5^I i-1 tag+i word NNP organizationNN~jtNNP~jt?i word valuationNNףp= ?JJh|?5NNP$Ci-1 word sentenceVBN rhݿVBD rh?i-1 tag+i word POS bikiniNNP1Zd?NN1Zd i word rogersNNS)\(NNP)\(?i+2 word harvardVBNQJJQ?i+1 word interpretsVB+RB+?i-1 word nortonVBNZd;׿VBDZd;? i-2 word find VBN\(\?WDTSRB1Zd?INuVͿMDV-JJQ?NN333333ӿVBD\(\VBZ/$NNPSv/?WPS?NNPv/i+1 suffix rusVBGJ +?NNJ +i-1 tag+i word VB representedVBNV-?JJV-i-1 tag+i word JJ projectedJJw/?VBDw/i-1 tag+i word DT rashNNJ +?JJJ +i-1 tag+i word IN doomNNK?NNSKi-1 tag+i word CC concededVBN|?5^VBD|?5^?i-1 tag+i word DT visitorsNNPSZd;ONNSZd;O?i-1 tag+i word RB benefitVB`"?NNP`"i word productionsNNPStV?NNSB`"۹NNmNNPˡEi-1 word fetchinglyVBNףp= ?JJףp= ӿi+1 word cooperJJ}?5^INNP}?5^I?i+2 word directedVBNmVBDm?i-2 word xl\/datacompRBRA`"?RBA`"ۿi-1 word unfocusedJJZd;NNZd;?i+1 word sternNNPS5^I NNP5^I ?i-2 word settingNNSFx@NN/$JJmտi-2 word absolutelyPRPCl@NNbX9CD|?5^i-1 word demonstratesWDTʡEINʡE?i-1 tag+i word NN alikeRBV-@NNV- i word jokesNNSNbX9?NNNbX9i word chancesNNSK7A?NNK7A i+1 word ironNNSFxNNFx?JJvNNPv?i-1 tag+i word -START- glennVBNףp= NNp= ףNNPMbX9? i word paosNNPSq= ףp?NNy&1NNP%Ci-1 tag+i word NNS combinedVBNCl?VBDCli-1 tag+i word DT cueJJ#~jNN#~j?i-1 tag+i word CC interestingVBGK7JJK7? i word objectVBL7A`?JJ%CNNMb?i-1 tag+i word NNS climbedVBNnNNQVBDtV?i-1 tag+i word IN argentinianJJQ?NNPQi-1 tag+i word JJ developmentsVBZDlٿNNSDl?i+1 word cloutVBGjtֿNNjt?i word kristinNN/$NNP/$?i+2 word cropsNNSV-VBGDl?NN%C?i+2 word brandNNSZd;ONNEԸ?JJEԸNNPZd;O? i-2 word coldNN ףp= ?JJ ףp= i-1 tag+i word RB orderedVBNL7A`VBDL7A`?i-1 tag+i word CC expectedVBN?JJ"~VBDMbX9?i tag+i-2 tag CD VBZ NNPSuVͿJJV-NNNbX94@CCv?VBNx&1NNSʡEVBGGzVBDMbJJR;On?RBRClRB+NNP9v?i-1 tag+i word IN slogansNNS1Zd?RB1Zdi+2 word obstaclesVBN rhJJ rh?i-1 tag+i word IN scaredVBN`"޿JJ`"?i-1 tag+i word VBD nearDT+RBT㥛 ?JJSIN +?i word reaffirmsVBZGz?NNSGzi-1 tag+i word JJ triggeredNNS rhVBN rh?i-1 suffix jobDTGz?NNSX9v?NNlWDTGzJJl?VBZX9v i word beingVBGS@VB{GzWRBܿLS$CNNStVֿi-1 tag+i word IN routesNNS/$?NN/$i+1 suffix of.VBN/$JJ!rh?NNPS? i-2 word pactNNS/$?RB/$NN;On@NNP;On i+2 word debPOS!rh?VBZ!rhi-1 tag+i word CD awayNNSA`"RBA`"? i word nazisNNPSx&?NNPx& i word dieselNNSClNNK?JJK7?i-1 tag+i word DT nikkeiNNPSףp= NNK7A`NNP9v?i-1 tag+i word DT leapNN7A`?JJ7A`i-1 tag+i word JJ failsVBZʡE?NNSʡE i suffix uck RBsh|?JJR/$VBZV-VBx&1VBGZd;ONN rhCCbX9޿VBPK7A`?NNS^I +JJI +VBD r@VBNV-@RBRxi word influencedNNPMb?NNPSMbVBNtV?JJw/VBDHzG?i+1 word appearanceJJʡE?NNʡEi-2 word revealedVBPffffffRBQ?VBDףp= i-1 tag+i word IN cdJJNbX9NNMbؿNNP|?5^?i word maverickNNSMbX9NNMbX9?i-1 tag+i word CC measuresVBZE?NNSE i-1 word diesRPS?RBSſ i-2 tag MDPRP$MbpCC|?5^?EXS㥛NNPS'1Z?VBGʡE?VBPNbX9RBS333333?VBD|?5^TOK7RB/$@VB{Gz#@CDS?DTS㥛ĿPRP9v?RBR/$ۿVBN/$VBZh|?5$RQNNSS?RPCl@NNI +NNPx&?PDTbX9JJRGzINS㥛JJS{GzJJK7i-1 word minnesotaNNCl?JJCli-1 tag+i word VB flightsRBuVNNSuV?i word endorsementNNjt?JJjti-1 word pastryVBZw/NNSMb?NN333333i-1 word figureRPsh|??VBD|?5^VBNq= ףp?WDTM@INV- VBZ-? i word wallsVBZ333333NNS333333?i+1 word musicalDTQ?NNPQi-1 word improvisationalVBN+NN+?i+1 word foraysVBGsh|?NN?JJK?i-1 tag+i word VBZ herJJR333333DT rPRP$'1Z?JJ +PRPJ +@ i word timingINVBGlNNV- @NNPV-i-1 tag+i word VBP goVB\(\?VBP\(\߿ i-1 word cost DT$C?VBZv/NNQ?WDT|?5^IN/$?RPZd;RB rؿNNSCl@VBGX9vJJR(\?RBR(\VBP"~ji-1 word marvelsVBNCl@VBDCli-1 tag+i word PRP fireVBmNNm?i word marxistJJ(\ @NN rhNNPZd; i word pertinentNNQJJQ?i-2 word environmentVBN(\?VBP/$JJK7IN/$?VBZ"~NNS1ZdNNy&1?VBD"~? i+1 word ldpWDTʡE?WPʡEi-2 word groundballNNSFxINV-VBZNbX9?i+1 word claudioRBR-NN-?VBDv/VBZ{Gz?NNS-i-2 word craigVBGQNNQ? i pref1 ERBROn?NNPSףp= @VBGVBNSWDTV-VBZsh|? DTV-@RB(\?JJRZd;OVBDˡEVBPy&1NN|?5^NNSJ +VB5^I JJS~jtPRP$+CCA`"UHx&1?JJZd;O$}?5^INNPQ+*@CD\(\?IN&1ڿ i+1 word fineRBd;O?JJd;Oο i-1 suffix tiNNV-NNPV-?i+1 suffix hedNNPS/$տNNZd;?VBDKRBS\(\?RBR5^I ?JJR rhVBP333333PRPy&1VBd;O@VBNx&JJK7VBZX9vNNSK7@NNP(\RBd;O@JJS\(\i-1 word peggedJJRS?RBRSi-1 tag+i word , paidVBD +?VBP5^I ӿVBNZd;?JJni-1 tag+i word DT iffyJJsh|??VBsh|?i-1 tag+i word JJ pendingVBG(\?JJ~jthNN rhݿi-1 tag+i word VBN criticizedRB$CJJClVBNMbX?i+1 word chancesVBMbX9?JJ!rhNNuVVBN!rh?i-1 tag+i word VBN discontinuedJJ +οVBNS?NNZd;׿i-1 suffix cowVBZjt?NNSK?NN?5^I ڿ i+2 word neckINX9v?RPX9vJJR-NN-?i+1 word monikerJJ/$?NN/$i word mockinglyRB"~j?NN"~ji-1 tag+i word JJ timesNNPSFx?NNDlRBbX9VBZMbX9NNSV-@NNP#~j?i-1 tag+i word CC luxuryNN rh?RBRQJJ"~i-1 tag+i word , livingVBG/$JJ?5^I @NNMbXi-1 tag+i word IN midmorningVBGClNNS㥛@RB$Ci tag+i-2 tag WRB RBRB rhNN?VBDV-VBNV-?CD+PRP`"JJ"~?i-1 tag+i word PRP gaspVBDʡEVBʡE?i-1 tag+i word NNS occurringVBG&1?NN&1i-1 tag+i word DT concurrenceNN{Gz?NNP{Gzi-1 tag+i word DT capitalgainsNNSA`"?JJA`"i-1 tag+i word VB spendingNNZd;?JJSVBGy&1i-1 tag+i word NNP editorsCCK7ANNSK7A?i-1 tag+i word PRP happensVBZ&1?VBD&1i-1 tag+i word CC offRBZd;NNˡEINh|?5@RPm?i-2 word foodstuffsJJZd;RBrh|?VBNvi-2 word excusesNNPSʡENNSʡE?i word televideoNNPSQ޿NNPQ?i-1 tag+i word CC thatVBD(\WDT|?5^RBd;OINoʡ @DTuV@VBrh|i word guillermoNNQ޿NNPQ?i-1 tag+i word NN songNNS+NN(\@JJGzNNPPni-1 tag+i word IN amountsNNSCl?NNCli+2 word defraudingJJV-VBNV-?i-1 tag+i word -START- plantNNPV-NN333333 @JJ㥛 i+1 word lower VBbX9@RB rNNʡEJJ%C INy&1?NNSʡE@VBGZd;?VBD rh?VBNMbX9ԿCD+VBP~jt?i-1 tag+i word JJ onceNNV-RBw/?IN(\?i-1 tag+i word CD offersVBZ/$?NNS/$i-1 tag+i word NN concertNN+?JJ+ i word cherryVBPlJJK7?NN'1Zi-1 tag+i word DT hideboundJJA`"?NNA`"i-1 tag+i word NNP releasedVBNw/VBDw/?i-1 tag+i word PRP cashedVBDS㥛?VBZS㥛i+1 word depressRBRjt?RBjti-1 tag+i word JJ heldVBD+?NNS+VBN+?RB+ i word chefNN"~?JJʡEVBZHzGi+1 suffix leaPRP$C@JJ1Zd?PRP$~jtVBGA`"NN!rhRBRV-VBNoʡ?i-1 tag+i word JJ burgsNNSoʡ?NNoʡi word deferringVBG/$?JJK7NNV- i word detailVBPPnNN'1Z@JJMbX9i-1 suffix oesJJuVݿRBSy&1?RBGz@VBG;OnVBZT㥛 NNvVBD/$@VBPx&1VB= ףp=@RP;On?FW= ףp=JJS7A`RBRK7?IN|?5^?DTCl?NNPK7A`i-1 tag+i word NNP detailedVBDMVBN㥛 @JJ/$i word wieldingVBG`"?JJ`"޿i+2 word meeting NNP{GzNNZd;PRPx&1JJ-PRP$x&1?VBNʡE?VBM¿PDTˡEĿJJSq= ףp@i-1 tag+i word -START- bRBʡEJJSYMK7?i+1 suffix tuePRP-JJ\(\NNPv?PRP$-?NN +i-1 tag+i word JJ proprietaryNNv/?JJv/i-1 tag+i word NN askingVBGGz?NNGzi-1 tag+i word DT fascistJJB`"@NNB`"i+1 word raisedNNPףp= ?MDClNNPSףp= JJI +ֿNNʡERBS㥛?NNSCl?i-1 word boldlyVBZQ?VBDQi+1 word hugginsNNrh|NNPrh|?i-2 word couriersNNS`"?NNoʡVBP'1Zi-1 tag+i word : .whatDTjtƿWDTl?IN'1Zi-1 tag+i word IN tariffsNNST㥛 ?NNPSCl?NNPQVBP/$i-1 tag+i word , describedVBNZd;O?VBDZd;Oi-2 word capturingJJQVBNQ? i word lotRBq= ףp@NNPSˡEJJ$C NNZd;@FWA`"RBRFxi+2 word dormitoryVBN{GzNN{Gz? i word triedJJ\(\@NNSNN9vVBD&1?VBNʡE?VBP/$i-2 word dominateJJFx?NNPFxi+1 word allenVBZMb?NNSMb i word asiaNNCl?NNPCl绿i word believingVBG rh?NN rh i word worth RBZd;OVBN|?5^JJ= ףp@IN-@VBK7NNPS= ףp=NNK7?VBDQVBPd;ONNS}?5^INNP rh? i word timberJJ~jtVBZd;ONNSX9vNNʡE@i-2 word movedRBRy&1?JJRq= ףpJJˡE?INԿVBZQNNS/$?RBK7ѿi word workmanNNX9v?JJX9vi+2 word privilegesINCl?VBrh|DTzGếi-2 word intel RBSx&1JJRtV?WDTx&1?RBsh|??RPx&1пJJ~jt?NNDlRBRp= ףINPnDTV-?VBGn?JJSx&1?i-1 word newportNNPSx?NNPxi+1 word primaryVBPbX9?JJK7A?NNK7AINbX9ֿ i word intactNNS㥛VBNSVBPX9v߿JJˡE@VBZMNNSnVB9vi-1 tag+i word CC wreakedJJQVBDQ?i-1 tag+i word IN swornJJ= ףp=VBNT㥛 @NNZd;Oi-2 word nomuraVBZ333333ÿNNS|?5^?VBDV-i-1 tag+i word VBN homologousRB~jt?JJ rPRPNbX9 i suffix wlyRBMb)@NNffffffVBN'1ZCDףp= JJINffffffNNSd;OVB~jti-2 word afterJJSпVBGl¿VBZT㥛 ?RPKJJ#~j?VBDw/]@NNSA`"VBNHzGJJRbX9RB"~@NNP㥛 NN/$?CDrh|NNPS~jtVBPV-IN~jt?i-1 tag+i word , insuresVBZtV?NNStVi word intriguingVBG{GzJJM@NNSi-1 tag+i word DT crimesNNSGz?VBN(\NN rhi word fortunateJJT㥛 ?NNT㥛 i-1 tag+i word NNP agreesVBZS?NNSS i word awNNPS㥛UHp= ף?INT㥛 пi-1 tag+i word -START- beverlyRB ףp= JJK7A`NNPh|?5? i suffix damNNPSw/NNPw/?i+1 suffix rs. RP"~ڿCCw/?WDTn NN +οVBD(\?VBNQRB rINOn@DTx&1NNP +@i-1 tag+i word JJ millNNDl?NNPDli-1 word kelly\/varnellVBNClVBDCl?i-1 tag+i word VBN unwiseJJףp= ?RBףp= i word overwhelmedVBN9vJJ9v@i-1 tag+i word RB loathsomeJJ{Gz?NN{GzĿi word undermineVB/$?VBP9v?JJ rh i word knopfNNS/$ӿNNP/$?i+2 word streamedVBG7A`?NN7A`i word squabblingVBG%CNN%C?i tag+i-2 tag RB MD JJR(\VBlq@RP"~j?RB/$VBD$CVBNh|?5?VBPK7JJK7VBZx&1CDS?NN rhPDTRBRGz?i+1 word consultantCDoʡ?VBPMbпJJ/$ֿNNPK7ѿVBEVBG)\(?NNn?VBD-i-1 tag+i word RB recommendedVBNZd;OJJZd;O?i-1 tag+i word -START- psNNS rhJJ"~NNP ףp= ?i+2 word manchesterVBN9vVBD9v?i-1 tag+i word , bouyguesNNSI +@NNPI +i-1 tag+i word JJ difficultyNN|?5^?JJ|?5^ڿ i word rmiNNMNNPM? i suffix jorNNPClNNPSd;OJJ|?5^@NN~jtVBDףp= i-2 word rapeNN@JJSX9v޿UH㥛 JJzGڿVB +VBGzG?RB;On i suffix mphNNSˡEJJRClNN r?i word rheingoldNNPSZd;NNPZd;? i word jrNNPSOnӿNNPOn?i-1 tag+i word DT crowningJJQ?NNQ i-1 tag :NNSHzG?MDQRPMbPRPZd;O?WRBSUHK7?NN5^I @VBI +@RBSV-JJl¿RBy&1?NNP(\ CC$C?PDTMbX9IN|?5^JJRlڿVBD/$?VBN?VBP(\VBZ rh?RBRK7APRP$"~?DT|?5^?NNPSPnJJSV-?VBG'1ZWP"~?WDTp= ף?CD+?i word matsudaNN&1NNP&1?i-1 tag+i word DT consentualNN&1JJ&1?i-1 tag+i word IN parNNSZd;JJ^I + @NN"~ʿCDV-RB1ZdIN^I +i-2 word imminentVBNV-VBDV-?i-2 word overshadowingWDTK7INK7?i-1 tag+i word RB handleVBv?PRPvi-1 tag+i word VBD shorterJJClJJR%C?RBh|?5޿i-1 tag+i word NNP relaxedJJ$CVBD$C?i word listenersNNPSZd;NNSZd;?i word economicJJT㥛 ?NNQNNP#~j?i-1 tag+i word NNP asVBD+RB ףp= ǿNNPA`"˿INK7A?i+1 word countNNMbPJJJ +CDQ?i+1 word populaceJJCl?NNPCli+1 word squareJJ333333?CD?5^I NNPˡE?NN/$i-1 tag+i word -START- couponNN`"?NNP`"i+1 word sufficientVBG-NNV-?JJ~jti+1 word antelopeNNSʡEJJPn?NNʡEVBDx&1̿i+1 word differentialNNS ףp= JJ ףp= ?i-1 tag+i word JJ leaveVBPjt?NNS333333NNEi word buffettingVBGQݿNNQ?i-1 tag+i word NNP underwritesVBZ-?NNS-˿i-1 tag+i word POS sonataNN{Gz?NNP{Gz i-1 tag+i word -START- afterwardRB#~j?NNP#~jܿi-1 tag+i word JJ difficultiesNN"~jNNS"~j? i word jimCC rhJJClRBENNP~jt@i-1 tag+i word DT doctoralJJ= ףp=?NN= ףp=i-1 tag+i word -START- solvingVBGzG?NNPzGi+1 word outlinesVBZ +NN +?i-1 tag+i word NN straightRB?NN rhVBNv/i-1 tag+i word IN liquidNN?JJ rhNNS~jthi-2 word blessedJJQ?NNQi-1 tag+i word IN randomlyNNSV-׿RB= ףp=?NN{Gzi-1 tag+i word IN perfumeNN"~?FW"~i-1 tag+i word VBZ exemptJJ~jt?RBNbX9VBN r i word enjoysVBZ㥛 @NNVBDZd;Oi-1 tag+i word VBD sillyJJʡE?RBʡEi-2 word otherwiseJJ333333NN333333? i word trickVBx?JJxֿi-1 tag+i word JJ trademarksNNSn?NNni-1 tag+i word DT brokerJJR-NN-?i-1 tag+i word TO despairNNMbX@NNP|?5^VBQi-1 word virginiaNNSNNPS?i+1 suffix senRBMb?NNMbȿVBX9v߿VBPX9v?i-2 word oversoldJJ~jtMDp= ףVB?5^I VBNzG?i-1 tag+i word IN secondJJ(\ȿNN(\?i-1 tag+i word JJ walkVBP+?NN+i-1 tag+i word NN glitterNNS{GzNNS?CDh|?5i word urethraNNPn?JJPni-2 word hackerVBʡEVBG rh?NN rhݿNNPʡE?i-1 tag+i word NNPS thatDTzGҿWDTzG?i+2 word takesRBQINMbX9RPd;OJJK7?NNQ?VBDX9vVBPS㥛WDT rh? i suffix udy VBNy&1̿JJRtVοVBP ףp= ?JJ-VBZffffffNNS(\NNPQ?RBL7A`NN;On?VB(\?i-1 tag+i word VBD curbingVBGQ?NNQ i-1 suffix )VBDl?NN`"?WDT/$?DT/$VBGQRBQFW9v?VBZx&?VBDʡE?VBN}?5^IVBPDl?JJV-INbX9?JJRbX9޿NNSv/NNPli-1 tag+i word JJ inspectionsNNSm?NNmݿi+2 word borenRB9v?JJ9vi-1 tag+i word IN bringVBPCl?VBGCl i+2 word asVBZHzG@RP/$ÿLS5^I ӿRBREJJR!rh@SYMGz?NNP%C?PRP$V-?VBN1ZdӿDTV-POS\(\߿VBS?CDQINK7A2PRPV-ͿNNPS-NNSS?VBG +@VBDw/VBP~jt?WDTˡE?JJ&1@NN +?RBF@CCI +?i+1 word hovnanianNNP +?JJ +޿i+2 word realityNNSZd;?NNP1ZdۿRPʡERBʡE?NN?JJDTQi-1 word acquire CDn?INQ?NNSmRPxNN(\?PRPPnRBʡE?NNPm?JJK7APDTPn?i+1 word menstrualPRP$K7A`PRPK7A`?i word alligatorNN+?RB+i+1 word covenantsNN r?JJq= ףpͿNNP/$i+1 word pickupVBNx޿JJ rNNPCl?i word spreadsJJ/$NNSl?JJR(\NNbX9޿VBZ"~?i-1 tag+i word NN dec.NNd;ONNPd;O?i+1 word altogetherRBZd;OVBGMb?RPZd;O@NNMbVBD rh@VBN rhi-2 word tennesseeVBZ!rhNNSv/?NNP/$i-1 tag+i word DT comparableJJ~jt?NN~jt i-1 word senVBMbX?RBRSNN\(\i-1 word illusionRBn?NNni word agonizeVBZ rVBV-?VBP+i-1 tag+i word PRP$ sisterJJ?NNi-1 tag+i word CC homeNN +?JJ +i+2 word miamiNNSv/?NNv/i+2 word acrossVB?5^I NNx&1?JJ rhi-1 tag+i word -START- groundVBN(\NNzG@NNPq= ףp i word bricksNNS9v?JJ9vi-2 word moderatesVBZS?NNSSi-2 word wrestlesVBGB`"@NNMbXJJ#~j i-1 word singIN?RPi-1 tag+i word PRP declaredVBZ rhVBD rh?i-1 tag+i word EX hungryNNSnJJn?i-1 word rocksRBRh|?5?RBh|?5i-2 word voyagerNNv?NNSvi-1 tag+i word VBG yearningVBGGzNNGz?i+1 word leventhalNNPSffffff?NNPffffffi-1 tag+i word VBN unloadingVBG'1Z?JJ'1Zi+1 word counterclaimsVBGQ?JJQi-1 tag+i word NNP sentencedVBN\(\?VBD\(\i-1 suffix uumNNSSJJRZd;O?NNZd;OVBZS?i+1 suffix ootVBZRQNNSRQ?JJK7A@NNK7VBN9vi-1 tag+i word IN lesserJJRZd;O?RBZd;Oi word associationsNNPSV-NNSV-?i word mistakesRBSX9vNNSX9v?i-1 tag+i word NNS mountainVBP+NN+?i word hearingsNNK7A`RBR|?5^NNSS @JJR&1 i word deadlyJJK @RBK i+1 word improvedVBD)\(?VBN)\(i-1 tag+i word NN immoralJJʡE?NNʡEi word advancingNNPh|?5οVBGʡE?NNףp= i tag+i-2 tag WP$ CCVBSNNS?i-1 tag+i word VBN exaggeratedVBN9vJJ9v@i+1 suffix oroNNw/FWw/?i+1 word somethingVBT㥛 ?NNI +VBPw/?WDTxIN^I +?DTCli+1 word motorsJJQkNNPQk@i+1 word maximumVBGx&1?NNx&1i-1 tag+i word RB reluctantVB ףp= VBPPnJJn?i-1 tag+i word CC lowerVB;On?JJRS?RBRܿi word pretextNN5^I ?JJ5^I ӿi-1 tag+i word DT hitNNSClNN/$@JJuVCDClVBˡEi-1 tag+i word WDT filedVBP\(\VBNV-VBDPn?i-1 tag+i word , foundedVBN +?VBD +i-1 word partsVBNClVBDCl?&i-1 tag+i word -START- interprovincialJJ&1NNP&1?i-1 tag+i word : juniorNNsh|??JJMbNNP/$i word discardVB;On?VBD;On i+2 word bushVBNx&VBZrh| DTClNNSK7A`?RBX9vWDTtVֿJJRd;OVBP;On?JJʡEINm?NNPJ +VB;On?POSZd;O@VBDw/CCZd;O?RPHzGNN;On?i+2 word fullyVBGy&1|?NNy&1|i-2 word foundationNNS(\ؿRB+@VBDvVBNv?CD{GzJJxi-2 word robertsonJJQ?NNQֿi-1 tag+i word NNPS fanVBPˡENNˡE?i word siblingsNNS+?JJ+ i word brickNNSZd;JJSx&NNB`"@JJoʡi-1 tag+i word -START- startedVBNtV?JJZd;VBD rh i-1 word nyeNNPx?NNPSxi-2 word prettyVBD+ۿVBNbX9?JJ/$?VBZRQ?NNSRQVBPnNNS i-2 word unitNNPSˡEVBNn?VBZjt?NNPI +?JJR~jtVBDNbX9пRBRMb?RB|?5^?INx?NNSoʡVBKNN-ƿVBP|?5^JJE?i-1 tag+i word -START- sovietsVBZ)\(NNPS!rh@NNS/$CD+i-1 tag+i word NNP interNNPS"~jNNP"~j?i-2 word spokeswomanJJl?IN"~DT"~@NNjtJJRlCDK7i word subcommitteeNNS~jtNNK7A`@RBX9vVBPA`" i word memoryNNPNNZd;@JJZd;i-1 tag+i word VBZ letsVBZL7A`?JJL7A`i-1 tag+i word DT proceedingVBG^I +NN^I +? i word middayNNT㥛 @JJT㥛 i-1 tag+i word DT litigationJJMbX9NNMbX9?i-1 word skimpyNNS%CNN%C?i word conciliatoryJJq= ףp@NNq= ףpi-2 word infrastructureVBZw/?NNSw/i-1 word emphasisDT/$WDT/$?i-2 word spreadRPv/?RBv/i+1 word truckeeINGz?JJGzi-1 tag+i word PDT hopeVB/$?VBP/$i-2 word tasksVBGPn?NNףp= JJrh|߿VBʡEVBPV-?i-1 tag+i word CC tiltedJJQ?VBDQi-1 tag+i word JJ champagneJJVBD+NNM?i-1 word minutemanNNV-?NNPV-i-1 tag+i word TO insureVB9v?NN9vi-1 tag+i word `` sackJJ^I +NN^I +?i-2 word completed VBGMb?JJS㥛NN rȿVBD{Gz?RBCl?VBS㥛?VBN!rhINB`"NNSJ +?i-1 tag+i word RB seasonedVBNS㥛JJS㥛?i+2 word findingJJp= ףNNP{GzNNS{Gz?VBGT㥛 NN}?5^I?i-1 tag+i word VBZ drawnVBNh|?5?VBh|?5޿ i word albumNNP+NNX9v?JJQi word anecdotalRPv׿JJv?i+2 word treatmentRBx޿NN= ףp=VBNvJJy&1?INx?VBZn?NNSni word rememberMDClVBrh@NN%CVBPCl?JJffffffVBZjtNNPX9vi+2 word especiallyRB +?NNSCD?VBPjt?JJ+NNS$Ci+1 word patricofVB5^I NNP5^I ?i word raciallyRBy&1?NN(\JJbX9i-1 word dismissalVBDMbX?JJMbXi-1 tag+i word `` newlyRBffffff?INffffffi-1 tag+i word ) showsVBZn?NNSClNN i+2 word then VBX9vPRP9v?NNS㥛 ?NNPS|?5^@RB~jt?NN{Gz?VBN/$PRP$9vVBGzG?JJX9vNNPOni+2 word questionsRB-?NN/$NNPS-VBG/$?i+1 word exampleVB/$JJV-?NNSi-1 tag+i word JJ notablyRB/$?JJ/$ i suffix yokVBq= ףpNNP\(\?CCHzGi-1 tag+i word CC vomitingNN333333?VBGffffffNNSi-1 tag+i word NN rivetedVBNQVBDQ?i-1 tag+i word FW andCCQ?NNPQi word witnessNN|?5^NNP|?5^?i tag+i-2 tag JJ NNP NNSZd;O?NNPˡENNPSQ롿VBGv/JJxVBNX9vRB-?VBZ#~jVBtVNN?5^I VBD+?VBP(\?INZd;i+1 word transfersVBK7JJ|?5^?NNCl?i word recountsVBZ(\?NNSV-JJCl i suffix ithVB+NNPSx&ѿNNS+ۿNN+?NNPʡE?i-1 tag+i word VBN trimmedVBNS?JJSi word alaskanJJv@NNPvi-1 tag+i word RB equalJJq= ףp?VBq= ףpݿi-1 suffix alsNN\(\VBD333333@VBPuV@WDTٿDT= ףp=?JJRV-׿VBNv?VBX9v?NNPSnRBMbJJ{GzĿNNSNNPX9vVBG\(\?POS~jtIN!rhVBZˡEi-1 tag+i word VBN castingVBGV-?VBDV-i word acapulcoNNPtV?JJtVi word fundamentalsNNS+?NN+i-1 tag+i word JJ catastrophicJJA`"?NNA`"i-2 word currency VBPˡENNPL7A`VBDCl?RBR5^I ۿJJR5^I ?VBN r?RBѿIN?5^I ?VBy&1JJ9v?i-1 tag+i word VBG storiesVBZHzGNNSHzG?i-1 word minimillVBNMbVBDMb?i-1 word shippingNNSv/?NNy&1JJuVi word packagedVBN%C@JJ%Ci-1 word favoriteVBZ-?NN/$?NNSrh|?VBN+JJ+i-1 word catastrophicNNX9vJJX9v?i-1 word manufacturersVBV-ݿVBPV-?i-1 suffix os.NN㥛 NNP㥛 ? i suffix eilVB%C?NNHzGJJ%CԿFWHzG? i-1 word thus VBZ`"ֿJJZd;ONN/$?VBDA`"VBP"~jINmVBm?VBG= ףp=?RBRMbX9VBN rh?RBL7A`?i+1 word suppressedWDTh|?5?INh|?5i-1 tag+i word DT aftermathNNS~jtNN~jt? i suffix ardNN&1?RBR5^I PRPClIN'1Z @VB&1RPtV?RBjt@VBDRQпJJMb?JJR5^I NNP(\@VBNDl?VBPB`"CDQNNSvNNPSoʡFWA`"JJS+VBZGzi word violenceNN/$@RBFxJJʡE i-1 word ausNNPSQ?NNS`"NNPX9vi+1 word thousandsVBZ333333?VBPx&1VBDh|?5i word broadlyVBPvRBv?i+2 word traditionalRBjtINZd;O@VBZ%C?RPK7?JJlRBRT㥛 VBP ףp= i+1 word appear EXA`"NNSˡEܿNNPZd;ONNPSʡE@VBGףp= RBA`"@NNףp= ?VBPjtJJx&1̿i-1 tag+i word NNS slowedVBD!rh@VBN!rhi-1 tag+i word NNP heightsNNPSDlNNPDl?i-2 word labeledNNuV@JJx&INV-NNPv/NNPSX9v߿RB?5^I i-1 tag+i word TO finishVBI +?NNI + i-1 word givePDTK7ANNPjtPRP$y&1VB$C?RP@NN"~?VBDKJJR;OnINI +RB~jtPRPy&1?DT333333?RBR9vڿJJq= ףp?i-1 tag+i word NN scenarioNNx?VBZlNNSzGi word minimalJJw/@VBN rhNNli-1 tag+i word NNP equipmentNNPZd;O?NNZd;Oݿi+2 word primitivesRBrh|INrh|?i-2 word whose VBZGz?VBDoʡ?VBN9v?NNˡE?VBP"~?RBClNNSy&1NNPʡE?VBGzJJ/$ӿi-2 word determiningVBNףp= ۿJJףp= ?i-1 tag+i word DT motivesNNSK7A?NNK7Ai-2 word quebecNNV-?JJV-RBmINm? i word fileNNS;OnVBGz@RBnNNV- @RBSVBP(\?JJ-VBZ$Ci-1 tag+i word NNP seminarVBV-NNV-?i+2 word stemmingNNS!rh?NN!rhi+1 word affordRBRRQRBRQ?i+1 word runnersVBNPnVBDPn?i word utteredJJ/$VBD/$?i word dolledupVBPʡEƿVBNmݿJJ{Gz?i-1 tag+i word JJ vs.NN;OnFW;On?i-1 tag+i word RB providedVBNʡE?JJʡEi-1 word ministryVBZI +VBPV-NNSX9v?VBDX9vi-1 word gruffNNCl?RBCli-2 word employedNNS +NNP +?i-1 tag+i word WRB travelingVBG rh?NNP rhi-1 tag+i word NN persuadingVBG`"?NN`"޿ i word wickedJJ?VBNi+2 word vanityJJ\(\?RB\(\i+2 word flameNNv?JJvi-2 word speaksNN1ZdۿNNP1Zd? i+1 suffix gmVBG5^I ?JJ`"NNٿWDT|?5^RBS㥛ԿIN|?5^?i-1 tag+i word NNP launchesRB~jtVBZ~jt?i+1 suffix mniVBPuVVBGuV?NNVBD?i+2 word harmfulNN~jt?JJ~jti-1 tag+i word NNS punishableVBN(\JJ(\?i-1 word developJJ/$?RBR-?NNP/$JJR-i-1 tag+i word CC makingVBGCl?NNCl i+1 word %CDZd;O@NNS$CJJ7A`NNPV-i-1 tag+i word JJ worthNNB`"۹?JJS?INzGi-1 word frankingVBNʡENNʡE? i-1 word glibJJ`"?NN`"ֿi-2 word afternoonRPˡERBX9v?INli tag+i-2 tag . RBJJm?NNPmͿi+1 word disastersJJMINM?i+2 word jurisdictionNNPV-NNV-?i-2 word revcoNNv?JJvi-1 tag+i word CC restructureVB(\?NN(\i-1 tag+i word TO ballooningVBGuVNNPn@VB{Gzi-2 word makesVBy&1@RBRMbX9?VBN/$?RB1ZdJJRX9v@NNPtV?NNPS9vJJrh|@FWCl''Q?NN%C VBD^I +POS rhNNSˡE?VBPx&1EX|?5^?VBZX9v޿ i suffix sasNNPQNNS/$@RB#~ji-1 word lieutenantsVBP%CVBN1ZdӿVBD= ףp=?i+1 word power JJR`"?RBRʡERBmNNS1ZdNNP9v?VB)\(VBG^I +@VBDA`"DT%C?JJK7@NN/$IN%C i+2 word slidJJp= ף?NNp= ףi-1 tag+i word PRP cadgeVBPFx?NNFxi+2 word holligerNN|?5^?JJ|?5^ i word hostsVBZX9v?VBX9vNNSQ?JJQi-1 tag+i word VBG limitedVBNMbпJJS?VBDi word psychologicalVB rhJJ}?5^I?NN5^I i-1 tag+i word VBG reformsNNS+?RB+i-1 tag+i word VBZ fujisNNP{GzNNPS{Gz?i-1 tag+i word WRB inheritedVBNh|?5?VBDh|?5i-1 tag+i word DT comicNN ףp= ?RB/$JJV-? i suffix rdaNNPSNN-JJB`"NNP rh@ i suffix ild VBD rhUH= ףp=RBB`"ɿINI +VBZ +VB/$@JJ +@NN-VBPMb?NNS%CNNPGz޿ i suffix orn NNtNNSʡEJJ333333@FWClVBN&1\ @RBvVBZ㥛 NNPNbX9VBS㥛i-1 tag+i word PRP imperativeJJGz?VBGzο i+1 word postDTS?PRP$|?5^?RB|?5^NNx&1JJx&1?INSi+1 suffix ebtNN5^I RBRd;OJJRK?RPK7?RB`"οVBGB`"?DT/$?VBDZd;VBN"~jWDTQVBX9vJJA`"@INx&1VBP +?NNSʡENNPX9vi+2 word mathematicsJJRQ?RBRQi+2 word adjustersVBNx&JJx&?i+2 word fundedNNJ +?JJJ +i-1 tag+i word POS europeanNNSffffffJJMb@NNP rhi-1 tag+i word , witnessesVBZZd;NNSZd;?i+2 word interferesNNV-?VBV- i word auntVBPHzGNNPHzG?i-1 tag+i word IN richesNNSS?NNSi-1 tag+i word `` backingJJK7VBGK7?i+2 word pennsylvaniaNNSS?NNGz?JJGzVBNSi word michelangelosNNPSS?NNPSi-2 word nosesJJ'1Z?NN'1Zi-1 tag+i word IN thereEXrh|?RBx&JJMbXi+1 word inhabitedNNPSZd;OݿNNPZd;O? i suffix :35CD ףp= ?NNP ףp= ׿i-1 tag+i word CD settlingVBG#~jNNA`"?JJOnӿi+1 word slumpVBNCl˿JJA`"@NNS㥛i-1 tag+i word NNP regulateVBPn?VBPClNN rh i-2 word hugoVBZMbX9NNS-?JJZd;O?RB= ףp=NNPCl߿ i-2 word done JJRjtRBRjt?JJ333333VBsh|??RBMbXNNHzG?VBPsh|?INZd;ODTffffff? i suffix tekNNPSSۿNNPS?i-1 tag+i word NNP peoplesNNPSZd;O?NNSv/?RBv/NNPZd;Oi-1 tag+i word DT hauntingVBGGzNNGz?i-2 word reformerNN%C@JJ%Ci-1 tag+i word NN personnelNNSV-?NNV-i-1 tag+i word VBG ourselvesRP#~jNNS|?5^PRPZd;?i word findingVBGRQ?NN ףp= JJRQNNP)\(@i-1 tag+i word , laysVBZ?NNSi-1 tag+i word CC duskNN+?JJ+!i-1 tag+i word -START- recreationNN rh?JJK7ٿNNP/$i+2 word realismJJm?NNPmi-2 word establishmentJJX9vVBD%C?VBNMbXi+1 word supermarketVBNOn?JJOnINV-VBPjt@NNv/i-1 tag+i word VBN kabulRBK7A`NNPK7A`?i-1 tag+i word RB objectVBL7A`?JJL7A`i-1 tag+i word NNP expectVBZ$CVB-VBPQ?i-1 tag+i word VBD veryDT+RB+? i suffix how CD/$޿VBPV-@JJ^I + VBZ$CDT+RBK7A@NNQ@VBNw/NNSI + NNPMbXɿVBʡE?VBDSi-1 tag+i word TO raisingVBG rh?NNX9vVBvi-2 word hostedNN+?JJ+i-1 tag+i word DT orwellianJJENNPE? i word phasedVBN`"VBD`"@i-1 tag+i word CC sighsNNSDl?NNDli-2 word foleyJJHzGNNHzG?i-1 tag+i word NN coveredVBNffffff?NNGzVBDS?i+2 word illustratesPDTʡE?NNPSA`"NNPA`"?DTʡEi+1 word riotsVBG/$?NN/$i-1 tag+i word TO waiveVBjt?JJjtֿi-1 word transylvaniaNNS;OnNN;On? i word voicesVBP%CVBZ%C?NNPS"~jܿNNSJ +?NNP+i+1 word railsNNPMb?JJMb i-2 word tenRB+@IN+i-1 tag+i word DT suitorNNv?JJvi+2 word updatingJJm?VBNmi+2 word purchasingNNoʡ?VBNMb@JJMbINbX9?VBGoʡRBbX9i-1 word approvalRB&1?IN&1i+1 word distributerJJRJ +JJJ +? i suffix evyNN= ףp=?NNPCl?VBZ= ףp=VBjt?JJi-1 tag+i word CD professesVBZS?NNSSi-1 tag+i word RB livedVBNEVBDE@i-1 tag+i word CD proceedingsNNS!rh?RB!rhԿi-1 tag+i word DT counterNNP(\?NNPS(\NN{GztJJR333333ۿJJQ?i-1 word lidgerwoodVBZʡE?NNSʡEi-1 tag+i word JJ railwayJJ/$NN/$?i-1 word rebutVBN'1ZJJ'1Z?i-2 word toiletriesNN333333?JJ333333i-1 tag+i word POS autonomyNN?5^I ?NNS?5^I i-1 tag+i word VBD intactNN㥛 ڿVBMJJ+?i word specificVBNʡEJJRI +RB`"NNS!rhNNP(\VBB`"JJ㥛 @NNGzi+1 suffix omyNNzGVBD"~JJSL7A`ؿJJR?VBN rhJJQ?NNPbX9VBGMbX9 @i word gatheredVBNI +?JJQVBDX9vi tag+i-2 tag WRB ''VBOn?VBPOni word patrickDTB`"NN%CNNP333333? i word oxNNMbX9?NNSMbX9i-1 tag+i word TO strengthenVBZd;O?PDTZd;Oi-2 word dynamicsINl?FWli word breunersNNS㥛 NNP㥛 ?i word slumpedVBNjtVBDjt?i+1 word payrollDT)\(NNP)\(@i+2 word helpernNNn?JJni+1 word early DTQ?NNSB`"?NNP1ZdVBv?VBGNbX9JJtVVBDv?INy&1NNPSV-NNx&1VBN/$?RBB`"@i-1 tag+i word VBN worriedVBNh|?5?JJh|?5οi word waterfrontNNS'1ZܿNN'1Z?i+2 word rickeyNNDl?RBDli tag+i-2 tag JJ (RBT㥛 NN?JJRJ +VBPx&1?JJ~jt?NNPi-1 tag+i word POS lushJJS?NNSi-1 tag+i word , figuresVBZh|?5?VBDh|?5i-1 tag+i word NNP marketNNrh|߿NNPrh|?i-2 word sessionsJJnDTn?VBGzNN%CVBDZd;O?i-2 word agreement NN`"?VBN/$?JJ(\NNPSÿNNPSˡE?RB㥛 ?VBD/$CD+IN?5^I NNSV-¿VBʡE?i+1 word feelingNNjtJJRjt?i+1 word turnsWDT ףp= ?JJV-RBMbX?DT ףp= NNS?i-1 word heardVBNd;ORP9vVBZ7A`?IN9v?NNS ףp= i-1 tag+i word RB streamliningNN'1ZVBG'1Z?i+1 word remarksVBZuVJJ= ףp=NNSMbX?POSuV?NN ri+2 word office JJSNNQFW9v?VBN~jtRB/$VBZRQNNPSPnVBG%CNNP`"@VBl@NNSRQ?i+2 word gainedNNPM@NNPSK7ANNKCD ףp= ?VBP&1ڿJJʡEi+1 word pannedVBClӿVBPCl?i-1 tag+i word VBZ quotationVBPQNNʡE?JJMbPi-1 tag+i word TO starVBMb?NNMbi-1 tag+i word ) developVB(\?VBPtVNNP rhݿ i suffix 20sNNSjtNNS@JJ rCDK7Aؿi-1 tag+i word TO retailVBMJJM?i-2 word avoidingVBN?5^I ?VBD?5^I ҿi word chateauVBPˡEԿNNZd;?VBD+ i word laveryNN^I +NNP^I +?i-1 tag+i word DT pickNN/$?JJ/$ i word versusRBK7A`NNV-INMbX?i+1 word bernerNNS㥛NNPS㥛?i-1 tag+i word JJ arrayNN^I +?JJ^I +i-1 tag+i word NN disagreesVBZM?NNSv/RB1Zdi-1 tag+i word CD directNN~jtJJ~jt?i-1 tag+i word VBP puzzledVBN-?JJ-ۿ i word alone VBNx&ٿCDDlVBPClNNSK7RPrh|JJS@NNZd{!RBK7%@VBZ= ףp=i+1 suffix araNNd;O?JJ#~jVBNi-1 tag+i word VBD toldVBNffffff@EXv/JJMbVBGK׿NNxVBD^I +ǿi+1 word curbingIN`"?VBNI +RB`"VBDI +?i-1 tag+i word NNP retailJJ= ףp=?NN= ףp=i-1 tag+i word VBP supposedVBNp= ף?JJp= ףпi word bulldozerNNS㥛?JJS㥛 i word rottenJJp= ף?JJRh|?5NNy&1ԿFW#~ji word unfilledNNPMVBN~jtJJOn?VBDMi-2 word watchersNNPSKJJ/$?NNPˡEi-1 tag+i word NNS regulatorsVBPp= ףNNSp= ף?i+1 suffix auxFWS?NNS;OnNNPx&1i+1 word soundJJCl?NN)\(NNP"~j?i+2 word services JJK7A`INoʡ?DTX9vNNSRQVBA`"VBDPDT"~j?NNP;On?VBGS?NNoʡ@VBP\(\@i-2 word improvingVBG?JJ̿ i-1 tag+i word DT appropriationsNNPSJ +@NNPJ +i-1 tag+i word VBP intentVBGh|?5JJ-?NNʡEƿi-1 tag+i word DT concernedNN-VBNl?JJ/$i-1 tag+i word NNP rallyNNv?RBDlVBPQ?i+2 word koreanNNM?JJKNNPK7A?i-1 tag+i word : letterNN +?NNP +i+2 word stemmedDTˡE@NNZd;O?JJZd;OINˡEi-2 word challengedVBNGz?JJGz޿ i-2 word roseJJˡE @NNX9vVBNK7A`ݿRBlVBZ/$NNS1Zd?i+1 word freedVBK7A`VBDK7A`?WDTrh|?INrh|i-2 word conjunctionNNS"~jJJ"~j?i-1 word depletedJJQ?INQi-1 tag+i word RB undergoneVBNjt?CDjt i suffix ago IN^I @RBoʡ@VBDGzVBN5^I JJmNNPy&1RPʡENNʡEVBP~jtNNSףp= i-1 tag+i word -START- nihonNN-JJh|?5NNP%C?i+1 word needsRB/$?NNp= ף?JJ{GzNNP/$i word receivingJJ(\ҿVBGX9vοNNL7A`?i+2 word financiereNNX9vVBNS?JJi-1 tag+i word `` looksVBZQ?JJQi-1 tag+i word CC pottedJJl?VBDGzVBN"~jܿi-1 tag+i word NN lugsNNS +?NN + i suffix 7.1CDZd;?NNPZd;Ͽi-1 tag+i word IN workerNNK7?NNPK7 i+1 word jrJJnNNPn?i+1 word scriptwritersJJ/$?NN/$ٿ i+2 word dryJJQ?NNQNNP+?VB+i-1 suffix besRBx&INx&?i-1 tag+i word POS pledgeNNSZd;OݿNNZd;O?i-2 word undermineVBZ/$VB/$?NN;On?NNP;Oni-1 tag+i word NN pendingJJ ףp= INd;O@VBGGzNNGzi+1 word spokesmanDTCl?NNP;On @NNPS"~jNNK7AJJR rh?JJK7i word discussVBCl?VBDCli word borrowingsNNPV-NNSCl?VBDli-1 tag+i word `` trafficVBx&1NNw/?NNPw/i-2 word groundVBD+VBG+?JJMRBX9vϿINʡE?i-1 word andersonNNPSx?NNPxi-1 word untappedNN-?NNS-i-2 word bachmannVBG!rh?NN!rh i+2 word estNNPB`"CDI +@NNSx&1NN rhJJK7A` i+2 word long NNSMb @NNPGzVBQ?NNV-VBD+?VBN!rhINh|?5?RPI +RBK7A`?VBPClJJI +i word meredithNNPSx&ѿNNPx&? i suffix btsNNSsh|?@MDV-RB"~jNN/$VBDx&JJGzIN9vVBZ&1?i+1 word pilotsNNPS"~NN\(\?JJoʡտIN|?5^?DT|?5^ɿNNSL7A`NNPV-?VBCl i-1 word rapeNNS rhNN rh?i-1 word sleekNNK@VBN|?5^JJ|?5^ i-1 word lacNNPSX9vϿNNPX9v?i-1 tag+i word PRP$ rolodexesNNPB`"NNPS}?5^I?NNSQ i suffix irm VBD+NNS^I +NNPSJJK7?NNS㥛@VBNK7AVBPNbX9?RB%CVBZvVBZd;O?PDTjti-1 tag+i word DT latinJJK?NNPK i-1 word feetRP|?5^RBmͿJJl?IN;On?VBDp= ף?i+2 word originationsJJ rhѿVBDn?VBZnNN rh?i word hiroshimaNNPMb@DTv߿WRBNNCli+1 word meaningJJJ +?NN!rhԿINʡE i suffix ireNNPFx?VBp= ף@RBMbX9NN+@INrh|FW/$WDT+JJ^I +MD-ۿVBDʡE޿NNSy&1VBG-VBNZd;OVBPCl @i-1 tag+i word IN americanJJ-?NNP- i+1 word neilNN!rh?JJ!rh̿ i word handsVBZ!rhNNSʡE?NNV-i-1 word blankNNS?NNi-1 tag+i word JJ dealJJX9vNNX9v?i-1 tag+i word NNS estimatedVBPtVVBNd;O?JJ-?VBD/$i-1 tag+i word DT meetingJJZd;VBG?5^I NN5^I @i-1 word powersVBN-?RBOnVBD= ףp=i+1 word gesturesNNT㥛 JJT㥛 @ i word morrowNNoʡ?CDoʡi+2 word anymoreVBDClNNGz?RB ףp= ?JJʡE?IN ףp= i-1 tag+i word -START- armIN&1NN9v?RBClNNP&1 i+2 word gunsNN-JJMbX9ĿNNPMbX9?VB?VBPSӿi-1 tag+i word IN substanceVB(\NN(\?i-2 word dealingsJJ'1Z?RB'1Zi+1 suffix olnVBD ףp= ?JJ ףp= i-1 tag+i word `` makingVBG?JJi-1 tag+i word IN interbankNN'1Z?JJ333333ÿNNPZd;i word respondentsNNPSGzNNSGz?i word adoptingVBGS㥛?JJ-NNL7A`尿i word bernardNNP= ףp=?NN= ףp=i-1 tag+i word DT suitNNZd;?JJZd;i+2 word marlinNN/$?RB/$տi+1 word kilometersJJ}?5^I?NN}?5^Ii-2 word digitalNNPףp= VBB`"VBPʡE?NNB`"?JJX9v׿i-2 word mitesNNSh|?5NNh|?5?i-1 tag+i word DT vendettaJJGzNNGz? i suffix quaNNGzNNPGz?i-1 tag+i word DT nailNNK7A?RBK7A i word unfairJJ㥛 @NN㥛 i-1 tag+i word NNP confidentVBP+JJ333333?NN9vi word resentmentNNPn?JJPni word roxboroNNP㥛 ?NN㥛 i+1 word mountaintopJJ rh?NN rhͿi tag+i-2 tag VBD FWDTS㥛VBGʡE?JJʡEINS㥛?i word sufficientJJn@VBq= ףpVBNV-NNA`"i word heritageNN7A`¿NNP7A`?i word attractingNN1ZdVBG)\(@JJ9vi-1 tag+i word NN radzyminNNPSjtNNPjt? i-1 tag VBPDT(\?POSSPDTPn?FWQWDTףp= ?WPZd;ONNP ףp= RBRVBDSNNPSx&1JJR!rh?NNS(\?EXbX9?INS?VBZʡERP+?VBX9vϿCCHzGPRPQ?RB{Gz?RBS~jt?VBGK@VBNFx @VBPK7A`NNˡETO㥛 ?JJ#~j?CD333333?JJS?UHQ?i-1 tag+i word EX overRPClINCl?i-1 tag+i word JJ routesNNSzG?NNzGҿi word sovereignJJ~jt?NN~jti-1 tag+i word VBP cynicalJJ333333?NN333333i-1 tag+i word VBD borneVBN$C?JJ$Cۿi+2 word gasolineVBGˡE?JJˡEi-1 tag+i word VBP strongerJJRX9v?NNX9vοi word explanatoryJJ&1?NN&1i+2 word engagedNNtV?JJtVοi-2 word applied NNPSX9v?CC rh@PDTFxPRPV-JJJ +?DTʡEVB|?5^PRP$V-?NNPX9vi word experienceNNCl?RB^I +JJjtNNP333333VBK7?i-1 tag+i word VBG rivetedVBN= ףp=VBD= ףp=?i-1 tag+i word -START- hadVBDCl?WRBMbXINX9vi+1 word bancoDT|?5^IN|?5^?i-1 tag+i word VBD fadingVBGOnJJOn?i-1 word unconsolidatedJJDl?NNDl i+1 word debtRPK7?NN5^I VBDZd;INx&1VBP +?RB`"οJJRK?VBGB`"?DT/$?RBRd;OVBN"~jWDTQNNPX9vVBX9vJJA`"@NNSʡEi+2 word paintedJJK7A?VBPw/JJR?5^I ڿNNˡEi-1 tag+i word NNS pushedVBN-?RBףp= VBDCl׿i-2 word brazenRPZd;O?INZd;Oi word bullhornsNNSʡE?NNʡEֿi+1 word existingVBZuV?NNSuVVB7A`?NNRBZd;OINn i-1 word ddNNtVֿNNPtV?i-1 tag+i word RB momNNT㥛 ?JJT㥛 пi-1 tag+i word VBD lincolnNNPCl?NNClɿi+2 word consultantsVBZ&1ڿNNPS`"NN rh?NNP9v?i-2 word earthyVBGףp= JJףp= ?i-1 tag+i word IN extensionNNx?RBxi+1 suffix usxVB(\VBGffffff?RB-޿NNffffffWDTK7AJJ+?INOn?NNP+i-1 tag+i word RB listeningVBGףp= ?JJףp= i word discerningJJʡE?VBGʡEi-1 tag+i word DT mathNN-?JJ-i+2 word executionsIN+VBG/$?NN}?5^IܿJJB`"ѿi+1 word foothillsJJS?VBNSi-1 tag+i word `` dumbJJˡE?RBˡEi-1 tag+i word DT lightningNN$C?JJ$Ci+1 word perrierNN\(\NNP\(\?i+2 word france VBmVBD +JJx&1@VBZ/$NNPd;O?NN㥛 VBN rh?INSNNS/$? i word foodNNK?JJQNNP-?i-2 word overstateJJ;On?RB;Oni-1 word producerVBGMb?NNMbi-1 tag+i word DT workJJSoʡNNL7A`@JJ`"޿VBPX9vi-2 word fearsomeNNS+?JJ+i-1 tag+i word -START- ratnersNNPHzG@NNPS{GzԿNNSQi word industrialsVBZ㥛 NNS7A`?VBDl i word brokerJJR-NN-?i+2 word possibilitiesRBSQ?JJSQi-1 word revitalizedNNS?VBNi-1 word johnsonVBZA`"?NNSvPRPx&1?VBDx&1i-2 word accommodateVBNGzJJGz? i word restsVBZMb?NNSMbi word variableNN-?JJ-i-1 tag+i word NNP allowedVBN9vVBD9v?i-1 suffix yanNNOn?NNPOnۿi-1 tag+i word VBG attackedVBNB`"?VBDB`"i+1 word information VBPn?RBx&1IN"~jNNS+NNPClJJK7?VBDMVBN㥛 @JJRMbDTl?VBS?VBG+?NN/$?i+2 word stableNN$CJJ$C?i-1 word monthlyVBPMbJJffffff VBZ`"NNS333333 @NNPS`"NN-@i+2 word mysteryVBZQ?VBDQi-1 tag+i word , victorNNHzGNNPHzG?i+1 word imeldaIN(\?DT(\i-1 tag+i word JJ remainsVBZ-?JJ-i+1 word experimentalVBN'1ZVBD'1Z?i+1 word buriedNNK?VBDX9v?VBZRBSJJRKi-1 tag+i word NNP ceremonyVBDMbпNNMb? i-1 tag+i word -START- frederickJJB`"۹NNPB`"۹?i-1 tag+i word NN namedNNClVBNjt@JJQVBD= ףp=i tag+i-2 tag : NNSVBN"~?WDTZd;IN/$NNPSX9vVBD/$?VBPuVJJSDTGz?NNS{GzRB&1?JJSV-?NN{GzRBSV-PDTMbX9CDX9v?VBG~jt?NNP/$@VB'1Z?WRBSVBZp= ף?i-1 tag+i word VBZ ascendingVBG/$?JJ/$i+1 word reasonDTV-?NNHzGJJ+?RB`"VBNx&1Կi-2 word anthraxIN~jtWDT~jt?i-1 tag+i word DT offRP+?JJ+i-2 word rebutNNS+?NN+߿i-1 suffix hiaNNSV-NNV-? i+2 word suitVBZsh|?VBHzGVBD +@POSsh|??VBNuV i+1 word sonNNQNNPPRP$?VBNS㥛JJ +?i+1 word paralyzedRPS?RBSi+2 word makerJJ?NNSq= ףpNNP ףp= NNPSZd;OVBGʡENNV-@JJS?i-1 tag+i word DT racketeeringNN!rh?JJ!rh i+1 word markNNPS\(\NNQVBDV-@VBNMڿJJ rh?NNP+i+1 word lambertJJvNNPv?i-1 tag+i word NN avoidanceNNS)\(NN)\(?i+1 word sprinklesJJSK7A`NN&1?JJZd;O i word zavesNNS%CNNP%C?i word revenuesNNPSh|?5VBPMbRBʡEVBZB`"NNSQ @NNP/$޿ i-1 word hugoVBZ\(\VBDMb@NN(\NNPS㥛 i-1 word diedRBZd;O?NNZd;Oi-2 word spielvogelNNPS\(\NNP\(\?i-1 tag+i word NNP satelliteJJ~jtNN~jt? i word lawfulJJ1Zd?NN1Zdi-1 tag+i word NNP staffersVBZMڿNNSM?i-1 word bullishNNbX9?RBbX9i-1 tag+i word TO warrantVB?JJ i+2 word lawRPn?VBNx&1?VBPOn?JJ{GzNNPS$CCCjt@DT-?NNPʡE?VBZV-@VB ףp= ?NNClVBDV-NNSQIN-VBGZd;O? i+1 suffix me VBDL7A`?VBN rhٿNNP{GzVBS㥛 @RP;OnJJSNNffffffFWsh|??VBPp= ףRB rhINB`"@i-1 tag+i word IN designNN333333NNP333333?i-1 tag+i word DT comparesVBZZd;O?NNSZd;Oi-2 word dunkinNNSuVNNPuV?i-1 tag+i word VBD chiefNNP{Gz?NN rh?JJZd; i suffix aneVBDVBN!rhJJzGNNSJ +NNPS@VBJ +RBNNET@i-1 suffix nyoNNPV-?NNPSV- i word tbondNNPnJJQ@NNMbi+2 word recommendNNffffffVBNʡE?JJˡEi-2 word strugglingDTd;OINd;O?i-1 tag+i word VBP developedVBN|?5^?VBD|?5^i-1 word selectedJJmտCDx&1NNFx?i+1 word contrastVBNEȿJJ rh?VBDMbX9i-1 tag+i word VBZ feelingVBGʡE?JJʡE i suffix -ofJJ?NNѿi word hypoglycemiaNNSNbX9NNCl@JJNbX9VB)\( i suffix GIPNNPV-?NNSzGJJ'1Zi+1 word arrangedRB+?JJ+i word whirlwindJJV-?FWV-i-1 tag+i word IN upscaleNNv?JJvi-1 tag+i word IN recordkeepingVBGnNNn?i-1 tag+i word NNP goldbergRBV-NNPV-?i-1 tag+i word POS marketNNjt?NNPjti-1 tag+i word PRP$ leveragedVBN5^I @JJ-NNT㥛 i suffix setNNPS'1ZPDT~jtVBPOn?NNSRP= ףp=VBZ|?5^VB|?5^ @VBD{Gz@VBNxf#@INQRB㥛 NN%C̿JJ"~j NNP+ǿi-1 tag+i word CC leaseVBy&1VBPv/?NNV-i-1 tag+i word DT vacancyNNףp= ?JJףp= i-1 tag+i word -START- industryNN(\@NNP(\i-1 tag+i word RB cancelsVBZT㥛 ?VBP rhNNSʡE i suffix palNNPjt?VBnNNףp= POSnSYMtVVBNbX9JJQ@NNS"~i-1 tag+i word JJ wranglingNN?VBGi-1 word designersVBP~jt?VBD~jti-1 tag+i word NNP croweNNPST㥛 NNPT㥛 ?i-1 tag+i word MD hadVBPnVBN)\(?VBD+i-1 word reflectsVBZ-ӿNNPx&1?NNS-?NNQſVBG~jti word entirelyVBNףp= RBףp= ?i+2 word pharmaciesJJR/$NN/$? i-1 tag+i word -START- elizabethJJHzGNNPHzG?i+2 word plants INjtԿVBZV-RBDl?NN/$VBP$CNNSV-?NNPrh|?VBDlٿVBGV-JJzG@i+1 word previousVBPףp= ?NNףp= i-2 word tightJJ+NNP+?i word circulateVBP!rh?NN/$VBS㥛?i word attractiveVBZd;OVBP"~JJnJ@NNOni+1 word dystopiaNN}?5^I?JJ}?5^Ii-1 tag+i word DT chiracJJ/$NNP/$? i word organsNNSV-?RPV-i-1 tag+i word -START- usPRP)\(?NNP)\(i-1 suffix eam VBP7A`JJy&1 RBK@NNʡE@VBD?VBNvϿINGz?NNSGzVB7A`?RP/$i+1 word guidelinesVBP!rh?NNQJJjtVBNm?i+1 word everybodyVBl?DT#~jRBlIN#~j?i-1 tag+i word NNP resortsNNPX9vNNPSX9v?i-2 word attemptVBHzGNNv?RB7A`?JJ9vi+1 word close NNSMbXɿJJClٿNNx&1POSq= ףp?INx&1VBZv?VBQVBG/$?VBNQ?PRPq= ףpݿRBx&1?i-1 tag+i word VB appointedVBNV-?JJV-i-1 tag+i word CC stoneNNSX9vVBN ףp= NNMbX?i-1 tag+i word DT giddyJJʡE?NNʡEi tag+i-2 tag IN DT INS㥛DTGz?NNPx&ٿVBGn?NN%CJJWDT/$ֿNNSI +ƿNNPSFxRBˡE?VBPv?i+1 word accountVBGX9v?JJK7A`?NNB`"۹RBMNNSFxNNPy&1̿i-1 tag+i word POS standRBA`"VBP%C?NNS?5^I NNZd; i+1 word cfcsNNSzGJJzG?i+1 word unpreparedRP#~jRB#~j?i word transcriptsVBClӿNNSMbX9?NN"~i-1 tag+i word -START- carterNN)\(NNP)\(?i-1 tag+i word IN offsettingVBG(\?JJ(\i-1 tag+i word NNP tomashNNZd;NNPZd;?i-1 tag+i word NNP looseleafPOS^I +NN ףp= ?NNPxi+2 word choppyRBh|?5޿RPh|?5?i+1 word carriedWDTtV?INtV޿NNS/$?NNPS/$ i suffix saw VBZrh|NNS(\ؿNNPZd;@VBHzGRB&1VBDM@PDTʡEVBPv/ JJ;OnڿNNQֿi-1 word maureenNNSQNNPQ?i word cheeringVBGp= ף?NNp= ףпi-1 tag+i word TO departVBQ?NNQſi word upscaleNN#~jJJ#~j?i-1 tag+i word TO testVBFx?JJSL7A`NN?5^I i word pointesNNPS/$NNSnNNP{Gz@i word profitablyNNSX9vRBX9v?i-1 tag+i word CC myselfPRPQ?NNQ i word submitNN1ZdVB1Zd?i-1 tag+i word -START- topazNN?5^I ҿNNP?5^I ? i-2 word fVBZjt?NNPjti-1 tag+i word JJ filmsNNKJJKNNSK?i-1 tag+i word WRB braziliansNNP-NNPSw/NNSX9v?i-1 tag+i word VBG cocaNNK7A?JJK7Ai word animalsNNSX9v?NN+NNPSףp= ÿi-1 tag+i word NNP aeternaNNoʡFWoʡ?i word hospitalsNNPSxNNSx?i+1 word qualityVBGV-JJZd;NNjtԿJJRX9v?VBPQ@RB+߿IN+?VBV- i suffix 6.5NN1ZdۿCD1Zd? i-1 word bitJJffffff@JJRbX9ȶ?NNJ +VBNRBRuV?i-1 tag+i word NNP manNNPSw/NNn@NNP~jti word ginsengVBZd;ONNZd;O@i-2 word savoringJJCl?NNCli-1 tag+i word , delayedVBN~jtJJ~jt?i-1 tag+i word IN stalinismNN%CNNP%C?i-1 tag+i word `` riverNNL7A`?NNPL7A`i+1 word setupNN-JJ-?i-1 word clarinetNN#~j?CD#~jԿi-1 tag+i word , provingVBG/$?NN/$ֿi-1 tag+i word DT receivableNN/$?JJ/$i-2 word october JJ$C?VBDn?RP rhIN +VBNnRBRd;OVBPMbRBT㥛 ?JJRd;O?NNSZd;O@NNK7A`NNPSi-1 tag+i word NN remainsNNS= ףp=VBZ= ףp=?i word threatenIN rhVB/$?JJFx i suffix onaNN?5^I NNP?5^I ?i-1 tag+i word RB semiconductorNNl?RBli tag+i-2 tag DT CCVBN'1ZĿWDTK7A`?NNPS?RBd;O?NNP"~ʿRBRZd;CDCl?INuVFW{Gz?JJ?VBZl?JJSL7A`?VBDI +?NNS$CJJR'1ZVBPS㥛DTp= ףNNMbRBS-VBG&1ҿRP+?PRPʡEi+1 word changedINCl?DTZd;OWDTrh|ϿRBGz@JJGzi word fantasizeVBX9vVBP?NNSmi-2 word advisedINn?WDTnڿi-1 tag+i word NNP councilNNP-?MD&1NN333333i-1 word beatriceJJV-?NNV-RBl?i-1 tag+i word VB blankNNS{GzJJ{Gz? i word exileVBPB`"NN^I +@VBN(\¿JJI +CDSi-1 tag+i word `` settleVB+@VBPSJJHzGNNPx&1i-1 word universityVBZKVBPʡENNCl?VBD(\?i+1 suffix ropVBGHzGRB@NN|?5^VBN-?CDZd;O?JJ1Zd?JJRlҿNNSMbXi-2 word boardsCCV-PDTJ +VBNʡE?CDZd;@JJʡEDTE i word ddVBtVֿJJT㥛 NNP|?5^?i word sorghumRBMbXѿNNMbX?i-1 tag+i word CC shoesVB/$NNS/$? i word radarNNS/$NNh|?5@JJS"i-1 tag+i word -START- nervousnessCCףp= NNffffff?NNP(\i-1 tag+i word VBN moreVBPJJRrh|@RB +RBR"~j̿ i+1 word mailJJrh| @VBPJJRףp= ?NNrh| RBRCl߿i-1 word badlyRB~jt?NNPS~jtVBNV-?JJKVBDy&1?i-1 tag+i word NNS eggsVBPh|?5NNSh|?5?i-1 word repelRBSq= ףp?JJSq= ףpi+2 word dreyfusVBDNbX9VBZNbX9? i word chewedVBN)\(VBD)\(?i-1 tag+i word VBD existVB#~jVBP#~j?i word pressureFWMbXCDJJClNNS/$VBV-?NN!rhm@i-1 word pragmaticRBh|?5INh|?5? i+1 word w.j.VBD?VBNi-1 tag+i word DT westJJzGڿNNPffffffNNPSX9vοNNC@JJSffffffVBNGzWDTuVi-1 word injuryWDTKJJA`"IN-DTʡE@NNPA`"?i+2 word bargainVBG~jt?NN~jti-1 word disqualifiedRBClINCl?i-1 word insurance NNSq= ףp?NNP%CԿNNw/?VBD(\VBPףp= JJPnINtVVBZ+?NNPS%C? i word faredVBDMb?VBNMbi-1 tag+i word DT objectiveNNOn?JJOni-1 tag+i word VB monitoredVBNjt?JJjti-1 tag+i word -START- samMD%CNNP%C?i-1 word cleansRP|?5^?IN|?5^i word identityNNS?JJSi word operatorsNNSQ?NN-VBZv/i word unlocksVBZMb?VBDMb i-2 word ruleNNX9v?VBDV-?VBN rhJJxIN-?NNS)\(RP= ףp=RBQ@i-1 word rewardingCCrh|?RBrh|i word fastballNNCl?JJClVBPCl i word barsNNV-VBZK7A`NNSK7?i-1 tag+i word DT picturesquelyRBQ?JJQi-1 tag+i word , gruesomeVBy&1JJ(\?RB + i word legacyJJQNNQ?i+1 word pressesJJPn@NNPni-1 tag+i word VBP fixedVBNv/?JJv/i word squanderedVBNCl?JJCli+1 word acceptingRB;OnIN;On?i-2 word countertopVBZB`"?NNSB`"i+2 word weighsVBD +NNQ?NNPˡEi+1 word dependencyNNPS7A`NNK7?JJV-i-1 word adjoiningVBZ= ףp=NNS= ףp=?i-1 tag+i word NNS establishedVBNsh|??VBDsh|?i-1 tag+i word IN britishNNPSClJJʡENNPCl?i-2 word permissionVBV-@JJV-i+2 word contraryVB +ֿPDTK7A@RBffffffi-1 tag+i word NN modelNNP"~NN"~?i-2 word soybeansNNS%CNN%C?i word turnaroundNNFx?JJFxi-1 tag+i word VBN fixedVBNB`"?JJB`"i-1 tag+i word RB becauseVBx&VBPI +RB(\INףp= W@i-2 word subscribersNN?5^I NNP"~j?JJGz?i-2 word bikesJJh|?5ֿVBP rNNZd;O? i word voteVBN +VBPjtJJV-NNSףp= NNPʡEVB +?NNSc@VBDvi-1 tag+i word IN crossNN?5^I ?VBN?5^I i word monetaryNN333333ӿNNP333333?i-1 tag+i word IN restatedVBN~jtx?JJ~jtxi+1 word rebelsVBNK7A`NN1ZdNNPClǿJJS@VB-i-1 tag+i word -START- mandomNNS㥛NNPS㥛?i-1 tag+i word NNP affairNNPNbX9?NNNbX9i-1 tag+i word NN displaysNNSCl?VBNCli+1 word desirableVBNʡE?VBDʡEi-1 tag+i word NN beginningVBGd;ONNd;O? i word en VBMbX9NNtVRBףp= ÿINK7 @NNS%CJJK7A`FW?JJStVVBPV-߿i-1 word rapistVBGB`"?NNB`"i+1 word diabetesJJQNNPQ?i+2 word themselves NN|?5^VBDK7VBNK7?NNS9v?NNPmVB rh?NNPSʡEJJQ@VBGuVVBP/$?RBQ? i suffix SidNNK7A`ݿNNPK7A`?i-1 tag+i word NNP stepsVBZ9v?NNP9vi+2 word inspireVBZʡEJJʡE?i+2 word licentiousnessRPCl˿INCl?i+1 suffix pheJJR?RBRпi word astronomicalVBJJ?i-1 word quirkyNNMbX?VBDMbXi+1 word misrepresentedNNP/$?NNPS/$i-1 tag+i word NNS useINq= ףpVBPV-?JJ;Oni-2 word buildingsVBffffff@JJ)\(NNPQi tag+i-2 tag RB RBRINJ +VB{Gz?RPB`"ٿJJ~jtxVBD?5^I VBN/$?VBPx&RB?i-1 tag+i word CD rivalJJ(\?NN(\ i-2 word aug.JJNbX9?RBNbX9i+1 suffix nucWDTClINCl?i-1 tag+i word NN runsVBZzG?NNSOn?NN`"i-1 tag+i word `` searsNNPA`"?WPA`"˿ i+1 suffix - JJx&1LSx& @VBCl׿RPB`"ٿNNnSYMffffff@VBPQRBZd;INB`"?NNS7A`NNPMbX9? i word reps.NNPSMbX9@JJ"~jNNPQi word saintlyJJ5^I @NN+RBx&1i-2 word developNNףp= ?JJףp= i word auditionVB@NNi+1 word publicationVBNˡE?NNw/?JJʡEi+1 word languageVBGsh|??RBRGzNN|?5^?JJK7A`?NNPS?5^I ڿi-1 tag+i word CC funneledVBNV-VBDV-?i-1 tag+i word `` m&aNNJ +?NNPK7A`WPS㥛i word improperIN#~jJJ%C@NN^I + i suffix CNNPRQJJˡE$Q?NNK7A`i-1 tag+i word JJ adjustmentJJX9vNNX9v?i-1 tag+i word VB compatibleVBGjtJJjt?i-1 tag+i word RB connectedVBNZd;߿JJZd;?i+2 word naturalizationNNKNNPK?i+1 word excludingDT"~jIN"~j? i-2 word doleJJR/$JJGz?NN5^I i-1 tag+i word DT fishNNd;O?JJQ޿NNPX9vֿi-1 tag+i word , wanderVBʡEVBP rh?NNjtVBZ$Ci-1 tag+i word DT openJJJ +@NNJ +i-1 tag+i word VBZ spendingVBG/$?JJ;OnNN\(\?i-1 tag+i word NN incurredVBD|?5^?VBN|?5^ɿi+2 word campusVBPMbpNNMbp?i-2 word integrityNNV-?JJV-i-1 tag+i word IN presumedVBZOnJJMb?VBDuV i+2 word shunVBNN?i-1 tag+i word DT muchRB1Zd@JJ1Zdi-1 tag+i word CC approvedVBN+VBD+@i-1 tag+i word JJ marshmallowNN(\?NNS(\i-1 tag+i word -START- tomNNPw/?PRP$5^I WRBQi+1 word strangeJJx&VBPx?NNx&?JJRxi+1 word junketJJ\(\?NN\(\i-1 tag+i word IN soapsNNSK7A`?NNK7A`i-2 word expandedVBG㥛 ?NN㥛 i-1 tag+i word -START- juliePRP)\(NNP)\(?i-1 tag+i word IN respondingVBGoʡ?NNoʡi+2 word pamphletsNNS5^I ?RB5^I i-1 tag+i word PRP$ weddingNNy&1?JJy&1̿ i word ittNNSX9vNNMbXѿNNP rh?i-1 tag+i word JJ demonicJJ-?NN-i+2 word leanedVBZ rhVBPףp= FW㥛 ?i-1 tag+i word DT deutscheNN|?5^?JJ|?5^i-1 word failureWDTQINQ?i-2 word criticizedJJ?NNi+1 word omnibusVBN rh?JJ rhi-1 word mercedesVBZw/NNSw/?i+2 word thomsonDTRQINRQ?i-1 tag+i word NN stumbledVBNZd;OVBDZd;O?i word remainedVBNS㥛JJףp= VBD$C@ i+1 word sale VBG$CNN333333?VBNX9v?VBZ|?5^NNPOnVBD)\(JJRQ@DTOn?NNS+?i word westernNNPA`" VBPV-NNSClJJ"~@NNx&1i-1 tag+i word VBG nextJJ㥛 ?RBPnIN rhi+1 word together VB(\@VBN\(\@VBPjt?NNSA`"VBGClVBD LSx&1VBZ;On?NNPzGi tag+i-2 tag : RBRINS㥛ĿRBS㥛?i+1 word flowersJJK7?NN +VBDK7Ai word capitalisticJJV-?NNV-i+1 word localizedRBMb?JJMb i-2 word -VBNʡE?VBP㥛 ҿJJq= ףp?NNP!rhRPuVNNL7A`?VBDʡEi word fecklessNNv/JJv/?i+1 word product DTZd;?JJS㥛?NNPnJJR rh?VBN/$޿VBP`"VBZZd;CCZd;߿POSZd;?RB(\i-2 word violationsNNMbX9CDjt޿JJ333333?VBNDl?i-1 tag+i word NN triesVBZS?NNSi word breakthroughJJRBvNN~jt @ i+2 word topJJl@WDTd;O?RBV-DTV-VBp= ף?NN/$PDTK7AVBP+INGz?VBDS㥛VBNNbX9@NNPSʡEۿNNSvNNPE?i-2 word obtainNNZd;O?RBS+JJS+?RBCl˿WRBX9vJJ/$?i word reducesVBZS㥛?VBP/$NNS333333ӿi-1 tag+i word VB whisperingVBGףp= NNףp= ?i-1 tag+i word JJ sterileJJ(\@NN(\i word abortedVBNJJ@i word earmarkingVBG?NNi+1 word appliedJJ{GzINOn?RBZd;O?i-1 tag+i word IN cfcsNNQNNP33333NNPSX9v?NNSuV@i-1 tag+i word , prohibitsVBZQ?NNSQi+1 word makerVBGʡE?NNS@JJR+?JJNNSʡENNPRQi+2 word surfacedWDTMbX9?INMbX9i+2 word salaryVBNʡE?JJʡEi-2 word montgolfierJJS@NN+NNPB`"i+2 word notedJJS㥛?NNS㥛?NNPli+1 word televisionsVBq= ףp?NNq= ףpͿi+1 word ratedDT1ZdRB1Zd@ i word latelyRBX9v?NNX9vi word strongerRBS㥛NNOn RBR|?5^?JJRGz"@VBN?5^I VBPbX9JJOnIN+i word muscledVBNw/ԿVBDw/?i+1 word threatenVB rhRBRNbX9RBA`"?i-1 tag+i word NNS reboundedVBNy&1VBDy&1?i-1 tag+i word RBS soulNNʡE?RBʡEi-1 tag+i word VBN crimesNNSrh|?JJrh|i-1 tag+i word DT richerJJR~jt?NN~jti-2 word grindersVBGmNNw/?JJCli-1 word amicableNNDlNNPDl?i+1 word local VBS㥛?VBGE?VBDuV?VBN'1ZIN(\?DT(\ݿNNPT㥛 ?JJy&1RBST㥛 RBx&1ܿ i+1 word flawNNOnۿJJOn?i-1 tag+i word NNS narrowedVBDI +@VBNjtINQi-1 tag+i word `` lionNNuVNNPuV?i tag+i-2 tag SYM -START-NNPˡEVBZˡE?NNS= ףp=?NN= ףp=i-1 tag+i word , createdVBNGz?VBDGzi word breakdownsNNS~jt?NN~jti+1 suffix duoNNS/$ӿJJX9vNNP/$?NNPSp= ף i suffix wetCD+UHB`"ɿJJA`"?i-1 tag+i word VBZ awedVBNZd;JJZd;@i word louisianaNNPSQNNPQ?i-1 tag+i word NNP willMDK7A@NNPK7Ai+2 word damagesVBZbX9?VBJJ~jt?i+1 word spraysNNSV-NNGz?JJ rؿi+1 suffix rsoNNMbXѿNNPMbX?i-1 tag+i word VBN assailantVBx&NNx&?i-1 tag+i word WP toilVBZ+VBP+?!i-1 tag+i word DT environmentallyRBʡE?JJMbNNx&1̿ i word bryantJJ}?5^I̿NNP}?5^I?i+2 word steinbachPRP\(\NN\(\?i+2 word midlandNNP#~j?NN#~j i suffix bumNNP+NNX9v?JJQi-2 word gaechingerNNSQNNQ?i-2 word insistedVBZ-VBGS?NNh|?5?i+1 word attacksJJ㥛 ?VBNnҿNNZd;IN\(\i-1 tag+i word VBN finlandNNP~jtNN~jt?i word revealedVBGVBNv/VBDˡE?i+1 suffix ild VBZ+?VBDʡEINS㥛FW/$@CCOn?CDOnVBPM?NNS+NNPQֿVBZd;OտNN ri-2 word counterrevolutionaryVBNVBD?i-1 word analysisVBNX9v?VBDX9vi-2 word gilletteVBZ333333VB333333?i-1 word collegialNNSjtNNCl?RBCli-1 tag+i word NNP indosuezNNPSEȿNNPE?i-2 word storageNNp= ףJJp= ף?i-1 tag+i word DT turnaroundNN)\(?JJ)\(i-1 tag+i word VBD exchangeNNQ?JJQi-1 tag+i word . andNNPjtCCn?NNPSrh|i+1 word rejoinsNN rhNNP rh?i-1 tag+i word RB closeVBZd;ORBK?JJlVBNSi-1 tag+i word PRP goVB^I +VBP^I +?i-1 tag+i word `` bonfireNN#~j@NNPV-VBNZd;O i+2 word openJJJ +?NNSQ?NNPQVBlVBGCl˿NN&1?VBD{Gz?VBN= ףp= i+1 word anyWDTJ +RB+VBZ9v @NNP~jtJJ;OnJJSq= ףp?VBPoʡ?CDjtĿNNSK7A`RPCl?RBSq= ףpտPOSZd;VBN\(\JJR㥛 VBZd;O@VBDx&1IN rh@DTQ!i-1 tag+i word DT rationalizationNNʡE?JJʡE i word thatRP rVBD rhINS%,@EX-NNPS VBʡE JJq= ףpNN^I +VBNL7A`VBPSWDTX9v!@RB`"WPSNNPSV-DTCl;*@NNSnVBZOn i word though VBPRQWDTSIN"~ @VBZ +RB(\@VBDʡEDTClNNP r?NNʡE JJ ףp= i-1 word reasonablyVBNd;OJJd;O?i+2 word constituentsDTQPDTQ@i-1 tag+i word NN pivotalJJffffff?NNffffffi-1 tag+i word VB involvedRB&1VBNV-JJ +?i-1 tag+i word -START- yvonJJ\(\NNPA`"?PRP$li-1 word advocatedJJK7ѿVBP/$?NNK7i word comfortVBMbVBD1ZdNNoʡ @NNPK7A`i-1 tag+i word -START- sapporoNNDlNNPDl?i+2 word earthmovingVB= ףp=?JJ= ףp=i+2 word musicalJJS rh?RBS rhi-1 tag+i word RB craveVB"~VBP"~?i-1 tag+i word NNS uncoveredVBNv?JJK7A`VBDS㥻i-1 word scramblingNN+RBI +IN^I +?i word insistedVBNJJ-VBDS?i+1 word contractsVBG ףp= ?NN(\пCD(\?VBPClǿJJ$CNNSHzG@NNPV-i+2 word palestinianINMbX?RPMbXi-1 tag+i word VBG overseasJJRB7A`?NNi-1 word consumers VBDʡEJJRX9v?VBPq= ףp?VBRBjt?JJ(\ؿINjtVBZA`"?NNˡERBRX9vi-1 tag+i word JJ calledVBDS?VBNRQNNPQ޿i-1 tag+i word POS shrinkingJJ&1VBG&1?i-1 tag+i word MD haveRBClVBףp= ?VBPK7Ai-1 tag+i word POS runningVBGuVJJ?NNʡE?i tag+i-2 tag $ VBDJJjtCDjt?i-1 tag+i word JJ schoolteacherJJRSNNS?i-1 tag+i word NN countNNSMbX9NNMbX9?i-1 tag+i word : mineCCʡEJJZd;PRPS@NNףp= i-1 tag+i word RB arguedJJ-VBD-?i-1 tag+i word NNP stopsVBZ/$?NNS/$i word bureaucracyVBNNSx&NN\(\?JJJ +i-1 tag+i word RB skewedVBN\(\JJ\(\?i-1 tag+i word VBP readyJJK7?RBK7ѿi+1 word jumpedNNPSZd;NN?JJCDףp= NNPB`"?i-2 word buddyNNPjt?UHMbX9RB+i-1 word governmentsNNffffffINV-VBOn?VBPzG?WDTV-?i-1 tag+i word NNP cNNPK7A`?NNK7A`i-1 tag+i word NN potentialJJzGNNS-NNm @ i word relentVBPx?JJxi-1 tag+i word -START- deutscheNN/$NNP/$?i+2 word rescueJJw/?VBDd;OVBPʡE޿ i word goesVBZ!rh@NNSGzNNPZd;Oi-1 tag+i word DT timetableNNd;O?JJd;Oοi-2 word eurodebtVBNS?JJNNX9vi-2 word memorabiliaDTK7INK7? i word featNN ףp= ?JJ ףp= i-1 word dueJJ\(\INNbX9ȿRPjtRBjt?NNS㥛CD"~j @i word impliesVBZS?NNSS i+2 word pigNNV-NNSV-?i-1 word decadesRBʡEIN/$?VBP/$RBRʡE?i+2 word manualsVBGX9v?NNPX9v޿i-2 word reasonsVBN= ףp=?JJ= ףp=i-1 word fuelsDTv/WDTv/?i-1 tag+i word RB appropriateVB +JJ +?i-2 word allianceNNPSK7JJT㥛 NNPE?i-1 tag+i word DT lenderJJRxNNx?i-1 tag+i word NNP predictsVBZQ?VBDQ i+1 word weakNN/$VBD{GzVBN{Gz?RB/$?VBZ{Gz?NNS{Gzi-1 tag+i word IN frequentJJ= ףp=?NN= ףp= i suffix ghsVB= ףp=NN/$VBDˡEJJ= ףp=VBZM@NNSDl@i+1 word lithotripterNN9v?JJ9vi-1 tag+i word IN flyingVBGB`"?JJB`"ٿi word perishablesVBZq= ףpݿNNSX9v?RBV-i-1 tag+i word NNP northJJ%CRB9vNNPh|?5? i word expandVBn?NNni-1 tag+i word : averageJJoʡ?NNoʡ i word siouxJJS㥛NNPS㥛?i-1 tag+i word CD acresNNP~jt?NNSX9v?NNGzIN= ףp=i+2 word wrappingVBG|?5^JJGzNN|?5^?RBGz@i+1 word responsibilityDTmVBGˡENNS?JJRoʡ?RBRoʡJJjt?i+2 word quotronVBZPnVBPX9vVBDrh|?i-1 tag+i word WP answersVBZq= ףp?NNSq= ףpտi-1 tag+i word NN settledVBN%CVBD%C@i+1 suffix oodJJ-޿NN(\CCxJJRsh|?VBGx&1VBZ)\(VB$C?NNPSʡEVBDGz@RB-@NNPV-NNSʡERPT㥛 ?JJS(\?IN|?5^RBSn?RBR{Gzt?VBNNbX9?VBPJ +POSK7A`?i-2 word exemptJJ?VBDi-1 tag+i word CC sonNNS/$ѿNN/$?i-1 tag+i word NNP earnVBZK7AVBPK7A?i+1 word hachuelNNSy&1|NNPy&1|?i+1 word orders RPE?NNS㥛 ?VBS?VBGjt?VBDK7VBPx&JJL7A`@INEпNNPd;ONNjtRBR`"JJRI +?VBNx&1?i-1 tag+i word VBG valuationNN$C?NNP$Ci+2 word aerodynamicJJDl?NNDli+1 word riverfrontNNPxNNPSx?i-1 tag+i word DT blueJJy&1NNSRQNNK7? i word danishJJQ?NNPQi+1 word leisureRBR9vJJR9v?i-1 tag+i word DT monthlyJJ(\?NNV-RBZd;߿i+1 word enough JJ"~?INh|?5NNPL7A`?VBQ?RP~jtRBx&1@RBR~jtVBPFxNNK7VBNPni-1 tag+i word VBZ outlinesVBZ +?IN +i-1 tag+i word VBZ fallenVBN)\(?RB)\(i-1 tag+i word NNS detectiveNNV-?RBy&1VBP ףp= i-2 word musclesJJSNN~jt?VBNA`"ۿDT"~jVBG-?i word underwearVBRQVBP+NN&1@JJ)\(i-1 word enormousNNSV-NN(\@JJ~jti+2 word subsequentNNP$CNN$C?i word seventhVBPl¿JJ(\@NNrh|NNPMbX9? i word crisesNNPoʡտNNSw/?RBzGi+2 word honorNNSd;OVBNʡENNMb?NNPx&1? i-2 word hisRP+?DT|?5^JJS/$JJFxPOSV-?IN㥛 VBZjt?NNPS$C?VBDp= ף?FW#~jVBx&ѿVBPMbX9?VBNClNNPZd;?NN;On¿NNSI +?RBtVοRBR~jt?PRP$+?VBGx&?i-1 tag+i word CC dozensVBZx&1NNSv/?NNV-i word certainlyVBJ +ٿNNSSRBffffff@JJrh|INףp= ۿi word automatesVBDClVBZCl?i word vomitingVBG#~j?NNSNNq= ףpi-1 tag+i word IN parentalJJ#~j?NN#~ji+2 word sugarIN(\VBGK7NNP~jt?NNPS~jtRP(\?NNK7?i-1 tag+i word NN expectVBP|?5^@NNB`"VBDX9vVBT㥛 i-1 word funnyNNS(\?NNPS~jt?NNP/$VBP+i-1 tag+i word NN variesVBZ1Zd?NNS1Zdi-1 tag+i word NNP publicationsNNSNNP?i word dynastyNN(\ҿFWMbX9NNPFx?i-1 tag+i word IN postVBNSNNS?i+2 word healthyVBPClJJ?5^I ?VBZEMDCl?NN?5^I VBDK7APOSE?VBNK7A?i-1 tag+i word VB motorJJSVBsh|?ݿNN(\?i-1 tag+i word JJ fourCDV-?NNPV-i-1 word directorVBD rh?NN{GzVBN\(\JJjt?NNP-?i tag+i-2 tag DT WPNN rh?FWjt?JJS?NNS}?5^INNP ףp= NNPSʡEi-1 tag+i word CC machinistsNNS ףp= VBZPnNNPS-? i word cooperNN}?5^INNP}?5^I?i+2 word voronezhNNSZd;?NN(\?JJ(\VBZZd;i+2 word copiesVBZ1Zd?NNS1Zdӿi-2 word poisedVBDl?NNDli+2 word continuesNNS?VBD\(\NNPZd;O?JJZd;O׿i+2 word accompaniedNNS+?WDTL7A`?NN+INL7A`ؿi+1 suffix ectVBD+VBN㥛 VBZGzNNSjt@VBG(\?NN(\?WP)\(RBSʡEÿRBRw/?WDT@DTClӿVBˡE?JJMbX?VBPK?RB#~jJJRw/INK?NNPv/NNPST㥛 JJSʡE?i-1 tag+i word VBD movingVBG?NNi+1 word othersNN;OnVBD`"?FW/$?JJ\(\IN rhѿVBZ-?i-1 tag+i word POS patentedVBN%CJJv/?VBDni-1 tag+i word NNP growingVBG?NN̿i-1 tag+i word VBG socialJJuVNNPuV?i-1 tag+i word JJ westJJ\(\NNPT㥛 NNPS+?i+1 word decreeNN rh?JJ rhi+1 word convenientRBRh|?5?JJRh|?5i word consequentNNd;OVBMbJJMbX?i+2 word dustyRP;OnIN;On?i-1 tag+i word NN jetNNS㥛 NN'1Z?JJ?5^I i-1 tag+i word NNP musicalNNPQJJQ?i-1 tag+i word VBN timingNN?INi-1 tag+i word , childVBPZd;ONNSSNNS?JJ1Zdӿi-1 tag+i word MD quitVBL7A`?RBL7A`пi word hydraulicNN`"JJ`"?i-1 word hopedDT1ZdӿIN1Zd?i+2 word systemJJmRWDTS?VBNZd;O @DT +޿NNPSV-@FWMbJJRQVBZ333333NNPjt@VBDNN/$PDTClRB%C?NNSMVBOn?POS333333?CDjt i suffix nkiNN+׿JJ(\¿NNP~jt?i-1 tag+i word : liftVBPDlCCjtĿVBMbX?i+2 word sizableVBPCl?VBGCli-1 word treatingJJ"~NN"~?i-1 suffix igeNNSZd;ONNZd;O?i-1 tag+i word NN grazingVBGB`"ٿNNB`"?i-2 word applesNNS㥛 ¿NN㥛 ?i-1 tag+i word NNS alignedVBNˡE@JJxֿVBDT㥛 i-1 tag+i word RB springVBT㥛 @VBG333333NN/$i word chromosomesNNS= ףp=?NN= ףp=i-1 tag+i word NNP q45VBZ~jtNNP~jt?i-1 tag+i word VB proliferatingVBGn?JJnڿi-1 tag+i word RB infringedJJQVBDQ?i-1 word visuallyVBv/ͿVBN333333?JJ rhVBDV-i word rapidementNN)\(FW)\(?i-1 word flowchartVBGoʡ?NNoʡi-1 tag+i word JJ dutifullyRBS?NNSi-1 word reorganizePDTK7A?DTK7Ai+1 word advocatesNNP-VBFxNNʡE?VBPFx?JJ$CNNS333333?i-1 tag+i word DT buoyantJJRQ?NNRQi+2 word normallyRPv/?RBv/i-1 tag+i word RB ignoreVBZ{GzVBI +?VBPCl?VBD{Gzi+2 word sydneyRBRuV?JJRuV i-2 word daxVBZd;O?VBNףp= VBD rhտi-1 tag+i word NN utilitiesNNPS%CԿNNS%C?i-1 tag+i word , formerlyINףp= RBx&1@JJrh|VBDX9vi+1 word opportunityVBG(\ſNN(\?i-1 tag+i word , allegesVBZ(\?NNS(\ i word chugaiNNPSI +NNnNNP~jt?i-1 word inventionDTMbؿWDTˡE?INʡEi-1 word warburgNNPSv/?NNPv/i+2 word bladderNNGz?NNPGzֿi+1 word missesRBʡE?JJʡEi-1 word expresslyVBZZd;O?VBPZd;Oi-1 tag+i word , supportedVBN7A`?VBD7A`i+1 suffix rchPOS1Zd?VBNCl@IN(\ @CD rhNNPnNNPST㥛 VBDV-?JJx&DTʡEVBPZd;?NNSL7A`ؿVB +VBG333333RBʡENNVBZffffff?i-1 tag+i word TO cholesterolVBNbX9NNNbX9?i word obedienceNNS?NNPSi-1 suffix wed NNClWDT= ףp=INn@VBGʡEDT&1?NNPZd;?RPClJJDl?VBPV-RB1ZdNNSV-?i-2 word grainJJy&1NN rh?VBGy&1?RB rhi-1 tag+i word DT oddlyJJSRBS? i word burmahVBGzNNPGz?i-1 word hundredNNPSS㥛@NNSZd;?NNZd;NNPS㥛i-1 word fewerNNCl?VBN-?RBL7A`VBZףp= NNSn?NNPS㥛 JJS?i+2 word declassifyingVBQRBQ? i word doseNNM?RBMi-1 tag+i word IN finishingNN`"οVBG`"?i+2 word revoltinglyVBGPn?JJPn i word duncanJJsh|?NNPsh|?? i+2 word isNNSB`"?PDTx&1̿CDCl?RP'1ZJJSFxɿ''Q?VBPMJJ/$@VBGtV?VBN/$?INZd;?MD ףp= ?NNPSX9vVBZjtPRPjtRBx&VBD-'CCQοRBRI +JJRbX9 @WDT!rhDTZd;O@NN rh@NNPMb?RBS~jtPRP$㥛 @FWNbX9?POSZd;O?VBoʡ?WRBSEXS㥛?i-2 word boostedCDGzJJGz?i-1 word broadlyVBN/$?JJ&1ҿVBDZd;Ͽi-1 tag+i word TO britishVB|?5^JJ|?5^?i-1 word municipalNNPQ?NNSbX9NNT㥛 ?i-1 tag+i word DT unwrittenJJ^I +?NN^I +i-1 word uniformVBGx&NNx&?i-2 word controlsJJS㥛VBNS㥛?i+2 word leisureRP"~?RB"~i-2 word comedyVBG(\ڿRB rhNNSZd;?VBZ/$޿NNPMbXٿi+2 word thriftRBR㥛 ?JJR㥛 i-1 tag+i word DT movingVBG!rh?JJ!rhi-1 tag+i word JJ thereNN+EXI +ƿRBS㥛?FWZd;O߿ i word amassVBMb?RBMbi-1 tag+i word -START- givenVBN ףp=@RB\(\NNPp= ף MDffffffi-1 word behindNNK7?FWV-?WDT#~jԿPRPrh|?JJKǿWP#~j?PRP$rh|RBFxi-1 tag+i word MD deterVB(\?RB(\i-1 tag+i word WP$ toesNNSGz?NNGz i+1 word betNNzGJJR?5^I ?JJʡE?i+2 word aboutVBPףp= POST㥛 VBRQ@WDT!rh?JJ?5^I ?DT?CD~jtNNPS rпVBNL7A`@PRPB`"RB?NNP/$JJS{Gz?NNI +PDT +VBDMbVBZv/?CC1ZdPRP$B`"?RP%CԿJJR ףp= VBGT㥛 NNS/$ƿRBRX9v?EX rRBS{GzIN}?5^I?i word couchingVBGRQ?JJRQi+1 word culpritsJJHzG?NNHzGi-2 word decadeVB'1Z?NNS"~RB'1ZVBZ"~?i+2 word breachVBOn?VBPOni word furrowsVBZˡE?NNSˡE i word driftNNK7A`?NNPK7A`i word mentallyNNK7ARBK7A? i+1 word dieNNS9vNN9v?i+2 word doolittleNN/$CD/$?i+1 suffix larFW㥛 VBN/$VBZPn?NN/$VBD7A`?RBRK7ADT r?VBʡE?PDT rhJJ"~jVBPZd;O?RB~jtx?NNP= ףp=VBGQRBSx@JJSxJJRQ?IN?5^I @i+1 suffix ctsVBZMbX?NNPSKNN= ףp=@VBN5^I ?JJRV-?RPv?VB^I +JJE @VBPʡEWDTV-@VBGT㥛 NNSx&1?INx&1VBD?5^I RBGzCDMbP?NNPi word bankamericaNNPSףp= NNPףp= ?i-2 word encounteredVBGZd;?NNZd;i-2 word affairsNNP"~?VBNClNNQVBDCl?JJjt?i word proclaimsVBZV-?NNV-߿i-2 word magneticallyJJK?NNKi word diverseJJK7@JJR{GzNNVBN7A`i-1 tag+i word RBS prolificNNS'1ZJJ'1Z?i-1 tag+i word WDT exceptionsNNS+?NN+i-1 tag+i word VBN closedVBNnJJ333333?VBDI +i word distinctJJK?NNK i+2 word seemNNPSZd;ONNS?JJZd;O?NN}?5^IԿi-1 tag+i word -START- circusNNOnNNPOn?i-1 word widelyVBZV-VBNGz @JJ-i word montrealNNSlNNffffffNNPy&1?i+2 word swissNNSh|?5οNN rhJJNbX9?NNPx&1пNNPSOn?i-1 tag+i word JJ opticalJJl?NNl¿i-2 word expectationsVBDE?RBX9vVBNFx?JJS㥻i word servicingVBGjtNNjt?i-1 tag+i word NN cocotteRBRʡENNʡE?i-1 tag+i word NNP mountainsNNPS\(\@NNSSNNP ףp= i-2 word deanNNPSMNNPM? i suffix COANNS/$NN/$?i word winnersNNPSHzGNNS(\?JJףp= i-2 word denyVBrh|NNK7A?JJS?5^I ڿVBNx&WDTlJJx&?INl?i+1 word seaboardJJ-?NNP-i word freedomJJʡENNS"~NNPˡERB~jtNNGz@FWrh|VBNZd;O i-1 tag MDJJR-VBN/$@''v?JJbX9HVB"-@PDT/$MDRQؿVBP㥛 DTzGڿRBv@RBSx&1?RBRʡE?VBGoʡWDT/$?INh|?5CC?5^I ?JJS}?5^IVBD rhVBZX9v?NNClNNSDlNNPB`"ɿ i word ba3VB"~jNNP/$JJS @IN-ƿi-1 tag+i word PRP$ chevyJJClNNPCl?i word creationistNNq= ףpJJq= ףp?i+1 word executionsRP(\?IN(\i+2 word insiderVBGS?JJSi-1 tag+i word NN poursVBZZd;?NNSZd;߿i-1 tag+i word JJ witnessNNPRQ?NNRQпi-1 tag+i word TO bedRBʡEÿVBX9vNN`"@i-2 word pollinationRBV-INV-? i word affordVBS?VBPSi-1 word bribedJJ"~?NNP"~i-1 tag+i word PRP$ plannedVBNbX9޿JJbX9? i word nodsVBZ(\@NNS5^I ۿVBNʡERBMbi-1 tag+i word PRP$ publicJJV-?NNV-i-2 word protectionVBG9vRBZd;NNCl绿VBDw/JJRI +VBNw/?JJGzֿNNPx@i-1 tag+i word NN grindsVBZK7A`?NNSK7A`i-1 tag+i word DT shortcutNNK7?JJRZd;JJ333333 i-1 word epaNNʡE?VBDv/RBR+߿VBNv/?JJʡEJJR+? i word ruthNNPSV-NNPV-?i-2 word viningVBZZd;O?INZd;Oi word hopefulVBP^I +JJ^I +? i word dfcVBV-NNPV-? i suffix 80sNNuVCD-@PRP|?5^JJjtNNSbX9H@NNP$Ci-2 word reachesNNSA`"?JJRA`"i+1 word disguisedNN-?JJ-i-1 word opportunisticNNSK7?NNK7 i+1 word lionWRBuV?JJRuVNNDlNNPDl?i word cellistsNNS+?NN+i-1 tag+i word , seldomRBB`"?NNB`"i-1 tag+i word CC expectVBSſVBPS?i-2 word mahranVBMbXNN$C?JJQi-1 tag+i word CC briefNNKJJK?i-2 word addingJJ~jt?NN~jti-1 tag+i word DT pulseNNSS㥛NNGz?JJbX9޿i-1 word resurgentNNSsh|?JJB`"?RB~jti-1 tag+i word DT scienceNNffffffNNPffffff? i word anyNNPʡE DTsh|@NNS+NN/$ i suffix .45NNS~jthCD~jth?i-2 word martinVBP}?5^IJJ}?5^I?i-1 tag+i word -START- trekRB +NNP +?i+2 word absolvingJJ(\?NN(\ݿi-1 word walnutNNx&1NNPx&1?i-1 word lessonRBCl?NNCli-1 tag+i word PRP$ jailNN+?JJ+ i-2 tag ''INS㥛?JJS-?VBGrh|RP;OnVBPd;O?``)\(@JJK7A`PRP$&1?FW rh?CCܿRBS-RBRv?VBZMb?POS333333?WDTx&?NNSNbX9NNP{Gz?CD#~j?VBL7A`?''|?5^PRP&1RBI +VBD rh?VBN1ZdNNPS|?5^JJR/$DT㥛 ?NNx&PDTK7A?i-1 tag+i word VB wrongRBy&1JJy&1?i word property\/casualtyJJA`" @NNA`" i-1 tag+i word `` insuranceNNQ?RBQi word silveryJJ +?NNʡERBX9vi-1 tag+i word NN featuredVBN'1Z?VBD'1Zi-1 tag+i word PRP$ strongestNNClӿJJSCl?i+1 word warnerVBB`"?INsh|??WDTsh|?NNCl?NNP+i word invokesVBZZd;O?VBL7A`VBDzG i suffix 3thCD1Zd NNS1ZdJJ|?5@NN rh?NNPSi-1 tag+i word RBR towardsJJ"~jܿIN"~j?i-2 word stateRPoʡ?VBD333333?NNSp= ף?NNPSX9v޿RBjtֿNNL7A`@IN-VBZQNNPʡEVBjtPOS\(\?VBNjtVBP}?5^IVBGCl?JJ rhi-1 word unseenRBS@JJRuVNN}?5^IINsh|?i-1 tag+i word TO bootVB\(\NN\(\?i-1 tag+i word VB reapedVBX9vVBNX9v?i-1 tag+i word WDT lendVBZClVBPCl?i-1 word helped RP?5^I NNZd;?PDT~jtVBP#~jIN~jtVB+َ @VBNK7A`JJx&VBZ rhi-1 tag+i word JJ senseNNS-NN-?i-2 word fisherNNq= ףp@JJq= ףpi-1 word revivalVBPQ?RBQi tag+i-2 tag DT JJSNNSʡENNM?JJNbX9пi-2 word revelersRPIN?i-1 tag+i word IN funnyNNSzGҿJJK7?NN+ i word fluorJJNNP?i word helplessNNRQRB^I +JJʡE@i-1 word erwinNNZd;NNPZd;? i+2 word pullNNS+NN+?i-1 tag+i word , airNN#~j?JJ#~ji-1 tag+i word -START- castVBN"~@NNh|?5޿NNPq= ףpi-1 tag+i word NN firesVBZ ףp= ǿNNS ףp= ?i-1 word prohibitionVBZffffff?DTHzGNNSffffff޿WDTNbX9?IN1Zd i word boatNN#~j?JJQNNP/$?NNSMbXi-1 tag+i word NNS focusedVBNK7A`VBDK7A`? i+2 word pontVBZK?NNSKNNCl?JJCli-1 tag+i word DT giantsNNPSh|?5@NNSnNNPSۿi+1 word pollutionNN/$?JJ/$i-1 tag+i word NN automotiveJJ}?5^I̿NNP}?5^I?i+2 word beliefVBN㥛 ?VBD㥛 i-1 word literalJJ333333?NN333333i-1 tag+i word DT blowJJ#~jVBNx&NNS@i-1 word perhaps RBRV-?JJRV-WDTQNNX9vRBSףp= ?JJSףp= VBPB`"RB'1ZĿIN'1Z?DTQ?VBw/@i-2 word introduceFW|?5^?NN rh?JJ\(\RBCli-2 word heinemannJJB`"NNB`"@i word cheaplyVBP7A`RB7A`?i-2 word foothillsNNPSjtVBNMb?JJMbпNNPjt?i+2 word protestVBjtVBP{Gz?RP1ZdNN7A`i-1 tag+i word DT streamlinedVBNoʡJJoʡ?i-1 tag+i word CD pershareJJ?5^I ?NN?5^I i-1 tag+i word `` sociallyRBRRB?i-1 tag+i word JJ engulfedNNZd;VBDZd;? i-2 word poorJJ`"RBZd;NNnҿNNPNbX9@i-1 tag+i word JJ sellerNNB`"?JJB`"ٿi-1 tag+i word -START- povertyNN rh?NNP rhi word beanballsNNSCl?NNCli-1 word monsieurVBZ rhVBPףp= FW㥛 ?i+1 suffix dosJJX9v?NNX9v߿i word bahamasNNPSV-@NNV-NNPʡEi-2 word commentaryVBZK7VBK7? i word roadsNNSK?NNMbVBZh|?5 i-1 word wokeRPbX9޿RBbX9?i+2 word phoneINHzGNNP(\VBx?RP^I +?NNI +޿RBZd;O׿ i+1 word getNNPS"~j?NNSZd;?RB+NNP{Gz i suffix smsVBNnNNbX9HNNST㥛 @i-1 tag+i word VBD leftJJ+VBN+?NNmVBDm?i word ebensburgJJ|?5^NNP(\?RBGzNNJ +?i-1 tag+i word IN oversoldJJrh|?VBNzGNN~jti+2 word millionsNNPSCl@NN^I +PDT~jt?DT~jtNNSJ +ɿNNP}?5^Ii-1 tag+i word NNP demonstratesVBZK?NNPSKi-1 tag+i word JJ justiceNNS?5^I ҿNNEԸ?NNPZd;O?i-1 tag+i word NN nullifyVBPA`"?NNS{GzNNni+2 word differentialsVBGy&1?JJy&1i-2 word exhibitVBD|?5^?RB/$@JJRK7ѿJJQVBN|?5^i-1 tag+i word NNP peripheralsNNPSRQ@NNPRQi-1 tag+i word DT baltimoreNNB`"ٿNNPB`"?i+2 word processVBDPn?VBNuVJJoʡ?INffffffVBGoʡ?RPzG?RB(\NNoʡi-1 tag+i word NNS populatingVBGn?VBPn i+1 word lacVBZZd;NNnٿNNPGz?i word conspiringVBuVVBGuV?i word automatedVBN ףp= ?JJˡENNPX9v?i-1 tag+i word POS perspectiveJJ;OnNN;On?i+2 word mutualRB|?5^?JJ|?5^VBZ +NNS +?i-1 tag+i word DT weightedJJx&@NNV-VBN"~i-1 word staidJJn?NNPn i suffix galJJ|?5^@NNQCC|?5^VBNRQRBbX9NNSJ +NNP(\?NNPSx&i-2 word kelloggVBNN?i+2 word turbinesVBNDlJJDl?i-1 tag+i word JJ customNNSw/NNw/?i-1 tag+i word NNS avecVBPףp= FWףp= ?i-2 word eagernessVB-?VBP-JJZd;NNPZd;?i-2 word batangasINK7A`RBK7A`?i-1 tag+i word -START- definingVBG-?NN-i tag+i-2 tag ) NNPSVBP/$?NN/$ i suffix ORKVBP-?NNP-i word amateurishJJjt?NNjtƿi+1 word regardingNN㥛 ?JJ㥛 i word painfullyRB rh?JJ rh i word shoesVB/$NNSuV@NNK7A` i suffix ailVBD!rhVBZX9v޿CD%CVB1Zd?VBPGz @NNPS@NNjt @VBNClPRP%C̿RB-NNS333333 JJ"~?JJRPRP$S i-1 word bodyNNS7A`?NNP㥛 ҿNNPS㥛 ?NNsh|?WDTMbX9?JJsh|??INMbX9VBZ7A`ڿi+2 word butterfliesNNzG?JJzGҿi word whereaboutsNNSHzGNNHzG?i-1 tag+i word PRP$ tireNNffffff?JJffffffi-1 tag+i word NN acknowledgeVBPV-?NNV-i+2 word pessimisticRBQINQ?i-1 tag+i word JJ subcommiteeWDTKNNK?i-1 tag+i word JJ tradingVBGV-?NNx&?JJV-NNSZd; i word awardNN rh@JJV-RBbX9VBNʡEݿi+1 word fewerVBDT㥛 ?VBNT㥛 JJK7VBZI +?NNSI +NNP{GzVBGx&?RBL7A`?i word cananeaJJxֿNNPx?i-1 word peeblesVBPQ?VBQ i-1 tag+i word DT retinoblastomaJJ= ףp=NNSl¿NNrh|?i-1 tag+i word NNP callVBPnпJJ333333?NNOni+1 word replacementVBZ}?5^INNS}?5^I?JJˡE?NNˡEi-1 tag+i word NNS nationwideVBP"~jJJ5^I  @RBi+2 word profitablyVBNʡERBʡE?i-1 tag+i word DT boeingNNGzNNPGz?i+1 word franticallyVBA`"ۿVBP7A`?JJx&1i word emphasisVBMbXNNSx&NN+ @JJ/$i-2 word rearingVBG\(\NN\(\?i-2 word reinforceVBsh|??VBPsh|?i-1 tag+i word CC pelvicJJ|?5^?NN|?5^i-1 tag+i word JJ aroseVBDQ?VBZQi-1 tag+i word NN flavorNNSSNNS? i word risenJJ9vVBN?NNK7A`i+1 word horsesNNP/$VBG/$?VBNffffffJJ ףp= @VBDzGi-1 tag+i word PRP$ deluxeJJ?NN i-1 tag+i word -START- fullertonNNB`"ɿNNPB`"?i-1 tag+i word NN findVB(\?VBP?RBmͿVBDSVBZA`"i+1 word rerunsVBG rJJ r?i word notebookNNPClVBZjtNNSjtNNGz@JJK7Aؿi-1 tag+i word PRP headVBPq= ףpNNS㥛?JJB`" i suffix LESNNPlNNS ףp=@NN9vJJZd;CD+ӿi-1 word mideastNN~jt?JJ~jti word declarationNN%CNNP%C?i-1 tag+i word , opportunitiesVBZx&NNSx&?i+2 word deterrentsNN1Zd?JJ1Zd i-2 word stemVBGPnпNNPn?i-2 word possessNNSV-JJ/$@NN ףp= i-1 word roadNN\(\?NNPrh|?VBZS?VBZd;߿NNSSi+1 suffix pan INx&1 @RB?5^I ?VBPw/JJ'1ZWDTxVBZQ?NNS/$VBS?JJSEVBN;Oni-1 word damagesWDT~jtۿIN~jt? i suffix cal NNPʡE@JJC.@CDzGINw/?JJRlVBPZd;RB/$VBZffffffNNSClVB1ZNNPS7A`NN rhVBNS i+2 word varyVBG/$JJx&ѿNNQ? i suffix e-BNNS rhJJl?NNS㥛i-1 tag+i word NN offeringsNNSd;O?VBZd;Oi-1 tag+i word JJS misleadingVBGMbJJl?NNni-1 tag+i word VB stuckJJd;O?VBNx?NN(\RBsh|?RBRx i-2 word seedNNSw/ԿNN"~VBDE?VBN|?5^JJzGҿVBZw/?i-2 word barrelsNNffffff?JJffffffi-1 word rearingRP&1RBE?IN(\ſi word thanksgivingVBGB`"NNPB`"?i word anthonyNNPˡE?JJA`"IN7A`i-1 tag+i word WDT sorelyJJʡERBʡE?i-1 tag+i word DT dogsNNPS+NNSx&1@NN?5^I ڿNNPX9vi-1 tag+i word RBR complicatedVBNT㥛 JJT㥛 ? i+1 word butNNq= ףp?JJS|?5^INmVBZB`"ٿNNS/$@NNP&1JJRMbRBx&1?VBG(\ڿVBD`"JJ rPDTV-RBRGz?VBNV-?DTQ?i word brought RB(\WPV-VBZbX9JJ$CNN rh VBN(\u@VBV-¿FW ףp= ǿVBDuV@i-2 word intrinsicVB7A`NNP7A`?i word coventryNNnٿNNPn?i word bankruptcyNNPSrh|NNSS㥛NNDl?NNPFx?i-1 tag+i word DT onlyVBZSRB^I +JJ{G@NNQi+1 word placementsNNPx&1@VB +VBD&1FW%CJJ +?INK׿NNSSۿi-1 tag+i word NN frescoVBNMbX9ܿNNMbX9?i-1 word bronfmanVBZB`"ɿNNPSZd;ONNS5^I ?i word siliconNNSB`"NNB`"?$i-1 tag+i word -START- alternativelyRBGz?NNPGzi-1 tag+i word NN exposureRBQNNQ?i+2 word interstateJJy&1?NNy&1i-2 word nerdsNNSPn@NNPlVB'1ZNNPSl?NNmJJI +?VBZ~jti-1 tag+i word IN funnelingVBG;On?NN;Oni-1 tag+i word DT offerVBP#~j?JJOnNN?5^I ?VBD~jti-1 tag+i word JJ thrivingVBG ףp= JJ ףp= ?i-1 tag+i word IN cherubsNNSHzG?JJHzGi-1 suffix valVBDQ?VBNSVBPZd;O?JJv?INT㥛 VB#~jRBClNNMb?i word playwrightsNNPS㥛?NNSS㥛i tag+i-2 tag RBS RBJJ/$?NN/$ i-1 word peepVBZ= ףp=NNS= ףp=?i-1 word previouslyVBD/$?PDTX9vVBNy&1 @JJˡE i-1 tag+i word `` lachesNNSNN?i+2 word redefinitionVBNMb?JJMb i word sunyNNq= ףpNNPq= ףp?i+1 word mattersJJRZd;RBh|?5DT +?NNPʡEVB?5^I @JJMbX?NNw/?PDT +i word shipbuilderJJRKNNK?i+2 word allowableVBP1Zd?JJ1Zdi-1 tag+i word `` anheuserNNPzG?DTzGi word ungainlyJJK7A`?RBK7A`i word depletedVBNoʡ?JJQVBD&1?i-1 word establishedNNI +JJI +?i+2 word johnstownJJ+NNʡEտINFx?i-1 tag+i word IN videoJJq= ףp?NNq= ףpi-1 word zalubiceVBPjt?NNjti+1 word provokedRBrh|?VBDrh|i+2 word overseesNN5^I ?FWHzGٿRBREԸVBPʡEVBZ{Gz?NNS{Gzܿi-1 tag+i word PRP viewsVBZK?VBDKi-1 tag+i word JJ textsNNSx&?NNx&i word mergersNNS+?NN+i-1 suffix rp.VBD/$?FWlRBRx&1?POS^I +?RB9v?NNS{GzVB?5^I JJʡE?NNxVBZ/$VBPGzVBN1ZdVBG7A`?INA`"?i-1 tag+i word -START- adolphCCQNNPQ?i word invasionNN(\NNP(\?i+1 word poetryNNPNbX9?DTNbX9i+2 word pleaseDTMb?WDTMbi+1 word seeingVBMb@VBPx&NNZd;Oi-1 tag+i word -START- timeMDZd;ONN1ZdۿRBQJJS㥛NNPˡE@i-1 word entourageVBZ= ףp=?NNS= ףp=i word negativesNNS"~j?NN"~ji+2 word athleticsRP'1ZRB'1Z?i-1 tag+i word IN daimlerNN7A`NNP7A`?i+1 word reachesWDT|?5^?NN+?JJ+IN|?5^ i word autoNNPSMbX9NN ףp= @JJʡENNPQ?i-1 tag+i word DT dealsVBZ(\@NNS(\i+2 word slogansNN1Zd?IN1Zdi+2 word polymersVBSNNS? i word lentNN/$VBNx&?JJV-VBD&1?i+1 suffix vs.NN?JJ;OnRB rhѿNNP^I +?i-1 tag+i word NN oneCDHzG@JJRZd;NNZd;OINʡEi+2 word columnsNNS㥛?JJS㥛i-1 tag+i word CC toiletJJK7A`NNK7A`?i-2 word manufacturingWDT rhJJvIN{Gz?VBG|?5^RBClNN|?5^?VBDZd;O@VBNMbi-1 tag+i word IN alfalfaNNSV-NNV-? i word ordersNNP;OnNNPS{GzNNS/$?NNMi-1 tag+i word JJ feelNN)\(?VBP)\(i-1 tag+i word VBP hungryJJR^I +JJ^I +?i-1 tag+i word NN mafiasVBZK7AVBPL7A`堿NNS r@NNMbX9i+2 word competingNNS|?5^?JJK7?NNK7RBR|?5^i-1 word fartherRBMb?NNMb i word faultsVBPvNNSv?i-2 word networksRPQ@RBQ i word avenueNNPSmNNPm? i suffix abyNNE?VBDSۿCCT㥛 пJJSNNS7A`¿NNPT㥛 ? i word hidingVBGMbXNN(\?JJ$Ci word substantiveJJ|?5^?NN|?5^ҿi-1 tag+i word VB abolishedJJMVBNM?i-1 tag+i word -START- agipNNSzGNNPzG?i-1 tag+i word NNP jumboVBZQJJQ?i-1 tag+i word NNP bringVBGK7A`NNX9vVBP%C?i+2 word traveledVBZCl˿NNSCl?i+1 word coursesVBGV-NNX9v?JJCli-1 tag+i word NNS measuresVBZ-NNS-?i-1 tag+i word DT fluNNI +?JJI +ֿ i word per JJQCC333333VBD;OnVBP +INʡ)@NNSMbX9NNm FW"~@VBNʡEJJR/$RBy&1i+1 word cattleVBNuVJJ rVBDMbX9?NNmտ i suffix nal RPOnVBP\(\VBQRBw/NNHzGٿVBDsh|?JJRSVBNKJJuVN*@IN#~jNNPSK7ANNP@NNSw/i-1 word cineplexNNPZd;O?NNPSZd;OVBNQVBDQ?i-1 word supersedeDT|?5^?IN|?5^i-1 tag+i word -START- norwoodLSK7A`ݿNNtVNNP +@i-1 tag+i word `` coupVBףp= NNT㥛 FWCl? i-1 tag+i word , pharmaceuticalsNNPS#~j@NNS"~NNPʡEi-1 suffix palCDZd;JJK7?VBZNNSV-ǿNNPQ?NN5^I ?i+2 word smolderNNSCl?NNCli-1 tag+i word MD occurVBS㥛?RBS㥛i-1 tag+i word PRP$ namesakeNNA`"?JJA`"i-1 tag+i word CC leaksVBZ"~jNNSzG?NNMbXi+2 word contestWRBMbXINX9vVBDCl?i-1 tag+i word NN rightsNNSbX9NNPbX9? i-2 word fireRB+NNSJ +NN|?5^JJNbX9?VBNm?i+1 word clubsNNm?NNPm i word col.NNPSClNNPCl? i-1 word garyNN}?5^INNP/$?NNPS㥛 i word heatedVBNHzG?JJh|?5?VBDx&1 i suffix gicVBP rJJV- @DTOnNNSFxNNPCl?RPClѿNNK7A`i-1 word surgeRBS㥛INS㥛?i word ordnanceRB|?5^ʿNN|?5^?i-1 tag+i word CC corruptionNNv?JJvi-1 tag+i word VBP aggressivelyRBI +?JJI +i-1 tag+i word IN becauseNNSRBZd;IN/$?i-1 tag+i word CC broadstarJJ rhտNNP rh?i-1 tag+i word IN lendingVBGʡENNʡE@i-2 word quartersNNjtVBNT㥛 JJK7?VBjt?JJRM i-1 word millNNSV-?RB rhNNP rh?VBZV-i-1 tag+i word PRP$ wardrobeNNSMbX9NNMbX9? i word colonyNNZd;@RBp= ףJJjtNNPni-1 word spread RBRv?IN^I +?NNP$C?RP^I +NN/$JJNNSQRBFx?JJR+ǿi-1 tag+i word NN pretaxJJK?NNKi-1 tag+i word DT stakesNNPS ףp= ߿NNS ףp= ?i-1 tag+i word TO overcomeVB/$?VBNJJ rhi-1 tag+i word IN payVBSNNS?i-1 tag+i word DT strategicJJX9vNNPX9v? i pref1 bRPtV?VBG&1FW/$CCxƿIN rh@UH!rh?VBNq= ףp@WDTSPRP(\JJS(\?WPV-DTtV@VBQ@CD$CEXxƿNNPS +YJJRE?VBP5^I ?VBZM?NNSp= ף@PDTV-?POSClRBX9v@NNPh|?u,NNClg@VBD(\@RBRK7A?MDffffffSYMK7?JJ~jt?RBS5^I ?i+1 word tapestryJJQ?NNʡENNS+i-1 tag+i word CD aNNPV-?DT1ZdۿNN9vi-1 tag+i word VBZ stressNN(\?JJ(\i-1 tag+i word DT slewNNtV?RBtVi-1 tag+i word RBS unsettledVBN/$JJ/$?i+1 word mickeyVBDCl?VBNCli-1 suffix eurVBZ rhNNPzG?NNffffffFW㥛 ?VBPףp= JJX9vINZd;? i suffix picJJʡENNPd;O?VBx&1NNy&1?i-2 word acknowledgedINA`"?WDTA`"JJrh|?NNrh|i-1 tag+i word VBN anythingNNS㥛?NNPZd;߿RPS㥛Ŀi-1 tag+i word IN bacteriaNNSCl?NNCli-1 word manufacturesJJMbX9@NNMbX9i+1 word deregulationVBNmJJ)\(VBD5^I ?i word artisticJJ r?NN ri+2 word sereneNN333333?JJ333333i-1 tag+i word DT savingVBGjt?NN㥛 JJB`"i-1 word chipsWDTx&1?JJ1ZdIN1Zd?DTx&1i-2 word wastewaterNNVBD rhJJZd;@VBNHzGi+1 word affiliateVBNd;OJJ{Gz?NNPFx?i-1 tag+i word DT somewhatRBd;O@RBSV-NNJ +JJClɿi+2 word listenerVB+?NNS+i-1 word salesNNSV-VBG +?RBQVBD!rhSYMMbX9VBNjtWDT/$?NNPh|?5VBK7VBPB`"LS ףp= VBZh|?5?NNZd;O @RBR rh?JJEIN&1ҿi-1 tag+i word -START- farmersNNPSjtNNS#~j?NNP!rh? i suffix xSYMʡEVBCl׿LS'1Z?i-1 tag+i word IN lettuceNNL7A`?JJL7A`i-1 tag+i word '' headquartersNNffffff?NNSffffffi-1 word extraNNX9v?JJ1ZdCDNbX9пi+2 word kindsVBNjtJJ rhVBDrh|@i+2 word missionPDTd;OVBNK7JJd;O?VBDK7@i-1 tag+i word CC endrocrineNNP/$ֿJJS?NNNbX9i-1 word recipesVBN-?VBD- i-1 word daNNPENN rh@VBDS㥛 i word askingVBGZd;@JJRQNN}?5^IVBPi-1 tag+i word , coopersNNPS rhNNP rh?i-1 tag+i word VBP sanfordVBNZd;ONNPZd;O?i-1 word hancockNNV-VB/$?VBPV-Ͽi-1 tag+i word `` wildVB +JJ +? i word truceVBNS㥛NN+?NNS^I + i word cubaNN|?5^NNP|?5^@VB/$NNPSffffff i word flamesNNS\(\?NN\(\i-1 word advertisersVBP= ףp=?WDTtV?RBR= ףp=INtV i-2 word ba3JJd;O @NNbX9NNPCli-1 tag+i word DT sociologistJJx&1пNNx&1?i-1 tag+i word IN loweringNNPKVBGPn?NN~jtۿi-1 tag+i word CC mostJJSMb?VB+RBS㥛 ?VBD5^I i word outliningVBG|?5^?NN|?5^ i word wordedVBN?RBR i+1 word p.NN rhNNP rh? i+2 word spinVBZ7A`NNSK7?NNV-i+1 word voluntarismFWl?NNPli-1 tag+i word DT u.s.a.NNPS+NNS?NNPCl? i suffix ulfNNSbX9NNbX9?i-1 tag+i word CD biologicalJJV-ڿNNPV-?i-1 word posterJJZd;NNMbVBG+?i+1 word statedVBZX9v?POSX9v i word ewingNN9vNNP9v?i+2 word systems RBZd;O߿VBMbX9ܿRP/$?JJCl@VBD+?VBPMbX9?NNPV-?NNRQ?CCOn?VBN+DTʡENNSh|?5i+1 word medicationNNp= ףJJp= ף?i-1 tag+i word RBR holdVB㥛 ?VBP㥛 i+2 word teddyRBv/?INv/Ϳi-1 tag+i word JJ onlyRBCl?JJCli-1 tag+i word NNP architectsNNPS?NNPi-1 tag+i word NN parentsVBZL7A`尿NNSL7A`?i-1 suffix ithRBR-?INGzJJRJ +?NN7A`?VBDh|?5NNSZd;O?VBA`"PDTRQ?VBGV-VBZrh|RB;OnCCrh|PRP= ףp=?NNPn?RBSp= ף?CD{Gz?PRP$= ףp=FWDl?VBNX9vWDT1ZdJJSp= ףVBP333333JJOn@DT-@NNPS1Zd? i+1 word ringJJ;On?NN;On i word usedVBPffffffJJ rVBZClVBx&1RBh|?5VBDQ@VBN`" @i word furnaceNNףp= ?JJףp= ÿi-1 word patrolRB{GzNN{Gz?i-1 word postponeVBnRBn?i+2 word mayorRBSOn?JJSOnJJ$C˿NNSMbX9NNPS+NNn@i-1 tag+i word NNP thyselfPRPjt@NNPjti+1 word campaignVBp= ףRBZd;ONN7A`?VBNMb?VBPp= ף?JJq= ףp INZd;O? i-1 tag+i word -START- southeastRBٿJJ?i-2 word diapersVB|?5^NN|?5^?i-2 word insultingNNClVBGZd;O׿JJV-@i-1 tag+i word DT paloRBMbXѿNNPMbX?i+2 word polyesterNNSzG?JJzGi-1 tag+i word IN denverNN{GzNNP{Gz?i-1 tag+i word NN terminationsNNSy&1?NNy&1i-1 word looseNN$CJJK7?NNS$C?VBNK7 i word manageVBZ +VBˡE?VBPV-?NNJ +ٿVBDEi-1 suffix otcVBG#~j?NN#~ji word riverfrontNN?RBi word humulinNNP ףp= ?NN ףp= i-1 word broadenVBG ףp= NN ףp= ?i+2 word trowelVBZHzGNNHzG?i-2 word peyrelongueJJNN?i word backstopDTx&NNx&? i word note NNL7A`e@RBjtVBZvNNSClUHZd;OIN ףp= DTGzVBCl@JJbX9FW?5^I VBD?5^I VBP!rhm@NNPKi-2 word sufferedRBSx&1JJx&1?i+1 word seizedNNT㥛 NNST㥛 ?i-1 tag+i word NNP collinsNNP+?WP+ i+2 word at&tRBPn?NNPPni+2 word fieldJJPn?NNMbVBNV-RBR|?5^?RBV-?VBʡE?"i-1 tag+i word -START- fundamentalJJ{Gz?NN{Gzi-1 tag+i word NNP !DIGITSJJ/$?VBZ rhNNSV-@NNP/$NNPSNNx&1CDI +i-1 tag+i word -START- sourcesNNS&1?NNP&1 i word broncsNNS`"?VBN333333NNni-1 word whollyVBNQοJJQ?i-1 tag+i word VB unnoticedJJMb?RBMbпi-1 tag+i word DT proprietaryJJK7?NNK7i-1 tag+i word IN executionsNNS+?NN+i-1 tag+i word NN suggestsVBZ`"@NNS`"i-1 tag+i word VB proceedsNNSX9v?VBGX9vi-1 tag+i word NNS putsVBZOn?NNSOni+2 word orkemNNSOn?VBGsh|?ݿJJOnNNsh|??i-1 tag+i word IN hardwareNNy&1?JJy&1i-1 tag+i word VBP frozenVBG333333VBNCl?RBOnÿi-1 tag+i word IN recycleVB333333?NN333333i word arrangementNNS㥛@JJS㥛i+2 word receiptsJJS㥛@NNPS㥛i word stagewhispersVBZCl?NNSCli-1 tag+i word NNP leadersNNSK7A`?NNPK7A` i word createVBPq= ףp?JJ333333NN +VB^I +?i-1 tag+i word JJ mysteriouslyRBZd;O?NNZd;Oi-1 tag+i word PRP$ piloteNN333333FW333333@ i word clerkNNSKNNK? i word got RBVBD$@VBN/$?VBP/$VBKNNPSoʡRP+JJNNRQ NNSq= ףpi-1 tag+i word WDT runVBP rh?NN rhi-1 tag+i word NNP tastesNNPSZd;ONNS+?NNPMbi-2 word fishingRBn?NNn i word brokenJJCl@INDlNNSp= ףؿRBy&1NN"~jVBN?VBP!rhi-1 tag+i word JJ revolutionaryNNʡE?JJʡE i+1 word cimaNNSSۿJJS?i+2 word repurchaseVBN rVBD r?i-1 tag+i word NNS deadJJ"~j?NN"~ji-1 tag+i word JJ improviserNNSQNNQ?i-1 tag+i word JJ mobileJJ1Zd?NN1Zd i word lushVBNbX9JJ-@NN333333i-1 tag+i word , legislateNNX9vVB r?RB(\JJRQi-2 word musicPDT/$?VBN+?VBP?DT/$NNS+MDi-1 tag+i word CC maintainingVBG-?NN- i+1 word holeVBG+NN rh?JJjtֿi word principlesJJV-NNSʡE@NNQi-1 word showroomsRBxINx?i-1 tag+i word TO southeastVBMbX9NNPMbX9?i-1 tag+i word WDT pointedVBP/$VBD/$?i-1 tag+i word IN momNNSh|?5NNh|?5?i word freewayNN5^I ?JJ5^I i-1 tag+i word IN retreatingVBG333333?NN333333i-1 tag+i word NNP recommendingVBG(\?NN(\i-1 tag+i word NN linerNN rh?RB rh i word forthJJRI +JJNbX9VBKRBףp= ?RPn?i-1 tag+i word -START- jujoNNPS㥛?JJS㥛i+1 word theoryNNPzG?JJ rh NN +@i-1 tag+i word DT paradoxVBZw/ܿNN)\(?JJQi+1 word monologuesJJKNNK?i+1 word detractsWDT?INi+1 word parlanceJJ!rh?NNP!rh i word teachVBZ\(\߿VBHzG @VBPGz?NNvNNPjti-1 tag+i word IN railwayVBP#~jԿVBGOnNNNbX9?i-1 tag+i word NNP unitsVBZ5^I ˿NNP5^I ?i+2 word convertibleNNSʡENNJ +?JJ%C?NNPV-?i-2 word inactivationJJ{Gz?NN{Gzi+1 word lobbyingJJ(\?NN(\i-1 tag+i word VB pediatricNNL7A`пJJL7A`?i-1 tag+i word PRP singledVBNv/?VBDv/ i suffix xonNNClNNP333333@NNPSZd;OJJQi-1 tag+i word DT oozeNNSSNNS? i-1 word ageNNSV-VBZV-?i word compoundNN)\(?NNSNbX9JJV- i+1 word to PRPMb?RBx&1?EXSRBSʡE?RBRCl˿JJR;On?CCV-UHMb@''x&1?POSClTOK7NNSv/?RP+ VB㥛 ?NNPSI +?JJSףp= ÿPRP$|?5^FW-?VBNx&?JJ"~jPDTK7MDV-?WDTp= ףؿDTx&1?NNPT㥛 CD|?5^?IN(\ҿVBGˡE?VBP"~?NNMb@VBDq= ףp?VBZv/?i-1 tag+i word WP speaksVBZ+?VBD+i+2 word nicheNN7A`JJ7A`? i word crunchJJR|?5^JJNNP +VB(\@NNK7? i+1 word branNN(\?JJʡERB^I +i-2 word proliferationNNQ?JJQi-1 tag+i word , traveledVBNClVBDCl?i+1 suffix getVB-?VBNX9vCDv?VBGX9vNNPS"~j?NNK7AFWClVBP+η?RBy&1JJZd;O?RPMb?INX9vDT㥛 ?NNSZd;?NNPL7A`?i-1 suffix seaRP'1ZIN'1Z?VBZʡENNSʡEͿNNP$C?NNPS&1? i+1 word tileNNSNNS~jtӿJJGz@#i-1 tag+i word `` kindertotenliederFWI +@NNPI +i-1 tag+i word DT armyNNʡEտNNPʡE? i-2 word let RPS?NNZd;VBDˡENNPCl?VBS[$@RBsh|?VBP ףp= JJh|?5ֿNNSS i+2 word byVBDʡEݿIN/$?JJSuVFW/$CCJ +?CD(\?PRP$333333?VBGv/?VBZS㥛NNS'1Z@NNP+RBSuV?RBRlJJRK7VBNDl@DTx&1?RB`"?NNS?POSGz׿PRP333333VB/$տPDTHzGVBP(\JJ5^I ۿRPjtNNPS-i-1 word predominantlyVBPK7A`տJJI +ֿNNPʡE? i word fossilJJ ףp= ?NN ףp= i-1 tag+i word WP$ filmsNNSQ?NNQ!i-1 tag+i word JJ extracurricularJJn?NNnڿ i word meanVB|?5^@RBV-VBDSVBPx&@JJZd;ONNSx&1i-2 word profitableRBR^I +?VBDuV?JJR^I +JJ"~VBN'1ZĿi-2 word seeingRBRSNNPnJJRS?JJPn?i+2 word overlyRB/$IN/$?i+1 word clausesJJT㥛 ?NNT㥛 i-1 tag+i word JJ existsVBZףp= ?NNSףp= i-1 tag+i word WDT toreVBPq= ףpVBDq= ףp?i word topgradeJJm?NNmi+1 word debenturesJJ"~j?VBDFx?VBNxNN~jt?CDK7A`տi-2 word accordsRB&1VBD&1?i-1 tag+i word IN invest\/netNNSNNPl?NNPSi-1 word securitesNN|?5^VBD333333JJףp= @VBNL7A`i+2 word representativesDT(\CD(\?RBn?INn i suffix NoJJjtNNV-CDV-UHy&1?RB~jt?DTo!@NNSףp= NNPV-i-2 word emergency NNtV?VBDZd;?VBNbX9PRPtVVBZI +EXX9v?WDT1Zd?RBX9vIN1ZdNNS"~j?i-2 word africaRBGz?NN"~?INGzNNS"~i-1 tag+i word CC broadcastingVBGCl˿NN?JJ-i+1 word crooksVBGZd;JJZd;?i+1 word collectedNNS~jt?NN~jtۿi-2 word institutionsVBVBG?RB5^I ۿRBSlҿVBNl?VBP?JJy&1i word definesVBZ\(\?NNS\(\i-1 word centsNNףp= ?VBN!rhJJRGz?VB/$ݿRBRGz߿i word automobileJJ1ZdINV-NN@i-1 tag+i word VBD quickRBV-JJZd;O?VBN^I +i+1 word bearingVBGV-JJOn?NN/$ݿi-1 tag+i word TO soundVBtV?NNtV i word waterNN^I +NNP^I +?i-2 word distributingNNV-NNSV-?i-2 word airwavesVBGMb?NNMbi word allrightniksNNSrh|?NNrh| i-2 word tripVBGx&1?JJKNNJ +i-2 word parallelJJQ@NNQ i+1 word growWDToʡDTB`"?NNSK7?VBZK7INMbX9ܿ i word bootsNNSK7ANNPK7A?i+2 word u.s.aJJClNNPCl?i+1 word disorderlyVBn?DTnڿi-1 tag+i word NNS appearedVBN#~jVBD#~j@i-1 tag+i word PRP needMD rh?VBٿVBDClVBNClVBPCl@VBZ= ףp=i-2 word mildewNNS%CNN-?FW"~ i-1 suffix aNNPFx?VB#~jCDףp= ۿJJSffffffVBPףp= RPZd;JJR}?5^I?$Q?NNPSlJJx& @VBZnDT$C?VBD^I +PRPm?PDT(\VBGMҿVBNCl?IN(\RBS㥛?NNSoʡWRBX9vRBR}?5^I@FWʡE?NNm @ i suffix celVBPx&1?VBDx&1i-1 tag+i word JJ ironicJJQ?NNQi-1 tag+i word CC nynexVB333333NNP333333?i-1 tag+i word , wantedJJtVVBDtV?i+1 word averagedWDTsh|??INsh|?i-1 tag+i word DT extrusionNN?JJ i word sankVBDE@VBGzRBoʡJJS㥛NN%Ci-1 word watchingJJ9v?NN9vʿi-1 word imprimisNNX9v?JJX9vi-1 word easingCDMb?NNSMbi-1 word sauerkrautJJ?5^I @NNMbX9RBZd;O߿i-1 suffix odeRP(\JJRx&RBRd;O@RB$CINffffff?NNPSPRP$Pn@NNPS\(\ i word rarelyVBPQRBn @JJ(\VBD+i+2 word throwingNNPn?JJPn i word flatVB"~JJX9v@NN~jtVBNK7ARBB`"NNS|?5^i-1 tag+i word NNP !YEARCDx&?NNPSZd;OտNNPSi+2 word indicatorVBG+NN rhJJ+?JJS rh?i-1 tag+i word ( nyseNNPSHzGѿNNPHzG?i+1 suffix eapNNx&1?JJx&1i-2 word gettingNN㥛 VBDMbX9VBNMbX9?RB\(\׿INS?NNPCl?RPMbX?JJ^I +i-1 tag+i word NN removesVBZV-?VBDV- i-1 suffix fmNNPSZd;NNPZd;?i+2 word icahnDT^I +@VBw/?VBGn?JJw/ܿNNnRBL7A`INSi-1 word disputeWDTq= ףp?IN/$VBZV-?DTm?NNSV-i-1 tag+i word NN unlikelyJJjt?RBjti-2 word hoffmanVBD\(\?VBPzGJJ1Zd?NNX9v׿i tag+i-2 tag WDT IN VBP/$EX"~?DT)\(NNPMb?NNX9v?VBDx&1?CD(\?JJZd;?VBZ)\(NNSENNPS(\ҿRBClVBNuVi-1 tag+i word NNP holdingsNNPSS?NNS$C@NNPJ +i+1 suffix cobJJMbNNPMb?i-1 tag+i word CC preventVB/$ۿVBPS?JJ;Oni+2 word inchesVBN?RBѿi+1 suffix iamVB?NNi tag+i-2 tag VBN VBNNPS$CRPףp= @PRPzG?RBjt@NNSENNP?WRBX9v?RBST㥛 ?JJST㥛 VBD(\?JJzG?$ClۿNNL7A`PDT/$INʡEVBNK7DT+@RBRʡE?JJRZd;O?VBGV-׿WDTzGVBQCDoʡտEXp= ף?i-2 word cosmetics NNP;On?NNPSʡEVBPn?VBZףp= JJK7A`?NNS/$?NN rh?VBDQVBN}?5^Ii-1 tag+i word NN subordinatedJJd;O?VBD9v?VBNʡEi-1 tag+i word NNP torresVBPlNNPl?i-1 word practicingNNʡE?VBp= ףNNSZd;i-1 tag+i word TO securitiesNNPSd;O@NNPd;Oi-1 tag+i word VB englishNNPJ +JJJ +?i word analyticalVB5^I JJ5^I ?i-2 word practiceRBR-WDT1Zd?RB/$?DT1ZdVBGS?JJuVNNQ޿i-1 tag+i word VBZ draggedVBDjtVBNjt? i word scarceVBNFxNNSJJRˡEJJ%C @VBS㥛i-1 word leslieVBZ㥛 NN?5^I ?NNPNbX9i word stealingVBG+?NNX9vJJCli+2 word handsVB{Gz?VBDFxVBNQοWDTrh|ϿINsh|??DT9vNNS+i-1 tag+i word `` confidentialNNP\(\?JJ\(\i-1 tag+i word VB subjectVBNX9vJJX9v?i-1 tag+i word '' asRBxINx?i-1 tag+i word NNS buildVBPGz?JJ"~ʿVB/$ i word attachJJ7A`VBP{Gz?NNOni-1 word schoolIN +?VBZA`"NNSA`"?VBV-NNx&?VBP?WDT +i-1 tag+i word CC boeingVBG/$NNP/$?i-1 word unclearWDTd;O?WPd;Oi word workdayNN +?VBD +i-1 tag+i word VBD accusedVBNV-?JJV-i-1 tag+i word NNS headedVBN333333?VBD333333i-1 suffix fbiRBʡE?NNPSʡEi-1 tag+i word NN managersNNPSDl?NNSDli+2 word dramaticVBPX9v?VBGX9vi-1 tag+i word JJ fillyNNSnNN(\?RB|?5^i tag+i-2 tag VBP JJRBR +?JJ;OnDTV-?NNP`"?RPK@JJR +VBPx?WDTrh|?VBNM?NNSJ +INGzVBZ(\RBףp= NNlVBDZd;?i+1 word franklinJJQNNPQ?i-1 tag+i word RB repaidVBPw/VBDw/?i-1 tag+i word DT heftyJJ/$?NN/$i-1 tag+i word RB feelVBV-?VBPh|?5?JJKi-1 tag+i word -START- assetsDTZd;NNSZd;?i+1 word extremelyVBZZd;O@POSZd;Oi word ashurstNNPSK׿JJ&1INrh|NNP9v? i+2 word atVBNOn?NNoʡ?VBDv?POS?VB}?5^I?NNPS;OnINV-VBP}?5^IWDTClDTffffff?RPd;ONNSHzGٿNNPnRBREԸ?VBG/$FWFx?JJ"~j?VBZ\(\?EX~jtJJRCl?UHzGRBffffff?CCK7CD ףp= JJS7A`?i-1 word executionsVBP(\RB(\?i+1 word figuresNN~jt?VBNMb?WDTl?RB$CDTlNNPZd;VBףp= JJx&?i-1 tag+i word NN gregoryJJ-NNP-? i+2 word won VBN'1Z?NNS'1ZNNPRQNNPSV-?NNZd;OJJSʡE?VBDDl?RBSʡEVBPDli-2 word immediatelyVBL7A`пRPClNN/$?RBZd;OINd;O?VBZDl?i+2 word affiliateNNSx&1NNx&1?i-1 tag+i word PRP$ travailsNNʡENNSʡE?i+1 word insectsVBZV-?JJ9vʿNNHzGi-1 word parliamentVBDZd;@VBNJJrh|i-1 tag+i word : bredVBNZd;OVBDZd;O?i-1 tag+i word NNP isVBZʡE?NNPʡEi+1 word cambridgeWDTx&1INx&1?i-1 tag+i word DT hiddenJJ333333?NN333333i word newspapersNNPS^I +NNS^I +?i-1 tag+i word CC disposalNN/$?NNS/$i-1 tag+i word NNP specificallyRBn?NNni-1 word intriguingNNV-?JJV-i-1 tag+i word CC abductionNNMbX9?INMbX9ܿi-1 tag+i word IN seaNNSq= ףpNNv/@JJSi-1 tag+i word ) visitsVBZFx?VBPFx i-1 word oct.CDsh|??NNPsh|?i-1 word sparksVB5^I NN5^I ?i+1 suffix cubNNh|?5?JJh|?5 i suffix ENIJJ'1ZNNP'1Z?i-1 word unforgivingVBG$C?NNzGJJSi+1 suffix morJJ= ףp=?NN= ףp=VBP= ףp=i-1 word takeoversVBP^I +JJ+?IN;On?i-1 tag+i word PRP$ borrowingVBGn@NNK7JJK7ɿ i+1 word net VBD rh?RB&1JJR(\DTX9v?WDTGzVBZOnIN rhJJ rh @NNK7FWQ@RBR~jtؿVBNbX9?NNPZd;i-1 tag+i word NN cheaperJJR^I +?NN^I +i+1 suffix dex WDTʡENNSlNNPQ@NNPSףp= NN`"VBNA`"CDzGDT;On?VBGx&?VBDq= ףpտJJ ףp= ?IN= ףp=ڿi word joustingVBGI +?JJI + i-1 tag+i word -START- sometimesNNSV-RB~jt@JJʡENNP㥛 i word overseesVBZPn@VBP{GzJJR rhVBDi+2 word berraINV-?NNPV- i word irkedVBNI +?JJI +i-1 tag+i word IN lightJJx&1@CDy&1NNGz?RBKRBR+i+1 word computerizedJJ333333?NN333333i-1 tag+i word DT disquietingJJCl?NNClɿi+1 word argentinianRB+ηIN+η?i-1 word acceptsJJv/?RBv/i-1 tag+i word NN giantVBPףp= NN-@JJV-i-2 word diamondsJJS~jtNNP~jt?i-2 word surveysINHzG?DTHzGVBPn?VBnҿ i+2 word wellVBPʡERPV-JJSv?IN"~?VBGw/DTuV?NN"~j@VBN%C?NNP;OnNNPSV-?NNSn?WDTuVRB~jtؿVBZ+?JJʡECDSi-1 word cattleVBDZd;?WDT?5^I ?VBNZd;IN?5^I i word vehementlyVBZRB?i word hamburgerRBR rhNN rh?i+1 word decreaseNNbX9?JJbX9i word intercontinentalJJDlNNPDl?i+2 word toyotaNNP-?NNPS-JJʡENNʡE?VBNClRB~jtIN~jt?NNSCl?i word clementsNNPS\(\NNP\(\?i-1 tag+i word NNPS sikesNNSmNNPm?i word countryNNV-?NNPV-ڿi-1 tag+i word CD scheduleNNʡE?JJʡEi-2 word retirementVBNZd;ONN|?5^VBDZd;O?NNS|?5^?i-1 tag+i word `` crabNNS?JJSi-1 word marketingINn?VBZjtNNSX9v?RB|?5^NNQ?VBNnCD;On?JJuVi-1 tag+i word DT estimatedNNvVBDS㥛JJ rh?VBNNbX9?i+2 word recalculationsVBNffffff?JJffffffi word solidarityJJ?5^I NN1ZdNNPCl @i word basketballJJq= ףpDTd;ONNSMbVBV-RB\(\NNZd@VBPClǿ i word shadyJJPnNNPPn?i-1 tag+i word NNP militaryVBPSJJV-?NN{GzNNPV-¿i+1 word minersJJ"~?NNP"~i-1 tag+i word TO gloryNNPSd;ONNʡE?NNPCli-1 word colombiaNNK7ARBK7A?i-1 tag+i word NNS extendVBPGz?NNGzοi-1 word potentJJQ?NNQi-1 tag+i word PRP$ useJJQ޿NN/$?RBSi-1 tag+i word POS colonialNN +?JJ +޿i-1 word potentiallyVBVBGZd;OJJR!rh?JJZd;O?RBRnҿi+1 word strengthJJSZd;O?VBN;OnRBS㥛VBGKJJK7A@NNPn?i-1 word televisedJJzGNNPsh|??NN= ףp=?i-1 tag+i word -START- hundredsNNSn?NNPni-1 tag+i word DT unificationNNQNNPQ?i+1 suffix kkiJJ-?VBD-i-1 tag+i word . businessNNMbXѿNNPMbX?i-1 tag+i word -START- scottJJGzNNPGz?i-1 tag+i word NNS sellVBPV-ҿRBd;OVBGz?i-2 word airportJJx&1ܿVBG5^I NN?i word deutscheFWFx?NNL7A`?JJ|?5^NNPQi word merchandisingVBG|?5^NN/$@RB\(\i-1 tag+i word WP comeVBP1Zd?VBD1Zdi-1 tag+i word `` dustNNx?JJxi-1 tag+i word IN travelerNNMb?NNPMbȿi word responsibliltyNNSjtNNjt?i-1 suffix lic JJ'1ZINI +VBZ +?NNPSʡE @RBzG?RBR~jt?VBPuV?NNP\(\?VBGK7NN;OnPOS^I +?NNSNbX9i-1 tag+i word , builtVBNK7VBDK7?i-1 tag+i word CD neededVBNˡE?VBDˡEܿi-1 tag+i word PRP seldomVBP5^I RBp= ף?VBDʡEi-2 word homeownersVBClVBPzG?NN~jtÿi tag+i-2 tag RP VBD NNoʡ?CD;On?WDTA`"JJʡE?RBRV-VBNK7RBS㥛?IN"~?DT#~jNNS/$?JJRV-?VBGvi-2 word declaredJJ/$?NNCl˿JJRx&1ܿi-1 tag+i word NN parallelsVBZffffff?NNSClɿVBDMi-1 tag+i word PRP suddenlyVBZx&1RBx&1? i+2 word cftcINh|?5?RBh|?5i word experimentalJJ= ףp=?NN= ףp=i-1 tag+i word RBR stringentJJ r?NN rؿi-2 word maintainedJJV-?NNV-ҿi-1 tag+i word JJ cultNNQNNPQ?i-1 word lossesRBV-?INtVVBDʡEVBNʡE?RBRK7 i word birdJJX9vNNX9v?i-1 tag+i word DT nightmareNNm?JJm i word lbosNNS'1Z?NNrh|NNPK7i-1 tag+i word IN processedVBNn?JJni+1 word automotiveNN!rh?RBR/$RBlNNPnVBK7A`?JJtV@i-1 tag+i word POS reportingVBGvNNv?i-1 tag+i word JJ measuresNNSGz?NNGzi-1 tag+i word TO frankfurtNNPS rNNP r? i suffix odaNNSnJJx&1NNZd;?NNPJ +@i word waldorfJJ~jtNNP~jt?i+1 word proceedingsRB ףp= JJKNN^I +?i-1 tag+i word CC drewNNPSZd;NNPZd;?i word redefiningVBGsh|??NNsh|?i-2 word adviserNNP(\?VBG5^I ?NN5^I JJ(\i-2 word metzenbaumsNNPSx?NNPx i suffix ZEDIN!rhԿNNPMWRBV-VBNFx?i-1 tag+i word CC involvedVBNHzG?VBD^I +VBP1Zdi+1 word salvadorNNX9vϿNNPX9v? i word escrowNNX9v?JJ7A`RBy&1 i word woollyJJCl?RBCli word neglectedVBNp= ף?JJp= ףi+1 word hands VBPw/ܿJJjtƿRBENN^I +ǿVBD+?VBNh|?5?PRP$V-?PRPV-ڿVBZ!rhi-2 word shownNNCl?VBNʡERBR(\пJJQӿVBZ= ףp=NNS= ףp=? i suffix eicVB ףp= JJ ףp= ?i-1 suffix udeNNzGVBDˡEEX+?INGz?NNPl@NNPSjtJJ^I +?JJRK7A`?WDT/$RB#~jDT ףp= ǿVB(\RBRK7A`VBZL7A`?NNSZd;O?VBG/$?VBNffffff?i-1 tag+i word JJ tropNN/$ƿFW/$?i+2 word francoVBNʡE?JJʡEi-1 tag+i word `` freeJJ?5^I ?NN?5^I i-2 word reviseNNS%C?NN%C i word sleekJJn@NNni word apparentlyVBNRB?i-1 tag+i word RB grenadaVBPK7ɿNNPK7? i word shawVBX9vJJX9vNNuVNNP/$@i-1 tag+i word JJ suchPDTKNNSV-JJV-? i-2 word grabNNl?JJli-1 tag+i word `` educateVB/$?NN/$i-1 tag+i word DT followingNNq= ףpJJ +Y@VBGK7Ai word previousJJS?NNPSi-1 tag+i word VBP tighterJJR rh?NN rhi-2 word strokesRBRSJJS?i-1 word mythsWDTxINx?i word circularsVBZ9vNNSffffff?NNV-i word chasersNNSJ +?NNJ +ɿi+2 word scientologyNNPV-?NNV-i-1 tag+i word PRP$ shelteringVBGS?NNSۿi word arkansasNNS/$@RB#~jNNPQi+1 word fujitsuINx&1?WDTx&1i-1 tag+i word PRP aboutRBQINQ?i-2 word operatesNNSp= ףVBGGzRB +?NNQ?JJ+VBZp= ף? i+2 word coNNPy&1@NNPSZd;@NNV-JJ1ZdVBZV-NNS(\i-1 tag+i word WDT revenuesVBPMbNNSMb?i-1 tag+i word -START- taxiNNPZd;ONNQ?CDli-1 tag+i word IN pennzoilNN^I +׿NNP^I +?i-1 tag+i word DT auctionNNQ?NNPQ i+1 suffix {VBZ+VBDɿNNSMbpJJ5^I NNPy&1|?RPSRB~jt?VBN?VBPClPRP-?VB}?5^I?NN1ZdINx&1VBG~jt?DT@i word belongingsNNS+?VBZ+i-2 word russoJJ$C?NN$Ci-1 tag+i word `` isVBZ-?NNP-i-2 word foodsJJ= ףp=?VBN%C?NNDli-1 tag+i word DT russiansNNPS\(\?NNS\(\i-2 word sleddingRBK?JJMIN~jtؿi+1 word treesNNK7A`?JJK7A`i-1 tag+i word JJ basemanVBNoʡNNoʡ?i word disguisedJJMb?VBDNbX9VBN333333?i word tentativelyRPV-RBV-?i-1 word trucksJJ%CVBPV-?VBNjtNNQVBDjt?i-1 tag+i word PRP argueVBPCl?VBDCli-1 tag+i word NNP askingVBGjt?NNjti word dreadedVBK7JJK7? i-1 word hessNNSʡEVBDʡE?i-2 word medical WDTQ?JJS㥛?VBn?VBGuVVBNX9v@VBPh|?5NNPS㥛пNN r?VBD rhINQNNS9v? i word faresVBZ/$NNS/$? i word nextNNPSB`"VBDX9vVBNX9v߿VBPx&1NNJ +RBuV?INZd;@NNSZd;NNPx&1JJOn @FW^I +CD+VBZ/$JJRv/i+2 word grainVBG?5^I ?NN?5^I i suffix aloRBMbXѿNNPMbX? i-2 word took NNuV?VBNRQ?NNP%CԿRPd;O@RB-JJ@IN-VBGB`"NNS ףp= i-1 tag+i word , aloneVBZ= ףp=RB= ףp=?i+1 word veritracVBNuVJJuV?i-1 tag+i word DT culturalJJZd;O?NNSNNP~jti-1 tag+i word MD weakenVBQ?VBNQi-1 tag+i word VB golfingVBGuVNNuV?i-1 word syntheticNNSS㥛NNQ?JJ-ֿNNP;On i word seeksJJK7AVBZ333333@VBNbX9NNx&ѿVBDsh|?VBPZd;Oi+2 word publishingVB5^I VBG/$NN5^I ?JJ/$@i+2 word insinuendoVBNV-VBDV-? i word crewNN(\?VBN-RBw/ i word punyVBZK7AJJ%C?NNw/i-1 tag+i word DT hypotheticalJJOn?NNOni-1 word europeanJJSNNS-NNPQ?VBd;ONNPSףp= VBGV-NN)\( @i-1 word acquiresJJR~jt?RBR~jtÿ i word avecVBZ rhVBPףp= FW㥛 ?i-1 tag+i word NN 'n'CCQ?POSQi+2 word casinosNNPy&1NNy&1?i+2 word seldomJJ~jt?NN~jti+1 word teknowledgeJJnNNPn?i-1 tag+i word UH priorJJ rh?RB rhٿi-2 word newspaperJJx&1?VBDV-?NNh|?5RB"~jVBNV-i-2 word matureVBNV-VBV-?i+2 word budgetsRBy&1INy&1?i-2 word joggingJJRQNNQ?i word permissibleJJ"~?NN"~i-1 tag+i word CC leavesVBZ/$?VB/$ i-1 word oweDT= ףp=?IN= ףp= i suffix ASANN-ƿNNPˡE?NNPSSi word orchestrationNNZd;NNPZd;?i word flatteryJJv׿RBRy&1NN{Gz?RBSi-1 tag+i word VBD cautiousVBNK7A`JJK7A`?i word incrediblyRB/$?JJ/$i-1 word pharmaceuticalNNPT㥛 ?NNPST㥛 ؿi-1 tag+i word NN upsideRB@NNnJJMi+2 word mitsubishi NN/$?VBNw/?VBZK7NNPGz?NNPS-RB{Gz?VBDw/ĿJJ/$ NNS/$? i+1 word liltJJx&1?NNK7NNPCli-1 tag+i word JJ downwardNNrh|RBʡE?JJoʡ?i-1 tag+i word PRP merelyVBP333333ۿRB333333?i-1 tag+i word DT pointVBP333333?NN333333i-1 tag+i word NNS tradingVBG/$?RBZd;NN"~?i-1 tag+i word RB projectedVBNtV?VBDtVi-1 word selectionVBZd;O?NNSd;OֿRBS?NNSi+2 word ninetyCD(\?VBNZd;OJJClVBD%Ci-1 tag+i word JJ grayNNI +JJI +?i-1 tag+i word IN resolvingVBGv/?NNv/ i suffix aiiNNPSؿNNS rh?NNPA`"i+1 suffix iciNNPSzGNNPzG? i word soonerVBRQJJ/$NNK7JJRDlRBR/$@RBMb @i+1 word productionsPRP$HzG?JJI +?NNI +ֿPRPHzGi tag+i-2 tag VBG JJRVBP|?5^?NNSHzGNN|?5^CDHzG?i+1 word embodyNNPp= ףNNPSL7A`@WDTE?JJrh|INEпi word talentsNNS+?NN+i+1 word barelyNNPS+NN+?i-1 word storageNNSZd;?VBN%CVBZQi-1 tag+i word NN rogersNNSMڿNNPM?i-1 tag+i word , n.jNN ףp= NNP ףp= ?i-1 tag+i word NNS plannedVBNZd;OVBDZd;O?i+1 word broadcastNN%C?FWMڿNNP= ףp=VBP +ֿJJ= ףp=? i word armyVBy&1NN?VBPQοJJ-NNSnNNPʡE?i-1 tag+i word : tuckedVBN333333?VBD333333i-1 word pravoRB|?5^?NN|?5^i-1 tag+i word -START- daihatsuNN+ӿNNP+? i suffix treFWףp= ?NNPSX9vNNףp= NNPX9v?i-1 tag+i word NN careVBPZd;NNSQNNL7A`?i-1 tag+i word VBZ simpleJJ?NNٿi-1 suffix dayWDTK7JJRffffffƿNNSX9vVBPK?UHSDT ףp= ?VBx @NN|?5^VBD|?5^?VBNOnÿRB= ףp=VBZ333333?NNPZd;?JJZd;VBGv RBRPOSOn?IN5^I @RPy&1?NNPSQ@ i+1 word eauxFWS?NNS;OnNNPx&1i-1 tag+i word NNPS priorVBP(\RB(\?i-1 tag+i word IN vodkaNNS;OnNN;On? i word loseVB ףp= @VBPx @RBx& JJZd;VBDzG i word holyJJoʡ?NN +NNPT㥛 ?VBPK7A` i word slumNNS+NN+?i-1 tag+i word CD eggsNNS"~j?NN"~j i suffix phyFW1ZdJJQ NNSQNNP1Zd?VB;OnNNPSlNNF@i tag+i-2 tag PRP$ ``CDS㥛?NNZd;׿JJQNNPx&1?DTtVi+1 word mentorJJh|?5?NNPh|?5i+2 word decreasingCDSNNSrh| @JJ}?5^INNPp= ף i suffix sidNN5^I @NNP5^I i-1 tag+i word JJ chiefJJ ףp= @NN ףp= i-1 tag+i word VBP turnkeyNN%C?JJ%C i+1 word deiRBRV-NNPV-?i-1 tag+i word VBD energizedVBNbX9?RBbX9 i word branNNSV-NNV-?i+1 word walkingDTK7?NNPuV?RP/$ѿRBK7ٿIN~jti-2 word icahnINX9v?RPX9vRBRX9v?JJRX9vοi+1 word receiptsNNSuVNN}?5^I?JJQi+1 word sportingNNn?NNSni-2 word employersNNSףp= NN rh?JJ rhVBZtV?NNPSMbX? i-1 tag+i word PRP unfortunatelyRBK7A`?JJK7A` i word dairyNN}?5^I@RB-JJMbX i word plaidNN/$ſJJT㥛 ?VBN/$޿VB+i+1 suffix matJJ"~?NN`"NNPjti+1 word insofarNNh|?5@RBx&1JJ= ףp=i word flashesVBPKNNSK?i-1 tag+i word JJ behaviorNNGz?JJGzi word labeledVBNI +?JJ ףp= VBD?5^I i-2 word dalyDT/$IN/$?i word unassumingVBGClJJCl?i+1 word demonstrationJJR1ZdNN1Zd?i-1 tag+i word IN importsNNSK?FWKi+1 word revenueRBV-JJRNbX9?VBDE?IN(\ؿRBRGzDT(\?VBGjtRBS9vVBN$C?WDTQJJ"~?NN r?VBPS?NNSX9vNNP"~?i-1 tag+i word RB mappingVBG{GzԿNN{Gz?i tag+i-2 tag FW NNSDT+FWףp= ?EXMbRBʡE?NNPףp= i-1 tag+i word IN solubleJJMb?NNMbؿi+2 word splendidlyVBP+NNSGzVBNQ?JJQVBZ ףp= ?i-1 tag+i word DT codaJJ(\NNP(\?i+1 word phoneVB(\NN(\?i+1 word deputiesNNPSx&?NNPx&i-1 tag+i word TO consistVBx?NNxi-2 word saturdayVBK7A@VBPI +VBNsh|?i+1 word wandaVBNd;O?VBDX9vֿNNPQ޿i-2 word rublesNNSV-NNX9v@JJ/$i-1 tag+i word RBR nextJJʡE?RBʡEi+1 word concern NNS&1 @NNPK7AMDjtNNPSNbX9VBDx&1VBZI +DT7A`?IN7A`VBQVBGv?NN rh @VBN~jtJJL7A`?i-1 tag+i word NNS kickVBDh|?5VBPS㥛@NNPS rhNN + i suffix losNNPS/$?NNSjtƿRBClJJ-ۿNNP1Zd? i-1 tag PRP$RB&1NNS1Z@RBSV-?INJ +JJRQ?VBZ= ףp= RPT㥛 FWx&1?VBGd;OVBNbX9ȶ?NN"~j @NNPh|?5?CCnVBD-VBPSJJQ@CD?NNPSbX9?JJSNbX9 @DTtVVBd;ORBRZd;i word scornfulJJQ?NNQ i+1 word bornNNv?JJvi+2 word orderingVBGS?JJSi-1 tag+i word NNP cautionsVBZffffff?NNSffffffi-1 tag+i word DT broaderNNT㥛 JJRK7A`@JJ㥛 i-1 word memoVBNClVBDCl?i-2 word transactionJJRQؿNNCl?VBD^I +VBNClRBV-߿NNPv/?i-1 tag+i word , flushNNClۿVBDV-JJMb?i-1 tag+i word -START- gdpNNNNP?i word districtNNPZd;O?NNPSZd;ONNZd;O i word larryNNPGz?JJGzFWHzGi-1 tag+i word RB assuredVBDX9vVBNX9v?i-1 tag+i word NNPS ideologicalNNS+JJ+?i-1 word studiosVBPZd;O?RB7A`INZd;O i+1 word desVBNS㥛JJDlVBD333333?NNZd;@VBGZd;i-2 word finnairVBN333333?VBD333333ӿi+2 word absurdVBGq= ףpNNq= ףp? i-2 word robVBZ/$NNS/$?i+2 word yesterday JJK7NNS㥛@VBDVBNV-?POSX9vNNPtV@VB/$NNPS{GzVBGI +ֿRB(\?VBZjtNNSDli-1 tag+i word VBP tumblingVBGGz?JJGzi-1 tag+i word JJ rebatesNNS333333?VBZ333333i-1 tag+i word RB confusedVBNRQJJK7A?VBDx&1i word underscoredVBN~jtVBD~jt?i+2 word reorganization VBNOnJJV-INV-VBjt?NNPn?DT= ףp=?NNP rh?VBDd;O?PDT= ףp=#i-1 tag+i word -START- conservativeJJK?NNPKi-1 word crushedVBNJJ?i-1 tag+i word VBD rejectedVBN333333?JJ333333i-1 tag+i word NNS supportedVBN$CӿVBD$C?i-1 tag+i word NNS becomeVBDI +VB%C?VBPNbX9?VBNrh|IN{Gzi-1 tag+i word RB utilizeVBZd;?JJZd;i-1 tag+i word VBZ marriedJJJ +@VBNJ +i+2 word stripsVBNw/?VBDw/i word unloadingVBG@JJS㥛NNbX9i+2 word educationalJJ~jtNNP~jt@i-2 word salvageVBG\(\NN\(\?i+2 word approvedVBG|?5^NNEJJS㥛 @VBZSNNS333333NNPPn?i+1 suffix teaJJ!rh?VBD!rhi-2 word toughWDT?RB(\ſIN)\(VB;On?VBGˡE?NNʡE i-2 word caVBsh|??VBN+RB(\µ?i+1 suffix zenJJ1ZdӿJJRSDTCl?NNx&RBRS?i-1 tag+i word : asideVB +NNS\(\RBMb@INQ޿i-1 tag+i word JJ investorsNNPSʡE?NNS~jtNNPPni-1 tag+i word PRP$ bodiesNNSQ?NNQi+1 word lyingNNS= ףp=?NNv/INT㥛 ?i-1 tag+i word DT overRP|?5^RBl@NNZd;׿IN#~ji-1 tag+i word WDT overseesVBZ= ףp=?VBP{GzVBDi word cautiouslyVBClRBK?JJA`"i+2 word strangledVBN\(\?VBD\(\i-1 tag+i word DT historiansNNPSRQNNSRQ?i-1 tag+i word CC extendedVBNKJJK?i-1 word valleyVBDFxNNZd;?NNP5^I ?i-1 tag+i word NNS advancedVBN+VBD+?i+2 word outlookNNPS?5^I ?NNP?5^I i-1 tag+i word VBD sentNNRQVBN7A`@JJFxi word belongsVBZS㥛 @NNSS㥛 i+2 word nicaraguanVBGMbXNNMbX?i-1 tag+i word RBR fleetNN(\?JJ(\տi-1 tag+i word JJ romanticJJGz?NNPGz׿i word assaultRPGzNNGz? i-1 tag (VBPX9vDTMb?NNSSPRP rh?JJS?NNv/RB~jtVB(\@UH㥛 ?NNPsh|?VBZffffffVBDT㥛 JJR/$FW9v?VBNZd;O?INS?CDQ?NNPSX9v?VBGh|?5?i-1 tag+i word VBN eagernessNN&1?RB&1i word o'clockRBd;O@NNvJJA`"ۿVBD(\i-1 tag+i word NN envisionsVBZDl?NNS rhٿVBD9vi-1 tag+i word DT maturitiesNNףp= NNSףp= ?i-1 tag+i word NNP q.NNPDl?NNPSZd;NNrh| i word chidesVBZ|?5^?VB|?5^i+1 word digitalVBX9vDTxJJX9v?INx?i+2 word illusionRBCl?NNCl i+2 word moreNNP\(\CC$C?PDTS?RBR rhVBGA`"?WDTCl@JJX9v߿VBDsh|??NNSDlJJRh|?5@VBS㥛@INzGNNPSRQпFW+VBN`"DT+RPbX9NNV-VBPK7?VBZ rh?RB}?5^I̿CDS?UHKi-1 tag+i word DT gruelingJJ!rhVBG!rh?i-1 tag+i word JJ christmasNNPS?5^I NNP?5^I ?i+2 word creamNNPGzVBX9vNNRQ?JJ~jti-1 tag+i word CC increaseVB/$@JJSNNQi+1 word profitabilityNN/$RBRQJJv/?VBN~jt?JJRˡEi word againstMDw/VB㥛 ڿINʡE@RBRMNNP~jt i word paidVBNM@VBPbX9RB~jtVBZSNNSʡEJJ!rh NNVBDS@i-1 tag+i word NNP consultingNNP`"?VBG`"i+1 word curatorJJ|?5^?NN|?5^i-1 tag+i word PRP$ aerospaceNNX9vNNPX9v?i-1 word playwrightVBZ\(\׿POS\(\?i-2 word institutesNN"~jԿNNP"~j?i-1 tag+i word PRP$ wholeJJ(\@NN(\i-1 tag+i word VBZ amplifiedVBN= ףp=?JJ= ףp=ʿi-1 tag+i word DT fieldsNNS+?NN+i-1 tag+i word NNP signaledVBZZd;OVBDZd;O?i+2 word indexNNRQVBD|?5^VBPףp= ?NNSS㥛?VBףp= POSʡE?VBZʡERPjtNNP/$@VBGq= ףp?JJ r RBjt@NNPS7A`JJR%C?i-1 tag+i word -START- healthyJJGz?RBx&1NNP)\(i-2 word purgedNN+VBGK7AJJ&1@i-1 tag+i word VBN no.NNPoʡNNx&?$ClۿRBK7A`տi-1 tag+i word VBP budgetsNNy&1NNSy&1?i-1 tag+i word NN hatVBZ~jtWDTmRBRjtĿNNx&1?i-1 tag+i word NNS expectJJ(\VB9vVBPS? i-2 word weilNNPS(\@NNSZd;NNPn i word videoNN)\(?CC{GzVBNp= ףпJJ^I +ǿIN5^I ˿NNPQ? i word interNNPS"~jNNP"~j?i-1 tag+i word IN matchVBPS?VBDSi+2 word deflatorJJV-?NNV-i-1 tag+i word RB busyVBNPnJJv/@RBPnNNʡEi-1 tag+i word PRP overbidVBDsh|??VBPsh|?i-1 tag+i word CC demandsVBZQNNSQ?i-1 tag+i word -START- likewiseNNMbNNP ףp= NNSx&1RBw/]@#i-1 tag+i word -START- periodicallyLS +RB +?i-1 tag+i word NN developsVBZv@NNS{GzFW~jti-1 tag+i word NNS spreadVBPVBNbX9?JJS㥛VBDh|?5?i-2 word moneyDTQNNPS㥛?VBx&1JJR'1ZWDTZd;OVBNL7A`?VBP/$@IN$CRP$C?VBDGzPDT+?VBGQ?NNSNbX9VBZ rhNN~jtCCʡE@JJHzGRBףp= @i-1 tag+i word -START- equippedJJ+ÿNNPsh|?VBNʡE? i word sodasNNSbX9?NNbX9i-1 tag+i word TO freerVBJJR@i-1 tag+i word , sweatNNh|?5?VBZClVBP/$ٿi-1 tag+i word DT investingVBGL7A`JJrh|߿NNS㥛?i-1 tag+i word CC chortledNN+VBD+?i-2 word suspectJJSNN r?EX1Zd?RB1ZdNNS^I +?NNP~jti+2 word jenniferVBN?VBDi-1 word profitedJJR(\?JJq= ףpRBR(\RBq= ףp? i-1 tag+i word -START- ownershipNNP㥛 ¿NNQ?SYMjti+1 word representNNSGz?NNGzi-1 tag+i word NN producedNNSV-VBNMb@JJ rhVBDi-1 tag+i word PRP$ !HYPHENVBGNbX9NN(\CDjt?JJ rh?NNSJ +NNP^I +?i-1 tag+i word VBN paperworkNNGzֿNNPGz?i-1 tag+i word IN margaretNNPS9vڿNNP9v?i+1 word registrationNNX9v?JJX9v i+1 word ways RP`"?NNJ +JJR1Zd?JJ~jtIN`"VBG\(\?VBпVBP(\?NNSK i suffix icaJJMbNNPS@NNPSX9vi+1 word viewersJJE?VBDERBRA`"JJRA`"? i-1 word gearRBy&1?IN ףp= DTQRPK7A?NNp= ףWDTQ?i word reservesJJClNNP#~jNNStV@i-1 tag+i word , offeredVBNx&1?VBDx&1ؿi+1 word advanceJJˡERBRh|?5?NN/$?i-1 tag+i word , aboveINK7?RBd;OVBDףp= i-1 word clueINX9v?VBDX9vi word preciselyVBSRBM?JJQѿi+1 word balzacNNV-VBN ףp= ?JJCl i word help VB!rh @RPʡEJJQVBPJ +@RB/$NNS;OnNNP+NN^I +@VBDʡEVBN|?5^ i+1 word zDTB`"ɿNNPGz@NNClRB}?5^IFWCli-1 tag+i word DT asianJJv/NNPffffff?JJStVοi+1 word hallsVBNʡEJJʡE? i word peggedVBN}?5^IJJ~jtVBD-?#i-1 tag+i word -START- constructionNN|?5^@NNP|?5^i-2 word throwsRP^I +RB^I +@NNnRBS1ZdJJS1Zd?JJn? i+1 word siteVBGw/JJv/?NNw/?NNPv/i-1 word pointIN+RP7A` @NNq= ףpVBDlJJRM?RBRHzG?WDT!rhRBZd;?i+1 word dangerousRBSjt?JJSjtRBR333333?JJRzGJJK7RB5^I ?i+1 word eyebrowJJ5^I ?VBNʡE?NN5^I VBDʡEi-2 word rangingNN/$@JJ9vIN{Gz?NNSGzNNP1Zd?VBGK7RB{Gzi+2 word emeryvilleDT(\?IN(\i word disasterRPRBtVNN|?5@SYM= ףp=JJʡENNPsh|?i-2 word chemical VBNB`"ɿRBRv/VBPB`"۹?IN7A`NNS+VB?5^I ڿVBGZd;?NN(\?VBDK7?JJ}?5^IVBZ+@ i word motifsNNS+@NN+i-1 word struggleRBsh|?RPsh|??i-1 tag+i word IN balancesVBZMbX9?NNSMbX9Ŀi word protectingVBʡEVBG)\(?NN?5^I i-1 tag+i word , focusedVBN1ZdVBD1Zd? i-1 word runsNNx&1?RBRlVBNClPRP̿INK7?PRP$?VBG-VBD%C?VBZףp= JJRClRBh|?5?RPm?CDnNNPn?i-1 tag+i word IN prematureJJV-?NNV-i-1 tag+i word , cutJJ!rhVBDMbpVBPn?NNV-VBNS?i+1 word meltzerNNP\(\?RB\(\ i+2 word teamVBNvJJx&NNP+?NNPS"~jNN +@VBDjtRBRK7ѿJJRX9v?i word screechedVBZd;OVBDd;O?i+2 word puddingNNSPn?NNPni+1 word smokingJJK7A?VBvVBN ףp= ?NNvi+2 word connectionsJJR&1?NNGz߿RBR"~ji-1 word renamedJJ~jthNNP~jth?i+1 word mobileVBNEJJ1ZdVBSۿVBPFx@i-1 tag+i word JJ mainframeNNV-?JJV-i-1 tag+i word CC ultimatelyRB+?JJ+i+2 word downwardRBZd;?NN%CJJ333333 i-1 word barVBGK7NNS\(\?NNK7?VBZ\(\i+2 word congratulatingVBGFxNNFx?i+1 word delayJJ㥛 ?VBG㥛 RBR!rh?RB!rh i suffix ditVBX9vϿNNS@RBST㥛 VBP/$JJsh|?NNSV-NNP%C? i word swellVBZvVBjt?VBPv?NNjti-1 tag+i word VB counselingVBG rhNN rh?i-1 tag+i word VBG bidVBp= ףNN-VBN1Zd?RB~jti word supremeJJT㥛 ?NNT㥛 i+2 word allegedlyVBZd;ONNPS;OnNNSn?NNP"~j? i-2 word hurlWDTHzG?INHzGi tag+i-2 tag RBS NNRPGzJJ&1VBDrh|ϿVBNv?RBw/INCl? i-1 suffix e.NNSbX9?NNbX9i-1 tag+i word DT overloadNNP^I +NN^I +?i+1 word ghostsVB㥛 VBG㥛 ?i word reportersVBZ rNNS"~j?JJMbi-1 tag+i word NNS gridlockedVBNnJJn?i word sectionNNK@VBD-VBN+JJv/VBZףp= NNPX9vi-1 word dangerWDTX9vINX9v?i-1 tag+i word IN federallyJJV-RBV-?i-1 word subjectsVBGtVJJ+?VBZm?NNSzGVBPtV?i-1 tag+i word NN prizesVBZ333333NNS`"?NNni-1 word casesVBVBG/$?NN/$VBD;On?VBN;OnҿVBP?i+2 word tepidINMbX9?NNPMbX9ܿi+2 word commandJJS㥛?NNA`"LS|?5^ɿi-1 suffix payVBNbX9?RPx&?VBDZd;OտIN(\DTMb?NNP!rhVBPZd;O?RB\(\NNjtJJRX9v?JJ rCDGz?VBN"~j?NNSQ?i-1 tag+i word DT chineseNNPS1Zd @JJT㥛 ?NNrh|NNPI +i-1 tag+i word JJ thrustNNSV-NNV-?i-1 tag+i word PRP prettyRB/$?VBD/$i-1 tag+i word CC runVBNy&1?NNQVB%C?VBP r i-2 word eauxDTv/?INv/i-1 word professionalsVBNFx?VBDFxi-2 word standingVBGPn?NNPni word travelsVBZףp= @NNSMbNNPrh|i-1 tag+i word VBG rerunsNNSm?NNmi-2 word generationsCDd;OοJJx&?IN/$NNSx&1VBG?RB'1Z@NNKi-1 tag+i word -START- regieJJZd;ONNPZd;O?i-1 tag+i word TO radiosVBK7NNSK7? i word f.o.bJJS?RBSi+2 word sellsVBMbNN~jt?VBNJJ~jtVBZʡE@NNSZd;O׿i word intenseJJzGa@NNzGa i word kanjiNN}?5^IJJA`"FWB`" @ i word deemedVBNZd;O?JJrh|VBDA`"i+1 word resnickPRP$-NNP-?i word refurbishingVBG~jtNN~jt?i+2 word shiftingVBNV-?VBDV-i+2 word voyeurismNNSnNNn?i-1 word condoneVBN?JJ1ZdVBDK7ѿi-1 word piedmontNNPSL7A`NNPL7A`?i-1 tag+i word DT longtermNN\(\JJ\(\?i-1 tag+i word VB pleasedVBNCl?VBDClɿi-2 word invokingJJvNNPv?i-1 tag+i word , distributeVBL7A`?NNS(\NNi-1 tag+i word POS thinnestJJS rh?NN rhi word resultingVBGx&1@NNjtJJˡE@i-2 word hollywoodNNSףp= ?NNP㥛 NNPS;Oni-1 tag+i word VBN tariffCD(\µNNPvNNB`"?i+1 word informalJJsh|??NNsh|?i+1 word tankerNNSQNNS?JJ~jt i word knockVBMbX?RBRSNN\(\i+1 word comparisonsJJoʡ?NNoʡſi-1 tag+i word NN coachingVBG\(\NNn?JJMbX9i word lendersNNP#~j?VBZClNNPS#~jNNS$C?NN(\ڿi-1 word winterVBZd;ONNPS"~j@VBGClNNCl@NNPQ i+1 word {NNPy&1|?RPSRB~jt?VBN?DT@VB}?5^I?NNSMbpJJ5^I INx&1PRP-?VBG~jt?VBZ+NN1ZdVBDɿVBPCli+1 word peaksJJB`"?NNB`" i+2 word j.VB ףp= NN ףp= ?JJx&1?NNPx&1i-1 tag+i word CD yearNNZd;O?JJSNNPNbX9 i-1 word soleNN1Zd?JJ1Zdӿi+2 word lancetNNSffffff?RPffffffi+1 word associatesVBZd;?NNPS/$?JJZd;NN;OnҿNNPZd;Oi-1 word connecticutVBNClVBDCl?i-1 tag+i word PRP suggestVBZ;OnVB;On? i word patrolVBZd;NNMb?JJ{Gzi-1 tag+i word VBG edgeNNx&1?JJx&1i-1 tag+i word CC crusadeNNM?NNPMi-1 tag+i word -START- aimedVBNn?NNPni+1 word recountsVBZClWDTRQ?RBCl?INRQi-1 tag+i word NNS putVBPClٿVBDCl? i word suitedVBNoʡ?VBDoʡi-2 word sellerJJHzG?NNHzG i+2 word chipCD%C?NNP%Cܿi-1 tag+i word JJ profitsNNSA`"?NN(\ſNNPV-i word diseasesVBZzGҿNNSzG?i-2 word poweredNNSClNN-?JJ rhi+1 word graspJJʡE?NNʡEi+2 word recessionVBHzGNNPHzG? i+2 word ill.NNPSMbX9NN^I +NNPV-?i+1 word phonesDTˡE?UHˡE i suffix dogNN9v?NNS9vi-2 word temptationVBq= ףp?NNq= ףpi-1 tag+i word PRP$ motivesVBZ+NNS+?i-2 word houstonVBHzGNN#~jNNP5^I ?i-1 tag+i word DT separateJJ9v@NNoʡJJR$Ci-1 word ensuringDTףp= INףp= ?i word reproductiveJJK7?NN#~jNNPMbX9? i suffix OLSRB-ӿNNP-?i-1 tag+i word CD squareNNX9vNNP?5^I ?JJCl?i-1 tag+i word JJ heavyJJQ?NNQ i-2 word saltVBNw/JJ9v?VBDffffff?i+1 word dropsJJ7A`?NN7A`i+1 suffix ideJJ!rh?NN7A`VBDd;O?VBZClVBy&1?POSjtWDTNbX9ؿRBMbX9CCrh|VBN rh?VBP#~jINK7?DT%C?NNSK?NNP$C@NNPSV-VBG㥛 CDZd;?i-1 tag+i word DT kitschyJJ;On?NN;Oni-1 tag+i word NN teamVBD+WDT/$NNV-?i+1 word highsNNp= ףVBDp= ף?i-1 tag+i word JJ nightsNNP+NNPS+?i+2 word puritanicalRB+?CCvDTPni+2 word asepticallyRPh|?5?INh|?5i-1 tag+i word -START- combinedVBNvJJv?i-1 tag+i word NN scopeNN~jtx?VBD~jtxi+1 word reshuffleNNS"~NNP"~?i-1 tag+i word NNP viewVBffffffVBPffffff?NNPܿ i-1 word samNNPST㥛 NN9vNNPK7A`?i-1 tag+i word CC launchedVBmտVBDm? i+1 word yaWP㥛 ?JJR㥛 i-1 tag+i word JJ pieceRBˡENNS~jtNN?i+1 word subcontractorsJJ;On?NNP;Onڿi-2 word handsJJˡEĿINZd;O?PRP$rh|RPjt?RB~jtNN;On?VBP'1ZPRPrh|? i word pausesVBZ|?5^?NNS|?5^i-1 tag+i word VBD approvedVBNCl?INCli-1 word universitiesVBPK?VBDKi+1 word roomsVBGRQNNHzG?RBR/$ֿJJR/$?VBP`"JJ|?5^i-1 tag+i word NNS launchedVBN ףp= VBD ףp= ?i-1 tag+i word VBD strangeJJK7?NNK7i+2 word carsonJJQٿNNQ?i-1 word customNNPS?5^I ?NNP?5^I i-1 tag+i word , earlierRBRMb?RBMbi-1 word resultingVBNCl?NN~jtVBDClJJ~jt@i+2 word clear RPRQ?VBNS㥛ԿJJ-?VBZCl?NN/$VBDV-?POSClVBP'1ZINRQi word bizarreNNSZd;OJJX9v @NNZd;OVBDGz i suffix IEFNNP`"JJI +?NNEԸ i word threwVBDuV @NNS rhNNK7A`RBV-i-2 word implementedRBJ +VBJ +?i-1 word immunitiesWDTmINm?i-1 tag+i word NNS violatedVBNK7?VBDK7i-1 tag+i word RB prohibitedVBN(\?JJ(\ i word virtueNNSB`"NNE?JJh|?5 i-1 word 'llVB7A`?VBP㥛 RBQ?i-1 tag+i word NNS gatheringVBPoʡVBG㥛 NNn@i word cervicalVBoʡJJoʡ?i-1 tag+i word POS topJJp= ף?NNp= ףi-1 tag+i word `` yieldedVBD)\(?VBN)\(i-1 tag+i word DT lawsuitJJZd;VBNK7ANNSFxNNM @ i word atlasJJNNP?i-1 tag+i word DT marriedVBN!rh?JJ!rhi+1 word februaryVBNx&1JJQ?VBD/$?i+1 word recoupNNQ?JJQտi+1 word theatreVBPnPOSJJX9vNNPMb@$i-1 tag+i word -START- manufacturersNNPS^I +NNSCl?NNPGzi-1 tag+i word DT sunNNCl?VBPCli+2 word constitutedJJDl?NNPDlѿi-1 tag+i word , fetchVBZOnVBy&1?VBP;Oni-1 tag+i word DT balloonNN+?NNS+i-1 tag+i word CC nonworkingVBG#~jJJ#~j?i-1 tag+i word DT announcedJJQ?NNxVBNT㥛 "i-1 tag+i word -START- furthermoreNN rhѿRBRHzGѿJJRffffffRBNbX9 @INNNPZd;Oi-1 suffix lthNNPS(\ҿNN~jt?JJRffffffVBP"~jVBZPnNNSMbX9?NNPGz?i-1 tag+i word DT guardianJJQNNPQ?i-1 tag+i word VBG westwardRB)\(?NN)\(ܿi-2 word softwareVBZ;On?VBN333333JJ;OnVBD333333?i+2 word playersCDoʡ?JJsh|??NNPV-VB ףp= ?RBA`"ۿNNX9vVBNoʡi tag+i-2 tag : VBGNNSA`"VBG9v?NNn?NNPZd;Oi-1 word primeNNP%C?VBsh|?NNPS= ףp=NN)\(?CCOn?JJnNNSx&1?i-1 tag+i word RB comicNNSSVBNHzGJJM? i suffix 967JJq= ףp?NNq= ףpNNPX9vCDX9v?i word interiorJJ"~jNN"~?NNPV-?VBPQۿNNS"~ i+1 word sixVBDS?VBNzG?JJMbX9IN9v?NNPvRP9vRB-?NNSi-1 tag+i word `` mulitiplierJJQ?NNQi word recklessJJGz.@NN㥛 0FWZd;߿i-1 tag+i word -START- geeksNNSh|?5?NN'1ZNNPMbi-1 suffix sonVB-ֿRBffffffƿVBNV-VBDV-?POSNbX9?VBP~jtPRPx&1?JJh|?5ֿDTI +?NNPtV?NNPS/$?VBGy&1?VBZnٿNNSQNN(\i word blockadeJJ`"VBNMbXNNV-?i-2 word insistPDTA`"?VBPMbJJA`"NNMb?i+1 word observatoryNNSʡENNPʡE?i-1 tag+i word RB counterJJR|?5^RB|?5^?i-1 word clauseVBGv/?NNv/ i-2 tag EXNNPPDTQݿRBR/$VBNMb VBG'1ZVBDK7A@CCS㥛?JJRMb@JJZd;߿VBZT㥛 ?DTy&1?VBQRB\(\׿NNS?NNSl?i-1 tag+i word VB niceJJL7A`@RBNbX9NNh|?5i+2 word easedJJV-?NNPp= ףCCCl׿i-1 word capitaNN-?NNP-i word queriedVBNV-?JJV-i+1 word fractionallyRP`"޿RB`"?i+2 word modestVB?5^I ?VBD?VBPq= ףp?VBZZd;NNS~jtNNP~jt? i word wineNNS ףp= NN ףp= ?i-1 tag+i word VBN reportVBPsh|??NNsh|?i word researchesVBZGz?VBDGzi+2 word happeningWDTuVJJJ +?RBJ +ѿWPuV?i-1 tag+i word -START- ncaaNNP'1Z?RB'1Zi-1 tag+i word , songNNv/NNPv/?i+2 word positiveVBNvVBDv? i+2 word tonVBN/$?JJR ףp= ?VBD/$RBR ףp= i-2 word standardVBG-NNB`"?JJʡE?VBDvi tag+i-2 tag ( NNS VB-?NNPS$C?VBGQ?RB!rhܿNNB`"?VBPL7A`JJQIN{GzܿNNPi-2 word originatingVBZQNNSQ?i-1 tag+i word NNS attributeVBP|?5^?VBD|?5^i-1 suffix ledINPn RBRrh|VBP;On?CDQ?VBNClJJHzGWPx&PRP$7A`NNPS+?NNP`"WDTMbXVBGHzGVBZX9vPRP/$@RPX9v@RB ףp= ?NNtV@VBD;On?JJRrh|?DT`"?NNSMb?i-2 word leaveNNS?VBX9vJJx&1?i+1 suffix sic JJ7A`?VBDSRBSHzGVBPp= ף?VB;OnVBGMb?VBN ףp= ?RBK7AVBZ+NNK7?JJSHzG?i word disturbingJJ+?NN+i-1 tag+i word CC chemicalsNNPS1Zd?NNP1Zdi-1 tag+i word NN reproductiveJJV-?NNV-i-1 tag+i word PRP$ viewsNNS +?NNSJJ|?5^i-2 word breakingVBNOnJJOn?i-1 word coordinateNNSuV?RBuVi-1 tag+i word VBZ worseJJR/$?JJZd;RBR + i word mopVBZd;O?NNZd;Oi-1 tag+i word MD spellVBoʡ?RBoʡݿi-1 suffix san NNPSX9vVBG?RB~jtNN rhPOS~jt?VBPp= ףVBZx&1̿NNST㥛 ؿVBD~jt?VBN/$JJ'1Z?CDMbX9NNPS㥛? i word sharedVBD!rhVBN/$ @JJ'1Zi+2 word pharmaceuticalsINL7A`WDTL7A`?NNPS#~j@NNSv/ݿNNPV-i-1 tag+i word JJ solderingJJZd;O?NNZd;Oݿi word screensVBPnNNS㥛 @NNxVBZI +i-2 word mgm\/uaVBNHzG@VBK7A`VBP#~jܿi-1 tag+i word DT telesystemsNNPSSݿNNSS?i-1 tag+i word JJ pretaxJJI +?NNI +i-1 tag+i word NN thanksNNS~jt?VBZ~jti word overflowingVBG-?JJ-i-1 tag+i word NNS broughtVBN= ףp=?RBQVBD(\i-1 tag+i word NNS quizJJRNN'1Z?VBPCl i-1 word blocVBZ-NNS-?i word enduredVBN9vVBD9v?i word abortionNN= ףp=?NNP= ףp=i tag+i-2 tag VB NNP RBR/$ѿVBGbX9?NNP㥛 ?JJR/$?RPJ +?RBx&?NNbX9ֿVBDd;OINDlVBN/$?JJ'1Z?NNS~jtVBZ!rh?i+1 word instituteRB-ӿNNP)\(?JJClNNPSˡE?NNZd;߿ i-2 word atNNSNbX9RBS~jtRBRʡECDףp= ?WDT!rh?JJSӿVBZSPDTsh|?ݿJJR?VBGm @DT"~?NNPV-?NNPS{GzVBD rVBPL7A`?RP$?NNMbX9?FW^I +?POS?RBw/ԿVBNzGEX"~?INtVJJSE?VBl?i-1 tag+i word TO announceVBZd;?NNZd;i+1 word yesterdayVBZV-NNP1ZdNNPS/$@JJ+wFWI +ƿRBRˡE?RB9v?VB"~j?VBD rhѿJJS'1ZNNS9v?VBGFxNNq= ףp @VBNHzG@VBP\(\JJR{Gz?i-1 tag+i word NNP legacyJJQNNQ?i-1 tag+i word VB evenJJ)\(?RBmݿDTRP;On¿i+2 word hostileJJR^I +?IN'1Z?VBZq= ףpտDT'1ZԿVB(\?VBDPnRBR^I +i-1 tag+i word `` pereNNPMb?RBnFWnҿi-1 word operatorsVBZSVBPS?i-1 tag+i word RB shakenVBNQ?JJQi-2 word disclosuresJJ5^I ?NNQRB"~j?i word fairwayNNJ +?JJJ +ɿ i-2 word grayNNS㥛 VBPoʡ?VBG(\?NN-ӿi+1 word communistJJ?5^I ڿNN㥛 NNPl@ i word nobleNNOnۿJJOn?i+1 word proportionNNx&1ԿRBRZd;OJJx&1?JJRZd;O? i+2 word cdsNNPQVBZףp= NNSףp= ?JJB`"?NNni+2 word republicanVBN-?JJ-ƿ i word sisterJJX9v?CD-NN|?5^ڿi+1 word newcomersVBGsh|??JJsh|?ſ i pref1 pJJS&1VBDw/?VBNd;O@NNSV-@JJRZd;ϿFWw/?VBPQ @NN/$@MDh|?5PRP$X9vRBRGz CDm INʡE@VBGL7A`?JJFx@VBZx&@DTV-UHL7A`NNPSx&1RBx&1 @VB= ףp= @CC333333@RBS+EXClRPT㥛 PRPQNNPR-i-1 word slowingRB`"INV-RPtV?i-1 suffix araNNPSw/NNPw/?i-1 tag+i word NN depressantNNI +?JJI +i word bureaucraticNN rhJJ rh?i-1 tag+i word NN sheetVBPzGNNzG?i+1 suffix t&tDTlINZd;O?WDT)\(VBNMbX9VBDMbX9?i-1 tag+i word VBG hospitalNNMbX9?JJMbX9 i-2 word veto VBPvJJ +VBG;On?RPT㥛 RBjt?NNClVBDS㥛@INT㥛 ?VBv?RBR(\VBNv/JJR ףp= i-1 tag+i word IN digitalNNJJ?i-1 tag+i word VBZ reassuringVBG r?NNp= ףJJMbX9i word propertyNN㥛 @JJ(\NNPsh|?i-2 word referVBKJJK?i-2 word specialistVBD`"VBP`"?JJd;O?NNPd;Oi-1 word cockroachesRB#~j?JJ#~ji-2 word tetanusJJ rVBNnNN? i word motorVBsh|?ݿRBSSNNDl@JJ|?5^i-2 word sundayVBZS?NNSSi-1 tag+i word CC relatedVBD?5^I VBNK7?JJˡE?i-2 word budgetedRBDlINDl?i-1 tag+i word PRP$ virtueNNh|?5?JJh|?5i-1 tag+i word VB witnessNNPK?NNKi word modifiesVBZ rh?NNS333333JJRCli-1 word surprisingIN9v?DTffffffRBV-ݿi word fanfareVBMbX9ԿNN= ףp=@JJNbX9i-1 tag+i word CC graftedVBN\(\@VBD\(\i-2 word establishingVBGʡEÿNNx&1?JJ rhi-1 tag+i word , togetherCC/$VBPI +RBI +@INQi word crouchedDTV-VBNV-? i word admitVBZxVBP1Zd@NNX9vi+1 word reformersVBGSJJV-@NNjti word capitalNN)\%@RBR|?5^JJZd;ߏ VBZbX9NNS;OnNNPףp= ?i-1 word breakersVBN^I +VBD^I +?i-1 tag+i word '' exclaimsVBZK?NNSKi-1 tag+i word VBG personnelNNSoʡ?NNoʡi-1 tag+i word VBP mccawNNPv?NNPSvi-1 tag+i word VBP loathVBNsh|?NN#~jĿJJm?VBPZd;Ͽ i word n.m.NNA`"NNPA`"? i+2 word soJJCl?WDT rh?RBx&1?VBZCl绿NNP(\?VB rVBG|?5^DTffffff?NNSPn?JJRKRBRS㥛VBPK7?INMNNPS7A`?RBS~jtCDʡE?NNV-?VBN rؿi+2 word styledNN~jt?JJ~jti-1 word moves RBʡE @VBD!rh?JJRjt?RBRjtܿVBNEJJˡENN-VBPMbNNSʡEi-1 tag+i word , lucioVBZDlNNPDl?i-1 tag+i word NN workingVBGZd;@JJK7NNˡEܿi-1 word therebyJJMbVBv/?NNffffffVBGMb?VBNZd;?i word tweakingVBG/$NN/$?i-1 suffix rapWDT+?VBGjt?JJjtֿIN+ i+1 word guysNNI +NNPI +?i word necessarilyVB/$RB/$@JJCli+1 word sluggishnessVBNV-ݿJJV-?i-1 tag+i word RB belowINl@RBV-VBP~jtNNMbпJJ~jti-2 word tracesJJX9v?NNX9vi-1 tag+i word IN dawnNNSX9vRB+JJ?5^I NNffffff@i-1 tag+i word DT tautJJʡE?NNʡEi+2 word subletVBZjt?NNSjt޿i word finnairNNS!rhNN rhNNP^I +?i-1 tag+i word NNP medicineNNPI +NNI +?i-1 word managedNNsh|??JJsh|?i word precedentNN"~j?JJ"~ji-1 tag+i word NN supportsVBZX9v?VBDX9v"i-1 tag+i word -START- conspicuousJJ rh?NNP rhi+1 suffix ancNNPtVֿVBD +@WP(\VBPJJtV?INDli+1 word tonightNNPHzG?NN/$?RB$CJJHzGJJRbX9i-1 tag+i word POS wingVBGʡENNʡE?i+2 word stoneVBP\(\NN\(\?i-1 tag+i word , mich.NN +NNP +?i-1 word hauntingPRP$x?PRPxi-1 tag+i word NN waertsilaeMDjtNNPjt?i word constructionNN+?NNP+i-1 tag+i word PRP debutVBQNNQ?i+2 word embarrassingNNS|?5^RBRMbX?JJRMbXVBZ|?5^?i-1 tag+i word , muscularJJQ?NNQi-1 tag+i word IN scribblingVBGS?JJSi-1 tag+i word NN definesVBZT㥛 ?NNST㥛 пi+1 word assumptionDTDl@WDTv/VBNCl?JJCl߿INni+1 suffix lin JJR9v?VBGMbNNEVBDq= ףpINQ?RBR9vVBNMb?RBQVBZd;JJ+?NNPX9v @i-1 word stayedNNS?5^I JJ?5^I ? i word lastsVBZM?NNSy&1IN+i-1 tag+i word DT weaknessesNNS= ףp=?NN= ףp=ҿi-1 tag+i word RB negotiatedVBN5^I ?JJ5^I i-2 word keepingJJGzNN+?RBRlJJRjt?RBClNNSCl?NNPffffffNNPSV- @i+2 word tonightNNClRB$CJJ/$ݿIN@ i suffix HUNNNPy&1VBPbX9@NNni-1 word mightyJJMb?RBMb i+2 word leoNNtVNNStV?i-1 tag+i word DT claimsJJnNNSʡE@RBRx&1 i+2 word took CC?5^I @VBNtVCDNNP{Gz?JJ|?5^?NN)\(@RBKINxƿNNSK7NNPSSFW;Oni-1 tag+i word , visualVBZ +JJ +?i tag+i-2 tag VBG NNPSNNv?RBvi-2 word counterbiddersNNQNNPQ? i word slidesNNSMb?NNPMbi-1 tag+i word RB declaringVBGm?NNmi+2 word barringNN(\?JJ(\i+1 suffix estVBGjt?VBN/$?VBZl?RPjt?NNS㥛?INDlNNPSbX9VBDw/ܿDTK7ɿCDGz?JJR +?WDT9vFW rhRBX9v@NNSHzGRBRuVտVBPjt?JJHzG?POSX9v?NNPʡEVBX9v?CCL7A`?JJSL7A`i-1 tag+i word NN architectsVBZNbX9NNSʡE?NN333333i+1 word thing JJ/$@RB㥛 NN;OnVBD9vڿRBSV-ݿCDx&1?PRP)\(JJSv@NNPQο i suffix -goJJm?NNmͿi-1 word stockVBDn?POSS?WDTS㥛?RPmVBv/VBG-NNQ?INʡEJJ"~j̿DTClVBZSݿVBNV-?RB9v@NNSCl?i-1 tag+i word DT beltwayNNPSx&NNPx&?i+1 word trustVBG(\ҿNNDlJJCl?NNSq= ףpNNPq= ףp?NNPSw/@ i word do VBDClVBP\("@JJSINQNNPSNNMbRBV-FWzGVBNClVBZףp= PRP$ʡENNS5^I VBn@@i word libyansNNPSʡE?NNSNNPvi+1 word somewhatRP= ףp=?RBK7JJuV?INI +ֿVBNuVݿi-1 tag+i word NNS revisionVBPZd;ONNZd;O?i-1 tag+i word DT isolatedVBNSJJS?i-1 tag+i word ( complexJJoʡ?NNoʡݿi-1 tag+i word CC scaringVBG^I +?JJ^I + i word priceNNPS5^I NNSX9vNNsh|?@NNP!rhԿi-1 tag+i word POS sanitaryJJQ?NNQ i word setsVBZL7A`?NN= ףp=INZd;Oi+1 suffix ilmNNPS!rhVBG#~jNNK7A`?VBD㥛 VBNv?JJM?NNPI +?i+1 word oppositionNNPSMVBGFxJJCl?i-1 tag+i word NNP directoryNNv?NNPv i+1 suffix ``VBPffffff?FWy&1?VBNjt?NNV-?RBHzGNNS"~MD$C?JJ?5^I VBDA`"WDTGzVBZ"~?RPtVPOS rпINh|?5 @VBGh|?5?LSxNNP|?5^VB'1Z?RBR$C?CD~jtxNNPSS㥛?JJRx&1пDT$Ci-1 tag+i word NN memoryNN!rh?JJ!rhi-1 tag+i word PRP$ prisonJJQNNQ?i-2 word requiredINoʡNNPV-׿VB rh@VBG"~jNNClۿRBSJJK?i-2 word butterfatJJZd;O?NNZd;O!i-1 tag+i word VBD heartwarminglyRB+?JJ+i-1 tag+i word , fallenVBNX9v?NNX9vi-1 tag+i word NN generalVBPA`"NNS\(\NNQ@JJ|?5^?NNPCli-1 word researchesJJGz?RBGz i+1 word samVBZMbNNPMb?i+2 word answerVBD;On?VBGy&1?VBN;OnNNPy&1 i+2 word end VBDX9v@VBNNbX9IN;On?RPjtVBZ~jt?JJ NN"~?NNSV-?RBbX9?NNPZd;O?VBG/$?i-1 tag+i word VBN cutVBNzG?JJzGi+1 word requestVBZMb`POSMb`?i-1 tag+i word CC buildingVBGGzNNZd; @JJ9vVBZi-2 word horseDT|?5^WDT|?5^?i-1 tag+i word VBP happyPDT%CJJ%C?i-1 tag+i word FW theatreNNףp= FWףp= ? i word tcmpVB/$JJ\(\NNP;On?i-2 word officialsVBG{GzĿRBR+߿RBq= ףp?INMb?VBZPnDTHzGNNS/$?VBDJJRCl?VBNA`"VB/$?NNjtJJV-@VBP/$i-1 tag+i word JJ oneNNPHzGCD +?PRP +NNw/?i-1 tag+i word NNP noticeNNP= ףp=?MD= ףp=i-1 tag+i word FW thatWDToʡ?INoʡi-1 tag+i word NN genresVBZGzNNSGz?i-1 tag+i word -START- provigoNNP^I +?NNPS&1ʿNNSZd;ONNK7A i+2 word cubJJh|?5?NNh|?5i-1 word playsNNS+NNP?WDTK7A`?RB+?INK7A`VBZ i+1 word setsRB;OnIN;On?i-1 tag+i word VBG onlyRBZd;OJJZd;O?i-1 word breathingRPX9vINX9v?i-2 word convertedVBMbXJJMb?NNbX9?NNP ףp= i+1 word resolutionVBGMbX?NN= ףp=JJq= ףpNNPK7A`?i-1 word conciliatoryNNS333333NN333333?i-1 tag+i word CC lendingVBGMb?NN}?5^I?JJ/$i word leaningVBGuV?NNuVi word legislateRB(\JJRQNNX9vVB r? i+1 word castJJ%C?NN%Ci-2 word segregationVBNDl?FWDli+2 word ghostbustingRB= ףp=IN= ףp=?i-2 word playerJJv/?NN= ףp=?NNP"~j i word galaNNS?VBDSݿi-2 word freseniusIN/$?RB/$i-2 word chapterNNSRB!rhԿVBD$C?i+2 word deathsNNuVNNSMbJJQ?i-1 tag+i word TO shipVB&1?NN&1ڿi word incomingVBGx&1JJx&1?i-1 tag+i word TO attractVB~jt@DTףp= JJˡEi-1 tag+i word RB slowlyNNSClRBCl?i word hyperinflationNNS?JJSi-1 tag+i word CC claimVBP{Gzt?NN{Gzti+1 word lettersNNʡEۿVBDh|?5?CD?VBPh|?5JJ/$ i-1 word w.JJMb?CDMbi-1 tag+i word CC naturalJJ?5^I ¿NNP?5^I ?i word proficientNNjtJJjt?i-1 tag+i word JJ fitJJMb?NNMb i-2 word coreDTvPDTv?RBv/INv/?i-1 tag+i word PRP$ arsenalNN\(\?JJ\(\i-2 word keynesianRBQѿINQ?i-1 tag+i word JJ diagnosticsNNPS9vNNS9v?i+1 suffix zelJJ+NNP+?i tag+i-2 tag WRB -START-MDV-?RBCl׿NNT㥛 VBDoʡտVBNoʡ?VBPzGʿVBZd;O?VBGʡE?POSOnJJGz?VBZOn?NNSS?NNPMbX9?CCHzGi-1 tag+i word NN vacantJJl?NNli-1 word centralNNPHzGNNPSK7AVBGPn?NN/$JJrh|?NNS"~j?i tag+i-2 tag POS RBJJ-NNSCl˿NNn? i-1 tag+i word -START- biosourceNNSV-NNPV-?i-1 tag+i word DT soldVBNh|?5?JJh|?5i-1 tag+i word VBZ deadNNnVBNK7A`JJ/$?i+1 word powerhousesJJRQ?NNRQȿi+2 word provisionalVBZI +VBPV-NNSX9v?VBDX9vi-1 tag+i word , broadcastVBNK7A`?NNK7A`i word reservoirNNPSjtNNSMҿNN/$?i word pleadinglyRBB`"?FWB`"i-1 tag+i word -START- nowhereRBjt?NNPjti-1 word overbuiltNN?NNPi-1 tag+i word IN foundNNq= ףpVBDq= ףp? i suffix 76JJSCDx?NNSh|?5i+2 word sentencesVBGZd;?JJZd;i-1 tag+i word PRP$ empireNNSQNNQ?i+2 word accumulatingVB!rhVBP!rh?i+2 word hemorrhagingRB rhIN rh? i+1 word hopeNNPSCl?RBd;OPDT/$JJDlѿDT/$?NNS)\(?NNP)\(i-2 word servesNNPSw/NNPw/?i word earlier RBOn@RBR(\5#@JJRF@NNP㥛 NN~jVBDSVBN(\VBPh|?5JJPn INQVBZGzNNSoʡi-1 tag+i word IN anchorNN㥛 NNP㥛 ?i-1 word bowlingVBZ\(\?VBx&1RPK7ANNm?i-1 tag+i word DT lastingVBG~jtJJ~jt?i-1 tag+i word RB solveVB;On?JJ;Oni-1 tag+i word RB careVBPrh|߿RBMbVB?5^I ? i-1 suffix twNNMbX?JJ9vVBZS㥛?NNS+NNP7A`NNPSjt@RB}?5^I?i-1 tag+i word WDT thatWDT+IN+?i word refusesVBZ&1?NNS&1 i word boldVBNClNNHzGJJR`"޿JJ5^I @i-1 tag+i word NN habitsNNS%C?NN%Ci+2 word fiscalNN/$?VBZJ +VB/$NNSJ +?i word consultingJJ/$NNMbX?NNP`"?VBGX9v?i+1 suffix igs NN9v?VBNZd;OVBPV-?RBˡEԿINA`"VBGJ +?JJGz@VBD r?VBZ1ZdNNPnVBMbX9 i word heelsNNSCl?NNCli+2 word linemanJJ\(\?NN\(\i-1 tag+i word `` chaseJJd;O?NNd;Oi-1 word bikiniNNGz?NNP?VBPGzi tag+i-2 tag VBN JJINMbX9JJy&1|?NN5^I ?RBS rJJS r?RB^I +ǿi+2 word range NN/$?VBPZd;O?INףp= ?DTףp= NNPh|?5VBZd;ONNPSE?CDzG?JJzGi-1 tag+i word VB licensingNN+?JJ+i-1 tag+i word VBZ repossessedVBNV-JJV-?i+2 word intolerableWDTl?INli word investorsRBJJSDTNNSX9v@NNPzG NNPS+@i-1 word bahamasVBGx&ٿNNx&?i+1 word senateNNP333333ӿVBGrh|?JJ㥛 i-1 tag+i word VBZ nicaraguanJJMb?NNPMbi-1 tag+i word NN pouredVBNA`"VBDA`"?i-1 tag+i word VB buyVBNh|?5VBʡE?NN~jt?RBx&1JJ'1Z i-2 word rockVBZX9v?NNSX9vi-1 tag+i word NNP levyVBZ= ףp=NN= ףp=?i-1 tag+i word PRP wondersVBD-ֿVBZ-? i+2 word duckVBPףp= INףp= ?i word resistanceNNw/?RB"~NNPB`"۹i-1 suffix jcpNNPSw/?NNPw/i word respectedVBNM?JJMڿi-1 tag+i word NNP businessmenNNSCl?VBDCli-1 tag+i word JJS ghostbustersNNS㥛 ?NN㥛 i-1 tag+i word IN plaintiffsNNSQ?NNQi+1 word pastureVBZ(\POS(\?i-1 tag+i word , waysNNPSp= ף?JJRMbX9ĿNNPjti-2 word topicVBP-JJMbX9?IN-?NNMbX9VBDףp= ?VBNףp= i word corporateVBQJJʡE@NNS㥛 NNPx&1i+1 word payments JJ~jtVBDK7ٿDTX9v?NNPK7VB"~j?VBNZd;ORBV-IN`"?NN(\?i-1 tag+i word DT presentNN|?5^JJ|?5^@i-1 tag+i word VBG quotronNNQ?NNPQi-1 tag+i word CC individualJJv?NNv׿i-1 word employeeNNPˡEVBZv/VBD +NNSK7A?NN&1ڿi-1 tag+i word DT firmNNףp= JJףp= ?i-1 tag+i word NN harborsVBZT㥛 ?NNST㥛 i suffix GasNNPSffffffNNPffffff?i-1 tag+i word JJ kronorNNtVFWA`"˿NNSJ +? i+1 word macLSV-RBlNNP$C? i-1 word cdsVBD333333?VBPףp= VBN(\i+1 word spinolaRBMbX9NNPMbX9?i-1 word carisbrookNNPSClNNPCl?i-1 tag+i word DT attitudeVBPy&1NNQ?JJA`"ۿi-1 tag+i word IN lighterJJRx&?NN'1ZRBR&1 i word rulingVBGrh|NN333333@JJCli word wateringVBG+NN rh?JJjtֿi-1 tag+i word CC accelerateVBsh|??VBPsh|? i suffix -40NNPSӿCDp= ףJJX9v?NN/$i-1 suffix ist NN(\?WDTNbX9RB(\VBNNbX9IN@VBZx&DT\(\NNPS5^I ?VBGuV?JJQ?VBDMb?NNS9v?NNP +?i-1 tag+i word , carefulJJMbX?NNMbX i suffix 23sNNPˡECDx&1NNSV-@i+2 word dividendNN/$VBZףp= VBGSÿJJ +?i-1 tag+i word VB careNN㥛 VB㥛 ?i-2 word discomfitJJT㥛 NNPT㥛 ?i-1 tag+i word DT chillingVBGA`"?JJA`" i word needyJJL7A`?NNK׿VB+NNSV-i-1 word portraysNNA`"?JJA`" i-2 word curbNNPףp= NNףp= ?i-1 tag+i word DT obstacleNNZd;?JJZd;i+2 word hundredsNN㥛 RB}?5^IIN}?5^I?NNS?VBX9v?JJZd;Oi+1 suffix marJJQ?RBQi+2 word prohibitiveNNPy&1?CDy&1i-1 word ultimatelyNNS+JJ/$?NN)\(̿VBD333333?VB333333i-1 tag+i word RB unsupportedJJ}?5^I?VBD}?5^Ii word woundedVBNB`"ٿJJB`"?i-1 tag+i word CC roadwaysVBZ rhVBS㥛NNSʡE?i word magnitudeNNPSK7ANNSDlNN(\?i-1 tag+i word CC recoverVBl?VBPli word crippledVBNMbX@JJZd;OVBDK7A`i-1 tag+i word IN tvsNNSNNPˡENNS rh@ i word pumpVBMbVBPMb?i-1 tag+i word WDT maybeRBK7?VBDK7 i-2 word endsNNS)\(JJ^I +?NNx&1̿i-1 tag+i word POS attemptNNSJ +ɿNNv?JJV-i+1 word brokerRP5^I VBGZd;O?NNZd;׿ i suffix 36JJtVCDtV?i-1 tag+i word NNPS externalJJ(\ſNNP(\?i-1 tag+i word NNPS likeVBףp= ?VBPV-߿INʡEi-1 tag+i word CC automobilesNN$CNNS$C?i-1 word prolongedNNSI +?RPI +NNI +?VBGI +i word focusesVBZJ +?NNS9vNNQi-1 tag+i word NNP francNNbX9?JJbX9i-1 tag+i word IN streamliningVBG1Zd?NN1Zdi-1 tag+i word TO cubaVB/$NNP/$?i word satisfactoryJJK7A@NNK7A i+2 word bodyJJA`"?NNA`"i-1 tag+i word NN yetRBNbX9@NNNbX9i-1 suffix ujoFWS㥛NNPS㥛?i+1 word hopesVBNQNNClѿJJRZd;OJJd;O?VBPV-?i-1 word pentagonVBZnNNS(\?NNMbi-1 tag+i word VBG fhaNNP333333?JJ333333i+1 word sellerJJS)\(?RBS)\(JJX9vVBGX9v?i-1 tag+i word DT weakeningJJ+VBG rhNNK?i+1 suffix skiNNffffffNNPffffff?i-1 tag+i word -START- mutualNNSoʡտJJ(\@NNPB`"i-1 tag+i word VBG thereafterRBK?NNKi-1 suffix potNNV-VBD{GzCCq= ףp?VBN{Gz?JJd;O?NNSi-1 tag+i word . banqueNN rNNP r?i+2 word promptingCCJ +ٿRBJ +?i word footstepsVBZ/$NNSףp= ?VBN㥛 i+1 suffix doNNPQRBn?NN\(\?VBDFxRBSSÿVBPQJJ-INK7ANNPS"~j?VBGGzRBRMbpDTI +MD ףp= ?VBZv׿VBQ?WRB(\?JJSS?POSZd;VBN(\?WDTGz@NNSS@i-1 suffix rksVB5^I NNʡEJJR rhVBNQDTClNNS= ףp=VBD`"?WDTCl׿RBHzG?INZd;O?JJV-NNP5^I ?RPsh|??RBRbX9@VBPn?i-1 word offered NNPSS?NNK7AJJRbX9?RBRbX9ֿINףp= ?DTףp= VBPlNNS/$?NNPv i word zetaNN~jtNNP~jt? i-1 word fmNNPSZd;NNPZd;? i-2 word same JJJ +NN rh?VBD333333?VBZvIN7A`@VBS㥛?VBG ףp= VBN333333VBPGzRB+i-1 suffix debNNPS(\@NNP(\i-1 tag+i word VBD raisesNNSʡEVBZʡE?i-1 word directlyJJA`"VB`"RBQ?VBD/$VBN`"?JJR|?5^ i word twelveCDZd;O?NNPZd;Oi-1 tag+i word VBZ virginJJR ףp= JJ ףp= ? i-2 word askNN&1?JJ&1i-1 tag+i word VB nonstopRP7A`¿JJ7A`?i-1 word countlessJJ333333?NN333333ӿi-1 tag+i word VBD onlyJJCl?VBNQRB rh? i word undeadJJ+NNP+NNd;O? i+1 word sisDTB`"INB`"?i-1 tag+i word VBZ worriedVBNDl?JJDli+2 word weepingNNSGz?VBNGzi word destructiveVB+JJ rh?NNxi word disappearedVBDX9v@VBNX9vi-1 tag+i word VB aboveRBx&1INx&1?i+1 suffix ttyRBRL7A`JJRL7A`?''GzRBzGDT/$NNP/$?RPzG?POSGz?i-1 tag+i word NNS specificallyVBP +RB +? i suffix A.NNPZd;ONNPS(\NN9v@VBDZd;CC+''EJJʡE?i-1 tag+i word CD penceJJFxVBDzGVBX9v߿NNS&1@NN333333i-2 word bringsRBA`"IN)\(RPK7?i-1 tag+i word CC detergentNN/$?JJ/$i word functionedVBDFx?VBNV-JJ-޿i-1 tag+i word VBP throughJJףp= RBCl?INPni word unsupportedJJQ @VBDQVBNQ i+2 word fell VBENNPS"~?JJNbX9?RB+׿IN-?NN'1Z?VBNMbCD"~JJRK7NNPK7?i-1 word famousJJ;OnNNPSCDV-?NN"~ji-1 tag+i word DT dramaticJJ/$?NN/$ i suffix urn JJZd;OVBPQ@NNPA`"?VBDQVBNMJJRQ롿RB%CVBZ%CVB/$ @NNPST㥛 NNMb@NNS;Oni word bloodstreamNNv?JJvi-2 word licensingNNDl?JJDli-1 tag+i word DT indictmentNNCl?JJCli-2 word thriveVBZ%C̿NNS%C?i-1 tag+i word RB importedVBNh|?5?VBDh|?5i-1 tag+i word , uncertainJJ(\NNP(\?i-1 tag+i word JJ brotherNN+?RB+ i+2 word keyJJ= ףp=INGz?NNP= ףp=?RBT㥛 ?VBNi+1 word urbanJJoʡ?NN/$VBNq= ףpi-1 word erodingJJR(\RB(\?i+1 word stuartNNPS?JJSi-1 tag+i word DT principalJJsh|?NNsh|?@i+1 word avidlyVBG;On?NN;Oni+2 word easingNNh|?5?NNPh|?5 i word actedVBNOnVBDOn?i+1 word piecedNN/$?JJ/$ i-1 tag+i word NNP stagewhispersVBZCl?NNSCli-1 tag+i word RB averageJJlNNl?i-1 word claimantsUH"~VBZS@NNS rhi-1 tag+i word DT noiseNN(\?JJ(\i-1 tag+i word NNP shipbuildingVBGI +NNPI +? i suffix venVBDV-IN/$DTNNSK7AMDffffffRP}?5^INNP\(\RBFx"@JJ1Zd?NN1ZdPDT?5^I CD)\(?VBV-VBN ףp= !@VBPClVBZZd;Oi-1 tag+i word NNP requestsVBZx&VBrh|NNSRQ?i-1 tag+i word VBG overallJJףp= ?RBףp= i+2 word americansIN"~j?WDTQDT&1NNSʡE?NNʡEi word anticipatesVBZ?JJ i word kickNNPS rhNN +VBDh|?5VBPS㥛@i-1 tag+i word POS uniformJJx&?NNx&i-1 tag+i word NN discoveredVBDV-?VBNZd;JJx&1i-1 suffix ratVBZ+?VBG㥛 ?NN㥛 NNS+ i+1 word noteVBQNNPSˡE?NNˡE?CDV-߿JJ333333?INףp= ?NNPˡEĿi-1 word grantedVBD(\?CD(\i+2 word italianNNPSV-NNV-?JJtV@NNPtVi word auctionVB"~?VBPbX9NN/$?NNPQi-1 tag+i word TO dealershipsNNS~jt?VB~jti-1 tag+i word POS presumedJJ|?5^?NNSx&1VBNCli-1 tag+i word : focusingVBG9v?NN9vi+1 word notablyRBSʡE?JJSʡEVBN/$?JJ/$ i-2 word yet NNPS rh?VBNQݿVBP~jtRBL7A`INv?PRP#~j?RPsh|?JJZd;ONNQ@UHx&1NNP ףp= i word billionsVBZ+ӿNNS+? i word godNN+JJףp= NNPCl?i+1 word picksNNSPnJJSSNNHzG@JJK7A`i-1 tag+i word PRP wokeVBZSVBDS?i-1 tag+i word CC bassoonVB+NNSmNNL7A`?i-2 word considerationDTv/PDTv/?i-1 tag+i word NN slowerJJR~jt?RBR~jt i+2 word naVBZ;On¿VBP333333PRPףp= ? i+2 word kimVBN?NN i word golfVBZClVBGV-NN rh@JJ-NNP333333i+1 word coversNN|?5^JJNbX9RBK7?i tag+i-2 tag VBG RPRBjtNNx&1пJJ ףp= INZd;O?NNP^I +?VBtVRP$C?i-1 tag+i word NNPS jaysNNPSoʡ?NNPoʡ i suffix ems VBZv@NNS}?5^I@NNPx&1JJA`"NNZd;OVBDʡEVBPvPRPʡERBq= ףpNNPSfffff@FWѿCDuVi word fruitbowlJJV-RBd;O޿RBRx&1NN7A`? i word bryanNNffffffNNPffffff?i-1 word waterNNP㥛 WDT(\NNSl¿VBD|?5^?JJx&?NN rh?VB5^I @VBN|?5^PRP)\(RB}?5^IINOnVBZOnPRP$)\(?NNPS㥛 ?i-1 tag+i word , convertibleJJS㥛?VBDnVBCl߿i-2 word gasolineVBGV-NNV-?RB$C?IN$Ci-1 tag+i word : arnoldVBZ333333NNP333333?i-1 tag+i word IN limitationsNNSM?VBNMi-1 tag+i word CC overpaidVBN~jt?VBDˡEԿVB-i-1 tag+i word , soaredNN+VBD+?i word siemensNNPSDlNNPDl?i-1 tag+i word CD 'sVBZV-POSV-?i-1 tag+i word '' followedNNS+VBD+?i word aggregateNN㥛 JJ㥛 ?i-1 tag+i word JJ tenderNNS?5^I NN?5^I ?i+1 word expectationsINzG?DT$CRPCl?JJI +NNoʡi word cont'd.VBNK?NNKi-1 tag+i word PRP$ beltNNSMbNNMb?i-1 tag+i word NNP financialJJ`"?NNP`" i word fueledJJL7A`VBD r@VBNCl i+1 word araNNV-?JJ1ZdVBN i-1 tag NNS#VBGl@NNP/$RBSS?MD㥛 ?UH"~WDTsh|??VBZB`"?POSMb@VBPM@PRP= ףp=CC9v?CDS㥛ؿ''/$JJS㥛WPMbP?DTZd;VBI +WRBsh|??RBR@INS?NNS9vLS ףp= EXClNNPSjtVBN rh?NNp= #VBD~jt@PDTjtJJS!rhPRP$ffffffFWK7ARPh|?5 @RBV-?JJRV-SYMMbX9 i word seigeNNS`"NN`"?i-1 tag+i word VB workNN= ףp=?RBKVB;Onҿi+2 word achieveVBZv/VBDv/?i-2 word farmers PRP?5^I VB/$ſRP'1Z@NNZd;O?RBSIN\(\?VBZS㥛NNSjt?NNPS1ZdJJ/$?i-1 tag+i word NNPS banksNNPSS㥛?NNS`"οNNPni+1 word truthJJRT㥛 ?NNT㥛 i-1 tag+i word JJR strangeJJx?NNxi-1 tag+i word RB shiftVBV-?NNxVBDB`"ѿi-1 word northeastNNPS-@NNST㥛 NNP{Gzi+1 suffix tioNNS}?5^I?DT?WDTJJJ +NN#~jܿi-1 tag+i word `` dueJJtV?RBtVi-1 tag+i word -START- drillingVBG!rhܿNNQ?NNP+i-1 word gambleVBP+?VB+i-1 tag+i word VBG becauseRBS㥛INS㥛? i suffix TryNNNbX9NNP ףp= VB\(\?VBPX9v?i-1 tag+i word NNS identifiedVBP9vVBN㥛 ?VBDbX9i-1 tag+i word NNS functionVBPMb?NNMb i-1 tag+i word VBZ approximatelyJJ-RB-?i+1 word congressionalNNPzGVB/$JJoʡ@NNMbX9VBDE?RB"~i-1 tag+i word DT nicaraguanNNPSMJJV-@NNPQ i-2 word pigsNNS?5^I ?JJ?5^I i-1 tag+i word CC genderVBʡE?JJRHzGNN}?5^Iܿi-1 tag+i word DT castNN)\(?JJ)\(i word courtesyVBZnNNPn?JJMi-1 tag+i word IN berkeleyNNx&1NNPx&1?i-2 word bancaNNw/FWw/? i+1 word m.NN?JJRJJHzGNNPHzG?i-1 tag+i word NN droppingNN/$VBG/$? i word callNNK?FWtVVBP(\?JJ;On?VBZOnNNP~jtVB`"y@RBd;Oi-1 word supportersVBDZd;OVBDlVBPZd;O?INDl? i+2 word mixVB;On?NN㥛 VBDCl?JJR rh?VBNClJJZd;i-2 word criticalIN(\?NNPSoʡݿRB(\NNPoʡ?i-1 tag+i word JJ crackdownNNjt?JJjt i suffix oldVB-?RP(\NNS RB;On @DT9vNNV-FW/$UH#~jVBGK׿CDFxNNPSZd;VBNZd;@VBPL7A`?NNPx&IN/$EXv/JJq= ףp @VBDS@JJRHzGVBZ|?5^ i suffix ian NNPSGz JJףp= .@NN/$?JJStVοVBNrh|NNS rhNNP7A`PVB-RBZd;Oi word superpowerNN㥛 @JJClJJRDli-1 tag+i word PRP throughRPK7?RBZd;O߿IN-i-1 tag+i word PRP figureVBʡEVBPʡE?i-1 tag+i word DT ciaNNPSʡENNZd;ONNPI +?i+1 word shipyardsVBN"~j?JJ"~ji+2 word innopacRBI +NNPI +?i+2 word fewerNNSuV?NNuVi word townshipsNNSMbX?NNMbXi word bolstersVBZK?NNSKi+2 word todayVBG{Gz?VBN/$?JJRQ?NNPԿNNPS-?POSVBZh|?5?NNS{GzVB rؿRBRQCD/$޿JJ&1NN9v?VBDQ?RB^I +i-1 tag+i word NNS rarelyVBPQRBQ?i word passionNNS?VBZSi+1 word hiborDTp= ףINp= ף?i-2 word exhibitionsVBPsh|?JJQVBDCl? i-2 word saysJJR +RP㥛 NN?VBD r?VBGl@VBZV-@MDV-JJSVBNPn?IN㥛 VBMbX9POS'1Z?WP'1Z?PRPMbRBK7ANNPSA`"RBR"~jVBPv/?NNPw/@NNS^I + i word home NNPS^I +RB(\B@NN㥛 p&@JJSClRBRX9vֿVBNGzJJx&!VB/$NNSHzGPRP$NNPv@ i-2 word betsRBʡENNPrh|߿IN|?5^?i-1 tag+i word JJ egotistNNl?JJlڿi word shakespeareJJlNNPMb?NNPS333333NN/$? i suffix uizVBPClJJRNN'1Z?i-1 tag+i word `` redingNNx?NNPxi-1 tag+i word PRP createVB5^I ۿVBP5^I ? i word petiteJJ'1Z?NN'1Zi-1 tag+i word IN damagedNNSh|?5VBNh|?5? i+2 word bustINPn?CCPni+1 word monthsJJOn @NNʡECDT㥛 ?INX9vVBG`"i+2 word loomingJJ?NNi+1 word woodruffNNRQNNPRQ?i+2 word subsidiaryNNq= ףpVBDV-VBNJJ&1@NNSCl?NNPPnVBGZd;Oi-1 tag+i word JJ readVBNDl?NNDli-1 word results VB`"?RBjtNN5^I VBN'1ZVBPMbPVBD'1Z?EX= ףp=JJn?IN{Gzti+2 word performersJJ&1?NN&1ʿi-1 tag+i word NN forecastsVBZ-ֿNNS-?i+2 word regularNN/$?IN9v?DT9vVBPvJJ"~j?i-2 word plants IN= ףp=JJV-VBPE?RBI +VBDV-ݿVBN rh?CDV-JJR{GzܿNNPDl?VBI +?VBGV-?NN +i-1 tag+i word WP 'dVBZ|?5^VBD!rh?CDT㥛 i-1 tag+i word NNP triesNNSQVBZQ? i suffix enoJJK?NNK i word rigsNNSPn?JJPni+2 word fallsVBG9vNNZd;?NNP(\i+1 word wastingVB ףp= ?RPjt?RBjtNNʡEJJKi-1 word protestVBGd;ONNd;O?i-1 tag+i word PRP !DIGITSCDClǿJJ}?5^I?VBDX9vi-1 tag+i word DT soggyNNGzJJGz?i+1 word distributedNNS ףp= ߿NN ףp= ?i-1 tag+i word VBD offeringVBG ףp= NN ףp= ?i-1 word stoodJJQ?RBHzGIN)\(i-1 suffix ookRPL7A`@RBRZd;OVBrh|JJ|?5^ʿINmNNPS +NNQVBD}?5^IJJRq= ףpPRP333333NNS`"NNPS㥛?PRP$|?5^?RBp= ף?PDTB`"WPv/?VBZjt?DT+? i word fewNNL7A`пPRP\(\RB-INV-NNS-NNPMbJJGz@i+2 word widenJJMb?NNMbi+2 word stageNNSVBP?RP9vIN9v?i-1 tag+i word DT realJJQ?NNPQοi tag+i-2 tag RP NNSIN{GzDTʡE?RPJ +?JJL7A`NNʡEVBNV-?RB~jt? i-1 word st.NNPHzGٿNNPS}?5^I?JJK߿i-2 word fragileVBZ%C?NNS%Ci+1 word forgeriesNN +?JJ +i+1 word crowdNNx&1?JJx&1i word withdrawalNNSSNNQ@JJV- i-2 word eggVBN'1Z?JJ'1Zܿ i-1 word fallNNSxNNPˡEVBFxRP +?JJ(\?NN/$?RBn?IN rhi word classifiedVBNtV޿JJtV?i-1 tag+i word , bondholdersNNSA`"?RBA`"ۿ i word built VBV-RBPnNNS㥛DNNPSxFWMbVBD= ףp= @VBNC @JJMbX9INX9vNNSZd;i-1 word glitzyJJ1Zd?NN1Zdi tag+i-2 tag : -START-NNw/@VBv?JJ/$VBZ333333NNPSK7A`PRP5^I IN'1ZNNP= ףp=VBNoʡRB ףp= DT}?5^INNSˡE@VBDFx?VBPi-1 word deductiblesVBP9v?NNSx&1VBJ +i-1 tag+i word PRP$ daughterJJR&1NN&1?i+1 word amicableJJK7A`NNPK7A`?i-1 tag+i word JJ oddlyRB ףp= ?JJ ףp= i-1 tag+i word IN findingNNlJJZd;O׿VBG\(\?i-1 tag+i word VBD lendingVBGx&1NNx&1?i+1 word lastingDT{Gz?RB{Gzi-1 suffix mahNNGzNNPGz?i+2 word shoulderINףp= ?RBףp= i-1 tag+i word RB precludedVBNQ޿JJ= ףp=?VBD(\ i-1 word n'tVBZ9vVBG= ףp=?VBDZd;O @VBPsh|?RB(\?RPZd;ODTq= ףpJJjtƿVBN ףp= ?CD'1Z?VBx@NNSbX9?INKNNPE?NNK7PDT~jtJJSERBRʡEi word supportersVBZtV޿NNStV?i-2 word geduldJJK7?VBN9vRB+i-1 suffix iroNNPnJJPn?i+1 word recruitsNN333333?NNP333333i-1 tag+i word CD knowledgeableJJ|?5^?NN|?5^i-2 word materialNNSʡENNPx&1?JJV-?NN r?VBDʡE?VBN#~jCDʡERB5^I i word invalidNNS㥛 VBNX9vJJ~jt?i+2 word dispatchedVBG$C?NN;OnJJjti-2 word pledgeRB}?5^I?VB}?5^Ii-1 tag+i word NN \*\*SYM9v?NN9vi word tendingVBGʡE?NNʡEi-1 tag+i word DT stingierJJRM?JJx&1̿RBR$Ci word jurisdictionalJJQ?NNQ i word sweepNNffffff@NNS+VBNX9vJJtV޿i-1 word magruderVBNS?VBDSi-1 tag+i word IN jailhouseNN/$?JJ/$i-2 word disputeVBZuV?NNSuVNNPnNNPSn?RBSNNKJJFx?i-1 word hearsPRP$㥛 PRP㥛 ?i-1 word disappointJJv?NNPv߿i-1 tag+i word IN goVB\(\VBP\(\?i word wiretapNN(\?WDT(\i word partialJJK7@NNK7i-2 word sherbetVBPRQVBNGzNN?i-1 word spottedJJK7?NNK7i word motivesNNK7AVBZ+NNS&1?i-1 tag+i word NN suspectsVBZ(\?NNS(\i word economicsNNMb?JJ/$VBZSӿNNS~jtNNP~jt@NNPSEi word galvanizedVBSNNS ףp= VBN+JJK7A?VBDK7@i-1 tag+i word TO sayVBM?NNMi-1 tag+i word PRP$ quakeNNx&1?JJx&1i-1 tag+i word CC rentVBP#~jNNp= ף?VB%Ci+1 word humphriesVBZ㥛 NNP㥛 ?i-1 tag+i word VB prepaidNNV-VBNףp= ?JJx&i+1 word malignantVBP/$?NN/$i-1 tag+i word JJ nearbyNNSI +RBI +?i-2 word dividendsNN-?VBNʡEVBP-?JJ|?5^?IN rhVB-RPx&1ܿRBx&?i+1 word amiraVBM?NNMi+2 word toastedNNPS~jtNNP~jt?i word guerrillaNNS%CNN(\?JJ`"i+2 word assistantNNSX9vNNPX9v?i+2 word subcontractorsNNS/$?NNP/$i+2 word adjustmentsNN~jt?VBNZd;JJZd;?NNP~jti-1 tag+i word CC manufacturersNNPSv?NNPvi-1 tag+i word VBD apparentRBHzGJJHzG?i-1 tag+i word VBG melaninNNS㥛?RBS㥛i word statutesNNK7AVBZ(\NNS rh?i-2 word subjectedVBS㥛NNS㥛?i word oriolesNNPV-?NNV-i-1 word japan NNPSA`"JJV-?VBP-?IN{GzVBZI +?VB?VBDjt?VBNv/POS"~?RB/$?NNSKNNP/$NN#~jԿi+1 word prosperityJJ ףp= ߿NNP ףp= ?i-1 tag+i word JJ asksVBZ= ףp=?NN= ףp=i-1 tag+i word -START- everyDTOn@NN(\RBQNNP+ i-2 word real NNPB`"ѿNNPSB`"?RB`"?VBDoʡVBPL7A`?WDTx&1?JJ㥛 NNST㥛 ?VBoʡNNQVBNoʡ?INx&VBZT㥛 i-1 tag+i word CC ontoMDd;ONN`"޿IN ףp= ?i tag+i-2 tag NNP CDNNS9v?VBx&1NN rhCDuV?VBNʡE?WDT(\VBZ/$NNPʡENNPS r?VBDʡEۿFW"~?POSMbX9JJuV@VBG'1ZԿi+2 word hampshireNNP"~?JJ"~i-1 tag+i word VBD recognizedVBZ+VBGzVBN+?VBDGz?i-1 tag+i word POS violentJJE?NNEi word methaneNNv?NNPvi-1 tag+i word PRP$ demiseNNV-?JJV-i-1 tag+i word JJ bannedJJVBN?i-1 tag+i word VBZ properJJRMbJJMb?i-1 tag+i word VBZ upsetVBNClJJd;O?NN333333i+2 word hotelsJJffffff?NNffffffi+1 word risenVBPX9v?VBX9v߿ i word winNNT㥛 VBDSJJR/$VBPˡE@JJV-ϿINRQVBT㥛 @RBni-2 word suppliesINA`"VBMbX9RBjt?JJCl?i-1 tag+i word JJ dataNNPS~jtȿNNSQ?NNni-2 word contactDT"~jPDT"~j?i-1 tag+i word DT franchiseesNNSM?NNMi+1 word monetaryJJzG?VBB`"ɿNNy&1RB/$ۿNNPv?i word israeliNNPS|?5^JJw/@NN/$NNPS㥛 i word knowsNNS\(\VBN^I +VBZ$C? i suffix ostVBZA`" RBףp= @JJR^I +߿VBG9vVBPKJJh|?5 RBSGz@INZd;OMD$CFWQ @NNS/$VBbX9?RBRrh|CD$CUHʡEVBDjt @NNP~jtPDTZd;ONNT㥛 ?NNPSQJJSK7A`@VBN`"y@DTv/RP~jti+1 word administrativeVBNV-VBDV-?DT9v?PDT9vi-1 tag+i word , photoVBPx&1NNx&1?i-1 tag+i word JJ complexNNSK7NNK7?i-1 tag+i word POS militaryJJx&1?NNx&1ؿi-1 tag+i word NNS yieldIN`"VBDʡEVBPS@RPV-NNMbX?i word sprawlingVBGX9v׿JJK?NN\(\i-1 tag+i word `` demandNN"~j?NNP"~ji-1 tag+i word JJS onceRPV-RBV-?i word turnpikeVBP/$NN}?5^INNPL7A`? i word armedNNPA`"ۿLS"~ʿJJy&1VBN r?i word reviewingVBGQ?JJQi-1 tag+i word NNS enoughVBP$CRBMbX9?JJv/i-1 word seepedRPClRBCl?i-1 tag+i word NN themeNNS`"NN`"?i-1 word strategistsVBPJ +?VBJ +i+2 word sachsJJ`"IN`"?i-1 tag+i word CC fennelNNSKNNK?i word shrinkageNNS-NN-? i word dipsNNSjt?NNvJJuVi word digenovaNNy&1NNP(\?VBZHzGi-1 tag+i word VBZ takeVBjtVBPjt?i-1 tag+i word IN usaNN-NNP-?i-1 tag+i word , managedVBNffffffֿVBD%C?VBPSi-1 word foreignersRBx&1NN%CԿVBDףp= ?RBR~jtVBPMbXJJQ?VB|?5^ɿVBG rh?i-1 tag+i word DT smallestJJSV-?NNV-i-1 tag+i word NN charactersVBZoʡNNSoʡ?i-1 word gargantuanVBGʡEJJʡE?i+1 suffix ivyNNSmVBNy&1?JJQi-1 tag+i word DT jamieJJ(\ڿNNP(\?i word eastmanJJ7A`NNP7A`?i-2 word associationPRP$+JJ +NNSffffffVBB`"?VBG333333ۿRBw/?VBPX9v?VBZzGNNPS + @NNX9vοVBDףp= INEDTE?NNPHzG?i-1 tag+i word NNP intrastateVBPJ +JJuV?NN rhͿ i suffix imbNNjt?JJ#~jVBKi-1 tag+i word `` resultedVBN#~jVBD#~j?i+2 word environmentalismNN?RBؿi-1 tag+i word VBD climbedVBNMb`?VBDMb`i-1 tag+i word NNP spiderNNPSClNNPCl?i-1 tag+i word JJ ownersNNS|?5^NNP|?5^?i-1 tag+i word NN teamsVBZ?5^I NNS?5^I ?i word regulatesNNS#~jܿPOSVBZ^I +?i-1 tag+i word NN forINrh|?NNPrh| i-2 word kVBD^I +VBZ^I +?VB-ƿNN-?i-1 tag+i word NN conditioningVBG ףp= NN ףp= ?i+2 word producersJJS'1Z?WDT'1Z?JJK7A?IN"~ʿNNP ףp= RP|?5^NN rh?RBS'1Zi-2 word announced VBDbX9JJSd;O?VBN&1?WDT/$?EXV-?VBx&1̿JJd;ONN)\(RB5^I ?NNPjtVBG{Gz?IN/$i word inhibitVB"~j?VBNQJJˡEi-1 tag+i word POS baringsNNPSGz?NNPGzi-1 tag+i word IN questionVBPzGNNzG?i-2 word squareNNPtV?VBNtV i suffix sseNN?FW?VBNZd;RBMbX9NNPS?NNPSSJJZd;i+1 word breakingNNʡE?JJʡEVBNx&1i-1 tag+i word DT pragmatistJJMbX9NNMbX9? i word moneyNN/$@JJNbX9NNPClNNPS(\пNNS(\i+1 word nightsVB-JJy&1?NNClNNPV-? i-2 word j.e.VBPrh|NNPrh|?i-1 tag+i word , desotoNNNbX9@NNPNbX9i-1 tag+i word NNS bestRBS +VBPKJJSx&1RBjt @i-1 tag+i word RB scamperVBPHzG?VBNHzGٿi-1 tag+i word `` praNNPSʡEFW/$NNPl?i word backgroundNNoʡ?JJoʡi-1 tag+i word VBP offINx&1?RPQRB333333ӿNNPrh|߿i-1 tag+i word VB claimsVBZHzGٿNNSHzG? i word yutakaNNPS?UHSi-1 tag+i word VBZ controlNNbX9VBHzG@RB/$i-1 word overwhelmVBʡERPʡENN~jt?i-1 tag+i word DT swedishNNP+JJ+@i-1 tag+i word NN employsVBZ ףp= ?RB ףp= i-1 tag+i word CC clearedVBNrh|?VBDrh|i-1 tag+i word TO mentionVB|?5^?NN|?5^i-1 tag+i word NNS crammedVBNK7VBDK7? i-1 word coenNNPSKNNSK?i word wickedlyRBl?JJli-1 tag+i word CD markNNQ?JJnٿRBSxi-1 tag+i word WP portrayedVBP/$VBD/$?i word prescriptionNNV-?JJV-߿i word settlingNNA`"?JJOnӿVBG#~ji-1 tag+i word -START- afghanNNSK7A`NNPK7A`?i-2 word sundanceVBZ= ףp=?NNPSMbNNPjti-2 word interventionJJʡE?NNS㥛RBQ?i word discouragedVBNE?VBDEؿ i suffix HK$NNPQVBZ~jt$MbX9@NNp= ףi-1 tag+i word RB suggestedVBDHzG?VBNHzGi-1 tag+i word MD hostsVBZX9v?VBX9vi-1 word whizzesVB'1ZVBPq= ףp?NNuVտi-2 word beverlyVBZh|?5?NNPSxNNS ףp= NN;On?NNPGz i+1 word dec.NN(\?VBDFx VBNʡE@VBPQJJ(\µ?NNPp= ף?VB"~j?RB|?5^i-1 tag+i word NNS usedVBN\(\?VBD\(\i-1 tag+i word , offeringVBGHzG?NNHzGi-1 tag+i word , stalledVBDh|?5VBNh|?5?i-1 tag+i word NN endVBP{GzNNzGa@RB~jtINZd;Oi-1 tag+i word -START- presidioJJ!rhNN-?NNPS㥛пi+2 word lengthyJJ|?5^?NN|?5^ɿ i+1 word earJJzG?NNPzGi-1 tag+i word , enoughJJn?RBni-2 word upscaleNN{Gz@RBMbJJMbX9VBHzGi+1 suffix itoNN-?VBJJRrh|߿i-1 tag+i word NN treeNNPS-NN-?i-1 tag+i word , courtauldsNNPSw/NNPw/?i-1 word broadcastingNNPS1ZdNNP1Zd?i-2 word broaderVBD~jtxNN~jtx? i word anglesNNSn?NNn i+2 word lureNNQ?RBQi-1 tag+i word RP enoughRB~jt?JJ~jt i word anywayUHx&1RBV-@VBZL7A`尿NNPJ +RPMbNN rVBNZd;i word scuttledVBNx&?JJx&VBD+?RB+i-1 tag+i word POS jewsNNPSS?NNPSi+1 word puzzlesVBw/?JJS㥛NN~jtؿi-1 word competitorsVBNq= ףpVBPZd;?RBSINh|?5RPx&?VBD1Zd@i-1 tag+i word DT restatedVBNT㥛 JJT㥛 ?i-1 tag+i word -START- bancaNNPCl?RBCli+1 suffix cupNNNbX9VBGV-JJ-@ i+1 word wingJJS㥛?NNS㥛ܿi+2 word conflictsVBP;On?JJrh|?RB(\i-1 tag+i word PRP$ norwegianJJS㥛?NNPS㥛 i+2 word weVBGoʡ?IN5^I ?UHZd;?NNPSQJJSx&1?VBNX9v?VBZPn?RPw/NNS/$?VB&1CCK7?RBSPnRBRʡEVBDuVVBPDlJJ'1Z@FW#~jJJR"~?RBl @NNPxCDx&1Կ''5^I ?DT +NNPnLSi+2 word chartVBZZd;NNSZd;? i-1 tag+i word -START- thousandsVBZS㥛ԿNNSS㥛?i-1 tag+i word JJ spinali+2 word clientsDTJ +RPL7A`@RBQNNK7A?JJK7AпINK?i word amplifiedVBN= ףp=?JJ= ףp=ʿ i word secureJJK?NNMbXRBMbVBQ@VBP#~ji+1 suffix igoWDTlINl?i word archrivalJJX9v?VBX9vi-1 tag+i word `` onceRBoʡINoʡ? i suffix rds VBPSIN-@VB}?5^INNPS㥛 @NNsh| VBD&1CD|?5^NNPGzRPOnJJK7RB/$VBZ?NNSjt-@i-1 tag+i word DT respectJJ)\(ܿNN)\(?i-1 tag+i word CD editorialNNCl?JJCli-2 word momentNNP|?5^VB7A`?VBG r?NN)\(i-2 word members VBP~jt?PRP|?5^ʿJJJ + @NNPp= ף?VB9v?NNffffffVBNffffffPRP$|?5^?NNPSZd;VBGh|?5CD+? i+2 word tarVBNHzG?NNGzVBD{Gz i+1 word necINbX9?DTbX9 i-2 word softWDTzG?NN&1?DTzGVBP&1i-1 tag+i word , mixtecJJV-?NNPV-i+2 word gallonNNT㥛 JJT㥛 ?i-1 tag+i word RB diluteVB^I +?JJ^I +i+2 word blownFWOn?NNDlJJ$C˿i-1 tag+i word IN cooperativeJJʡE?NNʡEi+1 word manufacturerVBPV-ݿNNSjt?JJT㥛 ?NNK7A`i-1 suffix mexNNPS"~jNNP"~j?i+1 word mckennaRBI +NNPI +?i word securitesNNS|?5^?NN|?5^i word mexicansNNPSZd;?NNPZd;i-2 word livesDT= ףp=IN= ףp=?NN`"NNP`"?i+2 word negotiatedNN/$IN/$?i-1 word presumedJJGz?NNGzi+1 word nothingVBGzG?VBN+POSsh|?JJzGڿIN+?VBZsh|??NNPףp= VBףp= ?i-1 tag+i word RB reviewedVBNףp= ?JJףp= i+1 suffix jimVBN\(\?VBPClJJFxNNPZd;O?VB$C?NNPSK7NNJ +VBDv׿i word caesareanJJX9v?NNPX9vi+2 word castigatingVBbX9?VBPbX9NNd;O?JJd;Oi-1 tag+i word NN investmentsNNPSK7A`?NNPK7A`i-1 tag+i word RB vocalNN;On?JJ;On¿ i-1 tag+i word NN electromagnetsVBZ rhNNS rh?i-2 word adequatelyNNSJJS? i word dyerNNPSMbNNI +ƿNNP5^I ? i word ethnicJJ rh @VB&1DTFxNNd;OVBNCl i word limpidJJMb?NNMbi+1 word pricingVBG?NNV-RBtVֿJJjt?VBZd;O i-2 tag JJRVB{Gz?RBRx@VBNv/?NNPx&CDZd;߿JJX9v?RBL7A`INQ?WP{Gz?VBPuV?WRB$CNN~jtCCNNPSrh|JJR|?5^@VBD%C?RPDlVBZ'1ZJJSV-DTK7PRPS㥛?NNS#~j?PDTʡERBSS㥫WDTA`"?PRP$ʡE?VBGV-i+2 word operateVBPsh|?NNSsh|??i+2 word general FWxƿVBN/$?RBy&1@INq= ףpͿNNP"~j?VB|?5^NNPS)\(JJZd;ONN+? i suffix SixNNPSMD9vRBSCDK @PRPV-ڿJJDli-1 tag+i word VBZ fightingVBGDl?JJDl i word suburbNNx&1?VBDx&1i-1 tag+i word CC interimJJ+?NN+߿i word profileNNd;O?JJV-INDli-1 tag+i word TO judgmentalJJ!rh?VB!rhi+2 word resellNNGz?VBDGzi-1 tag+i word RB requiredJJ)\(@VBNFxNNVBD^I +i+2 word voluntarilyDT1ZdNNS1Zd?i-1 tag+i word DT knightNNPS'1ZNNP'1Z?i+1 word witterNNPSnڿJJ ףp= NNP|?5^?i-1 tag+i word DT transNNP'1Z?NNS'1Z i word deereJJsh|?NNPsh|??i+1 word giantNNL7A`?RB~jtNNSQ?NNPrh|VBS㥛?VBGh|?5?JJoʡi-1 tag+i word CD review``NN? i word stelcoNNSsh|?NN r@NNPʡEi word insurerVBZ/$VBPMbX9ԿNNS(\ſNN +?i+1 word roundedRBRx?JJRxi-1 tag+i word RB comesNNP\(\VBZ\(\?i-1 tag+i word VBD mixedVBZlNNPS7A`NNSףp= VBN7A`JJClg@i-1 tag+i word DT thoroughbredJJVBNS㥛ܿNNS㥛пNNP(\? i word painedVBN|?5^JJ|?5^?i-1 tag+i word IN masculineJJFx?NNFx i word ryderNN-ֿNNP-? i word cardNN-?JJK7RBtV i-2 word tallNNPx&1JJx&1?i+1 word vaultsNNGz?JJGzi-1 tag+i word , noteJJˡENNbX9?UHZd;Oi word pullbackNNSSNNS?i-2 word letterNNGz?JJGzINnRPn? i suffix oelJJ/$NNP/$?i-2 word california RP= ףp=?VBDDl?VBNNbX9ȿVBPS㥛RB= ףp=VBZ rNNSHzG@NNPS?NNv/?NNPPn i word neglectNN/$@JJvRBQCDʡEi-2 word novitiatesVBN-?JJ-˿i-1 tag+i word RB toldVBNxVBDx?i-1 tag+i word POS baseNNMbJJMb?i-1 tag+i word VBG catchVBx&?VBNmNN{Gzi-1 tag+i word JJ overhaulNN1Zd?NNP1Zdi+1 word documentNN7A`?JJ7A`i word alfrescoRBPn?NNsh|?RP+i+2 word helicopterNNClNNPCl?i word overseeVBZd;O?RPMbJJ;OnNNMbpi-1 tag+i word JJ timberNNd;O?JJd;Oi-1 tag+i word `` recentVBQJJB`"?NNPv/ݿi-1 tag+i word VBP concernedVBN'1ZJJ'1Z?i+1 word thomasiniNNP(\INFx?FW"~ji word congressmanVBZQNNSv/NNK@JJ +i-2 word zealandVBjtJJNbX9?NNh|?5?i-1 tag+i word VBZ painlessJJ+?NN+i-1 word subsidizeVBPQVBN#~jJJ +@i+2 word economicVBGffffff?JJʡEVBD㥛 ?VBP#~jVBZ rhNNd;O?VBNzGRPDl?NNS rVBGz?CCˡERB(\ݿFWM?INPn?DTˡE?NNP^I +?i word examinerNNSq= ףpNN\(\?NNP ףp= i word t.t.NNPuV?JJuVi+1 word separatelyRBClVBD?VBPCl?NNSi word revoltinglyRBB`"?VBDB`" i suffix elp RPʡENNS;OnVBN|?5^VBPJ +@RB/$NNP+VB!rh @JJQNN^I +@VBDʡEi-2 word nipponNNPSzG?NNPzGi-1 tag+i word DT energeticJJQ?NNQ뱿i-1 word brisklyNNSh|?5RBh|?5?i word missileVBDʡENNPV-NN&1@JJV-INNbX9i+1 word check NN= ףp=RBSX9vVBP"~jRBn@INK7DTFx?NNPL7A`堿JJˡE?JJS9vVBN#~j i-2 word boxyWDT&1ҿIN&1?i word kellwoodVBNʡENNPʡE? i word taxiNNPZd;ONNMbX?RBCDli-1 word ferrisJJoʡ?NN/$NNSʡEi+1 word vestsJJ;On?NN;Onҿi-1 tag+i word DT warrantNN?JJi+1 suffix rjrNNPV-JJV-?NNJ +VBDJ +?i-2 word comptrollerVBGp= ףNNp= ף? i+2 word gainINQ?VBZ^I +DTQ޿NNS9v?JJףp= VBDx&?VBNX9vRBʡE?i-1 tag+i word NNP reactorNNMb?NNPMb i-1 word roeFWbX9?NNB`"ٿINp= ףi-2 word sanctionsNNx&1?NNP#~jVBGV-i-1 tag+i word NNS toxinNNS rNN r?i+1 word eatingJJzG?NNzGế i suffix ish INrh|VBZv/JJ)\&@NNSZd;ONN}?5^IVBNK7VBPV-߿RBvDTFxNNPx&VBjt@NNPSʡE$&1i+1 word summitNNKNNPCl?NNPSMbX9NNSClJJ/$@ i suffix SPNNNPd;O?RBd;Oi+1 word eastwardVBZMb?NNSMbi+1 word entireVBZT㥛 POST㥛 ?i-2 word philadelphiaVBP ףp= NN`"?JJjtRBy&1i-1 tag+i word RBS movingVBG!rhJJq= ףp?NNʡE i word legumeNNGz?JJGz׿i-2 word watchVB|?5^?VBPFxٿNNS9vNNK7A` i word cairoNNsh|??NNPsh|?ݿi-1 word asianWDTSNNE?VBPtVi-1 word pottedNNB`"ѿNNSM?JJGzi+1 word pontiacVBNSJJS? i word stiffJJ(\@NNJ +RBrh|ϿVBNV-i-2 word exceptionVBNHzGVBGx&1NN~jt@JJ`"?i-1 suffix misNNX9v?JJX9vi-1 tag+i word IN chenilleNNS^I +NN^I +?i tag+i-2 tag PRP$ RBNNS9v?JJSӿNNq= ףp@JJS/$RBS/$?JJRmRBli+1 word exemptionJJSʡEͿJJPn@NNHzGi-1 tag+i word VBZ assessmentJJʡENNʡE?i-2 word confusionVBNRQȿNNRQ? i suffix honJJʡENNPPn?JJSL7A`ؿNNZd;O?i+1 suffix olfVBN rhVBP{Gz?JJ rh?VBG?NNJ +ɿVBD/$i tag+i-2 tag VBZ CCVB&1VBD;On?WDTp= ףؿNNSMbPJJRV-JJL7A`堿NNؿVBPHzG?RBK7AINx RP-?VBGx&1@PDTnٿVBNjt?RBRZd;O@DT$C@i-1 tag+i word VB stalledVBNV-?JJV-ݿi word americasNNPSʡE @NNPʡE i-1 word removesCDV-?NN|?5^?PRPV-JJ|?5^i-1 tag+i word NNP freightwaysNNPSrh|?NNPrh|i+1 word driftedNN`"?JJ`"i-1 tag+i word WDT causedVBD(\?VBN(\i-1 word waertsilaeNNjtVBDjt?i-1 tag+i word IN texacoNNPSffffffNNPffffff?i-1 word sharplyJJRtV?RP)\(JJ"~j?VBN~jt?RBRtVRB rhINQi-2 word strengthensVBG-?NN-i+2 word pleadVB'1ZNNP'1Z? i word wastePRPSNNS?i-1 suffix mgmNNOn?JJOni-1 tag+i word CC tobaccoNNST㥛 ؿNNT㥛 ?i word libraryJJ^I +NN^I +@i-1 tag+i word TO psychologicalVB rhJJ rh?i-1 word telosVBN rhVBD rh?i-1 tag+i word CC dependentsNNS1Zd?NN1Zdi+1 word continuedVBZB`"NNSB`"?VB)\(̿VBG+?NN}?5^IVBPK?WDTHzG?INHzGi word undertookVBPlVBDl?i-2 word shocksNNoʡ?JJoʡ i word solelyJJzGRBzG?i-1 tag+i word CC universityNN?5^I ?JJ?5^I ڿi+1 word aisleJJNbX9?NNNbX9i-1 tag+i word NNP lampoonNN#~jNNP#~j?i-1 tag+i word , arguesVBZOn?NNSOni word updatedVBN!rh@JJ!rh i suffix aanNNPZd;O?JJZd;Oǿi+1 word widespreadJJR-VBNHzGRBFx?INFxVBDHzG?RBR-?i-1 tag+i word CC restructuringVBGV-?NNV-i+2 word styleNNS|?5^JJx@NN~jthNNPKi-1 tag+i word , assignedVBNV-?VBDV- i-1 tag+i word -START- oncogenesNNS~jt?PRP~jti-1 word executeJJ~jt?NN~jti-1 tag+i word VBG increasedVBN r?JJoʡ?VBD!rhi-1 tag+i word -START- golfNN333333?NNP333333i-1 tag+i word -START- albertNNPRQ?NNRQi-1 tag+i word POS burdenNNZd;O?JJZd;O i word pagongNNPS\(\ϿNNP\(\?i-1 tag+i word VBD downtimeNNK7?JJK7i-1 tag+i word NNS estRB ףp= NNP ףp= ?i-1 tag+i word NNP joinNNP1ZdVBPp= ף?VBD-ӿi-1 tag+i word IN electoralJJMb?NNMb i-2 tag :VBS?WDT rh?RPOnۿFWL7A`尿PDTʡERBR%CVBD rh?DTL7A`?WRBrh|?JJSV-?POSGz?MDGz?NNPSd;OIN{Gz@UHv?PRP$(\µ?VBG'1ZVBZ(\?PRPʡERBV-VBNA`"VBPL7A`?JJ?5^I JJRKNNSnʿCDZd;OEXQ?NN`"NNPK7CC~jt?i-1 tag+i word JJ scholarsNNSp= ף?NNp= ףi-1 tag+i word JJ rearJJCl?NNCli-2 word investigateVBT㥛 ?VBP#~jNNQi-1 tag+i word IN bullhornsNNSʡE?NNʡEֿi-1 tag+i word -START- againstMDw/VB㥛 ڿINʡE@RBRMNNP~jti-1 tag+i word IN tumbledownJJjt?NNjti+2 word basisJJ~jt?RBR?NN~jtNNPi word shelvedJJA`"?VBNA`"i-1 word bolsterDTZd;O?INZd;O׿i-1 tag+i word DT autonomyNNy&1?JJy&1i-1 tag+i word IN feverNNSxNNx? i+2 word unit NNS"~ʿNNPK7VBtVVBD(\PRPCl?JJ?VBZ(\?NNPSףp= @NNV-VBNX9vϿVBPtV?i-1 tag+i word DT frontNNSx&1NNGz@JJRQؿNNP|?5^ i suffix Yet NNX9vCCffffff @INQVBQRBV- @PDTjtJJSNNS\(\NNP5^I i-1 tag+i word NNS compatibleVBPSۿJJS?i+1 word cuttingRPFxINFx? i word firmlyVBP"~VBNHzGJJ;OnVBD|?5^RBV-@i-1 tag+i word NN markingVBGMb?NNMbi-2 word movieNNPKVBZ$CۿRB{Gz?i+1 word force NNEпVBP;OnڿDTy&1?NNSOnVB+VBG7A`?JJFx?INy&1NNPw/?i-2 word reducingNNS'1Z?VBZ'1Zi-1 tag+i word NNP prizesNNPS$C?NNP$C i-2 word luisNNS?JJ-NNPx&1i+2 word shareholders RP|?5^NNSˡEܿVBX9v?RBMbؿNNE?VBDPnINQ?VBGZd;VBNMbX9?VBP/$?JJGz?i tag+i-2 tag , UH NNSRBnVBZRQ?VBD= ףp=?VBN= ףp=WDT!rh̿JJ r@DT!rh?VBy&1NN|?5^ i+1 suffix ,"NNSS@WRB1ZdRBRzG?SYMjtVBNZd;?CCX9v?MDI +JJS/$?UHMb @DTX9vEX~jtJJRFx?VBG= ףp= VBP)\(NNP?5^I ?VBʡE?JJV-VBZffffffֿNNPS= ףp=?VBDjtRBV-@PDTClPRP)\(?WDT(\RP+ӿNNZd;O @POSX9vLS@INjtPRP$'1Z WP"~ڿFWK7?RBS"~j?CDQ?i+1 word permanentJJ$C?RB$Ci tag+i-2 tag WRB NN VBGʡEƿRBV-?RBSS㥛ԿJJSS㥛?JJK7A`NNS1ZdNNX9v@VBDHzG?VBNOnEXS?NNP5^I ?i-1 tag+i word DT presidencyNNPSK7NNPK7?i word clearingVBG?5^I NN?5^I @i-2 word altimariVBNS㥛ؿNNx&VBDn?i+1 word friendNN\(\@JJ\(\i-1 tag+i word DT dizzyingVBG ףp= ?JJCl?NNFxi-1 tag+i word JJ playwrightsNNSS㥛NNPS㥛?i-1 tag+i word VBN heavyNNSMbJJL7A`?RB|?5^i-1 tag+i word DT turkishJJ/$?NNP/$i-1 tag+i word NNP rollinsVBZL7A`NNPL7A`?i-1 tag+i word -START- bankersNNPSCl@NNSy&1?JJJ +NNsh|?NNPS㥛i-1 tag+i word WDT keyVBZJJ?i word toleranceNNK7A?RBK7Ai-1 tag+i word NN bulletNNV-?INV-i word corroonNNnNNPn?i-1 tag+i word VBD alongRPbX9ȶRBZd;O?INZd; i word waivedVBNףp= ?RBףp= i+2 word traduceJJ+VBD+?i-1 tag+i word RB becaseVBv/VBP9vҿINsh|?? i+2 word oneIN(\?RBR7A`VBPGzPRP&1?JJ= ףp=DTn?VBClVBDףp= @CC+?NNSX9vVBNq= ףpտVBZw/ܿRPV-NNw/WDT%C?JJRA`" @VBG= ףp=ʿNNPq= ףpEXMb?RBNbX9?NNPSx&1ȿi+2 word whoopingNNT㥛 ?JJT㥛 пi-1 tag+i word JJ preferencesNNPSMbNNSMb?i-1 suffix optRBR+?JJR+i+1 word engineNN!rh?VBDZd;OVBNq= ףp@JJRzG?JJ~jtVBRQi-1 tag+i word NN contributedVBNV-VBDV-@i-2 word conglomerateNNSQ?NNQi+2 word lightestNNS+?JJ+i-1 tag+i word NN empowersVBZ}?5^I?NNS}?5^IԿi+2 word recent VBDPOS`"?IN$C?VBZ`"NNP)\(?RBOn?DTEȿNNS/$?VBG$CJJClNNCl@VBNK7A`WDTsh|?ſi-1 tag+i word VBD servingVBGZd;?JJZd;i-1 tag+i word CC preferredVBNZd;O?JJV-?VBDOni-1 tag+i word DT sellNNzG?VBPzGi+1 suffix hem VBZjt@VB!rh @VBGHzG@JJ9vNNA`ТVBDʡE@VBPn?VBN"~j?RB)\(INS?DTFxNNSNNP"~i-1 tag+i word VBZ rebelNNʡE?JJʡEi-1 tag+i word IN standbyJJ/$?NN/$i-2 word negativeVBGA`"?NNbX9޿INzGi-1 word inchesVBZV-INV-?i-2 word loopholesVBMb?VBP9vINZd;Oi word retreatingVBG333333?NN333333!i-1 tag+i word VBG discriminatoryJJ;On?NN;Oni-1 suffix rezNNPGzINMb?FW㥛 i+2 word networkVBˡENN?5^I @CDClJJ'1Z NNSEԸNNPm@i word consistedVBN333333VBD333333?i-1 tag+i word RBR leftRB;On?NN;Oni-1 tag+i word , subsidizedVBNV-JJV-?i-1 tag+i word CC peerVBGz?NNGz i-2 word actsVBZ|?5^NNS|?5^?i+1 word complainsNNoʡ?JJoʡտi-1 word dallasCCffffff?NNPffffffi-1 tag+i word NNP africanNNPS9vJJ~jt@NNPףp= i+1 word alternativeIN+?DT+JJʡE?RBʡE i suffix ergNNSMbRBV-NNʡEݿNNP(\@i+2 word extortNNh|?5?JJh|?5i-1 tag+i word VB delightedVBNMbX9JJMbX9?i-2 word investigationsNN)\(RBʡEVBPZd;?i-1 tag+i word CC bankingNNPV-VBGJ +?NN= ףp=i-2 word countersuitCCJ +?DTJ +i+2 word paper IN5^I ?NNS|?5^ҿNNPoʡ?VB1ZdVBGʡEVBDjtJJQ?NNn?VBNK7?VBPCl?i-1 tag+i word , retailVBP+JJ+?NNV-׿i-1 tag+i word IN showsVBZK7NNSK7?i-1 tag+i word VBZ confusingJJZd;߿VBGZd;?i-1 tag+i word PRP leftVB9vVBN9v?i-2 word specialtiesNNGz?JJGzi-1 tag+i word DT yankeesNNPSV-@NNPV-i-1 tag+i word CC beforeVBClJJROnRBV-INMbX9@ i-2 word gaveVBGQRBxNNˡE@VBNQCDQVBPRQJJ\(\ @NNPDli-1 tag+i word POS automotiveNNPnNNPPn?i+1 word recoveryVBG ףp= JJ/$@NNjti-2 word showersJJCl?NNCl߿i-1 tag+i word NNPS boughtVBNZd;O?VBDZd;Oi-1 tag+i word JJ idleNNS'1ZJJ'1Z?i-1 tag+i word -START- commonJJm@NN\(\NNPCl i word '86CDCl?NNPnNNP~jti-1 tag+i word , jazzyJJQ?NNʡENNS+i-1 tag+i word NNS eitherCCw/?RBw/i word republicNNPp= ף?VBZZd;ONNPSxNNStVNNZd;O? i word eightDT(\CDV-2@VBN|?5^JJENNPx i suffix an.VBn?RB(\NNV-VBDPnJJDlNNPZd;O@$v/ݿi-2 word cardinalsNNPSMbX9?NNSp= ףNNP+i-1 tag+i word VBP togetherRP(\?RB(\i word interstateJJn?NNPbX9 @VBףp= VBPV-NNV-i-1 word soundedRBMbXɿNNuVJJ1Zd?i-2 word totallyNNq= ףp?JJq= ףpi-1 tag+i word NN elseVBNRQJJtV@VBZ%CNNS^I +NNP+RBx@NN)\( i-2 word itemRBxINx?i+2 word tasteNN|?5^?JJ|?5^i-1 word geologicallyVB5^I JJ5^I ?i-1 word printVBGvNNv?i-1 word assertedRB+IN+?i+2 word commodityVBGp= ףNNCl?NNPB`"? i suffix HowJJNNPDlWRB~jt@NNS(\NN1Zdi-2 word respondingVBGNN?i-1 tag+i word -START- throwIN/$VB+@NNPQVBN!rh i word flawsVBNxNNjtNNSFx@i word fullestJJSDl?NNDli tag+i-2 tag CC ) VBNoʡ?RB/$VBZoʡ?NNSMbXVB= ףp=VBDy&1JJ\(\?$~jt?NN= ףp=?i-1 tag+i word CC buyVBOn@VBPMbJJ`"NNʡE i-1 word lt.NNPSClNNPCl? i-1 word noteJJK7NNZd;O?WDTCl绿RBK7AпINI +?DT ףp= i-1 tag+i word VBP calledVBN/$?JJ/$i-1 tag+i word VBZ gonVB;On?VBG;On¿i word husbandsVBZQNNSx@NNP{Gz i-1 word someVBbX9VBG+RBRZd;VBN!rhRB333333FW+?NNSV-?NNP~jtJJh|?5?VBD1Zd @VBPK7A@VBZPnCD{Gz?NNPS(\NN~jtJJRtV?WDT$C?i+1 word satisfyingVBN= ףp=RB= ףp=?i+1 word economiesNNPSVBN㥛 ?VBGMJJS?NN-i-1 tag+i word NNP revenuesVBZq= ףpNNSq= ףp?i-2 word thoughtVBCl?RBQNN;OnVBPClJJ;On?INQ? i-2 word avecVBD rh?VBN rhi+1 word flavorJJS?NNSi-1 suffix enyNNSNNP ףp= VBZ(\NNPS\(\@i-1 word flemingNNPSS?NNPSi-1 tag+i word VBP remoraNNS1Zd?NN1Zdi-1 tag+i word -START- justiceNNSMNNv?NNP5^I ?i+1 word hooliganismJJ1Zd?NN1Zdi-1 suffix abcNNPSMbXٿNNS/$NNPMbX?VBZ/$?i-1 tag+i word DT claimantsNNPS#~j?NNP#~jܿi-1 tag+i word IN toxicJJNbX9?NNNbX9i-1 tag+i word IN developingVBG+?NN+ۿi tag+i-2 tag VBN CC NN$C?INS?NNSFx?NNPw/JJK7A?PDTJ +?VBNOnRBlDTJ +?RPL7A`?i-1 tag+i word NN arrangementNNS?JJSi-1 tag+i word IN chemicalNNGz?JJGzi-1 tag+i word -START- ojiCDS㥛NNPS㥛?i-2 word autumnRBRSRBS?i+1 word lecturerJJS?NNV-ڿNNPbX9 i word guardVBRQVBP5^I ?NNSGzVBN1ZdۿNNGz? i+1 word judyNN+?VBD+i-1 tag+i word POS willingnessJJR rhNN rh?i-1 tag+i word IN tellingVBGZd;O?JJZd;Oǿ i+2 word eastJJx?RBSVBZS㥛ԿNNSxNNP-?RPv? i+1 word hessJJNN?i-2 word tossedRP= ףp=?RB= ףp=i-1 suffix fanJJB`"?NNRQCD +ֿi+1 word sweepNNPSMbXٿNN ףp= ?JJuV?NNPQi-1 tag+i word NN rollingVBGv/?NN/$JJw/i-1 tag+i word DT holdingJJ+NN|?5^VBG'1Z @i-1 tag+i word DT fastJJ)\(@NN ףp= RBHzG i suffix ITSNN"~jNNPʡENNPSףp= NNS/$ @i-1 tag+i word CC innovativeJJ~jt?NN~jti-1 tag+i word NN agreesNNS1ZdRBZd;VBZS?i word ownershipNNP㥛 ¿NNQ?SYMjt i word anchorNN㥛 NNP㥛 ?i-1 tag+i word DT diseaseNNS= ףp=NN= ףp=?i-1 tag+i word JJ asianJJS?NNSi-1 tag+i word NN fourteenJJ|?5^ʿCDsh|??JJRCli-2 word miltonVBN"~jVBD"~j?i+1 word refocusRBbX9?JJbX9ƿ i-1 word kindVBZGzDT"~NNPSx&?WDT"~?NNP9vi word desirableJJ"~?NNSRBtVi tag+i-2 tag RP VBG RB;On?IN`"RP`"?DTQ?VBGCl@JJZd;VBN}?5^I̿WDTQNNS= ףp=?NN/$RBRS㥛?JJRS㥛Կ i+2 word geNN?5^I VBD|?5^?VBP|?5^INV-?DTV-NNS?5^I ?i-1 tag+i word NNP branchNNV-?NNPSV-i-1 tag+i word DT raciallyRBy&1?NN(\JJbX9i word shieldsNNPSA`"NNPA`"?i-2 word scheduleVBGʡENNʡE? i-2 word dec.INZd;O?RB`"NNE?JJENNPV- i suffix LPAPRP-NNP-?i-1 word proleukinNNn?JJni-1 word allegedlyVB+VBG9v?JJ rh@NN +VBDzG@VBN rhRBrh| i word nuggetNNPSQNNy&1̿NNP/$?i+1 word gizmosNN/$JJ/$?i-1 tag+i word RB obeisanceVBNNN? i word pulpNNSZd;ϿNNX9v?NNPPn?i-2 word exactlyCC"~jRB"~j?i tag+i-2 tag VBZ DTVBEVBDL7A`尿RPh|?5@JJv/ͿNNClDTClNNSZd;?JJR ףp= RBRQ?WPK7AVBGl?INx&1VBNV-?VBPS㥛?WDTK7A?VBZB`"@NNPOn i+1 word maryNNPbX9޿NNS㥛?JJmi-2 word snivelingJJbX9?VBDbX9i word headacheVBNV-NNV-? i word wppDT㥛 JJ/$ÿNNPn?i+2 word august NNPSGz?NNˡE?VBDq= ףpCDK7?NNSK7NNPGzVBG!rh?JJ`"VBNq= ףp?RBOnINJ +?DTzG i-2 word faaVBGClJJʡE?NNA`"VBNV-?RBm?INmi word satisfiedVBNCl JJCl @i-1 tag+i word IN improperJJQ?NNQi-1 word everybodyJJ{Gzt?NN`"POS/$PRPZd;O߿RB5^I ?IN`"?VBZx @NNS"~i-1 word bushyJJ5^I ?NN5^I i-1 tag+i word DT snivelingVBGE?NNʡEJJ{GzĿi+2 word exporterNNʡE?JJʡEi+2 word tightNN+?NNP+i+2 word manilaJJS/$RB/$@NN+i-1 tag+i word NNPS missileNNS?JJSi+1 word totaledINףp= NNSףp= ?NNn?NNPni-1 tag+i word RB plainVBuVRBT㥛 JJ ףp= ?i-1 word addressesNNMCDM?i-2 word conservativesRP"~ڿVBN-?JJ-ƿIN?RBh|?5οi-1 tag+i word . !HYPHENJJ"~NNPx&1NNQ?UHzG?i-1 word l'orealNNPSV-NNPV-?i+1 word olderWDTGzINGz?i word capableVBZV-VBʡEۿJJGz.@NN'1Z i-2 word thomsonRPn?RBRQNNX9vVBNx&1JJx&?INni-2 word normallyVB}?5^I?NNQVBD(\VBPq= ףpJJx&1ܿNNP(\?i-1 tag+i word DT purdueJJKNNPK?i+1 word discussionsJJl@FWZd;OVBN~jt?RBRKUHZd;ORB ףp= INʡE?DT5^I ˿i word francesNNPSZd;ONNPZd;O?i-1 tag+i word '' acknowledgedVBNq= ףpVBDq= ףp? i-1 word )INbX9?DT/$FW9v?JJRbX9޿WDT/$?JJV-VBZx&?NNSv/VBDl?VBDʡE?VBN}?5^INNPlVBPDl?VBGQRBQNN`"? i-2 word weVBD5^I ?VBNK?RBR(\?JJZd;OͿVBGQNNSףp= ۿVBZK7VBy&1̿RPv@VBP1Zd?INd;O޿DT|?5^?NNPZd;EX/$?RBnٿNN~jtPDT?5^I PRP`"?JJRQi-1 suffix ukiNNPS#~j?NNP#~ji+2 word speculatorsINV-ϿDTV-?i-1 suffix ielNNzGNNPzG? i suffix ateVBPt@VBZx&1 NNS㥛 NNQ@VBNd;O JJx&1@FW\(\JJSB`"JJRDlINClDTZd;ONNPSVBG/$PRPQVBjt@VBD NNP/$@RBRS㥛RBQ?i-1 tag+i word NN tycoonVBZnNNn?i-1 tag+i word IN seizingVBGMb?NNMb i-1 word cameRB(\@JJ rhIN+?RPI +i-1 tag+i word NNS acceptancesNNPS'1Z?NNSA`"?NNy&1ܿNNPQi+2 word mountainNN +RBSJ +?JJS +VBP +JJ1Zd?NNSQVBG +?RB +?i-1 tag+i word NN hopedNNSףp= VBN/$VBDˡE? i-2 word cvnVBZ+VBPMbX?JJA`"NNMi word overhaulingVBG/$?JJ/$i-1 suffix atyVBd;OVBPd;O?i word alignedVBNˡE@JJxֿVBDT㥛 i-1 word fashionVBZQſNNSZd;O?NNMҿRB{GzVBD~jtxi-1 word explorationNN#~j?RB#~ji+1 word legalizingVBNMbXɿVBDMbX?i+1 word fieldsJJ(\?NNSEVBNX9v?NNA`"?JJRuV i suffix eatNNx&@NNSNbX94TOZd;OVBPX9v?UHh|?5RBDlIN?5^I NNPʡE?VBA`"@VBDS㥛?VBNRQRP`"JJ-?WRBS㥛DT/$ۿVBZ/$i-1 tag+i word PRP speaksVBZZd;?VBDZd;i-1 word measure RPE?JJnRBR= ףp=ʿRB rhJJR= ףp=?VBG㥛 ?VBZ= ףp=?NNK7ANNS= ףp=VBN +? i suffix uct NNCl@CDx&1ܿDTMbVB\(\?JJ|?5^VBPE@RBKVBZQNNPSi-1 tag+i word , slashedVBN-JJ rhVBDd;O?i word sentimentNNx&1 @VBNI +JJd;OVBDuV i-1 word ad NNPS-?NN/$@RBR= ףp=VBPV-WDTB`"ɿNNS?NNPQVBX9vINB`"?VBZ#~ji-1 tag+i word VB somewhereVBClRBCl? i suffix upeNN~jt?NNS~jt i-2 word tileVBPA`"NNA`"?i-1 tag+i word JJ earningsNNPSw/NNSw/?i word pershareJJJ +?NNZd;ONNP"~ji word primaryJJV-?VBNZd;NN)\(?NNPMbi+2 word bureaucracyVBGS㥛JJ7A` @NN/$i+1 word momentJJQ?NNQi word touristNNK7A@JJK7A i-1 word pickRPMbX?RB+?INʡEi-1 tag+i word WP glowedVBP(\VBD(\?i-1 tag+i word DT instituteNNPS%CNNM?JJ?5^I i+2 word eventsNNSGzNN)\(VBD~jtRBSGz?JJRKVBPZd;?JJףp= ?i-1 tag+i word DT cartoonNN{Gz?JJ{GzĿi+2 word loomsJJV-NNV-@i-2 word forecastNN{GzNNSK7JJ9v@i-1 tag+i word , liveVBPp= ף?JJp= ףi-1 tag+i word VBZ tracksVBZv?NNSv i-2 word playRBZd;O?INK7?DTNbX9NNSMbP?NNP ףp= ?VBʡEJJzG?NN ri+2 word simultaneouslyNNPSX9v޿NNPX9v?i-1 tag+i word VBN individualJJSNNPS?i-1 word settlesRP= ףp=?JJ%C?NN/$ÿPRPx&1RBK7INI +ֿi+2 word makers NNJJST㥛 ?VBPʡEVBNMb?JJx@RBSx&1RBRNbX9CDˡE?JJRNbX9?NNPV-i-2 word guestsVB|?5^?NNS|?5^ɿi-1 tag+i word IN chargingJJMbVBGMb?i-1 suffix intNNPS?NNDl?NNSV-?RBRx&1?WDT!rhRP7A` @VBZy&1VBGQRBZd;?JJRM?JJ-VB1ZdVBDlIN+NNPMbX9i-1 tag+i word DT sophisticatedVBNuVJJ= ףp=?VBDCli-1 tag+i word NNP s&lNN/$NNP/$?i-1 tag+i word IN underwritingVBG +NN +?i-1 suffix nasFW;OnJJMNNZd;O?INxƿNNPʡE? i suffix oraNNK7JJzGNNPoʡ?NNSV-@VBG ףp= i word teachesVBZ rh?VBD rhi-1 tag+i word : endedVBDףp= ?VBNףp= ۿi-1 tag+i word NNS accountedVBN\(\VBD\(\?i+1 suffix humTOK7?NNK7 i word growsVBNzGVBZ?VBQi-2 word parkerNNP+?FW+i-1 tag+i word RB orientedVBN333333?JJNbX9VBDV-i-1 word preliminaryNNʡE?JJʡE i word stocksVBZv/NNSPn?JJףp= i-2 word gamesVBoʡVBP%CNN%C?CDoʡ?i-1 tag+i word TO helmuthVBy&1ܿNNPy&1?i+1 word biomedicalVBNMb?JJMbi-2 word charactersVBZS㥛?VBP-޿NNSS㥛VBNHzGٿRB+?i+2 word differNNS㥛?JJS㥛i-1 tag+i word DT ninthNN rhJJ rh?i+2 word cuckooINRQRBjt?NNʡEi-1 tag+i word NNS consistedVBN333333VBD333333?i-1 tag+i word TO askVBMb?NNMbؿi-1 tag+i word VBG lurchVBP|?5^?NN|?5^ i suffix gaiNNPSI +NNnNNP~jt? i word evadeVB&1?JJ&1i-1 tag+i word CC tvNNPI +?NNI +i+2 word delayWDTx?JJ'1ZINx&1DT(\NNSK?RBKNN'1Z?i-2 word releasedVBDDl?VBPDlVBGuVJJ|?5^?NNffffffi+2 word loans VBN/$?VBP/$JJ/$@VBG{GzܿNNS}?5^INNPS333333NNtVοVBDw/?INx&1?NNPp= ף?VBS㥛RPx&1ؿJJS +i-1 word trusteeWPףp= ?NNPףp= i-1 tag+i word IN failedVBN"~j?JJ"~ji+2 word casesVBGK?JJtVNNCl?RBR-ӿRBV-?INjt?NNPL7A`i-1 tag+i word NNS becauseVBPx&RB\(\@NNI +INK7ٿi-1 tag+i word CC speedVBPKNNx&1?VBS㥛i-1 word gloomierNN|?5^?RB|?5^ɿ i word answerVBK7?PDTK7NNSM¿NN!rh?JJHzGi-1 tag+i word NN practicallyRBV-?NNV-i-1 tag+i word RB soVBDClRBRT㥛 RBL7A`?INn?i-1 tag+i word DT bedfordNNzGڿNNPzG? i-1 word daysINq= ףpNNPw/?VBGv/?RBQ?NNv/RBRjt?VBPw/JJvi tag+i-2 tag RP VBN WDTd;OֿRBsh|?DTsh|?JJRoʡNN rh?JJrh|?VBN#~jRBRZd;?INx&?VB+ i suffix INENNP(\?NN(\i+1 word maestroJJMb?NNPMbi-1 tag+i word VBD incentiveNNZd;?JJZd;߿ i suffix .C.VBNKNN%C̿NNP|?5^@VB ףp= i-1 tag+i word -START- somewhereRB1Zd?JJ|?5^NNPuVi+1 word selectedRB\(\?NN\(\VBZʡE?NNSʡEi-2 word taxesPDTDl?VBNxJJ{Gz?NNSA`"NNP?5^I ?NNPS(\տVBGPn?NNPni-2 word greenwichNNPZd;JJZd;?i-1 tag+i word VBP consistentlyVBN ףp= RB ףp= ?i+1 word quitsVBZ rhNNS rh? i suffix -62NN/$?NNP/$i-1 tag+i word , leavingVBGQ?NNMCDV-i-1 tag+i word NNP financialsNNPS rhNNP rh?i word accusatoryJJJ +?NNJ + i+2 word whipJJʡE?NNPʡEi-1 tag+i word NNS tumbledVBNNbX9VBDNbX9?i tag+i-2 tag `` ``NNP+?NNPSZd;NNSZd;?NN+i+1 word movementJJCl?NNSV-?RBMNN\(\i+2 word parentDTENNP`"yNN`"y@CCV-PDTJ +CDZd;@i word paymentsNNS?5^I @NNK7NNPrh|i-1 tag+i word IN insolventJJoʡ?NNoʡi-2 word hideousEXK7A?RBK7Ai-2 word preservedJJ/$NN/$?i-1 tag+i word CC showsVBZ rh?NNS rhi+1 word nosesJJ'1Z?NN'1Zi word implicatedVBNQ?JJQտi+1 suffix san VBG+JJ)\(?DTffffff?NNSSNNPHzGVBZS?VB+?NNtVVBN~jt?WDTSINMb i word liborVBPʡEVBNHzGNNP-?i-1 tag+i word DT cementNNFx?JJFxٿi-1 tag+i word RB furnishedVBN-޿JJ-?i word baringsNNPSGz?NNPGzi-1 tag+i word CC orangeVBMbXNNq= ףp?JJK7i-1 tag+i word VBN backstageRBA`"?NNA`" i suffix optINRQNNSRBSVBDNbX9VBOn @ i word de VBD;OnNNSNNMVBP-PRP9vJJOnINMbX@VBZNNPm@FWA`" @i-2 word corporatistVBP"~JJ"~?NN"~i-2 word skepticalJJS㥛?NNPS㥛i-1 tag+i word VBG soleJJL7A`?NNL7A`堿i-1 tag+i word NNS kickedVBD^I +?VBN^I +i word waggishlyVBX9vRBX9v?i-1 word spectacularlyJJ\(\?NN\(\i-1 tag+i word TO locateJJjtNNV-߿VBL7A`? i word fiveJJ5^I  NNlNNP rCD rh@NNS-i-1 tag+i word NN outbreakVBZS㥛NNS㥛?i-1 tag+i word DT massacreNNV-?JJV- i+1 word tipVBNp= ףпNNMbXNNPQ?JJS!rh?i-1 tag+i word VBN reachedVBNMbX?VBDMbXi-1 tag+i word NNPS britishNNPSrh|JJrh|?i-1 tag+i word JJ enthusiasmsNN7A`NNS7A`?i-1 tag+i word IN universitiesNNSGz?JJGzοi-1 suffix dicNNPS+?NNS5^I ӿNNP&1 i suffix engNNA`"?NNPq= ףp?VBZd;ONNPSZd;i-1 word reorganizationVBD/$VBZ"~jNNS"~j?VBN/$?NN&1?i-1 tag+i word NNP merrillNN#~jNNP#~j?i-1 tag+i word DT foyerJJSNbX9NNNbX9?i-1 word reimbursementVBZ&1ҿNNS&1?i+1 word jacobNNPMb?JJMbi+1 word continuingVBGS?JJ?5^I NNx&1? i suffix NNN rNNP r?i-1 tag+i word CD taxableJJZd;?NNZd;i-1 word concernsRPq= ףpVBPףp= WDT(\ؿRBnINK7@VBףp= @i+2 word grazingVBP#~jJJR+?RBB`"۹i-2 word truffautVBSNNPS?i-2 word recently VBD/$?VBN/$RB rhVBZK?NNSʡEJJy&1?NNOn@CD'1Z?NNP'1ZԿNNPS'1ZVBGV-i-1 word shapingRPQ?RBQݿi-1 tag+i word MD '''v?VBvi-2 word meticulousNNnٿJJn?i-1 tag+i word , talksEXffffffֿVBZv@NNSS㥛i+2 word distributingVBGV-NNV-? i suffix capNNq= ףp@NNS|?5^VBNtVJJJ +FWZd;Ͽi+2 word boundsINCl?RBCl i word pokesVBZ~jt?NNS~jti-1 tag+i word NNP supportVBFxNNFx?i word braziliansNNPSw/NNSX9v?NNP-i-1 tag+i word JJ involvedVBDrh|?VBN rhJJS?i-1 tag+i word NN flexibleJJh|?5?NNh|?5οi-2 word certificateVBZ-?NNS|?5^NN ףp= JJNbX9i word pagurianJJ}?5^INNP}?5^I?i-1 tag+i word DT processNN#~j?RBSJJ/$i+1 word pepsiNNP^I +߿JJ^I +?i-1 tag+i word RB difficultiesVBZmNNSm? i+2 word haulVBPMb?VBNtV?JJ/$?MDMbVBV-i-1 word thurberVBN"~jԿVBD"~j?i word whoringVBG`"NN`"?i-1 tag+i word CC forcesVBZ5^I ?NNS5^I ۿi+2 word feddersNN|?5^?JJ|?5^i-1 word capitalgainsVBMbNNMb? i+1 suffix l.RBRX9vNNlNNPMbX?i-1 tag+i word DT chemicalNN +?JJ +i-2 word unconstitutionalVB(\VBP(\?i+1 suffix eveVBP"~RBB`"?INB`"?VBZp= ףNNSp= ף?CCSi-1 word plansVBNL7A`?JJRVBP'1Z?JJOn?VBZ-?VB333333ӿVBDQi word gravestJJS?5^I ?NN?5^I ڿ i-1 word getVB\(\DTFx?RBRS?VBNrh|@INQ?VBZ㥛 UHB`"ɿRBS?VBDlNNS!rhEX5^I VBG+CD+PRP rhPRP$nRP\(\ϿJJRCl?JJ~jt@NNx& i-1 tag+i word DT upheavalNNGz?JJGz i-1 tag+i word PRP$ acceleratingNNL7A`尿VBGL7A`?i+2 word ladiesJJZd;@RBsh|?NNP;Oni-1 tag+i word RB fanaticJJʡE?NNʡEi-1 tag+i word CC polyesterNNzG?JJzGi word detergentNN/$?JJ/$NNP/$i-1 tag+i word IN relentingVBGbX9?NNbX9i+2 word insurersJJS`"?RBS`"i-1 tag+i word VBD conveyVBFx?NNFxi-1 tag+i word VBZ alongRP-RBv/?INCl׿i-1 tag+i word JJ defenseNN;On?NNP;Onҿi-2 word negotiationsVBGjtƿVB+?NNS^I +NNjt?NNPL7A`ؿ i word incurVBZClVBPx?VBDQi-1 word prohibitsJJ%C?NN%CԿ i word getsVBZ= ףp=?NNPSMbNNPjti-1 tag+i word MD banVBףp= ?RBףp= i-1 word oil VBx&?VBD ףp= VBNx&1?JJw/ԿNNSGz?RBK7A`NN r?VBPGz?VBZn i word firmsNNPSlNNSp= ף@NNPni word banningVBG?NNi-1 tag+i word DT vainJJq= ףp?NNq= ףpi word permitsNNS~jtNNnVBDrh|VBZNbX9@i word fancifulJJNbX9?NNNbX9пi+2 word pushedNNSFx?RBFxVBN +WDTK7?JJ +?INK7 i+1 word hereNNS+׿JJHzG NN-?VBN%C?RBCl@RPw/NNP;OnNNPS1Zd?VBGK7?INm?VBClVBPZd;O?WDTbX9VBZrh|?VBDMb?i+2 word imagineNNMbпCDMb?i-1 word liquidityWDTK7?NNףp= ?INпDTK7NNPGzi-1 word terminalVBZ"~j?NNS"~jԿi-1 word educatorsVBPףp= RBOn?JJMi+1 suffix iosNNSVB?5^I ¿VBPGz?NNS(\JJ ףp= @i-2 word stake VBDS?VBPMbJJB`"VB"~j?NNPSffffffNN(\ȿNNS;On?NNPQ?RBT㥛 ?VBNSVBZ|?5^i-1 tag+i word DT concomitantNNl?JJlҿi word conductedVBN!rh?VBD!rhi-1 tag+i word NNP bluesNNSпNNP?i-1 tag+i word RB indebtedVBN rhJJ rh?i-1 tag+i word VBZ hungryVBNV-JJV-?i-1 tag+i word RB totalVBffffff޿VBP9v?JJQ?NNʡEVBDtVοi word impressedVBNZd;O JJZd;O @ i+2 word used JJOn?DTQCDy&1?NNPK7?RBV-NNn?VBNRQWDTQ@VBG#~jܿRBRQVBPnIN~jt? i word firesVBZ"~jNNS"~j? i+1 word fewVBNV-?VBPsh|?JJClIN +@DTjtRB(\?NNʡEVBD^I +?i-2 word weakenedVBGtV?JJtVi-2 word annualDTHzGNNS-?NNPHzG?VBG= ףp=NNQJJ&1@VBZ-i-1 word aggregateJJ ףp= @NN ףp= i-1 tag+i word NN involvesVBZT㥛 ?NNST㥛 i tag+i-2 tag VBZ NNPJJRRQ?PRP$K7A?VBPClFWK7?PRPZd;?RBx&1CCuV?NNPSPn?WDTmտVBZ +?CD)\(?EX5^I ?INJ +?JJSK7?VBGZd;OVBD/$DT'1Z?NNPˡERBSSտVBNE?JJQRP~jt?NN+NNSQ˿VBbX9@RBR|?5^i+1 word hauntsVBZ㥛 JJ㥛 ?i-1 tag+i word DT reigningVBG|?5^?JJ|?5^i word greatestJJS^I @RBSClNNh|?5JJ"~i word rattledVBN)\(?JJ)\( i suffix 715CDK7?VBK7i+1 suffix lotINK?DTS㥛?NNPzGҿVBG/$JJ)\(̿NN/$?UHjtRBKi+2 word probableRB&1IN&1?i+1 suffix fitFWK7VBNJ +ɿVB1Zd?VBZ!rh?VBD;OnCCOnRBRZd;RBZd;O?NNPZd;׿INmDTm?VBG(\ JJm@NNS?VBP +?JJR(\?i-1 tag+i word RB operatingVBMbVBGGz@NNT㥛 i-2 word stripVBN rhJJ rh?i-1 tag+i word IN crushedJJGz?NNGzVBNK߿ i+2 word skyJJ+?NN+i-2 word debateNN;On?VBP1ZdRB`"οIN(\VBZ!rhJJ~jt?i-1 tag+i word VB cottonNNSnNNn? i suffix aid IN+NNP?NN~jtؿVBD7A`P@CCw/VBNX9v @VBPK7JJT㥛 пVBZX9vNNSK7A`VBtV RB i word kindsVBZClNNSCl?i-1 tag+i word `` clubsVBFxѿNNSFx?i-1 word lauraNNʡENNPʡE?i-1 word favorablyJJ#~j?VB/$VBNB`" i+2 word (VBD-VBNy&1 @NNV-?CDˡE?JJffffff?WPFxPOSWRBB`"JJSʡEJJR +?WDT333333ۿDTM?FWl?RBR-INQNNPSV-VBQ?UHQ޿PRP$B`"?VBP&1RPMbRB rh?NNSZd;?NNPffffffi-1 tag+i word NNP 'n'CDOnCCOn? i word samuelNNP{Gz?VBJ +NNZd;i-1 tag+i word CC spurVBQ@NN1ZdVBN1ZdJJw/i-2 word partsVB&1ڿNN/$?JJ"~NNPS㥛?i word cronkiteNNPS/$޿NNP/$?i-2 word proponentsVBPGzJJGz?i word ruminatedVBDHzG?JJHzGi-1 tag+i word IN messrs.NNPS;OnNNSHzG@NNS㥛?JJ/$NNP;Oni-1 tag+i word NNS tumblingVBG~jt?NN~jti-1 tag+i word , eyesVBP㥛 NNS㥛 ? i word paxusNNPjtNNSClNN/$@i word laundryNN#~j?JJ(\JJRQi-1 tag+i word TO applyNNS(\VB(\?i-1 tag+i word DT mineJJˡE?NNPffffff޿JJS?5^I NN~jti-1 tag+i word , benignVB= ףp=JJ= ףp=?i-1 tag+i word `` kingNNClNNPCl?i-1 tag+i word CC dealingVBGtVֿNNtV?i+2 word stedtJJ +NNP +? i+2 word thanNNP rRBRx&1@VBZK@JJHzGVBD)\(@VBPnDTMCD+VBjt VBG$C@NNSI +?JJS+JJR㥛 @VBNvIN$C@NNPSQNNZd;?RP~jtx?CC333333RBףp= ?i-1 tag+i word RB aloneVBNx&ٿRBx&? i pref1 YPDTjtVBףp= VBPxUHx@INZd;ONNP;On@NNPSK7?CCX9v?PRP1Zd?NNSQLSףp= ӿPRP$`"y@NNClCDoʡVBN{GzJJv/ RBRHzGJJRxRBT㥛 VBDq= ףpi+1 word excavatorJJoʡ?NN/$NNSʡEi-1 tag+i word PRP maintainVBMbX?VBPMbXi-1 tag+i word -START- m.b.a.NNK7AJJX9v޿NNP(\?i-1 word frozenNNS㥛?JJS㥛i+1 word spreeNNd;OVBGQJJFx @i-2 word whichNNSK7?VB9vCCZd;O?VBDT㥛 @VBZ ףp= ?RPCl?NNCl@RBx&1PDTFxѿIN(\?VBN|?5^VBPX9v?NNPI +?RBRZd;?NNPSZd;?PRP$"~jܿJJL7A` DTxPRPlڿJJRZd;O?VBGq= ףpտRBS&1?CD`"?JJS&1 i-1 word kong NN333333POSS?JJ{GzNNPnNNPSn@VBGK7?RBzGếVBPp= ף?VBZSտi-1 tag+i word DT worthyNNClJJCl?i-1 tag+i word NN fischerNNPS rNNP r?i+1 word associationVBD{GzNNPʡE@NNPSh|?5?JJ-'NN/$?i+1 word scientistsNN!rh?JJQ?INuV?VBZq= ףpտDTuVNNPV-i-2 word accommodationsVBGFxNNFx?i-1 tag+i word RB oweVB\(\?JJ\(\i+2 word objectNN rh?JJK7VBNK7?i-2 word forerunnersINK7A`RPK7A`?i-1 word declarationDTv/INv/?i+2 word irregularitiesVBGB`"?NNB`"i-1 tag+i word NN giveVBPx&?NNx&i word offeringsVBZd;ONNS?JJS㥛 i suffix ampVB;On?RBMNNCl?VBD5^I PDTMbJJS?NNP5^I ?i-1 tag+i word , montedisionNN;On@NNP;Oni+1 word sniggeringlyCCvDTPnRB+?!i-1 tag+i word ( deoxyribonucleicVB ףp= JJ ףp= ?i-1 tag+i word PRP$ recordJJV-?NNV-i-1 tag+i word -START- peopleNNPS(\@NN~jtCD`"JJZd;NNSV- @NNP~jti-2 word weekliesJJSV-?NNV-i-1 tag+i word PRP oneVBPRQNNףp= @CDQi-2 word sessionRP +NNn?VBDPn?VBNPnRB/$IN$C?i-1 tag+i word CC foremostVBD|?5^RB|?5^?i-1 tag+i word NNS considerVBʡEVBPʡE?i-2 word stationDTX9v?INX9vi-1 tag+i word DT mailroomJJClNNCl?i-1 tag+i word NNS reducedVBN rhݿVBD rh?i-1 tag+i word VB asINS?RPQRBMbX9i-2 word innovationVBZ9v?NN9vi-1 tag+i word DT foundersNNPSy&1NNSףp= ?NNP|?5^i-2 word calls VBZd;O?RP|?5^VBNX9vVBPzGJJʡERB`"NNOn?INB`" @NNSQ롿NNP7A`?i word polishedVBNGzJJFx?NNPI +ֿi word portraysVBZ^I +?JJ^I +i-1 tag+i word DT gallonNN?JJ i-2 word sitDT`"@PDTS㥛RB㥛 i-1 tag+i word CC redefineVB^I +?NNS^I +i-1 tag+i word RB guaranteesNNSףp= ?NNףp= i-1 tag+i word DT discountNNSffffffֿNNzG?JJ`"VBP/$i-1 tag+i word RB applyVB +@VBPl?VBNrh|RBQINni-1 tag+i word NN peddlingVBGw/?NNw/i tag+i-2 tag JJR ,JJ(\?NNrh|RBʡEֿVBNX9v?i-1 tag+i word DT inflatedVBNQJJQ?i+1 word asideVBZ ףp= VBFx?VBN$C?NN ףp= VBDS㥛?i-1 tag+i word NN provideVB(\VBP(\?i-2 word stollRBʡEINʡE? i word alleysVBP/$NNS/$?i+2 word financing RBS@NNVBN-?WDTDl?JJ~jt?INx&RP r?VBZn?VBGGzVBD-DTw/?i-1 word partnershipINI +WDTI +?VBN= ףp=?VBD= ףp=i-1 suffix umpVBP'1ZRP"~jRBx?NN'1Z?IN rhi-1 tag+i word VBN southNN/$ۿNNPDl?JJDlRB/$?i-1 tag+i word RB irrelevantJJ"~j?RB"~ji-1 tag+i word VBN pretaxNNv/տJJv/? i-1 word beat VBP +JJ|?5^@NNPNbX9NN-޿RP}?5^I?RBxPRPB`"?IN1ZdۿNNSNbX9?PRP$B`"i+2 word holderVBZn?NNn i suffix ameINQVBD +VBPrh|?DTSNNPS(\FWK7A`RBDlCD1ZdJJ}?5^I@NN㥛 @JJR333333NNS}?5^INNPʡEVB!rh@VBN i-1 tag+i word JJ psychoanalyticJJ!rh?NN!rhԿi+1 word brilliantVBZ\(\?POS\(\Ͽi-1 word warriorsVBD$C˿VBPx&1VBNOn?INKi+2 word underminedJJ+?NNS+i-1 tag+i word NN failsVBZˡE?NNS^I +׿NNffffffi-1 word refiningJJMbX9?NNMbX9Կi+2 word degreesVB-NN-?i-1 word vocalNNS#~j?NN#~ji-1 tag+i word DT patientNN?JJi-1 word excerptsNNMbXVBP/$@NNSSi word overseas VBPPRPZd;RBjt@IN/$NNS333333VB/$NN(\ NNP ףp= ?NNPS-JJy&1@i-1 tag+i word , neurologistsVBZNNS?i+1 word illusionNNK7JJK7?i word maturingJJVBGL7A`?NNjti-1 tag+i word DT suddenJJ+@NN+i-1 tag+i word CC dealVB +?NN +i-2 word unveiledVBNS㥛JJS㥛?i-2 word ratiosVBN`"VBD`"@i-1 tag+i word VBG lawnJJ7A`NN7A`?i-1 tag+i word -START- donnaJJʡENNPʡE?i-1 word blastRB㥛 RP㥛 ?NNףp= ?JJףp= ÿi word uniformlyRBV-?JJV-i+1 word blitzNN-?JJ- i+2 word typeVBq= ףp@VBPq= ףpi-1 tag+i word VBZ backRP/$ӿRBCl?NNbX9FW= ףp=i-1 tag+i word VBD behindCCɿRPy&1@RBZd;ONN-INGzi+2 word growingNNS?5^I ?NNKǿJJffffff?NNPI +i-2 word computerizedNN$C?RB= ףp=VBD/$i+2 word achenbaumVBZ\(\?VBNjtVBDE?i word enteredVBNZd;OտJJnVBDGz?i word patriarchalNNPSB`"JJ#~j?NNX9vοi+1 word strategicVBGCl?NNCli-1 tag+i word IN billingVBGV-NNV-?i word insistingVBGzG?NNzGڿi tag+i-2 tag CD ,VBZDlVBD"~j?CCV-ͿRB"~INx&1VBNRQ?NNSQ?JJMbNN{Gz@CDʡEֿWDT(\?VBGV-JJR;On?SYM)\(?NNP}?5^Ii+1 word removesWDTjt?INjt i-1 word realFWuVտVBNmVBP'1ZJJw/?NNS^I +?NNP9vNN rh?i-1 tag+i word IN marginJJM@NN㥛 NNPףp= i word terrorismJJMbȿNNSClNNQ?i+1 word virtualVBMbXVBPMbX@i-1 tag+i word VBD burdensomeVBPʡERPd;OֿJJNbX9?NNףp= i-2 word norwayRBd;O@INd;Oi-1 tag+i word JJ sumNN"~j?JJR"~ji+1 word initialVBNZd;OJJ ףp= ?VBDT㥛 ?i word enterpriseVBZd;NN= ףp=?RBjtNNP|?5^ʿi-1 word beautyNNSS?RBSi-1 word societiesVBZ"~?VBP"~ i-2 word deiNNV-FWV-?i-2 word favorsNNS"~?VBNףp= @JJ~jt i-1 tag+i word JJ buildupNN rh?JJ rhi-1 word boeingNNPS= ףp=?NNT㥛 VBD?VBNCDCl?JJʡENNSp= ףNNPuV?i-1 tag+i word NNP deliciousNNPS`"ֿJJh|?5NNP +?i-1 suffix pcsRBʡE?JJʡEi-1 tag+i word RB uncannilyRBB`"?JJB`"i+2 word proposalsVBZ rпVBP}?5^I?JJE?NNEпVBDRQi-1 tag+i word PRP handlesVBZS?VBDSi-1 tag+i word NN boostedVBDK7?VBNK7i-1 tag+i word DT mutantJJ r?NN ri-2 word morishitaJJ r@RBX9vINFxٿVBPףp= RPL7A`?i-1 tag+i word VBD biddingVBG?5^I ?NN?5^I i-1 word ideaRB~jt@JJ~jti-1 tag+i word CC tradingVBG/$NNx&1?JJx&1? i suffix eibVBDX9vNNPX9v?i-1 tag+i word WDT farmersNNSA`"NNPA`"?i word advisingVBrh|VBG-?NNMb i suffix pitJJRQNN"~j?NNS9vҿi+1 word tricksVBGy&1NNy&1?i-1 tag+i word RB completedVBN"~jVBD"~j? i suffix halVBZffffff޿NNPSB`"JJQ@NN!rhi-1 tag+i word WDT changedVBNrh|?VBDrh|Ͽ i word spentJJ"~VBZ\(\VB-NN)\VBD㥛 @RBR/$ۿVBNʡE$@VBP%Ci word hazelnutVBDGzVBZRQVBK߿NNx@i word republicsNNSp= ף?NNp= ףؿi word distributeVBL7A`?NNS(\NNi+1 word printJJK7?NNK7i-1 tag+i word IN airJJ}?5^INN}?5^I?i-1 tag+i word CD candyJJEпNNSjtNN;On?i-2 word series RP^I +RB333333NN%CVBDnJJRw/ԿNNSPnNNPQ@WP+VBNp= ף?JJPn@IN#~j@DT1Zdۿi-1 tag+i word IN racehorsesVBZ'1ZNNS'1Z?i+1 word battlesJJ?5^I ?NN(\INM¿i-1 tag+i word RB frenchJJx&1?NNPx&1i-1 tag+i word , defendVB^I +VBP^I +?i-1 tag+i word `` hasteVBP rhNNSA`"NN|?5^?NNPoʡi-1 word positionsVBPd;O?NNd;O i word chapsNN'1ZNNS'1Z?i+1 word ruthlessRBSV-?JJSV-i+1 word teachRB?NNPi word liquidatingVBG(\ҿJJX9v?NNSi-1 tag+i word -START- favoredVBNX9vJJX9v?NNPsh|? i+2 word doleNN?5^I NNP?5^I ?i-1 tag+i word PRP$ grayJJ(\?NN(\i-2 word vacatedNNbX9NNPbX9?i-2 word pocketsJJMNNM?i-2 word sharpVBZ rhNNS rh? i word waxmanNNPm?NNPSQJJV-i+2 word satelliteNNPS㥛?VBZvNNSv?JJ/$NNPn i word firingVBGQ뱿NNQ?i-1 tag+i word DT veslefrikkNNPSS㥛NNPS㥛?i-1 tag+i word CD norwegianJJʡE?NNPʡE޿i+1 word flashesIN"~j?JJ~jtNNPK7Ai-1 tag+i word NNP newcomerNNn?NNPni-1 tag+i word NNP looseJJ%C?NN/$ѿVBDClRBl?VBZ{GzNNP?5^I ڿi word countingVBG~jtNN7A`@JJGz i word hopeNN?VBDlVBPE@VBZ&1NNSMb VB~jt?i-1 word politicallyVBNrh|JJˡE@NNZd;VBD;Oni word networkingVBGx&1NNx&1?i-1 tag+i word NNS continueVBPHzG?NNSd;ONN+i-1 tag+i word -START- clientsNNPS"~NNS"~?i-1 tag+i word NNP owensNNPS;OnNNP;On?i+2 word packsNN= ףp=?VBG= ףp=i word influenceVBPuV?JJx&INlNNS'1ZVB/$?NN&1? i word allayVBK7?JJK7ٿi-1 tag+i word TO lyphomedVBNbX9NNPSA`"NNPQ?i-1 tag+i word NN succeededVBDV-VBNV-?i word restructureNN/$?VBn?JJ(\i+1 word damagingVBZV-NNSV-?i+1 word future NNP(\?VBv?WDT+INS㥛?DTZd;ONNjtJJNbX9VBZCl?NNSMbi-2 word dedicatedVB+VBGʡE?NN?i+1 suffix darJJQNNZd;IN|?5^@i-1 tag+i word POS downgradingVBGMbNNMb?i-1 tag+i word IN objectiveNNQ?JJQi word disbeliefNNGz?VBZGzi+2 word sharonNN~jtNNP~jt?i-1 tag+i word DT envelopeNNB`"?CDB`" i suffix OREJJRS?NNPS i+2 word museNNS7A`NNP7A`?i+2 word hackerWDT)\(IN)\(?i-1 tag+i word VBZ influenceNNCl?INClӿ i-2 word hellNN(\JJMbRBJ +?i-1 tag+i word CC pumpingVBGzG?JJzGi-1 tag+i word NN presidedVBNZd;߿VBDZd;?i-1 tag+i word NNP leagueNNPm?NNPSmi-1 tag+i word WDT delightedJJvϿVBDv?i+1 word particularlyVBN}?5^I?VBZd;ONNK?RBGz? i-1 suffix w.CDMbJJMb?i-2 word stakesVBG'1Z?NN'1Zi+1 word culturalDT(\?JJM?NN(\ؿVBD~jtCC(\RB$C?i+1 word appearingNNSCl?JJףp= RB(\ҿVB(\?NNm?i+1 word excusesDTq= ףpJJ}?5^IԿNNP"~?i-1 tag+i word IN conceptVBD/$NN/$?i+2 word black RPClJJ}?5^I?RBRMbX9?JJRMbX9RBCl?VBZ/$?NNS333333PDT#~jNN r?FW"~VBDˡEVBNPn?VBG-? i+2 word hugoVBNʡE?VBDʡEi-1 tag+i word NN artistNNZd;?JJZd;i-2 word substituteJJX9v?NN{GzFWjt޿i-1 tag+i word RB goriotNNPn?NNPSni-1 word rapidVBZQ޿NNSQ?JJ+?NN+i+1 word clocksNN~jt?JJ~jti+2 word certain FW?VBDEVBPKWDT?RBmͿINMbp?RPK7NNNbX9JJS1ZdVBNE@NNSK?VBʡE?JJm?i word wardairNN;OnNNP;On?i-1 word value IN= ףp=VBZףp= ?DT/$޿NNHzGVBNHzG?JJHzGNNSZd;ONNPCl?VBDn?WDTPn@i-1 tag+i word DT pioneeringVBGX9vJJB`"@NNV-i-2 word bills NNsh|?VBPxWDTENNS\(\@NNP9v?RBbX9ȶ?VBDK7A`?CC rh?VBN{GztJJEINEVBZ\(\ i+1 word seekNNPS`"NNS`"?i-2 word augustinesNNPSS?NNPSi-1 tag+i word JJ affirmativeJJʡE?NNʡE i suffix rroNNmNNPm?i word platinumNNS"~NN"~?i-2 word subscribingVBˡEVBPL7A`?VBDi-1 word safewayNNPSMbX9NNPMbX9?i-1 tag+i word NNP hungerfordsNNPS;OnNNP;On?i word hungerfordsNNPS;OnNNP;On?i-1 word shipmentsJJoʡ?RBHzGNNSCli-1 tag+i word -START- pilingVB5^I VBGsh|?@NNˡE i word mafiasVBZK7AVBPL7A`堿NNS r@NNMbX9i-2 word tradesNNV-?JJ1Zd˿IN9vDT9v?NNP~jti word dataproductsNNP?5^I ?VBZ/$NNPS/$@NNS%C PRPZd;i-1 tag+i word DT currencyNNFxNNPFx?i-1 tag+i word IN sensibleNNFx@JJFxi-1 suffix wlsRB?5^I ?NN?5^I i suffix sieJJ rNNP r?i-1 tag+i word JJ goVBGz?VBP)\(?NNSq= ףpi+1 word nonconvertibleVBGuV?JJuVi-1 tag+i word VB jewelryNN(\?JJ(\ i-1 word willNN333333NNSVBNZd;O?VBP1Zd?JJQ INPnJJR/$MDRQؿRBS?CC+?DTGzNNPS㥛ܿVB/$@RBRJ + @WDT%C?i+1 word guidanceJJy&1?VBy&1 i+1 word jimNNJ +VBDv׿VBN\(\?VBPClJJFxNNPZd;O?VB$C?NNPSK7i+2 word frederickNNX9vNNPX9v?i-1 tag+i word DT symbolicJJ~jt?NN~jti-1 tag+i word CC tomorrowVBS㥛ؿNNPS㥛?i-1 tag+i word , animalNNʡE?JJQRB/$i-1 tag+i word NNS runsVBPmVBZm?i-1 tag+i word NNS manfredNNPv/?VBDv/i-1 tag+i word IN locatingVBGzG?JJzGڿi-2 word anything NNS rNNP`"?NNPSV-VBD`"οINzG?VBZ{GztVBGMb?NNffffffJJ|?5^i+2 word bankingNNPQRP rh?JJ`"@IN rhCCX9vi-1 tag+i word `` hypocritesVBZ+NNS+?i-1 tag+i word CC soybeansNNPSL7A`NNSK7@NNPCli word obligatoryJJA`"?RB7A`NN{Gz i word rollNNGz?JJy&1VBZףp= VBPK7A?i-1 tag+i word VBP soRBGz@JJZd;INli-1 tag+i word NNP purchaseNN/$?VBD/$i-2 word whoopingNNS rNN r?i-1 tag+i word TO nosediveJJK7?DTjtĿVB rhNN{Gzi word visualsNNS+?RB+i-1 tag+i word JJ shunVBPQ?NNPQi-1 word savoyNNMbпNNPMb?i+1 word heterogeneousVBP&1?NN&1i-1 tag+i word NNP recallsVBZd;O?VBDd;Oi-2 word commercial VBI +NNPSClRBV-NNKVBP333333JJ)\(@NNSX9v?VBG333333@VBDX9vVBNQ@NNP +? i word toyVBPGzJJR$CۿNNy&1?i-1 word commercialVBZ'1Z@NNSMbXɿNNPZd;׿NNPn@VBNClWDTV-JJy&1 i suffix ddyJJ{Gz?NNʡEFWClRB}?5^IDTB`"ɿNNSffffffNNPGz@i-1 tag+i word VBN unfitNNV-ǿJJV-? i word sizesNNS}?5^I?NN}?5^Ii word appallingJJZd;_@VBGClRBףp= NNrh| i+2 word tentJJn?NNnٿ i word staidVBNClNNtVֿJJOn?i-1 tag+i word RB liedJJZd;OVBDZd;O?i-2 word challengesNNL7A`?NNPL7A`i-1 tag+i word PRP$ footNN?JJ i suffix sky VBRQVBNxNNP-?RBPnNNMb`?PRPGzJJQ@VBZ rhNNSMbX i word lireVBPx&NNSK7@NNK7 JJ(\i+1 word footageJJQӿNNv/VBDFx?i-1 word eliminateNNS?JJjt?NNjtVBPi-1 tag+i word DT talksNNSףp= @JJZd;NNX9vi+2 word agnelliDT-NNP-?i word guinnessNNPS\(\NNP\(\?i-2 word racialVBN/$?VBD/$i+1 word learnsPRP~jt@CD~jti-2 word calgeneJJv/?VBDnVBN%Ci-2 word tighteningNNSMbNNMb?i-2 word irresponsibleJJn?VBNNNjti-1 tag+i word NNS rangeVBPp= ף?NNp= ףi-1 tag+i word DT supplementJJ|?5^NN|?5^? i-1 word dragIN&1?RPPnRBX9vi+1 word warningsVBNB`"VBDB`"?i word agreementVBN(\ڿNNA`"?NNP;Oni+2 word reactingRBCl?VBCl i word deep RB- @FWX9vοJJ/$@VBZ(\¿NNS+VBrh|CC^I +PDT~jtNNK7i word newsletterJJRMbXJJx&1NNPSq= ףpRBHzGNN +@RBRzGi-2 word milesVBZd;ONNPSjtNN~jt@VBNZd;OJJQNNPjt? i word sucksVBZS?NNSSi+1 word occasionallyVBQ?JJQi+1 word advisoryNNPS(\?NNS5^I NNPPni-1 tag+i word NN notedVBNtVVBDtV?i-1 word machinistsNNJ +?VBD&1?RBR|?5^VBN/$VBPQ롿NNSjt?i-1 tag+i word VBZ chargedVBN +?JJ +i-1 word introducedDTuV?WDT~jt?RBRK7RBK7?IN7A`i-1 tag+i word TO pressureVBV-?NNV-i word membershipsNNSh|?5?NNPh|?5i-1 word alfredNNS%CNNP%C?i tag+i-2 tag JJ NNJJRSDTx&1VBZx?NN +VBP~jtVBG/$?JJ`"?NNSv/FWClVBN?5^I ?INK7A$S㥛VB}?5^I?NNPSHzG?RPClVBDrh|?RB rh?NNPʡE? i word brazilNN"~NNP~jt?JJR-i-1 tag+i word RB comparableJJX9v?RBX9vi-1 tag+i word '' moveVBENNE?i-1 tag+i word `` capitalistsVBZ333333NNS333333?i-1 word speedRP"~?IN"~i-1 word delectableNNT㥛 ?CDT㥛 ؿi-2 word tossingRP/$ٿIN/$? i suffix RonJJMbNNPMb?i+2 word restructureVBG ףp= ?NN ףp= i-1 tag+i word `` premediatedUH|?5^JJףp= ?VBDZd;Oi-1 tag+i word JJ remodelingNNS㥛VBGS㥛?i+2 word schaefferNNx&1?RBx&1i+1 word growing NNh|?5VBNbX9޿VBP~jt@RBFx?NNP̿VBB`"JJrh|PRP$QINX9v?NNSuVRPI +?JJSGz? i-1 word bVBZ ףp= NNV-?VBDEi+2 word stolenRP1Zd?NN%CVBD%C?PDT~jtRB1ZdDT~jt?i word theatreNNףp= FWףp= ? i word wernerRBSS㥛NNPS㥛?i+2 word theatreFWCl?VBףp= POS?NNMbi-1 tag+i word NNS bitterJJV-@RBvVBPtVi+2 word enemyJJK7A?NNK7ARBSjt?JJSjti word draculaNNI +NNPI +? i+1 word bayRBzGJJClNNP rh?i-1 tag+i word NN emphasizedJJZd;O׿VBDZd;O?i-1 word requirementsVB~jtVBP~jt?WDTKǿRBQINx&1?i word digitalNNSJJV-?NNi+1 word chatterJJ{GzNNPL7A`NNK7? i+1 word bonoNNʡENNPlFW|?5^:@JJuVi+1 word narrowlyRBR ףp= ?JJR ףp= ߿i-1 tag+i word DT holderNNGz?JJRGzֿi-1 tag+i word -START- sovietJJPnNNPPn? i suffix monJJd;O@NN rh?NNPSJ +NNP\(\VBP= ףp=i word strategyNNoʡ?NNPoʡi+2 word hookedNNPX9vNNSX9v?i-1 tag+i word POS bigJJ!rh @NNP!rh i-1 tag+i word VBD sellJJRnVB rhNNZd;@JJK7i-1 tag+i word , gilletteNNPv?VBvi+1 word badlyNNP +VBPw/ܿNNPS +?VBNFx?VBD{Gzi-1 word publisherNNZd;NNP+?JJ\(\?RB"~ji-1 tag+i word JJ soccerNNSjtNNjt?i-2 word primarilyVBd;O?JJ#~j?NN"~jVBNMb`? i word comesVBZl@NNS ףp= NNP|?5^i+1 word contractorDT= ףp=?NNPʡE?NNmJJV-?IN= ףp=i-2 word hopesWDT~jtJJMb?DT~jt?NNSˡEVBˡE?VBGE@RB+NNT㥛 i+2 word commercialVBG"~jVBDClVBNQ@RBT㥛 @INT㥛 VBZS㥛?NNS= ףp=NNP"~j?i-1 word dividendsNNSx?JJxi-1 tag+i word VBZ badJJ"~j?NNP"~ji+2 word decisionVBCl?VBDHzG?VBNHzGRBnINʡEDT&1@ i word prizesVBZ333333NNPS$C?NNSL7A`@NNx&1NNP$C i word ala.NN~jtNNP~jt?i-1 tag+i word CC dieNNS"~jNN|?5^VBPOn?i word trademarkNN+?JJ+i-1 tag+i word DT chamberJJ/$޿NNP9vʿNNS-NNx&1?i word businesslikeJJK7A` @NNK7A`INK7A`i-1 tag+i word NNP leadsVBZh|?5?NNnNNPDli-1 tag+i word '' passedVBNv?VBDvi+2 word couponJJsh|??NNV-VBN(\ݿi tag+i-2 tag JJS ,NNPSxNN㥛 VBPzG?JJzGNNS㥛 ?NNPx?i-1 tag+i word VBN grayJJsh|??NNS+RBZd;߿NNv/տi+2 word forcedRBClNN9v?VBDnVBN1Zd?JJx&1IN&1NNP&1i-1 tag+i word IN boostingVBGzG?JJzGi+1 suffix ujiVB~jtNNSV-JJ r?NNzGʿNNP~jt?i-2 word abusiveNNS+?NN+i+2 word deliveringVBNX9v?VBDX9vi-1 word decisionVBZh|?5?VBG333333VBN(\NN333333?VBDZd;?i-1 tag+i word RB reflectVBx&?VBPx&i-1 tag+i word VBG racketeeringNN7A`?JJ7A`VBG7A`i-1 tag+i word : plottedVBNx&1VBDx&1? i-1 word cutJJS㥛?NNSJ +ٿRP?5^I ?CC1ZdNN-?VBDffffffVBNPnDTJ +?VBRB)\(ԿWDTX9v?IN+VBGSÿRBRSVBPDl?i-1 tag+i word RB admiresVBZK?RBKi-1 tag+i word NN lowsVBZ{GzNNS{Gz?i-1 tag+i word VBZ providingVBG$C?JJ$Ci-1 tag+i word DT moderateJJffffff?NNffffffi-1 tag+i word PRP$ !YEARJJh|?5οCDh|?5?i-1 tag+i word NN tableVBʡENNʡE? i suffix 974CDv?JJvi word revisingVBGX9v?NNPX9v޿ i-2 word fact JJSS?VBZ~jtJJRQ?VBPClWDT~jtIN~jt?NNSFxVBDCl?RBSSÿi-1 tag+i word NN costsVBZ(\ҿNNS(\?i-1 word systemVBNQ?INܿRPx&?RBRQ?VBP ףp= WDT rh?DT?MDsh|?ſNNPSx&1пNN"~VBD1Zd?VBZjt?VBX9v?JJQ?CC/$RBV-NNSnNNPZd;O i suffix 3.1NNSX9vCDX9v? i word hurt VBD&1?RBRx&1VBN= ףp@VBPKǿRB"~jVBZZd;OݿNNSEJJ(\?NN?5^I VB-?i-1 tag+i word CC tissueVB|?5^NN|?5^? i-1 word vastNNnJJn?NNS\(\?VBN\(\i-1 suffix godVBZV-@NNSףp= POSʡEi+1 word aggravateRBS?JJtVRBRRQi-2 word oliverVB#~jVBP#~j? i+2 word pigsJJK?NNPKi-1 tag+i word , wivesVBZy&1NNSy&1?i+1 word sciencesVBV-NNPV-? i+1 word aptNNPA`"NNPSMbX9?NNSZd;ORBRA`"?JJRA`"˿i-1 tag+i word CD existingVBGʡE?JJʡEi word scoffedVB+NNSQӿNNuVVBDDl@i-1 tag+i word NNP freeVB%CJJ%C? i word yardsVBZENNSE?i-1 tag+i word DT strangeJJCl?NNʡENNPFx? i suffix warNNSSJJ^I +@NNK7Ai-1 suffix aimDTHzGWDTMbXINZd;O?i-1 tag+i word CC headquartersNNS^I +?VBZ^I +i-1 tag+i word JJ tanksNNS(\?NN(\ i+2 word wageVBZzGNNSzG?NNL7A`VBDn?VBNnٿJJL7A`?i-2 word serpentVBNy&1?JJy&1i-1 tag+i word POS oversizedVBNJJ?i-1 tag+i word CC studyVBh|?5NNh|?5? i-2 word packJJQ?NNx&1NNPK߿i-1 tag+i word RBR complianceNNSNN?i-1 tag+i word VBZ developerNNV-?JJ1ZdVBNi+2 word coupledNNFx?JJFxi word rumblingsNNS!rh?VBN!rhi-1 tag+i word VBG convertsNNQNNSQ? i word hicksNNS7A`NNP7A`?i-1 tag+i word RB splitVBN5^I ?NNKJJvVBZd;?VBPZd;i word premieredVBNףp= VBDףp= ? i word daikinJJQNNPQ?i-1 tag+i word NN approvedVBDx&1?VBNx&1ܿi word shelteringVBGS?NNSۿi-1 word witterNNPSMNNPM?i+2 word conflictVB"~?NN"~i-1 tag+i word TO mccawVB rhNNP rh?i-1 tag+i word DT declaratoryJJ(\?NN(\ݿi+2 word seizedVBNd;O?JJMb?NNP}?5^Ii+1 word stockRBRJ +VBP/$VBN`"NNPJ +ѿVBGp= ף @RPS@VBDEؿPOSrh|?DToʡNNSd;OVBZrh|NNPSRB?5^I CCv?IN?JJv?WDT㥛 VBuVտNNxJJRJ +?i-2 word carcinogenicVBNʡEJJh|?5VBDQ?i+2 word rulingNNtVRBn?VBZB`"ٿNNSB`"?VBnJJtV?i-2 word violenceNNGz?JJGzi-1 tag+i word , grummanNNPB`"?NNPSB`"i-1 word apartheidNNST㥛 ?NNPT㥛 i+1 word downturnNN(\RBR|?5^VBG!rh?JJI +?i-1 suffix T2-"INNbX9?JJE?DT-?WRBbX9ȶ?VBNS㥛?PRPNbX9JJR rȿNNPK7A`VBGv/?WP~jtӿRP;OnJJS#~jԿVBPzGLSoʡ?MDJ +?UHsh|??PRP$sh|??VBDFxCCh|?5?$9v?FW`"PDTܿCDˡE?VBZ5^I ۿNNS㥛?NNSV-?VBx&1?RBSV-?RBROn?NNPS ףp= SYMjt?WDT-?TOx?RB? i word hauntVB/$?NN/$ѿ!i-1 tag+i word -START- censorshipNNS?NNPSi+2 word slackNNS%C?NN%Ci+2 word telecommunicationWDT'1Z?IN'1Zi+1 word cemeteryNNx&1?JJx&1ܿi+2 word creswellVBPS㥻NNS㥻?i-1 tag+i word `` !HYPHENJJNbX9?IN$CNNS~jtNNP?VBX9vϿNNT㥛 ?VBN#~jܿVBPʡEƿi-1 tag+i word PRP$ valuationNNZd;?JJZd;i-1 tag+i word RB heededVBNB`"VBDB`"?i+2 word stripIN{Gz?NNP{GzĿi+2 word thingsNNSS?JJR-VBp= ףPDTK7?RB~jt?VBZ~jt?WRBw/?RBR-?INMbX?DTK7VBN~jtNNnVBPK7A`?NNPw/i+1 suffix traNNPS!rhRBMVBNˡE?VBPM?JJ/$?NNPK7AVBCl?i-2 word transfersNN#~j?JJ#~ji-1 tag+i word , policeNNS/$?NN/$i-1 tag+i word IN naphthaNNQ?VBNQi-1 tag+i word VB offsettingNNxVBGNbX9JJGz@i+1 word bankerJJ= ףp=?NN/$NNPsh|?i-1 tag+i word VBD wearyJJGz?NN5^I JJR/$i-1 tag+i word DT turfJJ?5^I ?NN(\INM¿i-1 tag+i word POS hadVBPDlVBNMb?NNL7A`VBDzG?i-1 tag+i word NN exceedsVBZS?JJSi-2 word customsJJR(\RB(\?i+2 word gatheringVBNuVJJ= ףp=?VBDCl i-2 word sizeJJB`"VBNB`"?RBK7INK7?i-1 tag+i word NNS centerVBP5^I JJRV-NNoʡ@VBN/$i-1 word grimmVBDv/?VBNv/i word gradualJJ(\?NN(\i+2 word philipWDTQ?NN㥛 ?JJ㥛 INQi-1 suffix creJJbX9FWbX9?i-1 tag+i word IN eyesCC/$NNS/$?i-1 word cruisingRPx&ѿRBx&?i word admissionsJJ(\NNS(\? i word orkemNNPbX9?VBV-?RPxJJOnNN|?5^ڿRBGzֿi+1 word mistakeJJ r?NN ri-1 tag+i word DT driverJJ(\NNS+NNv/?i+2 word allegationsVBNZd;OJJOnDTGzRBOn?VBDZd;O?PDTGz?i-1 suffix latNNy&1?JJ1ZdVBD%CVBNX9v?i+2 word begunJJX9v?NNX9vi-1 tag+i word CD militaryNNSHzGJJM?NN+ÿi-1 word motorsNNPSsh|?NNClNNP(\?i+1 word detectVBZn?JJni-1 word rickeyVBDDlNNPDl?i+2 word hammacksINZd;?VBPx&1RB/$i word orwellianJJENNPE? i+2 word setsJJ(\@RPoʡ?NNvRBoʡNNPE i word clutchVBClVBPX9v?JJ/$i-1 word socialNNPSʡE?NN(\VBNB`"JJSſNNSK?NNP-ӿi+2 word animationJJ)\(?NN)\(i-2 word quebecorNNX9v?JJSClRBRV-JJ+?VBZV-?NNPClVBV-?i-2 word tailoredJJ㥛 ?NNP㥛 i-1 tag+i word RB vacuumNN/$?JJ/$i word opticalJJl?NNl¿i-1 word amateurNNX9v?JJX9vi-1 tag+i word RB lowVBP~jtJJ}?5^@RBʡEIN%CVB-i-1 tag+i word , legitimateJJRjtJJjt?i-1 tag+i word RB returnJJMbX9@NNX9vVBZʡEۿVBEԸ?VBPK7i-1 tag+i word DT nuclearJJrh|NNPrh|?i-1 tag+i word DT unravelingNN"~j?JJ"~ji-2 word evaluateRB|?5^NNClѿVBP|?5^?JJCl?NNS|?5^?VB|?5^i-1 tag+i word DT divingNNffffffVBGy&1JJ%C@i-1 tag+i word NNP rigueurFW+?NNP+i+1 word carryRB(\ҿDT(\?!i-1 tag+i word IN intercollegiateJJ\(\?NN\(\ i-1 word lboNNSZd;?POSZd;i-1 tag+i word RB nearJJQRB(\?IN(\? i-1 word peakVBPoʡNNSoʡ?i-1 tag+i word IN capitalistJJm?NNmi-2 word cartingNN9v?JJ9vi+2 word vasesVBtVJJtV?i-1 tag+i word VBD supportVBN+NN+?i-1 tag+i word -START- ammoniumNNPˡENNˡE?i-1 tag+i word IN nrmJJNNP?i+1 word watchingINnNNSV-NNPQNNPS$C@NN ףp= ?JJx? i suffix .86VBPT㥛 CDT㥛 ?i tag+i-2 tag JJR CC NNP~jt?JJ1ZdNNCl?VBD?VBGX9v?VBZnNNSDl?RP333333VBNVBP`"RB?5^I ? i word lapsedVBNK7A?VBDK7Ai-1 tag+i word VBN chiefNN9vҿJJ9v?i-1 tag+i word ( ridleyNNSZd;NNPZd;?i-1 tag+i word NNS strikeVB-޿VBPNNB`"@IN"~i-1 tag+i word , demandNN;On?VBPS㥛?VBGV-VBN9vJJh|?5޿i-1 tag+i word JJ peteJJClNNPCl?i-1 tag+i word JJ useVBX9vNN\(\@FW!rhܿVBNClVBPjtֿRBK7Ai-1 tag+i word JJ conversationVBPDlNNDl?i-2 word regummedNNSK7?NNK7i+1 word noticiasJJ1Zd?NNEԸNNPףp= i-1 tag+i word ) perJJRbX9޿INbX9?i-1 suffix garVBG/$?NN/$VBZ#~jNNS#~j?NNP#~j?NNPS#~ji-1 tag+i word CC philosophicJJ;On?NN;On i word immuneJJ@VB^I +VBPuVͿNNnRBsh|?i-1 tag+i word JJ particularsNNSS?RBSi word houseworkNNSSNNS?i-1 tag+i word JJ philippinesNNPSsh|??NNPsh|? i suffix ism VBZ+VBQRB&1NNZd;%@VBN$CJJQ8INnNNSFxNNP@i+2 word riskyPDTZd;O?JJZd;Oi+1 word predatesWDT\(\?IN\(\i+1 suffix barNNSJJDl?NNQNNP&1?i+1 suffix fiaNNK7A?NNSK7Ai-1 tag+i word NNS fallRB rhVBp= ף?VBPʡEi+2 word jointRB= ףp=IN= ףp=?VBZ"~NNS"~?VBrh|?RPrh|NNrh|VBPrh|?i-1 tag+i word NN codeVBP(\NN(\?i word launderingNNtV@VBGtVi-1 tag+i word POS mostRBSE@JJSEi word legislatorsVB-ӿNNS-? i word omniJJNNP?i+2 word aggravateJJffffff?RBffffffi-1 tag+i word , accusatoryJJJ +?NNJ + i suffix \*NNS9vSYMFx?NN)\(i-1 tag+i word IN healthcareNNGzNNPGz?i-1 tag+i word PRP$ breakfastNNʡE?JJʡEi-1 tag+i word RBS advancedJJv/?VBDv/i-1 tag+i word IN moldyJJ;On?PRPSNNMbNNPPni-1 tag+i word VBP scheduledVBNrh|?JJrh|i-2 word officer VB/$JJ?VBDS@VBPI +޿INףp= NNSClNNPQ?NNPSX9v?NNMbVBNDlѿRBVBZv/DTףp= ?i+2 word groundsJJS)\(?NN)\(i-1 tag+i word -START- nokiaNN~jtNNP~jt?i word comediesNNSGz?NNGzi-1 tag+i word RB borrowingNNbX9?VBGbX9i-2 word guardNN= ףp=?JJ= ףp= i suffix ec. VBZ;OnNNPNbX9@VBL7A`@NNPSx&VBDx&VBPffffffRB'1Z$S㥛NNI +JJCli word mercantileNNPSZd;NNPZd;? i suffix ADSVBZmͿNNPS'1Z?NNS/$NNPA`" i suffix ult JJ7A`NN)\@VBP~jt?RBZd;VB!rh?VBGX9vJJS1ZdINd;ORPGzNNPV-տi+2 word gruesomeNNS +UHy&1RB(\?i-2 word kennethNNPS7A`NNP7A`?i-1 tag+i word VBP discontinuedVBNm?VBDm i+1 word sacVBD;OnINS?FWK7A`i-1 tag+i word IN vocalNN"~j?JJ"~ji-1 tag+i word VBP dataNNSx&NNx&?i-1 tag+i word -START- doesIN"~VBZv/@NNSףp= NNP5^I ?RBJ +CC#~jJJ/$i-1 tag+i word CC startVBZd;O?NNI +JJ?5^I ҿi-1 tag+i word NN alleyRPmNNm?i-1 tag+i word -START- areRB$CJJv/NNPSK7A`ݿVBPbX9@i+1 word predictedRB(\JJ/$FWS㥛NNPʡE?NN/$?i tag+i-2 tag NNP FWCCNbX9?JJNbX9i word surplusesVBZ-NNS-?i+2 word unwrittenCC^I +VBZ^I +?i-1 tag+i word IN charterNNMbX9?JJ-RB㥛 ¿i+1 word intradayIN?5^I JJ?5^I @ i word bitchNNS-NN-?i-1 tag+i word NN kerloneNNV-NNPV-? i suffix vidNNV-׿JJ ףp= ?NNS|?5^VBNX9v׿i-1 tag+i word CD streetNNuV?JJ|?5^NNSv/Ϳi+1 word lobbyJJK7A?NNK7Ai-1 word regularRBFxNNPʡEտJJv?WRBbX9NNuV?i-1 tag+i word IN tarNNSX9vֿNNX9v?i+1 word sentraVBNˡE?JJˡEi-1 word reparationsVBZ+?NNS+i-1 tag+i word WP smokeVBP r?VBD r i suffix -30NNP9vNNS#~jJJx&1?NNl?i word umbrellaVBP;OnNN;On?i-1 word procrastinationVBDS㥛?VBNS㥛ؿJJ'1Z?PRP'1Z i suffix deiVBZK7FW|?5^?JJV-VBD;Oni-1 tag+i word VBG dataNN(\NNS(\?i-1 word strikesNNh|?5IN;OnҿRP|?5^JJzG?i-1 tag+i word . l.p.NNK7@NNPK7i-1 tag+i word NN heatedVBDx&1VBNx&1@i+1 word outstandingVBZNNS&1?VBDK7Ai+1 suffix nbcJJ$CNNS/$NN/$?i-1 word southbrookNNPS ףp= ?NNP ףp= i word allenNNPSL7A`пNNPL7A`?i+2 word essentiallyNNP(\տIN(\?i-1 tag+i word DT congressionalJJףp= NNPףp= ?i word blessingNNn?JJnٿi-1 tag+i word CC quotronJJX9vNNPX9v?i word awesomeJJv@NNvi-1 tag+i word DT pushoverNNK7A`?RBK7A`ݿi+2 word anticipationJJRvRBRv@RBZd;OINZd;O?i-1 tag+i word VBN hawksPRP$ rNNSjt@PRP)\(NNx޿i-2 word virtuallyNNV-?JJX9v?CDSi-1 tag+i word IN ladyJJ`"NNP`"?i-1 tag+i word CC replasterJJsh|?VBjt@JJRx&1NNmݿi-2 word factualVB|?5^VBPxVBNRQ?i-2 word chamberRB+VBDZd;O?VBNZd;OտCD)\(?JJ)\(NNP+?i tag+i-2 tag CC VBZ JJR rhWDTZd;O?JJVBZI + @NNP?VBNbX9NNM?INZd;ONNSQi-1 tag+i word NNP uprisingVBGMbNNMb?i-1 tag+i word NN compareVB= ףp=VBPv/?NNT㥛 i-1 suffix gerIN$CRB +VBDuV?POS rh?WDTX9vPRPvVBZuV?NNPSq= ףpݿNNK7NNPzGVBw/@FW1ZdۿVBPX9v?JJ r?NNSX9vJJR!rh̿VBG-?VBNT㥛 ? i word firedVBN rhٿJJ5^I ۿVBD= ףp=? i word organVBP&1ڿNN&1?!i-1 tag+i word NNPS entertainmentNNp= ףNNPp= ף?i word sekisuiJJZd;ONNPZd;O?i+1 word flakesNNPS/$ٿJJv/NNP +?i-1 tag+i word -START- harryJJbX9NNPbX9?i-2 word control VBNʡE?VBPMbX9?INʡEVBMbX9JJNbX9NNPnNNS/$?NNPx&?NNPSK7A`VBD{GzĿRBK?i-1 tag+i word CD consecutiveJJ{Gz?NN{Gzi-1 tag+i word NN banNNT㥛 ?VBDT㥛 i+1 word patternVBG5^I NN5^I ?i-2 word cableNNPˡENNSV-@NNoʡ?JJzGCDv/i-2 word facilitateVBGPn?NNPni-1 tag+i word POS bottomNNv?JJvi+1 word packetsNN(\?JJ(\i word recommendingVBRQȿVBG|?5^?NN(\JJL7A`i-1 word undergroundNNʡE?JJʡEi-2 word manipulationVBNCl@VBDCl i word slainNNSvVBNRQ@NNQNNPZd;Oi+2 word partnershipNNPS+VBGx&NN9v@VBNRQ@JJV-NNP/$?i-1 suffix boxRB= ףp=IN= ףp=?i word attemptsVBZ!rh?NNSK7A?NNK7ARB!rhi+2 word enteredNNB`"?JJB`"i+1 suffix fadNNV-?JJV-i+2 word promptlyVBNl?JJlNNP/$NN/$?i-1 tag+i word NNS applicableVBlVBP㥛 JJZd;?i-1 word simulatedNN{Gz?JJ{Gzi-1 tag+i word CC notesVBZX9vNNSX9v?i-1 tag+i word NNP managersNNPS~jt?NNP~jti+1 word keizaiNN-JJh|?5NNP%C?i+1 suffix sesVBGVBPCl @NNq= ף@RBStVCDEVBD?5^I VBV-ڿRBRffffffֿINx&1JJRzG?VBNn?JJQ@VBZ^I +?FWx?NNPX9vNNPSw/JJS?WDT1Zd?DTʡEPRPSRBQNNSA`"CC+?i-1 tag+i word NNP deniesVBZd;O?NNSd;Oi+1 suffix ntoVBPm?JJy&1JJRMbXPRP$|?5^ɿVBMbX?RBA`"?NNSy&1VBD333333?WDTQINh|?5NNPSZd;O?RPOnNNMb?FW"~j?DTQ?NNP|?5^RBRjt?VBNK7?PRP|?5^?VBGCl?VBZA`"?i-1 tag+i word , holdVBףp= VBPK7?VBDZd;i-1 tag+i word JJR becauseRBl?INtV?NN"~i-1 word decliningNNQ?JJQտi-1 tag+i word IN seemedRB+VBD+?i+1 word value NNSʡEJJR$C?VBDJ +ѿVBNMb?IN|?5^@NNMbXPOS5^I VBP/$RBMVBZ5^I ?VBnʿVBG"~j?JJOnÿi-2 word equalRB r?NN\(\@JJ\(\IN ri-1 tag+i word JJ completeJJCl?RBCli-1 word acceptancesVBPOn?NNOni+1 word willingJJR/$RBR/$?i-1 word protectionNNZd;NNPZd;?i-1 tag+i word `` revengeNNp= ף?NNPp= ףi word observatoryPOSʡENNʡE?i-1 tag+i word NNS slumpVBP/$?RBRv/NNClۿi-1 tag+i word VB keyJJ$C?NN$Ci word microvanNNCl?JJCli+1 word marginallyRP\(\RB ףp= IN\(\@i word electricalJJ㥛 ?NN㥛 i word mphNNSˡEJJRClNN r?i-1 tag+i word NNP clonesVBP;OnNNS;On?i-1 word distributionJJSNNSS?i-1 tag+i word JJ higherRBRK?JJR rh?NN;Oni-1 word planningNN/$?VBN?JJ/$ݿVBD i-1 word mr.NNPSzGNN/$FWMbX?VBDINClVBZMbX9NNS+NNPˡE}@i-1 word resistedNNSOnJJROn?i+1 suffix rieNN!rhNNP!rh?i-1 suffix lorNNPSX9v?NNGz?VBP-IN= ףp=?NNSGzNNPbX9i-1 tag+i word JJ southernJJx?NNPxi-1 tag+i word DT monolithicJJ-?NN- i word strohNNPSS˿NNPS?i tag+i-2 tag POS PRPJJMb?NNSq= ףpVBd;O?RBFx?NNQVBD/$?RBSV-VBNV-?i word tangentialJJ r?NN ri-1 tag+i word RB confuseVB)\(?JJ)\(i-1 tag+i word JJ tonyJJ|?5^?NN|?5^ i word ufosNNPS(\NNSK7@JJRSJJQѿNNPi-1 tag+i word VBD loveVBJ +?NNJ +i-1 tag+i word RB investingNNZd;?RBQVBG!rhi-1 tag+i word NN spillsVBZCl?NNSCl i+1 suffix zRB}?5^IFWClDTB`"ɿNNPGz@NNCli-1 tag+i word JJ raidNNOn?NNPOnۿi-1 tag+i word CC litigationNNV-?JJV-¿i-1 tag+i word NNP tooVBP'1ZԿNNP'1Z?i word habitatsNNSK7A`?NNK7A`i word bicentennialJJ+η?NN+ηi-1 tag+i word DT sleepingVBG~jt?NN~jt i word yaVBZ;On¿VBP333333PRPףp= ?i-1 tag+i word DT distanceJJ^I +ǿNN^I +?i-1 tag+i word JJ resetVBPx&1NNSlJJT㥛 @NN㥛 i+2 word projectionsWDTp= ףINp= ף?VBZ(\?VBD(\i-1 tag+i word DT petroleumNN ףp= ?JJ ףp= i-2 word embroiledNNK7?JJK7i-1 tag+i word , breakingVBG?NNi-1 word boeskyRB7A`IN7A`?i-1 tag+i word '' famedVBNT㥛 ?VBDT㥛 i+1 word darmanJJuVտNNPuV? i word lboNNʡE@JJGzNNP/$i+2 word sidewaysIN~jtWDT~jt?i+1 word scannersVBDxֿVBNv/JJRQ?i-1 tag+i word NNP w.NNPZd;?VBDZd;i-1 word equalVBGjtNNjt?RBx&1INx&1?i+2 word ashoreNNSK?VBNK i suffix ujoJJS㥛NNPS㥛? i word checksVBZFxNNSFx? i suffix HoeVBx&?NNPx& i+2 word racyRPClVBNCl?i-1 suffix t&tNNStVVBDtV?i-1 tag+i word WRB leverageNN +?JJ +ֿi-1 tag+i word , exercisableVBP'1ZJJjt@NN\(\i-1 tag+i word NN plusCCK7?NNSOnNNvJJy&1i-2 word pallorRBS?JJSi-1 tag+i word NNP depositoryNNv?JJvi+1 word expressionVBGh|?5JJh|?5?i+1 suffix bieVBZbX9?NNSbX9i-1 tag+i word -START- namesNNS rh?NNP rhi word hedgingNN7A`?JJ|?5^VBGv?i+2 word shortsVBNX9v?VBDX9v i suffix hipJJM?NNSQNNPQVB ףp= ?NNPS#~jNNV-@RBRClSYMjti-1 tag+i word NN tuneNN~jt?JJ~jti+2 word remicsJJ(\NNZd;O?JJREi word wistfulJJK7?NNK7i-1 tag+i word VBG maintainedVBN rhVBD rh?i word patriarchyNNSB`"NNB`"?i-1 tag+i word , quotedVBNV-?VBDV-i-1 tag+i word DT staggeredVBN~jtJJ~jt?i word applianceVB|?5^NNM?JJxi word fragmentsVBZCl?NNSCli-1 tag+i word CC boozingVBGʡE?NNʡEi-1 tag+i word NNP steelNNPS;OnNNV-NNP"~j@i-1 word mercuryNNPS㥛 NNP㥛 ?i-1 word spiralRB+?JJSNNv/INrh|Ͽi-1 word stimulusVB|?5^?NNSq= ףpNNKi-1 tag+i word JJ believeVBPp= ף?NNp= ף i+1 word kpmgNNPn?JJPn i word foraysVBZq= ףpտNNSNbX9?JJ㥛 i+1 word marginalVB"~j?VBD|?5^?VBN|?5^RBRjt?JJ"~jJJRjti+2 word mideastVBN;On?VBD;Onҿi-2 word securitiesVBGJ +?NNRQؿRBX9v?NNPuVVBD#~j?WDT333333?VBZjt?JJ7A`¿VBP&1INbX9?RPZd;ODTMNNSS㥛VB= ףp=?NNPSʡE?VBNv/i-1 tag+i word NNS discussedVBNS?VBDS i-1 word edgeRPʡERBRv@RBʡE?JJRvi-1 tag+i word CD classesNNSV-?VBNV-i-1 tag+i word VBN swissNNPClJJCl?i-1 tag+i word DT earthyJJV-?NNV- i-2 word taxNNK7@VBD1ZdVBP1Zd˿NNSClӿRBR1Zd?INX9vVBZCl?NNPV-VB/$@JJSm?RBSmVBNZd;O?JJSVBG9vCC1ZdFWV-WDTX9v?i-1 tag+i word IN grislyJJB`"?RBA`"NN(\µi+1 word moresNN7A`?JJ7A`i-1 tag+i word -START- knownVBNh|?5?NNPh|?5i-2 word bullishVBP$C?VBZ$Ci-2 word defeatedJJ(\?NN(\i word stylishlyRB`"?JJ`"i-1 tag+i word DT slopeNNSzGNNzG?i-2 word consolidatedVBZbX9?NNSbX9NNX9vNNPX9v?i+1 word neutralizesWDTQ?INQοi word applicableVBlVBP㥛 VBNV-JJCl?i+1 word josephCCS㥛RBh|?5οNNP)\(?i word shortagesNNS-?VBZ-!i-1 tag+i word -START- associatedNNP)\(@VBN(\JJQi+1 word kronerJJʡE?NNPʡE޿i+1 word westernNN)\(ԿVBPjtWDTK7A`JJS?IN+@VBZʡE?NNS(\i+1 word machineryNNPSZd;׿NNSQ?JJM@NNQNNPp= ףi+1 word fossilJJZd;O?NNK7VBGA`"ۿi-1 tag+i word NN changeNN/$@NNPףp= VBP㥛 ҿNNSCli+1 word expensesVBGzGNNOn@JJ'1Z i word finedVBNQ?JJx&1VBDʡEտi+2 word slashedNNS|?5^?NNm?JJ-i+2 word loungeNNS(\?NN(\¿i-1 tag+i word , spanishJJ333333?NNCl׿NNPx&?i-1 tag+i word IN calgaryJJQNNPQ?i+1 suffix iniJJQFW|?5^?IN rhVBQ?NNP(\i+1 word finishedNNSʡE?VBZʡEi+2 word colorfulVBNA`"NNA`"?i-1 tag+i word DT leftistJJK7A?NNK7Ai-1 tag+i word NNS killedVBN"~?VBD"~i-1 word limitedNN;On?JJjtNNP333333?i+2 word completionVBN(\?NNbX9?VBDV-i-1 tag+i word VB controlNNSS㥛NNS㥛?i-1 tag+i word NNP regardlessRBʡE?NNX9vοCDL7A` i word mmgVB5^I NNP5^I ?i-1 tag+i word JJR rivalNNʡE?JJʡEi tag+i-2 tag VBD NNVBNK7JJ= ףp=?DTRQVBK7JJRx@PRPT㥛 CCp= ףJJS|?5^?VBGjtԿVBDx&1?VBPjt?VBZPnRPoʡ?NNP"~INI +RBSV-PRP$NbX9?WDTCl?NN"~jFW;OnRBp= ף?NNSx?PDTx?RBR|?5^?CD?i+2 word displayingNNPSv/?NNPv/i-1 tag+i word WP redJJm?VBDm i-1 word dejaNNV-?RBV-i word weakestJJSbX9?NNbX9i tag+i-2 tag RB ``JJMbX@VBGtV?DT|?5^?INtV?RBL7A`NN rhWP(\?VBN/$ @VBP&1 VBZL7A`尿NNPHzG?VBPn?NNPSnRPZd;UH"~jVBDvCDCl?''B`" i word roughRBd;ORPClJJM@NNS ףp= NNMbX9i word melancholyJJMb?NNMbi-1 word hewlettVBNVBD?i-1 tag+i word DT decreaseVB1ZdۿNN +?JJi-2 word staticJJʡEVBʡE?i-1 tag+i word VBG fujisNNPSh|?5?NNPh|?5i-1 tag+i word IN latinJJK?NNPKǿi-1 tag+i word PRP whatWDT|?5^?WP|?5^i-2 word abettingVBG(\?NN(\i-1 tag+i word WDT spoiledVBPvVBDv?i+1 word bloodIN(\VBZʡE?NNSʡENNPv?VBvRP(\?VBN rhͿJJ rh?i-2 word protestantsNNPS?NNS i suffix uarNNPClJJCl?i-1 tag+i word DT '60sCDV-@NNSHzGNNCli word requisiteNNOnJJ rh@VBA`"ۿRBoʡi-1 tag+i word RB attackedVBN +?JJ +ֿVBD= ףp=?VBZ= ףp=i+2 word alternativeJJRʡE?VBPEIN"~j@RP +NNV-VBD+RBSʡE?RBR&1i+1 word experiencedRBSy&1?VBnVBPn?JJSy&1 i word dollarNNFx@JJQNNP%CNNPSZd;NNSjti+1 word amendmentsVBG&1?JJQ롿NNZd;Oi+1 word operating NNS;OnVB"~jܿVBPx&VBN}?5^I?VBZjtֿPOSjt?JJlJJR{Gz?NNZd;?VBDˡE?FWffffff?RBR{Gzi-1 tag+i word JJ entertainingVBG\(\JJl?NNy&1i+1 word transitionJJ&1?NN&1i-1 tag+i word NNS inflateVB+?NN+i-1 tag+i word JJ adjustableNNZd;JJZd;?i-1 tag+i word : ralphJJd;ONNS㥛ܿNNP r?i word elementNN r?JJ ri-1 tag+i word JJ masseNNK7A`FWK7A`?i-1 tag+i word CC jewelryNNSZd;ONNZd;O?i+1 word touristsJJjt?NN rhNNP%CԿINK7?i-1 word product VBGʡENN1Zd?VBDEVBN|?5^?VBZ/$?VB9v?VBP9vWDTZd;O?INZd;ONNS㥛 ?i-1 tag+i word VB groundNN|?5^?JJ|?5^i+2 word turningVB +?WP9vVBNV-?NNy&1|VBDV-i-1 tag+i word RB peerlessJJV-?NNV-i-1 tag+i word VBZ stepsVBZ^I +NNS^I +? i word carrNNPSQNNPQ?i word narrowerJJR%C?NNw/ĿNNPףp= i word opportunityNNd;ONNPd;O?i-1 word boughtCDZd;OJJ|?5^?INjtNNP/$?RP(\?RBʡENNZd;O?VBN|?5^ i word hireNNS~jtMD-ۿVBjt@VBG-NNRQ?VBD/$VBPQJJjti+1 word debatesNNS r?VBNh|?5?JJ!rhVBDh|?5VBGV-i word nominalJJ+ÿNNrh|?RBˡEܿi-1 word surplusVBNS㥛VBDS㥛?i-1 tag+i word JJ giftsNNSsh|??NNsh|?ݿ i suffix donVBP-?JJrh|NNMbRB~jtVB?i-1 tag+i word PRP$ thumbsNNSMb?NNMbi-1 tag+i word NNS openedVBDX9v׿VBP/$VBNʡE?i+1 word finalNNS+NNP +޿VBG +?VBN+?JJ+VBZ+?i+1 word feelingsPRP$B`"?PRPB`"i+2 word talentVBDʡEVBʡE?i+1 suffix rks NNB`"?CD$C?WDTS㥛?JJHzGINS㥛NNPK7A`NNPSx&FWFx?WP+POSuV?VBZuVNNSl¿i-1 word ceilingVBNQNNFx?VBDQ?VBPA`"VBGffffff? i word ladyNNP`"?JJSx&NNS@JJX9v i-1 tag+i word TO processedVBFxVBNjt?JJq= ףpݿi+1 word developingJJ/$@NN/$i word distressedVBNI +JJI +@i-1 tag+i word IN hybridJJMbX9?NNMbX9i+1 word passedVBNA`"CDbX9?JJ/$ӿNNSrh|NNPL7A`ؿNNPSCl?NNClѿVBDA`"? i suffix ENGNNP}?5^I?JJ}?5^Ii-1 tag+i word IN testsNNS|?5^?JJ|?5^ i word designVBP= ףp=ҿJJq= ףpNNS ףp= NNPMbP?VB(\?NN`"@VBD\(\i-1 word include JJ?5^I ?DTClNNS'1Z?NNP"~j?VB(\NNPSsh|?RB#~jRBRK7A`VBG/$?NNZd;JJRK7A`? i-2 word moonNNPS)\(JJQNNP/$? i word dartNNHzG?JJHzGi-1 tag+i word , oversightNNK?RBV-VBD/$ i+1 word peckRBK7A`NNPK7A`@i-1 tag+i word NNS serviceVBPffffffVBNףp= NNQ?i-1 tag+i word NNP legislatureNNrh|NNPrh|?i-1 tag+i word NNP daNNP|?5^?NNJ +?JJ-IN9vi+2 word negligibleVBP\(\?VBD\(\i-1 tag+i word NNS breedVBPV-?VBDV-ڿi-1 tag+i word JJ duoNNSZd;ONNZd;O?i-1 tag+i word NNP elderlyJJL7A`?RBL7A`i+2 word strasbourgVBGx?NNxi-1 tag+i word IN savingsNNPS㥛 NNSV-NNX9v@JJ/$NNP㥛 ?i word inflatedVBNvJJy&1?VBDK7? i suffix tch NNPSMbXɿVBZx&NNSsh|VB~jt@VBDffffffVBNmVBP7A` @JJ|?5^IN~jtNNPjtNNK7 @i+1 word volvoDTClNNPCl? i-2 word shedRBZd;?NNS~jtJJ ףp= NNA`"@i word financeerNNX9v?JJX9v߿ i word havingVBG?NN~jtؿNNPB`"i-1 tag+i word -START- eggNNE?RBEi+2 word wrightVBK7A`?NNPSK7NN{Gz?JJGzVBZV-?NNSV-߿NNPZd;O?i-1 tag+i word JJS gratuitouslyRBB`"?JJB`"i+2 word hibbardVBNL7A`?VBDL7A`пi-2 word chantedNNZd;OVBD+?NNSʡE?i+1 word injuriesVBMb?JJMb i-2 word itsVBnٿVBDx&1RBR/$WRBQJJR!rhVBZQJJQ?NNzG@JJS'1Z?VBP(\µ?NNSzG?DT~jt?NNPQ?RPDl?RBS'1ZVBN rh@RBS㥛IN(\?NNPSMbX9?VBGq= ףpWDT|?5^ i word movesVBZ~jt?NNSGz@RBClNN)\(VBD`"i word sequesteringVBGnѿNN^I +?JJ%Cܿ i suffix lta VBS㥛NNK7A`?FWK7A`NNS/$NNPS^I +ǿVBD/$VBP|?5^JJ?NNP/$?i-2 word finalistsVBNX9v?JJX9vi-1 tag+i word DT accountVB~jthVBPuVݿNNsh|??i+2 word salariesVBZA`"NNSA`"?i+2 word sundanceJJ~jtNNP9vNN5^I @i+2 word motorsNNSZd;DTZd;?RPZd;?RBZd;i+2 word cleanIN1ZdVBZ1Zd?NNS rh?NNP rhVBDZd;?VBNZd;Ͽi-1 word insurersNN(\VBD(\?VBMVBPbX9?VBN(\i-1 tag+i word NN teachNNGzVBPGz?i word adjustsVBZCl?VBDCli-1 tag+i word DT castlelikeJJGz?NNGzi-1 tag+i word CC predictVBPV-?VBDB`"ѿVBxi-2 word offeringCDClVB7A`@JJ rh?NN|?5^RB{GzWP7A`JJRX9v?NNSZd;O?NNP+NNPS+?INn @VBNnVBZd;ORBRX9vi-1 tag+i word MD arrestedVBNbX9?VBDbX9i-2 word xeroxVBMbX9?NNMbX9 i-2 word warmJJL7A`?RBRS㥛?JJRS㥛RBMbINMb?VBZL7A` i suffix ACPJJGzNNPGz?i-1 tag+i word VB reachedVBN333333?JJ333333i-1 tag+i word , aftertaxJJS㥛?NNS㥛i-1 tag+i word IN compromiseNNS?JJSi-2 word expiresNNK7ٿNNPK7?i-1 word spendsJJSCl?RBSClRBRQ?JJʡE?INV- i suffix zonNNS+NN+?NNPʡE?NNPSʡEi-2 word catastropheVBN rhݿVBD rh?i tag+i-2 tag WDT DTVBP5^I ?NN5^I i-2 word eagerVB(\?RB(\ҿi-1 tag+i word NN showroomVBZMbXNNMbX?i-1 tag+i word NNS allegingVBGGz?JJGzi-1 tag+i word IN electedVBNX9vJJX9v?i-2 word layersJJ!rh?VBN!rhܿi+1 word territoriesJJ(\?NNP(\i word sentencingVBG= ףp=?NNNbX9пNNPMbi+1 word effect DT rh?VB#~jĿVBGI +?JJZd; @WP)\(WDT@RBRQNNSVBD\(\VBN rhVBP r?i+2 word clevelandVBNn?VBDni-1 tag+i word TO prisonJJtVVBoʡNNK7 @i+1 word textureNNd;O?JJd;Oi+1 suffix rbaNNx&1пNNPx&1?i+2 word hauntingVBN㥛 ?VBD㥛 i+1 word cynicallyNNS333333?NNP333333i-1 tag+i word `` controlledVBN(\JJ(\?i word launchedVBmտVBD~jtVBN!rh@JJSӿINMVBZK7A`i-2 word repeatsRBB`"?DTB`"i+2 word directoryDT1Zd@JJ5^I NNPHzGi-2 word independent VBD;On?VBNˡEܿVBGMb?NNK7A`RB r?IN7A`NNPZd;OJJx&?CDK߿i-1 tag+i word NNP unveiledJJlVBDl?i word repressingVBGB`"?NNB`"i+2 word tumorPOSS?VBZSi-2 word peachesVBGB`"?NNB`"i+1 word unperformedVBNx޿VBDx?i-1 tag+i word VBG weakeningVBGx&1?NNx&1i word pragmatistNNMbX9?JJMbX9i-1 tag+i word CC serviceNN(\JJR;OnJJZd;VBh|?5@ i suffix seaNNy&1@JJV-NNPjtNNPSDlNNSQi+1 word topazJJ5^I ?NN5^I i-1 word endlessNN$C?JJ$Ci word uncertainVBy&1JJK7A@NN~jtNNP(\?i word capitalizationNN(\?JJ(\i-1 suffix manVBGˡE?VBD5^I @INh|?5NNPSZd;?POSV-VBN333333NNSDlNN1ZdFW$CVBP)\(?NNPV-VBoʡ?JJxPRP?RBh|?5VBZNbX9@i+2 word routinelyNNDl@JJjtCDV-i-1 tag+i word POS fiberallNN$CӿNNP$C?i+1 word intractableRB"~j?NN"~ji word exceedinglyJJMbRBMb? i word armNNP&1NN7A` @JJSSRBClIN&1NNStVi-1 tag+i word -START- genprobeNN"~@NNP"~i-1 tag+i word NNP temporalJJQ?NNQi-1 word landslideVBZX9vVBG-NNZd;VBDx&1?i-1 tag+i word IN unitsNNSCl?$MbNNPX9v i word troutNN/$ٿNNP/$? i+2 word newsVB#~jVBDS?VBPCl?RBmݿJJRSNN"~j?POSK7A`?NNPS"~jVBNjtWPw/?NNPZd;OJJQRBRS?VBZy&1?DTm?NNSuVݿi+1 word purposeJJS`"ֿJJGz@NN"~ji-1 tag+i word RB subjectJJ~jt?VB~jti-1 word gottenRBV-IN/$?VBD+RP(\? i word buriedVBNGz?JJMbVBDV-i+2 word stertzNNSZd;NNPZd;? i+2 word downVBDV-?JJ!rhINK7A@VBZS?NNP^I +VBv/@RBA`"ӿVBPffffffWDTq= ףp?NNPSffffff?NNsh|? @VBNK7DTZd;ORPm CDB`"?NNSw/i+2 word principleVBPx&VBNB`"ɿVBDV-?i+1 word anthonyJJMbX9NNMbX9? i word sinsVBZʡENNSʡE?i+1 word narrowingDTy&1INy&1?i-1 tag+i word CD winsVBZGz޿NNS'1Z?NNDli-1 tag+i word JJ suspendedVBN rhJJ#~j?VBDCl i word cartelNNSK7ANNK7A?i+2 word dixieNNSFx?RBGzNN&1i-2 word moodyVBGMbNNMb?JJSNNSSNNP-?NNPSK?i+2 word radarRPMbINMb?i+2 word obligationsVBV-?VBP ףp= JJ ףp= ?NNClVBNX9vi-1 word tryingRP\(\?IN\(\VB$C?VBP$Ci+2 word miles VBDy&1RB+INvNNSQ?NNPvJJw/?NN|?5^?VBN?VBPK7 i+1 word coalVBw/JJK7?NNPHzGѿi+1 word lacklusterNNJ +?VBG9vRBI +?JJˡEi-1 tag+i word RBR establishedVBNˡE?JJˡEi-1 tag+i word '' beforeRBMbXINMbX?i-1 tag+i word , reportedVBNbX9VBDbX9?i word survivalNNMb?JJMbi+1 word limitingJJZd;ONNSZd;O?i-1 word boakeNNPS\(\NNClNNP1Zd?i tag+i-2 tag EX ``VBZ rPOSV-?VBDCli word integrityNN?JJi word convenientJJ rh?NN rhտ i word fireWDT+JJx&1NNS rhNNP(\?VBmNN5^I  @i-1 tag+i word NNP jayNNPSuVNNPuV?i-1 tag+i word VBD dumpedJJy&1ԿVBNy&1?i-1 word violatesJJA`"?NNA`"ۿi-1 suffix eysVBZB`"?DT/$NNSMbNN+VBDy&1?VBNx&?VBPQ@WDT/$?i+2 word commerciallyRB ףp= ?NN ףp= i-1 word depositJJB`"ɿVBZlNNSFxVBG+NNʡE?VBDףp= ?i word astrophysicistJJV-NNV-?i+1 word recordsVB9v?VBP9vNNV- @JJMbXNNP?5^I i-1 tag+i word DT timerNNQ?JJQi-1 tag+i word JJ exhibitNNSClNNCl? i word long RPx&1VBN/$INV-VBZffffffNNP= ףp=?RB @NN(\JJS+VBP$CJJ'1Z@ i word ruinedVBNn?VBDni word sullivanNNPSZd;NNPZd;?i-1 word confirmedRBRA`"?RBA`"ۿi word remarketersNNSGz?NNPGzi-1 word hangingRBuV?JJuVi-1 tag+i word VBZ convincingVBGsh|??JJsh|?ſi word tatteredJJʡE?NNʡE i suffix onoNNSp= ףNNQJJʡEFW|?5^@i word commmonJJ^I +?NN^I +i-1 tag+i word VB generalJJL7A`?VBNL7A`i-2 word abductedPRP$x&?PRPx&i-1 word inflatedNN rh?JJ rhͿi-2 word policy VBDv/?WDTuVVBN+?JJ|?5^INL7A`?NNS{GzVBGZd;?RB#~jNN~jti-1 tag+i word -START- glossyJJCl?NNGzNNP|?5^i-1 tag+i word NN writesNNS"~jԿVBZ"~j?i-2 word pattersonVB㥛 ?VBP㥛 i-1 tag+i word IN borrowingVBG{Gz?NN{Gzi+2 word hitchedWDTtV?INtVi-1 tag+i word CC agreeVBA`"VBPjt@VBZSۿi-1 tag+i word DT candyNNV-?JJV-i word resistantJJ-?NN-i-1 tag+i word PRP$ unswaggedNNSmտJJV-?NN rhi-1 tag+i word IN excitementNN1Zd?JJ1Zdi+1 word fraudulentVBP$CRB+?JJS㥛VBx&1?i-1 tag+i word VBZ darkNNMNNS+JJA`"? i suffix dosNNSrh|?NNrh|i-1 word evaluationVBZ(\NNS(\?NNzG?VBGzGi-1 tag+i word PRP$ potatoNNRQ?JJRQi-1 word glideRP!rhIN!rh?i+1 word schedulesJJv?NNvϿi-1 tag+i word WP specializesVBZA`"?VBDA`"i-1 tag+i word CC lowVB+JJv?NN|?5^i+1 word persuadeVB㥛 RB㥛 ?i-1 tag+i word NNS sufferVBP rh?NN rhi+1 word objectionableRBR/$?LS/$ i-1 word q45VBZ ףp= NNPS~jtNNSZd;?i-1 tag+i word DT planeNNtV?JJtVi+1 suffix lphNNZd;O?VBNV-߿JJZd;OݿVBDV-?i-2 word motionDTClWDTCl? i word fallsNNSZd;RBR-NNPw/?VBZ#~j @i-1 tag+i word RB obligesVBZ-?RB- i word isNNPB`" VBD+VBNSVBP9vRB(\VBZ}?5^I@i word premiumsNNnVBZx&1NNSn @i-1 tag+i word JJ criteriaNNS㥛 ?VBN㥛 i-2 word arrestedRB"~jIN"~j?i-1 tag+i word DT sideNNMb@JJx&1NNP-i+2 word impliedDTK7WDTK7? i-1 word curbVBGʡENN~jt@JJjti-1 tag+i word CC myriadVBT㥛 пJJL7A`?NN(\i-1 tag+i word JJ chickenNN9v?NNS9vi+1 word engineerJJʡECD~jt?NNʡE?PRP~jti-1 tag+i word DT paltryJJV-?NNV-i word remarkablyNN rRB r?i-1 tag+i word NN loomsVBZsh|? @NNSzGRBR}?5^INNli word tsunamiFWV-VBNmNNQ?i-1 word publicly RBʡEWPNbX9?JJMڿWDTNbX9VBDS㥛INuV?VBN{Gz?VBZ~jt?VBV-?NNʡEտi-1 tag+i word JJ bidderVBuVNNuV?i-1 tag+i word RB exceptINzG?VBZzGi+1 word makers NNp= ף@JJS rhVBZZd;ONNP?5^I JJ'1ZVBDMbXJJRT㥛 @RB+?INQNNSZd;O i suffix TVSTOuVVB!rhRBSտNNP+?i-1 word clutterDTA`"WDTA`"? i word jumpJJ{GzNNS(\VB/$?RB(\NNGz?VBP rh?i word employerNNSX9vNNV-@JJlFW}?5^I̿i-1 tag+i word , councilNNoʡ?JJˡENNPʡEi-2 word memberRBˡE?NNؿJJ?5^I NNPK7A`?VB9v i word lenderNNPSJJRxNN|?5^@i-1 tag+i word DT industrialistNN?JJi-1 tag+i word NN clubbedVBD?5^I ?NN?5^I i-1 tag+i word VBZ bitterJJ&1?VBNʡENNPni-1 tag+i word , challengeVBZ5^I ӿVBsh|?VBPMbX9?NNV- i+2 word milk RBRZd;OVBNjtVBZ+?NNSjt?NNPZd;ONNq= ףpINZd;?RBClJJRZd;O?NNPSMbVBDjt?i-1 tag+i word NNS jewsNNPSGz?NNPGzi-1 tag+i word TO underminingVBGuV?JJuVi+2 word murphyJJ rh?VBN333333NN/$?i-1 tag+i word VBG originalRP|?5^JJ|?5^?i-1 word ifintRBR-?NNP-i-1 tag+i word `` veryWDTHzGRB rh?JJ rh i suffix zisNNPSx&?NNPx&i word assuranceVBnNNCl?RBVBNK7ٿi-2 word stepsNNK7JJjtVBP/$?VBN/$?i-1 tag+i word NNP decorumNNA`"?NNSA`"i-1 tag+i word RBR pronouncedVBNNbX9JJNbX9?i+1 word superagentNNPSCl?NNPCl i+2 word theyUH/$?VBZS㥛NNS㥛LSZd;O@NNSy&1?EXS㥛RPl?RB/$CDZd;OVBG5^I  @VBD`"VBNp= ף @JJDT^I +?RBRCl߿INʡENNPS~jtVBPx?WDTףp= ?FW~jtVB\(\RBSV-ڿPRPffffffJJSK7A?JJR!rh?NNPGzi+2 word scaryDT?WDTi-1 word businessmenNN/$VBP/$?i-1 tag+i word VB resoldVBN+η?RB+ηi+2 word winnerWP-?NN&1NNP rh?i-1 tag+i word NNS shootVBPʡE?VBDʡEi-2 word sandwichJJPn?NNPnVBDQ?VBPQi-2 word refundRBV-INV-?i word equalingVBGS@NNQJJQi word journeyNN5^I NNP5^I ?i-1 tag+i word IN paidVBN\(\?NN\(\i-1 tag+i word DT doomsdayJJA`"NNA`"?i-2 word corporate NN5^I NNSw/VBZL7A`?VBDl?VBDHzG?VBNQPOSVBPB`"?JJi-1 tag+i word '' billingVBGHzGNNrh|?JJV-i-1 tag+i word CD lateJJףp= ?NN$CRB"~ji word administersVBZZd;O?NNSZd;O߿i+1 word foncierVBZd;ONNPZd;O?i-1 tag+i word , readVB(\VBD(\?i-1 tag+i word CC unableJJv/?NNPv/տi-2 word agnelliVBN rпVBD r?i-1 word appointedRBCl?RPClNNV-?JJV- i word ontoRBnNN`"޿PRP?5^I JJFxINx&1@MDd;ORPX9vi word cheeriosNNPS+@NNS5^I NNP;Oni+2 word biochemistVBN+JJ+?i word uniformNNSClNNy&1JJ}?5^I?i+1 suffix ixxNNS㥻NNPS㥻? i word kitVBZL7A`NNL7A`?i-1 tag+i word -START- orkemJJOnVBmNN|?5^ڿRBGzֿNNPHzG@ i word wasIN^I +WDT+VBGz߿VBDzG@WRBjti-1 tag+i word TO repurchaseVBoʡ$MVBD1Zd@i-1 tag+i word PRP$ europeanNNzGNNP}?5^IJJ/$@i word giveawayFWV-JJM@NNQi word objectionsNNPS/$NNSM@NNPh|?5i-1 word nasdaqRPGzNN ףp= ?RBS㥛JJffffff?i word understandJJSNNPsh|?MDzGVB r@NNClVBDy&1VBPL7A`?i-1 tag+i word `` moreJJRZd;?RBRZd;i-1 tag+i word -START- racialJJ"~j?NN㥛 NNP&1i-1 tag+i word NN permissibleNNl?JJlҿi+1 word loversNNPT㥛 NNDl?JJ333333i-1 tag+i word , ornetteNNP+?FW+ i+1 word routDT rh?IN rhi-1 tag+i word NN liquidJJ/$?NN/$i-1 tag+i word RBR workVBx&1ܿVBPʡE?NN~jtпi tag+i-2 tag NNP RB NNPSˡEVBGbX9?VBD?5^I ?PRPK7?NNSL7A`?NNPNbX9?NNQ?RB$CVBZL7A`i+1 suffix uth VBN{Gz?INL7A`?NNP^I +?VBD/$?JJQNNT㥛 CCT㥛 пJJSˡE?RBSˡEJJRT㥛 ?RBT㥛 VBffffff i+1 word bushVBDm?NNPmi word becomesCC333333ۿVBZMbX @VBPK7NNSuVRBT㥛 i-1 tag+i word DT marketingVBG rh@NNw/JJʡEi-1 tag+i word VB unsolicitedVBN+JJ+? i word slurryNNq= ףp?JJq= ףpݿi-1 tag+i word RB anywhereRB +?JJ +i-1 word concealingJJsh|??RBsh|? i word dotVBPMb?VBZMbi-1 tag+i word CC assumeVB?5^I ?VBP?5^I i+1 word nobodyVB/$?VBP/$DTCl׿INCl? i word jujoJJS㥛NNPS㥛? i-1 tag+i word -START- synopticsNNPSS@NNS㥛 ڿNNP9v i+1 word riseRBZd;߿NNx&1JJR"~j?VBP+?JJx&1VBZV-NNS?i+1 word rivalsJJSL7A`?RBSL7A`пNN{Gz?JJ{Gzi-2 word integratedNNSV-?NNV-i-2 word outpostJJQ?NNQi-1 tag+i word NNS sentVBD7A`?VBPA`"VBN?NN= ףp=i-1 tag+i word VBZ easternJJJ +ٿNNPJ +?i word ultimateVBPJJv@NNZd;NNPL7A`?i-1 tag+i word PRP sayVBbX9?VBPoʡ?RBh|?5i word amsterdamNNPSw/NNPw/?i-1 tag+i word IN rescueJJrh|׿NNrh|?i-1 word prosecutionsVBNx&VBDx&?i-1 tag+i word DT sellersNNPSnNNSn?!i-1 tag+i word -START- financiereRBh|?5NNPh|?5?i word recognizesNNSSVBDzGVBZMb?i-2 word colorsVBZClۿNNSS㥛?RB/$i-1 word animalPOSK7A?JJ+VBZK7ANNSˡE?NNK7A?VBD?5^I i+2 word consensusNNoʡNNPoʡ?i-1 suffix ntaRBxNNx?i-2 word salesmanNNPV-NN(\@JJ|?5^i-1 tag+i word -START- usuallyRBJ +?NNPJ + i+1 word debJJEؿCDE?i-1 word orthodoxNNPSK7?NNSjtNNP"~ji+1 word lithographyNN1Zd@JJK7NNP"~i-1 word richestNNSZd;?RBZd;i-1 tag+i word VBG bulkJJOn?NNOni word financiereRBQNNPQ@i-2 word bouyguesVBN/$JJ/$?i-1 suffix eelNNV-JJRʡEVBPI +NNSX9v@VBDNbX9?WDT+VBZHzGNNPSMb`JJm?INM@DTnѿNNPFxVB+RPSRBQ @VBNMbXi-1 tag+i word IN povertyNNSZd;ONNn?JJM i-2 word thisVBRQ @NN+FWbX9?POSSINw/VBG\(\?VBN-VBP\(\WPzGRPףp= JJRbX9?JJjt?VBDCl?NNSMb RB;OnڿDTRQ?VBZx&1 @NNP?WDTʡE?i-1 tag+i word DT extremeVBN+NNjtJJˡE@i-1 tag+i word WDT benefitVBP rh?NN rhi-1 tag+i word VBN flightNNPS{GzNN{Gz?i+1 word financeNNCl?JJ"~jNNPK7A`?VBNQ?i+1 word appleNN'1Z@JJx&1 INGz?DTGzǿNNP|?5^?NNPS"~VBG;On? i suffix IMENNS㥛?NNPffffffMDsh|?NNPS^I +JJףp= ?i+2 word offshoreVBG(\VBNq= ףpNNx&VBDq= ףp?JJuV@i-1 tag+i word NN sofaNN\(\?CD\(\i-2 word planningVBZ&1?VB&1VBGoʡ?JJoʡi-1 tag+i word , centralizedVBN|?5^ڿJJ|?5^?i-1 suffix ltaVBNDlJJףp= VBDS㥛VB}?5^I?VBPCl?i-1 tag+i word CD !HYPHEN RBT㥛 NNPffffff VBG(\JJjt@NNtV?VBDmCDPnNNSw/``)\(@NNPS9vi-1 tag+i word '' notingVBGJ +?NNJ +i-2 word controversialCD?JJX9v?NNX9vNNPi-2 word darmanVB r?JJ/$NNPףp= i-2 word boldJJ`"?NN`"޿i word snubbedVBPGzVBDGz?i-2 word doctorNNHzG?JJHzGi+1 word offshoreNNCl?JJClǿNNPQ?NNPSQi word maximizingJJoʡտVBOnVBGl?i-1 tag+i word CD cubicNNS= ףp=JJbX9@NNS i word steakNNS㥛?JJS㥛i-2 word editorialVBZx&1?NNP?5^I VBuV?NN#~j?VBDx&1JJX9v i suffix ACsNNPSQ @JJbX9NNPZd;i word microbiologyNN'1ZĿNNP'1Z?i-1 tag+i word `` createVBK7VBPK7?i-1 tag+i word TO fuelVB?5^I ?NN?5^I i-1 tag+i word DT planningVBG/$տNN/$?i+2 word showedRBFxDTFx?NNSDl?NNPClNNPSʡEVBG rhJJ/$NNrh|@i+1 word quartetsJJ+NNP+?i-1 tag+i word NN clearsVBZHzG?NNSHzGi word gratuitouslyRBB`"?JJB`"i-2 word russellNN|?5^VBD|?5^?i-1 tag+i word , reducedVBDq= ףp?VBq= ףpi-1 tag+i word DT limplyJJ%CܿRBV-?NN{Gzi-1 tag+i word RB illRBJ +?JJJ +i-1 tag+i word NN funnyJJ~jt?NN~jti-1 tag+i word `` integratedVBNq= ףpJJq= ףp?i-1 tag+i word DT sisNNPB`"?NNB`"i-1 tag+i word NN totalingVBG|?5^?NN|?5^ɿi+2 word boostingNNS|?5^VBNv/?NNS㥛?NNPQ?i word adequateJJ@NNX9vRBsh|?VBN+i+1 word chiefsJJv/ݿNNPv/? i+2 word want NNMbX9PDTB`"VBPMbX9@JJMbؿVBZ333333NNS%C@NNP/$VB1ZdNNPSʡEƿVBGv/?WDT(\?IN(\DTB`"?i-1 tag+i word PRP spendVBMbȿVBPMb?i-1 tag+i word RB threatenedJJK7AVBNK7A?i-1 word hookedRPx&?INx&ѿi+1 word specialtiesVBG ףp= JJS?NN!rhi-1 suffix rge JJRINmͿDT rhNNPx&1?VBGx&?RBQNN ףp= JJ㥛 ?NNS-?VBDx&?VBN$CWDTS?i-2 word triggeringNNX9v?JJ= ףp=VBG/$i word genuineJJQk@VBN~jtNNZd;O NNPDl i word bushelVBNbX9NNbX9?i-1 tag+i word IN europeansNNPSd;O?NNSK7NNPS i+2 word cuts RBS㥛VBGV-NNSjt?RP&1?JJS?VBNˡEINMbNN(\VBDK7?VBP;On?i-1 word abroadIN/$?NN/$i-1 tag+i word `` movingVBGMb?JJMbؿi-1 tag+i word RP herPRP$7A`?PRP7A`i-2 word holdingsVBNjtVBDjt?i-1 tag+i word NN preferredVBNh|?5JJQ?VBDx&1VBGoʡ@i-1 word consultantsVBN&1IN{GztVBDL7A`堿VBPS?i+1 suffix oalIN~jtVBZKDT~jt?NNPHzGѿVBw/NNbX9?VBNˡEJJ/$@i-2 word unobservedVBPNbX9?VBN~jtJJCli-1 tag+i word RB weirdVBZʡEJJʡE? i word inside VBI + NNʡE VBP!rhJJ rhNNSnRB;On@INK7A!@VBZ+NNP?5^I ڿi-2 word deliciousINh|?5?NNV-i-1 tag+i word CC destructiveNNxVB+JJ rh?i-1 word exposingJJrh|?RBrh|i-1 tag+i word -START- suchJJDl)@PDTy&1̿SYMB`"RB +IN/$NNPoʡi-2 word congressmenNNZd;?JJZd;i-1 word assertionRBSn?JJSnҿi+2 word introducingVBZy&1?NNSy&1i word underwriteVBtV?VBPuV?JJ +NNmRBuVi-2 word importsRBR)\(RB(\?JJR)\(?NNPV-ϿRPjtJJ-?IN$CVBNB`"i-2 word expressionVBNx?VBDxi-1 tag+i word VBD nobodyNNQ?JJQi-1 tag+i word JJS regardedVBNmJJm?i-2 word settlesNNSI +ֿRBRQ?INK7A`i+1 word confrontationalJJMbX9VBGMbX9?i-1 tag+i word -START- shawNNuVNNPuV?i-1 tag+i word VBD droppedVBG5^I ۿVBN㥛 ?RBZd; i word tunedVBNˡE?VBDˡEi-2 word sunsetsFWNbX9?RBq= ףpVBD+ i word oasNNP"~?NNPS"~i-1 tag+i word , agreeingVBGS㥛?NNS㥛i-1 tag+i word VBG golfNNCl?JJCli-2 word reviewingNN +?JJ + i+2 word sonCCDlRBDl?i word terribleJJ!rh?VBD!rh̿i-1 tag+i word JJS picksVBZS?NNSS i word railsNNPZd;NNPSZd;@ i suffix uptVBN5^I JJtV@VBZJ +NNPB`"?VBffffff?NNZd; i suffix 3.8JJECDE?i-1 tag+i word IN smolderNNHzGVBPHzG?i word plottedVBNx&1VBDx&1?i-1 tag+i word VBD facedJJSۿVBDS?i-1 tag+i word VBP americanJJMb`NNPMb`?i word unsettledVBN㥛 JJ;OnVBD%C?i word dropped VB+NNSףp= VBPMJJOnVBG5^I ۿRP(\RBZd;VBDw/]@VBNL7A`i+1 word considerableRPw/?RB?5^I ?VBDL7A`?JJ?5^I ڿINw/ĿVBZ-?NNStVi-1 word pilingNNQNNPV-RPsh|?@i-1 word untilRB rhݿNNPZd;@JJM?NNX9vi-1 tag+i word NN marksVBZZd;O?NNSA`"?NNA`"ۿINZd;Oi-2 word groupsNNPK7A`?VB|?5^NNVBN"~?JJQ?INQ?DTQ˿NNSS㥛? i-1 word jumpRP"~jRBx?IN rhi-1 tag+i word NNPS illustratedVBN'1ZԿNNP'1Z?i-2 word tiananmenVBZV-?NNPV-i-1 tag+i word DT upstartNN?JJѿ i suffix mpoJJ+?JJRClNN"~jNNP +?i-1 tag+i word , leaningVBGuV?NNuVi word stemmedVBN/ݤNNMVBD!rhm@ i word fillVBV-?VBPV-i word puddingVBG!rhNN!rh?i-1 tag+i word PRP$ fianceeJJ-NN-?i-1 tag+i word JJ actsNNSrh|?NNrh|i-1 tag+i word DT priNNx&1NNPx&1? i+1 word s&lsVBN"~jܿJJ"~j? i+1 word fromVBNK7A`?RP&1?FWClRB}?5^I?NNSZd;O?NNPx&1 CDB`"?EX/$NNPSS㥛DT^I +NNA`"@PRP rh?WRBX9vJJRT㥛 UHGzPRP$x&1VBGn?VBDX9vWDT/$JJjtVB$CۿVBPS㥛?VBZlCC}?5^I?RBRCl?IN rh?i-1 tag+i word CD bNNV-NNPV-? i word musterVB +?RB +i-1 suffix wapJJE?NNPEi+1 word grantorJJnCD&1NNPL7A`@i-1 word skirmishJJV-INV-?i-1 tag+i word RB passedVBN;On?VBD;Onҿi-1 tag+i word CC rompVBtVVBPtV?i-1 word fasterNNSSJJ"~jܿIN!rh?i-1 tag+i word JJR sellingVBG#~j?NN#~ji-2 word partnershipRBx&?INx&ٿi-1 tag+i word PRP thoughtRB}?5^IMDʡEVBZL7A`VBDw/@i-2 word objectRBSn?JJSK7JJi+2 word developmentsVBGDlRBQWDTw/JJDl?INw/?DTQ? i word bulbsNNSMbX9?NNMbX9i-1 suffix lopNNP/$JJR-JJ/$?RBR-?i-1 tag+i word VB koreanJJE?NNPEi-1 word interviewINrh|?WDTrh|߿i-1 tag+i word DT howlNNZd;?JJZd;i-1 word shouldRB;OnNN'1Z?VB!rh?VBPDli-2 word unableVBHzG?NNHzGi+2 word unregulatedJJS㥛PDTS㥛?i-2 word greenbergVBG/$?NN/$i+1 word specialJJRQ?JJy&1INx?DTx&?RBMNNy&1?RBRQi-1 tag+i word IN detailNNV-?JJV-ҿ i+2 word add VBDy&1?VBNy&1ԿVBPPnRBV-JJPn?INV-?NNST㥛 NNPZd;NNsh|??i+1 word paymentJJZd; @NNh|?5 VBNV-?VBPd;O?RBV-RP/$i-2 word beefingRBR㥛 ?JJR㥛 i-1 tag+i word NNP chillNNENNPE?i-1 tag+i word VBD sealedVBNx&?JJx&i-1 tag+i word VBZ aboutRPʡEJJB`"NNʡEVBNɿRBR +@RBL7A`?INZd;?i+2 word specifiedINx&1?RBx&1i word obsessionNNI +?JJI +i word upheavalNNjt@VBNZd;OJJ\(\ i suffix rlyVBPvVBDZd;RBRDlRBʡE1@VBZ +NNMbCDGzNNSˡE NNPMbX9RP/$JJ ףp= @VBNX9vINPnVBʡEi-1 tag+i word POS polishJJ#~j?NNK7NNPGzοi-2 word terminalsVBN"~?JJ"~i-1 word racketeerNNPSMbNNPMb?i word encounteredVBD9v?VBZ9v i suffix OUsNNSDl @NN}?5^INNPQi-1 tag+i word DT psychologicalJJ5^I ?NN5^I i-1 word occasionallyVBZK7AVBPˡE?JJ5^I ?i+1 word announcingDTʡEINʡE?i-1 tag+i word RB includeVBn?VBP!rh?JJS㥛i-1 word ambitiousVBZtVNNStV?NN/$?JJ/$i+1 word promotionJJMb?NNPClDTClNNM@PRP$sh|?տ i word mafiaJJx&1NNJ +?FWGzRBp= ףNNSʡEͿNNPx&1?i-1 suffix hadRBRjt?IN(\µVBG rPDT'1ZVBN}?5^I@PRP$ףp= UH rhٿNNS/$?JJRh|?5JJMbX9ܿVBERB-RBS ףp= ?JJSSÿDTsh|??NN?VBDo!CCOn@i-2 word advertisersNNStVVBGMb?VBDMbXJJSMbX?VBN`"JJʡEINM?VBZtV?i word organizingNNףp= JJ-޿VBG/$?i+2 word shoesVBG/$NN/$?i+1 word birthdayJJ r @NNy&1CDʡE i suffix becCDKǿNNPjt?JJV- i word upperINʡEJJQ@NNPʡE?JJRRQNNL7A`i-1 tag+i word VBZ consensusVBT㥛 NNT㥛 ?i-1 tag+i word . campaignVBoʡݿNNA`"?NNPrh|i-1 tag+i word , rankingVBGS㥛JJS㥛?i+2 word strawberriesNN/$?JJ/$i+2 word ozonedepletionRPzG?RBzG i-1 word clubVBZ|?5^?NNS|?5^i+1 word dismissalJJ/$?NNP/$i tag+i-2 tag . NNP NN5^I ?VBN'1Z?''(\?NNST㥛 ?VBoʡݿNNPSv/ݿRB%CVBD'1ZCCn?POS ףp= JJV-NNPCl?i-1 word hersheyNNPSK7?NNPK7 i word mariaNNSS㥛ܿNNPS㥛?i-1 tag+i word NNP restaurantNN|?5^?VBD|?5^i+2 word slightJJ/$VBN/$?RBK7EXK7?i-1 word knots''%CPOS%C?i-2 word substantialVBD~jtNNK?VBNjtRB rȿIN r?i-1 tag+i word VB tougherNNSJJRZd;O@RBGzVBN^I +i-1 tag+i word PRP humansVBZSVBPSNNSS@VBD7A`i-1 tag+i word IN shipsNNSCl?NNCli-2 word toxicityNNV-JJV-?i-1 tag+i word `` appallingVBG ףp= JJHzG?NNrh|i+1 word commitmentNNPSPn?VBG rh?NN rhͿJJV-?NNPbX9i+2 word whitleyNNZd;RBw/?JJxi-1 word reachedDTbX9?NNSoʡPRP$KNNoʡ?PRPK?RBbX9ֿi-1 word innerNNPSsh|?NNSV-@NNP+i word violatedVBN r?JJsh|?VBDK׿i-1 word dreamVBNMb?NNMbi-2 word peterboroughNNPM?NNM i suffix A-3VBNNSX9vJJK7?NNCl? i word hasNNPjtVBtVοPDT rIN$CVBZF@NNS{Gzi-1 tag+i word RBS likelyRBMbXɿJJMbX?i-2 word second VBNPn?JJlIN(\NNSHzG?VBG/$?NNMbX?VBZw/?VBClVBD(\?i-1 tag+i word CC reorganizeVB= ףp=?VBD= ףp=i-1 word appliedNNPGz@NNPSX9v߿NNCli word contendVB-?VBPv߿NNSi word culturesVBZSNNSS? i suffix sisJJ+NNS}?5^INNPS㥛VBMbXNN&1@VBP;On i suffix rdyNNPS?JJ"~@NN7A`VBDx&1̿VBNSRBK7A`NNSʡEi-1 tag+i word NN jamsNNST㥛 ?NNT㥛 i+2 word managesVBZbX9VB{GzܿNNSbX9?NN{GzNNP\(\?i-1 word erichNN~jtӿNNP~jt?i-1 word legislatureVBNV-߿VBDV-? i word neatJJ/$?NNGzVBPMbpi-1 tag+i word VBP firsthandVBMVBPp= ףRBZd;O@ i word sitcomNN/$?JJ/$i word deferredVBDbX9JJ`"?VBNZd;O?NNGz i word joeJJʡENNP~jt?NNS ףp= i-2 word laundryNNZd;O?JJZd;O i word times NN!rhCCq= ףp @VBN333333RB)\(INClNNS333333@VBˡEJJzGNNPCl@WDT{GzVBZNNPSzG@CDzGi-1 tag+i word DT automatedVBN%C?JJ%C̿i-1 word environmentalNNPSL7A`NNSDl?NN$CNNPsh|?@i-1 tag+i word NNP eurobondsNNS&1?NNP&1 i-1 suffix -NNSV-?NNPDlMDQNNS@VBDS㥛ؿVBNy&1?JJMbVBZQ?i-1 tag+i word TO fantasizeVBm?NNSmi-1 word grandsonVBZ!rhVBK7A?VBD^I +׿ i suffix IraRBuVNNPuV?i-1 tag+i word DT cashierJJRJ +NNJ +?i+1 word originallyNNSS?RB rh@IN rhVBDSi+1 suffix lks RPGz?JJbX9@NNEпVBNRQIN|?5^VBZd;ORBˡEVBGˡE?NNSx&1NNP rhVBDw/@i+2 word enginesNNP+?JJRMbXRBRMbX?JJ+i-1 tag+i word JJ geniusNN333333?FWuVտNNPy&1i-1 word paradoxWDTNbX9?INNbX9ؿ i suffix zooNNSQNNQ?i-2 word overuseNNS1Zd?RB1Zdi-1 tag+i word NN regulatorsVBZʡENNSʡE?i word biographyNNSQNNQ?i-2 word roustaboutVBG\(\?NN\(\߿i word connoisseurJJnNNCl?NNPʡE?i-1 word prospectsVBxVBPV-?JJ}?5^IVBD+?i-1 tag+i word NNS fearsNNS7A`?RB7A`i-2 word nationsNNPFx?NNFxi-1 tag+i word NN ditchNNPS#~jNNP#~j?i+2 word dosesVBPMVBNx&1VBDsh|??i-1 tag+i word PRP outRP1ZdIN\(\?JJS\(\RBQ?VBD+ i word usaaNNʡEۿNNPʡE? i suffix dexNN}?5^I!@JJT㥛ĠINB`"VBZ%CNNS"~jNNPZd;ONNPSK7i+1 word illustrateNNT㥛 ?VBDT㥛 i word warrantyNNHzG?JJHzGi-1 tag+i word CD chargeNNK7@NNSףp= VBNX9vRBHzG i word hastyNNSZd;JJGz?NN|?5^i-1 tag+i word TO dickensNNP+?NNS+ i word empireVBNNq= ףp@NNSQJJV-RBMbX9Ŀi word fundamentalJJ#~j@RB-NN/$i-1 tag+i word JJ unileverNNPh|?5?CDh|?5i tag+i-2 tag TO VBG INoʡVBGX9v׿NN ףp= ǿVBDx&1WPZd;?RB$CӿNNSZd;ONNP"~j?VBSտNNPS/$?JJX9vVBNS?JJR/$i-1 tag+i word JJ rubenesquelyJJ-?RBHzGNNPMbп i word headVBK7NNK7@VBDnCDX9vVBP9v@JJ-'NNS"~NNP$C@i+2 word aheadNNP/$VBNS㥛JJ/$?VBDS㥛?i-1 tag+i word VBG appleNNSffffffNNPffffff?i word institutedVBDV-?VBNV-i-1 word slimmingRBbX9޿INI +@RPˡEJJ|?5^i-1 tag+i word NN investsVBZZd;?NNSZd;i-1 tag+i word -START- mitsuiNNSrh|@NNMbX9NNPw/ i word mciNNS㥛JJ1ZdNNPZd;@i word exceptionsNNS+?NN+i word historyNN+?JJSNNP?5^I i-1 tag+i word NN feelVBQ?NNQi-1 word applicationRBQ?RBRQi-1 word neitherVBNA`"?JJ!rhVBZ|?5^NNSQ뱿NNP/$?NNPS)\(VBD-ֿi-1 word christinaVBNNNP? i+2 word nineNNS"~JJR-?JJ"~?RBR-i-1 word soullessVBP(\NN(\?i-1 word countsJJRRBR?i-1 tag+i word NN afraidJJbX9?VBDbX9i+1 word hamburgerVBGSJJK7?NN+i-1 tag+i word -START- arvindNNPʡE?INʡEi-1 tag+i word CC raisingVBGCl?NNClɿi-1 tag+i word IN fiatNNP-?DT-i-1 tag+i word : namelyRBuV?NNuVi-1 tag+i word `` soJJV-NNP|?5^INMRBMb@i-1 suffix mal RBʡEINClNNSˡE?NNP#~j?VBZK7AVB`"NN$C?VBD?5^I POSK7A?JJK7?i-1 tag+i word JJ bankruptcyNNZd;NNPZd;? i-1 word foesVBD/$@VB/$VBPV-NNPK7A`i-1 tag+i word TO justifyVB1Zd?NNP1Zdi-1 tag+i word IN bombNNx?JJx i+1 word curtNNPSClNNCl?i-1 tag+i word IN compositeJJףp= ?NNףp= i-1 tag+i word CD petrochemicalNNS㥛?JJS㥛 i suffix 978CDCl?NNCli-1 word immediateRB%CܿVBZENNSE?NNP%C?JJMb?NNMb i+1 word goalIN~jtVBZKDT~jt?NNbX9?VBNˡEJJHzG?i+1 suffix ltsJJm?VBD +?INMbX9ĿVBP/$RBOnVB1ZdRBRʡEVBNX9v?VBZq= ףp?NNP\(\NNʡE @WDTMb?JJRZd;DT-޿i-1 tag+i word NNS learnedVBNPnVBDPn@i word separateVBP!rh?JJ?5^I"@VB(\VBG/$RBʡENNnJJR$C i suffix CBsNNPI +ֿCD5^I NNSA`"? i+2 word asksCCx&NNPx&?i-1 tag+i word -START- gnpNNMbX9NNPMbX9@i-2 word consumerVBZ`"޿JJMbVBN rh?NNˡE?VBD rhi-1 tag+i word NNP certificatesNNPSn?NNPni-1 tag+i word NN republicanNNPS{GzNNP{Gz?i-1 tag+i word CC suicideNN r?RB r i word bearNNS$CNNQ?JJh|?5i-1 tag+i word NN allowVBZ"~VBI +ƿVBPMb?i+1 suffix urs NNSmJJx?CD%C?RBZd; VBZRQȿIN/$DT;On?VBGDl NN㥛 @JJRB`"?WDT+?i word samuraiNNy&1?JJ"~jFW9v?i-1 word votesJJuV?VBDS㥛JJR +ֿRB㥛 VBNS㥛?i-1 word early RBV-VBPq= ףpIN^I +@NNSM?NNPSۿVBG$CVBN +CDrh|ϿPRP|?5^JJ|?5^ҿNNM@i-1 suffix oneRPHzGVBDv?``)\(@CDGz?VBNRQ?'')\(?JJoʡ?NNPS/$VBPoʡWDTʡE @RBS㥛?NNSuVIN ףp=JJRM?DTx&1?POSS㥛?NN9v?NNPˡERBR rVBK7A`FW`"ֿVBZ-?i-1 tag+i word MD ogonyokVBq= ףpNNPq= ףp?i word horizonNNS+NN+?i-1 tag+i word RB upwardRBoʡ?JJoʡݿi-1 word facilityWDTZd;?EXV-ڿRBV-?INZd;Ͽi-1 word texansNNPjtVBPjt? i-2 word freeJJSGz޿NNS\(\VBZ\(\?VBGz?i-1 tag+i word NNS swingVBPGz?VBGGzi-1 word organizationsVBPQ?RPCl߿EXSRB'1Z?i tag+i-2 tag VBZ INNNSGzVBP/$WDTjtJJv/ͿDT\(\?VBNn?CDDlٿVB/$?VBGʡE?RBd;O @INy&1RPffffffֿVBZ\(\NN rhJJS+PRPDl?i word plasterVB(\NN(\?i+1 word explainedVBZK7POSK7@RB&1NNP&1?i+1 suffix yrdNNQNNPQ?i+1 word positiveRPX9v?RBq= ףp?JJRV-RBRV-?JJq= ףpINX9v޿i-1 tag+i word NNP yourPRP$Gz?NNPGzֿi+2 word slumpNNjt?JJjtֿi-1 tag+i word `` anyoneNNPzGNNS|?5^NNT㥛 @CDZd;i-1 word tepidNNh|?5?JJh|?5i-1 tag+i word DT organizedVBN#~j?JJZd;NNPjt? i+1 word wadeFWbX9?NNB`"ٿINp= ףi-1 word scaleRP?RBi word receivablesNNPSw/?NNS&1VBN;OnNN"~@NNPw/i+2 word dryjaVBNx&1?VBDx&1i+2 word skepticismVBGn?NNn i word stuck JJQ?VBNMbX@RBsh|?NNSVBDzG?RBRxVBPS㥛VBZV-NNS%C i-2 tag RBRIN1ZdӿCD\(\?PDTq= ףp?NNSK7AVBDMbJJR)\(VBNnVB㥛 ?FWffffff?RBRx&1@JJuV?NNClVBPmRPB`"ٿDT!rhԿNNPCl?VBGX9v?RB(\տVBZ'1Z?i-2 word speakerNNHzGJJHzG?i word burnishingVBʡEVBGʡE?i-1 tag+i word RB rowJJT㥛 NNPT㥛 ? i word imposeVBףp= @JJd;ONNP/$i+2 word creatingJJtV?IN1ZdۿDTQNN#~jVBD1ZdVBP1Zd?WDTv/?i word removesVBZV-?VBDV-i-1 tag+i word NNS rangedVBNٿVBD?i word canceledJJw/VBNNbX9@NNM¿VBD{Gzi-1 suffix ram VBGMb VBDQVBN/$@JJMbIN333333VBZZd;O?NNSS?VBvNNQ?WDTK?NNPE i+2 word feudVBZʡE?NNPʡE i word sureVB?5^IVBG +ֿRBM@NNSc!VBNZd;OJJʡEs%@IN㥛 NNPy&1ܿi+1 word walterVB ףp= NNtV@FWV-ݿJJ'1ZĿIN/$޿NNPS i suffix nitNNP㥛 ?NNMbX?VBDV-VBNK7?VBPL7A`JJlIN/$i-1 tag+i word TO profitVBMbX9@NNMbX9i-1 tag+i word CD breakdownNN`"?JJ`" i word eeocNNP~jt?NN~jtÿi-1 word amountsINQRPx&1VBD1ZdVBN1Zd?WDTy&1?RBHzG?i-1 tag+i word JJ utilitiesNNPZd;ONNPSMb?NNS~jti-1 tag+i word JJ receiptsVBZvNNSx&1?NN(\ڿ!i-1 tag+i word -START- accountingVBG-NN'1Z?NNPL7A`i-1 tag+i word RB wivesNNSzG?VBzG i-2 word yaTO㥛 ?RP㥛 i-1 tag+i word DT lesserNN`"JJ)\(JJRI +@i-1 word toxicCD5^I NNSA`"?NNPI +ֿi-1 word chewedRBzGRPzG?i-1 tag+i word NN setsVBZZd;O?INZd;Oi+1 word passengerJJQ?NNxRBINOn?i-1 tag+i word IN lateNNP^I +RBCl@NNS\(\JJZd;@NNv i-1 suffix ellVBG7A`JJmINףp= ?JJRzG?DTGz?VBw/?NNPSZd;?RBHzG @NN|?5^ VBDq= ףpVBPrh|PDTCD#~j?RPQ?NNP ףp= ?RBR r?VBNFxPRP)\(NNSJ +?VBZuV?i-1 tag+i word JJ dailyJJA`" @NNSףp= NNL7A`ؿRBT㥛 i+2 word politicallyUH|?5^JJ1Zd@VBDZd;OVBGQi-2 word flattenVB333333?JJR333333i-1 tag+i word DT fightVBNOnۿNNOn?i-1 word principlesVBPʡE?NNʡERBCC? i suffix nosVB\(\߿NNPSMbX9@NNSA`Т@NN+NNP"~i-1 tag+i word NNP complexNNZd;O?JJZd;Oi-1 tag+i word TO topVB9v?JJ9vi-2 word volkswagenCDZd;?NNPZd;Ͽi-1 tag+i word -START- bertholdVBNMbNNPMb?i+1 word imposingJJB`"NNh|?5VBPx&1?i-2 word troutNNPSOnNNPOn?i+2 word smithJJ +?NN)\(NNPKi+1 suffix berVBG"~ҿVBNT㥛 CD+NNS!rh?NNPSRQؿVBDE?JJ|?5^@NNP%CNNGzCC#~jWDTq= ףpVBZX9v@RBS%VBP+?IN|?5^:@DT333333?i-1 tag+i word JJS wateringVBG+NN rh?JJjtֿi word seatingVBGˡENN%C?JJvi-1 word classicsVBP?NNS i word elbowNN%C?JJ%Cܿi+1 word supplierJJZd;OVBGZd;O?i-1 word fitnessNNSNbX9VBNzGNNOn@ i suffix TIJJˡENNPˡE?i-2 word nigelVBZ(\?VBD(\i+1 word frozeJJ?5^I NNPS?5^I ?i-1 tag+i word WDT statesVBZB`"NNSB`"?i-1 tag+i word DT reporterNN)\(?JJ)\(i-1 tag+i word PRP shedVBn?JJnٿVBD㥛 i+2 word remindsNN/$?JJ/$ӿi-1 tag+i word JJ sinkingJJ%CNNJ +?VBGm? i word wiryNNClVBZClJJ㥛 @i-1 word reassuringJJףp= ?RBףp= i-1 tag+i word IN schizoidJJ$C?NN$Ci-2 word equippedVBNQJJA`"?VBDx& i word fairNN1ZdNNSClVBNtVֿJJp= ף@NNP/$? i-1 word bossVBDx&1?VBNx&1i+2 word vacanciesJJT㥛 ?NNM¿VBDSi-1 suffix ageJJRoʡ?WDTSPRPHzGINV- VBGx&1JJM@NNMbFWV-?RPףp= ÿNNPS/$ٿVBDjt@VBPDlRBB`"?VBZ#~j?NNPZd;OVBV-?NNS&1VBNv/?PRP$HzG?i word vacancyNNףp= ?JJףp= i word refusalNNSQNNQ? i-1 word comNNPS?NNPi tag+i-2 tag RB JJ VBGZd;?JJX9vVBDˡE?VBP㥛 @WDTQRB"~j?VBQNN!rh?PDT+?VBN= ףp=RBRMIN rh?DT+ i-1 word loweVBZ/$NNS/$?i-1 tag+i word NN computerizedJJ= ףp=?VBD= ףp=i-1 tag+i word TO armsVB1ZdNNS1Zd? i-2 word rashNNJ +?JJJ +i-1 tag+i word NNS tendedVBD/$?VBN/$i-1 tag+i word NN circularVBZ)\(̿JJq= ףp?NNQi-1 suffix locVBZ-NNS-? i-2 word very VBP'1ZRB(\NN r@VBNRQ?WDT~jtINGz?NNSsh|?VB'1Z@JJHzGi-1 word squattedINGz?RPI +VBNSi-1 tag+i word , promptingVBGtV?JJtVi-1 tag+i word -START- oddNNPCl?CDCli-1 tag+i word RB indefinitelyVBnRBn?i-1 tag+i word NNS declinedVBNffffffVBDffffff?i word territoryNN/$?JJ/$i+1 word boomedINp= ףWDTp= ף?i-1 word biggestNNP +οVBG333333?NN~jtxVBNGz?JJ rhNNS5^I  i suffix isaNN333333NNP333333?i-2 word stalledDT\(\?RB\(\i+2 word insufficientIN~jt?RB~jti-1 tag+i word RB refurbishedVBN~jt?VBD~jti-2 word mainstayNNPSZd;NNPZd;?i-1 tag+i word JJ dudgeonNNS +οNN +?i-1 tag+i word IN meltingVBGPn?NNHzGJJrh|߿i-1 tag+i word IN replacementsNNSZd;O?JJZd;Oi-1 tag+i word NNP foreignNNPQ?NNQ!i-1 tag+i word VBN hyperinflationNNS?JJS i word peaksNNSV-?NNV-i+2 word northamptonNNPSjt?NNPjtܿ i+1 word mrs.VBD(\?VBNQWDTn RB rINl?NNP +@RP"~ڿNN +οi-1 tag+i word PRP$ candyNNE?JJEi word ambassadorNNSHzGNNS?NNPrh|?VBZMbi-1 tag+i word , ownedVBNMb?JJMbпi-1 tag+i word `` mindlessJJd;O?NNh|?5޿RB`"ֿi-1 tag+i word VBP implementedVBNRQ?JJRQi-1 tag+i word IN accountNNS?INS i-1 word evenVBNSRBjtVBZZd;ONNP}?5^INNSERBRl @JJR㥛 ?UHzGڿWDTtV?DTI +?VBrh|?NN rhVBPv?NNPSl?INCl׿VBG+JJoʡVBDCl?i-2 word refusedPRP$ ףp= RBd;O?VBDl?i word colombianVB(\NNPS+JJK7A`@NN$CNNPX9vi-1 word staunchlyVB$CVBP$C?i word symbolismNN(\?JJ(\i-1 tag+i word RB guaranteedVBV-VBNjt@RBFxVBDq= ףpտi-1 tag+i word TO impedeJJI +޿VBI +?i+1 word subjectsNNSRQJJQ@NNMbi-1 tag+i word NNPS counterVBX9vVBPX9v?i-1 tag+i word CC filedVBN rVBD r? i suffix BeVBV-@NNP"~INʡEi-1 tag+i word DT downgradeVBNbX9NNbX9?i-2 word actuallyVBNGzֿVBP;OnRB rINS㥛 @VBS?JJL7A` @NNsh|? i+2 word pathJJ+?NN+i-1 suffix aysVBGv/VBDMbXVBN$C?WDTK?NNP&1?NNPS&1?PRPʡERBRjt?CDRQ?IN?VBP(\?JJffffffVBZNNS^I +PRP$ʡE?DTd;ORPNNQRBI +?VB;On@EXS㥛?JJR r?i-1 suffix ugoVBZ\(\VBDMb@NN(\NNPS㥛i-1 tag+i word WDT bidVBZMbXVBPJ +ѿVBDl?i-1 tag+i word VBN earlyJJQӿRB;On?NNPvi-1 tag+i word RB beginningNN^I +VBG^I +?i+1 word sailedNN rh?RB rhi+2 word obsoleteVBPZd;O?NNPZd;Oi-2 word novelNN+?JJ+ i word tenderNNS?5^I NN r@JJK7JJRRQi+2 word capacity RBS-?JJS|?5^RBRK7ѿJJGz?JJRK7?CD-VB(\ڿNN7A`?POS333333?''333333VBPCl?NNS~jti+1 suffix deaNNI +?NNSQJJw/?RB rhPRP$Q?i-1 tag+i word `` threwVBDS?NN\(\RBV-i-1 tag+i word DT ballJJRNbX9NNNbX9?i-1 tag+i word , appealNNV-?VBPV-߿i-1 tag+i word VBD improperlyRB?5^I ?JJ?5^I ڿi-1 word dewarVBZZd;OPOSZd;O?i+1 word queenJJ|?5^VBG|?5^?i word charterRB㥛 ¿RBR%CNN\(\?JJ rh?i-1 tag+i word , socialistVBP-NNP-? i word viceNNSI +ֿRB(\NNOnNNPMbX9@ i+1 word incNNPM?VB= ףp=NNPSV-?VBGClJJ|?5^i-1 word hoffmanVBZS㥛?POSS㥛i-1 tag+i word JJ capitalNN5^I @JJ5^I i-1 tag+i word TO comeVBzG@NNSV-VBNQӿNNmi-1 tag+i word , certifiedVBNZd;O?JJZd;Oi+1 word realityVBGFxNN;On @NNP1Zd i+1 suffix k.NNPS㥛?RBSS㥛i tag+i-2 tag RBS CDNNS'1ZJJ'1Z?i word viewingVBGI +?NNI +i word assassinationNN?JJi-1 tag+i word DT morrowNNoʡ?CDoʡi word stingierJJx&1̿RBR$CJJRM? i word morassNNFx?JJFxi-1 tag+i word VBG asJJ(\@NNV-RBFx?IN|?5^ i+2 word guysUHp= ף?NNp= ף i suffix LLSNNPSE?NNSX9v?NNʡENNP)\(i word defensiveVBx&1JJFxɿNN(\?i+2 word trade NNP/$?NNPSq= ףpݿVBG+?VBDx&?VBN rпVBPCl?IN"~ҿNNS(\ݿVB;OnRBSſNNT㥛 ?JJR@JJV-i-1 tag+i word DT espNN +NNP +?i+1 word tacticVBG rhտNNA`"?JJrh|i-2 word eminaseVBD?5^I VBN?5^I ?i+1 suffix gedNN)\(?VBD?JJRVBG~jt?POSrh|?VBPʡEƿNNSCl@WDTףp= ?DTˡE?RBR?VBN7A`RBQ @INT㥛 NNPV-VBOn?NNPS333333JJh|?''rh|i-1 tag+i word VBD electedVBNS㥛?JJsh|?NNP+i+1 word solidVBNQVBDQ?i-2 word attributedNNS㥛?JJR ףp= ?JJS㥛VB ףp= i-1 tag+i word JJ '80sNNSjtCDjt?i-1 word economicallyVBGQJJQ?i-1 tag+i word VBD sellingVBG rпJJ)\(@NNh|?5i-1 word physicsVBZuVտVBP'1ZNNSV-?NNFx i-1 word then NNjtVBNw/VBPsh|?տEX(\?VBG/$?NNSZd;OVB/$@RP)\(JJS㥛VBDA`"@JJR ףp= RB(\?VBZ(\?i+1 word questionableINV-?RBV-i-1 tag+i word TO impossibleVBV-ͿNNS#~jJJMb?i+1 word perfectRBSS?JJSSi-1 word timelyNNMb?INMbi+1 word disaffectionJJS㥛?NNS㥛i+2 word semiconductorNN?5^I JJROn?JJ?5^I ?RBROni-2 word texacoVBGS㥛?NNS㥛i-1 tag+i word RB votingVBG&1NN&1?i-1 word processedJJK?NNKǿi-1 tag+i word RB harderRBRS㥛@JJRS㥛i+1 suffix lioVBD ףp= VBN{Gz?JJQNNS +οNNP~jt?NNMb i suffix iss VBPL7A`?NNPSMbȿJJʡEs@NN/$VBNRB-NNSx&NNPZd;VBQ?i-1 word allowingRBRHzGJJ`"?NNP +?NNPS +NN`"JJRHzG?i-1 tag+i word , delvesNNS;OnڿVBZ;On? i-1 tag+i word -START- ohbayashiNN"~jܿNNP"~j?i-1 tag+i word JJ launchedVBDM?INM i+2 word herdJJCl?NNPCli+2 word rationaleVBh|?5޿VBNh|?5?i-1 word columbusNNQ˿NNPQ? i word tireNNffffff?JJffffff i+2 word ual NNPSbX9?RP(\?NNvVBD"~jWDTDl?INʡECDx?JJRX9vVBN"~j?RBR}?5^I?RB9vNNP;On? i suffix deoIN5^I ˿NNS333333NNP|?5^?NNPSQ޿NNK7@CC{GzVBNp= ףпJJ^I +ǿi-1 suffix eldVBJ +NNS1ZdINK7A`WDTK7A`JJp= ף?NNPJ +?NNPS!rh?VBG$C?VBD?PDT+?PRPQJJRh|?5RBS@NN{GzĿVBNERPL7A`?PRP$m?RBRZd;?EXףp= DTS㥛VBZZd;i-1 tag+i word VBG dailyNNS?JJSi-1 tag+i word RB urgedINv/VBDx&1?VBNV-ҿJJ/$i-1 word monetaristsVBD{Gz?VBN{Gzi-1 tag+i word WP incurVBZClVBPx?VBDQi-2 word developedNNp= ףJJZd;OVBNjt?NNPSK7NNSK7?i-1 word sweepingJJ-?NN-i-1 word effortlesslyVBZV-?VBDV-i-1 tag+i word NN boxNNCl?VBDCli-1 tag+i word CC plugVBʡEVBPV-?NN#~jܿi-1 tag+i word CC waddlesVBZ/$?NNS/$i+2 word maturingJJjtVBPx&1VBNh|?5?NNDl?VBD ףp= ׿i-1 tag+i word IN cleanerNNffffffJJRffffff?i-2 word displaceVBZI +NNSI +? i-1 word col.NNClNNPCl?i-1 tag+i word IN memoryNN^I +?JJy&1ԿNNPi-1 tag+i word NNS furnitureVBPZd;OտNNZd;O?i-1 word carbonNNS㥛?JJS㥛i-1 suffix lsoVBDw/?RBm?VBG/$@NN%CVBPuV@RPV-ҿJJPnPDTRBR333333VBN!rh?IN`"VBA`"?NNS;OnJJS/$JJRd;OVBZ\(\?i-1 tag+i word VB awayRP rh@RB-NN%CPDTK7AJJMbXVB rh i+2 word agoINSNNP{GzԿRPS?RBSJJRClCDnJ@JJA`"i-1 tag+i word JJ uponNNʡEֿINʡE?i+1 word largeJJ= ףp=INjtVBZGz?VB/$?VBGZd;?RBZd;O?NN(\VBP333333?i+2 word plaguedVBPCl?WDTffffff?NNClINffffffi-1 tag+i word `` enduringJJ~jt?NN~jti-1 tag+i word , failuresVBZ-NNS-?i-1 tag+i word TO avoidVBʡE?JJ9vRB(\ҿi word disassembleVB+?RB+i-1 tag+i word IN giantsNNPSB`"?NNPB`"i-1 tag+i word CD leasedVBN^I +?JJlVBD1Zdi word prepaymentNNjt?JJjti-1 tag+i word POS carryingVBGw/ԿNNGz?JJK7i-2 word fallsVBPT㥛 NNmտNNP ףp= ?i-1 suffix oitNNPS"~jNN$C?VBDrh|?JJ9vNNSrh|NNP/$?i+2 word myriadVBG(\NN(\?i word democratsNNPSrh$@JJX9vJJRX9vVBP5^I RBMbVBZS㥛NNSMNNPlqi+1 word followsVBP|?5^WDTuV?NN|?5^?INuVi word maintainedNNrh|NNS1Zd˿VBNX9v?JJQVBDMb@i-2 word organicVBN/$VBD/$?i-2 word yamashitaRBB`"?NNB`"i+2 word touchRBRrh|?RBQINQ?JJRrh|i-2 word touchNNS ףp= JJ ףp= ?i+1 word stealsRB㥛 ?JJ㥛 i-2 word thwartJJV-NNSKNNx@i-2 word evolutionJJ+η?NNP+ηi+1 word slashedVBX9v?VBPX9vi-1 tag+i word JJR monitorVBn?NNni-1 tag+i word NNP managingNNV-?VBGV-i-1 tag+i word JJ musicalJJS?NNSi-2 word singaporeRBR-JJR-?JJ-?IN+NNS-?NNP-NN-VBD+?i-2 word growersDTh|?5VBPh|?5?VBh|?5ֿINh|?5?i-1 tag+i word , beefNN rh?RB rhi-1 suffix eedPOSNbX9JJR ףp= ?VBNp= ף?VBG(\ȿNNP~jtRPCl?WDT rh?RBA`"DTMCDm?VBZNbX9?JJzGʿVBD rNNSˡE@RBR ףp= VBPRQ?VBmNNq= ףpINffffffi+1 word silverRP9v?RB9vi+1 word unidentifiedRBn@NNS= ףp=JJy&1NNjti+2 word imageNN)\(@CD)\( i word cuteNNS+VBN{GzNNT㥛 ؿJJh|?5@i-1 tag+i word VBP soonerRBClɿJJRQRBR rh? i word redingNNx?NNPx i word bernNNPsh|??JJsh|?i-1 tag+i word CC passVBP5^I ?NNS(\NNuVi-1 tag+i word NN furrowsVBZˡE?NNSˡEi+2 word nuancesVB+VBD+?i-1 tag+i word JJ bowlingVBGSNNS?i+2 word betterVBDE?VBNEVBP1Zd@RBffffff޿VBZ5^I ?VBHzGJJNbX9NN~jt? i word setupNN`"?JJGzNNSMi+1 word disputedVBZRB?i-1 tag+i word JJ readersVBZ= ףp=NNS= ףp=?i-1 word technologicallyJJQ?VBNQi-1 tag+i word NN tiedVBNn@RBoʡVBDni-1 suffix kimPOSNNP?i+1 word diversityVBG-?NN- i word dodgerJJZd;OݿNNPZd;O?i-2 word rubeliNNMbX?VBDMbXi-1 tag+i word NNP appearVBPA`"?JJ+NNX9vi word trappedJJ333333VBD㥛 VBNGz@NNV-IN}?5^I̿i word psychologyNN㥛 ?FW㥛 i+1 word failsRBʡE?JJʡEi-2 word roderickJJffffff?NNffffffi-1 tag+i word VBG reducedVBNx&1?JJx&1Կi-2 word unscrupulousRBSRPS?i-1 tag+i word JJ jan.NNP'1Z@NNV-RB(\VBDGz i-1 word \*\*VBZ9v?NNP9v i word innsNNPSjt@NNPjt i word luringVBG r?NN rпi-1 tag+i word , canadianNNPlJJl? i word glintNNSʡENNʡE?i-1 tag+i word NN rangeVBP}?5^INNHzG@VBZʡEVB~jtÿi word vanillaNNPGzVBX9vNNRQ?JJ~jti+1 word plenitudeVBD1ZdVBN1Zd? i-1 tag+i word -START- aflatoxinNNx&1?NNPx&1i+2 word copyrightedNNSNN?i-1 tag+i word NNPS rallyVBPh|?5?RBh|?5οi-1 word concealNNףp= JJףp= ?i+1 word stagedNNST㥛 ?NNPT㥛 i+1 word kenDT$CIN$C?i-1 tag+i word TO vibratingVBG㥛 ?NN㥛 i-1 suffix egaNNPSGzVBD ףp= ?POS/$VBN ףp= VBZ/$?NNPGz?i-1 tag+i word , teenVB{GzJJjt?CD#~ji-1 tag+i word NNP managementNNPSK7NN~jtNNPuV?i+2 word underwriteNNuVNNSuV?i+2 word pursueVBN#~j?NN;OnJJ#~jVBP;On? i suffix finNNS%CVBNSNNjt?i+2 word dynamicNNffffffVBGffffff?i-1 tag+i word `` buildingVBG"~NN"~?i+2 word dollarsRP|?5^RB|?5^?i word educatorsNNPSKNNS㥛 NNP`"?i-1 tag+i word DT freedomNNS"~VBNZd;ONNV-?NNP&1?i-1 tag+i word IN educationJJuVտNNuV?i-1 tag+i word NN mostJJSh|?5޿RBSh|?5?i-2 word markedNNsh|?VBDS㥛JJjt?VBN/$? i+2 word flagVBNffffffJJffffff? i word shakesVBZx&1?NNx&1i-1 tag+i word NNS twiceVBP333333RB333333?i-1 tag+i word JJ ofPRP$Zd;INZd;?i-2 word retreatingNNSJJS? i+2 word dickNNNNP?i-1 tag+i word ( ricoJJ&1NNP&1?i-2 word monthVBGzG?EXffffffֿNNPX9vοRPsh|??NNp= ף?DTˡENNSxJJ-VBNMbX9INWRBSVBK7?VBDMbX9?VBPjt?RBJ +?i-1 tag+i word VBG downwardJJx&1?RBx&1i-1 tag+i word IN breakthroughJJZd;ONNZd;O?i-2 word adoptionVBZy&1?NNSy&1JJSNNPS?i-1 tag+i word RB somebodyVBZV-NNV-?i word chapdelaineJJ}?5^INNP}?5^I? i-2 word beefJJNbX9VBDZd;?NNV-?NNSKǿVBNZd; i suffix aziNNOnۿNNP\(\JJ#~j@i-2 word intercompanyNNS(\VBN(\?i-1 word subordinateNNq= ףp?JJq= ףpi-1 tag+i word NN goldNNw/?JJZd;VBD"~i+1 word watchVBG/$JJ&1?NNV-? i word runnyJJ'1Z?NN'1Zi-2 word neurologistJJ rh?VBNKNNQi word stingingVBGGzJJʡE@NNX9vi-1 tag+i word IN licensedJJ{Gz?VBN{Gzܿi+1 word airportNNPA`"VBZd;OͿJJ?i-1 word avoidedNNStVNNtV?i-2 word pressingRB'1ZԿJJ'1Z?i-1 tag+i word VBZ leadingVBGuVJJuV?i-1 tag+i word VB dutchNNPSJ +JJSNNPMb?i-1 tag+i word DT negativesNNS"~j?NN"~ji-1 tag+i word CC heavierJJR(\?NN(\i-2 word diaperNN/$?JJ/$i+2 word spendNNMbVBNZd;O?VBPMb?JJ\(\IN&1VBZ\(\?NNS)\(RP&1?i-1 tag+i word , hireNNKVB-?JJjti-1 tag+i word VBZ easierJJR|?5^?RBR|?5^i-2 word statementVBZ= ףp=?VBN;OnNN= ףp=VBD;On?i+2 word parityRP)\(POS-RB/$@IN{Gzi-1 tag+i word PRP repeatedlyRB~jt?VBD~jti-1 tag+i word VBD apartRPCl?RBCli-1 tag+i word NNP economicJJCl?NNPCli-1 word routinelyVBʡEVBGDl?VBPʡE?JJDlVBZjt?NNSjt޿i-1 tag+i word NNS buildingNNd;O?VBGd;Oi+1 suffix apsVBN~jtWDT rJJZd;O?IN r?NNSʡEVBGʡENNbX9?i-1 tag+i word , foothillsNNSGzNNPGz?i-1 word mitsubishiNNPK7A`?NNPSv/?NNHzGVBD/$?RB/$VBZ5^I ?NNS5^I i+1 word procterRB$CӿIN$C? i word natoJJ-NNPZd;?NN-i+1 word attemptVBZX9vJJT㥛 ?NNM?VBNQ?POSX9v?RBtVi-2 word purchasedNNPʡEJJX9v?NNlҿi word sauerkrautVBZd;O߿NNL7A`?JJjti+1 word separationJJX9v?NNX9vi-1 tag+i word VBD ridJJMb?NNMbi-1 tag+i word ( oppositeVBtVPRPjtJJZd;?i-1 tag+i word VBD happilyRBT㥛 ?JJT㥛 i+1 suffix uesWDTS㥛?JJA`"VBZDl?RBRClVBNK7NNMb?EXx?CDT㥛 ?VB"~ʿVBGI +?DTPnNNS rh?VBP(\JJR7A`@VBD#~jIN{GzNNPA`"NNPSd;ORBMbX?i-2 word conferenceVBNMbNNh|?5VBD?JJףp= ?VBGX9vi-1 tag+i word VB offJJ ףp= INMbXVBףp= RP5^I  @RBI +i-1 tag+i word : willVBDlNNPDl?i-1 tag+i word DT bureauNNNbX9?JJMbXNNP/$?i-1 tag+i word DT carryingVBG"~j?NN"~ji-1 tag+i word WP$ oxNNSMbX9NNMbX9?i tag+i-2 tag NNPS JJSVBPZd;O?NNPZd;Oi-2 word smithVB|?5^RBX9v?JJPn?NNKVBDX9v i-2 word jobsJJK7NNK7?i-1 tag+i word NN embracedVBNsh|?VBDsh|?? i-1 word fuelNNQ?NNSx&?VBN/$@JJ+VBD/$i-1 tag+i word VBD allDTn?PDTʡE?RB(\IN+i-1 tag+i word `` noneNNE?NNPEi-1 tag+i word NN conceitVBPA`"NNA`"? i word flipsINV-VBZNbX9?NNSFxi word stalwartJJbX9?NNbX9i-2 word vasesVBNQVBDQ?i-1 word latowskiVBZ?5^I ?VBD?5^I i-1 tag+i word VBZ affiliatedVBN ףp= JJ ףp= @i-1 tag+i word -START- hansonNN rؿNNP r?i-1 tag+i word JJ earningVBG^I +?NN^I +i-1 tag+i word VB noDTMbVBNZd;ORB~jt?UHv?i word laserscopeJJ rhNNP rh?i word longtermJJ\(\?NN\(\i+1 word opposeRBV-?VBV-i word improvementsVBZ= ףp=ڿNNS= ףp=?i+2 word ceilingNNy&1VBG/$?JJE?i-1 tag+i word CD armyNN1ZdNNP1Zd?i word subsidizeVBPQVBQ?i+1 suffix nodJJ&1?NN&1ڿi word uneventfulJJףp= ?RBףp= i-1 tag+i word NN novelistNNX9v?INX9vi-2 word holdersVBPA`"?RBK7A`ſJJq= ףpݿNN#~j?VBDL7A`JJRZd;?VBN9vi+1 word tenderingVB rhVBP rh? i word a.m.JJq= ףpNNI +?RB?5^I @NNS +i-1 tag+i word IN shoppingVBG;On?NN;On i word spiralNN333333@JJ333333i+1 word exactlyVBZx&1?VBDx&1WDTS㥛WPS㥛?i word overbuildingVBGʡENNʡE?i-1 tag+i word IN buckingVBGZd;O?NNZd;Oi-1 word packageJJX9v?IN(\?VBZ%C?NNS%CNNX9vVBD+VBN+?WDT(\i word beginningVBG= ףp@JJq= ףpNNl¿NNP~jti+1 word couriersRBoʡINoʡ?i-1 tag+i word IN gamblingVBGl?JJvNNPn?i+1 word incorporatesNNv?JJvi-1 tag+i word CC avoidVBx&1?JJmNNli-1 word these DTB`"NNSQ?NNPZd;ϿVBG^I +NN`"RBQѿVBNp= ף?VBPX9v?IN(\@VBZS㥛?VB?NNPSGzJJ|?5^i-1 tag+i word VB apartRP1ZdRB r?NN/$i-1 tag+i word NNP quayleRBd;ONNy&1ܿNNPX9v?i word questionableJJ r?NN ri-1 tag+i word NN comedyVBZClNNx&?VBDp= ףؿi-1 tag+i word NNPS monasteryNNRQ?RBRQؿ!i-1 tag+i word -START- commercialJJ%C@NN(\NNPuVi-1 word rockedJJ"~?NN"~ڿ i suffix MXNNPS333333NNP333333? i-1 word downRPʡEIN9vNNP(\?JJ|?5^ NNoʡ?RBROn?CDn?NNSX9v?JJR#~jPDTS㥛EXL7A`VBZ(\DT`"@RBPn@i+2 word darinNNSGzJJR"~jܿNN/$?i+2 word appearancesVBˡEԿJJtV?NN;OnڿVBDT㥛 ?i word sprinkleVBPMbX?VBDMbXi-1 tag+i word POS franchiseeVB~jtNN~jt?i+2 word issuanceNN333333VBG333333@ i+1 word pymmDTGz?INGzi-1 tag+i word NNP shopNNNNP?i-1 tag+i word VBD illegalJJV-?RBV-i-1 tag+i word CC amuseVBMbVBPˡE?NN#~ji-1 tag+i word VBZ declaredVBNOnVBDOn?i-1 tag+i word NN criminalsVBZ;OnNNS;On? i word early VBjtINv/VBZ^I +JJףp= $@NNS㥛RBRDlVBNClVBPClRB~jtNNPQ롿i word madisonRB&1NNP&1?i-1 tag+i word IN rareNN rhJJ rh?i-1 tag+i word DT existentJJZd;O?NNZd;O i+2 word restVBZvVBNQٿVBDx&1?i+2 word coronetsVBZGzNNPSx&?NNP9vi-1 tag+i word NNS lakeVBP/$޿NNP/$?i+1 word legitimateJJrh|VBX9vοVBPv?i-1 tag+i word DT brainchildNNSClNNCl?i-1 tag+i word DT closeJJMbX9?NNSnNN r @RB?5^I i+2 word ruleRP\(\?NNףp= ?VBDClJJR"~RBR"~?JJףp= IN\(\VBZCl?i word richestJJS333333@JJ rhNNEi-1 tag+i word CD totalNNSX9vNNX9v @JJI +i word efficientJJp= ף@NNp= ףi word abnormalVB^I +׿NNPSPnJJ?5^I ?i-1 tag+i word VB disagreedVBNHzG?NNHzGi-1 word corporateNNSʡE?NNPʡENNPSx&1?JJ!rh?NN$C@FWL7A`?RBB`"VBZL7A` i word vnetNN7A`NNP7A`?i+1 word exteriorNNPx&?JJx& i word slimeRBS㥛ԿNN?5^I ?JJni-1 tag+i word WDT netVBPGzJJGz?i-1 word doctorsVBDSVBP`"?VBNS?NNP`" i-2 word p53VBN;OnVBD;On?i+2 word householdFWZd;ϿNNZd;?i+1 word sieglerRBX9vNNPX9v?i-2 word meantVBE?JJrh|NNV- i suffix 0ERNNPQ @JJʡENN|?5^ѿCD~jti-1 tag+i word NNP centersNNPS?5^I ?NNP?5^I i-2 word designNN㥛 ?NNSxJJ(\?RBq= ףpտVBD ri word chamberNN?5^I @VBPMbJJQVBZ+NNS-NNP9vʿ i+2 word julyNN{Gz?VBDS㥛?VBNS㥛VBPxVBZx?VBG{Gzi-1 tag+i word CD gramsNNSʡE?NNʡEi-2 word found RBR-ۿNNP?5^I RPQJJB`"?VBD(\RBSˡEJJSˡE?NNSJJR +?RB`"?IN{GzVBGX9v? i word keepsNN+VBZK @VBzGNNSZd; i+1 word galaVBNh|?5?VBDh|?5i-1 suffix nisNNI +NNPI +?i+1 word schmoozingNN;On?JJ;On¿i-1 tag+i word NNS no.VB?NNi-1 tag+i word IN fecklessJJ-?NN-i word spottedVBDHzG?VBNHzGi-1 word modelsVBP(\?WDTOnJJSNN(\IN{Gz@i+2 word releaseVBDw/VBNw/@VBZE?NNSEVBFxNNFx@i-1 tag+i word CC tennisNN +?JJ +i word scholarshipNNʡE?JJK7NNSh|?5i word appealingVBG?NN i+2 word seatNNK7INh|?5DTh|?5?JJK7?i+1 word rangeINNbX9NNPK7?NNm@VBDʡEVBNT㥛 JJ~jti tag+i-2 tag NNPS POSJJX9vοVBPL7A`NN}?5^IRBL7A`?NNPZd;?i+1 word grinevskyNNA`"?NNPA`"ӿi-1 word emhartRBZd;RBRZd;?i+1 word tensionJJRsh|??JJsh|?i-1 tag+i word DT raucousJJtV?NNtVi+2 word lubbockNNP-?NN-i-1 tag+i word NNP shippedVBNvVBDv? i word latterNNS"~JJCl@NN"~JJRni+1 suffix ounJJHzG?NNHzGi-1 word commonsNNP7A`VBNJ +NN&1?VBDp= ףпi-1 tag+i word RB evenRBCl?VBNS㥛JJKVB~jth?i-1 tag+i word CC improvisedVBNw/VBDw/?i-1 tag+i word IN reportsVBZ|?5^NNS|?5^? i word evilJJS?NNSi-1 tag+i word JJ rompsNNS"~j?NN"~ji+1 suffix cedRBRʡE@NNPSS?VBDSۿVBNˡEJJ7A`DT7A`?RPV-LSVB~jt?JJSS㥛CDKVBP~jtNNK7@NNS`" @NNPtV?WRBSINGzJJR(\VBGʡEWDTjtVBZh|?5RBB`"[@RBSS㥛?i-1 word emphasizedWDTnINn?i-1 tag+i word PRP$ highNNy&1?JJy&1i-1 tag+i word RB aptVBZ1ZdJJV-?IN+i+1 word landingRB(\IN(\? i word bigNNPB`"VB/$NNPS-VBNQJJbX9@i-1 tag+i word VB afloatRPB`"RB/$?NNv/i+2 word competitorVBNRQJJm@VBDZd;Oݿi word rejectedJJQVBDMbX9@VBNoʡտ i word calledVBDB`"?PDTʡEVBNS㥛D@VBPClٿJJx&1NNPFxVBˡE?NNV-i-1 tag+i word -START- sfeNNPSZd;NNlNNP rh?i-1 tag+i word VBG !DIGITSNNSMbJJCD;On?i word occupiedVBNClJJCl?i-2 word figure RPd;O?JJQPOSd;OINVBZ^I +?NNV-@RBNbX9?NNSʡENNPjti+2 word swansonNN"~NNP"~?i-1 word comedyVBZGzNNSGz?WDTKINK?i+2 word attractionsCC rhNNP rh?i-2 word pastureRB(\?JJ(\i-1 tag+i word NNS ensuresVBZ+?NNS+i-1 tag+i word NN widensVBZMb?NNSMbi-1 tag+i word TO helpVBw/?NNQNNP+i-2 word exemptionsJJʡENNPʡE?i-1 tag+i word DT johnsNNPS"~jNNP"~j?i-1 tag+i word DT plansVBZB`"ٿNNS= ףp=?NN/$i-1 tag+i word DT slowJJ`"?NN`"i+2 word twinsVB333333?NNS rh?NN333333VBZ rhi+1 word alterRBh|?5?NNP&1?VBh|?5VBP&1i word inclinedVBNxJJQ@VBDT㥛 i-1 tag+i word IN beginVBPx?CCxi-2 word florioVBN +VBD +?i-1 tag+i word NN accordedVBNoʡ?JJ㥛 VBD%Ci-1 tag+i word VB raisedVBNd;O?VBDd;Oi-1 tag+i word NN tanksNNS+?NN+i+1 word howellVBG1Zd?NN1Zdi-1 tag+i word IN overheadNNx?JJx޿i-1 tag+i word `` kidsNNS-?NN-i-1 word transitNNtVINtV?i-1 word break RPV-?RB`"VBDZd;PRPB`"IN%CPRP$B`"?NNvϿVBNZd;?JJOn@i-1 tag+i word CC viewershipVBv/ͿNNv/?i-1 tag+i word FW stardomNN\(\?RB\(\ i word coinsNNSʡE?NNʡEi+2 word delegationJJCl?NNCl˿i word villageNNPSjtNNJ +ٿNNPHzG?i-1 tag+i word NN authorizationNNMb?JJMbi-1 tag+i word PRP costVBZK7VBDK7? i word abuseRBKNNx&1 @NNPS'1ZNNSJJ +i+2 word audience RBSA`"VBNd;OJJR9vJJd;O?NN|?5^JJS$C?PDTK7A`?VB+?VBGK7A`i-1 tag+i word VBZ ambivalentVBN rhݿJJ rh?i+1 word reichVBrh|JJ rNNP+? i+2 word ironVBNA`"?RB-?VBD/$ i suffix &LsNNPSX9vֿNNS7A`P@RBʡENN1ZdNNPuVi-1 tag+i word DT expansionaryVBN|?5^JJ|?5^?i+1 word analogVBNS㥛?JJS㥛i-1 tag+i word . economyNNS|?5^ѿNNK7A?NNPSi word marginalJJʡE?NNʡEi-1 tag+i word RBS loveVBv/VBPv/?i word rampantJJ+ @VBNV-NN%Ci-1 tag+i word DT bannedJJClVBNCl?i word pencilsNNSX9v?NNX9v i+1 word & NNPSS㥛@NNn?VBN&1NNSK7VBZV-NNPx&@PRP$mVBGGz߿RBvVB{GzJJ rhi-1 tag+i word CC chooseVBM?JJMi-2 word marchVBZ+?NNSuVNNPMb?i-1 tag+i word VB woodNNˡE?RBˡEܿi+2 word cardiacVB+ÿRB+?i-2 word lamentRB rhIN rh?i word offeringVBGw/NNMbX@VBNbX9VBPGzJJy&1NNSl i-2 word mustRBRtV@VBG+VB?NN$C?NNS/$DT rVBZx&1RP'1Z?VBNRQIN1Zd@JJMbVBDh|?5RBQJJR +i-1 tag+i word NNS rankVBD rhVBZMbX9VBPMbNNJ +?i-1 tag+i word VBG discountVBA`"RP5^I NNRQ@ i word testedVBNV-?JJffffffVBDZd;O?i-1 tag+i word DT targetedVBN rJJ r?i-1 word hintedRPK߿INK? i suffix rreNNSZd;OJJX9v @NNZd;OVBDGzi+2 word launchVBZ= ףp=?NNPSNNS㥛 ?NNP^I +i-1 tag+i word DT streetNNZd;?JJZd;i-1 tag+i word CC disclosedVBNffffffֿVBDffffff?i word inspireVBPMb?NNMbi-2 word recommendedNN'1Z?JJT㥛 ?VBG'1Zi+1 word mistsNN+?JJ+ i-2 word maeVBDV-VBPV-?NNSQNN@NNP(\i-1 word executive VBGL7A`пVBDQ@VBN"~RPX9vNN/$JJ^I +VBZw/?NNSw/NNPMb?i-1 tag+i word VB writingVBGx?JJxi-1 tag+i word JJ madeVBNGz?NNGzi+1 word entrepreneurJJ7A`?NNP7A`i-1 tag+i word IN golfVBGV-NNV-? i+1 word jazzVBsh|?ſRP+JJ"~j?NNZd;Oi+2 word skepticsNNPSKNNS㥛 NNP`"?i+1 word calculatedRBףp= INףp= ?i-1 word fondlyVBPZd;O?NNZd;Oi-1 tag+i word PRP$ retailingVBG rh?NN^I +?JJ333333i-1 tag+i word NN vergedVBN$CVBD$C?i+1 word singingNNK7?JJ;OnVBp= ףi-1 tag+i word VBZ meanVBPx&1?NNSx&1 i suffix owaRBQNNzGNNPCl?i+2 word reservesVBGv/?NNʡEֿJJv/VBZzGNNPzG?VBʡE?i-1 tag+i word IN steroidsNNSn?NNnڿi+1 word francsNN|?5^CDGz?NNPʡE?NNPS ףp= JJ$C?i word pennantNNˡE?JJSӿVBSi tag+i-2 tag VB VBPEXK7?RBK7i-1 tag+i word NNP publishedVBNK7VBDK7?i+1 suffix tteNNK?WDTʡEJJrh|IN+?DTDlNNSףp= NNPh|?5?i-1 tag+i word JJ mexicanJJ!rhNNP!rh?i word cardiovascularJJ ףp= ?NN ףp= i-2 word leventhalRBV-?VBGMJJffffff?NNʡE i suffix ffyVBsh|?JJ?NNp= ףؿi-1 tag+i word NN processNNʡE@VBNʡERB rhi-1 suffix ule VBD+?NNS~jt?VBGʡE?DTsh|?RP(\NNʡEWDTClJJINS @VBZ+RBT㥛 @i-1 tag+i word MD intelligentVBT㥛 JJT㥛 @i-1 tag+i word NN issuedVBNMbNNʡEVBD&1? i-1 word blewRPClRB rhINn?i-2 word guiltyNNSʡEVB9vVBGuV?NNB`"@ i word abbRB{GzNNP{Gz?i+1 suffix lryVBPʡEJJl@NN~jti-1 tag+i word RB firmedVBNK?VBDKi-1 tag+i word VBD subcommitteeNNS~jtNN~jt?i-1 tag+i word NN recyclingNN?VBG̿ i suffix nge NNPS333333VBD= ףp=VBN-VBP-@RBbX9VBCl@JJbX9޿NN@VBZnNNS5^I NNPQ?i-1 tag+i word WP dabbledVBP= ףp=VBD= ףp=?i+2 word newcomersVBZ|?5^NNS|?5^?i+1 word issuanceVBNbX9JJ/$?VBDK7i-1 tag+i word IN triangleNN"~jNNP"~j? i suffix ign NNPSA`"JJ;On?VBD\(\VBP333333NNSPnVBDl?NN|?5^ @RBvIN;OnVBZx&1NNPV-@i-1 tag+i word POS betterRBRQ@JJRQi-1 tag+i word NNP goreNNPS/$ٿNNP/$?i+1 suffix dgyRBʡE@NNPʡEi-1 tag+i word NN citizensNNS1ZdNNPX9v?NNPS/$i+1 word availabilityVBNClJJCl? i-2 word popNNFx@RBFx i+1 word bnlJJCl?NNPCli-1 tag+i word NNS feeNN(\?VBP(\ i+2 word geneNNSl¿VBGT㥛 ?NN333333ӿVBD-VBN/$@JJ/$i word contaminatedVBN|?5^?VBD|?5^i+1 word opposedIN$C?NNS\(\RBy&1̿i-1 tag+i word NNPS acrossVBP5^I ۿRB rIN`"?i-1 tag+i word CC recaptureVBV-?VBPV-ڿi-1 word underwentVBG+JJp= ף@NNxi+1 word weightJJ?RBR9vڿRBJJR9v?i-1 word budget VBK7@VBGNbX9VBZ㥛 ?JJZd;OտNNZd;@VBNA`" VBPy&1RBClINp= ףNNSv? i word lungsNNS"~j?JJ"~ji word premiumCC/$VBZV-NNSClJJ+N@NNsh|?i tag+i-2 tag VBZ CD VBN\(\?WDTK?JJ)\(VBG/$?RP/$ӿWPKJJR +ֿINGz?NNK7Ai-1 tag+i word VB doomedJJv?VBNvi+1 word douglasNN+NNP+? i word i.NNx@NNPxi+2 word marylandVBNd;ONNx&1CDx&1?VBDd;O?i-1 tag+i word PRP$ secondJJm?NNmi-1 tag+i word NNP routesNNS~jt?NN~jtؿi-1 word successfullyVBPClۿVBNMbX?VBDMbXVBZV-VBl?i-1 tag+i word -START- jimmyRB/$ٿNNP/$? i-1 word tideNN/$?NNP/$i tag+i-2 tag FW NNPFWx&1JJQ?NNPV-@NNPS= ףp=RB+NNx&1? i-1 word litNNPS?NNn?JJRNbX9?RBRNbX9JJnNNSi-1 tag+i word NN alienatesVBZ333333?NNS#~jINʡEi+1 word turnaroundWDT rhJJ(\?NN(\IN5^I DT}?5^I?i-1 tag+i word NN arkansasRB#~jNNP#~j?i-1 tag+i word IN ususalVBJ +JJx&1?NNd;O޿i-2 word regulatesVBZ?VB i+1 word got NNPS= ףp=NN5^I ?VBZA`"?NNPNbX9?VBrh|POSS㥛JJ-ӿINʡENNSQ?i-1 word rillingVBZQVB rh?VBP|?5^ѿi-1 tag+i word CD buyVBPxֿNNx?i-1 tag+i word VB nextJJ}?5^IRBMbX9@IN)\( i word smellyJJ|?5^@RB|?5^i+2 word listsVB`"?NNMbPVBD rhJJRlVBNA`"JJ|?5^?i+1 word budgetingVBP-ƿJJ/$NNPffffff?i-1 tag+i word , sereneNNuVRBQJJ}?5^I?i-1 tag+i word , indicatedVBN)\(VBD)\(?i-1 word solidarityVBNjtVBDjt?i word appealsNNPSL7A`?NNS/$NNPˡEi-2 word characterizeNNSDlNNPDl?i-1 word people VBx&ٿVBG/$?RB~jt?NNx&1VBD +VBNGz߿NNP1Zd?RBR= ףp=VBPn@JJFx?IN1Zd?DT/$ i word walterRBRZd;JJS㥛NNPv/@ i+2 word rompNNSh|?5JJ(\ݿVB"~VBP-?i+1 suffix yesJJMb@NNPClVB+@NN(\VBPUHT㥛 ?i-1 tag+i word VBN resetJJzG?NNzGi-1 word nordineNN rhNNP rh?i+1 word circuitJJMNNPM?i-1 tag+i word DT unwelcomeJJZd;?NNZd;i-2 word reallyRPRQ?RBʡENNA`"?FWQJJ1ZdINRQȿNNS'1Z?i+1 word sweepersNN= ףp=?JJ= ףp= i-1 word me RPQ?VBD+VBPQINS@NNSbX9VBQ?JJMb?RBR1ZdJJR1Zd?WDTzGRBClVBZbX9?DTL7A`i word refocusedVBDMbX?VBNx&1?JJ#~ji-1 tag+i word CC desksNNSZd;O?JJZd;Oտi-1 word deferredNNSCl?NNNbX9NNP/$i-1 tag+i word VB whackedVBNd;O?JJd;Oֿi-1 tag+i word : preferredVBNRQJJRQ?i-1 tag+i word NN squareNN333333?JJ333333i-1 tag+i word NNS consideredVBNjt?VBDjti-1 tag+i word TO lawnVB5^I ˿NN"~?JJʡEi-1 word returnedRBK?NNKi-2 word troubledNNPS^I +׿VBGˡENN r?JJmVBZ{GzNNS{Gz?NNP/$?i-1 tag+i word NN clearedVBDsh|??VBNsh|?i word quartetsNNS/$?RB/$i-1 tag+i word NNS holdVBDS㥛FW+VBS?VBP +?JJ r i word near IN&1\(@VBZ$CRBRClVBP{GzRB?DT+NNP$CVBGzJJ+wNNxi-1 tag+i word NN skinsNNSx&?VBZx&i-1 suffix rerVBZ\(\߿JJn?POS\(\?NNMbX9VBDv?i+1 word chaosVBN(\JJ(\?i-2 word litigationVBN|?5^?VBD|?5^i+2 word revisionsWDT;OnRBR/$ֿJJR/$?IN;On? i-1 tag+i word -START- declaringVBGsh|??NNsh|?i-1 tag+i word VBP trimJJCl?NNCli-1 tag+i word `` tokyuNN}?5^I̿NNP}?5^I? i+1 word findNNA`"VBGuVJJ rh?NNS rh?RBQ?i+2 word foundedNN-NNP-?i-1 tag+i word POS slimNNSV-JJn?NNʡEӿi-1 tag+i word -START- havingNN~jtؿNNPMbXVBG? i suffix ete JJRmVBPDl?NNP/$@JJ5^I @INjtԿVBsh|?@NNPSzGRBB`"NNnVBDK7VBN"~jVBZ/$NNS(\i word absorbedVBNoʡ@NN(\VBD rhi-1 tag+i word CD diabeticsNNSNbX9?NNNbX9i+1 word exemptionsJJʡECCCl?JJRA`"i-1 word actedRBRK?RB;OnJJRT㥛 i+1 word convertsWDTx&?INx&i-1 tag+i word DT baseVBZ~jtJJ/$@NNHzGi+1 word illustratesVBKNNK?i-1 tag+i word JJ blitzesNNSGz?NNGz i suffix hamUHv/?JJ}?5^INNP/$@NNPS}?5^IRB333333NN;On¿SYMi word tantamountVB&1JJoʡ?NNx&i word shreddedVBNʡEݿJJʡE@VBDuVi+1 word salesVBn?RPK7?JJQ?NN5^I VBDv@RBSˡERBRp= ףVBNI +RB"~j DTK7ANNPS#~jJJR/$?JJS\(\?CD"~VBZuVտIN1Zd?VBPRQVBGp= ף@NNS)\(?NNPZd;Ͽi-1 tag+i word , muscledVBNw/ԿVBDw/?i-1 tag+i word , entrepreneurNN)\(?JJ(\ڿVBD ףp= i-1 tag+i word WDT audioVBPJJ? i-2 word jr.RP"~j?NNv/RB|?5^ڿINMbDTJ +?NNPK7A`?NNPS rh i word nearlyRBS?JJSi-1 tag+i word JJ overseasNNJJK7?NNS+ÿRBMbX9i-2 word termsVBSNNI +@VBN1Zd@JJzGDTlNNP333333ӿi+1 word processingJJ$C?INSNNSNNPK?VBV-RB;OnҿNN\(\?i-2 word soonerNNSNbX9RBR?RBS?JJRSVBZNbX9?i+2 word packageJJv?VBI +NNoʡ@i-1 tag+i word RB replacementsNNSQ?VBNQi-2 word spraysVBV-NNSV-?i+1 word dippedVBPMbX9RBMbX9?i+1 word motor VBSJJCl绿PRP$S?VBN +?INn?NNPZd;O?RP|?5^NN'1ZJJS㥛 RBOnÿi+2 word advocacyNNl?JJlڿi-1 tag+i word IN houlianJJjtNNPjt?i-1 word playwrightsVBPS㥛NNV-NNP rh? i suffix sueNNSmVB{Gz@NNl@RBS-VBPʡEJJ"~j VBZbX9 i word shopRB!rhNNPRQ?NNM@NNSMbJJh|?5 i word wouldMDS㥛@PDTSUH;OnNNPni-1 tag+i word NNP joblessJJQ?NNQi-1 tag+i word NN beansNNSPn?NNPni+1 word matsudaNN&1NNP&1? i-1 word vs.JJMbX9NNPMbX9?i+1 word pearceNNB`"NNPB`"?i+2 word based NNPSV-RBsh|?NNx&?VBNˡE?RPh|?5NNSDlѿNNP~jt@VB/$ݿVBGrh|@VBPS?JJ ףp= i-1 word fluffyVBDp= ףؿNNp= ף?i-1 tag+i word POS approachNNV-?JJV-i-2 word complex RB|?5^VBGJ +?VBP%CVBDjtVBN rh?IN|?5^?VBZV-?NNP?5^I JJ'1ZNN?5^I ? i-2 word peepVBP= ףp=?JJ= ףp=i word feasibilityNNS㥛?VBS㥛i-1 word intrauterineVBPM¿NNM? i word parkedVBNv?JJ?5^I VBDx&1i-1 tag+i word PRP claimedVBPHzGVBDHzG?i-1 tag+i word JJS toxicologyNNSV-NNV-?i+1 word neededRBRtV?RBtVi-1 tag+i word IN fallenNN/$VBN r@JJZd;Oi word viewingsNNSB`"?NNB`"i+2 word combinedVBPq= ףp?VBDq= ףpi tag+i-2 tag WRB JJSVBGRQ?NNRQi word enforceVBV-?NNV-i+1 suffix iptJJ/$?NN/$i-2 word itselfNNv/ͿVBDv/VBNv/?RBMb @INtVNNSw/ܿJJ#~ji-1 tag+i word JJ financeNN rh?JJ rhտi+2 word frugalJJS㥛?NNS㥛i-1 tag+i word IN earlierNNGzJJRn?RBʡERBRx&i-1 word waggishlyVBX9v?JJX9vi-1 tag+i word NN acceptableNNK7JJK7? i+1 word hogJJ?5^I ?RB?5^I i-1 tag+i word VB eyesNNS\(\?VBN\(\߿i-1 tag+i word CC playedVBZ㥛 VBNw/ԿRB/$VBDrh|@i-1 tag+i word JJR matchingNN+JJ+?i-1 tag+i word IN wellNNS+RBʡE@NNX9vUH$Ci+1 word villageJJJ +?NNJ + i word alfredNNPSmVBN$CNNP%C?i-1 tag+i word NNS bothCCMbX9ĿDTMbX9? i+2 word weakRBT㥛 INT㥛 ?i-1 tag+i word RB midnightRB$CNN$C?i-1 word assets NNsh|?RBROnIN rh?VBZzG?NNP(\?NNPSZd;JJ^I +CC%C?JJRV-տRB rhNNSzGi tag+i-2 tag VB POSJJvINJ +ѿDTJ +?NNv?i-1 suffix ezhVBɿVBP?i-1 tag+i word NNP fishNNGz?NNPSGz i word valvesVBZGzNNSGz?i+1 suffix ateJJSS㥛JJR +VBGoʡ@RBSS㥛?RBR'1Z?CD+?MDsh|?NNPS rhVBN~jtVBPNbX9?JJK7@NNPRQVBS?INuVPRP$Q?WDTK7A?VBZ?5^I RB^I +?CCVBDzGDT9vRP r?NNףp= ?NNSʡEi word cypressJJB`"NNSտNNPffffff?i+2 word extraordinaryNN-VBN-?i+2 word north IN9v?NNP)\( @VBˡE?NNPSClNNKPDT"~jCDv/VBP+?RP{GzԿJJd;O?JJRQRBjtDT"~j?i-2 word ministerNNP r?NN rJJlVBDl?"i-1 tag+i word NNS notwithstandingNNZd;OVBG rhRB%C?i+2 word painewebberVBNB`"?JJB`"i-1 tag+i word PRP$ lakeNNClNNPCl?i-1 tag+i word NNS reactVBMbPVBPMbP?i-1 tag+i word `` salarymenNNS;On?NN;Oni-2 word differentVBG\(\NNS-?NNn?JJMbX9VBZ-ֿi tag+i-2 tag PRP$ WRBJJS\(\?NNFx?JJʡECDQi-1 tag+i word RB sleepVBP^I +?RB^I +i-1 tag+i word VBZ tylerNNPCl?NNClǿi-1 tag+i word PRP$ foolingVBGMbX9NNMbX9?i word bulgingVBGʡE?NNʡEi-1 tag+i word VB kindlyRB/$?JJ/$i-1 tag+i word -START- l.j.JJ$CNNjtֿNNPA`"?i word arrivedNNS`"VBN?VBD5^I ?i-1 tag+i word VBP omittedVBNOn?JJOni tag+i-2 tag RBS VBJJ rhͿVBN1Zd?NNi word inquiriesNNSx?NNxi-1 tag+i word , boringVBGmNNw/?JJCli-1 word deemedJJ?5^I @NN= ףp=ҿVBGrh|߿VBNrh|RBףp= i word carnivalNNT㥛 ?JJjtNNP{GzԿi word relativeVBv/ݿJJ|?5^?NNS㥛UHx&1пi word encourageVBʡ@NNx&1VBDsh|?տVBP#~j?JJ(\NNPtVi-2 word strictWDTV-?NNPSʡENNSʡE?INV-i-1 tag+i word VBG rusticatedJJSVBNS?i-1 word proposesVBGMb?JJMbi-1 tag+i word , vacavilleJJV-NNPV-?i-2 word crimesRBSv/JJSv/?RBRrh|RB"~IN"~?VB(\NN/$?i-1 tag+i word NN excludesVBZ-?VBD- i suffix -18NNʡE?JJq= ףpCDS㥛? i word sungVBNn?NNni-2 word banqueINn?FWq= ףpNNP= ףp=?VBD&1NNSSۿ i-1 word toyRBM¿NNM?i+2 word badlyVBP%CVBD%C?i-1 tag+i word CD thinksVBZʡE?NNSZd;NNZd;Oi-1 tag+i word CC payVBZ|?5^VBQ @VBP rNN)\(i-1 tag+i word VBZ climbedVBDv?VBPvi-1 tag+i word VB tricksNNSʡE?NNʡEi word healthyJJGz?RBx&1NNP)\(i-1 tag+i word NNP rulingsVBZMbNNSMb?i-2 word beneficiariesRB-IN-?"i-1 tag+i word -START- subscribersNNSQ?NNPQ i word standsVBN1ZdNNZd;?VBZQ?VB1ZdNNSi-1 tag+i word IN tariffJJ~jtNNP)\(NN|?5^? i-1 word massVBGL7A`пNNL7A`? i word lowsVBZ= ףp=NNSV- @JJRzGNNZd;Oi-1 word shakesJJMRBX9vϿINʡE? i suffix A NNPS~jtNN(\@JJRQUHjtRB/$VBJJJ +INFxDT$!@NNSNNPx&1i-1 tag+i word , comparesVBGRQVBZv?NNSSi-1 tag+i word VBP heightsNNS+?NN+ i-1 tag VBNRBS+VBPMbX?DT^I +NNSMb?VBT㥛 CD?5^I ?WDT"~jJJy&1?VBZffffff?NNZd;?NNPSvPRP$!rhܿVBGffffff$ClۿRBK@WPlCCp= ףINS@RP`"@FWGzEXp= ף?JJR ףp= RBRQ?WRBX9v?PDTNbX9?JJS|?5^ٿUH(\ҿVBDT㥛 VBN/$PRPq= ףpտNNPQ?i-2 word administersNNffffff?JJffffffi-1 tag+i word DT beautyNNZd;O?JJZd;Oi word ' VBPZd;VBZMbX9NNPvVBvPOSq= ף@''@RB+NNoʡJJ$Ci-1 tag+i word CD cleansVBZy&1?NNSy&1 i suffix kelNNl?JJli word fascinatingVBG$CJJ'1Z@NNuVi-1 tag+i word NN riseVB7A`¿VBPOn?VBNX9vNN;On?i word releaseVB+?VBGףp= NNx&1@JJ/$NNP+i-1 tag+i word NN lawNN"~?NNP"~i word crimsonJJ(\@NN(\ i word lundNNPSd;ONNPd;O?i-1 tag+i word -START- bradleyNNPZd;?NNSZd; i word pairsNNSK7?NNK7 i word narrowRBtVVBNSJJMb@NNS333333NN㥛 i-1 suffix l.VBGZd;ONNPˡE?NNPS;Oni+2 word celebrationVBGMb?NNOn?JJ`"VBN{Gz i-2 word aideVBNNP? i word willVBZ/$NNPMMDZd;@VB~jtWRBHzGIN!rhi-2 word suitorNNPS(\JJMbX?NNPE? i word aid VB7A`?NNMb!@VBN5^I IN+NNS!rhNNP1ZdJJx&1VBDDlRBSi-1 tag+i word -START- chugaiNNnNNPn?i-1 tag+i word -START- frenchJJ&1NNP&1?i word undergoVBZd;ϿVBP(\?NNˡEVBDffffffi word materializesVBZZd;O?NNZd;Oi-1 suffix cwaVBZ(\?NNS(\i-1 tag+i word RB declineVBMbX9VBPd;O?VBD(\i-1 tag+i word , laughsVBZS?JJSi-1 tag+i word NNP representNN&1VBP&1? i+2 word kiepRBRX9vNNPX9v?i-2 word worldNNPSV-?JJd;O?VBD1ZdCDV-NNPw/''5^I VBPx&1@IN +NNS9v?VBGoʡ?RBS/$?DT rh@NNT㥛 ?JJSS㥛POS5^I ?RBffffffi-1 tag+i word JJS foodNNQ?JJQi-1 tag+i word DT foundationsNNSZd;O?NNZd;Oi+1 word centerfielderNNPV-NNPS|?5^?NNSjti-1 tag+i word NNP 'nNNPn?POSMbX9CD\(\i+2 word noiseJJL7A`VBNL7A`? i word garnerVBzG?NNzGʿi+2 word stearnsRPZd;O?INZd;Oi-1 word escudomeNNCl?JJCli+1 word satelliteVBw/NNPSB`"@JJ~jtNNPoʡ?i+2 word typicallyNNPNbX9ȿNNV-?RBS?JJSJJx&1NNSM?i-1 tag+i word NNP palaceNNvNNPv?i-1 word troubleINSVBGI +?RPS@NNI +i-1 word interimJJ r?NN ri word sixfoldVBDsh|?VBZI +RBZd;O@NN/$ѿi-1 tag+i word NN promptedVBDCl?VBNCli-2 word convoyRB= ףp=?IN= ףp=i word beepingVBGoʡ?NNoʡi+1 word competeDTlWDTl?i+2 word suburbJJClNNPCl?i word extendedVBNy&1?JJZd;O?VBDSi-1 tag+i word CC friendVB9vNN9v?i word exhibitsNNSCl?VBNCli+1 word harvestJJSL7A`NN5^I ?JJ5^I NNPL7A`?i-1 tag+i word NNPS surprisesNNPSw/NNSw/? i-1 tag+i word IN retinoblastomaNNoʡ?JJ= ףp=VB/$i word optionalJJQ?NNQտi-1 word brownJJn?NNni-1 tag+i word RB heardVBNMb?JJMbi-1 tag+i word RB materializedVBNh|?5VBDh|?5?i+2 word reynoldsJJX9vNNPX9v?i+2 word bondsJJ}?5^I@IN9v?VBN333333RPMbؿNNSB`"VBZ/$ٿJJS|?5^@JJR{Gz?RBR|?5^?WP7A`POS/$?VBGV-NNʡE?RBS|?5^VBPB`"PRPENNPGzVBw/?RBsh|?ݿi word emergesVBZl?NNSli-1 tag+i word NNP mayoralJJCl?NNPCli-2 word clientsNNSGz?VBGmRB~jtx?NNh|?5?VBNSVBPGzJJS?VBZx&i-1 tag+i word JJ contributionsNNZd;ONNSZd;O?i+2 word shakeRBjtܿNN㥛 ?JJSi-1 tag+i word TO scheduleVBJ +NNJ +?i+1 word botheredRB5^I ?JJ5^I i word conrailVBKNN +NNPOn?i+2 word commissionerNNCl?NNPCli-1 tag+i word VB earthboundJJx&?NNX9v׿RBQٿVBNq= ףpi+1 word cokelyVBN+߿NNP+?i-1 tag+i word -START- skepticsNNS#~j?NNP#~ji-1 tag+i word RP mountainNN +?JJ +i+2 word ridiculousVBNOnJJOn?i word streamlinedVBNoʡJJoʡ? i word ferryRBZd;NNZd;?i-1 tag+i word , propelVBPzGNNp= ףVBZ= ףp=VBq= ףp@i+1 suffix sawDT$CWDT$C?NNh|?5?JJh|?5i-1 tag+i word VBD predictedVBNS㥛?JJS㥛i-1 tag+i word POS richestJJS333333@JJ rhNNEi-1 suffix berVBD\(\PDTMbJJtV@CDZd;O?VBMbX?VBGRQVBPٿINm?VBZ㥛 DTRQNNPHzG?NNPSZd;OտVBNffffff@RB333333NNNbX9POSˡEĿWDTx&1?NNSQ뱿i-1 tag+i word DT sponsorNNSK7NNK7?i tag+i-2 tag NN VBGJJRS?NNSS㥛?VBGz?VBD'1Z@JJlINRP|?5^?DTV-?VBGbX9FW/$?RBRSVBNK7POS^I +WDTʡE?EXd;ONNPˡE?RB~jt?NN rVBPK7?VBZK?i-1 tag+i word DT bedVBNx&1NNx&1?i-1 tag+i word JJ morselCDT㥛 ؿNNT㥛 ? i suffix deeVBq= ףpݿNNq= ףp?i-2 word stonesWDT{Gz?IN{Gzi-2 word becomingNNSoʡJJ/$?RB-VBNJ +i word fitnessRB9vNNoʡ@VBD-JJSQJJrh|NNPp= ף?i-1 tag+i word JJ circusNN'1Z?JJ'1Zi-1 tag+i word NNS approveINffffff޿VBPffffff?i-1 tag+i word DT heldVBNB`"VBDB`"?i-1 tag+i word IN cornJJv/NNPv/?i+1 word jacketNN㥛 ?JJ9vVBNmi-1 tag+i word CD meansVBZvNNSʡE?NNzGڿi+1 suffix tryNNPSʡE?CD$C?RP+VBNGzJJ$C@IN/$տVBGQDTx&1?NNI +WDT+PRPʡEVBX9vVBDZd;?PRP$ʡE?NNS(\?NNPK7A`i word marketersNNPS1Zd?NNP1Zdi-1 tag+i word `` chargeVBbX9?NN)\(NNPZd;i+1 word transportationVBP/$?VBGQJJQ?VBD/$MD-ۿ i-1 suffix kVBPףp= NNGzRB^I +NNPbX9 @i-1 tag+i word IN bustedVBN"~jܿJJ"~j?i-1 tag+i word VBN sporadicVBNzGڿJJffffff?NNSi+1 word nearlyJJy&1NNX9vDT^I +׿VBףp= RPV-VBZsh|?NNS9v?VBPZd;O?RBjt?IN rh?VBDA`"?VBNx޿CD^I +?VBG;On?i-1 tag+i word DT dnaNNPQNNQ? i-2 word moRBv?INvi+1 word officersVBZbX9VBGʡENNSK?JJQ?NN +ֿi-1 word electricVBZV-NNV-?i-1 tag+i word RB reproducedVBPClVBDCl?i-1 tag+i word `` shortlyRBK7A?JJK7Ai-1 tag+i word VBG grantNNX9v?JJX9vi-1 suffix napNNSCl?RBV-FWClRPV-?i-1 tag+i word `` concernedVBNx?RBx i word farmVBSNNSd;ONN rh@JJq= ףp NNP&1i-2 word unexpectedlyVBZy&1NNSy&1?i word reaffirmVBjt?PDTjti word completeJJL7A`e@VBZv/VBuV?RBClNN + VBDPnJJRmVBN"~ji+1 word muramatsuNNrh|NNPrh|?i+2 word autocraticRBK7JJK7@i-2 word monetaryVBZ"~jܿNNS"~j?RBRl?NNli word relaxedJJ$CVBD$C?i word aplentyVBZ-JJK@VBPV-ݿRBT㥛 ?NNQ i+1 word fearNNA`"WDTV-?JJlҿINV-ݿVBZRQNNSp= ף?VBG7A`?RBQi-2 word distortedVBZw/NNSw/?i-1 tag+i word DT monumentalJJV-?NNV-i-1 tag+i word NNS depictVBPCl?VBDCl i word clockJJX9vNNX9v?i-2 word arrayNNʡE?JJ+NNPV-NNPS rh@NNSClۿ i+2 word makeRB +NNffffff?VBNw/IN~jt?MDPn?NNPSn?WP?VBPE@DTV-ϿVBGMb?VBD"~j?VBZ{Gz?NNPA`"VBMbCC'1ZJJ+?RP+NNSS㥛ĿRBRv/?i-2 word charlesVBZuVNNPuV? i suffix ONRPsh|?@NNQNNPV-i+2 word invokingNNv?VBGvi-1 tag+i word `` portrayalNN"~j?NNP"~j i word bovineJJzG?NNzGếi-1 tag+i word '' adjusterNN/$?RB/$ÿi-1 tag+i word RB goodJJQ?NNmRBQ롿PRPSi-1 word stoltzmanVBZ+?IN+ i+1 word carrNNPQ?INQi+1 suffix jor INK7A`@DTV-?JJRS?NNP5^I JJ ףp= ǿNN rhVBDMڿVBN5^I CDRBE?i-1 tag+i word VBG inefficientJJ9v?NN9vi-1 tag+i word CC muchRBzG?JJzGi-1 tag+i word JJ bangNNy&1NNPy&1?i-1 tag+i word JJ depositNNtV?JJtV i word mitsuiNNSQ@NNMbX9NNP/$$i-1 tag+i word JJ telecommunicationsNNSS㥛NN(\@JJK߿i-1 word sandsVBDʡENNK7A@JJx&ٿINNbX9i-1 tag+i word , wishesVBZ)\(?NN)\(i word besiegedVBDClVBNCl?i-1 tag+i word DT councilNNP~jt?NNSQNNV-i-1 tag+i word NN contributeVBtV?NNtVi word incorporatedVBN5^I ?VBD5^I i-1 tag+i word -START- nearlyJJSRBS?i-2 word limitedVBrh|VBGrh|?NNS?NNPSi+1 suffix aksRBK7A?VBZK7AJJMbXɿNN\(\JJRMbX9?RBRMbX9VBPV-?i-1 tag+i word DT lincolnshireNN^I +NNP^I +? i word plainJJ{GztNNZd;OFWMbVBuVRB|?5^@i+1 word offer WDT'1Z?INV-NNS~jt?VB-NNPS%CVBG)\(?POSMbX''MbX?NNsh|? @JJR~jtJJZd;ODT/$?NNPX9vֿi-2 word thanksgivingNNPNbX9?VBNbX9ؿi-1 tag+i word DT beatingVBGx&NNx&?i+2 word searchNNSGz?VBRQпVBD|?5^VBNy&1VBP#~j?VBZGzi-1 tag+i word -START- esselteRB}?5^INNP}?5^I?i word electiveJJ$C?NN$Cӿi-1 tag+i word RB watchedVBN!rhԿJJ!rh?i+1 word nutritionalNNzGڿNNPzG?i+1 word timorousRBRMb?JJRMbi-1 tag+i word JJ keyNNSzGNNMb@JJ333333?NNP!rhi+1 suffix pwaDTMbXٿWDT rhINuV?i-1 tag+i word VBD brieflyNN9v?RBSV-JJ= ףp=RBsh|?ſ i-1 tag+i word JJR directionlessJJ$C?NN$Cۿi-1 tag+i word JJ issueVBx޿NNx?i+2 word jazzyJJZd;@NNZd;i-1 tag+i word , dataproductsVBZ/$NNPS)\(?PRPZd;NNPV-?i+1 word hastyDTffffffWDTZd;O׿INV-?i-1 tag+i word NNP stennettNNPSClNNPCl? i word stripNNS5^I NNM?JJCl߿NNPV-?i-1 tag+i word IN pretoriaNNjt?NNPjti-1 suffix stoNNPSmNNPm?i-1 tag+i word DT earthNNMbX9?JJV-NNP\(\? i+2 word iveyNNS㥛 NNP㥛 ?i word dynamicJJzG?VBNlNN$C˿i-1 tag+i word , guysNNSffffff?UH#~jNNT㥛 пi-2 word confirmingVBN/$?VBD/$ i-1 word leadVBX9vRBq= ףpݿNNS㥛?JJ333333?NNS+?NNP333333i word syndicatedVBN{Gz?JJ rhVBD1Zdi-1 tag+i word , perestroikaNNX9vFWX9v?i-1 word aloneVBDy&1VBZ'1ZVBZd;?VBPZd;?i+2 word falseVBGV-JJV-?i+1 word month JJRZd;VBPnPRPI +޿INMbXVBG)\@JJw/?NNd;OCDMbX?RBT㥛 i-1 word eventsVB~jtNN'1Z?JJRVBPQWDT(\?JJn?IN(\i word representedVBNL7A`?JJClVBDX9vi-1 tag+i word VBN twistedJJQ?RB+VBNOni-2 word shirtsVBRQVBPMbpNNMb?JJ)\(i+1 word lawyerPRPʡEPRP$ʡE?JJ7A`?NNx&1CDI +?i+1 suffix tasVBPffffffNNffffff?i-2 word companyJJS㥻NNSZd;NNP;OnRBR&1IN= ףp=ʿFW?5^I VBPZd;?VBDX9v?VB ףp= ?CC/$VBGoʡ?NNMb@JJR#~j?RP-?RBSJ +?WPʡEֿVBZmDTʡE?RB'1Z?JJSjtVBNX9v WDTjti+2 word wannaVBPw/NNPw/@i+2 word howickPDTK7VBDK7?i word apparentNN|?5^RBHzGVBN"~JJET@i-1 suffix sal VBDV-RBR`"οVBZp= ף?RB~jt?VBNMbX?WDT-JJS㥻?INE?NNS rhNNP%C?NN5^I  i+2 word principlesVBPV-?VBNClѿVBDli-1 tag+i word TO rapidVBv/JJv/? i word avertsVBZy&1?NNSy&1i-1 tag+i word -START- payingVBGףp= ?NNPףp= i-1 tag+i word `` invariablyNNA`"NNP-RBV-?i+1 word adventDTFxINFx?i word basemanVBNoʡNNoʡ?i+2 word cerealsWDT&1ʿIN&1?i-1 tag+i word -START- uncNNPCl?RBCli word skepticismNN-?RB-i-1 tag+i word VB reportingNN}?5^I?JJ;OnIN i+2 word burtVBDw/VBNw/?i+2 word annuityVBZNNP?i-2 word naviesDT"~j?PDT"~ji+2 word viaductJJB`"NNSտNNPffffff?i-1 tag+i word , releasedVBN7A`@VBD7A`i word halfheartedVBNJJ?i-1 tag+i word JJ ingredientNNʡE?JJʡEi+2 word wantingNNSbX9?NNbX9i-1 tag+i word IN tabloidJJMbX9?NNMbX9i tag+i-2 tag JJR RB VB~jtÿVBG|?5^INlNNSrh|VBZ-?NNPSuV?JJtV?NNB`"۹?RBRMb?VBNp= ףRBh|?5? i suffix tedVB?5^I JJ r@CC^I +UH|?5^VBZV-NN"~)RBRX9vIN5^I NNSjtCDK7AJJR7A`NNPmNNPS= ףp=VBDjtd2@VBN rhQ4@VBPX9vRBK i-1 word helpingIN|?5^VB|?5@RP#~jNNQVBNMbPRP#~j?JJZd;Oi-1 tag+i word POS hearingsNNS ףp= ?NN ףp= i-1 tag+i word NN softenedJJ-?NN-i-1 tag+i word : earlyJJ~jt?RB~jt i word pullVBT㥛 ?NNSKNN!rhi-1 tag+i word JJ biddingVBG +?JJQ?NNMbi+1 word goldscheiderNNPSZd;ONNPZd;O?i-1 tag+i word RB increasesVBZK7?NNSK7i-1 word democracyJJRQ?RBRQi-1 tag+i word VB pretrialJJI +?NNI +i+1 word spokeswomanNNX9vNNPX9v?i-1 tag+i word DT copperJJR(\NN(\?i-1 tag+i word VBG reasonableJJMb?NNMb i word ratsNNS(\?NN(\ؿi-1 tag+i word DT lachesNNS}?5^IԿNN}?5^I?i+2 word clampingJJ!rhNN!rh?i-1 tag+i word JJR costVBNMbؿNNMb?i+2 word thumbNNS+NN+?i+2 word governmentsVBQ?VBPQi-1 tag+i word VBG pistolNN`"?NNS`"ο i+2 word tireRPffffffJJffffff?i word beggingVBGQ?NNQi-2 word difficultyINClVBG-?NN-RBCl?i+1 word readingJJS㥛?VBNS㥛i+1 word barriersNN;OnNNPX9vVBx?JJCl@i+1 word deservesNN rh?JJ`"NNPMb?i-1 tag+i word RBR interestedVBN|?5^?VBD|?5^i-2 word honeyVBD{GzNNP5^I NNPS5^I ?VBN{Gz?i-2 word risenVB rhRB rh?JJV-IN5^I ?i-1 tag+i word JJR crowdedVBNʡE?JJʡEi-2 word metromediaINףp= VBNףp= ?i+2 word increases VBNV-WDT{Gz?RBA`"?JJRrh|VBZCl?NNSFxVBGx&?JJp= ף?NNx&VBDRQ?RBRrh|?IN{Gzi+2 word terminalNNCl绿VBDʡEINʡE?JJCl?i-1 tag+i word CC sushiNNSd;OVBNʡENNʡE?i word congoleseNNPFxJJFx?i-2 word differentlyVBZS㥛?NNSS㥛i-1 tag+i word IN timberlandNNGz?JJGzi-1 word conclusivelyDT(\IN(\? i suffix ortNN%C @VBMbX9@NNPSuVVBGjt޿RB&1@VBZRQNNPv/@JJX9vVBN`"JJR +ֿNNSS㥛DVBDSVBPOn?IN(\i+1 word acresCDsh|??VBG= ףp=JJFxɿNNPSi word grandioseJJv/?NNv/i-1 suffix eadVBQ?VBNxJJ;OnRP +޿FWHzGٿWDTS㥫?PRP$-?NNPT㥛 RB;On¿RBRZd;O?INm?VBGMb?VBZQNNPS"~?NNT㥛 ?VBDQ?NNS+VBP-?PRP-JJR+ǿi+1 word registrationsNNX9v?JJX9vi-1 tag+i word DT lingeringVBG"~?JJvNNh|?5i-2 word exhaledNNOnCDOn? i+2 word zsaVBDzG?RPn?VBNzGRBni word pronouncedVBNNbX9JJNbX9?i+2 word measurementVBOnVBPp= ףпNNP1Zd?i-1 tag+i word DT veteransNNPS(\?NNP(\ݿ i suffix reyNNKNNPK?i+1 word engelkenNNRQINZd;ONNPV-?i word flounderVBzG?NNzGi+2 word executeVBDy&1DTFxVBNy&1?RBFx?i-2 word germany NNPSDlѿNN`"?VBDMb`?PDTV-ϿNNPx&?JJ/$?VBN~jt?RBףp= DT/$ i suffix eleNNSn?NNK7A`NNP? i word hopedVBZZd;ONNSףp= VBNV-ҿJJuVVBDm@i-1 tag+i word RB bringVBPHzG?VBGHzGi-1 tag+i word VB lowerNNh|?5JJR\(\?RBV-VBNMRBR$C@i word phoenixNNSSRB{GzNN)\(NNPCl?i word flightsRBuVVBClNNSK7@NNxi-1 tag+i word JJ outflowsNNS)\(?VBZ)\(i-1 tag+i word WRB aetnaRBx&1NNPx&1? i word dietNNPSnJJ rhNNQۿNNP(\?i-1 tag+i word CD basketballJJx&1VBPClǿNNQ?i-1 tag+i word `` ratherDTK7ѿRBFx?NNPV-i-1 tag+i word PRP$ purpleNNClJJCl?i-1 word stickingRP|?5^?RB|?5^!i-1 tag+i word -START- concerningVBG㥛 ?NN㥛 i+2 word shortstopDTV-VBNV-?i word assortmentNNm?JJmi-1 word owingsNNPS(\NNP(\?i-1 tag+i word NNP launchVBZ\(\׿NN\(\? i suffix ets NNS r-@NNPVB\(\RB/$INEVBZ$C @CD+VBPK7ADTZd;NNPS;O@JJFxNNw/"VBDZd; i word summitNN/$@JJJ +INClVB`"NNS7A`ҿ i word desINK׿VBZoʡNNST㥛 NNPv/@NN ףp= ߿VBDOnFW?5^I ?JJNbX9i word whipsawedVB rhVBN!rh?JJx&i-2 word unusedVBPV-?JJV-i-1 tag+i word DT deepJJ#~j?NNuVNNSQ޿i-1 tag+i word VBD offsettingVBGK7?JJK7i-1 tag+i word IN chromosomesNNS= ףp=?NN= ףp=i-2 word generallyNNP5^I ?NNbX9JJSxRBSM?JJ5^I ۿIN{Gz?DT{Gzi-2 word portionNN~jt?JJ5^I FWL7A`i tag+i-2 tag MD CCRBh|?5ֿNNzG?RBRI +JJINPnNNSjt?VBA`"? i-1 word allRPRQNNPq= ףpVB ףp= VBG}?5^IVBNV-?VBPq= ףp@WDTClIN~jt?NNST㥛 NNK VBDDl@PRP\(\RBK?NNPSE?JJK7JJRxDTMbX9? i-1 word legVBZK?NNSKi-1 word intercompanyNNCl?JJCli word bankingJJ!rh NNPV-VBGS㥛NNS㥛@ i word sofasNNSx&1?NNx&1i-1 tag+i word NN soughtNNMbXVBNMbX? i suffix rneVBDClVBN$C?UH`"JJh|?@NNSmNNP`"NNPS rhNNZd;Oǿ i word fewestJJSv/?NNv/i-2 word populatingJJn?NNn i word electVBPw/?VBDw/i-1 tag+i word RB hireVBx&1?VBPx&1i word lightningNN$C?JJ$Ci-1 tag+i word CC opiumNNB`"?JJB`"i-1 suffix cawJJʡEտNNPʡE?i+2 word travelingNN r?NNP ri word simplifiedVBNZd;O?JJZd;Oi-1 tag+i word POS minuteJJS?NNSi-1 tag+i word VBZ investedVBNK?JJKi+1 word baseballJJʡE@DTˡE?NNʡERBˡEi-1 tag+i word NNS aloneNNS/$RBB`"?NN)\(i+1 word palaceNNPS'1ZԿJJZd;NNP`"?i-1 tag+i word NNP rainNNP+NN+?i+1 word ideasJJJ +VBPMbpJJSK7?i-1 word driftingRPʡERBʡE?i-2 word started NNPˡENNPSˡE?VBDxֿRB1ZdӿNNL7A`?VBNv/IN1Zd?RPK7VB{Gz?VBG@JJjt i suffix 170CD/$?JJ/$i-1 word control NNPSI +VBP/$?VBZQ?NNP r?VB= ףp=NNZd;JJtV?NNSV-VBG333333?i-2 word syndicatorVBGoʡNNoʡ?i-1 tag+i word TO understandVB(\?NN(\¿i-1 tag+i word NNS closeRBQ8@NN +VBDDlVBPv/JJ\(\VBX9vi-1 tag+i word IN fuelNN'1Z?RB'1Zi-1 tag+i word VBN passedVBNA`"?JJA`"i-1 word commerceVBDQ?VBNQѿi+2 word assetVBDZd;OݿVBNZd;O?JJy&1NNS}?5^I?RBy&1?NN}?5^Ii+2 word ostensiblyJJ#~jNNP#~j? i+2 word ownJJMbX?VBG/$?NN\(\׿RBRJ +VBD= ףp=VBP;On?PRPK7A?INuVտDTˡENNPSvRP$C?VBNE?WDT&1CDNNSx&1VBZ!rh?JJRJ +?VBK7@RBbX9NNPS㥛?i-1 tag+i word VBG tallJJ ףp= ?NN ףp= i-1 tag+i word NNP expressNN/$NNP/$?i+2 word paralyzedVBZSVBDS?i-1 tag+i word DT sleekJJQ?NNQi-1 word innovativeNN~jtNNS~jt?i-1 tag+i word NNS awaitVBZmVBPm? i word streakNNX9v?VBDX9vi-1 tag+i word PRP attachesVBZPn?VBDPni+2 word duelsVBP}?5^I?JJ}?5^Ii word italianateJJx&1?NNK7NNPCli-1 tag+i word CC acceptedVBN"~j̿VBD"~j? i-2 word wadJJK7ANNPK7A?i-1 tag+i word , failedVBN rhJJZd;VBDPn@i+1 word descentJJGz?NNL7A`尿NNPGzVBGL7A`?i-2 word fussesJJRQINRQ? i suffix DESJJNbX9NN ףp= ߿NNP&1?i word leatherNN}?5^I@JJRmRB\(\߿INSi+1 word masterfullyRBROn?JJROni word arousedJJ;OnVBDZd;O?VBNy&1i-1 tag+i word NN schizophreniaNNy&1?FWy&1i-1 tag+i word NNP gardenNNQοNNPQ?i-1 tag+i word -START- savingsNNPS333333NNS333333?i word darwinianJJ r?NNP ri-1 tag+i word IN bleakJJ'1Z?NN'1ZԿi-1 tag+i word WDT struckJJR/$VBD/$?i-1 word firms VBDA`"?RBRZd;OWDT|?5^?IN7A`?DT|?5^VBOn@RB+VBNZd;OVBPT㥛 @JJX9v?NN-PDTSi-1 tag+i word DT naggingVBG333333JJx&?NNCl i suffix pon VB/$RP(\?RBK7?NNS㥛?CDK7A`տVBPK7A`INʡE@NNS}?5^IVBNSJJ(\ VBZK7A`տNNPK7A`i+1 word drivesJJy&1ܿNN~jtJJRB`"?WDTˡE?RBˡEINʡEDTMbؿ i word countyNN"~?JJ"~i word subjectsNNSCl?NNCli-1 tag+i word VBP eatingVBGsh|??JJsh|?i-1 tag+i word RBS onlyRBx&1?JJx&1i word affiliateVBvNN)\@JJK7i-1 tag+i word CD lindenNNK7A`?JJK7A`i+2 word conversationsVBK7ɿRBK7?i+1 word pensionVBK7?NNMbVBNHzG@JJjtVBZtV?NNStVi+1 word nekoosaDTV-VBP^I +INV-?VBD^I +?i-1 tag+i word JJ sandNNSSNNS?i-2 word popularityJJK7A`տVBNy&1?NNSi-1 tag+i word MD figureVB/$?NN/$i-1 tag+i word NNPS getNNPʡEVBPʡE? i+1 word gemsNNS{GzJJ?NNZd;Oi-2 word soughtNN/$@NNSv/?RBGz߿JJQVBN/$ i suffix huaJJENN/$NNP|?5^@RBSQNNSQi-1 tag+i word TO hedgeVBPn?JJPni-1 tag+i word DT oughtJJ~jtMD~jt?i-1 tag+i word RB headedVBN㥛 ?VBD㥛 ڿ i suffix choVBZ%CNNSmNNPzG?RBzGNNmVBN-VBPNbX9?JJx&1@ i suffix gthNNS7A`NNI +?JJh|?5i+1 word placeVBDV-JJV- @CDʡEi+2 word manufactureTOK7NNK7?i-1 tag+i word NNS acceptVB%CVBPMbX@INK7Ai-1 tag+i word IN prospectsVBPxNNSx?i-1 tag+i word POS accordNNMbX9?FWMbX9i+1 word blanketedNNSJ +NNPJ +?i-1 tag+i word JJ servantsNNSV-?JJV-i word lurchingNNp= ףVBGp= ף?i+2 word benefitVB5^I ?VBPOnNNFxi-2 word whicheverRBd;O?JJd;Oi tag+i-2 tag RB VBGVBZ(\ݿDTClVBDףp= JJQNN&1INGz׿RBRl?VBNGz@WDT= ףp=?PRPSVBGd;O?RBx?VBP(\ڿJJR{GzNNSZd;OVB-?i-1 tag+i word VBZ hardPRPClRBtVVBNK7JJ$C@JJS+i-2 word autonomyJJ?NNi+2 word russiansNNPSzG?NNPzGi-1 tag+i word JJ dealershipsNNS{Gz?NN{GzԿi-1 tag+i word TO evaluateVBV-?NNV- i word cuckooNNQ@NNPQi+1 word exhibitionsVB"~ʿNN"~?i-1 tag+i word IN surplusNN r@JJ ri-2 word financing VBbX9RB+NNQVBN9vڿINrh|?NNS(\?VBG+?VBDl?CCZd;O?RBR/$VBPx&1?JJ/$DT9v?i-1 tag+i word DT kgbNN/$NNP/$?i-1 tag+i word IN phonyJJM?NNMi+1 suffix ilkJJR ףp= @NNZd;OVBDZd;JJ7A`ҿi-1 word percentageVBZK7NNSK7?NNףp= ?JJףp= NNPףp= i-1 tag+i word IN framatomeNN ףp= NNP ףp= ?i-1 tag+i word NNS stemmedVBN rhVBD rh@i word affirmativeJJl?VBN/$NNʡEi-1 tag+i word , takeVB\(\VBPv@RBRQJJK7A`ſi-1 tag+i word NNP soxNNPS+?NNP+i+2 word lowerNNPS1ZdNN`"?VBNQ뱿INx&?NNPnVBDQ?JJR9vRBQտVBZʡENNSʡE?RPMbX9ԿCDV-?JJRBRM @VBP333333? i+2 word themRB|?5^JJR;On?DTV-?VBˡE?JJSFx?VBPzG?INVBZSNN-?CD{GzVBNV-?WDT ףp= ?NNS/$?MDRQ?VBGzGڿJJ-ۿVBDd;ORBSFxi tag+i-2 tag RBR FWNNPףp= NNPSףp= ?i-2 word grainsNN"~NNPClNNPSL7A`NNSףp= @ i word humRBRK7NNK7?i-1 tag+i word NNS ownedVBN?VBDɿ i+2 word haveWDTI +VBZ(\VB+CDK?JJ+PRP|?5^?MDQѿNNPSE?VBG(\@VBDףp= VBN333333@WPQ?NN$C?PDTʡEÿRBS7A`RBRK7INL7A`堿JJSRQ?JJRDl?VBP\(\?DTZd;ORP+RBZd;@NNS+?NNP?5^I i word mudNNSClNNCl?i-1 word maximumIN㥛 VBZ'1ZNNS'1Z?JJp= ף?NNd;O i word baringVBGS㥛NNPS㥛?i+1 word costs VBI +@NNSA`"VBN ףp= ?VBG)\(ܿRBZd;NNDl)@VBDV-JJRGzCDX9vWDTʡE?JJMbX9INʡENNP%C̿i-1 word workersVBZ-NNSCl?VBMbX?VBG-?RBʡENNRQVBPv/JJMb@i word inconvenientJJ-?NN-˿i word speedingJJ`"?NNd;O?VBGT㥛 i-1 word spectacularNNuVݿNNPuV?i+1 word trainsJJ"~j?NNjtܿNNP1Zdi word beamingVBGd;O?NNd;Oi-1 tag+i word RB rewrappedVBNʡENNp= ף@VBDjti-2 word takeoversCD/$@JJx&NNPn i suffix nnyNNSQVBN㥛 NNX9vJJ^I +@i+1 word plentyVBDFx@VBZ r?VBPClVBNZd;POS ri word exercisesNNS?JJi-1 tag+i word -START- egadNNPQ롿NNSDlUH~jt?NNNbX9i-1 word economy JJGz?RB)\(?DTQVBNZd;VBP$C?WDTQ?INMbX9?VBX9vVBGffffff?NNSVBDPn?VBZq= ףp?NNSףp= i-1 tag+i word VB no.NNQ?RBh|?5JJoʡi+1 word intactRBMVBZS?VBGM?NNMbVBDoʡ?VBNMbX?VBPn i suffix irtVBPV-NNS9vڿNNsh|?@JJ#~ji-2 word favoredJJ?NNܿi-1 tag+i word -START- wilburJJ?5^I NNP?5^I ?i-1 tag+i word -START- goldenNNOnJJvNNPJ +?i-2 word illustrateVBG-?NNS/$?NN-RB/$i word purchasedVBNMb?JJS㥛VBD&1? i word xeroxDTtVNNSnJJtVNNrh|NNPd;O @i word surfacedVBNDlѿJJL7A`VBD-@i+2 word intangibleRBRl?RB$CJJRZd;Oi-1 tag+i word NNP cabVBZ㥛 NN㥛 ?i-1 word declaratoryNNV-?JJV-i-1 word walkingIN+VBZ!rhNNSv/?NNP/$RPx@RBn?NNjtJJffffffi-1 tag+i word NNP carNNQοNNPQ?i-1 tag+i word IN monsoonNN`"?JJ`"i-1 word necksNNS|?5^VBNp= ף?VBDZd;Oi-2 word weisfieldVBNQJJ\(\VBD)\(@i-1 tag+i word DT probesNNSK?NNKi-1 word reserve NNJJ$CINHzGNNPS|?5^?VBD$C?WDTx&?DTA`"?NNSJ +NNP|?5^? i+1 word tiedVBGbX9NNK7JJKNNP= ףp=@NNSoʡ?i+1 word generateVBZ rhNNS rh?i-1 tag+i word NN responsesVBPNNS?i-1 word demand VBDOn?VBNOnۿVBPV-?WDT&1INjt?VBGffffff?NN#~jVBZ rh?DTX9vNNS rhVB+JJ+?i-1 word headquartersVBGx&1NNx&1@i-1 tag+i word : thoughWDTSINS?i word rationaleNNDl?JJDl i-1 word signNNPSRPn?RBn?NN{GzWDT rhJJKIN rh?VBG{Gz?i-1 tag+i word JJ turbulentJJ-?NN-i-1 tag+i word DT grimNN9vJJ9v?i+2 word austereVBZ rh@POS rhJJm?VBNmi-1 tag+i word -START- trompeNNPrh|PRP$tVFWx?i-1 tag+i word VBD onceVBGV-RB+?INrh|i tag+i-2 tag RBR VBVBMbXJJq= ףpNN/$?VBNNbX9RBZd;ϿIN(\?i+1 word mccarthyJJFxNNPFx?i-1 tag+i word RBR intimidatingVBG rh?JJ rhտi+2 word reachedVBJ +VBGS㥛NNK?VBD}?5^IJJ\(\߿NNPd;O@ i suffix piaVBZB`"NNB`"?i-2 word stanzaVBP}?5^I?NNQRBQ?VBD~jtVB= ףp=ҿi-2 word spendsNNSCl?JJCli+1 word messagesVBPDlJJM?VBD{Gzi-1 tag+i word , churchNNPClNNCl?i word sendingVBG(\µ?JJ(\µ i pref1 yCCv@WDT rhPRP ףp= @RB#~j@NNPd;OUH㥛 @RP9v?NNPS/$NNSMbX?VBNMbVBPx&1VBGZd;OVB/$?FW/$INZd;OVBZoʡNN@VBD;OnJJSy&1?JJR(\@JJEi tag+i-2 tag PRP$ DTNNX9v@JJX9vi word groceryNNZd;O?NNSZd;Oi-1 tag+i word JJ diggingVBGQNNQ? i suffix alk VBNx&1VBP/$@VBZNNPClNN|?5^ @VBDSPRP$PnNNSL7A`VBmR@JJJ +i-1 tag+i word VBN correctNNSKǿVBNV-JJFx?i-1 tag+i word DT seasNN\(\׿NNSbX9?JJSi-1 word subsidenceWDTQ?INQi+2 word facilitiesVBPGzNN~jt@JJRK7A`JJZd;ORBRK7A`?i-1 tag+i word JJ leadNN+?JJ+i-1 tag+i word RB changesVBPNNS?i word mufflerNNzG?JJzG i suffix NorNNffffffCDJ +CCsh|@NNPlWPףp= i-1 tag+i word DT bondedNN/$VBN/$?i word reprintedVBNI +?JJI +i word coolingVBGV-ݿNNV-?i-2 word projectingVBNn?JJn i suffix BowJJ+NNP+?i-2 word phonyWDTtVINtV?i-1 tag+i word NNPS comeVBZd;߿VBPʡEVBNS?i-2 word designationVBD#~jԿVBN#~j?i-1 tag+i word CC designsVBZsh|??NNS~jtNN ףp= i-1 suffix pt.JJ?5^I ҿNNP?5^I ? i-2 word timeNNw/JJS5^I ?VBPI +ֿWDTl?INp= ףVBoʡ?RBCl@NNSn?NNPS~jt?RP(\ҿVBGn?NNP{GzVBNV-?JJQ?JJRx&PRPʡEDTjtƿVBZT㥛 VBD?5^I RBSS㥛Կi word markingVBGMb?NNMb i-2 word lacNNNNP? i word blurryJJS?NNSտi+2 word primarilyNNPS{Gz?NNP{Gz i-2 word blueVB㥛 JJ㥛 ?i-1 tag+i word RBR weightNN9v?JJ9vڿi word prettierJJRy&1?RBy&1̿i-1 tag+i word PRP leadJJMbпVBPMb?i word paranoidJJB`"?NNB`" i+1 word jDTB`"NN%CNNP333333?i-2 word bataanRBK7?VBDK7i+1 word garageJJClNNCl?i+1 word quebecorVBDffffff?VBN)\(WDTI +RBh|?5INh|?5DT|?5^?VBh|?5?NNQi-1 tag+i word CC closedVBN|?5^VBD|?5^?i-1 tag+i word VBZ onlyRBuV@VBNV-JJMbi-1 word millionNNPS{Gz?RBR)\(VBNv/WDTERBS㥛?INK7?DTS?NNw/?CC"~FWFx?JJSQRP9vCD&1JJS@VBDsh|?ݿNNSZd;NNPS㥛?VBG"~VBPxֿVBZxJJR@i-1 tag+i word NNP confirmedVBNGzVBDGz?i-2 word purchasesRBRQȿNNPK7A`?JJ&1INRQ?VBNp= ףi-1 word automotiveNNS +NN|?5^?JJ|?5^NNP-˿NNPSRQ?i word existentJJZd;O?NNZd;O i suffix AlJJ+NNP+?i-1 tag+i word DT releaseVBGףp= NNS?JJ7A`i word maharajahsJJxNNˡEԿFW-NNSx&1? i+1 word fccJJv/RBRd;ORP5^I JJRV-@i-1 tag+i word `` ladderedVBNQJJQ?i+1 word allegationsJJOn@NN rhVBDQi-1 tag+i word JJ juncturesNNS#~j?NN#~ji+2 word beneficialNNPSnNNPn? i suffix hoeNNS +NNq= ףp?JJx&1 i suffix CAANNPSV-ͿRB'1ZNNPS?i+1 word closelyVBMbX9VBDDlRBR1Zd?VBNDl?JJRbX9NNS r?i-1 tag+i word DT executiveJJrh|?NNVBNV-i-1 word geneticNNPSlNNS(\?NN(\?JJh|?5NNPMbi word prematureJJ)\(@VBPzGڿNNq= ףpRBRQi-1 tag+i word VBZ slowedVBNX9v?JJX9vi-2 word outputJJ rh?NN rh i word judyNNPRQ?NNRQi+1 word details RBRQVBNQӿNNP333333VBDQ?RPQ?JJ}?5^INNZd;O?JJR|?5^@RBK7INQVBZv/VBK7? i-1 tag+i word NNP organizationsNNPSzG?NNPzGi-1 tag+i word CC patientJJS@NNSi+1 word existVBNʡE?JJRSVBP5^I ?JJ9vNNS ףp= @NNPKVBDʡEi-1 tag+i word NN midwayCCT㥛 NNSK7A`NNn?i-1 tag+i word , blacksVBZ/$NNS/$?i-1 tag+i word NN gasesVBZ?5^I NNS?5^I ?i-1 tag+i word VBZ laterRBR'1ZRBRQ@JJR~jti-2 word financiallyVBZ/$?VB}?5^I?VBP}?5^IIN/$i-1 tag+i word DT merrillJJV-NNPV-? i+2 word hangNNp= ף?VBDMVBZd;@VBP)\(VBGp= ףi-1 tag+i word VB monthlyJJJ +RB rh?NNSGzi-1 tag+i word DT embattledVBNnJJn?i-1 tag+i word DT outcryNNjt?JJjti+1 word pharmaceuticalJJK?NNPKi+2 word researchersRBOnÿVBNMb?VBPʡEJJMbIN\(\?NNP7A`NNPS7A`?i-1 tag+i word VB thrivingVBGy&1?JJy&1i-1 tag+i word VB constructedVBNX9v?JJX9vi-1 tag+i word NNP bumpersNNPSA`"NNPA`"?i-1 tag+i word NNS surgingVBGd;O?VBDd;O޿ i suffix yalNNPPnNNPSKNNSGzJJK7@NNJ +?i-1 tag+i word VB twentyJJx&NN+CD%C? i-1 word addsRPHzG@DTMbWDT"~ʿRBMbIN#~jԿi-1 word institutNNPE?NNPSEi+2 word snowbirdsVBGOnNNOn?i-2 word conductFW~jt?JJQ?NNQNNP~jti-1 tag+i word `` lostJJSJ +VBNJ +?i-1 tag+i word , hardenedVBN/$?VBD/$i-1 tag+i word NNP triggeredJJףp= ۿVBDףp= ?i-1 tag+i word NNP travelNNL7A`堿NNPl?VBPˡEi word municipalsNNS\(\?NNP\(\i-1 tag+i word DT cadillacJJ/$NNNbX9ȿNNP333333? i+1 word sheaNN= ףp=NNP= ףp=?i-1 tag+i word -START- allanRB\(\NNP\(\? i-1 word mercVBZV-?POSZd;ORBL7A`?JJL7A`VBDL7A`?i+2 word shortingVBNh|?5?JJh|?5޿i+2 word rebelsJJK7A?NNPK7Ai-1 suffix uct VB9v?NNn?VBDEVBN|?5^?VBPA`"JJ= ףp=?VBZ/$?VBGʡEWDTZd;O?INZd;ONNS㥛 ?i-1 tag+i word NN shortNNd;ORBI +޿JJ#~j @NNS"~i-1 tag+i word JJ embodyVBPrh|?RBףp= NNA`"i+1 word hostageVBNOn?JJOnۿi word storiesVBZHzGNNSHzG?i-1 tag+i word -START- mccawVBN|?5^NNq= ףpNNPM?i-1 tag+i word NN networksNNSʡE?NN(\VBZDli-1 tag+i word JJ securityJJ/$NNh|?5ֿNNPT㥛 ?i-1 tag+i word WDT whatVBP'1ZWP'1Z? i word oliverVB ףp= NNClNNP;On?i-1 suffix etoRBRZd;ORB/$?JJR +i-1 tag+i word JJS upbeatNN9v?JJ9vҿi-1 tag+i word TO sparkVB~jt?NN~jti-1 tag+i word DT calculatedJJK7@VBNlNNʡEݿi-1 tag+i word PRP changedVBNHzGVBDHzG?i-1 tag+i word -START- rNN$CLS(\?SYMv/Ϳ i+2 word workNNP rh?VBZ~jtRP}?5^I?JJ rh?RBS{Gz?VBN|?5^JJRffffffINxNNSS?VBV-?NNX9v?VBD+ÿFWʡE?JJS{GzEX㥛 RB-PDTK7A?VBP'1ZܿVBG/$?DT5^I ۿi-1 tag+i word TO unchangingVBGT㥛 JJT㥛 ?i word chapterVBMbXJJx&1NN\( @JJRI +RB ףp= NNP'1Z i-1 tag+i word JJ notesVBZʡENNPSZd;NNS|?5^@NNSi-2 word orangeVBNʡEVBDʡE?"i-1 tag+i word -START- oppenheimerNN"~ڿNNPv?JJ(\i-2 word clydeNNNNP?i+1 word impressVBSRBS?i-1 word cairoJJPn?NNPn i word livedVBN9vVBD9v@i-2 word mustardVBK7NNSSNNE@JJni-1 word incompatibleNNS|?5^?NN|?5^i word standbyJJ/$?NN/$i-1 tag+i word NNS explodedVBNʡEVBDʡE?i-2 word barelyRBV-@NNzGJJI +i-1 word annuityNNNNP?i-2 word multipartyVBZd;OVBPZd;O? i-2 word orDTffffff?RBx&1ؿCDʡE@INm?VBG/$ѿVBDFx VBN`"@FW/$CCCl?UHzGڿWDTS?NNSNNS^I +?VBmPDTRBRp= ףJJRjt?VBP}?5^IJJM?VBZ?5^I RP r@NNPh|?5NNPSE? i word naomiNNbX9NNPbX9?i-1 word frontalNNE?JJ-޿NNPtV i-2 word draw PRP$ˡEĿJJSNbX9?JJR= ףp=ҿRBR= ףp=?WDTS㥛?INS㥛пNNGzRBSNbX9PRPX9v?i word attractRPx&1DTףp= JJˡEVBZvVBʡE@ i suffix dedPDTJJK7@VBDzG3@VBP +YIN1ZdVB333333FWx&RBQkPRP$\(\RPX9vVBZ rVBNx&1h1@RBRNNS~jNNPZd;ONN r&i+1 word propyleneNNSK7?NNK7i-1 word continualVBPx&NNSx&?i-2 word votersNNS/$@NNP/$i-1 tag+i word DT buyingVBG~jtпJJjt?NNZd;i-1 tag+i word JJ bullishJJCl?NNCli-1 tag+i word IN aggravatingVBG9v?JJ9vڿi+2 word punitiveRPV-?INV-i-1 word presidentialNNS;On?NNQ?JJvi+1 word overhangNN?JJؿi+1 word apologistsJJx?NNPxֿi+2 word heatersNNSp= ףؿJJ r@NNx&1VBNsh|? i word cheekNNSV-NNV-?i word compelledVBN}?5^I?JJRVBD~jt i+2 word spurNN/$?JJ/$ i suffix ICANNPX9v?NNPSX9vi-1 word conservativeVBDKJJRHzG?JJ)\(?NNSʡENNP$CNNPS?5^I ?NN7A`i+2 word behindNNffffff @JJSQVBN/$?PRPV-ڿJJ&1PRP$V-?NNPSQVBG㥛 i word theirNN"~VB1ZdJJS㥛VBZZd;DTSNNPClPRP$v@i-2 word wardensNN(\?RB(\ i+2 word must VBZHzGDT333333?NNS(\NNPSˡE?NNjt?VBDbX9VBN~jt?VBPQ?JJV-@POSZd;?RBINEԸNNPy&1i-1 tag+i word IN breedingVBG㥛 ?NN㥛 i-1 tag+i word NNP avenueNNPSmNNPm? i word rageVBV-?NNV-i+2 word boiseNNPS rh?NNP rhi+1 word catchNNSCl?NNCli+1 word tuckerVBNB`"?VBDB`"i+1 word futures VBG?5^I ?POSnRBZd;NNPnʿVB"~ڿNNPSy&1JJQNN{Gz@WDT'1ZIN!rh?VBZq= ףp?DT1Zd?NNS|?5^i-1 tag+i word CC financingNNx?JJxi-1 tag+i word , limitedJJ r?VBD ri+1 word replaceVBS㥛RB rh?CCjti+1 word extractedNNSMbNN|?5^?NNP1Zd i suffix WPPNNPn?DT㥛 JJ/$ÿi+1 suffix monRBR r?RBMb?CDT㥛 ?VB"~?NNPS!rh?JJS= ףp=RBS= ףp=?VBNʡE NNPʡEVBPMbJJZd;?NNrh|?PDTx&1DTjtCC|?5^JJR rؿ i-1 word sdiJJ~jt?NN~jt!i-1 tag+i word -START- protectiveJJX9v?NNPX9vi-1 tag+i word NN architectureNNʡE?JJʡEӿi-1 tag+i word DT meantVBZRQؿJJMbX9NN$CVBD+@ i word ruleVBN-JJMbVB?NNV-@NNS!rh i suffix LANNNQ?NNPQi-1 tag+i word RB benignJJ1Zd?NN!rhRBV-ͿIN;Oni-1 tag+i word VBD pressNN/$?RB/$տi-1 tag+i word NNS pictureVBP%C?NN%Ci-1 tag+i word WDT perestrokiaVBZd;ONNd;O?i-1 tag+i word VBD overpricedVBNS?JJSۿi-1 tag+i word DT franchiseNNSClNNCl?i-1 word drasticallyVBZMb?JJV- NNSMbVBNQ?RBK@i+2 word radiosVBN5^I VBD5^I ?i+1 word commissionsVBNzG @JJRA`"?VBPuV?PRPV-JJGz NNQi-1 tag+i word , findingVBGh|?5?NNh|?5 i+2 word tell DTI +RBQNNw/VBDw/ܿRBSV-JJL7A`@INʡEVBn?RP(\@JJSV-?RBR}?5^IJJRX9v޿i+1 word rigidJJ^I +?NN^I +i-1 tag+i word RB touchRBSJJ7A`VBNHzGVBZd;?i+2 word nissan RBR~jtWDTMb?NNSClJJʡENN+?RBy&1?INzGҿDTZd;NNP rh? i-1 word most NNPٿVBffffff?RBx&1?NN+VBZK7ANNSE?JJHzG@INuVNNPSQ?VBGRQ VBDv/VBNrh|?VBPMbX9 @ i suffix hot RBp= ףVBZmJJ= ףp@VBDv?VBNNbX9@VBP^I +PRP'1ZVBtVNN(\NNS`"i tag+i-2 tag VBN CDRP)\(RB-?NN~jt?JJS㥛INL7A`пNNS~jt?i-1 tag+i word IN datapointNNPS/$NN{GzNNP/$?i-2 word violentJJw/?NNw/i-1 tag+i word VBN subjectVBN/$JJ/$?i+2 word mandateNNM?JJMi-1 tag+i word NNP changeNNzGNNPzG?i+1 word suspensionsNN~jt?JJ~jti-2 word maxwellNNA`"?RBA`"i-1 word advocatesVBP^I +?NN^I +i word clarifiesVBZ!rh?NNS!rhi-2 word pickingRPZd;JJK?NN1ZdFW`"ֿRBPn?IN\(\?DTGz?NNPGzi+2 word honoringNN ףp= ?JJ ףp= i-1 tag+i word NNS overcomesVBZV-?VBPV-i word handsomelyJJq= ףpRBq= ףp? i-2 word gdpRB+?IN+߿i-2 word jettyVBZQ?NNQi word oncogeneNN= ףp=?FW= ףp=i-1 tag+i word `` volumesVBZ^I +NNS^I +? i-1 tag+i word JJ appropriationsNNQNNSQ?i-1 word expects VBD%CIN"~?NNB`"?PDT$C?VBN|?5^RBSWPʡEֿNNSʡE?JJbX9?i+2 word viewpointNNPS(\?NNP(\пi-1 suffix wlyINX9vVBGSVBNQ@JJS?VBD/$i-1 tag+i word VBP raisedVBN?JJi+1 word rolesVBGjt?RBV-NNZd;OJJ~jt?i-2 word nicheJJRMbXNNMbX?i-1 tag+i word NN eliminatedVBNx&VBDx&? i-1 word dropRBQ?NN\(\?VBDMbX9@PDT/$?VBNFxJJQINMbXDT/$i-1 tag+i word JJ breakthroughNNl?JJli-1 tag+i word POS sverdlovskJJ?5^I NNP?5^I ?i word reverseVBQ?VBPNNQ?JJR ףp= JJQֿi word financesVBZZd;?NNS(\?NNףp= NNPNbX9 i+2 word lipsVBףp= ?NNPףp= i-1 tag+i word -START- marathonNNP{Gz?NN{Gz i-1 tag VBDJJS/$?VBGPnWP+?VBZ}?5^INNSuV?RBSjt?JJh|?5?PRPuV?RBRm?WDT +RPx@CDJ +?NNPSSNNClNNP/$ @JJRx&1?UHNbX9?VBNw/?DT@VBFxCCQ?PDTjtRBjt?INMbPRP$(\VBDZd;OVBP33333FWvEXʡE? i suffix parINZd;?NNSZd;VBKRB1ZdNN(\?CDV-JJV-?i-1 tag+i word TO flingingVB;OnVBGM?NNh|?5i+2 word press RBA`"ӿINA`"?NNPoʡ?VBD/$?VBN/$NN!rhFWV-VBEԸ?JJ㥛 ?i-1 tag+i word DT arrestNNPMbJJS5^I NN@i+2 word talkingNNPKWPK?RPtV?RBtVi-1 word donutsPOS|?5^?''|?5^i+2 word plewsNNClNNPCl?i+1 word stoppedNNV-?INI +VBh|?5ֿVBP ףp= WDTI +?i-1 tag+i word -START- mexicanNNPS㥛?JJS㥛п i+1 word w.WRB7A`NNP7A`?i-1 tag+i word NN agreeVBMbX9?VBPQVBDMbi word openingVBGK7JJʡE?NNʡE @NNPQ i word stakesNNSp= #@VBN-RBGzNNPS ףp= ߿NNB`"i tag+i-2 tag IN EXVBZQ?VBQNN/$?JJ/$i-1 tag+i word NN crumbledVBN-ֿVBD-?i word frequencyNNSMNNM? i-2 word makeRBRMbX9?INOn?VBZףp= NNSx&1?RBjtCDX9v?VBx&1@JJSp= ף?NNP"~j?VBP'1ZWDT#~j?JJ1Zd˿NNV-?VBNHzG?RPMbNNPS{GzVBG$CVBD\(\RBSp= ףJJR"~ @i+1 word sensitivesNNRQ@JJRQi-2 word statusVBx&1?NNzGNNS1Zd?RBGz@JJA`" i suffix ukiJJ{GzNNP{Gz?i-2 word merksamerVBGENNE?i word disarrayNNSd;ONN㥛 @JJbX9VBDd;Oi-2 word normalVB(\JJRjtJJjt?VBD(\?i+2 word inhospitableVBZ^I +@POS^I +i-1 tag+i word NN athleticsNNS\(\?NN\(\i+2 word ralphVBDRQ?VBNRQJJZd;OݿNNPZd;O? i suffix fasNNSx&1?NNx&1 i suffix thy VBNSۿVBPQRBx&1NNP)\(VB^I +ǿJJh|?@NN(\VBZClNNS/$ i word lawJJ(\NNx&@NNPmi-2 word secondsNN^I +?VBG^I +߿i-1 tag+i word DT charmingNN/$VBGJJ/$?i-1 tag+i word DT labNNSʡENN|?5^?NNPʡEi-1 tag+i word IN siliconNNSB`"NNB`"?i+2 word chasingDTm?INmݿi-1 word adjustersVBI +VBPI +?i-1 tag+i word RB americanJJ}?5^I?NNP}?5^Ii-1 tag+i word NNS upINp= ף?RPI +RBrh|?VBDZd; i suffix dle VBCl @NNPSq= ףpJJA`Т@NN{GzVBNoʡVBPx&?NNSp= ףNNPˡE?RBRx&PRPvRBV-JJR~jti-1 tag+i word NN disturbsVBZ(\?VBD(\i-1 tag+i word TO confirmVBl?JJl i word followVBP^I +@JJL7A`INL7A`NNSSVBS㥛@NNq= ףpi-1 word sports RBR}?5^IVBPvNN r @VBN'1ZԿVBZZd;NNSx?NNP'1Z?VB\(\?VBDzGi+2 word interestsJJffffff@PRP/$ٿNN#~j?NNPX9v i word cuminNN rh?NNS rhi-1 word benefitsRB/$?INZd;JJZd;?VBDtVRBR/$ٿVBNtV?VBPd;Oi+1 word carmenVB+?NNP+i word smashingVBG/$ֿNN +?JJ9vi word packageVB?VBPK7ANNx&?JJ"~VBNѿ i word canalNNx?JJxi-1 tag+i word VBN maleJJK7ANNK7A?i-1 tag+i word , brusselsRBףp= NNPףp= ? i suffix tolNN`"?NNPMbX9?NNPSMbX9NNS`"ο i+2 word ownsNN~jtNNP+@DTx&1?VBPB`"ٿWDTx&1 i pref1 TPRPʡE?INZd;?WRBQCCX9vVBPNbX9?WDTK7A`NNT㥛 MDZd;OCDjt@NNPSNbX94@RBV-VBGy&1VBNjtTOp= ף?VBZMRBRV-VB%CԿNNP#~j(@JJV- VBDv NNSףp= DT1Zd@RPX9vLS`"JJR\(\UH= ףp=PRP$(\?FWףp= ?WP-i-2 word conformJJCl?NNPClٿ i word assistVBZd;@VBP&1PDTClNNV-#i-1 tag+i word -START- transactionsNNPS&1ڿNNS&1?i-1 tag+i word IN commentNN(\?JJ(\i-1 tag+i word -START- soichiroJJbX9ƿNNPbX9?i+2 word societyINHzG?WDTHzGJJX9v?NNQֿNNPvi+2 word thursdayJJZd;OͿNNPuVVBPENNL7A`?RBK?i-1 tag+i word : faceVBʡEVBP/$?NNM i word crowedVBGMbVBNX9v?VBDCli word recommendationsNNSRQ?NNRQi+1 word unsuccessfullyRBSVBDS?i word espressoNN{Gz?JJ{Gzi-2 word presumedVBOnNNMb?INuVi+2 word ineffectualVBDS?INSi-1 tag+i word TO streamlineVBQ?RBQi-1 tag+i word VB premiumNNy&1?JJy&1i-1 tag+i word WDT centersVBZʡE?NNSʡEi-1 word competitionVBZx&?VBoʡVBPQ?NNSx&VBDףp= i-1 word pandaNNPSˡE?NNPˡE i+1 word knowNNPSK7ٿNNSsh|?@JJjt NNl?VBNClǿi word counselingVBGS㥛NNS㥛?i-1 word predictionsIN$C?WDT$Ci-2 word henceJJzG?NNzGi+1 suffix oddVBGZd;O?JJZd;Oi-1 tag+i word JJ pactNNClNNPCl?i-1 suffix drsVBN{Gz?VBD{Gzi+1 suffix kesRB +VBPzGNNS~jt?VBRQؿNNCl?VBNnCDv/JJn?DTK7NNP'1Z?VBGX9vVBDCl?WDTn@VBZFxNNPSMbX?INKi-1 tag+i word NNP turnpikeNNPL7A`?VBP/$NN}?5^Ii-1 tag+i word VBZ flatJJZd;?NNZd; i word bothVB/$ JJJ +NNSDlNNP/$NNffffffIN;OnPDTMbX9@VBPX9vVBN#~jDT5^I ,@RPK7ACC?5^I@CDJ +?VBZ+VBDA`"JJRA`"i word unwittingVBG}?5^IJJ}?5^I?i-2 word suburbJJffffffNNP?VBGffffff? i word bulbNNSClѿNNCl?i+2 word reservedDTK7?PDTK7 i word eraNNPT㥛 NNPS/$NNI + @FWi-1 tag+i word , albertaNNPSB`"NNPB`"? i suffix ITENNP̿PRP$QIN7A`?RBzGi-1 tag+i word VBP besideVBzGҿRBjt?INni word attributesVBZd;O?NNSK7RB+i-1 tag+i word TO offerVB/$?NN/$ i word newDTrh|NNP&1JJw/@RBMCD^I +߿i-1 tag+i word -START- unocalNNS㥛NNPS㥛?i-1 tag+i word IN recipesNNSʡE?NNPʡEi-1 tag+i word VB luckyVBNV-JJV-?i-1 tag+i word TO prospectiveVBHzGJJHzG?i-1 tag+i word NN kingpinsVBZZd;ONNSZd;O?i-1 tag+i word RB regardedVBNSJJS?i-1 tag+i word JJ suspectsNNSRQVBZRQ?i-1 tag+i word NNP oughtNNX9vMD(\?PRP+i-1 tag+i word , boxyJJˡE?VBDˡEi+1 word voiceJJ+@VBNJ +NN#~jNNP5^I i-1 word peoplesNNSq= ףpտNNPMbpNNPSV-?POSMb?'')\(RB+i-1 tag+i word VB executiveVBClNNʡE?JJףp= ?i-2 word unifirstDT)\(?WDTGzINHzGٿi-2 word generatedNNSL7A`?NNx&1JJx&1?VBZL7A`堿i-1 tag+i word VBG publicVB/$NN?JJ+?i+2 word practicallyJJRK7?RBRK7i-1 tag+i word POS publicJJ{Gz@NN{Gzi word expectedVBRBZd;VBD{GzVBNS@VBPClJJMi-1 tag+i word JJ soilNNjt?JJjti-2 word economicsVBNq= ףpJJPnNNPtV@VBI +WRBSRB`"?NN^I +i-1 tag+i word : indicateVBDlVBPDl?i-1 tag+i word DT papersNNPS㥛 ҿNNS㥛 ?i-1 word signsVBP-WDT333333NN-?IN333333?i-1 tag+i word NN baseJJy&1NNGz?INKi+1 word proficientRBjt?NNPjti+1 word committedNN5^I ?VBN-?JJ5^I VBD-i+2 word dozenRBn@INʡERP/$ i word slopesVBZy&1?VBy&1i word populatedVBN&1JJ&1?i word feedingNNFx?JJFxi-1 tag+i word NN becauseNNSGzNNMbRBˡEINX9v>@i-1 word featuresVBPA`"?RB\(\JJxi+2 word perpetualJJX9v?NNKNNST㥛 ?i-2 word doubledVBN'1Z?VBD'1ZĿi-1 tag+i word CC submarineNNCl?JJCli-1 tag+i word RB likelyJJ(\ @VBNOnRBMbXNNP/$ӿi-1 tag+i word NNP dementiaNNS333333NN333333?i-1 tag+i word RB sayVBPˡEVBNV-JJy&1VBV-?i+2 word acquisitionsNN+VBNMbX9?JJMbX9VBZOnNNSMb@NNPSw/RBOn?i+2 word reactNNSL7A`?JJHzGٿRBK7Ai-1 tag+i word PRP$ endJJzG?NNzG i word fastRPJ +RBv@NNffffff VBDV-VBNL7A`JJK7A`?i-1 tag+i word PRP$ bloodNNSNbX9NNNbX9?i-1 tag+i word `` decentJJ+?NN+i-1 tag+i word WRB longJJZd;O?RBZd;Oi-1 word toweringVBN(\NN(\?i-1 tag+i word PRP insistsVBZT㥛 ?NNST㥛 i word hersNNPrh|ϿNNPS{GzNNSy&1JJCl@i-2 word withinVBGS?NNMbJJ|?5^?NNP㥛 NNPS1Zd?i-1 tag+i word -START- againRBw/@NNx&1пNNPMbX9ԿNNPSrh|NNS(\i-1 tag+i word IN advertisingVBGQNN ףp= @JJNNP5^I ?i+2 word recordkeepingVBPjt?NNjt i word stylesNNxNNSx?i-1 tag+i word NNP variesVBZQ?NNPSQտ i word gemsFWѿNNSV-?NNZd;Oi-2 word districtVBDSVB?JJS㥫NNM?i+1 word cardsPRP$V-?JJ|?5^?NN|?5^ҿPRPV-ǿi+1 word rebuildingWDT(\IN(\?i word impliedVBN ףp= ?JJ`"VBvi+1 word donnelleyCCSNNS?i-1 tag+i word RB occursVBZ rh?JJ rhi-1 tag+i word JJ incorporatesVBZv?NNSvi-1 word countersuitVBG&1?NN&1ҿi-1 tag+i word DT candlelightNN?5^I ?JJ?5^I i+1 suffix ualNNS!rhJJRlPRP$K7A`VBGL7A`@RBq= ףp?NNʡE POS/$?VBPv@IN'1ZCDI +?RBRl?VBNrh|?VBh|?5޿DTZd;VBZMڿPRPMbX9?VBD(\?NNPQUH rؿJJ`"?i-1 tag+i word NN engageVBB`"@VBPy&1ܿNNSDlNNCl i-1 word fbiNNPSʡERBʡE?i-1 tag+i word RB viewVB333333?RB333333i-1 tag+i word PRP offeringVBGT㥛 NNT㥛 ? i+2 word fitCD}?5^I?JJ|?5^?NNCli-1 tag+i word , tunaNN㥛 ?RBףp= INK7 i+2 word flyNNOn?VBD rh?PDT-VBP㥛 JJOnVBZI +NNSK7?VB㥛 ?i+2 word stressVBNK7?JJK7i-1 tag+i word JJ boomsNNSn?NNnѿi-1 tag+i word JJ pictureNN/$?JJ/$ i+1 word raidJJq= ףp@NNѿNNP{Gzi-1 word goalsVBN)\(?VBD-VBP%Ci-2 word waiverNNSv?NNvi-1 tag+i word CD tvNNClNNPCl@ i word buckVBDKVBx&1VBP(\@VBNPni+1 word dismalJJQVBZQ?i-1 tag+i word '' albeitVBZ~jtNNS'1ZNN'1ZINRQ@i-1 tag+i word DT governmentsetNNMbX9VBNJ +@JJCli word armoredNNPl?VBN|?5^JJ|?5^?VBDli-1 tag+i word VBN wellRB/$?NN/$i-1 tag+i word CC reachedVBN(\?VBD(\i-2 word leverageVBG +?NN +VBPZd;JJ333333VBZZd;?NNS333333?i+1 word competitivenessVBG/$?NN/$i-1 tag+i word NNS becomesVBZ333333?CC333333ۿi-1 tag+i word NNP riesNNPSuVNNPuV?i-1 tag+i word CC tiesVBZCl?VBX9vNNSMbi-2 word relationshipsNN}?5^I?VB/$VBPZd;Oi+1 word rescueNN rh?JJq= ףpNNPSۿi+1 word current POSGz?JJIN~jth?VBZ~jt?DTv/VBjt?VBGn?NN= ףp=NNPS?RBzG?VBNS?VBP/$?i-1 tag+i word JJ retailVBPtVJJ~jt@NN(\ i word minorNNS/$ٿVB rhRB(\NNX9vRBSx&1VBN+PRPx&1JJZd;_@i-1 suffix bedRP;On JJ/$@NN/$RB^I +INn @NNP"~ i+1 suffix atPRP$7A`JJ +NNPQRBR!rhNNPSB`"RPGzJJSClVBD+?VBNK@WDTSDTSRB rh?NNSK@VB(\?JJRʡE?VBGˡE?VBPzG?VBZ^I +?NNV- @CC/$?CD9vINK7 i-1 tag+i word CC promisedVBNy&1VBDy&1?i-1 tag+i word DT stealthNNoʡNNPoʡ?i-1 tag+i word DT liberalJJI +?NNGzNNPʡE?i-1 tag+i word PRP fearVBPV-?NNQVBDQi+1 suffix hasEXMJJRGzVBZZd;O?PRPL7A` @CCNbX9NNPOn?CD?5^I NNPSx&1?VBN\(\?JJV-NNS9v?WDTMb@RB#~j?VBGL7A`VBDMbVBPv/VBSRBR+IN-DTT㥛 @NNK@FWX9v?i+1 word philipVBV-?VBP rRBbX9i-1 word interestsRPQ?RBV-INMbP? i suffix cut JJFxNNHzGJJRZd;RB5^I VBZA`"NNS!rhVBv?VBG~jtVBD}?5^@VBN(\B@VBPV-NNPQ?i-2 word targetCCˡEܿVBN'1ZRBA`"VBZMbX9?DTˡE?NNSMbX9ĿNNP1ZdJJ'1Z @i-1 tag+i word RB totalsVBZS㥛?RBS㥛i-1 tag+i word DT servedVBN&1VBD&1?i-2 word taxpayersNNSʡE?NNPq= ףpVB1Zd?NNPSK7RBuV?NN}?5^IJJʡE?i-1 tag+i word JJ weighingVBG7A`?NN7A`i+2 word colorJJy&1NNPy&1?i-1 tag+i word CD thatDTtVWDTl @NN(\INX9v׿i-1 tag+i word DT bitRB!rh @NNjtJJjtVBzGếi-1 tag+i word VBZ netNNMb?JJMbi-1 tag+i word NNS ofNNP^I +IN+?VBDK7ٿi-1 tag+i word VB severeJJS?RBSi-1 tag+i word NN glossyJJS㥛?NNS㥛i word autocratNNjt?JJjt i suffix camRB\(\NNP\(\?i-1 tag+i word DT deemedVBNA`"?VBDA`"i-1 word trustNNv?VBDvVBP333333?WDTn?JJ'1Z?INnNNP'1ZVB333333i word thinkingVBGxNN`"?JJT㥛 i+2 word admitJJ/$?RB/$i-1 tag+i word `` luxFWoʡ?NNPoʡi-1 word praisingJJ rh?VBD rhi+2 word biddingVB㥛 ¿VBP㥛 ?i+1 suffix horDTX9vINX9v?i+1 word ats\/2VBNL7A`?VBDL7A`i+2 word smartJJq= ףp?RBq= ףpi-1 tag+i word VBG subterfugeNNSrh|NNrh|?i word ballotingNNK7A`?JJK7A` i+2 word each VB)\(?RP/$NNI +VBDy&1IN~jtVBZ~jtJJV-?NNS"~j?VBNx&?RB +@VBGnNNPS㥻?i word vegetariansNNPSʡENNSʡE?i-1 tag+i word NN avecFW rh?VBZ rhi+2 word forcingVBNKJJV-VBZ333333?NNS333333VBQ?NNCl?i+2 word although DTjt?RPA`" JJSFxVBNClRBZd;O@VBG5^I @VBnʿJJh|?5NN/$ݿINMbXNNSQ?i-1 tag+i word POS columbusNNPx&1?JJx&1i-1 tag+i word RB fiatVBNX9vNNPX9v? i+2 word gmVBN|?5^VBPx&RBw/JJuVݿNNCl?VBDq= ףp?i-2 word englundDTK7INK7?i word gerrymanderingVBGx&1NNx&1?i+2 word briberyNNB`"?JJx&1NNSGzi-1 tag+i word `` shareNNV-?JJV-i-1 tag+i word NN anywayVBNZd;NNI +VBZL7A`尿RBV-?i+1 suffix ditVBG&1?VBNv/?JJ'1ZܿNNPS`"VBCl?NNq= ףpWPGz޿VBZ&1ڿRBClIN9vJJRh|?5?VBP{Gz?DTx&1?NNP7A`?i word elsewhereRBS㥛@NNٿVBNvUH= ףp=ҿJJ^I +NNSI +NNPSVBoʡi-2 word trotterJJ7A`?VBGtVNN!rh?i word neutralJJS?FWS i-2 word tackVBA`"VBPjt@VBZSۿi-1 word essentiallyVBN~jtJJMb?VBDMb?i-1 tag+i word JJ meansVBZh|?5?NNPS(\пNNS+ i suffix eupNN/$@JJK7A`NNP;On¿JJRMbXNNSsh|?i-1 word authorizeVBX9vNNSrh|?NNʡEi-1 tag+i word JJ sodaNNSDlٿNNDl? i word doubtsIN9vVBZ&1?NNSOn@MDV-NNV-VBDx&RB"~ji-1 word herslyVBZ{GzRB{Gz?i-1 tag+i word `` carsNNS&1?NNP&1i-1 tag+i word WP betVBZd;@VBP)\(VBDMi+1 word arrangementNN/$?JJ/$i+2 word supportedNNPS= ףp=?RB1ZdVBD1Zd?JJQ?NNS= ףp=NNPQi tag+i-2 tag VBD CCPRPT㥛 NNS?RBRGzCD&1ҿPRP$y&1?VBGMb`?JJ}?5^IRPK7NNPS&1JJR"~j?VBDZd;VBPQNNPI +?INl?VBZv/?NNX9v?RBԿJJSV-?RBS~jt?VBNS㥛?DTT㥛 VBV-?PDT\(\?i+1 suffix sleJJNbX9?NNNbX9i-1 tag+i word DT orphanedVBNx&?JJx&i+2 word woundDTQ?INQi-1 tag+i word IN complexJJ+?NN+i-1 word presidedRP{GzIN{Gz?i-1 tag+i word PRP$ kidsVBʡENNSʡE?i-1 word hodgesVBGRQ?NNʡEFWMڿVBP +ֿi-1 tag+i word NN movesVBD`"VBZT㥛 ?NNSx?i-1 tag+i word VBP awayRP(\RB(\?i-1 word militiaVBD-?JJ-i+2 word subscribersVBoʡRBNbX9?IN-i-2 word bulletVBGQ?NNQտi+2 word boeingNNP/$?RBq= ףpͿJJZd;NN?5^I ?i word porkapolisVBV-NNPV-?i word reactingVBGV-?NNV-i-2 word listedRPClVBDS@VBN"~jWDT|?5^?JJ~jtIN-˿NNPx& i word surelyNNS333333RB333333?i-1 suffix ago NNPS ףp= NNV-?VBD+@POS?CDʡEVBNQ?JJI +޿DTGz߿NNPVBPClINGz?VBZ$Cۿi-1 tag+i word NNP evansNNPX9v@NNPST㥛 NNS|?5^ɿi word kindertotenliederFWI +@NNPI +i+1 word missilesJJCl?NNCli-1 word potatoNNS;OnڿNN;On?i+2 word colombianNN"~VBD"~?i-1 word powerfulNNS~jt?NN!rhJJT㥛 @FWffffff?VBZ-i+2 word passengersWDTCl?INCli-1 tag+i word VBD improvedVBN"~jJJ/$?VBDQi word quickviewNNX9vJJMbX9NNPS?i-1 tag+i word DT spaghettiNNSX9v@NNX9vi-1 tag+i word RB utteredJJ/$VBD/$?i-2 word showedRB1Zd?NN{GzFWZd;߿JJS!rh?JJv/NNS$C?i-1 tag+i word CD worthINS㥛NNK7A` @NNSQݿRB^I +JJʡEi-1 tag+i word : mmgVB5^I NNP5^I ? i+2 word tonsRB7A`IN7A`?i-1 word nonfictionJJS)\(?RBS)\(i-1 tag+i word POS expectedVBN{Gzt?JJ{Gzti word stateswestJJSA`"NNQRB#~jNNP|?5^@NNPSRQi+1 word pittsburghJJ"~jԿNNP"~j?i-1 tag+i word JJ instrumentNNSp= ףNNp= ף?i-1 tag+i word NNP bankersNNPSS㥛NNPS㥛?i-1 tag+i word NNP checksVBZFxNNSFx?i-2 word ridingNN/$?JJ/$i word pressuredVBNZd;NN)\(@VBD rhVBGK7ѿi-1 tag+i word DT cookingVBGʡEJJ&1@NN|?5^i-1 tag+i word NNP coveredVBN~jtVBD~jt?i+2 word planesNNS+NNP+?i-2 word dellumsNNZd;O?JJZd;Oݿi word outlawedVBNoʡ?JJoʡi-1 tag+i word TO sovietJJ%C?NNP%Ci word lithographyNNPSlNNl? i word havenNN?RBؿi-1 word generalNNSSNNPFx?NNPS~jt@VBGDlNN r?RBRS?JJRSJJ1Zdi+2 word leavesRPS?RBS i suffix rim PDTX9vJJRw/ԿVBP(\?VBZd;?JJxi@NNq= ףpFWClCDnRB{GzԿNNS^I +NNPDli+2 word theseNNS㥛RBRS˿VBZd;O?NNP|?5^RBSv/տJJRS?INV-CDn?VBZ rh?VBG-?JJp= ף?CCQVBN(\ڿDTvJJSv/?VBPZd;?WDTQ?PRPT㥛 RB)\(̿RP ףp= ?NNS&1?i+1 word attorneyVBZlRBSPOSl?JJPn?NNP/$ i suffix A$JJ$V-@RBZd;ONNP+i-1 tag+i word DT grimlyRB{Gz?NNS㥛JJQi-2 word whittleWDTIN?i tag+i-2 tag VBN VBDVBNCl?WDTT㥛 ?RB{Gz@VBG?NNSNNB`"VBD5^I JJRJJh|?5CD!rhINS㥛ԿRBRS㥫DTK7ANNP"~j?RPl@JJSq= ףpi word handlingVBGM?NN{GzĿJJv/i-1 word arbitratorVBZPOS?JJx&VBDx&? i word issuedVBPףp= RBNbX9VBZ(\JJ?NNʡEVBDCl@VBNZd;@i+2 word deadlyJJ= ףp=?RB= ףp=i tag+i-2 tag VBD JJ RPNN1Zd˿VBN+JJRuV?PRP$jt?NNPjtܿVBI +?JJx&?IN~jtRBRuVͿRB`"?i+1 word humanVBG$CJJK7?RBzG?i-1 tag+i word PRP noticeVBPn?VBDni+1 word steadinessVBZbX9VBNDlVBDMbX9?i word whereasVBGh|?5RBʡEVBDK7A`JJ(\INI + @NNSuVͿi-1 tag+i word RBS knownVBNʡEJJʡE?i-1 suffix ongCCJ +ٿVBNMbRBZd; @WDT rhINrh|VBZxVBy&1?NNPSDl?DTK7A?NNP rhVBGS㥛NNx&1?NNSL7A`?RBRZd;O?FWsh|?POSS?VBP'1ZĿJJR~jtCDRQ?JJx&?VBDoʡi-1 tag+i word NNP headquartersNNSX9v?NNGz?VBZ/$ӿNNPSi-2 word recognizingJJzG?NNzGi word somersaultingVBGHzGJJx&1?NNbX9i-1 tag+i word POS signatureVBPnؿNN&1?JJ+i-1 tag+i word NNS bananasVBP;OnNNSV-?VBDʡE i suffix 2.5JJRQCDRQ?i+2 word eatenNNP5^I NNPS5^I ?i-1 tag+i word `` peoplesFW)\(NNSMb?JJ+i-2 word wearsNN㥛 ?JJ㥛 i-1 tag+i word , betterJJRS?JJx&1̿RBRMbi+2 word clericalVBNffffff?VBDffffffi word collapsesVBZrh|?NNSB`"NNuVͿi+1 word employerPRPףp= PRP$ףp= ? i-1 suffix 'VBPA`"ӿINX9vNNPQVBNGz?RB333333ۿVBGL7A`ؿVBDZd;߿JJSzGVBZS㥛NNMbX9?RBSzG?NNSK?VBGzNNPSOn?JJ(\?i-1 tag+i word NN resignedVBDʡE?VBNx&1ؿNN+i-1 tag+i word VBN commissionsNNSQ?NNQi-1 tag+i word NN diskNNGz?JJPnNNPtVi-2 word platformsVBX9v?VBPX9vNNX9v i-2 word gas JJT㥛 ?VBN= ףp=?RBSNNSClӿVBP;On¿INˡE?RP$C˿VBZCl?VBzGVBG|?5^?NNffffff?VBD333333NNPQֿi-1 tag+i word NN acquiredVBNHzGVBDHzG?i+1 word attemptingWDTnڿINn? i word pettyJJ7A`?NNP7A` i+1 word p&gRBSINV-JJS?RPV-?i-1 tag+i word RB briefJJףp= ?VBNI +NNˡE i-2 word fineVBMbNNPy&1NNy&1?JJMb?INS㥛п i suffix RayNNPrh|?NNPSPnпINQi-1 tag+i word IN y&rUHZd;O׿NNPZd;O?i+1 word internationalNNPSK7 @JJRS㥛?VBN-JJ㥛 NNSZd;NNPQ i word farJJK7?NNS/$VBNK7RB`"@NNPd;O i word factoJJK7AFW!rh?RBi-1 tag+i word DT pacsNNPSNbX9?JJbX9NNP- i-2 word wantWDTT㥛 ?JJ}?5^IDTT㥛 пVB-@NNPSK7VBGm?NN㥛 VBNK7i+2 word vehicle CD1Zd?JJq= ףp?VBG?VBNK7A`VBPDlVBZ~jt?NNPK7ANNDlѿVBD~jti+2 word coatesRBGzֿNNPGz?JJMbX9?NNMbX9i word premiereJJl?VBZSNNK7A@NNS/$RBSi-1 tag+i word VBN soldNNSX9vVBNx?RBGzi-1 tag+i word , turnoverWDTQEXKNNh|?5?i-1 tag+i word IN littleRBV-@NNSMbJJHzGNNp= ףпNNP ףp= ?i-1 tag+i word RB silverNN9v?JJ9vi word modernistJJ$C?NN$C i suffix 300NNPSCD?i word degreesVBZ!rhNNSZd;?NNV-i-1 tag+i word PRP recognizeVBPd;O?VBDd;Oi-1 word marioNNnNNPn?i+2 word intelligenceVBZMbX?NNSMbXi+2 word lieberNN/$?JJ/$i tag+i-2 tag PRP NNPSVBP/$?NN/$i-1 tag+i word NNP odeonNNPSZd;ONNPZd;O?i+1 suffix ermRB(\NNPV-VBGbX9ȶ?JJ+ @NN|?5^VBD`"JJR7A` @RBRB`" i word wholeRB +NNSmNN ףp= JJS`"ֿJJ$@i-1 tag+i word RB extendedJJB`"?VBDB`"ɿi-2 word settleNNPSB`"NNX9v?CCxRB/$޿DTˡE?NNSCl?NNP&1i+2 word transplantJJI +VBGI +?i-1 word dinnerVBʡEWDTHzGNNʡE?INHzG?i-2 word badlyJJA`"NNSOnVBNA`"?NNOn?i-1 tag+i word NNP industriesVBZKNNPSn@NNS rhѿJJNNP5^I i-1 tag+i word NNP brewingVBGZd;NNʡE?NNPPn?i-1 tag+i word , keynesianJJ|?5^?NNP|?5^i tag+i-2 tag ) LSVB rh?NNP rhݿ i-2 word iranJJʡE?NNʡEi-1 tag+i word NN octNNMbPNNPMbP?i-1 tag+i word CC killingVBG+?NN+i-1 tag+i word VBZ specifiedVBN/$?VBD/$ i+1 word alsoPOSQ INbX9ƿNNPʡE@JJSbX9VBPVBZZd;O?JJV-NNˡE @VBDʡEƿEX333333?RBS?NNPSL7A`WDT\(\?DTHzGNNSS @CDDl i word pikaiaNNSʡENNSNNPMb?i-1 word temptationNNS+RBT㥛 VBZMb? i word loudNNPS㥛VBNmJJףp= @i-1 word cleaningRP= ףp=?IN= ףp= i-2 word cdsJJx&1ȿRPK7NNnRBV-?INQ?i-1 tag+i word DT australianJJd;O޿NNPd;O?i-1 tag+i word VB clearVBN ףp= JJ ףp= ? i+2 word wearNNOn?NNPOni tag+i-2 tag RBS JJNNʡE?RBʡEVBNOnJJOn? i-1 word us VBV-?RP?NN1ZdRBZd;WP|?5^VBD+IN rh?VBPMbX9?WDT|?5^?NNPsh|? i suffix mexNN;OnNNP;On? i suffix ict NNSGzVBQNNZd;O?VBD|?5^VBN+VBPn@JJ;On@VBZV-NNPZd;O?NNPSZd;ORBmi+2 word connieNNvNNPv?i+1 word sedansNNQ@JJ!rhNNP ףp= VBZ~jti-1 tag+i word DT gemNNSK7ANNK7A?i-1 tag+i word POS veryJJʡE@RBDlNNZd;Oi-1 tag+i word NNP setVBPx&VBNK7A`NNS?VBDʡE?NNP7A`i-1 suffix j&bNNrh|NNPrh|?i+2 word spareVBGQNNQ? i suffix rieJJSNNP rh?VB!rh i word mipsRBGzNNPp= ף?NNPSy&1NNSrh|?i+2 word cartelJJx&?CDx&i-1 tag+i word CC retrainingNNrh|VBGrh|?i-1 tag+i word , protestNN/$@JJ= ףp=IN/$VBDlVBPtV i pref1 qCC(\տRBRZd;@CD-JJS;On?UH"~VBN(\VBZPn?PRP`"VBGoʡ?VBP{Gz?RP"~ҿNNI + @NNPMbX%VBjt?PDTK7A`?INnVBDNbX9?RBq= ףp@NNS%C@NNPS㥛 JJRJ +?JJQ?i-1 tag+i word IN pilipinoNNʡE?NNPʡEi-1 tag+i word NN prospectsNNSQ?VBZQi+2 word christopherNNSMb?NNMbi word divergentJJ)\(?NN)\(ܿi-1 tag+i word VBD namedNNSV-VBNʡE @JJx&VBD +i-1 tag+i word NN closeVB/$RB/$?NNSJJx&1@VBNCli word dispositionsNNPSxNNSx?i-1 word installVBNףp= JJףp= ?i-2 word fieldRB;On@NNPQ?RP;OnJJK7?NN+VBD?VBNClVBP'1Z? i+2 word vanJJtV?NNtV i-1 word de VBZZd;NNPSClVBDFxFWQ@NNSJ +NNPJ +@JJ1ZdNNPnпRBNbX9i tag+i-2 tag RBR MDJJS㥛RBʡEVB/$?i-1 tag+i word CC conceiverJJSSNNS? i word brightVBDClJJK7@NNV-NNPp= ףi tag+i-2 tag : '' VBFx?VBN= ףp=?VBPFxVBZS?NNSVBD= ףp=WDT+INx?DTB`" i word dickJJR#~jJJuVտNNP$C?i-1 tag+i word NN supposedNNSV-VBNB`"ɿVBDK7?i word emergedVBNjtNN= ףp=VBD&1? i suffix OatNNQNNPQ?i-1 tag+i word DT dickensNN'1ZܿNNP'1Z?i-1 tag+i word JJ dryJJQ?NNQi-2 word monopolizingNN~jt?JJ~jt i word atoneVB|?5^@NNP(\CDʡENN(\IN(\ȿi-1 suffix vesEX-?INQJJSsh|?VBD)\(?VBN^I +߿NNP~jt?RBRuVݿPRPV-?NNS"~j?VBZd;OJJV-?VBZKNNmJJRDl?VBGq= ףp?''GzVBPHzG?POSGz?RB(\?PDTRBSsh|??CDQѿWDTK?DTMbؿRP?i+1 suffix uckNNPʡE?NNPS-NNS VBD+?RBRFxJJRFx?JJ|?5^@i-2 word increasingNN|?5^@NNS rJJ-RB(\?i-1 tag+i word PRP forgotVBZʡEVBDʡE?i-1 tag+i word NNS mountNN|?5^VBP|?5^?i-2 word extensionJJ"~jNNP"~j? i-2 word at&tJJ)\(NNPX9vNNPSX9v?VBN)\(?i-1 tag+i word CC sardonicNNSS㥛JJS?NN^I + i word tillRPtVοJJV-INzG?i word encounterNN+?JJ+i-1 tag+i word POS survivalJJMbNNMb?i-1 tag+i word VBP twiceRBw/?NNGzINGzi-1 tag+i word , genentechNNGz @NNPGz i-2 word feelsVBQINQ?i+2 word analystNNPvVBP9vJJ/$@RB(\NNPSn?i-1 tag+i word VBD pointsNNS+VBZ+?i-1 tag+i word , stairJJh|?5ֿVBP rNNZd;O? i+2 word burnJJRʡE?RBʡEi-2 word changingNNS\(\?JJˡE?NN"~ji-1 word portraitWDTMb?INMbi-1 tag+i word `` insultingNNZd;JJZd;?i+2 word sanctionsJJPn?VB9vVBPCl?RBS㥛ܿNNbX9޿i-1 tag+i word RB nonsenseVBP`"JJHzG?NN/$i-1 word wickedlyVBG\(\JJl?NNy&1i-1 tag+i word NN beatsVBZ(\?NNSʡERBA`"i-1 tag+i word -START- magazineNN`"@JJ/$NNP333333 i suffix MyPRP$Q8@NNClRB+JJClNNP(\i-1 tag+i word NNP centurionNNDlNNPDl?i-1 tag+i word NN footNNSNN?i word respondingNNy&1VBGy&1?i-1 tag+i word VBZ alliancesVBZ/$NNS/$? i word soggyJJm@NNmi-1 tag+i word IN ballyNNP?RBi+1 word recruiterNNh|?5?JJh|?5ֿi+1 word everyVB^I +RBT㥛 ?RBSClۿVBNh|?5?VBDvCC1Zd?JJS~jtIN= ףp=?WDTZd;O?JJ1ZdVBZ333333RPT㥛 NN/$@DTK7 i-2 word loss VBʡEJJK7A?NNZd;OCDFx?NNS333333VBDy&1VBN+?VBP-˿RBףp= INףp= ?i-1 tag+i word JJS friendNNM?VBjtVBP;Oni-1 tag+i word VBP choresNNSy&1?NNPy&1i+2 word africanRBSˡEVBNQ?JJQJJSˡE?i+2 word rentalDT{GzIN{Gz?i-2 word esselteNNPSK7A?NNPK7Ai-1 suffix rimNN&1?JJ)\(?NNPK7i word forecastingVBGv/NNm@JJX9vi+1 word ratingsNNI +ƿJJ|?5^JJRmͿVBʡE?i-1 tag+i word DT fishingVBGMNNM?i+2 word recruitsNNףp= ?NNPףp= i+2 word befittingNN/$?JJ/$ i+2 word baa3VBףp= JJL7A`@NNPZd;i+1 suffix lusJJ#~j@NNM?VBD+VBN;OnVBP rhRBq= ףpi-1 tag+i word JJ criticNNCl?JJCli-1 tag+i word IN alienJJ'1Z?NN'1Zi-1 word garmentNNSGzNNGz? i+1 word soon NNSM?VBZMڿVB!rhRBQ @NN+?VBN/$?EX= ףp=JJX9vINi-1 tag+i word VBD notifyingVBGn?JJni-1 word informalNNx&?JJx&i+2 word scheduledCD)\(NNPPn?NNSJ +?NNʡE޿i-1 tag+i word CC exploreRBh|?5JJRZd;NNMbX9ܿVB?5^I @i word eliminatingVBGl?NNli-1 tag+i word RB successfullyVB7A`RB7A`?i+1 word tightenerNNn?JJni tag+i-2 tag PRP DTJJCl?VBD`"?VBZ333333VBV-VBP ףp= i word moldyJJ;On?PRPSNNMbNNPPni-1 tag+i word NNP cattleNNS/$?NN/$i-1 tag+i word DT domesticallyNN+ӿRB+?i+1 word breakJJ\(\?VBˡENN\(\RBA`"?INPni-1 tag+i word RB soldVBNʡE?VBDʡEӿi-2 word awardedNNPPn?NNPS+?NNSX9vi+2 word automaticallyNNSV-NNV-?i-1 word floridaNNPSDlVBG'1ZԿNNw/?NNPh|?5i-1 tag+i word NNP callsNNS\(\VBZ\(\?i+1 suffix ep.NNPX9v?NN ףp= ?VBD-JJ|?5^VBZl?NNSQi-1 tag+i word JJ issuerNN9v?JJ9vi-1 tag+i word VBZ retinalNN}?5^I̿VB= ףp=JJ-?i-1 word plantedRBRy&1?JJRy&1i-1 tag+i word NNS engagedVBPv/ݿVBNjt?VBD5^I ӿi word leasingVBGX9vNNPn?JJI +i-1 tag+i word NN receivedVBDK7?VBNK7i word impunityVBNGzNNGz?i-1 tag+i word JJ zooNNSQNNQ?i+2 word notionJJ"~jRB"~j?i-2 word carriesJJ rhNN㥛 @JJRV- i suffix 5thCD1ZdJJˡE@NNPi word watchingVBGMbX9?NNI +JJV-i+1 suffix vecNNףp= ?NNSףp= i-1 tag+i word VBZ preparedVBNvJJv?i-1 word relievedRB"~?JJ"~i-1 tag+i word PRP$ marxistJJh|?5?NNPh|?5i-2 word estimate RB/$?VBPMbJJmͿDTrh|VBG?NNSӿVBDT㥛 VBNK7AVBZʡENNS-?i-1 tag+i word NN giantsNNPSK7AؿNNS5^I ?NNZd;NNPsh|??i-2 word texas VBNp= ףVBZ?5^I NNP(\NNPS?5^I @RBjtVBDV-?NNFx@JJuVNNSA`"ӿ i suffix son JJQ?RB&1VB r NNPSL7A`NN+w@VBDDlVBNMbNNSjtNNP@ i+1 word cutRB333333?DTZd;ONNSK7?NNP= ףp=JJ333333?NNPn?VBP333333WDTZd;O?i-1 tag+i word JJ beforeRB(\@JJRuVNN +IN/$ i word softerVBPSNNA`"JJR@JJ~jti-1 tag+i word NN compensationNN\(\?RB\(\i-2 word stickingVBZd;NNSGzNN/$?RBh|?5WPZd;?i+1 word ryderVBZd;O?NNSd;Oi-1 tag+i word IN sharedVBNM?JJM i word irasNNS~jt@NNPmRNNPSx&1@NNx&1VBPZd;ORBy&1i-1 tag+i word `` apparentlyVBNRB?i-1 tag+i word DT supremelyRBp= ף?JJp= ףؿi+1 word murdersJJB`"?RBA`"NN(\µi-1 tag+i word VBG aboutRPnRBRQ@IN~jt?i+2 word emceeJJʡEVBDʡE? i word searchNNX9v@JJ^I +VBDˡENNS\(\i-1 word assumptionDT(\?WDTRQ RBL7A`?INT㥛 i-1 word financeJJ/$?NN/$ƿi-1 tag+i word DT payrollNNP"~j?NNSI +NN?5^I ?JJ5^I i word snivelingNNʡEJJ{GzĿVBGE?i word unrelatedJJV-@VB(\VBNSRBoʡVBD(\i-1 tag+i word NN betVBNʡENN-ۿVBD?i+1 word skywardVBPd;O?JJd;Oi-1 tag+i word , goVB'1Z?NN'1Zi-1 tag+i word , classVBGzNNn?NNP rh?i word classroomVBP'1ZNNoʡ?JJxi-1 tag+i word DT speechNNCl?JJCli+1 word filersJJK@NNw/ԿNNP\(\VBG1Zdi-1 tag+i word DT appetiteVBNV-JJHzGNNA`"?NNSoʡտi word achievedVBDMbпRB/$VBN5^I @JJxi-1 tag+i word RP tradingNNjtVBGjt?i word bailoutNN~jt@IN~jti-1 tag+i word VBG soughtVBNV-?JJV- i suffix uzzNNh|?5?JJh|?5i-1 tag+i word -START- storesVBZˡENNPS/$ÿNNS!rh?i-2 word distinctWDTʡEINʡE?i-1 tag+i word VBP naTO㥛 ?RP㥛 i-1 tag+i word WDT cutsVBZK7A`?VBDK7A`i+1 word secretariesNNCl?JJCli-1 tag+i word DT oppositeJJ?NNL7A`PRP rhѿ i word cfcsVBPzGNNPSX9v?NNSS@NNQNNP33333i+2 word rejuvenationJJjt?NNPjti+2 word arouseNN +?JJ +i-1 word libelNN/$?VBD/$i-1 tag+i word VBZ popVBPuV?NNuVտi-1 tag+i word , boostedVBN+VBD+?i-1 tag+i word -START- retiredVBNB`"ѿJJnNNPQ? i+2 word inchVBGPnNNPn?i word monitorVBDy&1VBNZd;OVBPZd;@JJA`"ۿMDd;OVBT㥛 @NNMb i suffix ity RBlINd;ONNS?5^I JJI +?NNX9v)@FWGzVBNSVBZ333333NNPjt@VBh|?RP/$CC?5^I VBPMbi-1 tag+i word JJ triggerNNS^I +NN^I +?i-2 word distressedPRP$S?PRPSi+1 word governmentsVBNx?JJX9v?RBX9vNNxi-2 word divertNN#~jJJ#~j?i-1 tag+i word NN indexesNNOnVBZʡENNSv@i+1 word herselfVBv?VBGOn?NN+JJʡEi+2 word importVBGʡE?VBPʡEWDTHzGJJ'1ZINHzG?NNS'1Z?i-1 word spielvogelNNPSMbNNPMb?i+1 suffix rtzVBDZd;NNPn?JJbX9NNPI +? i+1 suffix cdNN333333VBPףp= ?WDT/$JJ333333?IN/$?NNSףp= i-1 tag+i word IN schrodersNNPSjtNNPjt? i+2 word kingVBy&1?VBGv/ͿNNGzVBP;OnJJrh|?VBZOni-1 tag+i word DT urgeNN'1Z?JJ'1Zi-1 tag+i word NN packagingVBGPnNNPn?i+2 word helmutNNPS~jtӿNNP~jt?i-1 tag+i word JJ provideJJy&1VBPy&1? i word what RB)\(VBD+IN ףp=VBP'1ZWDT?5^I @VB)\(NN&1JJV-WP+η(@DTFxi word prevailsVBZ?5^I @NNSX9vNN'1Zi+2 word chaseVBNPn?JJT㥛 NNPQ?VB9vNN/$i-1 word occasionalNNSNNPS?i+2 word explainNNSSNNS? i+2 word deanNNPSI +NNPI +?i-1 tag+i word NNP byrdNNPn?NNni-1 tag+i word JJ fairyNNS= ףp=ڿNN= ףp=?i+2 word thinningNNSSNNS? i word callsNNL7A`VBD-VBZZd;O@VBv׿NNS + i-1 word suspendNNsh|??JJsh|?i+1 suffix tupJJ-?NN-i-1 word remainsJJv@NNK7VBDh|?5RBR^I +?VBNHzGRBA`"?JJR^I +i+2 word nuclearVBNK7A`?VBDK7A`ſi+2 word speedsNNPʡE?RBʡEi-1 tag+i word IN preciselyRBQ?JJQѿi-1 tag+i word POS idealJJ%C?NN%Ci+1 word addingDT?RBi+1 suffix outRBrh|ϿCC)\(MDv/JJRh|?5VBGS@POSEпPRPjt?CDNbX9?INˡEJJ'1ZNNSS?RBR}?5^IVBZw/@DT^I +?RPjtNNPSL7A`PRP$mVBP/$?WP~jt?NNjt?NNP/ݤVBQ@VBD/$?VBN rh @WDTˡEi-1 tag+i word POS progressNNV-?JJV-i word continentNNPSZd;׿NNtV@NNP'1Zi+2 word capitalizedRBSx?JJSx i word bombsNNSMb?NNp= ףпIN r i suffix FOsNNSK7@JJRSJJQѿNNPNNPS(\i-1 tag+i word , thoughtVBDw/VBN"~?NNKi-2 word mildewyJJ|?5^@RB|?5^i-2 word enough DTˡEܿNNP+?VBOn@NNK7JJRv/IN+RBKNNSZd;O?VBG/$JJ?5^I FWK7CDoʡ?i word curdlingVBGHzGNNPHzG?i word unconvincingJJ~jt?VBG~jti-1 tag+i word IN nairobiNNtVNNPtV?i-1 tag+i word NNPS votesVBZ1Zd?NNS1Zdۿ i suffix sNNP$CVBNQٿNNMPRP$C? i-2 word cookVBPHzGNNPHzG?i-2 word comfortableWDT㥛 ?IN㥛 ڿi word subterfugeNNSrh|NNrh|?i word welfareVBPK7NNL7A` @JJZd;WP9vi+2 word aloneNNPS(\VBGNbX9ؿJJoʡ@NNX9vNNPMҿi-1 tag+i word CD outNNSy&1RBClNNDl?INx?i+2 word brokenVBZL7A`NNPSS㥛NNS`"?i-1 tag+i word NN persistsVBZ?NNS i word commonNNPSnJJK7A@NNp= ףNNPˡEi-1 tag+i word VBZ photosNNSx&1?NNx&1i-1 tag+i word VBD lobbiedVBNZd;?VBDZd;i word pregnantVB"~JJSK7A`ſJJ\(\@NNn i suffix EIDNNK7A`NNPK7A`?i-1 tag+i word NNP animationNNw/?JJw/ i suffix dthNNS'1ZJJ5^I @NNS i+1 word maleJJh|?5RPV-?NNPʡEVBʡE?VBG +@RBV-ϿNN`"i-1 tag+i word RB restrictVBI +?VBPI +i-1 tag+i word RBS prominentJJ?NNi-1 tag+i word PRP$ ribsNNS{Gz?NN{GzĿi-1 tag+i word NN rateNNPS9vҿNNS㥛 NN+ÿNNP"~?i-1 suffix dleRBvINQ?VBZQ?DTm?NNSQVBGZd;OǿJJZd;O?RPV-i word concedeVB)\(?VBPK7@NNS(\NN~jtVBZMbX9 i-2 word jahnNNy&1?JJy&1 i word motorsNNPSjt@NNS(\NNClNNP?5^I ?i tag+i-2 tag JJR NNJJm?NNx&RBx&ٿIN+?i tag+i-2 tag DT -START-CDMb?FWh|?5?VBNZd;OտVBPMb?POSy&1NNPffffff@RBSQ?RBRnJJ?DTB`"PDToʡJJRPn?VBZ rh?PRP+?VBoʡſNNPS!rh?JJSʡEVBG/$ݿNNJ +VBD^I +@RBFxNNS rhi-1 tag+i word -START- currentNNZd;ONNPKJJ@i+1 word filipinosNN rhIN;On?DT;OnJJ rh?i+2 word informalVBDrh|PDTClۿVBGrh|?JJCl?i-1 tag+i word NN swelledJJMbVBD"~?VBNS㥛i-1 tag+i word NNP cruiserVBZ%CNN%C?i+2 word reaganNNʡE?VBPffffff?JJ}?5^IԿINq= ףp?NNSʡEVBffffff޿RPq= ףpRB}?5^I?i word midlandNNsh|?տNNPMb?NNS(\ i-1 word slowNNQ@RBQIN/$VBGJ +RP7A`?JJq= ףpi-1 tag+i word RB neitherCCCl?VBZS㥛IN333333i-1 tag+i word DT startNNS"~NN(\?JJnNNP9v i word riesNNPSKNNPK@i-1 tag+i word `` countryNNPV-ڿNNV-?i-2 word israeliVBNbX9޿VBDbX9?i-1 tag+i word TO circulateVBS㥛?NNS㥛Ŀ i word weeklyRBʡE?NNS rhNNP/$WRBbX9JJMbX@NNMbVBP1Zdi word ignoranceNNffffff?FWffffffi-1 tag+i word CD censusNNS333333ۿNN333333?i word dudgeonNNS +οNN +?i-1 tag+i word VBD advertisingVBGy&1|?NNy&1| i word blazerNNffffffֿNNPffffff?i word punishableVBN(\JJ(\? i word soiledVBNMVBDM?i+1 suffix nonNNPS\(\NNV-?JJuVݿNNPB`"ɿi-2 word observedJJCl?VBDCl i word tidesNNSv/?NNv/Ϳi-1 tag+i word DT beamingNNd;OVBGd;O?i-1 word barrickNNPMbX9?NNPSK7NNSzGi+2 word gabrielJJI +?NNI +i-1 tag+i word WDT madeVBDʡE?VBNʡEi-1 tag+i word NN quartersNNPSx&1NNSx&1?i-2 word panelliVBNQNNQ?i-1 tag+i word -START- shoneyNNSNNPS?i word zellersNNSClNNPCl?i-1 tag+i word CC futuresNNPS\(\?NNP\(\i-2 word divestituresNNV-VBGV-?i-1 tag+i word JJ blazerNNffffffֿNNPffffff?i-2 word defense VB!rh?IN+VBNlVBPOn?JJM?VBZy&1NNS/$?NNZd;OVBDCli-1 tag+i word ) attendeeVBq= ףpݿNNq= ףp? i word opecNNS㥛JJX9vֿIN%CNNPZd;@RB%Ci+1 suffix ads VBGMbXɿNNB`"VBD+?JJRX9v?NNP-?NNSA`"VBZd;VBN+JJMb?INK7A`DTK7A`?i-1 tag+i word VB behindRBoʡ@RPMbXVBN~jtNNvIN"~ʿi-1 tag+i word IN everRBGz?NNGzi-1 tag+i word NN yieldedVBN-@VBD-i+1 word perfectlyVBZ|?5^?NNSp= ףؿNNvi-1 tag+i word , filedVB/$VBNw/?VBDMbX9VBZV-i-1 word biologyNNT㥛 NNS|?5^?RB'1Zi+1 word manhoodJJ?5^I ?NNP?5^I i+2 word mondaysVBZClNNCl?i-1 tag+i word RB neededVBP}?5^IVBNK7A`?JJ`"ֿVBDMb?i-1 word compositeVBZOn?NNS|?5^NNP%C?VBG;OnNNףp= ?JJ1Zdi-1 tag+i word IN beachfrontJJ$C?NN$Ci-1 tag+i word CD fallsVBZT㥛 ?NNST㥛 i-1 tag+i word -START- oilNNK7 @UHS㥛JJ'1ZNNPi-1 tag+i word -START- louisRBV-JJoʡNNPDl?i-1 tag+i word VBD plentyNNGzRB= ףp=?JJQ?i word foolishJJ?NNi-1 tag+i word VBP timesNNS\(\?RB\(\i-2 word zayadiVBN-?JJ-i word woodruffMDX9vNNPX9v?i word coastedVBD&1?VBN&1i word diamondsVBZ|?5^NNS5^I @NN~jti-1 tag+i word NN collapsedVBN)\(VBD)\(?i-1 tag+i word VBG socialistsNNPSS㥻?NNSS㥻 i word agencyNN~jtNNP~jt?i-1 word ogonyokVBq= ףp?NNq= ףp i-1 tag+i word NNP entertainmentNNPSZd;NNPZd;?i+1 suffix edeNNK7A?JJʡEIN~jtNNSGz@NNPV-NNPSGzVBGMbXRB~jt?i-1 suffix funVBG1Zd?NN1Zdi-1 tag+i word -START- bachVBN+NNlҿNNPQ?i-2 word exceptionsNNx&1NNPx&1?i-1 tag+i word CD mphJJRClNN r?NNSˡEi-1 tag+i word IN christiesNNPK7@NNPSQNNSCli-2 word nikkeiVBZ\(\ϿVBPA`"?NN;Oni-1 word daikinNNPSCl?NNPCli-1 word cleverlyNN+VBN+?i-1 tag+i word VBZ cleverRBOnJJJ +?VBNvi-1 tag+i word , crackedVBNzG?JJI +VBDV- i word faultyNN"~jRBX9vJJx@i+1 word stevenVBN7A`VBD7A`?i+2 word programRPjt @NN(\RBA`"VB/$?NNPS#~jJJSK?VBG-VBD1ZdCDx&?PRP$Cl?JJPn@VBZd;ONNSKRBRV-?IN rhVBN/$?WDT`"?NNP/$PDTˡE?JJRp= ףVBP;On?PRP?5^I i+1 word crimeVBCl?WRBV-VBN ףp= @JJ rhIN!rhԿNNPx&i-1 tag+i word , steadyJJ%C?RB%Ci-1 tag+i word , milkNN-?RBV-FWT㥛 пi-1 tag+i word NN realitiesNNS?NNPi-1 tag+i word DT profitJJZd;ONNZd;O? i-1 word hourVBZV-JJffffff?NN333333VBN/$RBOn?INrh|?i-1 tag+i word VBP longRBV-?JJv/ͿVBNh|?5ο i suffix sts INoʡNNP%C $VBsh|NNPSt@VBD-VBP/$JJbX9NN㥛 "JJS/$VBNzGVBZxf*@NNSfffffF0@i+2 word ghostRB-?VBN㥛 ?JJ-VBD㥛 i-1 tag+i word CC declinedVBN(\VBD(\? i word follyNN;On?RB;Oni-1 word heroesVBP~jt?NN}?5^IJJ9vi word yardstickVB&1ʿNNGz?JJi+2 word boringlyJJJ +?VBNJ +i-1 word wiretapVBZ(\NNS(\?i+1 word associationsNNSQJJQ?i word highlightVBʡE?NNK?JJKVBDʡEi-1 tag+i word PRP$ swearingVBGffffffNN ףp= ?JJGzi word housingVBGFxNNq= ףp?NNP5^I ?i+2 word illustratedDT r?UH rؿi+1 word toward VBG$CۿJJʡENNM@RBS?VBZ%C?VB/$VBNB`"NNS/$?NNP/$i-1 tag+i word WDT letVBD㥛 ?VBZ\(\VBPjti word authenticityRP#~jNN/$?RBZd;Oi-1 tag+i word IN theoryNN/$?JJ/$ i+2 word eraVBD(\?WDTPnINPn?CD(\i-1 tag+i word VBP excellentVBKJJK? i suffix 70sCD(\?NNS+w@NNSJJsh|? NNPQi-1 word ordinanceWDTV-?INV-i-1 tag+i word NNPS goVBPK7?VBK7i+1 word inflatedWDTClINCl? i suffix nks NN+NCD-JJVBZ-F@NNSV-o'@INDlJJR%CԿNNP ףp= VB|?5^NNPS/$@VBD(\VBN!rhVBP5^I ۿi-1 tag+i word , husbandsVBZQNNSQ?i-1 tag+i word CD planningVBGMbX9NNMbX9?i word monopoliesVBZL7A`NNSL7A`?i-1 tag+i word RB entitledVBN|?5^?VBD|?5^i-1 tag+i word NNP fliesVBZK7?NNSK7i+1 word enthusiasticallyVBPNbX9NNNbX9?i+2 word unisysDTM?RB rh?NN rhINMҿi+1 word partnerVBG +NN+JJjt?INX9vDTX9v?NNP +i word disquietingJJCl?NNClɿi-1 tag+i word -START- withinVBD5^I INMbX@CDK7AJJ rhNNPB`"i-2 word chorusNNʡE?RBQJJT㥛 i word uneasinessNNx&1?JJ?5^I IN~jtпi-1 tag+i word NN leasesVBZNNS?i word electronicNNPS'1ZJJh|?5?NNh|?5޿NNP'1Z?i-1 tag+i word DT citizensNNS$C?NNJ +NNPd;ONNPS ףp= ?i-1 tag+i word -START- lateNNPQRB ףp= ?JJV-?i-2 word defectsUHENNPE?i-1 tag+i word JJ richVBZSJJS?i+2 word congressionalNN\(\RB +VBZQ?NNSQNNP\(\?VB +?i-1 tag+i word -START- graduateNNV-@JJOnNNPRQi-1 tag+i word MD excuseVB1Zd?RB1Zdi-1 tag+i word -START- skilledJJ-?NNP-i+1 word plausibleRB"~?IN"~ i-1 word bookRB'1ZIN'1Z?i-1 tag+i word DT errataNNSw/?NNw/ i word sweptVBNrh|@NNL7A`VBDS?VB rпi-2 word regulationCDNNPSQ?NNP%CԿi+2 word enterRBxINx?VBZ9v?VBD9vi-1 tag+i word RB agreedVBDMb?VBZFxVB5^I VBN/$?i-2 word gridironRB\(\JJK7A`NN|?5^?i word experiencedNNFxѿVBD?5^I JJp= ף@VBNSi+2 word communications NNSM?NNP rh?VB rhVBPSJJS㥛?IN{GztVBZ#~j?NN7A`?VBNx i word gainedVBNn?JJ1ZdVBDˡE?i-1 tag+i word NN conformVBZy&1VB㥛 ?VBP7A`¿i-1 tag+i word POS mainframeJJI +NNI +?i-2 word dollarsJJh|?5NNP&1NNSOn?NN+@i word scenariosJJ`"ֿNNPtVVBP/$NNSPn@NNRQi tag+i-2 tag VBG ,NNPSSVBDtVVBZHzGVBHzGRBRCl@IN~jtпVBGV-¿VBPMbXCD~jt@PRP~jt?NNSNbX9 @CC/$VBN/$@JJn?DTx&1RP r?NN\(\?PDT(\տJJRd;O?PRP$GzWDT+RB ףp= NNPB`"i-1 word normentNNPSDl?NNPDli+1 suffix oraIN1Zd?VBP1Zdi-1 tag+i word IN writeVBQ?NNSQ i word hePRPPn@JJjtܿNNPi+1 suffix eurFW^I +?RB?5^I IN?5^I ?NNPSJJE?NNy&1i-1 word whittakerNNSq= ףp?NNq= ףpi-1 tag+i word IN batteryNNCl?NNSCli+1 word azizaJJx&1?NNx&1i+2 word springNN/$ӿVBD+VBN+?RBZd;OINZd;OǿNNSCl?VB`"VBGMbX9?i word mappingVBGK7NNK7@i-1 tag+i word DT fineJJn?NNn i-1 word bikeNN +?VBD +i-1 tag+i word NNP architectVBP;OnNN;On?i-1 tag+i word CC goVBPT㥛 JJMVBZd;? i-2 word last VBZ&1VBGtV?RB}?5^I@NNsh|?VBD%C@VBNw/]POS rh?VBP\(\ϿWDTRQJJQ?INS㥛?DTNNSQ i word scaleJJMVBD#~jNNPMbNNn@i-1 tag+i word NN becomesVBZMb?NNS+RBT㥛 i-1 tag+i word DT rustingVBGEȿJJsh|??NNT㥛 i-1 tag+i word DT glacialJJS㥛?NNS㥛 i+1 word bookVBZ'1ZDTʡE?RB5^I NN(\VBNI +?POS'1Z?UHI +JJMb?i-1 tag+i word DT symbolNNjt?JJjti-1 tag+i word VB shippingVBG5^I ˿NN(\?JJ^I +i-1 word scientistWDTnINn?i word proddedVBNX9v?VBDX9vi-1 tag+i word JJ embracesNNS"~VBZ"~?i-1 tag+i word , registeredVBNzGVBDzG?i-1 tag+i word NNS existVB5^I ?VBPjt?RB;OnJJ9v i word nurseRBREԸNNrh|?FWHzGٿi-1 tag+i word VBN appallingJJv@RBףp= VBG}?5^Ii-1 tag+i word , backRBMbVBʡEJJ(\@i+1 word pharmaceuticalsINQ?VB333333NNP333333?JJQſi+1 suffix orkVBffffffNNPSGzVBNK7A?PRP1Zd?DT(\?VBG%CԿRB+POS rh?'' rhJJI +?WDTRQ?VBDK7AVBP9vJJRd;O?NNP/$?NNMbX?CC?5^I ҿNNS1ZdRBRˡEIN rhVBZSi-1 word moscowVBZjt?NNSK?NN?5^I ڿi-1 tag+i word IN designingVBG/$?NN/$i+2 word chairJJS?NNSIN㥛 ?VBQRP㥛 i-1 word racialVBGx&1NNx&1? i-2 word justVBNV-ͿVBZ&1INE VBGZd;O?JJRK7?VBD/$?RBbX9@JJp= ף?CDʡENNPSq= ףp?NNzGRBRPnNNSJ +?NNPL7A`RPV-@$}?5^IJJS+?VBPv?UHzG?DTQVBi word deterredVBDZd;?VBNZd;i+2 word motivesVBZ5^I ӿVBsh|?VBPMbX9?NNV-i-1 tag+i word DT cuckooNNQ@NNPQi+1 word lastsVBPy&1NNQ?JJA`"ۿi+2 word outsidersVBGV-NNV-?"i-1 tag+i word VBD extraordinarilyVBN= ףp=RB= ףp=?i+1 word elementsVBw/?VBGK7AJJn?NN+i+2 word managingVBZVBP?NNPoʡ?NNPSoʡi-2 word valueVBN㥛 NNPSClRB&1VBDzGڿRBRMVBGv/?JJR?5^I ?JJ"~ҿCCw/?DTw/VBFx?NN(\IN&1?NNPCl?i-1 word pesticidesVBN`"VBD`"? i word earnedVBN~jt?JJCl׿VBDq= ףpi-1 tag+i word IN parliamentNNPSZd;NNK7A`տNNP$C?i word revitalizedVBN?NNPi-1 tag+i word CC proclaimVBPsh|?NNSffffffNNQVBGz?i-1 tag+i word VBN potentialNN;On?JJ;Oni-1 tag+i word PRP poorerVB9vJJR9v?i-1 tag+i word RB contractedVBN/$?VBD/$i+1 word realtyLSףp= NNPףp= ?i-1 tag+i word IN chargesVBZMbNNSS?JJ1Zdi-2 word altheaNNPS?VBNB`"?JJSVBDB`"i word mcgregorNNP?NNi+1 word shareholders VBG+?WDTK7A?JJ r?DT/$޿NNPS㥛ԿVBV-?NN'1ZINq= ףpVBZl?NNSli-1 tag+i word JJR formsNNSʡE?NNʡEƿi+2 word associatedRBS?JJSoʡNNZd;O?RBZd;OVBGZd;Oi-1 tag+i word -START- oneDTV-NNS+NNPX9vNN/$?CDCl@PRPʡE@JJd;OINʡEi+2 word includesWDToʡLSoʡ?RBx&1INʡEDTMb?NNPvJJv?SYMOni-1 tag+i word VB inappropriateVBMbJJV-?NNCli+2 word investmentsMDy&1?VBy&1VBGy&1NN+?JJ{GzIN9v?DT9vNNPX9v?i-2 word widespreadVBZ-NNSx&1пJJlNNV-NNP1Zd?i-1 tag+i word VBG sometimesRB?NNS i+1 word view WDTMbX9INmDT/$ @VBPZd;ONNDlVBD rhVBNI +RBK7A`?JJQ?i-1 tag+i word WDT negotiateVBPn?RBni+2 word rockedWDT|?5^?DT|?5^i+2 word margaretVBZB`"NNB`"?i-1 tag+i word NNP flewVBZ ףp= VBD ףp= ?i word intertwinedVBNRQ?JJRQi word marriedVBN{GzJJ{Gz@i word discontentNNS?JJSſi-1 tag+i word NNS attractedVBNp= ףRBKVBD+?i-1 tag+i word `` taiwanNNS|?5^ٿNNNbX9NNP?i-2 word fertilizedVBGV-NNSK7A`ݿNNZd;O?i-1 word engelkenVBZV-?NNSV-i+1 word giltsVBNn?VBDni-1 word ideasRBw/?VBNv/WDT rh?JJˡE?IN rhNNS'1Zi-1 word boomedRPp= ףINp= ף?i-1 tag+i word NNP perspectiveNNjtNNPjt?i+2 word bundesbankJJsh|?NNPsh|?? i word novelsNNS;On?JJ;Oni word improperlyRBp= ף@NNtVJJT㥛 i word karenRBZd;ONNPZd;O?i word verbatimNNSrh|JJm?NNPMb i word reliefVBN\(\JJʡENNCl@i+1 word holdingJJ~jth?INzGʿDTx&1?NNSSNNP'1Z@NN~jt VBDbX9?i-1 word understandsRBR r?RB9vJJRʡE i word racyJJ rh?NN rhi+2 word criteriaVBx?VBPw/ԿJJ9vNNB`"?i-1 tag+i word DT mobNN9vNNP9v?i-1 tag+i word , portugalNNPx&?NNPSx&i-1 tag+i word NNP forcesVBZxNNSx?i-1 tag+i word , woreWP(\VBD +@VBPINDl i word healthNNPmNNm?i-1 tag+i word DT pastryNNX9v?VBNʡEJJK7i-1 tag+i word VBP strictlyNNSˡERBˡE?i-1 tag+i word PRP$ aimsNNS"~?NN"~ i word falconNNPNNPSp= ףNN5^I ?INx&ٿi+2 word interfereNNS= ףp=?NN/$VBZB`"ٿi word mistrustJJ(\NNSy&1NN ףp= @i-1 tag+i word IN approximatelyRBB`"?JJB`"i-1 tag+i word CD fiscalNNSʡENN$C?JJK7CDzG i word pigsNNSʡE@NNʡE i suffix vuRBV-NNV-?i-1 suffix myeVBZMbNNPMb? i word letsNNSI +JJL7A`VBZQ@VBP-i-1 tag+i word VBP gardenVBN333333NN333333?i-1 word crouchedRB}?5^I?RP}?5^Ii-1 tag+i word RB congenialNNS+JJ+?i-1 tag+i word WP playVBPtV?VBDtVi-2 word carlosJJKINxƿNNPʡE?FW;Oni-1 tag+i word RB believedVBZV-VBN}?5^I̿VBD㥛 ?i-1 tag+i word NNP majorNNPףp= ?VBDףp= i-1 word playerRBbX9NNbX9? i word rentsVBZ+?NNS+i-1 tag+i word PRP$ protectedVBNV-JJV-?i+2 word counselJJ(\?NNMbX9?VBDx&VBNNbX9?VBP%CRBHzGVBOn?i-2 word individualNNCl绿VBPjtRBMbX9VBZNbX9ȿNNS ףp= NNP+η?NNPS9v?JJ?i-1 tag+i word TO orthodoxVBjtJJK7?FW"~ji-1 tag+i word RB aboutPDTK7A`տVBNV-RBrh|?INQ?VBCli-1 tag+i word DT dustyJJˡE?NNˡEi word nettingVBGA`"?JJA`"ӿi-1 tag+i word RB addedVBN"~jԿJJQտVBDʡE?RB- i word mayhapRB|?5^@NN(\ڿNNPFxPDTCl绿NNS333333 i suffix lemPRP$MbX9RB7A`JJ1ZdNNPS㥛@i-1 tag+i word DT fibersNNS(\?NN(\ i word beeperVB(\NNtV@JJRFx?JJ5^I NNPʡEi word portableNNSˡEܿNNFx?JJ ri tag+i-2 tag VBN :RPuVRBZd;NNQJJGz?NNS/$?NNPuV? i word batmanNNPZd;O?JJZd;Oi tag+i-2 tag VBG POS NNE?WP +?EXNbX9RBNbX9?IN +VBZ/$ٿNNS`"VBG#~jNNPQ?CD/$JJ/$?i-1 tag+i word , westVBPEJJ(\?NNPJ +i-1 word specialVBPK7JJHzG@NNL7A`i+1 word filesJJX9v?NNX9vi+1 suffix kyo VBDQVBNDlVBZV-?NNPMbX9VB ףp= CDClJJX9v?IN1Zd@NNV-i word cuttingVBG333333@NNK7JJ(\пVBA`"i-1 tag+i word JJ collagesVBZmNNSm?i-1 tag+i word VBZ filmsNNS5^I ?RB5^I i-2 word bobbyRBm?NNS +ֿJJjtNNB`"?NNPMbX9Կ i word ft.NN?NNS i word vigorNNSq= ףpNNq= ףp? i+1 word tireJJMb?NN`"NNP#~j? i word l'oeilNNHzGFWHzG? i-1 tag+i word VBG impressionistJJMb?NNMbi-1 tag+i word JJ redVBNHzGJJNbX9?NNPCl?i word aftertaxJJS㥛?NNS㥛 i word frontJJ= ףp=?NN-?VBPnRBm?NNSNbX9NNP|?5^i+1 suffix iffINQ?DTQVBOn@NNn?VBDMbVBNDlVBPmJJni word limelightNN|?5^?JJ|?5^i+2 word ruderNNV-?JJV-i-1 tag+i word IN rottenJJp= ף?JJRh|?5NNy&1ԿFW#~j i word bufferVBd;O?NN ףp= JJv׿i-1 word serveRBMbX9ĿINMbX9?i+2 word overhangRBR/$JJR/$?i-1 tag+i word JJ capableJJq= ףp?NNq= ףpi-1 suffix astRBR)\($?VBGmFWQNNP{Gz?JJ"~j @IN/$?CD\(\?NN#~j@VBPV-VBZ rNNPSV-?NNS/$?VBDoʡ?PDT(\?VBNClRPV-DTKVBjt?RBZd;Oi+1 suffix mptJJT㥛 ?NNM?VBNQ?POSX9v?RBtVVBZX9v i word nearsVBZS?NNSSi-2 word pariahDTQWDTQ?i word increasingVBGV-@JJFxNNsh|i-1 word creatingJJv/?NNSX9vRBV-?NNv/ͿNNP(\?i-1 tag+i word VBD formerlyRBx&?JJx& i word rumbleJJ%CVBP%C?i+2 word investNNZd;NNPZd;?VBZA`"NNSA`"?i-1 tag+i word NNP tracksNNS+?NN+i-1 tag+i word VBD yetRBh|?5?VBNh|?5i-1 tag+i word NN pollsVBZ333333NNS333333?i-1 tag+i word VB 'sPRPv?RBSVBZT㥛 NNPV-?VBV-߿POSOn?i-1 tag+i word JJ cdNNSNbX9NNK7ɿNNP/$?i-2 word balanceVBZ/$ӿNNS/$?JJM@NN㥛 NNPףp= i-1 tag+i word NN thereafterRBd;O @NNSJJ7A` i word only VBPV-RBI +@INMVBZSVB(\NNQPDT ףp= VBNT㥛 NNS(\RPClJJZd;@NNPq= ףp i-1 suffix :DTV-?NNPSZd;߿NN~jt@VBD/$CC= ףp=ڿNNSS㥛?RB\(\?INʡEPRP$ ףp= ?VBZOnVB ףp= ?JJV-?VBNRQ?VBPHzGJJR|?5^NNPSCDX9v?WDTZd;VBGp= ףWRBSi-1 tag+i word `` phaseNNS?JJ-ӿNNP rhi-1 tag+i word , participantsNNS?VBNi-1 tag+i word TO liftingVBG;OnNN1Zd?VB'1Zi+1 word valuesVBPZd;?JJh|?5?NNPK7AVB/$?VBGOn?NNv?VBDd;OJJR/$ i-2 word hereRBJ +?JJRQ?VBP(\@DT?NNStVNNPSSۿJJ rȿVBvVBDoʡNNPJ +?NNmRBRx&1ԿVBNffffff?EX%Ci+2 word establishingNN#~j?JJ#~jܿi+2 word earnings NNNbX9VBD!rh@JJR)\@VBN|?5^VBZv/VB/$JJT㥛 ?VBP~jtRBy&1?NNS(\ſVBGx&1?RBR;Oni-1 suffix tikJJuV?NNuVi-2 word poundsVBGQ?RBnٿNNCl?VBN+?JJDlINn?NNSCli+2 word grumbleJJ(\?NNP(\ؿi-1 word expectationRBʡE?NNʡE i-1 word holeRPGz?RBGzֿi word forcingJJMbXVBGMbX?i-2 word conspiringVB&1?JJ&1 i+2 word rose JJRbX9?JJ +?VBDx&NNQ@VBNx&?VBP5^I PRPGz߿RBSINA`"NNPSffffff޿VBG(\NNS333333?NNPA`"?i-1 tag+i word NNS remainVBClVBPrh|@RB}?5^Iܿi+1 word clothingJJS㥛FWx&1RBSmݿVBNZd;? i word nutsVBZ㥛 NNSV-?INv/i-1 tag+i word `` intenseJJd;O?NNd;O޿i+2 word charactersRPq= ףpͿNNSZd;OͿNNZd;O?INq= ףp? i word byrdNNPn?NNni-1 tag+i word NNS dieRP9vNN9v? i+2 word sfxNNOn?NNPOn i+1 suffix `VBZENNSQ?NNPSoʡNN!rh?POSE?JJK7A`?i+1 suffix alkJJA`"?NNd;O?VBN'1Z?RBx&1IN-DTy&1|NNPZd;i-1 suffix feeVBZ"~jNN"~j?i-1 tag+i word `` tenCD(\?VB(\i-1 tag+i word VB copyrightedVBNףp= ?JJףp= ӿ i+1 word weekNNuV?CDrh|RBDlINQ?NNS㥛 ڿNNP^I +VBGK7?JJ{Gz?i word amityvillesNNPS㥛 ?NNP㥛 i suffix eby NNP;On?WRBffffff@JJ(\VBP/$JJRuVRBPn@IN%CVBZ+NNSZd;OVB5^I NN;OnڿVBD1Zdi-1 tag+i word VBZ similarlyVBN/$RB/$?i-1 tag+i word DT amendedJJK7A`VBNK7A`? i-1 suffix hVBNx&1JJ+?VBDV-i-1 tag+i word JJ sideNNZd;?JJZd;i-1 tag+i word NNS stayVB rhѿVBPS㥛?RBRFxRB ףp= i-1 tag+i word TO liveVBL7A`?VBNx&JJtVi tag+i-2 tag WP NNPVBZ㥛 ¿VBPuV?NNClVBD?5^I ?i word enforcementNNQ?JJuVVBD|?5^i-1 word tableJJ!rhNNP!rh? i-1 word callNNS rhNNJ +?NNPB`"ѿVBPOni-2 word underminedVBD+JJ?NNMbпi-1 tag+i word , !DIGITSJJSNNSPnؿNNP\(\VBDV-VBN+CDMbX@i-1 tag+i word VB highRBˡEJJˡE? i suffix racJJ/$NNy&1NNP^I +?i+1 word investigatorNNףp= ?JJףp= ۿi word sanctionsNNSv/?JJv/i-1 word tokyoNNPSףp= RBˡENNx&1?CD$CVBPx&1JJ/$?NNS'1Z?NNPV-?i-1 tag+i word IN edgeNNPSbX9NNPbX9?i-1 word streamedRB)\(IN;On?RP'1Zi word comptrollerNNSjt޿NN+?NNPjt? i word proudJJV-@VBNSNNClINʡE i word pilingNNˡEVB5^I VBGsh|?@i-1 tag+i word NN regimeVBNzGNNzG? i-2 word daleJJS㥛NNS㥛?i-1 tag+i word VBP liftedVBNQ?VBDQi-1 tag+i word VB minusculeNN7A`VBNQRBSS㥛JJZd;@ i suffix LetRB1ZdINClDT(\NNP(\VBT㥛 @NNClѿVBD-@VBPSi word multipartyNNK7?JJK7i-2 word scowlsVBD rVBZ r?i+1 word enthusiastsJJ-CD-?i-1 word worriesWDTy&1RBv/IN(\@i-1 tag+i word IN trackVBPX9v?INX9vi-1 suffix rabVBGMbNNMb?i-1 tag+i word NN residuesVBZS㥫NNSS㥫?i-1 tag+i word JJ polypsVBp= ףNNSp= ף?i-1 tag+i word VBD mightyRBSQRB|?5^?JJX9vi-1 tag+i word WRB surgeryNNK?RBKi-1 word styledRP~jtIN~jt?i-1 tag+i word VB worriedVBDh|?5VBNh|?5?i-1 tag+i word VB undertakenVBNT㥛 ?JJT㥛 i-1 tag+i word DT innerJJFx?NNFxi-1 tag+i word VBD appearVBV-?INV- i suffix now VB^I +?NNʡE CD9vVBZrh|NNSHzGVBDx&VBNoʡVBPE@JJ}?5^I?i+1 word foundationNNPS'1ZJJMbNNV-?NNP{Gz@i-1 tag+i word DT centralNNPSB`"JJ-NNP/$?i-1 tag+i word NN rollsVBZV-NNSV-?i+1 word egotistJJ{Gz?NN{GzĿi word happensVBZMb@NNS;OnJJy&1VBD&1 i word lexusNNZd;ONNPZd;O?i-1 tag+i word NNS introducedVBNy&1?VBDy&1i-1 tag+i word , surveyedVBNSVBDS?i+1 word resourceNN-NNP-?i-1 tag+i word WDT attractedVBNףp= VBDףp= ?i-1 tag+i word DT sceneNNS"~jNNJ + @JJ(\i-1 tag+i word '' rightRBMb?JJA`"VBDI +ƿ i-2 word fccNN`"?JJʡEJJR?5^I ҿ i-1 word dateVBZ+?RPV-RBV-?NNS+i-1 tag+i word JJ pepperNNE?FWEпi-1 tag+i word VB solicitingVBG-?NNB`"JJ333333ӿ i word faunaNNS~jt?NNzGFWʡEi word commitmentJJDlVBDSӿNNrh|?i-1 tag+i word NNP devotesVBZ+?RB+ÿi-1 tag+i word , coveringVBG5^I ?NN5^I i-1 tag+i word DT europeansNNPSq= ףpͿNNS}?5^I?NNPK7i-2 word monopolyNNPSJJS?i-1 tag+i word IN dieselNNSClNN-?JJ rhi+2 word pilotsRB%CINRQȿVBZ\(\DT|?5^@CCʡEVBN\(\?i-1 tag+i word , academicJJCl?NNCli-1 tag+i word VBD joyNNSFxNNFx? i suffix DAYDTClPRP$sh|?տNNx&1?NNPOnۿ i+1 word rideNN%C?JJ%C i-1 word lateNNPSCl?VBG5^I NNL7A`@CDsh|?INbX9NNS&1@NNPKi-1 tag+i word IN reportedNNSS㥛VBNK?JJVBD`"?i-1 tag+i word PRP onlyVBP+RB+?i-1 tag+i word NN titleRBV-ݿNNV-?i+1 word soybeansCCI +?DTI +i-2 word teachingFW/$?IN/$i+2 word puertoNNPSx&NNPx&?i-2 word conditionedVBp= ף?JJp= ףi word disappearVB(\VBP}?5^I@NN"~jJJrh|߿i word technologiesVBZOnVBPNbX9ؿNNSB`"?NNPvNNPS"~ @i-1 suffix sirNNPSSNNPS?i-1 word tacitNNS㥛?RBS㥛i+1 word idealVBZ%C?POS%Ci-1 tag+i word RB jumpedVBN ףp= VBD ףp= ?i word batteriesVBZENNSE?i-2 word fairlyNNSSNN~jt?JJ"~j̿CD/$?i-1 tag+i word IN tacklingVBGS?NNSi-1 tag+i word DT yearlongJJoʡ?NNPoʡi+2 word citizensNNMbX9?JJMbX9RBoʡ?INoʡi-1 tag+i word JJ dyerNNPSMbNNPMb?i word terminalNN @RBˡEJJL7A`NNPoʡ?NNPSK7Ai+2 word accompanyVBPQ?NNQ i-1 word abcNNPMbX?VBZ/$?NNPSMbXٿNNS/$i+2 word interconnectNNףp= @VBGףp= i word toughestJJS/$?NN/$i word transportedVBNʡE?VBDʡE i suffix 180JJ~jtCD~jt?i+2 word covetedCDV-NNV-?i+2 word servingJJjt?NNjt?VBZV-VBʡEۿi+1 word officiallyRPy&1?RBy&1i+1 word athenaRBV-߿INV-? i+1 word jan.VBDCl?VBZ1Zd?VBNClRB1Zdi-1 tag+i word `` peopleNNPS\(\NNS/$@RB5^I JJjtNNPi-1 tag+i word IN springVBG"~NN"~@i-1 tag+i word NNP intrauterineNN7A`JJ7A`?i-1 tag+i word DT catastrophicJJv/ͿNNPv/?i+1 word vengeanceVBGvJJv?i-1 word corp.VB?5^I FWlNNS{GzJJʡE?INA`"?VBZ/$VBG7A`?POS^I +?RBRx&1?VBPGzVBN1ZdRB9v?NNxVBD/$?i+1 word overallsVB㥛 JJ㥛 ?i-1 word createsNNSA`"NNV-?JJ"~VBDCli-1 tag+i word RB valuedVBNtV?RBS㥛VBDZd;i+1 word normallyVBZ#~jNNS#~j@i word allowedVB|?5^JJʡEտNNxVBDsh|??VBNnJ@VBP)\(RBClNNSffffffi-2 word ceilingNNv?JJ'1ZĿRBJ +i word obstacleNNZd;?JJZd;i+1 suffix dueVBZ~jtNNSV- @NNP+NNPSZd;OJJS㥛NN'1Z?RB?i word milestonesNNS ףp= ?NN ףp= i-1 tag+i word CC amountRB/$NN/$?i-1 tag+i word JJ damagedVBD/$޿VBNx&?JJZd;i-1 tag+i word DT workaholicNN\(\@RBV-JJB`"i-2 word gripesNN%C?NNP%Ci-1 tag+i word VBG accountNN~jt?JJ~jti-1 tag+i word NNS bowedRBjtVBDjt?i+1 suffix cer VBDsh|??VBNsh|?CDʡE?IN$CNNPA`"VB}?5^IVBG +?JJ- @VBZʡE?NNzG?VBPK7ARB/$ѿi-1 word legallyVBN(\?JJ(\i-1 tag+i word NNP chateauVBD+NN+?i-2 word pressureJJ~jt?DT|?5^?NNPbX9VBv߿RBʡE?NNffffff?CCp= ףPDT rhi-1 tag+i word WP flyVBPq= ףp?RBq= ףpi+1 word existsJJףp= NNPףp= ?i-1 tag+i word , acceptsRBv/VBZzG?VBV-¿i-1 tag+i word PRP$ financingVBGV-?NNV-i-1 tag+i word PRP$ variedVBNJ +JJJ +?i-1 tag+i word PRP$ radioNNy&1?JJy&1i tag+i-2 tag RP VBPRP$B`"?NN/$?RBRp= ףVBHzGRB rhRPQJJrh|߿PDT&1ڿNNPQ?VBG|?5^?VBN&1?PRPB`"JJRp= ף?IN ףp= DT~jt?i-1 tag+i word DT playingNNS?JJSi+1 word pinkertonVBNjt?JJ ףp= ߿NNPPni-1 tag+i word NN splintsNNS|?5^?VBN|?5^i-1 tag+i word DT handicapJJJ +NNJ +?i+2 word fernandNNSQNNPQ?i+1 word parliamentJJjtNNPjt@i-1 tag+i word POS paragonJJQNNPQ?i+2 word gouldRBx&1ȿINx&1?i-1 suffix ugsVBN{GzVBD{Gz?i-1 tag+i word DT considerableJJ`"?NN`"i-1 tag+i word CC distributorsNNPS`"?NNP`"i-1 tag+i word -START- amocoJJGzNNPGz?i-1 word handedRP"~@RBbX9INMbXi+1 word seemedVBGK7NN9v@VBPsh|?WDT+?JJʡEIN+i-1 tag+i word CD fineNNbX9?JJbX9 i word deadVB ףp= NNsh|JJRX9vVBNK7A`JJp= c"@NNSjti+1 word operationsRBQVBPxVBZףp= NNPQNNPS+VBGbX9?VBD +VBNv @FWDl?JJ~jtNNSzGVBuV@NNS㥛DTQ?i-1 tag+i word -START- taxNNPx&1NNx&1? i suffix uysPOSZd;VBPSUH#~jVBZQ @NNSCl@VBNNK7 i+1 word penceNNZd;JJףp= CDB`"?i-1 tag+i word RB unalteredVBNA`"ۿNN\(\VBD~jtJJK7A`@i-1 word deliverJJ^I +?NN^I +i-1 tag+i word '' tomNN5^I ۿNNP5^I ?i-1 tag+i word -START- cameraNN!rh?NNP!rhi-1 word governNNS&1PRP&1? i suffix HOLNNSDlѿNNMNNP rh?i-1 tag+i word NN ridingVBGS?NNS i-2 word maulJJ+?NN+i+1 word differenceNN7A`?JJRQRBsh|?ſi-1 tag+i word NNS laughingVBGʡE?NNʡEi-1 tag+i word VBD suchPDT(\?JJ(\i-1 tag+i word -START- imeldaCCx&NNPx&?i-1 tag+i word NN driftedVBNMbVBDMb?i+2 word hatredVBNʡE?VBDʡEi+1 word acceptancesNNS$C@JJJ +NNsh|?NNP^I +NNPSS㥛?i+2 word caricatureVBN"~jԿVBD"~j?i-1 tag+i word CC figuresVBZ r?NNSRQؿJJS㥛i word generatingVBGL7A`?NNL7A`i-1 tag+i word JJ conciliatoryJJuV?NNuVi-1 word malcolmVBZw/ĿNNSw/?NNNbX9?NNPNbX9i-1 tag+i word TO vietJJv/NNPv/?i-1 tag+i word TO bolsterVB"~?RBR"~i-1 word considerableNNSL7A`JJʡE@NN&1i-1 word passengerVBDOn?INOn i word dsNNS rh?NNP rhi tag+i-2 tag : )NNmVBDQ?VBN'1Z?CDm?JJA`"˿NNPQi-2 word nightsVBZʡEVB9vʿVBDv/? i+1 word raysJJh|?5?NNh|?5i-2 word moviesNNGz?VBNGzi-1 tag+i word IN prohibitionNNHzGNNPHzG?i+2 word foremostRB(\?JJ)\(̿NNP= ףp=i-1 tag+i word POS concertedVBN rJJ r?i-2 word conceptVBDp= ףCCGzVBNp= ף?CDˡE?RBMbDTsh|??NNˡEi+1 word unworthyNNX9v?JJX9v i word unrulyJJZd;?RBZd;׿i-2 word moisturizerVBN!rh?VBD!rhi-2 word automaticVBZsh|?տNNSsh|??i-1 tag+i word DT milkNN^I +@JJy&1NNPSi-2 word buzzesJJSNNDl@NNP%Ci+1 word vestedJJ+?RBB`"NN+߿i-2 word thoroughfareCDrh|?NNrh|Ͽi-2 word subliminalWDT+?IN+i-1 tag+i word RB countedVBNv/VBDv/?i-1 tag+i word JJ agreedVBDl?NNjtINZd;i tag+i-2 tag UH ``RBjtNNn?VBPK7APRPsh|?JJw/ĿNNPw/?VBK7A?i+2 word estate RBd;OJJR/$?VB rNNPSA`"RP?5^I ҿJJoʡ @VBDy&1|VBPK7AVBGMbX9?NNMbX9RBR/$VBN\(\ϿNNP+?i-1 word murderNN r?NNP ri word consumedVBD(\VBNL7A`?NNi word jacobsonNNPS|?5^ɿNNq= ףpݿNNPx&?i tag+i-2 tag WP VBVBD rh?VBN rhi-1 tag+i word RB aroseVB|?5^ʿNN?5^I RB7A`VBD(\@i-1 tag+i word CC createVBV-?VBPV-i-1 tag+i word VBZ bornVBN= ףp=?RB= ףp=i-1 tag+i word DT mentallyRBK7A?NNK7Ai-1 tag+i word NN crashesVBZx&1NNSx&1?i-1 tag+i word RP proposedVBN&1?JJ&1i-1 tag+i word WP regulationNNP9vNN9v? i-1 suffix h.NNPSSNNPS?i tag+i-2 tag PRP NNSVBPMbRBlVBZV-¿DTtVVB/$RP1Zd?VBD333333?VBNQ? i word variesVBZ-?NNPSQտNNS1Zdi-1 tag+i word CC panickyVBMbJJMb?i-1 tag+i word POS southernJJQ?NNQi-1 word sharedNNA`"?JJA`"ۿi-1 tag+i word NN talkedVBNffffffVBDffffff?i-1 tag+i word NN claimsNNS㥛 ?NN(\VBZZd;?i-1 tag+i word VB backRB-F@VBNZd;JJNNSxVBI +RP"~j?i-1 tag+i word RB callVBx&1VBPx&1?i-2 word becomesNNGzNNPGz?i-1 suffix rds VB~jt?RB(\VBNMb?JJ$CVBZ%C?MDMbX9NNV-?VBDMbVBP9vWDTx&1?INx&1NNP rh?i-1 tag+i word NNP cascadeNNPS-NNP-? i word soRBRT㥛 JJR+VBNw/LS%CVBZX9vPRP$-CC!rh@VBS VBP(\JJq= ףpNNPMRB|?5^(@NNLVBDxIN/$F%@i-1 tag+i word IN discontinuedNNS333333VBN333333?i-1 tag+i word PRP upgradedVBPh|?5VBDh|?5?i-2 word indefinitelyVB~jtNN~jt? i word wannaVBrh|߿NNPrh|?i-1 tag+i word PRP talksVBZx&?VBDx&i-1 tag+i word NN planNNSGzNNPh|?5NN(\u@VBD&1VBPGz߿VBZCli+2 word easternRP +NN(\RBK7@INoʡ?NNS= ףp=NNPV-?i-1 tag+i word VB covertJJMbX?NNMbXi-1 tag+i word VBP experienceJJjtVB(\?NN/$ٿRBQi word recycledVBN㥛 JJJ +?VBD333333ÿi-1 word supremeJJHzGNNPHzG?i word isabellaNN?NNP}?5^I?VBZ- i suffix ourRBB`"JJv/VBD&1SYMʡEVB9vNNlVBP@CC㥛 VBN{GzĿVBZ"~jNNS+?NNP5^I PRP$S@CDmR@IN- i word dewVBNʡENNʡE?i-1 tag+i word VB birthNN7A`@JJ;OnRBffffff i word undidVBZ-VBDtV?INjti-1 tag+i word VBN unwillingVBG9vJJ9v?i word buildingsNNS/$@NNKNNP5^I ӿi-1 tag+i word JJ s&lNNx&1?NNPx&1i-1 suffix relRBRsh|??JJRsh|?ݿi-1 word schedulesRBR%C?JJR%CԿi-2 word welcomedNNV-?JJV- i word czechFWQJJ+@NNQNNPV-i word midsummerVBNZd;NNjt?JJR333333ÿi-1 tag+i word DT rollingVBG/$?NN/$i+1 word huberDT|?5^ٿNNPoʡ?INZd;i-2 word magazineVB%C?VBG?NN#~jVBN+JJZd;?VBZQi-2 word lordedRPMbPJJSIN\(\?i+2 word aidedRBR㥛 RB㥛 ?i-1 tag+i word PRP authenticityRP#~jNN/$?RBZd;O i-2 word macNNHzGNNPHzG?i tag+i-2 tag PRP VBPMD'1ZNNMb@NNSNbX9VBN5^I @RBRL7A`?DT{Gz?VBS?VBDx&1PDTx?VBP5^I WDT1ZdۿVBG ףp= RPB`"INK7?VBZ/$?NNPQRBS㥛JJoʡ@JJRL7A`i-1 tag+i word IN undergraduateJJ rh?NN rhi-1 tag+i word NN pcsNNPX9vNNSX9v? i word brashJJZd;?NNZd;i-1 tag+i word CC breedersNNPSK7A`NNPK7A`?i-1 tag+i word DT outflowNN}?5^I?JJ}?5^Ii-2 word announcement VBZZd;RPK7ɿVBDT㥛 ?RBNbX9?IN\(\NN/$?JJRnRBRn?NNS/$i+2 word dearbornNNSffffffNNffffff?i-2 word literalNNSFxNNFx?i-1 word pieceVBDx?RP;OnVBNx޿RB;On? i suffix empNNy&1NNPy&1?i+1 word alloyJJʡE@NNʡEi-1 word exportingNNSbX9NNPJ +NNPSV-?i-1 tag+i word CC acrossVBV-IN rh?VBN|?5^ҿRBKǿNNP&1i word criticsNNPSʡENNS(\@RB/$NNPʡEi-1 tag+i word RB transparentNNK7AпJJS㥛?RBp= ףi-1 tag+i word VBD protectsVBZOn?VBOni-1 tag+i word POS gotJJ$CVBNOn?NNV-׿i+1 word stores JJ9vNNSZd;OVB!rhNNPS#~jԿNN!rh?JJSQ?VBNʡE?VBPtVRBSQPOSV-?VBZV-NNPX9v@i-1 tag+i word NN befittingJJGz?NNGz i word c.i.fVBDlJJ-?NNSi-1 tag+i word NNP laVBZZd;NNP'1Z?VBDFx i-1 word grewRBQ?INoʡRPCl?i-1 tag+i word WP pitfallsVBDVBZ/$NNS/$@i-1 tag+i word VBG stakesNNS-?VBN-i-1 tag+i word -START- howWRBMb@NN1ZdJJNNPw/i-1 tag+i word IN maintainingVBGJ +?NNJ +ٿi-2 word entirelyNN\(\?VBG\(\i+1 word investorsNNx&1 VBDT㥛 @NNSMb?VBNtVVBPMbPNNPS'1Z?VBGjt?PDT~jthJJSjt?POSX9v?JJx&1̿RP/$ÿVBZ1ZdNNP?5^I ?VBjt?WDT9vFWClRBSCCS㥛IN|?5^?DT^I +߿i-1 tag+i word IN suchPDTh|?5?JJbX9ȶ?NNV-i-1 tag+i word IN campaigningVBG-NN-?i-1 tag+i word JJ greenJJ333333?NN333333i+1 word playsJJ rDTx&ѿVB~jt?NN/$?NNPOn?i-1 tag+i word RB owedVBD'1ZVBN'1Z?i-1 word fanaticVBG~jtNN~jt@i word analgesicJJffffff?RBffffffi+1 suffix eek NNPS`"CD/$?INQ?NNSlҿNNP^I +VBGK7?RBDlNNuV?VBDffffff޿JJ/$?i+2 word kemperJJS|?5^NN|?5^? i-1 word sinNNPbX9?JJbX9i-2 word equivalentNNNbX9?VBG#~j?RBRFxٿJJxJJRFx? i+1 word lentVB#~jVBP#~j?i+2 word sharesJJSˡE?PDT{GzWDTsh|?RPI +INZd;?NNS rh?VB$C˿VBNjt?JJVBDʡE?RBSˡEJJR9v?DT{Gz?NNPS!rh?NNh|?5RBR9vRBsh|??NNPCl?VBGV-߿i-2 word these VBZK7A`?NNSS@NNPsh|?VBMbX9NN@VBNfffffRBS㥛@INDlJJ"~VBD@CC?VBP r @ i word poofNNK?RBRffffffRBS㥛 i word second UHoʡRBL7A`?JJ (@NNPˡEܿNNS#~jVBZ rhVB'1ZNN|?5 VBNClLSn?i+2 word handicappedVBGZd;O?NNZd;Oi+2 word development VBNQJJ?5^I ڿNNPS㥛RBn?VBDCl߿VBG?NNy&1INT㥛 ?VBCl?NNPSS㥛@i-2 word block RBSNN@JJMbVBZNNSV-?NNPK7A?VBrh|VBDuV?VBN&1? i suffix 988NNS㥛CDx&1@NNSy&1ܿi+2 word infamousVB\(\?VBP\(\i-1 tag+i word : rightVBPʡERBʡE?i-1 tag+i word NN seriouslyNNStVRBtV?i+1 suffix colJJ'1ZVBDnVBGS㥫?VBN㥛 ?i word likewiseNNP ףp= RBB`"[@NNSx&1VBN;OnNNx&i+1 word latinRBʡEֿINʡE?i-1 tag+i word DT diversifiedJJtV @NN/$VBNq= ףpi-1 tag+i word JJ blacklistingVBGSNNS?i-1 tag+i word VB nightsNNS-?RB-i word circledVBDjt?VBNjtĿi-1 word climbedIN@RP;On RBMi+1 word mappingDT{Gz?RB{GzԿi+2 word defectsVBPx&1?VBx&1 i word bipedNNS?VBDSi-1 tag+i word NN sisalNNQNNPQ?i-2 word anticipationJJRA`"?JJOn?RBRףp= NNX9vVBNOni-2 word sceneNNSzGVBZ!rh@VBx&NNPSGz i word candyNNSB`"NNˡE}@JJv VBh|?5i-1 tag+i word RB unnervingVBGl?JJli-1 tag+i word NNS stayedVBNףp= VBDףp= ?i+1 word whittleRBxNNPx? i-1 word rosaNNPS|?5^NNP|?5^?i-1 word psyllium RPʡERBRQINʡERBQ?VBZ-@NNSSVBrh|NN|?5^@POSMbVBPףp= i-1 tag+i word `` nowVB= ףp=RB= ףp=?i word standingNNjt?JJRQVBG%C?i-1 word portableNNPʡENNSˡE?NN(\µ?i+1 word portionINnDTn?VBGK7A?NNK7Ai-1 tag+i word JJ treesNNSCl?NNClǿi word monthlyRB(\¿NNSbX9NNPX9vJJ5^I !@NN\(\ VBPy&1EXX9v i word kkrNNS ףp= NNP ףp= ?i-1 tag+i word VBZ raisingVB rVBG r?i-1 word tuckedRPn?RBni-1 tag+i word IN libelNNSv/NNv/?i+1 word injuryNNPS?JJS i-2 word lockDTB`"?NN'1ZVBDw/PDTB`"ɿVBNMJJzG@i-1 word others JJX9v?CC(\տNNPOnRBV-?IN~jt@NNSoʡNN|?5^ڿVBDZd;VBN-?VBP{Gzt?WDT1Zdi-1 tag+i word VBN pushVB5^I NN5^I ?i+2 word cathcartVBGw/?JJw/i-1 tag+i word TO followJJVB?i+1 word rolledJJ@NNZd;RB~jti-1 tag+i word TO campVB+NN+? i word impactNNP;OnNNSZd;ONN= ףp=@JJMbi+2 word demonsVBP㥛 ?VB㥛 i word slotNNQ?JJQi-1 tag+i word IN provostNNQNNPQ?i word complicatedVBNrh|?JJ-VBD-?i-1 word inventoryNNSp= ף?NNp= ףп i word raisesVBZA`"@NNSv/NN9vJJZd;Oi+1 word regainVBZ$CNNS$C?i-1 tag+i word TO fruitionVB333333ӿNNx&1?JJK7i-2 word crestmontNNP1ZdNNPS1Zd@ i word pimpsNN"~NNSA`"?JJX9v!i-1 tag+i word -START- montedisonNNq= ףpNNPq= ףp? i word agentINrh|NN/$?JJ-NNPZd;?i+1 word jolivetNNDlNNPDl?i-1 tag+i word NN appliesVBZ`"?IN`"i-1 word inputRB\(\?NNS(\пNNoʡJJS㥛i+1 suffix ownVBZ/$ƿNNSZd;?NNP rJJRQJJST㥛 PRP!rh?JJRNbX9RBSl?FW1ZdVBNFxVBPX9v?PRP$#~j?DTZd;?POSffffff?NNPSClVBGE@NNL7A` VBDv/?VB?RB}?5^I?i-1 tag+i word -START- bothINRQȿDT= ףp= @NNSZd;NNP/$CCK?JJi-1 word germanJJDl?VBZffffffNNSClNNP/$VBG1Zd?RBK7A`NNS?FW$Ci-1 tag+i word VBZ shortsightedVBN~jtJJ~jt?i-1 tag+i word TO specificJJ/$?VB/$i+2 word limitationsNNSOnRBV-ͿIN?5^I ?RPy&1NNPSOn? i suffix oed VBDS @RBv/VBZq= ףpVBK7A`տNNMVBPV-NNS'1ZJJOnVBN)\(@i-1 word repertoireWDT+?NN+i-1 tag+i word CC justifiesVBZS㥛?VBjt޿VBDh|?5i-1 tag+i word , qvcNNSA`"NNPA`"? i word tradedNNSClVBNT㥛 @JJ/$VBDp= ףؿi-2 word productiveRBR{Gz?JJR{Gzi word boatingNN!rhJJB`"ѿVBGS? i word carbonJJS㥛NNS'1ZNNbX9 @i-1 tag+i word JJS confusingJJK?NNKi word frequentlyVBPGzJJuVNNZd;׿RBJ +@i-1 tag+i word IN howardRPA`"@NNPA`"i-1 tag+i word VBP trulyRBE?JJEi word startingVBGn?NNJJ~jt i suffix RTHRBZd;NNPZd;?i-1 tag+i word POS electricalNNSJJS?i-1 tag+i word NNP foodNNRQ?JJZd;ONNP1Zd?i+1 word impressionDT"~j?IN"~ji-1 word frankNNPS-NNP-?i+1 suffix wly INףp= DTףp= ?NNh|?5RBRS@JJRSVBZGz?VBK7POSGzVBPZd;?i-1 tag+i word , chargingVBG5^I ?NN5^I i-1 tag+i word JJ agreeingVBGT㥛 ?JJT㥛 i-1 tag+i word JJS undervaluedVBN`"?JJ`" i-1 word avecNNS rhNN?RBT㥛 пi+2 word permitsJJFx?RBFx i word boost JJ ףp= INnRBSSӿFWˡEVBNffffffJJSClRBRVBP r?NNP-VB333333@NNQ?VBD-ӿi word obdurateJJ-?NN-i-1 tag+i word WDT receiveVBZ-VBP-?i-1 tag+i word NNP clementsNNPS\(\NNP\(\?i-1 tag+i word IN narrowNNS333333JJ333333?i-1 tag+i word VB milksNNSZd;O?NNZd;Oi word challenge NNPS +JJ +NNP +?VBv/@NN5^I VBN +VBPMbX9?VBZ5^I ӿNNS+i word riskierJJPnNN +RB{GzJJR(\@i-1 word favorVBNV-JJV-?i tag+i-2 tag WDT VBZVB-˿VBP rhVBNtVWP'1Z?VBDtV?i-1 tag+i word CC trainNNMbX9?NNPMbX9i-1 tag+i word NNP showsNNPV-VBZKNNSoʡ?i-2 word bonnieJJSK7A`ſJJ/$?NNK߿i+2 word crutchINQ?RBQi+1 word surprisingDTQ?JJRQi+1 suffix d'sNNPSZd;O@NN|?5^NNPq= ףpi-2 word extendingVBP-޿JJMb?NN-?NNPMb i word satVBT㥛 NN"~VBD%C @VBNn?VBPK7NNS!rhi-1 tag+i word DT !HYPHEN RBSNNSv?JJS?NNd;OVBD ףp= JJS+JJRh|?5?VBPQNNPS rhVBGNbX9 @CDjt?VBNOnNNP= ףp=ʿi-1 tag+i word CC '70sNNSSCDS@i+2 word gossipingVBGʡE?NNʡEi word producesVBZ-@NNSClNNd;OVBDCli word jealouslyVBNV-RB/$?VBDOni+1 suffix tedNNK7A` @NNPB`"?VB rhNNPSx&1?JJSvWDTl@RPZd;O@FWS㥛NNS@PDT rhVBGx&DTy&1RB&1@PRP$S㥛PRPS㥛?RBRZd; @CDKMD9vVBZ-RBS~jt?INMbX9?VBNRQ?JJy&1POSPn?VBDy&1VBPK7JJRV- i word much VBZd;JJ?5^I @CDClPRPSDTX9vNNSK7ANNPQNN rhJJRX9vVBP^I +VBNK7ARBE)@VBZ)\(i word counterpointNNS+NN{Gz@NNP`"i+2 word bloodVB(\VBPZd;?NNSx&?PRPx&NNNbX9 i word jerkedVBN;On?NN;Onڿ i-2 word ''VBL7A`?JJS-?``)\(@PDTK7A?VBG?5^I DT㥛 ?CCܿNNPS|?5^CD#~j?FW rh?JJ}?5^IԿNNS^I +VBN1ZdRP;OnNN"~jRB +NNPQ?PRP$&1?WDTMbIN{Gz?JJR/$RBS-RBRv?VBZx&1?VBD/$@POS rh?PRP&1VBPd;O?i-1 tag+i word -START- glasnostFWDl@JJ+NNPMbXi-1 tag+i word JJ standardNN}?5^I?JJ}?5^Ii-1 tag+i word VBZ marriottNNbX9?NNPbX9i+1 word exhibitionNNPSV-ҿNN+?JJ+NNPV-?i+2 word conferenceNN5^I ۿNNPOn?JJp= ףi-1 tag+i word -START- twiceRB?NNPi+2 word pressuresVBMbX9?JJS㥛ĿNNOni+1 suffix alsVBPS?JJR`"?CD+?VBD~jtCC|?5^JJSL7A`?RBSL7A`пVBNx&@UHClRBHzINA`"@VBZNNPq= ףpNNPS^I +ǿVBGK7ANNB`"@JJn@DTB`"?NNS$CVBy&1i+1 word syndicatesVBZ(\POS(\?i-1 tag+i word VB accumulatedVBN1Zd?VBD1Zdӿi-1 tag+i word JJ upbeatNN ףp= JJ ףp= ?i+1 word strengthsVBGoʡ?JJoʡտi-1 word esselteVBNZd;@VBDZd;i+2 word nathanJJRuVWRBuV?i-1 tag+i word DT coveredVBN333333JJ333333?i-1 tag+i word VBZ strongerIN+RBRrh|ϿJJK7JJRMbX9@i+2 word activistRBˡEIN7A`VBQJJ/$?NNv?VBNQ@JJR㥛 i word giddyJJS?NNS i-1 tag+i word -START- glamorousJJ^I +?NNP^I +i-1 tag+i word WP alongVBZ/$INˡE?VBDףp= i-1 tag+i word NNP parksNNPS|?5^NNP|?5^?i-1 tag+i word JJ shrinkageNNS-NN-?i-2 word familiesVBZQNNSQ?i-1 tag+i word NN paidVBNI +?NN"~jVBDtVi tag+i-2 tag `` WRBJJ+FW+?i-1 tag+i word CC admitVBZnVBPn?i-2 word hemmerNNPStVοNNPtV?i-2 word reapedJJX9v?NNX9vRBI +޿INI +? i word grahamNNK7NNPK7?i+1 word officialsJJ~jtNN;On@VBN(\?INMb?DTMbNNSx&1?VB|?5^NNPS^I +ǿVBG9v?UHClRB#~jVBZCD+?JJRlNNP7A`? i-2 word samRBHzG?INHzGi+1 suffix an.VBZ1Zd?VBNClRB1ZdVBDCl?i word guardianJJQNNPQ?i-2 word withdrawJJ rhVBGʡE?VBNʡE?NN7A`ڿi-1 tag+i word CC overseasNNP-RB"~j?JJ&1ڿi-2 word solutionJJRMbX9@IN+RBRrh|ϿJJK7i-2 word boyerVBN ףp= VBD ףp= ?i+1 word voicedRBd;ONNPd;O?i-1 suffix auxNNSV-?NNZd;OFWѿi+2 word bankruptcy VBGT㥛 ?NNGzVBjt?VBDPn?VBNV-VBP\(\IN1Zd?DT1ZdۿNNPtVi-1 tag+i word IN somewhatNNSI +ֿRBI +? i suffix ior RB#~j<@NNl VBN9vVBP)\(NNPHzG?VBnVBD'1ZCDnJJsh|@NNSX9v i-1 tag+i word -START- sekisuiJJZd;ONNPZd;O? i-1 word winsJJ+RB+?i+1 word showcaseJJ/$?NN/$ i word quistNNQ޿NNPQ?i word parallelVBRBm@NN= ףp=VBPx޿JJ= ףp=?VBZ ףp= i-2 word large VBL7A`RBQſNNףp= ?VBDˡE?VBNp= ףJJL7A`尿RPV-WDTףp= ?INMb?i-1 tag+i word DT reportJJmRBClVBPCl?NNm?i+1 word tolentinoNNPGz?JJGz޿i-1 tag+i word -START- noteVBtV?NNtVi-1 tag+i word IN eavesdroppingVBGNbX9NNNbX9?i-1 tag+i word POS takingVBGZd;?NNZd;i-1 tag+i word VBD comeVB\(\?VBN\(\߿i-2 word radzyminRB?5^I ?CC?5^I i+2 word carryingNNPSw/?NNʡEVBNZd;O?JJ rhNNPw/Կi-1 tag+i word TO littleJJn?VB(\RBx&?i+1 word spursDT;On?IN;Oni-1 tag+i word NN earlyVBZ^I +RBMbX9?NNJJʡE?INv/i+1 word lendingNNPuV?VBNOnNNGz?INA`"JJK7A?i-1 word wonderfulNN ףp= ?NNP ףp= i-1 tag+i word `` gloryVBPKJJˡEܿNNPL7A`? i suffix ful VBDq= ףpJJfffff$@VBZ/$NNPClRPClNNv/JJRT㥛 ?VBN^I +VBP^I +INsh|?NNSQVBX9vRBMi-2 word cooperJJQNNPQ? i-1 tag+i word -START- automaticJJClNNPCl?!i-1 tag+i word NNP gerrymanderingNN&1?VBG&1i+2 word rationalNNFxVBDCl?JJFx?VBNCli-1 word internmentVBZ+NNS+?i+2 word equalJJA`"?VB'1Z?NNA`"RB'1Zi+2 word costingNNSJJS?i-1 tag+i word NNP s.p.a.NNPS!rhNNP!rh?i-1 tag+i word DT torturedVBNMbXJJMbX?i-1 tag+i word NNS widenedVBNMbVBDMb?i+1 suffix evyCDS?VBDSJJENNPE? i word beepNN= ףp=@JJʡERBˡEԿVB(\i+1 word reactionJJ%C?PRP$V-?NNtVJJRSVBNw/?PRPV-i-1 tag+i word -START- carolNN7A`NNP7A`? i word contraJJQ?NN1ZdNNPl?i word golenbockNNV-RBh|?5NNPV-?i-1 tag+i word NNP buyVBEԸVBP`"?NN㥛 ¿i-1 tag+i word NN mayorNNMbX9?NNSMbX9i+1 word assignedNNS= ףp=ڿNN= ףp=?i word perrierNNSRBQNNP'1Z?i-1 tag+i word RB liesVBZB`"NNSQ?VBNS㥛ؿ i-2 word hudVBD\(\VBNK7@VBZ333333?NNS333333NNPOn?NNPSOnNN1Zdi-2 word ravineVBClѿJJbX9?NNw/ܿNNP/$ i word \*\*SYMK?NN9vJJ+i+2 word castingJJ333333?VBNK7AпRB333333VBDK7A?i word stadiumsNNSV-@NNʡEFW\(\ i word maniacNN ףp= ?RB ףp= i-1 tag+i word PRP$ leftJJ)\(@NN5^I VBN9vi+2 word flourishingFWʡENNSʡE?i word breederVBʡENNuVͿNNPl?i-1 tag+i word DT cyNN rhտNNP rh?i-2 word leasingNNPSCl?NNPCli+1 word unscrupulousVBP'1Z?VBD'1Zi+2 word classifiedRBR!rhRB!rh?i+1 word benchmarkVBZ~jtPOS~jt?RBK7A`INK7A`?i-2 word strategiesVB +RBMb@NN= ףp=JJ= ףp=?INQ޿NNS\(\i-1 tag+i word CC prepareVBK7 @NNK7 i-1 tag+i word WP seekVBZ|?5^VBP|?5^? i word titansVBZx&1ܿNNS`"?NNV-i-1 tag+i word POS permanentNN{GzJJ{Gz? i suffix ods CDMbXVBPoʡVBZ(\@NNSY.@NNPNbX9NNPS+@JJT㥛 NN/$VBNʡERB+i-1 tag+i word RB rebuffedVBN~jt?JJ~jti-1 tag+i word NN reachedVBNS㥛ܿVBDS㥛?i-1 tag+i word VBP splitVBNS?JJSi-1 word prohibitingNNPL7A`JJL7A`?i+2 word tennisVBG/$NNSh|?5?NN/$?NNPh|?5i+1 suffix ronJJT㥛 NNSFxNNP)\(?VBV-?NNPSnVBG?RB{GzNNL7A`?i-1 word ethicalNNSK7A?NNK7Aпi-1 word prototypeNNV-@JJX9vNNP\(\i+2 word supportersJJS!rh?RBS!rhi+1 suffix tomNNx?JJtV?VBNx&1i-1 word implicationWDTQINQ?i word laboratoryNNtV@JJClNNP~jtӿ i suffix tapWDT(\NN(\?i-1 tag+i word IN briefNNNbX9@NNPNbX9i+1 word proclamationsVBG"~jJJuV@NNCli-1 tag+i word NN owesVBD(\VBZ(\?i-2 word tiltedWDT~jt?IN~jti-1 tag+i word NNP oppenheimerNNʡENNPʡE?i-1 tag+i word , playedVBN?NNi+1 word unrealisticallyRB-?IN-i-1 tag+i word JJ ballisticJJCl?NNCli-1 tag+i word NN screensVBZI +NNSI +?i-1 tag+i word NNP settlementsNNPT㥛 ?NNPST㥛 i-1 word gnawingRPq= ףpINq= ףp?!i-1 tag+i word -START- ballooningVBGV-NNV-?i-1 word gleefullyVBPd;O?VBDd;Oi-2 word allusionsNNS(\?VB(\i+1 suffix iksVBNv/JJ5^I @NNPCl i+2 word diJJV-VBD;OnVBZK7FW|?5^?i-1 suffix iseVBDQINʡENNPS~jt?JJMbX9?VBNv?RBRK7?VBPٿRB!rh?NN)\(@WDT333333?VBGjtDT&1@VBZ|?5^?NNPm?RPJ +CC rh?NNSGzJJRMbX9i-1 tag+i word NN bringingNNVBG?i-1 tag+i word VBZ continuedVBPjtԿJJK7?VBDx&1i+1 word expectingVBGuVNNuV?i-1 word atomsVBPʡE?NNʡEi-1 tag+i word JJ livingVBGRQNNoʡ?JJmݿi+1 word reduceVBRQWDT!rh?RB\(\?INDl?i-1 tag+i word WDT createdVBN+VBD+?i-1 tag+i word PRP$ bridgeNNCl?JJCli-1 tag+i word JJ concreteVBZ/$NNSX9vJJ/$?NNX9v?i+2 word eliminateVB?VBGZd;NN= ףp=?VBNv/?VBPʡE?JJ/$VBZ;On?NNS;Oni+2 word churchVBQNNSh|?5?NNMbX?NNPT㥛 ؿi+2 word ballparksVBuVVBPh|?5@NNSClVBNX9v߿ i+1 suffix )JJx&1 VBDx&LS rh?NNPSzG?CD!rhVBP ףp= INV-VBGh|?5?VBZGzNNףp= @VB rhRP/$NNSA`"?FWmVBN?5^I ?RBV-?NNPK7A?PRPx&1?i+2 word corruptionNNZd;O?JJvRBQi+1 word column''}?5^I?JJv/?VBNtVNNx&1POS}?5^Ii-1 tag+i word VB warsNNSrh|?NNrh|i+1 word formsVBZffffff޿VB/$?JJNbX9NN= ףp=JJR7A`@i-1 tag+i word RP paralyzedJJS?NNSi tag+i-2 tag '' JJ VBZS㥛NNP"~JJv?VBG!rhԿRB(\?NNK?INS?DTSNNSʡE?VBEi-1 tag+i word IN tollsNNSm?NNmi+2 word though NNCl@VBNS?VBP'1ZRBL7A`NNPZd;O?VBM?JJCl@VBD(\?CDV-IN9vVBZClNNSnNNPS/$i-1 word mickeyNNPK7?NNSK7i-2 word tokyoNNS㥛?JJSZd;?RBGz?INGz߿NNPCl?VBGSJJMi word lengthyJJ+?NN+i+2 word requiredNNS"~j?VBGףp= ?NNmJJPn?NNPffffffi+1 word featuresNNM?JJMi-1 tag+i word IN bajaNN$C@NNP$Ci-1 tag+i word VB herPRP$K7A?RBR(\RBK7PRPQ@i-1 tag+i word VB achievedRB/$VBN@JJxi+1 word sustainableRBSRBRS?i+2 word emblematicVBZZd;NNZd;?i-1 tag+i word NNP firstRB333333@JJClNNPy&1i-1 tag+i word NN heatsVBZ?NNSx&VBD +i word allegesVBZjt?NNS(\NNZd;i-1 suffix wetCCOn?CDOni-1 tag+i word NNS surfacedVBNQVBDQ? i word trompeFWx?NNPrh|PRP$tVi word midtownRBK7ANNP}?5^I̿VBQݿJJQ?NN"~@VBN+CDSi-1 tag+i word -START- worldWDTSNNPS?i-1 tag+i word DT dutchNNPSX9v?JJ%C@NNʡENNPx&i word similarJJS㥛?NNS㥛i+2 word azoffJJ7A`CD7A`@i+1 word disappearedNN(\?JJ(\i-1 word taiwaneseVBGsh|??JJ`"NN%Ci+1 suffix aabDTMbX?INMbXi+1 word involvementJJzG?NNzGڿi+2 word monsantoNNPV-?NNSV-i-2 word british VBy&1JJ`"VBDZd;?VBNZd;NNSS㥛?NNP|?5^NNPSZd;O?NNI +?RBRʡEVBPZd;@RBˡEVBZˡE?i-1 tag+i word RB stuckVBPx&VBDx&?i word lincolnNNPSԿNNDl?RB ףp= JJ$CNNP rh?i-2 word launderingVBNX9vVBDX9v?i-2 word smellVB+VBP+?i+1 word unencumberedNNSV-?NNPV- i word flatsNNʡENNSʡE?i-1 tag+i word JJ slidNNnVBDn?i-1 word burnedRB rh?NN rhi-1 tag+i word -START- azemNNP/$?NN/$ i word brazenVBZV-׿VBV-?i word multifamilyNNSX9vJJMbX@RBq= ףpi+1 word culpritJJ7A`?NN7A`ҿ i+1 word pushVBN5^I JJRh|?5?JJ{GzDT+?NNS+NNV-VBD5^I ?i-1 tag+i word VBD higherRBL7A`JJR"~ҿNN rhRBR-?i word summarilyVBGz޿RBA`"@JJ|?5^VBD- i-1 word shunNNMb?JJRMbпi word sheltersNNPx&1NNSx&1?NNx&1 i+1 word ramaNN~jt?NNP~jti word entrepreneurNN}?5^I@JJ ףp= VBD ףp= i-2 word producesNNw/?NNSClѿRB\(\JJnڿi+2 word amiraVB= ףp=?VBPMNNvPDTKJJK?i-1 word productiveNNS"~?VBZ"~i-2 word bradyVB/$?NN/$i-1 tag+i word PRP discoveredVBNX9vVBDX9v?i-1 tag+i word NNP escalanteNNS'1ZNNP'1Z?i+2 word tumblingVBN$C?NN$Ci+2 word embarkNN"~?JJ"~RBffffff?INffffffi+1 suffix hinINDl?RP rhVBd;O?VBGS㥛?JJ333333 NNS^I +?RBRmDT-VBZv/VBN{Gz?NNFx?PDT/$WDTOnRBX9v@ i word laysVBZ?NNSi+1 word sclerosisRBRSJJS?i-1 tag+i word JJ cluesNNSʡE?NNʡEi-1 tag+i word NNS meantVBPffffff޿VBNCl?NNv/VBDy&1i-1 tag+i word TO rescueVBSNNS?i-1 tag+i word IN ralliedVBD^I +?NNS^I +i word brazilianNNPSrh|JJzG @NNP5^I i-1 tag+i word JJ minorNNT㥛 RBSx&1JJ)\(?i-1 tag+i word VBD vigorouslyRB?5^I ?JJ?5^I i-1 tag+i word CC semiannualRBV-JJV-?i word objectsNNS"~?RB"~i+2 word editorNNQ޿NNPQ? i word turkeyNN(\?JJMbNNPX9v?i-1 tag+i word NN pregnantJJv/?NNv/i-2 word argumentsRBRSJJRS?i-1 tag+i word RB ungentlemanlyJJ&1?RB&1i word barteringVBZA`"VBGK7A`NNFx@i-2 word identifiedVBZoʡNNSK7A`?NNZd;OVBD'1Z?VBN'1ZܿVBP+?WDT`"?IN`"i word cynicalJJS?NNSi-1 word initiativeWDT1ZdIN1Zd?i-1 tag+i word , speakingVBG-NN-? i+2 word pumpNN!rhNNP!rh?i-2 word information VBGV-JJ(\NNSA`"NNbX9H@CCPnWDTףp= ?INףp= DTPn?NNPQ?i-1 suffix vilNNX9v@VBP1ZdJJV-VBZV-?NNSnNNPQ˿NNPSQ?i-1 tag+i word TO freeJJHzGNNPHzG?i-1 tag+i word CC raisedVBD~jt?VBNT㥛 пJJJ +i word ancientJJffffff?NNffffff޿ i-2 word chewVBtVVBPtV?i-1 tag+i word VBZ needVBV-?VBP㥛 RBףp= i-1 tag+i word IN concertNNSnڿNNn? i suffix ozeNNSSNN{GztVBD?5^I ?i+1 word kerryNNSbX9NNbX9?i-1 tag+i word VB profitNN+?JJ+ i-2 word tameNNP?5^I ?NNS?5^I i-2 word proposesJJv?NNv߿i+2 word hybrid INV-?NNSnVBV-?JJM?NN&1?VBNMbXRBV-?VBGV-VBP?5^I ҿ i word changeJJ"~jNNS1ZdNNPQVB;On@NNK7?VBDjtVBPx&?i-1 suffix oadVBZd;߿JJʡENNMbX9?RB333333IN/$?VBZS?NNSDl?NNPrh|?i-1 word revisedJJV-׿NN5^I RB|?5^?NNP&1? i suffix nneJJ\(\߿NNP\(\?i word laughterJJR/$JJq= ףpNNZd;?i-1 tag+i word TO safeguardVBMbX?NNMbXi-1 tag+i word -START- goliathsNNSB`"?NNPB`" i word stableNNbX9JJbX9?i-1 word frustratingVBG5^I ?NN5^I i+2 word blueprintNNA`"JJA`"?i+1 word eminaseNN5^I VB)\(?VBPMbXi word employeeNNn?JJˡENNP/$ٿi-2 word computers NNSsh|??VBnJJ ףp= @VBPjt?RBMb?VBGsh|?NN7A`VBD333333VBN333333?i+2 word humblePDTʡE?JJʡEi-1 tag+i word VBG bitsVBZ(\ſNNS(\?i word wastingVBGq= ףp?JJjtNN"~j?i+1 word battleVBGrh|JJCl @NNRQVBNRQi word sheratonJJh|?5NN-ƿNNPZd;?i+1 word dialysisJJ"~?NN"~i+1 suffix eesVBG~jtпWDTx&1?RBRQ?JJRtV?NNSFxMDd;ONNPS(\NNPn?RBR&1VBNK7AVBD"~INlCD1Zd?DT333333ۿNNP!rhVBMbX?JJ;On?CCZd;O@FWbX9?VBP rh?VBZQ i suffix NRMNNS9vJJNNPZd;O?i-1 tag+i word NNP topJJS?NNSi+1 word similarINCl?DTClѿVB#~j?VBGQNNQ?VBD(\@VBN(\JJ#~ji-1 tag+i word , punkNN"~?JJ"~i+1 word wickerJJ+?NN+i-1 tag+i word VB eatingVBGOn?NNK7AJJI + i word freezeNNSy&1NNK@NNPףp= VBMbX?i-1 word sovietsNN+VBDI +?VBPV-?VBN-i-2 word conversationsDT(\?JJ(\i-1 word imaginePDTˡE?JJˡEi-2 word troublingVBNV-?VBDV-׿i-1 tag+i word , permitVBPS?JJSi word individuallyRBʡE?NNʡEi word computingVBG|?5^?NN/$NNSʡEi-1 tag+i word CC recklessnessVB"~NN"~?i-1 tag+i word JJS structuralJJPn?NNPnпi word malaysiaUH9vNNDl?NNP#~ji-1 tag+i word -START- talksNNSuV?NNPuVi+1 suffix .a.NNPbX9 @CCKNNS/$ۿJJOnNNrh| i-2 word pasoNNPK7?VBDK7i word zapotecNNPtVJJtV?i word budgetaryJJx?NNxi+1 word attractsWDT+?IN+i+2 word conventVBZFx?VBPFxi word contactJJZd;NNZd;?i-1 word reportingWPrh|?NNv?JJRJ +?RBRJ +WDTrh|RBvi+1 word governorNNjtNNPjt?i+1 suffix ccoNNPSzGڿJJzG?i+2 word fightingNNPSS@NNSX9vNNPbX9i+1 word reaffirmsNNGz?JJGzi-1 tag+i word NNS imaginableVBPؿJJ?i+2 word organizingNNPSClNNh|?5NNPy&1?i-2 word easilyRP-?VBNv/?RB$Ci-1 tag+i word VBP poorerJJRK7?NNK7i-1 tag+i word RB recommendingVBGRQ?VBRQȿi-1 word externalVBP/$NN/$?i+2 word motionVBDn@JJ rhVBI +VBN +NN\(\i+2 word dwindledVBGCl׿NNm?JJCli-1 suffix barVBGK7NNS\(\?NNK7?VBZ\(\i-1 tag+i word -START- realINClRB"~j?JJK@NNP"~ji-1 tag+i word VB mixedRBRףp= JJףp= ?i-1 tag+i word VBZ regulatorVB5^I NN5^I ?i-1 tag+i word RB knownsNNS%C?JJ%Ci+2 word articulateNNl?JJli+1 word residentsNN9v?JJ9vi-1 tag+i word -START- grainNNx&?RBx&ѿ i-2 word much VBG+?WDT-JJ ףp= ?DTZd;NNPQ޿RB?NNy&1ܿVBN?5^I ?IN(\?VBZ㥛 ?NNSA`"i-1 tag+i word , surrenderedVBDx?JJxi+1 word health VBI +NNGzJJRn?RB&1DT +޿NNSK7MDffffffVBP333333?INA`"?VBZ+?NNPDl?JJjt? i word fdaNN&1NNP&1?i-1 tag+i word NN demonstratedVBNʡEVBDʡE?i-2 word cultureNN;On@JJd;ONNPSVB;OnNNPSS?RB rhѿi-1 tag+i word DT commonNNPSnNNףp= ۿJJ%CԿNNPFx?i-1 tag+i word VBD rifeJJʡE?VBNK7A`տNNy&1 i suffix FORIN/$@NNP&1NNd;OCDi-1 tag+i word TO measureVBv/?JJףp= NNI +i-2 word associationsVBsh|??INsh|?i-1 word elderlyVBGZd;ONNL7A`?RB{Gz i-1 word losVBDZd;ONNPSGzJJx&@NNPV-?i-1 tag+i word VBZ distractingVBG(\?JJ(\i-1 tag+i word JJ planningNNPSףp= VBGS㥛?NNX9vJJFxNNPףp= ?i-2 word point VB(\µ?VBGlNN?5^I WDTX9v߿RBMbJJ~jtxVBN%C?CDGz?INQ@DTp= ףi+1 word startsNNX9v?VBP1ZdWDTd;O?JJ;OnҿINd;ONNPRQi-2 word processingNNPS?5^I ڿJJ%C?NN{Gz?RBS?JJSRBRx&RB~jt?i-1 tag+i word RB acquiredVBN?VBDi+2 word disposingRPQ?RBQֿi-2 word performersVBQ?NNQſINʡEi+1 word shareholderVBl?VBGZd;NNClVBP/$JJ%C@VBZ/$?NNPh|?5?i+2 word cooperationWDT333333IN333333? i-1 word giltVBZHzGVBNZd;?NN|?5^ڿ i word choseVBZPnVBPV- JJ$CNNQVBD-@i+1 word tahitianRBjtUHw/ĿJJV-ϿNNPS㥛?i+2 word surveysRBK7A`INK7A`?i+1 word discriminatoryRBy&1?NN(\JJbX9i-1 tag+i word DT patriarchalNNPSB`"JJ#~j?NNX9vοi word virtualNN/$JJ/$?i word orchardsNNSx&1?JJh|?5INh|?5i-2 word delmedJJSnٿJJRn?i-1 tag+i word JJ leaseNNbX9?JJbX9ƿ i+2 word left NNy&1?VBDMbXVBPQſNNPNNS+VB/$?NNPSS㥛?RB?VBZy&1i-1 tag+i word NN bringsVBZA`"?NNSA`"i+2 word average VBPS㥛?INX9v?DTX9vCCv@RBRV-JJRV-?VBNB`"RBvCDRQ?NNRQVBDmտ i word gloryVBPKNNPSd;ONNv @JJK7NNPX9v? i-2 word caseIN5^I NNSHzG?NNP r?NNPS ףp= RB1ZdJJˡEWDTZd;?VB1Zd?VBG&1?VBZrh|VBNM?DT rпNNZd;O?VBDjt?JJRZd;Oi word telecommunicationsNNSI +NNPq= ףpVBGzNNPSuV?NN1Zd@JJrh| i+1 word grimRBn?INni-1 word bernsteinVBZ'1ZPOS'1Z? i word homerNNS +ֿNN\(\?RBRQJJRZd;OݿVBq= ףp?i-1 tag+i word NN describesVBZ r?VBD r i word islandNNP'1Z?NNPS'1ZNNSV-NNCl?CDZd;i-1 word branchNNPCl?RPA`"?NNClRBuVINp= ףi word consummatedVBNA`"?JJA`"ۿi-1 tag+i word , storeJJR7A`NNZd;@RBmINK7Ai-1 word governorNNPQ?VBDQ i+2 word baldJJZd;?RBZd;i-1 tag+i word DT dairyNN1Zd?JJ1Zdi word airborneUH`"NNSmJJx@NN'1Zi word dispersedVBD?5^I ?VBN?5^I i-2 word clarkRP+?IN+i+2 word respondingNNDl?JJDli+1 word exercisableNNbX9?JJbX9i-1 tag+i word NN farmNNʡE?JJʡE i word rc6280NNK7A`@NNPK7A`i word encouragesVBZ-?JJ-i-1 word wavesRPoʡݿINoʡ?i-1 tag+i word DT insidersNNS@NNCDi word sanguineVBS㥛JJS㥛?i-1 tag+i word -START- draculaNNI +NNPI +?i word equipmentNNZd;OݿNNPZd;O? i word cheekyRBR#~jJJL7A`?VBNp= ףi-1 tag+i word NNP marketersNNPS1Zd?NNP1Zdi+2 word economy VBPClWDTX9vIN rh?VBZףp= ?VBʡE@JJ5^I ?VBDZd;ONNSףp= VBG5^I ?NNjtRBʡEݿi-1 tag+i word IN medicaidVBNmJJ/$NNPCl?i+2 word milwaukeeJJS˿NNPS? i+1 word k.RBSS㥛NNPS㥛? i+2 word noNN`"VBNx&?INrh|?JJ|?5^FWRQVBPx&1?RB{GzNNP(\?EXM?VBZS㥛DTtV޿NNS&1NNPSjtVBGv/ͿVBDM?WDTCl@i-1 tag+i word DT frenchNNPStV?JJsh|?@NN7A`NNPCl i word pollenNNtV@NNSZd;OVBGV-VBN5^I ˿i tag+i-2 tag VBN WDTPDT5^I ?JJ5^I  i word fundsNNP ףp= NNPS|?5^?NNSx&1 @NNx&1i-1 suffix zenNNjt?VBDA`"?VBNA`"ۿJJS㥛VBZQNNSK7A?i-2 word reflectingJJ-?NNv/NNSp= ף?VBN1Zd?i-1 tag+i word DT spendVBD~jtVBP~jt?i-1 word phoenixNNPS?NNPSZd;O?JJ{Gz i word sparksVBZʡE?NNPʡEi word messiahNNPQ?NNQi+2 word trackINlVBZuVWDT= ףp=?i-1 tag+i word WP oversawVBZZd;OVBDZd;O?i-1 tag+i word , continuedVBNx&1VBDx&1@i word posturingVBGNNrh|@JJ'1Zi-2 word toselandJJSMbX?JJ)\(NNS)\(?RBSMbXi-1 word switchedRBffffffINffffff? i suffix vonNN rRBV-VBZK7A`NNP!rh@PRP$lJJ\(\ i-2 word fanJJRGz?NNGzi word pickensNNPS/$NNP/$?i-1 tag+i word VBZ jewishNNPSJJjt޿NNPCl?i-1 tag+i word NN wonJJK7A`VBDK7A`?i+1 word earringJJSQ?NNQ i+1 word a$NNVBG?i word strengthensVBZ333333?NNS333333i-1 word walkerVBZDlNNSDl?i-1 tag+i word NNP reformNNV-?NNPV-i+2 word affairDTףp= NNPףp= ?i-1 tag+i word NN fadNNS㥛 NN㥛 ?i-1 tag+i word TO allegedVBp= ףJJp= ף? i word jayNN}?5^INNP-?NNPSuVi word solderingVBGQJJ㥛 ?NNZd;Oݿi-1 tag+i word DT orchardNNh|?5?JJh|?5i-1 tag+i word POS tarnishedVBNL7A`JJL7A`?i-1 tag+i word DT helmNNSx&NNx&?i-1 tag+i word IN oneRBPRP|?5^NN#~jCDV-@i-1 tag+i word `` somewhereRB ףp= NNP ףp= ?i-1 tag+i word NN realityNNˡE?NNPˡEi word interestrateNN/$?JJ/$i-1 tag+i word `` atrunNNSʡEJJ&1?NN{Gzi-1 word confirmationVBGzGNNzG?i+1 word budget RPMb?NNoʡ?VBNX9vCDv?VBP+η?JJˡE?INMbVB-?FWClVBGX9vNNPjt?i-1 tag+i word PRP broughtRBClVBDCl?i-1 tag+i word , moreoverRB/$@NN/$i-2 word avoidNNS1ZdVBG"~jNNEؿJJuV@i-1 tag+i word NN decoratedVBN+?VBD+i-1 tag+i word CD americansNNPSNbX9NNSV-?NNPV-ǿi-1 tag+i word IN nerdsNNPSK7?NNS)\(ܿNNP'1Zi+1 word looseleafJJJ +?NNJ +i-2 word allureVBPV-JJp= ף?NNPZd;O i suffix eldWDTJ +PRPSRB#~j<IN`"NN"~j?NNP?VBN r@CDQNNPS`"RPV-JJd;OVBDJ +@VBPl?VBZ1ZdNNSPnVB㥛 ?i-1 tag+i word DT businesslikeJJx&1@NNMbIN\(\i-2 word rigidNNS"~?VBGPnNN+ӿJJ|?5^?VBN|?5^ڿi tag+i-2 tag DT WDTJJS㥛NNSENNP-ӿNNPSZd;?NNQ?VBP;On?i-1 tag+i word NN cardRBtVNNtV?i+1 word limitsRBMb?JJMbi+1 suffix nseVBPʡE?RB-CDI +?JJK7?NNPS%CܿNN%C?JJSp= ף?PRP$Mb?PRP333333JJRA`"?NNPPnVBʡERBSp= ףVBNffffff?VBG`"޿RBRA`"NNS?5^I ¿VBDMbX i word '60sVBZ%CNNSV-?NN/$RBQCDV-@i-1 tag+i word IN earthquakesDT}?5^INNS{Gz?JJy&1i-2 word beneficialVBX9vNNPX9v?i+1 word idiosyncraticRBSZd;O?JJSZd;Oi word truckingVBGrh| NNrh| @ i suffix namJJ^I +?NNP1Zd?NNi-1 tag+i word POS understatedVBN rh@JJ/$VBDMbXi+2 word daewooVBNFx?VBDFx i suffix YSENNPSHzGѿNNPHzG?i-1 tag+i word DT longerNNSKJJDlNNS㥛JJR rhRBRS@RB7A` @VBZCli-1 tag+i word , nondemocraticJJ+?VBD+i+2 word ambiguitiesVBPT㥛 VBT㥛 ?i-1 word subsidizesJJSm?RBSmi word buckledVBNʡEͿJJʡE?i-1 tag+i word RB employCC`"VBP`"?i-1 tag+i word NNP announcedVBP-VBNrh|׿NNClVBDB`"@i word catalogueNNp= ף?JJp= ף i-1 word niceNNS= ףp=ڿNN= ףp=?i-1 tag+i word DT scoreNNPSB`"RBRnNN+@NNP&1i-2 word krenzVBNq= ףpVBDq= ףp?i-1 tag+i word NNS dropVBGz?VBPd;OVBNGzNN5^I ?RB1Zdi+1 word anesthetizedDTK7INK7? i word unveilJJ%CԿVB%C? i word gruffJJ"~?NN"~i-1 suffix becVBZ9vNNS9v?NN1Zd?JJ1Zdi+1 word sisuluJJV-NNPV-?i-2 word absenceVBGClNNSZd;O?JJL7A`? i+1 word guyJJSS?JJ^I +?RBSSRBRNN"~j?i-1 tag+i word JJR careNN333333?JJ333333i-2 word accessVBNy&1?JJOnNNPHzG?i+1 word airlineJJ1Zd@NNP rPRPx&1NNy&1CDx&1? i+1 word mereRBJ +ɿDTJ +? i-1 word keptRBQ?JJv/?VBN\(\VBPQVBGS㥛?i-1 tag+i word JJ delaysNNS|?5^?NN|?5^ѿi+2 word enormousCC|?5^DT|?5^? i suffix URTNNPSL7A`ؿNNQ@NNP"~ji-1 tag+i word -START- oneidaLSQNNPQ?i-2 word dutiesVB= ףp=?JJ+NNMbi-1 tag+i word NN neverthelessRBn?NNn i word cubicNNS= ףp=JJbX9@NNSi-2 word originationsJJR +RBR +?i-1 tag+i word NN aDTS㥛?NNPDlNN/$?INFxi-1 word steelmakersVBD ףp= VBPq= ףp?RBףp= i-1 tag+i word TO ruleVBL7A`?NNL7A`i-1 tag+i word IN sovietJJv?NNPbX9NNPSCli-1 tag+i word DT grayingNNS㥛VBGn?JJFxi+1 word woodwindJJK7A`@RBA`"ۿNNMbXٿNNPV-i+1 word restsNNMb?JJMbi+1 suffix lenVBP|?5^INZd;߿VBZMb?NNSMbNNPZd;?VB|?5^?i-1 tag+i word IN electricNNS"~jJJ"~j?i word solvencyNNx&?JJx&i-2 word expertiseNNPSV-NN7A`?RB7A`NNPV-?i-2 word shoutedFWv?NNPvi-1 suffix lipRPX9v?NNV-?RBX9vNNPV-i+1 word troopsJJM?NNPM i suffix faxNNx?JJxi-1 tag+i word VBZ servedVBDjtԿVBNjt? i-2 word badNNSQNNQ?''5^I ?RBGzINGz?VBZ5^I i+2 word frontierNNvNNPv?i-1 tag+i word DT quebecNNPjt?JJV-CDKǿi-1 tag+i word -START- a.NN+CC+JJʡE?i+2 word kleinCC?5^I ڿNN9vNNPA`"? i-1 word gemsRBZd;O?JJZd;Oi-1 tag+i word WP mattersNNSQVBZQ?i-1 tag+i word JJ wisdomNN?JJi-2 word thriftsVB{GzVBD{Gz?RP/$?RB+INGzi-1 word anybodyVBZMbVBL7A`@NN?5^I INFx i word heckVBPMbpUHp= ף?NN~jti+2 word revolutionariesNNSDl?JJSDli-1 tag+i word IN locationJJRZd;NNZd;?i-1 suffix kleRBʡEIN|?5^?RPK7i-1 tag+i word VB bidVBd;O?NNPd;Oi-1 word oppenheimerNNSNNPS?i-1 word disputedVBZV-NNSV-?i-1 tag+i word DT fastenerJJSOnNNOn? i suffix ALLVBuVJJ/$?NNS?NNPh|?5?i-1 word barrelRBRsh|??JJRsh|?ݿi+2 word unfortunateVBPZd;ONNZd;O?i+1 word thrivingRB+?JJ ףp= NNL7A`i-2 word deterioratingNNK7A`RBK7A`?i-1 tag+i word JJ appreciationNN(\?JJ(\i word calendarNNB`"?JJB`"i-1 tag+i word CC machineryNNףp= ?VBDףp= i-1 tag+i word NNS aboundVBP#~j@RBGzNN#~jIN-VBD'1Zi+2 word tendersNNPJ +DT"~?UHZd;i-1 tag+i word CD respondedNNSClVBDCl?i word landfillsNNSS?NNSi-2 word prepaidVBZV-VBNV-?i word designingVBGsh|?ݿNN/$JJ +ֿNNP7A`? i-2 word haveVBNCl@VBPX9v?JJQRBSףp= ÿIN^I +$ClۿPRPh|?5NNS#~j?RBR!rh?CDoʡտJJS}?5^IJJR!rh@VBGjtVBDʡRPGz@NNsh|?FWZd;ORBI +NNPS˿WDT1ZdWPlVBZNbX9DTGzVB)\(?PDTK7A`?NNPS-i-1 tag+i word NNP encountersVBZ|?5^@NNPSB`"NNS+i word mumbledVBN?JJffffffVBD333333i-1 tag+i word , frontJJ?NNi-1 tag+i word NNS sayVBPh|?5?NNS1ZdINSVBD)\(VB#~j@ i-1 word nrmNNSd;O?NNPd;Oi-1 tag+i word PRP$ importsNNSffffff?NNffffff i+2 word psVBN~jt?NNP/$@VBD~jtNNS/$i word declasseVBNZd;JJZd;?i-2 word vastlyVBGffffffNNffffff?i-1 tag+i word IN settingNNQVBGQ?i+1 word defensiveRB-?JJ- i word autosNNSV-?JJZd;ONN}?5^Ii-1 tag+i word ( f.o.bJJS?RBSi-1 tag+i word VB rideNNףp= ?JJClVBK7A i-1 tag+i word NNP petrochemicalNNZd;ONNPZd;O?i-1 tag+i word JJ transplantJJʡENNSI +NNrh|@i-1 tag+i word NNS hailedVBPX9vVBDX9v?i-1 tag+i word `` fancifulJJNbX9?NNNbX9пi-1 word givingVB1ZdRP|?5^?RB|?5^NN1Zd?JJK7?NNPK7i+1 word dominionJJ-?NN-i-1 tag+i word CC therebyNNSZd;ORBZd;O?i-1 tag+i word NNP customsVBZbX9NNSbX9?i-1 tag+i word TO peddlingVBV-VBGOn?NN+i-2 word reigningVBGoʡNNoʡ?INClVBPCl?i-2 word hiroshimaNNPjtNNSZd;NN&1@i-1 tag+i word CC streetVB7A`NNv?JJ1Zdi-1 tag+i word NN outNN\(\RB@INjt?RPB`"i tag+i-2 tag VBD VBPNN/$PDTh|?5?JJp= ףINA`"DTZd;O?NNSDl?RP+RBHzG?i-1 word restructuringWDTZd;OJJףp= INDT~jt?NNMVBDCl?VBNn? i word thanNNPy&1INy&1@ i suffix rysNNPSsh|?@NNPsh|?i-1 word echoedVBZ(\NNS(\? i+2 word '86VBNJ +ѿJJJ +?i-1 tag+i word IN hearingVBG-?NN-i-1 word fourthNN)\(?VBP)\(i-2 word imagineVBGX9v޿JJʡE?NNZd;Oi+2 word raisingDT㥛 @RB}?5^I?NN$C?WDTJJ$CINDli-2 word rescueNNVBDrh|?VBNrh|׿RBjtVB?JJE@ i word fetchVBZOnVBy&1?VBP;Oni+2 word weaknessMDffffffVBGFx?VBNffffff?NNFxi tag+i-2 tag PDT CCDTS㥛?RBS㥛ؿ i-1 tag+i word NNP neurosciencesNNPS +޿NNP +?i-1 tag+i word POS headquartersNNSQNNQ@i-1 tag+i word DT u.s.backedVBNK7A`JJl?NNPK7Ai-1 word numbersVBP9vVBN@IN9v?VBDi-2 word nearingNNoʡ?JJoʡi-1 tag+i word POS requestNNV-?JJClNNP!rhi-1 tag+i word NNS elsewhereVBNvRBv? i+2 word needVBDnVBNn?IN1Zd?VB%CRP-?JJuVNNPSSVBZ"~jWDTA`"DTS?NNuV?PDTSVBP%C?RBmͿi+1 word steelRBSVBZd;?JJJ +?WDTHzGPRPPnINZd;?NNP!rhVBGbX9?NNbX9޿VBN/$?VBP"~?JJR333333RPOn@VBDx&1DTl?NNS ףp= i-1 tag+i word RBS downINGz?RPGz i word craigNN|?5^NNP|?5^?i word optimismNNn?INni-2 word sterlingNN= ףp=?WDT\(\JJ= ףp=ҿINGzDT\(\?RP rhRBX9v@i-1 tag+i word -START- marionNNx&1NNPx&1?"i-1 tag+i word -START- informationNN~jt?NNP~jtпi-2 word modificationsVBX9vJJX9v?i-2 word languishingRB|?5^IN|?5^?i+1 word tariffVBZd;?VBNDlVBDMbi tag+i-2 tag WDT NNDT{Gz?NNP/$VBDV-VBN333333ۿWDT+VBZsh|??NNSzG?NN/$?JJRV-?VB= ףp=RBGz?PDT(\?JJSCl?VBPzGPOSSJJ#~j?IN+?i-1 tag+i word CC errorVBZV-VBʡEӿNNV-?JJ(\i-1 word credit RB7A`?INMVBZ1ZdVBFxNNI +?VBD)\(ܿVBN)\(?NNSMbX9@NNPA`"?NNPSA`"i+1 word mogulNNʡE?VBGʡE i suffix tikNNZd;NNPZd;?i-1 tag+i word VBZ continuingVBGˡE?JJˡEi tag+i-2 tag VBZ VBN RBRZd;OտVBPsh|?DT~jt?RBS㥛?CCFxVBN+?VBsh|??JJmINZd;O? i+1 word easyRP+JJ+?RB|?5^INp= ף?DT(\ݿi-1 suffix lteVBNZd;@VBDZd;i+1 word assessmentJJI +?VBZʡENNPx&?NNPSx&NNI +POSʡE?i-1 word influenceFWʡE?VBGw/?NNw/INʡEi-1 tag+i word JJ crimsonJJ(\@NN(\i-1 tag+i word RP thereVBZV-RB ףp= ?EXQNNDl i-1 word beefNNSZd;?VBDZd; i+2 word anNNSV-CD&1ҿNNPSd;OJJS1ZdVBNd;O޿VBP&1INmVBGffffff?EXm@VBZ"~jPRPuV?NNP/$@WDT= ףp=?JJPnRPp= ף@NNx&1?POSZd;?RBˡE?VB~jt?RBR%CVBDFx?DTʡE JJRx&1i-1 tag+i word NN pointNNףp= ?JJףp= i word repeatedVBNn?JJSVBD"~j̿i-1 tag+i word TO forgoVB{Gz?JJ{Gzi tag+i-2 tag MD ,JJV-?VB}?5^I?VBPʡENNxRBK7i tag+i-2 tag RBS MDVBOn?INOni+2 word capital NNPS{GzNNzG?IN"~j?VBZA`"NNS{Gz?VBGrh|?JJQ?VBN9vPOSA`"?RBrh|NNPOnÿi-1 tag+i word VBG pastIN@RB r?JJ~jtNNDl i suffix in'NNx&?JJx& i-1 word ufosVB(\VBP%C?NNS i word iranVBX9vJJ~jtNNPQ?i-1 tag+i word , highwaysVBZ`"ֿNNS`"? i word morselNNT㥛 ?CDT㥛 ؿi-2 word jumpedJJ/$?NNSx&1RB/$NNx&1?i-1 tag+i word , allowVBoʡ?VBDoʡi-1 tag+i word NN flewNN#~jVBDx&1@VBP㥛 i-1 tag+i word DT balancingVBG%C@JJ rhNN)\(̿i-1 tag+i word NN lawnRBR+NN+?i word nationsNNPSx?NNS(\ҿJJSNNP"~ڿ i suffix 9-3CD@JJ!rhNNPMbX i+2 word sen.RB!rhVBZ333333ۿNNS+@NNPq= ףpͿNNw/VBN-? i word iousNNSDl @NN}?5^INNPQi-1 tag+i word VBP existJJB`"VBB`"?i-1 word breakingRPrh|?RBrh|i+1 word mannerJJI +?NNGzRB`" i word deckedVBN9v@VBD9vi-1 tag+i word JJ setVBNV-?NNGz?VBDDli-1 tag+i word DT buffettingVBGQݿNNQ?i+2 word tourismNNSffffffNNffffff?i-2 word clumsyVBZPnؿNNSPn?i-1 word squeamishRBl?JJli word publicistVB~jtNN~jt?i-2 word extraterrestrialDTSWDTS?i-1 tag+i word VBD requiredVBNGz?JJGzi+1 suffix rodNN$C?JJ$Ci-1 tag+i word TO depositoryNNCl@JJxVBCli-1 tag+i word VBZ headedVBN^I +?JJ^I +i-1 tag+i word JJ fearsNNSZd;O?NNZd;Oi-1 tag+i word -START- crresNNPS~jtNN/$NNPQ? i-2 word paidJJ(\?NN\(\?JJR1Zd?RBR1ZdRB?5^I INZd;׿i word quantumNN~jtNNP~jt?$i-1 tag+i word -START- biotechnologyNNd;O?NNPNNSx&i-1 tag+i word RB attemptedVBNʡE?VBDʡE i suffix MomNN^I +?NNP^I +i word outstripsVBZS㥛?VBPIN ri-1 word anthonyNN$CNNP$C?i-1 tag+i word VBN illusionistNNv?JJvi-1 tag+i word NNS tackedVBD rh?VBN rhi tag+i-2 tag RBR NNSVBNT㥛 VBPGzJJ+IN~jtRB^I +@VBD|?5^i word prosecutingVBGK?NNKi word tighteningVBGQNNQ?i-1 tag+i word VBZ projectedVBNQ?JJQտi word unswaggeringVBGmտJJm?i-1 tag+i word , consistingVBG'1Z?NN'1Zi-1 tag+i word IN coalNNSCl׿NNCl?i+2 word mindlessRPV-?NN|?5^?INV-VBG|?5^i-1 tag+i word PRP$ landfillsNNSS?NNSi-1 tag+i word TO equallyVBZd;ORBZd;O?i-1 tag+i word NNS courtsNNS%C?NNP%C i word carpetNNPSX9vRBX9vNN\(\@JJA`"NNSK7A`NNPX9vi-2 word blameVBG9vNNS5^I ?NN!rh?i+2 word sunnyNNCl?JJCli-1 tag+i word RB downRBʡE?INnڿVB"~jRP +?VBN+i word sheetrockVBNrh|NNrh|?i+2 word compositeJJFxNNPX9v?VBDףp= ?VBZZd;OݿVBP+?i word acquiresVBZ9v?NNSSVBDi word skilledJJ-?NNP- i word samJJ333333NN9vNNPd;O@MD%Ci+2 word piecesVBPoʡNNS~jtNNx&1?VBZ㥛 ?VBoʡ?i-1 tag+i word -START- canNNP$CMD;On@VBZSJJA`"i+2 word mountVBZuVVBNGzJJˡE @RBGzNNPuV?i+1 suffix actVBN +@NNP5^I @JJZd;O?VBDClPOSZd;O?VBPnVBX9vNNK7RBR$CRB/$ JJRM?NNSK7A?NNPSnVBGmVBZ~jthi-1 tag+i word IN hopesVBZX9vNNSʡE@JJ-NNvi-1 tag+i word IN dutchNNPSJJS? i-2 word dunNNPS +޿NNP +?i-1 tag+i word VBG chiefNN"~?JJ"~i-2 word leslieNNPS333333NNP333333?i word achieveVBZ/$VBCl?VBP/$?JJ/$RBQ i+2 word veryJJ ףp= ?NNSV-?VBD ףp= RB;On?DT ףp= VBN/$VBPV-?INV-?RP;On¿NNPq= ףpVBI +VBGE?NNMb?WDTV-@i+1 word peasantJJV-?NNV-i-1 tag+i word ) besidesVBZ5^I IN5^I ?i-1 word machineryINCl?NNP +NNPS +?WDTCli-1 tag+i word PRP$ luxuryNN~jt?JJ~jti-2 word procurementWDTp= ף?VBG?5^I NN?5^I ?INp= ףi-1 tag+i word NNS owningRBOnJJ%CԿVBGy&1?i+1 word inactionJJ+IN+?#i-1 tag+i word -START- subsequentlyNNPMbX@NNzGRB$Ci-1 tag+i word WP criticizeVBʡE?VBPʡEi-1 tag+i word VBN vigorousNNSd;OJJd;O?i+2 word deservesNNy&1INsh|??DTsh|?CDRQJJ"~?i-1 tag+i word VBP lightVBN(\JJ(\?i-1 word countriesVBDףp= ?JJS?IN?5^I VBNL7A`RBRQ?i-2 word interveneJJ㥛 ?NNP㥛 i-1 word mobileNNPw/NNPSw/? i-1 word reyVBNN?i-1 tag+i word WP workVBP`"?NN`"i-1 suffix ngeRBl?WDT$CӿDT#~j?VBZQۿNNPK7A`?RBR1Zd?VBNMbX9ܿNNSJ +POSl?JJ'1Z?NNRQ?VBDMbX?INnٿJJR1ZdNNPS$CRPˡEVBP^I +EXʡE?VBI +CCy&1?i+2 word violentNNl?JJli-2 word biddersVB/$?VBP~jt?NNS/$NN~jti-1 tag+i word NNS onlyVBPClRBCl?i-1 suffix eneNNPQ?JJR/$NNSv/?VBZh|?5DTV-JJ~jt?NNI +VBNMbX9?VBP/$?WDT/$?RBRQIN}?5^I̿VBG̿VBDMbX9ĿVBy&1i-2 word motorolaVBQ@VBP(\NN(\ i word champsNNSoʡ?NNoʡ i word guessRBL7A`VBZd;O?VBPv/i+1 word yearbookNNS?JJR5^I JJ}?5^Ii-1 tag+i word VBP worriedVBNZd;JJV-@VBDV-i-1 tag+i word , balancedVBN&1?VBD&1 i+2 word ladyWDT~jtIN~jt?i-1 tag+i word JJ marketplaceNNףp= ?NNSףp= ӿi-2 word peanutsVBGQ?NNQi-2 word cigarettesVBGA`"NNA`"?i-1 tag+i word , conductVBP?5^I @RBKNN ri-1 word valuesVBZd;O?RBI +NNMbXVBP/$?JJ\(\߿INQ?i-1 word closelyJJZd;@VBNx&?NNʡEVBDd;O i word inuitNNvNNPv?i word cosmeticsNNPS+?NNSX9v?JJZd;ϿNNPSi+2 word disappearJJ1Zd?RB1Zdi-1 tag+i word `` justifiedVBDzGJJzG?i-1 tag+i word NNS fueledVBN"~VBD"~? i suffix tty VBNq= ףpVBZQNNP7A`VBPzGRBʡEs@NNSMbXVBtVJJʡE @NN r FWZd;߿VBD/$i+1 word technicalJJOnINOn?VBDV-?RBSsh|??JJSsh|?VBNV-i+1 suffix eb.VBZVBPbX9?JJ?NNbX9 i word bertieNNS!rhNN}?5^INNP9v?i-1 tag+i word NNS retailingVBG5^I NN5^I ?i+1 word linesRBQNNZd;@RBR~jtJJR~jt?VBNffffffJJ%C?NNSX9vNNP;On¿i-1 word spaceNNPSʡENNx&1?WDTClJJMbXINFx?DT ףp= NNSV-ϿNNP@ i word wagesVBZQNNS%C@INA`"i-1 word criticismNN ףp= VBD ףp= ?i-1 tag+i word `` soundJJףp= ?VBNQNNp= ףпi-1 tag+i word IN disbeliefNNGz?VBZGzi-1 tag+i word ( aboutRB{Gz?IN{Gzܿi-1 tag+i word VBZ ambleVB!rh?JJ!rhi+2 word rallyNNSx?NNxi+1 suffix warVBG~jtRBDlNNKVBNd;OJJ+?NNP"~j@VBGz i word amrNNK׿NNPK?i word drillersVBZPnNNSPn? i+1 suffix t.VBNZd;NNFxNNP-?i-1 tag+i word DT exchequerNNS5^I NNSNNPK7A`?i-2 word means VBGjt@NN~jtCDvJJzGVBZʡEݿNNPS/$ÿNNS$CӿNNP/$?PRPv?i+1 word violetVBGx&1?NNx&1i-1 tag+i word DT educationalJJjtNNPjt?i-1 word sufferRPRQRBRQ? i word capitaNNS㥛 ?NNClٿJJMbi-1 tag+i word NN mandatedVBN\(\?JJx&1VBD㥛 ?i-1 tag+i word -START- zSYM+?LS7A`NNX9vi-2 word missesJJffffff?NNffffffi+1 word takeover RBRQNN(\POSMb?JJd;O@NNP/$?VB\(\?VBG!rh?VBNMbX9ԿVBZMbi-1 tag+i word IN seesawJJl?NNli-2 word cuomoJJ333333NNP333333?i-1 word sweepsJJ`"?INDlVBN}?5^Ii-1 tag+i word NN valuedVBNMbX@NNClVBD#~ji-1 suffix arsPRP$㥛 RPZd;ORBR1ZdEXQNNPʡEPRP㥛 ?VBD/$?VBNS㥛VBP= ףp=?RBsh|??NNPSGz?WDTK7A?DTS㥛?JJR"~j̿JJ'1Z?NNV-VBGz?INCl?VBZE?NNSJ + i-1 tag+i word VBD neglectedVBNp= ף?JJp= ף i suffix Vt.VBPGzNNPGz? i word gallonNNSQNN$C@JJ+ i-1 word gov.NNPZd;O?VBDZd;O׿i-1 tag+i word NNP oilNNuV?NNPuVi+2 word cadillacVBZjt?VBDjti+2 word luzonCDZd;NNZd;? i suffix -68CDFx?JJlNN&1ڿ i word drewNNOnVBDMb@VBPlRBx&1пNNPZd;?VBK׿NNPSZd;JJףp= i-1 tag+i word CC interpretVBx&1?JJx&1i-1 tag+i word VBG fatahNNS)\(̿RB|?5^NNPNbX9?i+1 suffix boxNNʡE?JJʡEi-1 tag+i word VBZ grudginglyNNSw/RB-?NN㥛 i-1 word drillINPn?RBRDlRBPnؿJJRDl?i-1 tag+i word IN panamanianJJMb?NNPMbi-2 word fireballsVBPS㥛?NNHzGVBDCl i word w.i.NNPQ?INQi+1 word advantagesVBNnNNn?i-2 word brown NNSnVBPV-?PRPQ?RB +?INw/VBZ?5^I ¿NNPS(\@VBG/$?NN +NNP(\i-1 tag+i word `` hotMD5^I JJX9vNNP#~j?i-1 word tossedRP/$?RB/$ѿi word monopolyVBN/$NN= ףp=?VBDtV i suffix gieNNS9vJJZd;ONNʡEӿNNPL7A`?i+2 word collateralizedVBZM?NNSuVNNV-?i-1 tag+i word DT ministerialJJFx?NNFxi-1 tag+i word WDT showVBZ`"VBP`"?i word wholesomeVB%CܿJJ?IN|?5^i+2 word refusedJJSV-?RBSV-NN ףp= NNP ףp= ?i-1 suffix uryNNPSoʡINtV?NNSn@POS~jt?DTGz@RPGzVBDʡE?VBNNbX9WDT/$CDV-߿NNP/$?NNV-߿FW rhPRP9vJJKVBZS㥛i word testimonialJJS㥛?NNS㥛i-1 tag+i word , signedVBN+VBD+?i-1 tag+i word IN brusselsNNSףp= NNPףp= ?i+2 word jeopardyNNSh|?5NN/$?JJ(\prose-1.2.1/internal/util/000077500000000000000000000000001377030147400154425ustar00rootroot00000000000000prose-1.2.1/internal/util/util.go000066400000000000000000000036021377030147400167470ustar00rootroot00000000000000/* Package util contains internals used across the other prose packages. */ package util import ( "io/ioutil" "path/filepath" "strings" ) // ReadDataFile reads data from a file, panicking on any errors. func ReadDataFile(path string) []byte { p, err := filepath.Abs(path) CheckError(err) data, ferr := ioutil.ReadFile(p) CheckError(ferr) return data } // CheckError panics if `err` is not `nil`. func CheckError(err error) { if err != nil { panic(err) } } // Min returns the minimum of `a` and `b`. func Min(a, b int) int { if a < b { return a } return b } // IsPunct determines if a character is a punctuation symbol. func IsPunct(c byte) bool { for _, r := range []byte("!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~") { if c == r { return true } } return false } // IsSpace determines if a character is a whitespace character. func IsSpace(c byte) bool { for _, r := range []byte("\t\n\r\f\v") { if c == r { return true } } return false } // IsLetter determines if a character is letter. func IsLetter(c byte) bool { return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') } // IsAlnum determines if a character is a letter or a digit. func IsAlnum(c byte) bool { return (c >= '0' && c <= '9') || IsLetter(c) } // StringInSlice determines if `slice` contains the string `a`. func StringInSlice(a string, slice []string) bool { for _, b := range slice { if a == b { return true } } return false } // HasAnySuffix determines if the string a has any suffixes contained in the // slice b. func HasAnySuffix(a string, slice []string) bool { for _, b := range slice { if strings.HasSuffix(a, b) { return true } } return false } // ContainsAny determines if the string a contains any fo the strings contained // in the slice b. func ContainsAny(a string, b []string) bool { for _, s := range b { if strings.Contains(a, s) { return true } } return false } prose-1.2.1/requirements.txt000066400000000000000000000000571377030147400161370ustar00rootroot00000000000000nltk==3.4.5 tabulate==0.7.7 newspaper3k>=0.2.2 prose-1.2.1/scripts/000077500000000000000000000000001377030147400143405ustar00rootroot00000000000000prose-1.2.1/scripts/cover.sh000066400000000000000000000007711377030147400160170ustar00rootroot00000000000000echo "mode: set" > acc.out for Dir in $(go list ./...); do if [[ ${Dir} != *"/vendor/"* ]] then returnval=`go test -coverprofile=profile.out $Dir` echo ${returnval} if [[ ${returnval} != *FAIL* ]] then if [ -f profile.out ] then cat profile.out | grep -v "mode: set" >> acc.out fi else exit 1 fi else exit 1 fi done goveralls -coverprofile=acc.out -service=travis-ci prose-1.2.1/scripts/fuzzit.sh000077500000000000000000000016021377030147400162310ustar00rootroot00000000000000#!/bin/bash # # Helper script for working with fuzzit.dev: # # https://github.com/fuzzitdev/example-go # # Based on: # # https://github.com/google/syzkaller/blob/master/fuzzit.sh set -eux function target { go-fuzz-build -libfuzzer -func $3 -o fuzzer.a $2 clang -fsanitize=fuzzer fuzzer.a -o fuzzer ./fuzzit create target $1 || true ./fuzzit create job $LOCAL --type fuzzing --branch $TRAVIS_BRANCH --revision $TRAVIS_COMMIT prose/$1 ./fuzzer } go get -u github.com/dvyukov/go-fuzz/go-fuzz-build wget -q -O fuzzit https://github.com/fuzzitdev/fuzzit/releases/download/v2.4.12/fuzzit_Linux_x86_64 chmod a+x fuzzit ./fuzzit auth $FUZZIT_API_KEY if [ "$1" = "fuzzing" ]; then export LOCAL="" else export LOCAL="--local" fi target prose-transform ./transform Fuzz target prose-tokenize ./tokenize Fuzz target prose-summarize ./summarize Fuzz target prose-chunk ./chunk Fuzz prose-1.2.1/scripts/get_article.py000066400000000000000000000004261377030147400171760ustar00rootroot00000000000000import os from newspaper import Article url = 'http://fox13now.com/2013/12/30/new-year-new-laws-obamacare-pot-guns-and-drones/' article = Article(url) article.download() article.parse() with open(os.path.join('testdata', 'article.txt'), 'w') as f: f.write(article.text) prose-1.2.1/scripts/pipe.py000066400000000000000000000002761377030147400156540ustar00rootroot00000000000000from nltk.corpus import treebank from nltk.tag.util import untag sentences = treebank.tagged_sents() text = [] for s in sentences: text.append(' '.join(untag(s))) print(' '.join(text)) prose-1.2.1/scripts/test_model.py000066400000000000000000000040031377030147400170460ustar00rootroot00000000000000import itertools import json import os import subprocess as sp import time from nltk.corpus import treebank from nltk.metrics import accuracy from nltk.tag.api import TaggerI from nltk.tag.perceptron import PerceptronTagger from nltk.tag.util import untag from tabulate import tabulate AP_TIME = [] def pipe_through_prog(prog, text): global AP_TIME for _ in range(5): p1 = sp.Popen( prog.split(), stdout=sp.PIPE, stdin=sp.PIPE, stderr=sp.PIPE) now = time.time() [result, err] = p1.communicate(input=text.encode('utf-8')) AP_TIME.append(time.time() - now) tags = [(t['Text'], t['Tag']) for t in json.loads(result.decode('utf-8'))] return [p1.returncode, tags, err] class APTagger(TaggerI): """A wrapper around the aptag Go library. """ def tag(self, tokens): prog = os.path.join('bin', 'prose') ret, tags, err = pipe_through_prog(prog, ' '.join(tokens)) return tags def tag_sents(self, sentences): text = [] for s in sentences: text.append(' '.join(s)) return self.tag(text) def evaluate(self, gold): tagged_sents = self.tag_sents(untag(sent) for sent in gold) gold_tokens = list(itertools.chain(*gold)) return accuracy(gold_tokens, tagged_sents) if __name__ == '__main__': sents = treebank.tagged_sents() PT = PerceptronTagger() print("Timing NLTK ...") pt_times = [] for _ in range(5): now = time.time() PT.tag_sents(untag(sent) for sent in sents) pt_times.append(time.time() - now) pt_time = round(sum(pt_times) / len(pt_times), 3) print("Timing prose ...") acc = round(APTagger().evaluate(sents), 3) ap_time = round(sum(AP_TIME) / len(AP_TIME), 3) print("Evaluating accuracy ...") headers = ['Library', 'Accuracy', '5-Run Average (sec)'] table = [ ['NLTK', round(PT.evaluate(sents), 3), pt_time], ['`prose`', acc, ap_time] ] print(tabulate(table, headers, tablefmt='pipe')) prose-1.2.1/scripts/treebank_words.py000066400000000000000000000010371377030147400177240ustar00rootroot00000000000000import json import os from nltk.tokenize import TreebankWordTokenizer, sent_tokenize t = TreebankWordTokenizer() with open(os.path.join('testdata', 'tokenize.json')) as d: data = json.load(d) words = [] sents = [] for text in data: for s in sent_tokenize(text): sents.append(s) words.append(t.tokenize(s)) with open(os.path.join('testdata', 'treebank_words.json'), 'w') as f: json.dump(words, f, indent=4) with open(os.path.join('testdata', 'treebank_sents.json'), 'w') as f: json.dump(sents, f, indent=4) prose-1.2.1/scripts/update_model.py000066400000000000000000000011721377030147400173550ustar00rootroot00000000000000import pickle import json import os MODEL_PATH = os.path.join(os.getcwd(), 'model') HOME = os.path.expanduser("~") DATA_PATH = 'nltk_data/taggers/averaged_perceptron_tagger' DATA_FILE = 'averaged_perceptron_tagger.pickle' def dump_model(model, data): if type(data) is set: data = list(data) with open(os.path.join(MODEL_PATH, model), 'w+') as mod: json.dump(data, mod) with open(os.path.join(HOME, DATA_PATH, DATA_FILE), 'rb') as f: w_td_c = pickle.load(f) weights, tagdict, classes = w_td_c dump_model('tags.json', tagdict) dump_model('weights.json', weights) dump_model('classes.json', classes) prose-1.2.1/scripts/word_punct.py000066400000000000000000000005061377030147400170770ustar00rootroot00000000000000import json import os from nltk.tokenize import wordpunct_tokenize with open(os.path.join('testdata', 'treebank_sents.json')) as d: data = json.load(d) words = [] for s in data: words.append(wordpunct_tokenize(s)) with open(os.path.join('testdata', 'word_punct.json'), 'w') as f: json.dump(words, f, indent=4) prose-1.2.1/summarize/000077500000000000000000000000001377030147400146655ustar00rootroot00000000000000prose-1.2.1/summarize/easy.go000066400000000000000000001436451377030147400161720ustar00rootroot00000000000000package summarize var empty struct{} var easyWords = map[string]struct{}{ "a": empty, "able": empty, "aboard": empty, "about": empty, "above": empty, "absent": empty, "accept": empty, "accident": empty, "account": empty, "ache": empty, "aching": empty, "acorn": empty, "acre": empty, "across": empty, "act": empty, "acts": empty, "add": empty, "address": empty, "admire": empty, "adventure": empty, "afar": empty, "afraid": empty, "after": empty, "afternoon": empty, "afterward": empty, "afterwards": empty, "again": empty, "against": empty, "age": empty, "aged": empty, "ago": empty, "agree": empty, "ah": empty, "ahead": empty, "aid": empty, "aim": empty, "air": empty, "airfield": empty, "airplane": empty, "airport": empty, "airship": empty, "airy": empty, "alarm": empty, "alike": empty, "alive": empty, "all": empty, "alley": empty, "alligator": empty, "allow": empty, "almost": empty, "alone": empty, "along": empty, "aloud": empty, "already": empty, "also": empty, "always": empty, "am": empty, "America": empty, "American": empty, "among": empty, "amount": empty, "an": empty, "and": empty, "angel": empty, "anger": empty, "angry": empty, "animal": empty, "another": empty, "answer": empty, "ant": empty, "any": empty, "anybody": empty, "anyhow": empty, "anyone": empty, "anything": empty, "anyway": empty, "anywhere": empty, "apart": empty, "apartment": empty, "ape": empty, "apiece": empty, "appear": empty, "apple": empty, "April": empty, "apron": empty, "are": empty, "aren't": empty, "arise": empty, "arithmetic": empty, "arm": empty, "armful": empty, "army": empty, "arose": empty, "around": empty, "arrange": empty, "arrive": empty, "arrived": empty, "arrow": empty, "art": empty, "artist": empty, "as": empty, "ash": empty, "ashes": empty, "aside": empty, "ask": empty, "asleep": empty, "at": empty, "ate": empty, "attack": empty, "attend": empty, "attention": empty, "August": empty, "aunt": empty, "author": empty, "auto": empty, "automobile": empty, "autumn": empty, "avenue": empty, "awake": empty, "awaken": empty, "away": empty, "awful": empty, "awfully": empty, "awhile": empty, "ax": empty, "axe": empty, "baa": empty, "babe": empty, "babies": empty, "back": empty, "background": empty, "backward": empty, "backwards": empty, "bacon": empty, "bad": empty, "badge": empty, "badly": empty, "bag": empty, "bake": empty, "baker": empty, "bakery": empty, "baking": empty, "ball": empty, "balloon": empty, "banana": empty, "band": empty, "bandage": empty, "bang": empty, "banjo": empty, "bank": empty, "banker": empty, "bar": empty, "barber": empty, "bare": empty, "barefoot": empty, "barely": empty, "bark": empty, "barn": empty, "barrel": empty, "base": empty, "baseball": empty, "basement": empty, "basket": empty, "bat": empty, "batch": empty, "bath": empty, "bathe": empty, "bathing": empty, "bathroom": empty, "bathtub": empty, "battle": empty, "battleship": empty, "bay": empty, "be": empty, "beach": empty, "bead": empty, "beam": empty, "bean": empty, "bear": empty, "beard": empty, "beast": empty, "beat": empty, "beating": empty, "beautiful": empty, "beautify": empty, "beauty": empty, "became": empty, "because": empty, "become": empty, "becoming": empty, "bed": empty, "bedbug": empty, "bedroom": empty, "bedspread": empty, "bedtime": empty, "bee": empty, "beech": empty, "beef": empty, "beefsteak": empty, "beehive": empty, "been": empty, "beer": empty, "beet": empty, "before": empty, "beg": empty, "began": empty, "beggar": empty, "begged": empty, "begin": empty, "beginning": empty, "begun": empty, "behave": empty, "behind": empty, "being": empty, "believe": empty, "bell": empty, "belong": empty, "below": empty, "belt": empty, "bench": empty, "bend": empty, "beneath": empty, "bent": empty, "berries": empty, "berry": empty, "beside": empty, "besides": empty, "best": empty, "bet": empty, "better": empty, "between": empty, "bib": empty, "bible": empty, "bicycle": empty, "bid": empty, "big": empty, "bigger": empty, "bill": empty, "billboard": empty, "bin": empty, "bind": empty, "bird": empty, "birth": empty, "birthday": empty, "biscuit": empty, "bit": empty, "bite": empty, "biting": empty, "bitter": empty, "black": empty, "blackberry": empty, "blackbird": empty, "blackboard": empty, "blackness": empty, "blacksmith": empty, "blame": empty, "blank": empty, "blanket": empty, "blast": empty, "blaze": empty, "bleed": empty, "bless": empty, "blessing": empty, "blew": empty, "blind": empty, "blindfold": empty, "blinds": empty, "block": empty, "blood": empty, "bloom": empty, "blossom": empty, "blot": empty, "blow": empty, "blue": empty, "blueberry": empty, "bluebird": empty, "blush": empty, "board": empty, "boast": empty, "boat": empty, "bob": empty, "bobwhite": empty, "bodies": empty, "body": empty, "boil": empty, "boiler": empty, "bold": empty, "bone": empty, "bonnet": empty, "boo": empty, "book": empty, "bookcase": empty, "bookkeeper": empty, "boom": empty, "boot": empty, "born": empty, "borrow": empty, "boss": empty, "both": empty, "bother": empty, "bottle": empty, "bottom": empty, "bought": empty, "bounce": empty, "bow": empty, "bowl": empty, "bow-wow": empty, "box": empty, "boxcar": empty, "boxer": empty, "boxes": empty, "boy": empty, "boyhood": empty, "bracelet": empty, "brain": empty, "brake": empty, "bran": empty, "branch": empty, "brass": empty, "brave": empty, "bread": empty, "break": empty, "breakfast": empty, "breast": empty, "breath": empty, "breathe": empty, "breeze": empty, "brick": empty, "bride": empty, "bridge": empty, "bright": empty, "brightness": empty, "bring": empty, "broad": empty, "broadcast": empty, "broke": empty, "broken": empty, "brook": empty, "broom": empty, "brother": empty, "brought": empty, "brown": empty, "brush": empty, "bubble": empty, "bucket": empty, "buckle": empty, "bud": empty, "buffalo": empty, "bug": empty, "buggy": empty, "build": empty, "building": empty, "built": empty, "bulb": empty, "bull": empty, "bullet": empty, "bum": empty, "bumblebee": empty, "bump": empty, "bun": empty, "bunch": empty, "bundle": empty, "bunny": empty, "burn": empty, "burst": empty, "bury": empty, "bus": empty, "bush": empty, "bushel": empty, "business": empty, "busy": empty, "but": empty, "butcher": empty, "butt": empty, "butter": empty, "buttercup": empty, "butterfly": empty, "buttermilk": empty, "butterscotch": empty, "button": empty, "buttonhole": empty, "buy": empty, "buzz": empty, "by": empty, "bye": empty, "cab": empty, "cabbage": empty, "cabin": empty, "cabinet": empty, "cackle": empty, "cage": empty, "cake": empty, "calendar": empty, "calf": empty, "call": empty, "caller": empty, "calling": empty, "came": empty, "camel": empty, "camp": empty, "campfire": empty, "can": empty, "canal": empty, "canary": empty, "candle": empty, "candlestick": empty, "candy": empty, "cane": empty, "cannon": empty, "cannot": empty, "canoe": empty, "can't": empty, "canyon": empty, "cap": empty, "cape": empty, "capital": empty, "captain": empty, "car": empty, "card": empty, "cardboard": empty, "care": empty, "careful": empty, "careless": empty, "carelessness": empty, "carload": empty, "carpenter": empty, "carpet": empty, "carriage": empty, "carrot": empty, "carry": empty, "cart": empty, "carve": empty, "case": empty, "cash": empty, "cashier": empty, "castle": empty, "cat": empty, "catbird": empty, "catch": empty, "catcher": empty, "caterpillar": empty, "catfish": empty, "catsup": empty, "cattle": empty, "caught": empty, "cause": empty, "cave": empty, "ceiling": empty, "cell": empty, "cellar": empty, "cent": empty, "center": empty, "cereal": empty, "certain": empty, "certainly": empty, "chain": empty, "chair": empty, "chalk": empty, "champion": empty, "chance": empty, "change": empty, "chap": empty, "charge": empty, "charm": empty, "chart": empty, "chase": empty, "chatter": empty, "cheap": empty, "cheat": empty, "check": empty, "checkers": empty, "cheek": empty, "cheer": empty, "cheese": empty, "cherry": empty, "chest": empty, "chew": empty, "chick": empty, "chicken": empty, "chief": empty, "child": empty, "childhood": empty, "children": empty, "chill": empty, "chilly": empty, "chimney": empty, "chin": empty, "china": empty, "chip": empty, "chipmunk": empty, "chocolate": empty, "choice": empty, "choose": empty, "chop": empty, "chorus": empty, "chose": empty, "chosen": empty, "christen": empty, "Christmas": empty, "church": empty, "churn": empty, "cigarette": empty, "circle": empty, "circus": empty, "citizen": empty, "city": empty, "clang": empty, "clap": empty, "class": empty, "classmate": empty, "classroom": empty, "claw": empty, "clay": empty, "clean": empty, "cleaner": empty, "clear": empty, "clerk": empty, "clever": empty, "click": empty, "cliff": empty, "climb": empty, "clip": empty, "cloak": empty, "clock": empty, "close": empty, "closet": empty, "cloth": empty, "clothes": empty, "clothing": empty, "cloud": empty, "cloudy": empty, "clover": empty, "clown": empty, "club": empty, "cluck": empty, "clump": empty, "coach": empty, "coal": empty, "coast": empty, "coat": empty, "cob": empty, "cobbler": empty, "cocoa": empty, "coconut": empty, "cocoon": empty, "cod": empty, "codfish": empty, "coffee": empty, "coffeepot": empty, "coin": empty, "cold": empty, "collar": empty, "college": empty, "color": empty, "colored": empty, "colt": empty, "column": empty, "comb": empty, "come": empty, "comfort": empty, "comic": empty, "coming": empty, "company": empty, "compare": empty, "conductor": empty, "cone": empty, "connect": empty, "coo": empty, "cook": empty, "cooked": empty, "cooking": empty, "cookie": empty, "cookies": empty, "cool": empty, "cooler": empty, "coop": empty, "copper": empty, "copy": empty, "cord": empty, "cork": empty, "corn": empty, "corner": empty, "correct": empty, "cost": empty, "cot": empty, "cottage": empty, "cotton": empty, "couch": empty, "cough": empty, "could": empty, "couldn't": empty, "count": empty, "counter": empty, "country": empty, "county": empty, "course": empty, "court": empty, "cousin": empty, "cover": empty, "cow": empty, "coward": empty, "cowardly": empty, "cowboy": empty, "cozy": empty, "crab": empty, "crack": empty, "cracker": empty, "cradle": empty, "cramps": empty, "cranberry": empty, "crank": empty, "cranky": empty, "crash": empty, "crawl": empty, "crazy": empty, "cream": empty, "creamy": empty, "creek": empty, "creep": empty, "crept": empty, "cried": empty, "croak": empty, "crook": empty, "crooked": empty, "crop": empty, "cross": empty, "crossing": empty, "cross-eyed": empty, "crow": empty, "crowd": empty, "crowded": empty, "crown": empty, "cruel": empty, "crumb": empty, "crumble": empty, "crush": empty, "crust": empty, "cry": empty, "cries": empty, "cub": empty, "cuff": empty, "cup": empty, "cupboard": empty, "cupful": empty, "cure": empty, "curl": empty, "curly": empty, "curtain": empty, "curve": empty, "cushion": empty, "custard": empty, "customer": empty, "cut": empty, "cute": empty, "cutting": empty, "dab": empty, "dad": empty, "daddy": empty, "daily": empty, "dairy": empty, "daisy": empty, "dam": empty, "damage": empty, "dame": empty, "damp": empty, "dance": empty, "dancer": empty, "dancing": empty, "dandy": empty, "danger": empty, "dangerous": empty, "dare": empty, "dark": empty, "darkness": empty, "darling": empty, "darn": empty, "dart": empty, "dash": empty, "date": empty, "daughter": empty, "dawn": empty, "day": empty, "daybreak": empty, "daytime": empty, "dead": empty, "deaf": empty, "deal": empty, "dear": empty, "death": empty, "December": empty, "decide": empty, "deck": empty, "deed": empty, "deep": empty, "deer": empty, "defeat": empty, "defend": empty, "defense": empty, "delight": empty, "den": empty, "dentist": empty, "depend": empty, "deposit": empty, "describe": empty, "desert": empty, "deserve": empty, "desire": empty, "desk": empty, "destroy": empty, "devil": empty, "dew": empty, "diamond": empty, "did": empty, "didn't": empty, "die": empty, "died": empty, "dies": empty, "difference": empty, "different": empty, "dig": empty, "dim": empty, "dime": empty, "dine": empty, "ding-dong": empty, "dinner": empty, "dip": empty, "direct": empty, "direction": empty, "dirt": empty, "dirty": empty, "discover": empty, "dish": empty, "dislike": empty, "dismiss": empty, "ditch": empty, "dive": empty, "diver": empty, "divide": empty, "do": empty, "dock": empty, "doctor": empty, "does": empty, "doesn't": empty, "dog": empty, "doll": empty, "dollar": empty, "dolly": empty, "done": empty, "donkey": empty, "don't": empty, "door": empty, "doorbell": empty, "doorknob": empty, "doorstep": empty, "dope": empty, "dot": empty, "double": empty, "dough": empty, "dove": empty, "down": empty, "downstairs": empty, "downtown": empty, "dozen": empty, "drag": empty, "drain": empty, "drank": empty, "draw": empty, "drawer": empty, "drawing": empty, "dream": empty, "dress": empty, "dresser": empty, "dressmaker": empty, "drew": empty, "dried": empty, "drift": empty, "drill": empty, "drink": empty, "drip": empty, "drive": empty, "driven": empty, "driver": empty, "drop": empty, "drove": empty, "drown": empty, "drowsy": empty, "drub": empty, "drum": empty, "drunk": empty, "dry": empty, "duck": empty, "due": empty, "dug": empty, "dull": empty, "dumb": empty, "dump": empty, "during": empty, "dust": empty, "dusty": empty, "duty": empty, "dwarf": empty, "dwell": empty, "dwelt": empty, "dying": empty, "each": empty, "eager": empty, "eagle": empty, "ear": empty, "early": empty, "earn": empty, "earth": empty, "east": empty, "eastern": empty, "easy": empty, "eat": empty, "eaten": empty, "edge": empty, "egg": empty, "eh": empty, "eight": empty, "eighteen": empty, "eighth": empty, "eighty": empty, "either": empty, "elbow": empty, "elder": empty, "eldest": empty, "electric": empty, "electricity": empty, "elephant": empty, "eleven": empty, "elf": empty, "elm": empty, "else": empty, "elsewhere": empty, "empty": empty, "end": empty, "ending": empty, "enemy": empty, "engine": empty, "engineer": empty, "English": empty, "enjoy": empty, "enough": empty, "enter": empty, "envelope": empty, "equal": empty, "erase": empty, "eraser": empty, "errand": empty, "escape": empty, "eve": empty, "even": empty, "evening": empty, "ever": empty, "every": empty, "everybody": empty, "everyday": empty, "everyone": empty, "everything": empty, "everywhere": empty, "evil": empty, "exact": empty, "except": empty, "exchange": empty, "excited": empty, "exciting": empty, "excuse": empty, "exit": empty, "expect": empty, "explain": empty, "extra": empty, "eye": empty, "eyebrow": empty, "fable": empty, "face": empty, "facing": empty, "fact": empty, "factory": empty, "fail": empty, "faint": empty, "fair": empty, "fairy": empty, "faith": empty, "fake": empty, "fall": empty, "false": empty, "family": empty, "fan": empty, "fancy": empty, "far": empty, "faraway": empty, "fare": empty, "farmer": empty, "farm": empty, "farming": empty, "far-off": empty, "farther": empty, "fashion": empty, "fast": empty, "fasten": empty, "fat": empty, "father": empty, "fault": empty, "favor": empty, "favorite": empty, "fear": empty, "feast": empty, "feather": empty, "February": empty, "fed": empty, "feed": empty, "feel": empty, "feet": empty, "fell": empty, "fellow": empty, "felt": empty, "fence": empty, "fever": empty, "few": empty, "fib": empty, "fiddle": empty, "field": empty, "fife": empty, "fifteen": empty, "fifth": empty, "fifty": empty, "fig": empty, "fight": empty, "figure": empty, "file": empty, "fill": empty, "film": empty, "finally": empty, "find": empty, "fine": empty, "finger": empty, "finish": empty, "fire": empty, "firearm": empty, "firecracker": empty, "fireplace": empty, "fireworks": empty, "firing": empty, "first": empty, "fish": empty, "fisherman": empty, "fist": empty, "fit": empty, "fits": empty, "five": empty, "fix": empty, "flag": empty, "flake": empty, "flame": empty, "flap": empty, "flash": empty, "flashlight": empty, "flat": empty, "flea": empty, "flesh": empty, "flew": empty, "flies": empty, "flight": empty, "flip": empty, "flip-flop": empty, "float": empty, "flock": empty, "flood": empty, "floor": empty, "flop": empty, "flour": empty, "flow": empty, "flower": empty, "flowery": empty, "flutter": empty, "fly": empty, "foam": empty, "fog": empty, "foggy": empty, "fold": empty, "folks": empty, "follow": empty, "following": empty, "fond": empty, "food": empty, "fool": empty, "foolish": empty, "foot": empty, "football": empty, "footprint": empty, "for": empty, "forehead": empty, "forest": empty, "forget": empty, "forgive": empty, "forgot": empty, "forgotten": empty, "fork": empty, "form": empty, "fort": empty, "forth": empty, "fortune": empty, "forty": empty, "forward": empty, "fought": empty, "found": empty, "fountain": empty, "four": empty, "fourteen": empty, "fourth": empty, "fox": empty, "frame": empty, "free": empty, "freedom": empty, "freeze": empty, "freight": empty, "French": empty, "fresh": empty, "fret": empty, "Friday": empty, "fried": empty, "friend": empty, "friendly": empty, "friendship": empty, "frighten": empty, "frog": empty, "from": empty, "front": empty, "frost": empty, "frown": empty, "froze": empty, "fruit": empty, "fry": empty, "fudge": empty, "fuel": empty, "full": empty, "fully": empty, "fun": empty, "funny": empty, "fur": empty, "furniture": empty, "further": empty, "fuzzy": empty, "gain": empty, "gallon": empty, "gallop": empty, "game": empty, "gang": empty, "garage": empty, "garbage": empty, "garden": empty, "gas": empty, "gasoline": empty, "gate": empty, "gather": empty, "gave": empty, "gay": empty, "gear": empty, "geese": empty, "general": empty, "gentle": empty, "gentleman": empty, "gentlemen": empty, "geography": empty, "get": empty, "getting": empty, "giant": empty, "gift": empty, "gingerbread": empty, "girl": empty, "give": empty, "given": empty, "giving": empty, "glad": empty, "gladly": empty, "glance": empty, "glass": empty, "glasses": empty, "gleam": empty, "glide": empty, "glory": empty, "glove": empty, "glow": empty, "glue": empty, "go": empty, "going": empty, "goes": empty, "goal": empty, "goat": empty, "gobble": empty, "God": empty, "god": empty, "godmother": empty, "gold": empty, "golden": empty, "goldfish": empty, "golf": empty, "gone": empty, "good": empty, "goods": empty, "goodbye": empty, "good-by": empty, "good-bye": empty, "good-looking": empty, "goodness": empty, "goody": empty, "goose": empty, "gooseberry": empty, "got": empty, "govern": empty, "government": empty, "gown": empty, "grab": empty, "gracious": empty, "grade": empty, "grain": empty, "grand": empty, "grandchild": empty, "grandchildren": empty, "granddaughter": empty, "grandfather": empty, "grandma": empty, "grandmother": empty, "grandpa": empty, "grandson": empty, "grandstand": empty, "grape": empty, "grapes": empty, "grapefruit": empty, "grass": empty, "grasshopper": empty, "grateful": empty, "grave": empty, "gravel": empty, "graveyard": empty, "gravy": empty, "gray": empty, "graze": empty, "grease": empty, "great": empty, "green": empty, "greet": empty, "grew": empty, "grind": empty, "groan": empty, "grocery": empty, "ground": empty, "group": empty, "grove": empty, "grow": empty, "guard": empty, "guess": empty, "guest": empty, "guide": empty, "gulf": empty, "gum": empty, "gun": empty, "gunpowder": empty, "guy": empty, "ha": empty, "habit": empty, "had": empty, "hadn't": empty, "hail": empty, "hair": empty, "haircut": empty, "hairpin": empty, "half": empty, "hall": empty, "halt": empty, "ham": empty, "hammer": empty, "hand": empty, "handful": empty, "handkerchief": empty, "handle": empty, "handwriting": empty, "hang": empty, "happen": empty, "happily": empty, "happiness": empty, "happy": empty, "harbor": empty, "hard": empty, "hardly": empty, "hardship": empty, "hardware": empty, "hare": empty, "hark": empty, "harm": empty, "harness": empty, "harp": empty, "harvest": empty, "has": empty, "hasn't": empty, "haste": empty, "hasten": empty, "hasty": empty, "hat": empty, "hatch": empty, "hatchet": empty, "hate": empty, "haul": empty, "have": empty, "haven't": empty, "having": empty, "hawk": empty, "hay": empty, "hayfield": empty, "haystack": empty, "he": empty, "head": empty, "headache": empty, "heal": empty, "health": empty, "healthy": empty, "heap": empty, "hear": empty, "hearing": empty, "heard": empty, "heart": empty, "heat": empty, "heater": empty, "heaven": empty, "heavy": empty, "he'd": empty, "heel": empty, "height": empty, "held": empty, "hell": empty, "he'll": empty, "hello": empty, "helmet": empty, "help": empty, "helper": empty, "helpful": empty, "hem": empty, "hen": empty, "henhouse": empty, "her": empty, "hers": empty, "herd": empty, "here": empty, "here's": empty, "hero": empty, "herself": empty, "he's": empty, "hey": empty, "hickory": empty, "hid": empty, "hidden": empty, "hide": empty, "high": empty, "highway": empty, "hill": empty, "hillside": empty, "hilltop": empty, "hilly": empty, "him": empty, "himself": empty, "hind": empty, "hint": empty, "hip": empty, "hire": empty, "his": empty, "hiss": empty, "history": empty, "hit": empty, "hitch": empty, "hive": empty, "ho": empty, "hoe": empty, "hog": empty, "hold": empty, "holder": empty, "hole": empty, "holiday": empty, "hollow": empty, "holy": empty, "home": empty, "homely": empty, "homesick": empty, "honest": empty, "honey": empty, "honeybee": empty, "honeymoon": empty, "honk": empty, "honor": empty, "hood": empty, "hoof": empty, "hook": empty, "hoop": empty, "hop": empty, "hope": empty, "hopeful": empty, "hopeless": empty, "horn": empty, "horse": empty, "horseback": empty, "horseshoe": empty, "hose": empty, "hospital": empty, "host": empty, "hot": empty, "hotel": empty, "hound": empty, "hour": empty, "house": empty, "housetop": empty, "housewife": empty, "housework": empty, "how": empty, "however": empty, "howl": empty, "hug": empty, "huge": empty, "hum": empty, "humble": empty, "hump": empty, "hundred": empty, "hung": empty, "hunger": empty, "hungry": empty, "hunk": empty, "hunt": empty, "hunter": empty, "hurrah": empty, "hurried": empty, "hurry": empty, "hurt": empty, "husband": empty, "hush": empty, "hut": empty, "hymn": empty, "I": empty, "ice": empty, "icy": empty, "I'd": empty, "idea": empty, "ideal": empty, "if": empty, "ill": empty, "I'll": empty, "I'm": empty, "important": empty, "impossible": empty, "improve": empty, "in": empty, "inch": empty, "inches": empty, "income": empty, "indeed": empty, "Indian": empty, "indoors": empty, "ink": empty, "inn": empty, "insect": empty, "inside": empty, "instant": empty, "instead": empty, "insult": empty, "intend": empty, "interested": empty, "interesting": empty, "into": empty, "invite": empty, "iron": empty, "is": empty, "island": empty, "isn't": empty, "it": empty, "its": empty, "it's": empty, "itself": empty, "I've": empty, "ivory": empty, "ivy": empty, "jacket": empty, "jacks": empty, "jail": empty, "jam": empty, "January": empty, "jar": empty, "jaw": empty, "jay": empty, "jelly": empty, "jellyfish": empty, "jerk": empty, "jig": empty, "job": empty, "jockey": empty, "join": empty, "joke": empty, "joking": empty, "jolly": empty, "journey": empty, "joy": empty, "joyful": empty, "joyous": empty, "judge": empty, "jug": empty, "juice": empty, "juicy": empty, "July": empty, "jump": empty, "June": empty, "junior": empty, "junk": empty, "just": empty, "keen": empty, "keep": empty, "kept": empty, "kettle": empty, "key": empty, "kick": empty, "kid": empty, "kill": empty, "killed": empty, "kind": empty, "kindly": empty, "kindness": empty, "king": empty, "kingdom": empty, "kiss": empty, "kitchen": empty, "kite": empty, "kitten": empty, "kitty": empty, "knee": empty, "kneel": empty, "knew": empty, "knife": empty, "knit": empty, "knives": empty, "knob": empty, "knock": empty, "knot": empty, "know": empty, "known": empty, "lace": empty, "lad": empty, "ladder": empty, "ladies": empty, "lady": empty, "laid": empty, "lake": empty, "lamb": empty, "lame": empty, "lamp": empty, "land": empty, "lane": empty, "language": empty, "lantern": empty, "lap": empty, "lard": empty, "large": empty, "lash": empty, "lass": empty, "last": empty, "late": empty, "laugh": empty, "laundry": empty, "law": empty, "lawn": empty, "lawyer": empty, "lay": empty, "lazy": empty, "lead": empty, "leader": empty, "leaf": empty, "leak": empty, "lean": empty, "leap": empty, "learn": empty, "learned": empty, "least": empty, "leather": empty, "leave": empty, "leaving": empty, "led": empty, "left": empty, "leg": empty, "lemon": empty, "lemonade": empty, "lend": empty, "length": empty, "less": empty, "lesson": empty, "let": empty, "let's": empty, "letter": empty, "letting": empty, "lettuce": empty, "level": empty, "liberty": empty, "library": empty, "lice": empty, "lick": empty, "lid": empty, "lie": empty, "life": empty, "lift": empty, "light": empty, "lightness": empty, "lightning": empty, "like": empty, "likely": empty, "liking": empty, "lily": empty, "limb": empty, "lime": empty, "limp": empty, "line": empty, "linen": empty, "lion": empty, "lip": empty, "list": empty, "listen": empty, "lit": empty, "little": empty, "live": empty, "lives": empty, "lively": empty, "liver": empty, "living": empty, "lizard": empty, "load": empty, "loaf": empty, "loan": empty, "loaves": empty, "lock": empty, "locomotive": empty, "log": empty, "lone": empty, "lonely": empty, "lonesome": empty, "long": empty, "look": empty, "lookout": empty, "loop": empty, "loose": empty, "lord": empty, "lose": empty, "loser": empty, "loss": empty, "lost": empty, "lot": empty, "loud": empty, "love": empty, "lovely": empty, "lover": empty, "low": empty, "luck": empty, "lucky": empty, "lumber": empty, "lump": empty, "lunch": empty, "lying": empty, "ma": empty, "machine": empty, "machinery": empty, "mad": empty, "made": empty, "magazine": empty, "magic": empty, "maid": empty, "mail": empty, "mailbox": empty, "mailman": empty, "major": empty, "make": empty, "making": empty, "male": empty, "mama": empty, "mamma": empty, "man": empty, "manager": empty, "mane": empty, "manger": empty, "many": empty, "map": empty, "maple": empty, "marble": empty, "march": empty, "March": empty, "mare": empty, "mark": empty, "market": empty, "marriage": empty, "married": empty, "marry": empty, "mask": empty, "mast": empty, "master": empty, "mat": empty, "match": empty, "matter": empty, "mattress": empty, "may": empty, "May": empty, "maybe": empty, "mayor": empty, "maypole": empty, "me": empty, "meadow": empty, "meal": empty, "mean": empty, "means": empty, "meant": empty, "measure": empty, "meat": empty, "medicine": empty, "meet": empty, "meeting": empty, "melt": empty, "member": empty, "men": empty, "mend": empty, "meow": empty, "merry": empty, "mess": empty, "message": empty, "met": empty, "metal": empty, "mew": empty, "mice": empty, "middle": empty, "midnight": empty, "might": empty, "mighty": empty, "mile": empty, "milk": empty, "milkman": empty, "mill": empty, "miler": empty, "million": empty, "mind": empty, "mine": empty, "miner": empty, "mint": empty, "minute": empty, "mirror": empty, "mischief": empty, "miss": empty, "Miss": empty, "misspell": empty, "mistake": empty, "misty": empty, "mitt": empty, "mitten": empty, "mix": empty, "moment": empty, "Monday": empty, "money": empty, "monkey": empty, "month": empty, "moo": empty, "moon": empty, "moonlight": empty, "moose": empty, "mop": empty, "more": empty, "morning": empty, "morrow": empty, "moss": empty, "most": empty, "mostly": empty, "mother": empty, "motor": empty, "mount": empty, "mountain": empty, "mouse": empty, "mouth": empty, "move": empty, "movie": empty, "movies": empty, "moving": empty, "mow": empty, "Mr.": empty, "Mrs.": empty, "much": empty, "mud": empty, "muddy": empty, "mug": empty, "mule": empty, "multiply": empty, "murder": empty, "music": empty, "must": empty, "my": empty, "myself": empty, "nail": empty, "name": empty, "nap": empty, "napkin": empty, "narrow": empty, "nasty": empty, "naughty": empty, "navy": empty, "near": empty, "nearby": empty, "nearly": empty, "neat": empty, "neck": empty, "necktie": empty, "need": empty, "needle": empty, "needn't": empty, "Negro": empty, "neighbor": empty, "neighborhood": empty, "neither": empty, "nerve": empty, "nest": empty, "net": empty, "never": empty, "nevermore": empty, "new": empty, "news": empty, "newspaper": empty, "next": empty, "nibble": empty, "nice": empty, "nickel": empty, "night": empty, "nightgown": empty, "nine": empty, "nineteen": empty, "ninety": empty, "no": empty, "nobody": empty, "nod": empty, "noise": empty, "noisy": empty, "none": empty, "noon": empty, "nor": empty, "north": empty, "northern": empty, "nose": empty, "not": empty, "note": empty, "nothing": empty, "notice": empty, "November": empty, "now": empty, "nowhere": empty, "number": empty, "nurse": empty, "nut": empty, "oak": empty, "oar": empty, "oatmeal": empty, "oats": empty, "obey": empty, "ocean": empty, "o'clock": empty, "October": empty, "odd": empty, "of": empty, "off": empty, "offer": empty, "office": empty, "officer": empty, "often": empty, "oh": empty, "oil": empty, "old": empty, "old-fashioned": empty, "on": empty, "once": empty, "one": empty, "onion": empty, "only": empty, "onward": empty, "open": empty, "or": empty, "orange": empty, "orchard": empty, "order": empty, "ore": empty, "organ": empty, "other": empty, "otherwise": empty, "ouch": empty, "ought": empty, "our": empty, "ours": empty, "ourselves": empty, "out": empty, "outdoors": empty, "outfit": empty, "outlaw": empty, "outline": empty, "outside": empty, "outward": empty, "oven": empty, "over": empty, "overalls": empty, "overcoat": empty, "overeat": empty, "overhead": empty, "overhear": empty, "overnight": empty, "overturn": empty, "owe": empty, "owing": empty, "owl": empty, "own": empty, "owner": empty, "ox": empty, "pa": empty, "pace": empty, "pack": empty, "package": empty, "pad": empty, "page": empty, "paid": empty, "pail": empty, "pain": empty, "painful": empty, "paint": empty, "painter": empty, "painting": empty, "pair": empty, "pal": empty, "palace": empty, "pale": empty, "pan": empty, "pancake": empty, "pane": empty, "pansy": empty, "pants": empty, "papa": empty, "paper": empty, "parade": empty, "pardon": empty, "parent": empty, "park": empty, "part": empty, "partly": empty, "partner": empty, "party": empty, "pass": empty, "passenger": empty, "past": empty, "paste": empty, "pasture": empty, "pat": empty, "patch": empty, "path": empty, "patter": empty, "pave": empty, "pavement": empty, "paw": empty, "pay": empty, "payment": empty, "pea": empty, "peas": empty, "peace": empty, "peaceful": empty, "peach": empty, "peaches": empty, "peak": empty, "peanut": empty, "pear": empty, "pearl": empty, "peck": empty, "peek": empty, "peel": empty, "peep": empty, "peg": empty, "pen": empty, "pencil": empty, "penny": empty, "people": empty, "pepper": empty, "peppermint": empty, "perfume": empty, "perhaps": empty, "person": empty, "pet": empty, "phone": empty, "piano": empty, "pick": empty, "pickle": empty, "picnic": empty, "picture": empty, "pie": empty, "piece": empty, "pig": empty, "pigeon": empty, "piggy": empty, "pile": empty, "pill": empty, "pillow": empty, "pin": empty, "pine": empty, "pineapple": empty, "pink": empty, "pint": empty, "pipe": empty, "pistol": empty, "pit": empty, "pitch": empty, "pitcher": empty, "pity": empty, "place": empty, "plain": empty, "plan": empty, "plane": empty, "plant": empty, "plate": empty, "platform": empty, "platter": empty, "play": empty, "player": empty, "playground": empty, "playhouse": empty, "playmate": empty, "plaything": empty, "pleasant": empty, "please": empty, "pleasure": empty, "plenty": empty, "plow": empty, "plug": empty, "plum": empty, "pocket": empty, "pocketbook": empty, "poem": empty, "point": empty, "poison": empty, "poke": empty, "pole": empty, "police": empty, "policeman": empty, "polish": empty, "polite": empty, "pond": empty, "ponies": empty, "pony": empty, "pool": empty, "poor": empty, "pop": empty, "popcorn": empty, "popped": empty, "porch": empty, "pork": empty, "possible": empty, "post": empty, "postage": empty, "postman": empty, "pot": empty, "potato": empty, "potatoes": empty, "pound": empty, "pour": empty, "powder": empty, "power": empty, "powerful": empty, "praise": empty, "pray": empty, "prayer": empty, "prepare": empty, "present": empty, "pretty": empty, "price": empty, "prick": empty, "prince": empty, "princess": empty, "print": empty, "prison": empty, "prize": empty, "promise": empty, "proper": empty, "protect": empty, "proud": empty, "prove": empty, "prune": empty, "public": empty, "puddle": empty, "puff": empty, "pull": empty, "pump": empty, "pumpkin": empty, "punch": empty, "punish": empty, "pup": empty, "pupil": empty, "puppy": empty, "pure": empty, "purple": empty, "purse": empty, "push": empty, "puss": empty, "pussy": empty, "pussycat": empty, "put": empty, "putting": empty, "puzzle": empty, "quack": empty, "quart": empty, "quarter": empty, "queen": empty, "queer": empty, "question": empty, "quick": empty, "quickly": empty, "quiet": empty, "quilt": empty, "quit": empty, "quite": empty, "rabbit": empty, "race": empty, "rack": empty, "radio": empty, "radish": empty, "rag": empty, "rail": empty, "railroad": empty, "railway": empty, "rain": empty, "rainy": empty, "rainbow": empty, "raise": empty, "raisin": empty, "rake": empty, "ram": empty, "ran": empty, "ranch": empty, "rang": empty, "rap": empty, "rapidly": empty, "rat": empty, "rate": empty, "rather": empty, "rattle": empty, "raw": empty, "ray": empty, "reach": empty, "read": empty, "reader": empty, "reading": empty, "ready": empty, "real": empty, "really": empty, "reap": empty, "rear": empty, "reason": empty, "rebuild": empty, "receive": empty, "recess": empty, "record": empty, "red": empty, "redbird": empty, "redbreast": empty, "refuse": empty, "reindeer": empty, "rejoice": empty, "remain": empty, "remember": empty, "remind": empty, "remove": empty, "rent": empty, "repair": empty, "repay": empty, "repeat": empty, "report": empty, "rest": empty, "return": empty, "review": empty, "reward": empty, "rib": empty, "ribbon": empty, "rice": empty, "rich": empty, "rid": empty, "riddle": empty, "ride": empty, "rider": empty, "riding": empty, "right": empty, "rim": empty, "ring": empty, "rip": empty, "ripe": empty, "rise": empty, "rising": empty, "river": empty, "road": empty, "roadside": empty, "roar": empty, "roast": empty, "rob": empty, "robber": empty, "robe": empty, "robin": empty, "rock": empty, "rocky": empty, "rocket": empty, "rode": empty, "roll": empty, "roller": empty, "roof": empty, "room": empty, "rooster": empty, "root": empty, "rope": empty, "rose": empty, "rosebud": empty, "rot": empty, "rotten": empty, "rough": empty, "round": empty, "route": empty, "row": empty, "rowboat": empty, "royal": empty, "rub": empty, "rubbed": empty, "rubber": empty, "rubbish": empty, "rug": empty, "rule": empty, "ruler": empty, "rumble": empty, "run": empty, "rung": empty, "runner": empty, "running": empty, "rush": empty, "rust": empty, "rusty": empty, "rye": empty, "sack": empty, "sad": empty, "saddle": empty, "sadness": empty, "safe": empty, "safety": empty, "said": empty, "sail": empty, "sailboat": empty, "sailor": empty, "saint": empty, "salad": empty, "sale": empty, "salt": empty, "same": empty, "sand": empty, "sandy": empty, "sandwich": empty, "sang": empty, "sank": empty, "sap": empty, "sash": empty, "sat": empty, "satin": empty, "satisfactory": empty, "Saturday": empty, "sausage": empty, "savage": empty, "save": empty, "savings": empty, "saw": empty, "say": empty, "scab": empty, "scales": empty, "scare": empty, "scarf": empty, "school": empty, "schoolboy": empty, "schoolhouse": empty, "schoolmaster": empty, "schoolroom": empty, "scorch": empty, "score": empty, "scrap": empty, "scrape": empty, "scratch": empty, "scream": empty, "screen": empty, "screw": empty, "scrub": empty, "sea": empty, "seal": empty, "seam": empty, "search": empty, "season": empty, "seat": empty, "second": empty, "secret": empty, "see": empty, "seeing": empty, "seed": empty, "seek": empty, "seem": empty, "seen": empty, "seesaw": empty, "select": empty, "self": empty, "selfish": empty, "sell": empty, "send": empty, "sense": empty, "sent": empty, "sentence": empty, "separate": empty, "September": empty, "servant": empty, "serve": empty, "service": empty, "set": empty, "setting": empty, "settle": empty, "settlement": empty, "seven": empty, "seventeen": empty, "seventh": empty, "seventy": empty, "several": empty, "sew": empty, "shade": empty, "shadow": empty, "shady": empty, "shake": empty, "shaker": empty, "shaking": empty, "shall": empty, "shame": empty, "shan't": empty, "shape": empty, "share": empty, "sharp": empty, "shave": empty, "she": empty, "she'd": empty, "she'll": empty, "she's": empty, "shear": empty, "shears": empty, "shed": empty, "sheep": empty, "sheet": empty, "shelf": empty, "shell": empty, "shepherd": empty, "shine": empty, "shining": empty, "shiny": empty, "ship": empty, "shirt": empty, "shock": empty, "shoe": empty, "shoemaker": empty, "shone": empty, "shook": empty, "shoot": empty, "shop": empty, "shopping": empty, "shore": empty, "short": empty, "shot": empty, "should": empty, "shoulder": empty, "shouldn't": empty, "shout": empty, "shovel": empty, "show": empty, "shower": empty, "shut": empty, "shy": empty, "sick": empty, "sickness": empty, "side": empty, "sidewalk": empty, "sideways": empty, "sigh": empty, "sight": empty, "sign": empty, "silence": empty, "silent": empty, "silk": empty, "sill": empty, "silly": empty, "silver": empty, "simple": empty, "sin": empty, "since": empty, "sing": empty, "singer": empty, "single": empty, "sink": empty, "sip": empty, "sir": empty, "sis": empty, "sissy": empty, "sister": empty, "sit": empty, "sitting": empty, "six": empty, "sixteen": empty, "sixth": empty, "sixty": empty, "size": empty, "skate": empty, "skater": empty, "ski": empty, "skin": empty, "skip": empty, "skirt": empty, "sky": empty, "slam": empty, "slap": empty, "slate": empty, "slave": empty, "sled": empty, "sleep": empty, "sleepy": empty, "sleeve": empty, "sleigh": empty, "slept": empty, "slice": empty, "slid": empty, "slide": empty, "sling": empty, "slip": empty, "slipped": empty, "slipper": empty, "slippery": empty, "slit": empty, "slow": empty, "slowly": empty, "sly": empty, "smack": empty, "small": empty, "smart": empty, "smell": empty, "smile": empty, "smoke": empty, "smooth": empty, "snail": empty, "snake": empty, "snap": empty, "snapping": empty, "sneeze": empty, "snow": empty, "snowy": empty, "snowball": empty, "snowflake": empty, "snuff": empty, "snug": empty, "so": empty, "soak": empty, "soap": empty, "sob": empty, "socks": empty, "sod": empty, "soda": empty, "sofa": empty, "soft": empty, "soil": empty, "sold": empty, "soldier": empty, "sole": empty, "some": empty, "somebody": empty, "somehow": empty, "someone": empty, "something": empty, "sometime": empty, "sometimes": empty, "somewhere": empty, "son": empty, "song": empty, "soon": empty, "sore": empty, "sorrow": empty, "sorry": empty, "sort": empty, "soul": empty, "sound": empty, "soup": empty, "sour": empty, "south": empty, "southern": empty, "space": empty, "spade": empty, "spank": empty, "sparrow": empty, "speak": empty, "speaker": empty, "spear": empty, "speech": empty, "speed": empty, "spell": empty, "spelling": empty, "spend": empty, "spent": empty, "spider": empty, "spike": empty, "spill": empty, "spin": empty, "spinach": empty, "spirit": empty, "spit": empty, "splash": empty, "spoil": empty, "spoke": empty, "spook": empty, "spoon": empty, "sport": empty, "spot": empty, "spread": empty, "spring": empty, "springtime": empty, "sprinkle": empty, "square": empty, "squash": empty, "squeak": empty, "squeeze": empty, "squirrel": empty, "stable": empty, "stack": empty, "stage": empty, "stair": empty, "stall": empty, "stamp": empty, "stand": empty, "star": empty, "stare": empty, "start": empty, "starve": empty, "state": empty, "station": empty, "stay": empty, "steak": empty, "steal": empty, "steam": empty, "steamboat": empty, "steamer": empty, "steel": empty, "steep": empty, "steeple": empty, "steer": empty, "stem": empty, "step": empty, "stepping": empty, "stick": empty, "sticky": empty, "stiff": empty, "still": empty, "stillness": empty, "sting": empty, "stir": empty, "stitch": empty, "stock": empty, "stocking": empty, "stole": empty, "stone": empty, "stood": empty, "stool": empty, "stoop": empty, "stop": empty, "stopped": empty, "stopping": empty, "store": empty, "stork": empty, "stories": empty, "storm": empty, "stormy": empty, "story": empty, "stove": empty, "straight": empty, "strange": empty, "stranger": empty, "strap": empty, "straw": empty, "strawberry": empty, "stream": empty, "street": empty, "stretch": empty, "string": empty, "strip": empty, "stripes": empty, "strong": empty, "stuck": empty, "study": empty, "stuff": empty, "stump": empty, "stung": empty, "subject": empty, "such": empty, "suck": empty, "sudden": empty, "suffer": empty, "sugar": empty, "suit": empty, "sum": empty, "summer": empty, "sun": empty, "Sunday": empty, "sunflower": empty, "sung": empty, "sunk": empty, "sunlight": empty, "sunny": empty, "sunrise": empty, "sunset": empty, "sunshine": empty, "supper": empty, "suppose": empty, "sure": empty, "surely": empty, "surface": empty, "surprise": empty, "swallow": empty, "swam": empty, "swamp": empty, "swan": empty, "swat": empty, "swear": empty, "sweat": empty, "sweater": empty, "sweep": empty, "sweet": empty, "sweetness": empty, "sweetheart": empty, "swell": empty, "swept": empty, "swift": empty, "swim": empty, "swimming": empty, "swing": empty, "switch": empty, "sword": empty, "swore": empty, "table": empty, "tablecloth": empty, "tablespoon": empty, "tablet": empty, "tack": empty, "tag": empty, "tail": empty, "tailor": empty, "take": empty, "taken": empty, "taking": empty, "tale": empty, "talk": empty, "talker": empty, "tall": empty, "tame": empty, "tan": empty, "tank": empty, "tap": empty, "tape": empty, "tar": empty, "tardy": empty, "task": empty, "taste": empty, "taught": empty, "tax": empty, "tea": empty, "teach": empty, "teacher": empty, "team": empty, "tear": empty, "tease": empty, "teaspoon": empty, "teeth": empty, "telephone": empty, "tell": empty, "temper": empty, "ten": empty, "tennis": empty, "tent": empty, "term": empty, "terrible": empty, "test": empty, "than": empty, "thank": empty, "thanks": empty, "thankful": empty, "Thanksgiving": empty, "that": empty, "that's": empty, "the": empty, "theater": empty, "thee": empty, "their": empty, "them": empty, "then": empty, "there": empty, "these": empty, "they": empty, "they'd": empty, "they'll": empty, "they're": empty, "they've": empty, "thick": empty, "thief": empty, "thimble": empty, "thin": empty, "thing": empty, "think": empty, "third": empty, "thirsty": empty, "thirteen": empty, "thirty": empty, "this": empty, "thorn": empty, "those": empty, "though": empty, "thought": empty, "thousand": empty, "thread": empty, "three": empty, "threw": empty, "throat": empty, "throne": empty, "through": empty, "throw": empty, "thrown": empty, "thumb": empty, "thunder": empty, "Thursday": empty, "thy": empty, "tick": empty, "ticket": empty, "tickle": empty, "tie": empty, "tiger": empty, "tight": empty, "till": empty, "time": empty, "tin": empty, "tinkle": empty, "tiny": empty, "tip": empty, "tiptoe": empty, "tire": empty, "tired": empty, "title": empty, "to": empty, "toad": empty, "toadstool": empty, "toast": empty, "tobacco": empty, "today": empty, "toe": empty, "together": empty, "toilet": empty, "told": empty, "tomato": empty, "tomorrow": empty, "ton": empty, "tone": empty, "tongue": empty, "tonight": empty, "too": empty, "took": empty, "tool": empty, "toot": empty, "tooth": empty, "toothbrush": empty, "toothpick": empty, "top": empty, "tore": empty, "torn": empty, "toss": empty, "touch": empty, "tow": empty, "toward": empty, "towards": empty, "towel": empty, "tower": empty, "town": empty, "toy": empty, "trace": empty, "track": empty, "trade": empty, "train": empty, "tramp": empty, "trap": empty, "tray": empty, "treasure": empty, "treat": empty, "tree": empty, "trick": empty, "tricycle": empty, "tried": empty, "trim": empty, "trip": empty, "trolley": empty, "trouble": empty, "truck": empty, "true": empty, "truly": empty, "trunk": empty, "trust": empty, "truth": empty, "try": empty, "tub": empty, "Tuesday": empty, "tug": empty, "tulip": empty, "tumble": empty, "tune": empty, "tunnel": empty, "turkey": empty, "turn": empty, "turtle": empty, "twelve": empty, "twenty": empty, "twice": empty, "twig": empty, "twin": empty, "two": empty, "ugly": empty, "umbrella": empty, "uncle": empty, "under": empty, "understand": empty, "underwear": empty, "undress": empty, "unfair": empty, "unfinished": empty, "unfold": empty, "unfriendly": empty, "unhappy": empty, "unhurt": empty, "uniform": empty, "United": empty, "States": empty, "unkind": empty, "unknown": empty, "unless": empty, "unpleasant": empty, "until": empty, "unwilling": empty, "up": empty, "upon": empty, "upper": empty, "upset": empty, "upside": empty, "upstairs": empty, "uptown": empty, "upward": empty, "us": empty, "use": empty, "used": empty, "useful": empty, "valentine": empty, "valley": empty, "valuable": empty, "value": empty, "vase": empty, "vegetable": empty, "velvet": empty, "very": empty, "vessel": empty, "victory": empty, "view": empty, "village": empty, "vine": empty, "violet": empty, "visit": empty, "visitor": empty, "voice": empty, "vote": empty, "wag": empty, "wagon": empty, "waist": empty, "wait": empty, "wake": empty, "waken": empty, "walk": empty, "wall": empty, "walnut": empty, "want": empty, "war": empty, "warm": empty, "warn": empty, "was": empty, "wash": empty, "washer": empty, "washtub": empty, "wasn't": empty, "waste": empty, "watch": empty, "watchman": empty, "water": empty, "watermelon": empty, "waterproof": empty, "wave": empty, "wax": empty, "way": empty, "wayside": empty, "we": empty, "weak": empty, "weakness": empty, "weaken": empty, "wealth": empty, "weapon": empty, "wear": empty, "weary": empty, "weather": empty, "weave": empty, "web": empty, "we'd": empty, "wedding": empty, "Wednesday": empty, "wee": empty, "weed": empty, "week": empty, "we'll": empty, "weep": empty, "weigh": empty, "welcome": empty, "well": empty, "went": empty, "were": empty, "we're": empty, "west": empty, "western": empty, "wet": empty, "we've": empty, "whale": empty, "what": empty, "what's": empty, "wheat": empty, "wheel": empty, "when": empty, "whenever": empty, "where": empty, "which": empty, "while": empty, "whip": empty, "whipped": empty, "whirl": empty, "whisky": empty, "whiskey": empty, "whisper": empty, "whistle": empty, "white": empty, "who": empty, "who'd": empty, "whole": empty, "who'll": empty, "whom": empty, "who's": empty, "whose": empty, "why": empty, "wicked": empty, "wide": empty, "wife": empty, "wiggle": empty, "wild": empty, "wildcat": empty, "will": empty, "willing": empty, "willow": empty, "win": empty, "wind": empty, "windy": empty, "windmill": empty, "window": empty, "wine": empty, "wing": empty, "wink": empty, "winner": empty, "winter": empty, "wipe": empty, "wire": empty, "wise": empty, "wish": empty, "wit": empty, "witch": empty, "with": empty, "without": empty, "woke": empty, "wolf": empty, "woman": empty, "women": empty, "won": empty, "wonder": empty, "wonderful": empty, "won't": empty, "wood": empty, "wooden": empty, "woodpecker": empty, "woods": empty, "wool": empty, "woolen": empty, "word": empty, "wore": empty, "work": empty, "worker": empty, "workman": empty, "world": empty, "worm": empty, "worn": empty, "worry": empty, "worse": empty, "worst": empty, "worth": empty, "would": empty, "wouldn't": empty, "wound": empty, "wove": empty, "wrap": empty, "wrapped": empty, "wreck": empty, "wren": empty, "wring": empty, "write": empty, "writing": empty, "written": empty, "wrong": empty, "wrote": empty, "wrung": empty, "yard": empty, "yarn": empty, "year": empty, "yell": empty, "yellow": empty, "yes": empty, "yesterday": empty, "yet": empty, "yolk": empty, "yonder": empty, "you": empty, "you'd": empty, "you'll": empty, "young": empty, "youngster": empty, "your": empty, "yours": empty, "you're": empty, "yourself": empty, "yourselves": empty, } prose-1.2.1/summarize/easy_test.go000066400000000000000000000006521377030147400172170ustar00rootroot00000000000000package summarize import ( "encoding/json" "path/filepath" "testing" "github.com/jdkato/prose/internal/util" ) func BenchmarkEasyWordsLookupMap(b *testing.B) { cases := util.ReadDataFile(filepath.Join(testdata, "syllables.json")) tests := make(map[string]int) util.CheckError(json.Unmarshal(cases, &tests)) for n := 0; n < b.N; n++ { for word := range tests { if _, ok := easyWords[word]; ok { } } } } prose-1.2.1/summarize/readability.go000066400000000000000000000043001377030147400175020ustar00rootroot00000000000000package summarize import ( "math" ) // FleschKincaid computes the Flesch–Kincaid grade level // (https://en.wikipedia.org/wiki/Flesch%E2%80%93Kincaid_readability_tests). func (d *Document) FleschKincaid() float64 { x := 0.39 * d.NumWords / d.NumSentences y := 11.8 * d.NumSyllables / d.NumWords return x + y - 15.59 } // FleschReadingEase computes the Flesch reading-ease score // (https://en.wikipedia.org/wiki/Flesch%E2%80%93Kincaid_readability_tests). func (d *Document) FleschReadingEase() float64 { x := 1.015 * d.NumWords / d.NumSentences y := 84.6 * d.NumSyllables / d.NumWords return 206.835 - x - y } // GunningFog computes the Gunning Fog index score // (https://en.wikipedia.org/wiki/Gunning_fog_index). func (d *Document) GunningFog() float64 { x := d.NumWords / d.NumSentences y := d.NumComplexWords / d.NumWords return 0.4 * (x + 100.0*y) } // LIX computes readability measure // (https://en.wikipedia.org/wiki/Lix_(readability_test)) . func (d *Document) LIX() float64 { return (d.NumWords / d.NumSentences) + ((d.NumLongWords * 100) / d.NumWords) } // SMOG computes the SMOG grade (https://en.wikipedia.org/wiki/SMOG). func (d *Document) SMOG() float64 { return 1.0430*math.Sqrt(d.NumPolysylWords*30.0/d.NumSentences) + 3.1291 } // AutomatedReadability computes the automated readability index score // (https://en.wikipedia.org/wiki/Automated_readability_index). func (d *Document) AutomatedReadability() float64 { x := 4.71 * (d.NumCharacters / d.NumWords) y := 0.5 * (d.NumWords / d.NumSentences) return x + y - 21.43 } // ColemanLiau computes the Coleman–Liau index score // (https://en.wikipedia.org/wiki/Coleman%E2%80%93Liau_index). func (d *Document) ColemanLiau() float64 { x := 0.0588 * (d.NumCharacters / d.NumWords) * 100 y := 0.296 * (d.NumSentences / d.NumWords) * 100 return x - y - 15.8 } // DaleChall computes the Dale–Chall score // (https://en.wikipedia.org/wiki/Dale%E2%80%93Chall_readability_formula). func (d *Document) DaleChall() float64 { easy := 0.0 for word := range d.WordFrequency { if _, ok := easyWords[word]; ok { easy++ } } hard := d.NumWords - easy x := (hard / d.NumWords) * 100 y := (d.NumWords / d.NumSentences) return 0.1579*x + 0.0496*y } prose-1.2.1/summarize/readability_test.go000066400000000000000000000022271377030147400205470ustar00rootroot00000000000000package summarize import ( "encoding/json" "path/filepath" "testing" "github.com/jdkato/prose/internal/util" "github.com/stretchr/testify/assert" ) func TestReadability(t *testing.T) { tests := make([]testCase, 0) cases := util.ReadDataFile(filepath.Join(testdata, "summarize.json")) util.CheckError(json.Unmarshal(cases, &tests)) for _, test := range tests { d := NewDocument(test.Text) a := d.Assess() assert.True(t, check(test.AutomatedReadability, a.AutomatedReadability)) assert.True(t, check(test.ColemanLiau, a.ColemanLiau)) assert.True(t, check(test.FleschKincaid, a.FleschKincaid)) assert.True(t, check(test.GunningFog, a.GunningFog)) assert.True(t, check(test.SMOG, a.SMOG)) assert.True(t, check(test.MeanGrade, a.MeanGradeLevel)) assert.True(t, check(test.StdDevGrade, a.StdDevGradeLevel)) assert.True(t, check(test.DaleChall, a.DaleChall)) assert.True(t, check(test.ReadingEase, a.ReadingEase)) assert.True(t, check(test.LIX, a.LIX)) } } func BenchmarkReadability(b *testing.B) { in := util.ReadDataFile(filepath.Join(testdata, "sherlock.txt")) d := NewDocument(string(in)) for n := 0; n < b.N; n++ { d.Assess() } } prose-1.2.1/summarize/stop.go000066400000000000000000000167321377030147400162120ustar00rootroot00000000000000package summarize var stopWords = map[string]struct{}{ "a": empty, "about": empty, "above": empty, "across": empty, "after": empty, "afterwards": empty, "again": empty, "against": empty, "all": empty, "almost": empty, "alone": empty, "along": empty, "already": empty, "also": empty, "although": empty, "always": empty, "am": empty, "among": empty, "amongst": empty, "amount": empty, "an": empty, "and": empty, "another": empty, "any": empty, "anyhow": empty, "anyone": empty, "anything": empty, "anyway": empty, "anywhere": empty, "are": empty, "around": empty, "as": empty, "at": empty, "back": empty, "be": empty, "became": empty, "because": empty, "become": empty, "becomes": empty, "becoming": empty, "been": empty, "before": empty, "beforehand": empty, "behind": empty, "being": empty, "below": empty, "beside": empty, "besides": empty, "between": empty, "beyond": empty, "bill": empty, "both": empty, "bottom": empty, "but": empty, "by": empty, "call": empty, "can": empty, "cannot": empty, "cant": empty, "co": empty, "con": empty, "could": empty, "couldnt": empty, "cry": empty, "de": empty, "describe": empty, "detail": empty, "do": empty, "done": empty, "down": empty, "due": empty, "during": empty, "each": empty, "eg": empty, "eight": empty, "either": empty, "eleven": empty, "else": empty, "elsewhere": empty, "empty": empty, "enough": empty, "etc": empty, "even": empty, "ever": empty, "every": empty, "everyone": empty, "everything": empty, "everywhere": empty, "except": empty, "few": empty, "fifteen": empty, "fify": empty, "fill": empty, "find": empty, "fire": empty, "first": empty, "five": empty, "for": empty, "former": empty, "formerly": empty, "forty": empty, "found": empty, "four": empty, "from": empty, "front": empty, "full": empty, "further": empty, "get": empty, "give": empty, "go": empty, "had": empty, "has": empty, "hasnt": empty, "have": empty, "he": empty, "hence": empty, "her": empty, "here": empty, "hereafter": empty, "hereby": empty, "herein": empty, "hereupon": empty, "hers": empty, "herself": empty, "him": empty, "himself": empty, "his": empty, "how": empty, "however": empty, "hundred": empty, "ie": empty, "if": empty, "in": empty, "inc": empty, "indeed": empty, "interest": empty, "into": empty, "is": empty, "it": empty, "its": empty, "itself": empty, "keep": empty, "last": empty, "latter": empty, "latterly": empty, "least": empty, "less": empty, "ltd": empty, "made": empty, "many": empty, "may": empty, "me": empty, "meanwhile": empty, "might": empty, "mill": empty, "mine": empty, "more": empty, "moreover": empty, "most": empty, "mostly": empty, "move": empty, "much": empty, "must": empty, "my": empty, "myself": empty, "name": empty, "namely": empty, "neither": empty, "never": empty, "nevertheless": empty, "next": empty, "nine": empty, "no": empty, "nobody": empty, "none": empty, "noone": empty, "nor": empty, "not": empty, "nothing": empty, "now": empty, "nowhere": empty, "of": empty, "off": empty, "often": empty, "on": empty, "once": empty, "one": empty, "only": empty, "onto": empty, "or": empty, "other": empty, "others": empty, "otherwise": empty, "our": empty, "ours": empty, "ourselves": empty, "out": empty, "over": empty, "own": empty, "part": empty, "per": empty, "perhaps": empty, "please": empty, "put": empty, "rather": empty, "re": empty, "same": empty, "see": empty, "seem": empty, "seemed": empty, "seeming": empty, "seems": empty, "serious": empty, "several": empty, "she": empty, "should": empty, "show": empty, "side": empty, "since": empty, "sincere": empty, "six": empty, "sixty": empty, "so": empty, "some": empty, "somehow": empty, "someone": empty, "something": empty, "sometime": empty, "sometimes": empty, "somewhere": empty, "still": empty, "such": empty, "system": empty, "take": empty, "ten": empty, "than": empty, "that": empty, "the": empty, "their": empty, "them": empty, "themselves": empty, "then": empty, "thence": empty, "there": empty, "thereafter": empty, "thereby": empty, "therefore": empty, "therein": empty, "thereupon": empty, "these": empty, "they": empty, "thickv": empty, "thin": empty, "third": empty, "this": empty, "those": empty, "though": empty, "three": empty, "through": empty, "throughout": empty, "thru": empty, "thus": empty, "to": empty, "together": empty, "too": empty, "top": empty, "toward": empty, "towards": empty, "twelve": empty, "twenty": empty, "two": empty, "un": empty, "under": empty, "until": empty, "up": empty, "upon": empty, "us": empty, "very": empty, "via": empty, "was": empty, "we": empty, "well": empty, "were": empty, "what": empty, "whatever": empty, "when": empty, "whence": empty, "whenever": empty, "where": empty, "whereafter": empty, "whereas": empty, "whereby": empty, "wherein": empty, "whereupon": empty, "wherever": empty, "whether": empty, "which": empty, "while": empty, "whither": empty, "who": empty, "whoever": empty, "whole": empty, "whom": empty, "whose": empty, "why": empty, "will": empty, "with": empty, "within": empty, "without": empty, "would": empty, "yet": empty, "you": empty, "your": empty, "yours": empty, "yourself": empty, "yourselves": empty, } prose-1.2.1/summarize/summarize.go000066400000000000000000000153011377030147400172300ustar00rootroot00000000000000/* Package summarize implements utilities for computing readability scores, usage statistics, and TL;DR summaries of text. */ package summarize import ( "sort" "strings" "unicode" "github.com/jdkato/prose/internal/util" "github.com/jdkato/prose/tokenize" "github.com/montanaflynn/stats" ) // A Word represents a single word in a Document. type Word struct { Text string // the actual text Syllables int // the number of syllables } // A Sentence represents a single sentence in a Document. type Sentence struct { Text string // the actual text Length int // the number of words Words []Word // the words in this sentence Paragraph int } // A RankedParagraph is a paragraph ranked by its number of keywords. type RankedParagraph struct { Sentences []Sentence Position int // the zero-based position within a Document Rank int } // A Document represents a collection of text to be analyzed. // // A Document's calculations depend on its word and sentence tokenizers. You // can use the defaults by invoking NewDocument, choose another implemention // from the tokenize package, or use your own (as long as it implements the // ProseTokenizer interface). For example, // // d := Document{Content: ..., WordTokenizer: ..., SentenceTokenizer: ...} // d.Initialize() type Document struct { Content string // Actual text NumCharacters float64 // Number of Characters NumComplexWords float64 // PolysylWords without common suffixes NumParagraphs float64 // Number of paragraphs NumPolysylWords float64 // Number of words with > 2 syllables NumSentences float64 // Number of sentences NumSyllables float64 // Number of syllables NumWords float64 // Number of words NumLongWords float64 // Number of long words Sentences []Sentence // the Document's sentences WordFrequency map[string]int // [word]frequency SentenceTokenizer tokenize.ProseTokenizer WordTokenizer tokenize.ProseTokenizer } // An Assessment provides comprehensive access to a Document's metrics. type Assessment struct { // assessments returning an estimated grade level AutomatedReadability float64 ColemanLiau float64 FleschKincaid float64 GunningFog float64 SMOG float64 LIX float64 // mean & standard deviation of the above estimated grade levels MeanGradeLevel float64 StdDevGradeLevel float64 // assessments returning non-grade numerical scores DaleChall float64 ReadingEase float64 } // NewDocument is a Document constructor that takes a string as an argument. It // then calculates the data necessary for computing readability and usage // statistics. // // This is a convenience wrapper around the Document initialization process // that defaults to using a WordBoundaryTokenizer and a PunktSentenceTokenizer // as its word and sentence tokenizers, respectively. func NewDocument(text string) *Document { wTok := tokenize.NewWordBoundaryTokenizer() sTok := tokenize.NewPunktSentenceTokenizer() doc := Document{Content: text, WordTokenizer: wTok, SentenceTokenizer: sTok} doc.Initialize() return &doc } // Initialize calculates the data necessary for computing readability and usage // statistics. func (d *Document) Initialize() { d.WordFrequency = make(map[string]int) for i, paragraph := range strings.Split(d.Content, "\n\n") { for _, s := range d.SentenceTokenizer.Tokenize(paragraph) { wordCount := d.NumWords d.NumSentences++ words := []Word{} for _, word := range d.WordTokenizer.Tokenize(s) { word = strings.TrimSpace(word) if len(word) == 0 { continue } d.NumCharacters += countChars(word) if _, found := d.WordFrequency[word]; found { d.WordFrequency[word]++ } else { d.WordFrequency[word] = 1 } if len(word) > 6 { d.NumLongWords++ } syllables := Syllables(word) words = append(words, Word{Text: word, Syllables: syllables}) d.NumSyllables += float64(syllables) if syllables > 2 { d.NumPolysylWords++ } if isComplex(word, syllables) { d.NumComplexWords++ } d.NumWords++ } d.Sentences = append(d.Sentences, Sentence{ Text: strings.TrimSpace(s), Length: int(d.NumWords - wordCount), Words: words, Paragraph: i}) } d.NumParagraphs++ } } // Assess returns an Assessment for the Document d. func (d *Document) Assess() *Assessment { a := Assessment{ FleschKincaid: d.FleschKincaid(), ReadingEase: d.FleschReadingEase(), GunningFog: d.GunningFog(), SMOG: d.SMOG(), DaleChall: d.DaleChall(), AutomatedReadability: d.AutomatedReadability(), ColemanLiau: d.ColemanLiau(), LIX: d.LIX()} gradeScores := []float64{ a.FleschKincaid, a.AutomatedReadability, a.GunningFog, a.SMOG, a.ColemanLiau} mean, merr := stats.Mean(gradeScores) stdDev, serr := stats.StandardDeviation(gradeScores) if merr != nil || serr != nil { a.MeanGradeLevel = 0.0 a.StdDevGradeLevel = 0.0 } else { a.MeanGradeLevel = mean a.StdDevGradeLevel = stdDev } return &a } // Summary returns a Document's n highest ranked paragraphs according to // keyword frequency. func (d *Document) Summary(n int) []RankedParagraph { rankings := []RankedParagraph{} scores := d.Keywords() for i := 0; i < int(d.NumParagraphs); i++ { p := RankedParagraph{Position: i} rank := 0 size := 0 for _, s := range d.Sentences { if s.Paragraph == i { size += s.Length for _, w := range s.Words { if score, found := scores[w.Text]; found { rank += score } } p.Sentences = append(p.Sentences, s) } } // Favor longer paragraphs, as they tend to be more informational. p.Rank = (rank * size) rankings = append(rankings, p) } // Sort by raking: sort.Sort(byRank(rankings)) // Take the top-n paragraphs: size := len(rankings) if size > n { rankings = rankings[size-n:] } // Sort by chronological position: sort.Sort(byIndex(rankings)) return rankings } type byRank []RankedParagraph func (s byRank) Len() int { return len(s) } func (s byRank) Swap(i, j int) { s[i], s[j] = s[j], s[i] } func (s byRank) Less(i, j int) bool { return s[i].Rank < s[j].Rank } type byIndex []RankedParagraph func (s byIndex) Len() int { return len(s) } func (s byIndex) Swap(i, j int) { s[i], s[j] = s[j], s[i] } func (s byIndex) Less(i, j int) bool { return s[i].Position < s[j].Position } func isComplex(word string, syllables int) bool { if util.HasAnySuffix(word, []string{"es", "ed", "ing"}) { syllables-- } return syllables > 2 } func countChars(word string) float64 { count := 0 for _, c := range word { if unicode.IsLetter(c) || unicode.IsNumber(c) { count++ } } return float64(count) } prose-1.2.1/summarize/summarize_fuzz.go000066400000000000000000000003441377030147400203070ustar00rootroot00000000000000// +build gofuzz package summarize func Fuzz(data []byte) int { d := NewDocument(string(data)) d.AutomatedReadability() d.ColemanLiau() d.DaleChall() d.FleschKincaid() d.FleschReadingEase() d.GunningFog() return 0 } prose-1.2.1/summarize/summarize_test.go000066400000000000000000000026201377030147400202670ustar00rootroot00000000000000package summarize import ( "encoding/json" "fmt" "path/filepath" "testing" "github.com/jdkato/prose/internal/util" "github.com/stretchr/testify/assert" ) var testdata = filepath.Join("..", "testdata") func check(expected, observed float64) bool { return fmt.Sprintf("%0.2f", expected) == fmt.Sprintf("%0.2f", observed) } type testCase struct { Text string Sentences float64 Words float64 PolyWords float64 Characters float64 AutomatedReadability float64 ColemanLiau float64 FleschKincaid float64 GunningFog float64 SMOG float64 LIX float64 MeanGrade float64 StdDevGrade float64 DaleChall float64 ReadingEase float64 } func TestSummarizePrep(t *testing.T) { tests := make([]testCase, 0) cases := util.ReadDataFile(filepath.Join(testdata, "summarize.json")) util.CheckError(json.Unmarshal(cases, &tests)) for _, test := range tests { d := NewDocument(test.Text) assert.Equal(t, test.Sentences, d.NumSentences) assert.Equal(t, test.Words, d.NumWords) assert.Equal(t, test.Characters, d.NumCharacters) } } func TestSummarize(t *testing.T) { data := util.ReadDataFile(filepath.Join(testdata, "article.txt")) d := NewDocument(string(data)) text := "" for _, paragraph := range d.Summary(7) { for _, s := range paragraph.Sentences { text += (s.Text + " ") } text += "\n\n" } fmt.Print(text) } prose-1.2.1/summarize/syllables.go000066400000000000000000000130041377030147400172040ustar00rootroot00000000000000package summarize import ( "regexp" "strings" "unicode/utf8" ) type clearFunc func(word string, suffixes []string) string // Syllables returns the number of syllables in the string word. // // NOTE: This function expects a word (not raw text) as input. func Syllables(word string) int { // See if we can leave early ... length := utf8.RuneCountInString(word) if length < 1 { return 0 } else if length < 3 { return 1 } // See if this is a known cornercase ... word = strings.ToLower(word) if syllables, ok := cornercases[word]; ok { return syllables } text, count := clean(word) // Count multiple vowels count += len(vowels.FindAllString(text, -1)) count -= len(monosyllabicOne.FindAllString(text, -1)) count -= len(monosyllabicTwo.FindAllString(text, -1)) count += len(doubleSyllabicOne.FindAllString(text, -1)) count += len(doubleSyllabicTwo.FindAllString(text, -1)) count += len(doubleSyllabicThree.FindAllString(text, -1)) count += len(doubleSyllabicFour.FindAllString(text, -1)) if count < 1 { return 1 } return count } func clean(word string) (string, int) { var prefix, suffix int word, prefix = clearPart(word, incrementToPrefix, trimAnyPrefix) word, suffix = clearPart(word, incrementToSuffix, trimAnySuffix) return word, prefix + suffix } func clearPart(s string, options [][]string, clearer clearFunc) (string, int) { old := s pos := len(options) for i, trim := range options { s = clearer(s, trim) if s != old { return s, (pos - i) } } return s, 0 } func trimAnySuffix(word string, suffixes []string) string { for _, suffix := range suffixes { if strings.HasSuffix(word, suffix) { return strings.TrimSuffix(word, suffix) } } return word } func trimAnyPrefix(word string, prefixes []string) string { for _, prefix := range prefixes { if strings.HasPrefix(word, prefix) { return strings.TrimPrefix(word, prefix) } } return word } var cornercases = map[string]int{ "abalone": 4, "abare": 3, "abed": 2, "abruzzese": 4, "abbruzzese": 4, "aborigine": 5, "aborigines": 5, "acreage": 3, "adame": 3, "adieu": 2, "adobe": 3, "anemone": 4, "apache": 3, "aphrodite": 4, "apostrophe": 4, "ariadne": 4, "cafe": 2, "cafes": 2, "calliope": 4, "catastrophe": 4, "chile": 2, "chloe": 2, "circe": 2, "coyote": 3, "epitome": 4, "facsimile": 4, "forever": 3, "gethsemane": 4, "guacamole": 4, "hyperbole": 4, "jesse": 2, "jukebox": 2, "karate": 3, "machete": 3, "maybe": 2, "people": 2, "recipe": 3, "sesame": 3, "shoreline": 2, "simile": 3, "syncope": 3, "tamale": 3, "yosemite": 4, "daphne": 2, "eurydice": 4, "euterpe": 3, "hermione": 4, "penelope": 4, "persephone": 4, "phoebe": 2, "zoe": 2, } var monosyllabicOne = regexp.MustCompile("cia(l|$)|" + "tia|" + "cius|" + "cious|" + "[^aeiou]giu|" + "[aeiouy][^aeiouy]ion|" + "iou|" + "sia$|" + "eous$|" + "[oa]gue$|" + ".[^aeiuoycgltdb]{2,}ed$|" + ".ely$|" + "^jua|" + "uai|" + "eau|" + "^busi$|" + "(" + "[aeiouy]" + "(" + "b|" + "c|" + "ch|" + "dg|" + "f|" + "g|" + "gh|" + "gn|" + "k|" + "l|" + "lch|" + "ll|" + "lv|" + "m|" + "mm|" + "n|" + "nc|" + "ng|" + "nch|" + "nn|" + "p|" + "r|" + "rc|" + "rn|" + "rs|" + "rv|" + "s|" + "sc|" + "sk|" + "sl|" + "squ|" + "ss|" + "th|" + "v|" + "y|" + "z" + ")" + "ed$" + ")|" + "(" + "[aeiouy]" + "(" + "b|" + "ch|" + "d|" + "f|" + "gh|" + "gn|" + "k|" + "l|" + "lch|" + "ll|" + "lv|" + "m|" + "mm|" + "n|" + "nch|" + "nn|" + "p|" + "r|" + "rn|" + "rs|" + "rv|" + "s|" + "sc|" + "sk|" + "sl|" + "squ|" + "ss|" + "st|" + "t|" + "th|" + "v|" + "y" + ")" + "es$" + ")", ) var monosyllabicTwo = regexp.MustCompile("[aeiouy]" + "(" + "b|" + "c|" + "ch|" + "d|" + "dg|" + "f|" + "g|" + "gh|" + "gn|" + "k|" + "l|" + "ll|" + "lv|" + "m|" + "mm|" + "n|" + "nc|" + "ng|" + "nn|" + "p|" + "r|" + "rc|" + "rn|" + "rs|" + "rv|" + "s|" + "sc|" + "sk|" + "sl|" + "squ|" + "ss|" + "st|" + "t|" + "th|" + "v|" + "y|" + "z" + ")" + "e$", ) var doubleSyllabicOne = regexp.MustCompile("(?:" + "[^aeiouy]ie" + "(" + "r|" + "st|" + "t" + ")|" + "[aeiouym]bl|" + "eo|" + "ism|" + "asm|" + "thm|" + "dnt|" + "uity|" + "dea|" + "gean|" + "oa|" + "ua|" + "eings?|" + "[aeiouy]sh?e[rsd]" + ")$") var doubleSyllabicTwo = regexp.MustCompile( "[^gq]ua[^auieo]|[aeiou]{3}|^(ia|mc|coa[dglx].)") var doubleSyllabicThree = regexp.MustCompile( "[^aeiou]y[ae]|" + "[^l]lien|" + "riet|" + "dien|" + "iu|" + "io|" + "ii|" + "uen|" + "real|" + "iell|" + "eo[^aeiou]|" + "[aeiou]y[aeiou]", ) var doubleSyllabicFour = regexp.MustCompile( "[^s]ia", ) var vowels = regexp.MustCompile( "[aeiouy]+", ) var incrementToPrefix = [][]string{ { "above", "anti", "ante", "counter", "hyper", "afore", "agri", "infra", "intra", "inter", "over", "semi", "ultra", "under", "extra", "dia", "micro", "mega", "kilo", "pico", "nano", "macro"}, { "un", "fore", "ware", "none", "non", "out", "post", "sub", "pre", "pro", "dis", "side"}, } var incrementToSuffix = [][]string{ {"ology", "ologist", "onomy", "onomist"}, {"fully", "berry", "woman", "women"}, { "ly", "less", "some", "ful", "er", "ers", "ness", "cian", "cians", "ment", "ments", "ette", "ettes", "ville", "villes", "ships", "ship", "side", "sides", "port", "ports", "shire", "shires", "tion", "tioned"}, } prose-1.2.1/summarize/syllables_test.go000066400000000000000000000041261377030147400202500ustar00rootroot00000000000000package summarize import ( "bufio" "encoding/json" "os" "path/filepath" "testing" "github.com/jdkato/prose/internal/util" "github.com/montanaflynn/stats" "github.com/stretchr/testify/assert" ) func TestSyllables(t *testing.T) { cases := util.ReadDataFile(filepath.Join(testdata, "syllables.json")) tests := make(map[string]int) util.CheckError(json.Unmarshal(cases, &tests)) for word, count := range tests { assert.Equal(t, count, Syllables(word), word) } total := 9462.0 right := 0.0 p := filepath.Join(testdata, "1-syllable-words.txt") right += testNSyllables(t, p, 1) p = filepath.Join(testdata, "2-syllable-words.txt") right += testNSyllables(t, p, 2) p = filepath.Join(testdata, "3-syllable-words.txt") right += testNSyllables(t, p, 3) p = filepath.Join(testdata, "4-syllable-words.txt") right += testNSyllables(t, p, 4) p = filepath.Join(testdata, "5-syllable-words.txt") right += testNSyllables(t, p, 5) p = filepath.Join(testdata, "6-syllable-words.txt") right += testNSyllables(t, p, 6) p = filepath.Join(testdata, "7-syllable-words.txt") right += testNSyllables(t, p, 7) ratio, _ := stats.Round(right/total, 2) assert.True(t, ratio >= 0.93, "Less than 93% accurate on NSyllables!") } func testNSyllables(t *testing.T, fpath string, n int) float64 { file, err := os.Open(fpath) util.CheckError(err) right := 0.0 scanner := bufio.NewScanner(file) for scanner.Scan() { word := scanner.Text() if n == Syllables(word) { right++ } } util.CheckError(scanner.Err()) util.CheckError(file.Close()) return right } func BenchmarkSyllables(b *testing.B) { cases := util.ReadDataFile(filepath.Join(testdata, "syllables.json")) tests := make(map[string]int) util.CheckError(json.Unmarshal(cases, &tests)) for n := 0; n < b.N; n++ { for word := range tests { Syllables(word) } } } func BenchmarkSyllablesIn(b *testing.B) { cases := util.ReadDataFile(filepath.Join(testdata, "syllables.json")) tests := make(map[string]int) util.CheckError(json.Unmarshal(cases, &tests)) for n := 0; n < b.N; n++ { for word := range tests { Syllables(word) } } } prose-1.2.1/summarize/usage.go000066400000000000000000000020051377030147400163150ustar00rootroot00000000000000package summarize import ( "strings" "github.com/montanaflynn/stats" ) // WordDensity returns a map of each word and its density. func (d *Document) WordDensity() map[string]float64 { density := make(map[string]float64) for word, freq := range d.WordFrequency { val, _ := stats.Round(float64(freq)/d.NumWords, 3) density[word] = val } return density } // Keywords returns a Document's words in the form // // map[word]count // // omitting stop words and normalizing case. func (d *Document) Keywords() map[string]int { scores := map[string]int{} for word, freq := range d.WordFrequency { normalized := strings.ToLower(word) if _, found := stopWords[normalized]; found { continue } if _, found := scores[normalized]; found { scores[normalized] += freq } else { scores[normalized] = freq } } return scores } // MeanWordLength returns the mean number of characters per word. func (d *Document) MeanWordLength() float64 { val, _ := stats.Round(d.NumCharacters/d.NumWords, 3) return val } prose-1.2.1/summarize/usage_test.go000066400000000000000000000022341377030147400173600ustar00rootroot00000000000000package summarize import ( "testing" "github.com/stretchr/testify/assert" ) var dmap = map[string]float64{ "and": 0.047, "source": 0.023, "rules": 0.023, "comments": 0.023, "natural": 0.023, "markup": 0.023, "customization": 0.023, "language": 0.023, "Vale": 0.047, "code": 0.023, "it": 0.023, "text": 0.023, "possible": 0.023, "reStructuredText": 0.023, "all": 0.023, "make": 0.023, "supports": 0.023, "plain": 0.023, "a": 0.047, "one": 0.023, "strives": 0.023, "doesn't": 0.023, "size": 0.023, "fits": 0.023, "of": 0.023, "attempt": 0.023, "AsciiDoc": 0.023, "offer": 0.023, "HTML": 0.023, "Markdown": 0.023, "collection": 0.023, "as": 0.047, "that": 0.023, "linter": 0.023, "easy": 0.023, "to": 0.047, "instead": 0.023, "is": 0.023} func TestUsage(t *testing.T) { text := "Vale is a natural language linter that supports plain text, markup (Markdown, reStructuredText, AsciiDoc, and HTML), and source code comments. Vale doesn't attempt to offer a one-size-fits-all collection of rules—instead, it strives to make customization as easy as possible." d := NewDocument(text) assert.Equal(t, dmap, d.WordDensity()) assert.Equal(t, 5.163, d.MeanWordLength()) } prose-1.2.1/tag/000077500000000000000000000000001377030147400134245ustar00rootroot00000000000000prose-1.2.1/tag/aptag.go000066400000000000000000000230151377030147400150500ustar00rootroot00000000000000// Copyright 2013 Matthew Honnibal // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. package tag import ( "regexp" "strconv" "strings" "github.com/jdkato/prose/internal/model" "github.com/jdkato/prose/internal/util" "github.com/montanaflynn/stats" "github.com/shogo82148/go-shuffle" ) var none = regexp.MustCompile(`^(?:0|\*[\w?]\*|\*\-\d{1,3}|\*[A-Z]+\*\-\d{1,3}|\*)$`) var keep = regexp.MustCompile(`^\-[A-Z]{3}\-$`) // AveragedPerceptron is a Averaged Perceptron classifier. type AveragedPerceptron struct { classes []string instances float64 stamps map[string]float64 tagMap map[string]string totals map[string]float64 weights map[string]map[string]float64 } // NewAveragedPerceptron creates a new AveragedPerceptron model. func NewAveragedPerceptron(weights map[string]map[string]float64, tags map[string]string, classes []string) *AveragedPerceptron { return &AveragedPerceptron{ totals: make(map[string]float64), stamps: make(map[string]float64), classes: classes, tagMap: tags, weights: weights} } // PerceptronTagger is a port of Textblob's "fast and accurate" POS tagger. // See https://github.com/sloria/textblob-aptagger for details. type PerceptronTagger struct { tagMap map[string]string model *AveragedPerceptron } // NewPerceptronTagger creates a new PerceptronTagger and loads the built-in // AveragedPerceptron model. func NewPerceptronTagger() *PerceptronTagger { var wts map[string]map[string]float64 var tags map[string]string var classes []string dec := model.GetAsset("classes.gob") util.CheckError(dec.Decode(&classes)) dec = model.GetAsset("tags.gob") util.CheckError(dec.Decode(&tags)) dec = model.GetAsset("weights.gob") util.CheckError(dec.Decode(&wts)) return &PerceptronTagger{model: NewAveragedPerceptron(wts, tags, classes)} } // Weights returns the model's weights in the form // // { // "i-1 suffix ity": { // "MD": -0.816, // "VB": -0.695, // ... // } // ... // } func (pt *PerceptronTagger) Weights() map[string]map[string]float64 { return pt.model.weights } // Classes returns the model's classes in the form // // ["EX", "NNPS", "WP$", ...] func (pt *PerceptronTagger) Classes() []string { return pt.model.classes } // TagMap returns the model's classes in the form // // { // "four": "CD", // "facilities": "NNS", // ... // } func (pt *PerceptronTagger) TagMap() map[string]string { return pt.model.tagMap } // NewTrainedPerceptronTagger creates a new PerceptronTagger using the given // model. func NewTrainedPerceptronTagger(model *AveragedPerceptron) *PerceptronTagger { return &PerceptronTagger{model: model} } // Tag takes a slice of words and returns a slice of tagged tokens. func (pt *PerceptronTagger) Tag(words []string) []Token { var tokens []Token var clean []string var tag string var found bool p1, p2 := "-START-", "-START2-" context := []string{p1, p2} for _, w := range words { if w == "" { continue } context = append(context, normalize(w)) clean = append(clean, w) } context = append(context, []string{"-END-", "-END2-"}...) for i, word := range clean { if none.MatchString(word) { tag = "-NONE-" } else if keep.MatchString(word) { tag = word } else if tag, found = pt.model.tagMap[word]; !found { tag = pt.model.predict(featurize(i, context, word, p1, p2)) } tokens = append(tokens, Token{Tag: tag, Text: word}) p2 = p1 p1 = tag } return tokens } // Train an Averaged Perceptron model based on sentences. func (pt *PerceptronTagger) Train(sentences TupleSlice, iterations int) { var guess string var found bool pt.makeTagMap(sentences) for i := 0; i < iterations; i++ { for _, tuple := range sentences { words, tags := tuple[0], tuple[1] p1, p2 := "-START-", "-START2-" context := []string{p1, p2} for _, w := range words { if w == "" { continue } context = append(context, normalize(w)) } context = append(context, []string{"-END-", "-END2-"}...) for i, word := range words { if guess, found = pt.tagMap[word]; !found { feats := featurize(i, context, word, p1, p2) guess = pt.model.predict(feats) pt.model.update(tags[i], guess, feats) } p2 = p1 p1 = guess } } shuffle.Shuffle(sentences) } pt.model.averageWeights() } func (pt *PerceptronTagger) makeTagMap(sentences TupleSlice) { counts := make(map[string]map[string]int) for _, tuple := range sentences { words, tags := tuple[0], tuple[1] for i, word := range words { tag := tags[i] if counts[word] == nil { counts[word] = make(map[string]int) } counts[word][tag]++ pt.model.addClass(tag) } } for word, tagFreqs := range counts { tag, mode := maxValue(tagFreqs) n := float64(sumValues(tagFreqs)) if n >= 20 && (float64(mode)/n) >= 0.97 { pt.tagMap[word] = tag } } } func (ap *AveragedPerceptron) predict(features map[string]float64) string { var weights map[string]float64 var found bool scores := make(map[string]float64) for feat, value := range features { if weights, found = ap.weights[feat]; !found || value == 0 { continue } for label, weight := range weights { if _, ok := scores[label]; ok { scores[label] += value * weight } else { scores[label] = value * weight } } } return max(scores) } func (ap *AveragedPerceptron) update(truth, guess string, feats map[string]float64) { ap.instances++ if truth == guess { return } for f := range feats { weights := make(map[string]float64) if val, ok := ap.weights[f]; ok { weights = val } else { ap.weights[f] = weights } ap.updateFeat(truth, f, get(truth, weights), 1.0) ap.updateFeat(guess, f, get(guess, weights), -1.0) } } func (ap *AveragedPerceptron) updateFeat(c, f string, v, w float64) { key := f + "-" + c ap.totals[key] = (ap.instances - ap.stamps[key]) * w ap.stamps[key] = ap.instances ap.weights[f][c] = w + v } func (ap *AveragedPerceptron) addClass(class string) { if !util.StringInSlice(class, ap.classes) { ap.classes = append(ap.classes, class) } } func (ap *AveragedPerceptron) averageWeights() { for feat, weights := range ap.weights { newWeights := make(map[string]float64) for class, weight := range weights { key := feat + "-" + class total := ap.totals[key] total += (ap.instances - ap.stamps[key]) * weight averaged, _ := stats.Round(total/ap.instances, 3) if averaged != 0.0 { newWeights[class] = averaged } } ap.weights[feat] = newWeights } } func max(scores map[string]float64) string { var class string max := 0.0 for label, value := range scores { if value > max { max = value class = label } } return class } func featurize(i int, ctx []string, w, p1, p2 string) map[string]float64 { feats := make(map[string]float64) suf := util.Min(len(w), 3) i = util.Min(len(ctx)-2, i+2) iminus := util.Min(len(ctx[i-1]), 3) iplus := util.Min(len(ctx[i+1]), 3) feats = add([]string{"bias"}, feats) feats = add([]string{"i suffix", w[len(w)-suf:]}, feats) feats = add([]string{"i pref1", string(w[0])}, feats) feats = add([]string{"i-1 tag", p1}, feats) feats = add([]string{"i-2 tag", p2}, feats) feats = add([]string{"i tag+i-2 tag", p1, p2}, feats) feats = add([]string{"i word", ctx[i]}, feats) feats = add([]string{"i-1 tag+i word", p1, ctx[i]}, feats) feats = add([]string{"i-1 word", ctx[i-1]}, feats) feats = add([]string{"i-1 suffix", ctx[i-1][len(ctx[i-1])-iminus:]}, feats) feats = add([]string{"i-2 word", ctx[i-2]}, feats) feats = add([]string{"i+1 word", ctx[i+1]}, feats) feats = add([]string{"i+1 suffix", ctx[i+1][len(ctx[i+1])-iplus:]}, feats) feats = add([]string{"i+2 word", ctx[i+2]}, feats) return feats } func add(args []string, features map[string]float64) map[string]float64 { key := strings.Join(args, " ") if _, ok := features[key]; ok { features[key]++ } else { features[key] = 1 } return features } func normalize(word string) string { if word == "" { return word } first := string(word[0]) if strings.Contains(word, "-") && first != "-" { return "!HYPHEN" } else if _, err := strconv.Atoi(word); err == nil && len(word) == 4 { return "!YEAR" } else if _, err := strconv.Atoi(first); err == nil { return "!DIGITS" } return strings.ToLower(word) } func sumValues(m map[string]int) int { sum := 0 for _, v := range m { sum += v } return sum } func maxValue(m map[string]int) (string, int) { maxValue := 0 key := "" for k, v := range m { if v >= maxValue { maxValue = v key = k } } return key, maxValue } func get(k string, m map[string]float64) float64 { if v, ok := m[k]; ok { return v } return 0.0 } prose-1.2.1/tag/aptag_test.go000066400000000000000000000034151377030147400161110ustar00rootroot00000000000000package tag import ( "fmt" "math/rand" "testing" "time" "github.com/jdkato/prose/internal/util" "github.com/stretchr/testify/assert" ) var wsj = "Pierre|NNP Vinken|NNP ,|, 61|CD years|NNS old|JJ ,|, will|MD " + "join|VB the|DT board|NN as|IN a|DT nonexecutive|JJ director|NN " + "Nov.|NNP 29|CD .|.\nMr.|NNP Vinken|NNP is|VBZ chairman|NN of|IN " + "Elsevier|NNP N.V.|NNP ,|, the|DT Dutch|NNP publishing|VBG " + "group|NN .|. Rudolph|NNP Agnew|NNP ,|, 55|CD years|NNS old|JJ " + "and|CC former|JJ chairman|NN of|IN Consolidated|NNP Gold|NNP " + "Fields|NNP PLC|NNP ,|, was|VBD named|VBN a|DT nonexecutive|JJ " + "director|NN of|IN this|DT British|JJ industrial|JJ conglomerate|NN " + ".|.\nA|DT form|NN of|IN asbestos|NN once|RB used|VBN to|TO make|VB " + "Kent|NNP cigarette|NN filters|NNS has|VBZ caused|VBN a|DT high|JJ " + "percentage|NN of|IN cancer|NN deaths|NNS among|IN a|DT group|NN " + "of|IN workers|NNS exposed|VBN to|TO it|PRP more|RBR than|IN " + "30|CD years|NNS ago|IN ,|, researchers|NNS reported|VBD .|." func ExampleReadTagged() { tagged := "Pierre|NNP Vinken|NNP ,|, 61|CD years|NNS" fmt.Println(ReadTagged(tagged, "|")) // Output: [[[Pierre Vinken , 61 years] [NNP NNP , CD NNS]]] } func TestTrain(t *testing.T) { tagger := NewPerceptronTagger() sentences := ReadTagged(wsj, "|") iter := random(5, 20) tagger.Train(sentences, iter) tagSet := []string{} nrWords := 0 for _, tuple := range sentences { nrWords += len(tuple[0]) for _, tag := range tuple[1] { if !util.StringInSlice(tag, tagSet) { tagSet = append(tagSet, tag) } } } assert.Equal(t, nrWords*iter, int(tagger.model.instances)) assert.Subset(t, tagger.Classes(), tagSet) } func random(min, max int) int { rand.Seed(time.Now().Unix()) return rand.Intn(max-min) + min } prose-1.2.1/tag/tag.go000066400000000000000000000016701377030147400145320ustar00rootroot00000000000000/* Package tag implements functions for tagging parts of speech. */ package tag import "strings" // Token represents a tagged section of text. type Token struct { Text string Tag string } // TupleSlice is a slice of tuples in the form (words, tags). type TupleSlice [][][]string // Len returns the length of a Tuple. func (t TupleSlice) Len() int { return len(t) } // Swap switches the ith and jth elements in a Tuple. func (t TupleSlice) Swap(i, j int) { t[i], t[j] = t[j], t[i] } // ReadTagged converts pre-tagged input into a TupleSlice suitable for training. func ReadTagged(text, sep string) TupleSlice { t := TupleSlice{} for _, sent := range strings.Split(text, "\n") { tokens := []string{} tags := []string{} for _, token := range strings.Split(sent, " ") { parts := strings.Split(token, sep) tokens = append(tokens, parts[0]) tags = append(tags, parts[1]) } t = append(t, [][]string{tokens, tags}) } return t } prose-1.2.1/testdata/000077500000000000000000000000001377030147400144625ustar00rootroot00000000000000prose-1.2.1/testdata/1-syllable-words.txt000066400000000000000000000354471377030147400203410ustar00rootroot00000000000000the of and to in that was his he it irs ore roy inn yer with is for as had you not be her on at by which have or from this him but all she they were my are me one their so an said them we who would been will no when there if more out up do your what has man could than our some time may its now like then can should made did us such great must two these see know much down first good men own most old shall day where those came come way work life go make well through long say might how am too def back here think went same last thought take found hand eyes still place while just young yet though things get give god years off face right once left part saw house world head three took new love put night each king tell mind heart few thing whom far seemed looked called whole de set both got find done heard look name days told let lord asked seen home knew side course hands words soon full end gave room small thou want light quite brought nor word whose door best turned does use felt since used voice white works less next poor death stood form till thy large kind year friend half round true keep sent wife means passed feet near state son thus hope case dear thee says high read fact gone girl known hear times least sure land leave air law help lay point child four wish fire cried speak hour friends held free war er call why john dead earth boy lost forth soul feel care truth ground rest mean fell kept short town need cause met five strong french live sea fear hard terms doubt ask arms turn sense seems black bring close dark hold sort sight ten show fine ye book talk mark bed age else force art spoke ought line eye ety sun reached past hours strange deep change miles act meet paid seem blood rose south cold view sound none clear road late stand la mine laws comes bad cut six peace low north fall fair hair laid pass led run horse west pay red hath note gold makes play tried front big lived wind church strength length placed glad bear ran faith charge lips arm send foot wild die save trees green smile books wrong sleep drew walked chief chance deal loved knows try sweet plain wrote mouth rich thoughts months joy states ship filled write boys parts please march tears caught stay struck blue school raised food youth reach moved walk stopped laughed week hall born court grew showed third worth tree fight wall tone mere month street goes fresh duke bound east wood stone bright boat meant chair due tom date lives lines field wished wait piece ex formed hill cry cost girls broke sit news top scene step race per learn bit speech lie cast eat floor ill ways walls watch pleased leaves hot killed fast brown pain spring takes drawn steps soft straight trust laugh eight closed gives dress sake breath wise grave fixed spot troops rise break camp sky touch shore named looks plan spent pale shot lead move names stop et threw worse built glass board vain safe loss class forms warm drink ones ears start smiled spite shown james hart hat dog main pride crowd train path greek fit lot proved rule sword seat game health grace dream rock jack shook glance heads fee share spread twelve space wine taste trade forced rate clothes sign judge watched marked bill vast prove quick yes sought neck hearts sides dry serve pure lose thrown page weeks search sad sin lies proud price ships sick shut talked bank fate dropped hills seek stream ear bread aid choose rights tax sons cross thick points woods facts dare grow hung rain false tall gate streets blow coast file birds song wealth failed grass touched draw stage june fish tongue served breast snow claim hast sharp prince group played yours add pray taught tired kill weight mass gray brave thin check weak frank guess heat bent seized guard box gods moon slight style saved crossed pounds paul worked grown midst liked bore list calm nice joined kings twice throw ceased priest drive fault beat fool hurt wants height size edge task nine burst dressed hopes noise rode tells minds flesh grand legs post rank storm wore loud thank rules bird coat shape birth smoke stands teeth shame bay brain soil ring phrase acts square pair won fruit mad tea rocks slaves slow grief prayer stars buy ride fields drove sum stones fees catch knees gained slave loose text worst sold don hoped fond firm proof pressed join crime dust lands doors sing nose rooms clean fail choice huge needs wear blind rough shows fly praise smith gain notes bought souls based car dick bare fought hate lake faint thinks drop brief goods tale skin roof grey crown throne ease mile dull clouds term cup strike pulled flight yards whilst bow suit plans lest paused meat milk dogs plants rare raise obs cool bridge stock type signs pope queen teach count dance fled kissed guns fill guide lad harm views ends shop stairs gay beg kinds fat sand worn flat gift skill calls en wound whence rushed bold helped sell self throat dreams speed growth slept thine sounds swift wings stepped base win maid site sail feared store shalt cook pause band hence kiss plant ice ball stick fierce rage gun shade hide range host wet cloud ed waste spend source deck sees aunt reign hers doth thanks banks cap waves glanced pushed press fleet bowed staff stretched gaze meal blame guests job loves risk ad wit fame lack dawn gets lights sheep spare farm corn jane key towns flame priests cloth gazed fourth bell urged ascii begged hole borne files sigh thrust frame disk haste knight charm rolled email flung verse turns branch rear stared boats keen bones luck scheme oil thence dim pipe print smooth build eggs burned oh cries noon cease tent beast gates stern knife dread jim silk links cent finds bade lords hell grant tribes hit mixed prayers treat flew speaks slipped ours yield schools rush falls stayed sins anne pen tide vol leaned tail fears nights tied cat port male mode poured sank brings trace chose tribe costs sang sam sorts rude winds scenes shake claims lamp sex trail shone nurse match wrath gifts chain debt shoes mood crew yard vague odd wives cared jews joe dutch ate steel test shed folks star deeds oath guest bar row bless stir fix deed sighed vote leg bid scarce rev hang shock strain drank aim bag beasts track rid holds swear fun apt queer seed runs stuff sole roads plate pains dwell grounds taxes tones wave folk marched writes sailed pull hid rope vi arts feast burn card flow scale marks ben wrought songs torn hunt web chest depth clerk drunk pour lift limbs plays dragged flag boots bears signed walks feed roll wilt inch lee owe trip shoot owns beard stirred tear dan bob depths breeze jean smell locked courts pick desk gross lane root mud cleared feels fruits bride rang ranks grasp veil gloom prize greeks foe shared id coach knocked keeps leads sale wheel burnt flash fed curse zeal groups fort club cure stout missed flood seas grain steep route non wire crept greece knee scorn grows clock roots jumped sore slip fires wept stroke cave wars stiff score ruth blows plains flashed rent prey owed sheet gas claimed glow leaf jones pound pierre sunk beach flour roar hut seats bark wake prayed jest washed nerves swung wing dwelt trick joke mist shell nest fetch tomb coarse heap homes hint knights dreamed craft pink heels streams flames sport beds shout bath chap roused climbed mail wrapped paint mild nay lit quit plot dish cares straw net wounds warmth rays shores flushed wont steam ned trained warned shield chairs searched mate ghost blew wash clay trunk dried chiefs coal vice deemed pile spell bone grim leaped pole sink ward cheer siege sets load brass fifth faced cheap saints owned seize springs fence leagues glimpse doubts fro string strict likes corps judged wheels pack drops deer bush plunged joint spake jan weep bench ralph heir oak faults charms purse chase gown lock foul types breathed bells shine dashed dates theirs adv clasped spared crushed waved slope learnt stores guessed heed woe den dine ann sphere guilt steal lip dost wheat smiles park na stretch lean knock tie cell void egg crimes breathe sits thanked seeds foes longed lend lent eh veins seal mount harsh kate lunch pine shells flies push tight sue waist tore lieu thread dumb blank del danced dealt cents whip checked shirt sweep sketch thief ut guards ha mob thirst asks viewed gleam palm quoth fur holes spear clung neat lap damp ridge spoil swords chains tin couch bills sails dined cow mill map porch ford clothed jew bands nigh prose codes saint awe strife beer wretch fain brains flock niece rings smart boxes aught creek lo brush cream jump pitch cliff crowned sites dies pot rice planned guy hired fools leap games bet bull raw log skies scotch robbed cart robe tents herd pan blown paths backs heights gasped breadth tune traced pseud squire bars tossed block lots bloom brute fist dense adds rows sworn horn brook fund lodge ruled pit sheer fare packed el grasped tend carved bonds corpse realm debts shops coin clad lace fred trap spots proofs wits cake lamps sir tongues praised rob wales knelt stake tread mines brick arch sprung shy prime fog bits moves warn vile doom scent bliss stove joys flowed brows swell wreck bowl swamp nerve stare pledge earn gang boiled shouts theme pool lads didst workmen monks sends preach woke weighed wool orleans strikes sticks drag crop wolf sheets bond horns breaks balls rod blaze mouths max juan goal cash lawn texts tastes blush ein shew globe throng cheese bite breach cars dusk truths plague boil shocked hanged hats mirth bows pierced tricks rubbed fright rail crops proves ripe reigned sixth mask sire keys damned vexed bind cliffs tools git bulk bunch cooked hay gale preached hears vow quaint soup beef rests slay sealed posts blade spy shades robes maine chanced locks votes bred league limb crack naught slew dug hearth snatched shaft linked jove stem dec cows schemes urge shrill dean flush code split snake ass draws creed luke strove cups wax spoiled earned prompt bronze stooped dew monk thrill hue funds dash strained swim strip team tracks talks plane sums deaf grip juice blast nile troop crowds axe holmes tops boards cells reads sway screen dirt breed shapes shrewd nov halt stamp whites drift roared ray ink oft draught kin worlds frost glare termed yea quest crest lakes swing freed lined shrugged checks pub grove hire fox grieved stamped wiped oars scared lodged hedge storms beam tour wells earl piled boughs ports rhine bud hail beams pig shaped aug stripped plead cord flows wrongs lungs serves pint pipes pitched tube smote burke nails wears doomed bee mix sweat tenth folds roofs mute cage esq cured jail crowns feb scream fits cane fold thieves tons dave moore meets stress groan suits hosts crash quote choked hurled sack snapped crush canst smoked greet strive curve flank logs lamb reins trunks shrank kent maids rates bees tramp van nought yoke threats lays pays nod patch lance thumb wolves sales trains skirts tip kick dig pet skull ness threat ghosts asp blocks shrine heel throws frown plunge moor pin mars framed jaws gulf rash nick nan hon pulse flee clause growled charmed knot rags mock clare skirt grin hoarse mills lain aimed scope blushed crow shawl sings coats strode hook airs spark sleeve tame ditch tract plus farms ropes hounds rains pond wrist li tries bags reared jaw sect drum poles verge bin stained weigh float troy shift mould hymn ken witch backed pomp mess bored shrink crude eve frail hans mule bolt lame vein lists shoe thrice foam keith fraud cats blamed jar clerks ark moist wid sauce writ bruce deem rolls doe swiss loan beads lust ah shares saul shelf fan kid phase turf dame clubs creep guides vii link pluck yon moss skilled cum med tough plea lacked mac fork stain hints drinks whipped matt steed width rouse vent vines flags ranch odds aims pie pigs choir verb stead fling dove cracked sexes pledged brushed grieve tim flint vault worm ay eighth knives te yacht stray tends wan welsh swam slid cock lump wee dome cheered curved drives alps harp peaks rub grapes beans nail tact toast swelled mouse helm slim lime spur sown hush breasts pat strokes sob vine pots crust sting ho ta coasts starve scots goat sour spoils pa ox carl blanche spray sports ab scales calf melt grade pang brisk stool al spies yell boot ale goose truce groves cling duck weird males pairs con lapse soap eyed doll sez nuts wright hides co walt pearl thrilled gains jokes quod clue tooth clasp lets wires wheeled aye shriek gap rhyme launched vowed caps owl suite heaped babe rogue hull jeff peak khan plucked bids clapped zeus mike tray mound mast twist groom solve tempt lid fowl threads boss piles peer cheers wrung gilt strand sly boon brink hum trod trench fore dey mend meek garb hushed brand dipped tool dwarf ak paced tense drums hen baked winged trim wrecked ledge roast stocks mourn freight wipe shelves traits dire gait clutched sneer plump cheat blest haunt frock gal wed plough snakes reef draft hound toy stair cough blazed claude burns din zone ac ninth heal karl staid stuffed steer ounce drown slide sow rides spoon pinch ducks rum ni bluff dawned chalk fuss dazed hem gorge damn theft rats ash floods ti twelfth prone twins stoop raft fade soothe pork dot loaf isle dip unit brig chat maps trot howl ton bricks sane wreath cork whale hare haze ted caste leapt grudge tips turk rhythm rat knit dis esp whig wharf stunned drain wage tap toe wade knave twain brood plight alms wink nous rack carts lone counts scratch screw hood glove chaste whirl plank mi seals knots wail kneel peep swarm bust arched furs dock psalms hawk rein bake pierce snatch launch worms drug gaunt quart soothed sic strait cords trout paste scrap fiend moan trades rounds crawl aft role dose snap tire geese locke deals core durst scratched wert wig pump reigns reap dam fringe feat rue toss rung scrape pools oar bait login slice meg xi drill womb surf weed tapped gasp glee lied pro val eats snare wines flown thorn re holt peas clan dart berth tint aisle click stump spun gear wares snug chaps prints rug ham mice pose guise noun scout spit nun wad curves sledge butt tank pins chart twin blunt bleak sub drugs ache limp deuce thigh scant mien cor peers chant marsh vase ty baths coil crisp jerk tout stroll jam shoots nets dice shrunk swine tints rout steve rag punch craig drained stride gum las lash lore scot scrub myth flights oats cape scare waked brake kirk bough mat shun raid puff beak rot grate lease pier stale comb shaw rite si whim peg reed streak blocked smashed farce germ bathe slate gin cleft bart lambs tub greed herb ole forged scourge vera spin puffed lids muse clump flute yore jay fray po beth ape span snuff drooped ills dye bolts lark slips seine glide sol mane tinge brim shrug trait bribe soiled vest bass squeeze dreamt parched curb scraps fried spade scorned pail ma spouse valve sup ant heath bug bat mates stalk fret buck cocked dad chasm blot nook jake haul hurts splash curl brace clothe gem wrap ram wins awed whit stall sham gout jobs sate ebb cruise cheque perch flask ka manned wast frog yarn smelt leaps smite os barge sponge cot wand grind bang growl jug sap yale scarf aux scar sous ca clash speck birch dough clutch trance mon meats filth ware glen quay heave film wench calves prose-1.2.1/testdata/2-syllable-words.txt000066400000000000000000000676441377030147400203460ustar00rootroot00000000000000into any other very upon about only little before over after never himself without being even again many every people away repaid maketh statesmen seamen wordforms honour honours honoured under also blockquote yourselves hypertext against ever nothing always between because country going better having something moment father among woman enough mother almost cannot water given taken morning myself until power themselves rather began present others money within matter often certain herself order believe public hundred children alone above person city received perhaps indeed english open body itself along return nature answered either letter women number therefore during business whether manner second reason replied behind became become thousand looking coming spirit question making towards human evening returned able lady subject answer around followed party ready story common account written longer across brother early sometimes saying table appeared river later feeling further purpose happy added taking beyond neither forward entered suppose daughter real nearly knowledge toward copy husband living effect pretty service below except doing army future opened pleasure although wanted desire master office receive unto paper letters greater yourself fellow window ago beauty remained latter duty distance silence object trouble persons happened minutes hardly action visit thinking follow standing presence heavy afraid single broken unless carry exclaimed seeing appear outside secret evil slowly horses places instead sister battle married former learned merely system twenty dinner quiet giving language danger wonder figure getting ancient respect simple leaving remain result heaven started command regard beside silent perfect writing covered quickly notice noble somewhat sudden value support waiting village reading agree observed scarcely greatest success british speaking trying proper music allowed seven private marriage garden begin sitting offered flowers produced summer provide study picture declared effort prepared escape attempt supposed author soldiers houses beneath talking turning matters likely corner trademark justice simply produce appears forget passage ourselves passing required efforts ladies pleasant modern fifty island meeting nation reply copies equal fortune domain promise orders degree middle winter allow conduct running surprise minute roman cases higher spoken affairs instance doctor offer complete access lower darkness passion questions lying keeping silver mentioned servant moral instant meaning ordered obliged enter attack statement social refund sorry courage members worthy special request mighty movement expect dollars glory engaged peter mountains iron greatly using feelings native promised working anxious marry captain finished extent foreign besides method fancy prevent legal aside powers possessed distant progress narrow building knowing settled holding mountain pieces clearly thirty honest judgment accept removed forest measure species highest honor obtained bottom fingers agreed events fully delight amount obtain servants shoulders stranger creature nations refused surface freely holy july fashion report daily shoulder surprised faces royal comfort freedom advance gentle surely waited secure desired portion expressed spirits angry growing carriage weather papers practice robert throughout pity expense million explained leading shadow suffered virtue golden famous telling alive waters divine gathered valley finding yellow remains pointed windows louis willing richard season remarked science tender whispered quarter advanced active noticed aware uncle august sacred kingdom entire unknown habit spanish reader published direct handsome posted approach hearing needed increased walking wisdom truly numbers wounded sorrow listened palace affair contact station listen becomes watching express occurred favour subjects follows putting lifted suffer smiling farther vessel advice empty duties countries pocket driven sentence lovely happen absence breakfast series laughing address relief owner prepare mother machine content moving wholly busy treated burning inside message resolved calling mention title forces nearer falling bearing mercy larger explain contain soldier welcome proposed belief informed moments constant final faithful supper drawing dying demand fighting upper motion forty april kindly seated amongst current sending parties objects bitter credit chosen printed terror features control fifteen cruel harry splendid sooner process concerned deeply colour destroy anger results increase reasons friendly entrance admit supply useful remove addressed cover double dozen level release ended devil ahead degrees chamber mission cities mistake conscience buried closely partly mistress arose playing color safety asleep centre parents escaped careful enjoy brilliant bringing worship highly castle stated despair attached total kindness circle extreme figures prison assured hidden member civil apply labor fairly comply fellows event gently conscious wishes voices weary couple volume details older custom apart awful labour asking lover showing composed rendered pictures singing eager precious require vision granted manners cousin trial learning approached abroad paying writer readers dreadful female protect destroyed temper plenty avoid hurried favor mental brothers solemn causes vessels compelled hotel wicked younger earnest pardon seldom record branches inquired ruin cattle temple license consent natives laughter contained perceived scattered chiefly witness foolish kitchen treatment patient latin immense severe excuse triumph joseph pages charming softly performed likewise frightened remark thousands inclined convinced desert effects behold observe blessed bosom striking creatures shouted guilty setting forgot slightly police confess murder wondered horror local doctrine changes possess trembling disease mankind habits estate humble delay shining midnight flower hero classes belong finger market troubled picked somewhere household baby region lately uttered exact image ages murmured refuse enjoyed belonged ashamed reward nodded status poem savage arise voyage painted attend afford donate proceed forehead regret plainly lighted angel rapid distinct doubtless error utmost methods appeal strongly breaking fatal render career design displayed forgive utter patience exist alike mounted issue measures dared reduced weakness furnished china flying profit movements acted disposed chapter helen sugar lonely artist quarters substance painful ocean leader senses inches derived managed preserved hurry reaching wretched hanging useless solid pursued recent travel crying cabin compared handed smaller frequent alarm nervous aloud stronger loving masters writers mortal preserve burden aspect millions merry clever district shadows failure amid profits agent union contempt raising secured wooden prefer fever daughters warning impulse johnson resumed confirmed deny correct perform somehow acquired counsel distress notion hundreds firmly actions steady remarks empire idle online permit college maintain crowded opposed treaty contents rested lees occur seeking reports begins founded instinct cheerful threatened western beings pressure shelter revealed riding merit sleeping coffee thereof romans requires fathers prospect obey northern profound hungry sisters assure folly teaching venture perceive accounts eating declare version grateful nearest elsewhere parted owing martin cottage leaning settle referred francis holder involved sunshine council princes strangers beheld noted slightest widow errors attacked maintained restored concealed heavens bottle intense quarrel touching inner derive hollow contains province muttered thither oxford lofty endure succeed alice hated acting landed passions lightly disturbed supreme display confined poets sounded negro fearful standard studied buildings commenced deeper repeat driving drinking treasure throwing tower defend desires depends poems section staring marble awake walter shaking butter fury moses issued hatred pursuit vanished elder signal wanting supplied safely describe lesson passes county beaten presents format sixty damage commerce startled southern outer belongs naked rivers concern magic campaign hunting whisper largely exists teacher lawyer detail shortly caesar leaders blessing princess altar tiny sharply purple gather gloomy decide victim gazing absurd gesture armies manage brethren hastened motive pointing verses pronounced exchange remote finish denied churches rarely ugly harmless mingled training badly central contrast relieved romance structure payment pace sources inspired angels troubles handle fitted refuge cutting resist maiden merchant whereas crossing lively virtues conceived thereby eighteen eaten preferred ruined wherein condemned happens billy holland beating depend judges giant arrive autumn absent doubtful suspect weapons limits feeble prophet basis corrupt payments returns laying purchase rival someone defeat demands consists studies balance forming slender silly humour masses recall discourse regions assist novel hither tales revenge lucy yonder jealous risen marie swiftly portrait create summoned suggest induced conflict helpless lincoln germans vengeance gracious include respects ventured implied stupid wearing conceal pleasures therein assume gardens closer thunder graceful childhood saddle supplies weeping mostly agents software losing attempts receipt dearest finest motives fastened confused fancied wedding farmer behalf reckon dirty rolling platform offers mischief imposed student daring convey sincere gravely combined gallant charges submit virgin farewell hunger trembled customs cotton outward impressed longing disgrace colored wages papa leisure deadly chin adam hostile wandered railway betrayed admired ruins eastern roses deceived tables starting feature counted reserve strangely absorbed propose pleasing attained research monarch clothing dollar illness calmly obeyed pressing daylight comment metal sixteen dwelling depart peaceful lion alarmed furnish resting accused culture writings conquered trusted column cunning drama proofread yielded conceive lessons candle offence mixture model defect destined fourteen acid namely asia neglect data weapon confessed repose copied user income regards bishop lightning authors compressed powder orange painting careless doorway volumes vulgar sunset recalled abode planted promptly parish basket deserve mirror upward sadly adding modest advised largest restless meantime lovers today moonlight intend rocky pious garments merchants products dispute poison maybe rifle parting employ prevailed talent rises climate unlike arrange fortunes puzzled aged ashes bushes esteem nonsense stolen earthly restore lasted selfish renewed canoe protest races chapel upright quoted formal students greatness reproach altered questioned bestowed pursue gladly linen vital hopeless dangers travelled nephew bloody commands stomach improved admire sailors abide forests records statements upstairs varied letting comrades descent whither envy pretend folded curtain healthy obscure summit alas center colonel contest chances alter landing statue contract saving faded arrest intent injured smoking inform retained nobles embrace closing damaged eldest anguish strictly capture inquire ample justly answers bedroom purely thyself refer madam railroad columns discharge rescue limit awoke program reserved persuade deprived endless heroes lowest withdrew commons loaded amidst titles madness assigned declined jewels youthful stately fragments rushing product sickness uses engine ashore leather subtle floating worry steamer designed roger timber talents murdered vivid killing laura wasted trifle funny pockets insult temples robin wishing flowing lawyers murmur stopping welfare fishing perish sober infant norman humor footsteps marquis twilight arrows retire secrets halted govern colors tempted frontier dealing decent fiery punished rejoined major placing prudence border fanny exempt anchor purchased neighbors glowing sunlight wealthy seeming shouting naval doubted painter greeted erect glasses meanwhile shooting wagon crisis polite anna header clergy array corners loudly texas searching includes boldly seconds despite hoping problems landscape scarlet mainly measured loyal boiling suited advise sinking stable commit sweetness dismissed affect shaken evils peasant conveyed extend riches copper sailor response victor bending minor crimson teachers bargain fatigue dislike witnessed acres normal sofa mothers deserved persian driver retain daniel channel berlin smallest excess disgust speeches herbert convent rightly reform treasures designs filling fortnight frightful speaker tribute procure frankly relieve unjust project threshold merits morrow traces induce inward pupils fairy conclude lucky session torture hearty thoughtful strongest warrant complaint guarded angle widely charlotte ardent victims foremost fountain sustained clara lewis rejoice collar hasty organ replace districts released compare relate pistol presume velvet stirring missing facing peoples disturb sermon exchanged partner lowered estates abuse notions cannon thirteen sailing petty widest prudent caution awhile cigar lifting tidings liquid staying concept download meetings practised combat subdued blowing extra japan portions awkward horrid pulling jury attacks monster simon frozen survive ellen briefly sublime dropping penny adopt replaced formats curtains helping insist occurs latest apple pupil twisted discuss firing background subscribe transcribe descend differ avail cursed fulfilled georgia virus embraced faintly childish aboard reflect dreary serving engage attain collect disclaims borrowed convert outline peasants assault deceive doctrines struggled hiding prices procured mourning withdraw polished dishes parent contrived akin betray disguise neighbour punish worldly muscles elbow trifling decline filename artists repair eagle barren functions guided fiction shillings duly governed scripture upwards marshal fiercely costume applause remind pillow jersey abbey nowhere marching catching arrow fitting essence glancing complained staircase accord sally tremble exile gospel scholar wonders arab likeness harbour jolly ruler crazy madame deepest lordship greeting monstrous barely mansion honey ladder ending swallowed sunny decree divide dreaming proclaimed viewing defense oldest bidding elect harder winding liquor perished eighty licensed coloured consult taylor legend shallow dreaded battles compass harvest transfer heathen gilbert bundle rebel rigid tragic review melted towers cooking oppressed revolt improve describes goddess convince westward refined unseen saxon warfare select manhood dressing rejoiced challenge forbid thankful enters genus newly sorrows pattern reveal endured resolve ringing errand righteous oppose joyous doctors organs haunted chorus adorned resort preacher casting opens prophets warmly satan workers lantern excite howard horseback farmers wildly carpet sadness circles allied ceiling glances diamonds vacant despise appealed turkey neighbor spreading discharged phrases entry hardy thorough fertile captive faster grandeur winning solely malice echoed lodging whistle floated transferred reckoned downstairs invite sandy escort harbor negroes concerns wander assert dismay pushing jimmy haughty navy fortress blessings insects selling suppressed acquire dresses coldly candles blazing youngest lecture parlor whereby gordon quitted function morals pouring bullet prevail wiser preaching prolonged annoyed splendour upset pencil emerged trousers debate dated tumult summons comrade lingered stillness partial welcomed proceeds surgeon borders unite owners sweeping saviour graham behaved pleaded lawful tommy seasons withdrawn reckless gossip seventh journal systems token abstract machines bestow accent symptoms ragged swinging whereof indies novels failing santa approve miller lodgings traffic kindred steward reverse survey amuse stretching forthwith receives scandal donors symbol repaired homage defined washing pavement wisely precise visions maggie rosy feeding allen husbands labours reduce distressed clearing scottish vaguely treason hunter chambers yielding liking tyrant slaughter dismal assent concert downward canal evenings fancies murray finer roaring wherefore sharing delayed waking garment wholesome remorse plato morris porter esteemed cherished brandy homer acute motor janet offspring network reaches proudly baggage terrace resigned onward tightly sullen brutal diamond endowed strengthened echo restraint trials headed softened stages professed era wider eyebrows afar consist displays flashing hunted beauties lazy devils compact breathless revived counter venus despatched climbing attract crystal shower wondrous await armour massive bottles cellar falsehood pillars edgar martha stealing noisy henceforth laden device touches senate lasting transport coffin johnny enclosed clinging darkened swallow nancy labors indulge bravely kneeling keenly meadow noblest complex tempest guidance prospects humbly serene roughly dainty brightness restrain splendor pepper basin creeping matthew pony vigour accepts drunken worried hasten instincts ghastly patron stations louder bursting mournful traitor cautious prior beggar chimney davis striving converse graces eastward handful usage villain banished serpent captains settlers gaining valiant buying shepherd heated travels ali hostess urgent suffice drifted deceased alert aided blanket pretence andy oven rounded northward dusty bishops complaints hinder extract lighter kisses sternly footing statesman rebels edges stormy bury actor blossoms ethel polish shudder begging amy cargo skilful conferred torment blankets covers bonnet persia lesser indulged springing valued rugged aloft parlour argue dearly logic panic restrained vainly enlarged franklin tasted rural torrent refrain kissing gorgeous sustain epoch lacking granite delights joyful slumber detached needle repent behave richly controlled flora rely dimly withered diet praises fulfil mantle chicken barrel distrust hunters feather goodly luncheon eighteenth expert coolly mistakes jacket gleaming swimming perplexed emma impress bounded worshipped baker shattered olive ernest martial waiter detained items promote seizing sinner vigor devote warlike kindled dragging mare sleepy mason foster expose oxen stuart birthday hammer fragrant bleeding sheltered circuit tended lectures plunder jungle numbered famine fuller darted fuel tranquil vicious banquet lighting scanning patent courtyard detailed closet compel inland pretext stationed margin settling billion shorter betwixt morgan chapters worthless charlie scanty compound pilot suspense dining joining weekly trenches borrow swelling favoured topic superb strengthen sunrise sturdy dissolved lifetime dispersed sergeant brigade verdict honors panting females richest brighter tiger sabbath crooked prescribed rector honored highway spacious tearing ally ascent fishes rubbing standards afore ribbon pulpit nineteen rescued counting perfume bother essay renew suggests rider leaping squadron bowing keeper homeward finely marvel condemn elders sweetly unique piercing sanction forlorn dispose withal sweetest consul raging publish knocking insight stature oblige urging courses countless rapture tonight trumpet parker firmness comic breeding factor handled saloon stumbled gladness practise judging treating forcing ascend countess binding exceed champagne shuddered carter parson rascal inspire banner divorce nineteenth weaker ticket backwards provoked gallop dagger passive mystic tavern cradle rifles censure sobbing wearied needful fireplace gravel affords prompted bullets moisture furnace healing fewer apron rotten richer pamphlet divers detach gaily gifted planet enforced vincent fluid brightly damsel frantic neatly anon ascribed insane milan hardened discern hopeful pronounce hastings grievous beseech dances commence daisy pleading disdain parcel replies drawer homely ruling printing blossom bridle waistcoat extends confirm listing projects deprive traversed announce hateful gothic coolness coachman expend stepping resign despatch reject ruby fragment darker flatter patches ordained devout outrage vary doubled sidney schooner flaming offend sheriff encamped nobler packet shabby classic accuse bridges players sixteenth embarked idol pension tumbled monkey hazard dora attire marine soothing devised singer spaces disguised antique poisoned alien sorely summon depressed recourse tortured thickly sounding sombre duel implies cable ridden acre gilded clumsy satin displeased odor clearer prairie feudal easter freshness crosses blushing equipped sinful starving bedside abrupt excused injure drooping adored pasture pillar import founder torch trusting butler rattle edit gotten headlong outfit valour grammar relaxed mentions muddy arches aspects senior fragrance jenny choosing frighten grotesque tutor besieged stony demon treatise trading extinct handling boyhood thickness darwin fixing harris rustic nodding snowy shilling swollen stubborn orchard muscle speedy daybreak coral fairest bondage grandson leo proving mounting rushes watchful harness perchance forbade channels zealous stating sundry prostrate whistling unfit relish slipping forwards entreat belly neutral grasping compose icy abused armor detect banker disclaim watches achieve incense jordan fruitful scoundrel howling tailor flourish trifles dashing shameful topics expends parade helmet impose wooded valet proclaim ravine boyish potent tilde pathos satire delete remnant ignored thrilling lastly airy sketches abyss baffled planning drawings traveled alan nicely pirates enforce briskly buttons crushing threaten undone frankness rogers villa resource confine sewing dusky appoint suppress layer kettle boldness mature cuba rabbit needless yankee blinded player thicket walker outstretched oneself futile fifteenth dripping insect values brooding baptism intrigue senseless yearly baron imply posture leon beset thereto jewel regained jumping rainy concrete lustre uproar cavern combine menace pilgrims silken litter fondly tariff dragon ranges frenzy thirsty charter boasted item linger shady confer pitied involve wanton repay routine grassy witty yearning cheering bounty renown mayor wrinkled defy junction glories constrained hardware counties mocking rebuke morbid outcome coldness renowned circus moustache proverb biggest nursing weighing avenge ridges perils larry aloof chickens placid affirm schedule calmness cherish exert riot tending bacon wasting strata sculpture tangled flavor luggage feebly woven rubbish chaos twinkling muffled accents outbreak turner filthy dealings vanish astray workman bustle fabric patty discreet accessed preface quiver deserts denounced eric phantom horsemen whirling instruct dickens purest doubly forbear treaties fearless watson bridegroom curate mining motto faction melting console fruitless ransom surplus shiver outset lament tissue impelled epic lemon robber impart statute barry girdle basil biting button headache tenant dreamy unkind inscribed cushions programme markets humane languid curses planting greedy suffrage aching ninety bobby longest danish surround random afresh ruddy rusty profess sickly duchess regain churchyard fondness quicker thereon balloon amiss sticking forsake eden baptized pastor mutton packing otto sweetheart renounce lifeless adore orphan symbols partake profane foreseen conceit commend bristol revive connect princely downwards tunnel ivy puzzle expanse shocking rudely balanced fable matches index cigars liver transmit dispatch onto liar dungeon pagan sordid amber shipping roberts semblance fervent earthquake sloping smoothly tension intrigues comments wedded whiteness paved scruple paintings therewith colleagues shrinking tickets omit beware worker incline hardest toilet buddha offense woodland gentry penance rooted outburst devour brandon speechless annals discord archie detain soda naughty salon idly peru candid blooming cooper nasty breeches abound essays plaster chairman dismiss provoke reside hazel farthest invent climax avowed tempting define stretches cupboard digest vale methinks barley plateau devise rubber adieu exclude whisky inflict nightfall hermit divert explore skipper tiresome insure laboured shepherds lilies ballad befall teddy daresay marches chaplain deceit challenged herald lowly engraved bowels blindness maxim marshall baking visage mingle bathing client ghostly tenor arouse verbal brazil recess unclean infer alley softness spinning farming fasten actress valor untouched tactics adverse rosa nina caprice candy planets sanguine odour convict package pirate salmon alma hetty madly pudding suburbs dares pondered raiment foreman thirteenth sultan medal ether heading subdue adorn warmer cluster fullest scornful bailey dingy scaffold flutter martyr handy drawers craving bureau oscar huddled diverse ardor necklace alight steadfast inflamed spelling respond fourteenth singers cloudy fleeting phases latent whiskey willow sojourn booty camel implore gliding tested racing brightest joel extremes labored exit humming sometime adult solace hardship donkey trader rumour amply confide favors withstand robust monthly ignore envoy contrive chatter judas reforms clatter allude junior tony signals drying harshly limestone pebbles willie knitting ordeal foresee repast abject bridal insults twisting bully canon oval cedar soften comely redeem poultry horseman wager pathway wistful advent drowning faintest befell crawling lumber lavish galley blunder rainbow hereby outlook smitten installed marking consume resent sterling barking bower factors midday aright nigger lily cursing marco folding discerned helpful persist frigate spotted atoms outlet withheld fairies taller arctic colleague butcher drowsy sunken collins gallows hindu omen ensure denotes sentenced unfair bucket glitter bamboo pallid mildly dealer yorkshire emblem groaning fiscal charging railing inferred wardrobe texture priesthood seaman palmer weighty morsel meagre shaggy nightmare carbon lawless stairway sarcasm poorly fitness thoughtless mellow austere pensive flavour ante baptist scatter boer extant brazen bolted abel meddle axis kinder closes giddy crouching buddhist collapse varies mainland repute cushion confound layers glimmer equals redress crafty enlarge hardness dotted solar heartless disclose juncture foresaw quaker charcoal chilly friction wholesale trodden translate mortar truthful caress curling abreast sample matron claiming plural spider jelly parchment playful barber profile provides noting heightened finance averse azure campaigns lessen acquaint tribune pilgrim paltry sporting maker gaping standpoint basic boiler banish prosper friar nightly monkeys enjoys riddle cleaning exclaim voting darkly bearded flannel fasting trailer avert unchanged mirrors phoebe conform railways paddle innate volley agrees simpler padre rustle lava trillion lyric downright foresight pallor salad greetings chestnut vicar noel attic savings dispense trusty plaintive ethics pitcher annoy amends forenoon sparkle outskirts fiddle football derby quarry rigging dizzy sequence cabbage assign tackle sceptre eddy twinkle sandstone fathom lever muster sleepless mortgage succour repress valid witchcraft paula muzzle clusters guinea tarry glossy iris relic vocal downfall construct undue vapor unlocked foretold artful downcast missions pregnant reddish peeping aghast turmoil forfeit inspect perverse dover ambush verdure ankle oddly hairy northwest laurel wary converts weakly tremor curly prestige freezing heedless sentry rowing sulphur cooling beastly nuisance abstain stanza target dictate empress manure nigel sidewalk grievance axes bony invest rabble rally rumor girlish shortest retort rocking emerge lonesome unarmed victuals quickness parma diseased irons canyon vapour lances godly therefrom davy framework squirrel blacksmith withhold outright cement fraction purer presses dissolve bases maxwell closest reproof weaving earnings indoors picnic misled pompous brian respite exploit tracing passport confines township needy beaver lookout onion couples speakers woollen lightness bitten vested yawning mustache whirlwind farthing biscuit reserves uncouth armchair greasy leaden lining embark untrue grating wintry stalwart stamping apiece wilful timely herein canton moslem invade livid buggy prolong weaken repressed sequel prose-1.2.1/testdata/3-syllable-words.txt000066400000000000000000000453761377030147400203450ustar00rootroot00000000000000another however together anything already several united general family really dishonour different possible following understand beautiful overthrown fishermen fundraising inasmuch countrymen character interest idea continued everything suddenly position remember natural copyright history certainly attention government company probably important opinion agreement gentleman various according beginning donations enemy condition including influence appearance whatever period occasion easily afterwards expression property usual expected entirely direction considered permission afternoon discovered difficult officers happiness religion personal understood determined century intended terrible medium possession perfectly memory existence religious repeated physical example directly serious sufficient wonderful paragraph official provided opposite distribute consider accepted advantage ideas decided officer difference curious excellent confidence exactly importance finally liberty gentlemen concerning forgotten evidence similar conditions otherwise carefully presented remembered animal created quietly regarded succeeded anyone animals occupied opening capital presently permitted enemies companion established satisfied numerous frequently powerful national principal suggested equally principle consequence principles characters dangerous genius popular appointed demanded distinguished interests sympathy affection suffering proceeded carrying collection imagine admitted arrival november december impression relations rapidly regular quality discover completely included countenance previous poetry policy excitement assistance dignity october possibly separate receiving capable instantly relation practical yesterday delicate continue unable victory constantly india connected addition committed italian acquaintance sacrifice exercise theory commanded nobody minister energy provisions description excited citizens intention thoroughly everywhere connection protection edition directed evident surrounded requirements introduced becoming volunteers whenever successful devoted israel disappeared accustomed recognized innocent attitude returning visible actual companions prisoner utterly violent september departure delivered equipment earlier visited anywhere extremely quantity conclusion computer affected origin eternal audience limited services library remaining containing confusion editions attended glorious acquainted unhappy article prisoners adopted absolute readily argument related punishment articles extended emotion destruction increasing expenses ignorant generous mystery consciousness formerly production compliance reported listening accomplished purposes delighted suspicion opinions indicate misery properly singular violence commercial suggestion domestic concluded reference approaching providing ignorance hitherto benefit eagerly atmosphere invited departed catholic replacement division slavery decision probable governor forever delightful occasions readable beloved apparent attempted centuries hastily located announcement circumstance distinction essential recovered belonging permanent gratitude sentiment desperate imagined enormous defective conviction insisted selected developed mistaken damages ambition ideal descended discussion instrument elements entering africa sovereign horrible displaying abandoned eleven collected arrangement politics industry profession interview devotion creation supported uniform multitude infinite copying apartment sensible charity realized element reflection accordance examined somebody incident poverty prevented completed resistance suspected deserted cavalry exception offering exhausted critical directions residence steadily intimate enterprise favourite heavily assembled existed settlement overcome performing recently instructions furniture additions adventure royalty annual obtaining moreover average conducted obvious foundation liberal commonly wondering tenderness cardinal regiment distinctly creating performance election conception reflected preceding definite emperor tendency enabled earnestly genuine passages succession persuaded inquiry perfection wherever fortunate newspaper employment misfortune providence determine commission provinces relative wandering provision regarding vanity deliver represent existing suitable legally gathering examine instances theatre realize intercourse criminal intervals intellect resources narrative sentiments amusement recognize preparing construction positive attracted satisfy agony maria enjoyment horizon precisely canada registered estimate visitor harmony paragraphs unconscious mutual external universe instruction injury earliest enable discipline converted wilderness offices silently responded uncertain neglected exquisite engagement messenger privilege physician organized covering tradition sensation travelling tragedy specific commander paradise villages favorite criticism hospital restrictions musical samuel extensive emotions jealousy translation procession elected citizen reminded funeral arrested consisted proceedings romantic reception heartily warriors abruptly solution pretended assembly tobacco entity bitterly colony disclaimers financial entertained medicine reverence appointment solicit objection arrangements complying grandfather vigorous accepting primitive arguments surrender establish appearing department handkerchief easier assurance heavenly proceeding impatient certainty salvation tremendous afforded newspapers improvement treasury visitors erected recover committee promises effective distinguish manifest confession management moderate area solitude instruments struggling federal editor acknowledge motionless remedy pacific gratefully president justified openly advancing recorded dramatic internal furious adventures exclusion luxury awakened protected contented neighborhood abundance medical garrison heroic prominent affections surrounding remainder expecting respecting unpleasant anxiously innocence incomplete secretly invention piano defeated electric interval occupy cruelty proposal destiny recognised ancestors commanding happily temptation subsequent willingly spectacle uneasy attractive interfere effected passengers donation witnesses specified calculate savages eloquence sensitive appetite picturesque courtesy remembrance elegant avoided delicious offended memories encounter consisting sufferings translated formation immortal gallery parallel continent impatience unity images submitted speedily consented amazement hereafter eminent examples exercised everyone abundant undertake magazine bitterness guardian rejected injustice expressions protested abandon artistic desirous alliance maximum hideous hamilton unworthy modified miracle observing resemblance rebellion forbidden requested promoting purity solemnly republic telephone infantry companies addresses introduce conversion african answering virtuous anyway constructed editing accomplish suspended threatening addressing encourage intentions liable traveller dependent endeavour convention endeavoured prejudice lieutenant surprising assisted extending marvellous confident selection inquiries beforehand retorted cheerfully righteousness producing reasoning gravity languages asserted bodily oliver faculty possessions disciples divisions justify manuscript warrior impressions specially unwilling adapted civilized invented encountered maintaining barbara respected behaviour desolate revenue infringement eagerness visiting travellers enjoying totally tenderly disaster computers ascended incidents dominion complexion relatives comprehend opera officials compliment approval compassion latitude projected resentment transcription document glittering attachment ambitious holiday recollect recommend suspicious resulting seventy clergyman disorder exalted binary anyhow instructed bewildered positions edited continues loyalty documents expressing awaiting potatoes entertain faculties hesitate seventeen feminine warranties happier gigantic tyranny dignified magistrate respective studying depended locations neighbouring promotion faithfully excellence awaited poetic consulted whereupon terribly suspicions sentences radiant indignant pertaining disclaimer specimens ascertain supposing attending angrily hurriedly quantities produces admission terrified persisted conference generals surroundings occasioned invasion discretion exceeding triumphant defiance grandmother promising scenery specimen eloquent manager rational processing accurate refusal salary defended ingenious successor ultimate submission monument exciting prosperous declaring thoughtfully allowing adjoining cathedral caroline tomorrow finishing forgetting mysteries honesty sacrificed utterance reflections pathetic imperfect hurrying attempting offensive florida reverend successive perception buffalo develop excessive mexican piety substantial subjected exhibit corruption cabinet repeating allowance treachery attendant murderer theories possesses factory attendance honestly descending sincerely succeeding cautiously afflicted petition sparkling disposal carriages ornament fantastic patiently foliage influenced governments pleasantly columbus attendants modesty diana decisive negative occurrence festival wickedness carelessly preference removal assertion comedy adequate newsletter battery attraction detective revolver paces paperwork emphasis exclusive uncommon confounded envelope whoever expensive headquarters startling cigarette embarrassed volunteer reaction regiments partially allusion benjamin ministry sexual marrying penalty corridor proportions alternate quivering objected ascertained acceptance cordial engineer encoding disappear diminished objections suggestions diseases detected cicero communion forgiveness awfully commonplace resembled contracted inscription indulgence enlightened compliments extension constitute inflicted downloading overhead commencement oppression publicly melody descendants candidate obstinate foreigners elderly overwhelmed telegraph varying barbarous modify earnestness exertion refusing inspection regretted pursuing foundations undertook telegram magistrates substitute primary prophecy spectacles obsolete competent gratified circular securing neighboring accounted augustus ivory policeman personage classical alongside rewarded forgiven realised arising observer avenue elephant affecting efficient supporting disturbance seemingly painfully imposing notable invested imprisoned assented ideals resulted illusion troublesome repentance compromise respectful chariot assistant saluted boundary indebted processes weariness resolute consumption resemble gradual shadowy annoyance execute monarchy endeavor barrier politeness courteous logical discussing judicial consistent ridicule verily exertions tedious impressive displeasure underneath resisted provincial merciful genial conjecture covenant interposed properties perilous obstacle destitute plantation pitiful requisite payable intensely dominions amazing trivial rejoicing removing palaces sorrowful improvements typical recognise expressive destroying excepting champion admiring chemical especial attentive maintenance admiral resume imitate happening majestic messages agency arisen intently depression technical vehicle flattering prodigious fortified salute contribute attribute discontent orderly messengers penetrate holiness housekeeper productions militia nobleman energies affliction photograph jupiter transparent qualified odious loneliness dazzling novelty charities elephants endurance organic allegiance expressly duration collecting precaution privately endeavored entrusted questioning monuments loveliness confronted traveling profoundly casual analyzed historic studio exposure unbroken apollo inserted treacherous invalid corrected infancy gentleness explosion selfishness exceptions insolent behavior nowadays realise feverish tropical overthrow achievement assumption humorous composure orator ecstasy retirement authorized reconciled mercury elegance chivalry luminous confided escaping terrific parliament sympathies suicide sinister advocate destructive reporter detachment infernal fugitive excluded balcony nevada disastrous burial employee employer transaction victories attorney politely italians impulses ascending cruelly happiest insulted enchanted reflecting conqueror dynasty signature heretofore orthodox offerings irony inquiring colonists illustrate nursery adoption reluctance imported sovereigns incessant correctly embroidered bravery confinement transported insolence secrecy thereupon unlucky adjacent attacking deposit refinement forcibly reprinted gaiety robbery transmitted gratify heavier batteries pilgrimage idleness merrily excursion eminence montana shivering premises productive discouraged persuasion invaded ungrateful cultivate marian magnitude precautions requiring opponent cowardly protecting desiring precision seventeenth dreadfully asterisk edifice reckoning syllable handwriting reduction cordially dialogue diligence disgusted retiring valentine dimensions infamous powerless passenger episode populace persistent inviting criminals leisurely audible radiance underline unequal enduring deference formally manual disturbing mischievous foreigner masculine umbrella mineral alaska aversion customers flattery director temporal patriot malicious skeleton progressive reconcile insurance interrupt signify contemplate aforesaid befallen awaken conductor dependence guarantee procedure projecting cheerfulness deity muscular restaurant exhaustion hercules attach fellowship demanding ensuring longitude secondly violin radical accursed tendencies resident ominous overboard currency violet mastery objective reluctant patronage revenues vexation indicates overheard thereafter exporting taxation disputed suggestive expansion sophia commanders interfered noticing courtiers consequent particles signifies paternal engaging avoiding abolished idiot applying creative lowering degraded merchandise despairing asylum gardener protector concealment accession connexion considers achievements deserving veteran advancement inventor hopelessly judicious testify governess orchestra foregoing maternal maryland corrections completion forsaken spirited christendom defending disregard notifies asunder mentioning pastoral musician mentally apostle convincing commented precipice outdated dialect cowardice denial underground vividly puritan conjunction oppressive formula plentiful constable enveloped enmity improper architect register heroine defensive constitutes fisherman measuring rebellious consulting manila massacre transition burgundy collections alcohol impending declining spectator winchester commonwealth tremulous admitting discomfort bachelor courageous carpenter concluding dictated appalling imminent dominant leadership wearily diary apprehend securely connecting celebrate deputy discussions refreshment amendment appealing vertical manchester silvery inherent preventing inference enclosure publisher refreshing irene vinegar uncovered gracefully mightily deities overtake improving ferocious subsistence disciple revival citadel despotism internet mechanism directors brilliancy extracted veranda diminish complaining temperate gambling magazines submarine regardless fearfully convicted deception religions governing prophetic undergo poisonous concession starvation fortitude malignant accorded eccentric anecdote scrutiny diversion correspond interpret vehement operate disgraceful redemption embassy unfinished frivolous deficient heroism apparel carelessness connections industries forefathers restricted ludicrous colossal stimulus vigilance overcoat expanded archbishop abuses chocolate privileged overtook caravan eliza comparing implements recompense cylinder summary photographs colleges vehemence unlikely joyfully purposely remedies indexes investment catalogue strenuous chemistry maritime secular averted oracle regulate etiquette theater thanksgiving conducting distorted obliging opium pavilion metallic instructive revealing prevalent magical manifold volcanic magnetic decency observance impartial slippery oxygen wellington heresy location ancestor quotation custody plausible rhetoric avarice commotion congenial telescope deposits renaissance angelo murderous impudent genoa courier literal usefulness profusion twentieth overcame womanhood envious forbidding amateur morally perspective reverie nourishment corrupted constancy distressing novelist editors intricate collision supplying indirect unnoticed precedent vacation inspiring contradict servitude elastic prettiest involving acquiring rendezvous watery publishing customer genesis eleventh partition fanciful sentinel unmarried aesthetic contentment organism emphatic occurring impudence corporal heritage brotherhood inherit handsomely butterfly narrowly insulting diligent wretchedness encampment possessor absorbing descendant engineers clerical ordinance vocation admirer timothy auspicious reducing ritual sanctity cynical inspector adjustment epistle turbulent unaware initial minimum correction overlook magician mystical inhabit willingness composing controlling temperance translations martyrdom listener genera contrivance museum alphabet pernicious secluded resisting disgusting ethical recital ownership scrupulous momentous albeit civilised defiant suppression unjustly aggressive predicted ponderous arrogance commissioned ratio masterpiece embraces cavalier rivalry pestilence receiver distinctive consummate populous baronet commodore advocates mutiny chronicles comforting potato transient anarchy revision disordered menacing conveyance chivalrous capricious entreaty womanly digestion infamy amorous premature extinction scandalous multiply subscription copious privacy arena sensual trustworthy jamaica traveler particle stupendous statistics calendar repulsive conclusive peaceable emerald uppermost arduous senators nominal demonstrate merciless coloring perusal discarded infection ruinous conventions stumbling conveying syllables enchantment composer audacious partnership pioneer abnormal omission canopy athletic drunkenness intrusion exacting percentage cavity abstraction forefinger erection withdrawal senator ancestral forbearance workmanship legacy compelling flickering derision vehicles whimsical explicit indolent indistinct coveted sumptuous reliance panama everyday evermore parapet cessation fervently disabled arrogant livelihood scattering somerset surveying desertion believer negligence millionaire flowering unwonted restlessness actively countryman outrageous foolishness hurricane indulging atrocious tapestry impotent acquitted palpable apprentice compartment sarcastic emerging atonement whereabouts mountainous annoying unreal injunction scarcity aggregate illegal stealthily volcano sullenly commissions resounded gunpowder combining pitiless vacancy crumbling wanderer depicted boisterous lucia penitent abiding immoral dishonest supplement cleverness ascetic quotations friendliness rejection variance firmament absorption terminate cleanliness collective philippines ignoble adjective folio dismissal enchanting purified prose-1.2.1/testdata/4-syllable-words.txt000066400000000000000000000213321377030147400203300ustar00rootroot00000000000000electronic necessary information especially undertaken particular impossible generally society experience circumstances conversation political difficulties remarkably authority original usually situation military ordinary interesting overtaken violation honourable altogether additional distribution peculiar necessity education material naturally remarkable evidently immediate interested apparently familiar actually distributed literature population inhabitants satisfaction accompanied understanding absolutely explanation superior spiritual distributing gradually intelligence variety everybody development literary interrupted represented admiration anxiety miserable sufficiently anybody reality valuable discovery mysterious expedition universal unfortunate philosophy comfortable european melancholy reputation agreeable resolution majority reasonable humanity opposition celebrated disposition enthusiasm materials community magnificent nevertheless equivalent generations independent observation applicable separated seriously calculated accordingly constitution generation limitation experienced practically scientific territory alexander operation exceedingly execution astonishment activity security capacity available unusual establishment interior notwithstanding consequences hesitated ability references application intelligent consequently ceremony carolina contributions operations indignation prosperity whatsoever considering previously obedience advantages independence solitary historical unexpected respectable testimony disappointed simplicity comparison composition indifferent occupation invitation inferior disappointment responsible indicated indifference institutions introduction revolution admirable accompany ridiculous publication correspondence preparations alteration preparation situated occasional observations derivative convenient secretary experiment cultivated perpetual affectionate proposition revelation recognition undoubtedly indirectly temporary desirable artillery combination temperature professional agitation institution obviously recollection identify expectation invisible hesitation formidable machinery economic violently philosopher incapable exhibited amiable economy favourable prohibition artificial illustrious curiously inspiration particulars apprehension significance personally morality inclination differences imperial conspicuous nobility declaration separation recommended legislation corresponding favorable appropriate privileges fashionable positively inaccurate appreciate literally consolation phenomena regularly inheritance experiments periodic entertainment influences resembling dedicated prominently delicacy indemnify sacrifices obligation honorable significant infinitely agitated elaborate elevation interpreted extremity mechanical successfully temperament contributed sincerity facility indicating incredible everlasting deductible imitation encouragement impatiently varieties irregular illustrated fundamental cultivation representing venerable australia illustration congregation undertaking subsequently animated industrial elevated equality communicate essentially vicinity sympathetic continuous continual examining peculiarly vegetables customary wonderfully confirmation antiquity severity conservative beautifully inhabited exclamation apparatus ceremonies decidedly identical superstition remembering vegetable eternity propriety unconsciously intimacy legitimate manifested fidelity architecture evolution deliberate victorious recovery unnatural exclusively corporation exercises sovereignty accessible philosophers historian intensity democracy deposited analysis inherited ultimately missionary prejudices humility diameter identity poetical ambassador constituted interference extravagant momentary rapidity alternative astonishing competition obedient memorable contemplation manufacture comfortably exhibition uneasiness controversy resignation singularly repeatedly conspiracy preservation continuing calamity profitable speculation discoveries principally celestial patriotism complicated apology imprisonment restoration jurisdiction victoria penetrated agriculture accuracy democratic isolated conventional proclamation indiana executive comparative proprietor uncertainty concentrated ammunition secondary persecution circulation passionately nominally phenomenon canadian convenience desperately habitual voluntary contemplated expedient compensation decorated sentimental hostility regulations posterity patriotic interruption definition overwhelming energetic repetition legislature fortunately destination associate instinctively subordinate regulating legislative differently furiously relationship demonstration expectations vegetation confidential alabama integrity solicited fascinating desolation assuredly activities efficiency tranquillity navigation admirably approbation theology monastery definitely associates communities sanctuary superstitious expenditure encouraging diplomatic compilation captivity vigorously monotonous catastrophe respectfully discovering tolerably punctuation annually resurrection consecrated obscurity missionaries arbitrary benevolent perplexity companionship emergency contribution supposition synonymous environment solemnity insurrection iniquity meditation hypothesis magnificence necessities accusation irritated industrious adversary luxurious irritation acceptable accurately divinity occupations supremacy correspondent reasonably reluctantly republican explanations notorious estimation exceptional recollections establishing colonial penetrating superficial identified contributing consequential confidently superfluous accidental continuance delivery variations miraculous insensible variation locality hospitable benevolence indication accomplishment commissioners arabian fascination inconvenience contradiction historians consultation habitation disappearance practicable consternation expenditures territories anonymous injurious discontinue alternately endeavouring transportation comprehension incessantly improbable moderation awakening vitality comprehensive personages congratulate terminated extravagance tolerable occupying absurdity resolutely characterized permanently emotional respectively memorial beneficial separately horizontal termination eminently calculation traditional unsuccessful politician regulation minority acquisition municipal condemnation miniature regulated intimately unlimited inconsistent degradation prosecution abundantly disadvantage abolition demonstrated interpreter redistribute hostilities acknowledgment combinations inadequate developing audacity delicately indefinite perceptible solicitude effectual contemptuous felicity obstinacy conscientious perseverance harmonious laborious fertility introducing advantageous millennium theatrical commodities imperative influential automobile insufficient advertisement spontaneous apparition utility contemptible intervention susceptible mathematics substituted physically monopoly animation sagacity dissatisfied anticipate inquisition imperious impetuous cemetery oblivion prohibited decoration affectation gratifying stupidity monotony colorado antagonist presentation exultation coincidence adventurous dissolution instituted geography systematic virtually conformity invincible impertinent intuition tabernacle excessively analogy peninsula manufactured psychology veritable investigate accomplishments hypocrisy noticeable predecessor diplomacy similarly facilities transformation ornamental certificate arabia exposition thermometer desperation civility concentration speculative serenity perspiration stimulated seriousness mortality maturity relatively isolation biography misunderstood delirium ingratitude bewilderment dictionary adoration celebration conceivable mediaeval analogous vivacity veneration manifestly battalion powerfully erroneous violated supervision velocity deficiency operating vehemently primarily decorations adventurer unanimous casually administer unimportant deplorable benefactor bohemia dexterity mythology circumference ferocity satisfying reliable stability timidity recreation salutation serviceable operated luxuriant mutually intimation separating oratory electrical alacrity neutrality unfamiliar reformation inhabitant nomination reproduction consistency inquisitive affirmative applications precarious arithmetic considerate officially impunity abandonment idolatry preferable advertising barbarian proximity dissipated accommodate automatic ordinances effectively precipitate embarrassing demonstrations detestable abandoning variable diversity meridian continental hysterical disregarded unscrupulous adversity salutary provocation tumultuous exaltation obstinately embroidery acquiescence exploration stationary disconcerted toleration bohemian affinity lamentable appellation liberally apprehensive conveniently lamentations prose-1.2.1/testdata/5-syllable-words.txt000066400000000000000000000047201377030147400203330ustar00rootroot00000000000000immediately opportunity considerable individual associated particularly intellectual imagination extraordinary consideration curiosity liability occasionally necessarily characteristic continually examination communication organization civilization possibility individuals solicitation specifically administration determination proprietary satisfactory originally inevitable opportunities california comparatively representative modification disagreeable international representation preliminary experiences considerably personality unnecessary probability deliberately association innumerable communicated invariably investigation constitutional hospitality representatives educational generosity unfortunately characteristics interpretation representations considerations enthusiastic uncomfortable appreciation irresistible contemporary intolerable redistributing indispensable imaginary philosophical eventually agricultural university associations exaggerated hereditary supernatural possibilities negotiations unexpectedly aristocracy accompanying effectually universally popularity insignificant aristocratic explanatory unusually inevitably ingenuity organizations communications humiliation unreasonable immortality perpetually illuminated gratification electricity intelligible mechanically civilisation accumulated originator accommodation theological anticipation justification abominable sensibility affectionately recommendation imaginative voluntarily unsolicited redistribution accidentally emancipation deliberation elementary pecuniary intermediate manufacturing geographical ordinarily manifestation temporarily inexplicable perpendicular laboratory inability superintendent indescribable exaggeration regularity impenetrable disinterested mathematical qualifications psychological impracticable accompaniment editorial exasperated independently organisation accumulation unaccountable vocabulary parliamentary illumination nationality misunderstanding universities inseparable economical participation intoxicated ceremonial initiative inexhaustible administrative humiliating periodical interminable similarity congratulations inaccessible inconceivable dissatisfaction preparatory continuation invaluable incorporated contradictory indefinitely intoxication subterranean classification anniversary discrimination appropriation territorial disobedience uniformity inexorable equilibrium assassination manufacturers geological executioner inexperienced significantly experimental cooperation prose-1.2.1/testdata/6-syllable-words.txt000066400000000000000000000004211377030147400203260ustar00rootroot00000000000000electronically responsibility ecclesiastical mediterranean revolutionary identification familiarity involuntarily peculiarities simultaneously impossibility peculiarity incomprehensible originality satisfactorily unsatisfactory respectability unintelligible reconciliation prose-1.2.1/testdata/7-syllable-words.txt000066400000000000000000000000151377030147400203260ustar00rootroot00000000000000individualityprose-1.2.1/testdata/article.txt000066400000000000000000000072041377030147400166510ustar00rootroot00000000000000WASHINGTON (CNN) — Not everyone subscribes to a New Year’s resolution, but Americans will be required to follow new laws in 2014. Some 40,000 measures taking effect range from sweeping, national mandates under Obamacare to marijuana legalization in Colorado, drone prohibition in Illinois and transgender protections in California. Although many new laws are controversial, they made it through legislatures, public referendum or city councils and represent the shifting composition of American beliefs. Federal: Health care, of course, and vending machines The biggest and most politically charged change comes at the federal level with the imposition of a new fee for those adults without health insurance. For 2014, the penalty is either $95 per adult or 1% of family income, whichever results in a larger fine. The Obamacare, of Affordable Care Act, mandate also requires that insurers cover immunizations and some preventive care. Additionally, millions of poor Americans will receive Medicaid benefits starting January 1. Thousands of companies will have to provide calorie counts for products sold in vending machines. Local: Guns, family leave and shark fins Connecticut: While no national legislation was approved to tighten gun laws a year after the Newtown school shooting, Connecticut is implementing a final round of changes to its books: All assault weapons and large capacity magazines must be registered. Oregon: Family leave in Oregon has been expanded to allow eligible employees two weeks of paid leave to handle the death of a family member. California: Homeless youth are eligible to receive food stamps. The previous law had a minimum wage requirement. Delaware: Delaware is the latest in a growing number of states where residents can no longer possess, sell or distribute shark fins, which is considered a delicacy in some East Asian cuisine. Illinois and drones Illinois: passed two laws limiting the use of drones. One prohibits them from interfering with hunters and fisherman. The measure passed after the group People for the Ethical Treatment of Animals said it would use drones to monitor hunters. PETA said it aims through its “air angels” effort to protect against “cruel” and “illegal” hunting. Also in Illinois, another law prohibits the use of drones for law enforcement without a warrant. Gender and voting identity California: Students can use bathrooms and join school athletic teams “consistent with their gender identity,” even if it’s different than their gender at birth. Arkansas: The state becomes the latest state requiring voters show a picture ID at the voting booth. Minimum wage and former felon employment Workers in 13 states and four cities will see increases to the minimum wage. While most amount to less than 15 cents per hour, workers in places like New Jersey, and Connecticut. New Jersey residents voted to raise the state’s minimum wage by $1 to $8.25 per hour. And in Connecticut, lawmakers voted to raise it between 25 and 75 cents to $8.70. The wage would go up to $8 in Rhode Island and New York. California is also raising its minimum wage to $9 per hour, but workers must wait until July to see the addition. Rhode Island: It is the latest state to prohibit employers from requiring job applicants to signify if they have a criminal record on a job application. Social media and pot Oregon: Employers and schools can’t require a job or student applicant to provide passwords to social media accounts. Colorado: Marijuana becomes legal in the state for buyers over 21 at a licensed retail dispensary. (Sourcing: much of this list was obtained from the National Conference of State Legislatures). prose-1.2.1/testdata/case.json000066400000000000000000000665051377030147400163040ustar00rootroot00000000000000[ { "input": "follow step-by-step instructions", "none": "follow step by step instructions", "snake": "follow_step_by_step_instructions", "param": "follow-step-by-step-instructions", "dot": "follow.step.by.step.instructions", "constant": "FOLLOW_STEP_BY_STEP_INSTRUCTIONS", "pascal": "FollowStepByStepInstructions", "camel": "followStepByStepInstructions" }, { "input": "follow step-BY-step instructions", "none": "follow step by step instructions", "snake": "follow_step_by_step_instructions", "param": "follow-step-by-step-instructions", "dot": "follow.step.by.step.instructions", "constant": "FOLLOW_STEP_BY_STEP_INSTRUCTIONS", "pascal": "FollowStepByStepInstructions", "camel": "followStepByStepInstructions" }, { "input": "this sub-phrase is nice", "none": "this sub phrase is nice", "snake": "this_sub_phrase_is_nice", "param": "this-sub-phrase-is-nice", "dot": "this.sub.phrase.is.nice", "constant": "THIS_SUB_PHRASE_IS_NICE", "pascal": "ThisSubPhraseIsNice", "camel": "thisSubPhraseIsNice" }, { "input": "catchy title: a subtitle", "none": "catchy title a subtitle", "snake": "catchy_title_a_subtitle", "param": "catchy-title-a-subtitle", "dot": "catchy.title.a.subtitle", "constant": "CATCHY_TITLE_A_SUBTITLE", "pascal": "CatchyTitleASubtitle", "camel": "catchyTitleASubtitle" }, { "input": "catchy title: \"a quoted subtitle\"", "none": "catchy title a quoted subtitle", "snake": "catchy_title_a_quoted_subtitle", "param": "catchy-title-a-quoted-subtitle", "dot": "catchy.title.a.quoted.subtitle", "constant": "CATCHY_TITLE_A_QUOTED_SUBTITLE", "pascal": "CatchyTitleAQuotedSubtitle", "camel": "catchyTitleAQuotedSubtitle" }, { "input": "catchy title: “‘a twice quoted subtitle’”", "none": "catchy title a twice quoted subtitle", "snake": "catchy_title_a_twice_quoted_subtitle", "param": "catchy-title-a-twice-quoted-subtitle", "dot": "catchy.title.a.twice.quoted.subtitle", "constant": "CATCHY_TITLE_A_TWICE_QUOTED_SUBTITLE", "pascal": "CatchyTitleATwiceQuotedSubtitle", "camel": "catchyTitleATwiceQuotedSubtitle" }, { "input": "\"a title inside double quotes\"", "none": "a title inside double quotes", "snake": "a_title_inside_double_quotes", "param": "a-title-inside-double-quotes", "dot": "a.title.inside.double.quotes", "constant": "A_TITLE_INSIDE_DOUBLE_QUOTES", "pascal": "ATitleInsideDoubleQuotes", "camel": "aTitleInsideDoubleQuotes" }, { "input": "all words capitalized", "none": "all words capitalized", "snake": "all_words_capitalized", "param": "all-words-capitalized", "dot": "all.words.capitalized", "constant": "ALL_WORDS_CAPITALIZED", "pascal": "AllWordsCapitalized", "camel": "allWordsCapitalized" }, { "input": "small words are for by and of lowercase", "none": "small words are for by and of lowercase", "snake": "small_words_are_for_by_and_of_lowercase", "param": "small-words-are-for-by-and-of-lowercase", "dot": "small.words.are.for.by.and.of.lowercase", "constant": "SMALL_WORDS_ARE_FOR_BY_AND_OF_LOWERCASE", "pascal": "SmallWordsAreForByAndOfLowercase", "camel": "smallWordsAreForByAndOfLowercase" }, { "input": "a small word starts", "none": "a small word starts", "snake": "a_small_word_starts", "param": "a-small-word-starts", "dot": "a.small.word.starts", "constant": "A_SMALL_WORD_STARTS", "pascal": "ASmallWordStarts", "camel": "aSmallWordStarts" }, { "input": "a small word it ends on", "none": "a small word it ends on", "snake": "a_small_word_it_ends_on", "param": "a-small-word-it-ends-on", "dot": "a.small.word.it.ends.on", "constant": "A_SMALL_WORD_IT_ENDS_ON", "pascal": "ASmallWordItEndsOn", "camel": "aSmallWordItEndsOn" }, { "input": "do questions work?", "none": "do questions work", "snake": "do_questions_work", "param": "do-questions-work", "dot": "do.questions.work", "constant": "DO_QUESTIONS_WORK", "pascal": "DoQuestionsWork", "camel": "doQuestionsWork" }, { "input": "multiple sentences. more than one.", "none": "multiple sentences more than one", "snake": "multiple_sentences_more_than_one", "param": "multiple-sentences-more-than-one", "dot": "multiple.sentences.more.than.one", "constant": "MULTIPLE_SENTENCES_MORE_THAN_ONE", "pascal": "MultipleSentencesMoreThanOne", "camel": "multipleSentencesMoreThanOne" }, { "input": "Ends with small word of", "none": "ends with small word of", "snake": "ends_with_small_word_of", "param": "ends-with-small-word-of", "dot": "ends.with.small.word.of", "constant": "ENDS_WITH_SMALL_WORD_OF", "pascal": "EndsWithSmallWordOf", "camel": "endsWithSmallWordOf" }, { "input": "double quoted \"inner\" word", "none": "double quoted inner word", "snake": "double_quoted_inner_word", "param": "double-quoted-inner-word", "dot": "double.quoted.inner.word", "constant": "DOUBLE_QUOTED_INNER_WORD", "pascal": "DoubleQuotedInnerWord", "camel": "doubleQuotedInnerWord" }, { "input": "single quoted 'inner' word", "none": "single quoted inner word", "snake": "single_quoted_inner_word", "param": "single-quoted-inner-word", "dot": "single.quoted.inner.word", "constant": "SINGLE_QUOTED_INNER_WORD", "pascal": "SingleQuotedInnerWord", "camel": "singleQuotedInnerWord" }, { "input": "fancy double quoted “inner” word", "none": "fancy double quoted inner word", "snake": "fancy_double_quoted_inner_word", "param": "fancy-double-quoted-inner-word", "dot": "fancy.double.quoted.inner.word", "constant": "FANCY_DOUBLE_QUOTED_INNER_WORD", "pascal": "FancyDoubleQuotedInnerWord", "camel": "fancyDoubleQuotedInnerWord" }, { "input": "fancy single quoted ‘inner’ word", "none": "fancy single quoted inner word", "snake": "fancy_single_quoted_inner_word", "param": "fancy-single-quoted-inner-word", "dot": "fancy.single.quoted.inner.word", "constant": "FANCY_SINGLE_QUOTED_INNER_WORD", "pascal": "FancySingleQuotedInnerWord", "camel": "fancySingleQuotedInnerWord" }, { "input": "this vs. that", "none": "this vs that", "snake": "this_vs_that", "param": "this-vs-that", "dot": "this.vs.that", "constant": "THIS_VS_THAT", "pascal": "ThisVsThat", "camel": "thisVsThat" }, { "input": "this vs that", "none": "this vs that", "snake": "this_vs_that", "param": "this-vs-that", "dot": "this.vs.that", "constant": "THIS_VS_THAT", "pascal": "ThisVsThat", "camel": "thisVsThat" }, { "input": "this v. that", "none": "this v that", "snake": "this_v_that", "param": "this-v-that", "dot": "this.v.that", "constant": "THIS_V_THAT", "pascal": "ThisVThat", "camel": "thisVThat" }, { "input": "this v that", "none": "this v that", "snake": "this_v_that", "param": "this-v-that", "dot": "this.v.that", "constant": "THIS_V_THAT", "pascal": "ThisVThat", "camel": "thisVThat" }, { "input": "catchy title: substance subtitle", "none": "catchy title substance subtitle", "snake": "catchy_title_substance_subtitle", "param": "catchy-title-substance-subtitle", "dot": "catchy.title.substance.subtitle", "constant": "CATCHY_TITLE_SUBSTANCE_SUBTITLE", "pascal": "CatchyTitleSubstanceSubtitle", "camel": "catchyTitleSubstanceSubtitle" }, { "input": "have you read “The Lottery”?", "none": "have you read the lottery", "snake": "have_you_read_the_lottery", "param": "have-you-read-the-lottery", "dot": "have.you.read.the.lottery", "constant": "HAVE_YOU_READ_THE_LOTTERY", "pascal": "HaveYouReadTheLottery", "camel": "haveYouReadTheLottery" }, { "input": "Drink this piña colada while you listen to ænima", "none": "drink this piña colada while you listen to ænima", "snake": "drink_this_piña_colada_while_you_listen_to_ænima", "param": "drink-this-piña-colada-while-you-listen-to-ænima", "dot": "drink.this.piña.colada.while.you.listen.to.ænima", "constant": "DRINK_THIS_PIÑA_COLADA_WHILE_YOU_LISTEN_TO_ÆNIMA", "pascal": "DrinkThisPiñaColadaWhileYouListenToÆnima", "camel": "drinkThisPiñaColadaWhileYouListenToÆnima" }, { "input": "don't break", "none": "don t break", "snake": "don_t_break", "param": "don-t-break", "dot": "don.t.break", "constant": "DON_T_BREAK", "pascal": "DonTBreak", "camel": "donTBreak" }, { "input": "we keep NASA capitalized", "none": "we keep nasa capitalized", "snake": "we_keep_nasa_capitalized", "param": "we-keep-nasa-capitalized", "dot": "we.keep.nasa.capitalized", "constant": "WE_KEEP_NASA_CAPITALIZED", "pascal": "WeKeepNasaCapitalized", "camel": "weKeepNasaCapitalized" }, { "input": "leave Q&A unscathed", "none": "leave q a unscathed", "snake": "leave_q_a_unscathed", "param": "leave-q-a-unscathed", "dot": "leave.q.a.unscathed", "constant": "LEAVE_Q_A_UNSCATHED", "pascal": "LeaveQAUnscathed", "camel": "leaveQAUnscathed" }, { "input": "your hair[cut] looks (nice)", "none": "your hair cut looks nice", "snake": "your_hair_cut_looks_nice", "param": "your-hair-cut-looks-nice", "dot": "your.hair.cut.looks.nice", "constant": "YOUR_HAIR_CUT_LOOKS_NICE", "pascal": "YourHairCutLooksNice", "camel": "yourHairCutLooksNice" }, { "input": "keep that colo(u)r", "none": "keep that colo u r", "snake": "keep_that_colo_u_r", "param": "keep-that-colo-u-r", "dot": "keep.that.colo.u.r", "constant": "KEEP_THAT_COLO_U_R", "pascal": "KeepThatColoUR", "camel": "keepThatColoUR" }, { "input": "capitalize hyphenated words on-demand", "none": "capitalize hyphenated words on demand", "snake": "capitalize_hyphenated_words_on_demand", "param": "capitalize-hyphenated-words-on-demand", "dot": "capitalize.hyphenated.words.on.demand", "constant": "CAPITALIZE_HYPHENATED_WORDS_ON_DEMAND", "pascal": "CapitalizeHyphenatedWordsOnDemand", "camel": "capitalizeHyphenatedWordsOnDemand" }, { "input": "take them on: special lower cases", "none": "take them on special lower cases", "snake": "take_them_on_special_lower_cases", "param": "take-them-on-special-lower-cases", "dot": "take.them.on.special.lower.cases", "constant": "TAKE_THEM_ON_SPECIAL_LOWER_CASES", "pascal": "TakeThemOnSpecialLowerCases", "camel": "takeThemOnSpecialLowerCases" }, { "input": "Notes and observations regarding Apple’s announcements from ‘The Beat Goes On’ special event", "none": "notes and observations regarding apple s announcements from the beat goes on special event", "snake": "notes_and_observations_regarding_apple_s_announcements_from_the_beat_goes_on_special_event", "param": "notes-and-observations-regarding-apple-s-announcements-from-the-beat-goes-on-special-event", "dot": "notes.and.observations.regarding.apple.s.announcements.from.the.beat.goes.on.special.event", "constant": "NOTES_AND_OBSERVATIONS_REGARDING_APPLE_S_ANNOUNCEMENTS_FROM_THE_BEAT_GOES_ON_SPECIAL_EVENT", "pascal": "NotesAndObservationsRegardingAppleSAnnouncementsFromTheBeatGoesOnSpecialEvent", "camel": "notesAndObservationsRegardingAppleSAnnouncementsFromTheBeatGoesOnSpecialEvent" }, { "input": "a title and/or string", "none": "a title and or string", "snake": "a_title_and_or_string", "param": "a-title-and-or-string", "dot": "a.title.and.or.string", "constant": "A_TITLE_AND_OR_STRING", "pascal": "ATitleAndOrString", "camel": "aTitleAndOrString" }, { "input": "dance with me/let’s face the music and dance", "none": "dance with me let s face the music and dance", "snake": "dance_with_me_let_s_face_the_music_and_dance", "param": "dance-with-me-let-s-face-the-music-and-dance", "dot": "dance.with.me.let.s.face.the.music.and.dance", "constant": "DANCE_WITH_ME_LET_S_FACE_THE_MUSIC_AND_DANCE", "pascal": "DanceWithMeLetSFaceTheMusicAndDance", "camel": "danceWithMeLetSFaceTheMusicAndDance" }, { "input": "34th 3rd 2nd", "none": "34th 3rd 2nd", "snake": "34th_3rd_2nd", "param": "34th-3rd-2nd", "dot": "34th.3rd.2nd", "constant": "34TH_3RD_2ND", "pascal": "34th3rd2nd", "camel": "34th3rd2nd" }, { "input": "Q&A with steve jobs: 'that's what happens in technology'", "none": "q a with steve jobs that s what happens in technology", "snake": "q_a_with_steve_jobs_that_s_what_happens_in_technology", "param": "q-a-with-steve-jobs-that-s-what-happens-in-technology", "dot": "q.a.with.steve.jobs.that.s.what.happens.in.technology", "constant": "Q_A_WITH_STEVE_JOBS_THAT_S_WHAT_HAPPENS_IN_TECHNOLOGY", "pascal": "QAWithSteveJobsThatSWhatHappensInTechnology", "camel": "qAWithSteveJobsThatSWhatHappensInTechnology" }, { "input": "What is AT&T's problem?", "none": "what is at t s problem", "snake": "what_is_at_t_s_problem", "param": "what-is-at-t-s-problem", "dot": "what.is.at.t.s.problem", "constant": "WHAT_IS_AT_T_S_PROBLEM", "pascal": "WhatIsAtTSProblem", "camel": "whatIsAtTSProblem" }, { "input": "Apple deal with AT&T falls through", "none": "apple deal with at t falls through", "snake": "apple_deal_with_at_t_falls_through", "param": "apple-deal-with-at-t-falls-through", "dot": "apple.deal.with.at.t.falls.through", "constant": "APPLE_DEAL_WITH_AT_T_FALLS_THROUGH", "pascal": "AppleDealWithAtTFallsThrough", "camel": "appleDealWithAtTFallsThrough" }, { "input": "The SEC's Apple probe: what you need to know", "none": "the sec s apple probe what you need to know", "snake": "the_sec_s_apple_probe_what_you_need_to_know", "param": "the-sec-s-apple-probe-what-you-need-to-know", "dot": "the.sec.s.apple.probe.what.you.need.to.know", "constant": "THE_SEC_S_APPLE_PROBE_WHAT_YOU_NEED_TO_KNOW", "pascal": "TheSecSAppleProbeWhatYouNeedToKnow", "camel": "theSecSAppleProbeWhatYouNeedToKnow" }, { "input": "The SEC's Apple probe: what you need to know", "none": "the sec s apple probe what you need to know", "snake": "the_sec_s_apple_probe_what_you_need_to_know", "param": "the-sec-s-apple-probe-what-you-need-to-know", "dot": "the.sec.s.apple.probe.what.you.need.to.know", "constant": "THE_SEC_S_APPLE_PROBE_WHAT_YOU_NEED_TO_KNOW", "pascal": "TheSecSAppleProbeWhatYouNeedToKnow", "camel": "theSecSAppleProbeWhatYouNeedToKnow" }, { "input": "'by the Way, small word at the start but within quotes.'", "none": "by the way small word at the start but within quotes", "snake": "by_the_way_small_word_at_the_start_but_within_quotes", "param": "by-the-way-small-word-at-the-start-but-within-quotes", "dot": "by.the.way.small.word.at.the.start.but.within.quotes", "constant": "BY_THE_WAY_SMALL_WORD_AT_THE_START_BUT_WITHIN_QUOTES", "pascal": "ByTheWaySmallWordAtTheStartButWithinQuotes", "camel": "byTheWaySmallWordAtTheStartButWithinQuotes" }, { "input": "Small word at end is nothing to be afraid of", "none": "small word at end is nothing to be afraid of", "snake": "small_word_at_end_is_nothing_to_be_afraid_of", "param": "small-word-at-end-is-nothing-to-be-afraid-of", "dot": "small.word.at.end.is.nothing.to.be.afraid.of", "constant": "SMALL_WORD_AT_END_IS_NOTHING_TO_BE_AFRAID_OF", "pascal": "SmallWordAtEndIsNothingToBeAfraidOf", "camel": "smallWordAtEndIsNothingToBeAfraidOf" }, { "input": "Starting Sub-Phrase With a Small Word: a Trick, Perhaps?", "none": "starting sub phrase with a small word a trick perhaps", "snake": "starting_sub_phrase_with_a_small_word_a_trick_perhaps", "param": "starting-sub-phrase-with-a-small-word-a-trick-perhaps", "dot": "starting.sub.phrase.with.a.small.word.a.trick.perhaps", "constant": "STARTING_SUB_PHRASE_WITH_A_SMALL_WORD_A_TRICK_PERHAPS", "pascal": "StartingSubPhraseWithASmallWordATrickPerhaps", "camel": "startingSubPhraseWithASmallWordATrickPerhaps" }, { "input": "Sub-Phrase With a Small Word in Quotes: 'a Trick, Perhaps?'", "none": "sub phrase with a small word in quotes a trick perhaps", "snake": "sub_phrase_with_a_small_word_in_quotes_a_trick_perhaps", "param": "sub-phrase-with-a-small-word-in-quotes-a-trick-perhaps", "dot": "sub.phrase.with.a.small.word.in.quotes.a.trick.perhaps", "constant": "SUB_PHRASE_WITH_A_SMALL_WORD_IN_QUOTES_A_TRICK_PERHAPS", "pascal": "SubPhraseWithASmallWordInQuotesATrickPerhaps", "camel": "subPhraseWithASmallWordInQuotesATrickPerhaps" }, { "input": "Starting a Hyphen Delimited Sub-Phrase With a Small Word - a Trick, Perhaps?", "none": "starting a hyphen delimited sub phrase with a small word a trick perhaps", "snake": "starting_a_hyphen_delimited_sub_phrase_with_a_small_word_a_trick_perhaps", "param": "starting-a-hyphen-delimited-sub-phrase-with-a-small-word-a-trick-perhaps", "dot": "starting.a.hyphen.delimited.sub.phrase.with.a.small.word.a.trick.perhaps", "constant": "STARTING_A_HYPHEN_DELIMITED_SUB_PHRASE_WITH_A_SMALL_WORD_A_TRICK_PERHAPS", "pascal": "StartingAHyphenDelimitedSubPhraseWithASmallWordATrickPerhaps", "camel": "startingAHyphenDelimitedSubPhraseWithASmallWordATrickPerhaps" }, { "input": "Hyphen Delimited Sub-Phrase With a Small Word in Quotes - 'a Trick, Perhaps?'", "none": "hyphen delimited sub phrase with a small word in quotes a trick perhaps", "snake": "hyphen_delimited_sub_phrase_with_a_small_word_in_quotes_a_trick_perhaps", "param": "hyphen-delimited-sub-phrase-with-a-small-word-in-quotes-a-trick-perhaps", "dot": "hyphen.delimited.sub.phrase.with.a.small.word.in.quotes.a.trick.perhaps", "constant": "HYPHEN_DELIMITED_SUB_PHRASE_WITH_A_SMALL_WORD_IN_QUOTES_A_TRICK_PERHAPS", "pascal": "HyphenDelimitedSubPhraseWithASmallWordInQuotesATrickPerhaps", "camel": "hyphenDelimitedSubPhraseWithASmallWordInQuotesATrickPerhaps" }, { "input": "Snakes on a Plane - The TV Edit - The Famous Line", "none": "snakes on a plane the tv edit the famous line", "snake": "snakes_on_a_plane_the_tv_edit_the_famous_line", "param": "snakes-on-a-plane-the-tv-edit-the-famous-line", "dot": "snakes.on.a.plane.the.tv.edit.the.famous.line", "constant": "SNAKES_ON_A_PLANE_THE_TV_EDIT_THE_FAMOUS_LINE", "pascal": "SnakesOnAPlaneTheTvEditTheFamousLine", "camel": "snakesOnAPlaneTheTvEditTheFamousLine" }, { "input": "Starting an Em Dash Delimited Sub-Phrase With a Small Word — a Trick, Perhaps?", "none": "starting an em dash delimited sub phrase with a small word a trick perhaps", "snake": "starting_an_em_dash_delimited_sub_phrase_with_a_small_word_a_trick_perhaps", "param": "starting-an-em-dash-delimited-sub-phrase-with-a-small-word-a-trick-perhaps", "dot": "starting.an.em.dash.delimited.sub.phrase.with.a.small.word.a.trick.perhaps", "constant": "STARTING_AN_EM_DASH_DELIMITED_SUB_PHRASE_WITH_A_SMALL_WORD_A_TRICK_PERHAPS", "pascal": "StartingAnEmDashDelimitedSubPhraseWithASmallWordATrickPerhaps", "camel": "startingAnEmDashDelimitedSubPhraseWithASmallWordATrickPerhaps" }, { "input": "Em Dash Delimited Sub-Phrase With a Small Word in Quotes — 'a Trick, Perhaps?'", "none": "em dash delimited sub phrase with a small word in quotes a trick perhaps", "snake": "em_dash_delimited_sub_phrase_with_a_small_word_in_quotes_a_trick_perhaps", "param": "em-dash-delimited-sub-phrase-with-a-small-word-in-quotes-a-trick-perhaps", "dot": "em.dash.delimited.sub.phrase.with.a.small.word.in.quotes.a.trick.perhaps", "constant": "EM_DASH_DELIMITED_SUB_PHRASE_WITH_A_SMALL_WORD_IN_QUOTES_A_TRICK_PERHAPS", "pascal": "EmDashDelimitedSubPhraseWithASmallWordInQuotesATrickPerhaps", "camel": "emDashDelimitedSubPhraseWithASmallWordInQuotesATrickPerhaps" }, { "input": "Snakes on a Plane — The TV Edit — The Famous Line", "none": "snakes on a plane the tv edit the famous line", "snake": "snakes_on_a_plane_the_tv_edit_the_famous_line", "param": "snakes-on-a-plane-the-tv-edit-the-famous-line", "dot": "snakes.on.a.plane.the.tv.edit.the.famous.line", "constant": "SNAKES_ON_A_PLANE_THE_TV_EDIT_THE_FAMOUS_LINE", "pascal": "SnakesOnAPlaneTheTvEditTheFamousLine", "camel": "snakesOnAPlaneTheTvEditTheFamousLine" }, { "input": "\"Nothing to Be Afraid of?\"", "none": "nothing to be afraid of", "snake": "nothing_to_be_afraid_of", "param": "nothing-to-be-afraid-of", "dot": "nothing.to.be.afraid.of", "constant": "NOTHING_TO_BE_AFRAID_OF", "pascal": "NothingToBeAfraidOf", "camel": "nothingToBeAfraidOf" }, { "input": "a thing", "none": "a thing", "snake": "a_thing", "param": "a-thing", "dot": "a.thing", "constant": "A_THING", "pascal": "AThing", "camel": "aThing" }, { "input": "2lmc Spool: 'gruber on OmniFocus and vapo(u)rware'", "none": "2lmc spool gruber on omni focus and vapo u rware", "snake": "2lmc_spool_gruber_on_omni_focus_and_vapo_u_rware", "param": "2lmc-spool-gruber-on-omni-focus-and-vapo-u-rware", "dot": "2lmc.spool.gruber.on.omni.focus.and.vapo.u.rware", "constant": "2LMC_SPOOL_GRUBER_ON_OMNI_FOCUS_AND_VAPO_U_RWARE", "pascal": "2lmcSpoolGruberOnOmniFocusAndVapoURware", "camel": "2lmcSpoolGruberOnOmniFocusAndVapoURware" }, { "input": "reading between the lines of steve jobs’s ‘thoughts on music’", "none": "reading between the lines of steve jobs s thoughts on music", "snake": "reading_between_the_lines_of_steve_jobs_s_thoughts_on_music", "param": "reading-between-the-lines-of-steve-jobs-s-thoughts-on-music", "dot": "reading.between.the.lines.of.steve.jobs.s.thoughts.on.music", "constant": "READING_BETWEEN_THE_LINES_OF_STEVE_JOBS_S_THOUGHTS_ON_MUSIC", "pascal": "ReadingBetweenTheLinesOfSteveJobsSThoughtsOnMusic", "camel": "readingBetweenTheLinesOfSteveJobsSThoughtsOnMusic" }, { "input": "seriously, ‘repair permissions’ is voodoo", "none": "seriously repair permissions is voodoo", "snake": "seriously_repair_permissions_is_voodoo", "param": "seriously-repair-permissions-is-voodoo", "dot": "seriously.repair.permissions.is.voodoo", "constant": "SERIOUSLY_REPAIR_PERMISSIONS_IS_VOODOO", "pascal": "SeriouslyRepairPermissionsIsVoodoo", "camel": "seriouslyRepairPermissionsIsVoodoo" }, { "input": "generalissimo francisco franco: still dead; kieren McCarthy: still a jackass", "none": "generalissimo francisco franco still dead kieren mc carthy still a jackass", "snake": "generalissimo_francisco_franco_still_dead_kieren_mc_carthy_still_a_jackass", "param": "generalissimo-francisco-franco-still-dead-kieren-mc-carthy-still-a-jackass", "dot": "generalissimo.francisco.franco.still.dead.kieren.mc.carthy.still.a.jackass", "constant": "GENERALISSIMO_FRANCISCO_FRANCO_STILL_DEAD_KIEREN_MC_CARTHY_STILL_A_JACKASS", "pascal": "GeneralissimoFranciscoFrancoStillDeadKierenMcCarthyStillAJackass", "camel": "generalissimoFranciscoFrancoStillDeadKierenMcCarthyStillAJackass" }, { "input": "O'Reilly should be untouched", "none": "o reilly should be untouched", "snake": "o_reilly_should_be_untouched", "param": "o-reilly-should-be-untouched", "dot": "o.reilly.should.be.untouched", "constant": "O_REILLY_SHOULD_BE_UNTOUCHED", "pascal": "OReillyShouldBeUntouched", "camel": "oReillyShouldBeUntouched" }, { "input": "Mr McTavish went to MacDonalds", "none": "mr mc tavish went to mac donalds", "snake": "mr_mc_tavish_went_to_mac_donalds", "param": "mr-mc-tavish-went-to-mac-donalds", "dot": "mr.mc.tavish.went.to.mac.donalds", "constant": "MR_MC_TAVISH_WENT_TO_MAC_DONALDS", "pascal": "MrMcTavishWentToMacDonalds", "camel": "mrMcTavishWentToMacDonalds" }, { "input": "this shouldn't\nget mangled", "none": "this shouldn t get mangled", "snake": "this_shouldn_t_get_mangled", "param": "this-shouldn-t-get-mangled", "dot": "this.shouldn.t.get.mangled", "constant": "THIS_SHOULDN_T_GET_MANGLED", "pascal": "ThisShouldnTGetMangled", "camel": "thisShouldnTGetMangled" }, { "input": "mac mc MAC MC machine", "none": "mac mc mac mc machine", "snake": "mac_mc_mac_mc_machine", "param": "mac-mc-mac-mc-machine", "dot": "mac.mc.mac.mc.machine", "constant": "MAC_MC_MAC_MC_MACHINE", "pascal": "MacMcMacMcMachine", "camel": "macMcMacMcMachine" }, { "input": "foo bar 5th st", "none": "foo bar 5th st", "snake": "foo_bar_5th_st", "param": "foo-bar-5th-st", "dot": "foo.bar.5th.st", "constant": "FOO_BAR_5TH_ST", "pascal": "FooBar5thSt", "camel": "fooBar5thSt" }, { "input": "hmm ... this is interesting...", "none": "hmm this is interesting", "snake": "hmm_this_is_interesting", "param": "hmm-this-is-interesting", "dot": "hmm.this.is.interesting", "constant": "HMM_THIS_IS_INTERESTING", "pascal": "HmmThisIsInteresting", "camel": "hmmThisIsInteresting" } ]prose-1.2.1/testdata/golden_rules_en.json000066400000000000000000000214551377030147400205300ustar00rootroot00000000000000[ { "name":"1. Simple period to end sentence", "input":"Hello World. My name is Jonas.", "output":[ "Hello World.", "My name is Jonas." ] }, { "name":"2. Question mark to end sentence", "input":"What is your name? My name is Jonas.", "output":[ "What is your name?", "My name is Jonas." ] }, { "name":"3. Exclamation point to end sentence", "input":"There it is! I found it.", "output":[ "There it is!", "I found it." ] }, { "name":"4. One letter upper case abbreviations", "input":"My name is Jonas E. Smith.", "output":[ "My name is Jonas E. Smith." ] }, { "name":"5. One letter lower case abbreviations", "input":"Please turn to p. 55.", "output":[ "Please turn to p. 55." ] }, { "name":"6. Two letter lower case abbreviations in the middle of a sentence", "input":"Were Jane and co. at the party?", "output":[ "Were Jane and co. at the party?" ] }, { "name":"7. Two letter upper case abbreviations in the middle of a sentence", "input":"They closed the deal with Pitt, Briggs & Co. at noon.", "output":[ "They closed the deal with Pitt, Briggs & Co. at noon." ] }, { "name":"8. Two letter lower case abbreviations at the end of a sentence", "input":"Let's ask Jane and co. They should know.", "output":[ "Let's ask Jane and co.", "They should know." ] }, { "name":"9. Two letter upper case abbreviations at the end of a sentence", "input":"They closed the deal with Pitt, Briggs & Co. It closed yesterday.", "output":[ "They closed the deal with Pitt, Briggs & Co.", "It closed yesterday." ] }, { "name":"10. Two letter (prepositive) abbreviations", "input":"I can see Mt. Fuji from here.", "output":[ "I can see Mt. Fuji from here." ] }, { "name":"11. Two letter (prepositive & postpositive) abbreviations", "input":"St. Michael's Church is on 5th st. near the light.", "output":[ "St. Michael's Church is on 5th st. near the light." ] }, { "name":"12. Possesive two letter abbreviations", "input":"That is JFK Jr.'s book.", "output":[ "That is JFK Jr.'s book." ] }, { "name":"13. Multi-period abbreviations in the middle of a sentence", "input":"I visited the U.S.A. last year.", "output":[ "I visited the U.S.A. last year." ] }, { "name":"14. Multi-period abbreviations at the end of a sentence", "input":"I live in the E.U. How about you?", "output":[ "I live in the E.U.", "How about you?" ] }, { "name":"15. U.S. as sentence boundary", "input":"I live in the U.S. How about you?", "output":[ "I live in the U.S.", "How about you?" ] }, { "name":"16. U.S. as non sentence boundary with next word capitalized", "input":"I work for the U.S. Government in Virginia.", "output":[ "I work for the U.S. Government in Virginia." ] }, { "name":"17. U.S. as non sentence boundary", "input":"I have lived in the U.S. for 20 years.", "output":[ "I have lived in the U.S. for 20 years." ] }, { "name":"19. Number as non sentence boundary", "input":"She has $100.00 in her bag.", "output":[ "She has $100.00 in her bag." ] }, { "name":"20. Number as sentence boundary", "input":"She has $100.00. It is in her bag.", "output":[ "She has $100.00.", "It is in her bag." ] }, { "name":"21. Parenthetical inside sentence", "input":"He teaches science (He previously worked for 5 years as an engineer.) at the local University.", "output":[ "He teaches science (He previously worked for 5 years as an engineer.) at the local University." ] }, { "name":"22. Email addresses", "input":"Her email is Jane.Doe@example.com. I sent her an email.", "output":[ "Her email is Jane.Doe@example.com.", "I sent her an email." ] }, { "name":"23. Web addresses", "input":"The site is: https://www.example.50.com/new-site/awesome_content.html. Please check it out.", "output":[ "The site is: https://www.example.50.com/new-site/awesome_content.html.", "Please check it out." ] }, { "name":"24. Single quotations inside sentence", "input":"She turned to him, 'This is great.' she said.", "output":[ "She turned to him, 'This is great.' she said." ] }, { "name":"25. Double quotations inside sentence", "input":"She turned to him, \"This is great.\" she said.", "output":[ "She turned to him, \"This is great.\" she said." ] }, { "name":"26. Double quotations at the end of a sentence", "input":"She turned to him, \"This is great.\" She held the book out to show him.", "output":[ "She turned to him, \"This is great.\"", "She held the book out to show him." ] }, { "name":"27. Double punctuation (exclamation point)", "input":"Hello!! Long time no see.", "output":[ "Hello!!", "Long time no see." ] }, { "name":"28. Double punctuation (question mark)", "input":"Hello?? Who is there?", "output":[ "Hello??", "Who is there?" ] }, { "name":"29. Double punctuation (exclamation point / question mark)", "input":"Hello!? Is that you?", "output":[ "Hello!?", "Is that you?" ] }, { "name":"30. Double punctuation (question mark / exclamation point)", "input":"Hello?! Is that you?", "output":[ "Hello?!", "Is that you?" ] }, { "name":"40. Errant newlines in the middle of sentences (PDF)", "input":"This is a sentence\ncut off in the middle because pdf.", "output":[ "This is a sentence cut off in the middle because pdf." ] }, { "name":"41. Errant newlines in the middle of sentences", "input":"It was a cold \nnight in the city.", "output":[ "It was a cold night in the city." ] }, { "name":"43. Geo Coordinates", "input":"You can find it at N°. 1026.253.553. That is where the treasure is.", "output":[ "You can find it at N°. 1026.253.553.", "That is where the treasure is." ] }, { "name":"44. Named entities with an exclamation point", "input":"She works at Yahoo! in the accounting department.", "output":[ "She works at Yahoo! in the accounting department." ] }, { "name":"45. I as a sentence boundary and I as an abbreviation", "input":"We make a good team, you and I. Did you see Albert I. Jones yesterday?", "output":[ "We make a good team, you and I.", "Did you see Albert I. Jones yesterday?" ] }, { "name":"46. Ellipsis at end of quotation", "input":"Thoreau argues that by simplifying one’s life, “the laws of the universe will appear less complex. . . .”", "output":[ "Thoreau argues that by simplifying one’s life, “the laws of the universe will appear less complex. . . .”" ] }, { "name":"47. Ellipsis with square brackets", "input":"\"Bohr [...] used the analogy of parallel stairways [...]\" (Smith 55).", "output":[ "\"Bohr [...] used the analogy of parallel stairways [...]\" (Smith 55)." ] }, { "name":"48. Ellipsis as sentence boundary (standard ellipsis rules)", "input":"If words are left off at the end of a sentence, and that is all that is omitted, indicate the omission with ellipsis marks (preceded and followed by a space) and then indicate the end of the sentence with a period . . . . Next sentence.", "output":[ "If words are left off at the end of a sentence, and that is all that is omitted, indicate the omission with ellipsis marks (preceded and followed by a space) and then indicate the end of the sentence with a period . . . .", "Next sentence." ] }, { "name":"49. Ellipsis as sentence boundary (non-standard ellipsis rules)", "input":"I never meant that.... She left the store.", "output":[ "I never meant that....", "She left the store." ] }, { "name":"50. Ellipsis as non sentence boundary", "input":"I wasn’t really ... well, what I mean...see . . . what I'm saying, the thing is . . . I didn’t mean it.", "output":[ "I wasn’t really ... well, what I mean...see . . . what I'm saying, the thing is . . . I didn’t mean it." ] }, { "name":"51. 4-dot ellipsis", "input":"One further habit which was somewhat weakened . . . was that of combining words into self-interpreting compounds. . . . The practice was not abandoned. . . .", "output":[ "One further habit which was somewhat weakened . . . was that of combining words into self-interpreting compounds.", ". . . The practice was not abandoned. . . ." ] } ] prose-1.2.1/testdata/golden_rules_es.json000066400000000000000000000241531377030147400205330ustar00rootroot00000000000000[ { "name": "Question mark to end sentence #001", "input": "¿Cómo está hoy? Espero que muy bien.", "output": [ "¿Cómo está hoy?", "Espero que muy bien." ] }, { "name": "Exclamation point to end sentence #002", "input": "¡Hola señorita! Espero que muy bien.", "output": [ "¡Hola señorita!", "Espero que muy bien." ] }, { "name": "Abbreviations #003", "input": "Hola Srta. Ledesma. Buenos días, soy el Lic. Naser Pastoriza, y él es mi padre, el Dr. Naser.", "output": [ "Hola Srta. Ledesma.", "Buenos días, soy el Lic. Naser Pastoriza, y él es mi padre, el Dr. Naser." ] }, { "name": "Numbers #004", "input": "¡La casa cuesta $170.500.000,00! ¡Muy costosa! Se prevé una disminución del 12.5% para el próximo año.", "output": [ "¡La casa cuesta $170.500.000,00!", "¡Muy costosa!", "Se prevé una disminución del 12.5% para el próximo año." ] }, { "name": "Quotations #005", "input": "«Ninguna mente extraordinaria está exenta de un toque de demencia.», dijo Aristóteles.", "output": [ "«Ninguna mente extraordinaria está exenta de un toque de demencia.», dijo Aristóteles." ] }, { "name": "correctly segments text #001", "input": "«Ninguna mente extraordinaria está exenta de un toque de demencia», dijo Aristóteles. Pablo, ¿adónde vas? ¡¿Qué viste?!", "output": [ "«Ninguna mente extraordinaria está exenta de un toque de demencia», dijo Aristóteles.", "Pablo, ¿adónde vas?", "¡¿Qué viste?!" ] }, { "name": "correctly segments text #002", "input": "Admón. es administración o me equivoco.", "output": [ "Admón. es administración o me equivoco." ] }, { "name": "correctly segments text #005", "input": "¡Hola Srta. Ledesma! ¿Cómo está hoy? Espero que muy bien.", "output": [ "¡Hola Srta. Ledesma!", "¿Cómo está hoy?", "Espero que muy bien." ] }, { "name": "correctly segments text #006", "input": "Buenos días, soy el Lic. Naser Pastoriza, y él es mi padre, el Dr. Naser.", "output": [ "Buenos días, soy el Lic. Naser Pastoriza, y él es mi padre, el Dr. Naser." ] }, { "name": "correctly segments text #007", "input": "He apuntado una cita para la siguiente fecha: Mar. 23 de Nov. de 2014. Gracias.", "output": [ "He apuntado una cita para la siguiente fecha: Mar. 23 de Nov. de 2014.", "Gracias." ] }, { "name": "correctly segments text #008", "input": "Núm. de tel: 351.123.465.4. Envíe mis saludos a la Sra. Rescia.", "output": [ "Núm. de tel: 351.123.465.4.", "Envíe mis saludos a la Sra. Rescia." ] }, { "name": "correctly segments text #009", "input": "Cero en la escala Celsius o de grados centígrados (0 °C) se define como el equivalente a 273.15 K, con una diferencia de temperatura de 1 °C equivalente a una diferencia de 1 Kelvin. Esto significa que 100 °C, definido como el punto de ebullición del agua, se define como el equivalente a 373.15 K.", "output": [ "Cero en la escala Celsius o de grados centígrados (0 °C) se define como el equivalente a 273.15 K, con una diferencia de temperatura de 1 °C equivalente a una diferencia de 1 Kelvin.", "Esto significa que 100 °C, definido como el punto de ebullición del agua, se define como el equivalente a 373.15 K." ] }, { "name": "correctly segments text #010", "input": "Durante la primera misión del Discovery (30 Ago. 1984 15:08.10) tuvo lugar el lanzamiento de dos satélites de comunicación, el nombre de esta misión fue STS-41-D.", "output": [ "Durante la primera misión del Discovery (30 Ago. 1984 15:08.10) tuvo lugar el lanzamiento de dos satélites de comunicación, el nombre de esta misión fue STS-41-D." ] }, { "name": "correctly segments text #011", "input": "Frase del gran José Hernández: \"Aquí me pongo a cantar / al compás de la vigüela, / que el hombre que lo desvela / una pena estrordinaria, / como la ave solitaria / con el cantar se consuela. / [...] \".", "output": [ "Frase del gran José Hernández: \"Aquí me pongo a cantar / al compás de la vigüela, / que el hombre que lo desvela / una pena estrordinaria, / como la ave solitaria / con el cantar se consuela. / [...] \"." ] }, { "name": "correctly segments text #012", "input": "Citando a Criss Jami «Prefiero ser un artista a ser un líder, irónicamente, un líder tiene que seguir las reglas.», lo cual parece muy acertado.", "output": [ "Citando a Criss Jami «Prefiero ser un artista a ser un líder, irónicamente, un líder tiene que seguir las reglas.», lo cual parece muy acertado." ] }, { "name": "correctly segments text #013", "input": "Cuando llegué, le estaba dando ejercicios a los niños, uno de los cuales era \"3 + (14/7).x = 5\". ¿Qué te parece?", "output": [ "Cuando llegué, le estaba dando ejercicios a los niños, uno de los cuales era \"3 + (14/7).x = 5\".", "¿Qué te parece?" ] }, { "name": "correctly segments text #014", "input": "Se le pidió a los niños que leyeran los párrf. 5 y 6 del art. 4 de la constitución de los EE. UU..", "output": [ "Se le pidió a los niños que leyeran los párrf. 5 y 6 del art. 4 de la constitución de los EE. UU.." ] }, { "name": "correctly segments text #015", "input": "Una de las preguntas realizadas en la evaluación del día Lun. 15 de Mar. fue la siguiente: \"Alumnos, ¿cuál es el resultado de la operación 1.1 + 4/5?\". Disponían de 1 min. para responder esa pregunta.", "output": [ "Una de las preguntas realizadas en la evaluación del día Lun. 15 de Mar. fue la siguiente: \"Alumnos, ¿cuál es el resultado de la operación 1.1 + 4/5?\".", "Disponían de 1 min. para responder esa pregunta." ] }, { "name": "correctly segments text #016", "input": "La temperatura del motor alcanzó los 120.5°C. Afortunadamente, pudo llegar al final de carrera.", "output": [ "La temperatura del motor alcanzó los 120.5°C.", "Afortunadamente, pudo llegar al final de carrera." ] }, { "name": "correctly segments text #017", "input": "Hamilton ganó el último gran premio de Fórmula 1, luego de 1:39:02.619 Hs. de carrera, segundo resultó Massa, a una diferencia de 2.5 segundos. De esta manera se consagró ¡Campeón mundial!", "output": [ "Hamilton ganó el último gran premio de Fórmula 1, luego de 1:39:02.619 Hs. de carrera, segundo resultó Massa, a una diferencia de 2.5 segundos.", "De esta manera se consagró ¡Campeón mundial!" ] }, { "name": "correctly segments text #018", "input": "La habitación tiene 20.55m². El living tiene 50.0m².", "output": [ "La habitación tiene 20.55m².", "El living tiene 50.0m²." ] }, { "name": "correctly segments text #019", "input": "1°C corresponde a 33.8°F. ¿A cuánto corresponde 35°C?", "output": [ "1°C corresponde a 33.8°F.", "¿A cuánto corresponde 35°C?" ] }, { "name": "correctly segments text #020", "input": "Hamilton ganó el último gran premio de Fórmula 1, luego de 1:39:02.619 Hs. de carrera, segundo resultó Massa, a una diferencia de 2.5 segundos. De esta manera se consagró ¡Campeón mundial!", "output": [ "Hamilton ganó el último gran premio de Fórmula 1, luego de 1:39:02.619 Hs. de carrera, segundo resultó Massa, a una diferencia de 2.5 segundos.", "De esta manera se consagró ¡Campeón mundial!" ] }, { "name": "correctly segments text #021", "input": "¡La casa cuesta $170.500.000,00! ¡Muy costosa! Se prevé una disminución del 12.5% para el próximo año.", "output": [ "¡La casa cuesta $170.500.000,00!", "¡Muy costosa!", "Se prevé una disminución del 12.5% para el próximo año." ] }, { "name": "correctly segments text #022", "input": "El corredor No. 103 arrivó 4°.", "output": [ "El corredor No. 103 arrivó 4°." ] }, { "name": "correctly segments text #023", "input": "Hoy es 27/04/2014, y es mi cumpleaños. ¿Cuándo es el tuyo?", "output": [ "Hoy es 27/04/2014, y es mi cumpleaños.", "¿Cuándo es el tuyo?" ] }, { "name": "correctly segments text #025", "input": "1 + 1 es 2. 2 + 2 es 4. El auto es de color rojo.", "output": [ "1 + 1 es 2.", "2 + 2 es 4.", "El auto es de color rojo." ] }, { "name": "correctly segments text #026", "input": "La máquina viajaba a 100 km/h. ¿En cuánto tiempo recorrió los 153 Km.?", "output": [ "La máquina viajaba a 100 km/h.", "¿En cuánto tiempo recorrió los 153 Km.?" ] }, { "name": "correctly segments text #028", "input": "N°. 1026.253.553", "output": [ "N°. 1026.253.553" ] }, { "name": "correctly segments text #028", "input": "Explora oportunidades de carrera en el área de Salud en el Hospital de Northern en Mt. Kisco.", "output": [ "Explora oportunidades de carrera en el área de Salud en el Hospital de Northern en Mt. Kisco." ] } ] prose-1.2.1/testdata/golden_rules_fr.json000066400000000000000000000052011377030147400205240ustar00rootroot00000000000000[ { "name": "correctly segments text #001", "input": "Après avoir été l'un des acteurs du projet génome humain, le Genoscope met aujourd'hui le cap vers la génomique environnementale. L'exploitation des données de séquences, prolongée par l'identification expérimentale des fonctions biologiques, notamment dans le domaine de la biocatalyse, ouvrent des perspectives de développements en biotechnologie industrielle.", "output": [ "Après avoir été l'un des acteurs du projet génome humain, le Genoscope met aujourd'hui le cap vers la génomique environnementale.", "L'exploitation des données de séquences, prolongée par l'identification expérimentale des fonctions biologiques, notamment dans le domaine de la biocatalyse, ouvrent des perspectives de développements en biotechnologie industrielle." ] }, { "name": "correctly segments text #002", "input": "\"Airbus livrera comme prévu 30 appareils 380 cette année avec en ligne de mire l'objectif d'équilibre financier du programme en 2015\", a-t-il ajouté.", "output": [ "\"Airbus livrera comme prévu 30 appareils 380 cette année avec en ligne de mire l'objectif d'équilibre financier du programme en 2015\", a-t-il ajouté." ] }, { "name": "correctly segments text #003", "input": "À 11 heures ce matin, la direction ne décomptait que douze grévistes en tout sur la France : ce sont ceux du site de Saran (Loiret), dont l’effectif est de 809 salariés, dont la moitié d’intérimaires. Elle assure que ce mouvement « n’aura aucun impact sur les livraisons ».", "output": [ "À 11 heures ce matin, la direction ne décomptait que douze grévistes en tout sur la France : ce sont ceux du site de Saran (Loiret), dont l’effectif est de 809 salariés, dont la moitié d’intérimaires.", "Elle assure que ce mouvement « n’aura aucun impact sur les livraisons »." ] }, { "name": "correctly segments text #004", "input": "Ce modèle permet d’afficher le texte « LL.AA.II.RR. » pour l’abréviation de « Leurs Altesses impériales et royales » avec son infobulle.", "output": [ "Ce modèle permet d’afficher le texte « LL.AA.II.RR. » pour l’abréviation de « Leurs Altesses impériales et royales » avec son infobulle." ] }, { "name": "correctly segments text #005", "input": "Les derniers ouvrages de Intercept Ltd. sont ici.", "output": [ "Les derniers ouvrages de Intercept Ltd. sont ici." ] } ] prose-1.2.1/testdata/sherlock.txt000066400000000000000000021603711377030147400170470ustar00rootroot00000000000000Project Gutenberg's The Adventures of Sherlock Holmes, by Arthur Conan Doyle This eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever. You may copy it, give it away or re-use it under the terms of the Project Gutenberg License included with this eBook or online at www.gutenberg.net Title: The Adventures of Sherlock Holmes Author: Arthur Conan Doyle Posting Date: April 18, 2011 [EBook #1661] First Posted: November 29, 2002 Language: English *** START OF THIS PROJECT GUTENBERG EBOOK THE ADVENTURES OF SHERLOCK HOLMES *** Produced by an anonymous Project Gutenberg volunteer and Jose Menendez THE ADVENTURES OF SHERLOCK HOLMES by SIR ARTHUR CONAN DOYLE I. A Scandal in Bohemia II. The Red-headed League III. A Case of Identity IV. The Boscombe Valley Mystery V. The Five Orange Pips VI. The Man with the Twisted Lip VII. The Adventure of the Blue Carbuncle VIII. The Adventure of the Speckled Band IX. The Adventure of the Engineer's Thumb X. The Adventure of the Noble Bachelor XI. The Adventure of the Beryl Coronet XII. The Adventure of the Copper Beeches ADVENTURE I. A SCANDAL IN BOHEMIA I. To Sherlock Holmes she is always THE woman. I have seldom heard him mention her under any other name. In his eyes she eclipses and predominates the whole of her sex. It was not that he felt any emotion akin to love for Irene Adler. All emotions, and that one particularly, were abhorrent to his cold, precise but admirably balanced mind. He was, I take it, the most perfect reasoning and observing machine that the world has seen, but as a lover he would have placed himself in a false position. He never spoke of the softer passions, save with a gibe and a sneer. They were admirable things for the observer--excellent for drawing the veil from men's motives and actions. But for the trained reasoner to admit such intrusions into his own delicate and finely adjusted temperament was to introduce a distracting factor which might throw a doubt upon all his mental results. Grit in a sensitive instrument, or a crack in one of his own high-power lenses, would not be more disturbing than a strong emotion in a nature such as his. And yet there was but one woman to him, and that woman was the late Irene Adler, of dubious and questionable memory. I had seen little of Holmes lately. My marriage had drifted us away from each other. My own complete happiness, and the home-centred interests which rise up around the man who first finds himself master of his own establishment, were sufficient to absorb all my attention, while Holmes, who loathed every form of society with his whole Bohemian soul, remained in our lodgings in Baker Street, buried among his old books, and alternating from week to week between cocaine and ambition, the drowsiness of the drug, and the fierce energy of his own keen nature. He was still, as ever, deeply attracted by the study of crime, and occupied his immense faculties and extraordinary powers of observation in following out those clues, and clearing up those mysteries which had been abandoned as hopeless by the official police. From time to time I heard some vague account of his doings: of his summons to Odessa in the case of the Trepoff murder, of his clearing up of the singular tragedy of the Atkinson brothers at Trincomalee, and finally of the mission which he had accomplished so delicately and successfully for the reigning family of Holland. Beyond these signs of his activity, however, which I merely shared with all the readers of the daily press, I knew little of my former friend and companion. One night--it was on the twentieth of March, 1888--I was returning from a journey to a patient (for I had now returned to civil practice), when my way led me through Baker Street. As I passed the well-remembered door, which must always be associated in my mind with my wooing, and with the dark incidents of the Study in Scarlet, I was seized with a keen desire to see Holmes again, and to know how he was employing his extraordinary powers. His rooms were brilliantly lit, and, even as I looked up, I saw his tall, spare figure pass twice in a dark silhouette against the blind. He was pacing the room swiftly, eagerly, with his head sunk upon his chest and his hands clasped behind him. To me, who knew his every mood and habit, his attitude and manner told their own story. He was at work again. He had risen out of his drug-created dreams and was hot upon the scent of some new problem. I rang the bell and was shown up to the chamber which had formerly been in part my own. His manner was not effusive. It seldom was; but he was glad, I think, to see me. With hardly a word spoken, but with a kindly eye, he waved me to an armchair, threw across his case of cigars, and indicated a spirit case and a gasogene in the corner. Then he stood before the fire and looked me over in his singular introspective fashion. "Wedlock suits you," he remarked. "I think, Watson, that you have put on seven and a half pounds since I saw you." "Seven!" I answered. "Indeed, I should have thought a little more. Just a trifle more, I fancy, Watson. And in practice again, I observe. You did not tell me that you intended to go into harness." "Then, how do you know?" "I see it, I deduce it. How do I know that you have been getting yourself very wet lately, and that you have a most clumsy and careless servant girl?" "My dear Holmes," said I, "this is too much. You would certainly have been burned, had you lived a few centuries ago. It is true that I had a country walk on Thursday and came home in a dreadful mess, but as I have changed my clothes I can't imagine how you deduce it. As to Mary Jane, she is incorrigible, and my wife has given her notice, but there, again, I fail to see how you work it out." He chuckled to himself and rubbed his long, nervous hands together. "It is simplicity itself," said he; "my eyes tell me that on the inside of your left shoe, just where the firelight strikes it, the leather is scored by six almost parallel cuts. Obviously they have been caused by someone who has very carelessly scraped round the edges of the sole in order to remove crusted mud from it. Hence, you see, my double deduction that you had been out in vile weather, and that you had a particularly malignant boot-slitting specimen of the London slavey. As to your practice, if a gentleman walks into my rooms smelling of iodoform, with a black mark of nitrate of silver upon his right forefinger, and a bulge on the right side of his top-hat to show where he has secreted his stethoscope, I must be dull, indeed, if I do not pronounce him to be an active member of the medical profession." I could not help laughing at the ease with which he explained his process of deduction. "When I hear you give your reasons," I remarked, "the thing always appears to me to be so ridiculously simple that I could easily do it myself, though at each successive instance of your reasoning I am baffled until you explain your process. And yet I believe that my eyes are as good as yours." "Quite so," he answered, lighting a cigarette, and throwing himself down into an armchair. "You see, but you do not observe. The distinction is clear. For example, you have frequently seen the steps which lead up from the hall to this room." "Frequently." "How often?" "Well, some hundreds of times." "Then how many are there?" "How many? I don't know." "Quite so! You have not observed. And yet you have seen. That is just my point. Now, I know that there are seventeen steps, because I have both seen and observed. By-the-way, since you are interested in these little problems, and since you are good enough to chronicle one or two of my trifling experiences, you may be interested in this." He threw over a sheet of thick, pink-tinted note-paper which had been lying open upon the table. "It came by the last post," said he. "Read it aloud." The note was undated, and without either signature or address. "There will call upon you to-night, at a quarter to eight o'clock," it said, "a gentleman who desires to consult you upon a matter of the very deepest moment. Your recent services to one of the royal houses of Europe have shown that you are one who may safely be trusted with matters which are of an importance which can hardly be exaggerated. This account of you we have from all quarters received. Be in your chamber then at that hour, and do not take it amiss if your visitor wear a mask." "This is indeed a mystery," I remarked. "What do you imagine that it means?" "I have no data yet. It is a capital mistake to theorize before one has data. Insensibly one begins to twist facts to suit theories, instead of theories to suit facts. But the note itself. What do you deduce from it?" I carefully examined the writing, and the paper upon which it was written. "The man who wrote it was presumably well to do," I remarked, endeavouring to imitate my companion's processes. "Such paper could not be bought under half a crown a packet. It is peculiarly strong and stiff." "Peculiar--that is the very word," said Holmes. "It is not an English paper at all. Hold it up to the light." I did so, and saw a large "E" with a small "g," a "P," and a large "G" with a small "t" woven into the texture of the paper. "What do you make of that?" asked Holmes. "The name of the maker, no doubt; or his monogram, rather." "Not at all. The 'G' with the small 't' stands for 'Gesellschaft,' which is the German for 'Company.' It is a customary contraction like our 'Co.' 'P,' of course, stands for 'Papier.' Now for the 'Eg.' Let us glance at our Continental Gazetteer." He took down a heavy brown volume from his shelves. "Eglow, Eglonitz--here we are, Egria. It is in a German-speaking country--in Bohemia, not far from Carlsbad. 'Remarkable as being the scene of the death of Wallenstein, and for its numerous glass-factories and paper-mills.' Ha, ha, my boy, what do you make of that?" His eyes sparkled, and he sent up a great blue triumphant cloud from his cigarette. "The paper was made in Bohemia," I said. "Precisely. And the man who wrote the note is a German. Do you note the peculiar construction of the sentence--'This account of you we have from all quarters received.' A Frenchman or Russian could not have written that. It is the German who is so uncourteous to his verbs. It only remains, therefore, to discover what is wanted by this German who writes upon Bohemian paper and prefers wearing a mask to showing his face. And here he comes, if I am not mistaken, to resolve all our doubts." As he spoke there was the sharp sound of horses' hoofs and grating wheels against the curb, followed by a sharp pull at the bell. Holmes whistled. "A pair, by the sound," said he. "Yes," he continued, glancing out of the window. "A nice little brougham and a pair of beauties. A hundred and fifty guineas apiece. There's money in this case, Watson, if there is nothing else." "I think that I had better go, Holmes." "Not a bit, Doctor. Stay where you are. I am lost without my Boswell. And this promises to be interesting. It would be a pity to miss it." "But your client--" "Never mind him. I may want your help, and so may he. Here he comes. Sit down in that armchair, Doctor, and give us your best attention." A slow and heavy step, which had been heard upon the stairs and in the passage, paused immediately outside the door. Then there was a loud and authoritative tap. "Come in!" said Holmes. A man entered who could hardly have been less than six feet six inches in height, with the chest and limbs of a Hercules. His dress was rich with a richness which would, in England, be looked upon as akin to bad taste. Heavy bands of astrakhan were slashed across the sleeves and fronts of his double-breasted coat, while the deep blue cloak which was thrown over his shoulders was lined with flame-coloured silk and secured at the neck with a brooch which consisted of a single flaming beryl. Boots which extended halfway up his calves, and which were trimmed at the tops with rich brown fur, completed the impression of barbaric opulence which was suggested by his whole appearance. He carried a broad-brimmed hat in his hand, while he wore across the upper part of his face, extending down past the cheekbones, a black vizard mask, which he had apparently adjusted that very moment, for his hand was still raised to it as he entered. From the lower part of the face he appeared to be a man of strong character, with a thick, hanging lip, and a long, straight chin suggestive of resolution pushed to the length of obstinacy. "You had my note?" he asked with a deep harsh voice and a strongly marked German accent. "I told you that I would call." He looked from one to the other of us, as if uncertain which to address. "Pray take a seat," said Holmes. "This is my friend and colleague, Dr. Watson, who is occasionally good enough to help me in my cases. Whom have I the honour to address?" "You may address me as the Count Von Kramm, a Bohemian nobleman. I understand that this gentleman, your friend, is a man of honour and discretion, whom I may trust with a matter of the most extreme importance. If not, I should much prefer to communicate with you alone." I rose to go, but Holmes caught me by the wrist and pushed me back into my chair. "It is both, or none," said he. "You may say before this gentleman anything which you may say to me." The Count shrugged his broad shoulders. "Then I must begin," said he, "by binding you both to absolute secrecy for two years; at the end of that time the matter will be of no importance. At present it is not too much to say that it is of such weight it may have an influence upon European history." "I promise," said Holmes. "And I." "You will excuse this mask," continued our strange visitor. "The august person who employs me wishes his agent to be unknown to you, and I may confess at once that the title by which I have just called myself is not exactly my own." "I was aware of it," said Holmes dryly. "The circumstances are of great delicacy, and every precaution has to be taken to quench what might grow to be an immense scandal and seriously compromise one of the reigning families of Europe. To speak plainly, the matter implicates the great House of Ormstein, hereditary kings of Bohemia." "I was also aware of that," murmured Holmes, settling himself down in his armchair and closing his eyes. Our visitor glanced with some apparent surprise at the languid, lounging figure of the man who had been no doubt depicted to him as the most incisive reasoner and most energetic agent in Europe. Holmes slowly reopened his eyes and looked impatiently at his gigantic client. "If your Majesty would condescend to state your case," he remarked, "I should be better able to advise you." The man sprang from his chair and paced up and down the room in uncontrollable agitation. Then, with a gesture of desperation, he tore the mask from his face and hurled it upon the ground. "You are right," he cried; "I am the King. Why should I attempt to conceal it?" "Why, indeed?" murmured Holmes. "Your Majesty had not spoken before I was aware that I was addressing Wilhelm Gottsreich Sigismond von Ormstein, Grand Duke of Cassel-Felstein, and hereditary King of Bohemia." "But you can understand," said our strange visitor, sitting down once more and passing his hand over his high white forehead, "you can understand that I am not accustomed to doing such business in my own person. Yet the matter was so delicate that I could not confide it to an agent without putting myself in his power. I have come incognito from Prague for the purpose of consulting you." "Then, pray consult," said Holmes, shutting his eyes once more. "The facts are briefly these: Some five years ago, during a lengthy visit to Warsaw, I made the acquaintance of the well-known adventuress, Irene Adler. The name is no doubt familiar to you." "Kindly look her up in my index, Doctor," murmured Holmes without opening his eyes. For many years he had adopted a system of docketing all paragraphs concerning men and things, so that it was difficult to name a subject or a person on which he could not at once furnish information. In this case I found her biography sandwiched in between that of a Hebrew rabbi and that of a staff-commander who had written a monograph upon the deep-sea fishes. "Let me see!" said Holmes. "Hum! Born in New Jersey in the year 1858. Contralto--hum! La Scala, hum! Prima donna Imperial Opera of Warsaw--yes! Retired from operatic stage--ha! Living in London--quite so! Your Majesty, as I understand, became entangled with this young person, wrote her some compromising letters, and is now desirous of getting those letters back." "Precisely so. But how--" "Was there a secret marriage?" "None." "No legal papers or certificates?" "None." "Then I fail to follow your Majesty. If this young person should produce her letters for blackmailing or other purposes, how is she to prove their authenticity?" "There is the writing." "Pooh, pooh! Forgery." "My private note-paper." "Stolen." "My own seal." "Imitated." "My photograph." "Bought." "We were both in the photograph." "Oh, dear! That is very bad! Your Majesty has indeed committed an indiscretion." "I was mad--insane." "You have compromised yourself seriously." "I was only Crown Prince then. I was young. I am but thirty now." "It must be recovered." "We have tried and failed." "Your Majesty must pay. It must be bought." "She will not sell." "Stolen, then." "Five attempts have been made. Twice burglars in my pay ransacked her house. Once we diverted her luggage when she travelled. Twice she has been waylaid. There has been no result." "No sign of it?" "Absolutely none." Holmes laughed. "It is quite a pretty little problem," said he. "But a very serious one to me," returned the King reproachfully. "Very, indeed. And what does she propose to do with the photograph?" "To ruin me." "But how?" "I am about to be married." "So I have heard." "To Clotilde Lothman von Saxe-Meningen, second daughter of the King of Scandinavia. You may know the strict principles of her family. She is herself the very soul of delicacy. A shadow of a doubt as to my conduct would bring the matter to an end." "And Irene Adler?" "Threatens to send them the photograph. And she will do it. I know that she will do it. You do not know her, but she has a soul of steel. She has the face of the most beautiful of women, and the mind of the most resolute of men. Rather than I should marry another woman, there are no lengths to which she would not go--none." "You are sure that she has not sent it yet?" "I am sure." "And why?" "Because she has said that she would send it on the day when the betrothal was publicly proclaimed. That will be next Monday." "Oh, then we have three days yet," said Holmes with a yawn. "That is very fortunate, as I have one or two matters of importance to look into just at present. Your Majesty will, of course, stay in London for the present?" "Certainly. You will find me at the Langham under the name of the Count Von Kramm." "Then I shall drop you a line to let you know how we progress." "Pray do so. I shall be all anxiety." "Then, as to money?" "You have carte blanche." "Absolutely?" "I tell you that I would give one of the provinces of my kingdom to have that photograph." "And for present expenses?" The King took a heavy chamois leather bag from under his cloak and laid it on the table. "There are three hundred pounds in gold and seven hundred in notes," he said. Holmes scribbled a receipt upon a sheet of his note-book and handed it to him. "And Mademoiselle's address?" he asked. "Is Briony Lodge, Serpentine Avenue, St. John's Wood." Holmes took a note of it. "One other question," said he. "Was the photograph a cabinet?" "It was." "Then, good-night, your Majesty, and I trust that we shall soon have some good news for you. And good-night, Watson," he added, as the wheels of the royal brougham rolled down the street. "If you will be good enough to call to-morrow afternoon at three o'clock I should like to chat this little matter over with you." II. At three o'clock precisely I was at Baker Street, but Holmes had not yet returned. The landlady informed me that he had left the house shortly after eight o'clock in the morning. I sat down beside the fire, however, with the intention of awaiting him, however long he might be. I was already deeply interested in his inquiry, for, though it was surrounded by none of the grim and strange features which were associated with the two crimes which I have already recorded, still, the nature of the case and the exalted station of his client gave it a character of its own. Indeed, apart from the nature of the investigation which my friend had on hand, there was something in his masterly grasp of a situation, and his keen, incisive reasoning, which made it a pleasure to me to study his system of work, and to follow the quick, subtle methods by which he disentangled the most inextricable mysteries. So accustomed was I to his invariable success that the very possibility of his failing had ceased to enter into my head. It was close upon four before the door opened, and a drunken-looking groom, ill-kempt and side-whiskered, with an inflamed face and disreputable clothes, walked into the room. Accustomed as I was to my friend's amazing powers in the use of disguises, I had to look three times before I was certain that it was indeed he. With a nod he vanished into the bedroom, whence he emerged in five minutes tweed-suited and respectable, as of old. Putting his hands into his pockets, he stretched out his legs in front of the fire and laughed heartily for some minutes. "Well, really!" he cried, and then he choked and laughed again until he was obliged to lie back, limp and helpless, in the chair. "What is it?" "It's quite too funny. I am sure you could never guess how I employed my morning, or what I ended by doing." "I can't imagine. I suppose that you have been watching the habits, and perhaps the house, of Miss Irene Adler." "Quite so; but the sequel was rather unusual. I will tell you, however. I left the house a little after eight o'clock this morning in the character of a groom out of work. There is a wonderful sympathy and freemasonry among horsey men. Be one of them, and you will know all that there is to know. I soon found Briony Lodge. It is a bijou villa, with a garden at the back, but built out in front right up to the road, two stories. Chubb lock to the door. Large sitting-room on the right side, well furnished, with long windows almost to the floor, and those preposterous English window fasteners which a child could open. Behind there was nothing remarkable, save that the passage window could be reached from the top of the coach-house. I walked round it and examined it closely from every point of view, but without noting anything else of interest. "I then lounged down the street and found, as I expected, that there was a mews in a lane which runs down by one wall of the garden. I lent the ostlers a hand in rubbing down their horses, and received in exchange twopence, a glass of half and half, two fills of shag tobacco, and as much information as I could desire about Miss Adler, to say nothing of half a dozen other people in the neighbourhood in whom I was not in the least interested, but whose biographies I was compelled to listen to." "And what of Irene Adler?" I asked. "Oh, she has turned all the men's heads down in that part. She is the daintiest thing under a bonnet on this planet. So say the Serpentine-mews, to a man. She lives quietly, sings at concerts, drives out at five every day, and returns at seven sharp for dinner. Seldom goes out at other times, except when she sings. Has only one male visitor, but a good deal of him. He is dark, handsome, and dashing, never calls less than once a day, and often twice. He is a Mr. Godfrey Norton, of the Inner Temple. See the advantages of a cabman as a confidant. They had driven him home a dozen times from Serpentine-mews, and knew all about him. When I had listened to all they had to tell, I began to walk up and down near Briony Lodge once more, and to think over my plan of campaign. "This Godfrey Norton was evidently an important factor in the matter. He was a lawyer. That sounded ominous. What was the relation between them, and what the object of his repeated visits? Was she his client, his friend, or his mistress? If the former, she had probably transferred the photograph to his keeping. If the latter, it was less likely. On the issue of this question depended whether I should continue my work at Briony Lodge, or turn my attention to the gentleman's chambers in the Temple. It was a delicate point, and it widened the field of my inquiry. I fear that I bore you with these details, but I have to let you see my little difficulties, if you are to understand the situation." "I am following you closely," I answered. "I was still balancing the matter in my mind when a hansom cab drove up to Briony Lodge, and a gentleman sprang out. He was a remarkably handsome man, dark, aquiline, and moustached--evidently the man of whom I had heard. He appeared to be in a great hurry, shouted to the cabman to wait, and brushed past the maid who opened the door with the air of a man who was thoroughly at home. "He was in the house about half an hour, and I could catch glimpses of him in the windows of the sitting-room, pacing up and down, talking excitedly, and waving his arms. Of her I could see nothing. Presently he emerged, looking even more flurried than before. As he stepped up to the cab, he pulled a gold watch from his pocket and looked at it earnestly, 'Drive like the devil,' he shouted, 'first to Gross & Hankey's in Regent Street, and then to the Church of St. Monica in the Edgeware Road. Half a guinea if you do it in twenty minutes!' "Away they went, and I was just wondering whether I should not do well to follow them when up the lane came a neat little landau, the coachman with his coat only half-buttoned, and his tie under his ear, while all the tags of his harness were sticking out of the buckles. It hadn't pulled up before she shot out of the hall door and into it. I only caught a glimpse of her at the moment, but she was a lovely woman, with a face that a man might die for. "'The Church of St. Monica, John,' she cried, 'and half a sovereign if you reach it in twenty minutes.' "This was quite too good to lose, Watson. I was just balancing whether I should run for it, or whether I should perch behind her landau when a cab came through the street. The driver looked twice at such a shabby fare, but I jumped in before he could object. 'The Church of St. Monica,' said I, 'and half a sovereign if you reach it in twenty minutes.' It was twenty-five minutes to twelve, and of course it was clear enough what was in the wind. "My cabby drove fast. I don't think I ever drove faster, but the others were there before us. The cab and the landau with their steaming horses were in front of the door when I arrived. I paid the man and hurried into the church. There was not a soul there save the two whom I had followed and a surpliced clergyman, who seemed to be expostulating with them. They were all three standing in a knot in front of the altar. I lounged up the side aisle like any other idler who has dropped into a church. Suddenly, to my surprise, the three at the altar faced round to me, and Godfrey Norton came running as hard as he could towards me. "'Thank God,' he cried. 'You'll do. Come! Come!' "'What then?' I asked. "'Come, man, come, only three minutes, or it won't be legal.' "I was half-dragged up to the altar, and before I knew where I was I found myself mumbling responses which were whispered in my ear, and vouching for things of which I knew nothing, and generally assisting in the secure tying up of Irene Adler, spinster, to Godfrey Norton, bachelor. It was all done in an instant, and there was the gentleman thanking me on the one side and the lady on the other, while the clergyman beamed on me in front. It was the most preposterous position in which I ever found myself in my life, and it was the thought of it that started me laughing just now. It seems that there had been some informality about their license, that the clergyman absolutely refused to marry them without a witness of some sort, and that my lucky appearance saved the bridegroom from having to sally out into the streets in search of a best man. The bride gave me a sovereign, and I mean to wear it on my watch-chain in memory of the occasion." "This is a very unexpected turn of affairs," said I; "and what then?" "Well, I found my plans very seriously menaced. It looked as if the pair might take an immediate departure, and so necessitate very prompt and energetic measures on my part. At the church door, however, they separated, he driving back to the Temple, and she to her own house. 'I shall drive out in the park at five as usual,' she said as she left him. I heard no more. They drove away in different directions, and I went off to make my own arrangements." "Which are?" "Some cold beef and a glass of beer," he answered, ringing the bell. "I have been too busy to think of food, and I am likely to be busier still this evening. By the way, Doctor, I shall want your co-operation." "I shall be delighted." "You don't mind breaking the law?" "Not in the least." "Nor running a chance of arrest?" "Not in a good cause." "Oh, the cause is excellent!" "Then I am your man." "I was sure that I might rely on you." "But what is it you wish?" "When Mrs. Turner has brought in the tray I will make it clear to you. Now," he said as he turned hungrily on the simple fare that our landlady had provided, "I must discuss it while I eat, for I have not much time. It is nearly five now. In two hours we must be on the scene of action. Miss Irene, or Madame, rather, returns from her drive at seven. We must be at Briony Lodge to meet her." "And what then?" "You must leave that to me. I have already arranged what is to occur. There is only one point on which I must insist. You must not interfere, come what may. You understand?" "I am to be neutral?" "To do nothing whatever. There will probably be some small unpleasantness. Do not join in it. It will end in my being conveyed into the house. Four or five minutes afterwards the sitting-room window will open. You are to station yourself close to that open window." "Yes." "You are to watch me, for I will be visible to you." "Yes." "And when I raise my hand--so--you will throw into the room what I give you to throw, and will, at the same time, raise the cry of fire. You quite follow me?" "Entirely." "It is nothing very formidable," he said, taking a long cigar-shaped roll from his pocket. "It is an ordinary plumber's smoke-rocket, fitted with a cap at either end to make it self-lighting. Your task is confined to that. When you raise your cry of fire, it will be taken up by quite a number of people. You may then walk to the end of the street, and I will rejoin you in ten minutes. I hope that I have made myself clear?" "I am to remain neutral, to get near the window, to watch you, and at the signal to throw in this object, then to raise the cry of fire, and to wait you at the corner of the street." "Precisely." "Then you may entirely rely on me." "That is excellent. I think, perhaps, it is almost time that I prepare for the new role I have to play." He disappeared into his bedroom and returned in a few minutes in the character of an amiable and simple-minded Nonconformist clergyman. His broad black hat, his baggy trousers, his white tie, his sympathetic smile, and general look of peering and benevolent curiosity were such as Mr. John Hare alone could have equalled. It was not merely that Holmes changed his costume. His expression, his manner, his very soul seemed to vary with every fresh part that he assumed. The stage lost a fine actor, even as science lost an acute reasoner, when he became a specialist in crime. It was a quarter past six when we left Baker Street, and it still wanted ten minutes to the hour when we found ourselves in Serpentine Avenue. It was already dusk, and the lamps were just being lighted as we paced up and down in front of Briony Lodge, waiting for the coming of its occupant. The house was just such as I had pictured it from Sherlock Holmes' succinct description, but the locality appeared to be less private than I expected. On the contrary, for a small street in a quiet neighbourhood, it was remarkably animated. There was a group of shabbily dressed men smoking and laughing in a corner, a scissors-grinder with his wheel, two guardsmen who were flirting with a nurse-girl, and several well-dressed young men who were lounging up and down with cigars in their mouths. "You see," remarked Holmes, as we paced to and fro in front of the house, "this marriage rather simplifies matters. The photograph becomes a double-edged weapon now. The chances are that she would be as averse to its being seen by Mr. Godfrey Norton, as our client is to its coming to the eyes of his princess. Now the question is, Where are we to find the photograph?" "Where, indeed?" "It is most unlikely that she carries it about with her. It is cabinet size. Too large for easy concealment about a woman's dress. She knows that the King is capable of having her waylaid and searched. Two attempts of the sort have already been made. We may take it, then, that she does not carry it about with her." "Where, then?" "Her banker or her lawyer. There is that double possibility. But I am inclined to think neither. Women are naturally secretive, and they like to do their own secreting. Why should she hand it over to anyone else? She could trust her own guardianship, but she could not tell what indirect or political influence might be brought to bear upon a business man. Besides, remember that she had resolved to use it within a few days. It must be where she can lay her hands upon it. It must be in her own house." "But it has twice been burgled." "Pshaw! They did not know how to look." "But how will you look?" "I will not look." "What then?" "I will get her to show me." "But she will refuse." "She will not be able to. But I hear the rumble of wheels. It is her carriage. Now carry out my orders to the letter." As he spoke the gleam of the side-lights of a carriage came round the curve of the avenue. It was a smart little landau which rattled up to the door of Briony Lodge. As it pulled up, one of the loafing men at the corner dashed forward to open the door in the hope of earning a copper, but was elbowed away by another loafer, who had rushed up with the same intention. A fierce quarrel broke out, which was increased by the two guardsmen, who took sides with one of the loungers, and by the scissors-grinder, who was equally hot upon the other side. A blow was struck, and in an instant the lady, who had stepped from her carriage, was the centre of a little knot of flushed and struggling men, who struck savagely at each other with their fists and sticks. Holmes dashed into the crowd to protect the lady; but just as he reached her he gave a cry and dropped to the ground, with the blood running freely down his face. At his fall the guardsmen took to their heels in one direction and the loungers in the other, while a number of better-dressed people, who had watched the scuffle without taking part in it, crowded in to help the lady and to attend to the injured man. Irene Adler, as I will still call her, had hurried up the steps; but she stood at the top with her superb figure outlined against the lights of the hall, looking back into the street. "Is the poor gentleman much hurt?" she asked. "He is dead," cried several voices. "No, no, there's life in him!" shouted another. "But he'll be gone before you can get him to hospital." "He's a brave fellow," said a woman. "They would have had the lady's purse and watch if it hadn't been for him. They were a gang, and a rough one, too. Ah, he's breathing now." "He can't lie in the street. May we bring him in, marm?" "Surely. Bring him into the sitting-room. There is a comfortable sofa. This way, please!" Slowly and solemnly he was borne into Briony Lodge and laid out in the principal room, while I still observed the proceedings from my post by the window. The lamps had been lit, but the blinds had not been drawn, so that I could see Holmes as he lay upon the couch. I do not know whether he was seized with compunction at that moment for the part he was playing, but I know that I never felt more heartily ashamed of myself in my life than when I saw the beautiful creature against whom I was conspiring, or the grace and kindliness with which she waited upon the injured man. And yet it would be the blackest treachery to Holmes to draw back now from the part which he had intrusted to me. I hardened my heart, and took the smoke-rocket from under my ulster. After all, I thought, we are not injuring her. We are but preventing her from injuring another. Holmes had sat up upon the couch, and I saw him motion like a man who is in need of air. A maid rushed across and threw open the window. At the same instant I saw him raise his hand and at the signal I tossed my rocket into the room with a cry of "Fire!" The word was no sooner out of my mouth than the whole crowd of spectators, well dressed and ill--gentlemen, ostlers, and servant-maids--joined in a general shriek of "Fire!" Thick clouds of smoke curled through the room and out at the open window. I caught a glimpse of rushing figures, and a moment later the voice of Holmes from within assuring them that it was a false alarm. Slipping through the shouting crowd I made my way to the corner of the street, and in ten minutes was rejoiced to find my friend's arm in mine, and to get away from the scene of uproar. He walked swiftly and in silence for some few minutes until we had turned down one of the quiet streets which lead towards the Edgeware Road. "You did it very nicely, Doctor," he remarked. "Nothing could have been better. It is all right." "You have the photograph?" "I know where it is." "And how did you find out?" "She showed me, as I told you she would." "I am still in the dark." "I do not wish to make a mystery," said he, laughing. "The matter was perfectly simple. You, of course, saw that everyone in the street was an accomplice. They were all engaged for the evening." "I guessed as much." "Then, when the row broke out, I had a little moist red paint in the palm of my hand. I rushed forward, fell down, clapped my hand to my face, and became a piteous spectacle. It is an old trick." "That also I could fathom." "Then they carried me in. She was bound to have me in. What else could she do? And into her sitting-room, which was the very room which I suspected. It lay between that and her bedroom, and I was determined to see which. They laid me on a couch, I motioned for air, they were compelled to open the window, and you had your chance." "How did that help you?" "It was all-important. When a woman thinks that her house is on fire, her instinct is at once to rush to the thing which she values most. It is a perfectly overpowering impulse, and I have more than once taken advantage of it. In the case of the Darlington substitution scandal it was of use to me, and also in the Arnsworth Castle business. A married woman grabs at her baby; an unmarried one reaches for her jewel-box. Now it was clear to me that our lady of to-day had nothing in the house more precious to her than what we are in quest of. She would rush to secure it. The alarm of fire was admirably done. The smoke and shouting were enough to shake nerves of steel. She responded beautifully. The photograph is in a recess behind a sliding panel just above the right bell-pull. She was there in an instant, and I caught a glimpse of it as she half-drew it out. When I cried out that it was a false alarm, she replaced it, glanced at the rocket, rushed from the room, and I have not seen her since. I rose, and, making my excuses, escaped from the house. I hesitated whether to attempt to secure the photograph at once; but the coachman had come in, and as he was watching me narrowly it seemed safer to wait. A little over-precipitance may ruin all." "And now?" I asked. "Our quest is practically finished. I shall call with the King to-morrow, and with you, if you care to come with us. We will be shown into the sitting-room to wait for the lady, but it is probable that when she comes she may find neither us nor the photograph. It might be a satisfaction to his Majesty to regain it with his own hands." "And when will you call?" "At eight in the morning. She will not be up, so that we shall have a clear field. Besides, we must be prompt, for this marriage may mean a complete change in her life and habits. I must wire to the King without delay." We had reached Baker Street and had stopped at the door. He was searching his pockets for the key when someone passing said: "Good-night, Mister Sherlock Holmes." There were several people on the pavement at the time, but the greeting appeared to come from a slim youth in an ulster who had hurried by. "I've heard that voice before," said Holmes, staring down the dimly lit street. "Now, I wonder who the deuce that could have been." III. I slept at Baker Street that night, and we were engaged upon our toast and coffee in the morning when the King of Bohemia rushed into the room. "You have really got it!" he cried, grasping Sherlock Holmes by either shoulder and looking eagerly into his face. "Not yet." "But you have hopes?" "I have hopes." "Then, come. I am all impatience to be gone." "We must have a cab." "No, my brougham is waiting." "Then that will simplify matters." We descended and started off once more for Briony Lodge. "Irene Adler is married," remarked Holmes. "Married! When?" "Yesterday." "But to whom?" "To an English lawyer named Norton." "But she could not love him." "I am in hopes that she does." "And why in hopes?" "Because it would spare your Majesty all fear of future annoyance. If the lady loves her husband, she does not love your Majesty. If she does not love your Majesty, there is no reason why she should interfere with your Majesty's plan." "It is true. And yet--Well! I wish she had been of my own station! What a queen she would have made!" He relapsed into a moody silence, which was not broken until we drew up in Serpentine Avenue. The door of Briony Lodge was open, and an elderly woman stood upon the steps. She watched us with a sardonic eye as we stepped from the brougham. "Mr. Sherlock Holmes, I believe?" said she. "I am Mr. Holmes," answered my companion, looking at her with a questioning and rather startled gaze. "Indeed! My mistress told me that you were likely to call. She left this morning with her husband by the 5:15 train from Charing Cross for the Continent." "What!" Sherlock Holmes staggered back, white with chagrin and surprise. "Do you mean that she has left England?" "Never to return." "And the papers?" asked the King hoarsely. "All is lost." "We shall see." He pushed past the servant and rushed into the drawing-room, followed by the King and myself. The furniture was scattered about in every direction, with dismantled shelves and open drawers, as if the lady had hurriedly ransacked them before her flight. Holmes rushed at the bell-pull, tore back a small sliding shutter, and, plunging in his hand, pulled out a photograph and a letter. The photograph was of Irene Adler herself in evening dress, the letter was superscribed to "Sherlock Holmes, Esq. To be left till called for." My friend tore it open and we all three read it together. It was dated at midnight of the preceding night and ran in this way: "MY DEAR MR. SHERLOCK HOLMES,--You really did it very well. You took me in completely. Until after the alarm of fire, I had not a suspicion. But then, when I found how I had betrayed myself, I began to think. I had been warned against you months ago. I had been told that if the King employed an agent it would certainly be you. And your address had been given me. Yet, with all this, you made me reveal what you wanted to know. Even after I became suspicious, I found it hard to think evil of such a dear, kind old clergyman. But, you know, I have been trained as an actress myself. Male costume is nothing new to me. I often take advantage of the freedom which it gives. I sent John, the coachman, to watch you, ran up stairs, got into my walking-clothes, as I call them, and came down just as you departed. "Well, I followed you to your door, and so made sure that I was really an object of interest to the celebrated Mr. Sherlock Holmes. Then I, rather imprudently, wished you good-night, and started for the Temple to see my husband. "We both thought the best resource was flight, when pursued by so formidable an antagonist; so you will find the nest empty when you call to-morrow. As to the photograph, your client may rest in peace. I love and am loved by a better man than he. The King may do what he will without hindrance from one whom he has cruelly wronged. I keep it only to safeguard myself, and to preserve a weapon which will always secure me from any steps which he might take in the future. I leave a photograph which he might care to possess; and I remain, dear Mr. Sherlock Holmes, "Very truly yours, "IRENE NORTON, née ADLER." "What a woman--oh, what a woman!" cried the King of Bohemia, when we had all three read this epistle. "Did I not tell you how quick and resolute she was? Would she not have made an admirable queen? Is it not a pity that she was not on my level?" "From what I have seen of the lady she seems indeed to be on a very different level to your Majesty," said Holmes coldly. "I am sorry that I have not been able to bring your Majesty's business to a more successful conclusion." "On the contrary, my dear sir," cried the King; "nothing could be more successful. I know that her word is inviolate. The photograph is now as safe as if it were in the fire." "I am glad to hear your Majesty say so." "I am immensely indebted to you. Pray tell me in what way I can reward you. This ring--" He slipped an emerald snake ring from his finger and held it out upon the palm of his hand. "Your Majesty has something which I should value even more highly," said Holmes. "You have but to name it." "This photograph!" The King stared at him in amazement. "Irene's photograph!" he cried. "Certainly, if you wish it." "I thank your Majesty. Then there is no more to be done in the matter. I have the honour to wish you a very good-morning." He bowed, and, turning away without observing the hand which the King had stretched out to him, he set off in my company for his chambers. And that was how a great scandal threatened to affect the kingdom of Bohemia, and how the best plans of Mr. Sherlock Holmes were beaten by a woman's wit. He used to make merry over the cleverness of women, but I have not heard him do it of late. And when he speaks of Irene Adler, or when he refers to her photograph, it is always under the honourable title of the woman. ADVENTURE II. THE RED-HEADED LEAGUE I had called upon my friend, Mr. Sherlock Holmes, one day in the autumn of last year and found him in deep conversation with a very stout, florid-faced, elderly gentleman with fiery red hair. With an apology for my intrusion, I was about to withdraw when Holmes pulled me abruptly into the room and closed the door behind me. "You could not possibly have come at a better time, my dear Watson," he said cordially. "I was afraid that you were engaged." "So I am. Very much so." "Then I can wait in the next room." "Not at all. This gentleman, Mr. Wilson, has been my partner and helper in many of my most successful cases, and I have no doubt that he will be of the utmost use to me in yours also." The stout gentleman half rose from his chair and gave a bob of greeting, with a quick little questioning glance from his small fat-encircled eyes. "Try the settee," said Holmes, relapsing into his armchair and putting his fingertips together, as was his custom when in judicial moods. "I know, my dear Watson, that you share my love of all that is bizarre and outside the conventions and humdrum routine of everyday life. You have shown your relish for it by the enthusiasm which has prompted you to chronicle, and, if you will excuse my saying so, somewhat to embellish so many of my own little adventures." "Your cases have indeed been of the greatest interest to me," I observed. "You will remember that I remarked the other day, just before we went into the very simple problem presented by Miss Mary Sutherland, that for strange effects and extraordinary combinations we must go to life itself, which is always far more daring than any effort of the imagination." "A proposition which I took the liberty of doubting." "You did, Doctor, but none the less you must come round to my view, for otherwise I shall keep on piling fact upon fact on you until your reason breaks down under them and acknowledges me to be right. Now, Mr. Jabez Wilson here has been good enough to call upon me this morning, and to begin a narrative which promises to be one of the most singular which I have listened to for some time. You have heard me remark that the strangest and most unique things are very often connected not with the larger but with the smaller crimes, and occasionally, indeed, where there is room for doubt whether any positive crime has been committed. As far as I have heard it is impossible for me to say whether the present case is an instance of crime or not, but the course of events is certainly among the most singular that I have ever listened to. Perhaps, Mr. Wilson, you would have the great kindness to recommence your narrative. I ask you not merely because my friend Dr. Watson has not heard the opening part but also because the peculiar nature of the story makes me anxious to have every possible detail from your lips. As a rule, when I have heard some slight indication of the course of events, I am able to guide myself by the thousands of other similar cases which occur to my memory. In the present instance I am forced to admit that the facts are, to the best of my belief, unique." The portly client puffed out his chest with an appearance of some little pride and pulled a dirty and wrinkled newspaper from the inside pocket of his greatcoat. As he glanced down the advertisement column, with his head thrust forward and the paper flattened out upon his knee, I took a good look at the man and endeavoured, after the fashion of my companion, to read the indications which might be presented by his dress or appearance. I did not gain very much, however, by my inspection. Our visitor bore every mark of being an average commonplace British tradesman, obese, pompous, and slow. He wore rather baggy grey shepherd's check trousers, a not over-clean black frock-coat, unbuttoned in the front, and a drab waistcoat with a heavy brassy Albert chain, and a square pierced bit of metal dangling down as an ornament. A frayed top-hat and a faded brown overcoat with a wrinkled velvet collar lay upon a chair beside him. Altogether, look as I would, there was nothing remarkable about the man save his blazing red head, and the expression of extreme chagrin and discontent upon his features. Sherlock Holmes' quick eye took in my occupation, and he shook his head with a smile as he noticed my questioning glances. "Beyond the obvious facts that he has at some time done manual labour, that he takes snuff, that he is a Freemason, that he has been in China, and that he has done a considerable amount of writing lately, I can deduce nothing else." Mr. Jabez Wilson started up in his chair, with his forefinger upon the paper, but his eyes upon my companion. "How, in the name of good-fortune, did you know all that, Mr. Holmes?" he asked. "How did you know, for example, that I did manual labour. It's as true as gospel, for I began as a ship's carpenter." "Your hands, my dear sir. Your right hand is quite a size larger than your left. You have worked with it, and the muscles are more developed." "Well, the snuff, then, and the Freemasonry?" "I won't insult your intelligence by telling you how I read that, especially as, rather against the strict rules of your order, you use an arc-and-compass breastpin." "Ah, of course, I forgot that. But the writing?" "What else can be indicated by that right cuff so very shiny for five inches, and the left one with the smooth patch near the elbow where you rest it upon the desk?" "Well, but China?" "The fish that you have tattooed immediately above your right wrist could only have been done in China. I have made a small study of tattoo marks and have even contributed to the literature of the subject. That trick of staining the fishes' scales of a delicate pink is quite peculiar to China. When, in addition, I see a Chinese coin hanging from your watch-chain, the matter becomes even more simple." Mr. Jabez Wilson laughed heavily. "Well, I never!" said he. "I thought at first that you had done something clever, but I see that there was nothing in it, after all." "I begin to think, Watson," said Holmes, "that I make a mistake in explaining. 'Omne ignotum pro magnifico,' you know, and my poor little reputation, such as it is, will suffer shipwreck if I am so candid. Can you not find the advertisement, Mr. Wilson?" "Yes, I have got it now," he answered with his thick red finger planted halfway down the column. "Here it is. This is what began it all. You just read it for yourself, sir." I took the paper from him and read as follows: "TO THE RED-HEADED LEAGUE: On account of the bequest of the late Ezekiah Hopkins, of Lebanon, Pennsylvania, U. S. A., there is now another vacancy open which entitles a member of the League to a salary of 4 pounds a week for purely nominal services. All red-headed men who are sound in body and mind and above the age of twenty-one years, are eligible. Apply in person on Monday, at eleven o'clock, to Duncan Ross, at the offices of the League, 7 Pope's Court, Fleet Street." "What on earth does this mean?" I ejaculated after I had twice read over the extraordinary announcement. Holmes chuckled and wriggled in his chair, as was his habit when in high spirits. "It is a little off the beaten track, isn't it?" said he. "And now, Mr. Wilson, off you go at scratch and tell us all about yourself, your household, and the effect which this advertisement had upon your fortunes. You will first make a note, Doctor, of the paper and the date." "It is The Morning Chronicle of April 27, 1890. Just two months ago." "Very good. Now, Mr. Wilson?" "Well, it is just as I have been telling you, Mr. Sherlock Holmes," said Jabez Wilson, mopping his forehead; "I have a small pawnbroker's business at Coburg Square, near the City. It's not a very large affair, and of late years it has not done more than just give me a living. I used to be able to keep two assistants, but now I only keep one; and I would have a job to pay him but that he is willing to come for half wages so as to learn the business." "What is the name of this obliging youth?" asked Sherlock Holmes. "His name is Vincent Spaulding, and he's not such a youth, either. It's hard to say his age. I should not wish a smarter assistant, Mr. Holmes; and I know very well that he could better himself and earn twice what I am able to give him. But, after all, if he is satisfied, why should I put ideas in his head?" "Why, indeed? You seem most fortunate in having an employé who comes under the full market price. It is not a common experience among employers in this age. I don't know that your assistant is not as remarkable as your advertisement." "Oh, he has his faults, too," said Mr. Wilson. "Never was such a fellow for photography. Snapping away with a camera when he ought to be improving his mind, and then diving down into the cellar like a rabbit into its hole to develop his pictures. That is his main fault, but on the whole he's a good worker. There's no vice in him." "He is still with you, I presume?" "Yes, sir. He and a girl of fourteen, who does a bit of simple cooking and keeps the place clean--that's all I have in the house, for I am a widower and never had any family. We live very quietly, sir, the three of us; and we keep a roof over our heads and pay our debts, if we do nothing more. "The first thing that put us out was that advertisement. Spaulding, he came down into the office just this day eight weeks, with this very paper in his hand, and he says: "'I wish to the Lord, Mr. Wilson, that I was a red-headed man.' "'Why that?' I asks. "'Why,' says he, 'here's another vacancy on the League of the Red-headed Men. It's worth quite a little fortune to any man who gets it, and I understand that there are more vacancies than there are men, so that the trustees are at their wits' end what to do with the money. If my hair would only change colour, here's a nice little crib all ready for me to step into.' "'Why, what is it, then?' I asked. You see, Mr. Holmes, I am a very stay-at-home man, and as my business came to me instead of my having to go to it, I was often weeks on end without putting my foot over the door-mat. In that way I didn't know much of what was going on outside, and I was always glad of a bit of news. "'Have you never heard of the League of the Red-headed Men?' he asked with his eyes open. "'Never.' "'Why, I wonder at that, for you are eligible yourself for one of the vacancies.' "'And what are they worth?' I asked. "'Oh, merely a couple of hundred a year, but the work is slight, and it need not interfere very much with one's other occupations.' "Well, you can easily think that that made me prick up my ears, for the business has not been over-good for some years, and an extra couple of hundred would have been very handy. "'Tell me all about it,' said I. "'Well,' said he, showing me the advertisement, 'you can see for yourself that the League has a vacancy, and there is the address where you should apply for particulars. As far as I can make out, the League was founded by an American millionaire, Ezekiah Hopkins, who was very peculiar in his ways. He was himself red-headed, and he had a great sympathy for all red-headed men; so when he died it was found that he had left his enormous fortune in the hands of trustees, with instructions to apply the interest to the providing of easy berths to men whose hair is of that colour. From all I hear it is splendid pay and very little to do.' "'But,' said I, 'there would be millions of red-headed men who would apply.' "'Not so many as you might think,' he answered. 'You see it is really confined to Londoners, and to grown men. This American had started from London when he was young, and he wanted to do the old town a good turn. Then, again, I have heard it is no use your applying if your hair is light red, or dark red, or anything but real bright, blazing, fiery red. Now, if you cared to apply, Mr. Wilson, you would just walk in; but perhaps it would hardly be worth your while to put yourself out of the way for the sake of a few hundred pounds.' "Now, it is a fact, gentlemen, as you may see for yourselves, that my hair is of a very full and rich tint, so that it seemed to me that if there was to be any competition in the matter I stood as good a chance as any man that I had ever met. Vincent Spaulding seemed to know so much about it that I thought he might prove useful, so I just ordered him to put up the shutters for the day and to come right away with me. He was very willing to have a holiday, so we shut the business up and started off for the address that was given us in the advertisement. "I never hope to see such a sight as that again, Mr. Holmes. From north, south, east, and west every man who had a shade of red in his hair had tramped into the city to answer the advertisement. Fleet Street was choked with red-headed folk, and Pope's Court looked like a coster's orange barrow. I should not have thought there were so many in the whole country as were brought together by that single advertisement. Every shade of colour they were--straw, lemon, orange, brick, Irish-setter, liver, clay; but, as Spaulding said, there were not many who had the real vivid flame-coloured tint. When I saw how many were waiting, I would have given it up in despair; but Spaulding would not hear of it. How he did it I could not imagine, but he pushed and pulled and butted until he got me through the crowd, and right up to the steps which led to the office. There was a double stream upon the stair, some going up in hope, and some coming back dejected; but we wedged in as well as we could and soon found ourselves in the office." "Your experience has been a most entertaining one," remarked Holmes as his client paused and refreshed his memory with a huge pinch of snuff. "Pray continue your very interesting statement." "There was nothing in the office but a couple of wooden chairs and a deal table, behind which sat a small man with a head that was even redder than mine. He said a few words to each candidate as he came up, and then he always managed to find some fault in them which would disqualify them. Getting a vacancy did not seem to be such a very easy matter, after all. However, when our turn came the little man was much more favourable to me than to any of the others, and he closed the door as we entered, so that he might have a private word with us. "'This is Mr. Jabez Wilson,' said my assistant, 'and he is willing to fill a vacancy in the League.' "'And he is admirably suited for it,' the other answered. 'He has every requirement. I cannot recall when I have seen anything so fine.' He took a step backward, cocked his head on one side, and gazed at my hair until I felt quite bashful. Then suddenly he plunged forward, wrung my hand, and congratulated me warmly on my success. "'It would be injustice to hesitate,' said he. 'You will, however, I am sure, excuse me for taking an obvious precaution.' With that he seized my hair in both his hands, and tugged until I yelled with the pain. 'There is water in your eyes,' said he as he released me. 'I perceive that all is as it should be. But we have to be careful, for we have twice been deceived by wigs and once by paint. I could tell you tales of cobbler's wax which would disgust you with human nature.' He stepped over to the window and shouted through it at the top of his voice that the vacancy was filled. A groan of disappointment came up from below, and the folk all trooped away in different directions until there was not a red-head to be seen except my own and that of the manager. "'My name,' said he, 'is Mr. Duncan Ross, and I am myself one of the pensioners upon the fund left by our noble benefactor. Are you a married man, Mr. Wilson? Have you a family?' "I answered that I had not. "His face fell immediately. "'Dear me!' he said gravely, 'that is very serious indeed! I am sorry to hear you say that. The fund was, of course, for the propagation and spread of the red-heads as well as for their maintenance. It is exceedingly unfortunate that you should be a bachelor.' "My face lengthened at this, Mr. Holmes, for I thought that I was not to have the vacancy after all; but after thinking it over for a few minutes he said that it would be all right. "'In the case of another,' said he, 'the objection might be fatal, but we must stretch a point in favour of a man with such a head of hair as yours. When shall you be able to enter upon your new duties?' "'Well, it is a little awkward, for I have a business already,' said I. "'Oh, never mind about that, Mr. Wilson!' said Vincent Spaulding. 'I should be able to look after that for you.' "'What would be the hours?' I asked. "'Ten to two.' "Now a pawnbroker's business is mostly done of an evening, Mr. Holmes, especially Thursday and Friday evening, which is just before pay-day; so it would suit me very well to earn a little in the mornings. Besides, I knew that my assistant was a good man, and that he would see to anything that turned up. "'That would suit me very well,' said I. 'And the pay?' "'Is 4 pounds a week.' "'And the work?' "'Is purely nominal.' "'What do you call purely nominal?' "'Well, you have to be in the office, or at least in the building, the whole time. If you leave, you forfeit your whole position forever. The will is very clear upon that point. You don't comply with the conditions if you budge from the office during that time.' "'It's only four hours a day, and I should not think of leaving,' said I. "'No excuse will avail,' said Mr. Duncan Ross; 'neither sickness nor business nor anything else. There you must stay, or you lose your billet.' "'And the work?' "'Is to copy out the "Encyclopaedia Britannica." There is the first volume of it in that press. You must find your own ink, pens, and blotting-paper, but we provide this table and chair. Will you be ready to-morrow?' "'Certainly,' I answered. "'Then, good-bye, Mr. Jabez Wilson, and let me congratulate you once more on the important position which you have been fortunate enough to gain.' He bowed me out of the room and I went home with my assistant, hardly knowing what to say or do, I was so pleased at my own good fortune. "Well, I thought over the matter all day, and by evening I was in low spirits again; for I had quite persuaded myself that the whole affair must be some great hoax or fraud, though what its object might be I could not imagine. It seemed altogether past belief that anyone could make such a will, or that they would pay such a sum for doing anything so simple as copying out the 'Encyclopaedia Britannica.' Vincent Spaulding did what he could to cheer me up, but by bedtime I had reasoned myself out of the whole thing. However, in the morning I determined to have a look at it anyhow, so I bought a penny bottle of ink, and with a quill-pen, and seven sheets of foolscap paper, I started off for Pope's Court. "Well, to my surprise and delight, everything was as right as possible. The table was set out ready for me, and Mr. Duncan Ross was there to see that I got fairly to work. He started me off upon the letter A, and then he left me; but he would drop in from time to time to see that all was right with me. At two o'clock he bade me good-day, complimented me upon the amount that I had written, and locked the door of the office after me. "This went on day after day, Mr. Holmes, and on Saturday the manager came in and planked down four golden sovereigns for my week's work. It was the same next week, and the same the week after. Every morning I was there at ten, and every afternoon I left at two. By degrees Mr. Duncan Ross took to coming in only once of a morning, and then, after a time, he did not come in at all. Still, of course, I never dared to leave the room for an instant, for I was not sure when he might come, and the billet was such a good one, and suited me so well, that I would not risk the loss of it. "Eight weeks passed away like this, and I had written about Abbots and Archery and Armour and Architecture and Attica, and hoped with diligence that I might get on to the B's before very long. It cost me something in foolscap, and I had pretty nearly filled a shelf with my writings. And then suddenly the whole business came to an end." "To an end?" "Yes, sir. And no later than this morning. I went to my work as usual at ten o'clock, but the door was shut and locked, with a little square of cardboard hammered on to the middle of the panel with a tack. Here it is, and you can read for yourself." He held up a piece of white cardboard about the size of a sheet of note-paper. It read in this fashion: THE RED-HEADED LEAGUE IS DISSOLVED. October 9, 1890. Sherlock Holmes and I surveyed this curt announcement and the rueful face behind it, until the comical side of the affair so completely overtopped every other consideration that we both burst out into a roar of laughter. "I cannot see that there is anything very funny," cried our client, flushing up to the roots of his flaming head. "If you can do nothing better than laugh at me, I can go elsewhere." "No, no," cried Holmes, shoving him back into the chair from which he had half risen. "I really wouldn't miss your case for the world. It is most refreshingly unusual. But there is, if you will excuse my saying so, something just a little funny about it. Pray what steps did you take when you found the card upon the door?" "I was staggered, sir. I did not know what to do. Then I called at the offices round, but none of them seemed to know anything about it. Finally, I went to the landlord, who is an accountant living on the ground-floor, and I asked him if he could tell me what had become of the Red-headed League. He said that he had never heard of any such body. Then I asked him who Mr. Duncan Ross was. He answered that the name was new to him. "'Well,' said I, 'the gentleman at No. 4.' "'What, the red-headed man?' "'Yes.' "'Oh,' said he, 'his name was William Morris. He was a solicitor and was using my room as a temporary convenience until his new premises were ready. He moved out yesterday.' "'Where could I find him?' "'Oh, at his new offices. He did tell me the address. Yes, 17 King Edward Street, near St. Paul's.' "I started off, Mr. Holmes, but when I got to that address it was a manufactory of artificial knee-caps, and no one in it had ever heard of either Mr. William Morris or Mr. Duncan Ross." "And what did you do then?" asked Holmes. "I went home to Saxe-Coburg Square, and I took the advice of my assistant. But he could not help me in any way. He could only say that if I waited I should hear by post. But that was not quite good enough, Mr. Holmes. I did not wish to lose such a place without a struggle, so, as I had heard that you were good enough to give advice to poor folk who were in need of it, I came right away to you." "And you did very wisely," said Holmes. "Your case is an exceedingly remarkable one, and I shall be happy to look into it. From what you have told me I think that it is possible that graver issues hang from it than might at first sight appear." "Grave enough!" said Mr. Jabez Wilson. "Why, I have lost four pound a week." "As far as you are personally concerned," remarked Holmes, "I do not see that you have any grievance against this extraordinary league. On the contrary, you are, as I understand, richer by some 30 pounds, to say nothing of the minute knowledge which you have gained on every subject which comes under the letter A. You have lost nothing by them." "No, sir. But I want to find out about them, and who they are, and what their object was in playing this prank--if it was a prank--upon me. It was a pretty expensive joke for them, for it cost them two and thirty pounds." "We shall endeavour to clear up these points for you. And, first, one or two questions, Mr. Wilson. This assistant of yours who first called your attention to the advertisement--how long had he been with you?" "About a month then." "How did he come?" "In answer to an advertisement." "Was he the only applicant?" "No, I had a dozen." "Why did you pick him?" "Because he was handy and would come cheap." "At half-wages, in fact." "Yes." "What is he like, this Vincent Spaulding?" "Small, stout-built, very quick in his ways, no hair on his face, though he's not short of thirty. Has a white splash of acid upon his forehead." Holmes sat up in his chair in considerable excitement. "I thought as much," said he. "Have you ever observed that his ears are pierced for earrings?" "Yes, sir. He told me that a gipsy had done it for him when he was a lad." "Hum!" said Holmes, sinking back in deep thought. "He is still with you?" "Oh, yes, sir; I have only just left him." "And has your business been attended to in your absence?" "Nothing to complain of, sir. There's never very much to do of a morning." "That will do, Mr. Wilson. I shall be happy to give you an opinion upon the subject in the course of a day or two. To-day is Saturday, and I hope that by Monday we may come to a conclusion." "Well, Watson," said Holmes when our visitor had left us, "what do you make of it all?" "I make nothing of it," I answered frankly. "It is a most mysterious business." "As a rule," said Holmes, "the more bizarre a thing is the less mysterious it proves to be. It is your commonplace, featureless crimes which are really puzzling, just as a commonplace face is the most difficult to identify. But I must be prompt over this matter." "What are you going to do, then?" I asked. "To smoke," he answered. "It is quite a three pipe problem, and I beg that you won't speak to me for fifty minutes." He curled himself up in his chair, with his thin knees drawn up to his hawk-like nose, and there he sat with his eyes closed and his black clay pipe thrusting out like the bill of some strange bird. I had come to the conclusion that he had dropped asleep, and indeed was nodding myself, when he suddenly sprang out of his chair with the gesture of a man who has made up his mind and put his pipe down upon the mantelpiece. "Sarasate plays at the St. James's Hall this afternoon," he remarked. "What do you think, Watson? Could your patients spare you for a few hours?" "I have nothing to do to-day. My practice is never very absorbing." "Then put on your hat and come. I am going through the City first, and we can have some lunch on the way. I observe that there is a good deal of German music on the programme, which is rather more to my taste than Italian or French. It is introspective, and I want to introspect. Come along!" We travelled by the Underground as far as Aldersgate; and a short walk took us to Saxe-Coburg Square, the scene of the singular story which we had listened to in the morning. It was a poky, little, shabby-genteel place, where four lines of dingy two-storied brick houses looked out into a small railed-in enclosure, where a lawn of weedy grass and a few clumps of faded laurel-bushes made a hard fight against a smoke-laden and uncongenial atmosphere. Three gilt balls and a brown board with "JABEZ WILSON" in white letters, upon a corner house, announced the place where our red-headed client carried on his business. Sherlock Holmes stopped in front of it with his head on one side and looked it all over, with his eyes shining brightly between puckered lids. Then he walked slowly up the street, and then down again to the corner, still looking keenly at the houses. Finally he returned to the pawnbroker's, and, having thumped vigorously upon the pavement with his stick two or three times, he went up to the door and knocked. It was instantly opened by a bright-looking, clean-shaven young fellow, who asked him to step in. "Thank you," said Holmes, "I only wished to ask you how you would go from here to the Strand." "Third right, fourth left," answered the assistant promptly, closing the door. "Smart fellow, that," observed Holmes as we walked away. "He is, in my judgment, the fourth smartest man in London, and for daring I am not sure that he has not a claim to be third. I have known something of him before." "Evidently," said I, "Mr. Wilson's assistant counts for a good deal in this mystery of the Red-headed League. I am sure that you inquired your way merely in order that you might see him." "Not him." "What then?" "The knees of his trousers." "And what did you see?" "What I expected to see." "Why did you beat the pavement?" "My dear doctor, this is a time for observation, not for talk. We are spies in an enemy's country. We know something of Saxe-Coburg Square. Let us now explore the parts which lie behind it." The road in which we found ourselves as we turned round the corner from the retired Saxe-Coburg Square presented as great a contrast to it as the front of a picture does to the back. It was one of the main arteries which conveyed the traffic of the City to the north and west. The roadway was blocked with the immense stream of commerce flowing in a double tide inward and outward, while the footpaths were black with the hurrying swarm of pedestrians. It was difficult to realise as we looked at the line of fine shops and stately business premises that they really abutted on the other side upon the faded and stagnant square which we had just quitted. "Let me see," said Holmes, standing at the corner and glancing along the line, "I should like just to remember the order of the houses here. It is a hobby of mine to have an exact knowledge of London. There is Mortimer's, the tobacconist, the little newspaper shop, the Coburg branch of the City and Suburban Bank, the Vegetarian Restaurant, and McFarlane's carriage-building depot. That carries us right on to the other block. And now, Doctor, we've done our work, so it's time we had some play. A sandwich and a cup of coffee, and then off to violin-land, where all is sweetness and delicacy and harmony, and there are no red-headed clients to vex us with their conundrums." My friend was an enthusiastic musician, being himself not only a very capable performer but a composer of no ordinary merit. All the afternoon he sat in the stalls wrapped in the most perfect happiness, gently waving his long, thin fingers in time to the music, while his gently smiling face and his languid, dreamy eyes were as unlike those of Holmes the sleuth-hound, Holmes the relentless, keen-witted, ready-handed criminal agent, as it was possible to conceive. In his singular character the dual nature alternately asserted itself, and his extreme exactness and astuteness represented, as I have often thought, the reaction against the poetic and contemplative mood which occasionally predominated in him. The swing of his nature took him from extreme languor to devouring energy; and, as I knew well, he was never so truly formidable as when, for days on end, he had been lounging in his armchair amid his improvisations and his black-letter editions. Then it was that the lust of the chase would suddenly come upon him, and that his brilliant reasoning power would rise to the level of intuition, until those who were unacquainted with his methods would look askance at him as on a man whose knowledge was not that of other mortals. When I saw him that afternoon so enwrapped in the music at St. James's Hall I felt that an evil time might be coming upon those whom he had set himself to hunt down. "You want to go home, no doubt, Doctor," he remarked as we emerged. "Yes, it would be as well." "And I have some business to do which will take some hours. This business at Coburg Square is serious." "Why serious?" "A considerable crime is in contemplation. I have every reason to believe that we shall be in time to stop it. But to-day being Saturday rather complicates matters. I shall want your help to-night." "At what time?" "Ten will be early enough." "I shall be at Baker Street at ten." "Very well. And, I say, Doctor, there may be some little danger, so kindly put your army revolver in your pocket." He waved his hand, turned on his heel, and disappeared in an instant among the crowd. I trust that I am not more dense than my neighbours, but I was always oppressed with a sense of my own stupidity in my dealings with Sherlock Holmes. Here I had heard what he had heard, I had seen what he had seen, and yet from his words it was evident that he saw clearly not only what had happened but what was about to happen, while to me the whole business was still confused and grotesque. As I drove home to my house in Kensington I thought over it all, from the extraordinary story of the red-headed copier of the "Encyclopaedia" down to the visit to Saxe-Coburg Square, and the ominous words with which he had parted from me. What was this nocturnal expedition, and why should I go armed? Where were we going, and what were we to do? I had the hint from Holmes that this smooth-faced pawnbroker's assistant was a formidable man--a man who might play a deep game. I tried to puzzle it out, but gave it up in despair and set the matter aside until night should bring an explanation. It was a quarter-past nine when I started from home and made my way across the Park, and so through Oxford Street to Baker Street. Two hansoms were standing at the door, and as I entered the passage I heard the sound of voices from above. On entering his room I found Holmes in animated conversation with two men, one of whom I recognised as Peter Jones, the official police agent, while the other was a long, thin, sad-faced man, with a very shiny hat and oppressively respectable frock-coat. "Ha! Our party is complete," said Holmes, buttoning up his pea-jacket and taking his heavy hunting crop from the rack. "Watson, I think you know Mr. Jones, of Scotland Yard? Let me introduce you to Mr. Merryweather, who is to be our companion in to-night's adventure." "We're hunting in couples again, Doctor, you see," said Jones in his consequential way. "Our friend here is a wonderful man for starting a chase. All he wants is an old dog to help him to do the running down." "I hope a wild goose may not prove to be the end of our chase," observed Mr. Merryweather gloomily. "You may place considerable confidence in Mr. Holmes, sir," said the police agent loftily. "He has his own little methods, which are, if he won't mind my saying so, just a little too theoretical and fantastic, but he has the makings of a detective in him. It is not too much to say that once or twice, as in that business of the Sholto murder and the Agra treasure, he has been more nearly correct than the official force." "Oh, if you say so, Mr. Jones, it is all right," said the stranger with deference. "Still, I confess that I miss my rubber. It is the first Saturday night for seven-and-twenty years that I have not had my rubber." "I think you will find," said Sherlock Holmes, "that you will play for a higher stake to-night than you have ever done yet, and that the play will be more exciting. For you, Mr. Merryweather, the stake will be some 30,000 pounds; and for you, Jones, it will be the man upon whom you wish to lay your hands." "John Clay, the murderer, thief, smasher, and forger. He's a young man, Mr. Merryweather, but he is at the head of his profession, and I would rather have my bracelets on him than on any criminal in London. He's a remarkable man, is young John Clay. His grandfather was a royal duke, and he himself has been to Eton and Oxford. His brain is as cunning as his fingers, and though we meet signs of him at every turn, we never know where to find the man himself. He'll crack a crib in Scotland one week, and be raising money to build an orphanage in Cornwall the next. I've been on his track for years and have never set eyes on him yet." "I hope that I may have the pleasure of introducing you to-night. I've had one or two little turns also with Mr. John Clay, and I agree with you that he is at the head of his profession. It is past ten, however, and quite time that we started. If you two will take the first hansom, Watson and I will follow in the second." Sherlock Holmes was not very communicative during the long drive and lay back in the cab humming the tunes which he had heard in the afternoon. We rattled through an endless labyrinth of gas-lit streets until we emerged into Farrington Street. "We are close there now," my friend remarked. "This fellow Merryweather is a bank director, and personally interested in the matter. I thought it as well to have Jones with us also. He is not a bad fellow, though an absolute imbecile in his profession. He has one positive virtue. He is as brave as a bulldog and as tenacious as a lobster if he gets his claws upon anyone. Here we are, and they are waiting for us." We had reached the same crowded thoroughfare in which we had found ourselves in the morning. Our cabs were dismissed, and, following the guidance of Mr. Merryweather, we passed down a narrow passage and through a side door, which he opened for us. Within there was a small corridor, which ended in a very massive iron gate. This also was opened, and led down a flight of winding stone steps, which terminated at another formidable gate. Mr. Merryweather stopped to light a lantern, and then conducted us down a dark, earth-smelling passage, and so, after opening a third door, into a huge vault or cellar, which was piled all round with crates and massive boxes. "You are not very vulnerable from above," Holmes remarked as he held up the lantern and gazed about him. "Nor from below," said Mr. Merryweather, striking his stick upon the flags which lined the floor. "Why, dear me, it sounds quite hollow!" he remarked, looking up in surprise. "I must really ask you to be a little more quiet!" said Holmes severely. "You have already imperilled the whole success of our expedition. Might I beg that you would have the goodness to sit down upon one of those boxes, and not to interfere?" The solemn Mr. Merryweather perched himself upon a crate, with a very injured expression upon his face, while Holmes fell upon his knees upon the floor and, with the lantern and a magnifying lens, began to examine minutely the cracks between the stones. A few seconds sufficed to satisfy him, for he sprang to his feet again and put his glass in his pocket. "We have at least an hour before us," he remarked, "for they can hardly take any steps until the good pawnbroker is safely in bed. Then they will not lose a minute, for the sooner they do their work the longer time they will have for their escape. We are at present, Doctor--as no doubt you have divined--in the cellar of the City branch of one of the principal London banks. Mr. Merryweather is the chairman of directors, and he will explain to you that there are reasons why the more daring criminals of London should take a considerable interest in this cellar at present." "It is our French gold," whispered the director. "We have had several warnings that an attempt might be made upon it." "Your French gold?" "Yes. We had occasion some months ago to strengthen our resources and borrowed for that purpose 30,000 napoleons from the Bank of France. It has become known that we have never had occasion to unpack the money, and that it is still lying in our cellar. The crate upon which I sit contains 2,000 napoleons packed between layers of lead foil. Our reserve of bullion is much larger at present than is usually kept in a single branch office, and the directors have had misgivings upon the subject." "Which were very well justified," observed Holmes. "And now it is time that we arranged our little plans. I expect that within an hour matters will come to a head. In the meantime Mr. Merryweather, we must put the screen over that dark lantern." "And sit in the dark?" "I am afraid so. I had brought a pack of cards in my pocket, and I thought that, as we were a partie carrée, you might have your rubber after all. But I see that the enemy's preparations have gone so far that we cannot risk the presence of a light. And, first of all, we must choose our positions. These are daring men, and though we shall take them at a disadvantage, they may do us some harm unless we are careful. I shall stand behind this crate, and do you conceal yourselves behind those. Then, when I flash a light upon them, close in swiftly. If they fire, Watson, have no compunction about shooting them down." I placed my revolver, cocked, upon the top of the wooden case behind which I crouched. Holmes shot the slide across the front of his lantern and left us in pitch darkness--such an absolute darkness as I have never before experienced. The smell of hot metal remained to assure us that the light was still there, ready to flash out at a moment's notice. To me, with my nerves worked up to a pitch of expectancy, there was something depressing and subduing in the sudden gloom, and in the cold dank air of the vault. "They have but one retreat," whispered Holmes. "That is back through the house into Saxe-Coburg Square. I hope that you have done what I asked you, Jones?" "I have an inspector and two officers waiting at the front door." "Then we have stopped all the holes. And now we must be silent and wait." What a time it seemed! From comparing notes afterwards it was but an hour and a quarter, yet it appeared to me that the night must have almost gone and the dawn be breaking above us. My limbs were weary and stiff, for I feared to change my position; yet my nerves were worked up to the highest pitch of tension, and my hearing was so acute that I could not only hear the gentle breathing of my companions, but I could distinguish the deeper, heavier in-breath of the bulky Jones from the thin, sighing note of the bank director. From my position I could look over the case in the direction of the floor. Suddenly my eyes caught the glint of a light. At first it was but a lurid spark upon the stone pavement. Then it lengthened out until it became a yellow line, and then, without any warning or sound, a gash seemed to open and a hand appeared, a white, almost womanly hand, which felt about in the centre of the little area of light. For a minute or more the hand, with its writhing fingers, protruded out of the floor. Then it was withdrawn as suddenly as it appeared, and all was dark again save the single lurid spark which marked a chink between the stones. Its disappearance, however, was but momentary. With a rending, tearing sound, one of the broad, white stones turned over upon its side and left a square, gaping hole, through which streamed the light of a lantern. Over the edge there peeped a clean-cut, boyish face, which looked keenly about it, and then, with a hand on either side of the aperture, drew itself shoulder-high and waist-high, until one knee rested upon the edge. In another instant he stood at the side of the hole and was hauling after him a companion, lithe and small like himself, with a pale face and a shock of very red hair. "It's all clear," he whispered. "Have you the chisel and the bags? Great Scott! Jump, Archie, jump, and I'll swing for it!" Sherlock Holmes had sprung out and seized the intruder by the collar. The other dived down the hole, and I heard the sound of rending cloth as Jones clutched at his skirts. The light flashed upon the barrel of a revolver, but Holmes' hunting crop came down on the man's wrist, and the pistol clinked upon the stone floor. "It's no use, John Clay," said Holmes blandly. "You have no chance at all." "So I see," the other answered with the utmost coolness. "I fancy that my pal is all right, though I see you have got his coat-tails." "There are three men waiting for him at the door," said Holmes. "Oh, indeed! You seem to have done the thing very completely. I must compliment you." "And I you," Holmes answered. "Your red-headed idea was very new and effective." "You'll see your pal again presently," said Jones. "He's quicker at climbing down holes than I am. Just hold out while I fix the derbies." "I beg that you will not touch me with your filthy hands," remarked our prisoner as the handcuffs clattered upon his wrists. "You may not be aware that I have royal blood in my veins. Have the goodness, also, when you address me always to say 'sir' and 'please.'" "All right," said Jones with a stare and a snigger. "Well, would you please, sir, march upstairs, where we can get a cab to carry your Highness to the police-station?" "That is better," said John Clay serenely. He made a sweeping bow to the three of us and walked quietly off in the custody of the detective. "Really, Mr. Holmes," said Mr. Merryweather as we followed them from the cellar, "I do not know how the bank can thank you or repay you. There is no doubt that you have detected and defeated in the most complete manner one of the most determined attempts at bank robbery that have ever come within my experience." "I have had one or two little scores of my own to settle with Mr. John Clay," said Holmes. "I have been at some small expense over this matter, which I shall expect the bank to refund, but beyond that I am amply repaid by having had an experience which is in many ways unique, and by hearing the very remarkable narrative of the Red-headed League." "You see, Watson," he explained in the early hours of the morning as we sat over a glass of whisky and soda in Baker Street, "it was perfectly obvious from the first that the only possible object of this rather fantastic business of the advertisement of the League, and the copying of the 'Encyclopaedia,' must be to get this not over-bright pawnbroker out of the way for a number of hours every day. It was a curious way of managing it, but, really, it would be difficult to suggest a better. The method was no doubt suggested to Clay's ingenious mind by the colour of his accomplice's hair. The 4 pounds a week was a lure which must draw him, and what was it to them, who were playing for thousands? They put in the advertisement, one rogue has the temporary office, the other rogue incites the man to apply for it, and together they manage to secure his absence every morning in the week. From the time that I heard of the assistant having come for half wages, it was obvious to me that he had some strong motive for securing the situation." "But how could you guess what the motive was?" "Had there been women in the house, I should have suspected a mere vulgar intrigue. That, however, was out of the question. The man's business was a small one, and there was nothing in his house which could account for such elaborate preparations, and such an expenditure as they were at. It must, then, be something out of the house. What could it be? I thought of the assistant's fondness for photography, and his trick of vanishing into the cellar. The cellar! There was the end of this tangled clue. Then I made inquiries as to this mysterious assistant and found that I had to deal with one of the coolest and most daring criminals in London. He was doing something in the cellar--something which took many hours a day for months on end. What could it be, once more? I could think of nothing save that he was running a tunnel to some other building. "So far I had got when we went to visit the scene of action. I surprised you by beating upon the pavement with my stick. I was ascertaining whether the cellar stretched out in front or behind. It was not in front. Then I rang the bell, and, as I hoped, the assistant answered it. We have had some skirmishes, but we had never set eyes upon each other before. I hardly looked at his face. His knees were what I wished to see. You must yourself have remarked how worn, wrinkled, and stained they were. They spoke of those hours of burrowing. The only remaining point was what they were burrowing for. I walked round the corner, saw the City and Suburban Bank abutted on our friend's premises, and felt that I had solved my problem. When you drove home after the concert I called upon Scotland Yard and upon the chairman of the bank directors, with the result that you have seen." "And how could you tell that they would make their attempt to-night?" I asked. "Well, when they closed their League offices that was a sign that they cared no longer about Mr. Jabez Wilson's presence--in other words, that they had completed their tunnel. But it was essential that they should use it soon, as it might be discovered, or the bullion might be removed. Saturday would suit them better than any other day, as it would give them two days for their escape. For all these reasons I expected them to come to-night." "You reasoned it out beautifully," I exclaimed in unfeigned admiration. "It is so long a chain, and yet every link rings true." "It saved me from ennui," he answered, yawning. "Alas! I already feel it closing in upon me. My life is spent in one long effort to escape from the commonplaces of existence. These little problems help me to do so." "And you are a benefactor of the race," said I. He shrugged his shoulders. "Well, perhaps, after all, it is of some little use," he remarked. "'L'homme c'est rien--l'oeuvre c'est tout,' as Gustave Flaubert wrote to George Sand." ADVENTURE III. A CASE OF IDENTITY "My dear fellow," said Sherlock Holmes as we sat on either side of the fire in his lodgings at Baker Street, "life is infinitely stranger than anything which the mind of man could invent. We would not dare to conceive the things which are really mere commonplaces of existence. If we could fly out of that window hand in hand, hover over this great city, gently remove the roofs, and peep in at the queer things which are going on, the strange coincidences, the plannings, the cross-purposes, the wonderful chains of events, working through generations, and leading to the most outré results, it would make all fiction with its conventionalities and foreseen conclusions most stale and unprofitable." "And yet I am not convinced of it," I answered. "The cases which come to light in the papers are, as a rule, bald enough, and vulgar enough. We have in our police reports realism pushed to its extreme limits, and yet the result is, it must be confessed, neither fascinating nor artistic." "A certain selection and discretion must be used in producing a realistic effect," remarked Holmes. "This is wanting in the police report, where more stress is laid, perhaps, upon the platitudes of the magistrate than upon the details, which to an observer contain the vital essence of the whole matter. Depend upon it, there is nothing so unnatural as the commonplace." I smiled and shook my head. "I can quite understand your thinking so," I said. "Of course, in your position of unofficial adviser and helper to everybody who is absolutely puzzled, throughout three continents, you are brought in contact with all that is strange and bizarre. But here"--I picked up the morning paper from the ground--"let us put it to a practical test. Here is the first heading upon which I come. 'A husband's cruelty to his wife.' There is half a column of print, but I know without reading it that it is all perfectly familiar to me. There is, of course, the other woman, the drink, the push, the blow, the bruise, the sympathetic sister or landlady. The crudest of writers could invent nothing more crude." "Indeed, your example is an unfortunate one for your argument," said Holmes, taking the paper and glancing his eye down it. "This is the Dundas separation case, and, as it happens, I was engaged in clearing up some small points in connection with it. The husband was a teetotaler, there was no other woman, and the conduct complained of was that he had drifted into the habit of winding up every meal by taking out his false teeth and hurling them at his wife, which, you will allow, is not an action likely to occur to the imagination of the average story-teller. Take a pinch of snuff, Doctor, and acknowledge that I have scored over you in your example." He held out his snuffbox of old gold, with a great amethyst in the centre of the lid. Its splendour was in such contrast to his homely ways and simple life that I could not help commenting upon it. "Ah," said he, "I forgot that I had not seen you for some weeks. It is a little souvenir from the King of Bohemia in return for my assistance in the case of the Irene Adler papers." "And the ring?" I asked, glancing at a remarkable brilliant which sparkled upon his finger. "It was from the reigning family of Holland, though the matter in which I served them was of such delicacy that I cannot confide it even to you, who have been good enough to chronicle one or two of my little problems." "And have you any on hand just now?" I asked with interest. "Some ten or twelve, but none which present any feature of interest. They are important, you understand, without being interesting. Indeed, I have found that it is usually in unimportant matters that there is a field for the observation, and for the quick analysis of cause and effect which gives the charm to an investigation. The larger crimes are apt to be the simpler, for the bigger the crime the more obvious, as a rule, is the motive. In these cases, save for one rather intricate matter which has been referred to me from Marseilles, there is nothing which presents any features of interest. It is possible, however, that I may have something better before very many minutes are over, for this is one of my clients, or I am much mistaken." He had risen from his chair and was standing between the parted blinds gazing down into the dull neutral-tinted London street. Looking over his shoulder, I saw that on the pavement opposite there stood a large woman with a heavy fur boa round her neck, and a large curling red feather in a broad-brimmed hat which was tilted in a coquettish Duchess of Devonshire fashion over her ear. From under this great panoply she peeped up in a nervous, hesitating fashion at our windows, while her body oscillated backward and forward, and her fingers fidgeted with her glove buttons. Suddenly, with a plunge, as of the swimmer who leaves the bank, she hurried across the road, and we heard the sharp clang of the bell. "I have seen those symptoms before," said Holmes, throwing his cigarette into the fire. "Oscillation upon the pavement always means an affaire de coeur. She would like advice, but is not sure that the matter is not too delicate for communication. And yet even here we may discriminate. When a woman has been seriously wronged by a man she no longer oscillates, and the usual symptom is a broken bell wire. Here we may take it that there is a love matter, but that the maiden is not so much angry as perplexed, or grieved. But here she comes in person to resolve our doubts." As he spoke there was a tap at the door, and the boy in buttons entered to announce Miss Mary Sutherland, while the lady herself loomed behind his small black figure like a full-sailed merchant-man behind a tiny pilot boat. Sherlock Holmes welcomed her with the easy courtesy for which he was remarkable, and, having closed the door and bowed her into an armchair, he looked her over in the minute and yet abstracted fashion which was peculiar to him. "Do you not find," he said, "that with your short sight it is a little trying to do so much typewriting?" "I did at first," she answered, "but now I know where the letters are without looking." Then, suddenly realising the full purport of his words, she gave a violent start and looked up, with fear and astonishment upon her broad, good-humoured face. "You've heard about me, Mr. Holmes," she cried, "else how could you know all that?" "Never mind," said Holmes, laughing; "it is my business to know things. Perhaps I have trained myself to see what others overlook. If not, why should you come to consult me?" "I came to you, sir, because I heard of you from Mrs. Etherege, whose husband you found so easy when the police and everyone had given him up for dead. Oh, Mr. Holmes, I wish you would do as much for me. I'm not rich, but still I have a hundred a year in my own right, besides the little that I make by the machine, and I would give it all to know what has become of Mr. Hosmer Angel." "Why did you come away to consult me in such a hurry?" asked Sherlock Holmes, with his finger-tips together and his eyes to the ceiling. Again a startled look came over the somewhat vacuous face of Miss Mary Sutherland. "Yes, I did bang out of the house," she said, "for it made me angry to see the easy way in which Mr. Windibank--that is, my father--took it all. He would not go to the police, and he would not go to you, and so at last, as he would do nothing and kept on saying that there was no harm done, it made me mad, and I just on with my things and came right away to you." "Your father," said Holmes, "your stepfather, surely, since the name is different." "Yes, my stepfather. I call him father, though it sounds funny, too, for he is only five years and two months older than myself." "And your mother is alive?" "Oh, yes, mother is alive and well. I wasn't best pleased, Mr. Holmes, when she married again so soon after father's death, and a man who was nearly fifteen years younger than herself. Father was a plumber in the Tottenham Court Road, and he left a tidy business behind him, which mother carried on with Mr. Hardy, the foreman; but when Mr. Windibank came he made her sell the business, for he was very superior, being a traveller in wines. They got 4700 pounds for the goodwill and interest, which wasn't near as much as father could have got if he had been alive." I had expected to see Sherlock Holmes impatient under this rambling and inconsequential narrative, but, on the contrary, he had listened with the greatest concentration of attention. "Your own little income," he asked, "does it come out of the business?" "Oh, no, sir. It is quite separate and was left me by my uncle Ned in Auckland. It is in New Zealand stock, paying 4 1/2 per cent. Two thousand five hundred pounds was the amount, but I can only touch the interest." "You interest me extremely," said Holmes. "And since you draw so large a sum as a hundred a year, with what you earn into the bargain, you no doubt travel a little and indulge yourself in every way. I believe that a single lady can get on very nicely upon an income of about 60 pounds." "I could do with much less than that, Mr. Holmes, but you understand that as long as I live at home I don't wish to be a burden to them, and so they have the use of the money just while I am staying with them. Of course, that is only just for the time. Mr. Windibank draws my interest every quarter and pays it over to mother, and I find that I can do pretty well with what I earn at typewriting. It brings me twopence a sheet, and I can often do from fifteen to twenty sheets in a day." "You have made your position very clear to me," said Holmes. "This is my friend, Dr. Watson, before whom you can speak as freely as before myself. Kindly tell us now all about your connection with Mr. Hosmer Angel." A flush stole over Miss Sutherland's face, and she picked nervously at the fringe of her jacket. "I met him first at the gasfitters' ball," she said. "They used to send father tickets when he was alive, and then afterwards they remembered us, and sent them to mother. Mr. Windibank did not wish us to go. He never did wish us to go anywhere. He would get quite mad if I wanted so much as to join a Sunday-school treat. But this time I was set on going, and I would go; for what right had he to prevent? He said the folk were not fit for us to know, when all father's friends were to be there. And he said that I had nothing fit to wear, when I had my purple plush that I had never so much as taken out of the drawer. At last, when nothing else would do, he went off to France upon the business of the firm, but we went, mother and I, with Mr. Hardy, who used to be our foreman, and it was there I met Mr. Hosmer Angel." "I suppose," said Holmes, "that when Mr. Windibank came back from France he was very annoyed at your having gone to the ball." "Oh, well, he was very good about it. He laughed, I remember, and shrugged his shoulders, and said there was no use denying anything to a woman, for she would have her way." "I see. Then at the gasfitters' ball you met, as I understand, a gentleman called Mr. Hosmer Angel." "Yes, sir. I met him that night, and he called next day to ask if we had got home all safe, and after that we met him--that is to say, Mr. Holmes, I met him twice for walks, but after that father came back again, and Mr. Hosmer Angel could not come to the house any more." "No?" "Well, you know father didn't like anything of the sort. He wouldn't have any visitors if he could help it, and he used to say that a woman should be happy in her own family circle. But then, as I used to say to mother, a woman wants her own circle to begin with, and I had not got mine yet." "But how about Mr. Hosmer Angel? Did he make no attempt to see you?" "Well, father was going off to France again in a week, and Hosmer wrote and said that it would be safer and better not to see each other until he had gone. We could write in the meantime, and he used to write every day. I took the letters in in the morning, so there was no need for father to know." "Were you engaged to the gentleman at this time?" "Oh, yes, Mr. Holmes. We were engaged after the first walk that we took. Hosmer--Mr. Angel--was a cashier in an office in Leadenhall Street--and--" "What office?" "That's the worst of it, Mr. Holmes, I don't know." "Where did he live, then?" "He slept on the premises." "And you don't know his address?" "No--except that it was Leadenhall Street." "Where did you address your letters, then?" "To the Leadenhall Street Post Office, to be left till called for. He said that if they were sent to the office he would be chaffed by all the other clerks about having letters from a lady, so I offered to typewrite them, like he did his, but he wouldn't have that, for he said that when I wrote them they seemed to come from me, but when they were typewritten he always felt that the machine had come between us. That will just show you how fond he was of me, Mr. Holmes, and the little things that he would think of." "It was most suggestive," said Holmes. "It has long been an axiom of mine that the little things are infinitely the most important. Can you remember any other little things about Mr. Hosmer Angel?" "He was a very shy man, Mr. Holmes. He would rather walk with me in the evening than in the daylight, for he said that he hated to be conspicuous. Very retiring and gentlemanly he was. Even his voice was gentle. He'd had the quinsy and swollen glands when he was young, he told me, and it had left him with a weak throat, and a hesitating, whispering fashion of speech. He was always well dressed, very neat and plain, but his eyes were weak, just as mine are, and he wore tinted glasses against the glare." "Well, and what happened when Mr. Windibank, your stepfather, returned to France?" "Mr. Hosmer Angel came to the house again and proposed that we should marry before father came back. He was in dreadful earnest and made me swear, with my hands on the Testament, that whatever happened I would always be true to him. Mother said he was quite right to make me swear, and that it was a sign of his passion. Mother was all in his favour from the first and was even fonder of him than I was. Then, when they talked of marrying within the week, I began to ask about father; but they both said never to mind about father, but just to tell him afterwards, and mother said she would make it all right with him. I didn't quite like that, Mr. Holmes. It seemed funny that I should ask his leave, as he was only a few years older than me; but I didn't want to do anything on the sly, so I wrote to father at Bordeaux, where the company has its French offices, but the letter came back to me on the very morning of the wedding." "It missed him, then?" "Yes, sir; for he had started to England just before it arrived." "Ha! that was unfortunate. Your wedding was arranged, then, for the Friday. Was it to be in church?" "Yes, sir, but very quietly. It was to be at St. Saviour's, near King's Cross, and we were to have breakfast afterwards at the St. Pancras Hotel. Hosmer came for us in a hansom, but as there were two of us he put us both into it and stepped himself into a four-wheeler, which happened to be the only other cab in the street. We got to the church first, and when the four-wheeler drove up we waited for him to step out, but he never did, and when the cabman got down from the box and looked there was no one there! The cabman said that he could not imagine what had become of him, for he had seen him get in with his own eyes. That was last Friday, Mr. Holmes, and I have never seen or heard anything since then to throw any light upon what became of him." "It seems to me that you have been very shamefully treated," said Holmes. "Oh, no, sir! He was too good and kind to leave me so. Why, all the morning he was saying to me that, whatever happened, I was to be true; and that even if something quite unforeseen occurred to separate us, I was always to remember that I was pledged to him, and that he would claim his pledge sooner or later. It seemed strange talk for a wedding-morning, but what has happened since gives a meaning to it." "Most certainly it does. Your own opinion is, then, that some unforeseen catastrophe has occurred to him?" "Yes, sir. I believe that he foresaw some danger, or else he would not have talked so. And then I think that what he foresaw happened." "But you have no notion as to what it could have been?" "None." "One more question. How did your mother take the matter?" "She was angry, and said that I was never to speak of the matter again." "And your father? Did you tell him?" "Yes; and he seemed to think, with me, that something had happened, and that I should hear of Hosmer again. As he said, what interest could anyone have in bringing me to the doors of the church, and then leaving me? Now, if he had borrowed my money, or if he had married me and got my money settled on him, there might be some reason, but Hosmer was very independent about money and never would look at a shilling of mine. And yet, what could have happened? And why could he not write? Oh, it drives me half-mad to think of it, and I can't sleep a wink at night." She pulled a little handkerchief out of her muff and began to sob heavily into it. "I shall glance into the case for you," said Holmes, rising, "and I have no doubt that we shall reach some definite result. Let the weight of the matter rest upon me now, and do not let your mind dwell upon it further. Above all, try to let Mr. Hosmer Angel vanish from your memory, as he has done from your life." "Then you don't think I'll see him again?" "I fear not." "Then what has happened to him?" "You will leave that question in my hands. I should like an accurate description of him and any letters of his which you can spare." "I advertised for him in last Saturday's Chronicle," said she. "Here is the slip and here are four letters from him." "Thank you. And your address?" "No. 31 Lyon Place, Camberwell." "Mr. Angel's address you never had, I understand. Where is your father's place of business?" "He travels for Westhouse & Marbank, the great claret importers of Fenchurch Street." "Thank you. You have made your statement very clearly. You will leave the papers here, and remember the advice which I have given you. Let the whole incident be a sealed book, and do not allow it to affect your life." "You are very kind, Mr. Holmes, but I cannot do that. I shall be true to Hosmer. He shall find me ready when he comes back." For all the preposterous hat and the vacuous face, there was something noble in the simple faith of our visitor which compelled our respect. She laid her little bundle of papers upon the table and went her way, with a promise to come again whenever she might be summoned. Sherlock Holmes sat silent for a few minutes with his fingertips still pressed together, his legs stretched out in front of him, and his gaze directed upward to the ceiling. Then he took down from the rack the old and oily clay pipe, which was to him as a counsellor, and, having lit it, he leaned back in his chair, with the thick blue cloud-wreaths spinning up from him, and a look of infinite languor in his face. "Quite an interesting study, that maiden," he observed. "I found her more interesting than her little problem, which, by the way, is rather a trite one. You will find parallel cases, if you consult my index, in Andover in '77, and there was something of the sort at The Hague last year. Old as is the idea, however, there were one or two details which were new to me. But the maiden herself was most instructive." "You appeared to read a good deal upon her which was quite invisible to me," I remarked. "Not invisible but unnoticed, Watson. You did not know where to look, and so you missed all that was important. I can never bring you to realise the importance of sleeves, the suggestiveness of thumb-nails, or the great issues that may hang from a boot-lace. Now, what did you gather from that woman's appearance? Describe it." "Well, she had a slate-coloured, broad-brimmed straw hat, with a feather of a brickish red. Her jacket was black, with black beads sewn upon it, and a fringe of little black jet ornaments. Her dress was brown, rather darker than coffee colour, with a little purple plush at the neck and sleeves. Her gloves were greyish and were worn through at the right forefinger. Her boots I didn't observe. She had small round, hanging gold earrings, and a general air of being fairly well-to-do in a vulgar, comfortable, easy-going way." Sherlock Holmes clapped his hands softly together and chuckled. "'Pon my word, Watson, you are coming along wonderfully. You have really done very well indeed. It is true that you have missed everything of importance, but you have hit upon the method, and you have a quick eye for colour. Never trust to general impressions, my boy, but concentrate yourself upon details. My first glance is always at a woman's sleeve. In a man it is perhaps better first to take the knee of the trouser. As you observe, this woman had plush upon her sleeves, which is a most useful material for showing traces. The double line a little above the wrist, where the typewritist presses against the table, was beautifully defined. The sewing-machine, of the hand type, leaves a similar mark, but only on the left arm, and on the side of it farthest from the thumb, instead of being right across the broadest part, as this was. I then glanced at her face, and, observing the dint of a pince-nez at either side of her nose, I ventured a remark upon short sight and typewriting, which seemed to surprise her." "It surprised me." "But, surely, it was obvious. I was then much surprised and interested on glancing down to observe that, though the boots which she was wearing were not unlike each other, they were really odd ones; the one having a slightly decorated toe-cap, and the other a plain one. One was buttoned only in the two lower buttons out of five, and the other at the first, third, and fifth. Now, when you see that a young lady, otherwise neatly dressed, has come away from home with odd boots, half-buttoned, it is no great deduction to say that she came away in a hurry." "And what else?" I asked, keenly interested, as I always was, by my friend's incisive reasoning. "I noted, in passing, that she had written a note before leaving home but after being fully dressed. You observed that her right glove was torn at the forefinger, but you did not apparently see that both glove and finger were stained with violet ink. She had written in a hurry and dipped her pen too deep. It must have been this morning, or the mark would not remain clear upon the finger. All this is amusing, though rather elementary, but I must go back to business, Watson. Would you mind reading me the advertised description of Mr. Hosmer Angel?" I held the little printed slip to the light. "Missing," it said, "on the morning of the fourteenth, a gentleman named Hosmer Angel. About five ft. seven in. in height; strongly built, sallow complexion, black hair, a little bald in the centre, bushy, black side-whiskers and moustache; tinted glasses, slight infirmity of speech. Was dressed, when last seen, in black frock-coat faced with silk, black waistcoat, gold Albert chain, and grey Harris tweed trousers, with brown gaiters over elastic-sided boots. Known to have been employed in an office in Leadenhall Street. Anybody bringing--" "That will do," said Holmes. "As to the letters," he continued, glancing over them, "they are very commonplace. Absolutely no clue in them to Mr. Angel, save that he quotes Balzac once. There is one remarkable point, however, which will no doubt strike you." "They are typewritten," I remarked. "Not only that, but the signature is typewritten. Look at the neat little 'Hosmer Angel' at the bottom. There is a date, you see, but no superscription except Leadenhall Street, which is rather vague. The point about the signature is very suggestive--in fact, we may call it conclusive." "Of what?" "My dear fellow, is it possible you do not see how strongly it bears upon the case?" "I cannot say that I do unless it were that he wished to be able to deny his signature if an action for breach of promise were instituted." "No, that was not the point. However, I shall write two letters, which should settle the matter. One is to a firm in the City, the other is to the young lady's stepfather, Mr. Windibank, asking him whether he could meet us here at six o'clock tomorrow evening. It is just as well that we should do business with the male relatives. And now, Doctor, we can do nothing until the answers to those letters come, so we may put our little problem upon the shelf for the interim." I had had so many reasons to believe in my friend's subtle powers of reasoning and extraordinary energy in action that I felt that he must have some solid grounds for the assured and easy demeanour with which he treated the singular mystery which he had been called upon to fathom. Once only had I known him to fail, in the case of the King of Bohemia and of the Irene Adler photograph; but when I looked back to the weird business of the Sign of Four, and the extraordinary circumstances connected with the Study in Scarlet, I felt that it would be a strange tangle indeed which he could not unravel. I left him then, still puffing at his black clay pipe, with the conviction that when I came again on the next evening I would find that he held in his hands all the clues which would lead up to the identity of the disappearing bridegroom of Miss Mary Sutherland. A professional case of great gravity was engaging my own attention at the time, and the whole of next day I was busy at the bedside of the sufferer. It was not until close upon six o'clock that I found myself free and was able to spring into a hansom and drive to Baker Street, half afraid that I might be too late to assist at the dénouement of the little mystery. I found Sherlock Holmes alone, however, half asleep, with his long, thin form curled up in the recesses of his armchair. A formidable array of bottles and test-tubes, with the pungent cleanly smell of hydrochloric acid, told me that he had spent his day in the chemical work which was so dear to him. "Well, have you solved it?" I asked as I entered. "Yes. It was the bisulphate of baryta." "No, no, the mystery!" I cried. "Oh, that! I thought of the salt that I have been working upon. There was never any mystery in the matter, though, as I said yesterday, some of the details are of interest. The only drawback is that there is no law, I fear, that can touch the scoundrel." "Who was he, then, and what was his object in deserting Miss Sutherland?" The question was hardly out of my mouth, and Holmes had not yet opened his lips to reply, when we heard a heavy footfall in the passage and a tap at the door. "This is the girl's stepfather, Mr. James Windibank," said Holmes. "He has written to me to say that he would be here at six. Come in!" The man who entered was a sturdy, middle-sized fellow, some thirty years of age, clean-shaven, and sallow-skinned, with a bland, insinuating manner, and a pair of wonderfully sharp and penetrating grey eyes. He shot a questioning glance at each of us, placed his shiny top-hat upon the sideboard, and with a slight bow sidled down into the nearest chair. "Good-evening, Mr. James Windibank," said Holmes. "I think that this typewritten letter is from you, in which you made an appointment with me for six o'clock?" "Yes, sir. I am afraid that I am a little late, but I am not quite my own master, you know. I am sorry that Miss Sutherland has troubled you about this little matter, for I think it is far better not to wash linen of the sort in public. It was quite against my wishes that she came, but she is a very excitable, impulsive girl, as you may have noticed, and she is not easily controlled when she has made up her mind on a point. Of course, I did not mind you so much, as you are not connected with the official police, but it is not pleasant to have a family misfortune like this noised abroad. Besides, it is a useless expense, for how could you possibly find this Hosmer Angel?" "On the contrary," said Holmes quietly; "I have every reason to believe that I will succeed in discovering Mr. Hosmer Angel." Mr. Windibank gave a violent start and dropped his gloves. "I am delighted to hear it," he said. "It is a curious thing," remarked Holmes, "that a typewriter has really quite as much individuality as a man's handwriting. Unless they are quite new, no two of them write exactly alike. Some letters get more worn than others, and some wear only on one side. Now, you remark in this note of yours, Mr. Windibank, that in every case there is some little slurring over of the 'e,' and a slight defect in the tail of the 'r.' There are fourteen other characteristics, but those are the more obvious." "We do all our correspondence with this machine at the office, and no doubt it is a little worn," our visitor answered, glancing keenly at Holmes with his bright little eyes. "And now I will show you what is really a very interesting study, Mr. Windibank," Holmes continued. "I think of writing another little monograph some of these days on the typewriter and its relation to crime. It is a subject to which I have devoted some little attention. I have here four letters which purport to come from the missing man. They are all typewritten. In each case, not only are the 'e's' slurred and the 'r's' tailless, but you will observe, if you care to use my magnifying lens, that the fourteen other characteristics to which I have alluded are there as well." Mr. Windibank sprang out of his chair and picked up his hat. "I cannot waste time over this sort of fantastic talk, Mr. Holmes," he said. "If you can catch the man, catch him, and let me know when you have done it." "Certainly," said Holmes, stepping over and turning the key in the door. "I let you know, then, that I have caught him!" "What! where?" shouted Mr. Windibank, turning white to his lips and glancing about him like a rat in a trap. "Oh, it won't do--really it won't," said Holmes suavely. "There is no possible getting out of it, Mr. Windibank. It is quite too transparent, and it was a very bad compliment when you said that it was impossible for me to solve so simple a question. That's right! Sit down and let us talk it over." Our visitor collapsed into a chair, with a ghastly face and a glitter of moisture on his brow. "It--it's not actionable," he stammered. "I am very much afraid that it is not. But between ourselves, Windibank, it was as cruel and selfish and heartless a trick in a petty way as ever came before me. Now, let me just run over the course of events, and you will contradict me if I go wrong." The man sat huddled up in his chair, with his head sunk upon his breast, like one who is utterly crushed. Holmes stuck his feet up on the corner of the mantelpiece and, leaning back with his hands in his pockets, began talking, rather to himself, as it seemed, than to us. "The man married a woman very much older than himself for her money," said he, "and he enjoyed the use of the money of the daughter as long as she lived with them. It was a considerable sum, for people in their position, and the loss of it would have made a serious difference. It was worth an effort to preserve it. The daughter was of a good, amiable disposition, but affectionate and warm-hearted in her ways, so that it was evident that with her fair personal advantages, and her little income, she would not be allowed to remain single long. Now her marriage would mean, of course, the loss of a hundred a year, so what does her stepfather do to prevent it? He takes the obvious course of keeping her at home and forbidding her to seek the company of people of her own age. But soon he found that that would not answer forever. She became restive, insisted upon her rights, and finally announced her positive intention of going to a certain ball. What does her clever stepfather do then? He conceives an idea more creditable to his head than to his heart. With the connivance and assistance of his wife he disguised himself, covered those keen eyes with tinted glasses, masked the face with a moustache and a pair of bushy whiskers, sunk that clear voice into an insinuating whisper, and doubly secure on account of the girl's short sight, he appears as Mr. Hosmer Angel, and keeps off other lovers by making love himself." "It was only a joke at first," groaned our visitor. "We never thought that she would have been so carried away." "Very likely not. However that may be, the young lady was very decidedly carried away, and, having quite made up her mind that her stepfather was in France, the suspicion of treachery never for an instant entered her mind. She was flattered by the gentleman's attentions, and the effect was increased by the loudly expressed admiration of her mother. Then Mr. Angel began to call, for it was obvious that the matter should be pushed as far as it would go if a real effect were to be produced. There were meetings, and an engagement, which would finally secure the girl's affections from turning towards anyone else. But the deception could not be kept up forever. These pretended journeys to France were rather cumbrous. The thing to do was clearly to bring the business to an end in such a dramatic manner that it would leave a permanent impression upon the young lady's mind and prevent her from looking upon any other suitor for some time to come. Hence those vows of fidelity exacted upon a Testament, and hence also the allusions to a possibility of something happening on the very morning of the wedding. James Windibank wished Miss Sutherland to be so bound to Hosmer Angel, and so uncertain as to his fate, that for ten years to come, at any rate, she would not listen to another man. As far as the church door he brought her, and then, as he could go no farther, he conveniently vanished away by the old trick of stepping in at one door of a four-wheeler and out at the other. I think that was the chain of events, Mr. Windibank!" Our visitor had recovered something of his assurance while Holmes had been talking, and he rose from his chair now with a cold sneer upon his pale face. "It may be so, or it may not, Mr. Holmes," said he, "but if you are so very sharp you ought to be sharp enough to know that it is you who are breaking the law now, and not me. I have done nothing actionable from the first, but as long as you keep that door locked you lay yourself open to an action for assault and illegal constraint." "The law cannot, as you say, touch you," said Holmes, unlocking and throwing open the door, "yet there never was a man who deserved punishment more. If the young lady has a brother or a friend, he ought to lay a whip across your shoulders. By Jove!" he continued, flushing up at the sight of the bitter sneer upon the man's face, "it is not part of my duties to my client, but here's a hunting crop handy, and I think I shall just treat myself to--" He took two swift steps to the whip, but before he could grasp it there was a wild clatter of steps upon the stairs, the heavy hall door banged, and from the window we could see Mr. James Windibank running at the top of his speed down the road. "There's a cold-blooded scoundrel!" said Holmes, laughing, as he threw himself down into his chair once more. "That fellow will rise from crime to crime until he does something very bad, and ends on a gallows. The case has, in some respects, been not entirely devoid of interest." "I cannot now entirely see all the steps of your reasoning," I remarked. "Well, of course it was obvious from the first that this Mr. Hosmer Angel must have some strong object for his curious conduct, and it was equally clear that the only man who really profited by the incident, as far as we could see, was the stepfather. Then the fact that the two men were never together, but that the one always appeared when the other was away, was suggestive. So were the tinted spectacles and the curious voice, which both hinted at a disguise, as did the bushy whiskers. My suspicions were all confirmed by his peculiar action in typewriting his signature, which, of course, inferred that his handwriting was so familiar to her that she would recognise even the smallest sample of it. You see all these isolated facts, together with many minor ones, all pointed in the same direction." "And how did you verify them?" "Having once spotted my man, it was easy to get corroboration. I knew the firm for which this man worked. Having taken the printed description. I eliminated everything from it which could be the result of a disguise--the whiskers, the glasses, the voice, and I sent it to the firm, with a request that they would inform me whether it answered to the description of any of their travellers. I had already noticed the peculiarities of the typewriter, and I wrote to the man himself at his business address asking him if he would come here. As I expected, his reply was typewritten and revealed the same trivial but characteristic defects. The same post brought me a letter from Westhouse & Marbank, of Fenchurch Street, to say that the description tallied in every respect with that of their employé, James Windibank. Voilà tout!" "And Miss Sutherland?" "If I tell her she will not believe me. You may remember the old Persian saying, 'There is danger for him who taketh the tiger cub, and danger also for whoso snatches a delusion from a woman.' There is as much sense in Hafiz as in Horace, and as much knowledge of the world." ADVENTURE IV. THE BOSCOMBE VALLEY MYSTERY We were seated at breakfast one morning, my wife and I, when the maid brought in a telegram. It was from Sherlock Holmes and ran in this way: "Have you a couple of days to spare? Have just been wired for from the west of England in connection with Boscombe Valley tragedy. Shall be glad if you will come with me. Air and scenery perfect. Leave Paddington by the 11:15." "What do you say, dear?" said my wife, looking across at me. "Will you go?" "I really don't know what to say. I have a fairly long list at present." "Oh, Anstruther would do your work for you. You have been looking a little pale lately. I think that the change would do you good, and you are always so interested in Mr. Sherlock Holmes' cases." "I should be ungrateful if I were not, seeing what I gained through one of them," I answered. "But if I am to go, I must pack at once, for I have only half an hour." My experience of camp life in Afghanistan had at least had the effect of making me a prompt and ready traveller. My wants were few and simple, so that in less than the time stated I was in a cab with my valise, rattling away to Paddington Station. Sherlock Holmes was pacing up and down the platform, his tall, gaunt figure made even gaunter and taller by his long grey travelling-cloak and close-fitting cloth cap. "It is really very good of you to come, Watson," said he. "It makes a considerable difference to me, having someone with me on whom I can thoroughly rely. Local aid is always either worthless or else biassed. If you will keep the two corner seats I shall get the tickets." We had the carriage to ourselves save for an immense litter of papers which Holmes had brought with him. Among these he rummaged and read, with intervals of note-taking and of meditation, until we were past Reading. Then he suddenly rolled them all into a gigantic ball and tossed them up onto the rack. "Have you heard anything of the case?" he asked. "Not a word. I have not seen a paper for some days." "The London press has not had very full accounts. I have just been looking through all the recent papers in order to master the particulars. It seems, from what I gather, to be one of those simple cases which are so extremely difficult." "That sounds a little paradoxical." "But it is profoundly true. Singularity is almost invariably a clue. The more featureless and commonplace a crime is, the more difficult it is to bring it home. In this case, however, they have established a very serious case against the son of the murdered man." "It is a murder, then?" "Well, it is conjectured to be so. I shall take nothing for granted until I have the opportunity of looking personally into it. I will explain the state of things to you, as far as I have been able to understand it, in a very few words. "Boscombe Valley is a country district not very far from Ross, in Herefordshire. The largest landed proprietor in that part is a Mr. John Turner, who made his money in Australia and returned some years ago to the old country. One of the farms which he held, that of Hatherley, was let to Mr. Charles McCarthy, who was also an ex-Australian. The men had known each other in the colonies, so that it was not unnatural that when they came to settle down they should do so as near each other as possible. Turner was apparently the richer man, so McCarthy became his tenant but still remained, it seems, upon terms of perfect equality, as they were frequently together. McCarthy had one son, a lad of eighteen, and Turner had an only daughter of the same age, but neither of them had wives living. They appear to have avoided the society of the neighbouring English families and to have led retired lives, though both the McCarthys were fond of sport and were frequently seen at the race-meetings of the neighbourhood. McCarthy kept two servants--a man and a girl. Turner had a considerable household, some half-dozen at the least. That is as much as I have been able to gather about the families. Now for the facts. "On June 3rd, that is, on Monday last, McCarthy left his house at Hatherley about three in the afternoon and walked down to the Boscombe Pool, which is a small lake formed by the spreading out of the stream which runs down the Boscombe Valley. He had been out with his serving-man in the morning at Ross, and he had told the man that he must hurry, as he had an appointment of importance to keep at three. From that appointment he never came back alive. "From Hatherley Farm-house to the Boscombe Pool is a quarter of a mile, and two people saw him as he passed over this ground. One was an old woman, whose name is not mentioned, and the other was William Crowder, a game-keeper in the employ of Mr. Turner. Both these witnesses depose that Mr. McCarthy was walking alone. The game-keeper adds that within a few minutes of his seeing Mr. McCarthy pass he had seen his son, Mr. James McCarthy, going the same way with a gun under his arm. To the best of his belief, the father was actually in sight at the time, and the son was following him. He thought no more of the matter until he heard in the evening of the tragedy that had occurred. "The two McCarthys were seen after the time when William Crowder, the game-keeper, lost sight of them. The Boscombe Pool is thickly wooded round, with just a fringe of grass and of reeds round the edge. A girl of fourteen, Patience Moran, who is the daughter of the lodge-keeper of the Boscombe Valley estate, was in one of the woods picking flowers. She states that while she was there she saw, at the border of the wood and close by the lake, Mr. McCarthy and his son, and that they appeared to be having a violent quarrel. She heard Mr. McCarthy the elder using very strong language to his son, and she saw the latter raise up his hand as if to strike his father. She was so frightened by their violence that she ran away and told her mother when she reached home that she had left the two McCarthys quarrelling near Boscombe Pool, and that she was afraid that they were going to fight. She had hardly said the words when young Mr. McCarthy came running up to the lodge to say that he had found his father dead in the wood, and to ask for the help of the lodge-keeper. He was much excited, without either his gun or his hat, and his right hand and sleeve were observed to be stained with fresh blood. On following him they found the dead body stretched out upon the grass beside the pool. The head had been beaten in by repeated blows of some heavy and blunt weapon. The injuries were such as might very well have been inflicted by the butt-end of his son's gun, which was found lying on the grass within a few paces of the body. Under these circumstances the young man was instantly arrested, and a verdict of 'wilful murder' having been returned at the inquest on Tuesday, he was on Wednesday brought before the magistrates at Ross, who have referred the case to the next Assizes. Those are the main facts of the case as they came out before the coroner and the police-court." "I could hardly imagine a more damning case," I remarked. "If ever circumstantial evidence pointed to a criminal it does so here." "Circumstantial evidence is a very tricky thing," answered Holmes thoughtfully. "It may seem to point very straight to one thing, but if you shift your own point of view a little, you may find it pointing in an equally uncompromising manner to something entirely different. It must be confessed, however, that the case looks exceedingly grave against the young man, and it is very possible that he is indeed the culprit. There are several people in the neighbourhood, however, and among them Miss Turner, the daughter of the neighbouring landowner, who believe in his innocence, and who have retained Lestrade, whom you may recollect in connection with the Study in Scarlet, to work out the case in his interest. Lestrade, being rather puzzled, has referred the case to me, and hence it is that two middle-aged gentlemen are flying westward at fifty miles an hour instead of quietly digesting their breakfasts at home." "I am afraid," said I, "that the facts are so obvious that you will find little credit to be gained out of this case." "There is nothing more deceptive than an obvious fact," he answered, laughing. "Besides, we may chance to hit upon some other obvious facts which may have been by no means obvious to Mr. Lestrade. You know me too well to think that I am boasting when I say that I shall either confirm or destroy his theory by means which he is quite incapable of employing, or even of understanding. To take the first example to hand, I very clearly perceive that in your bedroom the window is upon the right-hand side, and yet I question whether Mr. Lestrade would have noted even so self-evident a thing as that." "How on earth--" "My dear fellow, I know you well. I know the military neatness which characterises you. You shave every morning, and in this season you shave by the sunlight; but since your shaving is less and less complete as we get farther back on the left side, until it becomes positively slovenly as we get round the angle of the jaw, it is surely very clear that that side is less illuminated than the other. I could not imagine a man of your habits looking at himself in an equal light and being satisfied with such a result. I only quote this as a trivial example of observation and inference. Therein lies my métier, and it is just possible that it may be of some service in the investigation which lies before us. There are one or two minor points which were brought out in the inquest, and which are worth considering." "What are they?" "It appears that his arrest did not take place at once, but after the return to Hatherley Farm. On the inspector of constabulary informing him that he was a prisoner, he remarked that he was not surprised to hear it, and that it was no more than his deserts. This observation of his had the natural effect of removing any traces of doubt which might have remained in the minds of the coroner's jury." "It was a confession," I ejaculated. "No, for it was followed by a protestation of innocence." "Coming on the top of such a damning series of events, it was at least a most suspicious remark." "On the contrary," said Holmes, "it is the brightest rift which I can at present see in the clouds. However innocent he might be, he could not be such an absolute imbecile as not to see that the circumstances were very black against him. Had he appeared surprised at his own arrest, or feigned indignation at it, I should have looked upon it as highly suspicious, because such surprise or anger would not be natural under the circumstances, and yet might appear to be the best policy to a scheming man. His frank acceptance of the situation marks him as either an innocent man, or else as a man of considerable self-restraint and firmness. As to his remark about his deserts, it was also not unnatural if you consider that he stood beside the dead body of his father, and that there is no doubt that he had that very day so far forgotten his filial duty as to bandy words with him, and even, according to the little girl whose evidence is so important, to raise his hand as if to strike him. The self-reproach and contrition which are displayed in his remark appear to me to be the signs of a healthy mind rather than of a guilty one." I shook my head. "Many men have been hanged on far slighter evidence," I remarked. "So they have. And many men have been wrongfully hanged." "What is the young man's own account of the matter?" "It is, I am afraid, not very encouraging to his supporters, though there are one or two points in it which are suggestive. You will find it here, and may read it for yourself." He picked out from his bundle a copy of the local Herefordshire paper, and having turned down the sheet he pointed out the paragraph in which the unfortunate young man had given his own statement of what had occurred. I settled myself down in the corner of the carriage and read it very carefully. It ran in this way: "Mr. James McCarthy, the only son of the deceased, was then called and gave evidence as follows: 'I had been away from home for three days at Bristol, and had only just returned upon the morning of last Monday, the 3rd. My father was absent from home at the time of my arrival, and I was informed by the maid that he had driven over to Ross with John Cobb, the groom. Shortly after my return I heard the wheels of his trap in the yard, and, looking out of my window, I saw him get out and walk rapidly out of the yard, though I was not aware in which direction he was going. I then took my gun and strolled out in the direction of the Boscombe Pool, with the intention of visiting the rabbit warren which is upon the other side. On my way I saw William Crowder, the game-keeper, as he had stated in his evidence; but he is mistaken in thinking that I was following my father. I had no idea that he was in front of me. When about a hundred yards from the pool I heard a cry of "Cooee!" which was a usual signal between my father and myself. I then hurried forward, and found him standing by the pool. He appeared to be much surprised at seeing me and asked me rather roughly what I was doing there. A conversation ensued which led to high words and almost to blows, for my father was a man of a very violent temper. Seeing that his passion was becoming ungovernable, I left him and returned towards Hatherley Farm. I had not gone more than 150 yards, however, when I heard a hideous outcry behind me, which caused me to run back again. I found my father expiring upon the ground, with his head terribly injured. I dropped my gun and held him in my arms, but he almost instantly expired. I knelt beside him for some minutes, and then made my way to Mr. Turner's lodge-keeper, his house being the nearest, to ask for assistance. I saw no one near my father when I returned, and I have no idea how he came by his injuries. He was not a popular man, being somewhat cold and forbidding in his manners, but he had, as far as I know, no active enemies. I know nothing further of the matter.' "The Coroner: Did your father make any statement to you before he died? "Witness: He mumbled a few words, but I could only catch some allusion to a rat. "The Coroner: What did you understand by that? "Witness: It conveyed no meaning to me. I thought that he was delirious. "The Coroner: What was the point upon which you and your father had this final quarrel? "Witness: I should prefer not to answer. "The Coroner: I am afraid that I must press it. "Witness: It is really impossible for me to tell you. I can assure you that it has nothing to do with the sad tragedy which followed. "The Coroner: That is for the court to decide. I need not point out to you that your refusal to answer will prejudice your case considerably in any future proceedings which may arise. "Witness: I must still refuse. "The Coroner: I understand that the cry of 'Cooee' was a common signal between you and your father? "Witness: It was. "The Coroner: How was it, then, that he uttered it before he saw you, and before he even knew that you had returned from Bristol? "Witness (with considerable confusion): I do not know. "A Juryman: Did you see nothing which aroused your suspicions when you returned on hearing the cry and found your father fatally injured? "Witness: Nothing definite. "The Coroner: What do you mean? "Witness: I was so disturbed and excited as I rushed out into the open, that I could think of nothing except of my father. Yet I have a vague impression that as I ran forward something lay upon the ground to the left of me. It seemed to me to be something grey in colour, a coat of some sort, or a plaid perhaps. When I rose from my father I looked round for it, but it was gone. "'Do you mean that it disappeared before you went for help?' "'Yes, it was gone.' "'You cannot say what it was?' "'No, I had a feeling something was there.' "'How far from the body?' "'A dozen yards or so.' "'And how far from the edge of the wood?' "'About the same.' "'Then if it was removed it was while you were within a dozen yards of it?' "'Yes, but with my back towards it.' "This concluded the examination of the witness." "I see," said I as I glanced down the column, "that the coroner in his concluding remarks was rather severe upon young McCarthy. He calls attention, and with reason, to the discrepancy about his father having signalled to him before seeing him, also to his refusal to give details of his conversation with his father, and his singular account of his father's dying words. They are all, as he remarks, very much against the son." Holmes laughed softly to himself and stretched himself out upon the cushioned seat. "Both you and the coroner have been at some pains," said he, "to single out the very strongest points in the young man's favour. Don't you see that you alternately give him credit for having too much imagination and too little? Too little, if he could not invent a cause of quarrel which would give him the sympathy of the jury; too much, if he evolved from his own inner consciousness anything so outré as a dying reference to a rat, and the incident of the vanishing cloth. No, sir, I shall approach this case from the point of view that what this young man says is true, and we shall see whither that hypothesis will lead us. And now here is my pocket Petrarch, and not another word shall I say of this case until we are on the scene of action. We lunch at Swindon, and I see that we shall be there in twenty minutes." It was nearly four o'clock when we at last, after passing through the beautiful Stroud Valley, and over the broad gleaming Severn, found ourselves at the pretty little country-town of Ross. A lean, ferret-like man, furtive and sly-looking, was waiting for us upon the platform. In spite of the light brown dustcoat and leather-leggings which he wore in deference to his rustic surroundings, I had no difficulty in recognising Lestrade, of Scotland Yard. With him we drove to the Hereford Arms where a room had already been engaged for us. "I have ordered a carriage," said Lestrade as we sat over a cup of tea. "I knew your energetic nature, and that you would not be happy until you had been on the scene of the crime." "It was very nice and complimentary of you," Holmes answered. "It is entirely a question of barometric pressure." Lestrade looked startled. "I do not quite follow," he said. "How is the glass? Twenty-nine, I see. No wind, and not a cloud in the sky. I have a caseful of cigarettes here which need smoking, and the sofa is very much superior to the usual country hotel abomination. I do not think that it is probable that I shall use the carriage to-night." Lestrade laughed indulgently. "You have, no doubt, already formed your conclusions from the newspapers," he said. "The case is as plain as a pikestaff, and the more one goes into it the plainer it becomes. Still, of course, one can't refuse a lady, and such a very positive one, too. She has heard of you, and would have your opinion, though I repeatedly told her that there was nothing which you could do which I had not already done. Why, bless my soul! here is her carriage at the door." He had hardly spoken before there rushed into the room one of the most lovely young women that I have ever seen in my life. Her violet eyes shining, her lips parted, a pink flush upon her cheeks, all thought of her natural reserve lost in her overpowering excitement and concern. "Oh, Mr. Sherlock Holmes!" she cried, glancing from one to the other of us, and finally, with a woman's quick intuition, fastening upon my companion, "I am so glad that you have come. I have driven down to tell you so. I know that James didn't do it. I know it, and I want you to start upon your work knowing it, too. Never let yourself doubt upon that point. We have known each other since we were little children, and I know his faults as no one else does; but he is too tender-hearted to hurt a fly. Such a charge is absurd to anyone who really knows him." "I hope we may clear him, Miss Turner," said Sherlock Holmes. "You may rely upon my doing all that I can." "But you have read the evidence. You have formed some conclusion? Do you not see some loophole, some flaw? Do you not yourself think that he is innocent?" "I think that it is very probable." "There, now!" she cried, throwing back her head and looking defiantly at Lestrade. "You hear! He gives me hopes." Lestrade shrugged his shoulders. "I am afraid that my colleague has been a little quick in forming his conclusions," he said. "But he is right. Oh! I know that he is right. James never did it. And about his quarrel with his father, I am sure that the reason why he would not speak about it to the coroner was because I was concerned in it." "In what way?" asked Holmes. "It is no time for me to hide anything. James and his father had many disagreements about me. Mr. McCarthy was very anxious that there should be a marriage between us. James and I have always loved each other as brother and sister; but of course he is young and has seen very little of life yet, and--and--well, he naturally did not wish to do anything like that yet. So there were quarrels, and this, I am sure, was one of them." "And your father?" asked Holmes. "Was he in favour of such a union?" "No, he was averse to it also. No one but Mr. McCarthy was in favour of it." A quick blush passed over her fresh young face as Holmes shot one of his keen, questioning glances at her. "Thank you for this information," said he. "May I see your father if I call to-morrow?" "I am afraid the doctor won't allow it." "The doctor?" "Yes, have you not heard? Poor father has never been strong for years back, but this has broken him down completely. He has taken to his bed, and Dr. Willows says that he is a wreck and that his nervous system is shattered. Mr. McCarthy was the only man alive who had known dad in the old days in Victoria." "Ha! In Victoria! That is important." "Yes, at the mines." "Quite so; at the gold-mines, where, as I understand, Mr. Turner made his money." "Yes, certainly." "Thank you, Miss Turner. You have been of material assistance to me." "You will tell me if you have any news to-morrow. No doubt you will go to the prison to see James. Oh, if you do, Mr. Holmes, do tell him that I know him to be innocent." "I will, Miss Turner." "I must go home now, for dad is very ill, and he misses me so if I leave him. Good-bye, and God help you in your undertaking." She hurried from the room as impulsively as she had entered, and we heard the wheels of her carriage rattle off down the street. "I am ashamed of you, Holmes," said Lestrade with dignity after a few minutes' silence. "Why should you raise up hopes which you are bound to disappoint? I am not over-tender of heart, but I call it cruel." "I think that I see my way to clearing James McCarthy," said Holmes. "Have you an order to see him in prison?" "Yes, but only for you and me." "Then I shall reconsider my resolution about going out. We have still time to take a train to Hereford and see him to-night?" "Ample." "Then let us do so. Watson, I fear that you will find it very slow, but I shall only be away a couple of hours." I walked down to the station with them, and then wandered through the streets of the little town, finally returning to the hotel, where I lay upon the sofa and tried to interest myself in a yellow-backed novel. The puny plot of the story was so thin, however, when compared to the deep mystery through which we were groping, and I found my attention wander so continually from the action to the fact, that I at last flung it across the room and gave myself up entirely to a consideration of the events of the day. Supposing that this unhappy young man's story were absolutely true, then what hellish thing, what absolutely unforeseen and extraordinary calamity could have occurred between the time when he parted from his father, and the moment when, drawn back by his screams, he rushed into the glade? It was something terrible and deadly. What could it be? Might not the nature of the injuries reveal something to my medical instincts? I rang the bell and called for the weekly county paper, which contained a verbatim account of the inquest. In the surgeon's deposition it was stated that the posterior third of the left parietal bone and the left half of the occipital bone had been shattered by a heavy blow from a blunt weapon. I marked the spot upon my own head. Clearly such a blow must have been struck from behind. That was to some extent in favour of the accused, as when seen quarrelling he was face to face with his father. Still, it did not go for very much, for the older man might have turned his back before the blow fell. Still, it might be worth while to call Holmes' attention to it. Then there was the peculiar dying reference to a rat. What could that mean? It could not be delirium. A man dying from a sudden blow does not commonly become delirious. No, it was more likely to be an attempt to explain how he met his fate. But what could it indicate? I cudgelled my brains to find some possible explanation. And then the incident of the grey cloth seen by young McCarthy. If that were true the murderer must have dropped some part of his dress, presumably his overcoat, in his flight, and must have had the hardihood to return and to carry it away at the instant when the son was kneeling with his back turned not a dozen paces off. What a tissue of mysteries and improbabilities the whole thing was! I did not wonder at Lestrade's opinion, and yet I had so much faith in Sherlock Holmes' insight that I could not lose hope as long as every fresh fact seemed to strengthen his conviction of young McCarthy's innocence. It was late before Sherlock Holmes returned. He came back alone, for Lestrade was staying in lodgings in the town. "The glass still keeps very high," he remarked as he sat down. "It is of importance that it should not rain before we are able to go over the ground. On the other hand, a man should be at his very best and keenest for such nice work as that, and I did not wish to do it when fagged by a long journey. I have seen young McCarthy." "And what did you learn from him?" "Nothing." "Could he throw no light?" "None at all. I was inclined to think at one time that he knew who had done it and was screening him or her, but I am convinced now that he is as puzzled as everyone else. He is not a very quick-witted youth, though comely to look at and, I should think, sound at heart." "I cannot admire his taste," I remarked, "if it is indeed a fact that he was averse to a marriage with so charming a young lady as this Miss Turner." "Ah, thereby hangs a rather painful tale. This fellow is madly, insanely, in love with her, but some two years ago, when he was only a lad, and before he really knew her, for she had been away five years at a boarding-school, what does the idiot do but get into the clutches of a barmaid in Bristol and marry her at a registry office? No one knows a word of the matter, but you can imagine how maddening it must be to him to be upbraided for not doing what he would give his very eyes to do, but what he knows to be absolutely impossible. It was sheer frenzy of this sort which made him throw his hands up into the air when his father, at their last interview, was goading him on to propose to Miss Turner. On the other hand, he had no means of supporting himself, and his father, who was by all accounts a very hard man, would have thrown him over utterly had he known the truth. It was with his barmaid wife that he had spent the last three days in Bristol, and his father did not know where he was. Mark that point. It is of importance. Good has come out of evil, however, for the barmaid, finding from the papers that he is in serious trouble and likely to be hanged, has thrown him over utterly and has written to him to say that she has a husband already in the Bermuda Dockyard, so that there is really no tie between them. I think that that bit of news has consoled young McCarthy for all that he has suffered." "But if he is innocent, who has done it?" "Ah! who? I would call your attention very particularly to two points. One is that the murdered man had an appointment with someone at the pool, and that the someone could not have been his son, for his son was away, and he did not know when he would return. The second is that the murdered man was heard to cry 'Cooee!' before he knew that his son had returned. Those are the crucial points upon which the case depends. And now let us talk about George Meredith, if you please, and we shall leave all minor matters until to-morrow." There was no rain, as Holmes had foretold, and the morning broke bright and cloudless. At nine o'clock Lestrade called for us with the carriage, and we set off for Hatherley Farm and the Boscombe Pool. "There is serious news this morning," Lestrade observed. "It is said that Mr. Turner, of the Hall, is so ill that his life is despaired of." "An elderly man, I presume?" said Holmes. "About sixty; but his constitution has been shattered by his life abroad, and he has been in failing health for some time. This business has had a very bad effect upon him. He was an old friend of McCarthy's, and, I may add, a great benefactor to him, for I have learned that he gave him Hatherley Farm rent free." "Indeed! That is interesting," said Holmes. "Oh, yes! In a hundred other ways he has helped him. Everybody about here speaks of his kindness to him." "Really! Does it not strike you as a little singular that this McCarthy, who appears to have had little of his own, and to have been under such obligations to Turner, should still talk of marrying his son to Turner's daughter, who is, presumably, heiress to the estate, and that in such a very cocksure manner, as if it were merely a case of a proposal and all else would follow? It is the more strange, since we know that Turner himself was averse to the idea. The daughter told us as much. Do you not deduce something from that?" "We have got to the deductions and the inferences," said Lestrade, winking at me. "I find it hard enough to tackle facts, Holmes, without flying away after theories and fancies." "You are right," said Holmes demurely; "you do find it very hard to tackle the facts." "Anyhow, I have grasped one fact which you seem to find it difficult to get hold of," replied Lestrade with some warmth. "And that is--" "That McCarthy senior met his death from McCarthy junior and that all theories to the contrary are the merest moonshine." "Well, moonshine is a brighter thing than fog," said Holmes, laughing. "But I am very much mistaken if this is not Hatherley Farm upon the left." "Yes, that is it." It was a widespread, comfortable-looking building, two-storied, slate-roofed, with great yellow blotches of lichen upon the grey walls. The drawn blinds and the smokeless chimneys, however, gave it a stricken look, as though the weight of this horror still lay heavy upon it. We called at the door, when the maid, at Holmes' request, showed us the boots which her master wore at the time of his death, and also a pair of the son's, though not the pair which he had then had. Having measured these very carefully from seven or eight different points, Holmes desired to be led to the court-yard, from which we all followed the winding track which led to Boscombe Pool. Sherlock Holmes was transformed when he was hot upon such a scent as this. Men who had only known the quiet thinker and logician of Baker Street would have failed to recognise him. His face flushed and darkened. His brows were drawn into two hard black lines, while his eyes shone out from beneath them with a steely glitter. His face was bent downward, his shoulders bowed, his lips compressed, and the veins stood out like whipcord in his long, sinewy neck. His nostrils seemed to dilate with a purely animal lust for the chase, and his mind was so absolutely concentrated upon the matter before him that a question or remark fell unheeded upon his ears, or, at the most, only provoked a quick, impatient snarl in reply. Swiftly and silently he made his way along the track which ran through the meadows, and so by way of the woods to the Boscombe Pool. It was damp, marshy ground, as is all that district, and there were marks of many feet, both upon the path and amid the short grass which bounded it on either side. Sometimes Holmes would hurry on, sometimes stop dead, and once he made quite a little detour into the meadow. Lestrade and I walked behind him, the detective indifferent and contemptuous, while I watched my friend with the interest which sprang from the conviction that every one of his actions was directed towards a definite end. The Boscombe Pool, which is a little reed-girt sheet of water some fifty yards across, is situated at the boundary between the Hatherley Farm and the private park of the wealthy Mr. Turner. Above the woods which lined it upon the farther side we could see the red, jutting pinnacles which marked the site of the rich landowner's dwelling. On the Hatherley side of the pool the woods grew very thick, and there was a narrow belt of sodden grass twenty paces across between the edge of the trees and the reeds which lined the lake. Lestrade showed us the exact spot at which the body had been found, and, indeed, so moist was the ground, that I could plainly see the traces which had been left by the fall of the stricken man. To Holmes, as I could see by his eager face and peering eyes, very many other things were to be read upon the trampled grass. He ran round, like a dog who is picking up a scent, and then turned upon my companion. "What did you go into the pool for?" he asked. "I fished about with a rake. I thought there might be some weapon or other trace. But how on earth--" "Oh, tut, tut! I have no time! That left foot of yours with its inward twist is all over the place. A mole could trace it, and there it vanishes among the reeds. Oh, how simple it would all have been had I been here before they came like a herd of buffalo and wallowed all over it. Here is where the party with the lodge-keeper came, and they have covered all tracks for six or eight feet round the body. But here are three separate tracks of the same feet." He drew out a lens and lay down upon his waterproof to have a better view, talking all the time rather to himself than to us. "These are young McCarthy's feet. Twice he was walking, and once he ran swiftly, so that the soles are deeply marked and the heels hardly visible. That bears out his story. He ran when he saw his father on the ground. Then here are the father's feet as he paced up and down. What is this, then? It is the butt-end of the gun as the son stood listening. And this? Ha, ha! What have we here? Tiptoes! tiptoes! Square, too, quite unusual boots! They come, they go, they come again--of course that was for the cloak. Now where did they come from?" He ran up and down, sometimes losing, sometimes finding the track until we were well within the edge of the wood and under the shadow of a great beech, the largest tree in the neighbourhood. Holmes traced his way to the farther side of this and lay down once more upon his face with a little cry of satisfaction. For a long time he remained there, turning over the leaves and dried sticks, gathering up what seemed to me to be dust into an envelope and examining with his lens not only the ground but even the bark of the tree as far as he could reach. A jagged stone was lying among the moss, and this also he carefully examined and retained. Then he followed a pathway through the wood until he came to the highroad, where all traces were lost. "It has been a case of considerable interest," he remarked, returning to his natural manner. "I fancy that this grey house on the right must be the lodge. I think that I will go in and have a word with Moran, and perhaps write a little note. Having done that, we may drive back to our luncheon. You may walk to the cab, and I shall be with you presently." It was about ten minutes before we regained our cab and drove back into Ross, Holmes still carrying with him the stone which he had picked up in the wood. "This may interest you, Lestrade," he remarked, holding it out. "The murder was done with it." "I see no marks." "There are none." "How do you know, then?" "The grass was growing under it. It had only lain there a few days. There was no sign of a place whence it had been taken. It corresponds with the injuries. There is no sign of any other weapon." "And the murderer?" "Is a tall man, left-handed, limps with the right leg, wears thick-soled shooting-boots and a grey cloak, smokes Indian cigars, uses a cigar-holder, and carries a blunt pen-knife in his pocket. There are several other indications, but these may be enough to aid us in our search." Lestrade laughed. "I am afraid that I am still a sceptic," he said. "Theories are all very well, but we have to deal with a hard-headed British jury." "Nous verrons," answered Holmes calmly. "You work your own method, and I shall work mine. I shall be busy this afternoon, and shall probably return to London by the evening train." "And leave your case unfinished?" "No, finished." "But the mystery?" "It is solved." "Who was the criminal, then?" "The gentleman I describe." "But who is he?" "Surely it would not be difficult to find out. This is not such a populous neighbourhood." Lestrade shrugged his shoulders. "I am a practical man," he said, "and I really cannot undertake to go about the country looking for a left-handed gentleman with a game leg. I should become the laughing-stock of Scotland Yard." "All right," said Holmes quietly. "I have given you the chance. Here are your lodgings. Good-bye. I shall drop you a line before I leave." Having left Lestrade at his rooms, we drove to our hotel, where we found lunch upon the table. Holmes was silent and buried in thought with a pained expression upon his face, as one who finds himself in a perplexing position. "Look here, Watson," he said when the cloth was cleared "just sit down in this chair and let me preach to you for a little. I don't know quite what to do, and I should value your advice. Light a cigar and let me expound." "Pray do so." "Well, now, in considering this case there are two points about young McCarthy's narrative which struck us both instantly, although they impressed me in his favour and you against him. One was the fact that his father should, according to his account, cry 'Cooee!' before seeing him. The other was his singular dying reference to a rat. He mumbled several words, you understand, but that was all that caught the son's ear. Now from this double point our research must commence, and we will begin it by presuming that what the lad says is absolutely true." "What of this 'Cooee!' then?" "Well, obviously it could not have been meant for the son. The son, as far as he knew, was in Bristol. It was mere chance that he was within earshot. The 'Cooee!' was meant to attract the attention of whoever it was that he had the appointment with. But 'Cooee' is a distinctly Australian cry, and one which is used between Australians. There is a strong presumption that the person whom McCarthy expected to meet him at Boscombe Pool was someone who had been in Australia." "What of the rat, then?" Sherlock Holmes took a folded paper from his pocket and flattened it out on the table. "This is a map of the Colony of Victoria," he said. "I wired to Bristol for it last night." He put his hand over part of the map. "What do you read?" "ARAT," I read. "And now?" He raised his hand. "BALLARAT." "Quite so. That was the word the man uttered, and of which his son only caught the last two syllables. He was trying to utter the name of his murderer. So and so, of Ballarat." "It is wonderful!" I exclaimed. "It is obvious. And now, you see, I had narrowed the field down considerably. The possession of a grey garment was a third point which, granting the son's statement to be correct, was a certainty. We have come now out of mere vagueness to the definite conception of an Australian from Ballarat with a grey cloak." "Certainly." "And one who was at home in the district, for the pool can only be approached by the farm or by the estate, where strangers could hardly wander." "Quite so." "Then comes our expedition of to-day. By an examination of the ground I gained the trifling details which I gave to that imbecile Lestrade, as to the personality of the criminal." "But how did you gain them?" "You know my method. It is founded upon the observation of trifles." "His height I know that you might roughly judge from the length of his stride. His boots, too, might be told from their traces." "Yes, they were peculiar boots." "But his lameness?" "The impression of his right foot was always less distinct than his left. He put less weight upon it. Why? Because he limped--he was lame." "But his left-handedness." "You were yourself struck by the nature of the injury as recorded by the surgeon at the inquest. The blow was struck from immediately behind, and yet was upon the left side. Now, how can that be unless it were by a left-handed man? He had stood behind that tree during the interview between the father and son. He had even smoked there. I found the ash of a cigar, which my special knowledge of tobacco ashes enables me to pronounce as an Indian cigar. I have, as you know, devoted some attention to this, and written a little monograph on the ashes of 140 different varieties of pipe, cigar, and cigarette tobacco. Having found the ash, I then looked round and discovered the stump among the moss where he had tossed it. It was an Indian cigar, of the variety which are rolled in Rotterdam." "And the cigar-holder?" "I could see that the end had not been in his mouth. Therefore he used a holder. The tip had been cut off, not bitten off, but the cut was not a clean one, so I deduced a blunt pen-knife." "Holmes," I said, "you have drawn a net round this man from which he cannot escape, and you have saved an innocent human life as truly as if you had cut the cord which was hanging him. I see the direction in which all this points. The culprit is--" "Mr. John Turner," cried the hotel waiter, opening the door of our sitting-room, and ushering in a visitor. The man who entered was a strange and impressive figure. His slow, limping step and bowed shoulders gave the appearance of decrepitude, and yet his hard, deep-lined, craggy features, and his enormous limbs showed that he was possessed of unusual strength of body and of character. His tangled beard, grizzled hair, and outstanding, drooping eyebrows combined to give an air of dignity and power to his appearance, but his face was of an ashen white, while his lips and the corners of his nostrils were tinged with a shade of blue. It was clear to me at a glance that he was in the grip of some deadly and chronic disease. "Pray sit down on the sofa," said Holmes gently. "You had my note?" "Yes, the lodge-keeper brought it up. You said that you wished to see me here to avoid scandal." "I thought people would talk if I went to the Hall." "And why did you wish to see me?" He looked across at my companion with despair in his weary eyes, as though his question was already answered. "Yes," said Holmes, answering the look rather than the words. "It is so. I know all about McCarthy." The old man sank his face in his hands. "God help me!" he cried. "But I would not have let the young man come to harm. I give you my word that I would have spoken out if it went against him at the Assizes." "I am glad to hear you say so," said Holmes gravely. "I would have spoken now had it not been for my dear girl. It would break her heart--it will break her heart when she hears that I am arrested." "It may not come to that," said Holmes. "What?" "I am no official agent. I understand that it was your daughter who required my presence here, and I am acting in her interests. Young McCarthy must be got off, however." "I am a dying man," said old Turner. "I have had diabetes for years. My doctor says it is a question whether I shall live a month. Yet I would rather die under my own roof than in a gaol." Holmes rose and sat down at the table with his pen in his hand and a bundle of paper before him. "Just tell us the truth," he said. "I shall jot down the facts. You will sign it, and Watson here can witness it. Then I could produce your confession at the last extremity to save young McCarthy. I promise you that I shall not use it unless it is absolutely needed." "It's as well," said the old man; "it's a question whether I shall live to the Assizes, so it matters little to me, but I should wish to spare Alice the shock. And now I will make the thing clear to you; it has been a long time in the acting, but will not take me long to tell. "You didn't know this dead man, McCarthy. He was a devil incarnate. I tell you that. God keep you out of the clutches of such a man as he. His grip has been upon me these twenty years, and he has blasted my life. I'll tell you first how I came to be in his power. "It was in the early '60's at the diggings. I was a young chap then, hot-blooded and reckless, ready to turn my hand at anything; I got among bad companions, took to drink, had no luck with my claim, took to the bush, and in a word became what you would call over here a highway robber. There were six of us, and we had a wild, free life of it, sticking up a station from time to time, or stopping the wagons on the road to the diggings. Black Jack of Ballarat was the name I went under, and our party is still remembered in the colony as the Ballarat Gang. "One day a gold convoy came down from Ballarat to Melbourne, and we lay in wait for it and attacked it. There were six troopers and six of us, so it was a close thing, but we emptied four of their saddles at the first volley. Three of our boys were killed, however, before we got the swag. I put my pistol to the head of the wagon-driver, who was this very man McCarthy. I wish to the Lord that I had shot him then, but I spared him, though I saw his wicked little eyes fixed on my face, as though to remember every feature. We got away with the gold, became wealthy men, and made our way over to England without being suspected. There I parted from my old pals and determined to settle down to a quiet and respectable life. I bought this estate, which chanced to be in the market, and I set myself to do a little good with my money, to make up for the way in which I had earned it. I married, too, and though my wife died young she left me my dear little Alice. Even when she was just a baby her wee hand seemed to lead me down the right path as nothing else had ever done. In a word, I turned over a new leaf and did my best to make up for the past. All was going well when McCarthy laid his grip upon me. "I had gone up to town about an investment, and I met him in Regent Street with hardly a coat to his back or a boot to his foot. "'Here we are, Jack,' says he, touching me on the arm; 'we'll be as good as a family to you. There's two of us, me and my son, and you can have the keeping of us. If you don't--it's a fine, law-abiding country is England, and there's always a policeman within hail.' "Well, down they came to the west country, there was no shaking them off, and there they have lived rent free on my best land ever since. There was no rest for me, no peace, no forgetfulness; turn where I would, there was his cunning, grinning face at my elbow. It grew worse as Alice grew up, for he soon saw I was more afraid of her knowing my past than of the police. Whatever he wanted he must have, and whatever it was I gave him without question, land, money, houses, until at last he asked a thing which I could not give. He asked for Alice. "His son, you see, had grown up, and so had my girl, and as I was known to be in weak health, it seemed a fine stroke to him that his lad should step into the whole property. But there I was firm. I would not have his cursed stock mixed with mine; not that I had any dislike to the lad, but his blood was in him, and that was enough. I stood firm. McCarthy threatened. I braved him to do his worst. We were to meet at the pool midway between our houses to talk it over. "When I went down there I found him talking with his son, so I smoked a cigar and waited behind a tree until he should be alone. But as I listened to his talk all that was black and bitter in me seemed to come uppermost. He was urging his son to marry my daughter with as little regard for what she might think as if she were a slut from off the streets. It drove me mad to think that I and all that I held most dear should be in the power of such a man as this. Could I not snap the bond? I was already a dying and a desperate man. Though clear of mind and fairly strong of limb, I knew that my own fate was sealed. But my memory and my girl! Both could be saved if I could but silence that foul tongue. I did it, Mr. Holmes. I would do it again. Deeply as I have sinned, I have led a life of martyrdom to atone for it. But that my girl should be entangled in the same meshes which held me was more than I could suffer. I struck him down with no more compunction than if he had been some foul and venomous beast. His cry brought back his son; but I had gained the cover of the wood, though I was forced to go back to fetch the cloak which I had dropped in my flight. That is the true story, gentlemen, of all that occurred." "Well, it is not for me to judge you," said Holmes as the old man signed the statement which had been drawn out. "I pray that we may never be exposed to such a temptation." "I pray not, sir. And what do you intend to do?" "In view of your health, nothing. You are yourself aware that you will soon have to answer for your deed at a higher court than the Assizes. I will keep your confession, and if McCarthy is condemned I shall be forced to use it. If not, it shall never be seen by mortal eye; and your secret, whether you be alive or dead, shall be safe with us." "Farewell, then," said the old man solemnly. "Your own deathbeds, when they come, will be the easier for the thought of the peace which you have given to mine." Tottering and shaking in all his giant frame, he stumbled slowly from the room. "God help us!" said Holmes after a long silence. "Why does fate play such tricks with poor, helpless worms? I never hear of such a case as this that I do not think of Baxter's words, and say, 'There, but for the grace of God, goes Sherlock Holmes.'" James McCarthy was acquitted at the Assizes on the strength of a number of objections which had been drawn out by Holmes and submitted to the defending counsel. Old Turner lived for seven months after our interview, but he is now dead; and there is every prospect that the son and daughter may come to live happily together in ignorance of the black cloud which rests upon their past. ADVENTURE V. THE FIVE ORANGE PIPS When I glance over my notes and records of the Sherlock Holmes cases between the years '82 and '90, I am faced by so many which present strange and interesting features that it is no easy matter to know which to choose and which to leave. Some, however, have already gained publicity through the papers, and others have not offered a field for those peculiar qualities which my friend possessed in so high a degree, and which it is the object of these papers to illustrate. Some, too, have baffled his analytical skill, and would be, as narratives, beginnings without an ending, while others have been but partially cleared up, and have their explanations founded rather upon conjecture and surmise than on that absolute logical proof which was so dear to him. There is, however, one of these last which was so remarkable in its details and so startling in its results that I am tempted to give some account of it in spite of the fact that there are points in connection with it which never have been, and probably never will be, entirely cleared up. The year '87 furnished us with a long series of cases of greater or less interest, of which I retain the records. Among my headings under this one twelve months I find an account of the adventure of the Paradol Chamber, of the Amateur Mendicant Society, who held a luxurious club in the lower vault of a furniture warehouse, of the facts connected with the loss of the British barque "Sophy Anderson", of the singular adventures of the Grice Patersons in the island of Uffa, and finally of the Camberwell poisoning case. In the latter, as may be remembered, Sherlock Holmes was able, by winding up the dead man's watch, to prove that it had been wound up two hours before, and that therefore the deceased had gone to bed within that time--a deduction which was of the greatest importance in clearing up the case. All these I may sketch out at some future date, but none of them present such singular features as the strange train of circumstances which I have now taken up my pen to describe. It was in the latter days of September, and the equinoctial gales had set in with exceptional violence. All day the wind had screamed and the rain had beaten against the windows, so that even here in the heart of great, hand-made London we were forced to raise our minds for the instant from the routine of life and to recognise the presence of those great elemental forces which shriek at mankind through the bars of his civilisation, like untamed beasts in a cage. As evening drew in, the storm grew higher and louder, and the wind cried and sobbed like a child in the chimney. Sherlock Holmes sat moodily at one side of the fireplace cross-indexing his records of crime, while I at the other was deep in one of Clark Russell's fine sea-stories until the howl of the gale from without seemed to blend with the text, and the splash of the rain to lengthen out into the long swash of the sea waves. My wife was on a visit to her mother's, and for a few days I was a dweller once more in my old quarters at Baker Street. "Why," said I, glancing up at my companion, "that was surely the bell. Who could come to-night? Some friend of yours, perhaps?" "Except yourself I have none," he answered. "I do not encourage visitors." "A client, then?" "If so, it is a serious case. Nothing less would bring a man out on such a day and at such an hour. But I take it that it is more likely to be some crony of the landlady's." Sherlock Holmes was wrong in his conjecture, however, for there came a step in the passage and a tapping at the door. He stretched out his long arm to turn the lamp away from himself and towards the vacant chair upon which a newcomer must sit. "Come in!" said he. The man who entered was young, some two-and-twenty at the outside, well-groomed and trimly clad, with something of refinement and delicacy in his bearing. The streaming umbrella which he held in his hand, and his long shining waterproof told of the fierce weather through which he had come. He looked about him anxiously in the glare of the lamp, and I could see that his face was pale and his eyes heavy, like those of a man who is weighed down with some great anxiety. "I owe you an apology," he said, raising his golden pince-nez to his eyes. "I trust that I am not intruding. I fear that I have brought some traces of the storm and rain into your snug chamber." "Give me your coat and umbrella," said Holmes. "They may rest here on the hook and will be dry presently. You have come up from the south-west, I see." "Yes, from Horsham." "That clay and chalk mixture which I see upon your toe caps is quite distinctive." "I have come for advice." "That is easily got." "And help." "That is not always so easy." "I have heard of you, Mr. Holmes. I heard from Major Prendergast how you saved him in the Tankerville Club scandal." "Ah, of course. He was wrongfully accused of cheating at cards." "He said that you could solve anything." "He said too much." "That you are never beaten." "I have been beaten four times--three times by men, and once by a woman." "But what is that compared with the number of your successes?" "It is true that I have been generally successful." "Then you may be so with me." "I beg that you will draw your chair up to the fire and favour me with some details as to your case." "It is no ordinary one." "None of those which come to me are. I am the last court of appeal." "And yet I question, sir, whether, in all your experience, you have ever listened to a more mysterious and inexplicable chain of events than those which have happened in my own family." "You fill me with interest," said Holmes. "Pray give us the essential facts from the commencement, and I can afterwards question you as to those details which seem to me to be most important." The young man pulled his chair up and pushed his wet feet out towards the blaze. "My name," said he, "is John Openshaw, but my own affairs have, as far as I can understand, little to do with this awful business. It is a hereditary matter; so in order to give you an idea of the facts, I must go back to the commencement of the affair. "You must know that my grandfather had two sons--my uncle Elias and my father Joseph. My father had a small factory at Coventry, which he enlarged at the time of the invention of bicycling. He was a patentee of the Openshaw unbreakable tire, and his business met with such success that he was able to sell it and to retire upon a handsome competence. "My uncle Elias emigrated to America when he was a young man and became a planter in Florida, where he was reported to have done very well. At the time of the war he fought in Jackson's army, and afterwards under Hood, where he rose to be a colonel. When Lee laid down his arms my uncle returned to his plantation, where he remained for three or four years. About 1869 or 1870 he came back to Europe and took a small estate in Sussex, near Horsham. He had made a very considerable fortune in the States, and his reason for leaving them was his aversion to the negroes, and his dislike of the Republican policy in extending the franchise to them. He was a singular man, fierce and quick-tempered, very foul-mouthed when he was angry, and of a most retiring disposition. During all the years that he lived at Horsham, I doubt if ever he set foot in the town. He had a garden and two or three fields round his house, and there he would take his exercise, though very often for weeks on end he would never leave his room. He drank a great deal of brandy and smoked very heavily, but he would see no society and did not want any friends, not even his own brother. "He didn't mind me; in fact, he took a fancy to me, for at the time when he saw me first I was a youngster of twelve or so. This would be in the year 1878, after he had been eight or nine years in England. He begged my father to let me live with him and he was very kind to me in his way. When he was sober he used to be fond of playing backgammon and draughts with me, and he would make me his representative both with the servants and with the tradespeople, so that by the time that I was sixteen I was quite master of the house. I kept all the keys and could go where I liked and do what I liked, so long as I did not disturb him in his privacy. There was one singular exception, however, for he had a single room, a lumber-room up among the attics, which was invariably locked, and which he would never permit either me or anyone else to enter. With a boy's curiosity I have peeped through the keyhole, but I was never able to see more than such a collection of old trunks and bundles as would be expected in such a room. "One day--it was in March, 1883--a letter with a foreign stamp lay upon the table in front of the colonel's plate. It was not a common thing for him to receive letters, for his bills were all paid in ready money, and he had no friends of any sort. 'From India!' said he as he took it up, 'Pondicherry postmark! What can this be?' Opening it hurriedly, out there jumped five little dried orange pips, which pattered down upon his plate. I began to laugh at this, but the laugh was struck from my lips at the sight of his face. His lip had fallen, his eyes were protruding, his skin the colour of putty, and he glared at the envelope which he still held in his trembling hand, 'K. K. K.!' he shrieked, and then, 'My God, my God, my sins have overtaken me!' "'What is it, uncle?' I cried. "'Death,' said he, and rising from the table he retired to his room, leaving me palpitating with horror. I took up the envelope and saw scrawled in red ink upon the inner flap, just above the gum, the letter K three times repeated. There was nothing else save the five dried pips. What could be the reason of his overpowering terror? I left the breakfast-table, and as I ascended the stair I met him coming down with an old rusty key, which must have belonged to the attic, in one hand, and a small brass box, like a cashbox, in the other. "'They may do what they like, but I'll checkmate them still,' said he with an oath. 'Tell Mary that I shall want a fire in my room to-day, and send down to Fordham, the Horsham lawyer.' "I did as he ordered, and when the lawyer arrived I was asked to step up to the room. The fire was burning brightly, and in the grate there was a mass of black, fluffy ashes, as of burned paper, while the brass box stood open and empty beside it. As I glanced at the box I noticed, with a start, that upon the lid was printed the treble K which I had read in the morning upon the envelope. "'I wish you, John,' said my uncle, 'to witness my will. I leave my estate, with all its advantages and all its disadvantages, to my brother, your father, whence it will, no doubt, descend to you. If you can enjoy it in peace, well and good! If you find you cannot, take my advice, my boy, and leave it to your deadliest enemy. I am sorry to give you such a two-edged thing, but I can't say what turn things are going to take. Kindly sign the paper where Mr. Fordham shows you.' "I signed the paper as directed, and the lawyer took it away with him. The singular incident made, as you may think, the deepest impression upon me, and I pondered over it and turned it every way in my mind without being able to make anything of it. Yet I could not shake off the vague feeling of dread which it left behind, though the sensation grew less keen as the weeks passed and nothing happened to disturb the usual routine of our lives. I could see a change in my uncle, however. He drank more than ever, and he was less inclined for any sort of society. Most of his time he would spend in his room, with the door locked upon the inside, but sometimes he would emerge in a sort of drunken frenzy and would burst out of the house and tear about the garden with a revolver in his hand, screaming out that he was afraid of no man, and that he was not to be cooped up, like a sheep in a pen, by man or devil. When these hot fits were over, however, he would rush tumultuously in at the door and lock and bar it behind him, like a man who can brazen it out no longer against the terror which lies at the roots of his soul. At such times I have seen his face, even on a cold day, glisten with moisture, as though it were new raised from a basin. "Well, to come to an end of the matter, Mr. Holmes, and not to abuse your patience, there came a night when he made one of those drunken sallies from which he never came back. We found him, when we went to search for him, face downward in a little green-scummed pool, which lay at the foot of the garden. There was no sign of any violence, and the water was but two feet deep, so that the jury, having regard to his known eccentricity, brought in a verdict of 'suicide.' But I, who knew how he winced from the very thought of death, had much ado to persuade myself that he had gone out of his way to meet it. The matter passed, however, and my father entered into possession of the estate, and of some 14,000 pounds, which lay to his credit at the bank." "One moment," Holmes interposed, "your statement is, I foresee, one of the most remarkable to which I have ever listened. Let me have the date of the reception by your uncle of the letter, and the date of his supposed suicide." "The letter arrived on March 10, 1883. His death was seven weeks later, upon the night of May 2nd." "Thank you. Pray proceed." "When my father took over the Horsham property, he, at my request, made a careful examination of the attic, which had been always locked up. We found the brass box there, although its contents had been destroyed. On the inside of the cover was a paper label, with the initials of K. K. K. repeated upon it, and 'Letters, memoranda, receipts, and a register' written beneath. These, we presume, indicated the nature of the papers which had been destroyed by Colonel Openshaw. For the rest, there was nothing of much importance in the attic save a great many scattered papers and note-books bearing upon my uncle's life in America. Some of them were of the war time and showed that he had done his duty well and had borne the repute of a brave soldier. Others were of a date during the reconstruction of the Southern states, and were mostly concerned with politics, for he had evidently taken a strong part in opposing the carpet-bag politicians who had been sent down from the North. "Well, it was the beginning of '84 when my father came to live at Horsham, and all went as well as possible with us until the January of '85. On the fourth day after the new year I heard my father give a sharp cry of surprise as we sat together at the breakfast-table. There he was, sitting with a newly opened envelope in one hand and five dried orange pips in the outstretched palm of the other one. He had always laughed at what he called my cock-and-bull story about the colonel, but he looked very scared and puzzled now that the same thing had come upon himself. "'Why, what on earth does this mean, John?' he stammered. "My heart had turned to lead. 'It is K. K. K.,' said I. "He looked inside the envelope. 'So it is,' he cried. 'Here are the very letters. But what is this written above them?' "'Put the papers on the sundial,' I read, peeping over his shoulder. "'What papers? What sundial?' he asked. "'The sundial in the garden. There is no other,' said I; 'but the papers must be those that are destroyed.' "'Pooh!' said he, gripping hard at his courage. 'We are in a civilised land here, and we can't have tomfoolery of this kind. Where does the thing come from?' "'From Dundee,' I answered, glancing at the postmark. "'Some preposterous practical joke,' said he. 'What have I to do with sundials and papers? I shall take no notice of such nonsense.' "'I should certainly speak to the police,' I said. "'And be laughed at for my pains. Nothing of the sort.' "'Then let me do so?' "'No, I forbid you. I won't have a fuss made about such nonsense.' "It was in vain to argue with him, for he was a very obstinate man. I went about, however, with a heart which was full of forebodings. "On the third day after the coming of the letter my father went from home to visit an old friend of his, Major Freebody, who is in command of one of the forts upon Portsdown Hill. I was glad that he should go, for it seemed to me that he was farther from danger when he was away from home. In that, however, I was in error. Upon the second day of his absence I received a telegram from the major, imploring me to come at once. My father had fallen over one of the deep chalk-pits which abound in the neighbourhood, and was lying senseless, with a shattered skull. I hurried to him, but he passed away without having ever recovered his consciousness. He had, as it appears, been returning from Fareham in the twilight, and as the country was unknown to him, and the chalk-pit unfenced, the jury had no hesitation in bringing in a verdict of 'death from accidental causes.' Carefully as I examined every fact connected with his death, I was unable to find anything which could suggest the idea of murder. There were no signs of violence, no footmarks, no robbery, no record of strangers having been seen upon the roads. And yet I need not tell you that my mind was far from at ease, and that I was well-nigh certain that some foul plot had been woven round him. "In this sinister way I came into my inheritance. You will ask me why I did not dispose of it? I answer, because I was well convinced that our troubles were in some way dependent upon an incident in my uncle's life, and that the danger would be as pressing in one house as in another. "It was in January, '85, that my poor father met his end, and two years and eight months have elapsed since then. During that time I have lived happily at Horsham, and I had begun to hope that this curse had passed away from the family, and that it had ended with the last generation. I had begun to take comfort too soon, however; yesterday morning the blow fell in the very shape in which it had come upon my father." The young man took from his waistcoat a crumpled envelope, and turning to the table he shook out upon it five little dried orange pips. "This is the envelope," he continued. "The postmark is London--eastern division. Within are the very words which were upon my father's last message: 'K. K. K.'; and then 'Put the papers on the sundial.'" "What have you done?" asked Holmes. "Nothing." "Nothing?" "To tell the truth"--he sank his face into his thin, white hands--"I have felt helpless. I have felt like one of those poor rabbits when the snake is writhing towards it. I seem to be in the grasp of some resistless, inexorable evil, which no foresight and no precautions can guard against." "Tut! tut!" cried Sherlock Holmes. "You must act, man, or you are lost. Nothing but energy can save you. This is no time for despair." "I have seen the police." "Ah!" "But they listened to my story with a smile. I am convinced that the inspector has formed the opinion that the letters are all practical jokes, and that the deaths of my relations were really accidents, as the jury stated, and were not to be connected with the warnings." Holmes shook his clenched hands in the air. "Incredible imbecility!" he cried. "They have, however, allowed me a policeman, who may remain in the house with me." "Has he come with you to-night?" "No. His orders were to stay in the house." Again Holmes raved in the air. "Why did you come to me," he cried, "and, above all, why did you not come at once?" "I did not know. It was only to-day that I spoke to Major Prendergast about my troubles and was advised by him to come to you." "It is really two days since you had the letter. We should have acted before this. You have no further evidence, I suppose, than that which you have placed before us--no suggestive detail which might help us?" "There is one thing," said John Openshaw. He rummaged in his coat pocket, and, drawing out a piece of discoloured, blue-tinted paper, he laid it out upon the table. "I have some remembrance," said he, "that on the day when my uncle burned the papers I observed that the small, unburned margins which lay amid the ashes were of this particular colour. I found this single sheet upon the floor of his room, and I am inclined to think that it may be one of the papers which has, perhaps, fluttered out from among the others, and in that way has escaped destruction. Beyond the mention of pips, I do not see that it helps us much. I think myself that it is a page from some private diary. The writing is undoubtedly my uncle's." Holmes moved the lamp, and we both bent over the sheet of paper, which showed by its ragged edge that it had indeed been torn from a book. It was headed, "March, 1869," and beneath were the following enigmatical notices: "4th. Hudson came. Same old platform. "7th. Set the pips on McCauley, Paramore, and John Swain, of St. Augustine. "9th. McCauley cleared. "10th. John Swain cleared. "12th. Visited Paramore. All well." "Thank you!" said Holmes, folding up the paper and returning it to our visitor. "And now you must on no account lose another instant. We cannot spare time even to discuss what you have told me. You must get home instantly and act." "What shall I do?" "There is but one thing to do. It must be done at once. You must put this piece of paper which you have shown us into the brass box which you have described. You must also put in a note to say that all the other papers were burned by your uncle, and that this is the only one which remains. You must assert that in such words as will carry conviction with them. Having done this, you must at once put the box out upon the sundial, as directed. Do you understand?" "Entirely." "Do not think of revenge, or anything of the sort, at present. I think that we may gain that by means of the law; but we have our web to weave, while theirs is already woven. The first consideration is to remove the pressing danger which threatens you. The second is to clear up the mystery and to punish the guilty parties." "I thank you," said the young man, rising and pulling on his overcoat. "You have given me fresh life and hope. I shall certainly do as you advise." "Do not lose an instant. And, above all, take care of yourself in the meanwhile, for I do not think that there can be a doubt that you are threatened by a very real and imminent danger. How do you go back?" "By train from Waterloo." "It is not yet nine. The streets will be crowded, so I trust that you may be in safety. And yet you cannot guard yourself too closely." "I am armed." "That is well. To-morrow I shall set to work upon your case." "I shall see you at Horsham, then?" "No, your secret lies in London. It is there that I shall seek it." "Then I shall call upon you in a day, or in two days, with news as to the box and the papers. I shall take your advice in every particular." He shook hands with us and took his leave. Outside the wind still screamed and the rain splashed and pattered against the windows. This strange, wild story seemed to have come to us from amid the mad elements--blown in upon us like a sheet of sea-weed in a gale--and now to have been reabsorbed by them once more. Sherlock Holmes sat for some time in silence, with his head sunk forward and his eyes bent upon the red glow of the fire. Then he lit his pipe, and leaning back in his chair he watched the blue smoke-rings as they chased each other up to the ceiling. "I think, Watson," he remarked at last, "that of all our cases we have had none more fantastic than this." "Save, perhaps, the Sign of Four." "Well, yes. Save, perhaps, that. And yet this John Openshaw seems to me to be walking amid even greater perils than did the Sholtos." "But have you," I asked, "formed any definite conception as to what these perils are?" "There can be no question as to their nature," he answered. "Then what are they? Who is this K. K. K., and why does he pursue this unhappy family?" Sherlock Holmes closed his eyes and placed his elbows upon the arms of his chair, with his finger-tips together. "The ideal reasoner," he remarked, "would, when he had once been shown a single fact in all its bearings, deduce from it not only all the chain of events which led up to it but also all the results which would follow from it. As Cuvier could correctly describe a whole animal by the contemplation of a single bone, so the observer who has thoroughly understood one link in a series of incidents should be able to accurately state all the other ones, both before and after. We have not yet grasped the results which the reason alone can attain to. Problems may be solved in the study which have baffled all those who have sought a solution by the aid of their senses. To carry the art, however, to its highest pitch, it is necessary that the reasoner should be able to utilise all the facts which have come to his knowledge; and this in itself implies, as you will readily see, a possession of all knowledge, which, even in these days of free education and encyclopaedias, is a somewhat rare accomplishment. It is not so impossible, however, that a man should possess all knowledge which is likely to be useful to him in his work, and this I have endeavoured in my case to do. If I remember rightly, you on one occasion, in the early days of our friendship, defined my limits in a very precise fashion." "Yes," I answered, laughing. "It was a singular document. Philosophy, astronomy, and politics were marked at zero, I remember. Botany variable, geology profound as regards the mud-stains from any region within fifty miles of town, chemistry eccentric, anatomy unsystematic, sensational literature and crime records unique, violin-player, boxer, swordsman, lawyer, and self-poisoner by cocaine and tobacco. Those, I think, were the main points of my analysis." Holmes grinned at the last item. "Well," he said, "I say now, as I said then, that a man should keep his little brain-attic stocked with all the furniture that he is likely to use, and the rest he can put away in the lumber-room of his library, where he can get it if he wants it. Now, for such a case as the one which has been submitted to us to-night, we need certainly to muster all our resources. Kindly hand me down the letter K of the 'American Encyclopaedia' which stands upon the shelf beside you. Thank you. Now let us consider the situation and see what may be deduced from it. In the first place, we may start with a strong presumption that Colonel Openshaw had some very strong reason for leaving America. Men at his time of life do not change all their habits and exchange willingly the charming climate of Florida for the lonely life of an English provincial town. His extreme love of solitude in England suggests the idea that he was in fear of someone or something, so we may assume as a working hypothesis that it was fear of someone or something which drove him from America. As to what it was he feared, we can only deduce that by considering the formidable letters which were received by himself and his successors. Did you remark the postmarks of those letters?" "The first was from Pondicherry, the second from Dundee, and the third from London." "From East London. What do you deduce from that?" "They are all seaports. That the writer was on board of a ship." "Excellent. We have already a clue. There can be no doubt that the probability--the strong probability--is that the writer was on board of a ship. And now let us consider another point. In the case of Pondicherry, seven weeks elapsed between the threat and its fulfilment, in Dundee it was only some three or four days. Does that suggest anything?" "A greater distance to travel." "But the letter had also a greater distance to come." "Then I do not see the point." "There is at least a presumption that the vessel in which the man or men are is a sailing-ship. It looks as if they always send their singular warning or token before them when starting upon their mission. You see how quickly the deed followed the sign when it came from Dundee. If they had come from Pondicherry in a steamer they would have arrived almost as soon as their letter. But, as a matter of fact, seven weeks elapsed. I think that those seven weeks represented the difference between the mail-boat which brought the letter and the sailing vessel which brought the writer." "It is possible." "More than that. It is probable. And now you see the deadly urgency of this new case, and why I urged young Openshaw to caution. The blow has always fallen at the end of the time which it would take the senders to travel the distance. But this one comes from London, and therefore we cannot count upon delay." "Good God!" I cried. "What can it mean, this relentless persecution?" "The papers which Openshaw carried are obviously of vital importance to the person or persons in the sailing-ship. I think that it is quite clear that there must be more than one of them. A single man could not have carried out two deaths in such a way as to deceive a coroner's jury. There must have been several in it, and they must have been men of resource and determination. Their papers they mean to have, be the holder of them who it may. In this way you see K. K. K. ceases to be the initials of an individual and becomes the badge of a society." "But of what society?" "Have you never--" said Sherlock Holmes, bending forward and sinking his voice--"have you never heard of the Ku Klux Klan?" "I never have." Holmes turned over the leaves of the book upon his knee. "Here it is," said he presently: "'Ku Klux Klan. A name derived from the fanciful resemblance to the sound produced by cocking a rifle. This terrible secret society was formed by some ex-Confederate soldiers in the Southern states after the Civil War, and it rapidly formed local branches in different parts of the country, notably in Tennessee, Louisiana, the Carolinas, Georgia, and Florida. Its power was used for political purposes, principally for the terrorising of the negro voters and the murdering and driving from the country of those who were opposed to its views. Its outrages were usually preceded by a warning sent to the marked man in some fantastic but generally recognised shape--a sprig of oak-leaves in some parts, melon seeds or orange pips in others. On receiving this the victim might either openly abjure his former ways, or might fly from the country. If he braved the matter out, death would unfailingly come upon him, and usually in some strange and unforeseen manner. So perfect was the organisation of the society, and so systematic its methods, that there is hardly a case upon record where any man succeeded in braving it with impunity, or in which any of its outrages were traced home to the perpetrators. For some years the organisation flourished in spite of the efforts of the United States government and of the better classes of the community in the South. Eventually, in the year 1869, the movement rather suddenly collapsed, although there have been sporadic outbreaks of the same sort since that date.' "You will observe," said Holmes, laying down the volume, "that the sudden breaking up of the society was coincident with the disappearance of Openshaw from America with their papers. It may well have been cause and effect. It is no wonder that he and his family have some of the more implacable spirits upon their track. You can understand that this register and diary may implicate some of the first men in the South, and that there may be many who will not sleep easy at night until it is recovered." "Then the page we have seen--" "Is such as we might expect. It ran, if I remember right, 'sent the pips to A, B, and C'--that is, sent the society's warning to them. Then there are successive entries that A and B cleared, or left the country, and finally that C was visited, with, I fear, a sinister result for C. Well, I think, Doctor, that we may let some light into this dark place, and I believe that the only chance young Openshaw has in the meantime is to do what I have told him. There is nothing more to be said or to be done to-night, so hand me over my violin and let us try to forget for half an hour the miserable weather and the still more miserable ways of our fellow-men." It had cleared in the morning, and the sun was shining with a subdued brightness through the dim veil which hangs over the great city. Sherlock Holmes was already at breakfast when I came down. "You will excuse me for not waiting for you," said he; "I have, I foresee, a very busy day before me in looking into this case of young Openshaw's." "What steps will you take?" I asked. "It will very much depend upon the results of my first inquiries. I may have to go down to Horsham, after all." "You will not go there first?" "No, I shall commence with the City. Just ring the bell and the maid will bring up your coffee." As I waited, I lifted the unopened newspaper from the table and glanced my eye over it. It rested upon a heading which sent a chill to my heart. "Holmes," I cried, "you are too late." "Ah!" said he, laying down his cup, "I feared as much. How was it done?" He spoke calmly, but I could see that he was deeply moved. "My eye caught the name of Openshaw, and the heading 'Tragedy Near Waterloo Bridge.' Here is the account: "Between nine and ten last night Police-Constable Cook, of the H Division, on duty near Waterloo Bridge, heard a cry for help and a splash in the water. The night, however, was extremely dark and stormy, so that, in spite of the help of several passers-by, it was quite impossible to effect a rescue. The alarm, however, was given, and, by the aid of the water-police, the body was eventually recovered. It proved to be that of a young gentleman whose name, as it appears from an envelope which was found in his pocket, was John Openshaw, and whose residence is near Horsham. It is conjectured that he may have been hurrying down to catch the last train from Waterloo Station, and that in his haste and the extreme darkness he missed his path and walked over the edge of one of the small landing-places for river steamboats. The body exhibited no traces of violence, and there can be no doubt that the deceased had been the victim of an unfortunate accident, which should have the effect of calling the attention of the authorities to the condition of the riverside landing-stages." We sat in silence for some minutes, Holmes more depressed and shaken than I had ever seen him. "That hurts my pride, Watson," he said at last. "It is a petty feeling, no doubt, but it hurts my pride. It becomes a personal matter with me now, and, if God sends me health, I shall set my hand upon this gang. That he should come to me for help, and that I should send him away to his death--!" He sprang from his chair and paced about the room in uncontrollable agitation, with a flush upon his sallow cheeks and a nervous clasping and unclasping of his long thin hands. "They must be cunning devils," he exclaimed at last. "How could they have decoyed him down there? The Embankment is not on the direct line to the station. The bridge, no doubt, was too crowded, even on such a night, for their purpose. Well, Watson, we shall see who will win in the long run. I am going out now!" "To the police?" "No; I shall be my own police. When I have spun the web they may take the flies, but not before." All day I was engaged in my professional work, and it was late in the evening before I returned to Baker Street. Sherlock Holmes had not come back yet. It was nearly ten o'clock before he entered, looking pale and worn. He walked up to the sideboard, and tearing a piece from the loaf he devoured it voraciously, washing it down with a long draught of water. "You are hungry," I remarked. "Starving. It had escaped my memory. I have had nothing since breakfast." "Nothing?" "Not a bite. I had no time to think of it." "And how have you succeeded?" "Well." "You have a clue?" "I have them in the hollow of my hand. Young Openshaw shall not long remain unavenged. Why, Watson, let us put their own devilish trade-mark upon them. It is well thought of!" "What do you mean?" He took an orange from the cupboard, and tearing it to pieces he squeezed out the pips upon the table. Of these he took five and thrust them into an envelope. On the inside of the flap he wrote "S. H. for J. O." Then he sealed it and addressed it to "Captain James Calhoun, Barque 'Lone Star,' Savannah, Georgia." "That will await him when he enters port," said he, chuckling. "It may give him a sleepless night. He will find it as sure a precursor of his fate as Openshaw did before him." "And who is this Captain Calhoun?" "The leader of the gang. I shall have the others, but he first." "How did you trace it, then?" He took a large sheet of paper from his pocket, all covered with dates and names. "I have spent the whole day," said he, "over Lloyd's registers and files of the old papers, following the future career of every vessel which touched at Pondicherry in January and February in '83. There were thirty-six ships of fair tonnage which were reported there during those months. Of these, one, the 'Lone Star,' instantly attracted my attention, since, although it was reported as having cleared from London, the name is that which is given to one of the states of the Union." "Texas, I think." "I was not and am not sure which; but I knew that the ship must have an American origin." "What then?" "I searched the Dundee records, and when I found that the barque 'Lone Star' was there in January, '85, my suspicion became a certainty. I then inquired as to the vessels which lay at present in the port of London." "Yes?" "The 'Lone Star' had arrived here last week. I went down to the Albert Dock and found that she had been taken down the river by the early tide this morning, homeward bound to Savannah. I wired to Gravesend and learned that she had passed some time ago, and as the wind is easterly I have no doubt that she is now past the Goodwins and not very far from the Isle of Wight." "What will you do, then?" "Oh, I have my hand upon him. He and the two mates, are as I learn, the only native-born Americans in the ship. The others are Finns and Germans. I know, also, that they were all three away from the ship last night. I had it from the stevedore who has been loading their cargo. By the time that their sailing-ship reaches Savannah the mail-boat will have carried this letter, and the cable will have informed the police of Savannah that these three gentlemen are badly wanted here upon a charge of murder." There is ever a flaw, however, in the best laid of human plans, and the murderers of John Openshaw were never to receive the orange pips which would show them that another, as cunning and as resolute as themselves, was upon their track. Very long and very severe were the equinoctial gales that year. We waited long for news of the "Lone Star" of Savannah, but none ever reached us. We did at last hear that somewhere far out in the Atlantic a shattered stern-post of a boat was seen swinging in the trough of a wave, with the letters "L. S." carved upon it, and that is all which we shall ever know of the fate of the "Lone Star." ADVENTURE VI. THE MAN WITH THE TWISTED LIP Isa Whitney, brother of the late Elias Whitney, D.D., Principal of the Theological College of St. George's, was much addicted to opium. The habit grew upon him, as I understand, from some foolish freak when he was at college; for having read De Quincey's description of his dreams and sensations, he had drenched his tobacco with laudanum in an attempt to produce the same effects. He found, as so many more have done, that the practice is easier to attain than to get rid of, and for many years he continued to be a slave to the drug, an object of mingled horror and pity to his friends and relatives. I can see him now, with yellow, pasty face, drooping lids, and pin-point pupils, all huddled in a chair, the wreck and ruin of a noble man. One night--it was in June, '89--there came a ring to my bell, about the hour when a man gives his first yawn and glances at the clock. I sat up in my chair, and my wife laid her needle-work down in her lap and made a little face of disappointment. "A patient!" said she. "You'll have to go out." I groaned, for I was newly come back from a weary day. We heard the door open, a few hurried words, and then quick steps upon the linoleum. Our own door flew open, and a lady, clad in some dark-coloured stuff, with a black veil, entered the room. "You will excuse my calling so late," she began, and then, suddenly losing her self-control, she ran forward, threw her arms about my wife's neck, and sobbed upon her shoulder. "Oh, I'm in such trouble!" she cried; "I do so want a little help." "Why," said my wife, pulling up her veil, "it is Kate Whitney. How you startled me, Kate! I had not an idea who you were when you came in." "I didn't know what to do, so I came straight to you." That was always the way. Folk who were in grief came to my wife like birds to a light-house. "It was very sweet of you to come. Now, you must have some wine and water, and sit here comfortably and tell us all about it. Or should you rather that I sent James off to bed?" "Oh, no, no! I want the doctor's advice and help, too. It's about Isa. He has not been home for two days. I am so frightened about him!" It was not the first time that she had spoken to us of her husband's trouble, to me as a doctor, to my wife as an old friend and school companion. We soothed and comforted her by such words as we could find. Did she know where her husband was? Was it possible that we could bring him back to her? It seems that it was. She had the surest information that of late he had, when the fit was on him, made use of an opium den in the farthest east of the City. Hitherto his orgies had always been confined to one day, and he had come back, twitching and shattered, in the evening. But now the spell had been upon him eight-and-forty hours, and he lay there, doubtless among the dregs of the docks, breathing in the poison or sleeping off the effects. There he was to be found, she was sure of it, at the Bar of Gold, in Upper Swandam Lane. But what was she to do? How could she, a young and timid woman, make her way into such a place and pluck her husband out from among the ruffians who surrounded him? There was the case, and of course there was but one way out of it. Might I not escort her to this place? And then, as a second thought, why should she come at all? I was Isa Whitney's medical adviser, and as such I had influence over him. I could manage it better if I were alone. I promised her on my word that I would send him home in a cab within two hours if he were indeed at the address which she had given me. And so in ten minutes I had left my armchair and cheery sitting-room behind me, and was speeding eastward in a hansom on a strange errand, as it seemed to me at the time, though the future only could show how strange it was to be. But there was no great difficulty in the first stage of my adventure. Upper Swandam Lane is a vile alley lurking behind the high wharves which line the north side of the river to the east of London Bridge. Between a slop-shop and a gin-shop, approached by a steep flight of steps leading down to a black gap like the mouth of a cave, I found the den of which I was in search. Ordering my cab to wait, I passed down the steps, worn hollow in the centre by the ceaseless tread of drunken feet; and by the light of a flickering oil-lamp above the door I found the latch and made my way into a long, low room, thick and heavy with the brown opium smoke, and terraced with wooden berths, like the forecastle of an emigrant ship. Through the gloom one could dimly catch a glimpse of bodies lying in strange fantastic poses, bowed shoulders, bent knees, heads thrown back, and chins pointing upward, with here and there a dark, lack-lustre eye turned upon the newcomer. Out of the black shadows there glimmered little red circles of light, now bright, now faint, as the burning poison waxed or waned in the bowls of the metal pipes. The most lay silent, but some muttered to themselves, and others talked together in a strange, low, monotonous voice, their conversation coming in gushes, and then suddenly tailing off into silence, each mumbling out his own thoughts and paying little heed to the words of his neighbour. At the farther end was a small brazier of burning charcoal, beside which on a three-legged wooden stool there sat a tall, thin old man, with his jaw resting upon his two fists, and his elbows upon his knees, staring into the fire. As I entered, a sallow Malay attendant had hurried up with a pipe for me and a supply of the drug, beckoning me to an empty berth. "Thank you. I have not come to stay," said I. "There is a friend of mine here, Mr. Isa Whitney, and I wish to speak with him." There was a movement and an exclamation from my right, and peering through the gloom, I saw Whitney, pale, haggard, and unkempt, staring out at me. "My God! It's Watson," said he. He was in a pitiable state of reaction, with every nerve in a twitter. "I say, Watson, what o'clock is it?" "Nearly eleven." "Of what day?" "Of Friday, June 19th." "Good heavens! I thought it was Wednesday. It is Wednesday. What d'you want to frighten a chap for?" He sank his face onto his arms and began to sob in a high treble key. "I tell you that it is Friday, man. Your wife has been waiting this two days for you. You should be ashamed of yourself!" "So I am. But you've got mixed, Watson, for I have only been here a few hours, three pipes, four pipes--I forget how many. But I'll go home with you. I wouldn't frighten Kate--poor little Kate. Give me your hand! Have you a cab?" "Yes, I have one waiting." "Then I shall go in it. But I must owe something. Find what I owe, Watson. I am all off colour. I can do nothing for myself." I walked down the narrow passage between the double row of sleepers, holding my breath to keep out the vile, stupefying fumes of the drug, and looking about for the manager. As I passed the tall man who sat by the brazier I felt a sudden pluck at my skirt, and a low voice whispered, "Walk past me, and then look back at me." The words fell quite distinctly upon my ear. I glanced down. They could only have come from the old man at my side, and yet he sat now as absorbed as ever, very thin, very wrinkled, bent with age, an opium pipe dangling down from between his knees, as though it had dropped in sheer lassitude from his fingers. I took two steps forward and looked back. It took all my self-control to prevent me from breaking out into a cry of astonishment. He had turned his back so that none could see him but I. His form had filled out, his wrinkles were gone, the dull eyes had regained their fire, and there, sitting by the fire and grinning at my surprise, was none other than Sherlock Holmes. He made a slight motion to me to approach him, and instantly, as he turned his face half round to the company once more, subsided into a doddering, loose-lipped senility. "Holmes!" I whispered, "what on earth are you doing in this den?" "As low as you can," he answered; "I have excellent ears. If you would have the great kindness to get rid of that sottish friend of yours I should be exceedingly glad to have a little talk with you." "I have a cab outside." "Then pray send him home in it. You may safely trust him, for he appears to be too limp to get into any mischief. I should recommend you also to send a note by the cabman to your wife to say that you have thrown in your lot with me. If you will wait outside, I shall be with you in five minutes." It was difficult to refuse any of Sherlock Holmes' requests, for they were always so exceedingly definite, and put forward with such a quiet air of mastery. I felt, however, that when Whitney was once confined in the cab my mission was practically accomplished; and for the rest, I could not wish anything better than to be associated with my friend in one of those singular adventures which were the normal condition of his existence. In a few minutes I had written my note, paid Whitney's bill, led him out to the cab, and seen him driven through the darkness. In a very short time a decrepit figure had emerged from the opium den, and I was walking down the street with Sherlock Holmes. For two streets he shuffled along with a bent back and an uncertain foot. Then, glancing quickly round, he straightened himself out and burst into a hearty fit of laughter. "I suppose, Watson," said he, "that you imagine that I have added opium-smoking to cocaine injections, and all the other little weaknesses on which you have favoured me with your medical views." "I was certainly surprised to find you there." "But not more so than I to find you." "I came to find a friend." "And I to find an enemy." "An enemy?" "Yes; one of my natural enemies, or, shall I say, my natural prey. Briefly, Watson, I am in the midst of a very remarkable inquiry, and I have hoped to find a clue in the incoherent ramblings of these sots, as I have done before now. Had I been recognised in that den my life would not have been worth an hour's purchase; for I have used it before now for my own purposes, and the rascally Lascar who runs it has sworn to have vengeance upon me. There is a trap-door at the back of that building, near the corner of Paul's Wharf, which could tell some strange tales of what has passed through it upon the moonless nights." "What! You do not mean bodies?" "Ay, bodies, Watson. We should be rich men if we had 1000 pounds for every poor devil who has been done to death in that den. It is the vilest murder-trap on the whole riverside, and I fear that Neville St. Clair has entered it never to leave it more. But our trap should be here." He put his two forefingers between his teeth and whistled shrilly--a signal which was answered by a similar whistle from the distance, followed shortly by the rattle of wheels and the clink of horses' hoofs. "Now, Watson," said Holmes, as a tall dog-cart dashed up through the gloom, throwing out two golden tunnels of yellow light from its side lanterns. "You'll come with me, won't you?" "If I can be of use." "Oh, a trusty comrade is always of use; and a chronicler still more so. My room at The Cedars is a double-bedded one." "The Cedars?" "Yes; that is Mr. St. Clair's house. I am staying there while I conduct the inquiry." "Where is it, then?" "Near Lee, in Kent. We have a seven-mile drive before us." "But I am all in the dark." "Of course you are. You'll know all about it presently. Jump up here. All right, John; we shall not need you. Here's half a crown. Look out for me to-morrow, about eleven. Give her her head. So long, then!" He flicked the horse with his whip, and we dashed away through the endless succession of sombre and deserted streets, which widened gradually, until we were flying across a broad balustraded bridge, with the murky river flowing sluggishly beneath us. Beyond lay another dull wilderness of bricks and mortar, its silence broken only by the heavy, regular footfall of the policeman, or the songs and shouts of some belated party of revellers. A dull wrack was drifting slowly across the sky, and a star or two twinkled dimly here and there through the rifts of the clouds. Holmes drove in silence, with his head sunk upon his breast, and the air of a man who is lost in thought, while I sat beside him, curious to learn what this new quest might be which seemed to tax his powers so sorely, and yet afraid to break in upon the current of his thoughts. We had driven several miles, and were beginning to get to the fringe of the belt of suburban villas, when he shook himself, shrugged his shoulders, and lit up his pipe with the air of a man who has satisfied himself that he is acting for the best. "You have a grand gift of silence, Watson," said he. "It makes you quite invaluable as a companion. 'Pon my word, it is a great thing for me to have someone to talk to, for my own thoughts are not over-pleasant. I was wondering what I should say to this dear little woman to-night when she meets me at the door." "You forget that I know nothing about it." "I shall just have time to tell you the facts of the case before we get to Lee. It seems absurdly simple, and yet, somehow I can get nothing to go upon. There's plenty of thread, no doubt, but I can't get the end of it into my hand. Now, I'll state the case clearly and concisely to you, Watson, and maybe you can see a spark where all is dark to me." "Proceed, then." "Some years ago--to be definite, in May, 1884--there came to Lee a gentleman, Neville St. Clair by name, who appeared to have plenty of money. He took a large villa, laid out the grounds very nicely, and lived generally in good style. By degrees he made friends in the neighbourhood, and in 1887 he married the daughter of a local brewer, by whom he now has two children. He had no occupation, but was interested in several companies and went into town as a rule in the morning, returning by the 5:14 from Cannon Street every night. Mr. St. Clair is now thirty-seven years of age, is a man of temperate habits, a good husband, a very affectionate father, and a man who is popular with all who know him. I may add that his whole debts at the present moment, as far as we have been able to ascertain, amount to 88 pounds 10s., while he has 220 pounds standing to his credit in the Capital and Counties Bank. There is no reason, therefore, to think that money troubles have been weighing upon his mind. "Last Monday Mr. Neville St. Clair went into town rather earlier than usual, remarking before he started that he had two important commissions to perform, and that he would bring his little boy home a box of bricks. Now, by the merest chance, his wife received a telegram upon this same Monday, very shortly after his departure, to the effect that a small parcel of considerable value which she had been expecting was waiting for her at the offices of the Aberdeen Shipping Company. Now, if you are well up in your London, you will know that the office of the company is in Fresno Street, which branches out of Upper Swandam Lane, where you found me to-night. Mrs. St. Clair had her lunch, started for the City, did some shopping, proceeded to the company's office, got her packet, and found herself at exactly 4:35 walking through Swandam Lane on her way back to the station. Have you followed me so far?" "It is very clear." "If you remember, Monday was an exceedingly hot day, and Mrs. St. Clair walked slowly, glancing about in the hope of seeing a cab, as she did not like the neighbourhood in which she found herself. While she was walking in this way down Swandam Lane, she suddenly heard an ejaculation or cry, and was struck cold to see her husband looking down at her and, as it seemed to her, beckoning to her from a second-floor window. The window was open, and she distinctly saw his face, which she describes as being terribly agitated. He waved his hands frantically to her, and then vanished from the window so suddenly that it seemed to her that he had been plucked back by some irresistible force from behind. One singular point which struck her quick feminine eye was that although he wore some dark coat, such as he had started to town in, he had on neither collar nor necktie. "Convinced that something was amiss with him, she rushed down the steps--for the house was none other than the opium den in which you found me to-night--and running through the front room she attempted to ascend the stairs which led to the first floor. At the foot of the stairs, however, she met this Lascar scoundrel of whom I have spoken, who thrust her back and, aided by a Dane, who acts as assistant there, pushed her out into the street. Filled with the most maddening doubts and fears, she rushed down the lane and, by rare good-fortune, met in Fresno Street a number of constables with an inspector, all on their way to their beat. The inspector and two men accompanied her back, and in spite of the continued resistance of the proprietor, they made their way to the room in which Mr. St. Clair had last been seen. There was no sign of him there. In fact, in the whole of that floor there was no one to be found save a crippled wretch of hideous aspect, who, it seems, made his home there. Both he and the Lascar stoutly swore that no one else had been in the front room during the afternoon. So determined was their denial that the inspector was staggered, and had almost come to believe that Mrs. St. Clair had been deluded when, with a cry, she sprang at a small deal box which lay upon the table and tore the lid from it. Out there fell a cascade of children's bricks. It was the toy which he had promised to bring home. "This discovery, and the evident confusion which the cripple showed, made the inspector realise that the matter was serious. The rooms were carefully examined, and results all pointed to an abominable crime. The front room was plainly furnished as a sitting-room and led into a small bedroom, which looked out upon the back of one of the wharves. Between the wharf and the bedroom window is a narrow strip, which is dry at low tide but is covered at high tide with at least four and a half feet of water. The bedroom window was a broad one and opened from below. On examination traces of blood were to be seen upon the windowsill, and several scattered drops were visible upon the wooden floor of the bedroom. Thrust away behind a curtain in the front room were all the clothes of Mr. Neville St. Clair, with the exception of his coat. His boots, his socks, his hat, and his watch--all were there. There were no signs of violence upon any of these garments, and there were no other traces of Mr. Neville St. Clair. Out of the window he must apparently have gone for no other exit could be discovered, and the ominous bloodstains upon the sill gave little promise that he could save himself by swimming, for the tide was at its very highest at the moment of the tragedy. "And now as to the villains who seemed to be immediately implicated in the matter. The Lascar was known to be a man of the vilest antecedents, but as, by Mrs. St. Clair's story, he was known to have been at the foot of the stair within a very few seconds of her husband's appearance at the window, he could hardly have been more than an accessory to the crime. His defence was one of absolute ignorance, and he protested that he had no knowledge as to the doings of Hugh Boone, his lodger, and that he could not account in any way for the presence of the missing gentleman's clothes. "So much for the Lascar manager. Now for the sinister cripple who lives upon the second floor of the opium den, and who was certainly the last human being whose eyes rested upon Neville St. Clair. His name is Hugh Boone, and his hideous face is one which is familiar to every man who goes much to the City. He is a professional beggar, though in order to avoid the police regulations he pretends to a small trade in wax vestas. Some little distance down Threadneedle Street, upon the left-hand side, there is, as you may have remarked, a small angle in the wall. Here it is that this creature takes his daily seat, cross-legged with his tiny stock of matches on his lap, and as he is a piteous spectacle a small rain of charity descends into the greasy leather cap which lies upon the pavement beside him. I have watched the fellow more than once before ever I thought of making his professional acquaintance, and I have been surprised at the harvest which he has reaped in a short time. His appearance, you see, is so remarkable that no one can pass him without observing him. A shock of orange hair, a pale face disfigured by a horrible scar, which, by its contraction, has turned up the outer edge of his upper lip, a bulldog chin, and a pair of very penetrating dark eyes, which present a singular contrast to the colour of his hair, all mark him out from amid the common crowd of mendicants and so, too, does his wit, for he is ever ready with a reply to any piece of chaff which may be thrown at him by the passers-by. This is the man whom we now learn to have been the lodger at the opium den, and to have been the last man to see the gentleman of whom we are in quest." "But a cripple!" said I. "What could he have done single-handed against a man in the prime of life?" "He is a cripple in the sense that he walks with a limp; but in other respects he appears to be a powerful and well-nurtured man. Surely your medical experience would tell you, Watson, that weakness in one limb is often compensated for by exceptional strength in the others." "Pray continue your narrative." "Mrs. St. Clair had fainted at the sight of the blood upon the window, and she was escorted home in a cab by the police, as her presence could be of no help to them in their investigations. Inspector Barton, who had charge of the case, made a very careful examination of the premises, but without finding anything which threw any light upon the matter. One mistake had been made in not arresting Boone instantly, as he was allowed some few minutes during which he might have communicated with his friend the Lascar, but this fault was soon remedied, and he was seized and searched, without anything being found which could incriminate him. There were, it is true, some blood-stains upon his right shirt-sleeve, but he pointed to his ring-finger, which had been cut near the nail, and explained that the bleeding came from there, adding that he had been to the window not long before, and that the stains which had been observed there came doubtless from the same source. He denied strenuously having ever seen Mr. Neville St. Clair and swore that the presence of the clothes in his room was as much a mystery to him as to the police. As to Mrs. St. Clair's assertion that she had actually seen her husband at the window, he declared that she must have been either mad or dreaming. He was removed, loudly protesting, to the police-station, while the inspector remained upon the premises in the hope that the ebbing tide might afford some fresh clue. "And it did, though they hardly found upon the mud-bank what they had feared to find. It was Neville St. Clair's coat, and not Neville St. Clair, which lay uncovered as the tide receded. And what do you think they found in the pockets?" "I cannot imagine." "No, I don't think you would guess. Every pocket stuffed with pennies and half-pennies--421 pennies and 270 half-pennies. It was no wonder that it had not been swept away by the tide. But a human body is a different matter. There is a fierce eddy between the wharf and the house. It seemed likely enough that the weighted coat had remained when the stripped body had been sucked away into the river." "But I understand that all the other clothes were found in the room. Would the body be dressed in a coat alone?" "No, sir, but the facts might be met speciously enough. Suppose that this man Boone had thrust Neville St. Clair through the window, there is no human eye which could have seen the deed. What would he do then? It would of course instantly strike him that he must get rid of the tell-tale garments. He would seize the coat, then, and be in the act of throwing it out, when it would occur to him that it would swim and not sink. He has little time, for he has heard the scuffle downstairs when the wife tried to force her way up, and perhaps he has already heard from his Lascar confederate that the police are hurrying up the street. There is not an instant to be lost. He rushes to some secret hoard, where he has accumulated the fruits of his beggary, and he stuffs all the coins upon which he can lay his hands into the pockets to make sure of the coat's sinking. He throws it out, and would have done the same with the other garments had not he heard the rush of steps below, and only just had time to close the window when the police appeared." "It certainly sounds feasible." "Well, we will take it as a working hypothesis for want of a better. Boone, as I have told you, was arrested and taken to the station, but it could not be shown that there had ever before been anything against him. He had for years been known as a professional beggar, but his life appeared to have been a very quiet and innocent one. There the matter stands at present, and the questions which have to be solved--what Neville St. Clair was doing in the opium den, what happened to him when there, where is he now, and what Hugh Boone had to do with his disappearance--are all as far from a solution as ever. I confess that I cannot recall any case within my experience which looked at the first glance so simple and yet which presented such difficulties." While Sherlock Holmes had been detailing this singular series of events, we had been whirling through the outskirts of the great town until the last straggling houses had been left behind, and we rattled along with a country hedge upon either side of us. Just as he finished, however, we drove through two scattered villages, where a few lights still glimmered in the windows. "We are on the outskirts of Lee," said my companion. "We have touched on three English counties in our short drive, starting in Middlesex, passing over an angle of Surrey, and ending in Kent. See that light among the trees? That is The Cedars, and beside that lamp sits a woman whose anxious ears have already, I have little doubt, caught the clink of our horse's feet." "But why are you not conducting the case from Baker Street?" I asked. "Because there are many inquiries which must be made out here. Mrs. St. Clair has most kindly put two rooms at my disposal, and you may rest assured that she will have nothing but a welcome for my friend and colleague. I hate to meet her, Watson, when I have no news of her husband. Here we are. Whoa, there, whoa!" We had pulled up in front of a large villa which stood within its own grounds. A stable-boy had run out to the horse's head, and springing down, I followed Holmes up the small, winding gravel-drive which led to the house. As we approached, the door flew open, and a little blonde woman stood in the opening, clad in some sort of light mousseline de soie, with a touch of fluffy pink chiffon at her neck and wrists. She stood with her figure outlined against the flood of light, one hand upon the door, one half-raised in her eagerness, her body slightly bent, her head and face protruded, with eager eyes and parted lips, a standing question. "Well?" she cried, "well?" And then, seeing that there were two of us, she gave a cry of hope which sank into a groan as she saw that my companion shook his head and shrugged his shoulders. "No good news?" "None." "No bad?" "No." "Thank God for that. But come in. You must be weary, for you have had a long day." "This is my friend, Dr. Watson. He has been of most vital use to me in several of my cases, and a lucky chance has made it possible for me to bring him out and associate him with this investigation." "I am delighted to see you," said she, pressing my hand warmly. "You will, I am sure, forgive anything that may be wanting in our arrangements, when you consider the blow which has come so suddenly upon us." "My dear madam," said I, "I am an old campaigner, and if I were not I can very well see that no apology is needed. If I can be of any assistance, either to you or to my friend here, I shall be indeed happy." "Now, Mr. Sherlock Holmes," said the lady as we entered a well-lit dining-room, upon the table of which a cold supper had been laid out, "I should very much like to ask you one or two plain questions, to which I beg that you will give a plain answer." "Certainly, madam." "Do not trouble about my feelings. I am not hysterical, nor given to fainting. I simply wish to hear your real, real opinion." "Upon what point?" "In your heart of hearts, do you think that Neville is alive?" Sherlock Holmes seemed to be embarrassed by the question. "Frankly, now!" she repeated, standing upon the rug and looking keenly down at him as he leaned back in a basket-chair. "Frankly, then, madam, I do not." "You think that he is dead?" "I do." "Murdered?" "I don't say that. Perhaps." "And on what day did he meet his death?" "On Monday." "Then perhaps, Mr. Holmes, you will be good enough to explain how it is that I have received a letter from him to-day." Sherlock Holmes sprang out of his chair as if he had been galvanised. "What!" he roared. "Yes, to-day." She stood smiling, holding up a little slip of paper in the air. "May I see it?" "Certainly." He snatched it from her in his eagerness, and smoothing it out upon the table he drew over the lamp and examined it intently. I had left my chair and was gazing at it over his shoulder. The envelope was a very coarse one and was stamped with the Gravesend postmark and with the date of that very day, or rather of the day before, for it was considerably after midnight. "Coarse writing," murmured Holmes. "Surely this is not your husband's writing, madam." "No, but the enclosure is." "I perceive also that whoever addressed the envelope had to go and inquire as to the address." "How can you tell that?" "The name, you see, is in perfectly black ink, which has dried itself. The rest is of the greyish colour, which shows that blotting-paper has been used. If it had been written straight off, and then blotted, none would be of a deep black shade. This man has written the name, and there has then been a pause before he wrote the address, which can only mean that he was not familiar with it. It is, of course, a trifle, but there is nothing so important as trifles. Let us now see the letter. Ha! there has been an enclosure here!" "Yes, there was a ring. His signet-ring." "And you are sure that this is your husband's hand?" "One of his hands." "One?" "His hand when he wrote hurriedly. It is very unlike his usual writing, and yet I know it well." "'Dearest do not be frightened. All will come well. There is a huge error which it may take some little time to rectify. Wait in patience.--NEVILLE.' Written in pencil upon the fly-leaf of a book, octavo size, no water-mark. Hum! Posted to-day in Gravesend by a man with a dirty thumb. Ha! And the flap has been gummed, if I am not very much in error, by a person who had been chewing tobacco. And you have no doubt that it is your husband's hand, madam?" "None. Neville wrote those words." "And they were posted to-day at Gravesend. Well, Mrs. St. Clair, the clouds lighten, though I should not venture to say that the danger is over." "But he must be alive, Mr. Holmes." "Unless this is a clever forgery to put us on the wrong scent. The ring, after all, proves nothing. It may have been taken from him." "No, no; it is, it is his very own writing!" "Very well. It may, however, have been written on Monday and only posted to-day." "That is possible." "If so, much may have happened between." "Oh, you must not discourage me, Mr. Holmes. I know that all is well with him. There is so keen a sympathy between us that I should know if evil came upon him. On the very day that I saw him last he cut himself in the bedroom, and yet I in the dining-room rushed upstairs instantly with the utmost certainty that something had happened. Do you think that I would respond to such a trifle and yet be ignorant of his death?" "I have seen too much not to know that the impression of a woman may be more valuable than the conclusion of an analytical reasoner. And in this letter you certainly have a very strong piece of evidence to corroborate your view. But if your husband is alive and able to write letters, why should he remain away from you?" "I cannot imagine. It is unthinkable." "And on Monday he made no remarks before leaving you?" "No." "And you were surprised to see him in Swandam Lane?" "Very much so." "Was the window open?" "Yes." "Then he might have called to you?" "He might." "He only, as I understand, gave an inarticulate cry?" "Yes." "A call for help, you thought?" "Yes. He waved his hands." "But it might have been a cry of surprise. Astonishment at the unexpected sight of you might cause him to throw up his hands?" "It is possible." "And you thought he was pulled back?" "He disappeared so suddenly." "He might have leaped back. You did not see anyone else in the room?" "No, but this horrible man confessed to having been there, and the Lascar was at the foot of the stairs." "Quite so. Your husband, as far as you could see, had his ordinary clothes on?" "But without his collar or tie. I distinctly saw his bare throat." "Had he ever spoken of Swandam Lane?" "Never." "Had he ever showed any signs of having taken opium?" "Never." "Thank you, Mrs. St. Clair. Those are the principal points about which I wished to be absolutely clear. We shall now have a little supper and then retire, for we may have a very busy day to-morrow." A large and comfortable double-bedded room had been placed at our disposal, and I was quickly between the sheets, for I was weary after my night of adventure. Sherlock Holmes was a man, however, who, when he had an unsolved problem upon his mind, would go for days, and even for a week, without rest, turning it over, rearranging his facts, looking at it from every point of view until he had either fathomed it or convinced himself that his data were insufficient. It was soon evident to me that he was now preparing for an all-night sitting. He took off his coat and waistcoat, put on a large blue dressing-gown, and then wandered about the room collecting pillows from his bed and cushions from the sofa and armchairs. With these he constructed a sort of Eastern divan, upon which he perched himself cross-legged, with an ounce of shag tobacco and a box of matches laid out in front of him. In the dim light of the lamp I saw him sitting there, an old briar pipe between his lips, his eyes fixed vacantly upon the corner of the ceiling, the blue smoke curling up from him, silent, motionless, with the light shining upon his strong-set aquiline features. So he sat as I dropped off to sleep, and so he sat when a sudden ejaculation caused me to wake up, and I found the summer sun shining into the apartment. The pipe was still between his lips, the smoke still curled upward, and the room was full of a dense tobacco haze, but nothing remained of the heap of shag which I had seen upon the previous night. "Awake, Watson?" he asked. "Yes." "Game for a morning drive?" "Certainly." "Then dress. No one is stirring yet, but I know where the stable-boy sleeps, and we shall soon have the trap out." He chuckled to himself as he spoke, his eyes twinkled, and he seemed a different man to the sombre thinker of the previous night. As I dressed I glanced at my watch. It was no wonder that no one was stirring. It was twenty-five minutes past four. I had hardly finished when Holmes returned with the news that the boy was putting in the horse. "I want to test a little theory of mine," said he, pulling on his boots. "I think, Watson, that you are now standing in the presence of one of the most absolute fools in Europe. I deserve to be kicked from here to Charing Cross. But I think I have the key of the affair now." "And where is it?" I asked, smiling. "In the bathroom," he answered. "Oh, yes, I am not joking," he continued, seeing my look of incredulity. "I have just been there, and I have taken it out, and I have got it in this Gladstone bag. Come on, my boy, and we shall see whether it will not fit the lock." We made our way downstairs as quietly as possible, and out into the bright morning sunshine. In the road stood our horse and trap, with the half-clad stable-boy waiting at the head. We both sprang in, and away we dashed down the London Road. A few country carts were stirring, bearing in vegetables to the metropolis, but the lines of villas on either side were as silent and lifeless as some city in a dream. "It has been in some points a singular case," said Holmes, flicking the horse on into a gallop. "I confess that I have been as blind as a mole, but it is better to learn wisdom late than never to learn it at all." In town the earliest risers were just beginning to look sleepily from their windows as we drove through the streets of the Surrey side. Passing down the Waterloo Bridge Road we crossed over the river, and dashing up Wellington Street wheeled sharply to the right and found ourselves in Bow Street. Sherlock Holmes was well known to the force, and the two constables at the door saluted him. One of them held the horse's head while the other led us in. "Who is on duty?" asked Holmes. "Inspector Bradstreet, sir." "Ah, Bradstreet, how are you?" A tall, stout official had come down the stone-flagged passage, in a peaked cap and frogged jacket. "I wish to have a quiet word with you, Bradstreet." "Certainly, Mr. Holmes. Step into my room here." It was a small, office-like room, with a huge ledger upon the table, and a telephone projecting from the wall. The inspector sat down at his desk. "What can I do for you, Mr. Holmes?" "I called about that beggarman, Boone--the one who was charged with being concerned in the disappearance of Mr. Neville St. Clair, of Lee." "Yes. He was brought up and remanded for further inquiries." "So I heard. You have him here?" "In the cells." "Is he quiet?" "Oh, he gives no trouble. But he is a dirty scoundrel." "Dirty?" "Yes, it is all we can do to make him wash his hands, and his face is as black as a tinker's. Well, when once his case has been settled, he will have a regular prison bath; and I think, if you saw him, you would agree with me that he needed it." "I should like to see him very much." "Would you? That is easily done. Come this way. You can leave your bag." "No, I think that I'll take it." "Very good. Come this way, if you please." He led us down a passage, opened a barred door, passed down a winding stair, and brought us to a whitewashed corridor with a line of doors on each side. "The third on the right is his," said the inspector. "Here it is!" He quietly shot back a panel in the upper part of the door and glanced through. "He is asleep," said he. "You can see him very well." We both put our eyes to the grating. The prisoner lay with his face towards us, in a very deep sleep, breathing slowly and heavily. He was a middle-sized man, coarsely clad as became his calling, with a coloured shirt protruding through the rent in his tattered coat. He was, as the inspector had said, extremely dirty, but the grime which covered his face could not conceal its repulsive ugliness. A broad wheal from an old scar ran right across it from eye to chin, and by its contraction had turned up one side of the upper lip, so that three teeth were exposed in a perpetual snarl. A shock of very bright red hair grew low over his eyes and forehead. "He's a beauty, isn't he?" said the inspector. "He certainly needs a wash," remarked Holmes. "I had an idea that he might, and I took the liberty of bringing the tools with me." He opened the Gladstone bag as he spoke, and took out, to my astonishment, a very large bath-sponge. "He! he! You are a funny one," chuckled the inspector. "Now, if you will have the great goodness to open that door very quietly, we will soon make him cut a much more respectable figure." "Well, I don't know why not," said the inspector. "He doesn't look a credit to the Bow Street cells, does he?" He slipped his key into the lock, and we all very quietly entered the cell. The sleeper half turned, and then settled down once more into a deep slumber. Holmes stooped to the water-jug, moistened his sponge, and then rubbed it twice vigorously across and down the prisoner's face. "Let me introduce you," he shouted, "to Mr. Neville St. Clair, of Lee, in the county of Kent." Never in my life have I seen such a sight. The man's face peeled off under the sponge like the bark from a tree. Gone was the coarse brown tint! Gone, too, was the horrid scar which had seamed it across, and the twisted lip which had given the repulsive sneer to the face! A twitch brought away the tangled red hair, and there, sitting up in his bed, was a pale, sad-faced, refined-looking man, black-haired and smooth-skinned, rubbing his eyes and staring about him with sleepy bewilderment. Then suddenly realising the exposure, he broke into a scream and threw himself down with his face to the pillow. "Great heavens!" cried the inspector, "it is, indeed, the missing man. I know him from the photograph." The prisoner turned with the reckless air of a man who abandons himself to his destiny. "Be it so," said he. "And pray what am I charged with?" "With making away with Mr. Neville St.-- Oh, come, you can't be charged with that unless they make a case of attempted suicide of it," said the inspector with a grin. "Well, I have been twenty-seven years in the force, but this really takes the cake." "If I am Mr. Neville St. Clair, then it is obvious that no crime has been committed, and that, therefore, I am illegally detained." "No crime, but a very great error has been committed," said Holmes. "You would have done better to have trusted your wife." "It was not the wife; it was the children," groaned the prisoner. "God help me, I would not have them ashamed of their father. My God! What an exposure! What can I do?" Sherlock Holmes sat down beside him on the couch and patted him kindly on the shoulder. "If you leave it to a court of law to clear the matter up," said he, "of course you can hardly avoid publicity. On the other hand, if you convince the police authorities that there is no possible case against you, I do not know that there is any reason that the details should find their way into the papers. Inspector Bradstreet would, I am sure, make notes upon anything which you might tell us and submit it to the proper authorities. The case would then never go into court at all." "God bless you!" cried the prisoner passionately. "I would have endured imprisonment, ay, even execution, rather than have left my miserable secret as a family blot to my children. "You are the first who have ever heard my story. My father was a schoolmaster in Chesterfield, where I received an excellent education. I travelled in my youth, took to the stage, and finally became a reporter on an evening paper in London. One day my editor wished to have a series of articles upon begging in the metropolis, and I volunteered to supply them. There was the point from which all my adventures started. It was only by trying begging as an amateur that I could get the facts upon which to base my articles. When an actor I had, of course, learned all the secrets of making up, and had been famous in the green-room for my skill. I took advantage now of my attainments. I painted my face, and to make myself as pitiable as possible I made a good scar and fixed one side of my lip in a twist by the aid of a small slip of flesh-coloured plaster. Then with a red head of hair, and an appropriate dress, I took my station in the business part of the city, ostensibly as a match-seller but really as a beggar. For seven hours I plied my trade, and when I returned home in the evening I found to my surprise that I had received no less than 26s. 4d. "I wrote my articles and thought little more of the matter until, some time later, I backed a bill for a friend and had a writ served upon me for 25 pounds. I was at my wit's end where to get the money, but a sudden idea came to me. I begged a fortnight's grace from the creditor, asked for a holiday from my employers, and spent the time in begging in the City under my disguise. In ten days I had the money and had paid the debt. "Well, you can imagine how hard it was to settle down to arduous work at 2 pounds a week when I knew that I could earn as much in a day by smearing my face with a little paint, laying my cap on the ground, and sitting still. It was a long fight between my pride and the money, but the dollars won at last, and I threw up reporting and sat day after day in the corner which I had first chosen, inspiring pity by my ghastly face and filling my pockets with coppers. Only one man knew my secret. He was the keeper of a low den in which I used to lodge in Swandam Lane, where I could every morning emerge as a squalid beggar and in the evenings transform myself into a well-dressed man about town. This fellow, a Lascar, was well paid by me for his rooms, so that I knew that my secret was safe in his possession. "Well, very soon I found that I was saving considerable sums of money. I do not mean that any beggar in the streets of London could earn 700 pounds a year--which is less than my average takings--but I had exceptional advantages in my power of making up, and also in a facility of repartee, which improved by practice and made me quite a recognised character in the City. All day a stream of pennies, varied by silver, poured in upon me, and it was a very bad day in which I failed to take 2 pounds. "As I grew richer I grew more ambitious, took a house in the country, and eventually married, without anyone having a suspicion as to my real occupation. My dear wife knew that I had business in the City. She little knew what. "Last Monday I had finished for the day and was dressing in my room above the opium den when I looked out of my window and saw, to my horror and astonishment, that my wife was standing in the street, with her eyes fixed full upon me. I gave a cry of surprise, threw up my arms to cover my face, and, rushing to my confidant, the Lascar, entreated him to prevent anyone from coming up to me. I heard her voice downstairs, but I knew that she could not ascend. Swiftly I threw off my clothes, pulled on those of a beggar, and put on my pigments and wig. Even a wife's eyes could not pierce so complete a disguise. But then it occurred to me that there might be a search in the room, and that the clothes might betray me. I threw open the window, reopening by my violence a small cut which I had inflicted upon myself in the bedroom that morning. Then I seized my coat, which was weighted by the coppers which I had just transferred to it from the leather bag in which I carried my takings. I hurled it out of the window, and it disappeared into the Thames. The other clothes would have followed, but at that moment there was a rush of constables up the stair, and a few minutes after I found, rather, I confess, to my relief, that instead of being identified as Mr. Neville St. Clair, I was arrested as his murderer. "I do not know that there is anything else for me to explain. I was determined to preserve my disguise as long as possible, and hence my preference for a dirty face. Knowing that my wife would be terribly anxious, I slipped off my ring and confided it to the Lascar at a moment when no constable was watching me, together with a hurried scrawl, telling her that she had no cause to fear." "That note only reached her yesterday," said Holmes. "Good God! What a week she must have spent!" "The police have watched this Lascar," said Inspector Bradstreet, "and I can quite understand that he might find it difficult to post a letter unobserved. Probably he handed it to some sailor customer of his, who forgot all about it for some days." "That was it," said Holmes, nodding approvingly; "I have no doubt of it. But have you never been prosecuted for begging?" "Many times; but what was a fine to me?" "It must stop here, however," said Bradstreet. "If the police are to hush this thing up, there must be no more of Hugh Boone." "I have sworn it by the most solemn oaths which a man can take." "In that case I think that it is probable that no further steps may be taken. But if you are found again, then all must come out. I am sure, Mr. Holmes, that we are very much indebted to you for having cleared the matter up. I wish I knew how you reach your results." "I reached this one," said my friend, "by sitting upon five pillows and consuming an ounce of shag. I think, Watson, that if we drive to Baker Street we shall just be in time for breakfast." VII. THE ADVENTURE OF THE BLUE CARBUNCLE I had called upon my friend Sherlock Holmes upon the second morning after Christmas, with the intention of wishing him the compliments of the season. He was lounging upon the sofa in a purple dressing-gown, a pipe-rack within his reach upon the right, and a pile of crumpled morning papers, evidently newly studied, near at hand. Beside the couch was a wooden chair, and on the angle of the back hung a very seedy and disreputable hard-felt hat, much the worse for wear, and cracked in several places. A lens and a forceps lying upon the seat of the chair suggested that the hat had been suspended in this manner for the purpose of examination. "You are engaged," said I; "perhaps I interrupt you." "Not at all. I am glad to have a friend with whom I can discuss my results. The matter is a perfectly trivial one"--he jerked his thumb in the direction of the old hat--"but there are points in connection with it which are not entirely devoid of interest and even of instruction." I seated myself in his armchair and warmed my hands before his crackling fire, for a sharp frost had set in, and the windows were thick with the ice crystals. "I suppose," I remarked, "that, homely as it looks, this thing has some deadly story linked on to it--that it is the clue which will guide you in the solution of some mystery and the punishment of some crime." "No, no. No crime," said Sherlock Holmes, laughing. "Only one of those whimsical little incidents which will happen when you have four million human beings all jostling each other within the space of a few square miles. Amid the action and reaction of so dense a swarm of humanity, every possible combination of events may be expected to take place, and many a little problem will be presented which may be striking and bizarre without being criminal. We have already had experience of such." "So much so," I remarked, "that of the last six cases which I have added to my notes, three have been entirely free of any legal crime." "Precisely. You allude to my attempt to recover the Irene Adler papers, to the singular case of Miss Mary Sutherland, and to the adventure of the man with the twisted lip. Well, I have no doubt that this small matter will fall into the same innocent category. You know Peterson, the commissionaire?" "Yes." "It is to him that this trophy belongs." "It is his hat." "No, no, he found it. Its owner is unknown. I beg that you will look upon it not as a battered billycock but as an intellectual problem. And, first, as to how it came here. It arrived upon Christmas morning, in company with a good fat goose, which is, I have no doubt, roasting at this moment in front of Peterson's fire. The facts are these: about four o'clock on Christmas morning, Peterson, who, as you know, is a very honest fellow, was returning from some small jollification and was making his way homeward down Tottenham Court Road. In front of him he saw, in the gaslight, a tallish man, walking with a slight stagger, and carrying a white goose slung over his shoulder. As he reached the corner of Goodge Street, a row broke out between this stranger and a little knot of roughs. One of the latter knocked off the man's hat, on which he raised his stick to defend himself and, swinging it over his head, smashed the shop window behind him. Peterson had rushed forward to protect the stranger from his assailants; but the man, shocked at having broken the window, and seeing an official-looking person in uniform rushing towards him, dropped his goose, took to his heels, and vanished amid the labyrinth of small streets which lie at the back of Tottenham Court Road. The roughs had also fled at the appearance of Peterson, so that he was left in possession of the field of battle, and also of the spoils of victory in the shape of this battered hat and a most unimpeachable Christmas goose." "Which surely he restored to their owner?" "My dear fellow, there lies the problem. It is true that 'For Mrs. Henry Baker' was printed upon a small card which was tied to the bird's left leg, and it is also true that the initials 'H. B.' are legible upon the lining of this hat, but as there are some thousands of Bakers, and some hundreds of Henry Bakers in this city of ours, it is not easy to restore lost property to any one of them." "What, then, did Peterson do?" "He brought round both hat and goose to me on Christmas morning, knowing that even the smallest problems are of interest to me. The goose we retained until this morning, when there were signs that, in spite of the slight frost, it would be well that it should be eaten without unnecessary delay. Its finder has carried it off, therefore, to fulfil the ultimate destiny of a goose, while I continue to retain the hat of the unknown gentleman who lost his Christmas dinner." "Did he not advertise?" "No." "Then, what clue could you have as to his identity?" "Only as much as we can deduce." "From his hat?" "Precisely." "But you are joking. What can you gather from this old battered felt?" "Here is my lens. You know my methods. What can you gather yourself as to the individuality of the man who has worn this article?" I took the tattered object in my hands and turned it over rather ruefully. It was a very ordinary black hat of the usual round shape, hard and much the worse for wear. The lining had been of red silk, but was a good deal discoloured. There was no maker's name; but, as Holmes had remarked, the initials "H. B." were scrawled upon one side. It was pierced in the brim for a hat-securer, but the elastic was missing. For the rest, it was cracked, exceedingly dusty, and spotted in several places, although there seemed to have been some attempt to hide the discoloured patches by smearing them with ink. "I can see nothing," said I, handing it back to my friend. "On the contrary, Watson, you can see everything. You fail, however, to reason from what you see. You are too timid in drawing your inferences." "Then, pray tell me what it is that you can infer from this hat?" He picked it up and gazed at it in the peculiar introspective fashion which was characteristic of him. "It is perhaps less suggestive than it might have been," he remarked, "and yet there are a few inferences which are very distinct, and a few others which represent at least a strong balance of probability. That the man was highly intellectual is of course obvious upon the face of it, and also that he was fairly well-to-do within the last three years, although he has now fallen upon evil days. He had foresight, but has less now than formerly, pointing to a moral retrogression, which, when taken with the decline of his fortunes, seems to indicate some evil influence, probably drink, at work upon him. This may account also for the obvious fact that his wife has ceased to love him." "My dear Holmes!" "He has, however, retained some degree of self-respect," he continued, disregarding my remonstrance. "He is a man who leads a sedentary life, goes out little, is out of training entirely, is middle-aged, has grizzled hair which he has had cut within the last few days, and which he anoints with lime-cream. These are the more patent facts which are to be deduced from his hat. Also, by the way, that it is extremely improbable that he has gas laid on in his house." "You are certainly joking, Holmes." "Not in the least. Is it possible that even now, when I give you these results, you are unable to see how they are attained?" "I have no doubt that I am very stupid, but I must confess that I am unable to follow you. For example, how did you deduce that this man was intellectual?" For answer Holmes clapped the hat upon his head. It came right over the forehead and settled upon the bridge of his nose. "It is a question of cubic capacity," said he; "a man with so large a brain must have something in it." "The decline of his fortunes, then?" "This hat is three years old. These flat brims curled at the edge came in then. It is a hat of the very best quality. Look at the band of ribbed silk and the excellent lining. If this man could afford to buy so expensive a hat three years ago, and has had no hat since, then he has assuredly gone down in the world." "Well, that is clear enough, certainly. But how about the foresight and the moral retrogression?" Sherlock Holmes laughed. "Here is the foresight," said he putting his finger upon the little disc and loop of the hat-securer. "They are never sold upon hats. If this man ordered one, it is a sign of a certain amount of foresight, since he went out of his way to take this precaution against the wind. But since we see that he has broken the elastic and has not troubled to replace it, it is obvious that he has less foresight now than formerly, which is a distinct proof of a weakening nature. On the other hand, he has endeavoured to conceal some of these stains upon the felt by daubing them with ink, which is a sign that he has not entirely lost his self-respect." "Your reasoning is certainly plausible." "The further points, that he is middle-aged, that his hair is grizzled, that it has been recently cut, and that he uses lime-cream, are all to be gathered from a close examination of the lower part of the lining. The lens discloses a large number of hair-ends, clean cut by the scissors of the barber. They all appear to be adhesive, and there is a distinct odour of lime-cream. This dust, you will observe, is not the gritty, grey dust of the street but the fluffy brown dust of the house, showing that it has been hung up indoors most of the time, while the marks of moisture upon the inside are proof positive that the wearer perspired very freely, and could therefore, hardly be in the best of training." "But his wife--you said that she had ceased to love him." "This hat has not been brushed for weeks. When I see you, my dear Watson, with a week's accumulation of dust upon your hat, and when your wife allows you to go out in such a state, I shall fear that you also have been unfortunate enough to lose your wife's affection." "But he might be a bachelor." "Nay, he was bringing home the goose as a peace-offering to his wife. Remember the card upon the bird's leg." "You have an answer to everything. But how on earth do you deduce that the gas is not laid on in his house?" "One tallow stain, or even two, might come by chance; but when I see no less than five, I think that there can be little doubt that the individual must be brought into frequent contact with burning tallow--walks upstairs at night probably with his hat in one hand and a guttering candle in the other. Anyhow, he never got tallow-stains from a gas-jet. Are you satisfied?" "Well, it is very ingenious," said I, laughing; "but since, as you said just now, there has been no crime committed, and no harm done save the loss of a goose, all this seems to be rather a waste of energy." Sherlock Holmes had opened his mouth to reply, when the door flew open, and Peterson, the commissionaire, rushed into the apartment with flushed cheeks and the face of a man who is dazed with astonishment. "The goose, Mr. Holmes! The goose, sir!" he gasped. "Eh? What of it, then? Has it returned to life and flapped off through the kitchen window?" Holmes twisted himself round upon the sofa to get a fairer view of the man's excited face. "See here, sir! See what my wife found in its crop!" He held out his hand and displayed upon the centre of the palm a brilliantly scintillating blue stone, rather smaller than a bean in size, but of such purity and radiance that it twinkled like an electric point in the dark hollow of his hand. Sherlock Holmes sat up with a whistle. "By Jove, Peterson!" said he, "this is treasure trove indeed. I suppose you know what you have got?" "A diamond, sir? A precious stone. It cuts into glass as though it were putty." "It's more than a precious stone. It is the precious stone." "Not the Countess of Morcar's blue carbuncle!" I ejaculated. "Precisely so. I ought to know its size and shape, seeing that I have read the advertisement about it in The Times every day lately. It is absolutely unique, and its value can only be conjectured, but the reward offered of 1000 pounds is certainly not within a twentieth part of the market price." "A thousand pounds! Great Lord of mercy!" The commissionaire plumped down into a chair and stared from one to the other of us. "That is the reward, and I have reason to know that there are sentimental considerations in the background which would induce the Countess to part with half her fortune if she could but recover the gem." "It was lost, if I remember aright, at the Hotel Cosmopolitan," I remarked. "Precisely so, on December 22nd, just five days ago. John Horner, a plumber, was accused of having abstracted it from the lady's jewel-case. The evidence against him was so strong that the case has been referred to the Assizes. I have some account of the matter here, I believe." He rummaged amid his newspapers, glancing over the dates, until at last he smoothed one out, doubled it over, and read the following paragraph: "Hotel Cosmopolitan Jewel Robbery. John Horner, 26, plumber, was brought up upon the charge of having upon the 22nd inst., abstracted from the jewel-case of the Countess of Morcar the valuable gem known as the blue carbuncle. James Ryder, upper-attendant at the hotel, gave his evidence to the effect that he had shown Horner up to the dressing-room of the Countess of Morcar upon the day of the robbery in order that he might solder the second bar of the grate, which was loose. He had remained with Horner some little time, but had finally been called away. On returning, he found that Horner had disappeared, that the bureau had been forced open, and that the small morocco casket in which, as it afterwards transpired, the Countess was accustomed to keep her jewel, was lying empty upon the dressing-table. Ryder instantly gave the alarm, and Horner was arrested the same evening; but the stone could not be found either upon his person or in his rooms. Catherine Cusack, maid to the Countess, deposed to having heard Ryder's cry of dismay on discovering the robbery, and to having rushed into the room, where she found matters as described by the last witness. Inspector Bradstreet, B division, gave evidence as to the arrest of Horner, who struggled frantically, and protested his innocence in the strongest terms. Evidence of a previous conviction for robbery having been given against the prisoner, the magistrate refused to deal summarily with the offence, but referred it to the Assizes. Horner, who had shown signs of intense emotion during the proceedings, fainted away at the conclusion and was carried out of court." "Hum! So much for the police-court," said Holmes thoughtfully, tossing aside the paper. "The question for us now to solve is the sequence of events leading from a rifled jewel-case at one end to the crop of a goose in Tottenham Court Road at the other. You see, Watson, our little deductions have suddenly assumed a much more important and less innocent aspect. Here is the stone; the stone came from the goose, and the goose came from Mr. Henry Baker, the gentleman with the bad hat and all the other characteristics with which I have bored you. So now we must set ourselves very seriously to finding this gentleman and ascertaining what part he has played in this little mystery. To do this, we must try the simplest means first, and these lie undoubtedly in an advertisement in all the evening papers. If this fail, I shall have recourse to other methods." "What will you say?" "Give me a pencil and that slip of paper. Now, then: 'Found at the corner of Goodge Street, a goose and a black felt hat. Mr. Henry Baker can have the same by applying at 6:30 this evening at 221B, Baker Street.' That is clear and concise." "Very. But will he see it?" "Well, he is sure to keep an eye on the papers, since, to a poor man, the loss was a heavy one. He was clearly so scared by his mischance in breaking the window and by the approach of Peterson that he thought of nothing but flight, but since then he must have bitterly regretted the impulse which caused him to drop his bird. Then, again, the introduction of his name will cause him to see it, for everyone who knows him will direct his attention to it. Here you are, Peterson, run down to the advertising agency and have this put in the evening papers." "In which, sir?" "Oh, in the Globe, Star, Pall Mall, St. James's, Evening News, Standard, Echo, and any others that occur to you." "Very well, sir. And this stone?" "Ah, yes, I shall keep the stone. Thank you. And, I say, Peterson, just buy a goose on your way back and leave it here with me, for we must have one to give to this gentleman in place of the one which your family is now devouring." When the commissionaire had gone, Holmes took up the stone and held it against the light. "It's a bonny thing," said he. "Just see how it glints and sparkles. Of course it is a nucleus and focus of crime. Every good stone is. They are the devil's pet baits. In the larger and older jewels every facet may stand for a bloody deed. This stone is not yet twenty years old. It was found in the banks of the Amoy River in southern China and is remarkable in having every characteristic of the carbuncle, save that it is blue in shade instead of ruby red. In spite of its youth, it has already a sinister history. There have been two murders, a vitriol-throwing, a suicide, and several robberies brought about for the sake of this forty-grain weight of crystallised charcoal. Who would think that so pretty a toy would be a purveyor to the gallows and the prison? I'll lock it up in my strong box now and drop a line to the Countess to say that we have it." "Do you think that this man Horner is innocent?" "I cannot tell." "Well, then, do you imagine that this other one, Henry Baker, had anything to do with the matter?" "It is, I think, much more likely that Henry Baker is an absolutely innocent man, who had no idea that the bird which he was carrying was of considerably more value than if it were made of solid gold. That, however, I shall determine by a very simple test if we have an answer to our advertisement." "And you can do nothing until then?" "Nothing." "In that case I shall continue my professional round. But I shall come back in the evening at the hour you have mentioned, for I should like to see the solution of so tangled a business." "Very glad to see you. I dine at seven. There is a woodcock, I believe. By the way, in view of recent occurrences, perhaps I ought to ask Mrs. Hudson to examine its crop." I had been delayed at a case, and it was a little after half-past six when I found myself in Baker Street once more. As I approached the house I saw a tall man in a Scotch bonnet with a coat which was buttoned up to his chin waiting outside in the bright semicircle which was thrown from the fanlight. Just as I arrived the door was opened, and we were shown up together to Holmes' room. "Mr. Henry Baker, I believe," said he, rising from his armchair and greeting his visitor with the easy air of geniality which he could so readily assume. "Pray take this chair by the fire, Mr. Baker. It is a cold night, and I observe that your circulation is more adapted for summer than for winter. Ah, Watson, you have just come at the right time. Is that your hat, Mr. Baker?" "Yes, sir, that is undoubtedly my hat." He was a large man with rounded shoulders, a massive head, and a broad, intelligent face, sloping down to a pointed beard of grizzled brown. A touch of red in nose and cheeks, with a slight tremor of his extended hand, recalled Holmes' surmise as to his habits. His rusty black frock-coat was buttoned right up in front, with the collar turned up, and his lank wrists protruded from his sleeves without a sign of cuff or shirt. He spoke in a slow staccato fashion, choosing his words with care, and gave the impression generally of a man of learning and letters who had had ill-usage at the hands of fortune. "We have retained these things for some days," said Holmes, "because we expected to see an advertisement from you giving your address. I am at a loss to know now why you did not advertise." Our visitor gave a rather shamefaced laugh. "Shillings have not been so plentiful with me as they once were," he remarked. "I had no doubt that the gang of roughs who assaulted me had carried off both my hat and the bird. I did not care to spend more money in a hopeless attempt at recovering them." "Very naturally. By the way, about the bird, we were compelled to eat it." "To eat it!" Our visitor half rose from his chair in his excitement. "Yes, it would have been of no use to anyone had we not done so. But I presume that this other goose upon the sideboard, which is about the same weight and perfectly fresh, will answer your purpose equally well?" "Oh, certainly, certainly," answered Mr. Baker with a sigh of relief. "Of course, we still have the feathers, legs, crop, and so on of your own bird, so if you wish--" The man burst into a hearty laugh. "They might be useful to me as relics of my adventure," said he, "but beyond that I can hardly see what use the disjecta membra of my late acquaintance are going to be to me. No, sir, I think that, with your permission, I will confine my attentions to the excellent bird which I perceive upon the sideboard." Sherlock Holmes glanced sharply across at me with a slight shrug of his shoulders. "There is your hat, then, and there your bird," said he. "By the way, would it bore you to tell me where you got the other one from? I am somewhat of a fowl fancier, and I have seldom seen a better grown goose." "Certainly, sir," said Baker, who had risen and tucked his newly gained property under his arm. "There are a few of us who frequent the Alpha Inn, near the Museum--we are to be found in the Museum itself during the day, you understand. This year our good host, Windigate by name, instituted a goose club, by which, on consideration of some few pence every week, we were each to receive a bird at Christmas. My pence were duly paid, and the rest is familiar to you. I am much indebted to you, sir, for a Scotch bonnet is fitted neither to my years nor my gravity." With a comical pomposity of manner he bowed solemnly to both of us and strode off upon his way. "So much for Mr. Henry Baker," said Holmes when he had closed the door behind him. "It is quite certain that he knows nothing whatever about the matter. Are you hungry, Watson?" "Not particularly." "Then I suggest that we turn our dinner into a supper and follow up this clue while it is still hot." "By all means." It was a bitter night, so we drew on our ulsters and wrapped cravats about our throats. Outside, the stars were shining coldly in a cloudless sky, and the breath of the passers-by blew out into smoke like so many pistol shots. Our footfalls rang out crisply and loudly as we swung through the doctors' quarter, Wimpole Street, Harley Street, and so through Wigmore Street into Oxford Street. In a quarter of an hour we were in Bloomsbury at the Alpha Inn, which is a small public-house at the corner of one of the streets which runs down into Holborn. Holmes pushed open the door of the private bar and ordered two glasses of beer from the ruddy-faced, white-aproned landlord. "Your beer should be excellent if it is as good as your geese," said he. "My geese!" The man seemed surprised. "Yes. I was speaking only half an hour ago to Mr. Henry Baker, who was a member of your goose club." "Ah! yes, I see. But you see, sir, them's not our geese." "Indeed! Whose, then?" "Well, I got the two dozen from a salesman in Covent Garden." "Indeed? I know some of them. Which was it?" "Breckinridge is his name." "Ah! I don't know him. Well, here's your good health landlord, and prosperity to your house. Good-night." "Now for Mr. Breckinridge," he continued, buttoning up his coat as we came out into the frosty air. "Remember, Watson that though we have so homely a thing as a goose at one end of this chain, we have at the other a man who will certainly get seven years' penal servitude unless we can establish his innocence. It is possible that our inquiry may but confirm his guilt; but, in any case, we have a line of investigation which has been missed by the police, and which a singular chance has placed in our hands. Let us follow it out to the bitter end. Faces to the south, then, and quick march!" We passed across Holborn, down Endell Street, and so through a zigzag of slums to Covent Garden Market. One of the largest stalls bore the name of Breckinridge upon it, and the proprietor a horsey-looking man, with a sharp face and trim side-whiskers was helping a boy to put up the shutters. "Good-evening. It's a cold night," said Holmes. The salesman nodded and shot a questioning glance at my companion. "Sold out of geese, I see," continued Holmes, pointing at the bare slabs of marble. "Let you have five hundred to-morrow morning." "That's no good." "Well, there are some on the stall with the gas-flare." "Ah, but I was recommended to you." "Who by?" "The landlord of the Alpha." "Oh, yes; I sent him a couple of dozen." "Fine birds they were, too. Now where did you get them from?" To my surprise the question provoked a burst of anger from the salesman. "Now, then, mister," said he, with his head cocked and his arms akimbo, "what are you driving at? Let's have it straight, now." "It is straight enough. I should like to know who sold you the geese which you supplied to the Alpha." "Well then, I shan't tell you. So now!" "Oh, it is a matter of no importance; but I don't know why you should be so warm over such a trifle." "Warm! You'd be as warm, maybe, if you were as pestered as I am. When I pay good money for a good article there should be an end of the business; but it's 'Where are the geese?' and 'Who did you sell the geese to?' and 'What will you take for the geese?' One would think they were the only geese in the world, to hear the fuss that is made over them." "Well, I have no connection with any other people who have been making inquiries," said Holmes carelessly. "If you won't tell us the bet is off, that is all. But I'm always ready to back my opinion on a matter of fowls, and I have a fiver on it that the bird I ate is country bred." "Well, then, you've lost your fiver, for it's town bred," snapped the salesman. "It's nothing of the kind." "I say it is." "I don't believe it." "D'you think you know more about fowls than I, who have handled them ever since I was a nipper? I tell you, all those birds that went to the Alpha were town bred." "You'll never persuade me to believe that." "Will you bet, then?" "It's merely taking your money, for I know that I am right. But I'll have a sovereign on with you, just to teach you not to be obstinate." The salesman chuckled grimly. "Bring me the books, Bill," said he. The small boy brought round a small thin volume and a great greasy-backed one, laying them out together beneath the hanging lamp. "Now then, Mr. Cocksure," said the salesman, "I thought that I was out of geese, but before I finish you'll find that there is still one left in my shop. You see this little book?" "Well?" "That's the list of the folk from whom I buy. D'you see? Well, then, here on this page are the country folk, and the numbers after their names are where their accounts are in the big ledger. Now, then! You see this other page in red ink? Well, that is a list of my town suppliers. Now, look at that third name. Just read it out to me." "Mrs. Oakshott, 117, Brixton Road--249," read Holmes. "Quite so. Now turn that up in the ledger." Holmes turned to the page indicated. "Here you are, 'Mrs. Oakshott, 117, Brixton Road, egg and poultry supplier.'" "Now, then, what's the last entry?" "'December 22nd. Twenty-four geese at 7s. 6d.'" "Quite so. There you are. And underneath?" "'Sold to Mr. Windigate of the Alpha, at 12s.'" "What have you to say now?" Sherlock Holmes looked deeply chagrined. He drew a sovereign from his pocket and threw it down upon the slab, turning away with the air of a man whose disgust is too deep for words. A few yards off he stopped under a lamp-post and laughed in the hearty, noiseless fashion which was peculiar to him. "When you see a man with whiskers of that cut and the 'Pink 'un' protruding out of his pocket, you can always draw him by a bet," said he. "I daresay that if I had put 100 pounds down in front of him, that man would not have given me such complete information as was drawn from him by the idea that he was doing me on a wager. Well, Watson, we are, I fancy, nearing the end of our quest, and the only point which remains to be determined is whether we should go on to this Mrs. Oakshott to-night, or whether we should reserve it for to-morrow. It is clear from what that surly fellow said that there are others besides ourselves who are anxious about the matter, and I should--" His remarks were suddenly cut short by a loud hubbub which broke out from the stall which we had just left. Turning round we saw a little rat-faced fellow standing in the centre of the circle of yellow light which was thrown by the swinging lamp, while Breckinridge, the salesman, framed in the door of his stall, was shaking his fists fiercely at the cringing figure. "I've had enough of you and your geese," he shouted. "I wish you were all at the devil together. If you come pestering me any more with your silly talk I'll set the dog at you. You bring Mrs. Oakshott here and I'll answer her, but what have you to do with it? Did I buy the geese off you?" "No; but one of them was mine all the same," whined the little man. "Well, then, ask Mrs. Oakshott for it." "She told me to ask you." "Well, you can ask the King of Proosia, for all I care. I've had enough of it. Get out of this!" He rushed fiercely forward, and the inquirer flitted away into the darkness. "Ha! this may save us a visit to Brixton Road," whispered Holmes. "Come with me, and we will see what is to be made of this fellow." Striding through the scattered knots of people who lounged round the flaring stalls, my companion speedily overtook the little man and touched him upon the shoulder. He sprang round, and I could see in the gas-light that every vestige of colour had been driven from his face. "Who are you, then? What do you want?" he asked in a quavering voice. "You will excuse me," said Holmes blandly, "but I could not help overhearing the questions which you put to the salesman just now. I think that I could be of assistance to you." "You? Who are you? How could you know anything of the matter?" "My name is Sherlock Holmes. It is my business to know what other people don't know." "But you can know nothing of this?" "Excuse me, I know everything of it. You are endeavouring to trace some geese which were sold by Mrs. Oakshott, of Brixton Road, to a salesman named Breckinridge, by him in turn to Mr. Windigate, of the Alpha, and by him to his club, of which Mr. Henry Baker is a member." "Oh, sir, you are the very man whom I have longed to meet," cried the little fellow with outstretched hands and quivering fingers. "I can hardly explain to you how interested I am in this matter." Sherlock Holmes hailed a four-wheeler which was passing. "In that case we had better discuss it in a cosy room rather than in this wind-swept market-place," said he. "But pray tell me, before we go farther, who it is that I have the pleasure of assisting." The man hesitated for an instant. "My name is John Robinson," he answered with a sidelong glance. "No, no; the real name," said Holmes sweetly. "It is always awkward doing business with an alias." A flush sprang to the white cheeks of the stranger. "Well then," said he, "my real name is James Ryder." "Precisely so. Head attendant at the Hotel Cosmopolitan. Pray step into the cab, and I shall soon be able to tell you everything which you would wish to know." The little man stood glancing from one to the other of us with half-frightened, half-hopeful eyes, as one who is not sure whether he is on the verge of a windfall or of a catastrophe. Then he stepped into the cab, and in half an hour we were back in the sitting-room at Baker Street. Nothing had been said during our drive, but the high, thin breathing of our new companion, and the claspings and unclaspings of his hands, spoke of the nervous tension within him. "Here we are!" said Holmes cheerily as we filed into the room. "The fire looks very seasonable in this weather. You look cold, Mr. Ryder. Pray take the basket-chair. I will just put on my slippers before we settle this little matter of yours. Now, then! You want to know what became of those geese?" "Yes, sir." "Or rather, I fancy, of that goose. It was one bird, I imagine in which you were interested--white, with a black bar across the tail." Ryder quivered with emotion. "Oh, sir," he cried, "can you tell me where it went to?" "It came here." "Here?" "Yes, and a most remarkable bird it proved. I don't wonder that you should take an interest in it. It laid an egg after it was dead--the bonniest, brightest little blue egg that ever was seen. I have it here in my museum." Our visitor staggered to his feet and clutched the mantelpiece with his right hand. Holmes unlocked his strong-box and held up the blue carbuncle, which shone out like a star, with a cold, brilliant, many-pointed radiance. Ryder stood glaring with a drawn face, uncertain whether to claim or to disown it. "The game's up, Ryder," said Holmes quietly. "Hold up, man, or you'll be into the fire! Give him an arm back into his chair, Watson. He's not got blood enough to go in for felony with impunity. Give him a dash of brandy. So! Now he looks a little more human. What a shrimp it is, to be sure!" For a moment he had staggered and nearly fallen, but the brandy brought a tinge of colour into his cheeks, and he sat staring with frightened eyes at his accuser. "I have almost every link in my hands, and all the proofs which I could possibly need, so there is little which you need tell me. Still, that little may as well be cleared up to make the case complete. You had heard, Ryder, of this blue stone of the Countess of Morcar's?" "It was Catherine Cusack who told me of it," said he in a crackling voice. "I see--her ladyship's waiting-maid. Well, the temptation of sudden wealth so easily acquired was too much for you, as it has been for better men before you; but you were not very scrupulous in the means you used. It seems to me, Ryder, that there is the making of a very pretty villain in you. You knew that this man Horner, the plumber, had been concerned in some such matter before, and that suspicion would rest the more readily upon him. What did you do, then? You made some small job in my lady's room--you and your confederate Cusack--and you managed that he should be the man sent for. Then, when he had left, you rifled the jewel-case, raised the alarm, and had this unfortunate man arrested. You then--" Ryder threw himself down suddenly upon the rug and clutched at my companion's knees. "For God's sake, have mercy!" he shrieked. "Think of my father! Of my mother! It would break their hearts. I never went wrong before! I never will again. I swear it. I'll swear it on a Bible. Oh, don't bring it into court! For Christ's sake, don't!" "Get back into your chair!" said Holmes sternly. "It is very well to cringe and crawl now, but you thought little enough of this poor Horner in the dock for a crime of which he knew nothing." "I will fly, Mr. Holmes. I will leave the country, sir. Then the charge against him will break down." "Hum! We will talk about that. And now let us hear a true account of the next act. How came the stone into the goose, and how came the goose into the open market? Tell us the truth, for there lies your only hope of safety." Ryder passed his tongue over his parched lips. "I will tell you it just as it happened, sir," said he. "When Horner had been arrested, it seemed to me that it would be best for me to get away with the stone at once, for I did not know at what moment the police might not take it into their heads to search me and my room. There was no place about the hotel where it would be safe. I went out, as if on some commission, and I made for my sister's house. She had married a man named Oakshott, and lived in Brixton Road, where she fattened fowls for the market. All the way there every man I met seemed to me to be a policeman or a detective; and, for all that it was a cold night, the sweat was pouring down my face before I came to the Brixton Road. My sister asked me what was the matter, and why I was so pale; but I told her that I had been upset by the jewel robbery at the hotel. Then I went into the back yard and smoked a pipe and wondered what it would be best to do. "I had a friend once called Maudsley, who went to the bad, and has just been serving his time in Pentonville. One day he had met me, and fell into talk about the ways of thieves, and how they could get rid of what they stole. I knew that he would be true to me, for I knew one or two things about him; so I made up my mind to go right on to Kilburn, where he lived, and take him into my confidence. He would show me how to turn the stone into money. But how to get to him in safety? I thought of the agonies I had gone through in coming from the hotel. I might at any moment be seized and searched, and there would be the stone in my waistcoat pocket. I was leaning against the wall at the time and looking at the geese which were waddling about round my feet, and suddenly an idea came into my head which showed me how I could beat the best detective that ever lived. "My sister had told me some weeks before that I might have the pick of her geese for a Christmas present, and I knew that she was always as good as her word. I would take my goose now, and in it I would carry my stone to Kilburn. There was a little shed in the yard, and behind this I drove one of the birds--a fine big one, white, with a barred tail. I caught it, and prying its bill open, I thrust the stone down its throat as far as my finger could reach. The bird gave a gulp, and I felt the stone pass along its gullet and down into its crop. But the creature flapped and struggled, and out came my sister to know what was the matter. As I turned to speak to her the brute broke loose and fluttered off among the others. "'Whatever were you doing with that bird, Jem?' says she. "'Well,' said I, 'you said you'd give me one for Christmas, and I was feeling which was the fattest.' "'Oh,' says she, 'we've set yours aside for you--Jem's bird, we call it. It's the big white one over yonder. There's twenty-six of them, which makes one for you, and one for us, and two dozen for the market.' "'Thank you, Maggie,' says I; 'but if it is all the same to you, I'd rather have that one I was handling just now.' "'The other is a good three pound heavier,' said she, 'and we fattened it expressly for you.' "'Never mind. I'll have the other, and I'll take it now,' said I. "'Oh, just as you like,' said she, a little huffed. 'Which is it you want, then?' "'That white one with the barred tail, right in the middle of the flock.' "'Oh, very well. Kill it and take it with you.' "Well, I did what she said, Mr. Holmes, and I carried the bird all the way to Kilburn. I told my pal what I had done, for he was a man that it was easy to tell a thing like that to. He laughed until he choked, and we got a knife and opened the goose. My heart turned to water, for there was no sign of the stone, and I knew that some terrible mistake had occurred. I left the bird, rushed back to my sister's, and hurried into the back yard. There was not a bird to be seen there. "'Where are they all, Maggie?' I cried. "'Gone to the dealer's, Jem.' "'Which dealer's?' "'Breckinridge, of Covent Garden.' "'But was there another with a barred tail?' I asked, 'the same as the one I chose?' "'Yes, Jem; there were two barred-tailed ones, and I could never tell them apart.' "Well, then, of course I saw it all, and I ran off as hard as my feet would carry me to this man Breckinridge; but he had sold the lot at once, and not one word would he tell me as to where they had gone. You heard him yourselves to-night. Well, he has always answered me like that. My sister thinks that I am going mad. Sometimes I think that I am myself. And now--and now I am myself a branded thief, without ever having touched the wealth for which I sold my character. God help me! God help me!" He burst into convulsive sobbing, with his face buried in his hands. There was a long silence, broken only by his heavy breathing and by the measured tapping of Sherlock Holmes' finger-tips upon the edge of the table. Then my friend rose and threw open the door. "Get out!" said he. "What, sir! Oh, Heaven bless you!" "No more words. Get out!" And no more words were needed. There was a rush, a clatter upon the stairs, the bang of a door, and the crisp rattle of running footfalls from the street. "After all, Watson," said Holmes, reaching up his hand for his clay pipe, "I am not retained by the police to supply their deficiencies. If Horner were in danger it would be another thing; but this fellow will not appear against him, and the case must collapse. I suppose that I am commuting a felony, but it is just possible that I am saving a soul. This fellow will not go wrong again; he is too terribly frightened. Send him to gaol now, and you make him a gaol-bird for life. Besides, it is the season of forgiveness. Chance has put in our way a most singular and whimsical problem, and its solution is its own reward. If you will have the goodness to touch the bell, Doctor, we will begin another investigation, in which, also a bird will be the chief feature." VIII. THE ADVENTURE OF THE SPECKLED BAND On glancing over my notes of the seventy odd cases in which I have during the last eight years studied the methods of my friend Sherlock Holmes, I find many tragic, some comic, a large number merely strange, but none commonplace; for, working as he did rather for the love of his art than for the acquirement of wealth, he refused to associate himself with any investigation which did not tend towards the unusual, and even the fantastic. Of all these varied cases, however, I cannot recall any which presented more singular features than that which was associated with the well-known Surrey family of the Roylotts of Stoke Moran. The events in question occurred in the early days of my association with Holmes, when we were sharing rooms as bachelors in Baker Street. It is possible that I might have placed them upon record before, but a promise of secrecy was made at the time, from which I have only been freed during the last month by the untimely death of the lady to whom the pledge was given. It is perhaps as well that the facts should now come to light, for I have reasons to know that there are widespread rumours as to the death of Dr. Grimesby Roylott which tend to make the matter even more terrible than the truth. It was early in April in the year '83 that I woke one morning to find Sherlock Holmes standing, fully dressed, by the side of my bed. He was a late riser, as a rule, and as the clock on the mantelpiece showed me that it was only a quarter-past seven, I blinked up at him in some surprise, and perhaps just a little resentment, for I was myself regular in my habits. "Very sorry to knock you up, Watson," said he, "but it's the common lot this morning. Mrs. Hudson has been knocked up, she retorted upon me, and I on you." "What is it, then--a fire?" "No; a client. It seems that a young lady has arrived in a considerable state of excitement, who insists upon seeing me. She is waiting now in the sitting-room. Now, when young ladies wander about the metropolis at this hour of the morning, and knock sleepy people up out of their beds, I presume that it is something very pressing which they have to communicate. Should it prove to be an interesting case, you would, I am sure, wish to follow it from the outset. I thought, at any rate, that I should call you and give you the chance." "My dear fellow, I would not miss it for anything." I had no keener pleasure than in following Holmes in his professional investigations, and in admiring the rapid deductions, as swift as intuitions, and yet always founded on a logical basis with which he unravelled the problems which were submitted to him. I rapidly threw on my clothes and was ready in a few minutes to accompany my friend down to the sitting-room. A lady dressed in black and heavily veiled, who had been sitting in the window, rose as we entered. "Good-morning, madam," said Holmes cheerily. "My name is Sherlock Holmes. This is my intimate friend and associate, Dr. Watson, before whom you can speak as freely as before myself. Ha! I am glad to see that Mrs. Hudson has had the good sense to light the fire. Pray draw up to it, and I shall order you a cup of hot coffee, for I observe that you are shivering." "It is not cold which makes me shiver," said the woman in a low voice, changing her seat as requested. "What, then?" "It is fear, Mr. Holmes. It is terror." She raised her veil as she spoke, and we could see that she was indeed in a pitiable state of agitation, her face all drawn and grey, with restless frightened eyes, like those of some hunted animal. Her features and figure were those of a woman of thirty, but her hair was shot with premature grey, and her expression was weary and haggard. Sherlock Holmes ran her over with one of his quick, all-comprehensive glances. "You must not fear," said he soothingly, bending forward and patting her forearm. "We shall soon set matters right, I have no doubt. You have come in by train this morning, I see." "You know me, then?" "No, but I observe the second half of a return ticket in the palm of your left glove. You must have started early, and yet you had a good drive in a dog-cart, along heavy roads, before you reached the station." The lady gave a violent start and stared in bewilderment at my companion. "There is no mystery, my dear madam," said he, smiling. "The left arm of your jacket is spattered with mud in no less than seven places. The marks are perfectly fresh. There is no vehicle save a dog-cart which throws up mud in that way, and then only when you sit on the left-hand side of the driver." "Whatever your reasons may be, you are perfectly correct," said she. "I started from home before six, reached Leatherhead at twenty past, and came in by the first train to Waterloo. Sir, I can stand this strain no longer; I shall go mad if it continues. I have no one to turn to--none, save only one, who cares for me, and he, poor fellow, can be of little aid. I have heard of you, Mr. Holmes; I have heard of you from Mrs. Farintosh, whom you helped in the hour of her sore need. It was from her that I had your address. Oh, sir, do you not think that you could help me, too, and at least throw a little light through the dense darkness which surrounds me? At present it is out of my power to reward you for your services, but in a month or six weeks I shall be married, with the control of my own income, and then at least you shall not find me ungrateful." Holmes turned to his desk and, unlocking it, drew out a small case-book, which he consulted. "Farintosh," said he. "Ah yes, I recall the case; it was concerned with an opal tiara. I think it was before your time, Watson. I can only say, madam, that I shall be happy to devote the same care to your case as I did to that of your friend. As to reward, my profession is its own reward; but you are at liberty to defray whatever expenses I may be put to, at the time which suits you best. And now I beg that you will lay before us everything that may help us in forming an opinion upon the matter." "Alas!" replied our visitor, "the very horror of my situation lies in the fact that my fears are so vague, and my suspicions depend so entirely upon small points, which might seem trivial to another, that even he to whom of all others I have a right to look for help and advice looks upon all that I tell him about it as the fancies of a nervous woman. He does not say so, but I can read it from his soothing answers and averted eyes. But I have heard, Mr. Holmes, that you can see deeply into the manifold wickedness of the human heart. You may advise me how to walk amid the dangers which encompass me." "I am all attention, madam." "My name is Helen Stoner, and I am living with my stepfather, who is the last survivor of one of the oldest Saxon families in England, the Roylotts of Stoke Moran, on the western border of Surrey." Holmes nodded his head. "The name is familiar to me," said he. "The family was at one time among the richest in England, and the estates extended over the borders into Berkshire in the north, and Hampshire in the west. In the last century, however, four successive heirs were of a dissolute and wasteful disposition, and the family ruin was eventually completed by a gambler in the days of the Regency. Nothing was left save a few acres of ground, and the two-hundred-year-old house, which is itself crushed under a heavy mortgage. The last squire dragged out his existence there, living the horrible life of an aristocratic pauper; but his only son, my stepfather, seeing that he must adapt himself to the new conditions, obtained an advance from a relative, which enabled him to take a medical degree and went out to Calcutta, where, by his professional skill and his force of character, he established a large practice. In a fit of anger, however, caused by some robberies which had been perpetrated in the house, he beat his native butler to death and narrowly escaped a capital sentence. As it was, he suffered a long term of imprisonment and afterwards returned to England a morose and disappointed man. "When Dr. Roylott was in India he married my mother, Mrs. Stoner, the young widow of Major-General Stoner, of the Bengal Artillery. My sister Julia and I were twins, and we were only two years old at the time of my mother's re-marriage. She had a considerable sum of money--not less than 1000 pounds a year--and this she bequeathed to Dr. Roylott entirely while we resided with him, with a provision that a certain annual sum should be allowed to each of us in the event of our marriage. Shortly after our return to England my mother died--she was killed eight years ago in a railway accident near Crewe. Dr. Roylott then abandoned his attempts to establish himself in practice in London and took us to live with him in the old ancestral house at Stoke Moran. The money which my mother had left was enough for all our wants, and there seemed to be no obstacle to our happiness. "But a terrible change came over our stepfather about this time. Instead of making friends and exchanging visits with our neighbours, who had at first been overjoyed to see a Roylott of Stoke Moran back in the old family seat, he shut himself up in his house and seldom came out save to indulge in ferocious quarrels with whoever might cross his path. Violence of temper approaching to mania has been hereditary in the men of the family, and in my stepfather's case it had, I believe, been intensified by his long residence in the tropics. A series of disgraceful brawls took place, two of which ended in the police-court, until at last he became the terror of the village, and the folks would fly at his approach, for he is a man of immense strength, and absolutely uncontrollable in his anger. "Last week he hurled the local blacksmith over a parapet into a stream, and it was only by paying over all the money which I could gather together that I was able to avert another public exposure. He had no friends at all save the wandering gipsies, and he would give these vagabonds leave to encamp upon the few acres of bramble-covered land which represent the family estate, and would accept in return the hospitality of their tents, wandering away with them sometimes for weeks on end. He has a passion also for Indian animals, which are sent over to him by a correspondent, and he has at this moment a cheetah and a baboon, which wander freely over his grounds and are feared by the villagers almost as much as their master. "You can imagine from what I say that my poor sister Julia and I had no great pleasure in our lives. No servant would stay with us, and for a long time we did all the work of the house. She was but thirty at the time of her death, and yet her hair had already begun to whiten, even as mine has." "Your sister is dead, then?" "She died just two years ago, and it is of her death that I wish to speak to you. You can understand that, living the life which I have described, we were little likely to see anyone of our own age and position. We had, however, an aunt, my mother's maiden sister, Miss Honoria Westphail, who lives near Harrow, and we were occasionally allowed to pay short visits at this lady's house. Julia went there at Christmas two years ago, and met there a half-pay major of marines, to whom she became engaged. My stepfather learned of the engagement when my sister returned and offered no objection to the marriage; but within a fortnight of the day which had been fixed for the wedding, the terrible event occurred which has deprived me of my only companion." Sherlock Holmes had been leaning back in his chair with his eyes closed and his head sunk in a cushion, but he half opened his lids now and glanced across at his visitor. "Pray be precise as to details," said he. "It is easy for me to be so, for every event of that dreadful time is seared into my memory. The manor-house is, as I have already said, very old, and only one wing is now inhabited. The bedrooms in this wing are on the ground floor, the sitting-rooms being in the central block of the buildings. Of these bedrooms the first is Dr. Roylott's, the second my sister's, and the third my own. There is no communication between them, but they all open out into the same corridor. Do I make myself plain?" "Perfectly so." "The windows of the three rooms open out upon the lawn. That fatal night Dr. Roylott had gone to his room early, though we knew that he had not retired to rest, for my sister was troubled by the smell of the strong Indian cigars which it was his custom to smoke. She left her room, therefore, and came into mine, where she sat for some time, chatting about her approaching wedding. At eleven o'clock she rose to leave me, but she paused at the door and looked back. "'Tell me, Helen,' said she, 'have you ever heard anyone whistle in the dead of the night?' "'Never,' said I. "'I suppose that you could not possibly whistle, yourself, in your sleep?' "'Certainly not. But why?' "'Because during the last few nights I have always, about three in the morning, heard a low, clear whistle. I am a light sleeper, and it has awakened me. I cannot tell where it came from--perhaps from the next room, perhaps from the lawn. I thought that I would just ask you whether you had heard it.' "'No, I have not. It must be those wretched gipsies in the plantation.' "'Very likely. And yet if it were on the lawn, I wonder that you did not hear it also.' "'Ah, but I sleep more heavily than you.' "'Well, it is of no great consequence, at any rate.' She smiled back at me, closed my door, and a few moments later I heard her key turn in the lock." "Indeed," said Holmes. "Was it your custom always to lock yourselves in at night?" "Always." "And why?" "I think that I mentioned to you that the doctor kept a cheetah and a baboon. We had no feeling of security unless our doors were locked." "Quite so. Pray proceed with your statement." "I could not sleep that night. A vague feeling of impending misfortune impressed me. My sister and I, you will recollect, were twins, and you know how subtle are the links which bind two souls which are so closely allied. It was a wild night. The wind was howling outside, and the rain was beating and splashing against the windows. Suddenly, amid all the hubbub of the gale, there burst forth the wild scream of a terrified woman. I knew that it was my sister's voice. I sprang from my bed, wrapped a shawl round me, and rushed into the corridor. As I opened my door I seemed to hear a low whistle, such as my sister described, and a few moments later a clanging sound, as if a mass of metal had fallen. As I ran down the passage, my sister's door was unlocked, and revolved slowly upon its hinges. I stared at it horror-stricken, not knowing what was about to issue from it. By the light of the corridor-lamp I saw my sister appear at the opening, her face blanched with terror, her hands groping for help, her whole figure swaying to and fro like that of a drunkard. I ran to her and threw my arms round her, but at that moment her knees seemed to give way and she fell to the ground. She writhed as one who is in terrible pain, and her limbs were dreadfully convulsed. At first I thought that she had not recognised me, but as I bent over her she suddenly shrieked out in a voice which I shall never forget, 'Oh, my God! Helen! It was the band! The speckled band!' There was something else which she would fain have said, and she stabbed with her finger into the air in the direction of the doctor's room, but a fresh convulsion seized her and choked her words. I rushed out, calling loudly for my stepfather, and I met him hastening from his room in his dressing-gown. When he reached my sister's side she was unconscious, and though he poured brandy down her throat and sent for medical aid from the village, all efforts were in vain, for she slowly sank and died without having recovered her consciousness. Such was the dreadful end of my beloved sister." "One moment," said Holmes, "are you sure about this whistle and metallic sound? Could you swear to it?" "That was what the county coroner asked me at the inquiry. It is my strong impression that I heard it, and yet, among the crash of the gale and the creaking of an old house, I may possibly have been deceived." "Was your sister dressed?" "No, she was in her night-dress. In her right hand was found the charred stump of a match, and in her left a match-box." "Showing that she had struck a light and looked about her when the alarm took place. That is important. And what conclusions did the coroner come to?" "He investigated the case with great care, for Dr. Roylott's conduct had long been notorious in the county, but he was unable to find any satisfactory cause of death. My evidence showed that the door had been fastened upon the inner side, and the windows were blocked by old-fashioned shutters with broad iron bars, which were secured every night. The walls were carefully sounded, and were shown to be quite solid all round, and the flooring was also thoroughly examined, with the same result. The chimney is wide, but is barred up by four large staples. It is certain, therefore, that my sister was quite alone when she met her end. Besides, there were no marks of any violence upon her." "How about poison?" "The doctors examined her for it, but without success." "What do you think that this unfortunate lady died of, then?" "It is my belief that she died of pure fear and nervous shock, though what it was that frightened her I cannot imagine." "Were there gipsies in the plantation at the time?" "Yes, there are nearly always some there." "Ah, and what did you gather from this allusion to a band--a speckled band?" "Sometimes I have thought that it was merely the wild talk of delirium, sometimes that it may have referred to some band of people, perhaps to these very gipsies in the plantation. I do not know whether the spotted handkerchiefs which so many of them wear over their heads might have suggested the strange adjective which she used." Holmes shook his head like a man who is far from being satisfied. "These are very deep waters," said he; "pray go on with your narrative." "Two years have passed since then, and my life has been until lately lonelier than ever. A month ago, however, a dear friend, whom I have known for many years, has done me the honour to ask my hand in marriage. His name is Armitage--Percy Armitage--the second son of Mr. Armitage, of Crane Water, near Reading. My stepfather has offered no opposition to the match, and we are to be married in the course of the spring. Two days ago some repairs were started in the west wing of the building, and my bedroom wall has been pierced, so that I have had to move into the chamber in which my sister died, and to sleep in the very bed in which she slept. Imagine, then, my thrill of terror when last night, as I lay awake, thinking over her terrible fate, I suddenly heard in the silence of the night the low whistle which had been the herald of her own death. I sprang up and lit the lamp, but nothing was to be seen in the room. I was too shaken to go to bed again, however, so I dressed, and as soon as it was daylight I slipped down, got a dog-cart at the Crown Inn, which is opposite, and drove to Leatherhead, from whence I have come on this morning with the one object of seeing you and asking your advice." "You have done wisely," said my friend. "But have you told me all?" "Yes, all." "Miss Roylott, you have not. You are screening your stepfather." "Why, what do you mean?" For answer Holmes pushed back the frill of black lace which fringed the hand that lay upon our visitor's knee. Five little livid spots, the marks of four fingers and a thumb, were printed upon the white wrist. "You have been cruelly used," said Holmes. The lady coloured deeply and covered over her injured wrist. "He is a hard man," she said, "and perhaps he hardly knows his own strength." There was a long silence, during which Holmes leaned his chin upon his hands and stared into the crackling fire. "This is a very deep business," he said at last. "There are a thousand details which I should desire to know before I decide upon our course of action. Yet we have not a moment to lose. If we were to come to Stoke Moran to-day, would it be possible for us to see over these rooms without the knowledge of your stepfather?" "As it happens, he spoke of coming into town to-day upon some most important business. It is probable that he will be away all day, and that there would be nothing to disturb you. We have a housekeeper now, but she is old and foolish, and I could easily get her out of the way." "Excellent. You are not averse to this trip, Watson?" "By no means." "Then we shall both come. What are you going to do yourself?" "I have one or two things which I would wish to do now that I am in town. But I shall return by the twelve o'clock train, so as to be there in time for your coming." "And you may expect us early in the afternoon. I have myself some small business matters to attend to. Will you not wait and breakfast?" "No, I must go. My heart is lightened already since I have confided my trouble to you. I shall look forward to seeing you again this afternoon." She dropped her thick black veil over her face and glided from the room. "And what do you think of it all, Watson?" asked Sherlock Holmes, leaning back in his chair. "It seems to me to be a most dark and sinister business." "Dark enough and sinister enough." "Yet if the lady is correct in saying that the flooring and walls are sound, and that the door, window, and chimney are impassable, then her sister must have been undoubtedly alone when she met her mysterious end." "What becomes, then, of these nocturnal whistles, and what of the very peculiar words of the dying woman?" "I cannot think." "When you combine the ideas of whistles at night, the presence of a band of gipsies who are on intimate terms with this old doctor, the fact that we have every reason to believe that the doctor has an interest in preventing his stepdaughter's marriage, the dying allusion to a band, and, finally, the fact that Miss Helen Stoner heard a metallic clang, which might have been caused by one of those metal bars that secured the shutters falling back into its place, I think that there is good ground to think that the mystery may be cleared along those lines." "But what, then, did the gipsies do?" "I cannot imagine." "I see many objections to any such theory." "And so do I. It is precisely for that reason that we are going to Stoke Moran this day. I want to see whether the objections are fatal, or if they may be explained away. But what in the name of the devil!" The ejaculation had been drawn from my companion by the fact that our door had been suddenly dashed open, and that a huge man had framed himself in the aperture. His costume was a peculiar mixture of the professional and of the agricultural, having a black top-hat, a long frock-coat, and a pair of high gaiters, with a hunting-crop swinging in his hand. So tall was he that his hat actually brushed the cross bar of the doorway, and his breadth seemed to span it across from side to side. A large face, seared with a thousand wrinkles, burned yellow with the sun, and marked with every evil passion, was turned from one to the other of us, while his deep-set, bile-shot eyes, and his high, thin, fleshless nose, gave him somewhat the resemblance to a fierce old bird of prey. "Which of you is Holmes?" asked this apparition. "My name, sir; but you have the advantage of me," said my companion quietly. "I am Dr. Grimesby Roylott, of Stoke Moran." "Indeed, Doctor," said Holmes blandly. "Pray take a seat." "I will do nothing of the kind. My stepdaughter has been here. I have traced her. What has she been saying to you?" "It is a little cold for the time of the year," said Holmes. "What has she been saying to you?" screamed the old man furiously. "But I have heard that the crocuses promise well," continued my companion imperturbably. "Ha! You put me off, do you?" said our new visitor, taking a step forward and shaking his hunting-crop. "I know you, you scoundrel! I have heard of you before. You are Holmes, the meddler." My friend smiled. "Holmes, the busybody!" His smile broadened. "Holmes, the Scotland Yard Jack-in-office!" Holmes chuckled heartily. "Your conversation is most entertaining," said he. "When you go out close the door, for there is a decided draught." "I will go when I have said my say. Don't you dare to meddle with my affairs. I know that Miss Stoner has been here. I traced her! I am a dangerous man to fall foul of! See here." He stepped swiftly forward, seized the poker, and bent it into a curve with his huge brown hands. "See that you keep yourself out of my grip," he snarled, and hurling the twisted poker into the fireplace he strode out of the room. "He seems a very amiable person," said Holmes, laughing. "I am not quite so bulky, but if he had remained I might have shown him that my grip was not much more feeble than his own." As he spoke he picked up the steel poker and, with a sudden effort, straightened it out again. "Fancy his having the insolence to confound me with the official detective force! This incident gives zest to our investigation, however, and I only trust that our little friend will not suffer from her imprudence in allowing this brute to trace her. And now, Watson, we shall order breakfast, and afterwards I shall walk down to Doctors' Commons, where I hope to get some data which may help us in this matter." It was nearly one o'clock when Sherlock Holmes returned from his excursion. He held in his hand a sheet of blue paper, scrawled over with notes and figures. "I have seen the will of the deceased wife," said he. "To determine its exact meaning I have been obliged to work out the present prices of the investments with which it is concerned. The total income, which at the time of the wife's death was little short of 1100 pounds, is now, through the fall in agricultural prices, not more than 750 pounds. Each daughter can claim an income of 250 pounds, in case of marriage. It is evident, therefore, that if both girls had married, this beauty would have had a mere pittance, while even one of them would cripple him to a very serious extent. My morning's work has not been wasted, since it has proved that he has the very strongest motives for standing in the way of anything of the sort. And now, Watson, this is too serious for dawdling, especially as the old man is aware that we are interesting ourselves in his affairs; so if you are ready, we shall call a cab and drive to Waterloo. I should be very much obliged if you would slip your revolver into your pocket. An Eley's No. 2 is an excellent argument with gentlemen who can twist steel pokers into knots. That and a tooth-brush are, I think, all that we need." At Waterloo we were fortunate in catching a train for Leatherhead, where we hired a trap at the station inn and drove for four or five miles through the lovely Surrey lanes. It was a perfect day, with a bright sun and a few fleecy clouds in the heavens. The trees and wayside hedges were just throwing out their first green shoots, and the air was full of the pleasant smell of the moist earth. To me at least there was a strange contrast between the sweet promise of the spring and this sinister quest upon which we were engaged. My companion sat in the front of the trap, his arms folded, his hat pulled down over his eyes, and his chin sunk upon his breast, buried in the deepest thought. Suddenly, however, he started, tapped me on the shoulder, and pointed over the meadows. "Look there!" said he. A heavily timbered park stretched up in a gentle slope, thickening into a grove at the highest point. From amid the branches there jutted out the grey gables and high roof-tree of a very old mansion. "Stoke Moran?" said he. "Yes, sir, that be the house of Dr. Grimesby Roylott," remarked the driver. "There is some building going on there," said Holmes; "that is where we are going." "There's the village," said the driver, pointing to a cluster of roofs some distance to the left; "but if you want to get to the house, you'll find it shorter to get over this stile, and so by the foot-path over the fields. There it is, where the lady is walking." "And the lady, I fancy, is Miss Stoner," observed Holmes, shading his eyes. "Yes, I think we had better do as you suggest." We got off, paid our fare, and the trap rattled back on its way to Leatherhead. "I thought it as well," said Holmes as we climbed the stile, "that this fellow should think we had come here as architects, or on some definite business. It may stop his gossip. Good-afternoon, Miss Stoner. You see that we have been as good as our word." Our client of the morning had hurried forward to meet us with a face which spoke her joy. "I have been waiting so eagerly for you," she cried, shaking hands with us warmly. "All has turned out splendidly. Dr. Roylott has gone to town, and it is unlikely that he will be back before evening." "We have had the pleasure of making the doctor's acquaintance," said Holmes, and in a few words he sketched out what had occurred. Miss Stoner turned white to the lips as she listened. "Good heavens!" she cried, "he has followed me, then." "So it appears." "He is so cunning that I never know when I am safe from him. What will he say when he returns?" "He must guard himself, for he may find that there is someone more cunning than himself upon his track. You must lock yourself up from him to-night. If he is violent, we shall take you away to your aunt's at Harrow. Now, we must make the best use of our time, so kindly take us at once to the rooms which we are to examine." The building was of grey, lichen-blotched stone, with a high central portion and two curving wings, like the claws of a crab, thrown out on each side. In one of these wings the windows were broken and blocked with wooden boards, while the roof was partly caved in, a picture of ruin. The central portion was in little better repair, but the right-hand block was comparatively modern, and the blinds in the windows, with the blue smoke curling up from the chimneys, showed that this was where the family resided. Some scaffolding had been erected against the end wall, and the stone-work had been broken into, but there were no signs of any workmen at the moment of our visit. Holmes walked slowly up and down the ill-trimmed lawn and examined with deep attention the outsides of the windows. "This, I take it, belongs to the room in which you used to sleep, the centre one to your sister's, and the one next to the main building to Dr. Roylott's chamber?" "Exactly so. But I am now sleeping in the middle one." "Pending the alterations, as I understand. By the way, there does not seem to be any very pressing need for repairs at that end wall." "There were none. I believe that it was an excuse to move me from my room." "Ah! that is suggestive. Now, on the other side of this narrow wing runs the corridor from which these three rooms open. There are windows in it, of course?" "Yes, but very small ones. Too narrow for anyone to pass through." "As you both locked your doors at night, your rooms were unapproachable from that side. Now, would you have the kindness to go into your room and bar your shutters?" Miss Stoner did so, and Holmes, after a careful examination through the open window, endeavoured in every way to force the shutter open, but without success. There was no slit through which a knife could be passed to raise the bar. Then with his lens he tested the hinges, but they were of solid iron, built firmly into the massive masonry. "Hum!" said he, scratching his chin in some perplexity, "my theory certainly presents some difficulties. No one could pass these shutters if they were bolted. Well, we shall see if the inside throws any light upon the matter." A small side door led into the whitewashed corridor from which the three bedrooms opened. Holmes refused to examine the third chamber, so we passed at once to the second, that in which Miss Stoner was now sleeping, and in which her sister had met with her fate. It was a homely little room, with a low ceiling and a gaping fireplace, after the fashion of old country-houses. A brown chest of drawers stood in one corner, a narrow white-counterpaned bed in another, and a dressing-table on the left-hand side of the window. These articles, with two small wicker-work chairs, made up all the furniture in the room save for a square of Wilton carpet in the centre. The boards round and the panelling of the walls were of brown, worm-eaten oak, so old and discoloured that it may have dated from the original building of the house. Holmes drew one of the chairs into a corner and sat silent, while his eyes travelled round and round and up and down, taking in every detail of the apartment. "Where does that bell communicate with?" he asked at last pointing to a thick bell-rope which hung down beside the bed, the tassel actually lying upon the pillow. "It goes to the housekeeper's room." "It looks newer than the other things?" "Yes, it was only put there a couple of years ago." "Your sister asked for it, I suppose?" "No, I never heard of her using it. We used always to get what we wanted for ourselves." "Indeed, it seemed unnecessary to put so nice a bell-pull there. You will excuse me for a few minutes while I satisfy myself as to this floor." He threw himself down upon his face with his lens in his hand and crawled swiftly backward and forward, examining minutely the cracks between the boards. Then he did the same with the wood-work with which the chamber was panelled. Finally he walked over to the bed and spent some time in staring at it and in running his eye up and down the wall. Finally he took the bell-rope in his hand and gave it a brisk tug. "Why, it's a dummy," said he. "Won't it ring?" "No, it is not even attached to a wire. This is very interesting. You can see now that it is fastened to a hook just above where the little opening for the ventilator is." "How very absurd! I never noticed that before." "Very strange!" muttered Holmes, pulling at the rope. "There are one or two very singular points about this room. For example, what a fool a builder must be to open a ventilator into another room, when, with the same trouble, he might have communicated with the outside air!" "That is also quite modern," said the lady. "Done about the same time as the bell-rope?" remarked Holmes. "Yes, there were several little changes carried out about that time." "They seem to have been of a most interesting character--dummy bell-ropes, and ventilators which do not ventilate. With your permission, Miss Stoner, we shall now carry our researches into the inner apartment." Dr. Grimesby Roylott's chamber was larger than that of his step-daughter, but was as plainly furnished. A camp-bed, a small wooden shelf full of books, mostly of a technical character, an armchair beside the bed, a plain wooden chair against the wall, a round table, and a large iron safe were the principal things which met the eye. Holmes walked slowly round and examined each and all of them with the keenest interest. "What's in here?" he asked, tapping the safe. "My stepfather's business papers." "Oh! you have seen inside, then?" "Only once, some years ago. I remember that it was full of papers." "There isn't a cat in it, for example?" "No. What a strange idea!" "Well, look at this!" He took up a small saucer of milk which stood on the top of it. "No; we don't keep a cat. But there is a cheetah and a baboon." "Ah, yes, of course! Well, a cheetah is just a big cat, and yet a saucer of milk does not go very far in satisfying its wants, I daresay. There is one point which I should wish to determine." He squatted down in front of the wooden chair and examined the seat of it with the greatest attention. "Thank you. That is quite settled," said he, rising and putting his lens in his pocket. "Hullo! Here is something interesting!" The object which had caught his eye was a small dog lash hung on one corner of the bed. The lash, however, was curled upon itself and tied so as to make a loop of whipcord. "What do you make of that, Watson?" "It's a common enough lash. But I don't know why it should be tied." "That is not quite so common, is it? Ah, me! it's a wicked world, and when a clever man turns his brains to crime it is the worst of all. I think that I have seen enough now, Miss Stoner, and with your permission we shall walk out upon the lawn." I had never seen my friend's face so grim or his brow so dark as it was when we turned from the scene of this investigation. We had walked several times up and down the lawn, neither Miss Stoner nor myself liking to break in upon his thoughts before he roused himself from his reverie. "It is very essential, Miss Stoner," said he, "that you should absolutely follow my advice in every respect." "I shall most certainly do so." "The matter is too serious for any hesitation. Your life may depend upon your compliance." "I assure you that I am in your hands." "In the first place, both my friend and I must spend the night in your room." Both Miss Stoner and I gazed at him in astonishment. "Yes, it must be so. Let me explain. I believe that that is the village inn over there?" "Yes, that is the Crown." "Very good. Your windows would be visible from there?" "Certainly." "You must confine yourself to your room, on pretence of a headache, when your stepfather comes back. Then when you hear him retire for the night, you must open the shutters of your window, undo the hasp, put your lamp there as a signal to us, and then withdraw quietly with everything which you are likely to want into the room which you used to occupy. I have no doubt that, in spite of the repairs, you could manage there for one night." "Oh, yes, easily." "The rest you will leave in our hands." "But what will you do?" "We shall spend the night in your room, and we shall investigate the cause of this noise which has disturbed you." "I believe, Mr. Holmes, that you have already made up your mind," said Miss Stoner, laying her hand upon my companion's sleeve. "Perhaps I have." "Then, for pity's sake, tell me what was the cause of my sister's death." "I should prefer to have clearer proofs before I speak." "You can at least tell me whether my own thought is correct, and if she died from some sudden fright." "No, I do not think so. I think that there was probably some more tangible cause. And now, Miss Stoner, we must leave you for if Dr. Roylott returned and saw us our journey would be in vain. Good-bye, and be brave, for if you will do what I have told you, you may rest assured that we shall soon drive away the dangers that threaten you." Sherlock Holmes and I had no difficulty in engaging a bedroom and sitting-room at the Crown Inn. They were on the upper floor, and from our window we could command a view of the avenue gate, and of the inhabited wing of Stoke Moran Manor House. At dusk we saw Dr. Grimesby Roylott drive past, his huge form looming up beside the little figure of the lad who drove him. The boy had some slight difficulty in undoing the heavy iron gates, and we heard the hoarse roar of the doctor's voice and saw the fury with which he shook his clinched fists at him. The trap drove on, and a few minutes later we saw a sudden light spring up among the trees as the lamp was lit in one of the sitting-rooms. "Do you know, Watson," said Holmes as we sat together in the gathering darkness, "I have really some scruples as to taking you to-night. There is a distinct element of danger." "Can I be of assistance?" "Your presence might be invaluable." "Then I shall certainly come." "It is very kind of you." "You speak of danger. You have evidently seen more in these rooms than was visible to me." "No, but I fancy that I may have deduced a little more. I imagine that you saw all that I did." "I saw nothing remarkable save the bell-rope, and what purpose that could answer I confess is more than I can imagine." "You saw the ventilator, too?" "Yes, but I do not think that it is such a very unusual thing to have a small opening between two rooms. It was so small that a rat could hardly pass through." "I knew that we should find a ventilator before ever we came to Stoke Moran." "My dear Holmes!" "Oh, yes, I did. You remember in her statement she said that her sister could smell Dr. Roylott's cigar. Now, of course that suggested at once that there must be a communication between the two rooms. It could only be a small one, or it would have been remarked upon at the coroner's inquiry. I deduced a ventilator." "But what harm can there be in that?" "Well, there is at least a curious coincidence of dates. A ventilator is made, a cord is hung, and a lady who sleeps in the bed dies. Does not that strike you?" "I cannot as yet see any connection." "Did you observe anything very peculiar about that bed?" "No." "It was clamped to the floor. Did you ever see a bed fastened like that before?" "I cannot say that I have." "The lady could not move her bed. It must always be in the same relative position to the ventilator and to the rope--or so we may call it, since it was clearly never meant for a bell-pull." "Holmes," I cried, "I seem to see dimly what you are hinting at. We are only just in time to prevent some subtle and horrible crime." "Subtle enough and horrible enough. When a doctor does go wrong he is the first of criminals. He has nerve and he has knowledge. Palmer and Pritchard were among the heads of their profession. This man strikes even deeper, but I think, Watson, that we shall be able to strike deeper still. But we shall have horrors enough before the night is over; for goodness' sake let us have a quiet pipe and turn our minds for a few hours to something more cheerful." About nine o'clock the light among the trees was extinguished, and all was dark in the direction of the Manor House. Two hours passed slowly away, and then, suddenly, just at the stroke of eleven, a single bright light shone out right in front of us. "That is our signal," said Holmes, springing to his feet; "it comes from the middle window." As we passed out he exchanged a few words with the landlord, explaining that we were going on a late visit to an acquaintance, and that it was possible that we might spend the night there. A moment later we were out on the dark road, a chill wind blowing in our faces, and one yellow light twinkling in front of us through the gloom to guide us on our sombre errand. There was little difficulty in entering the grounds, for unrepaired breaches gaped in the old park wall. Making our way among the trees, we reached the lawn, crossed it, and were about to enter through the window when out from a clump of laurel bushes there darted what seemed to be a hideous and distorted child, who threw itself upon the grass with writhing limbs and then ran swiftly across the lawn into the darkness. "My God!" I whispered; "did you see it?" Holmes was for the moment as startled as I. His hand closed like a vice upon my wrist in his agitation. Then he broke into a low laugh and put his lips to my ear. "It is a nice household," he murmured. "That is the baboon." I had forgotten the strange pets which the doctor affected. There was a cheetah, too; perhaps we might find it upon our shoulders at any moment. I confess that I felt easier in my mind when, after following Holmes' example and slipping off my shoes, I found myself inside the bedroom. My companion noiselessly closed the shutters, moved the lamp onto the table, and cast his eyes round the room. All was as we had seen it in the daytime. Then creeping up to me and making a trumpet of his hand, he whispered into my ear again so gently that it was all that I could do to distinguish the words: "The least sound would be fatal to our plans." I nodded to show that I had heard. "We must sit without light. He would see it through the ventilator." I nodded again. "Do not go asleep; your very life may depend upon it. Have your pistol ready in case we should need it. I will sit on the side of the bed, and you in that chair." I took out my revolver and laid it on the corner of the table. Holmes had brought up a long thin cane, and this he placed upon the bed beside him. By it he laid the box of matches and the stump of a candle. Then he turned down the lamp, and we were left in darkness. How shall I ever forget that dreadful vigil? I could not hear a sound, not even the drawing of a breath, and yet I knew that my companion sat open-eyed, within a few feet of me, in the same state of nervous tension in which I was myself. The shutters cut off the least ray of light, and we waited in absolute darkness. From outside came the occasional cry of a night-bird, and once at our very window a long drawn catlike whine, which told us that the cheetah was indeed at liberty. Far away we could hear the deep tones of the parish clock, which boomed out every quarter of an hour. How long they seemed, those quarters! Twelve struck, and one and two and three, and still we sat waiting silently for whatever might befall. Suddenly there was the momentary gleam of a light up in the direction of the ventilator, which vanished immediately, but was succeeded by a strong smell of burning oil and heated metal. Someone in the next room had lit a dark-lantern. I heard a gentle sound of movement, and then all was silent once more, though the smell grew stronger. For half an hour I sat with straining ears. Then suddenly another sound became audible--a very gentle, soothing sound, like that of a small jet of steam escaping continually from a kettle. The instant that we heard it, Holmes sprang from the bed, struck a match, and lashed furiously with his cane at the bell-pull. "You see it, Watson?" he yelled. "You see it?" But I saw nothing. At the moment when Holmes struck the light I heard a low, clear whistle, but the sudden glare flashing into my weary eyes made it impossible for me to tell what it was at which my friend lashed so savagely. I could, however, see that his face was deadly pale and filled with horror and loathing. He had ceased to strike and was gazing up at the ventilator when suddenly there broke from the silence of the night the most horrible cry to which I have ever listened. It swelled up louder and louder, a hoarse yell of pain and fear and anger all mingled in the one dreadful shriek. They say that away down in the village, and even in the distant parsonage, that cry raised the sleepers from their beds. It struck cold to our hearts, and I stood gazing at Holmes, and he at me, until the last echoes of it had died away into the silence from which it rose. "What can it mean?" I gasped. "It means that it is all over," Holmes answered. "And perhaps, after all, it is for the best. Take your pistol, and we will enter Dr. Roylott's room." With a grave face he lit the lamp and led the way down the corridor. Twice he struck at the chamber door without any reply from within. Then he turned the handle and entered, I at his heels, with the cocked pistol in my hand. It was a singular sight which met our eyes. On the table stood a dark-lantern with the shutter half open, throwing a brilliant beam of light upon the iron safe, the door of which was ajar. Beside this table, on the wooden chair, sat Dr. Grimesby Roylott clad in a long grey dressing-gown, his bare ankles protruding beneath, and his feet thrust into red heelless Turkish slippers. Across his lap lay the short stock with the long lash which we had noticed during the day. His chin was cocked upward and his eyes were fixed in a dreadful, rigid stare at the corner of the ceiling. Round his brow he had a peculiar yellow band, with brownish speckles, which seemed to be bound tightly round his head. As we entered he made neither sound nor motion. "The band! the speckled band!" whispered Holmes. I took a step forward. In an instant his strange headgear began to move, and there reared itself from among his hair the squat diamond-shaped head and puffed neck of a loathsome serpent. "It is a swamp adder!" cried Holmes; "the deadliest snake in India. He has died within ten seconds of being bitten. Violence does, in truth, recoil upon the violent, and the schemer falls into the pit which he digs for another. Let us thrust this creature back into its den, and we can then remove Miss Stoner to some place of shelter and let the county police know what has happened." As he spoke he drew the dog-whip swiftly from the dead man's lap, and throwing the noose round the reptile's neck he drew it from its horrid perch and, carrying it at arm's length, threw it into the iron safe, which he closed upon it. Such are the true facts of the death of Dr. Grimesby Roylott, of Stoke Moran. It is not necessary that I should prolong a narrative which has already run to too great a length by telling how we broke the sad news to the terrified girl, how we conveyed her by the morning train to the care of her good aunt at Harrow, of how the slow process of official inquiry came to the conclusion that the doctor met his fate while indiscreetly playing with a dangerous pet. The little which I had yet to learn of the case was told me by Sherlock Holmes as we travelled back next day. "I had," said he, "come to an entirely erroneous conclusion which shows, my dear Watson, how dangerous it always is to reason from insufficient data. The presence of the gipsies, and the use of the word 'band,' which was used by the poor girl, no doubt, to explain the appearance which she had caught a hurried glimpse of by the light of her match, were sufficient to put me upon an entirely wrong scent. I can only claim the merit that I instantly reconsidered my position when, however, it became clear to me that whatever danger threatened an occupant of the room could not come either from the window or the door. My attention was speedily drawn, as I have already remarked to you, to this ventilator, and to the bell-rope which hung down to the bed. The discovery that this was a dummy, and that the bed was clamped to the floor, instantly gave rise to the suspicion that the rope was there as a bridge for something passing through the hole and coming to the bed. The idea of a snake instantly occurred to me, and when I coupled it with my knowledge that the doctor was furnished with a supply of creatures from India, I felt that I was probably on the right track. The idea of using a form of poison which could not possibly be discovered by any chemical test was just such a one as would occur to a clever and ruthless man who had had an Eastern training. The rapidity with which such a poison would take effect would also, from his point of view, be an advantage. It would be a sharp-eyed coroner, indeed, who could distinguish the two little dark punctures which would show where the poison fangs had done their work. Then I thought of the whistle. Of course he must recall the snake before the morning light revealed it to the victim. He had trained it, probably by the use of the milk which we saw, to return to him when summoned. He would put it through this ventilator at the hour that he thought best, with the certainty that it would crawl down the rope and land on the bed. It might or might not bite the occupant, perhaps she might escape every night for a week, but sooner or later she must fall a victim. "I had come to these conclusions before ever I had entered his room. An inspection of his chair showed me that he had been in the habit of standing on it, which of course would be necessary in order that he should reach the ventilator. The sight of the safe, the saucer of milk, and the loop of whipcord were enough to finally dispel any doubts which may have remained. The metallic clang heard by Miss Stoner was obviously caused by her stepfather hastily closing the door of his safe upon its terrible occupant. Having once made up my mind, you know the steps which I took in order to put the matter to the proof. I heard the creature hiss as I have no doubt that you did also, and I instantly lit the light and attacked it." "With the result of driving it through the ventilator." "And also with the result of causing it to turn upon its master at the other side. Some of the blows of my cane came home and roused its snakish temper, so that it flew upon the first person it saw. In this way I am no doubt indirectly responsible for Dr. Grimesby Roylott's death, and I cannot say that it is likely to weigh very heavily upon my conscience." IX. THE ADVENTURE OF THE ENGINEER'S THUMB Of all the problems which have been submitted to my friend, Mr. Sherlock Holmes, for solution during the years of our intimacy, there were only two which I was the means of introducing to his notice--that of Mr. Hatherley's thumb, and that of Colonel Warburton's madness. Of these the latter may have afforded a finer field for an acute and original observer, but the other was so strange in its inception and so dramatic in its details that it may be the more worthy of being placed upon record, even if it gave my friend fewer openings for those deductive methods of reasoning by which he achieved such remarkable results. The story has, I believe, been told more than once in the newspapers, but, like all such narratives, its effect is much less striking when set forth en bloc in a single half-column of print than when the facts slowly evolve before your own eyes, and the mystery clears gradually away as each new discovery furnishes a step which leads on to the complete truth. At the time the circumstances made a deep impression upon me, and the lapse of two years has hardly served to weaken the effect. It was in the summer of '89, not long after my marriage, that the events occurred which I am now about to summarise. I had returned to civil practice and had finally abandoned Holmes in his Baker Street rooms, although I continually visited him and occasionally even persuaded him to forgo his Bohemian habits so far as to come and visit us. My practice had steadily increased, and as I happened to live at no very great distance from Paddington Station, I got a few patients from among the officials. One of these, whom I had cured of a painful and lingering disease, was never weary of advertising my virtues and of endeavouring to send me on every sufferer over whom he might have any influence. One morning, at a little before seven o'clock, I was awakened by the maid tapping at the door to announce that two men had come from Paddington and were waiting in the consulting-room. I dressed hurriedly, for I knew by experience that railway cases were seldom trivial, and hastened downstairs. As I descended, my old ally, the guard, came out of the room and closed the door tightly behind him. "I've got him here," he whispered, jerking his thumb over his shoulder; "he's all right." "What is it, then?" I asked, for his manner suggested that it was some strange creature which he had caged up in my room. "It's a new patient," he whispered. "I thought I'd bring him round myself; then he couldn't slip away. There he is, all safe and sound. I must go now, Doctor; I have my dooties, just the same as you." And off he went, this trusty tout, without even giving me time to thank him. I entered my consulting-room and found a gentleman seated by the table. He was quietly dressed in a suit of heather tweed with a soft cloth cap which he had laid down upon my books. Round one of his hands he had a handkerchief wrapped, which was mottled all over with bloodstains. He was young, not more than five-and-twenty, I should say, with a strong, masculine face; but he was exceedingly pale and gave me the impression of a man who was suffering from some strong agitation, which it took all his strength of mind to control. "I am sorry to knock you up so early, Doctor," said he, "but I have had a very serious accident during the night. I came in by train this morning, and on inquiring at Paddington as to where I might find a doctor, a worthy fellow very kindly escorted me here. I gave the maid a card, but I see that she has left it upon the side-table." I took it up and glanced at it. "Mr. Victor Hatherley, hydraulic engineer, 16A, Victoria Street (3rd floor)." That was the name, style, and abode of my morning visitor. "I regret that I have kept you waiting," said I, sitting down in my library-chair. "You are fresh from a night journey, I understand, which is in itself a monotonous occupation." "Oh, my night could not be called monotonous," said he, and laughed. He laughed very heartily, with a high, ringing note, leaning back in his chair and shaking his sides. All my medical instincts rose up against that laugh. "Stop it!" I cried; "pull yourself together!" and I poured out some water from a caraffe. It was useless, however. He was off in one of those hysterical outbursts which come upon a strong nature when some great crisis is over and gone. Presently he came to himself once more, very weary and pale-looking. "I have been making a fool of myself," he gasped. "Not at all. Drink this." I dashed some brandy into the water, and the colour began to come back to his bloodless cheeks. "That's better!" said he. "And now, Doctor, perhaps you would kindly attend to my thumb, or rather to the place where my thumb used to be." He unwound the handkerchief and held out his hand. It gave even my hardened nerves a shudder to look at it. There were four protruding fingers and a horrid red, spongy surface where the thumb should have been. It had been hacked or torn right out from the roots. "Good heavens!" I cried, "this is a terrible injury. It must have bled considerably." "Yes, it did. I fainted when it was done, and I think that I must have been senseless for a long time. When I came to I found that it was still bleeding, so I tied one end of my handkerchief very tightly round the wrist and braced it up with a twig." "Excellent! You should have been a surgeon." "It is a question of hydraulics, you see, and came within my own province." "This has been done," said I, examining the wound, "by a very heavy and sharp instrument." "A thing like a cleaver," said he. "An accident, I presume?" "By no means." "What! a murderous attack?" "Very murderous indeed." "You horrify me." I sponged the wound, cleaned it, dressed it, and finally covered it over with cotton wadding and carbolised bandages. He lay back without wincing, though he bit his lip from time to time. "How is that?" I asked when I had finished. "Capital! Between your brandy and your bandage, I feel a new man. I was very weak, but I have had a good deal to go through." "Perhaps you had better not speak of the matter. It is evidently trying to your nerves." "Oh, no, not now. I shall have to tell my tale to the police; but, between ourselves, if it were not for the convincing evidence of this wound of mine, I should be surprised if they believed my statement, for it is a very extraordinary one, and I have not much in the way of proof with which to back it up; and, even if they believe me, the clues which I can give them are so vague that it is a question whether justice will be done." "Ha!" cried I, "if it is anything in the nature of a problem which you desire to see solved, I should strongly recommend you to come to my friend, Mr. Sherlock Holmes, before you go to the official police." "Oh, I have heard of that fellow," answered my visitor, "and I should be very glad if he would take the matter up, though of course I must use the official police as well. Would you give me an introduction to him?" "I'll do better. I'll take you round to him myself." "I should be immensely obliged to you." "We'll call a cab and go together. We shall just be in time to have a little breakfast with him. Do you feel equal to it?" "Yes; I shall not feel easy until I have told my story." "Then my servant will call a cab, and I shall be with you in an instant." I rushed upstairs, explained the matter shortly to my wife, and in five minutes was inside a hansom, driving with my new acquaintance to Baker Street. Sherlock Holmes was, as I expected, lounging about his sitting-room in his dressing-gown, reading the agony column of The Times and smoking his before-breakfast pipe, which was composed of all the plugs and dottles left from his smokes of the day before, all carefully dried and collected on the corner of the mantelpiece. He received us in his quietly genial fashion, ordered fresh rashers and eggs, and joined us in a hearty meal. When it was concluded he settled our new acquaintance upon the sofa, placed a pillow beneath his head, and laid a glass of brandy and water within his reach. "It is easy to see that your experience has been no common one, Mr. Hatherley," said he. "Pray, lie down there and make yourself absolutely at home. Tell us what you can, but stop when you are tired and keep up your strength with a little stimulant." "Thank you," said my patient, "but I have felt another man since the doctor bandaged me, and I think that your breakfast has completed the cure. I shall take up as little of your valuable time as possible, so I shall start at once upon my peculiar experiences." Holmes sat in his big armchair with the weary, heavy-lidded expression which veiled his keen and eager nature, while I sat opposite to him, and we listened in silence to the strange story which our visitor detailed to us. "You must know," said he, "that I am an orphan and a bachelor, residing alone in lodgings in London. By profession I am a hydraulic engineer, and I have had considerable experience of my work during the seven years that I was apprenticed to Venner & Matheson, the well-known firm, of Greenwich. Two years ago, having served my time, and having also come into a fair sum of money through my poor father's death, I determined to start in business for myself and took professional chambers in Victoria Street. "I suppose that everyone finds his first independent start in business a dreary experience. To me it has been exceptionally so. During two years I have had three consultations and one small job, and that is absolutely all that my profession has brought me. My gross takings amount to 27 pounds 10s. Every day, from nine in the morning until four in the afternoon, I waited in my little den, until at last my heart began to sink, and I came to believe that I should never have any practice at all. "Yesterday, however, just as I was thinking of leaving the office, my clerk entered to say there was a gentleman waiting who wished to see me upon business. He brought up a card, too, with the name of 'Colonel Lysander Stark' engraved upon it. Close at his heels came the colonel himself, a man rather over the middle size, but of an exceeding thinness. I do not think that I have ever seen so thin a man. His whole face sharpened away into nose and chin, and the skin of his cheeks was drawn quite tense over his outstanding bones. Yet this emaciation seemed to be his natural habit, and due to no disease, for his eye was bright, his step brisk, and his bearing assured. He was plainly but neatly dressed, and his age, I should judge, would be nearer forty than thirty. "'Mr. Hatherley?' said he, with something of a German accent. 'You have been recommended to me, Mr. Hatherley, as being a man who is not only proficient in his profession but is also discreet and capable of preserving a secret.' "I bowed, feeling as flattered as any young man would at such an address. 'May I ask who it was who gave me so good a character?' "'Well, perhaps it is better that I should not tell you that just at this moment. I have it from the same source that you are both an orphan and a bachelor and are residing alone in London.' "'That is quite correct,' I answered; 'but you will excuse me if I say that I cannot see how all this bears upon my professional qualifications. I understand that it was on a professional matter that you wished to speak to me?' "'Undoubtedly so. But you will find that all I say is really to the point. I have a professional commission for you, but absolute secrecy is quite essential--absolute secrecy, you understand, and of course we may expect that more from a man who is alone than from one who lives in the bosom of his family.' "'If I promise to keep a secret,' said I, 'you may absolutely depend upon my doing so.' "He looked very hard at me as I spoke, and it seemed to me that I had never seen so suspicious and questioning an eye. "'Do you promise, then?' said he at last. "'Yes, I promise.' "'Absolute and complete silence before, during, and after? No reference to the matter at all, either in word or writing?' "'I have already given you my word.' "'Very good.' He suddenly sprang up, and darting like lightning across the room he flung open the door. The passage outside was empty. "'That's all right,' said he, coming back. 'I know that clerks are sometimes curious as to their master's affairs. Now we can talk in safety.' He drew up his chair very close to mine and began to stare at me again with the same questioning and thoughtful look. "A feeling of repulsion, and of something akin to fear had begun to rise within me at the strange antics of this fleshless man. Even my dread of losing a client could not restrain me from showing my impatience. "'I beg that you will state your business, sir,' said I; 'my time is of value.' Heaven forgive me for that last sentence, but the words came to my lips. "'How would fifty guineas for a night's work suit you?' he asked. "'Most admirably.' "'I say a night's work, but an hour's would be nearer the mark. I simply want your opinion about a hydraulic stamping machine which has got out of gear. If you show us what is wrong we shall soon set it right ourselves. What do you think of such a commission as that?' "'The work appears to be light and the pay munificent.' "'Precisely so. We shall want you to come to-night by the last train.' "'Where to?' "'To Eyford, in Berkshire. It is a little place near the borders of Oxfordshire, and within seven miles of Reading. There is a train from Paddington which would bring you there at about 11:15.' "'Very good.' "'I shall come down in a carriage to meet you.' "'There is a drive, then?' "'Yes, our little place is quite out in the country. It is a good seven miles from Eyford Station.' "'Then we can hardly get there before midnight. I suppose there would be no chance of a train back. I should be compelled to stop the night.' "'Yes, we could easily give you a shake-down.' "'That is very awkward. Could I not come at some more convenient hour?' "'We have judged it best that you should come late. It is to recompense you for any inconvenience that we are paying to you, a young and unknown man, a fee which would buy an opinion from the very heads of your profession. Still, of course, if you would like to draw out of the business, there is plenty of time to do so.' "I thought of the fifty guineas, and of how very useful they would be to me. 'Not at all,' said I, 'I shall be very happy to accommodate myself to your wishes. I should like, however, to understand a little more clearly what it is that you wish me to do.' "'Quite so. It is very natural that the pledge of secrecy which we have exacted from you should have aroused your curiosity. I have no wish to commit you to anything without your having it all laid before you. I suppose that we are absolutely safe from eavesdroppers?' "'Entirely.' "'Then the matter stands thus. You are probably aware that fuller's-earth is a valuable product, and that it is only found in one or two places in England?' "'I have heard so.' "'Some little time ago I bought a small place--a very small place--within ten miles of Reading. I was fortunate enough to discover that there was a deposit of fuller's-earth in one of my fields. On examining it, however, I found that this deposit was a comparatively small one, and that it formed a link between two very much larger ones upon the right and left--both of them, however, in the grounds of my neighbours. These good people were absolutely ignorant that their land contained that which was quite as valuable as a gold-mine. Naturally, it was to my interest to buy their land before they discovered its true value, but unfortunately I had no capital by which I could do this. I took a few of my friends into the secret, however, and they suggested that we should quietly and secretly work our own little deposit and that in this way we should earn the money which would enable us to buy the neighbouring fields. This we have now been doing for some time, and in order to help us in our operations we erected a hydraulic press. This press, as I have already explained, has got out of order, and we wish your advice upon the subject. We guard our secret very jealously, however, and if it once became known that we had hydraulic engineers coming to our little house, it would soon rouse inquiry, and then, if the facts came out, it would be good-bye to any chance of getting these fields and carrying out our plans. That is why I have made you promise me that you will not tell a human being that you are going to Eyford to-night. I hope that I make it all plain?' "'I quite follow you,' said I. 'The only point which I could not quite understand was what use you could make of a hydraulic press in excavating fuller's-earth, which, as I understand, is dug out like gravel from a pit.' "'Ah!' said he carelessly, 'we have our own process. We compress the earth into bricks, so as to remove them without revealing what they are. But that is a mere detail. I have taken you fully into my confidence now, Mr. Hatherley, and I have shown you how I trust you.' He rose as he spoke. 'I shall expect you, then, at Eyford at 11:15.' "'I shall certainly be there.' "'And not a word to a soul.' He looked at me with a last long, questioning gaze, and then, pressing my hand in a cold, dank grasp, he hurried from the room. "Well, when I came to think it all over in cool blood I was very much astonished, as you may both think, at this sudden commission which had been intrusted to me. On the one hand, of course, I was glad, for the fee was at least tenfold what I should have asked had I set a price upon my own services, and it was possible that this order might lead to other ones. On the other hand, the face and manner of my patron had made an unpleasant impression upon me, and I could not think that his explanation of the fuller's-earth was sufficient to explain the necessity for my coming at midnight, and his extreme anxiety lest I should tell anyone of my errand. However, I threw all fears to the winds, ate a hearty supper, drove to Paddington, and started off, having obeyed to the letter the injunction as to holding my tongue. "At Reading I had to change not only my carriage but my station. However, I was in time for the last train to Eyford, and I reached the little dim-lit station after eleven o'clock. I was the only passenger who got out there, and there was no one upon the platform save a single sleepy porter with a lantern. As I passed out through the wicket gate, however, I found my acquaintance of the morning waiting in the shadow upon the other side. Without a word he grasped my arm and hurried me into a carriage, the door of which was standing open. He drew up the windows on either side, tapped on the wood-work, and away we went as fast as the horse could go." "One horse?" interjected Holmes. "Yes, only one." "Did you observe the colour?" "Yes, I saw it by the side-lights when I was stepping into the carriage. It was a chestnut." "Tired-looking or fresh?" "Oh, fresh and glossy." "Thank you. I am sorry to have interrupted you. Pray continue your most interesting statement." "Away we went then, and we drove for at least an hour. Colonel Lysander Stark had said that it was only seven miles, but I should think, from the rate that we seemed to go, and from the time that we took, that it must have been nearer twelve. He sat at my side in silence all the time, and I was aware, more than once when I glanced in his direction, that he was looking at me with great intensity. The country roads seem to be not very good in that part of the world, for we lurched and jolted terribly. I tried to look out of the windows to see something of where we were, but they were made of frosted glass, and I could make out nothing save the occasional bright blur of a passing light. Now and then I hazarded some remark to break the monotony of the journey, but the colonel answered only in monosyllables, and the conversation soon flagged. At last, however, the bumping of the road was exchanged for the crisp smoothness of a gravel-drive, and the carriage came to a stand. Colonel Lysander Stark sprang out, and, as I followed after him, pulled me swiftly into a porch which gaped in front of us. We stepped, as it were, right out of the carriage and into the hall, so that I failed to catch the most fleeting glance of the front of the house. The instant that I had crossed the threshold the door slammed heavily behind us, and I heard faintly the rattle of the wheels as the carriage drove away. "It was pitch dark inside the house, and the colonel fumbled about looking for matches and muttering under his breath. Suddenly a door opened at the other end of the passage, and a long, golden bar of light shot out in our direction. It grew broader, and a woman appeared with a lamp in her hand, which she held above her head, pushing her face forward and peering at us. I could see that she was pretty, and from the gloss with which the light shone upon her dark dress I knew that it was a rich material. She spoke a few words in a foreign tongue in a tone as though asking a question, and when my companion answered in a gruff monosyllable she gave such a start that the lamp nearly fell from her hand. Colonel Stark went up to her, whispered something in her ear, and then, pushing her back into the room from whence she had come, he walked towards me again with the lamp in his hand. "'Perhaps you will have the kindness to wait in this room for a few minutes,' said he, throwing open another door. It was a quiet, little, plainly furnished room, with a round table in the centre, on which several German books were scattered. Colonel Stark laid down the lamp on the top of a harmonium beside the door. 'I shall not keep you waiting an instant,' said he, and vanished into the darkness. "I glanced at the books upon the table, and in spite of my ignorance of German I could see that two of them were treatises on science, the others being volumes of poetry. Then I walked across to the window, hoping that I might catch some glimpse of the country-side, but an oak shutter, heavily barred, was folded across it. It was a wonderfully silent house. There was an old clock ticking loudly somewhere in the passage, but otherwise everything was deadly still. A vague feeling of uneasiness began to steal over me. Who were these German people, and what were they doing living in this strange, out-of-the-way place? And where was the place? I was ten miles or so from Eyford, that was all I knew, but whether north, south, east, or west I had no idea. For that matter, Reading, and possibly other large towns, were within that radius, so the place might not be so secluded, after all. Yet it was quite certain, from the absolute stillness, that we were in the country. I paced up and down the room, humming a tune under my breath to keep up my spirits and feeling that I was thoroughly earning my fifty-guinea fee. "Suddenly, without any preliminary sound in the midst of the utter stillness, the door of my room swung slowly open. The woman was standing in the aperture, the darkness of the hall behind her, the yellow light from my lamp beating upon her eager and beautiful face. I could see at a glance that she was sick with fear, and the sight sent a chill to my own heart. She held up one shaking finger to warn me to be silent, and she shot a few whispered words of broken English at me, her eyes glancing back, like those of a frightened horse, into the gloom behind her. "'I would go,' said she, trying hard, as it seemed to me, to speak calmly; 'I would go. I should not stay here. There is no good for you to do.' "'But, madam,' said I, 'I have not yet done what I came for. I cannot possibly leave until I have seen the machine.' "'It is not worth your while to wait,' she went on. 'You can pass through the door; no one hinders.' And then, seeing that I smiled and shook my head, she suddenly threw aside her constraint and made a step forward, with her hands wrung together. 'For the love of Heaven!' she whispered, 'get away from here before it is too late!' "But I am somewhat headstrong by nature, and the more ready to engage in an affair when there is some obstacle in the way. I thought of my fifty-guinea fee, of my wearisome journey, and of the unpleasant night which seemed to be before me. Was it all to go for nothing? Why should I slink away without having carried out my commission, and without the payment which was my due? This woman might, for all I knew, be a monomaniac. With a stout bearing, therefore, though her manner had shaken me more than I cared to confess, I still shook my head and declared my intention of remaining where I was. She was about to renew her entreaties when a door slammed overhead, and the sound of several footsteps was heard upon the stairs. She listened for an instant, threw up her hands with a despairing gesture, and vanished as suddenly and as noiselessly as she had come. "The newcomers were Colonel Lysander Stark and a short thick man with a chinchilla beard growing out of the creases of his double chin, who was introduced to me as Mr. Ferguson. "'This is my secretary and manager,' said the colonel. 'By the way, I was under the impression that I left this door shut just now. I fear that you have felt the draught.' "'On the contrary,' said I, 'I opened the door myself because I felt the room to be a little close.' "He shot one of his suspicious looks at me. 'Perhaps we had better proceed to business, then,' said he. 'Mr. Ferguson and I will take you up to see the machine.' "'I had better put my hat on, I suppose.' "'Oh, no, it is in the house.' "'What, you dig fuller's-earth in the house?' "'No, no. This is only where we compress it. But never mind that. All we wish you to do is to examine the machine and to let us know what is wrong with it.' "We went upstairs together, the colonel first with the lamp, the fat manager and I behind him. It was a labyrinth of an old house, with corridors, passages, narrow winding staircases, and little low doors, the thresholds of which were hollowed out by the generations who had crossed them. There were no carpets and no signs of any furniture above the ground floor, while the plaster was peeling off the walls, and the damp was breaking through in green, unhealthy blotches. I tried to put on as unconcerned an air as possible, but I had not forgotten the warnings of the lady, even though I disregarded them, and I kept a keen eye upon my two companions. Ferguson appeared to be a morose and silent man, but I could see from the little that he said that he was at least a fellow-countryman. "Colonel Lysander Stark stopped at last before a low door, which he unlocked. Within was a small, square room, in which the three of us could hardly get at one time. Ferguson remained outside, and the colonel ushered me in. "'We are now,' said he, 'actually within the hydraulic press, and it would be a particularly unpleasant thing for us if anyone were to turn it on. The ceiling of this small chamber is really the end of the descending piston, and it comes down with the force of many tons upon this metal floor. There are small lateral columns of water outside which receive the force, and which transmit and multiply it in the manner which is familiar to you. The machine goes readily enough, but there is some stiffness in the working of it, and it has lost a little of its force. Perhaps you will have the goodness to look it over and to show us how we can set it right.' "I took the lamp from him, and I examined the machine very thoroughly. It was indeed a gigantic one, and capable of exercising enormous pressure. When I passed outside, however, and pressed down the levers which controlled it, I knew at once by the whishing sound that there was a slight leakage, which allowed a regurgitation of water through one of the side cylinders. An examination showed that one of the india-rubber bands which was round the head of a driving-rod had shrunk so as not quite to fill the socket along which it worked. This was clearly the cause of the loss of power, and I pointed it out to my companions, who followed my remarks very carefully and asked several practical questions as to how they should proceed to set it right. When I had made it clear to them, I returned to the main chamber of the machine and took a good look at it to satisfy my own curiosity. It was obvious at a glance that the story of the fuller's-earth was the merest fabrication, for it would be absurd to suppose that so powerful an engine could be designed for so inadequate a purpose. The walls were of wood, but the floor consisted of a large iron trough, and when I came to examine it I could see a crust of metallic deposit all over it. I had stooped and was scraping at this to see exactly what it was when I heard a muttered exclamation in German and saw the cadaverous face of the colonel looking down at me. "'What are you doing there?' he asked. "I felt angry at having been tricked by so elaborate a story as that which he had told me. 'I was admiring your fuller's-earth,' said I; 'I think that I should be better able to advise you as to your machine if I knew what the exact purpose was for which it was used.' "The instant that I uttered the words I regretted the rashness of my speech. His face set hard, and a baleful light sprang up in his grey eyes. "'Very well,' said he, 'you shall know all about the machine.' He took a step backward, slammed the little door, and turned the key in the lock. I rushed towards it and pulled at the handle, but it was quite secure, and did not give in the least to my kicks and shoves. 'Hullo!' I yelled. 'Hullo! Colonel! Let me out!' "And then suddenly in the silence I heard a sound which sent my heart into my mouth. It was the clank of the levers and the swish of the leaking cylinder. He had set the engine at work. The lamp still stood upon the floor where I had placed it when examining the trough. By its light I saw that the black ceiling was coming down upon me, slowly, jerkily, but, as none knew better than myself, with a force which must within a minute grind me to a shapeless pulp. I threw myself, screaming, against the door, and dragged with my nails at the lock. I implored the colonel to let me out, but the remorseless clanking of the levers drowned my cries. The ceiling was only a foot or two above my head, and with my hand upraised I could feel its hard, rough surface. Then it flashed through my mind that the pain of my death would depend very much upon the position in which I met it. If I lay on my face the weight would come upon my spine, and I shuddered to think of that dreadful snap. Easier the other way, perhaps; and yet, had I the nerve to lie and look up at that deadly black shadow wavering down upon me? Already I was unable to stand erect, when my eye caught something which brought a gush of hope back to my heart. "I have said that though the floor and ceiling were of iron, the walls were of wood. As I gave a last hurried glance around, I saw a thin line of yellow light between two of the boards, which broadened and broadened as a small panel was pushed backward. For an instant I could hardly believe that here was indeed a door which led away from death. The next instant I threw myself through, and lay half-fainting upon the other side. The panel had closed again behind me, but the crash of the lamp, and a few moments afterwards the clang of the two slabs of metal, told me how narrow had been my escape. "I was recalled to myself by a frantic plucking at my wrist, and I found myself lying upon the stone floor of a narrow corridor, while a woman bent over me and tugged at me with her left hand, while she held a candle in her right. It was the same good friend whose warning I had so foolishly rejected. "'Come! come!' she cried breathlessly. 'They will be here in a moment. They will see that you are not there. Oh, do not waste the so-precious time, but come!' "This time, at least, I did not scorn her advice. I staggered to my feet and ran with her along the corridor and down a winding stair. The latter led to another broad passage, and just as we reached it we heard the sound of running feet and the shouting of two voices, one answering the other from the floor on which we were and from the one beneath. My guide stopped and looked about her like one who is at her wit's end. Then she threw open a door which led into a bedroom, through the window of which the moon was shining brightly. "'It is your only chance,' said she. 'It is high, but it may be that you can jump it.' "As she spoke a light sprang into view at the further end of the passage, and I saw the lean figure of Colonel Lysander Stark rushing forward with a lantern in one hand and a weapon like a butcher's cleaver in the other. I rushed across the bedroom, flung open the window, and looked out. How quiet and sweet and wholesome the garden looked in the moonlight, and it could not be more than thirty feet down. I clambered out upon the sill, but I hesitated to jump until I should have heard what passed between my saviour and the ruffian who pursued me. If she were ill-used, then at any risks I was determined to go back to her assistance. The thought had hardly flashed through my mind before he was at the door, pushing his way past her; but she threw her arms round him and tried to hold him back. "'Fritz! Fritz!' she cried in English, 'remember your promise after the last time. You said it should not be again. He will be silent! Oh, he will be silent!' "'You are mad, Elise!' he shouted, struggling to break away from her. 'You will be the ruin of us. He has seen too much. Let me pass, I say!' He dashed her to one side, and, rushing to the window, cut at me with his heavy weapon. I had let myself go, and was hanging by the hands to the sill, when his blow fell. I was conscious of a dull pain, my grip loosened, and I fell into the garden below. "I was shaken but not hurt by the fall; so I picked myself up and rushed off among the bushes as hard as I could run, for I understood that I was far from being out of danger yet. Suddenly, however, as I ran, a deadly dizziness and sickness came over me. I glanced down at my hand, which was throbbing painfully, and then, for the first time, saw that my thumb had been cut off and that the blood was pouring from my wound. I endeavoured to tie my handkerchief round it, but there came a sudden buzzing in my ears, and next moment I fell in a dead faint among the rose-bushes. "How long I remained unconscious I cannot tell. It must have been a very long time, for the moon had sunk, and a bright morning was breaking when I came to myself. My clothes were all sodden with dew, and my coat-sleeve was drenched with blood from my wounded thumb. The smarting of it recalled in an instant all the particulars of my night's adventure, and I sprang to my feet with the feeling that I might hardly yet be safe from my pursuers. But to my astonishment, when I came to look round me, neither house nor garden were to be seen. I had been lying in an angle of the hedge close by the highroad, and just a little lower down was a long building, which proved, upon my approaching it, to be the very station at which I had arrived upon the previous night. Were it not for the ugly wound upon my hand, all that had passed during those dreadful hours might have been an evil dream. "Half dazed, I went into the station and asked about the morning train. There would be one to Reading in less than an hour. The same porter was on duty, I found, as had been there when I arrived. I inquired of him whether he had ever heard of Colonel Lysander Stark. The name was strange to him. Had he observed a carriage the night before waiting for me? No, he had not. Was there a police-station anywhere near? There was one about three miles off. "It was too far for me to go, weak and ill as I was. I determined to wait until I got back to town before telling my story to the police. It was a little past six when I arrived, so I went first to have my wound dressed, and then the doctor was kind enough to bring me along here. I put the case into your hands and shall do exactly what you advise." We both sat in silence for some little time after listening to this extraordinary narrative. Then Sherlock Holmes pulled down from the shelf one of the ponderous commonplace books in which he placed his cuttings. "Here is an advertisement which will interest you," said he. "It appeared in all the papers about a year ago. Listen to this: 'Lost, on the 9th inst., Mr. Jeremiah Hayling, aged twenty-six, a hydraulic engineer. Left his lodgings at ten o'clock at night, and has not been heard of since. Was dressed in,' etc., etc. Ha! That represents the last time that the colonel needed to have his machine overhauled, I fancy." "Good heavens!" cried my patient. "Then that explains what the girl said." "Undoubtedly. It is quite clear that the colonel was a cool and desperate man, who was absolutely determined that nothing should stand in the way of his little game, like those out-and-out pirates who will leave no survivor from a captured ship. Well, every moment now is precious, so if you feel equal to it we shall go down to Scotland Yard at once as a preliminary to starting for Eyford." Some three hours or so afterwards we were all in the train together, bound from Reading to the little Berkshire village. There were Sherlock Holmes, the hydraulic engineer, Inspector Bradstreet, of Scotland Yard, a plain-clothes man, and myself. Bradstreet had spread an ordnance map of the county out upon the seat and was busy with his compasses drawing a circle with Eyford for its centre. "There you are," said he. "That circle is drawn at a radius of ten miles from the village. The place we want must be somewhere near that line. You said ten miles, I think, sir." "It was an hour's good drive." "And you think that they brought you back all that way when you were unconscious?" "They must have done so. I have a confused memory, too, of having been lifted and conveyed somewhere." "What I cannot understand," said I, "is why they should have spared you when they found you lying fainting in the garden. Perhaps the villain was softened by the woman's entreaties." "I hardly think that likely. I never saw a more inexorable face in my life." "Oh, we shall soon clear up all that," said Bradstreet. "Well, I have drawn my circle, and I only wish I knew at what point upon it the folk that we are in search of are to be found." "I think I could lay my finger on it," said Holmes quietly. "Really, now!" cried the inspector, "you have formed your opinion! Come, now, we shall see who agrees with you. I say it is south, for the country is more deserted there." "And I say east," said my patient. "I am for west," remarked the plain-clothes man. "There are several quiet little villages up there." "And I am for north," said I, "because there are no hills there, and our friend says that he did not notice the carriage go up any." "Come," cried the inspector, laughing; "it's a very pretty diversity of opinion. We have boxed the compass among us. Who do you give your casting vote to?" "You are all wrong." "But we can't all be." "Oh, yes, you can. This is my point." He placed his finger in the centre of the circle. "This is where we shall find them." "But the twelve-mile drive?" gasped Hatherley. "Six out and six back. Nothing simpler. You say yourself that the horse was fresh and glossy when you got in. How could it be that if it had gone twelve miles over heavy roads?" "Indeed, it is a likely ruse enough," observed Bradstreet thoughtfully. "Of course there can be no doubt as to the nature of this gang." "None at all," said Holmes. "They are coiners on a large scale, and have used the machine to form the amalgam which has taken the place of silver." "We have known for some time that a clever gang was at work," said the inspector. "They have been turning out half-crowns by the thousand. We even traced them as far as Reading, but could get no farther, for they had covered their traces in a way that showed that they were very old hands. But now, thanks to this lucky chance, I think that we have got them right enough." But the inspector was mistaken, for those criminals were not destined to fall into the hands of justice. As we rolled into Eyford Station we saw a gigantic column of smoke which streamed up from behind a small clump of trees in the neighbourhood and hung like an immense ostrich feather over the landscape. "A house on fire?" asked Bradstreet as the train steamed off again on its way. "Yes, sir!" said the station-master. "When did it break out?" "I hear that it was during the night, sir, but it has got worse, and the whole place is in a blaze." "Whose house is it?" "Dr. Becher's." "Tell me," broke in the engineer, "is Dr. Becher a German, very thin, with a long, sharp nose?" The station-master laughed heartily. "No, sir, Dr. Becher is an Englishman, and there isn't a man in the parish who has a better-lined waistcoat. But he has a gentleman staying with him, a patient, as I understand, who is a foreigner, and he looks as if a little good Berkshire beef would do him no harm." The station-master had not finished his speech before we were all hastening in the direction of the fire. The road topped a low hill, and there was a great widespread whitewashed building in front of us, spouting fire at every chink and window, while in the garden in front three fire-engines were vainly striving to keep the flames under. "That's it!" cried Hatherley, in intense excitement. "There is the gravel-drive, and there are the rose-bushes where I lay. That second window is the one that I jumped from." "Well, at least," said Holmes, "you have had your revenge upon them. There can be no question that it was your oil-lamp which, when it was crushed in the press, set fire to the wooden walls, though no doubt they were too excited in the chase after you to observe it at the time. Now keep your eyes open in this crowd for your friends of last night, though I very much fear that they are a good hundred miles off by now." And Holmes' fears came to be realised, for from that day to this no word has ever been heard either of the beautiful woman, the sinister German, or the morose Englishman. Early that morning a peasant had met a cart containing several people and some very bulky boxes driving rapidly in the direction of Reading, but there all traces of the fugitives disappeared, and even Holmes' ingenuity failed ever to discover the least clue as to their whereabouts. The firemen had been much perturbed at the strange arrangements which they had found within, and still more so by discovering a newly severed human thumb upon a window-sill of the second floor. About sunset, however, their efforts were at last successful, and they subdued the flames, but not before the roof had fallen in, and the whole place been reduced to such absolute ruin that, save some twisted cylinders and iron piping, not a trace remained of the machinery which had cost our unfortunate acquaintance so dearly. Large masses of nickel and of tin were discovered stored in an out-house, but no coins were to be found, which may have explained the presence of those bulky boxes which have been already referred to. How our hydraulic engineer had been conveyed from the garden to the spot where he recovered his senses might have remained forever a mystery were it not for the soft mould, which told us a very plain tale. He had evidently been carried down by two persons, one of whom had remarkably small feet and the other unusually large ones. On the whole, it was most probable that the silent Englishman, being less bold or less murderous than his companion, had assisted the woman to bear the unconscious man out of the way of danger. "Well," said our engineer ruefully as we took our seats to return once more to London, "it has been a pretty business for me! I have lost my thumb and I have lost a fifty-guinea fee, and what have I gained?" "Experience," said Holmes, laughing. "Indirectly it may be of value, you know; you have only to put it into words to gain the reputation of being excellent company for the remainder of your existence." X. THE ADVENTURE OF THE NOBLE BACHELOR The Lord St. Simon marriage, and its curious termination, have long ceased to be a subject of interest in those exalted circles in which the unfortunate bridegroom moves. Fresh scandals have eclipsed it, and their more piquant details have drawn the gossips away from this four-year-old drama. As I have reason to believe, however, that the full facts have never been revealed to the general public, and as my friend Sherlock Holmes had a considerable share in clearing the matter up, I feel that no memoir of him would be complete without some little sketch of this remarkable episode. It was a few weeks before my own marriage, during the days when I was still sharing rooms with Holmes in Baker Street, that he came home from an afternoon stroll to find a letter on the table waiting for him. I had remained indoors all day, for the weather had taken a sudden turn to rain, with high autumnal winds, and the Jezail bullet which I had brought back in one of my limbs as a relic of my Afghan campaign throbbed with dull persistence. With my body in one easy-chair and my legs upon another, I had surrounded myself with a cloud of newspapers until at last, saturated with the news of the day, I tossed them all aside and lay listless, watching the huge crest and monogram upon the envelope upon the table and wondering lazily who my friend's noble correspondent could be. "Here is a very fashionable epistle," I remarked as he entered. "Your morning letters, if I remember right, were from a fish-monger and a tide-waiter." "Yes, my correspondence has certainly the charm of variety," he answered, smiling, "and the humbler are usually the more interesting. This looks like one of those unwelcome social summonses which call upon a man either to be bored or to lie." He broke the seal and glanced over the contents. "Oh, come, it may prove to be something of interest, after all." "Not social, then?" "No, distinctly professional." "And from a noble client?" "One of the highest in England." "My dear fellow, I congratulate you." "I assure you, Watson, without affectation, that the status of my client is a matter of less moment to me than the interest of his case. It is just possible, however, that that also may not be wanting in this new investigation. You have been reading the papers diligently of late, have you not?" "It looks like it," said I ruefully, pointing to a huge bundle in the corner. "I have had nothing else to do." "It is fortunate, for you will perhaps be able to post me up. I read nothing except the criminal news and the agony column. The latter is always instructive. But if you have followed recent events so closely you must have read about Lord St. Simon and his wedding?" "Oh, yes, with the deepest interest." "That is well. The letter which I hold in my hand is from Lord St. Simon. I will read it to you, and in return you must turn over these papers and let me have whatever bears upon the matter. This is what he says: "'MY DEAR MR. SHERLOCK HOLMES:--Lord Backwater tells me that I may place implicit reliance upon your judgment and discretion. I have determined, therefore, to call upon you and to consult you in reference to the very painful event which has occurred in connection with my wedding. Mr. Lestrade, of Scotland Yard, is acting already in the matter, but he assures me that he sees no objection to your co-operation, and that he even thinks that it might be of some assistance. I will call at four o'clock in the afternoon, and, should you have any other engagement at that time, I hope that you will postpone it, as this matter is of paramount importance. Yours faithfully, ST. SIMON.' "It is dated from Grosvenor Mansions, written with a quill pen, and the noble lord has had the misfortune to get a smear of ink upon the outer side of his right little finger," remarked Holmes as he folded up the epistle. "He says four o'clock. It is three now. He will be here in an hour." "Then I have just time, with your assistance, to get clear upon the subject. Turn over those papers and arrange the extracts in their order of time, while I take a glance as to who our client is." He picked a red-covered volume from a line of books of reference beside the mantelpiece. "Here he is," said he, sitting down and flattening it out upon his knee. "'Lord Robert Walsingham de Vere St. Simon, second son of the Duke of Balmoral.' Hum! 'Arms: Azure, three caltrops in chief over a fess sable. Born in 1846.' He's forty-one years of age, which is mature for marriage. Was Under-Secretary for the colonies in a late administration. The Duke, his father, was at one time Secretary for Foreign Affairs. They inherit Plantagenet blood by direct descent, and Tudor on the distaff side. Ha! Well, there is nothing very instructive in all this. I think that I must turn to you Watson, for something more solid." "I have very little difficulty in finding what I want," said I, "for the facts are quite recent, and the matter struck me as remarkable. I feared to refer them to you, however, as I knew that you had an inquiry on hand and that you disliked the intrusion of other matters." "Oh, you mean the little problem of the Grosvenor Square furniture van. That is quite cleared up now--though, indeed, it was obvious from the first. Pray give me the results of your newspaper selections." "Here is the first notice which I can find. It is in the personal column of the Morning Post, and dates, as you see, some weeks back: 'A marriage has been arranged,' it says, 'and will, if rumour is correct, very shortly take place, between Lord Robert St. Simon, second son of the Duke of Balmoral, and Miss Hatty Doran, the only daughter of Aloysius Doran. Esq., of San Francisco, Cal., U.S.A.' That is all." "Terse and to the point," remarked Holmes, stretching his long, thin legs towards the fire. "There was a paragraph amplifying this in one of the society papers of the same week. Ah, here it is: 'There will soon be a call for protection in the marriage market, for the present free-trade principle appears to tell heavily against our home product. One by one the management of the noble houses of Great Britain is passing into the hands of our fair cousins from across the Atlantic. An important addition has been made during the last week to the list of the prizes which have been borne away by these charming invaders. Lord St. Simon, who has shown himself for over twenty years proof against the little god's arrows, has now definitely announced his approaching marriage with Miss Hatty Doran, the fascinating daughter of a California millionaire. Miss Doran, whose graceful figure and striking face attracted much attention at the Westbury House festivities, is an only child, and it is currently reported that her dowry will run to considerably over the six figures, with expectancies for the future. As it is an open secret that the Duke of Balmoral has been compelled to sell his pictures within the last few years, and as Lord St. Simon has no property of his own save the small estate of Birchmoor, it is obvious that the Californian heiress is not the only gainer by an alliance which will enable her to make the easy and common transition from a Republican lady to a British peeress.'" "Anything else?" asked Holmes, yawning. "Oh, yes; plenty. Then there is another note in the Morning Post to say that the marriage would be an absolutely quiet one, that it would be at St. George's, Hanover Square, that only half a dozen intimate friends would be invited, and that the party would return to the furnished house at Lancaster Gate which has been taken by Mr. Aloysius Doran. Two days later--that is, on Wednesday last--there is a curt announcement that the wedding had taken place, and that the honeymoon would be passed at Lord Backwater's place, near Petersfield. Those are all the notices which appeared before the disappearance of the bride." "Before the what?" asked Holmes with a start. "The vanishing of the lady." "When did she vanish, then?" "At the wedding breakfast." "Indeed. This is more interesting than it promised to be; quite dramatic, in fact." "Yes; it struck me as being a little out of the common." "They often vanish before the ceremony, and occasionally during the honeymoon; but I cannot call to mind anything quite so prompt as this. Pray let me have the details." "I warn you that they are very incomplete." "Perhaps we may make them less so." "Such as they are, they are set forth in a single article of a morning paper of yesterday, which I will read to you. It is headed, 'Singular Occurrence at a Fashionable Wedding': "'The family of Lord Robert St. Simon has been thrown into the greatest consternation by the strange and painful episodes which have taken place in connection with his wedding. The ceremony, as shortly announced in the papers of yesterday, occurred on the previous morning; but it is only now that it has been possible to confirm the strange rumours which have been so persistently floating about. In spite of the attempts of the friends to hush the matter up, so much public attention has now been drawn to it that no good purpose can be served by affecting to disregard what is a common subject for conversation. "'The ceremony, which was performed at St. George's, Hanover Square, was a very quiet one, no one being present save the father of the bride, Mr. Aloysius Doran, the Duchess of Balmoral, Lord Backwater, Lord Eustace and Lady Clara St. Simon (the younger brother and sister of the bridegroom), and Lady Alicia Whittington. The whole party proceeded afterwards to the house of Mr. Aloysius Doran, at Lancaster Gate, where breakfast had been prepared. It appears that some little trouble was caused by a woman, whose name has not been ascertained, who endeavoured to force her way into the house after the bridal party, alleging that she had some claim upon Lord St. Simon. It was only after a painful and prolonged scene that she was ejected by the butler and the footman. The bride, who had fortunately entered the house before this unpleasant interruption, had sat down to breakfast with the rest, when she complained of a sudden indisposition and retired to her room. Her prolonged absence having caused some comment, her father followed her, but learned from her maid that she had only come up to her chamber for an instant, caught up an ulster and bonnet, and hurried down to the passage. One of the footmen declared that he had seen a lady leave the house thus apparelled, but had refused to credit that it was his mistress, believing her to be with the company. On ascertaining that his daughter had disappeared, Mr. Aloysius Doran, in conjunction with the bridegroom, instantly put themselves in communication with the police, and very energetic inquiries are being made, which will probably result in a speedy clearing up of this very singular business. Up to a late hour last night, however, nothing had transpired as to the whereabouts of the missing lady. There are rumours of foul play in the matter, and it is said that the police have caused the arrest of the woman who had caused the original disturbance, in the belief that, from jealousy or some other motive, she may have been concerned in the strange disappearance of the bride.'" "And is that all?" "Only one little item in another of the morning papers, but it is a suggestive one." "And it is--" "That Miss Flora Millar, the lady who had caused the disturbance, has actually been arrested. It appears that she was formerly a danseuse at the Allegro, and that she has known the bridegroom for some years. There are no further particulars, and the whole case is in your hands now--so far as it has been set forth in the public press." "And an exceedingly interesting case it appears to be. I would not have missed it for worlds. But there is a ring at the bell, Watson, and as the clock makes it a few minutes after four, I have no doubt that this will prove to be our noble client. Do not dream of going, Watson, for I very much prefer having a witness, if only as a check to my own memory." "Lord Robert St. Simon," announced our page-boy, throwing open the door. A gentleman entered, with a pleasant, cultured face, high-nosed and pale, with something perhaps of petulance about the mouth, and with the steady, well-opened eye of a man whose pleasant lot it had ever been to command and to be obeyed. His manner was brisk, and yet his general appearance gave an undue impression of age, for he had a slight forward stoop and a little bend of the knees as he walked. His hair, too, as he swept off his very curly-brimmed hat, was grizzled round the edges and thin upon the top. As to his dress, it was careful to the verge of foppishness, with high collar, black frock-coat, white waistcoat, yellow gloves, patent-leather shoes, and light-coloured gaiters. He advanced slowly into the room, turning his head from left to right, and swinging in his right hand the cord which held his golden eyeglasses. "Good-day, Lord St. Simon," said Holmes, rising and bowing. "Pray take the basket-chair. This is my friend and colleague, Dr. Watson. Draw up a little to the fire, and we will talk this matter over." "A most painful matter to me, as you can most readily imagine, Mr. Holmes. I have been cut to the quick. I understand that you have already managed several delicate cases of this sort, sir, though I presume that they were hardly from the same class of society." "No, I am descending." "I beg pardon." "My last client of the sort was a king." "Oh, really! I had no idea. And which king?" "The King of Scandinavia." "What! Had he lost his wife?" "You can understand," said Holmes suavely, "that I extend to the affairs of my other clients the same secrecy which I promise to you in yours." "Of course! Very right! very right! I'm sure I beg pardon. As to my own case, I am ready to give you any information which may assist you in forming an opinion." "Thank you. I have already learned all that is in the public prints, nothing more. I presume that I may take it as correct--this article, for example, as to the disappearance of the bride." Lord St. Simon glanced over it. "Yes, it is correct, as far as it goes." "But it needs a great deal of supplementing before anyone could offer an opinion. I think that I may arrive at my facts most directly by questioning you." "Pray do so." "When did you first meet Miss Hatty Doran?" "In San Francisco, a year ago." "You were travelling in the States?" "Yes." "Did you become engaged then?" "No." "But you were on a friendly footing?" "I was amused by her society, and she could see that I was amused." "Her father is very rich?" "He is said to be the richest man on the Pacific slope." "And how did he make his money?" "In mining. He had nothing a few years ago. Then he struck gold, invested it, and came up by leaps and bounds." "Now, what is your own impression as to the young lady's--your wife's character?" The nobleman swung his glasses a little faster and stared down into the fire. "You see, Mr. Holmes," said he, "my wife was twenty before her father became a rich man. During that time she ran free in a mining camp and wandered through woods or mountains, so that her education has come from Nature rather than from the schoolmaster. She is what we call in England a tomboy, with a strong nature, wild and free, unfettered by any sort of traditions. She is impetuous--volcanic, I was about to say. She is swift in making up her mind and fearless in carrying out her resolutions. On the other hand, I would not have given her the name which I have the honour to bear"--he gave a little stately cough--"had not I thought her to be at bottom a noble woman. I believe that she is capable of heroic self-sacrifice and that anything dishonourable would be repugnant to her." "Have you her photograph?" "I brought this with me." He opened a locket and showed us the full face of a very lovely woman. It was not a photograph but an ivory miniature, and the artist had brought out the full effect of the lustrous black hair, the large dark eyes, and the exquisite mouth. Holmes gazed long and earnestly at it. Then he closed the locket and handed it back to Lord St. Simon. "The young lady came to London, then, and you renewed your acquaintance?" "Yes, her father brought her over for this last London season. I met her several times, became engaged to her, and have now married her." "She brought, I understand, a considerable dowry?" "A fair dowry. Not more than is usual in my family." "And this, of course, remains to you, since the marriage is a fait accompli?" "I really have made no inquiries on the subject." "Very naturally not. Did you see Miss Doran on the day before the wedding?" "Yes." "Was she in good spirits?" "Never better. She kept talking of what we should do in our future lives." "Indeed! That is very interesting. And on the morning of the wedding?" "She was as bright as possible--at least until after the ceremony." "And did you observe any change in her then?" "Well, to tell the truth, I saw then the first signs that I had ever seen that her temper was just a little sharp. The incident however, was too trivial to relate and can have no possible bearing upon the case." "Pray let us have it, for all that." "Oh, it is childish. She dropped her bouquet as we went towards the vestry. She was passing the front pew at the time, and it fell over into the pew. There was a moment's delay, but the gentleman in the pew handed it up to her again, and it did not appear to be the worse for the fall. Yet when I spoke to her of the matter, she answered me abruptly; and in the carriage, on our way home, she seemed absurdly agitated over this trifling cause." "Indeed! You say that there was a gentleman in the pew. Some of the general public were present, then?" "Oh, yes. It is impossible to exclude them when the church is open." "This gentleman was not one of your wife's friends?" "No, no; I call him a gentleman by courtesy, but he was quite a common-looking person. I hardly noticed his appearance. But really I think that we are wandering rather far from the point." "Lady St. Simon, then, returned from the wedding in a less cheerful frame of mind than she had gone to it. What did she do on re-entering her father's house?" "I saw her in conversation with her maid." "And who is her maid?" "Alice is her name. She is an American and came from California with her." "A confidential servant?" "A little too much so. It seemed to me that her mistress allowed her to take great liberties. Still, of course, in America they look upon these things in a different way." "How long did she speak to this Alice?" "Oh, a few minutes. I had something else to think of." "You did not overhear what they said?" "Lady St. Simon said something about 'jumping a claim.' She was accustomed to use slang of the kind. I have no idea what she meant." "American slang is very expressive sometimes. And what did your wife do when she finished speaking to her maid?" "She walked into the breakfast-room." "On your arm?" "No, alone. She was very independent in little matters like that. Then, after we had sat down for ten minutes or so, she rose hurriedly, muttered some words of apology, and left the room. She never came back." "But this maid, Alice, as I understand, deposes that she went to her room, covered her bride's dress with a long ulster, put on a bonnet, and went out." "Quite so. And she was afterwards seen walking into Hyde Park in company with Flora Millar, a woman who is now in custody, and who had already made a disturbance at Mr. Doran's house that morning." "Ah, yes. I should like a few particulars as to this young lady, and your relations to her." Lord St. Simon shrugged his shoulders and raised his eyebrows. "We have been on a friendly footing for some years--I may say on a very friendly footing. She used to be at the Allegro. I have not treated her ungenerously, and she had no just cause of complaint against me, but you know what women are, Mr. Holmes. Flora was a dear little thing, but exceedingly hot-headed and devotedly attached to me. She wrote me dreadful letters when she heard that I was about to be married, and, to tell the truth, the reason why I had the marriage celebrated so quietly was that I feared lest there might be a scandal in the church. She came to Mr. Doran's door just after we returned, and she endeavoured to push her way in, uttering very abusive expressions towards my wife, and even threatening her, but I had foreseen the possibility of something of the sort, and I had two police fellows there in private clothes, who soon pushed her out again. She was quiet when she saw that there was no good in making a row." "Did your wife hear all this?" "No, thank goodness, she did not." "And she was seen walking with this very woman afterwards?" "Yes. That is what Mr. Lestrade, of Scotland Yard, looks upon as so serious. It is thought that Flora decoyed my wife out and laid some terrible trap for her." "Well, it is a possible supposition." "You think so, too?" "I did not say a probable one. But you do not yourself look upon this as likely?" "I do not think Flora would hurt a fly." "Still, jealousy is a strange transformer of characters. Pray what is your own theory as to what took place?" "Well, really, I came to seek a theory, not to propound one. I have given you all the facts. Since you ask me, however, I may say that it has occurred to me as possible that the excitement of this affair, the consciousness that she had made so immense a social stride, had the effect of causing some little nervous disturbance in my wife." "In short, that she had become suddenly deranged?" "Well, really, when I consider that she has turned her back--I will not say upon me, but upon so much that many have aspired to without success--I can hardly explain it in any other fashion." "Well, certainly that is also a conceivable hypothesis," said Holmes, smiling. "And now, Lord St. Simon, I think that I have nearly all my data. May I ask whether you were seated at the breakfast-table so that you could see out of the window?" "We could see the other side of the road and the Park." "Quite so. Then I do not think that I need to detain you longer. I shall communicate with you." "Should you be fortunate enough to solve this problem," said our client, rising. "I have solved it." "Eh? What was that?" "I say that I have solved it." "Where, then, is my wife?" "That is a detail which I shall speedily supply." Lord St. Simon shook his head. "I am afraid that it will take wiser heads than yours or mine," he remarked, and bowing in a stately, old-fashioned manner he departed. "It is very good of Lord St. Simon to honour my head by putting it on a level with his own," said Sherlock Holmes, laughing. "I think that I shall have a whisky and soda and a cigar after all this cross-questioning. I had formed my conclusions as to the case before our client came into the room." "My dear Holmes!" "I have notes of several similar cases, though none, as I remarked before, which were quite as prompt. My whole examination served to turn my conjecture into a certainty. Circumstantial evidence is occasionally very convincing, as when you find a trout in the milk, to quote Thoreau's example." "But I have heard all that you have heard." "Without, however, the knowledge of pre-existing cases which serves me so well. There was a parallel instance in Aberdeen some years back, and something on very much the same lines at Munich the year after the Franco-Prussian War. It is one of these cases--but, hullo, here is Lestrade! Good-afternoon, Lestrade! You will find an extra tumbler upon the sideboard, and there are cigars in the box." The official detective was attired in a pea-jacket and cravat, which gave him a decidedly nautical appearance, and he carried a black canvas bag in his hand. With a short greeting he seated himself and lit the cigar which had been offered to him. "What's up, then?" asked Holmes with a twinkle in his eye. "You look dissatisfied." "And I feel dissatisfied. It is this infernal St. Simon marriage case. I can make neither head nor tail of the business." "Really! You surprise me." "Who ever heard of such a mixed affair? Every clue seems to slip through my fingers. I have been at work upon it all day." "And very wet it seems to have made you," said Holmes laying his hand upon the arm of the pea-jacket. "Yes, I have been dragging the Serpentine." "In heaven's name, what for?" "In search of the body of Lady St. Simon." Sherlock Holmes leaned back in his chair and laughed heartily. "Have you dragged the basin of Trafalgar Square fountain?" he asked. "Why? What do you mean?" "Because you have just as good a chance of finding this lady in the one as in the other." Lestrade shot an angry glance at my companion. "I suppose you know all about it," he snarled. "Well, I have only just heard the facts, but my mind is made up." "Oh, indeed! Then you think that the Serpentine plays no part in the matter?" "I think it very unlikely." "Then perhaps you will kindly explain how it is that we found this in it?" He opened his bag as he spoke, and tumbled onto the floor a wedding-dress of watered silk, a pair of white satin shoes and a bride's wreath and veil, all discoloured and soaked in water. "There," said he, putting a new wedding-ring upon the top of the pile. "There is a little nut for you to crack, Master Holmes." "Oh, indeed!" said my friend, blowing blue rings into the air. "You dragged them from the Serpentine?" "No. They were found floating near the margin by a park-keeper. They have been identified as her clothes, and it seemed to me that if the clothes were there the body would not be far off." "By the same brilliant reasoning, every man's body is to be found in the neighbourhood of his wardrobe. And pray what did you hope to arrive at through this?" "At some evidence implicating Flora Millar in the disappearance." "I am afraid that you will find it difficult." "Are you, indeed, now?" cried Lestrade with some bitterness. "I am afraid, Holmes, that you are not very practical with your deductions and your inferences. You have made two blunders in as many minutes. This dress does implicate Miss Flora Millar." "And how?" "In the dress is a pocket. In the pocket is a card-case. In the card-case is a note. And here is the very note." He slapped it down upon the table in front of him. "Listen to this: 'You will see me when all is ready. Come at once. F.H.M.' Now my theory all along has been that Lady St. Simon was decoyed away by Flora Millar, and that she, with confederates, no doubt, was responsible for her disappearance. Here, signed with her initials, is the very note which was no doubt quietly slipped into her hand at the door and which lured her within their reach." "Very good, Lestrade," said Holmes, laughing. "You really are very fine indeed. Let me see it." He took up the paper in a listless way, but his attention instantly became riveted, and he gave a little cry of satisfaction. "This is indeed important," said he. "Ha! you find it so?" "Extremely so. I congratulate you warmly." Lestrade rose in his triumph and bent his head to look. "Why," he shrieked, "you're looking at the wrong side!" "On the contrary, this is the right side." "The right side? You're mad! Here is the note written in pencil over here." "And over here is what appears to be the fragment of a hotel bill, which interests me deeply." "There's nothing in it. I looked at it before," said Lestrade. "'Oct. 4th, rooms 8s., breakfast 2s. 6d., cocktail 1s., lunch 2s. 6d., glass sherry, 8d.' I see nothing in that." "Very likely not. It is most important, all the same. As to the note, it is important also, or at least the initials are, so I congratulate you again." "I've wasted time enough," said Lestrade, rising. "I believe in hard work and not in sitting by the fire spinning fine theories. Good-day, Mr. Holmes, and we shall see which gets to the bottom of the matter first." He gathered up the garments, thrust them into the bag, and made for the door. "Just one hint to you, Lestrade," drawled Holmes before his rival vanished; "I will tell you the true solution of the matter. Lady St. Simon is a myth. There is not, and there never has been, any such person." Lestrade looked sadly at my companion. Then he turned to me, tapped his forehead three times, shook his head solemnly, and hurried away. He had hardly shut the door behind him when Holmes rose to put on his overcoat. "There is something in what the fellow says about outdoor work," he remarked, "so I think, Watson, that I must leave you to your papers for a little." It was after five o'clock when Sherlock Holmes left me, but I had no time to be lonely, for within an hour there arrived a confectioner's man with a very large flat box. This he unpacked with the help of a youth whom he had brought with him, and presently, to my very great astonishment, a quite epicurean little cold supper began to be laid out upon our humble lodging-house mahogany. There were a couple of brace of cold woodcock, a pheasant, a pâté de foie gras pie with a group of ancient and cobwebby bottles. Having laid out all these luxuries, my two visitors vanished away, like the genii of the Arabian Nights, with no explanation save that the things had been paid for and were ordered to this address. Just before nine o'clock Sherlock Holmes stepped briskly into the room. His features were gravely set, but there was a light in his eye which made me think that he had not been disappointed in his conclusions. "They have laid the supper, then," he said, rubbing his hands. "You seem to expect company. They have laid for five." "Yes, I fancy we may have some company dropping in," said he. "I am surprised that Lord St. Simon has not already arrived. Ha! I fancy that I hear his step now upon the stairs." It was indeed our visitor of the afternoon who came bustling in, dangling his glasses more vigorously than ever, and with a very perturbed expression upon his aristocratic features. "My messenger reached you, then?" asked Holmes. "Yes, and I confess that the contents startled me beyond measure. Have you good authority for what you say?" "The best possible." Lord St. Simon sank into a chair and passed his hand over his forehead. "What will the Duke say," he murmured, "when he hears that one of the family has been subjected to such humiliation?" "It is the purest accident. I cannot allow that there is any humiliation." "Ah, you look on these things from another standpoint." "I fail to see that anyone is to blame. I can hardly see how the lady could have acted otherwise, though her abrupt method of doing it was undoubtedly to be regretted. Having no mother, she had no one to advise her at such a crisis." "It was a slight, sir, a public slight," said Lord St. Simon, tapping his fingers upon the table. "You must make allowance for this poor girl, placed in so unprecedented a position." "I will make no allowance. I am very angry indeed, and I have been shamefully used." "I think that I heard a ring," said Holmes. "Yes, there are steps on the landing. If I cannot persuade you to take a lenient view of the matter, Lord St. Simon, I have brought an advocate here who may be more successful." He opened the door and ushered in a lady and gentleman. "Lord St. Simon," said he "allow me to introduce you to Mr. and Mrs. Francis Hay Moulton. The lady, I think, you have already met." At the sight of these newcomers our client had sprung from his seat and stood very erect, with his eyes cast down and his hand thrust into the breast of his frock-coat, a picture of offended dignity. The lady had taken a quick step forward and had held out her hand to him, but he still refused to raise his eyes. It was as well for his resolution, perhaps, for her pleading face was one which it was hard to resist. "You're angry, Robert," said she. "Well, I guess you have every cause to be." "Pray make no apology to me," said Lord St. Simon bitterly. "Oh, yes, I know that I have treated you real bad and that I should have spoken to you before I went; but I was kind of rattled, and from the time when I saw Frank here again I just didn't know what I was doing or saying. I only wonder I didn't fall down and do a faint right there before the altar." "Perhaps, Mrs. Moulton, you would like my friend and me to leave the room while you explain this matter?" "If I may give an opinion," remarked the strange gentleman, "we've had just a little too much secrecy over this business already. For my part, I should like all Europe and America to hear the rights of it." He was a small, wiry, sunburnt man, clean-shaven, with a sharp face and alert manner. "Then I'll tell our story right away," said the lady. "Frank here and I met in '84, in McQuire's camp, near the Rockies, where pa was working a claim. We were engaged to each other, Frank and I; but then one day father struck a rich pocket and made a pile, while poor Frank here had a claim that petered out and came to nothing. The richer pa grew the poorer was Frank; so at last pa wouldn't hear of our engagement lasting any longer, and he took me away to 'Frisco. Frank wouldn't throw up his hand, though; so he followed me there, and he saw me without pa knowing anything about it. It would only have made him mad to know, so we just fixed it all up for ourselves. Frank said that he would go and make his pile, too, and never come back to claim me until he had as much as pa. So then I promised to wait for him to the end of time and pledged myself not to marry anyone else while he lived. 'Why shouldn't we be married right away, then,' said he, 'and then I will feel sure of you; and I won't claim to be your husband until I come back?' Well, we talked it over, and he had fixed it all up so nicely, with a clergyman all ready in waiting, that we just did it right there; and then Frank went off to seek his fortune, and I went back to pa. "The next I heard of Frank was that he was in Montana, and then he went prospecting in Arizona, and then I heard of him from New Mexico. After that came a long newspaper story about how a miners' camp had been attacked by Apache Indians, and there was my Frank's name among the killed. I fainted dead away, and I was very sick for months after. Pa thought I had a decline and took me to half the doctors in 'Frisco. Not a word of news came for a year and more, so that I never doubted that Frank was really dead. Then Lord St. Simon came to 'Frisco, and we came to London, and a marriage was arranged, and pa was very pleased, but I felt all the time that no man on this earth would ever take the place in my heart that had been given to my poor Frank. "Still, if I had married Lord St. Simon, of course I'd have done my duty by him. We can't command our love, but we can our actions. I went to the altar with him with the intention to make him just as good a wife as it was in me to be. But you may imagine what I felt when, just as I came to the altar rails, I glanced back and saw Frank standing and looking at me out of the first pew. I thought it was his ghost at first; but when I looked again there he was still, with a kind of question in his eyes, as if to ask me whether I were glad or sorry to see him. I wonder I didn't drop. I know that everything was turning round, and the words of the clergyman were just like the buzz of a bee in my ear. I didn't know what to do. Should I stop the service and make a scene in the church? I glanced at him again, and he seemed to know what I was thinking, for he raised his finger to his lips to tell me to be still. Then I saw him scribble on a piece of paper, and I knew that he was writing me a note. As I passed his pew on the way out I dropped my bouquet over to him, and he slipped the note into my hand when he returned me the flowers. It was only a line asking me to join him when he made the sign to me to do so. Of course I never doubted for a moment that my first duty was now to him, and I determined to do just whatever he might direct. "When I got back I told my maid, who had known him in California, and had always been his friend. I ordered her to say nothing, but to get a few things packed and my ulster ready. I know I ought to have spoken to Lord St. Simon, but it was dreadful hard before his mother and all those great people. I just made up my mind to run away and explain afterwards. I hadn't been at the table ten minutes before I saw Frank out of the window at the other side of the road. He beckoned to me and then began walking into the Park. I slipped out, put on my things, and followed him. Some woman came talking something or other about Lord St. Simon to me--seemed to me from the little I heard as if he had a little secret of his own before marriage also--but I managed to get away from her and soon overtook Frank. We got into a cab together, and away we drove to some lodgings he had taken in Gordon Square, and that was my true wedding after all those years of waiting. Frank had been a prisoner among the Apaches, had escaped, came on to 'Frisco, found that I had given him up for dead and had gone to England, followed me there, and had come upon me at last on the very morning of my second wedding." "I saw it in a paper," explained the American. "It gave the name and the church but not where the lady lived." "Then we had a talk as to what we should do, and Frank was all for openness, but I was so ashamed of it all that I felt as if I should like to vanish away and never see any of them again--just sending a line to pa, perhaps, to show him that I was alive. It was awful to me to think of all those lords and ladies sitting round that breakfast-table and waiting for me to come back. So Frank took my wedding-clothes and things and made a bundle of them, so that I should not be traced, and dropped them away somewhere where no one could find them. It is likely that we should have gone on to Paris to-morrow, only that this good gentleman, Mr. Holmes, came round to us this evening, though how he found us is more than I can think, and he showed us very clearly and kindly that I was wrong and that Frank was right, and that we should be putting ourselves in the wrong if we were so secret. Then he offered to give us a chance of talking to Lord St. Simon alone, and so we came right away round to his rooms at once. Now, Robert, you have heard it all, and I am very sorry if I have given you pain, and I hope that you do not think very meanly of me." Lord St. Simon had by no means relaxed his rigid attitude, but had listened with a frowning brow and a compressed lip to this long narrative. "Excuse me," he said, "but it is not my custom to discuss my most intimate personal affairs in this public manner." "Then you won't forgive me? You won't shake hands before I go?" "Oh, certainly, if it would give you any pleasure." He put out his hand and coldly grasped that which she extended to him. "I had hoped," suggested Holmes, "that you would have joined us in a friendly supper." "I think that there you ask a little too much," responded his Lordship. "I may be forced to acquiesce in these recent developments, but I can hardly be expected to make merry over them. I think that with your permission I will now wish you all a very good-night." He included us all in a sweeping bow and stalked out of the room. "Then I trust that you at least will honour me with your company," said Sherlock Holmes. "It is always a joy to meet an American, Mr. Moulton, for I am one of those who believe that the folly of a monarch and the blundering of a minister in far-gone years will not prevent our children from being some day citizens of the same world-wide country under a flag which shall be a quartering of the Union Jack with the Stars and Stripes." "The case has been an interesting one," remarked Holmes when our visitors had left us, "because it serves to show very clearly how simple the explanation may be of an affair which at first sight seems to be almost inexplicable. Nothing could be more natural than the sequence of events as narrated by this lady, and nothing stranger than the result when viewed, for instance, by Mr. Lestrade of Scotland Yard." "You were not yourself at fault at all, then?" "From the first, two facts were very obvious to me, the one that the lady had been quite willing to undergo the wedding ceremony, the other that she had repented of it within a few minutes of returning home. Obviously something had occurred during the morning, then, to cause her to change her mind. What could that something be? She could not have spoken to anyone when she was out, for she had been in the company of the bridegroom. Had she seen someone, then? If she had, it must be someone from America because she had spent so short a time in this country that she could hardly have allowed anyone to acquire so deep an influence over her that the mere sight of him would induce her to change her plans so completely. You see we have already arrived, by a process of exclusion, at the idea that she might have seen an American. Then who could this American be, and why should he possess so much influence over her? It might be a lover; it might be a husband. Her young womanhood had, I knew, been spent in rough scenes and under strange conditions. So far I had got before I ever heard Lord St. Simon's narrative. When he told us of a man in a pew, of the change in the bride's manner, of so transparent a device for obtaining a note as the dropping of a bouquet, of her resort to her confidential maid, and of her very significant allusion to claim-jumping--which in miners' parlance means taking possession of that which another person has a prior claim to--the whole situation became absolutely clear. She had gone off with a man, and the man was either a lover or was a previous husband--the chances being in favour of the latter." "And how in the world did you find them?" "It might have been difficult, but friend Lestrade held information in his hands the value of which he did not himself know. The initials were, of course, of the highest importance, but more valuable still was it to know that within a week he had settled his bill at one of the most select London hotels." "How did you deduce the select?" "By the select prices. Eight shillings for a bed and eightpence for a glass of sherry pointed to one of the most expensive hotels. There are not many in London which charge at that rate. In the second one which I visited in Northumberland Avenue, I learned by an inspection of the book that Francis H. Moulton, an American gentleman, had left only the day before, and on looking over the entries against him, I came upon the very items which I had seen in the duplicate bill. His letters were to be forwarded to 226 Gordon Square; so thither I travelled, and being fortunate enough to find the loving couple at home, I ventured to give them some paternal advice and to point out to them that it would be better in every way that they should make their position a little clearer both to the general public and to Lord St. Simon in particular. I invited them to meet him here, and, as you see, I made him keep the appointment." "But with no very good result," I remarked. "His conduct was certainly not very gracious." "Ah, Watson," said Holmes, smiling, "perhaps you would not be very gracious either, if, after all the trouble of wooing and wedding, you found yourself deprived in an instant of wife and of fortune. I think that we may judge Lord St. Simon very mercifully and thank our stars that we are never likely to find ourselves in the same position. Draw your chair up and hand me my violin, for the only problem we have still to solve is how to while away these bleak autumnal evenings." XI. THE ADVENTURE OF THE BERYL CORONET "Holmes," said I as I stood one morning in our bow-window looking down the street, "here is a madman coming along. It seems rather sad that his relatives should allow him to come out alone." My friend rose lazily from his armchair and stood with his hands in the pockets of his dressing-gown, looking over my shoulder. It was a bright, crisp February morning, and the snow of the day before still lay deep upon the ground, shimmering brightly in the wintry sun. Down the centre of Baker Street it had been ploughed into a brown crumbly band by the traffic, but at either side and on the heaped-up edges of the foot-paths it still lay as white as when it fell. The grey pavement had been cleaned and scraped, but was still dangerously slippery, so that there were fewer passengers than usual. Indeed, from the direction of the Metropolitan Station no one was coming save the single gentleman whose eccentric conduct had drawn my attention. He was a man of about fifty, tall, portly, and imposing, with a massive, strongly marked face and a commanding figure. He was dressed in a sombre yet rich style, in black frock-coat, shining hat, neat brown gaiters, and well-cut pearl-grey trousers. Yet his actions were in absurd contrast to the dignity of his dress and features, for he was running hard, with occasional little springs, such as a weary man gives who is little accustomed to set any tax upon his legs. As he ran he jerked his hands up and down, waggled his head, and writhed his face into the most extraordinary contortions. "What on earth can be the matter with him?" I asked. "He is looking up at the numbers of the houses." "I believe that he is coming here," said Holmes, rubbing his hands. "Here?" "Yes; I rather think he is coming to consult me professionally. I think that I recognise the symptoms. Ha! did I not tell you?" As he spoke, the man, puffing and blowing, rushed at our door and pulled at our bell until the whole house resounded with the clanging. A few moments later he was in our room, still puffing, still gesticulating, but with so fixed a look of grief and despair in his eyes that our smiles were turned in an instant to horror and pity. For a while he could not get his words out, but swayed his body and plucked at his hair like one who has been driven to the extreme limits of his reason. Then, suddenly springing to his feet, he beat his head against the wall with such force that we both rushed upon him and tore him away to the centre of the room. Sherlock Holmes pushed him down into the easy-chair and, sitting beside him, patted his hand and chatted with him in the easy, soothing tones which he knew so well how to employ. "You have come to me to tell your story, have you not?" said he. "You are fatigued with your haste. Pray wait until you have recovered yourself, and then I shall be most happy to look into any little problem which you may submit to me." The man sat for a minute or more with a heaving chest, fighting against his emotion. Then he passed his handkerchief over his brow, set his lips tight, and turned his face towards us. "No doubt you think me mad?" said he. "I see that you have had some great trouble," responded Holmes. "God knows I have!--a trouble which is enough to unseat my reason, so sudden and so terrible is it. Public disgrace I might have faced, although I am a man whose character has never yet borne a stain. Private affliction also is the lot of every man; but the two coming together, and in so frightful a form, have been enough to shake my very soul. Besides, it is not I alone. The very noblest in the land may suffer unless some way be found out of this horrible affair." "Pray compose yourself, sir," said Holmes, "and let me have a clear account of who you are and what it is that has befallen you." "My name," answered our visitor, "is probably familiar to your ears. I am Alexander Holder, of the banking firm of Holder & Stevenson, of Threadneedle Street." The name was indeed well known to us as belonging to the senior partner in the second largest private banking concern in the City of London. What could have happened, then, to bring one of the foremost citizens of London to this most pitiable pass? We waited, all curiosity, until with another effort he braced himself to tell his story. "I feel that time is of value," said he; "that is why I hastened here when the police inspector suggested that I should secure your co-operation. I came to Baker Street by the Underground and hurried from there on foot, for the cabs go slowly through this snow. That is why I was so out of breath, for I am a man who takes very little exercise. I feel better now, and I will put the facts before you as shortly and yet as clearly as I can. "It is, of course, well known to you that in a successful banking business as much depends upon our being able to find remunerative investments for our funds as upon our increasing our connection and the number of our depositors. One of our most lucrative means of laying out money is in the shape of loans, where the security is unimpeachable. We have done a good deal in this direction during the last few years, and there are many noble families to whom we have advanced large sums upon the security of their pictures, libraries, or plate. "Yesterday morning I was seated in my office at the bank when a card was brought in to me by one of the clerks. I started when I saw the name, for it was that of none other than--well, perhaps even to you I had better say no more than that it was a name which is a household word all over the earth--one of the highest, noblest, most exalted names in England. I was overwhelmed by the honour and attempted, when he entered, to say so, but he plunged at once into business with the air of a man who wishes to hurry quickly through a disagreeable task. "'Mr. Holder,' said he, 'I have been informed that you are in the habit of advancing money.' "'The firm does so when the security is good.' I answered. "'It is absolutely essential to me,' said he, 'that I should have 50,000 pounds at once. I could, of course, borrow so trifling a sum ten times over from my friends, but I much prefer to make it a matter of business and to carry out that business myself. In my position you can readily understand that it is unwise to place one's self under obligations.' "'For how long, may I ask, do you want this sum?' I asked. "'Next Monday I have a large sum due to me, and I shall then most certainly repay what you advance, with whatever interest you think it right to charge. But it is very essential to me that the money should be paid at once.' "'I should be happy to advance it without further parley from my own private purse,' said I, 'were it not that the strain would be rather more than it could bear. If, on the other hand, I am to do it in the name of the firm, then in justice to my partner I must insist that, even in your case, every businesslike precaution should be taken.' "'I should much prefer to have it so,' said he, raising up a square, black morocco case which he had laid beside his chair. 'You have doubtless heard of the Beryl Coronet?' "'One of the most precious public possessions of the empire,' said I. "'Precisely.' He opened the case, and there, imbedded in soft, flesh-coloured velvet, lay the magnificent piece of jewellery which he had named. 'There are thirty-nine enormous beryls,' said he, 'and the price of the gold chasing is incalculable. The lowest estimate would put the worth of the coronet at double the sum which I have asked. I am prepared to leave it with you as my security.' "I took the precious case into my hands and looked in some perplexity from it to my illustrious client. "'You doubt its value?' he asked. "'Not at all. I only doubt--' "'The propriety of my leaving it. You may set your mind at rest about that. I should not dream of doing so were it not absolutely certain that I should be able in four days to reclaim it. It is a pure matter of form. Is the security sufficient?' "'Ample.' "'You understand, Mr. Holder, that I am giving you a strong proof of the confidence which I have in you, founded upon all that I have heard of you. I rely upon you not only to be discreet and to refrain from all gossip upon the matter but, above all, to preserve this coronet with every possible precaution because I need not say that a great public scandal would be caused if any harm were to befall it. Any injury to it would be almost as serious as its complete loss, for there are no beryls in the world to match these, and it would be impossible to replace them. I leave it with you, however, with every confidence, and I shall call for it in person on Monday morning.' "Seeing that my client was anxious to leave, I said no more but, calling for my cashier, I ordered him to pay over fifty 1000 pound notes. When I was alone once more, however, with the precious case lying upon the table in front of me, I could not but think with some misgivings of the immense responsibility which it entailed upon me. There could be no doubt that, as it was a national possession, a horrible scandal would ensue if any misfortune should occur to it. I already regretted having ever consented to take charge of it. However, it was too late to alter the matter now, so I locked it up in my private safe and turned once more to my work. "When evening came I felt that it would be an imprudence to leave so precious a thing in the office behind me. Bankers' safes had been forced before now, and why should not mine be? If so, how terrible would be the position in which I should find myself! I determined, therefore, that for the next few days I would always carry the case backward and forward with me, so that it might never be really out of my reach. With this intention, I called a cab and drove out to my house at Streatham, carrying the jewel with me. I did not breathe freely until I had taken it upstairs and locked it in the bureau of my dressing-room. "And now a word as to my household, Mr. Holmes, for I wish you to thoroughly understand the situation. My groom and my page sleep out of the house, and may be set aside altogether. I have three maid-servants who have been with me a number of years and whose absolute reliability is quite above suspicion. Another, Lucy Parr, the second waiting-maid, has only been in my service a few months. She came with an excellent character, however, and has always given me satisfaction. She is a very pretty girl and has attracted admirers who have occasionally hung about the place. That is the only drawback which we have found to her, but we believe her to be a thoroughly good girl in every way. "So much for the servants. My family itself is so small that it will not take me long to describe it. I am a widower and have an only son, Arthur. He has been a disappointment to me, Mr. Holmes--a grievous disappointment. I have no doubt that I am myself to blame. People tell me that I have spoiled him. Very likely I have. When my dear wife died I felt that he was all I had to love. I could not bear to see the smile fade even for a moment from his face. I have never denied him a wish. Perhaps it would have been better for both of us had I been sterner, but I meant it for the best. "It was naturally my intention that he should succeed me in my business, but he was not of a business turn. He was wild, wayward, and, to speak the truth, I could not trust him in the handling of large sums of money. When he was young he became a member of an aristocratic club, and there, having charming manners, he was soon the intimate of a number of men with long purses and expensive habits. He learned to play heavily at cards and to squander money on the turf, until he had again and again to come to me and implore me to give him an advance upon his allowance, that he might settle his debts of honour. He tried more than once to break away from the dangerous company which he was keeping, but each time the influence of his friend, Sir George Burnwell, was enough to draw him back again. "And, indeed, I could not wonder that such a man as Sir George Burnwell should gain an influence over him, for he has frequently brought him to my house, and I have found myself that I could hardly resist the fascination of his manner. He is older than Arthur, a man of the world to his finger-tips, one who had been everywhere, seen everything, a brilliant talker, and a man of great personal beauty. Yet when I think of him in cold blood, far away from the glamour of his presence, I am convinced from his cynical speech and the look which I have caught in his eyes that he is one who should be deeply distrusted. So I think, and so, too, thinks my little Mary, who has a woman's quick insight into character. "And now there is only she to be described. She is my niece; but when my brother died five years ago and left her alone in the world I adopted her, and have looked upon her ever since as my daughter. She is a sunbeam in my house--sweet, loving, beautiful, a wonderful manager and housekeeper, yet as tender and quiet and gentle as a woman could be. She is my right hand. I do not know what I could do without her. In only one matter has she ever gone against my wishes. Twice my boy has asked her to marry him, for he loves her devotedly, but each time she has refused him. I think that if anyone could have drawn him into the right path it would have been she, and that his marriage might have changed his whole life; but now, alas! it is too late--forever too late! "Now, Mr. Holmes, you know the people who live under my roof, and I shall continue with my miserable story. "When we were taking coffee in the drawing-room that night after dinner, I told Arthur and Mary my experience, and of the precious treasure which we had under our roof, suppressing only the name of my client. Lucy Parr, who had brought in the coffee, had, I am sure, left the room; but I cannot swear that the door was closed. Mary and Arthur were much interested and wished to see the famous coronet, but I thought it better not to disturb it. "'Where have you put it?' asked Arthur. "'In my own bureau.' "'Well, I hope to goodness the house won't be burgled during the night.' said he. "'It is locked up,' I answered. "'Oh, any old key will fit that bureau. When I was a youngster I have opened it myself with the key of the box-room cupboard.' "He often had a wild way of talking, so that I thought little of what he said. He followed me to my room, however, that night with a very grave face. "'Look here, dad,' said he with his eyes cast down, 'can you let me have 200 pounds?' "'No, I cannot!' I answered sharply. 'I have been far too generous with you in money matters.' "'You have been very kind,' said he, 'but I must have this money, or else I can never show my face inside the club again.' "'And a very good thing, too!' I cried. "'Yes, but you would not have me leave it a dishonoured man,' said he. 'I could not bear the disgrace. I must raise the money in some way, and if you will not let me have it, then I must try other means.' "I was very angry, for this was the third demand during the month. 'You shall not have a farthing from me,' I cried, on which he bowed and left the room without another word. "When he was gone I unlocked my bureau, made sure that my treasure was safe, and locked it again. Then I started to go round the house to see that all was secure--a duty which I usually leave to Mary but which I thought it well to perform myself that night. As I came down the stairs I saw Mary herself at the side window of the hall, which she closed and fastened as I approached. "'Tell me, dad,' said she, looking, I thought, a little disturbed, 'did you give Lucy, the maid, leave to go out to-night?' "'Certainly not.' "'She came in just now by the back door. I have no doubt that she has only been to the side gate to see someone, but I think that it is hardly safe and should be stopped.' "'You must speak to her in the morning, or I will if you prefer it. Are you sure that everything is fastened?' "'Quite sure, dad.' "'Then, good-night.' I kissed her and went up to my bedroom again, where I was soon asleep. "I am endeavouring to tell you everything, Mr. Holmes, which may have any bearing upon the case, but I beg that you will question me upon any point which I do not make clear." "On the contrary, your statement is singularly lucid." "I come to a part of my story now in which I should wish to be particularly so. I am not a very heavy sleeper, and the anxiety in my mind tended, no doubt, to make me even less so than usual. About two in the morning, then, I was awakened by some sound in the house. It had ceased ere I was wide awake, but it had left an impression behind it as though a window had gently closed somewhere. I lay listening with all my ears. Suddenly, to my horror, there was a distinct sound of footsteps moving softly in the next room. I slipped out of bed, all palpitating with fear, and peeped round the corner of my dressing-room door. "'Arthur!' I screamed, 'you villain! you thief! How dare you touch that coronet?' "The gas was half up, as I had left it, and my unhappy boy, dressed only in his shirt and trousers, was standing beside the light, holding the coronet in his hands. He appeared to be wrenching at it, or bending it with all his strength. At my cry he dropped it from his grasp and turned as pale as death. I snatched it up and examined it. One of the gold corners, with three of the beryls in it, was missing. "'You blackguard!' I shouted, beside myself with rage. 'You have destroyed it! You have dishonoured me forever! Where are the jewels which you have stolen?' "'Stolen!' he cried. "'Yes, thief!' I roared, shaking him by the shoulder. "'There are none missing. There cannot be any missing,' said he. "'There are three missing. And you know where they are. Must I call you a liar as well as a thief? Did I not see you trying to tear off another piece?' "'You have called me names enough,' said he, 'I will not stand it any longer. I shall not say another word about this business, since you have chosen to insult me. I will leave your house in the morning and make my own way in the world.' "'You shall leave it in the hands of the police!' I cried half-mad with grief and rage. 'I shall have this matter probed to the bottom.' "'You shall learn nothing from me,' said he with a passion such as I should not have thought was in his nature. 'If you choose to call the police, let the police find what they can.' "By this time the whole house was astir, for I had raised my voice in my anger. Mary was the first to rush into my room, and, at the sight of the coronet and of Arthur's face, she read the whole story and, with a scream, fell down senseless on the ground. I sent the house-maid for the police and put the investigation into their hands at once. When the inspector and a constable entered the house, Arthur, who had stood sullenly with his arms folded, asked me whether it was my intention to charge him with theft. I answered that it had ceased to be a private matter, but had become a public one, since the ruined coronet was national property. I was determined that the law should have its way in everything. "'At least,' said he, 'you will not have me arrested at once. It would be to your advantage as well as mine if I might leave the house for five minutes.' "'That you may get away, or perhaps that you may conceal what you have stolen,' said I. And then, realising the dreadful position in which I was placed, I implored him to remember that not only my honour but that of one who was far greater than I was at stake; and that he threatened to raise a scandal which would convulse the nation. He might avert it all if he would but tell me what he had done with the three missing stones. "'You may as well face the matter,' said I; 'you have been caught in the act, and no confession could make your guilt more heinous. If you but make such reparation as is in your power, by telling us where the beryls are, all shall be forgiven and forgotten.' "'Keep your forgiveness for those who ask for it,' he answered, turning away from me with a sneer. I saw that he was too hardened for any words of mine to influence him. There was but one way for it. I called in the inspector and gave him into custody. A search was made at once not only of his person but of his room and of every portion of the house where he could possibly have concealed the gems; but no trace of them could be found, nor would the wretched boy open his mouth for all our persuasions and our threats. This morning he was removed to a cell, and I, after going through all the police formalities, have hurried round to you to implore you to use your skill in unravelling the matter. The police have openly confessed that they can at present make nothing of it. You may go to any expense which you think necessary. I have already offered a reward of 1000 pounds. My God, what shall I do! I have lost my honour, my gems, and my son in one night. Oh, what shall I do!" He put a hand on either side of his head and rocked himself to and fro, droning to himself like a child whose grief has got beyond words. Sherlock Holmes sat silent for some few minutes, with his brows knitted and his eyes fixed upon the fire. "Do you receive much company?" he asked. "None save my partner with his family and an occasional friend of Arthur's. Sir George Burnwell has been several times lately. No one else, I think." "Do you go out much in society?" "Arthur does. Mary and I stay at home. We neither of us care for it." "That is unusual in a young girl." "She is of a quiet nature. Besides, she is not so very young. She is four-and-twenty." "This matter, from what you say, seems to have been a shock to her also." "Terrible! She is even more affected than I." "You have neither of you any doubt as to your son's guilt?" "How can we have when I saw him with my own eyes with the coronet in his hands." "I hardly consider that a conclusive proof. Was the remainder of the coronet at all injured?" "Yes, it was twisted." "Do you not think, then, that he might have been trying to straighten it?" "God bless you! You are doing what you can for him and for me. But it is too heavy a task. What was he doing there at all? If his purpose were innocent, why did he not say so?" "Precisely. And if it were guilty, why did he not invent a lie? His silence appears to me to cut both ways. There are several singular points about the case. What did the police think of the noise which awoke you from your sleep?" "They considered that it might be caused by Arthur's closing his bedroom door." "A likely story! As if a man bent on felony would slam his door so as to wake a household. What did they say, then, of the disappearance of these gems?" "They are still sounding the planking and probing the furniture in the hope of finding them." "Have they thought of looking outside the house?" "Yes, they have shown extraordinary energy. The whole garden has already been minutely examined." "Now, my dear sir," said Holmes, "is it not obvious to you now that this matter really strikes very much deeper than either you or the police were at first inclined to think? It appeared to you to be a simple case; to me it seems exceedingly complex. Consider what is involved by your theory. You suppose that your son came down from his bed, went, at great risk, to your dressing-room, opened your bureau, took out your coronet, broke off by main force a small portion of it, went off to some other place, concealed three gems out of the thirty-nine, with such skill that nobody can find them, and then returned with the other thirty-six into the room in which he exposed himself to the greatest danger of being discovered. I ask you now, is such a theory tenable?" "But what other is there?" cried the banker with a gesture of despair. "If his motives were innocent, why does he not explain them?" "It is our task to find that out," replied Holmes; "so now, if you please, Mr. Holder, we will set off for Streatham together, and devote an hour to glancing a little more closely into details." My friend insisted upon my accompanying them in their expedition, which I was eager enough to do, for my curiosity and sympathy were deeply stirred by the story to which we had listened. I confess that the guilt of the banker's son appeared to me to be as obvious as it did to his unhappy father, but still I had such faith in Holmes' judgment that I felt that there must be some grounds for hope as long as he was dissatisfied with the accepted explanation. He hardly spoke a word the whole way out to the southern suburb, but sat with his chin upon his breast and his hat drawn over his eyes, sunk in the deepest thought. Our client appeared to have taken fresh heart at the little glimpse of hope which had been presented to him, and he even broke into a desultory chat with me over his business affairs. A short railway journey and a shorter walk brought us to Fairbank, the modest residence of the great financier. Fairbank was a good-sized square house of white stone, standing back a little from the road. A double carriage-sweep, with a snow-clad lawn, stretched down in front to two large iron gates which closed the entrance. On the right side was a small wooden thicket, which led into a narrow path between two neat hedges stretching from the road to the kitchen door, and forming the tradesmen's entrance. On the left ran a lane which led to the stables, and was not itself within the grounds at all, being a public, though little used, thoroughfare. Holmes left us standing at the door and walked slowly all round the house, across the front, down the tradesmen's path, and so round by the garden behind into the stable lane. So long was he that Mr. Holder and I went into the dining-room and waited by the fire until he should return. We were sitting there in silence when the door opened and a young lady came in. She was rather above the middle height, slim, with dark hair and eyes, which seemed the darker against the absolute pallor of her skin. I do not think that I have ever seen such deadly paleness in a woman's face. Her lips, too, were bloodless, but her eyes were flushed with crying. As she swept silently into the room she impressed me with a greater sense of grief than the banker had done in the morning, and it was the more striking in her as she was evidently a woman of strong character, with immense capacity for self-restraint. Disregarding my presence, she went straight to her uncle and passed her hand over his head with a sweet womanly caress. "You have given orders that Arthur should be liberated, have you not, dad?" she asked. "No, no, my girl, the matter must be probed to the bottom." "But I am so sure that he is innocent. You know what woman's instincts are. I know that he has done no harm and that you will be sorry for having acted so harshly." "Why is he silent, then, if he is innocent?" "Who knows? Perhaps because he was so angry that you should suspect him." "How could I help suspecting him, when I actually saw him with the coronet in his hand?" "Oh, but he had only picked it up to look at it. Oh, do, do take my word for it that he is innocent. Let the matter drop and say no more. It is so dreadful to think of our dear Arthur in prison!" "I shall never let it drop until the gems are found--never, Mary! Your affection for Arthur blinds you as to the awful consequences to me. Far from hushing the thing up, I have brought a gentleman down from London to inquire more deeply into it." "This gentleman?" she asked, facing round to me. "No, his friend. He wished us to leave him alone. He is round in the stable lane now." "The stable lane?" She raised her dark eyebrows. "What can he hope to find there? Ah! this, I suppose, is he. I trust, sir, that you will succeed in proving, what I feel sure is the truth, that my cousin Arthur is innocent of this crime." "I fully share your opinion, and I trust, with you, that we may prove it," returned Holmes, going back to the mat to knock the snow from his shoes. "I believe I have the honour of addressing Miss Mary Holder. Might I ask you a question or two?" "Pray do, sir, if it may help to clear this horrible affair up." "You heard nothing yourself last night?" "Nothing, until my uncle here began to speak loudly. I heard that, and I came down." "You shut up the windows and doors the night before. Did you fasten all the windows?" "Yes." "Were they all fastened this morning?" "Yes." "You have a maid who has a sweetheart? I think that you remarked to your uncle last night that she had been out to see him?" "Yes, and she was the girl who waited in the drawing-room, and who may have heard uncle's remarks about the coronet." "I see. You infer that she may have gone out to tell her sweetheart, and that the two may have planned the robbery." "But what is the good of all these vague theories," cried the banker impatiently, "when I have told you that I saw Arthur with the coronet in his hands?" "Wait a little, Mr. Holder. We must come back to that. About this girl, Miss Holder. You saw her return by the kitchen door, I presume?" "Yes; when I went to see if the door was fastened for the night I met her slipping in. I saw the man, too, in the gloom." "Do you know him?" "Oh, yes! he is the green-grocer who brings our vegetables round. His name is Francis Prosper." "He stood," said Holmes, "to the left of the door--that is to say, farther up the path than is necessary to reach the door?" "Yes, he did." "And he is a man with a wooden leg?" Something like fear sprang up in the young lady's expressive black eyes. "Why, you are like a magician," said she. "How do you know that?" She smiled, but there was no answering smile in Holmes' thin, eager face. "I should be very glad now to go upstairs," said he. "I shall probably wish to go over the outside of the house again. Perhaps I had better take a look at the lower windows before I go up." He walked swiftly round from one to the other, pausing only at the large one which looked from the hall onto the stable lane. This he opened and made a very careful examination of the sill with his powerful magnifying lens. "Now we shall go upstairs," said he at last. The banker's dressing-room was a plainly furnished little chamber, with a grey carpet, a large bureau, and a long mirror. Holmes went to the bureau first and looked hard at the lock. "Which key was used to open it?" he asked. "That which my son himself indicated--that of the cupboard of the lumber-room." "Have you it here?" "That is it on the dressing-table." Sherlock Holmes took it up and opened the bureau. "It is a noiseless lock," said he. "It is no wonder that it did not wake you. This case, I presume, contains the coronet. We must have a look at it." He opened the case, and taking out the diadem he laid it upon the table. It was a magnificent specimen of the jeweller's art, and the thirty-six stones were the finest that I have ever seen. At one side of the coronet was a cracked edge, where a corner holding three gems had been torn away. "Now, Mr. Holder," said Holmes, "here is the corner which corresponds to that which has been so unfortunately lost. Might I beg that you will break it off." The banker recoiled in horror. "I should not dream of trying," said he. "Then I will." Holmes suddenly bent his strength upon it, but without result. "I feel it give a little," said he; "but, though I am exceptionally strong in the fingers, it would take me all my time to break it. An ordinary man could not do it. Now, what do you think would happen if I did break it, Mr. Holder? There would be a noise like a pistol shot. Do you tell me that all this happened within a few yards of your bed and that you heard nothing of it?" "I do not know what to think. It is all dark to me." "But perhaps it may grow lighter as we go. What do you think, Miss Holder?" "I confess that I still share my uncle's perplexity." "Your son had no shoes or slippers on when you saw him?" "He had nothing on save only his trousers and shirt." "Thank you. We have certainly been favoured with extraordinary luck during this inquiry, and it will be entirely our own fault if we do not succeed in clearing the matter up. With your permission, Mr. Holder, I shall now continue my investigations outside." He went alone, at his own request, for he explained that any unnecessary footmarks might make his task more difficult. For an hour or more he was at work, returning at last with his feet heavy with snow and his features as inscrutable as ever. "I think that I have seen now all that there is to see, Mr. Holder," said he; "I can serve you best by returning to my rooms." "But the gems, Mr. Holmes. Where are they?" "I cannot tell." The banker wrung his hands. "I shall never see them again!" he cried. "And my son? You give me hopes?" "My opinion is in no way altered." "Then, for God's sake, what was this dark business which was acted in my house last night?" "If you can call upon me at my Baker Street rooms to-morrow morning between nine and ten I shall be happy to do what I can to make it clearer. I understand that you give me carte blanche to act for you, provided only that I get back the gems, and that you place no limit on the sum I may draw." "I would give my fortune to have them back." "Very good. I shall look into the matter between this and then. Good-bye; it is just possible that I may have to come over here again before evening." It was obvious to me that my companion's mind was now made up about the case, although what his conclusions were was more than I could even dimly imagine. Several times during our homeward journey I endeavoured to sound him upon the point, but he always glided away to some other topic, until at last I gave it over in despair. It was not yet three when we found ourselves in our rooms once more. He hurried to his chamber and was down again in a few minutes dressed as a common loafer. With his collar turned up, his shiny, seedy coat, his red cravat, and his worn boots, he was a perfect sample of the class. "I think that this should do," said he, glancing into the glass above the fireplace. "I only wish that you could come with me, Watson, but I fear that it won't do. I may be on the trail in this matter, or I may be following a will-o'-the-wisp, but I shall soon know which it is. I hope that I may be back in a few hours." He cut a slice of beef from the joint upon the sideboard, sandwiched it between two rounds of bread, and thrusting this rude meal into his pocket he started off upon his expedition. I had just finished my tea when he returned, evidently in excellent spirits, swinging an old elastic-sided boot in his hand. He chucked it down into a corner and helped himself to a cup of tea. "I only looked in as I passed," said he. "I am going right on." "Where to?" "Oh, to the other side of the West End. It may be some time before I get back. Don't wait up for me in case I should be late." "How are you getting on?" "Oh, so so. Nothing to complain of. I have been out to Streatham since I saw you last, but I did not call at the house. It is a very sweet little problem, and I would not have missed it for a good deal. However, I must not sit gossiping here, but must get these disreputable clothes off and return to my highly respectable self." I could see by his manner that he had stronger reasons for satisfaction than his words alone would imply. His eyes twinkled, and there was even a touch of colour upon his sallow cheeks. He hastened upstairs, and a few minutes later I heard the slam of the hall door, which told me that he was off once more upon his congenial hunt. I waited until midnight, but there was no sign of his return, so I retired to my room. It was no uncommon thing for him to be away for days and nights on end when he was hot upon a scent, so that his lateness caused me no surprise. I do not know at what hour he came in, but when I came down to breakfast in the morning there he was with a cup of coffee in one hand and the paper in the other, as fresh and trim as possible. "You will excuse my beginning without you, Watson," said he, "but you remember that our client has rather an early appointment this morning." "Why, it is after nine now," I answered. "I should not be surprised if that were he. I thought I heard a ring." It was, indeed, our friend the financier. I was shocked by the change which had come over him, for his face which was naturally of a broad and massive mould, was now pinched and fallen in, while his hair seemed to me at least a shade whiter. He entered with a weariness and lethargy which was even more painful than his violence of the morning before, and he dropped heavily into the armchair which I pushed forward for him. "I do not know what I have done to be so severely tried," said he. "Only two days ago I was a happy and prosperous man, without a care in the world. Now I am left to a lonely and dishonoured age. One sorrow comes close upon the heels of another. My niece, Mary, has deserted me." "Deserted you?" "Yes. Her bed this morning had not been slept in, her room was empty, and a note for me lay upon the hall table. I had said to her last night, in sorrow and not in anger, that if she had married my boy all might have been well with him. Perhaps it was thoughtless of me to say so. It is to that remark that she refers in this note: "'MY DEAREST UNCLE:--I feel that I have brought trouble upon you, and that if I had acted differently this terrible misfortune might never have occurred. I cannot, with this thought in my mind, ever again be happy under your roof, and I feel that I must leave you forever. Do not worry about my future, for that is provided for; and, above all, do not search for me, for it will be fruitless labour and an ill-service to me. In life or in death, I am ever your loving,--MARY.' "What could she mean by that note, Mr. Holmes? Do you think it points to suicide?" "No, no, nothing of the kind. It is perhaps the best possible solution. I trust, Mr. Holder, that you are nearing the end of your troubles." "Ha! You say so! You have heard something, Mr. Holmes; you have learned something! Where are the gems?" "You would not think 1000 pounds apiece an excessive sum for them?" "I would pay ten." "That would be unnecessary. Three thousand will cover the matter. And there is a little reward, I fancy. Have you your check-book? Here is a pen. Better make it out for 4000 pounds." With a dazed face the banker made out the required check. Holmes walked over to his desk, took out a little triangular piece of gold with three gems in it, and threw it down upon the table. With a shriek of joy our client clutched it up. "You have it!" he gasped. "I am saved! I am saved!" The reaction of joy was as passionate as his grief had been, and he hugged his recovered gems to his bosom. "There is one other thing you owe, Mr. Holder," said Sherlock Holmes rather sternly. "Owe!" He caught up a pen. "Name the sum, and I will pay it." "No, the debt is not to me. You owe a very humble apology to that noble lad, your son, who has carried himself in this matter as I should be proud to see my own son do, should I ever chance to have one." "Then it was not Arthur who took them?" "I told you yesterday, and I repeat to-day, that it was not." "You are sure of it! Then let us hurry to him at once to let him know that the truth is known." "He knows it already. When I had cleared it all up I had an interview with him, and finding that he would not tell me the story, I told it to him, on which he had to confess that I was right and to add the very few details which were not yet quite clear to me. Your news of this morning, however, may open his lips." "For heaven's sake, tell me, then, what is this extraordinary mystery!" "I will do so, and I will show you the steps by which I reached it. And let me say to you, first, that which it is hardest for me to say and for you to hear: there has been an understanding between Sir George Burnwell and your niece Mary. They have now fled together." "My Mary? Impossible!" "It is unfortunately more than possible; it is certain. Neither you nor your son knew the true character of this man when you admitted him into your family circle. He is one of the most dangerous men in England--a ruined gambler, an absolutely desperate villain, a man without heart or conscience. Your niece knew nothing of such men. When he breathed his vows to her, as he had done to a hundred before her, she flattered herself that she alone had touched his heart. The devil knows best what he said, but at least she became his tool and was in the habit of seeing him nearly every evening." "I cannot, and I will not, believe it!" cried the banker with an ashen face. "I will tell you, then, what occurred in your house last night. Your niece, when you had, as she thought, gone to your room, slipped down and talked to her lover through the window which leads into the stable lane. His footmarks had pressed right through the snow, so long had he stood there. She told him of the coronet. His wicked lust for gold kindled at the news, and he bent her to his will. I have no doubt that she loved you, but there are women in whom the love of a lover extinguishes all other loves, and I think that she must have been one. She had hardly listened to his instructions when she saw you coming downstairs, on which she closed the window rapidly and told you about one of the servants' escapade with her wooden-legged lover, which was all perfectly true. "Your boy, Arthur, went to bed after his interview with you but he slept badly on account of his uneasiness about his club debts. In the middle of the night he heard a soft tread pass his door, so he rose and, looking out, was surprised to see his cousin walking very stealthily along the passage until she disappeared into your dressing-room. Petrified with astonishment, the lad slipped on some clothes and waited there in the dark to see what would come of this strange affair. Presently she emerged from the room again, and in the light of the passage-lamp your son saw that she carried the precious coronet in her hands. She passed down the stairs, and he, thrilling with horror, ran along and slipped behind the curtain near your door, whence he could see what passed in the hall beneath. He saw her stealthily open the window, hand out the coronet to someone in the gloom, and then closing it once more hurry back to her room, passing quite close to where he stood hid behind the curtain. "As long as she was on the scene he could not take any action without a horrible exposure of the woman whom he loved. But the instant that she was gone he realised how crushing a misfortune this would be for you, and how all-important it was to set it right. He rushed down, just as he was, in his bare feet, opened the window, sprang out into the snow, and ran down the lane, where he could see a dark figure in the moonlight. Sir George Burnwell tried to get away, but Arthur caught him, and there was a struggle between them, your lad tugging at one side of the coronet, and his opponent at the other. In the scuffle, your son struck Sir George and cut him over the eye. Then something suddenly snapped, and your son, finding that he had the coronet in his hands, rushed back, closed the window, ascended to your room, and had just observed that the coronet had been twisted in the struggle and was endeavouring to straighten it when you appeared upon the scene." "Is it possible?" gasped the banker. "You then roused his anger by calling him names at a moment when he felt that he had deserved your warmest thanks. He could not explain the true state of affairs without betraying one who certainly deserved little enough consideration at his hands. He took the more chivalrous view, however, and preserved her secret." "And that was why she shrieked and fainted when she saw the coronet," cried Mr. Holder. "Oh, my God! what a blind fool I have been! And his asking to be allowed to go out for five minutes! The dear fellow wanted to see if the missing piece were at the scene of the struggle. How cruelly I have misjudged him!" "When I arrived at the house," continued Holmes, "I at once went very carefully round it to observe if there were any traces in the snow which might help me. I knew that none had fallen since the evening before, and also that there had been a strong frost to preserve impressions. I passed along the tradesmen's path, but found it all trampled down and indistinguishable. Just beyond it, however, at the far side of the kitchen door, a woman had stood and talked with a man, whose round impressions on one side showed that he had a wooden leg. I could even tell that they had been disturbed, for the woman had run back swiftly to the door, as was shown by the deep toe and light heel marks, while Wooden-leg had waited a little, and then had gone away. I thought at the time that this might be the maid and her sweetheart, of whom you had already spoken to me, and inquiry showed it was so. I passed round the garden without seeing anything more than random tracks, which I took to be the police; but when I got into the stable lane a very long and complex story was written in the snow in front of me. "There was a double line of tracks of a booted man, and a second double line which I saw with delight belonged to a man with naked feet. I was at once convinced from what you had told me that the latter was your son. The first had walked both ways, but the other had run swiftly, and as his tread was marked in places over the depression of the boot, it was obvious that he had passed after the other. I followed them up and found they led to the hall window, where Boots had worn all the snow away while waiting. Then I walked to the other end, which was a hundred yards or more down the lane. I saw where Boots had faced round, where the snow was cut up as though there had been a struggle, and, finally, where a few drops of blood had fallen, to show me that I was not mistaken. Boots had then run down the lane, and another little smudge of blood showed that it was he who had been hurt. When he came to the highroad at the other end, I found that the pavement had been cleared, so there was an end to that clue. "On entering the house, however, I examined, as you remember, the sill and framework of the hall window with my lens, and I could at once see that someone had passed out. I could distinguish the outline of an instep where the wet foot had been placed in coming in. I was then beginning to be able to form an opinion as to what had occurred. A man had waited outside the window; someone had brought the gems; the deed had been overseen by your son; he had pursued the thief; had struggled with him; they had each tugged at the coronet, their united strength causing injuries which neither alone could have effected. He had returned with the prize, but had left a fragment in the grasp of his opponent. So far I was clear. The question now was, who was the man and who was it brought him the coronet? "It is an old maxim of mine that when you have excluded the impossible, whatever remains, however improbable, must be the truth. Now, I knew that it was not you who had brought it down, so there only remained your niece and the maids. But if it were the maids, why should your son allow himself to be accused in their place? There could be no possible reason. As he loved his cousin, however, there was an excellent explanation why he should retain her secret--the more so as the secret was a disgraceful one. When I remembered that you had seen her at that window, and how she had fainted on seeing the coronet again, my conjecture became a certainty. "And who could it be who was her confederate? A lover evidently, for who else could outweigh the love and gratitude which she must feel to you? I knew that you went out little, and that your circle of friends was a very limited one. But among them was Sir George Burnwell. I had heard of him before as being a man of evil reputation among women. It must have been he who wore those boots and retained the missing gems. Even though he knew that Arthur had discovered him, he might still flatter himself that he was safe, for the lad could not say a word without compromising his own family. "Well, your own good sense will suggest what measures I took next. I went in the shape of a loafer to Sir George's house, managed to pick up an acquaintance with his valet, learned that his master had cut his head the night before, and, finally, at the expense of six shillings, made all sure by buying a pair of his cast-off shoes. With these I journeyed down to Streatham and saw that they exactly fitted the tracks." "I saw an ill-dressed vagabond in the lane yesterday evening," said Mr. Holder. "Precisely. It was I. I found that I had my man, so I came home and changed my clothes. It was a delicate part which I had to play then, for I saw that a prosecution must be avoided to avert scandal, and I knew that so astute a villain would see that our hands were tied in the matter. I went and saw him. At first, of course, he denied everything. But when I gave him every particular that had occurred, he tried to bluster and took down a life-preserver from the wall. I knew my man, however, and I clapped a pistol to his head before he could strike. Then he became a little more reasonable. I told him that we would give him a price for the stones he held--1000 pounds apiece. That brought out the first signs of grief that he had shown. 'Why, dash it all!' said he, 'I've let them go at six hundred for the three!' I soon managed to get the address of the receiver who had them, on promising him that there would be no prosecution. Off I set to him, and after much chaffering I got our stones at 1000 pounds apiece. Then I looked in upon your son, told him that all was right, and eventually got to my bed about two o'clock, after what I may call a really hard day's work." "A day which has saved England from a great public scandal," said the banker, rising. "Sir, I cannot find words to thank you, but you shall not find me ungrateful for what you have done. Your skill has indeed exceeded all that I have heard of it. And now I must fly to my dear boy to apologise to him for the wrong which I have done him. As to what you tell me of poor Mary, it goes to my very heart. Not even your skill can inform me where she is now." "I think that we may safely say," returned Holmes, "that she is wherever Sir George Burnwell is. It is equally certain, too, that whatever her sins are, they will soon receive a more than sufficient punishment." XII. THE ADVENTURE OF THE COPPER BEECHES "To the man who loves art for its own sake," remarked Sherlock Holmes, tossing aside the advertisement sheet of the Daily Telegraph, "it is frequently in its least important and lowliest manifestations that the keenest pleasure is to be derived. It is pleasant to me to observe, Watson, that you have so far grasped this truth that in these little records of our cases which you have been good enough to draw up, and, I am bound to say, occasionally to embellish, you have given prominence not so much to the many causes célèbres and sensational trials in which I have figured but rather to those incidents which may have been trivial in themselves, but which have given room for those faculties of deduction and of logical synthesis which I have made my special province." "And yet," said I, smiling, "I cannot quite hold myself absolved from the charge of sensationalism which has been urged against my records." "You have erred, perhaps," he observed, taking up a glowing cinder with the tongs and lighting with it the long cherry-wood pipe which was wont to replace his clay when he was in a disputatious rather than a meditative mood--"you have erred perhaps in attempting to put colour and life into each of your statements instead of confining yourself to the task of placing upon record that severe reasoning from cause to effect which is really the only notable feature about the thing." "It seems to me that I have done you full justice in the matter," I remarked with some coldness, for I was repelled by the egotism which I had more than once observed to be a strong factor in my friend's singular character. "No, it is not selfishness or conceit," said he, answering, as was his wont, my thoughts rather than my words. "If I claim full justice for my art, it is because it is an impersonal thing--a thing beyond myself. Crime is common. Logic is rare. Therefore it is upon the logic rather than upon the crime that you should dwell. You have degraded what should have been a course of lectures into a series of tales." It was a cold morning of the early spring, and we sat after breakfast on either side of a cheery fire in the old room at Baker Street. A thick fog rolled down between the lines of dun-coloured houses, and the opposing windows loomed like dark, shapeless blurs through the heavy yellow wreaths. Our gas was lit and shone on the white cloth and glimmer of china and metal, for the table had not been cleared yet. Sherlock Holmes had been silent all the morning, dipping continuously into the advertisement columns of a succession of papers until at last, having apparently given up his search, he had emerged in no very sweet temper to lecture me upon my literary shortcomings. "At the same time," he remarked after a pause, during which he had sat puffing at his long pipe and gazing down into the fire, "you can hardly be open to a charge of sensationalism, for out of these cases which you have been so kind as to interest yourself in, a fair proportion do not treat of crime, in its legal sense, at all. The small matter in which I endeavoured to help the King of Bohemia, the singular experience of Miss Mary Sutherland, the problem connected with the man with the twisted lip, and the incident of the noble bachelor, were all matters which are outside the pale of the law. But in avoiding the sensational, I fear that you may have bordered on the trivial." "The end may have been so," I answered, "but the methods I hold to have been novel and of interest." "Pshaw, my dear fellow, what do the public, the great unobservant public, who could hardly tell a weaver by his tooth or a compositor by his left thumb, care about the finer shades of analysis and deduction! But, indeed, if you are trivial, I cannot blame you, for the days of the great cases are past. Man, or at least criminal man, has lost all enterprise and originality. As to my own little practice, it seems to be degenerating into an agency for recovering lost lead pencils and giving advice to young ladies from boarding-schools. I think that I have touched bottom at last, however. This note I had this morning marks my zero-point, I fancy. Read it!" He tossed a crumpled letter across to me. It was dated from Montague Place upon the preceding evening, and ran thus: "DEAR MR. HOLMES:--I am very anxious to consult you as to whether I should or should not accept a situation which has been offered to me as governess. I shall call at half-past ten to-morrow if I do not inconvenience you. Yours faithfully, "VIOLET HUNTER." "Do you know the young lady?" I asked. "Not I." "It is half-past ten now." "Yes, and I have no doubt that is her ring." "It may turn out to be of more interest than you think. You remember that the affair of the blue carbuncle, which appeared to be a mere whim at first, developed into a serious investigation. It may be so in this case, also." "Well, let us hope so. But our doubts will very soon be solved, for here, unless I am much mistaken, is the person in question." As he spoke the door opened and a young lady entered the room. She was plainly but neatly dressed, with a bright, quick face, freckled like a plover's egg, and with the brisk manner of a woman who has had her own way to make in the world. "You will excuse my troubling you, I am sure," said she, as my companion rose to greet her, "but I have had a very strange experience, and as I have no parents or relations of any sort from whom I could ask advice, I thought that perhaps you would be kind enough to tell me what I should do." "Pray take a seat, Miss Hunter. I shall be happy to do anything that I can to serve you." I could see that Holmes was favourably impressed by the manner and speech of his new client. He looked her over in his searching fashion, and then composed himself, with his lids drooping and his finger-tips together, to listen to her story. "I have been a governess for five years," said she, "in the family of Colonel Spence Munro, but two months ago the colonel received an appointment at Halifax, in Nova Scotia, and took his children over to America with him, so that I found myself without a situation. I advertised, and I answered advertisements, but without success. At last the little money which I had saved began to run short, and I was at my wit's end as to what I should do. "There is a well-known agency for governesses in the West End called Westaway's, and there I used to call about once a week in order to see whether anything had turned up which might suit me. Westaway was the name of the founder of the business, but it is really managed by Miss Stoper. She sits in her own little office, and the ladies who are seeking employment wait in an anteroom, and are then shown in one by one, when she consults her ledgers and sees whether she has anything which would suit them. "Well, when I called last week I was shown into the little office as usual, but I found that Miss Stoper was not alone. A prodigiously stout man with a very smiling face and a great heavy chin which rolled down in fold upon fold over his throat sat at her elbow with a pair of glasses on his nose, looking very earnestly at the ladies who entered. As I came in he gave quite a jump in his chair and turned quickly to Miss Stoper. "'That will do,' said he; 'I could not ask for anything better. Capital! capital!' He seemed quite enthusiastic and rubbed his hands together in the most genial fashion. He was such a comfortable-looking man that it was quite a pleasure to look at him. "'You are looking for a situation, miss?' he asked. "'Yes, sir.' "'As governess?' "'Yes, sir.' "'And what salary do you ask?' "'I had 4 pounds a month in my last place with Colonel Spence Munro.' "'Oh, tut, tut! sweating--rank sweating!' he cried, throwing his fat hands out into the air like a man who is in a boiling passion. 'How could anyone offer so pitiful a sum to a lady with such attractions and accomplishments?' "'My accomplishments, sir, may be less than you imagine,' said I. 'A little French, a little German, music, and drawing--' "'Tut, tut!' he cried. 'This is all quite beside the question. The point is, have you or have you not the bearing and deportment of a lady? There it is in a nutshell. If you have not, you are not fitted for the rearing of a child who may some day play a considerable part in the history of the country. But if you have why, then, how could any gentleman ask you to condescend to accept anything under the three figures? Your salary with me, madam, would commence at 100 pounds a year.' "You may imagine, Mr. Holmes, that to me, destitute as I was, such an offer seemed almost too good to be true. The gentleman, however, seeing perhaps the look of incredulity upon my face, opened a pocket-book and took out a note. "'It is also my custom,' said he, smiling in the most pleasant fashion until his eyes were just two little shining slits amid the white creases of his face, 'to advance to my young ladies half their salary beforehand, so that they may meet any little expenses of their journey and their wardrobe.' "It seemed to me that I had never met so fascinating and so thoughtful a man. As I was already in debt to my tradesmen, the advance was a great convenience, and yet there was something unnatural about the whole transaction which made me wish to know a little more before I quite committed myself. "'May I ask where you live, sir?' said I. "'Hampshire. Charming rural place. The Copper Beeches, five miles on the far side of Winchester. It is the most lovely country, my dear young lady, and the dearest old country-house.' "'And my duties, sir? I should be glad to know what they would be.' "'One child--one dear little romper just six years old. Oh, if you could see him killing cockroaches with a slipper! Smack! smack! smack! Three gone before you could wink!' He leaned back in his chair and laughed his eyes into his head again. "I was a little startled at the nature of the child's amusement, but the father's laughter made me think that perhaps he was joking. "'My sole duties, then,' I asked, 'are to take charge of a single child?' "'No, no, not the sole, not the sole, my dear young lady,' he cried. 'Your duty would be, as I am sure your good sense would suggest, to obey any little commands my wife might give, provided always that they were such commands as a lady might with propriety obey. You see no difficulty, heh?' "'I should be happy to make myself useful.' "'Quite so. In dress now, for example. We are faddy people, you know--faddy but kind-hearted. If you were asked to wear any dress which we might give you, you would not object to our little whim. Heh?' "'No,' said I, considerably astonished at his words. "'Or to sit here, or sit there, that would not be offensive to you?' "'Oh, no.' "'Or to cut your hair quite short before you come to us?' "I could hardly believe my ears. As you may observe, Mr. Holmes, my hair is somewhat luxuriant, and of a rather peculiar tint of chestnut. It has been considered artistic. I could not dream of sacrificing it in this offhand fashion. "'I am afraid that that is quite impossible,' said I. He had been watching me eagerly out of his small eyes, and I could see a shadow pass over his face as I spoke. "'I am afraid that it is quite essential,' said he. 'It is a little fancy of my wife's, and ladies' fancies, you know, madam, ladies' fancies must be consulted. And so you won't cut your hair?' "'No, sir, I really could not,' I answered firmly. "'Ah, very well; then that quite settles the matter. It is a pity, because in other respects you would really have done very nicely. In that case, Miss Stoper, I had best inspect a few more of your young ladies.' "The manageress had sat all this while busy with her papers without a word to either of us, but she glanced at me now with so much annoyance upon her face that I could not help suspecting that she had lost a handsome commission through my refusal. "'Do you desire your name to be kept upon the books?' she asked. "'If you please, Miss Stoper.' "'Well, really, it seems rather useless, since you refuse the most excellent offers in this fashion,' said she sharply. 'You can hardly expect us to exert ourselves to find another such opening for you. Good-day to you, Miss Hunter.' She struck a gong upon the table, and I was shown out by the page. "Well, Mr. Holmes, when I got back to my lodgings and found little enough in the cupboard, and two or three bills upon the table, I began to ask myself whether I had not done a very foolish thing. After all, if these people had strange fads and expected obedience on the most extraordinary matters, they were at least ready to pay for their eccentricity. Very few governesses in England are getting 100 pounds a year. Besides, what use was my hair to me? Many people are improved by wearing it short and perhaps I should be among the number. Next day I was inclined to think that I had made a mistake, and by the day after I was sure of it. I had almost overcome my pride so far as to go back to the agency and inquire whether the place was still open when I received this letter from the gentleman himself. I have it here and I will read it to you: "'The Copper Beeches, near Winchester. "'DEAR MISS HUNTER:--Miss Stoper has very kindly given me your address, and I write from here to ask you whether you have reconsidered your decision. My wife is very anxious that you should come, for she has been much attracted by my description of you. We are willing to give 30 pounds a quarter, or 120 pounds a year, so as to recompense you for any little inconvenience which our fads may cause you. They are not very exacting, after all. My wife is fond of a particular shade of electric blue and would like you to wear such a dress indoors in the morning. You need not, however, go to the expense of purchasing one, as we have one belonging to my dear daughter Alice (now in Philadelphia), which would, I should think, fit you very well. Then, as to sitting here or there, or amusing yourself in any manner indicated, that need cause you no inconvenience. As regards your hair, it is no doubt a pity, especially as I could not help remarking its beauty during our short interview, but I am afraid that I must remain firm upon this point, and I only hope that the increased salary may recompense you for the loss. Your duties, as far as the child is concerned, are very light. Now do try to come, and I shall meet you with the dog-cart at Winchester. Let me know your train. Yours faithfully, JEPHRO RUCASTLE.' "That is the letter which I have just received, Mr. Holmes, and my mind is made up that I will accept it. I thought, however, that before taking the final step I should like to submit the whole matter to your consideration." "Well, Miss Hunter, if your mind is made up, that settles the question," said Holmes, smiling. "But you would not advise me to refuse?" "I confess that it is not the situation which I should like to see a sister of mine apply for." "What is the meaning of it all, Mr. Holmes?" "Ah, I have no data. I cannot tell. Perhaps you have yourself formed some opinion?" "Well, there seems to me to be only one possible solution. Mr. Rucastle seemed to be a very kind, good-natured man. Is it not possible that his wife is a lunatic, that he desires to keep the matter quiet for fear she should be taken to an asylum, and that he humours her fancies in every way in order to prevent an outbreak?" "That is a possible solution--in fact, as matters stand, it is the most probable one. But in any case it does not seem to be a nice household for a young lady." "But the money, Mr. Holmes, the money!" "Well, yes, of course the pay is good--too good. That is what makes me uneasy. Why should they give you 120 pounds a year, when they could have their pick for 40 pounds? There must be some strong reason behind." "I thought that if I told you the circumstances you would understand afterwards if I wanted your help. I should feel so much stronger if I felt that you were at the back of me." "Oh, you may carry that feeling away with you. I assure you that your little problem promises to be the most interesting which has come my way for some months. There is something distinctly novel about some of the features. If you should find yourself in doubt or in danger--" "Danger! What danger do you foresee?" Holmes shook his head gravely. "It would cease to be a danger if we could define it," said he. "But at any time, day or night, a telegram would bring me down to your help." "That is enough." She rose briskly from her chair with the anxiety all swept from her face. "I shall go down to Hampshire quite easy in my mind now. I shall write to Mr. Rucastle at once, sacrifice my poor hair to-night, and start for Winchester to-morrow." With a few grateful words to Holmes she bade us both good-night and bustled off upon her way. "At least," said I as we heard her quick, firm steps descending the stairs, "she seems to be a young lady who is very well able to take care of herself." "And she would need to be," said Holmes gravely. "I am much mistaken if we do not hear from her before many days are past." It was not very long before my friend's prediction was fulfilled. A fortnight went by, during which I frequently found my thoughts turning in her direction and wondering what strange side-alley of human experience this lonely woman had strayed into. The unusual salary, the curious conditions, the light duties, all pointed to something abnormal, though whether a fad or a plot, or whether the man were a philanthropist or a villain, it was quite beyond my powers to determine. As to Holmes, I observed that he sat frequently for half an hour on end, with knitted brows and an abstracted air, but he swept the matter away with a wave of his hand when I mentioned it. "Data! data! data!" he cried impatiently. "I can't make bricks without clay." And yet he would always wind up by muttering that no sister of his should ever have accepted such a situation. The telegram which we eventually received came late one night just as I was thinking of turning in and Holmes was settling down to one of those all-night chemical researches which he frequently indulged in, when I would leave him stooping over a retort and a test-tube at night and find him in the same position when I came down to breakfast in the morning. He opened the yellow envelope, and then, glancing at the message, threw it across to me. "Just look up the trains in Bradshaw," said he, and turned back to his chemical studies. The summons was a brief and urgent one. "Please be at the Black Swan Hotel at Winchester at midday to-morrow," it said. "Do come! I am at my wit's end. HUNTER." "Will you come with me?" asked Holmes, glancing up. "I should wish to." "Just look it up, then." "There is a train at half-past nine," said I, glancing over my Bradshaw. "It is due at Winchester at 11:30." "That will do very nicely. Then perhaps I had better postpone my analysis of the acetones, as we may need to be at our best in the morning." By eleven o'clock the next day we were well upon our way to the old English capital. Holmes had been buried in the morning papers all the way down, but after we had passed the Hampshire border he threw them down and began to admire the scenery. It was an ideal spring day, a light blue sky, flecked with little fleecy white clouds drifting across from west to east. The sun was shining very brightly, and yet there was an exhilarating nip in the air, which set an edge to a man's energy. All over the countryside, away to the rolling hills around Aldershot, the little red and grey roofs of the farm-steadings peeped out from amid the light green of the new foliage. "Are they not fresh and beautiful?" I cried with all the enthusiasm of a man fresh from the fogs of Baker Street. But Holmes shook his head gravely. "Do you know, Watson," said he, "that it is one of the curses of a mind with a turn like mine that I must look at everything with reference to my own special subject. You look at these scattered houses, and you are impressed by their beauty. I look at them, and the only thought which comes to me is a feeling of their isolation and of the impunity with which crime may be committed there." "Good heavens!" I cried. "Who would associate crime with these dear old homesteads?" "They always fill me with a certain horror. It is my belief, Watson, founded upon my experience, that the lowest and vilest alleys in London do not present a more dreadful record of sin than does the smiling and beautiful countryside." "You horrify me!" "But the reason is very obvious. The pressure of public opinion can do in the town what the law cannot accomplish. There is no lane so vile that the scream of a tortured child, or the thud of a drunkard's blow, does not beget sympathy and indignation among the neighbours, and then the whole machinery of justice is ever so close that a word of complaint can set it going, and there is but a step between the crime and the dock. But look at these lonely houses, each in its own fields, filled for the most part with poor ignorant folk who know little of the law. Think of the deeds of hellish cruelty, the hidden wickedness which may go on, year in, year out, in such places, and none the wiser. Had this lady who appeals to us for help gone to live in Winchester, I should never have had a fear for her. It is the five miles of country which makes the danger. Still, it is clear that she is not personally threatened." "No. If she can come to Winchester to meet us she can get away." "Quite so. She has her freedom." "What CAN be the matter, then? Can you suggest no explanation?" "I have devised seven separate explanations, each of which would cover the facts as far as we know them. But which of these is correct can only be determined by the fresh information which we shall no doubt find waiting for us. Well, there is the tower of the cathedral, and we shall soon learn all that Miss Hunter has to tell." The Black Swan is an inn of repute in the High Street, at no distance from the station, and there we found the young lady waiting for us. She had engaged a sitting-room, and our lunch awaited us upon the table. "I am so delighted that you have come," she said earnestly. "It is so very kind of you both; but indeed I do not know what I should do. Your advice will be altogether invaluable to me." "Pray tell us what has happened to you." "I will do so, and I must be quick, for I have promised Mr. Rucastle to be back before three. I got his leave to come into town this morning, though he little knew for what purpose." "Let us have everything in its due order." Holmes thrust his long thin legs out towards the fire and composed himself to listen. "In the first place, I may say that I have met, on the whole, with no actual ill-treatment from Mr. and Mrs. Rucastle. It is only fair to them to say that. But I cannot understand them, and I am not easy in my mind about them." "What can you not understand?" "Their reasons for their conduct. But you shall have it all just as it occurred. When I came down, Mr. Rucastle met me here and drove me in his dog-cart to the Copper Beeches. It is, as he said, beautifully situated, but it is not beautiful in itself, for it is a large square block of a house, whitewashed, but all stained and streaked with damp and bad weather. There are grounds round it, woods on three sides, and on the fourth a field which slopes down to the Southampton highroad, which curves past about a hundred yards from the front door. This ground in front belongs to the house, but the woods all round are part of Lord Southerton's preserves. A clump of copper beeches immediately in front of the hall door has given its name to the place. "I was driven over by my employer, who was as amiable as ever, and was introduced by him that evening to his wife and the child. There was no truth, Mr. Holmes, in the conjecture which seemed to us to be probable in your rooms at Baker Street. Mrs. Rucastle is not mad. I found her to be a silent, pale-faced woman, much younger than her husband, not more than thirty, I should think, while he can hardly be less than forty-five. From their conversation I have gathered that they have been married about seven years, that he was a widower, and that his only child by the first wife was the daughter who has gone to Philadelphia. Mr. Rucastle told me in private that the reason why she had left them was that she had an unreasoning aversion to her stepmother. As the daughter could not have been less than twenty, I can quite imagine that her position must have been uncomfortable with her father's young wife. "Mrs. Rucastle seemed to me to be colourless in mind as well as in feature. She impressed me neither favourably nor the reverse. She was a nonentity. It was easy to see that she was passionately devoted both to her husband and to her little son. Her light grey eyes wandered continually from one to the other, noting every little want and forestalling it if possible. He was kind to her also in his bluff, boisterous fashion, and on the whole they seemed to be a happy couple. And yet she had some secret sorrow, this woman. She would often be lost in deep thought, with the saddest look upon her face. More than once I have surprised her in tears. I have thought sometimes that it was the disposition of her child which weighed upon her mind, for I have never met so utterly spoiled and so ill-natured a little creature. He is small for his age, with a head which is quite disproportionately large. His whole life appears to be spent in an alternation between savage fits of passion and gloomy intervals of sulking. Giving pain to any creature weaker than himself seems to be his one idea of amusement, and he shows quite remarkable talent in planning the capture of mice, little birds, and insects. But I would rather not talk about the creature, Mr. Holmes, and, indeed, he has little to do with my story." "I am glad of all details," remarked my friend, "whether they seem to you to be relevant or not." "I shall try not to miss anything of importance. The one unpleasant thing about the house, which struck me at once, was the appearance and conduct of the servants. There are only two, a man and his wife. Toller, for that is his name, is a rough, uncouth man, with grizzled hair and whiskers, and a perpetual smell of drink. Twice since I have been with them he has been quite drunk, and yet Mr. Rucastle seemed to take no notice of it. His wife is a very tall and strong woman with a sour face, as silent as Mrs. Rucastle and much less amiable. They are a most unpleasant couple, but fortunately I spend most of my time in the nursery and my own room, which are next to each other in one corner of the building. "For two days after my arrival at the Copper Beeches my life was very quiet; on the third, Mrs. Rucastle came down just after breakfast and whispered something to her husband. "'Oh, yes,' said he, turning to me, 'we are very much obliged to you, Miss Hunter, for falling in with our whims so far as to cut your hair. I assure you that it has not detracted in the tiniest iota from your appearance. We shall now see how the electric-blue dress will become you. You will find it laid out upon the bed in your room, and if you would be so good as to put it on we should both be extremely obliged.' "The dress which I found waiting for me was of a peculiar shade of blue. It was of excellent material, a sort of beige, but it bore unmistakable signs of having been worn before. It could not have been a better fit if I had been measured for it. Both Mr. and Mrs. Rucastle expressed a delight at the look of it, which seemed quite exaggerated in its vehemence. They were waiting for me in the drawing-room, which is a very large room, stretching along the entire front of the house, with three long windows reaching down to the floor. A chair had been placed close to the central window, with its back turned towards it. In this I was asked to sit, and then Mr. Rucastle, walking up and down on the other side of the room, began to tell me a series of the funniest stories that I have ever listened to. You cannot imagine how comical he was, and I laughed until I was quite weary. Mrs. Rucastle, however, who has evidently no sense of humour, never so much as smiled, but sat with her hands in her lap, and a sad, anxious look upon her face. After an hour or so, Mr. Rucastle suddenly remarked that it was time to commence the duties of the day, and that I might change my dress and go to little Edward in the nursery. "Two days later this same performance was gone through under exactly similar circumstances. Again I changed my dress, again I sat in the window, and again I laughed very heartily at the funny stories of which my employer had an immense répertoire, and which he told inimitably. Then he handed me a yellow-backed novel, and moving my chair a little sideways, that my own shadow might not fall upon the page, he begged me to read aloud to him. I read for about ten minutes, beginning in the heart of a chapter, and then suddenly, in the middle of a sentence, he ordered me to cease and to change my dress. "You can easily imagine, Mr. Holmes, how curious I became as to what the meaning of this extraordinary performance could possibly be. They were always very careful, I observed, to turn my face away from the window, so that I became consumed with the desire to see what was going on behind my back. At first it seemed to be impossible, but I soon devised a means. My hand-mirror had been broken, so a happy thought seized me, and I concealed a piece of the glass in my handkerchief. On the next occasion, in the midst of my laughter, I put my handkerchief up to my eyes, and was able with a little management to see all that there was behind me. I confess that I was disappointed. There was nothing. At least that was my first impression. At the second glance, however, I perceived that there was a man standing in the Southampton Road, a small bearded man in a grey suit, who seemed to be looking in my direction. The road is an important highway, and there are usually people there. This man, however, was leaning against the railings which bordered our field and was looking earnestly up. I lowered my handkerchief and glanced at Mrs. Rucastle to find her eyes fixed upon me with a most searching gaze. She said nothing, but I am convinced that she had divined that I had a mirror in my hand and had seen what was behind me. She rose at once. "'Jephro,' said she, 'there is an impertinent fellow upon the road there who stares up at Miss Hunter.' "'No friend of yours, Miss Hunter?' he asked. "'No, I know no one in these parts.' "'Dear me! How very impertinent! Kindly turn round and motion to him to go away.' "'Surely it would be better to take no notice.' "'No, no, we should have him loitering here always. Kindly turn round and wave him away like that.' "I did as I was told, and at the same instant Mrs. Rucastle drew down the blind. That was a week ago, and from that time I have not sat again in the window, nor have I worn the blue dress, nor seen the man in the road." "Pray continue," said Holmes. "Your narrative promises to be a most interesting one." "You will find it rather disconnected, I fear, and there may prove to be little relation between the different incidents of which I speak. On the very first day that I was at the Copper Beeches, Mr. Rucastle took me to a small outhouse which stands near the kitchen door. As we approached it I heard the sharp rattling of a chain, and the sound as of a large animal moving about. "'Look in here!' said Mr. Rucastle, showing me a slit between two planks. 'Is he not a beauty?' "I looked through and was conscious of two glowing eyes, and of a vague figure huddled up in the darkness. "'Don't be frightened,' said my employer, laughing at the start which I had given. 'It's only Carlo, my mastiff. I call him mine, but really old Toller, my groom, is the only man who can do anything with him. We feed him once a day, and not too much then, so that he is always as keen as mustard. Toller lets him loose every night, and God help the trespasser whom he lays his fangs upon. For goodness' sake don't you ever on any pretext set your foot over the threshold at night, for it's as much as your life is worth.' "The warning was no idle one, for two nights later I happened to look out of my bedroom window about two o'clock in the morning. It was a beautiful moonlight night, and the lawn in front of the house was silvered over and almost as bright as day. I was standing, rapt in the peaceful beauty of the scene, when I was aware that something was moving under the shadow of the copper beeches. As it emerged into the moonshine I saw what it was. It was a giant dog, as large as a calf, tawny tinted, with hanging jowl, black muzzle, and huge projecting bones. It walked slowly across the lawn and vanished into the shadow upon the other side. That dreadful sentinel sent a chill to my heart which I do not think that any burglar could have done. "And now I have a very strange experience to tell you. I had, as you know, cut off my hair in London, and I had placed it in a great coil at the bottom of my trunk. One evening, after the child was in bed, I began to amuse myself by examining the furniture of my room and by rearranging my own little things. There was an old chest of drawers in the room, the two upper ones empty and open, the lower one locked. I had filled the first two with my linen, and as I had still much to pack away I was naturally annoyed at not having the use of the third drawer. It struck me that it might have been fastened by a mere oversight, so I took out my bunch of keys and tried to open it. The very first key fitted to perfection, and I drew the drawer open. There was only one thing in it, but I am sure that you would never guess what it was. It was my coil of hair. "I took it up and examined it. It was of the same peculiar tint, and the same thickness. But then the impossibility of the thing obtruded itself upon me. How could my hair have been locked in the drawer? With trembling hands I undid my trunk, turned out the contents, and drew from the bottom my own hair. I laid the two tresses together, and I assure you that they were identical. Was it not extraordinary? Puzzle as I would, I could make nothing at all of what it meant. I returned the strange hair to the drawer, and I said nothing of the matter to the Rucastles as I felt that I had put myself in the wrong by opening a drawer which they had locked. "I am naturally observant, as you may have remarked, Mr. Holmes, and I soon had a pretty good plan of the whole house in my head. There was one wing, however, which appeared not to be inhabited at all. A door which faced that which led into the quarters of the Tollers opened into this suite, but it was invariably locked. One day, however, as I ascended the stair, I met Mr. Rucastle coming out through this door, his keys in his hand, and a look on his face which made him a very different person to the round, jovial man to whom I was accustomed. His cheeks were red, his brow was all crinkled with anger, and the veins stood out at his temples with passion. He locked the door and hurried past me without a word or a look. "This aroused my curiosity, so when I went out for a walk in the grounds with my charge, I strolled round to the side from which I could see the windows of this part of the house. There were four of them in a row, three of which were simply dirty, while the fourth was shuttered up. They were evidently all deserted. As I strolled up and down, glancing at them occasionally, Mr. Rucastle came out to me, looking as merry and jovial as ever. "'Ah!' said he, 'you must not think me rude if I passed you without a word, my dear young lady. I was preoccupied with business matters.' "I assured him that I was not offended. 'By the way,' said I, 'you seem to have quite a suite of spare rooms up there, and one of them has the shutters up.' "He looked surprised and, as it seemed to me, a little startled at my remark. "'Photography is one of my hobbies,' said he. 'I have made my dark room up there. But, dear me! what an observant young lady we have come upon. Who would have believed it? Who would have ever believed it?' He spoke in a jesting tone, but there was no jest in his eyes as he looked at me. I read suspicion there and annoyance, but no jest. "Well, Mr. Holmes, from the moment that I understood that there was something about that suite of rooms which I was not to know, I was all on fire to go over them. It was not mere curiosity, though I have my share of that. It was more a feeling of duty--a feeling that some good might come from my penetrating to this place. They talk of woman's instinct; perhaps it was woman's instinct which gave me that feeling. At any rate, it was there, and I was keenly on the lookout for any chance to pass the forbidden door. "It was only yesterday that the chance came. I may tell you that, besides Mr. Rucastle, both Toller and his wife find something to do in these deserted rooms, and I once saw him carrying a large black linen bag with him through the door. Recently he has been drinking hard, and yesterday evening he was very drunk; and when I came upstairs there was the key in the door. I have no doubt at all that he had left it there. Mr. and Mrs. Rucastle were both downstairs, and the child was with them, so that I had an admirable opportunity. I turned the key gently in the lock, opened the door, and slipped through. "There was a little passage in front of me, unpapered and uncarpeted, which turned at a right angle at the farther end. Round this corner were three doors in a line, the first and third of which were open. They each led into an empty room, dusty and cheerless, with two windows in the one and one in the other, so thick with dirt that the evening light glimmered dimly through them. The centre door was closed, and across the outside of it had been fastened one of the broad bars of an iron bed, padlocked at one end to a ring in the wall, and fastened at the other with stout cord. The door itself was locked as well, and the key was not there. This barricaded door corresponded clearly with the shuttered window outside, and yet I could see by the glimmer from beneath it that the room was not in darkness. Evidently there was a skylight which let in light from above. As I stood in the passage gazing at the sinister door and wondering what secret it might veil, I suddenly heard the sound of steps within the room and saw a shadow pass backward and forward against the little slit of dim light which shone out from under the door. A mad, unreasoning terror rose up in me at the sight, Mr. Holmes. My overstrung nerves failed me suddenly, and I turned and ran--ran as though some dreadful hand were behind me clutching at the skirt of my dress. I rushed down the passage, through the door, and straight into the arms of Mr. Rucastle, who was waiting outside. "'So,' said he, smiling, 'it was you, then. I thought that it must be when I saw the door open.' "'Oh, I am so frightened!' I panted. "'My dear young lady! my dear young lady!'--you cannot think how caressing and soothing his manner was--'and what has frightened you, my dear young lady?' "But his voice was just a little too coaxing. He overdid it. I was keenly on my guard against him. "'I was foolish enough to go into the empty wing,' I answered. 'But it is so lonely and eerie in this dim light that I was frightened and ran out again. Oh, it is so dreadfully still in there!' "'Only that?' said he, looking at me keenly. "'Why, what did you think?' I asked. "'Why do you think that I lock this door?' "'I am sure that I do not know.' "'It is to keep people out who have no business there. Do you see?' He was still smiling in the most amiable manner. "'I am sure if I had known--' "'Well, then, you know now. And if you ever put your foot over that threshold again'--here in an instant the smile hardened into a grin of rage, and he glared down at me with the face of a demon--'I'll throw you to the mastiff.' "I was so terrified that I do not know what I did. I suppose that I must have rushed past him into my room. I remember nothing until I found myself lying on my bed trembling all over. Then I thought of you, Mr. Holmes. I could not live there longer without some advice. I was frightened of the house, of the man, of the woman, of the servants, even of the child. They were all horrible to me. If I could only bring you down all would be well. Of course I might have fled from the house, but my curiosity was almost as strong as my fears. My mind was soon made up. I would send you a wire. I put on my hat and cloak, went down to the office, which is about half a mile from the house, and then returned, feeling very much easier. A horrible doubt came into my mind as I approached the door lest the dog might be loose, but I remembered that Toller had drunk himself into a state of insensibility that evening, and I knew that he was the only one in the household who had any influence with the savage creature, or who would venture to set him free. I slipped in in safety and lay awake half the night in my joy at the thought of seeing you. I had no difficulty in getting leave to come into Winchester this morning, but I must be back before three o'clock, for Mr. and Mrs. Rucastle are going on a visit, and will be away all the evening, so that I must look after the child. Now I have told you all my adventures, Mr. Holmes, and I should be very glad if you could tell me what it all means, and, above all, what I should do." Holmes and I had listened spellbound to this extraordinary story. My friend rose now and paced up and down the room, his hands in his pockets, and an expression of the most profound gravity upon his face. "Is Toller still drunk?" he asked. "Yes. I heard his wife tell Mrs. Rucastle that she could do nothing with him." "That is well. And the Rucastles go out to-night?" "Yes." "Is there a cellar with a good strong lock?" "Yes, the wine-cellar." "You seem to me to have acted all through this matter like a very brave and sensible girl, Miss Hunter. Do you think that you could perform one more feat? I should not ask it of you if I did not think you a quite exceptional woman." "I will try. What is it?" "We shall be at the Copper Beeches by seven o'clock, my friend and I. The Rucastles will be gone by that time, and Toller will, we hope, be incapable. There only remains Mrs. Toller, who might give the alarm. If you could send her into the cellar on some errand, and then turn the key upon her, you would facilitate matters immensely." "I will do it." "Excellent! We shall then look thoroughly into the affair. Of course there is only one feasible explanation. You have been brought there to personate someone, and the real person is imprisoned in this chamber. That is obvious. As to who this prisoner is, I have no doubt that it is the daughter, Miss Alice Rucastle, if I remember right, who was said to have gone to America. You were chosen, doubtless, as resembling her in height, figure, and the colour of your hair. Hers had been cut off, very possibly in some illness through which she has passed, and so, of course, yours had to be sacrificed also. By a curious chance you came upon her tresses. The man in the road was undoubtedly some friend of hers--possibly her fiancé--and no doubt, as you wore the girl's dress and were so like her, he was convinced from your laughter, whenever he saw you, and afterwards from your gesture, that Miss Rucastle was perfectly happy, and that she no longer desired his attentions. The dog is let loose at night to prevent him from endeavouring to communicate with her. So much is fairly clear. The most serious point in the case is the disposition of the child." "What on earth has that to do with it?" I ejaculated. "My dear Watson, you as a medical man are continually gaining light as to the tendencies of a child by the study of the parents. Don't you see that the converse is equally valid. I have frequently gained my first real insight into the character of parents by studying their children. This child's disposition is abnormally cruel, merely for cruelty's sake, and whether he derives this from his smiling father, as I should suspect, or from his mother, it bodes evil for the poor girl who is in their power." "I am sure that you are right, Mr. Holmes," cried our client. "A thousand things come back to me which make me certain that you have hit it. Oh, let us lose not an instant in bringing help to this poor creature." "We must be circumspect, for we are dealing with a very cunning man. We can do nothing until seven o'clock. At that hour we shall be with you, and it will not be long before we solve the mystery." We were as good as our word, for it was just seven when we reached the Copper Beeches, having put up our trap at a wayside public-house. The group of trees, with their dark leaves shining like burnished metal in the light of the setting sun, were sufficient to mark the house even had Miss Hunter not been standing smiling on the door-step. "Have you managed it?" asked Holmes. A loud thudding noise came from somewhere downstairs. "That is Mrs. Toller in the cellar," said she. "Her husband lies snoring on the kitchen rug. Here are his keys, which are the duplicates of Mr. Rucastle's." "You have done well indeed!" cried Holmes with enthusiasm. "Now lead the way, and we shall soon see the end of this black business." We passed up the stair, unlocked the door, followed on down a passage, and found ourselves in front of the barricade which Miss Hunter had described. Holmes cut the cord and removed the transverse bar. Then he tried the various keys in the lock, but without success. No sound came from within, and at the silence Holmes' face clouded over. "I trust that we are not too late," said he. "I think, Miss Hunter, that we had better go in without you. Now, Watson, put your shoulder to it, and we shall see whether we cannot make our way in." It was an old rickety door and gave at once before our united strength. Together we rushed into the room. It was empty. There was no furniture save a little pallet bed, a small table, and a basketful of linen. The skylight above was open, and the prisoner gone. "There has been some villainy here," said Holmes; "this beauty has guessed Miss Hunter's intentions and has carried his victim off." "But how?" "Through the skylight. We shall soon see how he managed it." He swung himself up onto the roof. "Ah, yes," he cried, "here's the end of a long light ladder against the eaves. That is how he did it." "But it is impossible," said Miss Hunter; "the ladder was not there when the Rucastles went away." "He has come back and done it. I tell you that he is a clever and dangerous man. I should not be very much surprised if this were he whose step I hear now upon the stair. I think, Watson, that it would be as well for you to have your pistol ready." The words were hardly out of his mouth before a man appeared at the door of the room, a very fat and burly man, with a heavy stick in his hand. Miss Hunter screamed and shrunk against the wall at the sight of him, but Sherlock Holmes sprang forward and confronted him. "You villain!" said he, "where's your daughter?" The fat man cast his eyes round, and then up at the open skylight. "It is for me to ask you that," he shrieked, "you thieves! Spies and thieves! I have caught you, have I? You are in my power. I'll serve you!" He turned and clattered down the stairs as hard as he could go. "He's gone for the dog!" cried Miss Hunter. "I have my revolver," said I. "Better close the front door," cried Holmes, and we all rushed down the stairs together. We had hardly reached the hall when we heard the baying of a hound, and then a scream of agony, with a horrible worrying sound which it was dreadful to listen to. An elderly man with a red face and shaking limbs came staggering out at a side door. "My God!" he cried. "Someone has loosed the dog. It's not been fed for two days. Quick, quick, or it'll be too late!" Holmes and I rushed out and round the angle of the house, with Toller hurrying behind us. There was the huge famished brute, its black muzzle buried in Rucastle's throat, while he writhed and screamed upon the ground. Running up, I blew its brains out, and it fell over with its keen white teeth still meeting in the great creases of his neck. With much labour we separated them and carried him, living but horribly mangled, into the house. We laid him upon the drawing-room sofa, and having dispatched the sobered Toller to bear the news to his wife, I did what I could to relieve his pain. We were all assembled round him when the door opened, and a tall, gaunt woman entered the room. "Mrs. Toller!" cried Miss Hunter. "Yes, miss. Mr. Rucastle let me out when he came back before he went up to you. Ah, miss, it is a pity you didn't let me know what you were planning, for I would have told you that your pains were wasted." "Ha!" said Holmes, looking keenly at her. "It is clear that Mrs. Toller knows more about this matter than anyone else." "Yes, sir, I do, and I am ready enough to tell what I know." "Then, pray, sit down, and let us hear it for there are several points on which I must confess that I am still in the dark." "I will soon make it clear to you," said she; "and I'd have done so before now if I could ha' got out from the cellar. If there's police-court business over this, you'll remember that I was the one that stood your friend, and that I was Miss Alice's friend too. "She was never happy at home, Miss Alice wasn't, from the time that her father married again. She was slighted like and had no say in anything, but it never really became bad for her until after she met Mr. Fowler at a friend's house. As well as I could learn, Miss Alice had rights of her own by will, but she was so quiet and patient, she was, that she never said a word about them but just left everything in Mr. Rucastle's hands. He knew he was safe with her; but when there was a chance of a husband coming forward, who would ask for all that the law would give him, then her father thought it time to put a stop on it. He wanted her to sign a paper, so that whether she married or not, he could use her money. When she wouldn't do it, he kept on worrying her until she got brain-fever, and for six weeks was at death's door. Then she got better at last, all worn to a shadow, and with her beautiful hair cut off; but that didn't make no change in her young man, and he stuck to her as true as man could be." "Ah," said Holmes, "I think that what you have been good enough to tell us makes the matter fairly clear, and that I can deduce all that remains. Mr. Rucastle then, I presume, took to this system of imprisonment?" "Yes, sir." "And brought Miss Hunter down from London in order to get rid of the disagreeable persistence of Mr. Fowler." "That was it, sir." "But Mr. Fowler being a persevering man, as a good seaman should be, blockaded the house, and having met you succeeded by certain arguments, metallic or otherwise, in convincing you that your interests were the same as his." "Mr. Fowler was a very kind-spoken, free-handed gentleman," said Mrs. Toller serenely. "And in this way he managed that your good man should have no want of drink, and that a ladder should be ready at the moment when your master had gone out." "You have it, sir, just as it happened." "I am sure we owe you an apology, Mrs. Toller," said Holmes, "for you have certainly cleared up everything which puzzled us. And here comes the country surgeon and Mrs. Rucastle, so I think, Watson, that we had best escort Miss Hunter back to Winchester, as it seems to me that our locus standi now is rather a questionable one." And thus was solved the mystery of the sinister house with the copper beeches in front of the door. Mr. Rucastle survived, but was always a broken man, kept alive solely through the care of his devoted wife. They still live with their old servants, who probably know so much of Rucastle's past life that he finds it difficult to part from them. Mr. Fowler and Miss Rucastle were married, by special license, in Southampton the day after their flight, and he is now the holder of a government appointment in the island of Mauritius. As to Miss Violet Hunter, my friend Holmes, rather to my disappointment, manifested no further interest in her when once she had ceased to be the centre of one of his problems, and she is now the head of a private school at Walsall, where I believe that she has met with considerable success. End of the Project Gutenberg EBook of The Adventures of Sherlock Holmes, by Arthur Conan Doyle *** END OF THIS PROJECT GUTENBERG EBOOK THE ADVENTURES OF SHERLOCK HOLMES *** ***** This file should be named 1661-8.txt or 1661-8.zip ***** This and all associated files of various formats will be found in: http://www.gutenberg.org/1/6/6/1661/ Produced by an anonymous Project Gutenberg volunteer and Jose Menendez Updated editions will replace the previous one--the old editions will be renamed. Creating the works from public domain print editions means that no one owns a United States copyright in these works, so the Foundation (and you!) can copy and distribute it in the United States without permission and without paying copyright royalties. Special rules, set forth in the General Terms of Use part of this license, apply to copying and distributing Project Gutenberg-tm electronic works to protect the PROJECT GUTENBERG-tm concept and trademark. Project Gutenberg is a registered trademark, and may not be used if you charge for the eBooks, unless you receive specific permission. If you do not charge anything for copies of this eBook, complying with the rules is very easy. You may use this eBook for nearly any purpose such as creation of derivative works, reports, performances and research. They may be modified and printed and given away--you may do practically ANYTHING with public domain eBooks. Redistribution is subject to the trademark license, especially commercial redistribution. *** START: FULL LICENSE *** THE FULL PROJECT GUTENBERG LICENSE PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK To protect the Project Gutenberg-tm mission of promoting the free distribution of electronic works, by using or distributing this work (or any other work associated in any way with the phrase "Project Gutenberg"), you agree to comply with all the terms of the Full Project Gutenberg-tm License (available with this file or online at http://gutenberg.net/license). Section 1. General Terms of Use and Redistributing Project Gutenberg-tm electronic works 1.A. By reading or using any part of this Project Gutenberg-tm electronic work, you indicate that you have read, understand, agree to and accept all the terms of this license and intellectual property (trademark/copyright) agreement. If you do not agree to abide by all the terms of this agreement, you must cease using and return or destroy all copies of Project Gutenberg-tm electronic works in your possession. If you paid a fee for obtaining a copy of or access to a Project Gutenberg-tm electronic work and you do not agree to be bound by the terms of this agreement, you may obtain a refund from the person or entity to whom you paid the fee as set forth in paragraph 1.E.8. 1.B. "Project Gutenberg" is a registered trademark. It may only be used on or associated in any way with an electronic work by people who agree to be bound by the terms of this agreement. There are a few things that you can do with most Project Gutenberg-tm electronic works even without complying with the full terms of this agreement. See paragraph 1.C below. There are a lot of things you can do with Project Gutenberg-tm electronic works if you follow the terms of this agreement and help preserve free future access to Project Gutenberg-tm electronic works. See paragraph 1.E below. 1.C. The Project Gutenberg Literary Archive Foundation ("the Foundation" or PGLAF), owns a compilation copyright in the collection of Project Gutenberg-tm electronic works. Nearly all the individual works in the collection are in the public domain in the United States. If an individual work is in the public domain in the United States and you are located in the United States, we do not claim a right to prevent you from copying, distributing, performing, displaying or creating derivative works based on the work as long as all references to Project Gutenberg are removed. Of course, we hope that you will support the Project Gutenberg-tm mission of promoting free access to electronic works by freely sharing Project Gutenberg-tm works in compliance with the terms of this agreement for keeping the Project Gutenberg-tm name associated with the work. You can easily comply with the terms of this agreement by keeping this work in the same format with its attached full Project Gutenberg-tm License when you share it without charge with others. 1.D. The copyright laws of the place where you are located also govern what you can do with this work. Copyright laws in most countries are in a constant state of change. If you are outside the United States, check the laws of your country in addition to the terms of this agreement before downloading, copying, displaying, performing, distributing or creating derivative works based on this work or any other Project Gutenberg-tm work. The Foundation makes no representations concerning the copyright status of any work in any country outside the United States. 1.E. Unless you have removed all references to Project Gutenberg: 1.E.1. The following sentence, with active links to, or other immediate access to, the full Project Gutenberg-tm License must appear prominently whenever any copy of a Project Gutenberg-tm work (any work on which the phrase "Project Gutenberg" appears, or with which the phrase "Project Gutenberg" is associated) is accessed, displayed, performed, viewed, copied or distributed: This eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever. You may copy it, give it away or re-use it under the terms of the Project Gutenberg License included with this eBook or online at www.gutenberg.net 1.E.2. If an individual Project Gutenberg-tm electronic work is derived from the public domain (does not contain a notice indicating that it is posted with permission of the copyright holder), the work can be copied and distributed to anyone in the United States without paying any fees or charges. If you are redistributing or providing access to a work with the phrase "Project Gutenberg" associated with or appearing on the work, you must comply either with the requirements of paragraphs 1.E.1 through 1.E.7 or obtain permission for the use of the work and the Project Gutenberg-tm trademark as set forth in paragraphs 1.E.8 or 1.E.9. 1.E.3. If an individual Project Gutenberg-tm electronic work is posted with the permission of the copyright holder, your use and distribution must comply with both paragraphs 1.E.1 through 1.E.7 and any additional terms imposed by the copyright holder. Additional terms will be linked to the Project Gutenberg-tm License for all works posted with the permission of the copyright holder found at the beginning of this work. 1.E.4. Do not unlink or detach or remove the full Project Gutenberg-tm License terms from this work, or any files containing a part of this work or any other work associated with Project Gutenberg-tm. 1.E.5. Do not copy, display, perform, distribute or redistribute this electronic work, or any part of this electronic work, without prominently displaying the sentence set forth in paragraph 1.E.1 with active links or immediate access to the full terms of the Project Gutenberg-tm License. 1.E.6. You may convert to and distribute this work in any binary, compressed, marked up, nonproprietary or proprietary form, including any word processing or hypertext form. However, if you provide access to or distribute copies of a Project Gutenberg-tm work in a format other than "Plain Vanilla ASCII" or other format used in the official version posted on the official Project Gutenberg-tm web site (www.gutenberg.net), you must, at no additional cost, fee or expense to the user, provide a copy, a means of exporting a copy, or a means of obtaining a copy upon request, of the work in its original "Plain Vanilla ASCII" or other form. Any alternate format must include the full Project Gutenberg-tm License as specified in paragraph 1.E.1. 1.E.7. Do not charge a fee for access to, viewing, displaying, performing, copying or distributing any Project Gutenberg-tm works unless you comply with paragraph 1.E.8 or 1.E.9. 1.E.8. You may charge a reasonable fee for copies of or providing access to or distributing Project Gutenberg-tm electronic works provided that - You pay a royalty fee of 20% of the gross profits you derive from the use of Project Gutenberg-tm works calculated using the method you already use to calculate your applicable taxes. The fee is owed to the owner of the Project Gutenberg-tm trademark, but he has agreed to donate royalties under this paragraph to the Project Gutenberg Literary Archive Foundation. Royalty payments must be paid within 60 days following each date on which you prepare (or are legally required to prepare) your periodic tax returns. Royalty payments should be clearly marked as such and sent to the Project Gutenberg Literary Archive Foundation at the address specified in Section 4, "Information about donations to the Project Gutenberg Literary Archive Foundation." - You provide a full refund of any money paid by a user who notifies you in writing (or by e-mail) within 30 days of receipt that s/he does not agree to the terms of the full Project Gutenberg-tm License. You must require such a user to return or destroy all copies of the works possessed in a physical medium and discontinue all use of and all access to other copies of Project Gutenberg-tm works. - You provide, in accordance with paragraph 1.F.3, a full refund of any money paid for a work or a replacement copy, if a defect in the electronic work is discovered and reported to you within 90 days of receipt of the work. - You comply with all other terms of this agreement for free distribution of Project Gutenberg-tm works. 1.E.9. If you wish to charge a fee or distribute a Project Gutenberg-tm electronic work or group of works on different terms than are set forth in this agreement, you must obtain permission in writing from both the Project Gutenberg Literary Archive Foundation and Michael Hart, the owner of the Project Gutenberg-tm trademark. Contact the Foundation as set forth in Section 3 below. 1.F. 1.F.1. Project Gutenberg volunteers and employees expend considerable effort to identify, do copyright research on, transcribe and proofread public domain works in creating the Project Gutenberg-tm collection. Despite these efforts, Project Gutenberg-tm electronic works, and the medium on which they may be stored, may contain "Defects," such as, but not limited to, incomplete, inaccurate or corrupt data, transcription errors, a copyright or other intellectual property infringement, a defective or damaged disk or other medium, a computer virus, or computer codes that damage or cannot be read by your equipment. 1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the "Right of Replacement or Refund" described in paragraph 1.F.3, the Project Gutenberg Literary Archive Foundation, the owner of the Project Gutenberg-tm trademark, and any other party distributing a Project Gutenberg-tm electronic work under this agreement, disclaim all liability to you for damages, costs and expenses, including legal fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE PROVIDED IN PARAGRAPH 1.F.3. YOU AGREE THAT THE FOUNDATION, THE TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH DAMAGE. 1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a defect in this electronic work within 90 days of receiving it, you can receive a refund of the money (if any) you paid for it by sending a written explanation to the person you received the work from. If you received the work on a physical medium, you must return the medium with your written explanation. The person or entity that provided you with the defective work may elect to provide a replacement copy in lieu of a refund. If you received the work electronically, the person or entity providing it to you may choose to give you a second opportunity to receive the work electronically in lieu of a refund. If the second copy is also defective, you may demand a refund in writing without further opportunities to fix the problem. 1.F.4. Except for the limited right of replacement or refund set forth in paragraph 1.F.3, this work is provided to you 'AS-IS' WITH NO OTHER WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTIBILITY OR FITNESS FOR ANY PURPOSE. 1.F.5. Some states do not allow disclaimers of certain implied warranties or the exclusion or limitation of certain types of damages. If any disclaimer or limitation set forth in this agreement violates the law of the state applicable to this agreement, the agreement shall be interpreted to make the maximum disclaimer or limitation permitted by the applicable state law. The invalidity or unenforceability of any provision of this agreement shall not void the remaining provisions. 1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the trademark owner, any agent or employee of the Foundation, anyone providing copies of Project Gutenberg-tm electronic works in accordance with this agreement, and any volunteers associated with the production, promotion and distribution of Project Gutenberg-tm electronic works, harmless from all liability, costs and expenses, including legal fees, that arise directly or indirectly from any of the following which you do or cause to occur: (a) distribution of this or any Project Gutenberg-tm work, (b) alteration, modification, or additions or deletions to any Project Gutenberg-tm work, and (c) any Defect you cause. Section 2. Information about the Mission of Project Gutenberg-tm Project Gutenberg-tm is synonymous with the free distribution of electronic works in formats readable by the widest variety of computers including obsolete, old, middle-aged and new computers. It exists because of the efforts of hundreds of volunteers and donations from people in all walks of life. Volunteers and financial support to provide volunteers with the assistance they need are critical to reaching Project Gutenberg-tm's goals and ensuring that the Project Gutenberg-tm collection will remain freely available for generations to come. In 2001, the Project Gutenberg Literary Archive Foundation was created to provide a secure and permanent future for Project Gutenberg-tm and future generations. To learn more about the Project Gutenberg Literary Archive Foundation and how your efforts and donations can help, see Sections 3 and 4 and the Foundation web page at http://www.pglaf.org. Section 3. Information about the Project Gutenberg Literary Archive Foundation The Project Gutenberg Literary Archive Foundation is a non profit 501(c)(3) educational corporation organized under the laws of the state of Mississippi and granted tax exempt status by the Internal Revenue Service. The Foundation's EIN or federal tax identification number is 64-6221541. Its 501(c)(3) letter is posted at http://pglaf.org/fundraising. Contributions to the Project Gutenberg Literary Archive Foundation are tax deductible to the full extent permitted by U.S. federal laws and your state's laws. The Foundation's principal office is located at 4557 Melan Dr. S. Fairbanks, AK, 99712., but its volunteers and employees are scattered throughout numerous locations. Its business office is located at 809 North 1500 West, Salt Lake City, UT 84116, (801) 596-1887, email business@pglaf.org. Email contact links and up to date contact information can be found at the Foundation's web site and official page at http://pglaf.org For additional contact information: Dr. Gregory B. Newby Chief Executive and Director gbnewby@pglaf.org Section 4. Information about Donations to the Project Gutenberg Literary Archive Foundation Project Gutenberg-tm depends upon and cannot survive without wide spread public support and donations to carry out its mission of increasing the number of public domain and licensed works that can be freely distributed in machine readable form accessible by the widest array of equipment including outdated equipment. Many small donations ($1 to $5,000) are particularly important to maintaining tax exempt status with the IRS. The Foundation is committed to complying with the laws regulating charities and charitable donations in all 50 states of the United States. Compliance requirements are not uniform and it takes a considerable effort, much paperwork and many fees to meet and keep up with these requirements. We do not solicit donations in locations where we have not received written confirmation of compliance. To SEND DONATIONS or determine the status of compliance for any particular state visit http://pglaf.org While we cannot and do not solicit contributions from states where we have not met the solicitation requirements, we know of no prohibition against accepting unsolicited donations from donors in such states who approach us with offers to donate. International donations are gratefully accepted, but we cannot make any statements concerning tax treatment of donations received from outside the United States. U.S. laws alone swamp our small staff. Please check the Project Gutenberg Web pages for current donation methods and addresses. Donations are accepted in a number of other ways including including checks, online payments and credit card donations. To donate, please visit: http://pglaf.org/donate Section 5. General Information About Project Gutenberg-tm electronic works. Professor Michael S. Hart is the originator of the Project Gutenberg-tm concept of a library of electronic works that could be freely shared with anyone. For thirty years, he produced and distributed Project Gutenberg-tm eBooks with only a loose network of volunteer support. Project Gutenberg-tm eBooks are often created from several printed editions, all of which are confirmed as Public Domain in the U.S. unless a copyright notice is included. Thus, we do not necessarily keep eBooks in compliance with any particular paper edition. Most people start at our Web site which has the main PG search facility: http://www.gutenberg.net This Web site includes information about Project Gutenberg-tm, including how to make donations to the Project Gutenberg Literary Archive Foundation, how to help produce our new eBooks, and how to subscribe to our email newsletter to hear about new eBooks. prose-1.2.1/testdata/summarize.json000066400000000000000000000044161377030147400173760ustar00rootroot00000000000000[ { "text": "Vale is a natural language linter that supports plain text, markup (Markdown, reStructuredText, AsciiDoc, and HTML), and source code comments. Vale doesn't attempt to offer a one-size-fits-all collection of rules—instead, it strives to make customization as easy as possible.", "sentences": 2, "words": 43, "characters": 222, "AutomatedReadability": 13.64, "ColemanLiau": 13.18, "FleschKincaid": 12.00, "Gunningfog": 14.18, "SMOG": 13.02, "MeanGrade": 13.21, "StdDevGrade": 0.72, "DaleChall": 9.51, "ReadingEase": 47.29, "LIX": 54.06 }, { "text": "Existing computer programs that measure readability are based largely upon subroutines which estimate number of syllables, usually by counting vowels. The shortcoming in estimating syllables is that it necessitates keypunching the prose into the computer. There is no need to estimate syllables since word length in letters is a better predictor of readability than word length in syllables. Therefore, a new readability formula was computed that has for its predictors letters per 100 words and sentences per 100 words. Both predictors can be counted by an optical scanning device, and thus the formula makes it economically feasible for an organization such as the U.S. Office of Education to calibrate the readability of all textbooks for the public school system.", "sentences": 5, "words": 119, "characters": 639, "AutomatedReadability": 15.76, "ColemanLiau": 14.53, "FleschKincaid": 15.80, "Gunningfog": 17.59, "SMOG": 18.03, "MeanGrade": 16.34, "StdDevGrade": 1.29, "DaleChall": 12.19, "ReadingEase": 24.14, "LIX": 59.09 }, { "text": "He teaches science (He previously worked for 5 years as an engineer.) at the local University.", "sentences": 1, "words": 16, "characters": 75, "AutomatedReadability": 8.65, "ColemanLiau": 9.91, "FleschKincaid": 9.82, "Gunningfog": 13.9, "SMOG": 13.02, "MeanGrade": 11.06, "StdDevGrade": 2.03, "DaleChall": 10.66, "ReadingEase": 53.12, "LIX": 47.25 } ] prose-1.2.1/testdata/syllables.json000066400000000000000000002211651377030147400173560ustar00rootroot00000000000000{ "abalone": 4, "abare": 3, "abatement": 3, "abatements": 3, "abbatiello": 5, "abbruzzese": 4, "abed": 2, "abeyance": 3, "aborigine": 5, "aborigines": 5, "abounded": 3, "aboveboard": 3, "aboveground": 3, "abridged": 2, "abruzzese": 4, "absences": 3, "absoluteness": 4, "absolve": 2, "absolves": 2, "abuses": 3, "acacia": 3, "academically": 6, "academician": 5, "academicians": 5, "acceding": 3, "acceptances": 4, "accion": 3, "accompaniment": 5, "accompaniments": 5, "accomplice": 3, "accomplices": 4, "accorded": 3, "accordion": 4, "accuses": 3, "aces": 2, "achievement": 3, "achievements": 3, "achoa": 3, "acknowledged": 3, "acknowledgement": 4, "acknowledges": 4, "acoustically": 5, "acquaint": 2, "acquaintance": 3, "acquainted": 3, "acquiesced": 3, "acquire": 2, "acquired": 2, "acquirer": 3, "acquirers": 3, "acquires": 2, "acreage": 3, "acuteness": 3, "adabelle": 3, "adage": 2, "adame": 3, "added": 2, "addeo": 3, "addled": 2, "adelle": 2, "adieu": 2, "adjudged": 2, "admired": 2, "adorabelle": 4, "advanced": 2, "advancement": 3, "advancements": 3, "advances": 3, "advantage": 3, "advantaged": 3, "advantageous": 4, "advantages": 4, "adventuresome": 4, "advertisement": 4, "advertisements": 4, "advertises": 4, "advice": 2, "advisedly": 4, "advisement": 3, "advises": 3, "aegean": 3, "aerobically": 5, "aerodynamically": 7, "aerospace": 3, "aerospatiale": 4, "aesthetically": 5, "afanasyev": 5, "affixes": 3, "affluence": 3, "affluent": 3, "afforded": 3, "aforementioned": 4, "aforesaid": 3, "afterimage": 4, "aftertaste": 3, "aged": 1, "ageless": 2, "ages": 2, "aggrandizement": 4, "aggressiveness": 4, "agius": 3, "agne": 1, "agonizes": 4, "agreement": 3, "agribusiness": 4, "aguayo": 3, "aherne": 2, "aiguebelle": 3, "airborne": 2, "aircoa": 3, "airspace": 2, "aisle": 1, "aisles": 1, "akiyama": 4, "alarice": 3, "albertville": 3, "albion": 3, "alcoa": 3, "aldred": 2, "aleo": 3, "algeo": 3, "algorithm": 4, "aliases": 4, "alice": 2, "alicia": 3, "allderdice": 3, "allege": 2, "alleged": 2, "alleges": 3, "allegiances": 5, "alles": 1, "alliances": 4, "allowances": 4, "allspice": 2, "allwaste": 2, "alsace": 2, "altarpiece": 3, "altice": 2, "alusuisse": 3, "alveolar": 4, "alveoli": 4, "alyce": 2, "alyea": 3, "alyeska": 4, "amabelle": 3, "amadea": 4, "amadeo": 4, "amaryllises": 5, "amaya": 3, "amazement": 3, "amazes": 3, "ambled": 2, "ambrosial": 3, "ambrosian": 3, "ambulances": 4, "amended": 3, "amezcua": 4, "amityville": 4, "amorette": 3, "amperage": 3, "amusement": 3, "amusements": 3, "amuses": 3, "analyses": 4, "analyzes": 4, "anaya": 3, "anchorage": 3, "andalusian": 4, "andreoli": 4, "andreoni": 4, "andreotti": 4, "andreozzi": 4, "anette": 2, "angelle": 2, "angerer": 3, "angering": 3, "angled": 2, "anisette": 3, "annabelle": 3, "anne": 1, "annette": 2, "annexes": 3, "announced": 2, "announcement": 3, "announcements": 3, "announces": 3, "annoyance": 3, "annoyances": 4, "anstice": 2, "antaya": 3, "antiabortion": 5, "antiapartheid": 5, "antoinette": 3, "anyplace": 3, "anzaldua": 4, "aoyama": 3, "apace": 2, "apiece": 2, "apologizes": 5, "apotheosis": 5, "apparatuses": 5, "appearances": 4, "appeasement": 3, "appendage": 3, "appendages": 4, "appended": 3, "appendixes": 4, "applesauce": 3, "appleyard": 3, "appliances": 4, "appraises": 3, "apprehended": 4, "apprentice": 3, "apprenticed": 3, "apprentices": 4, "apprenticeship": 4, "approached": 2, "appropriateness": 5, "araya": 3, "arbed": 2, "arbitrage": 3, "arboreal": 4, "arceneaux": 3, "arceo": 3, "archambeau": 3, "archambeault": 3, "archeological": 6, "archeology": 5, "arches": 2, "ardelle": 2, "argonne": 2, "ariella": 4, "arises": 3, "arlette": 2, "armistice": 3, "armitage": 3, "arne": 1, "arnelle": 2, "arnette": 2, "arouses": 3, "arranged": 2, "arrangement": 3, "arrangements": 3, "arranges": 3, "arrearage": 3, "arrearages": 4, "arreola": 4, "arriortua": 5, "arroyo": 3, "arseneau": 3, "arseneault": 3, "artifice": 3, "aryan": 3, "ascended": 3, "asiain": 3, "asian": 2, "asians": 2, "asiaweek": 3, "assemblage": 3, "assembled": 3, "assertiveness": 4, "assurances": 4, "astounded": 3, "astuteness": 3, "atalaya": 4, "atlases": 3, "atonement": 3, "attached": 2, "attended": 3, "attentiveness": 4, "attractiveness": 4, "audette": 2, "audiences": 4, "auguste": 2, "auspices": 3, "authement": 2, "authorizes": 4, "auyeung": 2, "auzenne": 2, "avarice": 3, "avedisian": 4, "avenged": 2, "average": 3, "averette": 3, "avice": 2, "avowedly": 4, "awarded": 3, "awareness": 3, "AWOL": 2, "axes": 2, "ayacucho": 4, "ayala": 3, "ayars": 2, "ayatollah": 4, "ayatollahs": 4, "Ayatullah": 4, "ayerst": 2, "ayo": 2, "ayon": 2, "ayoub": 2, "ayuso": 3, "ayyad": 2, "azpurua": 4, "babbled": 2, "babette": 2, "babineau": 3, "babineaux": 3, "babyak": 3, "backhanded": 3, "backstage": 2, "badeau": 2, "badeaux": 2, "badgering": 3, "badges": 2, "baffled": 2, "baggage": 2, "baidoa": 3, "balanced": 2, "balances": 3, "balboa": 3, "baldrige": 2, "balle": 1, "balles": 1, "balliet": 3, "balyeat": 3, "bandage": 2, "bandaged": 2, "bandages": 3, "banded": 2, "banville": 2, "baptiste": 2, "barbeau": 2, "barbette": 2, "barcia": 2, "barges": 2, "baribeau": 3, "barlage": 2, "barnes": 1, "barnette": 2, "barrage": 2, "barraged": 2, "barrages": 3, "barrette": 2, "barrilleaux": 3, "barrineau": 3, "bartlesville": 3, "bartolomeo": 5, "basaldua": 4, "basement": 2, "basements": 2, "bases": 2, "baskerville": 3, "baskette": 2, "basque": 1, "basques": 1, "basse": 1, "bassette": 2, "bastille": 2, "bastogne": 2, "batches": 2, "batesville": 2, "bathe": 1, "bathed": 1, "bathes": 1, "battelle": 2, "batticaloa": 5, "bayard": 2, "bayog": 2, "bayonet": 3, "bayonets": 3, "bayou": 2, "bayous": 2, "bayuk": 2, "bayus": 2, "bearded": 2, "beau": 1, "beaubien": 2, "beauchaine": 2, "beauchamp": 2, "beauchemin": 3, "beauchene": 2, "beaudet": 2, "beaudette": 2, "beaudin": 2, "beaudoin": 2, "beaudreau": 2, "beaudry": 2, "beauford": 2, "beaufort": 2, "beaufrere": 2, "beaujolais": 3, "beaulac": 2, "beaumier": 3, "beaumont": 2, "beaupre": 2, "beauregard": 3, "beausoleil": 3, "beautician": 3, "beauties": 2, "beautiful": 3, "beautify": 3, "beauty": 2, "beauvais": 2, "beaux": 1, "bebeau": 2, "becherer": 3, "bedoya": 3, "bedraggled": 3, "bedrosian": 3, "Beetlejuice": 3, "befriended": 3, "befuddled": 3, "beidaihe": 3, "beiges": 2, "beirne": 1, "belge": 2, "beliveau": 3, "belle": 1, "belleau": 2, "bellefeuille": 4, "belles": 1, "belleville": 2, "belliveau": 3, "bellville": 2, "bellyache": 3, "belonged": 2, "beltsville": 2, "belville": 2, "belyea": 3, "belyeu": 3, "bemusement": 3, "bended": 2, "benne": 1, "bennette": 2, "bentonville": 3, "beowulf": 3, "bereavement": 3, "berges": 2, "berjaya": 3, "bernadette": 3, "berne": 1, "berneice": 2, "bernice": 2, "beseiged": 2, "besiege": 2, "besieged": 2, "beske": 1, "bespectacled": 4, "besse": 1, "bessette": 2, "beste": 1, "bethpage": 2, "betrayal": 3, "betrayals": 3, "beverage": 3, "beville": 2, "beyond": 2, "biases": 3, "bibeau": 2, "bibeault": 2, "bicycled": 3, "bierbusse": 2, "bille": 1, "billes": 1, "bilodeau": 3, "bilyeu": 3, "binette": 2, "binges": 2, "biondi": 3, "biondo": 3, "biondolillo": 5, "bionetics": 4, "birthplace": 2, "bisque": 1, "bissette": 2, "bissonette": 3, "bissonnette": 3, "bistodeau": 3, "bivalve": 2, "bivalves": 2, "blanchette": 2, "blaske": 1, "blazes": 2, "bleau": 1, "blended": 2, "blinded": 2, "blindfolded": 3, "blithe": 1, "blithely": 2, "blockage": 2, "blockages": 3, "blouses": 2, "blythe": 1, "boa": 2, "boarded": 2, "boardinghouses": 4, "bobbette": 2, "bobsled": 2, "boccia": 2, "bocian": 2, "boggled": 2, "boghosian": 3, "bogosian": 3, "boguslavskaya": 5, "boileau": 2, "boisseau": 2, "boissonneault": 3, "boldface": 2, "bolle": 1, "bolles": 1, "bombarded": 3, "bondage": 2, "bonded": 2, "bonne": 1, "bonneau": 2, "bonnes": 1, "bonnette": 2, "bonnibelle": 3, "bonuses": 3, "bonville": 2, "bookcases": 3, "bookshelves": 2, "boomeranged": 3, "boonville": 2, "boothe": 1, "bordeau": 2, "bordeaux": 2, "borealis": 4, "borges": 2, "borne": 1, "borneo": 3, "borosage": 3, "boscia": 2, "bosse": 1, "bothe": 1, "boudreau": 2, "boudreaux": 2, "bougainville": 3, "boulette": 2, "bounces": 2, "bounded": 2, "bourbeau": 2, "bourdeau": 2, "bourne": 1, "bournonville": 3, "boutelle": 2, "boxes": 2, "boyack": 2, "boyajian": 4, "boyan": 2, "boyar": 2, "boyett": 2, "boyington": 3, "boyish": 2, "boyum": 2, "braces": 2, "braille": 1, "brailles": 1, "bralorne": 2, "bramlage": 2, "bramlette": 2, "brancheau": 2, "branded": 2, "brasseaux": 2, "brazeau": 2, "brazzaville": 3, "breakage": 2, "breathe": 1, "breathed": 1, "breathes": 1, "breau": 1, "breault": 1, "breaux": 1, "breezes": 2, "breon": 2, "brescia": 2, "bresette": 2, "bresse": 1, "bressette": 2, "brideau": 2, "bridgeport": 2, "bridges": 2, "bridled": 2, "briefcases": 3, "brion": 2, "brissette": 2, "britches": 2, "brokerage": 3, "brokerages": 4, "brokering": 3, "brooksville": 2, "brosseau": 2, "brossette": 2, "brousseau": 2, "brownsville": 2, "bruegge": 2, "bruges": 2, "bruises": 2, "brundage": 2, "brundige": 2, "bruneau": 2, "brunelle": 2, "brunette": 2, "bruske": 1, "brusque": 1, "brusquely": 2, "brusseau": 2, "brutalizes": 4, "brutsche": 2, "bryan": 2, "bryans": 2, "bryant": 2, "bryars": 2, "brydges": 2, "bryen": 2, "bua": 2, "bubbled": 2, "Bubiyan": 3, "buckled": 2, "budreau": 2, "bulges": 2, "bundled": 2, "bungled": 2, "buoyancy": 3, "buoyant": 2, "burbage": 2, "burchette": 2, "burdette": 2, "bureau": 2, "bureaucracies": 4, "bureaucracy": 4, "bureaucrat": 3, "bureaucratic": 4, "bureaucrats": 3, "bureaus": 2, "burlesque": 2, "burne": 1, "burnes": 1, "burnette": 2, "burrage": 2, "buses": 2, "business": 2, "businesses": 3, "buske": 1, "busse": 1, "butchering": 3, "buteau": 2, "buttonville": 3, "buyout": 2, "buyouts": 2, "buysse": 1, "byam": 2, "byars": 2, "byas": 2, "byassee": 3, "byerley": 3, "byrne": 1, "byrnes": 1, "cabbage": 2, "cabbages": 3, "cabled": 2, "cableone": 3, "cabooses": 3, "cabotage": 3, "cacace": 2, "caccia": 2, "cadences": 3, "cadorette": 3, "cafe": 2, "cafes": 2, "cages": 2, "cairnes": 1, "caisse": 1, "calif": 2, "california": 5, "californian": 5, "californians": 5, "calle": 1, "calles": 1, "calves": 1, "cambridgeport": 3, "cambridgeside": 3, "cameo": 3, "cameos": 3, "camerer": 3, "camille": 2, "camouflage": 3, "camouflaged": 3, "campeau": 2, "campion": 3, "campuses": 3, "canadienne": 4, "candace": 2, "candice": 2, "cannes": 1, "cantrelle": 2, "canvases": 3, "capece": 2, "capelle": 2, "capitalizes": 5, "cappiello": 4, "caprice": 2, "capua": 3, "caravelle": 3, "caraveo": 4, "carbonneau": 3, "carcione": 3, "carded": 2, "cardiges": 3, "caresse": 2, "cariello": 4, "carlisle": 2, "carnage": 2, "carne": 1, "carnes": 1, "carreon": 3, "carrion": 3, "carriveau": 3, "cartaya": 3, "cartersville": 3, "carthage": 2, "cartilage": 3, "cartrette": 2, "cartridges": 3, "cartusciello": 5, "carves": 1, "carville": 2, "cases": 2, "cassette": 2, "cassettes": 2, "caste": 1, "castille": 2, "cataloged": 3, "cataloguing": 4, "catches": 2, "categorizes": 5, "cattaneo": 4, "caucasian": 3, "caucuses": 3, "causes": 2, "cawthorne": 2, "caya": 2, "cayuses": 3, "ceases": 2, "ceausescu": 3, "ceder": 2, "ceding": 2, "celaya": 3, "celeste": 2, "censuses": 3, "centerpiece": 3, "centrifuge": 3, "centrifuges": 4, "ceraceous": 3, "cereal": 3, "cereals": 3, "cezanne": 2, "chadbourne": 2, "challenged": 2, "challenges": 3, "chalmette": 2, "chameleon": 4, "champagne": 2, "champagnes": 2, "champeau": 2, "champion": 3, "championed": 3, "championing": 4, "champions": 3, "championship": 4, "championships": 4, "chances": 2, "changes": 2, "chapelle": 2, "chappelle": 2, "characterizes": 5, "charasse": 2, "charboneau": 3, "charbonneau": 3, "charette": 2, "charges": 2, "charlemagne": 3, "charmion": 3, "chases": 2, "chasm": 2, "chasse": 1, "chaste": 1, "chastises": 3, "chateau": 2, "chateaux": 2, "chausse": 1, "chechnya": 3, "chechnyan": 3, "cheeses": 2, "chelette": 2, "chenette": 2, "cheong": 2, "chequing": 2, "cherne": 1, "chevette": 2, "chevrette": 2, "chiyoda": 3, "choices": 2, "chooses": 2, "choreograph": 4, "choreographed": 4, "choreographer": 5, "choreographers": 5, "choreographic": 5, "choreography": 5, "choruses": 3, "christabelle": 3, "chronicled": 3, "chua": 2, "chuckled": 2, "chujitsuya": 4, "churches": 2, "cian": 1, "cigarette": 3, "cigarettes": 3, "cilicia": 3, "circled": 2, "circumstances": 4, "circuses": 3, "ciriello": 4, "cirincione": 4, "cirrincione": 4, "cistercian": 3, "cityplace": 3, "claiborne": 2, "clairvoyance": 3, "clarabelle": 3, "clarette": 2, "clarice": 2, "clarisse": 2, "clarksville": 2, "clarrisse": 2, "claudette": 2, "clauses": 2, "clavette": 2, "clayborne": 2, "claybourne": 2, "clayey": 2, "clearances": 3, "clearinghouses": 4, "cleavage": 2, "cleo": 2, "cleopatra": 4, "climaxes": 3, "clinician": 3, "clinicians": 3, "clodoveo": 4, "closeness": 2, "closes": 2, "clothe": 1, "clothed": 1, "clothes": 1, "clubhouses": 3, "clutches": 2, "clyatt": 2, "coalesced": 3, "coatesville": 2, "cobbled": 2, "coccia": 2, "coddled": 2, "coercion": 3, "cohesiveness": 4, "coinage": 2, "cointreau": 2, "colette": 2, "collage": 2, "collages": 3, "colle": 1, "college": 2, "colleges": 3, "collegeville": 3, "collette": 2, "colleville": 2, "cologne": 2, "colville": 2, "comanche": 3, "combativeness": 4, "comeau": 2, "comeaux": 2, "comedienne": 4, "commanded": 3, "commenced": 2, "commencement": 3, "commences": 3, "commended": 3, "commingled": 3, "commonplace": 3, "compeau": 2, "competitiveness": 5, "completeness": 3, "complexes": 3, "composes": 3, "compounded": 3, "comprehended": 4, "comprises": 3, "compromises": 4, "conceding": 3, "concepcion": 4, "concierge": 3, "concubinage": 4, "condolences": 4, "conferences": 4, "confidences": 4, "confinement": 3, "confluence": 3, "confounded": 3, "confucian": 3, "confuses": 3, "congruence": 3, "connely": 2, "consciences": 3, "constituencies": 5, "constituency": 5, "constituent": 4, "constituents": 4, "contended": 3, "continuances": 5, "contrivances": 4, "controversial": 4, "conveniences": 4, "conveyance": 3, "conveyor": 3, "conville": 2, "convinced": 2, "convinces": 3, "cooperage": 3, "coppage": 2, "corabelle": 3, "corded": 2, "corette": 2, "corinne": 2, "corne": 1, "cornelle": 2, "cornette": 2, "corresponded": 4, "corriveau": 3, "corsage": 2, "corvette": 2, "corvettes": 2, "coscia": 2, "cosette": 2, "cossette": 2, "coste": 1, "cotelle": 2, "cotroneo": 4, "cottage": 2, "cottages": 3, "countenanced": 3, "countenances": 4, "counterbalanced": 4, "countercharges": 4, "counterespionage": 6, "coupled": 2, "courage": 2, "courageous": 3, "courageously": 4, "courteau": 2, "courthouses": 3, "courville": 2, "cousineau": 3, "coverage": 3, "coverages": 4, "covering": 3, "coverings": 3, "coviello": 4, "coville": 2, "cowardice": 3, "cowering": 3, "crackled": 2, "crawfordsville": 3, "crayon": 2, "crayons": 2, "creole": 2, "creoles": 2, "creolized": 3, "creosote": 3, "crepeau": 2, "crevice": 2, "crevices": 3, "cribbage": 2, "cringes": 2, "crippled": 2, "criscione": 3, "crises": 2, "criticizes": 4, "crocuses": 3, "crosse": 1, "crosspiece": 2, "crosspieces": 3, "croteau": 2, "crotonville": 3, "crotteau": 2, "crowded": 2, "cruces": 2, "crucifixes": 4, "cruises": 2, "crumbled": 2, "crumpled": 2, "crutches": 2, "cryan": 2, "cubbage": 2, "cuccia": 2, "cuddled": 2, "cuddling": 2, "cuneo": 3, "curtice": 2, "curves": 1, "cuteness": 2, "cuyahoga": 4, "cyacq": 2, "cyanamid": 4, "cyanazine": 4, "cyanide": 3, "cyanuric": 4, "cyberspace": 3, "cycled": 2, "cytoplasm": 4, "dabbled": 2, "daigneault": 2, "daleo": 3, "damage": 2, "damaged": 2, "damages": 3, "damme": 1, "dances": 2, "dandeneau": 3, "danelle": 2, "dangled": 2, "daniello": 4, "dansereau": 3, "danville": 2, "dapice": 2, "darbonne": 2, "darice": 2, "darrelle": 2, "darville": 2, "databases": 4, "daya": 2, "dayan": 2, "dazzled": 2, "deathbed": 2, "deatherage": 3, "debasement": 3, "debrosse": 2, "decapua": 4, "decelle": 2, "decelles": 2, "decisiveness": 4, "decomposes": 4, "decoteau": 3, "decreases": 3, "dedeaux": 2, "deduce": 2, "deduced": 2, "defaced": 2, "defarges": 3, "defelice": 3, "defended": 3, "defensiveness": 4, "defeo": 3, "degaulle": 2, "dehoyos": 3, "dejarnette": 3, "delage": 2, "delbosque": 2, "deleo": 3, "deleon": 3, "deleonardis": 5, "delfosse": 2, "delgiudice": 3, "delguidice": 3, "delicia": 3, "delisle": 2, "deliverers": 4, "delivering": 4, "delle": 1, "delmed": 2, "deluccia": 3, "delucia": 3, "deluge": 2, "deluged": 2, "delve": 1, "delves": 1, "demanded": 3, "dematteo": 4, "demayo": 3, "demeo": 3, "demilitarizes": 6, "demme": 1, "deneau": 2, "deneault": 2, "denice": 2, "denne": 1, "denomme": 2, "denounced": 2, "denounces": 3, "deo": 2, "deodorant": 4, "deodorants": 4, "deoliveira": 5, "deon": 2, "depended": 3, "deployable": 4, "deranged": 2, "derousse": 2, "descended": 3, "descoteaux": 3, "deserves": 2, "desormeaux": 3, "despises": 3, "desselle": 2, "detached": 2, "deterioration": 6, "detherage": 3, "dettling": 2, "deveau": 2, "deveaux": 2, "develle": 2, "devereaux": 3, "device": 2, "devices": 3, "deville": 2, "devises": 3, "deyo": 2, "deyoe": 2, "deyoung": 2, "diagnoses": 4, "dianthia": 4, "diaphonia": 5, "dibartolomeo": 6, "dibbled": 2, "diceon": 3, "dideoxycytidine": 7, "dieringer": 3, "dieses": 2, "diet": 2, "dieters": 3, "difelice": 3, "differences": 4, "diffuses": 3, "dileo": 3, "dileonardo": 5, "dille": 1, "dimatteo": 4, "dimeo": 3, "dimpled": 2, "dinges": 2, "dion": 2, "diona": 3, "dione": 2, "dionysius": 5, "disabled": 3, "disadvantage": 4, "disadvantaged": 4, "disadvantageous": 5, "disadvantages": 5, "disallowances": 5, "disappearances": 5, "disassembled": 4, "disbanded": 3, "disbursement": 3, "disbursements": 3, "discarded": 3, "discharges": 3, "discloses": 3, "discourage": 3, "discouraged": 3, "discouragement": 4, "discourages": 4, "discovering": 4, "diseases": 3, "disenfranchisement": 5, "disengage": 3, "disengaged": 3, "disengagement": 4, "disgrace": 2, "disgraced": 2, "disgraceful": 3, "disguises": 3, "diskette": 2, "diskettes": 2, "dislodged": 2, "disloyal": 3, "disloyalty": 4, "disparage": 3, "disparaged": 3, "disparages": 4, "dispatches": 3, "displace": 2, "displaced": 2, "displacement": 3, "displacements": 3, "displaces": 3, "disposes": 3, "disregarded": 4, "disservice": 3, "dissolve": 2, "dissolves": 2, "distanced": 2, "distances": 3, "distaste": 2, "distasteful": 3, "distended": 3, "distinctiveness": 4, "disturbances": 4, "ditches": 2, "divergences": 4, "diverges": 3, "divisiveness": 4, "divorced": 2, "divorces": 3, "dodges": 2, "doenges": 2, "doggedly": 3, "dolce": 2, "dolle": 1, "donne": 1, "doralynne": 3, "doraville": 3, "dorette": 2, "dorice": 2, "dOrsay": 2, "dosage": 2, "dosages": 3, "doses": 2, "doubled": 2, "doucette": 2, "douville": 2, "downstage": 2, "doyal": 2, "doyel": 2, "doyen": 2, "doyon": 2, "drainage": 2, "dralle": 1, "dramatizes": 4, "drapeau": 2, "dredges": 2, "dressage": 2, "dribbled": 2, "droste": 1, "dubeau": 2, "duchenne": 2, "duchesneau": 3, "dudayev": 3, "duena": 3, "duenas": 3, "dukakises": 4, "dulcibelle": 3, "dulle": 1, "dumbfounded": 3, "dunne": 1, "durette": 2, "duryea": 3, "dusseau": 2, "dusseault": 2, "dwelle": 1, "dwindled": 2, "dyad": 2, "dyal": 2, "dyana": 3, "dyane": 2, "dyansen": 3, "dyar": 2, "dyas": 2, "dyatron": 3, "dyazide": 3, "dyess": 2, "easement": 2, "eases": 2, "eastes": 1, "eau": 1, "eaux": 1, "edges": 2, "edifice": 3, "edithe": 2, "edythe": 2, "effectiveness": 4, "efficiences": 4, "effluent": 3, "egerer": 3, "Ehud": 2, "eldred": 2, "electrician": 4, "electricians": 4, "electrospace": 4, "elle": 1, "ellesse": 2, "ellette": 2, "ellice": 2, "elusiveness": 4, "elves": 1, "embed": 2, "embedded": 3, "embezzled": 3, "embrace": 2, "embraced": 2, "embraces": 3, "embryology": 5, "emerges": 3, "emeryville": 4, "eminences": 4, "emlynne": 2, "emme": 1, "emphases": 3, "emphasizes": 4, "emplacement": 3, "employable": 4, "employee": 3, "employees": 3, "empowering": 4, "enabled": 3, "encircled": 3, "encourage": 3, "encouraged": 3, "encouragement": 4, "encourages": 4, "encroached": 2, "endangering": 4, "ended": 2, "endorsement": 3, "endorsements": 3, "enfeebled": 3, "enforced": 2, "enforcement": 3, "enforces": 3, "enfranchises": 4, "engage": 2, "engaged": 2, "engagement": 3, "engagements": 3, "engages": 3, "enhanced": 2, "enhancement": 3, "enhancements": 3, "enhances": 3, "enjoyable": 4, "enlarges": 3, "ennes": 1, "enrage": 2, "enraged": 2, "enriched": 2, "ensconced": 2, "enslavement": 3, "entangled": 3, "enterprises": 4, "enthuses": 3, "enthusiastically": 6, "entice": 2, "enticed": 2, "enticement": 3, "enticements": 3, "entourage": 3, "entranced": 2, "entrances": 3, "entrenched": 2, "envisage": 3, "envisaged": 3, "envisages": 4, "eocene": 3, "eoff": 2, "eohippus": 4, "eolande": 4, "eon": 2, "eons": 2, "epitomizes": 5, "erases": 3, "erne": 1, "escapement": 3, "espionage": 4, "espouses": 3, "essayist": 3, "esse": 1, "este": 1, "estelle": 2, "estranged": 2, "estrangement": 3, "etches": 2, "ethereal": 4, "ettlinger": 3, "etzioni": 4, "eudocia": 3, "eunice": 2, "eurasian": 3, "europeenne": 3, "euroyen": 3, "eustace": 2, "eustacia": 3, "eustice": 2, "evansville": 3, "evenhanded": 4, "evenhandedly": 5, "everage": 3, "everette": 3, "evidenced": 3, "evidences": 4, "evinced": 2, "evolve": 2, "evolves": 2, "evonne": 2, "exchanged": 2, "exchanges": 3, "excises": 3, "excitement": 3, "excoa": 3, "excuses": 3, "exercises": 4, "exes": 2, "expanded": 3, "expended": 3, "exposes": 3, "expounded": 3, "expunged": 2, "extended": 3, "extraordinaire": 5, "eyerman": 3, "ezelle": 2, "fabled": 2, "faceless": 2, "faces": 2, "facteau": 2, "falardeau": 3, "fangled": 2, "fantasizes": 4, "fariello": 4, "farmhouses": 3, "farnes": 1, "faucette": 2, "favreau": 2, "faxes": 2, "fayard": 2, "fayez": 2, "faymonville": 3, "feces": 2, "fecteau": 2, "fejes": 2, "felice": 2, "felicia": 3, "felrice": 2, "femme": 1, "fences": 2, "fended": 2, "feodor": 3, "feodora": 4, "feola": 3, "fertilizes": 4, "fetches": 2, "fette": 1, "fettes": 1, "fetuses": 3, "fiddled": 2, "fiddling": 2, "fielded": 2, "figaroa": 4, "figueroa": 4, "filice": 2, "filyaw": 3, "financed": 2, "financement": 3, "finances": 3, "finesse": 2, "fingering": 3, "finne": 1, "fiona": 3, "firehouses": 4, "fireplace": 3, "fireplaces": 4, "fisette": 2, "fishburne": 2, "fiske": 1, "fitzmaurice": 3, "fixes": 2, "fizzled": 2, "flamboyance": 3, "flamboyant": 3, "flamboyantly": 4, "flanges": 2, "fleurette": 2, "flexes": 2, "flounces": 2, "flowering": 3, "fluency": 3, "fluent": 2, "flythe": 1, "focuses": 3, "folded": 2, "follette": 2, "fontenette": 3, "fonville": 2, "foodservice": 3, "footage": 2, "footrace": 2, "forage": 2, "forages": 3, "forces": 2, "fordyce": 2, "forecloses": 3, "foretaste": 2, "forges": 2, "forgette": 2, "forgione": 3, "forgiveness": 3, "formalizes": 4, "fornes": 1, "forsythe": 2, "forwarded": 3, "fosse": 1, "founded": 2, "foxes": 2, "fradette": 2, "fragrances": 3, "frances": 2, "franchises": 3, "francia": 2, "francisville": 3, "frazzled": 2, "frechette": 2, "freckled": 2, "freezes": 2, "fregeau": 2, "frenette": 2, "freon": 2, "freons": 2, "freya": 2, "freyermuth": 3, "fringes": 2, "friona": 3, "friscia": 2, "friske": 1, "fromme": 1, "frontage": 2, "fryar": 2, "fuchsias": 2, "fujiya": 3, "fujiyama": 4, "fukuyama": 4, "fumbled": 2, "funded": 2, "furches": 2, "furloughed": 2, "furnace": 2, "furnaces": 3, "furuya": 3, "fuselage": 3, "fuselages": 4, "fuses": 2, "fuzes": 2, "gabriella": 4, "gabrielli": 4, "gaccione": 3, "gainesville": 2, "galarneau": 3, "galileo": 4, "galipeau": 3, "galle": 1, "galleon": 3, "galleons": 3, "galles": 1, "galyean": 3, "galyen": 3, "gamage": 2, "gambled": 2, "gamboa": 3, "gammage": 2, "ganglionic": 4, "garage": 2, "garages": 3, "garbage": 2, "garbled": 2, "garceau": 2, "garces": 2, "gardea": 3, "gareau": 2, "garges": 2, "garneau": 2, "garnes": 1, "garnette": 2, "garrette": 2, "gases": 2, "gasque": 1, "gastineau": 3, "gaudette": 2, "gaudreau": 2, "gauges": 2, "gaulle": 1, "gauthreaux": 2, "gautreau": 2, "gautreaux": 2, "gauvreau": 2, "gazelle": 2, "gazelles": 2, "gazes": 2, "gazette": 2, "gearboxes": 3, "gedeon": 3, "geers": 2, "gelette": 2, "gelineau": 3, "gelles": 1, "gemayel": 3, "gemme": 1, "gendreau": 2, "genoa": 3, "geo": 2, "geocentric": 4, "geochemistry": 5, "geodesic": 4, "geodesy": 4, "geodyne": 3, "geoffrion": 4, "geoffroy": 3, "geographer": 4, "geographic": 4, "geographical": 5, "geographically": 6, "geography": 4, "geologic": 4, "geological": 5, "geologist": 4, "geologists": 4, "geology": 4, "geomagnetic": 5, "geometric": 4, "geometrical": 5, "geometries": 4, "geometry": 4, "geomorphology": 6, "geon": 2, "geophysical": 5, "geopolitical": 6, "geopolitics": 5, "geordie": 3, "georg": 2, "georgeson": 4, "georgi": 3, "georgiades": 4, "geostrophic": 4, "geosyncline": 4, "geotaxis": 4, "geotek": 3, "geothermal": 4, "geotropic": 4, "geotropism": 5, "gering": 2, "geringer": 3, "geske": 1, "geyelin": 3, "gibeau": 2, "gibeault": 2, "gideon": 3, "gieske": 1, "giggled": 2, "gildea": 3, "gilded": 2, "gille": 1, "gilles": 1, "gillette": 2, "gionet": 3, "giselle": 2, "giudice": 3, "glances": 2, "glanville": 2, "glazes": 2, "glenville": 2, "glitches": 2, "glowering": 3, "goa": 2, "gobbled": 2, "goddeau": 2, "godette": 2, "goethe": 1, "goldfeder": 3, "golle": 1, "goodreau": 2, "gooseberry": 3, "gordeyev": 3, "gorgeous": 2, "gorges": 2, "gossage": 2, "gosse": 1, "goudeau": 2, "goudreau": 2, "goulette": 2, "goya": 2, "goyim": 2, "graceful": 2, "gracefully": 3, "graceless": 2, "graces": 2, "gracia": 2, "graffeo": 3, "grambling": 2, "granges": 2, "granville": 2, "grappled": 2, "grappling": 2, "grasse": 1, "gravelle": 2, "gravette": 2, "grayish": 2, "grecian": 2, "greenhouses": 3, "greenpeace": 2, "greenville": 2, "grelle": 1, "grenouille": 3, "grievances": 3, "grille": 1, "grimaced": 2, "grimaces": 3, "grimme": 1, "grinage": 2, "grizzled": 2, "groleau": 2, "grosse": 1, "grotesque": 2, "grotesquely": 3, "grothe": 1, "grotheer": 2, "grounded": 2, "groupement": 2, "grouses": 2, "grua": 2, "grudges": 2, "grumbled": 2, "guarded": 2, "guardedly": 3, "guayabera": 4, "guccione": 3, "guerette": 2, "guerrette": 2, "guidice": 2, "guilbeau": 2, "guilbeault": 2, "guilbeaux": 2, "guillemette": 3, "guillette": 2, "guilmette": 2, "guises": 2, "gullette": 2, "guste": 1, "guyana": 3, "guyett": 2, "guyon": 2, "guyot": 2, "gvaryahu": 4, "gwynne": 1, "haberer": 3, "hachette": 2, "haggled": 2, "halcion": 3, "halle": 1, "halve": 1, "halves": 1, "hamme": 1, "hammes": 1, "handed": 2, "handedly": 3, "handled": 2, "hannes": 1, "hansche": 2, "haranguing": 3, "hardage": 2, "harleysville": 3, "harnage": 2, "harne": 1, "harriette": 3, "hartlage": 2, "hartshorne": 2, "harville": 2, "haske": 1, "hasse": 1, "hassled": 2, "haste": 1, "hatches": 2, "hathorne": 2, "hauppauge": 2, "hawthorne": 2, "hayashi": 3, "hayashida": 4, "hayek": 2, "hayen": 2, "hayenga": 3, "hearne": 1, "heavyhanded": 4, "heberer": 3, "heckled": 2, "hedges": 2, "heidbreder": 3, "heiges": 2, "helice": 2, "helle": 1, "hemme": 1, "hemocyanin": 5, "hemorrhage": 3, "hemorrhaged": 3, "henne": 1, "henneberry": 3, "hennes": 1, "henriette": 3, "hentges": 2, "henthorne": 2, "heon": 2, "heralded": 3, "herbaceous": 3, "herded": 2, "heritage": 3, "hermitage": 3, "herne": 1, "herriage": 3, "herrlinger": 3, "hesse": 1, "hessian": 2, "heterogeneous": 5, "hicksville": 2, "hideo": 3, "hille": 1, "himalayan": 4, "himalayas": 4, "hindrances": 3, "hinges": 2, "hirayama": 4, "hiroyuki": 4, "histrionic": 4, "histrionics": 4, "hitches": 2, "hoarded": 2, "hoarseness": 2, "hoaxes": 2, "hobbled": 2, "hodges": 2, "hoelle": 1, "holle": 1, "homage": 2, "homeostasis": 5, "homeostatic": 5, "homme": 1, "hommes": 1, "horace": 2, "horne": 1, "hoses": 2, "hospice": 2, "hospices": 3, "hostage": 2, "hostages": 3, "houdaille": 2, "hounded": 2, "houses": 2, "hovering": 3, "hoyos": 2, "hua": 2, "huddled": 2, "hugely": 2, "hugette": 2, "hughette": 2, "hulette": 2, "humbled": 2, "hundred": 2, "hungering": 3, "huntsville": 2, "hurteau": 2, "hutcheon": 3, "huyett": 2, "hyacinth": 3, "hyacintha": 4, "hyacinthia": 5, "hyacinthie": 4, "hyacinths": 3, "hyaluronic": 5, "hyams": 2, "hyannis": 3, "hyatt": 2, "hyena": 3, "hyenas": 3, "hyperion": 4, "hypotheses": 4, "hyraxes": 3, "ianniello": 5, "ices": 2, "iconoclasm": 5, "idea": 3, "ideological": 6, "ideologies": 5, "ideologists": 5, "idette": 2, "idled": 2, "idolizes": 4, "ierne": 1, "ignace": 2, "illes": 1, "Ilyich": 2, "image": 2, "images": 3, "imbalances": 4, "imbedded": 3, "immortalizes": 5, "immunizes": 4, "impasse": 2, "impeached": 2, "impeding": 3, "imposes": 3, "impounded": 3, "improvement": 3, "improvements": 3, "inbred": 2, "incidences": 4, "inconvenienced": 4, "inconveniences": 5, "increases": 3, "indecisiveness": 5, "indexes": 3, "indices": 3, "indonesian": 4, "induce": 2, "induced": 2, "inducement": 3, "inducements": 3, "induces": 3, "indulgences": 4, "indulges": 3, "ineffectiveness": 5, "inferences": 4, "influence": 3, "influenced": 3, "influences": 4, "influencing": 4, "influential": 4, "influenza": 4, "infrared": 3, "infringed": 2, "infringement": 3, "infringements": 3, "infringes": 3, "infuses": 3, "injustice": 3, "injustices": 4, "innerspace": 3, "innuendo": 4, "innuendoes": 4, "innuendos": 4, "instances": 3, "institutionalizes": 7, "insurances": 4, "intended": 3, "interacciones": 5, "interbred": 3, "interceding": 4, "interchanges": 4, "interface": 3, "interfaces": 4, "interlaced": 3, "intermingled": 4, "interoffice": 4, "intervoice": 3, "intraocular": 5, "intrauterine": 5, "intriguing": 3, "intriguingly": 4, "introduce": 3, "introduced": 3, "introduces": 4, "inveighed": 2, "inventiveness": 4, "invoice": 2, "invoices": 3, "involve": 2, "involvement": 3, "involves": 2, "iodice": 3, "ion": 2, "iona": 3, "ionic": 3, "ionics": 3, "ionization": 5, "ionizers": 4, "ionizing": 4, "ionospheric": 5, "ions": 2, "irette": 2, "irises": 3, "ironizes": 4, "irvette": 2, "isabelle": 3, "isle": 1, "isles": 1, "isocyanate": 5, "Isozaki": 4, "issuances": 4, "itches": 2, "jacksonville": 3, "jandreau": 2, "janelle": 2, "janesville": 2, "janette": 2, "jangled": 2, "janice": 2, "jarreau": 2, "jasmer": 3, "jaundice": 2, "jaundiced": 2, "jaya": 2, "jayashankar": 4, "jeanbaptiste": 3, "jeanette": 2, "jeanne": 1, "jeannette": 2, "jeansonne": 2, "jenne": 1, "jennette": 2, "jenrette": 2, "jeske": 1, "jetborne": 2, "jette": 1, "jeyaretnam": 4, "joffrion": 3, "jolette": 2, "joliet": 3, "jolivette": 3, "jopling": 2, "jorge": 2, "josette": 2, "joshua": 3, "jostes": 1, "jostling": 2, "joyal": 2, "joyoni": 3, "joyous": 2, "juan": 1, "juana": 2, "juanita": 3, "juarez": 2, "judaism": 3, "judea": 3, "judeo": 3, "judgement": 2, "judgements": 2, "judges": 2, "judgeship": 2, "judgeships": 2, "judice": 2, "juggled": 2, "juices": 2, "jukebox": 2, "julia": 3, "julianne": 3, "juliet": 3, "julius": 3, "jumbled": 2, "jumonville": 3, "juneau": 2, "junette": 2, "junior": 3, "juniors": 3, "justice": 2, "justices": 3, "kageyama": 4, "kamerer": 3, "kanghua": 3, "kanne": 1, "karges": 2, "karnes": 1, "kasmer": 3, "katayama": 4, "kaya": 2, "kayak": 2, "kayaking": 3, "kayaks": 2, "kayo": 2, "kemerer": 3, "keo": 2, "keogh": 2, "keohane": 3, "keown": 2, "kerestes": 2, "kernes": 1, "kerrville": 2, "keske": 1, "keville": 2, "keynesian": 3, "kibodeaux": 3, "kidded": 2, "kiessling": 2, "kilborne": 2, "kilbourne": 2, "kille": 1, "kimche": 2, "kindled": 2, "kindred": 2, "kingsville": 2, "kinne": 1, "kissling": 2, "kitchenette": 3, "kiyoshi": 3, "kiyotaka": 4, "klages": 2, "kleinpaste": 2, "klemme": 1, "knicely": 2, "knoxville": 2, "kobayashi": 4, "kocian": 2, "koelle": 1, "kolle": 1, "Komsomolskaya": 5, "korfhage": 2, "kothe": 1, "koyama": 3, "koyo": 2, "kramme": 1, "krammes": 1, "krasnoyarsk": 3, "krausse": 1, "kresge": 2, "kresse": 1, "krumme": 1, "kuenheim": 3, "kuenstler": 3, "kuenzi": 3, "kunayev": 3, "kuske": 1, "labeau": 2, "labelle": 2, "labranche": 3, "lacayo": 3, "laces": 2, "lachapelle": 3, "lacoste": 2, "lacrosse": 2, "ladled": 2, "lafalce": 3, "laflamme": 2, "lafollette": 3, "lafosse": 2, "lagesse": 2, "lajeunesse": 3, "lakeside": 2, "lamarche": 3, "lambaste": 2, "lambastes": 2, "lamme": 1, "lamontagne": 3, "lamoreaux": 3, "lamothe": 2, "lamoureaux": 3, "lanceolate": 4, "lancia": 2, "landed": 2, "landreneau": 3, "langhorne": 2, "language": 2, "languages": 3, "lanouette": 3, "lapage": 2, "larche": 2, "larded": 2, "lareau": 2, "largesse": 2, "lariccia": 3, "larochelle": 3, "lasalle": 2, "lashua": 3, "laske": 1, "lasseigne": 2, "latches": 2, "latendresse": 3, "lateness": 2, "latexes": 3, "lathe": 1, "lathes": 1, "latourette": 3, "lattice": 2, "laurette": 2, "laurice": 2, "lausanne": 2, "lavelle": 2, "laverne": 2, "lavette": 2, "lavigne": 2, "laviolette": 4, "lawhorne": 2, "lawrenceville": 3, "layborne": 2, "layered": 2, "layering": 3, "layoff": 2, "layoffs": 2, "layout": 2, "layouts": 2, "layover": 3, "layovers": 3, "leadville": 2, "leakage": 2, "leases": 2, "leatrice": 2, "leavelle": 2, "lebeau": 2, "ledges": 2, "ledonne": 2, "legette": 2, "legged": 2, "leggette": 2, "legitimizes": 5, "leifeste": 2, "lemelle": 2, "leo": 2, "leoma": 3, "leominster": 4, "leon": 2, "leona": 3, "leonardo": 4, "leone": 2, "leonel": 3, "leonerd": 3, "leones": 2, "leonhard": 3, "leoni": 3, "leonid": 3, "leonora": 4, "leonore": 3, "leontine": 3, "leopold": 3, "leopoldine": 4, "leopoldo": 4, "leos": 2, "leotard": 3, "lepage": 2, "lerette": 2, "lesage": 2, "leske": 1, "lespinasse": 3, "leticia": 3, "letourneau": 3, "lettice": 2, "lettuce": 2, "leveille": 2, "leverage": 3, "leveraged": 3, "leverette": 3, "levering": 3, "levesque": 2, "leya": 2, "lianne": 2, "liberace": 3, "libya": 3, "libyan": 3, "libyans": 3, "licences": 3, "licorice": 3, "lighthouses": 3, "likeness": 2, "likenesses": 3, "lille": 1, "lilyan": 3, "limoges": 3, "linage": 2, "lineberry": 3, "linette": 2, "lingering": 3, "linkage": 2, "linkages": 3, "linne": 1, "linville": 2, "lion": 2, "lionberger": 4, "lionel": 3, "lionetti": 4, "lionheart": 3, "lionized": 3, "lions": 2, "lirette": 2, "lisette": 2, "liske": 1, "literaturnaya": 6, "lithe": 1, "littlepage": 3, "loathe": 1, "loathed": 1, "lodges": 2, "loewe": 2, "logarithm": 4, "loges": 2, "logician": 3, "loguidice": 3, "loiselle": 2, "lonesome": 2, "looses": 2, "lorette": 2, "lorne": 1, "loses": 2, "losoya": 3, "louisville": 3, "lounges": 2, "lovage": 2, "lovering": 3, "lovette": 2, "lowering": 3, "loya": 2, "loyal": 2, "loyalist": 3, "loyalists": 3, "loyall": 2, "loyally": 3, "loyalties": 3, "loyalty": 3, "loyola": 3, "lozeau": 2, "lozenges": 3, "lozoya": 3, "lua": 2, "lucerne": 2, "lucette": 2, "lucia": 2, "lucian": 2, "lucille": 2, "lucrecia": 3, "luelle": 1, "luggage": 2, "lunges": 2, "lurches": 2, "lurette": 2, "lyall": 2, "lyell": 2, "lyerla": 3, "lynette": 2, "lynne": 1, "mabelle": 2, "macfadyen": 4, "macioce": 3, "macroeconomic": 6, "macroeconomics": 6, "macrophage": 3, "macrophages": 4, "madelle": 2, "mademoiselle": 4, "maffeo": 3, "mages": 2, "magician": 3, "magicians": 3, "mahayana": 4, "mahe": 2, "mailboxes": 3, "maille": 1, "mainville": 2, "maione": 3, "majette": 2, "makeover": 4, "makepeace": 3, "malayan": 3, "malaysian": 3, "malaysians": 3, "maleness": 2, "malice": 2, "malle": 1, "mallette": 2, "malpractice": 3, "malveaux": 2, "manage": 2, "managed": 2, "management": 3, "managements": 3, "manages": 3, "mandeville": 3, "manette": 2, "maneuvering": 4, "maneuverings": 4, "manganiello": 5, "mangement": 2, "manges": 2, "mangione": 3, "mangled": 2, "manhandled": 3, "manne": 1, "mannes": 1, "manseau": 2, "mantua": 3, "manuevering": 4, "manville": 2, "marantette": 3, "maranville": 3, "marbled": 2, "marceau": 2, "marceaux": 2, "marcelle": 2, "marches": 2, "marcia": 2, "marcille": 2, "marcoses": 3, "marette": 2, "margette": 2, "marginalizes": 5, "marianne": 3, "marice": 2, "mariette": 3, "marineau": 3, "marketplace": 3, "marketplaces": 4, "marlette": 2, "marmion": 3, "marseille": 2, "martelle": 2, "martineau": 3, "maruyama": 4, "maruyu": 3, "marvelle": 2, "maryann": 3, "marysville": 3, "maryville": 3, "marzette": 2, "masaya": 3, "masayoshi": 4, "masayuki": 4, "mascia": 2, "masiello": 4, "maske": 1, "massacred": 3, "massage": 2, "massaged": 2, "massages": 3, "masse": 1, "masterminded": 4, "masterpiece": 3, "masterpieces": 4, "mataya": 3, "matches": 2, "mateo": 3, "materializes": 6, "mathe": 1, "mathematician": 5, "mathematicians": 5, "matherne": 2, "matisse": 2, "matteo": 3, "mattice": 2, "maurice": 2, "mauriello": 4, "mauthe": 1, "maximizes": 4, "maya": 2, "mayall": 2, "mayan": 2, "maybelle": 2, "mayeda": 3, "mayernik": 3, "mayerson": 3, "mayeux": 2, "mayo": 2, "mayon": 2, "mayonnaise": 3, "mayor": 2, "mayoral": 3, "mayoralty": 4, "mayorga": 3, "mayors": 2, "mayville": 2, "mazes": 2, "mazzeo": 3, "mcbryar": 3, "mccarville": 3, "mcconville": 3, "mcfadyen": 4, "mcginnes": 2, "mckeon": 3, "mckeone": 3, "mckeown": 3, "mcneece": 2, "mcneice": 2, "mcquaid": 2, "mcquaide": 2, "mcquaig": 2, "mcquain": 2, "measurement": 3, "measurements": 3, "meaux": 1, "medea": 3, "megahouses": 4, "mehitabelle": 4, "meiyuh": 2, "melanesian": 4, "melbourne": 2, "melded": 2, "melisse": 2, "melle": 1, "melville": 2, "menace": 2, "menaced": 2, "menaces": 3, "mended": 2, "meneses": 3, "menezes": 3, "menges": 2, "menne": 1, "meo": 2, "meola": 3, "meow": 2, "mercedeses": 4, "merdyce": 2, "merges": 2, "merhige": 2, "mersereau": 3, "mertice": 2, "meske": 1, "message": 2, "messages": 3, "messiaen": 3, "messineo": 4, "meteor": 3, "meteoric": 4, "meteorological": 7, "meteorologist": 6, "meteorologists": 6, "meteorology": 6, "mette": 1, "meyerhoff": 3, "meyering": 3, "meyerman": 3, "meyerowitz": 4, "meyerson": 3, "meyo": 2, "meyohas": 3, "micheaux": 2, "michelle": 2, "microage": 3, "microamerica": 6, "microeconomic": 6, "microeconomics": 6, "microelectronic": 6, "microelectronics": 6, "microelettronica": 7, "micromanage": 4, "micromanagement": 5, "microorganism": 6, "micropaleontology": 8, "midges": 2, "midgette": 2, "midpriced": 2, "miesse": 1, "migneault": 2, "milbourne": 2, "mildred": 2, "mileage": 2, "millage": 2, "mille": 1, "millette": 2, "milliet": 3, "mimeograph": 4, "minasian": 3, "minassian": 3, "minded": 2, "mindedly": 3, "mineau": 2, "mineo": 3, "mineola": 4, "minette": 2, "minges": 2, "mingled": 2, "minibuses": 4, "minichiello": 5, "minimizes": 4, "mintage": 2, "minuses": 3, "mion": 2, "mione": 2, "mirabelle": 3, "mirage": 2, "mirelle": 2, "miscayuna": 4, "mischarges": 3, "mises": 2, "mishandled": 3, "misjudged": 2, "miske": 1, "mismanaged": 3, "mismanagement": 4, "mismatches": 3, "misplace": 2, "misplaced": 2, "mispriced": 2, "misstatement": 3, "misstatements": 3, "misuses": 3, "mixes": 2, "miyagawa": 4, "miyahara": 4, "miyako": 3, "miyamori": 4, "miyamoto": 4, "miyasaki": 4, "miyasato": 4, "miyashiro": 4, "miyazaki": 4, "miyazawa": 4, "mizelle": 2, "moccia": 2, "modisette": 3, "moises": 2, "molded": 2, "molineaux": 3, "molle": 1, "molyneaux": 3, "momayez": 3, "moncayo": 3, "monceaux": 2, "mondeo": 3, "monette": 2, "mongeau": 2, "mongering": 3, "mongooses": 3, "monopolizes": 5, "monroeville": 3, "montage": 2, "montagne": 2, "montemayor": 4, "montesdeoca": 5, "montevideo": 5, "montoya": 3, "montreal": 3, "montville": 2, "moragne": 2, "moreau": 2, "morice": 2, "morisette": 3, "morissette": 3, "moriya": 3, "morneau": 2, "morneault": 2, "morreale": 3, "morrisette": 3, "morrissette": 3, "morrisville": 3, "mortage": 2, "mortages": 3, "mortgage": 2, "mortgaged": 2, "mortgages": 3, "mortician": 3, "moselle": 2, "moses": 2, "mosque": 1, "mosques": 1, "mousse": 1, "mousseau": 2, "mouthed": 1, "mouthpiece": 2, "mouthpieces": 3, "movement": 2, "movements": 2, "moya": 2, "mozelle": 2, "Muammar": 3, "muddled": 2, "muffled": 2, "mughniyeh": 3, "mugniyah": 3, "mullineaux": 3, "multilayered": 4, "multivalve": 3, "multiyear": 3, "mumbled": 2, "mumme": 1, "murayama": 4, "muscled": 2, "muses": 2, "musician": 3, "musicians": 3, "muske": 1, "mustached": 2, "muzzled": 2, "myatt": 2, "myelin": 3, "myreon": 3, "myrtice": 2, "nadeau": 2, "nagoya": 3, "nairne": 1, "nakayama": 4, "nanette": 2, "naperville": 3, "napoleon": 4, "napoleonic": 5, "narayan": 3, "narayanan": 4, "narcisse": 2, "nardiello": 4, "nashua": 3, "nashville": 2, "nathe": 1, "navarette": 3, "navarrette": 3, "Nazarbayev": 4, "neault": 1, "nechayev": 3, "necklace": 2, "necklaces": 3, "nedeau": 2, "nederlandsche": 4, "needled": 2, "neises": 2, "nelle": 1, "nelles": 1, "nellette": 2, "neo": 2, "neoclassic": 4, "neoclassical": 5, "neoconservative": 6, "neoconservatives": 6, "neola": 3, "neoliberal": 5, "neoliberals": 5, "neoma": 3, "neon": 2, "neonatal": 4, "neons": 2, "neophyte": 3, "neophytes": 3, "neoplasm": 4, "neoplatonic": 5, "neoplatonist": 5, "neoprene": 3, "neoprobe": 3, "neotenic": 4, "neoteny": 4, "nerice": 2, "nerves": 1, "neste": 1, "netterville": 3, "neuroses": 3, "neutralizes": 4, "neuville": 2, "neveau": 2, "neville": 2, "newfangled": 3, "newlywed": 3, "newville": 2, "nguyen": 2, "nibbled": 2, "nicely": 2, "niceness": 2, "nickelodeon": 5, "nicolette": 3, "nicolle": 2, "nicorette": 3, "nieces": 2, "nietzsche": 2, "nightstage": 2, "nilges": 2, "nilles": 1, "ninette": 2, "nishiyama": 4, "nixes": 2, "noa": 2, "noblesse": 2, "nobuyuki": 4, "nodded": 2, "noises": 2, "nolette": 2, "nonbusiness": 3, "noncontroversial": 5, "nonesuch": 2, "nonetheless": 3, "nonmanagement": 4, "norcia": 2, "norville": 2, "noses": 2, "notches": 2, "notice": 2, "noticed": 2, "notices": 3, "nottage": 2, "nouveau": 2, "nouvelle": 2, "novice": 2, "novices": 3, "novoa": 3, "noyola": 3, "nuanced": 2, "nuances": 3, "nucleonics": 4, "nucleotide": 4, "nudges": 2, "nuisances": 3, "nureyev": 3, "nyack": 2, "nyenhuis": 3, "nyerere": 3, "oakville": 2, "obeirne": 2, "oblige": 2, "obliged": 2, "obliges": 3, "obryan": 3, "obryant": 3, "observances": 4, "observes": 2, "obstetrician": 4, "obstetricians": 4, "obyrne": 2, "occhoa": 3, "occurrences": 4, "ochoa": 3, "odea": 3, "odelette": 3, "odeon": 3, "odette": 2, "oesterreichische": 5, "offended": 3, "office": 2, "offices": 3, "offstage": 2, "ogled": 2, "ohanesian": 4, "OHara": 3, "ohbayashi": 4, "olayan": 3, "oleo": 3, "olivette": 3, "omnibuses": 4, "oneness": 2, "oneok": 3, "onstage": 2, "oozes": 2, "opposes": 3, "opticians": 3, "orabelle": 3, "oranges": 3, "ordinances": 4, "oreffice": 3, "orefice": 3, "oreo": 3, "organelles": 3, "organizes": 4, "orgasm": 3, "orifices": 4, "orne": 1, "orphanage": 3, "orphanages": 4, "orville": 2, "osage": 2, "osages": 3, "osborne": 2, "osbourne": 2, "osceola": 4, "osteopathic": 5, "osteoporosis": 6, "osterreichische": 5, "ouelette": 3, "ouellette": 3, "ounces": 2, "outage": 2, "outages": 3, "outhouses": 3, "outpace": 2, "outpaced": 2, "outpaces": 3, "outplacement": 3, "outrage": 2, "outraged": 2, "outrageous": 3, "outrageously": 4, "outrages": 3, "outweighed": 2, "ovalle": 2, "overcharges": 4, "overcrowded": 4, "overdoses": 4, "overextended": 5, "overfunded": 4, "overpriced": 3, "overproduce": 4, "overproduced": 4, "overreached": 3, "overseer": 4, "overseers": 4, "oversizes": 4, "overstatement": 4, "overstatements": 4, "oyama": 3, "oyen": 2, "oyola": 3, "ozanne": 2, "ozelle": 2, "paccione": 3, "paces": 2, "package": 2, "packaged": 2, "packages": 3, "padded": 2, "paddled": 2, "padua": 3, "pages": 2, "pagette": 2, "paille": 1, "palace": 2, "palaces": 3, "paleobotany": 6, "paleocene": 4, "paleontology": 6, "palette": 2, "paniccia": 3, "pantaleo": 4, "pantheon": 3, "panzhihua": 4, "papaleo": 4, "papaya": 3, "papayas": 3, "papering": 3, "papineau": 3, "papua": 3, "paradoxes": 4, "paraguayan": 4, "paralyzes": 4, "parazoa": 4, "parcplace": 2, "parentage": 3, "parenteau": 3, "parentheses": 4, "pariseau": 3, "parisian": 3, "parizeau": 3, "parlette": 2, "parnes": 1, "parsonage": 3, "partridges": 3, "pascua": 3, "paseo": 3, "paske": 1, "pasquariello": 5, "pasque": 1, "passage": 2, "passages": 3, "paste": 1, "pastes": 1, "patches": 2, "pathe": 1, "patrice": 2, "patricia": 3, "patrician": 3, "patricians": 3, "patronage": 3, "paulette": 2, "pauses": 2, "pavement": 2, "pavements": 2, "payable": 3, "payables": 3, "payan": 2, "payeur": 2, "payoff": 2, "payoffs": 2, "payola": 3, "payout": 2, "payouts": 2, "peaceful": 2, "peacefully": 3, "pebereau": 3, "peddled": 2, "peerage": 2, "peladeau": 3, "pelayo": 3, "pelle": 1, "peloponnesian": 5, "penalizes": 4, "peon": 2, "peonies": 3, "peons": 2, "peony": 3, "peoria": 4, "percentage": 3, "percentages": 4, "perches": 2, "performances": 4, "permissiveness": 4, "pernice": 2, "perplexes": 3, "perreault": 2, "perriello": 4, "persian": 2, "persians": 2, "pervasiveness": 4, "petroleos": 4, "petrossian": 3, "phalanges": 3, "phantasm": 3, "phases": 2, "phileo": 3, "phoenicia": 3, "phoenician": 3, "phoenicians": 3, "phrases": 2, "phua": 2, "physician": 3, "physicians": 3, "phytogeography": 6, "picariello": 5, "picayune": 3, "piccione": 3, "pichette": 2, "pickled": 2, "picturesque": 3, "pieces": 2, "piet": 2, "pilferage": 3, "pilgrimage": 3, "pilgrimages": 4, "pillage": 2, "pillaged": 2, "pillages": 3, "pille": 1, "pincavage": 3, "pineau": 2, "pineo": 3, "pinette": 2, "pinneo": 3, "pinsoneault": 3, "pion": 2, "pioneer": 3, "pioneered": 3, "pioneering": 4, "pioneers": 3, "piontek": 3, "piontkowski": 4, "pirouettes": 3, "pitches": 2, "placement": 2, "placements": 2, "placencia": 3, "places": 2, "plaguing": 2, "plainclothes": 2, "plascencia": 3, "plasencia": 3, "plasse": 1, "plateau": 2, "plateaued": 2, "playa": 2, "playoff": 2, "playoffs": 2, "pleasantville": 3, "pleases": 2, "pledges": 2, "plisetskaya": 4, "plodded": 2, "plumage": 2, "plumages": 3, "plunges": 2, "pluses": 2, "police": 2, "policed": 2, "polices": 3, "policewoman": 4, "politeness": 3, "politician": 4, "politicians": 4, "pollyanna": 4, "polyacetylene": 6, "polyak": 3, "polyamide": 4, "polyandrous": 4, "polyandry": 4, "polyester": 4, "polyesters": 4, "polyethylene": 5, "polymerizes": 5, "polynesian": 4, "pomerleau": 3, "pompeo": 3, "ponsolle": 2, "populace": 3, "porches": 2, "porges": 2, "porpoises": 3, "porsche": 2, "porsches": 2, "portage": 2, "porterages": 4, "portrayal": 3, "portrayals": 3, "poses": 2, "postage": 2, "postponement": 3, "postponements": 3, "postrelle": 2, "poultices": 3, "poundage": 2, "pounded": 2, "powerhouses": 4, "powering": 3, "practice": 2, "practiced": 2, "practices": 3, "praises": 2, "pralle": 1, "prances": 2, "prattville": 2, "preaches": 2, "preadolescent": 5, "preamble": 3, "prearranged": 3, "preceding": 3, "precipice": 3, "predaceous": 3, "preeminence": 4, "preeminent": 4, "preempt": 2, "preempted": 3, "preemption": 3, "preemptive": 3, "preexist": 3, "preexisted": 4, "preexisting": 4, "preexists": 3, "preface": 2, "prefaced": 2, "preferenced": 3, "preferences": 4, "preignition": 4, "preinvasion": 4, "preisler": 3, "prejudged": 2, "prejudice": 3, "prejudiced": 3, "prejudices": 4, "premed": 2, "premiering": 3, "premises": 3, "prentice": 2, "preoccupation": 5, "preoccupations": 5, "preoccupied": 4, "preoccupies": 4, "preoccupy": 4, "preordained": 3, "prepackaged": 3, "prerecorded": 4, "presage": 2, "presaged": 2, "presages": 3, "presences": 3, "preserves": 2, "prestage": 2, "prestige": 2, "presupposes": 4, "pretended": 3, "prevette": 2, "priceless": 2, "prices": 2, "prideaux": 2, "primeau": 2, "primeaux": 2, "primroses": 3, "princes": 2, "princeville": 2, "principled": 3, "prindiville": 3, "prioleau": 3, "prioritizes": 5, "privette": 2, "prizes": 2, "proactive": 3, "probusiness": 3, "procurement": 3, "procurements": 3, "prodded": 2, "produce": 2, "produced": 2, "produces": 3, "prognoses": 3, "programme": 2, "prolonged": 2, "prominences": 4, "promises": 3, "pronounced": 2, "pronouncement": 3, "pronouncements": 3, "pronounces": 3, "propionic": 4, "proposes": 3, "propounded": 3, "proscia": 2, "prospectuses": 4, "prostheses": 3, "proteges": 3, "protozoa": 4, "protuberances": 5, "provideniya": 5, "provinces": 3, "prudhomme": 2, "pruneau": 2, "prussian": 2, "puleo": 3, "pulice": 2, "pumice": 2, "purchases": 3, "purges": 2, "purposes": 3, "purves": 1, "purveyor": 3, "purveyors": 3, "puzzled": 2, "pyatt": 2, "pyeatt": 2, "quadrupled": 3, "quai": 1, "quaid": 1, "quail": 1, "quails": 1, "quain": 1, "quaint": 1, "quaintance": 2, "quaintly": 2, "quamme": 1, "queau": 1, "quebedeaux": 3, "quellette": 2, "quenneville": 3, "queuing": 2, "quintupled": 3, "quivering": 3, "rabideau": 3, "racehorses": 3, "races": 2, "racette": 2, "rachelle": 2, "radborne": 2, "radbourne": 2, "radice": 2, "rages": 2, "ragged": 2, "rahe": 2, "rainville": 2, "raises": 2, "raleses": 3, "ramage": 2, "rambeau": 2, "rambled": 2, "rambling": 2, "rameses": 3, "rampage": 2, "rampaged": 2, "rampages": 3, "ranges": 2, "rankled": 2, "rapprochement": 3, "raske": 1, "rathburne": 2, "rathe": 1, "rattling": 2, "ravaged": 2, "ravages": 3, "raya": 2, "rayon": 2, "rayos": 2, "rayovac": 3, "raytheon": 3, "reabsorbed": 3, "reactionaries": 5, "reactionary": 5, "reactions": 3, "reaganesque": 3, "realign": 3, "realigned": 3, "realigning": 4, "realignment": 4, "realignments": 4, "realistic": 4, "realities": 4, "reality": 4, "realizable": 5, "realizes": 4, "reallocate": 4, "reallocated": 5, "reallocating": 5, "reallocation": 5, "reallowance": 4, "realtor": 3, "realtors": 3, "realty": 3, "reappraised": 3, "reaume": 1, "reaux": 1, "rebounded": 3, "receding": 3, "recognizes": 4, "recommended": 4, "recorded": 3, "recovering": 4, "recycled": 3, "redhanded": 3, "rediscovering": 5, "redoubled": 3, "reduce": 2, "reduced": 2, "reduces": 3, "reemerge": 3, "reemerged": 3, "reestablished": 4, "referenced": 3, "references": 4, "refering": 3, "refinanced": 3, "refinances": 4, "refinement": 3, "refinements": 3, "reflexes": 3, "refocuses": 4, "refuge": 2, "refuges": 3, "refunded": 3, "refuses": 3, "regarded": 3, "reimposed": 3, "rejiggering": 4, "rejoice": 2, "rejoiced": 2, "rekindled": 3, "relaunched": 2, "relaxes": 3, "releases": 3, "remanded": 3, "remembrances": 4, "reminded": 3, "reminisced": 3, "reminiscences": 5, "remittances": 4, "remme": 1, "remolded": 3, "remoteness": 3, "remoulded": 3, "reneau": 2, "renege": 2, "reneged": 2, "renne": 1, "renounced": 2, "reo": 2, "reoffer": 3, "reoffered": 3, "reoffering": 4, "reopen": 3, "reopened": 3, "reopening": 4, "reopens": 3, "reorder": 3, "reordering": 4, "reorganization": 6, "reorganizations": 6, "reorganize": 4, "reorganized": 4, "reorganizes": 5, "reorganizing": 5, "repackage": 3, "repackaged": 3, "repackages": 4, "repayable": 4, "replace": 2, "replaced": 2, "replacement": 3, "replacements": 3, "replaces": 3, "reportage": 3, "reprice": 2, "repriced": 2, "reprimanded": 4, "reproduce": 3, "reproduced": 3, "reproduces": 4, "repurchases": 4, "requirement": 3, "requirements": 3, "rescinded": 3, "researches": 3, "resemblances": 4, "resembled": 3, "reserves": 2, "reshuffled": 3, "residences": 4, "resistiveness": 4, "reske": 1, "resolve": 2, "resolves": 2, "resources": 3, "responded": 3, "responsiveness": 4, "restaged": 2, "restatement": 3, "restatements": 3, "restiveness": 3, "restrictiveness": 4, "resurface": 3, "resurfaced": 3, "retarded": 3, "retirements": 3, "retrace": 2, "retraced": 2, "retracement": 3, "retrenched": 2, "retroviruses": 5, "reused": 2, "revelle": 2, "revette": 2, "reville": 2, "revises": 3, "revolve": 2, "revolves": 2, "rewarded": 3, "rhapsodizes": 4, "rheault": 1, "rheaume": 1, "rhetoricians": 4, "rhodesian": 3, "rhythm": 2, "riddled": 2, "rideau": 2, "rideaux": 2, "ridges": 2, "riendeau": 2, "rifled": 2, "righteous": 2, "righteously": 3, "righteousness": 3, "rillette": 2, "rinne": 1, "rion": 2, "riposte": 2, "ripostes": 2, "rippeon": 3, "rippled": 2, "rises": 2, "riske": 1, "risse": 1, "riverbed": 3, "rivette": 2, "riviello": 4, "riyad": 2, "riyadh": 2, "riyals": 2, "roa": 2, "robicheaux": 3, "robideau": 3, "robinette": 3, "robitaille": 3, "rocheleau": 3, "rochelle": 2, "rochette": 2, "rockville": 2, "rodeo": 3, "rodeos": 3, "roebling": 2, "roelle": 1, "roeske": 1, "rohleder": 3, "rolle": 1, "romances": 3, "romanesque": 3, "romaniello": 5, "romelle": 2, "romeo": 3, "rondeau": 2, "ronne": 1, "rosabelle": 3, "rosanne": 2, "roseanne": 2, "roseberry": 3, "roses": 2, "rosette": 2, "rosettes": 2, "roseville": 2, "roske": 1, "rosse": 1, "rossiya": 3, "rothe": 1, "rototilles": 3, "rougeau": 2, "rouleau": 2, "roulette": 2, "roulettes": 2, "rounded": 2, "rounsaville": 3, "rousse": 1, "rousseau": 2, "rousselle": 2, "rowlette": 2, "roxanne": 2, "royal": 2, "royale": 2, "royalist": 3, "royall": 2, "royals": 2, "royalties": 3, "royalty": 3, "royces": 2, "royex": 2, "rozelle": 2, "rua": 2, "rudelle": 2, "rudeness": 2, "ruffled": 2, "rugged": 2, "ruggedly": 3, "rumage": 2, "rumbled": 2, "rummage": 2, "rumpled": 2, "ruses": 2, "russe": 1, "russellville": 3, "russian": 2, "russians": 2, "ryal": 2, "ryall": 2, "ryals": 2, "ryan": 2, "ryanair": 3, "ryans": 2, "ryen": 2, "sabotage": 3, "sabotaged": 3, "sackville": 2, "sacred": 2, "sacrifice": 3, "sacrificed": 3, "sacrifices": 4, "sacrilege": 3, "saddled": 2, "sages": 2, "salemme": 2, "saleswoman": 3, "saleswomen": 3, "salle": 1, "salvage": 2, "salvaged": 2, "salve": 1, "salves": 1, "samelle": 2, "sameness": 2, "samoa": 3, "sampled": 2, "sancia": 2, "sandage": 2, "sanded": 2, "sandwiched": 2, "sannes": 1, "santaniello": 5, "santayana": 4, "santoyo": 3, "sanville": 2, "sapoa": 3, "sarcasm": 3, "sarette": 2, "sarkisian": 3, "sarkissian": 3, "sasse": 1, "satirizes": 4, "sauces": 2, "sausage": 2, "sausages": 3, "sauternes": 2, "sauvage": 2, "sauvageau": 3, "savage": 2, "savaged": 2, "savagely": 3, "savages": 3, "saville": 2, "sawaya": 3, "sawtelle": 2, "sayad": 2, "sayegh": 2, "scaccia": 2, "scarface": 2, "scarves": 1, "scherer": 2, "schering": 2, "schiewe": 2, "schnelle": 1, "scholle": 1, "scion": 2, "scolded": 2, "sconces": 2, "scorpion": 3, "scorpions": 3, "scotches": 2, "scourges": 2, "scoville": 2, "scrambled": 2, "scratches": 2, "scribbled": 2, "scrimmage": 2, "scrutinizes": 4, "scuffled": 2, "seaborne": 2, "searches": 2, "sebaceous": 3, "seceding": 3, "seconded": 3, "secretiveness": 4, "seduce": 2, "seduced": 2, "seepage": 2, "seethe": 1, "seigniorage": 4, "seiyaku": 3, "seiyu": 2, "seizes": 2, "selle": 1, "selvage": 2, "selves": 1, "semiautomatic": 6, "semionenkov": 5, "semmes": 1, "senne": 1, "sensitiveness": 4, "sentelle": 2, "sentenced": 2, "sentences": 3, "seo": 2, "seow": 2, "separateness": 4, "sequoyah": 3, "serves": 1, "service": 2, "serviced": 2, "services": 3, "sette": 1, "severing": 3, "seville": 2, "sewage": 2, "sewerage": 3, "sexes": 2, "sfernice": 2, "shackled": 2, "shaquille": 2, "sharpeville": 3, "sheathe": 1, "sheathed": 1, "shelburne": 2, "shelbyville": 3, "shelve": 1, "shelves": 1, "shepherded": 3, "sherborne": 2, "sherbourne": 2, "sherburne": 2, "shielded": 2, "shigeo": 3, "shionogi": 4, "shivering": 3, "shiyuan": 3, "shoelace": 2, "shoelaces": 3, "shortage": 2, "shortages": 3, "shortchanged": 2, "showcases": 3, "showering": 3, "showpiece": 2, "showplace": 2, "shredded": 2, "shreveport": 2, "shrinkage": 2, "shuffled": 2, "shuffling": 2, "siang": 1, "sias": 1, "sibelle": 2, "sibille": 2, "sibling": 2, "siblings": 2, "sidekick": 2, "sideline": 2, "sidelined": 2, "sidelines": 2, "sideman": 2, "sideshow": 2, "sidestep": 2, "sidestepped": 2, "sidestepping": 3, "sidesteps": 2, "sidestream": 2, "sidetrack": 2, "sidewalk": 2, "sidewalks": 2, "sidewater": 3, "sideways": 2, "sidewinder": 3, "sidewise": 2, "signage": 2, "silenced": 2, "silences": 3, "sileo": 3, "silhouette": 3, "silhouettes": 3, "silverthorne": 3, "simeon": 3, "simeone": 3, "simoneau": 3, "simoneaux": 3, "simonette": 3, "simpleminded": 4, "simplesse": 2, "sincavage": 3, "Sindayen": 3, "singled": 2, "singlehandedly": 5, "sinuses": 3, "sithe": 1, "sixes": 2, "sizes": 2, "sizzled": 2, "skeoch": 2, "sketches": 2, "skewering": 3, "skidded": 2, "skyboxes": 3, "slaughterhouses": 4, "slices": 2, "slippage": 2, "smoothed": 1, "smuggled": 2, "smythe": 1, "snarled": 2, "snatches": 2, "sobering": 3, "socia": 2, "softimage": 3, "soileau": 2, "sokaiya": 3, "solace": 2, "soldiering": 3, "solve": 1, "solves": 1, "somerville": 3, "sommerville": 3, "sonne": 1, "soothe": 1, "soothed": 1, "soothes": 1, "sorbonne": 2, "sorcerer": 3, "sorcerers": 3, "sorice": 2, "sotomayor": 4, "sounded": 2, "sources": 2, "sourrouille": 3, "sovetskaya": 4, "soviet": 3, "sovietologist": 6, "soya": 2, "soyars": 2, "soysauce": 2, "soyuz": 2, "spaceport": 2, "spaces": 2, "spaceship": 2, "spaceships": 2, "spangled": 2, "sparkled": 2, "spasm": 2, "specializes": 4, "speckled": 2, "spices": 2, "splices": 2, "spoilage": 2, "spokeswoman": 3, "spokewoman": 3, "sponges": 2, "sporleder": 3, "spouses": 2, "springerville": 3, "sprinkled": 2, "squabbled": 2, "squillace": 2, "stabilizes": 4, "stacia": 2, "stages": 2, "staggering": 3, "staircases": 3, "stampeding": 3, "stances": 2, "stapled": 2, "starches": 2, "starnes": 1, "statement": 2, "statements": 2, "stateside": 2, "statistician": 4, "statisticians": 4, "stayover": 3, "stayovers": 3, "steakhouses": 3, "stearne": 1, "steenkiste": 2, "stelle": 1, "stephenville": 3, "stereo": 3, "stereographic": 5, "stereos": 3, "stereotype": 4, "stereotyped": 4, "stereotypes": 4, "stereotypical": 6, "stereotyping": 5, "sterilizes": 4, "sterne": 1, "steubenville": 3, "stifled": 2, "stille": 1, "stinnette": 2, "stitches": 2, "stockbrokerage": 4, "stockbrokerages": 5, "stolichnaya": 4, "stolle": 1, "stooges": 2, "stoppage": 2, "stoppages": 3, "stopwatches": 3, "storage": 2, "straddled": 2, "straddling": 2, "straggled": 2, "straitlaced": 2, "stranded": 2, "strangeness": 2, "strangled": 2, "stretches": 2, "stromme": 1, "struggled": 2, "studded": 2, "stumbled": 2, "stumpage": 2, "sturges": 2, "stuteville": 2, "subsidizes": 4, "substances": 3, "subsurface": 3, "subterfuge": 3, "suffice": 2, "sufficed": 2, "suffices": 3, "suffrage": 2, "suffragettes": 3, "suggestiveness": 4, "sugiyama": 4, "suisse": 1, "suitcases": 3, "sukiyaki": 4, "summarizes": 4, "summerville": 3, "superseding": 4, "supervises": 4, "supposedly": 4, "supposes": 3, "surcharges": 3, "surette": 2, "surface": 2, "surfaced": 2, "surfaceness": 3, "surfaces": 3, "surges": 2, "surmises": 3, "surpluses": 3, "surprises": 3, "surrealisms": 4, "surrette": 2, "surrounded": 3, "surtaxes": 3, "surveyor": 3, "surveyors": 3, "susanne": 2, "susette": 2, "suspended": 3, "suzanne": 2, "suzette": 2, "sverige": 2, "swaggering": 3, "swatches": 2, "swathed": 1, "swinburnes": 2, "swindled": 2, "switches": 2, "sybille": 2, "symbion": 3, "symbolizes": 4, "symmes": 1, "sympathizes": 4, "syringes": 3, "tableau": 2, "tableaux": 2, "tabled": 2, "tackled": 2, "tactician": 3, "tacticians": 3, "taddeo": 3, "tafoya": 3, "taiyo": 2, "takashimaya": 5, "takayama": 4, "takeo": 3, "talmage": 2, "tamayo": 3, "tangled": 2, "tapering": 3, "tasm": 2, "taste": 1, "tasteful": 2, "tastefully": 3, "tasteless": 2, "tastes": 1, "tauruses": 3, "taxes": 2, "teases": 2, "tebeau": 2, "technician": 3, "technicians": 3, "teenage": 2, "teenaged": 2, "telemanagement": 5, "televideo": 5, "telexes": 3, "telles": 1, "temme": 1, "tended": 2, "teo": 2, "teodoro": 4, "teriyaki": 4, "ternes": 1, "terrace": 2, "terraced": 2, "terraces": 3, "terrorizes": 4, "teruya": 3, "teske": 1, "tetreault": 2, "thaddea": 3, "thatches": 2, "thebeau": 2, "themselves": 2, "theo": 2, "theobald": 3, "theocracy": 4, "theocratic": 4, "theodor": 3, "theodora": 4, "theodore": 3, "theodorou": 4, "theodric": 3, "theola": 3, "theologian": 5, "theological": 5, "theology": 4, "theon": 2, "theone": 2, "theophania": 5, "theophila": 4, "theora": 3, "theoretical": 5, "theoretically": 6, "theorist": 3, "theorists": 3, "theorize": 3, "theorized": 3, "theorizes": 4, "theorizing": 4, "theses": 2, "thibadeau": 3, "thibeau": 2, "thibeault": 2, "thibeaux": 2, "thibedeau": 3, "thibodeau": 3, "thibodeaux": 3, "thinnes": 1, "thoennes": 1, "thomases": 3, "thomasville": 3, "thoreau": 2, "thorne": 1, "thoroughbred": 3, "throneberry": 3, "tickled": 2, "tilles": 1, "timme": 1, "tinkled": 2, "tithe": 1, "titusville": 3, "toa": 2, "toddling": 2, "toelle": 1, "toggled": 2, "toggling": 2, "tokuyama": 4, "tolerances": 4, "tolle": 1, "tolles": 1, "tomeo": 3, "tondreau": 2, "tonnage": 2, "tonnages": 3, "tonne": 1, "tonnes": 1, "toothed": 1, "toothpaste": 2, "toothpastes": 2, "toppled": 2, "torches": 2, "torosian": 3, "torreon": 3, "torsiello": 4, "tortoises": 3, "tortorice": 3, "tortoriello": 5, "toshiyuki": 4, "toste": 1, "touchette": 2, "tourangeau": 3, "tourville": 2, "towering": 3, "townhouses": 3, "toyama": 3, "toyo": 2, "toyobo": 3, "toyoda": 3, "toyoo": 2, "toyota": 3, "toyotas": 3, "traces": 2, "tracheophytes": 4, "trackage": 2, "trageser": 3, "trampled": 2, "transcended": 3, "transimage": 3, "treatises": 3, "trebled": 2, "trefgarne": 2, "treharne": 2, "trembled": 2, "trended": 2, "treon": 2, "triage": 2, "tricia": 2, "trickled": 2, "trieste": 1, "triggering": 3, "tripled": 2, "trivette": 2, "trivializes": 5, "troubled": 2, "troyan": 2, "troyanos": 3, "troyat": 2, "troyu": 2, "trudeau": 2, "trudges": 2, "trundled": 2, "tryart": 2, "tsiang": 1, "tsuneo": 3, "tuberville": 3, "tumbled": 2, "tunisian": 3, "turberville": 3, "turbocharges": 4, "turenne": 2, "turnage": 2, "turville": 2, "tussled": 2, "tutelage": 3, "twelve": 1, "twitches": 2, "udelle": 2, "ulloa": 3, "umbrage": 2, "unabashedly": 5, "unabridged": 3, "unacknowledged": 4, "unamended": 4, "unannounced": 3, "unattached": 3, "unattended": 4, "unbalanced": 3, "unbounded": 3, "unbranded": 3, "unbridled": 3, "unchallenged": 3, "unchanged": 2, "uncontroversial": 5, "unconvinced": 3, "uncovering": 4, "undamaged": 3, "underage": 3, "underfinanced": 4, "underfunded": 4, "underhanded": 4, "underprice": 3, "underpriced": 3, "understatement": 4, "unemployable": 5, "unfenced": 2, "unfolded": 3, "unfounded": 3, "unfunded": 3, "Ungeheuer": 4, "ungerer": 3, "unguarded": 3, "unhedged": 2, "unheralded": 4, "unhinged": 2, "unintended": 4, "unionfed": 3, "uniroyal": 4, "unmanage": 3, "unmanaged": 3, "unnoticed": 3, "unpayable": 4, "unplaced": 2, "unprincipled": 4, "unreality": 5, "unrealized": 4, "unrecorded": 4, "unruffled": 3, "unscathed": 2, "unshackled": 3, "untouched": 2, "untroubled": 3, "unwavering": 4, "upended": 3, "upstage": 2, "upstaged": 2, "Ural": 2, "urges": 2, "Urquart": 2, "uruguayan": 4, "usage": 2, "usages": 3, "uses": 2, "uthe": 1, "utilizes": 4, "Uttar": 2, "utterances": 4, "uyeda": 3, "uyehara": 4, "uyeno": 3, "Uzis": 2, "vacaville": 3, "valeo": 3, "valle": 1, "valleau": 2, "vallely": 2, "valles": 1, "vallette": 2, "valve": 1, "valves": 1, "vanasse": 2, "vandamme": 2, "vanderslice": 3, "vandewalle": 3, "vanhorne": 2, "vannguyen": 3, "vannice": 2, "vanscoyoc": 3, "vantage": 2, "vantages": 3, "variances": 4, "varnes": 1, "varves": 1, "vases": 2, "vaske": 1, "vaudeville": 2, "vaxes": 2, "vedette": 2, "veillette": 2, "velayati": 4, "venereal": 4, "venice": 2, "venne": 1, "venturesome": 3, "verbiage": 3, "verges": 2, "verhage": 2, "vermette": 2, "verne": 1, "vernes": 1, "verrette": 2, "versace": 2, "versailles": 2, "verville": 2, "vestige": 2, "vestiges": 3, "vette": 1, "vices": 2, "video": 3, "videodisk": 4, "videodisks": 4, "videogame": 4, "videophone": 4, "videos": 3, "videotape": 4, "videotaped": 4, "videotapes": 4, "videotaping": 5, "videotex": 4, "videotext": 4, "videotron": 4, "vienneau": 2, "viet": 2, "vigneau": 2, "vigneault": 2, "vignette": 2, "vignettes": 2, "village": 2, "villages": 3, "villareal": 4, "ville": 1, "villette": 2, "vincelette": 3, "vindictiveness": 4, "vingmed": 2, "vintage": 2, "vintages": 3, "violation": 4, "violette": 3, "viruses": 3, "visage": 2, "vitiello": 4, "viverette": 3, "viyella": 3, "vizcaya": 3, "voges": 2, "voiceless": 2, "voices": 2, "volle": 1, "voltage": 2, "voltages": 3, "voyage": 2, "voyaged": 2, "voyager": 3, "voyagers": 3, "voyages": 3, "voyeur": 2, "voyeurism": 4, "vremya": 3, "wadded": 2, "waffled": 2, "waffling": 2, "wagering": 3, "wages": 2, "wakabayashi": 5, "wallace": 2, "walle": 1, "walles": 1, "wallpapering": 4, "walruses": 3, "wangled": 2, "wantage": 2, "wantages": 3, "warded": 2, "warehime": 2, "warehouse": 2, "warehousing": 3, "warmongering": 4, "warne": 1, "warnes": 1, "washburne": 2, "wasmer": 3, "waste": 1, "wasteful": 2, "wastes": 1, "watches": 2, "waterbed": 3, "waterborne": 3, "watsonville": 3, "wavering": 3, "waxes": 2, "Wayans": 2, "waynesville": 2, "wedded": 2, "wedges": 2, "weisse": 1, "welborne": 2, "welded": 2, "welle": 1, "welles": 1, "wentzville": 2, "wernette": 2, "wesleyan": 3, "westburne": 2, "westfaelisches": 4, "weyand": 2, "weyandt": 2, "weyant": 2, "whampoa": 3, "wheezes": 2, "whiteness": 2, "whiteside": 2, "whitesides": 2, "whittling": 2, "wholesome": 2, "wicked": 2, "wickedly": 3, "wielded": 2, "wilbourne": 2, "willabelle": 3, "willamette": 3, "wille": 1, "willes": 1, "willette": 2, "wilmette": 2, "winborne": 2, "winded": 2, "winne": 1, "winterbourne": 3, "wion": 2, "witches": 2, "wobbled": 2, "woeste": 1, "wolle": 1, "wolves": 1, "worded": 2, "workplace": 2, "workplaces": 3, "wounded": 2, "wrangled": 2, "wreckage": 2, "wretched": 2, "wretchedly": 3, "wrinkled": 2, "wristwatches": 3, "wyand": 2, "wyant": 2, "wyatt": 2, "wyeth": 2, "wynne": 1, "wythe": 1, "xinhua": 3, "Yanayev": 3, "yardage": 2, "yasuyoshi": 4, "yelle": 1, "yeo": 2, "yeses": 2, "yeske": 1, "yevette": 2, "yielded": 2, "ying": 1, "yinger": 2, "yodice": 2, "yohe": 2, "yokoyama": 4, "yoneyama": 4, "yourselves": 2, "youville": 2, "yuille": 1, "yvette": 2, "yvonne": 2, "zanoyan": 3, "zaske": 1, "zaslavskaya": 4, "zayac": 2, "zayas": 2, "zeebrugge": 3, "zegeer": 2, "zelaya": 3, "zelle": 1, "zeoli": 3, "zeos": 2, "zieske": 1, "zion": 2, "zionism": 4, "zionist": 3, "zionists": 3, "zions": 2, "zises": 2, "ziyad": 2, "ziyang": 2, "zoologist": 4, "zoology": 4, "zornes": 1 } prose-1.2.1/testdata/title.json000066400000000000000000000216451377030147400165060ustar00rootroot00000000000000[ { "input": "follow step-by-step instructions", "expect": "Follow Step-by-Step Instructions" }, { "input": "follow step-BY-step instructions", "expect": "Follow Step-by-Step Instructions" }, { "input": "this sub-phrase is nice", "expect": "This Sub-Phrase Is Nice" }, { "input": "catchy title: a subtitle", "expect": "Catchy Title: A Subtitle" }, { "input": "catchy title: \"a quoted subtitle\"", "expect": "Catchy Title: \"A Quoted Subtitle\"" }, { "input": "catchy title: “‘a twice quoted subtitle’”", "expect": "Catchy Title: “‘A Twice Quoted Subtitle’”" }, { "input": "\"a title inside double quotes\"", "expect": "\"A Title Inside Double Quotes\"" }, { "input": "all words capitalized", "expect": "All Words Capitalized" }, { "input": "small words are for by and of lowercase", "expect": "Small Words Are for by and of Lowercase" }, { "input": "a small word starts", "expect": "A Small Word Starts" }, { "input": "a small word it ends on", "expect": "A Small Word It Ends On" }, { "input": "do questions work?", "expect": "Do Questions Work?" }, { "input": "multiple sentences. more than one.", "expect": "Multiple Sentences. More Than One." }, { "input": "Ends with small word of", "expect": "Ends With Small Word Of" }, { "input": "double quoted \"inner\" word", "expect": "Double Quoted \"Inner\" Word" }, { "input": "single quoted 'inner' word", "expect": "Single Quoted 'Inner' Word" }, { "input": "fancy double quoted “inner” word", "expect": "Fancy Double Quoted “Inner” Word" }, { "input": "fancy single quoted ‘inner’ word", "expect": "Fancy Single Quoted ‘Inner’ Word" }, { "input": "this vs. that", "expect": "This vs. That" }, { "input": "this vs that", "expect": "This vs That" }, { "input": "this v. that", "expect": "This v. That" }, { "input": "this v that", "expect": "This v That" }, { "input": "catchy title: substance subtitle", "expect": "Catchy Title: Substance Subtitle" }, { "input": "have you read “The Lottery”?", "expect": "Have You Read “The Lottery”?" }, { "input": "Drink this piña colada while you listen to ænima", "expect": "Drink This Piña Colada While You Listen to Ænima" }, { "input": "don't break", "expect": "Don't Break" }, { "input": "we keep NASA capitalized", "expect": "We Keep NASA Capitalized" }, { "input": "leave Q&A unscathed", "expect": "Leave Q&A Unscathed" }, { "input": "your hair[cut] looks (nice)", "expect": "Your Hair[cut] Looks (Nice)" }, { "input": "keep that colo(u)r", "expect": "Keep That Colo(u)r" }, { "input": "capitalize hyphenated words on-demand", "expect": "Capitalize Hyphenated Words On-Demand" }, { "input": "take them on: special lower cases", "expect": "Take Them On: Special Lower Cases" }, { "input": "Notes and observations regarding Apple’s announcements from ‘The Beat Goes On’ special event", "expect": "Notes and Observations Regarding Apple’s Announcements From ‘The Beat Goes On’ Special Event" }, { "input": "a title and/or string", "expect": "A Title and/or String" }, { "input": "dance with me/let’s face the music and dance", "expect": "Dance With Me/Let’s Face the Music and Dance" }, { "input": "34th 3rd 2nd", "expect": "34th 3rd 2nd" }, { "input": "Q&A with steve jobs: 'that's what happens in technology'", "expect": "Q&A With Steve Jobs: 'That's What Happens in Technology'" }, { "input": "What is AT&T's problem?", "expect": "What Is AT&T's Problem?" }, { "input": "Apple deal with AT&T falls through", "expect": "Apple Deal With AT&T Falls Through" }, { "input": "The SEC's Apple probe: what you need to know", "expect": "The SEC's Apple Probe: What You Need to Know" }, { "input": "The SEC's Apple probe: what you need to know", "expect": "The SEC's Apple Probe: What You Need to Know" }, { "input": "'by the Way, small word at the start but within quotes.'", "expect": "'By the Way, Small Word at the Start but Within Quotes.'" }, { "input": "Small word at end is nothing to be afraid of", "expect": "Small Word at End Is Nothing to Be Afraid Of" }, { "input": "Starting Sub-Phrase With a Small Word: a Trick, Perhaps?", "expect": "Starting Sub-Phrase With a Small Word: A Trick, Perhaps?" }, { "input": "Sub-Phrase With a Small Word in Quotes: 'a Trick, Perhaps?'", "expect": "Sub-Phrase With a Small Word in Quotes: 'A Trick, Perhaps?'" }, { "input": "Starting a Hyphen Delimited Sub-Phrase With a Small Word - a Trick, Perhaps?", "expect": "Starting a Hyphen Delimited Sub-Phrase With a Small Word - A Trick, Perhaps?" }, { "input": "Hyphen Delimited Sub-Phrase With a Small Word in Quotes - 'a Trick, Perhaps?'", "expect": "Hyphen Delimited Sub-Phrase With a Small Word in Quotes - 'A Trick, Perhaps?'" }, { "input": "Snakes on a Plane - The TV Edit - The Famous Line", "expect": "Snakes on a Plane - The TV Edit - The Famous Line" }, { "input": "Starting an Em Dash Delimited Sub-Phrase With a Small Word — a Trick, Perhaps?", "expect": "Starting an Em Dash Delimited Sub-Phrase With a Small Word — A Trick, Perhaps?" }, { "input": "Em Dash Delimited Sub-Phrase With a Small Word in Quotes — 'a Trick, Perhaps?'", "expect": "Em Dash Delimited Sub-Phrase With a Small Word in Quotes — 'A Trick, Perhaps?'" }, { "input": "Snakes on a Plane — The TV Edit — The Famous Line", "expect": "Snakes on a Plane — The TV Edit — The Famous Line" }, { "input": "\"Nothing to Be Afraid of?\"", "expect": "\"Nothing to Be Afraid Of?\"" }, { "input": "a thing", "expect": "A Thing" }, { "input": "2lmc Spool: 'gruber on OmniFocus and vapo(u)rware'", "expect": "2lmc Spool: 'Gruber on OmniFocus and Vapo(u)rware'" }, { "input": "reading between the lines of steve jobs’s ‘thoughts on music’", "expect": "Reading Between the Lines of Steve Jobs’s ‘Thoughts on Music’" }, { "input": "seriously, ‘repair permissions’ is voodoo", "expect": "Seriously, ‘Repair Permissions’ Is Voodoo" }, { "input": "generalissimo francisco franco: still dead; kieren McCarthy: still a jackass", "expect": "Generalissimo Francisco Franco: Still Dead; Kieren McCarthy: Still a Jackass" }, { "input": "O'Reilly should be untouched", "expect": "O'Reilly Should Be Untouched" }, { "input": "Mr McTavish went to MacDonalds", "expect": "Mr McTavish Went to MacDonalds" }, { "input": "this shouldn't\nget mangled", "expect": "This Shouldn't\nGet Mangled" }, { "input": "mac mc MAC MC machine", "expect": "Mac Mc MAC MC Machine" }, { "input": "foo bar 5th st", "expect": "Foo Bar 5th St" }, { "input": "hmm ... this is interesting...", "expect": "Hmm ... This Is Interesting..." }, { "input": "a “[“New Entity”],” an [Institution] and [Institution].", "expect": "A “[“New Entity”],” an [Institution] and [Institution]." }, { "input": "This Agreement, dated [DATE] (the “Effective Date”) for Design Services (the “Agreement”) is between [DESIGNER NAME], of [DESIGNER COMPANY](“Designer”), and [CLIENT NAME], of [CLIENT COMPANY] (“Client”) (together known as the “Parties”), for the performance of said Design Services and the production of Deliverables, as described in Schedule A, attached hereto and incorporated herein by reference.", "expect": "This Agreement, Dated [DATE] (The “Effective Date”) for Design Services (The “Agreement”) Is Between [DESIGNER NAME], of [DESIGNER COMPANY](“Designer”), and [CLIENT NAME], of [CLIENT COMPANY] (“Client”) (Together Known as the “Parties”), for the Performance of Said Design Services and the Production of Deliverables, as Described in Schedule A, Attached Hereto and Incorporated Herein by Reference." } ]prose-1.2.1/testdata/tokenize.json000066400000000000000000000064601377030147400172130ustar00rootroot00000000000000[ "They'll save and invest more.", "How's it going?", "abbreviations like M.D. and initials containing periods, they", "hi, my name can't hello,", "Hello World. My name is Jonas.", "There it is! I found it.", "My name is Jonas E. Smith.", "At eight o'clock on Thursday morning ... Arthur didn't feel very good.", "Please turn to p. 55.", "Were Jane and co. at the party?", "They closed the deal with Pitt, Briggs & Co. at noon.", "Let's ask Jane and co. They should know.", "They closed the deal with Pitt, Briggs & Co. It closed yesterday.", "I can see Mt. Fuji from here.", "St. Michael's Church is on 5th st. near the light.", "That is JFK Jr.'s book.", "I visited the U.S.A. last year.", "I live in the E.U. How about you?", "I live in the U.S. How about you?", "I work for the U.S. Government in Virginia.", "I have lived in the U.S. for 20 years.", "At 5 a.m. Mr. Smith went to the bank. He left the bank at 6 P.M. Mr. Smith then went to the store.", "She has $100.00 in her bag.", "She has $100.00. It is in her bag.", "He teaches science (He previously worked for 5 years as an engineer.) at the local University.", "Her email is Jane.Doe@example.com. I sent her an email.", "The site is: https://www.example.50.com/new-site/awesome_content.html. Please check it out.", "She turned to him, 'This is great.' she said.", "She turned to him, \"This is great.\" she said.", "She turned to him, \"This is great.\" She held the book out to show him.", "Hello!! Long time no see.", "Hello?? Who is there?", "Hello!? Is that you?", "Hello?! Is that you?", "1.) The first item 2.) The second item", "1.) The first item. 2.) The second item.", "1) The first item 2) The second item", "1) The first item. 2) The second item.", "1. The first item 2. The second item", "1. The first item. 2. The second item.", "• 9. The first item • 10. The second item", "⁃9. The first item ⁃10. The second item", "a. The first item b. The second item c. The third list item", "This is a sentence\ncut off in the middle because pdf.", "It was a cold \nnight in the city.", "features\ncontact manager\nevents, activities\n", "You can find it at N°. 1026.253.553. That is where the treasure is.", "She works at Yahoo! in the accounting department.", "We make a good team, you and I. Did you see Albert I. Jones yesterday?", "Thoreau argues that by simplifying one’s life, “the laws of the universe will appear less complex. . . .”", "\"Bohr [...] used the analogy of parallel stairways [...]\" (Smith 55).", "If words are left off at the end of a sentence, and that is all that is omitted, indicate the omission with ellipsis marks (preceded and followed by a space) and then indicate the end of the sentence with a period . . . . Next sentence.", "I never meant that.... She left the store.", "I wasn’t really ... well, what I mean...see . . . what I'm saying, the thing is . . . I didn’t mean it.", "One further habit which was somewhat weakened . . . was that of combining words into self-interpreting compounds. . . . The practice was not abandoned. . . .", "Hello world.Today is Tuesday.Mr. Smith went to the store and bought 1,000.That is a lot." ] prose-1.2.1/testdata/treebank_sents.json000066400000000000000000000074141377030147400203720ustar00rootroot00000000000000[ "They'll save and invest more.", "How's it going?", "abbreviations like M.D.", "and initials containing periods, they", "hi, my name can't hello,", "Hello World.", "My name is Jonas.", "There it is!", "I found it.", "My name is Jonas E. Smith.", "At eight o'clock on Thursday morning ... Arthur didn't feel very good.", "Please turn to p. 55.", "Were Jane and co. at the party?", "They closed the deal with Pitt, Briggs & Co. at noon.", "Let's ask Jane and co.", "They should know.", "They closed the deal with Pitt, Briggs & Co.", "It closed yesterday.", "I can see Mt.", "Fuji from here.", "St. Michael's Church is on 5th st. near the light.", "That is JFK Jr.'s book.", "I visited the U.S.A. last year.", "I live in the E.U.", "How about you?", "I live in the U.S. How about you?", "I work for the U.S. Government in Virginia.", "I have lived in the U.S. for 20 years.", "At 5 a.m. Mr. Smith went to the bank.", "He left the bank at 6 P.M. Mr. Smith then went to the store.", "She has $100.00 in her bag.", "She has $100.00.", "It is in her bag.", "He teaches science (He previously worked for 5 years as an engineer.)", "at the local University.", "Her email is Jane.Doe@example.com.", "I sent her an email.", "The site is: https://www.example.50.com/new-site/awesome_content.html.", "Please check it out.", "She turned to him, 'This is great.'", "she said.", "She turned to him, \"This is great.\"", "she said.", "She turned to him, \"This is great.\"", "She held the book out to show him.", "Hello!!", "Long time no see.", "Hello??", "Who is there?", "Hello!?", "Is that you?", "Hello?!", "Is that you?", "1.)", "The first item 2.)", "The second item", "1.)", "The first item.", "2.)", "The second item.", "1) The first item 2) The second item", "1) The first item.", "2) The second item.", "1.", "The first item 2.", "The second item", "1.", "The first item.", "2.", "The second item.", "\u2022 9.", "The first item \u2022 10.", "The second item", "\u20439.", "The first item \u204310.", "The second item", "a.", "The first item b.", "The second item c. The third list item", "This is a sentence\ncut off in the middle because pdf.", "It was a cold \nnight in the city.", "features\ncontact manager\nevents, activities", "You can find it at N\u00b0.", "1026.253.553.", "That is where the treasure is.", "She works at Yahoo!", "in the accounting department.", "We make a good team, you and I.", "Did you see Albert I. Jones yesterday?", "Thoreau argues that by simplifying one\u2019s life, \u201cthe laws of the universe will appear less complex.", ".", ".", ".\u201d", "\"Bohr [...] used the analogy of parallel stairways [...]\" (Smith 55).", "If words are left off at the end of a sentence, and that is all that is omitted, indicate the omission with ellipsis marks (preceded and followed by a space) and then indicate the end of the sentence with a period .", ".", ".", ".", "Next sentence.", "I never meant that.... She left the store.", "I wasn\u2019t really ... well, what I mean...see .", ".", ".", "what I'm saying, the thing is .", ".", ".", "I didn\u2019t mean it.", "One further habit which was somewhat weakened .", ".", ".", "was that of combining words into self-interpreting compounds.", ".", ".", ".", "The practice was not abandoned.", ".", ".", ".", "Hello world.Today is Tuesday.Mr.", "Smith went to the store and bought 1,000.That is a lot." ]prose-1.2.1/testdata/treebank_words.json000066400000000000000000000303341377030147400203710ustar00rootroot00000000000000[ [ "They", "'ll", "save", "and", "invest", "more", "." ], [ "How", "'s", "it", "going", "?" ], [ "abbreviations", "like", "M.D", "." ], [ "and", "initials", "containing", "periods", ",", "they" ], [ "hi", ",", "my", "name", "ca", "n't", "hello", "," ], [ "Hello", "World", "." ], [ "My", "name", "is", "Jonas", "." ], [ "There", "it", "is", "!" ], [ "I", "found", "it", "." ], [ "My", "name", "is", "Jonas", "E.", "Smith", "." ], [ "At", "eight", "o'clock", "on", "Thursday", "morning", "...", "Arthur", "did", "n't", "feel", "very", "good", "." ], [ "Please", "turn", "to", "p.", "55", "." ], [ "Were", "Jane", "and", "co.", "at", "the", "party", "?" ], [ "They", "closed", "the", "deal", "with", "Pitt", ",", "Briggs", "&", "Co.", "at", "noon", "." ], [ "Let", "'s", "ask", "Jane", "and", "co", "." ], [ "They", "should", "know", "." ], [ "They", "closed", "the", "deal", "with", "Pitt", ",", "Briggs", "&", "Co", "." ], [ "It", "closed", "yesterday", "." ], [ "I", "can", "see", "Mt", "." ], [ "Fuji", "from", "here", "." ], [ "St.", "Michael", "'s", "Church", "is", "on", "5th", "st.", "near", "the", "light", "." ], [ "That", "is", "JFK", "Jr.", "'s", "book", "." ], [ "I", "visited", "the", "U.S.A.", "last", "year", "." ], [ "I", "live", "in", "the", "E.U", "." ], [ "How", "about", "you", "?" ], [ "I", "live", "in", "the", "U.S.", "How", "about", "you", "?" ], [ "I", "work", "for", "the", "U.S.", "Government", "in", "Virginia", "." ], [ "I", "have", "lived", "in", "the", "U.S.", "for", "20", "years", "." ], [ "At", "5", "a.m.", "Mr.", "Smith", "went", "to", "the", "bank", "." ], [ "He", "left", "the", "bank", "at", "6", "P.M.", "Mr.", "Smith", "then", "went", "to", "the", "store", "." ], [ "She", "has", "$", "100.00", "in", "her", "bag", "." ], [ "She", "has", "$", "100.00", "." ], [ "It", "is", "in", "her", "bag", "." ], [ "He", "teaches", "science", "(", "He", "previously", "worked", "for", "5", "years", "as", "an", "engineer", ".", ")" ], [ "at", "the", "local", "University", "." ], [ "Her", "email", "is", "Jane.Doe", "@", "example.com", "." ], [ "I", "sent", "her", "an", "email", "." ], [ "The", "site", "is", ":", "https", ":", "//www.example.50.com/new-site/awesome_content.html", "." ], [ "Please", "check", "it", "out", "." ], [ "She", "turned", "to", "him", ",", "'This", "is", "great", ".", "'" ], [ "she", "said", "." ], [ "She", "turned", "to", "him", ",", "``", "This", "is", "great", ".", "''" ], [ "she", "said", "." ], [ "She", "turned", "to", "him", ",", "``", "This", "is", "great", ".", "''" ], [ "She", "held", "the", "book", "out", "to", "show", "him", "." ], [ "Hello", "!", "!" ], [ "Long", "time", "no", "see", "." ], [ "Hello", "?", "?" ], [ "Who", "is", "there", "?" ], [ "Hello", "!", "?" ], [ "Is", "that", "you", "?" ], [ "Hello", "?", "!" ], [ "Is", "that", "you", "?" ], [ "1", ".", ")" ], [ "The", "first", "item", "2", ".", ")" ], [ "The", "second", "item" ], [ "1", ".", ")" ], [ "The", "first", "item", "." ], [ "2", ".", ")" ], [ "The", "second", "item", "." ], [ "1", ")", "The", "first", "item", "2", ")", "The", "second", "item" ], [ "1", ")", "The", "first", "item", "." ], [ "2", ")", "The", "second", "item", "." ], [ "1", "." ], [ "The", "first", "item", "2", "." ], [ "The", "second", "item" ], [ "1", "." ], [ "The", "first", "item", "." ], [ "2", "." ], [ "The", "second", "item", "." ], [ "\u2022", "9", "." ], [ "The", "first", "item", "\u2022", "10", "." ], [ "The", "second", "item" ], [ "\u20439", "." ], [ "The", "first", "item", "\u204310", "." ], [ "The", "second", "item" ], [ "a", "." ], [ "The", "first", "item", "b", "." ], [ "The", "second", "item", "c.", "The", "third", "list", "item" ], [ "This", "is", "a", "sentence", "cut", "off", "in", "the", "middle", "because", "pdf", "." ], [ "It", "was", "a", "cold", "night", "in", "the", "city", "." ], [ "features", "contact", "manager", "events", ",", "activities" ], [ "You", "can", "find", "it", "at", "N\u00b0", "." ], [ "1026.253.553", "." ], [ "That", "is", "where", "the", "treasure", "is", "." ], [ "She", "works", "at", "Yahoo", "!" ], [ "in", "the", "accounting", "department", "." ], [ "We", "make", "a", "good", "team", ",", "you", "and", "I", "." ], [ "Did", "you", "see", "Albert", "I.", "Jones", "yesterday", "?" ], [ "Thoreau", "argues", "that", "by", "simplifying", "one\u2019s", "life", ",", "\u201cthe", "laws", "of", "the", "universe", "will", "appear", "less", "complex", "." ], [ "." ], [ "." ], [ ".\u201d" ], [ "``", "Bohr", "[", "...", "]", "used", "the", "analogy", "of", "parallel", "stairways", "[", "...", "]", "''", "(", "Smith", "55", ")", "." ], [ "If", "words", "are", "left", "off", "at", "the", "end", "of", "a", "sentence", ",", "and", "that", "is", "all", "that", "is", "omitted", ",", "indicate", "the", "omission", "with", "ellipsis", "marks", "(", "preceded", "and", "followed", "by", "a", "space", ")", "and", "then", "indicate", "the", "end", "of", "the", "sentence", "with", "a", "period", "." ], [ "." ], [ "." ], [ "." ], [ "Next", "sentence", "." ], [ "I", "never", "meant", "that", "...", ".", "She", "left", "the", "store", "." ], [ "I", "wasn\u2019t", "really", "...", "well", ",", "what", "I", "mean", "...", "see", "." ], [ "." ], [ "." ], [ "what", "I", "'m", "saying", ",", "the", "thing", "is", "." ], [ "." ], [ "." ], [ "I", "didn\u2019t", "mean", "it", "." ], [ "One", "further", "habit", "which", "was", "somewhat", "weakened", "." ], [ "." ], [ "." ], [ "was", "that", "of", "combining", "words", "into", "self-interpreting", "compounds", "." ], [ "." ], [ "." ], [ "." ], [ "The", "practice", "was", "not", "abandoned", "." ], [ "." ], [ "." ], [ "." ], [ "Hello", "world.Today", "is", "Tuesday.Mr", "." ], [ "Smith", "went", "to", "the", "store", "and", "bought", "1,000.That", "is", "a", "lot", "." ] ]prose-1.2.1/testdata/word_punct.json000066400000000000000000000320611377030147400175430ustar00rootroot00000000000000[ [ "They", "'", "ll", "save", "and", "invest", "more", "." ], [ "How", "'", "s", "it", "going", "?" ], [ "abbreviations", "like", "M", ".", "D", "." ], [ "and", "initials", "containing", "periods", ",", "they" ], [ "hi", ",", "my", "name", "can", "'", "t", "hello", "," ], [ "Hello", "World", "." ], [ "My", "name", "is", "Jonas", "." ], [ "There", "it", "is", "!" ], [ "I", "found", "it", "." ], [ "My", "name", "is", "Jonas", "E", ".", "Smith", "." ], [ "At", "eight", "o", "'", "clock", "on", "Thursday", "morning", "...", "Arthur", "didn", "'", "t", "feel", "very", "good", "." ], [ "Please", "turn", "to", "p", ".", "55", "." ], [ "Were", "Jane", "and", "co", ".", "at", "the", "party", "?" ], [ "They", "closed", "the", "deal", "with", "Pitt", ",", "Briggs", "&", "Co", ".", "at", "noon", "." ], [ "Let", "'", "s", "ask", "Jane", "and", "co", "." ], [ "They", "should", "know", "." ], [ "They", "closed", "the", "deal", "with", "Pitt", ",", "Briggs", "&", "Co", "." ], [ "It", "closed", "yesterday", "." ], [ "I", "can", "see", "Mt", "." ], [ "Fuji", "from", "here", "." ], [ "St", ".", "Michael", "'", "s", "Church", "is", "on", "5th", "st", ".", "near", "the", "light", "." ], [ "That", "is", "JFK", "Jr", ".'", "s", "book", "." ], [ "I", "visited", "the", "U", ".", "S", ".", "A", ".", "last", "year", "." ], [ "I", "live", "in", "the", "E", ".", "U", "." ], [ "How", "about", "you", "?" ], [ "I", "live", "in", "the", "U", ".", "S", ".", "How", "about", "you", "?" ], [ "I", "work", "for", "the", "U", ".", "S", ".", "Government", "in", "Virginia", "." ], [ "I", "have", "lived", "in", "the", "U", ".", "S", ".", "for", "20", "years", "." ], [ "At", "5", "a", ".", "m", ".", "Mr", ".", "Smith", "went", "to", "the", "bank", "." ], [ "He", "left", "the", "bank", "at", "6", "P", ".", "M", ".", "Mr", ".", "Smith", "then", "went", "to", "the", "store", "." ], [ "She", "has", "$", "100", ".", "00", "in", "her", "bag", "." ], [ "She", "has", "$", "100", ".", "00", "." ], [ "It", "is", "in", "her", "bag", "." ], [ "He", "teaches", "science", "(", "He", "previously", "worked", "for", "5", "years", "as", "an", "engineer", ".)" ], [ "at", "the", "local", "University", "." ], [ "Her", "email", "is", "Jane", ".", "Doe", "@", "example", ".", "com", "." ], [ "I", "sent", "her", "an", "email", "." ], [ "The", "site", "is", ":", "https", "://", "www", ".", "example", ".", "50", ".", "com", "/", "new", "-", "site", "/", "awesome_content", ".", "html", "." ], [ "Please", "check", "it", "out", "." ], [ "She", "turned", "to", "him", ",", "'", "This", "is", "great", ".'" ], [ "she", "said", "." ], [ "She", "turned", "to", "him", ",", "\"", "This", "is", "great", ".\"" ], [ "she", "said", "." ], [ "She", "turned", "to", "him", ",", "\"", "This", "is", "great", ".\"" ], [ "She", "held", "the", "book", "out", "to", "show", "him", "." ], [ "Hello", "!!" ], [ "Long", "time", "no", "see", "." ], [ "Hello", "??" ], [ "Who", "is", "there", "?" ], [ "Hello", "!?" ], [ "Is", "that", "you", "?" ], [ "Hello", "?!" ], [ "Is", "that", "you", "?" ], [ "1", ".)" ], [ "The", "first", "item", "2", ".)" ], [ "The", "second", "item" ], [ "1", ".)" ], [ "The", "first", "item", "." ], [ "2", ".)" ], [ "The", "second", "item", "." ], [ "1", ")", "The", "first", "item", "2", ")", "The", "second", "item" ], [ "1", ")", "The", "first", "item", "." ], [ "2", ")", "The", "second", "item", "." ], [ "1", "." ], [ "The", "first", "item", "2", "." ], [ "The", "second", "item" ], [ "1", "." ], [ "The", "first", "item", "." ], [ "2", "." ], [ "The", "second", "item", "." ], [ "\u2022", "9", "." ], [ "The", "first", "item", "\u2022", "10", "." ], [ "The", "second", "item" ], [ "\u2043", "9", "." ], [ "The", "first", "item", "\u2043", "10", "." ], [ "The", "second", "item" ], [ "a", "." ], [ "The", "first", "item", "b", "." ], [ "The", "second", "item", "c", ".", "The", "third", "list", "item" ], [ "This", "is", "a", "sentence", "cut", "off", "in", "the", "middle", "because", "pdf", "." ], [ "It", "was", "a", "cold", "night", "in", "the", "city", "." ], [ "features", "contact", "manager", "events", ",", "activities" ], [ "You", "can", "find", "it", "at", "N", "\u00b0." ], [ "1026", ".", "253", ".", "553", "." ], [ "That", "is", "where", "the", "treasure", "is", "." ], [ "She", "works", "at", "Yahoo", "!" ], [ "in", "the", "accounting", "department", "." ], [ "We", "make", "a", "good", "team", ",", "you", "and", "I", "." ], [ "Did", "you", "see", "Albert", "I", ".", "Jones", "yesterday", "?" ], [ "Thoreau", "argues", "that", "by", "simplifying", "one", "\u2019", "s", "life", ",", "\u201c", "the", "laws", "of", "the", "universe", "will", "appear", "less", "complex", "." ], [ "." ], [ "." ], [ ".\u201d" ], [ "\"", "Bohr", "[...]", "used", "the", "analogy", "of", "parallel", "stairways", "[...]\"", "(", "Smith", "55", ")." ], [ "If", "words", "are", "left", "off", "at", "the", "end", "of", "a", "sentence", ",", "and", "that", "is", "all", "that", "is", "omitted", ",", "indicate", "the", "omission", "with", "ellipsis", "marks", "(", "preceded", "and", "followed", "by", "a", "space", ")", "and", "then", "indicate", "the", "end", "of", "the", "sentence", "with", "a", "period", "." ], [ "." ], [ "." ], [ "." ], [ "Next", "sentence", "." ], [ "I", "never", "meant", "that", "....", "She", "left", "the", "store", "." ], [ "I", "wasn", "\u2019", "t", "really", "...", "well", ",", "what", "I", "mean", "...", "see", "." ], [ "." ], [ "." ], [ "what", "I", "'", "m", "saying", ",", "the", "thing", "is", "." ], [ "." ], [ "." ], [ "I", "didn", "\u2019", "t", "mean", "it", "." ], [ "One", "further", "habit", "which", "was", "somewhat", "weakened", "." ], [ "." ], [ "." ], [ "was", "that", "of", "combining", "words", "into", "self", "-", "interpreting", "compounds", "." ], [ "." ], [ "." ], [ "." ], [ "The", "practice", "was", "not", "abandoned", "." ], [ "." ], [ "." ], [ "." ], [ "Hello", "world", ".", "Today", "is", "Tuesday", ".", "Mr", "." ], [ "Smith", "went", "to", "the", "store", "and", "bought", "1", ",", "000", ".", "That", "is", "a", "lot", "." ] ] prose-1.2.1/tokenize/000077500000000000000000000000001377030147400145015ustar00rootroot00000000000000prose-1.2.1/tokenize/pragmatic.go000066400000000000000000000656421377030147400170140ustar00rootroot00000000000000// The MIT License (MIT) // // Copyright (c) 2015 Kevin S. Dias // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, including // without limitation the rights to use, copy, modify, merge, publish, // distribute, sublicense, and/or sell copies of the Software, and to // permit persons to whom the Software is furnished to do so, subject to // the following conditions: // // The above copyright notice and this permission notice shall be // included in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. package tokenize import ( "errors" "fmt" "regexp" "strings" "github.com/jdkato/prose/internal/util" ) /* Public API */ // PragmaticSegmenter is a multilingual, rule-based sentence boundary detector. // // This is a port of the Ruby library by Kevin S. Dias // (https://github.com/diasks2/pragmatic_segmenter). type PragmaticSegmenter struct { processor languageProcessor } // NewPragmaticSegmenter creates a new PragmaticSegmenter according to the // specified language. If the given language is not supported, an error will be // returned. // // Languages are specified by their two-character ISO 639-1 code. The supported // languages are "en" (English), "es" (Spanish), "fr" (French) ... (WIP) func NewPragmaticSegmenter(lang string) (*PragmaticSegmenter, error) { if p, ok := langToProcessor[lang]; ok { return &PragmaticSegmenter{processor: p}, nil } return nil, errors.New("unknown language") } // Tokenize splits text into sentences. func (p *PragmaticSegmenter) Tokenize(text string) []string { return p.processor.process(text) } /* Helper functions, regexps, and types */ // A rule associates a regular expression with a replacement string. type rule struct { pattern *regexp.Regexp replacement string } // sub replaces all occurrences of Pattern with Replacement. func (r *rule) sub(text string) string { if !r.pattern.MatchString(text) { return text } orig := len(text) diff := 0 for _, submat := range r.pattern.FindAllStringSubmatchIndex(text, -1) { for idx, mat := range submat { if mat != -1 && idx > 0 && idx%2 == 0 { loc := []int{mat - diff, submat[idx+1] - diff} text = text[:loc[0]] + r.replacement + text[loc[1]:] diff = orig - len(text) } } } return text } // numbers var periodBeforeNumberRule = rule{ pattern: regexp.MustCompile(`(\.)\d`), replacement: "∯"} var numberAfterPeriodBeforeLetterRule = rule{ pattern: regexp.MustCompile(`\d(\.)\S`), replacement: "∯"} var newLineNumberPeriodSpaceLetterRule = rule{ pattern: regexp.MustCompile(`[\n\r]\d(\.)(?:[\s\S]|\))`), replacement: "∯"} var startLineNumberPeriodRule = rule{ pattern: regexp.MustCompile(`^\d(\.)(?:[\s\S]|\))`), replacement: "∯"} var startLineTwoDigitNumberPeriodRule = rule{ pattern: regexp.MustCompile(`^\d\d(\.)(?:[\s\S]|\))`), replacement: "∯"} var allNumberRules = []rule{ periodBeforeNumberRule, numberAfterPeriodBeforeLetterRule, newLineNumberPeriodSpaceLetterRule, startLineNumberPeriodRule, startLineTwoDigitNumberPeriodRule, } // common var cleanRules = []rule{ {pattern: regexp.MustCompile(`[^\n]\s(\n)\S`), replacement: ""}, {pattern: regexp.MustCompile(`(\n)[a-z]`), replacement: " "}, } var exclamationWordsRE = regexp.MustCompile( `\s(?:!Xũ|!Kung|ǃʼOǃKung|!Xuun|!Kung-Ekoka|ǃHu|` + `ǃKhung|ǃKu|ǃung|ǃXo|ǃXû|ǃXung|ǃXũ|!Xun|Yahoo!|Y!J|Yum!)\s`) var sentenceBoundaryRE = regexp.MustCompile( `\x{ff08}(?:[^\x{ff09}])*\x{ff09}(\s?[A-Z])|` + `\x{300c}(?:[^\x{300d}])*\x{300d}(\s[A-Z])|` + `\((?:[^\)]){2,}\)(\s[A-Z])|` + `'(?:[^'])*[^,]'(\s[A-Z])|` + `"(?:[^"])*[^,]"(\s[A-Z])|` + `“(?:[^”])*[^,]”(\s[A-Z])|` + `\S.*?[。..!!??ȸȹ☉☈☇☄]`) var quotationAtEndOfSentenceRE = regexp.MustCompile( `[!?\.-][\"\'\x{201d}\x{201c}]\s{1}[A-Z]`) var splitSpaceQuotationAtEndOfSentenceRE = regexp.MustCompile( `[!?\.-][\"\'\x{201d}\x{201c}](\s{1})[A-Z]`) // lookahead var continuousPunctuationRE = regexp.MustCompile(`\S(!|\?){3,}(?:\s|\z|$)`) var possessiveAbbreviationRule = rule{ pattern: regexp.MustCompile(`(\.)'s\s|(\.)'s$|(\.)'s\z`), replacement: "∯"} var kommanditgesellschaftRule = rule{ pattern: regexp.MustCompile(`Co(\.)\sKG`), replacement: "∯"} var multiPeriodAbbrevRE = regexp.MustCompile(`(?i)\b[a-z](?:\.[a-z])+[.]`) // var parensBetweenDoubleQuotesRE = regexp.MustCompile(`["”]\s\(.*\)\s["“]`) // var betweenDoubleQuotesRE2 = regexp.MustCompile(`(?:[^"])*[^,]"|“(?:[^”])*[^,]”`) // var wordWithLeadingApostropheRE = regexp.MustCompile(`\s'(?:[^']|'[a-zA-Z])*'\S`) // AM/PM var upperCasePmRule = rule{ pattern: regexp.MustCompile(`P∯M(∯)\s[A-Z]`), replacement: "."} var upperCaseAmRule = rule{ pattern: regexp.MustCompile(`A∯M(∯)\s[A-Z]`), replacement: "."} var lowerCasePmRule = rule{ pattern: regexp.MustCompile(`p∯m(∯)\s[A-Z]`), replacement: "."} var lowerCaseAmRule = rule{ pattern: regexp.MustCompile(`a∯m(∯)\s[A-Z]`), replacement: "."} var allAmPmRules = []rule{ upperCasePmRule, upperCaseAmRule, lowerCasePmRule, lowerCaseAmRule} // Searches for periods within an abbreviation and replaces the periods. var singleUpperCaseLetterAtStartOfLineRule = rule{ pattern: regexp.MustCompile(`^[A-Z](\.)\s`), replacement: "∯"} var singleUpperCaseLetterRule = rule{ pattern: regexp.MustCompile(`\s[A-Z](\.)\s`), replacement: "∯"} var allSingleUpperCaseLetterRules = []rule{ singleUpperCaseLetterAtStartOfLineRule, singleUpperCaseLetterRule} // Searches for ellipses within a string and replaces the periods. var threeConsecutiveRule = rule{ pattern: regexp.MustCompile(`[^.](\.\.\.)\s+[A-Z]`), replacement: "☏."} var fourConsecutiveRule = rule{ pattern: regexp.MustCompile(`\S(\.{3})\.\s[A-Z]`), replacement: "ƪ"} var threeSpaceRule = rule{ pattern: regexp.MustCompile(`((?:\s\.){3}\s)`), replacement: "♟"} var fourSpaceRule = rule{ pattern: regexp.MustCompile(`[a-z]((?:\.\s){3}\.(?:\z|$|\n))`), replacement: "♝"} var otherThreePeriodRule = rule{pattern: regexp.MustCompile(`(\.\.\.)`), replacement: "ƪ"} var allEllipsesRules = []rule{ threeConsecutiveRule, fourConsecutiveRule, threeSpaceRule, fourSpaceRule, otherThreePeriodRule} // between_punctuation var betweenSingleQuotesRE = regexp.MustCompile(`\s'(?:[^']|'[a-zA-Z])*'`) var betweenDoubleQuotesRE = regexp.MustCompile(`"([^"\\]+|\\{2}|\\.)*"`) var betweenArrowQuotesRE = regexp.MustCompile(`«([^»\\]+|\\{2}|\\.)*»`) var betweenSmartQuotesRE = regexp.MustCompile(`“([^”\\]+|\\{2}|\\.)*”`) var betweenSquareBracketsRE = regexp.MustCompile(`\[([^\]\\]+|\\{2}|\\.)*\]`) var betweenParensRE = regexp.MustCompile(`\(([^\(\)\\]+|\\{2}|\\.)*\)`) // subPat replaces all punctuation in the strings that match the regexp pat. func subPat(text, mtype string, pat *regexp.Regexp) string { canidates := []string{} for _, s := range pat.FindAllString(text, -1) { canidates = append(canidates, strings.TrimSpace(s)) } r := punctuationReplacer{ matches: canidates, text: text, matchType: mtype} return r.replace() } // replaceBetweenQuotes replaces punctuation inside quotes. func replaceBetweenQuotes(text string) string { text = subPat(text, "single", betweenSingleQuotesRE) text = subPat(text, "double", betweenDoubleQuotesRE) text = subPat(text, "double", betweenSquareBracketsRE) text = subPat(text, "double", betweenParensRE) text = subPat(text, "double", betweenArrowQuotesRE) text = subPat(text, "double", betweenSmartQuotesRE) return text } // applyRules applies each rule in []rules to text. func applyRules(text string, rules []rule) string { for _, rule := range rules { text = rule.sub(text) } return text } // substitute replaces the substring sub with the string repl. func substitute(src, sub, repl string) string { idx := strings.Index(src, sub) for idx >= 0 { src = src[:idx] + repl + src[idx+len(sub):] idx = strings.Index(src, sub) } return src } // escape var escapeRegexReservedCharacters = strings.NewReplacer( `(`, `\(`, `)`, `\)`, `[`, `\[`, `]`, `\]`, `-`, `\-`, ) // unescape var subEscapeRegexReservedCharacters = strings.NewReplacer( `\(`, `(`, `\)`, `)`, `\[`, `[`, `\]`, `]`, `\-`, `-`, ) /* punctuation_replacer */ type punctuationReplacer struct { matches []string text string matchType string } func (r *punctuationReplacer) replace() string { return r.replacePunctuation(r.matches) } func (r *punctuationReplacer) replacePunctuation(matches []string) string { r.text = escapeRegexReservedCharacters.Replace(r.text) for _, m := range matches { m = escapeRegexReservedCharacters.Replace(m) s := r.sub(m, ".", "∯") sub1 := r.sub(s, "。", "&ᓰ&") sub2 := r.sub(sub1, ".", "&ᓱ&") sub3 := r.sub(sub2, "!", "&ᓳ&") sub4 := r.sub(sub3, "!", "&ᓴ&") sub5 := r.sub(sub4, "?", "&ᓷ&") sub6 := r.sub(sub5, "? ", "&ᓸ&") if r.matchType != "single" { r.sub(sub6, "'", "&⎋&") } } return subEscapeRegexReservedCharacters.Replace(r.text) } func (r *punctuationReplacer) sub(content, a, b string) string { repl := substitute(content, a, b) r.text = strings.Replace(r.text, content, repl, -1) return repl } /* abbreviation_replacer */ type abbreviationReplacer struct { definition languageDefinition boundaries *rule prepositiveCache map[string][]rule numberCache map[string][]rule periodCache map[string][]rule searchCache map[string][]*regexp.Regexp } func newAbbreviationReplacer(lang string) *abbreviationReplacer { var def languageDefinition var bounds *rule if d, ok := langToDefinition[lang]; ok { def = d } else { def = new(commonDefinition) } regex := "" for _, word := range def.starters() { esc := regexp.QuoteMeta(word) regex += fmt.Sprintf(`U∯S(∯)\s%s\s|`, esc) regex += fmt.Sprintf(`U\.S(∯)\s%s\s|`, esc) regex += fmt.Sprintf(`U∯K(∯)\s%s\s|`, esc) regex += fmt.Sprintf(`U\.K(∯)\s%s\s|`, esc) regex += fmt.Sprintf(`E∯U(∯)\s%s\s|`, esc) regex += fmt.Sprintf(`E\.U(∯)\s%s\s|`, esc) regex += fmt.Sprintf(`U∯S∯A(∯)\s%s\s|`, esc) regex += fmt.Sprintf(`U\.S\.A(∯)\s%s\s|`, esc) regex += fmt.Sprintf(`I(∯)\s%s\s|`, esc) regex += fmt.Sprintf(`i\.v(∯)\s%s\s|`, esc) regex += fmt.Sprintf(`I\.V(∯)\s%s\s|`, esc) } if regex != "" { r := regexp.MustCompile(strings.TrimRight(regex, "|")) bounds = &rule{pattern: r, replacement: "."} } return &abbreviationReplacer{definition: def, boundaries: bounds, prepositiveCache: make(map[string][]rule), numberCache: make(map[string][]rule), periodCache: make(map[string][]rule), searchCache: make(map[string][]*regexp.Regexp)} } func (r *abbreviationReplacer) replace(text string) string { text = possessiveAbbreviationRule.sub(text) text = kommanditgesellschaftRule.sub(text) text = applyRules(text, allSingleUpperCaseLetterRules) text = r.search(text, r.definition.abbreviations()["abbreviations"]) text = r.replaceMultiPeriods(text) for _, rule := range allAmPmRules { text = rule.sub(text) } return r.replaceBoundary(text) } func (r *abbreviationReplacer) search(query string, list []string) string { var match, next *regexp.Regexp downcased := strings.ToLower(query) for _, abbr := range list { if !strings.Contains(downcased, strings.TrimSpace(abbr)) { continue } text := query esc := regexp.QuoteMeta(abbr) if data, ok := r.searchCache[esc]; ok { match, next = data[0], data[1] } else { match = regexp.MustCompile(`(?i)(?:^|\s|\r|\n)` + esc) next = regexp.MustCompile(fmt.Sprintf(`%s (.{1})`, esc)) r.searchCache[esc] = []*regexp.Regexp{match, next} } found := match.FindAllStringSubmatch(text, -1) if len(found) > 0 { chars := next.FindAllString(query, -1) for i, am := range found { query = r.scan(query, am[0], i, chars) } } } return query } func (r *abbreviationReplacer) scan(text, am string, idx int, chars []string) string { character := "" if len(chars) > idx { character = chars[idx] } prepositive := r.definition.abbreviations()["prepositive"] number := r.definition.abbreviations()["number"] upper := character != "" && character == strings.ToUpper(character) clean := strings.TrimSpace(strings.ToLower(am)) prep := util.StringInSlice(clean, prepositive) if !upper || prep { if prep { text = r.replacePrepositive(text, am) } else if util.StringInSlice(clean, number) { text = r.replaceNumber(text, am) } else { text = r.replacePeriod(text, am) } } return text } func (r *abbreviationReplacer) replacePrepositive(text, abbr string) string { abbr = strings.ToLower(strings.TrimSpace(abbr)) if rules, ok := r.prepositiveCache[abbr]; ok { return applyRules(text, rules) } q1 := fmt.Sprintf(`(?i)\s%s(\.)\s|^%s(\.)\s`, abbr, abbr) q2 := fmt.Sprintf(`(?i)\s%s(\.):\d+|^%s(\.):\d+`, abbr, abbr) r1 := rule{pattern: regexp.MustCompile(q1), replacement: "∯"} r2 := rule{pattern: regexp.MustCompile(q2), replacement: "∯"} r.prepositiveCache[abbr] = []rule{r1, r2} return r2.sub(r1.sub(text)) } func (r *abbreviationReplacer) replaceNumber(text, abbr string) string { abbr = strings.ToLower(strings.TrimSpace(abbr)) if rules, ok := r.numberCache[abbr]; ok { return applyRules(text, rules) } q1 := fmt.Sprintf(`(?i)\s%s(\.)\s\d|^%s(\.)\s\d`, abbr, abbr) q2 := fmt.Sprintf(`(?i)\s%s(\.)\s+\(|^%s(\.)\s+\(`, abbr, abbr) r1 := rule{pattern: regexp.MustCompile(q1), replacement: "∯"} r2 := rule{pattern: regexp.MustCompile(q2), replacement: "∯"} r.numberCache[abbr] = []rule{r1, r2} return r2.sub(r1.sub(text)) } func (r *abbreviationReplacer) replacePeriod(text, abbr string) string { abbr = strings.TrimSpace(abbr) if rules, ok := r.periodCache[abbr]; ok { return applyRules(text, rules) } q1 := fmt.Sprintf(`\s%s(\.)(?:(?:(?:\.|\:|-|\?)|(?:\s(?:[a-z]|I\s|I'm|I'll|\d))))|^%s(\.)(?:(?:(?:\.|\:|\?)|(?:\s(?:[a-z]|I\s|I'm|I'll|\d))))`, abbr, abbr) q2 := fmt.Sprintf(`\s%s(\.),|^%s(\.),`, abbr, abbr) r1 := rule{pattern: regexp.MustCompile(q1), replacement: "∯"} r2 := rule{pattern: regexp.MustCompile(q2), replacement: "∯"} r.periodCache[abbr] = []rule{r1, r2} return r2.sub(r1.sub(text)) } func (r *abbreviationReplacer) replaceBoundary(text string) string { if r.boundaries != nil { return r.boundaries.sub(text) } return text } func (r *abbreviationReplacer) replaceMultiPeriods(text string) string { for _, r := range multiPeriodAbbrevRE.FindAllString(text, -1) { text = substitute(text, r, substitute(r, ".", "∯")) } return text } /* language definitions */ var langToDefinition = map[string]languageDefinition{ "fr": new(frenchDefinition), "es": new(spanishDefinition), } type languageDefinition interface { punctuation() []string abbreviations() map[string][]string punctRules() map[string]*rule doublePunctRules() []rule exclamationRules() []rule subRules() []rule subEllipsis() []rule starters() []string } type commonDefinition struct{} func (d *commonDefinition) subEllipsis() []rule { return []rule{ {pattern: regexp.MustCompile(`(ƪ)`), replacement: "..."}, {pattern: regexp.MustCompile(`(♟)`), replacement: " . . . "}, {pattern: regexp.MustCompile(`(♝)`), replacement: ". . . ."}, {pattern: regexp.MustCompile(`(☏)`), replacement: ".."}, {pattern: regexp.MustCompile(`(∮)`), replacement: "."}, } } func (d *commonDefinition) punctuation() []string { return []string{"。", ".", ".", "!", "!", "?", "?"} } func (d *commonDefinition) abbreviations() map[string][]string { return map[string][]string{ "abbreviations": { "adj", "adm", "adv", "al", "ala", "alta", "apr", "arc", "ariz", "ark", "art", "assn", "asst", "attys", "aug", "ave", "bart", "bld", "bldg", "blvd", "brig", "bros", "btw", "cal", "calif", "capt", "cl", "cmdr", "co", "col", "colo", "comdr", "con", "conn", "corp", "cpl", "cres", "ct", "d.phil", "dak", "dec", "del", "dept", "det", "dist", "dr", "dr.phil", "dr.philos", "drs", "e.g", "ens", "esp", "esq", "etc", "exp", "expy", "ext", "feb", "fed", "fla", "ft", "fwy", "fy", "ga", "gen", "gov", "hon", "hosp", "hr", "hway", "hwy", "i.e", "ia", "id", "ida", "ill", "inc", "ind", "ing", "insp", "is", "jan", "jr", "jul", "jun", "kan", "kans", "ken", "ky", "la", "lt", "ltd", "maj", "man", "mar", "mass", "may", "md", "me", "med", "messrs", "mex", "mfg", "mich", "min", "minn", "miss", "mlle", "mm", "mme", "mo", "mont", "mr", "mrs", "ms", "msgr", "mssrs", "mt", "mtn", "neb", "nebr", "nev", "no", "nos", "nov", "nr", "oct", "ok", "okla", "ont", "op", "ord", "ore", "p", "pa", "pd", "pde", "penn", "penna", "pfc", "ph", "ph.d", "pl", "plz", "pp", "prof", "pvt", "que", "rd", "ref", "rep", "reps", "res", "rev", "rt", "sask", "sec", "sen", "sens", "sep", "sept", "sfc", "sgt", "sr", "st", "supt", "surg", "tce", "tenn", "tex", "univ", "usafa", "u.s", "ut", "va", "v", "ver", "vs", "vt", "wash", "wis", "wisc", "wy", "wyo", "yuk"}, "prepositive": { "adm", "attys", "brig", "capt", "cmdr", "col", "cpl", "det", "dr", "gen", "gov", "ing", "lt", "maj", "mr", "mrs", "ms", "mt", "messrs", "mssrs", "prof", "ph", "rep", "reps", "rev", "sen", "sens", "sgt", "st", "supt", "v", "vs"}, "number": {"art", "ext", "no", "nos", "p", "pp"}, } } func (d *commonDefinition) punctRules() map[string]*rule { return map[string]*rule{ "withMultiplePeriodsAndEmail": { pattern: regexp.MustCompile(`\w(\.)\w`), replacement: "∮"}, "geoLocation": {pattern: regexp.MustCompile(`[a-zA-z]°(\.)\s*\d+`), replacement: "∯"}, "questionMarkInQuotation": { pattern: regexp.MustCompile(`(\?)(?:\'|\")`), replacement: "&ᓷ&"}, "singleNewLine": { pattern: regexp.MustCompile(`(\s{3,})`), replacement: " "}, "extraWhiteSpace": { pattern: regexp.MustCompile(`(\n)`), replacement: "ȹ"}, "subSingleQuote": { pattern: regexp.MustCompile(`(&⎋&)`), replacement: "'"}, } } func (d *commonDefinition) subRules() []rule { return []rule{ {pattern: regexp.MustCompile(`(∯)`), replacement: "."}, {pattern: regexp.MustCompile(`(♬)`), replacement: "،"}, {pattern: regexp.MustCompile(`(♭)`), replacement: ":"}, {pattern: regexp.MustCompile(`(&ᓰ&)`), replacement: "。"}, {pattern: regexp.MustCompile(`(&ᓱ&)`), replacement: "."}, {pattern: regexp.MustCompile(`(&ᓳ&)`), replacement: "!"}, {pattern: regexp.MustCompile(`(&ᓴ&)`), replacement: "!"}, {pattern: regexp.MustCompile(`(&ᓷ&)`), replacement: "?"}, {pattern: regexp.MustCompile(`(&ᓸ&)`), replacement: "?"}, {pattern: regexp.MustCompile(`(☉)`), replacement: "?!"}, {pattern: regexp.MustCompile(`(☇)`), replacement: "??"}, {pattern: regexp.MustCompile(`(☈)`), replacement: "!?"}, {pattern: regexp.MustCompile(`(☄)`), replacement: "!!"}, {pattern: regexp.MustCompile(`(&✂&)`), replacement: "("}, {pattern: regexp.MustCompile(`(&⌬&)`), replacement: ")"}, {pattern: regexp.MustCompile(`(ȸ)`), replacement: ""}, {pattern: regexp.MustCompile(`(ȹ)`), replacement: "\n"}, } } func (d *commonDefinition) doublePunctRules() []rule { return []rule{ {pattern: regexp.MustCompile(`(\?!)`), replacement: "☉"}, {pattern: regexp.MustCompile(`(!\?)`), replacement: "☈"}, {pattern: regexp.MustCompile(`(\?\?)`), replacement: "☇"}, {pattern: regexp.MustCompile(`(!!)`), replacement: "☄"}, } } func (d *commonDefinition) exclamationRules() []rule { return []rule{ {pattern: regexp.MustCompile(`(!)(?:\'|\")`), replacement: "&ᓴ&"}, {pattern: regexp.MustCompile(`(!)(?:\,\s[a-z])`), replacement: "&ᓴ&"}, {pattern: regexp.MustCompile(`(!)(?:\s[a-z])`), replacement: "&ᓴ&"}, } } func (d *commonDefinition) starters() []string { return []string{ "A", "Being", "Did", "For", "He", "How", "However", "I", "In", "It", "Millions", "More", "She", "That", "The", "There", "They", "We", "What", "When", "Where", "Who", "Why"} } type frenchDefinition struct { commonDefinition } func (f *frenchDefinition) abbreviations() map[string][]string { return map[string][]string{ "abbreviations": { "a.c.n", "a.m", "al", "ann", "apr", "art", "auj", "av", "b.p", "boul", "c.-à-d", "c.n", "c.n.s", "c.p.i", "c.q.f.d", "c.s", "ca", "cf", "ch.-l", "chap", "co", "co", "contr", "dir", "e.g", "e.v", "env", "etc", "ex", "fasc", "fig", "fr", "fém", "hab", "i.e", "ibid", "id", "inf", "l.d", "lib", "ll.aa", "ll.aa.ii", "ll.aa.rr", "ll.aa.ss", "ll.ee", "ll.mm", "ll.mm.ii.rr", "loc.cit", "ltd", "ltd", "masc", "mm", "ms", "n.b", "n.d", "n.d.a", "n.d.l.r", "n.d.t", "n.p.a.i", "n.s", "n/réf", "nn.ss", "p.c.c", "p.ex", "p.j", "p.s", "pl", "pp", "r.-v", "r.a.s", "r.i.p", "r.p", "s.a", "s.a.i", "s.a.r", "s.a.s", "s.e", "s.m", "s.m.i.r", "s.s", "sec", "sect", "sing", "sq", "sqq", "ss", "suiv", "sup", "suppl", "t.s.v.p", "tél", "vb", "vol", "vs", "x.o", "z.i", "éd"}, "prepositive": {}, "number": {}, } } func (f *frenchDefinition) starters() []string { return []string{} } type spanishDefinition struct { commonDefinition } func (s *spanishDefinition) abbreviations() map[string][]string { return map[string][]string{ "abbreviations": { "a.c", "a/c", "abr", "adj", "admón", "afmo", "ago", "almte", "ap", "apdo", "arq", "art", "atte", "av", "avda", "bco", "bibl", "bs. as", "c", "c.f", "c.g", "c/c", "c/u", "cap", "cc.aa", "cdad", "cm", "co", "cra", "cta", "cv", "d.e.p", "da", "dcha", "dcho", "dep", "dic", "dicc", "dir", "dn", "doc", "dom", "dpto", "dr", "dra", "dto", "ee", "ej", "en", "entlo", "esq", "etc", "excmo", "ext", "f.c", "fca", "fdo", "febr", "ff. aa", "ff.cc", "fig", "fil", "fra", "g.p", "g/p", "gob", "gr", "gral", "grs", "hnos", "hs", "igl", "iltre", "imp", "impr", "impto", "incl", "ing", "inst", "izdo", "izq", "izqdo", "j.c", "jue", "jul", "jun", "kg", "km", "lcdo", "ldo", "let", "lic", "ltd", "lun", "mar", "may", "mg", "min", "mié", "mm", "máx", "mín", "mt", "n. del t", "n.b", "no", "nov", "ntra. sra", "núm", "oct", "p", "p.a", "p.d", "p.ej", "p.v.p", "párrf", "ppal", "prev", "prof", "prov", "ptas", "pts", "pza", "pág", "págs", "párr", "q.e.g.e", "q.e.p.d", "q.e.s.m", "reg", "rep", "rr. hh", "rte", "s", "s. a", "s.a.r", "s.e", "s.l", "s.r.c", "s.r.l", "s.s.s", "s/n", "sdad", "seg", "sept", "sig", "sr", "sra", "sres", "srta", "sta", "sto", "sáb", "t.v.e", "tamb", "tel", "tfno", "ud", "uu", "uds", "univ", "v.b", "v.e", "vd", "vds", "vid", "vie", "vol", "vs", "vto", "a", "aero", "ambi", "an", "anfi", "ante", "anti", "archi", "arci", "auto", "bi", "bien", "bis", "co", "com", "con", "contra", "crio", "cuadri", "cuasi", "cuatri", "de", "deci", "des", "di", "dis", "dr", "ecto", "en", "endo", "entre", "epi", "equi", "ex", "extra", "geo", "hemi", "hetero", "hiper", "hipo", "homo", "i", "im", "in", "infra", "inter", "intra", "iso", "lic", "macro", "mega", "micro", "mini", "mono", "multi", "neo", "omni", "para", "pen", "ph", "ph.d", "pluri", "poli", "pos", "post", "pre", "pro", "pseudo", "re", "retro", "semi", "seudo", "sobre", "sub", "super", "supra", "trans", "tras", "tri", "ulter", "ultra", "un", "uni", "vice", "yuxta"}, "prepositive": { "a", "aero", "ambi", "an", "anfi", "ante", "anti", "archi", "arci", "auto", "bi", "bien", "bis", "co", "com", "con", "contra", "crio", "cuadri", "cuasi", "cuatri", "de", "deci", "des", "di", "dis", "dr", "ecto", "ee", "en", "endo", "entre", "epi", "equi", "ex", "extra", "geo", "hemi", "hetero", "hiper", "hipo", "homo", "i", "im", "in", "infra", "inter", "intra", "iso", "lic", "macro", "mega", "micro", "mini", "mono", "mt", "multi", "neo", "omni", "para", "pen", "ph", "ph.d", "pluri", "poli", "pos", "post", "pre", "pro", "prof", "pseudo", "re", "retro", "semi", "seudo", "sobre", "sub", "super", "supra", "sra", "srta", "trans", "tras", "tri", "ulter", "ultra", "un", "uni", "vice", "yuxta"}, "number": {"cra", "ext", "no", "nos", "p", "pp", "tel"}, } } func (s *spanishDefinition) starters() []string { return []string{} } /* language processors */ var langToProcessor = map[string]languageProcessor{ "en": newProcessor("en"), "fr": newProcessor("fr"), "es": newProcessor("es"), } type languageProcessor interface { process(text string) []string } type processor struct { abbrReplacer *abbreviationReplacer } func newProcessor(lang string) *processor { r := newAbbreviationReplacer(lang) return &processor{abbrReplacer: r} } func (p *processor) cleanQuotations(text string) string { return substitute(text, "`", "'") } func (p *processor) process(text string) []string { text = p.abbrReplacer.replace(applyRules(text, cleanRules)) text = applyRules(text, allNumberRules) text = continuousPunctuationRE.ReplaceAllStringFunc(text, func(s string) string { return substitute(substitute(s, "!", "&ᓴ&"), "?", "&ᓷ&") }) pRules := p.abbrReplacer.definition.punctRules() text = pRules["withMultiplePeriodsAndEmail"].sub(text) text = pRules["geoLocation"].sub(text) return p.split(text) } func (p *processor) split(text string) []string { segments := []string{} nLineRule := p.abbrReplacer.definition.punctRules()["singleNewLine"] for _, segment := range strings.Split(text, "\n") { segment = nLineRule.sub(segment) segment = applyRules(segment, allEllipsesRules) segments = append(segments, p.checkPunct(segment)...) } return segments } func (p *processor) checkPunct(text string) []string { segments := []string{} chars := p.abbrReplacer.definition.punctuation() if util.ContainsAny(text, chars) { segments = append(segments, p.processText(text)...) } else { segments = append(segments, text) } sentences := []string{} singq := p.abbrReplacer.definition.punctRules()["subSingleQuote"] for _, segment := range segments { segment = applyRules(segment, p.abbrReplacer.definition.subRules()) segment = singq.sub(segment) sentences = append(sentences, p.postProcess(segment)...) } return sentences } func (p *processor) processText(text string) []string { pRules := p.abbrReplacer.definition.punctRules() if !util.HasAnySuffix(text, p.abbrReplacer.definition.punctuation()) { text = text + "ȸ" } text = subPat(text, "double", exclamationWordsRE) text = replaceBetweenQuotes(text) text = applyRules(text, p.abbrReplacer.definition.doublePunctRules()) text = applyRules(text, p.abbrReplacer.definition.exclamationRules()) text = pRules["questionMarkInQuotation"].sub(text) return sentenceBoundaryRE.FindAllString(text, -1) } var earlyExit = regexp.MustCompile(`\A[a-zA-Z]*\z`) func (p *processor) postProcess(text string) []string { if len(text) < 2 && earlyExit.MatchString(text) { return []string{text} } text = applyRules(text, p.abbrReplacer.definition.subEllipsis()) if quotationAtEndOfSentenceRE.MatchString(text) { l := splitSpaceQuotationAtEndOfSentenceRE.FindStringSubmatchIndex(text) return []string{text[:l[3]-1], text[l[2]+1:]} } return []string{strings.TrimSpace(text)} } prose-1.2.1/tokenize/pragmatic_test.go000066400000000000000000000033411377030147400200370ustar00rootroot00000000000000package tokenize import ( "encoding/json" "fmt" "path/filepath" "testing" "github.com/jdkato/prose/internal/util" ) type goldenRule struct { Name string Input string Output []string } func TestPragmaticRulesEn(t *testing.T) { testLang("en", t) } func TestPragmaticRulesFr(t *testing.T) { testLang("fr", t) } func TestPragmaticRulesEs(t *testing.T) { testLang("es", t) } func BenchmarkPragmaticRulesEn(b *testing.B) { benchmarkLang("en", b) } func benchmarkLang(lang string, b *testing.B) { tests := make([]goldenRule, 0) f := fmt.Sprintf("golden_rules_%s.json", lang) cases := util.ReadDataFile(filepath.Join(testdata, f)) tok, err := NewPragmaticSegmenter(lang) util.CheckError(err) util.CheckError(json.Unmarshal(cases, &tests)) for n := 0; n < b.N; n++ { for _, test := range tests { tok.Tokenize(test.Input) } } } func testLang(lang string, t *testing.T) { tests := make([]goldenRule, 0) f := fmt.Sprintf("golden_rules_%s.json", lang) cases := util.ReadDataFile(filepath.Join(testdata, f)) tok, err := NewPragmaticSegmenter(lang) util.CheckError(err) util.CheckError(json.Unmarshal(cases, &tests)) for _, test := range tests { compare(t, test.Name, test.Input, test.Output, tok) } } func compare(t *testing.T, test, actualText string, expected []string, tok *PragmaticSegmenter) bool { actual := tok.Tokenize(actualText) if len(actual) != len(expected) { t.Log(test) t.Logf("Actual: %v\n", actual) t.Errorf("Actual: %d, Expected: %d\n", len(actual), len(expected)) t.Log("===") return false } for index, sent := range actual { if sent != expected[index] { t.Log(test) t.Errorf("Actual: [%s] Expected: [%s]\n", sent, expected[index]) t.Log("===") return false } } return true } prose-1.2.1/tokenize/punkt.go000066400000000000000000000165461377030147400162050ustar00rootroot00000000000000// Copyright (c) 2015 Eric Bower // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in all // copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE. package tokenize import ( "regexp" "strings" "github.com/jdkato/prose/internal/util" "gopkg.in/neurosnap/sentences.v1" "gopkg.in/neurosnap/sentences.v1/data" ) // PunktSentenceTokenizer is an extension of the Go implementation of the Punkt // sentence tokenizer (https://github.com/neurosnap/sentences), with a few // minor improvements (see https://github.com/neurosnap/sentences/pull/18). type PunktSentenceTokenizer struct { tokenizer *sentences.DefaultSentenceTokenizer } // NewPunktSentenceTokenizer creates a new PunktSentenceTokenizer and loads // its English model. func NewPunktSentenceTokenizer() *PunktSentenceTokenizer { var pt PunktSentenceTokenizer var err error pt.tokenizer, err = newSentenceTokenizer(nil) util.CheckError(err) return &pt } // Tokenize splits text into sentences. func (p PunktSentenceTokenizer) Tokenize(text string) []string { sents := []string{} for _, s := range p.tokenizer.Tokenize(text) { sents = append(sents, s.Text) } return sents } type wordTokenizer struct { sentences.DefaultWordTokenizer } var reAbbr = regexp.MustCompile(`((?:[\w]\.)+[\w]*\.)`) var reLooksLikeEllipsis = regexp.MustCompile(`(?:\.\s?){2,}\.`) var reEntities = regexp.MustCompile(`Yahoo!`) // English customized sentence tokenizer. func newSentenceTokenizer(s *sentences.Storage) (*sentences.DefaultSentenceTokenizer, error) { training := s if training == nil { b, err := data.Asset("data/english.json") if err != nil { return nil, err } training, err = sentences.LoadTraining(b) if err != nil { return nil, err } } // supervisor abbreviations abbrevs := []string{"sgt", "gov", "no", "mt"} for _, abbr := range abbrevs { training.AbbrevTypes.Add(abbr) } lang := sentences.NewPunctStrings() word := newWordTokenizer(lang) annotations := sentences.NewAnnotations(training, lang, word) ortho := &sentences.OrthoContext{ Storage: training, PunctStrings: lang, TokenType: word, TokenFirst: word, } multiPunct := &multiPunctWordAnnotation{ Storage: training, TokenParser: word, TokenGrouper: &sentences.DefaultTokenGrouper{}, Ortho: ortho, } annotations = append(annotations, multiPunct) tokenizer := &sentences.DefaultSentenceTokenizer{ Storage: training, PunctStrings: lang, WordTokenizer: word, Annotations: annotations, } return tokenizer, nil } func newWordTokenizer(p sentences.PunctStrings) *wordTokenizer { word := &wordTokenizer{} word.PunctStrings = p return word } func (e *wordTokenizer) HasSentEndChars(t *sentences.Token) bool { enders := []string{ `."`, `.)`, `.’`, `.”`, `?`, `?"`, `?'`, `?)`, `?’`, `?”`, `!`, `!"`, `!'`, `!)`, `!’`, `!”`, } for _, ender := range enders { if strings.HasSuffix(t.Tok, ender) && !reEntities.MatchString(t.Tok) { return true } } parens := []string{ `.[`, `.(`, `."`, `?[`, `?(`, `![`, `!(`, } for _, paren := range parens { if strings.Contains(t.Tok, paren) { return true } } return false } // MultiPunctWordAnnotation attempts to tease out custom Abbreviations such as // "F.B.I." type multiPunctWordAnnotation struct { *sentences.Storage sentences.TokenParser sentences.TokenGrouper sentences.Ortho } func (a *multiPunctWordAnnotation) Annotate(tokens []*sentences.Token) []*sentences.Token { for _, tokPair := range a.TokenGrouper.Group(tokens) { if len(tokPair) < 2 || tokPair[1] == nil { tok := tokPair[0].Tok if strings.Contains(tok, "\n") && strings.Contains(tok, " ") { // We've mislabeled due to an errant newline. tokPair[0].SentBreak = false } continue } a.tokenAnnotation(tokPair[0], tokPair[1]) } return tokens } // looksInternal determines if tok's punctuation could appear // sentence-internally (i.e., parentheses or quotations). func looksInternal(tok string) bool { internal := []string{")", `’`, `”`, `"`, `'`} for _, punc := range internal { if strings.HasSuffix(tok, punc) { return true } } return false } func (a *multiPunctWordAnnotation) tokenAnnotation(tokOne, tokTwo *sentences.Token) { // This is an expensive calculation, so we only want to do it once. var nextTyp string // If both tokOne and tokTwo and periods, we're probably in an ellipsis // that wasn't properly tokenized by `WordTokenizer`. if strings.HasSuffix(tokOne.Tok, ".") && tokTwo.Tok == "." { tokOne.SentBreak = false tokTwo.SentBreak = false return } isNonBreak := strings.HasSuffix(tokOne.Tok, ".") && !tokOne.SentBreak isEllipsis := reLooksLikeEllipsis.MatchString(tokOne.Tok) isInternal := tokOne.SentBreak && looksInternal(tokOne.Tok) if isNonBreak || isEllipsis || isInternal { nextTyp = a.TokenParser.TypeNoSentPeriod(tokTwo) isStarter := a.SentStarters[nextTyp] // If the tokOne looks like an ellipsis and tokTwo is either // capitalized or a frequent sentence starter, break the sentence. if isEllipsis { if a.TokenParser.FirstUpper(tokTwo) || isStarter != 0 { tokOne.SentBreak = true return } } // If the tokOne's sentence-breaking punctuation looks like it could // occur sentence-internally, ensure that the following word is either // capitalized or a frequent sentence starter. if isInternal { if a.TokenParser.FirstLower(tokTwo) && isStarter == 0 { tokOne.SentBreak = false return } } // If the tokOne ends with a period but isn't marked as a sentence // break, mark it if tokTwo is capitalized and can occur in _ORTHO_LC. if isNonBreak && a.TokenParser.FirstUpper(tokTwo) { if a.Storage.OrthoContext[nextTyp]&112 != 0 { tokOne.SentBreak = true } } } if len(reAbbr.FindAllString(tokOne.Tok, 1)) == 0 { return } if a.IsInitial(tokOne) { return } tokOne.Abbr = true tokOne.SentBreak = false // [4.1.1. Orthographic Heuristic] Check if there's // orthogrpahic evidence about whether the next word // starts a sentence or not. isSentStarter := a.Ortho.Heuristic(tokTwo) if isSentStarter == 1 { tokOne.SentBreak = true return } if nextTyp == "" { nextTyp = a.TokenParser.TypeNoSentPeriod(tokTwo) } // [4.1.3. Frequent Sentence Starter Heruistic] If the // next word is capitalized, and is a member of the // frequent-sentence-starters list, then label tok as a // sentence break. if a.TokenParser.FirstUpper(tokTwo) && a.SentStarters[nextTyp] != 0 { tokOne.SentBreak = true return } } prose-1.2.1/tokenize/punkt_test.go000066400000000000000000000346251377030147400172420ustar00rootroot00000000000000package tokenize import ( "encoding/json" "path/filepath" "testing" "github.com/jdkato/prose/internal/util" ) var tokenizer = NewPunktSentenceTokenizer() func BenchmarkPunkt(b *testing.B) { tests := make([]goldenRule, 0) cases := util.ReadDataFile(filepath.Join(testdata, "golden_rules_en.json")) util.CheckError(json.Unmarshal(cases, &tests)) for n := 0; n < b.N; n++ { for _, test := range tests { tokenizer.Tokenize(test.Input) } } } func TestEnglishSmartQuotes(t *testing.T) { actualText := "Here is a quote, ”a smart one.” Will this break properly?" actual := tokenizer.Tokenize(actualText) expected := []string{ "Here is a quote, ”a smart one.”", " Will this break properly?", } if len(actual) != len(expected) { t.Fatalf("Actual: %d, Expected: %d", len(actual), len(expected)) } for index, sent := range actual { if sent != expected[index] { t.Fatalf("Actual: %s\nExpected: %s", sent, expected[index]) } } } func TestEnglishCustomAbbrev(t *testing.T) { actualText := "One custom abbreviation is F.B.I. The abbreviation, F.B.I. should properly break." actual := tokenizer.Tokenize(actualText) expected := []string{ "One custom abbreviation is F.B.I.", " The abbreviation, F.B.I. should properly break.", } if len(actual) != len(expected) { t.Fatalf("Actual: %d, Expected: %d", len(actual), len(expected)) } for index, sent := range actual { if sent != expected[index] { t.Fatalf("Actual: %s\nExpected: %s", sent, expected[index]) } } actualText = "An abbreviation near the end of a G.D. sentence. J.G. Wentworth was cool." actual = tokenizer.Tokenize(actualText) expected = []string{ "An abbreviation near the end of a G.D. sentence.", " J.G. Wentworth was cool.", } if len(actual) != len(expected) { t.Fatalf("Actual: %d, Expected: %d", len(actual), len(expected)) } for index, sent := range actual { if sent != expected[index] { t.Fatalf("Actual: %s\nExpected: %s", sent, expected[index]) } } } func TestEnglishSupervisedAbbrev(t *testing.T) { actualText := "I am a Sgt. in the army. I am a No. 1 student. The Gov. of Michigan is a dick." actual := tokenizer.Tokenize(actualText) expected := []string{ "I am a Sgt. in the army.", " I am a No. 1 student.", " The Gov. of Michigan is a dick.", } if len(actual) != len(expected) { t.Fatalf("Actual: %d, Expected: %d", len(actual), len(expected)) } for index, sent := range actual { if sent != expected[index] { t.Fatalf("Actual: %s\nExpected: %s", sent, expected[index]) } } } func TestEnglishSemicolon(t *testing.T) { actualText := "I am here; you are over there. Will the tokenizer output two complete sentences?" actual := tokenizer.Tokenize(actualText) expected := []string{ "I am here; you are over there.", " Will the tokenizer output two complete sentences?", } if len(actual) != len(expected) { t.Fatalf("Actual: %d, Expected: %d", len(actual), len(expected)) } for index, sent := range actual { if sent != expected[index] { t.Fatalf("Actual: %s\nExpected: %s", sent, expected[index]) } } } func compareSentences(t *testing.T, actualText string, expected []string, test string) bool { actual := tokenizer.Tokenize(actualText) if len(actual) != len(expected) { t.Log(test) t.Logf("Actual: %v\n", actual) t.Errorf("Actual: %d, Expected: %d\n", len(actual), len(expected)) t.Log("===") return false } for index, sent := range actual { if sent != expected[index] { t.Log(test) t.Errorf("Actual: [%s] Expected: [%s]\n", sent, expected[index]) t.Log("===") return false } } return true } // Based on https://github.com/diasks2/pragmatic_segmenter#the-golden-rules. func TestGoldenRules(t *testing.T) { var actualText string var expected []string test := "1. Simple period to end sentence" actualText = "Hello World. My name is Jonas." expected = []string{ "Hello World.", " My name is Jonas.", } compareSentences(t, actualText, expected, test) test = "2. Question mark to end sentence" actualText = "What is your name? My name is Jonas." expected = []string{ "What is your name?", " My name is Jonas.", } compareSentences(t, actualText, expected, test) test = "3. Exclamation point to end sentence" actualText = "There it is! I found it." expected = []string{ "There it is!", " I found it.", } compareSentences(t, actualText, expected, test) test = "4. One letter upper case abbreviations" actualText = "My name is Jonas E. Smith." expected = []string{ "My name is Jonas E. Smith.", } compareSentences(t, actualText, expected, test) test = "5. One letter lower case abbreviations" actualText = "Please turn to p. 55." expected = []string{ "Please turn to p. 55.", } compareSentences(t, actualText, expected, test) test = "6. Two letter lower case abbreviations in the middle of a sentence" actualText = "Were Jane and co. at the party?" expected = []string{ "Were Jane and co. at the party?", } compareSentences(t, actualText, expected, test) test = "7. Two letter upper case abbreviations in the middle of a sentence" actualText = "They closed the deal with Pitt, Briggs & Co. at noon." expected = []string{ "They closed the deal with Pitt, Briggs & Co. at noon.", } compareSentences(t, actualText, expected, test) test = "8. Two letter lower case abbreviations at the end of a sentence" actualText = "Let's ask Jane and co. They should know." expected = []string{ "Let's ask Jane and co.", " They should know.", } compareSentences(t, actualText, expected, test) test = "9. Two letter upper case abbreviations at the end of a sentence" actualText = "They closed the deal with Pitt, Briggs & Co. It closed yesterday." expected = []string{ "They closed the deal with Pitt, Briggs & Co.", " It closed yesterday.", } compareSentences(t, actualText, expected, test) test = "10. Two letter (prepositive) abbreviations" actualText = "I can see Mt. Fuji from here." expected = []string{ "I can see Mt. Fuji from here.", } compareSentences(t, actualText, expected, test) test = "11. Two letter (prepositive & postpositive) abbreviations" actualText = "St. Michael's Church is on 5th st. near the light." expected = []string{ "St. Michael's Church is on 5th st. near the light.", } compareSentences(t, actualText, expected, test) test = "12. Possesive two letter abbreviations" actualText = "That is JFK Jr.'s book." expected = []string{ "That is JFK Jr.'s book.", } compareSentences(t, actualText, expected, test) test = "13. Multi-period abbreviations in the middle of a sentence" actualText = "I visited the U.S.A. last year." expected = []string{ "I visited the U.S.A. last year.", } compareSentences(t, actualText, expected, test) /* FIXME test = "14. Multi-period abbreviations at the end of a sentence" actualText = "I live in the E.U. How about you?" expected = []string{ "I live in the E.U.", "How about you?", } compareSentences(t, actualText, expected, test)*/ /* FIXME test = "15. U.S. as sentence boundary" actualText = "I live in the U.S. How about you?" expected = []string{ "I live in the U.S.", "How about you?", } compareSentences(t, actualText, expected, test) */ test = "16. U.S. as non sentence boundary with next word capitalized" actualText = "I work for the U.S. Government in Virginia." expected = []string{ "I work for the U.S. Government in Virginia.", } compareSentences(t, actualText, expected, test) test = "17. U.S. as non sentence boundary" actualText = "I have lived in the U.S. for 20 years." expected = []string{ "I have lived in the U.S. for 20 years.", } compareSentences(t, actualText, expected, test) /* FIXME test = "18. A.M. / P.M. as non sentence boundary and sentence boundary" actualText = "At 5 a.m. Mr. Smith went to the bank. He left the bank at 6 P.M. Mr. Smith then went to the store." expected = []string{ "At 5 a.m. Mr. Smith went to the bank.", "He left the bank at 6 P.M.", "Mr. Smith then went to the store.", } compareSentences(t, actualText, expected, test) */ test = "19. Number as non sentence boundary" actualText = "She has $100.00 in her bag." expected = []string{ "She has $100.00 in her bag.", } compareSentences(t, actualText, expected, test) test = "20. Number as sentence boundary" actualText = "She has $100.00. It is in her bag." expected = []string{ "She has $100.00.", " It is in her bag.", } compareSentences(t, actualText, expected, test) test = "21. Parenthetical inside sentence" actualText = "He teaches science (He previously worked for 5 years as an engineer.) at the local University." expected = []string{ "He teaches science (He previously worked for 5 years as an engineer.) at the local University.", } compareSentences(t, actualText, expected, test) test = "22. Email addresses" actualText = "Her email is Jane.Doe@example.com. I sent her an email." expected = []string{ "Her email is Jane.Doe@example.com.", " I sent her an email.", } compareSentences(t, actualText, expected, test) test = "23. Web addresses" actualText = "The site is: https://www.example.50.com/new-site/awesome_content.html. Please check it out." expected = []string{ "The site is: https://www.example.50.com/new-site/awesome_content.html.", " Please check it out.", } compareSentences(t, actualText, expected, test) test = "24. Single quotations inside sentence" actualText = "She turned to him, 'This is great.' she said." expected = []string{ "She turned to him, 'This is great.' she said.", } compareSentences(t, actualText, expected, test) test = "25. Double quotations inside sentence" actualText = "She turned to him, \"This is great.\" she said." expected = []string{ "She turned to him, \"This is great.\" she said.", } compareSentences(t, actualText, expected, test) test = "26. Double quotations at the end of a sentence" actualText = "She turned to him, \"This is great.\" She held the book out to show him." expected = []string{ "She turned to him, \"This is great.\"", " She held the book out to show him.", } compareSentences(t, actualText, expected, test) test = "27. Double punctuation (exclamation point)" actualText = "Hello!! Long time no see." expected = []string{ "Hello!!", " Long time no see.", } compareSentences(t, actualText, expected, test) test = "28. Double punctuation (question mark)" actualText = "Hello?? Who is there?" expected = []string{ "Hello??", " Who is there?", } compareSentences(t, actualText, expected, test) test = "29. Double punctuation (exclamation point / question mark)" actualText = "Hello!? Is that you?" expected = []string{ "Hello!?", " Is that you?", } compareSentences(t, actualText, expected, test) test = "30. Double punctuation (question mark / exclamation point)" actualText = "Hello?! Is that you?" expected = []string{ "Hello?!", " Is that you?", } compareSentences(t, actualText, expected, test) test = "40. Errant newlines in the middle of sentences (PDF)" actualText = "This is a sentence\ncut off in the middle because pdf." expected = []string{ "This is a sentence\ncut off in the middle because pdf.", } compareSentences(t, actualText, expected, test) test = "41. Errant newlines in the middle of sentences" actualText = "It was a cold \nnight in the city." expected = []string{ "It was a cold \nnight in the city.", } compareSentences(t, actualText, expected, test) /* FIXME test = "43. Geo Coordinates" actualText = "You can find it at N°. 1026.253.553. That is where the treasure is." expected = []string{ "You can find it at N°. 1026.253.553.", "That is where the treasure is.", } compareSentences(t, actualText, expected, test) */ test = "44. Named entities with an exclamation point" actualText = "She works at Yahoo! in the accounting department." expected = []string{ "She works at Yahoo! in the accounting department.", } compareSentences(t, actualText, expected, test) test = "45. I as a sentence boundary and I as an abbreviation" actualText = "We make a good team, you and I. Did you see Albert I. Jones yesterday?" expected = []string{ "We make a good team, you and I.", " Did you see Albert I. Jones yesterday?", } compareSentences(t, actualText, expected, test) test = "46. Ellipsis at end of quotation" actualText = "Thoreau argues that by simplifying one’s life, “the laws of the universe will appear less complex. . . .”" expected = []string{ "Thoreau argues that by simplifying one’s life, “the laws of the universe will appear less complex. . . .”", } compareSentences(t, actualText, expected, test) test = "47. Ellipsis with square brackets" actualText = "\"Bohr [...] used the analogy of parallel stairways [...]\" (Smith 55)." expected = []string{ "\"Bohr [...] used the analogy of parallel stairways [...]\" (Smith 55).", } compareSentences(t, actualText, expected, test) test = "48. Ellipsis as sentence boundary (standard ellipsis rules)" actualText = "If words are left off at the end of a sentence, and that is all that is omitted, indicate the omission with ellipsis marks (preceded and followed by a space) and then indicate the end of the sentence with a period . . . . Next sentence." expected = []string{ "If words are left off at the end of a sentence, and that is all that is omitted, indicate the omission with ellipsis marks (preceded and followed by a space) and then indicate the end of the sentence with a period . . . .", " Next sentence.", } compareSentences(t, actualText, expected, test) test = "49. Ellipsis as sentence boundary (non-standard ellipsis rules)" actualText = "I never meant that.... She left the store." expected = []string{ "I never meant that....", " She left the store.", } compareSentences(t, actualText, expected, test) test = "50. Ellipsis as non sentence boundary" actualText = "I wasn’t really ... well, what I mean...see . . . what I'm saying, the thing is . . . I didn’t mean it." expected = []string{ "I wasn’t really ... well, what I mean...see . . . what I'm saying, the thing is . . . I didn’t mean it.", } compareSentences(t, actualText, expected, test) test = "51. 4-dot ellipsis" actualText = "One further habit which was somewhat weakened . . . was that of combining words into self-interpreting compounds. . . . The practice was not abandoned. . . ." expected = []string{ "One further habit which was somewhat weakened . . . was that of combining words into self-interpreting compounds. . . .", " The practice was not abandoned. . . .", } compareSentences(t, actualText, expected, test) } prose-1.2.1/tokenize/regexp.go000066400000000000000000000036161377030147400163300ustar00rootroot00000000000000package tokenize import "regexp" // RegexpTokenizer splits a string into substrings using a regular expression. type RegexpTokenizer struct { regex *regexp.Regexp gaps bool discard bool } // NewRegexpTokenizer is a RegexpTokenizer constructor that takes three // arguments: a pattern to base the tokenizer on, a boolean value indicating // whether or not to look for separators between tokens, and boolean value // indicating whether or not to discard empty tokens. func NewRegexpTokenizer(pattern string, gaps, discard bool) *RegexpTokenizer { rTok := RegexpTokenizer{ regex: regexp.MustCompile(pattern), gaps: gaps, discard: discard} return &rTok } // Tokenize splits text into a slice of tokens according to its regexp pattern. func (r RegexpTokenizer) Tokenize(text string) []string { var tokens []string if r.gaps { temp := r.regex.Split(text, -1) if r.discard { for _, s := range temp { if s != "" { tokens = append(tokens, s) } } } else { tokens = temp } } else { tokens = r.regex.FindAllString(text, -1) } return tokens } // NewBlanklineTokenizer is a RegexpTokenizer constructor. // // This tokenizer splits on any sequence of blank lines. func NewBlanklineTokenizer() *RegexpTokenizer { return &RegexpTokenizer{ regex: regexp.MustCompile(`\s*\n\s*\n\s*`), gaps: true, discard: true} } // NewWordPunctTokenizer is a RegexpTokenizer constructor. // // This tokenizer splits text into a sequence of alphabetic and non-alphabetic // characters. func NewWordPunctTokenizer() *RegexpTokenizer { return &RegexpTokenizer{ regex: regexp.MustCompile(`\w+|[^\w\s]+`), gaps: false} } // NewWordBoundaryTokenizer is a RegexpTokenizer constructor. // // This tokenizer splits text into a sequence of word-like tokens. func NewWordBoundaryTokenizer() *RegexpTokenizer { return &RegexpTokenizer{ regex: regexp.MustCompile(`(?:[A-Z]\.){2,}|[\p{N}\p{L}']+`), gaps: false} } prose-1.2.1/tokenize/regexp_test.go000066400000000000000000000013761377030147400173700ustar00rootroot00000000000000package tokenize import ( "testing" "github.com/stretchr/testify/assert" ) func TestWordPunctTokenizer(t *testing.T) { input, output := getWordData("word_punct.json") wordTokenizer := NewWordPunctTokenizer() for i, s := range input { assert.Equal(t, output[i], wordTokenizer.Tokenize(s)) } } func TestNewRegexpTokenizer(t *testing.T) { input, _ := getWordData("word_punct.json") expected := NewWordPunctTokenizer() observed := NewRegexpTokenizer(`\w+|[^\w\s]+`, false, false) for _, s := range input { assert.Equal(t, expected.Tokenize(s), observed.Tokenize(s)) } } func BenchmarkWordPunctTokenizer(b *testing.B) { word := NewWordPunctTokenizer() for n := 0; n < b.N; n++ { for _, s := range getWordBenchData() { word.Tokenize(s) } } } prose-1.2.1/tokenize/tokenize.go000066400000000000000000000015161377030147400166630ustar00rootroot00000000000000/* Package tokenize implements functions to split strings into slices of substrings. */ package tokenize // ProseTokenizer is the interface implemented by an object that takes a string // and returns a slice of substrings. type ProseTokenizer interface { Tokenize(text string) []string } // TextToWords converts the string text into a slice of words. // // It does so by tokenizing text into sentences (using a port of NLTK's punkt // tokenizer; see https://github.com/neurosnap/sentences) and then tokenizing // the sentences into words via TreebankWordTokenizer. func TextToWords(text string) []string { sentTokenizer := NewPunktSentenceTokenizer() wordTokenizer := NewTreebankWordTokenizer() words := []string{} for _, s := range sentTokenizer.Tokenize(text) { words = append(words, wordTokenizer.Tokenize(s)...) } return words } prose-1.2.1/tokenize/tokenize_fuzz.go000066400000000000000000000004471377030147400177430ustar00rootroot00000000000000// +build gofuzz package tokenize func Fuzz(data []byte) int { s := string(data) t1 := NewWordBoundaryTokenizer() t1.Tokenize(s) t2 := NewWordPunctTokenizer() t2.Tokenize(s) t3 := NewTreebankWordTokenizer() t3.Tokenize(s) t4 := NewBlanklineTokenizer() t4.Tokenize(s) return 0 } prose-1.2.1/tokenize/tokenize_test.go000066400000000000000000000044301377030147400177200ustar00rootroot00000000000000package tokenize import ( "encoding/json" "fmt" "path/filepath" "testing" "github.com/jdkato/prose/internal/util" "github.com/stretchr/testify/assert" ) var testdata = filepath.Join("..", "testdata") func getWordData(file string) ([]string, [][]string) { in := util.ReadDataFile(filepath.Join(testdata, "treebank_sents.json")) out := util.ReadDataFile(filepath.Join(testdata, file)) input := []string{} output := [][]string{} util.CheckError(json.Unmarshal(in, &input)) util.CheckError(json.Unmarshal(out, &output)) return input, output } func getWordBenchData() []string { in := util.ReadDataFile(filepath.Join(testdata, "treebank_sents.json")) input := []string{} util.CheckError(json.Unmarshal(in, &input)) return input } func ExampleNewWordBoundaryTokenizer() { t := NewWordBoundaryTokenizer() fmt.Println(t.Tokenize("They'll save and invest more.")) // Output: [They'll save and invest more] } func ExampleNewWordPunctTokenizer() { t := NewWordPunctTokenizer() fmt.Println(t.Tokenize("They'll save and invest more.")) // Output: [They ' ll save and invest more .] } func ExampleNewTreebankWordTokenizer() { t := NewTreebankWordTokenizer() fmt.Println(t.Tokenize("They'll save and invest more.")) // Output: [They 'll save and invest more .] } func ExampleNewBlanklineTokenizer() { t := NewBlanklineTokenizer() fmt.Println(t.Tokenize("They'll save and invest more.\n\nThanks!")) // Output: [They'll save and invest more. Thanks!] } func TestTextToWords(t *testing.T) { text := "Vale is a natural language linter that supports plain text, markup (Markdown, reStructuredText, AsciiDoc, and HTML), and source code comments. Vale doesn't attempt to offer a one-size-fits-all collection of rules—instead, it strives to make customization as easy as possible." expected := []string{ "Vale", "is", "a", "natural", "language", "linter", "that", "supports", "plain", "text", ",", "markup", "(", "Markdown", ",", "reStructuredText", ",", "AsciiDoc", ",", "and", "HTML", ")", ",", "and", "source", "code", "comments", ".", "Vale", "does", "n't", "attempt", "to", "offer", "a", "one-size-fits-all", "collection", "of", "rules—instead", ",", "it", "strives", "to", "make", "customization", "as", "easy", "as", "possible", "."} assert.Equal(t, expected, TextToWords(text)) } prose-1.2.1/tokenize/treebank.go000066400000000000000000000065661377030147400166400ustar00rootroot00000000000000package tokenize import ( "regexp" "strings" ) // TreebankWordTokenizer splits a sentence into words. // // This implementation is a port of the Sed script written by Robert McIntyre, // which is available at https://gist.github.com/jdkato/fc8b8c4266dba22d45ac85042ae53b1e. type TreebankWordTokenizer struct { } // NewTreebankWordTokenizer is a TreebankWordTokenizer constructor. func NewTreebankWordTokenizer() *TreebankWordTokenizer { return new(TreebankWordTokenizer) } var startingQuotes = map[string]*regexp.Regexp{ "$1 `` ": regexp.MustCompile(`'([ (\[{<])"`), "``": regexp.MustCompile(`^(")`), " ``": regexp.MustCompile(`( ")`), } var startingQuotes2 = map[string]*regexp.Regexp{ " $1 ": regexp.MustCompile("(``)"), } var punctuation = map[string]*regexp.Regexp{ " $1 $2": regexp.MustCompile(`([:,])([^\d])`), " ... ": regexp.MustCompile(`\.\.\.`), "$1 $2$3 ": regexp.MustCompile(`([^\.])(\.)([\]\)}>"\']*)\s*$`), "$1 ' ": regexp.MustCompile(`([^'])' `), } var punctuation2 = []*regexp.Regexp{ regexp.MustCompile(`([:,])$`), regexp.MustCompile(`([;@#$%&?!])`), } var brackets = map[string]*regexp.Regexp{ " $1 ": regexp.MustCompile(`([\]\[\(\)\{\}\<\>])`), " -- ": regexp.MustCompile(`--`), } var endingQuotes = map[string]*regexp.Regexp{ " '' ": regexp.MustCompile(`"`), } var endingQuotes2 = []*regexp.Regexp{ regexp.MustCompile(`'(\S)(\'\')'`), regexp.MustCompile(`([^' ])('[sS]|'[mM]|'[dD]|') `), regexp.MustCompile(`([^' ])('ll|'LL|'re|'RE|'ve|'VE|n't|N'T) `), } var contractions = []*regexp.Regexp{ regexp.MustCompile(`(?i)\b(can)(not)\b`), regexp.MustCompile(`(?i)\b(d)('ye)\b`), regexp.MustCompile(`(?i)\b(gim)(me)\b`), regexp.MustCompile(`(?i)\b(gon)(na)\b`), regexp.MustCompile(`(?i)\b(got)(ta)\b`), regexp.MustCompile(`(?i)\b(lem)(me)\b`), regexp.MustCompile(`(?i)\b(mor)('n)\b`), regexp.MustCompile(`(?i)\b(wan)(na) `), regexp.MustCompile(`(?i) ('t)(is)\b`), regexp.MustCompile(`(?i) ('t)(was)\b`), } var newlines = regexp.MustCompile(`(?:\n|\n\r|\r)`) var spaces = regexp.MustCompile(`(?: {2,})`) // Tokenize splits a sentence into a slice of words. // // This tokenizer performs the following steps: (1) split on contractions (e.g., // "don't" -> [do n't]), (2) split on non-terminating punctuation, (3) split on // single quotes when followed by whitespace, and (4) split on periods that // appear at the end of lines. // // NOTE: As mentioned above, this function expects a sentence (not raw text) as // input. func (t TreebankWordTokenizer) Tokenize(text string) []string { for substitution, r := range startingQuotes { text = r.ReplaceAllString(text, substitution) } for substitution, r := range startingQuotes2 { text = r.ReplaceAllString(text, substitution) } for substitution, r := range punctuation { text = r.ReplaceAllString(text, substitution) } for _, r := range punctuation2 { text = r.ReplaceAllString(text, " $1 ") } for substitution, r := range brackets { text = r.ReplaceAllString(text, substitution) } text = " " + text + " " for substitution, r := range endingQuotes { text = r.ReplaceAllString(text, substitution) } for _, r := range endingQuotes2 { text = r.ReplaceAllString(text, "$1 $2 ") } for _, r := range contractions { text = r.ReplaceAllString(text, " $1 $2 ") } text = newlines.ReplaceAllString(text, " ") text = strings.TrimSpace(spaces.ReplaceAllString(text, " ")) return strings.Split(text, " ") } prose-1.2.1/tokenize/treebank_test.go000066400000000000000000000007421377030147400176650ustar00rootroot00000000000000package tokenize import ( "testing" "github.com/stretchr/testify/assert" ) func TestTreebankWordTokenizer(t *testing.T) { input, output := getWordData("treebank_words.json") word := NewTreebankWordTokenizer() for i, s := range input { assert.Equal(t, output[i], word.Tokenize(s)) } } func BenchmarkTreebankWordTokenizer(b *testing.B) { word := NewTreebankWordTokenizer() for n := 0; n < b.N; n++ { for _, s := range getWordBenchData() { word.Tokenize(s) } } } prose-1.2.1/transform/000077500000000000000000000000001377030147400146645ustar00rootroot00000000000000prose-1.2.1/transform/title.go000066400000000000000000000065371377030147400163470ustar00rootroot00000000000000package transform import ( "regexp" "strings" "unicode" "unicode/utf8" "github.com/jdkato/prose/internal/util" ) // An IgnoreFunc is a TitleConverter callback that decides whether or not the // the string word should be capitalized. firstOrLast indicates whether or not // word is the first or last word in the given string. type IgnoreFunc func(word string, firstOrLast bool) bool // A TitleConverter converts a string to title case according to its style. type TitleConverter struct { ignore IgnoreFunc } var ( // APStyle states to: // 1. Capitalize the principal words, including prepositions and // conjunctions of four or more letters. // 2. Capitalize an article – the, a, an – or words of fewer than four // letters if it is the first or last word in a title. APStyle IgnoreFunc = optionsAP // ChicagoStyle states to lowercase articles (a, an, the), coordinating // conjunctions (and, but, or, for, nor), and prepositions, regardless of // length, unless they are the first or last word of the title. ChicagoStyle IgnoreFunc = optionsChicago ) // NewTitleConverter returns a new TitleConverter set to enforce the specified // style. func NewTitleConverter(style IgnoreFunc) *TitleConverter { return &TitleConverter{ignore: style} } // Title returns a copy of the string s in title case format. func (tc *TitleConverter) Title(s string) string { idx, pos := 0, 0 t := sanitizer.Replace(s) end := len(t) return splitRE.ReplaceAllStringFunc(s, func(m string) string { sm := strings.ToLower(m) pos = strings.Index(t[idx:], m) + idx prev := charAt(t, pos-1) ext := utf8.RuneCountInString(m) idx = pos + ext if tc.ignore(sm, pos == 0 || idx == end) && (prev == ' ' || prev == '-' || prev == '/') && charAt(t, pos-2) != ':' && charAt(t, pos-2) != '-' && (charAt(t, pos+ext) != '-' || charAt(t, pos-1) == '-') { return sm } return toTitle(m, prev) }) } func optionsAP(word string, bounding bool) bool { return !bounding && util.StringInSlice(word, smallWords) } func optionsChicago(word string, bounding bool) bool { return !bounding && (util.StringInSlice(word, smallWords) || util.StringInSlice(word, prepositions)) } var smallWords = []string{ "a", "an", "and", "as", "at", "but", "by", "en", "for", "if", "in", "nor", "of", "on", "or", "per", "the", "to", "vs", "vs.", "via", "v", "v."} var prepositions = []string{ "with", "from", "into", "during", "including", "until", "against", "among", "throughout", "despite", "towards", "upon", "concerning", "about", "over", "through", "before", "between", "after", "since", "without", "under", "within", "along", "following", "across", "beyond", "around", "down", "near", "above"} var splitRE = regexp.MustCompile(`[\p{N}\p{L}]+[^\s-/]*`) // sanitizer replaces a set of Unicode characters with ASCII equivalents. var sanitizer = strings.NewReplacer( "\u201c", `"`, "\u201d", `"`, "\u2018", "'", "\u2019", "'", "\u2013", "-", "\u2014", "-", "\u2026", "...") // charAt returns the ith character of s, if it exists. Otherwise, it returns // the first character. func charAt(s string, i int) byte { if i >= 0 && i < len(s) { return s[i] } return s[0] } // toTitle returns a copy of the string m with its first Unicode letter mapped // to its title case. func toTitle(m string, prev byte) string { r, size := utf8.DecodeRuneInString(m) return string(unicode.ToTitle(r)) + m[size:] } prose-1.2.1/transform/title_test.go000066400000000000000000000014701377030147400173750ustar00rootroot00000000000000package transform import ( "encoding/json" "path/filepath" "testing" "github.com/jdkato/prose/internal/util" "github.com/stretchr/testify/assert" ) type testCase struct { Input string Expect string } func TestTitle(t *testing.T) { tests := make([]testCase, 0) cases := util.ReadDataFile(filepath.Join(testdata, "title.json")) util.CheckError(json.Unmarshal(cases, &tests)) tc := NewTitleConverter(APStyle) for _, test := range tests { assert.Equal(t, test.Expect, tc.Title(test.Input)) } } func BenchmarkTitle(b *testing.B) { tests := make([]testCase, 0) cases := util.ReadDataFile(filepath.Join(testdata, "title.json")) util.CheckError(json.Unmarshal(cases, &tests)) tc := NewTitleConverter(APStyle) for n := 0; n < b.N; n++ { for _, test := range tests { _ = tc.Title(test.Input) } } } prose-1.2.1/transform/transform.go000066400000000000000000000037151377030147400172340ustar00rootroot00000000000000/* Package transform implements functions to manipulate UTF-8 encoded strings. */ package transform import ( "regexp" "strings" "unicode" ) var spaces = regexp.MustCompile(" +") func removeCase(s string, sep string, t func(rune) rune) string { out := "" old := ' ' for i, c := range s { alpha := unicode.IsLetter(c) || unicode.IsNumber(c) mat := (i > 1 && unicode.IsLower(old) && unicode.IsUpper(c)) if mat || !alpha || (unicode.IsSpace(c) && c != ' ') { out += " " } if alpha || c == ' ' { out += string(t(c)) } old = c } return spaces.ReplaceAllString(strings.TrimSpace(out), sep) } // Simple returns a space-separated, lower-cased copy of the string s. func Simple(s string) string { return removeCase(s, " ", unicode.ToLower) } // Dash returns a dash-separated, lower-cased copy of the string s. func Dash(s string) string { return removeCase(s, "-", unicode.ToLower) } // Snake returns a underscore-separated, lower-cased copy of the string s. func Snake(s string) string { return removeCase(s, "_", unicode.ToLower) } // Dot returns a period-separated, lower-cased copy of the string s. func Dot(s string) string { return removeCase(s, ".", unicode.ToLower) } // Constant returns a underscore-separated, upper-cased copy of the string s. func Constant(s string) string { return removeCase(s, "_", unicode.ToUpper) } // Pascal returns a Pascal-cased copy of the string s. func Pascal(s string) string { out := "" wasSpace := false for i, c := range removeCase(s, " ", unicode.ToLower) { if i == 0 || wasSpace { c = unicode.ToUpper(c) } wasSpace = c == ' ' if !wasSpace { out += string(c) } } return out } // Camel returns a Camel-cased copy of the string s. func Camel(s string) string { first := ' ' for _, c := range s { if unicode.IsLetter(c) || unicode.IsNumber(c) { first = c break } } body := Pascal(s) if len(body) > 1 { return strings.TrimSpace(string(unicode.ToLower(first)) + body[1:]) } return s } prose-1.2.1/transform/transform_fuzz.go000066400000000000000000000004111377030147400203000ustar00rootroot00000000000000// +build gofuzz package transform func Fuzz(data []byte) int { s := string(data) // Case transformations Simple(s) Snake(s) Dash(s) Dot(s) Constant(s) Pascal(s) Camel(s) // Title converters tc := NewTitleConverter(APStyle) tc.Title(s) return 0 } prose-1.2.1/transform/transform_test.go000066400000000000000000000032271377030147400202710ustar00rootroot00000000000000package transform import ( "encoding/json" "fmt" "path/filepath" "testing" "github.com/jdkato/prose/internal/util" "github.com/stretchr/testify/assert" ) var testdata = filepath.Join("..", "testdata") type testFormat struct { Input string None string Snake string Param string Dot string Constant string Pascal string Camel string } func TestTransform(t *testing.T) { tests := make([]testFormat, 0) cases := util.ReadDataFile(filepath.Join(testdata, "case.json")) util.CheckError(json.Unmarshal(cases, &tests)) for _, test := range tests { assert.Equal(t, test.None, Simple(test.Input)) assert.Equal(t, test.Snake, Snake(test.Input)) assert.Equal(t, test.Param, Dash(test.Input)) assert.Equal(t, test.Dot, Dot(test.Input)) assert.Equal(t, test.Constant, Constant(test.Input)) assert.Equal(t, test.Pascal, Pascal(test.Input)) assert.Equal(t, test.Camel, Camel(test.Input)) } } func ExampleNewTitleConverter() { tc := NewTitleConverter(APStyle) fmt.Println(tc.Title("the last of the mohicans")) // Output: The Last of the Mohicans } func ExampleSimple() { fmt.Println(Simple("test string")) // Output: test string } func ExampleDash() { fmt.Println(Dash("test string")) // Output: test-string } func ExampleSnake() { fmt.Println(Snake("test string")) // Output: test_string } func ExampleDot() { fmt.Println(Dot("test string")) // Output: test.string } func ExampleConstant() { fmt.Println(Constant("test string")) // Output: TEST_STRING } func ExamplePascal() { fmt.Println(Pascal("test string")) // Output: TestString } func ExampleCamel() { fmt.Println(Camel("test string")) // Output: testString }